From 93f58b4538974d6c1d0161cf1d273fe7576c74dd Mon Sep 17 00:00:00 2001 From: Jeremy Stanley Date: Tue, 26 Jun 2012 00:48:37 +0000 Subject: [PATCH] Imported from archive. * Release 2.0: Heavy rewrite with too many new features to enumerate here in the ChangeLog file. * NEWS: List of important changes since 1.x releases. * weather, weather.py: Implemented support for Python 3000 as requested by ptchinster on behalf of Arch Linux, conditions/forecast searches by latitude/longitude requested by Brandt Daniels, support for newer NOAA forecasts pointed out by Darryl Mouck and Richard Dooling, custom URIs requested by Michel Pelzer, international weather stations requested by Milton Hubsher, and fixed a metric conversion issue with negative values reported by Jochen Keil, Michiel Appelman and Stefan Metzlaff. Thanks to everyone for your input and assistance! --- FAQ | 76 +- INSTALL | 62 +- LICENSE | 42 +- NEWS | 51 + README | 48 +- airports | 2359 + overrides.conf | 7101 + overrides.log | 683 + places | 416289 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ qa.log | 0 slist | 5274 + stations | 28972 ++++ weather | 148 +- weather.1 | 260 +- weather.py | 2589 +- weatherrc | 1116 +- weatherrc.5 | 159 +- zctas | 165631 ++++++++++++++++++++++ zlist | 3578 + zones | 96205 +++++++++++++ 20 files changed, 728659 insertions(+), 1984 deletions(-) create mode 100644 NEWS create mode 100644 airports create mode 100644 overrides.conf create mode 100644 overrides.log create mode 100644 places create mode 100644 qa.log create mode 100644 slist create mode 100644 stations create mode 100644 zctas create mode 100644 zlist create mode 100644 zones diff --git a/FAQ b/FAQ index 54a44d8..1e0ff03 100644 --- a/FAQ +++ b/FAQ @@ -2,67 +2,55 @@ Frequently Asked Questions About the Weather Utility ====================================================== -:Copyright: (c) 2006-2010 Jeremy Stanley . Permission to - use, copy, modify, and distribute this software is granted under - terms provided in the LICENSE file distributed with this software. +:Copyright: (c) 2006-2012 Jeremy Stanley . Permission + to use, copy, modify, and distribute this software is + granted under terms provided in the LICENSE file distributed + with this software. .. contents:: 1. Can I help? -------------- -Sure! Bug reports and feature suggestions are always welcome, but fixes and -patches are of course preferred. Contact fungi@yuggoth.org if desired, but -please read this FAQ and the included manuals for weather(1) and weatherrc(5) -before asking questions that might be answered therein. One big way anyone can -help is to provide me with some additional mappings of METAR station ID, city -name and state abbreviation for inclusion in the default /etc/weatherrc file. +Sure! Bug reports and feature suggestions are always welcome, but fixes +and patches are of course preferred. Contact fungi@yuggoth.org if +desired, but please read this FAQ and the included manuals for +weather(1) and weatherrc(5) before asking questions that might be +answered therein. 2. How do I figure out my local METAR station ID? ------------------------------------------------- -The list of stations is found at http://weather.noaa.gov/data/nsd_cccc.gz (it's -thousands of lines long, so I recommend keyword searching in your browser or -using grep(1) to find what you're looking for). From time to time, the -compression on their site seems to be failing, resulting in zero-byte files. If -you run into this issue, you can get uncompressed and zip-compressed versions -by replacing the "gz" suffix in the URL with "txt" or "zip" respectively. The -list can also be obtained from the following URLs in a pinch, though they are -not guaranteed to be up to date (thanks Celejar!): - - * http://www.rap.ucar.edu/weather/surface/stations.txt - * http://aviationweather.gov/adds/metars/stations.txt +The list of stations included in the "stations" file is comprised of +thousands of entries, so if you're within the USA it's recommended to +use weather's built-in Census place name and ZCTA (postal ZIP code) +searching capabilities. Otherwise, using its latitude,longitude +coordinate search feature is probably your best bet. See the weather(1) +manual for examples. 3. How do I figure out my local city name and state abbreviation? ----------------------------------------------------------------- -The forecasts can be located starting from -http://weather.noaa.gov/pub/data/forecasts/city/ (choose the state abbreviation -to get to a list of cities in that state). +As of the 2.0 release, this is no longer necessary. In Spring of 2011 +the NWS switched away from city-named forecast zone IDs to the numeric +state zone IDs also used for alerts. As a result, weather now comes with +pregenerated correlations between airports/stations and zones along with +USA Census (FIPS and ZCTA/ZIP code) and global latitude,longitude +coordinates and can search among them in a flexible and intuitive +manner. See the weather(1) manual for examples. 4. I live outside the USA--can this be made to work for me anyway? ------------------------------------------------------------------ -METAR station IDs can be found for cities and airports worldwide, but forecast -data is harder to come by. If you have any recommendations of forecast data for -other countries available in a format like NOAA's, I will be happy to try and -find a way to integrate it into the weather utility, but I suspect that some -serious modification would be necessary given that the data is likely to be -published in a non-English language, requiring some additional input from -speakers of that language for how to handle filtering and formatting of the -text. +ICAO codes for METAR stations can be found for cities and airports +worldwide, but forecast and alert data is harder to come by. If you have +any recommendations of plaintext data for other countries available in a +format like NOAA's, I will be happy to start incorporating it into the +weather utility. If the data is published in a non-English language, +I'll require some additional input from speakers of that language for +how to handle filtering and formatting of the text. 5. Why do I get the wrong forecast when specifying -i or --id? -------------------------------------------------------------- -The -i or --id switch (or the id parameter in an alias definition), only tells -weather(1) what current conditions to retrieve. If you specify -f or --forecast -on the command line (or forecast=True in an alias) without providing a city -name and state abbreviation (-c/--city and -s/--st, or city and st in an alias) -and are seeing an actual forecast, then you probably have a default city and -state abbreviation set in your config. See question 3 above for information on -figuring out what city name and state abbreviation to use, and the manual for -weatherrc(5) for information on defining aliases. +As of the 2.0 release, this question is no longer relevant. 6. Where can I get a list of the NWS advisory zones for alerts? --------------------------------------------------------------- -The lists of advisory zones by region are found aggregated at -http://weather.noaa.gov/pub/data/zonecatalog.curr.tar (it's several thousand -files totalling well over a hundred thousand lines of text, so I recommend -downloading, unpacking and using a recursive grep(1) to find what you're -looking for). +As of the 2.0 release, this is no longer necessary. See FAQ entries #2 +and #3 for more detail. diff --git a/INSTALL b/INSTALL index 2d341ab..9e2eeed 100644 --- a/INSTALL +++ b/INSTALL @@ -2,24 +2,29 @@ Basic Unix Installation Instructions for the Weather Utility ============================================================== -:Copyright: (c) 2006-2010 Jeremy Stanley . Permission to - use, copy, modify, and distribute this software is granted under - terms provided in the LICENSE file distributed with this software. +:Copyright: (c) 2006-2012 Jeremy Stanley . Permission + to use, copy, modify, and distribute this software is + granted under terms provided in the LICENSE file distributed + with this software. .. contents:: Prerequisites ------------- -You need the Python interpreter installed somewhere in your path (most modern -UNIX derivatives come with one already). If you need to get Python, it can be -obtained from http://www.python.org/ (but chances are your operating system at -least provides some sort of native package for it, which you should probably -install in whatever means is recommended by your OS vendor/distributor). +You need the Python interpreter installed somewhere in your path (most +modern UNIX derivatives come with one already). If you need to get +Python, it can be obtained from http://www.python.org/ but chances are +your operating system at least provides some sort of native package for +it, which you should probably install in whatever means is recommended +by your OS vendor/distributor. The script is tested with recent 2.x and +3.x Python versions, attempting to maintain forward/backward +compatability with the interpreter, so bug reports or patches to ensure +this continues to be the case are most welcome. Running in Place ---------------- -An easy way to try it out is to unpack the tarball and change to the resulting -directory:: +An easy way to try it out is to unpack the tarball and change to the +resulting directory:: tar xzf weather-*.tar.gz cd weather-* @@ -27,30 +32,37 @@ directory:: ./weather --help man ./weather.1 man ./weatherrc.5 - ./weather --forecast --no-conditions --city=charlotte --st=nc - ./weather ord sea + ./weather --forecast rdu + ./weather clt gso -...and so on. The weather utility, included Python module and documentation are -all fully functional when kept together in one directory, if somewhat -inconvenient. +...and so on. The weather utility, included Python module and +documentation are all fully functional when kept together in one +directory, without needing to install these components to other +locations within the filesystem hierarchy. Installing the Utility ---------------------- -The file named weather should be made executable and put somewhere in your path -(/usr/local/bin/ or ~/bin/ for example). Similarly, weather.py needs to be -somewhere in Python's include path. You can see your Python interpreter's -default include path by running:: +The file named weather should be made executable and put somewhere in +your path (/usr/local/bin/ or ~/bin/ for example). Similarly, weather.py +needs to be somewhere in Python's include path. You can see your Python +interpreter's default include path by running:: python -c "import sys ; print sys.path" +If the correlation data files are to be used (airports, places, +stations, zctas, zones), they need to be in your current working +directory or a directory mentioned within the "default" section's +"datapath" option of the weatherrc file. + Configuration ------------- -The weatherrc file should go in /etc/ or you can save it in your home directory -as a dotfile (~/.weatherrc) to support user-specific alias configuration and -overrides of the global /etc/weatherrc file. +The weatherrc file should go in /etc/ or /etc/weather/ for global +configuration. You can save it in your home directory as a dotfile +(~/.weather/weatherrc or ~/.weatherrc) to support user-specific alias +configuration and overrides of the global weatherrc file. Manuals ------- -Optionally, the weather.1 and weatherrc.5 files can be placed in sane locations -for TROFF/NROFF manual files on your system (for example, /usr/local/share/man/ -or ~/man/). +Optionally, the weather.1 and weatherrc.5 files can be placed in sane +locations for TROFF/NROFF manual files on your system (for example, +/usr/local/share/man/ or ~/man/). diff --git a/LICENSE b/LICENSE index 22c1666..1b789fb 100644 --- a/LICENSE +++ b/LICENSE @@ -2,27 +2,39 @@ Weather License ================= -The weather project employs the ISC license, a permissive free software license -written by the Internet Systems Consortium and functionally equivalent to the -2-clause BSD license. Initially used for the ISC's own software releases, it -has since become the preferred license of many projects (OpenBSD, for example). +The weather project employs the ISC license, a permissive free software +license written by the Internet Systems Consortium and functionally +equivalent to the 2-clause BSD license. Initially used for the ISC's own +software releases, it has since become the preferred license of many +other projects. + +The correlation data provided is augmented by manual research but built +primarily by aggregating sources within the USA Public Domain (U.S. +Census Bureau Gazetteer and publications of the National Oceanic and +Atmospheric Administration's National Climatic Data Center and National +Weather Service including its National Centers for Environmental +Prediction and Office of Science and Technology/Systems Engineering +Center Geographic Information Systems Map Group). Copies of the original +external data sources have been provided with this software for +reference, but are not covered by the copyright or permission notices +which follow. Copyright Notice ---------------- -Copyright (c) 2006-2010 Jeremy Stanley +Copyright (c) 2006-2012 Jeremy Stanley Permission Notice ----------------- -Permission to use, copy, modify, and distribute this software for any purpose -with or without fee is hereby granted, provided that the above copyright notice -and this permission notice appear in all copies. +Permission to use, copy, modify, and distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. Disclaimer ---------- -The software is provided "as is" and the author disclaims all warranties with -regard to this software including all implied warranties of merchantability and -fitness. In no event shall the author be liable for any special, direct, -indirect, or consequential damages or any damages whatsoever resulting from -loss of use, data or profits, whether in an action of contract, negligence or -other tortious action, arising out of or in connection with the use or -performance of this software. +The software is provided "as is" and the author disclaims all warranties +with regard to this software including all implied warranties of +merchantability and fitness. In no event shall the author be liable for +any special, direct, indirect, or consequential damages or any damages +whatsoever resulting from loss of use, data or profits, whether in an +action of contract, negligence or other tortious action, arising out of +or in connection with the use or performance of this software. diff --git a/NEWS b/NEWS new file mode 100644 index 0000000..5488378 --- /dev/null +++ b/NEWS @@ -0,0 +1,51 @@ +================================================= + New Version Information for the Weather Utility +================================================= + +:Copyright: (c) 2006-2012 Jeremy Stanley . Permission + to use, copy, modify, and distribute this software is + granted under terms provided in the LICENSE file distributed + with this software. + +.. contents:: + +2.0 Release +----------- +The 2.0 release involves a major rewrite of the underlying code and +addition of large volumes of previously-unneeded location correlation +data. In the Spring of 2011 the USA NOAA/NWS made significant changes to +the way they organized and published forecast data such that it could +no longer be supported by design assumptions inherent within this +utility. Attempts were made to preserve backward compatability with 1.x +command-line usage and configuration file formats where possible, but +some regressions are unfortunately unavoidable. The aurl, city, flines, +furl, id, murl, st and zones options have been removed. Minimal logic +was retained to recognize and continue supporting limited use of city, +id and st in configuration files, though these are deprecated for +eventual removal in a future release. + +On a positive note, this provided an opportunity to design out +some reported bugs and add in numerous requested features. Highlights +include: + + * Because NOAA/NWS now treats forecast data in the same way as alerts, + the alert reporting features are now much better integrated and no + longer considered a beta test. + + * The lack of memorable alert/forecast zone coding in the new scheme + drove development of intelligent search functionality, allowing users + to find stations and zones through a variety of methods like place + names, IATA/FAA/ICAO/FIPS/ZIP codes and even raw coordinates. + + * To reduce unnecessary load on NOAA/NWS servers, the utility now + caches retrieved data for a configurable period of time. + + * Airport code lists are no longer maintained in configuration (though + they are still easily overridden through configuration), and are + instead now separately managed in a manner similar to the other + pregenerated correlation data. + +Worth noting, however, is that the new forecast data publication format +(now essentially identical to the alert format) is all-caps freeform +prose, and not easily parsed as a result. Due to the lengthy nature of +this output, piping it through a pager is highly recommended. diff --git a/README b/README index 8ed74c1..375fb08 100644 --- a/README +++ b/README @@ -2,35 +2,38 @@ General Information About the Weather Utility =============================================== -:Copyright: (c) 2006-2010 Jeremy Stanley . Permission to - use, copy, modify, and distribute this software is granted under - terms provided in the LICENSE file distributed with this software. +:Copyright: (c) 2006-2012 Jeremy Stanley . Permission + to use, copy, modify, and distribute this software is + granted under terms provided in the LICENSE file distributed + with this software. .. contents:: What? ----- This command-line utility is intended to provide quick access to current -weather conditions and forecasts. Presently, it is capable of returning data -for localities throughout the USA by retrieving and formatting decoded METARs -(Meteorological Aerodrome Reports) from NOAA (the USA National Oceanic and -Atmospheric Administration) and forecasts from NWS (the USA National Weather +weather conditions and forecasts. Presently, it is capable of returning +data for localities throughout the USA and some select locations +globally by retrieving and formatting decoded METARs (Meteorological +Aerodrome Reports) from NOAA (the USA National Oceanic and Atmospheric +Administration) and forecasts/alerts from NWS (the USA National Weather Service). The tool is written to function in the same spirit as other -command-line informational utilities like cal(1), calendar(1) and dict(1). It -can retrieve arbitrary weather data via specific command-line switches (station -ID, city, state), or aliases can be configured system wide and on a per-user -basis. It can be freely used and redistributed under the terms of a BSD-like -License. +command-line informational utilities like cal(1), calendar(1) and +dict(1). It retrieves arbitrary weather data via precompiled +correlations or custom-tailored aliases (system-wide or on a per-user +basis). It can be freely used and redistributed under the terms of a +BSD-like License. Why? ---- -My girlfriend had a long commute to/from work and school, and often wanted to -check the weather both for home and her office. Unfortunately, starting a Web -browser, pulling up a weather site, entering multiple ZIP codes and waiting for -them to load is time-consuming for the marginally-impatient. Since she tended -to stay logged into a shell server most of the time, I figured I'd install a -quick command-line tool to retrieve weather info for her commute, but to my -surprise, a quick search turned up little that met my basic requirements: +My girlfriend had a long commute to/from work and school, and often +wanted to check the weather both for home and her office. Unfortunately, +starting a Web browser, pulling up a weather site, entering multiple ZIP +codes and waiting for them to load is time-consuming for the +marginally-impatient. Since she tended to stay logged into a shell +server most of the time, I figured I'd install a quick command-line tool +to retrieve weather info for her commute. To my surprise, a quick search +turned up little that met my basic requirements: * retrieve current data on-demand * provide both current conditions and short-term forecasts @@ -40,9 +43,10 @@ surprise, a quick search turned up little that met my basic requirements: Where? ------ -A tarball for the most recent version of the weather utility can be had here: +A tarball for the most recent version of the weather utility can be had +here: * http://fungi.yuggoth.org/weather/src/ -Alternatively, Debian and Ubuntu users can install the weather-util package -from any mirror. +Alternatively, Debian and Ubuntu users can install the weather-util +package from any mirror. diff --git a/airports b/airports new file mode 100644 index 0000000..5ac2a8e --- /dev/null +++ b/airports @@ -0,0 +1,2359 @@ +# Copyright (c) 2006-2012 Jeremy Stanley . Permission to +# use, copy, modify, and distribute this software is granted under terms +# provided in the LICENSE file distributed with this software. +# +# generated by weather on 2012-06-26 from these public domain sources: +# +# http://www.census.gov/geo/www/gazetteer/gazetteer2010.html +# a410aa212529e11b103bd5d222a952fc 2011-03-02 Gaz_counties_national.zip +# 680d807fce3bfe6aea8df5df5a6ebb04 2011-03-02 Gaz_cousubs_national.zip +# 41f34b79edfc3814b48419421d56e2a1 2011-03-02 Gaz_places_national.zip +# 8b298a6117e7942fd20f3e15076bd38a 2011-05-16 Gaz_zcta_national.zip +# +# http://www.weather.gov/geodata/catalog/wsom/html/cntyzone.htm +# 7e64372572d4923ad1be3c33ec79d7b6 2012-04-05 bp03ap12.dbx +# +# http://weather.noaa.gov/data/nsd_cccc.txt +# 6561bd4dc1ffd4147e35cf6dee7503d5 2011-05-04 nsd_cccc.txt +# +# http://weather.noaa.gov/pub/data/zonecatalog.curr.tar +# 748043471973d418cb415fccc3a0000b 2007-06-07 zonecatalog.curr.tar +# +# http://www.nco.ncep.noaa.gov/pmb/codes/nwprod/dictionaries/metar.tbl +# 2bbef16bbf41add353650c5d09f35066 2012-04-04 metar.tbl +# +# ftp://ftp.ncdc.noaa.gov/pub/data/inventories/COOP-ACT.TXT +# 23919279dec601f31f47f46fc60db095 2012-06-25 COOP-ACT.TXT +# +# ...and these manually-generated or hand-compiled adjustments: +# f4934ba2494d41fc4de1360ac2e09a49 2012-06-26 overrides.conf +# d115dda76af5661fb8afd793a9b8ff9d 2012-06-25 slist +# 12c0635d5b8157b564dc665e8a1cd124 2012-06-25 zlist + +[abe] +station = kabe + +[abi] +station = kabi + +[abq] +station = kabq + +[abr] +station = kabr + +[abs] +station = hebl + +[aby] +station = kaby + +[act] +station = kact + +[acy] +station = kacy + +[adq] +station = padq + +[agh] +station = esta + +[agn] +station = pagn + +[ags] +station = kags + +[ahn] +station = kahn + +[ahp] +station = paap + +[ajr] +station = esnx + +[akn] +station = pakn + +[akw] +station = pakw + +[alb] +station = kalb + +[ali] +station = kali + +[alo] +station = kalo + +[als] +station = kals + +[ama] +station = kama + +[amg] +station = kamg + +[amv] +station = uldd + +[amw] +station = kamw + +[anb] +station = kanb + +[anc] +station = panc + +[and] +station = kand + +[ane] +station = lfjr + +[ang] +station = lfbu + +[anj] +station = kanj + +[ann] +station = pant + +[aoh] +station = kaoh + +[aor] +station = wmka + +[apc] +station = kapc + +[apf] +station = kapf + +[apg] +station = kapg + +[apn] +station = kapn + +[aqa] +station = sbaq + +[art] +station = kart + +[aru] +station = sbau + +[asd] +station = kasd + +[ase] +station = kase + +[ast] +station = kast + +[atk] +station = patq + +[atl] +station = katl + +[att] +station = katt + +[aty] +station = katy + +[aug] +station = kaug + +[aus] +station = kaus + +[auw] +station = kauw + +[avl] +station = kavl + +[avn] +station = lfmv + +[avp] +station = kavp + +[axn] +station = kaxn + +[azs] +station = mdcy + +[baz] +station = kbaz + +[bdj] +station = waoo + +[bdl] +station = kbdl + +[bdr] +station = kbdr + +[beh] +station = kbeh + +[bet] +station = pabe + +[bfd] +station = kbfd + +[bff] +station = kbff + +[bfl] +station = kbfl + +[bfv] +station = vtuo + +[bgm] +station = kbgm + +[bgr] +station = kbgr + +[bgw] +station = orbi + +[bhk] +station = utsb + +[bhm] +station = kbhm + +[big] +station = pabi + +[bih] +station = kbih + +[bil] +station = kbil + +[bis] +station = kbis + +[bji] +station = kbji + +[bjn] +station = kbjn + +[bkd] +station = kbkd + +[bke] +station = kbke + +[bkg] +station = kbbg + +[bkl] +station = kbkl + +[bkw] +station = kbkw + +[bld] +station = kbvu + +[blf] +station = kblf + +[blh] +station = kblh + +[blr] +station = vobl + +[blu] +station = kblu + +[bml] +station = kbml + +[bmq] +station = kbmq + +[bna] +station = kbna + +[bno] +station = kbno + +[boi] +station = kboi + +[bos] +station = kbos + +[bpn] +station = wall + +[bpt] +station = kbpt + +[bqn] +station = tjbq + +[bqs] +station = uhbb + +[bro] +station = kbro + +[brw] +station = pabr + +[bsg] +station = fgbt + +[bsr] +station = ormm + +[bth] +station = widd + +[btm] +station = kbtm + +[btr] +station = kbtr + +[btt] +station = pabt + +[btv] +station = kbtv + +[buf] +station = kbuf + +[bus] +station = ugsb + +[bvc] +station = gvba + +[bvo] +station = kbvo + +[bwg] +station = kbwg + +[bwi] +station = kbwi + +[bxk] +station = kbxk + +[byi] +station = kbyi + +[bzn] +station = kbzn + +[cac] +station = sbca + +[cae] +station = kcae + +[cag] +station = kcag + +[caj] +station = svcn + +[cak] +station = kcak + +[cao] +station = kcao + +[car] +station = kcar + +[ccj] +station = vocl + +[ccm] +station = sbcm + +[ccr] +station = kccr + +[ccy] +station = kccy + +[cdb] +station = pacd + +[cdc] +station = kcdc + +[cds] +station = kcds + +[cdv] +station = pacv + +[cei] +station = vtct + +[cew] +station = kcew + +[cez] +station = kcez + +[cfb] +station = sbcb + +[cgi] +station = kcgi + +[cha] +station = kcha + +[chs] +station = kchs + +[cic] +station = kcic + +[cid] +station = kcid + +[ciw] +station = tvsc + +[cjc] +station = sccf + +[ckh] +station = ueso + +[ckv] +station = kckv + +[cle] +station = kcle + +[cll] +station = kcll + +[clt] +station = kclt + +[cmh] +station = kcmh + +[cmx] +station = kcmx + +[cni] +station = kcni + +[cnk] +station = kcnk + +[cnm] +station = kcnm + +[cnw] +station = kcnw + +[cny] +station = kcny + +[cod] +station = kcod + +[cok] +station = voci + +[con] +station = kcon + +[cos] +station = kcos + +[cot] +station = kcot + +[cou] +station = kcou + +[cpr] +station = kcpr + +[cqt] +station = kcqt + +[cre] +station = kcre + +[crg] +station = kcrg + +[crp] +station = kcrp + +[crw] +station = kcrw + +[csg] +station = kcsg + +[csm] +station = kcsm + +[cso] +station = edbc + +[csv] +station = kcsv + +[csy] +station = uwks + +[ctb] +station = kctb + +[ctj] +station = kctj + +[cty] +station = kcty + +[cvg] +station = kcvg + +[cxj] +station = sbcx + +[cys] +station = kcys + +[czz] +station = kczz + +[dab] +station = kdab + +[dag] +station = kdag + +[dal] +station = kdal + +[dan] +station = kdan + +[day] +station = kday + +[dbq] +station = kdbq + +[dca] +station = kdca + +[ddc] +station = kddc + +[den] +station = kden + +[deq] +station = kdeq + +[dew] +station = kdew + +[dfw] +station = kdfw + +[dgw] +station = kdgw + +[dhn] +station = kdhn + +[dht] +station = kdht + +[dik] +station = kdik + +[dlh] +station = kdlh + +[dln] +station = kdln + +[dls] +station = kdls + +[dmh] +station = kdmh + +[dol] +station = lfrg + +[dps] +station = wadd + +[dra] +station = kdra + +[dro] +station = kdro + +[drt] +station = kdrt + +[dsa] +station = egcn + +[dsm] +station = kdsm + +[dtn] +station = kdtn + +[dtw] +station = kdtw + +[dug] +station = kdug + +[duj] +station = kduj + +[dut] +station = padu + +[dwc] +station = omdw + +[dyr] +station = kdyr + +[dzn] +station = uakd + +[eat] +station = keat + +[eau] +station = keau + +[ebl] +station = orer + +[eed] +station = keed + +[eeo] +station = keeo + +[eet] +station = keet + +[ego] +station = uuob + +[ekn] +station = kekn + +[eko] +station = keko + +[eld] +station = keld + +[elp] +station = kelp + +[ely] +station = kely + +[ena] +station = paen + +[env] +station = kenv + +[eph] +station = keph + +[eps] +station = mdab + +[eri] +station = keri + +[esc] +station = kesc + +[eug] +station = keug + +[evn] +station = udyz + +[evv] +station = kevv + +[ewn] +station = kewn + +[ewr] +station = kewr + +[eyw] +station = keyw + +[fai] +station = pafa + +[far] +station = kfar + +[fat] +station = kfat + +[fcm] +station = kfcm + +[fdr] +station = kfdr + +[fdy] +station = kfdy + +[flg] +station = kflg + +[fll] +station = kfll + +[flo] +station = kflo + +[fmm] +station = edja + +[fmy] +station = kfmy + +[fnt] +station = kfnt + +[fod] +station = kfod + +[fog] +station = libf + +[fsd] +station = kfsd + +[fsm] +station = kfsm + +[fsz] +station = rjns + +[ftw] +station = kftw + +[fwa] +station = kfwa + +[fyv] +station = kfyv + +[gag] +station = kgag + +[gai] +station = kgai + +[gcc] +station = kgcc + +[gcj] +station = fagc + +[gdt] +station = mbgt + +[geg] +station = kgeg + +[gel] +station = sbnm + +[get] +station = ygel + +[gfk] +station = kgfk + +[gfl] +station = kgfl + +[ggg] +station = kggg + +[ggw] +station = kggw + +[ghg] +station = kghg + +[gjt] +station = kgjt + +[gkn] +station = pagk + +[gld] +station = kgld + +[glh] +station = kglh + +[gls] +station = kgls + +[gmz] +station = gcgm + +[gnt] +station = kgnt + +[gnv] +station = kgnv + +[gok] +station = kgok + +[gov] +station = ypgv + +[gpb] +station = sbgu + +[gpi] +station = kgpi + +[gpt] +station = kgpt + +[grb] +station = kgrb + +[gri] +station = kgri + +[gro] +station = pgro + +[grr] +station = kgrr + +[gsb] +station = kgsb + +[gsn] +station = pgsn + +[gso] +station = kgso + +[gsp] +station = kgsp + +[gst] +station = pags + +[gtf] +station = kgtf + +[gum] +station = pgum + +[gup] +station = kgup + +[gur] +station = aygn + +[guw] +station = uatg + +[gwo] +station = kgwo + +[hak] +station = zjhk + +[hbg] +station = khbg + +[hbr] +station = khbr + +[hca] +station = pahc + +[hcr] +station = pahc + +[hdo] +station = khdo + +[hgu] +station = aymh + +[hhi] +station = phhi + +[hid] +station = yhid + +[hks] +station = khks + +[hky] +station = khky + +[hln] +station = khln + +[hlp] +station = wihh + +[hmv] +station = esut + +[hnl] +station = phnl + +[hns] +station = pahn + +[hob] +station = khob + +[hom] +station = paho + +[hon] +station = khon + +[hot] +station = khot + +[hou] +station = khou + +[hpn] +station = khpn + +[hqm] +station = khqm + +[hro] +station = khro + +[hse] +station = khse + +[hsk] +station = lehc + +[hsv] +station = khsv + +[htg] +station = uohh + +[hti] +station = ybhm + +[htl] +station = khtl + +[hts] +station = khts + +[hua] +station = khua + +[huf] +station = khuf + +[hul] +station = khul + +[hvr] +station = khvr + +[hwd] +station = khwd + +[iaa] +station = uoii + +[iad] +station = kiad + +[iag] +station = kiag + +[iah] +station = kiah + +[ict] +station = kict + +[ifj] +station = biis + +[igg] +station = paig + +[igm] +station = kigm + +[ild] +station = leda + +[ilg] +station = kilg + +[ili] +station = pail + +[ilm] +station = kilm + +[ind] +station = kind + +[ink] +station = kink + +[inl] +station = kinl + +[inw] +station = kinw + +[ioa] +station = lgio + +[iph] +station = wmki + +[ipt] +station = kipt + +[isn] +station = kisn + +[isp] +station = kisp + +[isu] +station = orsu + +[ito] +station = phto + +[iwa] +station = uubi + +[jad] +station = ypjt + +[jan] +station = kjan + +[jax] +station = kjax + +[jbq] +station = mdjb + +[jct] +station = kjct + +[jfk] +station = kjfk + +[jhm] +station = phjh + +[jhs] +station = bgss + +[jkl] +station = kjkl + +[jln] +station = kjln + +[jms] +station = kjms + +[jnu] +station = pajn + +[joi] +station = sbjv + +[jqa] +station = bguq + +[jsu] +station = bgmq + +[juv] +station = bguk + +[jxn] +station = kjxn + +[kbv] +station = vtsg + +[kdh] +station = oakn + +[kfp] +station = pakf + +[kgk] +station = pajz + +[kgp] +station = usrk + +[kja] +station = unkl + +[klg] +station = palg + +[kmo] +station = pamb + +[knw] +station = panw + +[koe] +station = watt + +[kop] +station = vtuw + +[krw] +station = utak + +[ksz] +station = ulkk + +[ktn] +station = pakt + +[kut] +station = ugko + +[kvc] +station = pavc + +[kwa] +station = pkwa + +[lae] +station = aynz + +[lan] +station = klan + +[lar] +station = klar + +[las] +station = klas + +[law] +station = klaw + +[lax] +station = klax + +[lbb] +station = klbb + +[lbd] +station = utdl + +[lbf] +station = klbf + +[lbt] +station = klbt + +[lch] +station = klch + +[lcj] +station = epll + +[ldk] +station = esgl + +[lex] +station = klex + +[lfk] +station = klfk + +[lft] +station = klft + +[lga] +station = klga + +[lgb] +station = klgb + +[lgc] +station = klgc + +[lhx] +station = klhx + +[lih] +station = phli + +[lit] +station = klit + +[llq] +station = kllq + +[lnd] +station = klnd + +[lnk] +station = klnk + +[lny] +station = phny + +[lol] +station = klol + +[lop] +station = wadl + +[lot] +station = klot + +[loz] +station = kloz + +[lrd] +station = klrd + +[lse] +station = klse + +[lsq] +station = scge + +[lvk] +station = klvk + +[lvm] +station = klvm + +[lwd] +station = klwd + +[lwn] +station = udsg + +[lws] +station = klws + +[lwt] +station = klwt + +[lyh] +station = klyh + +[maf] +station = kmaf + +[maj] +station = pkmj + +[mcb] +station = kmcb + +[mcg] +station = pamc + +[mci] +station = kmci + +[mcn] +station = kmcn + +[mco] +station = kmco + +[mcw] +station = kmcw + +[mcx] +station = urml + +[mdl] +station = vymd + +[mdt] +station = kmdt + +[mdw] +station = kmdw + +[mei] +station = kmei + +[mem] +station = kmem + +[mfd] +station = kmfd + +[mfe] +station = kmfe + +[mfr] +station = kmfr + +[mgc] +station = kmgc + +[mgm] +station = kmgm + +[mgw] +station = kmgw + +[mhk] +station = kmhk + +[mia] +station = kmia + +[mic] +station = kmic + +[mii] +station = sbml + +[miv] +station = kmiv + +[miw] +station = kmiw + +[mji] +station = hllm + +[mkc] +station = kmkc + +[mke] +station = kmke + +[mkg] +station = kmkg + +[mkk] +station = phmk + +[mkl] +station = kmkl + +[mlb] +station = kmlb + +[mlc] +station = kmlc + +[mli] +station = kmli + +[mll] +station = padm + +[mls] +station = kmls + +[mlt] +station = kmlt + +[mlu] +station = kmlu + +[mly] +station = paml + +[mni] +station = trpg + +[mob] +station = kmob + +[mod] +station = kmod + +[mot] +station = kmot + +[mou] +station = pamo + +[mpv] +station = kmpv + +[mpw] +station = ukcm + +[mqe] +station = kmqe + +[mqf] +station = uscm + +[mqi] +station = kmqi + +[mqp] +station = fakn + +[mqs] +station = tvsm + +[mrb] +station = kmrb + +[mrf] +station = kmrf + +[msl] +station = kmsl + +[msn] +station = kmsn + +[mso] +station = kmso + +[msp] +station = kmsp + +[msy] +station = kmsy + +[mtc] +station = kmtc + +[mtj] +station = kmtj + +[mvq] +station = umoo + +[mwc] +station = kmwc + +[mwl] +station = kmwl + +[mwn] +station = kmwn + +[mws] +station = kmws + +[mwt] +station = kmwt + +[mwx] +station = rkjb + +[myp] +station = utam + +[myu] +station = pamy + +[myv] +station = kmyv + +[mzl] +station = skmz + +[naj] +station = ubbn + +[naq] +station = bgqq + +[naw] +station = vtsc + +[nbw] +station = uwke + +[ncy] +station = lflp + +[new] +station = knew + +[ngb] +station = zsnb + +[nib] +station = pafs + +[nkx] +station = knkx + +[nlg] +station = paou + +[nrb] +station = knrb + +[nrr] +station = tjnr + +[nsk] +station = uooo + +[nst] +station = vtsf + +[ntl] +station = ywlm + +[ntq] +station = rjnw + +[nty] +station = fapn + +[nux] +station = usmu + +[nvi] +station = utsa + +[nvt] +station = sbnf + +[nyc] +station = knyc + +[nyl] +station = knyl + +[nym] +station = usmm + +[nza] +station = spza + +[obn] +station = egeo + +[odx] +station = kodx + +[ofk] +station = kofk + +[ogg] +station = phog + +[okc] +station = kokc + +[olm] +station = kolm + +[oma] +station = koma + +[ome] +station = paom + +[omk] +station = komk + +[ook] +station = paoo + +[oqt] +station = koqt + +[ord] +station = kord + +[orf] +station = korf + +[org] +station = smzo + +[orh] +station = korh + +[ort] +station = paor + +[orv] +station = pfno + +[osd] +station = esnz + +[oss] +station = uafo + +[osw] +station = uwor + +[otg] +station = kotg + +[otm] +station = kotm + +[otz] +station = paot + +[ovb] +station = unnt + +[oza] +station = koza + +[p28] +station = kp28 + +[p68] +station = kp68 + +[pah] +station = kpah + +[pao] +station = kpao + +[paq] +station = paaq + +[pbh] +station = vqpr + +[pbi] +station = kpbi + +[pdt] +station = kpdt + +[pdx] +station = kpdx + +[ped] +station = lkpd + +[pes] +station = ulpb + +[pga] +station = kpga + +[pgu] +station = oibp + +[phf] +station = kphf + +[phl] +station = kphl + +[phs] +station = vtpp + +[phx] +station = kphx + +[pia] +station = kpia + +[pie] +station = kpie + +[pih] +station = kpih + +[pip] +station = papn + +[pir] +station = kpir + +[pit] +station = kpit + +[pkb] +station = kpkb + +[pkv] +station = uloo + +[pln] +station = kpln + +[pmw] +station = sbpj + +[pnc] +station = kpnc + +[pni] +station = pttp + +[pns] +station = kpns + +[pnt] +station = scnt + +[ppg] +station = nstu + +[ppk] +station = uacp + +[pqi] +station = kpqi + +[pql] +station = kpql + +[prb] +station = kprb + +[prv] +station = lkpo + +[psg] +station = papg + +[psx] +station = kpsx + +[pub] +station = kpub + +[pvd] +station = kpvd + +[pwm] +station = kpwm + +[pwq] +station = uasp + +[pze] +station = eghk + +[qgy] +station = lhpr + +[rai] +station = gvnp + +[rap] +station = krap + +[rbl] +station = krbl + +[rby] +station = pary + +[rdd] +station = krdd + +[rdm] +station = krdm + +[rdu] +station = krdu + +[rfd] +station = krfd + +[rhi] +station = krhi + +[ric] +station = kric + +[ril] +station = kril + +[riw] +station = kriw + +[riy] +station = oyrn + +[rkp] +station = krkp + +[rks] +station = krks + +[rmf] +station = hema + +[rmg] +station = krmg + +[rnd] +station = krnd + +[rno] +station = krno + +[roa] +station = kroa + +[roc] +station = kroc + +[roi] +station = vtuv + +[row] +station = krow + +[rsh] +station = pars + +[rst] +station = krst + +[rue] +station = krue + +[rwf] +station = krwf + +[rwl] +station = krwl + +[sac] +station = ksac + +[san] +station = ksan + +[sat] +station = ksat + +[sav] +station = ksav + +[sba] +station = ksba + +[sbn] +station = ksbn + +[sbo] +station = ksbo + +[sby] +station = ksby + +[scc] +station = pasc + +[sck] +station = ksck + +[scm] +station = pacm + +[sdb] +station = ksdb + +[sdf] +station = ksdf + +[sea] +station = ksea + +[sfo] +station = ksfo + +[sgf] +station = ksgf + +[sgy] +station = pagy + +[shg] +station = pagh + +[shn] +station = kshn + +[shr] +station = kshr + +[shv] +station = kshv + +[sig] +station = tjig + +[sit] +station = pasi + +[siy] +station = ksiy + +[sjc] +station = ksjc + +[sjt] +station = ksjt + +[sju] +station = tjsj + +[sjw] +station = zbsj + +[skk] +station = pfsh + +[skt] +station = opst + +[sku] +station = lgsy + +[skv] +station = hesc + +[skw] +station = pasw + +[slc] +station = kslc + +[sle] +station = ksle + +[slo] +station = kslo + +[sly] +station = usdd + +[smk] +station = pamk + +[smo] +station = ksmo + +[smp] +station = ksmp + +[smv] +station = lszs + +[smx] +station = ksmx + +[sno] +station = vtui + +[snp] +station = pasn + +[sns] +station = ksns + +[snu] +station = musc + +[sny] +station = ksny + +[sob] +station = lhsm + +[sow] +station = ksow + +[spg] +station = kspg + +[spi] +station = kspi + +[sps] +station = ksps + +[sqo] +station = esud + +[sry] +station = oinz + +[ssf] +station = kssf + +[ssi] +station = kssi + +[stc] +station = kstc + +[stj] +station = kstj + +[stk] +station = kstk + +[stl] +station = kstl + +[stp] +station = kstp + +[sts] +station = ksts + +[stt] +station = tist + +[stx] +station = tisx + +[sub] +station = warr + +[sus] +station = ksus + +[sux] +station = ksux + +[swo] +station = kswo + +[sxt] +station = ksxt + +[sya] +station = pasy + +[syr] +station = ksyr + +[t11] +station = ptya + +[tad] +station = ktad + +[tal] +station = pata + +[taz] +station = utat + +[tbn] +station = ktbn + +[tbs] +station = ugtb + +[tca] +station = ytnk + +[tcl] +station = ktcl + +[tdx] +station = vtbo + +[tef] +station = ytef + +[tgg] +station = wmkn + +[ths] +station = vtpo + +[tjm] +station = ustr + +[tka] +station = patk + +[tkk] +station = ptkk + +[tlh] +station = ktlh + +[toa] +station = ktoa + +[tol] +station = ktol + +[top] +station = ktop + +[tor] +station = ktor + +[tpa] +station = ktpa + +[tph] +station = ktph + +[tpo] +station = palj + +[tri] +station = ktri + +[tro] +station = ytre + +[tsp] +station = ktsp + +[tul] +station = ktul + +[tup] +station = ktup + +[tus] +station = ktus + +[tvc] +station = ktvc + +[tvl] +station = ktvl + +[tvr] +station = ktvr + +[txk] +station = ktxk + +[tyr] +station = ktyr + +[tys] +station = ktys + +[uam] +station = pgua + +[uil] +station = kuil + +[uin] +station = kuin + +[ukb] +station = rjbe + +[ukk] +station = uask + +[ulh] +station = oeao + +[ulv] +station = uwll + +[und] +station = oauz + +[urs] +station = uuok + +[usm] +station = vtsm + +[vai] +station = ayvn + +[vak] +station = pava + +[vav] +station = nftv + +[vcb] +station = kvcb + +[vct] +station = kvct + +[vdz] +station = pavd + +[vel] +station = kvel + +[vih] +station = kvih + +[vil] +station = gmmh + +[vkt] +station = uuyw + +[vrb] +station = kvrb + +[vsg] +station = ukcw + +[vtn] +station = kvtn + +[vts] +station = evva + +[wjf] +station = kwjf + +[wmc] +station = kwmc + +[wmo] +station = pawm + +[wrg] +station = pawg + +[wrl] +station = kwrl + +[wwr] +station = kwwr + +[wya] +station = ywha + +[xfl] +station = kxfl + +[xsp] +station = wssl + +[xtl] +station = cybq + +[yak] +station = paya + +[ykm] +station = kykm + +[ykn] +station = kykn + +[yng] +station = kyng + +[yny] +station = rkny + +[yoo] +station = cyoo + +[yra] +station = cyra + +[ysp] +station = cysp + +[zmt] +station = czmt + +[zos] +station = scjo + +[zzv] +station = kzzv \ No newline at end of file diff --git a/overrides.conf b/overrides.conf new file mode 100644 index 0000000..59c6047 --- /dev/null +++ b/overrides.conf @@ -0,0 +1,7101 @@ +# Copyright (c) 2006-2012 Jeremy Stanley . Permission to +# use, copy, modify, and distribute this software is granted under terms +# provided in the LICENSE file distributed with this software. + +# these IATA/FAA airport codes are manually aligned to ICAO IDs to prevent +# regressions from the weather 1.x default behavior + +[aby] +station = kaby + +[bji] +station = kbji + +[bjn] +station = kbjn + +[bml] +station = kbml + +[cmx] +station = kcmx + +[cod] +station = kcod + +[cty] +station = kcty + +[dgw] +station = kdgw + +[esc] +station = kesc + +[fod] +station = kfod + +[gcc] +station = kgcc + +[huf] +station = khuf + +[jct] +station = kjct + +[lrd] +station = klrd + +[mdw] +station = kmdw + +[mrf] +station = kmrf + +[nkx] +station = knkx + +[pao] +station = kpao + +[pga] +station = kpga + +[pie] +station = kpie + +[pqi] +station = kpqi + +[riw] +station = kriw + +[rmg] +station = krmg + +[rue] +station = krue + +[sjc] +station = ksjc + +[slo] +station = kslo + +[sny] +station = ksny + +[sus] +station = ksus + +[wwr] +station = kwwr + +# the active stations corresponding to these airports aren't in the nws list + +[abs] +station = hebl + +[agh] +station = esta + +[ajr] +station = esnx + +[amv] +station = uldd + +[ane] +station = lfjr + +[ang] +station = lfbu + +[aor] +station = wmka + +[aqa] +station = sbaq + +[aru] +station = sbau + +[atk] +station = patq + +[avn] +station = lfmv + +[azs] +station = mdcy + +[bdj] +station = waoo + +[bfv] +station = vtuo + +[bgw] +station = orbi + +[bhk] +station = utsb + +[bkd] +station = kbkd + +[bkg] +station = kbbg + +[bkl] +station = kbkl + +[bld] +station = kbvu + +[blr] +station = vobl + +[bpn] +station = wall + +[bqs] +station = uhbb + +[bsg] +station = fgbt + +[bsr] +station = ormm + +[bth] +station = widd + +[bus] +station = ugsb + +[bvc] +station = gvba + +[bxk] +station = kbxk + +[cac] +station = sbca + +[caj] +station = svcn + +[ccj] +station = vocl + +[ccm] +station = sbcm + +[cei] +station = vtct + +[cfb] +station = sbcb + +[ciw] +station = tvsc + +[cjc] +station = sccf + +[ckh] +station = ueso + +[cni] +station = kcni + +[cnw] +station = kcnw + +[cok] +station = voci + +[cso] +station = edbc + +[csy] +station = uwks + +[ctj] +station = kctj + +[cxj] +station = sbcx + +[dol] +station = lfrg + +[dps] +station = wadd + +[dsa] +station = egcn + +[dwc] +station = omdw + +[dzn] +station = uakd + +[ebl] +station = orer + +[ego] +station = uuob + +[eps] +station = mdab + +[evn] +station = udyz + +[fmm] +station = edja + +[fog] +station = libf + +[fsz] +station = rjns + +[gai] +station = kgai + +[gcj] +station = fagc + +[gdt] +station = mbgt + +[gel] +station = sbnm + +[get] +station = ygel + +[ghg] +station = kghg + +[gmz] +station = gcgm + +[gov] +station = ypgv + +[gpb] +station = sbgu + +[gur] +station = aygn + +[guw] +station = uatg + +[hak] +station = zjhk + +[hcr] +station = pahc + +[hgu] +station = aymh + +[hid] +station = yhid + +[hlp] +station = wihh + +[hmv] +station = esut + +[hsk] +station = lehc + +[htg] +station = uohh + +[hti] +station = ybhm + +[hua] +station = khua + +[iaa] +station = uoii + +[ifj] +station = biis + +[igg] +station = paig + +[ild] +station = leda + +[ioa] +station = lgio + +[iph] +station = wmki + +[isu] +station = orsu + +[iwa] +station = uubi + +[jad] +station = ypjt + +[jbq] +station = mdjb + +[jhs] +station = bgss + +[joi] +station = sbjv + +[jqa] +station = bguq + +[jsu] +station = bgmq + +[juv] +station = bguk + +[kbv] +station = vtsg + +[kdh] +station = oakn + +[kfp] +station = pakf + +[kgk] +station = pajz + +[kgp] +station = usrk + +[kja] +station = unkl + +[klg] +station = palg + +[kmo] +station = pamb + +[knw] +station = panw + +[koe] +station = watt + +[kop] +station = vtuw + +[krw] +station = utak + +[ksz] +station = ulkk + +[kut] +station = ugko + +[kvc] +station = pavc + +[lae] +station = aynz + +[lbd] +station = utdl + +[lcj] +station = epll + +[ldk] +station = esgl + +[lop] +station = wadl + +[lsq] +station = scge + +[lwn] +station = udsg + +[mcx] +station = urml + +[mdl] +station = vymd + +[mgc] +station = kmgc + +[mii] +station = sbml + +[mji] +station = hllm + +[mll] +station = padm + +[mni] +station = trpg + +[mou] +station = pamo + +[mpw] +station = ukcm + +[mqf] +station = uscm + +[mqp] +station = fakn + +[mqs] +station = tvsm + +[mvq] +station = umoo + +[mwx] +station = rkjb + +[myp] +station = utam + +[mzl] +station = skmz + +[naj] +station = ubbn + +[naq] +station = bgqq + +[naw] +station = vtsc + +[nbw] +station = uwke + +[ncy] +station = lflp + +[ngb] +station = zsnb + +[nib] +station = pafs + +[nlg] +station = paou + +[nsk] +station = uooo + +[nst] +station = vtsf + +[ntl] +station = ywlm + +[ntq] +station = rjnw + +[nty] +station = fapn + +[nux] +station = usmu + +[nvi] +station = utsa + +[nvt] +station = sbnf + +[nym] +station = usmm + +[nza] +station = spza + +[obn] +station = egeo + +[ook] +station = paoo + +[org] +station = smzo + +[orv] +station = pfno + +[osd] +station = esnz + +[oss] +station = uafo + +[osw] +station = uwor + +[ovb] +station = unnt + +[oza] +station = koza + +[pbh] +station = vqpr + +[ped] +station = lkpd + +[pes] +station = ulpb + +[pgu] +station = oibp + +[phs] +station = vtpp + +[pip] +station = papn + +[pkv] +station = uloo + +[pmw] +station = sbpj + +[pnt] +station = scnt + +[ppk] +station = uacp + +[prv] +station = lkpo + +[pwq] +station = uasp + +[pze] +station = eghk + +[qgy] +station = lhpr + +[rai] +station = gvnp + +[rby] +station = pary + +[riy] +station = oyrn + +[rmf] +station = hema + +[roi] +station = vtuv + +[rsh] +station = pars + +[sbo] +station = ksbo + +[scm] +station = pacm + +[shg] +station = pagh + +[sig] +station = tjig + +[sjw] +station = zbsj + +[skk] +station = pfsh + +[skt] +station = opst + +[sku] +station = lgsy + +[skv] +station = hesc + +[sly] +station = usdd + +[smk] +station = pamk + +[smv] +station = lszs + +[sno] +station = vtui + +[snu] +station = musc + +[sob] +station = lhsm + +[sqo] +station = esud + +[sry] +station = oinz + +[stk] +station = kstk + +[sub] +station = warr + +[taz] +station = utat + +[tbs] +station = ugtb + +[tca] +station = ytnk + +[tdx] +station = vtbo + +[tef] +station = ytef + +[tgg] +station = wmkn + +[ths] +station = vtpo + +[tjm] +station = ustr + +[tro] +station = ytre + +[ukb] +station = rjbe + +[ukk] +station = uask + +[ulh] +station = oeao + +[ulv] +station = uwll + +[und] +station = oauz + +[urs] +station = uuok + +[usm] +station = vtsm + +[vai] +station = ayvn + +[vak] +station = pava + +[vav] +station = nftv + +[vil] +station = gmmh + +[vkt] +station = uuyw + +[vsg] +station = ukcw + +[vts] +station = evva + +[wmo] +station = pawm + +[wya] +station = ywha + +[xfl] +station = kxfl + +[xsp] +station = wssl + +[xtl] +station = cybq + +[yny] +station = rkny + +[yoo] +station = cyoo + +[yra] +station = cyra + +[ysp] +station = cysp + +[zmt] +station = czmt + +[zos] +station = scjo + +# these active stations aren't in the list published by the nws + +[cybq] +description = Tadoule Lake Airport, Tadoule Lake, Canada +location = (1.0246149279912609, -1.7193626273555933) + +[egno] +description = Warton, Warton, United Kingdom +location = (0.93802889945372692, -0.050318906985840239) + +[k3r7] +description = Jennings Airport, United States +location = (0.52783468969288905, -1.6174577043469651) + +[kiob] +description = Mount Sterling-Montgomery County Airport, United States +location = (0.66422868007774194, -1.4657781203731457) + +[kk22] +description = Prestonsburg Big Sandy Regional Airport, United States +location = (0.65887924592037928, -1.4422824979827982) + +[ksrb] +description = Sparta Upper Cumberland Regional Airport, United States +location = (0.62929416976982344, -1.4927923265355139) + +[ksyf] +description = Cheyenne County Municipal Airport, United States +location = (0.69397607184873322, -1.7766806013479037) + +[kcni] +description = Cherokee County Airport, Canton, United States +location = (0.59886116903541753, -1.473444576850969) + +[kmgc] +description = Michigan City Municipal Airport, Michigan City, United States +location = (0.72785989394695116, -1.5153140552032489) + +[mdab] +description = Arroyo Barril Intl, Samana, Dominican Republic +location = (0.33507853742728805, -1.2117781203089684) + +[pawm] +description = White Mountain Airport, White Mountain, United States +location = (1.1290389545224626, -2.8520910159305544) + +[tvsc] +description = Canouan, Canouan Island, Saint Vincent and the Grenadines +location = (0.22164009474904575, -1.0706273921274376) + +[wadl] +description = Lombok International Airport, Praya, Indonesia +location = (-0.15284410604799337, 2.0294108220213776) + +[kajz] +description = Blake Field Airport, Delta, Colorado, United States +location = (0.67695067646551366, -1.8860658152896914) + +[kbgf] +description = Winchester Municipal Airport, Winchester, Tennessee, United States +location = (0.61396368282183733, -1.5021379834853026) + +[kded] +description = DeLand Municipal Airport-Sidney H Taylor Field, DeLand, Florida, United States +location = (0.50731533887872382, -1.4186690658679408) + +[kedj] +description = Bellefontaine Regional Airport, Bellefontaine, Ohio, United States +location = (0.70462917413981274, -1.4629218890522571) + +[kfot] +description = Rohnerville Airport, Fortuna, California, United States +location = (0.70779985445071625, -2.1665237431957243) + +[kfyg] +description = Washington Regional Airport, Washington, Missouri, United States +location = (0.67348037897257884, -1.5881415066396545) + +[kggp] +description = Logansport/Cass County Airport, Logansport, Indiana, United States +location = (0.71054584030407353, -1.5074879010988682) + +[kgic] +description = Idaho County Airport, Grangeville, Idaho, United States +location = (0.80184886200055894, -2.0267359600803685) + +[kgoo] +description = Nevada County Air Park, Grass Valley, California, United States +location = (0.68458843100378786, -2.1119022086499655) + +[kgxa] +description = Gray Butte Field Airport, Palmdale, California, United States +location = (0.6033013686829658, -2.0537356206687503) + +[khhw] +description = Stan Stamper Municipal Airport, Hugo, Oklahoma, United States +location = (0.5939991110903573, -1.6675235438272538) + +[khzr] +description = False River Regional Airport, New Roads, Louisiana, United States +location = (0.53613557335381223, -1.596603929249496) + +[kinf] +description = Inverness Airport, Inverness, Florida, United States +location = (0.50271787459359518, -1.4367244393839569) + +[kiya] +description = Abbeville Chris Crusta Memorial Airport, Abbeville, Louisiana, United States +location = (0.5231760184562223, -1.6071728665280562) + +[kjvw] +description = John Bell Williams Airport, Raymond, Mississippi, United States +location = (0.56381940300897615, -1.5779613885758652) + +[klsb] +description = Lordsburg Municipal Airport, Lordsburg, New Mexico, United States +location = (0.5643254036297265, -1.8970287135229997) + +[klua] +description = Luray Caverns Airport, Luray, Virginia, United States +location = (0.67486743227171142, -1.3700936433210755) + +[krts] +description = Reno/Stead Airport, Reno, Nevada, United States +location = (0.69234029516855744, -2.0922385665881142) + +[ktha] +description = Tullahoma Regional Airport/William Northern Field, Tullahoma, Tennessee, United States +location = (0.61749777384426185, -1.5052887024655512) + +[fyen] +description = Eenhana Airport, Eenhana, Namibia +location = (-0.30513619237884892, 0.28487187256564361) + +[fykb] +description = Karasburg Airport, Karasburg, Namibia +location = (-0.48923516248870774, 0.32701652999976838) + +[fymp] +description = Mpacha Airport, Mpacha, Namibia +location = (-0.30775390700416011, 0.42207297300978869) + +[fyos] +description = Oshakati Airport, Oshakati, Namibia +location = (-0.31061525213975716, 0.27400215397044059) + +[fytm] +description = Tsumeb Airport, Tsumeb, Namibia +location = (-0.33618366245635833, 0.30949050960989449) + +[lebt] +description = Valencia Heliport, Valenciana, Spain +location = (0.69157701207211197, -0.0082466632623806879) + +[mgmm] +description = Melchor de Mencos, El Petén, Guatemala +location = (0.29757863746503321, -1.5559610281529448) + +[scir] +description = Isla Robinsón Crusoe Airport, Juan Fernández Islands, Valparaíso, Chile +location = (-0.58757961382326762, -1.3775641185225218) + +[slti] +description = San Matías Airport, San Matías, Bolivia +location = (-0.28508967220299997, -1.0190201529009453) + +[vapr] +description = Porbandar Airport, Porbandar, India +location = (0.37784065744418344, 1.215747819332752) + +[cyab] +description = Arctic Bay, Nunavut, Canada +location = (1.2747659979244137, -1.4868134086611933) + +[fyab] +description = Aroab, Namibia +location = (-0.46774822621867485, 0.342957191358983) + +[fyan] +description = Aranos, Namibia +location = (-0.42120612392866397, 0.33364877755888356) + +[fybg] +description = Bagani, Namibia +location = (-0.31584927409722996, 0.37738986688289) + +[fymh] +description = Maltahohe, Namibia +location = (-0.4334234087189161, 0.29641508906897213) + +[fynd] +description = Noordoewer, Namibia +location = (-0.50117995264687554, 0.30750209500308101) + +[fyoh] +description = Okahao, Namibia +location = (-0.31219128918195166, 0.26287427290461907) + +[fyom] +description = Omaruru, Namibia +location = (-0.3738848139932095, 0.27840150074518977) + +[fyrh] +description = Rehoboth, Namibia +location = (-0.40695261945845085, 0.29816039168935554) + +[oimq] +description = Kāshmar, Khorasan Razavi, Iran +location = (0.61492209806556031, 1.0202871739087014) + +[slsr] +description = Santa Rosa de Yacuma, Bolivia +location = (-0.22718370317408357, -1.1376638018460443) + +[ehak] +description = A12-CPP Sea, Netherlands +location = (0.96689786701218938, 0.066501896516304504) + +[ehdv] +description = D15-FA-1 Sea, Netherlands +location = (0.94815982017656064, 0.051239952138702687) + +[ehfd] +description = F3-FB-1 Sea, Netherlands +location = (0.95738097057349991, 0.081962598989123434) + +[ehfz] +description = F16-A Sea, Netherlands +location = (0.94451401935536217, 0.070026484220951937) + +[ehja] +description = J6-A Sea, Netherlands +location = (0.93940893129327885, 0.051404798486553549) + +[ehjr] +description = K13-A Sea, Netherlands +location = (0.9288254466954029, 0.056204453929537955) + +[ehkv] +description = K14-FA-1C Sea, Netherlands +location = (0.9297271885067383, 0.063316670631414856) + +[ehma] +description = AWG-1 Sea, Netherlands +location = (0.93360571153039762, 0.10370165220709392) + +[ehmg] +description = L9-FF-1 Sea, Netherlands +location = (0.9357485744261187, 0.08657318291423928) + +[ehpg] +description = P11-B Sea, Netherlands +location = (0.91385439634423093, 0.058323091655241355) + +[ehqe] +description = Hoorn-A Sea, Netherlands +location = (0.92359431095474043, 0.072436015973085216) + +[ehsa] +description = Euro Platform, Netherlands +location = (0.90753242982107196, 0.057159533002814289) + +[ehsc] +description = Goeree Le Sea, Netherlands +location = (0.90627675269072472, 0.064053583548191892) + +[fdjr] +description = Jericho, Swaziland +location = (-0.47406633142669979, 0.54871231820524524) + +[fdmy] +description = Mayiwane Meteorological Station, Swaziland +location = (-0.45176800490322022, 0.54979267701222978) + +[fdnd] +description = Ndzevane, Swaziland +location = (-0.47048142514310348, 0.55772345313329197) + +[fdny] +description = Nyonyane, Swaziland +location = (-0.45578575284131118, 0.54890604975221668) + +[fdpp] +description = Piggs Peak Meteorological Station, Swaziland +location = (-0.45322186417013155, 0.54542935388224401) + +[fdvv] +description = Vuvulane, Swaziland +location = (-0.45521503017590903, 0.55651219463240797) + +[fyot] +description = Ootmoed, Namibia +location = (-0.41916991450506902, 0.34441163324245017) + +[k05u] +description = Eureka Airport, United States +location = (0.69118686117112116, -2.0246910153916717) + +[k19a] +description = Jefferson Jackson County, GA, United States +location = (0.59648128170062931, -1.4584250482344936) + +[k2i0] +description = Madisonville Municipal Airport, United States +location = (0.65198397364452532, -1.5253866993823584) + +[k5w8] +description = Siler City Municipal Airport, United States +location = (0.62316045445978474, -1.3876071095576399) + +[k6a2] +description = Griffin Spalding County Airport, United States +location = (0.57992006186796541, -1.4708752497338402) + +[kd25] +description = Manitowish Waters Airport, United States +location = (0.80498026891263408, -1.5687426502239525) + +[kd95] +description = Dupont-Lapeer, MI, United States +location = (0.75165187324428751, -1.453362546206159) + +[ke11] +description = Andrews County Airport, United States +location = (0.56428433777775644, -1.7894778441157166) + +[ke16] +description = San Martin South County Airport, CA, United States +location = (0.64719576756143404, -2.1222646246087962) + +[kfwz] +description = South Pass, United States +location = (0.74205640208267309, -1.8986267561847474) + +[ki35] +description = Harlan Tucker-Guthrie Memorial, KY, United States +location = (0.64331668603241399, -1.4548798307380877) + +[kjpd] +description = Ten Sleep, United States +location = (0.77056286475549651, -1.870411187538354) + +[km40] +description = Aberdeen/Amory Monroe County, MS, United States +location = (0.59120846749742928, -1.544436043143373) + +[km63] +description = McGregor Range Base, NM, United States +location = (0.55972709111458152, -1.852667000991981) + +[ko86] +description = Trinity Center Airport, United States +location = (0.71528392402170615, -2.1414094204266019) + +[kt35] +description = Cameron Municipal Airpark, United States +location = (0.53894643309546619, -1.6924649219207957) + +[ktbx] +description = Boysen/Thermopol, US +location = (0.75863645401796609, -1.889028021257432) + +[ktdr] +description = Tyndall Drone Runway, FL, United States +location = (0.52417997023921303, -1.4928377050960657) + +[mppa] +description = Panama Pacifico, Panama +location = (0.15559318811544365, -1.3892747716579206) + +[ubbq] +description = Gabala International Airport, Azerbaijan +location = (0.71224942477101871, 0.83296318516973678) + +[ugms] +description = Mestia, Georgia +location = (0.75169585554143781, 0.74619806839765557) + +[utfa] +description = Andizhan, Uzbekistan +location = (0.71093077616125944, 1.2624548197914676) + +[utff] +description = Republic Airport, NY, United States +location = (0.710945332207221, -1.2813673995522958) + +[kqei] +description = Sinnam TMQ-53P, Korea, South +location = (0.66235245113184815, 2.2351849953874048) + +[kqej] +description = Bangsan TMQ-53P, Korea, South +location = (0.66671577426183393, 2.2331487779267447) + +[kqen] +description = Daegwallyeog, Korea, South +location = (0.65740735158453079, 2.2471114119426994) + +[kqep] +description = Gwangjuup, Korea, South +location = (0.65275314024587927, 2.2212223613714501) + +[kqeq] +description = Munsan TMQ-53P, Korea, South +location = (0.66060712187985371, 2.2261674609187674) + +[kqes] +description = Daesan TMQ-53P, Korea, South +location = (0.64519004682057057, 2.2069688391468296) + +[kqew] +description = Sangju TMQ-53P, Korea, South +location = (0.63529984772593595, 2.2366394364307336) + +[kqex] +description = Gumi TMQ-53P, Korea, South +location = (0.63006385996995296, 2.2392574303087249) + +[kqfb] +description = Cheongdo TMQ-53P, Korea, South +location = (0.62220987833597841, 2.2465296355253677) + +[kqft] +description = Yangsu-Ri, Korea, South +location = (0.65624379874986793, 2.2226768024147785) + +[kqfu] +description = Kwangjeok, Korea, South +location = (0.65973445725385649, 2.215986373615467) + +[kqfv] +description = Sachang-Ri, Korea, South +location = (0.66409778038384237, 2.2252947962927703) + +[kqfw] +description = Hongchon, Korea, South +location = (0.65740735158453079, 2.2319852250920817) + +[ktoc] +description = Toccoa RG Letourneau Field Airport, Toccoa, United States +location = (0.60375846168741687, -1.4537959411300263) + +[lszl] +description = Locarno Airport, Locarno, Switzerland +location = (0.80565794535459856, 0.15496097750049376) + +[oine] +description = Kalaleh, Kalaleh, Iran +location = (0.65246118156860555, 0.96782011644223576) + +[omam] +description = Al Dhafra, Abu Dhabi, United Arab Emirates +location = (0.42321178289342254, 0.95203734836254639) + +[omdm] +description = Minhad HB, Minhad AB, United Arab Emirates +location = (0.43680250469906967, 0.96632091352135763) + +[opfa] +description = Faisalabad Intl, Faisalabad, Pakistan +location = (0.54742276423411673, 1.2740003298730429) + +[orni] +description = Al Najaf International Airport, Najaf, Iraq +location = (0.5583599223516168, 0.77499891575541291) + +[sgpi] +description = Carlos Miguel Gimenez, Pilar, Paraguay +location = (-0.46917010691620253, -1.0178417414965839) + +[sgpj] +description = Dr. Augusto Roberto Fuster International Airport, Pedro Juan Caballero, Paraguay +location = (-0.3951667852748264, -0.97441246937311354) + +[slbj] +description = Bermejo, Bermejo, Bolivia +location = (-0.39746969486295536, -1.1224715248933033) + +[urmo] +description = Beslan Airport, Beslan, Russia +location = (0.75407124865340214, 0.77853203812010263) + +[uudl] +description = Tunoshna, Yaroslavl, Russia +location = (1.0046231531508214, 0.70087831591984684) + +[zswz] +description = Wenzhou Yongqiang Airport, Wenzhou, China +location = (0.48715979147516125, 2.1092653076201873) + +[leec] +description = Sevilla El Copero, Spain +location = (0.65123644912589618, -0.10470055649788783) + +[lubm] +description = Marculesti International Airport, FR, Moldova +location = (0.83536170389428988, 0.49240625120665621) + +[mgpc] +description = Paso Caballos, Guatemala +location = (0.30141836181942072, -1.5751596499248823) + +[mhcl] +description = Colon Airport, Honduras +location = (0.24717178333818493, -1.536490135017696) + +[oihs] +description = Hamedan Hamadan Air Base, HMD, Iran +location = (0.61455835489523525, 0.84916202228980908) + +[omdl] +description = Delma, United Arab Emirates +location = (0.4270820679630124, 0.91315626464343325) + +[sgaj] +description = Silvio Pettirossi International, Paraguay +location = (-0.44052110320336874, -1.0038959324546184) + +[sgbn] +description = Bahia Negra, Paraguay +location = (-0.35284797888793762, -1.0152004300197857) + +[sggr] +description = Saltos Del Guaira, Paraguay +location = (-0.41946021511955323, -0.94858644845891815) + +[sglv] +description = Puerto Casado, Paraguay +location = (-0.38891695320965247, -1.011126831545631) + +[sgpc] +description = Pozo Colorado, Paraguay +location = (-0.41015237421866746, -1.0259621301875828) + +[sgpg] +description = Pelayo Prats Gill, Paraguay +location = (-0.39357174632472131, -1.0742501546025098) + +[sgsj] +description = San Juan Bautista, Paraguay +location = (-0.46542171564157186, -0.99716419752967622) + +[sgsp] +description = San Pedro, Paraguay +location = (-0.42033287974555039, -0.99629153290367911) + +[sgvr] +description = Villarrica, Paraguay +location = (-0.44942228238853987, -0.98494689276571601) + +[yrmd] +description = Richmond Airport, QLD, Australia +location = (-0.36131282576011009, 2.4978576295889687) + +# these stations are active but unidentified or of an unpublished name and +# location... where possible, generalized descriptions are provided guessed +# from icao country code prefixes + +[daef] +description = unknown station in Algeria +location = None + +[daen] +description = unknown station in Algeria +location = None + +[fdot] +description = unknown station in Swaziland +location = None + +[fybp] +description = unknown station in Namibia +location = None + +[fyhd] +description = unknown station in Namibia +location = None + +[fyoy] +description = unknown station in Namibia +location = None + +[fyrn] +description = unknown station in Namibia +location = None + +[gmae] +description = unknown station in Morocco +location = None + +[gmmo] +description = unknown station in Morocco +location = None + +[gmto] +description = unknown station in Morocco +location = None + +[gqno] +description = unknown station in Mauritania +location = None + +[gqon] +description = unknown station in Mauritania +location = None + +[gqqp] +description = unknown station in Mauritania +location = None + +[hkms] +description = unknown station in Kenya +location = None + +[hknh] +description = unknown station in Kenya +location = None + +[huak] +description = unknown station in Uganda +location = None + +[huka] +description = unknown station in Uganda +location = None + +[huwn] +description = unknown station in Uganda +location = None + +[kqbu] +description = unknown or classified United States Department of Defense +location = None + +[kqea] +description = unknown or classified United States Department of Defense +location = None + +[kqeb] +description = unknown or classified United States Department of Defense +location = None + +[kqel] +description = unknown or classified United States Department of Defense +location = None + +[kqer] +description = unknown or classified United States Department of Defense +location = None + +[kqev] +description = unknown or classified United States Department of Defense +location = None + +[kqey] +description = unknown or classified United States Department of Defense +location = None + +[kqfx] +description = unknown or classified United States Department of Defense +location = None + +[kqka] +description = unknown or classified United States Department of Defense +location = None + +[kqms] +description = unknown or classified United States Department of Defense +location = None + +[kqsn] +description = unknown or classified United States Department of Defense +location = None + +[kqth] +description = unknown or classified United States Department of Defense +location = None + +[kqts] +description = unknown or classified United States Department of Defense +location = None + +[kqvp] +description = unknown or classified United States Department of Defense +location = None + +[kqz4] +description = unknown or classified United States Department of Defense +location = None + +[mgmt] +description = unknown station in Guatemala +location = None + +[mgtu] +description = unknown station in Guatemala +location = None + +[spwt] +description = unknown station in Peru +location = None + +[tcna] +description = unknown station +location = None + +[vqpr] +description = unknown station in Bhutan +location = None + +[mlrm] +description = unknown station +location = None + +[nmmg] +description = unknown station +location = None + +[omlw] +description = unknown station in United Arab Emirates +location = None + +[ommz] +description = unknown station in United Arab Emirates +location = None + +[omsn] +description = unknown station in United Arab Emirates +location = None + +[omth] +description = unknown station in United Arab Emirates +location = None + +[ormb] +description = unknown station in Iraq +location = None + +[orn1] +description = unknown station in Iraq +location = None + +[oysd] +description = unknown station in Yemen +location = None + +[prni] +description = unknown station +location = None + +[svs0] +description = unknown station in Venezuela +location = None + +[tnnc] +description = unknown station in Caribbean +location = None + +[tpdp] +description = unknown station +location = None + +# these zones have no geolocation data published by the nws, so these are +# guesses based on averaging the centroids of census areas mentioned in their +# forecasts or from map data + +# guessed from nws map for Cape Fairweather to Cape Suckling Coastal Area, AK +[akz017] +centroid = (1.0459758207202017, -2.4521875990520332) + +# guessed from nws map for Taiya Inlet and Klondike Highway, AK +[akz018] +centroid = (1.039692635413022, -2.3621286096491256) + +# guessed from nws map for Haines Borough and Lynn Canal, AK +[akz019] +centroid = (1.0323622525546459, -2.3610814120979291) + +# guessed from nws map for Glacier Bay, AK +[akz020] +centroid = (1.0257300013970676, -2.3773129741414762) + +# guessed from nws map for Eastern Chichagof Island, AK +[akz021] +centroid = (1.0112437686055145, -2.3643975376767181) + +# guessed from nws map for Salisbury Sound to Cape Fairweather Coastal Area, AK +[akz022] +centroid = (1.0168288222118964, -2.3815017643462624) + +# guessed from nws map for Cape Decision to Salisbury Sound Coastal Area, AK +[akz023] +centroid = (0.99239421268397576, -2.3567180889679431) + +# guessed from nws map for Mariposa Madera and Fresno County Foothills, CA +[caz093] +centroid = (0.65030967929308714, -2.0893336475624116) + +# fips12101 +# fips12057 +# fips12081 +# fips12115 +[flz051] +centroid = (0.48378077295677646, -1.4378759517738866) + +# fips2262070 +# fips2223725 +[laz069] +centroid = (0.51442755907125925, -1.5649993204041523) + +# fips48391 +[txz246] +centroid = (0.49414627465772448, -1.6957702613648076) + +# these zones are not indexed by the nws at all... any geolocation, where +# needed, is guessed based on averaging the centroids of census areas mentioned +# in their forecasts or maps + +[akz152] +description = Lower Kuskokwim Valley, AK +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ak/akz152.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ak/akz152.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ak/akz152.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ak/akz152.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ak/akz152.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ak/akz152.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ak/akz152.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ak/akz152.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ak/akz152.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ak/akz152.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ak.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ak/akz152.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ak/akz152.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ak/akz152.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ak/akz152.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ak/akz152.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ak/akz152.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ak/akz152.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ak.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ak/akz152.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ak/akz152.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ak/akz152.txt + +[akz227] +description = Upper Kuskokwim Valley, AK +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ak/akz227.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ak/akz227.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ak/akz227.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ak/akz227.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ak/akz227.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ak/akz227.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ak/akz227.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ak/akz227.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ak/akz227.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ak/akz227.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ak.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ak/akz227.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ak/akz227.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ak/akz227.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ak/akz227.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ak/akz227.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ak/akz227.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ak/akz227.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ak.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ak/akz227.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ak/akz227.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ak/akz227.txt + +[asz001] +description = Tutuila and Aunu'u (Aunuu), AS +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/as/asz001.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/as/asz001.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/as/asz001.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/as/asz001.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/as/asz001.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/as/asz001.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/as/asz001.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/as/asz001.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/as/asz001.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/as/asz001.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/as.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/as/asz001.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/as/asz001.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/as/asz001.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/as/asz001.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/as/asz001.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/as/asz001.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/as/asz001.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/as.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/as/asz001.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/as/asz001.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/as/asz001.txt + +[asz002] +description = Manu'a, AS +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/as/asz002.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/as/asz002.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/as/asz002.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/as/asz002.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/as/asz002.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/as/asz002.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/as/asz002.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/as/asz002.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/as/asz002.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/as/asz002.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/as.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/as/asz002.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/as/asz002.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/as/asz002.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/as/asz002.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/as/asz002.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/as/asz002.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/as/asz002.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/as.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/as/asz002.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/as/asz002.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/as/asz002.txt + +# manual search... +# Swains, AS = (-0.24933459534725633, -2.9768182482106962) +[asz003] +centroid = (-0.19295585283861422, -2.9858705030959194) +description = Swains Island County, AS +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/as/asz003.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/as/asz003.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/as/asz003.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/as/asz003.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/as/asz003.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/as/asz003.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/as/asz003.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/as/asz003.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/as/asz003.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/as/asz003.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/as.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/as/asz003.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/as/asz003.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/as/asz003.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/as/asz003.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/as/asz003.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/as/asz003.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/as/asz003.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/as.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/as/asz003.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/as/asz003.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/as/asz003.txt + +[azz501] +description = Western Pima County, AZ +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/az/azz501.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/az/azz501.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/az/azz501.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/az/azz501.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/az/azz501.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/az/azz501.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/az/azz501.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/az/azz501.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/az/azz501.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/az/azz501.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/az.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/az/azz501.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/az/azz501.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/az/azz501.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/az/azz501.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/az/azz501.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/az/azz501.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/az/azz501.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/az.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/az/azz501.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/az/azz501.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/az/azz501.txt + +[azz502] +description = Tohono O'Odham Nation, AZ +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/az/azz502.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/az/azz502.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/az/azz502.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/az/azz502.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/az/azz502.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/az/azz502.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/az/azz502.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/az/azz502.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/az/azz502.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/az/azz502.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/az.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/az/azz502.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/az/azz502.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/az/azz502.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/az/azz502.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/az/azz502.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/az/azz502.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/az/azz502.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/az.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/az/azz502.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/az/azz502.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/az/azz502.txt + +[azz503] +description = Upper Santa Cruz River Valley/Altar Valley, AZ +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/az/azz503.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/az/azz503.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/az/azz503.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/az/azz503.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/az/azz503.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/az/azz503.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/az/azz503.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/az/azz503.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/az/azz503.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/az/azz503.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/az.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/az/azz503.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/az/azz503.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/az/azz503.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/az/azz503.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/az/azz503.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/az/azz503.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/az/azz503.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/az.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/az/azz503.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/az/azz503.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/az/azz503.txt + +[azz504] +description = Tucson metro area, AZ +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/az/azz504.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/az/azz504.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/az/azz504.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/az/azz504.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/az/azz504.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/az/azz504.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/az/azz504.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/az/azz504.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/az/azz504.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/az/azz504.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/az.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/az/azz504.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/az/azz504.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/az/azz504.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/az/azz504.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/az/azz504.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/az/azz504.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/az/azz504.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/az.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/az/azz504.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/az/azz504.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/az/azz504.txt + +[azz505] +description = South Central Pinal County, AZ +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/az/azz505.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/az/azz505.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/az/azz505.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/az/azz505.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/az/azz505.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/az/azz505.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/az/azz505.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/az/azz505.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/az/azz505.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/az/azz505.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/az.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/az/azz505.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/az/azz505.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/az/azz505.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/az/azz505.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/az/azz505.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/az/azz505.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/az/azz505.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/az.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/az/azz505.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/az/azz505.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/az/azz505.txt + +[azz506] +description = Southeast Pinal County, AZ +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/az/azz506.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/az/azz506.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/az/azz506.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/az/azz506.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/az/azz506.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/az/azz506.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/az/azz506.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/az/azz506.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/az/azz506.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/az/azz506.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/az.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/az/azz506.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/az/azz506.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/az/azz506.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/az/azz506.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/az/azz506.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/az/azz506.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/az/azz506.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/az.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/az/azz506.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/az/azz506.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/az/azz506.txt + +[azz507] +description = Upper San Pedro River Valley, AZ +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/az/azz507.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/az/azz507.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/az/azz507.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/az/azz507.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/az/azz507.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/az/azz507.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/az/azz507.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/az/azz507.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/az/azz507.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/az/azz507.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/az.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/az/azz507.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/az/azz507.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/az/azz507.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/az/azz507.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/az/azz507.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/az/azz507.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/az/azz507.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/az.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/az/azz507.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/az/azz507.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/az/azz507.txt + +[azz508] +description = Eastern Cochise County below 5000 feet, AZ +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/az/azz508.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/az/azz508.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/az/azz508.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/az/azz508.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/az/azz508.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/az/azz508.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/az/azz508.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/az/azz508.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/az/azz508.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/az/azz508.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/az.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/az/azz508.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/az/azz508.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/az/azz508.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/az/azz508.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/az/azz508.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/az/azz508.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/az/azz508.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/az.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/az/azz508.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/az/azz508.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/az/azz508.txt + +[azz509] +description = Upper Gila River Valley, AZ +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/az/azz509.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/az/azz509.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/az/azz509.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/az/azz509.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/az/azz509.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/az/azz509.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/az/azz509.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/az/azz509.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/az/azz509.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/az/azz509.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/az.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/az/azz509.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/az/azz509.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/az/azz509.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/az/azz509.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/az/azz509.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/az/azz509.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/az/azz509.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/az.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/az/azz509.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/az/azz509.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/az/azz509.txt + +[azz510] +description = White Mountains of Graham and Greenlee Counties, AZ +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/az/azz510.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/az/azz510.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/az/azz510.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/az/azz510.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/az/azz510.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/az/azz510.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/az/azz510.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/az/azz510.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/az/azz510.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/az/azz510.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/az.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/az/azz510.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/az/azz510.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/az/azz510.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/az/azz510.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/az/azz510.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/az/azz510.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/az/azz510.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/az.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/az/azz510.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/az/azz510.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/az/azz510.txt + +[azz511] +description = Galiuro and Pinaleno Mountains, AZ +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/az/azz511.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/az/azz511.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/az/azz511.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/az/azz511.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/az/azz511.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/az/azz511.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/az/azz511.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/az/azz511.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/az/azz511.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/az/azz511.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/az.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/az/azz511.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/az/azz511.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/az/azz511.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/az/azz511.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/az/azz511.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/az/azz511.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/az/azz511.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/az.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/az/azz511.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/az/azz511.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/az/azz511.txt + +[azz512] +description = Chiricahua Mountains, AZ +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/az/azz512.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/az/azz512.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/az/azz512.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/az/azz512.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/az/azz512.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/az/azz512.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/az/azz512.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/az/azz512.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/az/azz512.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/az/azz512.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/az.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/az/azz512.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/az/azz512.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/az/azz512.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/az/azz512.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/az/azz512.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/az/azz512.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/az/azz512.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/az.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/az/azz512.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/az/azz512.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/az/azz512.txt + +[azz513] +description = Dragoon, Mule, Huachuca and Santa Rita Mountains, AZ +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/az/azz513.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/az/azz513.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/az/azz513.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/az/azz513.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/az/azz513.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/az/azz513.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/az/azz513.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/az/azz513.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/az/azz513.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/az/azz513.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/az.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/az/azz513.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/az/azz513.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/az/azz513.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/az/azz513.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/az/azz513.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/az/azz513.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/az/azz513.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/az.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/az/azz513.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/az/azz513.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/az/azz513.txt + +[azz514] +description = Catalina and Rincon Mountains, AZ +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/az/azz514.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/az/azz514.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/az/azz514.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/az/azz514.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/az/azz514.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/az/azz514.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/az/azz514.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/az/azz514.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/az/azz514.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/az/azz514.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/az.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/az/azz514.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/az/azz514.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/az/azz514.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/az/azz514.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/az/azz514.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/az/azz514.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/az/azz514.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/az.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/az/azz514.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/az/azz514.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/az/azz514.txt + +[azz515] +description = Baboquivari Mountains, AZ +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/az/azz515.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/az/azz515.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/az/azz515.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/az/azz515.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/az/azz515.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/az/azz515.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/az/azz515.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/az/azz515.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/az/azz515.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/az/azz515.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/az.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/az/azz515.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/az/azz515.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/az/azz515.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/az/azz515.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/az/azz515.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/az/azz515.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/az/azz515.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/az.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/az/azz515.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/az/azz515.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/az/azz515.txt + +[caz519] +description = Eastern Sierra Slopes, CA +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz519.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz519.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz519.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz519.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz519.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz519.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz519.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz519.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz519.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz519.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz519.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz519.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz519.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz519.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz519.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz519.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz519.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz519.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz519.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz519.txt + +[caz520] +description = Owens Valley, CA +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz520.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz520.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz520.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz520.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz520.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz520.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz520.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz520.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz520.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz520.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz520.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz520.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz520.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz520.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz520.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz520.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz520.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz520.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz520.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz520.txt + +[caz521] +description = White Mountains of Inyo County, CA +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz521.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz521.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz521.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz521.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz521.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz521.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz521.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz521.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz521.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz521.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz521.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz521.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz521.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz521.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz521.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz521.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz521.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz521.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz521.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz521.txt + +[caz522] +description = Death Valley National Park, CA +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz522.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz522.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz522.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz522.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz522.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz522.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz522.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz522.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz522.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz522.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz522.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz522.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz522.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz522.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz522.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz522.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz522.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz522.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz522.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz522.txt + +[caz523] +description = Western Mojave Desert, CA +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz523.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz523.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz523.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz523.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz523.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz523.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz523.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz523.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz523.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz523.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz523.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz523.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz523.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz523.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz523.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz523.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz523.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz523.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz523.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz523.txt + +# fips0603512 +# manual search... +# Mojave National Preserve, CA = (0.61104793104879473, -2.0244201452772002) +[caz524] +centroid = (0.61337315005242388, -2.02512704476477) +description = Eastern Mojave Desert, CA +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz524.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz524.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz524.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz524.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz524.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz524.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz524.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz524.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz524.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz524.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz524.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz524.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz524.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz524.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz524.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz524.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz524.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz524.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz524.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz524.txt + +[caz525] +description = Morongo Basin, CA +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz525.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz525.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz525.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz525.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz525.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz525.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz525.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz525.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz525.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz525.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz525.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz525.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz525.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz525.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz525.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz525.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz525.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz525.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz525.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz525.txt + +[caz526] +description = Cadiz Basin, CA +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz526.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz526.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz526.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz526.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz526.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz526.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz526.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz526.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz526.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz526.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz526.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz526.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz526.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz526.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz526.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz526.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz526.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz526.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz526.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz526.txt + +[caz527] +description = Upper Colorado River Valley of San Bernardino County, CA +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz527.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz527.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz527.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz527.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz527.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz527.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz527.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz527.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz527.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz527.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz527.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz527.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz527.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz527.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz527.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz527.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz527.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz527.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz527.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz527.txt + +[caz528] +description = Northern Salinas Valley, Hollister Valley and Carmel Valley, CA +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz528.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz528.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz528.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz528.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz528.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz528.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz528.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz528.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz528.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz528.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz528.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz528.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz528.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz528.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz528.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz528.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz528.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz528.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz528.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz528.txt + +[caz529] +description = Northern Monterey Bay, CA +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz529.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz529.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz529.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz529.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz529.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz529.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz529.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz529.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz529.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz529.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz529.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz529.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz529.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz529.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz529.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz529.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz529.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz529.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz529.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz529.txt + +[caz530] +description = Southern Monterey Bay and Big Sur Coast, CA +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz530.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz530.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz530.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz530.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz530.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz530.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz530.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz530.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz530.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz530.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz530.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz530.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz530.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz530.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz530.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz530.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz530.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz530.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz530.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz530.txt + +[caz547] +description = San Fernando Valley of Los Angeles County, CA +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz547.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz547.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz547.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz547.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz547.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz547.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz547.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz547.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz547.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz547.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz547.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz547.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz547.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz547.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz547.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz547.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz547.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz547.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz547.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz547.txt + +[caz548] +description = San Gabriel Valley of Los Angeles County, CA +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz548.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz548.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz548.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz548.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz548.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz548.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz548.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz548.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz548.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz548.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz548.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz548.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz548.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz548.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz548.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz548.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz548.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz548.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz548.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz548.txt + +[flz108] +description = South Walton County, FL +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz108.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz108.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz108.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz108.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz108.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz108.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz108.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz108.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz108.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz108.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz108.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz108.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz108.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz108.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz108.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz108.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz108.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz108.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz108.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz108.txt + +[flz112] +description = Coastal Bay County, FL +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz112.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz112.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz112.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz112.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz112.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz112.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz112.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz112.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz112.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz112.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz112.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz112.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz112.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz112.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz112.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz112.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz112.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz112.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz112.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz112.txt + +[flz114] +description = Coastal Gulf County, FL +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz114.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz114.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz114.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz114.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz114.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz114.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz114.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz114.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz114.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz114.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz114.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz114.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz114.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz114.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz114.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz114.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz114.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz114.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz114.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz114.txt + +[flz115] +description = Coastal Franklin County, FL +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz115.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz115.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz115.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz115.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz115.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz115.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz115.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz115.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz115.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz115.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz115.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz115.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz115.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz115.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz115.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz115.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz115.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz115.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz115.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz115.txt + +[flz118] +description = Coastal Jefferson County, FL +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz118.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz118.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz118.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz118.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz118.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz118.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz118.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz118.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz118.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz118.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz118.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz118.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz118.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz118.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz118.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz118.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz118.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz118.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz118.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz118.txt + +[flz127] +description = Coastal Wakulla County, FL +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz127.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz127.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz127.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz127.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz127.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz127.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz127.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz127.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz127.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz127.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz127.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz127.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz127.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz127.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz127.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz127.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz127.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz127.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz127.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz127.txt + +[flz128] +description = Coastal Taylor County, FL +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz128.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz128.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz128.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz128.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz128.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz128.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz128.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz128.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz128.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz128.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz128.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz128.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz128.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz128.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz128.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz128.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz128.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz128.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz128.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz128.txt + +[flz134] +description = Coastal Dixie County, FL +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz134.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz134.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz134.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz134.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz134.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz134.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz134.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz134.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz134.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz134.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz134.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz134.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz134.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz134.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz134.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz134.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz134.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz134.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz134.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz134.txt + +[flz168] +description = Coastal Palm Beach County, FL +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz168.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz168.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz168.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz168.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz168.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz168.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz168.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz168.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz168.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz168.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz168.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz168.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz168.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz168.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz168.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz168.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz168.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz168.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz168.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz168.txt + +[flz172] +description = Coastal Broward County, FL +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz172.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz172.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz172.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz172.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz172.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz172.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz172.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz172.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz172.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz172.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz172.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz172.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz172.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz172.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz172.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz172.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz172.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz172.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz172.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz172.txt + +[flz173] +description = Coastal Miami Dade County, FL +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz173.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz173.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz173.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz173.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz173.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz173.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz173.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz173.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz173.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz173.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz173.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz173.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz173.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz173.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz173.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz173.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz173.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz173.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz173.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz173.txt + +[flz174] +description = Far South Miami Dade County, FL +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz174.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz174.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz174.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz174.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz174.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz174.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz174.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz174.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz174.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz174.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz174.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz174.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz174.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz174.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz174.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz174.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz174.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz174.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz174.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz174.txt + +[idz033] +description = Upper Weiser River, ID +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/id/idz033.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/id/idz033.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/id/idz033.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/id/idz033.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/id/idz033.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/id/idz033.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/id/idz033.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/id/idz033.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/id/idz033.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/id/idz033.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/id.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/id/idz033.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/id/idz033.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/id/idz033.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/id/idz033.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/id/idz033.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/id/idz033.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/id/idz033.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/id.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/id/idz033.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/id/idz033.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/id/idz033.txt + +[laz071] +description = Saint Helena, Ascension, Livingston and Northern Tangipahoa, LA +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/la/laz071.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/la/laz071.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/la/laz071.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/la/laz071.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/la/laz071.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/la/laz071.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/la/laz071.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/la/laz071.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/la/laz071.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/la/laz071.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/la.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/la/laz071.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/la/laz071.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/la/laz071.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/la/laz071.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/la/laz071.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/la/laz071.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/la/laz071.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/la.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/la/laz071.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/la/laz071.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/la/laz071.txt + +[laz072] +description = Washington, Saint Tammany, Southern Tangipahoa and Pearl River, LA +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/la/laz072.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/la/laz072.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/la/laz072.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/la/laz072.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/la/laz072.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/la/laz072.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/la/laz072.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/la/laz072.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/la/laz072.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/la/laz072.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/la.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/la/laz072.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/la/laz072.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/la/laz072.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/la/laz072.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/la/laz072.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/la/laz072.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/la/laz072.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/la.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/la/laz072.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/la/laz072.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/la/laz072.txt + +# fips2232405 +# manual search... +# Holly Beach, LA = (0.5195330274306158, -1.6311681913361753) +[laz073] +centroid = (0.52125913371848054, -1.6307411961895293) +description = West Cameron, LA +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/la/laz073.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/la/laz073.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/la/laz073.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/la/laz073.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/la/laz073.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/la/laz073.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/la/laz073.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/la/laz073.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/la/laz073.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/la/laz073.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/la.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/la/laz073.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/la/laz073.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/la/laz073.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/la/laz073.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/la/laz073.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/la/laz073.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/la/laz073.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/la.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/la/laz073.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/la/laz073.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/la/laz073.txt + +# fips2212000 +# manual search... +# Grand Chenier, LA = (0.51961545226635375, -1.6227360906927666) +[laz074] +centroid = (0.51982019348425701, -1.6254906455869365) +description = East Cameron, LA +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/la/laz074.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/la/laz074.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/la/laz074.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/la/laz074.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/la/laz074.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/la/laz074.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/la/laz074.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/la/laz074.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/la/laz074.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/la/laz074.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/la.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/la/laz074.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/la/laz074.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/la/laz074.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/la/laz074.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/la/laz074.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/la/laz074.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/la/laz074.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/la.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/la/laz074.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/la/laz074.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/la/laz074.txt + +[mdz501] +description = Extreme Western Allegany, MD +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/md/mdz501.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/md/mdz501.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/md/mdz501.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/md/mdz501.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/md/mdz501.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/md/mdz501.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/md/mdz501.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/md/mdz501.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/md/mdz501.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/md/mdz501.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/md.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/md/mdz501.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/md/mdz501.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/md/mdz501.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/md/mdz501.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/md/mdz501.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/md/mdz501.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/md/mdz501.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/md.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/md/mdz501.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/md/mdz501.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/md/mdz501.txt + +[mdz502] +description = Central and Eastern Allegany, MD +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/md/mdz502.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/md/mdz502.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/md/mdz502.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/md/mdz502.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/md/mdz502.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/md/mdz502.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/md/mdz502.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/md/mdz502.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/md/mdz502.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/md/mdz502.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/md.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/md/mdz502.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/md/mdz502.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/md/mdz502.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/md/mdz502.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/md/mdz502.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/md/mdz502.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/md/mdz502.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/md.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/md/mdz502.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/md/mdz502.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/md/mdz502.txt + +[ncz105] +description = Inland Pender County, NC +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz105.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz105.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz105.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz105.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz105.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz105.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz105.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz105.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz105.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz105.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz105.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz105.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz105.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz105.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz105.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz105.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz105.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz105.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz105.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz105.txt + +[ncz106] +description = Coastal Pender County, NC +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz106.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz106.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz106.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz106.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz106.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz106.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz106.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz106.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz106.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz106.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz106.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz106.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz106.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz106.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz106.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz106.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz106.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz106.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz106.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz106.txt + +[ncz107] +description = Inland New Hanover County, NC +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz107.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz107.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz107.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz107.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz107.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz107.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz107.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz107.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz107.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz107.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz107.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz107.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz107.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz107.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz107.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz107.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz107.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz107.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz107.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz107.txt + +[ncz108] +description = Coastal New Hanover County, NC +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz108.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz108.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz108.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz108.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz108.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz108.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz108.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz108.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz108.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz108.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz108.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz108.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz108.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz108.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz108.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz108.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz108.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz108.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz108.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz108.txt + +[ncz109] +description = Inland Brunswick County, NC +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz109.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz109.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz109.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz109.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz109.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz109.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz109.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz109.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz109.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz109.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz109.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz109.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz109.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz109.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz109.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz109.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz109.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz109.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz109.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz109.txt + +[ncz110] +description = Coastal Brunswick County, NC +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz110.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz110.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz110.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz110.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz110.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz110.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz110.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz110.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz110.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz110.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz110.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz110.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz110.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz110.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz110.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz110.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz110.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz110.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz110.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz110.txt + +[ncz501] +description = Mountains of Caldwell County, NC +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz501.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz501.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz501.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz501.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz501.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz501.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz501.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz501.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz501.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz501.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz501.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz501.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz501.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz501.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz501.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz501.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz501.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz501.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz501.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz501.txt + +[ncz502] +description = Greater Caldwell County, NC +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz502.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz502.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz502.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz502.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz502.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz502.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz502.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz502.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz502.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz502.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz502.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz502.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz502.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz502.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz502.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz502.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz502.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz502.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz502.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz502.txt + +[ncz503] +description = Mountains of Burke County, NC +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz503.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz503.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz503.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz503.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz503.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz503.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz503.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz503.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz503.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz503.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz503.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz503.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz503.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz503.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz503.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz503.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz503.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz503.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz503.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz503.txt + +[ncz504] +description = Greater Burke County, NC +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz504.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz504.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz504.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz504.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz504.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz504.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz504.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz504.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz504.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz504.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz504.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz504.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz504.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz504.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz504.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz504.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz504.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz504.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz504.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz504.txt + +[ncz505] +description = Mountains of McDowell County, NC +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz505.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz505.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz505.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz505.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz505.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz505.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz505.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz505.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz505.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz505.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz505.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz505.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz505.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz505.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz505.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz505.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz505.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz505.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz505.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz505.txt + +[ncz506] +description = Eastern McDowell County, NC +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz506.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz506.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz506.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz506.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz506.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz506.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz506.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz506.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz506.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz506.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz506.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz506.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz506.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz506.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz506.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz506.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz506.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz506.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz506.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz506.txt + +[ncz507] +description = Mountains of Rutherford County, NC +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz507.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz507.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz507.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz507.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz507.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz507.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz507.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz507.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz507.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz507.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz507.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz507.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz507.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz507.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz507.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz507.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz507.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz507.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz507.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz507.txt + +[ncz508] +description = Greater Rutherford County, NC +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz508.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz508.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz508.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz508.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz508.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz508.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz508.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz508.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz508.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz508.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz508.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz508.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz508.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz508.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz508.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz508.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz508.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz508.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz508.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz508.txt + +[ncz509] +description = Mountains of Polk County, NC +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz509.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz509.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz509.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz509.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz509.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz509.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz509.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz509.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz509.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz509.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz509.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz509.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz509.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz509.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz509.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz509.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz509.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz509.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz509.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz509.txt + +[ncz510] +description = Eastern Polk County, NC +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz510.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz510.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz510.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz510.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz510.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz510.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz510.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz510.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz510.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz510.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz510.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz510.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz510.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz510.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz510.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz510.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz510.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz510.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz510.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz510.txt + +[nez095] +description = North Sioux, NE +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez095.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez095.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez095.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez095.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez095.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez095.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez095.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez095.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez095.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez095.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez095.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez095.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez095.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez095.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez095.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez095.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez095.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez095.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez095.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez095.txt + +[nez096] +description = Banner and South Sioux, NE +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez096.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez096.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez096.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez096.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez096.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez096.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez096.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez096.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez096.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez096.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez096.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez096.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez096.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez096.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez096.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez096.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez096.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez096.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez096.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez096.txt + +[njz103] +description = Western Bergen, NJ +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nj/njz103.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nj/njz103.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nj/njz103.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nj/njz103.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nj/njz103.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nj/njz103.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nj/njz103.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nj/njz103.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nj/njz103.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nj/njz103.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nj.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nj/njz103.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nj/njz103.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nj/njz103.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nj/njz103.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nj/njz103.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nj/njz103.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nj/njz103.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nj.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nj/njz103.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nj/njz103.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nj/njz103.txt + +[njz104] +description = Eastern Bergen, NJ +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nj/njz104.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nj/njz104.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nj/njz104.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nj/njz104.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nj/njz104.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nj/njz104.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nj/njz104.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nj/njz104.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nj/njz104.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nj/njz104.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nj.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nj/njz104.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nj/njz104.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nj/njz104.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nj/njz104.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nj/njz104.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nj/njz104.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nj/njz104.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nj.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nj/njz104.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nj/njz104.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nj/njz104.txt + +[njz105] +description = Western Essex, NJ +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nj/njz105.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nj/njz105.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nj/njz105.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nj/njz105.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nj/njz105.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nj/njz105.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nj/njz105.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nj/njz105.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nj/njz105.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nj/njz105.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nj.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nj/njz105.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nj/njz105.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nj/njz105.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nj/njz105.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nj/njz105.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nj/njz105.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nj/njz105.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nj.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nj/njz105.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nj/njz105.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nj/njz105.txt + +[njz106] +description = Eastern Essex, NJ +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nj/njz106.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nj/njz106.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nj/njz106.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nj/njz106.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nj/njz106.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nj/njz106.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nj/njz106.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nj/njz106.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nj/njz106.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nj/njz106.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nj.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nj/njz106.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nj/njz106.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nj/njz106.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nj/njz106.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nj/njz106.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nj/njz106.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nj/njz106.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nj.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nj/njz106.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nj/njz106.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nj/njz106.txt + +[njz107] +description = Western Union, NJ +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nj/njz107.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nj/njz107.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nj/njz107.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nj/njz107.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nj/njz107.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nj/njz107.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nj/njz107.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nj/njz107.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nj/njz107.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nj/njz107.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nj.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nj/njz107.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nj/njz107.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nj/njz107.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nj/njz107.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nj/njz107.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nj/njz107.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nj/njz107.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nj.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nj/njz107.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nj/njz107.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nj/njz107.txt + +[njz108] +description = Eastern Union, NJ +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nj/njz108.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nj/njz108.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nj/njz108.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nj/njz108.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nj/njz108.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nj/njz108.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nj/njz108.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nj/njz108.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nj/njz108.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nj/njz108.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nj.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nj/njz108.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nj/njz108.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nj/njz108.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nj/njz108.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nj/njz108.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nj/njz108.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nj/njz108.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nj.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nj/njz108.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nj/njz108.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nj/njz108.txt + +# guessed from the nws map for Upper Gila River Valley, NM +[nmz401] +centroid = (0.57526052145733109, -1.8964747652170384) +description = Upper Gila River Valley, NM +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz401.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz401.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz401.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz401.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz401.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz401.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz401.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz401.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz401.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz401.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz401.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz401.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz401.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz401.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz401.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz401.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz401.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz401.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz401.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz401.txt + +# guessed from the nws map for Southern Gila Highlands/Black Range, NM +[nmz402] +centroid = (0.57700585070932542, -1.8853046580042747) +description = Southern Gila Highlands/Black Range, NM +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz402.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz402.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz402.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz402.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz402.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz402.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz402.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz402.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz402.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz402.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz402.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz402.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz402.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz402.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz402.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz402.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz402.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz402.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz402.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz402.txt + +# guessed from the nws map for Southern Gila Foothills/Mimbres Valley, NM +[nmz403] +centroid = (0.56932640200055029, -1.885828256779873) +description = Southern Gila Foothills/Mimbres Valley, NM +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz403.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz403.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz403.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz403.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz403.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz403.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz403.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz403.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz403.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz403.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz403.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz403.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz403.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz403.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz403.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz403.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz403.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz403.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz403.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz403.txt + +# guessed from the nws map for Southwest Desert/Lower Gila River Valley, NM +[nmz404] +centroid = (0.56635934227216, -1.8973474298430355) +description = Southwest Desert/Lower Gila River Valley, NM +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz404.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz404.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz404.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz404.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz404.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz404.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz404.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz404.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz404.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz404.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz404.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz404.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz404.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz404.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz404.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz404.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz404.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz404.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz404.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz404.txt + +# guessed from the nws map for Lowlands of the Bootheel, NM +[nmz405] +centroid = (0.55466563628379795, -1.8954275676658419) +description = Lowlands of the Bootheel, NM +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz405.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz405.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz405.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz405.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz405.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz405.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz405.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz405.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz405.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz405.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz405.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz405.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz405.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz405.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz405.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz405.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz405.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz405.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz405.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz405.txt + +# guessed from the nws map for Uplands of the Bootheel, NM +[nmz406] +centroid = (0.55030231315381217, -1.8996163578706284) +description = Uplands of the Bootheel, NM +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz406.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz406.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz406.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz406.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz406.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz406.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz406.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz406.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz406.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz406.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz406.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz406.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz406.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz406.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz406.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz406.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz406.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz406.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz406.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz406.txt + +# guessed from the nws map for Southwest Desert/Mimbres Basin, NM +[nmz407] +centroid = (0.5618214862169747, -1.881290400724688) +description = Southwest Desert/Mimbres Basin, NM +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz407.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz407.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz407.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz407.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz407.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz407.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz407.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz407.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz407.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz407.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz407.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz407.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz407.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz407.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz407.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz407.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz407.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz407.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz407.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz407.txt + +# guessed from the nws map for Eastern Black Range Foothills, NM +[nmz408] +centroid = (0.57595865315812877, -1.8772761434451009) +description = Eastern Black Range Foothills, NM +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz408.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz408.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz408.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz408.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz408.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz408.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz408.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz408.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz408.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz408.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz408.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz408.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz408.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz408.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz408.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz408.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz408.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz408.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz408.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz408.txt + +# guessed from the nws map for Sierra County Lakes, NM +[nmz409] +centroid = (0.57822758118572137, -1.8685494971851293) +description = Sierra County Lakes, NM +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz409.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz409.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz409.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz409.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz409.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz409.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz409.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz409.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz409.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz409.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz409.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz409.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz409.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz409.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz409.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz409.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz409.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz409.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz409.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz409.txt + +# guessed from the nws map for Northern Dona Ana County, NM +[nmz410] +centroid = (0.56897733615015145, -1.8661060362323372) +description = Northern Dona Ana County, NM +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz410.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz410.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz410.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz410.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz410.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz410.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz410.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz410.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz410.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz410.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz410.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz410.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz410.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz410.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz410.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz410.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz410.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz410.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz410.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz410.txt + +# guessed from the nws map for Southern Dona Ana County/Mesilla Valley, NM +[nmz411] +centroid = (0.56059975574057863, -1.8661060362323372) +description = Southern Dona Ana County/Mesilla Valley, NM +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz411.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz411.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz411.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz411.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz411.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz411.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz411.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz411.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz411.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz411.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz411.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz411.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz411.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz411.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz411.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz411.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz411.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz411.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz411.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz411.txt + +# guessed from the nws map for Central Tularosa Basin, NM +[nmz412] +centroid = (0.57700585070932542, -1.8540632643935764) +description = Central Tularosa Basin, NM +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz412.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz412.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz412.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz412.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz412.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz412.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz412.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz412.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz412.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz412.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz412.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz412.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz412.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz412.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz412.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz412.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz412.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz412.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz412.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz412.txt + +# guessed from the nws map for Southern Tularosa Basin, NM +[nmz413] +centroid = (0.56548667764616278, -1.8538887314683767) +description = Southern Tularosa Basin, NM +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz413.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz413.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz413.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz413.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz413.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz413.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz413.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz413.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz413.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz413.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz413.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz413.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz413.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz413.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz413.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz413.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz413.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz413.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz413.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz413.txt + +# guessed from the nws map for West Slopes Sacramento Mountains Below 7500 Feet, NM +[nmz414] +centroid = (0.57421332390613444, -1.8477800790863967) +description = West Slopes Sacramento Mountains Below 7500 Feet, NM +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz414.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz414.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz414.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz414.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz414.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz414.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz414.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz414.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz414.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz414.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz414.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz414.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz414.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz414.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz414.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz414.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz414.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz414.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz414.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz414.txt + +# guessed from the nws map for Sacramento Mountains Above 7500 Feet, NM +[nmz415] +centroid = (0.57595865315812877, -1.8446384864328069) +description = Sacramento Mountains Above 7500 Feet, NM +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz415.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz415.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz415.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz415.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz415.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz415.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz415.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz415.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz415.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz415.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz415.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz415.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz415.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz415.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz415.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz415.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz415.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz415.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz415.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz415.txt + +# guessed from the nws map for East Slopes Sacramento Mountains Below 7500 Feet, NM +[nmz416] +centroid = (0.57508598853213166, -1.8402751633028209) +description = East Slopes Sacramento Mountains Below 7500 Feet, NM +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz416.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz416.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz416.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz416.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz416.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz416.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz416.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz416.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz416.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz416.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz416.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz416.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz416.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz416.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz416.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz416.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz416.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz416.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz416.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz416.txt + +# guessed from the nws map for Otero Mesa, NM +[nmz417] +centroid = (0.56321774961857018, -1.8406242291532198) +description = Otero Mesa, NM +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz417.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz417.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz417.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz417.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz417.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz417.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz417.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz417.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz417.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz417.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz417.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz417.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz417.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz417.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz417.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz417.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz417.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz417.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz417.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz417.txt + +[nmz501] +description = Northwest Plateau, NM +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz501.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz501.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz501.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz501.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz501.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz501.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz501.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz501.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz501.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz501.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz501.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz501.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz501.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz501.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz501.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz501.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz501.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz501.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz501.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz501.txt + +[nmz502] +description = Chuska Mountains, NM +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz502.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz502.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz502.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz502.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz502.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz502.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz502.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz502.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz502.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz502.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz502.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz502.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz502.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz502.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz502.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz502.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz502.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz502.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz502.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz502.txt + +[nmz503] +description = Far Northwest Highlands, NM +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz503.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz503.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz503.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz503.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz503.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz503.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz503.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz503.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz503.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz503.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz503.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz503.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz503.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz503.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz503.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz503.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz503.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz503.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz503.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz503.txt + +[nmz504] +description = Northwest Highlands, NM +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz504.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz504.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz504.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz504.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz504.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz504.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz504.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz504.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz504.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz504.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz504.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz504.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz504.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz504.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz504.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz504.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz504.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz504.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz504.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz504.txt + +[nmz505] +description = West Central Plateau, NM +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz505.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz505.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz505.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz505.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz505.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz505.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz505.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz505.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz505.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz505.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz505.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz505.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz505.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz505.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz505.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz505.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz505.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz505.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz505.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz505.txt + +[nmz506] +description = West Central Mountains, NM +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz506.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz506.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz506.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz506.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz506.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz506.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz506.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz506.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz506.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz506.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz506.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz506.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz506.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz506.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz506.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz506.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz506.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz506.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz506.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz506.txt + +[nmz507] +description = West Central Highlands, NM +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz507.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz507.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz507.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz507.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz507.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz507.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz507.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz507.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz507.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz507.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz507.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz507.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz507.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz507.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz507.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz507.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz507.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz507.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz507.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz507.txt + +[nmz508] +description = Southwest Mountains, NM +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz508.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz508.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz508.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz508.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz508.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz508.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz508.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz508.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz508.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz508.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz508.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz508.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz508.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz508.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz508.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz508.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz508.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz508.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz508.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz508.txt + +[nmz509] +description = San Francisco River Valley, NM +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz509.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz509.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz509.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz509.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz509.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz509.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz509.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz509.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz509.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz509.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz509.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz509.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz509.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz509.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz509.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz509.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz509.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz509.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz509.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz509.txt + +[nmz510] +description = San Juan Mountains, NM +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz510.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz510.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz510.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz510.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz510.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz510.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz510.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz510.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz510.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz510.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz510.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz510.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz510.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz510.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz510.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz510.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz510.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz510.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz510.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz510.txt + +[nmz511] +description = Jemez Mountains, NM +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz511.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz511.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz511.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz511.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz511.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz511.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz511.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz511.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz511.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz511.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz511.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz511.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz511.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz511.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz511.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz511.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz511.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz511.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz511.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz511.txt + +[nmz512] +description = West Slopes Sangre De Cristo Mountains, NM +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz512.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz512.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz512.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz512.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz512.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz512.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz512.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz512.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz512.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz512.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz512.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz512.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz512.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz512.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz512.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz512.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz512.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz512.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz512.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz512.txt + +[nmz513] +description = Northern Sangre de Cristo Mountains above 9500 feet, NM +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz513.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz513.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz513.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz513.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz513.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz513.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz513.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz513.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz513.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz513.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz513.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz513.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz513.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz513.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz513.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz513.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz513.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz513.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz513.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz513.txt + +[nmz514] +description = Southern Sangre de Cristo Mountains above 9500 feet, NM +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz514.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz514.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz514.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz514.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz514.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz514.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz514.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz514.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz514.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz514.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz514.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz514.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz514.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz514.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz514.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz514.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz514.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz514.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz514.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz514.txt + +[nmz515] +description = East Slopes Sangre de Cristo Mountains, NM +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz515.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz515.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz515.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz515.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz515.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz515.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz515.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz515.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz515.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz515.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz515.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz515.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz515.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz515.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz515.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz515.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz515.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz515.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz515.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz515.txt + +[nmz516] +description = Upper Rio Grande Valley, NM +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz516.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz516.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz516.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz516.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz516.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz516.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz516.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz516.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz516.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz516.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz516.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz516.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz516.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz516.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz516.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz516.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz516.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz516.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz516.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz516.txt + +[nmz517] +description = Lower Chama River Valley, NM +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz517.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz517.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz517.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz517.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz517.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz517.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz517.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz517.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz517.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz517.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz517.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz517.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz517.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz517.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz517.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz517.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz517.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz517.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz517.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz517.txt + +[nmz518] +description = Santa Fe metro area, NM +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz518.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz518.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz518.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz518.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz518.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz518.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz518.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz518.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz518.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz518.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz518.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz518.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz518.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz518.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz518.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz518.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz518.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz518.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz518.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz518.txt + +[nmz519] +description = Albuquerque metro area, NM +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz519.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz519.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz519.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz519.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz519.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz519.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz519.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz519.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz519.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz519.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz519.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz519.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz519.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz519.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz519.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz519.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz519.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz519.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz519.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz519.txt + +[nmz520] +description = Lower Rio Grande Valley, NM +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz520.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz520.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz520.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz520.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz520.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz520.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz520.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz520.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz520.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz520.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz520.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz520.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz520.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz520.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz520.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz520.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz520.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz520.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz520.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz520.txt + +[nmz521] +description = Sandia/Manzano Mountains, NM +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz521.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz521.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz521.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz521.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz521.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz521.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz521.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz521.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz521.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz521.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz521.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz521.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz521.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz521.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz521.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz521.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz521.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz521.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz521.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz521.txt + +[nmz522] +description = Estancia Valley, NM +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz522.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz522.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz522.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz522.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz522.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz522.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz522.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz522.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz522.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz522.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz522.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz522.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz522.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz522.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz522.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz522.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz522.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz522.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz522.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz522.txt + +[nmz523] +description = Central Highlands, NM +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz523.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz523.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz523.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz523.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz523.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz523.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz523.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz523.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz523.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz523.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz523.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz523.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz523.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz523.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz523.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz523.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz523.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz523.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz523.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz523.txt + +[nmz524] +description = South Central Highlands, NM +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz524.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz524.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz524.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz524.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz524.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz524.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz524.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz524.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz524.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz524.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz524.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz524.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz524.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz524.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz524.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz524.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz524.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz524.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz524.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz524.txt + +[nmz525] +description = Upper Tularosa Valley, NM +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz525.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz525.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz525.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz525.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz525.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz525.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz525.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz525.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz525.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz525.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz525.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz525.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz525.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz525.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz525.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz525.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz525.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz525.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz525.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz525.txt + +[nmz526] +description = South Central Mountains, NM +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz526.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz526.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz526.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz526.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz526.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz526.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz526.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz526.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz526.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz526.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz526.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz526.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz526.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz526.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz526.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz526.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz526.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz526.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz526.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz526.txt + +[nmz527] +description = Raton Ridge/Johnson Mesa, NM +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz527.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz527.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz527.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz527.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz527.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz527.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz527.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz527.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz527.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz527.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz527.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz527.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz527.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz527.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz527.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz527.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz527.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz527.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz527.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz527.txt + +[nmz528] +description = Far Northeast Highlands, NM +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz528.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz528.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz528.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz528.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz528.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz528.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz528.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz528.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz528.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz528.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz528.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz528.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz528.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz528.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz528.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz528.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz528.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz528.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz528.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz528.txt + +[nmz529] +description = Northeast Highlands, NM +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz529.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz529.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz529.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz529.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz529.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz529.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz529.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz529.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz529.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz529.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz529.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz529.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz529.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz529.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz529.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz529.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz529.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz529.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz529.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz529.txt + +[nmz530] +description = Union County, NM +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz530.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz530.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz530.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz530.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz530.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz530.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz530.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz530.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz530.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz530.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz530.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz530.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz530.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz530.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz530.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz530.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz530.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz530.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz530.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz530.txt + +[nmz531] +description = Harding County, NM +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz531.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz531.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz531.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz531.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz531.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz531.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz531.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz531.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz531.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz531.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz531.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz531.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz531.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz531.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz531.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz531.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz531.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz531.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz531.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz531.txt + +[nmz532] +description = Eastern San Miguel County, NM +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz532.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz532.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz532.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz532.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz532.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz532.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz532.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz532.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz532.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz532.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz532.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz532.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz532.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz532.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz532.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz532.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz532.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz532.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz532.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz532.txt + +[nmz533] +description = Guadalupe County, NM +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz533.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz533.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz533.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz533.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz533.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz533.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz533.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz533.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz533.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz533.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz533.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz533.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz533.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz533.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz533.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz533.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz533.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz533.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz533.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz533.txt + +[nmz534] +description = Quay County, NM +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz534.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz534.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz534.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz534.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz534.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz534.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz534.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz534.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz534.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz534.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz534.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz534.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz534.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz534.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz534.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz534.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz534.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz534.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz534.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz534.txt + +[nmz535] +description = Curry County, NM +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz535.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz535.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz535.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz535.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz535.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz535.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz535.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz535.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz535.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz535.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz535.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz535.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz535.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz535.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz535.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz535.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz535.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz535.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz535.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz535.txt + +[nmz536] +description = Roosevelt County, NM +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz536.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz536.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz536.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz536.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz536.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz536.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz536.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz536.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz536.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz536.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz536.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz536.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz536.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz536.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz536.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz536.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz536.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz536.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz536.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz536.txt + +[nmz537] +description = De Baca County, NM +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz537.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz537.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz537.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz537.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz537.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz537.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz537.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz537.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz537.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz537.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz537.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz537.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz537.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz537.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz537.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz537.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz537.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz537.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz537.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz537.txt + +[nmz538] +description = Chaves County Plains, NM +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz538.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz538.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz538.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz538.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz538.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz538.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz538.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz538.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz538.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz538.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz538.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz538.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz538.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz538.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz538.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz538.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz538.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz538.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz538.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz538.txt + +[nmz539] +description = Eastern Lincoln County, NM +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz539.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz539.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz539.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz539.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz539.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz539.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz539.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz539.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz539.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz539.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz539.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz539.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz539.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz539.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz539.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz539.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz539.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz539.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz539.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz539.txt + +[nmz540] +description = Southwest Chaves County, NM +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz540.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz540.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz540.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz540.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz540.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz540.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz540.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz540.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz540.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz540.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz540.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz540.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz540.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz540.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz540.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz540.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz540.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz540.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz540.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz540.txt + +[nvz038] +description = Southwestern Elko County, NV +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nv/nvz038.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nv/nvz038.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nv/nvz038.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nv/nvz038.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nv/nvz038.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nv/nvz038.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nv/nvz038.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nv/nvz038.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nv/nvz038.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nv/nvz038.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nv/nvz038.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nv/nvz038.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nv/nvz038.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nv/nvz038.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nv/nvz038.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nv/nvz038.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nv/nvz038.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nv.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nv/nvz038.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nv/nvz038.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nv/nvz038.txt + +# guessed from the nws map for South Central Elko County, NV +[nvz039] +centroid = (0.70860367630969778, -2.0045106459154876) +description = South Central Elko County, NV +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nv/nvz039.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nv/nvz039.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nv/nvz039.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nv/nvz039.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nv/nvz039.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nv/nvz039.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nv/nvz039.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nv/nvz039.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nv/nvz039.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nv/nvz039.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nv/nvz039.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nv/nvz039.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nv/nvz039.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nv/nvz039.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nv/nvz039.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nv/nvz039.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nv/nvz039.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nv.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nv/nvz039.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nv/nvz039.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nv/nvz039.txt + +[nvz040] +description = Northwestern Nye County, NV +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nv/nvz040.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nv/nvz040.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nv/nvz040.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nv/nvz040.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nv/nvz040.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nv/nvz040.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nv/nvz040.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nv/nvz040.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nv/nvz040.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nv/nvz040.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nv/nvz040.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nv/nvz040.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nv/nvz040.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nv/nvz040.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nv/nvz040.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nv/nvz040.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nv/nvz040.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nv.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nv/nvz040.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nv/nvz040.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nv/nvz040.txt + +[nvz041] +description = Northeastern Nye County, NV +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nv/nvz041.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nv/nvz041.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nv/nvz041.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nv/nvz041.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nv/nvz041.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nv/nvz041.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nv/nvz041.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nv/nvz041.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nv/nvz041.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nv/nvz041.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nv/nvz041.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nv/nvz041.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nv/nvz041.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nv/nvz041.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nv/nvz041.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nv/nvz041.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nv/nvz041.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nv.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nv/nvz041.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nv/nvz041.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nv/nvz041.txt + +[nyz176] +description = Northern Queens County, NY +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz176.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz176.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz176.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz176.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz176.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz176.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz176.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz176.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz176.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz176.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz176.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz176.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz176.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz176.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz176.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz176.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz176.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz176.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz176.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz176.txt + +[nyz177] +description = Northern Nassau County, NY +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz177.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz177.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz177.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz177.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz177.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz177.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz177.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz177.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz177.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz177.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz177.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz177.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz177.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz177.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz177.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz177.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz177.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz177.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz177.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz177.txt + +[nyz178] +description = Southern Queens County, NY +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz178.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz178.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz178.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz178.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz178.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz178.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz178.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz178.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz178.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz178.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz178.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz178.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz178.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz178.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz178.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz178.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz178.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz178.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz178.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz178.txt + +[nyz179] +description = Southern Nassau County, NY +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz179.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz179.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz179.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz179.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz179.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz179.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz179.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz179.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz179.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz179.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz179.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz179.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz179.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz179.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz179.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz179.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz179.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz179.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz179.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz179.txt + +[orz014] +description = Upper Hood River Valley, OR +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/or/orz014.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/or/orz014.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/or/orz014.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/or/orz014.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/or/orz014.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/or/orz014.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/or/orz014.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/or/orz014.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/or/orz014.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/or/orz014.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/or.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/or/orz014.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/or/orz014.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/or/orz014.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/or/orz014.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/or/orz014.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/or/orz014.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/or/orz014.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/or.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/or/orz014.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/or/orz014.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/or/orz014.txt + +[orz507] +description = Northern Blue Mountains Foothills, OR +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/or/orz507.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/or/orz507.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/or/orz507.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/or/orz507.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/or/orz507.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/or/orz507.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/or/orz507.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/or/orz507.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/or/orz507.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/or/orz507.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/or.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/or/orz507.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/or/orz507.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/or/orz507.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/or/orz507.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/or/orz507.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/or/orz507.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/or/orz507.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/or.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/or/orz507.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/or/orz507.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/or/orz507.txt + +[orz508] +description = Southern Blue Mountains Foothills, OR +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/or/orz508.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/or/orz508.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/or/orz508.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/or/orz508.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/or/orz508.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/or/orz508.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/or/orz508.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/or/orz508.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/or/orz508.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/or/orz508.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/or.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/or/orz508.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/or/orz508.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/or/orz508.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/or/orz508.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/or/orz508.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/or/orz508.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/or/orz508.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/or.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/or/orz508.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/or/orz508.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/or/orz508.txt + +[orz509] +description = East Slopes of the Cascades, OR +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/or/orz509.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/or/orz509.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/or/orz509.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/or/orz509.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/or/orz509.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/or/orz509.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/or/orz509.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/or/orz509.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/or/orz509.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/or/orz509.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/or.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/or/orz509.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/or/orz509.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/or/orz509.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/or/orz509.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/or/orz509.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/or/orz509.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/or/orz509.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/or.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/or/orz509.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/or/orz509.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/or/orz509.txt + +[paz073] +description = Westmoreland, PA +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pa/paz073.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pa/paz073.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pa/paz073.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pa/paz073.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pa/paz073.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pa/paz073.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pa/paz073.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pa/paz073.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pa/paz073.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pa/paz073.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pa/paz073.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pa/paz073.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pa/paz073.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pa/paz073.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pa/paz073.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pa/paz073.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pa/paz073.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pa.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pa/paz073.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pa/paz073.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pa/paz073.txt + +[paz074] +description = Westmoreland Ridges, PA +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pa/paz074.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pa/paz074.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pa/paz074.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pa/paz074.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pa/paz074.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pa/paz074.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pa/paz074.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pa/paz074.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pa/paz074.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pa/paz074.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pa/paz074.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pa/paz074.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pa/paz074.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pa/paz074.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pa/paz074.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pa/paz074.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pa/paz074.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pa.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pa/paz074.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pa/paz074.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pa/paz074.txt + +[paz075] +description = Fayette, PA +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pa/paz075.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pa/paz075.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pa/paz075.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pa/paz075.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pa/paz075.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pa/paz075.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pa/paz075.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pa/paz075.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pa/paz075.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pa/paz075.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pa/paz075.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pa/paz075.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pa/paz075.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pa/paz075.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pa/paz075.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pa/paz075.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pa/paz075.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pa.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pa/paz075.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pa/paz075.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pa/paz075.txt + +[paz076] +description = Fayette Ridges, PA +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pa/paz076.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pa/paz076.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pa/paz076.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pa/paz076.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pa/paz076.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pa/paz076.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pa/paz076.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pa/paz076.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pa/paz076.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pa/paz076.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pa/paz076.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pa/paz076.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pa/paz076.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pa/paz076.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pa/paz076.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pa/paz076.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pa/paz076.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pa.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pa/paz076.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pa/paz076.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pa/paz076.txt + +[scz052] +description = Tidal Berkeley County, SC +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sc/scz052.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sc/scz052.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sc/scz052.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sc/scz052.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sc/scz052.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sc/scz052.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sc/scz052.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sc/scz052.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sc/scz052.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sc/scz052.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sc/scz052.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sc/scz052.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sc/scz052.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sc/scz052.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sc/scz052.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sc/scz052.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sc/scz052.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sc.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sc/scz052.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sc/scz052.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sc/scz052.txt + +[scz053] +description = Inland Horry County, SC +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sc/scz053.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sc/scz053.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sc/scz053.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sc/scz053.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sc/scz053.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sc/scz053.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sc/scz053.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sc/scz053.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sc/scz053.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sc/scz053.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sc/scz053.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sc/scz053.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sc/scz053.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sc/scz053.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sc/scz053.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sc/scz053.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sc/scz053.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sc.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sc/scz053.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sc/scz053.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sc/scz053.txt + +[scz054] +description = Coastal Horry County, SC +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sc/scz054.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sc/scz054.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sc/scz054.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sc/scz054.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sc/scz054.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sc/scz054.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sc/scz054.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sc/scz054.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sc/scz054.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sc/scz054.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sc/scz054.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sc/scz054.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sc/scz054.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sc/scz054.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sc/scz054.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sc/scz054.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sc/scz054.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sc.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sc/scz054.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sc/scz054.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sc/scz054.txt + +[scz055] +description = Inland Georgetown County, SC +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sc/scz055.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sc/scz055.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sc/scz055.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sc/scz055.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sc/scz055.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sc/scz055.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sc/scz055.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sc/scz055.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sc/scz055.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sc/scz055.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sc/scz055.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sc/scz055.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sc/scz055.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sc/scz055.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sc/scz055.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sc/scz055.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sc/scz055.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sc.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sc/scz055.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sc/scz055.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sc/scz055.txt + +[scz056] +description = Coastal Georgetown County, SC +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sc/scz056.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sc/scz056.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sc/scz056.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sc/scz056.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sc/scz056.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sc/scz056.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sc/scz056.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sc/scz056.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sc/scz056.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sc/scz056.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sc/scz056.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sc/scz056.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sc/scz056.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sc/scz056.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sc/scz056.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sc/scz056.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sc/scz056.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sc.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sc/scz056.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sc/scz056.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sc/scz056.txt + +[txz259] +description = Northern Jasper County, TX +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz259.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz259.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz259.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz259.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz259.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz259.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz259.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz259.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz259.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz259.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz259.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz259.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz259.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz259.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz259.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz259.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz259.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz259.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz259.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz259.txt + +[txz260] +description = Northern Newton County, TX +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz260.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz260.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz260.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz260.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz260.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz260.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz260.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz260.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz260.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz260.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz260.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz260.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz260.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz260.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz260.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz260.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz260.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz260.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz260.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz260.txt + +[txz261] +description = Southern Jasper County, TX +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz261.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz261.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz261.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz261.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz261.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz261.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz261.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz261.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz261.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz261.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz261.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz261.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz261.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz261.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz261.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz261.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz261.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz261.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz261.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz261.txt + +[txz262] +description = Southern Newton County, TX +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz262.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz262.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz262.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz262.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz262.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz262.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz262.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz262.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz262.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz262.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz262.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz262.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz262.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz262.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz262.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz262.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz262.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz262.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz262.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz262.txt + +# guessed from the nws map for Western El Paso County, TX +[txz418] +centroid = (0.55676003138619112, -1.8601719167755564) +description = Western El Paso County, TX +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz418.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz418.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz418.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz418.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz418.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz418.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz418.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz418.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz418.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz418.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz418.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz418.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz418.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz418.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz418.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz418.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz418.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz418.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz418.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz418.txt + +# guessed from the nws map for Eastern/Central El Paso County, TX +[txz419] +centroid = (0.55536376798459564, -1.8552849948699723) +description = Eastern/Central El Paso County, TX +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz419.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz419.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz419.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz419.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz419.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz419.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz419.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz419.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz419.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz419.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz419.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz419.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz419.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz419.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz419.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz419.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz419.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz419.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz419.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz419.txt + +# guessed from the nws map for Northern Hudspeth Highlands/Hueco Mountains, TX +[txz420] +centroid = (0.5536184387326013, -1.8462092827596017) +description = Northern Hudspeth Highlands/Hueco Mountains, TX +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz420.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz420.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz420.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz420.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz420.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz420.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz420.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz420.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz420.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz420.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz420.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz420.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz420.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz420.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz420.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz420.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz420.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz420.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz420.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz420.txt + +# guessed from the nws map for Salt Basin, TX +[txz421] +centroid = (0.5543165704333991, -1.8366099718736331) +description = Salt Basin, TX +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz421.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz421.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz421.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz421.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz421.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz421.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz421.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz421.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz421.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz421.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz421.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz421.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz421.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz421.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz421.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz421.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz421.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz421.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz421.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz421.txt + +# guessed from the nws map for Southern Hudspeth Highlands, TX +[txz422] +centroid = (0.54524085832302849, -1.836260906023234) +description = Southern Hudspeth Highlands, TX +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz422.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz422.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz422.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz422.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz422.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz422.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz422.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz422.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz422.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz422.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz422.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz422.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz422.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz422.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz422.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz422.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz422.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz422.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz422.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz422.txt + +# guessed from the nws map for Rio Grande Valley of Eastern El Paso/Western Hudspeth Counties, TX +[txz423] +centroid = (0.54803338512621946, -1.8481291449367956) +description = Rio Grande Valley of Eastern El Paso/Western Hudspeth Counties, TX +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz423.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz423.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz423.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz423.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz423.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz423.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz423.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz423.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz423.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz423.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz423.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz423.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz423.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz423.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz423.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz423.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz423.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz423.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz423.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz423.txt + +# guessed from the nws map for Rio Grande Valley of Eastern Hudspeth County, TX +[txz424] +centroid = (0.53878314009064954, -1.8366099718736331) +description = Rio Grande Valley of Eastern Hudspeth County, TX +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz424.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz424.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz424.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz424.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz424.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz424.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz424.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz424.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz424.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz424.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz424.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz424.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz424.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz424.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz424.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz424.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz424.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz424.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz424.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz424.txt + +[utz517] +description = Central Mountains, UT +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ut/utz517.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ut/utz517.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ut/utz517.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ut/utz517.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ut/utz517.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ut/utz517.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ut/utz517.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ut/utz517.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ut/utz517.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ut/utz517.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ut.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ut/utz517.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ut/utz517.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ut/utz517.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ut/utz517.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ut/utz517.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ut/utz517.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ut/utz517.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ut.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ut/utz517.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ut/utz517.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ut/utz517.txt + +[utz518] +description = Southern Mountains, UT +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ut/utz518.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ut/utz518.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ut/utz518.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ut/utz518.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ut/utz518.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ut/utz518.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ut/utz518.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ut/utz518.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ut/utz518.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ut/utz518.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ut.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ut/utz518.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ut/utz518.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ut/utz518.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ut/utz518.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ut/utz518.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ut/utz518.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ut/utz518.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ut.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ut/utz518.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ut/utz518.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ut/utz518.txt + +[vaz501] +description = Northern Fauquier County, VA +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz501.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz501.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz501.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz501.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz501.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz501.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz501.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz501.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz501.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz501.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz501.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz501.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz501.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz501.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz501.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz501.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz501.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz501.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz501.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz501.txt + +[vaz502] +description = Southern Fauquier County, VA +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz502.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz502.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz502.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz502.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz502.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz502.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz502.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz502.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz502.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz502.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz502.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz502.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz502.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz502.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz502.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz502.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz502.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz502.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz502.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz502.txt + +[vaz503] +description = Western Highland County, VA +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz503.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz503.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz503.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz503.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz503.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz503.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz503.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz503.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz503.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz503.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz503.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz503.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz503.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz503.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz503.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz503.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz503.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz503.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz503.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz503.txt + +[vaz504] +description = Eastern Highland County, VA +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz504.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz504.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz504.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz504.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz504.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz504.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz504.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz504.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz504.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz504.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz504.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz504.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz504.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz504.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz504.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz504.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz504.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz504.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz504.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz504.txt + +[waz503] +description = San Juan and Western Whatcom Counties, WA +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wa/waz503.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wa/waz503.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wa/waz503.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wa/waz503.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wa/waz503.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wa/waz503.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wa/waz503.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wa/waz503.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wa/waz503.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wa/waz503.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wa/waz503.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wa/waz503.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wa/waz503.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wa/waz503.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wa/waz503.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wa/waz503.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wa/waz503.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wa.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wa/waz503.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wa/waz503.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wa/waz503.txt + +[waz504] +description = Southwest Interior, WA +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wa/waz504.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wa/waz504.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wa/waz504.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wa/waz504.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wa/waz504.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wa/waz504.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wa/waz504.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wa/waz504.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wa/waz504.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wa/waz504.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wa/waz504.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wa/waz504.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wa/waz504.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wa/waz504.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wa/waz504.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wa/waz504.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wa/waz504.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wa.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wa/waz504.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wa/waz504.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wa/waz504.txt + +[waz505] +description = East Puget Sound Lowlands, WA +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wa/waz505.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wa/waz505.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wa/waz505.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wa/waz505.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wa/waz505.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wa/waz505.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wa/waz505.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wa/waz505.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wa/waz505.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wa/waz505.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wa/waz505.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wa/waz505.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wa/waz505.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wa/waz505.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wa/waz505.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wa/waz505.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wa/waz505.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wa.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wa/waz505.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wa/waz505.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wa/waz505.txt + +[waz506] +description = Western Skagit County, WA +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wa/waz506.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wa/waz506.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wa/waz506.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wa/waz506.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wa/waz506.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wa/waz506.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wa/waz506.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wa/waz506.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wa/waz506.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wa/waz506.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wa/waz506.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wa/waz506.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wa/waz506.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wa/waz506.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wa/waz506.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wa/waz506.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wa/waz506.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wa.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wa/waz506.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wa/waz506.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wa/waz506.txt + +[waz507] +description = Everett and vicinity, WA +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wa/waz507.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wa/waz507.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wa/waz507.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wa/waz507.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wa/waz507.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wa/waz507.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wa/waz507.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wa/waz507.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wa/waz507.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wa/waz507.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wa/waz507.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wa/waz507.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wa/waz507.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wa/waz507.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wa/waz507.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wa/waz507.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wa/waz507.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wa.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wa/waz507.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wa/waz507.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wa/waz507.txt + +[waz508] +description = Seattle/Bremerton area, WA +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wa/waz508.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wa/waz508.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wa/waz508.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wa/waz508.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wa/waz508.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wa/waz508.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wa/waz508.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wa/waz508.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wa/waz508.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wa/waz508.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wa/waz508.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wa/waz508.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wa/waz508.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wa/waz508.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wa/waz508.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wa/waz508.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wa/waz508.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wa.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wa/waz508.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wa/waz508.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wa/waz508.txt + +[waz509] +description = Tacoma area, WA +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wa/waz509.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wa/waz509.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wa/waz509.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wa/waz509.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wa/waz509.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wa/waz509.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wa/waz509.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wa/waz509.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wa/waz509.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wa/waz509.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wa/waz509.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wa/waz509.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wa/waz509.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wa/waz509.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wa/waz509.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wa/waz509.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wa/waz509.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wa.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wa/waz509.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wa/waz509.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wa/waz509.txt + +[waz510] +description = Admiralty Inlet area, WA +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wa/waz510.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wa/waz510.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wa/waz510.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wa/waz510.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wa/waz510.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wa/waz510.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wa/waz510.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wa/waz510.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wa/waz510.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wa/waz510.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wa/waz510.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wa/waz510.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wa/waz510.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wa/waz510.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wa/waz510.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wa/waz510.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wa/waz510.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wa.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wa/waz510.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wa/waz510.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wa/waz510.txt + +[waz511] +description = Hood Canal area, WA +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wa/waz511.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wa/waz511.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wa/waz511.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wa/waz511.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wa/waz511.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wa/waz511.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wa/waz511.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wa/waz511.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wa/waz511.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wa/waz511.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wa/waz511.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wa/waz511.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wa/waz511.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wa/waz511.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wa/waz511.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wa/waz511.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wa/waz511.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wa.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wa/waz511.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wa/waz511.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wa/waz511.txt + +[waz512] +description = Lower Chehalis Valley area, WA +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wa/waz512.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wa/waz512.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wa/waz512.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wa/waz512.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wa/waz512.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wa/waz512.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wa/waz512.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wa/waz512.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wa/waz512.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wa/waz512.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wa/waz512.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wa/waz512.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wa/waz512.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wa/waz512.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wa/waz512.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wa/waz512.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wa/waz512.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wa.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wa/waz512.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wa/waz512.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wa/waz512.txt + +[waz513] +description = Olympics County, WA +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wa/waz513.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wa/waz513.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wa/waz513.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wa/waz513.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wa/waz513.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wa/waz513.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wa/waz513.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wa/waz513.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wa/waz513.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wa/waz513.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wa/waz513.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wa/waz513.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wa/waz513.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wa/waz513.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wa/waz513.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wa/waz513.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wa/waz513.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wa.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wa/waz513.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wa/waz513.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wa/waz513.txt + +[waz514] +description = Eastern Strait of Juan de Fuca, WA +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wa/waz514.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wa/waz514.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wa/waz514.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wa/waz514.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wa/waz514.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wa/waz514.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wa/waz514.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wa/waz514.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wa/waz514.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wa/waz514.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wa/waz514.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wa/waz514.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wa/waz514.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wa/waz514.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wa/waz514.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wa/waz514.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wa/waz514.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wa.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wa/waz514.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wa/waz514.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wa/waz514.txt + +[waz515] +description = Western Strait of Juan de Fuca, WA +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wa/waz515.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wa/waz515.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wa/waz515.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wa/waz515.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wa/waz515.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wa/waz515.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wa/waz515.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wa/waz515.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wa/waz515.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wa/waz515.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wa/waz515.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wa/waz515.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wa/waz515.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wa/waz515.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wa/waz515.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wa/waz515.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wa/waz515.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wa.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wa/waz515.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wa/waz515.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wa/waz515.txt + +[waz516] +description = North Coast, WA +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wa/waz516.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wa/waz516.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wa/waz516.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wa/waz516.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wa/waz516.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wa/waz516.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wa/waz516.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wa/waz516.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wa/waz516.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wa/waz516.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wa/waz516.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wa/waz516.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wa/waz516.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wa/waz516.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wa/waz516.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wa/waz516.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wa/waz516.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wa.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wa/waz516.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wa/waz516.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wa/waz516.txt + +[waz517] +description = Central Coast, WA +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wa/waz517.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wa/waz517.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wa/waz517.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wa/waz517.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wa/waz517.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wa/waz517.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wa/waz517.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wa/waz517.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wa/waz517.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wa/waz517.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wa/waz517.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wa/waz517.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wa/waz517.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wa/waz517.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wa/waz517.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wa/waz517.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wa/waz517.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wa.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wa/waz517.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wa/waz517.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wa/waz517.txt + +[waz518] +description = West Slopes of Northern Cascades and Passes, WA +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wa/waz518.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wa/waz518.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wa/waz518.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wa/waz518.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wa/waz518.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wa/waz518.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wa/waz518.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wa/waz518.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wa/waz518.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wa/waz518.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wa/waz518.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wa/waz518.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wa/waz518.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wa/waz518.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wa/waz518.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wa/waz518.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wa/waz518.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wa.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wa/waz518.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wa/waz518.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wa/waz518.txt + +[waz519] +description = West Slopes of Central Cascades and Passes, WA +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wa/waz519.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wa/waz519.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wa/waz519.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wa/waz519.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wa/waz519.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wa/waz519.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wa/waz519.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wa/waz519.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wa/waz519.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wa/waz519.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wa/waz519.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wa/waz519.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wa/waz519.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wa/waz519.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wa/waz519.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wa/waz519.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wa/waz519.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wa.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wa/waz519.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wa/waz519.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wa/waz519.txt + +[waz520] +description = East Slopes of the Cascades, WA +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wa/waz520.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wa/waz520.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wa/waz520.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wa/waz520.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wa/waz520.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wa/waz520.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wa/waz520.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wa/waz520.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wa/waz520.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wa/waz520.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wa/waz520.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wa/waz520.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wa/waz520.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wa/waz520.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wa/waz520.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wa/waz520.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wa/waz520.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wa.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wa/waz520.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wa/waz520.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wa/waz520.txt + +[waz521] +description = Simcoe Highlands, WA +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wa/waz521.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wa/waz521.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wa/waz521.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wa/waz521.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wa/waz521.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wa/waz521.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wa/waz521.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wa/waz521.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wa/waz521.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wa/waz521.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wa/waz521.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wa/waz521.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wa/waz521.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wa/waz521.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wa/waz521.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wa/waz521.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wa/waz521.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wa.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wa/waz521.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wa/waz521.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wa/waz521.txt + +[wvz501] +description = Western Grant County, WV +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wv/wvz501.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wv/wvz501.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wv/wvz501.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wv/wvz501.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wv/wvz501.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wv/wvz501.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wv/wvz501.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wv/wvz501.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wv/wvz501.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wv/wvz501.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wv/wvz501.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wv/wvz501.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wv/wvz501.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wv/wvz501.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wv/wvz501.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wv/wvz501.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wv/wvz501.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wv.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wv/wvz501.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wv/wvz501.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wv/wvz501.txt + +[wvz502] +description = Eastern Grant County, WV +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wv/wvz502.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wv/wvz502.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wv/wvz502.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wv/wvz502.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wv/wvz502.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wv/wvz502.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wv/wvz502.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wv/wvz502.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wv/wvz502.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wv/wvz502.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wv/wvz502.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wv/wvz502.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wv/wvz502.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wv/wvz502.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wv/wvz502.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wv/wvz502.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wv/wvz502.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wv.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wv/wvz502.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wv/wvz502.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wv/wvz502.txt + +[wvz503] +description = Western Mineral County, WV +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wv/wvz503.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wv/wvz503.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wv/wvz503.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wv/wvz503.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wv/wvz503.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wv/wvz503.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wv/wvz503.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wv/wvz503.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wv/wvz503.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wv/wvz503.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wv/wvz503.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wv/wvz503.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wv/wvz503.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wv/wvz503.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wv/wvz503.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wv/wvz503.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wv/wvz503.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wv.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wv/wvz503.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wv/wvz503.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wv/wvz503.txt + +[wvz504] +description = Eastern Mineral County, WV +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wv/wvz504.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wv/wvz504.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wv/wvz504.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wv/wvz504.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wv/wvz504.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wv/wvz504.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wv/wvz504.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wv/wvz504.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wv/wvz504.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wv/wvz504.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wv/wvz504.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wv/wvz504.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wv/wvz504.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wv/wvz504.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wv/wvz504.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wv/wvz504.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wv/wvz504.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wv.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wv/wvz504.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wv/wvz504.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wv/wvz504.txt + +[wvz505] +description = Western Pendleton County, WV +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wv/wvz505.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wv/wvz505.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wv/wvz505.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wv/wvz505.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wv/wvz505.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wv/wvz505.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wv/wvz505.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wv/wvz505.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wv/wvz505.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wv/wvz505.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wv/wvz505.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wv/wvz505.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wv/wvz505.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wv/wvz505.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wv/wvz505.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wv/wvz505.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wv/wvz505.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wv.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wv/wvz505.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wv/wvz505.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wv/wvz505.txt + +[wvz506] +description = Eastern Pendleton County, WV +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wv/wvz506.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wv/wvz506.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wv/wvz506.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wv/wvz506.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wv/wvz506.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wv/wvz506.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wv/wvz506.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wv/wvz506.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wv/wvz506.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wv/wvz506.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wv/wvz506.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wv/wvz506.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wv/wvz506.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wv/wvz506.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wv/wvz506.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wv/wvz506.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wv/wvz506.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wv.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wv/wvz506.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wv/wvz506.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wv/wvz506.txt + +[wyz101] +description = Lower elevations of Converse County, WY +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wy/wyz101.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wy/wyz101.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wy/wyz101.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wy/wyz101.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wy/wyz101.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wy/wyz101.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wy/wyz101.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wy/wyz101.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wy/wyz101.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wy/wyz101.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wy.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wy/wyz101.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wy/wyz101.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wy/wyz101.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wy/wyz101.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wy/wyz101.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wy/wyz101.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wy/wyz101.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wy.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wy/wyz101.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wy/wyz101.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wy/wyz101.txt + +[wyz102] +description = Niobrara County, WY +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wy/wyz102.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wy/wyz102.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wy/wyz102.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wy/wyz102.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wy/wyz102.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wy/wyz102.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wy/wyz102.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wy/wyz102.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wy/wyz102.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wy/wyz102.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wy.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wy/wyz102.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wy/wyz102.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wy/wyz102.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wy/wyz102.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wy/wyz102.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wy/wyz102.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wy/wyz102.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wy.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wy/wyz102.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wy/wyz102.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wy/wyz102.txt + +[wyz103] +description = North Laramie Range, WY +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wy/wyz103.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wy/wyz103.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wy/wyz103.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wy/wyz103.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wy/wyz103.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wy/wyz103.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wy/wyz103.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wy/wyz103.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wy/wyz103.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wy/wyz103.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wy.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wy/wyz103.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wy/wyz103.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wy/wyz103.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wy/wyz103.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wy/wyz103.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wy/wyz103.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wy/wyz103.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wy.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wy/wyz103.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wy/wyz103.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wy/wyz103.txt + +[wyz104] +description = Ferris/Seminoe/Shirley Mountains, WY +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wy/wyz104.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wy/wyz104.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wy/wyz104.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wy/wyz104.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wy/wyz104.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wy/wyz104.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wy/wyz104.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wy/wyz104.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wy/wyz104.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wy/wyz104.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wy.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wy/wyz104.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wy/wyz104.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wy/wyz104.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wy/wyz104.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wy/wyz104.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wy/wyz104.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wy/wyz104.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wy.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wy/wyz104.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wy/wyz104.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wy/wyz104.txt + +[wyz105] +description = Shirley Basin, WY +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wy/wyz105.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wy/wyz105.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wy/wyz105.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wy/wyz105.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wy/wyz105.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wy/wyz105.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wy/wyz105.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wy/wyz105.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wy/wyz105.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wy/wyz105.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wy.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wy/wyz105.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wy/wyz105.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wy/wyz105.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wy/wyz105.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wy/wyz105.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wy/wyz105.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wy/wyz105.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wy.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wy/wyz105.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wy/wyz105.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wy/wyz105.txt + +[wyz106] +description = Central Laramie Range and Southwest Platte County, WY +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wy/wyz106.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wy/wyz106.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wy/wyz106.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wy/wyz106.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wy/wyz106.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wy/wyz106.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wy/wyz106.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wy/wyz106.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wy/wyz106.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wy/wyz106.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wy.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wy/wyz106.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wy/wyz106.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wy/wyz106.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wy/wyz106.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wy/wyz106.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wy/wyz106.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wy/wyz106.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wy.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wy/wyz106.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wy/wyz106.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wy/wyz106.txt + +[wyz107] +description = East Platte County, WY +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wy/wyz107.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wy/wyz107.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wy/wyz107.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wy/wyz107.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wy/wyz107.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wy/wyz107.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wy/wyz107.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wy/wyz107.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wy/wyz107.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wy/wyz107.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wy.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wy/wyz107.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wy/wyz107.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wy/wyz107.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wy/wyz107.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wy/wyz107.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wy/wyz107.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wy/wyz107.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wy.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wy/wyz107.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wy/wyz107.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wy/wyz107.txt + +[wyz108] +description = Goshen County, WY +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wy/wyz108.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wy/wyz108.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wy/wyz108.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wy/wyz108.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wy/wyz108.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wy/wyz108.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wy/wyz108.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wy/wyz108.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wy/wyz108.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wy/wyz108.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wy.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wy/wyz108.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wy/wyz108.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wy/wyz108.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wy/wyz108.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wy/wyz108.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wy/wyz108.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wy/wyz108.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wy.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wy/wyz108.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wy/wyz108.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wy/wyz108.txt + +[wyz109] +description = Central Carbon County, WY +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wy/wyz109.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wy/wyz109.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wy/wyz109.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wy/wyz109.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wy/wyz109.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wy/wyz109.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wy/wyz109.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wy/wyz109.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wy/wyz109.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wy/wyz109.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wy.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wy/wyz109.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wy/wyz109.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wy/wyz109.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wy/wyz109.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wy/wyz109.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wy/wyz109.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wy/wyz109.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wy.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wy/wyz109.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wy/wyz109.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wy/wyz109.txt + +[wyz110] +description = North Snowy Range Foothills, WY +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wy/wyz110.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wy/wyz110.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wy/wyz110.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wy/wyz110.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wy/wyz110.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wy/wyz110.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wy/wyz110.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wy/wyz110.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wy/wyz110.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wy/wyz110.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wy.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wy/wyz110.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wy/wyz110.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wy/wyz110.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wy/wyz110.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wy/wyz110.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wy/wyz110.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wy/wyz110.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wy.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wy/wyz110.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wy/wyz110.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wy/wyz110.txt + +[wyz111] +description = Southwest Carbon County, WY +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wy/wyz111.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wy/wyz111.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wy/wyz111.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wy/wyz111.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wy/wyz111.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wy/wyz111.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wy/wyz111.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wy/wyz111.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wy/wyz111.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wy/wyz111.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wy.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wy/wyz111.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wy/wyz111.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wy/wyz111.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wy/wyz111.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wy/wyz111.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wy/wyz111.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wy/wyz111.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wy.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wy/wyz111.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wy/wyz111.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wy/wyz111.txt + +[wyz112] +description = Sierra Madre Range, WY +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wy/wyz112.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wy/wyz112.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wy/wyz112.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wy/wyz112.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wy/wyz112.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wy/wyz112.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wy/wyz112.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wy/wyz112.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wy/wyz112.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wy/wyz112.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wy.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wy/wyz112.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wy/wyz112.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wy/wyz112.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wy/wyz112.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wy/wyz112.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wy/wyz112.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wy/wyz112.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wy.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wy/wyz112.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wy/wyz112.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wy/wyz112.txt + +[wyz113] +description = Upper North Platte River Basin, WY +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wy/wyz113.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wy/wyz113.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wy/wyz113.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wy/wyz113.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wy/wyz113.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wy/wyz113.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wy/wyz113.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wy/wyz113.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wy/wyz113.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wy/wyz113.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wy.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wy/wyz113.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wy/wyz113.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wy/wyz113.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wy/wyz113.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wy/wyz113.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wy/wyz113.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wy/wyz113.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wy.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wy/wyz113.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wy/wyz113.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wy/wyz113.txt + +[wyz114] +description = Snowy Range, WY +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wy/wyz114.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wy/wyz114.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wy/wyz114.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wy/wyz114.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wy/wyz114.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wy/wyz114.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wy/wyz114.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wy/wyz114.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wy/wyz114.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wy/wyz114.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wy.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wy/wyz114.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wy/wyz114.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wy/wyz114.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wy/wyz114.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wy/wyz114.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wy/wyz114.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wy/wyz114.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wy.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wy/wyz114.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wy/wyz114.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wy/wyz114.txt + +[wyz115] +description = Laramie Valley, WY +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wy/wyz115.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wy/wyz115.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wy/wyz115.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wy/wyz115.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wy/wyz115.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wy/wyz115.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wy/wyz115.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wy/wyz115.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wy/wyz115.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wy/wyz115.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wy.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wy/wyz115.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wy/wyz115.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wy/wyz115.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wy/wyz115.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wy/wyz115.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wy/wyz115.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wy/wyz115.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wy.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wy/wyz115.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wy/wyz115.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wy/wyz115.txt + +[wyz116] +description = South Laramie Range, WY +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wy/wyz116.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wy/wyz116.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wy/wyz116.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wy/wyz116.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wy/wyz116.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wy/wyz116.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wy/wyz116.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wy/wyz116.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wy/wyz116.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wy/wyz116.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wy.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wy/wyz116.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wy/wyz116.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wy/wyz116.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wy/wyz116.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wy/wyz116.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wy/wyz116.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wy/wyz116.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wy.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wy/wyz116.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wy/wyz116.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wy/wyz116.txt + +[wyz117] +description = South Laramie Range Foothills, WY +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wy/wyz117.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wy/wyz117.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wy/wyz117.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wy/wyz117.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wy/wyz117.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wy/wyz117.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wy/wyz117.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wy/wyz117.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wy/wyz117.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wy/wyz117.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wy.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wy/wyz117.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wy/wyz117.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wy/wyz117.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wy/wyz117.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wy/wyz117.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wy/wyz117.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wy/wyz117.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wy.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wy/wyz117.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wy/wyz117.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wy/wyz117.txt + +[wyz118] +description = Central Laramie County, WY +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wy/wyz118.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wy/wyz118.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wy/wyz118.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wy/wyz118.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wy/wyz118.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wy/wyz118.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wy/wyz118.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wy/wyz118.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wy/wyz118.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wy/wyz118.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wy.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wy/wyz118.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wy/wyz118.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wy/wyz118.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wy/wyz118.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wy/wyz118.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wy/wyz118.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wy/wyz118.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wy.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wy/wyz118.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wy/wyz118.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wy/wyz118.txt + +[wyz119] +description = East Laramie County, WY +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wy/wyz119.txt +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wy/wyz119.txt +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wy/wyz119.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wy/wyz119.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wy/wyz119.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wy/wyz119.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wy/wyz119.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wy/wyz119.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wy/wyz119.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wy/wyz119.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wy.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wy/wyz119.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wy/wyz119.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wy/wyz119.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wy/wyz119.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wy/wyz119.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wy/wyz119.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wy/wyz119.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wy.txt +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wy/wyz119.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wy/wyz119.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wy/wyz119.txt + +# the nws publishes the wrong centroids for these weather zones + +# guessed from the nws map +[gaz047] +centroid = (0.58992128717408332, -1.4611896497696526) + +# guessed from the nws map +[idz001] +centroid = (0.84648468721724979, -2.0343557761245905) + +# guessed from the nws map +[mtz001] +centroid = (0.84299402871326112, -2.0102702324470689) + +# guessed from the nws map +[nhz004] +centroid = (0.76951566720429998, -1.2419762957191649) + +# guessed from the nws map +[scz047] +centroid = (0.56670840812255874, -1.4135421611902075) + +# guessed from the nws map +[vtz004] +centroid = (0.78016217564146539, -1.2520992053807318) + +# guessed from the nws map +[wyz001] +centroid = (0.77824231346427164, -1.929286955154532) diff --git a/overrides.log b/overrides.log new file mode 100644 index 0000000..99eee4e --- /dev/null +++ b/overrides.log @@ -0,0 +1,683 @@ +added airport abs (+1 options) +added airport aby (+1 options) +added airport agh (+1 options) +added airport ajr (+1 options) +added airport amv (+1 options) +added airport ane (+1 options) +added airport ang (+1 options) +added airport aor (+1 options) +added airport aqa (+1 options) +added airport aru (+1 options) +added airport atk (+1 options) +added airport avn (+1 options) +added airport azs (+1 options) +added airport bdj (+1 options) +added airport bfv (+1 options) +added airport bgw (+1 options) +added airport bhk (+1 options) +added airport bji (+1 options) +added airport bjn (+1 options) +added airport bkd (+1 options) +added airport bkg (+1 options) +added airport bkl (+1 options) +added airport bld (+1 options) +added airport blr (+1 options) +added airport bml (+1 options) +added airport bpn (+1 options) +added airport bqs (+1 options) +added airport bsg (+1 options) +added airport bsr (+1 options) +added airport bth (+1 options) +added airport bus (+1 options) +added airport bvc (+1 options) +added airport bxk (+1 options) +added airport cac (+1 options) +added airport caj (+1 options) +added airport ccj (+1 options) +added airport ccm (+1 options) +added airport cei (+1 options) +added airport cfb (+1 options) +added airport ciw (+1 options) +added airport cjc (+1 options) +added airport ckh (+1 options) +added airport cmx (+1 options) +added airport cni (+1 options) +added airport cnw (+1 options) +added airport cod (+1 options) +added airport cok (+1 options) +added airport cso (+1 options) +added airport csy (+1 options) +added airport ctj (+1 options) +added airport cty (+1 options) +added airport cxj (+1 options) +added airport dgw (+1 options) +added airport dol (+1 options) +added airport dps (+1 options) +added airport dsa (+1 options) +added airport dwc (+1 options) +added airport dzn (+1 options) +added airport ebl (+1 options) +added airport ego (+1 options) +added airport eps (+1 options) +added airport esc (+1 options) +added airport evn (+1 options) +added airport fmm (+1 options) +added airport fod (+1 options) +added airport fog (+1 options) +added airport fsz (+1 options) +added airport gai (+1 options) +added airport gcc (+1 options) +added airport gcj (+1 options) +added airport gdt (+1 options) +added airport gel (+1 options) +added airport get (+1 options) +added airport ghg (+1 options) +added airport gmz (+1 options) +added airport gov (+1 options) +added airport gpb (+1 options) +added airport gur (+1 options) +added airport guw (+1 options) +added airport hak (+1 options) +added airport hcr (+1 options) +added airport hgu (+1 options) +added airport hid (+1 options) +added airport hlp (+1 options) +added airport hmv (+1 options) +added airport hsk (+1 options) +added airport htg (+1 options) +added airport hti (+1 options) +added airport hua (+1 options) +added airport huf (+1 options) +added airport iaa (+1 options) +added airport ifj (+1 options) +added airport igg (+1 options) +added airport ild (+1 options) +added airport ioa (+1 options) +added airport iph (+1 options) +added airport isu (+1 options) +added airport iwa (+1 options) +added airport jad (+1 options) +added airport jbq (+1 options) +added airport jct (+1 options) +added airport jhs (+1 options) +added airport joi (+1 options) +added airport jqa (+1 options) +added airport jsu (+1 options) +added airport juv (+1 options) +added airport kbv (+1 options) +added airport kdh (+1 options) +added airport kfp (+1 options) +added airport kgk (+1 options) +added airport kgp (+1 options) +added airport kja (+1 options) +added airport klg (+1 options) +added airport kmo (+1 options) +added airport knw (+1 options) +added airport koe (+1 options) +added airport kop (+1 options) +added airport krw (+1 options) +added airport ksz (+1 options) +added airport kut (+1 options) +added airport kvc (+1 options) +added airport lae (+1 options) +added airport lbd (+1 options) +added airport lcj (+1 options) +added airport ldk (+1 options) +added airport lop (+1 options) +added airport lrd (+1 options) +added airport lsq (+1 options) +added airport lwn (+1 options) +added airport mcx (+1 options) +added airport mdl (+1 options) +added airport mdw (+1 options) +added airport mgc (+1 options) +added airport mii (+1 options) +added airport mji (+1 options) +added airport mll (+1 options) +added airport mni (+1 options) +added airport mou (+1 options) +added airport mpw (+1 options) +added airport mqf (+1 options) +added airport mqp (+1 options) +added airport mqs (+1 options) +added airport mrf (+1 options) +added airport mvq (+1 options) +added airport mwx (+1 options) +added airport myp (+1 options) +added airport mzl (+1 options) +added airport naj (+1 options) +added airport naq (+1 options) +added airport naw (+1 options) +added airport nbw (+1 options) +added airport ncy (+1 options) +added airport ngb (+1 options) +added airport nib (+1 options) +added airport nkx (+1 options) +added airport nlg (+1 options) +added airport nsk (+1 options) +added airport nst (+1 options) +added airport ntl (+1 options) +added airport ntq (+1 options) +added airport nty (+1 options) +added airport nux (+1 options) +added airport nvi (+1 options) +added airport nvt (+1 options) +added airport nym (+1 options) +added airport nza (+1 options) +added airport obn (+1 options) +added airport ook (+1 options) +added airport org (+1 options) +added airport orv (+1 options) +added airport osd (+1 options) +added airport oss (+1 options) +added airport osw (+1 options) +added airport ovb (+1 options) +added airport oza (+1 options) +added airport pao (+1 options) +added airport pbh (+1 options) +added airport ped (+1 options) +added airport pes (+1 options) +added airport pga (+1 options) +added airport pgu (+1 options) +added airport phs (+1 options) +added airport pie (+1 options) +added airport pip (+1 options) +added airport pkv (+1 options) +added airport pmw (+1 options) +added airport pnt (+1 options) +added airport ppk (+1 options) +added airport pqi (+1 options) +added airport prv (+1 options) +added airport pwq (+1 options) +added airport pze (+1 options) +added airport qgy (+1 options) +added airport rai (+1 options) +added airport rby (+1 options) +added airport riw (+1 options) +added airport riy (+1 options) +added airport rmf (+1 options) +added airport rmg (+1 options) +added airport roi (+1 options) +added airport rsh (+1 options) +added airport rue (+1 options) +added airport sbo (+1 options) +added airport scm (+1 options) +added airport shg (+1 options) +added airport sig (+1 options) +added airport sjc (+1 options) +added airport sjw (+1 options) +added airport skk (+1 options) +added airport skt (+1 options) +added airport sku (+1 options) +added airport skv (+1 options) +added airport slo (+1 options) +added airport sly (+1 options) +added airport smk (+1 options) +added airport smv (+1 options) +added airport sno (+1 options) +added airport snu (+1 options) +added airport sny (+1 options) +added airport sob (+1 options) +added airport sqo (+1 options) +added airport sry (+1 options) +added airport stk (+1 options) +added airport sub (+1 options) +added airport sus (+1 options) +added airport taz (+1 options) +added airport tbs (+1 options) +added airport tca (+1 options) +added airport tdx (+1 options) +added airport tef (+1 options) +added airport tgg (+1 options) +added airport ths (+1 options) +added airport tjm (+1 options) +added airport tro (+1 options) +added airport ukb (+1 options) +added airport ukk (+1 options) +added airport ulh (+1 options) +added airport ulv (+1 options) +added airport und (+1 options) +added airport urs (+1 options) +added airport usm (+1 options) +added airport vai (+1 options) +added airport vak (+1 options) +added airport vav (+1 options) +added airport vil (+1 options) +added airport vkt (+1 options) +added airport vsg (+1 options) +added airport vts (+1 options) +added airport wmo (+1 options) +added airport wwr (+1 options) +added airport wya (+1 options) +added airport xfl (+1 options) +added airport xsp (+1 options) +added airport xtl (+1 options) +added airport yny (+1 options) +added airport yoo (+1 options) +added airport yra (+1 options) +added airport ysp (+1 options) +added airport zmt (+1 options) +added airport zos (+1 options) +changed station cyab (+2 options) +changed station cybq (+2 options) +changed station daef (+2 options) +changed station daen (+2 options) +changed station egno (+2 options) +changed station ehak (+2 options) +changed station ehdv (+2 options) +changed station ehfd (+2 options) +changed station ehfz (+2 options) +changed station ehja (+2 options) +changed station ehjr (+2 options) +changed station ehkv (+2 options) +changed station ehma (+2 options) +changed station ehmg (+2 options) +changed station ehpg (+2 options) +changed station ehqe (+2 options) +changed station ehsa (+2 options) +changed station ehsc (+2 options) +changed station fdjr (+2 options) +changed station fdmy (+2 options) +changed station fdnd (+2 options) +changed station fdny (+2 options) +changed station fdot (+2 options) +changed station fdpp (+2 options) +changed station fdvv (+2 options) +changed station fyab (+2 options) +changed station fyan (+2 options) +changed station fybg (+2 options) +changed station fybp (+2 options) +changed station fyen (+2 options) +changed station fyhd (+2 options) +changed station fykb (+2 options) +changed station fymh (+2 options) +changed station fymp (+2 options) +changed station fynd (+2 options) +changed station fyoh (+2 options) +changed station fyom (+2 options) +changed station fyos (+2 options) +changed station fyot (+2 options) +changed station fyoy (+2 options) +changed station fyrh (+2 options) +changed station fyrn (+2 options) +changed station fytm (+2 options) +changed station gmae (+2 options) +changed station gmmo (+2 options) +changed station gmto (+2 options) +changed station gqno (+2 options) +changed station gqon (+2 options) +changed station gqqp (+2 options) +changed station hkms (+2 options) +changed station hknh (+2 options) +changed station huak (+2 options) +changed station huka (+2 options) +changed station huwn (+2 options) +changed station k05u (+2 options) +changed station k19a (+2 options) +changed station k2i0 (+2 options) +changed station k3r7 (+2 options) +changed station k5w8 (+2 options) +changed station k6a2 (+2 options) +changed station kajz (+2 options) +changed station kbgf (+2 options) +changed station kcni (+2 options) +changed station kd25 (+2 options) +changed station kd95 (+2 options) +changed station kded (+2 options) +changed station ke11 (+2 options) +changed station ke16 (+2 options) +changed station kedj (+2 options) +changed station kfot (+2 options) +changed station kfwz (+2 options) +changed station kfyg (+2 options) +changed station kggp (+2 options) +changed station kgic (+2 options) +changed station kgoo (+2 options) +changed station kgxa (+2 options) +changed station khhw (+2 options) +changed station khzr (+2 options) +changed station ki35 (+2 options) +changed station kinf (+2 options) +changed station kiob (+2 options) +changed station kiya (+2 options) +changed station kjpd (+2 options) +changed station kjvw (+2 options) +changed station kk22 (+2 options) +changed station klsb (+2 options) +changed station klua (+2 options) +changed station km40 (+2 options) +changed station km63 (+2 options) +changed station kmgc (+2 options) +changed station ko86 (+2 options) +changed station kqbu (+2 options) +changed station kqea (+2 options) +changed station kqeb (+2 options) +changed station kqei (+2 options) +changed station kqej (+2 options) +changed station kqel (+2 options) +changed station kqen (+2 options) +changed station kqep (+2 options) +changed station kqeq (+2 options) +changed station kqer (+2 options) +changed station kqes (+2 options) +changed station kqev (+2 options) +changed station kqew (+2 options) +changed station kqex (+2 options) +changed station kqey (+2 options) +changed station kqfb (+2 options) +changed station kqft (+2 options) +changed station kqfu (+2 options) +changed station kqfv (+2 options) +changed station kqfw (+2 options) +changed station kqfx (+2 options) +changed station kqka (+2 options) +changed station kqms (+2 options) +changed station kqsn (+2 options) +changed station kqth (+2 options) +changed station kqts (+2 options) +changed station kqvp (+2 options) +changed station kqz4 (+2 options) +changed station krts (+2 options) +changed station ksrb (+2 options) +changed station ksyf (+2 options) +changed station kt35 (+2 options) +changed station ktbx (+2 options) +changed station ktdr (+2 options) +changed station ktha (+2 options) +changed station ktoc (+2 options) +changed station lebt (+2 options) +changed station leec (+2 options) +changed station lszl (+2 options) +changed station lubm (+2 options) +changed station mdab (+2 options) +changed station mgmm (+2 options) +changed station mgmt (+2 options) +changed station mgpc (+2 options) +changed station mgtu (+2 options) +changed station mhcl (+2 options) +changed station mlrm (+2 options) +changed station mppa (+2 options) +changed station nmmg (+2 options) +changed station oihs (+2 options) +changed station oimq (+2 options) +changed station oine (+2 options) +changed station omam (+2 options) +changed station omdl (+2 options) +changed station omdm (+2 options) +changed station omlw (+2 options) +changed station ommz (+2 options) +changed station omsn (+2 options) +changed station omth (+2 options) +changed station opfa (+2 options) +changed station ormb (+2 options) +changed station orn1 (+2 options) +changed station orni (+2 options) +changed station oysd (+2 options) +changed station pawm (+2 options) +changed station prni (+2 options) +changed station scir (+2 options) +changed station sgaj (+2 options) +changed station sgbn (+2 options) +changed station sggr (+2 options) +changed station sglv (+2 options) +changed station sgpc (+2 options) +changed station sgpg (+2 options) +changed station sgpi (+2 options) +changed station sgpj (+2 options) +changed station sgsj (+2 options) +changed station sgsp (+2 options) +changed station sgvr (+2 options) +changed station slbj (+2 options) +changed station slsr (+2 options) +changed station slti (+2 options) +changed station spwt (+2 options) +changed station svs0 (+2 options) +changed station tcna (+2 options) +changed station tnnc (+2 options) +changed station tpdp (+2 options) +changed station tvsc (+2 options) +changed station ubbq (+2 options) +changed station ugms (+2 options) +changed station urmo (+2 options) +changed station utfa (+2 options) +changed station utff (+2 options) +changed station uudl (+2 options) +changed station vapr (+2 options) +changed station vqpr (+2 options) +changed station wadl (+2 options) +changed station yrmd (+2 options) +changed station zswz (+2 options) +changed zone akz017 (+1 options) +changed zone akz018 (+1 options) +changed zone akz019 (+1 options) +changed zone akz020 (+1 options) +changed zone akz021 (+1 options) +changed zone akz022 (+1 options) +changed zone akz023 (+1 options) +changed zone akz152 (+23 options) +changed zone akz227 (+23 options) +changed zone asz001 (+23 options) +changed zone asz002 (+23 options) +changed zone asz003 (+24 options) +changed zone azz501 (+23 options) +changed zone azz502 (+23 options) +changed zone azz503 (+23 options) +changed zone azz504 (+23 options) +changed zone azz505 (+23 options) +changed zone azz506 (+23 options) +changed zone azz507 (+23 options) +changed zone azz508 (+23 options) +changed zone azz509 (+23 options) +changed zone azz510 (+23 options) +changed zone azz511 (+23 options) +changed zone azz512 (+23 options) +changed zone azz513 (+23 options) +changed zone azz514 (+23 options) +changed zone azz515 (+23 options) +changed zone caz093 (+1 options) +changed zone caz519 (+23 options) +changed zone caz520 (+23 options) +changed zone caz521 (+23 options) +changed zone caz522 (+23 options) +changed zone caz523 (+23 options) +changed zone caz524 (+24 options) +changed zone caz525 (+23 options) +changed zone caz526 (+23 options) +changed zone caz527 (+23 options) +changed zone caz528 (+23 options) +changed zone caz529 (+23 options) +changed zone caz530 (+23 options) +changed zone caz547 (+23 options) +changed zone caz548 (+23 options) +changed zone flz051 (+1 options) +changed zone flz108 (+23 options) +changed zone flz112 (+23 options) +changed zone flz114 (+23 options) +changed zone flz115 (+23 options) +changed zone flz118 (+23 options) +changed zone flz127 (+23 options) +changed zone flz128 (+23 options) +changed zone flz134 (+23 options) +changed zone flz168 (+23 options) +changed zone flz172 (+23 options) +changed zone flz173 (+23 options) +changed zone flz174 (+23 options) +changed zone gaz047 (!1 options) +changed zone idz001 (!1 options) +changed zone idz033 (+23 options) +changed zone laz069 (+1 options) +changed zone laz071 (+23 options) +changed zone laz072 (+23 options) +changed zone laz073 (+23/!1 options) +changed zone laz074 (+23/!1 options) +changed zone mdz501 (+23 options) +changed zone mdz502 (+23 options) +changed zone mtz001 (!1 options) +changed zone ncz105 (+23 options) +changed zone ncz106 (+23 options) +changed zone ncz107 (+23 options) +changed zone ncz108 (+23 options) +changed zone ncz109 (+23 options) +changed zone ncz110 (+23 options) +changed zone ncz501 (+23 options) +changed zone ncz502 (+23 options) +changed zone ncz503 (+23 options) +changed zone ncz504 (+23 options) +changed zone ncz505 (+23 options) +changed zone ncz506 (+23 options) +changed zone ncz507 (+23 options) +changed zone ncz508 (+23 options) +changed zone ncz509 (+23 options) +changed zone ncz510 (+23 options) +changed zone nez095 (+23 options) +changed zone nez096 (+23 options) +changed zone nhz004 (!1 options) +changed zone njz103 (+23 options) +changed zone njz104 (+23 options) +changed zone njz105 (+23 options) +changed zone njz106 (+23 options) +changed zone njz107 (+23 options) +changed zone njz108 (+23 options) +changed zone nmz401 (+24 options) +changed zone nmz402 (+24 options) +changed zone nmz403 (+24 options) +changed zone nmz404 (+24 options) +changed zone nmz405 (+24 options) +changed zone nmz406 (+24 options) +changed zone nmz407 (+24 options) +changed zone nmz408 (+24 options) +changed zone nmz409 (+24 options) +changed zone nmz410 (+24 options) +changed zone nmz411 (+24 options) +changed zone nmz412 (+24 options) +changed zone nmz413 (+24 options) +changed zone nmz414 (+24 options) +changed zone nmz415 (+24 options) +changed zone nmz416 (+24 options) +changed zone nmz417 (+24 options) +changed zone nmz501 (+23 options) +changed zone nmz502 (+23 options) +changed zone nmz503 (+23 options) +changed zone nmz504 (+23 options) +changed zone nmz505 (+23 options) +changed zone nmz506 (+23 options) +changed zone nmz507 (+23 options) +changed zone nmz508 (+23 options) +changed zone nmz509 (+23 options) +changed zone nmz510 (+23 options) +changed zone nmz511 (+23 options) +changed zone nmz512 (+23 options) +changed zone nmz513 (+23 options) +changed zone nmz514 (+23 options) +changed zone nmz515 (+23 options) +changed zone nmz516 (+23 options) +changed zone nmz517 (+23 options) +changed zone nmz518 (+23 options) +changed zone nmz519 (+23 options) +changed zone nmz520 (+23 options) +changed zone nmz521 (+23 options) +changed zone nmz522 (+23 options) +changed zone nmz523 (+23 options) +changed zone nmz524 (+23 options) +changed zone nmz525 (+23 options) +changed zone nmz526 (+23 options) +changed zone nmz527 (+23 options) +changed zone nmz528 (+23 options) +changed zone nmz529 (+23 options) +changed zone nmz530 (+23 options) +changed zone nmz531 (+23 options) +changed zone nmz532 (+23 options) +changed zone nmz533 (+23 options) +changed zone nmz534 (+23 options) +changed zone nmz535 (+23 options) +changed zone nmz536 (+23 options) +changed zone nmz537 (+23 options) +changed zone nmz538 (+23 options) +changed zone nmz539 (+23 options) +changed zone nmz540 (+23 options) +changed zone nvz038 (+23 options) +changed zone nvz039 (+23/!1 options) +changed zone nvz040 (+23 options) +changed zone nvz041 (+23 options) +changed zone nyz176 (+23 options) +changed zone nyz177 (+23 options) +changed zone nyz178 (+23 options) +changed zone nyz179 (+23 options) +changed zone orz014 (+23 options) +changed zone orz507 (+23 options) +changed zone orz508 (+23 options) +changed zone orz509 (+23 options) +changed zone paz073 (+23 options) +changed zone paz074 (+23 options) +changed zone paz075 (+23 options) +changed zone paz076 (+23 options) +changed zone scz047 (!1 options) +changed zone scz052 (+23 options) +changed zone scz053 (+23 options) +changed zone scz054 (+23 options) +changed zone scz055 (+23 options) +changed zone scz056 (+23 options) +changed zone txz246 (+1 options) +changed zone txz259 (+23 options) +changed zone txz260 (+23 options) +changed zone txz261 (+23 options) +changed zone txz262 (+23 options) +changed zone txz418 (+24 options) +changed zone txz419 (+24 options) +changed zone txz420 (+24 options) +changed zone txz421 (+24 options) +changed zone txz422 (+24 options) +changed zone txz423 (+24 options) +changed zone txz424 (+24 options) +changed zone utz517 (+23 options) +changed zone utz518 (+23 options) +changed zone vaz501 (+23 options) +changed zone vaz502 (+23 options) +changed zone vaz503 (+23 options) +changed zone vaz504 (+23 options) +changed zone vtz004 (+1 options) +changed zone waz503 (+23 options) +changed zone waz504 (+23 options) +changed zone waz505 (+23 options) +changed zone waz506 (+23 options) +changed zone waz507 (+23 options) +changed zone waz508 (+23 options) +changed zone waz509 (+23 options) +changed zone waz510 (+23 options) +changed zone waz511 (+23 options) +changed zone waz512 (+23 options) +changed zone waz513 (+23 options) +changed zone waz514 (+23 options) +changed zone waz515 (+23 options) +changed zone waz516 (+23 options) +changed zone waz517 (+23 options) +changed zone waz518 (+23 options) +changed zone waz519 (+23 options) +changed zone waz520 (+23 options) +changed zone waz521 (+23 options) +changed zone wvz501 (+23 options) +changed zone wvz502 (+23 options) +changed zone wvz503 (+23 options) +changed zone wvz504 (+23 options) +changed zone wvz505 (+23 options) +changed zone wvz506 (+23 options) +changed zone wyz001 (!1 options) +changed zone wyz101 (+23 options) +changed zone wyz102 (+23 options) +changed zone wyz103 (+23 options) +changed zone wyz104 (+23 options) +changed zone wyz105 (+23 options) +changed zone wyz106 (+23 options) +changed zone wyz107 (+23 options) +changed zone wyz108 (+23 options) +changed zone wyz109 (+23 options) +changed zone wyz110 (+23 options) +changed zone wyz111 (+23 options) +changed zone wyz112 (+23 options) +changed zone wyz113 (+23 options) +changed zone wyz114 (+23 options) +changed zone wyz115 (+23 options) +changed zone wyz116 (+23 options) +changed zone wyz117 (+23 options) +changed zone wyz118 (+23 options) +changed zone wyz119 (+23 options) diff --git a/places b/places new file mode 100644 index 0000000..0784846 --- /dev/null +++ b/places @@ -0,0 +1,416289 @@ +# Copyright (c) 2006-2012 Jeremy Stanley . Permission to +# use, copy, modify, and distribute this software is granted under terms +# provided in the LICENSE file distributed with this software. +# +# generated by weather on 2012-06-26 from these public domain sources: +# +# http://www.census.gov/geo/www/gazetteer/gazetteer2010.html +# a410aa212529e11b103bd5d222a952fc 2011-03-02 Gaz_counties_national.zip +# 680d807fce3bfe6aea8df5df5a6ebb04 2011-03-02 Gaz_cousubs_national.zip +# 41f34b79edfc3814b48419421d56e2a1 2011-03-02 Gaz_places_national.zip +# 8b298a6117e7942fd20f3e15076bd38a 2011-05-16 Gaz_zcta_national.zip +# +# http://www.weather.gov/geodata/catalog/wsom/html/cntyzone.htm +# 7e64372572d4923ad1be3c33ec79d7b6 2012-04-05 bp03ap12.dbx +# +# http://weather.noaa.gov/data/nsd_cccc.txt +# 6561bd4dc1ffd4147e35cf6dee7503d5 2011-05-04 nsd_cccc.txt +# +# http://weather.noaa.gov/pub/data/zonecatalog.curr.tar +# 748043471973d418cb415fccc3a0000b 2007-06-07 zonecatalog.curr.tar +# +# http://www.nco.ncep.noaa.gov/pmb/codes/nwprod/dictionaries/metar.tbl +# 2bbef16bbf41add353650c5d09f35066 2012-04-04 metar.tbl +# +# ftp://ftp.ncdc.noaa.gov/pub/data/inventories/COOP-ACT.TXT +# 23919279dec601f31f47f46fc60db095 2012-06-25 COOP-ACT.TXT +# +# ...and these manually-generated or hand-compiled adjustments: +# f4934ba2494d41fc4de1360ac2e09a49 2012-06-26 overrides.conf +# d115dda76af5661fb8afd793a9b8ff9d 2012-06-25 slist +# 12c0635d5b8157b564dc665e8a1cd124 2012-06-25 zlist + +[fips01001] +centroid = (0.56786699258661777, -1.5122316292113018) +description = Autauga County, AL +station = ('kmxf', 0.0048861661658870749) +zone = ('alz041', 3.5880350060178926e-05) + +[fips0100100] +centroid = (0.57755784599185367, -1.4927282554986734) +description = Abanda CDP, AL +station = ('kalx', 0.0070860952855484232) +zone = ('alz029', 0.003665411727937439) + +[fips0100124] +centroid = (0.55089949501067448, -1.4880613323453031) +description = Abbeville city, AL +station = ('kdhn', 0.0051674675605185546) +zone = ('alz067', 0.00090578058538274924) + +[fips0100190171] +centroid = (0.56648872352961033, -1.5137066593220396) +description = Autaugaville CCD, AL +station = ('kmxf', 0.0054926322717816839) +zone = ('alz041', 0.001854521570041184) + +[fips0100190315] +centroid = (0.56906341578885977, -1.51405054154456) +description = Billingsley CCD, AL +station = ('kmxf', 0.0068254997529234567) +zone = ('alz041', 0.0019800195042386473) + +[fips0100192106] +centroid = (0.56962331741289951, -1.5099706773383907) +description = Marbury CCD, AL +station = ('kmxf', 0.004936192973712744) +zone = ('alz041', 0.0025906205822797844) + +[fips0100192628] +centroid = (0.56687957256230193, -1.5098268971146114) +description = Prattville CCD, AL +station = ('kmxf', 0.0026628981631774636) +zone = ('alz041', 0.0022219258879674279) + +[fips01003] +centroid = (0.53510430018671085, -1.5314577748255431) +description = Baldwin County, AL +station = ('kcqf', 0.0040949865513845536) +zone = ('alz064', 0.0031024270928513521) + +[fips0100390207] +centroid = (0.53767979529741627, -1.5307541104310165) +description = Bay Minette CCD, AL +station = ('kbfm', 0.0062039600631965076) +zone = ('alz062', 0.0025874675453421031) + +[fips0100390846] +centroid = (0.53524771389134729, -1.5342525007435917) +description = Daphne CCD, AL +station = ('kbfm', 0.0024819279009238178) +zone = ('alz064', 0.0046656957847872249) + +[fips0100390963] +centroid = (0.530709054984706, -1.5274774991064926) +description = Elberta CCD, AL +station = ('kjka', 0.003072116549364224) +zone = ('alz064', 0.0027399786298786099) + +[fips0100391053] +centroid = (0.53173642559559997, -1.5343660169581412) +description = Fairhope CCD, AL +station = ('kcqf', 0.00035846978238514326) +zone = ('alz064', 0.0036839599245616426) + +[fips0100391152] +centroid = (0.52985752629595051, -1.5329482161935764) +description = Foley CCD, AL +station = ('kcqf', 0.0019769741580306435) +zone = ('alz064', 0.0033906667998875985) + +[fips0100392754] +centroid = (0.53331526789024652, -1.5296622149976766) +description = Robertsdale CCD, AL +station = ('kcqf', 0.0040771232193590017) +zone = ('alz064', 0.0011659084965596077) + +[fips0100393024] +centroid = (0.54300455049915564, -1.5321907782047959) +description = Stockton CCD, AL +station = ('kbfm', 0.0093367325266406204) +zone = ('alz062', 0.002903076209593956) + +[fips0100393042] +centroid = (0.53214563549202265, -1.5302476158820881) +description = Summerdale CCD, AL +station = ('kcqf', 0.0032496458938469294) +zone = ('alz064', 0.00012722573127040874) + +[fips0100460] +centroid = (0.58653100255537693, -1.5179940082696861) +description = Adamsville city, AL +station = ('kbhm', 0.0033367788701897058) +zone = ('alz024', 0.0014483329591832412) + +[fips0100484] +centroid = (0.59694953608564683, -1.5215414074276572) +description = Addison town, AL +station = ('k3a1', 0.0047524704640287659) +zone = ('alz014', 0.0029773643758769916) + +[fips01005] +centroid = (0.55624812631658116, -1.4906064063671463) +description = Barbour County, AL +station = ('keuf', 0.004290140907521469) +zone = ('alz050', 0.00018261774136901353) + +[fips0100590189] +centroid = (0.55437622578723222, -1.4882748035661146) +description = Bakerhill CCD, AL +station = ('keuf', 0.0038814180139450714) +zone = ('alz050', 0.0025831403889157445) + +[fips0100590630] +centroid = (0.55714880347707285, -1.4913808962227189) +description = Clayton CCD, AL +station = ('keuf', 0.0047356891807269338) +zone = ('alz050', 0.0012447470483358336) + +[fips0100590648] +centroid = (0.55291058554786998, -1.4932639144994029) +description = Clio CCD, AL +station = ('kprn', 0.0060989407649413583) +zone = ('alz050', 0.0041199112921462373) + +[fips0100591017] +centroid = (0.55852298846363058, -1.4877817305991334) +description = Eufaula CCD, AL +station = ('keuf', 0.001866377779561021) +zone = ('alz050', 0.003188929191536224) + +[fips0100591989] +centroid = (0.55485575499921769, -1.4934267711719067) +description = Louisville CCD, AL +station = ('kprn', 0.0056827665425956703) +zone = ('alz050', 0.0029211167697773916) + +[fips0100676] +centroid = (0.57385408278619632, -1.5313825511347825) +description = Akron town, AL +station = ('ktcl', 0.0061640347944165825) +zone = ('alz032', 0.0026229853786311616) + +[fips01007] +centroid = (0.57623603833614823, -1.5206556004723926) +description = Bibb County, AL +station = ('keet', 0.0058146527830457454) +zone = ('alz034', 0.00030201828235965137) + +[fips0100790531] +centroid = (0.57477579116417454, -1.5209285525141119) +description = Centreville-Brent CCD, AL +station = ('keet', 0.0068450503130144062) +zone = ('alz034', 0.0011830192987837107) + +[fips0100792601] +centroid = (0.57709700925615703, -1.5183776665458597) +description = Piper-Coleanor CCD, AL +station = ('keet', 0.0037376316893921653) +zone = ('alz034', 0.0022265493402224132) + +[fips0100793438] +centroid = (0.57811286069398782, -1.5208690891464964) +description = West Blocton CCD, AL +station = ('keet', 0.0053065970541828402) +zone = ('alz034', 0.0021868996156126346) + +[fips0100820] +centroid = (0.57969985367624111, -1.5153486127224385) +description = Alabaster city, AL +station = ('keet', 0.00079379042030661238) +zone = ('alz025', 0.0025255821074839147) + +[fips01009] +centroid = (0.59301833902516232, -1.5108834670838911) +description = Blount County, AL +station = ('k8a0', 0.0062888080637893522) +zone = ('alz017', 6.0289976662379902e-05) + +[fips0100988] +centroid = (0.59800443053884467, -1.5046598673173748) +description = Albertville city, AL +station = ('k8a0', 0.00088130513726237267) +zone = ('alz008', 0.0022788049126230901) + +[fips0100990333] +centroid = (0.59399914425161304, -1.5120968897930476) +description = Blountsville CCD, AL +station = ('k3a1', 0.0052018181177005815) +zone = ('alz017', 0.0013618938837262804) + +[fips0100990414] +centroid = (0.59630978564832837, -1.5096604799704336) +description = Brooksville CCD, AL +station = ('k8a0', 0.003656383917069289) +zone = ('alz017', 0.0033869413634555392) + +[fips0100990612] +centroid = (0.59474766360791587, -1.5077986499908689) +description = Clarence CCD, AL +station = ('k8a0', 0.0032969388870891189) +zone = ('alz017', 0.0030550327520138159) + +[fips0100990639] +centroid = (0.59337398476684111, -1.5104762643161083) +description = Cleveland CCD, AL +station = ('k8a0', 0.0057987948852828933) +zone = ('alz017', 0.00045029136287605192) + +[fips0100991557] +centroid = (0.59150759947792853, -1.5152054259106047) +description = Hayden CCD, AL +station = ('kbhm', 0.0057365690489401856) +zone = ('alz016', 0.0042767537562266146) + +[fips0100991953] +centroid = (0.59062797098821596, -1.5120679173274645) +description = Locust Fork CCD, AL +station = ('kbhm', 0.0050618931034917131) +zone = ('alz017', 0.0026395833992503095) + +[fips0100992439] +centroid = (0.59177102202193199, -1.5089521031869269) +description = Oneonta CCD, AL +station = ('k8a0', 0.0063411196592870218) +zone = ('alz017', 0.0020697936631649621) + +[fips01011] +centroid = (0.56028139023172241, -1.4960484302413271) +description = Bullock County, AL +station = ('ktoi', 0.00603997052345476) +zone = ('alz046', 2.7883493041293506e-05) + +[fips0101132] +centroid = (0.5746887515943776, -1.4998857285880545) +description = Alexander City city, AL +station = ('kalx', 0.00043475653676087339) +zone = ('alz037', 0.0023382566956508572) + +[fips0101180] +centroid = (0.58931347626207631, -1.4988817104825523) +description = Alexandria CDP, AL +station = ('kanb', 0.0032027158934697058) +zone = ('alz019', 0.00078372931219748232) + +[fips0101191098] +centroid = (0.56131310671245371, -1.4995170103302782) +description = Fitzpatrick CCD, AL +station = ('ktoi', 0.0053466132552957854) +zone = ('alz046', 0.0031367538304841441) + +[fips0101191701] +centroid = (0.5581301672088842, -1.4965945961241538) +description = Inverness CCD, AL +station = ('kprn', 0.0045295165008108268) +zone = ('alz046', 0.0021827158675512769) + +[fips0101192133] +centroid = (0.56052517782164091, -1.4927231067773801) +description = Midway CCD, AL +station = ('keuf', 0.0065074349657336626) +zone = ('alz046', 0.0028121259412960528) + +[fips0101193249] +centroid = (0.56124029157606059, -1.4957738375901108) +description = Union Springs CCD, AL +station = ('ktoi', 0.0068829904183700845) +zone = ('alz046', 0.0010042432952187994) + +[fips0101228] +centroid = (0.57811839338771664, -1.5386725819808524) +description = Aliceville city, AL +station = ('ktcl', 0.0080937308206823697) +zone = ('alz022', 0.0029310147838341972) + +[fips01013] +centroid = (0.55417113214683045, -1.5128857611616566) +description = Butler County, AL +station = ('kgzh', 0.008007929514458046) +zone = ('alz057', 2.7878523499582492e-05) + +[fips0101390540] +centroid = (0.55350357861452759, -1.5141139493562852) +description = Chapman CCD, AL +station = ('kgzh', 0.0068131630625974981) +zone = ('alz057', 0.0012674395256615878) + +[fips0101391170] +centroid = (0.55609328070534425, -1.5142618136505142) +description = Forest Home CCD, AL +station = ('kgzh', 0.0088781989736020882) +zone = ('alz057', 0.002252034630841494) + +[fips0101391314] +centroid = (0.55138855372037587, -1.5133716782787043) +description = Georgiana-McKenzie CCD, AL +station = ('kgzh', 0.0059174468015094524) +zone = ('alz057', 0.0028295305139235836) + +[fips0101391422] +centroid = (0.5552235656857829, -1.510663189078997) +description = Greenville CCD, AL +station = ('ktoi', 0.0080332893436922161) +zone = ('alz057', 0.0021348063066170299) + +[fips0101396] +centroid = (0.59179966287495722, -1.5099909580642987) +description = Allgood town, AL +station = ('k8a0', 0.0067550363574050091) +zone = ('alz017', 0.0014789052019927005) + +[fips01015] +centroid = (0.58942746371552412, -1.4978854241856363) +description = Calhoun County, AL +station = ('kanb', 0.0033118732500862333) +zone = ('alz019', 5.2314362950772838e-05) + +[fips0101590066] +centroid = (0.59073845032986716, -1.4990846922745591) +description = Alexandria-Webster Chapel CCD, AL +station = ('kgad', 0.0034812181863341667) +zone = ('alz019', 0.0016200928763610953) + +[fips0101590099] +centroid = (0.58767070255692921, -1.4988356337902997) +description = Anniston CCD, AL +station = ('kanb', 0.0015802868037983588) +zone = ('alz019', 0.0019006595622157822) + +[fips0101590585] +centroid = (0.5888438430669497, -1.4954206702159698) +description = Choccolocco CCD, AL +station = ('kanb', 0.0036494631684734964) +zone = ('alz019', 0.0021794228299813873) + +[fips0101591746] +centroid = (0.59110969931505886, -1.4968632197493283) +description = Jacksonville CCD, AL +station = ('kanb', 0.0051245407796892259) +zone = ('alz019', 0.001913156555358285) + +[fips0101592430] +centroid = (0.58937608122234542, -1.5016338678201444) +description = Ohatchee CCD, AL +station = ('kgad', 0.003517966759019487) +zone = ('alz019', 0.0030642903515514562) + +[fips0101592556] +centroid = (0.59196639417840025, -1.4946893947126767) +description = Piedmont CCD, AL +station = ('kanb', 0.0065795652194095408) +zone = ('alz019', 0.0037146060800913407) + +[fips0101660] +centroid = (0.59409642890411918, -1.5063181220929871) +description = Altoona town, AL +station = ('k8a0', 0.0033886272331476405) +zone = ('alz018', 0.0039188362876202767) + +[fips01017] +centroid = (0.57452648833381981, -1.4903682736440043) +description = Chambers County, AL +station = ('klgc', 0.0049379576529422261) +zone = ('alz038', 6.189833309553398e-05) + +[fips0101708] +centroid = (0.54645274514244335, -1.5093263715917244) +description = Andalusia city, AL +station = ('k79j', 0.0014217376379419395) +zone = ('alz060', 0.0011363462454441146) + +[fips0101756] +centroid = (0.60939348930627113, -1.5232234335876818) +description = Anderson town, AL +station = ('k9a4', 0.0047316535395303195) +zone = ('alz005', 0.0045824173524782724) + +[fips0101791107] +centroid = (0.57661756731063418, -1.4893398209289741) +description = Five Points CCD, AL +station = ('klgc', 0.0038435652590543307) +zone = ('alz038', 0.0023203815396618905) + +[fips0101791818] +centroid = (0.57410027893048277, -1.4912792831536674) +description = La Fayette CCD, AL +station = ('kauo', 0.0048345946639253064) +zone = ('alz038', 0.00084473832907848976) + +[fips0101791827] +centroid = (0.57402995961491987, -1.4881331875506076) +description = Lanett CCD, AL +station = ('klgc', 0.0034911731385048619) +zone = ('alz038', 0.0019289534485135409) + +[fips0101792169] +centroid = (0.57671682418519499, -1.4925108049271674) +description = Milltown CCD, AL +station = ('kalx', 0.0069361133112974642) +zone = ('alz038', 0.0028797057881185385) + +[fips0101793272] +centroid = (0.57223080440879404, -1.4877908063112439) +description = Valley CCD, AL +station = ('kauo', 0.0040618107413306114) +zone = ('alz038', 0.0031129652151550891) + +[fips0101793393] +centroid = (0.57220432776404129, -1.4923661520387621) +description = Waverly CCD, AL +station = ('kauo', 0.0031254749802708437) +zone = ('alz038', 0.0028136948959780719) + +[fips0101852] +centroid = (0.58771241592605183, -1.4976830532588674) +description = Anniston city, AL +station = ('kanb', 0.001672089264131449) +zone = ('alz019', 0.0017238532807546409) + +[fips01019] +centroid = (0.59462521130759594, -1.4949485412000127) +description = Cherokee County, AL +station = ('k4a9', 0.0071189888374174025) +zone = ('alz020', 0.0019963062316146036) + +[fips0101990513] +centroid = (0.59873980756588008, -1.4932029326953382) +description = Cedar Bluff-Gaylesville CCD, AL +station = ('k4a9', 0.0037986379026109982) +zone = ('alz020', 0.0023667525623561254) + +[fips0101990522] +centroid = (0.59462521130759594, -1.4949485412000127) +description = Centre CCD, AL +station = ('k4a9', 0.0071189888374174025) +zone = ('alz020', 0.0019963062316146036) + +[fips0101991854] +centroid = (0.59691885319739668, -1.4966462753233052) +description = Leesburg CCD, AL +station = ('k4a9', 0.0047789288422410182) +zone = ('alz020', 0.0021765370965702289) + +[fips0101992983] +centroid = (0.59491484869696432, -1.4923761004154983) +description = Spring Garden CCD, AL +station = ('krmg', 0.0067318018169245904) +zone = ('alz020', 0.0021031153828401767) + +[fips01021] +centroid = (0.57341151964776815, -1.513665207752305) +description = Chilton County, AL +station = ('keet', 0.0058065095604095916) +zone = ('alz035', 0.00015726543926283029) + +[fips0102116] +centroid = (0.59917725688959989, -1.5097232594636278) +description = Arab city, AL +station = ('k8a0', 0.0039548255685559882) +zone = ('alz008', 0.0028698465960622327) + +[fips0102190603] +centroid = (0.57338031316074256, -1.5114800904353929) +description = Clanton CCD, AL +station = ('keet', 0.0063618553616940398) +zone = ('alz035', 0.0017226148286693911) + +[fips0102191710] +centroid = (0.57199204336712128, -1.5138354297142518) +description = Isabella-Pletcher CCD, AL +station = ('keet', 0.0071992757318069776) +zone = ('alz035', 0.001337071152789494) + +[fips0102191764] +centroid = (0.57553973923106505, -1.5146504984749332) +description = Jemison CCD, AL +station = ('keet', 0.0036186861039661073) +zone = ('alz035', 0.0024260229029756174) + +[fips0102192097] +centroid = (0.57192805959674309, -1.5166110442769907) +description = Maplesville CCD, AL +station = ('keet', 0.0074142443187764544) +zone = ('alz035', 0.0029334790267554031) + +[fips0102192178] +centroid = (0.57545111141164884, -1.5115629761215701) +description = Mineral Springs CCD, AL +station = ('keet', 0.0045228959281726376) +zone = ('alz035', 0.0027079830206720701) + +[fips0102193285] +centroid = (0.57175665081090477, -1.5101635885806135) +description = Verbena CCD, AL +station = ('kmxf', 0.0069668456677583306) +zone = ('alz035', 0.0032239864566926744) + +[fips0102260] +centroid = (0.61065239529573467, -1.5154478172371217) +description = Ardmore town, AL +station = ('kmdq', 0.0044684853409248529) +zone = ('alz005', 0.0037930351466802228) + +[fips01023] +centroid = (0.55834842063184609, -1.540233639370421) +description = Choctaw County, AL +station = ('kmei', 0.009513936457091754) +zone = ('alz051', 0.00053339364675183661) + +[fips0102320] +centroid = (0.58802118212402221, -1.5098046790732336) +description = Argo town, AL +station = ('kbhm', 0.0041653983482930427) +zone = ('alz026', 0.0028024391215873625) + +[fips0102390441] +centroid = (0.55965139618492254, -1.5396046401612948) +description = Butler CCD, AL +station = ('kmei', 0.0092065069299312203) +zone = ('alz051', 0.0010971531952061557) + +[fips0102391332] +centroid = (0.55724162008669398, -1.5416952304459186) +description = Gilbertown-Toxey CCD, AL +station = ('kmei', 0.0093915501377015743) +zone = ('alz051', 0.0019039925283971142) + +[fips0102391908] +centroid = (0.56321794160478778, -1.5395025209467608) +description = Lisman CCD, AL +station = ('kmei', 0.0080864293527951915) +zone = ('alz051', 0.0044544756405922219) + +[fips0102392925] +centroid = (0.55430098464317878, -1.5411547717897462) +description = Silas CCD, AL +station = ('kmei', 0.012018049621431092) +zone = ('alz051', 0.0045758676696287378) + +[fips0102428] +centroid = (0.5514851576944737, -1.4959751264127434) +description = Ariton town, AL +station = ('klor', 0.0042022236694389684) +zone = ('alz066', 0.0032706653175459026) + +[fips01025] +centroid = (0.5530166666598062, -1.5327241333709127) +description = Clarke County, AL +station = ('kgzh', 0.012357447738633029) +zone = ('alz053', 0.00031363214540591571) + +[fips0102500] +centroid = (0.59474455692184724, -1.5222639213781051) +description = Arley town, AL +station = ('kjfx', 0.0033461328735825357) +zone = ('alz014', 0.0025679736886916552) + +[fips0102590675] +centroid = (0.55571051254708936, -1.5369261357181367) +description = Coffeeville CCD, AL +station = ('kmei', 0.013359166645962465) +zone = ('alz051', 0.004344620759514646) + +[fips0102591260] +centroid = (0.55489080121059775, -1.5296504514785181) +description = Fulton CCD, AL +station = ('kgzh', 0.010985960246946522) +zone = ('alz053', 0.0035148452080639137) + +[fips0102591440] +centroid = (0.55182104630902007, -1.530618445988259) +description = Grove Hill CCD, AL +station = ('kgzh', 0.01025557702990532) +zone = ('alz053', 0.0021874972684720441) + +[fips0102591726] +centroid = (0.55186618052347658, -1.5345448782998858) +description = Jackson CCD, AL +station = ('kgzh', 0.013462343599046868) +zone = ('alz053', 0.0016346131622817718) + +[fips0102593132] +centroid = (0.55650887850682917, -1.5330116589118863) +description = Thomasville CCD, AL +station = ('kgzh', 0.014249354281362979) +zone = ('alz053', 0.0037479140216044927) + +[fips0102593362] +centroid = (0.54798294511083689, -1.5327292995454989) +description = Walker Springs CCD, AL +station = ('kgzh', 0.011459030707354087) +zone = ('alz053', 0.0047818590092242588) + +[fips01027] +centroid = (0.58063280197460221, -1.4985754924652896) +description = Clay County, AL +station = ('kanb', 0.005509735579286518) +zone = ('alz028', 3.1937078636468928e-05) + +[fips0102790126] +centroid = (0.57988157735795887, -1.4974014967439357) +description = Ashland CCD, AL +station = ('kalx', 0.0059429979408300981) +zone = ('alz028', 0.0012323750296819643) + +[fips0102791899] +centroid = (0.5827179293786674, -1.4969525282471527) +description = Lineville CCD, AL +station = ('kanb', 0.0036189620453397852) +zone = ('alz028', 0.0024560801934931857) + +[fips0102792142] +centroid = (0.57906853317920981, -1.5013592577156356) +description = Millerville-Hollins CCD, AL +station = ('kalx', 0.0046779540802675684) +zone = ('alz028', 0.0028367025116392201) + +[fips0102836] +centroid = (0.54428588396950728, -1.4876529602069215) +description = Ashford town, AL +station = ('kdhn', 0.0039282709121353466) +zone = ('alz069', 0.0011370223804497079) + +[fips0102860] +centroid = (0.58066915718292123, -1.498080778888812) +description = Ashland town, AL +station = ('kanb', 0.0054757294983263172) +zone = ('alz028', 0.00039124079857879787) + +[fips01029] +centroid = (0.58768693411897277, -1.4925376655443556) +description = Cleburne County, AL +station = ('kctj', 0.00536928276850605) +zone = ('alz021', 5.8827323469703e-05) + +[fips0102908] +centroid = (0.59055239823160455, -1.5057246403341387) +description = Ashville city, AL +station = ('kgad', 0.003554086014415606) +zone = ('alz026', 0.0021931567139694273) + +[fips0102956] +centroid = (0.60699643665828962, -1.5175556513747552) +description = Athens city, AL +station = ('kdcu', 0.002239860819804089) +zone = ('alz005', 0.00071740927561915306) + +[fips0102991251] +centroid = (0.59028360007350489, -1.4917734556780773) +description = Fruithurst CCD, AL +station = ('kctj', 0.0057425038909333613) +zone = ('alz021', 0.0026403059727648399) + +[fips0102991593] +centroid = (0.58656309916032112, -1.4941526012479334) +description = Heflin CCD, AL +station = ('kanb', 0.0035343631326616963) +zone = ('alz021', 0.0017515003903385686) + +[fips0102992682] +centroid = (0.58594888288995928, -1.4904714924159672) +description = Ranburne CCD, AL +station = ('kctj', 0.0037388938760041625) +zone = ('alz021', 0.0025043507349386596) + +[fips0103004] +centroid = (0.54333996787480399, -1.5264519436380208) +description = Atmore city, AL +station = ('kgzh', 0.0078812087946023481) +zone = ('flz001', 0.0045310394573661629) + +[fips0103028] +centroid = (0.59317089825507918, -1.5030956508818598) +description = Attalla city, AL +station = ('kgad', 0.00064334052313996185) +zone = ('alz018', 0.001618887198981179) + +[fips0103076] +centroid = (0.56911211047499044, -1.4920740362818559) +description = Auburn city, AL +station = ('kauo', 0.0008410159024031139) +zone = ('alz047', 0.001972658202852369) + +[fips01031] +centroid = (0.54807148566379049, -1.5007946786092003) +description = Coffee County, AL +station = ('klor', 0.0036676955509487895) +zone = ('alz065', 1.6593103726693638e-05) + +[fips0103190954] +centroid = (0.54830363190759823, -1.5024047099375804) +description = Elba CCD, AL +station = ('k79j', 0.0049301123198039684) +zone = ('alz065', 0.0014071060051451009) + +[fips0103190999] +centroid = (0.54732408331820892, -1.4987020113827667) +description = Enterprise CCD, AL +station = ('klor', 0.0018028762537888184) +zone = ('alz065', 0.0019256858052071522) + +[fips0103191341] +centroid = (0.5455108782116046, -1.5014857068199428) +description = Goodman CCD, AL +station = ('kozr', 0.0046816258375972824) +zone = ('alz065', 0.0026382377238714171) + +[fips0103191719] +centroid = (0.55087734678246669, -1.501966038883384) +description = Jack CCD, AL +station = ('kprn', 0.0041580165807918769) +zone = ('alz065', 0.0029765619060706512) + +[fips0103191800] +centroid = (0.54580269726253805, -1.5036120414476473) +description = Kinston CCD, AL +station = ('k79j', 0.0035047042565317012) +zone = ('alz065', 0.0033231163006974531) + +[fips0103193303] +centroid = (0.55043467892428333, -1.4992099196483899) +description = Victoria CCD, AL +station = ('klor', 0.0038366365127953397) +zone = ('alz065', 0.0027087381717351678) + +[fips0103220] +centroid = (0.56605500921048968, -1.5124805480692212) +description = Autaugaville town, AL +station = ('kmxf', 0.0043888058997193025) +zone = ('alz041', 0.0018014918858974183) + +[fips01033] +centroid = (0.60568356508835441, -1.532424512698223) +description = Colbert County, AL +station = ('kmsl', 0.0030034401031518478) +zone = ('alz002', 6.7222885641248328e-05) + +[fips0103364] +centroid = (0.5441888436630965, -1.488402544214068) +description = Avon town, AL +station = ('kdhn', 0.0034941304800697012) +zone = ('alz069', 0.00057926911909740196) + +[fips0103390567] +centroid = (0.60601751638743095, -1.5361132835256055) +description = Cherokee CCD, AL +station = ('kmsl', 0.0059406222165595338) +zone = ('alz002', 0.0030069354026504209) + +[fips0103391863] +centroid = (0.60562843013728396, -1.5275641023439765) +description = Leighton CCD, AL +station = ('kmsl', 0.0014084616008998374) +zone = ('alz001', 0.0039901832336325877) + +[fips0103391926] +centroid = (0.60478208507640674, -1.5321984402002122) +description = Littleville CCD, AL +station = ('kmsl', 0.0032053054152611617) +zone = ('alz002', 0.00088765667523054445) + +[fips0103393186] +centroid = (0.60609317641050497, -1.5296543784693351) +description = Tri-Cities CCD, AL +station = ('kmsl', 0.00073677213308841357) +zone = ('alz002', 0.0023705863197918862) + +[fips01035] +centroid = (0.54852719113148618, -1.5182973290403903) +description = Conecuh County, AL +station = ('kgzh', 0.00088692732948532707) +zone = ('alz056', 2.926242822956089e-05) + +[fips0103508] +centroid = (0.5397005200520828, -1.5362711311031558) +description = Axis CDP, AL +station = ('kbfm', 0.0050925251209684094) +zone = ('alz061', 0.0024428038627279836) + +[fips0103556] +centroid = (0.54632441108254415, -1.5065583841178165) +description = Babbie town, AL +station = ('k79j', 0.00095357641078813412) +zone = ('alz060', 0.0021766572521182762) + +[fips0103590504] +centroid = (0.54700557818301254, -1.5191126945070446) +description = Castleberry CCD, AL +station = ('kgzh', 0.001329314622222815) +zone = ('alz056', 0.0016797529127032165) + +[fips0103591044] +centroid = (0.54756849922665829, -1.5159092997446415) +description = Evergreen CCD, AL +station = ('kgzh', 0.0029988649449412081) +zone = ('alz056', 0.0022811434904937956) + +[fips0103592016] +centroid = (0.55133139418737298, -1.5186160436150968) +description = Lyeffion CCD, AL +station = ('kgzh', 0.0030646310970672097) +zone = ('alz056', 0.0027976720590023999) + +[fips0103592718] +centroid = (0.54726434069791319, -1.5226764474001067) +description = Repton CCD, AL +station = ('kgzh', 0.003063794006605427) +zone = ('alz055', 0.0041692388815382647) + +[fips0103592916] +centroid = (0.54855679191560003, -1.5139807807343579) +description = Shreve CCD, AL +station = ('kgzh', 0.0045528122440086022) +zone = ('alz056', 0.0037066440883008278) + +[fips0103676] +centroid = (0.59796477665823944, -1.5116085117617548) +description = Baileyton town, AL +station = ('k3a1', 0.0036020300508103711) +zone = ('alz016', 0.0043608504858887271) + +[fips01037] +centroid = (0.57476214268942394, -1.5052327192844643) +description = Coosa County, AL +station = ('kalx', 0.0041227470383549524) +zone = ('alz036', 0.00010259741770145945) + +[fips0103724] +centroid = (0.55461193250271401, -1.4886857064319114) +description = Bakerhill town, AL +station = ('keuf', 0.0038914214042574985) +zone = ('alz050', 0.0021724453423352221) + +[fips0103791350] +centroid = (0.57583524092672023, -1.5022725885132044) +description = Goodwater-Kellyton CCD, AL +station = ('kalx', 0.0021238150308342386) +zone = ('alz036', 0.0027297618860698627) + +[fips0103792763] +centroid = (0.57289329648626608, -1.5044407412297867) +description = Rockford CCD, AL +station = ('kalx', 0.0037930581832431973) +zone = ('alz036', 0.0020822989838677193) + +[fips0103793429] +centroid = (0.57601708678148555, -1.5068248086281333) +description = Weogufka-Marble Valley CCD, AL +station = ('kalx', 0.0056619722523152151) +zone = ('alz036', 0.001732083708625204) + +[fips0103820] +centroid = (0.59379104864489773, -1.4974812931973369) +description = Ballplay CDP, AL +station = ('kgad', 0.0042200897828412222) +zone = ('alz020', 0.0039036595036221894) + +[fips01039] +centroid = (0.54531044460030553, -1.508814815587965) +description = Covington County, AL +station = ('k79j', 0.0013810051468227174) +zone = ('alz060', 8.702014814092996e-05) + +[fips0103940] +centroid = (0.55524622005947388, -1.4981284089240987) +description = Banks town, AL +station = ('kprn', 0.0017637312386254854) +zone = ('alz049', 0.0015610033022732729) + +[fips0103990090] +centroid = (0.5468249191521386, -1.5101821065239773) +description = Andalusia CCD, AL +station = ('k79j', 0.0022092995970605981) +zone = ('alz060', 0.0018279585827496029) + +[fips0103991062] +centroid = (0.54313920265094706, -1.5112349240353653) +description = Falco CCD, AL +station = ('k79j', 0.0043809730906274394) +zone = ('alz060', 0.0030327024581931388) + +[fips0103991134] +centroid = (0.54200753116395395, -1.5071508535856983) +description = Florala CCD, AL +station = ('k0j4', 0.00088139838750814822) +zone = ('alz060', 0.0036838050095248116) + +[fips0103992448] +centroid = (0.54549979537085447, -1.5056585970752434) +description = Opp CCD, AL +station = ('k79j', 0.0018939668090953224) +zone = ('alz060', 0.0027374637788776467) + +[fips0103992781] +centroid = (0.54876757532936338, -1.507962571314216) +description = Rose Hill-Gantt CCD, AL +station = ('k79j', 0.0024917659126755306) +zone = ('alz060', 0.0034638527087763374) + +[fips01041] +centroid = (0.55384229466246215, -1.5065546316599248) +description = Crenshaw County, AL +station = ('ktoi', 0.005059478509113537) +zone = ('alz058', 8.6604187464852438e-05) + +[fips0104190360] +centroid = (0.55081444511622479, -1.5066084925206413) +description = Brantley CCD, AL +station = ('k79j', 0.0046167257520744395) +zone = ('alz058', 0.003007490898224907) + +[fips0104192007] +centroid = (0.55371732908801929, -1.5064877855495735) +description = Luverne CCD, AL +station = ('ktoi', 0.0050687845276879452) +zone = ('alz058', 0.00010524015753007017) + +[fips0104192529] +centroid = (0.55702244163922843, -1.5062507000239824) +description = Petrey-Highland Home CCD, AL +station = ('ktoi', 0.0043089608659056429) +zone = ('alz058', 0.0032080597177259404) + +[fips01043] +centroid = (0.59571443638718058, -1.5161547279440568) +description = Cullman County, AL +station = ('k3a1', 0.0023908727305955698) +zone = ('alz016', 2.4120483434527127e-05) + +[fips0104390180] +centroid = (0.59797847749286759, -1.5109021944667651) +description = Baileyton-Joppa CCD, AL +station = ('k8a0', 0.0045484677997482464) +zone = ('alz008', 0.0041963450987674835) + +[fips0104390369] +centroid = (0.592953709482961, -1.5178776820750406) +description = Bremen CCD, AL +station = ('k3a1', 0.0053847343414188589) +zone = ('alz016', 0.0031202887798187041) + +[fips0104390774] +centroid = (0.59443870542372779, -1.5194067999392982) +description = Crane Hill CCD, AL +station = ('kjfx', 0.0046088259075819588) +zone = ('alz016', 0.0030023034741653949) + +[fips0104390810] +centroid = (0.59616199116726953, -1.5157279251287743) +description = Cullman CCD, AL +station = ('k3a1', 0.001947901917463195) +zone = ('alz016', 0.00055447738765900033) + +[fips0104391521] +centroid = (0.59389494809526888, -1.5148558015548452) +description = Hanceville CCD, AL +station = ('k3a1', 0.0043039782598524937) +zone = ('alz016', 0.0021027606816860886) + +[fips0104391647] +centroid = (0.59613528762971391, -1.5121007120641097) +description = Holly Pond CCD, AL +station = ('k3a1', 0.0037505414340898639) +zone = ('alz017', 0.0032180198313010765) + +[fips0104391773] +centroid = (0.59718498100174078, -1.5196708857084174) +description = Jones Chapel CCD, AL +station = ('k3a1', 0.0031981527212018987) +zone = ('alz016', 0.0032804999539430132) + +[fips0104391962] +centroid = (0.59618564037863397, -1.5176889770763151) +description = Logan CCD, AL +station = ('k3a1', 0.0023875012176287538) +zone = ('alz016', 0.00137652051589591) + +[fips0104392934] +centroid = (0.59754542639886277, -1.5137272542072131) +description = Simcoe CCD, AL +station = ('k3a1', 0.0019301429017424788) +zone = ('alz016', 0.0026988765306124652) + +[fips0104393330] +centroid = (0.59833649688232915, -1.5164338933579133) +description = Vinemont CCD, AL +station = ('k3a1', 0.00045466625611231533) +zone = ('alz016', 0.0026330869642365935) + +[fips0104393420] +centroid = (0.59579217335206436, -1.5137304132531593) +description = Welti CCD, AL +station = ('k3a1', 0.0029561308124086065) +zone = ('alz016', 0.0019840561759168645) + +[fips01045] +centroid = (0.54856839835512583, -1.4941672271070652) +description = Dale County, AL +station = ('klor', 0.0024183490474290878) +zone = ('alz066', 3.0251647365579419e-05) + +[fips0104590828] +centroid = (0.54572009082904116, -1.4964330135420041) +description = Daleville CCD, AL +station = ('kozr', 0.00043671467160638942) +zone = ('alz068', 0.0033580182952733313) + +[fips0104590936] +centroid = (0.5496806094209592, -1.4916308273716044) +description = Echo CCD, AL +station = ('kdhn', 0.0031088203494424424) +zone = ('alz066', 0.0024438275826181698) + +[fips0104591215] +centroid = (0.54788456090090198, -1.4961216118968632) +description = Fort Rucker CCD, AL +station = ('klor', 0.00069559158285373724) +zone = ('alz066', 0.001789487834711905) + +[fips0104592376] +centroid = (0.54657038033402772, -1.492706020004003) +description = Newton-Midland City CCD, AL +station = ('kdhn', 0.0011295789245646367) +zone = ('alz066', 0.0023845306870943963) + +[fips0104592466] +centroid = (0.54998822370162326, -1.4945720387737726) +description = Ozark CCD, AL +station = ('klor', 0.0031793457964584119) +zone = ('alz066', 0.0014365104712212994) + +[fips0104660] +centroid = (0.53900301666981576, -1.5320154598814331) +description = Bay Minette city, AL +station = ('kbfm', 0.0061374721529437563) +zone = ('alz062', 0.0011526288143025077) + +[fips0104684] +centroid = (0.53071249328333248, -1.540484687530028) +description = Bayou La Batre city, AL +station = ('kpql', 0.0041926699165541611) +zone = ('alz063', 0.0021455681380829757) + +[fips01047] +centroid = (0.56432673182528736, -1.5204323379544773) +description = Dallas County, AL +station = ('kmxf', 0.011057426976769678) +zone = ('alz040', 0.00017796653347382962) + +[fips0104790486] +centroid = (0.56074365813740557, -1.5193066005869411) +description = Carlowville CCD, AL +station = ('kmxf', 0.011022814917906227) +zone = ('alz040', 0.0035479612715863052) + +[fips0104792457] +centroid = (0.56418935695986283, -1.5222618618895878) +description = Orrville CCD, AL +station = ('kmxf', 0.012609415803695789) +zone = ('alz040', 0.0016618525221324585) + +[fips0104792808] +centroid = (0.56395206199476167, -1.5247629536142808) +description = Safford CCD, AL +station = ('ktcl', 0.016222873984957534) +zone = ('alz040', 0.0037832041033490928) + +[fips0104792844] +centroid = (0.56324646028476544, -1.5188297766352963) +description = Sardis CCD, AL +station = ('kmxf', 0.0098672907823084341) +zone = ('alz040', 0.0015581272732583854) + +[fips0104792880] +centroid = (0.56710772200212267, -1.5184810947573326) +description = Selma CCD, AL +station = ('kmxf', 0.0095598532242046532) +zone = ('alz040', 0.0032938114478695576) + +[fips0104792883] +centroid = (0.56424923920649872, -1.516884991156384) +description = Selmont-Tyler CCD, AL +station = ('kmxf', 0.0080825479815846441) +zone = ('alz040', 0.0028822421770290105) + +[fips0104852] +centroid = (0.59787276290007429, -1.5308721994082066) +description = Bear Creek town, AL +station = ('k1m4', 0.0016752622535522647) +zone = ('alz011', 0.0032656553247553135) + +[fips01049] +centroid = (0.60145667434599703, -1.4975621717548742) +description = DeKalb County, AL +station = ('k4a9', 0.0012090398566254642) +zone = ('alz010', 1.9765962043927711e-05) + +[fips0104900] +centroid = (0.5538507246027492, -1.5220849902231908) +description = Beatrice town, AL +station = ('kgzh', 0.006011197464660856) +zone = ('alz055', 0.0036726489242057563) + +[fips0104948] +centroid = (0.59228465496750149, -1.5362698395595094) +description = Beaverton town, AL +station = ('km40', 0.0068625873870425472) +zone = ('alz012', 0.0029357640450059543) + +[fips0104990693] +centroid = (0.59747482783061956, -1.4992687721507671) +description = Collinsville CCD, AL +station = ('k4a9', 0.0049419016466765772) +zone = ('alz018', 0.0037947873700457657) + +[fips0104990792] +centroid = (0.59790061835493613, -1.5014280062348717) +description = Crossville CCD, AL +station = ('k8a0', 0.0033559219710999951) +zone = ('alz018', 0.0037004835998883934) + +[fips0104991206] +centroid = (0.6005418949251492, -1.4964251246537852) +description = Fort Payne CCD, AL +station = ('k4a9', 0.0011635732355140477) +zone = ('alz010', 0.0012975222565993665) + +[fips0104991269] +centroid = (0.60098814070829909, -1.5004372700849771) +description = Fyffe CCD, AL +station = ('k4a9', 0.003625787334899769) +zone = ('alz010', 0.0024115317203782091) + +[fips0104991323] +centroid = (0.59955264230511884, -1.5010122164471691) +description = Geraldine CCD, AL +station = ('k8a0', 0.004243565733017673) +zone = ('alz010', 0.0034123717531001972) + +[fips0104991611] +centroid = (0.60428913428247344, -1.496108207768208) +description = Henagar CCD, AL +station = ('k4a9', 0.0026111348917479708) +zone = ('alz010', 0.0030940159934643324) + +[fips0104991692] +centroid = (0.60614136495115256, -1.4946425326222605) +description = Ider CCD, AL +station = ('k4a9', 0.0046261635566044318) +zone = ('gaz001', 0.0028931348921413811) + +[fips0104992655] +centroid = (0.60239290386335176, -1.4978317727644299) +description = Rainsville-Sylvania CCD, AL +station = ('k4a9', 0.00158125214897796) +zone = ('alz010', 0.00098107273294692661) + +[fips0104993276] +centroid = (0.60400328425758198, -1.4937669532964126) +description = Valley Head-Mentone CCD, AL +station = ('k4a9', 0.0030274193715387116) +zone = ('alz010', 0.0040460592607623183) + +[fips01051] +centroid = (0.56892897307657864, -1.5034744222361276) +description = Elmore County, AL +station = ('kmxf', 0.0049803562688640291) +zone = ('alz043', 9.5635212600847573e-05) + +[fips0105140] +centroid = (0.60169665711814624, -1.5334760037593795) +description = Belgreen CDP, AL +station = ('k1m4', 0.0050688399560614248) +zone = ('alz003', 0.00063062274818225037) + +[fips0105164] +centroid = (0.5873320388688722, -1.5346437337487187) +description = Belk town, AL +station = ('ktcl', 0.0088475389424203087) +zone = ('alz012', 0.00330534280527758) + +[fips0105188] +centroid = (0.56659771934139735, -1.5381845181088245) +description = Bellamy CDP, AL +station = ('kmei', 0.0093943431470992211) +zone = ('alz030', 0.002433314926974925) + +[fips0105190855] +centroid = (0.56967946465493624, -1.5070329391414337) +description = Deatsville CCD, AL +station = ('kmxf', 0.0044933657016422166) +zone = ('alz043', 0.0030005146723370629) + +[fips0105190945] +centroid = (0.57021372739226417, -1.5009103939386077) +description = Eclectic CCD, AL +station = ('kalx', 0.0042840840687019465) +zone = ('alz043', 0.0026000843571988811) + +[fips0105190972] +centroid = (0.56732079179720607, -1.507146368089521) +description = Elmore CCD, AL +station = ('kmxf', 0.0021343411025747262) +zone = ('alz043', 0.0033987577671903426) + +[fips0105193087] +centroid = (0.56743867133488568, -1.5006227811311716) +description = Tallassee CCD, AL +station = ('kmxf', 0.0061296522492625648) +zone = ('alz043', 0.0029037271110593974) + +[fips0105193141] +centroid = (0.57063286821213055, -1.5048633378015721) +description = Titus CCD, AL +station = ('kalx', 0.0054057461287552082) +zone = ('alz043', 0.0020237192532688133) + +[fips0105193456] +centroid = (0.56779182125573424, -1.5037514408950041) +description = Wetumpka CCD, AL +station = ('kmxf', 0.004015908877483914) +zone = ('alz043', 0.001134649794060482) + +[fips0105212] +centroid = (0.53219506321643906, -1.5377492853532548) +description = Belle Fontaine CDP, AL +station = ('kbfm', 0.0025294837538838945) +zone = ('alz063', 0.0020485384769215781) + +[fips01053] +centroid = (0.54317697157596023, -1.5213760898409083) +description = Escambia County, AL +station = ('kgzh', 0.005442059335394143) +zone = ('alz059', 0.00012824985972268303) + +[fips0105390153] +centroid = (0.54199004296484898, -1.5264567956533412) +description = Atmore CCD, AL +station = ('knse', 0.0086756332067794567) +zone = ('flz001', 0.0031892257828803421) + +[fips0105390378] +centroid = (0.54368507182780079, -1.5206995304096651) +description = Brewton CCD, AL +station = ('kgzh', 0.0047889605483833987) +zone = ('alz059', 0.00064252102361449649) + +[fips0105390927] +centroid = (0.54278442957389417, -1.5168668397321632) +description = East Escambia CCD, AL +station = ('kgzh', 0.0059201822351246484) +zone = ('alz059', 0.0037878630474274364) + +[fips0105391125] +centroid = (0.54297526387430728, -1.5232983605724697) +description = Flomaton CCD, AL +station = ('kgzh', 0.0063434793138669723) +zone = ('alz059', 0.0017698934224760971) + +[fips0105392034] +centroid = (0.54429930555145523, -1.526629827595384) +description = McCullough-Huxford CCD, AL +station = ('kgzh', 0.0074382263692633318) +zone = ('alz059', 0.004715112070655776) + +[fips01055] +centroid = (0.59424338562713708, -1.5015838990436599) +description = Etowah County, AL +station = ('kgad', 0.0015805073884134239) +zone = ('alz018', 4.1174173425308188e-05) + +[fips0105590081] +centroid = (0.59436294068089868, -1.5054940474333653) +description = Altoona CCD, AL +station = ('k8a0', 0.0030441578689339457) +zone = ('alz018', 0.0032382318963082375) + +[fips0105591278] +centroid = (0.59301938622271344, -1.5020167406981544) +description = Gadsden CCD, AL +station = ('kgad', 0.00039701216938295029) +zone = ('alz018', 0.0012348138545987813) + +[fips0105591638] +centroid = (0.59373306880714649, -1.4979401053511012) +description = Hokes Bluff CCD, AL +station = ('kgad', 0.0038366713320597792) +zone = ('alz018', 0.0030614216998566903) + +[fips0105591980] +centroid = (0.59562429013131502, -1.4998434567135712) +description = Lookout Mountain CCD, AL +station = ('kgad', 0.0035252331745978119) +zone = ('alz018', 0.0020285074127160702) + +[fips0105592268] +centroid = (0.59595450642579229, -1.5031003632708402) +description = Mountainboro CCD, AL +station = ('k8a0', 0.0024219483054471972) +zone = ('alz018', 0.0021523225536658453) + +[fips0105593213] +centroid = (0.59468010191257115, -1.4992237601093579) +description = Turkeytown CCD, AL +station = ('kgad', 0.0032431377781436733) +zone = ('alz018', 0.0020180882435846029) + +[fips0105593465] +centroid = (0.59597784147789157, -1.5012441008915891) +description = Wills Valley CCD, AL +station = ('kgad', 0.0032993251431310149) +zone = ('alz018', 0.0017982916973826222) + +[fips0105692] +centroid = (0.56387977045714421, -1.5152520262016329) +description = Benton town, AL +station = ('kmxf', 0.0067772868249518095) +zone = ('alz042', 0.0036419469004038943) + +[fips01057] +centroid = (0.58873880915256471, -1.5315621804213975) +description = Fayette County, AL +station = ('kjfx', 0.0070469977423356662) +zone = ('alz013', 0.00027132749276125321) + +[fips0105790279] +centroid = (0.58724650028223202, -1.5291677632205865) +description = Berry CCD, AL +station = ('kjfx', 0.0062529298620533679) +zone = ('alz013', 0.0022212266935928014) + +[fips0105791089] +centroid = (0.58709451701096838, -1.5331609718293946) +description = Fayette CCD, AL +station = ('ktcl', 0.0080633586806295593) +zone = ('alz013', 0.0021027115231151286) + +[fips0105792380] +centroid = (0.59022034934141265, -1.5296733327450118) +description = Northeast Fayette CCD, AL +station = ('kjfx', 0.005049833513822437) +zone = ('alz013', 0.0021693964706279794) + +[fips0105793495] +centroid = (0.59083004520901183, -1.5329716908720157) +description = Winfield-Glen Allen CCD, AL +station = ('k1m4', 0.0081950217113308296) +zone = ('alz013', 0.002659435097093195) + +[fips01059] +centroid = (0.60112609153237673, -1.5331463459702628) +description = Franklin County, AL +station = ('k1m4', 0.0044918283926750069) +zone = ('alz003', 1.5042513726142295e-05) + +[fips0105932] +centroid = (0.58754669691357508, -1.5290452062005115) +description = Berry town, AL +station = ('kjfx', 0.0059700023998433072) +zone = ('alz013', 0.0021496226069295421) + +[fips0105980] +centroid = (0.58243075290354418, -1.5179391002114184) +description = Bessemer city, AL +station = ('keet', 0.0042716353673281828) +zone = ('alz024', 0.003383358723090312) + +[fips0105992547] +centroid = (0.59963203733279213, -1.5305962628534664) +description = Phil Campbell CCD, AL +station = ('k1m4', 0.0019226465683420597) +zone = ('alz003', 0.002589298787377496) + +[fips0105992691] +centroid = (0.6019707087172943, -1.5368771792326184) +description = Red Bay CCD, AL +station = ('k1m4', 0.0075260542596387418) +zone = ('alz003', 0.0031774576466248152) + +[fips0105992799] +centroid = (0.60195623993779535, -1.5315420567751219) +description = Russellville CCD, AL +station = ('k1m4', 0.004248219905285071) +zone = ('alz003', 0.0015762929077273284) + +[fips0105993312] +centroid = (0.60003349796733585, -1.5359955959741436) +description = Vina CCD, AL +station = ('k1m4', 0.0060990484494190993) +zone = ('alz003', 0.002577191507113261) + +[fips01061] +centroid = (0.54263797899635935, -1.4979174160708253) +description = Geneva County, AL +station = ('kozr', 0.0037241134874778565) +zone = ('alz068', 0.00023059433036906366) + +[fips0106190252] +centroid = (0.54357351038201329, -1.4990446718748107) +description = Bellwood-Coffee Springs CCD, AL +station = ('kozr', 0.003533562601424203) +zone = ('alz068', 0.001141076614277192) + +[fips0106191305] +centroid = (0.5419251690765523, -1.4994397620575848) +description = Geneva CCD, AL +station = ('kozr', 0.0050053414566777208) +zone = ('alz068', 0.0013390528793272699) + +[fips0106191530] +centroid = (0.54226770739554875, -1.496390549681303) +description = Hartford CCD, AL +station = ('kozr', 0.0037416342458313837) +zone = ('alz068', 0.0015895020704964694) + +[fips0106192835] +centroid = (0.54253179316466804, -1.5024871941980296) +description = Samson CCD, AL +station = ('k0j4', 0.0033206359025923175) +zone = ('alz068', 0.0036986455411266209) + +[fips0106192952] +centroid = (0.54291365375171186, -1.4935417360097354) +description = Slocomb CCD, AL +station = ('kozr', 0.0037507177896969716) +zone = ('alz069', 0.0041314258457123458) + +[fips01063] +centroid = (0.57324461381139991, -1.5352649313360887) +description = Greene County, AL +station = ('ktcl', 0.0082493999208247126) +zone = ('alz031', 0.00023132055195326697) + +[fips0106390342] +centroid = (0.57180639269458655, -1.5363305421108937) +description = Boligee CCD, AL +station = ('ktcl', 0.0099359363705803297) +zone = ('alz031', 0.0019160999558931) + +[fips0106391026] +centroid = (0.57406148026121095, -1.5336401519755296) +description = Eutaw CCD, AL +station = ('ktcl', 0.0067898413943696771) +zone = ('alz031', 0.0013629126521194901) + +[fips0106391179] +centroid = (0.56998451330159983, -1.534216861120266) +description = Forkland-Tishabee CCD, AL +station = ('ktcl', 0.01062573038508062) +zone = ('alz031', 0.0034824142355214223) + +[fips0106392088] +centroid = (0.57523769255071489, -1.5367785332232955) +description = Mantua-West Greene CCD, AL +station = ('ktcl', 0.0077843879526875584) +zone = ('alz031', 0.0023428799256168271) + +[fips0106460] +centroid = (0.57003360941345838, -1.5133698805895748) +description = Billingsley town, AL +station = ('kmxf', 0.0069921227467053234) +zone = ('alz041', 0.0024030886756185401) + +[fips01065] +centroid = (0.57164412943402865, -1.5293109151258353) +description = Hale County, AL +station = ('ktcl', 0.0080966116322856545) +zone = ('alz032', 0.00019425861086464017) + +[fips0106591413] +centroid = (0.5705615366056016, -1.5288309495815366) +description = Greensboro CCD, AL +station = ('ktcl', 0.0091838662377134381) +zone = ('alz032', 0.0013485757259366401) + +[fips0106591414] +centroid = (0.5720870067317223, -1.5276835177713981) +description = Greensboro Northeast CCD, AL +station = ('ktcl', 0.0077580619696261295) +zone = ('alz032', 0.001481825394149643) + +[fips0106591415] +centroid = (0.56963577906375884, -1.5300329229308001) +description = Greensboro South CCD, AL +station = ('ktcl', 0.010128617437988312) +zone = ('alz032', 0.002242075851134047) + +[fips0106592259] +centroid = (0.57479127223463988, -1.5280673505804967) +description = Moundville CCD, AL +station = ('ktcl', 0.0050390081138374397) +zone = ('alz032', 0.0031828765168888679) + +[fips0106592345] +centroid = (0.56799040481802621, -1.5295541267571005) +description = Newbern CCD, AL +station = ('ktcl', 0.011753572692554826) +zone = ('alz032', 0.0038283407692065469) + +[fips0106592853] +centroid = (0.57135136790529917, -1.5313715730137873) +description = Sawyerville CCD, AL +station = ('ktcl', 0.0085844761354308425) +zone = ('alz032', 0.0017091073684454079) + +[fips0106593015] +centroid = (0.57353716590061921, -1.5306194408259328) +description = Stewart-Akron CCD, AL +station = ('ktcl', 0.0063162405043194854) +zone = ('alz032', 0.0019953649862620442) + +[fips01067] +centroid = (0.55007503637861743, -1.4877181482544835) +description = Henry County, AL +station = ('kdhn', 0.0046913630118932256) +zone = ('alz067', 4.5086740174785539e-05) + +[fips0106790009] +centroid = (0.55146426610332733, -1.4888411105485091) +description = Abbeville CCD, AL +station = ('kdhn', 0.0053451941332018039) +zone = ('alz067', 0.0017080592472504025) + +[fips0106791485] +centroid = (0.54810544977103437, -1.4860753396427511) +description = Haleburg CCD, AL +station = ('kbij', 0.0038119890396127597) +zone = ('alz067', 0.0023975081499397924) + +[fips0106791584] +centroid = (0.54810991781391949, -1.4891919740880375) +description = Headland-Newville CCD, AL +station = ('kdhn', 0.0024180551397480713) +zone = ('alz067', 0.0022879003581991351) + +[fips0106792907] +centroid = (0.55174599715118422, -1.4859164448676496) +description = Shorterville CCD, AL +station = ('kbij', 0.0052215007032278523) +zone = ('alz067', 0.0023127829688652027) + +[fips01069] +centroid = (0.54381305682184955, -1.4887029851915061) +description = Houston County, AL +station = ('kdhn', 0.0035922592602965521) +zone = ('alz069', 0.00012609690495264252) + +[fips0106990702] +centroid = (0.54530665723582872, -1.4862322621957982) +description = Columbia CCD, AL +station = ('kdhn', 0.0045828828532783914) +zone = ('alz069', 0.0027126684368304317) + +[fips0106990747] +centroid = (0.54228242052114306, -1.4887666897092042) +description = Cottonwood CCD, AL +station = ('kmai', 0.0044927921798917992) +zone = ('alz069', 0.0014439569451487125) + +[fips0106990900] +centroid = (0.54486672954457105, -1.4901030708641636) +description = Dothan CCD, AL +station = ('kdhn', 0.0020322759260021912) +zone = ('alz069', 0.0015893841198179055) + +[fips0106991368] +centroid = (0.54211155278737277, -1.4856376110663512) +description = Gordon CCD, AL +station = ('kmai', 0.004077387522912237) +zone = ('alz069', 0.0031593627742149345) + +[fips0106992070] +centroid = (0.54235118649367164, -1.4909665899648803) +description = Madrid CCD, AL +station = ('kdhn', 0.004242797135532158) +zone = ('alz069', 0.0023022814960610496) + +[fips0107000] +centroid = (0.58516428757801775, -1.5149291577433066) +description = Birmingham city, AL +station = ('kbhm', 0.0009887525551788331) +zone = ('alz024', 0.0014931445569539641) + +[fips01071] +centroid = (0.60673791848948422, -1.5005887123041728) +description = Jackson County, AL +station = ('k4a6', 0.0014933508740704821) +zone = ('alz009', 0.00041878049469700975) + +[fips0107120] +centroid = (0.54123094691327911, -1.4964940127993613) +description = Black town, AL +station = ('k1j0', 0.0037556796078027851) +zone = ('alz068', 0.0020633349636245881) + +[fips0107190387] +centroid = (0.61028660919110167, -1.4970988566516399) +description = Bridgeport CCD, AL +station = ('kbgf', 0.0055253559331943699) +zone = ('tnz098', 0.0036030924235335555) + +[fips0107191971] +centroid = (0.60827066663858564, -1.4957474133052355) +description = Long Island CCD, AL +station = ('k4a6', 0.005238562336325546) +zone = ('gaz001', 0.0028008343587627819) + +[fips0107192475] +centroid = (0.6052269171428627, -1.5054775889785192) +description = Paint Rock CCD, AL +station = ('k4a6', 0.0036964145219162935) +zone = ('alz009', 0.0041128945119512173) + +[fips0107192610] +centroid = (0.60565017693976386, -1.4977468624963204) +description = Pisgah CCD, AL +station = ('k4a6', 0.002686601029522514) +zone = ('alz009', 0.0029802653161185096) + +[fips0107192637] +centroid = (0.6087496024386253, -1.5049614078522418) +description = Princeton CCD, AL +station = ('k4a6', 0.0047658934026972924) +zone = ('alz009', 0.0037065254953199439) + +[fips0107192862] +centroid = (0.60550896234998497, -1.5016749528707365) +description = Scottsboro CCD, AL +station = ('k4a6', 0.00061312956466760674) +zone = ('alz009', 0.0016133789730226808) + +[fips0107192871] +centroid = (0.60339193032719329, -1.5004762956470516) +description = Section CCD, AL +station = ('k4a6', 0.0019337694900829127) +zone = ('alz010', 0.0030951466464990049) + +[fips0107193006] +centroid = (0.60888247435457965, -1.4997557713719509) +description = Stevenson CCD, AL +station = ('k4a6', 0.0037406814508219974) +zone = ('alz009', 0.0021171163725798013) + +[fips01073] +centroid = (0.5856180731835362, -1.5166306617777832) +description = Jefferson County, AL +station = ('kbhm', 0.0021436703754653262) +zone = ('alz024', 1.4949192184050607e-05) + +[fips0107390324] +centroid = (0.58493669664355763, -1.5153998904958621) +description = Birmingham CCD, AL +station = ('kbhm', 0.001433504621449916) +zone = ('alz024', 0.0012394693918942341) + +[fips0107390405] +centroid = (0.58787785568584849, -1.5169398817613591) +description = Brookside CCD, AL +station = ('kbhm', 0.0031329014581291622) +zone = ('alz024', 0.0022596225020941121) + +[fips0107390621] +centroid = (0.58836380770948116, -1.5110479643658916) +description = Clay CCD, AL +station = ('kbhm', 0.0035592535416527952) +zone = ('alz026', 0.0038042966217030402) + +[fips0107390722] +centroid = (0.58388565936800663, -1.5195252554356307) +description = Concord-Rock Creek CCD, AL +station = ('kbhm', 0.0049517021507363701) +zone = ('alz024', 0.0029801743893537081) + +[fips0107391296] +centroid = (0.58806066147170233, -1.5150633037496146) +description = Gardendale CCD, AL +station = ('kbhm', 0.0023604706268875249) +zone = ('alz024', 0.0027559860478187401) + +[fips0107391404] +centroid = (0.58674864511310054, -1.5180617619512486) +description = Graysville-Adamsville CCD, AL +station = ('kbhm', 0.0034421937140884204) +zone = ('alz024', 0.0016331516185009039) + +[fips0107391431] +centroid = (0.58120059248686107, -1.5180243595453782) +description = Greenwood CCD, AL +station = ('keet', 0.0034802437268053365) +zone = ('alz024', 0.0045826312018839577) + +[fips0107391656] +centroid = (0.58282491806181458, -1.5160351554370028) +description = Hoover CCD, AL +station = ('kbhm', 0.0034383510994073383) +zone = ('alz024', 0.002851599977221115) + +[fips0107391791] +centroid = (0.58947675181360037, -1.5140127377129617) +description = Kimberly-Morris CCD, AL +station = ('kbhm', 0.0036282476540932264) +zone = ('alz024', 0.0044181007678442659) + +[fips0107391845] +centroid = (0.58490800343065485, -1.5116058588612917) +description = Leeds CCD, AL +station = ('kbhm', 0.0022614782126690641) +zone = ('alz025', 0.0044023180776412802) + +[fips0107392124] +centroid = (0.58547703312668264, -1.519840322272201) +description = Maytown-Sylvan Springs CCD, AL +station = ('kbhm', 0.0048204281053511556) +zone = ('alz024', 0.0026800148767960313) + +[fips0107392385] +centroid = (0.58276163242313728, -1.5215957569805643) +description = North Johns CCD, AL +station = ('keet', 0.0068298963522645997) +zone = ('alz024', 0.0050400865802820638) + +[fips0107392484] +centroid = (0.58888958814664449, -1.5123278666662565) +description = Palmerdale CCD, AL +station = ('kbhm', 0.0033699513814012465) +zone = ('alz017', 0.0043567154838505835) + +[fips0107392745] +centroid = (0.58864768551231805, -1.5183849620221328) +description = Robbins Crossroads CCD, AL +station = ('kbhm', 0.0045516721097794682) +zone = ('alz024', 0.0033500517923889038) + +[fips0107393204] +centroid = (0.58667631866889802, -1.5110467949952928) +description = Trussville CCD, AL +station = ('kbhm', 0.0026533041016120968) +zone = ('alz026', 0.0041976148041576872) + +[fips0107393366] +centroid = (0.59036405975202189, -1.5163684958708412) +description = Warrior CCD, AL +station = ('kbhm', 0.0049024642502762672) +zone = ('alz024', 0.0047360486355387194) + +[fips0107393447] +centroid = (0.58607838632045728, -1.520983233679577) +description = West Jefferson CCD, AL +station = ('kbhm', 0.0057619307665326231) +zone = ('alz024', 0.0036544967121086981) + +[fips0107456] +centroid = (0.59473277594939633, -1.5111702770398714) +description = Blountsville town, AL +station = ('k3a1', 0.0052027023723959656) +zone = ('alz017', 0.0016708633403073785) + +[fips01075] +centroid = (0.58969587790118827, -1.5374157005733211) +description = Lamar County, AL +station = ('km40', 0.0060246862606810943) +zone = ('alz012', 0.00019443966627924599) + +[fips0107588] +centroid = (0.56716987317678613, -1.5041453268005942) +description = Blue Ridge CDP, AL +station = ('kmxf', 0.0033707393510935229) +zone = ('alz043', 0.0018103277581962461) + +[fips0107592151] +centroid = (0.58653454557375839, -1.5376479340835914) +description = Millport CCD, AL +station = ('kcbm', 0.0051335481724305654) +zone = ('alz012', 0.0030242264545176094) + +[fips0107593033] +centroid = (0.59264871319617496, -1.5374360511123992) +description = Sulligent CCD, AL +station = ('km40', 0.0059849299963587611) +zone = ('alz012', 0.0030927960631858828) + +[fips0107593294] +centroid = (0.58930038629268644, -1.5376036550804686) +description = Vernon CCD, AL +station = ('km40', 0.005988452962027299) +zone = ('alz012', 0.00025856120597516339) + +[fips0107672] +centroid = (0.55263260695790484, -1.4923180682178696) +description = Blue Springs town, AL +station = ('kdhn', 0.0061058549982217127) +zone = ('alz050', 0.0039518909964166536) + +[fips01077] +centroid = (0.6091918514177882, -1.5297984903056723) +description = Lauderdale County, AL +station = ('kmsl', 0.0027873978279536649) +zone = ('alz001', 6.683472301674278e-05) + +[fips0107790657] +centroid = (0.60995932504976769, -1.5321338630178882) +description = Cloverdale CCD, AL +station = ('kmsl', 0.0043543331405755965) +zone = ('alz001', 0.0020355895044120382) + +[fips0107791143] +centroid = (0.60892621230563471, -1.5296698944463853) +description = Florence CCD, AL +station = ('kmsl', 0.002503598905286055) +zone = ('alz001', 0.00026855152251914699) + +[fips0107791782] +centroid = (0.60932781256651858, -1.5272538002562643) +description = Killen CCD, AL +station = ('kmsl', 0.0031353397126628068) +zone = ('alz001', 0.0021432872825498605) + +[fips0107791872] +centroid = (0.60952203280568051, -1.5253452478126235) +description = Lexington CCD, AL +station = ('kmsl', 0.0042040927493916828) +zone = ('alz001', 0.0037195404375146273) + +[fips0107792412] +centroid = (0.60759093070810388, -1.5324910970091865) +description = Oakland CCD, AL +station = ('kmsl', 0.0031376301506885239) +zone = ('alz002', 0.0019529609046587569) + +[fips0107792772] +centroid = (0.60883425090734711, -1.5235121110459615) +description = Rogersville CCD, AL +station = ('k9a4', 0.0041381959387345561) +zone = ('alz001', 0.0052142985619993689) + +[fips0107793384] +centroid = (0.60979950525016258, -1.5361328486665204) +description = Waterloo CCD, AL +station = ('kmsl', 0.0067844331828679763) +zone = ('msz006', 0.0047360101732979382) + +[fips01079] +centroid = (0.60265828117611753, -1.5240540532319984) +description = Lawrence County, AL +station = ('k9a4', 0.0021144213194853592) +zone = ('alz004', 0.00020694691716120991) + +[fips0107912] +centroid = (0.59688549995539109, -1.5036910699561776) +description = Boaz city, AL +station = ('k8a0', 0.0015400305241091376) +zone = ('alz018', 0.0031971688381388554) + +[fips0107991548] +centroid = (0.60330141755218492, -1.5257397969433295) +description = Hatton CCD, AL +station = ('k9a4', 0.0018405237217062594) +zone = ('alz004', 0.0017299652425277231) + +[fips0107991629] +centroid = (0.60506646902472683, -1.5216268587478348) +description = Hillsboro CCD, AL +station = ('k9a4', 0.0022780203907760001) +zone = ('alz004', 0.0031407272797090687) + +[fips0107992241] +centroid = (0.60298244117809041, -1.5216726736406996) +description = Morris Chapel CCD, AL +station = ('k9a4', 0.0028424196455620362) +zone = ('alz004', 0.0018631621674703839) + +[fips0107992250] +centroid = (0.60091989833454618, -1.5235784859174148) +description = Moulton CCD, AL +station = ('k9a4', 0.0038917703375131447) +zone = ('alz004', 0.001619907537042598) + +[fips0107992286] +centroid = (0.60046225555138077, -1.5263994441341207) +description = Mount Hope CCD, AL +station = ('k1m4', 0.0029945818126890034) +zone = ('alz004', 0.0029348602799178945) + +[fips0107992979] +centroid = (0.60009172215118223, -1.5210911822938127) +description = Speake-Oakville CCD, AL +station = ('k3a1', 0.0046793409939871961) +zone = ('alz004', 0.0033374341836976775) + +[fips0107993159] +centroid = (0.60556140949400727, -1.5243403046826178) +description = Town Creek-Courtland CCD, AL +station = ('k9a4', 0.00080520844410559981) +zone = ('alz004', 0.0030639821846178369) + +[fips01081] +centroid = (0.56904826633095251, -1.489691714212761) +description = Lee County, AL +station = ('kauo', 0.0012006640053212399) +zone = ('alz047', 6.2502429940359524e-05) + +[fips0108104] +centroid = (0.57191123462275384, -1.5363885394019374) +description = Boligee town, AL +station = ('ktcl', 0.0098819067859965606) +zone = ('alz031', 0.0018590718693435341) + +[fips0108190162] +centroid = (0.56941518689959925, -1.4907641666782341) +description = Auburn-Opelika CCD, AL +station = ('kauo', 0.00031350611241695613) +zone = ('alz047', 0.00096098356516209605) + +[fips0108190243] +centroid = (0.56739435742517763, -1.4896304531560161) +description = Beauregard-Marvyn CCD, AL +station = ('kauo', 0.0022429170690290083) +zone = ('alz047', 0.0016063998809383133) + +[fips0108190288] +centroid = (0.57035136405707643, -1.4876600287903921) +description = Beulah CCD, AL +station = ('kauo', 0.0030868106277703354) +zone = ('alz047', 0.0022107762218017829) + +[fips0108191944] +centroid = (0.56992944816369939, -1.4936794075811326) +description = Loachapoka-Roxana CCD, AL +station = ('kauo', 0.0022762494049609542) +zone = ('alz047', 0.003448962274088592) + +[fips0108192962] +centroid = (0.56859561518944768, -1.4860702432813355) +description = Smiths Station CCD, AL +station = ('kcsg', 0.0030704939364918061) +zone = ('alz047', 0.0031149318087517063) + +[fips0108248] +centroid = (0.58048041727761068, -1.5066954099173906) +description = Bon Air town, AL +station = ('keet', 0.0067885649863372189) +zone = ('alz027', 0.0031613629841298488) + +[fips01083] +centroid = (0.60755328395613839, -1.5181118179941957) +description = Limestone County, AL +station = ('kdcu', 0.0028327334509358885) +zone = ('alz005', 2.8176200603542307e-06) + +[fips0108390144] +centroid = (0.60774706786298738, -1.5179958059588159) +description = Athens CCD, AL +station = ('kdcu', 0.0030114829178799528) +zone = ('alz005', 0.00021748343380403792) + +[fips0108392232] +centroid = (0.60471185302730657, -1.515879140455167) +description = Mooresville CCD, AL +station = ('khsv', 0.0010081162199765442) +zone = ('alz005', 0.0033796006890345577) + +[fips0108392817] +centroid = (0.6095033228760991, -1.520882231475764) +description = Salem CCD, AL +station = ('kdcu', 0.0054735088498980723) +zone = ('alz005', 0.0029976000280627752) + +[fips01085] +centroid = (0.56108649316237491, -1.5123380244825033) +description = Lowndes County, AL +station = ('kmgm', 0.0045538392322834092) +zone = ('alz042', 0.00011910852636167744) + +[fips0108590270] +centroid = (0.56236063587620833, -1.5145871430230857) +description = Benton-Collirene CCD, AL +station = ('kmgm', 0.0057680182332321642) +zone = ('alz042', 0.0022327297312081298) + +[fips0108591197] +centroid = (0.55903334019020623, -1.5114405238212503) +description = Fort Deposit CCD, AL +station = ('kmgm', 0.0055519209559378967) +zone = ('alz042', 0.0022989218406436487) + +[fips0108591566] +centroid = (0.56180342205921663, -1.5094945166118616) +description = Hayneville CCD, AL +station = ('kmgm', 0.0023302781569919068) +zone = ('alz042', 0.002473117656158842) + +[fips0108591998] +centroid = (0.56387397596402755, -1.5122574251776462) +description = Lowndesboro CCD, AL +station = ('kmgm', 0.003630938143819643) +zone = ('alz042', 0.0026692881572320756) + +[fips0108592245] +centroid = (0.56011626463119113, -1.5145564077749583) +description = Mosses CCD, AL +station = ('kmgm', 0.0066526984200736888) +zone = ('alz042', 0.0021778328811593336) + +[fips0108680] +centroid = (0.5596987295142366, -1.5235737037152643) +description = Boykin CDP, AL +station = ('kgzh', 0.011938629310983344) +zone = ('alz054', 0.0013969929008513342) + +[fips01087] +centroid = (0.56526025608230157, -1.4956230236894461) +description = Macon County, AL +station = ('kauo', 0.0055371733745702058) +zone = ('alz045', 1.8416882790041054e-05) + +[fips0108791188] +centroid = (0.56397771833476606, -1.4960679953822422) +description = Fort Davis CCD, AL +station = ('kauo', 0.00675341568059009) +zone = ('alz045', 0.0013205131264642902) + +[fips0108791917] +centroid = (0.56610279632540939, -1.4925789774877503) +description = Little Texas-Society Hill CCD, AL +station = ('kauo', 0.0034043759785886488) +zone = ('alz045', 0.0027060879162726106) + +[fips0108792403] +centroid = (0.56759683307170139, -1.4954633435161813) +description = Notasulga CCD, AL +station = ('kauo', 0.004044618713295119) +zone = ('alz045', 0.0023581161447514803) + +[fips0108792898] +centroid = (0.56474578537869125, -1.499147052888733) +description = Shorter-Hardaway CCD, AL +station = ('kmxf', 0.0069703955846090087) +zone = ('alz045', 0.0030216737056545694) + +[fips0108793230] +centroid = (0.5655089829540032, -1.4970666553269405) +description = Tuskegee CCD, AL +station = ('kauo', 0.0062856865127754501) +zone = ('alz045', 0.0012519406332879366) + +[fips0108793376] +centroid = (0.56370841403118332, -1.4934109933954685) +description = Warriorstand-Creek Stand CCD, AL +station = ('kauo', 0.0058938238097953908) +zone = ('alz045', 0.0024144980095349429) + +[fips01089] +centroid = (0.6067504150469285, -1.5106013171570138) +description = Madison County, AL +station = ('kmdq', 0.0016978856844341683) +zone = ('alz006', 2.3530712349861596e-05) + +[fips0108991467] +centroid = (0.60523278144914927, -1.5085333288862033) +description = Gurley CCD, AL +station = ('kmdq', 0.0036766298266271845) +zone = ('alz006', 0.0022560534507672964) + +[fips0108991575] +centroid = (0.60978843986270492, -1.5106233083055889) +description = Hazel Green CCD, AL +station = ('kmdq', 0.0013442398203078426) +zone = ('alz006', 0.0030580402759303378) + +[fips0108991674] +centroid = (0.60701125450363913, -1.51170953141886) +description = Huntsville CCD, AL +station = ('kmdq', 0.0016534403646521843) +zone = ('alz006', 0.00096468592605008607) + +[fips0108992052] +centroid = (0.60590234211009186, -1.5140658655353925) +description = Madison CCD, AL +station = ('khua', 0.0011764663370299581) +zone = ('alz006', 0.0029771418223872061) + +[fips0108992061] +centroid = (0.60975501680752919, -1.5132941856599158) +description = Madison Crossroads CCD, AL +station = ('kmdq', 0.0024921292272356401) +zone = ('alz006', 0.0037532582378765138) + +[fips0108992349] +centroid = (0.60318528334375721, -1.5086549259751898) +description = New Hope CCD, AL +station = ('khua', 0.0040391596806138132) +zone = ('alz008', 0.0038750150371191935) + +[fips0108992358] +centroid = (0.60865156729454084, -1.5078755142911267) +description = New Market CCD, AL +station = ('kmdq', 0.0023334900401134956) +zone = ('alz006', 0.0029396866548473725) + +[fips0108992695] +centroid = (0.60445864065942723, -1.5124297589879883) +description = Redstone Arsenal CCD, AL +station = ('khua', 0.00089175350245632656) +zone = ('alz006', 0.0027312186731125671) + +[fips0108993176] +centroid = (0.60423932258562163, -1.5141641101189873) +description = Triana CCD, AL +station = ('khsv', 0.00065622413441502182) +zone = ('alz007', 0.0032332801754002979) + +[fips0109016] +centroid = (0.55120974473850903, -1.5054648829815644) +description = Brantley town, AL +station = ('k79j', 0.005270107126245583) +zone = ('alz058', 0.0027425305713372154) + +[fips0109064] +centroid = (0.57978623002092244, -1.5163860713364088) +description = Brantleyville CDP, AL +station = ('keet', 0.0015787534336805017) +zone = ('alz025', 0.0033318789268171624) + +[fips01091] +centroid = (0.56282663878649075, -1.5322435918679611) +description = Marengo County, AL +station = ('kmei', 0.014226766507887635) +zone = ('alz039', 2.3485478076146836e-05) + +[fips0109136] +centroid = (0.57499685456723226, -1.5214399514382388) +description = Brent city, AL +station = ('keet', 0.0070464400596188291) +zone = ('alz034', 0.0011515983517300064) + +[fips0109190873] +centroid = (0.56579134232039097, -1.5340085211674552) +description = Demopolis CCD, AL +station = ('ktcl', 0.014522576593076555) +zone = ('alz039', 0.0033291160318332318) + +[fips0109190882] +centroid = (0.55958886103782357, -1.5311378210670676) +description = Dixons Mill CCD, AL +station = ('kgzh', 0.015102526714196868) +zone = ('alz039', 0.0033640975103887251) + +[fips0109191080] +centroid = (0.56585267319030597, -1.5293441461947932) +description = Faunsdale CCD, AL +station = ('ktcl', 0.013888060037358395) +zone = ('alz039', 0.0038785748681676932) + +[fips0109191890] +centroid = (0.56331426632620551, -1.5325458479878216) +description = Linden CCD, AL +station = ('kmei', 0.013926781105055375) +zone = ('alz039', 0.0005617031298681105) + +[fips0109193051] +centroid = (0.55998615033545496, -1.5349450473907831) +description = Sweet Water CCD, AL +station = ('kmei', 0.012642004261465268) +zone = ('alz039', 0.0036615268350858282) + +[fips0109193123] +centroid = (0.56282962329951169, -1.5288704987423867) +description = Thomaston CCD, AL +station = ('kgzh', 0.016625005937758043) +zone = ('alz039', 0.0028293076578887405) + +[fips0109208] +centroid = (0.54295753132910696, -1.5197730747361216) +description = Brewton city, AL +station = ('kgzh', 0.0053813756304784662) +zone = ('alz059', 0.001304604965034152) + +[fips01093] +centroid = (0.59582432231688609, -1.5338224167093153) +description = Marion County, AL +station = ('k1m4', 0.0047570405559349471) +zone = ('alz011', 8.499530912833256e-05) + +[fips0109328] +centroid = (0.61000498286299987, -1.4961584383440802) +description = Bridgeport city, AL +station = ('k4a6', 0.006165529738508195) +zone = ('tnz098', 0.0034398752655274028) + +[fips0109390225] +centroid = (0.59704411547781244, -1.5310339914298663) +description = Bear Creek CCD, AL +station = ('k1m4', 0.0021586799336798176) +zone = ('alz011', 0.0026937045380550652) + +[fips0109390297] +centroid = (0.59729385464048024, -1.5381546555253229) +description = Bexar CCD, AL +station = ('km40', 0.0080074416466959421) +zone = ('msz017', 0.0034880899776354364) + +[fips0109390396] +centroid = (0.59442856506077368, -1.5310398033762758) +description = Brilliant CCD, AL +station = ('k1m4', 0.0042558733562926259) +zone = ('alz011', 0.0027487471168078934) + +[fips0109391449] +centroid = (0.5931798517941419, -1.5341815356562054) +description = Guin CCD, AL +station = ('k1m4', 0.006728274695756536) +zone = ('alz011', 0.0026252203461320017) + +[fips0109391476] +centroid = (0.59799415054955041, -1.533599555617128) +description = Hackleburg CCD, AL +station = ('k1m4', 0.0038849993632279409) +zone = ('alz011', 0.0022139330671533427) + +[fips0109391512] +centroid = (0.59586214360177681, -1.5355875903549048) +description = Hamilton CCD, AL +station = ('k1m4', 0.0060354223382319081) +zone = ('alz011', 0.0013824254121546082) + +[fips0109393492] +centroid = (0.59268375940755502, -1.5315666833708677) +description = Winfield CCD, AL +station = ('k1m4', 0.0060340115610899824) +zone = ('alz011', 0.0036723517527301945) + +[fips0109400] +centroid = (0.58362461047178593, -1.5174833074772602) +description = Brighton city, AL +station = ('kbhm', 0.0036101705350079188) +zone = ('alz024', 0.0021307271860009146) + +[fips0109424] +centroid = (0.59385443900333024, -1.5318605619103185) +description = Brilliant town, AL +station = ('k1m4', 0.0050739337034898047) +zone = ('alz011', 0.002584051628800323) + +[fips0109457] +centroid = (0.59531812447393029, -1.5051892780393821) +description = Bristow Cove CDP, AL +station = ('k8a0', 0.0020992454591595654) +zone = ('alz018', 0.0031826850677607794) + +[fips01095] +centroid = (0.59881485672371582, -1.5065973224134286) +description = Marshall County, AL +station = ('k8a0', 0.0017005541933147396) +zone = ('alz008', 0.0010239922341301107) + +[fips0109500] +centroid = (0.58367702270922328, -1.5129665524527316) +description = Brook Highland CDP, AL +station = ('kbhm', 0.0023597105827069002) +zone = ('alz025', 0.0031283316558250599) + +[fips0109590054] +centroid = (0.59775954339149739, -1.5044657168913826) +description = Albertville-Boaz CCD, AL +station = ('k8a0', 0.00088189744045683092) +zone = ('alz008', 0.0025709218119632522) + +[fips0109590108] +centroid = (0.59937212290058506, -1.509529475556779) +description = Arab CCD, AL +station = ('k8a0', 0.0039064331334553639) +zone = ('alz008', 0.0026748074299829294) + +[fips0109590918] +centroid = (0.59656629668849392, -1.5065830805267324) +description = Douglas CCD, AL +station = ('k8a0', 0.0012628557021925626) +zone = ('alz008', 0.0032557571916897641) + +[fips0109591395] +centroid = (0.60177910647201038, -1.5060285021569111) +description = Grant CCD, AL +station = ('k8a0', 0.0043988936925452651) +zone = ('alz008', 0.0019796878436704828) + +[fips0109591458] +centroid = (0.59881485672371582, -1.5065973224134286) +description = Guntersville CCD, AL +station = ('k8a0', 0.0017005541933147396) +zone = ('alz008', 0.0010239922341301107) + +[fips0109593150] +centroid = (0.60065790696052923, -1.5037825950221524) +description = Town Creek CCD, AL +station = ('k8a0', 0.0035286095358832816) +zone = ('alz008', 0.0022679349527368205) + +[fips0109593240] +centroid = (0.60069478576762392, -1.5091206147262066) +description = Union Grove CCD, AL +station = ('k8a0', 0.0044758621124601754) +zone = ('alz008', 0.0024615890113225433) + +[fips01097] +centroid = (0.53554682841855406, -1.5393205005590702) +description = Mobile County, AL +station = ('kmob', 0.00055226238512129074) +zone = ('alz063', 0.0027920176316715991) + +[fips0109736] +centroid = (0.5870984789083703, -1.5166593549906859) +description = Brookside town, AL +station = ('kbhm', 0.0024902918724806458) +zone = ('alz024', 0.0014656692149840535) + +[fips0109790216] +centroid = (0.52916778962885491, -1.5395490339713263) +description = Bayou La Batre CCD, AL +station = ('kpql', 0.0055117370839005636) +zone = ('alz063', 0.0036735019333692283) + +[fips0109790594] +centroid = (0.54153681586469105, -1.5405126826112301) +description = Citronelle CCD, AL +station = ('kmob', 0.0060301706941432902) +zone = ('alz061', 0.0021744172641073667) + +[fips0109791386] +centroid = (0.53196000227278051, -1.541394911641528) +description = Grand Bay CCD, AL +station = ('kpql', 0.0032850393150125044) +zone = ('alz063', 0.0014677084920741801) + +[fips0109792187] +centroid = (0.53738080294325719, -1.5376580744465458) +description = Mobile CCD, AL +station = ('kmob', 0.0027139312650718873) +zone = ('alz061', 0.0026543597434860724) + +[fips0109792304] +centroid = (0.54228603335269465, -1.5370318852175151) +description = Mount Vernon CCD, AL +station = ('kmob', 0.0072134641842244857) +zone = ('alz061', 0.0031276303633207179) + +[fips0109792889] +centroid = (0.53821075936245799, -1.5417428081213282) +description = Semmes CCD, AL +station = ('kmob', 0.0030908808122720845) +zone = ('alz061', 0.0027113393960152459) + +[fips0109793105] +centroid = (0.53559513913224921, -1.5414202712755594) +description = Tanner Williams CCD, AL +station = ('kmob', 0.001255885763982358) +zone = ('alz063', 0.0030282037565353697) + +[fips0109793114] +centroid = (0.53271691666278542, -1.5378046821037132) +description = Theodore CCD, AL +station = ('kbfm', 0.0020408495061563069) +zone = ('alz063', 0.0019058318139089881) + +[fips0109808] +centroid = (0.58013594164314453, -1.5241713917176098) +description = Brookwood town, AL +station = ('ktcl', 0.0042244148886829173) +zone = ('alz023', 0.0029970536007549544) + +[fips0109880] +centroid = (0.5997951034448058, -1.4928169705845522) +description = Broomtown CDP, AL +station = ('k4a9', 0.0033123515677467453) +zone = ('gaz011', 0.0032959858843711882) + +[fips01099] +centroid = (0.55118077227292583, -1.5251257028460155) +description = Monroe County, AL +station = ('kgzh', 0.0057233328411050817) +zone = ('alz055', 0.00031032110297817152) + +[fips0109990234] +centroid = (0.55423715795243333, -1.5202313807444026) +description = Beatrice CCD, AL +station = ('kgzh', 0.0059648492286840269) +zone = ('alz055', 0.0050663672232191771) + +[fips0109991233] +centroid = (0.54795945297910498, -1.525813833810199) +description = Frisco City CCD, AL +station = ('kgzh', 0.0055637122822233013) +zone = ('alz055', 0.0031667804063713416) + +[fips0109992196] +centroid = (0.55013381906782455, -1.5256472246798036) +description = Monroeville CCD, AL +station = ('kgzh', 0.0057007612520907974) +zone = ('alz055', 0.0011248388484599988) + +[fips0109992520] +centroid = (0.5518901438941064, -1.5230497209672305) +description = Peterman CCD, AL +station = ('kgzh', 0.0047836733839928206) +zone = ('alz055', 0.0017461122801940014) + +[fips0109993267] +centroid = (0.5467244754536863, -1.5288931880226626) +description = Uriah CCD, AL +station = ('kgzh', 0.0083379399285479997) +zone = ('alz055', 0.005517549617584952) + +[fips0109993339] +centroid = (0.55333560812731564, -1.5259445938777585) +description = Vredenburgh CCD, AL +station = ('kgzh', 0.0075552197676632933) +zone = ('alz055', 0.002513865308037792) + +[fips01101] +centroid = (0.56205974111316448, -1.5045406787827558) +description = Montgomery County, AL +station = ('kmgm', 0.0033484251129740992) +zone = ('alz044', 0.00029414798773987283) + +[fips0110191665] +centroid = (0.56197828659697391, -1.5069934248871686) +description = Hope Hull CCD, AL +station = ('kmgm', 0.0019449509353518981) +zone = ('alz044', 0.0020532849505685729) + +[fips0110192214] +centroid = (0.56511399749098445, -1.5061739578967721) +description = Montgomery CCD, AL +station = ('kmxf', 0.0010240588532340095) +zone = ('alz044', 0.0030664408471513943) + +[fips0110192295] +centroid = (0.56481477824402249, -1.5019393004392434) +description = Mount Meigs CCD, AL +station = ('kmxf', 0.0046131750089908807) +zone = ('alz044', 0.0033415134610439491) + +[fips0110192565] +centroid = (0.56271764297470372, -1.5029995006933674) +description = Pike Road CCD, AL +station = ('kmxf', 0.0044569154869509705) +zone = ('alz044', 0.0014085490890087314) + +[fips0110192592] +centroid = (0.55961765897048144, -1.5022433891548184) +description = Pine Level CCD, AL +station = ('ktoi', 0.0035363509892698945) +zone = ('alz044', 0.0033854773584676159) + +[fips0110192673] +centroid = (0.55943912924129491, -1.5052950973519306) +description = Ramer CCD, AL +station = ('ktoi', 0.0047193016314545947) +zone = ('alz044', 0.0029673071315714119) + +[fips0110240] +centroid = (0.55357723150896176, -1.4977988034948597) +description = Brundidge city, AL +station = ('kprn', 0.00227569341614742) +zone = ('alz049', 0.0023535524545473356) + +[fips01103] +centroid = (0.60134418787570598, -1.5157556584105885) +description = Morgan County, AL +station = ('k3a1', 0.0032486451446958487) +zone = ('alz007', 9.5080832379012889e-05) + +[fips0110390837] +centroid = (0.60052201562496887, -1.5194444117846784) +description = Danville CCD, AL +station = ('k3a1', 0.0037583568883480362) +zone = ('alz007', 0.0030568866637531601) + +[fips0110390864] +centroid = (0.60343736124762271, -1.5190045190000059) +description = Decatur CCD, AL +station = ('kdcu', 0.0017737947350094326) +zone = ('alz007', 0.003335926861460576) + +[fips0110391035] +centroid = (0.59962256019495375, -1.5132136387149362) +description = Eva CCD, AL +station = ('k3a1', 0.0027346510027335359) +zone = ('alz007', 0.0027758321808297451) + +[fips0110391071] +centroid = (0.59987177575884598, -1.5167487682082657) +description = Falkville CCD, AL +station = ('k3a1', 0.001886546360609323) +zone = ('alz007', 0.0016261698815399404) + +[fips0110391539] +centroid = (0.60154572104443371, -1.517183145752502) +description = Hartselle CCD, AL +station = ('kdcu', 0.0032261307427912775) +zone = ('alz007', 0.001105339878650066) + +[fips0110391809] +centroid = (0.60208385841270118, -1.5120893848772643) +description = Laceys Spring CCD, AL +station = ('khua', 0.003257305370169934) +zone = ('alz007', 0.0032064653594414531) + +[fips0110392970] +centroid = (0.60217414429490679, -1.5149488101506841) +description = Somerville CCD, AL +station = ('khsv', 0.0025937552202209171) +zone = ('alz007', 0.0011371554968402755) + +[fips0110456] +centroid = (0.54134519616611454, -1.5363494440266927) +description = Bucks CDP, AL +station = ('kmob', 0.0065948581885916999) +zone = ('alz061', 0.0028770914896936164) + +[fips01105] +centroid = (0.56965810182489174, -1.523564697816324) +description = Perry County, AL +station = ('ktcl', 0.011136243877471001) +zone = ('alz033', 1.0379704367637049e-05) + +[fips0110591503] +centroid = (0.56806320250112685, -1.5237351117644888) +description = Hamburg CCD, AL +station = ('ktcl', 0.012546257729566241) +zone = ('alz033', 0.0015920855174627565) + +[fips0110591602] +centroid = (0.57197431082192107, -1.5245139649431911) +description = Heiberger CCD, AL +station = ('ktcl', 0.0087035375113129823) +zone = ('alz033', 0.0024566333784597685) + +[fips0110592115] +centroid = (0.56998426895550458, -1.5250010339775455) +description = Marion CCD, AL +station = ('ktcl', 0.01037269766092596) +zone = ('alz033', 0.0012496477456534366) + +[fips0110592997] +centroid = (0.57046034241557098, -1.5205946535749129) +description = Sprott CCD, AL +station = ('keet', 0.010025395108961072) +zone = ('alz033', 0.0026338605666710465) + +[fips0110593258] +centroid = (0.56644648656171204, -1.5265453362062951) +description = Uniontown CCD, AL +station = ('ktcl', 0.013479439954019528) +zone = ('alz033', 0.0040673359519623432) + +[fips01107] +centroid = (0.58113894745768069, -1.537580581827757) +description = Pickens County, AL +station = ('ktcl', 0.0071468066529975652) +zone = ('alz022', 0.00030221353682656417) + +[fips0110790072] +centroid = (0.5784662724142241, -1.5378303209904249) +description = Aliceville CCD, AL +station = ('ktcl', 0.0073352170480393206) +zone = ('alz022', 0.002417415234658779) + +[fips0110790495] +centroid = (0.58081094773135333, -1.5388067803470382) +description = Carrollton CCD, AL +station = ('kgtr', 0.0067688345790579843) +zone = ('alz022', 0.0011455388286850765) + +[fips0110791008] +centroid = (0.58362164341205747, -1.5392941111807799) +description = Ethelsville CCD, AL +station = ('kcbm', 0.0052256971780133771) +zone = ('alz022', 0.0031659685877907539) + +[fips0110791359] +centroid = (0.58289396328702359, -1.5340208780985596) +description = Gordo CCD, AL +station = ('ktcl', 0.0051169973565511756) +zone = ('alz022', 0.0035043960355982703) + +[fips0110792700] +centroid = (0.5833187240670813, -1.5362077756513084) +description = Reform CCD, AL +station = ('ktcl', 0.0068632027739940708) +zone = ('alz022', 0.002663600875426545) + +[fips01109] +centroid = (0.55499246663952639, -1.4999708133890892) +description = Pike County, AL +station = ('kprn', 0.00029371675646251081) +zone = ('alz049', 6.6155825983802981e-05) + +[fips0110990198] +centroid = (0.55581388839868506, -1.4973680736887602) +description = Banks-Josie CCD, AL +station = ('kprn', 0.0025727410424354153) +zone = ('alz049', 0.0023221589453028654) + +[fips0110990432] +centroid = (0.55306550097227702, -1.4976854967198203) +description = Brundidge CCD, AL +station = ('kprn', 0.0026464236599041012) +zone = ('alz049', 0.0027709745063775322) + +[fips0110991377] +centroid = (0.55614077111429105, -1.5028019643286266) +description = Goshen-Shady Grove CCD, AL +station = ('ktoi', 0.0012981861792029567) +zone = ('alz049', 0.0026531950150710812) + +[fips0110991620] +centroid = (0.55308201178700089, -1.501643624210663) +description = Henderson-Spring Hill CCD, AL +station = ('kprn', 0.0020965819833333827) +zone = ('alz049', 0.0024431890706117197) + +[fips0110992340] +centroid = (0.55750574076239823, -1.5001616127829172) +description = Needmore CCD, AL +station = ('ktoi', 0.00162912944555687) +zone = ('alz049', 0.0024556316771796862) + +[fips0110993195] +centroid = (0.55484400893335173, -1.5001155884505422) +description = Troy CCD, AL +station = ('kprn', 0.00012027304795248926) +zone = ('alz049', 0.00025416745123495958) + +[fips0111032] +centroid = (0.56016539564963475, -1.5396242227555024) +description = Butler town, AL +station = ('kmei', 0.0089408364664927895) +zone = ('alz051', 0.0015090234019805024) + +[fips01111] +centroid = (0.58113311805797896, -1.491629378748325) +description = Randolph County, AL +station = ('kctj', 0.0074024726103449892) +zone = ('alz029', 8.621125760314371e-05) + +[fips0111191161] +centroid = (0.58340164465984357, -1.4926524034893816) +description = Folsom CCD, AL +station = ('kanb', 0.0054943823550931371) +zone = ('alz029', 0.0024938579697975911) + +[fips0111192736] +centroid = (0.57930090631582032, -1.4893023487099335) +description = Roanoke CCD, AL +station = ('klgc', 0.0049410016220634897) +zone = ('alz029', 0.0025882185874592225) + +[fips0111193348] +centroid = (0.57874179008994386, -1.4934374351336361) +description = Wadley CCD, AL +station = ('kalx', 0.0071879617661530192) +zone = ('alz029', 0.0028301104640454872) + +[fips0111193411] +centroid = (0.58084431842665141, -1.4924081970204426) +description = Wedowee CCD, AL +station = ('kanb', 0.0072633085513705018) +zone = ('alz029', 0.00076295642063942473) + +[fips0111193501] +centroid = (0.58237327921127602, -1.4894285709214379) +description = Woodland CCD, AL +station = ('kctj', 0.0053356856002557641) +zone = ('alz029', 0.0021854064945438321) + +[fips01113] +centroid = (0.56356351679668271, -1.4867932808305593) +description = Russell County, AL +station = ('kcsg', 0.0052793261387220616) +zone = ('alz048', 3.934831560439657e-05) + +[fips0111390738] +centroid = (0.56250548075083129, -1.4861356756749928) +description = Cottonton-Seale CCD, AL +station = ('keuf', 0.0048553324778489405) +zone = ('alz048', 0.0011593023907493785) + +[fips0111390783] +centroid = (0.5659870111828319, -1.4872605752844881) +description = Crawford CCD, AL +station = ('kcsg', 0.0041763004448639078) +zone = ('alz048', 0.0024848054807790915) + +[fips0111391683] +centroid = (0.56319640424181827, -1.4896238907180286) +description = Hurtsboro CCD, AL +station = ('kauo', 0.0061971009858531895) +zone = ('alz048', 0.0024479406003659995) + +[fips0111392538] +centroid = (0.56523236572085467, -1.4839178334346059) +description = Phenix City CCD, AL +station = ('kcsg', 0.0025255028537993474) +zone = ('alz048', 0.0029363754808634261) + +[fips0111416] +centroid = (0.5780695765285383, -1.5139795066440038) +description = Calera city, AL +station = ('keet', 0.001226918054212032) +zone = ('alz025', 0.0027861826100307784) + +[fips0111488] +centroid = (0.54374811312038285, -1.5360723031947685) +description = Calvert CDP, AL +station = ('kmob', 0.0088742640837202822) +zone = ('alz061', 0.0047995106895229178) + +[fips01115] +centroid = (0.58840220495302509, -1.5064925153918463) +description = St. Clair County, AL +station = ('kgad', 0.0055632974901303122) +zone = ('alz026', 4.9773505399532032e-05) + +[fips0111512] +centroid = (0.55848469593984185, -1.5234939770750333) +description = Camden city, AL +station = ('kgzh', 0.010766113181518735) +zone = ('alz054', 0.00032023292852303097) + +[fips0111590135] +centroid = (0.5912888922693611, -1.5051961022767573) +description = Ashville CCD, AL +station = ('kgad', 0.0027595284206204636) +zone = ('alz026', 0.0030315352315737104) + +[fips0111592223] +centroid = (0.58631119578938073, -1.5087555092999823) +description = Moody CCD, AL +station = ('kbhm', 0.0044542459973872309) +zone = ('alz026', 0.0028593041324912771) + +[fips0111592511] +centroid = (0.58575543059566826, -1.5060840908935871) +description = Pell City CCD, AL +station = ('kanb', 0.0064427889524108304) +zone = ('alz026', 0.0027141977905573676) + +[fips0111592646] +centroid = (0.589000748166704, -1.504488580704584) +description = Ragland CCD, AL +station = ('kgad', 0.0041911033069251639) +zone = ('alz026', 0.0017419568070729165) + +[fips0111592988] +centroid = (0.5889754932524276, -1.5086411204208063) +description = Springville CCD, AL +station = ('kbhm', 0.0054972368319942478) +zone = ('alz026', 0.001875988654633211) + +[fips0111680] +centroid = (0.57243022572912683, -1.4949789448355826) +description = Camp Hill town, AL +station = ('kauo', 0.0045486312154051026) +zone = ('alz037', 0.00236161041422138) + +[fips01117] +centroid = (0.58054776953344511, -1.5128183041860672) +description = Shelby County, AL +station = ('keet', 0.0020714215473357036) +zone = ('alz025', 0.00025509987909950186) + +[fips0111790036] +centroid = (0.58072951066845524, -1.5150586611738044) +description = Alabaster-Helena CCD, AL +station = ('keet', 0.0016069798555548792) +zone = ('alz025', 0.0021330051321914291) + +[fips0111790450] +centroid = (0.57781022060169196, -1.5135941903050412) +description = Calera CCD, AL +station = ('keet', 0.0016144406969080521) +zone = ('alz025', 0.0029054096321597094) + +[fips0111790558] +centroid = (0.58329908911299633, -1.510811053373226) +description = Chelsea CCD, AL +station = ('kbhm', 0.0037285169444912745) +zone = ('alz025', 0.0030764643663032487) + +[fips0111790711] +centroid = (0.57893386357412591, -1.5112680329312755) +description = Columbiana CCD, AL +station = ('keet', 0.0028436391665116658) +zone = ('alz025', 0.001941530590694944) + +[fips0111792205] +centroid = (0.57849234763324897, -1.5167782468193318) +description = Montevallo CCD, AL +station = ('keet', 0.0018981659441834014) +zone = ('alz034', 0.0041267594536586417) + +[fips0111793321] +centroid = (0.58218715729984338, -1.5087433443550957) +description = Vincent CCD, AL +station = ('kbhm', 0.0057600643577191083) +zone = ('alz025', 0.0035415869215969262) + +[fips0111793474] +centroid = (0.58035899472154939, -1.5100278194181009) +description = Wilsonville CCD, AL +station = ('keet', 0.0040528944329626254) +zone = ('alz025', 0.0020902565092056863) + +[fips01119] +centroid = (0.56893337130629373, -1.5393813950966724) +description = Sumter County, AL +station = ('kmei', 0.0093185632621732364) +zone = ('alz030', 0.00011461499921897461) + +[fips0111990261] +centroid = (0.56768802652511818, -1.5355187022093286) +description = Belmont CCD, AL +station = ('ktcl', 0.013169080426911849) +zone = ('alz030', 0.0034294411588484688) + +[fips0111990801] +centroid = (0.56513837974063474, -1.541818101625259) +description = Cuba CCD, AL +station = ('kmei', 0.0061043269504113427) +zone = ('alz030', 0.0042258026640852753) + +[fips0111991287] +centroid = (0.57218347107947998, -1.5397598348383821) +description = Gainesville CCD, AL +station = ('kmei', 0.011053105339492039) +zone = ('alz030', 0.0033800534222005207) + +[fips0111991935] +centroid = (0.56945567853824552, -1.5393913609267011) +description = Livingston CCD, AL +station = ('kmei', 0.0095794796629536036) +zone = ('alz030', 0.00063599011745955176) + +[fips0111992493] +centroid = (0.57452573784224148, -1.5406218355026498) +description = Panola-Geiger CCD, AL +station = ('kgtr', 0.010346157366709432) +zone = ('msz039', 0.0055099432318449658) + +[fips0111993510] +centroid = (0.56604961614310101, -1.5390940091820391) +description = York CCD, AL +station = ('kmei', 0.0085250080708952607) +zone = ('alz030', 0.0027796682252393722) + +[fips0112016] +centroid = (0.59157919288384531, -1.5275484292872936) +description = Carbon Hill city, AL +station = ('kjfx', 0.0030735900072831773) +zone = ('alz015', 0.0036292001673528568) + +[fips0112040] +centroid = (0.58725421463752581, -1.5172244402426041) +description = Cardiff town, AL +station = ('kbhm', 0.0029771611814900156) +zone = ('alz024', 0.0016951129290560286) + +[fips0112070] +centroid = (0.59540949246027208, -1.5031486390779503) +description = Carlisle-Rockledge CDP, AL +station = ('kgad', 0.0026457631062914871) +zone = ('alz018', 0.0017669362971329378) + +[fips01121] +centroid = (0.58240375266001576, -1.504051532806592) +description = Talladega County, AL +station = ('kanb', 0.0060377430975391069) +zone = ('alz027', 0.00023636280560754435) + +[fips0112112] +centroid = (0.54713577974521133, -1.5330215723820377) +description = Carlton CDP, AL +station = ('kgzh', 0.011766596528673623) +zone = ('alz053', 0.0056261492937572394) + +[fips0112160] +centroid = (0.5451387565617869, -1.5100763395713064) +description = Carolina town, AL +station = ('k79j', 0.0023534792036035254) +zone = ('alz060', 0.0010712863808137406) + +[fips0112190576] +centroid = (0.58049855124853889, -1.5069236815302589) +description = Childersburg CCD, AL +station = ('keet', 0.0066049806607963151) +zone = ('alz027', 0.0032942753847415652) + +[fips0112191879] +centroid = (0.58666626557240642, -1.5028630683057389) +description = Lincoln CCD, AL +station = ('kanb', 0.0037832864541568743) +zone = ('alz026', 0.0034960527466117832) + +[fips0112192322] +centroid = (0.58536575093357546, -1.4995325612139134) +description = Munford CCD, AL +station = ('kanb', 0.0012431320651883652) +zone = ('alz019', 0.0042654149789483021) + +[fips0112192709] +centroid = (0.58260048617330074, -1.5059043219806316) +description = Renfroe-Laniers CCD, AL +station = ('kanb', 0.0072157109868265937) +zone = ('alz027', 0.0016915321408718124) + +[fips0112193060] +centroid = (0.58121579430464587, -1.5041528491696705) +description = Sycamore-Winterboro CCD, AL +station = ('kanb', 0.0068970318676716269) +zone = ('alz027', 0.0013940580965801324) + +[fips0112193069] +centroid = (0.57889862537652814, -1.5066312516140872) +description = Sylacauga CCD, AL +station = ('kalx', 0.0068906137882176859) +zone = ('alz036', 0.004203245565955937) + +[fips0112193078] +centroid = (0.58369817609975738, -1.5024979803328069) +description = Talladega CCD, AL +station = ('kanb', 0.0042230928239963038) +zone = ('alz027', 0.0015982200256915919) + +[fips01123] +centroid = (0.57357399234783635, -1.4974846965893784) +description = Tallapoosa County, AL +station = ('kalx', 0.0025546045425466888) +zone = ('alz037', 3.4523694461855028e-05) + +[fips0112304] +centroid = (0.580529740282272, -1.5375490437281736) +description = Carrollton town, AL +station = ('ktcl', 0.0070281032350640125) +zone = ('alz022', 0.0003443307132368055) + +[fips0112390063] +centroid = (0.57480474617646526, -1.5000597553677706) +description = Alexander City CCD, AL +station = ('kalx', 0.00040579724999589329) +zone = ('alz037', 0.0025223828757633049) + +[fips0112390468] +centroid = (0.57201244626607706, -1.4948453747879276) +description = Camp Hill CCD, AL +station = ('kauo', 0.0041836415516012214) +zone = ('alz037', 0.0026782568859162531) + +[fips0112390819] +centroid = (0.57326173549136206, -1.4968726096207039) +description = Dadeville CCD, AL +station = ('kalx', 0.0031477372537966003) +zone = ('alz037', 0.00056707017569477506) + +[fips0112392367] +centroid = (0.57642324235171705, -1.4962935268281847) +description = New Site CCD, AL +station = ('kalx', 0.0039117360558188962) +zone = ('alz037', 0.0030257107311517629) + +[fips0112393096] +centroid = (0.56939525523954149, -1.4976564195344821) +description = Tallassee CCD, AL +station = ('kalx', 0.005551847302882767) +zone = ('alz037', 0.0041654846671628481) + +[fips0112496] +centroid = (0.54628243591403369, -1.5189448461928801) +description = Castleberry town, AL +station = ('kgzh', 0.0020653953491070148) +zone = ('alz056', 0.0023234660641616002) + +[fips01125] +centroid = (0.58102363355400133, -1.5275620777620442) +description = Tuscaloosa County, AL +station = ('ktcl', 0.0018766338813036316) +zone = ('alz023', 3.3539114411191586e-05) + +[fips0112544] +centroid = (0.56175464010662324, -1.5266391127470045) +description = Catherine CDP, AL +station = ('kgzh', 0.01480478211894444) +zone = ('alz054', 0.0041881982909484985) + +[fips0112590018] +centroid = (0.58075417217078595, -1.5214178730232009) +description = Abernant CCD, AL +station = ('ktcl', 0.0065863429089952482) +zone = ('alz034', 0.0048634820307183347) + +[fips0112590306] +centroid = (0.57694692839377804, -1.526772420995272) +description = Big Sandy-Duncanville CCD, AL +station = ('ktcl', 0.0034543038297761004) +zone = ('alz023', 0.0041229780997677698) + +[fips0112590423] +centroid = (0.58161601575542077, -1.5242197547911827) +description = Brookwood CCD, AL +station = ('ktcl', 0.0045664268247106125) +zone = ('alz023', 0.0028885248711374239) + +[fips0112590666] +centroid = (0.57896765314844456, -1.5238933956743521) +description = Coaling-Vance CCD, AL +station = ('ktcl', 0.0045067856443756476) +zone = ('alz023', 0.0037130421791161171) + +[fips0112590684] +centroid = (0.57945938221190141, -1.5313123539922671) +description = Coker CCD, AL +station = ('ktcl', 0.001790106514777732) +zone = ('alz023', 0.0034714896376769264) + +[fips0112590981] +centroid = (0.58232790065072415, -1.5328012594705585) +description = Elrod-Moores Bridge-Echola CCD, AL +station = ('ktcl', 0.003970063502393483) +zone = ('alz023', 0.0045413824716452099) + +[fips0112591224] +centroid = (0.57724380889954219, -1.5312466947058072) +description = Fosters CCD, AL +station = ('ktcl', 0.0030283017852648932) +zone = ('alz023', 0.0048489798524810421) + +[fips0112592389] +centroid = (0.58100633734111407, -1.5297271936057282) +description = Northport CCD, AL +station = ('ktcl', 0.001340886729098551) +zone = ('alz023', 0.0017786263658883289) + +[fips0112592826] +centroid = (0.58425251012348334, -1.5302547193721436) +description = Samantha CCD, AL +station = ('ktcl', 0.0045976352992482305) +zone = ('alz023', 0.003926951190917384) + +[fips0112593222] +centroid = (0.5794743047770059, -1.5280043092879145) +description = Tuscaloosa CCD, AL +station = ('ktcl', 0.0010345850897948696) +zone = ('alz023', 0.0015739326508176659) + +[fips0112593483] +centroid = (0.58389363552268836, -1.5266613831482601) +description = Windham Springs CCD, AL +station = ('ktcl', 0.0046633580933806273) +zone = ('alz023', 0.0029868154341474449) + +[fips01127] +centroid = (0.58977417337143279, -1.5236914959864813) +description = Walker County, AL +station = ('kjfx', 0.0018968433129723495) +zone = ('alz015', 0.00021365511521673298) + +[fips0112760] +centroid = (0.59727648861442284, -1.4938022613071806) +description = Cedar Bluff town, AL +station = ('k4a9', 0.0047996674187854157) +zone = ('alz020', 0.0008227033618481589) + +[fips0112790477] +centroid = (0.59217185433794506, -1.5284611492196241) +description = Carbon Hill CCD, AL +station = ('kjfx', 0.0038623619322569564) +zone = ('alz013', 0.0043402381888644403) + +[fips0112790729] +centroid = (0.58869889347257165, -1.5217023442379836) +description = Cordova CCD, AL +station = ('kjfx', 0.003461549158710199) +zone = ('alz015', 0.0020489749459642751) + +[fips0112790891] +centroid = (0.58908468105043243, -1.5199718328313385) +description = Dora CCD, AL +station = ('kjfx', 0.0041266953446364562) +zone = ('alz015', 0.0031661837216844877) + +[fips0112790990] +centroid = (0.59065785102501001, -1.5188545603106745) +description = Empire CCD, AL +station = ('kjfx', 0.0042661443815643716) +zone = ('alz015', 0.0040208061552087383) + +[fips0112791755] +centroid = (0.59059158087331187, -1.5229219977725696) +description = Jasper CCD, AL +station = ('kjfx', 0.0013211922660608779) +zone = ('alz015', 0.00084538215676909748) + +[fips0112792079] +centroid = (0.59255713577032276, -1.5237835621045241) +description = Manchester CCD, AL +station = ('kjfx', 0.000892072241198689) +zone = ('alz015', 0.0025798550440175438) + +[fips0112792331] +centroid = (0.59248798582535878, -1.526526905529394) +description = Nauvoo CCD, AL +station = ('kjfx', 0.0023706072693165134) +zone = ('alz015', 0.0034771234506779129) + +[fips0112792421] +centroid = (0.58759298304533791, -1.5247459715606588) +description = Oakman CCD, AL +station = ('kjfx', 0.0041415936728489231) +zone = ('alz015', 0.0025630825166228495) + +[fips0112792502] +centroid = (0.58836330156399819, -1.523109481040819) +description = Parrish CCD, AL +station = ('kjfx', 0.0033596750201608655) +zone = ('alz015', 0.0016732213410155866) + +[fips0112792642] +centroid = (0.58722642899583399, -1.5208676230699247) +description = Quinton-Wegra CCD, AL +station = ('kjfx', 0.0050841593001337178) +zone = ('alz015', 0.0035841714600083948) + +[fips0112792943] +centroid = (0.5917760834767628, -1.521070151076326) +description = Sipsey CCD, AL +station = ('kjfx', 0.0023073069658860958) +zone = ('alz015', 0.0027796184633076615) + +[fips0112793168] +centroid = (0.59065619296222061, -1.5259882794689359) +description = Townley CCD, AL +station = ('kjfx', 0.0020449795208065122) +zone = ('alz015', 0.0020760576660872826) + +[fips01129] +centroid = (0.54815510438825354, -1.5394166682008552) +description = Washington County, AL +station = ('kmob', 0.012638556568922443) +zone = ('alz052', 7.5873783447556677e-05) + +[fips0112990549] +centroid = (0.55038057371747151, -1.539718138922552) +description = Chatom CCD, AL +station = ('kmob', 0.014856850825237761) +zone = ('alz052', 0.0022203004625845064) + +[fips0112991242] +centroid = (0.54585624396398924, -1.5413185011268757) +description = Fruitdale CCD, AL +station = ('kmob', 0.010396288999198137) +zone = ('alz052', 0.0027828055072723367) + +[fips0112992043] +centroid = (0.54505171699198995, -1.5371539535453995) +description = McIntosh CCD, AL +station = ('kmob', 0.009826195125015905) +zone = ('alz052', 0.0037069481607959688) + +[fips0112992160] +centroid = (0.55197194747614742, -1.5418511930678769) +description = Millry CCD, AL +station = ('kmei', 0.013751830366614795) +zone = ('alz052', 0.0042981907218242084) + +[fips0112993357] +centroid = (0.54833782290764488, -1.5367698414836206) +description = Wagarville CCD, AL +station = ('kmob', 0.013101262146287949) +zone = ('alz052', 0.0023398894288797164) + +[fips01131] +centroid = (0.55833658729951763, -1.5237109215010562) +description = Wilcox County, AL +station = ('kgzh', 0.010689758687714846) +zone = ('alz054', 9.0908397720841373e-05) + +[fips0113190045] +centroid = (0.56099734174418303, -1.5256124577211039) +description = Alberta CCD, AL +station = ('kgzh', 0.013759274272445747) +zone = ('alz054', 0.003082816784782734) + +[fips0113190459] +centroid = (0.55878477039813712, -1.5234472546109574) +description = Camden CCD, AL +station = ('kgzh', 0.011036903969580318) +zone = ('alz054', 0.00056256853832808214) + +[fips0113190756] +centroid = (0.5565333305696496, -1.5243734833916982) +description = Coy-Fatama CCD, AL +station = ('kgzh', 0.0092721950473145624) +zone = ('alz054', 0.0018453100365619902) + +[fips0113192574] +centroid = (0.55770233464934293, -1.5185336117145252) +description = Pine Apple CCD, AL +station = ('kgzh', 0.0094012503744586758) +zone = ('alz054', 0.0045226715752672139) + +[fips0113192583] +centroid = (0.55806838255336366, -1.5282067151212682) +description = Pine Hill CCD, AL +station = ('kgzh', 0.012339341687608607) +zone = ('alz054', 0.0037329218419350453) + +[fips0113264] +centroid = (0.5871968805715978, -1.5129311048156235) +description = Center Point city, AL +station = ('kbhm', 0.0016498111317716751) +zone = ('alz024', 0.0034551289383339665) + +[fips01133] +centroid = (0.59613270454242095, -1.5247920133463266) +description = Winston County, AL +station = ('k1m4', 0.0040406603605237512) +zone = ('alz014', 0.0001807296599993724) + +[fips0113390027] +centroid = (0.59640064748918709, -1.522264444976881) +description = Addison CCD, AL +station = ('kjfx', 0.0049123182557534685) +zone = ('alz014', 0.0022623957985301096) + +[fips0113390909] +centroid = (0.59560947228596561, -1.5250985804294392) +description = Double Springs CCD, AL +station = ('kjfx', 0.0040770652460372231) +zone = ('alz014', 0.00042266063200441462) + +[fips0113391494] +centroid = (0.5971138762880146, -1.5278919624439635) +description = Haleyville CCD, AL +station = ('k1m4', 0.0014589255661969463) +zone = ('alz014', 0.0026633800662926635) + +[fips0113392025] +centroid = (0.59450193870252754, -1.5279321922832221) +description = Lynn CCD, AL +station = ('k1m4', 0.0038874640576910115) +zone = ('alz014', 0.0028903066130958675) + +[fips0113648] +centroid = (0.59612354156384806, -1.4952033592708041) +description = Centre city, AL +station = ('k4a9', 0.0056058913444525516) +zone = ('alz020', 0.0010059730679974532) + +[fips0113672] +centroid = (0.5752395425997221, -1.5207456071019179) +description = Centreville city, AL +station = ('keet', 0.0064349126821232876) +zone = ('alz034', 0.00070003518219710517) + +[fips0114008] +centroid = (0.54924019303751093, -1.540183583327474) +description = Chatom town, AL +station = ('kmob', 0.013716311743572313) +zone = ('alz052', 0.0012189983293637234) + +[fips0114104] +centroid = (0.58164840906633775, -1.5120952491835506) +description = Chelsea city, AL +station = ('keet', 0.0032835518186957124) +zone = ('alz025', 0.0011324477228913186) + +[fips0114152] +centroid = (0.60663630542043312, -1.5352891565061062) +description = Cherokee town, AL +station = ('kmsl', 0.0052441836751602388) +zone = ('alz002', 0.0025118481062461392) + +[fips0114392] +centroid = (0.53706311811280916, -1.5372807168089719) +description = Chickasaw city, AL +station = ('kbfm', 0.002418508765149392) +zone = ('alz061', 0.003090432688246192) + +[fips0114464] +centroid = (0.58106697007932828, -1.5069554639759377) +description = Childersburg city, AL +station = ('kbhm', 0.0076257064541975289) +zone = ('alz027', 0.0029883228314486663) + +[fips0114728] +centroid = (0.58772821115578244, -1.4957920937340867) +description = Choccolocco CDP, AL +station = ('kanb', 0.0026670798464428335) +zone = ('alz019', 0.002466731433848705) + +[fips0114968] +centroid = (0.53978139860962016, -1.5395233950846146) +description = Chunchula CDP, AL +station = ('kmob', 0.0042728594439193877) +zone = ('alz061', 0.00035256737909030133) + +[fips0115064] +centroid = (0.54274903429666366, -1.5402474449248045) +description = Citronelle city, AL +station = ('kmob', 0.0072279888994449615) +zone = ('alz061', 0.0031794329625684297) + +[fips0115136] +centroid = (0.5731958667653918, -1.5118566975813883) +description = Clanton city, AL +station = ('keet', 0.0064076376778757589) +zone = ('alz035', 0.0014087793734875484) + +[fips0115256] +centroid = (0.58813466343198684, -1.51158915606035) +description = Clay city, AL +station = ('kbhm', 0.0030825793143329588) +zone = ('alz024', 0.0048863377729551237) + +[fips0115304] +centroid = (0.54518718944852973, -1.4961220307758838) +description = Clayhatchee town, AL +station = ('kozr', 0.00081315276216585325) +zone = ('alz068', 0.003035822570297319) + +[fips0115376] +centroid = (0.55645311523722796, -1.4915678209856074) +description = Clayton town, AL +station = ('keuf', 0.0050146724222467024) +zone = ('alz050', 0.0010228292623546778) + +[fips0115472] +centroid = (0.59341159661222165, -1.5108114024390764) +description = Cleveland town, AL +station = ('k8a0', 0.005976026471979143) +zone = ('alz017', 0.00033872753221658269) + +[fips0115640] +centroid = (0.55341800512130235, -1.4941945066032738) +description = Clio city, AL +station = ('kprn', 0.0051975947501734744) +zone = ('alz050', 0.0042834535859728037) + +[fips0116000] +centroid = (0.57892403737043729, -1.5245431643015772) +description = Coaling town, AL +station = ('ktcl', 0.0039809580307894419) +zone = ('alz023', 0.0033004109461979877) + +[fips0116080] +centroid = (0.59476328430472125, -1.4987872707167267) +description = Coats Bend CDP, AL +station = ('kgad', 0.0035903214891620642) +zone = ('alz018', 0.0023890575988812506) + +[fips0116240] +centroid = (0.54394645233657946, -1.4994280334450114) +description = Coffee Springs town, AL +station = ('kozr', 0.0035509306752244205) +zone = ('alz068', 0.0016377682881676789) + +[fips0116264] +centroid = (0.5544311512987925, -1.5373915801230587) +description = Coffeeville town, AL +station = ('kmei', 0.013939854299484853) +zone = ('alz053', 0.0041397062581873256) + +[fips0116312] +centroid = (0.58021236961108935, -1.5303255797397746) +description = Coker town, AL +station = ('ktcl', 0.001053796322564887) +zone = ('alz023', 0.002415393702153486) + +[fips0116600] +centroid = (0.59799943889718399, -1.4986805438329673) +description = Collinsville town, AL +station = ('k4a9', 0.0042423266688202347) +zone = ('alz010', 0.0035589410797461918) + +[fips0116684] +centroid = (0.59238539537192658, -1.5167236529203296) +description = Colony town, AL +station = ('k3a1', 0.0057492195871697242) +zone = ('alz016', 0.0033670535902658961) + +[fips0116744] +centroid = (0.54620691551729994, -1.485453251937463) +description = Columbia town, AL +station = ('kbij', 0.0037562023955795823) +zone = ('gaz142', 0.0031166035110496352) + +[fips0116768] +centroid = (0.57939497956250274, -1.5115370754354707) +description = Columbiana city, AL +station = ('keet', 0.0026198822489994066) +zone = ('alz025', 0.0014327777942471968) + +[fips0116936] +centroid = (0.58402087002515868, -1.5191446514856484) +description = Concord CDP, AL +station = ('kbhm', 0.0046065872412639338) +zone = ('alz024', 0.0026448413833400548) + +[fips0117176] +centroid = (0.56715161703281025, -1.5066824072144633) +description = Coosada town, AL +station = ('kmxf', 0.0020431744635957972) +zone = ('alz043', 0.0031508293659966431) + +[fips0117368] +centroid = (0.58924570512722141, -1.5219462889075348) +description = Cordova city, AL +station = ('kjfx', 0.0028902665779886355) +zone = ('alz015', 0.0015772184116983785) + +[fips0117824] +centroid = (0.54199512187297227, -1.4887581725024543) +description = Cottonwood town, AL +station = ('kmai', 0.0042266279855138079) +zone = ('alz069', 0.0017313482174474881) + +[fips0117968] +centroid = (0.59028595626799518, -1.5135448847536723) +description = County Line town, AL +station = ('kbhm', 0.0044588177137098129) +zone = ('alz017', 0.0035592908192901155) + +[fips0118040] +centroid = (0.60510512806765848, -1.5241546191034983) +description = Courtland town, AL +station = ('k9a4', 0.00039119460920328448) +zone = ('alz004', 0.00259358823454094) + +[fips0118088] +centroid = (0.54465177479389537, -1.4889363531657904) +description = Cowarts town, AL +station = ('kdhn', 0.0028444706965936955) +zone = ('alz069', 0.00093220287602379314) + +[fips0118304] +centroid = (0.53885567597436246, -1.5360541168639628) +description = Creola city, AL +station = ('kbfm', 0.0042899606660764646) +zone = ('alz061', 0.0027680817905686955) + +[fips0118856] +centroid = (0.59839461634642055, -1.5009614448192286) +description = Crossville town, AL +station = ('k8a0', 0.0038338951300565878) +zone = ('alz010', 0.0041375277885586613) + +[fips0118952] +centroid = (0.56619760261037766, -1.5424312008848997) +description = Cuba town, AL +station = ('kmei', 0.0058389411263518503) +zone = ('alz030', 0.0036861326553437692) + +[fips0118976] +centroid = (0.59654196679872107, -1.5156577628928443) +description = Cullman city, AL +station = ('k3a1', 0.0015785543511590543) +zone = ('alz016', 0.00091240596758287139) + +[fips0119024] +centroid = (0.55349733033580539, -1.5409821587267241) +description = Cullomburg CDP, AL +station = ('kmei', 0.012773927292795409) +zone = ('alz051', 0.005360366063587977) + +[fips0119216] +centroid = (0.57225251630468899, -1.4888661734765676) +description = Cusseta town, AL +station = ('kauo', 0.0035238025216770144) +zone = ('alz038', 0.0025481112001991915) + +[fips0119336] +centroid = (0.57292376993500582, -1.4970771273024526) +description = Dadeville city, AL +station = ('kalx', 0.003141986778503031) +zone = ('alz037', 0.00070613185661883688) + +[fips0119360] +centroid = (0.54613790519867611, -1.495946450653133) +description = Daleville city, AL +station = ('kozr', 0.0001610450689614174) +zone = ('alz066', 0.0028713465359752285) + +[fips0119648] +centroid = (0.53451659546768682, -1.5340742328137928) +description = Daphne city, AL +station = ('kcqf', 0.0028907027762999967) +zone = ('alz064', 0.0041007052172354549) + +[fips0119744] +centroid = (0.52795431455982078, -1.5392437235252752) +description = Dauphin Island town, AL +station = ('kcqf', 0.0058481693846688092) +zone = ('alz063', 0.0049101944419511507) + +[fips0119816] +centroid = (0.57695068085166978, -1.4946009937860631) +description = Daviston town, AL +station = ('kalx', 0.0054105171291718565) +zone = ('alz037', 0.0041504590354135423) + +[fips0119912] +centroid = (0.56463073327439972, -1.5296340104769641) +description = Dayton town, AL +station = ('ktcl', 0.015113885510018929) +zone = ('alz039', 0.0028313832764022559) + +[fips0120008] +centroid = (0.56878625750364309, -1.5077828547611383) +description = Deatsville town, AL +station = ('kmxf', 0.0036062993093739842) +zone = ('alz043', 0.003537385705537383) + +[fips0120104] +centroid = (0.60341336297040782, -1.5182913076544711) +description = Decatur city, AL +station = ('kdcu', 0.0014706359589540985) +zone = ('alz007', 0.0028873019192575396) + +[fips0120152] +centroid = (0.54486638047872071, -1.5415667043998018) +description = Deer Park CDP, AL +station = ('kmob', 0.0094419966219933052) +zone = ('alz052', 0.0037421611685655755) + +[fips0120272] +centroid = (0.58364724739218432, -1.4953266318758724) +description = Delta CDP, AL +station = ('kanb', 0.0035539870599593003) +zone = ('alz028', 0.0040241228802145972) + +[fips0120296] +centroid = (0.56722214578788333, -1.5328355202837751) +description = Demopolis city, AL +station = ('ktcl', 0.012885310681760312) +zone = ('alz039', 0.0044264011542780868) + +[fips0120392] +centroid = (0.59388979937397568, -1.5388189452919248) +description = Detroit town, AL +station = ('km40', 0.0053759066578077646) +zone = ('alz012', 0.0044517405614813458) + +[fips0120955] +centroid = (0.594205145463226, -1.5163881133716337) +description = Dodge City town, AL +station = ('k3a1', 0.0039107353631417704) +zone = ('alz016', 0.0015261949027982509) + +[fips0121136] +centroid = (0.58869437306980898, -1.5199003266918842) +description = Dora city, AL +station = ('kjfx', 0.0044256350482460077) +zone = ('alz015', 0.0033531285262217133) + +[fips0121184] +centroid = (0.54513086767356789, -1.490630265018021) +description = Dothan city, AL +station = ('kdhn', 0.0015848518984257153) +zone = ('alz069', 0.0020975752727287007) + +[fips0121280] +centroid = (0.59603742701855467, -1.5254601253839899) +description = Double Springs town, AL +station = ('k1m4', 0.0036455447699346661) +zone = ('alz014', 0.00041548302048589913) + +[fips0121328] +centroid = (0.5963551991154652, -1.5066442717703072) +description = Douglas town, AL +station = ('k8a0', 0.0014464876387919761) +zone = ('alz008', 0.0034698261765408259) + +[fips0121448] +centroid = (0.54978035498771072, -1.5074333351251339) +description = Dozier town, AL +station = ('k79j', 0.0034983145932281361) +zone = ('alz058', 0.0041235720817080143) + +[fips0121890] +centroid = (0.58483667182412591, -1.5102306790370601) +description = Dunnavant CDP, AL +station = ('kbhm', 0.0033589016712763983) +zone = ('alz025', 0.0046720175345272294) + +[fips0121952] +centroid = (0.60399129384562078, -1.4994446489794904) +description = Dutton town, AL +station = ('k4a6', 0.0018064738728916759) +zone = ('alz010', 0.0029874217906276125) + +[fips0122216] +centroid = (0.54263522137614117, -1.5194029951215287) +description = East Brewton city, AL +station = ('kgzh', 0.0056896180319838041) +zone = ('alz059', 0.001703887964108225) + +[fips0122504] +centroid = (0.59674592597510923, -1.5148024119330268) +description = East Point CDP, AL +station = ('k3a1', 0.0016601066739788375) +zone = ('alz016', 0.0015033389105376604) + +[fips0122816] +centroid = (0.5696781382047047, -1.5017003648646454) +description = Eclectic town, AL +station = ('kalx', 0.0049280111320350976) +zone = ('alz043', 0.0017616688828157227) + +[fips0123032] +centroid = (0.58521062606965812, -1.5176124792952002) +description = Edgewater CDP, AL +station = ('kbhm', 0.0030180204365666688) +zone = ('alz024', 0.00092137016810705673) + +[fips0123176] +centroid = (0.59138282588970348, -1.4907576915067091) +description = Edwardsville town, AL +station = ('kctj', 0.0058567454580011665) +zone = ('gaz041', 0.0033336462928564336) + +[fips0123224] +centroid = (0.59473719163240379, -1.5038638400988327) +description = Egypt CDP, AL +station = ('kgad', 0.0022436848857843063) +zone = ('alz018', 0.0019577218951872294) + +[fips0123296] +centroid = (0.54833555397961731, -1.5023303589114454) +description = Elba city, AL +station = ('k79j', 0.0050010659072580576) +zone = ('alz065', 0.0013501966657468447) + +[fips0123320] +centroid = (0.53021516171297667, -1.5286823871556068) +description = Elberta town, AL +station = ('kjka', 0.0019947933416531501) +zone = ('alz064', 0.0023614762737383999) + +[fips0123344] +centroid = (0.59205090302078189, -1.5292593755530237) +description = Eldridge town, AL +station = ('kjfx', 0.004508189802666783) +zone = ('alz013', 0.0039053058393719725) + +[fips0123488] +centroid = (0.6096801247293262, -1.5180594232100508) +description = Elkmont town, AL +station = ('kdcu', 0.0049403354218806803) +zone = ('alz005', 0.0021296722350058819) + +[fips0123656] +centroid = (0.56800585098190637, -1.5068552471702881) +description = Elmore town, AL +station = ('kmxf', 0.0028450823338078109) +zone = ('alz043', 0.0029012106528643914) + +[fips0123872] +centroid = (0.57122319092503271, -1.5414134644914768) +description = Emelle town, AL +station = ('kmei', 0.009396994273661894) +zone = ('alz030', 0.0029604707168742919) + +[fips0123880] +centroid = (0.56632326631652119, -1.5026288974799991) +description = Emerald Mountain CDP, AL +station = ('kmxf', 0.0041684444073639025) +zone = ('alz043', 0.0027176280536923966) + +[fips0124184] +centroid = (0.54678505583202308, -1.4982660804954961) +description = Enterprise city, AL +station = ('klor', 0.001526126121795382) +zone = ('alz065', 0.0025042175810967718) + +[fips0124256] +centroid = (0.5705699316393037, -1.5381037268177498) +description = Epes town, AL +station = ('kmei', 0.011096729125731702) +zone = ('alz030', 0.0020443753930904441) + +[fips0124472] +centroid = (0.58318546817869155, -1.5396612760955222) +description = Ethelsville town, AL +station = ('kcbm', 0.005342011379842017) +zone = ('alz022', 0.002975157414108121) + +[fips0124568] +centroid = (0.55693527989638392, -1.4861924686888526) +description = Eufaula city, AL +station = ('keuf', 0.0007835819752505125) +zone = ('gaz120', 0.0021172622758804031) + +[fips0124616] +centroid = (0.54160462190613101, -1.4981622683115876) +description = Eunola CDP, AL +station = ('kozr', 0.0047538203205029737) +zone = ('alz068', 0.0011055484898376982) + +[fips0124664] +centroid = (0.57327515707330989, -1.5341502069961324) +description = Eutaw town, AL +station = ('ktcl', 0.0076827627371011519) +zone = ('alz031', 0.00076986008660947115) + +[fips0124688] +centroid = (0.59914348476857371, -1.5143259195939396) +description = Eva town, AL +station = ('k3a1', 0.0017087118986331823) +zone = ('alz007', 0.0025277213837208933) + +[fips0124808] +centroid = (0.54878382434469941, -1.517736642018187) +description = Evergreen city, AL +station = ('kgzh', 0.0014182739805957459) +zone = ('alz056', 0.00055582087128678334) + +[fips0124880] +centroid = (0.54849390770265072, -1.524434500102348) +description = Excel town, AL +station = ('kgzh', 0.0043770609688002435) +zone = ('alz055', 0.0025384762822202424) + +[fips0125120] +centroid = (0.58424399291673368, -1.5170286492071154) +description = Fairfield city, AL +station = ('kbhm', 0.002940538116627043) +zone = ('alz024', 0.0014282261888651599) + +[fips0125216] +centroid = (0.54415878909337712, -1.5371600621977815) +description = Fairford CDP, AL +station = ('kmob', 0.0089619381962463725) +zone = ('alz052', 0.004481613618639105) + +[fips0125240] +centroid = (0.53270789331055257, -1.5338361175439432) +description = Fairhope city, AL +station = ('kcqf', 0.0010867331584225703) +zone = ('alz064', 0.0032313452548724778) + +[fips0125384] +centroid = (0.59775949103161985, -1.5129895558922728) +description = Fairview town, AL +station = ('k3a1', 0.0024817863461275643) +zone = ('alz016', 0.0033024225283175444) + +[fips0125648] +centroid = (0.59999216857064852, -1.5168577465667603) +description = Falkville town, AL +station = ('k3a1', 0.002030983112683871) +zone = ('alz007', 0.0015643050630282445) + +[fips0125816] +centroid = (0.56649223164140683, -1.5288000223471914) +description = Faunsdale town, AL +station = ('ktcl', 0.013252215365381525) +zone = ('alz039', 0.0046649659543668781) + +[fips0125840] +centroid = (0.58807499062486113, -1.5329430849255754) +description = Fayette city, AL +station = ('ktcl', 0.0089008290552752729) +zone = ('alz013', 0.0014200351715425539) + +[fips0125864] +centroid = (0.57889249927085373, -1.5087110208573489) +description = Fayetteville CDP, AL +station = ('keet', 0.0049821068988011212) +zone = ('alz025', 0.0035978847784027021) + +[fips0126152] +centroid = (0.56206728093553304, -1.4987836753384678) +description = Fitzpatrick CDP, AL +station = ('ktoi', 0.0062559972671745005) +zone = ('alz046', 0.0029514162857925881) + +[fips0126200] +centroid = (0.57626078710494144, -1.4896663022188519) +description = Five Points town, AL +station = ('klgc', 0.0040872628601655728) +zone = ('alz038', 0.0018910887075988887) + +[fips0126824] +centroid = (0.54131065610021767, -1.5229047713728525) +description = Flomaton town, AL +station = ('knse', 0.0060820394574612243) +zone = ('alz059', 0.0024023753889515845) + +[fips0126848] +centroid = (0.54144277752459358, -1.506542152555773) +description = Florala town, AL +station = ('k0j4', 0.00033633299483755544) +zone = ('flz007', 0.003397556961542909) + +[fips0126896] +centroid = (0.60790426966871436, -1.5300620175694308) +description = Florence city, AL +station = ('kmsl', 0.0016923757991458659) +zone = ('alz001', 0.0012530633992108922) + +[fips0126992] +centroid = (0.53052891955260773, -1.5301032771529479) +description = Foley city, AL +station = ('kjka', 0.00186883308485417) +zone = ('alz064', 0.0016919212944966448) + +[fips0127088] +centroid = (0.58597790771541991, -1.5166893746538204) +description = Forestdale CDP, AL +station = ('kbhm', 0.0021836942788273617) +zone = ('alz024', 0.00034842106286428915) + +[fips0127376] +centroid = (0.56980523308083497, -1.5335760634853961) +description = Forkland town, AL +station = ('ktcl', 0.010592343262085115) +zone = ('alz031', 0.003799060599840674) + +[fips0127520] +centroid = (0.55826556985225395, -1.510867986013426) +description = Fort Deposit town, AL +station = ('kmgm', 0.0060023474744143922) +zone = ('alz042', 0.0031900522067103304) + +[fips0127616] +centroid = (0.60135307160159868, -1.4956652955639294) +description = Fort Payne city, AL +station = ('k4a9', 0.00049641771359107921) +zone = ('alz010', 0.0015678643078532726) + +[fips0127640] +centroid = (0.54703114725655433, -1.4960276782765209) +description = Fort Rucker CDP, AL +station = ('klor', 0.0005588257237149906) +zone = ('alz066', 0.0022081267626377979) + +[fips0128024] +centroid = (0.56641217338861782, -1.4976470296631064) +description = Franklin town, AL +station = ('kauo', 0.0062199807680314127) +zone = ('alz045', 0.0020741641540840466) + +[fips0128120] +centroid = (0.5754972753703641, -1.4888171297245867) +description = Fredonia CDP, AL +station = ('klgc', 0.0034292597924900133) +zone = ('alz038', 0.0016637229541143939) + +[fips0128312] +centroid = (0.54872252838136948, -1.5254907559123625) +description = Frisco City town, AL +station = ('kgzh', 0.0052897774723550724) +zone = ('alz055', 0.0023585863195319731) + +[fips0128408] +centroid = (0.54704643634080174, -1.543076885441675) +description = Fruitdale CDP, AL +station = ('kmob', 0.011826448024939753) +zone = ('alz052', 0.0032497500369234825) + +[fips0128432] +centroid = (0.5886915281831282, -1.491056579141113) +description = Fruithurst town, AL +station = ('kctj', 0.0044388872892990473) +zone = ('alz021', 0.0015933800414578258) + +[fips0128504] +centroid = (0.55485743051529957, -1.5314253989679187) +description = Fulton town, AL +station = ('kgzh', 0.012213508887408206) +zone = ('alz053', 0.0024594624771259186) + +[fips0128552] +centroid = (0.58673866182977918, -1.5149736112793548) +description = Fultondale city, AL +station = ('kbhm', 0.0011637925662689945) +zone = ('alz024', 0.0017682094195588115) + +[fips0128672] +centroid = (0.60125920779442643, -1.4993245528736605) +description = Fyffe town, AL +station = ('k4a9', 0.0026747708047994484) +zone = ('alz010', 0.0014625020753372062) + +[fips0128696] +centroid = (0.59357885151444023, -1.5012561785700129) +description = Gadsden city, AL +station = ('kgad', 0.0012329224907882787) +zone = ('alz018', 0.00068251168798788694) + +[fips0128768] +centroid = (0.57272864212463293, -1.5386960741125844) +description = Gainesville town, AL +station = ('ktcl', 0.010610099081009076) +zone = ('alz031', 0.0031306814682125353) + +[fips0128816] +centroid = (0.5934349491176133, -1.5050005381340716) +description = Gallant CDP, AL +station = ('kgad', 0.0022095526555777028) +zone = ('alz018', 0.0029286396623118827) + +[fips0128936] +centroid = (0.54822004808972025, -1.5094217014754683) +description = Gantt town, AL +station = ('k79j', 0.0024415342096465661) +zone = ('alz060', 0.002871483789302695) + +[fips0129032] +centroid = (0.59369069221290804, -1.5140933370178191) +description = Garden City town, AL +station = ('k3a1', 0.0046732886084738237) +zone = ('alz016', 0.0026333915452150013) + +[fips0129056] +centroid = (0.58776732398431963, -1.5151176009426444) +description = Gardendale city, AL +station = ('kbhm', 0.0021064171339840454) +zone = ('alz024', 0.0024782353212502617) + +[fips0129296] +centroid = (0.59809122576254647, -1.4932769695622079) +description = Gaylesville town, AL +station = ('k4a9', 0.0042864471171378668) +zone = ('alz020', 0.0017355250501946977) + +[fips0129392] +centroid = (0.57366729764964808, -1.5414425765834001) +description = Geiger town, AL +station = ('knmm', 0.0090544108237297204) +zone = ('msz046', 0.0051402144004123219) + +[fips0129464] +centroid = (0.54183547660629239, -1.4988332252359318) +description = Geneva city, AL +station = ('kozr', 0.0048000343638648487) +zone = ('alz068', 0.0010414644866086177) + +[fips0129560] +centroid = (0.55220706077968362, -1.5140166123439014) +description = Georgiana town, AL +station = ('kgzh', 0.005952089359716476) +zone = ('alz057', 0.0022095478925515679) + +[fips0129608] +centroid = (0.599682285361957, -1.5010355864058533) +description = Geraldine town, AL +station = ('k8a0', 0.0042940499752046404) +zone = ('alz010', 0.0033588482280275576) + +[fips0129704] +centroid = (0.55633750462757581, -1.5414658767289142) +description = Gilbertown town, AL +station = ('kmei', 0.010211781812476433) +zone = ('alz051', 0.0026400082290787973) + +[fips0129944] +centroid = (0.5915288750415103, -1.5312241625051637) +description = Glen Allen town, AL +station = ('k1m4', 0.0070399803895107929) +zone = ('alz013', 0.0029842700321240931) + +[fips0129992] +centroid = (0.59235408416514579, -1.4998367022893659) +description = Glencoe city, AL +station = ('kgad', 0.0022093364344052159) +zone = ('alz018', 0.0023518934916460271) + +[fips0130160] +centroid = (0.55276786997493443, -1.5040145667330349) +description = Glenwood town, AL +station = ('kprn', 0.0038538859069476091) +zone = ('alz058', 0.0023284365754730834) + +[fips0130448] +centroid = (0.57743986173441886, -1.4971082116164305) +description = Goldville town, AL +station = ('kalx', 0.0040168734020298346) +zone = ('alz028', 0.0034339962827042302) + +[fips0130496] +centroid = (0.595328928062, -1.5160836581369157) +description = Good Hope town, AL +station = ('k3a1', 0.0027729359754635257) +zone = ('alz016', 0.00038840979131718543) + +[fips0130640] +centroid = (0.5770173698823885, -1.5018987913473048) +description = Goodwater town, AL +station = ('kalx', 0.0028655723389727282) +zone = ('alz036', 0.0035885371078423758) + +[fips0130736] +centroid = (0.5815836049912112, -1.5342086580727816) +description = Gordo town, AL +station = ('ktcl', 0.0045760330190969698) +zone = ('alz022', 0.0027939185398172823) + +[fips0130760] +centroid = (0.54356192139578008, -1.4851603158758082) +description = Gordon town, AL +station = ('kbij', 0.0054039014071659199) +zone = ('alz069', 0.0031273689485987093) + +[fips0130808] +centroid = (0.56122303026975828, -1.5134725234028845) +description = Gordonville town, AL +station = ('kmgm', 0.0052964447465522679) +zone = ('alz042', 0.00096781963091029902) + +[fips0130880] +centroid = (0.55361870053198914, -1.5031341877517437) +description = Goshen town, AL +station = ('kprn', 0.0027985953087906307) +zone = ('alz058', 0.0028329830348010608) + +[fips0131000] +centroid = (0.5839032348335742, -1.4891687612089861) +description = Graham CDP, AL +station = ('kctj', 0.0039557681673881894) +zone = ('alz029', 0.003444477904738872) + +[fips0131024] +centroid = (0.53183816083769875, -1.5419006731521712) +description = Grand Bay CDP, AL +station = ('kpql', 0.0028436796148365012) +zone = ('alz063', 0.0018988060076941024) + +[fips0131096] +centroid = (0.60242369147135688, -1.5054947979249438) +description = Grant town, AL +station = ('k4a6', 0.0046852608156167245) +zone = ('alz008', 0.0026984683832923548) + +[fips0131348] +centroid = (0.58725157919035531, -1.5121756215956053) +description = Grayson Valley CDP, AL +station = ('kbhm', 0.0021130868110276189) +zone = ('alz024', 0.0040478292327619479) + +[fips0131384] +centroid = (0.5874474051324291, -1.5178660581822225) +description = Graysville city, AL +station = ('kbhm', 0.0035402131365614661) +zone = ('alz024', 0.0020860863901256822) + +[fips0131720] +centroid = (0.57073956018930516, -1.5287984690041569) +description = Greensboro city, AL +station = ('ktcl', 0.0090069213796368074) +zone = ('alz032', 0.0011962344106374505) + +[fips0131912] +centroid = (0.55576648525620087, -1.5120996474132657) +description = Greenville city, AL +station = ('kmgm', 0.0087107361579453358) +zone = ('alz057', 0.0017083389136397637) + +[fips0132056] +centroid = (0.54628556005339479, -1.4913889421905706) +description = Grimes town, AL +station = ('kdhn', 0.00029341633997056468) +zone = ('alz066', 0.0033224994972950207) + +[fips0132080] +centroid = (0.5533094107352432, -1.5319425923851622) +description = Grove Hill town, AL +station = ('kgzh', 0.011863172793300675) +zone = ('alz053', 0.0010090794948760175) + +[fips0132224] +centroid = (0.59311389580170892, -1.5341758982427216) +description = Guin city, AL +station = ('k1m4', 0.0067756992999395702) +zone = ('alz011', 0.0026905829064336182) + +[fips0132248] +centroid = (0.54089584369689614, -1.5401120597347273) +description = Gulfcrest CDP, AL +station = ('kmob', 0.005372193219123321) +zone = ('alz061', 0.0014517277652387713) + +[fips0132272] +centroid = (0.52837104682531943, -1.5306861298566514) +description = Gulf Shores city, AL +station = ('kjka', 0.0005604802056319207) +zone = ('alz064', 0.0038796034420350871) + +[fips0132416] +centroid = (0.59984957517076054, -1.5053870238436331) +description = Guntersville city, AL +station = ('k8a0', 0.0024432093611093117) +zone = ('alz008', 0.0007826797193615548) + +[fips0132440] +centroid = (0.60567237752784919, -1.5075164477041139) +description = Gurley town, AL +station = ('kmdq', 0.0038166210450512189) +zone = ('alz006', 0.0027355328624156334) + +[fips0132536] +centroid = (0.59244012889726905, -1.5336272365390646) +description = Gu-Win town, AL +station = ('k1m4', 0.0070437207483973596) +zone = ('alz011', 0.0033646497196862979) + +[fips0132560] +centroid = (0.59810979606578762, -1.532924340089409) +description = Hackleburg town, AL +station = ('k1m4', 0.0033201998249235672) +zone = ('alz011', 0.0024556952068895501) + +[fips0132584] +centroid = (0.5768887391165165, -1.4998390933904411) +description = Hackneyville CDP, AL +station = ('kalx', 0.0024537653457142425) +zone = ('alz037', 0.0038887349764444358) + +[fips0132656] +centroid = (0.54820749917239842, -1.4859396053868237) +description = Haleburg town, AL +station = ('kbij', 0.0036994388288789665) +zone = ('alz067', 0.002388988926451219) + +[fips0132704] +centroid = (0.59749308397459544, -1.5292151489097783) +description = Haleyville city, AL +station = ('k1m4', 0.00084816119688852355) +zone = ('alz014', 0.0038180451487827105) + +[fips0132848] +centroid = (0.5958328918835134, -1.5353807513852509) +description = Hamilton city, AL +station = ('k1m4', 0.0058916556858953986) +zone = ('alz011', 0.0012102205304456639) + +[fips0132896] +centroid = (0.60329511691358517, -1.494704369637659) +description = Hammondville town, AL +station = ('k4a9', 0.0019940809983123912) +zone = ('alz010', 0.0030008677718101791) + +[fips0132968] +centroid = (0.59452913093227366, -1.5143250818358989) +description = Hanceville city, AL +station = ('k3a1', 0.0038197437272185285) +zone = ('alz016', 0.0019055755258132808) + +[fips0133256] +centroid = (0.58150400052402773, -1.5084606882827354) +description = Harpersville town, AL +station = ('keet', 0.0056864011337358607) +zone = ('alz025', 0.0035145428917502052) + +[fips0133424] +centroid = (0.54289073757863315, -1.4955940163172781) +description = Hartford city, AL +station = ('kozr', 0.0031295663603930737) +zone = ('alz068', 0.002215818556151391) + +[fips0133448] +centroid = (0.60109799173141965, -1.5173943131387009) +description = Hartselle city, AL +station = ('k3a1', 0.0032220958415317504) +zone = ('alz007', 0.0012784728203594519) + +[fips0133472] +centroid = (0.60833440606286837, -1.5142240621787932) +description = Harvest CDP, AL +station = ('kmdq', 0.0028869040058904028) +zone = ('alz006', 0.0033904412956497539) + +[fips0133544] +centroid = (0.60319750064852118, -1.5256592325450575) +description = Hatton CDP, AL +station = ('k9a4', 0.001885678562629466) +zone = ('alz004', 0.0016251926718586741) + +[fips0133640] +centroid = (0.59156575384860499, -1.5141751056932748) +description = Hayden town, AL +station = ('kbhm', 0.0057175306672038869) +zone = ('alz017', 0.0031199810296941087) + +[fips0133712] +centroid = (0.56169224458586453, -1.5110814223276523) +description = Hayneville town, AL +station = ('kmgm', 0.0033390301847523612) +zone = ('alz042', 0.0011632947133059152) + +[fips0133808] +centroid = (0.60953278403387279, -1.5108860152645991) +description = Hazel Green CDP, AL +station = ('kmdq', 0.0010964744139849358) +zone = ('alz006', 0.0028130308297206596) + +[fips0133856] +centroid = (0.54724753317721653, -1.4897612306768682) +description = Headland city, AL +station = ('kdhn', 0.0015387704904900421) +zone = ('alz067', 0.0032766776434023999) + +[fips0133904] +centroid = (0.54707064405752692, -1.5091696235716028) +description = Heath town, AL +station = ('k79j', 0.0014985742242119469) +zone = ('alz060', 0.001702375713131194) + +[fips0133976] +centroid = (0.58725791473554001, -1.4934667043051921) +description = Heflin city, AL +station = ('kanb', 0.0042297768658347773) +zone = ('alz021', 0.00087334391634837647) + +[fips0134024] +centroid = (0.58094392436706277, -1.5162458515843036) +description = Helena city, AL +station = ('keet', 0.0022268455150260304) +zone = ('alz025', 0.0031416911199402516) + +[fips0134096] +centroid = (0.60441870752614157, -1.496286789857272) +description = Henagar city, AL +station = ('k4a9', 0.0027441094980416919) +zone = ('alz010', 0.0031618957398806928) + +[fips0134480] +centroid = (0.5914864635406869, -1.5083617106608547) +description = Highland Lake town, AL +station = ('kgad', 0.0050958094281268991) +zone = ('alz017', 0.0026308908065528344) + +[fips0134490] +centroid = (0.58289827425027585, -1.512291494004645) +description = Highland Lakes CDP, AL +station = ('kbhm', 0.0033036428036523325) +zone = ('alz025', 0.0023341675163144802) + +[fips0134816] +centroid = (0.6046271871052924, -1.5215516699636589) +description = Hillsboro town, AL +station = ('k9a4', 0.0023226510566821865) +zone = ('alz004', 0.0028381499136653585) + +[fips0134984] +centroid = (0.57368576323313414, -1.5031407676430237) +description = Hissop CDP, AL +station = ('kalx', 0.0024843572865469454) +zone = ('alz036', 0.0021551427026073834) + +[fips0135130] +centroid = (0.54958192850505139, -1.5385239322884599) +description = Hobson CDP, AL +station = ('kmob', 0.014110594440408649) +zone = ('alz052', 0.0016429726368041026) + +[fips0135152] +centroid = (0.58675876802276217, -1.4982978978477601) +description = Hobson City town, AL +station = ('kanb', 0.00062155772513797127) +zone = ('alz019', 0.002679215148051512) + +[fips0135200] +centroid = (0.59924563888969307, -1.5345486307577776) +description = Hodges town, AL +station = ('k1m4', 0.0047492969814910604) +zone = ('alz003', 0.0021962979224963573) + +[fips0135392] +centroid = (0.59323186260585126, -1.4985898390717409) +description = Hokes Bluff city, AL +station = ('kgad', 0.0032159410124210494) +zone = ('alz018', 0.0026698923235996316) + +[fips0135512] +centroid = (0.57808371369547951, -1.5031991489065029) +description = Hollins CDP, AL +station = ('kalx', 0.0043394157940632692) +zone = ('alz036', 0.0036884012524874294) + +[fips0135536] +centroid = (0.58523216343262774, -1.4949244556563352) +description = Hollis Crossroads CDP, AL +station = ('kanb', 0.00300746482910806) +zone = ('alz021', 0.0031688458007153035) + +[fips0135560] +centroid = (0.59632990929460383, -1.5116610636255323) +description = Holly Pond town, AL +station = ('k3a1', 0.0039740610726916531) +zone = ('alz017', 0.0033140737919764673) + +[fips0135632] +centroid = (0.60593082588348446, -1.5003823969332946) +description = Hollywood town, AL +station = ('k4a6', 0.00081687835010338015) +zone = ('alz009', 0.0011871720934280975) + +[fips0135704] +centroid = (0.57996845984812317, -1.5268645569264847) +description = Holt CDP, AL +station = ('ktcl', 0.0019664154876806003) +zone = ('alz023', 0.0012104911631164979) + +[fips0135752] +centroid = (0.56950615346021316, -1.506707906474835) +description = Holtville CDP, AL +station = ('kmxf', 0.0043477669200644694) +zone = ('alz043', 0.0026936578284295293) + +[fips0135800] +centroid = (0.58397013330380321, -1.5151100960268609) +description = Homewood city, AL +station = ('kbhm', 0.0020681135413328812) +zone = ('alz024', 0.0020907801579751668) + +[fips0135896] +centroid = (0.58253765432022886, -1.5150431626500467) +description = Hoover city, AL +station = ('keet', 0.0033947836664464698) +zone = ('alz025', 0.0028861784903309847) + +[fips0136088] +centroid = (0.54520870935820676, -1.5066572919265271) +description = Horn Hill town, AL +station = ('k79j', 0.0013854851409844801) +zone = ('alz060', 0.0018902525104911711) + +[fips0136448] +centroid = (0.5833163853258837, -1.5186851761067683) +description = Hueytown city, AL +station = ('kbhm', 0.0046050512927436746) +zone = ('alz024', 0.0028817588253640721) + +[fips0136592] +centroid = (0.57321815461993986, -1.4877075715592165) +description = Huguley CDP, AL +station = ('klgc', 0.0037895271076601833) +zone = ('alz038', 0.00256108075592549) + +[fips0137000] +centroid = (0.60710005685598045, -1.5103904115702027) +description = Huntsville city, AL +station = ('kmdq', 0.001371060186128094) +zone = ('alz006', 0.00040290582059696755) + +[fips0137096] +centroid = (0.56269572163929871, -1.4907672210044249) +description = Hurtsboro town, AL +station = ('keuf', 0.0065470806142660333) +zone = ('alz048', 0.0034942943350390792) + +[fips0137264] +centroid = (0.6092316449247337, -1.5024711895287888) +description = Hytop town, AL +station = ('k4a6', 0.0041360986908330231) +zone = ('alz009', 0.0025356255681490661) + +[fips0137312] +centroid = (0.60566696700716793, -1.4952068499293081) +description = Ider town, AL +station = ('k4a9', 0.0040592402746281843) +zone = ('gaz001', 0.0035556284687308488) + +[fips0137465] +centroid = (0.58226259043011463, -1.5140210978400788) +description = Indian Springs Village city, AL +station = ('keet', 0.0031490718556934525) +zone = ('alz025', 0.0021082397888228894) + +[fips0137864] +centroid = (0.58538334385243551, -1.5125315989498418) +description = Irondale city, AL +station = ('kbhm', 0.0013664049218710987) +zone = ('alz024', 0.0034248755278557491) + +[fips0138032] +centroid = (0.59406120815981389, -1.5035518450417462) +description = Ivalee CDP, AL +station = ('kgad', 0.0015390701727738155) +zone = ('alz018', 0.0016313498068137502) + +[fips0138152] +centroid = (0.55034282224575093, -1.5339905268228673) +description = Jackson city, AL +station = ('kgzh', 0.01268300105840393) +zone = ('alz053', 0.0025793296741949607) + +[fips0138248] +centroid = (0.57393440283837327, -1.4977551004503897) +description = Jacksons' Gap town, AL +station = ('kalx', 0.0022302317779270744) +zone = ('alz037', 0.00045664410168408116) + +[fips0138272] +centroid = (0.59002974193380231, -1.4967644864735428) +description = Jacksonville city, AL +station = ('kanb', 0.0041116563894677194) +zone = ('alz019', 0.001156173368682492) + +[fips0138416] +centroid = (0.59088036305134684, -1.5231617536519162) +description = Jasper city, AL +station = ('kjfx', 0.00097047824075467205) +zone = ('alz015', 0.00097867695048442526) + +[fips0138608] +centroid = (0.57544735895375709, -1.5137776418627182) +description = Jemison city, AL +station = ('keet', 0.0037831673590604914) +zone = ('alz035', 0.0021535263309655737) + +[fips0139088] +centroid = (0.59863674587354976, -1.5105807222718401) +description = Joppa CDP, AL +station = ('k8a0', 0.0044202687205526269) +zone = ('alz008', 0.0036993877413404688) + +[fips0139280] +centroid = (0.5917156252714737, -1.528150916945082) +description = Kansas town, AL +station = ('kjfx', 0.0035726053920743669) +zone = ('alz013', 0.0041274079717673329) + +[fips0139472] +centroid = (0.57559543268749613, -1.5015871802626537) +description = Kellyton town, AL +station = ('kalx', 0.0015403865147674005) +zone = ('alz036', 0.0032081483163398155) + +[fips0139520] +centroid = (0.58609711370333117, -1.5356485197990919) +description = Kennedy town, AL +station = ('kcbm', 0.0068485072451711657) +zone = ('alz012', 0.0038164694145960557) + +[fips0139784] +centroid = (0.60842148053925038, -1.5277045489888847) +description = Killen town, AL +station = ('kmsl', 0.0021591356066669727) +zone = ('alz001', 0.001909317347766319) + +[fips0139856] +centroid = (0.5894998425196043, -1.514894600224117) +description = Kimberly town, AL +station = ('kbhm', 0.0037144469366597078) +zone = ('alz024', 0.0041277860823788507) + +[fips0140072] +centroid = (0.54615998361371376, -1.489384972596723) +description = Kinsey town, AL +station = ('kdhn', 0.0017585074978590284) +zone = ('alz069', 0.0024833235179826749) + +[fips0140096] +centroid = (0.54488488096879184, -1.5039515254404527) +description = Kinston town, AL +station = ('k79j', 0.0034773735632007679) +zone = ('alz065', 0.0041899687507645708) + +[fips0140648] +centroid = (0.56650891698905592, -1.4852064100213533) +description = Ladonia CDP, AL +station = ('kcsg', 0.0023773612448832896) +zone = ('alz048', 0.0032459259902706521) + +[fips0140672] +centroid = (0.5742033231695205, -1.4905250565707109) +description = La Fayette city, AL +station = ('kauo', 0.0049581534370157195) +zone = ('alz038', 0.00029137717289406359) + +[fips0140888] +centroid = (0.60024716117436494, -1.5005591115200587) +description = Lakeview town, AL +station = ('k4a9', 0.0039306358095401216) +zone = ('alz010', 0.0027420819589463515) + +[fips0140928] +centroid = (0.58087517584782666, -1.5209025994681347) +description = Lake View town, AL +station = ('keet', 0.0055006642537918085) +zone = ('alz034', 0.0049457532289170769) + +[fips0141296] +centroid = (0.57347803414556175, -1.4871555937299807) +description = Lanett city, AL +station = ('klgc', 0.0032972460599276642) +zone = ('alz038', 0.0028751853806211871) + +[fips0141368] +centroid = (0.60292245421169932, -1.5026064874524034) +description = Langston town, AL +station = ('k4a6', 0.0027099530560179648) +zone = ('alz009', 0.0043080182080415599) + +[fips0141968] +centroid = (0.58540669635782727, -1.5107929368555904) +description = Leeds city, AL +station = ('kbhm', 0.0027691235820534997) +zone = ('alz026', 0.004709940642270611) + +[fips0142016] +centroid = (0.59653221040820248, -1.4971025043897765) +description = Leesburg town, AL +station = ('k4a9', 0.0052093245085383637) +zone = ('alz020', 0.0025107862265283999) + +[fips0142160] +centroid = (0.60560525216481742, -1.5276712655600491) +description = Leighton town, AL +station = ('kmsl', 0.0013557047678549878) +zone = ('alz002', 0.0039574128244271979) + +[fips0142304] +centroid = (0.54969034835818531, -1.5354146980392021) +description = Leroy CDP, AL +station = ('kgzh', 0.013806461729634928) +zone = ('alz053', 0.0037258488881662236) + +[fips0142352] +centroid = (0.61056418635533882, -1.5211510470871561) +description = Lester town, AL +station = ('k9a4', 0.0063807982993942169) +zone = ('alz005', 0.003911651316814535) + +[fips0142472] +centroid = (0.54641176481160647, -1.4969471526330567) +description = Level Plains town, AL +station = ('kozr', 0.00088053761030075159) +zone = ('alz066', 0.0032037975940535477) + +[fips0142640] +centroid = (0.61015577931037213, -1.524943560285277) +description = Lexington town, AL +station = ('kmsl', 0.0048924945237943428) +zone = ('alz001', 0.0041535871084673855) + +[fips0142808] +centroid = (0.54531032242725797, -1.5090142892681753) +description = Libertyville town, AL +station = ('k79j', 0.0015063489349525342) +zone = ('alz060', 0.0001551085426448011) + +[fips0143120] +centroid = (0.58681767288501707, -1.5022160049388547) +description = Lincoln city, AL +station = ('kanb', 0.0032782089839558997) +zone = ('alz026', 0.0039028891013660541) + +[fips0143240] +centroid = (0.56375906348607618, -1.532267118906278) +description = Linden city, AL +station = ('ktcl', 0.016188027213287288) +zone = ('alz039', 0.00093327589052826301) + +[fips0143264] +centroid = (0.58141860156372771, -1.4966595921854982) +description = Lineville city, AL +station = ('kanb', 0.0049309601006978041) +zone = ('alz028', 0.001753676382313458) + +[fips0143336] +centroid = (0.5833946982494207, -1.5171453593741964) +description = Lipscomb city, AL +station = ('kbhm', 0.0035477745129623233) +zone = ('alz024', 0.0022792010415338907) + +[fips0143384] +centroid = (0.5615025971093428, -1.5408480825335857) +description = Lisman town, AL +station = ('kmei', 0.0074328806029100919) +zone = ('alz051', 0.0026806835903803077) + +[fips0143648] +centroid = (0.6037989585620509, -1.5301430532066009) +description = Littleville town, AL +station = ('kmsl', 0.0028873805615468925) +zone = ('alz002', 0.0026632009664141797) + +[fips0143720] +centroid = (0.5688996515451451, -1.5391522682724705) +description = Livingston city, AL +station = ('kmei', 0.0094707836319161826) +zone = ('alz030', 0.00019176670845182878) + +[fips0143744] +centroid = (0.56911602001251482, -1.4939752932492232) +description = Loachapoka town, AL +station = ('kauo', 0.0024326628603051517) +zone = ('alz047', 0.0035729453235372947) + +[fips0143816] +centroid = (0.54127915290721917, -1.5070965738459616) +description = Lockhart town, AL +station = ('k0j4', 0.00083137911400592453) +zone = ('flz007', 0.0035084939770052485) + +[fips0143888] +centroid = (0.59126065284206375, -1.5122763445467378) +description = Locust Fork town, AL +station = ('kbhm', 0.0056143556723709572) +zone = ('alz017', 0.0021530008481616576) + +[fips0144160] +centroid = (0.59543506153381376, -1.5003804247112398) +description = Lookout Mountain CDP, AL +station = ('kgad', 0.0031130807345678894) +zone = ('alz018', 0.001588570935077187) + +[fips0144344] +centroid = (0.55468390988106631, -1.493274665727595) +description = Louisville town, AL +station = ('kprn', 0.0058109721696116999) +zone = ('alz050', 0.0028957926708540367) + +[fips0144536] +centroid = (0.56332983466313313, -1.5116444655443457) +description = Lowndesboro town, AL +station = ('kmgm', 0.0031380598362174147) +zone = ('alz042', 0.0022020970831627415) + +[fips0144608] +centroid = (0.53557499803268116, -1.5313454105282998) +description = Loxley town, AL +station = ('kcqf', 0.0045486543463537314) +zone = ('alz064', 0.0035140900816754139) + +[fips0144728] +centroid = (0.55359995569582277, -1.5056795235729747) +description = Luverne city, AL +station = ('ktoi', 0.0045462844237806358) +zone = ('alz058', 0.00069629026185752461) + +[fips0144800] +centroid = (0.59441711570088063, -1.5280120061899158) +description = Lynn town, AL +station = ('k1m4', 0.0039574889342133364) +zone = ('alz014', 0.0029913313510153928) + +[fips0145208] +centroid = (0.58500951177995086, -1.5173624085199744) +description = McDonald Chapel CDP, AL +station = ('kbhm', 0.0028671417658183876) +zone = ('alz024', 0.00087259118847658051) + +[fips0145316] +centroid = (0.58299475605132622, -1.5400649358449234) +description = Macedonia CDP, AL +station = ('kgtr', 0.0050787586564602066) +zone = ('alz022', 0.0030607717716097356) + +[fips0145472] +centroid = (0.54567644014444872, -1.5363848742105082) +description = McIntosh town, AL +station = ('kmob', 0.010604491719438934) +zone = ('alz052', 0.0036477138603037856) + +[fips0145496] +centroid = (0.55058976888161559, -1.5136534442331464) +description = McKenzie town, AL +station = ('kgzh', 0.005328761990212821) +zone = ('alz057', 0.0036576029708971529) + +[fips0145640] +centroid = (0.57854355559350235, -1.5389569135692949) +description = McMullen town, AL +station = ('kgtr', 0.007944621922412784) +zone = ('alz022', 0.0026432965372557306) + +[fips0145784] +centroid = (0.60581308597214489, -1.5142874525372259) +description = Madison city, AL +station = ('khsv', 0.001098862397442633) +zone = ('alz006', 0.0031771575107792543) + +[fips0145904] +centroid = (0.54167638984497302, -1.4904735693577771) +description = Madrid town, AL +station = ('k1j0', 0.0046521558291277749) +zone = ('alz069', 0.0024962209103544424) + +[fips0146072] +centroid = (0.53063411054662546, -1.5319526454816539) +description = Magnolia Springs town, AL +station = ('kcqf', 0.0020029160369166178) +zone = ('alz064', 0.0022339393577877251) + +[fips0146192] +centroid = (0.54451998498207732, -1.5359083295115437) +description = Malcolm CDP, AL +station = ('kmob', 0.0096434155930255148) +zone = ('alz052', 0.0047693534232144891) + +[fips0146264] +centroid = (0.54356007134677298, -1.4926574649442124) +description = Malvern town, AL +station = ('kdhn', 0.0032093057782667423) +zone = ('alz069', 0.0032973890776524517) + +[fips0146504] +centroid = (0.57226347697239144, -1.5162835856027317) +description = Maplesville town, AL +station = ('keet', 0.0070289850721560769) +zone = ('alz035', 0.0025383609382750444) + +[fips0146600] +centroid = (0.57044444246608528, -1.5092933848688617) +description = Marbury CDP, AL +station = ('kmxf', 0.0054902817943660162) +zone = ('alz041', 0.0035750293199401165) + +[fips0146696] +centroid = (0.58767639233029068, -1.5091695537584329) +description = Margaret town, AL +station = ('kbhm', 0.0044736945426882904) +zone = ('alz026', 0.0023710682410277946) + +[fips0146768] +centroid = (0.56953528300542899, -1.5239749549102979) +description = Marion city, AL +station = ('ktcl', 0.011107228798309344) +zone = ('alz033', 0.00035860801477591634) + +[fips0147728] +centroid = (0.58554079000425796, -1.5184342152136241) +description = Maytown town, AL +station = ('kbhm', 0.0036472510522970385) +zone = ('alz024', 0.0015064087282236215) + +[fips0147740] +centroid = (0.58285680522724859, -1.5132767847272734) +description = Meadowbrook CDP, AL +station = ('kbhm', 0.0030648835911151751) +zone = ('alz025', 0.0023723303945897742) + +[fips0147848] +centroid = (0.54765187360502599, -1.5259526922054878) +description = Megargel CDP, AL +station = ('kgzh', 0.0057105103199188018) +zone = ('alz055', 0.0034949945601452639) + +[fips0148052] +centroid = (0.57835052217823191, -1.5412294369751465) +description = Memphis town, AL +station = ('kgtr', 0.0067978623024520842) +zone = ('alz022', 0.0040456950939155023) + +[fips0148064] +centroid = (0.60330895737455348, -1.4937171765061459) +description = Mentone town, AL +station = ('k4a9', 0.0025653275788974439) +zone = ('alz010', 0.0036813019970360888) + +[fips0148112] +centroid = (0.60868205819657317, -1.511115822767209) +description = Meridianville CDP, AL +station = ('kmdq', 0.00040913504196961038) +zone = ('alz006', 0.0019993985129039748) + +[fips0148376] +centroid = (0.5839033395533294, -1.5170861403526763) +description = Midfield city, AL +station = ('kbhm', 0.0031774399876325641) +zone = ('alz024', 0.0017709924635688746) + +[fips0148400] +centroid = (0.54656036214412129, -1.4921443381441259) +description = Midland City town, AL +station = ('kdhn', 0.00064996376308921469) +zone = ('alz066', 0.0026785902849201871) + +[fips0148424] +centroid = (0.55983832094781105, -1.4926826674986111) +description = Midway town, AL +station = ('keuf', 0.0062043154406558774) +zone = ('alz046', 0.0028655137407640227) + +[fips0148616] +centroid = (0.57946294268357545, -1.5056416848347915) +description = Mignon CDP, AL +station = ('kalx', 0.0066872493595758215) +zone = ('alz027', 0.0034577406291948871) + +[fips0148712] +centroid = (0.56726785596099305, -1.5075186468189712) +description = Millbrook city, AL +station = ('kmxf', 0.0020752404730048392) +zone = ('alz043', 0.0037020454514870003) + +[fips0148784] +centroid = (0.57930022563741201, -1.499758424272414) +description = Millerville CDP, AL +station = ('kalx', 0.0048539425338479701) +zone = ('alz028', 0.0016913717028055125) + +[fips0148808] +centroid = (0.58566154933520342, -1.5373275788993879) +description = Millport town, AL +station = ('kcbm', 0.005590454135500314) +zone = ('alz012', 0.0039024116252410813) + +[fips0148832] +centroid = (0.55195585554044402, -1.5415881370430162) +description = Millry town, AL +station = ('kmei', 0.013865754341324834) +zone = ('alz052', 0.0041839308777364094) + +[fips0149072] +centroid = (0.58536510516175222, -1.517393806993218) +description = Minor CDP, AL +station = ('kbhm', 0.0028093400073765564) +zone = ('alz024', 0.00069063673171581858) + +[fips0150000] +centroid = (0.53526501010423444, -1.5376390154511139) +description = Mobile city, AL +station = ('kbfm', 0.00079312017532672983) +zone = ('alz063', 0.003187504430663905) + +[fips0150192] +centroid = (0.55006185914276484, -1.5241561375399475) +description = Monroeville city, AL +station = ('kgzh', 0.0044845518745557479) +zone = ('alz055', 0.0011052794763243383) + +[fips0150312] +centroid = (0.57815548163432151, -1.5157647690292839) +description = Montevallo city, AL +station = ('keet', 0.0013672101971608224) +zone = ('alz025', 0.0036379734143142614) + +[fips0151000] +centroid = (0.56454858062650837, -1.5056709889129325) +description = Montgomery city, AL +station = ('kmxf', 0.0015840566407111169) +zone = ('alz044', 0.0023769666953828601) + +[fips0151096] +centroid = (0.58649026657063541, -1.5096015052950089) +description = Moody city, AL +station = ('kbhm', 0.0037799702915330071) +zone = ('alz026', 0.0032572255718817289) + +[fips0151216] +centroid = (0.60828464672589411, -1.5100655010766515) +description = Moores Mill CDP, AL +station = ('kmdq', 0.00055177452315007002) +zone = ('alz006', 0.0016117755757739506) + +[fips0151264] +centroid = (0.60435453176954579, -1.516342001772796) +description = Mooresville town, AL +station = ('kdcu', 0.0010826495702734233) +zone = ('alz007', 0.0030524788738437668) + +[fips0151456] +centroid = (0.58899163754800865, -1.5150232658965741) +description = Morris town, AL +station = ('kbhm', 0.0032407676494869103) +zone = ('alz024', 0.0036151528531831374) + +[fips0151468] +centroid = (0.58325405961829502, -1.4920520451332806) +description = Morrison Crossroads CDP, AL +station = ('kctj', 0.006157739658507088) +zone = ('alz029', 0.0022089900325432303) + +[fips0151520] +centroid = (0.56180096114497113, -1.5128372584617438) +description = Mosses town, AL +station = ('kmgm', 0.0045552410978105962) +zone = ('alz042', 0.00073444130250253632) + +[fips0151600] +centroid = (0.60193442332214531, -1.5233706172035024) +description = Moulton city, AL +station = ('k9a4', 0.0029398283880318335) +zone = ('alz004', 0.00071519550182111132) + +[fips0151648] +centroid = (0.57589735719479873, -1.5293846901933168) +description = Moundville town, AL +station = ('ktcl', 0.0038459787280009797) +zone = ('alz032', 0.0040804567889467739) + +[fips0151696] +centroid = (0.58453675444546316, -1.5138020764722462) +description = Mountain Brook city, AL +station = ('kbhm', 0.0013314102900267185) +zone = ('alz024', 0.0025999834824270061) + +[fips0152320] +centroid = (0.57728060044017426, -1.503287794179212) +description = Mount Olive CDP, AL +station = ('kalx', 0.0037466586121763742) +zone = ('alz036', 0.0029651378131267362) + +[fips0152344] +centroid = (0.58778280505478475, -1.5162128299548558) +description = Mount Olive CDP, AL +station = ('kbhm', 0.0026296004691610019) +zone = ('alz024', 0.0021776857047665038) + +[fips0152608] +centroid = (0.54258691066244602, -1.5361244885394034) +description = Mount Vernon town, AL +station = ('kmob', 0.0077919688338669779) +zone = ('alz061', 0.0038474491025995861) + +[fips0152680] +centroid = (0.54214748911667132, -1.5363543309485983) +description = Movico CDP, AL +station = ('kmob', 0.0073105336636763883) +zone = ('alz061', 0.0033920339190173835) + +[fips0152776] +centroid = (0.58560842151277281, -1.5179703241517366) +description = Mulga town, AL +station = ('kbhm', 0.0032564594190511325) +zone = ('alz024', 0.0011172275913433022) + +[fips0152848] +centroid = (0.58519247464543733, -1.5001548758120045) +description = Munford town, AL +station = ('kanb', 0.0017668404676616336) +zone = ('alz027', 0.0040522342387824149) + +[fips0153016] +centroid = (0.60637375554105555, -1.5294977700755537) +description = Muscle Shoals city, AL +station = ('kmsl', 0.00050092720653149749) +zone = ('alz002', 0.0025628564400471919) + +[fips0153112] +centroid = (0.56290503897649036, -1.5350041791458406) +description = Myrtlewood town, AL +station = ('kmei', 0.011898710299990633) +zone = ('alz039', 0.0023594913588567256) + +[fips0153208] +centroid = (0.56044953525185948, -1.5358156874348479) +description = Nanafalia CDP, AL +station = ('kmei', 0.011790970955774426) +zone = ('alz039', 0.0038645504710350231) + +[fips0153232] +centroid = (0.5908751270635908, -1.4954806222757759) +description = Nances Creek CDP, AL +station = ('kanb', 0.0053085195007752132) +zone = ('alz019', 0.0025127641399058718) + +[fips0153256] +centroid = (0.54654758633399669, -1.4914693844157949) +description = Napier Field town, AL +station = ('kdhn', 7.9520764003402017e-05) +zone = ('alz066', 0.0030944628932909652) + +[fips0153376] +centroid = (0.59498892047041896, -1.5289330164361934) +description = Natural Bridge town, AL +station = ('k1m4', 0.0033148354853229809) +zone = ('alz014', 0.0034467434817573805) + +[fips0153400] +centroid = (0.59318388350471396, -1.5269622255514264) +description = Nauvoo town, AL +station = ('kjfx', 0.0029968521405939297) +zone = ('alz014', 0.0032825472328599078) + +[fips0153448] +centroid = (0.5930590226500263, -1.5118149143990955) +description = Nectar town, AL +station = ('k3a1', 0.0060999180861279461) +zone = ('alz017', 0.00077040316395495477) + +[fips0153472] +centroid = (0.55827846783542612, -1.5417638742453996) +description = Needham town, AL +station = ('kmei', 0.0085937974764756456) +zone = ('alz051', 0.0012279044954704526) + +[fips0153784] +centroid = (0.56881676585896801, -1.527787312502014) +description = Newbern town, AL +station = ('ktcl', 0.010987573627359977) +zone = ('alz032', 0.0032987056595667175) + +[fips0153856] +centroid = (0.54747004520355325, -1.4996772839154888) +description = New Brockton town, AL +station = ('klor', 0.002640053193986172) +zone = ('alz065', 0.0011190348971191063) + +[fips0154168] +centroid = (0.60280132836161104, -1.5081804058581576) +description = New Hope city, AL +station = ('khua', 0.0045743264559356235) +zone = ('alz008', 0.0033514321157852014) + +[fips0154312] +centroid = (0.60898612945885566, -1.5084150828293807) +description = New Market CDP, AL +station = ('kmdq', 0.0019574847153654004) +zone = ('alz006', 0.0028745766928761009) + +[fips0154432] +centroid = (0.5764488463318439, -1.497168373115747) +description = New Site town, AL +station = ('kalx', 0.0033114491839379245) +zone = ('alz037', 0.0029013304628220204) + +[fips0154480] +centroid = (0.54700763767152982, -1.4937977583577104) +description = Newton town, AL +station = ('kozr', 0.0021643520963336234) +zone = ('alz066', 0.0016165175238686605) + +[fips0154582] +centroid = (0.59574513672872309, -1.5049625423162556) +description = New Union CDP, AL +station = ('k8a0', 0.0017086337430309545) +zone = ('alz018', 0.0031902903400213745) + +[fips0154600] +centroid = (0.5483929927653004, -1.4894061608938423) +description = Newville town, AL +station = ('kdhn', 0.0024783467602408969) +zone = ('alz067', 0.0021700735573014791) + +[fips0155044] +centroid = (0.60528627579072292, -1.5237821658411226) +description = North Courtland town, AL +station = ('k9a4', 0.00071748469652069735) +zone = ('alz004', 0.0027645406804253192) + +[fips0155152] +centroid = (0.58238242473655644, -1.5201972770108187) +description = North Johns town, AL +station = ('keet', 0.0056448930254453019) +zone = ('alz024', 0.0044071445955355089) + +[fips0155200] +centroid = (0.58045624446747057, -1.5288456627071312) +description = Northport city, AL +station = ('ktcl', 0.00077473559331920651) +zone = ('alz023', 0.0011805887305672681) + +[fips0155440] +centroid = (0.56819907638339462, -1.4951987341482862) +description = Notasulga town, AL +station = ('kauo', 0.0036209025159843833) +zone = ('alz045', 0.0029778291778124592) + +[fips0155752] +centroid = (0.57927535469557112, -1.5062774035615378) +description = Oak Grove town, AL +station = ('kalx', 0.0069216388443803659) +zone = ('alz027', 0.0038747673426265282) + +[fips0155848] +centroid = (0.55713737157047227, -1.5199240631697115) +description = Oak Hill town, AL +station = ('kgzh', 0.0088286252028759588) +zone = ('alz054', 0.003506125806674486) + +[fips0155992] +centroid = (0.58842592397755977, -1.5252205265842762) +description = Oakman town, AL +station = ('kjfx', 0.0034357925536327698) +zone = ('alz015', 0.0020435270092259406) + +[fips0156400] +centroid = (0.58819122955304404, -1.5083723746225843) +description = Odenville town, AL +station = ('kbhm', 0.0052929349572640259) +zone = ('alz026', 0.0015988627533747881) + +[fips0156472] +centroid = (0.5897425654586792, -1.5014904715688007) +description = Ohatchee town, AL +station = ('kgad', 0.0031861585820169487) +zone = ('alz019', 0.0029617677369918869) + +[fips0157000] +centroid = (0.59248297673040551, -1.5095442934021284) +description = Oneonta city, AL +station = ('k8a0', 0.0059815152432497647) +zone = ('alz017', 0.0012622831811844387) + +[fips0157024] +centroid = (0.54495362948802784, -1.5058185914077737) +description = Onycha town, AL +station = ('k79j', 0.0020724397298552823) +zone = ('alz060', 0.0026351308799704748) + +[fips0157048] +centroid = (0.57003743168452026, -1.4901427421980613) +description = Opelika city, AL +station = ('kauo', 0.0011099298491620802) +zone = ('alz047', 0.0010940860234902403) + +[fips0157120] +centroid = (0.54601534817860109, -1.5054763672480427) +description = Opp city, AL +station = ('k79j', 0.0018972892321707986) +zone = ('alz060', 0.0029576021070615356) + +[fips0157144] +centroid = (0.52872712889931139, -1.5286759643439596) +description = Orange Beach city, AL +station = ('kjka', 0.0012574262548351893) +zone = ('alz064', 0.0037114200609154983) + +[fips0157240] +centroid = (0.56385948973123601, -1.5227203075242093) +description = Orrville town, AL +station = ('kmxf', 0.013026531883348543) +zone = ('alz040', 0.0020762026418008664) + +[fips0157384] +centroid = (0.57320471558469943, -1.5004078089272035) +description = Our Town CDP, AL +station = ('kalx', 0.0012670970452159243) +zone = ('alz037', 0.0025105753931352233) + +[fips0157504] +centroid = (0.60363011541021305, -1.5089248760505958) +description = Owens Cross Roads town, AL +station = ('khua', 0.0036277682122942442) +zone = ('alz006', 0.0033880476256767955) + +[fips0157576] +centroid = (0.58638875822133929, -1.4987346664930716) +description = Oxford city, AL +station = ('kanb', 0.00039591865632981703) +zone = ('alz019', 0.0031031847329604759) + +[fips0157648] +centroid = (0.54893423681963638, -1.4947878487357815) +description = Ozark city, AL +station = ('klor', 0.0022331535537943904) +zone = ('alz066', 0.00061355743092011766) + +[fips0157696] +centroid = (0.60494679179791755, -1.506812469150322) +description = Paint Rock town, AL +station = ('kmdq', 0.0047422912253839364) +zone = ('alz006', 0.0035782102530791636) + +[fips0157912] +centroid = (0.57503046960862558, -1.540467129517753) +description = Panola CDP, AL +station = ('kgtr', 0.0099555702014983549) +zone = ('msz039', 0.0053265613421215573) + +[fips0158272] +centroid = (0.58874006578962612, -1.5233255877088008) +description = Parrish town, AL +station = ('kjfx', 0.0029584357507579282) +zone = ('alz015', 0.0012653365229333639) + +[fips0158848] +centroid = (0.58157685056700603, -1.5139365889976972) +description = Pelham city, AL +station = ('keet', 0.0024919123157880066) +zone = ('alz025', 0.0015567575378765128) + +[fips0158896] +centroid = (0.58574612799075509, -1.5056738512529058) +description = Pell City city, AL +station = ('kanb', 0.0061022371960981906) +zone = ('alz026', 0.0027850419134633525) + +[fips0158968] +centroid = (0.56211749405811295, -1.5368632340518951) +description = Pennington town, AL +station = ('kmei', 0.010479680848748106) +zone = ('alz051', 0.0044838619430563062) + +[fips0159016] +centroid = (0.57613025393018491, -1.4918171063626697) +description = Penton CDP, AL +station = ('klgc', 0.005888437340763269) +zone = ('alz038', 0.0020604040758942605) + +[fips0159088] +centroid = (0.52977554818098438, -1.5272640453389739) +description = Perdido Beach town, AL +station = ('kjka', 0.0027138104749292588) +zone = ('alz064', 0.003475544679646992) + +[fips0159232] +centroid = (0.55123901391006491, -1.5230273982060976) +description = Peterman CDP, AL +station = ('kgzh', 0.0043066032712649463) +zone = ('alz055', 0.0015448497224645153) + +[fips0159328] +centroid = (0.55589984586434571, -1.5045338196387956) +description = Petrey town, AL +station = ('ktoi', 0.0027826599602217921) +zone = ('alz058', 0.0026457545547707885) + +[fips0159472] +centroid = (0.56656302219586763, -1.4839665630273216) +description = Phenix City city, AL +station = ('kcsg', 0.0014632638430380951) +zone = ('gaz089', 0.0023367625419162142) + +[fips0159496] +centroid = (0.59954745867724046, -1.5307640413544603) +description = Phil Campbell town, AL +station = ('k1m4', 0.001970684202961879) +zone = ('alz003', 0.0025291072016618401) + +[fips0159592] +centroid = (0.5800738428283585, -1.54094147510186) +description = Pickensville town, AL +station = ('kgtr', 0.0056868350394344005) +zone = ('alz022', 0.003033730316898243) + +[fips0159640] +centroid = (0.59212101289683439, -1.494271353450239) +description = Piedmont city, AL +station = ('kanb', 0.0068819077582458086) +zone = ('alz019', 0.0040752884195435482) + +[fips0159760] +centroid = (0.563948815682353, -1.5015592375413291) +description = Pike Road town, AL +station = ('kmxf', 0.0050753289240682434) +zone = ('alz044', 0.0030331451039821372) + +[fips0159832] +centroid = (0.54662235623915212, -1.4928917579430001) +description = Pinckard town, AL +station = ('kdhn', 0.0012889351237377546) +zone = ('alz066', 0.0022585703103365257) + +[fips0159880] +centroid = (0.55627404445597328, -1.518245492761606) +description = Pine Apple town, AL +station = ('kgzh', 0.0080011717975839829) +zone = ('alz054', 0.0051497527290779999) + +[fips0160240] +centroid = (0.55825898996097389, -1.5286905378432136) +description = Pine Hill town, AL +station = ('kgzh', 0.012743823465368273) +zone = ('alz054', 0.0041351862564504493) + +[fips0160264] +centroid = (0.56862027669177839, -1.5089125016661991) +description = Pine Level CDP, AL +station = ('kmxf', 0.0036595729329770401) +zone = ('alz041', 0.0028800744061835653) + +[fips0160372] +centroid = (0.60123014806238062, -1.4972135596900811) +description = Pine Ridge town, AL +station = ('k4a9', 0.0010064109906377807) +zone = ('alz010', 0.00035539265698200157) + +[fips0160648] +centroid = (0.58823339670777219, -1.5126723423007229) +description = Pinson city, AL +station = ('kbhm', 0.0026544744024794252) +zone = ('alz024', 0.0041977693094823231) + +[fips0160720] +centroid = (0.60535638566677552, -1.4982955241999774) +description = Pisgah town, AL +station = ('k4a6', 0.0022114097783072005) +zone = ('alz009', 0.0027541868331338679) + +[fips0161008] +centroid = (0.58457372051902035, -1.5180562641641049) +description = Pleasant Grove city, AL +station = ('kbhm', 0.003556756211311669) +zone = ('alz024', 0.0015924146510007402) + +[fips0161038] +centroid = (0.6062367995546516, -1.504568604050788) +description = Pleasant Groves town, AL +station = ('k4a6', 0.0030988395977090567) +zone = ('alz009', 0.003056492994259656) + +[fips0161488] +centroid = (0.53223283214145223, -1.5343183520162693) +description = Point Clear CDP, AL +station = ('kcqf', 0.00067592569325820623) +zone = ('alz064', 0.003610405787115533) + +[fips0161536] +centroid = (0.54146880038374079, -1.5214555023218739) +description = Pollard town, AL +station = ('knse', 0.0055854189307387881) +zone = ('alz059', 0.0017939557756813467) + +[fips0162075] +centroid = (0.60270641735688746, -1.4992008090296944) +description = Powell town, AL +station = ('k4a9', 0.0027388924082834124) +zone = ('alz010', 0.0018523416797255837) + +[fips0162328] +centroid = (0.56657288330614142, -1.5090337322360425) +description = Prattville city, AL +station = ('kmxf', 0.001959255790057444) +zone = ('alz041', 0.0029579266272921046) + +[fips0162472] +centroid = (0.60256590089880946, -1.5163713058509369) +description = Priceville town, AL +station = ('kdcu', 0.0024005999788244956) +zone = ('alz007', 0.0013062175739021666) + +[fips0162496] +centroid = (0.53709182877900441, -1.5381712536065093) +description = Prichard city, AL +station = ('kmob', 0.0021964389883682156) +zone = ('alz061', 0.0027515060325603909) + +[fips0162688] +centroid = (0.56448112365091874, -1.5319822113591826) +description = Providence town, AL +station = ('ktcl', 0.01543740903531185) +zone = ('alz039', 0.0016660721990748946) + +[fips0162952] +centroid = (0.55882098598011609, -1.5364667126991343) +description = Putnam CDP, AL +station = ('kmei', 0.011935110275442633) +zone = ('alz051', 0.0033998281519454446) + +[fips0163216] +centroid = (0.58899535509931544, -1.5034149065086346) +description = Ragland town, AL +station = ('kgad', 0.0039197543766424005) +zone = ('alz026', 0.0026032858375848416) + +[fips0163288] +centroid = (0.59216886982492412, -1.5024532126374932) +description = Rainbow City city, AL +station = ('kgad', 0.0006614262854397092) +zone = ('alz018', 0.0021558377210579931) + +[fips0163336] +centroid = (0.60204158653821782, -1.4981303811461535) +description = Rainsville city, AL +station = ('k4a9', 0.0016961562212502923) +zone = ('alz010', 0.00076387915628096578) + +[fips0163408] +centroid = (0.58513651938961841, -1.4894467572522436) +description = Ranburne town, AL +station = ('kctj', 0.0032951332030880403) +zone = ('alz021', 0.0036826195167135693) + +[fips0163495] +centroid = (0.5738715709853015, -1.501575975248856) +description = Ray CDP, AL +station = ('kalx', 0.0012028199069087451) +zone = ('alz036', 0.0032782258163977025) + +[fips0163576] +centroid = (0.6010288941463332, -1.5382713307858189) +description = Red Bay city, AL +station = ('k1m4', 0.0081918648529872296) +zone = ('msz017', 0.0042365098006807555) + +[fips0163730] +centroid = (0.56690782944289164, -1.5034922245944979) +description = Redland CDP, AL +station = ('kmxf', 0.0037031701174212355) +zone = ('alz043', 0.0020117590391061451) + +[fips0163768] +centroid = (0.54815051417232086, -1.5115636393466858) +description = Red Level town, AL +station = ('k79j', 0.0038084739431571506) +zone = ('alz060', 0.0036008350589749414) + +[fips0163912] +centroid = (0.60541705331157492, -1.5125304819391208) +description = Redstone Arsenal CDP, AL +station = ('khua', 0.00029727126524127859) +zone = ('alz006', 0.0020686904577603181) + +[fips0163984] +centroid = (0.59476120736291127, -1.5015846146286531) +description = Reece City town, AL +station = ('kgad', 0.0020563844838914075) +zone = ('alz018', 0.00055864903738263739) + +[fips0164040] +centroid = (0.56852723318935461, -1.4978339195194099) +description = Reeltown CDP, AL +station = ('kalx', 0.0063039449872381243) +zone = ('alz045', 0.0037795252472326711) + +[fips0164104] +centroid = (0.58255973273526662, -1.5361916313557273) +description = Reform town, AL +station = ('ktcl', 0.0064889686784513076) +zone = ('alz022', 0.0019922151309382267) + +[fips0164152] +centroid = (0.54322666109976447, -1.4912058222454512) +description = Rehobeth town, AL +station = ('kdhn', 0.0033557381777230763) +zone = ('alz069', 0.0021109509244830378) + +[fips0164368] +centroid = (0.54820296131634327, -1.5226065818701491) +description = Repton town, AL +station = ('kgzh', 0.0028167740098424235) +zone = ('alz055', 0.0033837625015422472) + +[fips0164656] +centroid = (0.59440571870086512, -1.5027786467298201) +description = Ridgeville town, AL +station = ('kgad', 0.0016007114206803849) +zone = ('alz018', 0.001005140336912419) + +[fips0164776] +centroid = (0.54720257349568513, -1.510488376901117) +description = River Falls town, AL +station = ('k79j', 0.0025724971792138885) +zone = ('alz060', 0.0022866495892585091) + +[fips0164920] +centroid = (0.58671675794766665, -1.504549876667914) +description = Riverside town, AL +station = ('kanb', 0.0051836007176663517) +zone = ('alz026', 0.002360746055731095) + +[fips0165016] +centroid = (0.54211921478278913, -1.5197879798479337) +description = Riverview town, AL +station = ('knse', 0.0057932946185151775) +zone = ('alz059', 0.0016945532115483781) + +[fips0165040] +centroid = (0.57849470382773915, -1.4899793095669045) +description = Roanoke city, AL +station = ('klgc', 0.0049536309591460652) +zone = ('alz029', 0.0029030287274125644) + +[fips0165208] +centroid = (0.53332268553956752, -1.5307359590067962) +description = Robertsdale city, AL +station = ('kcqf', 0.0032614783656494425) +zone = ('alz064', 0.0012199412957159732) + +[fips0165412] +centroid = (0.58428783558754371, -1.5198545117990196) +description = Rock Creek CDP, AL +station = ('kbhm', 0.005066275381517678) +zone = ('alz024', 0.0030061207370486306) + +[fips0165472] +centroid = (0.57415862528737693, -1.504619462945191) +description = Rockford town, AL +station = ('kalx', 0.0036118086689642757) +zone = ('alz036', 0.00089558893546487928) + +[fips0165592] +centroid = (0.57875013276376841, -1.4884354611237605) +description = Rock Mills CDP, AL +station = ('klgc', 0.0040314966587274318) +zone = ('gaz052', 0.0032706155869310356) + +[fips0165784] +centroid = (0.54813419534381469, -1.533170728219913) +description = Rockville CDP, AL +station = ('kgzh', 0.011831678483077047) +zone = ('alz053', 0.0046315217878492923) + +[fips0166216] +centroid = (0.60786384784323821, -1.523380373594021) +description = Rogersville town, AL +station = ('k9a4', 0.0032120370437154497) +zone = ('alz005', 0.0043380065401285792) + +[fips0166408] +centroid = (0.59328551402705754, -1.509715475295164) +description = Rosa town, AL +station = ('k8a0', 0.0054309987148661544) +zone = ('alz017', 0.00099249852004372474) + +[fips0167056] +centroid = (0.60223872147723068, -1.5311457972217495) +description = Russellville city, AL +station = ('k1m4', 0.0043448943741493593) +zone = ('alz003', 0.0020040068325108125) + +[fips0167176] +centroid = (0.55368950853974253, -1.506254208135779) +description = Rutledge town, AL +station = ('ktoi', 0.0049102508439470534) +zone = ('alz058', 0.00021544112294199011) + +[fips0167536] +centroid = (0.60854360122701245, -1.5293191879864896) +description = St. Florian town, AL +station = ('kmsl', 0.0020693546624412028) +zone = ('alz001', 0.00074717099155940155) + +[fips0167584] +centroid = (0.55068232369184889, -1.5369485981056101) +description = St. Stephens CDP, AL +station = ('kgzh', 0.015226310001448105) +zone = ('alz052', 0.0033276906184729216) + +[fips0167608] +centroid = (0.58837494291010894, -1.4984297051128705) +description = Saks CDP, AL +station = ('kanb', 0.0022358481161451741) +zone = ('alz019', 0.0011211680000732544) + +[fips0167800] +centroid = (0.54301411490345664, -1.5017988363410428) +description = Samson city, AL +station = ('k0j4', 0.0040297978816016423) +zone = ('alz068', 0.003119258930227103) + +[fips0167920] +centroid = (0.59742969361616305, -1.4969961440251602) +description = Sand Rock town, AL +station = ('k4a9', 0.0043093978439311285) +zone = ('alz020', 0.0025997964433968597) + +[fips0168016] +centroid = (0.54626746098905166, -1.5079445595163354) +description = Sanford town, AL +station = ('k79j', 0.00023245171376867465) +zone = ('alz060', 0.0011751377471860638) + +[fips0168160] +centroid = (0.53811267185849587, -1.5375323932871094) +description = Saraland city, AL +station = ('kmob', 0.0033248804532016885) +zone = ('alz061', 0.0021066809705740045) + +[fips0168280] +centroid = (0.59642112020131299, -1.5030619136674186) +description = Sardis City town, AL +station = ('k8a0', 0.0022025681050366567) +zone = ('alz018', 0.0025310257887576249) + +[fips0168352] +centroid = (0.53857150146555266, -1.5369959837948015) +description = Satsuma city, AL +station = ('kbfm', 0.0039192834581807234) +zone = ('alz061', 0.0021535679048599794) + +[fips0168736] +centroid = (0.60466305362142081, -1.5018244926810471) +description = Scottsboro city, AL +station = ('k4a6', 0.00092721853406445179) +zone = ('alz009', 0.0024544142544472764) + +[fips0169000] +centroid = (0.60356354855254191, -1.5007203450363582) +description = Section town, AL +station = ('k4a6', 0.0017302032035806058) +zone = ('alz010', 0.0033593306963377433) + +[fips0169120] +centroid = (0.56578312181961399, -1.519042253018434) +description = Selma city, AL +station = ('kmxf', 0.0098619597347429384) +zone = ('alz040', 0.0019112051651477369) + +[fips0169180] +centroid = (0.56509336769922591, -1.5185619907681627) +description = Selmont-West Selmont CDP, AL +station = ('kmxf', 0.0094415797750843408) +zone = ('alz040', 0.0017195907086973103) + +[fips0169648] +centroid = (0.6065978034571341, -1.5306758324140648) +description = Sheffield city, AL +station = ('kmsl', 0.0014552991706295538) +zone = ('alz002', 0.0017695055182502702) + +[fips0169672] +centroid = (0.57782409596924533, -1.5112003665161757) +description = Shelby CDP, AL +station = ('keet', 0.0031853811484396661) +zone = ('alz025', 0.0029594250484208931) + +[fips0169840] +centroid = (0.60150613697699851, -1.4988537503079353) +description = Shiloh town, AL +station = ('k4a9', 0.0022599546330377353) +zone = ('alz010', 0.0010656044391047629) + +[fips0169978] +centroid = (0.58347688580389712, -1.5116458094478697) +description = Shoal Creek CDP, AL +station = ('kbhm', 0.0031182274226513951) +zone = ('alz025', 0.0029945899772499331) + +[fips0170128] +centroid = (0.5656875475897748, -1.5005076592137101) +description = Shorter town, AL +station = ('kmxf', 0.0058257411053467406) +zone = ('alz043', 0.0041449807736499015) + +[fips0170416] +centroid = (0.55445274102163966, -1.5415781712129875) +description = Silas town, AL +station = ('kmei', 0.011695266126922581) +zone = ('alz051', 0.0044863178116007615) + +[fips0170536] +centroid = (0.53310460664953085, -1.5315124734443006) +description = Silverhill town, AL +station = ('kcqf', 0.0025817659118946533) +zone = ('alz064', 0.0014842156928978191) + +[fips0170632] +centroid = (0.54540238854530065, -1.5383850564398789) +description = Sims Chapel CDP, AL +station = ('kmob', 0.0099693421770894429) +zone = ('alz052', 0.0029259941518391631) + +[fips0170704] +centroid = (0.59030733655133205, -1.5198836413442354) +description = Sipsey town, AL +station = ('kjfx', 0.0035607665302233591) +zone = ('alz015', 0.0031259268482165437) + +[fips0170896] +centroid = (0.60734881863426726, -1.5031199633183399) +description = Skyline town, AL +station = ('k4a6', 0.0027133982039743319) +zone = ('alz009', 0.001796189855711154) + +[fips0171040] +centroid = (0.5430132771454157, -1.4939755725019035) +description = Slocomb city, AL +station = ('kozr', 0.0034664181319441043) +zone = ('alz068', 0.0036068918198321085) + +[fips0171190] +centroid = (0.56784632788827405, -1.4854597969221579) +description = Smiths Station city, AL +station = ('kcsg', 0.002385036580777366) +zone = ('gaz089', 0.0034653982404836115) + +[fips0171201] +centroid = (0.59131261129389567, -1.5153350166075652) +description = Smoke Rise CDP, AL +station = ('kbhm', 0.0055636512107811462) +zone = ('alz017', 0.0040919835728673191) + +[fips0171280] +centroid = (0.59550278030879122, -1.5077818424701721) +description = Snead town, AL +station = ('k8a0', 0.0027144307404074431) +zone = ('alz017', 0.0035344334152935561) + +[fips0171496] +centroid = (0.60156249365854542, -1.5148766233328215) +description = Somerville town, AL +station = ('khsv', 0.0031993071955427601) +zone = ('alz007', 0.00085149923560433707) + +[fips0171832] +centroid = (0.59150676171988759, -1.501297665046333) +description = Southside city, AL +station = ('kgad', 0.0016266587005893261) +zone = ('alz018', 0.0027067378788273818) + +[fips0171900] +centroid = (0.59753401194555467, -1.5161045322747695) +description = South Vinemont town, AL +station = ('k3a1', 0.00057789371248551905) +zone = ('alz016', 0.00181831544194139) + +[fips0171976] +centroid = (0.53619912777319434, -1.5335814914593699) +description = Spanish Fort city, AL +station = ('kbfm', 0.0033626983439149485) +zone = ('alz062', 0.0042399864442624682) + +[fips0172408] +centroid = (0.59294009591479546, -1.4932296362328938) +description = Spring Garden CDP, AL +station = ('kanb', 0.0080290645230664346) +zone = ('alz020', 0.0036110552205851671) + +[fips0172600] +centroid = (0.58895646916358091, -1.5095146228048444) +description = Springville city, AL +station = ('kbhm', 0.0049045768401788249) +zone = ('alz026', 0.0025776006162870151) + +[fips0172672] +centroid = (0.60026882071038223, -1.5311703190977397) +description = Spruce Pine CDP, AL +station = ('k1m4', 0.0027083432280017262) +zone = ('alz003', 0.00185202981213093) + +[fips0172720] +centroid = (0.57745422579416272, -1.487716018952796) +description = Standing Rock CDP, AL +station = ('klgc', 0.0027911950931112073) +zone = ('gaz066', 0.003225747363206325) + +[fips0172888] +centroid = (0.59238851951128757, -1.5043356724088168) +description = Steele town, AL +station = ('kgad', 0.0016351982104885459) +zone = ('alz018', 0.002910498873464997) + +[fips0173056] +centroid = (0.58367646420386254, -1.5090299099649807) +description = Sterrett CDP, AL +station = ('kbhm', 0.0047332207926689155) +zone = ('alz025', 0.0042558937782864129) + +[fips0173080] +centroid = (0.60871494019968087, -1.497742952958796) +description = Stevenson city, AL +station = ('k4a6', 0.0043451710908501209) +zone = ('alz009', 0.0031481499941211494) + +[fips0173152] +centroid = (0.57727693524874513, -1.5055331079020251) +description = Stewartville CDP, AL +station = ('kalx', 0.0051860934233159571) +zone = ('alz036', 0.002439341378444941) + +[fips0173728] +centroid = (0.59151283546568445, -1.5380999045466879) +description = Sulligent city, AL +station = ('km40', 0.0052689495705188364) +zone = ('alz012', 0.0020015435552706256) + +[fips0173848] +centroid = (0.58904118744547274, -1.5192583945930009) +description = Sumiton city, AL +station = ('kjfx', 0.004628570138753312) +zone = ('alz024', 0.004050004892542803) + +[fips0173872] +centroid = (0.53191947572754916, -1.5304366524933715) +description = Summerdale town, AL +station = ('kcqf', 0.0030593054071654455) +zone = ('alz064', 0.00040161800634301901) + +[fips0174160] +centroid = (0.59502075527597531, -1.5085621093655686) +description = Susan Moore town, AL +station = ('k8a0', 0.0035146441340231063) +zone = ('alz017', 0.0027351546237795086) + +[fips0174304] +centroid = (0.56033626338340503, -1.5334669629538542) +description = Sweet Water town, AL +station = ('kmei', 0.013716178353818722) +zone = ('alz039', 0.0027063246467236386) + +[fips0174352] +centroid = (0.57905809611028292, -1.5055228453660232) +description = Sylacauga city, AL +station = ('kalx', 0.0063221327707496493) +zone = ('alz027', 0.0037907965953140532) + +[fips0174400] +centroid = (0.60322144656585863, -1.4975748952051213) +description = Sylvania town, AL +station = ('k4a9', 0.0019540359061617258) +zone = ('alz010', 0.0017844993365723838) + +[fips0174424] +centroid = (0.58518495227636125, -1.5189810966814441) +description = Sylvan Springs town, AL +station = ('kbhm', 0.0041439586334843063) +zone = ('alz024', 0.0020101508813291707) + +[fips0174592] +centroid = (0.58347297626637262, -1.5026979601585004) +description = Talladega city, AL +station = ('kanb', 0.0044904014305342244) +zone = ('alz027', 0.0013227030465955845) + +[fips0174616] +centroid = (0.57806093714874096, -1.5086235275019462) +description = Talladega Springs town, AL +station = ('keet', 0.0051674958880933387) +zone = ('alz025', 0.0041116558382774922) + +[fips0174688] +centroid = (0.56784517597096773, -1.4991000860785615) +description = Tallassee city, AL +station = ('kalx', 0.0067058661335334911) +zone = ('alz045', 0.003925155144047684) + +[fips0174976] +centroid = (0.58634802223659788, -1.5143567944684075) +description = Tarrant city, AL +station = ('kbhm', 0.00055228654741031665) +zone = ('alz024', 0.0020244522350178905) + +[fips0175096] +centroid = (0.54399729377769002, -1.4918340884162915) +description = Taylor town, AL +station = ('kdhn', 0.0026101920751785252) +zone = ('alz069', 0.002602392521871414) + +[fips0175768] +centroid = (0.53300061993269698, -1.5391635081928534) +description = Theodore CDP, AL +station = ('kbfm', 0.0024553767895079989) +zone = ('alz063', 0.00075461255981979793) + +[fips0175936] +centroid = (0.5631876950488508, -1.5293221724995105) +description = Thomaston town, AL +station = ('ktcl', 0.016552827376580381) +zone = ('alz039', 0.0024734974546341102) + +[fips0175960] +centroid = (0.55695350113377473, -1.5313841393844017) +description = Thomasville city, AL +station = ('kgzh', 0.013419766888742969) +zone = ('alz053', 0.0043952539543415008) + +[fips0176080] +centroid = (0.57451437574881092, -1.5135243073217912) +description = Thorsby town, AL +station = ('keet', 0.0047397497204244594) +zone = ('alz035', 0.0012103737098859474) + +[fips0176200] +centroid = (0.54738427972411019, -1.5401962020579658) +description = Tibbie CDP, AL +station = ('kmob', 0.011860783172574571) +zone = ('alz052', 0.00098118981300763294) + +[fips0176208] +centroid = (0.5939790031520451, -1.4996797273764415) +description = Tidmore Bend CDP, AL +station = ('kgad', 0.0025587875909013459) +zone = ('alz018', 0.0015991090716464338) + +[fips0176320] +centroid = (0.53374844115729903, -1.5396034533374034) +description = Tillmans Corner CDP, AL +station = ('kmob', 0.0018033629788191078) +zone = ('alz063', 0.00099406873573570226) + +[fips0176584] +centroid = (0.60512835840000245, -1.5255532561528764) +description = Town Creek town, AL +station = ('k9a4', 0.0010414210341449001) +zone = ('alz004', 0.0029534393987168317) + +[fips0176632] +centroid = (0.55694699105566481, -1.5412853573243803) +description = Toxey town, AL +station = ('kmei', 0.0098423284745153151) +zone = ('alz051', 0.0020139920944946955) + +[fips0176680] +centroid = (0.59026134712554201, -1.5140132962183226) +description = Trafford town, AL +station = ('kbhm', 0.0044127756587839994) +zone = ('alz017', 0.0038306349118187727) + +[fips0176824] +centroid = (0.60374984499689976, -1.5139477591049102) +description = Triana town, AL +station = ('khsv', 0.0011628268118624807) +zone = ('alz007', 0.002894113525045902) + +[fips0176872] +centroid = (0.60383615152841086, -1.5198991398679931) +description = Trinity town, AL +station = ('kdcu', 0.0021308198313952143) +zone = ('alz004', 0.0035198507873430099) + +[fips0176920] +centroid = (0.55505076063654302, -1.5003707730404761) +description = Troy city, AL +station = ('kprn', 0.00039476085787549007) +zone = ('alz049', 0.00035623414409195292) + +[fips0176944] +centroid = (0.58714167580735721, -1.5111084225711806) +description = Trussville city, AL +station = ('kbhm', 0.0027872256684865573) +zone = ('alz026', 0.0040711261335285923) + +[fips0177256] +centroid = (0.58002671893855473, -1.5276133555354678) +description = Tuscaloosa city, AL +station = ('ktcl', 0.0013572817673139477) +zone = ('alz023', 0.00098473127341473202) + +[fips0177280] +centroid = (0.60595538266605997, -1.5306991849194564) +description = Tuscumbia city, AL +station = ('kmsl', 0.0015698584165540644) +zone = ('alz002', 0.0015016306398925345) + +[fips0177304] +centroid = (0.56580448464965838, -1.4952814103949532) +description = Tuskegee city, AL +station = ('kauo', 0.0049468387330548133) +zone = ('alz045', 0.00062990827479972636) + +[fips0177352] +centroid = (0.59327779967176375, -1.5333118031833517) +description = Twin town, AL +station = ('k1m4', 0.0062059931130437436) +zone = ('alz011', 0.0025680535002495057) + +[fips0177580] +centroid = (0.60870298469430462, -1.5306215875809126) +description = Underwood-Petersville CDP, AL +station = ('kmsl', 0.0026120985203890376) +zone = ('alz001', 0.00076731112631858408) + +[fips0177616] +centroid = (0.57585061727743037, -1.5342697096900164) +description = Union town, AL +station = ('ktcl', 0.0057592063521512658) +zone = ('alz031', 0.0025428809467929678) + +[fips0177784] +centroid = (0.60050098440748245, -1.5088662329877287) +description = Union Grove town, AL +station = ('k8a0', 0.0041911406765147603) +zone = ('alz008', 0.0021989905950826941) + +[fips0177880] +centroid = (0.56094693663538542, -1.4960024233622446) +description = Union Springs city, AL +station = ('ktoi', 0.0065364334809851037) +zone = ('alz046', 0.00068786573092032542) + +[fips0177904] +centroid = (0.56631816995510531, -1.5273282036422771) +description = Uniontown town, AL +station = ('ktcl', 0.013513796222190788) +zone = ('alz033', 0.0045963946223676758) + +[fips0178120] +centroid = (0.54641659937363452, -1.527149359753825) +description = Uriah CDP, AL +station = ('kgzh', 0.0069612405188065416) +zone = ('alz055', 0.0050054541177303839) + +[fips0178204] +centroid = (0.57261613820104929, -1.4866200743555911) +description = Valley city, AL +station = ('klgc', 0.0038184674929519465) +zone = ('alz038', 0.0036533515073759962) + +[fips0178232] +centroid = (0.56700288007395527, -1.5190084459908229) +description = Valley Grande city, AL +station = ('kmxf', 0.0099771249527249289) +zone = ('alz040', 0.0030138492237783841) + +[fips0178240] +centroid = (0.60317718501602802, -1.4943610110139141) +description = Valley Head town, AL +station = ('k4a9', 0.0020854789918903003) +zone = ('alz010', 0.0031614583506638172) + +[fips0178264] +centroid = (0.57899538643025872, -1.5223918365589837) +description = Vance town, AL +station = ('ktcl', 0.0057450386865592678) +zone = ('alz034', 0.0033939434898669712) + +[fips0178312] +centroid = (0.58396720115065981, -1.5102198230891128) +description = Vandiver CDP, AL +station = ('kbhm', 0.0037232115893578977) +zone = ('alz025', 0.0038991930564479704) + +[fips0178480] +centroid = (0.58920324126652046, -1.5378860319001486) +description = Vernon city, AL +station = ('km40', 0.0057996012762655154) +zone = ('alz012', 0.00043628975489709402) + +[fips0178552] +centroid = (0.58403073113543247, -1.5138900061599616) +description = Vestavia Hills city, AL +station = ('kbhm', 0.0018245202547708089) +zone = ('alz024', 0.0027905056463353338) + +[fips0178984] +centroid = (0.59997743799176173, -1.5369469225895278) +description = Vina town, AL +station = ('k1m4', 0.0068422137605866811) +zone = ('alz003', 0.0033242959687898302) + +[fips0179008] +centroid = (0.58272574845371627, -1.5080694203710232) +description = Vincent town, AL +station = ('kbhm', 0.0059017795842691212) +zone = ('alz027', 0.0035018949914277626) + +[fips0179032] +centroid = (0.54557409403711188, -1.5422997077790546) +description = Vinegar Bend CDP, AL +station = ('kmob', 0.010246824668986501) +zone = ('alz052', 0.0035253762352839956) + +[fips0179272] +centroid = (0.55542033410565284, -1.5239876260006675) +description = Vredenburgh town, AL +station = ('kgzh', 0.0081379279849725216) +zone = ('alz054', 0.0029002119535007486) + +[fips0179344] +centroid = (0.57811238945508969, -1.4934536666956797) +description = Wadley town, AL +station = ('kalx', 0.0068222029364605795) +zone = ('alz029', 0.0033765935981803236) + +[fips0179488] +centroid = (0.58271227451189089, -1.5016939944128758) +description = Waldo town, AL +station = ('kanb', 0.0044108476266673394) +zone = ('alz027', 0.0018282414118738649) + +[fips0179728] +centroid = (0.59453934110839768, -1.5059952187280756) +description = Walnut Grove town, AL +station = ('k8a0', 0.0029036029994417389) +zone = ('alz018', 0.003664792072782429) + +[fips0179944] +centroid = (0.59018682156648172, -1.5152123548677352) +description = Warrior city, AL +station = ('kbhm', 0.0044403223215883575) +zone = ('alz017', 0.0046105000272902361) + +[fips0180064] +centroid = (0.60942104805516006, -1.5370121629969677) +description = Waterloo town, AL +station = ('kcrx', 0.0076664556516212908) +zone = ('msz006', 0.0039765364484093766) + +[fips0180256] +centroid = (0.57124807932016608, -1.4934962527294284) +description = Waverly town, AL +station = ('kauo', 0.0028306108373882671) +zone = ('alz047', 0.0038833852569059419) + +[fips0180352] +centroid = (0.58926818496798705, -1.4977207523707106) +description = Weaver city, AL +station = ('kanb', 0.003174077817483831) +zone = ('alz019', 0.00024370851060622975) + +[fips0180376] +centroid = (0.54554812353784221, -1.4885804805313088) +description = Webb town, AL +station = ('kdhn', 0.0026080463785030129) +zone = ('alz069', 0.0018327079571654535) + +[fips0180496] +centroid = (0.58133433706744131, -1.4920208910061326) +description = Wedowee town, AL +station = ('kanb', 0.0071494882496389274) +zone = ('alz029', 0.00047033438101670965) + +[fips0180736] +centroid = (0.57652126004250914, -1.5066340965007681) +description = Weogufka CDP, AL +station = ('kalx', 0.0056696729669886087) +zone = ('alz036', 0.002013232976326153) + +[fips0180928] +centroid = (0.57802934668927985, -1.5206082845963709) +description = West Blocton town, AL +station = ('keet', 0.0051106432970543072) +zone = ('alz034', 0.0020953249017160377) + +[fips0181084] +centroid = (0.58732865293012326, -1.498828163781101) +description = West End-Cobb Town CDP, AL +station = ('kanb', 0.0012498694286532908) +zone = ('alz019', 0.0022178000441442115) + +[fips0181336] +centroid = (0.58727761950279511, -1.5196232731264228) +description = West Jefferson town, AL +station = ('kbhm', 0.0048382012491511072) +zone = ('alz024', 0.002986675901852033) + +[fips0181504] +centroid = (0.58249738957438535, -1.5103752097524177) +description = Westover town, AL +station = ('kbhm', 0.0045549489146181361) +zone = ('alz025', 0.0026276612785718612) + +[fips0181528] +centroid = (0.597578936720501, -1.5178087066630019) +description = West Point town, AL +station = ('k3a1', 0.0016114332808783852) +zone = ('alz016', 0.0023258956098632243) + +[fips0181720] +centroid = (0.56791509386080263, -1.5045585858608814) +description = Wetumpka city, AL +station = ('kmxf', 0.0036156075014703833) +zone = ('alz043', 0.0012946034360399126) + +[fips0181744] +centroid = (0.5523328815654599, -1.5308428778767731) +description = Whatley CDP, AL +station = ('kgzh', 0.01061667055269085) +zone = ('alz053', 0.0018344512566753107) + +[fips0181912] +centroid = (0.56373338969277931, -1.5134686487719453) +description = White Hall town, AL +station = ('kmxf', 0.0053457831514158137) +zone = ('alz042', 0.0027054323009340869) + +[fips0182104] +centroid = (0.58921114760803195, -1.4955459324963853) +description = White Plains CDP, AL +station = ('kanb', 0.0038650269679878354) +zone = ('alz019', 0.0020080264014519216) + +[fips0182176] +centroid = (0.59636162192711251, -1.5020041743275401) +description = Whitesboro CDP, AL +station = ('k8a0', 0.003030526816243476) +zone = ('alz018', 0.0021860383668894159) + +[fips0182848] +centroid = (0.58006735020354105, -1.5094781803300628) +description = Wilsonville town, AL +station = ('keet', 0.0044255743949049488) +zone = ('alz025', 0.0025888501394873676) + +[fips0182872] +centroid = (0.57738223096251784, -1.5163360502000467) +description = Wilton town, AL +station = ('keet', 0.0022664473908346086) +zone = ('alz034', 0.0038896621769188748) + +[fips0182992] +centroid = (0.59221745979129969, -1.5322572577960043) +description = Winfield city, AL +station = ('k1m4', 0.0066864683382564663) +zone = ('alz013', 0.0037509704572412541) + +[fips0183400] +centroid = (0.58251458106751752, -1.4904664833210139) +description = Woodland town, AL +station = ('kctj', 0.0057165106177580419) +zone = ('alz029', 0.0016876147509089078) + +[fips0183640] +centroid = (0.57975162014185533, -1.5210267447378292) +description = Woodstock town, AL +station = ('keet', 0.0053646049065541298) +zone = ('alz034', 0.0038309429541259605) + +[fips0183664] +centroid = (0.60439802537450538, -1.5059412706008966) +description = Woodville town, AL +station = ('k4a6', 0.0041728236740502089) +zone = ('alz008', 0.004593902397847213) + +[fips0183976] +centroid = (0.55784456153008788, -1.5268265960152538) +description = Yellow Bluff town, AL +station = ('kgzh', 0.011469646333595495) +zone = ('alz054', 0.0025974861093184518) + +[fips0184096] +centroid = (0.56724263595330171, -1.5409756486486139) +description = York city, AL +station = ('kmei', 0.0073605378799761409) +zone = ('alz030', 0.0020844632699346223) + +[fips0200065] +centroid = (0.90478186073309907, -3.0816580645296003) +description = Adak city, AK +station = ('padk', 0.001082155292898833) +zone = ('akz187', 0.019147035892597801) + +[fips0200650] +centroid = (0.99395755645486472, -2.691546852325978) +description = Akhiok city, AK +station = ('padq', 0.021465492946245404) +zone = ('akz171', 0.023418984693334071) + +[fips0200760] +centroid = (1.0631875945782541, -2.817043355927229) +description = Akiachak CDP, AK +station = ('pabe', 0.004318994241154216) +zone = ('akz155', 0.013005978770669491) + +[fips0200870] +centroid = (1.0630797332304807, -2.8137565693331656) +description = Akiak city, AK +station = ('pabe', 0.0056922647203317984) +zone = ('akz155', 0.014500100815802351) + +[fips0201090] +centroid = (0.94488977129002405, -2.8935955040483399) +description = Akutan city, AK +station = ('padu', 0.0086748761828731591) +zone = ('akz185', 0.017015307772105491) + +[fips0201200] +centroid = (1.0945162197449672, -2.873592320397818) +description = Alakanuk city, AK +station = ('paem', 0.0017100814105325366) +zone = ('akz214', 0.010863034808428087) + +[fips02013] +centroid = (0.96418483995642679, -2.8265737961209143) +description = Aleutians East Borough, AK +station = ('pavc', 0.0038450513948586076) +zone = ('akz181', 0.0097793672239161935) + +[fips0201301598] +centroid = (0.96418483995642679, -2.8265737961209143) +description = Aleutians East census subarea, AK +station = ('pavc', 0.0038450513948586076) +zone = ('akz181', 0.0097793672239161935) + +[fips0201305] +centroid = (1.1617597241137367, -2.6675263570696783) +description = Alatna CDP, AK +station = ('paim', 0.0094223473568367296) +zone = ('akz219', 0.0039264947879503022) + +[fips0201390] +centroid = (1.0942467758150443, -2.4641036774403915) +description = Alcan Border CDP, AK +station = ('cyxq', 0.0054940906241852982) +zone = ('akz224', 0.032674536001405179) + +[fips0201420] +centroid = (1.0347875795365098, -2.7692151908636173) +description = Aleknagik city, AK +station = ('padl', 0.0043748401059909769) +zone = ('akz161', 0.012649567300988231) + +[fips0201560] +centroid = (1.0133214958135512, -2.6687656455583495) +description = Aleneva CDP, AK +station = ('padq', 0.0066840061783592893) +zone = ('akz171', 0.012230130239248599) + +[fips02016] +centroid = (0.90686342766549011, 3.1125994709484659) +description = Aleutians West Census Area, AK +station = ('pasy', 0.046916428610651553) + +[fips0201601615] +centroid = (0.90686342766549011, 3.1125994709484659) +description = Aleutians West census subarea, AK +station = ('pasy', 0.046916428610651553) + +[fips0201860] +centroid = (1.1617704578886363, -2.6642417521371802) +description = Allakaket city, AK +station = ('papr', 0.014515246584762454) +zone = ('akz219', 0.0033697902109235721) + +[fips0201970] +centroid = (1.1711273949013807, -2.7549638793893827) +description = Ambler city, AK +station = ('pafm', 1.8817954289837127e-05) +zone = ('akz217', 0.0058460740001819653) + +[fips02020] +centroid = (1.0677496583501644, -2.6053289660875674) +description = Anchorage Municipality, AK +station = ('paed', 0.0045607547140618203) +zone = ('akz101', 0.0020731813845661969) + +[fips0202003050] +centroid = (1.0677496583501644, -2.6053289660875674) +description = Anchorage census subarea, AK +station = ('paed', 0.0045607547140618203) +zone = ('akz101', 0.0020731813845661969) + +[fips0202080] +centroid = (1.1894731615343312, -2.6476657144591669) +description = Anaktuvuk Pass city, AK +station = ('pakp', 0.00042392493036684487) +zone = ('akz219', 0.031431562030482425) + +[fips0203000] +centroid = (1.0677496583501644, -2.6053289660875674) +description = Anchorage municipality, AK +station = ('paed', 0.0045607547140618203) +zone = ('akz101', 0.0020731813845661969) + +[fips0203110] +centroid = (1.0428513148399889, -2.6477020522141936) +description = Anchor Point CDP, AK +station = ('paho', 0.0026112741846445893) +zone = ('akz121', 0.013245580488520977) + +[fips0203220] +centroid = (1.122414854052491, -2.6033840584356076) +description = Anderson city, AK +station = ('pann', 0.0042573760581947106) +zone = ('akz225', 0.014537209536749206) + +[fips0203440] +centroid = (1.0025296363562797, -2.3470788449486886) +description = Angoon city, AK +station = ('pagn', 0.001432903583062571) +zone = ('akz024', 0.0026380298129264766) + +[fips0203550] +centroid = (1.0747394576583065, -2.7843020089040738) +description = Aniak city, AK +station = ('pani', 0.00013037083505243986) +zone = ('akz215', 0.019086010543566876) + +[fips0203880] +centroid = (1.093117443069249, -2.7962563274563439) +description = Anvik city, AK +station = ('panv', 0.00035819020713024382) +zone = ('akz215', 0.0039650133874296533) + +[fips0203990] +centroid = (1.1897110150047931, -2.5377319278255142) +description = Arctic Village CDP, AK +station = ('parc', 0.0014584825718488878) +zone = ('akz218', 0.010844030888897325) + +[fips0204210] +centroid = (0.91129035059341856, -3.0406365788290115) +description = Atka city, AK +station = ('paak', 0.00015976788646657197) +zone = ('akz187', 0.0069478979238956672) + +[fips0204430] +centroid = (1.0621926870914471, -2.8323549898286351) +description = Atmautluak CDP, AK +station = ('pabe', 0.0040405041910457577) +zone = ('akz155', 0.005826963059849379) + +[fips0204500] +centroid = (1.2301217750935241, -2.7458472567613454) +description = Atqasuk city, AK +station = ('patq', 0.00069414259317903196) +zone = ('akz202', 0.011896888863204249) + +[fips0204670] +centroid = (0.92296881985741075, 3.023882639740342) +description = Attu Station CDP, AK +station = ('pasy', 0.0095334473613589606) + +[fips02050] +centroid = (1.0634101938710534, -2.7952032655988606) +description = Bethel Census Area, AK +station = ('palg', 0.010780013274448549) +zone = ('akz215', 0.030551624360312932) + +[fips0205000] +centroid = (1.1309747690090197, -2.572355769526578) +description = Badger CDP, AK +station = ('pafb', 0.0015822712832837863) +zone = ('akz222', 0.0033852350659948787) + +[fips0205003580] +centroid = (1.0728330170630604, -2.7347949069132138) +description = Aniak census subarea, AK +station = ('pasl', 0.0057587113574638429) +zone = ('akz152', 0.0032503481007268814) + +[fips0205045510] +centroid = (1.0543933866229378, -2.8391054521364509) +description = Lower Kuskokwim census subarea, AK +station = ('paki', 0.014481988903558826) +zone = ('akz155', 0.0047726949086306439) + +[fips0205200] +centroid = (1.2436183712926114, -2.7366579237166699) +description = Barrow city, AK +station = ('pabr', 0.00054161328798952256) +zone = ('akz202', 0.012800496194143255) + +[fips0205585] +centroid = (1.050751303353046, -2.6068785217573658) +description = Bear Creek CDP, AK +station = ('pawd', 0.0016946841657093609) +zone = ('akz125', 0.0046614108976350916) + +[fips0205750] +centroid = (1.1587342831218672, -2.5715317472268335) +description = Beaver CDP, AK +station = ('pafb', 0.027236581957458265) +zone = ('akz220', 0.012319530576922668) + +[fips02060] +centroid = (1.0250558330668995, -2.7399332609508407) +description = Bristol Bay Borough, AK +station = ('pakn', 0.0031646127643589301) +zone = ('akz161', 0.010165353004462844) + +[fips0206009050] +centroid = (1.0250558330668995, -2.7399332609508407) +description = Bristol Bay census subarea, AK +station = ('pakn', 0.0031646127643589301) +zone = ('akz161', 0.010165353004462844) + +[fips0206245] +centroid = (1.067989553855851, -2.6386939541590451) +description = Beluga CDP, AK +station = ('paen', 0.01061851561886583) +zone = ('akz121', 0.015650279454867244) + +[fips0206520] +centroid = (1.0610364937284635, -2.8238276252626564) +description = Bethel city, AK +station = ('pabe', 0.00037898144964293684) +zone = ('akz155', 0.0092380063140516666) + +[fips0206630] +centroid = (1.1677355394863473, -2.6448324516712343) +description = Bettles city, AK +station = ('pabt', 0.00018157913680663535) +zone = ('akz219', 0.011434692612602243) + +[fips02068] +centroid = (1.1114733500651535, -2.6184602125143348) +description = Denali Borough, AK +station = ('paec', 0.014990369304033021) +zone = ('akz225', 0.001791839281008984) + +[fips0206818765] +centroid = (1.1114733500651535, -2.6184602125143348) +description = Denali census subarea, AK +station = ('paec', 0.014990369304033021) +zone = ('akz225', 0.001791839281008984) + +[fips0206850] +centroid = (1.1197447446430351, -2.5436589437922397) +description = Big Delta CDP, AK +station = ('pabi', 0.0027402791535311201) +zone = ('akz223', 0.0067241628356636673) + +[fips02070] +centroid = (1.044140013599784, -2.7681311668652038) +description = Dillingham Census Area, AK +station = ('padl', 0.013544391087823411) +zone = ('akz161', 0.015112731936489536) + +[fips0207019000] +centroid = (1.044140013599784, -2.7681311668652038) +description = Dillingham census subarea, AK +station = ('padl', 0.013544391087823411) +zone = ('akz161', 0.015112731936489536) + +[fips0207070] +centroid = (1.0737619161975569, -2.6174333829555088) +description = Big Lake CDP, AK +station = ('paed', 0.0049145161917202506) +zone = ('akz101', 0.0068388409345587669) + +[fips0207620] +centroid = (1.1565690451051354, -2.5459794637525208) +description = Birch Creek CDP, AK +station = ('pfyu', 0.0067393183703194819) +zone = ('akz220', 0.00321341083777579) + +[fips0208740] +centroid = (1.1404665501597731, -2.9061214353839304) +description = Brevig Mission city, AK +station = ('pate', 0.0023148678470116561) +zone = ('akz207', 0.026889608752476341) + +[fips02090] +centroid = (1.1290680142545084, -2.5586503621357819) +description = Fairbanks North Star Borough, AK +station = ('paei', 0.00380184673542232) +zone = ('akz222', 0.0076614470238593226) + +[fips0209024450] +centroid = (1.1290680142545084, -2.5586503621357819) +description = Fairbanks North Star census subarea, AK +station = ('paei', 0.00380184673542232) +zone = ('akz222', 0.0076614470238593226) + +[fips0209600] +centroid = (1.151500277344786, -2.8124008499300941) +description = Buckland city, AK +station = ('pabl', 0.00014230563468414998) +zone = ('akz209', 0.011861283114745933) + +[fips0209657] +centroid = (1.0767920521251144, -2.6026605845540711) +description = Buffalo Soapstone CDP, AK +station = ('paaq', 0.0016786888826601822) +zone = ('akz111', 0.001905400211898062) + +[fips0209710] +centroid = (1.074230659274765, -2.6002488536870803) +description = Butte CDP, AK +station = ('paaq', 0.0013176561027412887) +zone = ('akz111', 0.0016652965937914617) + +[fips02100] +centroid = (1.0314879298658595, -2.3662842735047094) +description = Haines Borough, AK +station = ('pahn', 0.002676650687357261) +zone = ('akz019', 0.0028094484726267376) + +[fips0210031160] +centroid = (1.0314879298658595, -2.3662842735047094) +description = Haines census subarea, AK +station = ('pahn', 0.002676650687357261) +zone = ('akz019', 0.0028094484726267376) + +[fips0210150] +centroid = (1.1063019918513719, -2.5971046953994898) +description = Cantwell CDP, AK +station = ('pain', 0.0061184596295919286) +zone = ('akz225', 0.010675079557963504) + +[fips02105] +centroid = (1.0136249911171804, -2.3594250946377864) +description = Hoonah-Angoon Census Area, AK +station = ('paoh', 0.0025423016499764471) +zone = ('akz021', 0.0035510822328411844) + +[fips0210533390] +centroid = (1.0136249911171804, -2.3594250946377864) +description = Hoonah-Angoon census subarea, AK +station = ('paoh', 0.0025423016499764471) +zone = ('akz021', 0.0035510822328411844) + +[fips0210540560] +centroid = (1.0366934965329802, -2.3717193160618821) +description = Klukwan census subarea, AK +station = ('pahn', 0.004208158849965349) +zone = ('akz019', 0.0069498852996269962) + +[fips02110] +centroid = (1.0187958082788939, -2.3418615147624093) +description = Juneau City and Borough, AK +station = ('pajn', 0.0035732385318627026) +zone = ('akz025', 0.0070418496938238441) + +[fips0211036450] +centroid = (1.0187958082788939, -2.3418615147624093) +description = Juneau census subarea, AK +station = ('pajn', 0.0035732385318627026) +zone = ('akz025', 0.0070418496938238441) + +[fips0211690] +centroid = (1.1433233748926075, -2.5242338306432703) +description = Central CDP, AK +station = ('pfyu', 0.019030311583713138) +zone = ('akz220', 0.017070164184096556) + +[fips0211800] +centroid = (1.1632042458691496, -2.5097639341335158) +description = Chalkyitsik CDP, AK +station = ('pfyu', 0.010266479019818127) +zone = ('akz220', 0.013042520936048806) + +[fips02122] +centroid = (1.053591966337007, -2.6585199519839047) +description = Kenai Peninsula Borough, AK +station = ('paen', 0.010100023585392786) +zone = ('akz121', 0.013946405828379294) + +[fips0212238460] +centroid = (1.053591966337007, -2.6585199519839047) +description = Kenai-Cook Inlet census subarea, AK +station = ('paen', 0.010100023585392786) +zone = ('akz121', 0.013946405828379294) + +[fips0212268610] +centroid = (1.0487231609490586, -2.6105101505050379) +description = Seward-Hope census subarea, AK +station = ('pawd', 0.0011716429208662425) +zone = ('akz125', 0.0073779128681603747) + +[fips0212350] +centroid = (1.0894055989891549, -2.6168749823146258) +description = Chase CDP, AK +station = ('patk', 0.002216722936978277) +zone = ('akz145', 0.0079998148226810475) + +[fips0212680] +centroid = (1.0498368380914636, -2.8667271026916832) +description = Chefornak city, AK +station = ('paki', 0.0042718019477591025) +zone = ('akz155', 0.015127217673360215) + +[fips0212920] +centroid = (1.1309562685189485, -2.5835023147944391) +description = Chena Ridge CDP, AK +station = ('pafa', 0.0011005818246857422) +zone = ('akz222', 0.0060455273390203632) + +[fips0212970] +centroid = (1.0488015785923506, -2.5829946508749115) +description = Chenega CDP, AK +station = ('pawd', 0.012667018311441137) +zone = ('akz125', 0.010175146509922064) + +[fips02130] +centroid = (0.96778398812671951, -2.288243324625062) +description = Ketchikan Gateway Borough, AK +station = ('pakt', 0.0062919528579160767) +zone = ('akz029', 0.0059777624453187907) + +[fips0213039010] +centroid = (0.96778398812671951, -2.288243324625062) +description = Ketchikan census subarea, AK +station = ('pakt', 0.0062919528579160767) +zone = ('akz029', 0.0059777624453187907) + +[fips0213230] +centroid = (1.0739165000094062, -2.8902159357512409) +description = Chevak city, AK +station = ('pava', 0.00016084758064198739) +zone = ('akz214', 0.017552626895831959) + +[fips0213340] +centroid = (1.0786182773879387, -2.5895705628042358) +description = Chickaloon CDP, AK +station = ('paaq', 0.00696823367680292) +zone = ('akz111', 0.0075401808068593246) + +[fips0213450] +centroid = (1.1185406419920843, -2.4753678404465451) +description = Chicken CDP, AK +station = ('paeg', 0.013172110253898318) +zone = ('akz224', 0.0097381055437359004) + +[fips0213550] +centroid = (0.9825218450365325, -2.7645254911635089) +description = Chignik city, AK +station = ('pajc', 0.00036749645955608907) +zone = ('akz181', 0.0299196485775713) + +[fips0213670] +centroid = (0.98270105544412722, -2.766320859005158) +description = Chignik Lagoon CDP, AK +station = ('pajc', 0.0012176788178503571) +zone = ('akz181', 0.029072215499245144) + +[fips0213780] +centroid = (0.98213113563018095, -2.7713927509048681) +description = Chignik Lake CDP, AK +station = ('pajc', 0.0040855217811958154) +zone = ('akz181', 0.026272117237967307) + +[fips0213860] +centroid = (1.0048701403364966, -2.6578482620212749) +description = Chiniak CDP, AK +station = ('padq', 0.0035817952016760045) +zone = ('akz171', 0.021436240769244344) + +[fips0213890] +centroid = (1.0840324458072577, -2.4792165008867029) +description = Chisana CDP, AK +station = ('pabn', 0.0091854753956040446) +zone = ('akz141', 0.023890967558906483) + +[fips0214000] +centroid = (1.0925140478402493, -2.5296984565312646) +description = Chistochina CDP, AK +station = ('pagk', 0.0088136220586081306) +zone = ('akz226', 0.0092505617894681012) + +[fips0214110] +centroid = (1.0742833856714677, -2.5163432669081742) +description = Chitina CDP, AK +station = ('pavd', 0.018962856120367383) +zone = ('akz141', 0.0087366762730632565) + +[fips0214330] +centroid = (1.0746958942401768, -2.7793856956538865) +description = Chuathbaluk city, AK +station = ('pani', 0.0024585569902965542) +zone = ('akz215', 0.019457772473150239) + +[fips0214880] +centroid = (1.1491065582756756, -2.5164093974335322) +description = Circle CDP, AK +station = ('pfyu', 0.014829136757228212) +zone = ('akz220', 0.013973287496703348) + +[fips02150] +centroid = (1.0045000083620261, -2.6813652297883741) +description = Kodiak Island Borough, AK +station = ('padq', 0.01125142024497301) +zone = ('akz171', 0.013783670423151114) + +[fips0215041200] +centroid = (1.0045000083620261, -2.6813652297883741) +description = Kodiak Island census subarea, AK +station = ('padq', 0.01125142024497301) +zone = ('akz171', 0.013783670423151114) + +[fips0215320] +centroid = (1.0507825447466566, -2.6425598759055053) +description = Clam Gulch CDP, AK +station = ('pasx', 0.0058285244622073773) +zone = ('akz121', 0.0063992070723729588) + +[fips0215430] +centroid = (1.0268359990907636, -2.7668496937685116) +description = Clark's Point city, AK +station = ('padl', 0.0037825049332238922) +zone = ('akz161', 0.014089444147674136) + +[fips0216360] +centroid = (0.97761448532540751, -2.3183538321469306) +description = Coffman Cove city, AK +station = ('pakw', 0.0078974446825637798) +zone = ('akz026', 0.01033793403898587) + +[fips02164] +centroid = (1.0158700255873132, -2.7350214855567079) +description = Lake and Peninsula Borough, AK +station = ('pakn', 0.008362562467069283) +zone = ('akz161', 0.019698287907387386) + +[fips0216420] +centroid = (1.0518570741539395, -2.6406512536486941) +description = Cohoe CDP, AK +station = ('pasx', 0.004413685459332249) +zone = ('akz121', 0.0051964189713291026) + +[fips0216442780] +centroid = (1.0158700255873132, -2.7350214855567079) +description = Lake and Peninsula census subarea, AK +station = ('pakn', 0.008362562467069283) +zone = ('akz161', 0.019698287907387386) + +[fips0216530] +centroid = (0.96369372175820822, -2.8409790107285895) +description = Cold Bay city, AK +station = ('pacd', 0.00042630847569382024) +zone = ('akz181', 0.017035815545987449) + +[fips0216630] +centroid = (1.1736894335235533, -2.6198797237015667) +description = Coldfoot CDP, AK +station = ('papr', 0.0084186316839530376) +zone = ('akz206', 0.033568640341257498) + +[fips0216750] +centroid = (1.1321965867518784, -2.5797235896974091) +description = College CDP, AK +station = ('pafa', 0.0012632545801054868) +zone = ('akz222', 0.0040207976978021394) + +[fips02170] +centroid = (1.0852836723480126, -2.6076610750340823) +description = Matanuska-Susitna Borough, AK +station = ('patk', 0.0060940424804097823) +zone = ('akz145', 0.010483582970022935) + +[fips0217047440] +centroid = (1.0852836723480126, -2.6076610750340823) +description = Matanuska-Susitna census subarea, AK +station = ('patk', 0.0060940424804097823) +zone = ('akz145', 0.010483582970022935) + +[fips0217190] +centroid = (1.0558582763707216, -2.6149233551450459) +description = Cooper Landing CDP, AK +station = ('pawd', 0.0073717792576927857) +zone = ('akz101', 0.012466721789949694) + +[fips0217300] +centroid = (1.0818344654137586, -2.5369118499698797) +description = Copper Center CDP, AK +station = ('pagk', 0.0029916953823195111) +zone = ('akz141', 0.0037605363821977384) + +[fips0217410] +centroid = (1.0564502047865354, -2.5419335636535951) +description = Cordova city, AK +station = ('pacv', 0.0014615090791233781) +zone = ('akz135', 0.0035585225949458237) + +[fips0217670] +centroid = (1.0366850491394004, -2.3757945725988265) +description = Covenant Life CDP, AK +station = ('pahn', 0.0059827096698979237) +zone = ('akz020', 0.01098278724483155) + +[fips0217740] +centroid = (0.96852718422880368, -2.3232664103925189) +description = Craig city, AK +station = ('pakw', 0.0016124945726488013) +zone = ('akz027', 0.0036018626055776895) + +[fips0217850] +centroid = (1.0790344336947841, -2.7587321150576085) +description = Crooked Creek CDP, AK +station = ('pahc', 0.01544136959796787) +zone = ('akz215', 0.019979799671384083) + +[fips0217960] +centroid = (1.0546445045957147, -2.6067012486652406) +description = Crown Point CDP, AK +station = ('pawd', 0.0054755032430734542) +zone = ('akz125', 0.0031320931663657539) + +[fips02180] +centroid = (1.1306886222781551, -2.8656371096672277) +description = Nome Census Area, AK +station = ('pawm', 0.0060119581190409867) +zone = ('akz211', 0.0037193330232814679) + +[fips0218054970] +centroid = (1.1306886222781551, -2.8656371096672277) +description = Nome census subarea, AK +station = ('pawm', 0.0060119581190409867) +zone = ('akz211', 0.0037193330232814679) + +[fips02185] +centroid = (1.2121196986968763, -2.6786061958535288) +description = North Slope Borough, AK +station = ('pakp', 0.025425712576318531) +zone = ('akz202', 0.024377963261211156) + +[fips0218510] +centroid = (1.1531270463806922, -2.8408481633945675) +description = Deering city, AK +station = ('pade', 4.819297699074578e-05) +zone = ('akz210', 0.010176563313622766) + +[fips0218555970] +centroid = (1.2121196986968763, -2.6786061958535288) +description = North Slope census subarea, AK +station = ('pakp', 0.025425712576318531) +zone = ('akz202', 0.024377963261211156) + +[fips0218620] +centroid = (1.1180625090435004, -2.5428317798998417) +description = Delta Junction city, AK +station = ('pabi', 0.0010665497566476863) +zone = ('akz223', 0.0075224502389129649) + +[fips0218675] +centroid = (1.1133432609191551, -2.5361658787942845) +description = Deltana CDP, AK +station = ('pabi', 0.0048090788161908159) +zone = ('akz226', 0.01402224667388687) + +[fips02188] +centroid = (1.1694590172161068, -2.7928948233170026) +description = Northwest Arctic Borough, AK +station = ('pask', 0.0067803958487672256) +zone = ('akz209', 0.0085293108256572873) + +[fips0218856270] +centroid = (1.1694590172161068, -2.7928948233170026) +description = Northwest Arctic census subarea, AK +station = ('pask', 0.0067803958487672256) +zone = ('akz209', 0.0085293108256572873) + +[fips0218925] +centroid = (1.0418978065630395, -2.6451372908783877) +description = Diamond Ridge CDP, AK +station = ('paho', 0.001027368393028657) +zone = ('akz121', 0.013229831264973974) + +[fips0218950] +centroid = (1.0307033345539178, -2.7670564629249959) +description = Dillingham city, AK +station = ('padl', 0.00023201481896733596) +zone = ('akz161', 0.012340384762628897) + +[fips0219060] +centroid = (1.1476197646457795, -2.9482651677935516) +description = Diomede city, AK +station = ('patc', 0.0079422356438003938) +zone = ('akz213', 0.022242438529473531) + +[fips02195] +centroid = (0.9885477164520905, -2.3305031737898183) +description = Petersburg Census Area, AK +station = ('pafe', 0.0064799267304608728) +zone = ('akz026', 0.0052986143508161878) + +[fips0219560360] +centroid = (0.9885477164520905, -2.3305031737898183) +description = Petersburg census subarea, AK +station = ('pafe', 0.0064799267304608728) +zone = ('akz026', 0.0052986143508161878) + +[fips0219720] +centroid = (1.1099680908517711, -2.5182242082430482) +description = Dot Lake CDP, AK +station = ('pabn', 0.023276501608598045) +zone = ('akz226', 0.0091208195269589839) + +[fips0219750] +centroid = (1.1111160811672702, -2.5135536198982491) +description = Dot Lake Village CDP, AK +station = ('pabn', 0.023499648601041812) +zone = ('akz226', 0.010751854299088377) + +[fips02198] +centroid = (0.9671861255914489, -2.3191190543041751) +description = Prince of Wales-Hyder Census Area, AK +station = ('pakw', 0.0035740175572899465) +zone = ('akz027', 0.0024775863103104799) + +[fips0219834575] +centroid = (0.97659376441896362, -2.2721391018037398) +description = Hyder census subarea, AK +station = ('czst', 0.0019962525391196517) +zone = ('akz029', 0.0070669635515299839) + +[fips0219848873] +centroid = (0.96234084724181734, -2.2945973004867022) +description = Metlakatla Indian Community census subarea, AK +station = ('pamm', 0.0010775618683122922) +zone = ('akz028', 0.0090997837451370425) + +[fips0219864310] +centroid = (0.96685987119437355, -2.3203026842430003) +description = Prince of Wales census subarea, AK +station = ('pakw', 0.0035338234487484969) +zone = ('akz027', 0.0018881694007974706) + +[fips0220020] +centroid = (1.1104943250745398, -2.5244301627308272) +description = Dry Creek CDP, AK +station = ('pabi', 0.010551230356760451) +zone = ('akz226', 0.0096255195434730625) + +[fips0220380] +centroid = (1.1306263314771516, -2.46428831582196) +description = Eagle city, AK +station = ('paeg', 0.00032699442769753277) +zone = ('akz224', 0.014179737513110673) + +[fips0220600] +centroid = (1.1299852022297239, -2.4629008663330869) +description = Eagle Village CDP, AK +station = ('paeg', 0.00074742351320628768) +zone = ('akz224', 0.014449117103603509) + +[fips0220970] +centroid = (0.9769595679768891, -2.3332323276878695) +description = Edna Bay CDP, AK +station = ('pakw', 0.0090381334306070156) +zone = ('akz026', 0.012847005496643532) + +[fips0221040] +centroid = (1.0509334284604916, -2.8279654169466992) +description = Eek city, AK +station = ('pabe', 0.010079306063551025) +zone = ('akz155', 0.010635637466000224) + +[fips0221150] +centroid = (1.0158714742105925, -2.749277160354072) +description = Egegik city, AK +station = ('paii', 0.0013019017799688467) +zone = ('akz161', 0.019244767039992654) + +[fips0221370] +centroid = (1.1286014702921578, -2.5662675025902608) +description = Eielson AFB CDP, AK +station = ('paei', 0.00053577205907211678) +zone = ('akz222', 0.0061956302098559414) + +[fips0221810] +centroid = (1.0357772335822681, -2.7486842371005848) +description = Ekwok city, AK +station = ('panw', 0.0022993380198673202) +zone = ('akz161', 0.0023150067973475245) + +[fips02220] +centroid = (0.9973249249004924, -2.3619998741634989) +description = Sitka City and Borough, AK +station = ('pasi', 0.0016465314984415499) +zone = ('akz023', 0.0057084520608220949) + +[fips0222070590] +centroid = (0.9973249249004924, -2.3619998741634989) +description = Sitka census subarea, AK +station = ('pasi', 0.0016465314984415499) +zone = ('akz023', 0.0057084520608220949) + +[fips0222140] +centroid = (1.0156275993542112, -2.3791023729570835) +description = Elfin Cove CDP, AK +station = ('pael', 0.00037755142768233817) +zone = ('akz022', 0.0017433505956158904) + +[fips0222250] +centroid = (1.1278035755713161, -2.8322048740596708) +description = Elim city, AK +station = ('pakk', 0.0099566912039351658) +zone = ('akz210', 0.015402673023310859) + +[fips0222910] +centroid = (1.0958122139810356, -2.8719820272700507) +description = Emmonak city, AK +station = ('paem', 0.00042022653633372634) +zone = ('akz214', 0.011670112811931338) + +[fips02230] +centroid = (1.0397815948449962, -2.3620486386627992) +description = Skagway Municipality, AK +station = ('pagy', 0.0018997328504210213) +zone = ('akz018', 9.7745161601851306e-05) + +[fips0223070810] +centroid = (1.0397815948449962, -2.3620486386627992) +description = Skagway census subarea, AK +station = ('pagy', 0.0018997328504210213) +zone = ('akz018', 9.7745161601851306e-05) + +[fips0223460] +centroid = (1.1323530904259047, -2.5838056530184361) +description = Ester CDP, AK +station = ('pafa', 0.0017946261522876837) +zone = ('akz222', 0.0054998318147207511) + +[fips0223720] +centroid = (1.081383995933819, -2.5683410410080927) +description = Eureka Roadhouse CDP, AK +station = ('pazk', 0.00045345974728083386) +zone = ('akz131', 0.014769445581795238) + +[fips0223790] +centroid = (1.1682007569984667, -2.641886196267528) +description = Evansville CDP, AK +station = ('pabt', 0.0011632838434584741) +zone = ('akz219', 0.012516827276497966) + +[fips0223900] +centroid = (1.0195264903702415, -2.3622282854027068) +description = Excursion Inlet CDP, AK +station = ('paoh', 0.0052867153665809626) +zone = ('akz021', 0.0083613254318361373) + +[fips02240] +centroid = (1.1146544744263009, -2.4996366087889412) +description = Southeast Fairbanks Census Area, AK +station = ('paeg', 0.022394496466406313) +zone = ('akz224', 0.0098424132908285639) + +[fips0224072030] +centroid = (1.1146544744263009, -2.4996366087889412) +description = Southeast Fairbanks census subarea, AK +station = ('paeg', 0.022394496466406313) +zone = ('akz224', 0.0098424132908285639) + +[fips0224230] +centroid = (1.1316109415213715, -2.5770090965650749) +description = Fairbanks city, AK +station = ('pafb', 0.00051078356349384718) +zone = ('akz222', 0.0035422493567148251) + +[fips0224660] +centroid = (0.95770476405632987, -2.8507207579348135) +description = False Pass city, AK +station = ('pakf', 0.00085566204684723744) +zone = ('akz181', 0.024804095783387908) + +[fips0224980] +centroid = (1.132862220422004, -2.5778279352369404) +description = Farmers Loop CDP, AK +station = ('pafb', 0.0015617698492024804) +zone = ('akz222', 0.002987407069611561) + +[fips0225000] +centroid = (1.0758167795923925, -2.6031966798871138) +description = Farm Loop CDP, AK +station = ('paaq', 0.00081791608480857175) +zone = ('akz111', 0.0009015729402040199) + +[fips0225220] +centroid = (1.1178767536512106, -2.5991548289520527) +description = Ferry CDP, AK +station = ('pahv', 0.0030788003213144278) +zone = ('akz225', 0.012166820053671158) + +[fips0225550] +centroid = (1.0770796823858431, -2.6055299232976421) +description = Fishhook CDP, AK +station = ('paws', 0.0032315991637687177) +zone = ('akz111', 0.0023766859895858667) + +[fips0225880] +centroid = (1.089807443596134, -2.7583276524567517) +description = Flat CDP, AK +station = ('pahc', 0.014770986136702949) +zone = ('akz215', 0.014119341461952858) + +[fips02261] +centroid = (1.070756703571718, -2.5311313020339821) +description = Valdez-Cordova Census Area, AK +station = ('pavd', 0.011104477897610805) +zone = ('akz141', 0.0096671321124847977) + +[fips0226100] +centroid = (1.1152617966461176, -2.5410874803921062) +description = Fort Greely CDP, AK +station = ('pabi', 0.0019871265979048702) +zone = ('akz226', 0.016772869128144206) + +[fips0226114420] +centroid = (1.0557230308069845, -2.5517253319961815) +description = Chugach census subarea, AK +station = ('pavd', 0.011267918631616114) +zone = ('akz135', 0.0084031410903014463) + +[fips0226117350] +centroid = (1.0827059083092794, -2.5119156807551297) +description = Copper River census subarea, AK +station = ('pabn', 0.0098487585362152484) +zone = ('akz141', 0.0085932683827187797) + +[fips0226760] +centroid = (1.1621730006273163, -2.5347275704110088) +description = Fort Yukon city, AK +station = ('pfyu', 0.00044853646954055778) +zone = ('akz220', 0.0039770443140511756) + +[fips0226835] +centroid = (1.1275565940288663, -2.6025523217805695) +description = Four Mile Road CDP, AK +station = ('pann', 0.0010141813488512019) +zone = ('akz225', 0.019301735685044688) + +[fips0226870] +centroid = (1.1340286239611117, -2.5762602106896288) +description = Fox CDP, AK +station = ('pafb', 0.0024806865666769711) +zone = ('akz222', 0.0019515363326327352) + +[fips0226910] +centroid = (1.0449664270006034, -2.6347158251949745) +description = Fox River CDP, AK +station = ('paho', 0.0060289299685347096) +zone = ('akz121', 0.0082019334760434284) + +[fips02270] +centroid = (1.0870464548925267, -2.8482193869574401) +description = Wade Hampton Census Area, AK +station = ('pasm', 0.0041655448602416238) +zone = ('akz214', 0.0065335393578812764) + +[fips0227082700] +centroid = (1.0870464548925267, -2.8482193869574401) +description = Wade Hampton census subarea, AK +station = ('pasm', 0.0041655448602416238) +zone = ('akz214', 0.0065335393578812764) + +[fips0227090] +centroid = (1.042778709143106, -2.6404860756882855) +description = Fritz Creek CDP, AK +station = ('paho', 0.0024068361889986022) +zone = ('akz121', 0.011291892906777838) + +[fips0227145] +centroid = (1.0556525718650815, -2.6317760100562078) +description = Funny River CDP, AK +station = ('paen', 0.00418195865460052) +zone = ('akz121', 0.0028614635307261231) + +[fips0227420] +centroid = (1.0884009700184145, -2.5353642141622585) +description = Gakona CDP, AK +station = ('pagk', 0.0039720189234990671) +zone = ('akz141', 0.0084594188365088273) + +[fips02275] +centroid = (0.98225596157828365, -2.3045384341066741) +description = Wrangell City and Borough, AK +station = ('pawg', 0.0047589842438061662) +zone = ('akz026', 0.010662005296506341) + +[fips0227530] +centroid = (1.1299253199830881, -2.7379672697215161) +description = Galena city, AK +station = ('paga', 0.00045702755840210053) +zone = ('akz216', 0.0020032483270580053) + +[fips0227586420] +centroid = (0.98225596157828365, -2.3045384341066741) +description = Wrangell census subarea, AK +station = ('pawg', 0.0047589842438061662) +zone = ('akz026', 0.010662005296506341) + +[fips0227640] +centroid = (1.1131221451562201, -2.9971790498249513) +description = Gambell city, AK +station = ('pagm', 0.00019303293342369792) +zone = ('akz213', 0.028937257845068568) + +[fips0227700] +centroid = (1.0131654633784228, -2.365140140366857) +description = Game Creek CDP, AK +station = ('paoh', 0.0012971868167155195) +zone = ('akz021', 0.001961583736884378) + +[fips02282] +centroid = (1.0471815465273568, -2.4476426395067925) +description = Yakutat City and Borough, AK +station = ('paya', 0.010062319548459719) +zone = ('akz017', 0.0025746846605294829) + +[fips0228200] +centroid = (1.074541729307348, -2.6044333329286142) +description = Gateway CDP, AK +station = ('paaq', 0.0011755725318071933) +zone = ('akz111', 0.00061021167637749334) + +[fips0228286498] +centroid = (1.0471815465273568, -2.4476426395067925) +description = Yakutat census subarea, AK +station = ('paya', 0.010062319548459719) +zone = ('akz017', 0.0025746846605294829) + +[fips0228590] +centroid = (1.0794545169924468, -2.5791170179691707) +description = Glacier View CDP, AK +station = ('pazk', 0.005198938198713492) +zone = ('akz111', 0.012379280017050596) + +[fips0228740] +centroid = (1.08466245730735, -2.5446984095348495) +description = Glennallen CDP, AK +station = ('pagk', 0.0028583946318181735) +zone = ('akz141', 0.0082989623174770377) + +[fips02290] +centroid = (1.1410287381651329, -2.6455151895680293) +description = Yukon-Koyukuk Census Area, AK +station = ('pata', 0.0052871141036881456) +zone = ('akz221', 0.011706149212733068) + +[fips0229042080] +centroid = (1.1498635424788508, -2.6742203928827775) +description = Koyukuk-Middle Yukon census subarea, AK +station = ('pata', 0.014891969392889256) +zone = ('akz219', 0.0099891757940248644) + +[fips0229046060] +centroid = (1.0982102614666907, -2.7391524704566685) +description = McGrath-Holy Cross census subarea, AK +station = ('patl', 0.007628503076952212) +zone = ('akz227', 0.021363310185446946) + +[fips0229086690] +centroid = (1.1691054833228227, -2.5214626143102463) +description = Yukon Flats census subarea, AK +station = ('pfyu', 0.0091314608525706054) +zone = ('akz220', 0.012659824075189291) + +[fips0229130] +centroid = (1.1336733272852832, -2.5831793241630652) +description = Goldstream CDP, AK +station = ('pafa', 0.0028006787520940073) +zone = ('akz222', 0.0048995717269357131) + +[fips0229180] +centroid = (1.1268485663112098, -2.8449041864031548) +description = Golovin city, AK +station = ('pagl', 0.00045722007771155441) +zone = ('akz211', 0.01120460667786006) + +[fips0229290] +centroid = (1.0319907243167739, -2.8200271882697314) +description = Goodnews Bay city, AK +station = ('papm', 0.0029151424535327044) +zone = ('akz155', 0.029131351836269175) + +[fips0230060] +centroid = (1.0977325648504199, -2.7944779416683168) +description = Grayling city, AK +station = ('panv', 0.0043575420915683265) +zone = ('akz215', 0.0050297927848083658) + +[fips0230500] +centroid = (1.0858597880808034, -2.5384921583410978) +description = Gulkana CDP, AK +station = ('pagk', 0.0011384198895199708) +zone = ('akz141', 0.0068938713956919785) + +[fips0230940] +centroid = (1.0196633067303054, -2.3695119632502997) +description = Gustavus city, AK +station = ('pags', 0.0005847901526837095) +zone = ('akz022', 0.0069018193017430342) + +[fips0231050] +centroid = (1.034297264189747, -2.3644389194332831) +description = Haines CDP, AK +station = ('pahn', 0.00043838170045374877) +zone = ('akz019', 0.0025882281818343654) + +[fips0231270] +centroid = (1.0397567239031553, -2.6393600590680686) +description = Halibut Cove CDP, AK +station = ('paho', 0.0026474984578766345) +zone = ('akz121', 0.013871178063493014) + +[fips0231710] +centroid = (1.0456337885466884, -2.6460623328352373) +description = Happy Valley CDP, AK +station = ('paho', 0.0046753895585968323) +zone = ('akz121', 0.010658137203587447) + +[fips0231765] +centroid = (1.1237214773437039, -2.5578413147610202) +description = Harding-Birch Lakes CDP, AK +station = ('paei', 0.0061896787796863776) +zone = ('akz223', 0.0029864151745905617) + +[fips0232150] +centroid = (1.1163092036368243, -2.6000253642763624) +description = Healy CDP, AK +station = ('pahv', 0.0014656715690203638) +zone = ('akz225', 0.010885636159830127) + +[fips0232310] +centroid = (1.117193230356252, -2.5251189394668345) +description = Healy Lake CDP, AK +station = ('pabi', 0.0079423483327288099) +zone = ('akz224', 0.015340235822090204) + +[fips0232550] +centroid = (1.0028979880949132, -2.3267963213513849) +description = Hobart Bay CDP, AK +station = ('pafe', 0.010503051064319077) +zone = ('akz025', 0.010769964646686121) + +[fips0232810] +centroid = (0.96898046368883917, -2.3168336852750286) +description = Hollis CDP, AK +station = ('pahy', 0.0056276929893502902) +zone = ('akz027', 0.0046880680959312847) + +[fips0233030] +centroid = (1.085368146283809, -2.7900148555182871) +description = Holy Cross city, AK +station = ('pahc', 0.00062168112965108014) +zone = ('akz215', 0.0084554059432966743) + +[fips0233140] +centroid = (1.0409141040900305, -2.6443698870595784) +description = Homer city, AK +station = ('paho', 0.00030184809751494682) +zone = ('akz121', 0.013862307715409087) + +[fips0233360] +centroid = (1.0142251400337712, -2.3636203600140973) +description = Hoonah city, AK +station = ('paoh', 0.00024810033756962304) +zone = ('akz021', 0.0030096423607967175) + +[fips0233470] +centroid = (1.0739965408089025, -2.8993712348755025) +description = Hooper Bay city, AK +station = ('pahp', 0.00034205973462536594) +zone = ('akz214', 0.021006672720903233) + +[fips0233580] +centroid = (1.0626633500308325, -2.6115883625570424) +description = Hope CDP, AK +station = ('palh', 0.0059729480634054333) +zone = ('akz101', 0.0054740327799946264) + +[fips0233800] +centroid = (1.0754110603544738, -2.6140104955863754) +description = Houston city, AK +station = ('paws', 0.0020713299362361075) +zone = ('akz111', 0.005055211267630106) + +[fips0233910] +centroid = (1.1526978524643343, -2.691946532724685) +description = Hughes city, AK +station = ('paim', 0.016802388888646245) +zone = ('akz219', 0.013434833407338359) + +[fips0234350] +centroid = (1.1468029854624309, -2.7280509721368) +description = Huslia city, AK +station = ('pahl', 0.00036494166522462563) +zone = ('akz216', 0.017004217873032579) + +[fips0234460] +centroid = (0.96349365466605208, -2.3181173574865781) +description = Hydaburg city, AK +station = ('pahy', 0.00016573973555841526) +zone = ('akz027', 0.0024622581489433925) + +[fips0234570] +centroid = (0.97709313802454434, -2.269658308258248) +description = Hyder CDP, AK +station = ('czst', 0.0010429301550511064) +zone = ('akz029', 0.0085203000345363787) + +[fips0234790] +centroid = (1.0350722950973876, -2.7203979826194855) +description = Igiugig CDP, AK +station = ('paig', 0.00038829993364164505) +zone = ('akz171', 0.023467893893665062) + +[fips0235120] +centroid = (1.0433410367748059, -2.7030835484948312) +description = Iliamna CDP, AK +station = ('pail', 0.00062383041713651383) +zone = ('akz171', 0.026745317996332809) + +[fips0235890] +centroid = (0.97595668433540073, -2.7836831849644872) +description = Ivanof Bay CDP, AK +station = ('paou', 0.016359954307779555) +zone = ('akz181', 0.017629431230837489) + +[fips0236400] +centroid = (1.0187958082788939, -2.3418615147624093) +description = Juneau city and borough, AK +station = ('pajn', 0.0035732385318627026) +zone = ('akz025', 0.0070418496938238441) + +[fips0236550] +centroid = (1.0415104656421443, -2.6430806821543) +description = Kachemak city, AK +station = ('paho', 0.00058473653663495694) +zone = ('akz121', 0.013022747140800523) + +[fips0236770] +centroid = (0.99444843030698804, -2.3370725407344475) +description = Kake city, AK +station = ('pafe', 0.00048522503108158212) +zone = ('akz026', 0.011020104849370891) + +[fips0236990] +centroid = (1.2238459376224955, -2.5068082190452636) +description = Kaktovik city, AK +station = ('paba', 0.00038252893728332721) +zone = ('akz204', 0.0041959855917912802) + +[fips0237250] +centroid = (1.0551106471323373, -2.6392923751996764) +description = Kalifornsky CDP, AK +station = ('paen', 0.0022707467423170812) +zone = ('akz121', 0.0049429468938210546) + +[fips0237430] +centroid = (1.122487965894857, -2.7712290215677386) +description = Kaltag city, AK +station = ('pakv', 0.00035444131675603881) +zone = ('akz212', 0.018583611699644828) + +[fips0237540] +centroid = (1.0051416786615219, -2.6941766097231281) +description = Karluk CDP, AK +station = ('padq', 0.017781770012434386) +zone = ('akz171', 0.012372338054372331) + +[fips0237650] +centroid = (0.96963686456722176, -2.3108052482254697) +description = Kasaan city, AK +station = ('pahy', 0.0075593607451680117) +zone = ('akz028', 0.0034130648181337855) + +[fips0237975] +centroid = (1.0622781733182098, -2.8368208685054679) +description = Kasigluk CDP, AK +station = ('pabe', 0.0061577651080654923) +zone = ('akz155', 0.0042737619446601436) + +[fips0238090] +centroid = (1.0528189600112987, -2.6394482680084645) +description = Kasilof CDP, AK +station = ('pasx', 0.0032821644543649456) +zone = ('akz121', 0.0044958600070317224) + +[fips0238420] +centroid = (1.0570110837949565, -2.6390769492101027) +description = Kenai city, AK +station = ('paen', 0.00042707847022420322) +zone = ('akz121', 0.0059619897962660531) + +[fips0238910] +centroid = (1.0755970426395662, -2.5283358954375252) +description = Kenny Lake CDP, AK +station = ('pagk', 0.010323297582038475) +zone = ('akz141', 0.0048296362507533434) + +[fips0238970] +centroid = (0.96617406151809482, -2.2981572660152878) +description = Ketchikan city, AK +station = ('pakt', 0.00043742097583227425) +zone = ('akz028', 0.0049269692705605989) + +[fips0239300] +centroid = (1.1688700733133139, -2.8001648003299673) +description = Kiana city, AK +station = ('paik', 0.00021167420876598699) +zone = ('akz209', 0.0063825248649323207) + +[fips0239410] +centroid = (0.96132843410261293, -2.8330424575677031) +description = King Cove city, AK +station = ('pavc', 0.0008654937557678121) +zone = ('akz181', 0.014443948949038511) + +[fips0239630] +centroid = (1.0251424712109687, -2.7318868393135411) +description = King Salmon CDP, AK +station = ('pakn', 0.0014586575533796853) +zone = ('akz161', 0.011748180360403718) + +[fips0239740] +centroid = (1.0461526225734288, -2.8635164822661774) +description = Kipnuk CDP, AK +station = ('paki', 0.00034909298338047054) +zone = ('akz155', 0.016557436230928736) + +[fips0239960] +centroid = (1.1820867012470886, -2.8717593058042037) +description = Kivalina city, AK +station = ('pavl', 0.00010741159491149761) +zone = ('akz207', 0.016925228978373154) + +[fips0240400] +centroid = (0.96964103590413397, -2.3228192744914504) +description = Klawock city, AK +station = ('pakw', 0.00047314346876455482) +zone = ('akz027', 0.0046282234617169484) + +[fips0240510] +centroid = (1.0366934965329802, -2.3717193160618821) +description = Klukwan CDP, AK +station = ('pahn', 0.004208158849965349) +zone = ('akz019', 0.0069498852996269962) + +[fips0240645] +centroid = (1.0733279226257562, -2.6119638526923166) +description = Knik-Fairview CDP, AK +station = ('pabv', 0.0018152220988064706) +zone = ('akz111', 0.0043673308265440944) + +[fips0240670] +centroid = (1.072707458076672, -2.6006840340827724) +description = Knik River CDP, AK +station = ('paaq', 0.0025331882310651492) +zone = ('akz111', 0.0025728858625087558) + +[fips0240840] +centroid = (1.1680457543075971, -2.7385032777880967) +description = Kobuk city, AK +station = ('pagh', 0.0020476423013760263) +zone = ('akz217', 0.0079383410676247858) + +[fips0240950] +centroid = (1.0086662140062916, -2.6599517153824856) +description = Kodiak city, AK +station = ('padq', 0.0010443477103111406) +zone = ('akz171', 0.018433034230784677) + +[fips0241210] +centroid = (1.0082409470807507, -2.6633010022170631) +description = Kodiak Station CDP, AK +station = ('padq', 0.0010939976260034277) +zone = ('akz171', 0.017118521377533429) + +[fips0241280] +centroid = (1.0369583502469701, -2.7008525464718844) +description = Kokhanok CDP, AK +station = ('pail', 0.0060631536673365046) +zone = ('akz171', 0.020284966197055724) + +[fips0241500] +centroid = (1.0419018731801966, -2.7440930786900437) +description = Koliganek CDP, AK +station = ('pajz', 0.0006598465154298086) +zone = ('akz161', 0.0069518436519173856) + +[fips0241610] +centroid = (1.046577226273854, -2.8428422544248484) +description = Kongiganak CDP, AK +station = ('paki', 0.010043736390662764) +zone = ('akz155', 0.012340591055250977) + +[fips0241720] +centroid = (1.100061392577941, -2.8542369680590514) +description = Kotlik city, AK +station = ('paem', 0.0087816066296766936) +zone = ('akz214', 0.015282865900803957) + +[fips0241830] +centroid = (1.1671095596968273, -2.8363598223302615) +description = Kotzebue city, AK +station = ('paot', 0.00064724710415061575) +zone = ('akz208', 0.016668636246654104) + +[fips0241940] +centroid = (1.1334099571011571, -2.8126202901769477) +description = Koyuk city, AK +station = ('pakk', 0.00011169370912585916) +zone = ('akz210', 0.014195233518408604) + +[fips0242050] +centroid = (1.1327584431446802, -2.7522847989875716) +description = Koyukuk city, AK +station = ('pakv', 0.012842122750761275) +zone = ('akz216', 0.0085652304263722587) + +[fips0242160] +centroid = (0.9917186829969914, -2.320801865862363) +description = Kupreanof city, AK +station = ('papg', 9.6284217173420308e-05) +zone = ('akz026', 0.0038684910222574905) + +[fips0242380] +centroid = (1.0610043273103493, -2.8174287595326541) +description = Kwethluk city, AK +station = ('pabe', 0.0034657379443775319) +zone = ('akz155', 0.01229838230587268) + +[fips0242490] +centroid = (1.0450388581645611, -2.8476501827284872) +description = Kwigillingok CDP, AK +station = ('paki', 0.0076943719002294927) +zone = ('akz155', 0.014134074000993273) + +[fips0242805] +centroid = (1.0872868041838188, -2.5574631542719906) +description = Lake Louise CDP, AK +station = ('pagk', 0.009165365127527296) +zone = ('akz141', 0.014778022097178697) + +[fips0242820] +centroid = (1.1133475718824077, -2.6609665894359353) +description = Lake Minchumina CDP, AK +station = ('pamh', 0.0020095380208137127) +zone = ('akz221', 0.0176213518819145) + +[fips0242832] +centroid = (1.0752580822455367, -2.6058684997192363) +description = Lakes CDP, AK +station = ('paaq', 0.0017091112182518373) +zone = ('akz111', 0.0012071708783122897) + +[fips0243040] +centroid = (1.0044538269500183, -2.6878926041111999) +description = Larsen Bay city, AK +station = ('padq', 0.014627964039849752) +zone = ('akz171', 0.013000535581724988) + +[fips0243260] +centroid = (1.0761270118669344, -2.5992927099629601) +description = Lazy Mountain CDP, AK +station = ('paaq', 0.0017410886190893531) +zone = ('akz111', 0.0023064786276158792) + +[fips0243810] +centroid = (1.0311441872696792, -2.7385128596456898) +description = Levelock CDP, AK +station = ('pakn', 0.0072993383471286468) +zone = ('akz161', 0.004871668849433671) + +[fips0244030] +centroid = (1.0707277834660125, -2.7117949056705553) +description = Lime Village CDP, AK +station = ('pasv', 0.0046230040509300076) +zone = ('akz152', 0.00841666464328991) + +[fips0244580] +centroid = (1.1427806124018223, -2.5904662657763597) +description = Livengood CDP, AK +station = ('pafa', 0.012405620865987758) +zone = ('akz222', 0.01152539930990075) + +[fips0245020] +centroid = (0.97051897142447219, -2.2975506768337572) +description = Loring CDP, AK +station = ('pakt', 0.0045430373821027147) +zone = ('akz028', 0.0042568168065959637) + +[fips0245295] +centroid = (1.0485304067864682, -2.6091366287435958) +description = Lowell Point CDP, AK +station = ('pawd', 0.00079471956479100763) +zone = ('akz125', 0.0070864406473048654) + +[fips0245460] +centroid = (1.0736534788911305, -2.7987687114612969) +description = Lower Kalskag city, AK +station = ('palg', 0.00044691712373735908) +zone = ('akz215', 0.020756179078416499) + +[fips0245700] +centroid = (1.0364403365249784, -2.3657186646540151) +description = Lutak CDP, AK +station = ('pahn', 0.0023470372506188566) +zone = ('akz018', 0.0037285374256443961) + +[fips0245790] +centroid = (1.072573888029017, -2.4934592777008953) +description = McCarthy CDP, AK +station = ('pamx', 0.00067640007517258535) +zone = ('akz141', 0.01881236587803084) + +[fips0246010] +centroid = (1.0984766685237151, -2.7148344489227805) +description = McGrath city, AK +station = ('pamc', 0.00045836435155433789) +zone = ('akz227', 0.010308882157613351) + +[fips0246560] +centroid = (1.1095558964423275, -2.5948412127991638) +description = McKinley Park CDP, AK +station = ('pain', 0.0033752866741146499) +zone = ('akz225', 0.01107200336698985) + +[fips0246780] +centroid = (1.1347913852041107, -2.629256156042056) +description = Manley Hot Springs CDP, AK +station = ('paml', 0.0003556256772658765) +zone = ('akz221', 0.0082828916381421699) + +[fips0246890] +centroid = (1.0298103193888424, -2.7749903631854189) +description = Manokotak city, AK +station = ('pamb', 0.00054796738791783436) +zone = ('akz161', 0.016484921900478067) + +[fips0247000] +centroid = (1.0800294459013462, -2.8284952814543125) +description = Marshall city, AK +station = ('padm', 0.00044766013725503081) +zone = ('akz214', 0.016374407738562136) + +[fips0247735] +centroid = (1.0757896397225239, -2.6111859943512878) +description = Meadow Lakes CDP, AK +station = ('paws', 0.0012919212125897758) +zone = ('akz111', 0.0037876257304344249) + +[fips0247990] +centroid = (1.0536680277858088, -2.9019063605206092) +description = Mekoryuk city, AK +station = ('pamy', 7.0989837273081305e-05) +zone = ('akz214', 0.036959762454450235) + +[fips0248200] +centroid = (1.0846652323808608, -2.5614648626342555) +description = Mendeltna CDP, AK +station = ('pazk', 0.0049885543674868978) +zone = ('akz141', 0.015578518686400858) + +[fips0248540] +centroid = (1.0999449965701253, -2.5046760201112721) +description = Mentasta Lake CDP, AK +station = ('pabn', 0.0116416217163905) +zone = ('akz226', 0.0076668469389697931) + +[fips0248590] +centroid = (1.0613520492572242, -2.8710510861003296) +description = Mertarvik CDP, AK +station = ('paoo', 0.007164252442872057) +zone = ('akz214', 0.024230719555402423) + +[fips0248870] +centroid = (0.96193296379562621, -2.2960805685515098) +description = Metlakatla CDP, AK +station = ('pamm', 0.00036292377601588368) +zone = ('akz028', 0.0089239773279144296) + +[fips0249530] +centroid = (1.1360285269378019, -2.6108418677826717) +description = Minto CDP, AK +station = ('pann', 0.010189272999527106) +zone = ('akz225', 0.026537213343145512) + +[fips0250080] +centroid = (1.1295137189855902, -2.568542190204385) +description = Moose Creek CDP, AK +station = ('paei', 0.0012605813857339489) +zone = ('akz222', 0.0050187069640040298) + +[fips0250190] +centroid = (1.0560278525608453, -2.6087150793693619) +description = Moose Pass CDP, AK +station = ('pawd', 0.0067959381456861373) +zone = ('akz125', 0.0044935807526240625) + +[fips0250800] +centroid = (1.0383561844448925, -2.3769087384334218) +description = Mosquito Lake CDP, AK +station = ('pahn', 0.0073185015962423522) +zone = ('akz020', 0.01262788611045056) + +[fips0251180] +centroid = (1.0837525648084079, -2.857371701568681) +description = Mountain Village city, AK +station = ('pamo', 0.00030446853107134045) +zone = ('akz214', 0.0024463015715605794) + +[fips0251455] +centroid = (1.0318471535325049, -2.3621538471101093) +description = Mud Bay CDP, AK +station = ('pahn', 0.0027502259909829769) +zone = ('akz019', 0.00075366953630245351) + +[fips0251960] +centroid = (1.0899855369930076, -2.4946793326612093) +description = Nabesna CDP, AK +station = ('pabn', 0.001061250957730801) +zone = ('akz141', 0.018881261447049547) + +[fips0252060] +centroid = (1.0262286943242398, -2.7385032777880967) +description = Naknek CDP, AK +station = ('pakn', 0.0030603140546878317) +zone = ('akz161', 0.0092433096494120952) + +[fips0252210] +centroid = (1.0354431601101439, -2.6515723023771982) +description = Nanwalek CDP, AK +station = ('paso', 0.002933290519939119) +zone = ('akz121', 0.020432564245555875) + +[fips0252390] +centroid = (1.059116334845297, -2.8274153066197631) +description = Napakiak city, AK +station = ('pabe', 0.0022516981965084596) +zone = ('akz155', 0.0072521473047809778) + +[fips0252720] +centroid = (1.0593721128471767, -2.823050709399423) +description = Napaskiak city, AK +station = ('pabe', 0.001661461159273723) +zone = ('akz155', 0.0093957817098559212) + +[fips0252845] +centroid = (0.97524211163304919, -2.3248383062767424) +description = Naukati Bay CDP, AK +station = ('pakw', 0.0052639451788487734) +zone = ('akz027', 0.010342705422588016) + +[fips0252915] +centroid = (1.0822761733408532, -2.5626619141550284) +description = Nelchina CDP, AK +station = ('pazk', 0.0030693354896741817) +zone = ('akz131', 0.014894929250148167) + +[fips0252940] +centroid = (0.97561833480660898, -2.8193998645766869) +description = Nelson Lagoon CDP, AK +station = ('paou', 0.0041871160189960724) +zone = ('akz181', 0.0060351246899419788) + +[fips0253050] +centroid = (1.1263988996827259, -2.6017946219924015) +description = Nenana city, AK +station = ('pann', 0.00021468460165768063) +zone = ('akz225', 0.018383120223903173) + +[fips0253162] +centroid = (1.1613177194806692, -2.6637440540476818) +description = New Allakaket CDP, AK +station = ('papr', 0.014477492246013251) +zone = ('akz219', 0.0028809006772633171) + +[fips0253270] +centroid = (1.0426048918028998, -2.7035284503744568) +description = Newhalen city, AK +station = ('pail', 0.00026858690325714239) +zone = ('akz171', 0.026089348087556304) + +[fips0253710] +centroid = (1.0382187048597129, -2.7455444421361248) +description = New Stuyahok city, AK +station = ('panw', 0.00065011628093069207) +zone = ('akz161', 0.0033140284393794023) + +[fips0253820] +centroid = (1.0635172872739558, -2.8736130723626245) +description = Newtok CDP, AK +station = ('paoo', 0.0081030033511670652) +zone = ('akz214', 0.022383865760054807) + +[fips0253930] +centroid = (1.055300835660927, -2.8769434049215246) +description = Nightmute city, AK +station = ('paoo', 0.0026139972372756981) +zone = ('akz214', 0.030751198182598312) + +[fips0254050] +centroid = (1.0598509788340464, -2.6393571269149252) +description = Nikiski CDP, AK +station = ('paen', 0.0024736222888792391) +zone = ('akz121', 0.0082582959748053603) + +[fips0254085] +centroid = (1.0442226898464508, -2.6458560000110665) +description = Nikolaevsk CDP, AK +station = ('paho', 0.0032877413246419178) +zone = ('akz121', 0.011600720350184172) + +[fips0254150] +centroid = (1.0995317724164233, -2.6943452259821634) +description = Nikolai city, AK +station = ('pafs', 0.00039218562887991383) +zone = ('akz227', 0.00099426306730814062) + +[fips0254260] +centroid = (0.92501432828745556, -2.9450641990388089) +description = Nikolski CDP, AK +station = ('padu', 0.027800814894185014) +zone = ('akz185', 0.019439716164202616) + +[fips0254480] +centroid = (1.0482839488427942, -2.6425013899222707) +description = Ninilchik CDP, AK +station = ('paho', 0.007228419142159671) +zone = ('akz121', 0.0075806689916858242) + +[fips0254700] +centroid = (1.1796592624168296, -2.8450670081690732) +description = Noatak CDP, AK +station = ('pawn', 0.00043712455421780869) +zone = ('akz208', 0.0066175775313276593) + +[fips0254920] +centroid = (1.125837479622237, -2.8870417403472239) +description = Nome city, AK +station = ('paom', 0.00023393665411689668) +zone = ('akz211', 0.0071753610444839) + +[fips0255030] +centroid = (1.0467883936600526, -2.7028853139983897) +description = Nondalton city, AK +station = ('pail', 0.0039810860287596214) +zone = ('akz152', 0.029646726768244022) + +[fips0255140] +centroid = (1.1663543557294891, -2.8104897842123302) +description = Noorvik city, AK +station = ('pfno', 0.0018717509490178313) +zone = ('akz209', 0.0033439184210826796) + +[fips0255910] +centroid = (1.1301483032483228, -2.5719635242304841) +description = North Pole city, AK +station = ('pafb', 0.0021609886748210658) +zone = ('akz222', 0.0042019226743396816) + +[fips0256220] +centroid = (1.0988563998090717, -2.4755295452017423) +description = Northway CDP, AK +station = ('pabn', 0.013503193857413767) +zone = ('akz224', 0.026542430893522345) + +[fips0256250] +centroid = (1.0999784021720087, -2.4747241979249948) +description = Northway Junction CDP, AK +station = ('pabn', 0.014573941933085548) +zone = ('akz224', 0.025587471530277676) + +[fips0256260] +centroid = (1.0992413845354765, -2.4770925573600735) +description = Northway Village CDP, AK +station = ('pabn', 0.013311064059997988) +zone = ('akz224', 0.025970435000643725) + +[fips0256320] +centroid = (1.2255196211086954, -2.635369416093261) +description = Nuiqsut city, AK +station = ('paqt', 7.2536431381375402e-05) +zone = ('akz203', 0.0084743571978618294) + +[fips0256350] +centroid = (1.1290512590936892, -2.7625729389694249) +description = Nulato city, AK +station = ('pakv', 0.0073372307142014238) +zone = ('akz216', 0.012545677511135746) + +[fips0256600] +centroid = (1.0909448397630739, -2.8780546386029773) +description = Nunam Iqua city, AK +station = ('paem', 0.0058008042915214456) +zone = ('akz214', 0.0095619270326695628) + +[fips0256680] +centroid = (1.0625610911899581, -2.8354667548053083) +description = Nunapitchuk city, AK +station = ('pabe', 0.0055948682153116056) +zone = ('akz155', 0.004915928044022513) + +[fips0257340] +centroid = (0.99867809612285607, -2.6761220338225806) +description = Old Harbor city, AK +station = ('padq', 0.012194876224181313) +zone = ('akz171', 0.020236448526584558) + +[fips0258330] +centroid = (1.0598237516977151, -2.8237247031966661) +description = Oscarville CDP, AK +station = ('pabe', 0.0011161800247588586) +zone = ('akz155', 0.0090965828843237815) + +[fips0258550] +centroid = (1.0109829815086815, -2.6609578802429681) +description = Ouzinkie city, AK +station = ('padq', 0.0030619690677054592) +zone = ('akz171', 0.016937423210796908) + +[fips0258660] +centroid = (1.075076899615887, -2.6025435951343101) +description = Palmer city, AK +station = ('paaq', 0.00013088393697872813) +zone = ('akz111', 0.00044958466529664237) + +[fips0259320] +centroid = (1.1004093414176186, -2.5418585319490519) +description = Paxson CDP, AK +station = ('pagk', 0.015759524010767769) +zone = ('akz226', 0.0092638633176992304) + +[fips0259540] +centroid = (1.0433955434073459, -2.6896907993862378) +description = Pedro Bay CDP, AK +station = ('pail', 0.0071294837744196905) +zone = ('akz171', 0.026028601941671951) + +[fips0259650] +centroid = (1.0115893437974095, -2.3774308362258636) +description = Pelican city, AK +station = ('pael', 0.0043688882330522125) +zone = ('akz022', 0.0056636805661431132) + +[fips0260200] +centroid = (0.97616598421929979, -2.7776292312012645) +description = Perryville CDP, AK +station = ('pajc', 0.010041794299140004) +zone = ('akz181', 0.020950062371752301) + +[fips0260310] +centroid = (0.990704891047678, -2.3191191764772228) +description = Petersburg city, AK +station = ('papg', 0.0012751480094779599) +zone = ('akz026', 0.0030269314782390509) + +[fips0260460] +centroid = (1.0903665598220105, -2.6332966979801782) +description = Petersville CDP, AK +station = ('patk', 0.0068518719017275883) +zone = ('akz145', 0.0063226807409442788) + +[fips0260640] +centroid = (1.0043259292224322, -2.7527161222056171) +description = Pilot Point city, AK +station = ('papn', 0.0015326299542916082) +zone = ('akz161', 0.030930966187935234) + +[fips0260750] +centroid = (1.0811730728937154, -2.8427625626912025) +description = Pilot Station city, AK +station = ('padm', 0.0071349209758067664) +zone = ('akz214', 0.0097061337775389434) + +[fips0260860] +centroid = (1.0827567672036826, -2.8495436031675134) +description = Pitkas Point CDP, AK +station = ('pasm', 0.00034943939315380384) +zone = ('akz214', 0.0061526831631366673) + +[fips0261080] +centroid = (1.0288938993584977, -2.8230262747898953) +description = Platinum city, AK +station = ('papm', 0.0012997981595323832) +zone = ('akz155', 0.03153198304669981) + +[fips0261120] +centroid = (1.1324644598854745, -2.5638643936497747) +description = Pleasant Valley CDP, AK +station = ('paei', 0.0043737605459014837) +zone = ('akz222', 0.0038194407820000961) + +[fips0261190] +centroid = (0.98346043074837741, -2.3320529912590042) +description = Point Baker CDP, AK +station = ('pafe', 0.010850345994140307) +zone = ('akz026', 0.0075392781155497919) + +[fips0261630] +centroid = (1.1928268815052085, -2.9089905297814065) +description = Point Hope city, AK +station = ('papo', 0.00082544348768144647) +zone = ('akz207', 0.028438991465598609) + +[fips0261700] +centroid = (1.217228661389899, -2.8406665967924827) +description = Point Lay CDP, AK +station = ('ppiz', 0.0015277901620374453) +zone = ('akz201', 0.015700206064099574) + +[fips0261788] +centroid = (1.0708779341415615, -2.6209285269556748) +description = Point MacKenzie CDP, AK +station = ('palh', 0.0034012589232560145) +zone = ('akz101', 0.0061411270164407694) + +[fips0261825] +centroid = (1.0633083539091996, -2.6300164738241021) +description = Point Possession CDP, AK +station = ('pasx', 0.0082196001787399331) +zone = ('akz121', 0.010432928431521648) + +[fips0262125] +centroid = (1.0397031422951191, -2.6956127888047168) +description = Pope-Vannoy Landing CDP, AK +station = ('pail', 0.005189517800808249) +zone = ('akz171', 0.022477842341427464) + +[fips0262285] +centroid = (1.0280845901843481, -2.7518440858981505) +description = Portage Creek CDP, AK +station = ('padl', 0.0080337696898846248) +zone = ('akz161', 0.0078487458066971317) + +[fips0262510] +centroid = (0.98148970967678062, -2.3501469068808922) +description = Port Alexander city, AK +station = ('paap', 0.00026021676050197592) +zone = ('akz023', 0.011490359454645526) + +[fips0262620] +centroid = (1.0499525359675783, -2.693751796583193) +description = Port Alsworth CDP, AK +station = ('palj', 0.00076445980873357359) +zone = ('akz171', 0.032619512975520307) + +[fips0263170] +centroid = (1.1363684647162129, -2.9105888499505053) +description = Port Clarence CDP, AK +station = ('papc', 0.0025374865503287472) +zone = ('akz213', 0.015580909382254877) + +[fips0263280] +centroid = (1.0356747129420061, -2.6502214000828621) +description = Port Graham CDP, AK +station = ('paso', 0.0023226223242458241) +zone = ('akz121', 0.019885237771810164) + +[fips0263390] +centroid = (0.99421244433882594, -2.7677542106533579) +description = Port Heiden city, AK +station = ('paph', 0.00055923248986120163) +zone = ('akz161', 0.042555925178413251) + +[fips0263610] +centroid = (1.0101549100450729, -2.6680116633214879) +description = Port Lions city, AK +station = ('padq', 0.0041957741758208121) +zone = ('akz171', 0.013975391012970148) + +[fips0263870] +centroid = (0.98317677983834328, -2.3318719308024027) +description = Port Protection CDP, AK +station = ('pafe', 0.011150066220940984) +zone = ('akz026', 0.0076296619721320548) + +[fips0264240] +centroid = (1.0531625804344313, -2.605723480311688) +description = Primrose CDP, AK +station = ('pawd', 0.004146631466155559) +zone = ('akz125', 0.0027933515982271175) + +[fips0264380] +centroid = (1.2281220466497591, -2.5960992286707087) +description = Prudhoe Bay CDP, AK +station = ('pasc', 0.0032861534187416668) +zone = ('akz203', 0.0055509454663442677) + +[fips0264600] +centroid = (1.0429291914312129, -2.8256844985071456) +description = Quinhagak city, AK +station = ('papm', 0.012915193755429495) +zone = ('akz155', 0.017970996294782403) + +[fips0264820] +centroid = (1.1415975409683579, -2.617847409960667) +description = Rampart CDP, AK +station = ('paml', 0.008580361687117696) +zone = ('akz221', 0.016469905562774612) + +[fips0264930] +centroid = (1.0778727774512418, -2.7464230757881638) +description = Red Devil CDP, AK +station = ('pasl', 0.0018647322246809399) +zone = ('akz152', 0.0095805176162849521) + +[fips0264980] +centroid = (1.1879480753806462, -2.8425631064642847) +description = Red Dog Mine CDP, AK +station = ('padg', 0.00061925835836018888) +zone = ('akz208', 0.0060595189279201763) + +[fips0265345] +centroid = (1.0565127224803419, -2.6363521935417666) +description = Ridgeway CDP, AK +station = ('pasx', 0.00089369498704282106) +zone = ('akz121', 0.0046839954909465385) + +[fips0265590] +centroid = (1.1296182816610771, -2.7140119974193633) +description = Ruby city, AK +station = ('pary', 0.00026952207549745471) +zone = ('akz216', 0.0082278808600209762) + +[fips0265700] +centroid = (1.0783440512558653, -2.8164138680259123) +description = Russian Mission city, AK +station = ('pars', 0.00047507133014112085) +zone = ('akz215', 0.020397741437312329) + +[fips0265800] +centroid = (0.98734181611201, -2.9600553904895492) +description = St. George city, AK +station = ('papb', 0.0006907919218391127) +zone = ('akz195', 0.0069421643692398781) + +[fips0266140] +centroid = (1.0832435918919414, -2.84924091071534) +description = St. Mary's city, AK +station = ('pasm', 0.0004918256267973911) +zone = ('akz214', 0.0061107937421596018) + +[fips0266360] +centroid = (1.1076705568777383, -2.8296894357285272) +description = St. Michael city, AK +station = ('pamk', 0.00046394518572471214) +zone = ('akz212', 0.011626649322161467) + +[fips0266470] +centroid = (0.99796252858283097, -2.9727332352832327) +description = St. Paul city, AK +station = ('pasn', 0.0010481359986669893) +zone = ('akz195', 0.0057425006685731476) + +[fips0266510] +centroid = (1.0577599347638169, -2.6408888802263535) +description = Salamatof CDP, AK +station = ('paen', 0.00077290123715322153) +zone = ('akz121', 0.0071231919974087286) + +[fips0266550] +centroid = (1.1263269572109589, -2.5636142530613788) +description = Salcha CDP, AK +station = ('paei', 0.0025930875818734539) +zone = ('akz223', 0.0059144416544861756) + +[fips0267020] +centroid = (0.96540039196727079, -2.8009663776955311) +description = Sand Point city, AK +station = ('pasd', 0.00033389717706658664) +zone = ('akz181', 0.008797636538115822) + +[fips0267460] +centroid = (1.1114390368920593, -2.9754858638597232) +description = Savoonga city, AK +station = ('pasa', 0.00014056521114284422) +zone = ('akz213', 0.021946993666152031) + +[fips0267570] +centroid = (0.96556536048816932, -2.2966607683547502) +description = Saxman city, AK +station = ('pakt', 0.0013534702116519521) +zone = ('akz028', 0.005970257356315874) + +[fips0267680] +centroid = (1.0793574243261581, -2.8899731779055813) +description = Scammon Bay city, AK +station = ('pacm', 0.00016882918196432643) +zone = ('akz214', 0.014506499879268267) + +[fips0268230] +centroid = (1.1622278563257065, -2.7925478518617064) +description = Selawik city, AK +station = ('pask', 0.00045239092873118164) +zone = ('akz209', 0.006067067209901445) + +[fips0268340] +centroid = (1.0374187331970612, -2.6478693071164119) +description = Seldovia city, AK +station = ('paso', 0.00020752306847805459) +zone = ('akz121', 0.01777787226302753) + +[fips0268370] +centroid = (1.0377806446707549, -2.6454718879492876) +description = Seldovia Village CDP, AK +station = ('paso', 0.0011291285932218452) +zone = ('akz121', 0.016890332420709354) + +[fips0268560] +centroid = (1.0493754777569915, -2.6073749632098031) +description = Seward city, AK +station = ('pawd', 0.00052733742760731166) +zone = ('akz125', 0.0058847343114441187) + +[fips0268670] +centroid = (1.0937353245310399, -2.7844178638598214) +description = Shageluk city, AK +station = ('pahc', 0.0085466225289614322) +zone = ('akz215', 0.0015252652908036078) + +[fips0268890] +centroid = (1.1232779542741873, -2.8134899528366311) +description = Shaktoolik city, AK +station = ('pfsh', 0.00023801721339100084) +zone = ('akz212', 0.007535812736205863) + +[fips0269770] +centroid = (1.1560188126051516, -2.8993259261281206) +description = Shishmaref city, AK +station = ('pash', 0.00060730972312843376) +zone = ('akz207', 0.011477664489539623) + +[fips0270100] +centroid = (1.1674001046574067, -2.7430286547391298) +description = Shungnak city, AK +station = ('pagh', 0.00030128645145044528) +zone = ('akz217', 0.0081977073108302437) + +[fips0270320] +centroid = (1.0824316647239136, -2.5369207860556497) +description = Silver Springs CDP, AK +station = ('pagk', 0.0024188129392549492) +zone = ('akz141', 0.0040292376200968391) + +[fips0270540] +centroid = (0.9973249249004924, -2.3619998741634989) +description = Sitka city and borough, AK +station = ('pasi', 0.0016465314984415499) +zone = ('akz023', 0.0057084520608220949) + +[fips0270760] +centroid = (1.0378488695912154, -2.3609967810824997) +description = Skagway CDP, AK +station = ('pagy', 0.00037032525922482505) +zone = ('akz018', 0.001931094059121573) + +[fips0270870] +centroid = (1.0801613927927969, -2.6389377242956713) +description = Skwentna CDP, AK +station = ('pasw', 0.0015516593289237051) +zone = ('akz145', 0.0058494334767382845) + +[fips0270930] +centroid = (1.093129066962067, -2.5062027294211617) +description = Slana CDP, AK +station = ('pabn', 0.00632030581274938) +zone = ('akz226', 0.010474183484924859) + +[fips0271090] +centroid = (1.0760628884702161, -2.7419649638265016) +description = Sleetmute CDP, AK +station = ('pasl', 0.0011630980871158716) +zone = ('akz152', 0.0069350997094958112) + +[fips0271640] +centroid = (1.0556623282556001, -2.6366471541853542) +description = Soldotna city, AK +station = ('pasx', 0.00030594783995431968) +zone = ('akz121', 0.0041682662390992173) + +[fips0272190] +centroid = (1.0237774492029839, -2.7403717923786965) +description = South Naknek CDP, AK +station = ('pakn', 0.0033120925072593959) +zone = ('akz161', 0.011370281702255115) + +[fips0272230] +centroid = (1.1311396153568707, -2.5793859557536107) +description = South Van Horn CDP, AK +station = ('pafa', 0.00066248668696674607) +zone = ('akz222', 0.0045723433232064473) + +[fips0272960] +centroid = (1.1071428740316902, -2.8322790330995882) +description = Stebbins city, AK +station = ('pamk', 0.001625797201338818) +zone = ('akz212', 0.012825560627389864) + +[fips0272985] +centroid = (1.1331819123810918, -2.5725913191624268) +description = Steele Creek CDP, AK +station = ('pafb', 0.0021258686978608142) +zone = ('akz222', 0.00122537100521592) + +[fips0273070] +centroid = (1.056628839235477, -2.6320749675037822) +description = Sterling CDP, AK +station = ('paen', 0.0037349467498681696) +zone = ('akz121', 0.0038453388175501077) + +[fips0273290] +centroid = (1.1523290294868029, -2.6019646345148382) +description = Stevens Village CDP, AK +station = ('pafa', 0.0230163577088821) +zone = ('akz221', 0.028884644624003031) + +[fips0273400] +centroid = (1.0784927184015503, -2.7329581398617075) +description = Stony River CDP, AK +station = ('pasl', 0.0048379150936020713) +zone = ('akz152', 0.0052685114401932768) + +[fips0273950] +centroid = (1.0623831025128398, -2.6087052008057952) +description = Sunrise CDP, AK +station = ('pamr', 0.0068573895836451723) +zone = ('akz101', 0.0056836325654928375) + +[fips0274340] +centroid = (1.0742377976714057, -2.630673991713206) +description = Susitna CDP, AK +station = ('pasw', 0.0084970762419091603) +zone = ('akz145', 0.010000832786085257) + +[fips0274350] +centroid = (1.0847615047424009, -2.6133577773527144) +description = Susitna North CDP, AK +station = ('patk', 0.0041317822074399772) +zone = ('akz145', 0.0077916243295556844) + +[fips0274525] +centroid = (1.0774041565470813, -2.5984190679525816) +description = Sutton-Alpine CDP, AK +station = ('paaq', 0.0029279259650010353) +zone = ('akz111', 0.0034381429213997347) + +[fips0274610] +centroid = (1.0992492385171104, -2.724180739427088) +description = Takotna CDP, AK +station = ('patl', 0.0016446641667359286) +zone = ('akz227', 0.014514905967040458) + +[fips0274830] +centroid = (1.0868405584006691, -2.6194697982201509) +description = Talkeetna CDP, AK +station = ('patk', 0.00080031659328597875) +zone = ('akz145', 0.0055571037197962069) + +[fips0275050] +centroid = (1.1052940991149303, -2.5044517802089761) +description = Tanacross CDP, AK +station = ('pabn', 0.016725268684016185) +zone = ('akz226', 0.0087999885070061522) + +[fips0275077] +centroid = (1.0761260344825534, -2.60798741669762) +description = Tanaina CDP, AK +station = ('paws', 0.0017667930606587638) +zone = ('akz111', 0.0024777557719206813) + +[fips0275160] +centroid = (1.1376851061973323, -2.653854163294548) +description = Tanana city, AK +station = ('pata', 0.00045599996569754229) +zone = ('akz221', 0.0093403298397986331) + +[fips0275380] +centroid = (1.0628697526681734, -2.5600414070029136) +description = Tatitlek CDP, AK +station = ('pavd', 0.0053917987906718593) +zone = ('akz131', 0.0049568316567109002) + +[fips0275480] +centroid = (1.0830382189988592, -2.5383654125308182) +description = Tazlina CDP, AK +station = ('pagk', 0.0016869409249937654) +zone = ('akz141', 0.0049231271160537753) + +[fips0275930] +centroid = (1.1388562221254206, -2.9033756659514003) +description = Teller city, AK +station = ('pate', 0.00034533320260630594) +zone = ('akz207', 0.028103877255373017) + +[fips0276260] +centroid = (1.0086267172053192, -2.3585584688510011) +description = Tenakee Springs city, AK +station = ('paoh', 0.0064016363084963314) +zone = ('akz021', 0.0040614595123651788) + +[fips0276590] +centroid = (1.10246715441889, -2.4880454408941342) +description = Tetlin CDP, AK +station = ('pabn', 0.013875107372182078) +zone = ('akz224', 0.021824838556634429) + +[fips0277140] +centroid = (0.97157513996802403, -2.3131826833726592) +description = Thorne Bay city, AK +station = ('pahy', 0.0086700255791949433) +zone = ('akz027', 0.0079968116437636912) + +[fips0277690] +centroid = (1.0304531416056444, -2.8000574800342624) +description = Togiak city, AK +station = ('patg', 0.00032660305150194818) +zone = ('akz161', 0.028851561599477177) + +[fips0277800] +centroid = (1.1052969789081959, -2.4964760793129677) +description = Tok CDP, AK +station = ('pabn', 0.016253701703511689) +zone = ('akz224', 0.018891971160368573) + +[fips0278240] +centroid = (1.0564296448079469, -2.8816404524577846) +description = Toksook Bay city, AK +station = ('paoo', 4.0098185849400344e-05) +zone = ('akz214', 0.03028947229303517) + +[fips0278297] +centroid = (1.0833020429685907, -2.5503294874736064) +description = Tolsona CDP, AK +station = ('pagk', 0.0056760780723341528) +zone = ('akz141', 0.010194531535408693) + +[fips0278350] +centroid = (1.0739167618087939, -2.5326618685215183) +description = Tonsina CDP, AK +station = ('pagk', 0.011160612139455271) +zone = ('akz141', 0.0066451324671148388) + +[fips0278680] +centroid = (1.0881169874958225, -2.6249539019825971) +description = Trapper Creek CDP, AK +station = ('patk', 0.002469825088392785) +zone = ('akz145', 0.0045375344993383929) + +[fips0278790] +centroid = (1.0664707508874731, -2.8088905215654352) +description = Tuluksak CDP, AK +station = ('palg', 0.0091039889511455203) +zone = ('akz215', 0.029049010521868698) + +[fips0279120] +centroid = (1.0543933866229378, -2.8391054521364509) +description = Tuntutuliak CDP, AK +station = ('paki', 0.014481988903558826) +zone = ('akz155', 0.0047726949086306439) + +[fips0279230] +centroid = (1.0578089959690906, -2.8819014489941277) +description = Tununak CDP, AK +station = ('paoo', 0.0013643414787109687) +zone = ('akz214', 0.029021840901929725) + +[fips0279780] +centroid = (1.0314927644278873, -2.7979244433422297) +description = Twin Hills CDP, AK +station = ('patg', 0.001195612067333903) +zone = ('akz161', 0.027599621159220412) + +[fips0279830] +centroid = (1.1325588996512999, -2.5672027721765271) +description = Two Rivers CDP, AK +station = ('paei', 0.0042042118408796196) +zone = ('akz222', 0.0026161605804784758) + +[fips0279890] +centroid = (1.0665285910988842, -2.6423683085668066) +description = Tyonek CDP, AK +station = ('paen', 0.0092545913176888556) +zone = ('akz121', 0.014859885821868681) + +[fips0280100] +centroid = (1.006139151782329, -2.7400778963859533) +description = Ugashik CDP, AK +station = ('papn', 0.0055039219034056343) +zone = ('akz171', 0.028517341264706883) + +[fips0280660] +centroid = (1.1151485771375407, -2.8064308814104777) +description = Unalakleet city, AK +station = ('paun', 0.0001759707421205835) +zone = ('akz212', 0.0021101352209253674) + +[fips0280770] +centroid = (0.94096480505496904, -2.906410933146959) +description = Unalaska city, AK +station = ('padu', 0.00024735014213722855) +zone = ('akz185', 0.0085889542526318072) + +[fips0281320] +centroid = (1.0740606118457434, -2.7986130455453115) +description = Upper Kalskag city, AK +station = ('palg', 7.4031999688306348e-05) +zone = ('akz215', 0.02034326411882097) + +[fips0282200] +centroid = (1.0661058723540511, -2.5537707182531784) +description = Valdez city, AK +station = ('pavd', 0.00098231611625988432) +zone = ('akz131', 0.0022079602047744597) + +[fips0282420] +centroid = (1.1697302762884516, -2.5547283978670405) +description = Venetie CDP, AK +station = ('pfyu', 0.010994586303234423) +zone = ('akz220', 0.012058482867227879) + +[fips0282750] +centroid = (1.2330295808938092, -2.7925535590883603) +description = Wainwright city, AK +station = ('pawi', 0.0003066744941326327) +zone = ('akz201', 0.010068763255801956) + +[fips0282860] +centroid = (1.1451837213423082, -2.9335689195331063) +description = Wales city, AK +station = ('paiw', 0.00014273929889543338) +zone = ('akz213', 0.019420155387312028) + +[fips0283080] +centroid = (1.0746906757057133, -2.6085139476263621) +description = Wasilla city, AK +station = ('paws', 0.00069790677308401356) +zone = ('akz111', 0.0024301018569183358) + +[fips0284000] +centroid = (0.97959569582580885, -2.3247381767375557) +description = Whale Pass CDP, AK +station = ('pakw', 0.0095494508463193645) +zone = ('akz026', 0.0085170644431119807) + +[fips0284070] +centroid = (1.1289109171685363, -2.8520761806319124) +description = White Mountain city, AK +station = ('pawm', 0.00012819439278495415) +zone = ('akz211', 0.0081591448123567965) + +[fips0284120] +centroid = (1.1196782475985341, -2.5465468179324668) +description = Whitestone CDP, AK +station = ('pabi', 0.0030349845699336902) +zone = ('akz223', 0.0054979902789438536) + +[fips0284200] +centroid = (1.0134320624216651, -2.3635331982712531) +description = Whitestone Logging Camp CDP, AK +station = ('paoh', 0.00093563948414904132) +zone = ('akz021', 0.0022357077490435086) + +[fips0284510] +centroid = (1.0607532267908648, -2.5946874841986478) +description = Whittier city, AK +station = ('pato', 0.0015835227481599042) +zone = ('akz125', 0.0071824108007712724) + +[fips0285280] +centroid = (1.0788320453147229, -2.6154804991488674) +description = Willow CDP, AK +station = ('paws', 0.0049443297445223803) +zone = ('akz145', 0.0086995174541935356) + +[fips0285290] +centroid = (1.0796927718886364, -2.5341328669216843) +description = Willow Creek CDP, AK +station = ('pagk', 0.0054455757565983268) +zone = ('akz141', 0.0022812296421827545) + +[fips0285610] +centroid = (1.1777730850941994, -2.6207990409784694) +description = Wiseman CDP, AK +station = ('papr', 0.012120870312110895) +zone = ('akz206', 0.029907791820905281) + +[fips0285680] +centroid = (1.0068556967067355, -2.664723899343044) +description = Womens Bay CDP, AK +station = ('padq', 0.002102961773017652) +zone = ('akz171', 0.017303895370692372) + +[fips0286380] +centroid = (0.98225596157828365, -2.3045384341066741) +description = Wrangell city and borough, AK +station = ('pawg', 0.0047589842438061662) +zone = ('akz026', 0.010662005296506341) + +[fips0286490] +centroid = (1.0395807249013842, -2.4365876891180749) +description = Yakutat CDP, AK +station = ('paya', 0.0012321286283170595) +zone = ('akz017', 0.010132486804847957) + +[fips04001] +centroid = (0.61759950385037288, -1.9110263954956637) +description = Apache County, AZ +station = ('krqe', 0.0076199846656944117) +zone = ('azz011', 0.0092051147253606209) + +[fips0400190612] +centroid = (0.63247333936220873, -1.9119141223131055) +description = Chinle CCD, AZ +station = ('krqe', 0.012285978430608311) +zone = ('azz010', 0.0057479527811968257) + +[fips0400190918] +centroid = (0.64139937203592812, -1.9173808251429096) +description = Dennehotso CCD, AZ +station = ('k4bl', 0.016082938559220286) +zone = ('azz010', 0.0042176800263245143) + +[fips0400191071] +centroid = (0.59373895056672565, -1.9090412580044454) +description = Eagar-Springerville CCD, AZ +station = ('ksjn', 0.0086906620133640738) +zone = ('azz017', 0.0041990727869876329) + +[fips0400191275] +centroid = (0.59049810103857503, -1.9152148191813072) +description = Fort Apache CCD, AZ +station = ('ksow', 0.0085065429882154858) +zone = ('azz017', 0.0020572848086303388) + +[fips0400191326] +centroid = (0.6215677367975847, -1.9105310536006552) +description = Fort Defiance CCD, AZ +station = ('krqe', 0.0056921532018036963) +zone = ('azz011', 0.0055392326506090959) + +[fips0400192805] +centroid = (0.61017759592602205, -1.9107347858842405) +description = Puerco CCD, AZ +station = ('ksjn', 0.007863810781332586) +zone = ('azz014', 0.00674867231484456) + +[fips0400192958] +centroid = (0.60136850031218625, -1.9093780890967875) +description = St. Johns CCD, AZ +station = ('ksjn', 0.0010855776979388225) +zone = ('azz014', 0.0021309833959700076) + +[fips0400193315] +centroid = (0.641500234613401, -1.9088327086121246) +description = Sweetwater CCD, AZ +station = ('kcez', 0.013971298423974958) +zone = ('azz010', 0.0060466726525743725) + +[fips04003] +centroid = (0.55644225928928048, -1.9155707616289588) +description = Cochise County, AZ +station = ('kdug', 0.0075983696525973232) +zone = ('azz508', 0.0031485260222439307) + +[fips0400390255] +centroid = (0.56004664344732913, -1.9241932466391716) +description = Benson CCD, AZ +station = ('kalk', 0.00889529609298223) +zone = ('azz507', 0.002846829615183415) + +[fips0400390306] +centroid = (0.54904441945531468, -1.921224371768359) +description = Bisbee CCD, AZ +station = ('kalk', 0.0056592826565015474) +zone = ('azz513', 0.0052103289290751972) + +[fips0400390408] +centroid = (0.56181684364116435, -1.909370043128936) +description = Bowie CCD, AZ +station = ('klsb', 0.010733310836883737) +zone = ('azz508', 0.0052658895263152173) + +[fips0400390969] +centroid = (0.54846158420490376, -1.9107256229056673) +description = Douglas CCD, AZ +station = ('kdug', 0.0019803029486449935) +zone = ('azz512', 0.0078355920710108436) + +[fips0400391122] +centroid = (0.55314723474114791, -1.9099965814238169) +description = Elfrida CCD, AZ +station = ('kdug', 0.004652140505237116) +zone = ('azz512', 0.0031660378297741899) + +[fips0400393182] +centroid = (0.55361655377700925, -1.9227409232620021) +description = Sierra Vista CCD, AZ +station = ('kalk', 0.0043285257949737602) +zone = ('azz513', 0.0038200403173204471) + +[fips0400393825] +centroid = (0.56195205429831641, -1.9179095377332163) +description = Willcox CCD, AZ +station = ('ksad', 0.011989939114820033) +zone = ('azz508', 0.0070773933019868786) + +[fips04005] +centroid = (0.62534609537547214, -1.9508195708285765) +description = Coconino County, AZ +station = ('kgcn', 0.0057197355783857361) +zone = ('azz006', 0.0098679779595550118) + +[fips0400591198] +centroid = (0.61272595116685902, -1.943707738099135) +description = Flagstaff CCD, AZ +station = ('kflg', 0.0043140040059733951) +zone = ('azz015', 0.0061327263938267228) + +[fips0400591530] +centroid = (0.6311283188274518, -1.965475309997083) +description = Havasupai CCD, AZ +station = ('kgcn', 0.0075047312776652135) +zone = ('azz006', 0.0041761912827913798) + +[fips0400591581] +centroid = (0.6271577122324572, -1.9350174295941898) +description = Hopi CCD, AZ +station = ('kinw', 0.015857861545295737) +zone = ('azz009', 0.008348939012986497) + +[fips0400591683] +centroid = (0.62704735506385356, -1.9742648055634191) +description = Hualapai CCD, AZ +station = ('kigm', 0.016550286871348598) +zone = ('azz007', 0.0086126696026250973) + +[fips0400591838] +centroid = (0.63877497279958195, -1.9571564250102549) +description = Kaibab Plateau CCD, AZ +station = ('kpga', 0.011235468770219668) +zone = ('azz004', 0.0012890989230119562) + +[fips0400593519] +centroid = (0.63191464201535275, -1.941860341992484) +description = Tuba City CCD, AZ +station = ('kpga', 0.012968850143302835) +zone = ('azz009', 0.0053448042993321085) + +[fips0400593876] +centroid = (0.62194898651939046, -1.963054538324567) +description = Williams CCD, AZ +station = ('kcmr', 0.007031927134920346) +zone = ('azz007', 0.0020844732674806243) + +[fips04007] +centroid = (0.58974008709114134, -1.9340319817919289) +description = Gila County, AZ +station = ('kpan', 0.010988304150785572) +zone = ('azz024', 0.004537751144520469) + +[fips0400730] +centroid = (0.59232139414825591, -1.97512773125219) +description = Aguila CDP, AZ +station = ('kbxk', 0.011517965995017686) +zone = ('azz022', 0.0060712221620312038) + +[fips0400791277] +centroid = (0.59124962236119127, -1.9257695931129877) +description = Fort Apache CCD, AZ +station = ('ksow', 0.008324703139727432) +zone = ('azz018', 0.0089260674309735027) + +[fips0400791495] +centroid = (0.58517303167757029, -1.9341813645226071) +description = Globe-Miami CCD, AZ +station = ('kiwa', 0.01263449045877587) +zone = ('azz024', 0.0026018501342483938) + +[fips0400792570] +centroid = (0.59791206771482919, -1.9434386432350625) +description = Payson CCD, AZ +station = ('kpan', 0.00033019415959213553) +zone = ('azz018', 0.0072607567152291035) + +[fips0400793109] +centroid = (0.5844853195924069, -1.9272538211088837) +description = San Carlos CCD, AZ +station = ('ksow', 0.014847857896265528) +zone = ('azz024', 0.0083786272898451232) + +[fips0400793470] +centroid = (0.59236404999517467, -1.938244595741005) +description = Tonto Basin CCD, AZ +station = ('kpan', 0.0067292188686063218) +zone = ('azz018', 0.0025756417519617737) + +[fips0400793927] +centroid = (0.57850912024736056, -1.9338776248728826) +description = Winkelman CCD, AZ +station = ('kiwa', 0.012718159899431546) +zone = ('azz506', 0.0056460937750133907) + +[fips0400870] +centroid = (0.56535192077461638, -1.9701952737064214) +description = Ajo CDP, AZ +station = ('kgbn', 0.003040445787771141) +zone = ('azz501', 0.0033558663827313951) + +[fips04009] +centroid = (0.5747688273004592, -1.9177382860270107) +description = Graham County, AZ +station = ('ksad', 0.0038639130708905205) +zone = ('azz509', 0.0022526172007429806) + +[fips0400940] +centroid = (0.56352014536477069, -1.9549272032231453) +description = Ak Chin CDP, AZ +station = ('kgbn', 0.010261815773077649) +zone = ('azz502', 0.0026396540925211912) + +[fips0400990357] +centroid = (0.56999198331079837, -1.9217932967446316) +description = Bonita-Klondyke CCD, AZ +station = ('ksad', 0.0077652266645528373) +zone = ('azz511', 0.00011979787413689327) + +[fips0400992652] +centroid = (0.57558468145930386, -1.9196770850265885) +description = Pima CCD, AZ +station = ('ksad', 0.0056790816742284958) +zone = ('azz509', 0.0040715052439951526) + +[fips0400992907] +centroid = (0.57102235588800576, -1.911779260721804) +description = Safford CCD, AZ +station = ('ksad', 0.0027161485805902068) +zone = ('azz509', 0.0040306418400757387) + +[fips0400993111] +centroid = (0.58121982601521804, -1.9196717094124924) +description = San Carlos CCD, AZ +station = ('ksad', 0.0094419816924646779) +zone = ('azz509', 0.0083597009894034822) + +[fips0401090] +centroid = (0.57630122638371017, -1.9561788137363352) +description = Ak-Chin Village CDP, AZ +station = ('kcgz', 0.0047566440386659437) +zone = ('azz028', 0.0055710745855771108) + +[fips04011] +centroid = (0.58012775604895261, -1.9066382188771294) +description = Greenlee County, AZ +station = ('ksad', 0.0088763222804495515) +zone = ('azz510', 0.0044167163755212133) + +[fips0401170] +centroid = (0.59787742292917712, -1.9809542162540004) +description = Alamo Lake CDP, AZ +station = ('kigm', 0.018428693294526753) +zone = ('azz021', 0.0089776953186263726) + +[fips0401190663] +centroid = (0.58201620229961049, -1.9073708557372391) +description = Clifton CCD, AZ +station = ('ksad', 0.010065195335962389) +zone = ('azz510', 0.0030501206896537303) + +[fips0401191020] +centroid = (0.57166133838045341, -1.9048812308257317) +description = Duncan CCD, AZ +station = ('ksad', 0.0074059881342738998) +zone = ('nmz401', 0.0079259751072277111) + +[fips04012] +centroid = (0.58865810512795258, -1.9903524128502619) +description = La Paz County, AZ +station = ('kblh', 0.010034766240367646) +zone = ('azz021', 0.0035861983556106426) + +[fips0401292480] +centroid = (0.58865810512795258, -1.9903524128502619) +description = Parker CCD, AZ +station = ('kblh', 0.010034766240367646) +zone = ('azz021', 0.0035861983556106426) + +[fips04013] +centroid = (0.5820069346012825, -1.9634174620892269) +description = Maricopa County, AZ +station = ('kgyr', 0.0020425185255013843) +zone = ('azz023', 0.0064837782132481951) + +[fips0401390459] +centroid = (0.58226180503195124, -1.9715310265428503) +description = Buckeye CCD, AZ +station = ('kbxk', 0.0040319097807822854) +zone = ('azz022', 0.0060272718922764383) + +[fips0401390561] +centroid = (0.58070113161481784, -1.9505224808833019) +description = Chandler CCD, AZ +station = ('kchd', 0.00079516195143443705) +zone = ('azz028', 0.0037862038664260868) + +[fips0401390867] +centroid = (0.59025408655585365, -1.9567630976100254) +description = Deer Valley CCD, AZ +station = ('kdvt', 0.0024676690832050132) +zone = ('azz023', 0.0052708073345572471) + +[fips0401391377] +centroid = (0.57331399064916677, -1.966965576832191) +description = Gila Bend CCD, AZ +station = ('kgbn', 0.0072491133390286434) +zone = ('azz027', 0.00164867036846043) + +[fips0401392601] +centroid = (0.58496757151802548, -1.9552455338254162) +description = Phoenix CCD, AZ +station = ('kphx', 0.0014726020819667636) +zone = ('azz023', 0.0010607202986823011) + +[fips0401393009] +centroid = (0.58063615300676608, -1.9568101167800742) +description = St. Johns CCD, AZ +station = ('kphx', 0.0030549063908976212) +zone = ('azz023', 0.0043579380716462744) + +[fips0401393060] +centroid = (0.58569492003050161, -1.9502297368078649) +description = Salt River CCD, AZ +station = ('kffz', 0.0015942922744390012) +zone = ('azz023', 0.0052886267831043967) + +[fips0401393472] +centroid = (0.58881881504547606, -1.9468425763285195) +description = Tonto National Forest CCD, AZ +station = ('kffz', 0.0054461810475759983) +zone = ('azz024', 0.0085526860924235483) + +[fips0401393774] +centroid = (0.59000713991998899, -1.969339084988563) +description = Wickenburg CCD, AZ +station = ('kbxk', 0.0072069213447297151) +zone = ('azz022', 0.0019305610685539068) + +[fips04015] +centroid = (0.62339155350604125, -1.9853065961695762) +description = Mohave County, AZ +station = ('kigm', 0.0085700675670804631) +zone = ('azz036', 0.008199012018894147) + +[fips0401560] +centroid = (0.55530999439034168, -1.9645145760570304) +description = Ali Chuk CDP, AZ +station = ('kgbn', 0.010915804450465057) +zone = ('azz502', 0.0092757609231197153) + +[fips0401570] +centroid = (0.556961232942361, -1.9513064653300054) +description = Ali Chukson CDP, AZ +station = ('kryn', 0.010161290172292703) +zone = ('azz515', 0.003490642651905438) + +[fips0401590470] +centroid = (0.61049180755125854, -1.995239038049873) +description = Bullhead City CCD, AZ +station = ('kifp', 0.0046441759762957408) +zone = ('azz002', 0.005295913757337279) + +[fips0401591885] +centroid = (0.6203390250041807, -1.990013487362817) +description = Kingman CCD, AZ +station = ('kigm', 0.0052550276626241732) +zone = ('azz036', 0.0061982454992662202) + +[fips0401591964] +centroid = (0.60597538413928786, -1.9870982290066257) +description = Lake Havasu City CCD, AZ +station = ('kigm', 0.0093253712523721759) +zone = ('azz003', 0.0080997527152466432) + +[fips0401592340] +centroid = (0.63733978855566698, -1.9789129664273302) +description = North Mohave CCD, AZ +station = ('ksgu', 0.010339663149960432) +zone = ('azz001', 0.0014993788914907632) + +[fips0401620] +centroid = (0.55680448492223944, -1.9509357923034669) +description = Ali Molina CDP, AZ +station = ('kryn', 0.0099377558229114399) +zone = ('azz515', 0.0031391756573832599) + +[fips04017] +centroid = (0.6176883236560069, -1.9254630783897526) +description = Navajo County, AZ +station = ('kinw', 0.0084143787968530247) +zone = ('azz040', 0.0026070989531279359) + +[fips0401791279] +centroid = (0.59525668888425998, -1.9246117416872148) +description = Fort Apache CCD, AZ +station = ('ksow', 0.0047508158527313988) +zone = ('azz018', 0.0094718309305936721) + +[fips0401791632] +centroid = (0.62630646279638202, -1.9274410949376228) +description = Hopi CCD, AZ +station = ('kinw', 0.015392304297354021) +zone = ('azz040', 0.0077755877678802373) + +[fips0401791785] +centroid = (0.61738109334777824, -1.9244697416992724) +description = Indian Wells CCD, AZ +station = ('kinw', 0.0087686310454981996) +zone = ('azz040', 0.0023262996935379155) + +[fips0401791860] +centroid = (0.64076194288651478, -1.9266589430866339) +description = Kayenta CCD, AZ +station = ('kpga', 0.015308445710790588) +zone = ('azz039', 0.0065763046029988642) + +[fips0401792703] +centroid = (0.6318608684210989, -1.9235908287945529) +description = Pinon CCD, AZ +station = ('krqe', 0.018865505095704491) +zone = ('azz039', 0.0026855509916777895) + +[fips0401793213] +centroid = (0.60103418249396678, -1.9241586193068119) +description = Snowflake CCD, AZ +station = ('ksow', 0.0045797639679392597) +zone = ('azz013', 0.0071724460461735987) + +[fips0401793952] +centroid = (0.60938546079171196, -1.9255200110299524) +description = Winslow-Holbrook CCD, AZ +station = ('kinw', 0.0059798414938060651) +zone = ('azz013', 0.0012535519638364472) + +[fips04019] +centroid = (0.56074351851106541, -1.9509817119160868) +description = Pima County, AZ +station = ('kryn', 0.0090624383222502689) +zone = ('azz502', 0.0041611305441576233) + +[fips0401920] +centroid = (0.59071556906337352, -1.904917254421493) +description = Alpine CDP, AZ +station = ('ksjn', 0.012214120346315535) +zone = ('azz017', 0.0074484802951382129) + +[fips0401990] +centroid = (0.55322326128336485, -1.938376682258796) +description = Amado CDP, AZ +station = ('kols', 0.0058162741644372596) +zone = ('azz503', 0.0020236401143713329) + +[fips0401990051] +centroid = (0.56228658155604616, -1.9718333001160033) +description = Ajo CCD, AZ +station = ('kgbn', 0.0057579723682361656) +zone = ('azz501', 1.6651439243038026e-05) + +[fips0401990153] +centroid = (0.55487696074962933, -1.9430441639175269) +description = Arivaca CCD, AZ +station = ('kryn', 0.0065081852504399107) +zone = ('azz503', 0.003868987520741871) + +[fips0401992040] +centroid = (0.56411839187247681, -1.9441306313768931) +description = Marana CCD, AZ +station = ('kryn', 0.004543352806902057) +zone = ('azz504', 0.005545492919356027) + +[fips0401993375] +centroid = (0.55996063362179094, -1.9559373648876146) +description = Tohono O'odnam Nation CCD, AZ +station = ('kgbn', 0.010957479928701974) +zone = ('azz502', 0.0010484402153561876) + +[fips0401993570] +centroid = (0.56115363597869905, -1.9332122530021447) +description = Tucson CCD, AZ +station = ('kdma', 0.0017691640314638081) +zone = ('azz514', 0.0034538580210505083) + +[fips04021] +centroid = (0.57454336566768649, -1.9437253135647026) +description = Pinal County, AZ +station = ('kcgz', 0.005875828687551027) +zone = ('azz505', 0.0030594084351801025) + +[fips0402190510] +centroid = (0.57417028408678028, -1.9512081160266554) +description = Casa Grande CCD, AZ +station = ('kcgz', 0.0010114664700460844) +zone = ('azz028', 0.0031376176455389106) + +[fips0402190816] +centroid = (0.57472988900484723, -1.9470106166289016) +description = Coolidge CCD, AZ +station = ('kcgz', 0.003113634184316563) +zone = ('azz028', 0.0031309663682119997) + +[fips0402191173] +centroid = (0.56970484174226022, -1.9474645244074678) +description = Eloy CCD, AZ +station = ('kcgz', 0.0060280186774487625) +zone = ('azz505', 0.003989948463168763) + +[fips0402191224] +centroid = (0.57232339412561239, -1.9410392169392985) +description = Florence CCD, AZ +station = ('kcgz', 0.0085685177238038826) +zone = ('azz505', 0.0020187828431569711) + +[fips0402191428] +centroid = (0.57794862521137502, -1.9523691614049599) +description = Gila River CCD, AZ +station = ('kchd', 0.0028100202465759744) +zone = ('azz028', 0.0025191854460903996) + +[fips0402192091] +centroid = (0.57429678555096475, -1.9560028670944416) +description = Maricopa-Stanfield CCD, AZ +station = ('kcgz', 0.004523473443473351) +zone = ('azz028', 0.006022733824850946) + +[fips0402192346] +centroid = (0.58039810755008658, -1.9417300357105303) +description = North Pinal CCD, AZ +station = ('kiwa', 0.0058943397894391106) +zone = ('azz024', 0.0067962192032070779) + +[fips0402193162] +centroid = (0.57300124510050199, -1.9323123961464015) +description = San Manuel CCD, AZ +station = ('kdma', 0.011854103558882988) +zone = ('azz506', 0.00057083584689306046) + +[fips0402193377] +centroid = (0.56957446564713632, -1.9542731061793754) +description = Tohono O'odnam Nation CCD, AZ +station = ('kcgz', 0.0062783439688961495) +zone = ('azz028', 0.0084028132253036892) + +[fips0402270] +centroid = (0.56503626052610056, -1.955378981700024) +description = Anegam CDP, AZ +station = ('kgbn', 0.0096097626169075589) +zone = ('azz502', 0.0040508319671206262) + +[fips04023] +centroid = (0.55023082446765048, -1.9346135254986934) +description = Santa Cruz County, AZ +station = ('kols', 0.0019078951699490814) +zone = ('azz503', 0.0050069912311679829) + +[fips0402392295] +centroid = (0.54969966841639095, -1.9376168706222328) +description = Nogales CCD, AZ +station = ('kols', 0.0028449273651478366) +zone = ('azz503', 0.0030780539264485926) + +[fips0402392550] +centroid = (0.55093869510567428, -1.9310502263912368) +description = Patagonia CCD, AZ +station = ('kalk', 0.0033379930582539893) +zone = ('azz513', 0.0038883318041613643) + +[fips0402410] +centroid = (0.61824782385431876, -1.9863293416579524) +description = Antares CDP, AZ +station = ('kigm', 0.0035050942729416444) +zone = ('azz003', 0.0042110874604099372) + +[fips0402430] +centroid = (0.59078807004050138, -1.956917960674555) +description = Anthem CDP, AZ +station = ('kdvt', 0.0030164197130002073) +zone = ('azz023', 0.0058103879752330768) + +[fips04025] +centroid = (0.60440828791050716, -1.964782501550504) +description = Yavapai County, AZ +station = ('kprc', 0.0022823013183264659) +zone = ('azz037', 0.0035970323525989067) + +[fips0402590204] +centroid = (0.61344064604225812, -1.9718258999199747) +description = Ash Fork CCD, AZ +station = ('kprc', 0.011824397428970094) +zone = ('azz008', 0.0071228124494656471) + +[fips0402590484] +centroid = (0.60548423103448412, -1.9508749152191571) +description = Camp Verde-Sedona CCD, AZ +station = ('ksez', 0.0027645527809643483) +zone = ('azz038', 0.0041123036664197825) + +[fips0402590765] +centroid = (0.59649248671442712, -1.9671045224939423) +description = Congress CCD, AZ +station = ('kprc', 0.0092598758954644204) +zone = ('azz037', 0.0052387302127082777) + +[fips0402590840] +centroid = (0.59814389979937166, -1.9521861636328881) +description = Cordes Lakes-Mayer CCD, AZ +station = ('kpan', 0.0075392118857842754) +zone = ('azz038', 0.011187228795129749) + +[fips0402592193] +centroid = (0.60637776979833524, -1.9574032320197794) +description = Mingus Mountain CCD, AZ +station = ('kprc', 0.0041433772244988589) +zone = ('azz038', 0.0048779023920895292) + +[fips0402592754] +centroid = (0.60531861674176235, -1.9686673252127631) +description = Prescott CCD, AZ +station = ('kprc', 0.0054789508508798438) +zone = ('azz008', 0.0033612804860135214) + +[fips04027] +centroid = (0.57201319675765538, -1.9881203461764714) +description = Yuma County, AZ +station = ('knyl', 0.010348076894582225) +zone = ('azz026', 0.0010973229065539783) + +[fips0402793264] +centroid = (0.56784196456514413, -2.0015690156342987) +description = Somerton CCD, AZ +station = ('knyl', 0.0023381520571125847) +zone = ('azz025', 0.0029552848991681031) + +[fips0402793672] +centroid = (0.57200834474233475, -1.9870855404629637) +description = Wellton CCD, AZ +station = ('knyl', 0.011200078091103613) +zone = ('azz026', 0.00078448321239491946) + +[fips0402793978] +centroid = (0.57109442053282056, -1.9988772815954103) +description = Yuma CCD, AZ +station = ('knyl', 0.0016404819918893977) +zone = ('azz025', 0.0012927929000222233) + +[fips0402830] +centroid = (0.58291054391491748, -1.9466590200510874) +description = Apache Junction city, AZ +station = ('kiwa', 0.002196433137295113) +zone = ('azz028', 0.0063999632369482872) + +[fips0403320] +centroid = (0.55108664666636586, -1.9424225125445516) +description = Arivaca CDP, AZ +station = ('kols', 0.0071427440119465873) +zone = ('azz503', 0.0020857582124496456) + +[fips0403380] +centroid = (0.55394958005158224, -1.9386029991029019) +description = Arivaca Junction CDP, AZ +station = ('kols', 0.006535631398495197) +zone = ('azz503', 0.0024530741760262825) + +[fips0403530] +centroid = (0.57160906576935622, -1.9490170994968721) +description = Arizona City CDP, AZ +station = ('kcgz', 0.0037522084119024088) +zone = ('azz028', 0.005409122843209495) + +[fips0403915] +centroid = (0.60833164844265031, -1.9999612532339464) +description = Arizona Village CDP, AZ +station = ('keed', 0.0015878906799044578) +zone = ('azz002', 0.0046449085377422332) + +[fips0404020] +centroid = (0.58180540143255466, -1.9682881000728898) +description = Arlington CDP, AZ +station = ('kbxk', 0.0017984096419377312) +zone = ('azz022', 0.0064507268619481669) + +[fips0404440] +centroid = (0.61465588389383674, -1.9633436172085748) +description = Ash Fork CDP, AZ +station = ('kcmr', 0.0043959255459098913) +zone = ('azz008', 0.0070526197741170686) + +[fips0404710] +centroid = (0.57105501099831057, -2.0011953755480318) +description = Avenue B and C CDP, AZ +station = ('knyl', 0.0014933689862750539) +zone = ('azz025', 0.0022706859810820066) + +[fips0404720] +centroid = (0.58142224930186426, -1.9605122393762344) +description = Avondale city, AZ +station = ('kgyr', 0.0019739700682197318) +zone = ('azz023', 0.0048812926709365994) + +[fips0404880] +centroid = (0.56582731355627447, -1.9432367784537767) +description = Avra Valley CDP, AZ +station = ('kryn', 0.005480695043634509) +zone = ('azz505', 0.0056842406897788106) + +[fips0404930] +centroid = (0.57260995973549733, -1.9799488018850966) +description = Aztec CDP, AZ +station = ('kgbn', 0.012938372867333653) +zone = ('azz026', 0.0060927836073031288) + +[fips0405140] +centroid = (0.60348439787096397, -1.9753114271559624) +description = Bagdad CDP, AZ +station = ('kprc', 0.010995432360944486) +zone = ('azz008', 0.0087431571479412579) + +[fips0405450] +centroid = (0.59851527095761103, -1.9384915249235772) +description = Bear Flat CDP, AZ +station = ('kpan', 0.0038593533066672973) +zone = ('azz016', 0.004507169123754616) + +[fips0405490] +centroid = (0.64415399028776577, -1.9886036627529335) +description = Beaver Dam CDP, AZ +station = ('ksgu', 0.0056317460130774107) +zone = ('utz019', 0.0071167015318318117) + +[fips0405495] +centroid = (0.59939816321302475, -1.9425518588954167) +description = Beaver Valley CDP, AZ +station = ('kpan', 0.0016794669820597303) +zone = ('azz018', 0.0075927491303054394) + +[fips0405770] +centroid = (0.55701305176785276, -1.925596491357775) +description = Benson city, AZ +station = ('kalk', 0.0056542868264827057) +zone = ('azz507', 0.00045224896144340865) + +[fips0405970] +centroid = (0.54789417766508042, -1.9351323944320189) +description = Beyerville CDP, AZ +station = ('kols', 0.00056813520065305558) +zone = ('azz503', 0.0058570845454350715) + +[fips0406260] +centroid = (0.54799910685971032, -1.9186724560558479) +description = Bisbee city, AZ +station = ('kdug', 0.0050848145076371355) +zone = ('azz513', 0.0076220725342228141) + +[fips0406470] +centroid = (0.63899593148288436, -1.9486163893539066) +description = Bitter Springs CDP, AZ +station = ('kpga', 0.0062547378526594793) +zone = ('azz005', 0.0029103453761257195) + +[fips0406610] +centroid = (0.59465016951589944, -1.9568984828001026) +description = Black Canyon City CDP, AZ +station = ('kdvt', 0.0068124891050806583) +zone = ('azz037', 0.0084299838000556401) + +[fips0406820] +centroid = (0.57683754860955549, -1.9475600113708442) +description = Blackwater CDP, AZ +station = ('kcgz', 0.0031601575623795798) +zone = ('azz028', 0.0017048374684703726) + +[fips0407025] +centroid = (0.59638624852285815, -1.9942635735309333) +description = Bluewater CDP, AZ +station = ('keed', 0.011584903919279046) +zone = ('caz527', 0.0066809896110158499) + +[fips0407310] +centroid = (0.59163935438316151, -1.9896098101601234) +description = Bouse CDP, AZ +station = ('kblh', 0.011552710936971597) +zone = ('azz021', 0.0030554614926730996) + +[fips0407380] +centroid = (0.56417473110073124, -1.9108642195015684) +description = Bowie CDP, AZ +station = ('ksad', 0.009423768778473323) +zone = ('azz508', 0.0072142342846816193) + +[fips0407590] +centroid = (0.58768869690151737, -1.9885912011020743) +description = Brenda CDP, AZ +station = ('kblh', 0.011356750427381553) +zone = ('azz021', 0.0030338019068093295) + +[fips0407915] +centroid = (0.574664090092047, -1.916774305774549) +description = Bryce CDP, AZ +station = ('ksad', 0.0030797719219290524) +zone = ('azz509', 0.0015265572099478876) + +[fips0407940] +centroid = (0.58346562843022176, -1.9660634510484201) +description = Buckeye town, AZ +station = ('kbxk', 0.00071634732504998171) +zone = ('azz022', 0.005625276136998706) + +[fips0408020] +centroid = (0.57142688830203303, -1.9981064045713897) +description = Buckshot CDP, AZ +station = ('knyl', 0.0023316393686490036) +zone = ('azz025', 0.0017706574212618792) + +[fips0408220] +centroid = (0.61313020432820597, -1.9994692449178093) +description = Bullhead City city, AZ +station = ('kifp', 0.0004845385146741771) +zone = ('azz002', 0.0084777536702972719) + +[fips0408535] +centroid = (0.62401385065083981, -1.9133135622139397) +description = Burnside CDP, AZ +station = ('krqe', 0.0081135176692938658) +zone = ('azz011', 0.005884364339987575) + +[fips0408710] +centroid = (0.57818667066805463, -1.9218679444767395) +description = Bylas CDP, AZ +station = ('ksad', 0.0085550284986093857) +zone = ('azz509', 0.0070621978518905894) + +[fips0408920] +centroid = (0.5717780660008267, -1.9149970020906582) +description = Cactus Flats CDP, AZ +station = ('ksad', 0.0020260604496934696) +zone = ('azz509', 0.0019172818862892077) + +[fips0408990] +centroid = (0.57522252563951504, -1.9428468020857113) +description = Cactus Forest CDP, AZ +station = ('kcgz', 0.0065880125781436361) +zone = ('azz505', 0.003725448222012805) + +[fips0409340] +centroid = (0.62575223349241116, -1.9447979754696858) +description = Cameron CDP, AZ +station = ('kgcn', 0.010336908406035296) +zone = ('azz012', 0.0073711963891979282) + +[fips0409580] +centroid = (0.56832955719827372, -1.9320520802884664) +description = Campo Bonito CDP, AZ +station = ('kdma', 0.0074331545796420219) +zone = ('azz514', 0.0039614279409204535) + +[fips0409690] +centroid = (0.60334993770539036, -1.9522731857493927) +description = Camp Verde town, AZ +station = ('ksez', 0.0050101025763735563) +zone = ('azz038', 0.0059829502914648886) + +[fips0409900] +centroid = (0.64462259373863373, -1.9706824649138233) +description = Cane Beds CDP, AZ +station = ('ksgu', 0.009938833260945629) +zone = ('azz001', 0.0083732854853677749) + +[fips0410040] +centroid = (0.5896406556836552, -1.920558790458111) +description = Canyon Day CDP, AZ +station = ('ksow', 0.008415947654538786) +zone = ('azz017', 0.0062024801078667795) + +[fips0410180] +centroid = (0.59032398699239608, -1.9532703272576419) +description = Carefree town, AZ +station = ('kdvt', 0.00329346567176524) +zone = ('azz023', 0.0059820013801149341) + +[fips0410320] +centroid = (0.59305160500070531, -1.9256408925339457) +description = Carrizo CDP, AZ +station = ('ksow', 0.0068576137090934032) +zone = ('azz018', 0.0086217251041608121) + +[fips0410460] +centroid = (0.57797367068614125, -1.9531645777582634) +description = Casa Blanca CDP, AZ +station = ('kchd', 0.003033762475704986) +zone = ('azz028', 0.0031539821603811815) + +[fips0410530] +centroid = (0.57433743426924377, -1.9506169904622974) +description = Casa Grande city, AZ +station = ('kcgz', 0.00075151040353027673) +zone = ('azz028', 0.0027969854159344667) + +[fips0410670] +centroid = (0.56446932522517523, -1.9374991830707706) +description = Casas Adobes CDP, AZ +station = ('kdma', 0.0035858113776284202) +zone = ('azz504', 0.0029690171151440866) + +[fips0411160] +centroid = (0.5669684272745209, -1.9355637700099417) +description = Catalina CDP, AZ +station = ('kdma', 0.0055593856832199095) +zone = ('azz514', 0.0041369438357826572) + +[fips0411230] +centroid = (0.56377402095776585, -1.9353056009069867) +description = Catalina Foothills CDP, AZ +station = ('kdma', 0.0023598834817136751) +zone = ('azz504', 0.0033526450610688444) + +[fips0411300] +centroid = (0.59055318362976794, -1.9544579365471615) +description = Cave Creek town, AZ +station = ('kdvt', 0.0029362085002884266) +zone = ('azz023', 0.0058238708084537329) + +[fips0411370] +centroid = (0.5915165006571137, -1.923277908712963) +description = Cedar Creek CDP, AZ +station = ('ksow', 0.0070807575487294196) +zone = ('azz017', 0.0079536899696924009) + +[fips0411500] +centroid = (0.64496560329652819, -1.9718961145157825) +description = Centennial Park CDP, AZ +station = ('ksgu', 0.0089129327605182961) +zone = ('azz001', 0.0079904551337753836) + +[fips0411580] +centroid = (0.57365577847658478, -1.9162203906298436) +description = Central CDP, AZ +station = ('ksad', 0.0023378700671924909) +zone = ('azz509', 0.00068965699071348052) + +[fips0411720] +centroid = (0.5829413315229226, -1.934093347568429) +description = Central Heights-Midland City CDP, AZ +station = ('kiwa', 0.012253604483471103) +zone = ('azz024', 0.0039827324249370284) + +[fips0412000] +centroid = (0.58089573582641518, -1.9522370399805837) +description = Chandler city, AZ +station = ('kchd', 0.00068285728128481004) +zone = ('azz028', 0.0044862510360172926) + +[fips0412150] +centroid = (0.56282192639751039, -1.9652427623275475) +description = Charco CDP, AZ +station = ('kgbn', 0.0034707025573895494) +zone = ('azz501', 0.0055839126006399075) + +[fips0412560] +centroid = (0.55747481352805295, -1.9508674801165438) +description = Chiawuli Tak CDP, AZ +station = ('kryn', 0.0096216203996999251) +zone = ('azz515', 0.0034563210267121651) + +[fips0412630] +centroid = (0.63688804498537321, -1.9207319096666162) +description = Chilchinbito CDP, AZ +station = ('krqe', 0.020194347377381731) +zone = ('azz039', 0.0036046344345712113) + +[fips0412770] +centroid = (0.63095038251021096, -1.9124699922265731) +description = Chinle CDP, AZ +station = ('krqe', 0.011328785976513977) +zone = ('azz011', 0.0068890608282771368) + +[fips0412840] +centroid = (0.60632535756089778, -1.9618559160074673) +description = Chino Valley town, AZ +station = ('kprc', 0.0015761325651969967) +zone = ('azz008', 0.0039488048249726355) + +[fips0412910] +centroid = (0.6180158870500212, -1.9931178695967544) +description = Chloride CDP, AZ +station = ('kigm', 0.004678701015467095) +zone = ('azz003', 0.0063467248721609023) + +[fips0413140] +centroid = (0.59900862317727221, -1.9374401036755908) +description = Christopher Creek CDP, AZ +station = ('kpan', 0.0048164261001209119) +zone = ('azz016', 0.0035148886926396395) + +[fips0413190] +centroid = (0.57142655668947506, -1.9509672954964652) +description = Chuichu CDP, AZ +station = ('kcgz', 0.0036665060031615859) +zone = ('azz028', 0.0056901627792887198) + +[fips0413400] +centroid = (0.59394194981202508, -1.928448498981874) +description = Cibecue CDP, AZ +station = ('ksow', 0.0081345129326184148) +zone = ('azz018', 0.0062293975239510824) + +[fips0413470] +centroid = (0.58248766809045172, -2.0014789042850181) +description = Cibola CDP, AZ +station = ('kblh', 0.0042744319486560899) +zone = ('caz031', 0.001087796585901419) + +[fips0413540] +centroid = (0.5967371644222641, -1.9934292188820175) +description = Cienega Springs CDP, AZ +station = ('keed', 0.011597320979816026) +zone = ('caz527', 0.006777730405807909) + +[fips0413820] +centroid = (0.58523987778792164, -1.962444912270138) +description = Citrus Park CDP, AZ +station = ('kluf', 0.00082211971827619976) +zone = ('azz023', 0.0049477669107217655) + +[fips0413850] +centroid = (0.61471121083112501, -1.9909372203227276) +description = Clacks Canyon CDP, AZ +station = ('kigm', 0.0020475037448022745) +zone = ('azz003', 0.0032615258227249814) + +[fips0413890] +centroid = (0.60647041187503103, -1.9557908095903245) +description = Clarkdale town, AZ +station = ('ksez', 0.0043262313924442063) +zone = ('azz038', 0.0038362739170228776) + +[fips0413960] +centroid = (0.5830464527037702, -1.9345556329274047) +description = Claypool CDP, AZ +station = ('kiwa', 0.011883253950830236) +zone = ('azz024', 0.0036631588564300368) + +[fips0414030] +centroid = (0.59968219809549439, -1.9251738075195268) +description = Clay Springs CDP, AZ +station = ('ksow', 0.0046089544792142171) +zone = ('azz016', 0.0074542278729479924) + +[fips0414380] +centroid = (0.57647356019405216, -1.9073653928566803) +description = Clifton town, AZ +station = ('ksad', 0.0059999483983717416) +zone = ('azz510', 0.0069101713596447832) + +[fips0414870] +centroid = (0.64525012687118832, -1.9719657007930593) +description = Colorado City town, AZ +station = ('ksgu', 0.0087900081944416245) +zone = ('azz001', 0.0081836880991327018) + +[fips0415080] +centroid = (0.55944516808050682, -1.951328473931873) +description = Comobabi CDP, AZ +station = ('kryn', 0.0094776015795361764) +zone = ('azz502', 0.0041650362230358168) + +[fips0415150] +centroid = (0.60164227265865411, -1.9131256426133774) +description = Concho CDP, AZ +station = ('ksjn', 0.0034105303169203647) +zone = ('azz014', 0.0033427056039992908) + +[fips0415220] +centroid = (0.59608535375981431, -1.9698755468407487) +description = Congress CDP, AZ +station = ('kprc', 0.010815575400342397) +zone = ('azz037', 0.0070199451311089324) + +[fips0415500] +centroid = (0.57525385429958842, -1.9465223956772413) +description = Coolidge city, AZ +station = ('kcgz', 0.0035063653338305825) +zone = ('azz028', 0.0031040953925112824) + +[fips0415600] +centroid = (0.58352144405970041, -1.9329258619251848) +description = Copper Hill CDP, AZ +station = ('kiwa', 0.013296230166250516) +zone = ('azz024', 0.0043041380947295383) + +[fips0415765] +centroid = (0.59882728346798997, -1.9566415354276241) +description = Cordes Lakes CDP, AZ +station = ('kprc', 0.0074139559840440111) +zone = ('azz037', 0.0062025692949257876) + +[fips0415850] +centroid = (0.62223331810783267, -1.9142031739869738) +description = Cornfields CDP, AZ +station = ('krqe', 0.00863840160256657) +zone = ('azz011', 0.0073174412308054087) + +[fips0415920] +centroid = (0.60631200579212008, -1.9531734789374486) +description = Cornville CDP, AZ +station = ('ksez', 0.0026397893373977265) +zone = ('azz038', 0.0030406224484512412) + +[fips0416030] +centroid = (0.55762362030007795, -1.9335393626105535) +description = Corona de Tucson CDP, AZ +station = ('ktus', 0.0040439981892313381) +zone = ('azz504', 0.0056508341695067762) + +[fips0416360] +centroid = (0.62958185239042974, -1.9179464339936034) +description = Cottonwood CDP, AZ +station = ('krqe', 0.013785806462181582) +zone = ('azz039', 0.0070004576923739766) + +[fips0416410] +centroid = (0.60597390060942369, -1.9547906137558839) +description = Cottonwood city, AZ +station = ('ksez', 0.0038633883050283213) +zone = ('azz038', 0.0037765724169616099) + +[fips0416830] +centroid = (0.55509755291378893, -1.9545528475518847) +description = Cowlic CDP, AZ +station = ('kryn', 0.013445458226032577) +zone = ('azz502', 0.0060177897331329831) + +[fips0417460] +centroid = (0.61824461244849493, -1.9835429933203135) +description = Crozier CDP, AZ +station = ('kigm', 0.005052383153755024) +zone = ('azz003', 0.0050447776131028049) + +[fips0417500] +centroid = (0.60338444286470228, -1.9965281033288111) +description = Crystal Beach CDP, AZ +station = ('keed', 0.0046860155613682279) +zone = ('azz002', 0.0019328521009191802) + +[fips0417810] +centroid = (0.582213564131426, -1.9313696041910593) +description = Cutter CDP, AZ +station = ('kiwa', 0.014463591487022613) +zone = ('azz024', 0.0061289358816294208) + +[fips0418160] +centroid = (0.57283292554743959, -1.9816788769594285) +description = Dateland CDP, AZ +station = ('kgbn', 0.014317849485015797) +zone = ('azz026', 0.0046360650049480229) + +[fips0418448] +centroid = (0.59450001884035042, -1.9434150638368681) +description = Deer Creek CDP, AZ +station = ('kpan', 0.0032873128100835932) +zone = ('azz018', 0.0061866326906692961) + +[fips0418490] +centroid = (0.63158124922163683, -1.9099969828495449) +description = Del Muerto CDP, AZ +station = ('krqe', 0.01071879557167036) +zone = ('azz011', 0.0062235732519698682) + +[fips0418580] +centroid = (0.64281642230891489, -1.9176588386394597) +description = Dennehotso CDP, AZ +station = ('k4bl', 0.014839077553297131) +zone = ('azz010', 0.0055790894107207714) + +[fips0418740] +centroid = (0.60295095543838451, -1.9962763395842109) +description = Desert Hills CDP, AZ +station = ('keed', 0.0051458500236651805) +zone = ('caz527', 0.0019537690802888738) + +[fips0419145] +centroid = (0.60244295990629904, -1.9591280885596478) +description = Dewey-Humboldt town, AZ +station = ('kprc', 0.0033322754471802342) +zone = ('azz037', 0.0040766596591073649) + +[fips0419280] +centroid = (0.61702131117577219, -1.9252193606130039) +description = Dilkon CDP, AZ +station = ('kinw', 0.008076127127675017) +zone = ('azz040', 0.0029634695541042996) + +[fips0419630] +centroid = (0.62117058712629336, -1.9946526597810805) +description = Dolan Springs CDP, AZ +station = ('kigm', 0.0077685788096665933) +zone = ('azz036', 0.003708343721238066) + +[fips0419740] +centroid = (0.61555443175264102, -1.9461343566246454) +description = Doney Park CDP, AZ +station = ('kflg', 0.0032979846797481041) +zone = ('azz015', 0.0038187441828986799) + +[fips0419790] +centroid = (0.57088592350037726, -2.0015125716862894) +description = Donovan Estates CDP, AZ +station = ('knyl', 0.0015471401713037145) +zone = ('azz025', 0.0024175148014566185) + +[fips0420050] +centroid = (0.54802071403584995, -1.9118562122885243) +description = Douglas city, AZ +station = ('kdug', 0.0014655616607231361) +zone = ('azz512', 0.0085259884496726931) + +[fips0420330] +centroid = (0.55896548178888883, -1.9204988558515974) +description = Dragoon CDP, AZ +station = ('kalk', 0.0093663942043327973) +zone = ('azz507', 0.0043271920670986145) + +[fips0420540] +centroid = (0.5610297350550999, -1.9381674696413593) +description = Drexel Heights CDP, AZ +station = ('ktus', 0.0014736405388557777) +zone = ('azz504', 0.00056076373571209198) + +[fips0420560] +centroid = (0.57779044602126683, -1.9330409489360614) +description = Dripping Springs CDP, AZ +station = ('kiwa', 0.013580253192539101) +zone = ('azz506', 0.0048776300443232022) + +[fips0420570] +centroid = (0.56976683583729104, -2.0020110202673664) +description = Drysdale CDP, AZ +station = ('knyl', 0.001571443504335311) +zone = ('azz025', 0.0025820686449198604) + +[fips0420680] +centroid = (0.57351538419155446, -1.9323673565645467) +description = Dudleyville CDP, AZ +station = ('kdma', 0.012347751142506276) +zone = ('azz506', 0.00079424728739457048) + +[fips0420750] +centroid = (0.57159499841558503, -1.903951755732582) +description = Duncan town, AZ +station = ('klsb', 0.0093223914842543703) +zone = ('nmz401', 0.007272351465032423) + +[fips0420960] +centroid = (0.59524359891487, -1.9075552148661274) +description = Eagar town, AZ +station = ('ksjn', 0.0072981881823307049) +zone = ('azz017', 0.0059805803096099454) + +[fips0421310] +centroid = (0.59010803740404671, -1.9184822500739656) +description = East Fork CDP, AZ +station = ('ksow', 0.0080277159489400077) +zone = ('azz017', 0.0044434720650006389) + +[fips0421410] +centroid = (0.58208842402405803, -1.9321713909961327) +description = East Globe CDP, AZ +station = ('kiwa', 0.013789166648295619) +zone = ('azz024', 0.0057045653569332711) + +[fips0421545] +centroid = (0.59861777414458051, -1.9436781024084362) +description = East Verde Estates CDP, AZ +station = ('kpan', 0.00097884971167942043) +zone = ('azz018', 0.0078135861314950466) + +[fips0421800] +centroid = (0.58667858759692559, -1.9981053399205457) +description = Ehrenberg CDP, AZ +station = ('kblh', 0.0033964820931832503) +zone = ('azz020', 0.00018914522962645809) + +[fips0421900] +centroid = (0.58011852325720958, -1.9335331317851239) +description = El Capitan CDP, AZ +station = ('kiwa', 0.012720128742104602) +zone = ('azz024', 0.0066153161924980023) + +[fips0421980] +centroid = (0.55441898635390607, -1.9371766985848797) +description = Elephant Head CDP, AZ +station = ('ktus', 0.0064436403514451937) +zone = ('azz503', 0.003586709583375129) + +[fips0422080] +centroid = (0.55305230628313196, -1.9144827233732655) +description = Elfrida CDP, AZ +station = ('kdug', 0.0040897708345552612) +zone = ('azz508', 0.0045213894406971747) + +[fips0422150] +centroid = (0.55270905237914214, -1.9292189745801669) +description = Elgin CDP, AZ +station = ('kalk', 0.0020930795732103467) +zone = ('azz513', 0.0025274059060056801) + +[fips0422220] +centroid = (0.58626000528241973, -1.9604777691235076) +description = El Mirage city, AZ +station = ('kgeu', 0.0011930344934936465) +zone = ('azz023', 0.0035372083965680818) + +[fips0422360] +centroid = (0.57147511174926557, -1.9477609162210414) +description = Eloy city, AZ +station = ('kcgz', 0.0043726583844989377) +zone = ('azz505', 0.0038049004325104194) + +[fips0422400] +centroid = (0.57083112016186477, -1.9987769077101281) +description = El Prado Estates CDP, AZ +station = ('knyl', 0.0015143188285750198) +zone = ('azz025', 0.0010379081858018068) + +[fips0423512] +centroid = (0.62538049581502897, -1.9263005571780294) +description = First Mesa CDP, AZ +station = ('kinw', 0.01478514824417885) +zone = ('azz040', 0.0065402296496043814) + +[fips0423620] +centroid = (0.61409788467868176, -1.9481491821664403) +description = Flagstaff city, AZ +station = ('kflg', 0.0011179092970084589) +zone = ('azz015', 0.0022505577744379385) + +[fips0423760] +centroid = (0.57685779442887863, -1.9445199270665505) +description = Florence town, AZ +station = ('kiwa', 0.0057811768558936128) +zone = ('azz028', 0.0042476499987836886) + +[fips0423955] +centroid = (0.59881033632095315, -1.9431576277721989) +description = Flowing Springs CDP, AZ +station = ('kpan', 0.0010373137969238203) +zone = ('azz018', 0.0075833727239554395) + +[fips0423960] +centroid = (0.56362495238635302, -1.9374846095715166) +description = Flowing Wells CDP, AZ +station = ('kdma', 0.0028926602631209716) +zone = ('azz504', 0.0021596161076729006) + +[fips0424250] +centroid = (0.58974799343265283, -1.9196634540051305) +description = Fort Apache CDP, AZ +station = ('ksow', 0.0082975422948919093) +zone = ('azz017', 0.0054823332284833146) + +[fips0424460] +centroid = (0.62389972357105183, -1.9036045050246055) +description = Fort Defiance CDP, AZ +station = ('krqe', 0.0016900458884444565) +zone = ('azz011', 0.0031754305540617448) + +[fips0424895] +centroid = (0.61087202752880554, -1.9997083550253325) +description = Fort Mohave CDP, AZ +station = ('kifp', 0.0027509173860611256) +zone = ('azz002', 0.0065163990042548118) + +[fips0424950] +centroid = (0.57648860493220433, -1.9191860017349549) +description = Fort Thomas CDP, AZ +station = ('ksad', 0.0057428999267974878) +zone = ('azz509', 0.0042506389755262589) + +[fips0425030] +centroid = (0.57005231934303979, -1.9966134324759413) +description = Fortuna Foothills CDP, AZ +station = ('knyl', 0.0029821492553008064) +zone = ('azz025', 0.0019786501006125185) + +[fips0425045] +centroid = (0.61532308836028915, -1.9499738889928151) +description = Fort Valley CDP, AZ +station = ('kflg', 0.0022888454705078357) +zone = ('azz015', 0.00076793883380331309) + +[fips0425300] +centroid = (0.58654758318327094, -1.9501788081002918) +description = Fountain Hills town, AZ +station = ('kffz', 0.0024446469877487634) +zone = ('azz023', 0.0055076683928119326) + +[fips0425650] +centroid = (0.57032178072625517, -1.9036666387459764) +description = Franklin CDP, AZ +station = ('klsb', 0.0082033151020969221) +zone = ('nmz404', 0.0066381435464900095) + +[fips0425720] +centroid = (0.64518993046528694, -1.9638864844191151) +description = Fredonia town, AZ +station = ('kbce', 0.013803164967772579) +zone = ('azz004', 0.0070955312638223619) + +[fips0425735] +centroid = (0.59899500960910657, -1.9426413768327517) +description = Freedom Acres CDP, AZ +station = ('kpan', 0.001271284834422042) +zone = ('azz018', 0.007373665787941853) + +[fips0426070] +centroid = (0.56821591881067635, -2.0033080442476936) +description = Gadsden CDP, AZ +station = ('knyl', 0.003124098431559317) +zone = ('azz025', 0.0040037006778747882) + +[fips0426210] +centroid = (0.62293890236453653, -1.9121094770162812) +description = Ganado CDP, AZ +station = ('krqe', 0.0069735235725204969) +zone = ('azz011', 0.0055054887949984232) + +[fips0426780] +centroid = (0.59985992497322493, -1.9436301058540062) +description = Geronimo Estates CDP, AZ +station = ('kpan', 0.0021344760808375074) +zone = ('azz018', 0.0085586068970058739) + +[fips0427050] +centroid = (0.57506199025491667, -1.9670825837052446) +description = Gila Bend town, AZ +station = ('kbxk', 0.0080557077282811373) +zone = ('azz027', 0.0012995930669251752) + +[fips0427260] +centroid = (0.58072373362863117, -1.9576077322482357) +description = Gila Crossing CDP, AZ +station = ('kphx', 0.0032488679213852683) +zone = ('azz023', 0.0043595741733498082) + +[fips0427400] +centroid = (0.58137282157744785, -1.9502691463423751) +description = Gilbert town, AZ +station = ('kchd', 0.0012345624038216812) +zone = ('azz028', 0.0044129846124569367) + +[fips0427540] +centroid = (0.59518944134818064, -1.9423433095030957) +description = Gisela CDP, AZ +station = ('kpan', 0.002655747681357604) +zone = ('azz018', 0.0053939630095397855) + +[fips0427820] +centroid = (0.58526319538672822, -1.958083159936479) +description = Glendale city, AZ +station = ('kgeu', 0.0015365656919132506) +zone = ('azz023', 0.0013339873597078527) + +[fips0428030] +centroid = (0.58278152917661008, -1.9329230170385041) +description = Globe city, AZ +station = ('kiwa', 0.013208750522916406) +zone = ('azz024', 0.0047726752627089628) + +[fips0428120] +centroid = (0.58244225462331478, -1.944941546253955) +description = Gold Canyon CDP, AZ +station = ('kiwa', 0.0032504207156091483) +zone = ('azz028', 0.0066889319536935447) + +[fips0428190] +centroid = (0.60705834348685783, -1.9980136403216462) +description = Golden Shores CDP, AZ +station = ('keed', 0.0020091798842276779) +zone = ('azz002', 0.0026080913522542656) + +[fips0428195] +centroid = (0.61446176837443001, -1.99373765346743) +description = Golden Valley CDP, AZ +station = ('kifp', 0.0047367321245285147) +zone = ('azz003', 0.0055012522329123863) + +[fips0428380] +centroid = (0.5803923305102624, -1.9611649052500177) +description = Goodyear city, AZ +station = ('kgyr', 0.0028491561343102594) +zone = ('azz023', 0.0060142340217998694) + +[fips0428465] +centroid = (0.57940262410462651, -1.9525415475751791) +description = Goodyear Village CDP, AZ +station = ('kchd', 0.0015402917707061229) +zone = ('azz028', 0.0034519870844061549) + +[fips0428981] +centroid = (0.6291777737620079, -1.9575024190811703) +description = Grand Canyon Village CDP, AZ +station = ('kgcn', 0.0017344336889086379) +zone = ('azz006', 0.0032764243797595229) + +[fips0428985] +centroid = (0.62839563936431175, -1.9862562996287563) +description = Grand Canyon West CDP, AZ +station = ('kigm', 0.013294092123973008) +zone = ('azz036', 0.0081032535640242487) + +[fips0429430] +centroid = (0.62009174675575818, -1.9174338482455853) +description = Greasewood CDP, AZ +station = ('krqe', 0.01146947185850368) +zone = ('azz040', 0.0046219196641862307) + +[fips0429710] +centroid = (0.5555705371410794, -1.9377600225274811) +description = Green Valley CDP, AZ +station = ('ktus', 0.005379237626495486) +zone = ('azz503', 0.004212969032794338) + +[fips0429850] +centroid = (0.59352673598297567, -1.9104409946112522) +description = Greer CDP, AZ +station = ('ksjn', 0.008971533842742201) +zone = ('azz017', 0.0030548742064523352) + +[fips0430270] +centroid = (0.58235287631232024, -1.9541240027013773) +description = Guadalupe town, AZ +station = ('kphx', 0.0017454425361744005) +zone = ('azz023', 0.0033059233672980371) + +[fips0430550] +centroid = (0.55711915033308146, -1.955179490566521) +description = Gu Oidak CDP, AZ +station = ('kgbn', 0.013232220561094027) +zone = ('azz502', 0.0039348343407719921) + +[fips0430830] +centroid = (0.61680103317087798, -1.9848866699515464) +description = Hackberry CDP, AZ +station = ('kigm', 0.0033506786435073847) +zone = ('azz003', 0.003236203353835889) + +[fips0430840] +centroid = (0.59724528212739725, -1.9368167767865336) +description = Haigler Creek CDP, AZ +station = ('kpan', 0.0052010333613807169) +zone = ('azz018', 0.0032121987326410267) + +[fips0430850] +centroid = (0.55859531490783321, -1.9497495094641788) +description = Haivana Nakya CDP, AZ +station = ('kryn', 0.0083601897666462262) +zone = ('azz515', 0.0037049081504935957) + +[fips0431182] +centroid = (0.62880896823776911, -1.9286594918351474) +description = Hard Rock CDP, AZ +station = ('kinw', 0.017622622257097882) +zone = ('azz039', 0.0067877126025572597) + +[fips0432020] +centroid = (0.57592969814583828, -1.9335392927973833) +description = Hayden town, AZ +station = ('kiwa', 0.013824182763416919) +zone = ('azz506', 0.0030525076331110275) + +[fips0432310] +centroid = (0.60064006969557393, -1.9298028919347139) +description = Heber-Overgaard CDP, AZ +station = ('ksow', 0.0085332001760396927) +zone = ('azz016', 0.003526261684152464) + +[fips0433280] +centroid = (0.60920061297063322, -1.9227805422360222) +description = Holbrook city, AZ +station = ('kinw', 0.0081732605242081993) +zone = ('azz013', 0.0023378261897414754) + +[fips0433440] +centroid = (0.59505772134953261, -1.9187169794050665) +description = Hondah CDP, AZ +station = ('ksow', 0.0031561695851337105) +zone = ('azz017', 0.0050632235713657988) + +[fips0433945] +centroid = (0.62697680885548801, -1.9310195784095718) +description = Hotevilla-Bacavi CDP, AZ +station = ('kinw', 0.015568700794013965) +zone = ('azz039', 0.0093815352083474468) + +[fips0433980] +centroid = (0.61556554949997622, -1.9063086483544753) +description = Houck CDP, AZ +station = ('krqe', 0.0070081528927610605) +zone = ('nmz505', 0.0071925783185925081) + +[fips0434120] +centroid = (0.55206143050689716, -1.9258359505311484) +description = Huachuca City town, AZ +station = ('kalk', 0.0012741400646535598) +zone = ('azz513', 0.00076524052687540359) + +[fips0434700] +centroid = (0.59873835894260086, -1.9376205009070768) +description = Hunter Creek CDP, AZ +station = ('kpan', 0.0046089457941055267) +zone = ('azz016', 0.003798703842579119) + +[fips0434980] +centroid = (0.58199949949866892, -1.9338452664685504) +description = Icehouse Canyon CDP, AZ +station = ('kiwa', 0.012388528869018641) +zone = ('azz024', 0.004860822359046126) + +[fips0435310] +centroid = (0.61800866138691779, -1.9218594447232822) +description = Indian Wells CDP, AZ +station = ('kinw', 0.010806741094852239) +zone = ('azz040', 0.0016932873984431803) + +[fips0436010] +centroid = (0.59355590043477657, -1.9429041536049316) +description = Jakes Corner CDP, AZ +station = ('kpan', 0.0042217393181180731) +zone = ('azz018', 0.0057797657741311577) + +[fips0436150] +centroid = (0.62427284005854333, -1.9220930570436616) +description = Jeddito CDP, AZ +station = ('krqe', 0.015179331176517437) +zone = ('azz040', 0.0049360192688992629) + +[fips0436290] +centroid = (0.60644292293931212, -1.9566408023893382) +description = Jerome town, AZ +station = ('ksez', 0.0049808292921829696) +zone = ('azz038', 0.0043519365928140676) + +[fips0436430] +centroid = (0.61023156150649371, -1.9256049911112321) +description = Joseph City CDP, AZ +station = ('kinw', 0.0056736904077675579) +zone = ('azz013', 0.0021019285382263895) + +[fips0436475] +centroid = (0.61248694577909091, -1.9494217191773617) +description = Kachina Village CDP, AZ +station = ('kflg', 0.00080365189483026756) +zone = ('azz015', 0.0026161426339110661) + +[fips0436500] +centroid = (0.64369493378790621, -1.9674194846107573) +description = Kaibab CDP, AZ +station = ('ksgu', 0.012702330945643837) +zone = ('azz004', 0.0083388057172940951) + +[fips0436640] +centroid = (0.63865093224964264, -1.93918532820783) +description = Kaibito CDP, AZ +station = ('kpga', 0.0076467117607243668) +zone = ('azz009', 0.00378693756561599) + +[fips0436780] +centroid = (0.56743053810057142, -1.9602961152549601) +description = Kaka CDP, AZ +station = ('kgbn', 0.0055677493904864395) +zone = ('azz502', 0.0074253340757715613) + +[fips0436920] +centroid = (0.61471840158764324, -1.9994723341505853) +description = Katherine CDP, AZ +station = ('kifp', 0.0011045959049722704) +zone = ('nvz022', 0.0085583020527904285) + +[fips0436990] +centroid = (0.64083444386364263, -1.9244085155491124) +description = Kayenta CDP, AZ +station = ('kpga', 0.017041432573709991) +zone = ('azz039', 0.0063247495642232065) + +[fips0437130] +centroid = (0.62512408949461851, -1.9233526786181185) +description = Keams Canyon CDP, AZ +station = ('kinw', 0.01552602045702217) +zone = ('azz040', 0.0057313070807619073) + +[fips0437200] +centroid = (0.5769354615805925, -1.9357130829274498) +description = Kearny town, AZ +station = ('kiwa', 0.011751848715339417) +zone = ('azz506', 0.0046289391949820074) + +[fips0437620] +centroid = (0.61464916437621664, -1.9899674106705645) +description = Kingman city, AZ +station = ('kigm', 0.0013226211089743124) +zone = ('azz003', 0.0024740229296073557) + +[fips0437935] +centroid = (0.54740730061694409, -1.9339948935453242) +description = Kino Springs CDP, AZ +station = ('kols', 0.0010956916485941705) +zone = ('azz503', 0.0069059612989164181) + +[fips0438250] +centroid = (0.61959183209810942, -1.9116671058640708) +description = Klagetoh CDP, AZ +station = ('krqe', 0.0070852612343008424) +zone = ('azz011', 0.0076915302284796244) + +[fips0438530] +centroid = (0.56859826808991076, -1.9548213490040116) +description = Kohatk CDP, AZ +station = ('kcgz', 0.0073568108951950588) +zone = ('azz502', 0.0076431729786734263) + +[fips0438600] +centroid = (0.59901537760147738, -1.9387790155579656) +description = Kohls Ranch CDP, AZ +station = ('kpan', 0.0037599547326955048) +zone = ('azz016', 0.0044443768888641081) + +[fips0438655] +centroid = (0.58111241845305028, -1.9575881671073208) +description = Komatke CDP, AZ +station = ('kphx', 0.0029096860266456721) +zone = ('azz023', 0.0039765524524034909) + +[fips0438940] +centroid = (0.55992783888514586, -1.9529514381500102) +description = Ko Vaya CDP, AZ +station = ('kryn', 0.010779286755908215) +zone = ('azz502', 0.0027100391960339287) + +[fips0439100] +centroid = (0.6250066811958368, -1.9313263549321946) +description = Kykotsmovi Village CDP, AZ +station = ('kinw', 0.013586329499266244) +zone = ('azz040', 0.008758640351068863) + +[fips0439370] +centroid = (0.60216609832705514, -1.9951705687833174) +description = Lake Havasu City city, AZ +station = ('keed', 0.006339687909902446) +zone = ('caz527', 0.002679355525383083) + +[fips0439720] +centroid = (0.60452808731036412, -1.9512945970910918) +description = Lake Montezuma CDP, AZ +station = ('ksez', 0.0037277238236261712) +zone = ('azz038', 0.0049268010210887008) + +[fips0439790] +centroid = (0.59607376477358109, -1.9197673360022092) +description = Lake of the Woods CDP, AZ +station = ('ksow', 0.0019745331153273819) +zone = ('azz017', 0.0063673459519146113) + +[fips0440160] +centroid = (0.58567209112388552, -1.9939214715442501) +description = La Paz Valley CDP, AZ +station = ('kblh', 0.0069622593925751618) +zone = ('azz020', 0.0034409274690520319) + +[fips0440400] +centroid = (0.61325482083679839, -1.9891249227873342) +description = Lazy Y U CDP, AZ +station = ('kigm', 0.0020363466051594357) +zone = ('azz003', 0.0019044743183688948) + +[fips0440415] +centroid = (0.64334377354240502, -1.9447233102842854) +description = LeChee CDP, AZ +station = ('kpga', 0.0013138676829863465) +zone = ('azz005', 0.0037010549644189909) + +[fips0440630] +centroid = (0.61604204183906319, -1.9373680215774833) +description = Leupp CDP, AZ +station = ('kinw', 0.0061486615356456343) +zone = ('azz012', 0.0041242877336008866) + +[fips0441085] +centroid = (0.59813896051758841, -1.9221501118569093) +description = Linden CDP, AZ +station = ('ksow', 0.0018132448429050915) +zone = ('azz017', 0.0092009171448549348) + +[fips0441330] +centroid = (0.58471603466622801, -1.9610426972957931) +description = Litchfield Park city, AZ +station = ('kluf', 0.00065132208280578997) +zone = ('azz023', 0.0037827475669786619) + +[fips0441470] +centroid = (0.64343770716274729, -1.9885556138386262) +description = Littlefield CDP, AZ +station = ('ksgu', 0.0060234436753774006) +zone = ('utz019', 0.0075713771147549276) + +[fips0441540] +centroid = (0.56078291059228291, -1.9350956377979716) +description = Littletown CDP, AZ +station = ('kdma', 0.00065019104566369195) +zone = ('azz504', 0.0028285446290541656) + +[fips0442460] +centroid = (0.57845016302522823, -1.9510218719421752) +description = Lower Santan Village CDP, AZ +station = ('kchd', 0.0022382532983378791) +zone = ('azz028', 0.0018867681336245776) + +[fips0442590] +centroid = (0.62741197179788777, -1.9216154476938534) +description = Low Mountain CDP, AZ +station = ('krqe', 0.01553121699471488) +zone = ('azz039', 0.007381102473388244) + +[fips0442660] +centroid = (0.63550466211365753, -1.9063559293239121) +description = Lukachukai CDP, AZ +station = ('krqe', 0.01348399530588539) +zone = ('azz010', 0.0071095513655077278) + +[fips0442940] +centroid = (0.61705661918653998, -1.9033308024913078) +description = Lupton CDP, AZ +station = ('kgup', 0.0047616243737279166) +zone = ('nmz505', 0.0066499085426850024) + +[fips0443150] +centroid = (0.61372066666744818, -1.9912426180352416) +description = McConnico CDP, AZ +station = ('kigm', 0.0026930290521410189) +zone = ('azz003', 0.0034677445024383969) + +[fips0443430] +centroid = (0.59502218644596205, -1.9172671169421422) +description = McNary CDP, AZ +station = ('ksow', 0.003752152189931658) +zone = ('azz017', 0.00411413927720928) + +[fips0443570] +centroid = (0.55169993791222416, -1.9138978111810447) +description = McNeal CDP, AZ +station = ('kdug', 0.0026488188483396792) +zone = ('azz508', 0.0055751248603251834) + +[fips0443920] +centroid = (0.56147756908786928, -1.9571109417299479) +description = Maish Vaya CDP, AZ +station = ('kgbn', 0.0093114164599894002) +zone = ('azz502', 0.0011384943132664851) + +[fips0443990] +centroid = (0.57113196256503085, -1.9311117492473695) +description = Mammoth town, AZ +station = ('kdma', 0.010334554677703257) +zone = ('azz506', 0.0023768132257929639) + +[fips0444200] +centroid = (0.63430293311048924, -1.9135376624898957) +description = Many Farms CDP, AZ +station = ('krqe', 0.014534167992462956) +zone = ('azz010', 0.0035815370838113447) + +[fips0444270] +centroid = (0.56662805316379694, -1.9397417566266582) +description = Marana town, AZ +station = ('kryn', 0.005697595376542965) +zone = ('azz504', 0.0051937742427620916) + +[fips0444410] +centroid = (0.57675255107498347, -1.9550390264683204) +description = Maricopa city, AZ +station = ('kcgz', 0.0040053644712749322) +zone = ('azz028', 0.0045778316158928637) + +[fips0444450] +centroid = (0.58229435542250085, -1.9587348309725885) +description = Maricopa Colony CDP, AZ +station = ('kgyr', 0.0024599309414725682) +zone = ('azz023', 0.00326724732996166) + +[fips0444830] +centroid = (0.57572163744570792, -1.9978493699324484) +description = Martinez Lake CDP, AZ +station = ('knyl', 0.0061810658188022286) +zone = ('azz025', 0.0059899269357048274) + +[fips0445180] +centroid = (0.60080105886577784, -1.9589713230862338) +description = Mayer CDP, AZ +station = ('kprc', 0.0046947093962178416) +zone = ('azz037', 0.0039148993756400637) + +[fips0445275] +centroid = (0.59948263714882133, -1.9398577163021609) +description = Mead Ranch CDP, AZ +station = ('kpan', 0.0031590175515416822) +zone = ('azz016', 0.0050747946971875608) + +[fips0445285] +centroid = (0.62750094868315442, -1.9910519059078762) +description = Meadview CDP, AZ +station = ('kigm', 0.012444955829105245) +zone = ('azz036', 0.0043143512041728576) + +[fips0446000] +centroid = (0.58297358520749953, -1.9498360952483702) +description = Mesa city, AZ +station = ('kffz', 0.00115358491275015) +zone = ('azz023', 0.0059267532905440097) + +[fips0446005] +centroid = (0.59840299392683016, -1.9424680656380284) +description = Mesa del Caballo CDP, AZ +station = ('kpan', 0.00080353370253197578) +zone = ('azz018', 0.0068838591201049945) + +[fips0446070] +centroid = (0.55793690690081088, -1.9274819705487045) +description = Mescal CDP, AZ +station = ('kalk', 0.0064175802599452519) +zone = ('azz507', 0.0020061366298588486) + +[fips0446087] +centroid = (0.61017752611285203, -1.9996478968200435) +description = Mesquite Creek CDP, AZ +station = ('kifp', 0.0034408369911504478) +zone = ('azz002', 0.0058968767183464783) + +[fips0446350] +centroid = (0.58285218010473072, -1.9350867540720791) +description = Miami town, AZ +station = ('kiwa', 0.011419490353482716) +zone = ('azz024', 0.0035912503330225859) + +[fips0446840] +centroid = (0.54773493382412841, -1.9224546543580898) +description = Miracle Valley CDP, AZ +station = ('kalk', 0.0055389254924346262) +zone = ('azz513', 0.0052094600775914827) + +[fips0447190] +centroid = (0.64419816457113377, -1.967937393612994) +description = Moccasin CDP, AZ +station = ('ksgu', 0.012168442487860047) +zone = ('azz004', 0.0089464922848798752) + +[fips0447330] +centroid = (0.63028174687377192, -1.9411768710574031) +description = Moenkopi CDP, AZ +station = ('kpga', 0.014681395133673536) +zone = ('azz009', 0.0061956939577078509) + +[fips0447400] +centroid = (0.60916239026001451, -1.999724446961036) +description = Mohave Valley CDP, AZ +station = ('keed', 0.0024409373631875688) +zone = ('azz002', 0.0051124965802641018) + +[fips0447495] +centroid = (0.60990357923345906, -1.9999840123273926) +description = Mojave Ranch Estates CDP, AZ +station = ('keed', 0.0031330242981141175) +zone = ('azz002', 0.0058278654532199319) + +[fips0447610] +centroid = (0.57686966266779227, -1.9081069658025602) +description = Morenci CDP, AZ +station = ('ksad', 0.0057141071241795282) +zone = ('azz510', 0.0062970886588194211) + +[fips0447740] +centroid = (0.59089650734692778, -1.9654651521808366) +description = Morristown CDP, AZ +station = ('kluf', 0.0065421109969849194) +zone = ('azz022', 0.0045785917283475506) + +[fips0447820] +centroid = (0.6125017810777329, -1.9485762467811105) +description = Mountainaire CDP, AZ +station = ('kflg', 0.00075554675034473693) +zone = ('azz015', 0.0029556617877145) + +[fips0448170] +centroid = (0.60946291850391543, -1.9480124356195465) +description = Munds Park CDP, AZ +station = ('ksez', 0.0027262691985239429) +zone = ('azz038', 0.0038195591537184166) + +[fips0448310] +centroid = (0.5470906455307547, -1.9185891863972355) +description = Naco CDP, AZ +station = ('kdug', 0.0053078235745188298) +zone = ('azz513', 0.0081514907620822939) + +[fips0449010] +centroid = (0.62679831403288655, -1.9107185194156118) +description = Nazlini CDP, AZ +station = ('krqe', 0.0073933765285117813) +zone = ('azz011', 0.0035012965606294739) + +[fips0449100] +centroid = (0.56601224864381583, -1.9419415696158719) +description = Nelson CDP, AZ +station = ('kryn', 0.0052540882457961721) +zone = ('azz504', 0.0053963297507052064) + +[fips0449270] +centroid = (0.6154814071767376, -1.9898338406229092) +description = New Kingman-Butler CDP, AZ +station = ('kigm', 0.0011087563049865408) +zone = ('azz003', 0.0026930984996272286) + +[fips0449360] +centroid = (0.5913611489003936, -1.9562557653030559) +description = New River CDP, AZ +station = ('kdvt', 0.0034864593802617912) +zone = ('azz023', 0.0063776282589750105) + +[fips0449640] +centroid = (0.54737824088489839, -1.9361554889862453) +description = Nogales city, AZ +station = ('kols', 0.0015633529657331847) +zone = ('azz503', 0.0056547437232651113) + +[fips0449710] +centroid = (0.55910196653639466, -1.9539837480426872) +description = Nolic CDP, AZ +station = ('kgbn', 0.012811836142486358) +zone = ('azz502', 0.0024960641421748436) + +[fips0450000] +centroid = (0.59344102286341027, -1.9192259348682403) +description = North Fork CDP, AZ +station = ('ksow', 0.0046407482247292908) +zone = ('azz017', 0.0047448091957491348) + +[fips0450340] +centroid = (0.59256436143342606, -1.9060027270431856) +description = Nutrioso CDP, AZ +station = ('ksjn', 0.010191884397538599) +zone = ('azz017', 0.0064196208823061882) + +[fips0450480] +centroid = (0.61917396536859703, -1.9047086177627095) +description = Oak Springs CDP, AZ +station = ('krqe', 0.0031734861467443516) +zone = ('azz011', 0.007015990038751886) + +[fips0450620] +centroid = (0.61134302208074875, -1.9963749681402412) +description = Oatman CDP, AZ +station = ('kifp', 0.0033830988320042469) +zone = ('azz002', 0.0061492308172016903) + +[fips0451142] +centroid = (0.64557407743365092, -1.9235498310104238) +description = Oljato-Monument Valley CDP, AZ +station = ('k4bl', 0.015066480796915688) +zone = ('utz022', 0.0092324863547503175) + +[fips0451180] +centroid = (0.56913804606767515, -1.9335068471265888) +description = Oracle CDP, AZ +station = ('kdma', 0.0078674771968580224) +zone = ('azz506', 0.0038005938805125671) + +[fips0451465] +centroid = (0.56895030100003796, -2.0012047828727) +description = Orange Grove Mobile Manor CDP, AZ +station = ('knyl', 0.0012659626462847569) +zone = ('azz025', 0.0020856663427004547) + +[fips0451600] +centroid = (0.56587229069109846, -1.9369006922169694) +description = Oro Valley town, AZ +station = ('kdma', 0.004663989830382108) +zone = ('azz504', 0.0044537047712456109) + +[fips0451775] +centroid = (0.59655919319843831, -1.9433019839546313) +description = Oxbow Estates CDP, AZ +station = ('kpan', 0.0012304689365179112) +zone = ('azz018', 0.0065508497848636828) + +[fips0451800] +centroid = (0.56984287983280046, -2.0008731005016509) +description = Padre Ranchitos CDP, AZ +station = ('knyl', 0.00061113458597502322) +zone = ('azz025', 0.0016241226389481515) + +[fips0451810] +centroid = (0.64407482215289535, -1.9453591162774944) +description = Page city, AZ +station = ('kpga', 0.00055458145138605555) +zone = ('azz005', 0.003625443624272107) + +[fips0452230] +centroid = (0.54781799404323084, -1.9218601952148606) +description = Palominas CDP, AZ +station = ('kalk', 0.0058659129333732589) +zone = ('azz513', 0.0055046862260797851) + +[fips0452930] +centroid = (0.58559561079606315, -1.9540853785650307) +description = Paradise Valley town, AZ +station = ('ksdl', 0.0012962534285039192) +zone = ('azz023', 0.0021166779290711338) + +[fips0453070] +centroid = (0.59415077845702635, -1.9936271915790713) +description = Parker town, AZ +station = ('kblh', 0.010281695982571511) +zone = ('azz021', 0.0072130525286728956) + +[fips0453210] +centroid = (0.59813697084224116, -1.9919382364619165) +description = Parker Strip CDP, AZ +station = ('keed', 0.011134241599365777) +zone = ('caz527', 0.0066685645355032972) + +[fips0453350] +centroid = (0.61584382479591415, -1.9541959975330223) +description = Parks CDP, AZ +station = ('kcmr', 0.0033265872172176759) +zone = ('azz015', 0.0029881546385657765) + +[fips0453490] +centroid = (0.55055964449872619, -1.9328729609955571) +description = Patagonia town, AZ +station = ('kols', 0.0027235898935238714) +zone = ('azz513', 0.0054845812434205837) + +[fips0453560] +centroid = (0.60894343870535184, -1.9633867966542691) +description = Paulden CDP, AZ +station = ('kprc', 0.0043303496191621649) +zone = ('azz008', 0.0024977128341925016) + +[fips0453700] +centroid = (0.59766889099014875, -1.9428797539019889) +description = Payson town, AZ +station = ('kpan', 0.00019333742338173868) +zone = ('azz018', 0.0067398586998357185) + +[fips0453770] +centroid = (0.62014079050773918, -1.9797615280563574) +description = Peach Springs CDP, AZ +station = ('kigm', 0.0086611262350661886) +zone = ('azz003', 0.0084770892348680696) + +[fips0453910] +centroid = (0.59825041724362071, -1.9681264825841551) +description = Peeples Valley CDP, AZ +station = ('kprc', 0.0082161121196857902) +zone = ('azz037', 0.0045156024487518608) + +[fips0454050] +centroid = (0.58970675130242833, -1.9601984815366034) +description = Peoria city, AZ +station = ('kdvt', 0.0039881449043489064) +zone = ('azz023', 0.0056269013116488709) + +[fips0454190] +centroid = (0.58121141352822348, -1.9277512224924096) +description = Peridot CDP, AZ +station = ('ksad', 0.014328390738459765) +zone = ('azz024', 0.0091856251048720722) + +[fips0455000] +centroid = (0.58594478136621708, -1.9563040585634583) +description = Phoenix city, AZ +station = ('kdvt', 0.0019648230754343563) +zone = ('azz023', 0.00097393704884248477) + +[fips0455210] +centroid = (0.57090049699963141, -1.9459406774375514) +description = Picacho CDP, AZ +station = ('kcgz', 0.0057867942467401505) +zone = ('azz505', 0.0023548182123101771) + +[fips0455300] +centroid = (0.56448595821294678, -1.9416694029723158) +description = Picture Rocks CDP, AZ +station = ('kryn', 0.0037265708686195407) +zone = ('azz504', 0.0040696402104853421) + +[fips0455560] +centroid = (0.57409254712189639, -1.9171294453707448) +description = Pima town, AZ +station = ('ksad', 0.0031701691038386612) +zone = ('azz509', 0.0015144382626425229) + +[fips0455575] +centroid = (0.55792194942912132, -1.9280004031497167) +description = Pimaco Two CDP, AZ +station = ('kalk', 0.0064346528777509248) +zone = ('azz507', 0.0024258725520058641) + +[fips0455630] +centroid = (0.58258835613499937, -1.933082260879456) +description = Pinal CDP, AZ +station = ('kiwa', 0.013059479324305701) +zone = ('azz024', 0.0048112833675491833) + +[fips0455700] +centroid = (0.6000738150730569, -1.9453815612116752) +description = Pine CDP, AZ +station = ('kpan', 0.0029853791750350613) +zone = ('azz018', 0.009808865468263166) + +[fips0455840] +centroid = (0.59900963546823827, -1.9243983053729883) +description = Pinedale CDP, AZ +station = ('ksow', 0.0037930162784450194) +zone = ('azz016', 0.00823127168252351) + +[fips0455845] +centroid = (0.6124133277912418, -1.987474993232254) +description = Pine Lake CDP, AZ +station = ('kigm', 0.0029400436435197551) +zone = ('azz003', 0.0017022870718636464) + +[fips0455880] +centroid = (0.59544235701008719, -1.9179603966276193) +description = Pinetop Country Club CDP, AZ +station = ('ksow', 0.003080764883811391) +zone = ('azz017', 0.004819360788066585) + +[fips0455980] +centroid = (0.59605587514874814, -1.9192947182940616) +description = Pinetop-Lakeside town, AZ +station = ('ksow', 0.0020606510539327803) +zone = ('azz017', 0.0060525883089959116) + +[fips0455983] +centroid = (0.61342441448021467, -1.9880314914642525) +description = Pinion Pines CDP, AZ +station = ('kigm', 0.0018463451542131792) +zone = ('azz003', 0.0010505094489944155) + +[fips0456120] +centroid = (0.63004389340331013, -1.9236864902908548) +description = Pinon CDP, AZ +station = ('krqe', 0.018083300690371593) +zone = ('azz039', 0.0044831840711311863) + +[fips0456400] +centroid = (0.54735085666893457, -1.9122883558113182) +description = Pirtleville CDP, AZ +station = ('kdug', 0.0019140810634184764) +zone = ('azz512', 0.0092799341360484053) + +[fips0456470] +centroid = (0.55911477725310432, -1.9603403418982055) +description = Pisinemo CDP, AZ +station = ('kgbn', 0.0087891001620269398) +zone = ('azz502', 0.0042223276429974449) + +[fips0457170] +centroid = (0.59327371560131414, -1.9967363560151592) +description = Poston CDP, AZ +station = ('kblh', 0.0079635707836800441) +zone = ('azz020', 0.00668756716168919) + +[fips0457380] +centroid = (0.60352396448510681, -1.9625909090620672) +description = Prescott city, AZ +station = ('kprc', 0.0013130876623905323) +zone = ('azz037', 0.0027635827734610982) + +[fips0457450] +centroid = (0.60384358663102444, -1.9602763406745349) +description = Prescott Valley town, AZ +station = ('kprc', 0.0017152825777940381) +zone = ('azz037', 0.0040712429233651041) + +[fips0458010] +centroid = (0.58759958038991045, -1.9934715082097936) +description = Quartzsite town, AZ +station = ('kblh', 0.0073058654044437553) +zone = ('azz020', 0.0037901818474143133) + +[fips0458150] +centroid = (0.58016809060796626, -1.9484905162082526) +description = Queen Creek town, AZ +station = ('kiwa', 0.0013250457834754795) +zone = ('azz028', 0.0033007453375922431) + +[fips0458290] +centroid = (0.58072732900689017, -1.94286320818068) +description = Queen Valley CDP, AZ +station = ('kiwa', 0.0049043340472398342) +zone = ('azz028', 0.0067509629733539757) + +[fips0458620] +centroid = (0.59119593603339993, -1.9194480803754344) +description = Rainbow City CDP, AZ +station = ('ksow', 0.0068590570289434613) +zone = ('azz017', 0.0048443170983022638) + +[fips0458870] +centroid = (0.56887933591265205, -2.0011087199506701) +description = Rancho Mesa Verde CDP, AZ +station = ('knyl', 0.0012640624535914251) +zone = ('azz025', 0.0020432169941892158) + +[fips0459550] +centroid = (0.645276568609356, -1.9088517327009711) +description = Red Mesa CDP, AZ +station = ('k4bl', 0.011339247854974289) +zone = ('utz022', 0.0065658644128833389) + +[fips0459760] +centroid = (0.63879364782257819, -1.903532457833083) +description = Red Rock CDP, AZ +station = ('kfmn', 0.01192328161075787) +zone = ('azz010', 0.0090652119863893384) + +[fips0459770] +centroid = (0.5682998342411123, -1.9438430709293346) +description = Red Rock CDP, AZ +station = ('kryn', 0.0079425946181818727) +zone = ('azz505', 0.0032519553489970239) + +[fips0459900] +centroid = (0.56575880938313372, -1.9400142897893571) +description = Rillito CDP, AZ +station = ('kryn', 0.0048153312723605091) +zone = ('azz504', 0.0044235448103503491) + +[fips0460120] +centroid = (0.56046135113089557, -1.9318658362039862) +description = Rincon Valley CDP, AZ +station = ('kdma', 0.0030433568545645598) +zone = ('azz514', 0.0039166450966666884) + +[fips0460180] +centroid = (0.54974673994631729, -1.9371025046383774) +description = Rio Rico CDP, AZ +station = ('kols', 0.0024964569812572905) +zone = ('azz503', 0.0033708512267203459) + +[fips0460250] +centroid = (0.58863122705747173, -1.9490750967879156) +description = Rio Verde CDP, AZ +station = ('ksdl', 0.0040117162474239808) +zone = ('azz023', 0.0071893528949303126) + +[fips0460770] +centroid = (0.58696564189900102, -1.9362870868118458) +description = Rock House CDP, AZ +station = ('kiwa', 0.011685464181590532) +zone = ('azz024', 0.0011894825880505364) + +[fips0460880] +centroid = (0.64046111793664107, -1.9132220022413799) +description = Rock Point CDP, AZ +station = ('k4bl', 0.016213625852299612) +zone = ('azz010', 0.0029736514655062675) + +[fips0461300] +centroid = (0.58743431516303912, -1.9395336959265279) +description = Roosevelt CDP, AZ +station = ('kiwa', 0.0096603731202080552) +zone = ('azz024', 0.002451669266022684) + +[fips0461370] +centroid = (0.63546546201865772, -1.9175653762580156) +description = Rough Rock CDP, AZ +station = ('krqe', 0.017428784431966042) +zone = ('azz010', 0.0032193671871336119) + +[fips0461440] +centroid = (0.6371194581908951, -1.910492481824186) +description = Round Rock CDP, AZ +station = ('krqe', 0.015924043102176197) +zone = ('azz010', 0.0034750632693635675) + +[fips0461448] +centroid = (0.59668894097503156, -1.9425828908495171) +description = Round Valley CDP, AZ +station = ('kpan', 0.0011600569393646662) +zone = ('azz018', 0.0060565438486227322) + +[fips0461690] +centroid = (0.59511844135420944, -1.9434985254816985) +description = Rye CDP, AZ +station = ('kpan', 0.0026798280180333738) +zone = ('azz018', 0.0063229286476033262) + +[fips0461715] +centroid = (0.5784308771369937, -1.9544386855655118) +description = Sacate Village CDP, AZ +station = ('kchd', 0.0033339000572914215) +zone = ('azz028', 0.0043112696010422719) + +[fips0461720] +centroid = (0.57734247236215752, -1.9507238918789822) +description = Sacaton CDP, AZ +station = ('kcgz', 0.0022566022068967345) +zone = ('azz028', 0.0010148575547344843) + +[fips0461800] +centroid = (0.57693423985011605, -1.9488170498580082) +description = Sacaton Flats Village CDP, AZ +station = ('kcgz', 0.002428979117243657) +zone = ('azz028', 0.00064681237415050482) + +[fips0461940] +centroid = (0.56793282640600296, -1.9347976228281938) +description = Saddlebrooke CDP, AZ +station = ('kdma', 0.0065312685845880236) +zone = ('azz514', 0.0043916420652519318) + +[fips0462000] +centroid = (0.5730283500637855, -1.9146477093474565) +description = Safford city, AZ +station = ('ksad', 0.0010435039089829456) +zone = ('azz509', 0.00089690503294198717) + +[fips0462140] +centroid = (0.55731668669782219, -1.9367072922825559) +description = Sahuarita town, AZ +station = ('ktus', 0.0035229220660776372) +zone = ('azz504', 0.0044712606875561287) + +[fips0462280] +centroid = (0.55651846036442254, -1.9237299664425223) +description = St. David CDP, AZ +station = ('kalk', 0.0057978519371158334) +zone = ('azz507', 0.001510987846675418) + +[fips0462350] +centroid = (0.60213972640205748, -1.9089870829844633) +description = St. Johns city, AZ +station = ('ksjn', 0.0003041550615497698) +zone = ('azz014', 0.0014744581681356797) + +[fips0462362] +centroid = (0.5814556549037474, -1.9582527884864802) +description = St. Johns CDP, AZ +station = ('kphx', 0.0030023733245730239) +zone = ('azz023', 0.0038170482349601004) + +[fips0462420] +centroid = (0.62239418510498901, -1.9040874376286323) +description = St. Michaels CDP, AZ +station = ('krqe', 0.0004572479664696673) +zone = ('azz011', 0.0041358087659783471) + +[fips0462700] +centroid = (0.58953316085502494, -1.982799622685304) +description = Salome CDP, AZ +station = ('kbxk', 0.014783755228284486) +zone = ('azz021', 0.0030620617267357307) + +[fips0462910] +centroid = (0.58206117943443436, -1.928030318093096) +description = San Carlos CDP, AZ +station = ('ksad', 0.014999115356574355) +zone = ('azz024', 0.0085624751225166374) + +[fips0463050] +centroid = (0.6145227152719096, -1.9080354422098136) +description = Sanders CDP, AZ +station = ('krqe', 0.0085039392180354216) +zone = ('nmz505', 0.0079005002058067288) + +[fips0463260] +centroid = (0.57278150814767581, -1.9127901030646817) +description = San Jose CDP, AZ +station = ('ksad', 0.00079497178159676756) +zone = ('azz509', 0.0023636384347390702) + +[fips0463470] +centroid = (0.56699523553183162, -2.0023140094255125) +description = San Luis city, AZ +station = ('knyl', 0.0033887864287339875) +zone = ('azz025', 0.0039931620511058164) + +[fips0463540] +centroid = (0.56908257950404662, -1.9311564296762207) +description = San Manuel CDP, AZ +station = ('kdma', 0.0084216611874834112) +zone = ('azz506', 0.0041274394040014418) + +[fips0463610] +centroid = (0.55203879358649888, -1.9509313766204592) +description = San Miguel CDP, AZ +station = ('kryn', 0.012694337328641414) +zone = ('azz515', 0.004313146872852407) + +[fips0463820] +centroid = (0.56318244160780229, -1.9064404730728783) +description = San Simon CDP, AZ +station = ('klsb', 0.0080370152800475058) +zone = ('azz512', 0.0073296515482061978) + +[fips0463960] +centroid = (0.58002005178081206, -1.9575502585559674) +description = Santa Cruz CDP, AZ +station = ('kphx', 0.0038543371621788244) +zone = ('azz023', 0.005041493897964538) + +[fips0464210] +centroid = (0.57926627898346073, -1.9468702223438712) +description = San Tan Valley CDP, AZ +station = ('kiwa', 0.0026768441781518802) +zone = ('azz028', 0.0032122829578331512) + +[fips0464310] +centroid = (0.56430959269203274, -1.9555786648197444) +description = Santa Rosa CDP, AZ +station = ('kgbn', 0.0095510858463324876) +zone = ('azz502', 0.0033116335499355329) + +[fips0464590] +centroid = (0.62647024449338917, -1.9051532578429475) +description = Sawmill CDP, AZ +station = ('krqe', 0.0044492436055513923) +zone = ('azz011', 0.0011738420451635604) + +[fips0464650] +centroid = (0.64216927167556792, -1.9898979116597502) +description = Scenic CDP, AZ +station = ('ksgu', 0.0076633330951976454) +zone = ('nvz016', 0.0077619960011292531) + +[fips0465000] +centroid = (0.5876301411051128, -1.9516914326031178) +description = Scottsdale city, AZ +station = ('ksdl', 0.0016281843608285957) +zone = ('azz023', 0.0048110619854391263) + +[fips0465167] +centroid = (0.6192350344391242, -1.9277364744602303) +description = Seba Dalkai CDP, AZ +station = ('kinw', 0.0086585909457805848) +zone = ('azz040', 0.003821676783298407) + +[fips0465280] +centroid = (0.6256722275994997, -1.9285599033480287) +description = Second Mesa CDP, AZ +station = ('kinw', 0.014560008077699261) +zone = ('azz040', 0.0077084131035942399) + +[fips0465350] +centroid = (0.60837507223443987, -1.951189667896462) +description = Sedona city, AZ +station = ('ksez', 0.00020962089685109097) +zone = ('azz038', 0.0015395003389000012) + +[fips0465400] +centroid = (0.63321892656536816, -1.9056468369554116) +description = Sehili CDP, AZ +station = ('krqe', 0.011136335941593429) +zone = ('nmz502', 0.0055914494377997878) + +[fips0465420] +centroid = (0.6165480476958014, -1.9697305274332004) +description = Seligman CDP, AZ +station = ('kcmr', 0.0093711612863083445) +zone = ('azz007', 0.0083084738129298868) + +[fips0465490] +centroid = (0.55712454340047013, -1.9525232914312032) +description = Sells CDP, AZ +station = ('kryn', 0.011059518059962969) +zone = ('azz502', 0.0048174773164772781) + +[fips0465780] +centroid = (0.58971500670979016, -1.9191388080319811) +description = Seven Mile CDP, AZ +station = ('ksow', 0.0083546180835507144) +zone = ('azz017', 0.0051095458745777931) + +[fips0466190] +centroid = (0.62499791964299178, -1.9292010325954563) +description = Shongopovi CDP, AZ +station = ('kinw', 0.013794826410117119) +zone = ('azz040', 0.0075074328796834343) + +[fips0466260] +centroid = (0.63857242733988795, -1.9313893613181918) +description = Shonto CDP, AZ +station = ('kpga', 0.012582051211958992) +zone = ('azz009', 0.0054025182252687943) + +[fips0466470] +centroid = (0.59754514714618245, -1.9204053760168607) +description = Show Low city, AZ +station = ('ksow', 0.0006187322815360501) +zone = ('azz017', 0.0077346411509340391) + +[fips0466820] +centroid = (0.55092033424194331, -1.925351377317625) +description = Sierra Vista city, AZ +station = ('kalk', 0.001680649236593521) +zone = ('azz513', 0.0012275225183790623) + +[fips0466845] +centroid = (0.54894989242302672, -1.9236840468299021) +description = Sierra Vista Southeast CDP, AZ +station = ('kalk', 0.0039459196804239368) +zone = ('azz513', 0.0036047703836430667) + +[fips0467295] +centroid = (0.58236020669517863, -1.9333815150330032) +description = Six Shooter Canyon CDP, AZ +station = ('kiwa', 0.012793746429077624) +zone = ('azz024', 0.0048100959188345904) + +[fips0467800] +centroid = (0.60246971580373199, -1.9214327640810474) +description = Snowflake town, AZ +station = ('ksow', 0.0045917437630638765) +zone = ('azz013', 0.0065120710831537056) + +[fips0467920] +centroid = (0.61527612155011802, -1.9921446914591348) +description = So-Hi CDP, AZ +station = ('kigm', 0.0029671054672044395) +zone = ('azz003', 0.0043536650690425517) + +[fips0468010] +centroid = (0.57270904207713302, -1.9133858013916796) +description = Solomon CDP, AZ +station = ('ksad', 0.00063490828707358539) +zone = ('azz509', 0.0019433068548248766) + +[fips0468080] +centroid = (0.56911291332644631, -2.0019292166853253) +description = Somerton city, AZ +station = ('knyl', 0.001671923394706153) +zone = ('azz025', 0.002606443411594299) + +[fips0468220] +centroid = (0.55266915415244167, -1.9310166637097208) +description = Sonoita CDP, AZ +station = ('kalk', 0.0034514410346526913) +zone = ('azz513', 0.0039489668469563331) + +[fips0468670] +centroid = (0.55352195693155115, -1.9508315612405378) +description = South Komelik CDP, AZ +station = ('kryn', 0.011632571388784263) +zone = ('azz515', 0.0032467861676191306) + +[fips0468850] +centroid = (0.5619167637408411, -1.9367760233484994) +description = South Tucson city, AZ +station = ('ktus', 0.0011203876605368139) +zone = ('azz504', 0.0013345962739819577) + +[fips0468990] +centroid = (0.59610376698342282, -1.9075879746961872) +description = Springerville town, AZ +station = ('ksjn', 0.0064476434899179615) +zone = ('azz017', 0.0064460961563712962) + +[fips0469060] +centroid = (0.59957451128064621, -1.9574096722847194) +description = Spring Valley CDP, AZ +station = ('kprc', 0.0064359160377829962) +zone = ('azz037', 0.0053746221601451609) + +[fips0469130] +centroid = (0.57385317521498536, -1.9541189936064243) +description = Stanfield CDP, AZ +station = ('kcgz', 0.0031265730539470687) +zone = ('azz028', 0.0049348506365902564) + +[fips0469480] +centroid = (0.59784859008993418, -1.941174654489253) +description = Star Valley town, AZ +station = ('kpan', 0.0015725236110251273) +zone = ('azz018', 0.0057068245716398371) + +[fips0469585] +centroid = (0.62400121446705548, -1.9172543585853101) +description = Steamboat CDP, AZ +station = ('krqe', 0.011254125216395875) +zone = ('azz040', 0.0065851147829301014) + +[fips0469872] +centroid = (0.57862539408212854, -1.9515700798602265) +description = Stotonic Village CDP, AZ +station = ('kchd', 0.0020327596406758955) +zone = ('azz028', 0.0023272011427026887) + +[fips0470040] +centroid = (0.60044792639822187, -1.9460038059965961) +description = Strawberry CDP, AZ +station = ('kpan', 0.0036045876168721435) +zone = ('azz038', 0.010432169412119279) + +[fips0470175] +centroid = (0.5662126822551149, -1.9334164041647506) +description = Summerhaven CDP, AZ +station = ('kdma', 0.0050501616493739106) +zone = ('azz514', 0.0023161409053299256) + +[fips0470240] +centroid = (0.55965829023546787, -1.9364211455516913) +description = Summit CDP, AZ +station = ('ktus', 0.001174319423854176) +zone = ('azz504', 0.0024950004835526487) + +[fips0470320] +centroid = (0.58670117215744644, -1.9597099289723852) +description = Sun City CDP, AZ +station = ('kgeu', 0.0015508857397396783) +zone = ('azz023', 0.0031643641975235694) + +[fips0470355] +centroid = (0.58767649705004577, -1.9610028514289699) +description = Sun City West CDP, AZ +station = ('kluf', 0.0024392160001710096) +zone = ('azz023', 0.0046033325710791414) + +[fips0470460] +centroid = (0.55648179099683814, -1.9134550735096914) +description = Sunizona CDP, AZ +station = ('kdug', 0.0073012249988967763) +zone = ('azz508', 0.0014052367732381532) + +[fips0470530] +centroid = (0.57970744585848744, -1.9524983855827773) +description = Sun Lakes CDP, AZ +station = ('kchd', 0.0012796721730780102) +zone = ('azz028', 0.0036464731458164153) + +[fips0471160] +centroid = (0.61056734540128488, -1.9204201240490402) +description = Sun Valley CDP, AZ +station = ('kinw', 0.0098275246735740219) +zone = ('azz013', 0.0046940649033400698) + +[fips0471220] +centroid = (0.58732046733593157, -1.9793627377755694) +description = Sunwest CDP, AZ +station = ('kbxk', 0.011276300729804125) +zone = ('azz021', 0.0065005725774582171) + +[fips0471230] +centroid = (0.6323321596790149, -1.9668570697125947) +description = Supai CDP, AZ +station = ('kgcn', 0.0090797678147864248) +zone = ('azz006', 0.0053306387724000549) + +[fips0471300] +centroid = (0.58093540716031311, -1.9392405678786555) +description = Superior town, AZ +station = ('kiwa', 0.0078920284241410388) +zone = ('azz024', 0.0053695569058555522) + +[fips0471510] +centroid = (0.58766304056151297, -1.9626694139718219) +description = Surprise city, AZ +station = ('kluf', 0.002599366158013192) +zone = ('azz023', 0.0057809002279121018) + +[fips0471642] +centroid = (0.57805304826052195, -1.9519389901042208) +description = Sweet Water Village CDP, AZ +station = ('kchd', 0.0026326113678767612) +zone = ('azz028', 0.0022369954873073818) + +[fips0471650] +centroid = (0.57119727278564059, -1.9149423383784858) +description = Swift Trail Junction CDP, AZ +station = ('ksad', 0.002478206892102095) +zone = ('azz509', 0.0024977393164320413) + +[fips0471790] +centroid = (0.57073024013109941, -1.9890083173400084) +description = Tacna CDP, AZ +station = ('knyl', 0.0094174084032615894) +zone = ('azz026', 0.0025605884562970535) + +[fips0472000] +centroid = (0.56319003379004839, -1.9328526802696486) +description = Tanque Verde CDP, AZ +station = ('kdma', 0.0027144144284167344) +zone = ('azz514', 0.0015118235951004514) + +[fips0472280] +centroid = (0.56899819283471276, -1.9527813383611106) +description = Tat Momoli CDP, AZ +station = ('kcgz', 0.0063351791340369506) +zone = ('azz502', 0.0084092328590088875) + +[fips0472420] +centroid = (0.60113935603469193, -1.9215819199189226) +description = Taylor town, AZ +station = ('ksow', 0.0033747533742382605) +zone = ('azz013', 0.0076491784574203563) + +[fips0472560] +centroid = (0.64461517608931274, -1.9035262968208237) +description = Teec Nos Pos CDP, AZ +station = ('kcez', 0.0087632306713053814) +zone = ('coz021', 0.0090985912375065349) + +[fips0472630] +centroid = (0.61934842848062632, -1.9269392080579193) +description = Tees Toh CDP, AZ +station = ('kinw', 0.0090608699256438524) +zone = ('azz040', 0.003169262197668575) + +[fips0473000] +centroid = (0.58273775631896996, -1.9535781335245235) +description = Tempe city, AZ +station = ('kphx', 0.0019131228015089035) +zone = ('azz023', 0.0033279010284408468) + +[fips0473420] +centroid = (0.57332830234903309, -1.9153798051554982) +description = Thatcher town, AZ +station = ('ksad', 0.0016106546972253417) +zone = ('azz509', 0.00033738869809130312) + +[fips0473480] +centroid = (0.57453151488206544, -1.9702982830388742) +description = Theba CDP, AZ +station = ('kgbn', 0.0089900831449293388) +zone = ('azz027', 0.0015760267577232256) + +[fips0473700] +centroid = (0.55954545469932648, -1.9423165012457853) +description = Three Points CDP, AZ +station = ('kryn', 0.0022222186381536755) +zone = ('azz504', 0.0039620666902914553) + +[fips0474120] +centroid = (0.61838682187594751, -1.9345779207819527) +description = Tolani Lake CDP, AZ +station = ('kinw', 0.0071702392017834547) +zone = ('azz012', 0.0049677210774194984) + +[fips0474190] +centroid = (0.58378411611212566, -1.9592400165245782) +description = Tolleson city, AZ +station = ('kgeu', 0.0014893035292327021) +zone = ('azz023', 0.0025696998554891729) + +[fips0474400] +centroid = (0.55359180500821592, -1.9209518036990751) +description = Tombstone city, AZ +station = ('kalk', 0.0057002914779023537) +zone = ('azz507', 0.0052170683884547797) + +[fips0474470] +centroid = (0.63393384833357003, -1.9367336642075537) +description = Tonalea CDP, AZ +station = ('kpga', 0.012640200003182606) +zone = ('azz009', 0.0014476271332029026) + +[fips0474540] +centroid = (0.58447561556176575, -1.9710144788974302) +description = Tonopah CDP, AZ +station = ('kbxk', 0.0037617207557529356) +zone = ('azz022', 0.0037750836937117233) + +[fips0474610] +centroid = (0.5906327008304888, -1.9425466403609533) +description = Tonto Basin CDP, AZ +station = ('kpan', 0.007155975222909448) +zone = ('azz024', 0.0064511323720264808) + +[fips0474665] +centroid = (0.59899364825229007, -1.9397469402545366) +description = Tonto Village CDP, AZ +station = ('kpan', 0.0030076721042080726) +zone = ('azz016', 0.005170543040090095) + +[fips0474680] +centroid = (0.5551512217882878, -1.9518101848054232) +description = Topawa CDP, AZ +station = ('kryn', 0.011368199291261486) +zone = ('azz515', 0.003525765173756211) + +[fips0474750] +centroid = (0.60597782760024066, -1.9980318441057443) +description = Topock CDP, AZ +station = ('keed', 0.0021387082832234673) +zone = ('azz002', 0.0020103877086056704) + +[fips0474820] +centroid = (0.58202660446195242, -1.9373106526049704) +description = Top-of-the-World CDP, AZ +station = ('kiwa', 0.0094978690155609353) +zone = ('azz024', 0.0039860198300326055) + +[fips0475310] +centroid = (0.62314916217952432, -1.9187831099304244) +description = Toyei CDP, AZ +station = ('krqe', 0.012391521470381545) +zone = ('azz040', 0.0051081593500463774) + +[fips0475590] +centroid = (0.61942914995853104, -1.9820357444315835) +description = Truxton CDP, AZ +station = ('kigm', 0.0067476757104170618) +zone = ('azz003', 0.0067242982446426907) + +[fips0475660] +centroid = (0.63361352805595161, -1.9062241395120938) +description = Tsaile CDP, AZ +station = ('krqe', 0.011603792886279336) +zone = ('nmz502', 0.0061937484348875572) + +[fips0475940] +centroid = (0.55171046224761366, -1.938311127692091) +description = Tubac CDP, AZ +station = ('kols', 0.0045778738361875685) +zone = ('azz503', 0.0015844512505433807) + +[fips0476010] +centroid = (0.63050041917575439, -1.9416219300166615) +description = Tuba City CDP, AZ +station = ('kpga', 0.014392955465833905) +zone = ('azz009', 0.00623360460993682) + +[fips0477000] +centroid = (0.56119821168779493, -1.9350650770827693) +description = Tucson city, AZ +station = ('kdma', 0.00028203464336875277) +zone = ('azz504', 0.0027660739156012189) + +[fips0477035] +centroid = (0.56163292084458916, -1.9395031701179104) +description = Tucson Estates CDP, AZ +station = ('kryn', 0.00095042253948357731) +zone = ('azz504', 0.0010184608741862322) + +[fips0477367] +centroid = (0.55101493108740141, -1.9381505224943223) +description = Tumacacori-Carmen CDP, AZ +station = ('kols', 0.0039886257496500391) +zone = ('azz503', 0.0019204726769109818) + +[fips0477415] +centroid = (0.58994027635634505, -1.9189214447269376) +description = Turkey Creek CDP, AZ +station = ('ksow', 0.0081471515467073288) +zone = ('azz017', 0.004844736696969873) + +[fips0477490] +centroid = (0.62764928421628141, -1.9572679690027497) +description = Tusayan CDP, AZ +station = ('kgcn', 0.00022499919660478291) +zone = ('azz006', 0.0046009092087608639) + +[fips0478300] +centroid = (0.57797018002763723, -1.9502633518492585) +description = Upper Santan Village CDP, AZ +station = ('kchd', 0.0028704301027306658) +zone = ('azz028', 0.0011268235121383726) + +[fips0478400] +centroid = (0.59087100808655613, -1.9881545371765179) +description = Utting CDP, AZ +station = ('kblh', 0.012382568439650672) +zone = ('azz021', 0.001626704641305589) + +[fips0478540] +centroid = (0.55888894910118869, -1.931971393717147) +description = Vail CDP, AZ +station = ('kdma', 0.0037722898430697042) +zone = ('azz514', 0.0054910618623499581) + +[fips0478680] +centroid = (0.57101333253577291, -1.9534929614570262) +description = Vaiva Vo CDP, AZ +station = ('kcgz', 0.0047019596219900614) +zone = ('azz028', 0.0068245241314078631) + +[fips0478760] +centroid = (0.56085523703648565, -1.939257602292155) +description = Valencia West CDP, AZ +station = ('kryn', 0.00087291437897466277) +zone = ('azz504', 0.0010857051333287486) + +[fips0478820] +centroid = (0.61764636594078892, -1.9837257816528748) +description = Valentine CDP, AZ +station = ('kigm', 0.0045930025558838204) +zone = ('azz003', 0.0044717767523458456) + +[fips0478855] +centroid = (0.62176401652526403, -1.9571270685722364) +description = Valle CDP, AZ +station = ('kgcn', 0.0056857532988954535) +zone = ('azz007', 0.0062784019302100013) + +[fips0478865] +centroid = (0.61803641212202454, -1.9872791847434728) +description = Valle Vista CDP, AZ +station = ('kigm', 0.0029824917204599264) +zone = ('azz003', 0.0039670512500415717) + +[fips0479590] +centroid = (0.56667433929555988, -1.9590177139377518) +description = Ventana CDP, AZ +station = ('kgbn', 0.0065069206841361985) +zone = ('azz502', 0.0062540290435110961) + +[fips0479830] +centroid = (0.60583746822179529, -1.9546647580635226) +description = Verde Village CDP, AZ +station = ('ksez', 0.003863997522553985) +zone = ('azz038', 0.0038530470182679029) + +[fips0479870] +centroid = (0.59773863434705854, -1.914450644221614) +description = Vernon CDP, AZ +station = ('ksow', 0.0045629976980685882) +zone = ('azz017', 0.0056295591166475251) + +[fips0479940] +centroid = (0.58864993698705315, -1.9866374795373918) +description = Vicksburg CDP, AZ +station = ('kblh', 0.013080720730084918) +zone = ('azz021', 0.0014853595165684175) + +[fips0480095] +centroid = (0.60704766207183569, -1.9505904440043746) +description = Village of Oak Creek (Big Park) CDP, AZ +station = ('ksez', 0.0012430239440830576) +zone = ('azz038', 0.0028438707447908784) + +[fips0480380] +centroid = (0.5968297017792048, -1.9202667270610823) +description = Wagon Wheel CDP, AZ +station = ('ksow', 0.0012386025251230851) +zone = ('azz017', 0.0071666437559027487) + +[fips0480430] +centroid = (0.56155513151982783, -1.9611617462040718) +description = Wahak Hotrontk CDP, AZ +station = ('kgbn', 0.0064995560031046581) +zone = ('azz502', 0.0044998645439566888) + +[fips0480790] +centroid = (0.56997733999837419, -2.0020764352077309) +description = Wall Lane CDP, AZ +station = ('knyl', 0.0016291955091937203) +zone = ('azz025', 0.0026424852660938873) + +[fips0480825] +centroid = (0.61315573849516269, -1.9918852308125332) +description = Walnut Creek CDP, AZ +station = ('kigm', 0.0034492185854428513) +zone = ('azz003', 0.0040805423212595801) + +[fips0481175] +centroid = (0.60039944115160138, -1.9420453643464879) +description = Washington Park CDP, AZ +station = ('kpan', 0.0027585161655162699) +zone = ('azz016', 0.0066450170598053547) + +[fips0481480] +centroid = (0.56967538058448652, -1.9934103693260961) +description = Wellton town, AZ +station = ('knyl', 0.0056753941099813403) +zone = ('azz025', 0.0046619558813283876) + +[fips0481490] +centroid = (0.56938206055039642, -1.9922101587593772) +description = Wellton Hills CDP, AZ +station = ('knyl', 0.0067003051281978622) +zone = ('azz026', 0.0054219268810699892) + +[fips0481550] +centroid = (0.59048741962355278, -1.9817032243024939) +description = Wenden CDP, AZ +station = ('kbxk', 0.014426749644839653) +zone = ('azz021', 0.0039313210088506995) + +[fips0482060] +centroid = (0.57842585058874796, -1.9530312869632889) +description = Wet Camp Village CDP, AZ +station = ('kchd', 0.002584164063444585) +zone = ('azz028', 0.0032210870249714313) + +[fips0482120] +centroid = (0.58417805437759329, -1.9341064200845264) +description = Wheatfields CDP, AZ +station = ('kiwa', 0.01244568580126991) +zone = ('azz024', 0.0031210549391941541) + +[fips0482155] +centroid = (0.55331455945653663, -1.9257328539322331) +description = Whetstone CDP, AZ +station = ('kalk', 0.0021794415242478186) +zone = ('azz513', 0.0018517734918178201) + +[fips0482270] +centroid = (0.59991715431939785, -1.9422237369960418) +description = Whispering Pines CDP, AZ +station = ('kpan', 0.0022543586058625911) +zone = ('azz018', 0.0077789482217290578) + +[fips0482390] +centroid = (0.62141866822617187, -1.9212588245677933) +description = Whitecone CDP, AZ +station = ('kinw', 0.013477086585092689) +zone = ('azz040', 0.0024900330522391887) + +[fips0482425] +centroid = (0.62350506972059094, -1.9966630870931603) +description = White Hills CDP, AZ +station = ('kbvu', 0.0075155786365955334) +zone = ('azz036', 0.0017651876362433168) + +[fips0482450] +centroid = (0.59941669860968105, -1.919631985718717) +description = White Mountain Lake CDP, AZ +station = ('ksow', 0.0014010922418407179) +zone = ('azz017', 0.0087661178647505372) + +[fips0482530] +centroid = (0.59061523008467631, -1.919177484528205) +description = Whiteriver CDP, AZ +station = ('ksow', 0.0074548693289988336) +zone = ('azz017', 0.0047777475208151824) + +[fips0482660] +centroid = (0.56302529216195274, -1.9675207486139579) +description = Why CDP, AZ +station = ('kgbn', 0.0031220656394403807) +zone = ('azz501', 0.003705308245644255) + +[fips0482740] +centroid = (0.59289520604643409, -1.9679053668212199) +description = Wickenburg town, AZ +station = ('kluf', 0.0093227792999827086) +zone = ('azz022', 0.0050371845062514046) + +[fips0482810] +centroid = (0.61815001560303684, -1.9111276944054494) +description = Wide Ruins CDP, AZ +station = ('krqe', 0.00736773553298077) +zone = ('azz011', 0.00873807659445738) + +[fips0482880] +centroid = (0.60550761844646084, -1.9826853385258834) +description = Wikieup CDP, AZ +station = ('kigm', 0.010830110638725235) +zone = ('azz003', 0.0092757269592235701) + +[fips0482950] +centroid = (0.60053695564336607, -1.9655136199741643) +description = Wilhoit CDP, AZ +station = ('kprc', 0.0050980406299259932) +zone = ('azz037', 0.0015322037874936165) + +[fips0483090] +centroid = (0.56289741188765907, -1.9169951946446815) +description = Willcox city, AZ +station = ('ksad', 0.010859447536021655) +zone = ('azz508', 0.0072830320222190478) + +[fips0483160] +centroid = (0.61519843694511178, -1.9579642157479555) +description = Williams city, AZ +station = ('kcmr', 0.00093440426471857357) +zone = ('azz015', 0.0059132178354328472) + +[fips0483388] +centroid = (0.60577132024314473, -1.9640919096720748) +description = Williamson CDP, AZ +station = ('kprc', 0.0019683221756447056) +zone = ('azz008', 0.0028298615270978262) + +[fips0483475] +centroid = (0.56527968159687625, -1.9320968305304875) +description = Willow Canyon CDP, AZ +station = ('kdma', 0.0047096914938724805) +zone = ('azz514', 0.00095084172484928976) + +[fips0483570] +centroid = (0.60960282409675537, -2.0006114931000694) +description = Willow Valley CDP, AZ +station = ('keed', 0.0028136169563430604) +zone = ('azz002', 0.0059217593390588725) + +[fips0483720] +centroid = (0.62256775809909992, -1.9035090878743988) +description = Window Rock CDP, AZ +station = ('krqe', 0.00036156212600050902) +zone = ('azz011', 0.0042340418434474872) + +[fips0483790] +centroid = (0.57563646537821067, -1.9331534354063524) +description = Winkelman town, AZ +station = ('kiwa', 0.0142396254097105) +zone = ('azz506', 0.0027271437309639873) + +[fips0483930] +centroid = (0.61130186721698676, -1.9322417801248657) +description = Winslow city, AZ +station = ('kinw', 0.00017931891353935945) +zone = ('azz013', 0.0064936114697278736) + +[fips0483960] +centroid = (0.61070650050254638, -1.9322191432044673) +description = Winslow West CDP, AZ +station = ('kinw', 0.00075080112634064947) +zone = ('azz013', 0.0062098803082885406) + +[fips0484000] +centroid = (0.58326629437635147, -1.9698926685207105) +description = Wintersburg CDP, AZ +station = ('kbxk', 0.0025763288440211179) +zone = ('azz022', 0.004857443708061307) + +[fips0484140] +centroid = (0.58948624640473124, -1.9639358423303614) +description = Wittmann CDP, AZ +station = ('kluf', 0.0046958924758371155) +zone = ('azz022', 0.005102241143003252) + +[fips0484350] +centroid = (0.60708127711322901, -1.9205231333814927) +description = Woodruff CDP, AZ +station = ('ksow', 0.009051295753333943) +zone = ('azz013', 0.0040800151540545523) + +[fips0484980] +centroid = (0.59739562478916408, -1.9680867065305021) +description = Yarnell CDP, AZ +station = ('kprc', 0.0088906985158842249) +zone = ('azz037', 0.0050453261980721933) + +[fips0485260] +centroid = (0.57451744752829448, -1.9058306201256465) +description = York CDP, AZ +station = ('ksad', 0.0065163050764191627) +zone = ('nmz401', 0.0078869997421433906) + +[fips0485330] +centroid = (0.59558381594596133, -1.936234831654041) +description = Young CDP, AZ +station = ('kpan', 0.0060678220536842511) +zone = ('azz018', 0.001489131297138087) + +[fips0485400] +centroid = (0.58616828823022749, -1.9600905503756603) +description = Youngtown town, AZ +station = ('kgeu', 0.0010175737727280915) +zone = ('azz023', 0.0032033548887899777) + +[fips0485470] +centroid = (0.60847401494973552, -1.9922260587088629) +description = Yucca CDP, AZ +station = ('kigm', 0.0074073012617803064) +zone = ('azz002', 0.0043707787230124031) + +[fips0485540] +centroid = (0.56751581488782388, -1.9987826672966598) +description = Yuma city, AZ +station = ('knyl', 0.002602043796766837) +zone = ('azz025', 0.002291138285696701) + +[fips05001] +centroid = (0.59846596540624208, -1.594821604253347) +description = Arkansas County, AR +station = ('ksgt', 0.0060697846954554822) +zone = ('arz057', 3.1967155174233747e-05) + +[fips0500190060] +centroid = (0.59444624524609635, -1.5945523697629342) +description = Arkansas township, AR +station = ('kllq', 0.0093293944699860566) +zone = ('arz057', 0.0040460128329273164) + +[fips0500190138] +centroid = (0.59959096973549253, -1.5998292331299988) +description = Barton township, AR +station = ('ksgt', 0.0045131992591558633) +zone = ('arz056', 0.0041405193396339803) + +[fips0500190168] +centroid = (0.59714075435849534, -1.5966800308408706) +description = Bayou Meto township, AR +station = ('ksgt', 0.0068498792843057496) +zone = ('arz057', 0.0020607200507829285) + +[fips0500190462] +centroid = (0.59795095365056361, -1.5989369335499168) +description = Brewer township, AR +station = ('kpbf', 0.0048221631621183734) +zone = ('arz057', 0.0034661710349993898) + +[fips0500190774] +centroid = (0.59443285857073369, -1.5923261324888454) +description = Chester township, AR +station = ('kllq', 0.010540537392287549) +zone = ('arz065', 0.0039414951163328485) + +[fips0500190963] +centroid = (0.60073627224394377, -1.5922022315652464) +description = Crockett township, AR +station = ('ksgt', 0.005817780243388253) +zone = ('arz057', 0.0031034889368854795) + +[fips0500191425] +centroid = (0.59910360399516571, -1.5971649356669522) +description = Garland township, AR +station = ('ksgt', 0.004847421528382659) +zone = ('arz057', 0.0020539933274333127) + +[fips0500191563] +centroid = (0.60266048029097508, -1.5977427094625323) +description = Gum Pond township, AR +station = ('ksgt', 0.0012663905021068906) +zone = ('arz057', 0.0048308993442243544) + +[fips0500191668] +centroid = (0.60099159646021816, -1.5999771672373979) +description = Henton township, AR +station = ('ksgt', 0.003264570263759974) +zone = ('arz056', 0.004725458365985492) + +[fips0500192010] +centroid = (0.60138309126473288, -1.5939708086028772) +description = Keaton township, AR +station = ('ksgt', 0.0042486176421486378) +zone = ('arz057', 0.0029741551942805361) + +[fips0500192085] +centroid = (0.59835276335095777, -1.5942422073015625) +description = La Grue township, AR +station = ('ksgt', 0.0063973306842220823) +zone = ('arz057', 0.00047445580217769583) + +[fips0500192307] +centroid = (0.60264320153138029, -1.5957658797385534) +description = McFall township, AR +station = ('ksgt', 0.0023153965272733348) +zone = ('arz047', 0.0041680963355529644) + +[fips0500192466] +centroid = (0.60081685409550833, -1.5963058671558281) +description = Mill Bayou township, AR +station = ('ksgt', 0.0034191494314027245) +zone = ('arz057', 0.0026432214275439714) + +[fips0500192574] +centroid = (0.60095904606966843, -1.5982077524417262) +description = Morris township, AR +station = ('ksgt', 0.0029254106894264793) +zone = ('arz057', 0.0037491038311796153) + +[fips0500192937] +centroid = (0.59686492252351009, -1.5931840316293706) +description = Point Deluce township, AR +station = ('ksgt', 0.008123252213350236) +zone = ('arz057', 0.002097862128946307) + +[fips0500192973] +centroid = (0.59814568003520863, -1.5910629504427145) +description = Prairie township, AR +station = ('ksgt', 0.0081850225633492944) +zone = ('arz057', 0.0031008492093369997) + +[fips0500193483] +centroid = (0.59623628983352683, -1.5952437295862343) +description = Stanley township, AR +station = ('ksgt', 0.008012427823181947) +zone = ('arz057', 0.0022817325431208606) + +[fips0500250] +centroid = (0.61156373641795603, -1.6213944515544707) +description = Adona city, AR +station = ('krue', 0.0046534728022069099) +zone = ('arz039', 0.0016817713382536357) + +[fips05003] +centroid = (0.57928935223617217, -1.6017282211693389) +description = Ashley County, AR +station = ('kbqp', 0.0076831532939605233) +zone = ('arz074', 6.4100827589481387e-05) + +[fips0500390102] +centroid = (0.58087838725365037, -1.5988439249540782) +description = Banner township, AR +station = ('kllq', 0.0064777584742299844) +zone = ('arz074', 0.0028321900074904705) + +[fips0500390162] +centroid = (0.58205610052631118, -1.5984913509918828) +description = Bayou township, AR +station = ('kllq', 0.0054961057923084058) +zone = ('arz074', 0.0038213853386164878) + +[fips0500390183] +centroid = (0.5820903089796502, -1.600436834602496) +description = Bearhouse township, AR +station = ('kllq', 0.0049793399648494392) +zone = ('arz074', 0.0029735379946772265) + +[fips0500390210] +centroid = (0.57850999291198657, -1.5994908137880375) +description = Beech Creek township, AR +station = ('kbqp', 0.0075741578783924211) +zone = ('arz074', 0.0019723184398420927) + +[fips0500390687] +centroid = (0.57970287309584712, -1.6022480151271679) +description = Carter township, AR +station = ('kllq', 0.007348748360724972) +zone = ('arz074', 0.00064380026773245452) + +[fips0500391044] +centroid = (0.57793965421901994, -1.5974903697592788) +description = De Bastrop township, AR +station = ('kbqp', 0.0080269625936444447) +zone = ('arz074', 0.0037387912574703697) + +[fips0500391212] +centroid = (0.57823726776306994, -1.6056437451731407) +description = Egypt township, AR +station = ('kbqp', 0.00668912361433992) +zone = ('arz074', 0.0035052637162177134) + +[fips0500391239] +centroid = (0.57680621994948222, -1.6036695508963323) +description = Elon township, AR +station = ('kbqp', 0.0050366176772526968) +zone = ('arz074', 0.003008802747706393) + +[fips0500391263] +centroid = (0.57729803627940168, -1.6017651523363112) +description = Extra township, AR +station = ('kbqp', 0.0057406573036817123) +zone = ('arz074', 0.0019999321802384113) + +[fips0500392277] +centroid = (0.58167073182747075, -1.604653445355559) +description = Longview township, AR +station = ('kllq', 0.0060144128253873854) +zone = ('arz074', 0.0034553949407938405) + +[fips0500392365] +centroid = (0.57699576270624875, -1.6063950570562466) +description = Marais Saline township, AR +station = ('kbqp', 0.0057256168834784685) +zone = ('arz074', 0.0045900076959448019) + +[fips0500392469] +centroid = (0.57984007342834643, -1.6054946242418502) +description = Mill Creek township, AR +station = ('kllq', 0.0079666322380027837) +zone = ('arz074', 0.0032608747416972518) + +[fips0500392541] +centroid = (0.58123321269058081, -1.5971149319838827) +description = Montrose township, AR +station = ('kllq', 0.0067689667682373604) +zone = ('arz075', 0.0031807326452011888) + +[fips0500392964] +centroid = (0.57963255378028422, -1.5975168638573243) +description = Portland township, AR +station = ('kllq', 0.0080400217676545333) +zone = ('arz074', 0.0034764583326772889) + +[fips0500392976] +centroid = (0.58012157758340055, -1.6001192021319253) +description = Prairie township, AR +station = ('kllq', 0.0069656776193735117) +zone = ('arz074', 0.0015252940005768285) + +[fips0500393666] +centroid = (0.5822117140824189, -1.5969683592333002) +description = Union township, AR +station = ('kllq', 0.0060278235362508543) +zone = ('arz075', 0.003393320344203823) + +[fips0500393987] +centroid = (0.58193663273901208, -1.6024557791213252) +description = White township, AR +station = ('kllq', 0.0051604307076498438) +zone = ('arz074', 0.0027250810108315573) + +[fips0500394077] +centroid = (0.57679532909494979, -1.5983510439733148) +description = Wilmot township, AR +station = ('kbqp', 0.0066887452415451756) +zone = ('arz074', 0.0037276395246939216) + +[fips05005] +centroid = (0.63321784446123186, -1.6114701429084881) +description = Baxter County, AR +station = ('kbpk', 0.0024331654892259954) +zone = ('arz005', 0.00014612883359742682) + +[fips0500580] +centroid = (0.60420267067132971, -1.6135840507919186) +description = Alexander city, AR +station = ('klit', 0.0037207899677209194) +zone = ('arz043', 0.0032694413588532424) + +[fips0500590165] +centroid = (0.63648167997563143, -1.6093592195380786) +description = Bayou township, AR +station = ('kbpk', 0.0040195723861513226) +zone = ('arz005', 0.0036244296494306999) + +[fips0500590288] +centroid = (0.62878545865274471, -1.6119608073211014) +description = Big Flat township, AR +station = ('kflp', 0.0057250260724938818) +zone = ('arz014', 0.0040762074965349027) + +[fips0500590525] +centroid = (0.63246288483998925, -1.6107896564864281) +description = Buckhorn township, AR +station = ('kbpk', 0.0033406489893270503) +zone = ('arz005', 0.0010792362456872203) + +[fips0500590540] +centroid = (0.63237853307724035, -1.6130018787666234) +description = Buford township, AR +station = ('kbpk', 0.0024368439140710959) +zone = ('arz005', 0.0014877169771708248) + +[fips0500591524] +centroid = (0.63024001605135671, -1.6101726651425554) +description = Greenwood township, AR +station = ('kbpk', 0.0053702447642186091) +zone = ('arz005', 0.0032944272134271093) + +[fips0500591548] +centroid = (0.63495324278978238, -1.6149485841077129) +description = Grover township, AR +station = ('kbpk', 0.00091700071980600924) +zone = ('arz004', 0.0029190848612377319) + +[fips0500591818] +centroid = (0.63447299799280366, -1.6139880596071703) +description = Independence township, AR +station = ('kbpk', 0.00026985657625564928) +zone = ('arz005', 0.0022480623893281512) + +[fips0500592247] +centroid = (0.63606596000109883, -1.6139656321262823) +description = Logan township, AR +station = ('kbpk', 0.0013512218801578133) +zone = ('arz005', 0.0033399530834861005) + +[fips0500592265] +centroid = (0.63123998499299439, -1.6112730079694755) +description = Lone Rock township, AR +station = ('kbpk', 0.0040505161932866095) +zone = ('arz005', 0.0021061904853822149) + +[fips0500592424] +centroid = (0.6307772458484131, -1.612715190983691) +description = Matney township, AR +station = ('kflp', 0.0037747302859712705) +zone = ('arz005', 0.0027118660756389754) + +[fips0500592460] +centroid = (0.63517004758946516, -1.6096994540224623) +description = Mill township, AR +station = ('kbpk', 0.0033702818639873644) +zone = ('arz005', 0.0023848961289332261) + +[fips0500592616] +centroid = (0.6341741627182772, -1.6121621310503189) +description = Mountain Home township, AR +station = ('kbpk', 0.0014625242220646666) +zone = ('arz005', 0.00096293975068658896) + +[fips0500592709] +centroid = (0.63179869979314285, -1.6095856061953546) +description = North Fork township, AR +station = ('kbpk', 0.0045085599852290699) +zone = ('arz005', 0.0022243482024215094) + +[fips0500592877] +centroid = (0.63611720286793749, -1.611863679748228) +description = Pigeon township, AR +station = ('kbpk', 0.0021230888071093741) +zone = ('arz005', 0.0027951303250281305) + +[fips0500593669] +centroid = (0.63324479234488273, -1.6095719577206042) +description = Union township, AR +station = ('kbpk', 0.0037467395655920699) +zone = ('arz005', 0.0016247152534089348) + +[fips0500594035] +centroid = (0.63349104084904662, -1.6142943823441878) +description = Whiteville township, AR +station = ('kbpk', 0.0012786896591177963) +zone = ('arz005', 0.0021899097991936851) + +[fips05007] +centroid = (0.63421468926350855, -1.6450808035254765) +description = Benton County, AR +station = ('kvbt', 0.00059483368193480129) +zone = ('arz001', 2.8649116826801989e-05) + +[fips0500700] +centroid = (0.62647563756077784, -1.5897011049339684) +description = Alicia town, AR +station = ('km19', 0.0046731381595956417) +zone = ('arz017', 0.0025859140134275047) + +[fips0500793626] +centroid = (0.63551501191612181, -1.6402572370717396) +description = Township 1, AR +station = ('krog', 0.0018671807211199582) +zone = ('arz001', 0.0041028773678089244) + +[fips0500793628] +centroid = (0.63321328915188413, -1.6403184457686071) +description = Township 2, AR +station = ('krog', 0.0022262526477668429) +zone = ('arz001', 0.0039873881123427476) + +[fips0500793630] +centroid = (0.63308036487605235, -1.6427904777612543) +description = Township 3, AR +station = ('kasg', 0.0015664227514360369) +zone = ('arz001', 0.0021923354475565167) + +[fips0500793632] +centroid = (0.63304837299086325, -1.6439710533738885) +description = Township 4, AR +station = ('kvbt', 0.0014197381727756211) +zone = ('arz001', 0.0014983000768012981) + +[fips0500793634] +centroid = (0.6341781595222642, -1.6430602358504427) +description = Township 5, AR +station = ('krog', 0.000783762401909019) +zone = ('arz001', 0.0016444123761280836) + +[fips0500793636] +centroid = (0.6349558607836604, -1.6428586852284222) +description = Township 6, AR +station = ('krog', 0.00047024393930668377) +zone = ('arz001', 0.0019423858368982118) + +[fips0500793638] +centroid = (0.63624459445004045, -1.6432905494985359) +description = Township 7, AR +station = ('krog', 0.0017021655824649624) +zone = ('arz001', 0.0024790170708408796) + +[fips0500793640] +centroid = (0.63495425508074854, -1.6441085678656528) +description = Township 8, AR +station = ('kvbt', 0.00057406027999731292) +zone = ('arz001', 0.0010722834616981084) + +[fips0500793642] +centroid = (0.63450472807860492, -1.6453074345288479) +description = Township 9, AR +station = ('kvbt', 0.00074211313216700117) +zone = ('arz001', 0.00031405518977808901) + +[fips0500793644] +centroid = (0.63623464607330416, -1.6459847269983769) +description = Township 10, AR +station = ('kvbt', 0.0022163670154734371) +zone = ('arz001', 0.0021191359481925499) + +[fips0500793645] +centroid = (0.63518767541491039, -1.6487844794646709) +description = Township 11, AR +station = ('kxna', 0.0030506994421099823) +zone = ('arz001', 0.0031147962087044313) + +[fips0500793646] +centroid = (0.63249077520143615, -1.6497348985088445) +description = Township 12, AR +station = ('kslg', 0.00087983739653255718) +zone = ('arz001', 0.0041244238520618641) + +[fips0500793647] +centroid = (0.63170206091245995, -1.6477619608690977) +description = Township 13, AR +station = ('kslg', 0.0010411341341542159) +zone = ('arz001', 0.0033226718771697575) + +[fips05009] +centroid = (0.63362970725811751, -1.6245385749354762) +description = Boone County, AR +station = ('khro', 0.0011931626447366371) +zone = ('arz003', 0.00018846893275987421) + +[fips0500940] +centroid = (0.60283215087620123, -1.6019286024207604) +description = Allport town, AR +station = ('ksgt', 0.0032923353861956778) +zone = ('arz045', 0.0040350216657397391) + +[fips0500970] +centroid = (0.61921958827524404, -1.6446643330593655) +description = Alma city, AR +station = ('kfsm', 0.0031759302781871612) +zone = ('arz019', 0.0019298589203988906) + +[fips0500990144] +centroid = (0.63287064611313271, -1.6272647443205062) +description = Batavia township, AR +station = ('khro', 0.0012061601312789438) +zone = ('arz003', 0.0021895788812397181) + +[fips0500990219] +centroid = (0.63185233376105665, -1.6237255133034345) +description = Bellefonte township, AR +station = ('khro', 0.0019964954870913426) +zone = ('arz003', 0.0020292097804772685) + +[fips0500990375] +centroid = (0.63210123516568351, -1.622152448048612) +description = Blythe township, AR +station = ('khro', 0.0030482879027733272) +zone = ('arz003', 0.0026397474324678961) + +[fips0500990507] +centroid = (0.63191061030478068, -1.6267280555755179) +description = Bryan township, AR +station = ('khro', 0.0013115074018769681) +zone = ('arz003', 0.0023988436730301354) + +[fips0500990678] +centroid = (0.63355895161024178, -1.6279210055725486) +description = Carrollton township, AR +station = ('khro', 0.0018271311376761767) +zone = ('arz003', 0.0025570467964796395) + +[fips0500991224] +centroid = (0.6338754670700909, -1.6232980996229136) +description = Elixir township, AR +station = ('khro', 0.0021904166988727298) +zone = ('arz003', 0.0011848703971848835) + +[fips0500991260] +centroid = (0.63071778248079768, -1.6240892922794277) +description = Ewing township, AR +station = ('khro', 0.0026331344582932489) +zone = ('arz003', 0.0030344716181879027) + +[fips0500991404] +centroid = (0.63090149583786259, -1.6259084140521964) +description = Gaither township, AR +station = ('khro', 0.0020740754717554627) +zone = ('arz003', 0.0029539643494063484) + +[fips0500991848] +centroid = (0.63364880116013433, -1.6264739705430127) +description = Jackson township, AR +station = ('khro', 0.00088047018455854125) +zone = ('arz003', 0.0013878315636490859) + +[fips0500991914] +centroid = (0.63081782475352199, -1.6226292021870867) +description = Jefferson township, AR +station = ('khro', 0.0033292219648725584) +zone = ('arz003', 0.0033569776530218507) + +[fips0500992133] +centroid = (0.63436286771700279, -1.624939738864047) +description = Lee township, AR +station = ('khro', 0.0015442310385972199) +zone = ('arz003', 0.00067519201491944049) + +[fips0500992268] +centroid = (0.63494184578976687, -1.6268948566921309) +description = Long Creek township, AR +station = ('khro', 0.0021662416110816963) +zone = ('arz003', 0.0021228692015078415) + +[fips0500992715] +centroid = (0.63268745635484336, -1.6249419903387821) +description = North Harrison township, AR +station = ('khro', 0.00072918096894808492) +zone = ('arz003', 0.0010284854700622933) + +[fips0500992757] +centroid = (0.63178716316678707, -1.6224578283078335) +description = Olvey township, AR +station = ('khro', 0.0029260112284894444) +zone = ('arz003', 0.0026651041460158328) + +[fips0500992760] +centroid = (0.63640390810416259, -1.6261806330556299) +description = Omaha township, AR +station = ('kbbg', 0.0012236790407111006) +zone = ('arz003', 0.0029337228944232097) + +[fips0500992979] +centroid = (0.63102892232655072, -1.6216762873220829) +description = Prairie township, AR +station = ('khro', 0.0038354425657580338) +zone = ('arz003', 0.0036495537054416368) + +[fips0500993435] +centroid = (0.63164292915740239, -1.6255043528770672) +description = South Harrison township, AR +station = ('khro', 0.0013475105684163289) +zone = ('arz003', 0.0021488433787757973) + +[fips0500993522] +centroid = (0.63555618423317639, -1.6225907700369577) +description = Sugar Loaf township, AR +station = ('khro', 0.0036400102056963414) +zone = ('arz003', 0.0025417842385449425) + +[fips0500993552] +centroid = (0.63128777210791398, -1.627533280679218) +description = Summit township, AR +station = ('khro', 0.0022029941113063311) +zone = ('arz003', 0.0032968239742949086) + +[fips0500994134] +centroid = (0.63306668149471679, -1.6218090370649898) +description = Zinc township, AR +station = ('khro', 0.0031982696459238727) +zone = ('arz003', 0.0024573129323921428) + +[fips0501030] +centroid = (0.60049239738756255, -1.5954181926982638) +description = Almyra town, AR +station = ('ksgt', 0.0040660744459933163) +zone = ('arz057', 0.0020704390771659055) + +[fips0501060] +centroid = (0.63341307699136007, -1.6284512540525968) +description = Alpena town, AR +station = ('khro', 0.0022025524515346001) +zone = ('arz003', 0.0029945971241745321) + +[fips05011] +centroid = (0.58405382184143639, -1.6086379273181071) +description = Bradley County, AR +station = ('kllq', 0.0067639251569208119) +zone = ('arz068', 9.4125366549246845e-05) + +[fips0501150] +centroid = (0.59908885596298633, -1.6030764182033346) +description = Altheimer city, AR +station = ('kpbf', 0.0027565125338002805) +zone = ('arz056', 0.0015390255925208907) + +[fips0501190819] +centroid = (0.585471709872464, -1.6103556105547499) +description = Clay township, AR +station = ('kllq', 0.0076669657066318229) +zone = ('arz068', 0.0020533531618957554) + +[fips0501191185] +centroid = (0.58088474025212755, -1.6082288221414394) +description = Eagle township, AR +station = ('kllq', 0.0084013863731353024) +zone = ('arz068', 0.003215506399969753) + +[fips0501192379] +centroid = (0.58405158781999378, -1.6061824934066462) +description = Marion township, AR +station = ('kllq', 0.0050056996330161401) +zone = ('arz068', 0.001961926910453667) + +[fips0501192568] +centroid = (0.58754407891969695, -1.6101700471486777) +description = Moro township, AR +station = ('kllq', 0.0073701264283594706) +zone = ('arz068', 0.0037132880542029246) + +[fips0501192778] +centroid = (0.58321889123386728, -1.6096530282643593) +description = Ouachita township, AR +station = ('kllq', 0.0079007682665154372) +zone = ('arz068', 0.0012772137793232272) + +[fips0501192817] +centroid = (0.58205226080195682, -1.6062267375031842) +description = Palestine township, AR +station = ('kllq', 0.0064198576131734046) +zone = ('arz068', 0.0028039408317082066) + +[fips0501192844] +centroid = (0.58646534326891697, -1.6073792831280311) +description = Pennington township, AR +station = ('kllq', 0.0050592211004047531) +zone = ('arz068', 0.0025627658882427856) + +[fips0501193186] +centroid = (0.58135926036915986, -1.610390534593082) +description = River township, AR +station = ('kcdh', 0.0090193487002587034) +zone = ('arz068', 0.0031402360739170208) + +[fips0501193558] +centroid = (0.58327235066885585, -1.6108586842583446) +description = Sumpter township, AR +station = ('kcdh', 0.0076759389505805728) +zone = ('arz068', 0.0021052720518058045) + +[fips0501193903] +centroid = (0.58355469258195092, -1.6080343226495972) +description = Washington township, AR +station = ('kllq', 0.0065648222595538763) +zone = ('arz068', 0.00067853327740302833) + +[fips0501210] +centroid = (0.61865171049652268, -1.6364892981094867) +description = Altus city, AR +station = ('kfsm', 0.0087990743400650009) +zone = ('arz020', 0.0021388840434805171) + +[fips0501270] +centroid = (0.6206946707458596, -1.5901594283955423) +description = Amagon town, AR +station = ('km19', 0.001605595113993078) +zone = ('arz025', 0.0016212210434290056) + +[fips05013] +centroid = (0.58574052548385613, -1.6146717923416392) +description = Calhoun County, AR +station = ('kcdh', 0.0038039831527730073) +zone = ('arz067', 0.00016254377761107754) + +[fips0501360] +centroid = (0.59805900698455461, -1.6312409359691071) +description = Amity city, AR +station = ('kmwt', 0.0052455838714650102) +zone = ('arz052', 0.003314164559560569) + +[fips0501393627] +centroid = (0.58964161561474382, -1.615092800663805) +description = Township 1, AR +station = ('kcdh', 0.0044216832589328257) +zone = ('arz062', 0.0036562729996856007) + +[fips0501393629] +centroid = (0.58892845662908644, -1.6135445714442385) +description = Township 2, AR +station = ('kcdh', 0.0051105240040514831) +zone = ('arz067', 0.0033240936057899757) + +[fips0501393631] +centroid = (0.58705173899100194, -1.6123557927841201) +description = Township 3, AR +station = ('kcdh', 0.0056118970887038266) +zone = ('arz067', 0.0022305088991637825) + +[fips0501393633] +centroid = (0.58420503716782901, -1.6122239157058396) +description = Township 4, AR +station = ('kcdh', 0.0062466879420516198) +zone = ('arz067', 0.0024036053025456791) + +[fips0501393635] +centroid = (0.58358350796790148, -1.6144988302127665) +description = Township 5, AR +station = ('kcdh', 0.004945277091843045) +zone = ('arz067', 0.002114120249848396) + +[fips0501393637] +centroid = (0.58473114921755021, -1.6176493065922488) +description = Township 6, AR +station = ('kcdh', 0.0023217303686773579) +zone = ('arz067', 0.0028102649454935947) + +[fips0501393639] +centroid = (0.58689979062632325, -1.6155361492003968) +description = Township 7, AR +station = ('kcdh', 0.0029595157342928707) +zone = ('arz067', 0.0014879226620147514) + +[fips0501393641] +centroid = (0.58535264351089289, -1.6139488595121707) +description = Township 8, AR +station = ('kcdh', 0.0044917568464535968) +zone = ('arz067', 0.00056360642420246311) + +[fips0501393643] +centroid = (0.58522158673736069, -1.6137570827339616) +description = Township 9, AR +station = ('kcdh', 0.0046846742877795231) +zone = ('arz067', 0.0007702596810706553) + +[fips0501457] +centroid = (0.61155781975179169, -1.5767391554446446) +description = Anthonyville town, AR +station = ('kawm', 0.0022392285967431595) +zone = ('arz036', 0.0029704082005214856) + +[fips05015] +centroid = (0.63421379914559006, -1.6326100071409566) +description = Carroll County, AR +station = ('kbbg', 0.0058542969108293704) +zone = ('arz002', 7.4434756155165391e-05) + +[fips0501540] +centroid = (0.59401553289328923, -1.6305092241335009) +description = Antoine town, AR +station = ('km89', 0.005259612277687801) +zone = ('arz052', 0.0040762403212247925) + +[fips0501590195] +centroid = (0.63653740833864747, -1.6371518600001287) +description = Beaver township, AR +station = ('krog', 0.0045650239535977542) +zone = ('moz102', 0.0041886043986471191) + +[fips0501590570] +centroid = (0.63353434246778861, -1.6323474049017015) +description = Cabanal township, AR +station = ('kbbg', 0.0061091343899574739) +zone = ('arz002', 0.00075357554744106268) + +[fips0501590681] +centroid = (0.63257676757368198, -1.6290902539983372) +description = Carrollton township, AR +station = ('khro', 0.0027031918743768255) +zone = ('arz002', 0.0032621440452895709) + +[fips0501590708] +centroid = (0.63537297702159456, -1.6368470556995607) +description = Cedar township, AR +station = ('krog', 0.0044821033107788569) +zone = ('arz002', 0.0036317481016607872) + +[fips0501590891] +centroid = (0.63395428613911087, -1.6288871151266975) +description = Coin township, AR +station = ('khro', 0.0026941201179975136) +zone = ('arz003', 0.0033403246157032219) + +[fips0501590981] +centroid = (0.63653211999101411, -1.6340897845472599) +description = Cross township, AR +station = ('krog', 0.0068938323835075884) +zone = ('arz002', 0.0025794133790722575) + +[fips0501591143] +centroid = (0.63090458507063862, -1.6316251876572261) +description = Dry Fork township, AR +station = ('khro', 0.0051541945060006016) +zone = ('arz002', 0.0034471003293053745) + +[fips0501591338] +centroid = (0.6365761022881643, -1.6356051841235966) +description = Franklin township, AR +station = ('krog', 0.0057403677399642883) +zone = ('arz002', 0.0033712617459852956) + +[fips0501591692] +centroid = (0.63439670965119888, -1.6305561734903795) +description = Hickory township, AR +station = ('kbbg', 0.0044668747621740617) +zone = ('arz002', 0.0016105958126687847) + +[fips0501592052] +centroid = (0.63579230982767865, -1.6345102518173578) +description = Kings River township, AR +station = ('krog', 0.006404978440597721) +zone = ('arz002', 0.0021928598122554414) + +[fips0501592163] +centroid = (0.63288630171652305, -1.6309558189825013) +description = Liberty township, AR +station = ('khro', 0.0041788236066356817) +zone = ('arz002', 0.0018880283037531445) + +[fips0501592271] +centroid = (0.63580508563780325, -1.6289993048910156) +description = Long Creek township, AR +station = ('kbbg', 0.0025862090676083728) +zone = ('arz002', 0.0032442416214833623) + +[fips0501592727] +centroid = (0.63658146044896791, -1.6310904013211225) +description = North Yocum township, AR +station = ('kbbg', 0.0037058302241333688) +zone = ('arz002', 0.0025925855557565004) + +[fips0501592763] +centroid = (0.6320432204213472, -1.6330040152195944) +description = Omega township, AR +station = ('khro', 0.0059048057214190113) +zone = ('arz002', 0.002256818054778972) + +[fips0501592769] +centroid = (0.63119668337425239, -1.629718973954783) +description = Osage township, AR +station = ('khro', 0.0036446592527687068) +zone = ('arz002', 0.0038283544254832337) + +[fips0501592811] +centroid = (0.63426715386082344, -1.6371926657980405) +description = Packard Springs township, AR +station = ('krog', 0.0041818423029070361) +zone = ('arz002', 0.0037400412314949737) + +[fips0501592898] +centroid = (0.63206468797114668, -1.6315840851533419) +description = Piney township, AR +station = ('khro', 0.0047730819445220363) +zone = ('arz002', 0.0023387291849740958) + +[fips0501592955] +centroid = (0.63605939756311136, -1.6326592603324477) +description = Polo township, AR +station = ('kbbg', 0.0050640988210491752) +zone = ('arz002', 0.0017914715686734777) + +[fips0501592982] +centroid = (0.63427101103847028, -1.6333677592890024) +description = Prairie township, AR +station = ('kbbg', 0.0063334224748795593) +zone = ('arz002', 0.00065905841250030899) + +[fips0501593444] +centroid = (0.63602433389843882, -1.6306934785426341) +description = South Yocum township, AR +station = ('kbbg', 0.0036014635887157221) +zone = ('arz002', 0.0023042834668013153) + +[fips0501594101] +centroid = (0.63433173104314733, -1.6353215157602701) +description = Winona township, AR +station = ('krog', 0.0056774565047825899) +zone = ('arz002', 0.0022336170009316435) + +[fips05017] +centroid = (0.58062110826861391, -1.593436004813481) +description = Chicot County, AR +station = ('kglh', 0.0059295154981451213) +zone = ('arz075', 4.6097237695764658e-05) + +[fips0501790432] +centroid = (0.58437087835335366, -1.5944724162299004) +description = Bowie township, AR +station = ('kllq', 0.0063028538209148211) +zone = ('arz075', 0.0038579361752789339) + +[fips0501790666] +centroid = (0.58190352384310173, -1.5934148863295321) +description = Carlton township, AR +station = ('kglh', 0.0051910815537305035) +zone = ('arz075', 0.0012816659554712071) + +[fips0501792913] +centroid = (0.57826377931440776, -1.5930332526352911) +description = Planters township, AR +station = ('kglh', 0.0074545385430624658) +zone = ('arz075', 0.0023762653488721467) + +[fips0501870] +centroid = (0.59557765493370174, -1.624423435564722) +description = Arkadelphia city, AR +station = ('km89', 0.00043546543213853031) +zone = ('arz053', 0.0019692542089342138) + +[fips05019] +centroid = (0.59434241560889522, -1.626231561763203) +description = Clark County, AR +station = ('km89', 0.0017858277783355748) +zone = ('arz053', 4.0450420021090398e-05) + +[fips0501990] +centroid = (0.58658568372084197, -1.591826828696435) +description = Arkansas City city, AR +station = ('kglh', 0.0038980454405811104) +zone = ('arz065', 0.0039809711981138255) + +[fips0501990591] +centroid = (0.59434241560889522, -1.626231561763203) +description = Caddo township, AR +station = ('km89', 0.0017858277783355748) +zone = ('arz053', 4.0450420021090398e-05) + +[fips05021] +centroid = (0.63472915996711887, -1.5781040901861669) +description = Clay County, AR +station = ('k4m9', 0.0032996654133423875) +zone = ('arz009', 2.8749333600869695e-05) + +[fips0502190232] +centroid = (0.63565699445077151, -1.5778922421215598) +description = Bennett-Lemmons township, AR +station = ('k4m9', 0.0034379223272978056) +zone = ('arz009', 0.00091937757467311018) + +[fips0502190448] +centroid = (0.63425624555299853, -1.5755623846497802) +description = Bradshaw-Haywood township, AR +station = ('k4m9', 0.0053989159452309679) +zone = ('arz009', 0.0020865474219083423) + +[fips0502190496] +centroid = (0.63636135697699892, -1.5829465236491178) +description = Brown-Carpenter township, AR +station = ('k4m9', 0.0012437359825536655) +zone = ('moz108', 0.004093614167428151) + +[fips0502190589] +centroid = (0.63382956491076337, -1.5809035284931956) +description = Cache-Wilson township, AR +station = ('k4m9', 0.0017761855589021388) +zone = ('arz009', 0.0024538598975223252) + +[fips0502190757] +centroid = (0.63632997595704799, -1.5742497574259402) +description = Chalk Bluff-Liddell township, AR +station = ('kpof', 0.0056214353460832082) +zone = ('arz009', 0.0034634065911661248) + +[fips0502190801] +centroid = (0.63330539017651188, -1.5829799990641709) +description = Clark township, AR +station = ('k4m9', 0.0021058499268525712) +zone = ('arz018', 0.0035257732105692715) + +[fips0502190874] +centroid = (0.63616853300123866, -1.5804603544895293) +description = Cleveland-North Kilgore township, AR +station = ('k4m9', 0.0016072579693831872) +zone = ('arz009', 0.0023839567431557197) + +[fips0502191201] +centroid = (0.63265926928742366, -1.5748510757131298) +description = East Oak Bluff-Blue Cane township, AR +station = ('kbyh', 0.0063307748578773472) +zone = ('moz113', 0.0020309916846923759) + +[fips0502191474] +centroid = (0.63497518157847987, -1.5812409006376063) +description = Gleghorn-South Kilgore township, AR +station = ('k4m9', 0.0007939601856842679) +zone = ('arz009', 0.0025552775236907534) + +[fips0502191971] +centroid = (0.63397797025706049, -1.5775973861977279) +description = Johnson township, AR +station = ('k4m9', 0.0038903416958049144) +zone = ('arz009', 0.00086428060801614225) + +[fips0502192058] +centroid = (0.63329985748278317, -1.578407515676626) +description = Knob township, AR +station = ('k4m9', 0.0036115753278448321) +zone = ('arz009', 0.0014740804949971084) + +[fips0502192667] +centroid = (0.63454361401433934, -1.583464485011232) +description = Nelson township, AR +station = ('k4m9', 0.0013066628642824875) +zone = ('arz018', 0.0047859117528285689) + +[fips0502192719] +centroid = (0.63536554191898109, -1.5740029329631231) +description = North St. Francis township, AR +station = ('kpof', 0.0066021782706128553) +zone = ('moz113', 0.0026457290251342032) + +[fips0502192836] +centroid = (0.63372025493971107, -1.5728238059737685) +description = Payne-Swain township, AR +station = ('kbyh', 0.0064255665555088401) +zone = ('moz113', 0.00074625692776438142) + +[fips0502192952] +centroid = (0.63599532652627067, -1.5757231643804737) +description = Pollard township, AR +station = ('kpof', 0.0057243650343626893) +zone = ('arz009', 0.002268839165776164) + +[fips0502193439] +centroid = (0.63464437187205702, -1.5739967370442784) +description = South St. Francis township, AR +station = ('kpof', 0.0072982757037496479) +zone = ('moz113', 0.0020465517850087483) + +[fips0502193971] +centroid = (0.63302191379940298, -1.5762782314424855) +description = West Oak Bluff township, AR +station = ('k4m9', 0.0052434857244526263) +zone = ('arz009', 0.0022567911808513957) + +[fips05023] +centroid = (0.62074882831254896, -1.6067496556003742) +description = Cleburne County, AR +station = ('kcca', 0.0055673112934345199) +zone = ('arz024', 0.00068211271741865315) + +[fips0502380] +centroid = (0.58773116076221832, -1.6428091178776658) +description = Ashdown city, AR +station = ('ktxk', 0.0044341543762800488) +zone = ('arz059', 0.0016364595855771886) + +[fips0502390615] +centroid = (0.62262474309917748, -1.6066414626400431) +description = California township, AR +station = ('kcca', 0.0057659348649408493) +zone = ('arz024', 0.0023988548104022195) + +[fips0502390750] +centroid = (0.6193123699782801, -1.6090147264503198) +description = Center Post township, AR +station = ('kcca', 0.0042142326062326292) +zone = ('arz024', 0.0025016446810391278) + +[fips0502390828] +centroid = (0.61835969945937153, -1.6085008491586552) +description = Clayton township, AR +station = ('kcca', 0.0050796143226360781) +zone = ('arz024', 0.0026841794091207547) + +[fips0502391202] +centroid = (0.62125844700083876, -1.6047020353219346) +description = East Peter Creek township, AR +station = ('kbvx', 0.0047967651198089819) +zone = ('arz024', 0.0015578669682709797) + +[fips0502391329] +centroid = (0.62074882831254896, -1.6067496556003742) +description = Francis township, AR +station = ('kcca', 0.0055673112934345199) +zone = ('arz024', 0.00068211271741865315) + +[fips0502391458] +centroid = (0.62071831995722415, -1.6082872906713812) +description = Giles township, AR +station = ('kcca', 0.0043301219347211496) +zone = ('arz024', 0.0017842091659323195) + +[fips0502391493] +centroid = (0.62182716253760117, -1.6029830256350601) +description = Grassey township, AR +station = ('kbvx', 0.0033093946706495383) +zone = ('arz024', 0.0030297066030748705) + +[fips0502391653] +centroid = (0.62249215043590356, -1.6046557491901718) +description = Healing Springs township, AR +station = ('kbvx', 0.0042742326304565613) +zone = ('arz024', 0.0025515171254946001) + +[fips0502391656] +centroid = (0.6192629248005711, -1.6059425455410818) +description = Heber township, AR +station = ('ksrc', 0.0061295619967411162) +zone = ('arz024', 0.0010108669330618646) + +[fips0502392319] +centroid = (0.61957230186377954, -1.6024392334000164) +description = McJester township, AR +station = ('kbvx', 0.0047003788115554954) +zone = ('arz024', 0.0031119184921582312) + +[fips0502392556] +centroid = (0.62142365986783266, -1.6093508594109616) +description = Morgan township, AR +station = ('kcca', 0.0034209152214475635) +zone = ('arz024', 0.0028390159494944408) + +[fips0502392583] +centroid = (0.61806058493216476, -1.6051040719151313) +description = Mountain township, AR +station = ('ksrc', 0.0047760982413648113) +zone = ('arz024', 0.0023612686707034721) + +[fips0502392707] +centroid = (0.61794762722297569, -1.6095173289150166) +description = North Cadron township, AR +station = ('kcca', 0.0047226952550332921) +zone = ('arz024', 0.0035733409443823626) + +[fips0502392874] +centroid = (0.61785728898089243, -1.6038195619455413) +description = Pickens township, AR +station = ('ksrc', 0.0039634643321139352) +zone = ('arz024', 0.0030690245052689201) + +[fips0502392886] +centroid = (0.61917380828896418, -1.6034814567628448) +description = Pine township, AR +station = ('ksrc', 0.0049968041659145439) +zone = ('arz024', 0.0024411179072829619) + +[fips0502392901] +centroid = (0.61781269581850395, -1.6066783239938451) +description = Piney township, AR +station = ('ksrc', 0.0055814820072744237) +zone = ('arz024', 0.0024791210291297363) + +[fips0502392931] +centroid = (0.62257650219865235, -1.6092471694001005) +description = Poff township, AR +station = ('kcca', 0.0037154576517869809) +zone = ('arz014', 0.003361590680433004) + +[fips0502393294] +centroid = (0.62041580203797597, -1.6092473264797333) +description = Saline township, AR +station = ('kcca', 0.0036243470814007954) +zone = ('arz024', 0.0025098889163707393) + +[fips0502393427] +centroid = (0.61741502254843705, -1.6086635487515262) +description = South Cadron township, AR +station = ('kcca', 0.0055909438550988217) +zone = ('arz024', 0.0034935780274807904) + +[fips0502393510] +centroid = (0.62224314431152139, -1.6077954568881694) +description = Sugar Camp township, AR +station = ('kcca', 0.0047699259874880683) +zone = ('arz024', 0.0023863531837556204) + +[fips0502393525] +centroid = (0.61943293732300786, -1.6044489974869804) +description = Sugar Loaf township, AR +station = ('ksrc', 0.0055758759614096551) +zone = ('arz024', 0.0016244149042256224) + +[fips0502393750] +centroid = (0.61947712905966845, -1.6073393849013307) +description = Valley township, AR +station = ('kcca', 0.0053899515648786148) +zone = ('arz024', 0.0012311093714261212) + +[fips0502393972] +centroid = (0.62041369018958104, -1.6051349816961842) +description = West Peter Creek township, AR +station = ('kbvx', 0.0055536153015869087) +zone = ('arz024', 0.00085578823413764288) + +[fips0502394053] +centroid = (0.62014796381096493, -1.6031200165280495) +description = Wilburn township, AR +station = ('kbvx', 0.004536138636007948) +zone = ('arz024', 0.0024834620198118198) + +[fips0502470] +centroid = (0.63244501266844877, -1.5988477123185549) +description = Ash Flat city, AR +station = ('kbvx', 0.0088014480267462787) +zone = ('arz007', 0.0022236267596686538) + +[fips05025] +centroid = (0.59154795149023454, -1.6089965924793919) +description = Cleveland County, AR +station = ('kpbf', 0.0062676897881975713) +zone = ('arz063', 0.00010404470086213742) + +[fips0502590] +centroid = (0.61506884624815117, -1.6222798221774226) +description = Atkins city, AR +station = ('krue', 0.0021470677614649505) +zone = ('arz031', 0.0035597716329533969) + +[fips0502590438] +centroid = (0.59360185495398154, -1.6075222605003545) +description = Bowman township, AR +station = ('kpbf', 0.0038936716384055806) +zone = ('arz063', 0.0022864222387666169) + +[fips0502591611] +centroid = (0.59042788644276722, -1.6062617139013942) +description = Harper township, AR +station = ('kllq', 0.00533124471850177) +zone = ('arz063', 0.0025287429089193964) + +[fips0502591785] +centroid = (0.59350334857099896, -1.6055234396278006) +description = Hudgin township, AR +station = ('kpbf', 0.0032134191565466137) +zone = ('arz063', 0.0033891866922368982) + +[fips0502591800] +centroid = (0.58907445342101572, -1.6059439592577762) +description = Hurricane township, AR +station = ('kllq', 0.0043506672269577919) +zone = ('arz063', 0.0035707893942129791) + +[fips0502592049] +centroid = (0.59154847508901021, -1.61133592708901) +description = Kingsland township, AR +station = ('kpbf', 0.0075734020381175377) +zone = ('arz063', 0.0019947206376825506) + +[fips0502592136] +centroid = (0.58910428109793234, -1.6075505173809446) +description = Lee township, AR +station = ('kllq', 0.0055749547195073539) +zone = ('arz063', 0.0027832619389120644) + +[fips0502592493] +centroid = (0.59253591256661853, -1.6068065358806967) +description = Miller township, AR +station = ('kpbf', 0.0044876968493847182) +zone = ('arz063', 0.0019811775291291083) + +[fips0502592691] +centroid = (0.59362641173655706, -1.6089640944487196) +description = Niven township, AR +station = ('kpbf', 0.0047262267986370975) +zone = ('arz063', 0.0019878644510902882) + +[fips0502593069] +centroid = (0.58953090938028985, -1.6097968259414313) +description = Redland township, AR +station = ('kllq', 0.0074727610794331394) +zone = ('arz063', 0.0022259531865343476) + +[fips0502593183] +centroid = (0.59204048340514748, -1.6094234825611371) +description = Rison township, AR +station = ('kpbf', 0.006105018549482766) +zone = ('arz063', 0.00057062219068455876) + +[fips0502593243] +centroid = (0.59157954194969564, -1.6063308463930657) +description = Rowell township, AR +station = ('kpbf', 0.0052465778368604313) +zone = ('arz063', 0.0021625890046208041) + +[fips0502593297] +centroid = (0.59364536601223372, -1.6125647610554614) +description = Saline township, AR +station = ('kpbf', 0.0072776161382680947) +zone = ('arz063', 0.0036180331485303496) + +[fips0502593405] +centroid = (0.59146606064173102, -1.608118203173448) +description = Smith township, AR +station = ('kpbf', 0.0059391362765563813) +zone = ('arz063', 0.00069984602663391898) + +[fips0502594002] +centroid = (0.59372182888676361, -1.6102293534366603) +description = White Oak township, AR +station = ('kpbf', 0.005527280889004939) +zone = ('arz063', 0.0023434176458509196) + +[fips0502594038] +centroid = (0.59325910719547481, -1.6066619528054615) +description = Whiteville township, AR +station = ('kpbf', 0.0037855237130731407) +zone = ('arz063', 0.0024864223114829808) + +[fips0502680] +centroid = (0.60597348173040322, -1.5864705877549896) +description = Aubrey town, AR +station = ('kckm', 0.0092094098122006123) +zone = ('arz049', 0.0019746899194324936) + +[fips05027] +centroid = (0.57971233278039291, -1.6271163738807941) +description = Columbia County, AR +station = ('keld', 0.0059901570743393943) +zone = ('arz072', 1.4647576171591507e-05) + +[fips0502740] +centroid = (0.61584824047892173, -1.594560415730786) +description = Augusta city, AR +station = ('ksrc', 0.0055058918046089539) +zone = ('arz034', 0.0024188311869628928) + +[fips0502791245] +centroid = (0.57760053674535738, -1.626021528841018) +description = Emerson township, AR +station = ('keld', 0.0055100401470127838) +zone = ('arz072', 0.0022921584634095068) + +[fips0502792328] +centroid = (0.58268989939088034, -1.6261472972669169) +description = McNeil township, AR +station = ('keld', 0.0059560082309786568) +zone = ('arz072', 0.0031002602799782542) + +[fips0502792355] +centroid = (0.5800672105772009, -1.6278041034192501) +description = Magnolia township, AR +station = ('keld', 0.0065728310282339849) +zone = ('arz072', 0.00067820590630996336) + +[fips0502793579] +centroid = (0.57842312787511485, -1.6308150581783281) +description = Taylor township, AR +station = ('kmne', 0.0088111964545121522) +zone = ('arz071', 0.0030128166144091535) + +[fips0502793801] +centroid = (0.58066964587511183, -1.6238674958380843) +description = Village township, AR +station = ('keld', 0.0034005031266230831) +zone = ('arz072', 0.0028909201501734244) + +[fips0502793822] +centroid = (0.58245447192807875, -1.6284855148658135) +description = Waldo township, AR +station = ('keld', 0.0076283366031372722) +zone = ('arz072', 0.0029815486777012823) + +[fips0502860] +centroid = (0.61099215854122035, -1.6055145559019079) +description = Austin city, AR +station = ('klrf', 0.0027910961046392685) +zone = ('arz045', 0.0046454488856906917) + +[fips05029] +centroid = (0.61550261292714925, -1.6177325587975693) +description = Conway County, AR +station = ('kcca', 0.0067541257461276594) +zone = ('arz031', 0.00018364353464837526) + +[fips0502990081] +centroid = (0.61845932285307526, -1.6152719587115223) +description = Austin township, AR +station = ('kcca', 0.003198584912052558) +zone = ('arz023', 0.002582822642908942) + +[fips0502990237] +centroid = (0.61269189979315264, -1.6190119374991585) +description = Bentley township, AR +station = ('krue', 0.005441429865045715) +zone = ('arz031', 0.0028846438405562475) + +[fips0502990312] +centroid = (0.61619001085304725, -1.616428850206207) +description = Bird township, AR +station = ('kcca', 0.005653923951913201) +zone = ('arz031', 0.001446140160703469) + +[fips0502990696] +centroid = (0.61684005873295256, -1.61506415981078) +description = Catholic Point township, AR +station = ('kcca', 0.0046616761394153699) +zone = ('arz031', 0.0027353795669289851) + +[fips0502990723] +centroid = (0.61331004305433146, -1.6214199508148426) +description = Cedar Falls township, AR +station = ('krue', 0.0034315413592693055) +zone = ('arz039', 0.0033918598213997062) + +[fips0502991530] +centroid = (0.61579275646200082, -1.6197437191479347) +description = Gregory township, AR +station = ('krue', 0.0042488695247289128) +zone = ('arz031', 0.0015102089631772) + +[fips0502991533] +centroid = (0.61804887377288387, -1.6196490699425989) +description = Griffin township, AR +station = ('krue', 0.0051299326057199666) +zone = ('arz031', 0.0029549394844268066) + +[fips0502991713] +centroid = (0.61253862497824241, -1.6211173630824243) +description = Higgins township, AR +station = ('krue', 0.0040992569288696322) +zone = ('arz039', 0.0026818720693966899) + +[fips0502991779] +centroid = (0.6133752311018934, -1.6159925178932082) +description = Howard township, AR +station = ('klrf', 0.0074282388073216498) +zone = ('arz031', 0.0026103308044372877) + +[fips0502992199] +centroid = (0.61757154367575584, -1.6158048426387415) +description = Lick Mountain township, AR +station = ('kcca', 0.0041869019358521864) +zone = ('arz031', 0.0027541251296776554) + +[fips0502992325] +centroid = (0.61658934218590356, -1.617394802680723) +description = McLaren township, AR +station = ('kcca', 0.0056844960825416877) +zone = ('arz031', 0.0012324625841015149) + +[fips0502992412] +centroid = (0.61281058218228823, -1.6203604835990044) +description = Martin township, AR +station = ('krue', 0.0044297172602689693) +zone = ('arz039', 0.0031489519255954472) + +[fips0502992688] +centroid = (0.61796759378961841, -1.6179593992404508) +description = Nichols township, AR +station = ('kcca', 0.0049192794599274879) +zone = ('arz031', 0.0025261309438425043) + +[fips0502992745] +centroid = (0.61665809070513955, -1.6198658747422816) +description = Old Hickory township, AR +station = ('krue', 0.0043517455639658659) +zone = ('arz031', 0.0019846565394260386) + +[fips0502992856] +centroid = (0.61251471396749013, -1.6231303909350894) +description = Petit Jean township, AR +station = ('krue', 0.0030758762834954324) +zone = ('arz039', 0.0027404041646094087) + +[fips0502993282] +centroid = (0.61622563302308042, -1.61843140608336) +description = St. Vincent township, AR +station = ('krue', 0.0053751944725964748) +zone = ('arz031', 0.0008790633637164939) + +[fips0502993492] +centroid = (0.6148087398297265, -1.6163043035107847) +description = Steele township, AR +station = ('kcca', 0.0069017844031399921) +zone = ('arz031', 0.0014815872813521321) + +[fips0502993672] +centroid = (0.61556446739584003, -1.6148590312637932) +description = Union township, AR +station = ('kcca', 0.0058694303570149516) +zone = ('arz031', 0.0025223559308443885) + +[fips0502993906] +centroid = (0.61496285240267745, -1.6179625059265192) +description = Washington township, AR +station = ('krue', 0.0056734520233754073) +zone = ('arz031', 0.00047886114187856035) + +[fips0502993960] +centroid = (0.61386343460026127, -1.6189697703444303) +description = Welborn township, AR +station = ('krue', 0.0050350485070799061) +zone = ('arz031', 0.0017865223339089225) + +[fips0502993999] +centroid = (0.61268947378549232, -1.6221337730256156) +description = White Eagle township, AR +station = ('krue', 0.0034007254820838649) +zone = ('arz039', 0.0027459407180473227) + +[fips0503010] +centroid = (0.60552838786455954, -1.6159324611136472) +description = Avilla CDP, AR +station = ('klit', 0.0051070177990690637) +zone = ('arz043', 0.0015420705765923598) + +[fips0503040] +centroid = (0.63519100899378156, -1.64176905872311) +description = Avoca town, AR +station = ('krog', 0.0006678900522061928) +zone = ('arz001', 0.0028464278432342779) + +[fips05031] +centroid = (0.62532124188692373, -1.5817990743856865) +description = Craighead County, AR +station = ('kjbr', 0.00029094597849374477) +zone = ('arz026', 5.5639187964252704e-05) + +[fips0503190255] +centroid = (0.62692685753229593, -1.5848261734403455) +description = Big Creek township, AR +station = ('kjbr', 0.002652523222077598) +zone = ('arz026', 0.0028792072473901361) + +[fips0503190330] +centroid = (0.62442710971112703, -1.5769662402336218) +description = Black Oak township, AR +station = ('kjbr', 0.0043102386170533694) +zone = ('arz028', 0.0042475515835445812) + +[fips0503190489] +centroid = (0.626857271255019, -1.5802128318950115) +description = Brookland township, AR +station = ('kjbr', 0.0021299294791095585) +zone = ('arz026', 0.001991407862851366) + +[fips0503190534] +centroid = (0.62701539808524964, -1.5769183309456545) +description = Buffalo township, AR +station = ('kjbr', 0.0045260719710607591) +zone = ('arz018', 0.0044632770056227669) + +[fips0503191461] +centroid = (0.62435637151654366, -1.5848274475306994) +description = Gilkerson township, AR +station = ('kjbr', 0.0024200515740436684) +zone = ('arz026', 0.0026240954908994924) + +[fips0503191512] +centroid = (0.62381362647905103, -1.5822884821612382) +description = Greenfield township, AR +station = ('kjbr', 0.0016005017704790879) +zone = ('arz026', 0.0015937405397168044) + +[fips0503191674] +centroid = (0.62719766281903533, -1.5832777522345611) +description = Herndon township, AR +station = ('kjbr', 0.0020112875528690128) +zone = ('arz026', 0.002170844586147407) + +[fips0503192004] +centroid = (0.62566205232996064, -1.5828299531083769) +description = Jonesboro township, AR +station = ('kjbr', 0.0006129104570674641) +zone = ('arz026', 0.0008549944682089603) + +[fips0503192097] +centroid = (0.62516465094643481, -1.5786750048377867) +description = Lake City township, AR +station = ('kjbr', 0.0028208439839837252) +zone = ('arz026', 0.0025746684817323858) + +[fips0503192154] +centroid = (0.62681938015695815, -1.5787978236572495) +description = Lester township, AR +station = ('kjbr', 0.003053839003051576) +zone = ('arz026', 0.0028625134443885807) + +[fips0503192232] +centroid = (0.62425568347199611, -1.5872513084359916) +description = Little Texas township, AR +station = ('km19', 0.0040074948228471961) +zone = ('arz025', 0.0048399885661138025) + +[fips0503192433] +centroid = (0.62400538580396769, -1.5804172099504201) +description = Maumelle township, AR +station = ('kjbr', 0.0019816436352043613) +zone = ('arz026', 0.00178412460952856) + +[fips0503192670] +centroid = (0.6250184796215803, -1.5811341213939694) +description = Nettleton township, AR +station = ('kjbr', 0.00090526421257450956) +zone = ('arz026', 0.00066984398834767469) + +[fips0503192970] +centroid = (0.62707421568104182, -1.582066092307949) +description = Powell township, AR +station = ('kjbr', 0.0016656721877675682) +zone = ('arz026', 0.0017185071331697718) + +[fips0503192985] +centroid = (0.62424725353170907, -1.5785506675818748) +description = Prairie township, AR +station = ('kjbr', 0.0031353902229336872) +zone = ('arz026', 0.0028933279705762247) + +[fips0503193036] +centroid = (0.62553506217358557, -1.58781868006923) +description = Promised Land township, AR +station = ('km19', 0.0045439542418747722) +zone = ('arz017', 0.003968392091518824) + +[fips0503193582] +centroid = (0.62365270712201715, -1.5791528934402754) +description = Taylor township, AR +station = ('kjbr', 0.0029937923155724652) +zone = ('arz026', 0.0027727578956417429) + +[fips0503193597] +centroid = (0.62502963227550057, -1.5870974576624284) +description = Texas township, AR +station = ('kjbr', 0.0040368193641810036) +zone = ('arz017', 0.0046972250269279514) + +[fips0503280] +centroid = (0.61630330017479418, -1.5982201442794155) +description = Bald Knob city, AR +station = ('ksrc', 0.0029354930969767131) +zone = ('arz033', 0.0026658426093954168) + +[fips05033] +centroid = (0.62104122332213563, -1.644732383446901) +description = Crawford County, AR +station = ('kfsm', 0.004736344877038539) +zone = ('arz019', 0.00014038121882721245) + +[fips0503390024] +centroid = (0.61918084196584988, -1.6444035459625326) +description = Alma township, AR +station = ('kfsm', 0.0032785989873706351) +zone = ('arz019', 0.0019960808348825063) + +[fips0503390248] +centroid = (0.62353226195033695, -1.6403352707425964) +description = Bidville township, AR +station = ('kfyv', 0.0054371843446453291) +zone = ('arz020', 0.0039557199950603882) + +[fips0503390717] +centroid = (0.62190093760508303, -1.6455835979763909) +description = Cedar Creek township, AR +station = ('kfsm', 0.0053454759049459651) +zone = ('arz019', 0.00096375128872181034) + +[fips0503390726] +centroid = (0.621117703649958, -1.6469507143794782) +description = Cedarville township, AR +station = ('kfsm', 0.004434955711089766) +zone = ('arz019', 0.001708013414582494) + +[fips0503390777] +centroid = (0.62262292795675545, -1.644373316859888) +description = Chester township, AR +station = ('kfyv', 0.0057376177842425073) +zone = ('arz019', 0.001529469570407127) + +[fips0503390942] +centroid = (0.62316076861905001, -1.6463753491382658) +description = Cove City township, AR +station = ('kfyv', 0.0056537386964210876) +zone = ('arz019', 0.0023674027866810387) + +[fips0503391043] +centroid = (0.62029364644362883, -1.6438592824885907) +description = Dean Springs township, AR +station = ('kfsm', 0.0044297325708944155) +zone = ('arz019', 0.0011715629590262366) + +[fips0503391124] +centroid = (0.61893394768986265, -1.6479629878923423) +description = Dora township, AR +station = ('kfsm', 0.0023814775770196637) +zone = ('arz019', 0.0033612660075560416) + +[fips0503391176] +centroid = (0.61944763299530958, -1.6432024278246025) +description = Dyer township, AR +station = ('kfsm', 0.0041554773731081835) +zone = ('arz019', 0.0021620897126055881) + +[fips0503391905] +centroid = (0.61994491220578785, -1.6476763873758724) +description = Jasper township, AR +station = ('kfsm', 0.0033069272434432429) +zone = ('arz019', 0.0025926008659374155) + +[fips0503392039] +centroid = (0.61768097581985593, -1.643929043298793) +description = Kibler township, AR +station = ('kfsm', 0.0027027683380342073) +zone = ('arz019', 0.003542884538902241) + +[fips0503392112] +centroid = (0.62093650356701591, -1.6446967787301601) +description = Lancaster township, AR +station = ('kfsm', 0.004651861250591624) +zone = ('arz019', 0.00024186650230845826) + +[fips0503392145] +centroid = (0.62288626323429641, -1.6479803190118147) +description = Lees Creek township, AR +station = ('kfsm', 0.0062534415124811671) +zone = ('arz019', 0.003083292106543701) + +[fips0503392240] +centroid = (0.62249871287389114, -1.6422612066655871) +description = Locke township, AR +station = ('kfyv', 0.0059083907279971464) +zone = ('arz019', 0.0025033186808877659) + +[fips0503392614] +centroid = (0.62170615886056035, -1.6439045214228023) +description = Mountainburg township, AR +station = ('kfsm', 0.0056234875007570651) +zone = ('arz019', 0.0009530719655602999) + +[fips0503392648] +centroid = (0.61987673964520495, -1.6416894891625113) +description = Mulberry township, AR +station = ('kfsm', 0.0053842534950117333) +zone = ('arz019', 0.0028668974950499444) + +[fips0503392754] +centroid = (0.62014546799013448, -1.6459284924898776) +description = Oliver Springs township, AR +station = ('kfsm', 0.003572648524654643) +zone = ('arz019', 0.0013284824117717039) + +[fips0503392961] +centroid = (0.62362361248338638, -1.6433729988524002) +description = Porter township, AR +station = ('kfyv', 0.0046963962350973151) +zone = ('arz019', 0.0027554359800430932) + +[fips0503393252] +centroid = (0.620103423008454, -1.6449320665666214) +description = Rudy township, AR +station = ('kfsm', 0.0038161866292097) +zone = ('arz019', 0.0010421661446185645) + +[fips0503393733] +centroid = (0.62128125845416238, -1.6481719212570987) +description = Uniontown township, AR +station = ('kfsm', 0.0046947860993674347) +zone = ('arz019', 0.0027042835393288178) + +[fips0503393738] +centroid = (0.62330271624711475, -1.6451287826266139) +description = Upper township, AR +station = ('kfyv', 0.0051828533103430129) +zone = ('arz019', 0.0021710301146192091) + +[fips0503393771] +centroid = (0.61838275525879038, -1.6459939248835349) +description = Van Buren township, AR +station = ('kfsm', 0.0018905375796108065) +zone = ('arz019', 0.0029133682775123967) + +[fips0503393810] +centroid = (0.61935842921724016, -1.6425057098404989) +description = Vine Prairie township, AR +station = ('kfsm', 0.0045419408024411859) +zone = ('arz019', 0.0026129397933566602) + +[fips0503394044] +centroid = (0.62112157828089742, -1.6425772857931233) +description = Whitley township, AR +station = ('kfsm', 0.0057211063194729994) +zone = ('arz019', 0.0018488721459055679) + +[fips0503394098] +centroid = (0.62364822162583955, -1.6416391189602988) +description = Winfrey township, AR +station = ('kfyv', 0.0049123403086774996) +zone = ('arz019', 0.0036169372253285099) + +[fips0503430] +centroid = (0.58600967270780624, -1.6103645815471048) +description = Banks town, AR +station = ('kllq', 0.0075832857040228248) +zone = ('arz068', 0.0024523618301335753) + +[fips05035] +centroid = (0.61456320691055588, -1.5762998909785029) +description = Crittenden County, AR +station = ('kawm', 0.0018021590068823515) +zone = ('arz036', 0.00011502421864856602) + +[fips0503590333] +centroid = (0.61764683717968694, -1.5781849163838266) +description = Black Oak township, AR +station = ('kawm', 0.0052129028319474737) +zone = ('arz036', 0.0035494987789711887) + +[fips0503590384] +centroid = (0.61203844852120592, -1.5767791060312228) +description = Bob Ward township, AR +station = ('kawm', 0.0019427460882907887) +zone = ('arz036', 0.0025025157427730278) + +[fips0503591314] +centroid = (0.61772925162696612, -1.5746108136883001) +description = Fogleman township, AR +station = ('kawm', 0.0045417938238884632) +zone = ('arz036', 0.0034820126929976129) + +[fips0503591857] +centroid = (0.61446332171746432, -1.5766341564368449) +description = Jackson township, AR +station = ('kawm', 0.0019230133870495496) +zone = ('arz036', 0.00036609884687315101) + +[fips0503591908] +centroid = (0.61473332415274784, -1.5747134565016101) +description = Jasper township, AR +station = ('kawm', 0.0015462000239782104) +zone = ('arz036', 0.0012280005264480066) + +[fips0503592298] +centroid = (0.60917898834120099, -1.5766412948334854) +description = Lucas township, AR +station = ('kuta', 0.003887753218128078) +zone = ('msz007', 0.0044259471244595455) + +[fips0503592508] +centroid = (0.61337496930250557, -1.5740018508589868) +description = Mississippi township, AR +station = ('kawm', 0.00073207226361885673) +zone = ('arz036', 0.0021080393803553014) + +[fips0503592580] +centroid = (0.61476857980363797, -1.5731996975347704) +description = Mound City township, AR +station = ('kawm', 0.0020846193245273427) +zone = ('arz036', 0.0024565334988753927) + +[fips0503593033] +centroid = (0.61236156132562758, -1.5749160892277667) +description = Proctor township, AR +station = ('kawm', 0.0008316841925157379) +zone = ('arz036', 0.0023722100980126132) + +[fips0503593655] +centroid = (0.61514654830644988, -1.5787017258286349) +description = Tyronza township, AR +station = ('kawm', 0.0036920797665204045) +zone = ('arz036', 0.0021549384537484289) + +[fips0503593873] +centroid = (0.61625310450550685, -1.5753200282298483) +description = Wappanocca township, AR +station = ('kawm', 0.0030828820435835382) +zone = ('arz036', 0.0018966152863709276) + +[fips0503640] +centroid = (0.61659965708178288, -1.6455587444878426) +description = Barling city, AR +station = ('kfsm', 0.0011861176142816808) +zone = ('arz029', 0.0022600969660066892) + +[fips05037] +centroid = (0.61594866672408144, -1.5843033251563257) +description = Cross County, AR +station = ('km19', 0.0083192216463229135) +zone = ('arz035', 8.7446646557585414e-05) + +[fips0503790204] +centroid = (0.61461919707295987, -1.5858866704004424) +description = Bedford township, AR +station = ('km19', 0.0086011522018691281) +zone = ('arz035', 0.0019373080867050691) + +[fips0503790504] +centroid = (0.61618573479637995, -1.5875116941070966) +description = Brushy Lake township, AR +station = ('km19', 0.0065837342183064831) +zone = ('arz035', 0.0026600945758101439) + +[fips0503790894] +centroid = (0.61768039986120271, -1.5818785741331149) +description = Coldwater township, AR +station = ('kawm', 0.0072734301049521381) +zone = ('arz035', 0.002549107132655912) + +[fips0503791227] +centroid = (0.61436060909098444, -1.5869642715872088) +description = Ellis township, AR +station = ('km19', 0.0084174141936181474) +zone = ('arz035', 0.0027684505469618864) + +[fips0503791266] +centroid = (0.6144046262947197, -1.5883481955109924) +description = Fair Oaks township, AR +station = ('km19', 0.0079650532926944066) +zone = ('arz034', 0.0033989456384518725) + +[fips0503791701] +centroid = (0.61793340278957187, -1.5875961156830156) +description = Hickory Ridge township, AR +station = ('km19', 0.0050668027504355657) +zone = ('arz035', 0.0033231793950913558) + +[fips0503792526] +centroid = (0.61781641336981075, -1.5844139266710244) +description = Mitchell township, AR +station = ('km19', 0.0070042956570535381) +zone = ('arz035', 0.0017930047251233088) + +[fips0503793339] +centroid = (0.61658131367134439, -1.5842583480215016) +description = Searcy township, AR +station = ('km19', 0.007897394027641922) +zone = ('arz035', 0.00055339159877379517) + +[fips0503793408] +centroid = (0.61433003092248939, -1.5825585195031069) +description = Smith township, AR +station = ('kawm', 0.0063883949415819031) +zone = ('arz035', 0.0021930019803759735) + +[fips0503793652] +centroid = (0.61780470221052985, -1.5798690020323685) +description = Twist township, AR +station = ('kawm', 0.0061596744509257503) +zone = ('arz027', 0.0036895584814059107) + +[fips0503793657] +centroid = (0.61517024987769209, -1.5805189451925188) +description = Tyronza township, AR +station = ('kawm', 0.0050233641641456318) +zone = ('arz035', 0.0031709040902812772) + +[fips0503794125] +centroid = (0.61449875190127978, -1.5846396151965998) +description = Wynne township, AR +station = ('km19', 0.0092633099726502476) +zone = ('arz035', 0.0015605934410265233) + +[fips05039] +centroid = (0.59285035108465789, -1.6171173476895335) +description = Dallas County, AR +station = ('kcdh', 0.0063429680901587729) +zone = ('arz062', 3.5258975092855988e-05) + +[fips0503940] +centroid = (0.6202168345032486, -1.5730530898776027) +description = Bassett town, AR +station = ('knqa', 0.0048311119952562428) +zone = ('arz028', 0.004121738802729133) + +[fips0503990546] +centroid = (0.59384524111817216, -1.6149318289468939) +description = Bunn township, AR +station = ('kcdh', 0.0079148858802645349) +zone = ('arz062', 0.0020571261714447619) + +[fips0503990780] +centroid = (0.59503824347508028, -1.6141295534496294) +description = Chester township, AR +station = ('kpbf', 0.0080921074861607743) +zone = ('arz062', 0.0032869370889216745) + +[fips0503991146] +centroid = (0.59026995159875428, -1.6120569400563012) +description = Dry Run township, AR +station = ('kcdh', 0.0068375723135419009) +zone = ('arz063', 0.0029314352560769982) + +[fips0503991317] +centroid = (0.59059976646750356, -1.6131252909980318) +description = Fordyce township, AR +station = ('kcdh', 0.0062927320159844652) +zone = ('arz062', 0.0040308358655121047) + +[fips0503991752] +centroid = (0.59071288125632537, -1.6174543533148014) +description = Holly Springs township, AR +station = ('kcdh', 0.0042151283149581779) +zone = ('arz062', 0.0021889945485373784) + +[fips0503991860] +centroid = (0.59073693189341792, -1.6150053422149877) +description = Jackson township, AR +station = ('kcdh', 0.0052562252814148738) +zone = ('arz062', 0.0027769495390041672) + +[fips0503992166] +centroid = (0.59219005812204339, -1.6149436099193448) +description = Liberty township, AR +station = ('kcdh', 0.0064613198014389821) +zone = ('arz062', 0.001939171504426903) + +[fips0503992364] +centroid = (0.59379134535087053, -1.6207493429563489) +description = Manchester township, AR +station = ('km89', 0.0032487215933740634) +zone = ('arz062', 0.0031377538797012555) + +[fips0503992697] +centroid = (0.59326657720467335, -1.619197116932795) +description = Nix township, AR +station = ('km89', 0.0046373142589320815) +zone = ('arz062', 0.0017592586561517652) + +[fips0503992790] +centroid = (0.59113509385567531, -1.6201745885803744) +description = Owen township, AR +station = ('kcdh', 0.0045058194543896686) +zone = ('arz062', 0.0030758859891696026) + +[fips0503993030] +centroid = (0.59260904186227714, -1.6171397926237143) +description = Princeton township, AR +station = ('kcdh', 0.0061051937733422922) +zone = ('arz062', 0.00027604837371499036) + +[fips0503993411] +centroid = (0.59474649423731707, -1.6170976254689859) +description = Smith township, AR +station = ('km89', 0.0059869452944250404) +zone = ('arz062', 0.0018617874900364411) + +[fips0503993423] +centroid = (0.5920258400927233, -1.6133805628544287) +description = Southall township, AR +station = ('kcdh', 0.0071142747037680372) +zone = ('arz062', 0.0032237417577588574) + +[fips0503994071] +centroid = (0.59549133094889817, -1.6194433130770813) +description = Willow township, AR +station = ('km89', 0.0040437371170713252) +zone = ('arz062', 0.0032373329543656003) + +[fips0504030] +centroid = (0.62422716479201856, -1.5992045797907102) +description = Batesville city, AR +station = ('kbvx', 0.00064561043058102496) +zone = ('arz016', 0.00092119001498770076) + +[fips0504090] +centroid = (0.60318064076794697, -1.6144243919201688) +description = Bauxite town, AR +station = ('klit', 0.0048796699173800371) +zone = ('arz043', 0.0029594141493538796) + +[fips05041] +centroid = (0.5904230344274467, -1.592515675245612) +description = Desha County, AR +station = ('kglh', 0.0071226295075140014) +zone = ('arz065', 0.00015992118513529128) + +[fips0504180] +centroid = (0.62388619726934891, -1.5804327782873477) +description = Bay city, AR +station = ('kjbr', 0.0020593379674455929) +zone = ('arz026', 0.0018688547840245036) + +[fips0504190435] +centroid = (0.58648518766251212, -1.5952980791391413) +description = Bowie township, AR +station = ('kllq', 0.0050585841008118802) +zone = ('arz065', 0.0045684638229411571) + +[fips0504190831] +centroid = (0.58800758600914915, -1.594838359414166) +description = Clayton township, AR +station = ('kllq', 0.0055018749025326453) +zone = ('arz065', 0.0030718109008756457) + +[fips0504191341] +centroid = (0.58876727547266472, -1.5910623744840613) +description = Franklin township, AR +station = ('kglh', 0.0050796923471647885) +zone = ('arz065', 0.0021965264412907742) + +[fips0504191587] +centroid = (0.58595963411815155, -1.5937610549333725) +description = Halley township, AR +station = ('kglh', 0.0050838465327833942) +zone = ('arz065', 0.0046305705093869455) + +[fips0504191920] +centroid = (0.58997546219406527, -1.5951478237438372) +description = Jefferson township, AR +station = ('kllq', 0.0059417089114812823) +zone = ('arz065', 0.0021147205252526275) + +[fips0504192511] +centroid = (0.59436805449560703, -1.5889658326266884) +description = Mississippi township, AR +station = ('kckm', 0.0087812734960851461) +zone = ('arz065', 0.004944752437745433) + +[fips0504193051] +centroid = (0.59192864270667966, -1.5971263813437755) +description = Randolph township, AR +station = ('kllq', 0.0060360993786787919) +zone = ('arz064', 0.0033371353333461976) + +[fips0504193063] +centroid = (0.59154119706602948, -1.5927271044311986) +description = Red Fork township, AR +station = ('kglh', 0.0081742509691766167) +zone = ('arz065', 0.0010393678498255628) + +[fips0504193132] +centroid = (0.58955658317358661, -1.5931215662954419) +description = Richland township, AR +station = ('kglh', 0.006717629156458035) +zone = ('arz065', 0.0010137410018069084) + +[fips0504193381] +centroid = (0.59241915003966017, -1.5958605987570591) +description = Silver Lake township, AR +station = ('kllq', 0.0070687950975053537) +zone = ('arz065', 0.003260786068341882) + +[fips0504193870] +centroid = (0.59036772494345102, -1.5970471783023201) +description = Walnut Lake township, AR +station = ('kllq', 0.004899190119553489) +zone = ('arz065', 0.0036280221186461184) + +[fips05043] +centroid = (0.5862079595641253, -1.6008644751758196) +description = Drew County, AR +station = ('kllq', 0.00089649269204080003) +zone = ('arz069', 5.6430933537148294e-05) + +[fips0504390132] +centroid = (0.58478609218240307, -1.5964122973336146) +description = Bartholomew township, AR +station = ('kllq', 0.0046702808749041992) +zone = ('arz069', 0.0039503611977677808) + +[fips0504390186] +centroid = (0.58389213453953159, -1.6004093107601918) +description = Bearhouse township, AR +station = ('kllq', 0.0032151605220763421) +zone = ('arz069', 0.0023795117668753032) + +[fips0504390834] +centroid = (0.58901640377009445, -1.6039941297773257) +description = Clear Creek township, AR +station = ('kllq', 0.0029823374319618338) +zone = ('arz069', 0.0038293212163548768) + +[fips0504390906] +centroid = (0.58440402215584908, -1.5982574419655307) +description = Collins township, AR +station = ('kllq', 0.0036606580129474086) +zone = ('arz069', 0.0028188727993581886) + +[fips0504390915] +centroid = (0.58577192395709954, -1.5996232493716787) +description = Cominto township, AR +station = ('kllq', 0.001892771300935493) +zone = ('arz069', 0.0011016173050415416) + +[fips0504390969] +centroid = (0.58420686976354375, -1.6046874967292655) +description = Crook township, AR +station = ('kllq', 0.0039566994458205542) +zone = ('arz069', 0.0038182037465109881) + +[fips0504391344] +centroid = (0.58749695502989319, -1.5975748786016606) +description = Franklin township, AR +station = ('kllq', 0.0031712257307965962) +zone = ('arz069', 0.0029740499217346147) + +[fips0504392238] +centroid = (0.58899491876700238, -1.5981864768781444) +description = Live Oak township, AR +station = ('kllq', 0.0032883652312485851) +zone = ('arz069', 0.0035125924289892891) + +[fips0504392382] +centroid = (0.58669314364288716, -1.6018372693410035) +description = Marion township, AR +station = ('kllq', 0.00052313054033899416) +zone = ('arz069', 0.00096035110530927033) + +[fips0504393300] +centroid = (0.58683243837048882, -1.6042307440640184) +description = Saline township, AR +station = ('kllq', 0.0024140349345765952) +zone = ('arz069', 0.002903570721263266) + +[fips0504393471] +centroid = (0.5889021545172588, -1.6011384395085049) +description = Spring Hill township, AR +station = ('kllq', 0.0018971468160277883) +zone = ('arz069', 0.0026683156464955785) + +[fips0504393786] +centroid = (0.58415381175428316, -1.6025266220356638) +description = Veasey township, AR +station = ('kllq', 0.0030249285739093776) +zone = ('arz069', 0.0025330641797931567) + +[fips0504420] +centroid = (0.58866351564863373, -1.6164969529536197) +description = Bearden city, AR +station = ('kcdh', 0.0028992981581579388) +zone = ('arz067', 0.0034067488052084254) + +[fips05045] +centroid = (0.61341963227806406, -1.6113691930645528) +description = Faulkner County, AR +station = ('klrf', 0.0047223931061260108) +zone = ('arz032', 0.00010685633918259481) + +[fips0504540] +centroid = (0.63663118487935733, -1.6366456097972955) +description = Beaver town, AR +station = ('krog', 0.0049764641217223612) +zone = ('arz002', 0.0040548350304420219) + +[fips0504590225] +centroid = (0.61069541766179636, -1.6149879761889303) +description = Benedict township, AR +station = ('klrf', 0.0056134123466564101) +zone = ('arz032', 0.0039542964501213529) + +[fips0504590240] +centroid = (0.61645769200042566, -1.6096870447314806) +description = Benton township, AR +station = ('kcca', 0.0058090604917265939) +zone = ('arz032', 0.0033693385226393011) + +[fips0504590483] +centroid = (0.61367560226616169, -1.6080988125654585) +description = Bristol township, AR +station = ('klrf', 0.0042686799950806395) +zone = ('arz032', 0.0027908912808894031) + +[fips0504590600] +centroid = (0.6124110937697993, -1.6132664706812256) +description = Cadron township, AR +station = ('klrf', 0.0050410974383922336) +zone = ('arz032', 0.0017691117562451321) + +[fips0504590618] +centroid = (0.61643898207084435, -1.6113581625836801) +description = California township, AR +station = ('kcca', 0.0052153665047347175) +zone = ('arz032', 0.0030103134179200706) + +[fips0504590876] +centroid = (0.61424892547214927, -1.6138106119821203) +description = Clifton township, AR +station = ('klrf', 0.0066031954986707506) +zone = ('arz032', 0.0020589728016284395) + +[fips0504591002] +centroid = (0.61195327645370856, -1.6086850163013258) +description = Cypress township, AR +station = ('klrf', 0.0025599187232731102) +zone = ('arz032', 0.0027356252311478892) + +[fips0504591014] +centroid = (0.61012764460282998, -1.6126199309131171) +description = Danley township, AR +station = ('klrf', 0.003596420615952636) +zone = ('arz032', 0.0034282823896845892) + +[fips0504591188] +centroid = (0.61264152959093998, -1.6107260566884856) +description = Eagle township, AR +station = ('klrf', 0.0037839628196500003) +zone = ('arz032', 0.0010113785301173563) + +[fips0504591199] +centroid = (0.61382140707187327, -1.6123901408637995) +description = East Fork township, AR +station = ('klrf', 0.0055274570170059179) +zone = ('arz032', 0.00082652688141275686) + +[fips0504591251] +centroid = (0.61468171476676636, -1.6094080538505493) +description = Enola township, AR +station = ('klrf', 0.005345494972470795) +zone = ('arz032', 0.0021179220715210746) + +[fips0504591599] +centroid = (0.61486436347298745, -1.6119082554573239) +description = Hardin township, AR +station = ('klrf', 0.006193643285016784) +zone = ('arz032', 0.0014719664787165778) + +[fips0504591635] +centroid = (0.613646141108388, -1.610569011962391) +description = Harve township, AR +station = ('klrf', 0.0046180350216550687) +zone = ('arz032', 0.00079037618708172757) + +[fips0504592427] +centroid = (0.61511506256674398, -1.6104247954062987) +description = Matthews township, AR +station = ('klrf', 0.0059584338330614002) +zone = ('arz032', 0.001899289769359027) + +[fips0504592589] +centroid = (0.61642510670329087, -1.6082865925396803) +description = Mountain township, AR +station = ('kcca', 0.0065235639529248237) +zone = ('arz032', 0.0039813495559095141) + +[fips0504592637] +centroid = (0.61504064172743889, -1.6082337439699299) +description = Mount Vernon township, AR +station = ('klrf', 0.0056302964344558714) +zone = ('arz032', 0.0031164783957533799) + +[fips0504592685] +centroid = (0.61330323627024874, -1.6091852625715324) +description = Newton township, AR +station = ('klrf', 0.0039562678846456686) +zone = ('arz032', 0.00189639948852817) + +[fips0504592814] +centroid = (0.61173509284391681, -1.6104704706728235) +description = Palarm township, AR +station = ('klrf', 0.0029161797865669596) +zone = ('arz032', 0.0018931478149216737) + +[fips0504592892] +centroid = (0.61114496211723246, -1.6134830311348134) +description = Pine Mountain township, AR +station = ('klrf', 0.0045719553334831837) +zone = ('arz032', 0.0028037595426370653) + +[fips0504593678] +centroid = (0.61540473486269753, -1.6135911891885595) +description = Union township, AR +station = ('kcca', 0.0059325446638718859) +zone = ('arz032', 0.0026111802710320699) + +[fips0504593825] +centroid = (0.61686819344049471, -1.6130401363838274) +description = Walker township, AR +station = ('kcca', 0.0044887919726778538) +zone = ('arz032', 0.0036604650737389788) + +[fips0504594083] +centroid = (0.61033179576543584, -1.6106128895397862) +description = Wilson township, AR +station = ('klrf', 0.0020923874701637936) +zone = ('arz032', 0.0031828562224999655) + +[fips0504600] +centroid = (0.61212943253511232, -1.6039760656195676) +description = Beebe city, AR +station = ('ksrc', 0.0033758631519785589) +zone = ('arz033', 0.0039002420724798975) + +[fips05047] +centroid = (0.61974151153476043, -1.6386490034324894) +description = Franklin County, AR +station = ('kfsm', 0.0074677649498976553) +zone = ('arz020', 7.7212273043495208e-05) + +[fips0504720] +centroid = (0.61828775698760441, -1.5902456127540057) +description = Beedeville town, AR +station = ('km19', 0.0038063760098757241) +zone = ('arz025', 0.0033560956918265257) + +[fips0504790021] +centroid = (0.61828192758790268, -1.6358380459523978) +description = Alix township, AR +station = ('krue', 0.0094295770680094711) +zone = ('arz020', 0.002785294345965104) + +[fips0504790111] +centroid = (0.61782095122586589, -1.6386261221659959) +description = Barham township, AR +station = ('kfsm', 0.0069300920290046655) +zone = ('arz020', 0.0019865230776351292) + +[fips0504790336] +centroid = (0.62161452907483072, -1.6408213972991543) +description = Black Oak township, AR +station = ('kfsm', 0.0070506580517225269) +zone = ('arz020', 0.0024992865537646495) + +[fips0504790411] +centroid = (0.6227398824699315, -1.6381666642404082) +description = Boston township, AR +station = ('kfyv', 0.0070670195264380961) +zone = ('arz020', 0.0029652201226855091) + +[fips0504790885] +centroid = (0.6237587533273683, -1.6358638942786197) +description = Cobb township, AR +station = ('kfyv', 0.0076984855087639621) +zone = ('arz020', 0.0045754388157765637) + +[fips0504790954] +centroid = (0.62042274844839884, -1.6388990218478376) +description = Cravens township, AR +station = ('kfsm', 0.0075922955889608321) +zone = ('arz020', 0.00063709750892083222) + +[fips0504791123] +centroid = (0.61628139629268164, -1.6396905112103246) +description = Donald township, AR +station = ('kfsm', 0.0059847981941360999) +zone = ('arz020', 0.0036163984367567591) + +[fips0504791551] +centroid = (0.61836100845631048, -1.6396674030510283) +description = Grover township, AR +station = ('kfsm', 0.0062164970167133023) +zone = ('arz020', 0.0016462716490664151) + +[fips0504791740] +centroid = (0.61834352025720551, -1.6365627066578257) +description = Hogan township, AR +station = ('kfsm', 0.0086774556538460491) +zone = ('arz020', 0.0022739020611875498) + +[fips0504791803] +centroid = (0.61719404641184206, -1.6399094976715722) +description = Hurricane township, AR +station = ('kfsm', 0.0058132665013491281) +zone = ('arz020', 0.002792156912453098) + +[fips0504791845] +centroid = (0.61935158752657238, -1.6405788139864197) +description = Ivy township, AR +station = ('kfsm', 0.0058811091990546294) +zone = ('arz020', 0.0015957336923898731) + +[fips0504792205] +centroid = (0.62264493655862307, -1.6356701278250632) +description = Limestone township, AR +station = ('kfyv', 0.0085246600186081947) +zone = ('arz020', 0.00375859659281951) + +[fips0504792316] +centroid = (0.62266176153261232, -1.6366332703194837) +description = McIlroy township, AR +station = ('kfyv', 0.0079468845273599695) +zone = ('arz020', 0.0033131289028198473) + +[fips0504792454] +centroid = (0.6183945362312413, -1.6377876834466305) +description = Middle township, AR +station = ('kfsm', 0.0077105704982405382) +zone = ('arz020', 0.0015956114481206283) + +[fips0504792472] +centroid = (0.61833357188046911, -1.6411129370974076) +description = Mill Creek township, AR +station = ('kfsm', 0.0050826969182678839) +zone = ('arz020', 0.0024558352931816655) + +[fips0504792496] +centroid = (0.62150274073624046, -1.6416579336096351) +description = Miller township, AR +station = ('kfsm', 0.0064978184293811581) +zone = ('arz019', 0.0026207641044366649) + +[fips0504792559] +centroid = (0.62366447064117558, -1.6379959710395635) +description = Morgan township, AR +station = ('kfyv', 0.0064566358292721679) +zone = ('arz020', 0.0039001386045952658) + +[fips0504792592] +centroid = (0.62143990888316869, -1.6363441914354759) +description = Mountain township, AR +station = ('kfyv', 0.0090094443378848123) +zone = ('arz020', 0.0025181513880165687) + +[fips0504792649] +centroid = (0.62036499550345048, -1.6402750568834028) +description = Mulberry township, AR +station = ('kfsm', 0.0066073938689906212) +zone = ('arz020', 0.0013981081156465331) + +[fips0504792988] +centroid = (0.61573910504079454, -1.6411611954512253) +description = Prairie township, AR +station = ('kfsm', 0.0048647200673940178) +zone = ('arz029', 0.0037263973376972792) + +[fips0504793369] +centroid = (0.62260447982656186, -1.6397666250190042) +description = Shores township, AR +station = ('kfyv', 0.0064731103350328788) +zone = ('arz020', 0.0029292506233840961) + +[fips0504793387] +centroid = (0.61516150577813955, -1.6396405249805475) +description = Six Mile township, AR +station = ('kfsm', 0.0062039401405253646) +zone = ('arz030', 0.0032973506646397734) + +[fips0504793828] +centroid = (0.62160463305797187, -1.6389020761740287) +description = Walker township, AR +station = ('kfyv', 0.0076871308343074689) +zone = ('arz020', 0.0018055636144122386) + +[fips0504793840] +centroid = (0.61937026254956873, -1.6391064018695596) +description = Wallace township, AR +station = ('kfsm', 0.0069789374305489664) +zone = ('arz020', 0.00054750850899183668) + +[fips0504793936] +centroid = (0.62112850723802782, -1.6375797798261327) +description = Watalula township, AR +station = ('kfyv', 0.0086544278358580921) +zone = ('arz020', 0.0016057354877343111) + +[fips0504793954] +centroid = (0.6173119957626918, -1.6411871484972023) +description = Weaver township, AR +station = ('kfsm', 0.0047899208660157691) +zone = ('arz020', 0.0032137907185091747) + +[fips0504794005] +centroid = (0.61996004421040263, -1.6368945635617997) +description = White Oak township, AR +station = ('kfyv', 0.0099375296824700879) +zone = ('arz020', 0.0014776080748103179) + +[fips0504794032] +centroid = (0.62132403647412882, -1.6395892297538315) +description = White Rock township, AR +station = ('kfsm', 0.0076195938483886233) +zone = ('arz020', 0.0016810604102728099) + +[fips0504794107] +centroid = (0.61698251250650027, -1.6381612537197272) +description = Wittich township, AR +station = ('kfsm', 0.0072234709177686676) +zone = ('arz020', 0.0028579747909508197) + +[fips0504840] +centroid = (0.63650660327734987, -1.6452999296130644) +description = Bella Vista town, AR +station = ('kvbt', 0.002204321021958357) +zone = ('arz001', 0.0022736041016934118) + +[fips05049] +centroid = (0.63501087356168329, -1.6025480372255856) +description = Fulton County, AR +station = ('kuno', 0.0087977473183048806) +zone = ('arz006', 3.3159105052839161e-05) + +[fips0504900] +centroid = (0.63180461645930708, -1.6239918680005814) +description = Bellefonte town, AR +station = ('khro', 0.0018523988477520646) +zone = ('arz003', 0.0019967231301114491) + +[fips0504960] +centroid = (0.61246305222163111, -1.6309312621999257) +description = Belleville city, AR +station = ('krue', 0.0056517581786089312) +zone = ('arz038', 0.0016274364691833915) + +[fips0504990006] +centroid = (0.63494219485561731, -1.5970469688628099) +description = Afton township, AR +station = ('karg', 0.009316666455851913) +zone = ('arz007', 0.0038270572793030304) + +[fips0504990243] +centroid = (0.63481841610506584, -1.6030603262676311) +description = Benton township, AR +station = ('kbpk', 0.0086867225408733886) +zone = ('arz006', 0.0004554535533986079) + +[fips0504990258] +centroid = (0.63413649851301912, -1.6076514846781722) +description = Big Creek township, AR +station = ('kbpk', 0.0050243369119635792) +zone = ('arz005', 0.0032701744384005956) + +[fips0504990855] +centroid = (0.63357781861945583, -1.6059580440648398) +description = Cleveland township, AR +station = ('kbpk', 0.0064572559758300438) +zone = ('arz006', 0.0030959241581419825) + +[fips0504991392] +centroid = (0.63510567984665156, -1.6056288575146209) +description = Fulton township, AR +station = ('kbpk', 0.0066285886259193723) +zone = ('arz006', 0.0024965384757440305) + +[fips0504992361] +centroid = (0.63637997964011761, -1.5976530693521498) +description = Mammoth Spring township, AR +station = ('kuno', 0.0089260383145199507) +zone = ('arz006', 0.0041676471030140877) + +[fips0504992619] +centroid = (0.63662308655162803, -1.6054902260121351) +description = Mount Calm township, AR +station = ('kbpk', 0.0069897066894098513) +zone = ('arz006', 0.0028922011467598738) + +[fips0504992658] +centroid = (0.63491397288161244, -1.599181576351169) +description = Myatt township, AR +station = ('kuno', 0.0096182552652333345) +zone = ('arz006', 0.0026979719574297401) + +[fips0504992922] +centroid = (0.63326456692530775, -1.5994654541540057) +description = Pleasant Ridge township, AR +station = ('kbvx', 0.0096008129473324332) +zone = ('arz006', 0.0030076001107142382) + +[fips0504993429] +centroid = (0.63525895466156179, -1.600918702555679) +description = South Fork township, AR +station = ('kuno', 0.0088203876501194642) +zone = ('arz006', 0.0013279550860269523) + +[fips0504993498] +centroid = (0.63359857058426194, -1.6019472599904643) +description = Strawberry township, AR +station = ('kbpk', 0.0096518345172498313) +zone = ('arz006', 0.0014598546541440254) + +[fips0504993681] +centroid = (0.63338738574477071, -1.6036444530616885) +description = Union township, AR +station = ('kbpk', 0.0083271366260878488) +zone = ('arz006', 0.001827960694346848) + +[fips0504993798] +centroid = (0.63609488010680437, -1.6074532327284381) +description = Vidette township, AR +station = ('kbpk', 0.0053275051922208969) +zone = ('arz005', 0.0043250450560880114) + +[fips0504993909] +centroid = (0.6364133503354158, -1.6033605403522666) +description = Washington township, AR +station = ('kuno', 0.0073378966653859859) +zone = ('arz006', 0.0015805223954308799) + +[fips0504994086] +centroid = (0.63654210327433547, -1.6004577960068123) +description = Wilson township, AR +station = ('kuno', 0.007721717748851672) +zone = ('arz006', 0.0022854294348426509) + +[fips05051] +centroid = (0.60351497603945903, -1.6257203548252941) +description = Garland County, AR +station = ('khot', 0.0017985627998951931) +zone = ('arz042', 6.2694411144557737e-05) + +[fips0505191581] +centroid = (0.60447574488609679, -1.6266223933426023) +description = Hale township, AR +station = ('khot', 0.0029858122322239168) +zone = ('arz042', 0.0012150621994178122) + +[fips0505191773] +centroid = (0.60203977139579579, -1.6239919203604589) +description = Hot Springs township, AR +station = ('khot', 0.00077394751311382864) +zone = ('arz042', 0.0020588565008905616) + +[fips0505192100] +centroid = (0.60093501288586848, -1.6246628249249255) +description = Lake Hamilton township, AR +station = ('khot', 0.00093367309987035373) +zone = ('arz042', 0.0027041458358376203) + +[fips0505194047] +centroid = (0.60334269458899459, -1.6231505494879499) +description = Whittington township, AR +station = ('khot', 0.0020775058014697854) +zone = ('arz042', 0.0021702506178293349) + +[fips0505260] +centroid = (0.59038948919922329, -1.6427320092313127) +description = Ben Lomond town, AR +station = ('kdeq', 0.0056054680798856751) +zone = ('arz059', 0.0027449245814403713) + +[fips0505290] +centroid = (0.60348989565810784, -1.6156963704257299) +description = Benton city, AR +station = ('klit', 0.0055791425432275858) +zone = ('arz043', 0.0019209733133125609) + +[fips05053] +centroid = (0.59843959348124454, -1.6131028286105589) +description = Grant County, AR +station = ('klit', 0.0082409447165989087) +zone = ('arz055', 3.4257503840641904e-05) + +[fips0505320] +centroid = (0.6345807197142368, -1.6446086046963495) +description = Bentonville city, AR +station = ('kvbt', 0.00023296832072248656) +zone = ('arz001', 0.00052323438235606188) + +[fips0505390624] +centroid = (0.59689033451741924, -1.6132794733841531) +description = Calvert township, AR +station = ('kpbf', 0.007234882928412038) +zone = ('arz055', 0.001590304699899918) + +[fips0505391023] +centroid = (0.59744259159933522, -1.6107741230560855) +description = Darysaw township, AR +station = ('kpbf', 0.0052227276357709601) +zone = ('arz055', 0.0021784240759405342) + +[fips0505391032] +centroid = (0.5979403245954189, -1.6145332131990306) +description = Davis township, AR +station = ('klit', 0.0091531694582497446) +zone = ('arz055', 0.0013016919050334406) + +[fips0505391050] +centroid = (0.60051684945038308, -1.6149980990985919) +description = Dekalb township, AR +station = ('klit', 0.0071357200638131448) +zone = ('arz055', 0.0025771200043335088) + +[fips0505391287] +centroid = (0.59940015288837212, -1.6167110699462541) +description = Fenter township, AR +station = ('khot', 0.0071866086856037913) +zone = ('arz055', 0.0031262325307806903) + +[fips0505391347] +centroid = (0.60078065596682206, -1.6127499404890981) +description = Franklin township, AR +station = ('klit', 0.0059571162860475799) +zone = ('arz055', 0.0023248881807451365) + +[fips0505392334] +centroid = (0.59546296934855314, -1.6109521466397887) +description = Madison township, AR +station = ('kpbf', 0.0054299102230373052) +zone = ('arz055', 0.0034938237201442147) + +[fips0505392451] +centroid = (0.59903963767808011, -1.6127347212180208) +description = Merry Green township, AR +station = ('klit', 0.0075744968644209402) +zone = ('arz055', 0.00064011498928373892) + +[fips0505393192] +centroid = (0.59915020428619392, -1.6153751774834855) +description = River township, AR +station = ('khot', 0.0083097551438939335) +zone = ('arz055', 0.0020004761860257327) + +[fips0505393384] +centroid = (0.60102395486454996, -1.6106059082227784) +description = Simpson township, AR +station = ('klit', 0.0052319483401179461) +zone = ('arz055', 0.0032758039564718755) + +[fips0505393591] +centroid = (0.59705546011795041, -1.6162867105919245) +description = Tennessee township, AR +station = ('km89', 0.0069068911279690825) +zone = ('arz055', 0.0029943322610015513) + +[fips0505393912] +centroid = (0.59913360620500744, -1.610383954701802) +description = Washington township, AR +station = ('kpbf', 0.0054494170488544455) +zone = ('arz055', 0.0023355378167451771) + +[fips0505440] +centroid = (0.63377767627210169, -1.6233520477500929) +description = Bergman town, AR +station = ('khro', 0.0021117614348443187) +zone = ('arz003', 0.0011314190593415929) + +[fips05055] +centroid = (0.6304115644635353, -1.5806616433121619) +description = Greene County, AR +station = ('k4m9', 0.0050317168159207861) +zone = ('arz018', 9.4868890815806117e-05) + +[fips0505560] +centroid = (0.63480022977426009, -1.6331128364984562) +description = Berryville city, AR +station = ('kbbg', 0.0058919805854084637) +zone = ('arz002', 0.00069771937401986008) + +[fips0505590360] +centroid = (0.63136348449086555, -1.5753543064963573) +description = Blue Cane township, AR +station = ('kbyh', 0.0056939652683947548) +zone = ('moz113', 0.0029391092615346903) + +[fips0505590456] +centroid = (0.63230381553196258, -1.5797078906891169) +description = Breckenridge township, AR +station = ('k4m9', 0.0035804850722647675) +zone = ('arz018', 0.0020483898087131805) + +[fips0505590510] +centroid = (0.62971971594804466, -1.584072400642994) +description = Bryan township, AR +station = ('karg', 0.0023867102557302532) +zone = ('arz018', 0.0029165510538207082) + +[fips0505590576] +centroid = (0.62931609110522846, -1.582398507717284) +description = Cache township, AR +station = ('kjbr', 0.0039120026427780508) +zone = ('arz018', 0.0018268327266025789) + +[fips0505590804] +centroid = (0.62955382240264268, -1.5789995488121953) +description = Clark township, AR +station = ('kjbr', 0.0048622036545589832) +zone = ('arz018', 0.0014997849839264025) + +[fips0505590903] +centroid = (0.6282834495999936, -1.5795497289523013) +description = Collier township, AR +station = ('kjbr', 0.0035584863911616014) +zone = ('arz018', 0.0022416655620872417) + +[fips0505590984] +centroid = (0.63191806286068664, -1.581692277688757) +description = Crowley township, AR +station = ('k4m9', 0.0034010617252896416) +zone = ('arz018', 0.0017977059276371777) + +[fips0505591257] +centroid = (0.63076721020521409, -1.5831115445298936) +description = Evening Shade township, AR +station = ('karg', 0.0029774260637335606) +zone = ('arz018', 0.0021026588016569456) + +[fips0505591389] +centroid = (0.63077337121747379, -1.578462353921724) +description = Friendship township, AR +station = ('k4m9', 0.0054115680989424812) +zone = ('arz018', 0.0017366084863348627) + +[fips0505591644] +centroid = (0.62899109334521475, -1.5774591735742625) +description = Hays township, AR +station = ('kjbr', 0.0052150066365138914) +zone = ('arz018', 0.0028578590591873876) + +[fips0505591764] +centroid = (0.63249929240818581, -1.5774720715574346) +description = Hopewell township, AR +station = ('k4m9', 0.0046898319302203922) +zone = ('arz009', 0.0023034085856920026) + +[fips0505591806] +centroid = (0.63174016145003087, -1.5782820614099928) +description = Hurricane township, AR +station = ('k4m9', 0.0047269369254463586) +zone = ('arz018', 0.0022882348986865645) + +[fips0505591992] +centroid = (0.6320738509497198, -1.5837555186640022) +description = Jones township, AR +station = ('karg', 0.0028390832071210842) +zone = ('arz018', 0.0030938458250362529) + +[fips0505592088] +centroid = (0.63012780883374608, -1.5767587903987297) +description = Lake township, AR +station = ('kjbr', 0.0064215076539936716) +zone = ('arz018', 0.0030762168962359566) + +[fips0505592358] +centroid = (0.62830921065975298, -1.5781914439152294) +description = Main Shore township, AR +station = ('kjbr', 0.0043172416526024056) +zone = ('arz018', 0.0028120416772950642) + +[fips0505592940] +centroid = (0.62836630037958574, -1.5816730616136927) +description = Poland township, AR +station = ('kjbr', 0.002980835804466384) +zone = ('arz018', 0.0022008371820957076) + +[fips0505593120] +centroid = (0.63122275859327726, -1.5768512753957928) +description = Reynolds township, AR +station = ('k4m9', 0.0058995361974718673) +zone = ('arz018', 0.0031089800471062485) + +[fips0505593270] +centroid = (0.6281452718831132, -1.5805451425845911) +description = St. Francis township, AR +station = ('kjbr', 0.00302558588662153) +zone = ('arz018', 0.0022275241084467302) + +[fips0505593288] +centroid = (0.62833971901507779, -1.5832494429940938) +description = Salem township, AR +station = ('kjbr', 0.0030645072267477839) +zone = ('arz018', 0.0029799021450468643) + +[fips0505593348] +centroid = (0.62823306194448847, -1.5847325016193909) +description = Shady Grove township, AR +station = ('karg', 0.0029326897929467946) +zone = ('arz026', 0.0037024896876832222) + +[fips0505593468] +centroid = (0.62924489912503967, -1.580520498535553) +description = Spring Grove township, AR +station = ('kjbr', 0.0040534307784753825) +zone = ('arz018', 0.0011282180519026587) + +[fips0505593516] +centroid = (0.63026157086761891, -1.5818774222158085) +description = Sugar Creek township, AR +station = ('kjbr', 0.0048566079186034743) +zone = ('arz018', 0.0010745111939872338) + +[fips0505593687] +centroid = (0.63083149068156519, -1.5801396502394753) +description = Union township, AR +station = ('k4m9', 0.0047507446489855713) +zone = ('arz018', 0.00056803112602667736) + +[fips0505593867] +centroid = (0.62901289250757197, -1.5845858416023459) +description = Walnut Corner township, AR +station = ('karg', 0.0024194213977311706) +zone = ('arz018', 0.0035305983651931533) + +[fips05057] +centroid = (0.58867531407437712, -1.6347767635941373) +description = Hempstead County, AR +station = ('ktxk', 0.0067050385200776684) +zone = ('arz060', 0.00012431552793574254) + +[fips0505740] +centroid = (0.63215973860221031, -1.6426396464072972) +description = Bethel Heights city, AR +station = ('kasg', 0.00064145627731899057) +zone = ('arz001', 0.0028734259237089424) + +[fips0505790387] +centroid = (0.58531007493043685, -1.6327015671135161) +description = Bodcaw township, AR +station = ('ktxk', 0.0065263701907995542) +zone = ('arz060', 0.0039055143756284187) + +[fips0505790396] +centroid = (0.5869250106340147, -1.6373171950401701) +description = Bois d'Arc township, AR +station = ('ktxk', 0.0039931679108438202) +zone = ('arz060', 0.0027934866752612375) + +[fips0505791077] +centroid = (0.58752927852764014, -1.6329928451123814) +description = De Roan township, AR +station = ('ktxk', 0.0071472113863301793) +zone = ('arz060', 0.0019785915709016641) + +[fips0505791431] +centroid = (0.58969259668219465, -1.6327164896786208) +description = Garland township, AR +station = ('ktxk', 0.0086400385200319681) +zone = ('arz060', 0.0019676951182765676) + +[fips0505792499] +centroid = (0.59212155394890253, -1.6369387902050452) +description = Mine Creek township, AR +station = ('ktxk', 0.0087719298856824592) +zone = ('arz060', 0.0037637589042201639) + +[fips0505792700] +centroid = (0.58939416283339607, -1.631779754015783) +description = Noland township, AR +station = ('km89', 0.0084596198696184829) +zone = ('arz060', 0.0025997163871464904) + +[fips0505792802] +centroid = (0.58977555218154176, -1.6351751699024901) +description = Ozan township, AR +station = ('ktxk', 0.0073417106819802253) +zone = ('arz060', 0.0010247140902920576) + +[fips0505793072] +centroid = (0.59221924002713666, -1.6341505918183994) +description = Redland township, AR +station = ('km89', 0.0086680127686726768) +zone = ('arz060', 0.0034705382608209807) + +[fips0505793303] +centroid = (0.5887145316226694, -1.6372454969144985) +description = Saline township, AR +station = ('ktxk', 0.0055300880887030066) +zone = ('arz060', 0.0020170310545498601) + +[fips0505793474] +centroid = (0.58557642962758361, -1.634704506963105) +description = Springhill township, AR +station = ('ktxk', 0.0050027293983856891) +zone = ('arz060', 0.0032188609674358793) + +[fips0505793849] +centroid = (0.59154152867858734, -1.6322429469459696) +description = Wallaceburg township, AR +station = ('km89', 0.0075029766205485576) +zone = ('arz060', 0.0034844679947417297) + +[fips0505793942] +centroid = (0.58726932918884811, -1.6351867414354309) +description = Water Creek township, AR +station = ('ktxk', 0.0054991927016688359) +zone = ('arz060', 0.0015543908478841512) + +[fips05059] +centroid = (0.59891282205463015, -1.6221813856076102) +description = Hot Spring County, AR +station = ('khot', 0.0036947368223817908) +zone = ('arz054', 5.1503000513560106e-05) + +[fips0505920] +centroid = (0.61083317649965618, -1.616717806917167) +description = Bigelow town, AR +station = ('klrf', 0.0070273627912097736) +zone = ('arz031', 0.0047162819189411993) + +[fips0505980] +centroid = (0.62843464747309385, -1.6128726720420983) +description = Big Flat town, AR +station = ('kflp', 0.0056678997434063882) +zone = ('arz014', 0.0044107605550326992) + +[fips0505990039] +centroid = (0.59880007378495137, -1.6230261598721603) +description = Antioch township, AR +station = ('khot', 0.0034179973686585688) +zone = ('arz054', 0.00068911625421855098) + +[fips0505990261] +centroid = (0.59898137858764855, -1.6181050469665297) +description = Big Creek township, AR +station = ('khot', 0.0062978608330833919) +zone = ('arz054', 0.0033935172163566027) + +[fips0505990318] +centroid = (0.59930398524658723, -1.6264661340146711) +description = Bismarck township, AR +station = ('khot', 0.0028524894007085425) +zone = ('arz054', 0.0035288637835258845) + +[fips0505990498] +centroid = (0.5965184397604042, -1.6222712002509176) +description = Brown Springs township, AR +station = ('km89', 0.0021711120591420435) +zone = ('arz054', 0.0024388797165590908) + +[fips0505990567] +centroid = (0.6007729067049431, -1.619651321417334) +description = Butterfield township, AR +station = ('khot', 0.0044607174664078432) +zone = ('arz054', 0.0027877278865993033) + +[fips0505990837] +centroid = (0.59710645863869372, -1.6181871472545435) +description = Clear Creek township, AR +station = ('km89', 0.0054305323531220993) +zone = ('arz054', 0.0038076065676462367) + +[fips0505991080] +centroid = (0.59940146188531107, -1.6243430631526679) +description = De Roche township, AR +station = ('khot', 0.0024892508240117795) +zone = ('arz054', 0.0018137410617198426) + +[fips0505991131] +centroid = (0.59831052638305948, -1.6192666857567795) +description = Dover township, AR +station = ('km89', 0.0052323179074178676) +zone = ('arz054', 0.0025189020243921263) + +[fips0505991290] +centroid = (0.60006011423842875, -1.6204478024214817) +description = Fenter township, AR +station = ('khot', 0.004085277566569327) +zone = ('arz054', 0.0018283470705445551) + +[fips0505991455] +centroid = (0.6000689281511512, -1.6182067996619209) +description = Gifford township, AR +station = ('khot', 0.005801207709486258) +zone = ('arz054', 0.0034900753192307972) + +[fips0505991617] +centroid = (0.59696159631077816, -1.6196203767296962) +description = Harrison township, AR +station = ('km89', 0.0042819431595438303) +zone = ('arz054', 0.00292832466743639) + +[fips0505991662] +centroid = (0.59989746700543534, -1.6289653931436494) +description = Henderson township, AR +station = ('khot', 0.0038780938508022719) +zone = ('arz042', 0.004439094293304512) + +[fips0505992259] +centroid = (0.59932335840128426, -1.6220213563684946) +description = Lone Hill township, AR +station = ('khot', 0.0034667633646219545) +zone = ('arz054', 0.00039945092293987555) + +[fips0505992352] +centroid = (0.60163101528497864, -1.6203639742575084) +description = Magnet township, AR +station = ('khot', 0.003746817299641493) +zone = ('arz054', 0.0030791059575422395) + +[fips0505992457] +centroid = (0.59850493860843912, -1.6208124366088084) +description = Midway township, AR +station = ('km89', 0.004428153763387347) +zone = ('arz054', 0.0012426276275971698) + +[fips0505992535] +centroid = (0.59796488137799453, -1.6250725584201235) +description = Montgomery township, AR +station = ('km89', 0.00288232571797328) +zone = ('arz054', 0.0025618255663035091) + +[fips0505992781] +centroid = (0.59744025285813751, -1.6215414955439513) +description = Ouachita township, AR +station = ('km89', 0.0032375557519338954) +zone = ('arz054', 0.0016151366265753692) + +[fips0505992991] +centroid = (0.59764977963483945, -1.6230887299258443) +description = Prairie township, AR +station = ('km89', 0.0026940390457016361) +zone = ('arz054', 0.0014937174550708051) + +[fips0505993306] +centroid = (0.60132455292162101, -1.618530697864506) +description = Saline township, AR +station = ('khot', 0.005278351725672684) +zone = ('arz043', 0.0034755266538690254) + +[fips0505993756] +centroid = (0.59891880853396451, -1.6283635338043916) +description = Valley township, AR +station = ('khot', 0.0040912541709649582) +zone = ('arz053', 0.004941143937409141) + +[fips0506040] +centroid = (0.63410382594942183, -1.5848613592780658) +description = Biggers town, AR +station = ('k4m9', 0.0024958282221453965) +zone = ('arz008', 0.003125174413775278) + +[fips05061] +centroid = (0.59486369309658849, -1.6404522078024801) +description = Howard County, AR +station = ('kdeq', 0.0059418108970441955) +zone = ('arz051', 0.00010247312415774664) + +[fips0506190327] +centroid = (0.59018486679771964, -1.6384043257246526) +description = Blackland township, AR +station = ('ktxk', 0.0065685357438279432) +zone = ('arz060', 0.0032866280457367783) + +[fips0506190354] +centroid = (0.59120799625853115, -1.6407471858993596) +description = Blue Bayou township, AR +station = ('kdeq', 0.0064563433911878779) +zone = ('arz051', 0.0037579115448903751) + +[fips0506190369] +centroid = (0.59650267943725876, -1.6411761703762071) +description = Blue Ridge township, AR +station = ('kdeq', 0.0057554343161583515) +zone = ('arz051', 0.0016426354277134655) + +[fips0506190465] +centroid = (0.59423328017076804, -1.6382162490444576) +description = Brewer township, AR +station = ('kdeq', 0.0077675842419312286) +zone = ('arz051', 0.0020221973115377386) + +[fips0506190531] +centroid = (0.59093359559353265, -1.6382469319327078) +description = Buck Range township, AR +station = ('ktxk', 0.0073267880600488911) +zone = ('arz060', 0.0035608255818504958) + +[fips0506190552] +centroid = (0.59727484800492603, -1.641613375353832) +description = Burg township, AR +station = ('kdeq', 0.0057810146151456524) +zone = ('arz051', 0.0024931614013816781) + +[fips0506190747] +centroid = (0.59364632594332245, -1.6403511881453747) +description = Center Point township, AR +station = ('kdeq', 0.0060335325153914399) +zone = ('arz051', 0.0013190673947805925) + +[fips0506190822] +centroid = (0.59746393697608713, -1.6399765881280191) +description = Clay township, AR +station = ('kmez', 0.0064568524273144069) +zone = ('arz051', 0.0025402673102330334) + +[fips0506190933] +centroid = (0.5927130285791109, -1.6393461228423212) +description = County Line township, AR +station = ('kdeq', 0.0070131078630987975) +zone = ('arz051', 0.0024402223181284339) + +[fips0506191104] +centroid = (0.59177629291627298, -1.639653126257747) +description = Dillard township, AR +station = ('kdeq', 0.0070440509723953878) +zone = ('arz051', 0.0032592449492051564) + +[fips0506191152] +centroid = (0.59819725451460504, -1.6443055806316182) +description = Duckett township, AR +station = ('kmez', 0.0047334661402061804) +zone = ('arz040', 0.0037009832789559119) + +[fips0506191350] +centroid = (0.59043458850709496, -1.6399959787360088) +description = Franklin township, AR +station = ('ktxk', 0.0066273989748723569) +zone = ('arz059', 0.004510743830493249) + +[fips0506191749] +centroid = (0.59558065690001516, -1.6397449305764018) +description = Holly Creek township, AR +station = ('kdeq', 0.0066258391720819291) +zone = ('arz051', 0.00087757890996918307) + +[fips0506192337] +centroid = (0.59498405100180596, -1.6412981339843367) +description = Madison township, AR +station = ('kdeq', 0.0052592772922601281) +zone = ('arz051', 0.00066613465703650688) + +[fips0506192505] +centroid = (0.59112881067036815, -1.6394817698317861) +description = Mineral Springs township, AR +station = ('ktxk', 0.0073492578349305055) +zone = ('arz051', 0.0039221684484045862) + +[fips0506192595] +centroid = (0.59896214505929157, -1.6403044656812988) +description = Mountain township, AR +station = ('kmez', 0.0050756747455179023) +zone = ('arz051', 0.0040051709017157608) + +[fips0506192643] +centroid = (0.59570377242545081, -1.6383100953983372) +description = Muddy Fork township, AR +station = ('kmwt', 0.0083820438023404827) +zone = ('arz051', 0.0019553992891835144) + +[fips0506192661] +centroid = (0.59261689584391108, -1.6383136733233039) +description = Nashville township, AR +station = ('ktxk', 0.0089608647938488155) +zone = ('arz051', 0.0029592150473235082) + +[fips0506193309] +centroid = (0.59216801461359059, -1.6409144233482857) +description = Saline township, AR +station = ('kdeq', 0.0059265145057721454) +zone = ('arz051', 0.0028136738067249989) + +[fips0506193324] +centroid = (0.58939016602940897, -1.6385656814139993) +description = Saratoga township, AR +station = ('ktxk', 0.0057654232208869238) +zone = ('arz060', 0.0031692928112694641) + +[fips0506193615] +centroid = (0.59023637146394592, -1.6388126978630342) +description = Tollette township, AR +station = ('ktxk', 0.0065449537491557254) +zone = ('arz060', 0.0036172210122665796) + +[fips0506193663] +centroid = (0.59835004063732466, -1.643102106299198) +description = Umpire township, AR +station = ('kmez', 0.0046587429706555173) +zone = ('arz040', 0.0037477488844680205) + +[fips05063] +centroid = (0.62373702397818098, -1.598022450835042) +description = Independence County, AR +station = ('kbvx', 0.0012779424678848841) +zone = ('arz016', 0.00015613902244684044) + +[fips0506340] +centroid = (0.6188841708995958, -1.5753608340277598) +description = Birdsong town, AR +station = ('kawm', 0.0057059784243444376) +zone = ('arz036', 0.0044419049136736402) + +[fips0506390069] +centroid = (0.62566650291955328, -1.5992071279714182) +description = Ashley township, AR +station = ('kbvx', 0.0020266599671880346) +zone = ('arz016', 0.0020329575226421784) + +[fips0506390123] +centroid = (0.62656651685492915, -1.5977119218545273) +description = Barren township, AR +station = ('kbvx', 0.0032791125873535701) +zone = ('arz016', 0.0027872665635605308) + +[fips0506390250] +centroid = (0.62323679516126695, -1.5950370302429207) +description = Big Bottom-Wycough-Logan township, AR +station = ('km19', 0.0032636735804299397) +zone = ('arz016', 0.0026259464940288379) + +[fips0506390343] +centroid = (0.62559709117520146, -1.5934326188747323) +description = Black River-Marshell township, AR +station = ('km19', 0.00399121724009686) +zone = ('arz016', 0.0042572499774621618) + +[fips0506390994] +centroid = (0.62597460589240783, -1.6015123413941599) +description = Cushman-Union township, AR +station = ('kbvx', 0.0027852489548491829) +zone = ('arz016', 0.0034554066833973251) + +[fips0506391074] +centroid = (0.62057017641031487, -1.5957366803801676) +description = Departee township, AR +station = ('km19', 0.0038599305340969695) +zone = ('arz025', 0.0031357673460555265) + +[fips0506391128] +centroid = (0.62539088052407832, -1.5954551238652359) +description = Dota township, AR +station = ('kbvx', 0.0037757148942300805) +zone = ('arz016', 0.0027289593312824971) + +[fips0506391272] +centroid = (0.62089810632347209, -1.5995053872872915) +description = Fairview township, AR +station = ('kbvx', 0.002767155471197086) +zone = ('arz016', 0.003097621749204949) + +[fips0506391401] +centroid = (0.62525832276738935, -1.5972549073898923) +description = Gainsboro township, AR +station = ('kbvx', 0.0024784545462069162) +zone = ('arz016', 0.0016394400249130604) + +[fips0506391509] +centroid = (0.62369953430584824, -1.6014135906650819) +description = Greenbrier township, AR +station = ('kbvx', 0.001477232028061295) +zone = ('arz016', 0.0026151084108635785) + +[fips0506391725] +centroid = (0.62054928481916849, -1.5973046318202819) +description = Hill township, AR +station = ('kbvx', 0.0036284337902084589) +zone = ('arz016', 0.0033368643585312786) + +[fips0506391794] +centroid = (0.62215312022870362, -1.5990282491763812) +description = Huff township, AR +station = ('kbvx', 0.0015795731955710189) +zone = ('arz016', 0.0017869884994693268) + +[fips0506391923] +centroid = (0.62675569309255286, -1.600021742946494) +description = Jefferson township, AR +station = ('kbvx', 0.0031107454375935914) +zone = ('arz016', 0.003300083347360724) + +[fips0506392169] +centroid = (0.62097734427151252, -1.6013569721841472) +description = Liberty township, AR +station = ('kbvx', 0.0030448613679384001) +zone = ('arz016', 0.0038220732745147378) + +[fips0506392313] +centroid = (0.62320218528219984, -1.5995288968723158) +description = McHue township, AR +station = ('kbvx', 0.00046517091097749883) +zone = ('arz016', 0.0012406379365023162) + +[fips0506392346] +centroid = (0.62301868136464511, -1.5968202680462682) +description = Magness township, AR +station = ('kbvx', 0.0023430050664796759) +zone = ('arz016', 0.0013660423382262877) + +[fips0506392550] +centroid = (0.62435551630521025, -1.5981881000343487) +description = Moorefield township, AR +station = ('kbvx', 0.0013341638991812919) +zone = ('arz016', 0.00054868632531346806) + +[fips0506392739] +centroid = (0.62151253203334411, -1.5964497695526549) +description = Oil Trough township, AR +station = ('kbvx', 0.0033400036359186379) +zone = ('arz016', 0.0026967865167078584) + +[fips0506393111] +centroid = (0.62215418487954732, -1.600969055304599) +description = Relief township, AR +station = ('kbvx', 0.001878103952139225) +zone = ('arz016', 0.0027944258395718041) + +[fips0506393234] +centroid = (0.62209690317349686, -1.5979780845654563) +description = Rosie township, AR +station = ('kbvx', 0.0020444723732971704) +zone = ('arz016', 0.0017189614185259723) + +[fips0506393249] +centroid = (0.62473159985242988, -1.6001580880676598) +description = Ruddell township, AR +station = ('kbvx', 0.0011612070117494949) +zone = ('arz016', 0.0018421569261680218) + +[fips0506393285] +centroid = (0.62338853408643524, -1.5987409854347956) +description = Salado township, AR +station = ('kbvx', 0.00074558891815178869) +zone = ('arz016', 0.00060974871979538369) + +[fips0506393915] +centroid = (0.62481321144825319, -1.6023398892589928) +description = Washington township, AR +station = ('kbvx', 0.0025066237453801928) +zone = ('arz016', 0.0035107522482803861) + +[fips0506394011] +centroid = (0.62371503282960583, -1.597188864130997) +description = White River township, AR +station = ('kbvx', 0.0019531876792109747) +zone = ('arz016', 0.0008214146724936837) + +[fips05065] +centroid = (0.62997448165895831, -1.6041953836933731) +description = Izard County, AR +station = ('kbvx', 0.0073283258816972596) +zone = ('arz015', 3.1942751424305548e-06) + +[fips0506590072] +centroid = (0.62930926686785316, -1.6061326991630869) +description = Athens township, AR +station = ('kbvx', 0.0077408434694170728) +zone = ('arz015', 0.0017043229904015684) + +[fips0506590087] +centroid = (0.63226170073711185, -1.6027026733973124) +description = Baker township, AR +station = ('kbvx', 0.0089577981031139804) +zone = ('arz015', 0.0025835030315349557) + +[fips0506590129] +centroid = (0.62767897226685776, -1.6012033483033867) +description = Barren Fork township, AR +station = ('kbvx', 0.0042212054847541201) +zone = ('arz015', 0.0033332702267532431) + +[fips0506590306] +centroid = (0.62850480970902389, -1.6011133416738614) +description = Big Spring township, AR +station = ('kbvx', 0.0049945559407391198) +zone = ('arz015', 0.0028903349494508058) + +[fips0506590513] +centroid = (0.63230723637729636, -1.6075552297699247) +description = Bryan township, AR +station = ('kbpk', 0.0056153530783936909) +zone = ('arz015', 0.0035798555658351182) + +[fips0506590798] +centroid = (0.63005844944927181, -1.606597689782403) +description = Claiborne township, AR +station = ('kbpk', 0.0074774072799653132) +zone = ('arz015', 0.0019460752926266909) + +[fips0506591149] +centroid = (0.62779163327007403, -1.602288297326304) +description = Drytown township, AR +station = ('kbvx', 0.0046693560644613706) +zone = ('arz015', 0.0026711643548919914) + +[fips0506591353] +centroid = (0.63080227386988674, -1.601659682089613) +description = Franklin township, AR +station = ('kbvx', 0.0073312262862813317) +zone = ('arz015', 0.0022062019121927207) + +[fips0506591452] +centroid = (0.62804383334698721, -1.6031960605235587) +description = Gid township, AR +station = ('kbvx', 0.0052632125385512398) +zone = ('arz015', 0.0020920474464421867) + +[fips0506591557] +centroid = (0.62749770237074576, -1.6046444918164964) +description = Guion township, AR +station = ('kbvx', 0.00560840821637757) +zone = ('arz015', 0.0025040969383412544) + +[fips0506591572] +centroid = (0.63205110930956621, -1.6058203899467349) +description = Guthrie township, AR +station = ('kbpk', 0.0069983889194908224) +zone = ('arz015', 0.0024577919486723195) + +[fips0506591926] +centroid = (0.63193645863100278, -1.6010673522480714) +description = Jefferson township, AR +station = ('kbvx', 0.0083576085667618153) +zone = ('arz015', 0.0031955329151327917) + +[fips0506592061] +centroid = (0.63003239168353953, -1.6029975293211445) +description = Lacrosse township, AR +station = ('kbvx', 0.0069389582307028451) +zone = ('arz015', 0.0009664382446286187) + +[fips0506592079] +centroid = (0.62705184056003127, -1.6030263447070947) +description = Lafferty township, AR +station = ('kbvx', 0.0043838343485361536) +zone = ('arz015', 0.0030711897423448464) + +[fips0506592301] +centroid = (0.62836485175630652, -1.604685000908435) +description = Lunenburg township, AR +station = ('kbvx', 0.0062540920140472618) +zone = ('arz015', 0.0016587103857205279) + +[fips0506592475] +centroid = (0.62939522433351391, -1.6041531641787674) +description = Mill Creek township, AR +station = ('kbvx', 0.0068177382621088939) +zone = ('arz015', 0.0005804494910264037) + +[fips0506592622] +centroid = (0.62830259586188797, -1.6068429085423082) +description = Mount Olive township, AR +station = ('kbvx', 0.0074846362011201269) +zone = ('arz015', 0.0027188715182198957) + +[fips0506592673] +centroid = (0.63061440662920198, -1.6050550979763205) +description = Newburg township, AR +station = ('kbpk', 0.0081927124309492515) +zone = ('arz015', 0.00094647483905555983) + +[fips0506592679] +centroid = (0.63207807464650956, -1.6043069625924531) +description = New Hope township, AR +station = ('kbpk', 0.0081306190110520954) +zone = ('arz015', 0.0021052931806163477) + +[fips0506592916] +centroid = (0.62944344778074657, -1.6012762157996574) +description = Pleasant Hill township, AR +station = ('kbvx', 0.005937562320389167) +zone = ('arz015', 0.0024152774048911926) + +[fips0506593264] +centroid = (0.62901311940037485, -1.6026342913972191) +description = Sage township, AR +station = ('kbvx', 0.0058886200406326195) +zone = ('arz015', 0.001584057633778631) + +[fips0506593501] +centroid = (0.6301929270681379, -1.6007412723839214) +description = Strawberry township, AR +station = ('kbvx', 0.0065943570912619688) +zone = ('arz015', 0.0027961899343318295) + +[fips0506593693] +centroid = (0.63100447026373019, -1.6078743283170669) +description = Union township, AR +station = ('kbpk', 0.006081991398302301) +zone = ('arz015', 0.0031479428084085731) + +[fips0506593816] +centroid = (0.63113418313373848, -1.6031214826046212) +description = Violet Hill township, AR +station = ('kbvx', 0.007997035483203109) +zone = ('arz015', 0.001446005348742619) + +[fips0506594014] +centroid = (0.62761120113200297, -1.6066830014762408) +description = White River township, AR +station = ('kbvx', 0.0069710075796453287) +zone = ('arz014', 0.0022450759454211572) + +[fips0506610] +centroid = (0.62546683725312513, -1.5772139024544798) +description = Black Oak town, AR +station = ('kjbr', 0.0039948118067181185) +zone = ('arz028', 0.0046184077491492649) + +[fips05067] +centroid = (0.62127795978187605, -1.5921448102328559) +description = Jackson County, AR +station = ('km19', 0.00097744343356401275) +zone = ('arz025', 0.00013114611785233174) + +[fips0506700] +centroid = (0.63017236708954949, -1.5901254119284207) +description = Black Rock city, AR +station = ('karg', 0.0027314308538805387) +zone = ('arz017', 0.0011330277399929237) + +[fips0506730] +centroid = (0.60142562493860408, -1.635578410772871) +description = Black Springs town, AR +station = ('kmwt', 0.0024341591123695676) +zone = ('arz041', 0.0015802385247618944) + +[fips0506790126] +centroid = (0.61938141520348899, -1.5976718316416088) +description = Barren township, AR +station = ('kbvx', 0.00455916401498274) +zone = ('arz016', 0.0044457912826070343) + +[fips0506790147] +centroid = (0.62110683024871804, -1.5940671507775874) +description = Bateman township, AR +station = ('km19', 0.0023997597473191423) +zone = ('arz025', 0.0016992249624817185) + +[fips0506790315] +centroid = (0.6240855313232192, -1.5914606062594889) +description = Bird township, AR +station = ('km19', 0.0020967846014602913) +zone = ('arz025', 0.0027927443828556619) + +[fips0506790459] +centroid = (0.61850730195421266, -1.5920550654027181) +description = Breckenridge township, AR +station = ('km19', 0.0035349189259138761) +zone = ('arz025', 0.0028198622596068957) + +[fips0506790516] +centroid = (0.6195429977856387, -1.5933363465131924) +description = Bryan township, AR +station = ('km19', 0.0029457475438248761) +zone = ('arz025', 0.002091082229184233) + +[fips0506790579] +centroid = (0.61986794318577487, -1.5912266274199667) +description = Cache township, AR +station = ('km19', 0.0021252251362139448) +zone = ('arz025', 0.0015871151288466704) + +[fips0506790948] +centroid = (0.61813052027529214, -1.5899535842635619) +description = Cow Lake township, AR +station = ('km19', 0.0040188927262738037) +zone = ('arz025', 0.0036024460932976557) + +[fips0506791467] +centroid = (0.61931840881749201, -1.5954044220504655) +description = Glaize township, AR +station = ('km19', 0.0042624655375650246) +zone = ('arz025', 0.0034247968559993468) + +[fips0506791470] +centroid = (0.62549272048593219, -1.5901959581367866) +description = Glass township, AR +station = ('km19', 0.0036186255942075095) +zone = ('arz017', 0.0035471803839253425) + +[fips0506791554] +centroid = (0.62239100860575047, -1.5899866931594722) +description = Grubbs township, AR +station = ('km19', 0.0011572317753745492) +zone = ('arz025', 0.0019487098491561723) + +[fips0506791929] +centroid = (0.62277327061852228, -1.5931927233690457) +description = Jefferson township, AR +station = ('km19', 0.0017081480337474821) +zone = ('arz025', 0.0017434872514863911) + +[fips0506793165] +centroid = (0.62052036471346295, -1.5897237767609518) +description = Richwoods township, AR +station = ('km19', 0.0019638307344464435) +zone = ('arz025', 0.00201568222924864) + +[fips0506793696] +centroid = (0.6212130684402869, -1.5927230378140416) +description = Union township, AR +station = ('km19', 0.001378788827410448) +zone = ('arz025', 0.00060273485388765867) + +[fips0506793804] +centroid = (0.62199862368331704, -1.5913579983527641) +description = Village township, AR +station = ('km19', 2.9004538978108372e-05) +zone = ('arz025', 0.00084832165307889204) + +[fips05069] +centroid = (0.59825865519769017, -1.6044934161164437) +description = Jefferson County, AR +station = ('kpbf', 0.0016473772019936076) +zone = ('arz056', 0.00015569155101625954) + +[fips0506990120] +centroid = (0.60120946591074453, -1.6084083467082997) +description = Barraque township, AR +station = ('klit', 0.0051266017643880456) +zone = ('arz056', 0.0044742058969965345) + +[fips0506990390] +centroid = (0.59769601340672474, -1.6015311036836188) +description = Bogy township, AR +station = ('kpbf', 0.0027136826763325033) +zone = ('arz056', 0.0024934389347863206) + +[fips0506990399] +centroid = (0.60117468149875231, -1.6065654710044113) +description = Bolivar township, AR +station = ('kpbf', 0.0048601649281426141) +zone = ('arz056', 0.0035099279633092804) + +[fips0506991155] +centroid = (0.60110256449405985, -1.6037528380082373) +description = Dudley Lake township, AR +station = ('kpbf', 0.0045375946307904397) +zone = ('arz056', 0.0030631768052762701) + +[fips0506991161] +centroid = (0.59960823104179484, -1.6015869716729749) +description = Dunnington township, AR +station = ('kpbf', 0.0038641935496194759) +zone = ('arz056', 0.0028430943176310378) + +[fips0506991932] +centroid = (0.59972279445389576, -1.6080973290355942) +description = Jefferson township, AR +station = ('kpbf', 0.0042806009647662268) +zone = ('arz056', 0.0033785285242455818) + +[fips0506992448] +centroid = (0.5955264993333258, -1.6041188859122584) +description = Melton township, AR +station = ('kpbf', 0.0011396370801845916) +zone = ('arz056', 0.0025968471831598746) + +[fips0506992694] +centroid = (0.59637572418746865, -1.6074349242245849) +description = Niven township, AR +station = ('kpbf', 0.0024071268553706917) +zone = ('arz056', 0.0029740515090973612) + +[fips0506992748] +centroid = (0.59685424110848795, -1.5996178213977048) +description = Old River township, AR +station = ('kpbf', 0.0040781937265657988) +zone = ('arz056', 0.0042310560786551167) + +[fips0506992832] +centroid = (0.59959458256704423, -1.6062071549089769) +description = Pastoria township, AR +station = ('kpbf', 0.003285898969222786) +zone = ('arz056', 0.0020481404595747276) + +[fips0506992925] +centroid = (0.59896984196129288, -1.6038539274785129) +description = Plum Bayou township, AR +station = ('kpbf', 0.0024252326401642365) +zone = ('arz056', 0.0010208656263846706) + +[fips0506993135] +centroid = (0.59586423799687926, -1.6021334866216519) +description = Richland township, AR +station = ('kpbf', 0.002126453020918493) +zone = ('arz056', 0.0029779620648800959) + +[fips0506993210] +centroid = (0.60108240594119933, -1.601468882695785) +description = Roberts township, AR +station = ('ksgt', 0.0039207243142562274) +zone = ('arz056', 0.0038944710653027017) + +[fips0506993450] +centroid = (0.59652721876654169, -1.6086893447178707) +description = Spring township, AR +station = ('kpbf', 0.003434188359724246) +zone = ('arz056', 0.0038001512764264424) + +[fips0506993570] +centroid = (0.59499424372463761, -1.6082300962317932) +description = Talladega township, AR +station = ('kpbf', 0.00345660404339248) +zone = ('arz063', 0.0034061038577594873) + +[fips0506993783] +centroid = (0.5973277314812615, -1.6058457495807663) +description = Vaugine township, AR +station = ('kpbf', 0.0012961600033773769) +zone = ('arz056', 0.0013511631592711389) + +[fips0506993795] +centroid = (0.59688527306258843, -1.6040118274159409) +description = Victoria township, AR +station = ('kpbf', 0.0005150152892113921) +zone = ('arz056', 0.001285165175112865) + +[fips0506993807] +centroid = (0.59590794104134903, -1.5976224039171922) +description = Villemont township, AR +station = ('kpbf', 0.0057664806963588638) +zone = ('arz057', 0.0034825334330391916) + +[fips0506993918] +centroid = (0.59819343224354316, -1.6081036994873641) +description = Washington township, AR +station = ('kpbf', 0.0033446370694924644) +zone = ('arz056', 0.0029733040020511253) + +[fips0506994041] +centroid = (0.59521057728542226, -1.6058456274077189) +description = Whiteville township, AR +station = ('kpbf', 0.0017697464036885214) +zone = ('arz056', 0.0030974024482797393) + +[fips0507030] +centroid = (0.5911643630272313, -1.6332343637742726) +description = Blevins city, AR +station = ('km89', 0.0084060757779699982) +zone = ('arz060', 0.0027129197649135282) + +[fips05071] +centroid = (0.62087224054395762, -1.6312950586292116) +description = Johnson County, AR +station = ('krue', 0.0076813528572001405) +zone = ('arz021', 0.00010745735469759058) + +[fips0507150] +centroid = (0.63698320033619193, -1.630091305044111) +description = Blue Eye town, AR +station = ('kbbg', 0.002829618866745738) +zone = ('arz002', 0.0033576799066959381) + +[fips0507190150] +centroid = (0.62143104261056847, -1.6347253461943736) +description = Batson township, AR +station = ('kfyv', 0.0099143694483745694) +zone = ('arz021', 0.0029458046568995029) + +[fips0507191099] +centroid = (0.6231848716160201, -1.634116435724938) +description = Dickerson-Hill township, AR +station = ('kfyv', 0.0091883556052102886) +zone = ('arz021', 0.0033613025869905461) + +[fips0507191491] +centroid = (0.61828112473644681, -1.6349121313309221) +description = Grant township, AR +station = ('krue', 0.0087181042522810198) +zone = ('arz030', 0.0037084687106806115) + +[fips0507191683] +centroid = (0.61971630898036167, -1.6278968676689936) +description = Hickey township, AR +station = ('krue', 0.0051092401574249456) +zone = ('arz021', 0.0028910371147133885) + +[fips0507191770] +centroid = (0.62033202623388017, -1.6332138212489764) +description = Horsehead township, AR +station = ('krue', 0.0084827930503952632) +zone = ('arz021', 0.0017214324559591157) + +[fips0507191782] +centroid = (0.61729969119146533, -1.6296813970159878) +description = Howell township, AR +station = ('krue', 0.0044163390230540648) +zone = ('arz021', 0.003722292925605991) + +[fips0507192046] +centroid = (0.62023530008673466, -1.6320853960743922) +description = King township, AR +station = ('krue', 0.0077047248384201203) +zone = ('arz021', 0.00093568147649278474) + +[fips0507192142] +centroid = (0.61936027926624737, -1.6350215983816072) +description = Lee township, AR +station = ('krue', 0.0092288925641380391) +zone = ('arz021', 0.0034462286256364536) + +[fips0507192292] +centroid = (0.6214395074574407, -1.6324988994807745) +description = Low Gap township, AR +station = ('krue', 0.0087692629821048834) +zone = ('arz021', 0.0012388548646912062) + +[fips0507192322] +centroid = (0.61789725702076304, -1.6286273403208307) +description = McKennon township, AR +station = ('krue', 0.004045016823654682) +zone = ('arz021', 0.0035840743146825318) + +[fips0507192652] +centroid = (0.62273089402428372, -1.6323847025878166) +description = Mulberry township, AR +station = ('krue', 0.0096659901293083307) +zone = ('arz021', 0.0021502208022617952) + +[fips0507192847] +centroid = (0.62186707821759424, -1.6282218305224223) +description = Perry township, AR +station = ('krue', 0.0071685070712385604) +zone = ('arz021', 0.0026273809915920506) + +[fips0507192910] +centroid = (0.618202619826692, -1.6295597475671235) +description = Pittsburg township, AR +station = ('krue', 0.0048255222927751492) +zone = ('arz021', 0.0029279620057881882) + +[fips0507192994] +centroid = (0.61844803057281506, -1.6326282981915174) +description = Prairie township, AR +station = ('krue', 0.0070774464269722399) +zone = ('arz021', 0.0026436151527238008) + +[fips0507193078] +centroid = (0.62069104046101542, -1.6305172701013526) +description = Red Lick township, AR +station = ('krue', 0.0071266440192150815) +zone = ('arz021', 0.00055559764404685536) + +[fips0507193360] +centroid = (0.62266327996906157, -1.6305772221611585) +description = Sherman township, AR +station = ('krue', 0.0087547130056696617) +zone = ('arz021', 0.0019123964040859082) + +[fips0507193447] +centroid = (0.61912418857833007, -1.631470429312452) +description = Spadra township, AR +station = ('krue', 0.006623718528701401) +zone = ('arz021', 0.0017072780919195204) + +[fips0507193495] +centroid = (0.6202712538693258, -1.6347768857671852) +description = Stonewall township, AR +station = ('krue', 0.0094991778037679369) +zone = ('arz021', 0.0029740679089963452) + +[fips0507193876] +centroid = (0.61849471813030577, -1.6338766798455915) +description = Ward township, AR +station = ('krue', 0.0080165268822571089) +zone = ('arz021', 0.0031928258408951272) + +[fips0507210] +centroid = (0.61316568687189899, -1.6356656946887631) +description = Blue Mountain town, AR +station = ('kmwt', 0.010332684256489654) +zone = ('arz030', 0.0014572587872349804) + +[fips0507270] +centroid = (0.58874491780494664, -1.6253302562841807) +description = Bluff City town, AR +station = ('kcdh', 0.0055782326733043895) +zone = ('arz061', 0.0029090090000182364) + +[fips05073] +centroid = (0.58015896253597832, -1.6338313885515021) +description = Lafayette County, AR +station = ('ktxk', 0.0065358588413298507) +zone = ('arz071', 6.3443991050542503e-05) + +[fips0507330] +centroid = (0.62714224861528445, -1.5691383338186722) +description = Blytheville city, AR +station = ('kbyh', 0.00087041047697045918) +zone = ('arz028', 0.0036211625502791198) + +[fips0507390090] +centroid = (0.5827740940739965, -1.6319978852656971) +description = Baker township, AR +station = ('ktxk', 0.0070221344875687347) +zone = ('arz071', 0.0029972689494177558) + +[fips0507391386] +centroid = (0.57724035314762334, -1.6330293923069181) +description = French township, AR +station = ('kmne', 0.0083540094714534986) +zone = ('arz071', 0.0029836480671327384) + +[fips0507391578] +centroid = (0.58261364595586074, -1.6309888231586565) +description = Hadley township, AR +station = ('ktxk', 0.0078792976612542497) +zone = ('arz071', 0.0033704149397349504) + +[fips0507392082] +centroid = (0.58352214219140131, -1.6334157558434321) +description = La Grange township, AR +station = ('ktxk', 0.0057673832150212699) +zone = ('arz071', 0.0033727073474799445) + +[fips0507392409] +centroid = (0.58053359745991884, -1.6328855946298464) +description = Mars Hill township, AR +station = ('ktxk', 0.0070212760090010906) +zone = ('arz071', 0.0008172260143205415) + +[fips0507393201] +centroid = (0.57789212890348807, -1.6354381561141806) +description = Roane township, AR +station = ('ktxk', 0.0071901984819555693) +zone = ('arz071', 0.0026707544225735699) + +[fips0507393258] +centroid = (0.58365021445191267, -1.6350511991657211) +description = Russell township, AR +station = ('ktxk', 0.0043981877546859192) +zone = ('arz071', 0.0036528504092016145) + +[fips0507393489] +centroid = (0.58160620700502452, -1.6342327095597058) +description = Steel township, AR +station = ('ktxk', 0.0055399142970792969) +zone = ('arz071', 0.0014988465805698624) + +[fips0507393834] +centroid = (0.57851948750311755, -1.6322610285570203) +description = Walker Creek township, AR +station = ('ktxk', 0.008565828986321411) +zone = ('arz071', 0.002064002308712207) + +[fips0507450] +centroid = (0.58579609676723965, -1.6300159766335949) +description = Bodcaw town, AR +station = ('ktxk', 0.0088165340417628631) +zone = ('arz061', 0.0021518743088428335) + +[fips05075] +centroid = (0.62903582613394327, -1.5900150722131097) +description = Lawrence County, AR +station = ('karg', 0.0030597753786774438) +zone = ('arz017', 8.400182530295587e-05) + +[fips0507540] +centroid = (0.61491223785436966, -1.6478735048615925) +description = Bonanza city, AR +station = ('kfsm', 0.0019061965298168958) +zone = ('arz029', 0.002105811622000867) + +[fips0507590033] +centroid = (0.63090037882714134, -1.5926034653069876) +description = Annieville township, AR +station = ('karg', 0.004697519118794455) +zone = ('arz017', 0.0027375442953560414) + +[fips0507590066] +centroid = (0.62765139606467635, -1.5886619358973311) +description = Ashland township, AR +station = ('karg', 0.0033531387883586937) +zone = ('arz017', 0.0018208946132485602) + +[fips0507590342] +centroid = (0.62921020197950994, -1.590862970617021) +description = Black River township, AR +station = ('karg', 0.0035868134844764458) +zone = ('arz017', 0.0006254279560108509) + +[fips0507590345] +centroid = (0.63058306051583624, -1.5904902730085504) +description = Black Rock township, AR +station = ('karg', 0.002985055597825209) +zone = ('arz017', 0.0015726173912989222) + +[fips0507590381] +centroid = (0.62886350977689387, -1.587872087144341) +description = Boas township, AR +station = ('karg', 0.0019832914510102984) +zone = ('arz017', 0.0018253362340686975) + +[fips0507590582] +centroid = (0.6301856141385721, -1.5854245770276845) +description = Cache township, AR +station = ('karg', 0.0011989147601300378) +zone = ('arz017', 0.0039635537053361522) + +[fips0507590627] +centroid = (0.63003527147680538, -1.5870771769365202) +description = Campbell township, AR +station = ('karg', 0.00065149132003856501) +zone = ('arz017', 0.0026526510821506489) + +[fips0507591065] +centroid = (0.63146082150324923, -1.5916554373638891) +description = Dent township, AR +station = ('karg', 0.0040079794553152023) +zone = ('arz017', 0.0027211211582839315) + +[fips0507591137] +centroid = (0.6269628636747645, -1.5870007489685753) +description = Dowell township, AR +station = ('karg', 0.0036865233384638929) +zone = ('arz017', 0.0032677657606425682) + +[fips0507591173] +centroid = (0.62955155347461511, -1.5894937423655389) +description = Duty township, AR +station = ('karg', 0.0024394616141785136) +zone = ('arz017', 0.00071955316894002587) + +[fips0507591206] +centroid = (0.62900627770970707, -1.591981307788529) +description = Eaton township, AR +station = ('karg', 0.0045002795180990327) +zone = ('arz017', 0.0015063379940799477) + +[fips0507591299] +centroid = (0.63018905243719858, -1.592017732810018) +description = Flat Creek township, AR +station = ('karg', 0.0042433173933500937) +zone = ('arz017', 0.0019176343870874707) + +[fips0507591959] +centroid = (0.62877442817187212, -1.5937765010972527) +description = Jesup township, AR +station = ('karg', 0.0059444785163743344) +zone = ('arz017', 0.0029696626842156647) + +[fips0507592127] +centroid = (0.62818845132880752, -1.5902491732256796) +description = Lawrence township, AR +station = ('karg', 0.0037193570244662827) +zone = ('arz017', 0.00085740308109263376) + +[fips0507592385] +centroid = (0.62696049002698184, -1.5901361107967353) +description = Marion township, AR +station = ('karg', 0.0045695347976258422) +zone = ('arz017', 0.0020789085019932642) + +[fips0507592562] +centroid = (0.62757269916870395, -1.5921919864825371) +description = Morgan township, AR +station = ('karg', 0.0053370305170896319) +zone = ('arz017', 0.0022280219575174275) + +[fips0507593039] +centroid = (0.6282942706413559, -1.5862150890057902) +description = Promised Land township, AR +station = ('karg', 0.0023976647829479108) +zone = ('arz017', 0.0032441427812449158) + +[fips0507593108] +centroid = (0.62720776827540436, -1.5936035913282576) +description = Reeds Creek township, AR +station = ('km19', 0.0055343239024860796) +zone = ('arz017', 0.0033622665813720499) + +[fips0507593168] +centroid = (0.63057316449897749, -1.5882924147880988) +description = Richwoods township, AR +station = ('karg', 0.0012114401647085108) +zone = ('arz017', 0.0021286735178311306) + +[fips0507593477] +centroid = (0.63164497119262708, -1.5935388047064238) +description = Spring River township, AR +station = ('karg', 0.0055354319561804373) +zone = ('arz007', 0.0025441818051939223) + +[fips0507593504] +centroid = (0.62998835702651168, -1.5935394853848319) +description = Strawberry township, AR +station = ('karg', 0.0054878255152078902) +zone = ('arz017', 0.0029232622992374862) + +[fips0507593603] +centroid = (0.63257969972682515, -1.5927147125935095) +description = Thacker township, AR +station = ('karg', 0.0051541459593869429) +zone = ('arz007', 0.0034726601597498108) + +[fips0507630] +centroid = (0.6267231776085882, -1.5847076481308426) +description = Bono city, AR +station = ('kjbr', 0.0024599311791845295) +zone = ('arz026', 0.0026908413039986563) + +[fips05077] +centroid = (0.60702115052049788, -1.5843974682161781) +description = Lee County, AR +station = ('kuta', 0.0064449728970113335) +zone = ('arz049', 4.1611449280576953e-05) + +[fips0507720] +centroid = (0.61330428346779986, -1.6391897413413425) +description = Booneville city, AR +station = ('kfsm', 0.007225269375729656) +zone = ('arz030', 0.0031736607953669733) + +[fips0507790264] +centroid = (0.605508630737427, -1.588056812792372) +description = Big Creek township, AR +station = ('ksgt', 0.0084526360653077899) +zone = ('arz049', 0.0033381786584687325) + +[fips0507790930] +centroid = (0.60778373723057166, -1.5792599170300077) +description = Council township, AR +station = ('kuta', 0.0031846472654108379) +zone = ('msz007', 0.0033788740697998664) + +[fips0507791302] +centroid = (0.60842017154231143, -1.5885089403351014) +description = Fleener township, AR +station = ('ksgt', 0.0091228274946739563) +zone = ('arz049', 0.0036121767375345052) + +[fips0507791593] +centroid = (0.60707052588503674, -1.5886437844731103) +description = Hampton township, AR +station = ('ksgt', 0.0084331451951260086) +zone = ('arz047', 0.0031781838486574935) + +[fips0507791602] +centroid = (0.60581085195070239, -1.5809894161456866) +description = Hardy township, AR +station = ('kuta', 0.0034488294181247128) +zone = ('arz049', 0.003092305511927732) + +[fips0507791821] +centroid = (0.60675631425980014, -1.5831984270200581) +description = Independence township, AR +station = ('kuta', 0.0054250913972664306) +zone = ('arz049', 0.0010613113855764634) + +[fips0507792733] +centroid = (0.6070811898467664, -1.5863283085143669) +description = Oak Forest township, AR +station = ('kuta', 0.0079981827322944867) +zone = ('arz049', 0.0015476400878011165) + +[fips0507793138] +centroid = (0.60523923916738165, -1.5840400073320773) +description = Richland township, AR +station = ('kuta', 0.0059195771672319398) +zone = ('arz049', 0.0018272864427676672) + +[fips0507793273] +centroid = (0.60720739460497819, -1.5805677096918196) +description = St. Francis township, AR +station = ('kuta', 0.0036101011582164114) +zone = ('arz049', 0.0031888398956191597) + +[fips0507793459] +centroid = (0.6055476388462091, -1.5863257603336589) +description = Spring Creek township, AR +station = ('kckm', 0.0088003630688793695) +zone = ('arz049', 0.0021457848225059474) + +[fips0507793600] +centroid = (0.60830553831704048, -1.5857479516314938) +description = Texas township, AR +station = ('kuta', 0.0079113632197965935) +zone = ('arz049', 0.0016602301817076018) + +[fips0507793699] +centroid = (0.60853661991000452, -1.5837204200927444) +description = Union township, AR +station = ('kuta', 0.0065140459070369633) +zone = ('arz049', 0.0016141614136035241) + +[fips05079] +centroid = (0.59267306053924018, -1.6009490538313713) +description = Lincoln County, AR +station = ('kpbf', 0.0049353625018679946) +zone = ('arz064', 8.2219951758720399e-05) + +[fips0507990075] +centroid = (0.59434599353386186, -1.5973364491725455) +description = Auburn township, AR +station = ('kpbf', 0.0063790682651821582) +zone = ('arz064', 0.0035036751171709508) + +[fips0507990135] +centroid = (0.59395060664511501, -1.6017111867558396) +description = Bartholomew township, AR +station = ('kpbf', 0.0035447223697787733) +zone = ('arz064', 0.0013934529088146146) + +[fips0507990639] +centroid = (0.5923462650900968, -1.6023187533217511) +description = Cane Creek township, AR +station = ('kpbf', 0.0046452483358531763) +zone = ('arz064', 0.0011026936276752031) + +[fips0507990786] +centroid = (0.59403434754262574, -1.5999818970796711) +description = Choctaw township, AR +station = ('kpbf', 0.0045696361465314599) +zone = ('arz064', 0.0016255336600733421) + +[fips0507991488] +centroid = (0.59330776697502052, -1.5981115149867713) +description = Gould township, AR +station = ('kpbf', 0.0062653083987306837) +zone = ('arz064', 0.0025173305292827877) + +[fips0507992043] +centroid = (0.59564394253869246, -1.6000088100567367) +description = Kimbrough township, AR +station = ('kpbf', 0.0038719933842565526) +zone = ('arz064', 0.0030959506882815156) + +[fips0507992262] +centroid = (0.59054164700341227, -1.6025845495135373) +description = Lone Pine township, AR +station = ('kllq', 0.0036779701201301142) +zone = ('arz064', 0.002481343585781913) + +[fips0507992478] +centroid = (0.59045734760054092, -1.6044434996998367) +description = Mill Creek township, AR +station = ('kllq', 0.0043047615918876594) +zone = ('arz064', 0.0035832965604150296) + +[fips0507992793] +centroid = (0.59206987474975104, -1.604514202987835) +description = Owen township, AR +station = ('kpbf', 0.0045418890449304954) +zone = ('arz064', 0.0029375241803081681) + +[fips0507993414] +centroid = (0.5906382509775101, -1.6000231915697731) +description = Smith township, AR +station = ('kllq', 0.0037874978276925511) +zone = ('arz064', 0.0022028263993299235) + +[fips0507993453] +centroid = (0.59411058352435275, -1.6039806209289151) +description = Spring township, AR +station = ('kpbf', 0.0025435539331049905) +zone = ('arz064', 0.0028258521939493039) + +[fips0507993963] +centroid = (0.59170328579366216, -1.5991519581137625) +description = Wells Bayou township, AR +station = ('kllq', 0.0050310588293613805) +zone = ('arz064', 0.0018466496731452643) + +[fips05081] +centroid = (0.58816717891595149, -1.6446198097101474) +description = Little River County, AR +station = ('ktxk', 0.0056395269997233412) +zone = ('arz059', 6.8010600711312474e-05) + +[fips0508190057] +centroid = (0.58763986258904644, -1.6455574529441961) +description = Arden township, AR +station = ('ktxk', 0.0058056820165706341) +zone = ('arz059', 0.00089850791774333813) + +[fips0508190063] +centroid = (0.58968327662398889, -1.6485241810600286) +description = Arkinda township, AR +station = ('kdeq', 0.0046660671740928117) +zone = ('arz059', 0.0035162592436604962) + +[fips0508190555] +centroid = (0.58919091924200129, -1.6457674160532112) +description = Burke township, AR +station = ('kdeq', 0.0053137525585364685) +zone = ('arz059', 0.0013425180457991702) + +[fips0508190648] +centroid = (0.59177360510922494, -1.6482286095512033) +description = Caney township, AR +station = ('kdeq', 0.0025661010544014064) +zone = ('arz050', 0.0032450211304575066) + +[fips0508190858] +centroid = (0.58903279241177064, -1.642206054261224) +description = Cleveland township, AR +station = ('ktxk', 0.0054517461749535034) +zone = ('arz059', 0.0022400152026996168) + +[fips0508191356] +centroid = (0.58790551915449252, -1.6404631335635975) +description = Franklin township, AR +station = ('ktxk', 0.0040946555640078257) +zone = ('arz059', 0.0035352291933505209) + +[fips0508191863] +centroid = (0.58848697559479446, -1.6479072071694485) +description = Jackson township, AR +station = ('kdeq', 0.0058035814778199697) +zone = ('arz059', 0.0026860242566508915) + +[fips0508191911] +centroid = (0.58981545040824246, -1.6471902957258995) +description = Jeff Davis township, AR +station = ('kdeq', 0.0044815003970183629) +zone = ('arz059', 0.0026365129037489838) + +[fips0508191935] +centroid = (0.58676732013609689, -1.6424447454897269) +description = Jefferson township, AR +station = ('ktxk', 0.0034454337514924264) +zone = ('arz059', 0.0023513506887757069) + +[fips0508191962] +centroid = (0.59086008232543863, -1.6480263258908974) +description = Jewell township, AR +station = ('kdeq', 0.0034435302350836888) +zone = ('arz050', 0.0036544936833415157) + +[fips0508191974] +centroid = (0.58642961637912849, -1.640143389244632) +description = Johnson township, AR +station = ('ktxk', 0.0026210549947656404) +zone = ('arz059', 0.004178539807629284) + +[fips0508192196] +centroid = (0.58886316386176929, -1.644231927737184) +description = Lick Creek township, AR +station = ('ktxk', 0.0060111021484870785) +zone = ('arz059', 0.00078175026040635089) + +[fips0508192223] +centroid = (0.59067855062993868, -1.6468048572138889) +description = Little River township, AR +station = ('kdeq', 0.003664527848857394) +zone = ('arz059', 0.0030470009505853472) + +[fips0508193081] +centroid = (0.58592266804459425, -1.6445513753501766) +description = Red River township, AR +station = ('ktxk', 0.0041118857016548497) +zone = ('arz059', 0.0022653443623221704) + +[fips0508193141] +centroid = (0.58686210896777269, -1.6480869586291116) +description = Richland township, AR +station = ('ktxk', 0.0071572570002791224) +zone = ('arz059', 0.0031147537676068206) + +[fips0508193843] +centroid = (0.58741583212626047, -1.6467250956670729) +description = Wallace township, AR +station = ('ktxk', 0.0064410994346022175) +zone = ('arz059', 0.0018532186142721045) + +[fips0508260] +centroid = (0.61823532729687436, -1.5962032767023957) +description = Bradford city, AR +station = ('ksrc', 0.0054358633534656794) +zone = ('arz025', 0.0046141898156263315) + +[fips0508290] +centroid = (0.57769225379754963, -1.6346239600181254) +description = Bradley city, AR +station = ('ktxk', 0.0077541028936141806) +zone = ('arz071', 0.0025739177118635631) + +[fips05083] +centroid = (0.61467965527824897, -1.6357324011727743) +description = Logan County, AR +station = ('krue', 0.0088636497215435709) +zone = ('arz030', 8.3140964474512726e-05) + +[fips0508390108] +centroid = (0.61292762396192702, -1.642322502628917) +description = Barber township, AR +station = ('kfsm', 0.0053627588643201775) +zone = ('arz029', 0.0028812416067453108) + +[fips0508390363] +centroid = (0.61326258755196972, -1.6356936548633803) +description = Blue Mountain township, AR +station = ('kmwt', 0.010432146248936196) +zone = ('arz030', 0.0013606567118855386) + +[fips0508390405] +centroid = (0.61344357819540152, -1.6396092661336443) +description = Boone township, AR +station = ('kfsm', 0.0068570867490005917) +zone = ('arz030', 0.0034380948359081869) + +[fips0508390642] +centroid = (0.61695231831044084, -1.6308448858552445) +description = Cane Creek township, AR +station = ('krue', 0.0051478067173142067) +zone = ('arz021', 0.0038728449250674617) + +[fips0508390699] +centroid = (0.61221725750307265, -1.640041776175581) +description = Cauthron township, AR +station = ('kfsm', 0.0072354420963650938) +zone = ('arz037', 0.0040222263148176167) + +[fips0508390807] +centroid = (0.61665742748002383, -1.6342567427435057) +description = Clark township, AR +station = ('krue', 0.0077685187101665578) +zone = ('arz030', 0.0023340702051390747) + +[fips0508391053] +centroid = (0.61548933097154168, -1.6289490045019732) +description = Delaware township, AR +station = ('krue', 0.0033152990655091548) +zone = ('arz038', 0.0047168765136093799) + +[fips0508391140] +centroid = (0.6148467705541274, -1.6369361896644599) +description = Driggs township, AR +station = ('krue', 0.0098367180542031554) +zone = ('arz030', 0.0010679108654076739) + +[fips0508391230] +centroid = (0.6157312510591606, -1.6325237704226154) +description = Ellsworth township, AR +station = ('krue', 0.0062437929965590911) +zone = ('arz030', 0.0027892813937732972) + +[fips0508391977] +centroid = (0.6155223700542819, -1.6341745028291519) +description = Johnson township, AR +station = ('krue', 0.0075775947231766011) +zone = ('arz030', 0.0015089745999393286) + +[fips0508392256] +centroid = (0.61674558406054214, -1.6323338785999983) +description = Logan township, AR +station = ('krue', 0.0062531077576561617) +zone = ('arz030', 0.0034452900306130786) + +[fips0508392598] +centroid = (0.61440616218446142, -1.6332053389488117) +description = Mountain township, AR +station = ('krue', 0.0068328678865479404) +zone = ('arz030', 0.0020156431823244629) + +[fips0508392859] +centroid = (0.6120943514171473, -1.636482020086506) +description = Petit Jean township, AR +station = ('kmwt', 0.0094429377892444565) +zone = ('arz030', 0.0026168208869002947) + +[fips0508393114] +centroid = (0.61390375170598233, -1.6367149866350621) +description = Reveilee township, AR +station = ('kfsm', 0.0088536724394676358) +zone = ('arz030', 0.0011239741712278073) + +[fips0508393195] +centroid = (0.6175662204215373, -1.6324355440289271) +description = River township, AR +station = ('krue', 0.0065769519376817796) +zone = ('arz021', 0.0034054905526118479) + +[fips0508393231] +centroid = (0.61726900830321518, -1.6368331454254221) +description = Roseville township, AR +station = ('krue', 0.0099482972533911588) +zone = ('arz030', 0.0028145619243409511) + +[fips0508393366] +centroid = (0.6156513847925893, -1.6310699635155816) +description = Shoal Creek township, AR +station = ('krue', 0.005054357432459881) +zone = ('arz030', 0.0038855982167002863) + +[fips0508393372] +centroid = (0.61622781468464549, -1.6359033387197146) +description = Short Mountain township, AR +station = ('krue', 0.009036758523625581) +zone = ('arz030', 0.0016173371200104631) + +[fips0508393390] +centroid = (0.61593582110078682, -1.6382274715115479) +description = Six Mile township, AR +station = ('kfsm', 0.0072047499823754491) +zone = ('arz030', 0.0024751536481940378) + +[fips0508393519] +centroid = (0.61220046743566858, -1.6382131598116816) +description = Sugar Creek township, AR +station = ('kfsm', 0.0084703475168327151) +zone = ('arz030', 0.003199002610246136) + +[fips0508393619] +centroid = (0.61211457978317796, -1.6417032598103096) +description = Tomlinson township, AR +station = ('kfsm', 0.00629814134641591) +zone = ('arz037', 0.0036788510093306043) + +[fips0508393894] +centroid = (0.6146920122093531, -1.6391027890380081) +description = Washburn township, AR +station = ('kfsm', 0.0067545686181842866) +zone = ('arz030', 0.002815141868172711) + +[fips0508440] +centroid = (0.61624614064179151, -1.6398305564295048) +description = Branch city, AR +station = ('kfsm', 0.0058733856927303514) +zone = ('arz020', 0.0036776972167083095) + +[fips05085] +centroid = (0.6065911712059765, -1.6038551666622818) +description = Lonoke County, AR +station = ('klrf', 0.0046244695058235705) +zone = ('arz045', 7.9509622007213612e-05) + +[fips0508590561] +centroid = (0.61073903343980362, -1.6031165433228378) +description = Butler township, AR +station = ('ksrc', 0.0041605772524412879) +zone = ('arz045', 0.0041971828494120587) + +[fips0508590663] +centroid = (0.60700195189872586, -1.601240349283529) +description = Carlisle township, AR +station = ('ksgt', 0.0040276049308583754) +zone = ('arz045', 0.0021136723966162971) + +[fips0508590669] +centroid = (0.61071793240914707, -1.6051909194987106) +description = Caroline township, AR +station = ('klrf', 0.0028791890950991043) +zone = ('arz045', 0.0043057583821537173) + +[fips0508590861] +centroid = (0.60845460688845321, -1.6033369260474872) +description = Cleveland township, AR +station = ('klrf', 0.0041984864855354707) +zone = ('arz045', 0.001911275167196174) + +[fips0508590972] +centroid = (0.60261936033379804, -1.6015806012212053) +description = Crooked Creek township, AR +station = ('ksgt', 0.0031028457015207724) +zone = ('arz045', 0.0043433777939659345) + +[fips0508591125] +centroid = (0.60586473026471144, -1.6065980388482535) +description = Dortch township, AR +station = ('klit', 0.0026343255276133105) +zone = ('arz045', 0.0024378549001145833) + +[fips0508591191] +centroid = (0.60898024769927639, -1.6048234927845808) +description = Eagle township, AR +station = ('klrf', 0.0029003924514275294) +zone = ('arz045', 0.0025584854101046817) + +[fips0508591305] +centroid = (0.6042095996284601, -1.6022319231914643) +description = Fletcher township, AR +station = ('ksgt', 0.0033836907021008336) +zone = ('arz045', 0.0026787502319070059) + +[fips0508591398] +centroid = (0.60796114994903694, -1.6052773831098543) +description = Furlow township, AR +station = ('klrf', 0.0028872154690061575) +zone = ('arz045', 0.0018635469352516565) + +[fips0508591479] +centroid = (0.60889071230864911, -1.6057953444719688) +description = Goodrum township, AR +station = ('klrf', 0.0021355953986442145) +zone = ('arz045', 0.0028552480841540712) + +[fips0508591503] +centroid = (0.60906924203783563, -1.6066231366828971) +description = Gray township, AR +station = ('klrf', 0.0014335940048739162) +zone = ('arz045', 0.0034267779501870924) + +[fips0508591569] +centroid = (0.60275912630029771, -1.6053462363488455) +description = Gum Woods township, AR +station = ('klit', 0.0050195747936773744) +zone = ('arz045', 0.0040329597428372423) + +[fips0508591590] +centroid = (0.60476477141022711, -1.6008766750272909) +description = Hamilton township, AR +station = ('ksgt', 0.0024182528162908154) +zone = ('arz045', 0.0029829704973711184) + +[fips0508591827] +centroid = (0.60262717940884702, -1.6032718427196802) +description = Indian Bayou township, AR +station = ('ksgt', 0.0044090851065333309) +zone = ('arz045', 0.0039684446602106143) + +[fips0508591839] +centroid = (0.60317327547850352, -1.6002733845180466) +description = Isbell township, AR +station = ('ksgt', 0.0018949466016354186) +zone = ('arz045', 0.004449753859968964) + +[fips0508592070] +centroid = (0.60413050130675983, -1.6055904428177847) +description = Lafayette township, AR +station = ('klit', 0.0040216627729934727) +zone = ('arz045', 0.002870766926994864) + +[fips0508592283] +centroid = (0.6070238557808384, -1.603699692732514) +description = Lonoke township, AR +station = ('klrf', 0.0044811135964889183) +zone = ('arz045', 0.00045139648791689771) + +[fips0508592349] +centroid = (0.61157162530617504, -1.6067600752160085) +description = Magness township, AR +station = ('klrf', 0.0025109245336758174) +zone = ('arz032', 0.0043002714129714631) + +[fips0508592736] +centroid = (0.60971644503106015, -1.6042714625954675) +description = Oak Grove township, AR +station = ('klrf', 0.0033341683835851547) +zone = ('arz045', 0.0031691091920005672) + +[fips0508592865] +centroid = (0.60392249296650713, -1.6039184872075443) +description = Pettus township, AR +station = ('ksgt', 0.0047567234191911263) +zone = ('arz045', 0.0026559112421992194) + +[fips0508592997] +centroid = (0.60919263681595159, -1.6028388439855532) +description = Prairie township, AR +station = ('klrf', 0.0045008413566929853) +zone = ('arz045', 0.0027245309456395751) + +[fips0508593042] +centroid = (0.6069573412830449, -1.606338141869339) +description = Pulaski township, AR +station = ('klrf', 0.0029440303150958351) +zone = ('arz045', 0.0021518378765663562) + +[fips0508593171] +centroid = (0.60571241538088993, -1.6044889829801436) +description = Richwoods township, AR +station = ('klrf', 0.0048555524608709967) +zone = ('arz045', 0.0010502448760109169) + +[fips0508593327] +centroid = (0.6055197484847622, -1.6022788550950506) +description = Scott township, AR +station = ('ksgt', 0.0037776193857368807) +zone = ('arz045', 0.0016114304594204158) + +[fips0508593625] +centroid = (0.60899567640986407, -1.6014405560020253) +description = Totten township, AR +station = ('ksrc', 0.0055750023771222292) +zone = ('arz045', 0.0030798055212217252) + +[fips0508593852] +centroid = (0.60499288594346268, -1.6053458174698252) +description = Walls township, AR +station = ('klit', 0.0038401064224847809) +zone = ('arz045', 0.0020499895278630435) + +[fips0508593879] +centroid = (0.61133661672239403, -1.6048084829530136) +description = Ward township, AR +station = ('klrf', 0.0034630617593198682) +zone = ('arz045', 0.0048383903197059932) + +[fips0508594065] +centroid = (0.60482130262469913, -1.6068616184718898) +description = Williams township, AR +station = ('klit', 0.0027695973721053838) +zone = ('arz045', 0.0030945868432875655) + +[fips0508594131] +centroid = (0.61022534813435669, -1.6063690341970993) +description = York township, AR +station = ('klrf', 0.0017954542432949993) +zone = ('arz045', 0.004231491752832205) + +[fips0508665] +centroid = (0.63306449983315172, -1.6106228379165226) +description = Briarcliff city, AR +station = ('kbpk', 0.0030799565672251341) +zone = ('arz005', 0.00081993041966607757) + +[fips05087] +centroid = (0.62853748227262141, -1.635793313163669) +description = Madison County, AR +station = ('kfyv', 0.006253041471575088) +zone = ('arz011', 2.804935307244123e-05) + +[fips0508790009] +centroid = (0.6316554955280167, -1.6348354241102969) +description = Alabam township, AR +station = ('krog', 0.0067914556643896475) +zone = ('arz002', 0.0031988994165741392) + +[fips0508790392] +centroid = (0.6298145745928907, -1.6374893368642947) +description = Bohannan township, AR +station = ('kfyv', 0.005099333564682393) +zone = ('arz011', 0.0018867531439976301) + +[fips0508790414] +centroid = (0.62569013467762524, -1.6332220417497534) +description = Boston township, AR +station = ('kfyv', 0.0087423126217830317) +zone = ('arz011', 0.0035102273770785033) + +[fips0508790426] +centroid = (0.6278875216591786, -1.6357713394683862) +description = Bowen township, AR +station = ('kfyv', 0.0062832625044903032) +zone = ('arz011', 0.00062351705295005935) + +[fips0508790621] +centroid = (0.63277613653413711, -1.6366015227803898) +description = California township, AR +station = ('krog', 0.00502637427188993) +zone = ('arz002', 0.003591165881761942) + +[fips0508791722] +centroid = (0.62478292998573104, -1.6364229057847408) +description = Hilburn township, AR +station = ('kfyv', 0.0067480847010637467) +zone = ('arz011', 0.0037612690404384575) + +[fips0508791902] +centroid = (0.62754240025288932, -1.6370089000810979) +description = Japton township, AR +station = ('kfyv', 0.0053246288911649661) +zone = ('arz011', 0.001374648134153405) + +[fips0508792028] +centroid = (0.62522510915172391, -1.6349864649037646) +description = Kentucky township, AR +station = ('kfyv', 0.0075710030565794579) +zone = ('arz011', 0.003351276337885289) + +[fips0508792055] +centroid = (0.62893906508021269, -1.6319390153100273) +description = Kings River township, AR +station = ('khro', 0.0064069963340223982) +zone = ('arz011', 0.0031542402197095695) + +[fips0508792103] +centroid = (0.62889340726698051, -1.6390282809322405) +description = Lamar township, AR +station = ('kfyv', 0.0036770226335613838) +zone = ('arz011', 0.0026366422992894086) + +[fips0508792208] +centroid = (0.6266083000372219, -1.6351337881459254) +description = Lincoln township, AR +station = ('kfyv', 0.0069996259993614527) +zone = ('arz011', 0.0019778138227919875) + +[fips0508792367] +centroid = (0.63061007821265713, -1.6336064854240904) +description = Marble township, AR +station = ('khro', 0.0067475818059124009) +zone = ('arz011', 0.0027495170628550952) + +[fips0508792481] +centroid = (0.62562773915686654, -1.6375800590788132) +description = Mill Creek township, AR +station = ('kfyv', 0.0055105131917252172) +zone = ('arz011', 0.0032220146859626071) + +[fips0508793000] +centroid = (0.63076635499388067, -1.6383417731242611) +description = Prairie township, AR +station = ('kasg', 0.003555232522151413) +zone = ('arz011', 0.0030495439550881176) + +[fips0508793048] +centroid = (0.62985953427442198, -1.6334979783044936) +description = Purdy township, AR +station = ('khro', 0.0069686338325357922) +zone = ('arz011', 0.0023005499604417208) + +[fips0508793144] +centroid = (0.62870688392981988, -1.6377461795170178) +description = Richland township, AR +station = ('kfyv', 0.0046852689131102786) +zone = ('arz011', 0.0015840651532187087) + +[fips0508793759] +centroid = (0.62570896678025423, -1.6391822189722662) +description = Valley township, AR +station = ('kfyv', 0.0043748572320375075) +zone = ('arz011', 0.0039161616759593506) + +[fips0508793792] +centroid = (0.62726531178084266, -1.6337235795636067) +description = Venus township, AR +station = ('kfyv', 0.0079968382075992599) +zone = ('arz011', 0.0020933255746313595) + +[fips0508793888] +centroid = (0.62992294208614696, -1.6356796398694866) +description = War Eagle township, AR +station = ('kfyv', 0.0065378871708109644) +zone = ('arz011', 0.0014159341015601535) + +[fips0508793976] +centroid = (0.62846623793255485, -1.6339673147936475) +description = Wharton township, AR +station = ('kfyv', 0.0077279601447677914) +zone = ('arz011', 0.0014854641014152581) + +[fips0508794017] +centroid = (0.62742010503220202, -1.6387399350865184) +description = White River township, AR +station = ('kfyv', 0.0039700940374475073) +zone = ('arz011', 0.0026149476231965237) + +[fips05089] +centroid = (0.6329725558881566, -1.6175465066993064) +description = Marion County, AR +station = ('kflp', 0.0014610535122234623) +zone = ('arz004', 8.4634817762706011e-05) + +[fips0508950] +centroid = (0.60894661520459048, -1.5915581876179679) +description = Brinkley city, AR +station = ('ksgt', 0.0074079854945142487) +zone = ('arz047', 0.0037104413453198813) + +[fips0508992398] +centroid = (0.6329725558881566, -1.6175465066993064) +description = Marion County township, AR +station = ('kflp', 0.0014610535122234623) +zone = ('arz004', 8.4634817762706011e-05) + +[fips05091] +centroid = (0.58129072128943393, -1.6388905046410882) +description = Miller County, AR +station = ('ktxk', 0.0027896653482814963) +zone = ('arz070', 0.00018584138998207063) + +[fips0509100] +centroid = (0.62666170711233293, -1.5809112603017821) +description = Brookland city, AR +station = ('kjbr', 0.0016002075965569841) +zone = ('arz026', 0.001499234918988243) + +[fips0509190207] +centroid = (0.58028284600628477, -1.6384563016297768) +description = Beech township, AR +station = ('ktxk', 0.0038573918567814196) +zone = ('arz070', 0.0011497206448242135) + +[fips0509190864] +centroid = (0.58213752013591658, -1.6382662003676498) +description = Cleveland township, AR +station = ('ktxk', 0.0023962006751807137) +zone = ('arz070', 0.00081985290799684615) + +[fips0509190996] +centroid = (0.57991620469031846, -1.6366707076319389) +description = Cut Off township, AR +station = ('ktxk', 0.0049467166711680537) +zone = ('arz070', 0.0022745073635481177) + +[fips0509191038] +centroid = (0.58136163401694252, -1.6406119054290376) +description = Days Creek township, AR +station = ('ktxk', 0.0024632068833371178) +zone = ('arz070', 0.0015809640998812068) + +[fips0509191434] +centroid = (0.58387372131592297, -1.6392707246186349) +description = Garland township, AR +station = ('ktxk', 0.0008764338075128202) +zone = ('arz070', 0.0025050665485706084) + +[fips0509191755] +centroid = (0.58546280869327882, -1.6381560526385561) +description = Homan township, AR +station = ('ktxk', 0.0024444338802888568) +zone = ('arz070', 0.0040790925191880288) + +[fips0509193084] +centroid = (0.58292804956731503, -1.6362717951781032) +description = Red River township, AR +station = ('ktxk', 0.0034914308061825797) +zone = ('arz070', 0.0025468650990406725) + +[fips0509193537] +centroid = (0.5779630939908742, -1.6398736486087366) +description = Sulphur township, AR +station = ('ktxk', 0.0058613558745811622) +zone = ('arz070', 0.0035802736366747738) + +[fips05093] +centroid = (0.6242509187231382, -1.5717075457440703) +description = Mississippi County, AR +station = ('kbyh', 0.0037737087716618691) +zone = ('arz028', 5.8856108426480461e-05) + +[fips0509390297] +centroid = (0.62571685566847324, -1.5742896207460559) +description = Big Lake township, AR +station = ('kbyh', 0.0040724426357235718) +zone = ('arz028', 0.0025665044345654095) + +[fips0509390429] +centroid = (0.62786521635133818, -1.5715908355769896) +description = Bowen township, AR +station = ('kbyh', 0.0013553800550854241) +zone = ('arz028', 0.0036693676998555452) + +[fips0509390549] +centroid = (0.62498566743164274, -1.5700380859546603) +description = Burdette township, AR +station = ('kbyh', 0.0027526482983407778) +zone = ('arz028', 0.0015887385109923048) + +[fips0509390633] +centroid = (0.62692052198711112, -1.5662668832267059) +description = Canadian township, AR +station = ('khka', 0.0013330604095791846) +zone = ('tnz048', 0.0031753674560392746) + +[fips0509390683] +centroid = (0.62148520017725795, -1.5710660499775) +description = Carson township, AR +station = ('knqa', 0.0048551652950476372) +zone = ('arz028', 0.0027670969838551984) + +[fips0509390783] +centroid = (0.62676387868674466, -1.5687974361091723) +description = Chickasawba township, AR +station = ('khka', 0.00083427614600794207) +zone = ('arz028', 0.0035029433989675219) + +[fips0509391182] +centroid = (0.62120137473429859, -1.5747415563025671) +description = Dyess township, AR +station = ('knqa', 0.0065170168043573468) +zone = ('arz028', 0.0038636878457350326) + +[fips0509391308] +centroid = (0.62441002293774994, -1.5689774319149308) +description = Fletcher township, AR +station = ('khka', 0.0028836162726630986) +zone = ('arz028', 0.0022505230457957721) + +[fips0509391476] +centroid = (0.61991103536500669, -1.5718811885513511) +description = Golden Lake township, AR +station = ('knqa', 0.00392451290137144) +zone = ('arz028', 0.0042883344217331037) + +[fips0509391584] +centroid = (0.62679608001144405, -1.5716127220058094) +description = Half Moon Lake township, AR +station = ('kbyh', 0.0016598143733947903) +zone = ('arz028', 0.0026002812949594144) + +[fips0509391659] +centroid = (0.62549277284580973, -1.571825721987723) +description = Hector township, AR +station = ('kbyh', 0.0027219864907763736) +zone = ('arz028', 0.0012968818494339504) + +[fips0509392226] +centroid = (0.62339656260099452, -1.5743171271350673) +description = Little River township, AR +station = ('kbyh', 0.0056143879097276285) +zone = ('arz028', 0.0022408800983683705) + +[fips0509392310] +centroid = (0.61918661900567384, -1.5731314900676026) +description = McGavock township, AR +station = ('knqa', 0.0042946141794148627) +zone = ('arz028', 0.0051374775154908441) + +[fips0509392529] +centroid = (0.62290366416693876, -1.5712250843789415) +description = Monroe township, AR +station = ('kbyh', 0.0049469304114205682) +zone = ('arz028', 0.0013596816709406099) + +[fips0509392664] +centroid = (0.62743029775503367, -1.5745968859608692) +description = Neal township, AR +station = ('kbyh', 0.0037951275877318924) +zone = ('arz028', 0.0039767892312439169) + +[fips0509393330] +centroid = (0.62014005746945333, -1.5735010460834196) +description = Scott township, AR +station = ('knqa', 0.0050682890215444417) +zone = ('arz028', 0.0043030261349064772) + +[fips0509394050] +centroid = (0.61936132646379849, -1.5750995931453213) +description = Whitton township, AR +station = ('knqa', 0.0058137188286735116) +zone = ('arz036', 0.0049477927957473676) + +[fips0509460] +centroid = (0.60418471123332673, -1.6142449371664789) +description = Bryant city, AR +station = ('klit', 0.0041972649925954113) +zone = ('arz043', 0.0027364737014043501) + +[fips05095] +centroid = (0.60527168483817628, -1.5917981180302399) +description = Monroe County, AR +station = ('ksgt', 0.0053989844446942752) +zone = ('arz047', 3.0700435361855068e-05) + +[fips0509550] +centroid = (0.58219420843002134, -1.6307580906315431) +description = Buckner city, AR +station = ('keld', 0.0093569674634088815) +zone = ('arz071', 0.0032263140250266649) + +[fips0509590480] +centroid = (0.60857461572782046, -1.5922575235959495) +description = Brinkley township, AR +station = ('ksgt', 0.0067357888907031522) +zone = ('arz047', 0.0033533471858522195) + +[fips0509590495] +centroid = (0.60908599719865475, -1.5936916780956059) +description = Brown township, AR +station = ('ksgt', 0.0063576251588154777) +zone = ('arz047', 0.0041442407306756888) + +[fips0509590585] +centroid = (0.60603701171517577, -1.5935956500801611) +description = Cache township, AR +station = ('ksgt', 0.0043134795236682002) +zone = ('arz047', 0.0016720556308619328) + +[fips0509590846] +centroid = (0.60315210463467683, -1.5899265840200334) +description = Cleburne township, AR +station = ('ksgt', 0.0068017948083549185) +zone = ('arz047', 0.0026001007068045096) + +[fips0509591008] +centroid = (0.60645355199445672, -1.5905112344128667) +description = Cypress Ridge township, AR +station = ('ksgt', 0.0067796298345110129) +zone = ('arz047', 0.0016131357263456689) + +[fips0509591118] +centroid = (0.60834184116548196, -1.5907026621252254) +description = Dixon township, AR +station = ('ksgt', 0.0075653059656771464) +zone = ('arz047', 0.0032299746353940781) + +[fips0509591158] +centroid = (0.60395076730038944, -1.5923157128732111) +description = Duncan township, AR +station = ('ksgt', 0.0047943863814272373) +zone = ('arz047', 0.0013572689191468092) + +[fips0509591515] +centroid = (0.61009692680799488, -1.5913507901429536) +description = Greenfield township, AR +station = ('ksgt', 0.0083484250823738868) +zone = ('arz034', 0.0041270368687131688) + +[fips0509591734] +centroid = (0.60490298403369247, -1.5895647947193878) +description = Hindman township, AR +station = ('ksgt', 0.0071291342403884588) +zone = ('arz047', 0.0018746670184140528) + +[fips0509591866] +centroid = (0.6025386563091859, -1.5914377424462878) +description = Jackson township, AR +station = ('ksgt', 0.0056808585104857028) +zone = ('arz047', 0.0027201290016438547) + +[fips0509592019] +centroid = (0.60705197303508807, -1.592440207208756) +description = Keevil township, AR +station = ('ksgt', 0.0056567715998190604) +zone = ('arz047', 0.0018835952549057951) + +[fips0509592539] +centroid = (0.60072459599124794, -1.5896418160992782) +description = Montgomery-Smalley township, AR +station = ('ksgt', 0.0076823142216405644) +zone = ('arz058', 0.0033406795062707979) + +[fips0509592895] +centroid = (0.60538385714920195, -1.5914733471630287) +description = Pine Ridge township, AR +station = ('ksgt', 0.0056859752237808214) +zone = ('arz047', 0.00030867930443016377) + +[fips0509593057] +centroid = (0.60432726972662965, -1.5903137504080036) +description = Raymond township, AR +station = ('ksgt', 0.0064561709607536709) +zone = ('arz047', 0.0015311634468996673) + +[fips0509593147] +centroid = (0.60993759570058037, -1.5924734906375912) +description = Richland township, AR +station = ('ksgt', 0.0076361137831935785) +zone = ('arz034', 0.0041792199009905613) + +[fips0509593216] +centroid = (0.60419301900056621, -1.5943690752848898) +description = Roc Roe township, AR +station = ('ksgt', 0.0031188587526645335) +zone = ('arz047', 0.002354527535076774) + +[fips05097] +centroid = (0.60293536964816408, -1.6347477562219692) +description = Montgomery County, AR +station = ('kmwt', 0.0011642094027742088) +zone = ('arz041', 0.00013698528245448838) + +[fips0509790] +centroid = (0.63483686423525931, -1.6160288207416498) +description = Bull Shoals city, AR +station = ('kflp', 0.0012876414081665504) +zone = ('arz004', 0.0022489091042212357) + +[fips0509790013] +centroid = (0.60166492703234498, -1.6306789574032574) +description = Alamo township, AR +station = ('kmwt', 0.0025711673459541907) +zone = ('arz041', 0.003481827440644339) + +[fips0509790346] +centroid = (0.6018894810939065, -1.6368102292523437) +description = Black Springs township, AR +station = ('kmwt', 0.0030735489325319386) +zone = ('arz041', 0.0019944703203418519) + +[fips0509790595] +centroid = (0.60047244827421231, -1.6335765181208335) +description = Caddo Gap township, AR +station = ('kmwt', 0.0025464559488931242) +zone = ('arz041', 0.0025097578751743159) + +[fips0509790651] +centroid = (0.59976297193327666, -1.6313815396936477) +description = Caney township, AR +station = ('kmwt', 0.0036265528240644143) +zone = ('arz041', 0.0040814084914801464) + +[fips0509790729] +centroid = (0.60284131385477424, -1.6318918914202234) +description = Center township, AR +station = ('kmwt', 0.0012026148478355059) +zone = ('arz041', 0.0022858093294226512) + +[fips0509791273] +centroid = (0.60536638640338947, -1.6308867912105851) +description = Fannie township, AR +station = ('kmwt', 0.0031005799436173583) +zone = ('arz041', 0.0040228406446950853) + +[fips0509791765] +centroid = (0.60031875458028172, -1.6362732088947973) +description = Hopper township, AR +station = ('kmwt', 0.003620451399815248) +zone = ('arz041', 0.0028265707076182145) + +[fips0509792620] +centroid = (0.60358843694767539, -1.6336890744042945) +description = Mount Ida township, AR +station = ('kmwt', 0.00064579620036846793) +zone = ('arz041', 0.0011158475918179069) + +[fips0509792701] +centroid = (0.6016066853952059, -1.633634305972367) +description = Norman township, AR +station = ('kmwt', 0.0014257356085648706) +zone = ('arz041', 0.0014784002046889903) + +[fips0509792737] +centroid = (0.60467069816354457, -1.6375544550986865) +description = Oden township, AR +station = ('kmwt', 0.0038476454817377866) +zone = ('arz041', 0.0030153296522550596) + +[fips0509792841] +centroid = (0.60511411651330627, -1.636186326404633) +description = Pencil Bluff township, AR +station = ('kmwt', 0.0031496600143736792) +zone = ('arz041', 0.0026166633285528199) + +[fips0509793385] +centroid = (0.60529632888721452, -1.6345468164651873) +description = Sims township, AR +station = ('kmwt', 0.002492471135585685) +zone = ('arz041', 0.002482509184808327) + +[fips0509793934] +centroid = (0.60539659805274149, -1.6328831511688935) +description = Washita township, AR +station = ('kmwt', 0.0024144426290642279) +zone = ('arz041', 0.0029690351072066056) + +[fips0509880] +centroid = (0.62516131736756353, -1.5696748654840276) +description = Burdette town, AR +station = ('khka', 0.0024642060641489145) +zone = ('arz028', 0.0019316258482229821) + +[fips05099] +centroid = (0.5875947458278824, -1.6284807152103706) +description = Nevada County, AR +station = ('km89', 0.0083130288108704698) +zone = ('arz061', 5.4892298051896683e-05) + +[fips0509990012] +centroid = (0.58447304992776539, -1.630101305780725) +description = Alabama township, AR +station = ('keld', 0.0097061490390850155) +zone = ('arz061', 0.0033472780279521401) + +[fips0509990015] +centroid = (0.58745927337134263, -1.6298950951296018) +description = Albany township, AR +station = ('km89', 0.0089824263684325431) +zone = ('arz061', 0.0011498492236499095) + +[fips0509990423] +centroid = (0.59140130892648213, -1.6294756750570549) +description = Boughton township, AR +station = ('km89', 0.0056933178928190165) +zone = ('arz061', 0.0039333453464194049) + +[fips0509990654] +centroid = (0.58656198214959987, -1.6277984660057658) +description = Caney township, AR +station = ('kcdh', 0.0072593837113083537) +zone = ('arz061', 0.001154859383440192) + +[fips0509991248] +centroid = (0.58835729763137123, -1.6308598084203492) +description = Emmet township, AR +station = ('km89', 0.0087019597205503108) +zone = ('arz061', 0.0021095261867598199) + +[fips0509991449] +centroid = (0.58792840042098626, -1.6278193925034974) +description = Georgia township, AR +station = ('km89', 0.0077892388754390871) +zone = ('arz061', 0.00069391255193129383) + +[fips0509991869] +centroid = (0.58637999666849439, -1.6259208582497631) +description = Jackson township, AR +station = ('kcdh', 0.0057045307650410923) +zone = ('arz061', 0.0024582763637194423) + +[fips0509992130] +centroid = (0.58461435178400689, -1.6260135177797514) +description = Leake township, AR +station = ('kcdh', 0.006147280476613501) +zone = ('arz061', 0.0036010378368258929) + +[fips0509992520] +centroid = (0.59018703100599212, -1.6301951172280196) +description = Missouri township, AR +station = ('km89', 0.0069629613284302493) +zone = ('arz061', 0.0029837108736037858) + +[fips0509992823] +centroid = (0.5858554379618075, -1.630232153114747) +description = Parker township, AR +station = ('ktxk', 0.008654651545761902) +zone = ('arz061', 0.0022152977017070286) + +[fips0509993075] +centroid = (0.58967624294710341, -1.6271504078012082) +description = Redland township, AR +station = ('km89', 0.0059616174491195183) +zone = ('arz061', 0.0024118513794015662) + +[fips0509993585] +centroid = (0.58472942134159078, -1.6279047216506275) +description = Taylor township, AR +station = ('keld', 0.0083044756878357176) +zone = ('arz061', 0.0028658507932214821) + +[fips0509993705] +centroid = (0.58843828090866379, -1.6260612176282083) +description = Union township, AR +station = ('km89', 0.0068696418599279441) +zone = ('arz061', 0.0022289706623119603) + +[fips05101] +centroid = (0.62674883394859249, -1.626910128323086) +description = Newton County, AR +station = ('khro', 0.0062912374071981405) +zone = ('arz012', 0.00017794254902588134) + +[fips0510190270] +centroid = (0.62605014374243406, -1.6245346653979515) +description = Big Creek township, AR +station = ('khro', 0.0069947285359379914) +zone = ('arz012', 0.0021490747417508256) + +[fips0510190417] +centroid = (0.62486789261371822, -1.6316472835255564) +description = Boston township, AR +station = ('khro', 0.0093938567359550286) +zone = ('arz021', 0.0040700417996418978) + +[fips0510191545] +centroid = (0.62897685145851845, -1.6226328150186384) +description = Grove township, AR +station = ('khro', 0.0047329742215486328) +zone = ('arz012', 0.0040594499266488832) + +[fips0510191641] +centroid = (0.62831236970569915, -1.6237953439268067) +description = Hasty township, AR +station = ('khro', 0.0049268004815688727) +zone = ('arz012', 0.002913930830323402) + +[fips0510191695] +centroid = (0.62552382225320269, -1.6280738789617308) +description = Hickory Grove township, AR +station = ('khro', 0.0076774393724542648) +zone = ('arz012', 0.0016647051358783824) + +[fips0510191788] +centroid = (0.62720396345763507, -1.6273908792655476) +description = Hudson township, AR +station = ('khro', 0.0059148164270883159) +zone = ('arz012', 0.00044888454217723516) + +[fips0510191872] +centroid = (0.62836570696763994, -1.6263084086101685) +description = Jackson township, AR +station = ('khro', 0.0046271932173604464) +zone = ('arz012', 0.0015365736715037847) + +[fips0510191941] +centroid = (0.62513991963093396, -1.6297793099870244) +description = Jefferson township, AR +station = ('khro', 0.0084758848274995597) +zone = ('arz012', 0.0028981170137064856) + +[fips0510191995] +centroid = (0.62386078527543998, -1.6230675590820178) +description = Jones township, AR +station = ('kcca', 0.0081278153011885654) +zone = ('arz012', 0.0043963172694302093) + +[fips0510192031] +centroid = (0.62631381063253289, -1.6308840510436593) +description = Kentucky township, AR +station = ('khro', 0.0078356803893822793) +zone = ('arz012', 0.0032368294932509298) + +[fips0510192211] +centroid = (0.62632971058201858, -1.6278772850747862) +description = Lincoln township, AR +station = ('khro', 0.006857047841014526) +zone = ('arz012', 0.00095082028170664847) + +[fips0510192295] +centroid = (0.62888745569423132, -1.6285480849194975) +description = Low Gap township, AR +station = ('khro', 0.0046590234343340435) +zone = ('arz012', 0.0023484335252548037) + +[fips0510192373] +centroid = (0.62968945193881509, -1.625807394395091) +description = Marble Falls township, AR +station = ('khro', 0.0032833994722417104) +zone = ('arz012', 0.0029198884864667526) + +[fips0510192655] +centroid = (0.62735701137974254, -1.6288676372522453) +description = Murray township, AR +station = ('khro', 0.0061467718133038033) +zone = ('arz012', 0.0016052098541712327) + +[fips0510192772] +centroid = (0.62983832852401023, -1.6304467762528647) +description = Osage township, AR +station = ('khro', 0.0049041023219013125) +zone = ('arz012', 0.0040574918971510955) + +[fips0510192919] +centroid = (0.62476551159979621, -1.6271369862192602) +description = Pleasant Hill township, AR +station = ('khro', 0.0082808929912351267) +zone = ('arz012', 0.002161559451609233) + +[fips0510192928] +centroid = (0.62970233246869489, -1.6284906810403996) +description = Plumlee township, AR +station = ('khro', 0.0039375320965473002) +zone = ('arz012', 0.0030436369921088449) + +[fips0510192949] +centroid = (0.62647113461130766, -1.6229954420773254) +description = Polk township, AR +station = ('khro', 0.0068785405081059356) +zone = ('arz012', 0.0032421236742456996) + +[fips0510192958] +centroid = (0.6287565909069166, -1.6298051932198316) +description = Ponca township, AR +station = ('khro', 0.0053264962075389045) +zone = ('arz012', 0.002944392878520284) + +[fips0510193006] +centroid = (0.62948674939948857, -1.6235730587932726) +description = Prairie township, AR +station = ('khro', 0.0039127755191420205) +zone = ('arz012', 0.0037526926650951458) + +[fips0510193150] +centroid = (0.62407176067542103, -1.6250405839882271) +description = Richland township, AR +station = ('krue', 0.0088439238100187743) +zone = ('arz012', 0.0032472679444505758) + +[fips0510193774] +centroid = (0.62748082503687885, -1.6305293303264841) +description = Van Buren township, AR +station = ('khro', 0.0067021832795207967) +zone = ('arz012', 0.0029440470796444785) + +[fips0510193990] +centroid = (0.62739567042267419, -1.6250232703220475) +description = White township, AR +station = ('khro', 0.0056099729905025788) +zone = ('arz012', 0.0016375039244611977) + +[fips05103] +centroid = (0.58627630665763342, -1.6210341981435668) +description = Ouachita County, AR +station = ('kcdh', 0.0016843830891217085) +zone = ('arz066', 6.4106546381347744e-05) + +[fips0510300] +centroid = (0.61049367505355823, -1.6061604324449008) +description = Cabot city, AR +station = ('klrf', 0.0020757319799750589) +zone = ('arz045', 0.0043854465805635403) + +[fips0510360] +centroid = (0.59656737879263022, -1.6246353534424991) +description = Caddo Valley town, AR +station = ('km89', 0.0014403388074507948) +zone = ('arz053', 0.002624021869739306) + +[fips0510390245] +centroid = (0.58884487281120845, -1.6219760476211129) +description = Bethesda township, AR +station = ('kcdh', 0.0032096216439268755) +zone = ('arz066', 0.0026348603142728093) + +[fips0510390441] +centroid = (0.58627272873266678, -1.619066810650841) +description = Bradley township, AR +station = ('kcdh', 0.00044901036446191872) +zone = ('arz066', 0.0016914015065117062) + +[fips0510390450] +centroid = (0.58643321175738761, -1.6224450699510014) +description = Bragg township, AR +station = ('kcdh', 0.0028142319147599093) +zone = ('arz066', 0.001129457082870426) + +[fips0510390471] +centroid = (0.58321960681886054, -1.6208566108921765) +description = Bridge Creek township, AR +station = ('keld', 0.0035597930407796109) +zone = ('arz066', 0.0031005554982221684) + +[fips0510390675] +centroid = (0.58894248907627245, -1.6203224005147261) +description = Carroll township, AR +station = ('kcdh', 0.002448489596556257) +zone = ('arz066', 0.0027066336498384942) + +[fips0510390867] +centroid = (0.58806589745945825, -1.6172733277647844) +description = Cleveland township, AR +station = ('kcdh', 0.0020194989981462412) +zone = ('arz067', 0.0033173205568351708) + +[fips0510391209] +centroid = (0.58613964737720226, -1.6207126212288869) +description = Ecore Fabre township, AR +station = ('kcdh', 0.0014762185283296676) +zone = ('arz066', 0.00036423659044451727) + +[fips0510391383] +centroid = (0.58937088014117445, -1.6178880327273366) +description = Freeo township, AR +station = ('kcdh', 0.0028300033223553371) +zone = ('arz062', 0.0035704722495931351) + +[fips0510391944] +centroid = (0.58490969640002921, -1.6244438384636777) +description = Jefferson township, AR +station = ('kcdh', 0.0048198390411153796) +zone = ('arz066', 0.003122816087521435) + +[fips0510392073] +centroid = (0.58472645428186243, -1.6201613240780592) +description = Lafayette township, AR +station = ('kcdh', 0.002187822917340489) +zone = ('arz066', 0.0017683509111484801) + +[fips0510392178] +centroid = (0.58632531550302946, -1.6242102610498834) +description = Liberty township, AR +station = ('kcdh', 0.0042880421113274409) +zone = ('arz066', 0.0025935551226052211) + +[fips0510392388] +centroid = (0.58439269496900359, -1.622334817502153) +description = Marion township, AR +station = ('kcdh', 0.0035727375307712849) +zone = ('arz066', 0.002180643829248363) + +[fips0510393066] +centroid = (0.58847023788726782, -1.624170240650135) +description = Red Hill township, AR +station = ('kcdh', 0.004580308964122216) +zone = ('arz066', 0.0033460320142080432) + +[fips0510393198] +centroid = (0.58757470944806955, -1.6215442357108769) +description = River township, AR +station = ('kcdh', 0.0022189788826550722) +zone = ('arz066', 0.0013149193051903176) + +[fips0510393393] +centroid = (0.5832181756488739, -1.6240667077189068) +description = Smackover township, AR +station = ('keld', 0.0048881308509058485) +zone = ('arz066', 0.0039642487543923395) + +[fips0510393711] +centroid = (0.58910482215000037, -1.6163815866900628) +description = Union township, AR +station = ('kcdh', 0.0032765571469838832) +zone = ('arz067', 0.0037556613638590128) + +[fips0510393762] +centroid = (0.58804819982084311, -1.6190661823323105) +description = Valley township, AR +station = ('kcdh', 0.0013267637091714415) +zone = ('arz066', 0.0024219978056286115) + +[fips0510393921] +centroid = (0.58295143697929175, -1.6178391984148659) +description = Washington township, AR +station = ('keld', 0.0036664565234899959) +zone = ('arz067', 0.003921049969979191) + +[fips0510450] +centroid = (0.61217063975875197, -1.5849239816916272) +description = Caldwell town, AR +station = ('kuta', 0.0095518724575269377) +zone = ('arz048', 0.0012747983850532596) + +[fips0510480] +centroid = (0.58692181668148347, -1.6272719699836093) +description = Cale town, AR +station = ('kcdh', 0.0068212892978587788) +zone = ('arz061', 0.0012122549092982852) + +[fips05105] +centroid = (0.60992909594712308, -1.6218799672457906) +description = Perry County, AR +station = ('krue', 0.0058477188725876627) +zone = ('arz039', 6.8569219696250233e-05) + +[fips0510570] +centroid = (0.63044819892453463, -1.6078895475881443) +description = Calico Rock city, AR +station = ('kbpk', 0.0064282909706707241) +zone = ('arz015', 0.0030249624437504231) + +[fips0510590048] +centroid = (0.61023159641307878, -1.622639045844068) +description = Aplin township, AR +station = ('krue', 0.0053287394803805451) +zone = ('arz039', 0.00062452299666291406) + +[fips0510590690] +centroid = (0.611211040282713, -1.6238527652591974) +description = Casa township, AR +station = ('krue', 0.0041080519996272904) +zone = ('arz039', 0.0020001349637570457) + +[fips0510590771] +centroid = (0.61015803078510722, -1.6213287224548407) +description = Cherry Hill township, AR +station = ('krue', 0.005852667681266229) +zone = ('arz039', 0.00055921005277267174) + +[fips0510591326] +centroid = (0.61099247270048573, -1.6198281581771461) +description = Fourche Lafave township, AR +station = ('krue', 0.0059296914906357507) +zone = ('arz039', 0.0020361083913836156) + +[fips0510591776] +centroid = (0.61157345790188955, -1.6178576814516445) +description = Houston township, AR +station = ('krue', 0.0068215867232753764) +zone = ('arz031', 0.0038686871703726218) + +[fips0510592022] +centroid = (0.61043237909022829, -1.617047272720066) +description = Kenney township, AR +station = ('klrf', 0.0072255160777813451) +zone = ('arz039', 0.0040558323336387318) + +[fips0510592091] +centroid = (0.61178795886695969, -1.6199949069338817) +description = Lake township, AR +station = ('krue', 0.0052851113668196878) +zone = ('arz039', 0.0024456679694212719) + +[fips0510592436] +centroid = (0.60896904268547869, -1.6205118560050298) +description = Maumelle township, AR +station = ('krue', 0.0072172702474031349) +zone = ('arz039', 0.00153883589296347) + +[fips0510592682] +centroid = (0.61001906767006342, -1.625063971400204) +description = New Tennessee township, AR +station = ('krue', 0.0052111885149090384) +zone = ('arz039', 0.0025446729591074514) + +[fips0510592850] +centroid = (0.61128338418020811, -1.6164414340301139) +description = Perry township, AR +station = ('klrf', 0.0069128124289480021) +zone = ('arz031', 0.0043359888735177137) + +[fips0510592862] +centroid = (0.61162785981467427, -1.6215492622591228) +description = Petit Jean township, AR +station = ('krue', 0.0045253247593690822) +zone = ('arz039', 0.0017141208357506692) + +[fips0510593054] +centroid = (0.61007919426279467, -1.618425594136951) +description = Rankin township, AR +station = ('krue', 0.0073882299655631872) +zone = ('arz039', 0.0029004825992799406) + +[fips0510593228] +centroid = (0.61199949277230137, -1.6227106392499848) +description = Rose Creek township, AR +station = ('krue', 0.0036926042279704346) +zone = ('arz039', 0.0021422644858437819) + +[fips0510593653] +centroid = (0.60839413122987163, -1.6256169440671133) +description = Tyler township, AR +station = ('khot', 0.0065728150717256992) +zone = ('arz039', 0.0033769282045384157) + +[fips0510593714] +centroid = (0.61203713952426686, -1.6159947519146509) +description = Union township, AR +station = ('klrf', 0.0068132045141349826) +zone = ('arz031', 0.0037590662425763554) + +[fips0510593735] +centroid = (0.61022672694446578, -1.6199469801926218) +description = Union Valley township, AR +station = ('krue', 0.0064379304179611255) +zone = ('arz039', 0.0016739082172631883) + +[fips0510594119] +centroid = (0.60992719353823854, -1.6161431921675331) +description = Wye township, AR +station = ('klit', 0.0064129022374327391) +zone = ('arz044', 0.0051279645820500024) + +[fips0510600] +centroid = (0.58169041914143327, -1.6151309535612539) +description = Calion city, AR +station = ('keld', 0.0044810771590331972) +zone = ('arz073', 0.0028659340378139192) + +[fips05107] +centroid = (0.60084429067134981, -1.5856034558227212) +description = Phillips County, AR +station = ('kckm', 0.005347137393202632) +zone = ('arz058', 4.32586022136612e-05) + +[fips0510720] +centroid = (0.58586639862951007, -1.6205218741949363) +description = Camden city, AR +station = ('kcdh', 0.0014718285969430457) +zone = ('arz066', 0.00065530304537152141) + +[fips0510780] +centroid = (0.60704010479617454, -1.6117248562595243) +description = Cammack Village city, AR +station = ('klit', 0.0018035298478951229) +zone = ('arz044', 0.0005132275482195765) + +[fips0510790273] +centroid = (0.60186750739862394, -1.586386148725778) +description = Big Creek township, AR +station = ('kckm', 0.0063897848591831837) +zone = ('arz058', 0.0011767456463090363) + +[fips0510790849] +centroid = (0.60403833046896194, -1.5828548764100956) +description = Cleburne township, AR +station = ('kckm', 0.0059861938393046803) +zone = ('arz049', 0.0032702884872733936) + +[fips0510790870] +centroid = (0.60178057254858208, -1.5877595134075873) +description = Cleveland township, AR +station = ('kckm', 0.0073535135568198982) +zone = ('arz058', 0.0019946549811849963) + +[fips0510791005] +centroid = (0.60172863155004275, -1.5885794865434668) +description = Cypress township, AR +station = ('ksgt', 0.0081648915546209035) +zone = ('arz058', 0.0025995291021582712) + +[fips0510791704] +centroid = (0.60364674839798449, -1.5871372860759589) +description = Hickory Ridge township, AR +station = ('kckm', 0.0079140485565487029) +zone = ('arz058', 0.0030375665006377416) + +[fips0510791707] +centroid = (0.6036484937272365, -1.5885418572447938) +description = Hicksville township, AR +station = ('ksgt', 0.0079045693107838329) +zone = ('arz047', 0.003123254964180255) + +[fips0510791767] +centroid = (0.602836374572991, -1.5826480199871491) +description = Hornor township, AR +station = ('kckm', 0.0048442768888778305) +zone = ('arz058', 0.0031155968528297859) + +[fips0510792094] +centroid = (0.60057713312274696, -1.582608505732884) +description = Lake township, AR +station = ('kckm', 0.0030817398674194956) +zone = ('arz058', 0.0024844656824275693) + +[fips0510792391] +centroid = (0.60384007851922794, -1.5859851593301324) +description = Marion township, AR +station = ('kckm', 0.0073377421319780626) +zone = ('arz058', 0.0029701839968555807) + +[fips0510792547] +centroid = (0.59675507150038964, -1.5877139428608178) +description = Mooney township, AR +station = ('kckm', 0.0068916720005699058) +zone = ('arz058', 0.0044869589557038798) + +[fips0510793276] +centroid = (0.60282291808445809, -1.5813297553498253) +description = St. Francis township, AR +station = ('kckm', 0.0043867398260340803) +zone = ('msz007', 0.0038219891072811653) + +[fips0510793462] +centroid = (0.60262323496473746, -1.5841600859846143) +description = Spring Creek township, AR +station = ('kckm', 0.0054181722628463894) +zone = ('arz058', 0.0021015147153561572) + +[fips0510793573] +centroid = (0.59941104374290444, -1.58615815636559) +description = Tappan township, AR +station = ('kckm', 0.0053900327496966939) +zone = ('arz058', 0.0015471529429743587) + +[fips05109] +centroid = (0.59617289947509444, -1.6346519725526198) +description = Pike County, AR +station = ('kmwt', 0.0069239521632904113) +zone = ('arz052', 9.9883080413312272e-05) + +[fips0510900] +centroid = (0.62252141960745955, -1.5926797361952996) +description = Campbell Station city, AR +station = ('km19', 0.0012228453959974967) +zone = ('arz025', 0.0013179108524024935) + +[fips0510990045] +centroid = (0.59715440283324595, -1.6335220114882938) +description = Antoine township, AR +station = ('kmwt', 0.0058588373946792558) +zone = ('arz052', 0.0012651824518546682) + +[fips0510990468] +centroid = (0.59395371333118363, -1.6368145576688884) +description = Brewer township, AR +station = ('kmwt', 0.009502233172990265) +zone = ('arz052', 0.0029457924912316647) + +[fips0510990810] +centroid = (0.59854244573406457, -1.6324870661484461) +description = Clark township, AR +station = ('kmwt', 0.0045235116449105868) +zone = ('arz052', 0.0028748073565221868) + +[fips0510991194] +centroid = (0.59890317038386676, -1.6350748134705004) +description = Eagle township, AR +station = ('kmwt', 0.0043508777647289828) +zone = ('arz052', 0.0026634249259166621) + +[fips0510992523] +centroid = (0.59422430917841285, -1.6325645064073571) +description = Missouri township, AR +station = ('km89', 0.0069000464163604374) +zone = ('arz052', 0.0026551004672897651) + +[fips0510992601] +centroid = (0.59882386262265608, -1.6379158255203119) +description = Mountain township, AR +station = ('kmwt', 0.0056387773361398349) +zone = ('arz052', 0.003740816410073186) + +[fips0510992646] +centroid = (0.5954875959442989, -1.6366973239030318) +description = Muddy Fork township, AR +station = ('kmwt', 0.0080189562896762073) +zone = ('arz052', 0.001893469274157076) + +[fips0510992880] +centroid = (0.59567242631208506, -1.6327011133279106) +description = Pike City township, AR +station = ('kmwt', 0.0073576058174972805) +zone = ('arz052', 0.0016900646115226557) + +[fips0510993312] +centroid = (0.59325507548490275, -1.6328209825409377) +description = Saline township, AR +station = ('km89', 0.0073028742298772266) +zone = ('arz052', 0.0033579066487238289) + +[fips0510993345] +centroid = (0.59757478283688126, -1.6361320292116035) +description = Self Creek township, AR +station = ('kmwt', 0.0059053761726606769) +zone = ('arz052', 0.0018135169427645297) + +[fips0510993606] +centroid = (0.5946131510824646, -1.6349229349189918) +description = Thompson township, AR +station = ('kmwt', 0.008499623373257598) +zone = ('arz052', 0.0016739944694161093) + +[fips0510993993] +centroid = (0.59739618329452471, -1.637989583134501) +description = White township, AR +station = ('kmwt', 0.0068020692820207921) +zone = ('arz052', 0.003012710201719628) + +[fips0510994110] +centroid = (0.59376575882403626, -1.6310857063854349) +description = Wolf Creek township, AR +station = ('km89', 0.0057820297939479102) +zone = ('arz052', 0.0038455540870433211) + +[fips05111] +centroid = (0.62079583002930516, -1.5826749504175073) +description = Poinsett County, AR +station = ('kjbr', 0.0046341513495587773) +zone = ('arz027', 0.00026603943822751171) + +[fips0511190402] +centroid = (0.62089067122085861, -1.5832999179160616) +description = Bolivar township, AR +station = ('kjbr', 0.0046159352726678317) +zone = ('arz027', 0.00075955549800866694) + +[fips0511191119] +centroid = (0.62233606564089761, -1.5880048543405401) +description = Dobson township, AR +station = ('km19', 0.0027185607098297667) +zone = ('arz025', 0.0033967415614373892) + +[fips0511191518] +centroid = (0.62232911923047474, -1.5833445808916202) +description = Greenfield township, AR +station = ('kjbr', 0.0032317113272094162) +zone = ('arz027', 0.0016500742530535038) + +[fips0511191527] +centroid = (0.62176834494180899, -1.5772106386887785) +description = Greenwood township, AR +station = ('kjbr', 0.0054109230200394811) +zone = ('arz028', 0.0050646355161388448) + +[fips0511192229] +centroid = (0.61970060101709368, -1.5789498418350985) +description = Little River township, AR +station = ('kjbr', 0.0062700822357422883) +zone = ('arz027', 0.0030210339385309784) + +[fips0511192304] +centroid = (0.62076549620690546, -1.5804103682597521) +description = Lunsford township, AR +station = ('kjbr', 0.0048521388268008715) +zone = ('arz027', 0.0015951675115353126) + +[fips0511192796] +centroid = (0.61968365387005686, -1.587047663418869) +description = Owen township, AR +station = ('km19', 0.0041739892849285221) +zone = ('arz035', 0.0043052141082633166) + +[fips0511193333] +centroid = (0.61949742723886903, -1.5834319520739748) +description = Scott township, AR +station = ('kjbr', 0.0060045369392756395) +zone = ('arz027', 0.0016350181428573759) + +[fips0511193660] +centroid = (0.61923245135183125, -1.5767208294874988) +description = Tyronza township, AR +station = ('kawm', 0.006226337664731134) +zone = ('arz036', 0.0047585898183454562) + +[fips0511193973] +centroid = (0.6219247438960801, -1.5865996723064673) +description = West Prairie township, AR +station = ('km19', 0.0038396906661298312) +zone = ('arz027', 0.0035962045986348955) + +[fips0511194068] +centroid = (0.6224066816624334, -1.5799251143678203) +description = Willis township, AR +station = ('kjbr', 0.0035002867928491427) +zone = ('arz027', 0.0025015814701769704) + +[fips05113] +centroid = (0.60198002877550005, -1.6446391828648443) +description = Polk County, AR +station = ('kmez', 0.0010328839458751088) +zone = ('arz040', 9.7845617682088795e-05) + +[fips0511390003] +centroid = (0.60458210525071332, -1.6448810854991707) +description = Acorn township, AR +station = ('kmez', 0.0017611585650834016) +zone = ('arz040', 0.0027019607985324179) + +[fips0511390294] +centroid = (0.60172086483487142, -1.6404000573644304) +description = Big Fork township, AR +station = ('kmez', 0.0033129858316365141) +zone = ('arz040', 0.003458494190756852) + +[fips0511390711] +centroid = (0.60381686564017645, -1.6480592777071748) +description = Cedar township, AR +station = ('kmez', 0.003344176951668948) +zone = ('arz040', 0.0034458155860354607) + +[fips0511390732] +centroid = (0.60231869246355707, -1.6436549742463522) +description = Center township, AR +station = ('kmez', 0.00073106324819125781) +zone = ('arz040', 0.00088187502591094218) + +[fips0511390936] +centroid = (0.60188082426081668, -1.6469223876857182) +description = Cove township, AR +station = ('kmez', 0.0025179611513832358) +zone = ('arz040', 0.0019220524923331715) + +[fips0511391197] +centroid = (0.60272650609657796, -1.646535273657626) +description = Eagle township, AR +station = ('kmez', 0.0019803148624028695) +zone = ('arz040', 0.0018073198863858993) + +[fips0511391278] +centroid = (0.59995762850475154, -1.6422456208753669) +description = Faulkner township, AR +station = ('kmez', 0.0033582061589869814) +zone = ('arz040', 0.0027345872355124192) + +[fips0511391374] +centroid = (0.60447330142514399, -1.6473393642973122) +description = Freedom township, AR +station = ('kmez', 0.0030505872030609418) +zone = ('arz040', 0.0034342268843111771) + +[fips0511391395] +centroid = (0.60214778982320172, -1.6417324766219878) +description = Fulton township, AR +station = ('kmez', 0.0021346967076408775) +zone = ('arz040', 0.0023696229554625897) + +[fips0511391416] +centroid = (0.60060123611971694, -1.6422321818401264) +description = Gap Springs township, AR +station = ('kmez', 0.002810854750861728) +zone = ('arz040', 0.0023334913743383386) + +[fips0511392484] +centroid = (0.60311992076327003, -1.6399570229871041) +description = Mill Creek township, AR +station = ('kmez', 0.003453610644291674) +zone = ('arz041', 0.0043680475691216048) + +[fips0511392604] +centroid = (0.60453271243288187, -1.6406870069467507) +description = Mountain township, AR +station = ('kmez', 0.003266562841614821) +zone = ('arz037', 0.0039932546750419979) + +[fips0511392787] +centroid = (0.60453456248188897, -1.6427002616922188) +description = Ouachita township, AR +station = ('kmez', 0.001997626498204101) +zone = ('arz040', 0.0030680763128053973) + +[fips0511392805] +centroid = (0.59817802098624817, -1.6469191413733095) +description = Ozark township, AR +station = ('kdeq', 0.0039328790824364043) +zone = ('arz040', 0.0041806287302336154) + +[fips0511392967] +centroid = (0.60353302274392462, -1.6457124032751884) +description = Potter township, AR +station = ('kmez', 0.0014260770888401978) +zone = ('arz040', 0.0018844345056636567) + +[fips0511393162] +centroid = (0.60559312212651606, -1.6469846610334293) +description = Rich Mountain township, AR +station = ('kmez', 0.0035445433896193028) +zone = ('arz040', 0.0041942472813930164) + +[fips0511393996] +centroid = (0.60037177768295735, -1.6468160796809792) +description = White township, AR +station = ('kmez', 0.0033751968276125332) +zone = ('arz040', 0.0023823944053079581) + +[fips0511410] +centroid = (0.62411626657134689, -1.576418154488618) +description = Caraway city, AR +station = ('kjbr', 0.0048186058790045099) +zone = ('arz028', 0.0037979610289839865) + +[fips05115] +centroid = (0.61881166992246794, -1.6237065939343429) +description = Pope County, AR +station = ('krue', 0.0037132883415595085) +zone = ('arz022', 0.00013957914281363754) + +[fips0511500] +centroid = (0.60729345679039404, -1.601173817332443) +description = Carlisle city, AR +station = ('ksgt', 0.0042245968417397358) +zone = ('arz045', 0.0022427073339252356) + +[fips0511590159] +centroid = (0.61783512329939205, -1.6272689854705886) +description = Bayliss township, AR +station = ('krue', 0.0032442487289870408) +zone = ('arz022', 0.0029862778524992238) + +[fips0511590558] +centroid = (0.61636386309983837, -1.6210779884544992) +description = Burnett township, AR +station = ('krue', 0.0033212756948998367) +zone = ('arz031', 0.0027188328828424862) + +[fips0511590735] +centroid = (0.61820590104568574, -1.6222145468633979) +description = Center township, AR +station = ('krue', 0.0036972124126596791) +zone = ('arz022', 0.0013393062071180429) + +[fips0511590813] +centroid = (0.61670212536216751, -1.6273217816804613) +description = Clark township, AR +station = ('krue', 0.0024645026461741068) +zone = ('arz022', 0.0035164139900857793) + +[fips0511590921] +centroid = (0.61668898303289987, -1.6221995544851233) +description = Convenience township, AR +station = ('krue', 0.0026451196241432788) +zone = ('arz022', 0.0023574411839624825) + +[fips0511591134] +centroid = (0.61757786176764817, -1.6252682447358573) +description = Dover township, AR +station = ('krue', 0.0023682792687276244) +zone = ('arz022', 0.0016533378884796837) + +[fips0511591377] +centroid = (0.62189617285622512, -1.6249032789359728) +description = Freeman township, AR +station = ('krue', 0.0066676116798672913) +zone = ('arz022', 0.0033521425569717459) + +[fips0511591407] +centroid = (0.61418659976456058, -1.6243208451112896) +description = Galla township, AR +station = ('krue', 0.0011448705906467829) +zone = ('arz022', 0.0045145619279264087) + +[fips0511591536] +centroid = (0.6183265731101687, -1.6211690597348682) +description = Griffin township, AR +station = ('krue', 0.0043437511745849245) +zone = ('arz022', 0.0021343658710833552) + +[fips0511591560] +centroid = (0.61575479555076995, -1.6230893407910825) +description = Gum Log township, AR +station = ('krue', 0.001570428902259765) +zone = ('arz022', 0.002972241635771351) + +[fips0511591812] +centroid = (0.61555177885217793, -1.6255669752906285) +description = Illinois township, AR +station = ('krue', 0.00063223046511864175) +zone = ('arz022', 0.0034579496012448348) + +[fips0511591875] +centroid = (0.62030422313889588, -1.6221070171281826) +description = Jackson township, AR +station = ('krue', 0.0055634233033877295) +zone = ('arz022', 0.0021078236180875017) + +[fips0511592181] +centroid = (0.61964047442436243, -1.6238451730769512) +description = Liberty township, AR +station = ('krue', 0.0044952027548562498) +zone = ('arz022', 0.00096605631482386172) + +[fips0511592415] +centroid = (0.61922983335795323, -1.6263949071278971) +description = Martin township, AR +station = ('krue', 0.0041824954675313275) +zone = ('arz022', 0.002221510638344647) + +[fips0511592553] +centroid = (0.61698827209303198, -1.6229160645029448) +description = Moreland township, AR +station = ('krue', 0.0023921331838239767) +zone = ('arz022', 0.0018216642274713293) + +[fips0511592871] +centroid = (0.61792247702845438, -1.6234381797486785) +description = Phoenix township, AR +station = ('krue', 0.002946619985395622) +zone = ('arz022', 0.00079728374923243583) + +[fips0511593420] +centroid = (0.62240458726733094, -1.6212311585496542) +description = Smyrna township, AR +station = ('kcca', 0.0063282255151430921) +zone = ('arz022', 0.0042546639088794228) + +[fips0511593765] +centroid = (0.61670329473276631, -1.6240932716301222) +description = Valley township, AR +station = ('krue', 0.001615569197630511) +zone = ('arz022', 0.001993419869576143) + +[fips0511594089] +centroid = (0.61467092863198891, -1.6220102735277446) +description = Wilson township, AR +station = ('krue', 0.0024265308199997201) +zone = ('arz031', 0.0034087949095008693) + +[fips05117] +centroid = (0.60786719887540219, -1.5979745939069523) +description = Prairie County, AR +station = ('ksgt', 0.0039855924050570474) +zone = ('arz046', 6.809161875170979e-05) + +[fips0511790216] +centroid = (0.60283461179044651, -1.5991729195180793) +description = Belcher township, AR +station = ('ksgt', 0.0013508237507579158) +zone = ('arz046', 0.0051658598922095424) + +[fips0511790543] +centroid = (0.61042581665224072, -1.5993243966438597) +description = Bullard township, AR +station = ('ksrc', 0.0043906586781897895) +zone = ('arz046', 0.0027900423022889113) + +[fips0511790612] +centroid = (0.61054257917919919, -1.5959113878382922) +description = Calhoun township, AR +station = ('ksrc', 0.0058576459316792831) +zone = ('arz046', 0.0031103645766466376) + +[fips0511790738] +centroid = (0.60817488296923616, -1.5994844433362676) +description = Center township, AR +station = ('ksgt', 0.0044309984010020061) +zone = ('arz046', 0.0013324443936297439) + +[fips0511791083] +centroid = (0.61180399844278555, -1.5970610187632885) +description = Des Arc township, AR +station = ('ksrc', 0.0043151127957677575) +zone = ('arz046', 0.0039707516299646323) + +[fips0511791650] +centroid = (0.60704513134442017, -1.5986302966536341) +description = Hazen township, AR +station = ('ksgt', 0.0031868310176811966) +zone = ('arz046', 0.0010394834343071242) + +[fips0511791698] +centroid = (0.61063283015481973, -1.6012734756327318) +description = Hickory Plain township, AR +station = ('ksrc', 0.0039336315849152603) +zone = ('arz046', 0.0038949204582814428) + +[fips0511792289] +centroid = (0.60762416177706191, -1.595424580603326) +description = Lower Surrounded Hill township, AR +station = ('ksgt', 0.0043556584548310696) +zone = ('arz046', 0.0020480529788295498) + +[fips0511793219] +centroid = (0.60451489262121905, -1.5964215824852352) +description = Roc Roe township, AR +station = ('ksgt', 0.0015484245075719594) +zone = ('arz046', 0.0035892927750156133) + +[fips0511793654] +centroid = (0.6052318738779382, -1.5990671525654083) +description = Tyler township, AR +station = ('ksgt', 0.0015489013732608065) +zone = ('arz046', 0.0028291933708475552) + +[fips0511793717] +centroid = (0.60930103921579304, -1.5995209207176342) +description = Union township, AR +station = ('ksrc', 0.0054229619289442189) +zone = ('arz046', 0.0019380757402538806) + +[fips0511793747] +centroid = (0.60888437676346441, -1.5953949623659196) +description = Upper Surrounded Hill township, AR +station = ('ksgt', 0.0054855947454102178) +zone = ('arz046', 0.0022805354956751574) + +[fips0511793939] +centroid = (0.60670405910199543, -1.5965239634991573) +description = Watensaw township, AR +station = ('ksgt', 0.0031175013552052636) +zone = ('arz046', 0.0016389759708807104) + +[fips0511794023] +centroid = (0.60983182874790953, -1.5976227180764575) +description = White River township, AR +station = ('ksrc', 0.0055292512004057612) +zone = ('arz046', 0.0019519726909324677) + +[fips0511830] +centroid = (0.59467814714380884, -1.6153982158296116) +description = Carthage city, AR +station = ('km89', 0.007395969101742862) +zone = ('arz062', 0.0022949618014482687) + +[fips0511890] +centroid = (0.61129930158298629, -1.6239390019775384) +description = Casa town, AR +station = ('krue', 0.0040073256446626765) +zone = ('arz039', 0.0021107631977950727) + +[fips05119] +centroid = (0.60692058464899801, -1.6112271407167329) +description = Pulaski County, AR +station = ('klit', 0.0013878997771600953) +zone = ('arz044', 9.8285671354518986e-05) + +[fips0511920] +centroid = (0.6248430565784624, -1.5870640346072526) +description = Cash town, AR +station = ('kjbr', 0.004032068463955857) +zone = ('arz017', 0.0048712380681925696) + +[fips0511990300] +centroid = (0.60635834428376045, -1.6128949075367687) +description = Big Rock township, AR +station = ('klit', 0.0025677927976144941) +zone = ('arz044', 0.0015193177489889031) + +[fips0511991731] +centroid = (0.60743112836179136, -1.6090556544212793) +description = Hill township, AR +station = ('klit', 0.0013557903317348971) +zone = ('arz044', 0.0018118043589010319) + +[fips05121] +centroid = (0.63427532200172276, -1.5887460084073997) +description = Randolph County, AR +station = ('karg', 0.0039560695921887585) +zone = ('arz008', 9.6703369969573212e-06) + +[fips0512190] +centroid = (0.61613349709186771, -1.6383022763232884) +description = Caulksville town, AR +station = ('kfsm', 0.0071255820416326558) +zone = ('arz030', 0.0026351366665365835) + +[fips0512190093] +centroid = (0.63638727511639104, -1.5905938233930712) +description = Baker township, AR +station = ('karg', 0.0065068621905271969) +zone = ('arz008', 0.0025854092225961103) + +[fips0512190486] +centroid = (0.63137589378184711, -1.5881897545214967) +description = Bristow township, AR +station = ('karg', 0.0013420908393358786) +zone = ('arz017', 0.0028086424475972324) + +[fips0512190564] +centroid = (0.63133196384457446, -1.5902276358627101) +description = Butler township, AR +station = ('karg', 0.0028552339362269657) +zone = ('arz017', 0.0022942956869570871) + +[fips0512190909] +centroid = (0.6347460023944006, -1.5870345734494791) +description = Columbia township, AR +station = ('k4m9', 0.003978376145711224) +zone = ('arz008', 0.0014468126394833771) + +[fips0512190990] +centroid = (0.63352318981386835, -1.5854080313063754) +description = Current River township, AR +station = ('karg', 0.0030875235165291103) +zone = ('arz008', 0.0027849443281199493) + +[fips0512191012] +centroid = (0.63588709865935444, -1.5914135521828552) +description = Dalton township, AR +station = ('karg', 0.0064290407662511845) +zone = ('arz008', 0.0026901213784426841) + +[fips0512191059] +centroid = (0.63284893421723798, -1.5878562221014403) +description = Demun township, AR +station = ('karg', 0.0023638316549651033) +zone = ('arz008', 0.0015956137249792878) + +[fips0512191204] +centroid = (0.63159186082348895, -1.5890412483036669) +description = East Roanoke township, AR +station = ('karg', 0.0020454282384652794) +zone = ('arz017', 0.002696877915677123) + +[fips0512191221] +centroid = (0.63453254862688169, -1.5894688888769906) +description = Eleven Point township, AR +station = ('karg', 0.0044449858445937858) +zone = ('arz008', 0.00064337638027791612) + +[fips0512191323] +centroid = (0.63431998497728126, -1.5878989826681142) +description = Foster township, AR +station = ('karg', 0.0037806674197314416) +zone = ('arz008', 0.00067451352751853044) + +[fips0512191833] +centroid = (0.6357148346621827, -1.5880812648551925) +description = Ingram township, AR +station = ('k4m9', 0.0047985529126684029) +zone = ('arz008', 0.0015293639116683829) + +[fips0512191878] +centroid = (0.63560449494687155, -1.5897666595006734) +description = Jackson township, AR +station = ('karg', 0.0055071711977519623) +zone = ('arz008', 0.0015644537638211092) + +[fips0512191899] +centroid = (0.6340069252693511, -1.5921053483384682) +description = Janes Creek township, AR +station = ('karg', 0.0054448465640152986) +zone = ('arz008', 0.0027288088855408213) + +[fips0512192220] +centroid = (0.63617572375775677, -1.585028334927604) +description = Little Black township, AR +station = ('k4m9', 0.0024828932016687619) +zone = ('arz008', 0.0035354476932634204) + +[fips0512192742] +centroid = (0.6318597863169626, -1.5854791534733941) +description = O'Kean township, AR +station = ('karg', 0.0016133441018560512) +zone = ('arz008', 0.0035694783711026647) + +[fips0512193117] +centroid = (0.63450282566972027, -1.5842985778607601) +description = Reyno township, AR +station = ('k4m9', 0.0019112719308722458) +zone = ('arz008', 0.0035801091798096014) + +[fips0512193126] +centroid = (0.63530743990818217, -1.5859580369135564) +description = Richardson township, AR +station = ('k4m9', 0.0030723360767430405) +zone = ('arz008', 0.0024611104783015293) + +[fips0512193255] +centroid = (0.63369484294580192, -1.5861606347331278) +description = Running Lake township, AR +station = ('karg', 0.0030918793971259025) +zone = ('arz008', 0.002154602047454466) + +[fips0512193363] +centroid = (0.63362687982472932, -1.5893163645536588) +description = Shiloh township, AR +station = ('karg', 0.0036090166177366232) +zone = ('arz008', 0.00080285359535585627) + +[fips0512193378] +centroid = (0.63652939727738089, -1.5867663512500325) +description = Siloam township, AR +station = ('k4m9', 0.003919122055724541) +zone = ('arz008', 0.0027522745692973995) + +[fips0512193480] +centroid = (0.63246913311871134, -1.5912463147339293) +description = Spring River township, AR +station = ('karg', 0.0040288404937815197) +zone = ('arz008', 0.0027153272305376229) + +[fips0512193720] +centroid = (0.63620466131675479, -1.5934542958640421) +description = Union township, AR +station = ('karg', 0.007727239727741031) +zone = ('arz008', 0.004259105718881352) + +[fips0512193891] +centroid = (0.63643804674433158, -1.5891866516836506) +description = Warm Springs township, AR +station = ('k4m9', 0.005781782309198031) +zone = ('arz008', 0.0021896266831229233) + +[fips0512193948] +centroid = (0.63383094372087245, -1.590429640270336) +description = Water Valley township, AR +station = ('karg', 0.0043292566825402501) +zone = ('arz008', 0.0014369833060974364) + +[fips0512193974] +centroid = (0.63239017442335121, -1.589837100989284) +description = West Roanoke township, AR +station = ('karg', 0.0030119066914206603) +zone = ('arz008', 0.0020872124956742501) + +[fips0512194059] +centroid = (0.63164493628604212, -1.5867454771121787) +description = Wiley township, AR +station = ('karg', 0.0010001051996541277) +zone = ('arz008', 0.0030838449396819014) + +[fips0512280] +centroid = (0.62741848187599769, -1.5978017015912496) +description = Cave City city, AR +station = ('kbvx', 0.0040255828246474213) +zone = ('arz016', 0.0036256358444666315) + +[fips05123] +centroid = (0.6111172288354183, -1.5837501430499059) +description = St. Francis County, AR +station = ('kuta', 0.0081266874234548498) +zone = ('arz048', 0.00015436533068816381) + +[fips0512340] +centroid = (0.63306303375658002, -1.6444796074113344) +description = Cave Springs city, AR +station = ('kxna', 0.0011192380551032324) +zone = ('arz001', 0.0012776160944694211) + +[fips0512390321] +centroid = (0.60986399516602374, -1.5806374705020219) +description = Black Fish township, AR +station = ('kuta', 0.0055307425906263152) +zone = ('arz048', 0.0029728448927803406) + +[fips0512391368] +centroid = (0.60993876507117917, -1.5835911784616343) +description = Franks township, AR +station = ('kuta', 0.0072299142947076372) +zone = ('arz048', 0.0013272179711927255) + +[fips0512391437] +centroid = (0.61004859864100713, -1.5788173713448719) +description = Garland township, AR +station = ('kawm', 0.0045093353988216699) +zone = ('arz036', 0.0049387028925480482) + +[fips0512391482] +centroid = (0.61032556494000623, -1.5881021389930465) +description = Goodwin township, AR +station = ('ksgt', 0.010462178871732666) +zone = ('arz048', 0.0036053782270822144) + +[fips0512391539] +centroid = (0.61213744359637912, -1.5814717204311826) +description = Griggs township, AR +station = ('kawm', 0.0055040352657339201) +zone = ('arz048', 0.0021385123443986641) + +[fips0512391680] +centroid = (0.6119283706052826, -1.5789087044246288) +description = Heth township, AR +station = ('kawm', 0.0035388209154716918) +zone = ('arz036', 0.0033960602706316349) + +[fips0512391980] +centroid = (0.61276075303214372, -1.5831585986065275) +description = Johnson township, AR +station = ('kawm', 0.0067942978988579823) +zone = ('arz048', 0.0016134037071102523) + +[fips0512392118] +centroid = (0.61238124863959009, -1.5875390085098904) +description = L'Anguille township, AR +station = ('km19', 0.010093819697755337) +zone = ('arz048', 0.0032266659757195803) + +[fips0512392340] +centroid = (0.6111220983040313, -1.5847143327418778) +description = Madison township, AR +station = ('kuta', 0.0087004519910401819) +zone = ('arz048', 0.00072087709591352764) + +[fips0512393009] +centroid = (0.61012408413115593, -1.5865106605146153) +description = Prairie township, AR +station = ('kuta', 0.0092912730407889218) +zone = ('arz048', 0.0024545385459245213) + +[fips0512393588] +centroid = (0.61258363701965146, -1.5851735114147849) +description = Telico township, AR +station = ('kuta', 0.0099915563516818247) +zone = ('arz048', 0.0017199093660638474) + +[fips0512393981] +centroid = (0.61001405857511026, -1.5900330491044052) +description = Wheatley township, AR +station = ('ksgt', 0.0090508705605859378) +zone = ('arz034', 0.0045699516378283666) + +[fips05125] +centroid = (0.6047308422095683, -1.6174745118676617) +description = Saline County, AR +station = ('khot', 0.0067614582394746204) +zone = ('arz043', 4.5500270534896075e-05) + +[fips0512520] +centroid = (0.62104321299748289, -1.6469276934866444) +description = Cedarville city, AR +station = ('kfsm', 0.0043607140221769312) +zone = ('arz019', 0.0016921162375514143) + +[fips0512590105] +centroid = (0.6028737246189837, -1.6108240569259848) +description = Banner township, AR +station = ('klit', 0.0034470387284114517) +zone = ('arz044', 0.0039842588149039135) + +[fips0512590153] +centroid = (0.60321526810030646, -1.6151851111279432) +description = Bauxite township, AR +station = ('klit', 0.0053647741136158807) +zone = ('arz043', 0.0024215365495780686) + +[fips0512590198] +centroid = (0.60596089790649632, -1.6159565117507395) +description = Beaver township, AR +station = ('klit', 0.0050863516529754188) +zone = ('arz043', 0.0017979205010755085) + +[fips0512590522] +centroid = (0.60383655295413885, -1.6142064875630573) +description = Bryant township, AR +station = ('klit', 0.0043498208027432676) +zone = ('arz043', 0.0028529371988721183) + +[fips0512591179] +centroid = (0.60451344399793983, -1.619604389513748) +description = Dyer township, AR +station = ('khot', 0.0051123913767205584) +zone = ('arz043', 0.0017314043754974469) + +[fips0512591269] +centroid = (0.6023211010179248, -1.6179895934365103) +description = Fairplay township, AR +station = ('khot', 0.0057161557843500473) +zone = ('arz043', 0.0024084867407192369) + +[fips0512591638] +centroid = (0.60217957226888053, -1.6164581891909329) +description = Haskell township, AR +station = ('klit', 0.0068190385503612387) +zone = ('arz043', 0.0026629491582478584) + +[fips0512591743] +centroid = (0.60751347299590042, -1.6208740641846962) +description = Holland township, AR +station = ('khot', 0.0065634628310252668) +zone = ('arz039', 0.0025918361849717369) + +[fips0512591809] +centroid = (0.60272015309810079, -1.6128855002121003) +description = Hurricane township, AR +station = ('klit', 0.0043283868284051527) +zone = ('arz055', 0.0042503061313777322) + +[fips0512591947] +centroid = (0.60614941091900421, -1.6207361482672036) +description = Jefferson township, AR +station = ('khot', 0.005500783895373406) +zone = ('arz043', 0.0030228963083819768) + +[fips0512592034] +centroid = (0.60425241255501161, -1.6174120465337329) +description = Kentucky township, AR +station = ('khot', 0.0066205623743283157) +zone = ('arz043', 0.00045234226845938314) + +[fips0512592184] +centroid = (0.60301120420416321, -1.6190410670443742) +description = Liberty township, AR +station = ('khot', 0.0049669908776101565) +zone = ('arz043', 0.0021041250113747476) + +[fips0512592370] +centroid = (0.60505231440449314, -1.6213815186647136) +description = Marble township, AR +station = ('khot', 0.0043208522813970758) +zone = ('arz043', 0.0032028611533399176) + +[fips0512592676] +centroid = (0.60337781061354467, -1.6170238678547968) +description = Newcomb township, AR +station = ('khot', 0.0066679982406287813) +zone = ('arz043', 0.0013791985346420772) + +[fips0512592775] +centroid = (0.60374816948081789, -1.6127161509147796) +description = Otter township, AR +station = ('klit', 0.0034520286085042633) +zone = ('arz044', 0.0033594961260931949) + +[fips0512592799] +centroid = (0.60475644618969493, -1.6141975514772871) +description = Owen township, AR +station = ('klit', 0.0039162089082497688) +zone = ('arz043', 0.0027271412751228596) + +[fips0512593291] +centroid = (0.60458824880968032, -1.6159298431197691) +description = Salem township, AR +station = ('klit', 0.0053145009327430614) +zone = ('arz043', 0.0013060480764434635) + +[fips0512593354] +centroid = (0.60193587194542453, -1.6151630850727829) +description = Shaw township, AR +station = ('klit', 0.0061595092040420824) +zone = ('arz043', 0.0033713241158192177) + +[fips0512593417] +centroid = (0.60191829647985695, -1.6135150230200024) +description = Smith township, AR +station = ('klit', 0.0052821244328715902) +zone = ('arz055', 0.003462196598884961) + +[fips0512593648] +centroid = (0.60095250108497344, -1.6168474150674201) +description = Traskwood township, AR +station = ('khot', 0.0067010358513086609) +zone = ('arz043', 0.0037845245175925982) + +[fips0512593723] +centroid = (0.60560045250937444, -1.6177898055970343) +description = Union township, AR +station = ('khot', 0.0069540591466686194) +zone = ('arz043', 0.00093169501675220224) + +[fips05127] +centroid = (0.60840203757138323, -1.6417202418639316) +description = Scott County, AR +station = ('kmez', 0.0058245825108253092) +zone = ('arz037', 3.4054294983374712e-05) + +[fips0512790] +centroid = (0.6175105444183987, -1.6157510515911948) +description = Center Ridge CDP, AR +station = ('kcca', 0.0042231520811799326) +zone = ('arz031', 0.0027357585219443606) + +[fips0512790324] +centroid = (0.60694081301502845, -1.6477407202121011) +description = Black Fork township, AR +station = ('kmez', 0.0049849097495948645) +zone = ('okz076', 0.0047543470669118033) + +[fips0512790348] +centroid = (0.60682431228745792, -1.6446381007607083) +description = Blansett township, AR +station = ('kmez', 0.0039166372310573587) +zone = ('arz037', 0.0028911753065584849) + +[fips0512790453] +centroid = (0.60845282665261624, -1.6461732574641774) +description = Brawley township, AR +station = ('krkr', 0.0051508578340801027) +zone = ('arz037', 0.0036587920070184137) + +[fips0512790702] +centroid = (0.60948445586688504, -1.6459890379616291) +description = Cauthron township, AR +station = ('krkr', 0.0048118471826375398) +zone = ('arz037', 0.0036598044217020561) + +[fips0512790714] +centroid = (0.60701039929230549, -1.6378780042354211) +description = Cedar township, AR +station = ('kmwt', 0.00547185576525956) +zone = ('arz037', 0.0034569218332286406) + +[fips0512790882] +centroid = (0.60949543398788009, -1.6476316371338513) +description = Coal township, AR +station = ('krkr', 0.003587466998697616) +zone = ('arz029', 0.0051833549091586809) + +[fips0512791071] +centroid = (0.60879346256272793, -1.6437539693215255) +description = Denton township, AR +station = ('kmez', 0.005873371865037183) +zone = ('arz037', 0.0017112432251521269) + +[fips0512791689] +centroid = (0.60921286518198225, -1.6421497150329696) +description = Hickman township, AR +station = ('kmez', 0.0064942291829834641) +zone = ('arz037', 0.00085528183686642528) + +[fips0512791758] +centroid = (0.60995009225802466, -1.6438561583492297) +description = Hon township, AR +station = ('kmez', 0.007025230558849755) +zone = ('arz037', 0.0023192220984217587) + +[fips0512791797] +centroid = (0.61043449093862323, -1.6363269301291736) +description = Hunt township, AR +station = ('kmwt', 0.0078189848731089282) +zone = ('arz030', 0.004224049643963639) + +[fips0512791890] +centroid = (0.60927489418359815, -1.6381999651225363) +description = James township, AR +station = ('kmwt', 0.0074299523788643575) +zone = ('arz037', 0.0030024627691191308) + +[fips0512791998] +centroid = (0.60884491486907688, -1.6360494227781066) +description = Jones township, AR +station = ('kmwt', 0.0062451034068205947) +zone = ('arz038', 0.0051196610073721257) + +[fips0512792012] +centroid = (0.60778832744650446, -1.6405261923094721) +description = Keener township, AR +station = ('kmez', 0.0056976910283738687) +zone = ('arz037', 0.00117045858742707) + +[fips0512792064] +centroid = (0.60837501987456233, -1.6370919428469077) +description = La Fave township, AR +station = ('kmwt', 0.0061885203731207993) +zone = ('arz037', 0.0037934005352735834) + +[fips0512792076] +centroid = (0.60869780106642624, -1.6476891457327045) +description = Lafayette township, AR +station = ('krkr', 0.0040008569876366076) +zone = ('okz076', 0.0042853942104300116) + +[fips0512792109] +centroid = (0.60869127353502372, -1.6398764411355395) +description = Lamb township, AR +station = ('kmez', 0.0067461974057203685) +zone = ('arz037', 0.0015293987127425884) + +[fips0512792160] +centroid = (0.61141639572250261, -1.6438308161684907) +description = Lewis township, AR +station = ('kfsm', 0.0058723740441211317) +zone = ('arz029', 0.0031936170009057912) + +[fips0512792235] +centroid = (0.60736056470013311, -1.6359647568560922) +description = Little Texas township, AR +station = ('kmwt', 0.0048565003777802226) +zone = ('arz041', 0.0046685007795055789) + +[fips0512792487] +centroid = (0.6058117246153284, -1.6410410469855179) +description = Mill Creek township, AR +station = ('kmez', 0.0038509030770819412) +zone = ('arz037', 0.0026816388245567931) + +[fips0512792607] +centroid = (0.60729296809820343, -1.6421377595275937) +description = Mountain township, AR +station = ('kmez', 0.0046655738519938029) +zone = ('arz037', 0.001194471482008888) + +[fips0512792628] +centroid = (0.6094733904794275, -1.6401744386520249) +description = Mount Pleasant township, AR +station = ('kmez', 0.00731247311575948) +zone = ('arz037', 0.0016346355806382022) + +[fips0512792751] +centroid = (0.60916835928605639, -1.6450631757000314) +description = Oliver township, AR +station = ('kmez', 0.0062851112867483797) +zone = ('arz037', 0.0028432121592886399) + +[fips0512792829] +centroid = (0.60754663425168831, -1.6392910577044206) +description = Parks township, AR +station = ('kmez', 0.0061032653202909041) +zone = ('arz037', 0.0021786597960683704) + +[fips0512793576] +centroid = (0.61061141496489779, -1.6392246130197974) +description = Tate township, AR +station = ('kmez', 0.0086805559755543157) +zone = ('arz037', 0.002983390590823747) + +[fips0512793620] +centroid = (0.61110506389053199, -1.6419830884492816) +description = Tomlinson township, AR +station = ('kfsm', 0.0069275629474159503) +zone = ('arz037', 0.0026784038216543116) + +[fips0512820] +centroid = (0.63454975757330634, -1.6457760205264234) +description = Centerton city, AR +station = ('kxna', 0.0012873445287735249) +zone = ('arz001', 0.0006269215848544521) + +[fips05129] +centroid = (0.62674180027170701, -1.617908889411898) +description = Searcy County, AR +station = ('kcca', 0.0064562176273204727) +zone = ('arz013', 2.1744343004035596e-05) + +[fips0512990177] +centroid = (0.62781542210777874, -1.6165931380486971) +description = Bear Creek No. 4 township, AR +station = ('kflp', 0.0057676017566676814) +zone = ('arz013', 0.0014986431271571913) + +[fips0512990178] +centroid = (0.62674125921963886, -1.6169836205622459) +description = Bear Creek No. 5 township, AR +station = ('kcca', 0.0060775751029051939) +zone = ('arz013', 0.00075184267900252778) + +[fips0512990179] +centroid = (0.6266504322853651, -1.6163284239610469) +description = Bear Creek No. 6 township, AR +station = ('kcca', 0.005769691367608458) +zone = ('arz013', 0.0012871956589674599) + +[fips0512990609] +centroid = (0.6266289821888581, -1.6204844368824811) +description = Calf Creek township, AR +station = ('khro', 0.0076496945947982578) +zone = ('arz013', 0.0020883415257647656) + +[fips0512992274] +centroid = (0.62697644233634509, -1.6142147778770044) +description = Long Creek township, AR +station = ('kcca', 0.0056644406050787282) +zone = ('arz013', 0.0030014142264009384) + +[fips0512992631] +centroid = (0.62464307675276876, -1.6204135939681426) +description = Mount Pleasant township, AR +station = ('kcca', 0.0064759351430509812) +zone = ('arz013', 0.0029341217417872445) + +[fips0512992801] +centroid = (0.62600239153409953, -1.6137865962516127) +description = Oxley township, AR +station = ('kcca', 0.0046689025438938431) +zone = ('arz013', 0.0034273591868683694) + +[fips0512993012] +centroid = (0.62945866705182396, -1.6212581587931827) +description = Prairie township, AR +station = ('khro', 0.0050636823805684447) +zone = ('arz013', 0.0038206090198085172) + +[fips0512993087] +centroid = (0.62509433163087191, -1.6176978965586246) +description = Red River township, AR +station = ('kcca', 0.0050420656273741059) +zone = ('arz013', 0.001678062653893391) + +[fips0512993213] +centroid = (0.62870016441219978, -1.6143713862707858) +description = Rock Creek township, AR +station = ('kflp', 0.0050056110518856547) +zone = ('arz013', 0.0034583802189386463) + +[fips0512993279] +centroid = (0.62808935153387924, -1.620609576989849) +description = St. Joe township, AR +station = ('khro', 0.006422549535407762) +zone = ('arz013', 0.0025551546742777018) + +[fips0512993351] +centroid = (0.62384462352656644, -1.6171372793495913) +description = Shady Grove township, AR +station = ('kcca', 0.003840187352764781) +zone = ('arz013', 0.0029855540746194197) + +[fips0512993456] +centroid = (0.62665322481216823, -1.6181044535545839) +description = Spring township, AR +station = ('kcca', 0.0064714935610213657) +zone = ('arz013', 0.00019124719685159383) + +[fips0512993618] +centroid = (0.62896259211852956, -1.6181953328487353) +description = Tomahawk township, AR +station = ('kflp', 0.0049565488207805762) +zone = ('arz013', 0.0022111142386285094) + +[fips0512994062] +centroid = (0.62579537803152052, -1.6147761804842009) +description = Wileys Cove township, AR +station = ('kcca', 0.0045667237467800258) +zone = ('arz013', 0.0027184781381084972) + +[fips05131] +centroid = (0.61430320521188631, -1.6454089603314366) +description = Sebastian County, AR +station = ('kfsm', 0.0027148169871685497) +zone = ('arz029', 4.2861630227927938e-05) + +[fips0513120] +centroid = (0.61673619418916648, -1.6447640960794094) +description = Central City town, AR +station = ('kfsm', 0.0018321636710274831) +zone = ('arz029', 0.0024467722925435253) + +[fips0513190141] +centroid = (0.61444054517072577, -1.6462686571610914) +description = Bass Little township, AR +station = ('kfsm', 0.0023225015589466648) +zone = ('arz029', 0.00072310093587370737) + +[fips0513190246] +centroid = (0.61693367819402956, -1.6425192186889095) +description = Beverly township, AR +station = ('kfsm', 0.0036710419714227585) +zone = ('arz029', 0.0034939390760537806) + +[fips0513190279] +centroid = (0.61685384683404332, -1.6437826625344281) +description = Big Creek township, AR +station = ('kfsm', 0.0026374601077295248) +zone = ('arz029', 0.0028331336902606835) + +[fips0513190351] +centroid = (0.61616697250692098, -1.6427355697029866) +description = Bloomer township, AR +station = ('kfsm', 0.0035249136812077501) +zone = ('arz029', 0.0028335904094510859) + +[fips0513190741] +centroid = (0.61425728559926629, -1.6448377315205513) +description = Center township, AR +station = ('kfsm', 0.0030045276576014367) +zone = ('arz029', 0.00046085962320210975) + +[fips0513190900] +centroid = (0.61417930428828715, -1.6476069756315206) +description = Cole township, AR +station = ('kfsm', 0.0025508574071382573) +zone = ('arz029', 0.0018177696058076529) + +[fips0513191041] +centroid = (0.612861126917426, -1.6441517996712252) +description = Dayton township, AR +station = ('kfsm', 0.0044782472077592355) +zone = ('arz029', 0.0017959902064660237) + +[fips0513191095] +centroid = (0.61233042465177201, -1.6456918432965997) +description = Diamond township, AR +station = ('kfsm', 0.0044836576838692705) +zone = ('arz029', 0.0020281602966404724) + +[fips0513191320] +centroid = (0.61545418004040642, -1.6440579707706375) +description = Fort Chaffee UT, AR +station = ('kfsm', 0.0027038912731939717) +zone = ('arz029', 0.0015556582238749797) + +[fips0513191626] +centroid = (0.61095552408022102, -1.6474128601121136) +description = Hartford township, AR +station = ('krkr', 0.0033228949875788289) +zone = ('arz029', 0.0037701291085855443) + +[fips0513191842] +centroid = (0.61810809279440404, -1.6424853069415433) +description = Island township, AR +station = ('kfsm', 0.0039543190324479796) +zone = ('arz019', 0.0035946582560760039) + +[fips0513191965] +centroid = (0.61276506399539621, -1.6466250883009335) +description = Jim Fork township, AR +station = ('kfsm', 0.0039304737344682166) +zone = ('arz029', 0.0018732195846074523) + +[fips0513192280] +centroid = (0.61606267163082173, -1.6474705083373071) +description = Lon Norris township, AR +station = ('kfsm', 0.00072567284890948168) +zone = ('arz029', 0.0024159934161408535) + +[fips0513192394] +centroid = (0.61528285852103071, -1.6471939609173287) +description = Marion township, AR +station = ('kfsm', 0.0014082557841672398) +zone = ('arz029', 0.0017462901242590663) + +[fips0513192514] +centroid = (0.6130162692346357, -1.6479546277652253) +description = Mississippi township, AR +station = ('krkr', 0.0033688426689648158) +zone = ('arz029', 0.0024803675168399634) + +[fips0513192544] +centroid = (0.6166447912962395, -1.6453497587632089) +description = Mont Sandels township, AR +station = ('kfsm', 0.0013541991539272043) +zone = ('arz029', 0.0023013666816816807) + +[fips0513193015] +centroid = (0.61335571832085611, -1.6455521471432699) +description = Prairie township, AR +station = ('kfsm', 0.0035336604938156356) +zone = ('arz029', 0.00099662882937110527) + +[fips0513193222] +centroid = (0.61507621153759451, -1.6461133054043713) +description = Rogers township, AR +station = ('kfsm', 0.0017653227904181987) +zone = ('arz029', 0.00094027918088636483) + +[fips0513193531] +centroid = (0.61057888202764066, -1.6455109399196306) +description = Sugarloaf township, AR +station = ('krkr', 0.0049138874183087934) +zone = ('arz029', 0.0037660614111646729) + +[fips0513193741] +centroid = (0.61735142275049437, -1.6473055747229937) +description = Upper township, AR +station = ('kfsm', 0.00071083131471873066) +zone = ('arz029', 0.0033892759599736966) + +[fips0513193897] +centroid = (0.61368129203952304, -1.6420664104677722) +description = Washburn township, AR +station = ('kfsm', 0.0050302535292380147) +zone = ('arz029', 0.002797452079779543) + +[fips0513194008] +centroid = (0.61380178957108089, -1.6436568417486519) +description = White Oak township, AR +station = ('kfsm', 0.0039743381002143021) +zone = ('arz029', 0.0015179332153772353) + +[fips05133] +centroid = (0.59331783752480449, -1.6448557084118469) +description = Sevier County, AR +station = ('kdeq', 0.0024644526776608994) +zone = ('arz050', 5.5876056263160355e-05) + +[fips0513300] +centroid = (0.61602697964761854, -1.64139283554955) +description = Charleston city, AR +station = ('kfsm', 0.0046294842499156391) +zone = ('arz029', 0.0036740349046470054) + +[fips0513390175] +centroid = (0.59433784284625502, -1.6457288791833269) +description = Bear Creek township, AR +station = ('kdeq', 0.001543594979106585) +zone = ('arz050', 0.0012309136941922047) + +[fips0513390228] +centroid = (0.5908042317893748, -1.6426573964057898) +description = Ben Lomond township, AR +station = ('kdeq', 0.0053722024943139522) +zone = ('arz059', 0.0031211158450807205) + +[fips0513390528] +centroid = (0.59284946096673929, -1.6483186685406064) +description = Buckhorn township, AR +station = ('kdeq', 0.0015568209924206578) +zone = ('arz050', 0.0029471704182887494) + +[fips0513390840] +centroid = (0.59218705615572997, -1.6458267572477789) +description = Clear Creek township, AR +station = ('kdeq', 0.0025571577442136369) +zone = ('arz050', 0.0014440976224818624) + +[fips0513391950] +centroid = (0.59585055461554359, -1.6434363019443698) +description = Jefferson township, AR +station = ('kdeq', 0.0037800120754434377) +zone = ('arz050', 0.0027370069993115607) + +[fips0513392490] +centroid = (0.59587914310869117, -1.6480514237255408) +description = Mill Creek township, AR +station = ('kdeq', 0.001639519844900475) +zone = ('arz050', 0.0036729252118486303) + +[fips0513392502] +centroid = (0.5960994036602929, -1.6459227503566387) +description = Mineral township, AR +station = ('kdeq', 0.0022806260939965532) +zone = ('arz050', 0.0028832988644346864) + +[fips0513392532] +centroid = (0.5941557002855169, -1.6479116053991636) +description = Monroe township, AR +station = ('kdeq', 0.00029541345361165796) +zone = ('arz050', 0.0026823361620859094) + +[fips0513392820] +centroid = (0.59090071359042495, -1.6438584621838424) +description = Paraclifta township, AR +station = ('kdeq', 0.0045864751178835723) +zone = ('arz050', 0.002589856440406242) + +[fips0513393060] +centroid = (0.59280973727296393, -1.6431875401660831) +description = Red Colony township, AR +station = ('kdeq', 0.0039368523454995025) +zone = ('arz050', 0.0014624659277372985) + +[fips0513393318] +centroid = (0.59436519215563377, -1.6432258501431645) +description = Saline township, AR +station = ('kdeq', 0.0036173857816852494) +zone = ('arz050', 0.0016566962258467764) + +[fips0513393924] +centroid = (0.59029066865697555, -1.6412786037500069) +description = Washington township, AR +station = ('ktxk', 0.0065271548492638939) +zone = ('arz059', 0.0035383992406258506) + +[fips0513420] +centroid = (0.63346194621041585, -1.6506765036402955) +description = Cherokee City CDP, AR +station = ('kslg', 0.0021124140358453761) +zone = ('okz063', 0.0037427367131350779) + +[fips0513450] +centroid = (0.63341738795461244, -1.5982143846928838) +description = Cherokee Village city, AR +station = ('kbvx', 0.0098167274671976529) +zone = ('arz007', 0.0026218119538042178) + +[fips05135] +centroid = (0.6313449141876244, -1.596471324368917) +description = Sharp County, AR +station = ('karg', 0.0078441348962473428) +zone = ('arz007', 0.00024811410420307614) + +[fips0513540] +centroid = (0.61788193302993055, -1.5839648883610713) +description = Cherry Valley city, AR +station = ('km19', 0.0072636124206421045) +zone = ('arz035', 0.0018693670426071099) + +[fips0513570] +centroid = (0.62269275858012774, -1.6437068977915992) +description = Chester town, AR +station = ('kfyv', 0.0056278475266181216) +zone = ('arz019', 0.0018067668347212641) + +[fips0513590282] +centroid = (0.62862480109509855, -1.595397859612478) +description = Big Creek township, AR +station = ('kbvx', 0.0060140203569974612) +zone = ('arz007', 0.0026946994559714876) + +[fips0513590705] +centroid = (0.62760544154547127, -1.5973846202599007) +description = Cave township, AR +station = ('kbvx', 0.0043290327767053815) +zone = ('arz007', 0.0035778424082321359) + +[fips0513590768] +centroid = (0.63352678519212746, -1.5977382763262322) +description = Cherokee township, AR +station = ('karg', 0.009287049488416365) +zone = ('arz007', 0.0025591301162911423) + +[fips0513591029] +centroid = (0.63175019709322999, -1.5969378857845602) +description = Davidson township, AR +station = ('karg', 0.0082625723277091091) +zone = ('arz007', 0.0006692723371192681) + +[fips0513591205] +centroid = (0.62812408358599392, -1.5986876830794396) +description = East Sullivan township, AR +station = ('kbvx', 0.0045198800729508689) +zone = ('arz007', 0.0034373329458455043) + +[fips0513591605] +centroid = (0.63354622815999473, -1.5964096095265665) +description = Hardy township, AR +station = ('karg', 0.0082814047126973621) +zone = ('arz007', 0.002422237665955469) + +[fips0513591719] +centroid = (0.63281395781902783, -1.5970153784033487) +description = Highland township, AR +station = ('karg', 0.0085280206184249335) +zone = ('arz007', 0.001712843920768727) + +[fips0513591881] +centroid = (0.63225536519192715, -1.5954626985941895) +description = Jackson township, AR +station = ('karg', 0.0071789717698756902) +zone = ('arz007', 0.0014650675070374234) + +[fips0513592124] +centroid = (0.63068078150065543, -1.5990356668257022) +description = Lave Creek township, AR +station = ('kbvx', 0.0070310242476695657) +zone = ('arz007', 0.0019974591580282342) + +[fips0513592286] +centroid = (0.63496142838397418, -1.5953037863657955) +description = Lower North township, AR +station = ('karg', 0.0081055897272801804) +zone = ('arz007', 0.0039765954264365747) + +[fips0513592565] +centroid = (0.63050558535034029, -1.5972520275966267) +description = Morgan township, AR +station = ('kbvx', 0.0070992945731857236) +zone = ('arz007', 0.00080388786186457318) + +[fips0513592706] +centroid = (0.62954261738884487, -1.596744084424419) +description = North Big Rock township, AR +station = ('kbvx', 0.0063154166953089735) +zone = ('arz007', 0.0015905284452285874) + +[fips0513592718] +centroid = (0.63147363221995889, -1.5953200702877166) +description = North Lebanon township, AR +station = ('karg', 0.0069326369408534714) +zone = ('arz007', 0.0011083176338028942) + +[fips0513592721] +centroid = (0.63476528828263512, -1.5937568835964604) +description = North Union township, AR +station = ('karg', 0.0069634657017719256) +zone = ('arz007', 0.0043084698899433721) + +[fips0513592808] +centroid = (0.63367897790290129, -1.5947717227433249) +description = Ozark township, AR +station = ('karg', 0.0071141686701094902) +zone = ('arz007', 0.0029549465442391073) + +[fips0513592907] +centroid = (0.62956619678703929, -1.5992359957172462) +description = Piney Fork township, AR +station = ('kbvx', 0.0059090077151676343) +zone = ('arz007', 0.0026255554724790124) + +[fips0513593174] +centroid = (0.63195075287757663, -1.5989386439725839) +description = Richwoods township, AR +station = ('kbvx', 0.0083034037171864153) +zone = ('arz007', 0.0020393563912382518) + +[fips0513593336] +centroid = (0.62736058930470895, -1.5952509377960451) +description = Scott township, AR +station = ('kbvx', 0.0051048608991042356) +zone = ('arz007', 0.0039300481496955045) + +[fips0513593426] +centroid = (0.62850503660182677, -1.5967890091993651) +description = South Big Rock township, AR +station = ('kbvx', 0.0053478809685811235) +zone = ('arz007', 0.0026285447821487169) + +[fips0513593438] +centroid = (0.63054075373476792, -1.5951767089429578) +description = South Lebanon township, AR +station = ('karg', 0.0067703825353018724) +zone = ('arz007', 0.0013100414146361777) + +[fips0513593441] +centroid = (0.63342402020577004, -1.593363259490258) +description = South Union township, AR +station = ('karg', 0.0059834749536383834) +zone = ('arz007', 0.0034909098040838012) + +[fips0513593507] +centroid = (0.62972957705831845, -1.5952879911360649) +description = Strawberry township, AR +station = ('karg', 0.0069223601509608183) +zone = ('arz007', 0.0017689253497742768) + +[fips0513593744] +centroid = (0.63624539730149632, -1.5953575076001718) +description = Upper North township, AR +station = ('karg', 0.0088872449464493884) +zone = ('moz106', 0.004058687447471585) + +[fips0513593927] +centroid = (0.6289504620802282, -1.5977216433384607) +description = Washington township, AR +station = ('kbvx', 0.0054995593142081788) +zone = ('arz007', 0.0023528726409342286) + +[fips0513593975] +centroid = (0.62799667455059827, -1.5998542786047651) +description = West Sullivan township, AR +station = ('kbvx', 0.00433747764230625) +zone = ('arz015', 0.0040265677784296775) + +[fips05137] +centroid = (0.62582251790138899, -1.6081549947140801) +description = Stone County, AR +station = ('kcca', 0.0062728025456898649) +zone = ('arz014', 0.00023480160383190137) + +[fips0513750] +centroid = (0.5882018935147737, -1.6235741234441166) +description = Chidester city, AR +station = ('kcdh', 0.0040200447944585931) +zone = ('arz066', 0.0027961747420436364) + +[fips0513790053] +centroid = (0.62475997890606738, -1.605672700185431) +description = Arbana township, AR +station = ('kbvx', 0.0050524205079697888) +zone = ('arz014', 0.0025031428801676205) + +[fips0513790366] +centroid = (0.62601043750195129, -1.6074204379917931) +description = Blue Mountain township, AR +station = ('kcca', 0.0068301679787019795) +zone = ('arz014', 0.00083583955844051508) + +[fips0513790519] +centroid = (0.62430655981969174, -1.6069245026848391) +description = Bryan township, AR +station = ('kcca', 0.0061512099265579653) +zone = ('arz014', 0.0019901581493440576) + +[fips0513791275] +centroid = (0.62737100892034348, -1.6121025106030709) +description = Farris township, AR +station = ('kcca', 0.0061480951785835274) +zone = ('arz014', 0.0033248485479396325) + +[fips0513791296] +centroid = (0.62516932842883011, -1.6123347790199261) +description = Flag township, AR +station = ('kcca', 0.0039585140274162132) +zone = ('arz014', 0.0032365733555086307) + +[fips0513791362] +centroid = (0.62612936423718213, -1.6042904343244366) +description = Franklin township, AR +station = ('kbvx', 0.0045368133364297389) +zone = ('arz014', 0.003370701367177206) + +[fips0513791614] +centroid = (0.62721956670114787, -1.6081923796666577) +description = Harris township, AR +station = ('kcca', 0.0073176364222378235) +zone = ('arz014', 0.0013608472522910887) + +[fips0513792001] +centroid = (0.62657883887944821, -1.6051701326273196) +description = Jones township, AR +station = ('kbvx', 0.0053793777911982322) +zone = ('arz014', 0.0027400325474526204) + +[fips0513792187] +centroid = (0.62543566567268449, -1.6096674446839809) +description = Liberty township, AR +station = ('kcca', 0.005173914873339955) +zone = ('arz014', 0.001088548345834782) + +[fips0513792244] +centroid = (0.62661683469726426, -1.6126030884858353) +description = Locust Grove township, AR +station = ('kcca', 0.0053360641247409048) +zone = ('arz014', 0.0034557539602040927) + +[fips0513792374] +centroid = (0.62391410508408829, -1.6034156927566294) +description = Marcella township, AR +station = ('kbvx', 0.0031117872018655381) +zone = ('arz016', 0.0042390240934540432) + +[fips0513792724] +centroid = (0.62840202726937411, -1.6099285982999567) +description = Northwest township, AR +station = ('kflp', 0.007047803733644456) +zone = ('arz014', 0.0028020312448075405) + +[fips0513792764] +centroid = (0.62908537603140735, -1.6082766790695291) +description = Optimus township, AR +station = ('kbpk', 0.0072066155729563711) +zone = ('arz014', 0.0032147000126777842) + +[fips0513793090] +centroid = (0.62403020438593104, -1.6122228161484109) +description = Red River township, AR +station = ('kcca', 0.0029028583503650954) +zone = ('arz014', 0.0035804198223927134) + +[fips0513793099] +centroid = (0.62531532522075939, -1.6046479999282928) +description = Red Stripe township, AR +station = ('kbvx', 0.0044198439646584145) +zone = ('arz014', 0.0031223683042781382) + +[fips0513793177] +centroid = (0.62499111285890907, -1.6083311158888989) +description = Richwoods township, AR +station = ('kcca', 0.0055998542170653575) +zone = ('arz014', 0.00088644445185110071) + +[fips0513793207] +centroid = (0.62734343271816195, -1.6107686427222341) +description = Roasting Ear township, AR +station = ('kcca', 0.0064181286398619208) +zone = ('arz014', 0.0023928536493565142) + +[fips0513793402] +centroid = (0.62371733666421847, -1.608149182767671) +description = Smart township, AR +station = ('kcca', 0.0049965705688237534) +zone = ('arz014', 0.0021686628954424208) + +[fips0513793567] +centroid = (0.62649715747045487, -1.6101693839235618) +description = Sylamore township, AR +station = ('kcca', 0.0058466716203882559) +zone = ('arz014', 0.0015354531149542184) + +[fips0513793609] +centroid = (0.62607812137034358, -1.6113936276740808) +description = Timbo township, AR +station = ('kcca', 0.0050556499582476459) +zone = ('arz014', 0.0024040825733311223) + +[fips0513793651] +centroid = (0.62396971127405687, -1.609967309702766) +description = Turkey Creek township, AR +station = ('kcca', 0.0039284521112866464) +zone = ('arz014', 0.0022720832886969208) + +[fips0513793726] +centroid = (0.62515430114397041, -1.6114931812546145) +description = Union township, AR +station = ('kcca', 0.0041687110531662313) +zone = ('arz014', 0.0025791021800090209) + +[fips0513793930] +centroid = (0.62672993203279337, -1.606381408581496) +description = Washington township, AR +station = ('kbvx', 0.0062995780263299028) +zone = ('arz014', 0.0018734319956290866) + +[fips0513794092] +centroid = (0.62356774449403007, -1.6050800038247464) +description = Wilson township, AR +station = ('kbvx', 0.0044542193873614144) +zone = ('arz024', 0.0034271366270485076) + +[fips05139] +centroid = (0.57889462857254115, -1.6161425114891248) +description = Union County, AR +station = ('keld', 0.0033017398479206965) +zone = ('arz073', 5.5172418135417546e-05) + +[fips0513990] +centroid = (0.6055371145108196, -1.5935923514078749) +description = Clarendon city, AR +station = ('ksgt', 0.0040900471365434843) +zone = ('arz047', 0.0014977924540024029) + +[fips0513990408] +centroid = (0.58140217801546645, -1.6222333440594421) +description = Boone township, AR +station = ('keld', 0.0025272049370097622) +zone = ('arz072', 0.0044294035835724241) + +[fips0513990924] +centroid = (0.57793296960798479, -1.6206926895688289) +description = Cornie township, AR +station = ('keld', 0.0019094319538066748) +zone = ('arz073', 0.0039548662017411824) + +[fips0513991218] +centroid = (0.57934330036335124, -1.6176898854973578) +description = El Dorado township, AR +station = ('keld', 0.0019375395923205336) +zone = ('arz073', 0.0013657256187277153) + +[fips0513991365] +centroid = (0.5806983390880146, -1.6151982534572107) +description = Franklin township, AR +station = ('keld', 0.0040931880601318311) +zone = ('arz073', 0.0019149218337137352) + +[fips0513991440] +centroid = (0.578993449114789, -1.6218765289471644) +description = Garner township, AR +station = ('keld', 0.0017718050994218644) +zone = ('arz072', 0.0044469478126446362) + +[fips0513991620] +centroid = (0.57912317943808977, -1.6104195070586651) +description = Harrison township, AR +station = ('kbqp', 0.0093124411029685168) +zone = ('arz073', 0.00478095113031276) + +[fips0513991665] +centroid = (0.57669554862161321, -1.6190548900520501) +description = Henderson township, AR +station = ('keld', 0.0031368624228494089) +zone = ('arz073', 0.0033297528780434522) + +[fips0513991884] +centroid = (0.57686620691587331, -1.6166269974361858) +description = Jackson township, AR +station = ('keld', 0.0040041223527162032) +zone = ('arz073', 0.0021237694200594614) + +[fips0513991986] +centroid = (0.57795475131704965, -1.6142347968035247) +description = Johnson township, AR +station = ('keld', 0.0051115115056600685) +zone = ('arz073', 0.0018707130579236478) + +[fips0513992121] +centroid = (0.57697258473378232, -1.6103250323862546) +description = Lapile township, AR +station = ('kbqp', 0.0076722583937808182) +zone = ('laz006', 0.0042637763494643424) + +[fips0513992703] +centroid = (0.58150199339538799, -1.6167863285436004) +description = Norphlet township, AR +station = ('keld', 0.0031826979196765146) +zone = ('arz073', 0.0026123151771028051) + +[fips0513993396] +centroid = (0.5818562603269577, -1.6186468146196413) +description = Smackover township, AR +station = ('keld', 0.0023825324680892385) +zone = ('arz073', 0.0035907001758421001) + +[fips0513993650] +centroid = (0.57737722186756468, -1.6224566414839421) +description = Tubal township, AR +station = ('keld', 0.0031568300879618919) +zone = ('arz072', 0.0045449700861292519) + +[fips0513993777] +centroid = (0.58091631325829618, -1.6203005140859059) +description = Van Buren township, AR +station = ('keld', 0.0012108020862976693) +zone = ('arz073', 0.0040070291964712035) + +[fips0513993966] +centroid = (0.57814994894059268, -1.6194088079177695) +description = Wesson township, AR +station = ('keld', 0.0016549969391503739) +zone = ('arz073', 0.0028607615227702462) + +[fips0513994074] +centroid = (0.57986820813588857, -1.6131317661695568) +description = Wilmington township, AR +station = ('keld', 0.0057107434916522292) +zone = ('arz073', 0.0026704202221745415) + +[fips0514050] +centroid = (0.61605438131687484, -1.5744691104063309) +description = Clarkedale city, AR +station = ('kawm', 0.0028806019988037558) +zone = ('arz036', 0.0020988023345704892) + +[fips05141] +centroid = (0.621039792152149, -1.614708409349346) +description = Van Buren County, AR +station = ('kcca', 0.0009824973076527346) +zone = ('arz023', 3.9622560284662037e-05) + +[fips0514140] +centroid = (0.61878760183208303, -1.6315609769940453) +description = Clarksville city, AR +station = ('krue', 0.0064937026092592781) +zone = ('arz021', 0.0020509702103852579) + +[fips0514190054] +centroid = (0.62323693478760711, -1.6187510107759853) +description = Archey Valley township, AR +station = ('kcca', 0.0046283099617182091) +zone = ('arz013', 0.0035916250786058438) + +[fips0514190117] +centroid = (0.61758330719491439, -1.6127213170893653) +description = Barnett township, AR +station = ('kcca', 0.003815055365649318) +zone = ('arz023', 0.0037791137597658992) + +[fips0514190444] +centroid = (0.61871080734499517, -1.6128338908261191) +description = Bradley township, AR +station = ('kcca', 0.0026915154215473142) +zone = ('arz023', 0.0027492011283172177) + +[fips0514190603] +centroid = (0.61829070659404017, -1.6107890979810675) +description = Cadron township, AR +station = ('kcca', 0.0037890593142727333) +zone = ('arz023', 0.0041829867147467822) + +[fips0514190660] +centroid = (0.61761412970950458, -1.6108732577575986) +description = Cargile township, AR +station = ('kcca', 0.0043168780347871763) +zone = ('arz032', 0.0042143549459869147) + +[fips0514190789] +centroid = (0.61988792720571029, -1.6128915565046049) +description = Choctaw township, AR +station = ('kcca', 0.0015470619485754775) +zone = ('arz023', 0.0018469062881595287) + +[fips0514190951] +centroid = (0.62015674281710242, -1.6161027179821792) +description = Craig township, AR +station = ('kcca', 0.0023837112174201862) +zone = ('arz023', 0.001416805818641248) + +[fips0514190987] +centroid = (0.62018138686614066, -1.6144555809539021) +description = Culpepper township, AR +station = ('kcca', 0.0013676015825831453) +zone = ('arz023', 0.00084346261354293739) + +[fips0514191035] +centroid = (0.61968056463728072, -1.6113144071793328) +description = Davis township, AR +station = ('kcca', 0.0024643648639465611) +zone = ('arz023', 0.0030572498852262354) + +[fips0514191200] +centroid = (0.6211488054172285, -1.6129355213484629) +description = East Griggs township, AR +station = ('kcca', 0.00053925661143668059) +zone = ('arz023', 0.0014455176508864638) + +[fips0514191318] +centroid = (0.61930039701961148, -1.6146639732665902) +description = Formosa township, AR +station = ('kcca', 0.0022271291099124203) +zone = ('arz023', 0.0017002735943072343) + +[fips0514191750] +centroid = (0.62266513001806878, -1.6125597170539232) +description = Holly Mountain township, AR +station = ('kcca', 0.0015556802094751998) +zone = ('arz023', 0.0024099654164851871) + +[fips0514191830] +centroid = (0.62143292756616064, -1.6104425279514989) +description = Indian Rock township, AR +station = ('kcca', 0.0025340141377148883) +zone = ('arz024', 0.0036696629057285115) + +[fips0514192190] +centroid = (0.61993339303272477, -1.6185212730865453) +description = Liberty township, AR +station = ('kcca', 0.004275596822589268) +zone = ('arz023', 0.0032842533940056276) + +[fips0514192214] +centroid = (0.62356716853537697, -1.6134710232695597) +description = Linn Creek township, AR +station = ('kcca', 0.0022310458806319359) +zone = ('arz023', 0.0027552673805175667) + +[fips0514192610] +centroid = (0.6221076893082742, -1.6163530680100853) +description = Mountain township, AR +station = ('kcca', 0.0023999806656423203) +zone = ('arz023', 0.0017390906720995592) + +[fips0514193093] +centroid = (0.620774240306458, -1.6113407965576227) +description = Red River township, AR +station = ('kcca', 0.0018881543546755237) +zone = ('arz023', 0.0027444888749009709) + +[fips0514193729] +centroid = (0.62236498574660326, -1.611072591811469) +description = Union township, AR +station = ('kcca', 0.0022657582867833346) +zone = ('arz023', 0.003251810376728555) + +[fips0514193933] +centroid = (0.62361989493207959, -1.6154608382431732) +description = Washington township, AR +station = ('kcca', 0.0027574123489725591) +zone = ('arz023', 0.0026908237756378094) + +[fips0514193970] +centroid = (0.62135199664874574, -1.6144717252494829) +description = West Griggs township, AR +station = ('kcca', 0.00074399335290573998) +zone = ('arz023', 0.00039898817837986955) + +[fips0514193984] +centroid = (0.62176476701684236, -1.6182827389376753) +description = Wheeler township, AR +station = ('kcca', 0.0038657158033347152) +zone = ('arz023', 0.0030088441145085911) + +[fips0514260] +centroid = (0.62096338163749665, -1.6136571451809922) +description = Clinton city, AR +station = ('kcca', 0.00038261841302478954) +zone = ('arz023', 0.00085187228555637818) + +[fips05143] +centroid = (0.62781603297301702, -1.6444215926669983) +description = Washington County, AR +station = ('kfyv', 0.00088692932078829822) +zone = ('arz010', 0.00016216543582678409) + +[fips0514390420] +centroid = (0.62471337861503906, -1.6475813367448087) +description = Boston township, AR +station = ('kfyv', 0.0048815726034713344) +zone = ('arz010', 0.0041746023032609367) + +[fips0514390501] +centroid = (0.63153501544975155, -1.6397975173467645) +description = Brush Creek township, AR +station = ('kasg', 0.0022989175934901205) +zone = ('arz011', 0.0044233321327925958) + +[fips0514390645] +centroid = (0.62652600776299028, -1.6474132964444268) +description = Cane Hill township, AR +station = ('kfyv', 0.0036270096217270913) +zone = ('arz010', 0.0028649485351638941) + +[fips0514390744] +centroid = (0.62866712532945945, -1.6455337688262466) +description = Center township, AR +station = ('kfyv', 0.0016671306702035346) +zone = ('arz010', 0.0011804732152652152) + +[fips0514390945] +centroid = (0.62502392504884652, -1.6459578489278961) +description = Cove Creek township, AR +station = ('kfyv', 0.0038417084903135733) +zone = ('arz010', 0.0032184702013996116) + +[fips0514390957] +centroid = (0.62587763539916696, -1.6421042142993703) +description = Crawford township, AR +station = ('kfyv', 0.0026961481823788176) +zone = ('arz010', 0.0027754828498013241) + +[fips0514391164] +centroid = (0.62721223631828948, -1.6407866652470395) +description = Durham township, AR +station = ('kfyv', 0.0024722302519666604) +zone = ('arz010', 0.0029873240490530212) + +[fips0514391170] +centroid = (0.62637486224976768, -1.6491530580961071) +description = Dutch Mills township, AR +station = ('kfyv', 0.0049585820558050485) +zone = ('okz069', 0.002393832381391083) + +[fips0514391225] +centroid = (0.62859340262185526, -1.6409478464034613) +description = Elkins township, AR +station = ('kfyv', 0.0020974853819433572) +zone = ('arz010', 0.002827607252339668) + +[fips0514391233] +centroid = (0.63188048592189128, -1.6459584074332569) +description = Elm Springs township, AR +station = ('kxna', 0.0013861394662900517) +zone = ('arz001', 0.0024576033935671811) + +[fips0514391274] +centroid = (0.6289570070649233, -1.6450158598240097) +description = Farmington township, AR +station = ('kfyv', 0.0013691869103350971) +zone = ('arz010', 0.0011222931979217128) + +[fips0514391283] +centroid = (0.62956750578397835, -1.6435161682109412) +description = Fayetteville township, AR +station = ('kfyv', 0.0012489763453557463) +zone = ('arz010', 0.0017366228438652701) + +[fips0514391485] +centroid = (0.63006214954728601, -1.6404374074104231) +description = Goshen township, AR +station = ('kasg', 0.0023023230295277568) +zone = ('arz010', 0.0037977667597990745) + +[fips0514391521] +centroid = (0.62811935374372108, -1.6437266898253167) +description = Greenland township, AR +station = ('kfyv', 0.00026091557261008236) +zone = ('arz010', 0.00053138352015978728) + +[fips0514391608] +centroid = (0.63091212489300719, -1.645754727509549) +description = Harmon township, AR +station = ('kxna', 0.0023526451150173025) +zone = ('arz010', 0.0031521974518922921) + +[fips0514391815] +centroid = (0.62919700729036498, -1.6492720197379231) +description = Illinois township, AR +station = ('kslg', 0.0026185957688000718) +zone = ('okz069', 0.0037011936175755764) + +[fips0514391989] +centroid = (0.6305752938006649, -1.6438875917290581) +description = Johnson township, AR +station = ('kasg', 0.0013764733934432945) +zone = ('arz010', 0.0026332848041740408) + +[fips0514392148] +centroid = (0.6251876718392686, -1.6443764235459566) +description = Lees Creek township, AR +station = ('kfyv', 0.003207062133205406) +zone = ('arz010', 0.0027818388208349777) + +[fips0514392213] +centroid = (0.62742551555288317, -1.6478956879963855) +description = Lincoln township, AR +station = ('kfyv', 0.0036532905005425714) +zone = ('arz010', 0.0029155678889701154) + +[fips0514392217] +centroid = (0.63007873017518001, -1.6459861930749486) +description = Litteral township, AR +station = ('kfyv', 0.0026606815285620698) +zone = ('arz010', 0.0024869777492567339) + +[fips0514392400] +centroid = (0.62898124968823343, -1.6463766057753273) +description = Marrs Hill township, AR +station = ('kfyv', 0.0024049118868902327) +zone = ('arz010', 0.0019218368134987169) + +[fips0514392577] +centroid = (0.62602195667501448, -1.6482470053215192) +description = Morrow township, AR +station = ('kfyv', 0.0044646820078316834) +zone = ('arz010', 0.0037036947626949935) + +[fips0514393018] +centroid = (0.62942358593385894, -1.6423626102951281) +description = Prairie township, AR +station = ('kfyv', 0.0014473209525623417) +zone = ('arz010', 0.0021715592128979605) + +[fips0514393024] +centroid = (0.62787352411857766, -1.6458043821267683) +description = Prairie Grove township, AR +station = ('kfyv', 0.0019024913514966997) +zone = ('arz010', 0.0011754438924424645) + +[fips0514393102] +centroid = (0.62507848404126387, -1.6403979629693282) +description = Reed township, AR +station = ('kfyv', 0.0041092368022207209) +zone = ('arz010', 0.004317611694503563) + +[fips0514393123] +centroid = (0.62860799357440189, -1.6476230326606389) +description = Rheas Mill township, AR +station = ('kfyv', 0.0033329779849228143) +zone = ('arz010', 0.0027186104835610343) + +[fips0514393156] +centroid = (0.62870405649643168, -1.6405686736234655) +description = Richland township, AR +station = ('kfyv', 0.002416972425705446) +zone = ('arz010', 0.0031513649081137038) + +[fips0514393465] +centroid = (0.63135231438365269, -1.6424760916030927) +description = Springdale township, AR +station = ('kasg', 0.00021516882447325774) +zone = ('arz001', 0.0035789367032675432) + +[fips0514393486] +centroid = (0.62775756444307507, -1.6486074507186412) +description = Starr Hill township, AR +station = ('kslg', 0.004067044017960349) +zone = ('arz010', 0.0034465701263250042) + +[fips0514393623] +centroid = (0.63125754300526948, -1.6448322860932849) +description = Tontitown township, AR +station = ('kxna', 0.0021662020881862893) +zone = ('arz001', 0.0029889645656227463) + +[fips0514393768] +centroid = (0.62658526169109563, -1.6452512349269337) +description = Valley township, AR +station = ('kfyv', 0.0022298084613219115) +zone = ('arz010', 0.0015622167640437041) + +[fips0514393813] +centroid = (0.62499275346840588, -1.648804044605586) +description = Vineyard township, AR +station = ('kfyv', 0.0054213214281615078) +zone = ('okz069', 0.0029752735791917931) + +[fips0514393957] +centroid = (0.62985452517946872, -1.6477462529058298) +description = Wedington township, AR +station = ('kslg', 0.0022183542484560527) +zone = ('arz010', 0.0033266451896673049) + +[fips0514393969] +centroid = (0.62702536391527852, -1.6436562657899987) +description = West Fork township, AR +station = ('kfyv', 0.0012979738397543919) +zone = ('arz010', 0.0011012874132589362) + +[fips0514393985] +centroid = (0.63031075424594007, -1.6455540495521548) +description = Wheeler township, AR +station = ('kfyv', 0.0025840430454288398) +zone = ('arz010', 0.0025335387033667014) + +[fips0514394026] +centroid = (0.62704688382495555, -1.6420627976362205) +description = White River township, AR +station = ('kfyv', 0.0017335179435589052) +zone = ('arz010', 0.0020734708325445576) + +[fips0514394104] +centroid = (0.62479364630733847, -1.6425619094424131) +description = Winslow township, AR +station = ('kfyv', 0.0036090313975105609) +zone = ('arz010', 0.0034928704592359864) + +[fips0514394122] +centroid = (0.62963129756813863, -1.6415804933507243) +description = Wyman township, AR +station = ('kfyv', 0.0020442486189636544) +zone = ('arz010', 0.0027933363678470137) + +[fips05145] +centroid = (0.61531097577528038, -1.6013947062025753) +description = White County, AR +station = ('ksrc', 0.00078040779786547193) +zone = ('arz033', 0.00010980241536885989) + +[fips0514500] +centroid = (0.61849101803229156, -1.6347877940750102) +description = Coal Hill city, AR +station = ('krue', 0.0086991282128236237) +zone = ('arz021', 0.0037435946969582227) + +[fips0514590018] +centroid = (0.61681654914792827, -1.602174135339931) +description = Albion township, AR +station = ('ksrc', 0.0024119964038248533) +zone = ('arz033', 0.0016539916762967164) + +[fips0514590042] +centroid = (0.61333025396706953, -1.6046616484030434) +description = Antioch township, AR +station = ('ksrc', 0.0031495304412495501) +zone = ('arz033', 0.0034262419573109185) + +[fips0514590096] +centroid = (0.61596802242548621, -1.5980485609606518) +description = Bald Knob township, AR +station = ('ksrc', 0.0028718074198775755) +zone = ('arz033', 0.0026999248355894416) + +[fips0514590285] +centroid = (0.61817198929831951, -1.6022356058361862) +description = Big Creek township, AR +station = ('ksrc', 0.0037213856243044833) +zone = ('arz033', 0.0029421209637904562) + +[fips0514590606] +centroid = (0.61675022663635237, -1.6049156112625012) +description = Cadron township, AR +station = ('ksrc', 0.0037943828772775186) +zone = ('arz033', 0.0032973780421140996) + +[fips0514590636] +centroid = (0.61412439623001958, -1.6032852468483356) +description = Cane township, AR +station = ('ksrc', 0.0018259332785480402) +zone = ('arz033', 0.0020491803430218287) + +[fips0514590792] +centroid = (0.6129249012482938, -1.6035229781457498) +description = Chrisp township, AR +station = ('ksrc', 0.0025608260547966789) +zone = ('arz033', 0.0030384830465005042) + +[fips0514590825] +centroid = (0.61744371576133983, -1.601360829361794) +description = Clay township, AR +station = ('ksrc', 0.0028862424996105268) +zone = ('arz033', 0.0021066643546809537) + +[fips0514590873] +centroid = (0.61367722542236602, -1.6064064889628471) +description = Cleveland township, AR +station = ('ksrc', 0.0044134227708833426) +zone = ('arz032', 0.0041710746915212199) + +[fips0514590888] +centroid = (0.61413448423309602, -1.6051224327788625) +description = Coffey township, AR +station = ('ksrc', 0.0033014877296650711) +zone = ('arz033', 0.0033737724931649418) + +[fips0514590897] +centroid = (0.61800442023683555, -1.5989542821226816) +description = Coldwell township, AR +station = ('ksrc', 0.0038661891028038396) +zone = ('arz033', 0.003264847207279016) + +[fips0514590978] +centroid = (0.61605235673494241, -1.6030329071450822) +description = Crosby township, AR +station = ('ksrc', 0.0021593812289325762) +zone = ('arz033', 0.0016104905761609813) + +[fips0514590999] +centroid = (0.61540421126392186, -1.5962864765478382) +description = Cypert township, AR +station = ('ksrc', 0.0040335408904959074) +zone = ('arz034', 0.0033560855965271965) + +[fips0514591062] +centroid = (0.61922292185411532, -1.5990804694276011) +description = Denmark township, AR +station = ('kbvx', 0.0044609988377621122) +zone = ('arz033', 0.004273241550855047) + +[fips0514591086] +centroid = (0.61557574222280786, -1.6039673913331849) +description = Des Arc township, AR +station = ('ksrc', 0.0025385274302584413) +zone = ('arz033', 0.0022196175557326284) + +[fips0514591122] +centroid = (0.61260149173789935, -1.5988147605022773) +description = Dogwood township, AR +station = ('ksrc', 0.0027192966911216633) +zone = ('arz033', 0.0033912804821183045) + +[fips0514591242] +centroid = (0.61281141994032917, -1.6073735235414996) +description = El Paso township, AR +station = ('klrf', 0.0034880195186189045) +zone = ('arz032', 0.0034305581438166637) + +[fips0514591332] +centroid = (0.61327480485673369, -1.5968795568809586) +description = Francure township, AR +station = ('ksrc', 0.0036956139516574889) +zone = ('arz033', 0.0041350770089725866) + +[fips0514591443] +centroid = (0.61268942142561478, -1.6013707602852378) +description = Garner township, AR +station = ('ksrc', 0.0018864267141888965) +zone = ('arz033', 0.0026505179130645994) + +[fips0514591497] +centroid = (0.61516070292668357, -1.605405926609264) +description = Gravel Hill township, AR +station = ('ksrc', 0.0035541536355751537) +zone = ('arz033', 0.003386648882663748) + +[fips0514591506] +centroid = (0.61551645338811767, -1.602174135339931) +description = Gray township, AR +station = ('ksrc', 0.0012855176716232151) +zone = ('arz033', 0.00076372664638939204) + +[fips0514591566] +centroid = (0.61462298443743668, -1.6015002462624432) +description = Gum Springs township, AR +station = ('ksrc', 0.00031889659997018876) +zone = ('arz033', 0.00074098010323886572) + +[fips0514591575] +centroid = (0.61766210881064187, -1.5999907633522712) +description = Guthrie township, AR +station = ('ksrc', 0.0032311321531256158) +zone = ('arz033', 0.0025454245307836719) + +[fips0514591623] +centroid = (0.61602842827089765, -1.5995897215967478) +description = Harrison township, AR +station = ('ksrc', 0.0019230353752045411) +zone = ('arz033', 0.0015314856615980634) + +[fips0514591629] +centroid = (0.61911008631797393, -1.6002018085654222) +description = Hartsell township, AR +station = ('kbvx', 0.004580944760483284) +zone = ('arz033', 0.0038698585190858987) + +[fips0514591716] +centroid = (0.61401468483323907, -1.6007412898372138) +description = Higginson township, AR +station = ('ksrc', 0.00062944446411953106) +zone = ('arz033', 0.0013911383156571854) + +[fips0514591887] +centroid = (0.61942311111931914, -1.6013382098946882) +description = Jackson township, AR +station = ('kbvx', 0.0044719112442226996) +zone = ('arz033', 0.0040850357412272904) + +[fips0514591953] +centroid = (0.6141415179099815, -1.6070600100479637) +description = Jefferson township, AR +station = ('klrf', 0.0048420205701508214) +zone = ('arz032', 0.0036978053318258435) + +[fips0514592007] +centroid = (0.61604239090491364, -1.6050597405521307) +description = Joy township, AR +station = ('ksrc', 0.0035429983849448645) +zone = ('arz033', 0.0031772533045183577) + +[fips0514592025] +centroid = (0.61465022902706035, -1.5998951716691394) +description = Kensett township, AR +station = ('ksrc', 0.0010015731429363903) +zone = ('arz033', 0.0013132822962716123) + +[fips0514592037] +centroid = (0.61639262612591128, -1.606770896257371) +description = Kentucky township, AR +station = ('ksrc', 0.004965558653896843) +zone = ('arz024', 0.0038952378766541696) + +[fips0514592193] +centroid = (0.61799515253850745, -1.5960735987389725) +description = Liberty township, AR +station = ('ksrc', 0.0053577469820957424) +zone = ('arz025', 0.0047035351274440753) + +[fips0514592331] +centroid = (0.61258943151276801, -1.6024039952024187) +description = McRae township, AR +station = ('ksrc', 0.002237924758834962) +zone = ('arz033', 0.0029025673512220996) + +[fips0514592397] +centroid = (0.61702740237486164, -1.6032369884945179) +description = Marion township, AR +station = ('ksrc', 0.0030104215601886621) +zone = ('arz033', 0.0023331212527318334) + +[fips0514592403] +centroid = (0.61507420440895477, -1.6068184041196103) +description = Marshall township, AR +station = ('ksrc', 0.004685515995501279) +zone = ('arz032', 0.0041631860331498797) + +[fips0514592625] +centroid = (0.61645987366199062, -1.6030864887531184) +description = Mount Pisgah township, AR +station = ('ksrc', 0.0024859340209867978) +zone = ('arz033', 0.0018625590060504205) + +[fips0514593096] +centroid = (0.61421873127608972, -1.5987328347471887) +description = Red River township, AR +station = ('ksrc', 0.0019782400148820028) +zone = ('arz033', 0.0023518446778248671) + +[fips0514593246] +centroid = (0.6126637476323179, -1.6061666632703306) +description = Royal township, AR +station = ('klrf', 0.0037006656691576049) +zone = ('arz032', 0.0044283814487895519) + +[fips0514593261] +centroid = (0.61725083942570191, -1.5966311267152298) +description = Russell township, AR +station = ('ksrc', 0.0045411252151722967) +zone = ('arz033', 0.0042370744625136424) + +[fips0514593732] +centroid = (0.61202937280909553, -1.6037301312746688) +description = Union township, AR +station = ('ksrc', 0.0033157230682691421) +zone = ('arz033', 0.0038747223588160343) + +[fips0514593789] +centroid = (0.61808758517569307, -1.598141988435511) +description = Velvet Ridge township, AR +station = ('ksrc', 0.0042784068560797221) +zone = ('arz033', 0.0037478310690522176) + +[fips0514593831] +centroid = (0.61271703253438126, -1.6004130283114986) +description = Walker township, AR +station = ('ksrc', 0.0019348088399045555) +zone = ('arz033', 0.0027122967083559888) + +[fips05147] +centroid = (0.61416514966805347, -1.5925155181659794) +description = Woodruff County, AR +station = ('ksrc', 0.007039586948459354) +zone = ('arz034', 5.1888599197142257e-05) + +[fips0514770] +centroid = (0.63050630093533344, -1.5872030151755889) +description = College City city, AR +station = ('karg', 0.00035766187339206798) +zone = ('arz017', 0.0027757751439737893) + +[fips0514790078] +centroid = (0.61578101039613486, -1.5939459551143289) +description = Augusta township, AR +station = ('ksrc', 0.0059811006714152312) +zone = ('arz034', 0.0020442658690404333) + +[fips0514790114] +centroid = (0.61652438103114426, -1.5909802218361702) +description = Barnes township, AR +station = ('km19', 0.0054744657533351351) +zone = ('arz034', 0.0027058341871268833) + +[fips0514790588] +centroid = (0.61362303294909148, -1.5920568107319704) +description = Cache township, AR +station = ('ksrc', 0.0074640956232107153) +zone = ('arz034', 0.00060880149589653712) + +[fips0514790657] +centroid = (0.61161283252981458, -1.5904782302367115) +description = Caney township, AR +station = ('ksgt', 0.0099647127750872987) +zone = ('arz034', 0.0029974439575807363) + +[fips0514790927] +centroid = (0.6115803344991424, -1.5927730589504037) +description = Cotton Plant township, AR +station = ('ksrc', 0.0074479285221452311) +zone = ('arz034', 0.0025468125689904605) + +[fips0514791068] +centroid = (0.61486649277467498, -1.5897338473107361) +description = Dent township, AR +station = ('km19', 0.0072419625386673375) +zone = ('arz034', 0.0023754245701040747) + +[fips0514791092] +centroid = (0.61474239986485812, -1.5913569162486279) +description = De View township, AR +station = ('km19', 0.0072493639457196814) +zone = ('arz034', 0.0011191026554656926) + +[fips0514791371] +centroid = (0.61310697399586189, -1.5898897575728166) +description = Franks township, AR +station = ('km19', 0.0089612855574428291) +zone = ('arz034', 0.0023553919629429338) + +[fips0514791380] +centroid = (0.61038839679307799, -1.593934715193946) +description = Freeman township, AR +station = ('ksrc', 0.0072090576072167123) +zone = ('arz034', 0.0039107333877650731) + +[fips0514791419] +centroid = (0.61224202372515857, -1.5952578318465904) +description = Garden township, AR +station = ('ksrc', 0.0053238728464489538) +zone = ('arz034', 0.0029375649234031393) + +[fips0514792934] +centroid = (0.61342582819690883, -1.5946052706925624) +description = Point township, AR +station = ('ksrc', 0.005442449668830637) +zone = ('arz034', 0.0018602240171732723) + +[fips0514793045] +centroid = (0.61613309566613972, -1.5898024387503393) +description = Pumpkin Bend township, AR +station = ('km19', 0.0059881251607772521) +zone = ('arz034', 0.0029819886887321621) + +[fips0514794029] +centroid = (0.61783922482313425, -1.5937087823222753) +description = White River township, AR +station = ('km19', 0.0045839792102640269) +zone = ('arz025', 0.0037562222806479229) + +[fips0514860] +centroid = (0.60573575043298911, -1.6097527563778182) +description = College Station CDP, AR +station = ('klit', 0.00047563899794937718) +zone = ('arz044', 0.0015964103683919573) + +[fips05149] +centroid = (0.61082532251802224, -1.6302824360504971) +description = Yell County, AR +station = ('krue', 0.0062255969443736374) +zone = ('arz038', 9.5451741966516091e-05) + +[fips0514950] +centroid = (0.6131830354446639, -1.5849835672322905) +description = Colt city, AR +station = ('kawm', 0.008272060874820809) +zone = ('arz048', 0.0021455698227437377) + +[fips0514990372] +centroid = (0.60885079662865593, -1.6333464488188356) +description = Bluffton township, AR +station = ('kmwt', 0.0058395449155405352) +zone = ('arz038', 0.003215205946093314) + +[fips0514990474] +centroid = (0.6090961899214864, -1.6323318714713588) +description = Briggsville township, AR +station = ('kmwt', 0.0061407878161879531) +zone = ('arz038', 0.0024437079955744647) + +[fips0514990753] +centroid = (0.6127398090811198, -1.6261874398397127) +description = Centerville township, AR +station = ('krue', 0.0027015896123288438) +zone = ('arz038', 0.0038564062397515235) + +[fips0514990918] +centroid = (0.6098725123727734, -1.6310631043716213) +description = Compton township, AR +station = ('kmwt', 0.0071111655635506749) +zone = ('arz038', 0.001197444744243393) + +[fips0514990960] +centroid = (0.60809138641782079, -1.629605108674383) +description = Crawford township, AR +station = ('kmwt', 0.0059349567763707957) +zone = ('arz038', 0.0028820071012664338) + +[fips0514991017] +centroid = (0.61171027426195346, -1.6299846654268142) +description = Danville township, AR +station = ('krue', 0.0054454302017750041) +zone = ('arz038', 0.00084949177325970449) + +[fips0514991020] +centroid = (0.61470304269022569, -1.6266071042583548) +description = Dardanelle township, AR +station = ('krue', 0.0014889234103886392) +zone = ('arz022', 0.0046060673499107195) + +[fips0514991167] +centroid = (0.61073116200487709, -1.6343808007467375) +description = Dutch Creek township, AR +station = ('kmwt', 0.0077673471877831145) +zone = ('arz030', 0.0040295986212761344) + +[fips0514991293] +centroid = (0.61229345857821482, -1.6313109062188196) +description = Ferguson township, AR +station = ('krue', 0.0060056622041971316) +zone = ('arz038', 0.0015971826608149504) + +[fips0514991410] +centroid = (0.61285280169689393, -1.6237745046955381) +description = Galla Rock township, AR +station = ('krue', 0.0025480877811775789) +zone = ('arz039', 0.0032632120082806402) + +[fips0514991464] +centroid = (0.61042620062467623, -1.629725990178376) +description = Gilkey township, AR +station = ('krue', 0.0062159193422917343) +zone = ('arz038', 0.00069526317936636779) + +[fips0514991500] +centroid = (0.60897305694275816, -1.6348876443615166) +description = Gravelly Hill township, AR +station = ('kmwt', 0.0060964640733660088) +zone = ('arz038', 0.0042049262246125043) + +[fips0514991677] +centroid = (0.61066784145961472, -1.6321992962613772) +description = Herring township, AR +station = ('krue', 0.007512113525074038) +zone = ('arz038', 0.0015466067673515634) + +[fips0514991836] +centroid = (0.60744723775078724, -1.6330345235749191) +description = Ions Creek township, AR +station = ('kmwt', 0.0044429634047297344) +zone = ('arz038', 0.0041106435362283852) + +[fips0514992106] +centroid = (0.6103915034791465, -1.628108401574335) +description = Lamar township, AR +station = ('krue', 0.0055026316459804974) +zone = ('arz038', 0.0018964184892807845) + +[fips0514992343] +centroid = (0.61330616842339192, -1.6278747019874931) +description = Magazine township, AR +station = ('krue', 0.003098199724376968) +zone = ('arz038', 0.0031292828756832908) + +[fips0514992418] +centroid = (0.61163080942111014, -1.6254136655691336) +description = Mason township, AR +station = ('krue', 0.0036220405348063797) +zone = ('arz039', 0.003291815930789871) + +[fips0514992613] +centroid = (0.61369724434888639, -1.630247930891185) +description = Mountain township, AR +station = ('krue', 0.0046290685333202986) +zone = ('arz038', 0.0027875329868236147) + +[fips0514993021] +centroid = (0.61269996321429687, -1.6290292547409799) +description = Prairie township, AR +station = ('krue', 0.0042162589647996547) +zone = ('arz038', 0.0020841921920698578) + +[fips0514993159] +centroid = (0.61211634256572245, -1.6340739544109444) +description = Richland township, AR +station = ('kmwt', 0.0091251523166324643) +zone = ('arz030', 0.0028214840647453623) + +[fips0514993180] +centroid = (0.61308075915049687, -1.632739528024747) +description = Riley township, AR +station = ('krue', 0.0067561646754573622) +zone = ('arz030', 0.0028407161848129059) + +[fips0514993240] +centroid = (0.60963916185178191, -1.6300875351329267) +description = Rover township, AR +station = ('krue', 0.0070177023601703378) +zone = ('arz038', 0.0012874930038450612) + +[fips0514993549] +centroid = (0.6143546924248201, -1.6296494574906759) +description = Sulphur Springs township, AR +station = ('krue', 0.0039757736963861902) +zone = ('arz038', 0.0034894116565146452) + +[fips0514993882] +centroid = (0.61162040725876821, -1.62727017229448) +description = Ward township, AR +station = ('krue', 0.004095110245434512) +zone = ('arz038', 0.002608088092359683) + +[fips0514993951] +centroid = (0.61300431372925956, -1.6345255409016053) +description = Waveland township, AR +station = ('krue', 0.0081739661240599545) +zone = ('arz030', 0.0018646475687596027) + +[fips0515100] +centroid = (0.62235006318149866, -1.6029361460913516) +description = Concord town, AR +station = ('kbvx', 0.0030155043893859072) +zone = ('arz024', 0.00336023943238785) + +[fips0515190] +centroid = (0.6121624192579751, -1.6138548560786581) +description = Conway city, AR +station = ('klrf', 0.0053031176816536662) +zone = ('arz032', 0.0023070678220775708) + +[fips0515310] +centroid = (0.61207839910778405, -1.6304881405561371) +description = Corinth town, AR +station = ('krue', 0.0055483284229950955) +zone = ('arz038', 0.0011745173420677597) + +[fips0515460] +centroid = (0.6354883956450289, -1.5810227519343996) +description = Corning city, AR +station = ('k4m9', 0.00091952022327816251) +zone = ('arz009', 0.0024816279534250717) + +[fips0515490] +centroid = (0.63323744450873176, -1.6147968975424221) +description = Cotter city, AR +station = ('kflp', 0.00093183220687689469) +zone = ('arz005', 0.0025910310863944365) + +[fips0515550] +centroid = (0.6109712494967815, -1.5926484424418113) +description = Cotton Plant city, AR +station = ('ksgt', 0.0084001033265306436) +zone = ('arz034', 0.0031481232174213024) + +[fips0515700] +centroid = (0.60107472649249061, -1.6480363615340963) +description = Cove town, AR +station = ('kmez', 0.0037055005095548267) +zone = ('arz040', 0.0029558986707768123) + +[fips0515790] +centroid = (0.60284541537851632, -1.6034529904427448) +description = Coy town, AR +station = ('ksgt', 0.0044965957421079974) +zone = ('arz045', 0.0037383651271668014) + +[fips0515940] +centroid = (0.61482039862912974, -1.5764589777398221) +description = Crawfordsville town, AR +station = ('kawm', 0.0020832498897202052) +zone = ('arz036', 0.0003947377336950305) + +[fips0516240] +centroid = (0.578207562259201, -1.6050657619380502) +description = Crossett city, AR +station = ('kbqp', 0.0065528229644568198) +zone = ('arz074', 0.0030579727983348678) + +[fips0516930] +centroid = (0.62596715333650177, -1.601849032860162) +description = Cushman city, AR +station = ('kbvx', 0.0029406598601650338) +zone = ('arz016', 0.0036676629097040039) + +[fips0517140] +centroid = (0.59752959626254709, -1.6360575560124209) +description = Daisy town, AR +station = ('kmwt', 0.0059234547734317673) +zone = ('arz052', 0.0017383176448763481) + +[fips0517290] +centroid = (0.61727258622818182, -1.6128666681094714) +description = Damascus town, AR +station = ('kcca', 0.0041033014001507304) +zone = ('arz032', 0.0040007155735319131) + +[fips0517320] +centroid = (0.61178624844429275, -1.62997002211439) +description = Danville city, AR +station = ('krue', 0.0053873540754337838) +zone = ('arz038', 0.00092516449951475879) + +[fips0517380] +centroid = (0.61481500556174118, -1.6260518626634177) +description = Dardanelle city, AR +station = ('krue', 0.0010265333922708465) +zone = ('arz022', 0.0042934942584553458) + +[fips0517410] +centroid = (0.6351814096828956, -1.5835061983803549) +description = Datto town, AR +station = ('k4m9', 0.0011052783070168457) +zone = ('arz008', 0.0043059100654248171) + +[fips0517740] +centroid = (0.63425045105988187, -1.6485311100171589) +description = Decatur city, AR +station = ('kxna', 0.0023784742115881604) +zone = ('arz001', 0.0027636663333375981) + +[fips0518010] +centroid = (0.6323416193635607, -1.5834624604292999) +description = Delaplaine town, AR +station = ('k4m9', 0.0031440349693651207) +zone = ('arz018', 0.0030637666530036237) + +[fips0518100] +centroid = (0.59392617203558717, -1.6319761384632174) +description = Delight city, AR +station = ('km89', 0.0064679302826783107) +zone = ('arz052', 0.0032011292987321983) + +[fips0518160] +centroid = (0.62586004248030691, -1.5712547898828104) +description = Dell town, AR +station = ('kbyh', 0.0021643315361723169) +zone = ('arz028', 0.0017079479527727481) + +[fips0518340] +centroid = (0.62391841604734077, -1.615303496811106) +description = Dennard CDP, AR +station = ('kcca', 0.0029454610829213945) +zone = ('arz023', 0.0029584766372387212) + +[fips0518370] +centroid = (0.61828527862006644, -1.6363649259469897) +description = Denning town, AR +station = ('krue', 0.009838239785364614) +zone = ('arz020', 0.002435429400537576) + +[fips0518490] +centroid = (0.59414926002057711, -1.6465808442043957) +description = De Queen city, AR +station = ('kdeq', 0.00084772288958271649) +zone = ('arz050', 0.0016574815439213885) + +[fips0518520] +centroid = (0.58515250660556684, -1.5957905761474691) +description = Dermott city, AR +station = ('kllq', 0.0049830657243190657) +zone = ('arz069', 0.0043285584023049278) + +[fips0518550] +centroid = (0.61045731984523921, -1.5970913176791031) +description = Des Arc city, AR +station = ('ksrc', 0.0052644932715278465) +zone = ('arz046', 0.0026483006888515805) + +[fips0518640] +centroid = (0.60712789485754981, -1.5962966867239625) +description = De Valls Bluff city, AR +station = ('ksgt', 0.0035804952348318137) +zone = ('arz046', 0.0015210342104878375) + +[fips0518790] +centroid = (0.59842727145672536, -1.5941542078006767) +description = DeWitt city, AR +station = ('ksgt', 0.0063701200383713442) +zone = ('arz057', 0.00053106770931846147) + +[fips0518850] +centroid = (0.63631948652824355, -1.6216334045823615) +description = Diamond City city, AR +station = ('kbbg', 0.00421958096160712) +zone = ('arz003', 0.0036257099959060828) + +[fips0518940] +centroid = (0.62218846314605647, -1.5927688527069064) +description = Diaz city, AR +station = ('km19', 0.0011910779496756051) +zone = ('arz025', 0.0010668389799140239) + +[fips0518970] +centroid = (0.59551789486011353, -1.6409382470925753) +description = Dierks city, AR +station = ('kdeq', 0.0056460194356283515) +zone = ('arz051', 0.00066806476385357166) + +[fips0519450] +centroid = (0.59749854685515413, -1.6217362219285962) +description = Donaldson town, AR +station = ('km89', 0.0031685167987816057) +zone = ('arz054', 0.001510748160163075) + +[fips0519600] +centroid = (0.61769420541558617, -1.6251509935167083) +description = Dover city, AR +station = ('krue', 0.002474031109186496) +zone = ('arz022', 0.0015047497328672908) + +[fips0519990] +centroid = (0.59140115184684938, -1.5967378012391116) +description = Dumas city, AR +station = ('kllq', 0.0058222077029634585) +zone = ('arz065', 0.0034852074010430726) + +[fips0520200] +centroid = (0.61949932964775378, -1.6430141591581899) +description = Dyer city, AR +station = ('kfsm', 0.0043048480167876589) +zone = ('arz019', 0.0022217723904354686) + +[fips0520230] +centroid = (0.62115180738354192, -1.5745196900480538) +description = Dyess town, AR +station = ('knqa', 0.0063460692422735131) +zone = ('arz028', 0.0037922379384032769) + +[fips0520320] +centroid = (0.61563764905137619, -1.5788993494598382) +description = Earle city, AR +station = ('kawm', 0.0041019782637996549) +zone = ('arz036', 0.0024926938176278962) + +[fips0520440] +centroid = (0.58658065717259611, -1.6186547733210304) +description = East Camden town, AR +station = ('kcdh', 0.00038403334962533074) +zone = ('arz066', 0.0020513689206072085) + +[fips0520470] +centroid = (0.60308988364684324, -1.6114184462560441) +description = East End CDP, AR +station = ('klit', 0.0034012995545854045) +zone = ('arz044', 0.0037660814732631957) + +[fips0520830] +centroid = (0.61268971813158757, -1.5761216230487041) +description = Edmondson town, AR +station = ('kawm', 0.0011414145262062679) +zone = ('arz036', 0.0018048670302761773) + +[fips0520920] +centroid = (0.62601368381435996, -1.5873077349307085) +description = Egypt town, AR +station = ('kjbr', 0.0042312408250138583) +zone = ('arz017', 0.0037858730942053535) + +[fips0520950] +centroid = (0.59879757796412103, -1.5856900241536203) +description = Elaine city, AR +station = ('kckm', 0.0049524153763582874) +zone = ('arz058', 0.0020910317088454798) + +[fips0521070] +centroid = (0.5797589679780063, -1.6172954236331145) +description = El Dorado city, AR +station = ('keld', 0.0022262798581658473) +zone = ('arz073', 0.0012695571648007158) + +[fips0521190] +centroid = (0.62859340262185526, -1.6409478464034613) +description = Elkins city, AR +station = ('kfyv', 0.0020974853819433572) +zone = ('arz010', 0.002827607252339668) + +[fips0521430] +centroid = (0.63185601640577826, -1.6444156585475413) +description = Elm Springs city, AR +station = ('kasg', 0.001467782184896045) +zone = ('arz001', 0.0024457590344434802) + +[fips0521580] +centroid = (0.57765657926763891, -1.6265749552935329) +description = Emerson town, AR +station = ('keld', 0.0059196765022019029) +zone = ('arz072', 0.0020932796298891751) + +[fips0521610] +centroid = (0.58856933768219599, -1.6312921613826532) +description = Emmet city, AR +station = ('km89', 0.0087699855258317593) +zone = ('arz061', 0.0025235753773130486) + +[fips0521730] +centroid = (0.6029432585363832, -1.6051621041127602) +description = England city, AR +station = ('klit', 0.0050084102798049236) +zone = ('arz045', 0.0038106218787860085) + +[fips0521820] +centroid = (0.61428505378766551, -1.6093082733772128) +description = Enola town, AR +station = ('klrf', 0.0049408135200691367) +zone = ('arz032', 0.0019841676390604164) + +[fips0522120] +centroid = (0.62335715306648443, -1.5748240580163089) +description = Etowah town, AR +station = ('kbyh', 0.0059128132972032163) +zone = ('arz028', 0.0026415668146403727) + +[fips0522180] +centroid = (0.5780377766295669, -1.5928571489137648) +description = Eudora city, AR +station = ('kglh', 0.0075609603621291134) +zone = ('arz075', 0.0026212960806203936) + +[fips0522240] +centroid = (0.63548788949954593, -1.6361572317660025) +description = Eureka Springs city, AR +station = ('krog', 0.0050481678757187155) +zone = ('arz002', 0.0031496365597526083) + +[fips0522360] +centroid = (0.62954523538272278, -1.5991078012836872) +description = Evening Shade city, AR +station = ('kbvx', 0.0058941022449202655) +zone = ('arz007', 0.0025560825835094269) + +[fips0522450] +centroid = (0.63100947935868346, -1.6215762799559437) +description = Everton town, AR +station = ('khro', 0.0039149517538591833) +zone = ('arz003', 0.0037189642224839544) + +[fips0522660] +centroid = (0.62135642978504579, -1.6103491179299323) +description = Fairfield Bay city, AR +station = ('kcca', 0.0026082971975762916) +zone = ('arz024', 0.0035735881023628725) + +[fips0523140] +centroid = (0.61005308413718484, -1.5913345062210322) +description = Fargo town, AR +station = ('ksgt', 0.0083248803621538484) +zone = ('arz034', 0.0041727629330725012) + +[fips0523170] +centroid = (0.6289570070649233, -1.6450158598240097) +description = Farmington city, AR +station = ('kfyv', 0.0013691869103350971) +zone = ('arz010', 0.0011222931979217128) + +[fips0523290] +centroid = (0.62956750578397835, -1.6435161682109412) +description = Fayetteville city, AR +station = ('kfyv', 0.0012489763453557463) +zone = ('arz010', 0.0017366228438652701) + +[fips0523320] +centroid = (0.5770203020355319, -1.6083039934723227) +description = Felsenthal town, AR +station = ('kbqp', 0.0065655164641512066) +zone = ('laz006', 0.0051863984424960615) + +[fips0523680] +centroid = (0.62767499291616324, -1.6097666841052494) +description = Fifty-Six city, AR +station = ('kcca', 0.0070442776224638598) +zone = ('arz014', 0.0020986530154270848) + +[fips0523800] +centroid = (0.61944007571964843, -1.5877717656189365) +description = Fisher city, AR +station = ('km19', 0.0038545506917001112) +zone = ('arz025', 0.0039201915588483521) + +[fips0524010] +centroid = (0.63316091182103185, -1.6160480717232992) +description = Flippin city, AR +station = ('kflp', 0.00041523032136471142) +zone = ('arz004', 0.0012966685752899597) + +[fips0524220] +centroid = (0.59023748847466717, -1.6129908133791657) +description = Fordyce city, AR +station = ('kcdh', 0.0061682196358946052) +zone = ('arz063', 0.003647666231874804) + +[fips0524250] +centroid = (0.58851533719513938, -1.6475496066590074) +description = Foreman city, AR +station = ('kdeq', 0.0057693745265961927) +zone = ('arz059', 0.0023944024464972891) + +[fips0524430] +centroid = (0.61104114993332381, -1.584539555470583) +description = Forrest City city, AR +station = ('kuta', 0.0085399337306481492) +zone = ('arz048', 0.00060346256112264079) + +[fips0524550] +centroid = (0.61696125439621108, -1.6470826263643441) +description = Fort Smith city, AR +station = ('kfsm', 0.00028465338434276513) +zone = ('arz029', 0.0029592882778762828) + +[fips0524640] +centroid = (0.58051642342007925, -1.6386273788030574) +description = Fouke city, AR +station = ('ktxk', 0.0035861623081939781) +zone = ('arz070', 0.0008980585495235447) + +[fips0524670] +centroid = (0.58220085813447153, -1.6031040467653934) +description = Fountain Hill town, AR +station = ('kllq', 0.0050315096951422588) +zone = ('arz074', 0.0031485820298614272) + +[fips0524700] +centroid = (0.60412831964519476, -1.621755176204273) +description = Fountain Lake town, AR +station = ('khot', 0.0034520969041248999) +zone = ('arz043', 0.0035376407066965974) + +[fips0524760] +centroid = (0.6107452991718183, -1.6165055225202469) +description = Fourche town, AR +station = ('klrf', 0.0068395851671856182) +zone = ('arz031', 0.0048414459828157027) + +[fips0525030] +centroid = (0.63140011895186476, -1.6018743226810233) +description = Franklin town, AR +station = ('kbvx', 0.0079529254443554999) +zone = ('arz015', 0.0023523216073162577) + +[fips0525060] +centroid = (0.60770334736522491, -1.5954128170841675) +description = Fredonia (Biscoe) town, AR +station = ('ksgt', 0.0044286979732874616) +zone = ('arz046', 0.0020487318950060725) + +[fips0525180] +centroid = (0.59733071599428234, -1.6232169592659882) +description = Friendship town, AR +station = ('km89', 0.0023586105151930199) +zone = ('arz054', 0.0018252844596091103) + +[fips0525360] +centroid = (0.58664554851418527, -1.6373653312209402) +description = Fulton town, AR +station = ('ktxk', 0.0037531180503862379) +zone = ('arz060', 0.0030157845223115513) + +[fips0525750] +centroid = (0.63628281716065915, -1.6401822577270742) +description = Garfield town, AR +station = ('krog', 0.0023463649766183921) +zone = ('arz001', 0.0044551798395330777) + +[fips0525780] +centroid = (0.58225665631065782, -1.6356206826473543) +description = Garland town, AR +station = ('ktxk', 0.0042191985388363188) +zone = ('arz071', 0.0026115258608051437) + +[fips0525900] +centroid = (0.61335683533157737, -1.6018432034604602) +description = Garner town, AR +station = ('ksrc', 0.001345689634959411) +zone = ('arz033', 0.0020373154367787677) + +[fips0526050] +centroid = (0.63329149735566614, -1.6141977260102125) +description = Gassville city, AR +station = ('kbpk', 0.0014541669517972027) +zone = ('arz005', 0.0021066831455076969) + +[fips0526110] +centroid = (0.63681971534515769, -1.6395070247460624) +description = Gateway town, AR +station = ('krog', 0.0031092355038370208) +zone = ('moz102', 0.0041716157470021911) + +[fips0526290] +centroid = (0.6328310620456975, -1.6491697085371713) +description = Gentry city, AR +station = ('kslg', 0.001026792349982591) +zone = ('arz001', 0.0035690613250217193) + +[fips0526440] +centroid = (0.61307206741082199, -1.5961647223792192) +description = Georgetown town, AR +station = ('ksrc', 0.0043142267388287647) +zone = ('arz034', 0.0031789084113207967) + +[fips0526710] +centroid = (0.60901004046960794, -1.6098013288909012) +description = Gibson CDP, AR +station = ('klrf', 0.0012785276241342658) +zone = ('arz044', 0.0024259541876956278) + +[fips0526800] +centroid = (0.62815333530425743, -1.6182210764552021) +description = Gilbert town, AR +station = ('kflp', 0.0057214032567429549) +zone = ('arz013', 0.0014123071024632189) + +[fips0526980] +centroid = (0.59549188945425868, -1.5948667384678035) +description = Gillett city, AR +station = ('ksgt', 0.0088162754308711601) +zone = ('arz057', 0.0029960967833710106) + +[fips0527010] +centroid = (0.59635505948912504, -1.6460719760076841) +description = Gillham town, AR +station = ('kdeq', 0.0024224353046869555) +zone = ('arz050', 0.0031651294633972932) + +[fips0527040] +centroid = (0.61804876905312867, -1.5756460906407059) +description = Gilmore city, AR +station = ('kawm', 0.004897714793072468) +zone = ('arz036', 0.0035823550223651229) + +[fips0527310] +centroid = (0.59912695650055747, -1.6323871809553545) +description = Glenwood city, AR +station = ('kmwt', 0.0039625487316146749) +zone = ('arz052', 0.0034002339363867046) + +[fips0527670] +centroid = (0.63010676016296696, -1.6406370556235588) +description = Goshen town, AR +station = ('kasg', 0.0021502604970493424) +zone = ('arz010', 0.0036897503781233749) + +[fips0527700] +centroid = (0.627703214890168, -1.5702457975889401) +description = Gosnell city, AR +station = ('kbyh', 0.0002628746910477317) +zone = ('arz028', 0.0037083463279895881) + +[fips0527730] +centroid = (0.59318749633626555, -1.5980943409469315) +description = Gould city, AR +station = ('kpbf', 0.0063417060014760163) +zone = ('arz064', 0.0025036187861930963) + +[fips0527790] +centroid = (0.59479011001532434, -1.6004344435014206) +description = Grady city, AR +station = ('kpbf', 0.0038553507612910129) +zone = ('arz064', 0.0021800975439817587) + +[fips0527970] +centroid = (0.59760436616770263, -1.6462237847460226) +description = Grannis city, AR +station = ('kdeq', 0.0035072488373277979) +zone = ('arz050', 0.0043961152714406893) + +[fips0528360] +centroid = (0.63563308344001912, -1.6484003499495996) +description = Gravette city, AR +station = ('kxna', 0.0031382115544065724) +zone = ('arz001', 0.0030006279573345867) + +[fips0528510] +centroid = (0.61485891804572135, -1.6123952721318002) +description = Greenbrier city, AR +station = ('klrf', 0.0063875825355827111) +zone = ('arz032', 0.0016048928533781742) + +[fips0528600] +centroid = (0.63415471975040993, -1.6306256725011943) +description = Green Forest city, AR +station = ('kbbg', 0.0046801044415590871) +zone = ('arz002', 0.0015540600987887124) + +[fips0528660] +centroid = (0.62840052628621734, -1.6438348827856477) +description = Greenland city, AR +station = ('kfyv', 0.00026885784370677285) +zone = ('arz010', 0.00060339005957707188) + +[fips0528720] +centroid = (0.63426966713494626, -1.5746741516868552) +description = Greenway city, AR +station = ('k4m9', 0.0060998895967425545) +zone = ('moz113', 0.002205210442774142) + +[fips0528780] +centroid = (0.61455467225051363, -1.6447635026674639) +description = Greenwood city, AR +station = ('kfsm', 0.0028090464019680135) +zone = ('arz029', 0.00055496699846537673) + +[fips0528810] +centroid = (0.62077235535086583, -1.6086610529306957) +description = Greers Ferry city, AR +station = ('kcca', 0.0040214826299247381) +zone = ('arz024', 0.0020920581961836942) + +[fips0528990] +centroid = (0.61303764951797268, -1.5995195419075252) +description = Griffithville town, AR +station = ('ksrc', 0.0020087907346319172) +zone = ('arz033', 0.0027069737075602466) + +[fips0529020] +centroid = (0.62228169863469796, -1.58956245597819) +description = Grubbs city, AR +station = ('km19', 0.0014600421002478486) +zone = ('arz025', 0.0021958449284600555) + +[fips0529080] +centroid = (0.6270462555064249, -1.6046297612376095) +description = Guion town, AR +station = ('kbvx', 0.0053013893335995066) +zone = ('arz015', 0.002949975917119011) + +[fips0529140] +centroid = (0.59453061446213784, -1.6248240409879324) +description = Gum Springs town, AR +station = ('km89', 0.00075357076709429191) +zone = ('arz053', 0.001191050078509976) + +[fips0529200] +centroid = (0.59190567417372342, -1.6258710290996186) +description = Gurdon city, AR +station = ('km89', 0.0034951155228600075) +zone = ('arz053', 0.0024153163223117353) + +[fips0529230] +centroid = (0.61658831244164491, -1.6116890071966883) +description = Guy city, AR +station = ('kcca', 0.0049866401605587578) +zone = ('arz032', 0.0031612458376056051) + +[fips0529290] +centroid = (0.61414352503862135, -1.6477920852519869) +description = Hackett city, AR +station = ('kfsm', 0.0026187323018505727) +zone = ('arz029', 0.00197180352498492) + +[fips0529320] +centroid = (0.619853980551759, -1.6289530536658376) +description = Hagarville CDP, AR +station = ('krue', 0.0056838130674117162) +zone = ('arz021', 0.0020534066499678259) + +[fips0529500] +centroid = (0.57988555670865338, -1.6021667002373174) +description = Hamburg city, AR +station = ('kllq', 0.0071601990371039474) +zone = ('arz074', 0.00073031199532301615) + +[fips0529650] +centroid = (0.58531778928573064, -1.6138365475748049) +description = Hampton city, AR +station = ('kcdh', 0.0045915495534735685) +zone = ('arz067', 0.00065963790848252426) + +[fips0529920] +centroid = (0.63389140192616156, -1.5966272869908753) +description = Hardy city, AR +station = ('karg', 0.0085698673182530473) +zone = ('arz007', 0.0027611461788073677) + +[fips0530310] +centroid = (0.58486197909827975, -1.6127029387723419) +description = Harrell town, AR +station = ('kcdh', 0.0056327749925278161) +zone = ('arz067', 0.0017033790700839576) + +[fips0530400] +centroid = (0.62067880570295897, -1.583386102274525) +description = Harrisburg city, AR +station = ('kjbr', 0.0048377017700227971) +zone = ('arz027', 0.00085454323047316543) + +[fips0530460] +centroid = (0.632545421460316, -1.6252475625842213) +description = Harrison city, AR +station = ('khro', 0.00060245717652329482) +zone = ('arz003', 0.0012257999399459896) + +[fips0530490] +centroid = (0.6112742212016351, -1.6472313982297839) +description = Hartford city, AR +station = ('krkr', 0.0034587738090488995) +zone = ('arz029', 0.0034185394367725729) + +[fips0530520] +centroid = (0.61849557334163918, -1.6340195350448672) +description = Hartman city, AR +station = ('krue', 0.0081234235044105995) +zone = ('arz021', 0.0032731841843065658) + +[fips0530640] +centroid = (0.60229982545434302, -1.6169054996249266) +description = Haskell city, AR +station = ('khot', 0.0066055199690759157) +zone = ('arz043', 0.0024488420524572752) + +[fips0530700] +centroid = (0.60186818807703224, -1.6472401946892141) +description = Hatfield town, AR +station = ('kmez', 0.0027630566111822969) +zone = ('arz040', 0.0021841114113012516) + +[fips0530790] +centroid = (0.61278607775959026, -1.6323388702416592) +description = Havana city, AR +station = ('krue', 0.0065512100869419684) +zone = ('arz038', 0.0024917398971247861) + +[fips0530880] +centroid = (0.60896165994274265, -1.58463088855034) +description = Haynes town, AR +station = ('kuta', 0.0073734297575610251) +zone = ('arz049', 0.0019317220232750016) + +[fips0530940] +centroid = (0.60702231989109667, -1.5982011900037387) +description = Hazen city, AR +station = ('ksgt', 0.0031388043679396985) +zone = ('arz046', 0.00090556156520017002) + +[fips0531090] +centroid = (0.61960068091741705, -1.6062841064756972) +description = Heber Springs city, AR +station = ('kcca', 0.0061667267383660792) +zone = ('arz024', 0.00066283832324794969) + +[fips0531150] +centroid = (0.61894459419829984, -1.6227919541398352) +description = Hector town, AR +station = ('krue', 0.0040950005040345152) +zone = ('arz022', 0.00082728515924411364) + +[fips0531190] +centroid = (0.60272411499550282, -1.5816273165339978) +description = Helena-West Helena city, AR +station = ('kckm', 0.0043760359517060138) +zone = ('arz058', 0.0037523996443411907) + +[fips0531390] +centroid = (0.60232028071317634, -1.6093596733236841) +description = Hensley CDP, AR +station = ('klit', 0.0039057539887581722) +zone = ('arz044', 0.0047611549138708506) + +[fips0531540] +centroid = (0.58377709988853266, -1.6086983855233961) +description = Hermitage town, AR +station = ('kllq', 0.0069344831819376897) +zone = ('arz068', 0.00034182203893576632) + +[fips0531900] +centroid = (0.6178924224587351, -1.588150659146252) +description = Hickory Ridge city, AR +station = ('km19', 0.0048448250768526558) +zone = ('arz035', 0.0036819541528227326) + +[fips0532080] +centroid = (0.62075088780106635, -1.6092839783940251) +description = Higden town, AR +station = ('kcca', 0.0035241553403509689) +zone = ('arz024', 0.0025820732373038392) + +[fips0532140] +centroid = (0.61427943382747419, -1.6007177104390193) +description = Higginson town, AR +station = ('ksrc', 0.00043290521469219824) +zone = ('arz033', 0.0011494321927423233) + +[fips0532200] +centroid = (0.63312726187305346, -1.6462559686174294) +description = Highfill town, AR +station = ('kxna', 0.00035790553283638037) +zone = ('arz001', 0.0014500653317664994) + +[fips0532257] +centroid = (0.63300676434149572, -1.5973326094481912) +description = Highland city, AR +station = ('karg', 0.0088248922590337744) +zone = ('arz007', 0.0019613250815703276) + +[fips0532470] +centroid = (0.63087484466018462, -1.6381677288912522) +description = Hindsville town, AR +station = ('kasg', 0.0036719919940959712) +zone = ('arz011', 0.0030402525297019371) + +[fips0532535] +centroid = (0.63570403107411277, -1.6463234081397262) +description = Hiwasse CDP, AR +station = ('kvbt', 0.0020125315551555328) +zone = ('arz001', 0.0017655023372758324) + +[fips0532650] +centroid = (0.63672581663140038, -1.6356002448418134) +description = Holiday Island CDP, AR +station = ('krog', 0.0057940061430218417) +zone = ('arz002', 0.0034724774532240432) + +[fips0532710] +centroid = (0.6137580865266109, -1.6105518030159665) +description = Holland city, AR +station = ('klrf', 0.0047154107868769305) +zone = ('arz032', 0.00084081776592970431) + +[fips0532800] +centroid = (0.60391015348869548, -1.5917450251143939) +description = Holly Grove city, AR +station = ('ksgt', 0.0052638017747146893) +zone = ('arz047', 0.0013325971746438355) + +[fips0533190] +centroid = (0.58761068068395306, -1.6334739451206937) +description = Hope city, AR +station = ('ktxk', 0.0068526064153079371) +zone = ('arz060', 0.001630189023687051) + +[fips0533310] +centroid = (0.59238741995385891, -1.6468341438387375) +description = Horatio city, AR +station = ('kdeq', 0.0019982208196364592) +zone = ('arz050', 0.0019358963282120883) + +[fips0533370] +centroid = (0.63213601957767573, -1.6011358040613346) +description = Horseshoe Bend city, AR +station = ('kbvx', 0.0085630586346852368) +zone = ('arz006', 0.0030588074605145165) + +[fips0533375] +centroid = (0.60935777986977535, -1.5761649421207387) +description = Horseshoe Lake town, AR +station = ('kawm', 0.0039787665826139474) +zone = ('msz007', 0.0046688729593052994) + +[fips0533400] +centroid = (0.60199882597154408, -1.6240429886943724) +description = Hot Springs city, AR +station = ('khot', 0.00072361050346021229) +zone = ('arz042', 0.002058178062165252) + +[fips0533482] +centroid = (0.60491113472129932, -1.6226151173800232) +description = Hot Springs Village CDP, AR +station = ('khot', 0.0035957075814791553) +zone = ('arz042', 0.0029740288715715303) + +[fips0533490] +centroid = (0.61147526567817234, -1.6178258117395032) +description = Houston town, AR +station = ('krue', 0.0068967146026730113) +zone = ('arz031', 0.0039674159500722832) + +[fips0533580] +centroid = (0.62895557589493656, -1.5877879099145173) +description = Hoxie city, AR +station = ('karg', 0.0018708134419071507) +zone = ('arz017', 0.0018867139255591004) + +[fips0533760] +centroid = (0.60998669181243892, -1.5789792506329945) +description = Hughes city, AR +station = ('kawm', 0.0046478101738877415) +zone = ('arz048', 0.0041838847592905433) + +[fips0533820] +centroid = (0.60287700583797743, -1.6015140169102418) +description = Humnoke city, AR +station = ('ksgt', 0.0029552198512328787) +zone = ('arz045', 0.0041342194759314407) + +[fips0533850] +centroid = (0.60079140719501434, -1.6005063510666027) +description = Humphrey city, AR +station = ('ksgt', 0.0036560016531835479) +zone = ('arz056', 0.0042588758216245415) + +[fips0533910] +centroid = (0.61181748983790352, -1.590393895927255) +description = Hunter town, AR +station = ('ksgt', 0.010167145365553064) +zone = ('arz034', 0.0028693761669712384) + +[fips0533940] +centroid = (0.61229352839138484, -1.6452568374338326) +description = Huntington city, AR +station = ('kfsm', 0.0046170494453170088) +zone = ('arz029', 0.002053115014894791) + +[fips0533970] +centroid = (0.62993308244910096, -1.635990186303294) +description = Huntsville city, AR +station = ('kfyv', 0.0062973471083844004) +zone = ('arz011', 0.0014306047321956006) + +[fips0534090] +centroid = (0.57666580821115931, -1.6088414327088894) +description = Huttig city, AR +station = ('kbqp', 0.0065783217683831868) +zone = ('laz006', 0.0046275463303903615) + +[fips0534150] +centroid = (0.63184303115614349, -1.5914045288306224) +description = Imboden town, AR +station = ('karg', 0.0039090059117109811) +zone = ('arz017', 0.0029898381012926569) + +[fips0534720] +centroid = (0.62206733729596808, -1.5936255824768328) +description = Jacksonport town, AR +station = ('km19', 0.0018725559977721493) +zone = ('arz025', 0.0015182847358885139) + +[fips0534750] +centroid = (0.60874387775867889, -1.6080099927598246) +description = Jacksonville city, AR +station = ('klrf', 0.00071400855456037258) +zone = ('arz044', 0.0031956532236679033) + +[fips0534900] +centroid = (0.62850179028941799, -1.6263932490651078) +description = Jasper city, AR +station = ('khro', 0.0044988164776814344) +zone = ('arz012', 0.0016446196357288313) + +[fips0535040] +centroid = (0.61374283234894844, -1.5779149663084207) +description = Jennette town, AR +station = ('kawm', 0.0025508563272747184) +zone = ('arz036', 0.0015990090782253938) + +[fips0535140] +centroid = (0.61585305758765729, -1.5747978780775289) +description = Jericho town, AR +station = ('kawm', 0.0026613439628720937) +zone = ('arz036', 0.0017708305349748365) + +[fips0535170] +centroid = (0.58290358005120191, -1.5964597528359763) +description = Jerome town, AR +station = ('kllq', 0.0057823006628566929) +zone = ('arz075', 0.0034383042993501919) + +[fips0535500] +centroid = (0.63050640565508864, -1.6436448862432755) +description = Johnson city, AR +station = ('kasg', 0.0012941395014446546) +zone = ('arz010', 0.0026013973148258048) + +[fips0535650] +centroid = (0.61969485888385456, -1.5734158565626297) +description = Joiner city, AR +station = ('knqa', 0.0047558567859970506) +zone = ('arz028', 0.0047047169990019743) + +[fips0535710] +centroid = (0.62517227803526598, -1.5826479850805641) +description = Jonesboro city, AR +station = ('kjbr', 0.00047469680817427065) +zone = ('arz026', 0.00068240164447035741) + +[fips0536040] +centroid = (0.61568986930259584, -1.5994478961417309) +description = Judsonia city, AR +station = ('ksrc', 0.001767485794196345) +zone = ('arz033', 0.001524293172371525) + +[fips0536130] +centroid = (0.5763447898018399, -1.6183331964063505) +description = Junction City city, AR +station = ('keld', 0.003657470470403463) +zone = ('arz073', 0.0031925576141110554) + +[fips0536310] +centroid = (0.62262877480974954, -1.5724638841754222) +description = Keiser city, AR +station = ('kbyh', 0.0055076328343151614) +zone = ('arz028', 0.0016758330323683992) + +[fips0536430] +centroid = (0.61498431995247715, -1.5999496433950942) +description = Kensett city, AR +station = ('ksrc', 0.0010416740299463759) +zone = ('arz033', 0.0011307558906442363) + +[fips0536550] +centroid = (0.60404576557157552, -1.6059033279927897) +description = Keo town, AR +station = ('klit', 0.0038508613416951129) +zone = ('arz045', 0.0030827808671174176) + +[fips0536670] +centroid = (0.61831173781152671, -1.6447407610273106) +description = Kibler city, AR +station = ('kfsm', 0.002464352747055725) +zone = ('arz019', 0.0028331568209335133) + +[fips0536880] +centroid = (0.59093530601619959, -1.6109065586397266) +description = Kingsland city, AR +station = ('kpbf', 0.007750609814820281) +zone = ('arz063', 0.0017813670770505875) + +[fips0537060] +centroid = (0.59785016088626097, -1.6345858943871392) +description = Kirby CDP, AR +station = ('kmwt', 0.0052629118156407159) +zone = ('arz052', 0.0015830099936670291) + +[fips0537240] +centroid = (0.63390224042081655, -1.5813111675932916) +description = Knobel city, AR +station = ('k4m9', 0.0015491469911381533) +zone = ('arz009', 0.0027375425018296047) + +[fips0537300] +centroid = (0.61745499058830766, -1.6294702121764963) +description = Knoxville town, AR +station = ('krue', 0.004342258726237622) +zone = ('arz021', 0.0036383591740628404) + +[fips0537660] +centroid = (0.63196942790057287, -1.5795993486629354) +description = Lafe town, AR +station = ('k4m9', 0.0039098565768637171) +zone = ('arz018', 0.0017730953874706737) + +[fips0537720] +centroid = (0.60485558089120839, -1.5836050538291877) +description = LaGrange town, AR +station = ('kuta', 0.005579680043504732) +zone = ('arz049', 0.0022870503957292802) + +[fips0537780] +centroid = (0.62516625664934655, -1.5787190220415219) +description = Lake City city, AR +station = ('kjbr', 0.0027851492753002754) +zone = ('arz026', 0.0025389612775038113) + +[fips0537930] +centroid = (0.60086828894856459, -1.6247117115972738) +description = Lake Hamilton CDP, AR +station = ('khot', 0.00099184282221598881) +zone = ('arz042', 0.0027538181192251925) + +[fips0538050] +centroid = (0.63484693478504339, -1.6151072868965968) +description = Lakeview city, AR +station = ('kbpk', 0.0010223086817179371) +zone = ('arz004', 0.0027529878194643091) + +[fips0538110] +centroid = (0.60076250454260138, -1.5849916655600196) +description = Lake View city, AR +station = ('kckm', 0.0048550228222015886) +zone = ('arz058', 0.00051442935799745325) + +[fips0538170] +centroid = (0.58170106564987045, -1.5932274903277455) +description = Lake Village city, AR +station = ('kglh', 0.0051574325781987345) +zone = ('arz075', 0.0010864842945732063) + +[fips0538290] +centroid = (0.61862210971240894, -1.6300482826780494) +description = Lamar city, AR +station = ('krue', 0.0053980870895238486) +zone = ('arz021', 0.0023798198876154478) + +[fips0538540] +centroid = (0.60403936021322058, -1.611323814504001) +description = Landmark CDP, AR +station = ('klit', 0.0025175297874860635) +zone = ('arz044', 0.0028137260182914681) + +[fips0538890] +centroid = (0.61662932767906675, -1.6438010408514516) +description = Lavaca city, AR +station = ('kfsm', 0.0026176874668943067) +zone = ('arz029', 0.0026288715300682971) + +[fips0539010] +centroid = (0.62697453992746044, -1.5752265658484039) +description = Leachville city, AR +station = ('kbyh', 0.0043602742596429919) +zone = ('arz028', 0.0039627717042414468) + +[fips0539040] +centroid = (0.63555744087023769, -1.6215325943647663) +description = Lead Hill town, AR +station = ('khro', 0.004284168124776961) +zone = ('arz003', 0.0031873549112958872) + +[fips0539310] +centroid = (0.59638132669436761, -1.6160245446849824) +description = Leola town, AR +station = ('km89', 0.0069673007707073487) +zone = ('arz055', 0.0031998200429114629) + +[fips0539370] +centroid = (0.6214786028326853, -1.5766141375103244) +description = Lepanto city, AR +station = ('kjbr', 0.0059654782302719376) +zone = ('arz028', 0.0048036063745263251) + +[fips0539460] +centroid = (0.62534288396964843, -1.6154062617974634) +description = Leslie city, AR +station = ('kcca', 0.0042778592301352062) +zone = ('arz013', 0.0024777612717848921) + +[fips0539520] +centroid = (0.6172106793996136, -1.6027264098751395) +description = Letona town, AR +station = ('ksrc', 0.0029546041643812105) +zone = ('arz033', 0.0022199321015752109) + +[fips0539640] +centroid = (0.58224414229992094, -1.6333484210408904) +description = Lewisville city, AR +station = ('ktxk', 0.006026397091065872) +zone = ('arz071', 0.0021103560650417084) + +[fips0539670] +centroid = (0.60385922478112231, -1.5839252693870511) +description = Lexa town, AR +station = ('kckm', 0.0062699259555423822) +zone = ('arz049', 0.0032053543445057921) + +[fips0539970] +centroid = (0.62742551555288317, -1.6478956879963855) +description = Lincoln city, AR +station = ('kfyv', 0.0036532905005425714) +zone = ('arz010', 0.0029155678889701154) + +[fips0540120] +centroid = (0.63505977768732413, -1.6429965138794522) +description = Little Flock city, AR +station = ('krog', 0.00061942496164750103) +zone = ('arz001', 0.001882575995164476) + +[fips0541000] +centroid = (0.60607312257739954, -1.6119608945875639) +description = Little Rock city, AR +station = ('klit', 0.0018014827921067327) +zone = ('arz044', 0.0010256458640848655) + +[fips0541090] +centroid = (0.59294061951357091, -1.6437501819570484) +description = Lockesburg city, AR +station = ('kdeq', 0.003455661219573939) +zone = ('arz050', 0.00098270936318037186) + +[fips0541270] +centroid = (0.61654839676165174, -1.6274077391461221) +description = London city, AR +station = ('krue', 0.0024345265999808356) +zone = ('arz022', 0.0036619251229389957) + +[fips0541420] +centroid = (0.60721386977650316, -1.6040861609887831) +description = Lonoke city, AR +station = ('klrf', 0.0041112915461597099) +zone = ('arz045', 0.00069245612155132959) + +[fips0541450] +centroid = (0.60292069142915494, -1.6198475487851358) +description = Lonsdale town, AR +station = ('khot', 0.0043004260745945167) +zone = ('arz043', 0.0026178300284627771) + +[fips0541555] +centroid = (0.6351199740932254, -1.6391357234009933) +description = Lost Bridge Village CDP, AR +station = ('krog', 0.0026227389478642948) +zone = ('arz001', 0.0048831691502219804) + +[fips0541630] +centroid = (0.58279308325625823, -1.619527490306905) +description = Louann town, AR +station = ('keld', 0.0030738602950481767) +zone = ('arz066', 0.0037559677787673213) + +[fips0541720] +centroid = (0.63278404287564871, -1.6432860640023583) +description = Lowell city, AR +station = ('kasg', 0.0013671084714616706) +zone = ('arz001', 0.0020624799572516264) + +[fips0542170] +centroid = (0.62409902271833717, -1.5695695697702547) +description = Luxora city, AR +station = ('khka', 0.0033463496328214716) +zone = ('arz028', 0.0017630192798411954) + +[fips0542260] +centroid = (0.6283959884301622, -1.5926435031600281) +description = Lynn town, AR +station = ('karg', 0.0052352494295960332) +zone = ('arz017', 0.002140839496436401) + +[fips0542350] +centroid = (0.60724938722678112, -1.6091194811120249) +description = McAlmont CDP, AR +station = ('klit', 0.0011698301690946144) +zone = ('arz044', 0.0017109555024098708) + +[fips0542410] +centroid = (0.59201358788137415, -1.6342652948568406) +description = McCaskill town, AR +station = ('ktxk', 0.0096242538581412587) +zone = ('arz060', 0.003252824327065256) + +[fips0542500] +centroid = (0.61535827419800937, -1.5916889476855274) +description = McCrory city, AR +station = ('km19', 0.0066401211657625874) +zone = ('arz034', 0.0014043585827933722) + +[fips0542560] +centroid = (0.63593776556753978, -1.5776155376219485) +description = McDougal town, AR +station = ('k4m9', 0.0036970829954109234) +zone = ('arz009', 0.0012450394868755784) + +[fips0542770] +centroid = (0.58691843074273464, -1.595154124382437) +description = McGehee city, AR +station = ('kllq', 0.0051510280795583367) +zone = ('arz065', 0.0041315616175111574) + +[fips0543070] +centroid = (0.58750250517691449, -1.6376737308997678) +description = McNab town, AR +station = ('ktxk', 0.0042980474345137645) +zone = ('arz060', 0.0027012069181438052) + +[fips0543100] +centroid = (0.58203672737161394, -1.6267957394439101) +description = McNeil city, AR +station = ('keld', 0.0061614667743083934) +zone = ('arz072', 0.0023538202098602932) + +[fips0543220] +centroid = (0.61284992190362819, -1.6026702626331029) +description = McRae city, AR +station = ('ksrc', 0.0021336937833078043) +zone = ('arz033', 0.0027409953838894601) + +[fips0543280] +centroid = (0.61119857863185367, -1.5835434088000073) +description = Madison city, AR +station = ('kuta', 0.0080684768749438654) +zone = ('arz048', 0.00025444948651747595) + +[fips0543310] +centroid = (0.61354636063505141, -1.6372298936709857) +description = Magazine city, AR +station = ('kfsm', 0.0085805340464881179) +zone = ('arz030', 0.0016761538104632001) + +[fips0543370] +centroid = (0.62313919634949544, -1.5966682324151269) +description = Magness town, AR +station = ('kbvx', 0.0024329787391843783) +zone = ('arz016', 0.0014075400471083876) + +[fips0543430] +centroid = (0.60106216012187619, -1.6203198348807253) +description = Magnet Cove town, AR +station = ('khot', 0.0038584800951561213) +zone = ('arz054', 0.0026221247404107544) + +[fips0543460] +centroid = (0.58078794429181213, -1.627104959427486) +description = Magnolia city, AR +station = ('keld', 0.0060695516244177062) +zone = ('arz072', 0.0010891590058131739) + +[fips0543610] +centroid = (0.59986325855209621, -1.6200117842677486) +description = Malvern city, AR +station = ('khot', 0.0044950724723633179) +zone = ('arz054', 0.0020314916767131754) + +[fips0543670] +centroid = (0.63691270648770393, -1.597693019938728) +description = Mammoth Spring city, AR +station = ('kuno', 0.0084727729249802868) +zone = ('moz106', 0.0039020750129522804) + +[fips0543820] +centroid = (0.6263025881654426, -1.5736617210943582) +description = Manila city, AR +station = ('kbyh', 0.003349564275215839) +zone = ('arz028', 0.0026193492801256627) + +[fips0543880] +centroid = (0.61198059085650225, -1.6446979131941741) +description = Mansfield city, AR +station = ('kfsm', 0.0050674746246079502) +zone = ('arz029', 0.0024302531695491163) + +[fips0544120] +centroid = (0.60691524394148688, -1.5841904023537217) +description = Marianna city, AR +station = ('kuta', 0.0062531166417712867) +zone = ('arz049', 0.00024133354705535334) + +[fips0544150] +centroid = (0.62156738773173437, -1.5722533625610466) +description = Marie town, AR +station = ('knqa', 0.0054060682851576171) +zone = ('arz028', 0.0026634137733577818) + +[fips0544180] +centroid = (0.61439247880312575, -1.5743644255577962) +description = Marion city, AR +station = ('kawm', 0.0012689752446410005) +zone = ('arz036', 0.001493185923777464) + +[fips0544210] +centroid = (0.6200773826960142, -1.5782453047759457) +description = Marked Tree city, AR +station = ('kjbr', 0.0062005044522590869) +zone = ('arz027', 0.0034482192574566252) + +[fips0544240] +centroid = (0.63162486499964421, -1.5775279570000835) +description = Marmaduke city, AR +station = ('k4m9', 0.0052277168656360701) +zone = ('arz018', 0.0027458078964591429) + +[fips0544300] +centroid = (0.62670083739416271, -1.6170013880140313) +description = Marshall city, AR +station = ('kcca', 0.0060483302752058592) +zone = ('arz013', 0.00073978937428933837) + +[fips0544420] +centroid = (0.60312161373264439, -1.5867705051336525) +description = Marvell city, AR +station = ('kckm', 0.0073518648008470151) +zone = ('arz058', 0.0024348674203718431) + +[fips0544600] +centroid = (0.60828815483769061, -1.612684141576298) +description = Maumelle city, AR +station = ('klit', 0.0031655391940514227) +zone = ('arz044', 0.0019151307395242931) + +[fips0544750] +centroid = (0.61052182721439296, -1.6130220373194839) +description = Mayflower city, AR +station = ('klrf', 0.0040103352233536284) +zone = ('arz032', 0.0031648560641957596) + +[fips0544780] +centroid = (0.63568863727011016, -1.5865487785054788) +description = Maynard town, AR +station = ('k4m9', 0.0035685528833133756) +zone = ('arz008', 0.0022549833611100103) + +[fips0544810] +centroid = (0.63533313115477152, -1.6508872346941812) +description = Maysville CDP, AR +station = ('kslg', 0.0038238537609718037) +zone = ('okz063', 0.0030056912888933511) + +[fips0545080] +centroid = (0.62938281504253235, -1.6039943566701285) +description = Melbourne city, AR +station = ('kbvx', 0.0067383954184481428) +zone = ('arz015', 0.00061309018361893944) + +[fips0545170] +centroid = (0.60354941138560081, -1.6447476027179782) +description = Mena city, AR +station = ('kmez', 0.00079521125848660233) +zone = ('arz040', 0.0016636917679617828) + +[fips0545200] +centroid = (0.61345663325820643, -1.6152406998646192) +description = Menifee town, AR +station = ('klrf', 0.0069622840993757021) +zone = ('arz031', 0.0029700158847813813) + +[fips0545500] +centroid = (0.61249246101952715, -1.6467591644940718) +description = Midland town, AR +station = ('kfsm', 0.0041955111123405464) +zone = ('arz029', 0.0021627024249978167) + +[fips0545530] +centroid = (0.63515802227091889, -1.6139881294203406) +description = Midway CDP, AR +station = ('kbpk', 0.00045422984606380864) +zone = ('arz005', 0.0026619172875763696) + +[fips0545560] +centroid = (0.59777214466869677, -1.6226933604903901) +description = Midway town, AR +station = ('km89', 0.0029414174278575766) +zone = ('arz054', 0.0012492387088932422) + +[fips0546040] +centroid = (0.59125239743470193, -1.6392383487610107) +description = Mineral Springs city, AR +station = ('ktxk', 0.0074938949910836623) +zone = ('arz051', 0.0038511455748046295) + +[fips0546100] +centroid = (0.62789593414617317, -1.5887306669632746) +description = Minturn town, AR +station = ('karg', 0.0031637524412065736) +zone = ('arz017', 0.0016026330720910929) + +[fips0546190] +centroid = (0.59175508716586123, -1.5969482355870246) +description = Mitchellville city, AR +station = ('kllq', 0.0059848824662467421) +zone = ('arz065', 0.0037566615735624563) + +[fips0546400] +centroid = (0.62645858569398583, -1.5767846561782444) +description = Monette city, AR +station = ('kjbr', 0.0044657754621456724) +zone = ('arz018', 0.0049619656976249045) + +[fips0546580] +centroid = (0.58686291181922878, -1.6021025070274291) +description = Monticello city, AR +station = ('kllq', 0.00065259017199048054) +zone = ('arz069', 0.0012357020065106908) + +[fips0546670] +centroid = (0.58116924637349521, -1.5969215844093465) +description = Montrose city, AR +station = ('kllq', 0.0069083833801352398) +zone = ('arz075', 0.0030100535468304281) + +[fips0546730] +centroid = (0.62425489807383272, -1.5982103180757268) +description = Moorefield town, AR +station = ('kbvx', 0.0012689711250042507) +zone = ('arz016', 0.00044822720244747371) + +[fips0546910] +centroid = (0.60723720482860222, -1.5880401798046007) +description = Moro town, AR +station = ('ksgt', 0.008955248232130621) +zone = ('arz049', 0.0029596777683740852) + +[fips0546970] +centroid = (0.61357845723999571, -1.6185997256364224) +description = Morrilton city, AR +station = ('krue', 0.0054072421532000252) +zone = ('arz031', 0.0019383937431936291) + +[fips0547030] +centroid = (0.61753157563588534, -1.6322116008326037) +description = Morrison Bluff town, AR +station = ('krue', 0.0063939916357048749) +zone = ('arz021', 0.0033889427576622808) + +[fips0547300] +centroid = (0.62196561950716178, -1.6435430986412993) +description = Mountainburg city, AR +station = ('kfsm', 0.0059892303923604574) +zone = ('arz019', 0.0013438322594028721) + +[fips0547390] +centroid = (0.63415663961258717, -1.6124159193768512) +description = Mountain Home city, AR +station = ('kbpk', 0.0012826315452162133) +zone = ('arz005', 0.0010630921518297812) + +[fips0547450] +centroid = (0.60335407413571762, -1.626149321848849) +description = Mountain Pine city, AR +station = ('khot', 0.001823719272120015) +zone = ('arz042', 0.00032720317890443866) + +[fips0547540] +centroid = (0.6260132474820469, -1.6074833571113276) +description = Mountain View city, AR +station = ('kcca', 0.0067949400788515201) +zone = ('arz014', 0.00078607899615425322) + +[fips0547690] +centroid = (0.60299563586723548, -1.6341502951124265) +description = Mount Ida city, AR +station = ('kmwt', 0.0006698010978513758) +zone = ('arz041', 0.00046178287447273803) + +[fips0547900] +centroid = (0.62799307917233926, -1.6018163952031499) +description = Mount Pleasant town, AR +station = ('kbvx', 0.0046884667366524201) +zone = ('arz015', 0.0027596851545883079) + +[fips0548020] +centroid = (0.61476763732584194, -1.6078682545712699) +description = Mount Vernon town, AR +station = ('klrf', 0.0053696354944933258) +zone = ('arz032', 0.0032546920218826385) + +[fips0548200] +centroid = (0.61974053415037933, -1.6419142003037055) +description = Mulberry city, AR +station = ('kfsm', 0.0051562039535788182) +zone = ('arz019', 0.0027706185512177185) + +[fips0548290] +centroid = (0.59453265649736264, -1.6352065683757335) +description = Murfreesboro city, AR +station = ('kmwt', 0.0086180504906115708) +zone = ('arz052', 0.0018030185799262392) + +[fips0548560] +centroid = (0.59238019429075561, -1.638020632541894) +description = Nashville city, AR +station = ('ktxk', 0.0087782931738420011) +zone = ('arz051', 0.0032954280279387962) + +[fips0548680] +centroid = (0.60862310097444083, -1.6143646492998731) +description = Natural Steps CDP, AR +station = ('klit', 0.0044742425454961021) +zone = ('arz044', 0.0031833128068473955) + +[fips0549010] +centroid = (0.6232292378856058, -1.5959882695918426) +description = Newark city, AR +station = ('kbvx', 0.0029597507283539498) +zone = ('arz016', 0.0018819226034090079) + +[fips0549070] +centroid = (0.61597067532594918, -1.6304705825438619) +description = New Blaine CDP, AR +station = ('krue', 0.0046068873076322873) +zone = ('arz030', 0.0044452839797641825) + +[fips0549220] +centroid = (0.58916161516386034, -1.6098945120196653) +description = New Edinburg CDP, AR +station = ('kllq', 0.0074351183731794553) +zone = ('arz063', 0.0026020955070437876) + +[fips0549580] +centroid = (0.62180496194951584, -1.5923462735884133) +description = Newport city, AR +station = ('km19', 0.00085213096705864615) +zone = ('arz025', 0.00055695834381555608) + +[fips0549820] +centroid = (0.63366344447255862, -1.5724573042841421) +description = Nimmons town, AR +station = ('kbyh', 0.0062699750266039704) +zone = ('moz113', 0.0006023620538174357) + +[fips0550000] +centroid = (0.63196504712415047, -1.6105134406790074) +description = Norfork city, AR +station = ('kbpk', 0.0038474204738717672) +zone = ('arz005', 0.0016163182262543274) + +[fips0550030] +centroid = (0.60142817311931196, -1.634965067167135) +description = Norman town, AR +station = ('kmwt', 0.0020749827492366037) +zone = ('arz041', 0.0014092325118934428) + +[fips0550060] +centroid = (0.58154445725608894, -1.6172598363696664) +description = Norphlet city, AR +station = ('keld', 0.0028876986096299426) +zone = ('arz073', 0.0027633133007126534) + +[fips0550240] +centroid = (0.57899782989121151, -1.604513539762719) +description = North Crossett CDP, AR +station = ('kbqp', 0.0072677393952182475) +zone = ('arz074', 0.002413361542114753) + +[fips0550450] +centroid = (0.60705820386051768, -1.6098033360195412) +description = North Little Rock city, AR +station = ('klit', 0.00084748902604541321) +zone = ('arz044', 0.0011215436073448493) + +[fips0550810] +centroid = (0.63641249512408227, -1.6306667226452012) +description = Oak Grove town, AR +station = ('kbbg', 0.003432158661432554) +zone = ('arz002', 0.0026241964009100539) + +[fips0551060] +centroid = (0.63052846661683393, -1.5795963990564996) +description = Oak Grove Heights town, AR +station = ('k4m9', 0.0051937985189794596) +zone = ('arz018', 0.00078939144381591248) + +[fips0551080] +centroid = (0.58868706014024308, -1.6339890266895425) +description = Oakhaven town, AR +station = ('ktxk', 0.0071805976608195279) +zone = ('arz060', 0.00070089824757756591) + +[fips0551290] +centroid = (0.60428813944479987, -1.6368337213840753) +description = Oden town, AR +station = ('kmwt', 0.0031490008552183262) +zone = ('arz041', 0.0023132708279753177) + +[fips0551350] +centroid = (0.58615402889023871, -1.6413902699155496) +description = Ogden city, AR +station = ('ktxk', 0.0025060742958421369) +zone = ('arz059', 0.0034220232363150671) + +[fips0551410] +centroid = (0.62185060230945544, -1.5962968612568877) +description = Oil Trough town, AR +station = ('kbvx', 0.0032347063779146271) +zone = ('arz016', 0.0024905036454355772) + +[fips0551500] +centroid = (0.63131503415083012, -1.5850781117178709) +description = O'Kean town, AR +station = ('karg', 0.0015395849243355082) +zone = ('arz018', 0.0037725465454335719) + +[fips0551530] +centroid = (0.59342123082969267, -1.6290486104423845) +description = Okolona town, AR +station = ('km89', 0.0042908515528409796) +zone = ('arz053', 0.0024927230245266698) + +[fips0551560] +centroid = (0.61141410934118245, -1.627066352744432) +description = Ola city, AR +station = ('krue', 0.0042052179490097335) +zone = ('arz038', 0.0027236929000420298) + +[fips0552160] +centroid = (0.6363761922756408, -1.6264716143485225) +description = Omaha town, AR +station = ('kbbg', 0.0012008759995629328) +zone = ('arz003', 0.0030085156726666318) + +[fips0552430] +centroid = (0.61262030638723575, -1.6192041855162658) +description = Oppelo city, AR +station = ('krue', 0.0053376365863718103) +zone = ('arz031', 0.0030031428995261357) + +[fips0552580] +centroid = (0.62298946455296689, -1.570672984376658) +description = Osceola city, AR +station = ('khka', 0.0047385540676420576) +zone = ('arz028', 0.001486167901068961) + +[fips0552880] +centroid = (0.63196717642583777, -1.6042956528589001) +description = Oxford city, AR +station = ('kbpk', 0.0081761795210630889) +zone = ('arz015', 0.0019941038895194144) + +[fips0552940] +centroid = (0.5907348025917305, -1.635736956482122) +description = Ozan town, AR +station = ('ktxk', 0.0079033527988430236) +zone = ('arz060', 0.0020846323253717242) + +[fips0552970] +centroid = (0.61958211061417579, -1.6378658567438271) +description = Ozark city, AR +station = ('kfsm', 0.0079954457499005344) +zone = ('arz020', 0.00071525510000424494) + +[fips0553150] +centroid = (0.6102952660241916, -1.5865688323385845) +description = Palestine city, AR +station = ('kuta', 0.0094214255622011907) +zone = ('arz048', 0.002424554398325143) + +[fips0553240] +centroid = (0.61830185924796044, -1.6028891094680104) +description = Pangburn city, AR +station = ('ksrc', 0.0040075687169644535) +zone = ('arz033', 0.0032461579417257815) + +[fips0553390] +centroid = (0.629289823899986, -1.5797798680674693) +description = Paragould city, AR +station = ('kjbr', 0.0043254628196435158) +zone = ('arz018', 0.0012508557709937022) + +[fips0553480] +centroid = (0.61592042729678431, -1.6357681455158553) +description = Paris city, AR +station = ('krue', 0.0088988779724838638) +zone = ('arz030', 0.0013006093067645555) + +[fips0553510] +centroid = (0.57807343370618525, -1.5977873375315057) +description = Parkdale city, AR +station = ('kbqp', 0.0079750436635765611) +zone = ('arz074', 0.0034586122182911207) + +[fips0553600] +centroid = (0.61542189144924453, -1.5804492891020716) +description = Parkin city, AR +station = ('kawm', 0.0050760990299668369) +zone = ('arz035', 0.0031678111903210679) + +[fips0553900] +centroid = (0.58488313248881396, -1.6330470375856561) +description = Patmos town, AR +station = ('ktxk', 0.0061587580956919494) +zone = ('arz060', 0.0041806465278984972) + +[fips0553990] +centroid = (0.61538773535578306, -1.5923563964980751) +description = Patterson city, AR +station = ('km19', 0.0066573825987133036) +zone = ('arz034', 0.0012758038911269162) + +[fips0554140] +centroid = (0.63322901456844471, -1.5823349951858041) +description = Peach Orchard city, AR +station = ('k4m9', 0.0020767226355114699) +zone = ('arz018', 0.0031972687841841864) + +[fips0554200] +centroid = (0.63611406127528392, -1.642717994237419) +description = Pea Ridge city, AR +station = ('krog', 0.0014262606605246742) +zone = ('arz001', 0.0026822176976489271) + +[fips0554620] +centroid = (0.59978129789042256, -1.6192530372820289) +description = Perla town, AR +station = ('khot', 0.0050969723751645079) +zone = ('arz054', 0.0025798936292450729) + +[fips0554650] +centroid = (0.6116463603047454, -1.6195512442380249) +description = Perry town, AR +station = ('krue', 0.0056542821138823958) +zone = ('arz039', 0.0026044034755020908) + +[fips0554680] +centroid = (0.58805099234764624, -1.6325323225359503) +description = Perrytown town, AR +station = ('ktxk', 0.0077492754861348241) +zone = ('arz060', 0.0020443086751332808) + +[fips0554710] +centroid = (0.61107853488590147, -1.6197152528278345) +description = Perryville city, AR +station = ('krue', 0.0059340757522929784) +zone = ('arz039', 0.0021597947956926086) + +[fips0555130] +centroid = (0.63504410463064132, -1.5743136364765631) +description = Piggott city, AR +station = ('kpof', 0.0068481514964766907) +zone = ('moz113', 0.0025179619005094274) + +[fips0555280] +centroid = (0.62943222531365617, -1.6207450319930963) +description = Pindall town, AR +station = ('khro', 0.0053870149080705396) +zone = ('arz013', 0.0035183946908354394) + +[fips0555310] +centroid = (0.59710490529565929, -1.6060093043849708) +description = Pine Bluff city, AR +station = ('kpbf', 0.0013120231982202608) +zone = ('arz056', 0.0015933082447438336) + +[fips0555580] +centroid = (0.63113044812913921, -1.6075602912247555) +description = Pineville town, AR +station = ('kbpk', 0.0062106278134809404) +zone = ('arz015', 0.0029562344594468008) + +[fips0555610] +centroid = (0.6021881767420928, -1.6256852213474513) +description = Piney CDP, AR +station = ('khot', 0.00073015276397230802) +zone = ('arz042', 0.0012915038637750984) + +[fips0555970] +centroid = (0.61068800001247536, -1.6283582629100508) +description = Plainview city, AR +station = ('krue', 0.0053489274867891063) +zone = ('arz038', 0.0016343452891457205) + +[fips0556270] +centroid = (0.62053031309019924, -1.5992157324446303) +description = Pleasant Plains town, AR +station = ('kbvx', 0.0031490666861574046) +zone = ('arz016', 0.0033800000329140419) + +[fips0556480] +centroid = (0.61364689159996633, -1.6169264086693653) +description = Plumerville city, AR +station = ('krue', 0.0067056533580695625) +zone = ('arz031', 0.0019780582406734109) + +[fips0556540] +centroid = (0.63291871248073261, -1.5877300522498137) +description = Pocahontas city, AR +station = ('karg', 0.0023950001020535982) +zone = ('arz008', 0.0015829108714463492) + +[fips0556600] +centroid = (0.63582423189969761, -1.5754644542254508) +description = Pollard city, AR +station = ('kpof', 0.0059154693114974221) +zone = ('arz009', 0.0023631597789821384) + +[fips0556720] +centroid = (0.62980007090680645, -1.5894909672920283) +description = Portia town, AR +station = ('karg', 0.0023363015059064732) +zone = ('arz017', 0.0009145085144099521) + +[fips0556750] +centroid = (0.58010843525413314, -1.5971705207205584) +description = Portland city, AR +station = ('kllq', 0.0077310354904605392) +zone = ('arz075', 0.003210497477241682) + +[fips0556990] +centroid = (0.61491862575943201, -1.6242279761417913) +description = Pottsville city, AR +station = ('krue', 0.00063141653158345443) +zone = ('arz022', 0.0037786141718141454) + +[fips0557050] +centroid = (0.6297972085668333, -1.5903568251339426) +description = Powhatan town, AR +station = ('karg', 0.0029999181886088168) +zone = ('arz017', 0.00078188793096115169) + +[fips0557080] +centroid = (0.59907443954336492, -1.6169082572451448) +description = Poyen town, AR +station = ('khot', 0.0071544105476460829) +zone = ('arz055', 0.0032057706899900622) + +[fips0557125] +centroid = (0.63423352136613753, -1.6416936430461311) +description = Prairie Creek CDP, AR +station = ('krog', 0.00071996564255923524) +zone = ('arz001', 0.0027440931736926939) + +[fips0557170] +centroid = (0.62807559833937354, -1.6459047211054654) +description = Prairie Grove city, AR +station = ('kfyv', 0.0019459846513299481) +zone = ('arz010', 0.0012571176442793565) + +[fips0557230] +centroid = (0.59897073207921137, -1.6151825978538201) +description = Prattsville town, AR +station = ('klit', 0.0085010307495337663) +zone = ('arz055', 0.0017938615979948183) + +[fips0557260] +centroid = (0.5899966853977695, -1.6299840545615758) +description = Prescott city, AR +station = ('km89', 0.0069809530173931492) +zone = ('arz061', 0.0027342330098275363) + +[fips0557890] +centroid = (0.63267626879433803, -1.6203797869405314) +description = Pyatt town, AR +station = ('khro', 0.0043599286299714863) +zone = ('arz004', 0.0022297064829326259) + +[fips0557950] +centroid = (0.6175298477599257, -1.6094442694325284) +description = Quitman city, AR +station = ('kcca', 0.0050703691855719822) +zone = ('arz024', 0.0038149642034596924) + +[fips0558160] +centroid = (0.61622245652384189, -1.638665828406479) +description = Ratcliff city, AR +station = ('kfsm', 0.0068230654924704322) +zone = ('arz030', 0.0029309253460894497) + +[fips0558250] +centroid = (0.63249489417847082, -1.5925691172273082) +description = Ravenden town, AR +station = ('karg', 0.0050136567962161928) +zone = ('arz008', 0.0035684599272662663) + +[fips0558280] +centroid = (0.63377655926138032, -1.5921463461225975) +description = Ravenden Springs town, AR +station = ('karg', 0.0053327601341337915) +zone = ('arz008', 0.0027940048976293121) + +[fips0558400] +centroid = (0.58907672234904329, -1.6249221983050646) +description = Reader CDP, AR +station = ('kcdh', 0.0053989878020180102) +zone = ('arz061', 0.0033585298648561974) + +[fips0558490] +centroid = (0.63293450771046322, -1.5759117646594443) +description = Rector city, AR +station = ('k4m9', 0.005547724861516239) +zone = ('arz009', 0.002519396192865472) + +[fips0558580] +centroid = (0.60115031670239438, -1.6089083311791184) +description = Redfield city, AR +station = ('klit', 0.0051107979084825629) +zone = ('arz055', 0.0043720928423343856) + +[fips0558880] +centroid = (0.58821213859748289, -1.5959954079884831) +description = Reed town, AR +station = ('kllq', 0.0046067474604613674) +zone = ('arz065', 0.0035817712210297532) + +[fips0559180] +centroid = (0.63461684802975304, -1.5840451560533706) +description = Reyno city, AR +station = ('k4m9', 0.0016783170784173485) +zone = ('arz008', 0.0037921454365396844) + +[fips0559480] +centroid = (0.5926434946617114, -1.6090717987168601) +description = Rison city, AR +station = ('kpbf', 0.0054628601557229935) +zone = ('arz063', 0.0010111701162885474) + +[fips0560020] +centroid = (0.60051320171224642, -1.6198325738601536) +description = Rockport city, AR +station = ('khot', 0.0043880571193460243) +zone = ('arz054', 0.0025071528622998859) + +[fips0560110] +centroid = (0.60151622498007495, -1.6254919610393781) +description = Rockwell CDP, AR +station = ('khot', 0.0005888916395802474) +zone = ('arz042', 0.0019754594930390056) + +[fips0560380] +centroid = (0.60442998235310952, -1.5949845656456059) +description = Roe town, AR +station = ('ksgt', 0.0026535079191149077) +zone = ('arz047', 0.0027373272182926) + +[fips0560410] +centroid = (0.6338333348219477, -1.6433080900575183) +description = Rogers city, AR +station = ('kvbt', 0.0010553488546161699) +zone = ('arz001', 0.0014996465153400129) + +[fips0560470] +centroid = (0.60915900432126568, -1.6147344496617859) +description = Roland CDP, AR +station = ('klit', 0.0050265185910575013) +zone = ('arz044', 0.003743761404049088) + +[fips0560590] +centroid = (0.60488759022968985, -1.5851234553718379) +description = Rondo town, AR +station = ('kckm', 0.0076771831508300756) +zone = ('arz049', 0.0022196327334063084) + +[fips0560770] +centroid = (0.61652858727464166, -1.607051353214874) +description = Rose Bud town, AR +station = ('ksrc', 0.0052284768453210399) +zone = ('arz024', 0.0037969683882066725) + +[fips0561040] +centroid = (0.58625010926556098, -1.6281366060950473) +description = Rosston town, AR +station = ('kcdh', 0.0075547374356685166) +zone = ('arz061', 0.0013374948356151915) + +[fips0561460] +centroid = (0.6200727052136189, -1.6453278723343887) +description = Rudy town, AR +station = ('kfsm', 0.0036560307704794209) +zone = ('arz019', 0.0011389861597952675) + +[fips0561640] +centroid = (0.61718294611779934, -1.5971507286868409) +description = Russell town, AR +station = ('ksrc', 0.0041636984722878629) +zone = ('arz033', 0.0038303698630876267) + +[fips0561670] +centroid = (0.61568901409126231, -1.6255780581313788) +description = Russellville city, AR +station = ('krue', 0.00071913098858016045) +zone = ('arz022', 0.0033384105451319443) + +[fips0561730] +centroid = (0.58905684304886308, -1.6056766097229556) +description = Rye CDP, AR +station = ('kllq', 0.0041474437021077233) +zone = ('arz063', 0.0037409094860021779) + +[fips0561940] +centroid = (0.59993303681559107, -1.590657370831136) +description = St. Charles town, AR +station = ('ksgt', 0.0073243993244997627) +zone = ('arz057', 0.003708402058264094) + +[fips0561970] +centroid = (0.63625958682831507, -1.5732815360233963) +description = St. Francis city, AR +station = ('kpof', 0.0059626015262021518) +zone = ('moz113', 0.0032764311985516289) + +[fips0562030] +centroid = (0.62880235343990398, -1.6198021004114138) +description = St. Joe town, AR +station = ('kflp', 0.0057086709573969047) +zone = ('arz013', 0.002549207126944719) + +[fips0562060] +centroid = (0.62529565536008946, -1.6365481680651566) +description = St. Paul town, AR +station = ('kfyv', 0.0064035933429703526) +zone = ('arz011', 0.0032710320276425051) + +[fips0562150] +centroid = (0.63481394806218072, -1.6026411505411795) +description = Salem city, AR +station = ('kuno', 0.0089839910318127297) +zone = ('arz006', 0.00018840525302782148) + +[fips0562210] +centroid = (0.60442321047561176, -1.6155027959583912) +description = Salem CDP, AR +station = ('klit', 0.005037710120571577) +zone = ('arz043', 0.0016754819319104032) + +[fips0562240] +centroid = (0.63252133591663851, -1.6105292882686157) +description = Salesville city, AR +station = ('kbpk', 0.0034608855769617791) +zone = ('arz005', 0.0011746784576254906) + +[fips0562900] +centroid = (0.60558811303156279, -1.6073428406532495) +description = Scott CDP, AR +station = ('klit', 0.0020942790895599403) +zone = ('arz045', 0.0031054494941433431) + +[fips0562960] +centroid = (0.61715528264915531, -1.6325441907748639) +description = Scranton city, AR +station = ('krue', 0.0065278686803245927) +zone = ('arz030', 0.0035878836106705302) + +[fips0563020] +centroid = (0.61507382043651937, -1.6010816814012303) +description = Searcy city, AR +station = ('ksrc', 0.00051025059160673513) +zone = ('arz033', 0.00030391500676874917) + +[fips0563110] +centroid = (0.62789822052749333, -1.585921402452557) +description = Sedgwick town, AR +station = ('karg', 0.0028367776569691514) +zone = ('arz017', 0.0035820730872758288) + +[fips0563470] +centroid = (0.60422473163307489, -1.6127001113389536) +description = Shannon Hills city, AR +station = ('klit', 0.0031193990578196719) +zone = ('arz044', 0.0029194474919174468) + +[fips0563710] +centroid = (0.59902488964590084, -1.6134355058192815) +description = Sheridan city, AR +station = ('klit', 0.0077931599015518835) +zone = ('arz055', 0.00061865296971249414) + +[fips0563740] +centroid = (0.60012479614050762, -1.6048579630373077) +description = Sherrill town, AR +station = ('kpbf', 0.0035229294399191499) +zone = ('arz056', 0.0020420364594180675) + +[fips0563800] +centroid = (0.6081704672862287, -1.6092329973265744) +description = Sherwood city, AR +station = ('klrf', 0.0014485369525231793) +zone = ('arz044', 0.0020517850343010008) + +[fips0563980] +centroid = (0.6220781408840379, -1.6111648673690218) +description = Shirley town, AR +station = ('kcca', 0.0020808238058552422) +zone = ('arz023', 0.0030721659266898563) + +[fips0564280] +centroid = (0.62840904349296711, -1.5997576397240822) +description = Sidney town, AR +station = ('kbvx', 0.0047465709291043233) +zone = ('arz007', 0.0037165241154643253) + +[fips0564370] +centroid = (0.63152405478204898, -1.6498984009531712) +description = Siloam Springs city, AR +station = ('kslg', 0.00074523204616108079) +zone = ('arz001', 0.0047262601925776608) + +[fips0564730] +centroid = (0.58231132002283026, -1.6184642182732976) +description = Smackover city, AR +station = ('keld', 0.0028577127283616363) +zone = ('arz073', 0.0038891601323229833) + +[fips0564910] +centroid = (0.62972200232936482, -1.5935313346972253) +description = Smithville town, AR +station = ('karg', 0.0055200868975429831) +zone = ('arz017', 0.0028418217602822586) + +[fips0565480] +centroid = (0.63521090574725425, -1.6215079852223131) +description = South Lead Hill town, AR +station = ('khro', 0.0041014226584631863) +zone = ('arz003', 0.003016639030575528) + +[fips0565900] +centroid = (0.59196847112021023, -1.6205380533971023) +description = Sparkman city, AR +station = ('km89', 0.0044625744453042617) +zone = ('arz062', 0.0029751668200533195) + +[fips0566080] +centroid = (0.63157442498426153, -1.643280548761922) +description = Springdale city, AR +station = ('kasg', 0.00051544930922887565) +zone = ('arz001', 0.0030415545228288116) + +[fips0566200] +centroid = (0.63286136096151213, -1.648006411684132) +description = Springtown town, AR +station = ('kslg', 0.0013450946564005494) +zone = ('arz001', 0.002717138905438387) + +[fips0566320] +centroid = (0.58215336772552473, -1.6318452038627327) +description = Stamps city, AR +station = ('ktxk', 0.0072657925457151286) +zone = ('arz071', 0.0025529452302532588) + +[fips0566440] +centroid = (0.59237476631678188, -1.602914538915212) +description = Star City city, AR +station = ('kpbf', 0.0044456266482367762) +zone = ('arz064', 0.0015761913074539848) + +[fips0566800] +centroid = (0.59399800978759931, -1.6106000090099064) +description = Staves CDP, AR +station = ('kpbf', 0.0056579636005182534) +zone = ('arz063', 0.002733621845077445) + +[fips0566860] +centroid = (0.58330905494302532, -1.6243715992859378) +description = Stephens city, AR +station = ('keld', 0.0051330850338157053) +zone = ('arz066', 0.0040600838931922475) + +[fips0567250] +centroid = (0.62773585254718023, -1.5938362611708412) +description = Strawberry town, AR +station = ('km19', 0.0060949915680927292) +zone = ('arz017', 0.0032776304300400965) + +[fips0567370] +centroid = (0.57784217758029599, -1.6119836013211326) +description = Strong city, AR +station = ('keld', 0.006938879482546091) +zone = ('arz073', 0.0036421364778003906) + +[fips0567490] +centroid = (0.60206537537592253, -1.5978202544411984) +description = Stuttgart city, AR +station = ('ksgt', 0.0018374950701238221) +zone = ('arz057', 0.0043638151370921354) + +[fips0567520] +centroid = (0.61605527143479333, -1.6343165202703864) +description = Subiaco town, AR +station = ('krue', 0.0077307430445538597) +zone = ('arz030', 0.0018032032500481417) + +[fips0567550] +centroid = (0.63624953373182369, -1.5834161742975368) +description = Success town, AR +station = ('k4m9', 0.0013980972094159423) +zone = ('moz108', 0.0039859501953454389) + +[fips0567730] +centroid = (0.6239835342817327, -1.5969780981705262) +description = Sulphur Rock town, AR +station = ('kbvx', 0.0021472687926704691) +zone = ('arz016', 0.0010029319526637258) + +[fips0567760] +centroid = (0.63676725074784268, -1.648639669496633) +description = Sulphur Springs city, AR +station = ('kxna', 0.0041635997632582696) +zone = ('moz101', 0.0029704464053689384) + +[fips0567790] +centroid = (0.59639277605426066, -1.607969256775083) +description = Sulphur Springs CDP, AR +station = ('kpbf', 0.0028460068776996177) +zone = ('arz056', 0.0033347623517826462) + +[fips0567940] +centroid = (0.6327370586121851, -1.6176696222247422) +description = Summit city, AR +station = ('kflp', 0.0016554294711275893) +zone = ('arz004', 0.00026670899086484687) + +[fips0568060] +centroid = (0.61477854563366696, -1.5743916177875423) +description = Sunset town, AR +station = ('kawm', 0.0016334424027708151) +zone = ('arz036', 0.0014947047429441896) + +[fips0568330] +centroid = (0.60505912118857585, -1.610002792246459) +description = Sweet Home CDP, AR +station = ('klit', 0.00116698446772691) +zone = ('arz044', 0.0020213140711088993) + +[fips0568360] +centroid = (0.62525233628805499, -1.5905131193684587) +description = Swifton city, AR +station = ('km19', 0.0033262969123187278) +zone = ('arz017', 0.0038004463171218239) + +[fips0568660] +centroid = (0.57770108516356478, -1.6312161697470213) +description = Taylor city, AR +station = ('kmne', 0.0082015002157741091) +zone = ('arz071', 0.0032513710241831454) + +[fips0568810] +centroid = (0.58357427517615834, -1.6403846286538428) +description = Texarkana city, AR +station = ('ktxk', 0.00024464286495187786) +zone = ('arz070', 0.0025708927486471056) + +[fips0569050] +centroid = (0.58948279065281228, -1.614214027385426) +description = Thornton city, AR +station = ('kcdh', 0.004903067634249544) +zone = ('arz067', 0.0037918467554249411) + +[fips0569230] +centroid = (0.58836649551652931, -1.5961423472582086) +description = Tillar city, AR +station = ('kllq', 0.0045322722733037585) +zone = ('arz065', 0.0035822720543503927) + +[fips0569350] +centroid = (0.58693961903985381, -1.6118697360407324) +description = Tinsman town, AR +station = ('kcdh', 0.00601107855345901) +zone = ('arz067', 0.0025066948202818106) + +[fips0569500] +centroid = (0.59023637146394592, -1.6388126978630342) +description = Tollette town, AR +station = ('ktxk', 0.0065449537491557254) +zone = ('arz060', 0.0036172210122665796) + +[fips0569740] +centroid = (0.63125754300526948, -1.6448322860932849) +description = Tontitown city, AR +station = ('kxna', 0.0021662020881862893) +zone = ('arz001', 0.0029889645656227463) + +[fips0569830] +centroid = (0.60130872278530545, -1.6173344491951891) +description = Traskwood city, AR +station = ('khot', 0.0062618674286560351) +zone = ('arz043', 0.0033916691577584803) + +[fips0570010] +centroid = (0.6226700692998518, -1.5799237879175887) +description = Trumann city, AR +station = ('kjbr', 0.0032776138097017362) +zone = ('arz027', 0.0026708109715526496) + +[fips0570100] +centroid = (0.6235184738492463, -1.5917683776197857) +description = Tuckerman city, AR +station = ('km19', 0.0015689739558191508) +zone = ('arz025', 0.0021994589787967143) + +[fips0570220] +centroid = (0.60111258268396639, -1.6159284643096601) +description = Tull town, AR +station = ('klit', 0.0071871125880186527) +zone = ('arz055', 0.0035258093888329298) + +[fips0570310] +centroid = (0.62041369018958104, -1.6051349816961842) +description = Tumbling Shoals CDP, AR +station = ('kbvx', 0.0055536153015869087) +zone = ('arz024', 0.00085578823413764288) + +[fips0570340] +centroid = (0.61768931849368047, -1.5922626548639505) +description = Tupelo town, AR +station = ('km19', 0.0043698016819218727) +zone = ('arz034', 0.0035774553372349455) + +[fips0570430] +centroid = (0.61740421896036723, -1.5755137597768196) +description = Turrell city, AR +station = ('kawm', 0.0042446802306193741) +zone = ('arz036', 0.0029619618072357487) + +[fips0570540] +centroid = (0.61661060029619297, -1.612781286602464) +description = Twin Groves town, AR +station = ('kcca', 0.0047686405066740883) +zone = ('arz032', 0.0033477298791500039) + +[fips0570700] +centroid = (0.61936982621725578, -1.5770168547819294) +description = Tyronza city, AR +station = ('kawm', 0.0064213689004709255) +zone = ('arz036', 0.0049227322934427562) + +[fips0570760] +centroid = (0.60347001635792752, -1.5963082757101956) +description = Ulm town, AR +station = ('ksgt', 0.0015636022458956531) +zone = ('arz047', 0.0041062013603837821) + +[fips0571390] +centroid = (0.63100680900492789, -1.6229797515673499) +description = Valley Springs town, AR +station = ('khro', 0.0029914214265253135) +zone = ('arz003', 0.0030536100523843911) + +[fips0571480] +centroid = (0.61865886634645584, -1.646770683667135) +description = Van Buren city, AR +station = ('kfsm', 0.0019853956732781264) +zone = ('arz019', 0.0029352367495391954) + +[fips0571510] +centroid = (0.6000403745645887, -1.646978534927755) +description = Vandervoort town, AR +station = ('kmez', 0.0037156284261087866) +zone = ('arz040', 0.0027024128959972599) + +[fips0571900] +centroid = (0.62408458884542317, -1.5718456536477807) +description = Victoria town, AR +station = ('kbyh', 0.0039704591704371878) +zone = ('arz028', 0.00014260537552429064) + +[fips0571960] +centroid = (0.61223916138518519, -1.6094642185458787) +description = Vilonia city, AR +station = ('klrf', 0.00297939801993421) +zone = ('arz032', 0.0020472226242919706) + +[fips0572140] +centroid = (0.63528623415777041, -1.6054761761116567) +description = Viola town, AR +station = ('kbpk', 0.0067636306790638022) +zone = ('arz006', 0.0023899647084479891) + +[fips0572230] +centroid = (0.59965196899284978, -1.6021207980779899) +description = Wabbaseka town, AR +station = ('kpbf', 0.0036383816346158594) +zone = ('arz056', 0.0025067563173138902) + +[fips0572320] +centroid = (0.62073071179491324, -1.5871078772780629) +description = Waldenburg town, AR +station = ('km19', 0.0036521379417907012) +zone = ('arz027', 0.0038600147668047843) + +[fips0572350] +centroid = (0.58211640165196743, -1.6282998816465717) +description = Waldo city, AR +station = ('keld', 0.0073683866330188216) +zone = ('arz072', 0.0026099258192068715) + +[fips0572380] +centroid = (0.6091383221696296, -1.6422285515552824) +description = Waldron city, AR +station = ('kmez', 0.0064059074270758735) +zone = ('arz037', 0.00081950983650702592) + +[fips0572890] +centroid = (0.62978916259898154, -1.587316880455989) +description = Walnut Ridge city, AR +station = ('karg', 0.00095456542161250358) +zone = ('arz017', 0.0023859296343620596) + +[fips0573130] +centroid = (0.61109237534686989, -1.6049590525075832) +description = Ward city, AR +station = ('klrf', 0.0032276939637807798) +zone = ('arz045', 0.0046229415503549042) + +[fips0573310] +centroid = (0.58663708366731315, -1.6068848138976486) +description = Warren city, AR +station = ('kllq', 0.004632752516121507) +zone = ('arz068', 0.0028941491677751509) + +[fips0573370] +centroid = (0.58945010063592251, -1.6350846047676042) +description = Washington city, AR +station = ('ktxk', 0.0071260911212645576) +zone = ('arz060', 0.00069166551805213889) + +[fips0573550] +centroid = (0.5915592961303725, -1.5927398453347383) +description = Watson city, AR +station = ('kglh', 0.0081952089930056784) +zone = ('arz065', 0.0010578770102286856) + +[fips0573940] +centroid = (0.62168216058334558, -1.5865997421196372) +description = Weiner city, AR +station = ('km19', 0.0038518422612686515) +zone = ('arz027', 0.0035339457282605093) + +[fips0574000] +centroid = (0.61867881545980619, -1.5922911037307579) +description = Weldon town, AR +station = ('km19', 0.0034051973088677248) +zone = ('arz025', 0.0026588631010897052) + +[fips0574270] +centroid = (0.57854249094265875, -1.6059992338351867) +description = West Crossett CDP, AR +station = ('kbqp', 0.0070634810545362851) +zone = ('arz074', 0.0037160088360136119) + +[fips0574330] +centroid = (0.63008475156109933, -1.6223651513245527) +description = Western Grove town, AR +station = ('khro', 0.0039889084581597959) +zone = ('arz003', 0.0041007865414527224) + +[fips0574360] +centroid = (0.62718274025393084, -1.6437704626829568) +description = West Fork city, AR +station = ('kfyv', 0.0011539695885461416) +zone = ('arz010', 0.00091876563785932427) + +[fips0574540] +centroid = (0.61347340587231813, -1.5742806672069929) +description = West Memphis city, AR +station = ('kawm', 0.00055701475945937353) +zone = ('arz036', 0.0018629736419155721) + +[fips0574660] +centroid = (0.61441356238048994, -1.5988926370935015) +description = West Point town, AR +station = ('ksrc', 0.001823355283897274) +zone = ('arz033', 0.0021469409329933895) + +[fips0574840] +centroid = (0.60946817194496394, -1.5900936643893269) +description = Wheatley city, AR +station = ('ksgt', 0.0086532974290017325) +zone = ('arz047', 0.0044543045829515127) + +[fips0574930] +centroid = (0.59049722837394902, -1.6253557206379674) +description = Whelen Springs town, AR +station = ('km89', 0.004735289274629329) +zone = ('arz053', 0.0038741230022945792) + +[fips0575170] +centroid = (0.59821472526041752, -1.607459568273623) +description = White Hall city, AR +station = ('kpbf', 0.0028981045101746984) +zone = ('arz056', 0.0024421649939188484) + +[fips0575500] +centroid = (0.5986092045779533, -1.6463393080892121) +description = Wickes town, AR +station = ('kdeq', 0.004446818987595089) +zone = ('arz040', 0.003584815957469832) + +[fips0575560] +centroid = (0.61125151446806669, -1.5826882672797002) +description = Widener town, AR +station = ('kuta', 0.0076485941082871422) +zone = ('arz048', 0.00094966119225499618) + +[fips0575570] +centroid = (0.61920292038088753, -1.6365034527297204) +description = Wiederkehr Village city, AR +station = ('kfsm', 0.0089258799690006031) +zone = ('arz020', 0.0018875651113080712) + +[fips0575740] +centroid = (0.63271372356008593, -1.5945344452315164) +description = Williford town, AR +station = ('karg', 0.0065793474159962463) +zone = ('arz007', 0.0023138896983983677) + +[fips0575770] +centroid = (0.58499872564517352, -1.6282784490033568) +description = Willisville town, AR +station = ('keld', 0.0087153561883481639) +zone = ('arz061', 0.002558443491907288) + +[fips0575860] +centroid = (0.58689300129553301, -1.6044634313598944) +description = Wilmar city, AR +station = ('kllq', 0.0026037509759667711) +zone = ('arz069', 0.0031056014604184516) + +[fips0575890] +centroid = (0.57701604343215696, -1.5982677917679948) +description = Wilmot city, AR +station = ('kbqp', 0.0069011214289393481) +zone = ('arz074', 0.003637239491111291) + +[fips0575920] +centroid = (0.62074828726048092, -1.5715281782568429) +description = Wilson city, AR +station = ('knqa', 0.0043972540740790066) +zone = ('arz028', 0.0034537628924137535) + +[fips0575980] +centroid = (0.58884883470861049, -1.6431924619945737) +description = Wilton city, AR +station = ('ktxk', 0.0055761823188782171) +zone = ('arz059', 0.0014180650961334294) + +[fips0576010] +centroid = (0.58946818224697317, -1.5965193732832244) +description = Winchester town, AR +station = ('kllq', 0.004702246448428947) +zone = ('arz065', 0.0033516151362047116) + +[fips0576190] +centroid = (0.62485427904555269, -1.6429088808977097) +description = Winslow city, AR +station = ('kfyv', 0.0034992560102233309) +zone = ('arz010', 0.0033286907180750938) + +[fips0576250] +centroid = (0.5904582377184594, -1.6467923606564447) +description = Winthrop city, AR +station = ('kdeq', 0.0038832866856167978) +zone = ('arz059', 0.0028632279213537388) + +[fips0576690] +centroid = (0.59283137935568864, -1.6064924813350927) +description = Woodlawn CDP, AR +station = ('kpbf', 0.0041119520596043209) +zone = ('arz063', 0.0023516528394111995) + +[fips0576730] +centroid = (0.60283553681495006, -1.6095886430682531) +description = Woodson CDP, AR +station = ('klit', 0.0033789836468923144) +zone = ('arz044', 0.0042128949536783993) + +[fips0576820] +centroid = (0.61435385466677916, -1.6135613964182278) +description = Wooster town, AR +station = ('klrf', 0.0065448629230362397) +zone = ('arz032', 0.0019218471095618307) + +[fips0576970] +centroid = (0.60426202931919015, -1.609539424783347) +description = Wrightsville city, AR +station = ('klit', 0.0019586303983327941) +zone = ('arz044', 0.0029044654716012474) + +[fips0577090] +centroid = (0.61493185535516204, -1.5845711633833368) +description = Wynne city, AR +station = ('km19', 0.0089502782681168784) +zone = ('arz035', 0.0011254873505211513) + +[fips0577203] +centroid = (0.58850448124719201, -1.6407649009912673) +description = Yarborough Landing CDP, AR +station = ('ktxk', 0.0047065542600955128) +zone = ('arz059', 0.0032880461937418084) + +[fips0577330] +centroid = (0.6323126468979775, -1.6176780347117368) +description = Yellville city, AR +station = ('kflp', 0.0019064819799640613) +zone = ('arz004', 0.00069087849554358698) + +[fips0577600] +centroid = (0.63327463747509172, -1.6216626213940397) +description = Zinc town, AR +station = ('khro', 0.003328403237212904) +zone = ('arz003', 0.0025277267100847212) + +[fips06001] +centroid = (0.65708297050751929, -2.1277885567847732) +description = Alameda County, CA +station = ('klvk', 0.001613469012915719) +zone = ('caz508', 0.0036061561137448132) + +[fips0600135] +centroid = (0.66156220095313001, -2.130673062439544) +description = Acalanes Ridge CDP, CA +station = ('kccr', 0.0017087792781209888) +zone = ('caz510', 0.0027667154505800996) + +[fips0600156] +centroid = (0.66625376815553849, -2.116733431863131) +description = Acampo CDP, CA +station = ('ksck', 0.004816691977230122) +zone = ('caz019', 0.0079609150934311351) + +[fips0600190020] +centroid = (0.65911435922391548, -2.1342457339650838) +description = Alameda CCD, CA +station = ('koak', 0.0010822247154238644) +zone = ('caz006', 0.0021995059811910122) + +[fips0600190200] +centroid = (0.66092410857860096, -2.1346941090499212) +description = Berkeley CCD, CA +station = ('koak', 0.002842407912329981) +zone = ('caz006', 0.0026881290222278329) + +[fips0600191070] +centroid = (0.65513612554008971, -2.1293843462264563) +description = Fremont CCD, CA +station = ('knuq', 0.0019071790439636408) +zone = ('caz508', 0.0024320363910937974) + +[fips0600191260] +centroid = (0.65765444366449988, -2.1308362856311907) +description = Hayward CCD, CA +station = ('khwd', 0.00046764311443246693) +zone = ('caz508', 0.0018551757646784819) + +[fips0600191660] +centroid = (0.65658096145476819, -2.1244440870589316) +description = Livermore-Pleasanton CCD, CA +station = ('klvk', 0.0019249411486108167) +zone = ('caz511', 0.0030727666708984156) + +[fips0600192230] +centroid = (0.65924216968503901, -2.1332104395593858) +description = Oakland CCD, CA +station = ('koak', 0.00097082029395770503) +zone = ('caz508', 0.0032115373191014544) + +[fips0600212] +centroid = (0.60207331662401908, -2.0626980207680936) +description = Acton CDP, CA +station = ('kpmd', 0.0027950461471693299) +zone = ('caz054', 0.0012955477743406048) + +[fips0600296] +centroid = (0.60363913876244579, -2.0497646423186251) +description = Adelanto city, CA +station = ('kvcv', 0.00088533472782991905) +zone = ('caz060', 0.0062056965536383775) + +[fips06003] +centroid = (0.67400444375108737, -2.0908869731433941) +description = Alpine County, CA +station = ('ktvl', 0.0052729539781035473) +zone = ('caz072', 0.006211036704417471) + +[fips0600310] +centroid = (0.71906364395640998, -2.1110940461571341) +description = Adin CDP, CA +station = ('kaat', 0.0071207058884034773) +zone = ('caz085', 0.0068274453562348) + +[fips0600391890] +centroid = (0.67400444375108737, -2.0908869731433941) +description = Markleeville CCD, CA +station = ('ktvl', 0.0052729539781035473) +zone = ('caz072', 0.006211036704417471) + +[fips0600394] +centroid = (0.59601117726660457, -2.0728213842152665) +description = Agoura Hills city, CA +station = ('kvny', 0.0042201312324500837) +zone = ('caz046', 0.001560433295027708) + +[fips0600450] +centroid = (0.6021692573730012, -2.0650834669765494) +description = Agua Dulce CDP, CA +station = ('kpmd', 0.0041107840111680068) +zone = ('caz054', 0.0018883655918647128) + +[fips0600464] +centroid = (0.58385183488710302, -2.0395127179187504) +description = Aguanga CDP, CA +station = ('krnm', 0.0073657717112135795) +zone = ('caz056', 0.0047604479283012121) + +[fips0600478] +centroid = (0.65214618454520568, -2.0894959631828476) +description = Ahwahnee CDP, CA +station = ('kmae', 0.0086581169727376756) +zone = ('caz093', 0.0018410370272147457) + +[fips06005] +centroid = (0.67096652365506615, -2.1058070424271156) +description = Amador County, CA +station = ('kpvf', 0.0050000936138305191) +zone = ('caz067', 0.0034502490653655522) + +[fips0600535] +centroid = (0.65680740047192188, -2.1114581741989777) +description = Airport CDP, CA +station = ('kmod', 0.00046944684354804429) +zone = ('caz019', 0.00236368276834936) + +[fips0600562] +centroid = (0.65911435922391548, -2.1342457339650838) +description = Alameda city, CA +station = ('koak', 0.0010822247154238644) +zone = ('caz006', 0.0021995059811910122) + +[fips0600591410] +centroid = (0.66928854665890614, -2.1108234503099053) +description = Ione CCD, CA +station = ('kmhr', 0.0060452566601994174) +zone = ('caz067', 0.0052906115892907713) + +[fips0600591430] +centroid = (0.66897820966460908, -2.1081558716278646) +description = Jackson CCD, CA +station = ('kpvf', 0.0068334576606722741) +zone = ('caz067', 0.0050603942919059093) + +[fips0600592470] +centroid = (0.67194696236237383, -2.1000928344560861) +description = Pine Grove-Silver Lake CCD, CA +station = ('kpvf', 0.0069387950992124935) +zone = ('caz069', 0.0049470534010007949) + +[fips0600593300] +centroid = (0.67148776623617423, -2.1082320028898365) +description = Sutter Creek-Plymouth CCD, CA +station = ('kpvf', 0.0043431315200561761) +zone = ('caz067', 0.002563717938212846) + +[fips0600618] +centroid = (0.66068740702544548, -2.1295284580627936) +description = Alamo CDP, CA +station = ('kccr', 0.002588345140786534) +zone = ('caz510', 0.0018851672046599969) + +[fips0600674] +centroid = (0.66128118549026649, -2.1349855615817117) +description = Albany city, CA +station = ('koak', 0.0032600853779330926) +zone = ('caz006', 0.0028212938548500171) + +[fips06007] +centroid = (0.69230158551107746, -2.1223538632934504) +description = Butte County, CA +station = ('kove', 0.0029033160928399427) +zone = ('caz016', 0.0066766604344453131) + +[fips0600716] +centroid = (0.68461108886813726, -2.159977315113454) +description = Albion CDP, CA +station = ('kuki', 0.0077126831920120058) +zone = ('caz002', 0.0024180840823379368) + +[fips0600786] +centroid = (0.70094766737277703, -2.1575016702892551) +description = Alderpoint CDP, CA +station = ('kfot', 0.0097065456578829656) +zone = ('caz003', 0.010981552079859111) + +[fips0600790230] +centroid = (0.68860393095780226, -2.1253286897370121) +description = Biggs CCD, CA +station = ('kove', 0.002245311657318786) +zone = ('caz016', 0.0024759897831406635) + +[fips0600790470] +centroid = (0.69410857724554476, -2.1280683854237452) +description = Chico CCD, CA +station = ('kcic', 0.0011898604334163549) +zone = ('caz066', 0.0064043431131963462) + +[fips0600790750] +centroid = (0.6910968196350108, -2.1265367717386576) +description = Durham CCD, CA +station = ('kove', 0.0034675981795474369) +zone = ('caz016', 0.0040134461347325311) + +[fips0600790970] +centroid = (0.69229425512821907, -2.117991185935288) +description = Feather Falls CCD, CA +station = ('kove', 0.004585424591071802) +zone = ('caz016', 0.0092301784095245778) + +[fips0600791180] +centroid = (0.68659968211127453, -2.1253011309881233) +description = Gridley CCD, CA +station = ('kove', 0.0034911405385269138) +zone = ('caz016', 0.0021925971705228056) + +[fips0600792300] +centroid = (0.69015858298901622, -2.1216220292847967) +description = Oroville CCD, CA +station = ('kove', 0.0010724228923200648) +zone = ('caz016', 0.0057269357765480896) + +[fips0600792330] +centroid = (0.68752575381238279, -2.1206888540936331) +description = Palermo CCD, CA +station = ('kove', 0.0023949065472788607) +zone = ('caz016', 0.0056654904117193977) + +[fips0600792380] +centroid = (0.69605961100317915, -2.1227129647870484) +description = Paradise CCD, CA +station = ('kcic', 0.0033627019620264161) +zone = ('caz066', 0.0044032490899203877) + +[fips0600884] +centroid = (0.59487053478725627, -2.0618699143978998) +description = Alhambra city, CA +station = ('kemt', 0.0014904915009907316) +zone = ('caz548', 0.0023718944178092961) + +[fips0600898] +centroid = (0.6626780946636851, -2.1316810249891556) +description = Alhambra Valley CDP, CA +station = ('kccr', 0.0013074612608574559) +zone = ('caz510', 0.0038499528550585533) + +[fips06009] +centroid = (0.66650361203796138, -2.1040836868704038) +description = Calaveras County, CA +station = ('ko22', 0.0033215095770940633) +zone = ('caz067', 0.0080809304581367682) + +[fips0600947] +centroid = (0.58604548686405722, -2.0547752906148831) +description = Aliso Viejo city, CA +station = ('ksna', 0.0027076218746588925) +zone = ('caz042', 0.0023469734836961968) + +[fips0600982] +centroid = (0.68882316176514524, -2.1090754856107403) +description = Alleghany CDP, CA +station = ('kblu', 0.0037232963857227741) +zone = ('nvz002', 0.013249600857924594) + +[fips0600990060] +centroid = (0.6638269576438105, -2.1050308596021687) +description = Angels City CCD, CA +station = ('ko22', 0.0026046999832580785) +zone = ('caz019', 0.0076554932779894632) + +[fips0600990105] +centroid = (0.66964070174208112, -2.1004658462238224) +description = Arnold-West Point CCD, CA +station = ('ko22', 0.0059745654001322791) +zone = ('caz069', 0.0072489891664616769) + +[fips0600992740] +centroid = (0.66653652894765403, -2.1068110605326176) +description = San Andreas CCD, CA +station = ('ko22', 0.0048768518864875854) +zone = ('caz067', 0.0075381287082229307) + +[fips0600996] +centroid = (0.67095090295826076, -2.1290049989135356) +description = Allendale CDP, CA +station = ('kvcb', 0.0011294447638207749) +zone = ('caz018', 0.0060378680423673788) + +[fips0601010] +centroid = (0.62569840753827966, -2.0837347884016468) +description = Allensworth CDP, CA +station = ('kptv', 0.0055699606436128085) +zone = ('caz092', 0.0031311986510545141) + +[fips0601094] +centroid = (0.70187532732350455, -2.1149240141210033) +description = Almanor CDP, CA +station = ('kcic', 0.011552839665937915) +zone = ('caz068', 0.0023375504569562392) + +[fips06011] +centroid = (0.68378053903699076, -2.1334479439639971) +description = Colusa County, CA +station = ('kove', 0.010093509282925156) +zone = ('caz016', 0.0054535112872322626) + +[fips0601150] +centroid = (0.5914864635406869, -2.0653448125787435) +description = Alondra Park CDP, CA +station = ('khhr', 0.00047212544541481424) +zone = ('caz041', 0.00084189542319770578) + +[fips0601164] +centroid = (0.62635765330334303, -2.0854471832906563) +description = Alpaugh CDP, CA +station = ('kptv', 0.0064637341136621462) +zone = ('caz092', 0.0046665336364378465) + +[fips0601190430] +centroid = (0.68298433728552344, -2.1313647364221096) +description = Central Colusa CCD, CA +station = ('kbab', 0.0092719699387226184) +zone = ('caz016', 0.0049924858549879767) + +[fips0601190770] +centroid = (0.68378903879044795, -2.1288880444003593) +description = East Colusa CCD, CA +station = ('kmyv', 0.005710824087224271) +zone = ('caz016', 0.003524917101980698) + +[fips0601192] +centroid = (0.57320546607627776, -2.0377779479087308) +description = Alpine CDP, CA +station = ('ksee', 0.0031822831742147474) +zone = ('caz050', 0.0041229681339755584) + +[fips0601193610] +centroid = (0.68440416263202086, -2.1367457435856405) +description = West Colusa CCD, CA +station = ('kuki', 0.010558640553726179) +zone = ('caz064', 0.0049759575168328877) + +[fips0601228] +centroid = (0.6769351831777437, -2.0909199773195493) +description = Alpine Village CDP, CA +station = ('ktvl', 0.0030110195854765273) +zone = ('caz072', 0.0036368036505563953) + +[fips0601276] +centroid = (0.68444385141921116, -2.1083296366081927) +description = Alta CDP, CA +station = ('kblu', 0.0017776405610090006) +zone = ('caz069', 0.0097643028104265044) + +[fips0601290] +centroid = (0.59676667793991534, -2.0618549918327953) +description = Altadena CDP, CA +station = ('kmws', 0.0012266414076592621) +zone = ('caz548', 0.0032154451994427422) + +[fips06013] +centroid = (0.6618197591908469, -2.128455953237443) +description = Contra Costa County, CA +station = ('kccr', 0.0019520940490517357) +zone = ('caz510', 0.0011982026867778559) + +[fips0601360] +centroid = (0.68288056000819986, -2.1127050897764801) +description = Alta Sierra CDP, CA +station = ('kgoo', 0.0018177501808017875) +zone = ('caz067', 0.0096278247215407144) + +[fips0601390080] +centroid = (0.66338818186985904, -2.1270000693885995) +description = Antioch-Pittsburg CCD, CA +station = ('kccr', 0.0025065190305467041) +zone = ('caz510', 0.0022582460437692489) + +[fips0601390270] +centroid = (0.66243027536319454, -2.1326247768755868) +description = Briones CCD, CA +station = ('kccr', 0.0020887067799717938) +zone = ('caz006', 0.0049063116506558192) + +[fips0601390440] +centroid = (0.66148603478457302, -2.1299569189408656) +description = Central Contra Costa CCD, CA +station = ('kccr', 0.0017475124493423751) +zone = ('caz510', 0.0021966689703141994) + +[fips0601390780] +centroid = (0.66226509740278572, -2.1231501523113803) +description = East Contra Costa CCD, CA +station = ('klvk', 0.0048703634711853303) +zone = ('caz018', 0.0038019705826727803) + +[fips0601393310] +centroid = (0.66059593431934849, -2.1260891820519836) +description = Tassajara CCD, CA +station = ('klvk', 0.0026068257525417382) +zone = ('caz510', 0.0010359660264702105) + +[fips0601393620] +centroid = (0.66294954572224785, -2.1349175635540543) +description = West Contra Costa CCD, CA +station = ('kccr', 0.0037482462717340656) +zone = ('caz006', 0.0043185918681907243) + +[fips0601416] +centroid = (0.66157719333140463, -2.1383550244224421) +description = Alto CDP, CA +station = ('kdvo', 0.0041305660391101479) +zone = ('caz006', 0.0028184395592505264) + +[fips0601444] +centroid = (0.72417271136918804, -2.1039361890953177) +description = Alturas city, CA +station = ('kaat', 0.00030246364112644435) +zone = ('caz085', 0.0030189788393308061) + +[fips0601458] +centroid = (0.65218744412872276, -2.1262666471303264) +description = Alum Rock CDP, CA +station = ('krhv', 0.00061202994514335642) +zone = ('caz513', 0.0026140865372068726) + +[fips06015] +centroid = (0.72867326973825819, -2.1638766250085046) +description = Del Norte County, CA +station = ('kcec', 0.0033362629377000647) +zone = ('orz022', 0.01113525456972277) + +[fips0601514] +centroid = (0.67053717265907553, -2.1087687265414097) +description = Amador City city, CA +station = ('kpvf', 0.0053493062124935226) +zone = ('caz067', 0.0035712553573950959) + +[fips0601590620] +centroid = (0.72936216864731285, -2.1688146501545873) +description = Crescent City CCD, CA +station = ('kcec', 0.00041184937169507527) +zone = ('orz022', 0.0096570975158508151) + +[fips0601591490] +centroid = (0.72558246616590139, -2.1648193296973841) +description = Klamath CCD, CA +station = ('kcec', 0.0044926511701096784) +zone = ('caz001', 0.0096062654054692789) + +[fips0601593040] +centroid = (0.72842384473485566, -2.1626320481721999) +description = Smith River-Gasquet CCD, CA +station = ('kcec', 0.0042951286453661881) +zone = ('caz080', 0.010215852207410002) + +[fips0601640] +centroid = (0.66628755772985715, -2.1338430516000639) +description = American Canyon city, CA +station = ('kapc', 0.00053298104041646084) +zone = ('caz506', 0.0062336022900421123) + +[fips0601651] +centroid = (0.6450646681848714, -2.1254923143543869) +description = Amesti CDP, CA +station = ('kwvi', 0.00045693927205792139) +zone = ('caz529', 0.001680106156837974) + +[fips06017] +centroid = (0.67693523553762136, -2.103722107009268) +description = El Dorado County, CA +station = ('kpvf', 0.0031495748990278882) +zone = ('caz069', 0.002613901433128596) + +[fips0601792190] +centroid = (0.67813649330189152, -2.1048146307611391) +description = North El Dorado CCD, CA +station = ('kpvf', 0.0031355865298968895) +zone = ('caz069', 0.0036811724550643373) + +[fips0601792490] +centroid = (0.67619282483370047, -2.1082366454656469) +description = Placerville CCD, CA +station = ('kpvf', 0.00071050086565257976) +zone = ('caz067', 0.0021837519625772617) + +[fips0601793150] +centroid = (0.67475634904613913, -2.1043048724465088) +description = South El Dorado CCD, CA +station = ('kpvf', 0.0026894454397316326) +zone = ('caz067', 0.0028475481300204233) + +[fips0601793160] +centroid = (0.6790831075282957, -2.094940325798226) +description = South Lake Tahoe CCD, CA +station = ('ktvl', 0.00078604306641682489) +zone = ('caz072', 0.0010980147727793965) + +[fips06019] +centroid = (0.64160059104539069, -2.0883740480863726) +description = Fresno County, CA +station = ('kfat', 0.00094586666446855143) +zone = ('caz090', 0.0081934255158385896) + +[fips0601990390] +centroid = (0.63828532067793486, -2.0929942662289598) +description = Caruthers-Raisin City CCD, CA +station = ('knlc', 0.0041707193834152083) +zone = ('caz089', 0.008206958483343383) + +[fips0601990530] +centroid = (0.63188338316844961, -2.1015323296632533) +description = Coalinga CCD, CA +station = ('knlc', 0.0068396634950376629) +zone = ('caz089', 0.0073921363631731848) + +[fips0601991000] +centroid = (0.64354822141098356, -2.1053227833728569) +description = Firebaugh CCD, CA +station = ('kmce', 0.0073806402649278079) +zone = ('caz089', 0.0047196430135660935) + +[fips0601991060] +centroid = (0.63932387884933417, -2.0890884986156766) +description = Fowler CCD, CA +station = ('kfat', 0.0026821020745922885) +zone = ('caz090', 0.009401348566931516) + +[fips0601991080] +centroid = (0.64194063354355668, -2.0902460009755996) +description = Fresno CCD, CA +station = ('kfat', 0.00063946104035704965) +zone = ('caz090', 0.0068374723898027541) + +[fips0601991360] +centroid = (0.63275969553258349, -2.0960257635133339) +description = Huron CCD, CA +station = ('knlc', 0.0024425336642533782) +zone = ('caz089', 0.0085950580233440411) + +[fips0601991460] +centroid = (0.64095145073669635, -2.0960004213325947) +description = Kerman CCD, CA +station = ('kmae', 0.0045425883870433524) +zone = ('caz090', 0.0057209088000833453) + +[fips0601991480] +centroid = (0.63776060489161523, -2.0864161377314856) +description = Kingsburg CCD, CA +station = ('khjo', 0.0040650141451847796) +zone = ('caz094', 0.010152669481652514) + +[fips0601991570] +centroid = (0.63626080855879152, -2.0893638766650562) +description = Laton CCD, CA +station = ('khjo', 0.002650702778850465) +zone = ('caz089', 0.011455928074869103) + +[fips0601991950] +centroid = (0.63924947546332156, -2.1044723018816529) +description = Mendota CCD, CA +station = ('kmae', 0.0089600146744815388) +zone = ('caz089', 0.0010583926819169554) + +[fips0601992270] +centroid = (0.63909761436510548, -2.082887815022239) +description = Orange Cove CCD, CA +station = ('kvis', 0.0053177906018147267) +zone = ('caz094', 0.0086905749353691549) + +[fips0601992390] +centroid = (0.63915662394711548, -2.0862806827282383) +description = Parlier-Del Rey CCD, CA +station = ('kfat', 0.0038060895500173237) +zone = ('caz094', 0.010803577736167476) + +[fips0601992600] +centroid = (0.63980600860190495, -2.0844986492020747) +description = Reedley CCD, CA +station = ('kfat', 0.0045301645354737033) +zone = ('caz094', 0.010109069710302053) + +[fips0601992630] +centroid = (0.63610554406853403, -2.0927702532194661) +description = Riverdale CCD, CA +station = ('knlc', 0.0020602384785867005) +zone = ('caz089', 0.0088878279909971828) + +[fips0601992800] +centroid = (0.64162137791678187, -2.0865429009950578) +description = Sanger CCD, CA +station = ('kfat', 0.0023576739208006855) +zone = ('caz093', 0.0089695343608822801) + +[fips0601992820] +centroid = (0.63801844238201244, -2.098570610642374) +description = San Joaquin-Tranquillity CCD, CA +station = ('knlc', 0.005618007952222415) +zone = ('caz089', 0.0038561712283105669) + +[fips0601992990] +centroid = (0.63777329343527733, -2.0887020652659927) +description = Selma CCD, CA +station = ('khjo', 0.0039447200945986801) +zone = ('caz090', 0.010831488587345211) + +[fips0601993010] +centroid = (0.64744044526927114, -2.0779837190768151) +description = Sierra CCD, CA +station = ('kmmh', 0.009621183317065532) +zone = ('caz096', 0.0053787237380144752) + +[fips0602000] +centroid = (0.59088989254906266, -2.0553009663322914) +description = Anaheim city, CA +station = ('kajo', 0.0024460614149931928) +zone = ('caz042', 0.0026999679001568221) + +[fips0602028] +centroid = (0.67740858628405465, -2.156708016718496) +description = Anchor Bay CDP, CA +station = ('kuki', 0.0075211187446872626) +zone = ('caz002', 0.0076662115363211871) + +[fips0602042] +centroid = (0.70599608459404817, -2.1344731678199116) +description = Anderson city, CA +station = ('krdd', 0.00087929006183559168) +zone = ('caz015', 0.0040281934083813238) + +[fips06021] +centroid = (0.69119481987251019, -2.1363126750383432) +description = Glenn County, CA +station = ('kcic', 0.0081707075266670426) +zone = ('caz063', 0.0060636794480532019) + +[fips0602112] +centroid = (0.66446496275187694, -2.1040245900219312) +description = Angels city, CA +station = ('ko22', 0.0019470013072531911) +zone = ('caz019', 0.008672801452000934) + +[fips0602168] +centroid = (0.67331093717280743, -2.1371770318971008) +description = Angwin CDP, CA +station = ('ksts', 0.0051707427816626728) +zone = ('caz507', 0.0033435928374266344) + +[fips0602192280] +centroid = (0.69291501638327591, -2.1369737184925364) +description = Orland CCD, CA +station = ('krbl', 0.008235312361232195) +zone = ('caz063', 0.0047125225024898919) + +[fips0602193750] +centroid = (0.68928593581631159, -2.1352785500032443) +description = Willows CCD, CA +station = ('kcic', 0.008513200234812307) +zone = ('caz016', 0.0059722580214140383) + +[fips0602210] +centroid = (0.6757098922296737, -2.1181483353811377) +description = Antelope CDP, CA +station = ('kmcc', 0.0010020327526042759) +zone = ('caz017', 0.0031510887397752508) + +[fips0602252] +centroid = (0.66283313226113982, -2.1257694551863109) +description = Antioch city, CA +station = ('kccr', 0.0034936958280150972) +zone = ('caz510', 0.0020420029319070817) + +[fips0602294] +centroid = (0.58584241780558766, -2.0367380632871002) +description = Anza CDP, CA +station = ('kpsp', 0.0054646334531167681) +zone = ('caz056', 0.0018083519124715429) + +[fips06023] +centroid = (0.71046547138267779, -2.1629135523272542) +description = Humboldt County, CA +station = ('kfot', 0.0038226155709424562) +zone = ('caz003', 0.0024561658227904917) + +[fips0602364] +centroid = (0.60272111302918929, -2.0457066645412758) +description = Apple Valley town, CA +station = ('kvcv', 0.0027171060494670021) +zone = ('caz060', 0.0028234483370211858) + +[fips0602378] +centroid = (0.64561111332037824, -2.1274298916234882) +description = Aptos CDP, CA +station = ('kwvi', 0.0018259883561858507) +zone = ('caz529', 0.00028468389446448662) + +[fips0602382] +centroid = (0.64497822202702004, -2.1261839359770747) +description = Aptos Hills-Larkin Valley CDP, CA +station = ('kwvi', 0.00064677419876381088) +zone = ('caz529', 0.0011637531286689128) + +[fips0602390100] +centroid = (0.71097055221491245, -2.1618637891420573) +description = Arcata CCD, CA +station = ('kfot', 0.004749226315110021) +zone = ('caz003', 0.0015140181451095531) + +[fips0602390930] +centroid = (0.71051303160479451, -2.16594229199141) +description = Eureka CCD, CA +station = ('kfot', 0.0027488268558799583) +zone = ('caz001', 0.0054962998190521582) + +[fips0602390980] +centroid = (0.70489116900448823, -2.1697131282002213) +description = Ferndale CCD, CA +station = ('kfot', 0.0037877850492194789) +zone = ('caz003', 0.009987773482440683) + +[fips0602391050] +centroid = (0.70737044411353112, -2.1618717129368612) +description = Fortuna CCD, CA +station = ('kfot', 0.0035612172090185401) +zone = ('caz003', 0.004565035751693724) + +[fips0602391100] +centroid = (0.70181251292372526, -2.1617648115201766) +description = Garberville CCD, CA +station = ('kfot', 0.0069992247694996915) +zone = ('caz003', 0.010007096920182382) + +[fips0602392170] +centroid = (0.71726504725564488, -2.1642723784163946) +description = North Coastal CCD, CA +station = ('kacv', 0.0023436317676033655) +zone = ('caz001', 0.0017438246978118725) + +[fips0602393745] +centroid = (0.71817352603789286, -2.1588137739143196) +description = Willow Creek-Hoopa Valley CCD, CA +station = ('kacv', 0.0061048208066395602) +zone = ('caz001', 0.0057467236318824999) + +[fips0602420] +centroid = (0.68092615776510912, -2.1303672109414244) +description = Arbuckle CDP, CA +station = ('kmyv', 0.006865592693900067) +zone = ('caz016', 0.0065803020998151541) + +[fips0602462] +centroid = (0.59572780560925076, -2.0601228921765316) +description = Arcadia city, CA +station = ('kemt', 0.00086251907160696489) +zone = ('caz548', 0.0014778785130917915) + +[fips0602476] +centroid = (0.71318143059158357, -2.1655165363736786) +description = Arcata city, CA +station = ('kacv', 0.0021383297676380035) +zone = ('caz001', 0.002840742498429407) + +[fips06025] +centroid = (0.57667102674562276, -2.0133314526886044) +description = Imperial County, CA +station = ('kipl', 0.0048681582979336162) +zone = ('caz033', 0.001678385032509557) + +[fips0602553] +centroid = (0.67375580414584824, -2.1184821645071663) +description = Arden-Arcade CDP, CA +station = ('kmcc', 0.0011377056975223102) +zone = ('caz017', 0.00252101354005714) + +[fips0602590260] +centroid = (0.57565723479630926, -2.0153518109241277) +description = Brawley CCD, CA +station = ('kipl', 0.0030335541417353673) +zone = ('caz033', 0.0010380617104013858) + +[fips0602590320] +centroid = (0.5706475638844325, -2.0157726447133686) +description = Calexico CCD, CA +station = ('kipl', 0.0027086830321592509) +zone = ('caz033', 0.0060588590276051645) + +[fips0602590330] +centroid = (0.57889611210240532, -2.0171890492145321) +description = Calipatria-Westmorland CCD, CA +station = ('kipl', 0.0058318848902777923) +zone = ('caz033', 0.0026944803795700576) + +[fips0602590790] +centroid = (0.57948252527778288, -2.0090948055557281) +description = East Imperial CCD, CA +station = ('kblh', 0.0092567130635858395) +zone = ('caz033', 0.0059218938680944801) + +[fips0602590860] +centroid = (0.57207911784350318, -2.0175849946086397) +description = El Centro CCD, CA +station = ('kipl', 0.001030047562128589) +zone = ('caz033', 0.0049880913405211062) + +[fips0602591310] +centroid = (0.57285201944945641, -2.013388751847947) +description = Holtville CCD, CA +station = ('kipl', 0.0032325213282150497) +zone = ('caz033', 0.0041754005862394885) + +[fips0602591380] +centroid = (0.57361275611052309, -2.0168524799215777) +description = Imperial CCD, CA +station = ('kipl', 0.00063241119551360491) +zone = ('caz033', 0.0033355761732428539) + +[fips0602593630] +centroid = (0.57625778513862802, -2.0219634846498251) +description = West Imperial CCD, CA +station = ('knjk', 0.0043527985807029377) +zone = ('caz033', 0.0055757383617137633) + +[fips0602593760] +centroid = (0.57211864955106084, -1.999869326742244) +description = Winterhaven-Bard CCD, CA +station = ('knyl', 0.0022806742835503545) +zone = ('azz025', 0.0024429310295097724) + +[fips06027] +centroid = (0.63812687968843884, -2.0490850809210688) +description = Inyo County, CA +station = ('knid', 0.015893107008596179) +zone = ('caz522', 0.0049258329042710615) + +[fips0602700] +centroid = (0.6338659026657899, -2.0892529958976773) +description = Armona CDP, CA +station = ('khjo', 0.0010757501886112667) +zone = ('caz091', 0.0094426951800279778) + +[fips0602770] +centroid = (0.66757185825993703, -2.1004919912560172) +description = Arnold CDP, CA +station = ('ko22', 0.0039443154159682081) +zone = ('caz067', 0.008647616591790145) + +[fips0602790250] +centroid = (0.6515717792350818, -2.0666097225008335) +description = Bishop CCD, CA +station = ('kbih', 0.00082983040341864413) +zone = ('caz521', 0.0076113621485141038) + +[fips0602790650] +centroid = (0.63304285775042701, -2.0387800286987634) +description = Death Valley CCD, CA +station = ('kdra', 0.012649661362010338) +zone = ('caz522', 0.004803433128562659) + +[fips0602791390] +centroid = (0.64481096712480146, -2.0577565224167995) +description = Independence CCD, CA +station = ('kbih', 0.0098069172608686323) +zone = ('caz521', 0.0022381207698562804) + +[fips0602791720] +centroid = (0.63099336996968769, -2.0552653616155507) +description = Lone Pine CCD, CA +station = ('knid', 0.0082426286443371879) +zone = ('caz520', 0.007232491767132903) + +[fips0602812] +centroid = (0.64358585070965657, -2.1228567101042426) +description = Aromas CDP, CA +station = ('kwvi', 0.002362488707487028) +zone = ('caz528', 0.0038766856097326974) + +[fips0602868] +centroid = (0.61303487444446203, -2.1046026081636064) +description = Arroyo Grande city, CA +station = ('ksbp', 0.0020246164905104026) +zone = ('caz034', 0.0041775651278462859) + +[fips0602896] +centroid = (0.59110100757538386, -2.0608958635956545) +description = Artesia city, CA +station = ('klgb', 0.0013420584545485853) +zone = ('caz548', 0.0037876945763770454) + +[fips06029] +centroid = (0.61691505553091075, -2.0722207989663626) +description = Kern County, CA +station = ('ktsp', 0.005588570530926997) +zone = ('caz095', 0.0022544030555324219) + +[fips0602910] +centroid = (0.69172946658227363, -2.1326135893150813) +description = Artois CDP, CA +station = ('kcic', 0.0054113980213628737) +zone = ('caz016', 0.0057184714624481372) + +[fips0602924] +centroid = (0.6142574775854841, -2.0739846810683056) +description = Arvin city, CA +station = ('kbfl', 0.0052117420729541038) +zone = ('caz095', 0.0046104415171278612) + +[fips0602980] +centroid = (0.65788723568013074, -2.131324873101994) +description = Ashland CDP, CA +station = ('khwd', 0.00047999491602488347) +zone = ('caz508', 0.0018783854087214219) + +[fips0602990130] +centroid = (0.61431830230991602, -2.0750504314694509) +description = Arvin-Lamont CCD, CA +station = ('kbfl', 0.0046881950140612817) +zone = ('caz095', 0.0053018105682145003) + +[fips0602990180] +centroid = (0.61806953847122748, -2.0762779215323786) +description = Bakersfield CCD, CA +station = ('kbfl', 0.0013025201912329955) +zone = ('caz095', 0.005658006090887382) + +[fips0602990300] +centroid = (0.61774211470355334, -2.0842109491281757) +description = Buttonwillow CCD, CA +station = ('kbfl', 0.0052580273856805458) +zone = ('caz092', 0.0074868073152763752) + +[fips0602990655] +centroid = (0.62282927823421874, -2.0804382454170649) +description = Delano-McFarland CCD, CA +station = ('kbfl', 0.0048912452935091187) +zone = ('caz092', 0.0016574843467371738) + +[fips0602990800] +centroid = (0.61448246797935857, -2.0578829017079365) +description = East Kern CCD, CA +station = ('k9l2', 0.0039949350423713215) +zone = ('caz099', 0.002923440908144169) + +[fips0602991160] +centroid = (0.61488830939032491, -2.0790209333446903) +description = Greenfield-Panama CCD, CA +station = ('kbfl', 0.0036743024804033911) +zone = ('caz095', 0.0080889721262031138) + +[fips0602991520] +centroid = (0.62124794011874174, -2.0678002639434965) +description = Lake Isabella CCD, CA +station = ('ktsp', 0.0079664559752415549) +zone = ('caz095', 0.0044426628340100121) + +[fips0602992650] +centroid = (0.61778365353975084, -2.0800261731806691) +description = Rosedale CCD, CA +station = ('kbfl', 0.0019143040276211134) +zone = ('caz092', 0.0066911037191230245) + +[fips0602993000] +centroid = (0.61950322173198569, -2.081562132735594) +description = Shafter CCD, CA +station = ('kbfl', 0.0032361179935081075) +zone = ('caz092', 0.0050954935813936966) + +[fips0602993320] +centroid = (0.61293902096194253, -2.0685216608832233) +description = Tehachapi CCD, CA +station = ('ktsp', 0.0013033923223305397) +zone = ('caz095', 0.0041481118712313721) + +[fips0602993570] +centroid = (0.62212390341702528, -2.0900138372784989) +description = Wasco CCD, CA +station = ('kptv', 0.011794639441948985) +zone = ('caz091', 0.0023354220365203698) + +[fips0602993635] +centroid = (0.61303953447356485, -2.0833738892189193) +description = West Kern CCD, CA +station = ('kbfl', 0.0070453042317494916) +zone = ('caz038', 0.0061580068224582549) + +[fips0603026] +centroid = (0.65534985856028893, -2.0716993643990369) +description = Aspen Springs CDP, CA +station = ('kmmh', 0.0021962878449688487) +zone = ('caz073', 0.0072835430832851036) + +[fips0603064] +centroid = (0.61934441422334674, -2.1064322019118871) +description = Atascadero city, CA +station = ('kprb', 0.0032561073951662897) +zone = ('caz034', 0.0028654095697383934) + +[fips0603092] +centroid = (0.65371174488424455, -2.1328476379677741) +description = Atherton town, CA +station = ('ksql', 0.00125774260892272) +zone = ('caz508', 0.0024807548557458352) + +[fips06031] +centroid = (0.62958351045321903, -2.0911754935220412) +description = Kings County, CA +station = ('knlc', 0.0049309619485849165) +zone = ('caz091', 0.0051894780097668349) + +[fips0603162] +centroid = (0.65195114400129539, -2.1048178072603778) +description = Atwater city, CA +station = ('kmer', 0.00047711713203041795) +zone = ('caz090', 0.0085199582971427334) + +[fips0603190] +centroid = (0.64712286515857831, -2.0855838076645021) +description = Auberry CDP, CA +station = ('kfat', 0.005991212975573347) +zone = ('caz093', 0.0043685795113951095) + +[fips0603190170] +centroid = (0.62665760558859085, -2.0957794801025846) +description = Avenal CCD, CA +station = ('knlc', 0.0076977204326121821) +zone = ('caz091', 0.0050302352508559602) + +[fips0603190570] +centroid = (0.63009150598530461, -2.0869284093202385) +description = Corcoran CCD, CA +station = ('khjo', 0.0038710767869898689) +zone = ('caz091', 0.0062287954945080643) + +[fips0603191220] +centroid = (0.63265645930732795, -2.088016447575932) +description = Hanford CCD, CA +station = ('khjo', 0.0012254570235254788) +zone = ('caz091', 0.0083902817564134972) + +[fips0603191230] +centroid = (0.63517582462928923, -2.0873853539717033) +description = Hanford Northeast CCD, CA +station = ('khjo', 0.0013656024929592277) +zone = ('caz094', 0.0099524527270802472) + +[fips0603191590] +centroid = (0.63396765536118116, -2.0919096313653078) +description = Lemoore CCD, CA +station = ('knlc', 0.0013102292218044179) +zone = ('caz091', 0.0096130465812683061) + +[fips0603193250] +centroid = (0.62855868802303305, -2.0907144124402497) +description = Stratford CCD, CA +station = ('khjo', 0.0057797913801092889) +zone = ('caz091', 0.0041253287716085055) + +[fips0603204] +centroid = (0.67884678994757552, -2.1131873766086837) +description = Auburn city, CA +station = ('kaun', 0.00096861747221508449) +zone = ('caz067', 0.006374113589314531) + +[fips0603205] +centroid = (0.67881603724615536, -2.1114518037472081) +description = Auburn Lake Trails CDP, CA +station = ('kaun', 0.0015661518182036468) +zone = ('caz067', 0.005555101979429506) + +[fips0603209] +centroid = (0.66286861480483283, -2.1164290813481679) +description = August CDP, CA +station = ('ksck', 0.0014455150270100564) +zone = ('caz019', 0.0049245685891285036) + +[fips0603274] +centroid = (0.58176492724720097, -2.0652510011314487) +description = Avalon city, CA +station = ('kavx', 0.0017235234441595755) +zone = ('caz087', 0.0017299809650782351) + +[fips06033] +centroid = (0.68233301531526425, -2.1423350557953973) +description = Lake County, CA +station = ('kuki', 0.0061744795522115318) +zone = ('caz064', 0.0020513015907743137) + +[fips0603302] +centroid = (0.62886274183202295, -2.096420085751237) +description = Avenal city, CA +station = ('knlc', 0.0057689159637217694) +zone = ('caz091', 0.0066939107975733615) + +[fips0603316] +centroid = (0.66660861104576141, -2.101011139442023) +description = Avery CDP, CA +station = ('ko22', 0.0029146028602349788) +zone = ('caz067', 0.0091469479984502191) + +[fips0603330] +centroid = (0.61434327797151211, -2.1069736554057337) +description = Avilla Beach CDP, CA +station = ('ksbp', 0.0013802741392762157) +zone = ('caz034', 0.0022473371202465695) + +[fips0603344] +centroid = (0.59405368579073781, -2.0595196365738722) +description = Avocado Heights CDP, CA +station = ('kemt', 0.0009319841156253453) +zone = ('caz548', 0.00064707830586048184) + +[fips0603386] +centroid = (0.59582964557110463, -2.0579570432945613) +description = Azusa city, CA +station = ('kemt', 0.0019973036517724027) +zone = ('caz548', 0.0015513412706054947) + +[fips0603390503] +centroid = (0.68029052630482523, -2.1390401359670199) +description = Clearlake CCD, CA +station = ('ksts', 0.0090519463685317658) +zone = ('caz064', 0.0014792031367655343) + +[fips0603390505] +centroid = (0.6799611477683889, -2.1423203775763882) +description = Clearlake Riviera CCD, CA +station = ('kuki', 0.0068667940701838048) +zone = ('caz064', 0.0012833497741654217) + +[fips0603390545] +centroid = (0.6784261306912599, -2.1428036068863876) +description = Cobb CCD, CA +station = ('ksts', 0.0065008964447996172) +zone = ('caz064', 0.0026413021091605958) + +[fips0603391455] +centroid = (0.68048745180432779, -2.1447686032780382) +description = Kelseyville CCD, CA +station = ('kuki', 0.0049423333897937304) +zone = ('caz064', 0.0030111848608715564) + +[fips0603391540] +centroid = (0.68145487035541574, -2.1459931437345299) +description = Lakeport CCD, CA +station = ('kuki', 0.0036467503209098372) +zone = ('caz064', 0.0040475133566305567) + +[fips0603391775] +centroid = (0.67825016659607384, -2.1373222607441593) +description = Lower Lake CCD, CA +station = ('ksts', 0.0079589451015077885) +zone = ('caz064', 0.0036489554624548567) + +[fips0603391795] +centroid = (0.68301758580777394, -2.1409684455377933) +description = Lucerne-Clearlake Oaks CCD, CA +station = ('kuki', 0.007196091603352211) +zone = ('caz064', 0.0024061279017081045) + +[fips0603391975] +centroid = (0.67636350058125305, -2.1390265922120246) +description = Middletown CCD, CA +station = ('ksts', 0.0056550991483758214) +zone = ('caz507', 0.0039764690818217463) + +[fips0603393505] +centroid = (0.68649333919995059, -2.1449871010470951) +description = Upper Lake-Nice CCD, CA +station = ('kuki', 0.0053624033592812011) +zone = ('caz064', 0.0066814893809208414) + +[fips06035] +centroid = (0.71071707804764517, -2.105389472403576) +description = Lassen County, CA +station = ('kaat', 0.013329665117346175) +zone = ('caz071', 0.0045854833141791224) + +[fips0603512] +centroid = (0.61569836905605302, -2.0258339442523403) +description = Baker CDP, CA +station = ('kbys', 0.0077648671280579019) +zone = ('caz524', 0.0023958767771721221) + +[fips0603526] +centroid = (0.61647146264822394, -2.0772610655000272) +description = Bakersfield city, CA +station = ('kbfl', 0.0020082183866956876) +zone = ('caz095', 0.0063874146262722122) + +[fips0603590240] +centroid = (0.71401894428644563, -2.1137107484914792) +description = Big Valley CCD, CA +station = ('kaat', 0.012261068710292629) +zone = ('caz014', 0.0050616888195291884) + +[fips0603591320] +centroid = (0.70044258654054237, -2.097056973848582) +description = Honey Lake CCD, CA +station = ('krts', 0.0089056714514205593) +zone = ('caz071', 0.007841391610482867) + +[fips0603591820] +centroid = (0.71289261350696354, -2.1000188848556793) +description = Madeline Plains CCD, CA +station = ('kaat', 0.011582361722322377) +zone = ('caz071', 0.0072658109687478226) + +[fips0603593280] +centroid = (0.7051693046740859, -2.1040215182424475) +description = Susanville CCD, CA +station = ('krts', 0.015683362636417619) +zone = ('caz071', 0.0010972262672386036) + +[fips0603593710] +centroid = (0.70687850561056398, -2.1112806044008798) +description = Westwood CCD, CA +station = ('kcic', 0.01698121472651179) +zone = ('caz071', 0.0056139412979248965) + +[fips0603666] +centroid = (0.59485751463103631, -2.0589873635118914) +description = Baldwin Park city, CA +station = ('kemt', 0.00089695472011784344) +zone = ('caz548', 0.0003010892358843144) + +[fips0603694] +centroid = (0.60448555363649292, -2.0964101722810855) +description = Ballard CDP, CA +station = ('kiza', 0.00074781098535481327) +zone = ('caz036', 0.00098107919290454405) + +[fips06037] +centroid = (0.59683973742240393, -2.0640588714391663) +description = Los Angeles County, CA +station = ('kbur', 0.0015142224740047065) +zone = ('caz547', 0.0031504459661270919) + +[fips0603708] +centroid = (0.65365926283363718, -2.1066771065125272) +description = Ballico CDP, CA +station = ('kmer', 0.0024131448781841936) +zone = ('caz019', 0.0070928201532305252) + +[fips0603790015] +centroid = (0.59445120198117207, -2.0726693834907102) +description = Agoura Hills-Malibu CCD, CA +station = ('kvny', 0.0047901055189471598) +zone = ('caz046', 0.0010367642498279959) + +[fips0603790560] +centroid = (0.5911367693717573, -2.0637678028798114) +description = Compton CCD, CA +station = ('khhr', 0.0015180530150281991) +zone = ('caz041', 0.0012964521271811855) + +[fips0603790730] +centroid = (0.59171086052261579, -2.0613955164539153) +description = Downey-Norwalk CCD, CA +station = ('klgb', 0.001610790340144207) +zone = ('caz041', 0.0028041249151820663) + +[fips0603790810] +centroid = (0.59450336987251418, -2.0570184226761312) +description = East San Gabriel Valley CCD, CA +station = ('kpoc', 0.0012678430121385803) +zone = ('caz548', 0.0016683567318847767) + +[fips0603791400] +centroid = (0.59206435950931469, -2.0653369760504017) +description = Inglewood CCD, CA +station = ('khhr', 0.00010984868108583166) +zone = ('caz041', 0.00051089322346914011) + +[fips0603791730] +centroid = (0.58967299663469475, -2.0623194239467511) +description = Long Beach-Lakewood CCD, CA +station = ('klgb', 0.00056746457846126104) +zone = ('caz041', 0.0031910425878485301) + +[fips0603791750] +centroid = (0.59333949706082179, -2.06576852616125) +description = Los Angeles CCD, CA +station = ('klax', 0.0011429686732066732) +zone = ('caz041', 0.0014621882203945445) + +[fips0603792] +centroid = (0.68724236470173639, -2.1190331125921436) +description = Bangor CDP, CA +station = ('kove', 0.0035091085813781175) +zone = ('caz016', 0.0069392081253638873) + +[fips0603792110] +centroid = (0.60282848568477199, -2.0695641285921469) +description = Newhall CCD, CA +station = ('ksdb', 0.0041831973623939469) +zone = ('caz088', 0.0015288733737169251) + +[fips0603792140] +centroid = (0.60608839420835448, -2.0625866687618166) +description = North Antelope Valley CCD, CA +station = ('kwjf', 0.00057487904116262077) +zone = ('caz059', 0.0018887059941627717) + +[fips0603792360] +centroid = (0.58237523398003832, -2.0678843015469801) +description = Palos Verdes CCD, CA +station = ('kavx', 0.0010950485504914911) +zone = ('caz087', 0.00074234192896899178) + +[fips0603792400] +centroid = (0.59640063003589461, -2.062104748448756) +description = Pasadena CCD, CA +station = ('kmws', 0.0016180220952349588) +zone = ('caz548', 0.0031412447646717656) + +[fips0603792785] +centroid = (0.59776769407910424, -2.0667826322698288) +description = San Fernando Valley CCD, CA +station = ('kwhp', 0.00025866714318037724) +zone = ('caz547', 0.0011933510264752673) + +[fips0603792920] +centroid = (0.59362611503058427, -2.0682121616469669) +description = Santa Monica CCD, CA +station = ('ksmo', 0.00072493115946058542) +zone = ('caz046', 0.0030183068019972599) + +[fips0603793090] +centroid = (0.6004850495514118, -2.0593268824112818) +description = South Antelope Valley CCD, CA +station = ('kmws', 0.0031940423814791155) +zone = ('caz054', 0.0033705237438081772) + +[fips0603793100] +centroid = (0.59113731042382534, -2.066561097627873) +description = South Bay Cities CCD, CA +station = ('klax', 0.0011554697454843174) +zone = ('caz041', 0.0018292298071247346) + +[fips0603793155] +centroid = (0.59317798429184221, -2.0627482687972587) +description = South Gate-East Los Angeles CCD, CA +station = ('kcqt', 0.0016177715538929752) +zone = ('caz041', 0.0019360476007928252) + +[fips0603793200] +centroid = (0.59443734406691129, -2.0614694835076151) +description = Southwest San Gabriel Valley CCD, CA +station = ('kemt', 0.001235872681509488) +zone = ('caz548', 0.0020235503247285243) + +[fips0603793380] +centroid = (0.59045279229119318, -2.065712675625186) +description = Torrance CCD, CA +station = ('ktoa', 0.00062968503362694319) +zone = ('caz041', 0.0018889350499587774) + +[fips0603793510] +centroid = (0.59541348926425919, -2.05995977370464) +description = Upper San Gabriel Valley CCD, CA +station = ('kemt', 0.00055470424706487685) +zone = ('caz548', 0.0011498280243889781) + +[fips0603793730] +centroid = (0.59265154062956316, -2.0600502515730632) +description = Whittier CCD, CA +station = ('kful', 0.0017190799622382065) +zone = ('caz548', 0.0020857793606724284) + +[fips0603820] +centroid = (0.5924700263873558, -2.0402766485323487) +description = Banning city, CA +station = ('kl35', 0.0055090420845043406) +zone = ('caz048', 0.0052376604496890446) + +[fips06039] +centroid = (0.64943769534549833, -2.0900291961759168) +description = Madera County, CA +station = ('kmae', 0.0064600079702201831) +zone = ('caz093', 0.0010329642337036085) + +[fips0603990480] +centroid = (0.64720330738380261, -2.0987147399320039) +description = Chowchilla CCD, CA +station = ('kmae', 0.0025078469208295851) +zone = ('caz090', 0.0019003043282683726) + +[fips0603991830] +centroid = (0.64639830917290519, -2.0940337843314474) +description = Madera CCD, CA +station = ('kmae', 0.0021229557597597631) +zone = ('caz090', 0.0019321961820479164) + +[fips0603991840] +centroid = (0.64374542616316643, -2.0942654942429426) +description = Madera Southeast CCD, CA +station = ('kmae', 0.0024513448300710885) +zone = ('caz090', 0.0033914752059613462) + +[fips0603991850] +centroid = (0.6443641104764134, -2.1005061109696657) +description = Madera West CCD, CA +station = ('kmae', 0.0034425474472696374) +zone = ('caz090', 0.0039838932214051777) + +[fips0603992220] +centroid = (0.65318350353283605, -2.0842633090057356) +description = Oakhurst-North Fork CCD, CA +station = ('kmmh', 0.0087788397350234346) +zone = ('caz096', 0.0032444274176044682) + +[fips0603993802] +centroid = (0.64947804735780434, -2.091208078819176) +description = Yosemite Lakes CCD, CA +station = ('kmae', 0.0057734868516984093) +zone = ('caz093', 0.0017084040018761162) + +[fips0604030] +centroid = (0.6085402501948487, -2.0427858211314782) +description = Barstow city, CA +station = ('kdag', 0.0037304512910934875) +zone = ('caz060', 0.0056713787559060222) + +[fips06041] +centroid = (0.66412949301635116, -2.1423213898673543) +description = Marin County, CA +station = ('kdvo', 0.002982255660840134) +zone = ('caz505', 0.0043076182006388268) + +[fips0604190256] +centroid = (0.66139939664050407, -2.1416196627882975) +description = Bolinas CCD, CA +station = ('kdvo', 0.0047162671177865259) +zone = ('caz006', 0.0043736259058772993) + +[fips0604192200] +centroid = (0.66509932012180684, -2.1443898493770628) +description = Northwest Marin CCD, CA +station = ('ko69', 0.0044003768958506906) +zone = ('caz505', 0.0025669050639974982) + +[fips0604192205] +centroid = (0.66493957013537175, -2.1387314919420972) +description = Novato CCD, CA +station = ('kdvo', 0.00077763135092067553) +zone = ('caz506', 0.0049402421910965735) + +[fips0604192670] +centroid = (0.66254984787024862, -2.139533488186681) +description = Ross Valley CCD, CA +station = ('kdvo', 0.0031395095307403973) +zone = ('caz006', 0.0040987100210916347) + +[fips0604192880] +centroid = (0.66326133133982412, -2.1378383895105588) +description = San Rafael CCD, CA +station = ('kdvo', 0.0025968018937227279) +zone = ('caz006', 0.0043464271398926573) + +[fips0604193140] +centroid = (0.66137396719330255, -2.1379272093161932) +description = Southeast Marin CCD, CA +station = ('kdvo', 0.0043888625312814089) +zone = ('caz006', 0.0025148993172545782) + +[fips0604198] +centroid = (0.65148397172041395, -2.0868086099203818) +description = Bass Lake CDP, CA +station = ('kfat', 0.0097249017750461915) +zone = ('caz093', 0.0023268258938372579) + +[fips06043] +centroid = (0.65572079338621525, -2.0928742224830077) +description = Mariposa County, CA +station = ('kmce', 0.0095531826716954531) +zone = ('caz093', 0.006098206512422091) + +[fips0604390600] +centroid = (0.65751699898590532, -2.0962962371875151) +description = Coulterville CCD, CA +station = ('ko22', 0.0075638673173250327) +zone = ('caz093', 0.0090821109054016972) + +[fips0604391880] +centroid = (0.65388811040515871, -2.0943121818004333) +description = Mariposa CCD, CA +station = ('kmce', 0.0076855858659376636) +zone = ('caz093', 0.0053350673443255062) + +[fips0604393804] +centroid = (0.65795376763121682, -2.086960313938965) +description = Yosemite Valley CCD, CA +station = ('kban', 0.011407285005021396) +zone = ('caz096', 0.0076067939966853243) + +[fips0604415] +centroid = (0.66379657146153315, -2.1286202759865187) +description = Bay Point CDP, CA +station = ('kccr', 0.001351150292773703) +zone = ('caz510', 0.0028839273711126) + +[fips0604470] +centroid = (0.66333391958341459, -2.1348896208327299) +description = Bayview CDP, CA +station = ('kapc', 0.003419476779750893) +zone = ('caz006', 0.0046835361807162929) + +[fips0604478] +centroid = (0.71148931642848268, -2.1673255177834934) +description = Bayview CDP, CA +station = ('kfot', 0.0037392594322207887) +zone = ('caz001', 0.0046505648255694681) + +[fips06045] +centroid = (0.68822500252390184, -2.1544847115975503) +description = Mendocino County, CA +station = ('kuki', 0.0061651477076166972) +zone = ('caz076', 0.0025401597309879448) + +[fips0604576] +centroid = (0.68256442852078614, -2.1179782530455307) +description = Beale AFB CDP, CA +station = ('kbab', 0.0011962214084645247) +zone = ('caz017', 0.0088767462350842728) + +[fips0604590610] +centroid = (0.69399506103099506, -2.1494999639873917) +description = Covelo CCD, CA +station = ('kuki', 0.011004621381302541) +zone = ('caz076', 0.0044822076294848082) + +[fips0604591030] +centroid = (0.68886255384636275, -2.1588954204167279) +description = Fort Bragg CCD, CA +station = ('kuki', 0.0088941878702651633) +zone = ('caz002', 0.0040877142567424035) + +[fips0604591330] +centroid = (0.67956043762542351, -2.1488484151243301) +description = Hopland CCD, CA +station = ('kuki', 0.0036119877169813507) +zone = ('caz064', 0.0062706700350380297) + +[fips0604591580] +centroid = (0.69457936235797768, -2.1584244258647844) +description = Laytonville-Leggett CCD, CA +station = ('kuki', 0.013184114764247228) +zone = ('caz076', 0.0066761396530022263) + +[fips0604591938] +centroid = (0.68389313022703691, -2.1573704215295053) +description = Mendocino CCD, CA +station = ('kuki', 0.0055953971274064918) +zone = ('caz002', 0.0012321287798755499) + +[fips0604592510] +centroid = (0.67917758220070612, -2.1562652790471426) +description = Point Arena CCD, CA +station = ('kuki', 0.0060434509379566599) +zone = ('caz002', 0.0059169517606358886) + +[fips0604592592] +centroid = (0.68598228934167416, -2.1506520907332183) +description = Redwood Valley-Potter Valley CCD, CA +station = ('kuki', 0.0029933843836282567) +zone = ('caz076', 0.0041685569330965448) + +[fips0604593490] +centroid = (0.68288261949671725, -2.1505876706305274) +description = Ukiah CCD, CA +station = ('kuki', 0.00029240049005689557) +zone = ('caz002', 0.0053695189755577936) + +[fips0604593740] +centroid = (0.68845762000660748, -2.153112149767197) +description = Willits CCD, CA +station = ('kuki', 0.0058862044321869398) +zone = ('caz076', 0.0017152728628071028) + +[fips0604632] +centroid = (0.65094848725260968, -2.1016849237997555) +description = Bear Creek CDP, CA +station = ('kmce', 0.001166327175623027) +zone = ('caz090', 0.0059911586070647577) + +[fips06047] +centroid = (0.64917182934054196, -2.1070103771331956) +description = Merced County, CA +station = ('kmce', 0.0034599585108472195) +zone = ('caz089', 0.010476058704579102) + +[fips0604716] +centroid = (0.67146861997427987, -2.0952999334373068) +description = Bear Valley CDP, CA +station = ('ktvl', 0.0072340489669067204) +zone = ('caz069', 0.0067132645022920153) + +[fips0604730] +centroid = (0.65563089147644504, -2.0966854281574174) +description = Bear Valley CDP, CA +station = ('kmce', 0.0070904126397771695) +zone = ('caz093', 0.0079002229352197629) + +[fips0604734] +centroid = (0.61399658576889582, -2.0704136326989699) +description = Bear Valley Springs CDP, CA +station = ('ktsp', 0.002879554122634828) +zone = ('caz095', 0.0031180614973046342) + +[fips0604758] +centroid = (0.59102229322611899, -2.0411706061752204) +description = Beaumont city, CA +station = ('kriv', 0.0043877591888655827) +zone = ('caz048', 0.004221528395270081) + +[fips0604772] +centroid = (0.69539842792264617, -2.1013528400029786) +description = Beckwourth CDP, CA +station = ('krts', 0.007645116839645626) +zone = ('caz071', 0.01104546911131918) + +[fips0604790150] +centroid = (0.65240206726684058, -2.1043060069105226) +description = Atwater CCD, CA +station = ('kmer', 0.00023128949134225088) +zone = ('caz090', 0.0085011805003704123) + +[fips0604790720] +centroid = (0.64639321281148954, -2.1056274305937928) +description = Dos Palos CCD, CA +station = ('kmce', 0.0047625777680895031) +zone = ('caz089', 0.0074995239074782706) + +[fips0604791210] +centroid = (0.64926391291187724, -2.1111350439412639) +description = Gustine CCD, CA +station = ('kmce', 0.0065426768127197898) +zone = ('caz019', 0.0098050432898997494) + +[fips0604791290] +centroid = (0.65228533964646718, -2.1099059656287165) +description = Hilmar-Irwin CCD, CA +station = ('kmod', 0.0043332829747985881) +zone = ('caz019', 0.0070404618154172273) + +[fips0604791670] +centroid = (0.65273589639286955, -2.107161487739833) +description = Livingston-Delhi CCD, CA +station = ('kmer', 0.0023540991659760724) +zone = ('caz019', 0.0075901464116940797) + +[fips0604791760] +centroid = (0.64499714139611164, -2.111550013424218) +description = Los Banos CCD, CA +station = ('kcvh', 0.0060682829633878187) +zone = ('caz089', 0.0089022788507732743) + +[fips0604791960] +centroid = (0.64967251194306153, -2.1040359172087766) +description = Merced CCD, CA +station = ('kmce', 0.0012728959391314246) +zone = ('caz090', 0.006768272578973159) + +[fips0604792500] +centroid = (0.65073847178371713, -2.0991123259356081) +description = Planada-Le Grand CCD, CA +station = ('kmce', 0.0031901418992258223) +zone = ('caz090', 0.0046022127281847057) + +[fips0604793050] +centroid = (0.65467713885340018, -2.1024393074623449) +description = Snelling CCD, CA +station = ('kmer', 0.0029029769237643361) +zone = ('caz090', 0.0093322602914972293) + +[fips0604856] +centroid = (0.69825008648089459, -2.1161801450369562) +description = Belden CDP, CA +station = ('kove', 0.010133105598473781) +zone = ('caz068', 0.0035894752315418078) + +[fips0604870] +centroid = (0.59305771365308724, -2.0626170025842163) +description = Bell city, CA +station = ('kcqt', 0.0017731114324908218) +zone = ('caz041', 0.0019716701341246641) + +[fips06049] +centroid = (0.72593338206530744, -2.1069330241407469) +description = Modoc County, CA +station = ('kaat', 0.0027542543109919026) +zone = ('caz085', 0.00076349699165269541) + +[fips0604926] +centroid = (0.70950561010725088, -2.1337783696979851) +description = Bella Vista CDP, CA +station = ('krdd', 0.0026710641881778651) +zone = ('caz013', 0.0048740485774870492) + +[fips0604938] +centroid = (0.59704355697245171, -2.0714899074355051) +description = Bell Canyon CDP, CA +station = ('kvny', 0.0029524412579490693) +zone = ('caz046', 0.0021675069118384785) + +[fips0604982] +centroid = (0.59145405277647733, -2.0617094488264716) +description = Bellflower city, CA +station = ('klgb', 0.0012849105986461175) +zone = ('caz041', 0.0026047542489913999) + +[fips0604990010] +centroid = (0.72102530676918908, -2.1149986967596961) +description = Adin-Lookout CCD, CA +station = ('kaat', 0.0085766124481243423) +zone = ('caz085', 0.0070309983099811364) + +[fips0604990040] +centroid = (0.72671935618735795, -2.1064962205888507) +description = Alturas CCD, CA +station = ('kaat', 0.0031653224726481094) +zone = ('caz085', 0.001588184306950204) + +[fips0604992105] +centroid = (0.72803877274198814, -2.1174242506343628) +description = Newell CCD, CA +station = ('klmt', 0.0091990845612273404) +zone = ('caz084', 0.004895992740835649) + +[fips0604993270] +centroid = (0.72564119649523096, -2.0960863264383782) +description = Surprise Valley CCD, CA +station = ('kaat', 0.0063481404962237803) +zone = ('caz070', 0.0006338100729370795) + +[fips0604996] +centroid = (0.59279024194521912, -2.0621839514902112) +description = Bell Gardens city, CA +station = ('kcqt', 0.0022196609819468277) +zone = ('caz041', 0.0022061557235756239) + +[fips06051] +centroid = (0.6617561768461967, -2.0747630630081102) +description = Mono County, CA +station = ('kmmh', 0.0052532937582570978) +zone = ('caz073', 0.00043434804069843473) + +[fips0605108] +centroid = (0.65474976200357571, -2.1344412457478925) +description = Belmont city, CA +station = ('ksql', 0.00061697253240554362) +zone = ('caz508', 0.0022649410323829105) + +[fips0605164] +centroid = (0.660992420765524, -2.1375153639726001) +description = Belvedere city, CA +station = ('koak', 0.0042504338977218704) +zone = ('caz006', 0.0020665957599628687) + +[fips0605191865] +centroid = (0.65905742658371547, -2.0709343516813026) +description = Mammoth Lakes CCD, CA +station = ('kmmh', 0.0035180486198114307) +zone = ('caz073', 0.0044446579233935) + +[fips0605192195] +centroid = (0.66939141636501864, -2.0815486587937686) +description = North Mono CCD, CA +station = ('kban', 0.0034594153167258187) +zone = ('caz073', 0.0088937900117228314) + +[fips0605262] +centroid = (0.69918355837803126, -2.1601133809819393) +description = Benbow CDP, CA +station = ('kfot', 0.0099064199725228501) +zone = ('caz076', 0.011052648628274635) + +[fips0605276] +centroid = (0.70258389609322913, -2.1329828660782182) +description = Bend CDP, CA +station = ('krbl', 0.0019067604112591612) +zone = ('caz015', 0.0012772866350823644) + +[fips0605290] +centroid = (0.66442590228321741, -2.1319361921257975) +description = Benicia city, CA +station = ('kccr', 0.0018350998812266322) +zone = ('caz510', 0.0049708463771464921) + +[fips06053] +centroid = (0.63250918842504467, -2.117356182793535) +description = Monterey County, CA +station = ('ksns', 0.0084480247046452208) +zone = ('caz517', 0.0020097981423037327) + +[fips0605332] +centroid = (0.64713660089979141, -2.1308396017567692) +description = Ben Lomond CDP, CA +station = ('kwvi', 0.0049434622299016195) +zone = ('caz512', 0.0017785141555232966) + +[fips0605346] +centroid = (0.66053519686137896, -2.067984640525677) +description = Benton CDP, CA +station = ('kmmh', 0.006235872459856827) +zone = ('caz073', 0.005742916538356361) + +[fips0605390235] +centroid = (0.63210682021928988, -2.1244708778629495) +description = Big Sur CCD, CA +station = ('kmry', 0.0066362693470261138) +zone = ('caz517', 0.0043997680620240578) + +[fips0605390362] +centroid = (0.6373524421927439, -2.1273623299281437) +description = Carmel-by-the-Sea CCD, CA +station = ('kmry', 0.0012701273186040431) +zone = ('caz530', 0.0025333195821432264) + +[fips0605390370] +centroid = (0.63514912109173383, -2.1237274897746476) +description = Carmel Valley CCD, CA +station = ('kmry', 0.0041078910197193379) +zone = ('caz530', 0.0040713722986998775) + +[fips0605390400] +centroid = (0.64165078671467801, -2.1257645682644051) +description = Castroville CCD, CA +station = ('kwvi', 0.0029639446166240431) +zone = ('caz530', 0.0026347292303915007) + +[fips0605391130] +centroid = (0.63791291977543685, -2.1194511364012887) +description = Gonzales CCD, CA +station = ('ksns', 0.0030775146028414139) +zone = ('caz528', 0.0024216210059318333) + +[fips0605391150] +centroid = (0.6343322371886303, -2.1161557627873053) +description = Greenfield CCD, CA +station = ('ksns', 0.0074938459578603317) +zone = ('caz517', 0.0040211319850295421) + +[fips0605391470] +centroid = (0.63196227205063971, -2.114508468679396) +description = King City CCD, CA +station = ('ksns', 0.010166880801817225) +zone = ('caz516', 0.0023263054962094423) + +[fips0605392320] +centroid = (0.64307617966148922, -2.1254844778260451) +description = Pajaro CCD, CA +station = ('kwvi', 0.0015323562259240801) +zone = ('caz529', 0.0028155631958883248) + +[fips0605392730] +centroid = (0.64061774378371505, -2.1221452266346672) +description = Salinas CCD, CA +station = ('ksns', 0.00067838353438789056) +zone = ('caz528', 0.0012881338525885452) + +[fips0605392750] +centroid = (0.62756009789150446, -2.1106625833127488) +description = San Ardo CCD, CA +station = ('kprb', 0.0065934149900222505) +zone = ('caz516', 0.0030632486207033912) + +[fips0605392970] +centroid = (0.63940487957991921, -2.1280126745140215) +description = Seaside-Monterey CCD, CA +station = ('kmry', 0.0013991292006531727) +zone = ('caz530', 0.0023971600736834939) + +[fips0605393060] +centroid = (0.63506928973174748, -2.1191241838725126) +description = Soledad CCD, CA +station = ('ksns', 0.0055188366926874543) +zone = ('caz517', 0.0039478534460256915) + +[fips0605393372] +centroid = (0.638020240071142, -2.1230993981367323) +description = Toro Park CCD, CA +station = ('ksns', 0.0020324093621264579) +zone = ('caz530', 0.001892616786605844) + +[fips06055] +centroid = (0.67208006117113095, -2.1349913735281212) +description = Napa County, CA +station = ('kapc', 0.0053959718748957377) +zone = ('caz507', 0.0050819462008906881) + +[fips0605590070] +centroid = (0.67291097752142037, -2.1367769849792513) +description = Angwin CCD, CA +station = ('ksts', 0.0053887244406552624) +zone = ('caz507', 0.0036256320197732813) + +[fips0605590340] +centroid = (0.67429015414963889, -2.1385211797672321) +description = Calistoga CCD, CA +station = ('ksts', 0.0045782299215952563) +zone = ('caz507', 0.0026794274377277996) + +[fips0605591515] +centroid = (0.67440347837797088, -2.1343046213740462) +description = Lake Berryessa CCD, CA +station = ('kvcb', 0.0064248516264289544) +zone = ('caz507', 0.0057682343661380319) + +[fips0605592070] +centroid = (0.6691275923952873, -2.134124049609635) +description = Napa CCD, CA +station = ('kapc', 0.0024137424074348072) +zone = ('caz506', 0.0050341795581782013) + +[fips0605592710] +centroid = (0.67153586751035921, -2.1374585185988626) +description = St. Helena CCD, CA +station = ('ko69', 0.0043448194656576788) +zone = ('caz506', 0.0030237522511263951) + +[fips06057] +centroid = (0.68583046315004315, -2.1078942816795756) +description = Nevada County, CA +station = ('kblu', 0.0010134737053490257) +zone = ('caz069', 0.0106819736128233) + +[fips0605790710] +centroid = (0.68759738212488464, -2.1006445679392267) +description = Donner CCD, CA +station = ('ktrk', 0.0033370590889548533) +zone = ('nvz002', 0.0067685433895319667) + +[fips0605791140] +centroid = (0.68362277872590294, -2.113135051637709) +description = Grass Valley CCD, CA +station = ('kgoo', 0.0013584324843889891) +zone = ('caz067', 0.010441415373093437) + +[fips0605792090] +centroid = (0.68674885540244257, -2.1104299309234578) +description = Nevada City CCD, CA +station = ('kgoo', 0.002442534784598134) +zone = ('caz069', 0.012578776569134642) + +[fips06059] +centroid = (0.58775161602105175, -2.0556000459529131) +description = Orange County, CA +station = ('ksna', 0.0013061300331355299) +zone = ('caz042', 0.0005078446736949397) + +[fips0605990050] +centroid = (0.59040715193125359, -2.0570398029594683) +description = Anaheim-Santa Ana-Garden Grove CCD, CA +station = ('kful', 0.0019159823793552019) +zone = ('caz042', 0.0024058616790837367) + +[fips0605990420] +centroid = (0.58668996714364863, -2.0574133557792726) +description = Central Coast CCD, CA +station = ('ksna', 0.0012133659092236234) +zone = ('caz042', 0.0020276100595461124) + +[fips0605991413] +centroid = (0.58818878609209124, -2.0546744978505807) +description = Irvine-Lake Forest CCD, CA +station = ('ksna', 0.0020913608695071109) +zone = ('caz042', 0.00095498090548358072) + +[fips0605991977] +centroid = (0.58578052843031192, -2.0523719198750094) +description = Mission Viejo CCD, CA +station = ('ksna', 0.0045094163466643938) +zone = ('caz057', 0.0022769789494404111) + +[fips0605992150] +centroid = (0.5880475191424348, -2.0599913816173934) +description = North Coast CCD, CA +station = ('ksli', 0.0016124755966363824) +zone = ('caz042', 0.0034737025201444713) + +[fips0605993015] +centroid = (0.58797856118368852, -2.0516359494360286) +description = Silverado CCD, CA +station = ('kajo', 0.0037584557338003052) +zone = ('caz057', 0.0017664832678323805) + +[fips0605993110] +centroid = (0.58476328072907957, -2.0545541050387781) +description = South Coast CCD, CA +station = ('ksna', 0.0038029491952711321) +zone = ('caz042', 0.0036189397518084825) + +[fips0606000] +centroid = (0.66089862677152178, -2.1345213738138513) +description = Berkeley city, CA +station = ('koak', 0.0027711115017411115) +zone = ('caz006', 0.0027653630938305257) + +[fips0606028] +centroid = (0.58893517614670654, -2.0295968217597626) +description = Bermuda Dunes CDP, CA +station = ('ktrm', 0.0027581824113217623) +zone = ('caz061', 0.00021952414484683073) + +[fips0606070] +centroid = (0.69170080827595593, -2.1189239073408461) +description = Berry Creek CDP, CA +station = ('kove', 0.0036538472292832699) +zone = ('caz016', 0.0083053869504098096) + +[fips06061] +centroid = (0.68176107091938565, -2.1070089110566239) +description = Placer County, CA +station = ('kblu', 0.0038746491267953286) +zone = ('caz069', 0.0071004818199572129) + +[fips0606150] +centroid = (0.72871393590982958, -2.1669619482470104) +description = Bertsch-Oceanview CDP, CA +station = ('kcec', 0.001123431800399691) +zone = ('orz022', 0.010459415651153573) + +[fips0606190160] +centroid = (0.67961197719823496, -2.1139839797858788) +description = Auburn CCD, CA +station = ('kaun', 0.0007804400818339015) +zone = ('caz067', 0.0073582851906046102) + +[fips0606190548] +centroid = (0.68443659084952291, -2.0986503023760203) +description = Colfax-Monumental Ridge CCD, CA +station = ('ktrk', 0.0023144353211257979) +zone = ('nvz002', 0.0044475772968280494) + +[fips0606191020] +centroid = (0.68212362816490246, -2.1042394924127295) +description = Foresthill-Back Country CCD, CA +station = ('kblu', 0.003953763501300998) +zone = ('caz069', 0.0060383186126860503) + +[fips0606191550] +centroid = (0.68391208450271357, -2.0960731317492329) +description = Lake Tahoe CCD, CA +station = ('ktrk', 0.0023476380902749381) +zone = ('nvz002', 0.0025067575327884476) + +[fips0606191605] +centroid = (0.67884253134420081, -2.1178953324527683) +description = Lincoln CCD, CA +station = ('klhm', 0.00026939630876124485) +zone = ('caz017', 0.0055249592203179447) + +[fips0606192645] +centroid = (0.67716403074926534, -2.1150523307276097) +description = Rocklin CCD, CA +station = ('klhm', 0.0029823276538046783) +zone = ('caz017', 0.0059687279977316344) + +[fips0606192660] +centroid = (0.67643104482330518, -2.117165191413489) +description = Roseville CCD, CA +station = ('kmcc', 0.0020379201138355243) +zone = ('caz017', 0.0041804246231109598) + +[fips0606210] +centroid = (0.66373131360080118, -2.123028380689469) +description = Bethel Island CDP, CA +station = ('ksuu', 0.005936698190805386) +zone = ('caz018', 0.0026017381769803585) + +[fips06063] +centroid = (0.69804740139486054, -2.1088728877911689) +description = Plumas County, CA +station = ('kblu', 0.012545245991718352) +zone = ('caz068', 0.0077928641617719535) + +[fips0606308] +centroid = (0.59479477004442716, -2.0665123680351574) +description = Beverly Hills city, CA +station = ('ksmo', 0.0012905123911321292) +zone = ('caz547', 0.0024529729344689778) + +[fips0606336] +centroid = (0.71778920453660378, -2.1142153406315232) +description = Bieber CDP, CA +station = ('kaat', 0.0097198761885538623) +zone = ('caz014', 0.0056443929162049503) + +[fips0606390460] +centroid = (0.70269528300609152, -2.1145437941434562) +description = Chester CCD, CA +station = ('kcic', 0.012299410407436154) +zone = ('caz068', 0.0028390154541782743) + +[fips0606390975] +centroid = (0.69798038075158386, -2.1158756025357754) +description = Feather River Canyon CCD, CA +station = ('kove', 0.01001785940382177) +zone = ('caz068', 0.0039290566521795207) + +[fips0606391135] +centroid = (0.69388335995886741, -2.1060513710691025) +description = Graeagle CCD, CA +station = ('kblu', 0.0082711823090787211) +zone = ('caz068', 0.01193188383990719) + +[fips0606391170] +centroid = (0.70035027607640443, -2.1074971320082843) +description = Greenville CCD, CA +station = ('krts', 0.014184235183855972) +zone = ('caz071', 0.0065060010047205616) + +[fips0606392530] +centroid = (0.69663239315709857, -2.1002561798207799) +description = Portola CCD, CA +station = ('krts', 0.0075083127832135197) +zone = ('caz071', 0.010035993657070596) + +[fips0606392540] +centroid = (0.69519066392848872, -2.1122864900086822) +description = Quincy CCD, CA +station = ('kove', 0.0098305774677689955) +zone = ('caz068', 0.0077195298413184343) + +[fips0606406] +centroid = (0.59784761270555309, -2.0384801287733931) +description = Big Bear City CDP, CA +station = ('kl35', 0.00092445427313523514) +zone = ('caz055', 0.0043394720409962997) + +[fips0606434] +centroid = (0.5976523627221324, -2.0402181800024071) +description = Big Bear Lake city, CA +station = ('kl35', 0.00059713158693259333) +zone = ('caz055', 0.002891362127661621) + +[fips0606475] +centroid = (0.71578771331029423, -2.1280877062185648) +description = Big Bend CDP, CA +station = ('kmhs', 0.0073552000456957242) +zone = ('caz013', 0.0041316623546595243) + +[fips06065] +centroid = (0.58869655473137383, -2.0246210102353746) +description = Riverside County, CA +station = ('ktrm', 0.002907759099655891) +zone = ('caz030', 0.0040779658199548464) + +[fips0606518] +centroid = (0.6493247027297242, -2.0812787610782406) +description = Big Creek CDP, CA +station = ('kmmh', 0.0092254143226389619) +zone = ('caz096', 0.0032768642180522338) + +[fips0606560] +centroid = (0.68789169699664843, -2.1242415590525301) +description = Biggs city, CA +station = ('kove', 0.0019684352389198706) +zone = ('caz016', 0.0029826518761823097) + +[fips0606567] +centroid = (0.71836636746694571, -2.1664748966659486) +description = Big Lagoon CDP, CA +station = ('kacv', 0.0030972963502185836) +zone = ('caz001', 0.0023999687152492311) + +[fips0606590253] +centroid = (0.58562788193393245, -2.0008456290192247) +description = Blythe CCD, CA +station = ('kblh', 0.0015615025608505873) +zone = ('azz020', 0.0026751298049814132) + +[fips0606590410] +centroid = (0.58890325407468758, -2.0316584570320959) +description = Cathedral City-Palm Desert CCD, CA +station = ('kpsp', 0.002107177619294479) +zone = ('caz061', 0.001495714984142074) + +[fips0606590492] +centroid = (0.5898418397865326, -2.0136888961194126) +description = Chuckwalla Valley CCD, CA +station = ('kblh', 0.010067016447202901) +zone = ('caz032', 0.002455598675839955) + +[fips0606590520] +centroid = (0.58627873266529362, -2.0257974668709737) +description = Coachella Valley CCD, CA +station = ('ktrm', 0.0014439125361274258) +zone = ('caz061', 0.0042879015629624269) + +[fips0606590590] +centroid = (0.59111802453559092, -2.051582856520183) +description = Corona CCD, CA +station = ('kajo', 0.00094328759692805897) +zone = ('caz057', 0.0044459776452663476) + +[fips0606590670] +centroid = (0.59220534720629081, -2.033448990311717) +description = Desert Hot Springs CCD, CA +station = ('kpsp', 0.001706270078179905) +zone = ('caz061', 0.0044393633611133423) + +[fips0606590880] +centroid = (0.58643946003610992, -2.0483095962278224) +description = Elsinore Valley CCD, CA +station = ('knfg', 0.0052466414153643816) +zone = ('caz057', 0.0014556191855817399) + +[fips0606591280] +centroid = (0.5889278981237257, -2.0410709478749314) +description = Hemet-San Jacinto CCD, CA +station = ('kriv', 0.0052048391248503316) +zone = ('caz048', 0.0046775238209101309) + +[fips0606591370] +centroid = (0.58621042047837069, -2.03504671706887) +description = Idyllwild CCD, CA +station = ('kpsp', 0.0045296068116985905) +zone = ('caz056', 0.0014183588154613976) + +[fips0606591450] +centroid = (0.59314251920144168, -2.0508925788010193) +description = Jurupa CCD, CA +station = ('kral', 0.0010278014695181516) +zone = ('caz048', 0.0045283838869226295) + +[fips0606591530] +centroid = (0.59003899217883793, -2.0489603247861359) +description = Lake Mathews CCD, CA +station = ('kral', 0.0026165168296888048) +zone = ('caz048', 0.00237104075015182) + +[fips0606592060] +centroid = (0.58530878338679027, -2.0439444754087073) +description = Murrieta CCD, CA +station = ('knfg', 0.0054048251499754637) +zone = ('caz048', 0.00578647226442691) + +[fips0606592130] +centroid = (0.59211178010509136, -2.0515944629597085) +description = Norco CCD, CA +station = ('kajo', 0.0008785962305438731) +zone = ('caz042', 0.005238618545810798) + +[fips0606592340] +centroid = (0.58931928820848545, -2.0343219516436868) +description = Palm Springs CCD, CA +station = ('kpsp', 0.0014527427088910304) +zone = ('caz056', 0.0022194559865370482) + +[fips0606592450] +centroid = (0.58949818445681501, -2.0450299480303999) +description = Perris Valley CCD, CA +station = ('kriv', 0.0024483399676413593) +zone = ('caz048', 0.0016233915456512287) + +[fips0606592640] +centroid = (0.59231443028454045, -2.0477067944107685) +description = Riverside CCD, CA +station = ('kriv', 0.0012642161985341677) +zone = ('caz048', 0.0019644845504991574) + +[fips0606592810] +centroid = (0.59234467684047754, -2.0405675076521934) +description = San Gorgonio Pass CCD, CA +station = ('ksbd', 0.0053848495677231989) +zone = ('caz048', 0.0049689687567477693) + +[fips0606616] +centroid = (0.64866046532300015, -2.0646592647018522) +description = Big Pine CDP, CA +station = ('kbih', 0.0036445465348141472) +zone = ('caz521', 0.0044919469795236021) + +[fips0606635] +centroid = (0.59585509247159885, -1.9959969647308442) +description = Big River CDP, CA +station = ('kblh', 0.010478678037533497) +zone = ('caz527', 0.0065748250970317952) + +[fips06067] +centroid = (0.67107928937803751, -2.1177902112719207) +description = Sacramento County, CA +station = ('kmhr', 0.0018304741034527916) +zone = ('caz017', 0.004325577561034584) + +[fips0606728] +centroid = (0.64228008262977698, -2.0947622847612299) +description = Biola CDP, CA +station = ('kmae', 0.0034680356295986002) +zone = ('caz090', 0.0045806284640370551) + +[fips0606790870] +centroid = (0.67081972401168077, -2.1175704568658023) +description = Elk Grove CCD, CA +station = ('kmhr', 0.0020404829821791415) +zone = ('caz017', 0.0046318062861270357) + +[fips0606791010] +centroid = (0.67485942819176192, -2.1143204094524934) +description = Folsom CCD, CA +station = ('kmhr', 0.0029675217924658229) +zone = ('caz017', 0.0057787823579728993) + +[fips0606791090] +centroid = (0.66899494737213572, -2.1154552574387253) +description = Galt CCD, CA +station = ('kmhr', 0.0040364761680705043) +zone = ('caz017', 0.0070968880470516681) + +[fips0606791416] +centroid = (0.66648446577606701, -2.1228148047489022) +description = Isleton CCD, CA +station = ('ksuu', 0.0046256701705696211) +zone = ('caz018', 0.0019893161002036397) + +[fips0606792555] +centroid = (0.67327252247597102, -2.1163259323893753) +description = Rancho Cordova CCD, CA +station = ('kmhr', 0.0007433031605119495) +zone = ('caz017', 0.004267529711476638) + +[fips0606792690] +centroid = (0.6727497614584137, -2.1192745439875718) +description = Sacramento CCD, CA +station = ('ksac', 0.001293066444392847) +zone = ('caz017', 0.0023444535175648649) + +[fips0606793030] +centroid = (0.6720822602859885, -2.1139085990154856) +description = Sloughhouse CCD, CA +station = ('kmhr', 0.0025928869413548985) +zone = ('caz067', 0.0051369407099251304) + +[fips0606798] +centroid = (0.65216632564477373, -2.06639665270575) +description = Bishop city, CA +station = ('kbih', 0.00040424693465828494) +zone = ('caz521', 0.0079524383058860431) + +[fips06069] +centroid = (0.63897729136647308, -2.1133370909519198) +description = San Benito County, CA +station = ('kcvh', 0.006661922549511352) +zone = ('caz518', 0.0047617686016695132) + +[fips0606928] +centroid = (0.65989883236280944, -2.1277820118000781) +description = Blackhawk CDP, CA +station = ('klvk', 0.002326258713148132) +zone = ('caz510', 0.0013172696936870232) + +[fips0606935] +centroid = (0.61173247485003879, -2.1037961787827228) +description = Blacklake CDP, CA +station = ('ksmx', 0.0028080314715457216) +zone = ('caz034', 0.0056331323871942314) + +[fips0606982] +centroid = (0.66513773481864324, -2.1383913098175911) +description = Black Point-Green Point CDP, CA +station = ('kdvo', 0.00075598386766374771) +zone = ('caz506', 0.0048355127785624638) + +[fips0606991300] +centroid = (0.64298662681756946, -2.1180629887807152) +description = Hollister CCD, CA +station = ('kcvh', 0.0011471221093882593) +zone = ('caz528', 0.0035304897290580413) + +[fips0606992760] +centroid = (0.63767780647190075, -2.1113206422539208) +description = San Benito-Bitterwater CCD, CA +station = ('kcvh', 0.0087211759657357408) +zone = ('caz518', 0.0029493462019041664) + +[fips0606992840] +centroid = (0.6427304997498392, -2.1208994455211787) +description = San Juan Bautista CCD, CA +station = ('kcvh', 0.0018860384406746652) +zone = ('caz528', 0.0026050838414367226) + +[fips0606994] +centroid = (0.69420828790571121, -2.1050563588625404) +description = Blairsden CDP, CA +station = ('kblu', 0.0086682669809557446) +zone = ('caz071', 0.01208662536012845) + +[fips0607036] +centroid = (0.66884863642094106, -2.143863213728566) +description = Bloomfield CDP, CA +station = ('ksts', 0.003112496605030672) +zone = ('caz505', 0.0022237641872690788) + +[fips0607064] +centroid = (0.59446530424152821, -2.0490420760082997) +description = Bloomington CDP, CA +station = ('kral', 0.0020500571490378061) +zone = ('caz048', 0.0043637089108578171) + +[fips06071] +centroid = (0.60837325709201784, -2.0277444165581584) +description = San Bernardino County, CA +station = ('kbys', 0.0096955901063221668) +zone = ('caz524', 0.0054401929162055532) + +[fips0607162] +centroid = (0.71355068990142811, -2.1641188243488036) +description = Blue Lake city, CA +station = ('kacv', 0.0022272922008398873) +zone = ('caz001', 0.0027940277618414572) + +[fips0607172] +centroid = (0.59647759905590758, -1.9943386925019393) +description = Bluewater CDP, CA +station = ('keed', 0.011475574004472492) +zone = ('caz527', 0.0065706968337373431) + +[fips0607190188] +centroid = (0.61106680627332821, -2.0462121293459457) +description = Barstow CCD, CA +station = ('kqck', 0.0059027410082263367) +zone = ('caz523', 0.0061561357158554418) + +[fips0607190220] +centroid = (0.59693412482835173, -2.0404943958098274) +description = Big Bear CCD, CA +station = ('kl35', 0.0012603676802943825) +zone = ('caz055', 0.0027018292196688614) + +[fips0607191513] +centroid = (0.59799537228002686, -2.046985903616525) +description = Lake Arrowhead CCD, CA +station = ('ksbd', 0.0029296169218049981) +zone = ('caz055', 0.002769320118774665) + +[fips0607192040] +centroid = (0.59806515054352161, -2.0514832680330639) +description = Mount Baldy-Wrightwood CCD, CA +station = ('kont', 0.0038288941352808232) +zone = ('caz548', 0.0071623434047162629) + +[fips0607192080] +centroid = (0.60209047321056619, -2.003483188038131) +description = Needles CCD, CA +station = ('keed', 0.0053281555314741505) +zone = ('caz527', 0.0041719094543224864) + +[fips0607192102] +centroid = (0.61438792349377813, -2.0244569492856872) +description = Newberry Springs-Baker CCD, CA +station = ('kbys', 0.0090053115741209142) +zone = ('caz524', 0.0011531667956844512) + +[fips0607192260] +centroid = (0.59408991882600926, -2.0533521142362221) +description = Ontario CCD, CA +station = ('kont', 0.00096105682887993871) +zone = ('caz548', 0.0047285951984965251) + +[fips0607192770] +centroid = (0.59507220758232415, -2.0476078516954734) +description = San Bernardino CCD, CA +station = ('ksbd', 0.0012451943266401655) +zone = ('caz055', 0.0040000634336135243) + +[fips0607192955] +centroid = (0.62024865185551248, -2.0473127165189609) +description = Searles Valley CCD, CA +station = ('kqck', 0.0046276048117065019) +zone = ('caz523', 0.0059056833918271741) + +[fips0607193482] +centroid = (0.59959432076765651, -2.0245318762704749) +description = Twentynine Palms-Yucca Valley CCD, CA +station = ('knxp', 0.0026204487176674672) +zone = ('caz525', 0.0014210038106200488) + +[fips0607193555] +centroid = (0.60301628311228661, -2.0461085266015475) +description = Victorville-Hesperia CCD, CA +station = ('kvcv', 0.0022979135219397943) +zone = ('caz060', 0.0031522516363748764) + +[fips0607193850] +centroid = (0.59397540777378588, -2.0422186240311651) +description = Yucaipa CCD, CA +station = ('ksbd', 0.0034315876366884501) +zone = ('caz055', 0.0036702876842011475) + +[fips0607218] +centroid = (0.58736584589648344, -2.0005275427630487) +description = Blythe city, CA +station = ('kblh', 0.0015218805990769668) +zone = ('azz020', 0.0023163126115073266) + +[fips0607246] +centroid = (0.66931353977379482, -2.1462516968099203) +description = Bodega CDP, CA +station = ('ksts', 0.0033797761157531615) +zone = ('caz505', 0.001976015278949997) + +[fips0607260] +centroid = (0.66879987192164025, -2.1472893125035233) +description = Bodega Bay CDP, CA +station = ('ksts', 0.0043006810320252277) +zone = ('caz505', 0.0017866989134713105) + +[fips0607274] +centroid = (0.62088393424994592, -2.0678866402881777) +description = Bodfish CDP, CA +station = ('ktsp', 0.0076101802263342363) +zone = ('caz095', 0.0040747947864563433) + +[fips06073] +centroid = (0.57637062067476952, -2.0381277293441231) +description = San Diego County, CA +station = ('krnm', 0.0020636386450026147) +zone = ('caz050', 0.0027171271355112491) + +[fips0607316] +centroid = (0.66178914611576689, -2.1416848333825667) +description = Bolinas CDP, CA +station = ('kdvo', 0.0043902646679132599) +zone = ('caz006', 0.0046424285942224452) + +[fips0607372] +centroid = (0.58215390877759288, -2.0198779907266173) +description = Bombay Beach CDP, CA +station = ('ktrm', 0.0078404342864725318) +zone = ('caz033', 0.006652727738768043) + +[fips0607379] +centroid = (0.64550190806908103, -2.0922093393044605) +description = Bonadelle Ranchos-Madera Ranchos CDP, CA +station = ('kfat', 0.0041476102567718186) +zone = ('caz090', 0.0035654844844102253) + +[fips0607390030] +centroid = (0.57307018560595568, -2.0378861408690621) +description = Alpine CCD, CA +station = ('ksee', 0.0030824939872704789) +zone = ('caz050', 0.0041532577431971744) + +[fips0607390258] +centroid = (0.57789979089890431, -2.0293564550151779) +description = Borrego Springs CCD, CA +station = ('kczz', 0.0089352010452880045) +zone = ('caz062', 0.0010891191978234969) + +[fips0607390355] +centroid = (0.58179704130543763, -2.0496033738957409) +description = Camp Pendleton CCD, CA +station = ('knxf', 0.00086697000293633119) +zone = ('caz057', 0.0050899135902653042) + +[fips0607390960] +centroid = (0.58288356112468165, -2.046471206020112) +description = Fallbrook CCD, CA +station = ('knfg', 0.0021919789087579264) +zone = ('caz057', 0.0049490059426109852) + +[fips0607391440] +centroid = (0.57035187020255962, -2.0388129630617486) +description = Jamul CCD, CA +station = ('mmtj', 0.0031617453426429206) +zone = ('caz050', 0.0060732910346028993) + +[fips0607391510] +centroid = (0.5740100454081547, -2.0354414756390864) +description = Laguna-Pine Valley CCD, CA +station = ('krnm', 0.004999700205588542) +zone = ('caz058', 0.0034531477339695324) + +[fips0607392030] +centroid = (0.57076898644049379, -2.032555887880179) +description = Mountain Empire CCD, CA +station = ('kczz', 0.0013464939068416706) +zone = ('caz058', 0.0065286104627625225) + +[fips0607392240] +centroid = (0.57879600001651088, -2.0450168406077176) +description = Oceanside-Escondido CCD, CA +station = ('kcrq', 0.001721311857182124) +zone = ('caz043', 0.0033572649603657904) + +[fips0607392350] +centroid = (0.58010112232456723, -2.0369028049151958) +description = Palomar-Julian CCD, CA +station = ('krnm', 0.0047078785222141603) +zone = ('caz058', 0.0038507484176234885) + +[fips0607392430] +centroid = (0.58182060325033946, -2.0422358155242972) +description = Pauma Valley CCD, CA +station = ('kcrq', 0.0053144898562090042) +zone = ('caz050', 0.005827917756299197) + +[fips0607392550] +centroid = (0.57656082665665187, -2.0394918961407744) +description = Ramona CCD, CA +station = ('krnm', 0.00091309462635943495) +zone = ('caz050', 0.0016378115030951229) + +[fips0607392780] +centroid = (0.57283840588129087, -2.0438018471022343) +description = San Diego CCD, CA +station = ('kmyf', 0.0004776889932403258) +zone = ('caz043', 0.003384889708343275) + +[fips0607393540] +centroid = (0.58012916976564677, -2.0420259571350377) +description = Valley Center CCD, CA +station = ('krnm', 0.0037872836097765593) +zone = ('caz050', 0.0041281781386407045) + +[fips0607414] +centroid = (0.57025521386858413, -2.0421417073710297) +description = Bonita CDP, CA +station = ('mmml', 0.00070185090751602387) +zone = ('caz050', 0.0058241552966780668) + +[fips0607470] +centroid = (0.64653069239666916, -2.1316901356078515) +description = Bonny Doon CDP, CA +station = ('kwvi', 0.0052899978766415556) +zone = ('caz512', 0.0026259752698140617) + +[fips0607498] +centroid = (0.58071022478022072, -2.0453693622100353) +description = Bonsall CDP, CA +station = ('kokb', 0.0025150284415820412) +zone = ('caz043', 0.0051735518011953594) + +[fips06075] +centroid = (0.65846453823681295, -2.1473174821176508) +description = San Francisco County, CA +station = ('khaf', 0.0083591060220486093) +zone = ('caz505', 0.0089509662010298398) + +[fips0607512] +centroid = (0.68087866735616231, -2.1532832618470623) +description = Boonville CDP, CA +station = ('kuki', 0.0031756660334626777) +zone = ('caz002', 0.0050517550598330341) + +[fips0607525] +centroid = (0.65390212539905213, -2.0924511721256165) +description = Bootjack CDP, CA +station = ('kmae', 0.008997809616272983) +zone = ('caz093', 0.0043640922401897353) + +[fips0607568] +centroid = (0.61125055453697819, -2.0536627130299068) +description = Boron CDP, CA +station = ('k9l2', 0.0027132119704328145) +zone = ('caz099', 0.0052726634548564159) + +[fips0607578] +centroid = (0.64044666661043448, -2.123623607777569) +description = Boronda CDP, CA +station = ('ksns', 0.001155436002928865) +zone = ('caz530', 0.0017854664899826904) + +[fips0607592790] +centroid = (0.65846453823681295, -2.1473174821176508) +description = San Francisco CCD, CA +station = ('khaf', 0.0083591060220486093) +zone = ('caz505', 0.0089509662010298398) + +[fips0607596] +centroid = (0.58015559405052197, -2.030783052239173) +description = Borrego Springs CDP, CA +station = ('ktrm', 0.0073192400508224186) +zone = ('caz062', 0.0036238328314853936) + +[fips0607624] +centroid = (0.57280044497006, -2.0410264943388832) +description = Bostonia CDP, CA +station = ('ksee', 0.00045720758055233819) +zone = ('caz050', 0.0032511886715791646) + +[fips0607652] +centroid = (0.64811230976482626, -2.1315218858679588) +description = Boulder Creek CDP, CA +station = ('ksjc', 0.0050031531484962394) +zone = ('caz512', 0.0013867877893723271) + +[fips0607694] +centroid = (0.57009464357740069, -2.0296365280002457) +description = Boulevard CDP, CA +station = ('kczz', 0.002708629860462945) +zone = ('caz062', 0.006776466478034625) + +[fips06077] +centroid = (0.6620912451559946, -2.1165998269088906) +description = San Joaquin County, CA +station = ('ksck', 0.00081290307076575103) +zone = ('caz019', 0.0044376524427272726) + +[fips0607750] +centroid = (0.63894536929445411, -2.090076529505231) +description = Bowles CDP, CA +station = ('kfat', 0.0030860694043121236) +zone = ('caz090', 0.0092424145645387413) + +[fips0607790900] +centroid = (0.66019442132492723, -2.1122099573209816) +description = Escalon CCD, CA +station = ('ksck', 0.0031992239954135898) +zone = ('caz019', 0.0012236666796423697) + +[fips0607791630] +centroid = (0.66289137389827879, -2.1124893670809337) +description = Linden-Farmington CCD, CA +station = ('ksck', 0.0030522487464107995) +zone = ('caz019', 0.0038886556959704336) + +[fips0607791690] +centroid = (0.66601991148906381, -2.113369117743694) +description = Lockeford CCD, CA +station = ('ksck', 0.0049651405978559599) +zone = ('caz019', 0.0070454042651657946) + +[fips0607791700] +centroid = (0.66575884513955053, -2.1170253730871118) +description = Lodi CCD, CA +station = ('ksck', 0.0043666297029260788) +zone = ('caz019', 0.0076167582607051965) + +[fips0607791870] +centroid = (0.65964993095818258, -2.1157965914805374) +description = Manteca CCD, CA +station = ('ksck', 0.0018324834977853498) +zone = ('caz019', 0.0026356589987309121) + +[fips0607792620] +centroid = (0.6594729022121526, -2.1138700621456015) +description = Ripon CCD, CA +station = ('ksck', 0.002578824192504151) +zone = ('caz019', 0.0011342455837935119) + +[fips0607793240] +centroid = (0.6621981291193868, -2.1185837950295099) +description = Stockton CCD, CA +station = ('ksck', 0.0022201399445260488) +zone = ('caz019', 0.0057273407038667375) + +[fips0607793340] +centroid = (0.66550205484670455, -2.1199349416699413) +description = Thornton CCD, CA +station = ('ksck', 0.0051166439518427909) +zone = ('caz018', 0.0041102516666696879) + +[fips0607793400] +centroid = (0.65741629348806518, -2.1192635309599921) +description = Tracy CCD, CA +station = ('ksck', 0.0048467781143877514) +zone = ('caz511', 0.0049818210670747199) + +[fips0607848] +centroid = (0.66868181785103542, -2.1378319492456193) +description = Boyes Hot Springs CDP, CA +station = ('ko69', 0.0018758123904131056) +zone = ('caz506', 0.0023217344933814908) + +[fips06079] +centroid = (0.61758871771559554, -2.102206148927571) +description = San Luis Obispo County, CA +station = ('ksbp', 0.0037457105948252396) +zone = ('caz037', 0.0023067232181556269) + +[fips0607946] +centroid = (0.59608507450713411, -2.0589442887859519) +description = Bradbury city, CA +station = ('kemt', 0.0015343384815445804) +zone = ('caz548', 0.0015281443312025269) + +[fips0607974] +centroid = (0.62592463711592317, -2.1084322270616251) +description = Bradley CDP, CA +station = ('kprb', 0.0041932139855356248) +zone = ('caz516', 0.0054622057084051509) + +[fips0607990120] +centroid = (0.61267648853585754, -2.1018948520021854) +description = Arroyo Grande CCD, CA +station = ('ksmx', 0.0035956231458877516) +zone = ('caz034', 0.0059028578786225628) + +[fips0607990140] +centroid = (0.61581631840690276, -2.0956022244637524) +description = Atascadero CCD, CA +station = ('ksbp', 0.0080881787132373942) +zone = ('caz051', 0.0025056402946829403) + +[fips0607992160] +centroid = (0.6202187892720108, -2.1123789575524525) +description = North Coast CCD, CA +station = ('kprb', 0.0060793174947415003) +zone = ('caz034', 0.0055017011847922487) + +[fips0607992410] +centroid = (0.62204031959914718, -2.1039002178594339) +description = Paso Robles CCD, CA +station = ('kprb', 0.0013399514499750531) +zone = ('caz037', 0.0037715248820132585) + +[fips0607992860] +centroid = (0.61496365525413343, -2.1062474413572714) +description = San Luis Obispo CCD, CA +station = ('ksbp', 0.00065280466974468906) +zone = ('caz034', 0.0018327087741244585) + +[fips0608058] +centroid = (0.57558693293403895, -2.0163773838458923) +description = Brawley city, CA +station = ('kipl', 0.0026215966359856274) +zone = ('caz033', 0.0014122992765183194) + +[fips06081] +centroid = (0.65300907532739172, -2.135786318642527) +description = San Mateo County, CA +station = ('khaf', 0.0023207149019810695) +zone = ('caz509', 0.00076586694751526073) + +[fips0608100] +centroid = (0.59209462351854425, -2.057135830974913) +description = Brea city, CA +station = ('kful', 0.0019871016771877245) +zone = ('caz548', 0.0029224622975853442) + +[fips0608142] +centroid = (0.66210644697377941, -2.1243894058934663) +description = Brentwood city, CA +station = ('klvk', 0.0043338702254823239) +zone = ('caz510', 0.0024271500420325045) + +[fips0608172] +centroid = (0.65627987470550664, -2.1119248577876686) +description = Bret Harte CDP, CA +station = ('kmod', 0.00079389334128907561) +zone = ('caz019', 0.0027698671391132479) + +[fips0608191215] +centroid = (0.65172308182793715, -2.1358695883011394) +description = Half Moon Bay CCD, CA +station = ('khaf', 0.0032622351286811162) +zone = ('caz509', 0.00061747890363030293) + +[fips0608192870] +centroid = (0.65439268509191018, -2.1334890639211745) +description = San Mateo CCD, CA +station = ('ksql', 0.0004205129775871144) +zone = ('caz508', 0.0020279531803885581) + +[fips0608193170] +centroid = (0.65703968634206988, -2.1364845550630798) +description = South San Francisco CCD, CA +station = ('ksfo', 0.00079992092297494525) +zone = ('caz006', 0.0019696595300866854) + +[fips0608240] +centroid = (0.66768565372716715, -2.0806810905291875) +description = Bridgeport CDP, CA +station = ('kban', 0.0044579325940851183) +zone = ('caz073', 0.0071251222175896089) + +[fips06083] +centroid = (0.60279096110585406, -2.0950667923558255) +description = Santa Barbara County, CA +station = ('kiza', 0.0013259019067018067) +zone = ('caz039', 0.0023963007418662213) + +[fips0608310] +centroid = (0.65756588565825358, -2.1359915693625613) +description = Brisbane city, CA +station = ('ksfo', 0.0010565135317540631) +zone = ('caz006', 0.0016172482052090797) + +[fips0608338] +centroid = (0.65783951837838128, -2.1377001245272162) +description = Broadmoor CDP, CA +station = ('ksfo', 0.0020511119760875164) +zone = ('caz006', 0.0012452198404110477) + +[fips0608390378] +centroid = (0.60074138605865224, -2.0860850662256749) +description = Carpinteria CCD, CA +station = ('ksba', 0.0047008935054943237) +zone = ('caz039', 0.0055036758660970738) + +[fips0608390630] +centroid = (0.60698446369962089, -2.0894687360465163) +description = Cuyama CCD, CA +station = ('kiza', 0.005936558457565487) +zone = ('caz052', 0.0015779733868133534) + +[fips0608391200] +centroid = (0.6095821070385341, -2.104849746785689) +description = Guadalupe CCD, CA +station = ('ksmx', 0.0019496388080023229) +zone = ('caz035', 0.0043471054036545729) + +[fips0608391708] +centroid = (0.60433868417993764, -2.1026050090215294) +description = Lompoc CCD, CA +station = ('klpc', 0.00071080640642752057) +zone = ('caz035', 0.0017852529062200853) + +[fips0608392890] +centroid = (0.59476754290809597, -2.0929331971584326) +description = Santa Barbara CCD, CA +station = ('ksba', 0.0062806110358277272) +zone = ('caz039', 0.0066195775261496644) + +[fips0608392908] +centroid = (0.6089572268064426, -2.1009667731724373) +description = Santa Maria CCD, CA +station = ('ksmx', 0.0013005501659207415) +zone = ('caz035', 0.0030342617003531192) + +[fips0608393065] +centroid = (0.60529374579992146, -2.0959573466066557) +description = Solvang-Santa Ynez CCD, CA +station = ('kiza', 0.0013041060525962576) +zone = ('caz036', 0.00012176716810912233) + +[fips0608478] +centroid = (0.64761721221591306, -2.1312324928246857) +description = Brookdale CDP, CA +station = ('ksjc', 0.0052918926739299339) +zone = ('caz512', 0.0015256503919309748) + +[fips06085] +centroid = (0.64962510880057744, -2.1239020226998471) +description = Santa Clara County, CA +station = ('krhv', 0.0026312341640647094) +zone = ('caz513', 0.001480011074575403) + +[fips0608530] +centroid = (0.68841583682431484, -2.1536224491338953) +description = Brooktrails CDP, CA +station = ('kuki', 0.0060085082752814722) +zone = ('caz076', 0.001956862916522193) + +[fips0608590680] +centroid = (0.65021839857320785, -2.1207840967109144) +description = Diablo Range CCD, CA +station = ('ke16', 0.0032447157341543129) +zone = ('caz511', 0.0039779843475330878) + +[fips0608591602] +centroid = (0.64836255507297724, -2.1280572851297026) +description = Lexington Hills CCD, CA +station = ('krhv', 0.0035828672732420496) +zone = ('caz512', 0.001604504669073435) + +[fips0608591680] +centroid = (0.64658898639368567, -2.1242510012837834) +description = Llagas-Uvas CCD, CA +station = ('ke16', 0.0016972235188930326) +zone = ('caz529', 0.0029230035601128974) + +[fips0608592830] +centroid = (0.65139101548445277, -2.1278968544648595) +description = San Jose CCD, CA +station = ('ksjc', 0.00078134431891687382) +zone = ('caz513', 0.0024661466757504428) + +[fips0608593175] +centroid = (0.64667475187312873, -2.121881716824201) +description = South Santa Clara Valley CCD, CA +station = ('ke16', 0.00060399441178203529) +zone = ('caz513', 0.0042597014033185889) + +[fips0608593660] +centroid = (0.65113815218242388, -2.1312552344648394) +description = West Santa Clara CCD, CA +station = ('knuq', 0.002358742839751102) +zone = ('caz512', 0.0025572819113162731) + +[fips0608680] +centroid = (0.67113358657106703, -2.1037407820322644) +description = Buckhorn CDP, CA +station = ('kpvf', 0.0055010965576786268) +zone = ('caz067', 0.0043169999920977756) + +[fips06087] +centroid = (0.64598977995489093, -2.1294274384056884) +description = Santa Cruz County, CA +station = ('kwvi', 0.0034136577953959185) +zone = ('caz529', 0.0016201187152629398) + +[fips0608716] +centroid = (0.659954543272533, -2.0955348547546255) +description = Buck Meadows CDP, CA +station = ('ko22', 0.0061842001356161476) +zone = ('caz093', 0.010826044398650706) + +[fips0608744] +centroid = (0.69602962624662978, -2.1153230138413015) +description = Bucks Lake CDP, CA +station = ('kove', 0.0086797880631421988) +zone = ('caz068', 0.0058980782425675964) + +[fips0608758] +centroid = (0.6041544123175121, -2.0977851775723919) +description = Buellton city, CA +station = ('kiza', 0.0017113233454360143) +zone = ('caz036', 0.0020039438078658929) + +[fips0608786] +centroid = (0.59091195351080783, -2.0595691864713359) +description = Buena Park city, CA +station = ('kful', 0.00035367206415539689) +zone = ('caz548', 0.0036738677060331008) + +[fips0608792850] +centroid = (0.64864587437045351, -2.1309238662530556) +description = San Lorenzo Valley CCD, CA +station = ('ksjc', 0.0042923352479023423) +zone = ('caz512', 0.00074922827623517211) + +[fips0608792900] +centroid = (0.64526393242557156, -2.1288569251797966) +description = Santa Cruz CCD, CA +station = ('kwvi', 0.0027459767763817239) +zone = ('caz529', 0.0010354662951065823) + +[fips0608793265] +centroid = (0.64734265447128181, -2.1277583451354212) +description = Summit Road CCD, CA +station = ('kwvi', 0.0032666588410577382) +zone = ('caz529', 0.0020009028301036132) + +[fips0608793590] +centroid = (0.6446439740219706, -2.1258413802047857) +description = Watsonville CCD, CA +station = ('kwvi', 0.00025924493444917684) +zone = ('caz529', 0.0015467763382413524) + +[fips0608793665] +centroid = (0.64668866214726706, -2.1329910516724104) +description = West Santa Cruz CCD, CA +station = ('ksjc', 0.0068441672313868593) +zone = ('caz512', 0.003175135795536146) + +[fips0608828] +centroid = (0.66841651035143979, -2.1104163173552921) +description = Buena Vista CDP, CA +station = ('kmhr', 0.0068351865711594219) +zone = ('caz067', 0.0059695423913747672) + +[fips06089] +centroid = (0.71140531373158411, -2.1300617783223257) +description = Shasta County, CA +station = ('krdd', 0.0055464015611615264) +zone = ('caz013', 0.0038025665418819805) + +[fips0608954] +centroid = (0.59671037361824608, -2.0651584986810927) +description = Burbank city, CA +station = ('kbur', 0.00063332210411853711) +zone = ('caz547', 0.0022539514377022574) + +[fips0608968] +centroid = (0.65137560422715768, -2.1280879331113676) +description = Burbank CDP, CA +station = ('ksjc', 0.0008184420936744373) +zone = ('caz513', 0.0025626650349410709) + +[fips0608990450] +centroid = (0.71100144454267256, -2.1278723849487466) +description = Central Shasta CCD, CA +station = ('krdd', 0.0063699806395720931) +zone = ('caz013', 0.0052613453309664632) + +[fips0608990820] +centroid = (0.71385378377932951, -2.1213229322108824) +description = East Shasta CCD, CA +station = ('kmhs', 0.012499140339923866) +zone = ('caz014', 0.001021689223565335) + +[fips0608992568] +centroid = (0.70786840400241768, -2.1353013963631526) +description = Redding CCD, CA +station = ('krdd', 0.0012894780980128443) +zone = ('caz015', 0.0059361083404270414) + +[fips0608992700] +centroid = (0.71535157298351337, -2.1357008673223494) +description = Sacramento Canyon CCD, CA +station = ('ko86', 0.0043098288714539662) +zone = ('caz013', 0.0021167308341939819) + +[fips0608993210] +centroid = (0.70734107022222015, -2.1406132012218424) +description = Southwest Shasta CCD, CA +station = ('ko54', 0.0052788199542536151) +zone = ('caz004', 0.0068995097551566402) + +[fips0609066] +centroid = (0.65606842806662746, -2.1356432190971559) +description = Burlingame city, CA +station = ('ksfo', 0.00046851838378872374) +zone = ('caz508', 0.0027438204883325715) + +[fips06091] +centroid = (0.69074764906485686, -2.1035055989155582) +description = Sierra County, CA +station = ('kblu', 0.0056582093105232538) +zone = ('nvz002', 0.010338314283997603) + +[fips0609122] +centroid = (0.71365401339314616, -2.1236374831451221) +description = Burney CDP, CA +station = ('krdd', 0.010530178785667251) +zone = ('caz014', 0.0026369886954911749) + +[fips0609150] +centroid = (0.71229216788439997, -2.1556258078625041) +description = Burnt Ranch CDP, CA +station = ('kfot', 0.0094062788366500762) +zone = ('caz003', 0.0034650519988157816) + +[fips0609190830] +centroid = (0.69074026632212082, -2.0990273458543283) +description = East Sierra CCD, CA +station = ('ktrk', 0.0048718255879054559) +zone = ('nvz002', 0.0078798092645551866) + +[fips0609193680] +centroid = (0.69082219207720941, -2.1079066735172649) +description = West Sierra CCD, CA +station = ('kblu', 0.0052939240447594932) +zone = ('caz068', 0.013230232813802794) + +[fips06093] +centroid = (0.72584728497330653, -2.1386093014411651) +description = Siskiyou County, CA +station = ('ksiy', 0.0032372312092104985) +zone = ('caz081', 0.0026158671666030426) + +[fips0609310] +centroid = (0.69366767216990599, -2.1241935450448075) +description = Butte Creek Canyon CDP, CA +station = ('kcic', 0.0021472123040137698) +zone = ('caz066', 0.0064473798528653769) + +[fips0609318] +centroid = (0.69961915765274396, -2.1213103832935607) +description = Butte Meadows CDP, CA +station = ('kcic', 0.006461659082668633) +zone = ('caz068', 0.0032213675992388193) + +[fips0609324] +centroid = (0.69236251495526457, -2.1231205340739741) +description = Butte Valley CDP, CA +station = ('kove', 0.002983390718317261) +zone = ('caz016', 0.0063549688705646099) + +[fips0609332] +centroid = (0.61800763164265926, -2.0846329173814304) +description = Buttonwillow CDP, CA +station = ('kbfl', 0.0055723348488500319) +zone = ('caz092', 0.0074103030241904457) + +[fips0609346] +centroid = (0.66105247754508512, -2.1230503543847514) +description = Byron CDP, CA +station = ('klvk', 0.0038987106894014523) +zone = ('caz510', 0.0032835959495107142) + +[fips0609353] +centroid = (0.65658193883914928, -2.1115219310765534) +description = Bystrom CDP, CA +station = ('kmod', 0.0004352170814604765) +zone = ('caz019', 0.0025577974795976742) + +[fips0609360] +centroid = (0.59188469531611443, -2.0382201794346013) +description = Cabazon CDP, CA +station = ('kpsp', 0.0043056753311607994) +zone = ('caz056', 0.0048402961689530365) + +[fips0609390290] +centroid = (0.73058082734422536, -2.1281612718465364) +description = Butte Valley CCD, CA +station = ('klmt', 0.0058097646389852469) +zone = ('caz084', 0.003868691148996586) + +[fips0609390740] +centroid = (0.71929722137020435, -2.1361445474714986) +description = Dunsmuir CCD, CA +station = ('kmhs', 0.0020667454428998124) +zone = ('caz082', 0.0029030504072829104) + +[fips0609390920] +centroid = (0.72130188909575266, -2.146947681755738) +description = Etna CCD, CA +station = ('ko86', 0.0073214740677822856) +zone = ('caz080', 0.0044648908249838894) + +[fips0609391040] +centroid = (0.72779763805253261, -2.1451973608620829) +description = Fort Jones CCD, CA +station = ('ksiy', 0.0059008433822364996) +zone = ('caz080', 0.0041472111543948715) + +[fips0609391240] +centroid = (0.7286349248545918, -2.1520631370735783) +description = Happy Camp CCD, CA +station = ('ksiy', 0.01090856380048244) +zone = ('caz080', 0.0038087664483304464) + +[fips0609391340] +centroid = (0.73210711777509441, -2.1403811771510823) +description = Hornbrook-Hilt CCD, CA +station = ('ksiy', 0.0038268865225753071) +zone = ('caz081', 0.0037895058086757751) + +[fips0609391800] +centroid = (0.72276882087876138, -2.1262658093722857) +description = McCloud-Medicine Lake CCD, CA +station = ('kmhs', 0.0066367175386849676) +zone = ('caz083', 0.0024642733413327606) + +[fips0609392010] +centroid = (0.72927816595041428, -2.1344113657110979) +description = Montague CCD, CA +station = ('ksiy', 0.0022849675210143993) +zone = ('caz081', 0.0036193264182836256) + +[fips0609392050] +centroid = (0.72159194536414151, -2.1351183636844961) +description = Mount Shasta CCD, CA +station = ('kmhs', 0.00052709517271352089) +zone = ('caz082', 0.0023360422685163177) + +[fips0609393450] +centroid = (0.72987922243821612, -2.1229103091655714) +description = Tulelake CCD, CA +station = ('klmt', 0.0058762339775092626) +zone = ('caz084', 0.00078484339032302783) + +[fips0609393600] +centroid = (0.72396409216369706, -2.1367568089730984) +description = Weed CCD, CA +station = ('kmhs', 0.0031980217398278905) +zone = ('caz081', 0.0048092309985187636) + +[fips0609393810] +centroid = (0.72711926347886746, -2.1410751724215529) +description = Yreka CCD, CA +station = ('ksiy', 0.0032782367049792676) +zone = ('caz081', 0.0019593338603603279) + +[fips06095] +centroid = (0.66788908930477964, -2.1282474038451222) +description = Solano County, CA +station = ('ksuu', 0.00014292895865107458) +zone = ('caz018', 0.0032554883473857586) + +[fips0609590700] +centroid = (0.67071119943879187, -2.1258043966779359) +description = Dixon CCD, CA +station = ('kedu', 0.0017690509300226198) +zone = ('caz017', 0.0047338761315855694) + +[fips0609590950] +centroid = (0.66684323565710713, -2.1298194742622711) +description = Fairfield-Suisun City CCD, CA +station = ('ksuu', 0.0015054089625866228) +zone = ('caz018', 0.0038352114530238296) + +[fips0609592610] +centroid = (0.66680349451003906, -2.1253153554215269) +description = Rio Vista CCD, CA +station = ('ksuu', 0.0026718571730681945) +zone = ('caz018', 0.0010865856950006761) + +[fips0609593520] +centroid = (0.67037607876911642, -2.1293026648174633) +description = Vacaville CCD, CA +station = ('kvcb', 0.00082517052442479077) +zone = ('caz018', 0.0056788779597391394) + +[fips0609593530] +centroid = (0.66501896516304504, -2.1331105194597093) +description = Vallejo CCD, CA +station = ('kapc', 0.0019177000212057603) +zone = ('caz510', 0.0060588079333844412) + +[fips0609598] +centroid = (0.59574733584358064, -2.0711634785055044) +description = Calabasas city, CA +station = ('kvny', 0.0030451698652522678) +zone = ('caz046', 0.00092181060194864036) + +[fips06097] +centroid = (0.67252028556836141, -2.1457984348031776) +description = Sonoma County, CA +station = ('ksts', 0.0018449491742349689) +zone = ('caz507', 0.003446308717921215) + +[fips0609710] +centroid = (0.57044901522872549, -2.0157606717547001) +description = Calexico city, CA +station = ('kipl', 0.0028915389040489424) +zone = ('caz033', 0.006256467481260867) + +[fips0609780] +centroid = (0.61356306343599298, -2.0570250549272888) +description = California City city, CA +station = ('k9l2', 0.0029913884266968287) +zone = ('caz099', 0.0028306224055255277) + +[fips0609790510] +centroid = (0.67609526092851402, -2.1445920283176139) +description = Cloverdale-Geyserville CCD, CA +station = ('ksts', 0.0042219446065443035) +zone = ('caz507', 0.0040858989819031293) + +[fips0609791270] +centroid = (0.67366970705384743, -2.1448600934374276) +description = Healdsburg CCD, CA +station = ('ksts', 0.0019981952648129653) +zone = ('caz507', 0.0028169971769060002) + +[fips0609792460] +centroid = (0.6676544996000191, -2.1404312157407368) +description = Petaluma CCD, CA +station = ('ko69', 0.0005205823809058712) +zone = ('caz506', 0.0020256702419120254) + +[fips0609792682] +centroid = (0.67315137917259016, -2.1500805128564831) +description = Russian River-Sonoma Coast CCD, CA +station = ('ksts', 0.0052433862855898817) +zone = ('caz505', 0.0066395712332150084) + +[fips0609792940] +centroid = (0.67133318242432494, -2.1412050772777786) +description = Santa Rosa CCD, CA +station = ('ksts', 0.0019408970413359377) +zone = ('caz507', 0.0015260826764709981) + +[fips0609792980] +centroid = (0.6694197430587786, -2.1441408956125581) +description = Sebastopol CCD, CA +station = ('ksts', 0.0025732545506299159) +zone = ('caz505', 0.0025123185355036123) + +[fips0609793070] +centroid = (0.66798443664181606, -2.13742338512102) +description = Sonoma CCD, CA +station = ('ko69', 0.0018874337901304123) +zone = ('caz506', 0.0029525691866234128) + +[fips0609822] +centroid = (0.62633430079795127, -2.0709390466169904) +description = California Hot Springs CDP, CA +station = ('kptv', 0.0063428328066366521) +zone = ('caz097', 0.0069278420353083387) + +[fips0609834] +centroid = (0.72282221050057982, -2.1060314045024593) +description = California Pines CDP, CA +station = ('kaat', 0.0017746585322645783) +zone = ('caz085', 0.0028235438991906451) + +[fips0609864] +centroid = (0.59319084736842942, -2.0429811932879463) +description = Calimesa city, CA +station = ('ksbd', 0.0032524096412898319) +zone = ('caz048', 0.0036329369911809579) + +[fips0609878] +centroid = (0.57890485620195775, -2.0156058785033406) +description = Calipatria city, CA +station = ('kipl', 0.0059967509793468201) +zone = ('caz033', 0.002221428227359306) + +[fips0609892] +centroid = (0.67337259965528051, -2.139471651171283) +description = Calistoga city, CA +station = ('ksts', 0.0034957873597343614) +zone = ('caz507', 0.001604809338768716) + +[fips06099] +centroid = (0.65558727569843778, -2.1118947508580717) +description = Stanislaus County, CA +station = ('kmod', 0.001194952403032446) +zone = ('caz019', 0.0034567290091938063) + +[fips0609948] +centroid = (0.61170243773361188, -2.1044468026212813) +description = Callender CDP, CA +station = ('ksmx', 0.0030184096055797405) +zone = ('caz034', 0.0054075567704814287) + +[fips0609990] +centroid = (0.68476380517768676, -2.1501198351245301) +description = Calpella CDP, CA +station = ('kuki', 0.0017609931487035714) +zone = ('caz002', 0.0052700314518347308) + +[fips0609991350] +centroid = (0.65635944426610504, -2.1061178506603109) +description = Hughson CCD, CA +station = ('kmod', 0.0038522317945602668) +zone = ('caz019', 0.0057458605960906814) + +[fips0609991980] +centroid = (0.65715550639123221, -2.1113088089215921) +description = Modesto CCD, CA +station = ('kmod', 0.0006745314641424246) +zone = ('caz019', 0.0020976153936272017) + +[fips0609992120] +centroid = (0.65146081120124011, -2.1152235649805231) +description = Newman CCD, CA +station = ('kmod', 0.0060917974053166114) +zone = ('caz019', 0.0078316076848493812) + +[fips0609992210] +centroid = (0.66062115432703972, -2.1081675304272678) +description = Oakdale CCD, CA +station = ('kmod', 0.0046509786258449289) +zone = ('caz019', 0.0038320022050933947) + +[fips0609992420] +centroid = (0.65447578021759767, -2.1170580805572943) +description = Patterson CCD, CA +station = ('kmod', 0.0052429054424224554) +zone = ('caz019', 0.0057589530260572239) + +[fips0609992720] +centroid = (0.65745462091843898, -2.1138431840751206) +description = Salida CCD, CA +station = ('kmod', 0.002449821702290543) +zone = ('caz019', 0.0018498720096735664) + +[fips0609993460] +centroid = (0.65447312731713458, -2.1094745551442089) +description = Turlock CCD, CA +station = ('kmod', 0.002380384156830128) +zone = ('caz019', 0.0051485893110334892) + +[fips0609993580] +centroid = (0.65746268433958321, -2.1064240861308656) +description = Waterford CCD, CA +station = ('kmod', 0.0037216758540582033) +zone = ('caz019', 0.0050955454675198006) + +[fips0609993650] +centroid = (0.65527035881286066, -2.1128500393708585) +description = Westport CCD, CA +station = ('kmod', 0.0019506142091525859) +zone = ('caz019', 0.0037396701096272709) + +[fips0610004] +centroid = (0.69224245375601989, -2.102137871647233) +description = Calpine CDP, CA +station = ('ktrk', 0.0073427050491508055) +zone = ('nvz002', 0.010570241944792627) + +[fips0610031] +centroid = (0.64077546918821771, -2.0902279368178411) +description = Calwa CDP, CA +station = ('kfat', 0.0013653946743768634) +zone = ('caz090', 0.0076990497319998109) + +[fips0610042] +centroid = (0.66748970561204579, -2.111043885394432) +description = Camanche North Shore CDP, CA +station = ('ksck', 0.0071315644353896228) +zone = ('caz067', 0.007009979966663543) + +[fips0610044] +centroid = (0.66787608660185227, -2.1116140844610585) +description = Camanche Village CDP, CA +station = ('kmhr', 0.0065467884161241677) +zone = ('caz067', 0.0068321819658137377) + +[fips0610046] +centroid = (0.59728348738472348, -2.0775030030409387) +description = Camarillo city, CA +station = ('kcma', 0.00074408166998559257) +zone = ('caz040', 0.0012896238179562498) + +[fips0610074] +centroid = (0.6205078332494337, -2.1133236693699717) +description = Cambria CDP, CA +station = ('kprb', 0.006705259765684827) +zone = ('caz034', 0.006276170058070964) + +[fips0610088] +centroid = (0.65024464832515783, -2.1280608106947918) +description = Cambrian Park CDP, CA +station = ('ksjc', 0.0019341883642595495) +zone = ('caz512', 0.0021253772981758672) + +[fips06101] +centroid = (0.68129375901216416, -2.1241138358578691) +description = Sutter County, CA +station = ('kmyv', 0.0021628029755566625) +zone = ('caz016', 0.0066757955167889528) + +[fips0610191650] +centroid = (0.68524745336670689, -2.1237699012754709) +description = Live Oak CCD, CA +station = ('kmyv', 0.0032330578447120643) +zone = ('caz016', 0.0038421790349188962) + +[fips0610191970] +centroid = (0.6802528271929823, -2.125105689018485) +description = Meridian-Robbins CCD, CA +station = ('kmyv', 0.0033989363626356376) +zone = ('caz017', 0.006652057119816656) + +[fips0610193180] +centroid = (0.67814462653620577, -2.1211574051846234) +description = South Sutter CCD, CA +station = ('klhm', 0.0026709137894852858) +zone = ('caz017', 0.0039994990752712598) + +[fips0610193290] +centroid = (0.68453609207017907, -2.1265085846712379) +description = Sutter CCD, CA +station = ('kmyv', 0.0042592632323801881) +zone = ('caz016', 0.0029502073446859181) + +[fips0610193820] +centroid = (0.68287581271263453, -2.123153136824401) +description = Yuba City CCD, CA +station = ('kmyv', 0.0011870071839428695) +zone = ('caz016', 0.0057672199050945458) + +[fips0610193825] +centroid = (0.68127574721428352, -2.12342539073442) +description = Yuba City Southwest CCD, CA +station = ('kmyv', 0.0017415641544433771) +zone = ('caz016', 0.0069488861508604262) + +[fips0610256] +centroid = (0.67498479519193266, -2.1116425507811587) +description = Cameron Park CDP, CA +station = ('kpvf', 0.0033435366387777692) +zone = ('caz067', 0.0031258383584469715) + +[fips0610270] +centroid = (0.67616085040180396, -2.1062909175089382) +description = Camino CDP, CA +station = ('kpvf', 0.0010021106035984491) +zone = ('caz067', 0.0024445738541009842) + +[fips06103] +centroid = (0.70033353836887779, -2.1333556684064443) +description = Tehama County, CA +station = ('krbl', 0.00047865809421734657) +zone = ('caz015', 0.001835412441542208) + +[fips0610301] +centroid = (0.6595767667559389, -2.1272941922741455) +description = Camino Tassajara CDP, CA +station = ('klvk', 0.0018464627945548758) +zone = ('caz510', 0.0015606396288501019) + +[fips0610345] +centroid = (0.65066279430735063, -2.1285049795361317) +description = Campbell city, CA +station = ('ksjc', 0.001596671250962565) +zone = ('caz512', 0.0022238752789212127) + +[fips0610390580] +centroid = (0.69617968965571631, -2.1322981035994912) +description = Corning CCD, CA +station = ('krbl', 0.0046883653413731727) +zone = ('caz015', 0.0060177628457935726) + +[fips0610390840] +centroid = (0.70152289298764936, -2.12679700033013) +description = East Tehama CCD, CA +station = ('krbl', 0.0053045619701416096) +zone = ('caz066', 0.0019631843552837713) + +[fips0610392560] +centroid = (0.70172405963723417, -2.1339505115221091) +description = Red Bluff CCD, CA +station = ('krbl', 0.00099848393609906468) +zone = ('caz015', 0.00045187402994754488) + +[fips0610393690] +centroid = (0.69914385213754837, -2.1406421736874255) +description = West Tehama CCD, CA +station = ('krbl', 0.005573032198339406) +zone = ('caz063', 0.0044337631479704973) + +[fips0610494] +centroid = (0.63079651428335515, -2.0701474176281636) +description = Camp Nelson CDP, CA +station = ('kptv', 0.0067046700807157338) +zone = ('caz097', 0.0028133160301897836) + +[fips06105] +centroid = (0.70943661724191953, -2.1487517064304766) +description = Trinity County, CA +station = ('ko54', 0.0030793987045127512) +zone = ('caz004', 0.001066929076154112) + +[fips0610508] +centroid = (0.56969299095663928, -2.032864305012299) +description = Campo CDP, CA +station = ('kczz', 0.00027549802881101672) +zone = ('caz058', 0.0075578320126285488) + +[fips0610559] +centroid = (0.58153335696204622, -2.0476101206235007) +description = Camp Pendleton North CDP, CA +station = ('knfg', 0.00056009397681362706) +zone = ('caz057', 0.005696962751849631) + +[fips0610561] +centroid = (0.57994184357703027, -2.0486814560782527) +description = Camp Pendleton South CDP, CA +station = ('kokb', 0.00049284945786666034) +zone = ('caz043', 0.0048440747463413076) + +[fips0610591250] +centroid = (0.70747963191153596, -2.1513684262181143) +description = Hayfork CCD, CA +station = ('ko54', 0.005845501391400919) +zone = ('caz004', 0.0036420056594243396) + +[fips0610591860] +centroid = (0.69934648486370499, -2.1504366996502298) +description = Mad River CCD, CA +station = ('ko54', 0.012433560202338854) +zone = ('caz063', 0.0075058699902140098) + +[fips0610592202] +centroid = (0.71249239205618875, -2.1510154682834837) +description = Northwest Trinity CCD, CA +station = ('ko54', 0.004453595421403311) +zone = ('caz004', 0.0026561734597540018) + +[fips0610593595] +centroid = (0.71467152289376634, -2.1434797125320255) +description = Weaverville CCD, CA +station = ('ko86', 0.0016789645798163471) +zone = ('caz004', 0.0057390550719915601) + +[fips0610676] +centroid = (0.68857075224872188, -2.112701232598833) +description = Camptonville CDP, CA +station = ('kgoo', 0.0040299851542524839) +zone = ('caz016', 0.011900992369226886) + +[fips06107] +centroid = (0.63234069433905704, -2.0731115452034103) +description = Tulare County, CA +station = ('kptv', 0.0053013059882156431) +zone = ('caz094', 0.0018946932708017198) + +[fips0610732] +centroid = (0.72347794815384658, -2.1098987050590283) +description = Canby CDP, CA +station = ('kaat', 0.004241157593497958) +zone = ('caz085', 0.0025471886778198941) + +[fips0610790690] +centroid = (0.63698834905748536, -2.0845589677810237) +description = Dinuba CCD, CA +station = ('kvis', 0.0031843310552693307) +zone = ('caz094', 0.0084727673131620006) + +[fips0610790760] +centroid = (0.62584110565792284, -2.0822800390168168) +description = Earlimart CCD, CA +station = ('kptv', 0.0045586306616730828) +zone = ('caz092', 0.0021832856551129939) + +[fips0610790940] +centroid = (0.63369138719388307, -2.0794968148185391) +description = Exeter CCD, CA +station = ('kvis', 0.0035700524187978694) +zone = ('caz094', 0.0034280667820092538) + +[fips0610791420] +centroid = (0.63565271839410409, -2.0806218715076672) +description = Ivanhoe CCD, CA +station = ('kvis', 0.0032144362846719507) +zone = ('caz094', 0.0050702226370507907) + +[fips0610791640] +centroid = (0.63189755524197577, -2.0791296324505049) +description = Lindsay CCD, CA +station = ('kptv', 0.0031093538239473965) +zone = ('caz094', 0.0031779347030828917) + +[fips0610792290] +centroid = (0.6382127324343444, -2.0814509901688272) +description = Orosi-Cutler CCD, CA +station = ('kvis', 0.0047988115811049142) +zone = ('caz094', 0.0072550402048491948) + +[fips0610792480] +centroid = (0.62770393047516126, -2.0820355183886128) +description = Pixley CCD, CA +station = ('kptv', 0.003397229722476745) +zone = ('caz092', 0.0035627484753835833) + +[fips0610792520] +centroid = (0.62929181357533326, -2.077136431538142) +description = Porterville CCD, CA +station = ('kptv', 0.00087581589999471564) +zone = ('caz094', 0.0038368549449303941) + +[fips0610793220] +centroid = (0.63133405823967692, -2.06807705570957) +description = Springville-Johnsondale CCD, CA +station = ('kptv', 0.0084600623480526604) +zone = ('caz097', 0.001432877920535032) + +[fips0610793260] +centroid = (0.63063721808252571, -2.0788957583307375) +description = Strathmore CCD, CA +station = ('kptv', 0.0018506445593897093) +zone = ('caz094', 0.0036055376198087627) + +[fips0610793330] +centroid = (0.62623733030471052, -2.07670797066007) +description = Terra Bella CCD, CA +station = ('kptv', 0.0028932502941261054) +zone = ('caz092', 0.0033226616610055278) + +[fips0610793360] +centroid = (0.62930624744824726, -2.0828216146837106) +description = Tipton CCD, CA +station = ('kvis', 0.0046254010118078233) +zone = ('caz092', 0.005284648720218478) + +[fips0610793430] +centroid = (0.63148822317250553, -2.0837128321596565) +description = Tulare CCD, CA +station = ('kvis', 0.0023632765012895486) +zone = ('caz094', 0.0068656627260579783) + +[fips0610793560] +centroid = (0.63457284827931015, -2.0829945593592907) +description = Visalia CCD, CA +station = ('kvis', 0.0010433951419562746) +zone = ('caz094', 0.0063777077449493867) + +[fips0610793780] +centroid = (0.63745351420972685, -2.074090221128174) +description = Woodlake-Three Rivers CCD, CA +station = ('kvis', 0.0086962190711276591) +zone = ('caz094', 0.004713333411239507) + +[fips0610816] +centroid = (0.63704596237609368, -2.0999166609213895) +description = Cantua Creek CDP, CA +station = ('knlc', 0.0059112540085320573) +zone = ('caz089', 0.0033532088114243378) + +[fips06109] +centroid = (0.66359950633569054, -2.0937791407935817) +description = Tuolumne County, CA +station = ('ko22', 0.0062613794521644709) +zone = ('caz093', 0.013748116990876802) + +[fips0610914] +centroid = (0.70109769587527848, -2.113189488457079) +description = Canyondam CDP, CA +station = ('kcic', 0.012189769712513952) +zone = ('caz068', 0.0036743674010717852) + +[fips0610928] +centroid = (0.58797178930619076, -2.0466349877171193) +description = Canyon Lake city, CA +station = ('kriv', 0.0037000481254001014) +zone = ('caz048', 0.0028164524593425927) + +[fips0610990835] +centroid = (0.66237041056985102, -2.1000398637132878) +description = East Sonora-Phoenix Lake CCD, CA +station = ('ko22', 0.0019142951723919611) +zone = ('caz019', 0.010446222702992863) + +[fips0610991190] +centroid = (0.65947255314630226, -2.0998545272000189) +description = Groveland CCD, CA +station = ('ko22', 0.0045237917578287833) +zone = ('caz093', 0.012392874476547236) + +[fips0610993080] +centroid = (0.66131684256688472, -2.102516625548208) +description = Sonora CCD, CA +station = ('ko22', 0.0025105940341897202) +zone = ('caz019', 0.0082667054466420992) + +[fips0610993470] +centroid = (0.6639345222856109, -2.0915549804613027) +description = Twain Harte-Tuolumne City CCD, CA +station = ('kban', 0.0069635509962014544) +zone = ('caz093', 0.013737882196615816) + +[fips0611040] +centroid = (0.64535552730471624, -2.1284992199496) +description = Capitola city, CA +station = ('kwvi', 0.0024951379453384296) +zone = ('caz529', 0.00074631059497291927) + +[fips06111] +centroid = (0.59967317474326154, -2.079265593599235) +description = Ventura County, CA +station = ('kcma', 0.0025816142825543509) +zone = ('caz044', 0.00064635301795210021) + +[fips0611166] +centroid = (0.6994100497550626, -2.1147398818849177) +description = Caribou CDP, CA +station = ('kove', 0.011691226643038463) +zone = ('caz068', 0.0032755371628387223) + +[fips0611190350] +centroid = (0.59679229937333467, -2.0779554971028107) +description = Camarillo CCD, CA +station = ('kcma', 0.00054205917113836401) +zone = ('caz040', 0.0010084692426727364) + +[fips0611190988] +centroid = (0.60056852864953458, -2.0742877051330368) +description = Fillmore CCD, CA +station = ('kcma', 0.0047861086810451307) +zone = ('caz045', 0.0027293927502272447) + +[fips0611191560] +centroid = (0.59860653422419774, -2.0771970991829414) +description = Las Posas CCD, CA +station = ('kcma', 0.0017259809606051824) +zone = ('caz040', 0.0020733911852700709) + +[fips0611191770] +centroid = (0.60463699585568853, -2.0792947580510357) +description = Los Padres CCD, CA +station = ('ksdb', 0.0062834214325479922) +zone = ('caz053', 0.00024347316546255112) + +[fips0611192020] +centroid = (0.59883946586616887, -2.0743159969202116) +description = Moorpark CCD, CA +station = ('kcma', 0.0037524072268226251) +zone = ('caz045', 0.001007535757415523) + +[fips0611192245] +centroid = (0.60120681301028145, -2.0807165905261731) +description = Ojai-Mira Monte CCD, CA +station = ('koxr', 0.0043106000700762733) +zone = ('caz044', 0.0016641753395953195) + +[fips0611192310] +centroid = (0.59567200743306448, -2.0791193873677951) +description = Oxnard CCD, CA +station = ('kntd', 0.00025258776921628157) +zone = ('caz040', 0.0015472649345409731) + +[fips0611192930] +centroid = (0.59971675561468385, -2.0784237340345353) +description = Santa Paula CCD, CA +station = ('kcma', 0.002523365390250127) +zone = ('caz044', 0.00076259976620676783) + +[fips0611193020] +centroid = (0.59828764511656585, -2.0721846008376761) +description = Simi Valley CCD, CA +station = ('kvny', 0.0036876822830246994) +zone = ('caz045', 0.0016824308782590054) + +[fips0611193350] +centroid = (0.59693087851594295, -2.0745196942972117) +description = Thousand Oaks CCD, CA +station = ('kcma', 0.0032166144672481382) +zone = ('caz045', 0.00096129000437657089) + +[fips0611193422] +centroid = (0.59496408443516313, -2.0765500009094722) +description = Triunfo Pass-Point Mugu CCD, CA +station = ('kntd', 0.002067942174314111) +zone = ('caz040', 0.0030657840028080478) + +[fips0611193550] +centroid = (0.59897158729054489, -2.082312065808591) +description = Ventura CCD, CA +station = ('koxr', 0.0025872772794777476) +zone = ('caz044', 0.0030113391582806408) + +[fips0611194] +centroid = (0.57812127318098239, -2.0469716268232436) +description = Carlsbad city, CA +station = ('kcrq', 0.00016464683516752404) +zone = ('caz043', 0.0026294484345290438) + +[fips0611250] +centroid = (0.63796924155039869, -2.1279384107543495) +description = Carmel-by-the-Sea city, CA +station = ('kmry', 0.0011387748825174009) +zone = ('caz530', 0.0025683563387729142) + +[fips06113] +centroid = (0.67508057886128203, -2.127611824744716) +description = Yolo County, CA +station = ('kedu', 0.0030282079991166048) +zone = ('caz017', 0.0047328807977502557) + +[fips0611324] +centroid = (0.63707088567781212, -2.124627189550758) +description = Carmel Valley Village CDP, CA +station = ('kmry', 0.0021842929143808267) +zone = ('caz530', 0.0020366018792307605) + +[fips0611376] +centroid = (0.66976053604852304, -2.1480091735535085) +description = Carmet CDP, CA +station = ('ksts', 0.0041198040111656642) +zone = ('caz505', 0.0028979122467271742) + +[fips0611390] +centroid = (0.67430579229973675, -2.1175070839606622) +description = Carmichael CDP, CA +station = ('kmcc', 0.0011725200083797047) +zone = ('caz017', 0.0032518363766600548) + +[fips0611390500] +centroid = (0.6702032911731689, -2.1222571895061826) +description = Clarksburg CCD, CA +station = ('ksac', 0.0021892084350998843) +zone = ('caz017', 0.0039884760588899341) + +[fips0611390640] +centroid = (0.67293045539587271, -2.1240887903831029) +description = Davis CCD, CA +station = ('kedu', 0.0012932427584606266) +zone = ('caz017', 0.002260559318015342) + +[fips0611390850] +centroid = (0.6741849282490362, -2.1222032064724186) +description = East Yolo CCD, CA +station = ('ksmf', 0.0012608156882148952) +zone = ('caz017', 0.00042025810951433034) + +[fips0611390910] +centroid = (0.67778936476696239, -2.1315211353763805) +description = Esparto CCD, CA +station = ('kedu', 0.0070242776331946276) +zone = ('caz507', 0.0091648142723476135) + +[fips0611391500] +centroid = (0.67753002629340853, -2.126456050260753) +description = Knights Landing CCD, CA +station = ('ksmf', 0.0038416301316259059) +zone = ('caz017', 0.0050290161345954163) + +[fips0611393770] +centroid = (0.67332366062305449, -2.1297306719099298) +description = Winters CCD, CA +station = ('kvcb', 0.003557177512896241) +zone = ('caz017', 0.006358448482462596) + +[fips0611393790] +centroid = (0.67485684510446897, -2.125002103727379) +description = Woodland CCD, CA +station = ('kedu', 0.0024325475565251057) +zone = ('caz017', 0.0026959640499404081) + +[fips0611418] +centroid = (0.68479276018997737, -2.095730401444019) +description = Carnelian Bay CDP, CA +station = ('ktrk', 0.0016076941227135524) +zone = ('nvz002', 0.0022139113902474709) + +[fips0611446] +centroid = (0.60013654220637358, -2.085683431058206) +description = Carpinteria city, CA +station = ('ksba', 0.0050968577888126148) +zone = ('caz039', 0.0059312008834248326) + +[fips0611481] +centroid = (0.72338219939108228, -2.1356452087725031) +description = Carrick CDP, CA +station = ('kmhs', 0.0023515648628429624) +zone = ('caz082', 0.003868208906945351) + +[fips06115] +centroid = (0.68539125104377874, -2.117857214461905) +description = Yuba County, CA +station = ('kbab', 0.0026725329401075218) +zone = ('caz016', 0.008070570563437629) + +[fips0611530] +centroid = (0.59062582423323595, -2.063844405380681) +description = Carson city, CA +station = ('ktoa', 0.0014040677860601804) +zone = ('caz041', 0.0016991129749330059) + +[fips0611590855] +centroid = (0.68313799607286896, -2.1188473222932687) +description = East Yuba-Beale AFB CCD, CA +station = ('kbab', 0.00045720355883527747) +zone = ('caz016', 0.0081991321662359049) + +[fips0611591610] +centroid = (0.6825899103278652, -2.1217923036066213) +description = Linda CCD, CA +station = ('kmyv', 0.00017131982276567069) +zone = ('caz016', 0.0066996563767575158) + +[fips0611591900] +centroid = (0.68335546409766756, -2.1221139677877638) +description = Marysville CCD, CA +station = ('kmyv', 0.00097617117388868434) +zone = ('caz016', 0.0059991235435212179) + +[fips0611591908] +centroid = (0.68532428276037971, -2.1196216201626235) +description = Marysville Northeast CCD, CA +station = ('kbab', 0.0023244797229392666) +zone = ('caz016', 0.0067684726187176546) + +[fips0611592250] +centroid = (0.68105117569942941, -2.1215032596291987) +description = Olivehurst CCD, CA +station = ('kmyv', 0.0013846721720965503) +zone = ('caz017', 0.0068875014021251152) + +[fips0611593720] +centroid = (0.68139228284843933, -2.1194236125589847) +description = Wheatland CCD, CA +station = ('kbab', 0.0016132585467251762) +zone = ('caz017', 0.0074355009933771178) + +[fips0611593830] +centroid = (0.68857520283831442, -2.1149854671639661) +description = Yuba Foothills CCD, CA +station = ('kgoo', 0.0046455203439907319) +zone = ('caz016', 0.010149663651012613) + +[fips0611600] +centroid = (0.63364597372674614, -2.0599626534979056) +description = Cartago CDP, CA +station = ('kiyk', 0.011476446993792626) +zone = ('caz520', 0.0036370125660186601) + +[fips0611614] +centroid = (0.63774168552252364, -2.0916903132915023) +description = Caruthers CDP, CA +station = ('knlc', 0.0038950512245472203) +zone = ('caz089', 0.0093174789824608667) + +[fips0611656] +centroid = (0.59663412018322648, -2.0759706039576873) +description = Casa Conejo CDP, CA +station = ('kcma', 0.0020827135034166338) +zone = ('caz045', 0.0019314447228581245) + +[fips0611691] +centroid = (0.57183915252464657, -2.0414906297468658) +description = Casa de Oro-Mount Helix CDP, CA +station = ('ksee', 0.0010857305947248712) +zone = ('caz050', 0.004203333253953623) + +[fips0611754] +centroid = (0.60803063150655889, -2.1036640573583467) +description = Casmalia CDP, CA +station = ('ksmx', 0.0014272730232231135) +zone = ('caz035', 0.00251930656540754) + +[fips0611768] +centroid = (0.68701505301995669, -2.1607908130778086) +description = Caspar CDP, CA +station = ('kuki', 0.0090975049529368364) +zone = ('caz002', 0.0035741944202374669) + +[fips0611782] +centroid = (0.71425803694067636, -2.1214243707470084) +description = Cassel CDP, CA +station = ('kmhs', 0.012204027007395103) +zone = ('caz014', 0.00085902405566523263) + +[fips0611796] +centroid = (0.60179100961750909, -2.0705337811646776) +description = Castaic CDP, CA +station = ('ksdb', 0.0048623216971173068) +zone = ('caz088', 0.0011747173613474704) + +[fips0611915] +centroid = (0.66100790183598912, -2.130302337053128) +description = Castle Hill CDP, CA +station = ('kccr', 0.0022195104453962707) +zone = ('caz510', 0.0024450034226482856) + +[fips0611964] +centroid = (0.65815926269734659, -2.1303898478618231) +description = Castro Valley CDP, CA +station = ('khwd', 0.0010621849227600111) +zone = ('caz508', 0.0024713172023248411) + +[fips0611978] +centroid = (0.64167075328132073, -2.1249953842097589) +description = Castroville CDP, CA +station = ('ksns', 0.0027468413914312081) +zone = ('caz530', 0.0025926873772973763) + +[fips0612048] +centroid = (0.59054065216573859, -2.0326646044392858) +description = Cathedral City city, CA +station = ('kpsp', 0.00053623630248059466) +zone = ('caz061', 0.0028413600454326436) + +[fips0612062] +centroid = (0.65373434689805787, -2.095995394784349) +description = Catheys Valley CDP, CA +station = ('kmce', 0.0064172165042545365) +zone = ('caz093', 0.0063060929693569733) + +[fips0612132] +centroid = (0.6185063943830017, -2.1098515811692247) +description = Cayucos CDP, CA +station = ('ksbp', 0.0050631694937287343) +zone = ('caz034', 0.0028268278618283986) + +[fips0612146] +centroid = (0.67244370052078395, -2.1486384171087298) +description = Cazadero CDP, CA +station = ('ksts', 0.0040076863919109125) +zone = ('caz505', 0.0055092374568541215) + +[fips0612300] +centroid = (0.66437242539493624, -2.0991750181623399) +description = Cedar Ridge CDP, CA +station = ('ko22', 0.0021030971832687001) +zone = ('caz067', 0.01180665869131688) + +[fips0612314] +centroid = (0.63082412539212174, -2.0695613884252215) +description = Cedar Slope CDP, CA +station = ('kptv', 0.0071674613504543972) +zone = ('caz097', 0.0024668756543150495) + +[fips0612328] +centroid = (0.72481225236699631, -2.0974395325673267) +description = Cedarville CDP, CA +station = ('kaat', 0.0051874366071386381) +zone = ('caz070', 0.0018497753707973049) + +[fips0612412] +centroid = (0.64116694653944006, -2.0855983113505863) +description = Centerville CDP, CA +station = ('kfat', 0.0031937390502159162) +zone = ('caz093', 0.009617128278938486) + +[fips0612524] +centroid = (0.65618508587383073, -2.1110613735935368) +description = Ceres city, CA +station = ('kmod', 0.00035612399769641996) +zone = ('caz019', 0.0030587421366354271) + +[fips0612552] +centroid = (0.59110896627677301, -2.0606964248220292) +description = Cerritos city, CA +station = ('kful', 0.0012447286750423071) +zone = ('caz548', 0.0037158337460861286) + +[fips0612594] +centroid = (0.65435481144714192, -2.0662842535019217) +description = Chalfant CDP, CA +station = ('kbih', 0.0022059985573981609) +zone = ('caz521', 0.0097110371875384453) + +[fips0612612] +centroid = (0.68878560227964236, -2.116446098308375) +description = Challenge-Brownsville CDP, CA +station = ('kove', 0.0047985513530687833) +zone = ('caz016', 0.0090646725417006697) + +[fips0612669] +centroid = (0.5962235489299873, -2.0808736352522677) +description = Channel Islands Beach CDP, CA +station = ('koxr', 0.00077091846074611573) +zone = ('caz040', 0.0017997166685586054) + +[fips0612734] +centroid = (0.59520061145539338, -2.0569807410175809) +description = Charter Oak CDP, CA +station = ('kpoc', 0.0010556331423473308) +zone = ('caz548', 0.0018155495015103106) + +[fips0612818] +centroid = (0.69206359241427551, -2.1210862655643119) +description = Cherokee CDP, CA +station = ('kove', 0.0029067956090620233) +zone = ('caz016', 0.0071918930643047026) + +[fips0612860] +centroid = (0.61906072840672755, -2.0815062996528231) +description = Cherokee Strip CDP, CA +station = ('kbfl', 0.0030731583255485854) +zone = ('caz092', 0.005518977759477235) + +[fips0612902] +centroid = (0.65762538393245407, -2.1311127632379989) +description = Cherryland CDP, CA +station = ('khwd', 0.00028159228711382739) +zone = ('caz508', 0.0017134017106969039) + +[fips0612916] +centroid = (0.59305495603286906, -2.0415032833839426) +description = Cherry Valley CDP, CA +station = ('ksbd', 0.0043562711945176755) +zone = ('caz048', 0.0045505412136615997) + +[fips0612930] +centroid = (0.70339692281868571, -2.1159063377839029) +description = Chester CDP, CA +station = ('kcic', 0.012030076609909242) +zone = ('caz068', 0.0024052525198360532) + +[fips0613014] +centroid = (0.69385841920385638, -2.1261390984685908) +description = Chico city, CA +station = ('kcic', 0.00088751025062706597) +zone = ('caz066', 0.00627823818262773) + +[fips0613077] +centroid = (0.69475874729849774, -2.0968186491392222) +description = Chilcoot-Vinton CDP, CA +station = ('krts', 0.0042723959103789649) +zone = ('nvz003', 0.0094301421875392904) + +[fips0613157] +centroid = (0.62203567702333695, -2.0554124405116161) +description = China Lake Acres CDP, CA +station = ('kiyk', 0.001056313032625615) +zone = ('caz098', 0.00054583122993940366) + +[fips0613182] +centroid = (0.66095994018814441, -2.1021482912628673) +description = Chinese Camp CDP, CA +station = ('ko22', 0.0028086329754374285) +zone = ('caz019', 0.008457881328977658) + +[fips0613210] +centroid = (0.59301805977248201, -2.0535101537999902) +description = Chino city, CA +station = ('kcno', 0.00039661550706643345) +zone = ('caz548', 0.0048283888201867218) + +[fips0613214] +centroid = (0.59241361734593123, -2.0547013410144763) +description = Chino Hills city, CA +station = ('kcno', 0.0014007905428537683) +zone = ('caz548', 0.0041815481593053044) + +[fips0613294] +centroid = (0.6477471694320166, -2.0984153810587016) +description = Chowchilla city, CA +station = ('kmae', 0.0027646699434164122) +zone = ('caz090', 0.0019187493879308844) + +[fips0613364] +centroid = (0.63828633296890092, -2.1207547402728957) +description = Chualar CDP, CA +station = ('ksns', 0.0020881502479505208) +zone = ('caz528', 0.0018479946303827052) + +[fips0613392] +centroid = (0.56946026875417832, -2.0422999912808932) +description = Chula Vista city, CA +station = ('mmml', 0.00024390348884246118) +zone = ('caz050', 0.0066292722664763951) + +[fips0613560] +centroid = (0.59534493273124078, -2.0575989191853448) +description = Citrus CDP, CA +station = ('kpoc', 0.0015777477246428893) +zone = ('caz548', 0.0014231584542300688) + +[fips0613588] +centroid = (0.67535127942826634, -2.1168748209858346) +description = Citrus Heights city, CA +station = ('kmcc', 0.0016029986207857468) +zone = ('caz017', 0.0039247529682338439) + +[fips0613756] +centroid = (0.59559695827522874, -2.0544920760371621) +description = Claremont city, CA +station = ('kpoc', 0.0010977559843735932) +zone = ('caz548', 0.0038996777329056158) + +[fips0613784] +centroid = (0.67054385727011068, -2.1213014297544981) +description = Clarksburg CDP, CA +station = ('ksac', 0.0015184611579545251) +zone = ('caz017', 0.0036321905044485962) + +[fips0613854] +centroid = (0.6687061128342231, -2.1146337833196891) +description = Clay CDP, CA +station = ('kmhr', 0.0045437448261713611) +zone = ('caz067', 0.0075326076804483879) + +[fips0613882] +centroid = (0.66218310183452711, -2.1280817720991081) +description = Clayton city, CA +station = ('kccr', 0.001951185679831938) +zone = ('caz510', 0.0012532493632163287) + +[fips0613910] +centroid = (0.70349319518022579, -2.1128265472391266) +description = Clear Creek CDP, CA +station = ('kcic', 0.013815314345785548) +zone = ('caz068', 0.0043628675882628502) + +[fips0613945] +centroid = (0.67998179501344003, -2.1403544910668191) +description = Clearlake city, CA +station = ('ksts', 0.0084092675912545763) +zone = ('caz064', 0.00075865657221394563) + +[fips0613966] +centroid = (0.68108807195981658, -2.140816444813237) +description = Clearlake Oaks CDP, CA +station = ('ksts', 0.0093825753512902389) +zone = ('caz064', 0.00048015090665796625) + +[fips0613985] +centroid = (0.6798298815553464, -2.1419072057825637) +description = Clearlake Riviera CDP, CA +station = ('ksts', 0.0079823393487801243) +zone = ('caz064', 0.0011080824629417809) + +[fips0614008] +centroid = (0.68919313665998305, -2.1603001137586104) +description = Cleone CDP, CA +station = ('kuki', 0.0099400519858094775) +zone = ('caz002', 0.0048817498145488167) + +[fips0614106] +centroid = (0.69384042485926833, -2.1042867035689961) +description = Clio CDP, CA +station = ('kblu', 0.0084104943810236459) +zone = ('caz071', 0.012427277686494782) + +[fips0614148] +centroid = (0.68997096009442682, -2.1147552756889203) +description = Clipper Mills CDP, CA +station = ('kgoo', 0.0058167985746635327) +zone = ('caz016', 0.010590531738541208) + +[fips0614190] +centroid = (0.67715205779059662, -2.1470591733883557) +description = Cloverdale city, CA +station = ('ksts', 0.0058763703260745455) +zone = ('caz507', 0.0061592298437511458) + +[fips0614218] +centroid = (0.64278615829968522, -2.0889261480886563) +description = Clovis city, CA +station = ('kfat', 0.00089963998427326536) +zone = ('caz090', 0.0071421706612234256) + +[fips0614232] +centroid = (0.66366329811985092, -2.129789786211695) +description = Clyde CDP, CA +station = ('kccr', 0.0005327352109602509) +zone = ('caz510', 0.0032447718993442957) + +[fips0614260] +centroid = (0.58801922735526002, -2.0271143701514811) +description = Coachella city, CA +station = ('ktrm', 0.0011423504724725096) +zone = ('caz061', 0.0024533941959373699) + +[fips0614274] +centroid = (0.63064079600749223, -2.1003122572496467) +description = Coalinga city, CA +station = ('knlc', 0.0064972015719981175) +zone = ('caz089', 0.0088208200160773478) + +[fips0614288] +centroid = (0.65018111834038528, -2.0891583292390492) +description = Coarsegold CDP, CA +station = ('kmae', 0.0074649207341712792) +zone = ('caz093', 0.00018973639155835017) + +[fips0614302] +centroid = (0.67780435714523701, -2.1419105568147274) +description = Cobb CDP, CA +station = ('ksts', 0.0059918121521211837) +zone = ('caz064', 0.0029162397665905295) + +[fips0614406] +centroid = (0.71697554949261655, -2.1418140575603846) +description = Coffee Creek CDP, CA +station = ('ko86', 0.001718943694696393) +zone = ('caz082', 0.0077448266019521962) + +[fips0614442] +centroid = (0.6964337397816367, -2.1248479737011357) +description = Cohasset CDP, CA +station = ('kcic', 0.0022803261721116028) +zone = ('caz066', 0.0036508912912226548) + +[fips0614450] +centroid = (0.67625895535905856, -2.1096861588627207) +description = Cold Springs CDP, CA +station = ('kpvf', 0.0017794918866701325) +zone = ('caz067', 0.0026563971984222812) + +[fips0614454] +centroid = (0.66604094270655034, -2.0953293247819107) +description = Cold Springs CDP, CA +station = ('ko22', 0.0055310025862394764) +zone = ('caz069', 0.011543678557718049) + +[fips0614484] +centroid = (0.67340537693863289, -2.085946905962087) +description = Coleville CDP, CA +station = ('kban', 0.0040716204459733665) +zone = ('caz072', 0.008856322476466191) + +[fips0614498] +centroid = (0.68231519550360131, -2.1110320869686885) +description = Colfax city, CA +station = ('kgoo', 0.0023712456665008642) +zone = ('caz067', 0.008650038790570384) + +[fips0614554] +centroid = (0.68078841638054177, -2.1294208759677007) +description = College City CDP, CA +station = ('kmyv', 0.0061858351901911031) +zone = ('caz016', 0.0065512935059413536) + +[fips0614708] +centroid = (0.66694202129276992, -2.1164757514523664) +description = Collierville CDP, CA +station = ('ksck', 0.0054796834192394218) +zone = ('caz017', 0.0082887899779485082) + +[fips0614736] +centroid = (0.65758047661080032, -2.1372010825341934) +description = Colma town, CA +station = ('ksfo', 0.0015824056838542795) +zone = ('caz006', 0.001389842247790987) + +[fips0614764] +centroid = (0.6772334075870321, -2.1100094287467748) +description = Coloma CDP, CA +station = ('kpvf', 0.002440023088599651) +zone = ('caz067', 0.0036246645947406297) + +[fips0614890] +centroid = (0.59436407514491252, -2.0477080859544152) +description = Colton city, CA +station = ('ksbd', 0.0015447960123185092) +zone = ('caz048', 0.0037939238271667208) + +[fips0614904] +centroid = (0.66375318257632865, -2.1016496157889875) +description = Columbia CDP, CA +station = ('ko22', 5.9928176182517265e-05) +zone = ('caz019', 0.0098359710916612209) + +[fips0614946] +centroid = (0.68425441338219972, -2.1294688027089603) +description = Colusa city, CA +station = ('kove', 0.0073923699106187143) +zone = ('caz016', 0.0031992163794963857) + +[fips0614974] +centroid = (0.59331637144823279, -2.0621056909265518) +description = Commerce city, CA +station = ('kemt', 0.0022907037845840621) +zone = ('caz041', 0.0024672151369723129) + +[fips0615030] +centroid = (0.68530586953677119, -2.1570474483514235) +description = Comptche CDP, CA +station = ('kuki', 0.0057511623181718185) +zone = ('caz002', 0.00025500978145082852) + +[fips0615044] +centroid = (0.59153770640752545, -2.0634569422867384) +description = Compton city, CA +station = ('khhr', 0.0015912636062307306) +zone = ('caz041', 0.0012257425796903876) + +[fips0616000] +centroid = (0.66273954770664778, -2.1293293334484336) +description = Concord city, CA +station = ('kccr', 0.00082422428419223282) +zone = ('caz510', 0.0023170545400810561) + +[fips0616035] +centroid = (0.69412295875858121, -2.1208105384490819) +description = Concow CDP, CA +station = ('kove', 0.004917494451489487) +zone = ('caz066', 0.0067885121110604794) + +[fips0616210] +centroid = (0.66211988600901983, -2.1053506213744266) +description = Copperopolis CDP, CA +station = ('ko22', 0.0032889526672947298) +zone = ('caz019', 0.0064929492708719347) + +[fips0616224] +centroid = (0.62979431132027497, -2.0867336480290084) +description = Corcoran city, CA +station = ('khjo', 0.0041953362395359762) +zone = ('caz091', 0.006033054540127032) + +[fips0616322] +centroid = (0.69687853694150736, -2.1324780644986641) +description = Corning city, CA +station = ('krbl', 0.0039763870332575699) +zone = ('caz015', 0.0053080883602517658) + +[fips0616350] +centroid = (0.59100953486928687, -2.0518763859937832) +description = Corona city, CA +station = ('kajo', 0.00084024819201996529) +zone = ('caz042', 0.0043019563920949659) + +[fips0616378] +centroid = (0.56997569938887716, -2.044760329567552) +description = Coronado city, CA +station = ('knzy', 0.0011613229796099947) +zone = ('caz043', 0.0057274428410581685) + +[fips0616420] +centroid = (0.59124487506562584, -2.0527054872016506) +description = Coronita CDP, CA +station = ('kajo', 0.00045272530239333158) +zone = ('caz042', 0.0039783755934413483) + +[fips0616434] +centroid = (0.64549229130490249, -2.1256282755031171) +description = Corralitos CDP, CA +station = ('kwvi', 0.00088823372995385668) +zone = ('caz529', 0.0015539553688720979) + +[fips0616462] +centroid = (0.6620408225939044, -2.1381633349106952) +description = Corte Madera town, CA +station = ('kdvo', 0.0036982148202032929) +zone = ('caz006', 0.0032072129566610751) + +[fips0616532] +centroid = (0.5875809053669141, -2.0579584919178404) +description = Costa Mesa city, CA +station = ('ksna', 0.00072974150191643247) +zone = ('caz042', 0.0018911377367442455) + +[fips0616560] +centroid = (0.66895838272430641, -2.1416943803335751) +description = Cotati city, CA +station = ('ko69', 0.0020370255321211584) +zone = ('caz506', 0.0011789397768558472) + +[fips0616580] +centroid = (0.58637891456435809, -2.0522713190969246) +description = Coto de Caza CDP, CA +station = ('ksna', 0.0043408356407785183) +zone = ('caz057', 0.0019751229317065541) + +[fips0616630] +centroid = (0.70494593743641576, -2.13429502206316) +description = Cottonwood CDP, CA +station = ('krdd', 0.0019127618902768505) +zone = ('caz015', 0.0029803070235894201) + +[fips0616644] +centroid = (0.65819734578162525, -2.0979292370488514) +description = Coultervillle CDP, CA +station = ('ko22', 0.0063085718723949868) +zone = ('caz093', 0.010427625969375118) + +[fips0616651] +centroid = (0.66267106098679962, -2.1177839106333209) +description = Country Club CDP, CA +station = ('ksck', 0.0018916669624138877) +zone = ('caz019', 0.0055169047629445777) + +[fips0616714] +centroid = (0.66903550882395213, -2.1215703326323525) +description = Courtland CDP, CA +station = ('ksac', 0.0030187182267652534) +zone = ('caz018', 0.004345337997995009) + +[fips0616728] +centroid = (0.69464589430906365, -2.1511698601091149) +description = Covelo CDP, CA +station = ('kuki', 0.011662225740745838) +zone = ('caz076', 0.0047100221792992581) + +[fips0616742] +centroid = (0.59499103231881389, -2.0574315246567858) +description = Covina city, CA +station = ('kpoc', 0.0014377584218784204) +zone = ('caz548', 0.0013937759670088906) + +[fips0616762] +centroid = (0.655544148612621, -2.1116574907995558) +description = Cowan CDP, CA +station = ('kmod', 0.0011282827408229531) +zone = ('caz019', 0.0035326737286895862) + +[fips0617022] +centroid = (0.72896308166055179, -2.1676805177533485) +description = Crescent City city, CA +station = ('kcec', 0.00053533380435775481) +zone = ('orz022', 0.010130926292522798) + +[fips0617050] +centroid = (0.69988959642034054, -2.1104816799357797) +description = Crescent Mills CDP, CA +station = ('kove', 0.014027285968320402) +zone = ('caz068', 0.0059576905734887095) + +[fips0617078] +centroid = (0.65312018298757368, -2.1058390517655972) +description = Cressey CDP, CA +station = ('kmer', 0.0015569387069407064) +zone = ('caz019', 0.0079376140937467681) + +[fips0617106] +centroid = (0.57246837862657551, -2.0397152808317371) +description = Crest CDP, CA +station = ('ksee', 0.0016081336267773554) +zone = ('caz050', 0.0038251143169631039) + +[fips0617162] +centroid = (0.59782974053401261, -2.0470278962383279) +description = Crestline CDP, CA +station = ('ksbd', 0.0027787913975712282) +zone = ('caz055', 0.0027750037118928089) + +[fips0617204] +centroid = (0.59393502085489469, -2.0489434474522694) +description = Crestmore Heights CDP, CA +station = ('kral', 0.0016009371269158263) +zone = ('caz048', 0.0038771621975888441) + +[fips0617232] +centroid = (0.61991740581677646, -2.1034662941008033) +description = Creston CDP, CA +station = ('kprb', 0.0030451334695592858) +zone = ('caz037', 0.0024344911879510623) + +[fips0617267] +centroid = (0.69398998212287177, -2.1044664899352439) +description = C-Road CDP, CA +station = ('kblu', 0.008528648282812034) +zone = ('caz071', 0.012281459659433343) + +[fips0617274] +centroid = (0.66413162231803846, -2.1331440646879325) +description = Crockett CDP, CA +station = ('kccr', 0.0025088337992234572) +zone = ('caz510', 0.0055558273092983917) + +[fips0617288] +centroid = (0.69583465551588952, -2.1064444017633588) +description = Cromberg CDP, CA +station = ('kblu', 0.010211968752386511) +zone = ('caz068', 0.010518573413957172) + +[fips0617372] +centroid = (0.65570950110595483, -2.0725200182133245) +description = Crowley Lake CDP, CA +station = ('kmmh', 0.0014553324969569844) +zone = ('caz073', 0.0067342288508913089) + +[fips0617428] +centroid = (0.65266130102063924, -2.1133207372168288) +description = Crows Landing CDP, CA +station = ('kmod', 0.0042969450267416262) +zone = ('caz019', 0.0063701600982682171) + +[fips0617498] +centroid = (0.59278367950723165, -2.0626748078890422) +description = Cudahy city, CA +station = ('kcqt', 0.0018948296094905713) +zone = ('caz041', 0.0018175788676974712) + +[fips0617568] +centroid = (0.59351352384053813, -2.0664136522126646) +description = Culver City city, CA +station = ('ksmo', 0.00079287865443438354) +zone = ('caz041', 0.0019458601939972048) + +[fips0617610] +centroid = (0.65134636996218676, -2.1300863176516085) +description = Cupertino city, CA +station = ('ksjc', 0.0019619831481399019) +zone = ('caz512', 0.0025630335279502006) + +[fips0617708] +centroid = (0.63750372733230676, -2.0819736464666292) +description = Cutler CDP, CA +station = ('kvis', 0.0039804640683205172) +zone = ('caz094', 0.0070602382537239463) + +[fips0617722] +centroid = (0.71149525054793938, -2.1667314251594068) +description = Cutten CDP, CA +station = ('kfot', 0.0036987528842950534) +zone = ('caz001', 0.0045598514163325866) + +[fips0617727] +centroid = (0.60966195585181293, -2.0876734903779148) +description = Cuyama CDP, CA +station = ('kiza', 0.0086961136002581402) +zone = ('caz038', 0.0017637667041135532) + +[fips0617750] +centroid = (0.59024377165997444, -2.0601571006298705) +description = Cypress city, CA +station = ('ksli', 0.00063638485839713238) +zone = ('caz042', 0.0041313269035810141) + +[fips0617918] +centroid = (0.65800555155012352, -2.1374170844824203) +description = Daly City city, CA +station = ('ksfo', 0.0020021583531247816) +zone = ('caz006', 0.0010073480082257804) + +[fips0617946] +centroid = (0.58399580709710008, -2.0544953921627407) +description = Dana Point city, CA +station = ('ksna', 0.004478900997976004) +zone = ('caz042', 0.0043709598384099099) + +[fips0617988] +centroid = (0.65994723034296721, -2.1287773032593202) +description = Danville town, CA +station = ('klvk', 0.0028824190043464848) +zone = ('caz510', 0.0017165942962894549) + +[fips0617995] +centroid = (0.72444117791472973, -2.1040628476391352) +description = Daphnedale Park CDP, CA +station = ('kaat', 0.00045223964281694887) +zone = ('caz085', 0.0028322249598309039) + +[fips0618030] +centroid = (0.63301002810719698, -2.0523152839407821) +description = Darwin CDP, CA +station = ('knid', 0.010337935368364502) +zone = ('caz522', 0.0073550481097207536) + +[fips0618086] +centroid = (0.64608636647569639, -2.1327418535618103) +description = Davenport CDP, CA +station = ('kwvi', 0.0059556882733371782) +zone = ('caz512', 0.0034730679718696887) + +[fips0618100] +centroid = (0.67293171203293423, -2.1247253119613054) +description = Davis city, CA +station = ('kedu', 0.0008462622776938902) +zone = ('caz017', 0.0026905223525026975) + +[fips0618153] +centroid = (0.64621258868720055, -2.1268000022964433) +description = Day Valley CDP, CA +station = ('kwvi', 0.0019024146761833461) +zone = ('caz529', 0.0010589435446732313) + +[fips0618324] +centroid = (0.67256395370624633, -2.1375066198730477) +description = Deer Park CDP, CA +station = ('ksts', 0.0047719517404146436) +zone = ('caz507', 0.0030683753231793677) + +[fips0618352] +centroid = (0.59195829585067095, -2.0659338612012914) +description = Del Aire CDP, CA +station = ('klax', 0.0003542782812423845) +zone = ('caz041', 0.0010173283304483649) + +[fips0618394] +centroid = (0.6241852943432632, -2.0815417996498082) +description = Delano city, CA +station = ('kptv', 0.0054754354639443628) +zone = ('caz092', 0.0011409949859456259) + +[fips0618450] +centroid = (0.63725253954635974, -2.0847346351702365) +description = Delft Colony CDP, CA +station = ('kvis', 0.0034691552294156326) +zone = ('caz094', 0.008725980003547993) + +[fips0618464] +centroid = (0.65328719354369702, -2.1079370946061267) +description = Delhi CDP, CA +station = ('kmer', 0.0031082789043205411) +zone = ('caz019', 0.0067906248633567475) + +[fips0618485] +centroid = (0.69487036110416267, -2.1029483501919817) +description = Delleker CDP, CA +station = ('krts', 0.0086151109401282136) +zone = ('caz071', 0.011419956805327564) + +[fips0618506] +centroid = (0.57530993172845502, -2.0466148466175511) +description = Del Mar city, CA +station = ('knkx', 0.0023513292074173148) +zone = ('caz043', 0.00046306002506126611) + +[fips0618590] +centroid = (0.63850835630304725, -2.1283716712878644) +description = Del Monte Forest CDP, CA +station = ('kmry', 0.0013554544327974206) +zone = ('caz530', 0.0027241626636413303) + +[fips0618674] +centroid = (0.63977166052222578, -2.0874019869594744) +description = Del Rey CDP, CA +station = ('kfat', 0.0027599260892128808) +zone = ('caz090', 0.0099841237872409366) + +[fips0618688] +centroid = (0.6384850910641181, -2.1263310846863099) +description = Del Rey Oaks city, CA +station = ('kmry', 0.00028351564579209403) +zone = ('caz530', 0.0011849184234463412) + +[fips0618695] +centroid = (0.65881313284831378, -2.1120240623023521) +description = Del Rio CDP, CA +station = ('kmod', 0.0024248014662130893) +zone = ('caz019', 0.00046727790449984622) + +[fips0618856] +centroid = (0.65494693184917352, -2.1083520117292034) +description = Denair CDP, CA +station = ('kmod', 0.0026163889226304389) +zone = ('caz019', 0.0052513480513914513) + +[fips0618926] +centroid = (0.61512427790519453, -2.0874806838554472) +description = Derby Acres CDP, CA +station = ('kbfl', 0.0085494208841334438) +zone = ('caz038', 0.0056025318089187965) + +[fips0618940] +centroid = (0.57368241220097016, -2.035543996279348) +description = Descanso CDP, CA +station = ('kczz', 0.0048534331030977524) +zone = ('caz058', 0.0037891718149411515) + +[fips0618982] +centroid = (0.58883567492605049, -2.0135274008037256) +description = Desert Center CDP, CA +station = ('kblh', 0.0096738952458929588) +zone = ('caz032', 0.0019514708177194476) + +[fips0618986] +centroid = (0.59205563286305474, -2.0322629867251094) +description = Desert Edge CDP, CA +station = ('kpsp', 0.0017787730623596816) +zone = ('caz061', 0.0037205427395195227) + +[fips0618996] +centroid = (0.59283467802797496, -2.0341709806633896) +description = Desert Hot Springs city, CA +station = ('kpsp', 0.002439016115171398) +zone = ('caz061', 0.0053079374943017042) + +[fips0619022] +centroid = (0.58955728130528751, -2.0297868357554272) +description = Desert Palms CDP, CA +station = ('kpsp', 0.0030753427519318432) +zone = ('caz061', 0.00064416688033678453) + +[fips0619024] +centroid = (0.58300934700387286, -2.0252823853021251) +description = Desert Shores CDP, CA +station = ('ktrm', 0.0042568407464076237) +zone = ('caz062', 0.0069024652983590406) + +[fips0619052] +centroid = (0.60371387376101626, -2.062168295886821) +description = Desert View Highlands CDP, CA +station = ('kpmd', 0.0012578807460599277) +zone = ('caz059', 0.0018107471864228619) + +[fips0619150] +centroid = (0.66044670866830291, -2.1285417012635937) +description = Diablo CDP, CA +station = ('kccr', 0.003062406920973718) +zone = ('caz510', 0.0012578059711515859) + +[fips0619155] +centroid = (0.65270989098701482, -2.1167306393363274) +description = Diablo Grande CDP, CA +station = ('kmod', 0.0059557041270164443) +zone = ('caz511', 0.0053386833983054584) + +[fips0619192] +centroid = (0.59343939970720594, -2.0563050542509638) +description = Diamond Bar city, CA +station = ('kpoc', 0.0017879183969883156) +zone = ('caz548', 0.0025212544997586916) + +[fips0619220] +centroid = (0.67529057687688199, -2.1090190067561458) +description = Diamond Springs CDP, CA +station = ('kpvf', 0.0012976142376365382) +zone = ('caz067', 0.0015635640088780983) + +[fips0619262] +centroid = (0.66747478304694119, -2.1459862496839843) +description = Dillon Beach CDP, CA +station = ('ksts', 0.0048657896908596661) +zone = ('caz505', 0.00012577205218223479) + +[fips0619318] +centroid = (0.63783673615358727, -2.0839034570205595) +description = Dinuba city, CA +station = ('kvis', 0.00399136084584094) +zone = ('caz094', 0.0084831528353882212) + +[fips0619339] +centroid = (0.66161372307264898, -2.1222846784419014) +description = Discovery Bay CDP, CA +station = ('klvk', 0.0047153193602403731) +zone = ('caz018', 0.0046907650546996697) + +[fips0619402] +centroid = (0.67103567360003014, -2.1262338000338041) +description = Dixon city, CA +station = ('kedu', 0.0015136979561989215) +zone = ('caz017', 0.0047495629163728792) + +[fips0619406] +centroid = (0.65251556602809768, -2.0667363984979432) +description = Dixon Lane-Meadow Creek CDP, CA +station = ('kbih', 0.00075693252364067833) +zone = ('caz521', 0.0083938003586302261) + +[fips0619416] +centroid = (0.68690197313771995, -2.1155201487803144) +description = Dobbins CDP, CA +station = ('kgoo', 0.0036322164738022121) +zone = ('caz016', 0.0096622396078996763) + +[fips0619440] +centroid = (0.6668670419481042, -2.1145503216748587) +description = Dogtown CDP, CA +station = ('ksck', 0.005494281647115842) +zone = ('caz019', 0.0080182093121435889) + +[fips0619455] +centroid = (0.68400308596991244, -2.09629613246776) +description = Dollar Point CDP, CA +station = ('ktrk', 0.0022267763388113459) +zone = ('nvz002', 0.0026595771866942054) + +[fips0619570] +centroid = (0.66836282402364844, -2.0991085734777162) +description = Dorrington CDP, CA +station = ('ko22', 0.0050520929716524757) +zone = ('caz069', 0.0085833147506613628) + +[fips0619584] +centroid = (0.73242680973418217, -2.1279121784556918) +description = Dorris city, CA +station = ('klmt', 0.0041711731254986837) +zone = ('caz084', 0.004080237722728852) + +[fips0619612] +centroid = (0.64551749385930135, -2.105457749683914) +description = Dos Palos city, CA +station = ('kmce', 0.0055228834517639831) +zone = ('caz089', 0.0066198877507913792) + +[fips0619654] +centroid = (0.64658806136918212, -2.1055560117208012) +description = Dos Palos Y CDP, CA +station = ('kmce', 0.0045618571987717333) +zone = ('caz089', 0.0076731246699194237) + +[fips0619724] +centroid = (0.71001594438053406, -2.1454302052375915) +description = Douglas City CDP, CA +station = ('ko54', 0.0011575098962860564) +zone = ('caz004', 0.0025207154121857991) + +[fips0619766] +centroid = (0.59233399542545528, -2.0617723853992986) +description = Downey city, CA +station = ('klgb', 0.0021398766361267092) +zone = ('caz041', 0.0024615018899462478) + +[fips0619794] +centroid = (0.69077763382140611, -2.1086440576729397) +description = Downieville CDP, CA +station = ('kblu', 0.005387714817398752) +zone = ('caz068', 0.012945797709100575) + +[fips0619878] +centroid = (0.69860683178000227, -2.0964086887512212) +description = Doyle CDP, CA +station = ('krts', 0.0070370232085790905) +zone = ('caz071', 0.0095772517947889813) + +[fips0619976] +centroid = (0.67087368959215254, -2.1093443710353026) +description = Drytown CDP, CA +station = ('kpvf', 0.0051280974983866686) +zone = ('caz067', 0.0033731932715087738) + +[fips0619990] +centroid = (0.59622037243074866, -2.0586250680657625) +description = Duarte city, CA +station = ('kemt', 0.0018068481596164429) +zone = ('caz548', 0.0016954303289654403) + +[fips0620018] +centroid = (0.65823855300526479, -2.1275793441673367) +description = Dublin city, CA +station = ('klvk', 0.0011951786102871562) +zone = ('caz510', 0.0029121415546839663) + +[fips0620032] +centroid = (0.62647300211360724, -2.0777377672786241) +description = Ducor CDP, CA +station = ('kptv', 0.0024454717582221867) +zone = ('caz092', 0.0028144853847390655) + +[fips0620228] +centroid = (0.67880498931199029, -2.1288512354064348) +description = Dunnigan CDP, CA +station = ('ksmf', 0.006100409359469418) +zone = ('caz017', 0.0072749064718404853) + +[fips0620242] +centroid = (0.71962646028030064, -2.1340178288713583) +description = Dunsmuir city, CA +station = ('kmhs', 0.0016055240414426858) +zone = ('caz082', 0.0013121157464286634) + +[fips0620270] +centroid = (0.69166277755155503, -2.1256499524924268) +description = Durham CDP, CA +station = ('kcic', 0.0030825943116877656) +zone = ('caz016', 0.0047757924974168907) + +[fips0620284] +centroid = (0.61463391019855418, -2.0834865676754282) +description = Dustin Acres CDP, CA +station = ('kbfl', 0.0059844860861348898) +zone = ('caz038', 0.0070440686864221827) + +[fips0620298] +centroid = (0.68430883274827692, -2.1089594561220677) +description = Dutch Flat CDP, CA +station = ('kgoo', 0.0022970295318852098) +zone = ('caz069', 0.0099809922450877272) + +[fips0620424] +centroid = (0.72115304741714259, -2.0963953195291509) +description = Eagleville CDP, CA +station = ('kaat', 0.0065764210033716014) +zone = ('caz070', 0.0051198745542754926) + +[fips0620438] +centroid = (0.62626567445176284, -2.0816799948199813) +description = Earlimart CDP, CA +station = ('kptv', 0.0039132488454818228) +zone = ('caz092', 0.0021652540250394229) + +[fips0620598] +centroid = (0.65245912208008827, -2.1260830210397241) +description = East Foothills CDP, CA +station = ('krhv', 0.00086966437899623004) +zone = ('caz511', 0.0024663461433795469) + +[fips0620697] +centroid = (0.58870173835925232, -2.0410062485195599) +description = East Hemet CDP, CA +station = ('kriv', 0.0053723367682692149) +zone = ('caz048', 0.0048199064866949869) + +[fips0620746] +centroid = (0.59209200552466634, -2.0592917489334388) +description = East La Mirada CDP, CA +station = ('kful', 0.0010101909926200027) +zone = ('caz548', 0.0024760594223800564) + +[fips0620802] +centroid = (0.59396182911220541, -2.0624305665135179) +description = East Los Angeles CDP, CA +station = ('kcqt', 0.0016602762478873032) +zone = ('caz041', 0.0026263442419554865) + +[fips0620900] +centroid = (0.67910796101684412, -2.1213485710975943) +description = East Nicolaus CDP, CA +station = ('klhm', 0.0026390575626820283) +zone = ('caz017', 0.0049493084118891516) + +[fips0620907] +centroid = (0.65933999538961341, -2.1086104600848388) +description = East Oakdale CDP, CA +station = ('kmod', 0.0033722962064931298) +zone = ('caz019', 0.0031433550693706585) + +[fips0620928] +centroid = (0.63970490167833693, -2.0907436292519281) +description = Easton CDP, CA +station = ('kfat', 0.0025096248459525422) +zone = ('caz090', 0.0083137322702092932) + +[fips0620942] +centroid = (0.63788413929607146, -2.0814771002944372) +description = East Orosi CDP, CA +station = ('kvis', 0.0044926893579668933) +zone = ('caz094', 0.0070309449651075918) + +[fips0620956] +centroid = (0.65393612441288096, -2.1316151213566004) +description = East Palo Alto city, CA +station = ('kpao', 0.00022088346693938557) +zone = ('caz508', 0.0022448532302404918) + +[fips0620984] +centroid = (0.59579952118821522, -2.0608417758421349) +description = East Pasadena CDP, CA +station = ('kemt', 0.0011308188470346553) +zone = ('caz548', 0.0019461366338256118) + +[fips0621012] +centroid = (0.62931113437015285, -2.0764402022462289) +description = East Porterville CDP, CA +station = ('kptv', 0.0014076565560287983) +zone = ('caz094', 0.0036468084859965877) + +[fips0621026] +centroid = (0.69667300696879253, -2.1104335263017169) +description = East Quincy CDP, CA +station = ('kblu', 0.011435018004692989) +zone = ('caz068', 0.0075613314989380568) + +[fips0621034] +centroid = (0.59157645271691972, -2.0629021719306997) +description = East Rancho Dominguez CDP, CA +station = ('klgb', 0.0015158640932663129) +zone = ('caz041', 0.0016253844652246853) + +[fips0621061] +centroid = (0.66226659838594248, -2.1347803981281399) +description = East Richmond Heights CDP, CA +station = ('kccr', 0.0037553568459504616) +zone = ('caz006', 0.0037475997889471592) + +[fips0621096] +centroid = (0.59550000523528046, -2.0608890044516941) +description = East San Gabriel CDP, CA +station = ('kemt', 0.00092793393276955813) +zone = ('caz548', 0.0018036332221855553) + +[fips0621138] +centroid = (0.70241245240080585, -2.1131884238062351) +description = East Shore CDP, CA +station = ('kcic', 0.012930404760818918) +zone = ('caz068', 0.0037382106425872422) + +[fips0621188] +centroid = (0.66277663595325276, -2.1002956417151677) +description = East Sonora CDP, CA +station = ('ko22', 0.0014880816774140839) +zone = ('caz019', 0.010394292656766176) + +[fips0621210] +centroid = (0.63187132294331838, -2.0818665879703118) +description = East Tulare Villa CDP, CA +station = ('kvis', 0.0025781511686327244) +zone = ('caz094', 0.0053296304982919642) + +[fips0621230] +centroid = (0.5927552480937166, -2.0521381679282897) +description = Eastvale CDP, CA +station = ('kcno', 0.00079213635085982398) +zone = ('caz042', 0.0054668449100832147) + +[fips0621530] +centroid = (0.72362692945879681, -2.1367311700863865) +description = Edgewood CDP, CA +station = ('kmhs', 0.0028918912091402404) +zone = ('caz082', 0.0045838162645054845) + +[fips0621558] +centroid = (0.61483230177462844, -2.0738569753269371) +description = Edmundson Acres CDP, CA +station = ('kbfl', 0.0048327632760567603) +zone = ('caz095', 0.004201287841710903) + +[fips0621565] +centroid = (0.61454414791512413, -2.1049712217016281) +description = Edna CDP, CA +station = ('ksbp', 0.00055417466348665217) +zone = ('caz034', 0.0027928716953572294) + +[fips0621600] +centroid = (0.60916193647440908, -2.0581248741554332) +description = Edwards AFB CDP, CA +station = ('kedw', 0.00039987904656673876) +zone = ('caz099', 0.0033502774334595218) + +[fips0621712] +centroid = (0.57249694966643072, -2.0413455056195624) +description = El Cajon city, CA +station = ('ksee', 0.00046020509783189443) +zone = ('caz050', 0.0035437341702191133) + +[fips0621782] +centroid = (0.57224677417144987, -2.0168676817393627) +description = El Centro city, CA +station = ('kipl', 0.00087162561959740334) +zone = ('caz033', 0.0046311118410228194) + +[fips0621796] +centroid = (0.66182253426435755, -2.1345794060114804) +description = El Cerrito city, CA +station = ('koak', 0.0036682389460534546) +zone = ('caz006', 0.0034490302171136678) + +[fips0621810] +centroid = (0.59058775860224999, -2.0511494214537427) +description = El Cerrito CDP, CA +station = ('kajo', 0.001560423950936761) +zone = ('caz057', 0.0038364135685345691) + +[fips0621880] +centroid = (0.67498812877080394, -2.1127008486263978) +description = El Dorado Hills CDP, CA +station = ('kmhr', 0.0040514096261125799) +zone = ('caz067', 0.0039219711985782838) + +[fips0621894] +centroid = (0.66905254323745145, -2.1381420942536988) +description = Eldridge CDP, CA +station = ('ko69', 0.0019451044272197928) +zone = ('caz506', 0.0019561332447079376) + +[fips0621936] +centroid = (0.6547471440096978, -2.1374200515421484) +description = El Granada CDP, CA +station = ('khaf', 0.00054284491958004797) +zone = ('caz509', 0.0026477665488088258) + +[fips0621964] +centroid = (0.60486982277790469, -2.0661180981571317) +description = Elizabeth Lake CDP, CA +station = ('kwjf', 0.0026985357024994936) +zone = ('caz088', 0.0043719840970058458) + +[fips0622006] +centroid = (0.69112731053704313, -2.1385924241072982) +description = Elk Creek CDP, CA +station = ('krbl', 0.010338766012950843) +zone = ('caz063', 0.004862760880853116) + +[fips0622020] +centroid = (0.67045817905713012, -2.1185668129758879) +description = Elk Grove city, CA +station = ('ksac', 0.0021688301820702383) +zone = ('caz017', 0.0044292505612708016) + +[fips0622034] +centroid = (0.64246744372497866, -2.1243920587939296) +description = Elkhorn CDP, CA +station = ('kwvi', 0.0023232600279817044) +zone = ('caz530', 0.0034301941865591545) + +[fips0622146] +centroid = (0.66937434704493426, -2.1276910626927568) +description = Elmira CDP, CA +station = ('kvcb', 0.00079225197145979369) +zone = ('caz018', 0.0041587019569798754) + +[fips0622230] +centroid = (0.59471453725871293, -2.05999703648417) +description = El Monte city, CA +station = ('kemt', 0.00016352338915060936) +zone = ('caz548', 0.00081506925333477045) + +[fips0622286] +centroid = (0.64808222028852192, -2.1030964588323058) +description = El Nido CDP, CA +station = ('kmce', 0.0026347794871573529) +zone = ('caz090', 0.0055025763716827136) + +[fips0622300] +centroid = (0.62204826084724385, -2.1058142331836338) +description = El Paso de Robles (Paso Robles) city, CA +station = ('kprb', 0.00054120723949117986) +zone = ('caz037', 0.0050221537728338782) + +[fips0622328] +centroid = (0.65755326692776173, -2.0907978217252023) +description = El Portal CDP, CA +station = ('ko22', 0.010622241303675744) +zone = ('caz093', 0.0073362150494590134) + +[fips0622360] +centroid = (0.63216853506164039, -2.0781436435961753) +description = El Rancho CDP, CA +station = ('kptv', 0.0032683741860093552) +zone = ('caz094', 0.0023377912471160525) + +[fips0622370] +centroid = (0.59769299398711884, -2.0796790795523252) +description = El Rio CDP, CA +station = ('koxr', 0.0010063684890860354) +zone = ('caz040', 0.00069754668584494643) + +[fips0622412] +centroid = (0.5919658531263321, -2.0664969567778622) +description = El Segundo city, CA +station = ('klax', 0.00038659860077771885) +zone = ('caz041', 0.0014773977036993877) + +[fips0622454] +centroid = (0.66287695747865738, -2.1346565495644181) +description = El Sobrante CDP, CA +station = ('kccr', 0.0035496145225353305) +zone = ('caz006', 0.0043363301058533792) + +[fips0622457] +centroid = (0.59118715702726232, -2.0501078962226149) +description = El Sobrante CDP, CA +station = ('kral', 0.0013642501317772397) +zone = ('caz048', 0.0032348402101724221) + +[fips0622510] +centroid = (0.66841671979095008, -2.1378810104508927) +description = El Verano CDP, CA +station = ('ko69', 0.0017011140279180803) +zone = ('caz506', 0.0024146700571535985) + +[fips0622524] +centroid = (0.67576467811489371, -2.1196234003984604) +description = Elverta CDP, CA +station = ('kmcc', 0.0010959181568310991) +zone = ('caz017', 0.0022588236142207286) + +[fips0622587] +centroid = (0.65389252608816617, -2.1339424830075502) +description = Emerald Lake Hills CDP, CA +station = ('ksql', 0.00092345952744179375) +zone = ('caz509', 0.0023681489052328366) + +[fips0622594] +centroid = (0.66041295400056943, -2.1345002553299022) +description = Emeryville city, CA +station = ('koak', 0.0023112070876765635) +zone = ('caz006', 0.0024638685009183256) + +[fips0622622] +centroid = (0.656992562452266, -2.1101767185555786) +description = Empire CDP, CA +station = ('kmod', 0.00078107600228039355) +zone = ('caz019', 0.0027586681100594196) + +[fips0622678] +centroid = (0.57684234826499847, -2.046636191994303) +description = Encinitas city, CA +station = ('kcrq', 0.0014719232585586712) +zone = ('caz043', 0.0013224622378712864) + +[fips0622790] +centroid = (0.65959874045122147, -2.1118473477155875) +description = Escalon city, CA +station = ('kmod', 0.0031406965575246863) +zone = ('caz019', 0.00082192833355483499) + +[fips0622804] +centroid = (0.57829125079683419, -2.0433132072715532) +description = Escondido city, CA +station = ('krnm', 0.0028821642109387964) +zone = ('caz050', 0.0027907114211122288) + +[fips0622846] +centroid = (0.67532740332409913, -2.1297213867583089) +description = Esparto CDP, CA +station = ('kedu', 0.0042804647921655201) +zone = ('caz017', 0.006396796659317818) + +[fips0622972] +centroid = (0.72358320896103445, -2.1449372893502434) +description = Etna city, CA +station = ('ksiy', 0.0077677418051329749) +zone = ('caz080', 0.0039005257718749305) + +[fips0623000] +centroid = (0.57395100091955975, -2.0410723441383327) +description = Eucalyptus Hills CDP, CA +station = ('ksee', 0.0011029897324948492) +zone = ('caz050', 0.0021020879093375275) + +[fips0623042] +centroid = (0.71197746756697289, -2.1669196414659417) +description = Eureka city, CA +station = ('kacv', 0.0033960919720473792) +zone = ('caz001', 0.0041079514862051207) + +[fips0623126] +centroid = (0.6334499034385771, -2.0794887339441024) +description = Exeter city, CA +station = ('kvis', 0.0035953766130307277) +zone = ('caz094', 0.00337113042700051) + +[fips0623150] +centroid = (0.57581197568779119, -2.0452922012038046) +description = Fairbanks Ranch CDP, CA +station = ('knkx', 0.0022454202935930398) +zone = ('caz043', 0.0007691481997867544) + +[fips0623168] +centroid = (0.66302227359217836, -2.1396880894518229) +description = Fairfax town, CA +station = ('kdvo', 0.0026898909771225191) +zone = ('caz006', 0.0045726473569597213) + +[fips0623182] +centroid = (0.6677063707853883, -2.1299949147586816) +description = Fairfield city, CA +station = ('ksuu', 0.0012416284616912333) +zone = ('caz018', 0.004290252644641993) + +[fips0623210] +centroid = (0.64713995193195517, -2.0978186878940299) +description = Fairmead CDP, CA +station = ('kmae', 0.0019947447431746639) +zone = ('caz090', 0.0012054226537926245) + +[fips0623294] +centroid = (0.67457263568907422, -2.1162288571763792) +description = Fair Oaks CDP, CA +station = ('kmhr', 0.0018717034346024685) +zone = ('caz017', 0.0042663910149564272) + +[fips0623350] +centroid = (0.6575996054194021, -2.1300767532473079) +description = Fairview CDP, CA +station = ('khwd', 0.0010165722808381705) +zone = ('caz508', 0.0022184245974725095) + +[fips0623462] +centroid = (0.5824237192266587, -2.0459856205156219) +description = Fallbrook CDP, CA +station = ('knfg', 0.0021822034887096055) +zone = ('caz057', 0.0055597705091176078) + +[fips0623532] +centroid = (0.71571137260881201, -2.1195476356556315) +description = Fall River Mills CDP, CA +station = ('kaat', 0.014168023407119028) +zone = ('caz014', 0.0012920213753490413) + +[fips0623616] +centroid = (0.63364792849550833, -2.0805744509118904) +description = Farmersville city, CA +station = ('kvis', 0.0027056276271053945) +zone = ('caz094', 0.0042675027504173613) + +[fips0623630] +centroid = (0.66200108144683656, -2.1119246134415732) +description = Farmington CDP, CA +station = ('ksck', 0.003195516893136535) +zone = ('caz019', 0.0030401362344137919) + +[fips0623812] +centroid = (0.61397501349934125, -2.0864983601925471) +description = Fellows CDP, CA +station = ('kbfl', 0.0083698048687985849) +zone = ('caz038', 0.0049314336189821674) + +[fips0623826] +centroid = (0.64645635882382657, -2.1307062062420394) +description = Felton CDP, CA +station = ('kwvi', 0.0045360670740880859) +zone = ('caz512', 0.002395100001313104) + +[fips0623910] +centroid = (0.70825270805041429, -2.1687794468635744) +description = Ferndale city, CA +station = ('kfot', 0.0017723683205007172) +zone = ('caz001', 0.0080616013874645186) + +[fips0623973] +centroid = (0.66894255258799085, -2.137804285776975) +description = Fetters Hot Springs-Agua Caliente CDP, CA +station = ('ko69', 0.0020549926190622059) +zone = ('caz506', 0.0022424937202229329) + +[fips0623980] +centroid = (0.67211086623242866, -2.1076684709809523) +description = Fiddletown CDP, CA +station = ('kpvf', 0.003683408715505391) +zone = ('caz067', 0.0019255083204320347) + +[fips0624008] +centroid = (0.71510668583616599, -2.1646763872316459) +description = Fieldbrook CDP, CA +station = ('kacv', 0.00098229350378114589) +zone = ('caz001', 0.0012787430063733564) + +[fips0624022] +centroid = (0.71078460483640493, -2.1680169823265483) +description = Fields Landing CDP, CA +station = ('kfot', 0.0031925940772735291) +zone = ('caz001', 0.005469391572342692) + +[fips0624092] +centroid = (0.6003685139172561, -2.0755051246461802) +description = Fillmore city, CA +station = ('kcma', 0.0039729020160642285) +zone = ('caz045', 0.0027644736140065951) + +[fips0624134] +centroid = (0.64321865088832941, -2.1023117588006093) +description = Firebaugh city, CA +station = ('kmae', 0.0052173384759592392) +zone = ('caz089', 0.004116183795648912) + +[fips0624218] +centroid = (0.6541931415985297, -2.0881187762299764) +description = Fish Camp CDP, CA +station = ('kmae', 0.010940914141260335) +zone = ('caz093', 0.0040016785254165998) + +[fips0624477] +centroid = (0.59284855339552822, -2.0637538576990879) +description = Florence-Graham CDP, CA +station = ('kcqt', 0.0012763194464400916) +zone = ('caz041', 0.0010657731173043107) + +[fips0624498] +centroid = (0.67165919247530514, -2.1189028761233595) +description = Florin CDP, CA +station = ('ksac', 0.0013411040691887605) +zone = ('caz017', 0.003308601210899658) + +[fips0624526] +centroid = (0.68753634796094232, -2.0946589961760971) +description = Floriston CDP, CA +station = ('ktrk', 0.0020777047807957168) +zone = ('nvz002', 0.0033828206390903175) + +[fips0624568] +centroid = (0.69688129456172554, -2.1370887182369498) +description = Flournoy CDP, CA +station = ('krbl', 0.0046728166000257814) +zone = ('caz063', 0.0045851210425123003) + +[fips0624638] +centroid = (0.67502279100974849, -2.1144254782734633) +description = Folsom city, CA +station = ('kmhr', 0.0030247765468972396) +zone = ('caz017', 0.0057191758423999033) + +[fips0624680] +centroid = (0.59531074173119425, -2.0501106014829555) +description = Fontana city, CA +station = ('kont', 0.002023551170584263) +zone = ('caz048', 0.0055586266674654246) + +[fips0624722] +centroid = (0.67521090259652849, -2.1179132220776014) +description = Foothill Farms CDP, CA +station = ('kmcc', 0.00079662174897868242) +zone = ('caz017', 0.0031115572697819646) + +[fips0624750] +centroid = (0.68988648615863024, -2.1164948453543833) +description = Forbestown CDP, CA +station = ('kove', 0.0047431311900325195) +zone = ('caz016', 0.0092748563670504991) + +[fips0624764] +centroid = (0.61374040634128824, -2.0849423991643943) +description = Ford City CDP, CA +station = ('kbfl', 0.0074712120880786846) +zone = ('caz038', 0.0055655329572043694) + +[fips0624834] +centroid = (0.68077071874192652, -2.1089051763823305) +description = Foresthill CDP, CA +station = ('kaun', 0.003335215938562802) +zone = ('caz067', 0.0067903413157402674) + +[fips0624897] +centroid = (0.66612861059487805, -2.1014671590689837) +description = Forest Meadows CDP, CA +station = ('ko22', 0.0023885628383365585) +zone = ('caz067', 0.0093456732120115373) + +[fips0624918] +centroid = (0.69630222922249885, -2.1235505657483729) +description = Forest Ranch CDP, CA +station = ('kcic', 0.0029233187103609635) +zone = ('caz066', 0.0039504884602385437) + +[fips0624960] +centroid = (0.67164617231908519, -2.144833093193899) +description = Forestville CDP, CA +station = ('ksts', 0.0010458452379071958) +zone = ('caz507', 0.0029348603422598798) + +[fips0625030] +centroid = (0.73065245565672721, -2.0971770699544119) +description = Fort Bidwell CDP, CA +station = ('klkv', 0.0061455862273702075) +zone = ('caz070', 0.0044952663006489983) + +[fips0625058] +centroid = (0.68837651455626736, -2.1607807948879021) +description = Fort Bragg city, CA +station = ('kuki', 0.0097639607885433143) +zone = ('caz002', 0.0044564157756324481) + +[fips0625114] +centroid = (0.61519355002320608, -2.0365136139452935) +description = Fort Irwin CDP, CA +station = ('kbys', 0.0011362901131881883) +zone = ('caz523', 0.004624275235948115) + +[fips0625128] +centroid = (0.72620448405801963, -2.1439810583596608) +description = Fort Jones city, CA +station = ('ksiy', 0.0056069609801145072) +zone = ('caz080', 0.0043147214215061092) + +[fips0625296] +centroid = (0.7083490502251244, -2.1666972516126526) +description = Fortuna city, CA +station = ('kfot', 0.00056478948158312744) +zone = ('caz003', 0.006017475539197477) + +[fips0625300] +centroid = (0.64366517592415973, -2.0902282335238143) +description = Fort Washington CDP, CA +station = ('kfat', 0.0017869780909790277) +zone = ('caz090', 0.0057922182081198044) + +[fips0625338] +centroid = (0.65562979191901627, -2.1336786590378183) +description = Foster City city, CA +station = ('ksql', 0.00084050388724314163) +zone = ('caz508', 0.0012898372601168721) + +[fips0625380] +centroid = (0.5883606486635351, -2.0586355574945667) +description = Fountain Valley city, CA +station = ('ksna', 0.0013154435981695318) +zone = ('caz042', 0.0023448540081380575) + +[fips0625436] +centroid = (0.63922238795333053, -2.0886998486978428) +description = Fowler city, CA +station = ('kfat', 0.002832475421736) +zone = ('caz090', 0.0096768101627683935) + +[fips0625488] +centroid = (0.65149193042180309, -2.1036834654196288) +description = Franklin CDP, CA +station = ('kmer', 0.00083098640181871646) +zone = ('caz090', 0.0075300165956958213) + +[fips0625506] +centroid = (0.66963956727806739, -2.1199053408858277) +description = Franklin CDP, CA +station = ('ksac', 0.0023709583672966157) +zone = ('caz017', 0.0047303887960849274) + +[fips0625534] +centroid = (0.60762093291794572, -2.0761579999594741) +description = Frazier Park CDP, CA +station = ('ksdb', 0.0035963084889335064) +zone = ('caz053', 0.00413330165494018) + +[fips0625576] +centroid = (0.64473005366067904, -2.1257468182659127) +description = Freedom CDP, CA +station = ('kwvi', 0.00021830817471250064) +zone = ('caz529', 0.0015787696605812683) + +[fips0625590] +centroid = (0.67130188867083673, -2.1206137176693347) +description = Freeport CDP, CA +station = ('ksac', 0.00065057822378034112) +zone = ('caz017', 0.0029788707350040062) + +[fips0626000] +centroid = (0.65440025982086392, -2.1282739852096304) +description = Fremont city, CA +station = ('knuq', 0.0018466730697931243) +zone = ('caz508', 0.0035510781327599034) + +[fips0626028] +centroid = (0.66092365479299542, -2.1165855501156092) +description = French Camp CDP, CA +station = ('ksck', 0.00076454103534332016) +zone = ('caz019', 0.0037124426984871317) + +[fips0626056] +centroid = (0.71061801315930195, -2.140299966980987) +description = French Gulch CDP, CA +station = ('ko54', 0.003902488646965969) +zone = ('caz004', 0.0063623948770255359) + +[fips0626067] +centroid = (0.5864212213454264, -2.0438939132202769) +description = French Valley CDP, CA +station = ('kriv', 0.005643677381230729) +zone = ('caz048', 0.0047677363308988446) + +[fips0627000] +centroid = (0.64197876898771278, -2.090808311154007) +description = Fresno city, CA +station = ('kfat', 0.0010879422226306233) +zone = ('caz090', 0.006492068812558832) + +[fips0627014] +centroid = (0.64549796362497158, -2.0893602812867975) +description = Friant CDP, CA +station = ('kfat', 0.0035084211364206776) +zone = ('caz093', 0.0048117625309017078) + +[fips0627080] +centroid = (0.65121564480121241, -2.128178550606131) +description = Fruitdale CDP, CA +station = ('ksjc', 0.00099135339881953766) +zone = ('caz513', 0.0025097879736423021) + +[fips0627130] +centroid = (0.67252154220542293, -2.1198038150832392) +description = Fruitridge Pocket CDP, CA +station = ('ksac', 0.00082992676348238011) +zone = ('caz017', 0.0021952975725080767) + +[fips0627190] +centroid = (0.61614056567533826, -2.0754459928911229) +description = Fuller Acres CDP, CA +station = ('kbfl', 0.0029940141377356047) +zone = ('caz095', 0.0049618787128836769) + +[fips0628000] +centroid = (0.59141727868913785, -2.0582323166241858) +description = Fullerton city, CA +station = ('kful', 0.00086765742182073121) +zone = ('caz548', 0.0032104534510660945) + +[fips0628014] +centroid = (0.67184196335457391, -2.1428003605739789) +description = Fulton CDP, CA +station = ('ksts', 0.00060089351924138841) +zone = ('caz507', 0.0014819913081987135) + +[fips0628021] +centroid = (0.63552693251491288, -2.039906342024953) +description = Furnace Creek CDP, CA +station = ('kdra', 0.012455790055341127) +zone = ('caz522', 0.00312840658226173) + +[fips0628112] +centroid = (0.66789319082852172, -2.1171513334992285) +description = Galt city, CA +station = ('ksac', 0.0048656381898495348) +zone = ('caz018', 0.0066512427584514934) + +[fips0628154] +centroid = (0.69988237075723736, -2.160618392001004) +description = Garberville CDP, CA +station = ('kfot', 0.0091079269230111195) +zone = ('caz076', 0.011848385309206733) + +[fips0628168] +centroid = (0.59156917469393877, -2.0648557887756271) +description = Gardena city, CA +station = ('khhr', 0.00053906774084132596) +zone = ('caz041', 0.00059686159419839358) + +[fips0628182] +centroid = (0.66259117726693584, -2.1158560897547383) +description = Garden Acres CDP, CA +station = ('ksck', 0.0011125632024480139) +zone = ('caz019', 0.0044304963676248523) + +[fips0628210] +centroid = (0.61812200306854237, -2.1051120174123863) +description = Garden Farms CDP, CA +station = ('ksbp', 0.003196167094147022) +zone = ('caz034', 0.0023771200107474367) + +[fips0629000] +centroid = (0.58955096321339517, -2.0587986236065805) +description = Garden Grove city, CA +station = ('ksli', 0.0013011760128781402) +zone = ('caz042', 0.0028084092319200738) + +[fips0629070] +centroid = (0.60887243871138075, -2.0998710729213275) +description = Garey CDP, CA +station = ('ksmx', 0.0022030349573995858) +zone = ('caz035', 0.0032873603355143416) + +[fips0629112] +centroid = (0.59203912204833087, -2.033113660202531) +description = Garnet CDP, CA +station = ('kpsp', 0.0015445594039465921) +zone = ('caz061', 0.0041303327081001814) + +[fips0629154] +centroid = (0.73017725486128671, -2.1637899345045581) +description = Gasquet CDP, CA +station = ('kcec', 0.0034715217909178824) +zone = ('orz022', 0.0097819013810423426) + +[fips0629252] +centroid = (0.72451929885204913, -2.1384117301698393) +description = Gazelle CDP, CA +station = ('kmhs', 0.0043395274294186223) +zone = ('caz081', 0.0039514194521654998) + +[fips0629350] +centroid = (0.67913122625577305, -2.1089620392093607) +description = Georgetown CDP, CA +station = ('kpvf', 0.0035324506419738928) +zone = ('caz067', 0.0051747789872671974) + +[fips0629392] +centroid = (0.6992040834500346, -2.1318889286096536) +description = Gerber CDP, CA +station = ('krbl', 0.0020577405048109211) +zone = ('caz015', 0.0033864485720796924) + +[fips0629420] +centroid = (0.67574247752680838, -2.145070911757776) +description = Geyserville CDP, CA +station = ('ksts', 0.0039714414162588087) +zone = ('caz507', 0.0040656536850203727) + +[fips0629504] +centroid = (0.64588364648307728, -2.1220641735442043) +description = Gilroy city, CA +station = ('ke16', 0.0013218396291046766) +zone = ('caz529', 0.0044263033989514746) + +[fips0629644] +centroid = (0.59370734265397207, -2.0504627216595455) +description = Glen Avon CDP, CA +station = ('kral', 0.0012611595595352304) +zone = ('caz048', 0.004569128589216446) + +[fips0630000] +centroid = (0.59657785076814207, -2.0637790602534865) +description = Glendale city, CA +station = ('kbur', 0.0017744736592973911) +zone = ('caz547', 0.0034027206966902816) + +[fips0630014] +centroid = (0.59595023036912487, -2.0568174829193491) +description = Glendora city, CA +station = ('kpoc', 0.0012140573604952323) +zone = ('caz548', 0.0023014049218839025) + +[fips0630028] +centroid = (0.66942162801437088, -2.1388039754659327) +description = Glen Ellen CDP, CA +station = ('ko69', 0.0019848536899880775) +zone = ('caz506', 0.0013584106069443808) + +[fips0630282] +centroid = (0.61350644495505835, -2.0682266304264663) +description = Golden Hills CDP, CA +station = ('ktsp', 0.0010275809304348515) +zone = ('caz095', 0.0036509151014621783) + +[fips0630339] +centroid = (0.69396587912590169, -2.1034543735020121) +description = Gold Mountain CDP, CA +station = ('kblu', 0.0086907601271236784) +zone = ('caz071', 0.012304749921109399) + +[fips0630345] +centroid = (0.67416456025666538, -2.1161985582605647) +description = Gold River CDP, CA +station = ('kmhr', 0.0015084356853928506) +zone = ('caz017', 0.0042712200633959934) + +[fips0630378] +centroid = (0.60100194626268233, -2.0919122144526008) +description = Goleta city, CA +station = ('ksba', 0.00011463484716284804) +zone = ('caz039', 0.00076295392838403872) + +[fips0630392] +centroid = (0.63714953021390708, -2.1195787723294872) +description = Gonzales city, CA +station = ('ksns', 0.0035653195792918662) +zone = ('caz528', 0.0031062279561785569) + +[fips0630410] +centroid = (0.58940859670631007, -2.0468728935474587) +description = Good Hope CDP, CA +station = ('kriv', 0.0022921382268664956) +zone = ('caz048', 0.0014575055994524022) + +[fips0630420] +centroid = (0.69031880421434932, -2.109982672849342) +description = Goodyears Bar CDP, CA +station = ('kblu', 0.0053688701793431605) +zone = ('caz068', 0.012810041260112603) + +[fips0630476] +centroid = (0.63445845940013457, -2.0842905885019443) +description = Goshen CDP, CA +station = ('kvis', 0.00068077904197034577) +zone = ('caz094', 0.007363368343431943) + +[fips0630560] +centroid = (0.69381126040746754, -2.1056616739537168) +description = Graeagle CDP, CA +station = ('kblu', 0.0082205345556752522) +zone = ('caz068', 0.012207696209056837) + +[fips0630658] +centroid = (0.5939559822592112, -2.047502311635605) +description = Grand Terrace city, CA +station = ('ksbd', 0.0016666974137296115) +zone = ('caz048', 0.003352861016750986) + +[fips0630686] +centroid = (0.63432068310898215, -2.0892894383724587) +description = Grangeville CDP, CA +station = ('khjo', 0.001189731967444139) +zone = ('caz091', 0.0098937957489551275) + +[fips0630693] +centroid = (0.67644427441903532, -2.114796517819145) +description = Granite Bay CDP, CA +station = ('kmcc', 0.00352308059544748) +zone = ('caz017', 0.0058260603495434308) + +[fips0630703] +centroid = (0.57253025054855877, -2.0403885415906942) +description = Granite Hills CDP, CA +station = ('ksee', 0.0010527597318993566) +zone = ('caz050', 0.0036009358590572259) + +[fips0630714] +centroid = (0.68843405806170566, -2.1072412492866492) +description = Graniteville CDP, CA +station = ('kblu', 0.0028522907183615746) +zone = ('nvz002', 0.011784340682521493) + +[fips0630798] +centroid = (0.68458246546840462, -2.1128083958149055) +description = Grass Valley city, CA +station = ('kgoo', 0.00070203154834908726) +zone = ('caz067', 0.011238586331701616) + +[fips0630812] +centroid = (0.67086122794129321, -2.1444160293158427) +description = Graton CDP, CA +station = ('ksts', 0.0012819940955186677) +zone = ('caz507', 0.0030795487115639827) + +[fips0630882] +centroid = (0.65588673929149488, -2.1150542854963721) +description = Grayson CDP, CA +station = ('kmod', 0.0032957986568542055) +zone = ('caz019', 0.003687518275423715) + +[fips0630900] +centroid = (0.65900651532943477, -2.0966681493978228) +description = Greeley Hill CDP, CA +station = ('ko22', 0.0061980870217125551) +zone = ('caz093', 0.010463510334341746) + +[fips0630938] +centroid = (0.61755368895750806, -2.0790056442604432) +description = Greenacres CDP, CA +station = ('kbfl', 0.0013067366880723694) +zone = ('caz092', 0.0069856081479885241) + +[fips0630944] +centroid = (0.58878605521541616, -2.0434013114921941) +description = Green Acres CDP, CA +station = ('kriv', 0.0038076842761331142) +zone = ('caz048', 0.0030853014255961741) + +[fips0630987] +centroid = (0.61556209374805726, -2.0771206886682889) +description = Greenfield CDP, CA +station = ('kbfl', 0.0029215618089518305) +zone = ('caz095', 0.0064184641758714706) + +[fips0630994] +centroid = (0.63396104056331615, -2.1161231251302932) +description = Greenfield city, CA +station = ('ksns', 0.0077933677618536937) +zone = ('caz517', 0.0037487921423383103) + +[fips0631029] +centroid = (0.69643817291793675, -2.1076418547098594) +description = Greenhorn CDP, CA +station = ('kblu', 0.010843719736485435) +zone = ('caz068', 0.0094192591953518451) + +[fips0631092] +centroid = (0.6041878702792729, -2.0665575022496139) +description = Green Valley CDP, CA +station = ('kwjf', 0.0033767361186791338) +zone = ('caz088', 0.0036091142343456345) + +[fips0631099] +centroid = (0.66782999245630714, -2.1321377252945251) +description = Green Valley CDP, CA +station = ('kapc', 0.001996525807354686) +zone = ('caz506', 0.0068203845284641653) + +[fips0631134] +centroid = (0.72509578110398276, -2.1453772519480863) +description = Greenview CDP, CA +station = ('ksiy', 0.0070772809864683523) +zone = ('caz080', 0.0031805379151500102) + +[fips0631162] +centroid = (0.70046333850534859, -2.1108942234110732) +description = Greenville CDP, CA +station = ('kove', 0.01425760239962728) +zone = ('caz068', 0.0055112514087913159) + +[fips0631246] +centroid = (0.72674546631296788, -2.1384793965849394) +description = Grenada CDP, CA +station = ('ksiy', 0.0023504752536329964) +zone = ('caz081', 0.0017570719065473079) + +[fips0631260] +centroid = (0.68699941486985883, -2.1240148407826958) +description = Gridley city, CA +station = ('kove', 0.0026386356918815684) +zone = ('caz016', 0.0030986364761068619) + +[fips0631288] +centroid = (0.68197263973131239, -2.1275349778977506) +description = Grimes CDP, CA +station = ('kmyv', 0.0045216426471874627) +zone = ('caz016', 0.0052880147123935163) + +[fips0631302] +centroid = (0.67432010399960318, -2.1037402060736112) +description = Grizzly Flats CDP, CA +station = ('kpvf', 0.00327290097220349) +zone = ('caz069', 0.0036768965130912446) + +[fips0631372] +centroid = (0.66021871630811491, -2.0986504943622379) +description = Groveland CDP, CA +station = ('ko22', 0.0042829655014897557) +zone = ('caz093', 0.012359548856543057) + +[fips0631393] +centroid = (0.6129751318241663, -2.1052102794492735) +description = Grover Beach city, CA +station = ('ksbp', 0.0019722056989925131) +zone = ('caz034', 0.0039898376370243894) + +[fips0631414] +centroid = (0.61019557281731762, -2.104402418898403) +description = Guadalupe city, CA +station = ('ksmx', 0.0018677590401010651) +zone = ('caz035', 0.004687695655493259) + +[fips0631470] +centroid = (0.67225138269050677, -2.1465787540584516) +description = Guerneville CDP, CA +station = ('ksts', 0.0023848643080802909) +zone = ('caz505', 0.004924461759418867) + +[fips0631540] +centroid = (0.67766694737322741, -2.1327660263719506) +description = Guinda CDP, CA +station = ('kedu', 0.0076111737883026425) +zone = ('caz064', 0.0069791670132829465) + +[fips0631568] +centroid = (0.65021393053032284, -2.1117588595225114) +description = Gustine city, CA +station = ('kmod', 0.0063512703814638857) +zone = ('caz019', 0.0088124088146091222) + +[fips0631596] +centroid = (0.59333956687399181, -2.0590176798809985) +description = Hacienda Heights CDP, CA +station = ('kemt', 0.0017584077095538441) +zone = ('caz548', 0.0012191119270285884) + +[fips0631708] +centroid = (0.65391849658743584, -2.1369353736088699) +description = Half Moon Bay city, CA +station = ('khaf', 0.0010433463499271831) +zone = ('caz509', 0.0017355256957845944) + +[fips0631883] +centroid = (0.70297062614888617, -2.113525516697965) +description = Hamilton Branch CDP, CA +station = ('kcic', 0.013071568321453704) +zone = ('caz068', 0.0036619775364055162) + +[fips0631890] +centroid = (0.69363278303815845, -2.1295204819081119) +description = Hamilton City CDP, CA +station = ('kcic', 0.0024022094351821011) +zone = ('caz016', 0.0064902629584531052) + +[fips0631960] +centroid = (0.63401066027395037, -2.0883564377142201) +description = Hanford city, CA +station = ('khjo', 0.00037687260619062612) +zone = ('caz091', 0.0096719562561156432) + +[fips0632030] +centroid = (0.72982501251164922, -2.1536105634416889) +description = Happy Camp CDP, CA +station = ('kmfr', 0.01189997969141548) +zone = ('caz080', 0.0054248461980203463) + +[fips0632044] +centroid = (0.57294338743579831, -2.0392089782690261) +description = Harbison Canyon CDP, CA +station = ('ksee', 0.0019676377379645657) +zone = ('caz050', 0.0035785110423030785) + +[fips0632156] +centroid = (0.6353451564733178, -2.0895216195228516) +description = Hardwick CDP, CA +station = ('khjo', 0.0019535432228557073) +zone = ('caz091', 0.010904616029013424) + +[fips0632324] +centroid = (0.63969486603513792, -2.0761615604311481) +description = Hartland CDP, CA +station = ('kvis', 0.0085533109619005832) +zone = ('caz094', 0.0068695843076376538) + +[fips0632340] +centroid = (0.67056235776018169, -2.1284437184793865) +description = Hartley CDP, CA +station = ('kvcb', 0.00064691572228879862) +zone = ('caz018', 0.0054843331667616332) + +[fips0632385] +centroid = (0.60181743390238429, -2.0711244354901375) +description = Hasley Canyon CDP, CA +station = ('ksdb', 0.0047391656409344627) +zone = ('caz088', 0.0016409457568279304) + +[fips0632408] +centroid = (0.71191629377669052, -2.1201304883593348) +description = Hat Creek CDP, CA +station = ('krdd', 0.011845023123798181) +zone = ('caz014', 0.0026677539414744775) + +[fips0632506] +centroid = (0.59044469396346388, -2.0607546490058755) +description = Hawaiian Gardens city, CA +station = ('ksli', 0.00087747694639655268) +zone = ('caz041', 0.0037192686393760373) + +[fips0632548] +centroid = (0.59192448882305981, -2.0655637117735282) +description = Hawthorne city, CA +station = ('khhr', 0.00021616704124804997) +zone = ('caz041', 0.00072869208280386096) + +[fips0632562] +centroid = (0.70818254581448403, -2.1489127130539734) +description = Hayfork CDP, CA +station = ('ko54', 0.0040067895601442948) +zone = ('caz004', 0.0023260693975060815) + +[fips0633000] +centroid = (0.6567349169480865, -2.1311576880129453) +description = Hayward city, CA +station = ('khwd', 0.00068740789593330868) +zone = ('caz508', 0.0010084390604027079) + +[fips0633056] +centroid = (0.67409102953527889, -2.1444108631412568) +description = Healdsburg city, CA +station = ('ksts', 0.0022414551885116298) +zone = ('caz507', 0.0026516977700206204) + +[fips0633084] +centroid = (0.5712782037030556, -2.0162101813035513) +description = Heber CDP, CA +station = ('kipl', 0.0019802617867455603) +zone = ('caz033', 0.0054667820990193083) + +[fips0633182] +centroid = (0.58879076760439653, -2.0419410468669277) +description = Hemet city, CA +station = ('kriv', 0.0046888475493992981) +zone = ('caz048', 0.0040876753627102375) + +[fips0633294] +centroid = (0.6682596925181481, -2.1158808559768238) +description = Herald CDP, CA +station = ('kmhr', 0.0046611091472548143) +zone = ('caz017', 0.0074425824316006646) + +[fips0633308] +centroid = (0.663599052550085, -2.134344362521114) +description = Hercules city, CA +station = ('kapc', 0.0031176671592668174) +zone = ('caz006', 0.0050947032062689315) + +[fips0633336] +centroid = (0.70060804375363139, -2.0968346538084628) +description = Herlong CDP, CA +station = ('krts', 0.0089881028250676769) +zone = ('caz071', 0.0078354261531467604) + +[fips0633364] +centroid = (0.59106042867027508, -2.0664052048190849) +description = Hermosa Beach city, CA +station = ('klax', 0.0012027166482502481) +zone = ('caz041', 0.001769924324851643) + +[fips0633434] +centroid = (0.60034156603360533, -2.0475364677290666) +description = Hesperia city, CA +station = ('kvcv', 0.0036265816727678386) +zone = ('caz055', 0.0042977954452890288) + +[fips0633504] +centroid = (0.65678369890067989, -2.1074772003482263) +description = Hickman CDP, CA +station = ('kmod', 0.0027821277543351886) +zone = ('caz019', 0.0045964380514243418) + +[fips0633518] +centroid = (0.59626981760845765, -2.0710287041806654) +description = Hidden Hills city, CA +station = ('kvny', 0.002728981346592291) +zone = ('caz046', 0.0014534992121293543) + +[fips0633532] +centroid = (0.57986197731045896, -2.0441267226892004) +description = Hidden Meadows CDP, CA +station = ('kcrq', 0.0028616101878109796) +zone = ('caz050', 0.0044759841840596708) + +[fips0633549] +centroid = (0.67721389480599481, -2.1389258867141843) +description = Hidden Valley Lake CDP, CA +station = ('ksts', 0.006384411322342666) +zone = ('caz064', 0.0037286066942836412) + +[fips0633574] +centroid = (0.59359654915305549, -2.0474429180811597) +description = Highgrove CDP, CA +station = ('ksbd', 0.0019130268494921775) +zone = ('caz048', 0.0029966807621507039) + +[fips0633588] +centroid = (0.59535348484457551, -2.0449105849628562) +description = Highland city, CA +station = ('ksbd', 0.001010418040548868) +zone = ('caz055', 0.0023063485862236605) + +[fips0633633] +centroid = (0.65489415309259325, -2.1353191463616454) +description = Highlands-Baywood Park CDP, CA +station = ('ksql', 0.0013161470340673717) +zone = ('caz509', 0.0026770546701729314) + +[fips0633798] +centroid = (0.65549749596171514, -2.1355621136468157) +description = Hillsborough town, CA +station = ('ksfo', 0.001043032896268303) +zone = ('caz509', 0.0032318435556568455) + +[fips0633861] +centroid = (0.65283239564721229, -2.1092377837778833) +description = Hilmar-Irwin CDP, CA +station = ('kmod', 0.0039506353739721433) +zone = ('caz019', 0.0067101916376540675) + +[fips0633935] +centroid = (0.72943704327222336, -2.1653621620013395) +description = Hiouchi CDP, CA +station = ('kcec', 0.0021835525692854821) +zone = ('orz022', 0.010042486370817432) + +[fips0634120] +centroid = (0.64326633328349392, -2.1187975629562943) +description = Hollister city, CA +station = ('kcvh', 0.00060852004869839296) +zone = ('caz528', 0.0034697012980285311) + +[fips0634246] +centroid = (0.57270851847835735, -2.0137315519663317) +description = Holtville city, CA +station = ('kipl', 0.0029590914758155693) +zone = ('caz033', 0.0042072894058558033) + +[fips0634281] +centroid = (0.6336255359212053, -2.0880893150722026) +description = Home Garden CDP, CA +station = ('khjo', 0.00028892448810722876) +zone = ('caz091', 0.0093287695883774099) + +[fips0634302] +centroid = (0.59128681532755123, -2.0509608735346498) +description = Home Gardens CDP, CA +station = ('kajo', 0.0013386429660014875) +zone = ('caz048', 0.0039499641753539712) + +[fips0634316] +centroid = (0.58897669752961157, -2.0440116705849092) +description = Homeland CDP, CA +station = ('kriv', 0.0033418040144283525) +zone = ('caz048', 0.0025804107006714462) + +[fips0634392] +centroid = (0.59817702614857438, -2.0318168282084219) +description = Homestead Valley CDP, CA +station = ('knxp', 0.0036051728028495939) +zone = ('caz525', 0.0047672688444251321) + +[fips0634405] +centroid = (0.62639936667246565, -2.0487794214091668) +description = Homewood Canyon CDP, CA +station = ('knid', 0.0057207686676606466) +zone = ('caz098', 0.0074580053347679089) + +[fips0634428] +centroid = (0.68648319883699649, -2.1212514435247205) +description = Honcut CDP, CA +station = ('kove', 0.0031049718272798659) +zone = ('caz016', 0.0052817160480153336) + +[fips0634484] +centroid = (0.66967047705912019, -2.1208453577676591) +description = Hood CDP, CA +station = ('ksac', 0.0022910906646035627) +zone = ('caz017', 0.0045400065388422886) + +[fips0634652] +centroid = (0.68013438914994184, -2.1487952523953142) +description = Hopland CDP, CA +station = ('kuki', 0.0030841552361244909) +zone = ('caz064', 0.0061576531635726735) + +[fips0634694] +centroid = (0.73137158366842647, -2.1390461922595243) +description = Hornbrook CDP, CA +station = ('ksiy', 0.0026847717441636624) +zone = ('caz081', 0.0029381345545255164) + +[fips0634708] +centroid = (0.65455758379963858, -2.098618240677661) +description = Hornitos CDP, CA +station = ('kmce', 0.0052490467499946725) +zone = ('caz090', 0.0080850288923690738) + +[fips0634904] +centroid = (0.65625249048954282, -2.1095020440799277) +description = Hughson city, CA +station = ('kmod', 0.0012010736935199906) +zone = ('caz019', 0.0036659009100845235) + +[fips0634928] +centroid = (0.71073858050402983, -2.1676534302433579) +description = Humboldt Hill CDP, CA +station = ('kfot', 0.0030612065864894255) +zone = ('caz001', 0.0054390436479204779) + +[fips0636000] +centroid = (0.58801135592033349, -2.0596513565725201) +description = Huntington Beach city, CA +station = ('ksli', 0.0017232934125516869) +zone = ('caz042', 0.0031934631245161605) + +[fips0636056] +centroid = (0.59302849684140879, -2.0632783427443817) +description = Huntington Park city, CA +station = ('kcqt', 0.0013597249630141251) +zone = ('caz041', 0.0014873949085018011) + +[fips0636084] +centroid = (0.63187863587288406, -2.0960737251611783) +description = Huron city, CA +station = ('knlc', 0.003054208250186455) +zone = ('caz091', 0.0088145950879910378) + +[fips0636098] +centroid = (0.70906058605457745, -2.1549376070851505) +description = Hyampom CDP, CA +station = ('kfot', 0.0088881734864798452) +zone = ('caz003', 0.0047732066133644342) + +[fips0636126] +centroid = (0.70786845636229523, -2.1656438057827341) +description = Hydesville CDP, CA +station = ('kfot', 0.00067206217926704019) +zone = ('caz003', 0.0056930255463334177) + +[fips0636168] +centroid = (0.62499521438265115, -2.0711903042161075) +description = Idlewild CDP, CA +station = ('kptv', 0.0068270949084789125) +zone = ('caz095', 0.0081026331997348499) + +[fips0636203] +centroid = (0.58894755053110315, -2.0373348786248195) +description = Idyllwild-Pine Cove CDP, CA +station = ('kpsp', 0.0036901053564226786) +zone = ('caz056', 0.0019407515386363748) + +[fips0636280] +centroid = (0.57312254548351549, -2.0171094796539339) +description = Imperial city, CA +station = ('kipl', 0.0001148580964154072) +zone = ('caz033', 0.0038711000522137526) + +[fips0636294] +centroid = (0.56837264937750542, -2.0440347961974976) +description = Imperial Beach city, CA +station = ('knrs', 3.8454183834046247e-05) +zone = ('caz043', 0.0074267858939106425) + +[fips0636350] +centroid = (0.64281017403019269, -2.0631162714700415) +description = Independence CDP, CA +station = ('kbih', 0.009618695801170505) +zone = ('caz519', 0.0018610110368495899) + +[fips0636364] +centroid = (0.69915708173327851, -2.1115048093965911) +description = Indian Falls CDP, CA +station = ('kove', 0.012959708220144644) +zone = ('caz068', 0.0054938522845494071) + +[fips0636420] +centroid = (0.7122691295382737, -2.1655768200460424) +description = Indianola CDP, CA +station = ('kacv', 0.0030383534180538716) +zone = ('caz001', 0.0037468424538976315) + +[fips0636434] +centroid = (0.58803970006738593, -2.0305375193200024) +description = Indian Wells city, CA +station = ('ktrm', 0.002877835091705941) +zone = ('caz061', 0.0010419368788742579) + +[fips0636448] +centroid = (0.58869830006062596, -2.0287008395349586) +description = Indio city, CA +station = ('ktrm', 0.0021176125063637166) +zone = ('caz061', 0.00098807828189989067) + +[fips0636452] +centroid = (0.59064856587338943, -2.0289119371079876) +description = Indio Hills CDP, CA +station = ('kpsp', 0.003654835644545708) +zone = ('caz061', 0.0019032590865763512) + +[fips0636490] +centroid = (0.5938697804474552, -2.058447027028766) +description = Industry city, CA +station = ('kemt', 0.001673895878734413) +zone = ('caz548', 0.00084192420716781087) + +[fips0636546] +centroid = (0.59264518763108598, -2.0654972321823197) +description = Inglewood city, CA +station = ('klax', 0.00069085090567614564) +zone = ('caz041', 0.00080114634813379792) + +[fips0636613] +centroid = (0.6449164548247921, -2.1247158348234669) +description = Interlaken CDP, CA +station = ('kwvi', 0.00071289210929616914) +zone = ('caz529', 0.0023170941682005802) + +[fips0636616] +centroid = (0.6647077205975368, -2.1442069563247466) +description = Inverness CDP, CA +station = ('ko69', 0.0045218521342105227) +zone = ('caz505', 0.0029801932594011307) + +[fips0636658] +centroid = (0.6222864459302635, -2.0563377791744384) +description = Inyokern CDP, CA +station = ('kiyk', 0.00029077028264070488) +zone = ('caz098', 0.00054020660764778593) + +[fips0636672] +centroid = (0.66954230007885362, -2.1107913886115459) +description = Ione city, CA +station = ('kmhr', 0.005920897147965635) +zone = ('caz067', 0.0050526710001971235) + +[fips0636735] +centroid = (0.69430040638363133, -2.1028130348150742) +description = Iron Horse CDP, CA +station = ('krts', 0.008365966470654896) +zone = ('caz071', 0.011995730046849578) + +[fips0636770] +centroid = (0.5877989493503657, -2.0554961465025419) +description = Irvine city, CA +station = ('ksna', 0.0013884061810168996) +zone = ('caz042', 0.00050466964860746181) + +[fips0636826] +centroid = (0.59536521345714899, -2.0588518736020589) +description = Irwindale city, CA +station = ('kemt', 0.0011255290657091683) +zone = ('caz548', 0.00082015111455717817) + +[fips0636868] +centroid = (0.60063963336326087, -2.0919145357405058) +description = Isla Vista CDP, CA +station = ('ksba', 0.00035404477647498275) +zone = ('caz039', 0.00099410329151434725) + +[fips0636882] +centroid = (0.66603949408327112, -2.1224069038494187) +description = Isleton city, CA +station = ('ksuu', 0.0050767246948580994) +zone = ('caz018', 0.0021823477947032956) + +[fips0636910] +centroid = (0.63509981554036488, -2.0807844489274907) +description = Ivanhoe CDP, CA +station = ('kvis', 0.0028219717126488747) +zone = ('caz094', 0.004904188200818174) + +[fips0636980] +centroid = (0.66930678534958954, -2.1078754321236541) +description = Jackson city, CA +station = ('kpvf', 0.0064918862781971967) +zone = ('caz067', 0.0047255391757185551) + +[fips0637022] +centroid = (0.56961397990140139, -2.0279103799167308) +description = Jacumba CDP, CA +station = ('kczz', 0.0040846933348352623) +zone = ('caz062', 0.0072950655568834056) + +[fips0637106] +centroid = (0.66250569104017309, -2.1015297814825455) +description = Jamestown CDP, CA +station = ('ko22', 0.0012525549159526346) +zone = ('caz019', 0.009389519383330663) + +[fips0637120] +centroid = (0.57103963464760044, -2.0396853833416504) +description = Jamul CDP, CA +station = ('ksee', 0.0024513129060115537) +zone = ('caz050', 0.0051915026947594763) + +[fips0637134] +centroid = (0.70291673038158442, -2.1039753368304401) +description = Janesville CDP, CA +station = ('krts', 0.013883896095955986) +zone = ('caz071', 0.0033482909471675157) + +[fips0637274] +centroid = (0.67109716154957777, -2.1488742459972596) +description = Jenner CDP, CA +station = ('ksts', 0.0042509233485981991) +zone = ('caz505', 0.0043893978129390032) + +[fips0637400] +centroid = (0.61735372658510701, -2.0532395928593461) +description = Johannesburg CDP, CA +station = ('knid', 0.0055000577731806246) +zone = ('caz098', 0.0049998844195252986) + +[fips0637484] +centroid = (0.70476660485577336, -2.1046244596858417) +description = Johnstonville CDP, CA +station = ('krts', 0.015632346429763411) +zone = ('caz071', 0.0015854006680134068) + +[fips0637512] +centroid = (0.69411238206331416, -2.106608619792679) +description = Johnsville CDP, CA +station = ('kblu', 0.0084888747408779219) +zone = ('caz068', 0.011457567740497132) + +[fips0637554] +centroid = (0.59554946786628193, -2.0300563844051052) +description = Joshua Tree CDP, CA +station = ('knxp', 0.0037552469221377918) +zone = ('caz525', 0.0049716046296277468) + +[fips0637582] +centroid = (0.57724311076784141, -2.0348613456490154) +description = Julian CDP, CA +station = ('krnm', 0.0048450395923664959) +zone = ('caz058', 0.00082829067639271991) + +[fips0637596] +centroid = (0.71077161958677004, -2.1476401585897595) +description = Junction City CDP, CA +station = ('ko54', 0.0017461261778326787) +zone = ('caz004', 0.00084161882849244168) + +[fips0637624] +centroid = (0.65917258340776197, -2.0788142689079621) +description = June Lake CDP, CA +station = ('kmmh', 0.0046123074563419819) +zone = ('caz073', 0.0042623916304901444) + +[fips0637904] +centroid = (0.69823500683615736, -2.1110193984250265) +description = Keddie CDP, CA +station = ('kove', 0.012545457307604365) +zone = ('caz068', 0.0062696309742648086) + +[fips0637918] +centroid = (0.63677678024555862, -2.0572553162155045) +description = Keeler CDP, CA +station = ('knid', 0.014194098579475466) +zone = ('caz520', 0.0020358676318294258) + +[fips0637946] +centroid = (0.61491056233828778, -2.0701885550386327) +description = Keene CDP, CA +station = ('ktsp', 0.0030634963611355947) +zone = ('caz095', 0.0021876834510915393) + +[fips0638024] +centroid = (0.68990776172221213, -2.1199861496301948) +description = Kelly Ridge CDP, CA +station = ('kove', 0.0020866391077721462) +zone = ('caz016', 0.0067425650775978837) + +[fips0638044] +centroid = (0.68015802090801392, -2.1438120755814825) +description = Kelseyville CDP, CA +station = ('kuki', 0.0057506282908956459) +zone = ('caz064', 0.002310523556996933) + +[fips0638065] +centroid = (0.66199118542997781, -2.1161365292589487) +description = Kennedy CDP, CA +station = ('ksck', 0.00053896851495269335) +zone = ('caz019', 0.0041094284627783469) + +[fips0638076] +centroid = (0.6284518564195184, -2.061407454505999) +description = Kennedy Meadows CDP, CA +station = ('kiyk', 0.0071227430198356504) +zone = ('caz097', 0.0065681020160559232) + +[fips0638086] +centroid = (0.6616596252319763, -2.1342365360799258) +description = Kensington CDP, CA +station = ('koak', 0.0034476002546943814) +zone = ('caz006', 0.0034797977495173251) + +[fips0638114] +centroid = (0.66209808684666238, -2.1390544825734712) +description = Kentfield CDP, CA +station = ('kdvo', 0.0035705283501896727) +zone = ('caz006', 0.0035222761889807646) + +[fips0638156] +centroid = (0.67047528328379979, -2.1387043695255215) +description = Kenwood CDP, CA +station = ('ko69', 0.0030062297585621432) +zone = ('caz506', 0.0016202322551852673) + +[fips0638226] +centroid = (0.64097228996796518, -2.0954841354865623) +description = Kerman city, CA +station = ('kmae', 0.0045719028118942646) +zone = ('caz090', 0.0057399251526916413) + +[fips0638310] +centroid = (0.62405224789438374, -2.0670414645978994) +description = Kernville CDP, CA +station = ('knid', 0.010459367058444542) +zone = ('caz095', 0.007306308679692463) + +[fips0638352] +centroid = (0.70882985352746364, -2.1373437981071288) +description = Keswick CDP, CA +station = ('krdd', 0.0030697635245315498) +zone = ('caz013', 0.0063510873753575168) + +[fips0638394] +centroid = (0.6284753660045429, -2.0937467474826645) +description = Kettleman City CDP, CA +station = ('knlc', 0.0056638241534869545) +zone = ('caz091', 0.0049415435926199154) + +[fips0638422] +centroid = (0.65557800800010957, -2.110258469777742) +description = Keyes CDP, CA +station = ('kmod', 0.0011127748007111321) +zone = ('caz019', 0.0038810937634524757) + +[fips0638520] +centroid = (0.63209338118404945, -2.1141515663006554) +description = King City city, CA +station = ('ksns', 0.010245697500849651) +zone = ('caz516', 0.0022822781316978015) + +[fips0638548] +centroid = (0.68502473190085988, -2.0947459135728463) +description = Kings Beach CDP, CA +station = ('ktrk', 0.0019322830894303062) +zone = ('nvz002', 0.0015392126016477929) + +[fips0638562] +centroid = (0.63739288147151263, -2.0866401856475645) +description = Kingsburg city, CA +station = ('khjo', 0.0036609054838343336) +zone = ('caz094', 0.010142216024952086) + +[fips0638604] +centroid = (0.68626799974022556, -2.1020613215062403) +description = Kingvale CDP, CA +station = ('kblu', 0.0035802081777555985) +zone = ('nvz002', 0.0073180351366466398) + +[fips0638646] +centroid = (0.6752553735858694, -2.0953537942980236) +description = Kirkwood CDP, CA +station = ('ktvl', 0.0035240980655897015) +zone = ('caz069', 0.0042398104566808243) + +[fips0638702] +centroid = (0.72487735314809565, -2.164338927820773) +description = Klamath CDP, CA +station = ('kcec', 0.0052775046690096772) +zone = ('caz001', 0.0089432357171795769) + +[fips0638772] +centroid = (0.66256953518421113, -2.123168600441574) +description = Knightsen CDP, CA +station = ('klvk', 0.0051329953203170719) +zone = ('caz018', 0.0035206758643160385) + +[fips0638800] +centroid = (0.67715209269718157, -2.1243733139577632) +description = Knights Landing CDP, CA +station = ('ksmf', 0.0023423149706315043) +zone = ('caz017', 0.0036587932053045689) + +[fips0639003] +centroid = (0.59708638735229569, -2.0629815669583729) +description = La Cañada Flintridge city, CA +station = ('kmws', 0.0019668675808742022) +zone = ('caz054', 0.0038341919686167404) + +[fips0639045] +centroid = (0.59747884208789914, -2.063603549943906) +description = La Crescenta-Montrose CDP, CA +station = ('kbur', 0.0019750332396297858) +zone = ('caz054', 0.0034324884759491369) + +[fips0639094] +centroid = (0.65274582731631337, -2.1327801460855995) +description = Ladera CDP, CA +station = ('kpao', 0.0016378277984022533) +zone = ('caz509', 0.0027134152746036461) + +[fips0639108] +centroid = (0.59334715905623803, -2.0660490005720455) +description = Ladera Heights CDP, CA +station = ('klax', 0.0011040391768186405) +zone = ('caz041', 0.0016156925622971899) + +[fips0639114] +centroid = (0.58555110490013729, -2.0532327511686779) +description = Ladera Ranch CDP, CA +station = ('ksna', 0.0040188309897843224) +zone = ('caz057', 0.0030195051910788398) + +[fips0639122] +centroid = (0.66132277668634154, -2.1313878620346984) +description = Lafayette city, CA +station = ('kccr', 0.0021294795121190742) +zone = ('caz510', 0.0033033725833701102) + +[fips0639178] +centroid = (0.58543446454622639, -2.0553427669678768) +description = Laguna Beach city, CA +station = ('ksna', 0.0028808585913274211) +zone = ('caz042', 0.0028187038622552426) + +[fips0639220] +centroid = (0.58628267710940318, -2.0542421797948616) +description = Laguna Hills city, CA +station = ('ksna', 0.0029111285311670095) +zone = ('caz042', 0.002345343356406977) + +[fips0639248] +centroid = (0.58519226520592715, -2.0542730372160367) +description = Laguna Niguel city, CA +station = ('ksna', 0.0036108411556573473) +zone = ('caz042', 0.0032953658785930106) + +[fips0639259] +centroid = (0.58657028991683935, -2.0547736849119715) +description = Laguna Woods city, CA +station = ('ksna', 0.0023832189537159078) +zone = ('caz042', 0.0018703793928815634) + +[fips0639283] +centroid = (0.66353971135551726, -2.1413671660054114) +description = Lagunitas-Forest Knolls CDP, CA +station = ('kdvo', 0.0027903524002691627) +zone = ('caz505', 0.0052502013967528757) + +[fips0639290] +centroid = (0.59215403452628212, -2.0586429751438877) +description = La Habra city, CA +station = ('kful', 0.001164100728205155) +zone = ('caz548', 0.0024260428439962754) + +[fips0639304] +centroid = (0.59269564509976103, -2.0585979281958937) +description = La Habra Heights city, CA +station = ('kful', 0.0016859367185848644) +zone = ('caz548', 0.0018972907274960571) + +[fips0639318] +centroid = (0.65129531908156602, -2.1338026821344651) +description = La Honda CDP, CA +station = ('kpao', 0.0032720692410054381) +zone = ('caz509', 0.002118094601306411) + +[fips0639411] +centroid = (0.70263065346389009, -2.1144132958752846) +description = Lake Almanor Country Club CDP, CA +station = ('kcic', 0.012333328870401644) +zone = ('caz068', 0.0029066832707694617) + +[fips0639420] +centroid = (0.70303974118726509, -2.1141950599056152) +description = Lake Almanor Peninsula CDP, CA +station = ('kcic', 0.012726024444188543) +zone = ('caz068', 0.003226375262842765) + +[fips0639425] +centroid = (0.70220831869149258, -2.1153752689991063) +description = Lake Almanor West CDP, CA +station = ('kcic', 0.011500811516258359) +zone = ('caz068', 0.0020729972079211877) + +[fips0639444] +centroid = (0.59784691457385231, -2.0451436213245824) +description = Lake Arrowhead CDP, CA +station = ('ksbd', 0.0028053972150669146) +zone = ('caz055', 0.0012587760856976628) + +[fips0639460] +centroid = (0.70439975410029665, -2.1329330194747813) +description = Lake California CDP, CA +station = ('krdd', 0.0026541980310809394) +zone = ('caz015', 0.0026926462046907816) + +[fips0639472] +centroid = (0.72684831856578791, -2.0982721767935755) +description = Lake City CDP, CA +station = ('kaat', 0.0053138357050255009) +zone = ('caz070', 0.001868660798295525) + +[fips0639483] +centroid = (0.69555161547109368, -2.1024055877011962) +description = Lake Davis CDP, CA +station = ('krts', 0.0084496746251494295) +zone = ('caz071', 0.010777624212633554) + +[fips0639484] +centroid = (0.65702774828998622, -2.1002741218054908) +description = Lake Don Pedro CDP, CA +station = ('kmer', 0.0058060109105513048) +zone = ('caz090', 0.010806446808826713) + +[fips0639486] +centroid = (0.5878769655679299, -2.0478223701138361) +description = Lake Elsinore city, CA +station = ('kriv', 0.003970092032571859) +zone = ('caz057', 0.0020528419833422086) + +[fips0639496] +centroid = (0.58760424041901327, -2.0537040424265944) +description = Lake Forest city, CA +station = ('ksna', 0.0028908719418823214) +zone = ('caz042', 0.0018680945551752643) + +[fips0639514] +centroid = (0.71390345584984116, -2.1362797581286506) +description = Lakehead CDP, CA +station = ('ko86', 0.0041133048069643676) +zone = ('caz013', 0.0023545270234695778) + +[fips0639556] +centroid = (0.60532233429306914, -2.0673763234681868) +description = Lake Hughes CDP, CA +station = ('ksdb', 0.0039768436976683908) +zone = ('caz088', 0.004277347885597014) + +[fips0639570] +centroid = (0.62198469595588624, -2.0679116508563586) +description = Lake Isabella CDP, CA +station = ('ktsp', 0.0087082300364756532) +zone = ('caz095', 0.0051262494851054639) + +[fips0639598] +centroid = (0.58728507205870106, -2.0484374939554089) +description = Lakeland Village CDP, CA +station = ('kriv', 0.0046979138170560398) +zone = ('caz057', 0.00134457559595728) + +[fips0639612] +centroid = (0.60408992240165094, -2.056594307667897) +description = Lake Los Angeles CDP, CA +station = ('kgxa', 0.0024819915853452317) +zone = ('caz059', 0.00348887930882678) + +[fips0639645] +centroid = (0.5903570260751364, -2.0484640229600388) +description = Lake Mathews CDP, CA +station = ('kriv', 0.0021579329188067342) +zone = ('caz048', 0.0018888062972193) + +[fips0639670] +centroid = (0.62360217984017197, -2.1095820150662541) +description = Lake Nacimiento CDP, CA +station = ('kprb', 0.0035326347895624911) +zone = ('caz516', 0.0069905304946115895) + +[fips0639690] +centroid = (0.68135465354976632, -2.1129189973296048) +description = Lake of the Pines CDP, CA +station = ('kaun', 0.0015505936748944414) +zone = ('caz067', 0.0083265204166593967) + +[fips0639696] +centroid = (0.60785737267171325, -2.0769256306710862) +description = Lake of the Woods CDP, CA +station = ('ksdb', 0.0042688363722396911) +zone = ('caz053', 0.0039755724408015039) + +[fips0639710] +centroid = (0.68137013462023144, -2.1453835351333934) +description = Lakeport city, CA +station = ('kuki', 0.0041130373796702414) +zone = ('caz064', 0.0035667841553526109) + +[fips0639715] +centroid = (0.58501228685346152, -2.0387558035287459) +description = Lake Riverside CDP, CA +station = ('kpsp', 0.0071202201278231445) +zone = ('caz056', 0.0034777836841021121) + +[fips0639724] +centroid = (0.57809427293745408, -2.0456755627740053) +description = Lake San Marcos CDP, CA +station = ('kcrq', 0.0011093283198363229) +zone = ('caz043', 0.0025477957474057747) + +[fips0639735] +centroid = (0.59572185403650146, -2.0749357807908875) +description = Lake Sherwood CDP, CA +station = ('kcma', 0.0032190389617825794) +zone = ('caz045', 0.0022177425519419886) + +[fips0639766] +centroid = (0.57345614771674169, -2.040363845181778) +description = Lakeside CDP, CA +station = ('ksee', 0.001130192912406094) +zone = ('caz050', 0.0027123270130144082) + +[fips0639836] +centroid = (0.59041811259895605, -2.0441878092130201) +description = Lakeview CDP, CA +station = ('kriv', 0.0022200428820441163) +zone = ('caz048', 0.0017444496555168577) + +[fips0639885] +centroid = (0.68474921422514012, -2.1152994344431071) +description = Lake Wildwood CDP, CA +station = ('kgoo', 0.0026364946583239787) +zone = ('caz017', 0.011685715239404999) + +[fips0639892] +centroid = (0.59074394811701092, -2.0616159689917346) +description = Lakewood city, CA +station = ('klgb', 0.00066994252159912574) +zone = ('caz041', 0.0029471641294322587) + +[fips0640004] +centroid = (0.57193558196581917, -2.0424178533652801) +description = La Mesa city, CA +station = ('ksee', 0.0012280437415632258) +zone = ('caz050', 0.0042029650666378848) + +[fips0640032] +centroid = (0.59170230840928106, -2.0596449163075801) +description = La Mirada city, CA +station = ('kful', 0.00072051870215183533) +zone = ('caz548', 0.0029012911394053183) + +[fips0640088] +centroid = (0.61549283908333807, -2.0754764663398628) +description = Lamont CDP, CA +station = ('kbfl', 0.0035005230362104246) +zone = ('caz095', 0.0051408283409379576) + +[fips0640116] +centroid = (0.6359581335599106, -2.0932119087866834) +description = Lanare CDP, CA +station = ('knlc', 0.0018389102173032104) +zone = ('caz089', 0.0086095347727991618) + +[fips0640130] +centroid = (0.60551681633161891, -2.0625481667985173) +description = Lancaster city, CA +station = ('kwjf', 0.00091326895238168703) +zone = ('caz059', 0.0016127672493580706) + +[fips0640256] +centroid = (0.59080274825951062, -2.0601847640985143) +description = La Palma city, CA +station = ('kful', 0.00086691181610582023) +zone = ('caz548', 0.0038758303272135339) + +[fips0640312] +centroid = (0.69241588712379054, -2.1115908541287145) +description = La Porte CDP, CA +station = ('kblu', 0.0078040161503403448) +zone = ('caz068', 0.010376449468655034) + +[fips0640326] +centroid = (0.57093760269952876, -2.0420999765486147) +description = La Presa CDP, CA +station = ('mmml', 0.0013795672984468689) +zone = ('caz050', 0.005142432972652055) + +[fips0640340] +centroid = (0.59397626298511941, -2.0586772883169817) +description = La Puente city, CA +station = ('kemt', 0.001457460341265844) +zone = ('caz548', 0.00065203952850444494) + +[fips0640354] +centroid = (0.58715960033877523, -2.0293631396262133) +description = La Quinta city, CA +station = ('ktrm', 0.0016845735294815545) +zone = ('caz061', 0.0018043366597778943) + +[fips0640410] +centroid = (0.67314055813122775, -2.1180293039261513) +description = La Riviera CDP, CA +station = ('kmhr', 0.00080368336982578059) +zone = ('caz017', 0.00302108936337501) + +[fips0640426] +centroid = (0.67217816612838555, -2.142454506129404) +description = Larkfield-Wikiup CDP, CA +station = ('ksts', 0.00089060024851855368) +zone = ('caz507', 0.0010566730290601494) + +[fips0640438] +centroid = (0.66219514460636586, -2.138550553658543) +description = Larkspur city, CA +station = ('kdvo', 0.0034979535179704866) +zone = ('caz006', 0.0034503398630980468) + +[fips0640508] +centroid = (0.64450427786864106, -2.1265860249301487) +description = La Selva Beach CDP, CA +station = ('kwvi', 0.00085835487444083851) +zone = ('caz529', 0.0011504521783341913) + +[fips0640526] +centroid = (0.5861269239269552, -2.0529270567501912) +description = Las Flores CDP, CA +station = ('ksna', 0.0039396018751988397) +zone = ('caz057', 0.0025695339382846771) + +[fips0640536] +centroid = (0.69939079877341304, -2.1320472997859796) +description = Las Flores CDP, CA +station = ('krbl', 0.0018377462051975102) +zone = ('caz015', 0.0031640316568151607) + +[fips0640592] +centroid = (0.64348217815208819, -2.1246174157069468) +description = Las Lomas CDP, CA +station = ('kwvi', 0.0013376104916817519) +zone = ('caz529', 0.0030055572279792356) + +[fips0640704] +centroid = (0.66000131809648643, -2.1173028280783015) +description = Lathrop city, CA +station = ('ksck', 0.0018375132236140776) +zone = ('caz019', 0.0038758308025747964) + +[fips0640746] +centroid = (0.63588901852153168, -2.0890125244333375) +description = Laton CDP, CA +station = ('khjo', 0.0021944016338616996) +zone = ('caz091', 0.011474895390775645) + +[fips0640830] +centroid = (0.59551543394586803, -2.0554730034366604) +description = La Verne city, CA +station = ('kpoc', 0.00040718983541046018) +zone = ('caz548', 0.0030981237053256307) + +[fips0640872] +centroid = (0.64367507194101858, -2.0963987752810698) +description = La Vina CDP, CA +station = ('kmae', 0.0018060504569503034) +zone = ('caz090', 0.0029869864844445696) + +[fips0640886] +centroid = (0.59146454220528177, -2.0656519381672167) +description = Lawndale city, CA +station = ('khhr', 0.00057036674582290603) +zone = ('caz041', 0.0010310840562510499) + +[fips0640928] +centroid = (0.69223559461205952, -2.155398147114874) +description = Laytonville CDP, CA +station = ('kuki', 0.010052239938875804) +zone = ('caz076', 0.0033765731661692536) + +[fips0640956] +centroid = (0.60815331069968148, -2.0751830066794321) +description = Lebec CDP, CA +station = ('ksdb', 0.0030940632061562997) +zone = ('caz053', 0.005057736943449069) + +[fips0640998] +centroid = (0.6624505909956877, -2.0792749485640258) +description = Lee Vining CDP, CA +station = ('kmmh', 0.0072222184756288938) +zone = ('caz073', 0.0034115933039921705) + +[fips0641026] +centroid = (0.69575000704716794, -2.1594116888094677) +description = Leggett CDP, CA +station = ('kfot', 0.013217351826974786) +zone = ('caz076', 0.0080374053348551185) + +[fips0641040] +centroid = (0.64976539836585268, -2.098828273599846) +description = Le Grand CDP, CA +station = ('kmce', 0.0035473366080091507) +zone = ('caz090', 0.0036442675509276296) + +[fips0641110] +centroid = (0.6349329446105817, -2.077487137998038) +description = Lemon Cove CDP, CA +station = ('kvis', 0.0052966123872369023) +zone = ('caz094', 0.0026873106832052416) + +[fips0641124] +centroid = (0.57129995050553539, -2.042635722815807) +description = Lemon Grove city, CA +station = ('mmml', 0.0018127235213067792) +zone = ('caz050', 0.0048632805914478978) + +[fips0641142] +centroid = (0.67225265678086077, -2.1198306931537201) +description = Lemon Hill CDP, CA +station = ('ksac', 0.00065559203950240838) +zone = ('caz017', 0.0023906190624746657) + +[fips0641152] +centroid = (0.63348390245240593, -2.090874005347052) +description = Lemoore city, CA +station = ('khjo', 0.0024147117048529195) +zone = ('caz091', 0.0090459119290813919) + +[fips0641166] +centroid = (0.63291358121273178, -2.0927343517967527) +description = Lemoore Station CDP, CA +station = ('knlc', 0.0013778424919081605) +zone = ('caz091', 0.0087038053201896823) + +[fips0641180] +centroid = (0.5923309585525568, -2.065746273213287) +description = Lennox CDP, CA +station = ('klax', 0.00036834632797720873) +zone = ('caz041', 0.00085973077662328159) + +[fips0641194] +centroid = (0.60886158276343338, -2.0439258701988812) +description = Lenwood CDP, CA +station = ('kdag', 0.0046942640802557483) +zone = ('caz060', 0.0061280507595322976) + +[fips0641208] +centroid = (0.60408725204789526, -2.0647205606651822) +description = Leona Valley CDP, CA +station = ('kwjf', 0.0024358695677901901) +zone = ('caz054', 0.0033670093253410629) + +[fips0641278] +centroid = (0.71029547631353351, -2.1436568809043952) +description = Lewiston CDP, CA +station = ('ko54', 0.001584497627873637) +zone = ('caz004', 0.003822969302024411) + +[fips0641282] +centroid = (0.64852132767503123, -2.1291401921173949) +description = Lexington Hills CDP, CA +station = ('ksjc', 0.0037923142127913902) +zone = ('caz512', 0.00073376267792441495) + +[fips0641390] +centroid = (0.71951821496009205, -2.1031701640866176) +description = Likely CDP, CA +station = ('kaat', 0.0045796841302028265) +zone = ('caz085', 0.0067489577728631874) + +[fips0641474] +centroid = (0.67850760266074306, -2.116956764194216) +description = Lincoln city, CA +station = ('klhm', 0.00098292377791687167) +zone = ('caz017', 0.005687421186306542) + +[fips0641558] +centroid = (0.66332088197390215, -2.1176743214095883) +description = Lincoln Village CDP, CA +station = ('ksck', 0.0023024725605556877) +zone = ('caz019', 0.0059086051247258121) + +[fips0641572] +centroid = (0.68284561851657499, -2.1213128616610986) +description = Linda CDP, CA +station = ('kmyv', 0.00053581937654453436) +zone = ('caz016', 0.0068027224033093353) + +[fips0641656] +centroid = (0.63459325117826604, -2.0781998781046744) +description = Lindcove CDP, CA +station = ('kvis', 0.0046705330940393884) +zone = ('caz094', 0.0028658027939112872) + +[fips0641670] +centroid = (0.66354171848415699, -2.1136209862080491) +description = Linden CDP, CA +station = ('ksck', 0.0027458444930823132) +zone = ('caz019', 0.0046145815409523666) + +[fips0641712] +centroid = (0.6319461975682289, -2.0785151718340473) +description = Lindsay city, CA +station = ('kptv', 0.0030638264256908861) +zone = ('caz094', 0.0026925816219709937) + +[fips0641740] +centroid = (0.63370962588456636, -2.0808266160822186) +description = Linnell Camp CDP, CA +station = ('kvis', 0.0024988481302312235) +zone = ('caz094', 0.0044786612363772304) + +[fips0641782] +centroid = (0.70489876118673434, -2.1010445450439059) +description = Litchfield CDP, CA +station = ('krts', 0.014254166133349669) +zone = ('caz071', 0.0025956362022834757) + +[fips0641789] +centroid = (0.69333630395812229, -2.1111341712766376) +description = Little Grass Valley CDP, CA +station = ('kblu', 0.0084651863100425797) +zone = ('caz068', 0.0097562616080018125) + +[fips0641866] +centroid = (0.6853957714465414, -2.1603990739271985) +description = Little River CDP, CA +station = ('kuki', 0.0082231840028216194) +zone = ('caz002', 0.0027185337956158861) + +[fips0641880] +centroid = (0.60257712336589975, -2.05916791782301) +description = Littlerock CDP, CA +station = ('kpmd', 0.0023880102751722646) +zone = ('caz059', 0.0027596870325292972) + +[fips0641922] +centroid = (0.64552789602164318, -2.1289598297924939) +description = Live Oak CDP, CA +station = ('kwvi', 0.0028982815623451426) +zone = ('caz529', 0.0011286493694120012) + +[fips0641936] +centroid = (0.68546144818629395, -2.1234577316854595) +description = Live Oak city, CA +station = ('kmyv', 0.0033171057978168814) +zone = ('caz016', 0.0039487449440310015) + +[fips0641992] +centroid = (0.6577591459663269, -2.1251586423079902) +description = Livermore city, CA +station = ('klvk', 0.00078103519417900059) +zone = ('caz510', 0.0037455083720502203) + +[fips0642006] +centroid = (0.65253610855339383, -2.107050205546726) +description = Livingston city, CA +station = ('kmer', 0.0022272199997688488) +zone = ('caz019', 0.0078051515087029563) + +[fips0642104] +centroid = (0.66582701770013342, -2.1145409143501905) +description = Lockeford CDP, CA +station = ('ksck', 0.0044810752625127574) +zone = ('caz019', 0.0069996358746352511) + +[fips0642146] +centroid = (0.62727927441485865, -2.1132284791125682) +description = Lockwood CDP, CA +station = ('kprb', 0.0079147666251513336) +zone = ('caz516', 0.0028301840447986816) + +[fips0642202] +centroid = (0.66534761066119552, -2.1169232015126997) +description = Lodi city, CA +station = ('ksck', 0.0039476306178997866) +zone = ('caz019', 0.0072160401613773056) + +[fips0642230] +centroid = (0.6859889739527093, -2.1381320760637923) +description = Lodoga CDP, CA +station = ('kuki', 0.0098476065061699758) +zone = ('caz064', 0.0057888320616519828) + +[fips0642328] +centroid = (0.70931723672108316, -2.1680927645226697) +description = Loleta CDP, CA +station = ('kfot', 0.001929192607834488) +zone = ('caz001', 0.0068987135635867813) + +[fips0642370] +centroid = (0.59417879099152082, -2.0463905543553773) +description = Loma Linda city, CA +station = ('ksbd', 0.0010061520738453528) +zone = ('caz048', 0.0034114125672340717) + +[fips0642384] +centroid = (0.65041087348311777, -2.1345496306944414) +description = Loma Mar CDP, CA +station = ('kpao', 0.0043366429741322045) +zone = ('caz509', 0.0022766988030403601) + +[fips0642412] +centroid = (0.68626909929765434, -2.118896540578175) +description = Loma Rica CDP, CA +station = ('kbab', 0.0032878736152609973) +zone = ('caz016', 0.0071152226968586498) + +[fips0642468] +centroid = (0.58980455955371003, -2.0650290127038873) +description = Lomita city, CA +station = ('ktoa', 0.00025829527604075348) +zone = ('caz041', 0.0023654324180490808) + +[fips0642510] +centroid = (0.64777230217324522, -2.1302226627727743) +description = Lompico CDP, CA +station = ('ksjc', 0.0047883062298891632) +zone = ('caz512', 0.0010274315619648745) + +[fips0642524] +centroid = (0.6049780506448208, -2.1026127582834082) +description = Lompoc city, CA +station = ('klpc', 9.167094091461671e-05) +zone = ('caz035', 0.0012121270421653527) + +[fips0642566] +centroid = (0.63671309318115332, -2.0846911415652771) +description = London CDP, CA +station = ('kvis', 0.0029335594810849064) +zone = ('caz094', 0.008437105118678994) + +[fips0642580] +centroid = (0.63834452224616245, -2.0608954272633415) +description = Lone Pine CDP, CA +station = ('kbih', 0.014390679679052137) +zone = ('caz520', 0.0014302796079206502) + +[fips0642622] +centroid = (0.66485286217813266, -2.0967425004239577) +description = Long Barn CDP, CA +station = ('ko22', 0.004075751307173945) +zone = ('caz069', 0.01236713190848643) + +[fips0643000] +centroid = (0.59008014704259992, -2.062199484920554) +description = Long Beach city, CA +station = ('klgb', 0.00015296648466682275) +zone = ('caz041', 0.0029552462540120557) + +[fips0643126] +centroid = (0.71925718351716361, -2.1145180505369892) +description = Lookout CDP, CA +station = ('kaat', 0.0090390072645909168) +zone = ('caz014', 0.0064303677623467718) + +[fips0643140] +centroid = (0.67735128712471171, -2.115259920188842) +description = Loomis town, CA +station = ('klhm', 0.0027378025040178501) +zone = ('caz017', 0.00592745368497722) + +[fips0643224] +centroid = (0.58986805463189762, -2.0605546517268896) +description = Los Alamitos city, CA +station = ('ksli', 0.00028693775764379755) +zone = ('caz041', 0.0041555903978912068) + +[fips0643252] +centroid = (0.60613911347641747, -2.0991018016002188) +description = Los Alamos CDP, CA +station = ('klpc', 0.0030302049169101081) +zone = ('caz035', 0.0022505766616915512) + +[fips0643280] +centroid = (0.65220378041052152, -2.1309885307018419) +description = Los Altos city, CA +station = ('knuq', 0.0013029977108824798) +zone = ('caz512', 0.0035088693946563913) + +[fips0643294] +centroid = (0.65218454688216454, -2.1317332626936683) +description = Los Altos Hills town, CA +station = ('knuq', 0.0016902728060058767) +zone = ('caz509', 0.0035108667342475144) + +[fips0644000] +centroid = (0.59375043483320378, -2.0666587662528144) +description = Los Angeles city, CA +station = ('ksmo', 0.00056871535587210123) +zone = ('caz041', 0.0022568481104743195) + +[fips0644028] +centroid = (0.6468772275196526, -2.1090603361528331) +description = Los Banos city, CA +station = ('kmce', 0.0060937961786589282) +zone = ('caz089', 0.0090489462205735165) + +[fips0644042] +centroid = (0.61227733173592647, -2.1039076878686327) +description = Los Berros CDP, CA +station = ('ksbp', 0.0029436484645577921) +zone = ('caz034', 0.0051219974417640807) + +[fips0644112] +centroid = (0.64983802151602821, -2.1284476280169109) +description = Los Gatos town, CA +station = ('ksjc', 0.0023817172629374884) +zone = ('caz512', 0.0016244689050501498) + +[fips0644140] +centroid = (0.69860313168198807, -2.1310120228335738) +description = Los Molinos CDP, CA +station = ('krbl', 0.0029541981211458333) +zone = ('caz015', 0.0042693675022681078) + +[fips0644168] +centroid = (0.60499984980717814, -2.096445393025391) +description = Los Olivos CDP, CA +station = ('kiza', 0.0011626774090700994) +zone = ('caz036', 0.00061589729613267038) + +[fips0644182] +centroid = (0.61622259615018193, -2.1087925851922846) +description = Los Osos CDP, CA +station = ('ksbp', 0.0030172262809440718) +zone = ('caz034', 0.0012493209511704865) + +[fips0644242] +centroid = (0.61456406212188941, -2.1053816707818194) +description = Los Ranchos CDP, CA +station = ('ksbp', 0.00037762066099852849) +zone = ('caz034', 0.0025583665760499094) + +[fips0644280] +centroid = (0.62187255855144552, -2.088819560831237) +description = Lost Hills CDP, CA +station = ('kbfl', 0.0095952751722265094) +zone = ('caz091', 0.0028150104738396665) + +[fips0644350] +centroid = (0.67916058269379165, -2.1398956090998849) +description = Lower Lake CDP, CA +station = ('ksts', 0.0077538765050870614) +zone = ('caz064', 0.0016474429461794812) + +[fips0644364] +centroid = (0.69249175658637485, -2.0986678603882951) +description = Loyalton city, CA +station = ('krts', 0.004950979035965964) +zone = ('nvz002', 0.0092013287254960642) + +[fips0644378] +centroid = (0.6518778925325891, -2.1310157752914658) +description = Loyola CDP, CA +station = ('knuq', 0.001603068908780916) +zone = ('caz512', 0.0031975548823987197) + +[fips0644399] +centroid = (0.66393199155819549, -2.1393639992630198) +description = Lucas Valley-Marinwood CDP, CA +station = ('kdvo', 0.0017513632522613413) +zone = ('caz006', 0.0053017117474201065) + +[fips0644406] +centroid = (0.68168898882127826, -2.1426954488326415) +description = Lucerne CDP, CA +station = ('kuki', 0.0060057301158138281) +zone = ('caz064', 0.0017635900436994069) + +[fips0644420] +centroid = (0.60113965274066472, -2.0403257620974999) +description = Lucerne Valley CDP, CA +station = ('kl35', 0.0032469007823488745) +zone = ('caz060', 0.0023768211420145189) + +[fips0644574] +centroid = (0.5920848322214407, -2.0630079214300778) +description = Lynwood city, CA +station = ('khhr', 0.001911457901402345) +zone = ('caz041', 0.0014319655934285319) + +[fips0644644] +centroid = (0.59777397726441139, -2.0508392066324932) +description = Lytle Creek CDP, CA +station = ('kont', 0.0036707610924985455) +zone = ('caz055', 0.0059071685064617501) + +[fips0644672] +centroid = (0.69424031469748526, -2.1039028184000195) +description = Mabie CDP, CA +station = ('kblu', 0.0088666150857018445) +zone = ('caz071', 0.012024661245653621) + +[fips0644700] +centroid = (0.71631794433705009, -2.1189211671739208) +description = McArthur CDP, CA +station = ('kaat', 0.013430099369644852) +zone = ('caz014', 0.0020547591720618641) + +[fips0644760] +centroid = (0.67479373399871678, -2.1188583527741414) +description = McClellan Park CDP, CA +station = ('kmcc', 7.0548389056724082e-05) +zone = ('caz017', 0.0022811655152423236) + +[fips0644770] +centroid = (0.6252115653967284, -2.0707954409261364) +description = McClenney Tract CDP, CA +station = ('kptv', 0.0069745559619845757) +zone = ('caz097', 0.0079354163691319358) + +[fips0644784] +centroid = (0.72003102760091298, -2.1316791923934413) +description = McCloud CDP, CA +station = ('kmhs', 0.0026016667882235167) +zone = ('caz082', 0.00069106480344588927) + +[fips0644812] +centroid = (0.72999492031433089, -2.1294029165296977) +description = Macdoel CDP, CA +station = ('ksiy', 0.0060843501892445927) +zone = ('caz083', 0.0051420654804738789) + +[fips0644826] +centroid = (0.62256878784335856, -2.0810036971881263) +description = McFarland city, CA +station = ('kbfl', 0.0048862971409298593) +zone = ('caz092', 0.0020184444322296543) + +[fips0644830] +centroid = (0.65576690498505297, -2.0732939844701215) +description = McGee Creek CDP, CA +station = ('kmmh', 0.00096555593414846886) +zone = ('caz096', 0.0064272268930487741) + +[fips0644910] +centroid = (0.7147521047453308, -2.1655138660199231) +description = McKinleyville CDP, CA +station = ('kacv', 0.00063561898273111633) +zone = ('caz001', 0.0012865124073172078) + +[fips0644924] +centroid = (0.616066808061149, -2.0878487563414003) +description = McKittrick CDP, CA +station = ('kbfl', 0.0085166392277480178) +zone = ('caz038', 0.0064145944670605083) + +[fips0645006] +centroid = (0.65126166913358752, -2.1046356646996394) +description = McSwain CDP, CA +station = ('kmer', 0.00095138678362228471) +zone = ('caz090', 0.007992305187367283) + +[fips0645022] +centroid = (0.64514320800121117, -2.0957956243981655) +description = Madera city, CA +station = ('kmae', 0.00060990670548187681) +zone = ('caz090', 0.0016014741480082581) + +[fips0645050] +centroid = (0.64598630674967961, -2.0957895157457838) +description = Madera Acres CDP, CA +station = ('kmae', 0.00071982024030531257) +zone = ('caz090', 0.00084821266193078676) + +[fips0645064] +centroid = (0.67500594858246687, -2.1287823821674436) +description = Madison CDP, CA +station = ('kedu', 0.0035281767366794762) +zone = ('caz017', 0.0056210336196211488) + +[fips0645092] +centroid = (0.70567180241902761, -2.1553494524287435) +description = Mad River CDP, CA +station = ('kfot', 0.0087602668628542577) +zone = ('caz004', 0.006993413631386153) + +[fips0645120] +centroid = (0.69497754177352766, -2.1224556683487195) +description = Magalia CDP, CA +station = ('kcic', 0.0032652508775964598) +zone = ('caz066', 0.0054783330420402326) + +[fips0645232] +centroid = (0.64021472980613703, -2.0897138849932513) +description = Malaga CDP, CA +station = ('kfat', 0.0017880973056958946) +zone = ('caz090', 0.0083936442823303696) + +[fips0645246] +centroid = (0.5940524291536764, -2.0731273753397259) +description = Malibu city, CA +station = ('kvny', 0.0053308092047851408) +zone = ('caz046', 0.0015603822832031249) + +[fips0645358] +centroid = (0.65639627071332218, -2.0764369733871129) +description = Mammoth Lakes town, CA +station = ('kmmh', 0.0019093986935880243) +zone = ('caz096', 0.0049412091106953784) + +[fips0645386] +centroid = (0.68023132473659764, -2.1588145244058978) +description = Manchester CDP, CA +station = ('kuki', 0.0072093239963996027) +zone = ('caz002', 0.0050616693300896886) + +[fips0645400] +centroid = (0.59148566068923092, -2.0664239322019586) +description = Manhattan Beach city, CA +station = ('klax', 0.00078936489279984119) +zone = ('caz041', 0.0015568182131886284) + +[fips0645414] +centroid = (0.71298265504307412, -2.167056527639176) +description = Manila CDP, CA +station = ('kacv', 0.0024571149041276727) +zone = ('caz001', 0.0031549381533887391) + +[fips0645484] +centroid = (0.65967831001181987, -2.1158796866062253) +description = Manteca city, CA +station = ('ksck', 0.0018017694197652802) +zone = ('caz019', 0.0027062896088023564) + +[fips0645512] +centroid = (0.70557865419684873, -2.1266910413912412) +description = Manton CDP, CA +station = ('krbl', 0.007184587483927465) +zone = ('caz066', 0.0056376138782917549) + +[fips0645680] +centroid = (0.59147642789748789, -2.046893662965557) +description = March ARB CDP, CA +station = ('kriv', 0.00045285143266195752) +zone = ('caz048', 0.00088873156437131728) + +[fips0645736] +centroid = (0.61188074056999564, -2.0839143129685072) +description = Maricopa city, CA +station = ('kbfl', 0.0082272389155006592) +zone = ('caz038', 0.0052379531928324818) + +[fips0645778] +centroid = (0.64019608968972574, -2.1256370021493769) +description = Marina city, CA +station = ('kmry', 0.0018930236947210118) +zone = ('caz530', 0.0012116774185895775) + +[fips0645806] +centroid = (0.59308923429937832, -2.0673988556688303) +description = Marina del Rey CDP, CA +station = ('ksmo', 0.00061537584255302858) +zone = ('caz041', 0.0024008802936277564) + +[fips0645820] +centroid = (0.66097636373640567, -2.1382680721191076) +description = Marin City CDP, CA +station = ('kdvo', 0.0047351514622250689) +zone = ('caz006', 0.002241368159126306) + +[fips0645932] +centroid = (0.6541760722784451, -2.0938809283955577) +description = Mariposa CDP, CA +station = ('kmce', 0.0081167481775211592) +zone = ('caz093', 0.0052923290353704628) + +[fips0645988] +centroid = (0.67516320274807151, -2.0913012968545255) +description = Markleeville CDP, CA +station = ('ktvl', 0.0041081893771584789) +zone = ('caz072', 0.0050164470629425403) + +[fips0646100] +centroid = (0.66954399304822809, -2.1084114401902339) +description = Martell CDP, CA +station = ('kpvf', 0.0062893696123418157) +zone = ('caz067', 0.0045111645548999183) + +[fips0646114] +centroid = (0.66321874530607539, -2.1312896698109811) +description = Martinez city, CA +station = ('kccr', 0.00087890763940240153) +zone = ('caz510', 0.0038333907379315226) + +[fips0646170] +centroid = (0.68332319295979815, -2.1220301919836682) +description = Marysville city, CA +station = ('kmyv', 0.00092746504015401871) +zone = ('caz016', 0.0060694891562683108) + +[fips0646223] +centroid = (0.63129716197928964, -2.0830780210041215) +description = Matheny CDP, CA +station = ('kvis', 0.002637823026449619) +zone = ('caz094', 0.0064087520996673033) + +[fips0646226] +centroid = (0.67279583815066635, -2.1168023549152921) +description = Mather CDP, CA +station = ('kmhr', 0.00022241145537610967) +zone = ('caz017', 0.0040405788122249379) + +[fips0646338] +centroid = (0.68551433166262943, -2.1326994246076945) +description = Maxwell CDP, CA +station = ('kove', 0.0087135825896819934) +zone = ('caz016', 0.0040202964962047045) + +[fips0646400] +centroid = (0.64174482505477537, -2.0902298217734336) +description = Mayfair CDP, CA +station = ('kfat', 0.00067111463526300279) +zone = ('caz090', 0.0069835549061920237) + +[fips0646436] +centroid = (0.59543500917393621, -2.0596559816950379) +description = Mayflower Village CDP, CA +station = ('kemt', 0.00066410335099335795) +zone = ('caz548', 0.0010177066471006261) + +[fips0646492] +centroid = (0.59321132008055533, -2.0627639069473562) +description = Maywood city, CA +station = ('kcqt', 0.0015899101464940009) +zone = ('caz041', 0.0019429082356615074) + +[fips0646520] +centroid = (0.58862593870983826, -2.0470109141847064) +description = Meadowbrook CDP, CA +station = ('kriv', 0.0030829511725930236) +zone = ('caz048', 0.0022361077461671821) + +[fips0646618] +centroid = (0.69695032233364196, -2.1132985191754505) +description = Meadow Valley CDP, CA +station = ('kove', 0.010404156455594242) +zone = ('caz068', 0.0058376398100188579) + +[fips0646632] +centroid = (0.68070441368364321, -2.1123473845462839) +description = Meadow Vista CDP, CA +station = ('kaun', 0.0010365926170132229) +zone = ('caz067', 0.0075435817744193183) + +[fips0646646] +centroid = (0.59050159169707905, -2.0470095353745967) +description = Mead Valley CDP, CA +station = ('kriv', 0.0012706933885832307) +zone = ('caz048', 0.00068925244167288642) + +[fips0646660] +centroid = (0.58602398440767256, -2.0257078093072987) +description = Mecca CDP, CA +station = ('ktrm', 0.0016325231468336992) +zone = ('caz061', 0.0045063100087826546) + +[fips0646702] +centroid = (0.60127439215891876, -2.0817088800191019) +description = Meiners Oaks CDP, CA +station = ('koxr', 0.0044970773007110467) +zone = ('caz044', 0.0024169701069309693) + +[fips0646814] +centroid = (0.68611343338166897, -2.1609366876966902) +description = Mendocino CDP, CA +station = ('kuki', 0.0088462276748690408) +zone = ('caz002', 0.0032837995323331498) + +[fips0646828] +centroid = (0.64151304533011055, -2.1009965833960611) +description = Mendota city, CA +station = ('kmae', 0.0053928489383340446) +zone = ('caz089', 0.0029236625408275594) + +[fips0646842] +centroid = (0.58799894662935182, -2.0452533152680701) +description = Menifee city, CA +station = ('kriv', 0.0037891402117594258) +zone = ('caz048', 0.0028906039433259979) + +[fips0646870] +centroid = (0.65414479597824948, -2.1318864676954083) +description = Menlo Park city, CA +station = ('kpao', 0.00049149720124014177) +zone = ('caz508', 0.0020044898098622262) + +[fips0646884] +centroid = (0.59447083693525704, -2.0440443431485065) +description = Mentone CDP, CA +station = ('ksbd', 0.0018416564030633172) +zone = ('caz055', 0.0029755908934401705) + +[fips0646898] +centroid = (0.65110514800626862, -2.102732836935945) +description = Merced city, CA +station = ('kmce', 0.00049642933236141026) +zone = ('caz090', 0.0067041497446173482) + +[fips0646926] +centroid = (0.68312946141282671, -2.1276941519255326) +description = Meridian CDP, CA +station = ('kmyv', 0.0046740456813786063) +zone = ('caz016', 0.0041256277381339383) + +[fips0647013] +centroid = (0.65304694897215998, -2.0688978491501979) +description = Mesa CDP, CA +station = ('kbih', 0.0025465451622459015) +zone = ('caz521', 0.0099337297252620627) + +[fips0647066] +centroid = (0.58635687105590539, -2.0024468813414669) +description = Mesa Verde CDP, CA +station = ('kblh', 0.00042552405159610352) +zone = ('azz020', 0.0038151360917878748) + +[fips0647086] +centroid = (0.67736730924724509, -2.0909614637958693) +description = Mesa Vista CDP, CA +station = ('ktvl', 0.002759770576357744) +zone = ('caz072', 0.0032883383695133939) + +[fips0647164] +centroid = (0.61197462183046059, -2.0764702219093634) +description = Mettler CDP, CA +station = ('kbfl', 0.0065464120121442662) +zone = ('caz095', 0.0076305099435547592) + +[fips0647192] +centroid = (0.61904961065939235, -2.0816317190128713) +description = Mexican Colony CDP, CA +station = ('kbfl', 0.0031710239637529028) +zone = ('caz092', 0.0055506418668443292) + +[fips0647332] +centroid = (0.6763478449778626, -2.1401594505229089) +description = Middletown CDP, CA +station = ('ksts', 0.0051345268989864612) +zone = ('caz507', 0.0036315740639370625) + +[fips0647374] +centroid = (0.65534603628922705, -2.0936224102267524) +description = Midpines CDP, CA +station = ('kmce', 0.0088516873006847761) +zone = ('caz093', 0.0060804210690034045) + +[fips0647430] +centroid = (0.58896091975317344, -2.0592270146714826) +description = Midway City CDP, CA +station = ('ksli', 0.0011563762687804538) +zone = ('caz042', 0.0029264634096708075) + +[fips0647472] +centroid = (0.70073908307387112, -2.1008568174295617) +description = Milford CDP, CA +station = ('krts', 0.010688361180676273) +zone = ('caz071', 0.0060063850929073749) + +[fips0647486] +centroid = (0.65622582185857237, -2.1363177539464666) +description = Millbrae city, CA +station = ('ksfo', 0.00057788199889592651) +zone = ('caz006', 0.0027932607541806828) + +[fips0647710] +centroid = (0.66162587056424282, -2.1387629253219256) +description = Mill Valley city, CA +station = ('kdvo', 0.0040501993230932613) +zone = ('caz006', 0.0029971588513998384) + +[fips0647724] +centroid = (0.70789802223982401, -2.1323659445475158) +description = Millville CDP, CA +station = ('krdd', 0.001767651012064053) +zone = ('caz015', 0.0061385915682346101) + +[fips0647766] +centroid = (0.65339212273832692, -2.1274048985085998) +description = Milpitas city, CA +station = ('ksjc', 0.0012703283788561934) +zone = ('caz513', 0.0040069363051773556) + +[fips0647794] +centroid = (0.7052665369667146, -2.1219644803373305) +description = Mineral CDP, CA +station = ('krbl', 0.010004033285147236) +zone = ('caz068', 0.0047941348980983121) + +[fips0647822] +centroid = (0.64101803504765997, -2.0849469544737418) +description = Minkler CDP, CA +station = ('kfat', 0.003736530219210821) +zone = ('caz093', 0.009930256666564918) + +[fips0647976] +centroid = (0.59317416202078033, -2.0511305544445286) +description = Mira Loma CDP, CA +station = ('kral', 0.0012095301779045939) +zone = ('caz048', 0.0047137471520826276) + +[fips0648046] +centroid = (0.60089766283987567, -2.0818880729734039) +description = Mira Monte CDP, CA +station = ('koxr', 0.0041720416434453105) +zone = ('caz044', 0.0024327122238413934) + +[fips0648060] +centroid = (0.7021240367419137, -2.1610216852312623) +description = Miranda CDP, CA +station = ('kfot', 0.0070551815598383664) +zone = ('caz003', 0.00964254719306867) + +[fips0648147] +centroid = (0.60137441697835048, -2.0894552795579835) +description = Mission Canyon CDP, CA +station = ('ksba', 0.0019559542698049026) +zone = ('caz039', 0.002685865860603198) + +[fips0648186] +centroid = (0.60543342449995863, -2.1020701877788408) +description = Mission Hills CDP, CA +station = ('klpc', 0.00054608796545379862) +zone = ('caz035', 0.00060610605364011462) + +[fips0648256] +centroid = (0.58659355515576839, -2.0534928052272252) +description = Mission Viejo city, CA +station = ('ksna', 0.0033158748987076182) +zone = ('caz042', 0.0025334828096103485) + +[fips0648298] +centroid = (0.66425958985879485, -2.097503219631732) +description = Mi-Wuk Village CDP, CA +station = ('ko22', 0.003364179893352511) +zone = ('caz067', 0.012693207493534619) + +[fips0648354] +centroid = (0.6573068613439651, -2.1116573162666303) +description = Modesto city, CA +station = ('kmod', 0.00094210599981680622) +zone = ('caz019', 0.0018417210101329576) + +[fips0648448] +centroid = (0.69472523697685939, -2.104662595129998) +description = Mohawk Vista CDP, CA +station = ('kblu', 0.0092250822985862884) +zone = ('caz071', 0.011552775116752531) + +[fips0648452] +centroid = (0.61112708994569209, -2.06280846520316) +description = Mojave CDP, CA +station = ('kmhv', 0.0010692837756205919) +zone = ('caz099', 0.0025010868959200534) + +[fips0648480] +centroid = (0.66854741004533924, -2.1069402323505577) +description = Mokelumne Hill CDP, CA +station = ('ko22', 0.0063116042070725529) +zone = ('caz067', 0.0055289205202033124) + +[fips0648592] +centroid = (0.63819047948638152, -2.0898655366519572) +description = Monmouth CDP, CA +station = ('kfat', 0.003814384579671282) +zone = ('caz090', 0.0099701874745093694) + +[fips0648602] +centroid = (0.66394391215698656, -2.0795005847297237) +description = Mono City CDP, CA +station = ('kban', 0.0074037684010336054) +zone = ('caz073', 0.0039952329175208063) + +[fips0648641] +centroid = (0.663442828128739, -2.0991008067625447) +description = Mono Vista CDP, CA +station = ('ko22', 0.0020901790874482641) +zone = ('caz019', 0.01151585556049557) + +[fips0648648] +centroid = (0.59627465217048559, -2.0592201206209371) +description = Monrovia city, CA +station = ('kemt', 0.0015743387438809263) +zone = ('caz548', 0.0017231354828328284) + +[fips0648676] +centroid = (0.63691841371435787, -2.0828016655703605) +description = Monson CDP, CA +station = ('kvis', 0.0032028209474763256) +zone = ('caz094', 0.0072311850718808149) + +[fips0648690] +centroid = (0.72827507286941573, -2.1385608685544222) +description = Montague city, CA +station = ('ksiy', 0.0010809106643497549) +zone = ('caz081', 0.00045327013203429141) + +[fips0648718] +centroid = (0.66318434486651867, -2.1350552002188663) +description = Montalvin Manor CDP, CA +station = ('kapc', 0.0035882747816658516) +zone = ('caz006', 0.004497546687601172) + +[fips0648760] +centroid = (0.65534073048830099, -2.1378951476178338) +description = Montara CDP, CA +station = ('khaf', 0.0008488587383061009) +zone = ('caz509', 0.0033424391062551236) + +[fips0648788] +centroid = (0.59465901833520707, -2.054218565490082) +description = Montclair city, CA +station = ('kpoc', 0.0013295870227379948) +zone = ('caz548', 0.0039879275923413206) + +[fips0648816] +centroid = (0.59368149432775008, -2.061426042262533) +description = Montebello city, CA +station = ('kemt', 0.0016327279610299933) +zone = ('caz548', 0.0021696378551892674) + +[fips0648844] +centroid = (0.60106048460579431, -2.0879098254119275) +description = Montecito CDP, CA +station = ('ksba', 0.0031907260615861932) +zone = ('caz039', 0.0039738261392336209) + +[fips0648872] +centroid = (0.63881302097727533, -2.1272519203996625) +description = Monterey city, CA +station = ('kmry', 0.0005535027564523066) +zone = ('caz530', 0.0017845371628634503) + +[fips0648914] +centroid = (0.59425548075885337, -2.0618129992109924) +description = Monterey Park city, CA +station = ('kemt', 0.0015675854913080247) +zone = ('caz548', 0.0023244847620431668) + +[fips0648916] +centroid = (0.6549664620835034, -2.1120488808843154) +description = Monterey Park Tract CDP, CA +station = ('kmod', 0.0017840393394361967) +zone = ('caz019', 0.004057255949117179) + +[fips0648928] +centroid = (0.67140184367709843, -2.1470065168048227) +description = Monte Rio CDP, CA +station = ('ksts', 0.0027570116064429984) +zone = ('caz505', 0.0041334799149182512) + +[fips0648956] +centroid = (0.64996717588067576, -2.1290947262903805) +description = Monte Sereno city, CA +station = ('ksjc', 0.0024172472435215466) +zone = ('caz512', 0.0013852588184849713) + +[fips0648998] +centroid = (0.71284416316692822, -2.1279148488094473) +description = Montgomery Creek CDP, CA +station = ('krdd', 0.0076742351246233548) +zone = ('caz013', 0.0042906002392727053) + +[fips0649045] +centroid = (0.67481649309216274, -2.1271300266047031) +description = Monument Hills CDP, CA +station = ('kedu', 0.0026159937722900865) +zone = ('caz017', 0.0043171057368269067) + +[fips0649138] +centroid = (0.59840259250110228, -2.0747821918167118) +description = Moorpark city, CA +station = ('kcma', 0.0032227109763372053) +zone = ('caz045', 0.00076798174094193513) + +[fips0649180] +centroid = (0.66389926663472054, -2.1161400199174527) +description = Morada CDP, CA +station = ('ksck', 0.002425642728488984) +zone = ('caz019', 0.0056510758625327598) + +[fips0649187] +centroid = (0.66053195054897029, -2.131452229777512) +description = Moraga town, CA +station = ('koak', 0.0027163404027801025) +zone = ('caz510', 0.003403934050982705) + +[fips0649270] +centroid = (0.59207245783704399, -2.04562510530533) +description = Moreno Valley city, CA +station = ('kriv', 0.00075941842322447108) +zone = ('caz048', 0.0014008703114799135) + +[fips0649278] +centroid = (0.64808199339571915, -2.1230415753786138) +description = Morgan Hill city, CA +station = ('ke16', 0.0010813570278961895) +zone = ('caz513', 0.0026478653362073238) + +[fips0649348] +centroid = (0.59467516263078801, -2.0344033712532923) +description = Morongo Valley CDP, CA +station = ('kpsp', 0.0042697896270462981) +zone = ('caz061', 0.0068838723160414067) + +[fips0649362] +centroid = (0.61727914866616929, -2.1095382247553216) +description = Morro Bay city, CA +station = ('ksbp', 0.0040769116787581017) +zone = ('caz034', 0.0019403367197417976) + +[fips0649432] +centroid = (0.67097217852184254, -2.1326525450639862) +description = Moskowite Corner CDP, CA +station = ('kvcb', 0.0034739156645868926) +zone = ('caz507', 0.0071085204694955294) + +[fips0649446] +centroid = (0.65481903412158737, -2.1380887395384653) +description = Moss Beach CDP, CA +station = ('khaf', 0.00032412612374097211) +zone = ('caz509', 0.0029531927099325766) + +[fips0649488] +centroid = (0.64236939112760161, -2.1255763694111627) +description = Moss Landing CDP, CA +station = ('kwvi', 0.0022393311304391831) +zone = ('caz530', 0.0033174871273152001) + +[fips0649544] +centroid = (0.58832097732963728, -2.0372816809892189) +description = Mountain Center CDP, CA +station = ('kpsp', 0.0039584579787727281) +zone = ('caz056', 0.0014858426389575009) + +[fips0649558] +centroid = (0.71067086172905236, -2.1349960161039312) +description = Mountain Gate CDP, CA +station = ('krdd', 0.003854709922130127) +zone = ('caz013', 0.0039268471731153682) + +[fips0649582] +centroid = (0.65928098580760341, -2.1213650120991479) +description = Mountain House CDP, CA +station = ('klvk', 0.0039625734286265679) +zone = ('caz510', 0.0049747582375441407) + +[fips0649600] +centroid = (0.62205539924388442, -2.0665442202940061) +description = Mountain Mesa CDP, CA +station = ('kiyk', 0.0081089785464995238) +zone = ('caz095', 0.0055705858589803993) + +[fips0649628] +centroid = (0.66767476287263461, -2.1033481353104433) +description = Mountain Ranch CDP, CA +station = ('ko22', 0.0041282537146255221) +zone = ('caz067', 0.0072625561311035194) + +[fips0649651] +centroid = (0.66338640163402207, -2.1313412617436702) +description = Mountain View CDP, CA +station = ('kccr', 0.00093351782817208237) +zone = ('caz510', 0.003960243742386709) + +[fips0649670] +centroid = (0.65274203995183655, -2.1306895208943901) +description = Mountain View city, CA +station = ('knuq', 0.00072036207777645097) +zone = ('caz508', 0.0035940680949831478) + +[fips0649684] +centroid = (0.60209633751685299, -2.0480920758431465) +description = Mountain View Acres CDP, CA +station = ('kvcv', 0.0018134314069424805) +zone = ('caz060', 0.0048491373971298723) + +[fips0649768] +centroid = (0.72929378664721978, -2.1294447171652831) +description = Mount Hebron CDP, CA +station = ('ksiy', 0.0059764044393190848) +zone = ('caz083', 0.0044826535866192988) + +[fips0649796] +centroid = (0.64665094558213154, -2.1301959417819263) +description = Mount Hermon CDP, CA +station = ('kwvi', 0.0042567818530033271) +zone = ('caz512', 0.0021390413807765218) + +[fips0649810] +centroid = (0.5737090110187707, -2.0319941187538397) +description = Mount Laguna CDP, CA +station = ('kczz', 0.0043236825693477145) +zone = ('caz058', 0.0038335268989159329) + +[fips0649852] +centroid = (0.72119484805272782, -2.1348069969459402) +description = Mount Shasta city, CA +station = ('kmhs', 8.4544847389065922e-05) +zone = ('caz082', 0.0019329083238808231) + +[fips0649950] +centroid = (0.66080896920784682, -2.1394302170548407) +description = Muir Beach CDP, CA +station = ('kdvo', 0.0048676381462470497) +zone = ('caz006', 0.0026513638866761092) + +[fips0650034] +centroid = (0.66568948575507625, -2.1019669515535853) +description = Murphys CDP, CA +station = ('ko22', 0.0019500548925251977) +zone = ('caz067', 0.0095251838492520779) + +[fips0650076] +centroid = (0.58593996425748152, -2.0453629044918031) +description = Murrieta city, CA +station = ('knfg', 0.005282409408623452) +zone = ('caz057', 0.0039554913086069544) + +[fips0650132] +centroid = (0.5961356890554419, -2.0480811326287367) +description = Muscoy CDP, CA +station = ('ksbd', 0.0019042020245438008) +zone = ('caz055', 0.0038448307174018741) + +[fips0650146] +centroid = (0.70276516598934136, -2.1620361753122768) +description = Myers Flat CDP, CA +station = ('kfot', 0.0060847045588120936) +zone = ('caz003', 0.0090926983269908265) + +[fips0650188] +centroid = (0.71189765366027924, -2.1664886847670393) +description = Myrtletown CDP, CA +station = ('kacv', 0.0034204570257550526) +zone = ('caz001', 0.0041373799821427682) + +[fips0650258] +centroid = (0.66842396290734574, -2.1345506080788224) +description = Napa city, CA +station = ('kapc', 0.0017247718853219526) +zone = ('caz506', 0.004836417124272829) + +[fips0650398] +centroid = (0.57012684490209986, -2.0437344948464) +description = National City city, CA +station = ('mmml', 0.0015392845470078094) +zone = ('caz043', 0.0058234545454633625) + +[fips0650734] +centroid = (0.60765393709410087, -2.0004031356939662) +description = Needles city, CA +station = ('keed', 0.00086161545034234115) +zone = ('azz002', 0.0045218155202266779) + +[fips0650874] +centroid = (0.685209422642306, -2.1124262734284738) +description = Nevada City city, CA +station = ('kgoo', 0.00074186829587613611) +zone = ('caz067', 0.011734874781093167) + +[fips0650916] +centroid = (0.65457074358219858, -2.129866458525735) +description = Newark city, CA +station = ('knuq', 0.001259755985017922) +zone = ('caz508', 0.0024119541817815243) + +[fips0651000] +centroid = (0.67835242543694818, -2.114151950273091) +description = Newcastle CDP, CA +station = ('kaun', 0.0017026656338152734) +zone = ('caz067', 0.006555365889164352) + +[fips0651028] +centroid = (0.60985553031915163, -2.0888233481957137) +description = New Cuyama CDP, CA +station = ('kiza', 0.0081400662929302335) +zone = ('caz038', 0.00081032015962765442) + +[fips0651042] +centroid = (0.73111704485031559, -2.1181324179783596) +description = Newell CDP, CA +station = ('klmt', 0.0064796566577101627) +zone = ('caz084', 0.0036289254810973025) + +[fips0651140] +centroid = (0.65128783161907489, -2.1122029934572666) +description = Newman city, CA +station = ('kmod', 0.0053365100847363412) +zone = ('caz019', 0.0077206408330491747) + +[fips0651168] +centroid = (0.73281690827529544, -2.0996465886729361) +description = New Pine Creek CDP, CA +station = ('klkv', 0.003383351795199063) +zone = ('caz070', 0.0071276336964304311) + +[fips0651182] +centroid = (0.58637144455515966, -2.0575301357595235) +description = Newport Beach city, CA +station = ('ksna', 0.0015444400770077773) +zone = ('caz042', 0.0023362107484363949) + +[fips0651280] +centroid = (0.66428316925698927, -2.1415333388034936) +description = Nicasio CDP, CA +station = ('kdvo', 0.0023791168848594406) +zone = ('caz505', 0.0046385557927717388) + +[fips0651294] +centroid = (0.68288876305568424, -2.1441799909878028) +description = Nice CDP, CA +station = ('kuki', 0.00470666640257816) +zone = ('caz064', 0.0034174268128399077) + +[fips0651336] +centroid = (0.67889974323708113, -2.1218469324122089) +description = Nicolaus CDP, CA +station = ('klhm', 0.0030342319069650292) +zone = ('caz017', 0.0047370080696503905) + +[fips0651392] +centroid = (0.58012489370897946, -2.0161073115974384) +description = Niland CDP, CA +station = ('kipl', 0.0071227332086707855) +zone = ('caz033', 0.0034903892981613567) + +[fips0651470] +centroid = (0.65280457509893552, -2.0896697979763461) +description = Nipinnawasee CDP, CA +station = ('kmae', 0.0090910358507666177) +zone = ('caz093', 0.0025091726154951315) + +[fips0651476] +centroid = (0.61140035614667676, -2.1030826009180448) +description = Nipomo CDP, CA +station = ('ksmx', 0.0023233989684150113) +zone = ('caz035', 0.0054885781771993273) + +[fips0651560] +centroid = (0.59211200699789412, -2.0516687092660884) +description = Norco city, CA +station = ('kajo', 0.00082618711637222277) +zone = ('caz042', 0.0051976331827868691) + +[fips0651574] +centroid = (0.69418355659021047, -2.1285146486601878) +description = Nord CDP, CA +station = ('kcic', 0.0014794699137991179) +zone = ('caz066', 0.0064671458434870802) + +[fips0651622] +centroid = (0.65879257286972537, -2.1291059313041782) +description = Norris Canyon CDP, CA +station = ('khwd', 0.0022443312111279671) +zone = ('caz510', 0.0027815759592799989) + +[fips0651637] +centroid = (0.67946877293310881, -2.1132635253239482) +description = North Auburn CDP, CA +station = ('kaun', 0.00038966503832011117) +zone = ('caz067', 0.0068917347443838662) + +[fips0651812] +centroid = (0.61169133743956927, -2.0561612565738918) +description = North Edwards CDP, CA +station = ('k9l2', 0.0012590045168973099) +zone = ('caz099', 0.0031830667775769724) + +[fips0651820] +centroid = (0.59520870978312268, -2.0599045689403992) +description = North El Monte CDP, CA +station = ('kemt', 0.00036880922913790093) +zone = ('caz548', 0.00097250886240684122) + +[fips0651840] +centroid = (0.65406866471627745, -2.1328523678100471) +description = North Fair Oaks CDP, CA +station = ('ksql', 0.00096700428269667535) +zone = ('caz508', 0.0021342917116991063) + +[fips0651890] +centroid = (0.66158717661472621, -2.1292699922538656) +description = North Gate CDP, CA +station = ('kccr', 0.0017864370506137689) +zone = ('caz510', 0.0016878472676551462) + +[fips0651924] +centroid = (0.6749424360509868, -2.1183442311363816) +description = North Highlands CDP, CA +station = ('kmcc', 0.00038777232666105458) +zone = ('caz017', 0.0027081893661147459) + +[fips0651990] +centroid = (0.68218900819868211, -2.1451758933122833) +description = North Lakeport CDP, CA +station = ('kuki', 0.0040176447069190588) +zone = ('caz064', 0.0036780618846098726) + +[fips0652162] +centroid = (0.66261885818887245, -2.1357713960774225) +description = North Richmond CDP, CA +station = ('kdvo', 0.0040087723197104116) +zone = ('caz006', 0.0037866732004359924) + +[fips0652246] +centroid = (0.68716780423609125, -2.113699892543532) +description = North San Juan CDP, CA +station = ('kgoo', 0.0029306130484195187) +zone = ('caz016', 0.011062366659939381) + +[fips0652302] +centroid = (0.58495893213822814, -2.0229976620448018) +description = North Shore CDP, CA +station = ('ktrm', 0.0041221720821171563) +zone = ('caz061', 0.0069501407948799792) + +[fips0652379] +centroid = (0.58930345807216988, -2.0558984274418339) +description = North Tustin CDP, CA +station = ('ksna', 0.0017650138469167693) +zone = ('caz042', 0.0010805225181007214) + +[fips0652526] +centroid = (0.59178755028994834, -2.0609449248009279) +description = Norwalk city, CA +station = ('kful', 0.0016117554456368582) +zone = ('caz548', 0.0031932280053689733) + +[fips0652582] +centroid = (0.6647073366251014, -2.1388788326375505) +description = Novato city, CA +station = ('kdvo', 0.00097361900410445864) +zone = ('caz506', 0.0051334824675941656) + +[fips0652610] +centroid = (0.7172714526139996, -2.1150277390384491) +description = Nubieber CDP, CA +station = ('kaat', 0.010521570211089447) +zone = ('caz014', 0.0048472371614166811) + +[fips0652624] +centroid = (0.58994120138084871, -2.0445031203956856) +description = Nuevo CDP, CA +station = ('kriv', 0.0023355879136204411) +zone = ('caz048', 0.001667325324707892) + +[fips0652694] +centroid = (0.65906540273839698, -2.1091681625940213) +description = Oakdale city, CA +station = ('kmod', 0.0029069847999669378) +zone = ('caz019', 0.0026853995484045191) + +[fips0652715] +centroid = (0.59420771109722637, -2.0411558930496256) +description = Oak Glen CDP, CA +station = ('kl35', 0.0039596299521010257) +zone = ('caz055', 0.0038544735126873906) + +[fips0652760] +centroid = (0.60021775237646879, -2.0490707866744948) +description = Oak Hills CDP, CA +station = ('kvcv', 0.0036294885677803871) +zone = ('caz055', 0.0052339140734650397) + +[fips0652764] +centroid = (0.65189641047595281, -2.0882778629912955) +description = Oakhurst CDP, CA +station = ('kmae', 0.0091308680449261586) +zone = ('caz093', 0.0017952600892193328) + +[fips0653000] +centroid = (0.65920836265742799, -2.1332398483572819) +description = Oakland city, CA +station = ('koak', 0.00093439876018770111) +zone = ('caz508', 0.0031848912101975525) + +[fips0653070] +centroid = (0.66311927899200429, -2.12391104605208) +description = Oakley city, CA +station = ('klvk', 0.0054140023768054647) +zone = ('caz018', 0.0027826006693118291) + +[fips0653116] +centroid = (0.59664045572841118, -2.0728739011724588) +description = Oak Park CDP, CA +station = ('kvny', 0.0041308851396342746) +zone = ('caz045', 0.0015974565889196241) + +[fips0653160] +centroid = (0.62428729138474981, -2.1114804446002333) +description = Oak Shores CDP, CA +station = ('kprb', 0.0052127547672165759) +zone = ('caz516', 0.0058987690896405232) + +[fips0653182] +centroid = (0.60037526834146127, -2.0821354035817041) +description = Oak View CDP, CA +station = ('koxr', 0.0037467958443941521) +zone = ('caz044', 0.0025615864690216208) + +[fips0653196] +centroid = (0.67087616795969029, -2.136401215591297) +description = Oakville CDP, CA +station = ('ko69', 0.0042196195726217868) +zone = ('caz506', 0.0034313765995236632) + +[fips0653224] +centroid = (0.58516552676178668, -2.026782862313357) +description = Oasis CDP, CA +station = ('ktrm', 0.0017971496170983306) +zone = ('caz061', 0.0045418886533838436) + +[fips0653266] +centroid = (0.67021303011039512, -2.1456196432746029) +description = Occidental CDP, CA +station = ('ksts', 0.0023742571057961195) +zone = ('caz505', 0.0028741955889636937) + +[fips0653294] +centroid = (0.61263863234438176, -2.1050104916097978) +description = Oceano CDP, CA +station = ('ksbp', 0.0023268009227677688) +zone = ('caz034', 0.0043639213474096165) + +[fips0653322] +centroid = (0.57987817396591745, -2.0473798942418702) +description = Oceanside city, CA +station = ('kokb', 0.0006538464507556492) +zone = ('caz043', 0.0044168261786498436) + +[fips0653378] +centroid = (0.57147560044145607, -2.0246141685447068) +description = Ocotillo CDP, CA +station = ('knjk', 0.0052076817540188105) +zone = ('caz062', 0.0065192700085313022) + +[fips0653448] +centroid = (0.61828187522802514, -2.0774290010806538) +description = Oildale CDP, CA +station = ('kbfl', 0.00034656325004191977) +zone = ('caz092', 0.0065836432141456354) + +[fips0653476] +centroid = (0.6012354364100142, -2.0812454078362346) +description = Ojai city, CA +station = ('koxr', 0.0043845384843624585) +zone = ('caz044', 0.0020554518198855226) + +[fips0653490] +centroid = (0.63302720214703656, -2.0595104735952989) +description = Olancha CDP, CA +station = ('kiyk', 0.010790382122718377) +zone = ('caz520', 0.0042531427131417094) + +[fips0653505] +centroid = (0.64226109344751536, -2.090994380705562) +description = Old Fig Garden CDP, CA +station = ('kfat', 0.0012660788337243683) +zone = ('caz090', 0.0061856882722118554) + +[fips0653602] +centroid = (0.70986392620268535, -2.1190527475462284) +description = Old Station CDP, CA +station = ('krbl', 0.014382371584905176) +zone = ('caz014', 0.004818156582884414) + +[fips0653714] +centroid = (0.68210511022153875, -2.1215341170503739) +description = Olivehurst CDP, CA +station = ('kmyv', 0.00035596399877744366) +zone = ('caz016', 0.0071841805152818424) + +[fips0653896] +centroid = (0.5941017696116303, -2.052660248267439) +description = Ontario city, CA +station = ('kont', 0.00041078115919831733) +zone = ('caz548', 0.0052982496054350767) + +[fips0653910] +centroid = (0.62255650072542457, -2.063461253249991) +description = Onyx CDP, CA +station = ('kiyk', 0.0055909461348135729) +zone = ('caz095', 0.0073851041387637513) + +[fips0653924] +centroid = (0.6450687697086136, -2.1287787169760142) +description = Pleasure Point CDP, CA +station = ('kwvi', 0.0026446442287095663) +zone = ('caz529', 0.0010089843896084502) + +[fips0653980] +centroid = (0.59000581346975745, -2.0564320269540466) +description = Orange city, CA +station = ('ksna', 0.0022057651049626958) +zone = ('caz042', 0.0018518947172795292) + +[fips0654008] +centroid = (0.63915142286594462, -2.082501992537793) +description = Orange Cove city, CA +station = ('kvis', 0.0054276981395719442) +zone = ('caz094', 0.0085172050882259698) + +[fips0654092] +centroid = (0.67525670003610083, -2.11574182304861) +description = Orangevale CDP, CA +station = ('kmcc', 0.0024429412499285628) +zone = ('caz017', 0.0047531209807166411) + +[fips0654120] +centroid = (0.60854862777525831, -2.1017876015196499) +description = Orcutt CDP, CA +station = ('ksmx', 0.0008409962918592026) +zone = ('caz035', 0.0025409446068593313) + +[fips0654218] +centroid = (0.72066599583608104, -2.1655028355390504) +description = Orick CDP, CA +station = ('kacv', 0.0053826073025967959) +zone = ('caz001', 0.0046653916109574891) + +[fips0654232] +centroid = (0.66117896155597722, -2.1323480374693906) +description = Orinda city, CA +station = ('kccr', 0.0026693475524437915) +zone = ('caz006', 0.0043056275900856984) + +[fips0654274] +centroid = (0.69370381793871472, -2.1325370915339663) +description = Orland city, CA +station = ('kcic', 0.0045954089557480879) +zone = ('caz016', 0.0073389308503785371) + +[fips0654372] +centroid = (0.63780289421939107, -2.0820080294528935) +description = Orosi CDP, CA +station = ('kvis', 0.0042468729887114231) +zone = ('caz094', 0.0072805733947858527) + +[fips0654386] +centroid = (0.68945767621470777, -2.1217352138867884) +description = Oroville city, CA +station = ('kove', 0.00067800811803971311) +zone = ('caz016', 0.0053261558253607129) + +[fips0654388] +centroid = (0.68929120671065258, -2.1203725829798792) +description = Oroville East CDP, CA +station = ('kove', 0.0017312454845464576) +zone = ('caz016', 0.0062427265802496405) + +[fips0654652] +centroid = (0.59694354960631246, -2.08051280588271) +description = Oxnard city, CA +station = ('koxr', 7.8047558388551251e-05) +zone = ('caz040', 0.0012319879002005516) + +[fips0654764] +centroid = (0.66301323278665303, -2.1305217772999812) +description = Pacheco CDP, CA +station = ('kccr', 0.00034620724301312748) +zone = ('caz510', 0.0032172942253491251) + +[fips0654806] +centroid = (0.65635886830745183, -2.1376308873157894) +description = Pacifica city, CA +station = ('ksfo', 0.001538687955345351) +zone = ('caz006', 0.0026484677317827397) + +[fips0654848] +centroid = (0.63918159960871146, -2.1280079970316264) +description = Pacific Grove city, CA +station = ('kmry', 0.0012630730337916374) +zone = ('caz530', 0.0023735191961458757) + +[fips0655044] +centroid = (0.64405530937185806, -2.1247935717883508) +description = Pajaro CDP, CA +station = ('kwvi', 0.00080199896405075822) +zone = ('caz529', 0.0025646557367832467) + +[fips0655048] +centroid = (0.64347214250888918, -2.1259104428832871) +description = Pajaro Dunes CDP, CA +station = ('kwvi', 0.0011782201026342247) +zone = ('caz529', 0.0022951195012090126) + +[fips0655086] +centroid = (0.68819545409966554, -2.1209744423191368) +description = Palermo CDP, CA +station = ('kove', 0.0017492602310873111) +zone = ('caz016', 0.0055184135189263062) + +[fips0655156] +centroid = (0.6037323567977948, -2.0613909436912752) +description = Palmdale city, CA +station = ('kpmd', 0.00082080882951145043) +zone = ('caz059', 0.0014372653305945171) + +[fips0655184] +centroid = (0.58884551858303169, -2.0309282810862315) +description = Palm Desert city, CA +station = ('kpsp', 0.0025809284955410224) +zone = ('caz061', 0.00089129189873321741) + +[fips0655254] +centroid = (0.58993696023076625, -2.0339716815161042) +description = Palm Springs city, CA +station = ('kpsp', 0.00078992636751673605) +zone = ('caz056', 0.0028962467529886787) + +[fips0655282] +centroid = (0.65274933542810998, -2.1317935987259093) +description = Palo Alto city, CA +station = ('kpao', 0.0012221533261122506) +zone = ('caz508', 0.0034002077635489278) + +[fips0655296] +centroid = (0.70774335116151232, -2.1334245390987281) +description = Palo Cedro CDP, CA +station = ('krdd', 0.0010834502597913281) +zone = ('caz015', 0.0058278605156695104) + +[fips0655380] +centroid = (0.589685999337622, -2.066381014555652) +description = Palos Verdes Estates city, CA +station = ('ktoa', 0.00092362837587646874) +zone = ('caz041', 0.0028253315108692834) + +[fips0655422] +centroid = (0.58342703920046013, -2.0023676433934261) +description = Palo Verde CDP, CA +station = ('kblh', 0.0032980508916906517) +zone = ('caz031', 0.0022247149915945539) + +[fips0655506] +centroid = (0.62494599609774493, -2.0704326567878168) +description = Panorama Heights CDP, CA +station = ('kptv', 0.0073651652500443107) +zone = ('caz095', 0.0079696091842682715) + +[fips0655520] +centroid = (0.6938415418699897, -2.1224320714972325) +description = Paradise town, CA +station = ('kcic', 0.0033639266700631171) +zone = ('caz066', 0.006555485576823652) + +[fips0655528] +centroid = (0.65419919789103409, -2.0699991170016214) +description = Paradise CDP, CA +station = ('kmmh', 0.0039600955221080099) +zone = ('caz096', 0.0083304763067273586) + +[fips0655604] +centroid = (0.64588153463468234, -2.1300417943023904) +description = Paradise Park CDP, CA +station = ('kwvi', 0.0038304007623443269) +zone = ('caz529', 0.0020489835554062812) + +[fips0655618] +centroid = (0.59164713855162554, -2.0623967420326146) +description = Paramount city, CA +station = ('klgb', 0.0014550626083774069) +zone = ('caz041', 0.0020035346523460213) + +[fips0655728] +centroid = (0.65636492459995632, -2.1114865183460303) +description = Parklawn CDP, CA +station = ('kmod', 0.00043879719130830968) +zone = ('caz019', 0.0027726212380179559) + +[fips0655751] +centroid = (0.64483346441885969, -2.0947748336785517) +description = Parksdale CDP, CA +station = ('kmae', 0.0014734242612381156) +zone = ('caz090', 0.002257157334137326) + +[fips0655800] +centroid = (0.67194123768242742, -2.11973442079218) +description = Parkway CDP, CA +station = ('ksac', 0.00065796328843453647) +zone = ('caz017', 0.0026879806918044301) + +[fips0655842] +centroid = (0.64453736931125882, -2.0952362987327793) +description = Parkwood CDP, CA +station = ('kmae', 0.0013424663821962647) +zone = ('caz090', 0.0023293306807457719) + +[fips0655856] +centroid = (0.63892671172475024, -2.0864302574451346) +description = Parlier city, CA +station = ('kfat', 0.0039048814205559969) +zone = ('caz094', 0.010770890616820378) + +[fips0656000] +centroid = (0.59621480483043476, -2.0619248748160453) +description = Pasadena city, CA +station = ('kmws', 0.0016492739605908884) +zone = ('caz548', 0.002912464216212711) + +[fips0656028] +centroid = (0.6458317403911229, -2.129764478937541) +description = Pasatiempo CDP, CA +station = ('kwvi', 0.0036050447931937372) +zone = ('caz529', 0.0018222171908256375) + +[fips0656042] +centroid = (0.6960944652283414, -2.1388282879024128) +description = Paskenta CDP, CA +station = ('krbl', 0.006108013766518856) +zone = ('caz063', 0.003047274494682976) + +[fips0656112] +centroid = (0.65403499731500647, -2.1143614072366228) +description = Patterson city, CA +station = ('kmod', 0.0036680413572219082) +zone = ('caz019', 0.0051681547962874408) + +[fips0656120] +centroid = (0.63494236938854243, -2.0821010380487324) +description = Patterson Tract CDP, CA +station = ('kvis', 0.0018322334007267785) +zone = ('caz094', 0.0058092426135408042) + +[fips0656140] +centroid = (0.70057748303842904, -2.0974980360038535) +description = Patton Village CDP, CA +station = ('krts', 0.0091722003393787093) +zone = ('caz071', 0.0075174149138838072) + +[fips0656182] +centroid = (0.69871823614615702, -2.1118932324216222) +description = Paxton CDP, CA +station = ('kove', 0.012434055805622219) +zone = ('caz068', 0.0054460374623971821) + +[fips0656196] +centroid = (0.70409870225762017, -2.1279924286946987) +description = Paynes Creek CDP, CA +station = ('krbl', 0.0054738087378791754) +zone = ('caz066', 0.0046016001717796426) + +[fips0656294] +centroid = (0.62522833801083999, -2.0573635789890057) +description = Pearsonville CDP, CA +station = ('kiyk', 0.0028008007380560915) +zone = ('caz098', 0.0035869603979582329) + +[fips0656350] +centroid = (0.59304474585674494, -2.0502797064341811) +description = Pedley CDP, CA +station = ('kral', 0.00060032434963972771) +zone = ('caz048', 0.0040482203161088743) + +[fips0656476] +centroid = (0.66847154058275515, -2.1410052719850103) +description = Penngrove CDP, CA +station = ('ko69', 0.0013094653592723969) +zone = ('caz506', 0.0012699610340023676) + +[fips0656518] +centroid = (0.6840869839470558, -2.1152370040157633) +description = Penn Valley CDP, CA +station = ('kgoo', 0.0026321319980704286) +zone = ('caz017', 0.011111829466252892) + +[fips0656546] +centroid = (0.67802287236758652, -2.1148140234715425) +description = Penryn CDP, CA +station = ('kaun', 0.0022683832359495096) +zone = ('caz017', 0.0065915861632745475) + +[fips0656700] +centroid = (0.58973635208654207, -2.045898039893757) +description = Perris city, CA +station = ('kriv', 0.0019745187645877809) +zone = ('caz048', 0.0010726141387129723) + +[fips0656756] +centroid = (0.65004602985628102, -2.1359141465569431) +description = Pescadero CDP, CA +station = ('khaf', 0.0047589009347476282) +zone = ('caz509', 0.0022610287020945444) + +[fips0656784] +centroid = (0.66745959868244886, -2.14026992986456) +description = Petaluma city, CA +station = ('ko69', 0.00041049021086639055) +zone = ('caz506', 0.0022273930100169775) + +[fips0656798] +centroid = (0.66280178614777407, -2.1126063739539873) +description = Peters CDP, CA +station = ('ksck', 0.0029293126440663245) +zone = ('caz019', 0.00379876927871666) + +[fips0656826] +centroid = (0.60108828770077849, -2.0511952537999001) +description = Phelan CDP, CA +station = ('kgxa', 0.0030463868346254784) +zone = ('caz055', 0.0071840032833527471) + +[fips0656854] +centroid = (0.70180888263888108, -2.1603917260910475) +description = Phillipsville CDP, CA +station = ('kfot', 0.0075966885772843261) +zone = ('caz003', 0.0099364104351379896) + +[fips0656868] +centroid = (0.68182531648915157, -2.1545270009253259) +description = Philo CDP, CA +station = ('kuki', 0.003525939597992214) +zone = ('caz002', 0.003737738329370399) + +[fips0656870] +centroid = (0.66338619219451178, -2.0997668942182761) +description = Phoenix Lake CDP, CA +station = ('ko22', 0.0015849930281138713) +zone = ('caz019', 0.01101019264468742) + +[fips0656924] +centroid = (0.59322910498563319, -2.0610470789220474) +description = Pico Rivera city, CA +station = ('kemt', 0.0018264421546974963) +zone = ('caz548', 0.0021351202746931106) + +[fips0656938] +centroid = (0.66012816862652146, -2.1333175853221658) +description = Piedmont city, CA +station = ('koak', 0.0018486926925905766) +zone = ('caz006', 0.0031503055270985536) + +[fips0657011] +centroid = (0.63077015981164997, -2.070477372123253) +description = Pierpoint CDP, CA +station = ('kptv', 0.0064417134353806872) +zone = ('caz097', 0.0030305359578355283) + +[fips0657036] +centroid = (0.6881478066110861, -2.1118453231336551) +description = Pike CDP, CA +station = ('kgoo', 0.0035596476026479094) +zone = ('caz068', 0.014221592260513864) + +[fips0657070] +centroid = (0.63132114280321217, -2.1143432732656944) +description = Pine Canyon CDP, CA +station = ('ksns', 0.010757860058936638) +zone = ('caz516', 0.0017523233010819713) + +[fips0657134] +centroid = (0.62611285342245826, -2.0707026941296856) +description = Pine Flat CDP, CA +station = ('kptv', 0.0066089959193985403) +zone = ('caz097', 0.0070621628363708002) + +[fips0657148] +centroid = (0.67033530787778983, -2.1059248346983326) +description = Pine Grove CDP, CA +station = ('kpvf', 0.0055909041331495494) +zone = ('caz067', 0.0039863174493020709) + +[fips0657204] +centroid = (0.71092409155022429, -2.1670239423420412) +description = Pine Hills CDP, CA +station = ('kfot', 0.0031472063201455403) +zone = ('caz001', 0.0051584571063422388) + +[fips0657240] +centroid = (0.60817683773799835, -2.079872165327473) +description = Pine Mountain Club CDP, CA +station = ('ksdb', 0.0066804505453844625) +zone = ('caz053', 0.0038124114073734374) + +[fips0657244] +centroid = (0.66077362629049408, -2.0975657024189536) +description = Pine Mountain Lake CDP, CA +station = ('ko22', 0.0044285756347524968) +zone = ('caz093', 0.012331980357945808) + +[fips0657260] +centroid = (0.57319293461224841, -2.0334964109074933) +description = Pine Valley CDP, CA +station = ('kczz', 0.0038111254032630187) +zone = ('caz058', 0.0040226389766060359) + +[fips0657288] +centroid = (0.6632548212617142, -2.1348603516611737) +description = Pinole city, CA +station = ('kapc', 0.003494469878015423) +zone = ('caz006', 0.0046183066423871825) + +[fips0657302] +centroid = (0.60113537668399741, -2.0528904571957769) +description = Piñon Hills CDP, CA +station = ('kgxa', 0.0022752163987530584) +zone = ('caz059', 0.0075071459592873013) + +[fips0657330] +centroid = (0.67082567558443007, -2.1046028001498245) +description = Pioneer CDP, CA +station = ('kpvf', 0.0054531085582824974) +zone = ('caz067', 0.0040814556502307706) + +[fips0657372] +centroid = (0.60051405692357984, -2.073443681360065) +description = Piru CDP, CA +station = ('kcma', 0.0052687960133438062) +zone = ('caz045', 0.002734943665001223) + +[fips0657414] +centroid = (0.61353875099951272, -2.1061573474612834) +description = Pismo Beach city, CA +station = ('ksbp', 0.0015140052600174023) +zone = ('caz034', 0.0031795302448112679) + +[fips0657456] +centroid = (0.66357241882569962, -2.1276192947539148) +description = Pittsburg city, CA +station = ('kccr', 0.0020428775961433398) +zone = ('caz510', 0.0024578455010176342) + +[fips0657512] +centroid = (0.62791541202062551, -2.0819848514804273) +description = Pixley CDP, CA +station = ('kptv', 0.0032892810400725067) +zone = ('caz092', 0.0037392773612110455) + +[fips0657526] +centroid = (0.59133776148841688, -2.0569540025734403) +description = Placentia city, CA +station = ('kful', 0.0018798987788473786) +zone = ('caz042', 0.0032520843637263118) + +[fips0657540] +centroid = (0.67597551388853472, -2.1083047656663521) +description = Placerville city, CA +station = ('kpvf', 0.00066544038372901297) +zone = ('caz067', 0.0019782564771871534) + +[fips0657568] +centroid = (0.63080112195258042, -2.079340485677438) +description = Plainview CDP, CA +station = ('kptv', 0.0021469381880724575) +zone = ('caz094', 0.0038037032645737625) + +[fips0657582] +centroid = (0.6508198390334452, -2.0999924431175114) +description = Planada CDP, CA +station = ('kmce', 0.0024918593350401717) +zone = ('caz090', 0.0050336652042875223) + +[fips0657764] +centroid = (0.66242256100790065, -2.1306260607227876) +description = Pleasant Hill city, CA +station = ('kccr', 0.00087799479532420731) +zone = ('caz510', 0.002986986569337925) + +[fips0657792] +centroid = (0.65739835150335468, -2.1271772726675544) +description = Pleasanton city, CA +station = ('klvk', 0.0010359957788577581) +zone = ('caz510', 0.0037376894746945113) + +[fips0657828] +centroid = (0.69461037685878557, -2.1059921695008743) +description = Plumas Eureka CDP, CA +station = ('kblu', 0.0089995883493087757) +zone = ('caz068', 0.011510784235033595) + +[fips0657829] +centroid = (0.68054462879062305, -2.1215866514608588) +description = Plumas Lake CDP, CA +station = ('kmyv', 0.0018828103174898694) +zone = ('caz017', 0.0063800879290779391) + +[fips0657834] +centroid = (0.67156614897288125, -2.1090737053749029) +description = Plymouth city, CA +station = ('kpvf', 0.0044039709242634541) +zone = ('caz067', 0.0026507539600754732) + +[fips0657876] +centroid = (0.67914791160342214, -2.1588983176632861) +description = Point Arena city, CA +station = ('kuki', 0.0077504277490241759) +zone = ('caz002', 0.0061224052228105452) + +[fips0657960] +centroid = (0.66470248460978076, -2.1434253455258254) +description = Point Reyes Station CDP, CA +station = ('ko69', 0.0040707837926306015) +zone = ('caz505', 0.003313402139143151) + +[fips0658030] +centroid = (0.67637435652920042, -2.1048303910842847) +description = Pollock Pines CDP, CA +station = ('kpvf', 0.0021511994337589449) +zone = ('caz067', 0.0033121585975376105) + +[fips0658072] +centroid = (0.59443462135327807, -2.0553218230168526) +description = Pomona city, CA +station = ('kpoc', 0.00078993125982560559) +zone = ('caz548', 0.0030754956652883393) + +[fips0658134] +centroid = (0.63015098680621262, -2.0687734420811159) +description = Ponderosa CDP, CA +station = ('kptv', 0.0076460267961797317) +zone = ('caz097', 0.0027329894439091645) + +[fips0658191] +centroid = (0.62930204120474997, -2.0795470104878264) +description = Poplar-Cotton Center CDP, CA +station = ('kptv', 0.0012329393267869221) +zone = ('caz092', 0.004855704691342673) + +[fips0658226] +centroid = (0.66400252031326856, -2.1325295691648907) +description = Port Costa CDP, CA +station = ('kccr', 0.0020116571245935352) +zone = ('caz510', 0.005080683677877236) + +[fips0658240] +centroid = (0.6294225387363076, -2.0775268791451058) +description = Porterville city, CA +station = ('kptv', 0.00070105943640840938) +zone = ('caz094', 0.0038475884551199945) + +[fips0658296] +centroid = (0.59624187488713321, -2.0805053707800965) +description = Port Hueneme city, CA +station = ('koxr', 0.00066347604345917861) +zone = ('caz040', 0.0015433585943381714) + +[fips0658352] +centroid = (0.69500405332486548, -2.1026730768623572) +description = Portola city, CA +station = ('krts', 0.0084537485380260513) +zone = ('caz071', 0.011302699256498365) + +[fips0658380] +centroid = (0.65227476295120013, -2.1331617972331332) +description = Portola Valley town, CA +station = ('kpao', 0.0021895711579055376) +zone = ('caz509', 0.0023737433106043693) + +[fips0658422] +centroid = (0.62491972889250236, -2.0714028155058304) +description = Posey CDP, CA +station = ('kptv', 0.0067311401249090319) +zone = ('caz095', 0.0080604129514416731) + +[fips0658436] +centroid = (0.62502460572725482, -2.0705981838140759) +description = Poso Park CDP, CA +station = ('kptv', 0.0072097261800587245) +zone = ('caz095', 0.0080621827744999635) + +[fips0658478] +centroid = (0.56920571248277485, -2.035172834560619) +description = Potrero CDP, CA +station = ('kczz', 0.0020483700315332195) +zone = ('caz058', 0.0080714584464504063) + +[fips0658506] +centroid = (0.68621045623478738, -2.1486754704487496) +description = Potter Valley CDP, CA +station = ('kuki', 0.0034279988835470075) +zone = ('caz076', 0.0046256405957931365) + +[fips0658520] +centroid = (0.57574401256671848, -2.0424164571018788) +description = Poway city, CA +station = ('krnm', 0.0017331624883588125) +zone = ('caz050', 0.00094707978236794894) + +[fips0658618] +centroid = (0.70172716632330268, -2.1145965379934513) +description = Prattville CDP, CA +station = ('kcic', 0.011659274074853485) +zone = ('caz068', 0.0025727163309756502) + +[fips0658758] +centroid = (0.6877094671694477, -2.1296721335668178) +description = Princeton CDP, CA +station = ('kove', 0.0057097188141117276) +zone = ('caz016', 0.0013649045936821506) + +[fips0658814] +centroid = (0.69946089119617316, -2.1324015492642565) +description = Proberta CDP, CA +station = ('krbl', 0.0016108003422475455) +zone = ('caz015', 0.0029552982622866398) + +[fips0658870] +centroid = (0.64248618856114503, -2.1232796033820009) +description = Prunedale CDP, CA +station = ('ksns', 0.0026462377557267863) +zone = ('caz528', 0.0031551927775274914) + +[fips0659052] +centroid = (0.60479128296156492, -2.0632574686065279) +description = Quartz Hill CDP, CA +station = ('kwjf', 0.0014197816685181501) +zone = ('caz059', 0.0021401953443419388) + +[fips0659080] +centroid = (0.69692859298445453, -2.1110607452750063) +description = Quincy CDP, CA +station = ('kove', 0.011642363580999217) +zone = ('caz068', 0.0070305845109217661) + +[fips0659115] +centroid = (0.68811550056663162, -2.1180301765907776) +description = Rackerby CDP, CA +station = ('kove', 0.0037645134510437047) +zone = ('caz016', 0.0077603621899017218) + +[fips0659220] +centroid = (0.66868808358304999, -2.1031162857726082) +description = Rail Road Flat CDP, CA +station = ('ko22', 0.0050589404425996831) +zone = ('caz067', 0.0064949688193681552) + +[fips0659248] +centroid = (0.5831119025507201, -2.0444688944890537) +description = Rainbow CDP, CA +station = ('knfg', 0.003619196663902998) +zone = ('caz057', 0.0059382928419437677) + +[fips0659290] +centroid = (0.63884743887012474, -2.0928096103940987) +description = Raisin City CDP, CA +station = ('kfat', 0.0041393760223474704) +zone = ('caz089', 0.0083126964938117932) + +[fips0659346] +centroid = (0.5767548549095961, -2.0398974582990603) +description = Ramona CDP, CA +station = ('krnm', 0.00061164582883658375) +zone = ('caz050', 0.0014075291899822641) + +[fips0659426] +centroid = (0.66544779256025999, -2.1092843142557411) +description = Rancho Calaveras CDP, CA +station = ('ko22', 0.0061878741858470317) +zone = ('caz019', 0.0069442624136029979) + +[fips0659444] +centroid = (0.67328137129527865, -2.1161539825514684) +description = Rancho Cordova city, CA +station = ('kmhr', 0.00085910149110922135) +zone = ('caz017', 0.0043972275483878404) + +[fips0659451] +centroid = (0.59556419844516884, -2.0518824946461653) +description = Rancho Cucamonga city, CA +station = ('kont', 0.001309113616019915) +zone = ('caz548', 0.0060047692869625137) + +[fips0659500] +centroid = (0.58922929903225263, -2.0320658168795114) +description = Rancho Mirage city, CA +station = ('kpsp', 0.0016398341699253487) +zone = ('caz061', 0.0018607684681390903) + +[fips0659506] +centroid = (0.67197624898722241, -2.1131076674217453) +description = Rancho Murieta CDP, CA +station = ('kmhr', 0.0032246450482595651) +zone = ('caz067', 0.0046101938956378628) + +[fips0659514] +centroid = (0.58910353060635401, -2.0659018867693946) +description = Rancho Palos Verdes city, CA +station = ('ktoa', 0.00095594151179697554) +zone = ('caz041', 0.0032045320175016034) + +[fips0659550] +centroid = (0.57181168104222013, -2.0406336381775514) +description = Rancho San Diego CDP, CA +station = ('ksee', 0.0013529759846148482) +zone = ('caz050', 0.0042708783462234879) + +[fips0659584] +centroid = (0.57637048104842925, -2.0455369138182267) +description = Rancho Santa Fe CDP, CA +station = ('kcrq', 0.002265193431640018) +zone = ('caz043', 0.00095063906371710318) + +[fips0659587] +centroid = (0.586995312496285, -2.0524898866791519) +description = Rancho Santa Margarita city, CA +station = ('kajo', 0.0046713261033660951) +zone = ('caz057', 0.0020960890892717642) + +[fips0659604] +centroid = (0.69817746333071917, -2.1368917403775698) +description = Rancho Tehama Reserve CDP, CA +station = ('krbl', 0.0035654716480334305) +zone = ('caz015', 0.0042259647275943862) + +[fips0659668] +centroid = (0.61729953411183269, -2.0535600178567193) +description = Randsburg CDP, CA +station = ('knid', 0.0055209631746798516) +zone = ('caz098', 0.0049366293574592103) + +[fips0659892] +centroid = (0.70116010884932978, -2.1335170939089614) +description = Red Bluff city, CA +station = ('krbl', 0.0004256973735043956) +zone = ('caz015', 0.0010765248312488874) + +[fips0659896] +centroid = (0.67040974617038729, -2.1049633851732867) +description = Red Corral CDP, CA +station = ('kpvf', 0.0057315488405606891) +zone = ('caz067', 0.0042608961152466067) + +[fips0659906] +centroid = (0.70509163752237225, -2.1632905085391001) +description = Redcrest CDP, CA +station = ('kfot', 0.0036583132424266164) +zone = ('caz003', 0.0070677266157573694) + +[fips0659920] +centroid = (0.70803525747890828, -2.1356691197832554) +description = Redding city, CA +station = ('krdd', 0.0015980278051207144) +zone = ('caz015', 0.0061381098959028182) + +[fips0659962] +centroid = (0.59431326861038702, -2.0450173292999083) +description = Redlands city, CA +station = ('ksbd', 0.0012361097667092785) +zone = ('caz055', 0.0033034389750073428) + +[fips0660018] +centroid = (0.59091293089518904, -2.066070799734403) +description = Redondo Beach city, CA +station = ('ktoa', 0.0011775817547236412) +zone = ('caz041', 0.0016684778272450516) + +[fips0660088] +centroid = (0.70027515710539856, -2.1610053489494638) +description = Redway CDP, CA +station = ('kfot', 0.0086205484122549494) +zone = ('caz003', 0.01148703128073374) + +[fips0660102] +centroid = (0.65476505108782312, -2.1330309673524033) +description = Redwood City city, CA +station = ('ksql', 0.00050349973704931353) +zone = ('caz508', 0.0015270585333894916) + +[fips0660214] +centroid = (0.68536545507743429, -2.1502937746377841) +description = Redwood Valley CDP, CA +station = ('kuki', 0.0023602359211393974) +zone = ('caz076', 0.0048385689757150744) + +[fips0660242] +centroid = (0.63877666576895631, -2.0847615132407173) +description = Reedley city, CA +station = ('kfat', 0.0049458488524021706) +zone = ('caz094', 0.0095986373738036288) + +[fips0660279] +centroid = (0.66217650448995458, -2.1310940533084177) +description = Reliez Valley CDP, CA +station = ('kccr', 0.0012748551893574911) +zone = ('caz510', 0.0032369861115945356) + +[fips0660466] +centroid = (0.59536294452912142, -2.0488121114260567) +description = Rialto city, CA +station = ('ksbd', 0.0022487181067181055) +zone = ('caz048', 0.0050627248284382904) + +[fips0660592] +centroid = (0.69767594297015845, -2.1323264302932508) +description = Richfield CDP, CA +station = ('krbl', 0.0032399858872147174) +zone = ('caz015', 0.0045887536832154964) + +[fips0660606] +centroid = (0.62476874045891251, -2.0788076192035119) +description = Richgrove CDP, CA +station = ('kptv', 0.0041705296864079913) +zone = ('caz092', 0.0011526153163804623) + +[fips0660620] +centroid = (0.66240435722380231, -2.1355735979132935) +description = Richmond city, CA +station = ('kdvo', 0.0042732455945975831) +zone = ('caz006', 0.0036262030303176765) + +[fips0660662] +centroid = (0.68929577947329279, -2.124951785885044) +description = Richvale CDP, CA +station = ('kove', 0.0018093922870499484) +zone = ('caz016', 0.0031262836908381385) + +[fips0660704] +centroid = (0.62183536558508556, -2.0536240714402676) +description = Ridgecrest city, CA +station = ('knid', 0.0010840869774275772) +zone = ('caz098', 0.0019508988573271031) + +[fips0660706] +centroid = (0.64242499731757019, -2.1181713737272636) +description = Ridgemark CDP, CA +station = ('kcvh', 0.0015749343874397769) +zone = ('caz528', 0.0030368276101608439) + +[fips0660900] +centroid = (0.70678139549098296, -2.1662141793822856) +description = Rio Dell city, CA +station = ('kfot', 0.0010452885413349236) +zone = ('caz003', 0.0067699797764574189) + +[fips0660928] +centroid = (0.64503702216951975, -2.1272914695605123) +description = Rio del Mar CDP, CA +station = ('kwvi', 0.0014791597006796682) +zone = ('caz529', 0.00037989211179957616) + +[fips0660942] +centroid = (0.67522488268383696, -2.1195586661365042) +description = Rio Linda CDP, CA +station = ('kmcc', 0.00067566407010886574) +zone = ('caz017', 0.0019573962298564266) + +[fips0660970] +centroid = (0.67983640908674892, -2.1211167390130519) +description = Rio Oso CDP, CA +station = ('klhm', 0.0025637092952948974) +zone = ('caz017', 0.0056876976910906433) + +[fips0660984] +centroid = (0.66629295079724571, -2.1242046802454353) +description = Rio Vista city, CA +station = ('ksuu', 0.003678416945429335) +zone = ('caz018', 0.00093769485558789208) + +[fips0661012] +centroid = (0.58510047834056489, -2.0010722076627183) +description = Ripley CDP, CA +station = ('kblh', 0.0018668662396218037) +zone = ('azz020', 0.0030801980380821834) + +[fips0661026] +centroid = (0.65872677395692514, -2.1141550045992821) +description = Ripon city, CA +station = ('ksck', 0.003086220116445138) +zone = ('caz019', 0.0012880079110610611) + +[fips0661068] +centroid = (0.65845420588764114, -2.1108233281368571) +description = Riverbank city, CA +station = ('kmod', 0.001923305634943798) +zone = ('caz019', 0.0014818869752745484) + +[fips0661096] +centroid = (0.63583051508500488, -2.0920768688142339) +description = Riverdale CDP, CA +station = ('knlc', 0.0020554351403059014) +zone = ('caz089', 0.0095066219281716748) + +[fips0661106] +centroid = (0.65628753670092288, -2.1125384108329146) +description = Riverdale Park CDP, CA +station = ('kmod', 0.001262366357733194) +zone = ('caz019', 0.0027157029929776202) + +[fips0661124] +centroid = (0.67274454292395025, -2.1074408974997847) +description = River Pines CDP, CA +station = ('kpvf', 0.0030471388436022675) +zone = ('caz067', 0.0013232050809268165) + +[fips0662000] +centroid = (0.59233233736266588, -2.0488973009468467) +description = Riverside city, CA +station = ('kral', 0.00084849124060222948) +zone = ('caz048', 0.0026999362142017605) + +[fips0662168] +centroid = (0.678356212801425, -2.1241894958809429) +description = Robbins CDP, CA +station = ('ksmf', 0.0032577726710676276) +zone = ('caz017', 0.00463049541623452) + +[fips0662200] +centroid = (0.68915418091107861, -2.1174363108594938) +description = Robinson Mill CDP, CA +station = ('kove', 0.0040014001395207019) +zone = ('caz016', 0.0083866410374202217) + +[fips0662364] +centroid = (0.67732809169895281, -2.1162180884948945) +description = Rocklin city, CA +station = ('klhm', 0.0022361381819086439) +zone = ('caz017', 0.0052984463244523453) + +[fips0662490] +centroid = (0.66386399353053782, -2.1337340557882767) +description = Rodeo CDP, CA +station = ('kccr', 0.0028762360637342482) +zone = ('caz006', 0.0055451304322358137) + +[fips0662496] +centroid = (0.62498470750055413, -2.079364710847456) +description = Rodriguez Camp CDP, CA +station = ('kptv', 0.0040462345977520103) +zone = ('caz092', 0.00083654160564273442) + +[fips0662546] +centroid = (0.66930257910609225, -2.1414994794160052) +description = Rohnert Park city, CA +station = ('ko69', 0.0021846431181291514) +zone = ('caz506', 0.00086608711736006175) + +[fips0662602] +centroid = (0.5892233823660884, -2.0655476547444098) +description = Rolling Hills city, CA +station = ('ktoa', 0.00072616885249853782) +zone = ('caz041', 0.0030109701343762466) + +[fips0662625] +centroid = (0.64409670858171542, -2.0908465687712106) +description = Rolling Hills CDP, CA +station = ('kfat', 0.0023845681157928307) +zone = ('caz090', 0.005146794523801952) + +[fips0662644] +centroid = (0.58958895903121122, -2.0651662828495567) +description = Rolling Hills Estates city, CA +station = ('ktoa', 0.00035210685710989134) +zone = ('caz041', 0.0025933548078281134) + +[fips0662700] +centroid = (0.66262199978152603, -2.1350713968743249) +description = Rollingwood CDP, CA +station = ('kccr', 0.003906666982361048) +zone = ('caz006', 0.0039696346446806861) + +[fips0662756] +centroid = (0.58930628550555819, -2.0447777305001944) +description = Romoland CDP, CA +station = ('kriv', 0.0027173253205828802) +zone = ('caz048', 0.0019045656439630897) + +[fips0662826] +centroid = (0.60851998692223308, -2.0632369086279394) +description = Rosamond CDP, CA +station = ('kwjf', 0.0023091205710671133) +zone = ('caz059', 0.0040650678412944737) + +[fips0662854] +centroid = (0.61769691067592669, -2.0804947591782446) +description = Rosedale CDP, CA +station = ('kbfl', 0.0023036381954697799) +zone = ('caz092', 0.0067814575241180565) + +[fips0662860] +centroid = (0.59357007250830274, -2.0602191121781939) +description = Rose Hills CDP, CA +station = ('kemt', 0.0013021657428777813) +zone = ('caz548', 0.0013950616021429676) + +[fips0662868] +centroid = (0.67051868962229677, -2.1419182013568512) +description = Roseland CDP, CA +station = ('ksts', 0.0019227261267976761) +zone = ('caz506', 0.0013897411528726897) + +[fips0662896] +centroid = (0.59461412846684569, -2.0609315555788577) +description = Rosemead city, CA +station = ('kemt', 0.00075666534002803471) +zone = ('caz548', 0.001575161061984165) + +[fips0662910] +centroid = (0.67278498220271887, -2.1180464954192835) +description = Rosemont CDP, CA +station = ('kmhr', 0.00075347931014351117) +zone = ('caz017', 0.0031476833547553281) + +[fips0662938] +centroid = (0.67658985233194413, -2.1171395176201919) +description = Roseville city, CA +station = ('kmcc', 0.0021747047111636084) +zone = ('caz017', 0.0042849212987191992) + +[fips0662980] +centroid = (0.66259356836801098, -2.1391029154602141) +description = Ross town, CA +station = ('kdvo', 0.0030750839504254833) +zone = ('caz006', 0.0039852097430251457) + +[fips0663050] +centroid = (0.58972240690581856, -2.060891587538987) +description = Rossmoor CDP, CA +station = ('ksli', 0.00045033038123262395) +zone = ('caz041', 0.0040119098273371963) + +[fips0663106] +centroid = (0.68476277543342812, -2.1142572110802789) +description = Rough and Ready CDP, CA +station = ('kgoo', 0.0018325539899346863) +zone = ('caz067', 0.01183808143884057) + +[fips0663134] +centroid = (0.71205005581056335, -2.1282193738573354) +description = Round Mountain CDP, CA +station = ('krdd', 0.0069185939597349311) +zone = ('caz013', 0.0044344836497742192) + +[fips0663148] +centroid = (0.65300033122783929, -2.0694765654235745) +description = Round Valley CDP, CA +station = ('kbih', 0.0029691934714230843) +zone = ('caz073', 0.010137707285395649) + +[fips0663168] +centroid = (0.65658436484680949, -2.1119944964248232) +description = Rouse CDP, CA +station = ('kmod', 0.00080848923232078394) +zone = ('caz019', 0.0024604231380509788) + +[fips0663218] +centroid = (0.59289380978303241, -2.0575785686462664) +description = Rowland Heights CDP, CA +station = ('kful', 0.0022533293718347098) +zone = ('caz548', 0.0020546014817047031) + +[fips0663260] +centroid = (0.59329338546198407, -2.04933331910058) +description = Rubidoux CDP, CA +station = ('kral', 0.00088385492133471089) +zone = ('caz048', 0.0035968847201150052) + +[fips0663316] +centroid = (0.5971009084916723, -2.0438603505387611) +description = Running Springs CDP, CA +station = ('ksbd', 0.0026900049649070065) +zone = ('caz055', 0.00035609119989453609) + +[fips0663386] +centroid = (0.70326033335142468, -2.1528345726029601) +description = Ruth CDP, CA +station = ('ko54', 0.0097249326752609049) +zone = ('caz004', 0.0078975393913963705) + +[fips0663400] +centroid = (0.67123380337671645, -2.1367862003177018) +description = Rutherford CDP, CA +station = ('ko69', 0.0043332490165074204) +zone = ('caz506', 0.0033024974283179585) + +[fips0664000] +centroid = (0.67311401167330498, -2.120027566293345) +description = Sacramento city, CA +station = ('ksac', 0.0012386407800999203) +zone = ('caz017', 0.0016564224482975305) + +[fips0664140] +centroid = (0.67202236058606002, -2.1374651683033128) +description = St. Helena city, CA +station = ('ksts', 0.0047665022151855444) +zone = ('caz507', 0.0031971861340452799) + +[fips0664210] +centroid = (0.65825974130238396, -2.1133758198080215) +description = Salida CDP, CA +station = ('kmod', 0.0025661911811326885) +zone = ('caz019', 0.0009822817315144445) + +[fips0664224] +centroid = (0.64036447905595817, -2.1229088081824146) +description = Salinas city, CA +station = ('ksns', 0.00062542791766778661) +zone = ('caz530', 0.0021481186183212727) + +[fips0664252] +centroid = (0.66926765506775987, -2.147790466344941) +description = Salmon Creek CDP, CA +station = ('ksts', 0.0042677946736181267) +zone = ('caz505', 0.002396513011201007) + +[fips0664294] +centroid = (0.58118385477933443, -2.0238996482022329) +description = Salton City CDP, CA +station = ('ktrm', 0.0064019930945678873) +zone = ('caz062', 0.0060876871768793658) + +[fips0664308] +centroid = (0.58251838588528682, -2.0247804809691292) +description = Salton Sea Beach CDP, CA +station = ('ktrm', 0.0048793233660256634) +zone = ('caz062', 0.0066809272235560631) + +[fips0664392] +centroid = (0.71234930996411028, -2.1675106972171299) +description = Samoa CDP, CA +station = ('kacv', 0.0031712831126000833) +zone = ('caz001', 0.0038624344943586223) + +[fips0664420] +centroid = (0.6663017298033832, -2.1060777953539773) +description = San Andreas CDP, CA +station = ('ko22', 0.0042716949850252596) +zone = ('caz067', 0.0078515745004064871) + +[fips0664434] +centroid = (0.66291308579417363, -2.1392484933731226) +description = San Anselmo town, CA +station = ('kdvo', 0.0027588540771257418) +zone = ('caz006', 0.0043236863371521085) + +[fips0664462] +centroid = (0.59614169298806874, -2.0535314817234496) +description = San Antonio Heights CDP, CA +station = ('kpoc', 0.0020523368398313946) +zone = ('caz548', 0.0048208689384995644) + +[fips0664476] +centroid = (0.62873215629738877, -2.1102305968695876) +description = San Ardo CDP, CA +station = ('kprb', 0.0073385399203427697) +zone = ('caz516', 0.0024814761281417553) + +[fips0665000] +centroid = (0.59584250864769184, -2.0471894788204774) +description = San Bernardino city, CA +station = ('ksbd', 0.0011276750263043206) +zone = ('caz055', 0.0032918730799281941) + +[fips0665028] +centroid = (0.65668737417926226, -2.1368307760267977) +description = San Bruno city, CA +station = ('ksfo', 0.00090761145551656274) +zone = ('caz006', 0.0022806352350877839) + +[fips0665042] +centroid = (0.59809164464156683, -2.0813928532514434) +description = San Buenaventura (Ventura) city, CA +station = ('koxr', 0.0014297707677251689) +zone = ('caz040', 0.0021164413941145107) + +[fips0665070] +centroid = (0.6544202612940917, -2.1339584004103282) +description = San Carlos city, CA +station = ('ksql', 0.00043635006680007546) +zone = ('caz508', 0.00221975059479587) + +[fips0665084] +centroid = (0.58379771222699872, -2.0527361700899007) +description = San Clemente city, CA +station = ('knxf', 0.0035631796613224457) +zone = ('caz057', 0.0038439497134190289) + +[fips0665112] +centroid = (0.63917278569598901, -2.1266404966561039) +description = Sand City city, CA +station = ('kmry', 0.00067406029808688101) +zone = ('caz530', 0.0012771924852885848) + +[fips0666000] +centroid = (0.57273503002969528, -2.04439129715051) +description = San Diego city, CA +station = ('kmyf', 3.4082089508297038e-05) +zone = ('caz043', 0.003211683664079625) + +[fips0666004] +centroid = (0.57612196361623791, -2.0383278837027419) +description = San Diego Country Estates CDP, CA +station = ('krnm', 0.0019347797783303765) +zone = ('caz050', 0.0025306941847800879) + +[fips0666070] +centroid = (0.5952961507786475, -2.0561467179812225) +description = San Dimas city, CA +station = ('kpoc', 0.00038970505175892073) +zone = ('caz548', 0.0025001860309058874) + +[fips0666140] +centroid = (0.59844987347053868, -2.0671023591355016) +description = San Fernando city, CA +station = ('kwhp', 0.0008534201410407492) +zone = ('caz547', 0.0016013068266131731) + +[fips0667000] +centroid = (0.65846453823681295, -2.1473174821176508) +description = San Francisco city, CA +station = ('khaf', 0.0083591060220486093) +zone = ('caz505', 0.0089509662010298398) + +[fips0667042] +centroid = (0.59506365546898943, -2.0612071256144548) +description = San Gabriel city, CA +station = ('kemt', 0.00096193260511458971) +zone = ('caz548', 0.0018716107667939514) + +[fips0667056] +centroid = (0.6405515783517719, -2.086681200884986) +description = Sanger city, CA +station = ('kfat', 0.002644363956383144) +zone = ('caz090', 0.0099083274765177053) + +[fips0667070] +centroid = (0.66334222735065407, -2.1408777407765669) +description = San Geronimo CDP, CA +station = ('kdvo', 0.0027248336278564399) +zone = ('caz006', 0.0053331421112708865) + +[fips0667112] +centroid = (0.58983615001317113, -2.0418948480016277) +description = San Jacinto city, CA +station = ('kriv', 0.0041642959046242056) +zone = ('caz048', 0.003732533740595333) + +[fips0667126] +centroid = (0.63889746000648684, -2.0976914010316818) +description = San Joaquin city, CA +station = ('knlc', 0.0058230821323266672) +zone = ('caz089', 0.0043959995594330123) + +[fips0668000] +centroid = (0.65095312982841991, -2.1261479821944835) +description = San Jose city, CA +station = ('krhv', 0.00063751114809690009) +zone = ('caz513', 0.0013833936533742591) + +[fips0668014] +centroid = (0.64307832641646923, -2.1212343742046365) +description = San Juan Bautista city, CA +station = ('kcvh', 0.0019446610571051987) +zone = ('caz528', 0.0029817492161873017) + +[fips0668028] +centroid = (0.58469543978105443, -2.0534572354170697) +description = San Juan Capistrano city, CA +station = ('ksna', 0.0044378473292110291) +zone = ('caz057', 0.003629551408581413) + +[fips0668084] +centroid = (0.65806984947976699, -2.1321222616773525) +description = San Leandro city, CA +station = ('khwd', 0.00090785397201425405) +zone = ('caz508', 0.0019348293499204694) + +[fips0668112] +centroid = (0.65754302184505242, -2.1316602206644721) +description = San Lorenzo CDP, CA +station = ('khwd', 0.00028895541251576073) +zone = ('caz508', 0.0014667216480521213) + +[fips0668140] +centroid = (0.63055864335960088, -2.1122276898661823) +description = San Lucas CDP, CA +station = ('kprb', 0.0097510730918722987) +zone = ('caz516', 0.00066029207284221602) + +[fips0668154] +centroid = (0.61555109817376963, -2.1060845497781826) +description = San Luis Obispo city, CA +station = ('ksbp', 0.00080360794649568133) +zone = ('caz034', 0.0014368199084993708) + +[fips0668196] +centroid = (0.5782955268535015, -2.0449912366275909) +description = San Marcos city, CA +station = ('kcrq', 0.0016656870556269205) +zone = ('caz043', 0.0028887178681030949) + +[fips0668224] +centroid = (0.59555295852478596, -2.061459186065028) +description = San Marino city, CA +station = ('kemt', 0.0013393976369700576) +zone = ('caz548', 0.0022430556942255537) + +[fips0668238] +centroid = (0.64721828230878475, -2.1222559677757062) +description = San Martin CDP, CA +station = ('ke16', 2.3550138543540528e-05) +zone = ('caz513', 0.0036737307349144939) + +[fips0668252] +centroid = (0.65555107756975139, -2.1347226800897765) +description = San Mateo city, CA +station = ('ksql', 0.0011329560188601566) +zone = ('caz508', 0.0020970918464550056) + +[fips0668263] +centroid = (0.66124765771533556, -2.1299445096498841) +description = San Miguel CDP, CA +station = ('kccr', 0.0019857479151634064) +zone = ('caz510', 0.0021618886040395699) + +[fips0668266] +centroid = (0.62401234966768304, -2.106481804169229) +description = San Miguel CDP, CA +station = ('kprb', 0.0017286880415605095) +zone = ('caz037', 0.0066497897302915275) + +[fips0668294] +centroid = (0.66257454427916429, -2.1352786547229994) +description = San Pablo city, CA +station = ('kccr', 0.004075525591369907) +zone = ('caz006', 0.0038647145228244196) + +[fips0668308] +centroid = (0.59584175815611351, -2.061277776542576) +description = San Pasqual CDP, CA +station = ('kemt', 0.0013967175691858942) +zone = ('caz548', 0.0022598264995201656) + +[fips0668364] +centroid = (0.66289355555984386, -2.1381492850102171) +description = San Rafael city, CA +station = ('kdvo', 0.0028692515523451182) +zone = ('caz006', 0.0040301410589791793) + +[fips0668378] +centroid = (0.65906323853012461, -2.1282142425893342) +description = San Ramon city, CA +station = ('klvk', 0.0019861291393397994) +zone = ('caz510', 0.0022196088685671419) + +[fips0668434] +centroid = (0.62165496835359946, -2.1142471405304946) +description = San Simeon CDP, CA +station = ('kprb', 0.0071999412622731802) +zone = ('caz034', 0.007591565985425484) + +[fips0669000] +centroid = (0.58881261912663152, -2.0574393786384197) +description = Santa Ana city, CA +station = ('ksna', 0.00095593660629522562) +zone = ('caz042', 0.0014684033841579635) + +[fips0669070] +centroid = (0.60037404661098492, -2.0893922208121087) +description = Santa Barbara city, CA +station = ('ksba', 0.0020571699420388152) +zone = ('caz039', 0.0029192737210163395) + +[fips0669084] +centroid = (0.65213552058347601, -2.1287420301551374) +description = Santa Clara city, CA +station = ('ksjc', 0.00071205778943841979) +zone = ('caz513', 0.0034687632199856986) + +[fips0669088] +centroid = (0.60047836494037665, -2.0682972115414167) +description = Santa Clarita city, CA +station = ('kwhp', 0.0030958209816658406) +zone = ('caz088', 0.0011418276703232648) + +[fips0669112] +centroid = (0.64532475715000359, -2.1299172301536755) +description = Santa Cruz city, CA +station = ('kwvi', 0.0035861046772878314) +zone = ('caz529', 0.0018792632041544086) + +[fips0669154] +centroid = (0.59225243618950962, -2.0605812854512751) +description = Santa Fe Springs city, CA +station = ('kful', 0.0016377479115401538) +zone = ('caz548', 0.0026400509814032327) + +[fips0669182] +centroid = (0.61766203899747185, -2.1050094967721242) +description = Santa Margarita CDP, CA +station = ('ksbp', 0.0027478555220300659) +zone = ('caz034', 0.0021786119480711537) + +[fips0669196] +centroid = (0.60969960260377842, -2.1021411354129342) +description = Santa Maria city, CA +station = ('ksmx', 0.00066558267099442892) +zone = ('caz035', 0.0037001345692686495) + +[fips0670000] +centroid = (0.59382057961584145, -2.0678951749482199) +description = Santa Monica city, CA +station = ('ksmo', 0.00047297174380378688) +zone = ('caz547', 0.0031571768564890787) + +[fips0670028] +centroid = (0.64754223287124735, -2.1121165647527076) +description = Santa Nella CDP, CA +station = ('kcvh', 0.0066241665904499224) +zone = ('caz528', 0.010077660422626439) + +[fips0670042] +centroid = (0.59956346334648114, -2.0781405718166921) +description = Santa Paula city, CA +station = ('kcma', 0.0023793677537064842) +zone = ('caz044', 0.0010346455064637991) + +[fips0670098] +centroid = (0.67102352610843619, -2.1416260855999449) +description = Santa Rosa city, CA +station = ('ksts', 0.0017727503004291659) +zone = ('caz506', 0.0016058101250833365) + +[fips0670130] +centroid = (0.59769552471453435, -2.0752379321909928) +description = Santa Rosa Valley CDP, CA +station = ('kcma', 0.0026590436138726127) +zone = ('caz045', 0.00091307203215748828) + +[fips0670140] +centroid = (0.59791409229676151, -2.0711187457167761) +description = Santa Susana CDP, CA +station = ('kvny', 0.0027374607212267577) +zone = ('caz547', 0.0028489505171724462) + +[fips0670154] +centroid = (0.66332231314388879, -2.1380773948983269) +description = Santa Venetia CDP, CA +station = ('kdvo', 0.0024743427611903612) +zone = ('caz006', 0.0044382743714937081) + +[fips0670182] +centroid = (0.60421686019814846, -2.0960343679865461) +description = Santa Ynez CDP, CA +station = ('kiza', 0.00033828988174186249) +zone = ('caz036', 0.0011347977341069847) + +[fips0670224] +centroid = (0.57342775120981182, -2.0417918561224675) +description = Santee city, CA +station = ('ksee', 0.00054332246435421464) +zone = ('caz050', 0.0026398240666216507) + +[fips0670266] +centroid = (0.66126713558978789, -2.1306303542327476) +description = Saranap CDP, CA +station = ('kccr', 0.0019907297811355478) +zone = ('caz510', 0.0027034750485215226) + +[fips0670280] +centroid = (0.65045883513096259, -2.1297397999819179) +description = Saratoga city, CA +station = ('ksjc', 0.0022799452048669227) +zone = ('caz512', 0.0016873260362057566) + +[fips0670322] +centroid = (0.59833297131724017, -2.0794769355183589) +description = Saticoy CDP, CA +station = ('kcma', 0.0014478878610056862) +zone = ('caz040', 0.0011663771063085376) + +[fips0670336] +centroid = (0.69167302263426422, -2.1020269908798537) +description = Sattley CDP, CA +station = ('ktrk', 0.0068311053932800965) +zone = ('nvz002', 0.0100982178001659) + +[fips0670364] +centroid = (0.66075318848495324, -2.137885984639261) +description = Sausalito city, CA +station = ('koak', 0.0043394214469990328) +zone = ('caz006', 0.0019161002144296114) + +[fips0670518] +centroid = (0.70645014945224704, -2.1660120178950271) +description = Scotia CDP, CA +station = ('kfot', 0.0014046523100061164) +zone = ('caz003', 0.0069170698285994691) + +[fips0670588] +centroid = (0.64673945122850018, -2.129507531565062) +description = Scotts Valley city, CA +station = ('kwvi', 0.0038320066594344413) +zone = ('caz512', 0.0020821524019533325) + +[fips0670644] +centroid = (0.64536388743183326, -2.1278767831784613) +description = Seacliff CDP, CA +station = ('kwvi', 0.002029148612986554) +zone = ('caz529', 0.00024953644769578736) + +[fips0670686] +centroid = (0.58908209796313948, -2.060766988483687) +description = Seal Beach city, CA +station = ('ksli', 0.00064376748860063982) +zone = ('caz041', 0.0045053845400954877) + +[fips0670712] +centroid = (0.67619121913078861, -2.1550642656289676) +description = Sea Ranch CDP, CA +station = ('kuki', 0.0077770378953869249) +zone = ('caz002', 0.0089973617894089728) + +[fips0670728] +centroid = (0.62430518100958277, -2.0489584223772517) +description = Searles Valley CDP, CA +station = ('knid', 0.0045565308907476575) +zone = ('caz098', 0.0062569310695529609) + +[fips0670742] +centroid = (0.63922882821827054, -2.1262223157673259) +description = Seaside city, CA +station = ('kmry', 0.00081788154716750901) +zone = ('caz530', 0.0009500190568463065) + +[fips0670770] +centroid = (0.67020618841972723, -2.1437480569045193) +description = Sebastopol city, CA +station = ('ksts', 0.0017520949723274846) +zone = ('caz507', 0.0032149744953452741) + +[fips0670798] +centroid = (0.57230053031241124, -2.0190849654743883) +description = Seeley CDP, CA +station = ('knjk', 0.00070260122542660649) +zone = ('caz033', 0.0054065607751539501) + +[fips0670882] +centroid = (0.63834220095825733, -2.087685777495849) +description = Selma city, CA +station = ('kfat', 0.0039128504104207528) +zone = ('caz090', 0.010874150513823268) + +[fips0670966] +centroid = (0.63156278363815077, -2.0704079080190239) +description = Sequoia Crest CDP, CA +station = ('kptv', 0.0067646837670299435) +zone = ('caz097', 0.0025439165364264708) + +[fips0671000] +centroid = (0.66992143795226433, -2.1480316533942743) +description = Sereno del Mar CDP, CA +station = ('ksts', 0.0040515592782271043) +zone = ('caz505', 0.0030423572646900232) + +[fips0671078] +centroid = (0.63679549017514003, -2.0808648038862523) +description = Seville CDP, CA +station = ('kvis', 0.0038421860949488123) +zone = ('caz094', 0.005923243873752447) + +[fips0671084] +centroid = (0.65648063992936356, -2.1116766719680351) +description = Shackelford CDP, CA +station = ('kmod', 0.00055786024679929929) +zone = ('caz019', 0.0026184353194677579) + +[fips0671106] +centroid = (0.61920791202254821, -2.0804183486635921) +description = Shafter city, CA +station = ('kbfl', 0.0022597534792975242) +zone = ('caz092', 0.0052691869522190817) + +[fips0671134] +centroid = (0.62227286726868303, -2.1010822965156266) +description = Shandon CDP, CA +station = ('kprb', 0.0035550928477955037) +zone = ('caz037', 0.0028593910827514452) + +[fips0671218] +centroid = (0.70846562076586506, -2.1376382176986479) +description = Shasta CDP, CA +station = ('krdd', 0.0030372242571693247) +zone = ('caz013', 0.0067781508251120231) + +[fips0671225] +centroid = (0.70998630868983525, -2.1358973564895387) +description = Shasta Lake city, CA +station = ('krdd', 0.0033697497766639129) +zone = ('caz013', 0.0048206855638134255) + +[fips0671246] +centroid = (0.64749217682830018, -2.0826366446895843) +description = Shaver Lake CDP, CA +station = ('kfat', 0.0077411473084763342) +zone = ('caz096', 0.0053521607759772936) + +[fips0671362] +centroid = (0.66158310999756897, -2.1299019759760132) +description = Shell Ridge CDP, CA +station = ('kccr', 0.0016559922341615018) +zone = ('caz510', 0.0021716866799374947) + +[fips0671372] +centroid = (0.69881161126113867, -2.165182619981187) +description = Shelter Cove CDP, CA +station = ('kfot', 0.0090462582862074915) +zone = ('caz076', 0.013360002896832382) + +[fips0671414] +centroid = (0.68014941643480153, -2.1179580421327926) +description = Sheridan CDP, CA +station = ('klhm', 0.0010418047710784089) +zone = ('caz017', 0.0066457194482689112) + +[fips0671554] +centroid = (0.67484649530200458, -2.1107350144767065) +description = Shingle Springs CDP, CA +station = ('kpvf', 0.0027069113170798444) +zone = ('caz067', 0.0024102016289299132) + +[fips0671568] +centroid = (0.70696470742231998, -2.1267825664572162) +description = Shingletown CDP, CA +station = ('krdd', 0.0056765709524945899) +zone = ('caz066', 0.0070086090288813876) + +[fips0671680] +centroid = (0.62774656886878766, -2.0299710552579753) +description = Shoshone CDP, CA +station = ('kdra', 0.012254283056676817) +zone = ('nvz019', 0.010032722295994848) + +[fips0671774] +centroid = (0.69189377187805645, -2.0981543147091886) +description = Sierra Brooks CDP, CA +station = ('krts', 0.004576348409962917) +zone = ('nvz002', 0.0084868402981977432) + +[fips0671778] +centroid = (0.69067317586567412, -2.1053490854846846) +description = Sierra City CDP, CA +station = ('kblu', 0.0051430889696814849) +zone = ('nvz002', 0.011459086659579528) + +[fips0671806] +centroid = (0.59635755530995538, -2.0603649518904903) +description = Sierra Madre city, CA +station = ('kmws', 0.0011515753539578903) +zone = ('caz548', 0.0021107650942756044) + +[fips0671834] +centroid = (0.66454503845795843, -2.0971763543694184) +description = Sierra Village CDP, CA +station = ('ko22', 0.0036696241913389679) +zone = ('caz069', 0.012595124632931566) + +[fips0671848] +centroid = (0.69071548264674254, -2.1007606672410692) +description = Sierraville CDP, CA +station = ('ktrk', 0.0054833838138774356) +zone = ('nvz002', 0.0087314936229594339) + +[fips0671876] +centroid = (0.58998146612669222, -2.0624230266911496) +description = Signal Hill city, CA +station = ('klgb', 0.00034984242396632158) +zone = ('caz041', 0.002899546934523291) + +[fips0671927] +centroid = (0.66944375878928608, -2.1337755597178889) +description = Silverado Resort CDP, CA +station = ('kapc', 0.0027529510847428863) +zone = ('caz506', 0.0052817309493944685) + +[fips0671932] +centroid = (0.63641268711030008, -2.0708464394468797) +description = Silver City CDP, CA +station = ('kptv', 0.0095239186739125049) +zone = ('caz097', 0.0045320763439330135) + +[fips0671964] +centroid = (0.60650727322883313, -2.0480738022458782) +description = Silver Lakes CDP, CA +station = ('kvcv', 0.0027235261938865817) +zone = ('caz060', 0.0059841613010839035) + +[fips0672016] +centroid = (0.59807002001213472, -2.0725515737662006) +description = Simi Valley city, CA +station = ('kvny', 0.003924389904728813) +zone = ('caz045', 0.0013386784452598579) + +[fips0672086] +centroid = (0.60845350733102455, -2.0995332644446041) +description = Sisquoc CDP, CA +station = ('ksmx', 0.0025549676655457986) +zone = ('caz035', 0.0030911174545080852) + +[fips0672156] +centroid = (0.5915118231747184, -2.0307771006664237) +description = Sky Valley CDP, CA +station = ('kpsp', 0.0023316020809569164) +zone = ('caz061', 0.0027054057702708997) + +[fips0672184] +centroid = (0.66343518358661535, -2.1395573293842634) +description = Sleepy Hollow CDP, CA +station = ('kdvo', 0.002265367313736737) +zone = ('caz006', 0.0048996522616002822) + +[fips0672282] +centroid = (0.68426106308664991, -2.1169607260916177) +description = Smartsville CDP, CA +station = ('kbab', 0.0022773958630839231) +zone = ('caz017', 0.010739447048950492) + +[fips0672338] +centroid = (0.61922241570863235, -2.0817785186562565) +description = Smith Corner CDP, CA +station = ('kbfl', 0.0033251621664834165) +zone = ('caz092', 0.0054092825951331915) + +[fips0672380] +centroid = (0.7317083798541838, -2.166788305439729) +description = Smith River CDP, CA +station = ('kcec', 0.0026918836564326556) +zone = ('orz022', 0.0075633953822771514) + +[fips0672408] +centroid = (0.6548765427204406, -2.1020483537098977) +description = Snelling CDP, CA +station = ('kmer', 0.0032360810610001546) +zone = ('caz090', 0.0093513258870005292) + +[fips0672478] +centroid = (0.68072083723190457, -2.1429061100733575) +description = Soda Bay CDP, CA +station = ('kuki', 0.0061393409412158033) +zone = ('caz064', 0.0015646617047304482) + +[fips0672492] +centroid = (0.68634734240802131, -2.1010055369351237) +description = Soda Springs CDP, CA +station = ('ktrk', 0.0033166726774956122) +zone = ('nvz002', 0.0065523915051120766) + +[fips0672506] +centroid = (0.57581024781183177, -2.0465389073417968) +description = Solana Beach city, CA +station = ('kcrq', 0.0025030004480272941) +zone = ('caz043', 0.0003881705431988485) + +[fips0672520] +centroid = (0.63594602097490183, -2.1173381535423617) +description = Soledad city, CA +station = ('ksns', 0.0056641640161356095) +zone = ('caz528', 0.0049634016129497865) + +[fips0672576] +centroid = (0.6037749777381286, -2.0968329782923809) +description = Solvang city, CA +station = ('kiza', 0.00094954907925920483) +zone = ('caz036', 0.0017714214424573529) + +[fips0672646] +centroid = (0.668292452348208, -2.1373273745588679) +description = Sonoma city, CA +station = ('ko69', 0.0020455452654415621) +zone = ('caz506', 0.0028525076777186796) + +[fips0672674] +centroid = (0.66290558087839013, -2.1010738316687543) +description = Sonora city, CA +station = ('ko22', 0.0009871802378716237) +zone = ('caz019', 0.0098742282075057822) + +[fips0672688] +centroid = (0.64573269295607216, -2.1283984969984675) +description = Soquel CDP, CA +station = ('kwvi', 0.0025599604890293947) +zone = ('caz529', 0.0007690131995596825) + +[fips0672772] +centroid = (0.66307395279133008, -2.098981373881831) +description = Soulsbyville CDP, CA +station = ('ko22', 0.0022649212974417306) +zone = ('caz019', 0.011468249162983203) + +[fips0672954] +centroid = (0.6452608780993806, -2.1056822862921831) +description = South Dos Palos CDP, CA +station = ('kmce', 0.0058254765806762835) +zone = ('caz089', 0.0064280924773302351) + +[fips0672996] +centroid = (0.59429120764864174, -2.0603329774585939) +description = South El Monte city, CA +station = ('kemt', 0.00061496509768006345) +zone = ('caz548', 0.0011111113336384096) + +[fips0673080] +centroid = (0.59243733637046592, -2.0628528314727457) +description = South Gate city, CA +station = ('kcqt', 0.0020347680129868006) +zone = ('caz041', 0.0015836458731366113) + +[fips0673108] +centroid = (0.67961777169135162, -2.0940847130390208) +description = South Lake Tahoe city, CA +station = ('ktvl', 0.00097569887715768416) +zone = ('caz072', 0.00024423524747040586) + +[fips0673167] +centroid = (0.59556629284027129, -2.0594162607222763) +description = South Monrovia Island CDP, CA +station = ('kemt', 0.00088495915602667752) +zone = ('caz548', 0.0010569055520610979) + +[fips0673178] +centroid = (0.68903401499207872, -2.1213453247851857) +description = South Oroville CDP, CA +station = ('kove', 0.0010450600483338317) +zone = ('caz016', 0.0054491529502645802) + +[fips0673220] +centroid = (0.5953136040711674, -2.0622219647613198) +description = South Pasadena city, CA +station = ('kemt', 0.001837061427694166) +zone = ('caz548', 0.0027482416904426859) + +[fips0673262] +centroid = (0.6572055449808869, -2.1358682094910302) +description = South San Francisco city, CA +station = ('ksfo', 0.0006837662433029772) +zone = ('caz006', 0.0019801407807891187) + +[fips0673276] +centroid = (0.59426535932241964, -2.0611747497568307) +description = South San Gabriel CDP, CA +station = ('kemt', 0.0010946764523433515) +zone = ('caz548', 0.0017999020664262086) + +[fips0673290] +centroid = (0.59362630701680197, -2.0578168933556262) +description = South San Jose Hills CDP, CA +station = ('kemt', 0.0022413978504866243) +zone = ('caz548', 0.001371792566664083) + +[fips0673388] +centroid = (0.61312212345376915, -2.0849267261077116) +description = South Taft CDP, CA +station = ('kbfl', 0.0078653832311531124) +zone = ('caz038', 0.0051637246279083596) + +[fips0673430] +centroid = (0.5922439713426374, -2.0600255726174401) +description = South Whittier CDP, CA +station = ('kful', 0.0013475292320870641) +zone = ('caz548', 0.0024570659908172169) + +[fips0673554] +centroid = (0.70957519638452793, -2.1081179281699263) +description = Spaulding CDP, CA +station = ('kaat', 0.014731687063671929) +zone = ('caz071', 0.0045841035285929099) + +[fips0673612] +centroid = (0.63922188180784756, -2.1231317216344792) +description = Spreckels CDP, CA +station = ('ksns', 0.00097972428509453735) +zone = ('caz530', 0.0015491210190296516) + +[fips0673654] +centroid = (0.69624623906009486, -2.1081241589953557) +description = Spring Garden CDP, CA +station = ('kblu', 0.010686425055311678) +zone = ('caz068', 0.0092219300122729272) + +[fips0673690] +centroid = (0.68200578353380781, -2.1395033463504993) +description = Spring Valley CDP, CA +station = ('ksts', 0.010538404255037081) +zone = ('caz064', 0.0017650331819108415) + +[fips0673696] +centroid = (0.57124535660653308, -2.0416233620364799) +description = Spring Valley CDP, CA +station = ('ksee', 0.0016794832712205556) +zone = ('caz050', 0.0048010613111212587) + +[fips0673700] +centroid = (0.60208946091960014, -2.0467281010327132) +description = Spring Valley Lake CDP, CA +station = ('kvcv', 0.0023935841393983165) +zone = ('caz060', 0.0037461528280097688) + +[fips0673710] +centroid = (0.63031415763798149, -2.0740806741771651) +description = Springville CDP, CA +station = ('kptv', 0.00354695760919375) +zone = ('caz094', 0.0027461893948249531) + +[fips0673794] +centroid = (0.64052260588618881, -2.0803171544735615) +description = Squaw Valley CDP, CA +station = ('kvis', 0.0072791177778772833) +zone = ('caz094', 0.0086373105863780716) + +[fips0673815] +centroid = (0.62173670212247034, -2.0666020779587098) +description = Squirrel Mountain Valley CDP, CA +station = ('kiyk', 0.0081804420816730047) +zone = ('caz095', 0.0052631372400769733) + +[fips0673868] +centroid = (0.61249811588630365, -2.0707095358203533) +description = Stallion Springs CDP, CA +station = ('ktsp', 0.0031459230308191607) +zone = ('caz095', 0.0046316220325391217) + +[fips0673906] +centroid = (0.65320631498615955, -2.1322201921016819) +description = Stanford CDP, CA +station = ('kpao', 0.00099764372774872856) +zone = ('caz508', 0.0029294343010599594) + +[fips0673962] +centroid = (0.58992418442064165, -2.0593733081693846) +description = Stanton city, CA +station = ('ksli', 0.00087196868324217788) +zone = ('caz042', 0.0034071427398992011) + +[fips0674130] +centroid = (0.60020455768732373, -2.0697574936199752) +description = Stevenson Ranch CDP, CA +station = ('kvny', 0.0033704321994249445) +zone = ('caz088', 0.0012035051879153175) + +[fips0674144] +centroid = (0.65143827900059681, -2.1092245367288607) +description = Stevinson CDP, CA +station = ('kmce', 0.004907649057820998) +zone = ('caz019', 0.0080149056677758911) + +[fips0674172] +centroid = (0.6616275460803247, -2.140524206883283) +description = Stinson Beach CDP, CA +station = ('kdvo', 0.0041990771237994055) +zone = ('caz006', 0.0038410983082467396) + +[fips0674186] +centroid = (0.6965921982244252, -2.1211816478079335) +description = Stirling City CDP, CA +station = ('kcic', 0.0046525861179996797) +zone = ('caz066', 0.0045790592296917638) + +[fips0675000] +centroid = (0.66281220576340849, -2.117316581272807) +description = Stockton city, CA +station = ('ksck', 0.0017283192672394663) +zone = ('caz019', 0.0053465203955398773) + +[fips0675154] +centroid = (0.68714209553620942, -2.1388044467048304) +description = Stonyford CDP, CA +station = ('kuki', 0.0097778150124725148) +zone = ('caz064', 0.0067285604934285703) + +[fips0675168] +centroid = (0.69686223556629368, -2.1173845618471723) +description = Storrie CDP, CA +station = ('kove', 0.0084719961531333193) +zone = ('caz068', 0.0047299707320165906) + +[fips0675252] +centroid = (0.63160744661370927, -2.0912945598836123) +description = Stratford CDP, CA +station = ('knlc', 0.0031019601249014468) +zone = ('caz091', 0.0072075931112606821) + +[fips0675280] +centroid = (0.63082196118384926, -2.0780146463111606) +description = Strathmore CDP, CA +station = ('kptv', 0.0019230518592567632) +zone = ('caz094', 0.0029456036324263849) + +[fips0675315] +centroid = (0.66138878503865195, -2.1381748191771734) +description = Strawberry CDP, CA +station = ('kdvo', 0.0043382197001068639) +zone = ('caz006', 0.0025912440160619564) + +[fips0675322] +centroid = (0.66668756974112164, -2.0945756217977292) +description = Strawberry CDP, CA +station = ('ko22', 0.0063467873969118667) +zone = ('caz069', 0.01116419794513771) + +[fips0675588] +centroid = (0.62549045155790461, -2.0700296253569461) +description = Sugarloaf Mountain Park CDP, CA +station = ('kptv', 0.0073744150229635656) +zone = ('caz097', 0.007486144270418678) + +[fips0675592] +centroid = (0.62542650269411149, -2.0702491877768474) +description = Sugarloaf Saw Mill CDP, CA +station = ('kptv', 0.0072478166904828218) +zone = ('caz097', 0.0075960993876710691) + +[fips0675596] +centroid = (0.62529651057142299, -2.0705791597252294) +description = Sugarloaf Village CDP, CA +station = ('kptv', 0.0070800206776498158) +zone = ('caz097', 0.0077992779428359919) + +[fips0675630] +centroid = (0.66755936170249286, -2.1294773722755878) +description = Suisun City city, CA +station = ('ksuu', 0.00088319800631750736) +zone = ('caz018', 0.0038622270844030017) + +[fips0675672] +centroid = (0.63785403236647453, -2.0828068317449464) +description = Sultana CDP, CA +station = ('kvis', 0.0041080071611375646) +zone = ('caz094', 0.007797096637087309) + +[fips0675714] +centroid = (0.60088914563312601, -2.0872929213345177) +description = Summerland CDP, CA +station = ('ksba', 0.0036995939891372076) +zone = ('caz039', 0.0044969520399637157) + +[fips0675994] +centroid = (0.64104957314724353, -2.0890643607121215) +description = Sunnyside CDP, CA +station = ('kfat', 0.00099014454765534434) +zone = ('caz090', 0.0081375372412398461) + +[fips0676015] +centroid = (0.68330361036559073, -2.0972114529406762) +description = Sunnyside-Tahoe City CDP, CA +station = ('ktrk', 0.0029263149265195349) +zone = ('nvz002', 0.0035214079223522174) + +[fips0676022] +centroid = (0.59376560174440363, -2.0494603441635397) +description = Sunnyslope CDP, CA +station = ('kral', 0.0012768388502868888) +zone = ('caz048', 0.0040116451609580415) + +[fips0676040] +centroid = (0.65570930911973713, -2.0712840807568171) +description = Sunny Slopes CDP, CA +station = ('kmmh', 0.0023292297019778699) +zone = ('caz073', 0.007077018245989216) + +[fips0677000] +centroid = (0.65250502423941581, -2.1297611104520846) +description = Sunnyvale city, CA +station = ('knuq', 0.00089244892248180232) +zone = ('caz512', 0.0037256075817158093) + +[fips0677042] +centroid = (0.65599824837740484, -2.1272151288590302) +description = Sunol CDP, CA +station = ('klvk', 0.002177292310606435) +zone = ('caz511', 0.0038710029935568437) + +[fips0677126] +centroid = (0.58848400853506599, -2.0607553820441615) +description = Sunset Beach CDP, CA +station = ('ksli', 0.0011923254170465188) +zone = ('caz042', 0.0041123820799173743) + +[fips0677308] +centroid = (0.60317748172200081, -2.0587338020781614) +description = Sun Village CDP, CA +station = ('kpmd', 0.0022285636149278706) +zone = ('caz059', 0.0024552365721482775) + +[fips0677364] +centroid = (0.7056534764618817, -2.1053964886271688) +description = Susanville city, CA +station = ('krts', 0.01669387217885885) +zone = ('caz071', 0.0012633177427756679) + +[fips0677378] +centroid = (0.6833950132585177, -2.1249251172540737) +description = Sutter CDP, CA +station = ('kmyv', 0.0026558859486429066) +zone = ('caz016', 0.0045330973950888816) + +[fips0677392] +centroid = (0.67008176389735263, -2.1083239119282466) +description = Sutter Creek city, CA +station = ('kpvf', 0.0057472795349522163) +zone = ('caz067', 0.0039692440013422) + +[fips0677430] +centroid = (0.65460423645054444, -2.070704997964298) +description = Swall Meadows CDP, CA +station = ('kmmh', 0.0032689378008291304) +zone = ('caz096', 0.0078796922081090705) + +[fips0677574] +centroid = (0.61307314951495817, -2.0843395275341701) +description = Taft city, CA +station = ('kbfl', 0.0075532180543551458) +zone = ('caz038', 0.0055158596019977179) + +[fips0677588] +centroid = (0.61319828962232625, -2.0851658187619417) +description = Taft Heights CDP, CA +station = ('kbfl', 0.007960166787077446) +zone = ('caz038', 0.005063473842688339) + +[fips0677595] +centroid = (0.66168842316463428, -2.1167731206503211) +description = Taft Mosswood CDP, CA +station = ('ksck', 0.00070409601060541745) +zone = ('caz019', 0.0042733515690983629) + +[fips0677700] +centroid = (0.68501221789012312, -2.0953288186364274) +description = Tahoe Vista CDP, CA +station = ('ktrk', 0.0016083018331724441) +zone = ('nvz002', 0.0019603039773321254) + +[fips0677728] +centroid = (0.68179702470197678, -2.0969398273491882) +description = Tahoma CDP, CA +station = ('ktvl', 0.0038487401449502326) +zone = ('caz072', 0.0031454519406015624) + +[fips0677784] +centroid = (0.68296824534982004, -2.1496144924929079) +description = Talmage CDP, CA +station = ('kuki', 0.00049099079660461535) +zone = ('caz002', 0.0060354048475812728) + +[fips0677805] +centroid = (0.66113440330017381, -2.1387293451871172) +description = Tamalpais-Homestead Valley CDP, CA +station = ('kdvo', 0.0045423701496184023) +zone = ('caz006', 0.002556467967466797) + +[fips0677924] +centroid = (0.66311556144069761, -2.1348655352890522) +description = Tara Hills CDP, CA +station = ('kapc', 0.0036329929714705388) +zone = ('caz006', 0.0044876689959638264) + +[fips0677960] +centroid = (0.64217585156684787, -2.089177423141066) +description = Tarpey Village CDP, CA +station = ('kfat', 0.00028651527804996195) +zone = ('caz090', 0.0073321202011227974) + +[fips0678008] +centroid = (0.69915559820341422, -2.1090327424973587) +description = Taylorsville CDP, CA +station = ('kblu', 0.013659722855911721) +zone = ('caz068', 0.0072399728775240056) + +[fips0678050] +centroid = (0.62517966077800191, -2.0281559302891936) +description = Tecopa CDP, CA +station = ('kbys', 0.01104499566828806) +zone = ('nvz019', 0.010364731408208179) + +[fips0678092] +centroid = (0.61336034344337387, -2.0672733141357345) +description = Tehachapi city, CA +station = ('ktsp', 0.00023462244231197652) +zone = ('caz095', 0.0040681722706516045) + +[fips0678106] +centroid = (0.69851176369564616, -2.1315165277071553) +description = Tehama city, CA +station = ('krbl', 0.0027767395251933483) +zone = ('caz015', 0.0041197592823100501) + +[fips0678120] +centroid = (0.58471886209961621, -2.0442092593095271) +description = Temecula city, CA +station = ('knfg', 0.0048176576837733864) +zone = ('caz057', 0.0052681763666098955) + +[fips0678126] +centroid = (0.6677238240779082, -2.1379969003132251) +description = Temelec CDP, CA +station = ('ko69', 0.0014018002744868602) +zone = ('caz506', 0.0027742815143377078) + +[fips0678134] +centroid = (0.58918831870141586, -2.0501887398735672) +description = Temescal Valley CDP, CA +station = ('kajo', 0.0031386691480843848) +zone = ('caz057', 0.0023176248853424182) + +[fips0678148] +centroid = (0.59519492168203181, -2.0605000054680094) +description = Temple City city, CA +station = ('kemt', 0.00048432419865485039) +zone = ('caz548', 0.0013728208278327879) + +[fips0678162] +centroid = (0.6205684834409404, -2.1069336699125705) +description = Templeton CDP, CA +station = ('kprb', 0.0022783523258074596) +zone = ('caz034', 0.0040085718164611095) + +[fips0678176] +centroid = (0.72564288946460553, -2.1279010781616492) +description = Tennant CDP, CA +station = ('kmhs', 0.0068915689331638975) +zone = ('caz083', 0.00066190463921898238) + +[fips0678232] +centroid = (0.66523648554772108, -2.1203959878451482) +description = Terminous CDP, CA +station = ('ksck', 0.0051522968382679271) +zone = ('caz018', 0.0037736706170349217) + +[fips0678288] +centroid = (0.62756327439074311, -2.0775149934528998) +description = Terra Bella CDP, CA +station = ('kptv', 0.001419790442794126) +zone = ('caz092', 0.0037701815705642192) + +[fips0678336] +centroid = (0.62707835211136898, -2.0817991833546001) +description = Teviston CDP, CA +station = ('kptv', 0.0035005855388793488) +zone = ('caz092', 0.0029162911545745455) + +[fips0678456] +centroid = (0.58689088944713819, -2.0268667253839157) +description = Thermal CDP, CA +station = ('ktrm', 0.00041473047480011598) +zone = ('caz061', 0.0032099632225292894) + +[fips0678470] +centroid = (0.68956096479984086, -2.122339848299557) +description = Thermalito CDP, CA +station = ('kove', 0.00026107851861439788) +zone = ('caz016', 0.0049523457152009977) + +[fips0678568] +centroid = (0.6672334214646829, -2.1192845970840635) +description = Thornton CDP, CA +station = ('ksac', 0.0048256067235206215) +zone = ('caz018', 0.0048531691909500995) + +[fips0678582] +centroid = (0.59678549258925184, -2.0747467965394817) +description = Thousand Oaks city, CA +station = ('kcma', 0.003045665702783341) +zone = ('caz045', 0.0011665597291338533) + +[fips0678596] +centroid = (0.59018265022956951, -2.0307684961932115) +description = Thousand Palms CDP, CA +station = ('kpsp', 0.0021343604474129895) +zone = ('caz061', 0.0014747637923148748) + +[fips0678638] +centroid = (0.63585723607585287, -2.0748580612792962) +description = Three Rivers CDP, CA +station = ('kptv', 0.0074336924402616513) +zone = ('caz094', 0.0030310787415700098) + +[fips0678652] +centroid = (0.63713502652782295, -2.1012635664117387) +description = Three Rocks CDP, CA +station = ('knlc', 0.0069134449051416408) +zone = ('caz089', 0.0025321566901370133) + +[fips0678666] +centroid = (0.66125579094964992, -2.1373003743153394) +description = Tiburon town, CA +station = ('koak', 0.0042987524212917214) +zone = ('caz006', 0.0023033443760209519) + +[fips0678715] +centroid = (0.67266890035416882, -2.1512716128045066) +description = Timber Cove CDP, CA +station = ('ksts', 0.0060796351256119313) +zone = ('caz505', 0.0067549697474587308) + +[fips0678750] +centroid = (0.62933993230281082, -2.0824041842865113) +description = Tipton CDP, CA +station = ('kptv', 0.0035034841784151883) +zone = ('caz092', 0.0051887015275707028) + +[fips0678792] +centroid = (0.69701601652668699, -2.1170131906889331) +description = Tobin CDP, CA +station = ('kove', 0.0087446154395213142) +zone = ('caz068', 0.0046128461530340415) + +[fips0678890] +centroid = (0.6675366026090469, -2.1451031130824751) +description = Tomales CDP, CA +station = ('ksts', 0.0045788941017405249) +zone = ('caz505', 0.00069611348824627581) + +[fips0678932] +centroid = (0.63263616112812726, -2.0785187497590139) +description = Tonyville CDP, CA +station = ('kptv', 0.003750740523141591) +zone = ('caz094', 0.0025463390842508098) + +[fips0678949] +centroid = (0.63334078545374239, -2.078956530695292) +description = Tooleville CDP, CA +station = ('kvis', 0.0040342895471407215) +zone = ('caz094', 0.0029298453286236733) + +[fips0678960] +centroid = (0.59510102296827461, -2.0700655791395373) +description = Topanga CDP, CA +station = ('ksmo', 0.0026541643489484228) +zone = ('caz046', 0.0012316234402987983) + +[fips0679030] +centroid = (0.67461413961868666, -2.0859486512913388) +description = Topaz CDP, CA +station = ('kban', 0.0052803781098712836) +zone = ('caz072', 0.0080280308837906017) + +[fips0679529] +centroid = (0.60079479313376316, -2.0867284644011299) +description = Toro Canyon CDP, CA +station = ('ksba', 0.0041681991476219312) +zone = ('caz039', 0.0049703568171225532) + +[fips0680000] +centroid = (0.59053155900033572, -2.0654476124716856) +description = Torrance city, CA +station = ('ktoa', 0.00062146529769567494) +zone = ('caz041', 0.0017308062230346711) + +[fips0680238] +centroid = (0.65841844409126782, -2.1196244999558891) +description = Tracy city, CA +station = ('ksck', 0.0042347597324629074) +zone = ('caz019', 0.0056138618598355599) + +[fips0680266] +centroid = (0.6396283864439295, -2.098802791792767) +description = Tranquillity CDP, CA +station = ('kmae', 0.0061527788684092597) +zone = ('caz089', 0.003526598798990358) + +[fips0680280] +centroid = (0.63621844941784567, -2.0853613305447505) +description = Traver CDP, CA +station = ('kvis', 0.0026404355683744682) +zone = ('caz094', 0.0087192314431621988) + +[fips0680364] +centroid = (0.64211411927120499, -2.1172695271961732) +description = Tres Pinos CDP, CA +station = ('kcvh', 0.0022242989968582149) +zone = ('caz528', 0.0033610448971435878) + +[fips0680448] +centroid = (0.71659075675242934, -2.1667049834212389) +description = Trinidad city, CA +station = ('kacv', 0.0014151605915374639) +zone = ('caz001', 0.00085351908957648464) + +[fips0680476] +centroid = (0.71530685764807722, -2.1416642734039786) +description = Trinity Center CDP, CA +station = ('ko86', 0.0001937504742534467) +zone = ('caz004', 0.007165571020319189) + +[fips0680483] +centroid = (0.71347167884619023, -2.1557121493006006) +description = Trinity Village CDP, CA +station = ('kfot', 0.0099659673820740816) +zone = ('caz003', 0.0037732779673957948) + +[fips0680515] +centroid = (0.6251064442158808, -2.0480982543086985) +description = Trona CDP, CA +station = ('knid', 0.0055049924390179793) +zone = ('caz098', 0.0072297943768719159) + +[fips0680560] +centroid = (0.67939250204479662, -2.120831656933031) +description = Trowbridge CDP, CA +station = ('klhm', 0.0022546439785140343) +zone = ('caz017', 0.0052679604072542723) + +[fips0680588] +centroid = (0.68684687309323456, -2.0977699408480217) +description = Truckee town, CA +station = ('ktrk', 0.0010336045813980255) +zone = ('nvz002', 0.0044679814970377289) + +[fips0680644] +centroid = (0.63176443897992618, -2.0828306729425288) +description = Tulare city, CA +station = ('kvis', 0.0022597462360037933) +zone = ('caz094', 0.0061140136460842865) + +[fips0680686] +centroid = (0.73222600960374029, -2.1201369111709822) +description = Tulelake city, CA +station = ('klmt', 0.0046458755323149515) +zone = ('caz084', 0.0026233781865201105) + +[fips0680763] +centroid = (0.66256091325770627, -2.0986235639318798) +description = Tuolumne City CDP, CA +station = ('ko22', 0.0027177855693295496) +zone = ('caz019', 0.011566824902174951) + +[fips0680784] +centroid = (0.6160792871653008, -2.0831843988220302) +description = Tupman CDP, CA +station = ('kbfl', 0.0049692824377829741) +zone = ('caz038', 0.008252862402830019) + +[fips0680812] +centroid = (0.65458947096507258, -2.1093833616907918) +description = Turlock city, CA +station = ('kmod', 0.0023188817374971428) +zone = ('caz019', 0.0050818802179773458) + +[fips0680854] +centroid = (0.58871439199632924, -2.0561852199445219) +description = Tustin city, CA +station = ('ksna', 0.0011607104619947267) +zone = ('caz042', 0.0005754676798681561) + +[fips0680882] +centroid = (0.65094686409640534, -2.1010075789703486) +description = Tuttle CDP, CA +station = ('kmce', 0.0016976357727450716) +zone = ('caz090', 0.0056261276086357337) + +[fips0680896] +centroid = (0.66334620670134858, -2.1022675670639486) +description = Tuttletown CDP, CA +station = ('ko22', 0.00058684893831530659) +zone = ('caz019', 0.0092143467993958984) + +[fips0680952] +centroid = (0.69875131013548231, -2.1125529319722913) +description = Twain CDP, CA +station = ('kove', 0.012129446576933166) +zone = ('caz068', 0.0050045293960325164) + +[fips0680966] +centroid = (0.66386989274340946, -2.0984777416728755) +description = Twain Harte CDP, CA +station = ('ko22', 0.0025609564423629255) +zone = ('caz019', 0.012134255921828598) + +[fips0680994] +centroid = (0.59600049585158243, -2.025725576759084) +description = Twentynine Palms city, CA +station = ('knxp', 0.0030231246549591749) +zone = ('caz525', 0.0034135069119696701) + +[fips0681050] +centroid = (0.64510343194755815, -2.1291559000806628) +description = Twin Lakes CDP, CA +station = ('kwvi', 0.0029475379899042533) +zone = ('caz529', 0.0012942653391308991) + +[fips0681134] +centroid = (0.68323730530730753, -2.1504258611555747) +description = Ukiah city, CA +station = ('kuki', 0.00027067729576887899) +zone = ('caz002', 0.0053517945774403785) + +[fips0681204] +centroid = (0.65629343591379463, -2.1296329160185254) +description = Union City city, CA +station = ('khwd', 0.0017503955516312072) +zone = ('caz508', 0.0020254069276631121) + +[fips0681302] +centroid = (0.67260449770477027, -2.125070922059785) +description = University of California Davis CDP, CA +station = ('kedu', 0.0004608773414926202) +zone = ('caz017', 0.0030854063087548738) + +[fips0681312] +centroid = (0.65223563266937035, -2.1017371615042677) +description = University of California Merced CDP, CA +station = ('kmce', 0.0018758198748590898) +zone = ('caz090', 0.0069941557987514289) + +[fips0681344] +centroid = (0.59546176507136928, -2.0535529667265418) +description = Upland city, CA +station = ('kont', 0.0016159326241693241) +zone = ('caz548', 0.0046258116123138304) + +[fips0681358] +centroid = (0.68355907420820516, -2.1451000936628692) +description = Upper Lake CDP, CA +station = ('kuki', 0.0040286048887043626) +zone = ('caz064', 0.0043961975475178168) + +[fips0681554] +centroid = (0.66946243381228232, -2.1287685242531831) +description = Vacaville city, CA +station = ('kvcb', 0.00052550739198897268) +zone = ('caz018', 0.0046940633170425702) + +[fips0681638] +centroid = (0.59411070569740054, -2.0582676944481237) +description = Valinda CDP, CA +station = ('kemt', 0.0016736508689702428) +zone = ('caz548', 0.00077513528746106584) + +[fips0681652] +centroid = (0.66458106205371958, -2.1022330095447592) +description = Vallecito CDP, CA +station = ('ko22', 0.0009233174535339117) +zone = ('caz019', 0.0098759855312986269) + +[fips0681666] +centroid = (0.6651085180069648, -2.1339072622632447) +description = Vallejo city, CA +station = ('kapc', 0.0016292803346470393) +zone = ('caz006', 0.0066181399102098436) + +[fips0681708] +centroid = (0.58892433765205177, -2.040116811279451) +description = Valle Vista CDP, CA +station = ('kpsp', 0.0058744298937538899) +zone = ('caz056', 0.0038629146953042025) + +[fips0681722] +centroid = (0.61450718184156694, -2.0841090218998595) +description = Valley Acres CDP, CA +station = ('kbfl', 0.0064616250304416895) +zone = ('caz038', 0.0065887737547711328) + +[fips0681736] +centroid = (0.58002710291099013, -2.0423105505228678) +description = Valley Center CDP, CA +station = ('krnm', 0.0037755883377036518) +zone = ('caz050', 0.0040677713383232058) + +[fips0681778] +centroid = (0.66888975637811798, -2.1452667900597273) +description = Valley Ford CDP, CA +station = ('ksts', 0.0033428273251874729) +zone = ('caz505', 0.0016313819257743774) + +[fips0681792] +centroid = (0.6602169535255703, -2.1103716020198564) +description = Valley Home CDP, CA +station = ('kmod', 0.0037131434444367859) +zone = ('caz019', 0.0021153696797680623) + +[fips0681869] +centroid = (0.69359981376858837, -2.1042543800712488) +description = Valley Ranch CDP, CA +station = ('kblu', 0.0081811305769203067) +zone = ('caz071', 0.012667348999603225) + +[fips0681890] +centroid = (0.66638252109445806, -2.1084319652622376) +description = Valley Springs CDP, CA +station = ('ko22', 0.0058979128556371626) +zone = ('caz067', 0.0076641747999216126) + +[fips0681925] +centroid = (0.6262368590658125, -2.0478938762532901) +description = Valley Wells CDP, CA +station = ('knid', 0.0062031312368102543) +zone = ('caz098', 0.0079452753455817541) + +[fips0681967] +centroid = (0.60127331005478246, -2.0712133600155265) +description = Val Verde CDP, CA +station = ('kvny', 0.004901189514007644) +zone = ('caz088', 0.0016398426466402076) + +[fips0682072] +centroid = (0.60595983325565261, -2.1029535861797375) +description = Vandenberg AFB CDP, CA +station = ('klpc', 0.00097368045220774043) +zone = ('caz035', 0.00092031121318441223) + +[fips0682086] +centroid = (0.60583415209621649, -2.1024573541668103) +description = Vandenberg Village CDP, CA +station = ('klpc', 0.00078960575916740231) +zone = ('caz035', 0.0005399470495435015) + +[fips0682334] +centroid = (0.68987575238373056, -2.094803404718407) +description = Verdi CDP, CA +station = ('krts', 0.0031590773004941328) +zone = ('nvz002', 0.0056331691755055324) + +[fips0682422] +centroid = (0.59343154572557189, -2.0631688756936968) +description = Vernon city, CA +station = ('kcqt', 0.0011895318858646028) +zone = ('caz041', 0.0018176773728057188) + +[fips0682562] +centroid = (0.66564211751917701, -2.1153187901445119) +description = Victor CDP, CA +station = ('ksck', 0.0041892659057387082) +zone = ('caz019', 0.0069853241579944754) + +[fips0682590] +centroid = (0.60262265900608436, -2.0482063425492747) +description = Victorville city, CA +station = ('kvcv', 0.0012833400792349892) +zone = ('caz060', 0.0048850152937478051) + +[fips0682667] +centroid = (0.59331548133031431, -2.0655581092666293) +description = View Park-Windsor Hills CDP, CA +station = ('kcqt', 0.0011527399093135288) +zone = ('caz041', 0.0013461128593175147) + +[fips0682744] +centroid = (0.59023712195552425, -2.0561755333671732) +description = Villa Park city, CA +station = ('ksna', 0.0024908013920438453) +zone = ('caz042', 0.0020336967096992353) + +[fips0682786] +centroid = (0.69698292508406912, -2.1302041273761181) +description = Vina CDP, CA +station = ('kcic', 0.0035756789516916167) +zone = ('caz066', 0.0050156253014488582) + +[fips0682814] +centroid = (0.59512664440169383, -2.0581584891968268) +description = Vincent CDP, CA +station = ('kemt', 0.0016045098263133483) +zone = ('caz548', 0.00091931976291892469) + +[fips0682842] +centroid = (0.6633491214011995, -2.1308251329772703) +description = Vine Hill CDP, CA +station = ('kccr', 0.00052757813671057733) +zone = ('caz510', 0.0036097541097654864) + +[fips0682852] +centroid = (0.67150658088551074, -2.1174166759054089) +description = Vineyard CDP, CA +station = ('kmhr', 0.0013432509915664447) +zone = ('caz017', 0.0042555156440591338) + +[fips0682954] +centroid = (0.63402844517902812, -2.0825863617538345) +description = Visalia city, CA +station = ('kvis', 0.0010924767748886639) +zone = ('caz094', 0.0059314289825996907) + +[fips0682996] +centroid = (0.57926678512894392, -2.0461997026016716) +description = Vista city, CA +station = ('kcrq', 0.0011787509641321531) +zone = ('caz043', 0.0036869738854579778) + +[fips0683085] +centroid = (0.58680400695697388, -2.0282246264485519) +description = Vista Santa Rosa CDP, CA +station = ('ktrm', 0.00072189091061921479) +zone = ('caz061', 0.0025123445434482175) + +[fips0683094] +centroid = (0.67100179675924887, -2.105400014192258) +description = Volcano CDP, CA +station = ('kpvf', 0.0050594174418553215) +zone = ('caz067', 0.0035775044355725641) + +[fips0683108] +centroid = (0.64720918914338188, -2.1103565049218265) +description = Volta CDP, CA +station = ('kmce', 0.0067474330336303066) +zone = ('caz089', 0.0098987175452792814) + +[fips0683215] +centroid = (0.66193379900417215, -2.1302444968417169) +description = Contra Costa Centre CDP, CA +station = ('kccr', 0.0012925004245364403) +zone = ('caz510', 0.0025245190985651467) + +[fips0683262] +centroid = (0.67254594190836581, -2.0849386292532097) +description = Walker CDP, CA +station = ('kban', 0.0033101660127229592) +zone = ('caz072', 0.010022346699917075) + +[fips0683304] +centroid = (0.66672944018987701, -2.1111866882338299) +description = Wallace CDP, CA +station = ('ksck', 0.0064386854335689225) +zone = ('caz067', 0.0077618092411782793) + +[fips0683332] +centroid = (0.59406113834664387, -2.0569683666331842) +description = Walnut city, CA +station = ('kpoc', 0.0015143744247683728) +zone = ('caz548', 0.0017800943331497182) + +[fips0683346] +centroid = (0.66152631698370912, -2.1300081792609968) +description = Walnut Creek city, CA +station = ('kccr', 0.0017038447284551546) +zone = ('caz510', 0.0022432389936228561) + +[fips0683374] +centroid = (0.66759898067651313, -2.12119381275282) +description = Walnut Grove CDP, CA +station = ('ksac', 0.0043797282365040822) +zone = ('caz018', 0.0036325588011184916) + +[fips0683402] +centroid = (0.59285748948129846, -2.0633626596005454) +description = Walnut Park CDP, CA +station = ('kcqt', 0.0014419819699312665) +zone = ('caz041', 0.0013341559100262476) + +[fips0683460] +centroid = (0.58822275019933501, -2.047839596513553) +description = Warm Springs CDP, CA +station = ('kriv', 0.0036461138338183064) +zone = ('caz057', 0.0022300286129319337) + +[fips0683494] +centroid = (0.70519284916569525, -2.1177990600912282) +description = Warner Valley CDP, CA +station = ('kcic', 0.012550788904221835) +zone = ('caz068', 0.0036231529881406224) + +[fips0683542] +centroid = (0.62122856696404471, -2.0833525263888748) +description = Wasco city, CA +station = ('kbfl', 0.0053067886915035348) +zone = ('caz092', 0.0041430756336573796) + +[fips0683570] +centroid = (0.68694700263242148, -2.1081916508775302) +description = Washington CDP, CA +station = ('kblu', 0.0018011707595598778) +zone = ('caz069', 0.011748920948088588) + +[fips0683612] +centroid = (0.65698879254108167, -2.1075575378536957) +description = Waterford city, CA +station = ('kmod', 0.0027449400941048142) +zone = ('caz019', 0.0044439535085412244) + +[fips0683626] +centroid = (0.66386132317678215, -2.1150694873141571) +description = Waterloo CDP, CA +station = ('ksck', 0.0024743016913869654) +zone = ('caz019', 0.0052450667392579852) + +[fips0683668] +centroid = (0.64436871814563856, -2.1252917934766251) +description = Watsonville city, CA +station = ('kwvi', 0.00030117606279866243) +zone = ('caz529', 0.0020637614205726309) + +[fips0683724] +centroid = (0.63069413326943313, -2.085860040925215) +description = Waukena CDP, CA +station = ('kvis', 0.003517368361245886) +zone = ('caz091', 0.007161130650326847) + +[fips0683766] +centroid = (0.65534029415598805, -2.0881051452085182) +description = Wawona CDP, CA +station = ('kmmh', 0.011215644376236287) +zone = ('caz093', 0.0051243960636638336) + +[fips0683794] +centroid = (0.7112006389702028, -2.1454875567568119) +description = Weaverville CDP, CA +station = ('ko54', 7.3539869491185474e-05) +zone = ('caz004', 0.0025269000534575738) + +[fips0683850] +centroid = (0.72277726827234101, -2.1359507984712347) +description = Weed city, CA +station = ('kmhs', 0.0018662686978596268) +zone = ('caz082', 0.0035687860173329927) + +[fips0683863] +centroid = (0.61498135289274869, -2.0753583424560875) +description = Weedpatch CDP, CA +station = ('kbfl', 0.0039870294393080123) +zone = ('caz095', 0.0052267319086379454) + +[fips0683948] +centroid = (0.62210695626998835, -2.0648831206317131) +description = Weldon CDP, CA +station = ('kiyk', 0.0067583714005249483) +zone = ('caz095', 0.0063088801546863178) + +[fips0684004] +centroid = (0.70376513493097892, -2.1628228650193204) +description = Weott CDP, CA +station = ('kfot', 0.0049206734282688852) +zone = ('caz003', 0.0082337227382946881) + +[fips0684116] +centroid = (0.59207598340213297, -2.0647820486147301) +description = West Athens CDP, CA +station = ('khhr', 0.00045086285890055241) +zone = ('caz041', 9.1283169569225943e-05) + +[fips0684120] +centroid = (0.65210331925877674, -2.067779634151738) +description = West Bishop CDP, CA +station = ('kbih', 0.0015049419900708075) +zone = ('caz521', 0.0086380451775240358) + +[fips0684144] +centroid = (0.59032513890970228, -2.0646142875670281) +description = West Carson CDP, CA +station = ('ktoa', 0.00070261901086261975) +zone = ('caz041', 0.0018344974299157877) + +[fips0684200] +centroid = (0.59438830031493017, -2.0579166214690852) +description = West Covina city, CA +station = ('kemt', 0.0018469592636249468) +zone = ('caz548', 0.00093897688209315471) + +[fips0684345] +centroid = (0.63441018359302437, -2.0848237865884287) +description = West Goshen CDP, CA +station = ('kvis', 0.00091946297689506648) +zone = ('caz094', 0.0077736286210794963) + +[fips0684385] +centroid = (0.71621584257580839, -2.1658014264674814) +description = Westhaven-Moonstone CDP, CA +station = ('kacv', 0.00092886282526772354) +zone = ('caz001', 0.00021441226876603057) + +[fips0684410] +centroid = (0.59495249544892992, -2.0659781751109993) +description = West Hollywood city, CA +station = ('kcqt', 0.0015989276819582926) +zone = ('caz547', 0.0025569565224125242) + +[fips0684438] +centroid = (0.59579496587886749, -2.0737474210097897) +description = Westlake Village city, CA +station = ('kcma', 0.0040924027703654799) +zone = ('caz045', 0.0020732105558448058) + +[fips0684480] +centroid = (0.65541366779774179, -2.1155552473515722) +description = Westley CDP, CA +station = ('kmod', 0.0037982532255969167) +zone = ('caz019', 0.0043003237034456186) + +[fips0684536] +centroid = (0.65334341059890366, -2.1328542876722238) +description = West Menlo Park CDP, CA +station = ('kpao', 0.0013333625693502985) +zone = ('caz509', 0.0028175064826281792) + +[fips0684550] +centroid = (0.58908619948688168, -2.0593795215415218) +description = Westminster city, CA +station = ('ksli', 0.00098086375648536611) +zone = ('caz042', 0.0030819167606488938) + +[fips0684578] +centroid = (0.65657464336287585, -2.1125372240090234) +description = West Modesto CDP, CA +station = ('kmod', 0.0012375042452446477) +zone = ('caz019', 0.002428613232180396) + +[fips0684592] +centroid = (0.5923940522050164, -2.0647565842609437) +description = Westmont CDP, CA +station = ('khhr', 0.00063134805084184191) +zone = ('caz041', 0.00023791126726756422) + +[fips0684606] +centroid = (0.57663797020958996, -2.0179900331681497) +description = Westmorland city, CA +station = ('kipl', 0.003630534243253812) +zone = ('caz033', 0.0022277224352528595) + +[fips0684680] +centroid = (0.64063228237638414, -2.0918041262120246) +description = West Park CDP, CA +station = ('kfat', 0.0023243500001765486) +zone = ('caz090', 0.0070753161117910381) + +[fips0684732] +centroid = (0.67028146447036585, -2.1037734371425691) +description = West Point CDP, CA +station = ('kpvf', 0.0062276252723092937) +zone = ('caz067', 0.0049139166464774869) + +[fips0684774] +centroid = (0.59429586767774467, -2.0589410424735433) +description = West Puente Valley CDP, CA +station = ('kemt', 0.001095702449412437) +zone = ('caz548', 0.00027317861080493474) + +[fips0684780] +centroid = (0.59157076294355826, -2.0641961764914205) +description = West Rancho Dominguez CDP, CA +station = ('khhr', 0.0009992183341625369) +zone = ('caz041', 0.00073559469035281268) + +[fips0684816] +centroid = (0.67290312353978654, -2.1214269014744236) +description = West Sacramento city, CA +station = ('ksac', 0.0011615528021908163) +zone = ('caz017', 0.0012754668460354687) + +[fips0684921] +centroid = (0.59299308411088592, -2.0606914855402456) +description = West Whittier-Los Nietos CDP, CA +station = ('kemt', 0.0019427540365266067) +zone = ('caz548', 0.0020843426060745151) + +[fips0684928] +centroid = (0.70345862020774375, -2.1119313678657785) +description = Westwood CDP, CA +station = ('kcic', 0.014326915742056414) +zone = ('caz068', 0.0049721757877973461) + +[fips0685012] +centroid = (0.68081045988899436, -2.1193322271193504) +description = Wheatland city, CA +station = ('klhm', 0.0020107643828198552) +zone = ('caz017', 0.0068898694542311872) + +[fips0685086] +centroid = (0.69325259796719663, -2.1040574022118688) +description = Whitehawk CDP, CA +station = ('kblu', 0.0078796939844266722) +zone = ('nvz002', 0.012320194990659769) + +[fips0685206] +centroid = (0.59228788382661757, -2.0365759745594674) +description = Whitewater CDP, CA +station = ('kpsp', 0.0032470117813805312) +zone = ('caz056', 0.0048518411515728853) + +[fips0685222] +centroid = (0.62234231391961981, -2.1032481977574742) +description = Whitley Gardens CDP, CA +station = ('kprb', 0.0017949727125232927) +zone = ('caz037', 0.0036406723893837715) + +[fips0685292] +centroid = (0.59283296760530801, -2.0598397125053953) +description = Whittier city, CA +station = ('kful', 0.0018275284585664018) +zone = ('caz548', 0.0018512069971960107) + +[fips0685446] +centroid = (0.58673218665825433, -2.0465425027200559) +description = Wildomar city, CA +station = ('kriv', 0.0049358809582299027) +zone = ('caz057', 0.002863201469746131) + +[fips0685551] +centroid = (0.65061230193209041, -2.0663230172646085) +description = Wilkerson CDP, CA +station = ('kbih', 0.0015969717944519666) +zone = ('caz521', 0.0067672390088363869) + +[fips0685586] +centroid = (0.68327332890306858, -2.1316971518314443) +description = Williams city, CA +station = ('kove', 0.0093272961108960446) +zone = ('caz016', 0.0048934455389755566) + +[fips0685600] +centroid = (0.68774711392141319, -2.1528442417270157) +description = Willits city, CA +station = ('kuki', 0.0051507321574836545) +zone = ('caz076', 0.0023143055055734134) + +[fips0685614] +centroid = (0.5919645790359781, -2.0639402239566156) +description = Willowbrook CDP, CA +station = ('khhr', 0.0011336422363078999) +zone = ('caz041', 0.00068421381079274818) + +[fips0685642] +centroid = (0.71452262885527873, -2.1578668978885278) +description = Willow Creek CDP, CA +station = ('kacv', 0.0061552320697111935) +zone = ('caz003', 0.003269924693303033) + +[fips0685684] +centroid = (0.68966252550901441, -2.1327779993306195) +description = Willows city, CA +station = ('kcic', 0.0068409741177687484) +zone = ('caz016', 0.0044030590536118484) + +[fips0685866] +centroid = (0.64113968449652392, -2.076171194648619) +description = Wilsonia CDP, CA +station = ('kvis', 0.009592244035940346) +zone = ('caz094', 0.0083098679109242131) + +[fips0685880] +centroid = (0.67043292414285383, -2.115561024391396) +description = Wilton CDP, CA +station = ('kmhr', 0.0026723277984959807) +zone = ('caz017', 0.0060614299009631618) + +[fips0685894] +centroid = (0.5884313519515334, -2.0433773655748566) +description = Winchester CDP, CA +station = ('kriv', 0.0040949644461214111) +zone = ('caz048', 0.0033388295543863131) + +[fips0685922] +centroid = (0.67268652817961394, -2.143414646657511) +description = Windsor town, CA +station = ('ksts', 0.0007429505385387992) +zone = ('caz507', 0.0015744294495762359) + +[fips0685992] +centroid = (0.57312296436253607, -2.0407535422971637) +description = Winter Gardens CDP, CA +station = ('ksee', 0.0006985970990781757) +zone = ('caz050', 0.0029595283559843933) + +[fips0686020] +centroid = (0.57137273073534356, -2.0008063765643471) +description = Winterhaven CDP, CA +station = ('knyl', 0.0016205963285483476) +zone = ('azz025', 0.0022178651878707908) + +[fips0686034] +centroid = (0.67253245051324795, -2.1288736105274455) +description = Winters city, CA +station = ('kvcb', 0.0026399616580572512) +zone = ('caz017', 0.0058662514823504715) + +[fips0686076] +centroid = (0.65249879341398609, -2.1051701368764775) +description = Winton CDP, CA +station = ('kmer', 0.00077564884909137749) +zone = ('caz019', 0.0087549654256447347) + +[fips0686174] +centroid = (0.62334631457182954, -2.0677263492496745) +description = Wofford Heights CDP, CA +station = ('ktsp', 0.010055365870115825) +zone = ('caz095', 0.0064857587358552338) + +[fips0686216] +centroid = (0.66331541909334335, -2.1404422985814873) +description = Woodacre CDP, CA +station = ('kdvo', 0.0025874775537713872) +zone = ('caz006', 0.0051219471191017467) + +[fips0686230] +centroid = (0.66618528143569011, -2.1172757405683105) +description = Woodbridge CDP, CA +station = ('ksck', 0.0048249916054035041) +zone = ('caz018', 0.0062112491016832576) + +[fips0686244] +centroid = (0.59129964349755337, -2.0484689971484071) +description = Woodcrest CDP, CA +station = ('kral', 0.0017104903371039548) +zone = ('caz048', 0.0019213447111187665) + +[fips0686300] +centroid = (0.63552368620250421, -2.078678936077762) +description = Woodlake city, CA +station = ('kvis', 0.0045441985238106044) +zone = ('caz094', 0.003770536844203047) + +[fips0686328] +centroid = (0.67493918973857792, -2.1249389402617496) +description = Woodland city, CA +station = ('kedu', 0.0025234184713591734) +zone = ('caz017', 0.0026709346864454793) + +[fips0686380] +centroid = (0.61136927183269885, -2.1040361441015794) +description = Woodlands CDP, CA +station = ('ksmx', 0.0025618378834514123) +zone = ('caz035', 0.0056571211316232915) + +[fips0686440] +centroid = (0.65313985284824361, -2.1338235039124416) +description = Woodside town, CA +station = ('ksql', 0.0016542944343803318) +zone = ('caz509', 0.0020293829345571003) + +[fips0686482] +centroid = (0.62988679631733813, -2.0805196999332556) +description = Woodville CDP, CA +station = ('kptv', 0.0021868570263331817) +zone = ('caz094', 0.0051058467017162587) + +[fips0686594] +centroid = (0.59945036601095192, -2.0529892602847322) +description = Wrightwood CDP, CA +station = ('kgxa', 0.0038998665382962618) +zone = ('caz548', 0.0069926794973560477) + +[fips0686678] +centroid = (0.69284836225914226, -2.1208763199085898) +description = Yankee Hill CDP, CA +station = ('kove', 0.0036937039296995049) +zone = ('caz016', 0.0078507682390065257) + +[fips0686734] +centroid = (0.63681013348756421, -2.0813903923371981) +description = Yettem CDP, CA +station = ('kvis', 0.0035979498366081422) +zone = ('caz094', 0.0062547592660015337) + +[fips0686804] +centroid = (0.67614947085508093, -2.1259735714423318) +description = Yolo CDP, CA +station = ('ksmf', 0.0029366487960140351) +zone = ('caz017', 0.0039046139316415707) + +[fips0686832] +centroid = (0.59143895567844751, -2.0555194641013483) +description = Yorba Linda city, CA +station = ('kcno', 0.0024500104252437433) +zone = ('caz042', 0.0032239196389799167) + +[fips0686878] +centroid = (0.64900693063281356, -2.0904178810003358) +description = Yosemite Lakes CDP, CA +station = ('kmae', 0.0059536382431154338) +zone = ('caz093', 0.0015628667853879803) + +[fips0686912] +centroid = (0.6587312943596878, -2.0870232854183768) +description = Yosemite Valley CDP, CA +station = ('kban', 0.010635527919183702) +zone = ('caz096', 0.0082134627952164963) + +[fips0686930] +centroid = (0.67012838164167332, -2.1357055797113298) +description = Yountville city, CA +station = ('kapc', 0.0035995267597100011) +zone = ('caz506', 0.0037888432612845622) + +[fips0686944] +centroid = (0.72822177051405979, -2.1403246633899027) +description = Yreka city, CA +station = ('ksiy', 0.0022726477787789559) +zone = ('caz081', 0.00091676391077319917) + +[fips0686972] +centroid = (0.68301461874804548, -2.1230015898854506) +description = Yuba City city, CA +station = ('kmyv', 0.0011442728024036108) +zone = ('caz016', 0.0057411859827639824) + +[fips0687042] +centroid = (0.5939793871244804, -2.0428191045603135) +description = Yucaipa city, CA +station = ('ksbd', 0.0029679491082181351) +zone = ('caz055', 0.0035308722112143347) + +[fips0687056] +centroid = (0.59556025400105939, -2.0319381634980207) +description = Yucca Valley town, CA +station = ('knxp', 0.0048020865085861295) +zone = ('caz525', 0.0060733555028017793) + +[fips0687090] +centroid = (0.64732289734414927, -2.1300235556117069) +description = Zayante CDP, CA +station = ('kwvi', 0.0045056443305063702) +zone = ('caz512', 0.0014614867080322655) + +[fips08001] +centroid = (0.69593825826028788, -1.8209346811692815) +description = Adams County, CO +station = ('kftg', 0.0033271464172916045) +zone = ('coz045', 0.0034283907639369384) + +[fips0800190399] +centroid = (0.69711464508271714, -1.8289121273945419) +description = Brighton CCD, CO +station = ('kden', 0.002096793155174598) +zone = ('coz040', 0.0030806063656625875) + +[fips0800190760] +centroid = (0.69515231904482233, -1.830407001898875) +description = Commerce City CCD, CO +station = ('kbkf', 0.0026036918832873226) +zone = ('coz040', 0.0014601299561753454) + +[fips0800191159] +centroid = (0.69608781552389132, -1.8180274338743569) +description = East Adams CCD, CO +station = ('kftg', 0.0054409325934896106) +zone = ('coz045', 0.0019085746250737726) + +[fips0800192622] +centroid = (0.69421928347999873, -1.827462544184298) +description = North Aurora CCD, CO +station = ('kbkf', 0.0013454996723145515) +zone = ('coz040', 0.0013281786911363573) + +[fips0800193800] +centroid = (0.69606797113029617, -1.832329220270559) +description = West Adams CCD, CO +station = ('kbjc', 0.0018686997124414404) +zone = ('coz039', 0.002673790174169717) + +[fips08003] +centroid = (0.65569300774452355, -1.8463496246847548) +description = Alamosa County, CO +station = ('kals', 0.00259727400039811) +zone = ('coz070', 0.0014558773409948623) + +[fips0800320] +centroid = (0.69037861664781519, -1.8307754409039712) +description = Acres Green CDP, CO +station = ('kapa', 0.00064367612259386467) +zone = ('coz040', 0.0038637732921871543) + +[fips0800390076] +centroid = (0.65396148404691257, -1.8470606718220173) +description = Alamosa CCD, CO +station = ('kals', 0.00081739770152968383) +zone = ('coz070', 0.0018372730515045358) + +[fips0800392584] +centroid = (0.65704651057944519, -1.8456610573882577) +description = Mosca-Hooper CCD, CO +station = ('kals', 0.0040553953774879487) +zone = ('coz070', 0.0024822512106896051) + +[fips08005] +centroid = (0.69192935914150466, -1.8209322551616212) +description = Arapahoe County, CO +station = ('kftg', 0.0038009962403176439) +zone = ('coz045', 0.0038975519467121917) + +[fips0800591178] +centroid = (0.69229545940540294, -1.8189458261267561) +description = East Arapahoe CCD, CO +station = ('kftg', 0.0049085218520538406) +zone = ('coz045', 0.0025628672866086131) + +[fips0800593382] +centroid = (0.69204608676187795, -1.8289751163272463) +description = South Aurora CCD, CO +station = ('kbkf', 0.0011241212270959782) +zone = ('coz040', 0.0020004732916377782) + +[fips0800593458] +centroid = (0.69129477487877189, -1.8315425654701003) +description = Southwest Arapahoe CCD, CO +station = ('kapa', 0.0014077068139883783) +zone = ('coz040', 0.0032954030250166538) + +[fips0800620] +centroid = (0.69356115472565671, -1.8268925720104741) +description = Aetna Estates CDP, CO +station = ('kbkf', 0.0012399507871436548) +zone = ('coz040', 0.001819013306466099) + +[fips08007] +centroid = (0.64930428237747595, -1.8683900264513746) +description = Archuleta County, CO +station = ('kpso', 0.0013545158422921142) +zone = ('coz023', 0.0023614675236206988) + +[fips0800760] +centroid = (0.65281642588455657, -1.8265749569931962) +description = Aguilar town, CO +station = ('ktad', 0.0038960770269181335) +zone = ('coz088', 0.0037300535383755474) + +[fips0800790114] +centroid = (0.6502994865702556, -1.8730900759539475) +description = Arboles CCD, CO +station = ('kpso', 0.0037694144183063405) +zone = ('coz023', 0.0026907779527799176) + +[fips0800792812] +centroid = (0.64887227848102225, -1.8655092383479102) +description = Pagosa Springs CCD, CO +station = ('kpso', 0.0028979143611208126) +zone = ('coz023', 0.0044294868967424605) + +[fips0800870] +centroid = (0.68057693483507753, -1.8302207054545172) +description = Air Force Academy CDP, CO +station = ('kaff', 0.00080109154964161107) +zone = ('coz082', 0.0039821669143500363) + +[fips08009] +centroid = (0.65106268414556767, -1.7895813246870673) +description = Baca County, CO +station = ('kspd', 0.0011794074574847868) +zone = ('coz099', 0.00044651961162976472) + +[fips0800925] +centroid = (0.70100069047545255, -1.8015408792270931) +description = Akron town, CO +station = ('kako', 6.6854408032605744e-05) +zone = ('coz049', 0.0033850560620396898) + +[fips0800990475] +centroid = (0.64789899562364761, -1.7901818924826787) +description = Campo CCD, CO +station = ('kspd', 0.0028920545914267654) +zone = ('coz099', 0.0034463782995862854) + +[fips0800992964] +centroid = (0.65160061207432474, -1.7966184049646461) +description = Pritchett CCD, CO +station = ('kspd', 0.0045563251726815513) +zone = ('coz099', 0.0052545861431719677) + +[fips0800993477] +centroid = (0.65326001876724349, -1.7908112233043627) +description = Springfield CCD, CO +station = ('kspd', 0.0025474584696163647) +zone = ('coz099', 0.0020179797680219339) + +[fips0800993762] +centroid = (0.65202364497842324, -1.7841143775111679) +description = Walsh CCD, CO +station = ('kspd', 0.0056285635813289594) +zone = ('coz099', 0.0047431814165252977) + +[fips0801090] +centroid = (0.65396155386008259, -1.847891029666946) +description = Alamosa city, CO +station = ('kals', 0.00064085998087453689) +zone = ('coz070', 0.0016247692529291272) + +[fips08011] +centroid = (0.66203638945760446, -1.7990432258010267) +description = Bent County, CO +station = ('klhx', 0.0063817086232200232) +zone = ('coz097', 0.00041309011288262091) + +[fips0801145] +centroid = (0.65410168634572519, -1.8472908458437702) +description = Alamosa East CDP, CO +station = ('kals', 0.00083965804560606858) +zone = ('coz070', 0.0016289028935095279) + +[fips0801192185] +centroid = (0.66582413790686756, -1.8025346522498864) +description = Las Animas CCD, CO +station = ('klhx', 0.0037093418514241813) +zone = ('coz097', 0.0044104964790951202) + +[fips0801192356] +centroid = (0.66698242566495358, -1.7960878772319171) +description = McClave CCD, CO +station = ('klaa', 0.0040323783179785147) +zone = ('coz095', 0.0044265418393729921) + +[fips0801193388] +centroid = (0.66030078168954365, -1.7988003283290266) +description = South Bent CCD, CO +station = ('klaa', 0.0066415624792796968) +zone = ('coz097', 0.0021435385489812042) + +[fips08013] +centroid = (0.69978672671422792, -1.839548792174726) +description = Boulder County, CO +station = ('kbdu', 0.0025177490429251852) +zone = ('coz039', 0.0039976769540207889) + +[fips0801390228] +centroid = (0.69835873322683117, -1.840805027810434) +description = Bald Mountain CCD, CO +station = ('kbdu', 0.0032262455607144276) +zone = ('coz039', 0.0043021506917960538) + +[fips0801390342] +centroid = (0.69829867644727006, -1.8366433600222238) +description = Boulder CCD, CO +station = ('kbdu', 0.00035753859649145325) +zone = ('coz039', 0.0013270223802684074) + +[fips0801392052] +centroid = (0.69812133354197503, -1.83452236610203) +description = Lafayette-Louisville CCD, CO +station = ('keik', 0.00088368709249497324) +zone = ('coz039', 0.00091149438364871479) + +[fips0801392318] +centroid = (0.70125210515420244, -1.8357980796121902) +description = Longmont CCD, CO +station = ('klmo', 0.00045341116400659457) +zone = ('coz039', 0.0038257135069261752) + +[fips0801393686] +centroid = (0.70107980625044553, -1.8421697007525684) +description = Upper St. Vrain CCD, CO +station = ('klmo', 0.0051846966800933548) +zone = ('coz039', 0.0063805859503773179) + +[fips08014] +centroid = (0.69731808066032963, -1.8335054674666482) +description = Broomfield County, CO +station = ('kbjc', 0.0010755010198208747) +zone = ('coz039', 0.0013953796300514775) + +[fips0801420] +centroid = (0.70216833319832939, -1.8416362757732812) +description = Allenspark CDP, CO +station = ('klmo', 0.0049320185914751603) +zone = ('coz035', 0.006637807097257328) + +[fips0801490408] +centroid = (0.69731808066032963, -1.8335054674666482) +description = Broomfield CCD, CO +station = ('kbjc', 0.0010755010198208747) +zone = ('coz039', 0.0013953796300514775) + +[fips08015] +centroid = (0.67610993914752326, -1.855581212150621) +description = Chaffee County, CO +station = ('k7bm', 0.001552047201276464) +zone = ('coz061', 0.00083334010359228212) + +[fips0801530] +centroid = (0.68566903764752607, -1.8512064920206193) +description = Alma town, CO +station = ('kccu', 0.0033605841640377259) +zone = ('coz058', 0.0020708222765046603) + +[fips0801590437] +centroid = (0.68021441249614589, -1.856711574640675) +description = Buena Vista CCD, CO +station = ('k7bm', 0.0040061004295703639) +zone = ('coz060', 0.0027011785814524615) + +[fips0801593173] +centroid = (0.67329184327079061, -1.8521647650464268) +description = Salida CCD, CO +station = ('kank', 0.0012695222967464368) +zone = ('coz062', 0.0019674643343170475) + +[fips0801640] +centroid = (0.65777605820677876, -1.8602797955766222) +description = Alpine CDP, CO +station = ('kcpw', 0.0050789688927712733) +zone = ('coz067', 0.0038687731339575463) + +[fips08017] +centroid = (0.67780536943620306, -1.7907878358923861) +description = Cheyenne County, CO +station = ('kitr', 0.0084456204589560702) +zone = ('coz092', 0.00013166226722004638) + +[fips0801740] +centroid = (0.70027030509007793, -1.837762884017623) +description = Altona CDP, CO +station = ('kbdu', 0.001840247200959878) +zone = ('coz039', 0.0033896870442469184) + +[fips0801790646] +centroid = (0.67769096310373489, -1.7852361006214248) +description = Cheyenne Wells CCD, CO +station = ('kitr', 0.0073508931748308528) +zone = ('coz092', 0.0043088718602161888) + +[fips0801792014] +centroid = (0.67792110221890289, -1.7947057859038478) +description = Kit Carson CCD, CO +station = ('kitr', 0.010267608044904139) +zone = ('coz092', 0.0030778974086581993) + +[fips08019] +centroid = (0.69271076050091496, -1.8443032261367911) +description = Clear Creek County, CO +station = ('kccu', 0.0075260512851307252) +zone = ('coz034', 0.0028343713479337973) + +[fips0801915] +centroid = (0.71005505720907125, -1.7832484498560837) +description = Amherst CDP, CO +station = ('kheq', 0.0024414485053154134) +zone = ('coz051', 0.0029022503391946666) + +[fips0801991463] +centroid = (0.69302018992400105, -1.8472096531269673) +description = Georgetown CCD, CO +station = ('kccu', 0.0059373684299295626) +zone = ('coz034', 0.0018017408388978581) + +[fips0801991843] +centroid = (0.69287194165733668, -1.8417932157796206) +description = Idaho Springs CCD, CO +station = ('kbdu', 0.007019639017075449) +zone = ('coz036', 0.0051169153951513106) + +[fips08021] +centroid = (0.64949647803470545, -1.8531285882192556) +description = Conejos County, CO +station = ('kals', 0.0057636420403756692) +zone = ('coz067', 0.0067476548444180698) + +[fips0802190095] +centroid = (0.64704456968833379, -1.8483414991468858) +description = Antonito CCD, CO +station = ('kals', 0.0063096505377430896) +zone = ('coz071', 0.0033274869758308828) + +[fips0802192071] +centroid = (0.65081737811919982, -1.8488436652792695) +description = La Jara CCD, CO +station = ('kals', 0.0026707604802682699) +zone = ('coz071', 0.0027234226029230037) + +[fips0802192375] +centroid = (0.64887594367245138, -1.8495076234333132) +description = Manassa CCD, CO +station = ('kals', 0.0046797366631072196) +zone = ('coz071', 0.003092186650459012) + +[fips0802193825] +centroid = (0.64918069561314218, -1.8561463148558315) +description = West Conejos CCD, CO +station = ('ke33', 0.0060983155800489654) +zone = ('coz067', 0.0054692765412168607) + +[fips08023] +centroid = (0.65061593221693459, -1.8400821298875505) +description = Costilla County, CO +station = ('kals', 0.0066536515396681678) +zone = ('coz075', 0.0038059880592121033) + +[fips0802355] +centroid = (0.64710883271139219, -1.8502274146701281) +description = Antonito town, CO +station = ('kals', 0.0065376728600938794) +zone = ('coz071', 0.0043828844472355273) + +[fips0802390323] +centroid = (0.65336925892512576, -1.8397053307553375) +description = Blanca CCD, CO +station = ('kals', 0.006365649840663447) +zone = ('coz075', 0.0051954550674987998) + +[fips0802393192] +centroid = (0.6483335477008092, -1.8403063697898467) +description = San Luis CCD, CO +station = ('kals', 0.0077342854243565781) +zone = ('coz071', 0.004533495472541723) + +[fips08025] +centroid = (0.66884430800439609, -1.8114346795177509) +description = Crowley County, CO +station = ('klhx', 0.0060282685402490606) +zone = ('coz089', 8.8871452334590272e-05) + +[fips0802575] +centroid = (0.69378122329104075, -1.835435103487653) +description = Applewood CDP, CO +station = ('kbjc', 0.0029609830016852565) +zone = ('coz039', 0.0036639127080971435) + +[fips0802592755] +centroid = (0.66854480950475392, -1.8129106171997) +description = Ordway CCD, CO +station = ('klhx', 0.0066000300743840092) +zone = ('coz089', 0.0012536389589513242) + +[fips0802593553] +centroid = (0.6692154522698327, -1.8081889430676947) +description = Sugar City CCD, CO +station = ('klhx', 0.0052485788815083067) +zone = ('coz089', 0.0025262181591566065) + +[fips08027] +centroid = (0.6650052468751243, -1.8391147811496327) +description = Custer County, CO +station = ('k04v', 0.010920675486565419) +zone = ('coz078', 0.0012027691400837758) + +[fips0802793819] +centroid = (0.6650052468751243, -1.8391147811496327) +description = Westcliffe CCD, CO +station = ('k04v', 0.010920675486565419) +zone = ('coz078', 0.0012027691400837758) + +[fips08029] +centroid = (0.67826559530666153, -1.8825951565136012) +description = Delta County, CO +station = ('kajz', 0.0030066742235576524) +zone = ('coz011', 0.0033708937424418838) + +[fips0802905] +centroid = (0.64613591637316037, -1.8748631210344637) +description = Arboles CDP, CO +station = ('kdro', 0.005305010199763132) +zone = ('nmz503', 0.0035445543563458197) + +[fips0802990532] +centroid = (0.67971217655059202, -1.8844052025742595) +description = Cedaredge CCD, CO +station = ('kajz', 0.0030492124347445073) +zone = ('coz009', 0.00363329942720625) + +[fips0802990988] +centroid = (0.67640112987992607, -1.8874929518204253) +description = Delta CCD, CO +station = ('kajz', 0.0012409900861792718) +zone = ('coz011', 0.0033811477125715458) + +[fips0802991786] +centroid = (0.67750815731788105, -1.8800385284121097) +description = Hotchkiss CCD, CO +station = ('kajz', 0.004730099864062475) +zone = ('coz011', 0.0037336148688726545) + +[fips0802992831] +centroid = (0.68032990093275036, -1.8780799373788144) +description = Paonia CCD, CO +station = ('kajz', 0.0070755127703180003) +zone = ('coz009', 0.0043035743840342811) + +[fips0803015] +centroid = (0.70004475619084283, -1.8283187678087414) +description = Aristocrat Ranchettes CDP, CO +station = ('kden', 0.004401435334892137) +zone = ('coz043', 0.0034962525916470816) + +[fips08031] +centroid = (0.69397518173081474, -1.8305122277994776) +description = Denver County, CO +station = ('kbkf', 0.001877544807878499) +zone = ('coz040', 0.0010300947656663774) + +[fips0803191007] +centroid = (0.69397518173081474, -1.8305122277994776) +description = Denver CCD, CO +station = ('kbkf', 0.001877544807878499) +zone = ('coz040', 0.0010300947656663774) + +[fips0803235] +centroid = (0.6856361556444186, -1.8024696387352495) +description = Arriba town, CO +station = ('klic', 0.0053152258573131231) +zone = ('coz046', 0.0056435516616048014) + +[fips08033] +centroid = (0.6588199396323966, -1.8942125218004811) +description = Dolores County, CO +station = ('kcez', 0.0079410403819575072) +zone = ('coz021', 0.0069585505123507911) + +[fips0803391064] +centroid = (0.65877190817138165, -1.9008503580116658) +description = Dove Creek CCD, CO +station = ('k4bl', 0.0079987733375131483) +zone = ('coz021', 0.0068375907055951389) + +[fips0803393078] +centroid = (0.65893863947482478, -1.8913307912192208) +description = Rico CCD, CO +station = ('ktex', 0.0071920153462279911) +zone = ('coz021', 0.0082248307089110278) + +[fips0803455] +centroid = (0.69481103736288741, -1.8344565846425225) +description = Arvada city, CO +station = ('kbjc', 0.001871069526952258) +zone = ('coz039', 0.0027147838095889876) + +[fips08035] +centroid = (0.68637577382153614, -1.8313076441527816) +description = Douglas County, CO +station = ('kapa', 0.004316776290711883) +zone = ('coz036', 0.0053668255731741344) + +[fips0803590513] +centroid = (0.68512554211845511, -1.8309214027893155) +description = Castle Rock CCD, CO +station = ('kmnh', 0.0037125652347827797) +zone = ('coz036', 0.0063324051140282445) + +[fips0803592850] +centroid = (0.68742304118590292, -1.8281543577932036) +description = Parker CCD, CO +station = ('kmnh', 0.0033246486619958214) +zone = ('coz041', 0.0034757972689113737) + +[fips0803593249] +centroid = (0.68684200362462144, -1.8337802171974971) +description = Sedalia CCD, CO +station = ('kapa', 0.004744092419185152) +zone = ('coz036', 0.0035339186332158695) + +[fips0803620] +centroid = (0.68408012480309555, -1.8646568195412363) +description = Aspen city, CO +station = ('kase', 0.00078177383696449113) +zone = ('coz010', 0.0042064604461429754) + +[fips08037] +centroid = (0.69168511776598052, -1.862143161445929) +description = Eagle County, CO +station = ('kege', 0.0030257976179540571) +zone = ('coz010', 0.0037827820408220282) + +[fips0803730] +centroid = (0.69013481160460399, -1.8377883134648245) +description = Aspen Park CDP, CO +station = ('kapa', 0.006037736917000049) +zone = ('coz036', 0.0010872065211092441) + +[fips0803790247] +centroid = (0.6877843592476508, -1.8654086375698253) +description = Basalt CCD, CO +station = ('kase', 0.0030388870312722661) +zone = ('coz010', 0.0010087965996735805) + +[fips0803791140] +centroid = (0.69312705643410066, -1.8640560073995296) +description = Eagle-Gypsum CCD, CO +station = ('kege', 0.0018891081246242725) +zone = ('coz008', 0.0033845046299379533) + +[fips0803792489] +centroid = (0.69057702567718182, -1.8573652877120093) +description = Minturn-Red Cliff CCD, CO +station = ('kccu', 0.0040188302741431883) +zone = ('coz010', 0.0058022076655111802) + +[fips0803840] +centroid = (0.70773933690423263, -1.8024817687735508) +description = Atwood CDP, CO +station = ('kstk', 0.0010567405357047427) +zone = ('coz048', 0.0037406982191712638) + +[fips08039] +centroid = (0.68610318829895978, -1.8172006539543948) +description = Elbert County, CO +station = ('klic', 0.0061442469382025936) +zone = ('coz041', 0.0052828141461085795) + +[fips0803950] +centroid = (0.70831489413166282, -1.8279524755586254) +description = Ault town, CO +station = ('kgxy', 0.0029407549754476682) +zone = ('coz038', 0.0027562666896156704) + +[fips0803990019] +centroid = (0.68778078132268416, -1.8141726298752321) +description = Agate CCD, CO +station = ('klic', 0.0044780389943391442) +zone = ('coz046', 0.0036580944034670789) + +[fips0803991190] +centroid = (0.68703198271370103, -1.8228046269298681) +description = Elizabeth CCD, CO +station = ('kmnh', 0.0036803186929114653) +zone = ('coz041', 0.0013670079587820359) + +[fips0803993325] +centroid = (0.68206330958595351, -1.8141513717649429) +description = Simla CCD, CO +station = ('klic', 0.0049688979005090067) +zone = ('coz046', 0.0059872838143461282) + +[fips0804000] +centroid = (0.69268630843809453, -1.8271806560568085) +description = Aurora city, CO +station = ('kbkf', 0.00099449332253514046) +zone = ('coz040', 0.0020461251931048799) + +[fips08041] +centroid = (0.67766567328287342, -1.8243485451861823) +description = El Paso County, CO +station = ('kfly', 0.0022166846845781524) +zone = ('coz085', 0.0020316671715035857) + +[fips0804110] +centroid = (0.69187987905721049, -1.8590527592993003) +description = Avon town, CO +station = ('kccu', 0.005786882104913924) +zone = ('coz010', 0.0054006184361866999) + +[fips0804165] +centroid = (0.6672683280497228, -1.821172726625961) +description = Avondale CDP, CO +station = ('kpub', 0.0023013489870478323) +zone = ('coz086', 0.0021270088534800849) + +[fips0804190304] +centroid = (0.6815106859848945, -1.8224901709585364) +description = Black Forest-Peyton CCD, CO +station = ('kfly', 0.0026441769355936497) +zone = ('coz084', 0.00072924593772645129) + +[fips0804190627] +centroid = (0.67569573760944002, -1.8307415989697748) +description = Cheyenne Mountain CCD, CO +station = ('kfcs', 0.0017495044845809624) +zone = ('coz082', 0.0027252847052097978) + +[fips0804190741] +centroid = (0.67831538955022086, -1.8288575334955397) +description = Colorado Springs CCD, CO +station = ('kcos', 0.0012585178557679632) +zone = ('coz082', 0.0036442496866444488) + +[fips0804191197] +centroid = (0.6785365227664486, -1.8263836689071777) +description = Elsmere CCD, CO +station = ('kcos', 0.0014466347663732485) +zone = ('coz085', 0.0034544057420021904) + +[fips0804191387] +centroid = (0.6740915880406394, -1.8282729529158765) +description = Fountain CCD, CO +station = ('kfcs', 0.0013649015437267049) +zone = ('coz085', 0.0037374369933146499) + +[fips0804192565] +centroid = (0.68102209851409123, -1.831340613422352) +description = Monument CCD, CO +station = ('kaff', 0.0017722671555427873) +zone = ('coz081', 0.0036129356731017508) + +[fips0804192907] +centroid = (0.6781532833692957, -1.8325999208375434) +description = Pikes Peak CCD, CO +station = ('kaff', 0.0031610246303202211) +zone = ('coz082', 0.00093510556838001708) + +[fips0804193420] +centroid = (0.67602429584112789, -1.820851254431036) +description = Southeastern El Paso CCD, CO +station = ('kabh', 0.0007385088068289677) +zone = ('coz085', 0.0024281296808276154) + +[fips08043] +centroid = (0.67117784812089754, -1.8399511952870657) +description = Fremont County, CO +station = ('kfcs', 0.0098995254418377324) +zone = ('coz077', 0.0019141154188442964) + +[fips0804390494] +centroid = (0.67116718415916787, -1.8366159059930898) +description = Cañon City CCD, CO +station = ('kfcs', 0.0076356012686349568) +zone = ('coz083', 0.0015903729581637125) + +[fips0804390836] +centroid = (0.67136002558822072, -1.8434671261586233) +description = Cotopaxi CCD, CO +station = ('kank', 0.0059397949501507679) +zone = ('coz077', 0.0011663708744893834) + +[fips0804391311] +centroid = (0.66898023424654141, -1.8352858080234375) +description = Florence CCD, CO +station = ('kfcs', 0.00835209929684551) +zone = ('coz083', 0.0020705153796852795) + +[fips0804392888] +centroid = (0.67140575321462292, -1.8329255643693805) +description = Penrose-Portland CCD, CO +station = ('kfcs', 0.0053044000829029631) +zone = ('coz083', 0.0013782444124848269) + +[fips08045] +centroid = (0.69113907405620167, -1.8833809561027266) +description = Garfield County, CO +station = ('kril', 0.0027784678296869079) +zone = ('coz007', 0.0028895370076517418) + +[fips0804591520] +centroid = (0.69327179658896854, -1.8715817973209592) +description = Glenwood Springs CCD, CO +station = ('k5sm', 0.0055241059643259512) +zone = ('coz008', 0.0031908019279849975) + +[fips0804592603] +centroid = (0.69078459768512157, -1.8769972921905096) +description = New Castle CCD, CO +station = ('kril', 0.0027706037484583287) +zone = ('coz007', 0.0063041394264435596) + +[fips0804593097] +centroid = (0.69236213098282917, -1.8824880805639914) +description = Rifle CCD, CO +station = ('kril', 0.003154036847696739) +zone = ('coz007', 0.0042753447298018504) + +[fips0804593832] +centroid = (0.68999078703472949, -1.893461820782613) +description = West Garfield CCD, CO +station = ('kgjt', 0.0070127756630731196) +zone = ('coz003', 0.00099512737258323374) + +[fips0804620] +centroid = (0.70018775101645869, -1.8402876947668505) +description = Bark Ranch CDP, CO +station = ('kbdu', 0.0032044327155207292) +zone = ('coz039', 0.0046906362250840857) + +[fips08047] +centroid = (0.69570712430744641, -1.8418275813125926) +description = Gilpin County, CO +station = ('kbdu', 0.0049691588691744637) +zone = ('coz034', 0.006220704569052618) + +[fips0804790570] +centroid = (0.69570712430744641, -1.8418275813125926) +description = Central City CCD, CO +station = ('kbdu', 0.0049691588691744637) +zone = ('coz034', 0.006220704569052618) + +[fips08049] +centroid = (0.70028349977922311, -1.8517223589876315) +description = Grand County, CO +station = ('k20v', 0.0038429420385731302) +zone = ('coz032', 0.0017503340597123389) + +[fips0804935] +centroid = (0.68711144755454434, -1.8683539679490282) +description = Basalt town, CO +station = ('kase', 0.0034092819063551269) +zone = ('coz010', 0.0033649914330959622) + +[fips0804991577] +centroid = (0.70015825495209993, -1.8478037981109312) +description = Granby CCD, CO +station = ('k20v', 0.0067326512120988108) +zone = ('coz032', 0.0045715348412529565) + +[fips0804992033] +centroid = (0.69982880660249358, -1.8551502554517185) +description = Kremmling CCD, CO +station = ('k20v', 0.0012753606968091864) +zone = ('coz032', 0.0011923049546712003) + +[fips08051] +centroid = (0.67491321923930836, -1.8688655414060804) +description = Gunnison County, CO +station = ('kguc', 0.0030922994252453426) +zone = ('coz012', 0.0025047250380025843) + +[fips0805120] +centroid = (0.68858070062545818, -1.8850243581264046) +description = Battlement Mesa CDP, CO +station = ('kril', 0.0038119536002248914) +zone = ('coz007', 0.00040364806462505389) + +[fips0805190893] +centroid = (0.67852706308190269, -1.8659072257772424) +description = Crested Butte CCD, CO +station = ('kguc', 0.0060029772773366238) +zone = ('coz012', 0.0018524182237147375) + +[fips0805191672] +centroid = (0.67498681977386488, -1.8624343172717466) +description = Gunnison CCD, CO +station = ('kguc', 0.0039151786695260102) +zone = ('coz012', 0.0045838341453142313) + +[fips0805193211] +centroid = (0.67029790547191948, -1.8725335428153642) +description = Sapinero CCD, CO +station = ('kguc', 0.0053406077876440826) +zone = ('coz014', 0.001862789648287022) + +[fips0805193363] +centroid = (0.67978389212955648, -1.8731360130198602) +description = Somerset CCD, CO +station = ('kase', 0.0079276251716137898) +zone = ('coz012', 0.0050378346260713941) + +[fips0805265] +centroid = (0.64987767539663355, -1.8778837623708902) +description = Bayfield town, CO +station = ('kdro', 0.0028147236249011567) +zone = ('coz022', 0.0042099885120846139) + +[fips08053] +centroid = (0.65993735177940094, -1.8741939792525415) +description = Hinsdale County, CO +station = ('ktex', 0.0076490930975267671) +zone = ('coz018', 0.0048882597457517015) + +[fips0805392109] +centroid = (0.65993735177940094, -1.8741939792525415) +description = Lake City CCD, CO +station = ('ktex', 0.0076490930975267671) +zone = ('coz018', 0.0048882597457517015) + +[fips08055] +centroid = (0.65777645963250675, -1.8318963262561869) +description = Huerfano County, CO +station = ('ktad', 0.010355057132604574) +zone = ('coz087', 0.0014110133132449196) + +[fips0805591444] +centroid = (0.65945490786756467, -1.8365490947893235) +description = Gardner CCD, CO +station = ('kals', 0.010760795838111436) +zone = ('coz080', 0.0037927676161368319) + +[fips0805592204] +centroid = (0.65436346828023184, -1.8335244566489097) +description = La Veta CCD, CO +station = ('ktad', 0.0094558252855218503) +zone = ('coz087', 0.0043819806483438055) + +[fips0805593743] +centroid = (0.65837439198094749, -1.82760876786903) +description = Walsenburg CCD, CO +station = ('ktad', 0.0088493291353902853) +zone = ('coz087', 0.0020599405259472355) + +[fips08057] +centroid = (0.70971077356082279, -1.8557954687695957) +description = Jackson County, CO +station = ('k33v', 0.0017669798252772063) +zone = ('coz030', 0.00035307991627600593) + +[fips0805793724] +centroid = (0.70971077356082279, -1.8557954687695957) +description = Walden CCD, CO +station = ('k33v', 0.0017669798252772063) +zone = ('coz030', 0.00035307991627600593) + +[fips08059] +centroid = (0.69091406620903451, -1.8368822606902364) +description = Jefferson County, CO +station = ('kapa', 0.0053330356144854303) +zone = ('coz036', 0.0018171691770410038) + +[fips0805990589] +centroid = (0.69167579770777488, -1.8382777561469612) +description = Central Jefferson CCD, CO +station = ('kbjc', 0.0057329216751453096) +zone = ('coz036', 0.0026679713003455127) + +[fips0805991539] +centroid = (0.6944452512582544, -1.8376309894860496) +description = Golden CCD, CO +station = ('kbjc', 0.0032066664778239865) +zone = ('coz039', 0.0034846156609594169) + +[fips0805992641] +centroid = (0.69385386389450865, -1.8348289680917278) +description = Northeast Jefferson CCD, CO +station = ('kbjc', 0.0028274469137016221) +zone = ('coz039', 0.0036097843930538009) + +[fips0805993439] +centroid = (0.68803079973803238, -1.8374889371382299) +description = South Jefferson CCD, CO +station = ('kapa', 0.0063275537020403725) +zone = ('coz036', 0.0011039476082950858) + +[fips0806090] +centroid = (0.69369167044712077, -1.822874143393975) +description = Bennett town, CO +station = ('kftg', 0.0015793949227370621) +zone = ('coz040', 0.0048564191817541584) + +[fips08061] +centroid = (0.67000512648989752, -1.7934341913707224) +description = Kiowa County, CO +station = ('klaa', 0.0057046434993181898) +zone = ('coz095', 0.0046328781520964257) + +[fips0806172] +centroid = (0.69477181981459513, -1.8331041115518594) +description = Berkley CDP, CO +station = ('kbjc', 0.0022374129544958966) +zone = ('coz039', 0.0031666771587098336) + +[fips0806191121] +centroid = (0.67104042089559546, -1.7944346664578432) +description = Eads CCD, CO +station = ('klaa', 0.0068869304523622348) +zone = ('coz095', 0.0038281924535230123) + +[fips0806191691] +centroid = (0.67006153553132197, -1.8023292968100966) +description = Haswell CCD, CO +station = ('klhx', 0.0068842560708398722) +zone = ('coz095', 0.002445082975771807) + +[fips0806193268] +centroid = (0.67084438551401149, -1.7862326312644361) +description = Sheridan Lake CCD, CO +station = ('klaa', 0.0079598561335625009) +zone = ('coz096', 0.00062786530151457515) + +[fips0806255] +centroid = (0.70331939529331211, -1.8324261733105072) +description = Berthoud town, CO +station = ('kfnl', 0.0026892615936538818) +zone = ('coz039', 0.006277743501828751) + +[fips08063] +centroid = (0.686007596615828, -1.7907605738494698) +description = Kit Carson County, CO +station = ('kitr', 0.0044258004676151642) +zone = ('coz091', 1.9636768087272024e-06) + +[fips0806390456] +centroid = (0.68604154326977929, -1.7839254630729322) +description = Burlington CCD, CO +station = ('kitr', 0.0013943031800836736) +zone = ('ksz013', 0.0066786170188761719) + +[fips0806391273] +centroid = (0.6862296374032667, -1.7964596498158847) +description = Flagler CCD, CO +station = ('klic', 0.0099968439313179152) +zone = ('coz091', 0.0044166258922258388) + +[fips0806393534] +centroid = (0.68597082252848851, -1.7904021355809878) +description = Stratton CCD, CO +station = ('kitr', 0.0041471335978368997) +zone = ('coz091', 0.00027827785884945418) + +[fips08065] +centroid = (0.68424439519229319, -1.8561523536950433) +description = Lake County, CO +station = ('klxv', 0.00067524272443662955) +zone = ('coz059', 0.00030487941828572938) + +[fips0806530] +centroid = (0.68598110251778266, -1.7876258054332552) +description = Bethune town, CO +station = ('kitr', 0.0021128668569305752) +zone = ('coz091', 0.0024241449761407013) + +[fips0806592223] +centroid = (0.68334678981128505, -1.8563634163614871) +description = Leadville CCD, CO +station = ('klxv', 0.0015309795071236174) +zone = ('coz059', 0.00064408133068743665) + +[fips0806592242] +centroid = (0.68633500293020955, -1.8547921487957941) +description = Leadville North CCD, CO +station = ('klxv', 0.0016963518645264758) +zone = ('coz058', 0.0014430060821894286) + +[fips0806602] +centroid = (0.66414345565036703, -1.8322335064143798) +description = Beulah Valley CDP, CO +station = ('kpub', 0.0077110418952698462) +zone = ('coz080', 0.0024077622862758163) + +[fips08067] +centroid = (0.65078732354948055, -1.8821581435221943) +description = La Plata County, CO +station = ('kdro', 0.0026036314646979805) +zone = ('coz022', 0.0024748040634317895) + +[fips0806790266] +centroid = (0.65448508282251072, -1.8775712611683206) +description = Bayfield CCD, CO +station = ('kdro', 0.0066399083907977908) +zone = ('coz019', 0.0012053637659426842) + +[fips0806791083] +centroid = (0.65303656426311052, -1.8828944455737333) +description = Durango CCD, CO +station = ('kdro', 0.0049145864501222132) +zone = ('coz019', 0.0035766305443354785) + +[fips0806791102] +centroid = (0.64801785254570832, -1.8847796804185672) +description = Durango Southwest CCD, CO +station = ('kdro', 0.0031283807979441444) +zone = ('coz022', 0.0016030553649947783) + +[fips0806791862] +centroid = (0.64769721810882452, -1.8780027240127062) +description = Ignacio CCD, CO +station = ('kdro', 0.0023986406175977503) +zone = ('coz022', 0.0038970544597472004) + +[fips08069] +centroid = (0.70970482198807361, -1.8410104879699787) +description = Larimer County, CO +station = ('kfnl', 0.0072061311656865289) +zone = ('coz035', 0.00094040997298070546) + +[fips0806970] +centroid = (0.68178925798680545, -1.8270038542035814) +description = Black Forest CDP, CO +station = ('kfly', 0.0024787590545601911) +zone = ('coz084', 0.003241262263081292) + +[fips0806990285] +centroid = (0.70350005432418605, -1.8353054255242298) +description = Berthoud CCD, CO +station = ('klmo', 0.0025766024987057138) +zone = ('coz039', 0.0060560214108815258) + +[fips0806991235] +centroid = (0.7062393660384837, -1.8435517571740527) +description = Estes Park CCD, CO +station = ('klmo', 0.0081853528169035395) +zone = ('coz035', 0.0032817680806102394) + +[fips0806991330] +centroid = (0.70827098164768265, -1.8341541190831518) +description = Fort Collins CCD, CO +station = ('kfnl', 0.0024801461855973174) +zone = ('coz038', 0.0040551941163173887) + +[fips0806992299] +centroid = (0.71164264360327034, -1.8443026676314307) +description = Livermore CCD, CO +station = ('k33v', 0.0078008855794720914) +zone = ('coz035', 0.0039009160050173979) + +[fips0806992337] +centroid = (0.70561352587530357, -1.8358102271037842) +description = Loveland CCD, CO +station = ('kfnl', 0.0022560569826300587) +zone = ('coz035', 0.0049462794576186605) + +[fips0806993610] +centroid = (0.71267895029993444, -1.8343816751110267) +description = Timnath-Wellington CCD, CO +station = ('kfnl', 0.006788726703915597) +zone = ('coz038', 0.003981651641585213) + +[fips0807025] +centroid = (0.694659699863447, -1.8411342841738227) +description = Black Hawk city, CO +station = ('kbdu', 0.0052921079719007464) +zone = ('coz039', 0.0052602843176100733) + +[fips08071] +centroid = (0.65133647394532801, -1.8159122868071575) +description = Las Animas County, CO +station = ('ktad', 0.0054805015811294159) +zone = ('coz088', 0.0048867186867797901) + +[fips0807190] +centroid = (0.65343872302935513, -1.8415584340886424) +description = Blanca town, CO +station = ('kals', 0.004895073321722147) +zone = ('coz071', 0.0050436142628469335) + +[fips0807190038] +centroid = (0.65535113265064282, -1.8237123377672453) +description = Aguilar CCD, CO +station = ('ktad', 0.0049896081924046308) +zone = ('coz088', 0.0036626817620551001) + +[fips0807190361] +centroid = (0.64881834780713565, -1.8124316639463678) +description = Branson CCD, CO +station = ('ktad', 0.0083376470098938359) +zone = ('coz094', 0.0046673649623631963) + +[fips0807191976] +centroid = (0.65108299977806083, -1.8044929640305014) +description = Kim CCD, CO +station = ('klhx', 0.013132179799967949) +zone = ('coz094', 0.0024444182304921517) + +[fips0807192508] +centroid = (0.65366554601894433, -1.8164045220160974) +description = Model CCD, CO +station = ('ktad', 0.0059646864356807279) +zone = ('coz088', 0.0047732996299362724) + +[fips0807193648] +centroid = (0.64812738940956349, -1.8227548501396011) +description = Trinidad CCD, CO +station = ('ktad', 0.0022989810318520313) +zone = ('coz088', 0.003865124966166018) + +[fips0807193838] +centroid = (0.64833307646191107, -1.8310857953515607) +description = Weston CCD, CO +station = ('ktad', 0.0069949951379711167) +zone = ('coz074', 0.0020678343381601576) + +[fips0807245] +centroid = (0.6676410431114862, -1.8250230102223228) +description = Blende CDP, CO +station = ('kpub', 0.0010492040524006188) +zone = ('coz086', 0.0016440415783584329) + +[fips08073] +centroid = (0.68056915066661372, -1.8065476354391192) +description = Lincoln County, CO +station = ('klic', 0.0052279133443903355) +zone = ('coz047', 0.0035022606492862052) + +[fips0807390133] +centroid = (0.68798554335052808, -1.8033150238650379) +description = Arriba CCD, CO +station = ('klic', 0.0053515127925929723) +zone = ('coz046', 0.004965389472394827) + +[fips0807391824] +centroid = (0.68191205935297572, -1.8049122270234155) +description = Hugo CCD, CO +station = ('klic', 0.004837647964348611) +zone = ('coz047', 0.005248062513511325) + +[fips0807391919] +centroid = (0.67579113730635398, -1.8081518722743823) +description = Karval CCD, CO +station = ('klic', 0.0095849214581035357) +zone = ('coz047', 0.0014819959904849489) + +[fips0807392261] +centroid = (0.68666380550799277, -1.8080481648102289) +description = Limon CCD, CO +station = ('klic', 0.0016576108320281327) +zone = ('coz046', 0.0012076647616806756) + +[fips0807410] +centroid = (0.6884739039285287, -1.8507047273139636) +description = Blue River town, CO +station = ('kccu', 0.001560687069022943) +zone = ('coz034', 0.0037313456164980302) + +[fips0807420] +centroid = (0.70336934661650419, -1.8117482453711642) +description = Blue Sky CDP, CO +station = ('kstk', 0.0090412051195952539) +zone = ('coz044', 0.00065513978724920973) + +[fips08075] +centroid = (0.71083928600186985, -1.7992680242086836) +description = Logan County, CO +station = ('kstk', 0.0030471392929185305) +zone = ('coz048', 0.00026637740953716567) + +[fips0807571] +centroid = (0.66840188449230808, -1.8525251580836712) +description = Bonanza town, CO +station = ('k04v', 0.0034991933641917452) +zone = ('coz065', 0.0043007406608215277) + +[fips0807580] +centroid = (0.69772835520759591, -1.840965912260883) +description = Bonanza Mountain Estates CDP, CO +station = ('kbdu', 0.003463036235368611) +zone = ('coz039', 0.0043375290152052231) + +[fips0807590931] +centroid = (0.71409750155607787, -1.7945916588240602) +description = Crook CCD, CO +station = ('ksny', 0.0038648016065157068) +zone = ('coz048', 0.0050430221655866992) + +[fips0807591292] +centroid = (0.70892570700998325, -1.7959971724706911) +description = Fleming CCD, CO +station = ('kstk', 0.0047314080016067914) +zone = ('coz048', 0.003309139488755749) + +[fips0807592470] +centroid = (0.70732047533704645, -1.8046618595422168) +description = Merino CCD, CO +station = ('kstk', 0.0023550021708634355) +zone = ('coz048', 0.0051639366053708993) + +[fips0807592869] +centroid = (0.71431734322865914, -1.8018494010789683) +description = Peetz CCD, CO +station = ('ksny', 0.0045120327893199827) +zone = ('coz048', 0.0039219481796963808) + +[fips0807593515] +centroid = (0.71081725994670975, -1.8034367954869497) +description = Sterling CCD, CO +station = ('kstk', 0.0022360182172207251) +zone = ('coz048', 0.0028997813768268897) + +[fips08077] +centroid = (0.68101860785558721, -1.8930161684114091) +description = Mesa County, CO +station = ('kgjt', 0.0022104739623735516) +zone = ('coz006', 0.0037850362534662869) + +[fips0807790665] +centroid = (0.68218282973313005, -1.8925552095026648) +description = Clifton CCD, CO +station = ('kgjt', 0.0015604151179261054) +zone = ('coz006', 0.0035288464278426805) + +[fips0807790703] +centroid = (0.68450041754026836, -1.8833850925330538) +description = Collbran CCD, CO +station = ('kril', 0.0057163653274859977) +zone = ('coz009', 0.001672666068414027) + +[fips0807790950] +centroid = (0.68539341525205122, -1.8910618010749034) +description = De Beque CCD, CO +station = ('kgjt', 0.0034438041167184634) +zone = ('coz006', 0.0049135372549009926) + +[fips0807791425] +centroid = (0.68500034965120959, -1.8983603665810158) +description = Fruita CCD, CO +station = ('kgjt', 0.0037495582386242307) +zone = ('coz006', 0.002013369079886731) + +[fips0807791501] +centroid = (0.67752801916476868, -1.8971667184522842) +description = Glade Park-Gateway CCD, CO +station = ('kgjt', 0.0059241071836726254) +zone = ('coz006', 0.0058454761545887026) + +[fips0807791596] +centroid = (0.68203290595038379, -1.8951457493515225) +description = Grand Junction CCD, CO +station = ('kgjt', 0.0011891655621011558) +zone = ('coz006', 0.0018733383429516528) + +[fips0807793857] +centroid = (0.6801437964746101, -1.8909943266460212) +description = Whitewater-Kannah Creek CCD, CO +station = ('kgjt', 0.003825813033156013) +zone = ('coz006', 0.0055672437732737787) + +[fips0807795] +centroid = (0.66759620560300237, -1.8196941011369636) +description = Boone town, CO +station = ('kpub', 0.0033277885778800081) +zone = ('coz086', 0.0033259360486002777) + +[fips0807850] +centroid = (0.69861067150435663, -1.8369894064530166) +description = Boulder city, CO +station = ('kbdu', 0.00029394897569259045) +zone = ('coz039', 0.0017320000931847993) + +[fips08079] +centroid = (0.65714225934220949, -1.8663207117303324) +description = Mineral County, CO +station = ('kcpw', 0.0039411616443444722) +zone = ('coz068', 0.0050635999231470096) + +[fips0807990874] +centroid = (0.65714225934220949, -1.8663207117303324) +description = Creede CCD, CO +station = ('kcpw', 0.0039411616443444722) +zone = ('coz068', 0.0050635999231470096) + +[fips0808070] +centroid = (0.69161453665102979, -1.8334843489826991) +description = Bow Mar town, CO +station = ('kapa', 0.0028974050385791035) +zone = ('coz036', 0.0038409253291028984) + +[fips08081] +centroid = (0.70814961145149902, -1.8885251569933472) +description = Moffat County, CO +station = ('kcag', 0.0092147789953546614) +zone = ('coz002', 0.0048654059337939004) + +[fips0808190855] +centroid = (0.7081910630212338, -1.8789305934029439) +description = Craig CCD, CO +station = ('kcag', 0.0022655604487419414) +zone = ('coz002', 0.0045573410701227699) + +[fips0808191017] +centroid = (0.70423598985658198, -1.8959246199835174) +description = Dinosaur CCD, CO +station = ('keeo', 0.011226776344948322) +zone = ('coz001', 0.0018959377134266607) + +[fips0808192432] +centroid = (0.71098112891017939, -1.892185199701242) +description = Maybell-Powder Wash CCD, CO +station = ('kcag', 0.012585399963836655) +zone = ('coz001', 0.0063480026106850929) + +[fips0808290] +centroid = (0.67101626553874782, -1.7879354442958517) +description = Brandon CDP, CO +station = ('klaa', 0.0074122368145689349) +zone = ('coz096', 0.00071690842634838611) + +[fips08083] +centroid = (0.65167147244195578, -1.8953540194911629) +description = Montezuma County, CO +station = ('kcez', 0.00084383400403475496) +zone = ('coz021', 0.0019783662264653422) + +[fips0808345] +centroid = (0.64604222709891346, -1.8131139480575573) +description = Branson town, CO +station = ('ktad', 0.0088134892702293154) +zone = ('coz094', 0.0069536923067288602) + +[fips0808390817] +centroid = (0.65229300164188342, -1.897404676642501) +description = Cortez CCD, CO +station = ('kcez', 0.0016977918531339597) +zone = ('coz021', 0.00023796739122056553) + +[fips0808391045] +centroid = (0.65545265845323142, -1.8905333328306919) +description = Dolores CCD, CO +station = ('kcez', 0.0062182957067584014) +zone = ('coz021', 0.0064168566807968445) + +[fips0808392394] +centroid = (0.65197240211158458, -1.8901795371380203) +description = Mancos CCD, CO +station = ('kcez', 0.0047350406215494537) +zone = ('coz021', 0.0059604161369186878) + +[fips0808392945] +centroid = (0.65355970925310336, -1.9007910691769756) +description = Pleasant View CCD, CO +station = ('kcez', 0.0045773813502053787) +zone = ('coz021', 0.0027370971423426862) + +[fips0808393705] +centroid = (0.64832246486005896, -1.8956538670566554) +description = Ute Mountain CCD, CO +station = ('kcez', 0.0027002236116995888) +zone = ('coz021', 0.0043968511011076893) + +[fips0808400] +centroid = (0.68940901643516228, -1.8508012440215988) +description = Breckenridge town, CO +station = ('kccu', 0.0015544186476692632) +zone = ('coz034', 0.0031659869120654435) + +[fips08085] +centroid = (0.67044077812448777, -1.8895465411249068) +description = Montrose County, CO +station = ('kmtj', 0.0051867621805440373) +zone = ('coz017', 0.0033449986252706418) + +[fips0808530] +centroid = (0.69101239805909187, -1.823181181715986) +description = Brick Center CDP, CO +station = ('kftg', 0.0035472206960665614) +zone = ('coz041', 0.0050099478152041904) + +[fips0808592546] +centroid = (0.67066540199921942, -1.8820621504133348) +description = Montrose CCD, CO +station = ('kmtj', 0.0015693596927697552) +zone = ('coz011', 0.0044709220640275762) + +[fips0808592698] +centroid = (0.66828856026397609, -1.8959132229835018) +description = Nucla CCD, CO +station = ('kajz', 0.011591398270863989) +zone = ('coz020', 0.0019835242007714034) + +[fips0808592736] +centroid = (0.67289910928250685, -1.8852781289996443) +description = Olathe CCD, CO +station = ('kmtj', 0.0018746947735781097) +zone = ('coz011', 0.0024758346878924805) + +[fips0808675] +centroid = (0.6975819918965237, -1.8290196745830498) +description = Brighton city, CO +station = ('kden', 0.002472900372256173) +zone = ('coz040', 0.003543345614833725) + +[fips08087] +centroid = (0.70271064190350907, -1.8117755423206654) +description = Morgan County, CO +station = ('kstk', 0.0094675182449337428) +zone = ('coz044', 3.6568439325958587e-05) + +[fips0808790418] +centroid = (0.70241946862439886, -1.8083076080035378) +description = Brush CCD, CO +station = ('kako', 0.0054005381454996565) +zone = ('coz044', 0.0026991599288743455) + +[fips0808791368] +centroid = (0.70326958359646019, -1.8119966406303083) +description = Fort Morgan CCD, CO +station = ('kstk', 0.0092526534014446982) +zone = ('coz044', 0.0005685857309836094) + +[fips0808793781] +centroid = (0.7054581392119984, -1.8153746381310807) +description = Weldona CCD, CO +station = ('kstk', 0.010532268330403893) +zone = ('coz044', 0.0038528683707793692) + +[fips0808793876] +centroid = (0.70124552526292239, -1.8156736130319471) +description = Wiggins CCD, CO +station = ('kgxy', 0.0091754256853245307) +zone = ('coz044', 0.0032878389224539417) + +[fips08089] +centroid = (0.66120350088526014, -1.8102774913170938) +description = Otero County, CO +station = ('klhx', 0.0040375357532582406) +zone = ('coz093', 0.00033026423899870048) + +[fips0808990608] +centroid = (0.66525570162278547, -1.8066562123718857) +description = Cheraw CCD, CO +station = ('klhx', 0.0011586019951807475) +zone = ('coz093', 0.0046548791145552522) + +[fips0808991406] +centroid = (0.66528348726447728, -1.8153379687634963) +description = Fowler CCD, CO +station = ('klhx', 0.0068964506910049088) +zone = ('coz089', 0.0047845322004949542) + +[fips0808992090] +centroid = (0.66277984735907647, -1.8080418118117516) +description = La Junta CCD, CO +station = ('klhx', 0.0016862723573363946) +zone = ('coz093', 0.0021088713697543777) + +[fips0808992413] +centroid = (0.66485539290554807, -1.8128483438519889) +description = Manzanola CCD, CO +station = ('klhx', 0.0048939675400398522) +zone = ('coz093', 0.0039317188088330715) + +[fips0808993116] +centroid = (0.66388746820897715, -1.8103609180553391) +description = Rocky Ford CCD, CO +station = ('klhx', 0.0028855377731278032) +zone = ('coz093', 0.0023642811884692608) + +[fips0808993629] +centroid = (0.66043672538498155, -1.8108276714571998) +description = Timpas CCD, CO +station = ('klhx', 0.0048953712585405639) +zone = ('coz093', 0.0011999041377164965) + +[fips08091] +centroid = (0.66585358161134867, -1.8808912962846343) +description = Ouray County, CO +station = ('ktex', 0.0039456293664333819) +zone = ('coz018', 0.0033803744375070694) + +[fips0809115] +centroid = (0.67044280270642009, -1.8359303232096138) +description = Brookside town, CO +station = ('kfcs', 0.0076515339605303786) +zone = ('coz083', 0.0011727303115524272) + +[fips0809192793] +centroid = (0.66585358161134867, -1.8808912962846343) +description = Ouray CCD, CO +station = ('ktex', 0.0039456293664333819) +zone = ('coz018', 0.0033803744375070694) + +[fips0809280] +centroid = (0.69731808066032963, -1.8335054674666482) +description = Broomfield city, CO +station = ('kbjc', 0.0010755010198208747) +zone = ('coz039', 0.0013953796300514775) + +[fips08093] +centroid = (0.68275384910450498, -1.8451210350643983) +description = Park County, CO +station = ('k4bm', 0.0030022511185564594) +zone = ('coz037', 0.0024187164530467668) + +[fips0809391254] +centroid = (0.68528475105282205, -1.8461624206691858) +description = Fairplay CCD, CO +station = ('k4bm', 0.0051536889084668287) +zone = ('coz037', 0.0050729724380221284) + +[fips0809392128] +centroid = (0.67860567271141259, -1.8433426841829563) +description = Lake George CCD, CO +station = ('k4bm', 0.0032548607298914169) +zone = ('coz037', 0.0019680250311224297) + +[fips08095] +centroid = (0.70851138329885233, -1.7862590555493112) +description = Phillips County, CO +station = ('kheq', 0.0012805542566572809) +zone = ('coz051', 0.00016488005663946063) + +[fips0809555] +centroid = (0.70264508733680409, -1.8087256841725605) +description = Brush city, CO +station = ('kako', 0.0057679661077473885) +zone = ('coz044', 0.0023645355519026413) + +[fips0809591710] +centroid = (0.70846144942895273, -1.789358149435615) +description = Haxtun CCD, CO +station = ('kheq', 0.0035261929446975871) +zone = ('coz051', 0.0021893222367543605) + +[fips0809591767] +centroid = (0.70843361142738337, -1.7840774637974883) +description = Holyoke CCD, CO +station = ('kheq', 0.0007473345276764982) +zone = ('coz051', 0.0018220018106343565) + +[fips08097] +centroid = (0.68447507535952945, -1.8660352282245838) +description = Pitkin County, CO +station = ('kase', 0.00072105494510100836) +zone = ('coz010', 0.0040390663954573414) + +[fips0809790171] +centroid = (0.68449739812066235, -1.8619979675054554) +description = Aspen CCD, CO +station = ('kase', 0.0024742743339635481) +zone = ('coz010', 0.004166589996286693) + +[fips0809793344] +centroid = (0.6857126010656559, -1.8690834806697767) +description = Snowmass Village CCD, CO +station = ('kase', 0.0031752359245816346) +zone = ('coz010', 0.0045200125141924017) + +[fips08099] +centroid = (0.66249523651795372, -1.7870803376821296) +description = Prowers County, CO +station = ('klaa', 0.0044290496375105027) +zone = ('coz098', 5.4338068609680295e-05) + +[fips0809991558] +centroid = (0.66598688985961596, -1.7863135970884361) +description = Granada CCD, CO +station = ('klaa', 0.004871363036213181) +zone = ('coz098', 0.0035974040956171646) + +[fips0809991748] +centroid = (0.66575996215027167, -1.7825458850189857) +description = Holly CCD, CO +station = ('klaa', 0.0076900801541529406) +zone = ('coz098', 0.0048849877678886445) + +[fips0809992147] +centroid = (0.66561319741347147, -1.7910408213674627) +description = Lamar CCD, CO +station = ('klaa', 0.0015093804896050105) +zone = ('coz098', 0.0044361253369984439) + +[fips0809993667] +centroid = (0.66031776374316564, -1.7867860228103658) +description = Two Butte Creek CCD, CO +station = ('klaa', 0.0058774819301689327) +zone = ('coz098', 0.0021398576857115806) + +[fips08101] +centroid = (0.66620365975271378, -1.8236926679065752) +description = Pueblo County, CO +station = ('kpub', 0.0019714318396442934) +zone = ('coz086', 0.00020308992651977295) + +[fips0810105] +centroid = (0.67769968974999484, -1.8524840032199092) +description = Buena Vista town, CO +station = ('kaej', 0.00036949026595619282) +zone = ('coz063', 0.0015554504856611711) + +[fips0810190209] +centroid = (0.66703717664358864, -1.8215288436065378) +description = Avondale CCD, CO +station = ('kpub', 0.002158997245093872) +zone = ('coz086', 0.0017801686474007601) + +[fips0810190722] +centroid = (0.66313969934425265, -1.8291346568741713) +description = Colorado City-Rye CCD, CO +station = ('kpub', 0.0065159488480618141) +zone = ('coz087', 0.0053826829091226953) + +[fips0810191805] +centroid = (0.66380667691790229, -1.8210091718217565) +description = Huerfano Valley CCD, CO +station = ('kpub', 0.004908904430733968) +zone = ('coz086', 0.0033236177527184215) + +[fips0810192660] +centroid = (0.66982048810832906, -1.8202233373260461) +description = Northeast Pueblo CCD, CO +station = ('kpub', 0.003301860404340805) +zone = ('coz086', 0.0043467274378124364) + +[fips0810192983] +centroid = (0.66652902403187053, -1.8290125012798242) +description = Pueblo CCD, CO +station = ('kpub', 0.0043606153174841926) +zone = ('coz086', 0.0042202619266242447) + +[fips0810193002] +centroid = (0.66995875309167208, -1.8290331834314604) +description = Pueblo West CCD, CO +station = ('kpub', 0.0044280203647059134) +zone = ('coz086', 0.005524907763925206) + +[fips0810193154] +centroid = (0.66701581381354424, -1.8248771356034414) +description = St. Charles Mesa CCD, CO +station = ('kpub', 0.0013997683443108722) +zone = ('coz086', 0.0011452795380907787) + +[fips08103] +centroid = (0.69765358530244048, -1.8884582061632407) +description = Rio Blanco County, CO +station = ('keeo', 0.0044521446772356858) +zone = ('coz003', 0.0076204748007539002) + +[fips0810392451] +centroid = (0.69766784464242926, -1.8834247638669517) +description = Meeker CCD, CO +station = ('keeo', 0.0013914459648988436) +zone = ('coz002', 0.0075254728610044492) + +[fips0810393040] +centroid = (0.6976103709501611, -1.8969019345514642) +description = Rangely CCD, CO +station = ('keeo', 0.010799986370343819) +zone = ('coz003', 0.0076370773546577632) + +[fips08105] +centroid = (0.65424998697226711, -1.857959083630123) +description = Rio Grande County, CO +station = ('kcpw', 0.0048449699510918175) +zone = ('coz067', 0.0012546519787340082) + +[fips0810590969] +centroid = (0.65630284323846289, -1.8587046533799898) +description = Del Norte CCD, CO +station = ('kcpw', 0.0049782959321350347) +zone = ('coz067', 0.0024280170049885232) + +[fips0810592527] +centroid = (0.65458187878282637, -1.8530078812481878) +description = Monte Vista CCD, CO +station = ('kals', 0.0043767756743355434) +zone = ('coz070', 0.0039541849999396167) + +[fips0810593230] +centroid = (0.65750301889859675, -1.8523291925152574) +description = Sargent CCD, CO +station = ('kals', 0.005542083896712101) +zone = ('coz070', 0.0038130412522099926) + +[fips0810600] +centroid = (0.6859933547291317, -1.7849733238492447) +description = Burlington city, CO +station = ('kitr', 0.00096509846480838336) +zone = ('coz091', 0.0044764517672338539) + +[fips08107] +centroid = (0.70656443361166754, -1.8672455442476716) +description = Routt County, CO +station = ('ksbs', 0.0016794166800846498) +zone = ('coz004', 0.0014881517808085049) + +[fips0810791729] +centroid = (0.7088772043100704, -1.8709578072067861) +description = Hayden CCD, CO +station = ('khdn', 0.0023229934683226634) +zone = ('coz004', 0.0033357429888711781) + +[fips0810792717] +centroid = (0.70301200790545082, -1.8650936754530105) +description = Oak Creek CCD, CO +station = ('ksbs', 0.0041376931122947781) +zone = ('coz005', 0.0023425488575338602) + +[fips0810793496] +centroid = (0.71002687014165144, -1.8634171819867147) +description = Steamboat Springs CCD, CO +station = ('ksbs', 0.0031721504689515801) +zone = ('coz031', 0.0023573873867416646) + +[fips0810793933] +centroid = (0.69904864442685211, -1.8642987652451894) +description = Yampa CCD, CO +station = ('k20v', 0.0059792738216991673) +zone = ('coz005', 0.0062043163237485328) + +[fips08109] +centroid = (0.66381768994548229, -1.8543542980463463) +description = Saguache County, CO +station = ('k04v', 0.0015395017978025753) +zone = ('coz065', 0.0018320019424477405) + +[fips0810985] +centroid = (0.69306038485667443, -1.8188573204803875) +description = Byers CDP, CO +station = ('kftg', 0.0047046623059367612) +zone = ('coz045', 0.001947167074107423) + +[fips0810990551] +centroid = (0.66074339718784947, -1.8563146169556013) +description = Center CCD, CO +station = ('k04v', 0.0049315902582551903) +zone = ('coz065', 0.0043570220583301275) + +[fips0810990684] +centroid = (0.6672027036698478, -1.8625299264081707) +description = Cochetopa CCD, CO +station = ('kguc', 0.0061100265522919936) +zone = ('coz064', 0.0013761945941433049) + +[fips0810993135] +centroid = (0.66429720170417517, -1.8516696151376362) +description = Saguache CCD, CO +station = ('k04v', 0.0012139061010859999) +zone = ('coz069', 0.0026745557395974591) + +[fips08111] +centroid = (0.65940415369291672, -1.8792004911184723) +description = San Juan County, CO +station = ('ktex', 0.0044589806869717204) +zone = ('coz019', 0.0045484864045687691) + +[fips0811193306] +centroid = (0.65940415369291672, -1.8792004911184723) +description = Silverton CCD, CO +station = ('ktex', 0.0044589806869717204) +zone = ('coz019', 0.0045484864045687691) + +[fips0811260] +centroid = (0.68127906333986243, -1.8203639235972942) +description = Calhan town, CO +station = ('kfly', 0.0039582852887699565) +zone = ('coz084', 0.0020782601254255646) + +[fips08113] +centroid = (0.66338872292192719, -1.8924138378332531) +description = San Miguel County, CO +station = ('ktex', 0.0072012708178050017) +zone = ('coz020', 0.0050658071599177512) + +[fips0811392679] +centroid = (0.66417499374995059, -1.8905717998874059) +description = Norwood CCD, CO +station = ('ktex', 0.0059469629270314725) +zone = ('coz020', 0.0058710003130240584) + +[fips0811393591] +centroid = (0.66243671562813433, -1.8843068707242021) +description = Telluride CCD, CO +station = ('ktex', 0.00074635070967529217) +zone = ('coz018', 0.005955009538758195) + +[fips0811393844] +centroid = (0.66330812361707003, -1.8984016610711179) +description = West San Miguel CCD, CO +station = ('k4bl', 0.011749485636225564) +zone = ('coz020', 0.0034461318795948911) + +[fips08115] +centroid = (0.71334343205275386, -1.7864380041575181) +description = Sedgwick County, CO +station = ('kheq', 0.0055822862273034388) +zone = ('coz050', 8.7524489203014792e-05) + +[fips0811591900] +centroid = (0.71488340586495847, -1.7887556268712412) +description = Julesburg CCD, CO +station = ('ksny', 0.0069637460000084878) +zone = ('coz050', 0.0023201584467744457) + +[fips0811593450] +centroid = (0.71324850359473779, -1.7857360850922435) +description = South Sedgwick CCD, CO +station = ('kheq', 0.0053925269294389155) +zone = ('coz050', 0.00051242035567228977) + +[fips0811645] +centroid = (0.64759939240425024, -1.7903377678381744) +description = Campo town, CO +station = ('kspd', 0.0031616754335745396) +zone = ('coz099', 0.0037521519193991029) + +[fips08117] +centroid = (0.69151730435840131, -1.8524497947665701) +description = Summit County, CO +station = ('kccu', 0.0026897859232001501) +zone = ('coz034', 0.0038704923664825901) + +[fips0811790380] +centroid = (0.68952359730055557, -1.8506753883292375) +description = Breckenridge CCD, CO +station = ('kccu', 0.0016885031952750006) +zone = ('coz034', 0.0030208852303753625) + +[fips0811793287] +centroid = (0.69396968394367098, -1.8530508687076643) +description = Silverthorne CCD, CO +station = ('kccu', 0.0051450010827803058) +zone = ('coz034', 0.0051155348890472175) + +[fips0811810] +centroid = (0.67093725448351016, -1.8364510421919464) +description = Cañon City city, CO +station = ('kfcs', 0.0076625155816641725) +zone = ('coz083', 0.0014509100821654913) + +[fips08119] +centroid = (0.67844428211548069, -1.8357818480501467) +description = Teller County, CO +station = ('kaff', 0.0052359844178564994) +zone = ('coz081', 0.00094532836131224374) + +[fips0811975] +centroid = (0.65069166205317863, -1.8518806603507874) +description = Capulin CDP, CO +station = ('kals', 0.0042325018982184654) +zone = ('coz071', 0.0049888949251198494) + +[fips0811990912] +centroid = (0.67609531328839156, -1.8350760892605178) +description = Cripple Creek CCD, CO +station = ('kfcs', 0.0051541891811759544) +zone = ('coz082', 0.0018864069957707649) + +[fips0811991026] +centroid = (0.68056424629141565, -1.8359330633765394) +description = Divide CCD, CO +station = ('kaff', 0.0051031925148541744) +zone = ('coz081', 0.0023897094398458909) + +[fips0812045] +centroid = (0.68756575675883846, -1.8712455945471473) +description = Carbondale town, CO +station = ('k5sm', 0.0022855406002521175) +zone = ('coz008', 0.0047855113362749143) + +[fips08121] +centroid = (0.69752804376934452, -1.801347426932802) +description = Washington County, CO +station = ('kako', 0.0035138053235390264) +zone = ('coz049', 0.0001478153634675933) + +[fips0812190057] +centroid = (0.70153462160022273, -1.8023328398284781) +description = Akron CCD, CO +station = ('kako', 0.00082338589111037054) +zone = ('coz049', 0.0040035946015858958) + +[fips0812190798] +centroid = (0.69389727023300574, -1.7976971406154263) +description = Cope CCD, CO +station = ('kako', 0.0077066346512250361) +zone = ('coz049', 0.0045977477725649913) + +[fips0812192774] +centroid = (0.70188524079365588, -1.7965948255664517) +description = Otis CCD, CO +station = ('kako', 0.0038192281817833293) +zone = ('coz049', 0.0055289634713835542) + +[fips0812193905] +centroid = (0.6943066895689386, -1.8061671187555994) +description = Woodlin CCD, CO +station = ('kako', 0.0076353411217030456) +zone = ('coz049', 0.0050528412667284403) + +[fips08123] +centroid = (0.70783213606056117, -1.8218383602960866) +description = Weld County, CO +station = ('kgxy', 0.0039434308392053696) +zone = ('coz043', 0.0057564368875637336) + +[fips0812325] +centroid = (0.67977342015404452, -1.832557212630747) +description = Cascade-Chipita Park CDP, CO +station = ('kaff', 0.0024794017286027723) +zone = ('coz081', 0.002066514829955182) + +[fips0812387] +centroid = (0.68842013033427474, -1.830771077580841) +description = Castle Pines CDP, CO +station = ('kapa', 0.0022339772925715827) +zone = ('coz036', 0.0050700194668016558) + +[fips0812390] +centroid = (0.68875863694269912, -1.8303246398114734) +description = Castle Pines North city, CO +station = ('kapa', 0.0018296505078362708) +zone = ('coz040', 0.0053557599850381958) + +[fips0812390190] +centroid = (0.71194311948729372, -1.8279982729981978) +description = Ault CCD, CO +station = ('kcys', 0.006315400460729652) +zone = ('coz038', 0.0018916476767647638) + +[fips0812391216] +centroid = (0.6997457987432687, -1.8320932866622746) +description = Erie-Frederick CCD, CO +station = ('keik', 0.0016456278930203163) +zone = ('coz039', 0.0033759747546131544) + +[fips0812391349] +centroid = (0.69922867513919529, -1.8294917163325441) +description = Fort Lupton CCD, CO +station = ('keik', 0.0031349714561133709) +zone = ('coz043', 0.0046969034469651252) + +[fips0812391634] +centroid = (0.70587837958929367, -1.8272625643586047) +description = Greeley CCD, CO +station = ('kgxy', 0.00083213524186066573) +zone = ('coz043', 0.0033749908548332905) + +[fips0812391653] +centroid = (0.71232456119531706, -1.8201266635387781) +description = Grover CCD, CO +station = ('kgxy', 0.0080731746918997465) +zone = ('coz042', 0.0039383542971880015) + +[fips0812391881] +centroid = (0.70333208383697421, -1.8314252793443662) +description = Johnstown-Milliken CCD, CO +station = ('kfnl', 0.0028776698757356188) +zone = ('coz043', 0.0045666178929829196) + +[fips0812391938] +centroid = (0.70059757177811943, -1.8221622934052566) +description = Keenesburg-Hudson CCD, CO +station = ('kgxy', 0.0059539981983678207) +zone = ('coz043', 0.0033505891992896067) + +[fips0812391957] +centroid = (0.70609647593262292, -1.8221558182337316) +description = Kersey-Gill CCD, CO +station = ('kgxy', 0.0031009603177536587) +zone = ('coz043', 0.0041673661999470065) + +[fips0812392166] +centroid = (0.70332899460419818, -1.8277996021694431) +description = La Salle-Gilcrest CCD, CO +station = ('kgxy', 0.002662620458380561) +zone = ('coz043', 0.0018490525702898992) + +[fips0812392926] +centroid = (0.70170500064180241, -1.8281503435359241) +description = Platteville CCD, CO +station = ('kgxy', 0.0042589240042878096) +zone = ('coz043', 0.002307275508649803) + +[fips0812393059] +centroid = (0.71095559474322279, -1.8132133794650436) +description = Raymer CCD, CO +station = ('kibm', 0.0083618070103941358) +zone = ('coz042', 0.0015011018231902025) + +[fips0812393895] +centroid = (0.70669919048321417, -1.8304271255451505) +description = Windsor CCD, CO +station = ('kfnl', 0.0020024552571012298) +zone = ('coz038', 0.0039938804842527698) + +[fips0812415] +centroid = (0.68724212035564114, -1.8300377949489082) +description = Castle Rock town, CO +station = ('kapa', 0.0033268102440890228) +zone = ('coz036', 0.0058977094326294055) + +[fips0812450] +centroid = (0.6646847171579956, -1.868037784101737) +description = Cathedral CDP, CO +station = ('kguc', 0.0079612444887756911) +zone = ('coz066', 0.0042421807117037982) + +[fips0812460] +centroid = (0.68772527985247078, -1.8700323463709161) +description = Catherine CDP, CO +station = ('k5sm', 0.0031808444313034794) +zone = ('coz008', 0.0042224655252566402) + +[fips0812470] +centroid = (0.68882270797953971, -1.8720387070658386) +description = Cattle Creek CDP, CO +station = ('k5sm', 0.001759886249078628) +zone = ('coz008', 0.0041990696321899668) + +[fips08125] +centroid = (0.6981427138253119, -1.7876124536644777) +description = Yuma County, CO +station = ('k2v5', 0.0031036080123688081) +zone = ('coz090', 4.5337742257430212e-05) + +[fips0812591850] +centroid = (0.6927990741610659, -1.7864802585787087) +description = Idalia-Joes CCD, CO +station = ('k2v5', 0.007281816482408031) +zone = ('coz090', 0.0054565365087763228) + +[fips0812593914] +centroid = (0.70060420402927703, -1.7853133838007029) +description = Wray CCD, CO +station = ('k2v5', 0.0010908194930570282) +zone = ('coz090', 0.0030064653997015811) + +[fips0812593952] +centroid = (0.69932058417760534, -1.7913011546786901) +description = Yuma CCD, CO +station = ('k2v5', 0.0054233870561594955) +zone = ('coz090', 0.0030245401271104455) + +[fips0812635] +centroid = (0.67883075037174978, -1.8836552869545551) +description = Cedaredge town, CO +station = ('kajz', 0.0026570440652476921) +zone = ('coz011', 0.0038515423346919303) + +[fips0812815] +centroid = (0.69098576433470638, -1.8303113927624508) +description = Centennial city, CO +station = ('kapa', 0.00049006172793663628) +zone = ('coz040', 0.0031776486212951056) + +[fips0812855] +centroid = (0.65888551165239406, -1.8519723250431019) +description = Center town, CO +station = ('k04v', 0.0060897861370695265) +zone = ('coz069', 0.0030430551416634624) + +[fips0812910] +centroid = (0.69456756393223418, -1.8415812804485512) +description = Central City city, CO +station = ('kbdu', 0.0055900997943570544) +zone = ('coz034', 0.0056103083380377788) + +[fips0812945] +centroid = (0.69077334031144622, -1.8754419245743026) +description = Chacra CDP, CO +station = ('k5sm', 0.0028559423033269271) +zone = ('coz013', 0.006953829470978245) + +[fips0813460] +centroid = (0.66511188649242114, -1.8066064704882039) +description = Cheraw town, CO +station = ('klhx', 0.0010171683352608939) +zone = ('coz093', 0.0045647468026361162) + +[fips0813590] +centroid = (0.69131519523102025, -1.8302295368205324) +description = Cherry Creek CDP, CO +station = ('kapa', 0.0007713968738349491) +zone = ('coz040', 0.0028437306137048027) + +[fips0813845] +centroid = (0.69180345108926566, -1.8316788931379733) +description = Cherry Hills Village city, CO +station = ('kapa', 0.0018007971137643537) +zone = ('coz040', 0.0029523980956028483) + +[fips0814175] +centroid = (0.67752288789676773, -1.7863799196000119) +description = Cheyenne Wells town, CO +station = ('kitr', 0.007576303135945075) +zone = ('coz092', 0.0034213763580548547) + +[fips0814587] +centroid = (0.67821957097428642, -1.8273522393755721) +description = Cimarron Hills CDP, CO +station = ('kcos', 0.00077652876976203229) +zone = ('coz085', 0.0036974527301288041) + +[fips0814765] +centroid = (0.66066529370382265, -1.8662331660150524) +description = City of Creede town, CO +station = ('kcpw', 0.0072314412511350267) +zone = ('coz066', 0.0039999026462575939) + +[fips0815165] +centroid = (0.68201501632555084, -1.8929896219534863) +description = Clifton CDP, CO +station = ('kgjt', 0.0013996588794275683) +zone = ('coz006', 0.0032791770039018852) + +[fips0815302] +centroid = (0.6964526416974357, -1.8390758079474354) +description = Coal Creek CDP, CO +station = ('kbdu', 0.0029022835786405494) +zone = ('coz039', 0.003046972443591465) + +[fips0815330] +centroid = (0.66954387087518041, -1.8350702773141088) +description = Coal Creek town, CO +station = ('kfcs', 0.0078117005168778873) +zone = ('coz083', 0.0014824139048438807) + +[fips0815440] +centroid = (0.6694435493497759, -1.8468284034051616) +description = Coaldale CDP, CO +station = ('kank', 0.0044124801824893534) +zone = ('coz077', 0.003748124625846643) + +[fips0815550] +centroid = (0.64828898944500568, -1.8259912141715742) +description = Cokedale town, CO +station = ('ktad', 0.003378679722423793) +zone = ('coz088', 0.0048395477003639695) + +[fips0815605] +centroid = (0.6848655753263706, -1.8843369078406289) +description = Collbran town, CO +station = ('kril', 0.0057500242994635254) +zone = ('coz009', 0.0023809360222942742) + +[fips0815825] +centroid = (0.66894124359105178, -1.8811037552144796) +description = Colona CDP, CO +station = ('kmtj', 0.0034332934880364672) +zone = ('coz018', 0.005643932380437219) + +[fips0815935] +centroid = (0.66211946712999925, -1.8299009436822593) +description = Colorado City CDP, CO +station = ('kpub', 0.0076900112606033558) +zone = ('coz087', 0.0043099008896202023) + +[fips0816000] +centroid = (0.6783615709622286, -1.8284199969053572) +description = Colorado Springs city, CO +station = ('kcos', 0.0010670883016796141) +zone = ('coz085', 0.0044217665293038132) + +[fips0816110] +centroid = (0.69095117190893185, -1.8338031333705758) +description = Columbine CDP, CO +station = ('kapa', 0.0029731975057589628) +zone = ('coz036', 0.003242519111835469) + +[fips0816385] +centroid = (0.6911430359536036, -1.8331592988628076) +description = Columbine Valley town, CO +station = ('kapa', 0.0025184304839454951) +zone = ('coz036', 0.0037625103188468167) + +[fips0816465] +centroid = (0.69117549907769071, -1.8210203419289692) +description = Comanche Creek CDP, CO +station = ('kftg', 0.0042753177830721252) +zone = ('coz045', 0.0044550598088888031) + +[fips0816495] +centroid = (0.69609792098026047, -1.8289635622475982) +description = Commerce City city, CO +station = ('kden', 0.0017027896257201111) +zone = ('coz040', 0.0020636628870545704) + +[fips0816715] +centroid = (0.64729474518331465, -1.8503281376212606) +description = Conejos CDP, CO +station = ('kals', 0.006386414963240614) +zone = ('coz071', 0.0043446117489431965) + +[fips0817150] +centroid = (0.68900190093384195, -1.85355907367926) +description = Copper Mountain CDP, CO +station = ('kccu', 0.00070540479191111814) +zone = ('coz058', 0.0038855839113380035) + +[fips0817375] +centroid = (0.65187668825540535, -1.8950206790573245) +description = Cortez city, CO +station = ('kcez', 0.0011717732013600587) +zone = ('coz021', 0.0021653849112249711) + +[fips0817485] +centroid = (0.6697291724818647, -1.8445603829487802) +description = Cotopaxi CDP, CO +station = ('kank', 0.0056885316643736118) +zone = ('coz077', 0.0019941987906912169) + +[fips0817760] +centroid = (0.70715564644248818, -1.8772006405016595) +description = Craig city, CO +station = ('kcag', 0.0005969263090122392) +zone = ('coz002', 0.0051397174041516091) + +[fips0817925] +centroid = (0.67553288093693642, -1.8781498378153567) +description = Crawford town, CO +station = ('kmtj', 0.0053351540474853541) +zone = ('coz011', 0.0042597644721444243) + +[fips0818310] +centroid = (0.6783699659959308, -1.8671055164817842) +description = Crested Butte town, CO +station = ('kguc', 0.005867024229969397) +zone = ('coz012', 0.0012193020169871469) + +[fips0818420] +centroid = (0.66314776276539678, -1.8447512347024857) +description = Crestone town, CO +station = ('k04v', 0.0067277122856482683) +zone = ('coz073', 0.0011415792553876544) + +[fips0818530] +centroid = (0.67624994946011829, -1.8358109426887774) +description = Cripple Creek city, CO +station = ('kfcs', 0.0057427280861425296) +zone = ('coz082', 0.0022316667741567914) + +[fips0818585] +centroid = (0.6988981795920377, -1.8390946924099423) +description = Crisman CDP, CO +station = ('kbdu', 0.0019178173373523184) +zone = ('coz039', 0.0032376177416684848) + +[fips0818640] +centroid = (0.71311975065581823, -1.7942227660333587) +description = Crook town, CO +station = ('ksny', 0.0048452025670590367) +zone = ('coz048', 0.0047025088804836176) + +[fips0818750] +centroid = (0.66660243258020935, -1.8126944930784257) +description = Crowley town, CO +station = ('klhx', 0.0053350963297668945) +zone = ('coz089', 0.0025393011906506098) + +[fips0819080] +centroid = (0.69921649274101638, -1.8317163129971361) +description = Dacono city, CO +station = ('keik', 0.0015298757726245097) +zone = ('coz039', 0.0032792099456084951) + +[fips0819150] +centroid = (0.69148686581624652, -1.834933268967827) +description = Dakota Ridge CDP, CO +station = ('kapa', 0.0039275533693948787) +zone = ('coz036', 0.0029750851866575346) + +[fips0819355] +centroid = (0.6854908569841901, -1.8883311461936956) +description = De Beque town, CO +station = ('kgjt', 0.0052261337130115448) +zone = ('coz007', 0.0041165426434015048) + +[fips0819630] +centroid = (0.69142775151448144, -1.8158930358255079) +description = Deer Trail town, CO +station = ('kftg', 0.0074089200914189812) +zone = ('coz045', 0.0030474405781520256) + +[fips0819795] +centroid = (0.65761295718817991, -1.8562262160289877) +description = Del Norte town, CO +station = ('k04v', 0.0077419246955205065) +zone = ('coz067', 0.0044811748259883533) + +[fips0819850] +centroid = (0.67648981005921982, -1.8863142262567985) +description = Delta city, CO +station = ('kajz', 0.00049990545525899232) +zone = ('coz011', 0.0026257010386718511) + +[fips0820000] +centroid = (0.69397518173081474, -1.8305122277994776) +description = Denver city, CO +station = ('kbkf', 0.001877544807878499) +zone = ('coz040', 0.0010300947656663774) + +[fips0820275] +centroid = (0.69535297954892417, -1.8311340711586708) +description = Derby CDP, CO +station = ('kbkf', 0.0031167255601901095) +zone = ('coz040', 0.0019969212336301795) + +[fips0820440] +centroid = (0.69146796390044729, -1.85074528876578) +description = Dillon town, CO +station = ('kccu', 0.0030249584029200011) +zone = ('coz034', 0.0025579114056336165) + +[fips0820495] +centroid = (0.70233012521998928, -1.9025588084565654) +description = Dinosaur town, CO +station = ('kvel', 0.007352631465702821) +zone = ('coz001', 0.0054337605397321229) + +[fips0820605] +centroid = (0.67971858190894674, -1.8354222578643584) +description = Divide CDP, CO +station = ('kaff', 0.0047014685668708995) +zone = ('coz081', 0.0014557946718901503) + +[fips0820770] +centroid = (0.65404457917259984, -1.8936790270080237) +description = Dolores town, CO +station = ('kcez', 0.0035567153844154285) +zone = ('coz021', 0.0035531338491477209) + +[fips0821155] +centroid = (0.69193464748913813, -1.8682703666778577) +description = Dotsero CDP, CO +station = ('kege', 0.0017135792654257946) +zone = ('coz008', 0.00034769265000002497) + +[fips0821265] +centroid = (0.65915270410758187, -1.900773528617993) +description = Dove Creek town, CO +station = ('k4bl', 0.0081700173051979796) +zone = ('coz021', 0.0071714072088664609) + +[fips0821330] +centroid = (0.69071042119191184, -1.8295890707982203) +description = Dove Valley CDP, CO +station = ('kapa', 0.00033145616200625736) +zone = ('coz040', 0.0033454545215855476) + +[fips0821390] +centroid = (0.69405832921637978, -1.8431850809515011) +description = Downieville-Lawson-Dumont CDP, CO +station = ('kbdu', 0.0068247429461450295) +zone = ('coz034', 0.0043284990588421295) + +[fips0822035] +centroid = (0.65058322474675223, -1.8826443747985073) +description = Durango city, CO +station = ('kdro', 0.002603533840213541) +zone = ('coz022', 0.0022186430548345776) + +[fips0822145] +centroid = (0.67162620575244236, -1.7938454956622474) +description = Eads town, CO +station = ('klaa', 0.007357182234049007) +zone = ('coz095', 0.0043819659300751018) + +[fips0822200] +centroid = (0.69175068978597787, -1.8643120821073824) +description = Eagle town, CO +station = ('kege', 0.001364089985743786) +zone = ('coz008', 0.0028512831061811945) + +[fips0822575] +centroid = (0.69338112401331353, -1.8353387264063579) +description = East Pleasant View CDP, CO +station = ('kbjc', 0.0033405371284498091) +zone = ('coz039', 0.0040629469491833088) + +[fips0822860] +centroid = (0.7072982049357911, -1.8275919778016259) +description = Eaton town, CO +station = ('kgxy', 0.0019230557962550232) +zone = ('coz038', 0.0037786657085877176) + +[fips0823025] +centroid = (0.7000946202475723, -1.788762555828372) +description = Eckley town, CO +station = ('k2v5', 0.0034582130625736333) +zone = ('coz090', 0.0020960598946534975) + +[fips0823135] +centroid = (0.69378296862029265, -1.8336884128788422) +description = Edgewater city, CO +station = ('kbjc', 0.0029836001790154031) +zone = ('coz039', 0.0038690043106793166) + +[fips0823300] +centroid = (0.69135675152051024, -1.8608648473951832) +description = Edwards CDP, CO +station = ('kege', 0.0040470197038491055) +zone = ('coz010', 0.0040477003861201545) + +[fips0823520] +centroid = (0.68449816606553326, -1.8245749318434583) +description = Elbert CDP, CO +station = ('kmnh', 0.0012641447233562844) +zone = ('coz041', 0.0016040569700906727) + +[fips0823575] +centroid = (0.69740321782124193, -1.8428058209050429) +description = Eldora CDP, CO +station = ('kbdu', 0.0049090595474291544) +zone = ('coz034', 0.0071291638664358744) + +[fips0823630] +centroid = (0.69707169252982559, -1.8369429981482062) +description = Eldorado Springs CDP, CO +station = ('kbdu', 0.0016040333922793873) +zone = ('coz039', 0.0012998755056900079) + +[fips0823740] +centroid = (0.68697923886370571, -1.8257221542140867) +description = Elizabeth town, CO +station = ('kmnh', 0.0025469492253701611) +zone = ('coz041', 0.0016091974410648972) + +[fips0823795] +centroid = (0.68778901927675351, -1.8691566274187279) +description = El Jebel CDP, CO +station = ('k5sm', 0.0038475207517580301) +zone = ('coz008', 0.0039602328597155134) + +[fips0824235] +centroid = (0.67763163936245951, -1.821824310395608) +description = Ellicott CDP, CO +station = ('kabh', 0.0014852255209023156) +zone = ('coz085', 0.0025644386778480781) + +[fips0824290] +centroid = (0.65007405984406796, -1.8230493395442904) +description = El Moro CDP, CO +station = ('ktad', 0.0004458434665193536) +zone = ('coz088', 0.0020470232593252434) + +[fips0824620] +centroid = (0.69393980390687693, -1.844513555764949) +description = Empire town, CO +station = ('kbdu', 0.0076814929236044133) +zone = ('coz034', 0.0035255890043165762) + +[fips0824785] +centroid = (0.6919685243299194, -1.8324932463136614) +description = Englewood city, CO +station = ('kapa', 0.002390779563994536) +zone = ('coz040', 0.0032880279250058356) + +[fips0824950] +centroid = (0.69881356602990097, -1.8333120849855271) +description = Erie town, CO +station = ('keik', 0.00035366354005553604) +zone = ('coz039', 0.0020585961364858012) + +[fips0825115] +centroid = (0.70471363411297527, -1.8417676641593714) +description = Estes Park town, CO +station = ('klmo', 0.0061687493257506247) +zone = ('coz035', 0.0041272227148648538) + +[fips0825280] +centroid = (0.704262204701947, -1.8281246522893346) +description = Evans city, CO +station = ('kgxy', 0.0020517360241034989) +zone = ('coz043', 0.0024968688473722632) + +[fips0825390] +centroid = (0.6917559257737339, -1.8385065688118978) +description = Evergreen CDP, CO +station = ('kbjc', 0.0057521465839352913) +zone = ('coz036', 0.0027995634277414292) + +[fips0825550] +centroid = (0.69451134687702742, -1.8355829677818818) +description = Fairmount CDP, CO +station = ('kbjc', 0.0022856511571160902) +zone = ('coz039', 0.0029397126024282216) + +[fips0825610] +centroid = (0.68458461222338451, -1.8499448284109379) +description = Fairplay town, CO +station = ('klxv', 0.0043651434941336361) +zone = ('coz058', 0.0030226874225361949) + +[fips0826270] +centroid = (0.69576739052651759, -1.8328777423478759) +description = Federal Heights city, CO +station = ('kbjc', 0.0016246260958700169) +zone = ('coz039', 0.0025131223221822908) + +[fips0826600] +centroid = (0.70058809464028116, -1.8319136748289515) +description = Firestone town, CO +station = ('keik', 0.002419897834657929) +zone = ('coz039', 0.0040838245137517631) + +[fips0826765] +centroid = (0.68583569913779907, -1.7990279192634866) +description = Flagler town, CO +station = ('klic', 0.007986030792557006) +zone = ('coz046', 0.0082320218537059557) + +[fips0826875] +centroid = (0.71003084949234607, -1.7948868812670349) +description = Fleming town, CO +station = ('kstk', 0.0057084302041084545) +zone = ('coz048', 0.0036586820779943279) + +[fips0827040] +centroid = (0.66985433004252526, -1.8343080047633) +description = Florence city, CO +station = ('kfcs', 0.0071902125912187455) +zone = ('coz083', 0.0011482069124194572) + +[fips0827095] +centroid = (0.67971074538060539, -1.8376549004968019) +description = Florissant CDP, CO +station = ('k4bm', 0.0035614460964686831) +zone = ('coz081', 0.0027253369910183183) + +[fips0827175] +centroid = (0.69332940990757685, -1.8401790131143285) +description = Floyd Hill CDP, CO +station = ('kbjc', 0.0054184326880881411) +zone = ('coz036', 0.0047650808970126409) + +[fips0827370] +centroid = (0.67614535187804625, -1.8288178621616418) +description = Fort Carson CDP, CO +station = ('kfcs', 0.00073955205886632586) +zone = ('coz085', 0.0038451476077382674) + +[fips0827425] +centroid = (0.70769987500984499, -1.8337272639079913) +description = Fort Collins city, CO +station = ('kfnl', 0.0018295079299808943) +zone = ('coz038', 0.0041832794997250832) + +[fips0827535] +centroid = (0.65324036635986604, -1.8401880364665615) +description = Fort Garland CDP, CO +station = ('kals', 0.0059833076872811671) +zone = ('coz075', 0.0053517150370973026) + +[fips0827700] +centroid = (0.6996147419697365, -1.829007596904626) +description = Fort Lupton city, CO +station = ('kden', 0.0041757114189912362) +zone = ('coz043', 0.0041627646635301781) + +[fips0827810] +centroid = (0.70257413970271054, -1.8115029044382116) +description = Fort Morgan city, CO +station = ('kstk', 0.0093990223388335219) +zone = ('coz044', 0.00028269497930196174) + +[fips0827865] +centroid = (0.67554075237186295, -1.8274382492011103) +description = Fountain city, CO +station = ('kfcs', 0.00085244779740628065) +zone = ('coz085', 0.0027414580828175948) + +[fips0827975] +centroid = (0.66548755116062042, -1.8155906051727222) +description = Fowler town, CO +station = ('klhx', 0.0071288291466901823) +zone = ('coz089', 0.0047661738338905359) + +[fips0828105] +centroid = (0.69094801286298579, -1.828857620762002) +description = Foxfield town, CO +station = ('kapa', 0.00094302180012046375) +zone = ('coz040', 0.0031022602038218096) + +[fips0828250] +centroid = (0.68748362156423959, -1.8280987690565276) +description = Franktown CDP, CO +station = ('kmnh', 0.0033597611981077877) +zone = ('coz041', 0.0034610352816566163) + +[fips0828305] +centroid = (0.69689167927077489, -1.8465972345457351) +description = Fraser town, CO +station = ('kccu', 0.009316008020089403) +zone = ('coz034', 0.0057013988899897172) + +[fips0828360] +centroid = (0.70003978200247463, -1.8319897886376311) +description = Frederick town, CO +station = ('keik', 0.0019264034215121324) +zone = ('coz039', 0.0036377350081624048) + +[fips0828690] +centroid = (0.69077670879690245, -1.8516393162218214) +description = Frisco town, CO +station = ('kccu', 0.0021005855184238354) +zone = ('coz034', 0.0032674268131788597) + +[fips0828745] +centroid = (0.68332328022626065, -1.8975872380822598) +description = Fruita city, CO +station = ('kgjt', 0.0025969364961928995) +zone = ('coz006', 0.00058153317817330691) + +[fips0828800] +centroid = (0.68230716698904226, -1.8933153527517856) +description = Fruitvale CDP, CO +station = ('kgjt', 0.001014634145837982) +zone = ('coz006', 0.0029325927305233149) + +[fips0828830] +centroid = (0.68972780082303897, -1.8615461890285767) +description = Fulford CDP, CO +station = ('kege', 0.0041599000594043176) +zone = ('coz010', 0.0025539635560189681) + +[fips0829185] +centroid = (0.70502042808889076, -1.8271760134809982) +description = Garden City town, CO +station = ('kgxy', 0.0010056491815637273) +zone = ('coz043', 0.0025789183865818056) + +[fips0829295] +centroid = (0.67281048146309053, -1.8550991871178051) +description = Garfield CDP, CO +station = ('kmyp', 0.0011913620414648462) +zone = ('coz061', 0.0033870901028104508) + +[fips0829625] +centroid = (0.69268805376734655, -1.8373231832191681) +description = Genesee CDP, CO +station = ('kbjc', 0.0044931726905112247) +zone = ('coz036', 0.0035659363774476057) + +[fips0829680] +centroid = (0.68553618318486431, -1.8063945875170118) +description = Genoa town, CO +station = ('klic', 0.0022774123582701292) +zone = ('coz046', 0.0028138519134601669) + +[fips0829735] +centroid = (0.69319494974200324, -1.8447348460608095) +description = Georgetown town, CO +station = ('kccu', 0.0075123336508461681) +zone = ('coz034', 0.0028649961678991012) + +[fips0829845] +centroid = (0.65761128167209792, -1.8600889089163315) +description = Gerrard CDP, CO +station = ('kcpw', 0.0050382216214618462) +zone = ('coz067', 0.0036839104864700863) + +[fips0829955] +centroid = (0.70309183926543706, -1.8287896576409295) +description = Gilcrest town, CO +station = ('kgxy', 0.0032681671174210067) +zone = ('coz043', 0.0025419441938867747) + +[fips0830340] +centroid = (0.69294285438484515, -1.8314680399110399) +description = Glendale city, CO +station = ('kapa', 0.0026371089185178299) +zone = ('coz040', 0.0020772704150891263) + +[fips0830350] +centroid = (0.69964858390393259, -1.8390804156166607) +description = Glendale CDP, CO +station = ('kbdu', 0.0021358652893639501) +zone = ('coz039', 0.0036275711194758767) + +[fips0830420] +centroid = (0.6815049438516555, -1.8297297792425162) +description = Gleneagle CDP, CO +station = ('kaff', 0.0014320047536307947) +zone = ('coz081', 0.0048630455730694607) + +[fips0830780] +centroid = (0.69028864492487485, -1.8731625420244904) +description = Glenwood Springs city, CO +station = ('k5sm', 0.0023045671256804573) +zone = ('coz008', 0.0041960251866801678) + +[fips0830835] +centroid = (0.69363777467981924, -1.8362703657077799) +description = Golden city, CO +station = ('kbjc', 0.0032896250344463273) +zone = ('coz039', 0.0038757894697593592) + +[fips0830890] +centroid = (0.67575038386831987, -1.8347831008389854) +description = Goldfield CDP, CO +station = ('kfcs', 0.0048944471634560713) +zone = ('coz082', 0.0020190373089274964) + +[fips0830945] +centroid = (0.69917423831982561, -1.8399072478965006) +description = Gold Hill CDP, CO +station = ('kbdu', 0.0025769900746388935) +zone = ('coz039', 0.0039174985818424502) + +[fips0831550] +centroid = (0.66432765769962254, -1.7856697800339603) +description = Granada town, CO +station = ('klaa', 0.0051119673957089589) +zone = ('coz098', 0.0021957708047203486) + +[fips0831605] +centroid = (0.69926871299223603, -1.8486348715408534) +description = Granby town, CO +station = ('k20v', 0.0060134646290399014) +zone = ('coz032', 0.0038758885581193438) + +[fips0831660] +centroid = (0.68218577933956592, -1.8948820999147162) +description = Grand Junction city, CO +station = ('kgjt', 0.00094972459726369736) +zone = ('coz006', 0.0019245210346781642) + +[fips0831715] +centroid = (0.70245666159075881, -1.8470081374115321) +description = Grand Lake town, CO +station = ('klmo', 0.0090060305912451934) +zone = ('coz033', 0.0043294960305900266) + +[fips0831935] +centroid = (0.69017195221108651, -1.829434678972589) +description = Grand View Estates CDP, CO +station = ('kapa', 0.00057674713664785239) +zone = ('coz040', 0.0038738645178690548) + +[fips0832155] +centroid = (0.70536444993775138, -1.8286031866636463) +description = Greeley city, CO +station = ('kgxy', 0.0018619214159579067) +zone = ('coz043', 0.0035067625311960317) + +[fips0832650] +centroid = (0.67954301923948868, -1.8329397713494915) +description = Green Mountain Falls town, CO +station = ('kaff', 0.0028110380231141296) +zone = ('coz081', 0.0016908236320613318) + +[fips0833035] +centroid = (0.69142848455276729, -1.8310543794250247) +description = Greenwood Village city, CO +station = ('kapa', 0.0011948908440350761) +zone = ('coz040', 0.0029858244373324231) + +[fips0833310] +centroid = (0.71330049695315467, -1.8190858015327662) +description = Grover town, CO +station = ('kgxy', 0.0093245654950127738) +zone = ('coz042', 0.0036852051666359741) + +[fips0833420] +centroid = (0.67649213134712494, -1.8414928446153525) +description = Guffey CDP, CO +station = ('k4bm', 0.005064188009407865) +zone = ('coz076', 0.0033506404796926101) + +[fips0833502] +centroid = (0.69925113752666845, -1.8355864060805083) +description = Gunbarrel CDP, CO +station = ('kbdu', 0.00098436932982295488) +zone = ('coz039', 0.001818714759906886) + +[fips0833640] +centroid = (0.67272907930677761, -1.8662518584913412) +description = Gunnison city, CO +station = ('kguc', 0.00020701488999877744) +zone = ('coz014', 0.0037347595975919063) + +[fips0833695] +centroid = (0.69181905433277857, -1.8668157743726608) +description = Gypsum town, CO +station = ('kege', 0.00062551043500564936) +zone = ('coz008', 0.00093667787516855418) + +[fips0834520] +centroid = (0.66533774955092184, -1.7840533258939333) +description = Hartman town, CO +station = ('klaa', 0.0064519153538475623) +zone = ('coz098', 0.0037599309676591788) + +[fips0834685] +centroid = (0.66508486879560025, -1.7969240993831326) +description = Hasty CDP, CO +station = ('klaa', 0.0038120611337652804) +zone = ('coz097', 0.003083876001425543) + +[fips0834740] +centroid = (0.67112187541178614, -1.800567107677528) +description = Haswell town, CO +station = ('klhx', 0.0085196046742046123) +zone = ('coz095', 0.0011146328700114446) + +[fips0834960] +centroid = (0.70932833701512588, -1.7912233304473437) +description = Haxtun town, CO +station = ('kheq', 0.0050994700317611484) +zone = ('coz051', 0.0036986105939011277) + +[fips0835070] +centroid = (0.70660073646010901, -1.8717313894911476) +description = Hayden town, CO +station = ('khdn', 0.00034201694941321075) +zone = ('coz004', 0.0040571673436605362) + +[fips0835400] +centroid = (0.69593237650070872, -1.8553575133003926) +description = Heeney CDP, CO +station = ('k20v', 0.0032524122923168176) +zone = ('coz032', 0.0036926914285243533) + +[fips0835860] +centroid = (0.69996105019991717, -1.8409348279469049) +description = Hidden Lake CDP, CO +station = ('kbdu', 0.0035580160429454027) +zone = ('coz039', 0.0049828000906189107) + +[fips0836410] +centroid = (0.69011732340549903, -1.832090145069621) +description = Highlands Ranch CDP, CO +station = ('kapa', 0.0016901014370769788) +zone = ('coz036', 0.0041219048965372221) + +[fips0836610] +centroid = (0.70379124505658874, -1.8068072008054756) +description = Hillrose town, CO +station = ('kako', 0.004915049920903092) +zone = ('coz044', 0.0039736605917030342) + +[fips0836940] +centroid = (0.65068401751105487, -1.8219333585672726) +description = Hoehne CDP, CO +station = ('ktad', 0.00066640404957635192) +zone = ('coz088', 0.0012642620225895996) + +[fips0837215] +centroid = (0.66419619950036235, -1.7824103252959833) +description = Holly town, CO +station = ('klaa', 0.0076806122605470395) +zone = ('ksz061', 0.0046871884000692131) + +[fips0837220] +centroid = (0.6923335250363889, -1.8312300293609454) +description = Holly Hills CDP, CO +station = ('kapa', 0.0020113532047205756) +zone = ('coz040', 0.0023266667132015887) + +[fips0837270] +centroid = (0.70829115765383566, -1.785444161321555) +description = Holyoke city, CO +station = ('kheq', 0.00063880464855868384) +zone = ('coz051', 0.00080977681632407811) + +[fips0837380] +centroid = (0.65879156057875909, -1.8479150803040385) +description = Hooper town, CO +station = ('kals', 0.0054587905786174775) +zone = ('coz070', 0.0032282672064660226) + +[fips0837545] +centroid = (0.677170401201035, -1.8799563234043408) +description = Hotchkiss town, CO +station = ('kajz', 0.0047669096530251597) +zone = ('coz011', 0.0035643564381523801) + +[fips0837600] +centroid = (0.69943780049016935, -1.8518377252511882) +description = Hot Sulphur Springs town, CO +station = ('k20v', 0.0035776788959705221) +zone = ('coz032', 0.0014230874881421243) + +[fips0837655] +centroid = (0.67037663727447694, -1.8472984903858938) +description = Howard CDP, CO +station = ('kank', 0.0035286811009836651) +zone = ('coz077', 0.0039280708228334174) + +[fips0837820] +centroid = (0.69950052762348602, -1.8263262824813722) +description = Hudson town, CO +station = ('kden', 0.0037121055016697273) +zone = ('coz043', 0.003350443298856668) + +[fips0837875] +centroid = (0.68305034563783384, -1.805950087063114) +description = Hugo town, CO +station = ('klic', 0.0034709202692612836) +zone = ('coz046', 0.0047609820692301411) + +[fips0838370] +centroid = (0.69376621345947354, -1.8413908301205735) +description = Idaho Springs city, CO +station = ('kbdu', 0.0061122091528876847) +zone = ('coz036', 0.0056230163165836948) + +[fips0838425] +centroid = (0.69294662429602949, -1.7853640856154733) +description = Idalia CDP, CO +station = ('k2v5', 0.0069828970388676175) +zone = ('coz090', 0.0055198330643247053) + +[fips0838480] +centroid = (0.69235340433656922, -1.8368401982552636) +description = Idledale CDP, CO +station = ('kbjc', 0.0046448551612586798) +zone = ('coz036', 0.0032484224026615776) + +[fips0838535] +centroid = (0.64782670408602994, -1.8786282325633283) +description = Ignacio town, CO +station = ('kdro', 0.0018838193493011313) +zone = ('coz022', 0.0033835940227690789) + +[fips0838590] +centroid = (0.71136710847425799, -1.7988432808819184) +description = Iliff town, CO +station = ('kstk', 0.003645036518410829) +zone = ('coz048', 0.00082624844607969881) + +[fips0838810] +centroid = (0.69164862293132123, -1.836824001599805) +description = Indian Hills CDP, CO +station = ('kbjc', 0.0053033692847070987) +zone = ('coz036', 0.0025501233438709409) + +[fips0838910] +centroid = (0.69079866503889253, -1.830192972172703) +description = Inverness CDP, CO +station = ('kapa', 0.00028364652695494146) +zone = ('coz040', 0.0033353479822976189) + +[fips0839160] +centroid = (0.70459037896119947, -1.8161751857523853) +description = Jackson Lake CDP, CO +station = ('kgxy', 0.007710663529904376) +zone = ('coz044', 0.0038110300181456629) + +[fips0839195] +centroid = (0.70017509737938177, -1.8393858831423449) +description = Jamestown town, CO +station = ('kbdu', 0.002611880532416796) +zone = ('coz039', 0.0041419955846092064) + +[fips0839250] +centroid = (0.64853220107627108, -1.8247436179156635) +description = Jansen CDP, CO +station = ('ktad', 0.0024942322732368284) +zone = ('coz088', 0.0040487676393925363) + +[fips0839745] +centroid = (0.69225400783566804, -1.7920778785557052) +description = Joes CDP, CO +station = ('kitr', 0.0089651520334751954) +zone = ('coz091', 0.0063278432335813657) + +[fips0839800] +centroid = (0.67739533923503215, -1.8519184641823856) +description = Johnson Village CDP, CO +station = ('kaej', 0.00018707937602743349) +zone = ('coz063', 0.0011334000595544281) + +[fips0839855] +centroid = (0.70493480223578797, -1.832062394334514) +description = Johnstown town, CO +station = ('kfnl', 0.0012239612813510804) +zone = ('coz038', 0.0059763552627090698) + +[fips0839965] +centroid = (0.7153229844903658, -1.7848187225841028) +description = Julesburg town, CO +station = ('kheq', 0.007417518269047115) +zone = ('coz050', 0.0022395789157376774) + +[fips0840185] +centroid = (0.70009938499643032, -1.8235618554791384) +description = Keenesburg town, CO +station = ('kden', 0.004951433868867189) +zone = ('coz043', 0.0030628319095336474) + +[fips0840377] +centroid = (0.69074447256561822, -1.8345800666871011) +description = Ken Caryl CDP, CO +station = ('kapa', 0.0035519719534662015) +zone = ('coz036', 0.0026366029902079985) + +[fips0840515] +centroid = (0.70489418842409413, -1.8250191355913836) +description = Kersey town, CO +station = ('kgxy', 0.0012017413378389004) +zone = ('coz043', 0.0021352765893577095) + +[fips0840550] +centroid = (0.69069097822404457, -1.8489072301706271) +description = Keystone CDP, CO +station = ('kccu', 0.0034475332393515447) +zone = ('coz034', 0.0012515767185769927) + +[fips0840570] +centroid = (0.65009078009830212, -1.8038541735242715) +description = Kim town, CO +station = ('kspd', 0.01025000700525187) +zone = ('coz094', 0.0032100123791181691) + +[fips0840790] +centroid = (0.68667413785716469, -1.8231216485352004) +description = Kiowa town, CO +station = ('kmnh', 0.0032560939395599965) +zone = ('coz041', 0.00094174814175635531) + +[fips0840900] +centroid = (0.69137184861854006, -1.7905680989395598) +description = Kirk CDP, CO +station = ('kitr', 0.0075752137243048877) +zone = ('coz091', 0.005365217558719021) + +[fips0841010] +centroid = (0.67653888871778589, -1.7941175924926334) +description = Kit Carson town, CO +station = ('kitr', 0.010978288695568566) +zone = ('coz092', 0.0028476150885789727) + +[fips0841065] +centroid = (0.6921785747053969, -1.8379108355783145) +description = Kittredge CDP, CO +station = ('kbjc', 0.005156199094712724) +zone = ('coz036', 0.0030953205810239763) + +[fips0841560] +centroid = (0.69911844014363933, -1.8566492489330861) +description = Kremmling town, CO +station = ('k20v', 0.00013403672281264969) +zone = ('coz032', 0.0022769360679575422) + +[fips0841835] +centroid = (0.69804118802272341, -1.834335388979264) +description = Lafayette city, CO +station = ('keik', 0.00079639988299159785) +zone = ('coz039', 0.00096127083280019693) + +[fips0842000] +centroid = (0.69955939757915564, -1.7820142926354134) +description = Laird CDP, CO +station = ('k2v5', 0.0017396836101090086) +zone = ('coz090', 0.0045225884078609023) + +[fips0842055] +centroid = (0.65055018566401202, -1.8493605445372476) +description = La Jara town, CO +station = ('kals', 0.0030743142189067884) +zone = ('coz071', 0.003010524834796224) + +[fips0842110] +centroid = (0.6628658222780297, -1.807241944868855) +description = La Junta city, CO +station = ('klhx', 0.0013021407530034164) +zone = ('coz093', 0.0026847594838595805) + +[fips0842165] +centroid = (0.66324866024945461, -1.80737308890885) +description = La Junta Gardens CDP, CO +station = ('klhx', 0.00099829571109210638) +zone = ('coz093', 0.0028120335213207394) + +[fips0842330] +centroid = (0.66375751099287361, -1.8729158920945985) +description = Lake City town, CO +station = ('kguc', 0.010182013642396393) +zone = ('coz018', 0.0033386074576607981) + +[fips0842495] +centroid = (0.69427583214776334, -1.8336049512340116) +description = Lakeside town, CO +station = ('kbjc', 0.0025275536370252135) +zone = ('coz039', 0.0034303099843123962) + +[fips0843000] +centroid = (0.69287724745826273, -1.834647366583058) +description = Lakewood city, CO +station = ('kbjc', 0.003800030793705193) +zone = ('coz036', 0.0042660853101579759) + +[fips0843110] +centroid = (0.66462851755608143, -1.791019790149976) +description = Lamar city, CO +station = ('klaa', 0.00093080278872772408) +zone = ('coz098', 0.0037829598532712022) + +[fips0843220] +centroid = (0.70926168289099223, -1.8351020946663723) +description = Laporte CDP, CO +station = ('kfnl', 0.0036832843409510393) +zone = ('coz035', 0.0043614455778186465) + +[fips0843550] +centroid = (0.68468882583302104, -1.8306018155499826) +description = Larkspur town, CO +station = ('kmnh', 0.0034131681668442969) +zone = ('coz041', 0.0052671052284177407) + +[fips0843605] +centroid = (0.70421691340785775, -1.8274627361705156) +description = La Salle town, CO +station = ('kgxy', 0.0017648537971829672) +zone = ('coz043', 0.0020792315483022807) + +[fips0843660] +centroid = (0.66444105174112467, -1.801585210590094) +description = Las Animas city, CO +station = ('klhx', 0.0040470481324756547) +zone = ('coz097', 0.0028879214902615721) + +[fips0844100] +centroid = (0.65464790458842925, -1.8327438406876628) +description = La Veta town, CO +station = ('ktad', 0.0090243488111103245) +zone = ('coz087', 0.0037893008747724353) + +[fips0844270] +centroid = (0.69962421910757477, -1.8384386755039952) +description = Lazy Acres CDP, CO +station = ('kbdu', 0.0017023265684156469) +zone = ('coz039', 0.0032345933971228489) + +[fips0844320] +centroid = (0.6849839610095334, -1.8551717753613954) +description = Leadville city, CO +station = ('klxv', 0.00039025892292760992) +zone = ('coz059', 0.0012456502820357349) + +[fips0844375] +centroid = (0.68522427539424036, -1.8554795816282772) +description = Leadville North CDP, CO +station = ('klxv', 0.00047927026415042507) +zone = ('coz059', 0.001354601164415762) + +[fips0844595] +centroid = (0.6545284018945452, -1.8964757775080048) +description = Lewis CDP, CO +station = ('kcez', 0.0035400364098756086) +zone = ('coz021', 0.0023081375490898513) + +[fips0844695] +centroid = (0.69904120932423852, -1.8344857665476157) +description = Leyner CDP, CO +station = ('keik', 0.00095961580245339457) +zone = ('coz039', 0.0017198053653147739) + +[fips0844980] +centroid = (0.68530485724580503, -1.8097310287282942) +description = Limon town, CO +station = ('klic', 0.00031584186092790148) +zone = ('coz046', 0.0015911178505916112) + +[fips0845145] +centroid = (0.67065135209874094, -1.836314173472005) +description = Lincoln Park CDP, CO +station = ('kfcs', 0.0077501824752537005) +zone = ('coz083', 0.0013827734319170459) + +[fips0845255] +centroid = (0.69098239584925003, -1.8329462465210165) +description = Littleton city, CO +station = ('kapa', 0.0023251133977060141) +zone = ('coz036', 0.003821576409376777) + +[fips0845530] +centroid = (0.69832557197104339, -1.8278238447927533) +description = Lochbuie town, CO +station = ('kden', 0.0026454481554247472) +zone = ('coz040', 0.0044085339519508056) + +[fips0845680] +centroid = (0.66664912013770028, -1.8810974720291724) +description = Loghill Village CDP, CO +station = ('ktex', 0.0045887322234246302) +zone = ('coz018', 0.0039490544346324668) + +[fips0845695] +centroid = (0.7028481040353961, -1.8121645762109351) +description = Log Lane Village town, CO +station = ('kstk', 0.0096109104154054239) +zone = ('coz044', 0.00029203051969122152) + +[fips0845750] +centroid = (0.68430017591518699, -1.8990059289647432) +description = Loma CDP, CO +station = ('kgjt', 0.0038975725688668353) +zone = ('coz006', 0.0019206876199684359) + +[fips0845955] +centroid = (0.6899389856625302, -1.8303439780595856) +description = Lone Tree city, CO +station = ('kapa', 0.00069005935439611155) +zone = ('coz040', 0.0041992829377087556) + +[fips0845970] +centroid = (0.70109619489212183, -1.8343731753575694) +description = Longmont city, CO +station = ('klmo', 0.0007945375606864685) +zone = ('coz039', 0.0037231106404037218) + +[fips0846355] +centroid = (0.6975999338812342, -1.8350952878822897) +description = Louisville city, CO +station = ('kbjc', 0.00098870004606110406) +zone = ('coz039', 0.00023141171057656791) + +[fips0846410] +centroid = (0.68905364994616369, -1.8326540085910625) +description = Louviers CDP, CO +station = ('kapa', 0.0025606311536771975) +zone = ('coz036', 0.0035672174176454119) + +[fips0846465] +centroid = (0.70541112004194972, -1.8336752880028671) +description = Loveland city, CO +station = ('kfnl', 0.00083096305328942061) +zone = ('coz038', 0.0060093494313682447) + +[fips0847015] +centroid = (0.65313552443169864, -1.8263659538152701) +description = Lynn CDP, CO +station = ('ktad', 0.0039761542452203952) +zone = ('coz088', 0.0036592253607136815) + +[fips0847070] +centroid = (0.70202169063457687, -1.8372863742252434) +description = Lyons town, CO +station = ('klmo', 0.0018184705853007647) +zone = ('coz039', 0.0048188601735082211) + +[fips0847345] +centroid = (0.69663778622448735, -1.8627157167070456) +description = McCoy CDP, CO +station = ('kege', 0.0052775857065580235) +zone = ('coz008', 0.0064383898434312173) + +[fips0848060] +centroid = (0.6488059210628615, -1.8489542493406759) +description = Manassa town, CO +station = ('kals', 0.0046338637398294358) +zone = ('coz071', 0.0026891775093431671) + +[fips0848115] +centroid = (0.65182125659836188, -1.8900829855237999) +description = Mancos town, CO +station = ('kcez', 0.0047824837157083647) +zone = ('coz021', 0.0060503614128824684) + +[fips0848445] +centroid = (0.67819309432953367, -1.831067312314782) +description = Manitou Springs city, CO +station = ('kaff', 0.0023053797001533188) +zone = ('coz082', 0.001963331639766923) + +[fips0848500] +centroid = (0.66512447031632815, -1.8128172595380108) +description = Manzanola town, CO +station = ('klhx', 0.0049183454113562791) +zone = ('coz089', 0.0039632473877580631) + +[fips0848555] +centroid = (0.68193185138669332, -1.8708265759003286) +description = Marble town, CO +station = ('kase', 0.0052108187408142085) +zone = ('coz012', 0.0053590329936992163) + +[fips0849325] +centroid = (0.7071896629096095, -1.886505845955375) +description = Maybell CDP, CO +station = ('kcag', 0.0075995606780489061) +zone = ('coz002', 0.0030678759955071974) + +[fips0849490] +centroid = (0.67240486694492718, -1.8538778580671369) +description = Maysville CDP, CO +station = ('kmyp', 0.0015168491925938595) +zone = ('coz062', 0.0033029685764005058) + +[fips0849600] +centroid = (0.7021394479992088, -1.832401023115986) +description = Mead town, CO +station = ('klmo', 0.0025852211070138405) +zone = ('coz039', 0.0051987984887916245) + +[fips0849875] +centroid = (0.699000473339497, -1.8831287385725211) +description = Meeker town, CO +station = ('keeo', 0.00016031204986417271) +zone = ('coz002', 0.0061975095256518471) + +[fips0850012] +centroid = (0.69008177104863588, -1.8299335464326867) +description = Meridian CDP, CO +station = ('kapa', 0.00048802632696128646) +zone = ('coz040', 0.0040017398056890622) + +[fips0850040] +centroid = (0.70659351079700583, -1.8038611722945721) +description = Merino town, CO +station = ('kstk', 0.0025129443898889766) +zone = ('coz048', 0.0052859286372434582) + +[fips0850380] +centroid = (0.67799660516234417, -1.8352507094521797) +description = Midland CDP, CO +station = ('kfcs', 0.0058337727576503158) +zone = ('coz081', 0.00068181136883911804) + +[fips0850480] +centroid = (0.70353370427216444, -1.8300695599412944) +description = Milliken town, CO +station = ('kfnl', 0.0032584057778283627) +zone = ('coz043', 0.0035781040397997281) + +[fips0850920] +centroid = (0.690025309647334, -1.8567092533527696) +description = Minturn town, CO +station = ('kccu', 0.0033356767264992176) +zone = ('coz058', 0.0054003294136651964) + +[fips0851250] +centroid = (0.66325996998300762, -1.8483989030259838) +description = Moffat town, CO +station = ('k04v', 0.0039804038780974736) +zone = ('coz069', 0.0023362625788611712) + +[fips0851635] +centroid = (0.6558692685456825, -1.8526779965662685) +description = Monte Vista city, CO +station = ('kals', 0.004677665664777929) +zone = ('coz070', 0.0035778729648486196) + +[fips0851690] +centroid = (0.69083109325639458, -1.8477464116851257) +description = Montezuma town, CO +station = ('kccu', 0.0042926399064271729) +zone = ('coz034', 0.00046122632170762188) + +[fips0851745] +centroid = (0.6714117222406647, -1.8825234583879291) +description = Montrose city, CO +station = ('kmtj', 0.00076201837797741959) +zone = ('coz011', 0.0036592435781070917) + +[fips0851800] +centroid = (0.68194127616465405, -1.830055684573741) +description = Monument town, CO +station = ('kaff', 0.001914534809378855) +zone = ('coz081', 0.0049680757921961869) + +[fips0851975] +centroid = (0.70314938277087535, -1.8121307866366163) +description = Morgan Heights CDP, CO +station = ('kstk', 0.0094066072954895608) +zone = ('coz044', 0.00049238573452568748) + +[fips0852075] +centroid = (0.69159741497106786, -1.8362245857215003) +description = Morrison town, CO +station = ('kapa', 0.0049222731183030371) +zone = ('coz036', 0.0026042240331627317) + +[fips0852210] +centroid = (0.69860358546759349, -1.8392827167302597) +description = Mountain Meadows CDP, CO +station = ('kbdu', 0.0020472389791848216) +zone = ('coz039', 0.003250921038007718) + +[fips0852350] +centroid = (0.69420080044322019, -1.8335855082661447) +description = Mountain View town, CO +station = ('kbjc', 0.0026035218378089049) +zone = ('coz039', 0.003505377437137666) + +[fips0852550] +centroid = (0.66204487175776916, -1.8824746764353362) +description = Mountain Village town, CO +station = ('ktex', 0.00079311987408605213) +zone = ('coz018', 0.0047698251560918774) + +[fips0852570] +centroid = (0.67908061170746525, -1.866781007413961) +description = Mount Crested Butte town, CO +station = ('kase', 0.0058056673806687106) +zone = ('coz012', 0.0019731968350005613) + +[fips0852820] +centroid = (0.68777065841302265, -1.870399336752733) +description = Mulford CDP, CO +station = ('k5sm', 0.0028938943370895392) +zone = ('coz008', 0.0042939120635288406) + +[fips0853120] +centroid = (0.66703960265124884, -1.8948740539468645) +description = Naturita town, CO +station = ('kmtj', 0.010381593285118991) +zone = ('coz020', 0.0019752279710153831) + +[fips0853175] +centroid = (0.69748976869884827, -1.841442038080827) +description = Nederland town, CO +station = ('kbdu', 0.0038809125979199078) +zone = ('coz039', 0.0046937927416325111) + +[fips0853395] +centroid = (0.690772764352793, -1.8766883689129068) +description = New Castle town, CO +station = ('k5sm', 0.0033226936299688213) +zone = ('coz007', 0.0065210391599356092) + +[fips0853780] +centroid = (0.69983430438963734, -1.8353582217341027) +description = Niwot CDP, CO +station = ('klmo', 0.0010901648706034134) +zone = ('coz039', 0.0023904575256239249) + +[fips0853875] +centroid = (0.69044733026046612, -1.8726129029364524) +description = No Name CDP, CO +station = ('k5sm', 0.0026145062555660366) +zone = ('coz008', 0.0037436894904942283) + +[fips0853945] +centroid = (0.68640537460564999, -1.861503166662515) +description = Norrie CDP, CO +station = ('kase', 0.0032888275118907713) +zone = ('coz010', 0.0028401053796257613) + +[fips0854330] +centroid = (0.6965812724633077, -1.832226402924324) +description = Northglenn city, CO +station = ('keik', 0.0021246573383421207) +zone = ('coz039', 0.0025229552657845163) + +[fips0854495] +centroid = (0.66321822170729994, -1.8068206049341311) +description = North La Junta CDP, CO +station = ('klhx', 0.00088412649281459116) +zone = ('coz093', 0.0031513109543996141) + +[fips0854750] +centroid = (0.69477628785748025, -1.832247346875348) +description = North Washington CDP, CO +station = ('kbjc', 0.0026389350656021195) +zone = ('coz040', 0.0024729419126198393) + +[fips0854880] +centroid = (0.66547383287269979, -1.8900468048484058) +description = Norwood town, CO +station = ('ktex', 0.0060871279442190826) +zone = ('coz020', 0.0058529675387314906) + +[fips0854935] +centroid = (0.66787701162635582, -1.8945324930122491) +description = Nucla town, CO +station = ('ktex', 0.010346256016263653) +zone = ('coz020', 0.002522236913743198) + +[fips0855045] +centroid = (0.71055696154206716, -1.8289286207559732) +description = Nunn town, CO +station = ('kgxy', 0.0052866262313568868) +zone = ('coz038', 0.00070221437039024142) + +[fips0855155] +centroid = (0.70291376332185607, -1.8667532392255617) +description = Oak Creek town, CO +station = ('ksbs', 0.0044026809603112723) +zone = ('coz005', 0.0020308473466003046) + +[fips0855540] +centroid = (0.67384228521028466, -1.8846561111075262) +description = Olathe town, CO +station = ('kmtj', 0.0022028429247640691) +zone = ('coz011', 0.0014232828462795125) + +[fips0855705] +centroid = (0.66612714451830635, -1.8141736072596131) +description = Olney Springs town, CO +station = ('klhx', 0.006215939186202995) +zone = ('coz089', 0.0035517952105171557) + +[fips0855870] +centroid = (0.66072650240069009, -1.8819714805586938) +description = Ophir town, CO +station = ('ktex', 0.00201749522787326) +zone = ('coz018', 0.0052082445966748752) + +[fips0855925] +centroid = (0.70392621136764544, -1.8171984024796597) +description = Orchard CDP, CO +station = ('kgxy', 0.0070784049670034278) +zone = ('coz044', 0.004274645862987511) + +[fips0855980] +centroid = (0.67743312561333779, -1.8843890931852636) +description = Orchard City town, CO +station = ('kajz', 0.001392945499303383) +zone = ('coz011', 0.0025367996354976885) + +[fips0856035] +centroid = (0.68132749622660527, -1.8940566813515705) +description = Orchard Mesa CDP, CO +station = ('kgjt', 0.001685717418511493) +zone = ('coz006', 0.0029712039224496136) + +[fips0856145] +centroid = (0.66708051316891559, -1.8108956869381503) +description = Ordway town, CO +station = ('klhx', 0.0044444301571202709) +zone = ('coz089', 0.0018849337634421557) + +[fips0856365] +centroid = (0.70075173671094815, -1.7970283478993545) +description = Otis town, CO +station = ('kako', 0.0034073778648894518) +zone = ('coz049', 0.0044698192646187192) + +[fips0856420] +centroid = (0.66370385957166733, -1.879258488409516) +description = Ouray city, CO +station = ('ktex', 0.0034783606196526766) +zone = ('coz018', 0.0017794681110843761) + +[fips0856475] +centroid = (0.71489670527385862, -1.7870138580909212) +description = Ovid town, CO +station = ('kheq', 0.00719412585849668) +zone = ('coz050', 0.001555970525610639) + +[fips0856695] +centroid = (0.71177692923591873, -1.8007137327879881) +description = Padroni CDP, CO +station = ('kstk', 0.0032107102326480712) +zone = ('coz048', 0.0013006953403195975) + +[fips0856860] +centroid = (0.65032999492558041, -1.8676013296156908) +description = Pagosa Springs town, CO +station = ('kpso', 0.00069792353869567599) +zone = ('coz023', 0.0034535160742863989) + +[fips0856970] +centroid = (0.68255369474588645, -1.8912225633523045) +description = Palisade town, CO +station = ('kgjt', 0.0024024919284069248) +zone = ('coz006', 0.0044325604789705606) + +[fips0857025] +centroid = (0.68265874611356381, -1.8308469994033028) +description = Palmer Lake town, CO +station = ('kaff', 0.0027990449618191882) +zone = ('coz081', 0.005128509203604123) + +[fips0857245] +centroid = (0.70882831763772192, -1.788474855754473) +description = Paoli town, CO +station = ('kheq', 0.002958353942438078) +zone = ('coz051', 0.0015537501566980077) + +[fips0857300] +centroid = (0.67840614667132448, -1.8778235136051113) +description = Paonia town, CO +station = ('kajz', 0.0065838871095784332) +zone = ('coz011', 0.0056346460117044101) + +[fips0857400] +centroid = (0.68853048750287837, -1.8859196596728001) +description = Parachute town, CO +station = ('kril', 0.0044901312597498636) +zone = ('coz007', 0.0010589643042347972) + +[fips0857445] +centroid = (0.69780204300861515, -1.8357748492798462) +description = Paragon Estates CDP, CO +station = ('kbdu', 0.0010664186090755326) +zone = ('coz039', 0.00050051675709909024) + +[fips0857630] +centroid = (0.68948219809069833, -1.8286344280572571) +description = Parker town, CO +station = ('kapa', 0.0015011844027008677) +zone = ('coz040', 0.0045774121434887568) + +[fips0857850] +centroid = (0.69910144063672497, -1.8531206993310367) +description = Parshall CDP, CO +station = ('k20v', 0.0025771524224175663) +zone = ('coz032', 0.00053177821219555963) + +[fips0858235] +centroid = (0.71492248378691059, -1.7996835696502909) +description = Peetz town, CO +station = ('ksny', 0.0029613639083967314) +zone = ('coz048', 0.0041427483107681819) + +[fips0858400] +centroid = (0.6705781529899123, -1.8326026086445915) +description = Penrose CDP, CO +station = ('kfcs', 0.0058168742904027076) +zone = ('coz083', 0.0016148241219457954) + +[fips0858510] +centroid = (0.69208073154753014, -1.8175348146929815) +description = Peoria CDP, CO +station = ('kftg', 0.0059900652213500678) +zone = ('coz045', 0.0023201281647484981) + +[fips0858592] +centroid = (0.6852064032227001, -1.832071958738815) +description = Perry Park CDP, CO +station = ('kmnh', 0.0046043361984215436) +zone = ('coz036', 0.0056135544382537811) + +[fips0858675] +centroid = (0.68125400041180373, -1.8237015516324679) +description = Peyton CDP, CO +station = ('kfly', 0.0018064791202953331) +zone = ('coz084', 0.00065734098157922412) + +[fips0858758] +centroid = (0.70214838408497904, -1.8666435278287812) +description = Phippsburg CDP, CO +station = ('ksbs', 0.0051244362130166031) +zone = ('coz005', 0.0027990326122800582) + +[fips0858960] +centroid = (0.65348260060675023, -1.8704419053331891) +description = Piedra CDP, CO +station = ('kpso', 0.003266980026749963) +zone = ('coz023', 0.0053155593032858054) + +[fips0859005] +centroid = (0.7091899324054427, -1.8283260981915999) +description = Pierce town, CO +station = ('kgxy', 0.0038518167070462454) +zone = ('coz038', 0.001873482029909213) + +[fips0859240] +centroid = (0.69880023171441563, -1.8379758839995364) +description = Pine Brook Hill CDP, CO +station = ('kbdu', 0.0010558205319493282) +zone = ('coz039', 0.0024461214356149216) + +[fips0859830] +centroid = (0.67384739902499302, -1.8590630392885943) +description = Pitkin town, CO +station = ('kmyp', 0.0034805202941081844) +zone = ('coz060', 0.0042655777178185394) + +[fips0860160] +centroid = (0.70195355298057893, -1.82974622024407) +description = Platteville town, CO +station = ('klmo', 0.0044312266536720383) +zone = ('coz043', 0.0033604334564530927) + +[fips0860600] +centroid = (0.67228065186206276, -1.8513156972719167) +description = Poncha Springs town, CO +station = ('kank', 0.00036460616183528797) +zone = ('coz062', 0.002953023593084489) + +[fips0860655] +centroid = (0.68763755960426554, -1.826234600335765) +description = Ponderosa Park CDP, CO +station = ('kmnh', 0.0031776823715619737) +zone = ('coz041', 0.0023338606737453647) + +[fips0860765] +centroid = (0.66478233342305959, -1.8796364220057429) +description = Portland CDP, CO +station = ('ktex', 0.0037664594347356036) +zone = ('coz018', 0.0020595641283491324) + +[fips0861315] +centroid = (0.65222969854991364, -1.795223834532425) +description = Pritchett town, CO +station = ('kspd', 0.0036846526210677572) +zone = ('coz099', 0.0042322665115973055) + +[fips0862000] +centroid = (0.66799243024979016, -1.8258304344408807) +description = Pueblo city, CO +station = ('kpub', 0.0015499254583393538) +zone = ('coz086', 0.0023389531354559142) + +[fips0862220] +centroid = (0.66934012113830266, -1.8278430085079402) +description = Pueblo West CDP, CO +station = ('kpub', 0.0033301889838615747) +zone = ('coz086', 0.0044141710949143712) + +[fips0862660] +centroid = (0.6828118638488414, -1.8180629513246349) +description = Ramah town, CO +station = ('kfly', 0.0062318496351170365) +zone = ('coz084', 0.0042808779856308475) + +[fips0862880] +centroid = (0.69979285281990244, -1.8981631967354178) +description = Rangely town, CO +station = ('keeo', 0.011691592508199823) +zone = ('coz001', 0.0061358097687786353) + +[fips0863045] +centroid = (0.70873918367282274, -1.8124237925114413) +description = Raymer (New Raymer) town, CO +station = ('kstk', 0.0077411982887839537) +zone = ('coz042', 0.0031520113664056017) + +[fips0863265] +centroid = (0.68956462999127, -1.856507248945144) +description = Red Cliff town, CO +station = ('kccu', 0.0030490763228295803) +zone = ('coz058', 0.0049170281635599585) + +[fips0863320] +centroid = (0.71226001891957835, -1.8427004379248073) +description = Red Feather Lakes CDP, CO +station = ('klar', 0.0089267810338895005) +zone = ('coz035', 0.0037659945018755471) + +[fips0863375] +centroid = (0.68216391036403845, -1.8964187226947571) +description = Redlands CDP, CO +station = ('kgjt', 0.0018718068049667403) +zone = ('coz006', 0.0012475286249538265) + +[fips0863650] +centroid = (0.68382490530657647, -1.8716612272552173) +description = Redstone CDP, CO +station = ('k5sm', 0.004684615321174564) +zone = ('coz010', 0.0072479819079866491) + +[fips0863705] +centroid = (0.66629801225207652, -1.8921552149446927) +description = Redvale CDP, CO +station = ('ktex', 0.0079359881509503578) +zone = ('coz020', 0.0040895307481796442) + +[fips0864090] +centroid = (0.65778961941506675, -1.8855042189509479) +description = Rico town, CO +station = ('ktex', 0.00493060031429485) +zone = ('coz019', 0.0059172897937770043) + +[fips0864200] +centroid = (0.66600242328995884, -1.8806465662169196) +description = Ridgway town, CO +station = ('ktex', 0.004171114572067188) +zone = ('coz018', 0.0032887389082031839) + +[fips0864255] +centroid = (0.69008452866885406, -1.8810392478453259) +description = Rifle city, CO +station = ('kril', 0.00068913446839284577) +zone = ('coz007', 0.0031984703908692065) + +[fips0864870] +centroid = (0.67546106063821687, -1.8297107202470844) +description = Rock Creek Park CDP, CO +station = ('kfcs', 0.00092689523798978419) +zone = ('coz082', 0.0035067300643336643) + +[fips0864970] +centroid = (0.66959055843267135, -1.8354716506821898) +description = Rockvale town, CO +station = ('kfcs', 0.0079867178466650236) +zone = ('coz083', 0.0015481422310657104) + +[fips0865190] +centroid = (0.66410148048185669, -1.8103021353661319) +description = Rocky Ford city, CO +station = ('klhx', 0.0028313350182688868) +zone = ('coz093', 0.0025760157009134333) + +[fips0865685] +centroid = (0.69679106103939736, -1.8415588529676628) +description = Rollinsville CDP, CO +station = ('kbdu', 0.0042257981971705683) +zone = ('coz039', 0.004828857948838544) + +[fips0865740] +centroid = (0.64877063050538608, -1.8497944333892935) +description = Romeo town, CO +station = ('kals', 0.0048528894833314009) +zone = ('coz071', 0.003340199528612647) + +[fips0866197] +centroid = (0.68854310623337023, -1.8338882530781955) +description = Roxborough Park CDP, CO +station = ('kapa', 0.0036339316567185159) +zone = ('coz036', 0.002677873782956983) + +[fips0866895] +centroid = (0.66185121002396785, -1.8314112468971802) +description = Rye town, CO +station = ('kpub', 0.0086691324900043647) +zone = ('coz080', 0.0030239717303208991) + +[fips0866995] +centroid = (0.70359582054024294, -1.8116918537830322) +description = Saddle Ridge CDP, CO +station = ('kstk', 0.0088721401048374397) +zone = ('coz044', 0.00088479657069783586) + +[fips0867005] +centroid = (0.66473040987781273, -1.8525077571510289) +description = Saguache town, CO +station = ('k04v', 0.00042641996248393428) +zone = ('coz069', 0.0033233391862075544) + +[fips0867040] +centroid = (0.69791302849574943, -1.8405531069862011) +description = St. Ann Highlands CDP, CO +station = ('kbdu', 0.0031101046714203237) +zone = ('coz039', 0.0040388406272796364) + +[fips0867142] +centroid = (0.69492956267239026, -1.843890403408817) +description = St. Mary's CDP, CO +station = ('kbdu', 0.0067123218367093678) +zone = ('coz034', 0.0046003199754783269) + +[fips0867280] +centroid = (0.67248057932787864, -1.8500282202425979) +description = Salida city, CO +station = ('kank', 0.00069894913564595154) +zone = ('coz062', 0.0030252023306102747) + +[fips0867445] +centroid = (0.66739474224744477, -1.8254083091079933) +description = Salt Creek CDP, CO +station = ('kpub', 0.0014359974953974529) +zone = ('coz086', 0.0017032385970599598) + +[fips0867500] +centroid = (0.64941317346950789, -1.8424854133609616) +description = San Acacio CDP, CO +station = ('kals', 0.005720279416089157) +zone = ('coz071', 0.0026110913025142574) + +[fips0867830] +centroid = (0.65026489414448108, -1.8483161918727318) +description = Sanford town, CO +station = ('kals', 0.0031061637550611186) +zone = ('coz071', 0.002132309999998376) + +[fips0868105] +centroid = (0.6493033398996797, -1.8399691896316541) +description = San Luis town, CO +station = ('kals', 0.0073666948563858537) +zone = ('coz075', 0.0034987802296212404) + +[fips0868655] +centroid = (0.66313123449738054, -1.884976344118682) +description = Sawpit town, CO +station = ('ktex', 0.0014586702046229831) +zone = ('coz018', 0.0062980189006526912) + +[fips0868847] +centroid = (0.67623335137893181, -1.8276086107893974) +description = Security-Widefield CDP, CO +station = ('kfcs', 0.0010652744276153127) +zone = ('coz085', 0.0029275551445755508) + +[fips0868875] +centroid = (0.68835270826527017, -1.8320705275688285) +description = Sedalia CDP, CO +station = ('kapa', 0.0027418502712777395) +zone = ('coz036', 0.0040911006305008801) + +[fips0868930] +centroid = (0.71445171612777014, -1.7894105791263448) +description = Sedgwick town, CO +station = ('ksny', 0.0066789266152926423) +zone = ('coz050', 0.0025160555370864722) + +[fips0868985] +centroid = (0.64791014827756788, -1.8280538617348738) +description = Segundo CDP, CO +station = ('ktad', 0.0049478122437702186) +zone = ('coz074', 0.0043565941828199849) + +[fips0869040] +centroid = (0.68587891349007846, -1.7954118937593273) +description = Seibert town, CO +station = ('kitr', 0.007964177011807079) +zone = ('coz091', 0.0036032878228199451) + +[fips0869110] +centroid = (0.6987199116622389, -1.8383683561884323) +description = Seven Hills CDP, CO +station = ('kbdu', 0.0013479213996512762) +zone = ('coz039', 0.0026621364418969173) + +[fips0869150] +centroid = (0.70754488977226793, -1.8303289158681408) +description = Severance town, CO +station = ('kfnl', 0.0024928468223522661) +zone = ('coz038', 0.0031451767557912052) + +[fips0869480] +centroid = (0.69564513021241547, -1.833277876532188) +description = Shaw Heights CDP, CO +station = ('kbjc', 0.0014645033202563649) +zone = ('coz039', 0.0023845402835804335) + +[fips0869645] +centroid = (0.69198419738660222, -1.8329008854137572) +description = Sheridan city, CO +station = ('kapa', 0.0026600480681737574) +zone = ('coz040', 0.0035278750623190022) + +[fips0869700] +centroid = (0.67137016595117471, -1.7853695834026171) +description = Sheridan Lake town, CO +station = ('klaa', 0.0087854247535924315) +zone = ('coz096', 0.001370797829027376) + +[fips0869810] +centroid = (0.69530864818592353, -1.8326361364195221) +description = Sherrelwood CDP, CO +station = ('kbjc', 0.0020540010843084137) +zone = ('coz039', 0.0029655264742166443) + +[fips0870195] +centroid = (0.6902661650841091, -1.8788820732497384) +description = Silt town, CO +station = ('kril', 0.0012342679027167759) +zone = ('coz007', 0.0047634003077287141) + +[fips0870250] +centroid = (0.66548011605800694, -1.8395324209863422) +description = Silver Cliff town, CO +station = ('k04v', 0.010604430158958211) +zone = ('coz078', 0.00073204117780844018) + +[fips0870360] +centroid = (0.69281626565419807, -1.8452778703509827) +description = Silver Plume town, CO +station = ('kccu', 0.006952807144263007) +zone = ('coz034', 0.0023012856531358585) + +[fips0870525] +centroid = (0.69209307102534168, -1.8516624418344105) +description = Silverthorne town, CO +station = ('kccu', 0.0033516905423092019) +zone = ('coz034', 0.003365569269831589) + +[fips0870580] +centroid = (0.65992804917448777, -1.8791025083342652) +description = Silverton town, CO +station = ('ktex', 0.0041840289270279026) +zone = ('coz018', 0.0046004588072833886) + +[fips0870635] +centroid = (0.68313878147103235, -1.8165700141357715) +description = Simla town, CO +station = ('klic', 0.006027836369877893) +zone = ('coz084', 0.0054677788880412651) + +[fips0871625] +centroid = (0.67286495318904527, -1.8501959114771296) +description = Smeltertown CDP, CO +station = ('kank', 0.00068849214984267242) +zone = ('coz062', 0.0026218113664694641) + +[fips0871755] +centroid = (0.68445905323699596, -1.8665279695790069) +description = Snowmass Village town, CO +station = ('kase', 0.0010878176624504747) +zone = ('coz010', 0.0041980257127968209) + +[fips0871790] +centroid = (0.70390568629564199, -1.8080209725804828) +description = Snyder CDP, CO +station = ('kako', 0.005762260094414347) +zone = ('coz044', 0.003133983432164924) + +[fips0872320] +centroid = (0.64707886540813542, -1.8778574777123551) +description = Southern Ute CDP, CO +station = ('kdro', 0.0027459738603385435) +zone = ('coz022', 0.0041605067976708465) + +[fips0872395] +centroid = (0.65744966418336337, -1.8612776177632797) +description = South Fork town, CO +station = ('kcpw', 0.0043761773236393872) +zone = ('coz067', 0.0037668118590123978) + +[fips0873330] +centroid = (0.65283963876360807, -1.7910377670412716) +description = Springfield town, CO +station = ('kspd', 0.002122943173924881) +zone = ('coz099', 0.0017019442185288946) + +[fips0873715] +centroid = (0.64781071687008163, -1.824275695143204) +description = Starkville town, CO +station = ('ktad', 0.0028990454434721963) +zone = ('coz088', 0.0045122264083445919) + +[fips0873825] +centroid = (0.70643512216738735, -1.864418617004924) +description = Steamboat Springs city, CO +station = ('ksbs', 0.00091704495389441018) +zone = ('coz004', 0.0023461349859870842) + +[fips0873935] +centroid = (0.70896506418461569, -1.8010378404300835) +description = Sterling city, CO +station = ('kstk', 0.00092181312539156275) +zone = ('coz048', 0.0021132689622521787) + +[fips0874080] +centroid = (0.69004323417875191, -1.8291569796353042) +description = Stonegate CDP, CO +station = ('kapa', 0.0008224932293449149) +zone = ('coz040', 0.0039974385829349346) + +[fips0874275] +centroid = (0.64857260544845485, -1.8331926346515206) +description = Stonewall Gap CDP, CO +station = ('ktad', 0.0085549700186613436) +zone = ('coz074', 0.0011237150764698736) + +[fips0874375] +centroid = (0.69325715327654436, -1.8206958328611458) +description = Strasburg CDP, CO +station = ('kftg', 0.0032970082077797814) +zone = ('coz045', 0.0030683684340709638) + +[fips0874430] +centroid = (0.67669830709166312, -1.8287171217572165) +description = Stratmoor CDP, CO +station = ('kcos', 0.0011401178199722062) +zone = ('coz085', 0.0038765241795073371) + +[fips0874485] +centroid = (0.68596459170305879, -1.7907695622951176) +description = Stratton town, CO +station = ('kitr', 0.0044234936112919534) +zone = ('coz091', 4.4886858665734927e-05) + +[fips0874815] +centroid = (0.66728778847088255, -1.8092661079221481) +description = Sugar City town, CO +station = ('klhx', 0.0037720297313073355) +zone = ('coz089', 0.0023359567228844035) + +[fips0874980] +centroid = (0.69846113169404578, -1.8397108809023588) +description = Sugarloaf CDP, CO +station = ('kbdu', 0.0023825086231048821) +zone = ('coz039', 0.0035156562608596883) + +[fips0875585] +centroid = (0.69924265522650386, -1.8390462246166142) +description = Sunshine CDP, CO +station = ('kbdu', 0.0019553007321361608) +zone = ('coz039', 0.003374446103535263) + +[fips0875640] +centroid = (0.69693073973943453, -1.8353722716345813) +description = Superior town, CO +station = ('kbjc', 0.00062177845531905028) +zone = ('coz039', 0.00051495846719342298) + +[fips0875970] +centroid = (0.66347204494041734, -1.8086526421433646) +description = Swink town, CO +station = ('klhx', 0.0016555848644623527) +zone = ('coz093', 0.0022930193135063731) + +[fips0876190] +centroid = (0.69776245894117994, -1.8473327162925255) +description = Tabernash CDP, CO +station = ('k20v', 0.0071315689856887568) +zone = ('coz032', 0.0051406779853416587) + +[fips0876325] +centroid = (0.69839611817940894, -1.8387012602899577) +description = Tall Timber CDP, CO +station = ('kbdu', 0.0016223270633487453) +zone = ('coz039', 0.0027611924662558265) + +[fips0876795] +centroid = (0.66217933192334277, -1.8817738743807828) +description = Telluride town, CO +station = ('ktex', 0.0012742217805617247) +zone = ('coz018', 0.0042200297653300365) + +[fips0877235] +centroid = (0.68850427265751335, -1.8282234204717049) +description = The Pinery CDP, CO +station = ('kapa', 0.0024684969818904805) +zone = ('coz041', 0.0040698790984918416) + +[fips0877290] +centroid = (0.69670117658291963, -1.8316436025804981) +description = Thornton city, CO +station = ('keik', 0.0022633436695480361) +zone = ('coz039', 0.0029138633015559079) + +[fips0877510] +centroid = (0.70743587650718842, -1.8319184046712245) +description = Timnath town, CO +station = ('kfnl', 0.0016264145846955804) +zone = ('coz038', 0.0035957805472844077) + +[fips0877757] +centroid = (0.69776017255985978, -1.8302974475817273) +description = Todd Creek CDP, CO +station = ('keik', 0.002533725998946061) +zone = ('coz040', 0.0038180002387326302) + +[fips0878280] +centroid = (0.64948237577434931, -1.8976347284912065) +description = Towaoc CDP, CO +station = ('kcez', 0.0020001535027128559) +zone = ('coz021', 0.0029374654152873412) + +[fips0878335] +centroid = (0.67143514455922648, -1.7816400416839082) +description = Towner CDP, CO +station = ('klaa', 0.010858111997979758) +zone = ('ksz041', 0.0037542220715588324) + +[fips0878345] +centroid = (0.70247826876689856, -1.8124057981668533) +description = Trail Side CDP, CO +station = ('kstk', 0.0099861062335195681) +zone = ('coz044', 0.00050477137825813455) + +[fips0878610] +centroid = (0.64880969097404562, -1.8237117094487145) +description = Trinidad city, CO +station = ('ktad', 0.0018040408917053049) +zone = ('coz088', 0.0034168657771708791) + +[fips0879100] +centroid = (0.69503756364650371, -1.8326649867120577) +description = Twin Lakes CDP, CO +station = ('kbjc', 0.0022288139561695238) +zone = ('coz039', 0.0031521287879675021) + +[fips0879105] +centroid = (0.68248845433844674, -1.855616328175171) +description = Twin Lakes CDP, CO +station = ('klxv', 0.0022626061524894702) +zone = ('coz059', 0.001499591811992668) + +[fips0879270] +centroid = (0.65555725603530346, -1.7871570449027547) +description = Two Buttes town, CO +station = ('kspd', 0.0057216429955546473) +zone = ('coz099', 0.0047877101301553879) + +[fips0879785] +centroid = (0.69161629943357439, -1.8397452289820382) +description = Upper Bear Creek CDP, CO +station = ('kbjc', 0.0064077082884044026) +zone = ('coz036', 0.0031380790646173082) + +[fips0880040] +centroid = (0.69180736062679016, -1.8563881127704027) +description = Vail town, CO +station = ('kccu', 0.0041300660376286137) +zone = ('coz058', 0.0069825214270834704) + +[fips0880095] +centroid = (0.64796734271715561, -1.8268860619323644) +description = Valdez CDP, CO +station = ('ktad', 0.0041394067032927261) +zone = ('coz088', 0.0055590635927940226) + +[fips0880370] +centroid = (0.69871893427785781, -1.8362228927521256) +description = Valmont CDP, CO +station = ('kbdu', 0.0003031359608169553) +zone = ('coz039', 0.0014510161727915459) + +[fips0880755] +centroid = (0.69707668417148627, -1.7855926364810222) +description = Vernon CDP, CO +station = ('k2v5', 0.0029831234103431135) +zone = ('coz090', 0.0019202432034910531) + +[fips0880865] +centroid = (0.67559943034131498, -1.8350713768715374) +description = Victor city, CO +station = ('kfcs', 0.0051124207204355848) +zone = ('coz082', 0.0022691446896391672) + +[fips0881030] +centroid = (0.65229349033407402, -1.7880447193603191) +description = Vilas town, CO +station = ('kspd', 0.0028289575462230013) +zone = ('coz099', 0.0018345304630696389) + +[fips0881305] +centroid = (0.66749659966259112, -1.8231685978920791) +description = Vineland CDP, CO +station = ('kpub', 0.00086962149836081833) +zone = ('coz086', 0.0011557144806760705) + +[fips0881690] +centroid = (0.68595139701391383, -1.7932097769355011) +description = Vona town, CO +station = ('kitr', 0.0062813741328171272) +zone = ('coz091', 0.0018977146439443607) + +[fips0882130] +centroid = (0.71090025035264193, -1.85495924661838) +description = Walden town, CO +station = ('k33v', 0.00042768655367611471) +zone = ('coz030', 0.0010270864515219214) + +[fips0882350] +centroid = (0.65679303641217801, -1.8287984366470671) +description = Walsenburg city, CO +station = ('ktad', 0.0079960201791469659) +zone = ('coz087', 0.001457536872333669) + +[fips0882460] +centroid = (0.65251066165289973, -1.7851215895692014) +description = Walsh town, CO +station = ('kspd', 0.0050053678384980368) +zone = ('coz099', 0.0040639442506309386) + +[fips0882735] +centroid = (0.69943518249629122, -1.8416033239570038) +description = Ward town, CO +station = ('klmo', 0.0049806303539688254) +zone = ('coz039', 0.0052088493644838743) + +[fips0882905] +centroid = (0.69295042911379889, -1.82520867834815) +description = Watkins CDP, CO +station = ('kftg', 0.0014450402683799613) +zone = ('coz040', 0.0032390539003244057) + +[fips0883120] +centroid = (0.69534292645243267, -1.8319908707417674) +description = Welby CDP, CO +station = ('kbjc', 0.0024265673403040373) +zone = ('coz040', 0.002525114990894133) + +[fips0883175] +centroid = (0.7042125675380202, -1.8146077404577543) +description = Weldona CDP, CO +station = ('kstk', 0.010465657540432561) +zone = ('coz044', 0.002597735327525059) + +[fips0883230] +centroid = (0.71033794017423446, -1.8326973800229747) +description = Wellington town, CO +station = ('kfnl', 0.0043546302329891731) +zone = ('coz038', 0.0021885584996152452) + +[fips0883450] +centroid = (0.66556741742719161, -1.8407168363233308) +description = Westcliffe town, CO +station = ('k04v', 0.0096790634921762042) +zone = ('coz078', 0.00020825663649087531) + +[fips0883500] +centroid = (0.6832777969459537, -1.8354284363299103) +description = Westcreek CDP, CO +station = ('kaff', 0.0056623622308552522) +zone = ('coz081', 0.0049001868301527807) + +[fips0883835] +centroid = (0.69607552840595732, -1.8337201604179358) +description = Westminster city, CO +station = ('kbjc', 0.00092269181572085903) +zone = ('coz039', 0.0018371976321367972) + +[fips0884000] +centroid = (0.64831866004228966, -1.8302968367164891) +description = Weston CDP, CO +station = ('ktad', 0.0064029355648291099) +zone = ('coz074', 0.002582986004340127) + +[fips0884042] +centroid = (0.69345999544221115, -1.8357186496779321) +description = West Pleasant View CDP, CO +station = ('kbjc', 0.0033237570875441175) +zone = ('coz039', 0.0039958775686370534) + +[fips0884440] +centroid = (0.69415805732983871, -1.8343935608032329) +description = Wheat Ridge city, CO +station = ('kbjc', 0.002525841729971477) +zone = ('coz039', 0.0033617863813870607) + +[fips0884770] +centroid = (0.70208640744324069, -1.8164252041677336) +description = Wiggins town, CO +station = ('kgxy', 0.0082766698840604468) +zone = ('coz044', 0.0035690681086899792) + +[fips0885045] +centroid = (0.66594659020718749, -1.7927882101079744) +description = Wiley town, CO +station = ('klaa', 0.001633917573791776) +zone = ('coz098', 0.0056862351260246642) + +[fips0885155] +centroid = (0.66992690083282314, -1.8355833517543174) +description = Williamsburg town, CO +station = ('kfcs', 0.0078047223894247911) +zone = ('coz083', 0.0013048560895163889) + +[fips0885485] +centroid = (0.70646660790709337, -1.8311436006563866) +description = Windsor town, CO +station = ('kfnl', 0.0014106177572348905) +zone = ('coz038', 0.0043162249284806886) + +[fips0885705] +centroid = (0.6959976343614408, -1.8462584486846303) +description = Winter Park town, CO +station = ('kbdu', 0.0078591346939501632) +zone = ('coz034', 0.0048561646423090831) + +[fips0885760] +centroid = (0.69295924302652145, -1.8619048018299842) +description = Wolcott CDP, CO +station = ('kege', 0.0033233254725407854) +zone = ('coz008', 0.0048801543292742687) + +[fips0886090] +centroid = (0.68066205454269735, -1.8336307297470638) +description = Woodland Park city, CO +station = ('kaff', 0.0033400490612840476) +zone = ('coz081', 0.0023543248873032024) + +[fips0886117] +centroid = (0.68250791475960659, -1.8298660894570971) +description = Woodmoor CDP, CO +station = ('kaff', 0.002438779693448636) +zone = ('coz081', 0.005480813729714768) + +[fips0886200] +centroid = (0.68540592926278809, -1.8655522956205568) +description = Woody Creek CDP, CO +station = ('kase', 0.00071722457231289817) +zone = ('coz010', 0.00303680965492318) + +[fips0886310] +centroid = (0.69952714389457893, -1.7842260436767106) +description = Wray city, CO +station = ('k2v5', 0.0003503696119767224) +zone = ('coz090', 0.0029402091042855221) + +[fips0886475] +centroid = (0.70080198474011313, -1.8659052535551877) +description = Yampa town, CO +station = ('ksbs', 0.0063715998825936426) +zone = ('coz005', 0.0042016737355411848) + +[fips0886750] +centroid = (0.70030289038721283, -1.7927605291860378) +description = Yuma city, CO +station = ('kako', 0.006698850028520712) +zone = ('coz090', 0.0044549888843565377) + +[fips09001] +centroid = (0.71956614170135169, -1.2804914711605975) +description = Fairfield County, CT +station = ('kdxr', 0.00286099238928184) +zone = ('ctz009', 0.001931156856447263) + +[fips0900100000] +centroid = (0.71694542510972714, -1.2778693059456936) +description = County subdivisions not defined, CT +station = ('kbdr', 0.0018957446477413961) +zone = ('ctz009', 0.00301406465616203) + +[fips0900104720] +centroid = (0.72203883691911463, -1.2808884637522562) +description = Bethel town, CT +station = ('kdxr', 0.0012302175697910388) +zone = ('ctz005', 0.00045518795640351527) + +[fips0900108070] +centroid = (0.71885549598981713, -1.2775065567139592) +description = Bridgeport town, CT +station = ('kbdr', 0.00089595972245794589) +zone = ('ctz009', 0.0032991960244994041) + +[fips0900108980] +centroid = (0.72378603367340866, -1.280961139262309) +description = Brookfield town, CT +station = ('kdxr', 0.0021500404883322915) +zone = ('ctz005', 0.0020793999440553469) + +[fips0900118500] +centroid = (0.72259840693059663, -1.282333282213642) +description = Danbury town, CT +station = ('kdxr', 0.00063069171695350238) +zone = ('ctz005', 0.0016669743593830711) + +[fips0900118850] +centroid = (0.71649518252259015, -1.2824629427237726) +description = Darien town, CT +station = ('khpn', 0.0029100767151164753) +zone = ('ctz009', 0.0014821792400828565) + +[fips0900123890] +centroid = (0.7202091559043714, -1.2793347018389605) +description = Easton town, CT +station = ('kbdr', 0.002785278559320013) +zone = ('ctz005', 0.0017411516401123477) + +[fips0900126620] +centroid = (0.71865572560363389, -1.2788384523727412) +description = Fairfield town, CT +station = ('kbdr', 0.0018295623187899734) +zone = ('ctz009', 0.0022860381965696648) + +[fips0900133620] +centroid = (0.71634351341059188, -1.2850582298681956) +description = Greenwich town, CT +station = ('khpn', 0.0010255395945316164) +zone = ('nyz071', 0.0022544466503025455) + +[fips0900148620] +centroid = (0.72150577845897057, -1.2779794362214947) +description = Monroe town, CT +station = ('koxc', 0.0027744165312201569) +zone = ('ctz005', 0.0018509840503594952) + +[fips0900150580] +centroid = (0.71839591589118201, -1.2828376649141757) +description = New Canaan town, CT +station = ('khpn', 0.0030900529912780521) +zone = ('ctz009', 0.0010239739961362116) + +[fips0900150860] +centroid = (0.72399889402898188, -1.2826009284544355) +description = New Fairfield town, CT +station = ('kdxr', 0.0020151411504464715) +zone = ('ctz005', 0.0027821166576463109) + +[fips0900152980] +centroid = (0.72253306180340193, -1.2792071182706399) +description = Newtown town, CT +station = ('koxc', 0.0025664198716927465) +zone = ('ctz005', 0.0012056087421996177) + +[fips0900156060] +centroid = (0.71720359421268221, -1.2814171763425628) +description = Norwalk town, CT +station = ('kbdr', 0.0039808042543813789) +zone = ('ctz009', 0.00068203429332925041) + +[fips0900163480] +centroid = (0.7209154906526537, -1.28094223734651) +description = Redding town, CT +station = ('kdxr', 0.0015991152177153862) +zone = ('ctz005', 0.00091712029554380449) + +[fips0900163970] +centroid = (0.72093004669861527, -1.2828347851209101) +description = Ridgefield town, CT +station = ('kdxr', 0.0010796566310034891) +zone = ('ctz005', 0.0019855992265086593) + +[fips0900168170] +centroid = (0.7208997826893857, -1.2765170772011261) +description = Shelton town, CT +station = ('kbdr', 0.0024070732870480668) +zone = ('ctz005', 0.0030535488116750953) + +[fips0900168310] +centroid = (0.72572868985063343, -1.2828426216492514) +description = Sherman town, CT +station = ('kdxr', 0.0037516586003767918) +zone = ('nyz066', 0.003437770836992168) + +[fips0900173070] +centroid = (0.71697876089844015, -1.2836203403639403) +description = Stamford town, CT +station = ('khpn', 0.0020389270781554542) +zone = ('ctz009', 0.0017032304518918163) + +[fips0900174190] +centroid = (0.71917120859821049, -1.2763270282988763) +description = Stratford town, CT +station = ('kbdr', 0.00068074365404572105) +zone = ('ctz005', 0.0040137036176602142) + +[fips0900177200] +centroid = (0.720347839766735, -1.2777886891875441) +description = Trumbull town, CT +station = ('kbdr', 0.002121559219577148) +zone = ('ctz005', 0.0024235162938723411) + +[fips0900183430] +centroid = (0.71956614170135169, -1.2804914711605975) +description = Weston town, CT +station = ('kdxr', 0.00286099238928184) +zone = ('ctz009', 0.001931156856447263) + +[fips0900183500] +centroid = (0.71771432991169326, -1.2800839193269642) +description = Westport town, CT +station = ('kbdr', 0.0028689806746712071) +zone = ('ctz009', 0.0012124472525313129) + +[fips0900186370] +centroid = (0.71918965672840407, -1.2817280369356354) +description = Wilton town, CT +station = ('kdxr', 0.0028584897744500576) +zone = ('ctz009', 0.0013344297143970515) + +[fips09003] +centroid = (0.72965327211325293, -1.2694288587764642) +description = Hartford County, CT +station = ('khfd', 0.0016660784590931436) +zone = ('ctz002', 6.2414701455476973e-06) + +[fips0900302060] +centroid = (0.72932350960438119, -1.271508069514365) +description = Avon town, CT +station = ('kbdl', 0.0033642578671383427) +zone = ('ctz002', 0.0015875144336919117) + +[fips0900304300] +centroid = (0.72615256051277288, -1.2702237340776998) +description = Berlin town, CT +station = ('kmmk', 0.0017076751495839785) +zone = ('ctz002', 0.0035568770758263074) + +[fips0900305910] +centroid = (0.73033182121984341, -1.2695690959818617) +description = Bloomfield town, CT +station = ('kbdl', 0.0017149370116610254) +zone = ('ctz002', 0.00068079714978452324) + +[fips0900308490] +centroid = (0.72748077352683305, -1.2730562289207614) +description = Bristol town, CT +station = ('kmmk', 0.0032015281081805773) +zone = ('ctz002', 0.0034755286021064028) + +[fips0900310100] +centroid = (0.72880615910750501, -1.2733496536746067) +description = Burlington town, CT +station = ('kmmk', 0.0045051410726936469) +zone = ('ctz002', 0.0030470696273378955) + +[fips0900312270] +centroid = (0.7305725893901559, -1.2725346023672177) +description = Canton town, CT +station = ('kbdl', 0.0032300363944562163) +zone = ('ctz002', 0.0024891754934788309) + +[fips0900322070] +centroid = (0.7318116509860243, -1.2696463617078475) +description = East Granby town, CT +station = ('kbdl', 0.0008080708019068309) +zone = ('ctz002', 0.0021585221092005058) + +[fips0900322630] +centroid = (0.72886162567113333, -1.2672424848224908) +description = East Hartford town, CT +station = ('khfd', 0.00072954338715613693) +zone = ('ctz002', 0.0018136459841960773) + +[fips0900324800] +centroid = (0.73136294428862902, -1.2664889738245273) +description = East Windsor town, CT +station = ('kbdl', 0.0016262557783817194) +zone = ('ctz002', 0.0027731919754640571) + +[fips0900325990] +centroid = (0.73275891098425161, -1.2663332904552493) +description = Enfield town, CT +station = ('kbdl', 0.0018794027662084182) +zone = ('maz011', 0.0025116826459960751) + +[fips0900327600] +centroid = (0.72833326214667704, -1.271351077148148) +description = Farmington town, CT +station = ('khfd', 0.0025149698404416344) +zone = ('ctz002', 0.0019540222829989391) + +[fips0900331240] +centroid = (0.72766062970625101, -1.2662743157798244) +description = Glastonbury town, CT +station = ('khfd', 0.0014655539125706838) +zone = ('ctz002', 0.0030865272064001868) + +[fips0900332640] +centroid = (0.73254051793494968, -1.2711260693009807) +description = Granby town, CT +station = ('kbdl', 0.0020187477449526881) +zone = ('ctz002', 0.0031466524889679098) + +[fips0900337070] +centroid = (0.72895500078611508, -1.2685635768932029) +description = Hartford town, CT +station = ('khfd', 0.00071722533622261956) +zone = ('ctz002', 0.00095414676166055592) + +[fips0900337140] +centroid = (0.73305931705510496, -1.2732879737388412) +description = Hartland town, CT +station = ('kbaf', 0.0042181361992759221) +zone = ('maz009', 0.0029146672950346752) + +[fips0900344700] +centroid = (0.72911548381083591, -1.2657901614453213) +description = Manchester town, CT +station = ('khfd', 0.0017910540660339073) +zone = ('ctz003', 0.0028132015031309826) + +[fips0900345820] +centroid = (0.72669294935577533, -1.2645608911465567) +description = Marlborough town, CT +station = ('khfd', 0.0030637278726323449) +zone = ('ctz007', 0.0027579420629377936) + +[fips0900350440] +centroid = (0.72739310563850534, -1.2703581593366886) +description = New Britain town, CT +station = ('khfd', 0.0020322072062925168) +zone = ('ctz002', 0.0023703735359258101) + +[fips0900352140] +centroid = (0.72757530055912101, -1.2693925908346078) +description = Newington town, CT +station = ('khfd', 0.0013279555367359606) +zone = ('ctz002', 0.0020841844465612491) + +[fips0900360120] +centroid = (0.72734837284977671, -1.2715497479769025) +description = Plainville town, CT +station = ('kmmk', 0.0027596229780081057) +zone = ('ctz002', 0.0028017403622224808) + +[fips0900365370] +centroid = (0.72704524406529036, -1.2681872839064727) +description = Rocky Hill town, CT +station = ('khfd', 0.0013476021306195296) +zone = ('ctz002', 0.00277292946105452) + +[fips0900368940] +centroid = (0.730896452686156, -1.2711071673851817) +description = Simsbury town, CT +station = ('kbdl', 0.0021309644862975456) +zone = ('ctz002', 0.0017599868141092579) + +[fips0900370550] +centroid = (0.72617699512230072, -1.271974735649763) +description = Southington town, CT +station = ('kmmk', 0.0016826323418088495) +zone = ('ctz006', 0.0029117139729863146) + +[fips0900371390] +centroid = (0.73021242324571445, -1.2667222021724713) +description = South Windsor town, CT +station = ('khfd', 0.0020554402180526393) +zone = ('ctz002', 0.0020900494484932964) + +[fips0900374540] +centroid = (0.73303680230775425, -1.2684835011871214) +description = Suffield town, CT +station = ('kbdl', 0.0011635897966712364) +zone = ('maz011', 0.0031938805149899232) + +[fips0900382590] +centroid = (0.72896412885810302, -1.2698133199040933) +description = West Hartford town, CT +station = ('khfd', 0.0014845089761358217) +zone = ('ctz002', 0.00075256105490322152) + +[fips0900384900] +centroid = (0.72784565206025498, -1.2683185675728079) +description = Wethersfield town, CT +station = ('khfd', 0.000594242619911083) +zone = ('ctz002', 0.0019932323650816955) + +[fips0900387000] +centroid = (0.73078745687436897, -1.2684194825101582) +description = Windsor town, CT +station = ('kbdl', 0.0010925454709420539) +zone = ('ctz002', 0.0013549641220456413) + +[fips0900387070] +centroid = (0.73177798358475332, -1.2680099060945926) +description = Windsor Locks town, CT +station = ('kbdl', 0.00042304446676538169) +zone = ('ctz002', 0.0023668758818588703) + +[fips09005] +centroid = (0.72940620330434058, -1.2781993477072457) +description = Litchfield County, CT +station = ('koxc', 0.0055476611443896267) +zone = ('ctz001', 0.0016380006915554051) + +[fips0900502760] +centroid = (0.73191617875492621, -1.273617736247713) +description = Barkhamsted town, CT +station = ('kbdl', 0.0037601350549855165) +zone = ('maz009', 0.0040778270484043725) + +[fips0900504930] +centroid = (0.72668123819649444, -1.2777801719807942) +description = Bethlehem town, CT +station = ('koxc', 0.0028491962650615708) +zone = ('ctz013', 0.00033204484103162209) + +[fips0900508210] +centroid = (0.72466583669604645, -1.2803926157117644) +description = Bridgewater town, CT +station = ('koxc', 0.0030462184622998432) +zone = ('ctz013', 0.0025689684055871342) + +[fips0900510940] +centroid = (0.73239179842938718, -1.2794510105803134) +description = Canaan town, CT +station = ('kpsf', 0.0082153509177615696) +zone = ('ctz001', 0.0015470567122103079) + +[fips0900516050] +centroid = (0.73313206237832806, -1.2752026871947417) +description = Colebrook town, CT +station = ('kbaf', 0.005304140085777064) +zone = ('ctz001', 0.003204046722555151) + +[fips0900517240] +centroid = (0.73041416585395236, -1.2798515985502312) +description = Cornwall town, CT +station = ('koxc', 0.0068888983928895916) +zone = ('ctz001', 0.0012087816840243874) + +[fips0900532290] +centroid = (0.73041221108519017, -1.2781744593121125) +description = Goshen town, CT +station = ('koxc', 0.00652483454518749) +zone = ('ctz001', 0.00065542435285784596) + +[fips0900537280] +centroid = (0.7288729703112713, -1.2751452833156436) +description = Harwinton town, CT +station = ('koxc', 0.0049445350366773789) +zone = ('ctz013', 0.0031923031774255136) + +[fips0900540290] +centroid = (0.72832209203946441, -1.2820165922208675) +description = Kent town, CT +station = ('kpou', 0.0058423059699922219) +zone = ('nyz066', 0.0022041415769717462) + +[fips0900543370] +centroid = (0.72851708022349726, -1.2774550520477328) +description = Litchfield town, CT +station = ('koxc', 0.0045627600096533718) +zone = ('ctz013', 0.0019461995081353099) + +[fips0900549460] +centroid = (0.72770319828670715, -1.2777555453850487) +description = Morris town, CT +station = ('koxc', 0.0038160181382409222) +zone = ('ctz013', 0.0011026677433237375) + +[fips0900551350] +centroid = (0.73026392791194072, -1.2740673156097342) +description = New Hartford town, CT +station = ('kbdl', 0.0044026447681617476) +zone = ('ctz001', 0.0033585231574106596) + +[fips0900552630] +centroid = (0.72613795210693366, -1.2814404590347843) +description = New Milford town, CT +station = ('kdxr', 0.0042322941551890189) +zone = ('ctz013', 0.0024605098719001784) + +[fips0900553470] +centroid = (0.73251315117227833, -1.2772051383521399) +description = Norfolk town, CT +station = ('kbaf', 0.0068986441240191567) +zone = ('ctz001', 0.0017489496159527101) + +[fips0900554030] +centroid = (0.73342601073094904, -1.2792515718066881) +description = North Canaan town, CT +station = ('kpsf', 0.0071771528563071519) +zone = ('ctz001', 0.0024649534672267111) + +[fips0900560750] +centroid = (0.72721583254638034, -1.274553128007027) +description = Plymouth town, CT +station = ('koxc', 0.0034862140330589775) +zone = ('ctz013', 0.0027986842780967029) + +[fips0900565930] +centroid = (0.72528026240591859, -1.2792567205279815) +description = Roxbury town, CT +station = ('koxc', 0.0024709458451471706) +zone = ('ctz013', 0.0015791479617703694) + +[fips0900566420] +centroid = (0.73279788418644876, -1.2815127854789869) +description = Salisbury town, CT +station = ('kpsf', 0.0080163246740538267) +zone = ('ctz001', 0.0028778394599806088) + +[fips0900567960] +centroid = (0.73060810684043398, -1.2819305998486219) +description = Sharon town, CT +station = ('kpou', 0.0069073971567150194) +zone = ('ctz001', 0.0026210630030258863) + +[fips0900575730] +centroid = (0.7271895304345527, -1.2757636534696251) +description = Thomaston town, CT +station = ('koxc', 0.0032063046848993513) +zone = ('ctz013', 0.0019133931091159732) + +[fips0900576570] +centroid = (0.73014548986890038, -1.2763858109880835) +description = Torrington town, CT +station = ('koxc', 0.0061247841417561635) +zone = ('ctz001', 0.0017797325528736128) + +[fips0900579510] +centroid = (0.72842808588493801, -1.2800738836837653) +description = Warren town, CT +station = ('koxc', 0.0051863807968268857) +zone = ('ctz013', 0.0022462184516169772) + +[fips0900579720] +centroid = (0.7270374075369489, -1.2795039289632339) +description = Washington town, CT +station = ('koxc', 0.0037989885572382986) +zone = ('ctz013', 0.001029686079524562) + +[fips0900580490] +centroid = (0.72635793340585497, -1.2760863648483187) +description = Watertown town, CT +station = ('koxc', 0.0023502799901749475) +zone = ('ctz013', 0.001625173672507805) + +[fips0900586440] +centroid = (0.73169209593226259, -1.2760089420427003) +description = Winchester town, CT +station = ('kbaf', 0.0066397386346801123) +zone = ('ctz001', 0.0019377019140449717) + +[fips0900587910] +centroid = (0.72538732090223601, -1.2776874077310509) +description = Woodbury town, CT +station = ('koxc', 0.0016647946428094953) +zone = ('ctz013', 0.0013317666920619571) + +[fips09007] +centroid = (0.72316888524990353, -1.2657865486137696) +description = Middlesex County, CT +station = ('ksnc', 0.00091597816704023398) +zone = ('ctz007', 0.0011742175701664667) + +[fips0900700000] +centroid = (0.71950824913006317, -1.2642648658521256) +description = County subdivisions not defined, CT +station = ('ksnc', 0.0029196763693614667) +zone = ('ctz011', 0.0016893076223341973) + +[fips0900714300] +centroid = (0.72273531055712303, -1.265097283185572) +description = Chester town, CT +station = ('ksnc', 0.00052818235600961901) +zone = ('ctz011', 0.0016123656936283127) + +[fips0900715350] +centroid = (0.72073598353908597, -1.2658879871498956) +description = Clinton town, CT +station = ('ksnc', 0.0015812748690292081) +zone = ('ctz011', 0.0011454595821435445) + +[fips0900718080] +centroid = (0.72634583827413868, -1.2681842295802819) +description = Cromwell town, CT +station = ('khfd', 0.0020438421464858375) +zone = ('ctz007', 0.0024975328930198523) + +[fips0900719130] +centroid = (0.7220046459190681, -1.2649699963232239) +description = Deep River town, CT +station = ('ksnc', 0.00046575306027650109) +zone = ('ctz011', 0.00089222385708602242) + +[fips0900720810] +centroid = (0.723769226152712, -1.2685842764981314) +description = Durham town, CT +station = ('kmmk', 0.0021163586685897205) +zone = ('ctz007', 0.0017652118165045129) + +[fips0900722280] +centroid = (0.72390429718352378, -1.2634808464988376) +description = East Haddam town, CT +station = ('ksnc', 0.0021990847171844685) +zone = ('ctz011', 0.0028181132267419851) + +[fips0900722490] +centroid = (0.72549387325307013, -1.2655302819196994) +description = East Hampton town, CT +station = ('ksnc', 0.003209121724332182) +zone = ('ctz007', 0.0013595812154423006) + +[fips0900726270] +centroid = (0.721647446834355, -1.2638350087106522) +description = Essex town, CT +station = ('ksnc', 0.0013798882280593803) +zone = ('ctz011', 0.00067083844164108318) + +[fips0900735230] +centroid = (0.72398463468899321, -1.2662040313708467) +description = Haddam town, CT +station = ('ksnc', 0.0017874358023050765) +zone = ('ctz007', 0.00030092070238278956) + +[fips0900740710] +centroid = (0.72223015991171835, -1.2667016596471754) +description = Killingworth town, CT +station = ('ksnc', 0.00092912221480998111) +zone = ('ctz011', 0.00196112501050886) + +[fips0900747080] +centroid = (0.72455883055960679, -1.2691658027516035) +description = Middlefield town, CT +station = ('kmmk', 0.0015099198475160634) +zone = ('ctz007', 0.0021464712269269985) + +[fips0900747360] +centroid = (0.72517617096932963, -1.2681164235388418) +description = Middletown town, CT +station = ('kmmk', 0.0023650348147340305) +zone = ('ctz007', 0.0016175600786457493) + +[fips0900757320] +centroid = (0.72070760448544857, -1.2633320397268124) +description = Old Saybrook town, CT +station = ('ksnc', 0.0022482185431396879) +zone = ('ctz011', 0.00099267246087366605) + +[fips0900761800] +centroid = (0.72603661829056276, -1.2669182899139328) +description = Portland town, CT +station = ('khfd', 0.0024782301673461774) +zone = ('ctz007', 0.0018200407874566467) + +[fips0900781680] +centroid = (0.72088547098951927, -1.2649800319664228) +description = Westbrook town, CT +station = ('ksnc', 0.0014463267660407707) +zone = ('ctz011', 0.00047865831317325629) + +[fips09009] +centroid = (0.72168870641787208, -1.2723485851755403) +description = New Haven County, CT +station = ('khvn', 0.0014662797614000368) +zone = ('ctz010', 0.0013025530820700145) + +[fips0900900000] +centroid = (0.7188568922532188, -1.2708673242393727) +description = County subdivisions not defined, CT +station = ('khvn', 0.0016454580860189557) +zone = ('ctz010', 0.0021525845538966346) + +[fips0900901220] +centroid = (0.72159327181437305, -1.2753090301060654) +description = Ansonia town, CT +station = ('koxc', 0.0025658650834647135) +zone = ('ctz006', 0.0023175472387029208) + +[fips0900903250] +centroid = (0.72332875740938618, -1.2749966161699586) +description = Beacon Falls town, CT +station = ('koxc', 0.0012698599150772108) +zone = ('ctz006', 0.00082381130465015171) + +[fips0900904580] +centroid = (0.72296710773508044, -1.273988897966442) +description = Bethany town, CT +station = ('koxc', 0.0021031625473433343) +zone = ('ctz006', 0.0007304099245472594) + +[fips0900907310] +centroid = (0.72046434049430563, -1.270431288632347) +description = Branford town, CT +station = ('khvn', 0.0012402940135390807) +zone = ('ctz010', 0.00063644665184318049) + +[fips0900914160] +centroid = (0.72451805966828009, -1.2724081532629108) +description = Cheshire town, CT +station = ('kmmk', 0.00092240356180478262) +zone = ('ctz006', 0.0014559903223422298) + +[fips0900919550] +centroid = (0.72127775119219761, -1.2755314723192324) +description = Derby town, CT +station = ('koxc', 0.002822350585495419) +zone = ('ctz006', 0.0026740853909383031) + +[fips0900922910] +centroid = (0.72070671436752998, -1.2716293349907934) +description = East Haven town, CT +station = ('khvn', 0.00056610665851520268) +zone = ('ctz010', 0.00064682071125277726) + +[fips0900934950] +centroid = (0.72150213072083391, -1.2689606392980317) +description = Guilford town, CT +station = ('ksnc', 0.0027376411457416109) +zone = ('ctz010', 0.001515076422510885) + +[fips0900935650] +centroid = (0.72252028599327733, -1.2727326972373192) +description = Hamden town, CT +station = ('khvn', 0.0023372955516654118) +zone = ('ctz006', 0.0015190640210679992) + +[fips0900944560] +centroid = (0.72163690504567302, -1.2675533279622708) +description = Madison town, CT +station = ('ksnc', 0.0016957098464924032) +zone = ('ctz010', 0.0025673017803981399) + +[fips0900946520] +centroid = (0.72495351931665275, -1.2705044528345906) +description = Meriden town, CT +station = ('kmmk', 0.0006165143448051138) +zone = ('ctz006', 0.0029129379422050245) + +[fips0900946940] +centroid = (0.72474257882325666, -1.2762373881884941) +description = Middlebury town, CT +station = ('koxc', 0.00073431691330815268) +zone = ('ctz006', 0.0019665057878549973) + +[fips0900947535] +centroid = (0.71949620635822442, -1.2751380925591251) +description = Milford town, CT +station = ('kbdr', 0.0013897572342849546) +zone = ('ctz010', 0.003548098552359867) + +[fips0900949950] +centroid = (0.72411261968304186, -1.2749958656783804) +description = Naugatuck town, CT +station = ('koxc', 0.0010688968014131582) +zone = ('ctz006', 0.00084507608580485633) + +[fips0900952070] +centroid = (0.72100963371250615, -1.2727805367121163) +description = New Haven town, CT +station = ('khvn', 0.00094417812479726177) +zone = ('ctz010', 0.0014362244305653486) + +[fips0900953890] +centroid = (0.72193518181483873, -1.2703355922294601) +description = North Branford town, CT +station = ('khvn', 0.0021313016218967328) +zone = ('ctz010', 0.0010084721056677305) + +[fips0900954870] +centroid = (0.72224040499442754, -1.2715831535787856) +description = North Haven town, CT +station = ('khvn', 0.0020322175096441986) +zone = ('ctz010', 0.0013427774288609859) + +[fips0900957600] +centroid = (0.72055832647452545, -1.2745203507236744) +description = Orange town, CT +station = ('khvn', 0.0018807370280636497) +zone = ('ctz010', 0.0027804564083878554) + +[fips0900958300] +centroid = (0.72333427264982242, -1.2766734237955197) +description = Oxford town, CT +station = ('koxc', 0.00071277302555144289) +zone = ('ctz006', 0.0020263041335057473) + +[fips0900962290] +centroid = (0.72429851470167184, -1.273665104483612) +description = Prospect town, CT +station = ('kmmk', 0.0018845847213133675) +zone = ('ctz006', 0.00065545840596306745) + +[fips0900967610] +centroid = (0.72230681477246594, -1.275548210026759) +description = Seymour town, CT +station = ('koxc', 0.0018336516525737873) +zone = ('ctz006', 0.0018048685163009617) + +[fips0900969640] +centroid = (0.72390780529532028, -1.278106042405434) +description = Southbury town, CT +station = ('koxc', 0.0012700942112227023) +zone = ('ctz013', 0.0027509563715722375) + +[fips0900978740] +centroid = (0.72364822247567129, -1.2706958805469493) +description = Wallingford town, CT +station = ('kmmk', 0.0010212786007967576) +zone = ('ctz010', 0.0026419212746880668) + +[fips0900980070] +centroid = (0.72533265719006346, -1.2747306279919548) +description = Waterbury town, CT +station = ('koxc', 0.001821029638578077) +zone = ('ctz006', 0.0017212692951323527) + +[fips0900982870] +centroid = (0.72033441818478716, -1.2735230870423775) +description = West Haven town, CT +station = ('khvn', 0.0011081854148855463) +zone = ('ctz010', 0.0021057141248293117) + +[fips0900987560] +centroid = (0.72599249636707242, -1.2735601927422746) +description = Wolcott town, CT +station = ('kmmk', 0.002258410229409685) +zone = ('ctz006', 0.0023201697352794042) + +[fips0900987700] +centroid = (0.72192992837379022, -1.2741582821703481) +description = Woodbridge town, CT +station = ('khvn', 0.0023143504876431999) +zone = ('ctz006', 0.001770684752821307) + +[fips09011] +centroid = (0.72393866271649565, -1.2584426394536905) +description = New London County, CT +station = ('kgon', 0.0026306707220499848) +zone = ('ctz008', 0.00092791208946969861) + +[fips0901100000] +centroid = (0.72003017238957945, -1.2605848914841735) +description = County subdivisions not defined, CT +station = ('kgon', 0.0026874287920155421) +zone = ('ctz012', 0.0024631073508117932) + +[fips0901106820] +centroid = (0.72509805003201033, -1.2596953669776019) +description = Bozrah town, CT +station = ('kijd', 0.0035784743491935858) +zone = ('ctz008', 0.0010202250515873805) + +[fips0901115910] +centroid = (0.72531305714256356, -1.2626453224793226) +description = Colchester town, CT +station = ('ksnc', 0.003692403497837944) +zone = ('ctz008', 0.0032322181766743503) + +[fips0901123400] +centroid = (0.72181087946551181, -1.2606536050968244) +description = East Lyme town, CT +station = ('kgon', 0.0023952770078604119) +zone = ('ctz012', 0.0016622914080260873) + +[fips0901129910] +centroid = (0.72642718807057416, -1.2591260580288937) +description = Franklin town, CT +station = ('kijd', 0.0023095993581119779) +zone = ('ctz008', 0.0016619066574679185) + +[fips0901133900] +centroid = (0.72579120754443993, -1.2552598395764611) +description = Griswold town, CT +station = ('kwst', 0.0043929492563795757) +zone = ('ctz008', 0.0025037508708130275) + +[fips0901134250] +centroid = (0.72165130401200195, -1.2571839778103222) +description = Groton town, CT +station = ('kgon', 0.00034869815676803805) +zone = ('ctz012', 0.00097489921514934646) + +[fips0901142390] +centroid = (0.72663214208463589, -1.2608274224370304) +description = Lebanon town, CT +station = ('kijd', 0.0021726222827479582) +zone = ('ctz008', 0.0025507374750326013) + +[fips0901142600] +centroid = (0.72310966622838324, -1.2569914156339497) +description = Ledyard town, CT +station = ('kgon', 0.0017506507155041369) +zone = ('ctz012', 0.0016311434557017572) + +[fips0901143230] +centroid = (0.7261052446367513, -1.2568510562555042) +description = Lisbon town, CT +station = ('kijd', 0.0034024758390251613) +zone = ('ctz008', 0.0016814444936373454) + +[fips0901144210] +centroid = (0.72254213751551233, -1.2624236307577343) +description = Lyme town, CT +station = ('ksnc', 0.0022964883261940281) +zone = ('ctz011', 0.0020567225398367963) + +[fips0901148900] +centroid = (0.72368157571767688, -1.2593522701532449) +description = Montville town, CT +station = ('kgon', 0.0026652066352843089) +zone = ('ctz008', 0.001394011572294695) + +[fips0901150] +centroid = (0.72159327181437305, -1.2753090301060654) +description = Ansonia city, CT +station = ('koxc', 0.0025658650834647135) +zone = ('ctz006', 0.0023175472387029208) + +[fips0901152350] +centroid = (0.72135517399781601, -1.2582762397628053) +description = New London town, CT +station = ('kgon', 0.0005775354250301259) +zone = ('ctz012', 0.00055331337148464019) + +[fips0901155500] +centroid = (0.72380870550039211, -1.2544094977115969) +description = North Stonington town, CT +station = ('kwst', 0.0023175131576409947) +zone = ('ctz012', 0.003578890289729934) + +[fips0901156270] +centroid = (0.72514695415765129, -1.258198921676942) +description = Norwich town, CT +station = ('kijd', 0.0037342686758222348) +zone = ('ctz008', 0.00030926801140175917) + +[fips0901157040] +centroid = (0.72103600563750381, -1.2619732659975498) +description = Old Lyme town, CT +station = ('ksnc', 0.0029040351117820252) +zone = ('ctz011', 0.0018946162619097938) + +[fips0901162150] +centroid = (0.72463717838972874, -1.2567522008066714) +description = Preston town, CT +station = ('kgon', 0.0032839157213030695) +zone = ('ctz008', 0.0012312554418207721) + +[fips0901166210] +centroid = (0.72412577946560186, -1.2611466431572202) +description = Salem town, CT +station = ('ksnc', 0.0037244369564479098) +zone = ('ctz008', 0.0022078192188029781) + +[fips0901171670] +centroid = (0.72667778244457548, -1.2579901628451109) +description = Sprague town, CT +station = ('kijd', 0.0024269785169954042) +zone = ('ctz008', 0.0018348198780922863) + +[fips0901173770] +centroid = (0.72193446622984547, -1.2550894605348812) +description = Stonington town, CT +station = ('kgon', 0.0018931068440893506) +zone = ('ctz012', 0.0025163396434303141) + +[fips0901178600] +centroid = (0.7256938181721786, -1.2536914343507413) +description = Voluntown town, CT +station = ('kwst', 0.004020969046070872) +zone = ('riz003', 0.0026436969753103178) + +[fips0901180280] +centroid = (0.72172541069204155, -1.2592008104807566) +description = Waterford town, CT +station = ('kgon', 0.0013099783176440919) +zone = ('ctz012', 0.00059429322064412436) + +[fips09013] +centroid = (0.73056124475001794, -1.2625882327594899) +description = Tolland County, CT +station = ('kijd', 0.002786494143896201) +zone = ('ctz003', 7.917910324987227e-05) + +[fips0901301080] +centroid = (0.72837794257552824, -1.2631760771048541) +description = Andover town, CT +station = ('kijd', 0.0025092395207207525) +zone = ('ctz003', 0.0021867318393840505) + +[fips0901306260] +centroid = (0.72892957133891356, -1.2642742033636241) +description = Bolton town, CT +station = ('khfd', 0.0028193263949103618) +zone = ('ctz003', 0.0020540213168107747) + +[fips0901316400] +centroid = (0.72770677621167379, -1.2619675413176032) +description = Columbia town, CT +station = ('kijd', 0.0018618528737375597) +zone = ('ctz003', 0.0028298582267822668) + +[fips0901317800] +centroid = (0.72920028935919035, -1.2626413605819207) +description = Coventry town, CT +station = ('kijd', 0.0021568027377794228) +zone = ('ctz003', 0.0013109244499178107) + +[fips0901325360] +centroid = (0.73155767067327404, -1.264391454582773) +description = Ellington town, CT +station = ('kbdl', 0.0031202554354161091) +zone = ('ctz003', 0.0017505832743564794) + +[fips0901337910] +centroid = (0.72707515900866959, -1.263504460803617) +description = Hebron town, CT +station = ('khfd', 0.003590199548006919) +zone = ('ctz007', 0.0035090527409550394) + +[fips0901344910] +centroid = (0.72936040586476836, -1.2606245104581937) +description = Mansfield town, CT +station = ('kijd', 0.00090275004998740355) +zone = ('ctz003', 0.0018139641641688391) + +[fips0901369220] +centroid = (0.73291229051891693, -1.2645543985217391) +description = Somers town, CT +station = ('kbdl', 0.0031564554025885734) +zone = ('maz011', 0.0022816525954447611) + +[fips0901372090] +centroid = (0.73275697366878201, -1.2620052578827388) +description = Stafford town, CT +station = ('kijd', 0.0043898113909552434) +zone = ('ctz003', 0.0022805646368936915) + +[fips0901376290] +centroid = (0.73098731452701482, -1.2629039802744682) +description = Tolland town, CT +station = ('kijd', 0.0032515115177960533) +zone = ('ctz003', 0.00056231747497021442) + +[fips0901377830] +centroid = (0.73313921822826122, -1.2594045776709273) +description = Union town, CT +station = ('kijd', 0.0044758417886361836) +zone = ('ctz003', 0.0035019191040561023) + +[fips0901378250] +centroid = (0.73020252722885559, -1.2646502694575512) +description = Vernon town, CT +station = ('khfd', 0.0030785309120775783) +zone = ('ctz003', 0.0016232147225342729) + +[fips0901385950] +centroid = (0.73124525673716712, -1.26103263825048) +description = Willington town, CT +station = ('kijd', 0.0027203856312863974) +zone = ('ctz003', 0.0013245434523826631) + +[fips09015] +centroid = (0.72998394219333573, -1.2564747807220669) +description = Windham County, CT +station = ('kijd', 0.0028279947024976533) +zone = ('ctz004', 9.6709112484838676e-05) + +[fips0901501430] +centroid = (0.73124274346304419, -1.2596290270127335) +description = Ashford town, CT +station = ('kijd', 0.0025724460122650851) +zone = ('ctz003', 0.0022676957527378613) + +[fips0901509190] +centroid = (0.72932497568095278, -1.2558935860811529) +description = Brooklyn town, CT +station = ('kijd', 0.0030120079064611728) +zone = ('ctz004', 0.00084273554576341542) + +[fips0901512130] +centroid = (0.72772735364355479, -1.2566966469765806) +description = Canterbury town, CT +station = ('kijd', 0.002528065735048018) +zone = ('ctz004', 0.0023530109357598728) + +[fips0901513810] +centroid = (0.72938862783877301, -1.2588979609489508) +description = Chaplin town, CT +station = ('kijd', 0.00099981876649780682) +zone = ('ctz004', 0.001969832499603899) + +[fips0901521860] +centroid = (0.73121609228536621, -1.2582655408944905) +description = Eastford town, CT +station = ('kijd', 0.0027979356508811806) +zone = ('ctz004', 0.001789444885156703) + +[fips0901536000] +centroid = (0.72925144495956629, -1.2577640554405149) +description = Hampton town, CT +station = ('kijd', 0.0016499953668092939) +zone = ('ctz004', 0.0012951499488336484) + +[fips0901540500] +centroid = (0.73006888736803044, -1.2540029581689298) +description = Killingly town, CT +station = ('ksfz', 0.0047829101890270419) +zone = ('ctz004', 0.0018001829429782367) + +[fips0901559980] +centroid = (0.72775613412292017, -1.2548387439878324) +description = Plainfield town, CT +station = ('kijd', 0.0038418785223487883) +zone = ('ctz004', 0.0025978496500141095) + +[fips0901561030] +centroid = (0.73068861887882852, -1.2562730381138287) +description = Pomfret town, CT +station = ('kijd', 0.0033333588779704644) +zone = ('ctz004', 0.00062688045247491009) + +[fips0901562710] +centroid = (0.73143305416468163, -1.2543760222965437) +description = Putnam town, CT +station = ('ksfz', 0.0048138539657419785) +zone = ('ctz004', 0.0020417740412261281) + +[fips0901567400] +centroid = (0.7276658133341295, -1.2583764565684548) +description = Scotland town, CT +station = ('kijd', 0.0014854335916788255) +zone = ('ctz008', 0.0028009108156830925) + +[fips0901573420] +centroid = (0.72782324203265936, -1.2534254461727374) +description = Sterling town, CT +station = ('ksfz', 0.00557138334851224) +zone = ('riz003', 0.0020863627107394781) + +[fips0901575870] +centroid = (0.73286876200737228, -1.2543161924097852) +description = Thompson town, CT +station = ('korh', 0.004823737386459432) +zone = ('maz012', 0.0030737940132499067) + +[fips0901586790] +centroid = (0.72784451759624114, -1.2596055348810016) +description = Windham town, CT +station = ('kijd', 0.0008481971170637044) +zone = ('ctz008', 0.0031198452449194181) + +[fips0901588190] +centroid = (0.73244850417678453, -1.2570347521592766) +description = Woodstock town, CT +station = ('kijd', 0.0043122053682824587) +zone = ('ctz004', 0.0024210708326642565) + +[fips0902550] +centroid = (0.72622631812696214, -1.2580664162801305) +description = Baltic CDP, CT +station = ('kijd', 0.0027828520026474744) +zone = ('ctz008', 0.001380031399555612) + +[fips0902690] +centroid = (0.72823417980504135, -1.2783186409616194) +description = Bantam borough, CT +station = ('koxc', 0.0044467905370556334) +zone = ('ctz013', 0.0015784249510731522) + +[fips0904790] +centroid = (0.72209034158534102, -1.2812737451846339) +description = Bethel CDP, CT +station = ('kdxr', 0.00094578918472808726) +zone = ('ctz005', 0.00072468422321519314) + +[fips0904945] +centroid = (0.72682439010174305, -1.2776298642256125) +description = Bethlehem Village CDP, CT +station = ('koxc', 0.0029467438140113856) +zone = ('ctz013', 0.00047390599040121785) + +[fips0906050] +centroid = (0.72978096040132889, -1.2687748315458642) +description = Blue Hills CDP, CT +station = ('khfd', 0.0015169602478217214) +zone = ('ctz002', 0.00050096738310514023) + +[fips0907345] +centroid = (0.72043096979900745, -1.2708806061949804) +description = Branford Center CDP, CT +station = ('khvn', 0.00090261341856140345) +zone = ('ctz010', 0.00057857861680693263) + +[fips0908000] +centroid = (0.71885549598981713, -1.2775065567139592) +description = Bridgeport city, CT +station = ('kbdr', 0.00089595972245794589) +zone = ('ctz009', 0.0032991960244994041) + +[fips0908420] +centroid = (0.72748077352683305, -1.2730562289207614) +description = Bristol city, CT +station = ('kmmk', 0.0032015281081805773) +zone = ('ctz002', 0.0034755286021064028) + +[fips0908770] +centroid = (0.73147913085693428, -1.2660802351670026) +description = Broad Brook CDP, CT +station = ('kbdl', 0.0018895455255671465) +zone = ('ctz003', 0.0028300126431541604) + +[fips0909120] +centroid = (0.72937122690613065, -1.2558374911989936) +description = Brooklyn CDP, CT +station = ('kijd', 0.0030629943054802915) +zone = ('ctz004', 0.00082328357932192112) + +[fips0910660] +centroid = (0.71560056165460295, -1.2855026605089235) +description = Byram CDP, CT +station = ('khpn', 0.0012986895657235487) +zone = ('nyz071', 0.001688348192435112) + +[fips0910870] +centroid = (0.73373798833474291, -1.2799004154094096) +description = Canaan CDP, CT +station = ('kpsf', 0.006893202131824456) +zone = ('ctz001', 0.002910186496942187) + +[fips0911990] +centroid = (0.7193554979139285, -1.2815057867086865) +description = Cannondale CDP, CT +station = ('kdxr', 0.0027385322777868275) +zone = ('ctz009', 0.0015057205426314184) + +[fips0912370] +centroid = (0.73009838343238909, -1.2723054755430161) +description = Canton Valley CDP, CT +station = ('kbdl', 0.0033041001363783486) +zone = ('ctz002', 0.0021897889857484722) + +[fips0914200] +centroid = (0.72435701813819864, -1.2723320045476463) +description = Cheshire Village CDP, CT +station = ('kmmk', 0.00089586691431074446) +zone = ('ctz006', 0.0014220272844248042) + +[fips0914370] +centroid = (0.72259671396122216, -1.264530696950497) +description = Chester Center CDP, CT +station = ('ksnc', 0.00076740474073694364) +zone = ('ctz011', 0.0014078408857716457) + +[fips0915420] +centroid = (0.72040917063665, -1.2658698531789672) +description = Clinton CDP, CT +station = ('ksnc', 0.0019003594351135124) +zone = ('ctz011', 0.0012988394864690198) + +[fips0915840] +centroid = (0.72566919157643295, -1.2624470007164186) +description = Colchester CDP, CT +station = ('kijd', 0.0035828672644727146) +zone = ('ctz008', 0.0031562790734547372) + +[fips0916120] +centroid = (0.72993587582573594, -1.2727724209310947) +description = Collinsville CDP, CT +station = ('kbdl', 0.0036851312789106948) +zone = ('ctz002', 0.0025087852835225148) + +[fips0916960] +centroid = (0.72237816383228748, -1.2577498833669889) +description = Conning Towers Nautilus Park CDP, CT +station = ('kgon', 0.00099192151258926204) +zone = ('ctz012', 0.00070964396744895681) + +[fips0917520] +centroid = (0.71643334550719195, -1.2844198931475712) +description = Cos Cob CDP, CT +station = ('khpn', 0.0014579481484960704) +zone = ('ctz009', 0.002505873439395177) + +[fips0917835] +centroid = (0.72912005657347623, -1.2622913173471406) +description = Coventry Lake CDP, CT +station = ('kijd', 0.0018841501121899863) +zone = ('ctz003', 0.001397049761937414) + +[fips0918220] +centroid = (0.7318788287089335, -1.2631780493269089) +description = Crystal Lake CDP, CT +station = ('kbdl', 0.0040063362229563575) +zone = ('ctz003', 0.0014586298120213941) + +[fips0918430] +centroid = (0.72259840693059663, -1.282333282213642) +description = Danbury city, CT +station = ('kdxr', 0.00063069171695350238) +zone = ('ctz005', 0.0016669743593830711) + +[fips0918780] +centroid = (0.7296626619846287, -1.2546246619017827) +description = Danielson borough, CT +station = ('kijd', 0.0040103910760359279) +zone = ('ctz004', 0.0013982002502143207) + +[fips0918920] +centroid = (0.71649518252259015, -1.2824629427237726) +description = Darien CDP, CT +station = ('khpn', 0.0029100767151164753) +zone = ('ctz009', 0.0014821792400828565) + +[fips0919200] +centroid = (0.72224665327314963, -1.2643001913161862) +description = Deep River Center CDP, CT +station = ('ksnc', 0.00087520201056160546) +zone = ('ctz011', 0.0010667204829789513) + +[fips0919480] +centroid = (0.72127775119219761, -1.2755314723192324) +description = Derby city, CT +station = ('koxc', 0.002822350585495419) +zone = ('ctz006', 0.0026740853909383031) + +[fips0920740] +centroid = (0.72389420918044733, -1.2685343426282318) +description = Durham CDP, CT +station = ('kmmk', 0.0021054185952980808) +zone = ('ctz007', 0.0016972132944415377) + +[fips0921160] +centroid = (0.72940752975457213, -1.2550049167859147) +description = East Brooklyn CDP, CT +station = ('kijd', 0.0036774101804898335) +zone = ('ctz004', 0.0012454762568869795) + +[fips0922420] +centroid = (0.72557883588105732, -1.2652747657172074) +description = East Hampton CDP, CT +station = ('ksnc', 0.0032968165083400529) +zone = ('ctz007', 0.0015256544635079351) + +[fips0922700] +centroid = (0.72886162567113333, -1.2672424848224908) +description = East Hartford CDP, CT +station = ('khfd', 0.00072954338715613693) +zone = ('ctz002', 0.0018136459841960773) + +[fips0922980] +centroid = (0.72070671436752998, -1.2716293349907934) +description = East Haven CDP, CT +station = ('khvn', 0.00056610665851520268) +zone = ('ctz010', 0.00064682071125277726) + +[fips0926370] +centroid = (0.72178030129701676, -1.2634657843073926) +description = Essex Village CDP, CT +station = ('ksnc', 0.0015833588017372744) +zone = ('ctz011', 0.0009684505703206524) + +[fips0927390] +centroid = (0.73229873747367091, -1.2803073563778045) +description = Falls Village CDP, CT +station = ('kpsf', 0.0083559422058009127) +zone = ('ctz001', 0.0018701653970931804) + +[fips0927810] +centroid = (0.72031605732105619, -1.2628257371641014) +description = Fenwick borough, CT +station = ('ksnc', 0.0027940753936052266) +zone = ('ctz011', 0.0015235820173728828) + +[fips0930190] +centroid = (0.72292666845631171, -1.25814259990198) +description = Gales Ferry CDP, CT +station = ('kgon', 0.001596191881110418) +zone = ('ctz012', 0.0010564207996440955) + +[fips0930540] +centroid = (0.71980842830811353, -1.2816942822679018) +description = Georgetown CDP, CT +station = ('kdxr', 0.0022640479393240204) +zone = ('ctz009', 0.0019527816415655542) + +[fips0931270] +centroid = (0.72785650800820234, -1.2671164022373265) +description = Glastonbury Center CDP, CT +station = ('khfd', 0.00083396072621638045) +zone = ('ctz002', 0.0024941753759152542) + +[fips0931520] +centroid = (0.7161801505926052, -1.2856904753897307) +description = Glenville CDP, CT +station = ('khpn', 0.00073464682686036429) +zone = ('nyz071', 0.0017580052822025703) + +[fips0933690] +centroid = (0.71603617838260825, -1.2850947072495624) +description = Greenwich CDP, CT +station = ('khpn', 0.0011594378805481714) +zone = ('nyz071', 0.0021032255841327754) + +[fips0934180] +centroid = (0.7212582558644528, -1.2578040234803858) +description = Groton city, CT +station = ('kgon', 0.00026404544087987652) +zone = ('ctz012', 0.00079614493552660338) + +[fips0934460] +centroid = (0.72106859093463849, -1.2568124844790354) +description = Groton Long Point borough, CT +station = ('kgon', 0.00062116581871764036) +zone = ('ctz012', 0.0014759122800730845) + +[fips0935020] +centroid = (0.7204808513090295, -1.2684392570905831) +description = Guilford Center CDP, CT +station = ('ksnc', 0.0028707982655428684) +zone = ('ctz010', 0.001900120590665436) + +[fips0937000] +centroid = (0.72895500078611508, -1.2685635768932029) +description = Hartford city, CT +station = ('khfd', 0.00071722533622261956) +zone = ('ctz002', 0.00095414676166055592) + +[fips0937770] +centroid = (0.73286106510537086, -1.2658115417286582) +description = Hazardville CDP, CT +station = ('kbdl', 0.0022716247651734865) +zone = ('maz011', 0.0023141378636537214) + +[fips0937930] +centroid = (0.72406626373810878, -1.2781621372875931) +description = Heritage Village CDP, CT +station = ('koxc', 0.0013077883508504659) +zone = ('ctz013', 0.0025915024076865545) + +[fips0938050] +centroid = (0.72398463468899321, -1.2662040313708467) +description = Higganum CDP, CT +station = ('ksnc', 0.0017874358023050765) +zone = ('ctz007', 0.00030092070238278956) + +[fips0939940] +centroid = (0.72618268489566218, -1.2562843478473817) +description = Jewett City borough, CT +station = ('kijd', 0.0036402537558125649) +zone = ('ctz008', 0.0020414856567631803) + +[fips0940150] +centroid = (0.72653508432493241, -1.2701842023701422) +description = Kensington CDP, CT +station = ('kmmk', 0.0020715715242197313) +zone = ('ctz002', 0.0031749802789854684) + +[fips0941410] +centroid = (0.72598176259217273, -1.2655895358478044) +description = Lake Pocotopaug CDP, CT +station = ('khfd', 0.002994112079329325) +zone = ('ctz007', 0.0017967473029013455) + +[fips0941830] +centroid = (0.73216438202785228, -1.2819147173524286) +description = Lakeville CDP, CT +station = ('kpou', 0.0079106492049055427) +zone = ('ctz001', 0.0028106012255845782) + +[fips0943300] +centroid = (0.72859998336296694, -1.2773931801257496) +description = Litchfield borough, CT +station = ('koxc', 0.0046369710257052853) +zone = ('ctz013', 0.0020391275024484149) + +[fips0943790] +centroid = (0.72169169093089303, -1.25751689936514) +description = Long Hill CDP, CT +station = ('kgon', 0.00028898362783399609) +zone = ('ctz012', 0.00072317879766530858) + +[fips0944630] +centroid = (0.72047580730749117, -1.2671486908284886) +description = Madison Center CDP, CT +station = ('ksnc', 0.0022070366660944789) +zone = ('ctz011', 0.0021226830783460213) + +[fips0944690] +centroid = (0.72922479378188843, -1.2656835218280245) +description = Manchester CDP, CT +station = ('khfd', 0.0019094219393743881) +zone = ('ctz003', 0.0026905194814984251) + +[fips0945120] +centroid = (0.72889211657316577, -1.2599089603714611) +description = Mansfield Center CDP, CT +station = ('kijd', 0.00022372076943911378) +zone = ('ctz003', 0.0025236219926319001) + +[fips0945595] +centroid = (0.72369148918782811, -1.2561964530662513) +description = Mashantucket CDP, CT +station = ('kgon', 0.0024917358112303972) +zone = ('ctz008', 0.0020058077000844484) + +[fips0946450] +centroid = (0.72495351931665275, -1.2705044528345906) +description = Meriden city, CT +station = ('kmmk', 0.0006165143448051138) +zone = ('ctz006', 0.0029129379422050245) + +[fips0947290] +centroid = (0.72517617096932963, -1.2681164235388418) +description = Middletown city, CT +station = ('kmmk', 0.0023650348147340305) +zone = ('ctz007', 0.0016175600786457493) + +[fips0947515] +centroid = (0.71947170193552634, -1.2752010989451223) +description = Milford city (balance), CT +station = ('kbdr', 0.0013393603564544926) +zone = ('ctz010', 0.0036014165750425983) + +[fips0949110] +centroid = (0.72438042300346783, -1.2644897864328304) +description = Moodus CDP, CT +station = ('ksnc', 0.0022192938686999516) +zone = ('ctz007', 0.0013790723680949693) + +[fips0949180] +centroid = (0.72802072603752255, -1.2543758303103258) +description = Moosup CDP, CT +station = ('kijd', 0.0041275864013342149) +zone = ('ctz004', 0.002554667783319713) + +[fips0949810] +centroid = (0.72179794657575447, -1.2558670570765225) +description = Mystic CDP, CT +station = ('kgon', 0.0012950049071270375) +zone = ('ctz012', 0.0019349209919193695) + +[fips0949880] +centroid = (0.72411261968304186, -1.2749958656783804) +description = Naugatuck borough, CT +station = ('koxc', 0.0010688968014131582) +zone = ('ctz006', 0.00084507608580485633) + +[fips0950370] +centroid = (0.72739310563850534, -1.2703581593366886) +description = New Britain city, CT +station = ('khfd', 0.0020322072062925168) +zone = ('ctz002', 0.0023703735359258101) + +[fips0951420] +centroid = (0.73095942416556803, -1.2736161130915087) +description = New Hartford Center CDP, CT +station = ('kbdl', 0.003870109598429768) +zone = ('ctz001', 0.0036049595974718689) + +[fips0952000] +centroid = (0.72100963371250615, -1.2727805367121163) +description = New Haven city, CT +station = ('khvn', 0.00094417812479726177) +zone = ('ctz010', 0.0014362244305653486) + +[fips0952210] +centroid = (0.72757530055912101, -1.2693925908346078) +description = Newington CDP, CT +station = ('khfd', 0.0013279555367359606) +zone = ('ctz002', 0.0020841844465612491) + +[fips0952280] +centroid = (0.72135517399781601, -1.2582762397628053) +description = New London city, CT +station = ('kgon', 0.0005775354250301259) +zone = ('ctz012', 0.00055331337148464019) + +[fips0952560] +centroid = (0.7257723230819334, -1.2811758845734744) +description = New Milford CDP, CT +station = ('kdxr', 0.0039205579258336102) +zone = ('ctz013', 0.0023784305918155726) + +[fips0952770] +centroid = (0.72765052424988208, -1.2799269095074548) +description = New Preston CDP, CT +station = ('koxc', 0.0044794189718333211) +zone = ('ctz013', 0.0016143681590889785) + +[fips0952910] +centroid = (0.72277414413297991, -1.2795351354502598) +description = Newtown borough, CT +station = ('koxc', 0.0026485985489865314) +zone = ('ctz005', 0.0012255670016841824) + +[fips0953120] +centroid = (0.72081665265711314, -1.2602060503167354) +description = Niantic CDP, CT +station = ('kgon', 0.0021082458508000362) +zone = ('ctz012', 0.0017078254059912806) + +[fips0953260] +centroid = (0.72147556680961855, -1.2565944754021685) +description = Noank CDP, CT +station = ('kgon', 0.000691067644284395) +zone = ('ctz012', 0.0014485816216088694) + +[fips0953400] +centroid = (0.73291520521876774, -1.277501285819618) +description = Norfolk CDP, CT +station = ('kbaf', 0.006903386649034499) +zone = ('ctz001', 0.0020121230952350583) + +[fips0954660] +centroid = (0.73331734653171976, -1.2713532762630055) +description = North Granby CDP, CT +station = ('kbdl', 0.0025264226364754296) +zone = ('maz009', 0.0028910442183610009) + +[fips0954730] +centroid = (0.73279804126608139, -1.2549499563677695) +description = North Grosvenor Dale CDP, CT +station = ('korh', 0.0049174186031467016) +zone = ('ctz004', 0.0029377924738601419) + +[fips0954940] +centroid = (0.72224040499442754, -1.2715831535787856) +description = North Haven CDP, CT +station = ('khvn', 0.0020322175096441986) +zone = ('ctz010', 0.0013427774288609859) + +[fips0955725] +centroid = (0.72913653248161503, -1.2754776638183933) +description = Northwest Harwinton CDP, CT +station = ('koxc', 0.0051637826678652297) +zone = ('ctz001', 0.0029197560766339365) + +[fips0955990] +centroid = (0.71720359421268221, -1.2814171763425628) +description = Norwalk city, CT +station = ('kbdr', 0.0039808042543813789) +zone = ('ctz009', 0.00068203429332925041) + +[fips0956200] +centroid = (0.72514695415765129, -1.258198921676942) +description = Norwich city, CT +station = ('kijd', 0.0037342686758222348) +zone = ('ctz008', 0.00030926801140175917) + +[fips0956690] +centroid = (0.72592322424906075, -1.2755776537312402) +description = Oakville CDP, CT +station = ('koxc', 0.0020036349374655911) +zone = ('ctz013', 0.0021098386891413245) + +[fips0956900] +centroid = (0.71593669461524445, -1.2840231274487155) +description = Old Greenwich CDP, CT +station = ('khpn', 0.0019047061008785468) +zone = ('ctz009', 0.0026068639849449078) + +[fips0957180] +centroid = (0.72228063483368599, -1.2563970088505978) +description = Old Mystic CDP, CT +station = ('kgon', 0.0012117005739694956) +zone = ('ctz012', 0.0015822905472934591) + +[fips0957390] +centroid = (0.72058766545925146, -1.2628884642974181) +description = Old Saybrook Center CDP, CT +station = ('ksnc', 0.0025740188010985889) +zone = ('ctz011', 0.0013434802270714549) + +[fips0957670] +centroid = (0.72055832647452545, -1.2745203507236744) +description = Orange CDP, CT +station = ('khvn', 0.0018807370280636497) +zone = ('ctz010', 0.0027804564083878554) + +[fips0958520] +centroid = (0.72334982353345778, -1.2588527045614466) +description = Oxoboxo River CDP, CT +station = ('kgon', 0.0021923105695445832) +zone = ('ctz012', 0.0014877508012374637) + +[fips0959140] +centroid = (0.72211098883039215, -1.2541305068306656) +description = Pawcatuck CDP, CT +station = ('kwst', 0.00084837111805979935) +zone = ('ctz012', 0.0032427470055279794) + +[fips0959210] +centroid = (0.71598116560458536, -1.2855684943283088) +description = Pemberwick CDP, CT +station = ('khpn', 0.00094850010299206606) +zone = ('nyz071', 0.001750918427153464) + +[fips0960090] +centroid = (0.72735427206264847, -1.2553049214310401) +description = Plainfield Village CDP, CT +station = ('kijd', 0.0036317054973748326) +zone = ('ctz004', 0.0028412143824450638) + +[fips0961730] +centroid = (0.72145673470698957, -1.2568511784285521) +description = Poquonock Bridge CDP, CT +station = ('kgon', 0.00049741587473733657) +zone = ('ctz012', 0.0012716988042181954) + +[fips0961870] +centroid = (0.72566152958101671, -1.2674522559452879) +description = Portland CDP, CT +station = ('khfd', 0.0027511330473379636) +zone = ('ctz007', 0.0016259342072716023) + +[fips0962640] +centroid = (0.73163519819864764, -1.255037816242315) +description = Putnam CDP, CT +station = ('kijd', 0.0046419734972486595) +zone = ('ctz004', 0.0018717716798098501) + +[fips0963270] +centroid = (0.73323857982257734, -1.2553466697067479) +description = Quinebaug CDP, CT +station = ('korh', 0.0045197722850155104) +zone = ('maz012', 0.003161566001466718) + +[fips0963900] +centroid = (0.72029261754920193, -1.2826890326750759) +description = Ridgefield CDP, CT +station = ('kdxr', 0.0016963353106239122) +zone = ('ctz005', 0.0022375217537632794) + +[fips0964530] +centroid = (0.71611021524947782, -1.2842781724123093) +description = Riverside CDP, CT +station = ('khpn', 0.0016583252816673949) +zone = ('ctz009', 0.0026219761644332858) + +[fips0965230] +centroid = (0.73071134306568941, -1.2645411165661316) +description = Rockville CDP, CT +station = ('kbdl', 0.0032119843766452386) +zone = ('ctz003', 0.001526305217433392) + +[fips0966455] +centroid = (0.73228357056247106, -1.270480437104083) +description = Salmon Brook CDP, CT +station = ('kbdl', 0.0014832652661783989) +zone = ('ctz002', 0.002738974976889547) + +[fips0967050] +centroid = (0.72053382205182748, -1.2636975814853502) +description = Saybrook Manor CDP, CT +station = ('ksnc', 0.0021975658331784757) +zone = ('ctz011', 0.00088417732941113627) + +[fips0967890] +centroid = (0.73092652470916786, -1.2821469857692842) +description = Sharon CDP, CT +station = ('kpou', 0.006966603045056763) +zone = ('ctz001', 0.0027492040777266401) + +[fips0968100] +centroid = (0.7208997826893857, -1.2765170772011261) +description = Shelton city, CT +station = ('kbdr', 0.0024070732870480668) +zone = ('ctz005', 0.0030535488116750953) + +[fips0968450] +centroid = (0.73329539028972968, -1.2665163231339061) +description = Sherwood Manor CDP, CT +station = ('kbdl', 0.0020819719066506748) +zone = ('maz011', 0.0020697942690213055) + +[fips0969010] +centroid = (0.73094998193431471, -1.2707149220890885) +description = Simsbury Center CDP, CT +station = ('kbdl', 0.0018490318604981171) +zone = ('ctz002', 0.0016082897477681202) + +[fips0969150] +centroid = (0.73288255010846293, -1.2643676482917758) +description = Somers CDP, CT +station = ('kbdl', 0.0032786947499017687) +zone = ('maz011', 0.0023451702043729488) + +[fips0969990] +centroid = (0.72889771908006462, -1.2618030614888953) +description = South Coventry CDP, CT +station = ('kijd', 0.0014835926461467712) +zone = ('ctz003', 0.001693905146649004) + +[fips0971040] +centroid = (0.7179401406103163, -1.2791016305706493) +description = Southport CDP, CT +station = ('kbdr', 0.0020956091268831919) +zone = ('ctz009', 0.0019457470511242861) + +[fips0971250] +centroid = (0.72752191093730245, -1.2598595151937519) +description = South Windham CDP, CT +station = ('kijd', 0.0011531760807004777) +zone = ('ctz008', 0.0028814323501091623) + +[fips0971460] +centroid = (0.73235724091019772, -1.2666182329089299) +description = Southwood Acres CDP, CT +station = ('kbdl', 0.0015251360230555248) +zone = ('maz011', 0.0029610510500034277) + +[fips0971530] +centroid = (0.7318266608175914, -1.2560998490921536) +description = South Woodstock CDP, CT +station = ('kijd', 0.0042052668379702375) +zone = ('ctz004', 0.0017714337876580685) + +[fips0972300] +centroid = (0.7324787681860141, -1.2619806138337006) +description = Stafford Springs CDP, CT +station = ('kijd', 0.0041253205180965405) +zone = ('ctz003', 0.002010205354574887) + +[fips0973000] +centroid = (0.71697876089844015, -1.2836203403639403) +description = Stamford city, CT +station = ('khpn', 0.0020389270781554542) +zone = ('ctz009', 0.0017032304518918163) + +[fips0973700] +centroid = (0.72142774478811389, -1.2548822899526695) +description = Stonington borough, CT +station = ('kwst', 0.00133011068954213) +zone = ('ctz012', 0.002712540933268396) + +[fips0973980] +centroid = (0.72964191001982248, -1.261120986817216) +description = Storrs CDP, CT +station = ('kijd', 0.0013609044337661617) +zone = ('ctz003', 0.0013493302928549212) + +[fips0974260] +centroid = (0.71917120859821049, -1.2763270282988763) +description = Stratford CDP, CT +station = ('kbdr', 0.00068074365404572105) +zone = ('ctz005', 0.0040137036176602142) + +[fips0974655] +centroid = (0.73278205405013308, -1.2677921239105288) +description = Suffield Depot CDP, CT +station = ('kbdl', 0.0010734251408056931) +zone = ('maz011', 0.003021367687012591) + +[fips0975100] +centroid = (0.73142488602378231, -1.2700443316838874) +description = Tariffville CDP, CT +station = ('kbdl', 0.0011901534972486767) +zone = ('ctz002', 0.0018244779903711387) + +[fips0975200] +centroid = (0.7266426664200254, -1.264872275338405) +description = Terramuggus CDP, CT +station = ('khfd', 0.0029026148485241845) +zone = ('ctz007', 0.0026085377421622741) + +[fips0975240] +centroid = (0.72741549821280849, -1.2742288109254212) +description = Terryville CDP, CT +station = ('kmmk', 0.0036202396481410503) +zone = ('ctz013', 0.0030792548034985468) + +[fips0975660] +centroid = (0.72739823690650618, -1.2755392215811112) +description = Thomaston CDP, CT +station = ('koxc', 0.0034407828934793685) +zone = ('ctz013', 0.0021378903000356135) + +[fips0975940] +centroid = (0.7329011029584116, -1.2670483343964987) +description = Thompsonville CDP, CT +station = ('kbdl', 0.0015240506901359875) +zone = ('maz011', 0.0026067655101243816) + +[fips0976500] +centroid = (0.73014548986890038, -1.2763858109880835) +description = Torrington city, CT +station = ('koxc', 0.0061247841417561635) +zone = ('ctz001', 0.0017797325528736128) + +[fips0977270] +centroid = (0.720347839766735, -1.2777886891875441) +description = Trumbull CDP, CT +station = ('kbdr', 0.002121559219577148) +zone = ('ctz005', 0.0024235162938723411) + +[fips0978880] +centroid = (0.72343752632837044, -1.2709196841169323) +description = Wallingford Center CDP, CT +station = ('kmmk', 0.0011813935231824125) +zone = ('ctz010', 0.0024283536951708036) + +[fips0980000] +centroid = (0.72533265719006346, -1.2747306279919548) +description = Waterbury city, CT +station = ('koxc', 0.001821029638578077) +zone = ('ctz006', 0.0017212692951323527) + +[fips0980210] +centroid = (0.72162861473172601, -1.2588945051970317) +description = Waterford CDP, CT +station = ('kgon', 0.0010639487307899261) +zone = ('ctz012', 0.00043143038746203826) + +[fips0980420] +centroid = (0.72607971046979458, -1.2761818169051105) +description = Watertown CDP, CT +station = ('koxc', 0.002066499244432223) +zone = ('ctz013', 0.0016318507311309392) + +[fips0980630] +centroid = (0.7287692104872403, -1.2550312014444498) +description = Wauregan CDP, CT +station = ('kijd', 0.003586362189258016) +zone = ('ctz004', 0.0016630281221694315) + +[fips0980770] +centroid = (0.73037222559202697, -1.2711309911294715) +description = Weatogue CDP, CT +station = ('kbdl', 0.0024311870257460347) +zone = ('ctz002', 0.0014562992632887722) + +[fips0981750] +centroid = (0.72049641964595723, -1.2643574555689441) +description = Westbrook Center CDP, CT +station = ('ksnc', 0.0019727438754761988) +zone = ('ctz011', 0.00069968557108618455) + +[fips0982660] +centroid = (0.72896412885810302, -1.2698133199040933) +description = West Hartford CDP, CT +station = ('khfd', 0.0014845089761358217) +zone = ('ctz002', 0.00075256105490322152) + +[fips0982800] +centroid = (0.72033441818478716, -1.2735230870423775) +description = West Haven city, CT +station = ('khvn', 0.0011081854148855463) +zone = ('ctz010', 0.0021057141248293117) + +[fips0983570] +centroid = (0.71771432991169326, -1.2800839193269642) +description = Westport CDP, CT +station = ('kbdr', 0.0028689806746712071) +zone = ('ctz009', 0.0012124472525313129) + +[fips0983990] +centroid = (0.73085252274888324, -1.2713834530057724) +description = West Simsbury CDP, CT +station = ('kbdl', 0.0023345023983007843) +zone = ('ctz002', 0.0018837639652899715) + +[fips0984970] +centroid = (0.72784565206025498, -1.2683185675728079) +description = Wethersfield CDP, CT +station = ('khfd', 0.000594242619911083) +zone = ('ctz002', 0.0019932323650816955) + +[fips0985810] +centroid = (0.72807619260115097, -1.260434025223631) +description = Willimantic CDP, CT +station = ('kijd', 0.00074641686428684865) +zone = ('ctz003', 0.0028823395677166491) + +[fips0986380] +centroid = (0.71886872558554737, -1.2815939258359121) +description = Wilton Center CDP, CT +station = ('kdxr', 0.0031935944222476272) +zone = ('ctz009', 0.0010152531859696956) + +[fips0987140] +centroid = (0.73177798358475332, -1.2680099060945926) +description = Windsor Locks CDP, CT +station = ('kbdl', 0.00042304446676538169) +zone = ('ctz002', 0.0023668758818588703) + +[fips0987350] +centroid = (0.73176396859085968, -1.2752510328150219) +description = Winsted CDP, CT +station = ('kbaf', 0.0061690699222918099) +zone = ('ctz001', 0.0024956173929590693) + +[fips0987980] +centroid = (0.72508799693551895, -1.2776641773987067) +description = Woodbury Center CDP, CT +station = ('koxc', 0.0014179217083137886) +zone = ('ctz013', 0.0016241233767397103) + +[fips0988050] +centroid = (0.71949969701672833, -1.2739939419679804) +description = Woodmont borough, CT +station = ('khvn', 0.0016352867407745128) +zone = ('ctz010', 0.0027925357535770862) + +[fips10001] +centroid = (0.68237291354196472, -1.3177756309740134) +description = Kent County, DE +station = ('kdov', 0.00080126165750616068) +zone = ('dez002', 0.00090982630473742656) + +[fips1000190444] +centroid = (0.6817127427523979, -1.3194305696240467) +description = Central Kent CCD, DE +station = ('kdov', 0.0021969111214666845) +zone = ('dez002', 0.00061947451029182113) + +[fips1000190740] +centroid = (0.68345095106104414, -1.3172210002443145) +description = Dover CCD, DE +station = ('kdov', 0.00044965114071256836) +zone = ('dez002', 0.0018254370421887582) + +[fips1000190888] +centroid = (0.68060424923787122, -1.3199637153506534) +description = Felton CCD, DE +station = ('kdov', 0.0032506434059288549) +zone = ('dez002', 0.0017808322913863983) + +[fips1000191332] +centroid = (0.67890831280370845, -1.319737887198738) +description = Harrington CCD, DE +station = ('kdov', 0.004566797336194345) +zone = ('dez002', 0.0033436232865614148) + +[fips1000191480] +centroid = (0.68481979534009074, -1.3211224568943449) +description = Kenton CCD, DE +station = ('kdov', 0.0035793099104662819) +zone = ('dez002', 0.003132419109769457) + +[fips1000192220] +centroid = (0.68080632345866721, -1.3151992806519743) +description = Milford North CCD, DE +station = ('kdov', 0.0026666234131109334) +zone = ('dez002', 0.0032075758640832215) + +[fips1000193700] +centroid = (0.68577028419743424, -1.3177351044287819) +description = Smyrna CCD, DE +station = ('kdov', 0.0028027251346431949) +zone = ('dez002', 0.003695477274800193) + +[fips10003] +centroid = (0.69073002123941174, -1.3202391632132033) +description = New Castle County, DE +station = ('kilg', 0.0016913892982203488) +zone = ('dez001', 0.00010950112808408485) + +[fips1000390148] +centroid = (0.69459184146212949, -1.3177906408055806) +description = Brandywine CCD, DE +station = ('kilg', 0.0026181416292277745) +zone = ('paz070', 0.0025148540516581985) + +[fips1000391110] +centroid = (0.69104438994428086, -1.3218918154819166) +description = Glasgow CCD, DE +station = ('kilg', 0.0022569731846890746) +zone = ('dez001', 0.0012303527959503749) + +[fips1000391924] +centroid = (0.69339170070858058, -1.3196382812583265) +description = Lower Christiana CCD, DE +station = ('kilg', 0.0010856138837276315) +zone = ('dez001', 0.0026262842467116654) + +[fips1000392072] +centroid = (0.68814820803681398, -1.320352644521168) +description = Middletown-Odessa CCD, DE +station = ('kilg', 0.0042210967187938705) +zone = ('dez001', 0.0026706652812035101) + +[fips1000392738] +centroid = (0.69269597756215062, -1.3219605290945677) +description = Newark CCD, DE +station = ('kilg', 0.0019553537929704826) +zone = ('dez001', 0.0022617446746464195) + +[fips1000392812] +centroid = (0.69210794123056874, -1.319365783002213) +description = New Castle CCD, DE +station = ('kilg', 0.00022076588744902488) +zone = ('dez001', 0.0014849078867138091) + +[fips1000392960] +centroid = (0.69448921610211212, -1.3203288382301708) +description = Piedmont CCD, DE +station = ('kilg', 0.0022735918919045712) +zone = ('paz067', 0.0034422566547409332) + +[fips1000393108] +centroid = (0.69353576018504015, -1.3208375144406646) +description = Pike Creek-Central Kirkwood CCD, DE +station = ('kilg', 0.0016129501096231967) +zone = ('dez001', 0.0027457793911446495) + +[fips1000393256] +centroid = (0.69071803082745054, -1.3197946103994278) +description = Red Lion CCD, DE +station = ('kilg', 0.0016155044354499589) +zone = ('dez001', 0.00041907099086570823) + +[fips1000393848] +centroid = (0.69244313171341421, -1.3206775724680118) +description = Upper Christiana CCD, DE +station = ('kilg', 0.00093926777552290591) +zone = ('dez001', 0.0016472365231123011) + +[fips1000393996] +centroid = (0.69351052272405633, -1.3182347747403356) +description = Wilmington CCD, DE +station = ('kilg', 0.0015275574990517428) +zone = ('dez001', 0.0031350502579708017) + +[fips10005] +centroid = (0.67504991342632459, -1.3148524313697254) +description = Sussex County, DE +station = ('kged', 0.0004366958476159088) +zone = ('dez003', 0.0011456174017411256) + +[fips1000590296] +centroid = (0.67677613132300951, -1.3195372790545137) +description = Bridgeville-Greenwood CCD, DE +station = ('kged', 0.0036157792510542368) +zone = ('dez003', 0.0031880085947526976) + +[fips1000591036] +centroid = (0.67529391045575338, -1.3161674147880555) +description = Georgetown CCD, DE +station = ('kged', 0.00061838114469349708) +zone = ('dez003', 0.00046770534589973497) + +[fips1000591628] +centroid = (0.67243450263562599, -1.3180962654108972) +description = Laurel-Delmar CCD, DE +station = ('ksby', 0.0034041644325165333) +zone = ('dez003', 0.0027847300756814351) + +[fips1000591776] +centroid = (0.67608625502957365, -1.3110950691027397) +description = Lewes CCD, DE +station = ('kged', 0.0034841978066729117) +zone = ('dez004', 0.0022239168385324382) + +[fips1000592368] +centroid = (0.67856076538975874, -1.3140833171282491) +description = Milford South CCD, DE +station = ('kged', 0.0035596021847797317) +zone = ('dez003', 0.0041035369954532091) + +[fips1000592516] +centroid = (0.67388642458706749, -1.3140069066135969) +description = Millsboro CCD, DE +station = ('kged', 0.0016668236705426579) +zone = ('dez003', 0.0020236327042711471) + +[fips1000592664] +centroid = (0.67629387939739094, -1.3139275639458012) +description = Milton CCD, DE +station = ('kged', 0.0016181989846407231) +zone = ('dez003', 0.0023523833742390842) + +[fips1000593404] +centroid = (0.67457445083149625, -1.3194870310253488) +description = Seaford CCD, DE +station = ('kged', 0.0032455871331566856) +zone = ('dez003', 0.0025070465382276935) + +[fips1000593552] +centroid = (0.67233076026488747, -1.3115488023483806) +description = Selbyville-Frankford CCD, DE +station = ('koxb', 0.0036014997697021282) +zone = ('dez004', 0.0017318968424608046) + +[fips1001400] +centroid = (0.69483740928788507, -1.317524774800624) +description = Arden village, DE +station = ('kilg', 0.0029330635866170324) +zone = ('paz070', 0.0021973353543020854) + +[fips1001530] +centroid = (0.69473354474409887, -1.3174768480593644) +description = Ardencroft village, DE +station = ('kilg', 0.0028637743837726807) +zone = ('paz070', 0.0022659501491611792) + +[fips1001660] +centroid = (0.69479871533836823, -1.3174145572583607) +description = Ardentown village, DE +station = ('kilg', 0.0029444430112818914) +zone = ('paz070', 0.00218547218931405) + +[fips1004130] +centroid = (0.69147808681010892, -1.3208703615371868) +description = Bear CDP, DE +station = ('kilg', 0.0013650077973397111) +zone = ('dez001', 0.00078292587103550681) + +[fips1004650] +centroid = (0.69406319868499289, -1.3176915235573599) +description = Bellefonte town, DE +station = ('kilg', 0.0022201639643271765) +zone = ('paz070', 0.0029329617836238182) + +[fips1005690] +centroid = (0.6726078661902265, -1.3101188889988067) +description = Bethany Beach town, DE +station = ('koxb', 0.0039218312955842478) +zone = ('dez004', 0.0013421784418955623) + +[fips1005820] +centroid = (0.67318324888473158, -1.3198071418634569) +description = Bethel town, DE +station = ('kged', 0.003968269755858198) +zone = ('dez003', 0.0032043745206614452) + +[fips1006730] +centroid = (0.67431345429515299, -1.3195109943959789) +description = Blades town, DE +station = ('kged', 0.003320423071378348) +zone = ('dez003', 0.0025661880552560463) + +[fips1007250] +centroid = (0.68176187377084152, -1.3160245421354875) +description = Bowers town, DE +station = ('kdov', 0.0015160694592990876) +zone = ('dez002', 0.0022918683165883097) + +[fips1008680] +centroid = (0.67587564614873563, -1.3195152180927685) +description = Bridgeville town, DE +station = ('kged', 0.0032947611040040534) +zone = ('dez003', 0.0027201719202999005) + +[fips1009850] +centroid = (0.69231338393682096, -1.3214805984568543) +description = Brookside CDP, DE +station = ('kilg', 0.0015485364025894608) +zone = ('dez001', 0.0017406137828767623) + +[fips1010760] +centroid = (0.68240682528933094, -1.3187177247976549) +description = Camden town, DE +station = ('kdov', 0.0013614076815907038) +zone = ('dez002', 0.00026840482635567706) + +[fips1014660] +centroid = (0.68455829265826451, -1.3193147146682995) +description = Cheswold town, DE +station = ('kdov', 0.0022909313948456878) +zone = ('dez002', 0.0023859618213556873) + +[fips1015310] +centroid = (0.6946963692310314, -1.3170338834952082) +description = Claymont CDP, DE +station = ('kilg', 0.0030302596198278357) +zone = ('paz070', 0.0021458639463487641) + +[fips1015440] +centroid = (0.68546867384939725, -1.3200098094961985) +description = Clayton town, DE +station = ('kdov', 0.0033175728453189914) +zone = ('dez002', 0.0033833540980442397) + +[fips1018950] +centroid = (0.67276477128998091, -1.3133013223568932) +description = Dagsboro town, DE +station = ('kged', 0.002894237786850746) +zone = ('dez004', 0.002395070965794395) + +[fips1019730] +centroid = (0.69079829851974972, -1.3193830966683926) +description = Delaware City city, DE +station = ('kilg', 0.0015170788644103196) +zone = ('dez001', 0.00072422468331915916) + +[fips1020380] +centroid = (0.67147137759449793, -1.3185105716687355) +description = Delmar town, DE +station = ('ksby', 0.0025055853358094456) +zone = ('mdz022', 0.0020004232735015104) + +[fips1020900] +centroid = (0.6753688723471265, -1.3103093916866619) +description = Dewey Beach town, DE +station = ('kged', 0.0039766396090525173) +zone = ('dez004', 0.0014903029166277231) + +[fips1021200] +centroid = (0.68348151177624661, -1.3181016061184083) +description = Dover city, DE +station = ('kdov', 0.00088353377356621644) +zone = ('dez002', 0.0014391886183183181) + +[fips1021387] +centroid = (0.6827216652330983, -1.3174453099597807) +description = Dover Base Housing CDP, DE +station = ('kdov', 0.00036878890760963528) +zone = ('dez002', 0.0012642710967516371) + +[fips1023240] +centroid = (0.69387793198489367, -1.3178535773784072) +description = Edgemoor CDP, DE +station = ('kilg', 0.0019975528232827082) +zone = ('paz070', 0.0031546641911114185) + +[fips1024020] +centroid = (0.67736655875566676, -1.3164127557210086) +description = Ellendale town, DE +station = ('kged', 0.0023525683283737225) +zone = ('dez003', 0.0025314582622426043) + +[fips1024540] +centroid = (0.69356728083133123, -1.3193744223820103) +description = Elsmere town, DE +station = ('kilg', 0.0012554508810053155) +zone = ('dez001', 0.0028437455027028832) + +[fips1025840] +centroid = (0.67840869485203248, -1.31910749172621) +description = Farmington town, DE +station = ('kged', 0.0043564889448734039) +zone = ('dez002', 0.0037855913953078781) + +[fips1026620] +centroid = (0.68089538761039636, -1.3190531945331807) +description = Felton town, DE +station = ('kdov', 0.0025796458952784397) +zone = ('dez002', 0.0013000761496655398) + +[fips1026880] +centroid = (0.67124954624656952, -1.3099269551409649) +description = Fenwick Island town, DE +station = ('koxb', 0.0026437809053862903) +zone = ('dez004', 0.002698506613738186) + +[fips1028310] +centroid = (0.67232637948846496, -1.3130844826506254) +description = Frankford town, DE +station = ('kged', 0.0033535135580697963) +zone = ('dez004', 0.0024969563951026176) + +[fips1028440] +centroid = (0.68081913417537687, -1.3171287595933465) +description = Frederica town, DE +station = ('kdov', 0.002186403243669375) +zone = ('dez002', 0.0019566208659791552) + +[fips1029090] +centroid = (0.67526226763641473, -1.3157481343418489) +description = Georgetown town, DE +station = ('kged', 0.00029598847893481028) +zone = ('dez003', 0.00060227559644484489) + +[fips1029350] +centroid = (0.69117740148657536, -1.3220406397072342) +description = Glasgow CDP, DE +station = ('kilg', 0.0022835008042723006) +zone = ('dez001', 0.0013718156204427028) + +[fips1031430] +centroid = (0.69419762394398143, -1.3195234036869603) +description = Greenville CDP, DE +station = ('kilg', 0.0018841535189585738) +zone = ('dez001', 0.0034343534496036237) + +[fips1031560] +centroid = (0.67730721756109891, -1.3193060229286244) +description = Greenwood town, DE +station = ('kged', 0.0037342463794866427) +zone = ('dez003', 0.0034091791011792607) + +[fips1033120] +centroid = (0.67936002146741703, -1.3189373919373109) +description = Harrington city, DE +station = ('kdov', 0.0039032349882509574) +zone = ('dez002', 0.0028316053480205122) + +[fips1033250] +centroid = (0.68361712385912654, -1.3214297221091587) +description = Hartly town, DE +station = ('kdov', 0.0033809960592060249) +zone = ('dez002', 0.0024102522360105179) + +[fips1033900] +centroid = (0.67588850922532273, -1.3104801023407995) +description = Henlopen Acres town, DE +station = ('kged', 0.0039067912736720535) +zone = ('dez004', 0.0019946813325414869) + +[fips1034810] +centroid = (0.6827076153326197, -1.3180427710693234) +description = Highland Acres CDP, DE +station = ('kdov', 0.00075977903090825038) +zone = ('dez002', 0.00085692600343986215) + +[fips1035850] +centroid = (0.69436131837452608, -1.3208772206811474) +description = Hockessin CDP, DE +station = ('kilg', 0.0023162448122551935) +zone = ('paz067', 0.003426214051295391) + +[fips1036760] +centroid = (0.67924226410278499, -1.3177952484748057) +description = Houston town, DE +station = ('kdov', 0.0037973334730071234) +zone = ('dez002', 0.0030771056363858903) + +[fips1038710] +centroid = (0.6829854542962448, -1.3180049497844328) +description = Kent Acres CDP, DE +station = ('kdov', 0.00066982651079535089) +zone = ('dez002', 0.0010673128552345752) + +[fips1039100] +centroid = (0.6846450878819661, -1.3205961354051137) +description = Kenton town, DE +station = ('kdov', 0.003139755915412479) +zone = ('dez002', 0.0027748864143375693) + +[fips1041310] +centroid = (0.67318935753711351, -1.3189745499970857) +description = Laurel town, DE +station = ('kged', 0.0034152159655937726) +zone = ('dez003', 0.0026645674932902251) + +[fips1041700] +centroid = (0.68490669528354753, -1.3180085975225695) +description = Leipsic town, DE +station = ('kdov', 0.0020163941309027304) +zone = ('dez002', 0.0028063928265732005) + +[fips1041830] +centroid = (0.67681297522351902, -1.3115061814080471) +description = Lewes city, DE +station = ('kged', 0.0034598198212069157) +zone = ('dez004', 0.0030012713283558319) + +[fips1042870] +centroid = (0.68357904077484788, -1.3168161885776068) +description = Little Creek town, DE +station = ('kdov', 0.00062665648008888581) +zone = ('dez002', 0.0021446703017491313) + +[fips1043245] +centroid = (0.67416860942052992, -1.3116404321341102) +description = Long Neck CDP, DE +station = ('kged', 0.0030934799133471285) +zone = ('dez004', 0.00085671117007082853) + +[fips1044430] +centroid = (0.6819314848675504, -1.3173002905522326) +description = Magnolia town, DE +station = ('kdov', 0.0010810474982634315) +zone = ('dez002', 0.0012872889022443918) + +[fips1047030] +centroid = (0.68844814286876921, -1.321506638769294) +description = Middletown town, DE +station = ('kilg', 0.0041728506868316025) +zone = ('dez001', 0.0025405902229210246) + +[fips1047420] +centroid = (0.67910728033843581, -1.3163853889583372) +description = Milford city, DE +station = ('kdov', 0.0039422808674964456) +zone = ('dez002', 0.0036615045663590906) + +[fips1047940] +centroid = (0.67346422944101014, -1.3142484601820728) +description = Millsboro town, DE +station = ('kged', 0.0019108046302876902) +zone = ('dez003', 0.0021066791594801693) + +[fips1048200] +centroid = (0.67256440749185198, -1.3112494434750785) +description = Millville town, DE +station = ('koxb', 0.0038161793056787482) +zone = ('dez004', 0.0014249162106670012) + +[fips1048330] +centroid = (0.67675400054809431, -1.3144057841608476) +description = Milton town, DE +station = ('kged', 0.0017791023611572498) +zone = ('dez003', 0.0024179307597574297) + +[fips1050670] +centroid = (0.69250421823723396, -1.3222144570474403) +description = Newark city, DE +station = ('kilg', 0.0021218214237602503) +zone = ('dez001', 0.0022280747990432838) + +[fips1050800] +centroid = (0.69236885050044927, -1.318880267310893) +description = New Castle city, DE +station = ('kilg', 0.00045642868986192116) +zone = ('dez001', 0.001906969264204495) + +[fips1051190] +centroid = (0.6931436021554096, -1.3195592527497964) +description = Newport town, DE +station = ('kilg', 0.00083257272597780073) +zone = ('dez001', 0.0023979380852472199) + +[fips1052490] +centroid = (0.69384065175207099, -1.3218304322521239) +description = North Star CDP, DE +station = ('kilg', 0.002373008839226357) +zone = ('dez001', 0.0032371757283392909) + +[fips1053920] +centroid = (0.67248848566939012, -1.3109297689692831) +description = Ocean View town, DE +station = ('koxb', 0.0037373717491148272) +zone = ('dez004', 0.0014308650797889857) + +[fips1054050] +centroid = (0.68862620135905761, -1.3205261651554012) +description = Odessa town, DE +station = ('kilg', 0.0037767381232279022) +zone = ('dez001', 0.0021981982944505982) + +[fips1056490] +centroid = (0.69374221518225854, -1.3211330859494899) +description = Pike Creek CDP, DE +station = ('kilg', 0.0019180915397737051) +zone = ('dez001', 0.0029893131529572154) + +[fips1056500] +centroid = (0.69337162942218267, -1.3212071228163593) +description = Pike Creek Valley CDP, DE +station = ('kilg', 0.0017051237449233231) +zone = ('dez001', 0.0026421733784978822) + +[fips1060290] +centroid = (0.67574691066310855, -1.3104038663590725) +description = Rehoboth Beach city, DE +station = ('kged', 0.0039415896938301918) +zone = ('dez004', 0.0018572347232512373) + +[fips1061265] +centroid = (0.6824221841867486, -1.3178344136632205) +description = Rising Sun-Lebanon CDP, DE +station = ('kdov', 0.00079311827199322503) +zone = ('dez002', 0.00087679915854656416) + +[fips1061480] +centroid = (0.68120959923563296, -1.3180490891612155) +description = Riverview CDP, DE +station = ('kdov', 0.0019290694700584727) +zone = ('dez002', 0.0011942691555180923) + +[fips1061720] +centroid = (0.6829187478122335, -1.318412431804896) +description = Rodney Village CDP, DE +station = ('kdov', 0.00098944246315304618) +zone = ('dez002', 0.00082857478847932621) + +[fips1064320] +centroid = (0.67469608282706772, -1.3196978667989898) +description = Seaford city, DE +station = ('kged', 0.0033890694480465957) +zone = ('dez003', 0.0026615153666420185) + +[fips1064840] +centroid = (0.67123624683766925, -1.3130283877684663) +description = Selbyville town, DE +station = ('koxb', 0.0029355310997085785) +zone = ('dez004', 0.003268058674232902) + +[fips1067050] +centroid = (0.67925240446573909, -1.3144649508224902) +description = Slaughter Beach town, DE +station = ('kged', 0.0041646343101739989) +zone = ('dez002', 0.0045440696495053518) + +[fips1067310] +centroid = (0.68576993513158391, -1.3195683459151994) +description = Smyrna town, DE +station = ('kdov', 0.0033431689405432957) +zone = ('dez002', 0.0036129683888346184) + +[fips1067700] +centroid = (0.67223953190488572, -1.3100108531181083) +description = South Bethany town, DE +station = ('koxb', 0.0035783400466916915) +zone = ('dez004', 0.0017195745637426565) + +[fips1072510] +centroid = (0.6875984816823133, -1.321108354633989) +description = Townsend town, DE +station = ('kilg', 0.0048820445071145789) +zone = ('dez001', 0.0032769188602436534) + +[fips1074330] +centroid = (0.68142881258968346, -1.3189731537336842) +description = Viola town, DE +station = ('kdov', 0.0021228513374943339) +zone = ('dez002', 0.00076373591739769436) + +[fips1077580] +centroid = (0.69351052272405633, -1.3182347747403356) +description = Wilmington city, DE +station = ('kilg', 0.0015275574990517428) +zone = ('dez001', 0.0031350502579708017) + +[fips1077840] +centroid = (0.69264826026040105, -1.3192110246574384) +description = Wilmington Manor CDP, DE +station = ('kilg', 0.00038880589525132993) +zone = ('dez001', 0.0020198010429975121) + +[fips1080830] +centroid = (0.68192003550765734, -1.3188874406141187) +description = Woodside town, DE +station = ('kdov', 0.001735895938170212) +zone = ('dez002', 0.00027308226589125044) + +[fips1080895] +centroid = (0.68185957730236824, -1.3183777346593664) +description = Woodside East CDP, DE +station = ('kdov', 0.0014943556289624676) +zone = ('dez002', 0.00053881382490676471) + +[fips1081350] +centroid = (0.6826757281671858, -1.3188407879632127) +description = Wyoming town, DE +station = ('kdov', 0.0013586712119570445) +zone = ('dez002', 0.00048844550425595579) + +[fips11001] +centroid = (0.67900549273645938, -1.3442018706179697) +description = District of Columbia, DC +station = ('kdca', 0.00097049411288258958) +zone = ('dcz001', 9.6071346795511682e-05) + +[fips1100150000] +centroid = (0.67900549273645938, -1.3442018706179697) +description = Washington city, DC +station = ('kdca', 0.00097049411288258958) +zone = ('dcz001', 9.6071346795511682e-05) + +[fips1150000] +centroid = (0.67900549273645938, -1.3442018706179697) +description = Washington city, DC +station = ('kdca', 0.00097049411288258958) +zone = ('dcz001', 9.6071346795511682e-05) + +[fips1200075] +centroid = (0.46505743052009563, -1.3981914842734344) +description = Acacia Villas CDP, FL +station = ('kpbi', 0.00067465745213063854) +zone = ('flz068', 0.00069589248668234323) + +[fips12001] +centroid = (0.51793937096578202, -1.4374046692426168) +description = Alachua County, FL +station = ('kgnv', 0.0011976523617655936) +zone = ('flz036', 1.5747023739733636e-05) + +[fips1200191248] +centroid = (0.51742779750873003, -1.4375966380070437) +description = Gainesville CCD, FL +station = ('kgnv', 0.0015909932144558996) +zone = ('flz036', 0.00052236471847505082) + +[fips1200191469] +centroid = (0.51654071646311139, -1.433441777002916) +description = Hawthorne CCD, FL +station = ('kgnv', 0.0029525896355651711) +zone = ('flz036', 0.0037174884027332176) + +[fips1200191495] +centroid = (0.52027957824002613, -1.4398485665277221) +description = High Springs-Alachua CCD, FL +station = ('kgnv', 0.0037655997040575429) +zone = ('flz036', 0.0031660276050102924) + +[fips1200192184] +centroid = (0.51547901522583073, -1.4356134552845876) +description = Micanopy CCD, FL +station = ('kgnv', 0.0029165594468302486) +zone = ('flz036', 0.0029025489804621308) + +[fips1200192314] +centroid = (0.51650518155954073, -1.4405797024046749) +description = Newberry-Archer CCD, FL +station = ('kgnv', 0.0043018974906911429) +zone = ('flz036', 0.0030983073029866681) + +[fips1200193536] +centroid = (0.51968899372773625, -1.4352527655413705) +description = Waldo CCD, FL +station = ('kgnv', 0.0015229762137774965) +zone = ('flz036', 0.0025741750860177742) + +[fips12003] +centroid = (0.52926135673005437, -1.4364458377114488) +description = Baker County, FL +station = ('kvqq', 0.0066761306017073495) +zone = ('flz023', 0.00028995382176145654) + +[fips1200375] +centroid = (0.51968133173232001, -1.4394131243326418) +description = Alachua city, FL +station = ('kgnv', 0.003152672326339279) +zone = ('flz036', 0.002471404068303987) + +[fips1200392009] +centroid = (0.52766294929449287, -1.4334201174668988) +description = Macclenny CCD, FL +station = ('kvqq', 0.0038122700087680718) +zone = ('flz023', 0.0029050362698520701) + +[fips1200393068] +centroid = (0.52995557889332756, -1.4368581542939398) +description = Sanderson CCD, FL +station = ('kvqq', 0.0072314951663999035) +zone = ('flz023', 0.00085042536571166714) + +[fips1200410] +centroid = (0.49773289136398779, -1.4168332063876454) +description = Alafaya CDP, FL +station = ('korl', 0.0024379998426435887) +zone = ('flz045', 0.0022280328469961048) + +[fips12005] +centroid = (0.5277450321292142, -1.4945489655210613) +description = Bay County, FL +station = ('kpam', 0.0030694631523484131) +zone = ('flz112', 0.00058672892430339566) + +[fips1200591989] +centroid = (0.52847904779943289, -1.4936719026653491) +description = Lynn Haven CCD, FL +station = ('kecp', 0.0035302545710121438) +zone = ('flz012', 0.0016252711790767968) + +[fips1200592145] +centroid = (0.52389167675336856, -1.4927893943823705) +description = Mexico Beach CCD, FL +station = ('ktdr', 0.00029131202158014534) +zone = ('flz112', 0.0041093830937831196) + +[fips1200592626] +centroid = (0.52637772373990932, -1.4928640770210635) +description = Panama City CCD, FL +station = ('kpam', 0.0017737455528030275) +zone = ('flz112', 0.0022483372740258684) + +[fips1200592639] +centroid = (0.52661053320883278, -1.4975080665480627) +description = Panama City Beaches CCD, FL +station = ('kecp', 0.0031600275867509032) +zone = ('flz112', 0.0022138382340377849) + +[fips1200593172] +centroid = (0.52959340562024626, -1.4971884618554372) +description = Southport CCD, FL +station = ('kecp', 0.00030619796114662135) +zone = ('flz112', 0.0027686642617584137) + +[fips1200593744] +centroid = (0.53055707171344235, -1.4915407683822013) +description = Youngstown CCD, FL +station = ('kecp', 0.0051822009404888991) +zone = ('flz012', 0.0013574079970824905) + +[fips1200625] +centroid = (0.53574050760564784, -1.4904174395690328) +description = Alford town, FL +station = ('k1j0', 0.0039063032894338223) +zone = ('flz010', 0.0043261263810123237) + +[fips12007] +centroid = (0.52267259917743558, -1.4340811260145068) +description = Bradford County, FL +station = ('k42j', 0.0038652307295371888) +zone = ('flz031', 6.5281631763348599e-05) + +[fips1200790312] +centroid = (0.52228560732239082, -1.4362194685074652) +description = Brooker CCD, FL +station = ('kgnv', 0.0039238648351542305) +zone = ('flz031', 0.0018745423674243072) + +[fips1200791430] +centroid = (0.52092032351501827, -1.433282829867937) +description = Hampton CCD, FL +station = ('k42j', 0.0019992504322567995) +zone = ('flz031', 0.0019487170513460448) + +[fips1200791898] +centroid = (0.52478348764126015, -1.4329929481324732) +description = Lawtey CCD, FL +station = ('kvqq', 0.0043290099273361497) +zone = ('flz031', 0.0022731747601538554) + +[fips1200793237] +centroid = (0.52296755982102261, -1.4338176511106258) +description = Starke CCD, FL +station = ('k42j', 0.0040371267030106031) +zone = ('flz031', 0.00035252111426544791) + +[fips1200800] +centroid = (0.53704634549869745, -1.5199099958159406) +description = Allentown CDP, FL +station = ('knse', 0.0012056256998446582) +zone = ('flz003', 0.0015707759915376367) + +[fips12009] +centroid = (0.49389808883809089, -1.4084874084237515) +description = Brevard County, FL +station = ('kcof', 0.001914668615280081) +zone = ('flz047', 0.0043838846334593755) + +[fips1200950] +centroid = (0.50022787443629868, -1.4206211817297116) +description = Altamonte Springs city, FL +station = ('korl', 0.0021586567308585318) +zone = ('flz046', 0.0026292847633722252) + +[fips1200990611] +centroid = (0.49456881886963228, -1.4068769407630588) +description = Cocoa Beach-Cape Canaveral CCD, FL +station = ('kcof', 0.0018084950038543923) +zone = ('flz147', 0.0046909461676610045) + +[fips1200990624] +centroid = (0.4948131300583265, -1.4100626029802616) +description = Cocoa-Rockledge CCD, FL +station = ('ktix', 0.0029001581200783846) +zone = ('flz147', 0.0036317363029353855) + +[fips1200991573] +centroid = (0.49140725964939969, -1.4064676610534661) +description = Indialantic-Melbourne Beach CCD, FL +station = ('kcof', 0.0013777209502475333) +zone = ('flz047', 0.00277075591210322) + +[fips1200992028] +centroid = (0.48711865406469174, -1.4061714612261103) +description = Malabar CCD, FL +station = ('kmlb', 0.0035529737994469917) +zone = ('flz047', 0.0033216313199910391) + +[fips1200992106] +centroid = (0.49088018766858993, -1.4077529215146347) +description = Melbourne CCD, FL +station = ('kmlb', 0.00046074332433505285) +zone = ('flz047', 0.001627840740843531) + +[fips1200992119] +centroid = (0.48754790034092721, -1.4048213792365225) +description = Melbourne Shores-Floridana Beach CCD, FL +station = ('kmlb', 0.0037949840205179228) +zone = ('flz047', 0.004005383077702286) + +[fips1200992132] +centroid = (0.49512084905874554, -1.4082328870589331) +description = Merritt Island CCD, FL +station = ('kxmr', 0.0025079207226385231) +zone = ('flz147', 0.0036253425975446402) + +[fips1200992587] +centroid = (0.48845501776635875, -1.4077932735269409) +description = Palm Bay CCD, FL +station = ('kmlb', 0.0019892313765055474) +zone = ('flz047', 0.0013705065987062383) + +[fips1200993224] +centroid = (0.49944680468944619, -1.4075257843657802) +description = Space Center CCD, FL +station = ('ktts', 0.00083831471994956811) +zone = ('flz147', 0.0023045277752282494) + +[fips1200993419] +centroid = (0.4997926416807289, -1.4113667828105216) +description = Titusville CCD, FL +station = ('ktix', 0.0023113001433494344) +zone = ('flz147', 0.0018741333813826195) + +[fips1200993588] +centroid = (0.48931387683797267, -1.410458146948641) +description = West Brevard CCD, FL +station = ('kmlb', 0.002754511674445805) +zone = ('flz047', 0.0015054768896718589) + +[fips1201000] +centroid = (0.53360562086460839, -1.4857304102226796) +description = Altha town, FL +station = ('kmai', 0.0046181861372610721) +zone = ('flz013', 0.0031088553475250844) + +[fips1201050] +centroid = (0.50559977098113451, -1.4250280333712422) +description = Altoona CDP, FL +station = ('klee', 0.0036985910560549343) +zone = ('flz044', 0.00070876174641676989) + +[fips12011] +centroid = (0.45716316668698509, -1.4045826531014347) +description = Broward County, FL +station = ('khwo', 0.0050944529062819394) +zone = ('flz071', 0.0022229287273307363) + +[fips1201100] +centroid = (0.48574977487906007, -1.4256681852342885) +description = Alturas CDP, FL +station = ('kbow', 0.0025681866817616242) +zone = ('flz052', 0.0020603802277067147) + +[fips1201125] +centroid = (0.46638045990627741, -1.42460185887449) +description = Alva CDP, FL +station = ('krsw', 0.0039721502185337274) +zone = ('flz065', 0.003961839164998259) + +[fips1201190637] +centroid = (0.45811304467909053, -1.4068281937170506) +description = Conservation CCD, FL +station = ('khwo', 0.0072598387244967874) +zone = ('flz071', 0.0014860342466549319) + +[fips1201190644] +centroid = (0.45807054591180441, -1.4005960069306143) +description = Coral Springs-Margate CCD, FL +station = ('kfxe', 0.0012898223089438654) +zone = ('flz072', 0.0021201841052285089) + +[fips1201190754] +centroid = (0.45507025511445615, -1.4023023629804117) +description = Davie CCD, FL +station = ('khwo', 0.0021845891013521669) +zone = ('flz072', 0.0014911675041374486) + +[fips1201190806] +centroid = (0.45903705689168134, -1.398899250191703) +description = Deerfield Beach CCD, FL +station = ('kpmp', 0.00103820332514577) +zone = ('flz172', 0.002664528603180864) + +[fips1201191098] +centroid = (0.45643763331693105, -1.3983971887790745) +description = Fort Lauderdale CCD, FL +station = ('kfxe', 0.0012722023455850014) +zone = ('flz172', 7.7702053270170456e-05) + +[fips1201191417] +centroid = (0.45339292389011948, -1.398701364761112) +description = Hallandale Beach CCD, FL +station = ('khwo', 0.0015207662950498886) +zone = ('flz172', 0.0030141745097536977) + +[fips1201191508] +centroid = (0.45457342968958336, -1.3985824554791737) +description = Hollywood CCD, FL +station = ('kfll', 0.00046183888652709561) +zone = ('flz172', 0.0018293224211839417) + +[fips1201192236] +centroid = (0.45372565345871968, -1.4020926442174919) +description = Miramar-Pembroke Pines CCD, FL +station = ('khwo', 0.0015801690558660223) +zone = ('flz072', 0.0024632443745566291) + +[fips1201192756] +centroid = (0.45637741945773724, -1.4009031325190879) +description = Plantation CCD, FL +station = ('kfxe', 0.0015741558300771134) +zone = ('flz072', 0.00040487264841767407) + +[fips1201192782] +centroid = (0.45796418554718793, -1.3980777062594969) +description = Pompano Beach CCD, FL +station = ('kpmp', 0.0002715613797702044) +zone = ('flz172', 0.0016037889031606687) + +[fips12013] +centroid = (0.53038463318334539, -1.4869841500375574) +description = Calhoun County, FL +station = ('kmai', 0.0077616443799333615) +zone = ('flz013', 0.00030211684664410509) + +[fips1201353] +centroid = (0.51571294170547555, -1.4466684580331823) +description = Andrews CDP, FL +station = ('kcty', 0.0035442535750722479) +zone = ('flz035', 0.0033739433674626813) + +[fips1201390026] +centroid = (0.53343070396697345, -1.4848961253869339) +description = Altha CCD, FL +station = ('kmai', 0.0049692115972327228) +zone = ('flz013', 0.0032755890154320803) + +[fips1201390169] +centroid = (0.5300877701308736, -1.4852451912373326) +description = Blountstown CCD, FL +station = ('kmai', 0.0081561140304676032) +zone = ('flz013', 0.001605135169543414) + +[fips1201393592] +centroid = (0.53026130821839945, -1.4883441105907111) +description = West Calhoun CCD, FL +station = ('kpam', 0.0071932652763150055) +zone = ('flz013', 0.0012578976280601031) + +[fips1201475] +centroid = (0.48048622837418808, -1.4439757989697903) +description = Anna Maria city, FL +station = ('ksrq', 0.00363723052087372) +zone = ('flz051', 0.0063295103906366472) + +[fips12015] +centroid = (0.46894947984545793, -1.4301377640091359) +description = Charlotte County, FL +station = ('kpgd', 0.0012428506209044802) +zone = ('flz062', 0.00099248347456507035) + +[fips1201591352] +centroid = (0.46896255236155537, -1.4354899383334241) +description = Grove City-Rotonda CCD, FL +station = ('kpgd', 0.0039394487777369728) +zone = ('flz060', 0.0055502370406914437) + +[fips1201592834] +centroid = (0.47082823951876723, -1.4332712583349965) +description = Port Charlotte CCD, FL +station = ('kpgd', 0.002144322287405302) +zone = ('flz062', 0.0037352815015524402) + +[fips1201592899] +centroid = (0.46907647000183306, -1.4283196370740407) +description = Punta Gorda CCD, FL +station = ('kpgd', 0.002638766742762969) +zone = ('flz062', 0.0010326595610237047) + +[fips1201625] +centroid = (0.51884146184296787, -1.4834259647448087) +description = Apalachicola city, FL +station = ('kaaf', 0.000357989540963797) +zone = ('flz115', 0.0036470433676599177) + +[fips1201675] +centroid = (0.48455610929703613, -1.438209126401446) +description = Apollo Beach CDP, FL +station = ('kmcf', 0.0021289862836520847) +zone = ('flz051', 0.00082951843206628944) + +[fips12017] +centroid = (0.503416276820427, -1.4403294047366464) +description = Citrus County, FL +station = ('kcgc', 0.00083025698140016071) +zone = ('flz042', 0.00088759469790252842) + +[fips1201700] +centroid = (0.50097499752919994, -1.4229839212045989) +description = Apopka city, FL +station = ('korl', 0.0040458225597450343) +zone = ('flz044', 0.0042508969624440113) + +[fips1201750] +centroid = (0.47508246211721089, -1.4287207660960264) +description = Arcadia city, FL +station = ('kpgd', 0.0057293406666827657) +zone = ('flz061', 0.0009807259873437725) + +[fips1201775] +centroid = (0.51556160420603503, -1.4401315542126403) +description = Archer city, FL +station = ('kgnv', 0.0044763804075455505) +zone = ('flz036', 0.0033433404136184283) + +[fips1201790715] +centroid = (0.50368031022966864, -1.4420020410252952) +description = Crystal River CCD, FL +station = ('kcgc', 0.00079838815050639546) +zone = ('flz042', 0.0023480920543006911) + +[fips1201791625] +centroid = (0.50310623653210274, -1.4371471982713626) +description = Inverness CCD, FL +station = ('kinf', 0.0005366857083343537) +zone = ('flz042', 0.0019571247327826091) + +[fips1201875] +centroid = (0.49618543008929206, -1.4428335507875303) +description = Aripeka CDP, FL +station = ('kbkv', 0.0034123700114529298) +zone = ('flz048', 0.0043637909526256929) + +[fips12019] +centroid = (0.52337390737747191, -1.4286941847315187) +description = Clay County, FL +station = ('kvqq', 0.0040500170864651904) +zone = ('flz032', 7.0191811867149673e-05) + +[fips1201991300] +centroid = (0.52225010732540522, -1.4259218688410658) +description = Green Cove Springs CCD, FL +station = ('knip', 0.0054434684139745412) +zone = ('flz032', 0.002619568035230768) + +[fips1201991742] +centroid = (0.52178249871221094, -1.4303198367567038) +description = Keystone Heights CCD, FL +station = ('k42j', 0.0029532079722113273) +zone = ('flz032', 0.002075912827108515) + +[fips1201992197] +centroid = (0.52575828893508392, -1.4297416964419807) +description = Middleburg-Clay Hill CCD, FL +station = ('kvqq', 0.0017704002103734354) +zone = ('flz032', 0.0026178800899669934) + +[fips1201992509] +centroid = (0.5257332434603178, -1.4264611232200546) +description = Orange Park CCD, FL +station = ('knip', 0.0021620940238089481) +zone = ('flz032', 0.0031022019338152063) + +[fips1201992678] +centroid = (0.52363134344214113, -1.4276875660854309) +description = Penney Farms CCD, FL +station = ('kvqq', 0.003953968928826929) +zone = ('flz032', 0.00092782246943861962) + +[fips12021] +centroid = (0.45585753823344571, -1.420713439833972) +description = Collier County, FL +station = ('kapf', 0.005757375551466137) +zone = ('flz070', 0.0017237026416228659) + +[fips1202187] +centroid = (0.52445423127787139, -1.4274627502244817) +description = Asbury Lake CDP, FL +station = ('kvqq', 0.0032510924625357893) +zone = ('flz032', 0.0015660351366399634) + +[fips1202191027] +centroid = (0.45285812010072335, -1.4187125943794856) +description = Everglades CCD, FL +station = ('kapf', 0.0083258611533148889) +zone = ('flz070', 0.0033377215649180248) + +[fips1202191560] +centroid = (0.45918287915068545, -1.4198875674852207) +description = Immokalee CCD, FL +station = ('kapf', 0.0070394462691163503) +zone = ('flz070', 0.0031355450829981327) + +[fips1202192048] +centroid = (0.45103547276286571, -1.4252929219918171) +description = Marco Island CCD, FL +station = ('kapf', 0.0056078333746744967) +zone = ('flz069', 0.0031631769092948423) + +[fips1202192301] +centroid = (0.45661645975209042, -1.4265567847163563) +description = Naples CCD, FL +station = ('kapf', 0.00053001271447505492) +zone = ('flz069', 0.0033182594898560846) + +[fips1202250] +centroid = (0.5010372534236186, -1.426530726950624) +description = Astatula town, FL +station = ('klee', 0.0022879231558394671) +zone = ('flz144', 0.0027428004623643414) + +[fips1202275] +centroid = (0.50904801798429966, -1.4230519890454267) +description = Astor CDP, FL +station = ('kded', 0.0042028367666235951) +zone = ('flz041', 0.0029096695786975969) + +[fips12023] +centroid = (0.52746127649942498, -1.4420456044434249) +description = Columbia County, FL +station = ('kgnv', 0.010448985943714875) +zone = ('flz022', 5.7744918265412989e-05) + +[fips1202391183] +centroid = (0.52280222478098115, -1.442785868392366) +description = Fort White CCD, FL +station = ('kgnv', 0.0072937643465053516) +zone = ('flz035', 0.0044803924688624555) + +[fips1202391820] +centroid = (0.52664348502511049, -1.442397096301484) +description = Lake City CCD, FL +station = ('kgnv', 0.0099098306497227978) +zone = ('flz022', 0.0009299527437648693) + +[fips1202392366] +centroid = (0.53099092565890316, -1.4413046074561982) +description = North Columbia CCD, FL +station = ('khoe', 0.01146564807297273) +zone = ('flz022', 0.0035313598226030703) + +[fips1202400] +centroid = (0.52949238596314085, -1.4206364708139589) +description = Atlantic Beach city, FL +station = ('knrb', 0.0011294091884734344) +zone = ('flz025', 0.0041826536555357816) + +[fips1202500] +centroid = (0.46421119017897366, -1.3980762750895102) +description = Atlantis city, FL +station = ('kpbi', 0.0015020457230924408) +zone = ('flz068', 0.0007928926762082603) + +[fips1202550] +centroid = (0.49045471130353879, -1.4275696865477512) +description = Auburndale city, FL +station = ('kgif', 0.00090107711595990554) +zone = ('flz052', 0.0030380266959195669) + +[fips1202575] +centroid = (0.53192448482250243, -1.4618947627874586) +description = Aucilla CDP, FL +station = ('ktvi', 0.0076305639081930927) +zone = ('flz018', 0.0019264163224945066) + +[fips1202660] +centroid = (0.53294773645636162, -1.5200331113413761) +description = Avalon CDP, FL +station = ('kpns', 0.0016557518151127998) +zone = ('flz004', 0.0016617632511772187) + +[fips1202681] +centroid = (0.45308974274575553, -1.3985865919095009) +description = Aventura city, FL +station = ('khwo', 0.0017195667194750226) +zone = ('flz172', 0.0033119388408049517) + +[fips12027] +centroid = (0.47456516398021231, -1.4277884635694889) +description = DeSoto County, FL +station = ('kpgd', 0.0056501668503800258) +zone = ('flz061', 8.8433034917304357e-05) + +[fips1202750] +centroid = (0.48168930128088028, -1.4226413828856024) +description = Avon Park city, FL +station = ('kbow', 0.0074310679474538068) +zone = ('flz057', 0.0051798543652088105) + +[fips1202790065] +centroid = (0.47354131893440737, -1.4266071723718614) +description = Arcadia East CCD, FL +station = ('kpgd', 0.005534897985069607) +zone = ('flz061', 0.0014516338284037437) + +[fips1202790078] +centroid = (0.47429034443619328, -1.4301441868207831) +description = Arcadia West CCD, FL +station = ('kpgd', 0.0045975781200847891) +zone = ('flz061', 0.002058027309709705) + +[fips1202850] +centroid = (0.49837150733729246, -1.4189478298560694) +description = Azalea Park CDP, FL +station = ('korl', 0.00052145752026210132) +zone = ('flz045', 0.00078641065690106813) + +[fips12029] +centroid = (0.51628408324989805, -1.4520382950895008) +description = Dixie County, FL +station = ('kcty', 0.0017160658424924449) +zone = ('flz134', 0.0016079666400766691) + +[fips1202900] +centroid = (0.48579883608433366, -1.4229337255353114) +description = Babson Park CDP, FL +station = ('kbow', 0.004425471507720804) +zone = ('flz052', 0.0032952818695012364) + +[fips1202925] +centroid = (0.53379451784955168, -1.5192199624428722) +description = Bagdad CDP, FL +station = ('kndz', 0.0020655154639417205) +zone = ('flz004', 0.00078873756008271997) + +[fips1202990689] +centroid = (0.51868494071564897, -1.4504263788055287) +description = Cross City North CCD, FL +station = ('kcty', 0.0014865533322477166) +zone = ('flz034', 0.00088141407840012251) + +[fips1202990702] +centroid = (0.51495152436600045, -1.4526185123460338) +description = Cross City South CCD, FL +station = ('kcty', 0.0029801992422239481) +zone = ('flz134', 0.00021979700850668303) + +[fips12031] +centroid = (0.52944990464914721, -1.4250283998903848) +description = Duval County, FL +station = ('knip', 0.0018005406642615795) +zone = ('flz025', 0.00039978068226466655) + +[fips1203190110] +centroid = (0.52816961837634679, -1.430245555543739) +description = Baldwin CCD, FL +station = ('kvqq', 0.0013024306681237228) +zone = ('flz025', 0.004283790434391848) + +[fips1203191640] +centroid = (0.52949238596314085, -1.4206364708139589) +description = Jacksonville Beaches CCD, FL +station = ('knrb', 0.0011294091884734344) +zone = ('flz025', 0.0041826536555357816) + +[fips1203191642] +centroid = (0.52786884578635063, -1.4232559307685222) +description = Jacksonville East CCD, FL +station = ('kcrg', 0.0016119224943485372) +zone = ('flz025', 0.0024327118030654637) + +[fips1203191644] +centroid = (0.53204859518561165, -1.4235252525253972) +description = Jacksonville North CCD, FL +station = ('kjax', 0.0020939940927488798) +zone = ('flz025', 0.0031719659113102132) + +[fips1203191646] +centroid = (0.52913567557061814, -1.4272219995074615) +description = Jacksonville West CCD, FL +station = ('knip', 0.0021799356102971661) +zone = ('flz025', 0.001520403809808471) + +[fips1203250] +centroid = (0.52892115715225563, -1.4307151363789881) +description = Baldwin town, FL +station = ('kvqq', 0.0021026178969431679) +zone = ('flz023', 0.0047025507105543374) + +[fips1203275] +centroid = (0.4519243514976139, -1.3984131410884375) +description = Bal Harbour village, FL +station = ('khwo', 0.002540340215183799) +zone = ('flz074', 0.0030739951890842846) + +[fips12033] +centroid = (0.53427432631421745, -1.5243538135310282) +description = Escambia County, FL +station = ('kpns', 0.0032394757752077607) +zone = ('flz002', 0.0018061367912343433) + +[fips1203375] +centroid = (0.4843818730778095, -1.4362221214079283) +description = Balm CDP, FL +station = ('kmcf', 0.0036645294472424264) +zone = ('flz051', 0.0015824224659425944) + +[fips1203390390] +centroid = (0.53366295493053639, -1.5244038521206831) +description = Cantonment CCD, FL +station = ('kpns', 0.0028870244988201772) +zone = ('flz002', 0.0012236324444862665) + +[fips1203390507] +centroid = (0.53900491907870041, -1.5246778688132461) +description = Century CCD, FL +station = ('knse', 0.0057373705999889807) +zone = ('flz001', 0.0011344410014689236) + +[fips1203392457] +centroid = (0.53821510523229543, -1.5271249251442971) +description = Northwest Escambia CCD, FL +station = ('kpns', 0.007777598302080517) +zone = ('flz001', 0.0011552976907388396) + +[fips1203392691] +centroid = (0.52967650074593364, -1.5230875771587065) +description = Pensacola CCD, FL +station = ('knpa', 0.00086710665268956817) +zone = ('flz002', 0.0029224275879102886) + +[fips1203480] +centroid = (0.48618036505881962, -1.4443165046930724) +description = Bardmoor CDP, FL +station = ('kpie', 0.0015103146351872414) +zone = ('flz050', 0.0013499578872287704) + +[fips12035] +centroid = (0.5144339469763215, -1.4187146538680029) +description = Flagler County, FL +station = ('kxfl', 0.0011634377042732051) +zone = ('flz038', 0.0004959110306489952) + +[fips1203590338] +centroid = (0.51401630713961177, -1.4194591938736112) +description = Bunnell CCD, FL +station = ('kxfl', 0.0018389605180583908) +zone = ('flz038', 0.00027639416909937503) + +[fips1203591092] +centroid = (0.51554118385378667, -1.4164337528817417) +description = Flagler Beach CCD, FL +station = ('kxfl', 0.0014502901775051097) +zone = ('flz038', 0.0027687990532617576) + +[fips1203675] +centroid = (0.48670459215294865, -1.4280581518455069) +description = Bartow city, FL +station = ('kbow', 0.0012622473971126856) +zone = ('flz052', 0.0022027460393399183) + +[fips12037] +centroid = (0.52028572179899313, -1.4800247892715699) +description = Franklin County, FL +station = ('kaaf', 0.003557428211712896) +zone = ('flz115', 0.00050886990059339013) + +[fips1203725] +centroid = (0.53979576266936413, -1.4855897541382612) +description = Bascom town, FL +station = ('kmai', 0.0019204316809159098) +zone = ('flz011', 0.003919450008487411) + +[fips1203790039] +centroid = (0.51686461466569644, -1.4828502504377461) +description = Apalachicola CCD, FL +station = ('kaaf', 0.0022443762266316693) +zone = ('flz115', 0.0046925147466973351) + +[fips1203790429] +centroid = (0.52192971723461667, -1.4756109388597389) +description = Carrabelle CCD, FL +station = ('kaaf', 0.0077230810928297566) +zone = ('flz115', 0.0038637330630397937) + +[fips1203790936] +centroid = (0.52120537068845396, -1.4811515214767801) +description = Eastpoint CCD, FL +station = ('kaaf', 0.0032367474515597318) +zone = ('flz115', 0.0011976912471926965) + +[fips12039] +centroid = (0.53370719902707442, -1.476771652625485) +description = Gadsden County, FL +station = ('k2j9', 0.0010109110011345592) +zone = ('flz016', 1.4934160529465644e-05) + +[fips1203975] +centroid = (0.45183752136732719, -1.3985951789294206) +description = Bay Harbor Islands town, FL +station = ('khwo', 0.0024989981167135075) +zone = ('flz074', 0.002888929972967393) + +[fips1203990520] +centroid = (0.53474190002082678, -1.4802634281401952) +description = Chattahoochee CCD, FL +station = ('k2j9', 0.004004550069823201) +zone = ('flz011', 0.0029583111130370029) + +[fips1203991313] +centroid = (0.53317312827596419, -1.4794143254590999) +description = Greensboro CCD, FL +station = ('k2j9', 0.0033415085068282066) +zone = ('flz016', 0.0023252536612668414) + +[fips1203991456] +centroid = (0.53389730028920168, -1.4738132322768924) +description = Havana CCD, FL +station = ('k2j9', 0.0016126982664121502) +zone = ('flz016', 0.0025672413689222739) + +[fips1203992912] +centroid = (0.53348035858419274, -1.4768266130436305) +description = Quincy CCD, FL +station = ('k2j9', 0.001153239134650756) +zone = ('flz016', 0.00023500579091014732) + +[fips1204070] +centroid = (0.49661561884332361, -1.4225577118012618) +description = Bay Hill CDP, FL +station = ('kmco', 0.0027371124580260571) +zone = ('flz045', 0.0029977649913698928) + +[fips12041] +centroid = (0.51877217227166361, -1.4450593342760136) +description = Gilchrist County, FL +station = ('kcty', 0.0048736006386574347) +zone = ('flz035', 8.301828481031552e-05) + +[fips1204150] +centroid = (0.49548002036551347, -1.4238147851950105) +description = Bay Lake city, FL +station = ('kism', 0.0027771023197342487) +zone = ('flz045', 0.0044847021887357286) + +[fips1204162] +centroid = (0.49435937935939295, -1.4431073405872907) +description = Bayonet Point CDP, FL +station = ('kbkv', 0.0043637045394159003) +zone = ('flz049', 0.00450621904022846) + +[fips1204190130] +centroid = (0.52034476628758819, -1.4456008750363225) +description = Bell CCD, FL +station = ('kcty', 0.0051997639559488848) +zone = ('flz035', 0.0015810813712913371) + +[fips1204193432] +centroid = (0.51815758948215895, -1.4449167932360032) +description = Trenton CCD, FL +station = ('kcty', 0.0048334263229142405) +zone = ('flz035', 0.00068556809630641923) + +[fips1204200] +centroid = (0.48548626506859394, -1.4447441976262734) +description = Bay Pines CDP, FL +station = ('kpie', 0.0022780945212617634) +zone = ('flz050', 0.0021360088988676982) + +[fips1204250] +centroid = (0.4981704454074628, -1.4424101688175814) +description = Bayport CDP, FL +station = ('kbkv', 0.0032607949402597971) +zone = ('flz048', 0.0034248560380854671) + +[fips12043] +centroid = (0.47045018374949271, -1.4170471313940625) +description = Glades County, FL +station = ('kobe', 0.0075874590067510203) +zone = ('flz063', 0.00076687616794650056) + +[fips1204350] +centroid = (0.47879736052349575, -1.4412494725051277) +description = Bayshore Gardens CDP, FL +station = ('ksrq', 0.0007174816698345489) +zone = ('flz055', 0.0043832608449922133) + +[fips1204392379] +centroid = (0.47251871307237137, -1.4144429081638692) +description = Northeast Glades CCD, FL +station = ('kobe', 0.0044930005005999274) +zone = ('flz063', 0.0036557520662369824) + +[fips1204393185] +centroid = (0.46939115286596761, -1.4184374257696162) +description = Southwest Glades CCD, FL +station = ('kobe', 0.0092118277518325412) +zone = ('flz063', 0.0012534484413525067) + +[fips12045] +centroid = (0.52198010489012181, -1.4880072794983688) +description = Gulf County, FL +station = ('kaaf', 0.0047336307286036184) +zone = ('flz114', 0.001588759049880605) + +[fips1204592863] +centroid = (0.5202655632461326, -1.4880628158751674) +description = Port St. Joe CCD, FL +station = ('kaaf', 0.0039119625472696443) +zone = ('flz114', 0.00024275117392317529) + +[fips1204593640] +centroid = (0.52465791120157912, -1.4878336192377954) +description = Wewahitchka CCD, FL +station = ('ktdr', 0.0043578984552536922) +zone = ('flz014', 0.00236840544095363) + +[fips1204650] +centroid = (0.49237857028471954, -1.4442719115306839) +description = Beacon Square CDP, FL +station = ('kpie', 0.0052444271595374278) +zone = ('flz050', 0.0049576398309123786) + +[fips12047] +centroid = (0.53217012246142803, -1.4477689230331496) +description = Hamilton County, FL +station = ('kvld', 0.006962619931090098) +zone = ('flz020', 0.00010458387605373484) + +[fips1204735] +centroid = (0.4844340409691516, -1.443861078478057) +description = Bear Creek CDP, FL +station = ('kspg', 0.0014607283715249888) +zone = ('flz050', 0.003007838305526785) + +[fips1204791651] +centroid = (0.53227744275713318, -1.4469767704455472) +description = Jasper CCD, FL +station = ('kvld', 0.0073700972654346169) +zone = ('flz020', 0.000633877155539797) + +[fips1204791677] +centroid = (0.53288525366914019, -1.4513430082753838) +description = Jennings CCD, FL +station = ('kvld', 0.0046903927779943701) +zone = ('flz020', 0.003189310082426647) + +[fips1204793653] +centroid = (0.53065901639505142, -1.4443111814388536) +description = White Springs CCD, FL +station = ('kvld', 0.010162749934800626) +zone = ('flz020', 0.0033417981854993771) + +[fips12049] +centroid = (0.47984068344375297, -1.4280559701839419) +description = Hardee County, FL +station = ('kbow', 0.0080006937106258599) +zone = ('flz056', 0.00018085093503929624) + +[fips1204925] +centroid = (0.47620086910188891, -1.4394267379008074) +description = Bee Ridge CDP, FL +station = ('ksrq', 0.0023452028228595693) +zone = ('flz060', 0.0029630763248505243) + +[fips1204975] +centroid = (0.51935537404121757, -1.4462112864889147) +description = Bell town, FL +station = ('kcty', 0.0042060455992494307) +zone = ('flz035', 0.001074816436006746) + +[fips1204990247] +centroid = (0.48202309550032424, -1.4294717987264522) +description = Bowling Green CCD, FL +station = ('kbow', 0.0060824230547502659) +zone = ('flz056', 0.0026145770886151312) + +[fips1204993549] +centroid = (0.47949194920591193, -1.4301157030473906) +description = Wauchula CCD, FL +station = ('kbow', 0.0086705266710582849) +zone = ('flz056', 0.0020377616392964052) + +[fips1204993783] +centroid = (0.4796334779549562, -1.4256586557365727) +description = Zolfo Springs CCD, FL +station = ('kbow', 0.008328043348200526) +zone = ('flz056', 0.0019565882376996542) + +[fips1205025] +centroid = (0.52672801132078451, -1.4265340256229104) +description = Bellair-Meadowbrook Terrace CDP, FL +station = ('knip', 0.0013902353027886415) +zone = ('flz025', 0.0027867047345463821) + +[fips1205075] +centroid = (0.4875747260515304, -1.4453556213698322) +description = Belleair town, FL +station = ('kpie', 0.0020243768999333176) +zone = ('flz050', 0.0014077128239168466) + +[fips12051] +centroid = (0.46319886430623186, -1.4163623340087501) +description = Hendry County, FL +station = ('krsw', 0.0096048384042164443) +zone = ('flz066', 0.0003448670319785395) + +[fips1205100] +centroid = (0.48743005570983255, -1.4457840124347341) +description = Belleair Beach city, FL +station = ('kpie', 0.0023825033656188054) +zone = ('flz050', 0.0017799120453003095) + +[fips1205125] +centroid = (0.48728927745236672, -1.4454773231785738) +description = Belleair Bluffs city, FL +station = ('kpie', 0.002104453185440407) +zone = ('flz050', 0.0015165521525768865) + +[fips1205150] +centroid = (0.48724517298216879, -1.4459250350382955) +description = Belleair Shore town, FL +station = ('kpie', 0.0024994684070945034) +zone = ('flz050', 0.0019145910776906846) + +[fips1205190598] +centroid = (0.46254216672187654, -1.4139913042199157) +description = Clewiston CCD, FL +station = ('krsw', 0.011740402501958538) +zone = ('flz066', 0.0025637417760350921) + +[fips1205191781] +centroid = (0.46470089466049819, -1.4193921034171644) +description = LaBelle CCD, FL +station = ('krsw', 0.007075961536759939) +zone = ('flz066', 0.0027547581661328991) + +[fips1205200] +centroid = (0.46577650617191729, -1.4079046778930957) +description = Belle Glade city, FL +station = ('kpbi', 0.008842133568651692) +zone = ('flz067', 0.0027228847085578878) + +[fips12053] +centroid = (0.4986041073667058, -1.4392828878638579) +description = Hernando County, FL +station = ('kbkv', 0.0017816323380885478) +zone = ('flz048', 0.00072329779371197074) + +[fips1205300] +centroid = (0.49681240471648602, -1.419814193843467) +description = Belle Isle city, FL +station = ('kmco', 0.00088296221303956878) +zone = ('flz045', 0.00094948281402036584) + +[fips1205375] +centroid = (0.50727441439842302, -1.4321572844866184) +description = Belleview city, FL +station = ('kvvg', 0.0021930058737972048) +zone = ('flz040', 0.0025414985577735852) + +[fips1205390325] +centroid = (0.4984667499545738, -1.4374705205152947) +description = Brooksville CCD, FL +station = ('kbkv', 0.0021258355546944123) +zone = ('flz048', 0.00092701658875969564) + +[fips1205391475] +centroid = (0.49861447462246261, -1.44261011373669) +description = Hernando Beach CCD, FL +station = ('kbkv', 0.0036177688056689928) +zone = ('flz048', 0.0036062706587703833) + +[fips1205392964] +centroid = (0.49771622346963124, -1.4340298482410831) +description = Ridge Manor CCD, FL +station = ('kbkv', 0.0044764375127780594) +zone = ('flz043', 0.0035111187515806689) + +[fips1205393230] +centroid = (0.49784344051880913, -1.4403778027168042) +description = Spring Hill CCD, FL +station = ('kbkv', 0.0015583584209586257) +zone = ('flz048', 0.0017093441861091129) + +[fips1205462] +centroid = (0.53167209275937144, -1.5239128910020969) +description = Bellview CDP, FL +station = ('knpa', 0.001863565574828986) +zone = ('flz002', 0.00082895011797304524) + +[fips12055] +centroid = (0.47721886729469959, -1.4196668880545984) +description = Highlands County, FL +station = ('kobe', 0.0077195932455828018) +zone = ('flz057', 1.3495319540708405e-05) + +[fips1205590091] +centroid = (0.48146568969711478, -1.4201491050736321) +description = Avon Park CCD, FL +station = ('kbow', 0.0090223873967523356) +zone = ('flz057', 0.0042549313895884552) + +[fips1205591846] +centroid = (0.47531661548965848, -1.4196414062475193) +description = Lake Placid CCD, FL +station = ('kobe', 0.0076078502903404194) +zone = ('flz057', 0.0019158732211299512) + +[fips1205593120] +centroid = (0.47907621177808696, -1.4197446773793598) +description = Sebring CCD, FL +station = ('kobe', 0.0083045864755433019) +zone = ('flz057', 0.0018451583201979131) + +[fips12057] +centroid = (0.48706187850412441, -1.4372710991949618) +description = Hillsborough County, FL +station = ('ktpf', 0.0015440637018998202) +zone = ('flz051', 0.0033244331461339412) + +[fips1205790286] +centroid = (0.48770148931510271, -1.4359084159281745) +description = Brandon CCD, FL +station = ('kvdf', 0.0016774934566469084) +zone = ('flz051', 0.0042894560540459453) + +[fips1205791735] +centroid = (0.49056892564978927, -1.4412390354362008) +description = Keystone-Citrus Park CCD, FL +station = ('ktpa', 0.0025485299457053637) +zone = ('flz050', 0.0038439032605867155) + +[fips1205792614] +centroid = (0.48598010598044572, -1.4384867210189758) +description = Palm River-Gibsonton CCD, FL +station = ('kmcf', 0.0012501836086132691) +zone = ('flz051', 0.0022647430891736607) + +[fips1205792769] +centroid = (0.4892998094842016, -1.4337530913815943) +description = Plant City CCD, FL +station = ('kpcm', 0.00060839906045808323) +zone = ('flz049', 0.0060787755834943238) + +[fips1205793003] +centroid = (0.48330758801662199, -1.4403016540015396) +description = Ruskin CCD, FL +station = ('kspg', 0.0021485733013183557) +zone = ('flz051', 0.0021991130122333241) + +[fips1205793367] +centroid = (0.4890317792709728, -1.4388448974880701) +description = Tampa CCD, FL +station = ('kvdf', 0.0014587106891884919) +zone = ('flz050', 0.0046310997946998932) + +[fips1205793693] +centroid = (0.48458218451606089, -1.4347934123355379) +description = Wimauma-Riverview CCD, FL +station = ('kpcm', 0.0042049918146490478) +zone = ('flz051', 0.002843492089267046) + +[fips1205825] +centroid = (0.53913662162405596, -1.5190775435759092) +description = Berrydale CDP, FL +station = ('knse', 0.0027552312103816231) +zone = ('flz003', 0.00069739761489104378) + +[fips12059] +centroid = (0.53871720155150915, -1.4977186754289009) +description = Holmes County, FL +station = ('k1j0', 0.0032421758450808694) +zone = ('flz009', 3.5514878781421647e-05) + +[fips1205990221] +centroid = (0.53829652484190105, -1.4962947660119537) +description = Bonifay CCD, FL +station = ('k1j0', 0.0019747205813616313) +zone = ('flz009', 0.0013214407410759718) + +[fips1205991001] +centroid = (0.54020303525031699, -1.4954677766524813) +description = Esto-Noma CCD, FL +station = ('k1j0', 0.0024136000430123087) +zone = ('flz009', 0.0024349772776567366) + +[fips1205993596] +centroid = (0.5383304016826822, -1.4998326356722087) +description = West Holmes CCD, FL +station = ('k1j0', 0.0050098997073764924) +zone = ('flz009', 0.0018422593552075142) + +[fips12061] +centroid = (0.48346733800305702, -1.4062956064958048) +description = Indian River County, FL +station = ('kvrb', 0.0025991157580326943) +zone = ('flz054', 0.00064778159622918185) + +[fips1206100] +centroid = (0.51517113914577883, -1.4162947723134052) +description = Beverly Beach town, FL +station = ('kxfl', 0.0012538125875073678) +zone = ('flz038', 0.0027198268106401785) + +[fips1206125] +centroid = (0.50470598787118814, -1.4390954395021938) +description = Beverly Hills CDP, FL +station = ('kcgc', 0.0019557017800610854) +zone = ('flz042', 0.0011836111632731827) + +[fips1206191066] +centroid = (0.48317030041766007, -1.4086140669675689) +description = Fellsmere CCD, FL +station = ('kvrb', 0.0045359135044230666) +zone = ('flz054', 0.0014285878948973147) + +[fips1206193510] +centroid = (0.48352198426193699, -1.4033901045301322) +description = Vero Beach CCD, FL +station = ('kvrb', 0.00094725098288414968) +zone = ('flz054', 0.0032116967262440697) + +[fips12063] +centroid = (0.53734868888502041, -1.4872015831557708) +description = Jackson County, FL +station = ('kmai', 0.00089192293307876634) +zone = ('flz011', 0.004336572631837384) + +[fips1206350] +centroid = (0.42908252944506331, -1.4251212863131761) +description = Big Coppitt Key CDP, FL +station = ('knqx', 0.00047505171001539109) +zone = ('flz078', 0.0019781976685723504) + +[fips1206390013] +centroid = (0.53474242361960234, -1.4889864615686152) +description = Alford CCD, FL +station = ('kmai', 0.0039151067480581864) +zone = ('flz013', 0.004411622658042077) + +[fips1206390377] +centroid = (0.53950944140557444, -1.4897434632250828) +description = Campbellton CCD, FL +station = ('kmai', 0.0029254409689850156) +zone = ('alz069', 0.0042917492977353512) + +[fips1206390650] +centroid = (0.53767450694978269, -1.490266730388123) +description = Cottondale CCD, FL +station = ('k1j0', 0.0032417031608905091) +zone = ('flz010', 0.0054076240968928121) + +[fips1206390728] +centroid = (0.53589229889069379, -1.4850938886444773) +description = Cypress CCD, FL +station = ('kmai', 0.0026536593494842537) +zone = ('flz011', 0.0028490542001328952) + +[fips1206391287] +centroid = (0.53947488388638498, -1.4922587444765945) +description = Graceville CCD, FL +station = ('k1j0', 0.0020029567706737268) +zone = ('flz009', 0.0047616498425606243) + +[fips1206391339] +centroid = (0.53874673252245286, -1.4850420523656931) +description = Greenwood CCD, FL +station = ('kmai', 0.0015694882452626129) +zone = ('flz011', 0.0029147046850282721) + +[fips1206392041] +centroid = (0.54036723582634461, -1.4862147390901079) +description = Malone CCD, FL +station = ('kmai', 0.002267511561658127) +zone = ('alz069', 0.0040275978741610074) + +[fips1206392067] +centroid = (0.53706006378661808, -1.4874617768406582) +description = Marianna CCD, FL +station = ('kmai', 0.0012524479863694235) +zone = ('flz011', 0.0045608965588664384) + +[fips1206393133] +centroid = (0.53579173301919381, -1.482612588953502) +description = Sneads CCD, FL +station = ('kmai', 0.0042478382870832863) +zone = ('flz011', 0.0014737529039320536) + +[fips1206425] +centroid = (0.43088042801412768, -1.4200847373308185) +description = Big Pine Key CDP, FL +station = ('kmth', 0.0050555013065203764) +zone = ('flz078', 0.0030455411136598104) + +[fips12065] +centroid = (0.53100871056398102, -1.4641717018763178) +description = Jefferson County, FL +station = ('ktlh', 0.0069241771785927223) +zone = ('flz018', 0.00058387823331087065) + +[fips1206592249] +centroid = (0.53357376860575945, -1.4631244868718287) +description = Monticello CCD, FL +station = ('ktvi', 0.0058117079585064861) +zone = ('flz018', 0.0021539929997210342) + +[fips1206593523] +centroid = (0.52912373751853459, -1.4653122919957884) +description = Wacissa CCD, FL +station = ('ktlh', 0.0061067253422109856) +zone = ('flz018', 0.002679273434322301) + +[fips1206600] +centroid = (0.45172238199657316, -1.39942609527971) +description = Biscayne Park village, FL +station = ('kopf', 0.0016347083469964868) +zone = ('flz074', 0.0021711601147101525) + +[fips1206625] +centroid = (0.49855157295622077, -1.4156036219296155) +description = Bithlo CDP, FL +station = ('korl', 0.0034623845440515939) +zone = ('flz046', 0.003300983693184309) + +[fips1206667] +centroid = (0.50451735268563258, -1.4398019662366937) +description = Black Diamond CDP, FL +station = ('kcgc', 0.0013187422570166126) +zone = ('flz042', 0.0010628079002213016) + +[fips1206670] +centroid = (0.50104158184016345, -1.4168202211380108) +description = Black Hammock CDP, FL +station = ('ksfb', 0.0017229744375721668) +zone = ('flz046', 0.0009086906809076847) + +[fips12067] +centroid = (0.52342539459040571, -1.4517388664030286) +description = Lafayette County, FL +station = ('kcty', 0.0063386586160888957) +zone = ('flz029', 8.879021921865005e-05) + +[fips1206790767] +centroid = (0.52674307351222927, -1.4537815473996851) +description = Day CCD, FL +station = ('k40j', 0.0047746982404812191) +zone = ('flz029', 0.0038117657000701138) + +[fips1206792093] +centroid = (0.52274859081306746, -1.4514504158375516) +description = Mayo CCD, FL +station = ('kcty', 0.0056282094816732927) +zone = ('flz029', 0.00066339279024978169) + +[fips1206875] +centroid = (0.48654047884338353, -1.4357325914593289) +description = Bloomingdale CDP, FL +station = ('kvdf', 0.0027209476643123703) +zone = ('flz051', 0.0033482609251162055) + +[fips12069] +centroid = (0.50202847826570363, -1.4261483602180973) +description = Lake County, FL +station = ('klee', 0.0018413625074211605) +zone = ('flz044', 0.0031769370240949529) + +[fips1206925] +centroid = (0.53132796619075573, -1.484322261128878) +description = Blountstown city, FL +station = ('kmai', 0.007123027539297013) +zone = ('flz013', 0.0023728964058114862) + +[fips1206990585] +centroid = (0.49744489458411617, -1.4265513043825053) +description = Clermont CCD, FL +station = ('klee', 0.0056399659901471937) +zone = ('flz144', 0.0015309150747439431) + +[fips1206991014] +centroid = (0.50366355506884952, -1.4255468324913974) +description = Eustis CCD, FL +station = ('klee', 0.002240952205083619) +zone = ('flz044', 0.0014756171141936504) + +[fips1206991235] +centroid = (0.5044915916258732, -1.4293448783832472) +description = Fruitland Park-Lady Lake CCD, FL +station = ('kvvg', 0.0015275555864128587) +zone = ('flz043', 0.0045074721430444315) + +[fips1206991365] +centroid = (0.49754142874504403, -1.4293177385133786) +description = Groveland-Mascotte CCD, FL +station = ('klee', 0.0055321207533749828) +zone = ('flz144', 0.0016671724237997945) + +[fips1206991541] +centroid = (0.50111689279738703, -1.4286422611862719) +description = Howey-in-the-Hills-Okahumpka CCD, FL +station = ('klee', 0.0019213650668150996) +zone = ('flz144', 0.0026983339337550588) + +[fips1206991911] +centroid = (0.50285958660221086, -1.4295168456744463) +description = Leesburg CCD, FL +station = ('klee', 0.0013578710214145761) +zone = ('flz043', 0.0032748532445196618) + +[fips1206991924] +centroid = (0.50392673326675774, -1.4277987959186604) +description = Leesburg East CCD, FL +station = ('klee', 0.00099244490754300005) +zone = ('flz044', 0.0028866665791882698) + +[fips1206992262] +centroid = (0.50300612444620829, -1.4225969817094317) +description = Mount Dora CCD, FL +station = ('ksfb', 0.004009936460045418) +zone = ('flz044', 0.0026835569263787178) + +[fips1206993393] +centroid = (0.50186028088568901, -1.426228209031376) +description = Tavares CCD, FL +station = ('klee', 0.0018732615575262818) +zone = ('flz044', 0.0033591069293596866) + +[fips1206993445] +centroid = (0.50606387148253229, -1.4231554347101922) +description = Umatilla CCD, FL +station = ('kded', 0.0041174748319919401) +zone = ('flz044', 0.0017630039487807536) + +[fips12071] +centroid = (0.46342216173073203, -1.4292893943663265) +description = Lee County, FL +station = ('kfmy', 0.00067528216873228295) +zone = ('flz065', 0.0012065804317347014) + +[fips1207190195] +centroid = (0.46723017345261081, -1.4358158611179415) +description = Boca Grande CCD, FL +station = ('kpgd', 0.0048690289312197594) +zone = ('flz062', 0.0062752327156299472) + +[fips1207190234] +centroid = (0.46085757492785162, -1.4270440980968058) +description = Bonita Springs CCD, FL +station = ('krsw', 0.0022369651016941362) +zone = ('flz065', 0.0031539510973054479) + +[fips1207190403] +centroid = (0.4652210900440551, -1.4312446867273354) +description = Cape Coral CCD, FL +station = ('kfmy', 0.0024867805468086631) +zone = ('flz065', 0.0031605020410803444) + +[fips1207190988] +centroid = (0.46100177403065135, -1.4294972281736538) +description = Estero Island CCD, FL +station = ('krsw', 0.0029986067460185161) +zone = ('flz065', 0.0031611692971749744) + +[fips1207191131] +centroid = (0.46342216173073203, -1.4292893943663265) +description = Fort Myers CCD, FL +station = ('kfmy', 0.00067528216873228295) +zone = ('flz065', 0.0012065804317347014) + +[fips1207191144] +centroid = (0.46655227011784373, -1.4255509514684321) +description = Fort Myers Shores CCD, FL +station = ('krsw', 0.0037243469440666793) +zone = ('flz065', 0.0034765532477573418) + +[fips1207191937] +centroid = (0.46361428757479156, -1.4258652503601312) +description = Lehigh Acres CCD, FL +station = ('krsw', 0.0012189665564829001) +zone = ('flz065', 0.0019655280855907196) + +[fips1207192392] +centroid = (0.46632445229058095, -1.4287838248419011) +description = North Fort Myers CCD, FL +station = ('kfmy', 0.0023583501916801548) +zone = ('flz065', 0.0025304375941429288) + +[fips1207192743] +centroid = (0.4645600291365698, -1.434084389780208) +description = Pine Island CCD, FL +station = ('kfmy', 0.004724111429268831) +zone = ('flz065', 0.0054449446919495881) + +[fips1207193094] +centroid = (0.46320511258495406, -1.4345203555740635) +description = Sanibel Island CCD, FL +station = ('kfmy', 0.005135032026227105) +zone = ('flz065', 0.0058338382327244222) + +[fips12073] +centroid = (0.53161524738563404, -1.4709250963372771) +description = Leon County, FL +station = ('ktlh', 0.0015007098224853641) +zone = ('flz017', 2.1172006954297073e-05) + +[fips1207300] +centroid = (0.46029315290104916, -1.3981185469639934) +description = Boca Raton city, FL +station = ('kbct', 0.00010311434942272138) +zone = ('flz172', 0.0039059987547183234) + +[fips1207375] +centroid = (0.46556249389903775, -1.4336377774779152) +description = Bokeelia CDP, FL +station = ('kpgd', 0.0047620667226034421) +zone = ('flz065', 0.005276642403723583) + +[fips1207390878] +centroid = (0.53283781562007093, -1.4677475673543887) +description = East Leon CCD, FL +station = ('ktlh', 0.0044416141014445689) +zone = ('flz017', 0.0030086191010380865) + +[fips1207392384] +centroid = (0.53398009870891627, -1.4701243043698768) +description = Northeast Leon CCD, FL +station = ('ktlh', 0.0038358162263371475) +zone = ('flz017', 0.00248409925076413) + +[fips1207392463] +centroid = (0.53242268905748413, -1.4722249826575773) +description = Northwest Leon CCD, FL +station = ('ktlh', 0.0018429151834798735) +zone = ('flz017', 0.0013921412413799537) + +[fips1207393152] +centroid = (0.52948158237507092, -1.4692514128510772) +description = Southeast Leon CCD, FL +station = ('ktlh', 0.0027593543563430062) +zone = ('flz017', 0.0025595334652506146) + +[fips1207393190] +centroid = (0.53032590285401571, -1.4750158164913938) +description = Southwest Leon CCD, FL +station = ('ktlh', 0.0024548023536340516) +zone = ('flz027', 0.0033521078008047858) + +[fips1207393295] +centroid = (0.53120910926869491, -1.4710282103894849) +description = Tallahassee Central CCD, FL +station = ('ktlh', 0.0011794823990316826) +zone = ('flz017', 0.00039481272007573453) + +[fips1207393302] +centroid = (0.53135351781100493, -1.4703079304604794) +description = Tallahassee East CCD, FL +station = ('ktlh', 0.0017940950099242948) +zone = ('flz017', 0.00058528439915171151) + +[fips1207393315] +centroid = (0.5319751168241027, -1.4707305619388498) +description = Tallahassee Northeast CCD, FL +station = ('ktlh', 0.0018758970515246039) +zone = ('flz017', 0.00041685933064597371) + +[fips1207393328] +centroid = (0.53175290150373877, -1.4717936419862394) +description = Tallahassee Northwest CCD, FL +station = ('ktlh', 0.0012204399929753619) +zone = ('flz017', 0.00076383078670945817) + +[fips1207393335] +centroid = (0.53048313956632787, -1.4708673433923285) +description = Tallahassee South CCD, FL +station = ('ktlh', 0.0011408495478820811) +zone = ('flz017', 0.0011121732914707923) + +[fips1207393354] +centroid = (0.53098558495139203, -1.4718551822956649) +description = Tallahassee Southwest CCD, FL +station = ('ktlh', 0.00049541823091682328) +zone = ('flz017', 0.0010054463646262681) + +[fips1207450] +centroid = (0.53723400329987192, -1.4955549383953257) +description = Bonifay city, FL +station = ('k1j0', 0.0016143206156918218) +zone = ('flz009', 0.0024114713779070608) + +[fips12075] +centroid = (0.51110935655066014, -1.4448443446187531) +description = Levy County, FL +station = ('kcty', 0.0077603359991250615) +zone = ('flz039', 0.00094343702665283715) + +[fips1207525] +centroid = (0.46002512268782036, -1.4274511961448335) +description = Bonita Springs city, FL +station = ('krsw', 0.0030851970714579403) +zone = ('flz065', 0.0038933452973360645) + +[fips1207590468] +centroid = (0.50943562070458259, -1.4454532201816037) +description = Cedar Key-Yankeetown CCD, FL +station = ('kcgc', 0.0067282493205314559) +zone = ('flz039', 0.0026219615095524505) + +[fips1207590533] +centroid = (0.51374340745776992, -1.4464711136546593) +description = Chiefland CCD, FL +station = ('kcty', 0.0048416918523564671) +zone = ('flz039', 0.002890873084569237) + +[fips1207593679] +centroid = (0.51271223202910665, -1.4407426288903487) +description = Williston-Bronson CCD, FL +station = ('kocf', 0.0062369112671921429) +zone = ('flz039', 0.0030441998908781092) + +[fips1207687] +centroid = (0.45596848881399499, -1.3994434787590599) +description = Boulevard Gardens CDP, FL +station = ('kfll', 0.0011374715634811829) +zone = ('flz172', 0.00097230072033061693) + +[fips12077] +centroid = (0.52813399620631363, -1.4812361699455019) +description = Liberty County, FL +station = ('k2j9', 0.0076309064614268124) +zone = ('flz026', 0.00038766833654466028) + +[fips1207775] +centroid = (0.48236973534306282, -1.4281115938272029) +description = Bowling Green city, FL +station = ('kbow', 0.0054872090087957218) +zone = ('flz056', 0.0025420286488148313) + +[fips1207790884] +centroid = (0.52695050589382875, -1.4801889723943051) +description = East Liberty CCD, FL +station = ('ktlh', 0.0078058467321080625) +zone = ('flz026', 0.0014136910614093695) + +[fips1207793601] +centroid = (0.52865426140304062, -1.4833242818625876) +description = West Liberty CCD, FL +station = ('k2j9', 0.0085332605189586547) +zone = ('flz026', 0.0017972298478309281) + +[fips1207875] +centroid = (0.46300665119570977, -1.3976724931670614) +description = Boynton Beach city, FL +station = ('kbct', 0.0026469823611277527) +zone = ('flz068', 0.0019325955672674228) + +[fips12079] +centroid = (0.53140437670540808, -1.4568339537284982) +description = Madison County, FL +station = ('kvld', 0.0066166130964668158) +zone = ('flz019', 5.3256053831624698e-05) + +[fips1207950] +centroid = (0.47980708585565207, -1.4412032212799497) +description = Bradenton city, FL +station = ('ksrq', 0.0016329267733132247) +zone = ('flz055', 0.0043036501381994979) + +[fips1207975] +centroid = (0.47925231549961311, -1.4433136210515838) +description = Bradenton Beach city, FL +station = ('ksrq', 0.0024829581612953269) +zone = ('flz051', 0.0066131069575943967) + +[fips1207991326] +centroid = (0.53153461317419182, -1.4587257684646122) +description = Greenville CCD, FL +station = ('k40j', 0.0067726250014133009) +zone = ('flz019', 0.001647667967672071) + +[fips1207992015] +centroid = (0.53130569578950027, -1.4550276252191465) +description = Madison CCD, FL +station = ('kvld', 0.0061520591583690909) +zone = ('flz019', 0.0015513999189820948) + +[fips12081] +centroid = (0.47964066871147443, -1.4375541217864654) +description = Manatee County, FL +station = ('ksrq', 0.0031874366697117198) +zone = ('flz055', 0.0010673208407477569) + +[fips1208125] +centroid = (0.48510674322274777, -1.4307899062841434) +description = Bradley Junction CDP, FL +station = ('klal', 0.0033475087878010101) +zone = ('flz052', 0.0050965066138992411) + +[fips1208150] +centroid = (0.48757491803774811, -1.4363929716884059) +description = Brandon CDP, FL +station = ('kvdf', 0.0015336115375021676) +zone = ('flz051', 0.0040144152216142525) + +[fips1208175] +centroid = (0.52293837791592923, -1.4473242480463266) +description = Branford town, FL +station = ('kcty', 0.0063179976721068516) +zone = ('flz021', 0.0041941710515893821) + +[fips1208190273] +centroid = (0.47954406473737649, -1.4420747514419332) +description = Bradenton CCD, FL +station = ('ksrq', 0.0017592444974925572) +zone = ('flz051', 0.005638805914239888) + +[fips1208192290] +centroid = (0.4776794771375934, -1.4353432259565013) +description = Myakka City CCD, FL +station = ('ksrq', 0.0048482725913677254) +zone = ('flz055', 0.0020033864544766497) + +[fips1208192600] +centroid = (0.48117020545475214, -1.4416886846113921) +description = Palmetto CCD, FL +station = ('ksrq', 0.0030606666284312359) +zone = ('flz051', 0.0042687930097360018) + +[fips1208192652] +centroid = (0.48129550264175286, -1.435768178722777) +description = Parrish CCD, FL +station = ('ksrq', 0.0053981589816744962) +zone = ('flz055', 0.0019064708061943274) + +[fips12083] +centroid = (0.50968509806786266, -1.4319222235429596) +description = Marion County, FL +station = ('kocf', 0.0027189149629367792) +zone = ('flz040', 0.00024631734632085938) + +[fips1208300] +centroid = (0.53183482725882747, -1.5228118674967688) +description = Brent CDP, FL +station = ('kpns', 0.0010326995110376607) +zone = ('flz002', 0.0011936959778255391) + +[fips1208390156] +centroid = (0.50657314110497176, -1.4327175177232161) +description = Belleview CCD, FL +station = ('kvvg', 0.0021183820172983011) +zone = ('flz040', 0.0032789705487129908) + +[fips1208390871] +centroid = (0.50784011051557942, -1.4388840452231921) +description = Dunnellon CCD, FL +station = ('kocf', 0.0036433515294619599) +zone = ('flz042', 0.0043177429200180629) + +[fips1208390897] +centroid = (0.50996545030561058, -1.4275810486411817) +description = East Marion CCD, FL +station = ('kvvg', 0.0051264452552636898) +zone = ('flz040', 0.0040004580857022944) + +[fips1208391053] +centroid = (0.50925668954966818, -1.4369839227198384) +description = Fellowship CCD, FL +station = ('kocf', 0.0017860902383625358) +zone = ('flz040', 0.0042469571600090147) + +[fips1208391105] +centroid = (0.51264271556499974, -1.4316480846773492) +description = Fort McCoy-Anthony CCD, FL +station = ('kocf', 0.0046022188576913632) +zone = ('flz040', 0.0028620266347483283) + +[fips1208392483] +centroid = (0.50926466570434981, -1.4327893205686431) +description = Ocala CCD, FL +station = ('kocf', 0.0018996224396343293) +zone = ('flz040', 0.00077743701087038496) + +[fips1208392951] +centroid = (0.51285632641215129, -1.4361255174338301) +description = Reddick-McIntosh CCD, FL +station = ('kocf', 0.0039374566819458277) +zone = ('flz040', 0.0046038962841745265) + +[fips1208450] +centroid = (0.48450975335210311, -1.4308954987038891) +description = Brewster CDP, FL +station = ('klal', 0.0039235115635973304) +zone = ('flz056', 0.0053939394737403216) + +[fips12085] +centroid = (0.47263435858860853, -1.4032134946631227) +description = Martin County, FL +station = ('ksua', 0.003273940237238252) +zone = ('flz064', 0.0001587333130856825) + +[fips1208575] +centroid = (0.46266762098850983, -1.3971752663164605) +description = Briny Breezes town, FL +station = ('kbct', 0.0024339647927442199) +zone = ('flz068', 0.0024638431172937752) + +[fips1208591586] +centroid = (0.47241046775216267, -1.4050265077835093) +description = Indiantown CCD, FL +station = ('ksua', 0.0048006803851746932) +zone = ('flz064', 0.0017785376899232127) + +[fips1208592873] +centroid = (0.47243617645204455, -1.3989053937506701) +description = Port Salerno-Hobe Sound CCD, FL +station = ('ksua', 0.0022511694842345369) +zone = ('flz064', 0.0037077205486733128) + +[fips1208593250] +centroid = (0.47479352285954324, -1.4000500504872981) +description = Stuart CCD, FL +station = ('ksua', 0.00038931656542169765) +zone = ('flz064', 0.0033907639729778656) + +[fips12086] +centroid = (0.44698744336225266, -1.4049733799610786) +description = Miami-Dade County, FL +station = ('ktmb', 0.0012428414602935391) +zone = ('flz073', 0.0026369919665599566) + +[fips1208600] +centroid = (0.53102541336492259, -1.4831339537076578) +description = Bristol city, FL +station = ('k2j9', 0.007110399918444003) +zone = ('flz013', 0.0033268341622248276) + +[fips1208650] +centroid = (0.45550911815487005, -1.3999018894870963) +description = Broadview Park CDP, FL +station = ('kfll', 0.0010740811839760459) +zone = ('flz072', 0.0010813540125930959) + +[fips1208691040] +centroid = (0.44878876277665097, -1.4088306623277413) +description = Everglades CCD, FL +station = ('ktmb', 0.004644852188051162) +zone = ('flz073', 0.0013167437275090888) + +[fips1208691482] +centroid = (0.45217573126977867, -1.4021680948010558) +description = Hialeah CCD, FL +station = ('kopf', 0.00087374506180800532) +zone = ('flz074', 0.001650897130623794) + +[fips1208691534] +centroid = (0.4419904784473303, -1.403739781245769) +description = Homestead CCD, FL +station = ('khst', 0.0028668896446151807) +zone = ('flz076', 0.0030922097122133663) + +[fips1208691705] +centroid = (0.4494859345463601, -1.4038485501647533) +description = Kendale Lakes-Tamiami CCD, FL +station = ('ktmb', 0.0018090905671228664) +zone = ('flz074', 0.0023954510138833392) + +[fips1208691714] +centroid = (0.4477310583433573, -1.401348854703462) +description = Kendall-Palmetto Bay CCD, FL +station = ('ktmb', 0.0022341076711350949) +zone = ('flz173', 0.0012899438260707537) + +[fips1208691729] +centroid = (0.44892215829138088, -1.3988430680430812) +description = Key Biscayne CCD, FL +station = ('kmia', 0.0028665041023683297) +zone = ('flz074', 0.0029515157193560296) + +[fips1208692158] +centroid = (0.45079290690342355, -1.40018962446758) +description = Miami CCD, FL +station = ('kopf', 0.0015480572967701352) +zone = ('flz074', 0.0012021458651981349) + +[fips1208692171] +centroid = (0.45125334221339214, -1.3983514786059645) +description = Miami Beach CCD, FL +station = ('kopf', 0.0026883041355619348) +zone = ('flz074', 0.0029125135054558146) + +[fips1208692175] +centroid = (0.45289222383430738, -1.4006315243808924) +description = Miami Gardens CCD, FL +station = ('khwo', 0.00093208974488750334) +zone = ('flz074', 0.0023939655314459125) + +[fips1208692470] +centroid = (0.45063293002418575, -1.402276060868584) +description = North Westside CCD, FL +station = ('kmia', 0.00076600147854503345) +zone = ('flz074', 0.00068656905739661409) + +[fips1208692886] +centroid = (0.44576813889351691, -1.4025587867541147) +description = Princeton-Goulds CCD, FL +station = ('khst', 0.0010617183001819955) +zone = ('flz173', 0.0010506882763920537) + +[fips1208693211] +centroid = (0.44915831879246826, -1.4024595298795537) +description = South Westside CCD, FL +station = ('kmia', 0.0010385477814004033) +zone = ('flz074', 0.0017035927485998842) + +[fips12087] +centroid = (0.44682249229464666, -1.4173256335828033) +description = Monroe County, FL +station = ('ktmb', 0.012201300842443457) +zone = ('flz075', 0.0030817292692274867) + +[fips1208700] +centroid = (0.51398391382869479, -1.4423134601237286) +description = Bronson town, FL +station = ('kgnv', 0.0069451636358349184) +zone = ('flz039', 0.0026956613485149576) + +[fips1208725] +centroid = (0.52163894538123445, -1.4369800306356066) +description = Brooker town, FL +station = ('kgnv', 0.0033610459843963617) +zone = ('flz031', 0.0027099121831766857) + +[fips1208762] +centroid = (0.49825779913652513, -1.4397213669318367) +description = Brookridge CDP, FL +station = ('kbkv', 0.0015472798955227594) +zone = ('flz048', 0.0010619374113867825) + +[fips1208790416] +centroid = (0.4428002065005005, -1.4135643268717077) +description = Cape Sable CCD, FL +station = ('ktmb', 0.01005084583229502) +zone = ('flz075', 0.0026964034151354403) + +[fips1208791755] +centroid = (0.42822375763991199, -1.4312907634195882) +description = Key West CCD, FL +station = ('keyw', 0.0038228483508353384) +zone = ('flz078', 0.0074873175876353001) + +[fips1208791976] +centroid = (0.43108224043553584, -1.4214925373587695) +description = Lower Keys CCD, FL +station = ('knqx', 0.0042803695755889767) +zone = ('flz078', 0.0018934268862550706) + +[fips1208792210] +centroid = (0.43229608202371278, -1.4128890938906964) +description = Middle Keys CCD, FL +station = ('kmth', 0.0016631460720687942) +zone = ('flz077', 0.0006705096800616665) + +[fips1208793471] +centroid = (0.43776606607251067, -1.4041564611513904) +description = Upper Keys CCD, FL +station = ('khst', 0.0070859420342211221) +zone = ('flz076', 0.0012476993622317031) + +[fips1208800] +centroid = (0.49765381049557994, -1.4382546794949231) +description = Brooksville city, FL +station = ('kbkv', 0.0010602968637004587) +zone = ('flz048', 0.00072394989436303794) + +[fips12089] +centroid = (0.53417417932173805, -1.4270672237093946) +description = Nassau County, FL +station = ('kjax', 0.0020905166712017532) +zone = ('flz024', 0.00065747130136937669) + +[fips1208925] +centroid = (0.53920465455829869, -1.5221892561927048) +description = Brownsdale CDP, FL +station = ('knse', 0.0040887848001492783) +zone = ('flz003', 0.0027888626049877197) + +[fips1208990364] +centroid = (0.53398161714536552, -1.4292561109374908) +description = Callahan-Hilliard CCD, FL +station = ('kjax', 0.0033058248074631378) +zone = ('flz024', 0.0012556351780378828) + +[fips1208991079] +centroid = (0.53452570608638217, -1.4213814646051728) +description = Fernandina Beach CCD, FL +station = ('kfhb', 0.00047515643556449323) +zone = ('gaz166', 0.0048939538823857143) + +[fips1208993757] +centroid = (0.53485916869326822, -1.4244438193107221) +description = Yulee CCD, FL +station = ('kfhb', 0.0022158419939921838) +zone = ('flz024', 0.0029776297752040289) + +[fips1209000] +centroid = (0.45066890126006931, -1.4004824034496022) +description = Brownsville CDP, FL +station = ('kmia', 0.0013522109463225006) +zone = ('flz074', 0.00092869581448147553) + +[fips12091] +centroid = (0.53522019004904331, -1.5113537984107186) +description = Okaloosa County, FL +station = ('kegi', 0.0011964328945656762) +zone = ('flz006', 0.0018005284746656963) + +[fips1209190104] +centroid = (0.53829582671020015, -1.5130885858740308) +description = Baker CCD, FL +station = ('kcew', 0.0029608831661615668) +zone = ('flz005', 0.0015702246783565002) + +[fips1209190676] +centroid = (0.537322561306118, -1.5099040232142569) +description = Crestview CCD, FL +station = ('kcew', 0.00035284230205071974) +zone = ('flz005', 0.0016366702716590527) + +[fips1209190962] +centroid = (0.53335200707100106, -1.511045887424082) +description = Eglin AFB CCD, FL +station = ('kvps', 0.001595748586826082) +zone = ('flz006', 0.00041003975224793865) + +[fips1209191170] +centroid = (0.53042322241310691, -1.5105652935612526) +description = Fort Walton Beach CCD, FL +station = ('kdts', 0.0012496049658203979) +zone = ('flz006', 0.0031112253908880416) + +[fips1209191885] +centroid = (0.53962760019593448, -1.5090408008195131) +description = Laurel Hill CCD, FL +station = ('kcew', 0.0027732542126102221) +zone = ('flz005', 0.002239400348463527) + +[fips1209192353] +centroid = (0.5322706883329279, -1.5092263991321702) +description = Niceville-Valparaiso CCD, FL +station = ('kvps', 0.00070777979372137884) +zone = ('flz006', 0.0022840082142575888) + +[fips12093] +centroid = (0.47796874800781891, -1.4117512439381512) +description = Okeechobee County, FL +station = ('kobe', 0.0021527756588342142) +zone = ('flz058', 0.00077680399808491079) + +[fips1209315] +centroid = (0.47352971249488157, -1.4117342967911142) +description = Buckhead Ridge CDP, FL +station = ('kobe', 0.0024280752865315719) +zone = ('flz058', 0.0051897074498648832) + +[fips1209350] +centroid = (0.46540600767830392, -1.4267605344532341) +description = Buckingham CDP, FL +station = ('krsw', 0.0023315357173302334) +zone = ('flz065', 0.0019064943599231593) + +[fips1209392405] +centroid = (0.47935698289485523, -1.4122721200001163) +description = North Okeechobee CCD, FL +station = ('kobe', 0.003614764132810372) +zone = ('flz058', 0.00068747175057480992) + +[fips1209392496] +centroid = (0.4747935054062507, -1.4104000274845494) +description = Okeechobee CCD, FL +station = ('kobe', 0.0012672104836542256) +zone = ('flz058', 0.004169655524274128) + +[fips1209415] +centroid = (0.49451148480370433, -1.4198630281559377) +description = Buenaventura Lakes CDP, FL +station = ('kmco', 0.0014813931403226633) +zone = ('flz045', 0.003195447538141482) + +[fips12095] +centroid = (0.49767077509590929, -1.4193592563206421) +description = Orange County, FL +station = ('korl', 0.00063952609661288031) +zone = ('flz045', 1.0028138286078221e-05) + +[fips1209550] +centroid = (0.51345349081572111, -1.4192922880372429) +description = Bunnell city, FL +station = ('kxfl', 0.0018891272678254996) +zone = ('flz038', 0.00073311700259797666) + +[fips1209590052] +centroid = (0.50084252703897358, -1.4233804600106519) +description = Apopka CCD, FL +station = ('korl', 0.0042314266839685909) +zone = ('flz044', 0.0042670111487205196) + +[fips1209590910] +centroid = (0.4969839531286645, -1.4145338223646056) +description = East Orange CCD, FL +station = ('ktix', 0.0038548427982321495) +zone = ('flz147', 0.0043350767837830083) + +[fips1209592522] +centroid = (0.4974391175442921, -1.4200787508514843) +description = Orlando CCD, FL +station = ('korl', 0.00097736910815288407) +zone = ('flz045', 0.00066833477446000755) + +[fips1209593198] +centroid = (0.49628758421041125, -1.4231151699643487) +description = Southwest Orange CCD, FL +station = ('kism', 0.0029773326214256931) +zone = ('flz045', 0.003574907409964633) + +[fips1209593458] +centroid = (0.49783841397056333, -1.417338042873785) +description = Union Park CCD, FL +station = ('korl', 0.0019820514017933476) +zone = ('flz045', 0.0017909698013046467) + +[fips1209593705] +centroid = (0.49854956582758098, -1.4231966419338318) +description = Winter Garden-Ocoee CCD, FL +station = ('korl', 0.0032269725978012493) +zone = ('flz045', 0.0034746511337444561) + +[fips1209612] +centroid = (0.46717290919985294, -1.4320671382307528) +description = Burnt Store Marina CDP, FL +station = ('kpgd', 0.0027314765325751585) +zone = ('flz062', 0.0034648549520796532) + +[fips1209625] +centroid = (0.50031290687745589, -1.4331907288433092) +description = Bushnell city, FL +station = ('kinf', 0.0039223567421076966) +zone = ('flz043', 0.00086124390777137666) + +[fips1209630] +centroid = (0.52011796075129146, -1.4184000059104533) +description = Butler Beach CDP, FL +station = ('ksgj', 0.0029714840403187465) +zone = ('flz033', 0.0031865829417150964) + +[fips1209655] +centroid = (0.46871794446688836, -1.3977764624306026) +description = Cabana Colony CDP, FL +station = ('kpbi', 0.0030130671906556236) +zone = ('flz168', 0.0026242489737771917) + +[fips12097] +centroid = (0.48972240605598699, -1.4161481472029454) +description = Osceola County, FL +station = ('kism', 0.006100800034817529) +zone = ('flz053', 0.00016950187794689592) + +[fips1209700] +centroid = (0.53340457638807115, -1.4282380254782174) +description = Callahan town, FL +station = ('kjax', 0.0022590156829677154) +zone = ('flz024', 0.00090386944387015132) + +[fips1209725] +centroid = (0.52579703524447829, -1.4932639843125728) +description = Callaway city, FL +station = ('kpam', 0.0011046093449134317) +zone = ('flz112', 0.0023257151004925625) + +[fips1209791768] +centroid = (0.49272904985181254, -1.4220371673518544) +description = Kissimmee CCD, FL +station = ('kism', 0.0011868958089376674) +zone = ('flz045', 0.0054771264519038552) + +[fips1209793029] +centroid = (0.49276788342766942, -1.41879746974101) +description = St. Cloud CCD, FL +station = ('kism', 0.0024510373940695145) +zone = ('flz053', 0.0036928994076277288) + +[fips1209793146] +centroid = (0.48888943021718012, -1.4148835863467053) +description = South and East Osceola CCD, FL +station = ('kmlb', 0.0066045954887803335) +zone = ('flz053', 0.0015574174760893122) + +[fips1209875] +centroid = (0.49321842272077926, -1.4215850747157104) +description = Campbell CDP, FL +station = ('kism', 0.00057010044913642351) +zone = ('flz045', 0.0048666565682550398) + +[fips12099] +centroid = (0.46505629605608179, -1.4040942227102642) +description = Palm Beach County, FL +station = ('kpbi', 0.0054776829420787017) +zone = ('flz067', 0.0010913556051306427) + +[fips1209900] +centroid = (0.5401918127832267, -1.490542282970428) +description = Campbellton town, FL +station = ('k1j0', 0.0036070025655938484) +zone = ('alz069', 0.0038332179540653661) + +[fips1209990143] +centroid = (0.46705532636814606, -1.4092246878596715) +description = Belle Glade-Pahokee CCD, FL +station = ('kobe', 0.0089957053947380631) +zone = ('flz067', 0.0043926265920972681) + +[fips1209990208] +centroid = (0.46043630480629771, -1.3977350632207453) +description = Boca Raton CCD, FL +station = ('kbct', 0.000369258150618451) +zone = ('flz172', 0.0040900823526028455) + +[fips1209990260] +centroid = (0.46273778322444004, -1.397761609678668) +description = Boynton Beach-Delray Beach CCD, FL +station = ('kbct', 0.0023690999601990808) +zone = ('flz068', 0.0021286911018850293) + +[fips1209991274] +centroid = (0.46321396140426163, -1.4058153791521182) +description = Glades CCD, FL +station = ('kbct', 0.0074239541482445052) +zone = ('flz067', 0.0014589163836420779) + +[fips1209991690] +centroid = (0.46990071919437992, -1.39770642236772) +description = Jupiter CCD, FL +station = ('kpbi', 0.004197379028845382) +zone = ('flz168', 0.0038054442540842301) + +[fips1209991872] +centroid = (0.46472695242623047, -1.3979614149714366) +description = Lake Worth CCD, FL +station = ('kpbi', 0.00098597688888934359) +zone = ('flz068', 0.0007706239065859862) + +[fips1209992977] +centroid = (0.46809039388104134, -1.397242252053152) +description = Riviera Beach CCD, FL +station = ('kpbi', 0.0024748961528846211) +zone = ('flz168', 0.0020312341501003582) + +[fips1209992990] +centroid = (0.46806206718728144, -1.4003715052289303) +description = Royal Palm Beach-West Jupiter CCD, FL +station = ('kpbi', 0.0031582221791584394) +zone = ('flz168', 0.0031121626009792771) + +[fips1209993276] +centroid = (0.463763844838395, -1.4003714703223453) +description = Sunshine Parkway CCD, FL +station = ('kpbi', 0.0028734210463570125) +zone = ('flz068', 0.0016445827925502267) + +[fips1209993594] +centroid = (0.46903088200177095, -1.4028448636718089) +description = Western Community CCD, FL +station = ('kpbi', 0.0054456835326839818) +zone = ('flz064', 0.0036859696420996225) + +[fips1209993614] +centroid = (0.46601734415539997, -1.3971293641571332) +description = West Palm Beach CCD, FL +station = ('kpbi', 0.00084289759524383816) +zone = ('flz168', 0.00048936525093550226) + +[fips12101] +centroid = (0.4939635037784556, -1.4391235742097361) +description = Pasco County, FL +station = ('kbkv', 0.0028748924978509722) +zone = ('flz049', 0.00099934245806361445) + +[fips1210100] +centroid = (0.468841461418052, -1.4071228751079574) +description = Canal Point CDP, FL +station = ('kobe', 0.0078944045222934002) +zone = ('flz067', 0.0046216465530688226) + +[fips1210190481] +centroid = (0.49412283488587022, -1.437356672688187) +description = Central Pasco CCD, FL +station = ('kbkv', 0.0030852039725769082) +zone = ('flz049', 0.00056529457566733307) + +[fips1210190741] +centroid = (0.49478206319764095, -1.4343002171955095) +description = Dade City CCD, FL +station = ('kbkv', 0.0046353512425603297) +zone = ('flz049', 0.003327334130648178) + +[fips1210191794] +centroid = (0.49563355697981148, -1.433343829125294) +description = Lacoochee CCD, FL +station = ('kbkv', 0.0051379472446625848) +zone = ('flz049', 0.0043766191214392527) + +[fips1210192327] +centroid = (0.49270794882115593, -1.4428323465103465) +description = New Port Richey CCD, FL +station = ('ktpa', 0.0050447174258666082) +zone = ('flz049', 0.0044768230460879655) + +[fips1210192860] +centroid = (0.49507405678149963, -1.4426380913645993) +description = Port Richey CCD, FL +station = ('kbkv', 0.0036348504860214811) +zone = ('flz049', 0.0042010651205926083) + +[fips1210193770] +centroid = (0.4930417779471849, -1.4341224205046088) +description = Zephyrhills CCD, FL +station = ('kpcm', 0.0043595763768039331) +zone = ('flz049', 0.0035702694801855069) + +[fips1210250] +centroid = (0.49557053314052196, -1.4068711986298199) +description = Cape Canaveral city, FL +station = ('kxmr', 0.0014150332115806031) +zone = ('flz147', 0.0039080059438103667) + +[fips1210275] +centroid = (0.46501014955065906, -1.4311234037976146) +description = Cape Coral city, FL +station = ('kfmy', 0.0022903990744185657) +zone = ('flz065', 0.0029766046452980514) + +[fips12103] +centroid = (0.48700135048566523, -1.4440770106131138) +description = Pinellas County, FL +station = ('kpie', 0.00089821473922639726) +zone = ('flz050', 0.00051665633293968179) + +[fips1210390182] +centroid = (0.48577342409042462, -1.4456352580225869) +description = Boca Ciega CCD, FL +station = ('kpie', 0.0026797433501517202) +zone = ('flz050', 0.0023451817738382769) + +[fips1210390572] +centroid = (0.48815433244282519, -1.4449585589650034) +description = Clearwater CCD, FL +station = ('kpie', 0.0018831709969331745) +zone = ('flz050', 0.0012698024613384833) + +[fips1210393036] +centroid = (0.48477289664342632, -1.4447756135528094) +description = St. Pete Beach CCD, FL +station = ('kspg', 0.0022631282223132551) +zone = ('flz050', 0.0028122848127663368) + +[fips1210393042] +centroid = (0.48488217170789366, -1.4427464239512706) +description = St. Petersburg CCD, FL +station = ('kspg', 0.00053173135149453608) +zone = ('flz050', 0.0027138049921431942) + +[fips1210393380] +centroid = (0.49050424374771034, -1.4443899656012886) +description = Tarpon Springs CCD, FL +station = ('kpie', 0.0034603808962760303) +zone = ('flz050', 0.0031120365267481632) + +[fips1210425] +centroid = (0.46231110258220498, -1.4343715662553311) +description = Captiva CDP, FL +station = ('kfmy', 0.0052159831739725495) +zone = ('flz065', 0.0058765212538841429) + +[fips12105] +centroid = (0.48787389293861472, -1.4258080384672509) +description = Polk County, FL +station = ('kbow', 0.0013970966646292961) +zone = ('flz052', 0.00010674614875145859) + +[fips1210590117] +centroid = (0.48489245169718798, -1.4286661198371466) +description = Bartow CCD, FL +station = ('kbow', 0.0031374485339814629) +zone = ('flz052', 0.0038019257919308953) + +[fips1210591209] +centroid = (0.48363733307220125, -1.4205800966791193) +description = Frostproof CCD, FL +station = ('kbow', 0.0073308477424869709) +zone = ('flz052', 0.0062791034197988444) + +[fips1210591404] +centroid = (0.491344061277185, -1.4247583276419313) +description = Haines City CCD, FL +station = ('kgif', 0.0023408078910184538) +zone = ('flz052', 0.0036831275037003627) + +[fips1210591833] +centroid = (0.49101072084334657, -1.4302784026402613) +description = Lakeland CCD, FL +station = ('klal', 0.0028103293448210878) +zone = ('flz052', 0.0050269729842299096) + +[fips1210591859] +centroid = (0.48640532054610913, -1.4219075242950163) +description = Lake Wales CCD, FL +station = ('kbow', 0.005045659102373411) +zone = ('flz052', 0.0037902857442439443) + +[fips1210593718] +centroid = (0.48889416005945308, -1.4267970467411859) +description = Winter Haven-Auburndale CCD, FL +station = ('kgif', 0.00096162079522025829) +zone = ('flz052', 0.0013528506633861035) + +[fips12107] +centroid = (0.5167222830651963, -1.4266477338236778) +description = Putnam County, FL +station = ('k42j', 0.0053184609399670752) +zone = ('flz037', 6.7575303824492599e-05) + +[fips1210725] +centroid = (0.52104008800829016, -1.4777343762408852) +description = Carrabelle city, FL +station = ('kaaf', 0.0056823952738819204) +zone = ('flz115', 0.0018651946556551362) + +[fips1210790663] +centroid = (0.51428573361624219, -1.4243197438541977) +description = Crescent City CCD, FL +station = ('kxfl', 0.0060406231269802) +zone = ('flz037', 0.0032353797229668162) + +[fips1210790923] +centroid = (0.51738692189764823, -1.4236240207077677) +description = East Palatka CCD, FL +station = ('kxfl', 0.006222109333954077) +zone = ('flz037', 0.0027492484708124053) + +[fips1210791612] +centroid = (0.51718568543489329, -1.4289891104685206) +description = Interlachen-Florahome CCD, FL +station = ('k42j', 0.0033523119400709523) +zone = ('flz037', 0.0020287944124270842) + +[fips1210792574] +centroid = (0.51893276001613964, -1.4255073182371321) +description = Palatka CCD, FL +station = ('k42j', 0.0056825241221219016) +zone = ('flz037', 0.0024024649862960583) + +[fips1210825] +centroid = (0.48970837360880098, -1.4401718364117762) +description = Carrollwood CDP, FL +station = ('ktpa', 0.0016207187889220682) +zone = ('flz050', 0.0039030440493161788) + +[fips12109] +centroid = (0.52168926322356945, -1.4204172574599085) +description = St. Johns County, FL +station = ('ksgj', 0.001370861197298537) +zone = ('flz033', 0.00092667505041778763) + +[fips1210975] +centroid = (0.53712481550186708, -1.4977139804932129) +description = Caryville town, FL +station = ('k1j0', 0.0033471236234480293) +zone = ('flz009', 0.0016218522061310339) + +[fips1210991222] +centroid = (0.5247806078479943, -1.4243300587500771) +description = Fruit Cove CCD, FL +station = ('knip', 0.0030227166514308927) +zone = ('flz033', 0.0038206918379918944) + +[fips1210991443] +centroid = (0.5190828757851037, -1.4214430747277682) +description = Hastings CCD, FL +station = ('ksgj', 0.004110231961503963) +zone = ('flz033', 0.0027933200303472444) + +[fips1210992080] +centroid = (0.5190560675277931, -1.4183788525199192) +description = Matanzas CCD, FL +station = ('ksgj', 0.0039845917424011848) +zone = ('flz033', 0.0038882037655074073) + +[fips1210992795] +centroid = (0.52703791198276861, -1.4203378449789426) +description = Ponte Vedra CCD, FL +station = ('kcrg', 0.0031530582865677338) +zone = ('flz025', 0.0050127823266253469) + +[fips1210993016] +centroid = (0.52329512321503691, -1.4206985347221599) +description = St. Augustine CCD, FL +station = ('ksgj', 0.00099935697878966528) +zone = ('flz033', 0.0015664400560880336) + +[fips1211050] +centroid = (0.50023201086662594, -1.4193353627631822) +description = Casselberry city, FL +station = ('korl', 0.0019483658423182714) +zone = ('flz046', 0.0016345534933737242) + +[fips12111] +centroid = (0.47788467549775038, -1.4040015631802758) +description = St. Lucie County, FL +station = ('kfpr', 0.0022791755786850613) +zone = ('flz059', 0.00062824729574481564) + +[fips1211150] +centroid = (0.5267583451431842, -1.4944683313096192) +description = Cedar Grove CDP, FL +station = ('kpam', 0.0021007678137387321) +zone = ('flz112', 0.0009133858445688921) + +[fips1211191157] +centroid = (0.47900624152837451, -1.4021130994763253) +description = Fort Pierce CCD, FL +station = ('kfpr', 0.0012151805064283701) +zone = ('flz059', 0.0025931341068019154) + +[fips1211191547] +centroid = (0.47679182013332166, -1.4002000789897995) +description = Hutchinson Island CCD, FL +station = ('ksua', 0.0023832383093121486) +zone = ('flz059', 0.0041275153228269613) + +[fips1211192866] +centroid = (0.47595418426541197, -1.4028421060515908) +description = Port St. Lucie CCD, FL +station = ('ksua', 0.0028694763346659938) +zone = ('flz059', 0.0024846567151495282) + +[fips1211193620] +centroid = (0.47809064180277822, -1.4059533299761962) +description = West St. Lucie CCD, FL +station = ('kfpr', 0.0032559009038113395) +zone = ('flz059', 0.0011448523106692005) + +[fips1211225] +centroid = (0.50876811953215739, -1.4492753690704236) +description = Cedar Key city, FL +station = ('kcty', 0.0084847507817361559) +zone = ('flz039', 0.0054460856268723941) + +[fips1211285] +centroid = (0.49408263995319673, -1.4233001399584753) +description = Celebration CDP, FL +station = ('kism', 0.0017512396199986068) +zone = ('flz045', 0.0049881202066286096) + +[fips12113] +centroid = (0.53587948817398412, -1.5186852459199387) +description = Santa Rosa County, FL +station = ('kndz', 7.3009572531099724e-05) +zone = ('flz004', 0.0022058917686153066) + +[fips1211325] +centroid = (0.49954679460229295, -1.4314730107000815) +description = Center Hill city, FL +station = ('klee', 0.0045813939240914358) +zone = ('flz043', 0.0017412688310723273) + +[fips1211362] +centroid = (0.54065531987267879, -1.5230567197375313) +description = Century town, FL +station = ('knse', 0.0056514812255056305) +zone = ('alz059', 0.0030222701632569926) + +[fips1211390020] +centroid = (0.5370215269167341, -1.5211397722601883) +description = Allentown CCD, FL +station = ('kndz', 0.0023985194014179384) +zone = ('flz003', 0.002277328248468497) + +[fips1211390085] +centroid = (0.53260093953399035, -1.520114373871349) +description = Avalon-Mulat CCD, FL +station = ('kpns', 0.001428373586870925) +zone = ('flz004', 0.0019011955374363834) + +[fips1211390097] +centroid = (0.53296899456665092, -1.5191574447490654) +description = Bagdad CCD, FL +station = ('kpns', 0.0023310607416230085) +zone = ('flz004', 0.0010304873284053421) + +[fips1211390162] +centroid = (0.53945659283582403, -1.5188180654760153) +description = Berrydale CCD, FL +station = ('knse', 0.003059728249188212) +zone = ('flz003', 0.0010390834152367617) + +[fips1211390903] +centroid = (0.53448008317973505, -1.5171287089331325) +description = East Milton CCD, FL +station = ('kndz', 0.0019172553925469941) +zone = ('flz004', 0.0012837584113374314) + +[fips1211390964] +centroid = (0.53276000884201713, -1.5162117303974272) +description = Eglin AFB CCD, FL +station = ('khrt', 0.0034159396069223967) +zone = ('flz004', 0.0020361725721771474) + +[fips1211391376] +centroid = (0.53000083528083175, -1.521477022231551) +description = Gulf Breeze CCD, FL +station = ('kpns', 0.0020383261153648254) +zone = ('flz002', 0.0032918729261365324) + +[fips1211391436] +centroid = (0.53523109835686822, -1.5158326972437715) +description = Harold CCD, FL +station = ('kndz', 0.0025572036322655898) +zone = ('flz004', 0.0026268298934240095) + +[fips1211391500] +centroid = (0.53143317463806594, -1.5172142126131876) +description = Holley-Navarre CCD, FL +station = ('kqhy', 0.0041191103422471304) +zone = ('flz004', 0.0024532648206531064) + +[fips1211391664] +centroid = (0.53943737676075965, -1.5215746559499077) +description = Jay CCD, FL +station = ('knse', 0.003900991845437466) +zone = ('flz003', 0.0023741051960847561) + +[fips1211392218] +centroid = (0.53069327720826798, -1.518533035755872) +description = Midway CCD, FL +station = ('kpns', 0.002992696356849317) +zone = ('flz004', 0.0030100719615702705) + +[fips1211392223] +centroid = (0.5345879968873859, -1.5193336880969319) +description = Milton CCD, FL +station = ('kndz', 0.0013342472947290664) +zone = ('flz004', 0.0012524233489605329) + +[fips1211392276] +centroid = (0.53803638351689131, -1.5165015248664284) +description = Munson CCD, FL +station = ('knse', 0.0025182468819676149) +zone = ('flz003', 0.0022374140778130503) + +[fips1211392309] +centroid = (0.53014627356740041, -1.5166102588788273) +description = Navarre Beach CCD, FL +station = ('kqhy', 0.0035952569994851602) +zone = ('flz004', 0.0038415275201442202) + +[fips1211392561] +centroid = (0.53481722843134283, -1.5217530285994616) +description = Pace CCD, FL +station = ('kpns', 0.0027845119378767623) +zone = ('flz002', 0.0029978648801331363) + +[fips1211393127] +centroid = (0.53545078294981674, -1.5194715691078395) +description = Skyline CCD, FL +station = ('kndz', 0.00073691281050084498) +zone = ('flz004', 0.0020180564274610881) + +[fips1211393659] +centroid = (0.53603567768874516, -1.5187694231497622) +description = Whiting Field CCD, FL +station = ('kndz', 0.00022255864291839645) +zone = ('flz004', 0.0023714840157684955) + +[fips12115] +centroid = (0.47445704083305124, -1.4375550119043838) +description = Sarasota County, FL +station = ('kvnc', 0.0021664617891625089) +zone = ('flz060', 0.00068531387154926516) + +[fips1211590975] +centroid = (0.47140973086565419, -1.4383538316497289) +description = Englewood CCD, FL +station = ('kvnc', 0.0010589718079557109) +zone = ('flz060', 0.0032909617923257981) + +[fips1211591393] +centroid = (0.47486996828078054, -1.4398662641663371) +description = Gulf Gate Estates-Osprey CCD, FL +station = ('kvnc', 0.0026985900589454373) +zone = ('flz060', 0.0027794057535770302) + +[fips1211591599] +centroid = (0.47368022968957357, -1.4359268640583682) +description = Interior County CCD, FL +station = ('kvnc', 0.0025952830743819128) +zone = ('flz060', 0.0010452033177083381) + +[fips1211591963] +centroid = (0.47767319395228625, -1.4421249645645131) +description = Longboat Key CCD, FL +station = ('ksrq', 0.0013222149629266934) +zone = ('flz055', 0.0054154582419762287) + +[fips1211592431] +centroid = (0.47245329813200659, -1.4343661731879422) +description = North Port CCD, FL +station = ('kvnc', 0.0036813137345253597) +zone = ('flz060', 0.0028985018090638593) + +[fips1211593107] +centroid = (0.47674736659727335, -1.4390200238252153) +description = Sarasota CCD, FL +station = ('ksrq', 0.0021408014296776887) +zone = ('flz060', 0.0030805088941472706) + +[fips1211593484] +centroid = (0.47314127201655776, -1.4392259203170732) +description = Venice CCD, FL +station = ('kvnc', 0.00093836755235530381) +zone = ('flz060', 0.0025034453566297296) + +[fips1211597] +centroid = (0.46610138175888355, -1.423850145565656) +description = Charleston Park CDP, FL +station = ('krsw', 0.0041800309775092718) +zone = ('flz065', 0.0043548755671784147) + +[fips1211625] +centroid = (0.47056696372974366, -1.4322055079338509) +description = Charlotte Harbor CDP, FL +station = ('kpgd', 0.0012101788447701869) +zone = ('flz062', 0.0027527607486811448) + +[fips1211650] +centroid = (0.46957018874063716, -1.4320245871035893) +description = Charlotte Park CDP, FL +station = ('kpgd', 0.00079160949530354186) +zone = ('flz062', 0.0024215838178166275) + +[fips12117] +centroid = (0.50073634120728228, -1.416020179662189) +description = Seminole County, FL +station = ('ksfb', 0.0024313005776349463) +zone = ('flz046', 0.0016632072804745697) + +[fips1211790455] +centroid = (0.50049435130649322, -1.4199874352250197) +description = Casselberry-Altamonte Springs CCD, FL +station = ('korl', 0.0022384543830683782) +zone = ('flz046', 0.0020143818297135769) + +[fips1211792548] +centroid = (0.50073634120728228, -1.416020179662189) +description = Oviedo CCD, FL +station = ('ksfb', 0.0024313005776349463) +zone = ('flz046', 0.0016632072804745697) + +[fips1211793081] +centroid = (0.50221960927208964, -1.4190633706525515) +description = Sanford CCD, FL +station = ('ksfb', 0.00087389161187516893) +zone = ('flz046', 0.0014761601315992619) + +[fips1211800] +centroid = (0.53578717770984607, -1.4805734509752269) +description = Chattahoochee city, FL +station = ('k2j9', 0.0045495996618486701) +zone = ('flz011', 0.0019702627522997593) + +[fips12119] +centroid = (0.50115897268565268, -1.4324740093859778) +description = Sumter County, FL +station = ('kinf', 0.0040391001964841244) +zone = ('flz043', 0.00019463341260460323) + +[fips1211912] +centroid = (0.49127656939501035, -1.4401985399493318) +description = Cheval CDP, FL +station = ('ktpa', 0.0031757734925088725) +zone = ('flz049', 0.0034173343682163196) + +[fips1211925] +centroid = (0.51468921883271823, -1.4462930202577857) +description = Chiefland city, FL +station = ('kcty', 0.0043436848624617943) +zone = ('flz039', 0.0035179839868831071) + +[fips1211975] +centroid = (0.53713537474384165, -1.4929617805525901) +description = Chipley city, FL +station = ('k1j0', 0.0013467433643784849) +zone = ('flz010', 0.0034344636129002475) + +[fips1211990344] +centroid = (0.49917924571511552, -1.43252195358053) +description = Bushnell-Center Hill CCD, FL +station = ('kinf', 0.0051097269965443689) +zone = ('flz043', 0.0018113454748006485) + +[fips1211993666] +centroid = (0.50376640732166955, -1.4331570439887458) +description = Wildwood CCD, FL +station = ('kvvg', 0.0028786205298417735) +zone = ('flz043', 0.0028217301931747151) + +[fips12121] +centroid = (0.52690170648794299, -1.448496812597694) +description = Suwannee County, FL +station = ('kcty', 0.0098371906477896509) +zone = ('flz021', 0.00011253454806892873) + +[fips1212150] +centroid = (0.45054327246051079, -1.4200017818314712) +description = Chokoloskee CDP, FL +station = ('kapf', 0.0086619755117953723) +zone = ('flz069', 0.0051635730906437896) + +[fips1212190299] +centroid = (0.52371124461529739, -1.4467387598954526) +description = Branford CCD, FL +station = ('kcty', 0.0072335227403458281) +zone = ('flz021', 0.0036270239002563439) + +[fips1212190858] +centroid = (0.52739437802919598, -1.451280979273768) +description = Dowling Park CCD, FL +station = ('k40j', 0.0070183248474878952) +zone = ('flz021', 0.0024549016068729844) + +[fips1212191950] +centroid = (0.52929273775000518, -1.4486221097846947) +description = Live Oak CCD, FL +station = ('kvld', 0.0089284116906240534) +zone = ('flz021', 0.00228363944056666) + +[fips1212192002] +centroid = (0.52698801301945419, -1.4471806249021801) +description = McAlpin-Wellborn CCD, FL +station = ('kcty', 0.010171318361085499) +zone = ('flz021', 0.0011189609906414792) + +[fips1212250] +centroid = (0.4978117278863004, -1.4136843531643675) +description = Christmas CDP, FL +station = ('ktix', 0.0030403754969957992) +zone = ('flz147', 0.0033944580110774674) + +[fips1212275] +centroid = (0.49970167512011499, -1.4156713057980079) +description = Chuluota CDP, FL +station = ('ksfb', 0.003398663961940886) +zone = ('flz046', 0.0024251193472001054) + +[fips12123] +centroid = (0.52389448673346428, -1.4593817853705593) +description = Taylor County, FL +station = ('k40j', 0.0010014978117221752) +zone = ('flz028', 0.0014950087836302747) + +[fips1212300] +centroid = (0.53734980589574177, -1.5224963468745933) +description = Chumuckla CDP, FL +station = ('kndz', 0.0035840572686987172) +zone = ('flz003', 0.0031419490908962773) + +[fips1212325] +centroid = (0.53096661322242289, -1.5116219682502876) +description = Cinco Bayou town, FL +station = ('kqhy', 0.00078823959547395274) +zone = ('flz006', 0.0024601104850935185) + +[fips1212392704] +centroid = (0.52634698849178163, -1.4607907722224021) +description = Perry North CCD, FL +station = ('k40j', 0.0023374795818966046) +zone = ('flz028', 0.0021164040739135633) + +[fips1212392717] +centroid = (0.52195957981811836, -1.4581051293826033) +description = Perry South CCD, FL +station = ('k40j', 0.0028674377703640443) +zone = ('flz128', 0.0019525648142350634) + +[fips1212412] +centroid = (0.50417027651058099, -1.4386879749350234) +description = Citrus Hills CDP, FL +station = ('kinf', 0.0022511259601463141) +zone = ('flz042', 0.0008424470014953522) + +[fips1212425] +centroid = (0.48993130451415817, -1.4409817564511644) +description = Citrus Park CDP, FL +station = ('ktpa', 0.0018743238416055903) +zone = ('flz050', 0.0035016315184221701) + +[fips1212450] +centroid = (0.50602618982398173, -1.4391895302021689) +description = Citrus Springs CDP, FL +station = ('kcgc', 0.002733248226291118) +zone = ('flz042', 0.00248934702883782) + +[fips12125] +centroid = (0.52454614031628133, -1.4375739138201828) +description = Union County, FL +station = ('kgnv', 0.0063114117548796148) +zone = ('flz030', 0.00019340558068266475) + +[fips1212591807] +centroid = (0.52457851617390594, -1.4378139664055021) +description = Lake Butler CCD, FL +station = ('kgnv', 0.0063878965941197323) +zone = ('flz030', 0.00025538388905456562) + +[fips1212592925] +centroid = (0.52559981303900283, -1.4352336192794761) +description = Raiford CCD, FL +station = ('kvqq', 0.0056723537506075516) +zone = ('flz030', 0.0024299667713698135) + +[fips1212593731] +centroid = (0.52351993907598626, -1.4395041257998409) +description = Worthington Springs CCD, FL +station = ('kgnv', 0.0059360553380960659) +zone = ('flz030', 0.0018125822491957238) + +[fips1212675] +centroid = (0.49946954632959972, -1.4225461751749062) +description = Clarcona CDP, FL +station = ('korl', 0.0028951569947161934) +zone = ('flz045', 0.0033171684208249822) + +[fips12127] +centroid = (0.5071510894334772, -1.4165408637379364) +description = Volusia County, FL +station = ('kded', 0.0018674811338223116) +zone = ('flz141', 0.0017181723029593538) + +[fips1212790494] +centroid = (0.50611315958060865, -1.4154762827073901) +description = Central Volusia CCD, FL +station = ('kevb', 0.0025335941683370319) +zone = ('flz141', 0.0009774021724804848) + +[fips1212790780] +centroid = (0.50962455259611095, -1.4146517717154556) +description = Daytona Beach CCD, FL +station = ('kdab', 0.00060407254179135862) +zone = ('flz141', 0.0028735061348362061) + +[fips1212790793] +centroid = (0.50473817174259505, -1.4192938588335697) +description = DeBary-Orange City CCD, FL +station = ('ksfb', 0.0026014091089063131) +zone = ('flz041', 0.0030946129992961446) + +[fips1212790832] +centroid = (0.50720479321456102, -1.4195005930834685) +description = DeLand CCD, FL +station = ('kded', 0.00073517896050520994) +zone = ('flz041', 0.00074201140655984134) + +[fips1212790845] +centroid = (0.50412680035891388, -1.4170593137922414) +description = Deltona CCD, FL +station = ('ksfb', 0.001976666094407992) +zone = ('flz046', 0.0029994847420307677) + +[fips1212792340] +centroid = (0.50483297802756333, -1.4111305350429717) +description = New Smyrna Beach CCD, FL +station = ('kevb', 0.0027164129676265536) +zone = ('flz141', 0.0036122183163385898) + +[fips1212792418] +centroid = (0.51132993126152715, -1.414446852607979) +description = North Peninsula CCD, FL +station = ('komn', 0.0010947770197647061) +zone = ('flz141', 0.0045815958086911522) + +[fips1212792535] +centroid = (0.51189676184269739, -1.4154617092081359) +description = Ormond Beach CCD, FL +station = ('komn', 0.00053752617759238598) +zone = ('flz038', 0.0039832666519332566) + +[fips1212792730] +centroid = (0.51034369806110269, -1.4219334424344086) +description = Pierson-Seville CCD, FL +station = ('kded', 0.0041591077808291951) +zone = ('flz041', 0.0030567070913623592) + +[fips1212792847] +centroid = (0.50841118224683202, -1.4139695399641434) +description = Port Orange CCD, FL +station = ('kdab', 0.0010228925752824908) +zone = ('flz141', 0.0017574067860047821) + +[fips1212793159] +centroid = (0.50815988974112991, -1.4128034331310084) +description = South Peninsula CCD, FL +station = ('kevb', 0.0010448276976866568) +zone = ('flz141', 0.0021287842296972546) + +[fips1212875] +centroid = (0.48833396172944044, -1.4445438338281447) +description = Clearwater city, FL +station = ('kpie', 0.001684206602850545) +zone = ('flz050', 0.0011249775816321768) + +[fips12129] +centroid = (0.52604883389566348, -1.4726239300179982) +description = Wakulla County, FL +station = ('ktlh', 0.0045470720322759702) +zone = ('flz127', 0.0013544462612557935) + +[fips1212925] +centroid = (0.49843641613217415, -1.4270646057155167) +description = Clermont city, FL +station = ('klee', 0.0045787445494394462) +zone = ('flz144', 0.00063964238285017317) + +[fips1212950] +centroid = (0.47036003749362726, -1.430972694616705) +description = Cleveland CDP, FL +station = ('kpgd', 0.00060185646459514697) +zone = ('flz062', 0.0016607692989857293) + +[fips1212990949] +centroid = (0.525866848414558, -1.4701261369655916) +description = East Wakulla CCD, FL +station = ('ktlh', 0.00503760978392165) +zone = ('flz127', 0.0011900125789764671) + +[fips1212993627] +centroid = (0.5257191062933767, -1.4751071844777357) +description = West Wakulla CCD, FL +station = ('ktlh', 0.0054771173287929261) +zone = ('flz027', 0.0017539448903945236) + +[fips1213000] +centroid = (0.46692463611375673, -1.4126554292104392) +description = Clewiston city, FL +station = ('kobe', 0.0090737639426063613) +zone = ('flz066', 0.0051020613436701849) + +[fips1213050] +centroid = (0.46555643760653331, -1.3975426581240054) +description = Cloud Lake town, FL +station = ('kpbi', 0.00044456698658014437) +zone = ('flz168', 0.00055087794095157075) + +[fips12131] +centroid = (0.53461548582310481, -1.5040656525202407) +description = Walton County, FL +station = ('kvps', 0.0057255066923700944) +zone = ('flz008', 0.0011832969211082601) + +[fips1213125] +centroid = (0.53895758574938635, -1.5206408873467983) +description = Cobbtown CDP, FL +station = ('knse', 0.0030419502470926613) +zone = ('flz003', 0.0014487792360759132) + +[fips1213150] +centroid = (0.49528192549541211, -1.4096089744543756) +description = Cocoa city, FL +station = ('ktix', 0.0024876850079874977) +zone = ('flz147', 0.00316914284088154) + +[fips1213175] +centroid = (0.49464538646391731, -1.4072346285399624) +description = Cocoa Beach city, FL +station = ('kcof', 0.00193146017612717) +zone = ('flz147', 0.0044555045669636339) + +[fips1213190819] +centroid = (0.53487529553555668, -1.5053079255219328) +description = De Funiak Springs CCD, FL +station = ('kegi', 0.0040378296268170546) +zone = ('flz008', 0.002245761931957877) + +[fips1213191196] +centroid = (0.53179372475494302, -1.5026236091323655) +description = Freeport CCD, FL +station = ('kecp', 0.0048771439871281748) +zone = ('flz108', 0.0014636797999877885) + +[fips1213192665] +centroid = (0.53884026471706736, -1.5049066394203143) +description = Paxton-Darlington CCD, FL +station = ('k0j4', 0.0030118154804116256) +zone = ('flz007', 0.00044282229889208485) + +[fips1213192938] +centroid = (0.53479085650634517, -1.5009207611943647) +description = Redbay CCD, FL +station = ('kecp', 0.0058313407316762057) +zone = ('flz008', 0.0019269749963113203) + +[fips1213193542] +centroid = (0.52957605704748134, -1.5044748973232485) +description = Walton Beaches CCD, FL +station = ('kdts', 0.0041382173166849027) +zone = ('flz108', 0.0013938952823061054) + +[fips1213225] +centroid = (0.49496689356542717, -1.4097226302952657) +description = Cocoa West CDP, FL +station = ('ktix', 0.0027783218872477265) +zone = ('flz147', 0.0034777259437212982) + +[fips1213275] +centroid = (0.45865645294169893, -1.3994869898173121) +description = Coconut Creek city, FL +station = ('kpmp', 0.0011795560845583829) +zone = ('flz172', 0.0024328291926179755) + +[fips12133] +centroid = (0.53410944505978153, -1.4950978541175208) +description = Washington County, FL +station = ('k1j0', 0.0041423271221196186) +zone = ('flz010', 0.00015275596886664942) + +[fips1213390442] +centroid = (0.53532904623449018, -1.4972390589504525) +description = Caryville CCD, FL +station = ('k1j0', 0.0039571381251187121) +zone = ('flz010', 0.0020988027250103806) + +[fips1213390546] +centroid = (0.53681765500680867, -1.493024280793104) +description = Chipley CCD, FL +station = ('k1j0', 0.0015691301429482636) +zone = ('flz010', 0.0031416250235565824) + +[fips1213393497] +centroid = (0.53328332836493508, -1.4948411161845527) +description = Vernon CCD, FL +station = ('kecp', 0.0041841374274641466) +zone = ('flz010', 0.0010079206517868682) + +[fips1213400] +centroid = (0.50267613504453379, -1.4323865334838679) +description = Coleman city, FL +station = ('kvvg', 0.0032889920101658991) +zone = ('flz043', 0.0016951908649399717) + +[fips1213775] +centroid = (0.48974434484468454, -1.4295286964600673) +description = Combee Settlement CDP, FL +station = ('klal', 0.0021709586727287275) +zone = ('flz052', 0.003750800831940581) + +[fips1213965] +centroid = (0.49417976752607023, -1.4394670375532359) +description = Connerton CDP, FL +station = ('kbkv', 0.0026857277861956964) +zone = ('flz049', 0.0012966382048339305) + +[fips1214050] +centroid = (0.497358518239435, -1.4195319217435418) +description = Conway CDP, FL +station = ('korl', 0.00093298586678200305) +zone = ('flz045', 0.00034965102479933612) + +[fips1214125] +centroid = (0.45462037904646208, -1.4012524427155819) +description = Cooper City city, FL +station = ('khwo', 0.0011727246080523487) +zone = ('flz072', 0.0013799706494647358) + +[fips1214250] +centroid = (0.44817679798102417, -1.4007536450686544) +description = Coral Gables city, FL +station = ('kmia', 0.0020520583422815133) +zone = ('flz173', 0.0018994526233022696) + +[fips1214400] +centroid = (0.45851166042695352, -1.4007889007195449) +description = Coral Springs city, FL +station = ('kfxe', 0.0017147315440611533) +zone = ('flz072', 0.0025383607601745612) + +[fips1214412] +centroid = (0.44935573298416132, -1.4015772833959632) +description = Coral Terrace CDP, FL +station = ('kmia', 0.00067610734135703878) +zone = ('flz074', 0.0012791039838779856) + +[fips1214700] +centroid = (0.47941032015679619, -1.4428670960157537) +description = Cortez CDP, FL +station = ('ksrq', 0.0022097414778544135) +zone = ('flz051', 0.0062183263932317897) + +[fips1214850] +centroid = (0.53753681792509289, -1.4900686878778993) +description = Cottondale town, FL +station = ('kmai', 0.0029310440081302042) +zone = ('flz010', 0.0054569440927020266) + +[fips1214895] +centroid = (0.45275537256765847, -1.4016904854512473) +description = Country Club CDP, FL +station = ('kopf', 0.00083623126483207521) +zone = ('flz074', 0.0021278082583617791) + +[fips1215055] +centroid = (0.44739410507796734, -1.4038521455430126) +description = Country Walk CDP, FL +station = ('ktmb', 0.00028379175561865806) +zone = ('flz173', 0.002141721983134203) + +[fips1215300] +centroid = (0.5270816150272386, -1.4724190632703993) +description = Crawfordville CDP, FL +station = ('ktlh', 0.0035042984121735686) +zone = ('flz027', 0.0012676695962493946) + +[fips1215325] +centroid = (0.51887170839890484, -1.4179312453799529) +description = Crescent Beach CDP, FL +station = ('ksgj', 0.0042810563230235819) +zone = ('flz033', 0.0042921723532756157) + +[fips1215375] +centroid = (0.51372960190338668, -1.4226751899132135) +description = Crescent City city, FL +station = ('kxfl', 0.0046505953214206848) +zone = ('flz038', 0.0030549967803242635) + +[fips1215475] +centroid = (0.53664715379218131, -1.5110974269968931) +description = Crestview city, FL +station = ('kcew', 0.0009993977028202863) +zone = ('flz005', 0.0018226378449453671) + +[fips1215515] +centroid = (0.48570212739048063, -1.4240130371447448) +description = Crooked Lake Park CDP, FL +station = ('kbow', 0.0036583873512891288) +zone = ('flz052', 0.00267788429387345) + +[fips1215575] +centroid = (0.51729483832631307, -1.4508016420480001) +description = Cross City town, FL +station = ('kcty', 0.00038833783921040754) +zone = ('flz034', 0.00056390005195382329) + +[fips1215725] +centroid = (0.48931890338621836, -1.4294188803435319) +description = Crystal Lake CDP, FL +station = ('klal', 0.0020229004383239446) +zone = ('flz052', 0.0034619282025051342) + +[fips1215775] +centroid = (0.50450503066111363, -1.4418184847478628) +description = Crystal River city, FL +station = ('kcgc', 0.00087792558317507908) +zone = ('flz042', 0.0023865581648407318) + +[fips1215800] +centroid = (0.49188567185066384, -1.4338573049912309) +description = Crystal Springs CDP, FL +station = ('kpcm', 0.0031940668494584343) +zone = ('flz049', 0.0042619962348940735) + +[fips1215862] +centroid = (0.43072313894193798, -1.4222669399478793) +description = Cudjoe Key CDP, FL +station = ('knqx', 0.0034905990375131784) +zone = ('flz078', 0.0011036455300735106) + +[fips1215968] +centroid = (0.44638811475041029, -1.4020928012971248) +description = Cutler Bay town, FL +station = ('khst', 0.0017967213659853163) +zone = ('flz173', 0.00036324620747297371) + +[fips1216050] +centroid = (0.48867651750172936, -1.42565420514698) +description = Cypress Gardens CDP, FL +station = ('kgif', 0.0015573600357603145) +zone = ('flz052', 0.0009017538528552281) + +[fips1216062] +centroid = (0.46319788692185077, -1.4294140457815039) +description = Cypress Lake CDP, FL +station = ('kfmy', 0.00092307254938454029) +zone = ('flz065', 0.0014049398852962768) + +[fips1216100] +centroid = (0.47556532490806769, -1.410424584267125) +description = Cypress Quarters CDP, FL +station = ('kobe', 0.00069062436017200348) +zone = ('flz058', 0.0034449158000498391) + +[fips1216125] +centroid = (0.49490439332491326, -1.4345461166338229) +description = Dade City city, FL +station = ('kbkv', 0.0043871508914212079) +zone = ('flz049', 0.0031452525812677603) + +[fips1216175] +centroid = (0.49539572096264217, -1.4345605505067371) +description = Dade City North CDP, FL +station = ('kbkv', 0.004181556733920024) +zone = ('flz049', 0.003294592006736599) + +[fips1216335] +centroid = (0.45478450980931961, -1.3991360215580286) +description = Dania Beach city, FL +station = ('kfll', 0.00028183170831894003) +zone = ('flz172', 0.0017218205021491081) + +[fips1216450] +centroid = (0.49150553913957951, -1.4243778458649965) +description = Davenport city, FL +station = ('kgif', 0.0027038946360259369) +zone = ('flz052', 0.0039398755885197327) + +[fips1216475] +centroid = (0.45516691144843152, -1.401238078655838) +description = Davie town, FL +station = ('khwo', 0.0016016147640497155) +zone = ('flz072', 0.0008434518167825453) + +[fips1216500] +centroid = (0.5270623989521741, -1.4536376450028583) +description = Day CDP, FL +station = ('k40j', 0.0050257333173060583) +zone = ('flz029', 0.0040479435450424851) + +[fips1216525] +centroid = (0.50958950638473088, -1.4152551145845773) +description = Daytona Beach city, FL +station = ('kdab', 0.00062729047953044559) +zone = ('flz141', 0.0028905374159408424) + +[fips1216550] +centroid = (0.50913439432898089, -1.4133807007811054) +description = Daytona Beach Shores city, FL +station = ('kdab', 0.0013118264718743678) +zone = ('flz141', 0.0026211846597737243) + +[fips1216675] +centroid = (0.50407548767890531, -1.4193762732808488) +description = DeBary city, FL +station = ('ksfb', 0.0020539997220954255) +zone = ('flz046', 0.0031697299153446651) + +[fips1216725] +centroid = (0.45922602368979476, -1.3984524284499) +description = Deerfield Beach city, FL +station = ('kpmp', 0.0010857746568045553) +zone = ('flz172', 0.0028259751324007467) + +[fips1216800] +centroid = (0.53603463049119393, -1.5030721762034205) +description = De Funiak Springs city, FL +station = ('k0j4', 0.0062166643939238903) +zone = ('flz008', 0.0020929857920570032) + +[fips1216875] +centroid = (0.50653826942651692, -1.4187168529828607) +description = DeLand city, FL +station = ('kded', 0.00077819167790979873) +zone = ('flz041', 0.0016968782427841766) + +[fips1216937] +centroid = (0.50627938473856859, -1.4191529234964713) +description = DeLand Southwest CDP, FL +station = ('kded', 0.0011190006460354087) +zone = ('flz041', 0.0016805401580079666) + +[fips1216975] +centroid = (0.50819144529400595, -1.4198550345479637) +description = De Leon Springs CDP, FL +station = ('kded', 0.0013570463455439905) +zone = ('flz041', 0.00047092608764923632) + +[fips1217100] +centroid = (0.46175900257992164, -1.397842540596083) +description = Delray Beach city, FL +station = ('kbct', 0.0013919055174782659) +zone = ('flz068', 0.0030152398047862076) + +[fips1217200] +centroid = (0.50448953213735592, -1.4173989548646795) +description = Deltona city, FL +station = ('ksfb', 0.0022077246658266983) +zone = ('flz046', 0.0033059094795293759) + +[fips1217300] +centroid = (0.47773361725099028, -1.4399089723731335) +description = Desoto Lakes CDP, FL +station = ('ksrq', 0.00090572075166026739) +zone = ('flz055', 0.0035885830370846958) + +[fips1217325] +centroid = (0.53045381803489444, -1.5091775822729918) +description = Destin city, FL +station = ('kdts', 0.00013331287541305716) +zone = ('flz006', 0.0035894224334236989) + +[fips1217450] +centroid = (0.53193443319923872, -1.5196414245506435) +description = Dickerson City CDP, FL +station = ('kpns', 0.0017220303742454142) +zone = ('flz004', 0.0021026809217597887) + +[fips1217710] +centroid = (0.54087962958814517, -1.5191765386510825) +description = Dixonville CDP, FL +station = ('knse', 0.0044983299851933086) +zone = ('flz003', 0.0024422024436621939) + +[fips1217725] +centroid = (0.49645546743116059, -1.4220979397164089) +description = Doctor Phillips CDP, FL +station = ('kmco', 0.0023071751108446766) +zone = ('flz045', 0.0026926135662461628) + +[fips1217935] +centroid = (0.45055983563511215, -1.4025114883313856) +description = Doral city, FL +station = ('kmia', 0.00085469824990155288) +zone = ('flz074', 0.00090152773084454401) + +[fips1218075] +centroid = (0.48857347326269163, -1.4350133936344596) +description = Dover CDP, FL +station = ('kpcm', 0.0010885029992060507) +zone = ('flz051', 0.005419890136657164) + +[fips1218425] +centroid = (0.43237902006976758, -1.412158516519104) +description = Duck Key CDP, FL +station = ('kmth', 0.0023160974560055567) +zone = ('flz077', 0.0013017618592585435) + +[fips1218550] +centroid = (0.48895044692782991, -1.4241534663363602) +description = Dundee town, FL +station = ('kgif', 0.0025106460896946259) +zone = ('flz052', 0.0019208524949785486) + +[fips1218575] +centroid = (0.48914150812104568, -1.4454006683178262) +description = Dunedin city, FL +station = ('kpie', 0.0027867329184080966) +zone = ('flz050', 0.0022288024359448425) + +[fips1218675] +centroid = (0.50711997021291411, -1.4388451418341652) +description = Dunnellon city, FL +station = ('kcgc', 0.0038046716806783339) +zone = ('flz042', 0.0036048937686345957) + +[fips1218875] +centroid = (0.48826819772322527, -1.4269266897980242) +description = Eagle Lake city, FL +station = ('kbow', 0.00060633419526354973) +zone = ('flz052', 0.0010238675024172121) + +[fips1219025] +centroid = (0.51416171051959536, -1.4414768365467852) +description = East Bronson CDP, FL +station = ('kgnv', 0.0062763147021032382) +zone = ('flz039', 0.0032921537849497202) + +[fips1219206] +centroid = (0.49063071030530986, -1.4430346999838228) +description = East Lake CDP, FL +station = ('ktpa', 0.0033826880662190637) +zone = ('flz050', 0.0032552096541078645) + +[fips1219212] +centroid = (0.4887695086442756, -1.4375349406179856) +description = East Lake-Orient Park CDP, FL +station = ('kvdf', 0.00034158910481250389) +zone = ('flz051', 0.0049978369562145098) + +[fips1219275] +centroid = (0.53437134916733586, -1.5178139950106355) +description = East Milton CDP, FL +station = ('kndz', 0.0016445470760882677) +zone = ('flz004', 0.000798289226255012) + +[fips1219350] +centroid = (0.51748396220405923, -1.4241350182061665) +description = East Palatka CDP, FL +station = ('kxfl', 0.0066585664959236774) +zone = ('flz037', 0.0023463617191406376) + +[fips1219400] +centroid = (0.51931802399522486, -1.4812508132579261) +description = Eastpoint CDP, FL +station = ('kaaf', 0.0022623877610564486) +zone = ('flz115', 0.0018902051482088714) + +[fips1219575] +centroid = (0.51292352158835308, -1.4384388815441786) +description = East Williston CDP, FL +station = ('kocf', 0.0049217246825738687) +zone = ('flz039', 0.0050353388104730796) + +[fips1219650] +centroid = (0.4994251975133065, -1.4205640920098785) +description = Eatonville town, FL +station = ('korl', 0.0014500884967657455) +zone = ('flz045', 0.0020393881652800011) + +[fips1219725] +centroid = (0.531233212265665, -1.4989286772927235) +description = Ebro town, FL +station = ('kecp', 0.0019249621542249491) +zone = ('flz008', 0.0043878089690123521) + +[fips1219825] +centroid = (0.50534762326409888, -1.4126942104264186) +description = Edgewater city, FL +station = ('kevb', 0.0017706382305751462) +zone = ('flz141', 0.0021988924241904931) + +[fips1219900] +centroid = (0.49718157675986779, -1.4203930846497683) +description = Edgewood city, FL +station = ('korl', 0.0013420582907522575) +zone = ('flz045', 0.0010281148382422071) + +[fips1220050] +centroid = (0.5316365404025083, -1.5105918923790529) +description = Eglin AFB CDP, FL +station = ('kvps', 0.00064655456781697663) +zone = ('flz006', 0.001957105657629383) + +[fips1220108] +centroid = (0.48899451649144271, -1.4400038135646869) +description = Egypt Lake-Leto CDP, FL +station = ('ktpa', 0.00097839675703982913) +zone = ('flz050', 0.0036707943765404306) + +[fips1220275] +centroid = (0.49244194318985951, -1.443764945742857) +description = Elfers CDP, FL +station = ('ktpa', 0.0052123498204906336) +zone = ('flz050', 0.0050011553327299124) + +[fips1220375] +centroid = (0.4804317042883558, -1.4403606984901347) +description = Ellenton CDP, FL +station = ('ksrq', 0.0022410106617572739) +zone = ('flz055', 0.0036716205335535694) + +[fips1220650] +centroid = (0.45126149290099893, -1.3996514870993126) +description = El Portal village, FL +station = ('kopf', 0.0016028077743771086) +zone = ('flz074', 0.0017895354611648802) + +[fips1220825] +centroid = (0.47055314072206789, -1.4373496041047165) +description = Englewood CDP, FL +station = ('kvnc', 0.0021655352577420873) +zone = ('flz060', 0.0038702422995219791) + +[fips1220925] +centroid = (0.53277840461233306, -1.5231884222828866) +description = Ensley CDP, FL +station = ('kpns', 0.0015303181525278429) +zone = ('flz002', 0.00072237621807818328) + +[fips1221150] +centroid = (0.4611707219022444, -1.42771304789251) +description = Estero CDP, FL +station = ('krsw', 0.0020006584084893714) +zone = ('flz065', 0.0027275812313406079) + +[fips1221250] +centroid = (0.54073200964001145, -1.4947516157005105) +description = Esto town, FL +station = ('k1j0', 0.0026675550411222135) +zone = ('flz009', 0.0032439638414511729) + +[fips1221350] +centroid = (0.50363943461858696, -1.4255561350963104) +description = Eustis city, FL +station = ('klee', 0.0022256114796580999) +zone = ('flz044', 0.0015006218272653729) + +[fips1221425] +centroid = (0.45129997741100542, -1.4204640148305694) +description = Everglades city, FL +station = ('kapf', 0.0078480657879790687) +zone = ('flz069', 0.0043528178864875892) + +[fips1221750] +centroid = (0.4992079738346033, -1.4206222812871403) +description = Fairview Shores CDP, FL +station = ('korl', 0.0013238318120204306) +zone = ('flz045', 0.0018859949466046334) + +[fips1221850] +centroid = (0.5163955050693454, -1.4474622337769893) +description = Fanning Springs city, FL +station = ('kcty', 0.0026515651539669796) +zone = ('flz035', 0.0031497408002909514) + +[fips1221945] +centroid = (0.48712690947205373, -1.4431722144755872) +description = Feather Sound CDP, FL +station = ('kpie', 0.00012951183851267736) +zone = ('flz050', 0.00061406439593095013) + +[fips1222100] +centroid = (0.48414391488759262, -1.4071540990482756) +description = Fellsmere city, FL +station = ('kvrb', 0.003563710985734274) +zone = ('flz054', 0.00082143818713920199) + +[fips1222175] +centroid = (0.53509602732605632, -1.4215559277172021) +description = Fernandina Beach city, FL +station = ('kfhb', 0.00074514668052397032) +zone = ('gaz166', 0.0043077728326625184) + +[fips1222225] +centroid = (0.49946930198350442, -1.425892023710857) +description = Ferndale CDP, FL +station = ('klee', 0.0039252041512762344) +zone = ('flz144', 0.0019120831467192754) + +[fips1222250] +centroid = (0.50000527514349935, -1.4197480633181088) +description = Fern Park CDP, FL +station = ('korl', 0.0017240048505404245) +zone = ('flz046', 0.0020607577104027348) + +[fips1222275] +centroid = (0.53274161307170109, -1.5218194383774999) +description = Ferry Pass CDP, FL +station = ('kpns', 0.00072448696515780273) +zone = ('flz002', 0.001861662656825715) + +[fips1222325] +centroid = (0.53983901192822847, -1.5189728936339597) +description = Fidelis CDP, FL +station = ('knse', 0.0034476089671619699) +zone = ('flz003', 0.0014019204287800909) + +[fips1222375] +centroid = (0.44961470493857225, -1.3987443347672959) +description = Fisher Island CDP, FL +station = ('kmia', 0.0027704585204305506) +zone = ('flz074', 0.0026933420289642135) + +[fips1222387] +centroid = (0.48603159319337963, -1.434970877413881) +description = Fish Hawk CDP, FL +station = ('kpcm', 0.0028585250420965613) +zone = ('flz051', 0.0034164276315205759) + +[fips1222475] +centroid = (0.52748164449179569, -1.4424514284010985) +description = Five Points CDP, FL +station = ('kgnv', 0.010643709124700236) +zone = ('flz022', 0.00037655067444219655) + +[fips1222550] +centroid = (0.51441663331014176, -1.4160030754355195) +description = Flagler Beach city, FL +station = ('kxfl', 0.0012023177648087257) +zone = ('flz038', 0.0027981659033698412) + +[fips1222560] +centroid = (0.51741219426521712, -1.4216928138904359) +description = Flagler Estates CDP, FL +station = ('kxfl', 0.0048422876605476242) +zone = ('flz038', 0.0038871796460413126) + +[fips1222660] +centroid = (0.52532867613970557, -1.4261503149868595) +description = Fleming Island CDP, FL +station = ('knip', 0.002442043740758181) +zone = ('flz032', 0.002988824018428286) + +[fips1222775] +centroid = (0.50102608331640575, -1.4365233652368223) +description = Floral City CDP, FL +station = ('kinf', 0.0017009502593312428) +zone = ('flz048', 0.003205043172294426) + +[fips1222975] +centroid = (0.44408223810255293, -1.404375587238978) +description = Florida City city, FL +station = ('khst', 0.0014553727509223581) +zone = ('flz173', 0.0034016258680753665) + +[fips1223050] +centroid = (0.48139865160054574, -1.4029493739874184) +description = Florida Ridge CDP, FL +station = ('kvrb', 0.0012937464068838518) +zone = ('flz059', 0.0039132069534226679) + +[fips1223125] +centroid = (0.53376390477447178, -1.5212454519463965) +description = Floridatown CDP, FL +station = ('kpns', 0.0017618207827716404) +zone = ('flz004', 0.0025273775948885073) + +[fips1223375] +centroid = (0.50023719449450443, -1.4214812625318018) +description = Forest City CDP, FL +station = ('korl', 0.0025897825034898775) +zone = ('flz045', 0.0031617931019143875) + +[fips1223730] +centroid = (0.46639986796755956, -1.423384858240367) +description = Fort Denaud CDP, FL +station = ('krsw', 0.0046844101040343046) +zone = ('flz065', 0.0048647543348563889) + +[fips1223850] +centroid = (0.48215514711153007, -1.4301177450826155) +description = Fort Green CDP, FL +station = ('kbow', 0.0061575382625987602) +zone = ('flz056', 0.0030664059776922795) + +[fips1223875] +centroid = (0.48149485414891563, -1.4301262448360725) +description = Fort Green Springs CDP, FL +station = ('kbow', 0.0067727369823463168) +zone = ('flz056', 0.0026097410087072641) + +[fips1224000] +centroid = (0.45625184301805627, -1.3987748605759134) +description = Fort Lauderdale city, FL +station = ('kfxe', 0.0011962657507190479) +zone = ('flz172', 0.00030889312970132501) + +[fips1224100] +centroid = (0.48440381186650711, -1.4275857610301623) +description = Fort Meade city, FL +station = ('kbow', 0.0034201666257636827) +zone = ('flz052', 0.0037107225569574576) + +[fips1224125] +centroid = (0.46458936812129575, -1.428237065547129) +description = Fort Myers city, FL +station = ('kfmy', 0.00082531762503712264) +zone = ('flz065', 0.00072815307231479493) + +[fips1224150] +centroid = (0.46133478285193186, -1.4297169302198949) +description = Fort Myers Beach town, FL +station = ('kfmy', 0.0027456744062757323) +zone = ('flz065', 0.002955623030402023) + +[fips1224175] +centroid = (0.46624531906229549, -1.4266769680886489) +description = Fort Myers Shores CDP, FL +station = ('kfmy', 0.0029899160551915432) +zone = ('flz065', 0.0026595122692392547) + +[fips1224300] +centroid = (0.47874829931822221, -1.4021263814319331) +description = Fort Pierce city, FL +station = ('kfpr', 0.0014215196480642086) +zone = ('flz059', 0.0024737610721230008) + +[fips1224337] +centroid = (0.47952755392265262, -1.402525363698939) +description = Fort Pierce North CDP, FL +station = ('kfpr', 0.00057992240204942204) +zone = ('flz059', 0.0025873982741334042) + +[fips1224387] +centroid = (0.47838783646780786, -1.4024397727524212) +description = Fort Pierce South CDP, FL +station = ('kfpr', 0.0016423292939261168) +zone = ('flz059', 0.0020920460097108916) + +[fips1224475] +centroid = (0.5310118521566346, -1.511809992570605) +description = Fort Walton Beach city, FL +station = ('kqhy', 0.00065009780234596189) +zone = ('flz006', 0.0024265255061302719) + +[fips1224500] +centroid = (0.52224453972509144, -1.4436238707794184) +description = Fort White town, FL +station = ('kgnv', 0.0075838521885625461) +zone = ('flz035', 0.0036737010040151798) + +[fips1224562] +centroid = (0.44984658938299221, -1.4023623674000953) +description = Fountainebleau CDP, FL +station = ('kmia', 0.00053868498860579965) +zone = ('flz074', 0.0010970903810524914) + +[fips1224581] +centroid = (0.49459882107947412, -1.4249499647938004) +description = Four Corners CDP, FL +station = ('kism', 0.003283268398874536) +zone = ('flz144', 0.0046512926370145605) + +[fips1224710] +centroid = (0.45612623167179028, -1.3993395967619813) +description = Franklin Park CDP, FL +station = ('kfxe', 0.0011553681108883965) +zone = ('flz172', 0.00082475968276355153) + +[fips1224825] +centroid = (0.53259980506997651, -1.5033603300629246) +description = Freeport city, FL +station = ('kdts', 0.0053663462382607628) +zone = ('flz008', 0.0013947764431377692) + +[fips1224900] +centroid = (0.48432944338707956, -1.4228685374877494) +description = Frostproof city, FL +station = ('kbow', 0.0053058154309912836) +zone = ('flz052', 0.0043829758867812273) + +[fips1224925] +centroid = (0.5252887604597124, -1.4245560963415029) +description = Fruit Cove CDP, FL +station = ('knip', 0.0024798883660347854) +zone = ('flz032', 0.0040921578745421712) + +[fips1224975] +centroid = (0.50367882669980457, -1.4297872495354578) +description = Fruitland Park city, FL +station = ('klee', 0.0017524190199722752) +zone = ('flz043', 0.0036384445330385081) + +[fips1225000] +centroid = (0.47704852315970497, -1.4391894080291212) +description = Fruitville CDP, FL +station = ('ksrq', 0.0018279724781164366) +zone = ('flz060', 0.0034086762333125839) + +[fips1225025] +centroid = (0.4872848094094816, -1.4310102366489152) +description = Fuller Heights CDP, FL +station = ('klal', 0.0011853335861324121) +zone = ('flz052', 0.0045480223666359955) + +[fips1225125] +centroid = (0.48969800635304406, -1.4287383764681794) +description = Fussels Corner CDP, FL +station = ('kgif', 0.0017118991204897534) +zone = ('flz052', 0.0031465864007242522) + +[fips1225175] +centroid = (0.5179933190929612, -1.4372066965455632) +description = Gainesville city, FL +station = ('kgnv', 0.0010177393546915449) +zone = ('flz036', 0.00019053339533067721) + +[fips1225392] +centroid = (0.53191238969078602, -1.5199344653320535) +description = Garcon Point CDP, FL +station = ('kpns', 0.0014716624596402654) +zone = ('flz004', 0.0022675648592958685) + +[fips1225475] +centroid = (0.49692553695860026, -1.438753320062218) +description = Garden Grove CDP, FL +station = ('kbkv', 0.00025383826681644171) +zone = ('flz048', 0.0014301096333358819) + +[fips1225550] +centroid = (0.47741240685545322, -1.4274951958952762) +description = Gardner CDP, FL +station = ('kpgd', 0.0082994275006368877) +zone = ('flz056', 0.0024463295545402754) + +[fips1225655] +centroid = (0.46393708621994795, -1.4267174073674174) +description = Gateway CDP, FL +station = ('krsw', 0.00090904887873804953) +zone = ('flz065', 0.0011861795270297142) + +[fips1225750] +centroid = (0.50157130672143635, -1.4157009938485843) +description = Geneva CDP, FL +station = ('ksfb', 0.0022310856044286528) +zone = ('flz046', 0.0019102099979126576) + +[fips1225900] +centroid = (0.4857027906155964, -1.4378139314989169) +description = Gibsonton CDP, FL +station = ('ktpf', 0.001847642256914468) +zone = ('flz051', 0.0019228008664003051) + +[fips1225925] +centroid = (0.4830020506777678, -1.4034206477920419) +description = Gifford CDP, FL +station = ('kvrb', 0.00043072021813198719) +zone = ('flz054', 0.0031965837259237064) + +[fips1225987] +centroid = (0.45099101922681739, -1.4004298864924094) +description = Gladeview CDP, FL +station = ('kopf', 0.0012616507728120084) +zone = ('flz074', 0.0010386747521034727) + +[fips1226000] +centroid = (0.50623123110450607, -1.4132518954823083) +description = Glencoe CDP, FL +station = ('kevb', 0.00096291773228221532) +zone = ('flz141', 0.0013120436803880666) + +[fips1226050] +centroid = (0.46550964532928735, -1.3975835686416722) +description = Glen Ridge town, FL +station = ('kpbi', 0.0004304443591553026) +zone = ('flz168', 0.00059085173362054299) + +[fips1226075] +centroid = (0.52840008910407266, -1.4339661611766776) +description = Glen St. Mary town, FL +station = ('kvqq', 0.0043872337051016168) +zone = ('flz023', 0.0021131545351232967) + +[fips1226100] +centroid = (0.44871313766016202, -1.4017761462109353) +description = Glenvar Heights CDP, FL +station = ('kmia', 0.0012909838954670359) +zone = ('flz074', 0.0019349317934587021) + +[fips1226250] +centroid = (0.45315943374278767, -1.3983834006779836) +description = Golden Beach town, FL +station = ('kfll', 0.001844831329771331) +zone = ('flz172', 0.0032416742192517369) + +[fips1226300] +centroid = (0.45698999511860222, -1.4259984887952284) +description = Golden Gate CDP, FL +station = ('kapf', 0.0011475595890336418) +zone = ('flz069', 0.0033487995467636144) + +[fips1226375] +centroid = (0.45226783229440637, -1.3997657188988555) +description = Golden Glades CDP, FL +station = ('kopf', 0.0013175931341325646) +zone = ('flz074', 0.0022679970425030032) + +[fips1226475] +centroid = (0.49937217441063092, -1.4187995990426976) +description = Goldenrod CDP, FL +station = ('korl', 0.0012586818404293229) +zone = ('flz045', 0.0017670328793235365) + +[fips1226550] +centroid = (0.46256204602205675, -1.3981088952932299) +description = Golf village, FL +station = ('kbct', 0.0021686640888751228) +zone = ('flz068', 0.0021775678856930181) + +[fips1226700] +centroid = (0.53376823319101663, -1.5234616710305788) +description = Gonzalez CDP, FL +station = ('kpns', 0.0023404976255413513) +zone = ('flz002', 0.0013395217196653895) + +[fips1226775] +centroid = (0.45246974943556961, -1.4249976297356723) +description = Goodland CDP, FL +station = ('kapf', 0.0043629316628626931) +zone = ('flz069', 0.0017262207191260657) + +[fips1226900] +centroid = (0.49795721853274666, -1.4227410760924764) +description = Gotha CDP, FL +station = ('korl', 0.0028367151669537924) +zone = ('flz045', 0.0029768181510483236) + +[fips1226925] +centroid = (0.53127667096403963, -1.5224416133492507) +description = Goulding CDP, FL +station = ('kpns', 0.0010277662073322955) +zone = ('flz002', 0.0017927063995466341) + +[fips1226950] +centroid = (0.4461294395019722, -1.4030358375985621) +description = Goulds CDP, FL +station = ('khst', 0.0013633784363867004) +zone = ('flz173', 0.0012522291186492468) + +[fips1227000] +centroid = (0.54035868371300988, -1.4924804012915975) +description = Graceville city, FL +station = ('k1j0', 0.0025715470092478911) +zone = ('alz069', 0.0046073249460994335) + +[fips1227175] +centroid = (0.5360126218893263, -1.4838713553166252) +description = Grand Ridge town, FL +station = ('kmai', 0.0032512335031455726) +zone = ('flz011', 0.0019005321493700534) + +[fips1227256] +centroid = (0.48754552669314455, -1.4061399580331118) +description = Grant-Valkaria town, FL +station = ('kmlb', 0.0031691209591862874) +zone = ('flz047', 0.0030481883219361516) + +[fips1227322] +centroid = (0.46473889047831413, -1.3986581329555401) +description = Greenacres city, FL +station = ('kpbi', 0.0011330624741937036) +zone = ('flz068', 0.00017139432935781089) + +[fips1227360] +centroid = (0.48888913351120733, -1.4443075162474246) +description = Greenbriar CDP, FL +station = ('kpie', 0.0019675723350861363) +zone = ('flz050', 0.001524294733376804) + +[fips1227400] +centroid = (0.52343073529791684, -1.425602979733434) +description = Green Cove Springs city, FL +station = ('knip', 0.0042460196589897614) +zone = ('flz032', 0.0026766963919549625) + +[fips1227550] +centroid = (0.53354877549087087, -1.4790756094111652) +description = Greensboro town, FL +station = ('k2j9', 0.002972920990343257) +zone = ('flz016', 0.0019766788858890452) + +[fips1227575] +centroid = (0.53174649614538405, -1.4597105355884652) +description = Greenville town, FL +station = ('k40j', 0.0070278823869125828) +zone = ('flz019', 0.0025174310439290532) + +[fips1227600] +centroid = (0.53883392917188255, -1.4863407867686869) +description = Greenwood town, FL +station = ('kmai', 0.0007671777964207416) +zone = ('flz011', 0.003942272704867503) + +[fips1227635] +centroid = (0.4895493043007742, -1.4232717783581301) +description = Grenelefe CDP, FL +station = ('kgif', 0.0031344551103895425) +zone = ('flz052', 0.0029027759411543843) + +[fips1227650] +centroid = (0.53384291582970955, -1.4783732365602853) +description = Gretna city, FL +station = ('k2j9', 0.0023330335761622221) +zone = ('flz016', 0.0013711833482775661) + +[fips1227775] +centroid = (0.46961076764574605, -1.4368609991806207) +description = Grove City CDP, FL +station = ('kvnc', 0.0032024615983759848) +zone = ('flz060', 0.0047806347277337766) + +[fips1227800] +centroid = (0.49911290575024714, -1.428286214018865) +description = Groveland city, FL +station = ('klee', 0.0038428148681429446) +zone = ('flz144', 0.00073369091522020827) + +[fips1228000] +centroid = (0.53000083528083175, -1.521477022231551) +description = Gulf Breeze city, FL +station = ('kpns', 0.0020383261153648254) +zone = ('flz002', 0.0032918729261365324) + +[fips1228050] +centroid = (0.47573779834474972, -1.4400032899659114) +description = Gulf Gate Estates CDP, FL +station = ('ksrq', 0.0025740020468300725) +zone = ('flz060', 0.0031604093614898952) + +[fips1228175] +centroid = (0.48426668134717787, -1.4435608294868363) +description = Gulfport city, FL +station = ('kspg', 0.0012347926647463916) +zone = ('flz050', 0.0031794680359202854) + +[fips1228275] +centroid = (0.46226650941981651, -1.3972661281573193) +description = Gulf Stream town, FL +station = ('kbct', 0.0020313436628274831) +zone = ('flz068', 0.0027542403988798812) + +[fips1228305] +centroid = (0.4655723899158965, -1.3981494392917537) +description = Gun Club Estates CDP, FL +station = ('kpbi', 0.00018789516408516377) +zone = ('flz168', 0.00067596964802865418) + +[fips1228400] +centroid = (0.49060934747526547, -1.4244626688666435) +description = Haines City city, FL +station = ('kgif', 0.0022009634207781664) +zone = ('flz052', 0.0030806593198216066) + +[fips1228452] +centroid = (0.45349455441246311, -1.3987136518790459) +description = Hallandale Beach city, FL +station = ('kfll', 0.0014623931114871791) +zone = ('flz172', 0.0029135856735144714) + +[fips1228575] +centroid = (0.52122914207286619, -1.4335788726156602) +description = Hampton city, FL +station = ('k42j', 0.0023982589524291927) +zone = ('flz031', 0.001571514067037187) + +[fips1228650] +centroid = (0.48708327624075382, -1.4455957961281991) +description = Harbor Bluffs CDP, FL +station = ('kpie', 0.0022140229251786606) +zone = ('flz050', 0.0016528600682861677) + +[fips1228800] +centroid = (0.47110052833537086, -1.4312827349050292) +description = Harbour Heights CDP, FL +station = ('kpgd', 0.0013199030477555398) +zone = ('flz062', 0.0023041263682713831) + +[fips1228925] +centroid = (0.46656900782537031, -1.4128762831739865) +description = Harlem CDP, FL +station = ('kobe', 0.0094562205945668224) +zone = ('flz066', 0.0047132750684826816) + +[fips1228937] +centroid = (0.46280695062269656, -1.4299156185019419) +description = Harlem Heights CDP, FL +station = ('kfmy', 0.0015052755442169846) +zone = ('flz065', 0.0019911277798088413) + +[fips1229000] +centroid = (0.53540280384867944, -1.5156105168299927) +description = Harold CDP, FL +station = ('kndz', 0.0027120078069372824) +zone = ('flz004', 0.00288234491357199) + +[fips1229100] +centroid = (0.51866431092389043, -1.422496660184027) +description = Hastings town, FL +station = ('ksgj', 0.0048926643063926592) +zone = ('flz033', 0.0033344185907087775) + +[fips1229150] +centroid = (0.53460003965922465, -1.4732986743068193) +description = Havana town, FL +station = ('k2j9', 0.0021132009252850014) +zone = ('flz016', 0.0031312441442203449) + +[fips1229200] +centroid = (0.46584509761152065, -1.398389823489631) +description = Haverhill town, FL +station = ('kpbi', 0.0003655768037456493) +zone = ('flz168', 0.00068996559099125492) + +[fips1229275] +centroid = (0.51640702424240859, -1.4326336022927801) +description = Hawthorne city, FL +station = ('k42j', 0.0028746590563031734) +zone = ('flz036', 0.0044215075368095741) + +[fips1229320] +centroid = (0.50219484305000373, -1.4202094585591658) +description = Heathrow CDP, FL +station = ('ksfb', 0.0018740726188155562) +zone = ('flz046', 0.0023013710111507834) + +[fips1229385] +centroid = (0.49611369705703506, -1.4420103487925346) +description = Heritage Pines CDP, FL +station = ('kbkv', 0.0027236395876587623) +zone = ('flz048', 0.003793415161019489) + +[fips1229425] +centroid = (0.50535186441418123, -1.4380371416569544) +description = Hernando CDP, FL +station = ('kinf', 0.0028738736610208039) +zone = ('flz042', 0.0021346773234625607) + +[fips1229437] +centroid = (0.49686195461395011, -1.4428159578686701) +description = Hernando Beach CDP, FL +station = ('kbkv', 0.0033335874430321156) +zone = ('flz048', 0.0040573723251296975) + +[fips1230000] +centroid = (0.45151564774667441, -1.4015493930345162) +description = Hialeah city, FL +station = ('kopf', 0.0006076960182654675) +zone = ('flz074', 0.00088270301593982106) + +[fips1230025] +centroid = (0.45183228537957121, -1.4025464472763032) +description = Hialeah Gardens city, FL +station = ('kopf', 0.0012214592755667917) +zone = ('flz074', 0.0015170092644234713) + +[fips1230200] +centroid = (0.46092951739961879, -1.3974217068068422) +description = Highland Beach town, FL +station = ('kbct', 0.00084044914358837779) +zone = ('flz068', 0.0039201332752547896) + +[fips1230225] +centroid = (0.48804147945339127, -1.4290427269831421) +description = Highland City CDP, FL +station = ('kbow', 0.001478000447433741) +zone = ('flz052', 0.0027903254680628539) + +[fips1230325] +centroid = (0.48628759808806216, -1.4236027625974783) +description = Highland Park village, FL +station = ('kbow', 0.003679526481878876) +zone = ('flz052', 0.0025286257882556839) + +[fips1230494] +centroid = (0.49824353979653629, -1.440262122293982) +description = High Point CDP, FL +station = ('kbkv', 0.0017782050326309864) +zone = ('flz048', 0.0015367796607113349) + +[fips1230525] +centroid = (0.52017494575136902, -1.4414979899373193) +description = High Springs city, FL +station = ('kgnv', 0.0050123857928194996) +zone = ('flz035', 0.0034427486783439676) + +[fips1230700] +centroid = (0.48562363993401847, -1.4230362287222811) +description = Hillcrest Heights town, FL +station = ('kbow', 0.0044294151350034363) +zone = ('flz052', 0.003335469643825298) + +[fips1230750] +centroid = (0.53558738987037036, -1.4297941261327107) +description = Hilliard town, FL +station = ('kjax', 0.0046563291376471192) +zone = ('flz024', 0.0021649010284297519) + +[fips1230800] +centroid = (0.49765897667016584, -1.4362464338444083) +description = Hill 'n Dale CDP, FL +station = ('kbkv', 0.002575822465441178) +zone = ('flz048', 0.0021071835535040415) + +[fips1230850] +centroid = (0.45868678676409858, -1.3976477618515606) +description = Hillsboro Beach town, FL +station = ('kpmp', 0.00079435278947791069) +zone = ('flz172', 0.002403540166812389) + +[fips1230858] +centroid = (0.45947712420927922, -1.3996749443244594) +description = Hillsboro Pines CDP, FL +station = ('kbct', 0.0016494707477450368) +zone = ('flz172', 0.003260421874434928) + +[fips1230975] +centroid = (0.47251820692688828, -1.398701504387452) +description = Hobe Sound CDP, FL +station = ('ksua', 0.0022752452697481626) +zone = ('flz064', 0.003883747507434393) + +[fips1231025] +centroid = (0.49738344154115349, -1.4204541362670031) +description = Holden Heights CDP, FL +station = ('korl', 0.0012155284269423328) +zone = ('flz045', 0.00099856550496407151) + +[fips1231075] +centroid = (0.49194201107891822, -1.4441309063804151) +description = Holiday CDP, FL +station = ('kpie', 0.0047920349250053255) +zone = ('flz050', 0.0045125052343789294) + +[fips1231275] +centroid = (0.53150394773923437, -1.5167678795635751) +description = Holley CDP, FL +station = ('kqhy', 0.0037534639776197346) +zone = ('flz004', 0.0025646328022995712) + +[fips1231350] +centroid = (0.51043211644100872, -1.4145377842620077) +description = Holly Hill city, FL +station = ('komn', 0.0014019685249760149) +zone = ('flz141', 0.0036818756955144761) + +[fips1232000] +centroid = (0.45432849018235855, -1.3991357597586409) +description = Hollywood city, FL +station = ('kfll', 0.00066140233944931193) +zone = ('flz172', 0.0021554369701413619) + +[fips1232150] +centroid = (0.48014999069379138, -1.4436584806584853) +description = Holmes Beach city, FL +station = ('ksrq', 0.0032088911722481816) +zone = ('flz051', 0.006279808907042596) + +[fips1232250] +centroid = (0.48551988010998737, -1.4281500085240393) +description = Homeland CDP, FL +station = ('kbow', 0.0023961421664333571) +zone = ('flz052', 0.0030283937342371046) + +[fips1232275] +centroid = (0.44448903944460777, -1.4040436081619563) +description = Homestead city, FL +station = ('khst', 0.0010226235153041393) +zone = ('flz173', 0.0029031887972521364) + +[fips1232325] +centroid = (0.44494167313282001, -1.403074025402596) +description = Homestead Base CDP, FL +station = ('khst', 0.00020471746275909871) +zone = ('flz173', 0.0019747948384129773) + +[fips1232375] +centroid = (0.50239171618962875, -1.4417741184782773) +description = Homosassa CDP, FL +station = ('kcgc', 0.0015921012349205176) +zone = ('flz042', 0.0024328927916506459) + +[fips1232400] +centroid = (0.50280876261439278, -1.4405969637109772) +description = Homosassa Springs CDP, FL +station = ('kcgc', 0.0011613723752042207) +zone = ('flz042', 0.0013319884626392957) + +[fips1232610] +centroid = (0.49626445859782237, -1.4245843183155076) +description = Horizon West CDP, FL +station = ('kism', 0.0038000633249896019) +zone = ('flz144', 0.0036094025802519861) + +[fips1232650] +centroid = (0.51382795120673663, -1.4536110461850578) +description = Horseshoe Beach town, FL +station = ('kcty', 0.0043958910093128542) +zone = ('flz134', 0.0012965533938056489) + +[fips1232675] +centroid = (0.53049237235807101, -1.4800998733359909) +description = Hosford CDP, FL +station = ('k2j9', 0.0052283484547740447) +zone = ('flz026', 0.0029353543492191699) + +[fips1232775] +centroid = (0.50108984019398117, -1.4273009232962366) +description = Howey-in-the-Hills town, FL +station = ('klee', 0.001946405140056597) +zone = ('flz144', 0.0025995342557228115) + +[fips1232825] +centroid = (0.49496052311365735, -1.4432074177666001) +description = Hudson CDP, FL +station = ('kbkv', 0.004130402621313649) +zone = ('flz049', 0.0046673548602901458) + +[fips1232967] +centroid = (0.49494703171853949, -1.4211464560213916) +description = Hunters Creek CDP, FL +station = ('kism', 0.0012112539704579501) +zone = ('flz045', 0.0031462728646957229) + +[fips1232993] +centroid = (0.47679182013332166, -1.4002000789897995) +description = Hutchinson Island South CDP, FL +station = ('ksua', 0.0023832383093121486) +zone = ('flz059', 0.0041275153228269613) + +[fips1233150] +centroid = (0.46361845891170383, -1.3971601866717234) +description = Hypoluxo town, FL +station = ('kpbi', 0.0022267558213429836) +zone = ('flz068', 0.0018036026335388191) + +[fips1233250] +centroid = (0.46118601098649192, -1.421074234296944) +description = Immokalee CDP, FL +station = ('krsw', 0.0057191333383538774) +zone = ('flz066', 0.0044555971510389569) + +[fips1233375] +centroid = (0.49019711815923689, -1.4061821077345473) +description = Indialantic town, FL +station = ('kmlb', 0.0012807007374495099) +zone = ('flz047', 0.0023803692216421883) + +[fips1233425] +centroid = (0.45166064970093006, -1.3986586740076081) +description = Indian Creek village, FL +station = ('kopf', 0.0023251284417723055) +zone = ('flz074', 0.002766771127021268) + +[fips1233450] +centroid = (0.49141588157590455, -1.4067224267643799) +description = Indian Harbour Beach city, FL +station = ('kmlb', 0.0012518725322339726) +zone = ('flz047', 0.0026168428577711773) + +[fips1233585] +centroid = (0.4774386566074032, -1.4014816917128314) +description = Indian River Estates CDP, FL +station = ('kfpr', 0.0028447358431254103) +zone = ('flz059', 0.0028853117524077305) + +[fips1233600] +centroid = (0.48363220180420036, -1.4029311178434425) +description = Indian River Shores town, FL +station = ('kvrb', 0.0011773914270027117) +zone = ('flz054', 0.0036248038212488925) + +[fips1233625] +centroid = (0.4868945537887357, -1.4458930780596913) +description = Indian Rocks Beach city, FL +station = ('kpie', 0.0024951638201401245) +zone = ('flz050', 0.0019543952622994728) + +[fips1233675] +centroid = (0.48608622199896701, -1.4459142663568105) +description = Indian Shores town, FL +station = ('kpie', 0.0027440172275759894) +zone = ('flz050', 0.0023298705488643532) + +[fips1233700] +centroid = (0.47214243753893392, -1.4044945139742091) +description = Indiantown CDP, FL +station = ('ksua', 0.0045036768509834737) +zone = ('flz064', 0.0014002472936705563) + +[fips1233800] +centroid = (0.50672133701175859, -1.4426731026693944) +description = Inglis town, FL +station = ('kcgc', 0.0031533454746547522) +zone = ('flz042', 0.0043246699687936596) + +[fips1233900] +centroid = (0.51700609105486317, -1.4293327308916535) +description = Interlachen town, FL +station = ('k42j', 0.0032423026384151114) +zone = ('flz037', 0.0022964928844883413) + +[fips1233950] +centroid = (0.50336108950947889, -1.4371678455164139) +description = Inverness city, FL +station = ('kinf', 0.0007514254665810788) +zone = ('flz042', 0.0018987188463347239) + +[fips1233958] +centroid = (0.50378064920836585, -1.4377491623303755) +description = Inverness Highlands North CDP, FL +station = ('kinf', 0.0013911561474212665) +zone = ('flz042', 0.0014018120920807808) + +[fips1233966] +centroid = (0.5026668498929131, -1.4370549227138096) +description = Inverness Highlands South CDP, FL +station = ('kinf', 0.00029405946584462492) +zone = ('flz042', 0.0021726364011957948) + +[fips1234000] +centroid = (0.48936368853482459, -1.4271096875700957) +description = Inwood CDP, FL +station = ('kgif', 0.00056002984829862067) +zone = ('flz052', 0.0018956163343252991) + +[fips1234012] +centroid = (0.46281578198871165, -1.4304577526741964) +description = Iona CDP, FL +station = ('kfmy', 0.0018469917464829578) +zone = ('flz065', 0.002409613708378805) + +[fips1234132] +centroid = (0.43603700328914496, -1.4057642235517425) +description = "Islamorada, Village of Islands village", FL +station = ('khst', 0.0090936454275552248) +zone = ('flz076', 0.0034787130677413508) + +[fips1234175] +centroid = (0.44357066464550088, -1.3998830224778822) +description = Islandia city, FL +station = ('khst', 0.0030203355147474424) +zone = ('flz173', 0.0033425512747909431) + +[fips1234185] +centroid = (0.45816620740810626, -1.4261261770833042) +description = Island Walk CDP, FL +station = ('kapf', 0.0019663218100991809) +zone = ('flz069', 0.004460743521401524) + +[fips1234275] +centroid = (0.50024497866296824, -1.4359591526495301) +description = Istachatta CDP, FL +station = ('kinf', 0.0025623295481738721) +zone = ('flz048', 0.002943902428315747) + +[fips1234400] +centroid = (0.45314691973205085, -1.3994551026518782) +description = Ives Estates CDP, FL +station = ('khwo', 0.0010172229817897364) +zone = ('flz074', 0.0031218062396170918) + +[fips1235000] +centroid = (0.52948086679007766, -1.4252585913654305) +description = Jacksonville city, FL +station = ('knip', 0.0018114615655130089) +zone = ('flz025', 0.00022528435164775895) + +[fips1235050] +centroid = (0.52836938876253015, -1.420450540888744) +description = Jacksonville Beach city, FL +station = ('kcrg', 0.002232478946894976) +zone = ('flz025', 0.0044544851662271468) + +[fips1235200] +centroid = (0.53905801199454617, -1.490775947650685) +description = Jacob City city, FL +station = ('k1j0', 0.0029163913413054157) +zone = ('alz069', 0.004962794409084279) + +[fips1235300] +centroid = (0.48897048330764276, -1.427565410491084) +description = Jan Phyl Village CDP, FL +station = ('kgif', 0.0011100236231838621) +zone = ('flz052', 0.001882469749553046) + +[fips1235350] +centroid = (0.49386002320710493, -1.4431982896946121) +description = Jasmine Estates CDP, FL +station = ('kbkv', 0.0047276397563740229) +zone = ('flz049', 0.0045846678062614575) + +[fips1235375] +centroid = (0.53286591542102812, -1.4478978155984095) +description = Jasper city, FL +station = ('kvld', 0.006388802902224492) +zone = ('flz020', 0.00062415365097473463) + +[fips1235425] +centroid = (0.54018474419975615, -1.5210929625296499) +description = Jay town, FL +station = ('knse', 0.0042971900175192606) +zone = ('flz003', 0.0024648005961930217) + +[fips1235525] +centroid = (0.53403776438740214, -1.4505019166555551) +description = Jennings town, FL +station = ('kvld', 0.0040184054870010125) +zone = ('flz020', 0.0029871946004003691) + +[fips1235550] +centroid = (0.47549715234748474, -1.4004720187405526) +description = Jensen Beach CDP, FL +station = ('ksua', 0.0011311148984565293) +zone = ('flz064', 0.0036125675795171883) + +[fips1235800] +centroid = (0.48993037948965462, -1.4082408806669076) +description = June Park CDP, FL +station = ('kmlb', 0.00075426273808157568) +zone = ('flz047', 0.00061995929765148994) + +[fips1235850] +centroid = (0.4690649682820624, -1.39731031989398) +description = Juno Beach town, FL +station = ('kpbi', 0.003410426081654087) +zone = ('flz168', 0.0029868756547030044) + +[fips1235862] +centroid = (0.4686045853319713, -1.3973444759874416) +description = Juno Ridge CDP, FL +station = ('kpbi', 0.0029527388807860534) +zone = ('flz168', 0.0025259604353000779) + +[fips1235875] +centroid = (0.46986846550980299, -1.3981850265552018) +description = Jupiter town, FL +station = ('kpbi', 0.0041594209684723991) +zone = ('flz168', 0.003800933253775925) + +[fips1235890] +centroid = (0.46988670420048639, -1.4000688651366344) +description = Jupiter Farms CDP, FL +station = ('ksua', 0.0045231277155556833) +zone = ('flz064', 0.0038826310326280306) + +[fips1235900] +centroid = (0.47033066360231618, -1.397575435407358) +description = Jupiter Inlet Colony town, FL +station = ('kpbi', 0.0046348016123208989) +zone = ('flz168', 0.0042360939260560129) + +[fips1235925] +centroid = (0.4717720961249533, -1.3980452605887022) +description = Jupiter Island town, FL +station = ('ksua', 0.0032211004647476867) +zone = ('flz064', 0.0045619347237253428) + +[fips1235950] +centroid = (0.49077471742189188, -1.4318663031937258) +description = Kathleen CDP, FL +station = ('klal', 0.0024002334861112167) +zone = ('flz052', 0.0060515608311979214) + +[fips1236062] +centroid = (0.4486815646539935, -1.403406283732298) +description = Kendale Lakes CDP, FL +station = ('ktmb', 0.0010736226971903016) +zone = ('flz074', 0.0025916093863153117) + +[fips1236100] +centroid = (0.44801795556580015, -1.402454800037281) +description = Kendall CDP, FL +station = ('ktmb', 0.0012825823606677173) +zone = ('flz173', 0.0016792126442251015) + +[fips1236121] +centroid = (0.44866857940435861, -1.4039550152491251) +description = Kendall West CDP, FL +station = ('ktmb', 0.00099836801364180505) +zone = ('flz074', 0.0029489814358587005) + +[fips1236175] +centroid = (0.48548190174546402, -1.44364285996168) +description = Kenneth City town, FL +station = ('kspg', 0.0015229556567613971) +zone = ('flz050', 0.0019620849575110811) + +[fips1236200] +centroid = (0.47750675935481607, -1.439769852178457) +description = Kensington Park CDP, FL +station = ('ksrq', 0.0011387063153424839) +zone = ('flz055', 0.0035992685719847392) + +[fips1236220] +centroid = (0.46474114195304922, -1.3982650324481132) +description = Kenwood Estates CDP, FL +station = ('kpbi', 0.00099753573027515341) +zone = ('flz068', 0.000504079091740353) + +[fips1236300] +centroid = (0.44838688326308673, -1.3991342064156065) +description = Key Biscayne village, FL +station = ('kmia', 0.0028878528877360897) +zone = ('flz173', 0.0029994706629667576) + +[fips1236325] +centroid = (0.4314562994008232, -1.4140923587836063) +description = Key Colony Beach city, FL +station = ('kmth', 0.00050297704035043148) +zone = ('flz077', 0.00070983360374934532) + +[fips1236375] +centroid = (0.43847180740884711, -1.4034466706511892) +description = Key Largo CDP, FL +station = ('khst', 0.0063120088828180305) +zone = ('flz076', 0.00044752436821714165) + +[fips1236462] +centroid = (0.49091996372224289, -1.4417832465502654) +description = Keystone CDP, FL +station = ('ktpa', 0.0030364034576007832) +zone = ('flz050', 0.0038959945492664694) + +[fips1236475] +centroid = (0.51976816186260677, -1.431748825081774) +description = Keystone Heights city, FL +station = ('k42j', 0.00059062276863543174) +zone = ('flz031', 0.0036042649677380102) + +[fips1236535] +centroid = (0.49209025934558265, -1.4446155843136941) +description = Key Vista CDP, FL +station = ('kpie', 0.0050343047049045712) +zone = ('flz050', 0.0047090325072952528) + +[fips1236550] +centroid = (0.42874320253189058, -1.427256853732624) +description = Key West city, FL +station = ('keyw', 0.00030191138337200041) +zone = ('flz078', 0.0038466695908603611) + +[fips1236950] +centroid = (0.4939779900112472, -1.4210095873014501) +description = Kissimmee city, FL +station = ('kism', 0.00037568727382989499) +zone = ('flz045', 0.00397094634091645) + +[fips1237225] +centroid = (0.46636859166736383, -1.4216139075549534) +description = LaBelle city, FL +station = ('krsw', 0.0058951596921238214) +zone = ('flz066', 0.0053254717851385185) + +[fips1237275] +centroid = (0.49681931622032388, -1.4341435738951429) +description = Lacoochee CDP, FL +station = ('kbkv', 0.0042903845270048256) +zone = ('flz048', 0.0041324117225920937) + +[fips1237300] +centroid = (0.52088997223932609, -1.4378472149277526) +description = La Crosse town, FL +station = ('kgnv', 0.002940605155382059) +zone = ('flz036', 0.0029893132468837495) + +[fips1237375] +centroid = (0.50482625850994312, -1.4299452192860558) +description = Lady Lake town, FL +station = ('kvvg', 0.00092759133303107523) +zone = ('flz043', 0.004479170287289452) + +[fips1237500] +centroid = (0.52805772531800144, -1.5001654176006864) +description = Laguna Beach CDP, FL +station = ('kecp', 0.0028839094415565262) +zone = ('flz108', 0.0043410335455362934) + +[fips1237525] +centroid = (0.49041666312584525, -1.4263674339458075) +description = Lake Alfred city, FL +station = ('kgif', 0.00068176354955262687) +zone = ('flz052', 0.0026492818433175541) + +[fips1237542] +centroid = (0.46579745012294121, -1.3986449208131022) +description = Lake Belvedere Estates CDP, FL +station = ('kpbi', 0.00057480844075073116) +zone = ('flz168', 0.00092043144092823564) + +[fips1237625] +centroid = (0.49529950096097974, -1.4229317009533791) +description = Lake Buena Vista city, FL +station = ('kism', 0.0020853418802529631) +zone = ('flz045', 0.0039333358818647345) + +[fips1237648] +centroid = (0.49705865322064985, -1.4231850529475987) +description = Lake Butler CDP, FL +station = ('kmco', 0.0033911811236970743) +zone = ('flz045', 0.0034110629063464262) + +[fips1237650] +centroid = (0.52390747198309906, -1.4371627491549981) +description = Lake Butler city, FL +station = ('kgnv', 0.0056186345979742707) +zone = ('flz030', 0.00062355816665210181) + +[fips1237775] +centroid = (0.52689329400094842, -1.4424640645848832) +description = Lake City city, FL +station = ('kgnv', 0.010150623490014013) +zone = ('flz022', 0.00073065203790818531) + +[fips1237800] +centroid = (0.4650539398615916, -1.3975772156431949) +description = Lake Clarke Shores town, FL +station = ('kpbi', 0.00076274349602921323) +zone = ('flz168', 0.0010447774445888291) + +[fips1237975] +centroid = (0.48955094491027101, -1.4246572905315336) +description = Lake Hamilton town, FL +station = ('kgif', 0.0019210958736766203) +zone = ('flz052', 0.0020640074721551245) + +[fips1238000] +centroid = (0.46580122003412555, -1.4103638293558634) +description = Lake Harbor CDP, FL +station = ('kobe', 0.010113679740848076) +zone = ('flz067', 0.0047967116710341895) + +[fips1238012] +centroid = (0.49544900586470553, -1.4179082768469966) +description = Lake Hart CDP, FL +station = ('kmco', 0.0015204579401349337) +zone = ('flz045', 0.0025713700695918244) + +[fips1238025] +centroid = (0.50584003300596403, -1.4177437097518262) +description = Lake Helen city, FL +station = ('kded', 0.0016826276742816157) +zone = ('flz041', 0.0027932802394161323) + +[fips1238162] +centroid = (0.50626655656856645, -1.4221364242264154) +description = Lake Kathryn CDP, FL +station = ('kded', 0.0032078249152937988) +zone = ('flz041', 0.0023452565432093985) + +[fips1238250] +centroid = (0.48966894662099836, -1.4303615850324114) +description = Lakeland city, FL +station = ('klal', 0.0015964561211097511) +zone = ('flz052', 0.0043634939465059426) + +[fips1238262] +centroid = (0.48794831377791975, -1.430315717779669) +description = Lakeland Highlands CDP, FL +station = ('klal', 0.0011082020325632652) +zone = ('flz052', 0.0039072295786989428) + +[fips1238275] +centroid = (0.49972726164694914, -1.4374827203667662) +description = Lake Lindsey CDP, FL +station = ('kinf', 0.0030636583403786484) +zone = ('flz048', 0.0016573237627477053) + +[fips1238287] +centroid = (0.53128810287064021, -1.5108506199873686) +description = Lake Lorraine CDP, FL +station = ('kvps', 0.0010458852241504873) +zone = ('flz006', 0.0022121047426745524) + +[fips1238332] +centroid = (0.5061600216710247, -1.4211059643827453) +description = Lake Mack-Forest Hills CDP, FL +station = ('kded', 0.0024237297798407444) +zone = ('flz041', 0.0018385660732254377) + +[fips1238350] +centroid = (0.49011854343631212, -1.4396205741675339) +description = Lake Magdalene CDP, FL +station = ('ktpa', 0.0021461629772212237) +zone = ('flz049', 0.0042216252945014455) + +[fips1238425] +centroid = (0.50194313166528115, -1.4195674741004047) +description = Lake Mary city, FL +station = ('ksfb', 0.0013700519884626687) +zone = ('flz046', 0.0016851096055017379) + +[fips1238430] +centroid = (0.49513303145692455, -1.4165101284898087) +description = Lake Mary Jane CDP, FL +station = ('kmco', 0.0027873944685979568) +zone = ('flz045', 0.0035759787684670505) + +[fips1238519] +centroid = (0.53043156508693146, -1.4833798705992638) +description = Lake Mystic CDP, FL +station = ('k2j9', 0.0075703476000312424) +zone = ('flz026', 0.0030878356649957782) + +[fips1238575] +centroid = (0.50236647872864493, -1.4335305095420876) +description = Lake Panasoffkee CDP, FL +station = ('kinf', 0.0028210062650948762) +zone = ('flz043', 0.001607615159196954) + +[fips1238600] +centroid = (0.46775070044872563, -1.3974763007058446) +description = Lake Park town, FL +station = ('kpbi', 0.0020933929155206137) +zone = ('flz168', 0.0016643126853979461) + +[fips1238625] +centroid = (0.47641374691075461, -1.4202206112130862) +description = Lake Placid town, FL +station = ('kobe', 0.0081153259463198762) +zone = ('flz057', 0.00095523288457478807) + +[fips1238690] +centroid = (0.47630407042055928, -1.4388041091434511) +description = Lake Sarasota CDP, FL +station = ('ksrq', 0.0025920442250249296) +zone = ('flz060', 0.0026215869728199409) + +[fips1238813] +centroid = (0.52598252883738017, -1.4271426917462511) +description = Lakeside CDP, FL +station = ('kvqq', 0.0021624840073475424) +zone = ('flz032', 0.0029947735431404159) + +[fips1238950] +centroid = (0.48730828408792093, -1.4241799255278202) +description = Lake Wales city, FL +station = ('kbow', 0.0028803809726177026) +zone = ('flz052', 0.0015936303945381014) + +[fips1239056] +centroid = (0.46464073316118198, -1.3980463601461308) +description = Lakewood Gardens CDP, FL +station = ('kpbi', 0.0010718166688039633) +zone = ('flz068', 0.0006903491893590054) + +[fips1239062] +centroid = (0.48064646705281372, -1.4030206183274847) +description = Lakewood Park CDP, FL +station = ('kfpr', 0.00068349405429346695) +zone = ('flz059', 0.0032071622951145486) + +[fips1239075] +centroid = (0.46460175995898495, -1.3972882240256497) +description = Lake Worth city, FL +station = ('kpbi', 0.0012834946162715759) +zone = ('flz068', 0.0013687933848146362) + +[fips1239100] +centroid = (0.53022533698251584, -1.4628193858652876) +description = Lamont CDP, FL +station = ('k40j', 0.0064714901092226395) +zone = ('flz018', 0.0017522894164180454) + +[fips1239200] +centroid = (0.49232783356336413, -1.4389513974790267) +description = Land O' Lakes CDP, FL +station = ('kvdf', 0.0037297116414983099) +zone = ('flz049', 0.0019525896884035182) + +[fips1239375] +centroid = (0.46396715824295981, -1.397229964935218) +description = Lantana town, FL +station = ('kpbi', 0.0018786036838809473) +zone = ('flz068', 0.0015738855030958156) + +[fips1239425] +centroid = (0.48705837039232786, -1.4446346084025408) +description = Largo city, FL +station = ('kpie', 0.0013710530341069294) +zone = ('flz050', 0.00085473581995139164) + +[fips1239475] +centroid = (0.45726446559677086, -1.3979161760372247) +description = Lauderdale-by-the-Sea town, FL +station = ('kpmp', 0.00094899598123970733) +zone = ('flz172', 0.00099841199299919659) + +[fips1239525] +centroid = (0.4567013176603224, -1.3997647764210597) +description = Lauderdale Lakes city, FL +station = ('kfxe', 0.0006354665157679957) +zone = ('flz172', 0.0011979662575820756) + +[fips1239550] +centroid = (0.45659672007825036, -1.400167633319005) +description = Lauderhill city, FL +station = ('kfxe', 0.00092813984586126528) +zone = ('flz072', 0.00095970130686705681) + +[fips1239600] +centroid = (0.47376335972184608, -1.4392297425881346) +description = Laurel CDP, FL +station = ('kvnc', 0.001455554978845278) +zone = ('flz060', 0.0022611192143536536) + +[fips1239650] +centroid = (0.54036407678039855, -1.5089736056433114) +description = Laurel Hill city, FL +station = ('k0j4', 0.0026808851499957038) +zone = ('flz005', 0.0027374962171344218) + +[fips1239700] +centroid = (0.52442695178166265, -1.4324287704517662) +description = Lawtey city, FL +station = ('kvqq', 0.0041986396384554947) +zone = ('flz031', 0.0022407105115518412) + +[fips1239725] +centroid = (0.43328027318891238, -1.41042891268367) +description = Layton city, FL +station = ('kmth', 0.0041031246318053074) +zone = ('flz077', 0.0031024108983191395) + +[fips1239750] +centroid = (0.45651411364475342, -1.3987977942022847) +description = Lazy Lake village, FL +station = ('kfxe', 0.00096821203356980284) +zone = ('flz172', 0.00031304908315880783) + +[fips1239775] +centroid = (0.48554534446377395, -1.4431187026807213) +description = Lealman CDP, FL +station = ('kspg', 0.0012180032016301512) +zone = ('flz050', 0.0019808305205739605) + +[fips1239825] +centroid = (0.50304659863156209, -1.439910665342508) +description = Lecanto CDP, FL +station = ('kcgc', 0.0013445674772667824) +zone = ('flz042', 0.00071102052379122809) + +[fips1239850] +centroid = (0.53083826170923121, -1.4539431125285425) +description = Lee town, FL +station = ('kvld', 0.0064577253200005565) +zone = ('flz019', 0.0025384909178559258) + +[fips1239875] +centroid = (0.50305324833601217, -1.4291773442283482) +description = Leesburg city, FL +station = ('klee', 0.0010630666403249188) +zone = ('flz043', 0.0036296569540242843) + +[fips1239925] +centroid = (0.46447915057903233, -1.4248666427753103) +description = Lehigh Acres CDP, FL +station = ('krsw', 0.0024289036434472057) +zone = ('flz065', 0.0029017254135989003) + +[fips1239950] +centroid = (0.44494994599347443, -1.4039080833455388) +description = Leisure City CDP, FL +station = ('khst', 0.0008803683702186451) +zone = ('flz173', 0.0025103673143606529) + +[fips1239987] +centroid = (0.45561769508763661, -1.4264925740531755) +description = Lely CDP, FL +station = ('kapf', 0.00095533613293847532) +zone = ('flz069', 0.0025767716596928926) + +[fips1240037] +centroid = (0.45551712921613668, -1.4260858250709982) +description = Lely Resort CDP, FL +station = ('kapf', 0.0012692360886569633) +zone = ('flz069', 0.0022303938646137901) + +[fips1240100] +centroid = (0.48160564764983221, -1.4250715967893717) +description = Lemon Grove CDP, FL +station = ('kbow', 0.0065432872654724149) +zone = ('flz056', 0.0030335108642594254) + +[fips1240450] +centroid = (0.45863060461547694, -1.3978152960064594) +description = Lighthouse Point city, FL +station = ('kpmp', 0.00064857500342899123) +zone = ('flz172', 0.0023072215547841474) + +[fips1240525] +centroid = (0.47764860226312567, -1.4295081888413563) +description = Limestone CDP, FL +station = ('kpgd', 0.008001975177748772) +zone = ('flz056', 0.0026371622339098413) + +[fips1240562] +centroid = (0.47023938288243683, -1.3987191322128973) +description = Limestone Creek CDP, FL +station = ('ksua', 0.0043534320698903652) +zone = ('flz168', 0.0042483887438008617) + +[fips1240750] +centroid = (0.50409526225933032, -1.4272308308734767) +description = Lisbon CDP, FL +station = ('klee', 0.0013194223547398447) +zone = ('flz044', 0.0023619399236115904) + +[fips1240875] +centroid = (0.52875840519950712, -1.4483459114305668) +description = Live Oak city, FL +station = ('kvld', 0.0095129839334936028) +zone = ('flz021', 0.0017493196180146612) + +[fips1240950] +centroid = (0.5320368491197458, -1.4665331149009735) +description = Lloyd CDP, FL +station = ('ktlh', 0.0050860228254264337) +zone = ('flz018', 0.002148074973242146) + +[fips1240985] +centroid = (0.46502247157517818, -1.4295923835244726) +description = Lochmoor Waterway Estates CDP, FL +station = ('kfmy', 0.0012504763462511616) +zone = ('flz065', 0.0017945554743082194) + +[fips1241025] +centroid = (0.49959184155028696, -1.421346959445861) +description = Lockhart CDP, FL +station = ('korl', 0.0020552073568546403) +zone = ('flz045', 0.0025858206308335364) + +[fips1241150] +centroid = (0.47814335074618847, -1.4424008313060832) +description = Longboat Key town, FL +station = ('ksrq', 0.0014505675332606724) +zone = ('flz055', 0.0055153952999060802) + +[fips1241250] +centroid = (0.50093960225196943, -1.4197955188204705) +description = Longwood city, FL +station = ('ksfb', 0.0020715079102309399) +zone = ('flz046', 0.0017364451566513521) + +[fips1241400] +centroid = (0.49284134433588589, -1.4236260801962852) +description = Loughman CDP, FL +station = ('kism', 0.002202415517612231) +zone = ('flz052', 0.0054240541363161539) + +[fips1241562] +centroid = (0.52609693516984846, -1.4966585973478246) +description = Lower Grand Lagoon CDP, FL +station = ('kpam', 0.0028781666275354348) +zone = ('flz112', 0.0018912909272556136) + +[fips1241577] +centroid = (0.46619262757217778, -1.4010747158378514) +description = Loxahatchee Groves town, FL +station = ('kpbi', 0.0027809763620809513) +zone = ('flz068', 0.0025416468480349745) + +[fips1241775] +centroid = (0.4911313230946594, -1.4389265788970633) +description = Lutz CDP, FL +station = ('kvdf', 0.0026751619248633679) +zone = ('flz049', 0.0030702618475830028) + +[fips1241825] +centroid = (0.52772953360545649, -1.4946849441230841) +description = Lynn Haven city, FL +station = ('kpam', 0.0030844162453719385) +zone = ('flz112', 0.00047836933498204186) + +[fips1241950] +centroid = (0.52851603132628266, -1.4333452602952808) +description = Macclenny city, FL +station = ('kvqq', 0.0038975094814142426) +zone = ('flz023', 0.0025591383287864775) + +[fips1242090] +centroid = (0.46358658919956242, -1.4296501888292985) +description = McGregor CDP, FL +station = ('kfmy', 0.0008159707424985177) +zone = ('flz065', 0.0014681231264466938) + +[fips1242150] +centroid = (0.51398820733865469, -1.4350226089729099) +description = McIntosh town, FL +station = ('kgnv', 0.0044765747125080739) +zone = ('flz036', 0.0044511756825784243) + +[fips1242400] +centroid = (0.48512403943563503, -1.4449854195821916) +description = Madeira Beach city, FL +station = ('kpie', 0.0026938974534185408) +zone = ('flz050', 0.0025539862939300607) + +[fips1242425] +centroid = (0.53176998827711586, -1.4558738830135611) +description = Madison city, FL +station = ('kvld', 0.0059369707023858957) +zone = ('flz019', 0.00092151341245176111) + +[fips1242575] +centroid = (0.49957871667431192, -1.4204167687677181) +description = Maitland city, FL +station = ('korl', 0.0015023850751287482) +zone = ('flz045', 0.0021128722017300454) + +[fips1242625] +centroid = (0.48846629259332663, -1.4064290718237045) +description = Malabar town, FL +station = ('kmlb', 0.0022290078252579417) +zone = ('flz047', 0.0023192360015152186) + +[fips1242650] +centroid = (0.54032892584926329, -1.4863588509264452) +description = Malone town, FL +station = ('kmai', 0.0022087757927001304) +zone = ('alz069', 0.0039933531964696754) + +[fips1242700] +centroid = (0.46367533919202636, -1.3969647796086702) +description = Manalapan town, FL +station = ('kpbi', 0.0022403194454220935) +zone = ('flz068', 0.0019204503405312748) + +[fips1242750] +centroid = (0.46991709038276358, -1.4373285554339374) +description = Manasota Key CDP, FL +station = ('kvnc', 0.0027495041311223038) +zone = ('flz060', 0.004499679863335551) + +[fips1242787] +centroid = (0.51512443413499553, -1.4471955823738696) +description = Manatee Road CDP, FL +station = ('kcty', 0.0034525969856298373) +zone = ('flz035', 0.0040997615302103742) + +[fips1242850] +centroid = (0.48851914116307704, -1.4365513777713168) +description = Mango CDP, FL +station = ('kvdf', 0.00070481598932561754) +zone = ('flz051', 0.0048809444795001071) + +[fips1242900] +centroid = (0.4670258826636649, -1.3975914749831837) +description = Mangonia Park town, FL +station = ('kpbi', 0.0013656982730198906) +zone = ('flz168', 0.00093311843132535654) + +[fips1243000] +centroid = (0.43166289402438185, -1.4141364283472191) +description = Marathon city, FL +station = ('kmth', 0.00041166322377267264) +zone = ('flz077', 0.00063255412946553943) + +[fips1243083] +centroid = (0.45260745591355195, -1.4259507889467715) +description = Marco Island city, FL +station = ('kapf', 0.0039334852830820045) +zone = ('flz069', 0.0021211179567726243) + +[fips1243125] +centroid = (0.45811466783529486, -1.3999489959236076) +description = Margate city, FL +station = ('kfxe', 0.00094491257029287164) +zone = ('flz172', 0.0021664889321265438) + +[fips1243175] +centroid = (0.53721965669342042, -1.4877650976113621) +description = Marianna city, FL +station = ('kmai', 0.0012821323444138948) +zone = ('flz011', 0.0048187363502168231) + +[fips1243250] +centroid = (0.51774656444331424, -1.4174480509765381) +description = Marineland town, FL +station = ('kxfl', 0.003398521170914123) +zone = ('flz038', 0.0038779412483504129) + +[fips1243375] +centroid = (0.53078349327730356, -1.5124849812055212) +description = Mary Esther city, FL +station = ('kqhy', 3.2514613719652207e-05) +zone = ('flz006', 0.0027707201058826082) + +[fips1243400] +centroid = (0.49640375332542402, -1.4392113468178187) +description = Masaryktown CDP, FL +station = ('kbkv', 0.00046356791750672041) +zone = ('flz048', 0.0020307250698833315) + +[fips1243425] +centroid = (0.49947797626988683, -1.4294538741950342) +description = Mascotte city, FL +station = ('klee', 0.0037038135506867833) +zone = ('flz144', 0.0017472048329312119) + +[fips1243475] +centroid = (0.46482943815990757, -1.4324414066355504) +description = Matlacha CDP, FL +station = ('kfmy', 0.0033310744532963578) +zone = ('flz065', 0.0040456567920826407) + +[fips1243484] +centroid = (0.46476915448754375, -1.4321948439721213) +description = Matlacha Isles-Matlacha Shores CDP, FL +station = ('kfmy', 0.0031025777874373124) +zone = ('flz065', 0.0038172771055828883) + +[fips1243575] +centroid = (0.52448809066536006, -1.4517060716663837) +description = Mayo town, FL +station = ('k40j', 0.0061497717433622399) +zone = ('flz029', 0.0011443824025570255) + +[fips1243785] +centroid = (0.49473434589589144, -1.4416915294980728) +description = Meadow Oaks CDP, FL +station = ('kbkv', 0.0031506943666855993) +zone = ('flz049', 0.003314605801764335) + +[fips1243800] +centroid = (0.4952410324310379, -1.4197591985187366) +description = Meadow Woods CDP, FL +station = ('kmco', 0.00074989319904876365) +zone = ('flz045', 0.002460268387335061) + +[fips1243900] +centroid = (0.45141399977103824, -1.4023572186788018) +description = Medley town, FL +station = ('kopf', 0.0012084427186188978) +zone = ('flz074', 0.00108900303747422) + +[fips1243925] +centroid = (0.48796838506431767, -1.430842929386819) +description = Medulla CDP, FL +station = ('klal', 0.00069661464496945374) +zone = ('flz052', 0.0043733352543547785) + +[fips1243975] +centroid = (0.49072246226408722, -1.4075332194683938) +description = Melbourne city, FL +station = ('kmlb', 0.00029248572469910421) +zone = ('flz047', 0.0016220743037097727) + +[fips1244000] +centroid = (0.48985927477592839, -1.4060303164495014) +description = Melbourne Beach town, FL +station = ('kmlb', 0.0015072968760038447) +zone = ('flz047', 0.0024400826811815713) + +[fips1244075] +centroid = (0.49022661422359559, -1.4078708708654846) +description = Melbourne Village town, FL +station = ('kmlb', 0.00031343422013852158) +zone = ('flz047', 0.0010607536506896838) + +[fips1244175] +centroid = (0.48068130382468349, -1.4409145438216702) +description = Memphis CDP, FL +station = ('ksrq', 0.0024644604521149326) +zone = ('flz051', 0.0041053603801714149) + +[fips1244275] +centroid = (0.49408942928398702, -1.4080610593940743) +description = Merritt Island CDP, FL +station = ('kcof', 0.0017658632900315373) +zone = ('flz047', 0.0046105957429583184) + +[fips1244300] +centroid = (0.52264856599363563, -1.4907002701743184) +description = Mexico Beach city, FL +station = ('ktdr', 0.0024025815837884095) +zone = ('flz114', 0.0030638124872731432) + +[fips1245000] +centroid = (0.44986145958821916, -1.3999044202145114) +description = Miami city, FL +station = ('kmia', 0.0017041465591390241) +zone = ('flz074', 0.0016414953249347432) + +[fips1245025] +centroid = (0.45056137152485398, -1.3987019930796425) +description = Miami Beach city, FL +station = ('kopf', 0.002697164830659285) +zone = ('flz074', 0.0025317775915747877) + +[fips1245060] +centroid = (0.45289334084502864, -1.4005147094940564) +description = Miami Gardens city, FL +station = ('khwo', 0.00090663910739786121) +zone = ('flz074', 0.0024318554318135113) + +[fips1245100] +centroid = (0.45233418971256723, -1.4018579672462688) +description = Miami Lakes town, FL +station = ('kopf', 0.00065396005424931509) +zone = ('flz074', 0.0017286871076224457) + +[fips1245175] +centroid = (0.45146450959959095, -1.3993760392367629) +description = Miami Shores village, FL +station = ('kopf', 0.001746283690089077) +zone = ('flz074', 0.0020953745335260403) + +[fips1245200] +centroid = (0.45063928302266298, -1.4013246469867369) +description = Miami Springs city, FL +station = ('kmia', 0.00076108295439524887) +zone = ('flz074', 0.00016996362329627887) + +[fips1245225] +centroid = (0.5149829751991214, -1.436065617733902) +description = Micanopy town, FL +station = ('kgnv', 0.0033800863101010178) +zone = ('flz036', 0.003165923935092684) + +[fips1245275] +centroid = (0.48620326377860579, -1.4051784212416032) +description = Micco CDP, FL +station = ('kvrb', 0.0039007697808484303) +zone = ('flz054', 0.0032972669381443479) + +[fips1245350] +centroid = (0.52447770595631071, -1.4294457584140123) +description = Middleburg CDP, FL +station = ('kvqq', 0.002959827859912896) +zone = ('flz032', 0.0013440225727033763) + +[fips1245425] +centroid = (0.53233561458110212, -1.4741438150905126) +description = Midway city, FL +station = ('k2j9', 0.002179791347833891) +zone = ('flz016', 0.0026612283877640677) + +[fips1245465] +centroid = (0.53069327720826798, -1.518533035755872) +description = Midway CDP, FL +station = ('kpns', 0.002992696356849317) +zone = ('flz004', 0.0030100719615702705) + +[fips1245475] +centroid = (0.50255589931236389, -1.4176982439248116) +description = Midway CDP, FL +station = ('ksfb', 0.0003857431769918729) +zone = ('flz046', 0.0013553401083114497) + +[fips1245750] +centroid = (0.53458410480315388, -1.5193544575150308) +description = Milton city, FL +station = ('kndz', 0.0013448962725196355) +zone = ('flz004', 0.0012623170785689393) + +[fips1245775] +centroid = (0.50075800074329946, -1.4109939630290032) +description = Mims CDP, FL +station = ('ktts', 0.0025615873202441217) +zone = ('flz147', 0.0025117901573870546) + +[fips1245900] +centroid = (0.49919556454362163, -1.4264798156963434) +description = Minneola city, FL +station = ('klee', 0.0039714402390635152) +zone = ('flz144', 0.0013282844913505138) + +[fips1245975] +centroid = (0.45338335948581859, -1.4021247233691438) +description = Miramar city, FL +station = ('kopf', 0.001575666913127635) +zone = ('flz072', 0.0027903354101989075) + +[fips1246000] +centroid = (0.53016948644645201, -1.5066880097213622) +description = Miramar Beach CDP, FL +station = ('kdts', 0.0021444778720942207) +zone = ('flz108', 0.0024573281716983395) + +[fips1246225] +centroid = (0.5358640943699815, -1.5240338248659677) +description = Molino CDP, FL +station = ('kpns', 0.0043502959341186285) +zone = ('flz002', 0.0033647049661233528) + +[fips1246500] +centroid = (0.53306195080261209, -1.4638470706354467) +description = Monticello city, FL +station = ('ktvi', 0.006275372139364634) +zone = ('flz018', 0.0014885442577535055) + +[fips1246520] +centroid = (0.46500505318924329, -1.4153527308496414) +description = Montura CDP, FL +station = ('krsw', 0.010675204439742512) +zone = ('flz066', 0.0020649385448525382) + +[fips1246525] +centroid = (0.49906972630455282, -1.4256253897610296) +description = Montverde town, FL +station = ('klee', 0.0043878296946688192) +zone = ('flz144', 0.0019737263711738858) + +[fips1246540] +centroid = (0.49389140422705569, -1.4417392817064074) +description = Moon Lake CDP, FL +station = ('kbkv', 0.0037926013242443931) +zone = ('flz049', 0.0033002638050836598) + +[fips1246550] +centroid = (0.46834238451844423, -1.4154222822203333) +description = Moore Haven city, FL +station = ('kobe', 0.0084719601220587318) +zone = ('flz063', 0.0031232948162862565) + +[fips1246725] +centroid = (0.51105207484460968, -1.4388499763961935) +description = Morriston CDP, FL +station = ('kocf', 0.0039453889072542606) +zone = ('flz039', 0.0045973717901610905) + +[fips1247000] +centroid = (0.54090457034315609, -1.5206070454126019) +description = Mount Carmel CDP, FL +station = ('knse', 0.0047868550908771101) +zone = ('alz059', 0.0024151376883681844) + +[fips1247050] +centroid = (0.50288780857621562, -1.4247718015837567) +description = Mount Dora city, FL +station = ('klee', 0.0028029863958684794) +zone = ('flz044', 0.0020592551862755387) + +[fips1247125] +centroid = (0.50272245608288169, -1.4230453044343916) +description = Mount Plymouth CDP, FL +station = ('ksfb', 0.0043661248736199827) +zone = ('flz044', 0.0026611388653011345) + +[fips1247175] +centroid = (0.53336359605723427, -1.5207178040069336) +description = Mulat CDP, FL +station = ('kpns', 0.0015467190564391639) +zone = ('flz004', 0.0020991697161677376) + +[fips1247200] +centroid = (0.48708868676143496, -1.4305555085656005) +description = Mulberry city, FL +station = ('klal', 0.0015370844784141234) +zone = ('flz052', 0.004178228690259138) + +[fips1247300] +centroid = (0.53803638351689131, -1.5165015248664284) +description = Munson CDP, FL +station = ('knse', 0.0025182468819676149) +zone = ('flz003', 0.0022374140778130503) + +[fips1247550] +centroid = (0.53083381111963857, -1.523721725089126) +description = Myrtle Grove CDP, FL +station = ('knpa', 0.0010654516382723859) +zone = ('flz002', 0.0016789836809149492) + +[fips1247625] +centroid = (0.45640255219896597, -1.4275958141266536) +description = Naples city, FL +station = ('kapf', 0.00044726326366865661) +zone = ('flz069', 0.0038404359575840521) + +[fips1247650] +centroid = (0.45535099132463941, -1.4263670325200797) +description = Naples Manor CDP, FL +station = ('kapf', 0.0012402452189110029) +zone = ('flz069', 0.002329306042431581) + +[fips1247675] +centroid = (0.45837444264116167, -1.4278768295895172) +description = Naples Park CDP, FL +station = ('kapf', 0.0020911882300685665) +zone = ('flz069', 0.0054323146110794533) + +[fips1247700] +centroid = (0.44534079502616608, -1.4036274169485257) +description = Naranja CDP, FL +station = ('khst', 0.00083524907223011071) +zone = ('flz173', 0.0020769377240315531) + +[fips1247787] +centroid = (0.53251346363188046, -1.4278341388360134) +description = Nassau Village-Ratliff CDP, FL +station = ('kjax', 0.0016478891898286259) +zone = ('flz024', 0.0017231027299575597) + +[fips1248050] +centroid = (0.53083745885777534, -1.5164988719659653) +description = Navarre CDP, FL +station = ('kqhy', 0.0034476300901753261) +zone = ('flz004', 0.0032582065759774416) + +[fips1248055] +centroid = (0.53019879052459296, -1.5165778306613253) +description = Navarre Beach CDP, FL +station = ('kqhy', 0.0035590593202074416) +zone = ('flz004', 0.0038039124084185932) + +[fips1248100] +centroid = (0.52909900620303374, -1.420583133552018) +description = Neptune Beach city, FL +station = ('knrb', 0.00152190940924766) +zone = ('flz025', 0.0042353019480127745) + +[fips1248200] +centroid = (0.51717865175800781, -1.4414666787305384) +description = Newberry city, FL +station = ('kgnv', 0.0047985288215777579) +zone = ('flz036', 0.0036023731803685901) + +[fips1248500] +centroid = (0.49300182736060677, -1.443692741471702) +description = New Port Richey city, FL +station = ('kbkv', 0.0056204247478840565) +zone = ('flz049', 0.0051321674977955357) + +[fips1248525] +centroid = (0.49329038264583897, -1.4432659561097119) +description = New Port Richey East CDP, FL +station = ('kbkv', 0.0051489660974763261) +zone = ('flz049', 0.0047076511028992605) + +[fips1248625] +centroid = (0.50665791174674113, -1.4129288524910566) +description = New Smyrna Beach city, FL +station = ('kevb', 0.00046791936220576242) +zone = ('flz141', 0.0014898777644578001) + +[fips1248750] +centroid = (0.53282191567058534, -1.509428979498449) +description = Niceville city, FL +station = ('kvps', 0.0009287621857517191) +zone = ('flz006', 0.0018946182332333025) + +[fips1248825] +centroid = (0.49995087323071469, -1.4357346509478461) +description = Nobleton CDP, FL +station = ('kinf', 0.002899947795509283) +zone = ('flz048', 0.0029253068503867245) + +[fips1248850] +centroid = (0.52514381086533435, -1.4208627527514801) +description = Nocatee CDP, FL +station = ('ksgj', 0.0024914161555564312) +zone = ('flz033', 0.0033089337431798801) + +[fips1248875] +centroid = (0.47337202199696393, -1.4387739498539767) +description = Nokomis CDP, FL +station = ('kvnc', 0.00094337491691948378) +zone = ('flz060', 0.0020396734360105945) + +[fips1248900] +centroid = (0.54065839165216234, -1.4943622676509754) +description = Noma town, FL +station = ('k1j0', 0.0025341461532186024) +zone = ('flz009', 0.0034730325356737363) + +[fips1249225] +centroid = (0.45115078666654501, -1.3988847988654964) +description = North Bay Village city, FL +station = ('kopf', 0.0022721025822029376) +zone = ('flz074', 0.0024217345732219873) + +[fips1249237] +centroid = (0.49876959948637989, -1.4369621584640664) +description = North Brooksville CDP, FL +station = ('kbkv', 0.0026488696322486361) +zone = ('flz048', 0.0014306736325299162) + +[fips1249260] +centroid = (0.49051792712904602, -1.4403872798546424) +description = Northdale CDP, FL +station = ('ktpa', 0.0024088563089471418) +zone = ('flz049', 0.0041469985372894133) + +[fips1249275] +centroid = (0.50698844220048378, -1.418891822240373) +description = North DeLand CDP, FL +station = ('kded', 0.00038049528886587106) +zone = ('flz041', 0.001282983647500099) + +[fips1249350] +centroid = (0.46643500144540223, -1.4285348536241043) +description = North Fort Myers CDP, FL +station = ('kfmy', 0.002483613100506067) +zone = ('flz065', 0.0025903385231749675) + +[fips1249406] +centroid = (0.44079445667081613, -1.4019334352831252) +description = North Key Largo CDP, FL +station = ('khst', 0.0040791761687173234) +zone = ('flz076', 0.0024118035787637064) + +[fips1249425] +centroid = (0.45748990977625092, -1.4001191480723845) +description = North Lauderdale city, FL +station = ('kfxe', 0.00062612669521353156) +zone = ('flz072', 0.001699126586594976) + +[fips1249450] +centroid = (0.45205884656977258, -1.3992035483467882) +description = North Miami city, FL +station = ('khwo', 0.0020045619184778673) +zone = ('flz074', 0.0025202507032608726) + +[fips1249475] +centroid = (0.45256380522895956, -1.3991463190006153) +description = North Miami Beach city, FL +station = ('khwo', 0.0016237358649366564) +zone = ('flz074', 0.0028743185537605936) + +[fips1249600] +centroid = (0.46810250646605017, -1.3972565812063109) +description = North Palm Beach village, FL +station = ('kpbi', 0.0024830464456309606) +zone = ('flz168', 0.0020407778979095138) + +[fips1249675] +centroid = (0.47225408625118398, -1.4346265064991699) +description = North Port city, FL +station = ('kvnc', 0.0034558451854676694) +zone = ('flz060', 0.0028754390816258571) + +[fips1249725] +centroid = (0.48552529063066852, -1.4455154237161447) +description = North Redington Beach town, FL +station = ('kpie', 0.0027396420602848596) +zone = ('flz050', 0.0024598908351582934) + +[fips1249750] +centroid = (0.47510811845721518, -1.4010825349129004) +description = North River Shores CDP, FL +station = ('ksua', 0.0011031780627630784) +zone = ('flz064', 0.0029717300691579824) + +[fips1249787] +centroid = (0.47769912954497085, -1.4402140035665045) +description = North Sarasota CDP, FL +station = ('ksrq', 0.00071738641058728594) +zone = ('flz055', 0.0038437327962118307) + +[fips1249905] +centroid = (0.49849144636348958, -1.4408161770650274) +description = North Weeki Wachee CDP, FL +station = ('kbkv', 0.0022840819432442317) +zone = ('flz048', 0.0020259123255014573) + +[fips1250450] +centroid = (0.50415957764226638, -1.4106105665522175) +description = Oak Hill city, FL +station = ('kevb', 0.0035290797165619882) +zone = ('flz141', 0.0043681789067128484) + +[fips1250525] +centroid = (0.49836276323773998, -1.4247712256251035) +description = Oakland town, FL +station = ('kmco', 0.0051901724180944478) +zone = ('flz144', 0.002652765927033006) + +[fips1250575] +centroid = (0.45688993539258543, -1.3989278212315581) +description = Oakland Park city, FL +station = ('kfxe', 0.00061646388846168794) +zone = ('flz172', 0.00063763723247618363) + +[fips1250630] +centroid = (0.52658028665289569, -1.4282987105763092) +description = Oakleaf Plantation CDP, FL +station = ('kvqq', 0.001039898018016538) +zone = ('flz032', 0.0032939102796994474) + +[fips1250638] +centroid = (0.49694651581620919, -1.4209742967439749) +description = Oak Ridge CDP, FL +station = ('kmco', 0.0016022970638168532) +zone = ('flz045', 0.0015895305290149619) + +[fips1250750] +centroid = (0.5092925560657966, -1.4337668096695151) +description = Ocala city, FL +station = ('kocf', 0.0010615076171883817) +zone = ('flz040', 0.0014960470889201008) + +[fips1250900] +centroid = (0.47544857983440175, -1.4002031682225753) +description = Ocean Breeze Park town, FL +station = ('ksua', 0.0010414729832959612) +zone = ('flz064', 0.0037336928338288482) + +[fips1250925] +centroid = (0.5312757284862436, -1.511581598784689) +description = Ocean City CDP, FL +station = ('kqhy', 0.00094967858415988282) +zone = ('flz006', 0.0021500288468156714) + +[fips1250950] +centroid = (0.46300111850198089, -1.3970910890866368) +description = Ocean Ridge town, FL +station = ('kbct', 0.0027728146079798854) +zone = ('flz068', 0.0022559711961697764) + +[fips1251075] +centroid = (0.49879024673143102, -1.4230387769029889) +description = Ocoee city, FL +station = ('korl', 0.0031179249273188851) +zone = ('flz045', 0.0034111694818919056) + +[fips1251100] +centroid = (0.49182139137431291, -1.4408021446178416) +description = Odessa CDP, FL +station = ('ktpa', 0.0037219546398742243) +zone = ('flz049', 0.0033544495587832521) + +[fips1251125] +centroid = (0.45301914417751238, -1.3991758848781441) +description = Ojus CDP, FL +station = ('khwo', 0.0012941388950911336) +zone = ('flz074', 0.0031801429124637126) + +[fips1251150] +centroid = (0.50171095051488845, -1.4293582301520249) +description = Okahumpka CDP, FL +station = ('klee', 0.0017333830571810086) +zone = ('flz043', 0.0029190162922692032) + +[fips1251200] +centroid = (0.47545575313762745, -1.4107376090684705) +description = Okeechobee city, FL +station = ('kobe', 0.0005476609765098715) +zone = ('flz058', 0.0034452604693048193) + +[fips1251350] +centroid = (0.48953659830381963, -1.4428855965058247) +description = Oldsmar city, FL +station = ('kpie', 0.0023063741683524196) +zone = ('flz050', 0.0022364388657868202) + +[fips1251400] +centroid = (0.46618358676665245, -1.4258037449572909) +description = Olga CDP, FL +station = ('krsw', 0.003298968118939673) +zone = ('flz065', 0.0030494755426354525) + +[fips1251475] +centroid = (0.44903649481067903, -1.4021800677597245) +description = Olympia Heights CDP, FL +station = ('kmia', 0.0010292851554413588) +zone = ('flz074', 0.0017061724254017582) + +[fips1251505] +centroid = (0.47966819255377841, -1.4295944430129899) +description = Ona CDP, FL +station = ('kbow', 0.0083820021899819065) +zone = ('flz056', 0.0015549485092210076) + +[fips1251650] +centroid = (0.4520402413599463, -1.4007178134591109) +description = Opa-locka city, FL +station = ('kopf', 0.00044140192731469108) +zone = ('flz074', 0.0015783808498051931) + +[fips1251825] +centroid = (0.50485493426955341, -1.4187271678787399) +description = Orange City city, FL +station = ('kded', 0.0024609293762700326) +zone = ('flz041', 0.0031305106911188952) + +[fips1252125] +centroid = (0.52658072298520875, -1.4260155406620205) +description = Orange Park town, FL +station = ('knip', 0.0012319941277696732) +zone = ('flz025', 0.0028193131005839673) + +[fips1252162] +centroid = (0.45889826830956271, -1.4237190189789539) +description = Orangetree CDP, FL +station = ('kapf', 0.0039254886794321342) +zone = ('flz069', 0.0048715249926668111) + +[fips1252175] +centroid = (0.48471181011960657, -1.4036716435917711) +description = Orchid town, FL +station = ('kvrb', 0.0021316767577395862) +zone = ('flz054', 0.0032619576716421011) + +[fips1252250] +centroid = (0.53009951619673956, -1.5201902607872257) +description = Oriole Beach CDP, FL +station = ('kpns', 0.0023019141092716776) +zone = ('flz004', 0.0039455667836922849) + +[fips1253000] +centroid = (0.49595077057136144, -1.41893086525574) +description = Orlando city, FL +station = ('kmco', 0.00053104299594540526) +zone = ('flz045', 0.0017686421060164863) + +[fips1253100] +centroid = (0.49818774162035001, -1.4217964689947118) +description = Orlovista CDP, FL +station = ('korl', 0.0019897143259658533) +zone = ('flz045', 0.0021937702553283004) + +[fips1253150] +centroid = (0.51128767684033638, -1.4153741983994408) +description = Ormond Beach city, FL +station = ('komn', 0.00030550392378531061) +zone = ('flz038', 0.0044191787114789818) + +[fips1253200] +centroid = (0.51213691914777182, -1.4149140772487376) +description = Ormond-by-the-Sea CDP, FL +station = ('komn', 0.0010053949406160598) +zone = ('flz038', 0.0042620030324133067) + +[fips1253425] +centroid = (0.47456190021451106, -1.43947260515355) +description = Osprey CDP, FL +station = ('kvnc', 0.0022724485618214451) +zone = ('flz060', 0.0023939734751679776) + +[fips1253500] +centroid = (0.51180603962817872, -1.4446655007303011) +description = Otter Creek town, FL +station = ('kcty', 0.0073304406495641869) +zone = ('flz039', 0.00053071656851936427) + +[fips1253575] +centroid = (0.50024485648992068, -1.4169837584889227) +description = Oviedo city, FL +station = ('ksfb', 0.0023269579734998989) +zone = ('flz046', 0.0012195359131074318) + +[fips1253725] +centroid = (0.53436286686717116, -1.5213115824717545) +description = Pace CDP, FL +station = ('kpns', 0.0023450578734375096) +zone = ('flz004', 0.0026673580306733969) + +[fips1253775] +centroid = (0.46387758794574746, -1.4287518853165897) +description = Page Park CDP, FL +station = ('kfmy', 0.00012067322377104731) +zone = ('flz065', 0.00063456577305680793) + +[fips1253800] +centroid = (0.46810536880602338, -1.4078050544993919) +description = Pahokee city, FL +station = ('kobe', 0.0083249695654139099) +zone = ('flz067', 0.0042523036039102558) + +[fips1253850] +centroid = (0.50579083217435028, -1.4230755509903286) +description = Paisley CDP, FL +station = ('kded', 0.0041437545948720409) +zone = ('flz044', 0.0016638336784350154) + +[fips1253875] +centroid = (0.51746865566651912, -1.4252735313838276) +description = Palatka city, FL +station = ('k42j', 0.0061396111700453629) +zone = ('flz037', 0.0014285527718317333) + +[fips1254000] +centroid = (0.48844128202514558, -1.407828319738321) +description = Palm Bay city, FL +station = ('kmlb', 0.0020056826990780966) +zone = ('flz047', 0.0013621475821252794) + +[fips1254025] +centroid = (0.46575540514126063, -1.3969128560634232) +description = Palm Beach town, FL +station = ('kpbi', 0.00098011629057105512) +zone = ('flz168', 0.0007571907692561304) + +[fips1254075] +centroid = (0.46859975076994331, -1.3991802656545667) +description = Palm Beach Gardens city, FL +station = ('kpbi', 0.0030713366022656263) +zone = ('flz168', 0.0028441746255355627) + +[fips1254150] +centroid = (0.46735295736548865, -1.3968633934324219) +description = Palm Beach Shores town, FL +station = ('kpbi', 0.0019336681184628046) +zone = ('flz168', 0.0014493036008291561) + +[fips1254175] +centroid = (0.47432621095232175, -1.4012417438472673) +description = Palm City CDP, FL +station = ('ksua', 0.0009991265715511414) +zone = ('flz064', 0.0022844067015675954) + +[fips1254200] +centroid = (0.51558003488293613, -1.4180985526420491) +description = Palm Coast city, FL +station = ('kxfl', 0.0013804466231869413) +zone = ('flz038', 0.0016973822739189384) + +[fips1254250] +centroid = (0.48039817651342498, -1.4412048967960318) +description = Palmetto city, FL +station = ('ksrq', 0.0022119919766035588) +zone = ('flz051', 0.0044879529199170435) + +[fips1254275] +centroid = (0.44718307731810869, -1.4018293612998287) +description = Palmetto Bay village, FL +station = ('ktmb', 0.0018670449146004362) +zone = ('flz173', 0.00071078240648865824) + +[fips1254300] +centroid = (0.44720016409148572, -1.4025573032242504) +description = Palmetto Estates CDP, FL +station = ('ktmb', 0.001239611492527246) +zone = ('flz173', 0.0010532564296248806) + +[fips1254350] +centroid = (0.49017123492642983, -1.4443916585706633) +description = Palm Harbor CDP, FL +station = ('kpie', 0.0031485292148749375) +zone = ('flz050', 0.0027851471561400713) + +[fips1254357] +centroid = (0.46581872568652305, -1.4293269887584141) +description = Palmona Park CDP, FL +station = ('kfmy', 0.0019019148932739604) +zone = ('flz065', 0.002251275512620954) + +[fips1254387] +centroid = (0.48737430989352387, -1.4377917309108317) +description = Palm River-Clair Mel CDP, FL +station = ('ktpf', 0.0010871994091439143) +zone = ('flz051', 0.0035943088041298656) + +[fips1254425] +centroid = (0.49204547419697647, -1.4077756631547884) +description = Palm Shores town, FL +station = ('kcof', 0.0011651242406126186) +zone = ('flz047', 0.0026718704798599233) + +[fips1254450] +centroid = (0.46494230860263408, -1.3979316047478123) +description = Palm Springs village, FL +station = ('kpbi', 0.00077279335716173587) +zone = ('flz068', 0.00084675916426727056) + +[fips1254500] +centroid = (0.45263808644192444, -1.4020409301117556) +description = Palm Springs North CDP, FL +station = ('kopf', 0.00095809315475081517) +zone = ('flz074', 0.0020599815561758781) + +[fips1254525] +centroid = (0.52707061945295097, -1.4206066605903349) +description = Palm Valley CDP, FL +station = ('kcrg', 0.00297993140605871) +zone = ('flz025', 0.0047925079157348531) + +[fips1254625] +centroid = (0.52403097148097022, -1.4729429063920927) +description = Panacea CDP, FL +station = ('ktlh', 0.0065817702400488001) +zone = ('flz127', 0.0018798024412764055) + +[fips1254700] +centroid = (0.52651560475081682, -1.4952673604944748) +description = Panama City city, FL +station = ('kpam', 0.0022105425720974183) +zone = ('flz112', 0.00095164634753538914) + +[fips1254725] +centroid = (0.52766013931439715, -1.4988633496188213) +description = Panama City Beach city, FL +station = ('kecp', 0.0024257756576992226) +zone = ('flz112', 0.0032204266434452612) + +[fips1254912] +centroid = (0.49954936023629343, -1.4232275691681773) +description = Paradise Heights CDP, FL +station = ('korl', 0.0034783226977892286) +zone = ('flz045', 0.0038722745091368245) + +[fips1255075] +centroid = (0.52585829630122327, -1.4940173207776113) +description = Parker city, FL +station = ('kpam', 0.0011275650280344769) +zone = ('flz112', 0.0018752987141609321) + +[fips1255125] +centroid = (0.459284841285587, -1.4005785536380946) +description = Parkland city, FL +station = ('kfxe', 0.0022438723653471176) +zone = ('flz072', 0.0033255317721595725) + +[fips1255305] +centroid = (0.49357935681009169, -1.4350861389576826) +description = Pasadena Hills CDP, FL +station = ('kbkv', 0.004755763781406349) +zone = ('flz049', 0.002614162224356857) + +[fips1255375] +centroid = (0.49275578829595312, -1.4069130690785752) +description = Patrick AFB CDP, FL +station = ('kcof', 0.00015680126735154415) +zone = ('flz047', 0.0036248882296555747) + +[fips1255475] +centroid = (0.54060229677000315, -1.5063360815309901) +description = Paxton town, FL +station = ('k0j4', 0.001036405795811247) +zone = ('flz007', 0.0025816285094425158) + +[fips1255532] +centroid = (0.53406577692189661, -1.5201871017412798) +description = Pea Ridge CDP, FL +station = ('kndz', 0.0021542234667015722) +zone = ('flz004', 0.0016567131130315813) + +[fips1255540] +centroid = (0.49146232478730012, -1.4371382621855924) +description = Pebble Creek CDP, FL +station = ('kvdf', 0.0025282445213377731) +zone = ('flz049', 0.0027350722307655853) + +[fips1255650] +centroid = (0.45788515703865762, -1.4278576135144527) +description = Pelican Bay CDP, FL +station = ('kapf', 0.0016309993274296038) +zone = ('flz069', 0.0050403055162068994) + +[fips1255750] +centroid = (0.45362400548308351, -1.399356980241331) +description = Pembroke Park town, FL +station = ('khwo', 0.00089454253282664046) +zone = ('flz072', 0.0027731908800488246) + +[fips1255775] +centroid = (0.45415629599835677, -1.4022044325560823) +description = Pembroke Pines city, FL +station = ('khwo', 0.0017197570484353652) +zone = ('flz072', 0.0021263313978088379) + +[fips1255875] +centroid = (0.52325456176322049, -1.4278666368666857) +description = Penney Farms town, FL +station = ('kvqq', 0.0042771840884052491) +zone = ('flz032', 0.00071477454810469113) + +[fips1255925] +centroid = (0.53130032017540418, -1.5217515799761823) +description = Pensacola city, FL +station = ('kpns', 0.00074091634350903523) +zone = ('flz002', 0.0022514056605973773) + +[fips1256150] +centroid = (0.52550509402049717, -1.4587805368965399) +description = Perry city, FL +station = ('k40j', 0.00074305171303396878) +zone = ('flz028', 0.00025404817561549691) + +[fips1256425] +centroid = (0.51029568405338033, -1.4217577750451951) +description = Pierson town, FL +station = ('kded', 0.004019788430248669) +zone = ('flz041', 0.0029361291873549033) + +[fips1256475] +centroid = (0.46528390444383438, -1.3981353195781052) +description = Pine Air CDP, FL +station = ('kpbi', 0.00044281002270013981) +zone = ('flz068', 0.00088380322505000506) + +[fips1256500] +centroid = (0.49678680073635922, -1.4202539295485068) +description = Pine Castle CDP, FL +station = ('kmco', 0.0010375861829628906) +zone = ('flz045', 0.0011827560948520135) + +[fips1256625] +centroid = (0.44794178939724316, -1.401584159993216) +description = Pinecrest village, FL +station = ('ktmb', 0.002038512248863064) +zone = ('flz173', 0.0014643517949722469) + +[fips1256825] +centroid = (0.49884655105310033, -1.4219116432720511) +description = Pine Hills CDP, FL +station = ('korl', 0.0021603259716259085) +zone = ('flz045', 0.0025218357844271262) + +[fips1256840] +centroid = (0.49868317078182117, -1.442598001151681) +description = Pine Island CDP, FL +station = ('kbkv', 0.0036427798870802934) +zone = ('flz048', 0.0036014844086060577) + +[fips1256850] +centroid = (0.46467192219491515, -1.4333895043918188) +description = Pine Island Center CDP, FL +station = ('kfmy', 0.0041259732745011863) +zone = ('flz065', 0.0048458869007673329) + +[fips1256865] +centroid = (0.50509434108304951, -1.4212318375283994) +description = Pine Lakes CDP, FL +station = ('kded', 0.0031554075429925405) +zone = ('flz041', 0.0028521922918226129) + +[fips1256875] +centroid = (0.46532362813760975, -1.4337548367108464) +description = Pineland CDP, FL +station = ('kfmy', 0.0045960677638440459) +zone = ('flz065', 0.0053064382937059043) + +[fips1256955] +centroid = (0.53911744045557652, -1.5213944681579317) +description = Pine Level CDP, FL +station = ('knse', 0.0035557544658891597) +zone = ('flz003', 0.0021115217089217242) + +[fips1256975] +centroid = (0.4862292342778754, -1.4435306352907769) +description = Pinellas Park city, FL +station = ('kpie', 0.0010790771577496145) +zone = ('flz050', 0.0012298136365031843) + +[fips1257025] +centroid = (0.46376298962706153, -1.4290342795895623) +description = Pine Manor CDP, FL +station = ('kfmy', 0.00026607399469029343) +zone = ('flz065', 0.00089511703273174176) + +[fips1257058] +centroid = (0.50497614738610441, -1.4394808780142043) +description = Pine Ridge CDP, FL +station = ('kcgc', 0.0018066927294527386) +zone = ('flz042', 0.0014428344712538353) + +[fips1257066] +centroid = (0.45780433084099775, -1.4275570503639667) +description = Pine Ridge CDP, FL +station = ('kapf', 0.0014601573810139421) +zone = ('flz069', 0.0048062999048240308) + +[fips1257250] +centroid = (0.45150540266396522, -1.4000517958165501) +description = Pinewood CDP, FL +station = ('kopf', 0.0011700681712612754) +zone = ('flz074', 0.0015780842244231257) + +[fips1257320] +centroid = (0.46647334632906851, -1.4175044076580852) +description = Pioneer CDP, FL +station = ('krsw', 0.0092172974830517021) +zone = ('flz066', 0.003213936325269195) + +[fips1257380] +centroid = (0.50610034886389899, -1.4249789721659685) +description = Pittman CDP, FL +station = ('klee', 0.0040998199363935775) +zone = ('flz044', 0.0011769625194223089) + +[fips1257425] +centroid = (0.45597793104524825, -1.4008329004699875) +description = Plantation city, FL +station = ('kfxe', 0.0017880365337832468) +zone = ('flz072', 0.00013770191530805345) + +[fips1257450] +centroid = (0.47250188809838217, -1.4376540767927268) +description = Plantation CDP, FL +station = ('kvnc', 0.00075470307932450455) +zone = ('flz060', 0.0020402142924967393) + +[fips1257492] +centroid = (0.45112956346284067, -1.4202978769390719) +description = Plantation Island CDP, FL +station = ('kapf', 0.0080725765678275174) +zone = ('flz069', 0.0045765326197780712) + +[fips1257518] +centroid = (0.46606904080784406, -1.3985810766690645) +description = Plantation Mobile Home Park CDP, FL +station = ('kpbi', 0.00062364844746457817) +zone = ('flz168', 0.00081420219263339999) + +[fips1257550] +centroid = (0.48894280238570614, -1.4332693035662341) +description = Plant City city, FL +station = ('kpcm', 0.00052202478397217716) +zone = ('flz051', 0.0065750579112222951) + +[fips1257900] +centroid = (0.49076440252601261, -1.4220809053029095) +description = Poinciana CDP, FL +station = ('kism', 0.0030535497487063881) +zone = ('flz052', 0.0044858908449046135) + +[fips1257908] +centroid = (0.53539400738924936, -1.5191339177107488) +description = Point Baker CDP, FL +station = ('kndz', 0.0005480836188131485) +zone = ('flz004', 0.0018386624822309893) + +[fips1257950] +centroid = (0.49170773553342306, -1.4283208588045173) +description = Polk City town, FL +station = ('kgif', 0.002283275142205506) +zone = ('flz052', 0.0044551243502785713) + +[fips1258025] +centroid = (0.51486525274107431, -1.4240832342872598) +description = Pomona Park town, FL +station = ('kxfl', 0.0058562701067001229) +zone = ('flz037', 0.0029701581251394731) + +[fips1258050] +centroid = (0.45802017570959186, -1.3985148065173663) +description = Pompano Beach city, FL +station = ('kpmp', 0.00023200657450580698) +zone = ('flz172', 0.0016205014520726665) + +[fips1258175] +centroid = (0.53620544586508656, -1.4998465983062248) +description = Ponce de Leon town, FL +station = ('k1j0', 0.0053824697565461807) +zone = ('flz009', 0.0031184919192995364) + +[fips1258200] +centroid = (0.50766556013708752, -1.4124449599559414) +description = Ponce Inlet town, FL +station = ('kevb', 0.00063840605972831398) +zone = ('flz141', 0.0021171835168058832) + +[fips1258350] +centroid = (0.47105506250835644, -1.4331535707835343) +description = Port Charlotte CDP, FL +station = ('kpgd', 0.0021773144143434038) +zone = ('flz062', 0.0037180611635986341) + +[fips1258420] +centroid = (0.46686285145823614, -1.420454066453833) +description = Port LaBelle CDP, FL +station = ('krsw', 0.0070331792101751226) +zone = ('flz063', 0.0043338679223716078) + +[fips1258575] +centroid = (0.50812622233985894, -1.4139476360820309) +description = Port Orange city, FL +station = ('kdab', 0.0012348994154624416) +zone = ('flz141', 0.0014986919658230746) + +[fips1258600] +centroid = (0.49354172751141867, -1.4438808006986044) +description = Port Richey city, FL +station = ('kbkv', 0.005396418110780626) +zone = ('flz049', 0.0052092203529616379) + +[fips1258675] +centroid = (0.52050544129852672, -1.4889620444123797) +description = Port St. Joe city, FL +station = ('kaaf', 0.0047275213780926008) +zone = ('flz114', 0.00059283817274091244) + +[fips1258700] +centroid = (0.49701828375505119, -1.4100071189633407) +description = Port St. John CDP, FL +station = ('ktix', 0.00071770903528600195) +zone = ('flz147', 0.00142719527832919) + +[fips1258715] +centroid = (0.4761424180252396, -1.4029613120395021) +description = Port St. Lucie city, FL +station = ('ksua', 0.0030617167282996033) +zone = ('flz059', 0.002274109922153913) + +[fips1258727] +centroid = (0.4737729939393171, -1.3995569949736097) +description = Port Salerno CDP, FL +station = ('ksua', 0.00081141966608346905) +zone = ('flz064', 0.0032918834341375291) + +[fips1258962] +centroid = (0.52709231389555333, -1.4957072358258547) +description = Pretty Bayou CDP, FL +station = ('kpam', 0.0028999388755992952) +zone = ('flz112', 0.00061121535056531237) + +[fips1258975] +centroid = (0.4457730258154225, -1.4032134248499526) +description = Princeton CDP, FL +station = ('khst', 0.0010319022990831924) +zone = ('flz173', 0.0015352513443266484) + +[fips1259050] +centroid = (0.48669637165217172, -1.4375274531554947) +description = Progress Village CDP, FL +station = ('ktpf', 0.0014098944060230618) +zone = ('flz051', 0.0029318501914429181) + +[fips1259200] +centroid = (0.46885425468146913, -1.4317357525656766) +description = Punta Gorda city, FL +station = ('kpgd', 0.0010582488618924946) +zone = ('flz062', 0.0022929538054520813) + +[fips1259250] +centroid = (0.46250797572182994, -1.4312067607226897) +description = Punta Rassa CDP, FL +station = ('kfmy', 0.0025690522148647185) +zone = ('flz065', 0.0031469424044836634) + +[fips1259311] +centroid = (0.49478422740591343, -1.4408621839441103) +description = Quail Ridge CDP, FL +station = ('kbkv', 0.0026131150427797529) +zone = ('flz049', 0.0026151033667436) + +[fips1259325] +centroid = (0.53370023516335896, -1.4762692770535912) +description = Quincy city, FL +station = ('k2j9', 0.0006310424418674806) +zone = ('flz016', 0.00044646905394120438) + +[fips1259400] +centroid = (0.52471348248496263, -1.4353781674481263) +description = Raiford town, FL +station = ('k42j', 0.0061942437908602092) +zone = ('flz031', 0.0022642698281015844) + +[fips1259475] +centroid = (0.5139622542926775, -1.4393394888915003) +description = Raleigh CDP, FL +station = ('kgnv', 0.0052181331598436997) +zone = ('flz036', 0.004302797799303603) + +[fips1259675] +centroid = (0.51258152432142479, -1.4346154062051271) +description = Reddick town, FL +station = ('kocf', 0.003539326038660918) +zone = ('flz040', 0.0034970947919877259) + +[fips1259725] +centroid = (0.48536711144056033, -1.445344468715912) +description = Redington Beach town, FL +station = ('kpie', 0.0027293230294264236) +zone = ('flz050', 0.00249771930116118) + +[fips1259750] +centroid = (0.48573652783003746, -1.4457031513304894) +description = Redington Shores town, FL +station = ('kpie', 0.0027501875099447981) +zone = ('flz050', 0.0024136856746554383) + +[fips1260225] +centroid = (0.44738530861853726, -1.4027425175644719) +description = Richmond Heights CDP, FL +station = ('ktmb', 0.0010198166757588577) +zone = ('flz173', 0.0013018397022593923) + +[fips1260230] +centroid = (0.44696618525196335, -1.4037621389134873) +description = Richmond West CDP, FL +station = ('ktmb', 0.00071313236835473582) +zone = ('flz173', 0.0019187854096549984) + +[fips1260275] +centroid = (0.48686825167690817, -1.4452143893267608) +description = Ridgecrest CDP, FL +station = ('kpie', 0.0019078213379630413) +zone = ('flz050', 0.0013992797405758932) + +[fips1260325] +centroid = (0.49729607035879864, -1.4344783629522606) +description = Ridge Manor CDP, FL +station = ('kbkv', 0.0040217980952618505) +zone = ('flz048', 0.0036981518216587582) + +[fips1260475] +centroid = (0.47625525356138099, -1.4401258469859863) +description = Ridge Wood Heights CDP, FL +station = ('ksrq', 0.0020463991876529361) +zone = ('flz060', 0.003504643153228861) + +[fips1260550] +centroid = (0.47505315803906989, -1.400441615104983) +description = Rio CDP, FL +station = ('ksua', 0.00070337837409069251) +zone = ('flz064', 0.003301664794245417) + +[fips1260562] +centroid = (0.49777807793832191, -1.4182974503636061) +description = Rio Pinar CDP, FL +station = ('korl', 0.001201918198735299) +zone = ('flz045', 0.00094612042073774136) + +[fips1260785] +centroid = (0.47687659077509098, -1.4020507388621517) +description = River Park CDP, FL +station = ('ksua', 0.0030040924577407193) +zone = ('flz059', 0.0025340204924125913) + +[fips1260835] +centroid = (0.49335674006399977, -1.4420743674694978) +description = River Ridge CDP, FL +station = ('kbkv', 0.0043951212002221757) +zone = ('flz049', 0.0036640173534254442) + +[fips1260950] +centroid = (0.48564067434751795, -1.4364861024572924) +description = Riverview CDP, FL +station = ('ktpf', 0.0027321811295577818) +zone = ('flz051', 0.00222969122435384) + +[fips1260975] +centroid = (0.46744479659072857, -1.3975226741040701) +description = Riviera Beach city, FL +station = ('kpbi', 0.0017863239432350706) +zone = ('flz168', 0.0013557944470689192) + +[fips1261500] +centroid = (0.49427169401777277, -1.4090531918073705) +description = Rockledge city, FL +station = ('kcof', 0.0025372995144010246) +zone = ('flz147', 0.0042339397112907328) + +[fips1261615] +centroid = (0.53549609169719858, -1.5183605448658974) +description = Roeville CDP, FL +station = ('kndz', 0.00044931155421517005) +zone = ('flz004', 0.0017993505423387892) + +[fips1261807] +centroid = (0.45624339562447658, -1.3994203531464711) +description = Roosevelt Gardens CDP, FL +station = ('kfxe', 0.001033583055871323) +zone = ('flz172', 0.00086474839735367192) + +[fips1261875] +centroid = (0.48585075962958046, -1.4047724052977117) +description = Roseland CDP, FL +station = ('kvrb', 0.0034457100237359449) +zone = ('flz054', 0.0032042138930026267) + +[fips1261937] +centroid = (0.46918541345374254, -1.4360875565225995) +description = Rotonda CDP, FL +station = ('kvnc', 0.0039180048570267674) +zone = ('flz060', 0.005242828185735517) + +[fips1262100] +centroid = (0.46608335250771044, -1.4001775816957411) +description = Royal Palm Beach village, FL +station = ('kpbi', 0.0019729509672955239) +zone = ('flz068', 0.0018824810807058249) + +[fips1262118] +centroid = (0.46567801724222724, -1.3984696548496172) +description = Royal Palm Estates CDP, FL +station = ('kpbi', 0.00041324153167344123) +zone = ('flz168', 0.00082731800758833627) + +[fips1262275] +centroid = (0.48359106439373084, -1.4385480169823059) +description = Ruskin CDP, FL +station = ('kmcf', 0.0027549322213842715) +zone = ('flz051', 0.00062448314331632203) + +[fips1262425] +centroid = (0.48880869128598292, -1.4433517739490325) +description = Safety Harbor city, FL +station = ('kpie', 0.0015870522856765675) +zone = ('flz050', 0.0014167869073382483) + +[fips1262500] +centroid = (0.52178237653916337, -1.419154895718526) +description = St. Augustine city, FL +station = ('ksgj', 0.0011829329242958317) +zone = ('flz033', 0.0020041596852478413) + +[fips1262525] +centroid = (0.52083352829131657, -1.418446012789536) +description = St. Augustine Beach city, FL +station = ('ksgj', 0.0023011146765286221) +zone = ('flz033', 0.0028172408465025334) + +[fips1262550] +centroid = (0.52019918837467927, -1.4191616675960239) +description = St. Augustine Shores CDP, FL +station = ('ksgj', 0.0027195250613328056) +zone = ('flz033', 0.0026077135415695837) + +[fips1262562] +centroid = (0.52089761678144986, -1.4192407135578464) +description = St. Augustine South CDP, FL +station = ('ksgj', 0.0020192765366847686) +zone = ('flz033', 0.0021621542479429916) + +[fips1262625] +centroid = (0.49271664056083087, -1.4186948618342854) +description = St. Cloud city, FL +station = ('kism', 0.00255442056614849) +zone = ('flz053', 0.0035984125430120043) + +[fips1262675] +centroid = (0.46325317895255397, -1.4329498210466565) +description = St. James City CDP, FL +station = ('kfmy', 0.0037420811105688657) +zone = ('flz065', 0.0044344033290027599) + +[fips1262775] +centroid = (0.49457970972416476, -1.4356780499202038) +description = St. Leo town, FL +station = ('kbkv', 0.0037091660775449772) +zone = ('flz049', 0.0020997502145009557) + +[fips1262800] +centroid = (0.47991302734124813, -1.4022282563003721) +description = St. Lucie Village town, FL +station = ('kfpr', 0.00064573997746028284) +zone = ('flz059', 0.0030425456394996696) + +[fips1262825] +centroid = (0.52649713916733065, -1.4697123892131136) +description = St. Marks city, FL +station = ('ktlh', 0.0046076507637621217) +zone = ('flz127', 0.0018478378590363546) + +[fips1262885] +centroid = (0.48408000093038461, -1.4442692411769285) +description = St. Pete Beach city, FL +station = ('kspg', 0.001888980554865365) +zone = ('flz050', 0.0033897179973548129) + +[fips1263000] +centroid = (0.48453788805964532, -1.4424108669492821) +description = St. Petersburg city, FL +station = ('kspg', 0.00018471744502050115) +zone = ('flz050', 0.0031416631191849716) + +[fips1263225] +centroid = (0.47955444944642589, -1.4406449428121144) +description = Samoset CDP, FL +station = ('ksrq', 0.0013387912628103479) +zone = ('flz055', 0.0037960319665265329) + +[fips1263362] +centroid = (0.50704949381771858, -1.4148096192930057) +description = Samsula-Spruce Creek CDP, FL +station = ('kevb', 0.0017449126369283655) +zone = ('flz141', 0.00033738394769720025) + +[fips1263375] +centroid = (0.49462046316219882, -1.4360366278150261) +description = San Antonio city, FL +station = ('kbkv', 0.0034377708474557195) +zone = ('flz049', 0.001805813368362512) + +[fips1263425] +centroid = (0.46210548534302748, -1.4280085495881651) +description = San Carlos Park CDP, FL +station = ('krsw', 0.0012813452801093744) +zone = ('flz065', 0.0017771073377921124) + +[fips1263435] +centroid = (0.46364830404191293, -1.3973295883289218) +description = San Castle CDP, FL +station = ('kpbi', 0.0021511713638758976) +zone = ('flz068', 0.0016632026070294418) + +[fips1263650] +centroid = (0.50247025600596851, -1.4185272404129237) +description = Sanford city, FL +station = ('ksfb', 0.00040611975927639564) +zone = ('flz046', 0.0014006179855596342) + +[fips1263700] +centroid = (0.46165770367013587, -1.4330143807756879) +description = Sanibel city, FL +station = ('kfmy', 0.0043890963944606624) +zone = ('flz065', 0.0049742463887767728) + +[fips1264175] +centroid = (0.47714257895309492, -1.4406954002807897) +description = Sarasota city, FL +station = ('ksrq', 0.0010796324583192281) +zone = ('flz060', 0.0044311393034881493) + +[fips1264325] +centroid = (0.47665008194476716, -1.4395138472837743) +description = Sarasota Springs CDP, FL +station = ('ksrq', 0.0019257931094134955) +zone = ('flz060', 0.0033129661114099742) + +[fips1264400] +centroid = (0.49181166989037933, -1.4067249400385027) +description = Satellite Beach city, FL +station = ('kcof', 0.00095299997525462191) +zone = ('flz047', 0.0029147207126142931) + +[fips1264525] +centroid = (0.52693652580652028, -1.4201942741946736) +description = Sawgrass CDP, FL +station = ('kcrg', 0.0033110944499154553) +zone = ('flz025', 0.0051698785705321043) + +[fips1264547] +centroid = (0.4662674498372108, -1.3982584176502482) +description = Schall Circle CDP, FL +station = ('kpbi', 0.00059854638911631896) +zone = ('flz168', 0.00055294958607583398) + +[fips1264725] +centroid = (0.45727399509448674, -1.3979808579393036) +description = Sea Ranch Lakes village, FL +station = ('kpmp', 0.000920475967157708) +zone = ('flz172', 0.00097915477207920535) + +[fips1264825] +centroid = (0.4849895967233539, -1.4046829222669619) +description = Sebastian city, FL +station = ('kvrb', 0.002611639484104397) +zone = ('flz054', 0.0026444012325653348) + +[fips1264875] +centroid = (0.47946704335748597, -1.4215981472318078) +description = Sebring city, FL +station = ('kbow', 0.0098000734022380392) +zone = ('flz057', 0.0028168054577910225) + +[fips1264925] +centroid = (0.48864150619693436, -1.4359380690721659) +description = Seffner CDP, FL +station = ('kvdf', 0.001148840843976001) +zone = ('flz051', 0.0051538448246308257) + +[fips1264975] +centroid = (0.48594448381041255, -1.4448622866034633) +description = Seminole city, FL +station = ('kpie', 0.0020270692017629361) +zone = ('flz050', 0.0017809705633954421) + +[fips1265100] +centroid = (0.46397597215568237, -1.3980104412701249) +description = Seminole Manor CDP, FL +station = ('kpbi', 0.0017360505913074438) +zone = ('flz068', 0.00098476400340315315) + +[fips1265200] +centroid = (0.51210307721357562, -1.4224852631840115) +description = Seville CDP, FL +station = ('kxfl', 0.004980755754159993) +zone = ('flz038', 0.0035338506606711123) + +[fips1265225] +centroid = (0.47467738865111553, -1.3997341284393945) +description = Sewall's Point town, FL +station = ('ksua', 0.00043711974933663926) +zone = ('flz064', 0.0035513076773134502) + +[fips1265385] +centroid = (0.49572642594931005, -1.4406830084431004) +description = Shady Hills CDP, FL +station = ('kbkv', 0.0018335415286703264) +zone = ('flz049', 0.0028741034691078054) + +[fips1265425] +centroid = (0.53133499986764121, -1.5111588800398559) +description = Shalimar town, FL +station = ('kvps', 0.0012190002590950623) +zone = ('flz006', 0.0021123168493570005) + +[fips1265525] +centroid = (0.49643436640050403, -1.4095534555308697) +description = Sharpes CDP, FL +station = ('ktix', 0.0014057171090192412) +zone = ('flz147', 0.002028579225339007) + +[fips1266000] +centroid = (0.47603528971575221, -1.4407575514554531) +description = Siesta Key CDP, FL +station = ('ksrq', 0.0021849502452095395) +zone = ('flz060', 0.0038937596467943803) + +[fips1266062] +centroid = (0.50354321461692453, -1.4276839707071718) +description = Silver Lake CDP, FL +station = ('klee', 0.00064798751111039504) +zone = ('flz044', 0.0029547725804518281) + +[fips1266175] +centroid = (0.5078920166075338, -1.4312969244318476) +description = Silver Springs Shores CDP, FL +station = ('kvvg', 0.0024093566469057352) +zone = ('flz040', 0.0020666950763418681) + +[fips1266425] +centroid = (0.49672868127226782, -1.4205246475687836) +description = Sky Lake CDP, FL +station = ('kmco', 0.0011585565163210151) +zone = ('flz045', 0.0013903007000684378) + +[fips1266725] +centroid = (0.5359723396901902, -1.4822131005410129) +description = Sneads town, FL +station = ('kmai', 0.0044466028902813634) +zone = ('flz011', 0.0012409649826006606) + +[fips1266875] +centroid = (0.47015187207374187, -1.4317041621062156) +description = Solana CDP, FL +station = ('kpgd', 0.000601513887659163) +zone = ('flz062', 0.0022022970806734638) + +[fips1266925] +centroid = (0.52464225559818867, -1.474549324888921) +description = Sopchoppy city, FL +station = ('ktlh', 0.0062793428868721246) +zone = ('flz027', 0.0025425833030507466) + +[fips1266975] +centroid = (0.50281049049035231, -1.423554678776586) +description = Sorrento CDP, FL +station = ('klee', 0.0038712516443799162) +zone = ('flz044', 0.0023649561660769604) + +[fips1267163] +centroid = (0.50026124513159687, -1.4226972683282513) +description = South Apopka CDP, FL +station = ('korl', 0.0034044202479123799) +zone = ('flz045', 0.0039016898597640072) + +[fips1267175] +centroid = (0.46564117334171762, -1.408941961974141) +description = South Bay city, FL +station = ('kpbi', 0.0097692854574634776) +zone = ('flz067', 0.0035323415395532641) + +[fips1267192] +centroid = (0.48152091191464791, -1.4022659030523374) +description = South Beach CDP, FL +station = ('kvrb', 0.0015475249301558128) +zone = ('flz059', 0.0042966285926309107) + +[fips1267258] +centroid = (0.47927795438632492, -1.4413751536645638) +description = South Bradenton CDP, FL +station = ('ksrq', 0.0011865823642249534) +zone = ('flz055', 0.004447066876857495) + +[fips1267266] +centroid = (0.49766492824291508, -1.438812975416051) +description = South Brooksville CDP, FL +station = ('kbkv', 0.00084838289336599713) +zone = ('flz048', 0.00072405663508765406) + +[fips1267270] +centroid = (0.49530782618151176, -1.420525834392675) +description = Southchase CDP, FL +station = ('kmco', 0.0010916077384696119) +zone = ('flz045', 0.0025787487149832012) + +[fips1267325] +centroid = (0.50902812123082697, -1.4138385704570737) +description = South Daytona city, FL +station = ('kdab', 0.00090998307661756879) +zone = ('flz141', 0.0023795755666589516) + +[fips1267355] +centroid = (0.47448955631701589, -1.4285892904434738) +description = Southeast Arcadia CDP, FL +station = ('kpgd', 0.0052364509592230319) +zone = ('flz061', 0.00066505164977709102) + +[fips1267425] +centroid = (0.47668915986671934, -1.4400389295892368) +description = Southgate CDP, FL +station = ('ksrq', 0.0016628070341949059) +zone = ('flz060', 0.0036924335168945677) + +[fips1267450] +centroid = (0.47620434230710035, -1.4398380770989174) +description = South Gate Ridge CDP, FL +station = ('ksrq', 0.0021789848007515186) +zone = ('flz060', 0.0032622525503213993) + +[fips1267462] +centroid = (0.48708756975071377, -1.4436529479647566) +description = South Highpoint CDP, FL +station = ('kpie', 0.00051421799792028793) +zone = ('flz050', 0.00036793198740820554) + +[fips1267550] +centroid = (0.44869884341358818, -1.4014139554845617) +description = South Miami city, FL +station = ('kmia', 0.0013485117456377084) +zone = ('flz074', 0.0019367672505056688) + +[fips1267575] +centroid = (0.4465988981641737, -1.4029966898634401) +description = South Miami Heights CDP, FL +station = ('ktmb', 0.0013122667400953657) +zone = ('flz173', 0.0011722078642000401) + +[fips1267650] +centroid = (0.46411374844683478, -1.3969226997204045) +description = South Palm Beach town, FL +station = ('kpbi', 0.0018699877255364851) +zone = ('flz068', 0.0017764034967241442) + +[fips1267675] +centroid = (0.48438016265514261, -1.4440727171031538) +description = South Pasadena city, FL +station = ('kspg', 0.0016536250948052599) +zone = ('flz050', 0.0030723469720337279) + +[fips1267725] +centroid = (0.49212022664883937, -1.406962339723359) +description = South Patrick Shores CDP, FL +station = ('kcof', 0.00067472059896883402) +zone = ('flz047', 0.0030484078951931908) + +[fips1267887] +centroid = (0.47623539171449331, -1.4404749128363852) +description = South Sarasota CDP, FL +station = ('ksrq', 0.0020019746517980198) +zone = ('flz060', 0.0037613082063469839) + +[fips1268100] +centroid = (0.47198644001039064, -1.4384357050449401) +description = South Venice CDP, FL +station = ('kvnc', 0.00047767254375297814) +zone = ('flz060', 0.0028164298239287465) + +[fips1268135] +centroid = (0.4546606786988906, -1.4027882102842895) +description = Southwest Ranches town, FL +station = ('khwo', 0.0023710931219834536) +zone = ('flz072', 0.0020876675384674816) + +[fips1268275] +centroid = (0.52658838498062499, -1.4942126231209094) +description = Springfield city, FL +station = ('kpam', 0.0018769083824735017) +zone = ('flz112', 0.0011869334371767662) + +[fips1268350] +centroid = (0.49705593050701674, -1.4404142626448784) +description = Spring Hill CDP, FL +station = ('kbkv', 0.0012415716538669451) +zone = ('flz048', 0.002105158255419176) + +[fips1268365] +centroid = (0.53664999867886209, -1.5170499422239898) +description = Springhill CDP, FL +station = ('kndz', 0.0016657290545597256) +zone = ('flz003', 0.0024893489466391886) + +[fips1268375] +centroid = (0.49739035304499135, -1.4363022320205947) +description = Spring Lake CDP, FL +station = ('kbkv', 0.0024554536739292139) +zone = ('flz048', 0.0021646987800709324) + +[fips1268435] +centroid = (0.52048931445623825, -1.4438140593080082) +description = Spring Ridge CDP, FL +station = ('kcty', 0.0065743844516133127) +zone = ('flz035', 0.0020325308062279063) + +[fips1268487] +centroid = (0.46596477483832988, -1.3984263357775826) +description = Stacey Street CDP, FL +station = ('kpbi', 0.00045065830827538774) +zone = ('flz168', 0.0006880724547138463) + +[fips1268525] +centroid = (0.52268146545003569, -1.4331421563302262) +description = Starke city, FL +station = ('k42j', 0.0035755345409085796) +zone = ('flz031', 0.00084677825561913411) + +[fips1268625] +centroid = (0.51801480409605327, -1.4553704078842382) +description = Steinhatchee CDP, FL +station = ('kcty', 0.0044224434717912951) +zone = ('flz034', 0.0039924829180954394) + +[fips1268800] +centroid = (0.4287225029269619, -1.4266285177486135) +description = Stock Island CDP, FL +station = ('keyw', 0.0004915435174214787) +zone = ('flz078', 0.0033378676898404413) + +[fips1268875] +centroid = (0.47466185522077281, -1.4005075012842456) +description = Stuart city, FL +station = ('ksua', 0.00042533632813066837) +zone = ('flz064', 0.0029922192861156945) + +[fips1268950] +centroid = (0.50153144340132072, -1.4397838322657655) +description = Sugarmill Woods CDP, FL +station = ('kcgc', 0.0026205164940377302) +zone = ('flz042', 0.0020479666627582003) + +[fips1269025] +centroid = (0.52399983480711465, -1.4832247457353465) +description = Sumatra CDP, FL +station = ('kaaf', 0.0050816169213962984) +zone = ('flz015', 0.0022216646628825344) + +[fips1269250] +centroid = (0.48370780946739678, -1.4373792223421227) +description = Sun City Center CDP, FL +station = ('kmcf', 0.0032496589796405782) +zone = ('flz051', 0.0004457467109331431) + +[fips1269275] +centroid = (0.4661977239335936, -1.4288820519722034) +description = Suncoast Estates CDP, FL +station = ('kfmy', 0.0022313057953213837) +zone = ('flz065', 0.0024339902913700731) + +[fips1269555] +centroid = (0.45271959331799261, -1.3984202620317858) +description = Sunny Isles Beach city, FL +station = ('khwo', 0.002025388042379003) +zone = ('flz074', 0.0034779541880890739) + +[fips1269700] +centroid = (0.45675400915044007, -1.4007932640426748) +description = Sunrise city, FL +station = ('kfxe', 0.0013028454384633929) +zone = ('flz072', 0.00079366435732937087) + +[fips1269812] +centroid = (0.44865575123435647, -1.4024134357340086) +description = Sunset CDP, FL +station = ('kmia', 0.0014604772147792896) +zone = ('flz074', 0.002137463746006468) + +[fips1270075] +centroid = (0.45167187216802041, -1.3984161081481659) +description = Surfside town, FL +station = ('khwo', 0.002729116704558659) +zone = ('flz074', 0.0029744657540026163) + +[fips1270345] +centroid = (0.44968823565995875, -1.4027859588095544) +description = Sweetwater city, FL +station = ('kmia', 0.0009506211008836567) +zone = ('flz074', 0.0014854356679739711) + +[fips1270525] +centroid = (0.49616633618727524, -1.4201214939648654) +description = Taft CDP, FL +station = ('kmco', 0.00055436492338857752) +zone = ('flz045', 0.0016496019037499157) + +[fips1270600] +centroid = (0.53154192610375772, -1.4704995676123482) +description = Tallahassee city, FL +station = ('ktlh', 0.0017429171753263505) +zone = ('flz017', 0.00037199697980884651) + +[fips1270675] +centroid = (0.45734489036870274, -1.4007193144422678) +description = Tamarac city, FL +station = ('kfxe', 0.0011291527483359893) +zone = ('flz072', 0.0013862678828818588) + +[fips1270700] +centroid = (0.44953260465055844, -1.4032893815789995) +description = Tamiami CDP, FL +station = ('kmia', 0.0014299682218195206) +zone = ('flz074', 0.0019414843842367401) + +[fips1271000] +centroid = (0.48817009276597068, -1.439541859818269) +description = Tampa city, FL +station = ('ktpa', 0.00082931672616961519) +zone = ('flz050', 0.0038051035272619453) + +[fips1271075] +centroid = (0.496652253304323, -1.4215102175440923) +description = Tangelo Park CDP, FL +station = ('kmco', 0.0018685893236293181) +zone = ('flz045', 0.0021436877382063901) + +[fips1271100] +centroid = (0.50194690157646549, -1.4248715471505082) +description = Tangerine CDP, FL +station = ('klee', 0.0028935487828889335) +zone = ('flz044', 0.003002712532765444) + +[fips1271150] +centroid = (0.49129367362167992, -1.4447725766799109) +description = Tarpon Springs city, FL +station = ('kpie', 0.0043173486567167282) +zone = ('flz050', 0.0039532926873075275) + +[fips1271225] +centroid = (0.50259520412711878, -1.4266237180931705) +description = Tavares city, FL +station = ('klee', 0.0012308332061822039) +zone = ('flz044', 0.0028853830177038415) + +[fips1271250] +centroid = (0.4368863852229205, -1.4048962364081405) +description = Tavernier CDP, FL +station = ('khst', 0.0080750835851532594) +zone = ('flz076', 0.0023389116416860064) + +[fips1271300] +centroid = (0.4749782136009893, -1.4100578731379885) +description = Taylor Creek CDP, FL +station = ('kobe', 0.0013074460474987882) +zone = ('flz058', 0.004114232638556232) + +[fips1271400] +centroid = (0.48948106192702118, -1.4377649924666911) +description = Temple Terrace city, FL +station = ('kvdf', 0.00074208194857246256) +zone = ('flz049', 0.00461399466340362) + +[fips1271525] +centroid = (0.47062579877882843, -1.3982398298937146) +description = Tequesta village, FL +station = ('ksua', 0.0041385124713091978) +zone = ('flz168', 0.0045588166197519427) + +[fips1271564] +centroid = (0.46723034798553609, -1.4011703598808607) +description = The Acreage CDP, FL +station = ('kpbi', 0.0032061504972035752) +zone = ('flz168', 0.0033256130877730374) + +[fips1271567] +centroid = (0.44803594991038825, -1.4032578434794158) +description = The Crossings CDP, FL +station = ('ktmb', 0.0006257845658258508) +zone = ('flz173', 0.0020929524937094734) + +[fips1271569] +centroid = (0.44803219745249645, -1.4040970152370673) +description = The Hammocks CDP, FL +station = ('ktmb', 0.00043087929942357123) +zone = ('flz173', 0.0026574269158890639) + +[fips1271580] +centroid = (0.47757344838553478, -1.4394508758043625) +description = The Meadows CDP, FL +station = ('ksrq', 0.0013374871117288066) +zone = ('flz055', 0.0033268029037630872) + +[fips1271625] +centroid = (0.50437489891208487, -1.4310657206658361) +description = The Villages CDP, FL +station = ('kvvg', 0.0012601247171540892) +zone = ('flz043', 0.003637093743743425) + +[fips1271725] +centroid = (0.48943112805712163, -1.436340175478533) +description = Thonotosassa CDP, FL +station = ('kvdf', 0.00090418095558121852) +zone = ('flz049', 0.0048830902786496837) + +[fips1271741] +centroid = (0.44755076583162634, -1.4032440902849102) +description = Three Lakes CDP, FL +station = ('ktmb', 0.00053997893569075067) +zone = ('flz173', 0.0017530597721269498) + +[fips1271758] +centroid = (0.46204598706882705, -1.4276194633380181) +description = Three Oaks CDP, FL +station = ('krsw', 0.0011474049837756888) +zone = ('flz065', 0.0018749248653413529) + +[fips1271800] +centroid = (0.46556898652385514, -1.427980816306351) +description = Tice CDP, FL +station = ('kfmy', 0.0017779771358797985) +zone = ('flz065', 0.0016875482353154903) + +[fips1271825] +centroid = (0.48294180191198899, -1.4438583383111314) +description = Tierra Verde CDP, FL +station = ('kspg', 0.002215713731933887) +zone = ('flz050', 0.0044996735666638131) + +[fips1271842] +centroid = (0.53021106018923447, -1.5194604862670893) +description = Tiger Point CDP, FL +station = ('kpns', 0.002616187342021954) +zone = ('flz004', 0.003624261363506073) + +[fips1271850] +centroid = (0.49800360938426463, -1.4242065767054986) +description = Tildenville CDP, FL +station = ('kmco', 0.0045853087330607299) +zone = ('flz144', 0.0031870315601839607) + +[fips1271867] +centroid = (0.49688143248840233, -1.4416843911014321) +description = Timber Pines CDP, FL +station = ('kbkv', 0.0023391558482442282) +zone = ('flz048', 0.0031431808615435585) + +[fips1271900] +centroid = (0.49869934998398707, -1.4105646992994754) +description = Titusville city, FL +station = ('ktix', 0.0010333739116734943) +zone = ('flz147', 0.00064825739578017042) + +[fips1272145] +centroid = (0.48887070283430628, -1.4412434511192085) +description = Town 'n' Country CDP, FL +station = ('ktpa', 0.0010170672918727508) +zone = ('flz050', 0.0026499254014231265) + +[fips1272325] +centroid = (0.48461700383463818, -1.4445983230073918) +description = Treasure Island city, FL +station = ('kspg', 0.0021011593860087857) +zone = ('flz050', 0.0029173269744249687) + +[fips1272350] +centroid = (0.51678158935317908, -1.4453889397052526) +description = Trenton city, FL +station = ('kcty', 0.0043489782336064318) +zone = ('flz035', 0.002044588773838109) + +[fips1272425] +centroid = (0.49665851903633768, -1.4345555065051989) +description = Trilby CDP, FL +station = ('kbkv', 0.0039324449825211133) +zone = ('flz048', 0.0038655211540779741) + +[fips1272442] +centroid = (0.49184844397771882, -1.4426589829557459) +description = Trinity CDP, FL +station = ('ktpa', 0.0042041270593992817) +zone = ('flz050', 0.0045152971874503735) + +[fips1272875] +centroid = (0.52515101907514505, -1.494031475397845) +description = Tyndall AFB CDP, FL +station = ('kpam', 0.00047750516395614193) +zone = ('flz112', 0.0025022136340160945) + +[fips1273025] +centroid = (0.50487160216390992, -1.4253089615676429) +description = Umatilla city, FL +station = ('klee', 0.0030232627626548582) +zone = ('flz044', 0.00052606007488262491) + +[fips1273075] +centroid = (0.49859243111400997, -1.4178564405682124) +description = Union Park CDP, FL +station = ('korl', 0.0015042587716791547) +zone = ('flz045', 0.0016128060970383689) + +[fips1273163] +centroid = (0.49003508179148175, -1.438732847350092) +description = University CDP, FL +station = ('kvdf', 0.0017465144992339469) +zone = ('flz049', 0.0041068433852957196) + +[fips1273172] +centroid = (0.49898961569188627, -1.4172861891417081) +description = University CDP, FL +station = ('korl', 0.0020942860242359807) +zone = ('flz045', 0.0022509242377102127) + +[fips1273287] +centroid = (0.44941571995055235, -1.4027414005537509) +description = University Park CDP, FL +station = ('kmia', 0.0010391489884362742) +zone = ('flz074', 0.0016449425876527207) + +[fips1273312] +centroid = (0.5266346012992178, -1.4966632748302198) +description = Upper Grand Lagoon CDP, FL +station = ('kpam', 0.0031664952020290971) +zone = ('flz112', 0.001552130548104458) + +[fips1273675] +centroid = (0.53215205830366996, -1.5099686527564584) +description = Valparaiso city, FL +station = ('kvps', 0.0001207240747622533) +zone = ('flz006', 0.0018421132217602352) + +[fips1273700] +centroid = (0.48728208669584849, -1.4352062699700974) +description = Valrico CDP, FL +station = ('kpcm', 0.0018862027765890192) +zone = ('flz051', 0.0042230514305339039) + +[fips1273725] +centroid = (0.47512869588909623, -1.4397781250391115) +description = Vamo CDP, FL +station = ('kvnc', 0.0029002338180379788) +zone = ('flz060', 0.0027596803575053227) + +[fips1273900] +centroid = (0.47336769358041897, -1.4384423023895125) +description = Venice city, FL +station = ('kvnc', 0.00090853689826981394) +zone = ('flz060', 0.0017925828036918176) + +[fips1273950] +centroid = (0.47249998568949747, -1.4383073884383333) +description = Venice Gardens CDP, FL +station = ('kvnc', 0.00017628798100756258) +zone = ('flz060', 0.0023246320267784138) + +[fips1274125] +centroid = (0.53428928378590712, -1.4957620566176599) +description = Vernon city, FL +station = ('k1j0', 0.0041403176495676316) +zone = ('flz010', 0.00053498586105012159) + +[fips1274150] +centroid = (0.48253501802322668, -1.403124919203584) +description = Vero Beach city, FL +station = ('kvrb', 0.00036701266225279579) +zone = ('flz054', 0.003532911573403779) + +[fips1274200] +centroid = (0.48205945070864326, -1.4034454838272978) +description = Vero Beach South CDP, FL +station = ('kvrb', 0.00053013430997896115) +zone = ('flz054', 0.0034051073981832937) + +[fips1274235] +centroid = (0.45525386375176591, -1.4255823150350904) +description = Verona Walk CDP, FL +station = ('kapf', 0.0017812697548315504) +zone = ('flz069', 0.0017196464498923261) + +[fips1274368] +centroid = (0.49327081750492413, -1.4087335522081605) +description = Viera East CDP, FL +station = ('kcof', 0.0018315480156916046) +zone = ('flz047', 0.0037497235007293286) + +[fips1274370] +centroid = (0.49296887554432905, -1.409070662553183) +description = Viera West CDP, FL +station = ('kcof', 0.0020674538011104548) +zone = ('flz047', 0.0034579203647852885) + +[fips1274498] +centroid = (0.52239181060737472, -1.4189447580765859) +description = Villano Beach CDP, FL +station = ('ksgj', 0.00078326162909503599) +zone = ('flz033', 0.0022438129100207328) + +[fips1274512] +centroid = (0.46339399211660487, -1.4288626962707986) +description = Villas CDP, FL +station = ('kfmy', 0.00057297487244663519) +zone = ('flz065', 0.00088139082549933427) + +[fips1274562] +centroid = (0.45780701864804579, -1.4264200905293403) +description = Vineyards CDP, FL +station = ('kapf', 0.0015294242867443734) +zone = ('flz069', 0.0042476602017769401) + +[fips1274575] +centroid = (0.45046098018627923, -1.4014554768674663) +description = Virginia Gardens village, FL +station = ('kmia', 0.0005473948072423257) +zone = ('flz074', 0.00018025419510233129) + +[fips1274625] +centroid = (0.48428900410831088, -1.4038778367896019) +description = Wabasso CDP, FL +station = ('kvrb', 0.0017321749102088004) +zone = ('flz054', 0.0029340524163718002) + +[fips1274635] +centroid = (0.48445278580531809, -1.403247406410489) +description = Wabasso Beach CDP, FL +station = ('kvrb', 0.0018865827741113218) +zone = ('flz054', 0.0035149990896477519) + +[fips1274700] +centroid = (0.52977294764039884, -1.4660961717227368) +description = Wacissa CDP, FL +station = ('ktlh', 0.0053147788783438699) +zone = ('flz018', 0.0025049262485629465) + +[fips1274775] +centroid = (0.48796641284226294, -1.4264363919045537) +description = Wahneta CDP, FL +station = ('kbow', 0.00085369704797851043) +zone = ('flz052', 0.0005057435988822293) + +[fips1274925] +centroid = (0.51996868274036834, -1.4340842327005752) +description = Waldo city, FL +station = ('k42j', 0.0019178270003781298) +zone = ('flz031', 0.002761072761703781) + +[fips1274975] +centroid = (0.53531077263722171, -1.522015142146526) +description = Wallace CDP, FL +station = ('kndz', 0.0028722480989974743) +zone = ('flz002', 0.0032725863154221338) + +[fips1275175] +centroid = (0.47205681168583102, -1.4358897234518857) +description = Warm Mineral Springs CDP, FL +station = ('kvnc', 0.0023597020020062823) +zone = ('flz060', 0.0024673552682324953) + +[fips1275200] +centroid = (0.53027291465792514, -1.5235680663017805) +description = Warrington CDP, FL +station = ('knpa', 0.00063668542393630187) +zone = ('flz002', 0.0022528068814957631) + +[fips1275225] +centroid = (0.45605332926893444, -1.3993926547712419) +description = Washington Park CDP, FL +station = ('kfll', 0.001195824077130251) +zone = ('flz172', 0.00089547640050577143) + +[fips1275275] +centroid = (0.45964743343768882, -1.3999739890384961) +description = Watergate CDP, FL +station = ('kbct', 0.0018011552561137858) +zone = ('flz172', 0.0035153393293420611) + +[fips1275300] +centroid = (0.52683592502843535, -1.441688440265297) +description = Watertown CDP, FL +station = ('kgnv', 0.0097528117306995166) +zone = ('flz022', 0.00073478235057340279) + +[fips1275375] +centroid = (0.48078364993202044, -1.4278647170045082) +description = Wauchula city, FL +station = ('kbow', 0.0070484903727874) +zone = ('flz056', 0.00094558071056228589) + +[fips1275425] +centroid = (0.53050123863067111, -1.4656493150743486) +description = Waukeenah CDP, FL +station = ('ktlh', 0.0056379901225408514) +zone = ('flz018', 0.0017256383036999296) + +[fips1275450] +centroid = (0.53465615199467631, -1.4937789960682515) +description = Wausau town, FL +station = ('k1j0', 0.0034922909726059757) +zone = ('flz010', 0.0012384468156631636) + +[fips1275475] +centroid = (0.48843531299910375, -1.42463032519459) +description = Waverly CDP, FL +station = ('kgif', 0.0023892171881557621) +zone = ('flz052', 0.0012853185492151607) + +[fips1275600] +centroid = (0.49936480912118753, -1.4320608375921531) +description = Webster city, FL +station = ('klee', 0.005068889587874441) +zone = ('flz043', 0.001688502747241248) + +[fips1275612] +centroid = (0.49717379259140387, -1.4151447923225586) +description = Wedgefield CDP, FL +station = ('kmco', 0.0040445408232161967) +zone = ('flz045', 0.003745451859354243) + +[fips1275625] +centroid = (0.49770809023531698, -1.4412918141927811) +description = Weeki Wachee city, FL +station = ('kbkv', 0.0021751916823801215) +zone = ('flz048', 0.0025191993179853166) + +[fips1275641] +centroid = (0.49806958282999003, -1.4420448888584316) +description = Weeki Wachee Gardens CDP, FL +station = ('kbkv', 0.0029269442512385134) +zone = ('flz048', 0.0031116596574146003) + +[fips1275725] +centroid = (0.50087935348619061, -1.421099436851343) +description = Wekiwa Springs CDP, FL +station = ('korl', 0.0029298552954259609) +zone = ('flz046', 0.0028781476765972714) + +[fips1275750] +centroid = (0.51461518196584866, -1.4252522383669533) +description = Welaka town, FL +station = ('kxfl', 0.0068567009738704169) +zone = ('flz037', 0.0024961861956392223) + +[fips1275812] +centroid = (0.46507987545427626, -1.4010521661839157) +description = Wellington village, FL +station = ('kpbi', 0.0027922454273897131) +zone = ('flz068', 0.0020433817717065003) + +[fips1275875] +centroid = (0.49226055112069972, -1.4368721518345411) +description = Wesley Chapel CDP, FL +station = ('kvdf', 0.0033382144355773302) +zone = ('flz049', 0.0020812571714534061) + +[fips1276050] +centroid = (0.47998280560474288, -1.4418897116346368) +description = West Bradenton CDP, FL +station = ('ksrq', 0.002023682300721241) +zone = ('flz051', 0.0052033231506215171) + +[fips1276062] +centroid = (0.48976244390902773, -1.4417408001428567) +description = Westchase CDP, FL +station = ('ktpa', 0.0019928040111292819) +zone = ('flz050', 0.0029323998865552724) + +[fips1276075] +centroid = (0.44937049846963317, -1.4021396110276632) +description = Westchester CDP, FL +station = ('kmia', 0.00070737136751560143) +zone = ('flz074', 0.001383211295838675) + +[fips1276087] +centroid = (0.50641567749985683, -1.4195430918507546) +description = West DeLand CDP, FL +station = ('kded', 0.0011803782813004033) +zone = ('flz041', 0.0014182337446281407) + +[fips1276290] +centroid = (0.46599256048002169, -1.3979878741628966) +description = Westgate CDP, FL +station = ('kpbi', 0.00028115659309904808) +zone = ('flz168', 0.00030191096636425404) + +[fips1276481] +centroid = (0.48555126112993824, -1.4440524538305382) +description = West Lealman CDP, FL +station = ('kspg', 0.001866762720691038) +zone = ('flz050', 0.0019060093048938274) + +[fips1276487] +centroid = (0.45128830115830959, -1.40039983192269) +description = West Little River CDP, FL +station = ('kopf', 0.0010463438509815087) +zone = ('flz074', 0.0011971281639168549) + +[fips1276500] +centroid = (0.48963952036980973, -1.407808073918998) +description = West Melbourne city, FL +station = ('kmlb', 0.00081728348720599715) +zone = ('flz047', 0.00085598289330549124) + +[fips1276525] +centroid = (0.44955859260312059, -1.4014448303590292) +description = West Miami city, FL +station = ('kmia', 0.00054333874057876832) +zone = ('flz074', 0.0010767174033544922) + +[fips1276582] +centroid = (0.45553803826057565, -1.4032834998194201) +description = Weston city, FL +station = ('khwo', 0.0031755357507619653) +zone = ('flz072', 0.0021094597573116259) + +[fips1276600] +centroid = (0.4668459217644918, -1.3984731280548286) +description = West Palm Beach city, FL +station = ('kpbi', 0.0012073961242060247) +zone = ('flz168', 0.0010380945001631984) + +[fips1276658] +centroid = (0.45341336169566032, -1.3994226220744985) +description = West Park city, FL +station = ('khwo', 0.00090132500145030409) +zone = ('flz072', 0.0029254659138576488) + +[fips1276675] +centroid = (0.53104653184887174, -1.5231159387590512) +description = West Pensacola CDP, FL +station = ('knpa', 0.0014866076106835977) +zone = ('flz002', 0.0016261656664711928) + +[fips1276700] +centroid = (0.44691078850150506, -1.4026151608889541) +description = West Perrine CDP, FL +station = ('ktmb', 0.0013341029327941258) +zone = ('flz173', 0.00092750233664807224) + +[fips1276740] +centroid = (0.47944643101901996, -1.4408597753897423) +description = West Samoset CDP, FL +station = ('ksrq', 0.0012288425599309891) +zone = ('flz055', 0.0039857267441233577) + +[fips1276937] +centroid = (0.48234327615160261, -1.4048241019501557) +description = West Vero Corridor CDP, FL +station = ('kvrb', 0.0011664322331852092) +zone = ('flz054', 0.002174895808659252) + +[fips1276950] +centroid = (0.4517309690164929, -1.4004871681984599) +description = Westview CDP, FL +station = ('kopf', 0.00071887433404774811) +zone = ('flz074', 0.0014342917939786524) + +[fips1276975] +centroid = (0.53705575282336571, -1.4982783152535526) +description = Westville town, FL +station = ('k1j0', 0.0038308194531145715) +zone = ('flz009', 0.0017523288305125769) + +[fips1277075] +centroid = (0.44900825538338179, -1.4027077506057726) +description = Westwood Lakes CDP, FL +station = ('kmia', 0.0012940055833290968) +zone = ('flz074', 0.0019489580152733134) + +[fips1277100] +centroid = (0.52581202762275281, -1.4868427609148531) +description = Wewahitchka city, FL +station = ('ktdr', 0.0054382509244537162) +zone = ('flz014', 0.003118896528451584) + +[fips1277137] +centroid = (0.46377731878022033, -1.429260386994158) +description = Whiskey Creek CDP, FL +station = ('kfmy', 0.00041866484923261648) +zone = ('flz065', 0.0010943904822877158) + +[fips1277275] +centroid = (0.47773658431071864, -1.4022067014841098) +description = White City CDP, FL +station = ('kfpr', 0.0023255016540090576) +zone = ('flz059', 0.0022186489307528417) + +[fips1277400] +centroid = (0.52939024929531409, -1.4443659324174889) +description = White Springs town, FL +station = ('kvld', 0.010999401984599939) +zone = ('flz022', 0.0027633549525985309) + +[fips1277467] +centroid = (0.47843482073127153, -1.4410529135247681) +description = Whitfield CDP, FL +station = ('ksrq', 0.0003308339564381613) +zone = ('flz055', 0.0042837638643377588) + +[fips1277470] +centroid = (0.53884502946592527, -1.5195980705720242) +description = Whitfield CDP, FL +station = ('knse', 0.0025589070117331115) +zone = ('flz003', 0.00061170260579179443) + +[fips1277675] +centroid = (0.50253219774112179, -1.4313764939924463) +description = Wildwood city, FL +station = ('kvvg', 0.0031090977434266348) +zone = ('flz043', 0.0018706340564429993) + +[fips1277735] +centroid = (0.49569888465371359, -1.4215159247707463) +description = Williamsburg CDP, FL +station = ('kmco', 0.0017629534823059749) +zone = ('flz045', 0.0027348245623462757) + +[fips1277825] +centroid = (0.51252712240864018, -1.4392517511900023) +description = Williston city, FL +station = ('kocf', 0.0051119946784218924) +zone = ('flz039', 0.0042605838469617638) + +[fips1277837] +centroid = (0.51196811090251881, -1.440518947493413) +description = Williston Highlands CDP, FL +station = ('kocf', 0.0056644118921984812) +zone = ('flz039', 0.0030936593839007184) + +[fips1277862] +centroid = (0.48732942002516255, -1.4315931766190813) +description = Willow Oak CDP, FL +station = ('klal', 0.0010782344717177803) +zone = ('flz052', 0.0050556497914164633) + +[fips1278000] +centroid = (0.45656642116243573, -1.3986941216447162) +description = Wilton Manors city, FL +station = ('kfxe', 0.00099004740200101123) +zone = ('flz172', 0.00025895654980657691) + +[fips1278025] +centroid = (0.48301828223981136, -1.4366357120807733) +description = Wimauma CDP, FL +station = ('kmcf', 0.0042029711684118017) +zone = ('flz051', 0.0013368949170858002) + +[fips1278050] +centroid = (0.49742011090873789, -1.4230718683456067) +description = Windermere town, FL +station = ('kmco', 0.0034337974845100659) +zone = ('flz045', 0.0032648648877710504) + +[fips1278110] +centroid = (0.48497039810158205, -1.4034887854460398) +description = Windsor CDP, FL +station = ('kvrb', 0.0023872197777714188) +zone = ('flz054', 0.0035217051422229127) + +[fips1278225] +centroid = (0.48372177210141276, -1.4036742266790643) +description = Winter Beach CDP, FL +station = ('kvrb', 0.0011448339140275794) +zone = ('flz054', 0.0029799341542993177) + +[fips1278250] +centroid = (0.49815438837834441, -1.424137077694684) +description = Winter Garden city, FL +station = ('kmco', 0.0046003620892978089) +zone = ('flz144', 0.0032263485540194935) + +[fips1278275] +centroid = (0.4894921622210639, -1.4265054545830553) +description = Winter Haven city, FL +station = ('kgif', 0.00045038614232471413) +zone = ('flz052', 0.0017754625859999248) + +[fips1278300] +centroid = (0.49914791705504219, -1.4197873157729861) +description = Winter Park city, FL +station = ('korl', 0.00088473589257785016) +zone = ('flz045', 0.0015161696317830885) + +[fips1278325] +centroid = (0.50070119027614712, -1.418428419870676) +description = Winter Springs city, FL +station = ('ksfb', 0.0016905774612946268) +zone = ('flz046', 0.00072261544326830088) + +[fips1278340] +centroid = (0.49813344442732049, -1.4393061007429098) +description = Wiscon CDP, FL +station = ('kbkv', 0.0013198798233373214) +zone = ('flz048', 0.00072417058896970374) + +[fips1278500] +centroid = (0.53036243259525995, -1.5183315898536069) +description = Woodlawn Beach CDP, FL +station = ('kpns', 0.0033036589356432674) +zone = ('flz004', 0.0033348662491353488) + +[fips1278700] +centroid = (0.52909930290900664, -1.4707673534794818) +description = Woodville CDP, FL +station = ('ktlh', 0.0019208333608670375) +zone = ('flz017', 0.0024986165877504516) + +[fips1278740] +centroid = (0.5230670261350937, -1.4222262563230155) +description = World Golf Village CDP, FL +station = ('ksgj', 0.0022427094920891458) +zone = ('flz033', 0.0013617348475778238) + +[fips1278775] +centroid = (0.5224600878877127, -1.4385772337939842) +description = Worthington Springs town, FL +station = ('kgnv', 0.0046207342662911649) +zone = ('flz030', 0.0020665388174624481) + +[fips1278800] +centroid = (0.53134976535311318, -1.5121877167273217) +description = Wright CDP, FL +station = ('kqhy', 0.00065405335871690658) +zone = ('flz006', 0.0021547593610489503) + +[fips1278900] +centroid = (0.5016981223448862, -1.4280790085300683) +description = Yalaha CDP, FL +station = ('klee', 0.0012512290155123765) +zone = ('flz144', 0.0031831631845876326) + +[fips1278925] +centroid = (0.5067025049091296, -1.4444910550715642) +description = Yankeetown town, FL +station = ('kcgc', 0.0040860354485358005) +zone = ('flz039', 0.0050699948538091453) + +[fips1278975] +centroid = (0.4834411755175696, -1.4118117545033178) +description = Yeehaw Junction CDP, FL +station = ('kobe', 0.0075738136990299272) +zone = ('flz058', 0.004729900751452595) + +[fips1279175] +centroid = (0.5346788761815372, -1.4235557259741372) +description = Yulee CDP, FL +station = ('kfhb', 0.0014313995836112341) +zone = ('flz024', 0.0037027228958242792) + +[fips1279200] +centroid = (0.50129168752197428, -1.4237215147997841) +description = Zellwood CDP, FL +station = ('klee', 0.0040750360536210405) +zone = ('flz044', 0.0037567642794683431) + +[fips1279225] +centroid = (0.49287017717512882, -1.4343035507743809) +description = Zephyrhills city, FL +station = ('kpcm', 0.0042026583547463674) +zone = ('flz049', 0.00347474535027395) + +[fips1279231] +centroid = (0.49308459087373635, -1.4340575291630195) +description = Zephyrhills North CDP, FL +station = ('kpcm', 0.0043988283220837655) +zone = ('flz049', 0.0036127419308866872) + +[fips1279237] +centroid = (0.49244302529399575, -1.4344643654116596) +description = Zephyrhills South CDP, FL +station = ('kpcm', 0.0037979877433048808) +zone = ('flz049', 0.0035213023026803049) + +[fips1279243] +centroid = (0.49272651912439713, -1.4347480337749861) +description = Zephyrhills West CDP, FL +station = ('kpcm', 0.0041222345294207275) +zone = ('flz049', 0.0031704687074590944) + +[fips1279250] +centroid = (0.47983906028754858, -1.427452051356167) +description = Zolfo Springs town, FL +station = ('kbow', 0.0079806643024240894) +zone = ('flz056', 0.00035488608407203542) + +[fips13001] +centroid = (0.55396247803475451, -1.4362332391552635) +description = Appling County, GA +station = ('kamg', 0.0047646999600418618) +zone = ('gaz135', 0.00016814105305125519) + +[fips1300184] +centroid = (0.55837578739451743, -1.4539718930079077) +description = Abbeville city, GA +station = ('kezm', 0.0046835487817208764) +zone = ('gaz108', 0.0018917129347339058) + +[fips1300190078] +centroid = (0.55638850314831911, -1.4360274822897456) +description = Altamaha River CCD, GA +station = ('kvdi', 0.0056491054419382817) +zone = ('gaz135', 0.0022642363881082523) + +[fips1300190240] +centroid = (0.55505364042980876, -1.4369121722342892) +description = Baxley CCD, GA +station = ('kamg', 0.005336450405370478) +zone = ('gaz135', 0.0010980573918179771) + +[fips1300190273] +centroid = (0.55308201178700089, -1.4378190453136253) +description = Big Satilla Creek CCD, GA +station = ('kamg', 0.0032461014258026487) +zone = ('gaz135', 0.0017210436403541436) + +[fips1300192905] +centroid = (0.55268987121066282, -1.4344554293258895) +description = Surrency-Troper CCD, GA +station = ('kjes', 0.0049533470034535789) +zone = ('gaz135', 0.0020764590755236179) + +[fips13003] +centroid = (0.54629786462462138, -1.4465919602520674) +description = Atkinson County, GA +station = ('kdqh', 0.0030932090677592045) +zone = ('gaz149', 8.09680670644531e-05) + +[fips1300390180] +centroid = (0.5460912001878927, -1.4436902107442866) +description = Axson CCD, GA +station = ('kdqh', 0.0039108943383752122) +zone = ('gaz149', 0.0024301159986664595) + +[fips1300392334] +centroid = (0.54592724395796033, -1.4465642618768382) +description = Pearson CCD, GA +station = ('kdqh', 0.0034594402377671305) +zone = ('gaz149', 0.0003116671649261822) + +[fips1300393378] +centroid = (0.54677081394532678, -1.4490467832982898) +description = Willacoochee CCD, GA +station = ('kdqh', 0.0035680803753606375) +zone = ('gaz149', 0.0022162961375792175) + +[fips1300408] +centroid = (0.59439667789533979, -1.4777258939407205) +description = Acworth city, GA +station = ('kryy', 0.0012507505309114889) +zone = ('gaz032', 0.0023974098537183431) + +[fips1300436] +centroid = (0.59987360835456061, -1.4821589604276162) +description = Adairsville city, GA +station = ('krmg', 0.0035505828780769706) +zone = ('gaz012', 0.0024158300010345122) + +[fips13005] +centroid = (0.55088397903362429, -1.4379394032188431) +description = Bacon County, GA +station = ('kamg', 0.0017481689856467368) +zone = ('gaz134', 0.00097884774608785114) + +[fips1300576] +centroid = (0.54334841526838362, -1.45604799705974) +description = Adel city, GA +station = ('kvad', 0.0044320684316665696) +zone = ('gaz147', 0.00039878992534251342) + +[fips1300590072] +centroid = (0.55043815212949487, -1.4402237250504382) +description = Alma CCD, GA +station = ('kamg', 0.00028940075895003817) +zone = ('gaz134', 0.0010208272688737034) + +[fips1300592562] +centroid = (0.55088397903362429, -1.4379394032188431) +description = Rockingham CCD, GA +station = ('kamg', 0.0017481689856467368) +zone = ('gaz134', 0.00097884774608785114) + +[fips1300660] +centroid = (0.56775475046242185, -1.4414937662405294) +description = Adrian city, GA +station = ('ksbo', 0.0036171640296405344) +zone = ('gaz098', 0.0022287001511407637) + +[fips13007] +centroid = (0.54663052438005144, -1.4740153239509808) +description = Baker County, GA +station = ('kaby', 0.0053215793495294903) +zone = ('gaz144', 0.00019003578200605959) + +[fips1300792010] +centroid = (0.54657481347032777, -1.4756425293192001) +description = Milford CCD, GA +station = ('kbij', 0.005300438778104587) +zone = ('gaz144', 0.0015509062108847258) + +[fips1300792160] +centroid = (0.54685075002506811, -1.4723852911493731) +description = Newton CCD, GA +station = ('kaby', 0.0042544061418804202) +zone = ('gaz144', 0.0012454078484381136) + +[fips1300828] +centroid = (0.56179279300407192, -1.4412157527439793) +description = Ailey city, GA +station = ('kvdi', 0.0030086497505056055) +zone = ('gaz112', 0.00066222266240498608) + +[fips13009] +centroid = (0.57699768256842598, -1.4530801868397714) +description = Baldwin County, GA +station = ('kmlj', 0.0016658110561526079) +zone = ('gaz073', 0.0001835471913417612) + +[fips1300990786] +centroid = (0.57597361062981844, -1.4537037755282163) +description = Coopers CCD, GA +station = ('kmlj', 0.0027759502757045218) +zone = ('gaz073', 0.0013333135403952915) + +[fips1300990992] +centroid = (0.57718432807863429, -1.4512121085814842) +description = East Baldwin CCD, GA +station = ('kmlj', 0.0019910122111398728) +zone = ('gaz073', 0.0014857317567344324) + +[fips1300992015] +centroid = (0.5778651810198373, -1.4539567260967079) +description = Milledgeville CCD, GA +station = ('kmlj', 0.0012321836773314977) +zone = ('gaz073', 0.0010752511877150091) + +[fips1300996] +centroid = (0.56108157133388425, -1.4447795754502113) +description = Alamo town, GA +station = ('kezm', 0.0052703507865568709) +zone = ('gaz111', 0.00097386455904499146) + +[fips1301024] +centroid = (0.54773901789457813, -1.4525276330518824) +description = Alapaha town, GA +station = ('ktma', 0.0038718985404603977) +zone = ('gaz148', 0.0018702339399711513) + +[fips1301052] +centroid = (0.5511342941549453, -1.469208617377818) +description = Albany city, GA +station = ('kaby', 0.00083195820190093937) +zone = ('gaz125', 0.00094953561008725572) + +[fips13011] +centroid = (0.59955414328827561, -1.4573227157322266) +description = Banks County, GA +station = ('k19a', 0.003205065628316781) +zone = ('gaz024', 4.0865667777935354e-05) + +[fips1301190198] +centroid = (0.60100349960571664, -1.4576614317801611) +description = Baldwin CCD, GA +station = ('ktoc', 0.0042112698936454147) +zone = ('gaz024', 0.001441739715746041) + +[fips1301191524] +centroid = (0.59983505403138404, -1.4570510901407387) +description = Homer CCD, GA +station = ('k19a', 0.0035407523235713935) +zone = ('gaz024', 0.00032058613007392741) + +[fips1301191956] +centroid = (0.59898933728903769, -1.4588176425964372) +description = Maysville CCD, GA +station = ('k19a', 0.0025289638346154136) +zone = ('gaz024', 0.0013872400008373038) + +[fips1301192803] +centroid = (0.59808925354049158, -1.455695335831082) +description = Southeast Banks CCD, GA +station = ('k19a', 0.002771297877069374) +zone = ('gaz024', 0.0020063566476089716) + +[fips1301248] +centroid = (0.57681733769681742, -1.469138716941276) +description = Aldora town, GA +station = ('kopn', 0.0020976010449824346) +zone = ('gaz070', 0.0007106811712281379) + +[fips13013] +centroid = (0.59327247641754521, -1.4610553117771268) +description = Barrow County, GA +station = ('kwdr', 0.00066272349610415856) +zone = ('gaz035', 2.1566119634132834e-05) + +[fips1301390162] +centroid = (0.59391922562516419, -1.4627609173353457) +description = Auburn CCD, GA +station = ('klzu', 0.0023789712521994654) +zone = ('gaz035', 0.0015409490092535881) + +[fips1301390264] +centroid = (0.59228739513442707, -1.4612617667743451) +description = Bethlehem CCD, GA +station = ('kwdr', 0.0011497970134040358) +zone = ('gaz035', 0.0010193898482371087) + +[fips1301392850] +centroid = (0.5932518117192016, -1.4590723908540584) +description = Statham CCD, GA +station = ('kwdr', 0.0010150064051716587) +zone = ('gaz035', 0.0016503359865973279) + +[fips1301393390] +centroid = (0.593610092908051, -1.4610508960941193) +description = Winder CCD, GA +station = ('kwdr', 0.00081471287638002073) +zone = ('gaz035', 0.0003169691769708972) + +[fips1301472] +centroid = (0.55479393543711208, -1.4242495816182674) +description = Allenhurst city, GA +station = ('klhw', 0.0017619434313677839) +zone = ('gaz138', 0.0015006715322264021) + +[fips13015] +centroid = (0.59761675800539171, -1.480705712025943) +description = Bartow County, GA +station = ('kvpc', 0.0018854348695316327) +zone = ('gaz020', 6.2348703907008223e-05) + +[fips1301500] +centroid = (0.56883023980079339, -1.4525328341330535) +description = Allentown city, GA +station = ('kdbn', 0.0035467729494493786) +zone = ('gaz096', 0.0031405934031491526) + +[fips1301590024] +centroid = (0.59938461945802923, -1.4821015565485181) +description = Adairsville CCD, GA +station = ('krmg', 0.0035835570526219804) +zone = ('gaz020', 0.0021374120959570474) + +[fips1301590570] +centroid = (0.59661895327202663, -1.4800955972793233) +description = Cartersville CCD, GA +station = ('kvpc', 0.0011092643097936449) +zone = ('gaz020', 0.0010874875611525828) + +[fips1301591080] +centroid = (0.59528229286438672, -1.4789376236805027) +description = Emerson CCD, GA +station = ('kvpc', 0.0016970281692308307) +zone = ('gaz020', 0.002728593337353155) + +[fips1301591104] +centroid = (0.59576168245003203, -1.4830723784916473) +description = Euharlee-Taylorsville CCD, GA +station = ('kvpc', 0.0017884554986836159) +zone = ('gaz020', 0.0026366305891239094) + +[fips1301591656] +centroid = (0.59791950281744266, -1.4825987310392412) +description = Kingston CCD, GA +station = ('kvpc', 0.0025886404174732293) +zone = ('gaz020', 0.0015721327952205771) + +[fips1301593360] +centroid = (0.59900408532121696, -1.4788914073619099) +description = White-Pine Log CCD, GA +station = ('kvpc', 0.0036675860706604918) +zone = ('gaz020', 0.0021028994775328584) + +[fips1301612] +centroid = (0.55053451175749746, -1.4394711390769783) +description = Alma city, GA +station = ('kamg', 0.00040223652354152815) +zone = ('gaz134', 0.0003861966435421801) + +[fips1301696] +centroid = (0.59464498588802095, -1.470892057254537) +description = Alpharetta city, GA +station = ('kpdk', 0.0032878019538585667) +zone = ('gaz033', 0.0026340072240280759) + +[fips13017] +centroid = (0.55398104833799566, -1.451192229281304) +description = Ben Hill County, GA +station = ('kfzg', 0.0021095420869921494) +zone = ('gaz130', 0.0011375583166028521) + +[fips1301791176] +centroid = (0.55398104833799566, -1.451192229281304) +description = Fitzgerald CCD, GA +station = ('kfzg', 0.0021095420869921494) +zone = ('gaz130', 0.0011375583166028521) + +[fips1301792433] +centroid = (0.55500779063035888, -1.4545854809597389) +description = Queensland CCD, GA +station = ('kfzg', 0.0023425070637020512) +zone = ('gaz130', 0.0019264769688404823) + +[fips1301808] +centroid = (0.56001672850395001, -1.4395512845962299) +description = Alston town, GA +station = ('kvdi', 0.002444739892826695) +zone = ('gaz112', 0.0017281561528602453) + +[fips13019] +centroid = (0.54583964588280276, -1.4526708024104233) +description = Berrien County, GA +station = ('ktma', 0.0044878794838738552) +zone = ('gaz148', 4.5399086853271195e-05) + +[fips1301948] +centroid = (0.60152762198009047, -1.4586167901061178) +description = Alto town, GA +station = ('ktoc', 0.0045552503557501223) +zone = ('gaz024', 0.0022176800202750461) + +[fips1301990054] +centroid = (0.5479047194537624, -1.4521094521631046) +description = Alapaha CCD, GA +station = ('ktma', 0.0042020277506914254) +zone = ('gaz148', 0.0020822519611253683) + +[fips1301991092] +centroid = (0.54753533797087039, -1.4545296478769674) +description = Enigma CCD, GA +station = ('ktma', 0.0022731410419704451) +zone = ('gaz148', 0.0023231999573796931) + +[fips1301992130] +centroid = (0.54491477845887848, -1.4519162965747863) +description = Nashville CCD, GA +station = ('kvad', 0.0044477079560714802) +zone = ('gaz148', 0.0011353026725161998) + +[fips1301992442] +centroid = (0.54244836642642269, -1.4526731236983286) +description = Ray City CCD, GA +station = ('kvad', 0.0020352913339175046) +zone = ('gaz161', 0.0026372378945665837) + +[fips1302060] +centroid = (0.55143930789502382, -1.4488832459473779) +description = Ambrose city, GA +station = ('kdqh', 0.0030929109522338681) +zone = ('gaz132', 0.002589658644481737) + +[fips13021] +centroid = (0.57262235157318653, -1.4607392326495905) +description = Bibb County, GA +station = ('kmcn', 0.0022846160232608032) +zone = ('gaz082', 6.6010309180367032e-05) + +[fips1302116] +centroid = (0.55979871942708326, -1.4699790755228186) +description = Americus city, GA +station = ('kacj', 0.00071711029061299414) +zone = ('gaz104', 0.00071268182579729594) + +[fips1302191794] +centroid = (0.57251881864195819, -1.4623865616640854) +description = Lizella CCD, GA +station = ('kmcn', 0.0029144871070605435) +zone = ('gaz082', 0.0013318755863384957) + +[fips1302191891] +centroid = (0.57287018832696968, -1.4584352409573254) +description = Macon East CCD, GA +station = ('kmcn', 0.0027581439295081326) +zone = ('gaz082', 0.0020110432358975434) + +[fips1302191892] +centroid = (0.57324957054647563, -1.4606557535514675) +description = Macon West CCD, GA +station = ('kmcn', 0.0028765448413126432) +zone = ('gaz082', 0.0006762022295819383) + +[fips1302192634] +centroid = (0.57105600583598415, -1.4601884241909535) +description = Rutland CCD, GA +station = ('kmcn', 0.00065122342530716181) +zone = ('gaz082', 0.0016141607025536198) + +[fips1302256] +centroid = (0.5618887686596391, -1.4686293251457887) +description = Andersonville city, GA +station = ('kacj', 0.0016650855783838818) +zone = ('gaz092', 0.0027593103418699239) + +[fips13023] +centroid = (0.56610457656124635, -1.4544128329901316) +description = Bleckley County, GA +station = ('kezm', 0.0048945435932608271) +zone = ('gaz096', 5.8888798954851282e-05) + +[fips1302390708] +centroid = (0.56576540672770625, -1.4552208331673424) +description = Cochran CCD, GA +station = ('kwrb', 0.0050063838673818171) +zone = ('gaz096', 0.00080529182863989365) + +[fips1302392198] +centroid = (0.56703682672790656, -1.4526659678483955) +description = Northeast Bleckley CCD, GA +station = ('kdbn', 0.0038618674846043481) +zone = ('gaz096', 0.001706439652333216) + +[fips13025] +centroid = (0.54449619614437272, -1.4308728966900759) +description = Brantley County, GA +station = ('kjes', 0.0064006357776584585) +zone = ('gaz152', 1.7117076138194188e-05) + +[fips1302564] +centroid = (0.55547065194798784, -1.4613293110163974) +description = Arabi town, GA +station = ('ktma', 0.0079891917826184176) +zone = ('gaz106', 0.0017922127767412033) + +[fips1302591500] +centroid = (0.54370048308509589, -1.4335583126370719) +description = Hoboken CCD, GA +station = ('kays', 0.0042866233497399799) +zone = ('gaz152', 0.0024448424661357316) + +[fips1302592] +centroid = (0.5941944116883261, -1.4845236372179731) +description = Aragon city, GA +station = ('kpuj', 0.0028986835010744753) +zone = ('gaz030', 0.0020418939571017589) + +[fips1302592124] +centroid = (0.54457550390558329, -1.4306013583650505) +description = Nahunta CCD, GA +station = ('kjes', 0.006272703829093171) +zone = ('gaz152', 0.0002323331764084077) + +[fips1302593306] +centroid = (0.54534847532470654, -1.4279872042114132) +description = Waynesville CCD, GA +station = ('kjes', 0.0054570010697865042) +zone = ('gaz152', 0.0025975008795911083) + +[fips1302648] +centroid = (0.59468917762468154, -1.4578913090959413) +description = Arcade city, GA +station = ('k19a', 0.0018457680179873699) +zone = ('gaz025', 0.0011760399859134555) + +[fips13027] +centroid = (0.53814951575900549, -1.4589027623040571) +description = Brooks County, GA +station = ('ktvi', 0.004538529077534245) +zone = ('gaz159', 0.00019465392772933751) + +[fips1302790222] +centroid = (0.54108652091767651, -1.4577945654955031) +description = Barney CCD, GA +station = ('kmgr', 0.004394883928415666) +zone = ('gaz159', 0.0029102370908872309) + +[fips1302790234] +centroid = (0.54019526853514566, -1.4605264595604799) +description = Barwick-Pavo CCD, GA +station = ('kmgr', 0.0029551642834237894) +zone = ('gaz159', 0.0024357971532080092) + +[fips1302790948] +centroid = (0.5366025955363779, -1.4604620569110813) +description = Dixie CCD, GA +station = ('ktvi', 0.0040908181887785201) +zone = ('gaz159', 0.0022409117472154115) + +[fips1302791086] +centroid = (0.53559876941709339, -1.4574829195042671) +description = Empress CCD, GA +station = ('kvld', 0.0039825790851307045) +zone = ('gaz159', 0.0029077084701541319) + +[fips1302792088] +centroid = (0.53939657096284799, -1.4571928632358782) +description = Morven CCD, GA +station = ('kvld', 0.0039774895342434185) +zone = ('gaz159', 0.0017332509582045357) + +[fips1302792436] +centroid = (0.53781195162837725, -1.4583440998637862) +description = Quitman CCD, GA +station = ('kvld', 0.0043856149819319267) +zone = ('gaz159', 0.00059593952816935339) + +[fips1302844] +centroid = (0.54232989347679728, -1.4424949918192285) +description = Argyle town, GA +station = ('khoe', 0.0018254378555900095) +zone = ('gaz163', 0.0028902577511594565) + +[fips13029] +centroid = (0.55881897885147636, -1.4213707133769804) +description = Bryan County, GA +station = ('klhw', 0.0030202451448939982) +zone = ('gaz116', 0.00066652839287053222) + +[fips1302928] +centroid = (0.54869523143186827, -1.4787377311212717) +description = Arlington city, GA +station = ('kbij', 0.0025389162357271492) +zone = ('gaz123', 0.0021856233386143655) + +[fips1302991236] +centroid = (0.5589656039619364, -1.4223400517902456) +description = Fort Stewart CCD, GA +station = ('klhw', 0.0027180255734611551) +zone = ('gaz116', 0.00037372954920633281) + +[fips1302992346] +centroid = (0.56116913450245676, -1.4234205851301553) +description = Pembroke CCD, GA +station = ('klhw', 0.0047026452129829786) +zone = ('gaz116', 0.0022957352325914306) + +[fips1302992514] +centroid = (0.55589139847076607, -1.4183422529655048) +description = Richmond Hill CCD, GA +station = ('ksvn', 0.0033676255930668239) +zone = ('gaz117', 0.0011632183017395929) + +[fips13031] +centroid = (0.56537162554187137, -1.4266986276246658) +description = Bulloch County, GA +station = ('ktbr', 0.001567651251872953) +zone = ('gaz100', 6.1606313175054201e-05) + +[fips1303124] +centroid = (0.59186354192558022, -1.4524567377776663) +description = Arnoldsville city, GA +station = ('kahn', 0.0017796840004513637) +zone = ('gaz038', 0.0020838276528769854) + +[fips1303190426] +centroid = (0.56475733945833939, -1.4255879699018668) +description = Brooklet CCD, GA +station = ('ktbr', 0.0023354142213720748) +zone = ('gaz100', 0.0011484695657912828) + +[fips1303192142] +centroid = (0.56306042563979541, -1.4245154999831013) +description = Nevils-Stilson CCD, GA +station = ('ktbr', 0.0042512651670773664) +zone = ('gaz100', 0.0029994960534410428) + +[fips1303192400] +centroid = (0.568366052032933, -1.4293381763189195) +description = Portal CCD, GA +station = ('ktbr', 0.0027273411943180073) +zone = ('gaz100', 0.0036882672727804439) + +[fips1303192472] +centroid = (0.56414687564586929, -1.4289004128359344) +description = Register CCD, GA +station = ('kcwv', 0.0021508565730100006) +zone = ('gaz100', 0.0022683896013239663) + +[fips1303192844] +centroid = (0.5667788670644619, -1.426874556813267) +description = Statesboro CCD, GA +station = ('ktbr', 0.00029154878603937116) +zone = ('gaz100', 0.001355472516779783) + +[fips1303236] +centroid = (0.55342978609375326, -1.4600102260743248) +description = Ashburn city, GA +station = ('ktma', 0.0056613015870372319) +zone = ('gaz128', 0.00043703603489335949) + +[fips13033] +centroid = (0.57707107366347243, -1.4312378799432528) +description = Burke County, GA +station = ('kags', 0.005314984268462478) +zone = ('gaz077', 6.3273144962788154e-05) + +[fips1303391296] +centroid = (0.57697172952244891, -1.4259642628885969) +description = Girard CCD, GA +station = ('kbnl', 0.0056544245164887623) +zone = ('gaz077', 0.0043749817516562104) + +[fips1303391362] +centroid = (0.57919051424063173, -1.4296091037787066) +description = Greens Cut CCD, GA +station = ('kags', 0.0032717349183975439) +zone = ('gaz077', 0.0025340196426640472) + +[fips1303391644] +centroid = (0.57951715261014247, -1.4342304563853074) +description = Keysville CCD, GA +station = ('kags', 0.0041643580049077677) +zone = ('gaz065', 0.0030974774794965965) + +[fips1303391992] +centroid = (0.57409884776049613, -1.4346186874241211) +description = Midville CCD, GA +station = ('ksbo', 0.0054018229598506691) +zone = ('gaz087', 0.0038570705682099134) + +[fips1303392694] +centroid = (0.57562265982382732, -1.4276122900347925) +description = Sardis CCD, GA +station = ('kjyl', 0.0065474195735842899) +zone = ('gaz077', 0.0033075693807514961) + +[fips1303393198] +centroid = (0.57690230032480461, -1.435174836590269) +description = Vidette CCD, GA +station = ('kags', 0.0066702971365045728) +zone = ('gaz076', 0.0027595467392551973) + +[fips1303393300] +centroid = (0.5767099999478198, -1.4314713002774144) +description = Waynesboro CCD, GA +station = ('kags', 0.0056963197792319169) +zone = ('gaz077', 0.00039795449835018686) + +[fips1303440] +centroid = (0.59253224737518928, -1.4550825332774142) +description = Athens-Clarke County unified government (balance), GA +station = ('kahn', 0.00053217984684288512) +zone = ('gaz036', 4.896886148420086e-05) + +[fips13035] +centroid = (0.58102630390775689, -1.465347390567046) +description = Butts County, GA +station = ('k6a2', 0.0047529421380595642) +zone = ('gaz058', 2.6488891930543228e-05) + +[fips1303591182] +centroid = (0.58041667785332773, -1.4639185942281934) +description = Flovilla CCD, GA +station = ('k6a2', 0.0058394923782378681) +zone = ('gaz058', 0.0013179760164648718) + +[fips1303591572] +centroid = (0.58102630390775689, -1.465347390567046) +description = Jackson CCD, GA +station = ('k6a2', 0.0047529421380595642) +zone = ('gaz058', 2.6488891930543228e-05) + +[fips1303591602] +centroid = (0.58144448479653477, -1.4667406520023281) +description = Jenkinsburg CCD, GA +station = ('k6a2', 0.0037780871047452796) +zone = ('gaz058', 0.0012588032950351003) + +[fips1303592822] +centroid = (0.58009810290496122, -1.4669170524298274) +description = Southwest Butts CCD, GA +station = ('k6a2', 0.0033156474498435592) +zone = ('gaz058', 0.0016072761334762218) + +[fips1303593438] +centroid = (0.582595930863953, -1.4648031969062743) +description = Worthville CCD, GA +station = ('k9a1', 0.0045002018097362534) +zone = ('gaz058', 0.0016511722454292967) + +[fips13037] +centroid = (0.55015010298974565, -1.4770073942475521) +description = Calhoun County, GA +station = ('kbij', 0.0044602806066031432) +zone = ('gaz123', 0.00013978562980042667) + +[fips1303790120] +centroid = (0.5493721573822542, -1.4790288869470896) +description = Arlington CCD, GA +station = ('kbij', 0.0025772169577950406) +zone = ('gaz123', 0.0019702202829384088) + +[fips1303791038] +centroid = (0.55088047092182779, -1.4790987350237543) +description = Edison CCD, GA +station = ('kbij', 0.0035626487331232738) +zone = ('gaz123', 0.0018976967559232729) + +[fips1303791710] +centroid = (0.55007484439239973, -1.4749223192033645) +description = Leary CCD, GA +station = ('kaby', 0.0045736625045467169) +zone = ('gaz123', 0.001769626578109982) + +[fips1303792076] +centroid = (0.55015010298974565, -1.4770073942475521) +description = Morgan CCD, GA +station = ('kbij', 0.0044602806066031432) +zone = ('gaz123', 0.00013978562980042667) + +[fips13039] +centroid = (0.53959223982528903, -1.4248259940570311) +description = Camden County, GA +station = ('kssi', 0.0055646527423135923) +zone = ('gaz166', 0.0013230165671150249) + +[fips1303991650] +centroid = (0.53813206246648559, -1.427317852989981) +description = Kingsland CCD, GA +station = ('kjax', 0.0059273889855046722) +zone = ('gaz165', 0.0023005471435581142) + +[fips1303992652] +centroid = (0.5380551108997651, -1.4220111619459999) +description = St. Marys CCD, GA +station = ('kfhb', 0.0036361433048176417) +zone = ('gaz166', 0.0015834999333182646) + +[fips1303993408] +centroid = (0.54075906224341741, -1.4257489067121933) +description = Woodbine CCD, GA +station = ('kssi', 0.0054230987612677341) +zone = ('gaz165', 0.0012337184662723931) + +[fips1304000] +centroid = (0.58927392710122617, -1.4734536420911037) +description = Atlanta city, GA +station = ('kfty', 0.0014094515425187399) +zone = ('gaz045', 0.0028531412208588664) + +[fips1304084] +centroid = (0.53667984380907119, -1.474521975579542) +description = Attapulgus city, GA +station = ('k2j9', 0.0027914725115499475) +zone = ('gaz156', 0.0026557246294980313) + +[fips1304140] +centroid = (0.59369730701077317, -1.463125342083162) +description = Auburn city, GA +station = ('klzu', 0.0020180325802922148) +zone = ('gaz035', 0.0017573704624299807) + +[fips1304204] +centroid = (0.58233837262623611, -1.4324514422787493) +description = Augusta-Richmond County consolidated government (balance), GA +station = ('kags', 0.0015562480725428746) +zone = ('gaz065', 0.00010352172155080851) + +[fips1304252] +centroid = (0.59027525739968034, -1.4773211520871832) +description = Austell city, GA +station = ('kfty', 0.0019597366273293535) +zone = ('gaz032', 0.0023312124791604609) + +[fips13043] +centroid = (0.56555624647014735, -1.4324169545727301) +description = Candler County, GA +station = ('kcwv', 0.0046375333281433373) +zone = ('gaz099', 3.4280250065657252e-05) + +[fips1304390060] +centroid = (0.56457092084093385, -1.433622767646348) +description = Aline CCD, GA +station = ('kvdi', 0.0043570409906006418) +zone = ('gaz099', 0.00138735330199567) + +[fips1304391986] +centroid = (0.56649561758015565, -1.4326038618823262) +description = Metter CCD, GA +station = ('ksbo', 0.0050941629596751997) +zone = ('gaz099', 0.00095600186350545621) + +[fips1304392] +centroid = (0.60208871042802159, -1.452082574092624) +description = Avalon town, GA +station = ('ktoc', 0.0021862631361280519) +zone = ('gaz018', 0.0016918955311912625) + +[fips1304392430] +centroid = (0.56508162163335995, -1.4309184323302602) +description = Pulaski CCD, GA +station = ('kcwv', 0.0035255382074566859) +zone = ('gaz099', 0.0013797298882973665) + +[fips1304448] +centroid = (0.57933452135721375, -1.440398100896005) +description = Avera city, GA +station = ('khqu', 0.0058674400256122491) +zone = ('gaz075', 0.0013508258966188106) + +[fips13045] +centroid = (0.58612060583506298, -1.4849353254819337) +description = Carroll County, GA +station = ('kctj', 0.0013094912213344021) +zone = ('gaz042', 1.552894756669429e-05) + +[fips1304590342] +centroid = (0.58526158968381647, -1.4878125007538463) +description = Bowdon CCD, GA +station = ('kctj', 0.0021882122783603549) +zone = ('gaz042', 0.0025615101975138142) + +[fips1304590552] +centroid = (0.5861654433435467, -1.4841408166998407) +description = Carrollton CCD, GA +station = ('kctj', 0.0018483250541668677) +zone = ('gaz042', 0.00065080539633808059) + +[fips1304592112] +centroid = (0.58717345825303602, -1.4866888752347049) +description = Mount Zion CCD, GA +station = ('kctj', 0.00050095293753319933) +zone = ('gaz042', 0.0018043807404303782) + +[fips1304592592] +centroid = (0.58397437445388545, -1.4853060508683498) +description = Roopville CCD, GA +station = ('kctj', 0.0030613359991173471) +zone = ('gaz042', 0.0021798371338041982) + +[fips1304592976] +centroid = (0.58860663536831126, -1.484101686418011) +description = Temple CCD, GA +station = ('kctj', 0.0023727358193634919) +zone = ('gaz042', 0.0025683809626749262) + +[fips1304593216] +centroid = (0.58854177893330706, -1.4826697310332122) +description = Villa Rica CCD, GA +station = ('kctj', 0.0033012507501338504) +zone = ('gaz042', 0.0030538714176617291) + +[fips1304593372] +centroid = (0.58502392819957227, -1.4820955351625986) +description = Whitesburg CCD, GA +station = ('kctj', 0.0038891058918959142) +zone = ('gaz042', 0.002601661881440326) + +[fips1304644] +centroid = (0.58937554017027738, -1.4706970690705041) +description = Avondale Estates city, GA +station = ('kpdk', 0.0020645065231264387) +zone = ('gaz045', 0.00055972361804227267) + +[fips13047] +centroid = (0.60910931479746144, -1.4859271262826719) +description = Catoosa County, GA +station = ('kcha', 0.0025035378944687314) +zone = ('gaz003', 7.4200472455085811e-05) + +[fips1304790360] +centroid = (0.60944827519149114, -1.4870570698937056) +description = Boynton Ridge CCD, GA +station = ('kcha', 0.0019989637500726562) +zone = ('gaz003', 0.00095362209261978543) + +[fips1304790582] +centroid = (0.60930301143784771, -1.4845310374140015) +description = Catoosa Springs CCD, GA +station = ('kcha', 0.0029594271701114698) +zone = ('gaz003', 0.0011618403590841929) + +[fips1304791230] +centroid = (0.6099463398001328, -1.4877079206250667) +description = Fort Oglethorpe-Lakeview CCD, GA +station = ('kcha', 0.0016028607311418454) +zone = ('gaz003', 0.0016382255418383928) + +[fips1304792526] +centroid = (0.6088471314372268, -1.4860978020302245) +description = Ringgold CCD, GA +station = ('kcha', 0.0027076323883489053) +zone = ('gaz003', 0.00035965438282672171) + +[fips1304840] +centroid = (0.54769093407368574, -1.4688548740450238) +description = Baconton city, GA +station = ('kaby', 0.0027378436061843278) +zone = ('gaz145', 0.0027548336582416664) + +[fips1304896] +centroid = (0.53939283595824872, -1.4760781285939129) +description = Bainbridge city, GA +station = ('kbge', 0.0014055041373826382) +zone = ('gaz156', 0.0004092835108601931) + +[fips13049] +centroid = (0.53721066824777264, -1.4336072342160053) +description = Charlton County, GA +station = ('kjax', 0.008212865186557965) +zone = ('gaz164', 4.1264110903650944e-05) + +[fips1304980] +centroid = (0.60191765070803371, -1.4581866188053787) +description = Baldwin city, GA +station = ('ktoc', 0.004058241026735891) +zone = ('gaz024', 0.0024366712354028015) + +[fips1304991194] +centroid = (0.53977317810884329, -1.4342552749672706) +description = Folkston CCD, GA +station = ('kays', 0.0065548761133827557) +zone = ('gaz164', 0.0025952784835557904) + +[fips1304992646] +centroid = (0.53368505079886663, -1.4329894400206769) +description = St. George CCD, GA +station = ('kjax', 0.0062269804280195339) +zone = ('gaz164', 0.0035945929027294179) + +[fips1305036] +centroid = (0.5993832930077978, -1.4723672618981998) +description = Ball Ground city, GA +station = ('kcni', 0.0010315734970912014) +zone = ('gaz021', 0.0023949443294039212) + +[fips13051] +centroid = (0.55806476972181196, -1.4153183478633771) +description = Chatham County, GA +station = ('ksvn', 0.0011304918743083544) +zone = ('gaz119', 0.0013043106642886537) + +[fips1305192058] +centroid = (0.55696079661004805, -1.4138075210496808) +description = Montgomery CCD, GA +station = ('ksvn', 0.0028223411392013253) +zone = ('gaz119', 0.00044519248913694104) + +[fips1305192393] +centroid = (0.55933796995784935, -1.418450847351564) +description = Pooler-Bloomingdale CCD, GA +station = ('ksav', 0.001599605876760145) +zone = ('gaz118', 0.00082339399769909094) + +[fips1305192406] +centroid = (0.56150847886892208, -1.4171714686499748) +description = Port Wentworth CCD, GA +station = ('ksav', 0.00096737802601832873) +zone = ('gaz118', 0.0017135259332445021) + +[fips1305192712] +centroid = (0.55704856921813084, -1.415788225404599) +description = Savannah CCD, GA +station = ('ksvn', 0.0018081218316970326) +zone = ('gaz119', 0.0012520202323117594) + +[fips1305193127] +centroid = (0.558371040098952, -1.4121232957747987) +description = Tybee Island-Wilmington Island CCD, GA +station = ('ksvn', 0.003596511902219312) +zone = ('gaz119', 0.0022641501294994918) + +[fips13053] +centroid = (0.5645694198577772, -1.4798301327000951) +description = Chattahoochee County, GA +station = ('klsf', 0.00071212458169957963) +zone = ('gaz090', 1.693993995409554e-05) + +[fips1305344] +centroid = (0.57687001173364261, -1.4687396299545148) +description = Barnesville city, GA +station = ('kopn', 0.0023579270648751002) +zone = ('gaz070', 0.00046561595639830642) + +[fips1305390834] +centroid = (0.56307958935498226, -1.4794682037731091) +description = Cusseta CCD, GA +station = ('klsf', 0.0015798362513355134) +zone = ('gaz090', 0.001510332888787747) + +[fips1305391212] +centroid = (0.56499367449235194, -1.47999410638332) +description = Fort Benning CCD, GA +station = ('klsf', 0.00085444587555952344) +zone = ('gaz090', 0.00045850173563030184) + +[fips13055] +centroid = (0.60168793047188618, -1.4895562941160987) +description = Chattooga County, GA +station = ('krmg', 0.0033633756055158003) +zone = ('gaz011', 1.4417888007955925e-05) + +[fips1305591788] +centroid = (0.60184658090089249, -1.4875441738346447) +description = Little Sand Mountain CCD, GA +station = ('krmg', 0.0024983587985582404) +zone = ('gaz011', 0.0016665137688101682) + +[fips1305591860] +centroid = (0.59974338933906934, -1.4908031747870161) +description = Lyerly CCD, GA +station = ('krmg', 0.0036099055296330848) +zone = ('gaz011', 0.0022117585096938087) + +[fips1305591980] +centroid = (0.60241829840396821, -1.4914506744862135) +description = Menlo CCD, GA +station = ('k4a9', 0.003919290437956296) +zone = ('gaz011', 0.0017162057276158629) + +[fips1305592892] +centroid = (0.60186097986722142, -1.4898245861287152) +description = Summerville CCD, GA +station = ('krmg', 0.0036440317586817722) +zone = ('gaz011', 0.00027092497696175972) + +[fips1305593090] +centroid = (0.60300554933738681, -1.488908445351051) +description = Trion CCD, GA +station = ('krmg', 0.0040363947138303442) +zone = ('gaz011', 0.0014089873941693107) + +[fips1305680] +centroid = (0.57388549871273231, -1.4394136653847101) +description = Bartow town, GA +station = ('ksbo', 0.0048001577824478654) +zone = ('gaz076', 0.0031336149249265991) + +[fips13057] +centroid = (0.59767608174666709, -1.4743678804598837) +description = Cherokee County, GA +station = ('kcni', 0.0014094340439947078) +zone = ('gaz021', 2.0698201015657964e-05) + +[fips1305708] +centroid = (0.53919510760729028, -1.4615245260932328) +description = Barwick city, GA +station = ('ktvi', 0.0021343201933380252) +zone = ('gaz158', 0.0027494735392375323) + +[fips1305790204] +centroid = (0.59938055284087222, -1.4726444201834168) +description = Ball Ground CCD, GA +station = ('kcni', 0.00084048152328443663) +zone = ('gaz021', 0.0022389737895487233) + +[fips1305790540] +centroid = (0.59750282291182155, -1.4754821859208191) +description = Canton CCD, GA +station = ('kcni', 0.0021633968589284606) +zone = ('gaz021', 0.00091696201920640134) + +[fips1305791512] +centroid = (0.59629896460696596, -1.4740526041838031) +description = Holly Springs CCD, GA +station = ('kcni', 0.0026110446575553976) +zone = ('gaz021', 0.0013981888234920392) + +[fips1305791692] +centroid = (0.59778780027208722, -1.471887243994024) +description = Lathemtown CCD, GA +station = ('kcni', 0.0016756963683118933) +zone = ('gaz021', 0.0020733274238442616) + +[fips1305793234] +centroid = (0.59909295748672864, -1.4762060961346688) +description = Waleska CCD, GA +station = ('kcni', 0.0022925215566947758) +zone = ('gaz021', 0.0020679898763364818) + +[fips1305793426] +centroid = (0.59539631522441949, -1.4755763987938422) +description = Woodstock CCD, GA +station = ('kryy', 0.0019240470114320477) +zone = ('gaz021', 0.0024749526881223324) + +[fips13059] +centroid = (0.59257827170756439, -1.4550309064381404) +description = Clarke County, GA +station = ('kahn', 0.00049085097370071026) +zone = ('gaz036', 1.6763495072273394e-05) + +[fips1305990138] +centroid = (0.59213261933636019, -1.4547738717991989) +description = Athens CCD, GA +station = ('kahn', 0.00049154866778623751) +zone = ('gaz036', 0.00048114245369335301) + +[fips1305990318] +centroid = (0.59266141919312942, -1.4569857101069592) +description = Bogart CCD, GA +station = ('kahn', 0.0021143091104167998) +zone = ('gaz036', 0.0016206251899205822) + +[fips1305993402] +centroid = (0.59317479033931109, -1.4543331587097781) +description = Winterville CCD, GA +station = ('kahn', 0.00064177692865472044) +zone = ('gaz036', 0.00084554534398432958) + +[fips1306016] +centroid = (0.55438671521603677, -1.4372810824782831) +description = Baxley city, GA +station = ('kamg', 0.0046008781958418654) +zone = ('gaz135', 0.00094300702154499489) + +[fips13061] +centroid = (0.55187015987417121, -1.4834004131245597) +description = Clay County, GA +station = ('kbij', 0.0041292584627669205) +zone = ('gaz121', 0.00021556468420648624) + +[fips1306190312] +centroid = (0.55086722387280507, -1.4825271899932018) +description = Bluffton CCD, GA +station = ('kbij', 0.0029398061568565994) +zone = ('gaz121', 0.0012505732097845162) + +[fips1306191218] +centroid = (0.55331996997721777, -1.484074564001435) +description = Fort Gaines CCD, GA +station = ('keuf', 0.0045870196055488449) +zone = ('gaz121', 0.0015344633995514566) + +[fips13063] +centroid = (0.58559709432592733, -1.4732843800602453) +description = Clayton County, GA +station = ('katl', 0.0017316708358084973) +zone = ('gaz055', 0.00082407774663681454) + +[fips1306390726] +centroid = (0.58680931275789994, -1.473603967299578) +description = College Park CCD, GA +station = ('katl', 0.00049487383787306819) +zone = ('gaz055', 0.0017562885118309361) + +[fips1306391200] +centroid = (0.58650566037463792, -1.471807517353793) +description = Forest Park-Morrow CCD, GA +station = ('katl', 0.0017214915970644054) +zone = ('gaz055', 0.0011696648858030003) + +[fips1306391620] +centroid = (0.5842953579566198, -1.4720250202851766) +description = Jonesboro CCD, GA +station = ('katl', 0.0032951280956489042) +zone = ('gaz055', 0.001147824357611393) + +[fips1306392538] +centroid = (0.58559709432592733, -1.4732843800602453) +description = Riverdale CCD, GA +station = ('katl', 0.0017316708358084973) +zone = ('gaz055', 0.00082407774663681454) + +[fips13065] +centroid = (0.53961484183910247, -1.4434329143059577) +description = Clinch County, GA +station = ('khoe', 0.0026812136525791543) +zone = ('gaz163', 7.0933974027742827e-05) + +[fips1306591158] +centroid = (0.53817691742826179, -1.4428676196145294) +description = Fargo CCD, GA +station = ('khoe', 0.0041970618943009104) +zone = ('gaz163', 0.0014944907797774121) + +[fips1306591530] +centroid = (0.54224866585340947, -1.4446775260488474) +description = Homerville CCD, GA +station = ('khoe', 0.00016051089430633165) +zone = ('gaz163', 0.0028631163846190165) + +[fips1306688] +centroid = (0.5612110224045046, -1.4307900110038985) +description = Bellville city, GA +station = ('kcwv', 0.0017811300326955051) +zone = ('gaz115', 0.0013498344422782419) + +[fips13067] +centroid = (0.59236370092932422, -1.4760976588282426) +description = Cobb County, GA +station = ('kmge', 0.00092647654868685981) +zone = ('gaz032', 4.5689766863727395e-05) + +[fips1306790018] +centroid = (0.59334384293065934, -1.4776836569728222) +description = Acworth-Kennesaw CCD, GA +station = ('kryy', 0.0010056319846175716) +zone = ('gaz032', 0.0015946808500186243) + +[fips1306790174] +centroid = (0.59070052432522135, -1.4771303003334775) +description = Austell CCD, GA +station = ('kfty', 0.0020018116985221607) +zone = ('gaz032', 0.0018789955129121713) + +[fips1306791140] +centroid = (0.59178645073251968, -1.4755984597555871) +description = Fair Oaks CCD, GA +station = ('kmge', 0.0004521653609084182) +zone = ('gaz032', 0.00075413760527623689) + +[fips1306791866] +centroid = (0.58999000078673436, -1.4758629294971417) +description = Mableton CCD, GA +station = ('kfty', 0.00073317266270118086) +zone = ('gaz032', 0.0024120728360876422) + +[fips1306791926] +centroid = (0.59273973211666653, -1.4754199649329858) +description = Marietta CCD, GA +station = ('kmge', 0.00082762615059348845) +zone = ('gaz032', 0.00069301844629798576) + +[fips1306792202] +centroid = (0.59347181047141551, -1.4741003214855528) +description = Northeast Cobb CCD, GA +station = ('kmge', 0.0017241074106725349) +zone = ('gaz033', 0.0019219066873349207) + +[fips1306792418] +centroid = (0.59104440654774182, -1.4779660337925027) +description = Powder Springs CCD, GA +station = ('kmge', 0.0025528816291211578) +zone = ('gaz032', 0.0020261678827241331) + +[fips1306792784] +centroid = (0.5911778195157642, -1.4754345209789472) +description = Smyrna CCD, GA +station = ('kmge', 0.00082930883491128004) +zone = ('gaz032', 0.0013476976735169051) + +[fips1306793222] +centroid = (0.59076218680769421, -1.4745327093544418) +description = Vinings CCD, GA +station = ('kfty', 0.0012241311123485719) +zone = ('gaz032', 0.0021064036473397089) + +[fips1306884] +centroid = (0.58902863852815091, -1.4706104658330199) +description = Belvedere Park CDP, GA +station = ('kpdk', 0.0024184893759053522) +zone = ('gaz045', 0.00062618663332461002) + +[fips13069] +centroid = (0.55063820176835843, -1.445916936710566) +description = Coffee County, GA +station = ('kdqh', 0.0012871297815372732) +zone = ('gaz132', 6.4883127788545054e-05) + +[fips1306990084] +centroid = (0.55000295428051005, -1.4488320728937094) +description = Ambrose CCD, GA +station = ('kdqh', 0.0023440729053561512) +zone = ('gaz132', 0.00250163858640212) + +[fips1306990438] +centroid = (0.55297896754796316, -1.4469462969968072) +description = Broxton CCD, GA +station = ('kdqh', 0.0036653819992265536) +zone = ('gaz132', 0.002478265017689398) + +[fips1306990972] +centroid = (0.54901591822862972, -1.4457714809707047) +description = Douglas CCD, GA +station = ('kdqh', 0.00050062045857000815) +zone = ('gaz132', 0.0016324675054680514) + +[fips1306992166] +centroid = (0.54934051456291566, -1.4430248388735487) +description = Nicholls CCD, GA +station = ('kamg', 0.0028554964883202964) +zone = ('gaz132', 0.0028434851395109295) + +[fips1306993324] +centroid = (0.55164593742516743, -1.4441249199010808) +description = West Green CCD, GA +station = ('kdqh', 0.0028731084269259513) +zone = ('gaz132', 0.00188416287004003) + +[fips13071] +centroid = (0.54436397000024161, -1.4620577939928872) +description = Colquitt County, GA +station = ('kmgr', 0.001899574011662019) +zone = ('gaz146', 2.7552851469176799e-05) + +[fips1307190258] +centroid = (0.54366997472977108, -1.4590559149459195) +description = Berlin-Ellenton CCD, GA +station = ('kmgr', 0.003272424678467536) +zone = ('gaz147', 0.0024990461146253808) + +[fips1307190960] +centroid = (0.54613238995823976, -1.4644114926622491) +description = Doerun CCD, GA +station = ('kmgr', 0.0039077365726678847) +zone = ('gaz146', 0.0027052283073177104) + +[fips1307191254] +centroid = (0.54365592482929248, -1.4646444941173904) +description = Funston CCD, GA +station = ('kmgr', 0.0020525983080778407) +zone = ('gaz146', 0.0023301130061613592) + +[fips1307192100] +centroid = (0.5432876778104142, -1.4616972962358878) +description = Moultrie CCD, GA +station = ('kmgr', 0.0011060684772510468) +zone = ('gaz146', 0.0010929963769266457) + +[fips1307192184] +centroid = (0.54595162620761073, -1.4601193440591598) +description = Norman Park CCD, GA +station = ('ktma', 0.0036057577929564356) +zone = ('gaz146', 0.0023015951935789424) + +[fips1307248] +centroid = (0.59317351624895709, -1.4692846788266203) +description = Berkeley Lake city, GA +station = ('kpdk', 0.0024622695496604387) +zone = ('gaz034', 0.0023598316774617848) + +[fips13073] +centroid = (0.5855676680747387, -1.4355567320838978) +description = Columbia County, GA +station = ('kdnl', 0.0034941473886940214) +zone = ('gaz064', 0.0002149602782445059) + +[fips1307304] +centroid = (0.54222986865736544, -1.4595056339342809) +description = Berlin city, GA +station = ('kmgr', 0.002700693327907074) +zone = ('gaz146', 0.0030274431166951868) + +[fips1307390102] +centroid = (0.58645570905144584, -1.4364048399273195) +description = Appling CCD, GA +station = ('khqu', 0.0033894046980446698) +zone = ('gaz064', 0.0011273941927504489) + +[fips1307391110] +centroid = (0.58538138908367332, -1.433814439704802) +description = Evans CCD, GA +station = ('kdnl', 0.0021427186627278158) +zone = ('gaz064', 0.0016380362967943953) + +[fips1307391383] +centroid = (0.5837797876955807, -1.4358706644564541) +description = Grovetown-Harlem CCD, GA +station = ('khqu', 0.003866173661166334) +zone = ('gaz064', 0.0016787399872252088) + +[fips13075] +centroid = (0.54372128740977965, -1.4561203758638201) +description = Cook County, GA +station = ('ktma', 0.0047215058234058513) +zone = ('gaz147', 2.3366598246069033e-05) + +[fips1307590030] +centroid = (0.54317850746570195, -1.4561233778301335) +description = Adel-Sparks CCD, GA +station = ('kvad', 0.004374331113833914) +zone = ('gaz147', 0.00056148738141446235) + +[fips1307591722] +centroid = (0.54559962820406849, -1.4563260454628753) +description = Lenox CCD, GA +station = ('ktma', 0.0028418807815704032) +zone = ('gaz147', 0.001866774434378317) + +[fips1307612] +centroid = (0.59229950771943585, -1.4610202132058689) +description = Bethlehem town, GA +station = ('kwdr', 0.0010086146330439744) +zone = ('gaz035', 0.00099436669905820455) + +[fips1307640] +centroid = (0.59024042062781057, -1.4626298605618135) +description = Between town, GA +station = ('k9a1', 0.0033576993948653505) +zone = ('gaz047', 0.0012384882085810995) + +[fips13077] +centroid = (0.58211786772853913, -1.4793783891298014) +description = Coweta County, GA +station = ('kffc', 0.0028596159838748599) +zone = ('gaz053', 1.9943421549617399e-05) + +[fips1307791344] +centroid = (0.58076658146176763, -1.4810576053097302) +description = Grantville CCD, GA +station = ('kffc', 0.0045419290798471004) +zone = ('gaz053', 0.0019432989486132108) + +[fips1307792070] +centroid = (0.58073146543721754, -1.4792021806885201) +description = Moreland CCD, GA +station = ('kffc', 0.0031552275663847234) +zone = ('gaz053', 0.0014065440592546253) + +[fips1307792154] +centroid = (0.583113647879972, -1.4802157282917381) +description = Newnan CCD, GA +station = ('kffc', 0.0036272513285824891) +zone = ('gaz053', 0.0011984204635473413) + +[fips1307792724] +centroid = (0.58111145852196167, -1.4766191108488611) +description = Senoia CCD, GA +station = ('kffc', 0.0013606667731240398) +zone = ('gaz054', 0.002620248041096577) + +[fips13079] +centroid = (0.57088752920328911, -1.4657132290315567) +description = Crawford County, GA +station = ('kwrb', 0.0057270731657693688) +zone = ('gaz081', 0.00013789956134101659) + +[fips1307992544] +centroid = (0.5717892884679171, -1.4670204282814228) +description = Roberta CCD, GA +station = ('kopn', 0.0045785788104064145) +zone = ('gaz081', 0.0012841664791996218) + +[fips1307993480] +centroid = (0.57012117258203099, -1.4648873043229278) +description = Zenith CCD, GA +station = ('kwrb', 0.0049091118831229071) +zone = ('gaz081', 0.0011713602497780129) + +[fips13081] +centroid = (0.55701751981073788, -1.4617715076356825) +description = Crisp County, GA +station = ('kacj', 0.0074369186357535486) +zone = ('gaz106', 0.00026180674099361684) + +[fips1308190108] +centroid = (0.55608106340058028, -1.4609235394186011) +description = Arabi CCD, GA +station = ('kfzg', 0.0071836452451897823) +zone = ('gaz106', 0.0014312364398360259) + +[fips1308190792] +centroid = (0.55750584548215332, -1.46229863197637) +description = Cordele CCD, GA +station = ('kacj', 0.0068188846552723233) +zone = ('gaz106', 0.00041340803607505601) + +[fips1308200] +centroid = (0.59024813498310447, -1.4562705963525393) +description = Bishop town, GA +station = ('kahn', 0.0027488528581722078) +zone = ('gaz037', 0.00028277184933259966) + +[fips1308284] +centroid = (0.54627706029993761, -1.4354193048585957) +description = Blackshear city, GA +station = ('kays', 0.002488921713053959) +zone = ('gaz151', 0.0011321631765783165) + +[fips13083] +centroid = (0.60828955110109217, -1.492364738322068) +description = Dade County, GA +station = ('kcha', 0.0054000690605202082) +zone = ('gaz001', 4.5120799757884777e-05) + +[fips1308391809] +centroid = (0.60741562983803354, -1.4914409704555722) +description = Lookout Mountain CCD, GA +station = ('kcha', 0.0054212641849984405) +zone = ('gaz001', 0.0011705546897249515) + +[fips1308392682] +centroid = (0.60950623757594991, -1.4932512259557409) +description = Sand Mountain CCD, GA +station = ('kcha', 0.0054617276810812691) +zone = ('gaz001', 0.0013978981847895145) + +[fips1308393084] +centroid = (0.60828187165238345, -1.4920041009387284) +description = Trenton CCD, GA +station = ('kcha', 0.0051678500048879588) +zone = ('gaz001', 0.00027539417946930464) + +[fips1308480] +centroid = (0.60869520052584081, -1.4652852393923828) +description = Blairsville city, GA +station = ('krhp', 0.0057232954645001352) +zone = ('gaz008', 0.00088893289519324976) + +[fips13085] +centroid = (0.60114099664418874, -1.4691009480162627) +description = Dawson County, GA +station = ('kcni', 0.0042484647645593364) +zone = ('gaz014', 4.4751702572994125e-05) + +[fips1308536] +centroid = (0.54770070791749681, -1.4822564196130474) +description = Blakely city, GA +station = ('kbij', 0.00064433242421170316) +zone = ('gaz142', 0.0010710280698908458) + +[fips1308590284] +centroid = (0.60007816094289435, -1.4680333126595251) +description = Blacks Mill CCD, GA +station = ('kcni', 0.0046305128009759659) +zone = ('gaz014', 0.0013674049553904356) + +[fips1308590906] +centroid = (0.6019711974094849, -1.4700327618506099) +description = Dawsonville CCD, GA +station = ('kcni', 0.0041948769688822081) +zone = ('gaz014', 0.0011477890523694863) + +[fips13087] +centroid = (0.53892208575240075, -1.4761601067088788) +description = Decatur County, GA +station = ('kbge', 0.0017577512783596338) +zone = ('gaz156', 0.00010591594230535883) + +[fips1308790156] +centroid = (0.53674391484591188, -1.4744029615778487) +description = Attapulgus CCD, GA +station = ('k2j9', 0.0028886618001238138) +zone = ('gaz156', 0.002653696058025267) + +[fips1308790192] +centroid = (0.53940346501339331, -1.4761780137870044) +description = Bainbridge CCD, GA +station = ('kbge', 0.0013436290210315823) +zone = ('gaz156', 0.0004316887530588154) + +[fips1308790390] +centroid = (0.54012102222876579, -1.4777947297264193) +description = Brinson CCD, GA +station = ('kbge', 0.00066829807038594046) +zone = ('gaz156', 0.0018731086539377625) + +[fips1308790702] +centroid = (0.53880457273386395, -1.4738276836030988) +description = Climax CCD, GA +station = ('kbge', 0.0032866863821041608) +zone = ('gaz156', 0.0019241906779699008) + +[fips1308791122] +centroid = (0.53688479782313292, -1.4778419757892709) +description = Faceville CCD, GA +station = ('k2j9', 0.0033747931272452084) +zone = ('gaz156', 0.0025977386623815255) + +[fips1308792104] +centroid = (0.54099607795583815, -1.4741387710889742) +description = Mount Pleasant CCD, GA +station = ('kbge', 0.0026180915485531919) +zone = ('gaz156', 0.002600787435227684) + +[fips1308844] +centroid = (0.56067822574374837, -1.4190934426755633) +description = Bloomingdale city, GA +station = ('ksav', 0.0016032221022555051) +zone = ('gaz118', 0.0014455753979264714) + +[fips13089] +centroid = (0.58940922502484072, -1.4700270022640785) +description = DeKalb County, GA +station = ('kpdk', 0.0022377738422510785) +zone = ('gaz045', 1.4656593082380158e-05) + +[fips1308928] +centroid = (0.60852297143525391, -1.4717207221300912) +description = Blue Ridge city, GA +station = ('krhp', 0.0087286378944392857) +zone = ('gaz006', 6.0535541413757897e-05) + +[fips1308956] +centroid = (0.55012460372937411, -1.4812455598168774) +description = Bluffton town, GA +station = ('kbij', 0.0021141986870761059) +zone = ('gaz121', 0.0024886827249345944) + +[fips1308990150] +centroid = (0.58882066509448328, -1.4706878188254686) +description = Atlanta-Decatur CCD, GA +station = ('kpdk', 0.0026072590639010865) +zone = ('gaz045', 0.00081633604867263425) + +[fips1308990612] +centroid = (0.59179879021033122, -1.471462343587626) +description = Chamblee-Doraville CCD, GA +station = ('kpdk', 0.00044095263802573195) +zone = ('gaz033', 0.00083355739115437469) + +[fips1308991770] +centroid = (0.58843246896225465, -1.4681033003625301) +description = Lithonia CCD, GA +station = ('kpdk', 0.0039717734172515697) +zone = ('gaz046', 0.0016704543933825646) + +[fips1308992868] +centroid = (0.59013262909320741, -1.468903045132379) +description = Stone Mountain CCD, GA +station = ('kpdk', 0.0023558230779296917) +zone = ('gaz045', 0.0011720422319174866) + +[fips1308993096] +centroid = (0.59093752258434962, -1.4701812021034921) +description = Tucker CCD, GA +station = ('kpdk', 0.0010365449322069654) +zone = ('gaz045', 0.0015191191165505834) + +[fips1309040] +centroid = (0.58121972129546284, -1.4347545613063888) +description = Blythe city, GA +station = ('kags', 0.0036623522045166885) +zone = ('gaz065', 0.0021746299822273047) + +[fips1309068] +centroid = (0.59249782948234009, -1.4579389565845207) +description = Bogart town, GA +station = ('kwdr', 0.0020357566149650057) +zone = ('gaz037', 0.0024156763466339484) + +[fips13091] +centroid = (0.56130933680126949, -1.4513602695816861) +description = Dodge County, GA +station = ('kezm', 0.0010277339989254229) +zone = ('gaz109', 0.00026433917066282289) + +[fips1309190630] +centroid = (0.56058432702999095, -1.4491340672141824) +description = Chauncey CCD, GA +station = ('kezm', 0.0022069001920166651) +zone = ('gaz109', 0.0022551794018631542) + +[fips1309190648] +centroid = (0.56486783625328307, -1.4521931930606153) +description = Chester CCD, GA +station = ('kezm', 0.0028585110489668833) +zone = ('gaz096', 0.0021888739624265361) + +[fips1309191014] +centroid = (0.56254656580142315, -1.4518259234261182) +description = Eastman CCD, GA +station = ('kezm', 0.00087684058445570805) +zone = ('gaz109', 0.0010594774324480416) + +[fips1309192496] +centroid = (0.5589887993876953, -1.4523201657636977) +description = Rhine CCD, GA +station = ('kezm', 0.0034834936283045662) +zone = ('gaz109', 0.0026024262435750825) + +[fips1309272] +centroid = (0.58395995803426404, -1.4719570920706888) +description = Bonanza CDP, GA +station = ('katl', 0.0036254703477204982) +zone = ('gaz055', 0.0014876726277799723) + +[fips13093] +centroid = (0.56115817383475419, -1.4627110009187387) +description = Dooly County, GA +station = ('kacj', 0.00585216706643893) +zone = ('gaz105', 0.00015461333283366306) + +[fips1309390480] +centroid = (0.56158008972813134, -1.4647973675065724) +description = Byromville CCD, GA +station = ('kacj', 0.0042006179237066461) +zone = ('gaz105', 0.0019199685627647506) + +[fips1309393144] +centroid = (0.56250363070182419, -1.4614495991084446) +description = Unadilla CCD, GA +station = ('kacj', 0.0071788276026862729) +zone = ('gaz105', 0.0015691379468200503) + +[fips1309393204] +centroid = (0.56019276241230609, -1.4618793340768708) +description = Vienna CCD, GA +station = ('kacj', 0.0065164901166260593) +zone = ('gaz105', 0.0012046206065814886) + +[fips1309460] +centroid = (0.53740796026641813, -1.4624000705124958) +description = Boston city, GA +station = ('ktvi', 0.0023703679850180415) +zone = ('gaz158', 0.0023237267392985988) + +[fips1309488] +centroid = (0.58883387723692082, -1.4575925261812925) +description = Bostwick city, GA +station = ('kahn', 0.0045366568833896427) +zone = ('gaz037', 0.0020304022359479896) + +[fips13095] +centroid = (0.55039076644030316, -1.4698193255363836) +description = Dougherty County, GA +station = ('kaby', 0.00021699045134942986) +zone = ('gaz125', 4.2412673331346042e-05) + +[fips1309544] +centroid = (0.58534567964717754, -1.4879625816162252) +description = Bowdon city, GA +station = ('kctj', 0.0022074815494079582) +zone = ('gaz042', 0.0026533567003609198) + +[fips1309590996] +centroid = (0.55038535591962201, -1.4671485179952268) +description = East Dougherty CCD, GA +station = ('kaby', 0.0020616896558829593) +zone = ('gaz125', 0.0023056461850686776) + +[fips1309593312] +centroid = (0.55021960200056008, -1.4713381285047613) +description = West Dougherty CCD, GA +station = ('kaby', 0.0015160264553192799) +zone = ('gaz125', 0.001273242099595271) + +[fips1309656] +centroid = (0.59991242447712489, -1.4500754279995378) +description = Bowersville town, GA +station = ('ktoc', 0.0049190751607394653) +zone = ('gaz028', 0.0017573652727631321) + +[fips13097] +centroid = (0.58816403732329792, -1.4794448163611325) +description = Douglas County, GA +station = ('kfty', 0.0039037210294618528) +zone = ('gaz043', 4.5845155767423312e-05) + +[fips1309712] +centroid = (0.59699664252215812, -1.449166757231072) +description = Bowman city, GA +station = ('kahn', 0.0062411902601686572) +zone = ('gaz028', 0.0027212457320368298) + +[fips1309790276] +centroid = (0.58767035349107877, -1.4792467563976162) +description = Bill Arp CCD, GA +station = ('kfty', 0.0039711399979183585) +zone = ('gaz043', 0.00056481021649867869) + +[fips1309790974] +centroid = (0.5889881643427971, -1.4778664976652611) +description = Douglasville-Lithia Springs CCD, GA +station = ('kfty', 0.002392566004363128) +zone = ('gaz043', 0.0015519822701299366) + +[fips1309791146] +centroid = (0.58691596982848937, -1.4809328317215051) +description = Fairplay CCD, GA +station = ('kctj', 0.0043424168130080454) +zone = ('gaz043', 0.0017679092231595119) + +[fips1309793396] +centroid = (0.58889526046671348, -1.4807229209723678) +description = Winston CCD, GA +station = ('kpuj', 0.0032886716759438512) +zone = ('gaz043', 0.0012477850171971445) + +[fips1309852] +centroid = (0.54281568842079742, -1.4780192663346883) +description = Boykin CDP, GA +station = ('kbge', 0.0024659835938030034) +zone = ('gaz143', 0.0012993880840366501) + +[fips13099] +centroid = (0.54671026847357507, -1.4819018734287974) +description = Early County, GA +station = ('kbij', 0.0013463848131044934) +zone = ('gaz142', 5.0389518697528432e-05) + +[fips1309990294] +centroid = (0.54777816562970028, -1.4826448949979565) +description = Blakely CCD, GA +station = ('kbij', 0.00091953085190594423) +zone = ('gaz142', 0.0012848561046294791) + +[fips1309990870] +centroid = (0.54724802186940702, -1.4787938783633086) +description = Damascus CCD, GA +station = ('kbij', 0.0025293000584621209) +zone = ('gaz142', 0.0026689634051693992) + +[fips1309991584] +centroid = (0.54453565803876025, -1.4834205018642501) +description = Jakin CCD, GA +station = ('kbij', 0.0038245654989644919) +zone = ('gaz142', 0.0025368744584754045) + +[fips1310076] +centroid = (0.59535006399924173, -1.4628613784870903) +description = Braselton town, GA +station = ('kgvl', 0.0027278858689852243) +zone = ('gaz035', 0.0025401625169057776) + +[fips13101] +centroid = (0.53596443334867871, -1.4457632430166356) +description = Echols County, GA +station = ('khoe', 0.0062142875236670236) +zone = ('gaz162', 0.0008673051126954906) + +[fips1310104] +centroid = (0.5931247517496564, -1.4828038072263505) +description = Braswell town, GA +station = ('kpuj', 0.0013109562759049741) +zone = ('gaz031', 0.0017221073413820219) + +[fips1310132] +centroid = (0.58836401714899145, -1.4861807400762792) +description = Bremen city, GA +station = ('kctj', 0.001410055279554272) +zone = ('gaz041', 0.0016899638664818635) + +[fips1310191008] +centroid = (0.53596443334867871, -1.4457632430166356) +description = East Echols CCD, GA +station = ('khoe', 0.0062142875236670236) +zone = ('gaz162', 0.0008673051126954906) + +[fips1310193318] +centroid = (0.53660847729595718, -1.4501789085708885) +description = West Echols CCD, GA +station = ('kvld', 0.0027436180467230349) +zone = ('gaz162', 0.0029931361342713631) + +[fips13103] +centroid = (0.56481840852886667, -1.4197090552093268) +description = Effingham County, GA +station = ('ksav', 0.0047716629036249651) +zone = ('gaz101', 0.00010825780475895875) + +[fips1310391386] +centroid = (0.56481840852886667, -1.4197090552093268) +description = Guyton-Springfield CCD, GA +station = ('ksav', 0.0047716629036249651) +zone = ('gaz101', 0.00010825780475895875) + +[fips1310392520] +centroid = (0.56291318966409709, -1.4183868810344784) +description = Rincon CCD, GA +station = ('ksav', 0.0025731495723063554) +zone = ('gaz101', 0.0022777964969718147) + +[fips1310392748] +centroid = (0.56692112885179191, -1.4208033417437422) +description = Shawnee CCD, GA +station = ('kjyl', 0.0039927887027189513) +zone = ('gaz101', 0.0022210811405747009) + +[fips13105] +centroid = (0.59541937102383835, -1.4458666537748162) +description = Elbert County, GA +station = ('kiiy', 0.0058637862225077381) +zone = ('gaz029', 4.1528680774506537e-05) + +[fips1310590354] +centroid = (0.59664117131340444, -1.4489394455492921) +description = Bowman CCD, GA +station = ('kahn', 0.0061315040502164624) +zone = ('gaz028', 0.0030018762895430806) + +[fips1310590719] +centroid = (0.59662272318321097, -1.4448426516493784) +description = Coldwater CCD, GA +station = ('kand', 0.0055990410130895008) +zone = ('gaz029', 0.0014303184507851409) + +[fips1310591044] +centroid = (0.59469420417292718, -1.4456340188388177) +description = Elberton CCD, GA +station = ('kiiy', 0.005129944188674066) +zone = ('gaz029', 0.00077626347529924854) + +[fips1310608] +centroid = (0.54067581003809728, -1.4789561416238663) +description = Brinson town, GA +station = ('kbge', 0.0015789144297840647) +zone = ('gaz155', 0.002018621149263189) + +[fips13107] +centroid = (0.56882200184672393, -1.436401837961006) +description = Emanuel County, GA +station = ('ksbo', 0.0011492727507855733) +zone = ('gaz086', 3.7577481688744443e-05) + +[fips1310790036] +centroid = (0.56827335759635955, -1.4400361021558488) +description = Adrian CCD, GA +station = ('ksbo', 0.0022861571167796446) +zone = ('gaz098', 0.0028554043153769964) + +[fips1310792238] +centroid = (0.5646277313080863, -1.4368067543474687) +description = Oak Park CCD, GA +station = ('kvdi', 0.0028556096377904522) +zone = ('gaz113', 0.0040190852964277672) + +[fips1310792886] +centroid = (0.57152172949358637, -1.435544218073161) +description = Summertown CCD, GA +station = ('ksbo', 0.0028097360990873353) +zone = ('gaz086', 0.0028243378864129046) + +[fips1310792916] +centroid = (0.56868225333351674, -1.437248985873339) +description = Swainsboro CCD, GA +station = ('ksbo', 0.00071883142942833834) +zone = ('gaz086', 0.00069378083533588799) + +[fips1310793120] +centroid = (0.56804955402637625, -1.4341468725674293) +description = Twin City CCD, GA +station = ('ksbo', 0.003198858522552272) +zone = ('gaz086', 0.0020708276365350351) + +[fips1310860] +centroid = (0.55554781295421851, -1.472435364645613) +description = Bronwood town, GA +station = ('kacj', 0.0054506051529838711) +zone = ('gaz124', 0.0014266456020625771) + +[fips13109] +centroid = (0.56115655067854986, -1.429208550715374) +description = Evans County, GA +station = ('kcwv', 0.00087888903147611663) +zone = ('gaz115', 8.6142054709140812e-05) + +[fips1310990678] +centroid = (0.56055088652152274, -1.4286802919106727) +description = Claxton CCD, GA +station = ('kcwv', 0.0014571679646008752) +zone = ('gaz115', 0.00081755839078387121) + +[fips1310992204] +centroid = (0.56230827599864841, -1.4296810462504737) +description = North Evans CCD, GA +station = ('kcwv', 0.00073009954435821899) +zone = ('gaz115', 0.0011425246427397074) + +[fips1311000] +centroid = (0.56529641930440289, -1.4254098066918233) +description = Brooklet city, GA +station = ('ktbr', 0.0019158865895595916) +zone = ('gaz100', 0.0010878360774332536) + +[fips1311056] +centroid = (0.58104785872401898, -1.4739494203184254) +description = Brooks town, GA +station = ('kffc', 0.0021349627147840039) +zone = ('gaz054', 0.0022266082832235806) + +[fips13111] +centroid = (0.6084887455286222, -1.471649181084052) +description = Fannin County, GA +station = ('krhp', 0.0087073636253845385) +zone = ('gaz006', 7.486688024598591e-06) + +[fips1311190306] +centroid = (0.60847265359291891, -1.4718671028944559) +description = Blue Ridge CCD, GA +station = ('krhp', 0.0088521759925116496) +zone = ('gaz006', 0.00017412654558560608) + +[fips1311191464] +centroid = (0.6094205244563845, -1.4751151257258324) +description = Higdon-Mobile CCD, GA +station = ('kdnn', 0.0060815609316267434) +zone = ('gaz006', 0.0029846792107015643) + +[fips1311191872] +centroid = (0.60995567731163092, -1.4723103118047074) +description = McCaysville CCD, GA +station = ('krhp', 0.0082647399957873676) +zone = ('gaz006', 0.0015575735490105085) + +[fips1311192034] +centroid = (0.6099259543544695, -1.4701328390299191) +description = Mineral Bluff CCD, GA +station = ('krhp', 0.0068272554880231063) +zone = ('gaz006', 0.0019009357068141516) + +[fips1311192082] +centroid = (0.6071111396967307, -1.4694474831392461) +description = Morganton CCD, GA +station = ('krhp', 0.0085691615717414793) +zone = ('gaz006', 0.0022800283412586489) + +[fips13113] +centroid = (0.5831619236870822, -1.4746974684358303) +description = Fayette County, GA +station = ('kffc', 0.0013300968908765837) +zone = ('gaz054', 2.2512064587684089e-05) + +[fips1311390432] +centroid = (0.58166343635119744, -1.473982302321533) +description = Brooks CCD, GA +station = ('kffc', 0.0017974429023073064) +zone = ('gaz054', 0.0016347985752599966) + +[fips1311391164] +centroid = (0.58410948039128241, -1.4740560250291372) +description = Fayetteville CCD, GA +station = ('kffc', 0.0023686752672563024) +zone = ('gaz054', 0.0010700065329242571) + +[fips1311392331] +centroid = (0.58349163383607638, -1.4757856463178636) +description = Peachtree City-Tyrone CCD, GA +station = ('kffc', 0.0011434822935576234) +zone = ('gaz054', 0.0009566158947032779) + +[fips13115] +centroid = (0.59801397748985319, -1.4872601564054675) +description = Floyd County, GA +station = ('krmg', 0.0016523563432388202) +zone = ('gaz019', 1.1700818376906101e-05) + +[fips1311504] +centroid = (0.55196269723111191, -1.4466592252414392) +description = Broxton city, GA +station = ('kdqh', 0.0026225939900944031) +zone = ('gaz132', 0.0014416596932412633) + +[fips1311560] +centroid = (0.54342868296068281, -1.4218658981923562) +description = Brunswick city, GA +station = ('kssi', 0.0012716530992913585) +zone = ('gaz154', 0.0011801790306664524) + +[fips1311590126] +centroid = (0.60074168276462503, -1.4861432154973613) +description = Armuchee CCD, GA +station = ('krmg', 0.0012452029015466415) +zone = ('gaz019', 0.0028899165633157324) + +[fips1311590588] +centroid = (0.59614062833722503, -1.4890753686407119) +description = Cave Spring CCD, GA +station = ('krmg', 0.0040216454196234756) +zone = ('gaz019', 0.0023889619898332689) + +[fips1311592586] +centroid = (0.59756116926871572, -1.4872083201266832) +description = Rome CCD, GA +station = ('krmg', 0.0020599975425097407) +zone = ('gaz019', 0.0004474073211810487) + +[fips1311592736] +centroid = (0.59951241246586029, -1.4846732642947467) +description = Shannon CCD, GA +station = ('krmg', 0.0014576198946035603) +zone = ('gaz019', 0.0026213935313456073) + +[fips1311616] +centroid = (0.59002052659535176, -1.4867298904721267) +description = Buchanan city, GA +station = ('kctj', 0.0031042818434378317) +zone = ('gaz041', 0.00044836110853601447) + +[fips1311672] +centroid = (0.58587915698634219, -1.4549280192787351) +description = Buckhead town, GA +station = ('k3j7', 0.0032725753776775518) +zone = ('gaz049', 0.0019468720914856525) + +[fips13117] +centroid = (0.59734143231588965, -1.4682990041315562) +description = Forsyth County, GA +station = ('kcni', 0.0045157410142927) +zone = ('gaz022', 3.0034805047695801e-05) + +[fips1311728] +centroid = (0.56406418194590979, -1.4751098199249062) +description = Buena Vista city, GA +station = ('klsf', 0.0046642342389728213) +zone = ('gaz091', 0.0006179380395574637) + +[fips1311784] +centroid = (0.59550660257985311, -1.4659339608220563) +description = Buford city, GA +station = ('klzu', 0.0025136990219672101) +zone = ('gaz022', 0.0026653401853620091) + +[fips1311790270] +centroid = (0.59537910627799484, -1.4690683103592503) +description = Big Creek CCD, GA +station = ('klzu', 0.003827690739846807) +zone = ('gaz022', 0.0020781373806043561) + +[fips1311790642] +centroid = (0.59828488749634767, -1.4661845551960577) +description = Chestatee CCD, GA +station = ('kgvl', 0.0025026070422645547) +zone = ('gaz022', 0.0019573332187879226) + +[fips1311790828] +centroid = (0.59723299500946325, -1.46845098740282) +description = Cumming CCD, GA +station = ('kcni', 0.0044364531721383946) +zone = ('gaz022', 0.00019284664661180876) + +[fips1311792772] +centroid = (0.59876741867464656, -1.4686127445178949) +description = Silver City CCD, GA +station = ('kcni', 0.0039922151161240708) +zone = ('gaz022', 0.0014488014514205197) + +[fips13119] +centroid = (0.59995963563339139, -1.452590255465444) +description = Franklin County, GA +station = ('ktoc', 0.0039266742371646323) +zone = ('gaz026', 2.8151026689067967e-05) + +[fips1311990546] +centroid = (0.60034128678092502, -1.4536013072478318) +description = Carnesville CCD, GA +station = ('ktoc', 0.0034209379565303846) +zone = ('gaz026', 0.00089002389076281647) + +[fips1311991698] +centroid = (0.60132535577307689, -1.45094819734529) +description = Lavonia CCD, GA +station = ('ktoc', 0.0033800714985653319) +zone = ('gaz026', 0.0019388353039095452) + +[fips1311992616] +centroid = (0.598970889158844, -1.4511424175844521) +description = Royston CCD, GA +station = ('ktoc', 0.0052638555366054359) +zone = ('gaz026', 0.0015763997323443176) + +[fips1311992688] +centroid = (0.59845606938938323, -1.4533483217727552) +description = Sandy Cross CCD, GA +station = ('k19a', 0.0046386025412551435) +zone = ('gaz026', 0.0016238955069445562) + +[fips13121] +centroid = (0.58974734766082959, -1.4742478890738089) +description = Fulton County, GA +station = ('kfty', 0.00071295973171275862) +zone = ('gaz033', 0.003009827740783733) + +[fips1312120] +centroid = (0.56823023051054278, -1.470218761588995) +description = Butler city, GA +station = ('kopn', 0.0069544214717152794) +zone = ('gaz080', 0.00019427144216417009) + +[fips1312190144] +centroid = (0.58925736392662476, -1.4743211230892228) +description = Atlanta CCD, GA +station = ('kfty', 0.00074297746193226731) +zone = ('gaz044', 0.0033117629372686028) + +[fips1312190732] +centroid = (0.58725426699740335, -1.4741288052589454) +description = College Park CCD, GA +station = ('katl', 0.000410126330215327) +zone = ('gaz044', 0.0022147251020751026) + +[fips1312191020] +centroid = (0.58764293436852999, -1.4742859023449173) +description = East Point CCD, GA +station = ('katl', 0.00063614734332134303) +zone = ('gaz044', 0.002246169285593879) + +[fips1312191128] +centroid = (0.58601326808606535, -1.4756394924463017) +description = Fairburn-Union City CCD, GA +station = ('katl', 0.0021066268169519925) +zone = ('gaz044', 0.001022492610318948) + +[fips1312192298] +centroid = (0.58563835390944441, -1.4787490583081171) +description = Palmetto CCD, GA +station = ('kffc', 0.0040183633011220739) +zone = ('gaz044', 0.0019768585462196873) + +[fips1312192604] +centroid = (0.59465647015449907, -1.4711359495642105) +description = Roswell-Alpharetta CCD, GA +station = ('kpdk', 0.0032840092518989744) +zone = ('gaz033', 0.002562521139509554) + +[fips1312232] +centroid = (0.56202452036885919, -1.4644575868077945) +description = Byromville town, GA +station = ('kacj', 0.0046120121592017858) +zone = ('gaz105', 0.0017810572041093893) + +[fips1312260] +centroid = (0.56981687442694573, -1.4616869638867158) +description = Byron city, GA +station = ('kmcn', 0.0015723702400356966) +zone = ('gaz094', 0.0018012460577896399) + +[fips13123] +centroid = (0.60546415974808632, -1.4740000872266108) +description = Gilmer County, GA +station = ('kcni', 0.0066188419050589422) +zone = ('gaz007', 2.6326341620118534e-05) + +[fips1312344] +centroid = (0.56443333653599914, -1.4493348149847465) +description = Cadwell town, GA +station = ('kezm', 0.0025386794269907798) +zone = ('gaz097', 0.0027821765947155662) + +[fips1312390567] +centroid = (0.60429032110636494, -1.4765796140478884) +description = Carters Lake CCD, GA +station = ('kdnn', 0.004204629066930054) +zone = ('gaz007', 0.0024153248642488326) + +[fips1312391074] +centroid = (0.60541614574036384, -1.4745153433283846) +description = Ellijay CCD, GA +station = ('kcni', 0.0066141080230162899) +zone = ('gaz007', 0.00040851127099535459) + +[fips1312392206] +centroid = (0.60698617412228784, -1.475130920955563) +description = North Gilmer CCD, GA +station = ('kdnn', 0.0051192117911672786) +zone = ('gaz007', 0.0017584524788193646) + +[fips1312392517] +centroid = (0.605425849771005, -1.4718571719710121) +description = Rich Mountain CCD, GA +station = ('kcni', 0.0066937621146787507) +zone = ('gaz007', 0.0017831701333858331) + +[fips1312392805] +centroid = (0.60375888580242509, -1.4735823077635608) +description = South Gilmer CCD, GA +station = ('kcni', 0.0048990333866586605) +zone = ('gaz007', 0.0017600723020353209) + +[fips1312400] +centroid = (0.53894460049975157, -1.4696531701915938) +description = Cairo city, GA +station = ('ktvi', 0.004861528989432996) +zone = ('gaz157', 0.00044862796138870118) + +[fips1312456] +centroid = (0.60184521954407588, -1.4825713293699849) +description = Calhoun city, GA +station = ('krmg', 0.0039474879327680047) +zone = ('gaz012', 0.0010585157428728701) + +[fips1312484] +centroid = (0.5361356850548844, -1.4723087759149656) +description = Calvary CDP, GA +station = ('k2j9', 0.0035571481487327141) +zone = ('gaz157', 0.00329133058321894) + +[fips13125] +centroid = (0.57992912012678322, -1.4417626167585067) +description = Glascock County, GA +station = ('khqu', 0.0054327165696562889) +zone = ('gaz075', 6.3668469939558338e-05) + +[fips1312512] +centroid = (0.58382588184112583, -1.4425063190060738) +description = Camak town, GA +station = ('khqu', 0.0023751575753793567) +zone = ('gaz062', 0.00083092333464563424) + +[fips1312591284] +centroid = (0.58051048930062255, -1.4412398033810718) +description = Gibson CCD, GA +station = ('khqu', 0.0047710577880109425) +zone = ('gaz075', 0.00073814363623955596) + +[fips1312592040] +centroid = (0.57908829030634246, -1.4429436810633312) +description = Mitchell CCD, GA +station = ('khqu', 0.006531608053029503) +zone = ('gaz075', 0.0012772730571662689) + +[fips1312624] +centroid = (0.54517369805341187, -1.4696810780063332) +description = Camilla city, GA +station = ('kaby', 0.005187703242879046) +zone = ('gaz145', 0.00026275094523619174) + +[fips13127] +centroid = (0.54476520374198256, -1.4223825505575316) +description = Glynn County, GA +station = ('kbqk', 0.00078816310528732306) +zone = ('gaz154', 0.00086575717719363312) + +[fips1312790444] +centroid = (0.54399666545915937, -1.4222343022908672) +description = Brunswick CCD, GA +station = ('kbqk', 0.0014541022684114917) +zone = ('gaz154', 0.00089430998811798081) + +[fips1312791116] +centroid = (0.54621485676539649, -1.4226886813083313) +description = Everett CCD, GA +station = ('kbqk', 0.0010671974680994346) +zone = ('gaz153', 0.0019181064350466002) + +[fips1312791599] +centroid = (0.54216401738468778, -1.4210249287455752) +description = Jekyll Island CCD, GA +station = ('kssi', 0.0015962387207278067) +zone = ('gaz154', 0.0023991095225534384) + +[fips1312792658] +centroid = (0.54478426273741432, -1.4191862592851843) +description = St. Simons CCD, GA +station = ('kssi', 0.0015272154402743204) +zone = ('gaz154', 0.0019131134480020007) + +[fips1312792994] +centroid = (0.54506056581129747, -1.4253067275462006) +description = Thalmann CCD, GA +station = ('kbqk', 0.0029669217344354924) +zone = ('gaz153', 0.00079396390301210299) + +[fips1312834] +centroid = (0.58863361815854698, -1.4708038308608486) +description = Candler-McAfee CDP, GA +station = ('katl', 0.0027087861763306332) +zone = ('gaz045', 0.0010210346749853652) + +[fips13129] +centroid = (0.60230731291683404, -1.4813283407832996) +description = Gordon County, GA +station = ('kdnn', 0.0037007067892968759) +zone = ('gaz012', 0.00011252891564603305) + +[fips1312932] +centroid = (0.59937540411957879, -1.4505739987536626) +description = Canon city, GA +station = ('ktoc', 0.0051251588195744711) +zone = ('gaz026', 0.0017919696693501064) + +[fips1312960] +centroid = (0.57046779497147704, -1.4342000178431527) +description = Canoochee CDP, GA +station = ('ksbo', 0.0031034751634359172) +zone = ('gaz086', 0.0025166684858355438) + +[fips1312988] +centroid = (0.59772641704229446, -1.4746413037405011) +description = Canton city, GA +station = ('kcni', 0.0015051550330169956) +zone = ('gaz021', 0.0002145258477677775) + +[fips1312990504] +centroid = (0.60157858559424882, -1.4825729874327744) +description = Calhoun CCD, GA +station = ('krmg', 0.0037956874010670206) +zone = ('gaz012', 0.0011758199627156225) + +[fips1312991134] +centroid = (0.60109663037460304, -1.4794213416826929) +description = Fairmount CCD, GA +station = ('kdnn', 0.0051355166297366115) +zone = ('gaz012', 0.0019412211521602908) + +[fips1312992460] +centroid = (0.60296252697132513, -1.4794486909920717) +description = Redbud CCD, GA +station = ('kdnn', 0.0033851338158954912) +zone = ('gaz012', 0.0017508040712121424) + +[fips1312992880] +centroid = (0.60301284481366024, -1.4835234937434103) +description = Sugar Valley-Resaca CCD, GA +station = ('kdnn', 0.0035323638414451962) +zone = ('gaz012', 0.0019595578043158247) + +[fips13131] +centroid = (0.5388854687446939, -1.4703486489919284) +description = Grady County, GA +station = ('kbge', 0.0060298168470585946) +zone = ('gaz157', 0.00015669205803557417) + +[fips1313184] +centroid = (0.5935096492095987, -1.4628804374825222) +description = Carl town, GA +station = ('klzu', 0.0021614464848528432) +zone = ('gaz035', 0.0015228161839512765) + +[fips1313190498] +centroid = (0.53903795816144073, -1.4691604637437556) +description = Cairo CCD, GA +station = ('ktvi', 0.0044328414202802913) +zone = ('gaz157', 0.00088149255864622693) + +[fips1313190510] +centroid = (0.53665403038943416, -1.4714802855723366) +description = Calvary-Reno CCD, GA +station = ('k2j9', 0.0044379109594901546) +zone = ('gaz157', 0.0024819649450549914) + +[fips1313192216] +centroid = (0.54172932568118604, -1.4715822651605306) +description = Northwest Grady CCD, GA +station = ('kbge', 0.0049193205436261636) +zone = ('gaz157', 0.0031104785874917066) + +[fips1313192804] +centroid = (0.53648016068935045, -1.4687037285318014) +description = Southeast Grady CCD, GA +station = ('ktvi', 0.0049424389056669299) +zone = ('gaz157', 0.0026961423296373989) + +[fips1313192832] +centroid = (0.54158662756154297, -1.4694143218834581) +description = Spence CCD, GA +station = ('ktvi', 0.0051545111286588081) +zone = ('gaz157', 0.0027970836505345721) + +[fips1313193354] +centroid = (0.53908761277865991, -1.4716142221391346) +description = Whigham CCD, GA +station = ('kbge', 0.004929709938577307) +zone = ('gaz157', 0.0012612908642336198) + +[fips1313212] +centroid = (0.5941306373574583, -1.4493345531853588) +description = Carlton city, GA +station = ('kahn', 0.0045228908738091734) +zone = ('gaz038', 0.0028596504193820504) + +[fips13133] +centroid = (0.58602634060216274, -1.4515397766952536) +description = Greene County, GA +station = ('k3j7', 0.00054621317384887522) +zone = ('gaz050', 3.649710843018768e-05) + +[fips1313352] +centroid = (0.59992879566550861, -1.4526691967075116) +description = Carnesville city, GA +station = ('ktoc', 0.0039406787323869501) +zone = ('gaz026', 5.2694416554184606e-05) + +[fips1313391356] +centroid = (0.5850860270143583, -1.4520784376622966) +description = Greensboro CCD, GA +station = ('k3j7', 0.0015590910957006092) +zone = ('gaz050', 0.001077060028702298) + +[fips1313391374] +centroid = (0.58726486114596299, -1.4541943352210744) +description = Greshamville CCD, GA +station = ('k3j7', 0.0027636367186649182) +zone = ('gaz050', 0.0025217267638098016) + +[fips1313392766] +centroid = (0.58543181164576341, -1.4497173213436136) +description = Siloam CCD, GA +station = ('k3j7', 0.0014630318344930034) +zone = ('gaz050', 0.0016389413119979172) + +[fips1313393156] +centroid = (0.58718942801569174, -1.4491698988237256) +description = Union Point CCD, GA +station = ('k3j7', 0.0017572997545464884) +zone = ('gaz050', 0.0022677166265268455) + +[fips1313393366] +centroid = (0.58372163332490423, -1.4504680572680666) +description = White Plains CCD, GA +station = ('k3j7', 0.0027087616596367862) +zone = ('gaz050', 0.0025034056997588505) + +[fips1313393432] +centroid = (0.58816501470767912, -1.4517433693524988) +description = Woodville CCD, GA +station = ('k3j7', 0.0018700435976388391) +zone = ('gaz050', 0.0021099499254624192) + +[fips1313492] +centroid = (0.58611379905098027, -1.4849842994207445) +description = Carrollton city, GA +station = ('kctj', 0.0012827500439494518) +zone = ('gaz042', 5.5381295739440617e-05) + +[fips13135] +centroid = (0.59269812346729878, -1.4664769152990593) +description = Gwinnett County, GA +station = ('klzu', 0.00093528811879694011) +zone = ('gaz034', 4.6084900029313178e-05) + +[fips1313590469] +centroid = (0.59541251187987798, -1.4666794083988757) +description = Buford-Sugar Hill CCD, GA +station = ('klzu', 0.002601300870537295) +zone = ('gaz022', 0.0023372013603812874) + +[fips1313590846] +centroid = (0.59376474653307021, -1.4643765860772093) +description = Dacula-Rocky Creek CCD, GA +station = ('klzu', 0.0011369584518492221) +zone = ('gaz034', 0.0020258256969639915) + +[fips1313591704] +centroid = (0.59278079971396591, -1.466313936453508) +description = Lawrenceville CCD, GA +station = ('klzu', 0.00078015621732275349) +zone = ('gaz034', 0.00014808856325492244) + +[fips1313591740] +centroid = (0.59126494635202376, -1.4685430360675702) +description = Lilburn CCD, GA +station = ('kpdk', 0.0023019401978534772) +zone = ('gaz045', 0.0022153633294057485) + +[fips1313592178] +centroid = (0.59263089338451214, -1.4698684914614122) +description = Norcross CCD, GA +station = ('kpdk', 0.0017353434424658616) +zone = ('gaz033', 0.0020353446592080416) + +[fips1313592790] +centroid = (0.5908254898996641, -1.4658249126503917) +description = Snellville-Grayson CCD, GA +station = ('klzu', 0.00222866854069554) +zone = ('gaz034', 0.0019950936755350197) + +[fips1313592910] +centroid = (0.59378277578424332, -1.4678251472396397) +description = Suwanee-Duluth CCD, GA +station = ('klzu', 0.0021300963598077272) +zone = ('gaz034', 0.0015203920955624566) + +[fips1313688] +centroid = (0.59625590733431932, -1.4800464488075873) +description = Cartersville city, GA +station = ('kvpc', 0.00088323359580021611) +zone = ('gaz020', 0.0014304351618858087) + +[fips13137] +centroid = (0.60449667138382823, -1.4578107970575467) +description = Habersham County, GA +station = ('ktoc', 0.0033856766860935954) +zone = ('gaz017', 9.9399676563134443e-05) + +[fips1313790672] +centroid = (0.60525554054259534, -1.4585046003417996) +description = Clarkesville CCD, GA +station = ('ktoc', 0.0041533925623042133) +zone = ('gaz017', 0.00097043082805620086) + +[fips1313790798] +centroid = (0.60257436574568168, -1.4580904860701789) +description = Cornelia CCD, GA +station = ('ktoc', 0.003729696814405659) +zone = ('gaz017', 0.0018576317189585633) + +[fips1313793102] +centroid = (0.60514289699267165, -1.4559591248942283) +description = Turnerville CCD, GA +station = ('ktoc', 0.0022549277366604743) +zone = ('gaz017', 0.001746446206270226) + +[fips13139] +centroid = (0.5989549019428958, -1.4629087467229895) +description = Hall County, GA +station = ('kgvl', 0.00091413049882881211) +zone = ('gaz023', 2.2133155757104008e-05) + +[fips1313990690] +centroid = (0.60099033982315664, -1.4622601823729484) +description = Clermont CCD, GA +station = ('kgvl', 0.0030186427752785521) +zone = ('gaz023', 0.002122399213914434) + +[fips1313991188] +centroid = (0.59628676475549447, -1.4647505752293266) +description = Flowery Branch CCD, GA +station = ('kgvl', 0.0022089667396263438) +zone = ('gaz023', 0.003051478015534181) + +[fips1313991260] +centroid = (0.59810770167068528, -1.4626425141988904) +description = Gainesville CCD, GA +station = ('kgvl', 0.00043599629290806886) +zone = ('gaz023', 0.00086657080067655706) + +[fips1313991836] +centroid = (0.5998471840696854, -1.4605879126034427) +description = Lula CCD, GA +station = ('kgvl', 0.0027770376338587194) +zone = ('gaz023', 0.0021353443312956142) + +[fips1313992118] +centroid = (0.60005409285250932, -1.4647861450394821) +description = Murrayville CCD, GA +station = ('kgvl', 0.0023955082396435474) +zone = ('gaz023', 0.0018941370369494248) + +[fips1313992250] +centroid = (0.59743639568049067, -1.4642871379530447) +description = Oakwood CCD, GA +station = ('kgvl', 0.0011193090404466137) +zone = ('gaz023', 0.0018768259792364117) + +[fips13141] +centroid = (0.58065742857034786, -1.4486313949363154) +description = Hancock County, GA +station = ('kmlj', 0.0040402367311186743) +zone = ('gaz061', 2.0402356252915032e-05) + +[fips1314108] +centroid = (0.59524981228700713, -1.4894601264743137) +description = Cave Spring city, GA +station = ('krmg', 0.0049477384220882673) +zone = ('gaz030', 0.0028403508837113504) + +[fips1314190930] +centroid = (0.5799102182109841, -1.4514980109662534) +description = Devereux CCD, GA +station = ('kmlj', 0.0016783761719845079) +zone = ('gaz061', 0.0025093391790401262) + +[fips1314191758] +centroid = (0.57826721761303423, -1.4491941763536207) +description = Linton CCD, GA +station = ('kmlj', 0.0030613495532225954) +zone = ('gaz061', 0.002453167255706041) + +[fips1314191944] +centroid = (0.58178583629163971, -1.4463805485197732) +description = Mayfield CCD, GA +station = ('k3j7', 0.0060271862740674262) +zone = ('gaz061', 0.0021907908071998133) + +[fips1314192] +centroid = (0.54186499012394351, -1.4554465565995027) +description = Cecil city, GA +station = ('kvad', 0.0031787226253750019) +zone = ('gaz147', 0.0019658673184458722) + +[fips1314192826] +centroid = (0.58132344621290899, -1.4485926835335061) +description = Sparta CCD, GA +station = ('kmlj', 0.0044344759743163665) +zone = ('gaz061', 0.00064841324870655462) + +[fips13143] +centroid = (0.58983690050474946, -1.4873706706537038) +description = Haralson County, GA +station = ('kctj', 0.0030568688430071297) +zone = ('gaz041', 0.00013251280855407823) + +[fips1314390372] +centroid = (0.58874840846345067, -1.4861268268556851) +description = Bremen CCD, GA +station = ('kctj', 0.0017942663687388748) +zone = ('gaz041', 0.001401093999934166) + +[fips1314390450] +centroid = (0.590665268674331, -1.4861008738097079) +description = Buchanan CCD, GA +station = ('kpuj', 0.0032259337036458502) +zone = ('gaz041', 0.0012519306849274915) + +[fips1314392958] +centroid = (0.58992437640685935, -1.4888605360630838) +description = Tallapoosa CCD, GA +station = ('kctj', 0.0037300454194599962) +zone = ('gaz041', 0.0013734971637354774) + +[fips1314472] +centroid = (0.5443211745269827, -1.4840960664578198) +description = Cedar Springs CDP, GA +station = ('kbij', 0.0042770899157203203) +zone = ('gaz142', 0.0030479915570160525) + +[fips13145] +centroid = (0.57127329932785742, -1.4820015142757936) +description = Harris County, GA +station = ('kcsg', 0.0037908435037997553) +zone = ('gaz078', 9.2594619082784455e-05) + +[fips1314500] +centroid = (0.59379153733708834, -1.4878500951459341) +description = Cedartown city, GA +station = ('kpuj', 0.0048601037365899576) +zone = ('gaz030', 0.00092629384670231331) + +[fips1314591398] +centroid = (0.57092116169797513, -1.4831236911716559) +description = Hamilton CCD, GA +station = ('kcsg', 0.003420908324762413) +zone = ('gaz078', 0.0010833789420773318) + +[fips1314592370] +centroid = (0.57279950249226397, -1.4837280986916217) +description = Pine Mountain CCD, GA +station = ('klgc', 0.0034332282191595828) +zone = ('gaz078', 0.0020867021063999333) + +[fips1314592760] +centroid = (0.57237325818234186, -1.4792891678984394) +description = Shiloh CCD, GA +station = ('kcsg', 0.0056184391697909368) +zone = ('gaz078', 0.0024535388588265853) + +[fips1314593288] +centroid = (0.56998770725413095, -1.4803740820147715) +description = Waverly Hall CCD, GA +station = ('kcsg', 0.003126640541522281) +zone = ('gaz078', 0.0018970120690749933) + +[fips13147] +centroid = (0.59949848473842948, -1.4479825687868864) +description = Hart County, GA +station = ('kand', 0.0044245593723995884) +zone = ('gaz028', 4.2559907663744096e-05) + +[fips1314790348] +centroid = (0.60060580888235715, -1.4494865364566223) +description = Bowersville CCD, GA +station = ('ktoc', 0.0047488459171807704) +zone = ('gaz028', 0.0016284091403223832) + +[fips1314791428] +centroid = (0.59878947963639173, -1.4470821534257825) +description = Hartwell CCD, GA +station = ('kand', 0.0043708541621762728) +zone = ('gaz028', 0.0010635760075877996) + +[fips1314792466] +centroid = (0.60077046324399042, -1.4475433915872069) +description = Reed Creek CCD, GA +station = ('kand', 0.0034681728255622716) +zone = ('gaz028', 0.0012858510701207078) + +[fips1314792622] +centroid = (0.59828572525438861, -1.4496428830510162) +description = Royston CCD, GA +station = ('kand', 0.0062507775480639231) +zone = ('gaz028', 0.001850753209000691) + +[fips13149] +centroid = (0.58103700277607162, -1.4859662391112092) +description = Heard County, GA +station = ('klgc', 0.0050198813597396993) +zone = ('gaz052', 0.00019552636240796899) + +[fips1314920] +centroid = (0.56955291083087412, -1.4605900069985449) +description = Centerville city, GA +station = ('kmcn', 0.0010230876739896852) +zone = ('gaz094', 0.0023597520333132577) + +[fips1314990606] +centroid = (0.58255098863571408, -1.4862278290594981) +description = Centralhatchee CCD, GA +station = ('kctj', 0.0044037437160846724) +zone = ('gaz052', 0.0014599040381492044) + +[fips1314991248] +centroid = (0.58056295389793744, -1.4838069003073491) +description = Franklin CCD, GA +station = ('klgc', 0.0045254771812309824) +zone = ('gaz052', 0.0017396999469440598) + +[fips1314992988] +centroid = (0.5801570252205086, -1.4865706640844674) +description = Texas CCD, GA +station = ('klgc', 0.00430796705424421) +zone = ('gaz052', 0.0011915801356090642) + +[fips1315026] +centroid = (0.58238083648693717, -1.4853512199893912) +description = Centralhatchee town, GA +station = ('kctj', 0.0046213866811820603) +zone = ('gaz052', 0.0012868290002262747) + +[fips13151] +centroid = (0.58386291772785315, -1.4687720581720167) +description = Henry County, GA +station = ('k6a2', 0.0043166370358842) +zone = ('gaz057', 1.6657638798677478e-05) + +[fips1315172] +centroid = (0.59146880080865671, -1.4713757927100195) +description = Chamblee city, GA +station = ('kpdk', 0.00010685515369232126) +zone = ('gaz033', 0.0011058671623208184) + +[fips1315191404] +centroid = (0.58267321404323125, -1.470823012029328) +description = Hampton CCD, GA +station = ('k6a2', 0.0027534983012772996) +zone = ('gaz057', 0.0020784140071925467) + +[fips1315191800] +centroid = (0.58251339424362614, -1.4671296509860128) +description = Locust Grove CCD, GA +station = ('k6a2', 0.0040651841904189162) +zone = ('gaz057', 0.001940035931796651) + +[fips1315191878] +centroid = (0.58429783632415766, -1.4684308113966671) +description = McDonough CCD, GA +station = ('k6a2', 0.0048305332442525606) +zone = ('gaz057', 0.00052014385928894223) + +[fips1315192862] +centroid = (0.58593804439530428, -1.470020753985356) +description = Stockbridge CCD, GA +station = ('katl', 0.0033086877848068951) +zone = ('gaz055', 0.0019854277298354782) + +[fips13153] +centroid = (0.5665056183167696, -1.4601922988218932) +description = Houston County, GA +station = ('kwrb', 0.0031904571841093682) +zone = ('gaz095', 5.0417252584744375e-05) + +[fips1315391056] +centroid = (0.5651793775247641, -1.4602045859398272) +description = Elko CCD, GA +station = ('kwrb', 0.004478534486653956) +zone = ('gaz095', 0.0013376099911886596) + +[fips1315392352] +centroid = (0.56670549342270804, -1.4611771881187934) +description = Perry CCD, GA +station = ('kwrb', 0.0033500344411858192) +zone = ('gaz095', 0.00080427235583054794) + +[fips1315393252] +centroid = (0.568847483653803, -1.4595919753723772) +description = Warner Robins CCD, GA +station = ('kwrb', 0.00082551609253889624) +zone = ('gaz095', 0.00239630684899248) + +[fips13155] +centroid = (0.55159919750779907, -1.4534584869551412) +description = Irwin County, GA +station = ('kfzg', 0.001325240851828508) +zone = ('gaz131', 3.6269163097076549e-05) + +[fips1315508] +centroid = (0.60704418886662415, -1.4797300555207857) +description = Chatsworth city, GA +station = ('kdnn', 0.0016208387062098667) +zone = ('gaz005', 0.00050691771466479876) + +[fips1315552] +centroid = (0.58574218354664553, -1.4792615916962579) +description = Chattahoochee Hills city, GA +station = ('kffc', 0.0043596437714433101) +zone = ('gaz043', 0.0024663912663892649) + +[fips1315585] +centroid = (0.60954039366941148, -1.4895205846796031) +description = Chattanooga Valley CDP, GA +station = ('kcha', 0.0027984642815210297) +zone = ('gaz001', 0.0026077995034312464) + +[fips1315591518] +centroid = (0.55145608050913542, -1.4505434031318751) +description = Holt CCD, GA +station = ('kfzg', 0.0027920230778555196) +zone = ('gaz131', 0.0024757684190136577) + +[fips1315591560] +centroid = (0.55234084026684904, -1.4557140806672484) +description = Irwinville CCD, GA +station = ('kfzg', 0.0021056795223524556) +zone = ('gaz131', 0.002080508537395134) + +[fips1315592262] +centroid = (0.55079446109628949, -1.4533296816563437) +description = Ocilla CCD, GA +station = ('kfzg', 0.0021258520478482043) +zone = ('gaz131', 0.00077622714943699814) + +[fips1315648] +centroid = (0.56036624813995428, -1.4497563294523959) +description = Chauncey city, GA +station = ('kezm', 0.0020942335133453151) +zone = ('gaz109', 0.0019101928398487958) + +[fips13157] +centroid = (0.59575342704267009, -1.4584867107169668) +description = Jackson County, GA +station = ('k19a', 0.0007296411185668078) +zone = ('gaz025', 1.7445632711600743e-05) + +[fips1315790762] +centroid = (0.59680442941163603, -1.4565436880205989) +description = Commerce CCD, GA +station = ('k19a', 0.0015895057242717827) +zone = ('gaz025', 0.0019373410544814287) + +[fips1315791596] +centroid = (0.59501318054702168, -1.458255943283268) +description = Jefferson CCD, GA +station = ('k19a', 0.0014747587838321446) +zone = ('gaz025', 0.00076457605137947012) + +[fips1315791962] +centroid = (0.59725528286401119, -1.4590347266488002) +description = Maysville CCD, GA +station = ('k19a', 0.00092377534715834607) +zone = ('gaz025', 0.001568317288487963) + +[fips1315792172] +centroid = (0.59504724937402065, -1.4558920169844891) +description = Nicholson CCD, GA +station = ('k19a', 0.0025401470070568542) +zone = ('gaz025', 0.0022759445590300759) + +[fips1315793330] +centroid = (0.59581941794168791, -1.4610747023851163) +description = West Jackson CCD, GA +station = ('k19a', 0.0022903154478434908) +zone = ('gaz025', 0.0021264125139307585) + +[fips1315844] +centroid = (0.60712955292033921, -1.4727720037517373) +description = Cherry Log CDP, GA +station = ('kcni', 0.0082869196850709811) +zone = ('gaz006', 0.0016427437334187436) + +[fips13159] +centroid = (0.5814547822391215, -1.4606292594534225) +description = Jasper County, GA +station = ('k9a1', 0.0059844662959552125) +zone = ('gaz059', 2.6268435417752418e-05) + +[fips1315900] +centroid = (0.56538975951279957, -1.4513404426413834) +description = Chester town, GA +station = ('kezm', 0.0031732976186779021) +zone = ('gaz096', 0.0026315202257048437) + +[fips1315984] +centroid = (0.60866552992855683, -1.4885854721729694) +description = Chickamauga city, GA +station = ('kcha', 0.0030629828671141857) +zone = ('gaz002', 0.0024203036400941278) + +[fips1315991098] +centroid = (0.58313485363038375, -1.4612209435231411) +description = Eudora CCD, GA +station = ('k9a1', 0.0042506058934834489) +zone = ('gaz059', 0.0017253590763713924) + +[fips1315991476] +centroid = (0.57955357763163151, -1.4606620367367746) +description = Hillsboro CCD, GA +station = ('kmlj', 0.0066239515240184609) +zone = ('gaz059', 0.0019274513753451223) + +[fips1315992064] +centroid = (0.58159798650424765, -1.461113937386701) +description = Monticello CCD, GA +station = ('k9a1', 0.0057021071221044521) +zone = ('gaz059', 0.00041868446055983599) + +[fips1315992730] +centroid = (0.58325170342380483, -1.4594030434808489) +description = Shady Dale CCD, GA +station = ('k9a1', 0.0050139057987283265) +zone = ('gaz059', 0.0020471477871722528) + +[fips13161] +centroid = (0.55521742212681591, -1.4422846796443631) +description = Jeff Davis County, GA +station = ('kamg', 0.005265009945435167) +zone = ('gaz133', 0.00010501363915970041) + +[fips1316190924] +centroid = (0.55419144777932361, -1.4438395934749648) +description = Denton CCD, GA +station = ('kamg', 0.0050935362156434684) +zone = ('gaz133', 0.0016088952770866092) + +[fips1316191440] +centroid = (0.55589659955193704, -1.4411107362828868) +description = Hazlehurst CCD, GA +station = ('kamg', 0.0056316704787276965) +zone = ('gaz133', 0.0012708032093217345) + +[fips13163] +centroid = (0.57686402525430824, -1.4384837888658324) +description = Jefferson County, GA +station = ('ksbo', 0.0075718662106413481) +zone = ('gaz076', 5.461150959997931e-05) + +[fips1316391812] +centroid = (0.57638255872685307, -1.4385026907816316) +description = Louisville CCD, GA +station = ('ksbo', 0.0070943646511176196) +zone = ('gaz076', 0.00053510753606672372) + +[fips1316392838] +centroid = (0.57863487121996682, -1.4397611778920745) +description = Stapleton CCD, GA +station = ('khqu', 0.0065737680225605331) +zone = ('gaz076', 0.0020313892903131309) + +[fips1316393228] +centroid = (0.57356378217171222, -1.438601162258029) +description = Wadley CCD, GA +station = ('ksbo', 0.0043157633503752638) +zone = ('gaz076', 0.0033549399847013651) + +[fips1316393444] +centroid = (0.57961883549236359, -1.4372184600647218) +description = Wrens CCD, GA +station = ('khqu', 0.0061048107528359919) +zone = ('gaz076', 0.002897292505745152) + +[fips1316460] +centroid = (0.60404604482425572, -1.4578293673607878) +description = Clarkesville city, GA +station = ('ktoc', 0.0033324491695854923) +zone = ('gaz017', 0.0003826968933301319) + +[fips13165] +centroid = (0.57237310110270911, -1.4306729866775523) +description = Jenkins County, GA +station = ('kjyl', 0.0060935582865327782) +zone = ('gaz087', 0.0001217067518272338) + +[fips1316544] +centroid = (0.59011028887878181, -1.4702804938846379) +description = Clarkston city, GA +station = ('kpdk', 0.0015284164832015832) +zone = ('gaz045', 0.00071820464393840928) + +[fips1316592019] +centroid = (0.5733345331744627, -1.4300420850595414) +description = Millen CCD, GA +station = ('kjyl', 0.006122468818851293) +zone = ('gaz087', 0.0010799310736230791) + +[fips1316592806] +centroid = (0.5709555097776543, -1.4312458560979344) +description = South Jenkins CCD, GA +station = ('ksbo', 0.0056139667540356705) +zone = ('gaz087', 0.0015054909224414847) + +[fips1316600] +centroid = (0.56133464407542344, -1.4295933609088538) +description = Claxton city, GA +station = ('kcwv', 0.00088359869897293994) +zone = ('gaz115', 0.00034889245319108807) + +[fips1316656] +centroid = (0.60873384211547987, -1.4556312647942413) +description = Clayton city, GA +station = ('ktoc', 0.0051989646693252978) +zone = ('gaz010', 6.8905341144271786e-05) + +[fips13167] +centroid = (0.57054518287051037, -1.4427127914565849) +description = Johnson County, GA +station = ('ksbo', 0.0044514124717767627) +zone = ('gaz085', 0.00020449363082528858) + +[fips1316790042] +centroid = (0.5687852626659694, -1.4420356037068109) +description = Adrian CCD, GA +station = ('ksbo', 0.003752480958826247) +zone = ('gaz085', 0.0020396370195768549) + +[fips1316791662] +centroid = (0.57102471208249594, -1.440423216183941) +description = Kite CCD, GA +station = ('ksbo', 0.0029020982695585245) +zone = ('gaz085', 0.0019279223832290217) + +[fips1316793332] +centroid = (0.57109979614691675, -1.445398713549064) +description = West Johnson CCD, GA +station = ('kdbn', 0.003707847702084279) +zone = ('gaz085', 0.0023052260283026602) + +[fips1316793450] +centroid = (0.57135759873072878, -1.4427957644092244) +description = Wrightsville CCD, GA +station = ('ksbo', 0.0048008941015587787) +zone = ('gaz085', 0.00061511278157829537) + +[fips1316796] +centroid = (0.60179193464201253, -1.4620694178857057) +description = Clermont town, GA +station = ('kgvl', 0.0038344666942689183) +zone = ('gaz016', 0.0029209262826369615) + +[fips1316824] +centroid = (0.60385421568616904, -1.4619062470539366) +description = Cleveland city, GA +station = ('kgvl', 0.0058808254921593932) +zone = ('gaz016', 0.00086280939664052292) + +[fips13169] +centroid = (0.57631166345263718, -1.4584379462176658) +description = Jones County, GA +station = ('kmlj', 0.0052541628053218185) +zone = ('gaz072', 8.9222675893289451e-05) + +[fips1316908] +centroid = (0.53888143703412184, -1.4736024837697139) +description = Climax city, GA +station = ('kbge', 0.0034181620370368595) +zone = ('gaz156', 0.002111541011492172) + +[fips1316991351] +centroid = (0.57527837617557886, -1.4579167036365577) +description = Gray-Macon East CCD, GA +station = ('kmcn', 0.0051440094472497292) +zone = ('gaz072', 0.0011912321613332061) + +[fips1316992610] +centroid = (0.57761586073618987, -1.4590449368249245) +description = Round Oak CCD, GA +station = ('kmlj', 0.0053132917531974319) +zone = ('gaz072', 0.0013316024533856273) + +[fips13171] +centroid = (0.57725822531916371, -1.4686373362070555) +description = Lamar County, GA +station = ('kopn', 0.00270471274756504) +zone = ('gaz070', 0.00011283458383255272) + +[fips1317190216] +centroid = (0.57637997563956023, -1.4683210825465942) +description = Barnesville CCD, GA +station = ('kopn', 0.0023261362278905354) +zone = ('gaz070', 0.00092740918406083713) + +[fips1317192028] +centroid = (0.57843892310484535, -1.4687141306941431) +description = Milner CCD, GA +station = ('k6a2', 0.0023377435376856471) +zone = ('gaz070', 0.0011578429621853289) + +[fips1317272] +centroid = (0.56337870388218902, -1.4335843704028042) +description = Cobbtown city, GA +station = ('kvdi', 0.0037663165642394642) +zone = ('gaz099', 0.0023692174606634113) + +[fips13173] +centroid = (0.5417187315326264, -1.4497256989240233) +description = Lanier County, GA +station = ('kvad', 0.002397725486264368) +zone = ('gaz161', 9.1082060317037504e-06) + +[fips1317328] +centroid = (0.56526756901186737, -1.4547718646705594) +description = Cochran city, GA +station = ('kezm', 0.0044851102990930564) +zone = ('gaz096', 0.0008948254002256377) + +[fips1317391010] +centroid = (0.54169110297056733, -1.4486684831829202) +description = East Lanier CCD, GA +station = ('kvad', 0.003195659401226238) +zone = ('gaz161', 0.00089774762640449886) + +[fips1317391680] +centroid = (0.54173899480524212, -1.4505127726035025) +description = Lakeland CCD, GA +station = ('kvad', 0.0018689975236192034) +zone = ('gaz161', 0.00068322547739533049) + +[fips1317496] +centroid = (0.61010649121229588, -1.4828350137133761) +description = Cohutta city, GA +station = ('kcha', 0.0036815118888574778) +zone = ('gaz004', 0.0026361404677543283) + +[fips13175] +centroid = (0.56536834432287753, -1.4473372682025465) +description = Laurens County, GA +station = ('kdbn', 0.0031108255492102166) +zone = ('gaz097', 0.0012316023222082154) + +[fips1317552] +centroid = (0.59406197610468481, -1.4523426106978785) +description = Colbert city, GA +station = ('kahn', 0.0023120418895329758) +zone = ('gaz027', 0.0015833563751531307) + +[fips1317580] +centroid = (0.55272697691056016, -1.4816559041773139) +description = Coleman CDP, GA +station = ('kbij', 0.0046937548388665193) +zone = ('gaz121', 0.0014991797959836358) + +[fips1317590378] +centroid = (0.56940342338044081, -1.445429501157069) +description = Brewton CCD, GA +station = ('kdbn', 0.002682794952444226) +zone = ('gaz085', 0.0026693732155434655) + +[fips1317590492] +centroid = (0.56322094357110131, -1.4486322501476487) +description = Cadwell CCD, GA +station = ('kezm', 0.0021178368339771704) +zone = ('gaz109', 0.0030115617757277848) + +[fips1317590594] +centroid = (0.56375792902206234, -1.4458314330305109) +description = Cedar Grove CCD, GA +station = ('kezm', 0.0045088990350467756) +zone = ('gaz097', 0.0030878890077786487) + +[fips1317590936] +centroid = (0.56616543619226334, -1.4496643506008156) +description = Dexter CCD, GA +station = ('kdbn', 0.0024513967286183317) +zone = ('gaz097', 0.0020701324370616999) + +[fips1317590978] +centroid = (0.56859645294748862, -1.4482478937397747) +description = Dublin CCD, GA +station = ('kdbn', 0.00025808581546448339) +zone = ('gaz097', 0.002162935556672534) + +[fips1317590984] +centroid = (0.56790079961422879, -1.4507133458411419) +description = Dudley CCD, GA +station = ('kdbn', 0.0020341732470114996) +zone = ('gaz097', 0.0031862403727331459) + +[fips1317591002] +centroid = (0.56698923159920467, -1.4446818893719773) +description = East Dublin CCD, GA +station = ('kdbn', 0.003390493105893982) +zone = ('gaz097', 0.0022142848531269909) + +[fips1317592484] +centroid = (0.56536834432287753, -1.4473372682025465) +description = Rentz CCD, GA +station = ('kdbn', 0.0031108255492102166) +zone = ('gaz097', 0.0012316023222082154) + +[fips13177] +centroid = (0.55533617432912163, -1.4686366380753546) +description = Lee County, GA +station = ('kaby', 0.0050383162555002062) +zone = ('gaz126', 0.00068273995804153176) + +[fips1317776] +centroid = (0.58709645432643798, -1.4741064824978125) +description = College Park city, GA +station = ('katl', 0.00044023904688513996) +zone = ('gaz044', 0.0021899785389134134) + +[fips1317791716] +centroid = (0.55365313587813092, -1.469658074566792) +description = Leesburg CCD, GA +station = ('kaby', 0.0032935535370810609) +zone = ('gaz126', 0.0013853020779761832) + +[fips1317792358] +centroid = (0.55475874959939186, -1.4666870529409992) +description = Philema CCD, GA +station = ('kaby', 0.0050353556748046115) +zone = ('gaz126', 0.0015761492165675408) + +[fips1317792778] +centroid = (0.55629877577147402, -1.4694891616017838) +description = Smithville CCD, GA +station = ('kacj', 0.0041269782165964256) +zone = ('gaz126', 0.0018286095202678357) + +[fips1317832] +centroid = (0.56163323500385465, -1.4330876496976865) +description = Collins city, GA +station = ('kvdi', 0.0038780203513288183) +zone = ('gaz114', 0.0024506155110504638) + +[fips13179] +centroid = (0.55514115123850383, -1.4217097610374729) +description = Liberty County, GA +station = ('klhw', 0.0020882320627870093) +zone = ('gaz138', 0.0013745712527364667) + +[fips1317991488] +centroid = (0.55700680348913056, -1.4245970068591696) +description = Hinesville CCD, GA +station = ('klhw', 0.00099783270126522616) +zone = ('gaz138', 0.0017118792129961612) + +[fips1317991998] +centroid = (0.5535780692670027, -1.4181450307600296) +description = Midway CCD, GA +station = ('ksvn', 0.0054399654004915633) +zone = ('gaz139', 0.0011204599941461099) + +[fips1317992502] +centroid = (0.55346450069257547, -1.420741679261269) +description = Riceboro CCD, GA +station = ('klhw', 0.0038675636565757704) +zone = ('gaz138', 0.0031327604100062369) + +[fips1318000] +centroid = (0.54407524018208409, -1.4788589965977004) +description = Colquitt city, GA +station = ('kbge', 0.0038971841164810559) +zone = ('gaz143', 0.00016277489141733461) + +[fips13181] +centroid = (0.5897842962810943, -1.4389942802187483) +description = Lincoln County, GA +station = ('khqu', 0.0046905737978949341) +zone = ('gaz040', 4.9093028354686308e-05) + +[fips1318191752] +centroid = (0.59085948891349294, -1.4402903966278642) +description = Lincolnton CCD, GA +station = ('kiiy', 0.0044522903577204273) +zone = ('gaz040', 0.0014740701254074243) + +[fips1318192807] +centroid = (0.58880567271620865, -1.4378942166445088) +description = South Lincoln CCD, GA +station = ('khqu', 0.004078859240251617) +zone = ('gaz040', 0.0013866977951220373) + +[fips13183] +centroid = (0.5541344104193684, -1.426682221529697) +description = Long County, GA +station = ('klhw', 0.0035042773060658624) +zone = ('gaz137', 7.3141824163761674e-05) + +[fips1318391818] +centroid = (0.55550756566166748, -1.4280868799649948) +description = Ludowici North CCD, GA +station = ('klhw', 0.0039248219597366775) +zone = ('gaz137', 0.0017465228254722714) + +[fips1318391824] +centroid = (0.55283077164117622, -1.4249573824431212) +description = Ludowici South CCD, GA +station = ('klhw', 0.0038151956841924457) +zone = ('gaz137', 0.0020350556932155796) + +[fips13185] +centroid = (0.53814923650632518, -1.4533176388845053) +description = Lowndes County, GA +station = ('kvld', 0.00087939143264703212) +zone = ('gaz160', 1.9372117051168146e-05) + +[fips1318590228] +centroid = (0.54048275916953414, -1.4525274759722497) +description = Barretts CCD, GA +station = ('kvad', 0.00035481315311779833) +zone = ('gaz160', 0.0024211041585899635) + +[fips1318591392] +centroid = (0.54029052860571947, -1.4550606468485945) +description = Hahira CCD, GA +station = ('kvad', 0.0025332275278048622) +zone = ('gaz160', 0.0026197161325173623) + +[fips1318591686] +centroid = (0.53609768923706846, -1.4521557557481599) +description = Lake Park CCD, GA +station = ('kvld', 0.0015181852231976824) +zone = ('gaz160', 0.0022767491172551524) + +[fips1318592136] +centroid = (0.5387151071564068, -1.4510339279181481) +description = Naylor CCD, GA +station = ('kvad', 0.0019847381186340251) +zone = ('gaz160', 0.0020213185946863655) + +[fips1318593168] +centroid = (0.53684095515232277, -1.4541912808948834) +description = Valdosta CCD, GA +station = ('kvld', 0.00089497546376795481) +zone = ('gaz160', 0.0015210887230301324) + +[fips13187] +centroid = (0.60332801636998523, -1.4660561164164034) +description = Lumpkin County, GA +station = ('kgvl', 0.0057762263540679171) +zone = ('gaz015', 9.2328799669357371e-05) + +[fips1318790852] +centroid = (0.60302699943389382, -1.4674203704795172) +description = Dahlonega CCD, GA +station = ('kgvl', 0.0060761827142097906) +zone = ('gaz015', 0.0011246808707261894) + +[fips1318793024] +centroid = (0.6038287164257975, -1.4652352880691903) +description = Three Sisters Mountain CCD, GA +station = ('kgvl', 0.0060096014553914197) +zone = ('gaz015', 0.00085429110287180512) + +[fips13189] +centroid = (0.58437923848047069, -1.439428675216277) +description = McDuffie County, GA +station = ('khqu', 0.0010332519973045567) +zone = ('gaz063', 0.0001197837478286286) + +[fips1318990912] +centroid = (0.58266270716113422, -1.4380103333996441) +description = Dearing CCD, GA +station = ('khqu', 0.0031174586161363278) +zone = ('gaz063', 0.0021612792241349188) + +[fips1318993018] +centroid = (0.58506806757635532, -1.4401646107486732) +description = Thomson CCD, GA +station = ('khqu', 0.00013199598396499175) +zone = ('gaz063', 0.00084157508915661168) + +[fips1319000] +centroid = (0.56740997812198291, -1.4813472601523909) +description = Columbus city, GA +station = ('kcsg', 0.0011103829391475048) +zone = ('gaz089', 3.0426292036788154e-05) + +[fips1319084] +centroid = (0.59450213068874525, -1.4508454323589326) +description = Comer city, GA +station = ('kahn', 0.0035689227601239278) +zone = ('gaz027', 0.0016425713236227484) + +[fips13191] +centroid = (0.54948162443293935, -1.4201778855529974) +description = McIntosh County, GA +station = ('kbqk', 0.0043128866518644124) +zone = ('gaz141', 0.0011275647815840351) + +[fips1319112] +centroid = (0.59715557220384474, -1.4569240127179008) +description = Commerce city, GA +station = ('k19a', 0.0014128374699475682) +zone = ('gaz025', 0.0019219743099081223) + +[fips1319168] +centroid = (0.57756508910824933, -1.4737167853824271) +description = Concord city, GA +station = ('k6a2', 0.0033473203637809754) +zone = ('gaz068', 0.00070994533445169585) + +[fips1319190882] +centroid = (0.5482137474511205, -1.419608157725269) +description = Darien CCD, GA +station = ('kbqk', 0.0033964316309538587) +zone = ('gaz141', 0.0010088747109326403) + +[fips1319193078] +centroid = (0.55090609235524701, -1.4213652155898366) +description = Townsend CCD, GA +station = ('kbqk', 0.0055070188256030892) +zone = ('gaz140', 0.0009766586643786782) + +[fips1319280] +centroid = (0.58716092678900678, -1.4719728523938345) +description = Conley CDP, GA +station = ('katl', 0.0013948682256532904) +zone = ('gaz055', 0.0017680889016417703) + +[fips13193] +centroid = (0.56489703561166904, -1.4669869703196621) +description = Macon County, GA +station = ('kacj', 0.0049759747570267809) +zone = ('gaz093', 0.00019722736455542319) + +[fips1319336] +centroid = (0.58741893881232909, -1.4657687130484776) +description = Conyers city, GA +station = ('k9a1', 0.0019785424425973943) +zone = ('gaz046', 0.00064521794214173335) + +[fips1319391542] +centroid = (0.56543318330458914, -1.4682228030564142) +description = Ideal CCD, GA +station = ('kacj', 0.0051354042399951528) +zone = ('gaz093', 0.0013635355559028959) + +[fips1319391932] +centroid = (0.56626608933022582, -1.4651048247076039) +description = Marshallville CCD, GA +station = ('kmcn', 0.0060079978843448666) +zone = ('gaz093', 0.0020879405350561287) + +[fips1319392] +centroid = (0.54124002262538939, -1.463746138244804) +description = Coolidge city, GA +station = ('kmgr', 0.0016016510058363301) +zone = ('gaz158', 0.0026863307059415806) + +[fips1319392052] +centroid = (0.56400224021075662, -1.4653350161826493) +description = Montezuma CCD, GA +station = ('kacj', 0.0050613239129848287) +zone = ('gaz093', 0.0014648781004664951) + +[fips1319392274] +centroid = (0.56306866359386476, -1.4683328460657525) +description = Oglethorpe CCD, GA +station = ('kacj', 0.0028423858696776465) +zone = ('gaz093', 0.0021215939235612706) + +[fips13195] +centroid = (0.59565444942078949, -1.4521774152841773) +description = Madison County, GA +station = ('kahn', 0.0036363116143936572) +zone = ('gaz027', 7.8154384396804464e-05) + +[fips1319590402] +centroid = (0.59737440158545985, -1.4515737582557899) +description = Broad River CCD, GA +station = ('kahn', 0.0053867543640787009) +zone = ('gaz027', 0.0018238065518514865) + +[fips1319590714] +centroid = (0.59442935045893708, -1.453277723204512) +description = Colbert CCD, GA +station = ('kahn', 0.0021218878009642921) +zone = ('gaz027', 0.0014734098310624493) + +[fips1319590756] +centroid = (0.59478815524656214, -1.4501802524744125) +description = Comer CCD, GA +station = ('kahn', 0.0041869697000961352) +zone = ('gaz027', 0.0019313048553201285) + +[fips1319590876] +centroid = (0.59603536753003727, -1.4519826714462398) +description = Danielsville CCD, GA +station = ('kahn', 0.0040461690493625241) +zone = ('gaz027', 0.00045820554955786801) + +[fips1319591548] +centroid = (0.59651255800082503, -1.4541626749484433) +description = Ila CCD, GA +station = ('k19a', 0.0035264356536474661) +zone = ('gaz027', 0.0017901328274891567) + +[fips1319616] +centroid = (0.55773898656363474, -1.462063658299174) +description = Cordele city, GA +station = ('kacj', 0.0069050195294201666) +zone = ('gaz106', 0.00057827126871513401) + +[fips13197] +centroid = (0.56478048252422086, -1.4753191547153905) +description = Marion County, GA +station = ('klsf', 0.0045024227414668617) +zone = ('gaz091', 0.0001297159597371349) + +[fips1319728] +centroid = (0.60242882273935783, -1.4578992328907454) +description = Cornelia city, GA +station = ('ktoc', 0.0036315748191745054) +zone = ('gaz017', 0.001996154374196694) + +[fips1319790462] +centroid = (0.56328016259262148, -1.4751989887963908) +description = Buena Vista CCD, GA +station = ('klsf', 0.0047000080607064142) +zone = ('gaz091', 0.001393480644903582) + +[fips1319792207] +centroid = (0.5661454870789131, -1.4751981510383496) +description = North Marion CCD, GA +station = ('klsf', 0.0049286616751852714) +zone = ('gaz091', 0.0014724196872153428) + +[fips1319830] +centroid = (0.54466591196083658, -1.4217925070973099) +description = Country Club Estates CDP, GA +station = ('kbqk', 0.00075180197956138119) +zone = ('gaz154', 0.00035431505745231451) + +[fips13199] +centroid = (0.5764860916580814, -1.4776529740845723) +description = Meriwether County, GA +station = ('klgc', 0.0060002274513837597) +zone = ('gaz067', 0.00040847225966140425) + +[fips1319991266] +centroid = (0.57850589138824449, -1.4764390801365177) +description = Gay CCD, GA +station = ('kffc', 0.0038724958729925672) +zone = ('gaz067', 0.002300612395730821) + +[fips1319991368] +centroid = (0.5766076014806053, -1.4789121418734235) +description = Greenville CCD, GA +station = ('klgc', 0.0049573360649677106) +zone = ('gaz067', 0.00069205224463005316) + +[fips1319991854] +centroid = (0.57868159368404271, -1.4798182993677667) +description = Luthersville CCD, GA +station = ('kffc', 0.0048876760514226314) +zone = ('gaz067', 0.0024808533827854326) + +[fips1319991908] +centroid = (0.57456238975653329, -1.4763151443063334) +description = Manchester CCD, GA +station = ('kopn', 0.0047586742080647226) +zone = ('gaz067', 0.0025780467943340847) + +[fips1319993246] +centroid = (0.57444976365990208, -1.47923715708673) +description = Warm Springs CCD, GA +station = ('klgc', 0.0049514265235931637) +zone = ('gaz067', 0.0024174150263380581) + +[fips1319993414] +centroid = (0.57579799560048261, -1.476486012040104) +description = Woodbury CCD, GA +station = ('kopn', 0.0049007427713809327) +zone = ('gaz067', 0.0016012005257912509) + +[fips1320064] +centroid = (0.58651927394280357, -1.4634138275552242) +description = Covington city, GA +station = ('k9a1', 0.0004365470110332324) +zone = ('gaz048', 0.00087329160445437988) + +[fips13201] +centroid = (0.54389534909608106, -1.478824212185708) +description = Miller County, GA +station = ('kbge', 0.0037197169595134211) +zone = ('gaz143', 1.9627448417946533e-05) + +[fips1320190246] +centroid = (0.54394564948512358, -1.4765856354338076) +description = Bellview CCD, GA +station = ('kbge', 0.0035065358290984638) +zone = ('gaz143', 0.001920452140867884) + +[fips1320190744] +centroid = (0.54443140952253866, -1.4786226964702729) +description = Colquitt CCD, GA +station = ('kbge', 0.0041622209931433613) +zone = ('gaz143', 0.00054649218382466609) + +[fips1320191950] +centroid = (0.54351230168514586, -1.4803569428815171) +description = Mayhaw CCD, GA +station = ('kbge', 0.004110299218953002) +zone = ('gaz143', 0.0013674675183188041) + +[fips1320288] +centroid = (0.59137387235064065, -1.4513353462799674) +description = Crawford city, GA +station = ('kahn', 0.0028285094016942806) +zone = ('gaz038', 0.0010845676298369866) + +[fips1320316] +centroid = (0.58563896477468258, -1.4468202667715206) +description = Crawfordville city, GA +station = ('kiiy', 0.0040979447090478145) +zone = ('gaz051', 0.00033044816893696891) + +[fips13205] +centroid = (0.54504782490775805, -1.4694347073291216) +description = Mitchell County, GA +station = ('kaby', 0.0053138704268384787) +zone = ('gaz145', 6.7330782680210703e-05) + +[fips1320550] +centroid = (0.58056171471416851, -1.453451872157276) +description = Crooked Creek CDP, GA +station = ('kmlj', 0.0019836839472905654) +zone = ('gaz060', 0.0017303964349893214) + +[fips1320590186] +centroid = (0.5476930110154955, -1.4678237684295308) +description = Baconton CCD, GA +station = ('kaby', 0.0030540626722249812) +zone = ('gaz145', 0.0030490312761006443) + +[fips1320590366] +centroid = (0.54352115050445349, -1.4727975204654016) +description = Branchville CCD, GA +station = ('kbge', 0.0048047259154271734) +zone = ('gaz145', 0.0032045775658094055) + +[fips1320590522] +centroid = (0.54549044040606376, -1.4699782203114851) +description = Camilla CCD, GA +station = ('kaby', 0.0048826701509376578) +zone = ('gaz145', 0.00066799637192136569) + +[fips1320592340] +centroid = (0.54321412963573523, -1.4687884119071082) +description = Pelham CCD, GA +station = ('ktvi', 0.0056425369185683898) +zone = ('gaz145', 0.001864340776529758) + +[fips1320592664] +centroid = (0.54545815181490187, -1.4669223058708758) +description = Sale City CCD, GA +station = ('kmgr', 0.0046904562560281839) +zone = ('gaz145', 0.0022255417579994919) + +[fips13207] +centroid = (0.57626295131321392, -1.4647315860470649) +description = Monroe County, GA +station = ('kopn', 0.0051169754987382731) +zone = ('gaz071', 8.5058002701292407e-05) + +[fips1320790822] +centroid = (0.57476460360366943, -1.4645511713622863) +description = Culloden-Bolingbroke CCD, GA +station = ('kmcn', 0.0057976556407475753) +zone = ('gaz071', 0.0014429070922922014) + +[fips1320791206] +centroid = (0.57762635016499431, -1.4646547566533923) +description = Forsyth CCD, GA +station = ('k6a2', 0.0056901628498418561) +zone = ('gaz071', 0.0014216076066232331) + +[fips1320848] +centroid = (0.57360085296502461, -1.4677171637188189) +description = Culloden city, GA +station = ('kopn', 0.002951219414809368) +zone = ('gaz081', 0.0030632686156383299) + +[fips13209] +centroid = (0.56150921190720793, -1.4404786827475695) +description = Montgomery County, GA +station = ('kvdi', 0.0024106419194536866) +zone = ('gaz112', 4.4000966698132722e-05) + +[fips1320932] +centroid = (0.59703610441654587, -1.4684078254104183) +description = Cumming city, GA +station = ('kcni', 0.0045453314485594922) +zone = ('gaz022', 0.00033364383224782204) + +[fips1320992106] +centroid = (0.56146783015064305, -1.4407928420129286) +description = Mount Vernon-Ailey CCD, GA +station = ('kvdi', 0.0026797633346623178) +zone = ('gaz112', 0.00027279753632970702) + +[fips1320992964] +centroid = (0.56343486857751823, -1.4404263228700096) +description = Tarrytown CCD, GA +station = ('kvdi', 0.0028164952546072277) +zone = ('gaz112', 0.0018828525811148639) + +[fips1320993162] +centroid = (0.55942183302840764, -1.440248892698252) +description = Uvalda CCD, GA +station = ('kvdi', 0.0032819046363009056) +zone = ('gaz112', 0.002140359442226264) + +[fips1321017] +centroid = (0.5645694198577772, -1.4798301327000951) +description = Cusseta-Chattahoochee County unified government, GA +station = ('klsf', 0.00071212458169957963) +zone = ('gaz090', 1.693993995409554e-05) + +[fips1321072] +centroid = (0.55450307631726725, -1.4799270682867509) +description = Cuthbert city, GA +station = ('keuf', 0.0059249996504673885) +zone = ('gaz122', 0.00060107934651822961) + +[fips13211] +centroid = (0.58632123143257975, -1.4572159539418821) +description = Morgan County, GA +station = ('k9a1', 0.0052372893719696513) +zone = ('gaz049', 5.118497898424531e-05) + +[fips1321184] +centroid = (0.59308534221514642, -1.4641438464214558) +description = Dacula city, GA +station = ('klzu', 0.0010614509714795778) +zone = ('gaz034', 0.001972829791092283) + +[fips1321190336] +centroid = (0.58854532195168852, -1.4571408698774613) +description = Bostwick CCD, GA +station = ('kahn', 0.0045804870135319805) +zone = ('gaz037', 0.0021185923648780378) + +[fips1321190456] +centroid = (0.58514350070662646, -1.4549628909571899) +description = Buckhead CCD, GA +station = ('k3j7', 0.0034917054777426565) +zone = ('gaz049', 0.0021905220376607472) + +[fips1321191314] +centroid = (0.58447161875777875, -1.4579016414451131) +description = Godfrey CCD, GA +station = ('k9a1', 0.005254203144121697) +zone = ('gaz049', 0.0018867336130541129) + +[fips1321191902] +centroid = (0.58639549519225209, -1.4568999446275159) +description = Madison CCD, GA +station = ('k9a1', 0.0054904386762796862) +zone = ('gaz049', 0.0002925854845997098) + +[fips1321192640] +centroid = (0.58657952270858238, -1.4593020587303285) +description = Rutledge CCD, GA +station = ('k9a1', 0.0034815015543018684) +zone = ('gaz049', 0.0017638228846274778) + +[fips1321240] +centroid = (0.60266072463707032, -1.4657202278018573) +description = Dahlonega city, GA +station = ('kgvl', 0.0050543063352654878) +zone = ('gaz015', 0.0008101509728566205) + +[fips1321268] +centroid = (0.56115274586078057, -1.4282856555135044) +description = Daisy city, GA +station = ('kcwv', 0.00099117819690954282) +zone = ('gaz115', 0.00077588579640214446) + +[fips13213] +centroid = (0.6073239127858413, -1.4789569270220297) +description = Murray County, GA +station = ('kdnn', 0.002295875246712631) +zone = ('gaz005', 0.00020859469665861181) + +[fips1321324] +centroid = (0.59191851979701815, -1.4807815465819423) +description = Dallas city, GA +station = ('kpuj', 0.0014138667072161706) +zone = ('gaz031', 0.00037117253606336093) + +[fips1321380] +centroid = (0.6068374022568479, -1.4830135958024402) +description = Dalton city, GA +station = ('kdnn', 0.0016725677974337345) +zone = ('gaz004', 0.00063648897694385258) + +[fips1321390576] +centroid = (0.60484105975183167, -1.4808634897903235) +description = Casey Springs CCD, GA +station = ('kdnn', 0.0012080931288466676) +zone = ('gaz012', 0.0026746059459575163) + +[fips1321390618] +centroid = (0.60605671648243076, -1.4789404162073059) +description = Chatsworth CCD, GA +station = ('kdnn', 0.0018959563503050481) +zone = ('gaz005', 0.0011283432066078523) + +[fips1321390666] +centroid = (0.60947302396028447, -1.4785692719418693) +description = Cisco CCD, GA +station = ('kdnn', 0.0041037340032098529) +zone = ('gaz005', 0.0023452952706057894) + +[fips1321390810] +centroid = (0.60830518925119004, -1.4780675945016759) +description = Crandall-Eton CCD, GA +station = ('kdnn', 0.0034778388350610008) +zone = ('gaz005', 0.0014301824926508089) + +[fips1321436] +centroid = (0.54626213773483301, -1.4785939858040775) +description = Damascus city, GA +station = ('kbij', 0.0031259579740106264) +zone = ('gaz143', 0.0023563650437828645) + +[fips13215] +centroid = (0.56740997812198291, -1.4813472601523909) +description = Muscogee County, GA +station = ('kcsg', 0.0011103829391475048) +zone = ('gaz089', 3.0426292036788154e-05) + +[fips1321590751] +centroid = (0.56692859886099045, -1.4818974926523747) +description = Columbus East CCD, GA +station = ('kcsg', 0.00087391453023600457) +zone = ('gaz089', 0.00064548316541358428) + +[fips1321590752] +centroid = (0.56829676246162875, -1.4816735145494664) +description = Columbus North CCD, GA +station = ('kcsg', 0.0011342682426833065) +zone = ('gaz089', 0.00092327536565472328) + +[fips1321590753] +centroid = (0.56649973655719033, -1.4828939185756309) +description = Columbus West CCD, GA +station = ('kcsg', 0.0010424602897549451) +zone = ('gaz089', 0.0015641175439329972) + +[fips1321591213] +centroid = (0.5667059123017284, -1.4802678263699101) +description = Fort Benning CCD, GA +station = ('kcsg', 0.0021746278583511802) +zone = ('gaz089', 0.0011729633274951135) + +[fips1321632] +centroid = (0.59556500129662482, -1.4524754302539553) +description = Danielsville city, GA +station = ('kahn', 0.0034363022099949047) +zone = ('gaz027', 0.00018684110118626039) + +[fips1321688] +centroid = (0.56908228279807382, -1.4529177839528731) +description = Danville town, GA +station = ('kdbn', 0.0039070523870798624) +zone = ('gaz083', 0.0028685531453628127) + +[fips13217] +centroid = (0.58545404714043381, -1.4635491429321312) +description = Newton County, GA +station = ('k9a1', 0.0015020761931282623) +zone = ('gaz048', 0.00020561780412117916) + +[fips1321716] +centroid = (0.54704708211262498, -1.4211186878329924) +description = Darien city, GA +station = ('kbqk', 0.0017508167386434642) +zone = ('gaz154', 0.0025180095898028505) + +[fips1321744] +centroid = (0.53655079416417872, -1.4525053801039194) +description = Dasher town, GA +station = ('kvld', 0.00097887607381662712) +zone = ('gaz160', 0.0017401323964190073) + +[fips1321790804] +centroid = (0.58640553083545111, -1.4643692556943511) +description = Covington-Porterdale CCD, GA +station = ('k9a1', 0.00093607394528772705) +zone = ('gaz048', 0.0010697996036377853) + +[fips1321791920] +centroid = (0.58553176665202511, -1.4617998168761499) +description = Mansfield CCD, GA +station = ('k9a1', 0.0019831126584828802) +zone = ('gaz048', 0.0013915299618633384) + +[fips1321792810] +centroid = (0.58400060675254295, -1.4639520521899543) +description = South Newton CCD, GA +station = ('k9a1', 0.0029821184772858065) +zone = ('gaz048', 0.0016959539076429279) + +[fips1321800] +centroid = (0.57563423135676806, -1.4417042878549049) +description = Davisboro city, GA +station = ('ksbo', 0.0071784602008527851) +zone = ('gaz074', 0.0028236745533847915) + +[fips13219] +centroid = (0.59051688078132647, -1.4562630739834634) +description = Oconee County, GA +station = ('kahn', 0.0025253913717664437) +zone = ('gaz037', 1.7156705463734267e-05) + +[fips1321912] +centroid = (0.55452363629585566, -1.4738170894545393) +description = Dawson city, GA +station = ('kaby', 0.0055153692664762916) +zone = ('gaz124', 0.00013153491585191104) + +[fips1321940] +centroid = (0.60097199641271826, -1.4682432757685402) +description = Dawsonville city, GA +station = ('kcni', 0.0047839273634393154) +zone = ('gaz014', 0.00069125430706845961) + +[fips1321990324] +centroid = (0.59177547261152452, -1.4582111930412467) +description = Bogart CCD, GA +station = ('kwdr', 0.0021709362446404442) +zone = ('gaz037', 0.0020495854414665123) + +[fips1321991050] +centroid = (0.58946929925769431, -1.4544918789519545) +description = Elder CCD, GA +station = ('kahn', 0.0030702719990730282) +zone = ('gaz037', 0.0018058392089976723) + +[fips1321993282] +centroid = (0.59051688078132647, -1.4562630739834634) +description = Watkinsville CCD, GA +station = ('kahn', 0.0025253913717664437) +zone = ('gaz037', 1.7156705463734267e-05) + +[fips1322024] +centroid = (0.58320503331960649, -1.4379153874883355) +description = Dearing town, GA +station = ('khqu', 0.0027483769430552392) +zone = ('gaz063', 0.0018185907068486858) + +[fips1322052] +centroid = (0.58942308293910162, -1.4712751570253495) +description = Decatur city, GA +station = ('kpdk', 0.0019528924652952239) +zone = ('gaz045', 0.0010381668761076082) + +[fips1322080] +centroid = (0.54535995959118466, -1.437553074588914) +description = Deenwood CDP, GA +station = ('kays', 0.00051443687741853394) +zone = ('gaz151', 0.002998841940139131) + +[fips13221] +centroid = (0.59108727183417065, -1.4499162365184635) +description = Oglethorpe County, GA +station = ('kiiy', 0.0040337028933284938) +zone = ('gaz038', 0.00026024641632677519) + +[fips1322108] +centroid = (0.57623991296708765, -1.4480548428712117) +description = Deepstep town, GA +station = ('kmlj', 0.0046645054762584912) +zone = ('gaz074', 0.002639515478265042) + +[fips1322190814] +centroid = (0.59201980125351139, -1.4510534057926003) +description = Crawford CCD, GA +station = ('kahn', 0.0028582255716663755) +zone = ('gaz038', 0.0010943787359118833) + +[fips1322191938] +centroid = (0.58959396812616438, -1.4504540771807579) +description = Maxeys CCD, GA +station = ('k3j7', 0.0032447416888336535) +zone = ('gaz038', 0.001771182982732904) + +[fips1322193186] +centroid = (0.59255563478716611, -1.4478154709643005) +description = Vesta-Enterprise CCD, GA +station = ('kiiy', 0.0035903423378243582) +zone = ('gaz038', 0.0022090948614003334) + +[fips13223] +centroid = (0.59203144259962215, -1.4812082097708847) +description = Paulding County, GA +station = ('kpuj', 0.0010746060431038888) +zone = ('gaz031', 1.268026654976072e-05) + +[fips1322304] +centroid = (0.60324741706512819, -1.4580883916750764) +description = Demorest city, GA +station = ('ktoc', 0.0035709568846109293) +zone = ('gaz017', 0.0011883267912444178) + +[fips1322388] +centroid = (0.55362070766062899, -1.4432518014894784) +description = Denton city, GA +station = ('kamg', 0.0043348223750461759) +zone = ('gaz133', 0.0017021007807467182) + +[fips1322390858] +centroid = (0.59217225576367294, -1.4803048797099301) +description = Dallas CCD, GA +station = ('kpuj', 0.0018372584683457229) +zone = ('gaz031', 0.00076816730294905771) + +[fips1322391494] +centroid = (0.59042018954076592, -1.4801150926070683) +description = Hiram CCD, GA +station = ('kpuj', 0.0024256101619191442) +zone = ('gaz031', 0.0018401792125870016) + +[fips1322392210] +centroid = (0.59377083773215966, -1.4807291867043824) +description = North Paulding CCD, GA +station = ('kvpc', 0.0019740214840062516) +zone = ('gaz031', 0.0017968589256585421) + +[fips1322393462] +centroid = (0.59116769660610269, -1.4827272745386504) +description = Yorkville CCD, GA +station = ('kpuj', 0.00070339730582135427) +zone = ('gaz031', 0.0015188244940301328) + +[fips1322472] +centroid = (0.55771629728335881, -1.4671872817579135) +description = De Soto city, GA +station = ('kacj', 0.0033777167714944228) +zone = ('gaz104', 0.0024726753144628691) + +[fips13225] +centroid = (0.56847684553384947, -1.4631440345594511) +description = Peach County, GA +station = ('kmcn', 0.0033131391982745505) +zone = ('gaz094', 8.6712938854400005e-05) + +[fips1322590486] +centroid = (0.56946999023811196, -1.4619197384490545) +description = Byron CCD, GA +station = ('kmcn', 0.0019040577860055584) +zone = ('gaz094', 0.0014110886618008528) + +[fips1322591242] +centroid = (0.56788093776734105, -1.4637328737424888) +description = Fort Valley CCD, GA +station = ('kmcn', 0.0040699809943386513) +zone = ('gaz094', 0.00079411794258870674) + +[fips13227] +centroid = (0.60138148556182103, -1.4746331530528942) +description = Pickens County, GA +station = ('kcni', 0.0027044675801005209) +zone = ('gaz013', 0.00037928176468621954) + +[fips1322724] +centroid = (0.59633963077853736, -1.4475635675933602) +description = Dewy Rose CDP, GA +station = ('kand', 0.0066273538923650932) +zone = ('gaz029', 0.001682815067304396) + +[fips1322752] +centroid = (0.56606603969136227, -1.4496553621551678) +description = Dexter town, GA +station = ('kdbn', 0.0025373848282423451) +zone = ('gaz097', 0.0020859085211937783) + +[fips1322791590] +centroid = (0.6010311456210683, -1.4743219608472635) +description = Jasper CCD, GA +station = ('kcni', 0.0022876209980774872) +zone = ('gaz013', 0.00049422634054029947) + +[fips1322791830] +centroid = (0.60160614434313775, -1.476586385925386) +description = Ludville CCD, GA +station = ('kcni', 0.0037757939574359104) +zone = ('gaz013', 0.001967223791076958) + +[fips1322792139] +centroid = (0.60136637101049883, -1.4721341731765962) +description = Nelson-Tate-Marble Hill CCD, GA +station = ('kcni', 0.0027286525859576585) +zone = ('gaz013', 0.0017121545610940796) + +[fips1322792952] +centroid = (0.60244112731058441, -1.4750436370396707) +description = Talking Rock CCD, GA +station = ('kcni', 0.0038152738290014795) +zone = ('gaz013', 0.001156301779182271) + +[fips13229] +centroid = (0.54723032423079188, -1.4348426306204443) +description = Pierce County, GA +station = ('kays', 0.0033595047213726545) +zone = ('gaz151', 9.5829321332605117e-05) + +[fips1322976] +centroid = (0.61042026650521941, -1.4552556699392123) +description = Dillard city, GA +station = ('k1a5', 0.0042588145117512625) +zone = ('gaz010', 0.0016486002154991524) + +[fips1322990282] +centroid = (0.54639094303363023, -1.4358534904166143) +description = Blackshear CCD, GA +station = ('kays', 0.0021928045437829132) +zone = ('gaz151', 0.0012366216051733297) + +[fips1322990396] +centroid = (0.54864599569366945, -1.4356929201254309) +description = Bristol CCD, GA +station = ('kays', 0.0038529570442126489) +zone = ('gaz151', 0.0014950632772073847) + +[fips1322992322] +centroid = (0.54759605797554722, -1.4328825386039921) +description = Patterson CCD, GA +station = ('kjes', 0.0044786440992104796) +zone = ('gaz151', 0.0017391307576845316) + +[fips13231] +centroid = (0.57754287106687152, -1.4728244858023449) +description = Pike County, GA +station = ('k6a2', 0.0028833764082936862) +zone = ('gaz068', 4.5158610059514499e-05) + +[fips1323190768] +centroid = (0.57689921109202857, -1.4742133490079119) +description = Concord-Molena CCD, GA +station = ('kopn', 0.0034204889069485824) +zone = ('gaz068', 0.0013097346098842751) + +[fips1323191968] +centroid = (0.57646506044059498, -1.47180715083465) +description = Meansville CCD, GA +station = ('kopn', 0.0015948681511560353) +zone = ('gaz068', 0.001417285519349508) + +[fips1323193384] +centroid = (0.57872075887245744, -1.473747101751534) +description = Williamson CCD, GA +station = ('k6a2', 0.002685891320901536) +zone = ('gaz068', 0.0013673047006294396) + +[fips1323193474] +centroid = (0.57819335527908977, -1.4715611117699963) +description = Zebulon CCD, GA +station = ('k6a2', 0.0018196294863361984) +zone = ('gaz068', 0.0012617996386683403) + +[fips1323200] +centroid = (0.54459005995154486, -1.4227125574124986) +description = Dock Junction CDP, GA +station = ('kbqk', 0.001100331070059499) +zone = ('gaz154', 0.0011196102767384896) + +[fips1323284] +centroid = (0.54668597349038728, -1.4646197802551824) +description = Doerun city, GA +station = ('kmgr', 0.0044872661039719692) +zone = ('gaz146', 0.0032188114203936299) + +[fips13233] +centroid = (0.59334145182958398, -1.486790593023511) +description = Polk County, GA +station = ('kpuj', 0.0038755830817840931) +zone = ('gaz030', 0.00010383095442896959) + +[fips1323368] +centroid = (0.54174482420494374, -1.4814079627037755) +description = Donalsonville city, GA +station = ('kbge', 0.003881735032640098) +zone = ('gaz155', 0.0016060269270608679) + +[fips1323390114] +centroid = (0.59435124697491037, -1.4842927476112269) +description = Aragon CCD, GA +station = ('kpuj', 0.0029246233840578778) +zone = ('gaz030', 0.0022786775036795618) + +[fips1323390600] +centroid = (0.59326532056761205, -1.4883456813870379) +description = Cedartown CCD, GA +station = ('kpuj', 0.0050677019631772402) +zone = ('gaz030', 0.0012818198619898179) + +[fips1323392568] +centroid = (0.59295952142937003, -1.4847877229870923) +description = Rockmart CCD, GA +station = ('kpuj', 0.0022153045774441428) +zone = ('gaz030', 0.0017488367769561022) + +[fips1323480] +centroid = (0.56251919903875192, -1.4648360614560891) +description = Dooling town, GA +station = ('kacj', 0.0045191990028511505) +zone = ('gaz105', 0.0023049526330628394) + +[fips13235] +centroid = (0.5626731021721928, -1.4570332354224906) +description = Pulaski County, GA +station = ('kezm', 0.0052454312726245107) +zone = ('gaz107', 0.00013202186723294256) + +[fips1323536] +centroid = (0.59178439124400228, -1.4708748483081122) +description = Doraville city, GA +station = ('kpdk', 0.00054681969942450197) +zone = ('gaz033', 0.0012695814942850899) + +[fips1323591170] +centroid = (0.56172729079724459, -1.457609403515159) +description = Finleyson CCD, GA +station = ('kezm', 0.0057401387497598788) +zone = ('gaz107', 0.0010150382154849318) + +[fips1323591422] +centroid = (0.5627810507864287, -1.4555020755230086) +description = Hartford CCD, GA +station = ('kezm', 0.003968980337881403) +zone = ('gaz107', 0.0012330334437879067) + +[fips1323591434] +centroid = (0.56373579824714704, -1.4577876888982504) +description = Hawkinsville CCD, GA +station = ('kwrb', 0.0059268906565301156) +zone = ('gaz107', 0.0013706898281659098) + +[fips13237] +centroid = (0.58156222470787422, -1.4551122387812834) +description = Putnam County, GA +station = ('kmlj', 0.0034863831001235002) +zone = ('gaz060', 1.9578730901340297e-05) + +[fips1323791032] +centroid = (0.58248901199397574, -1.4560262328039677) +description = Eatonton CCD, GA +station = ('kmlj', 0.004682105463198789) +zone = ('gaz060', 0.0011814654795293479) + +[fips1323791782] +centroid = (0.58000989396456537, -1.4560963950398977) +description = Little River CCD, GA +station = ('kmlj', 0.00305946221328898) +zone = ('gaz060', 0.0017614985701945144) + +[fips1323792364] +centroid = (0.58189980629179505, -1.4534354311557223) +description = Phoenix CCD, GA +station = ('kmlj', 0.0032907038860626944) +zone = ('gaz060', 0.0014524710940153548) + +[fips1323872] +centroid = (0.54990847960809963, -1.4460801075423351) +description = Douglas city, GA +station = ('kdqh', 0.00054435982991801919) +zone = ('gaz132', 0.00073270259952153268) + +[fips13239] +centroid = (0.55608785273137051, -1.4836924765215884) +description = Quitman County, GA +station = ('keuf', 0.0024006458260727821) +zone = ('gaz120', 0.00017438362113974344) + +[fips1323900] +centroid = (0.58884490771779352, -1.4784201859171642) +description = Douglasville city, GA +station = ('kfty', 0.002874585355357433) +zone = ('gaz043', 0.0010879246060443827) + +[fips1323991272] +centroid = (0.55698762232065113, -1.4834197164660867) +description = Georgetown North CCD, GA +station = ('keuf', 0.0021544652405844503) +zone = ('gaz120', 0.00087920010465596739) + +[fips1323991278] +centroid = (0.55537031296929062, -1.484316588808809) +description = Georgetown South CCD, GA +station = ('keuf', 0.0026241067210371455) +zone = ('gaz120', 0.00090850801900546759) + +[fips13241] +centroid = (0.60882365675878747, -1.4556872375033527) +description = Rabun County, GA +station = ('ktoc', 0.0052982772585080523) +zone = ('gaz010', 4.3372148223142653e-05) + +[fips1324190684] +centroid = (0.60997288625805568, -1.4525786315726257) +description = Clayton CCD, GA +station = ('k1a5', 0.0054048567670276571) +zone = ('gaz010', 0.0027707762793693991) + +[fips1324192103] +centroid = (0.60984909005421162, -1.4549217535467207) +description = Mountain City CCD, GA +station = ('k1a5', 0.0048634205749358622) +zone = ('gaz010', 0.0012016517846825578) + +[fips1324193042] +centroid = (0.60735084321619959, -1.4570275980090068) +description = Tiger CCD, GA +station = ('ktoc', 0.0044682171707409136) +zone = ('gaz010', 0.0018442606213234906) + +[fips1324264] +centroid = (0.58970142804820957, -1.4717656643583301) +description = Druid Hills CDP, GA +station = ('kpdk', 0.001716080845008831) +zone = ('gaz045', 0.0014721736446177247) + +[fips13243] +centroid = (0.55436283911186945, -1.4792068756242081) +description = Randolph County, GA +station = ('keuf', 0.0065209639965732201) +zone = ('gaz122', 2.804579450973953e-05) + +[fips1324376] +centroid = (0.56787018653914889, -1.4473710752301576) +description = Dublin city, GA +station = ('kdbn', 0.00096628563255755451) +zone = ('gaz097', 0.0012748526043743027) + +[fips1324390252] +centroid = (0.55652451665692704, -1.4793791221680872) +description = Benevolence CCD, GA +station = ('keuf', 0.005593625745283947) +zone = ('gaz122', 0.0021658031002355954) + +[fips1324390840] +centroid = (0.55381187357359984, -1.4804185180975273) +description = Cuthbert CCD, GA +station = ('kbij', 0.0058669874663123175) +zone = ('gaz122', 0.0011433422117593448) + +[fips1324392754] +centroid = (0.55394862012049362, -1.4770374313639789) +description = Shellman CCD, GA +station = ('kbij', 0.0070829100192844009) +zone = ('gaz122', 0.0019178802474249664) + +[fips1324488] +centroid = (0.56781639549160234, -1.4500827060225185) +description = Dudley city, GA +station = ('kdbn', 0.0015482417103150497) +zone = ('gaz097', 0.0026700786096136484) + +[fips13245] +centroid = (0.58226779151128538, -1.4324789486677609) +description = Richmond County, GA +station = ('kags', 0.0015817167005444629) +zone = ('gaz065', 3.9516174134371188e-05) + +[fips1324590168] +centroid = (0.58371997526211483, -1.4315422828180933) +description = Augusta CCD, GA +station = ('kdnl', 0.00042149034738848452) +zone = ('gaz065', 0.0016683433421240278) + +[fips1324591224] +centroid = (0.5822980206139301, -1.4349593756941104) +description = Fort Gordon CCD, GA +station = ('kdnl', 0.003229294956990772) +zone = ('gaz065', 0.0020944876645528857) + +[fips1324591338] +centroid = (0.58238800979016292, -1.4319305313101993) +description = Gracewood CCD, GA +station = ('kags', 0.001121448992054481) +zone = ('gaz065', 0.00046230391281426928) + +[fips1324591452] +centroid = (0.58111325621109133, -1.4319110010758695) +description = Hephzibah CCD, GA +station = ('kags', 0.0016647365039194244) +zone = ('gaz065', 0.0012095147035423603) + +[fips1324600] +centroid = (0.59343842232282484, -1.4687028209605903) +description = Duluth city, GA +station = ('klzu', 0.0027508372442200308) +zone = ('gaz034', 0.0019646384986997311) + +[fips13247] +centroid = (0.58733961359782594, -1.4665368149989877) +description = Rockdale County, GA +station = ('k9a1', 0.0025915236031173652) +zone = ('gaz046', 4.2490853845728681e-05) + +[fips1324768] +centroid = (0.59238895584360063, -1.4715342336995156) +description = Dunwoody city, GA +station = ('kpdk', 0.00102979298440684) +zone = ('gaz033', 0.00063252400136347311) + +[fips1324790774] +centroid = (0.5873698776070555, -1.4663598037062504) +description = Conyers CCD, GA +station = ('k9a1', 0.0024508209489625828) +zone = ('gaz046', 0.00015260710391238586) + +[fips1324792214] +centroid = (0.5884198502317628, -1.4654834913421166) +description = North Rockdale CCD, GA +station = ('k9a1', 0.0022333595122246367) +zone = ('gaz046', 0.0013616595391868218) + +[fips1324792820] +centroid = (0.58632779387056722, -1.4674758195898534) +description = South Rockdale CCD, GA +station = ('k9a1', 0.0034037196323080656) +zone = ('gaz046', 0.0013095356750852521) + +[fips1324796] +centroid = (0.54086175741660469, -1.4463383813650452) +description = Du Pont town, GA +station = ('khoe', 0.0019307141315286611) +zone = ('gaz163', 0.0027576579239043681) + +[fips1324876] +centroid = (0.55856543487103905, -1.4142896508022516) +description = Dutch Island CDP, GA +station = ('ksvn', 0.0017493931911682105) +zone = ('gaz119', 0.0014878922664149842) + +[fips13249] +centroid = (0.56310327347293188, -1.4717091680504428) +description = Schley County, GA +station = ('kacj', 0.0032338894661542812) +zone = ('gaz092', 0.00011817897980114426) + +[fips1324964] +centroid = (0.59839620459603993, -1.4486358804324928) +description = Eagle Grove CDP, GA +station = ('kand', 0.0055445321214273244) +zone = ('gaz028', 0.0012601631518668944) + +[fips1324991062] +centroid = (0.564059015771324, -1.4718783777214239) +description = Ellaville North CCD, GA +station = ('kacj', 0.0041264911799888436) +zone = ('gaz092', 0.0010143773929954529) + +[fips1324991068] +centroid = (0.5618472298234416, -1.4712551555521218) +description = Ellaville South CCD, GA +station = ('kacj', 0.0020160315862871219) +zone = ('gaz092', 0.0012598486926348616) + +[fips13251] +centroid = (0.57150371769570574, -1.4244955857763362) +description = Screven County, GA +station = ('kjyl', 0.0017638283232467998) +zone = ('gaz088', 0.0001332095187933476) + +[fips1325191482] +centroid = (0.57388225240032364, -1.4258054030200804) +description = Hiltonia CCD, GA +station = ('kjyl', 0.0043503741887245487) +zone = ('gaz088', 0.0025644811860524213) + +[fips1325192022] +centroid = (0.57453435976874623, -1.4232622663137069) +description = Millhaven CCD, GA +station = ('kjyl', 0.0048217276600431239) +zone = ('gaz088', 0.0030780309301798362) + +[fips1325192148] +centroid = (0.56891078674577289, -1.4229918275461102) +description = Newington CCD, GA +station = ('kjyl', 0.0012829875993510052) +zone = ('gaz088', 0.0029445392015172264) + +[fips1325192580] +centroid = (0.57017719765102004, -1.4265077584176677) +description = Rocky Ford CCD, GA +station = ('kjyl', 0.0020469428186326182) +zone = ('gaz088', 0.0022808094061907451) + +[fips1325192934] +centroid = (0.57149516558237101, -1.4241730140239826) +description = Sylvania CCD, GA +station = ('kjyl', 0.0017280430213012549) +zone = ('gaz088', 0.00021890118617604582) + +[fips13253] +centroid = (0.53989830076291878, -1.4812189086391996) +description = Seminole County, GA +station = ('kbge', 0.0035527737899153354) +zone = ('gaz155', 0.00024805806589737838) + +[fips1325300] +centroid = (0.56811118160226426, -1.4462509054629353) +description = East Dublin city, GA +station = ('kdbn', 0.0017957761744414333) +zone = ('gaz097', 0.0017379103349014781) + +[fips1325356] +centroid = (0.60526880504491043, -1.4743163583403647) +description = East Ellijay city, GA +station = ('kcni', 0.0064477925687065367) +zone = ('gaz007', 0.00032009452815441093) + +[fips1325390966] +centroid = (0.53924982367934027, -1.4801200144355589) +description = Donalsonville CCD, GA +station = ('kbge', 0.0028401045074280757) +zone = ('gaz155', 0.0013063884702204413) + +[fips1325392856] +centroid = (0.53965177300607459, -1.4821338800462651) +description = Steam Mill CCD, GA +station = ('kbge', 0.0043687973431645703) +zone = ('gaz155', 0.00092118006307087812) + +[fips1325440] +centroid = (0.58020753504906131, -1.4701361900620831) +description = East Griffin CDP, GA +station = ('k6a2', 0.00068174403595312684) +zone = ('gaz056', 0.00081108864980514357) + +[fips13255] +centroid = (0.58053820512914411, -1.4710693827065395) +description = Spalding County, GA +station = ('k6a2', 0.0006391103610884054) +zone = ('gaz056', 3.8722490183872069e-05) + +[fips1325552] +centroid = (0.56190627431203666, -1.4516896830247075) +description = Eastman city, GA +station = ('kezm', 0.00078375450811288359) +zone = ('gaz109', 0.00040986376714464328) + +[fips1325590942] +centroid = (0.57998720468428944, -1.4744194200326948) +description = Digbey CCD, GA +station = ('kffc', 0.0027007826786847556) +zone = ('gaz068', 0.0027453592153919011) + +[fips1325591380] +centroid = (0.58045558124235475, -1.470851652882353) +description = Griffin CCD, GA +station = ('k6a2', 0.00053588290557619878) +zone = ('gaz056', 0.0001634817493113949) + +[fips1325592292] +centroid = (0.57979790627361827, -1.469061014882977) +description = Orchard Hill CCD, GA +station = ('k6a2', 0.0015225879321753343) +zone = ('gaz056', 0.0017989370893576663) + +[fips1325592613] +centroid = (0.57978612530116735, -1.4717485426783679) +description = Rover CCD, GA +station = ('k6a2', 0.00074272353344110144) +zone = ('gaz056', 0.00093985095480770371) + +[fips1325592901] +centroid = (0.5817275422946232, -1.471788755064334) +description = Sunny Side CCD, GA +station = ('k6a2', 0.0019621986245504032) +zone = ('gaz056', 0.0013689016164821644) + +[fips1325593071] +centroid = (0.58124042090039152, -1.4692007808494769) +description = Towalaga CCD, GA +station = ('k6a2', 0.0019244795546037583) +zone = ('gaz056', 0.0016975425312898786) + +[fips1325593180] +centroid = (0.58040362279052282, -1.4730703154274882) +description = Vaughn CCD, GA +station = ('k6a2', 0.0018985109510657109) +zone = ('gaz056', 0.0017053717923370621) + +[fips1325692] +centroid = (0.58199393189835502, -1.4796329803077897) +description = East Newnan CDP, GA +station = ('kffc', 0.0030838561292308516) +zone = ('gaz053', 0.00023746270887030119) + +[fips13257] +centroid = (0.60306211545844401, -1.4536885038972613) +description = Stephens County, GA +station = ('ktoc', 0.0007019430293847505) +zone = ('gaz018', 5.0868980758169049e-05) + +[fips1325720] +centroid = (0.58764293436852999, -1.4742859023449173) +description = East Point city, GA +station = ('katl', 0.00063614734332134303) +zone = ('gaz044', 0.002246169285593879) + +[fips1325791934] +centroid = (0.60230647515879299, -1.4541652405824437) +description = Martin-Avalon CCD, GA +station = ('ktoc', 0.0014835024490528273) +zone = ('gaz018', 0.00084816447089446577) + +[fips1325792556] +centroid = (0.60333089616325108, -1.4524935642248835) +description = Rock Creek CCD, GA +station = ('ktoc', 0.0011543857626634773) +zone = ('gaz018', 0.0010610887791398581) + +[fips1325793054] +centroid = (0.60396514881342578, -1.4542887924401924) +description = Toccoa CCD, GA +station = ('ktoc', 0.00045530645042807352) +zone = ('gaz018', 0.0009906818488440855) + +[fips13259] +centroid = (0.5597833779829583, -1.4806485350396477) +description = Stewart County, GA +station = ('klsf', 0.0045398066941453059) +zone = ('gaz102', 9.2164586682389539e-05) + +[fips1325991848] +centroid = (0.55835028813414578, -1.4814480005568162) +description = Lumpkin CCD, GA +station = ('keuf', 0.0037836949345206126) +zone = ('gaz102', 0.0016672305650463229) + +[fips1325992280] +centroid = (0.56097660723266929, -1.4816310506887653) +description = Omaha CCD, GA +station = ('klsf', 0.0034538545344639134) +zone = ('gaz102', 0.0013777082726254472) + +[fips1325992508] +centroid = (0.56000147432628755, -1.4783108759461117) +description = Richland CCD, GA +station = ('klsf', 0.0047431083345359686) +zone = ('gaz103', 0.0023209045680914753) + +[fips1326084] +centroid = (0.58164531983356171, -1.4554102013911838) +description = Eatonton city, GA +station = ('kmlj', 0.0036962946471703192) +zone = ('gaz060', 0.00024453405432944874) + +[fips13261] +centroid = (0.55924194194240462, -1.4696419826310885) +description = Sumter County, GA +station = ('kacj', 0.0011849749812326907) +zone = ('gaz104', 0.00011301146558495819) + +[fips1326190090] +centroid = (0.55933472364544068, -1.4699460713466632) +description = Americus CCD, GA +station = ('kacj', 0.0011367624845257341) +zone = ('gaz104', 0.00038695734896953274) + +[fips1326190096] +centroid = (0.56069595828894858, -1.4675271846297393) +description = Andersonville CCD, GA +station = ('kacj', 0.0017489134481623086) +zone = ('gaz104', 0.0022513840011699256) + +[fips1326191728] +centroid = (0.55795540739088201, -1.467064846910886) +description = Leslie-De Soto CCD, GA +station = ('kacj', 0.0032557042621781406) +zone = ('gaz104', 0.0024249660919079818) + +[fips1326192388] +centroid = (0.55921928756871375, -1.4723282188828328) +description = Plains CCD, GA +station = ('kacj', 0.0026320415294982711) +zone = ('gaz104', 0.0023833743807386682) + +[fips1326224] +centroid = (0.57863635474983099, -1.442078102474097) +description = Edge Hill city, GA +station = ('khqu', 0.0067511695878337344) +zone = ('gaz075', 0.0013406820579345998) + +[fips13263] +centroid = (0.57080300290761499, -1.4753273228562898) +description = Talbot County, GA +station = ('kopn', 0.0058540592413550765) +zone = ('gaz079', 9.9178578216079432e-05) + +[fips1326391626] +centroid = (0.56890322947011174, -1.4758442719274381) +description = Junction City CCD, GA +station = ('kcsg', 0.0059059375098172769) +zone = ('gaz079', 0.0018525733941384683) + +[fips1326392946] +centroid = (0.57069407690899809, -1.4746268873208794) +description = Talbotton CCD, GA +station = ('kopn', 0.0055674250788726237) +zone = ('gaz079', 0.00063337860424933067) + +[fips1326393420] +centroid = (0.57234062052532952, -1.4761334380779085) +description = Woodland CCD, GA +station = ('kopn', 0.0053767547066609191) +zone = ('gaz079', 0.0017460084329224985) + +[fips1326448] +centroid = (0.5508400840029366, -1.4789466644860281) +description = Edison city, GA +station = ('kbij', 0.0036106170593188398) +zone = ('gaz123', 0.001761988863447242) + +[fips13265] +centroid = (0.58572052401062835, -1.4464452478751448) +description = Taliaferro County, GA +station = ('kiiy', 0.0039405843940874636) +zone = ('gaz051', 0.00013047317030189239) + +[fips1326590816] +centroid = (0.58555854000275076, -1.4472815049329455) +description = Crawfordville CCD, GA +station = ('k3j7', 0.0032451338052015299) +zone = ('gaz051', 0.00070501435053779758) + +[fips1326592742] +centroid = (0.58600600751637699, -1.4450092956863589) +description = Sharon CCD, GA +station = ('kiiy', 0.0035776214567008664) +zone = ('gaz051', 0.0012581253919081428) + +[fips1326616] +centroid = (0.59527571297310666, -1.4464003231001985) +description = Elberton city, GA +station = ('kiiy', 0.0057661382925251019) +zone = ('gaz029', 0.00049947112879456456) + +[fips13267] +centroid = (0.55926925634519831, -1.4322033611788709) +description = Tattnall County, GA +station = ('kcwv', 0.003906048485259132) +zone = ('gaz114', 3.8472726299107906e-05) + +[fips1326790738] +centroid = (0.56253731555638764, -1.4333090447133019) +description = Collins CCD, GA +station = ('kvdi', 0.0037435062713123543) +zone = ('gaz099', 0.0030955049623331639) + +[fips1326791302] +centroid = (0.55766762005052073, -1.4307507934556063) +description = Glennville CCD, GA +station = ('kcwv', 0.0046034395226226231) +zone = ('gaz114', 0.0020398648432194081) + +[fips1326792478] +centroid = (0.55925396726095089, -1.4331368505293001) +description = Reidsville CCD, GA +station = ('kcwv', 0.0045153281554449927) +zone = ('gaz114', 0.00080776925510379384) + +[fips13269] +centroid = (0.56818612604034491, -1.4704647832003559) +description = Taylor County, GA +station = ('kopn', 0.006989741381449548) +zone = ('gaz080', 2.2203090204573222e-05) + +[fips1326980] +centroid = (0.56265334504506026, -1.4714716287392464) +description = Ellaville city, GA +station = ('kacj', 0.0027500757380610379) +zone = ('gaz092', 0.00043327900138507631) + +[fips1326990474] +centroid = (0.56783025340586324, -1.4707567244243371) +description = Butler CCD, GA +station = ('kopn', 0.0073432033952710264) +zone = ('gaz080', 0.00045466708047738058) + +[fips1326990557] +centroid = (0.57005010277488977, -1.4702886271189521) +description = Carsonville CCD, GA +station = ('kopn', 0.0051343576531378823) +zone = ('gaz080', 0.0018524952963112507) + +[fips1326992490] +centroid = (0.56827070469589658, -1.4679514218110217) +description = Reynolds CCD, GA +station = ('kopn', 0.0072771557361956569) +zone = ('gaz080', 0.0021044051750447211) + +[fips1326992628] +centroid = (0.56698577584728571, -1.4717985812680228) +description = Rupert CCD, GA +station = ('kacj', 0.0068262926385212787) +zone = ('gaz080', 0.0016671041421249335) + +[fips1327008] +centroid = (0.54413611726639366, -1.4588695312350992) +description = Ellenton town, GA +station = ('kmgr', 0.0036041177253773576) +zone = ('gaz147', 0.0023715684150848442) + +[fips1327092] +centroid = (0.6054778256761294, -1.4745225689914878) +description = Ellijay city, GA +station = ('kcni', 0.006676028902611284) +zone = ('gaz007', 0.0004092909099563816) + +[fips13271] +centroid = (0.55699807684287062, -1.4474200840755536) +description = Telfair County, GA +station = ('kezm', 0.0059981538599845298) +zone = ('gaz110', 0.00030502640102110105) + +[fips1327191578] +centroid = (0.55594937830851732, -1.4474637173068534) +description = Jacksonville CCD, GA +station = ('kfzg', 0.0058393908862728414) +zone = ('gaz110', 0.001333110088855475) + +[fips1327191842] +centroid = (0.55691093255331858, -1.4446948571683196) +description = Lumber City CCD, GA +station = ('kezm', 0.0074615254417371296) +zone = ('gaz110', 0.0024571674129505983) + +[fips1327191896] +centroid = (0.55889666345648248, -1.4465321652718941) +description = McRae-Helena CCD, GA +station = ('kezm', 0.0049592966566008529) +zone = ('gaz110', 0.0018354075742839121) + +[fips1327192004] +centroid = (0.55721533542815882, -1.4497526642609664) +description = Milan CCD, GA +station = ('kezm', 0.0051137309028837317) +zone = ('gaz110', 0.0018647163093402758) + +[fips13273] +centroid = (0.55461660998510942, -1.4737463512599558) +description = Terrell County, GA +station = ('kaby', 0.0055470071304544316) +zone = ('gaz124', 3.9847716696437955e-05) + +[fips1327344] +centroid = (0.59570703619115206, -1.4790811421048944) +description = Emerson city, GA +station = ('kvpc', 0.001515710567299038) +zone = ('gaz020', 0.0023120358798262739) + +[fips1327390414] +centroid = (0.55537483337205329, -1.4721657985426424) +description = Bronwood CCD, GA +station = ('kaby', 0.0054803350269781274) +zone = ('gaz124', 0.0015119172347601113) + +[fips1327390900] +centroid = (0.55385147509432764, -1.4743465176298391) +description = Dawson CCD, GA +station = ('kaby', 0.0053614580605550154) +zone = ('gaz124', 0.00093652956874020442) + +[fips1327392316] +centroid = (0.5562055751894176, -1.4748513017561007) +description = Parrott CCD, GA +station = ('kacj', 0.0061555496956425251) +zone = ('gaz124', 0.0018716899756451018) + +[fips1327392700] +centroid = (0.55296238692006916, -1.4724001788078926) +description = Sasser CCD, GA +station = ('kaby', 0.0035483730004166512) +zone = ('gaz124', 0.0019840566561980929) + +[fips13275] +centroid = (0.5386891715637222, -1.4646765209091643) +description = Thomas County, GA +station = ('ktvi', 0.00086538825390159802) +zone = ('gaz158', 1.6985742073690095e-05) + +[fips1327512] +centroid = (0.56438802778861741, -1.4535619500731993) +description = Empire CDP, GA +station = ('kezm', 0.0031375477750837698) +zone = ('gaz096', 0.0018235576850235665) + +[fips1327590330] +centroid = (0.53664851514899792, -1.4626035235434007) +description = Boston CCD, GA +station = ('ktvi', 0.0029449952174119944) +zone = ('gaz158', 0.0026924166881007331) + +[fips1327590780] +centroid = (0.54074991671813688, -1.4639440236753951) +description = Coolidge CCD, GA +station = ('ktvi', 0.0014151012506836136) +zone = ('gaz158', 0.0021680640787492466) + +[fips1327591974] +centroid = (0.5418576946476702, -1.4671809462127288) +description = Meigs CCD, GA +station = ('ktvi', 0.0037105595073574924) +zone = ('gaz145', 0.003689445097326383) + +[fips1327592256] +centroid = (0.54049021172544021, -1.4665177210969711) +description = Ochlocknee CCD, GA +station = ('ktvi', 0.0024439023839220079) +zone = ('gaz158', 0.0024114109586037746) + +[fips1327592328] +centroid = (0.54000738384116842, -1.4622411931906867) +description = Pavo-Barwick CCD, GA +station = ('ktvi', 0.0016565720719596581) +zone = ('gaz158', 0.002474407101853733) + +[fips1327593012] +centroid = (0.53750878793730583, -1.4655115911430738) +description = Thomasville CCD, GA +station = ('ktvi', 0.0022378350667779613) +zone = ('gaz158', 0.0013704985843748909) + +[fips1327596] +centroid = (0.54805787209562495, -1.454208420028138) +description = Enigma town, GA +station = ('ktma', 0.002405218207205921) +zone = ('gaz148', 0.0025680607294297623) + +[fips13277] +centroid = (0.54902827515973385, -1.4578025067435998) +description = Tift County, GA +station = ('ktma', 0.00094069017792217016) +zone = ('gaz129', 1.320791050016183e-05) + +[fips1327708] +centroid = (0.58306230029337835, -1.4880607040267724) +description = Ephesus city, GA +station = ('kctj', 0.0042059873754200974) +zone = ('gaz052', 0.0027111899608882346) + +[fips1327736] +centroid = (0.61001058536989872, -1.4727225760273208) +description = Epworth CDP, GA +station = ('kdnn', 0.0080605537149640166) +zone = ('gaz006', 0.0017511544228091945) + +[fips1327790420] +centroid = (0.54913732333139842, -1.4559993896400718) +description = Brookfield CCD, GA +station = ('ktma', 0.0011401211506824576) +zone = ('gaz129', 0.001551271763808813) + +[fips1327790660] +centroid = (0.5506252514253086, -1.4585075848548203) +description = Chula CCD, GA +station = ('ktma', 0.0025847917058030578) +zone = ('gaz129', 0.0016947638042387062) + +[fips1327791052] +centroid = (0.54782036769101361, -1.4570388379293897) +description = Eldorado CCD, GA +station = ('ktma', 0.00056301719309348355) +zone = ('gaz129', 0.0013848588857230759) + +[fips1327792286] +centroid = (0.54746363984519841, -1.458866040576595) +description = Omega CCD, GA +station = ('ktma', 0.0018382338944151456) +zone = ('gaz129', 0.0018113969774551596) + +[fips1327793036] +centroid = (0.54914664338960406, -1.457638672686715) +description = Tifton CCD, GA +station = ('ktma', 0.00093813812692188287) +zone = ('gaz129', 0.00018559599800085881) + +[fips1327793138] +centroid = (0.54912981841561481, -1.4594758411639495) +description = Ty Ty CCD, GA +station = ('ktma', 0.0022399485050092482) +zone = ('gaz129', 0.0014204389605577193) + +[fips13279] +centroid = (0.56071665789387715, -1.4369657189357403) +description = Toombs County, GA +station = ('kvdi', 0.0012907584972123775) +zone = ('gaz113', 0.00010862849218204258) + +[fips1327932] +centroid = (0.6078388023684721, -1.4794594073136789) +description = Eton city, GA +station = ('kdnn', 0.0023470347033394275) +zone = ('gaz005', 0.00071679749602588261) + +[fips1327988] +centroid = (0.59591799413784063, -1.482356165179799) +description = Euharlee city, GA +station = ('kvpc', 0.0012087382641121636) +zone = ('gaz020', 0.0021173995085160707) + +[fips1327990591] +centroid = (0.55877735274881624, -1.4371862412867298) +description = Cedar Crossing CCD, GA +station = ('kvdi', 0.0031139161418105676) +zone = ('gaz113', 0.0018447106828893649) + +[fips1327993192] +centroid = (0.56181672146811668, -1.4368186749462597) +description = Vidalia-Lyons CCD, GA +station = ('kvdi', 0.00071502231398475589) +zone = ('gaz113', 0.0012108614259381137) + +[fips1328044] +centroid = (0.58586590993731946, -1.433623134165491) +description = Evans CDP, GA +station = ('kdnl', 0.0023537696704077266) +zone = ('gaz064', 0.0018414975415521786) + +[fips13281] +centroid = (0.60916616017119884, -1.4614018469001102) +description = Towns County, GA +station = ('krhp', 0.0054371871554877533) +zone = ('gaz009', 0.0002560245496846886) + +[fips1328191458] +centroid = (0.6101586416503455, -1.4599718462840738) +description = Hiawassee CCD, GA +station = ('krhp', 0.0051167883532646664) +zone = ('gaz009', 0.001452765393609559) + +[fips1328191884] +centroid = (0.60857651813670499, -1.461978364058629) +description = Macedonia CCD, GA +station = ('krhp', 0.0058633231902447125) +zone = ('gaz009', 0.0009254204010272632) + +[fips1328193468] +centroid = (0.60992822328249718, -1.4638686778115864) +description = Young Harris CCD, GA +station = ('krhp', 0.004342703566646621) +zone = ('gaz009', 0.0020161944559058055) + +[fips1328296] +centroid = (0.58085829851395998, -1.4708730157123975) +description = Experiment CDP, GA +station = ('k6a2', 0.00093823850574365332) +zone = ('gaz056', 0.0003716532928588582) + +[fips13283] +centroid = (0.56565398490825891, -1.4411337571757203) +description = Treutlen County, GA +station = ('ksbo', 0.0047145990849131441) +zone = ('gaz098', 0.00011240261870475083) + +[fips1328380] +centroid = (0.58556735391547332, -1.4763047246906991) +description = Fairburn city, GA +station = ('katl', 0.0028179594243376771) +zone = ('gaz044', 0.0010545068551984984) + +[fips1328391290] +centroid = (0.56638864635030095, -1.4401825527333834) +description = Gillis Springs CCD, GA +station = ('ksbo', 0.0036427447757602228) +zone = ('gaz098', 0.0011216321009958246) + +[fips1328392802] +centroid = (0.56499306362711377, -1.4419284230374458) +description = Soperton CCD, GA +station = ('kvdi', 0.0047745495940847687) +zone = ('gaz098', 0.00091620593395006303) + +[fips1328492] +centroid = (0.60103896469611717, -1.4782858479246379) +description = Fairmount city, GA +station = ('kcni', 0.004550743436726172) +zone = ('gaz012', 0.0027871338831041946) + +[fips13285] +centroid = (0.57656047759080142, -1.4840248395710458) +description = Troup County, GA +station = ('klgc', 0.00078534654749398691) +zone = ('gaz066', 1.7161603367264097e-05) + +[fips1328520] +centroid = (0.59201501905136078, -1.4755787026284546) +description = Fair Oaks CDP, GA +station = ('kmge', 0.00040622673502873307) +zone = ('gaz032', 0.00059971518548810623) + +[fips1328590012] +centroid = (0.57766617857852487, -1.4861365134330335) +description = Abbottsford CCD, GA +station = ('klgc', 0.0019167055009557336) +zone = ('gaz066', 0.0020965784020519043) + +[fips1328591470] +centroid = (0.57856840908205076, -1.4838788776857015) +description = Hillcrest CCD, GA +station = ('klgc', 0.002571904438261744) +zone = ('gaz066', 0.0020287068002410925) + +[fips1328591506] +centroid = (0.57867878370394699, -1.4824004441829219) +description = Hogansville CCD, GA +station = ('klgc', 0.0032565997253277803) +zone = ('gaz066', 0.0025317388590727747) + +[fips1328591674] +centroid = (0.57628213248169347, -1.4838457164299135) +description = LaGrange CCD, GA +station = ('klgc', 0.00081380468832662335) +zone = ('gaz066', 0.0003008653294150948) + +[fips1328592232] +centroid = (0.57457129093571846, -1.4822021922331881) +description = Oak Grove CCD, GA +station = ('klgc', 0.0026669133145763514) +zone = ('gaz066', 0.0024948189734432698) + +[fips1328593342] +centroid = (0.57458425873206076, -1.4857099200572612) +description = West Point CCD, GA +station = ('klgc', 0.0017112637539793076) +zone = ('gaz066', 0.0024163426816768631) + +[fips1328632] +centroid = (0.60963596789925079, -1.4886626331792001) +description = Fairview CDP, GA +station = ('kcha', 0.0022561262733423152) +zone = ('gaz003', 0.0022779303858751084) + +[fips13287] +centroid = (0.55358758131142605, -1.4595938428746769) +description = Turner County, GA +station = ('ktma', 0.0056545666888124799) +zone = ('gaz128', 7.3079849189459456e-05) + +[fips1328744] +centroid = (0.53558594124709114, -1.4411450145493958) +description = Fargo city, GA +station = ('khoe', 0.0071598225260236124) +zone = ('gaz163', 0.0044673486466089481) + +[fips1328790134] +centroid = (0.55318409609495001, -1.4600258293178379) +description = Ashburn-Sycamore CCD, GA +station = ('ktma', 0.005449761522662403) +zone = ('gaz128', 0.00056891256982608495) + +[fips1328792454] +centroid = (0.55483865077254813, -1.4579134922307342) +description = Rebecca CCD, GA +station = ('kfzg', 0.0043403400775656915) +zone = ('gaz128', 0.0018738369033379945) + +[fips13289] +centroid = (0.57012658310271214, -1.4560562699203943) +description = Twiggs County, GA +station = ('kwrb', 0.0026209513176472408) +zone = ('gaz083', 3.0567036388636821e-05) + +[fips1328968] +centroid = (0.58380563602180269, -1.474066793710622) +description = Fayetteville city, GA +station = ('kffc', 0.0021472357299305639) +zone = ('gaz054', 0.00081578128351928977) + +[fips1328992215] +centroid = (0.57151216508928537, -1.4556465713317814) +description = North Twiggs CCD, GA +station = ('kwrb', 0.0034983763229260662) +zone = ('gaz083', 0.001409806865241366) + +[fips1328992821] +centroid = (0.56883278798150128, -1.4565256762227183) +description = South Twiggs CCD, GA +station = ('kwrb', 0.0022830610059263513) +zone = ('gaz083', 0.0013699899220097616) + +[fips13291] +centroid = (0.60796397738242514, -1.4658945861941313) +description = Union County, GA +station = ('krhp', 0.0065567212432261846) +zone = ('gaz008', 1.7804275056628926e-05) + +[fips1329190288] +centroid = (0.60784180433478563, -1.4653141245915031) +description = Blairsville CCD, GA +station = ('krhp', 0.006562029889297106) +zone = ('gaz008', 0.0005093977620842814) + +[fips1329191566] +centroid = (0.60982688946612629, -1.4668433122689304) +description = Ivylog CCD, GA +station = ('krhp', 0.0051346066132000271) +zone = ('gaz008', 0.0020058185680069318) + +[fips1329192874] +centroid = (0.60590251664301709, -1.4669846490317571) +description = Suches CCD, GA +station = ('kgvl', 0.0084442677072269646) +zone = ('gaz008', 0.0022480314153185592) + +[fips13293] +centroid = (0.57389631975409461, -1.4711778374662585) +description = Upson County, GA +station = ('kopn', 0.0013404825620944242) +zone = ('gaz069', 0.00010330478665391506) + +[fips1329392671] +centroid = (0.57237697573364854, -1.4704088453978297) +description = Salem CCD, GA +station = ('kopn', 0.0028063731396703799) +zone = ('gaz069', 0.0016855495395919429) + +[fips1329392902] +centroid = (0.57438522138416337, -1.4738215051375467) +description = Sunset Village CCD, GA +station = ('kopn', 0.0027422984534806898) +zone = ('gaz069', 0.0021747746246392422) + +[fips1329393000] +centroid = (0.57470871816102054, -1.4694623707977656) +description = The Rock-Yatesville CCD, GA +station = ('kopn', 0.0011316714459224542) +zone = ('gaz069', 0.0017482860462190619) + +[fips1329393006] +centroid = (0.57459871005826724, -1.4719415760936385) +description = Thomaston CCD, GA +station = ('kopn', 0.0011957853212239597) +zone = ('gaz069', 0.00089244711790639308) + +[fips13295] +centroid = (0.6062545495531444, -1.4888598379313831) +description = Walker County, GA +station = ('kcha', 0.0054072322955965955) +zone = ('gaz002', 6.4449904593443086e-05) + +[fips1329528] +centroid = (0.55351813466048916, -1.453025558034184) +description = Fitzgerald city, GA +station = ('kfzg', 0.00065346494055567824) +zone = ('gaz130', 0.00092400898196359099) + +[fips1329590624] +centroid = (0.60986469329772452, -1.4892966589365719) +description = Chattanooga Valley CCD, GA +station = ('kcha', 0.0024456336921452387) +zone = ('gaz001', 0.0029279431254833812) + +[fips1329590654] +centroid = (0.60850948004013605, -1.4893856009152537) +description = Chickamauga CCD, GA +station = ('kcha', 0.0035195342661866556) +zone = ('gaz002', 0.0023127075924335556) + +[fips1329591638] +centroid = (0.60541890336058202, -1.490279785450928) +description = Kensington CCD, GA +station = ('k4a9', 0.0060925081390471687) +zone = ('gaz002', 0.0014860997421778433) + +[fips1329591668] +centroid = (0.60526072417047372, -1.4883896287776031) +description = LaFayette CCD, GA +station = ('krmg', 0.0059609621519105824) +zone = ('gaz002', 0.0010409801777888118) + +[fips1329591810] +centroid = (0.60869246035891511, -1.4906265998265917) +description = Lookout Mountain CCD, GA +station = ('kcha', 0.0040401665620693064) +zone = ('gaz001', 0.0014485078019634574) + +[fips1329592574] +centroid = (0.60760834909403882, -1.4876845332130899) +description = Rock Spring CCD, GA +station = ('kcha', 0.0038770815074986803) +zone = ('gaz002', 0.0016295702379620928) + +[fips1329592598] +centroid = (0.60992522131618365, -1.4884065584713475) +description = Rossville-Beverly Hills CCD, GA +station = ('kcha', 0.0018987500359385649) +zone = ('gaz003', 0.0021542030813190513) + +[fips1329593210] +centroid = (0.60479629205651808, -1.4859627659059975) +description = Villanow CCD, GA +station = ('kdnn', 0.0040628590661194687) +zone = ('gaz002', 0.0027361205095259855) + +[fips13297] +centroid = (0.58961845509556987, -1.4614377483228238) +description = Walton County, GA +station = ('k9a1', 0.0031502774198632262) +zone = ('gaz047', 0.0003663609166500557) + +[fips1329790528] +centroid = (0.59145302303221869, -1.4613093095431693) +description = Campton CCD, GA +station = ('kwdr', 0.0018555332021581578) +zone = ('gaz047', 0.0015349566750399452) + +[fips1329791320] +centroid = (0.58986676308825103, -1.4591198987162977) +description = Good Hope CCD, GA +station = ('kwdr', 0.0033759248053807046) +zone = ('gaz047', 0.0017208262839099639) + +[fips1329791608] +centroid = (0.58889536518646857, -1.4628734387122218) +description = Jersey CCD, GA +station = ('k9a1', 0.0020012690512288414) +zone = ('gaz047', 0.0017354040468504659) + +[fips1329791806] +centroid = (0.59025108458954023, -1.4638107328804202) +description = Loganville CCD, GA +station = ('klzu', 0.0030830638678040227) +zone = ('gaz047', 0.002202668296297566) + +[fips1329792046] +centroid = (0.58962547131916287, -1.4609210086911857) +description = Monroe CCD, GA +station = ('k9a1', 0.003404669802815845) +zone = ('gaz047', 0.00037060956665659799) + +[fips1329792796] +centroid = (0.58776070918645462, -1.4606678137765989) +description = Social Circle CCD, GA +station = ('k9a1', 0.0024590632403089447) +zone = ('gaz047', 0.0022037265028526584) + +[fips13299] +centroid = (0.54194010909494938, -1.438526671605554) +description = Ware County, GA +station = ('kays', 0.0034900979643376316) +zone = ('gaz150', 5.7139372594460422e-05) + +[fips1329990954] +centroid = (0.54739181954647886, -1.4403869656953772) +description = Dixie Union CCD, GA +station = ('kays', 0.0027486228037089874) +zone = ('gaz134', 0.003508533718230929) + +[fips1329991914] +centroid = (0.53653793108759151, -1.4357921944532843) +description = Manor CCD, GA +station = ('kays', 0.0091048727997334791) +zone = ('gaz164', 0.0020289295370029643) + +[fips1329993240] +centroid = (0.54541549596798311, -1.4401073290426227) +description = Waresboro CCD, GA +station = ('kays', 0.0016722292116120511) +zone = ('gaz150', 0.0036743790445954421) + +[fips1329993294] +centroid = (0.54327022451789431, -1.4374036394983583) +description = Waycross CCD, GA +station = ('kays', 0.0022384886552771579) +zone = ('gaz150', 0.0016253255936081381) + +[fips1330088] +centroid = (0.55589516838195041, -1.4235391278929506) +description = Flemington city, GA +station = ('klhw', 0.00057685287827370884) +zone = ('gaz138', 0.00040898731346515632) + +[fips13301] +centroid = (0.58327453233042081, -1.4431780613285814) +description = Warren County, GA +station = ('khqu', 0.003153904613513663) +zone = ('gaz062', 0.00024347742714522886) + +[fips1330190516] +centroid = (0.58482520501094026, -1.4425379618254126) +description = Camak CCD, GA +station = ('khqu', 0.001998915813454084) +zone = ('gaz062', 0.0017688829209295497) + +[fips1330192190] +centroid = (0.58182936480318459, -1.4438788982897197) +description = Norris CCD, GA +station = ('khqu', 0.0045684394066098115) +zone = ('gaz062', 0.0014715072751242491) + +[fips1330192226] +centroid = (0.58411921932850852, -1.4444411735615423) +description = Norwood CCD, GA +station = ('khqu', 0.003711754798350004) +zone = ('gaz062', 0.0015918112020476703) + +[fips1330192304] +centroid = (0.58152566006004502, -1.4394674215256715) +description = Panhandle CCD, GA +station = ('khqu', 0.0037217294110318011) +zone = ('gaz075', 0.0025192188779479228) + +[fips1330193258] +centroid = (0.58272143749046379, -1.4417669277217589) +description = Warrenton CCD, GA +station = ('khqu', 0.0028082487811738948) +zone = ('gaz062', 0.0010800499752577975) + +[fips13303] +centroid = (0.57546730806710733, -1.4450996688350273) +description = Washington County, GA +station = ('kmlj', 0.007211645854350004) +zone = ('gaz074', 5.2234451472943355e-05) + +[fips1330312] +centroid = (0.58036398636321007, -1.4643819616913054) +description = Flovilla city, GA +station = ('k6a2', 0.005448997661432765) +zone = ('gaz058', 0.0010187461313601279) + +[fips1330340] +centroid = (0.59658434339295952, -1.464713190276749) +description = Flowery Branch city, GA +station = ('kgvl', 0.0019567228396263694) +zone = ('gaz023', 0.0027798867415318737) + +[fips1330390894] +centroid = (0.57499132187350332, -1.4419254210711328) +description = Davisboro CCD, GA +station = ('ksbo', 0.0067191300775448042) +zone = ('gaz074', 0.0026667678356033201) + +[fips1330390918] +centroid = (0.57593172272777049, -1.448380800562314) +description = Deepstep CCD, GA +station = ('kmlj', 0.0046079837993484888) +zone = ('gaz074', 0.0028301628641901949) + +[fips1330391416] +centroid = (0.57308294396278781, -1.4435147877011689) +description = Harrison CCD, GA +station = ('ksbo', 0.006216017904348144) +zone = ('gaz085', 0.0024347386861522952) + +[fips1330392676] +centroid = (0.57602900738027663, -1.4452686341599128) +description = Sandersville CCD, GA +station = ('kmlj', 0.0068499059099434408) +zone = ('gaz074', 0.0006273254871288328) + +[fips1330392982] +centroid = (0.57366066539849048, -1.4464451082488048) +description = Tennille CCD, GA +station = ('kdbn', 0.005543547539069443) +zone = ('gaz074', 0.0021136220990742873) + +[fips1330393264] +centroid = (0.57833214386120835, -1.4449744240079041) +description = Warthen CCD, GA +station = ('kmlj', 0.0065781395503323277) +zone = ('gaz074', 0.0029067233492317767) + +[fips1330424] +centroid = (0.5382464338923687, -1.4312964880995349) +description = Folkston city, GA +station = ('kjax', 0.007505495992813852) +zone = ('gaz164', 0.0022015597398022989) + +[fips13305] +centroid = (0.55061376715883048, -1.4296406593315827) +description = Wayne County, GA +station = ('kjes', 0.00045670310104011988) +zone = ('gaz136', 9.1646386289744695e-05) + +[fips1330536] +centroid = (0.58678917165833189, -1.4723277301906423) +description = Forest Park city, GA +station = ('katl', 0.0012072370308315265) +zone = ('gaz055', 0.0013725959365459962) + +[fips1330591614] +centroid = (0.54967486728772019, -1.4278689407012981) +description = Jesup CCD, GA +station = ('kjes', 0.0014921811876459751) +zone = ('gaz136', 0.0018680064723041829) + +[fips1330592268] +centroid = (0.55353073593768864, -1.4316267742071822) +description = Odum CCD, GA +station = ('kjes', 0.0035302227740755111) +zone = ('gaz136', 0.0032836195751758208) + +[fips1330592718] +centroid = (0.54987011727114077, -1.4315432427491819) +description = Screven CCD, GA +station = ('kjes', 0.0022338426133502419) +zone = ('gaz136', 0.0017529466298461527) + +[fips13307] +centroid = (0.55931788121815895, -1.4757320472565347) +description = Webster County, GA +station = ('kacj', 0.0053396725123336869) +zone = ('gaz103', 3.2822262494501204e-05) + +[fips1330732] +centroid = (0.57656154224164513, -1.4649955496431366) +description = Forsyth city, GA +station = ('kopn', 0.0049753378201216709) +zone = ('gaz071', 0.00045561267957034709) + +[fips1330792424] +centroid = (0.56025164982126829, -1.4755487702317829) +description = Preston CCD, GA +station = ('kacj', 0.0050697847854324525) +zone = ('gaz103', 0.0009409736729033743) + +[fips1330793336] +centroid = (0.5583418756471511, -1.4759139454711778) +description = Weston CCD, GA +station = ('kacj', 0.0057686951971872309) +zone = ('gaz103', 0.00099455629813827206) + +[fips1330816] +centroid = (0.55195622205958694, -1.4844863220785656) +description = Fort Gaines city, GA +station = ('kbij', 0.0046261894165626804) +zone = ('gaz121', 0.0011075547954715796) + +[fips13309] +centroid = (0.56041258663159477, -1.444062751273125) +description = Wheeler County, GA +station = ('kvdi', 0.0056107716275853921) +zone = ('gaz111', 0.00024919925076931246) + +[fips1330956] +centroid = (0.60967558687327095, -1.4878239152071544) +description = Fort Oglethorpe city, GA +station = ('kcha', 0.001889771599903206) +zone = ('gaz003', 0.0016213497486166756) + +[fips1330990048] +centroid = (0.56048627443261401, -1.4451921363787978) +description = Alamo CCD, GA +station = ('kezm', 0.0051043651164064136) +zone = ('gaz111', 0.0011667108450224173) + +[fips1330991308] +centroid = (0.56057214463181204, -1.4428648096344334) +description = Glenwood CCD, GA +station = ('kvdi', 0.0045908752218560955) +zone = ('gaz111', 0.0008064897042567513) + +[fips1331068] +centroid = (0.55626936697357798, -1.4243635516184228) +description = Fort Stewart CDP, GA +station = ('klhw', 0.00067287837394399883) +zone = ('gaz138', 0.0011685689410128168) + +[fips1331096] +centroid = (0.56812411449202149, -1.4639811119219999) +description = Fort Valley city, GA +station = ('kmcn', 0.0040928646622144915) +zone = ('gaz094', 0.00083905407534353013) + +[fips13311] +centroid = (0.60464622864743156, -1.4616035196951782) +description = White County, GA +station = ('ktoc', 0.0064863244669220209) +zone = ('gaz016', 6.9032745711809779e-05) + +[fips1331190696] +centroid = (0.60438401038061196, -1.4624086924390005) +description = Cleveland CCD, GA +station = ('kgvl', 0.0063487810757999604) +zone = ('gaz016', 0.00068627092216461561) + +[fips1331191446] +centroid = (0.60629249301108268, -1.4612234917038489) +description = Helen CCD, GA +station = ('ktoc', 0.0066137679173261538) +zone = ('gaz016', 0.0016393224252018253) + +[fips1331192094] +centroid = (0.60303848370037205, -1.460632069433518) +description = Mossy Creek CCD, GA +station = ('kgvl', 0.0053944648011904654) +zone = ('gaz016', 0.0018606399747940075) + +[fips1331292] +centroid = (0.58082335702233501, -1.4852385415328826) +description = Franklin city, GA +station = ('klgc', 0.0047241684320337577) +zone = ('gaz052', 0.00054628422219797342) + +[fips13313] +centroid = (0.60740470407691616, -1.4829808010657952) +description = Whitfield County, GA +station = ('kdnn', 0.0019956699781084478) +zone = ('gaz004', 6.9913974379125338e-05) + +[fips1331320] +centroid = (0.59835752809981568, -1.4511730481128244) +description = Franklin Springs city, GA +station = ('ktoc', 0.0058180310174525771) +zone = ('gaz026', 0.0020052278274021885) + +[fips1331390864] +centroid = (0.60684029950340612, -1.4824617925061296) +description = Dalton CCD, GA +station = ('kdnn', 0.001300416616598125) +zone = ('gaz004', 0.00075252033928466298) + +[fips1331392220] +centroid = (0.60970925427454203, -1.4819509171807783) +description = North Whitfield CCD, GA +station = ('kdnn', 0.0037467515450792725) +zone = ('gaz004', 0.0023849834518673459) + +[fips1331393350] +centroid = (0.60640585214599974, -1.4845729776759269) +description = West Whitfield CCD, GA +station = ('kdnn', 0.0027627219911585009) +zone = ('gaz004', 0.001701342957507259) + +[fips13315] +centroid = (0.55785464953316444, -1.4562723940416689) +description = Wilcox County, GA +station = ('kfzg', 0.0055294080587966797) +zone = ('gaz108', 0.00020536143932526891) + +[fips1331590006] +centroid = (0.55768742953753081, -1.454146757545665) +description = Abbeville CCD, GA +station = ('kfzg', 0.0048166869139260049) +zone = ('gaz108', 0.0017493686650754861) + +[fips1331592376] +centroid = (0.55943801223057366, -1.4572709318133199) +description = Pineview CCD, GA +station = ('kezm', 0.0061157281054295886) +zone = ('gaz108', 0.0016831733674917174) + +[fips1331592382] +centroid = (0.55741182459534844, -1.4582210890581055) +description = Pitts CCD, GA +station = ('kfzg', 0.0061163894335916156) +zone = ('gaz108', 0.0018526753991933867) + +[fips1331592550] +centroid = (0.55698430619507233, -1.4559020351743956) +description = Rochelle CCD, GA +station = ('kfzg', 0.0046123529027277945) +zone = ('gaz108', 0.0010786715392769718) + +[fips1331684] +centroid = (0.54447158700191955, -1.4640019860598539) +description = Funston city, GA +station = ('kmgr', 0.0022643503167996981) +zone = ('gaz146', 0.0016823124629783593) + +[fips13317] +centroid = (0.58955546616286536, -1.4442236880834514) +description = Wilkes County, GA +station = ('kiiy', 0.00099331421522522775) +zone = ('gaz039', 8.5797920389234843e-05) + +[fips1331792448] +centroid = (0.589599797525866, -1.4465812264771676) +description = Rayle CCD, GA +station = ('kiiy', 0.00096683626888316085) +zone = ('gaz039', 0.0020280073011502177) + +[fips1331793048] +centroid = (0.59159238757299037, -1.4433385618065948) +description = Tignall CCD, GA +station = ('kiiy', 0.0026619280270358549) +zone = ('gaz039', 0.0020942289913526775) + +[fips1331793275] +centroid = (0.58832980869565243, -1.4430443865611711) +description = Washington CCD, GA +station = ('kiiy', 0.0023300861065824905) +zone = ('gaz039', 0.0015695313770514175) + +[fips13319] +centroid = (0.57254341033111877, -1.4516878504289927) +description = Wilkinson County, GA +station = ('kdbn', 0.0050364693210513487) +zone = ('gaz084', 7.1269588694405247e-05) + +[fips1331908] +centroid = (0.59846743148281378, -1.4631076444445468) +description = Gainesville city, GA +station = ('kgvl', 0.00040433025234287706) +zone = ('gaz023', 0.00049598872837414338) + +[fips1331990066] +centroid = (0.57040161208624141, -1.4515788022573282) +description = Allentown CCD, GA +station = ('kdbn', 0.0033947115519450369) +zone = ('gaz084', 0.0021084670064948881) + +[fips1331991332] +centroid = (0.57375833402343202, -1.4539588204918104) +description = Gordon CCD, GA +station = ('kmlj', 0.0049831025211596134) +zone = ('gaz084', 0.0023330805024192416) + +[fips1331991554] +centroid = (0.57350447588372944, -1.4517241358241417) +description = Irwinton CCD, GA +station = ('kmlj', 0.0052265862292681263) +zone = ('gaz084', 0.00099896553870907311) + +[fips1331993066] +centroid = (0.57235597942274707, -1.4494688213647147) +description = Toomsboro CCD, GA +station = ('kdbn', 0.0041063816422269427) +zone = ('gaz084', 0.0018089480850974355) + +[fips1332048] +centroid = (0.5600276542650674, -1.4167991899205241) +description = Garden City city, GA +station = ('ksav', 0.00061940702145036252) +zone = ('gaz118', 0.0007768793883083673) + +[fips13321] +centroid = (0.55068232369184889, -1.4634578796655444) +description = Worth County, GA +station = ('ktma', 0.0059673443732730456) +zone = ('gaz127', 1.6185309021162939e-05) + +[fips1332188] +centroid = (0.56983623012835039, -1.4328680349179079) +description = Garfield city, GA +station = ('ksbo', 0.0040405382688849106) +zone = ('gaz087', 0.0031793077284931318) + +[fips1332190384] +centroid = (0.54772514252702476, -1.4641602874230095) +description = Bridgeboro CCD, GA +station = ('kaby', 0.0053120532824060323) +zone = ('gaz127', 0.0030095493057547642) + +[fips1332192412] +centroid = (0.54942500595200461, -1.4615358532800782) +description = Poulan CCD, GA +station = ('ktma', 0.0040067997279471489) +zone = ('gaz127', 0.0020747516907743428) + +[fips1332192940] +centroid = (0.55027831487659717, -1.4642277967584769) +description = Sylvester CCD, GA +station = ('kaby', 0.0045518466393749176) +zone = ('gaz127', 0.00075492127392218537) + +[fips1332193270] +centroid = (0.55375228803293675, -1.4647103802966532) +description = Warwick CCD, GA +station = ('kaby', 0.0053484017246196057) +zone = ('gaz127', 0.0032493551242110614) + +[fips1332384] +centroid = (0.57752407387082749, -1.4761157578925859) +description = Gay town, GA +station = ('kffc', 0.0048357260888711572) +zone = ('gaz067', 0.0018629675414292572) + +[fips1332412] +centroid = (0.56859648785407368, -1.4757314538445891) +description = Geneva town, GA +station = ('kcsg', 0.0059359229032168743) +zone = ('gaz079', 0.002138129635508542) + +[fips1332482] +centroid = (0.5582050592870873, -1.4177323127518104) +description = Georgetown CDP, GA +station = ('ksvn', 0.0013245142189816568) +zone = ('gaz118', 0.0016480402533900116) + +[fips1332528] +centroid = (0.55608785273137051, -1.4836924765215884) +description = Georgetown-Quitman County unified government, GA +station = ('keuf', 0.0024006458260727821) +zone = ('gaz120', 0.00017438362113974344) + +[fips1332748] +centroid = (0.58000804391555838, -1.4416149619037879) +description = Gibson city, GA +station = ('khqu', 0.0053271521706020194) +zone = ('gaz075', 0.00018495985789743029) + +[fips1332860] +centroid = (0.59878946218309925, -1.4597868762899473) +description = Gillsville city, GA +station = ('k19a', 0.002568088212648984) +zone = ('gaz024', 0.002201444867779124) + +[fips1332916] +centroid = (0.57655011033504455, -1.4262047692595217) +description = Girard town, GA +station = ('kbnl', 0.0060709497322170829) +zone = ('gaz077', 0.0042007722250968129) + +[fips1333336] +centroid = (0.55744217587104061, -1.4299572446046021) +description = Glennville city, GA +station = ('kcwv', 0.0046409632745866066) +zone = ('gaz114', 0.0026535572597901078) + +[fips1333392] +centroid = (0.56165220673282379, -1.4428782835762588) +description = Glenwood city, GA +station = ('kvdi', 0.0044200757694510236) +zone = ('gaz111', 0.0013593940645434527) + +[fips1333896] +centroid = (0.58974729530095205, -1.4593961145237182) +description = Good Hope city, GA +station = ('kwdr', 0.0034342263795056269) +zone = ('gaz047', 0.001500607763611959) + +[fips1333980] +centroid = (0.57397231138972649, -1.4544454881004365) +description = Gordon city, GA +station = ('kmlj', 0.0048711831513023598) +zone = ('gaz084', 0.0027931330167749123) + +[fips1334260] +centroid = (0.55551151010577704, -1.4399448563425545) +description = Graham city, GA +station = ('kamg', 0.0051511827769879122) +zone = ('gaz133', 0.0020304309688777178) + +[fips1334428] +centroid = (0.58011531185138598, -1.4805278455218722) +description = Grantville city, GA +station = ('kffc', 0.0044229411972971184) +zone = ('gaz053', 0.002223349838052524) + +[fips1334512] +centroid = (0.57597999853488069, -1.4580206205402215) +description = Gray city, GA +station = ('kmlj', 0.0051090803766797952) +zone = ('gaz072', 0.00052727175384154545) + +[fips1334596] +centroid = (0.59150419608588722, -1.4653215946007017) +description = Grayson city, GA +station = ('klzu', 0.0015270240499234793) +zone = ('gaz034', 0.0015717788125462775) + +[fips1334876] +centroid = (0.58591573908746386, -1.4518702024292411) +description = Greensboro city, GA +station = ('k3j7', 0.00083186138741805904) +zone = ('gaz050', 0.00031709559044330291) + +[fips1335016] +centroid = (0.57650551717265608, -1.4785703191394206) +description = Greenville city, GA +station = ('klgc', 0.0052341337772248567) +zone = ('gaz067', 0.00043418878815880315) + +[fips1335240] +centroid = (0.58826994390230891, -1.4715524549369063) +description = Gresham Park CDP, GA +station = ('katl', 0.001987783248116372) +zone = ('gaz045', 0.0017153176688303848) + +[fips1335324] +centroid = (0.58016929488515012, -1.4709054788364846) +description = Griffin city, GA +station = ('k6a2', 0.00025051230786522793) +zone = ('gaz056', 0.00035963504462713491) + +[fips1335716] +centroid = (0.58380305293450985, -1.434777966171658) +description = Grovetown city, GA +station = ('kdnl', 0.0025425462691414107) +zone = ('gaz064', 0.0018519311153836926) + +[fips1335800] +centroid = (0.55563839554239691, -1.4256530008697961) +description = Gumbranch city, GA +station = ('klhw', 0.001926205064169419) +zone = ('gaz137', 0.0017157670872311414) + +[fips1335814] +centroid = (0.60210764725040589, -1.4502382497654562) +description = Gumlog CDP, GA +station = ('ktoc', 0.0033633815756627856) +zone = ('scz004', 0.002745088622548074) + +[fips1335884] +centroid = (0.56430456614378699, -1.4205301977158049) +description = Guyton city, GA +station = ('ksav', 0.0046970040630850574) +zone = ('gaz101', 0.00095642521921545385) + +[fips1336024] +centroid = (0.56117620308592731, -1.4299486924912672) +description = Hagan city, GA +station = ('kcwv', 0.0012076370589344371) +zone = ('gaz115', 0.00064061410311327157) + +[fips1336052] +centroid = (0.54099051035552437, -1.4552807852271483) +description = Hahira city, GA +station = ('kvad', 0.00276443164266712) +zone = ('gaz147', 0.0028454691398294108) + +[fips1336220] +centroid = (0.57184866456906991, -1.4813663366011156) +description = Hamilton city, GA +station = ('kcsg', 0.0044602512384517672) +zone = ('gaz078', 0.00069410179310435945) + +[fips1336276] +centroid = (0.58268888709991407, -1.4712046108169838) +description = Hampton city, GA +station = ('k6a2', 0.0027824741738139537) +zone = ('gaz056', 0.0021812760808429181) + +[fips1336416] +centroid = (0.57490669085807422, -1.4720068863142481) +description = Hannahs Mill CDP, GA +station = ('kopn', 0.0011351574489486833) +zone = ('gaz069', 0.0011797089955265497) + +[fips1336472] +centroid = (0.58749306294566128, -1.4732205708227926) +description = Hapeville city, GA +station = ('katl', 0.00039712393682143248) +zone = ('gaz055', 0.0022079062985551788) + +[fips1336528] +centroid = (0.57996156579757774, -1.4760024336642537) +description = Haralson town, GA +station = ('kffc', 0.0023968133117683167) +zone = ('gaz054', 0.0034014850590595117) + +[fips1336668] +centroid = (0.57675375535216722, -1.4529666008120514) +description = Hardwick CDP, GA +station = ('kmlj', 0.0018994927530154547) +zone = ('gaz073', 0.00040946097634594149) + +[fips1336696] +centroid = (0.58321074054626054, -1.436648697330408) +description = Harlem city, GA +station = ('khqu', 0.0035558261123077753) +zone = ('gaz064', 0.0023605759641697503) + +[fips1336920] +centroid = (0.57292900592276186, -1.4438382495714408) +description = Harrison town, GA +station = ('kdbn', 0.005949369425801986) +zone = ('gaz085', 0.0023841053283679978) + +[fips1337144] +centroid = (0.59951440214120766, -1.447366991159708) +description = Hartwell city, GA +station = ('kand', 0.0040180712653582152) +zone = ('gaz028', 0.00051907474108240606) + +[fips1337396] +centroid = (0.56373522228849393, -1.4569827779538158) +description = Hawkinsville city, GA +station = ('kwrb', 0.0060905090611080822) +zone = ('gaz107', 0.0011673486031515288) + +[fips1337564] +centroid = (0.55613396433020823, -1.4416293259635318) +description = Hazlehurst city, GA +station = ('kamg', 0.0059587156725575754) +zone = ('gaz133', 0.001164645805237051) + +[fips1337788] +centroid = (0.60570447413279327, -1.4612134560606498) +description = Helen city, GA +station = ('ktoc', 0.0064048377633120811) +zone = ('gaz016', 0.0010766026562289159) + +[fips1337816] +centroid = (0.55988483397237665, -1.4470552055421317) +description = Helena city, GA +station = ('kezm', 0.0039880197547615924) +zone = ('gaz110', 0.0026392082931348819) + +[fips1337910] +centroid = (0.5586428227700726, -1.4183650120589508) +description = Henderson CDP, GA +station = ('ksvn', 0.0017284049864200607) +zone = ('gaz118', 0.0013374786262764092) + +[fips1338040] +centroid = (0.58106843615589998, -1.4328342802501746) +description = Hephzibah city, GA +station = ('kags', 0.0022771162315446086) +zone = ('gaz065', 0.0012091883296077581) + +[fips1338105] +centroid = (0.58187575565470251, -1.4694303789125767) +description = Heron Bay CDP, GA +station = ('k6a2', 0.0022986266712375076) +zone = ('gaz056', 0.0019126027025643719) + +[fips1338124] +centroid = (0.60992621615385745, -1.4616493869479206) +description = Hiawassee city, GA +station = ('krhp', 0.0046543184884950328) +zone = ('gaz009', 0.00053084183014252872) + +[fips1338348] +centroid = (0.56227642373979947, -1.4392847553661576) +description = Higgston town, GA +station = ('kvdi', 0.0014336689455542533) +zone = ('gaz112', 0.0012482264854994729) + +[fips1338866] +centroid = (0.5778477277273173, -1.4737061214206972) +description = Hilltop CDP, GA +station = ('k6a2', 0.0031479829954952762) +zone = ('gaz068', 0.00075475290409052491) + +[fips1338920] +centroid = (0.57392253459945963, -1.4252618202245466) +description = Hiltonia town, GA +station = ('kjyl', 0.0042633839219536653) +zone = ('gaz088', 0.002426557423258458) + +[fips1338964] +centroid = (0.55548557451309233, -1.4245669697427426) +description = Hinesville city, GA +station = ('klhw', 0.0012776564696146972) +zone = ('gaz138', 0.0013479015164521416) + +[fips1339076] +centroid = (0.59154603162805741, -1.4792852234543299) +description = Hiram city, GA +station = ('kpuj', 0.0026702271952772244) +zone = ('gaz031', 0.0016677038618813889) + +[fips1339216] +centroid = (0.54420191617919389, -1.4334546400795032) +description = Hoboken city, GA +station = ('kays', 0.0041960072655382041) +zone = ('gaz152', 0.0022433111480938753) + +[fips1339244] +centroid = (0.57887310866286401, -1.4818331947227315) +description = Hogansville city, GA +station = ('klgc', 0.0037111454566983899) +zone = ('gaz066', 0.0029657066286871022) + +[fips1339524] +centroid = (0.5963371524109996, -1.4745317319700606) +description = Holly Springs city, GA +station = ('kcni', 0.0026792518898352763) +zone = ('gaz021', 0.0013367048939735935) + +[fips1339692] +centroid = (0.53861113789286552, -1.4315330500263501) +description = Homeland city, GA +station = ('kjax', 0.007918185165005703) +zone = ('gaz164', 0.0022260738638517881) + +[fips1339720] +centroid = (0.59931039060494196, -1.4572588366816037) +description = Homer town, GA +station = ('k19a', 0.002988805393356859) +zone = ('gaz024', 0.00028428223673798258) + +[fips1339748] +centroid = (0.54171927258469454, -1.4441218830281826) +description = Homerville city, GA +station = ('khoe', 0.00056442092355755752) +zone = ('gaz163', 0.002214715699471854) + +[fips1340056] +centroid = (0.59505028624691914, -1.4619079051167259) +description = Hoschton city, GA +station = ('kwdr', 0.0023685625098698862) +zone = ('gaz035', 0.0018915996240366495) + +[fips1340196] +centroid = (0.56904885974289821, -1.4726931846827174) +description = Howard CDP, GA +station = ('kopn', 0.0063513040018693132) +zone = ('gaz080', 0.0020734741861770916) + +[fips1340532] +centroid = (0.59371882692045019, -1.4537482639708497) +description = Hull city, GA +station = ('kahn', 0.0013119911593976877) +zone = ('gaz036', 0.0015740996711517932) + +[fips1340812] +centroid = (0.56501330944643691, -1.4693754883076013) +description = Ideal city, GA +station = ('kacj', 0.0045909519843080112) +zone = ('gaz093', 0.0021746266866727679) + +[fips1340840] +centroid = (0.59644300663013305, -1.4537389962725216) +description = Ila city, GA +station = ('k19a', 0.003877090134967801) +zone = ('gaz027', 0.0014539277391209511) + +[fips1341036] +centroid = (0.61017660108834848, -1.4863077825925319) +description = Indian Springs CDP, GA +station = ('kcha', 0.0013981587890920025) +zone = ('gaz003', 0.001038552552938201) + +[fips1341344] +centroid = (0.54128913619054053, -1.4802715613745094) +description = Iron City town, GA +station = ('kbge', 0.0028145903131711505) +zone = ('gaz155', 0.001406512645341482) + +[fips1341347] +centroid = (0.58435967333955585, -1.4724580190193035) +description = Irondale CDP, GA +station = ('katl', 0.0031039254363341593) +zone = ('gaz055', 0.0010632001578360125) + +[fips1341400] +centroid = (0.57265575717506967, -1.4516548462528378) +description = Irwinton city, GA +station = ('kdbn', 0.0051150789923561568) +zone = ('gaz084', 0.0001500493469025309) + +[fips1341484] +centroid = (0.55825944374657943, -1.4146325905469759) +description = Isle of Hope CDP, GA +station = ('ksvn', 0.0015400256900392794) +zone = ('gaz119', 0.001212361806406396) + +[fips1341540] +centroid = (0.57438660019427246, -1.453856596557521) +description = Ivey city, GA +station = ('kmlj', 0.0043501572721856199) +zone = ('gaz084', 0.0026597126656705268) + +[fips1341596] +centroid = (0.58102630390775689, -1.4655194102181226) +description = Jackson city, GA +station = ('k6a2', 0.0046131707982044121) +zone = ('gaz058', 0.00016019248140037654) + +[fips1341708] +centroid = (0.55523691745456072, -1.4482515763844963) +description = Jacksonville city, GA +station = ('kfzg', 0.0049049744547721248) +zone = ('gaz110', 0.0021266893910191704) + +[fips1341792] +centroid = (0.54262382437612566, -1.4832202602391686) +description = Jakin city, GA +station = ('kmai', 0.0053974201732177925) +zone = ('gaz155', 0.0030090101303661158) + +[fips1341932] +centroid = (0.60154865319757711, -1.4736838161128569) +description = Jasper city, GA +station = ('kcni', 0.0026947259036764646) +zone = ('gaz013', 0.00042918842990088485) + +[fips1341988] +centroid = (0.59577662246842911, -1.4591228134161485) +description = Jefferson city, GA +station = ('k19a', 0.00091101503019536231) +zone = ('gaz025', 0.00051040752944224075) + +[fips1342100] +centroid = (0.57048322368206472, -1.4546035102109118) +description = Jeffersonville city, GA +station = ('kwrb', 0.0038928284206042308) +zone = ('gaz083', 0.0012861034939549241) + +[fips1342156] +centroid = (0.58159269815661407, -1.4667469002810505) +description = Jenkinsburg city, GA +station = ('k6a2', 0.0038354319545993542) +zone = ('gaz058', 0.0013225786745321131) + +[fips1342184] +centroid = (0.58847564840794897, -1.4626589552004441) +description = Jersey city, GA +station = ('k9a1', 0.0016605873287860165) +zone = ('gaz047', 0.0018926385728578849) + +[fips1342268] +centroid = (0.55152439269605857, -1.4292288838011598) +description = Jesup city, GA +station = ('kjes', 0.00081054170288609331) +zone = ('gaz136', 0.00094375707866611012) + +[fips1342425] +centroid = (0.59398334902188243, -1.469634390448842) +description = Johns Creek city, GA +station = ('kpdk', 0.0029558778893729416) +zone = ('gaz033', 0.00278200587429134) + +[fips1342604] +centroid = (0.5850386413251667, -1.4722605175611481) +description = Jonesboro city, GA +station = ('katl', 0.0025394217848032211) +zone = ('gaz055', 0.00038114796703055641) + +[fips1342800] +centroid = (0.56904055197565873, -1.4740736354012898) +description = Junction City town, GA +station = ('kopn', 0.0067596971192912187) +zone = ('gaz079', 0.0020021272586516576) + +[fips1343192] +centroid = (0.59391247120095891, -1.4768780304433942) +description = Kennesaw city, GA +station = ('kryy', 0.00040037322975569888) +zone = ('gaz032', 0.0016394145950960229) + +[fips1343360] +centroid = (0.58008092886512164, -1.4351724803957788) +description = Keysville city, GA +station = ('kags', 0.0044571668400043493) +zone = ('gaz065', 0.003131573425297839) + +[fips1343580] +centroid = (0.5375520197428777, -1.423588014565299) +description = Kings Bay Base CDP, GA +station = ('kfhb', 0.0034449927341036442) +zone = ('gaz166', 0.0015612832853163436) + +[fips1343640] +centroid = (0.5383630742462796, -1.4275236098554986) +description = Kingsland city, GA +station = ('kjax', 0.0061905175073414401) +zone = ('gaz165', 0.0020909526064014998) + +[fips1343668] +centroid = (0.59746062085050833, -1.4825610842872756) +description = Kingston city, GA +station = ('kvpc', 0.0021966227456108561) +zone = ('gaz020', 0.0015041082621998099) + +[fips1343892] +centroid = (0.57057467893486924, -1.4401136471345148) +description = Kite city, GA +station = ('ksbo', 0.0024369599062275108) +zone = ('gaz085', 0.0021758566922644041) + +[fips1344060] +centroid = (0.57112861153286709, -1.466005589134558) +description = Knoxville CDP, GA +station = ('kopn', 0.0056447340885166768) +zone = ('gaz081', 0.00020728112152611789) + +[fips1344312] +centroid = (0.60578029123550003, -1.4884434896383198) +description = LaFayette city, GA +station = ('kcha', 0.005785733321036492) +zone = ('gaz002', 0.00054625031802243529) + +[fips1344340] +centroid = (0.57648918089085743, -1.4841908203829104) +description = LaGrange city, GA +station = ('klgc', 0.00063067235394921226) +zone = ('gaz066', 0.00015013875853277274) + +[fips1344508] +centroid = (0.58654346420623615, -1.4720299072070819) +description = Lake City city, GA +station = ('katl', 0.0015407502568338641) +zone = ('gaz055', 0.0011524331832927345) + +[fips1344592] +centroid = (0.54176445915902871, -1.4499275637053088) +description = Lakeland city, GA +station = ('kvad', 0.0022774545382158477) +zone = ('gaz161', 0.00018793950214943548) + +[fips1344704] +centroid = (0.53554897517353395, -1.451899035268484) +description = Lake Park city, GA +station = ('kvld', 0.0020898779435548176) +zone = ('gaz160', 0.002867303429958066) + +[fips1344900] +centroid = (0.61046555779930867, -1.4879562635243331) +description = Lakeview CDP, GA +station = ('kcha', 0.0012452815589852448) +zone = ('gaz003', 0.0020921327542886324) + +[fips1344956] +centroid = (0.58826292767871591, -1.4667342640972658) +description = Lakeview Estates CDP, GA +station = ('k9a1', 0.0030240930852463519) +zone = ('gaz046', 0.00089541749952213646) + +[fips1345460] +centroid = (0.6009980716317429, -1.4505234540185248) +description = Lavonia city, GA +station = ('ktoc', 0.0038588653107508551) +zone = ('gaz026', 0.0020169876765964447) + +[fips1345488] +centroid = (0.59258952908123985, -1.4659410294055268) +description = Lawrenceville city, GA +station = ('klzu', 0.00061509055353187918) +zone = ('gaz034', 0.00047809521800274866) + +[fips1345600] +centroid = (0.54950616376222239, -1.475007997416345) +description = Leary city, GA +station = ('kaby', 0.0047165935542919472) +zone = ('gaz123', 0.001856753095646113) + +[fips1345768] +centroid = (0.55382889053380679, -1.4690182543163033) +description = Leesburg city, GA +station = ('kaby', 0.0034997530584412926) +zone = ('gaz126', 0.00092499933141568051) + +[fips1345936] +centroid = (0.545682793142926, -1.4567951376059338) +description = Lenox town, GA +station = ('ktma', 0.0027053693523718713) +zone = ('gaz147', 0.0020228323190436518) + +[fips1346020] +centroid = (0.55771645436299155, -1.4675961251351932) +description = Leslie city, GA +station = ('kacj', 0.0031827137409540774) +zone = ('gaz104', 0.0022054458884934003) + +[fips1346188] +centroid = (0.59114422192766336, -1.4505458291395352) +description = Lexington city, GA +station = ('kahn', 0.0035208662883163418) +zone = ('gaz038', 0.00046672316970232787) + +[fips1346356] +centroid = (0.59150325360809097, -1.4684654387290264) +description = Lilburn city, GA +station = ('kpdk', 0.002366943397034789) +zone = ('gaz034', 0.0020576330639478493) + +[fips1346384] +centroid = (0.56106287885759532, -1.4639379150230132) +description = Lilly city, GA +station = ('kacj', 0.0048096946183910673) +zone = ('gaz105', 0.0011786599794630611) + +[fips1346524] +centroid = (0.57364404986401141, -1.4719338442850523) +description = Lincoln Park CDP, GA +station = ('kopn', 0.0018507761263668592) +zone = ('gaz069', 0.0005848775448500979) + +[fips1346552] +centroid = (0.58979412248478302, -1.4395203050020069) +description = Lincolnton city, GA +station = ('khqu', 0.0046278759348947901) +zone = ('gaz040', 0.00039537811341465879) + +[fips1346580] +centroid = (0.59668778905772524, -1.4866840057660917) +description = Lindale CDP, GA +station = ('krmg', 0.0028400505988995452) +zone = ('gaz019', 0.0014041385721491591) + +[fips1346832] +centroid = (0.58961562766218167, -1.4773948224349098) +description = Lithia Springs CDP, GA +station = ('kfty', 0.0019122980951408581) +zone = ('gaz043', 0.0022341392040268237) + +[fips1346860] +centroid = (0.58840176862071214, -1.4679244739273709) +description = Lithonia city, GA +station = ('k9a1', 0.0039885938125137702) +zone = ('gaz046', 0.0015370510362304897) + +[fips1347140] +centroid = (0.58193898893350227, -1.4678983114418833) +description = Locust Grove city, GA +station = ('k6a2', 0.0032045423226391423) +zone = ('gaz057', 0.0020710280528549903) + +[fips1347196] +centroid = (0.59054920427907343, -1.4642401711428736) +description = Loganville city, GA +station = ('klzu', 0.0026667005113746125) +zone = ('gaz034', 0.0028795725728540415) + +[fips1347252] +centroid = (0.57896676303052597, -1.4803416887038545) +description = Lone Oak town, GA +station = ('klgc', 0.0046969504875723255) +zone = ('gaz067', 0.0029742718293054513) + +[fips1347336] +centroid = (0.61027901700885545, -1.4898513594794409) +description = Lookout Mountain city, GA +station = ('kcha', 0.0025964328427808838) +zone = ('gaz001', 0.0028207484804620266) + +[fips1347560] +centroid = (0.5758905678640085, -1.4381537820108654) +description = Louisville city, GA +station = ('ksbo', 0.0065790409542615174) +zone = ('gaz076', 0.0010593811417413245) + +[fips1347616] +centroid = (0.58371154532182778, -1.4716440498160512) +description = Lovejoy city, GA +station = ('k6a2', 0.0038455042875237423) +zone = ('gaz055', 0.0017957150006759071) + +[fips1347784] +centroid = (0.55340072636170756, -1.4267963660627776) +description = Ludowici city, GA +station = ('kjes', 0.0033319577600942358) +zone = ('gaz137', 0.00079180010825608156) + +[fips1347896] +centroid = (0.60032172164001019, -1.460217606096047) +description = Lula city, GA +station = ('kgvl', 0.0033199993122518495) +zone = ('gaz023', 0.0026304074803213473) + +[fips1347952] +centroid = (0.55733689761056027, -1.443094023725098) +description = Lumber City city, GA +station = ('kvdi', 0.0064575030131497685) +zone = ('gaz133', 0.0023274631364510181) + +[fips1347980] +centroid = (0.55934383426413603, -1.4800068298335671) +description = Lumpkin city, GA +station = ('klsf', 0.0050063427396918698) +zone = ('gaz102', 0.00076354542322810081) + +[fips1348008] +centroid = (0.57961731705591435, -1.4790670922044158) +description = Luthersville city, GA +station = ('kffc', 0.0037721222832336008) +zone = ('gaz053', 0.0025263281455611452) + +[fips1348092] +centroid = (0.6004531623859779, -1.4905826000761491) +description = Lyerly town, GA +station = ('krmg', 0.0035449624037804175) +zone = ('gaz011', 0.0015079692975032929) + +[fips1348232] +centroid = (0.56208180207490965, -1.4367761238190961) +description = Lyons city, GA +station = ('kvdi', 0.00078002992842621591) +zone = ('gaz113', 0.001478102515927616) + +[fips1348288] +centroid = (0.59017381886355447, -1.4759507370118097) +description = Mableton CDP, GA +station = ('kfty', 0.00089556922370850021) +zone = ('gaz032', 0.0022227815403506809) + +[fips1348428] +centroid = (0.61055041570754065, -1.4725550244191297) +description = McCaysville city, GA +station = ('krhp', 0.0081468831754283461) +zone = ('tnz102', 0.0018958215267620476) + +[fips1348624] +centroid = (0.58366052934779189, -1.4687104131428363) +description = McDonough city, GA +station = ('k6a2', 0.0041548049532281568) +zone = ('gaz057', 0.00022133460177045021) + +[fips1348848] +centroid = (0.57328589084820969, -1.4521297677955978) +description = McIntyre town, GA +station = ('kmlj', 0.0053947853279898523) +zone = ('gaz084', 0.00088923998640685756) + +[fips1349000] +centroid = (0.57300822641750992, -1.45994903483075) +description = Macon city, GA +station = ('kmcn', 0.0025764981698273674) +zone = ('gaz082', 0.00083387214589432661) + +[fips1349084] +centroid = (0.55948609605146615, -1.4466482122138591) +description = McRae city, GA +station = ('kezm', 0.0045035977250296923) +zone = ('gaz110', 0.002336697126433676) + +[fips1349196] +centroid = (0.58606477275229163, -1.4569305577025959) +description = Madison city, GA +station = ('k9a1', 0.0055093116535715279) +zone = ('gaz049', 0.00031495379465082505) + +[fips1349504] +centroid = (0.56131748748887633, -1.4315895114276522) +description = Manassas city, GA +station = ('kcwv', 0.0023744503116959097) +zone = ('gaz114', 0.0020751712997621268) + +[fips1349532] +centroid = (0.57349875120378291, -1.4771484866642832) +description = Manchester city, GA +station = ('kopn', 0.0056733105252678457) +zone = ('gaz079', 0.0031572202915775703) + +[fips1349616] +centroid = (0.58497476227454359, -1.4614718520564076) +description = Mansfield city, GA +station = ('k9a1', 0.0025803667797603715) +zone = ('gaz048', 0.0017912939748171157) + +[fips1349756] +centroid = (0.59260143222673844, -1.4755443370954828) +description = Marietta city, GA +station = ('kmge', 0.00074443085306832488) +zone = ('gaz032', 0.00053854096299645147) + +[fips1349924] +centroid = (0.56650879481600813, -1.4650252726002979) +description = Marshallville city, GA +station = ('kmcn', 0.0057925844509511652) +zone = ('gaz093', 0.0023125044621027319) + +[fips1350008] +centroid = (0.601902553610004, -1.452062502806226) +description = Martin town, GA +station = ('ktoc', 0.0023416381959407936) +zone = ('gaz018', 0.0018200199370725582) + +[fips1350036] +centroid = (0.58505213272028456, -1.4329398203100425) +description = Martinez CDP, GA +station = ('kdnl', 0.0013716757789633948) +zone = ('gaz064', 0.002399890922903073) + +[fips1350176] +centroid = (0.57978668380652787, -1.4364349294036238) +description = Matthews CDP, GA +station = ('kags', 0.0055223713680569511) +zone = ('gaz076', 0.0033364633446594408) + +[fips1350260] +centroid = (0.58913438802752927, -1.4516363806693515) +description = Maxeys town, GA +station = ('k3j7', 0.0027907787856688007) +zone = ('gaz038', 0.0025692050815013245) + +[fips1350484] +centroid = (0.59786188949883434, -1.4582766079816116) +description = Maysville town, GA +station = ('k19a', 0.0013860538775616687) +zone = ('gaz024', 0.0019075093941260174) + +[fips1350596] +centroid = (0.57685700903071524, -1.4714949463380533) +description = Meansville city, GA +station = ('kopn', 0.0018134150370778894) +zone = ('gaz068', 0.0013534625899249441) + +[fips1350680] +centroid = (0.54230517961458902, -1.4676941253726927) +description = Meigs city, GA +station = ('ktvi', 0.0043372370295082429) +zone = ('gaz145', 0.0030800237604061806) + +[fips1350820] +centroid = (0.55841404501172109, -1.4306544512808961) +description = Mendes CDP, GA +station = ('kcwv', 0.0038777424935653483) +zone = ('gaz114', 0.0015744837024656139) + +[fips1350848] +centroid = (0.60185045553183192, -1.4918657486889226) +description = Menlo city, GA +station = ('k4a9', 0.0035115691689298054) +zone = ('gaz011', 0.0019079227641067426) + +[fips1351072] +centroid = (0.56542745862464261, -1.4322624929339285) +description = Metter city, GA +station = ('kcwv', 0.0044551094916735279) +zone = ('gaz099', 0.00020309798421270692) + +[fips1351240] +centroid = (0.57283926109262429, -1.4352761529533471) +description = Midville city, GA +station = ('ksbo', 0.0040316535698335324) +zone = ('gaz086', 0.0041564372167617334) + +[fips1351352] +centroid = (0.55503220778659434, -1.4209888527899366) +description = Midway city, GA +station = ('klhw', 0.0026478526013231788) +zone = ('gaz138', 0.0019609281746991846) + +[fips1351408] +centroid = (0.5588419473844326, -1.4497197997111515) +description = Milan city, GA +station = ('kezm', 0.0035342455086357621) +zone = ('gaz110', 0.0024094833683453109) + +[fips1351492] +centroid = (0.57750044211275553, -1.4528321231931851) +description = Milledgeville city, GA +station = ('kmlj', 0.0011489597226807563) +zone = ('gaz073', 0.00036096095812098274) + +[fips1351520] +centroid = (0.57258828274618745, -1.4301583763476018) +description = Millen city, GA +station = ('kjyl', 0.0058063055649202489) +zone = ('gaz087', 0.00040391895938881006) + +[fips1351604] +centroid = (0.57797524148246804, -1.4694071485802325) +description = Milner city, GA +station = ('k6a2', 0.0023005252857367237) +zone = ('gaz070', 0.0010147737235615816) + +[fips1351670] +centroid = (0.59592761090201918, -1.4715660161451944) +description = Milton city, GA +station = ('kcni', 0.0033193665318119164) +zone = ('gaz021', 0.0029142653673745731) + +[fips1351744] +centroid = (0.6093668904884707, -1.4709217453051133) +description = Mineral Bluff CDP, GA +station = ('krhp', 0.0076820003629796936) +zone = ('gaz006', 0.0010612369564415084) + +[fips1351968] +centroid = (0.57982825754931033, -1.4434090382017903) +description = Mitchell town, GA +station = ('khqu', 0.0060088394004832232) +zone = ('gaz075', 0.0013285920107700474) + +[fips1352108] +centroid = (0.57614093534520705, -1.4748039858800794) +description = Molena city, GA +station = ('kopn', 0.0035824461186007876) +zone = ('gaz068', 0.0021599703372355275) + +[fips1352192] +centroid = (0.58987725251705558, -1.4611676760743699) +description = Monroe city, GA +station = ('kwdr', 0.0033069757513877174) +zone = ('gaz047', 4.767054743352353e-05) + +[fips1352304] +centroid = (0.56369768025628353, -1.4664209774965329) +description = Montezuma city, GA +station = ('kacj', 0.0042185802246675142) +zone = ('gaz093', 0.0011147120941202701) + +[fips1352332] +centroid = (0.55751902271800591, -1.4155727296018552) +description = Montgomery CDP, GA +station = ('ksvn', 0.0014314443964226862) +zone = ('gaz119', 0.0011561613735731554) + +[fips1352416] +centroid = (0.58132824586835186, -1.460576480696842) +description = Monticello city, GA +station = ('k9a1', 0.0061181560952763203) +zone = ('gaz059', 0.00015974310658520237) + +[fips1352500] +centroid = (0.56826576541411333, -1.4512962683580153) +description = Montrose town, GA +station = ('kdbn', 0.0024751457804328449) +zone = ('gaz096', 0.0033710365535827977) + +[fips1352556] +centroid = (0.54064622670727591, -1.4523276008663113) +description = Moody AFB CDP, GA +station = ('kvad', 0.00025399834384020437) +zone = ('gaz161', 0.0024807089997413703) + +[fips1352668] +centroid = (0.58094182997196031, -1.4794938252065284) +description = Moreland town, GA +station = ('kffc', 0.003269742976530612) +zone = ('gaz053', 0.0011892232897814758) + +[fips1352696] +centroid = (0.55044363246334604, -1.4766050609483825) +description = Morgan city, GA +station = ('kbij', 0.0049022583674476136) +zone = ('gaz123', 0.00035770644382235686) + +[fips1352724] +centroid = (0.6086959684707115, -1.4703234638908222) +description = Morganton city, GA +station = ('krhp', 0.0077782137548517184) +zone = ('gaz006', 0.0011122160848820993) + +[fips1353004] +centroid = (0.58606131700037267, -1.4719419775193665) +description = Morrow city, GA +station = ('katl', 0.001881846132674021) +zone = ('gaz055', 0.00071742405591419302) + +[fips1353032] +centroid = (0.54007428231139742, -1.4573495065362447) +description = Morven city, GA +station = ('kvld', 0.0044809300929831881) +zone = ('gaz159', 0.0021482734302885396) + +[fips1353060] +centroid = (0.54418372984838814, -1.4624250985339693) +description = Moultrie city, GA +station = ('kmgr', 0.0016631123611449) +zone = ('gaz146', 0.0003636950777356772) + +[fips1353116] +centroid = (0.60949539908129513, -1.4552749383741541) +description = Mountain City town, GA +station = ('k1a5', 0.0051763625049100429) +zone = ('gaz010', 0.00075544518620871413) + +[fips1353172] +centroid = (0.59486117982246556, -1.4732958643267235) +description = Mountain Park city, GA +station = ('kryy', 0.0029406274768668281) +zone = ('gaz033', 0.0027162604193464528) + +[fips1353186] +centroid = (0.59073605922879191, -1.4683831290015024) +description = Mountain Park CDP, GA +station = ('kpdk', 0.0025151618981936784) +zone = ('gaz045', 0.0018936185432754655) + +[fips1353284] +centroid = (0.60254535837351342, -1.4573092592436936) +description = Mount Airy town, GA +station = ('ktoc', 0.0031374153582572682) +zone = ('gaz017', 0.0019403919603376164) + +[fips1353508] +centroid = (0.56173837363799473, -1.4415825511395783) +description = Mount Vernon city, GA +station = ('kvdi', 0.0033206716461049762) +zone = ('gaz112', 0.00094602833543365992) + +[fips1353620] +centroid = (0.58717345825303602, -1.4866888752347049) +description = Mount Zion city, GA +station = ('kctj', 0.00050095293753319933) +zone = ('gaz042', 0.0018043807404303782) + +[fips1354124] +centroid = (0.54465123374182733, -1.4308421439886556) +description = Nahunta city, GA +station = ('kjes', 0.006243750731017639) +zone = ('gaz152', 0.00016119075592463573) + +[fips1354264] +centroid = (0.54462126643857056, -1.4529604223464996) +description = Nashville city, GA +station = ('kvad', 0.0042137998051391132) +zone = ('gaz148', 0.0012807593300686055) + +[fips1354572] +centroid = (0.60003667446657438, -1.4725619708295523) +description = Nelson city, GA +station = ('kcni', 0.0013830570229889029) +zone = ('gaz013', 0.0020047470159300167) + +[fips1354656] +centroid = (0.58496596581511362, -1.4607661805332413) +description = Newborn town, GA +station = ('k9a1', 0.0029975616133983592) +zone = ('gaz048', 0.0023494558710377145) + +[fips1354992] +centroid = (0.56878814245923526, -1.4225479554107432) +description = Newington town, GA +station = ('kjyl', 0.0016508188239443341) +zone = ('gaz088', 0.0032202658488588382) + +[fips1355020] +centroid = (0.58257601665718772, -1.4795385579952569) +description = Newnan city, GA +station = ('kffc', 0.0029907706069105676) +zone = ('gaz053', 0.00046261988120386736) + +[fips1355244] +centroid = (0.54658041597722673, -1.4720014234336893) +description = Newton city, GA +station = ('kaby', 0.0043131796985840208) +zone = ('gaz144', 0.001577608189901459) + +[fips1355440] +centroid = (0.55010779620867734, -1.4423109992094831) +description = Nicholls city, GA +station = ('kamg', 0.0020734664268677754) +zone = ('gaz132', 0.0031827111898223397) + +[fips1355468] +centroid = (0.59544743591821037, -1.4560424643660113) +description = Nicholson city, GA +station = ('k19a', 0.0022264335452901332) +zone = ('gaz025', 0.0020623976169496096) + +[fips1355776] +centroid = (0.59236712177465822, -1.469751467135066) +description = Norcross city, GA +station = ('kpdk', 0.0016313503311814112) +zone = ('gaz033', 0.0021036046131200181) + +[fips1355860] +centroid = (0.5457473528719573, -1.460570598937263) +description = Norman Park city, GA +station = ('kmgr', 0.0036713745920240824) +zone = ('gaz146', 0.001887221066705001) + +[fips1355944] +centroid = (0.56735487807749752, -1.4398726520713996) +description = Norristown CDP, GA +station = ('ksbo', 0.0027325234389622322) +zone = ('gaz098', 0.0020647913513227862) + +[fips1356000] +centroid = (0.59101894219395512, -1.4718917818500792) +description = North Atlanta CDP, GA +station = ('kpdk', 0.00059881035173548933) +zone = ('gaz033', 0.0013001104495181134) + +[fips1356112] +centroid = (0.59004265737026707, -1.47111572119818) +description = North Decatur CDP, GA +station = ('kpdk', 0.0013430579388189771) +zone = ('gaz045', 0.0010966915894105439) + +[fips1356168] +centroid = (0.59026433163856284, -1.4717904480337085) +description = North Druid Hills CDP, GA +station = ('kpdk', 0.0011801335483963892) +zone = ('gaz045', 0.0016899153638774533) + +[fips1356308] +centroid = (0.5904231391472019, -1.4573786709880456) +description = North High Shoals town, GA +station = ('kahn', 0.0032287269120932138) +zone = ('gaz037', 0.0009433718438893972) + +[fips1356560] +centroid = (0.58403423924722897, -1.4434912606628518) +description = Norwood city, GA +station = ('khqu', 0.0029949657252821026) +zone = ('gaz062', 0.001031106055594942) + +[fips1356644] +centroid = (0.56709190931909959, -1.4372205719131164) +description = Nunez city, GA +station = ('ksbo', 0.0022606891014441315) +zone = ('gaz086', 0.0018306083381440059) + +[fips1357232] +centroid = (0.56486191958711884, -1.4368352032142762) +description = Oak Park town, GA +station = ('kvdi', 0.003077178128772741) +zone = ('gaz086', 0.0039516691421105261) + +[fips1357260] +centroid = (0.59729078286099668, -1.4640773493769548) +description = Oakwood city, GA +station = ('kgvl', 0.001080118686748789) +zone = ('gaz023', 0.0019034523333406207) + +[fips1357372] +centroid = (0.54062336289407475, -1.4669603889551543) +description = Ochlocknee town, GA +station = ('ktvi', 0.0028420536318498027) +zone = ('gaz158', 0.0027684976915787465) + +[fips1357428] +centroid = (0.5515001849793334, -1.4529832687064079) +description = Ocilla city, GA +station = ('kfzg', 0.0014514680138828053) +zone = ('gaz131', 0.00040043266784309478) + +[fips1357456] +centroid = (0.57340092549920862, -1.4478845685493869) +description = Oconee city, GA +station = ('kdbn', 0.0050600876815450301) +zone = ('gaz074', 0.0031178322831058982) + +[fips1357540] +centroid = (0.55277785325825579, -1.4315908902377612) +description = Odum city, GA +station = ('kjes', 0.0029442158429205103) +zone = ('gaz136', 0.0026373427259238063) + +[fips1357568] +centroid = (0.54818849253684421, -1.4331482998891933) +description = Offerman city, GA +station = ('kjes', 0.0042674426217319348) +zone = ('gaz151', 0.0017259839507777152) + +[fips1357736] +centroid = (0.56362224712601239, -1.467172760618537) +description = Oglethorpe city, GA +station = ('kacj', 0.0037850011391815453) +zone = ('gaz093', 0.0011771117475885353) + +[fips1358100] +centroid = (0.56763481143622496, -1.4230762665753218) +description = Oliver city, GA +station = ('kjyl', 0.0023087946273532972) +zone = ('gaz100', 0.003759887962624049) + +[fips1358184] +centroid = (0.54696800124421718, -1.4589857178034042) +description = Omega city, GA +station = ('ktma', 0.0022072966196096484) +zone = ('gaz129', 0.0022979365844311137) + +[fips1358296] +centroid = (0.57919026989453648, -1.4697773329145807) +description = Orchard Hill town, GA +station = ('k6a2', 0.0011732367988217911) +zone = ('gaz056', 0.0016895377441270008) + +[fips1358744] +centroid = (0.58692604037827334, -1.4638482400060455) +description = Oxford city, GA +station = ('k9a1', 0.00032567012213815459) +zone = ('gaz048', 0.0013185414943273032) + +[fips1358884] +centroid = (0.58525518432546153, -1.4777634185196384) +description = Palmetto city, GA +station = ('kffc', 0.0032618646142481946) +zone = ('gaz044', 0.0016107875165951243) + +[fips1359080] +centroid = (0.58832116931585499, -1.4708670466863556) +description = Panthersville CDP, GA +station = ('katl', 0.002521800016557372) +zone = ('gaz045', 0.0013056777642344748) + +[fips1359416] +centroid = (0.55666199624210666, -1.475008398842073) +description = Parrott town, GA +station = ('kacj', 0.0059542608903694408) +zone = ('gaz124', 0.0023338453825145315) + +[fips1359500] +centroid = (0.54776991022233834, -1.4335336860413261) +description = Patterson city, GA +station = ('kays', 0.0045940664227117674) +zone = ('gaz151', 0.0012459965391904155) + +[fips1359556] +centroid = (0.54034294084315682, -1.4615270917272332) +description = Pavo city, GA +station = ('ktvi', 0.0023531498988353427) +zone = ('gaz159', 0.0031414556012482257) + +[fips1359584] +centroid = (0.57337273843178893, -1.4604812380795607) +description = Payne city, GA +station = ('kmcn', 0.0029724673640655133) +zone = ('gaz082', 0.00083316577632166556) + +[fips1359724] +centroid = (0.58279831924401415, -1.4760356123733342) +description = Peachtree City city, GA +station = ('kffc', 0.00044386381686890099) +zone = ('gaz054', 0.001179726673002923) + +[fips1359808] +centroid = (0.54623936118809446, -1.4460743479558034) +description = Pearson city, GA +station = ('kdqh', 0.0031335251968852267) +zone = ('gaz149', 0.00038839885099681542) + +[fips1359976] +centroid = (0.54326109644590637, -1.4687215308901715) +description = Pelham city, GA +station = ('ktvi', 0.0056336231285734756) +zone = ('gaz145', 0.0018387882759531764) + +[fips1360004] +centroid = (0.56102769301987521, -1.4244837000841302) +description = Pembroke city, GA +station = ('kcwv', 0.0038624279502192066) +zone = ('gaz116', 0.0027757640208891784) + +[fips1360032] +centroid = (0.59624271264517414, -1.4605809312864346) +description = Pendergrass town, GA +station = ('k19a', 0.0017996268579730812) +zone = ('gaz025', 0.0017859152683851799) + +[fips1360312] +centroid = (0.57454942196019099, -1.430198763266493) +description = Perkins CDP, GA +station = ('kjyl', 0.0069954168982720869) +zone = ('gaz087', 0.0022302513364607902) + +[fips1360340] +centroid = (0.56674345433393891, -1.4612986455814398) +description = Perry city, GA +station = ('kwrb', 0.0033730159107595134) +zone = ('gaz095', 0.00091288063347525839) + +[fips1360508] +centroid = (0.54871163752683694, -1.4577043843330526) +description = Phillipsburg CDP, GA +station = ('ktma', 0.00068463916826844141) +zone = ('gaz129', 0.0003385292097491111) + +[fips1360984] +centroid = (0.5619299235234011, -1.4618793864367483) +description = Pinehurst city, GA +station = ('kacj', 0.006680411255022234) +zone = ('gaz105', 0.00089367173440981407) + +[fips1361040] +centroid = (0.58975909372669555, -1.4696691050476645) +description = Pine Lake city, GA +station = ('kpdk', 0.0021158893652787913) +zone = ('gaz045', 0.00044776704177052802) + +[fips1361124] +centroid = (0.57337565313163974, -1.4809403366372886) +description = Pine Mountain town, GA +station = ('klgc', 0.0042386377003344813) +zone = ('gaz078', 0.0021926558323319108) + +[fips1361320] +centroid = (0.56032538998216519, -1.4575047361199172) +description = Pineview town, GA +station = ('kezm', 0.0059484729962084627) +zone = ('gaz107', 0.0022938192648008582) + +[fips1361544] +centroid = (0.55756609424793213, -1.4580787225510206) +description = Pitts city, GA +station = ('kfzg', 0.0061504737473279157) +zone = ('gaz108', 0.0016899121559560009) + +[fips1361628] +centroid = (0.55908254102181998, -1.4729623842665449) +description = Plains city, GA +station = ('kacj', 0.0031748936505960712) +zone = ('gaz103', 0.0023269843039319263) + +[fips1361684] +centroid = (0.60048515427116689, -1.4840794509233406) +description = Plainville city, GA +station = ('krmg', 0.0021730120041310325) +zone = ('gaz012', 0.0028214184675433322) + +[fips1362104] +centroid = (0.56028311810768183, -1.4181670917217746) +description = Pooler city, GA +station = ('ksav', 0.00085303138443149561) +zone = ('gaz118', 0.00058893676041695344) + +[fips1362216] +centroid = (0.56792462335851857, -1.4299410654024358) +description = Portal town, GA +station = ('ktbr', 0.0029988097439006107) +zone = ('gaz099', 0.0031862682974342959) + +[fips1362244] +centroid = (0.5859728462605891, -1.4642401362362882) +description = Porterdale city, GA +station = ('k9a1', 0.001177650618732414) +zone = ('gaz048', 0.00072432578467767424) + +[fips1362328] +centroid = (0.5618597961940559, -1.4172995234571935) +description = Port Wentworth city, GA +station = ('ksav', 0.0013205257103519128) +zone = ('gaz118', 0.0020344490811251181) + +[fips1362496] +centroid = (0.55003189183950807, -1.4624082386533952) +description = Poulan city, GA +station = ('ktma', 0.0048982318337834584) +zone = ('gaz127', 0.0011158882216457215) + +[fips1362524] +centroid = (0.59106723545435791, -1.4780141699732727) +description = Powder Springs city, GA +station = ('kmge', 0.0025822591469662338) +zone = ('gaz032', 0.0020413068895760982) + +[fips1363000] +centroid = (0.56531799157395757, -1.4303647789849425) +description = Pulaski town, GA +station = ('kcwv', 0.0035449106430516415) +zone = ('gaz099', 0.001780870114647235) + +[fips1363084] +centroid = (0.5493379314756226, -1.4679133736333283) +description = Putney CDP, GA +station = ('kaby', 0.0017418274353245477) +zone = ('gaz125', 0.0019443704965284355) + +[fips1363224] +centroid = (0.53729231475018102, -1.4584064953845448) +description = Quitman city, GA +station = ('kvld', 0.0044063973011739367) +zone = ('gaz159', 0.0010450017761934065) + +[fips1363560] +centroid = (0.60216060053991138, -1.4784870320275154) +description = Ranger town, GA +station = ('kdnn', 0.0044671469274913042) +zone = ('gaz012', 0.0023682620307185127) + +[fips1363588] +centroid = (0.60140016058481738, -1.4591103168587043) +description = Raoul CDP, GA +station = ('kgvl', 0.0047258223338979017) +zone = ('gaz024', 0.0023427676776475444) + +[fips1363728] +centroid = (0.54237249696383849, -1.4520590121477219) +description = Ray City city, GA +station = ('kvad', 0.001902787543770823) +zone = ('gaz161', 0.0021121285513289565) + +[fips1363756] +centroid = (0.58977007184769059, -1.4470270882878822) +description = Rayle town, GA +station = ('kiiy', 0.0013520844153737878) +zone = ('gaz039', 0.0024039690029657337) + +[fips1363840] +centroid = (0.55514081962594586, -1.4571331031622901) +description = Rebecca town, GA +station = ('kfzg', 0.0039191273353477015) +zone = ('gaz128', 0.0025746624358944431) + +[fips1363952] +centroid = (0.58883139886938307, -1.4688694300909857) +description = Redan CDP, GA +station = ('kpdk', 0.0032548920657575098) +zone = ('gaz045', 0.0011296463766539454) + +[fips1364288] +centroid = (0.60102009768690312, -1.4469481121392294) +description = Reed Creek CDP, GA +station = ('kand', 0.0029186903712299034) +zone = ('gaz028', 0.001713914541499459) + +[fips1364372] +centroid = (0.56495532960868566, -1.4292192844902738) +description = Register town, GA +station = ('kcwv', 0.002971513943687379) +zone = ('gaz100', 0.0021902727757764462) + +[fips1364512] +centroid = (0.56002470465863152, -1.4333379473657151) +description = Reidsville city, GA +station = ('kvdi', 0.004097654056121381) +zone = ('gaz114', 0.0012131457027367294) + +[fips1364596] +centroid = (0.53832565438711677, -1.4540150899068944) +description = Remerton city, GA +station = ('kvld', 0.001230691291423208) +zone = ('gaz160', 0.00064147750781873368) + +[fips1364680] +centroid = (0.56518799945126896, -1.4484804763158952) +description = Rentz city, GA +station = ('kdbn', 0.003170365015128471) +zone = ('gaz097', 0.0017439406670662274) + +[fips1364736] +centroid = (0.6035209450655008, -1.4825487448094641) +description = Resaca town, GA +station = ('kdnn', 0.0027074527258678467) +zone = ('gaz012', 0.0016457509501180084) + +[fips1364792] +centroid = (0.59572150497065113, -1.465654568515397) +description = Rest Haven town, GA +station = ('klzu', 0.0026994432492643814) +zone = ('gaz022', 0.0027023493245258187) + +[fips1364876] +centroid = (0.5682875471231783, -1.4677235167172962) +description = Reynolds city, GA +station = ('kmcn', 0.0068750463962616434) +zone = ('gaz080', 0.0022969527579804051) + +[fips1364932] +centroid = (0.5583188722076099, -1.4521215298415284) +description = Rhine town, GA +station = ('kezm', 0.0040687686973287169) +zone = ('gaz109', 0.0032269093612314974) + +[fips1364960] +centroid = (0.55369549501907689, -1.4214369486220937) +description = Riceboro city, GA +station = ('klhw', 0.0033307628917017833) +zone = ('gaz138', 0.0026006946736479631) + +[fips1365016] +centroid = (0.56005454978884073, -1.4776306687767318) +description = Richland city, GA +station = ('klsf', 0.0049620551844645538) +zone = ('gaz103', 0.0017991109820578689) + +[fips1365044] +centroid = (0.55735504903478106, -1.4191081558011576) +description = Richmond Hill city, GA +station = ('ksvn', 0.0027590013504646882) +zone = ('gaz117', 0.0026617489396953162) + +[fips1365156] +centroid = (0.57426112847434652, -1.4427761469084324) +description = Riddleville town, GA +station = ('ksbo', 0.0065647462249524531) +zone = ('gaz074', 0.0022439194942144194) + +[fips1365296] +centroid = (0.56363582578759286, -1.4178305747886977) +description = Rincon town, GA +station = ('ksav', 0.0031388614276568441) +zone = ('gaz101', 0.0020112581049627426) + +[fips1365324] +centroid = (0.60938134181467729, -1.4856279070357101) +description = Ringgold city, GA +station = ('kcha', 0.0023599083080773019) +zone = ('gaz003', 0.00032405822756088318) + +[fips1365464] +centroid = (0.58579991903830153, -1.4732492640356953) +description = Riverdale city, GA +station = ('katl', 0.0015381335488839783) +zone = ('gaz055', 0.00086439189939851817) + +[fips1365604] +centroid = (0.544168353497678, -1.4626630741774789) +description = Riverside town, GA +station = ('kmgr', 0.0016377307023700688) +zone = ('gaz146', 0.00055896944310177823) + +[fips1365856] +centroid = (0.57106782171502024, -1.4662577543048863) +description = Roberta city, GA +station = ('kopn', 0.0055439551120978255) +zone = ('gaz081', 0.0003639850776742307) + +[fips1365968] +centroid = (0.56914932089464287, -1.4587935570527597) +description = Robins AFB CDP, GA +station = ('kwrb', 0.00048218083855723116) +zone = ('gaz083', 0.00249516372732346) + +[fips1366024] +centroid = (0.55761115864921862, -1.4565973743483902) +description = Rochelle city, GA +station = ('kfzg', 0.0054485047645812463) +zone = ('gaz108', 0.00056296488872491517) + +[fips1366220] +centroid = (0.55050948373602382, -1.4384649916697885) +description = Rockingham CDP, GA +station = ('kamg', 0.001229246486180622) +zone = ('gaz134', 0.00055625996214995869) + +[fips1366276] +centroid = (0.59355584807489903, -1.4842875290767634) +description = Rockmart city, GA +station = ('kpuj', 0.002276236907300879) +zone = ('gaz030', 0.002097908847418764) + +[fips1366444] +centroid = (0.57008574239821552, -1.4282983091505814) +description = Rocky Ford town, GA +station = ('ktbr', 0.003465118969346787) +zone = ('gaz087', 0.0029339468666158366) + +[fips1366668] +centroid = (0.59808489021736178, -1.4868029325013228) +description = Rome city, GA +station = ('krmg', 0.0014668847096067741) +zone = ('gaz019', 0.00039413604682696668) + +[fips1366696] +centroid = (0.5839285072011432, -1.4858058957128284) +description = Roopville town, GA +station = ('kctj', 0.0030391143907045411) +zone = ('gaz042', 0.0023222525794770674) + +[fips1367256] +centroid = (0.61044239728013461, -1.4885837617503026) +description = Rossville city, GA +station = ('kcha', 0.0016275230626461156) +zone = ('gaz003', 0.0025066052446149432) + +[fips1367284] +centroid = (0.59410053042786137, -1.4722017348719407) +description = Roswell city, GA +station = ('kpdk', 0.0028228433781995891) +zone = ('gaz033', 0.0018243464477027331) + +[fips1367452] +centroid = (0.59839829899114227, -1.4505351302712206) +description = Royston city, GA +station = ('ktoc', 0.005996958159708736) +zone = ('gaz026', 0.0023304422439407021) + +[fips1367676] +centroid = (0.59300945529926963, -1.4606392601900362) +description = Russell CDP, GA +station = ('kwdr', 0.00030944205177912894) +zone = ('gaz035', 0.00045117333078550226) + +[fips1367760] +centroid = (0.5868783928896939, -1.4592645166981177) +description = Rutledge city, GA +station = ('k9a1', 0.0034930174226523586) +zone = ('gaz049', 0.001810297451749137) + +[fips1367984] +centroid = (0.53676143795160192, -1.423711915488898) +description = St. Marys city, GA +station = ('kfhb', 0.0028033048218099083) +zone = ('gaz166', 0.0023588161812112111) + +[fips1368040] +centroid = (0.54413505261554995, -1.4204472073098728) +description = St. Simons CDP, GA +station = ('kssi', 0.00046625397460934432) +zone = ('gaz154', 0.00091430362422783738) + +[fips1368096] +centroid = (0.54564097505404818, -1.4664398794123319) +description = Sale City city, GA +station = ('kmgr', 0.004499762744997359) +zone = ('gaz145', 0.0026688354495089323) + +[fips1368129] +centroid = (0.57174520145101171, -1.4694559479861182) +description = Salem CDP, GA +station = ('kopn', 0.003581850514278632) +zone = ('gaz069', 0.0026437732022826124) + +[fips1368208] +centroid = (0.57564604723580404, -1.4453018128689932) +description = Sandersville city, GA +station = ('kmlj', 0.0069809468534856893) +zone = ('gaz074', 0.00029844076403255345) + +[fips1368516] +centroid = (0.59221643004704105, -1.4725111293884419) +description = Sandy Springs city, GA +station = ('kpdk', 0.0013024167986829466) +zone = ('gaz033', 0.00019753085594700879) + +[fips1368600] +centroid = (0.56148109465295815, -1.4369276358514618) +description = Santa Claus city, GA +station = ('kvdi', 0.00073034962411210589) +zone = ('gaz113', 0.00087093031727296334) + +[fips1368740] +centroid = (0.57552359493548411, -1.4270075509022691) +description = Sardis city, GA +station = ('kjyl', 0.0062448770411690467) +zone = ('gaz077', 0.0038108946330698006) + +[fips1368796] +centroid = (0.55361697265602972, -1.4721462159484349) +description = Sasser town, GA +station = ('kaby', 0.0039277117673171182) +zone = ('gaz124', 0.0016528335898559042) + +[fips1368805] +centroid = (0.55487273705283957, -1.4409292918538494) +description = Satilla CDP, GA +station = ('kamg', 0.0045970555374571535) +zone = ('gaz133', 0.0011791665892903122) + +[fips1368880] +centroid = (0.60543401791190432, -1.4605453963828641) +description = Sautee Nacoochee CDP, GA +station = ('ktoc', 0.0058002705203973126) +zone = ('gaz016', 0.0011810965184754086) + +[fips1369000] +centroid = (0.5585492033089956, -1.416396769354892) +description = Savannah city, GA +station = ('ksvn', 0.00025259201820898938) +zone = ('gaz118', 0.001704626191863129) + +[fips1369336] +centroid = (0.55933564866994423, -1.4454551400437807) +description = Scotland city, GA +station = ('kezm', 0.005417790787047988) +zone = ('gaz111', 0.0018438743775745787) + +[fips1369392] +centroid = (0.5898774270499807, -1.470660713862185) +description = Scottdale CDP, GA +station = ('kpdk', 0.0015931225114838633) +zone = ('gaz045', 0.0006955470643910561) + +[fips1369448] +centroid = (0.54950213205165022, -1.4314645807597943) +description = Screven city, GA +station = ('kjes', 0.0023406694034452621) +zone = ('gaz136', 0.0018970599096199731) + +[fips1369672] +centroid = (0.58144078469852056, -1.4757474236072448) +description = Senoia city, GA +station = ('kffc', 0.00093553131401868711) +zone = ('gaz054', 0.0019505954879903095) + +[fips1369728] +centroid = (0.5578238619251592, -1.4591064596810572) +description = Seville CDP, GA +station = ('kfzg', 0.0069346024866639242) +zone = ('gaz108', 0.0025033347677682195) + +[fips1369784] +centroid = (0.58296601047854579, -1.45887265537446) +description = Shady Dale town, GA +station = ('k9a1', 0.0055248995333199349) +zone = ('gaz059', 0.0020897795966511954) + +[fips1369868] +centroid = (0.59935163273516667, -1.4849973893901347) +description = Shannon CDP, GA +station = ('krmg', 0.0012019968943633545) +zone = ('gaz019', 0.002310079828324884) + +[fips1369896] +centroid = (0.58577928924654288, -1.4450529812775366) +description = Sharon city, GA +station = ('kiiy', 0.003800289030041649) +zone = ('gaz051', 0.0012124678113820751) + +[fips1369980] +centroid = (0.58191680579870941, -1.4773823607840506) +description = Sharpsburg town, GA +station = ('kffc', 0.0012621241597042632) +zone = ('gaz053', 0.0016975665135067534) + +[fips1370120] +centroid = (0.55426517048692781, -1.4768331231217404) +description = Shellman city, GA +station = ('kaby', 0.0073148768305876313) +zone = ('gaz122', 0.0020486310336183524) + +[fips1370428] +centroid = (0.57267010378152106, -1.4782713267852612) +description = Shiloh city, GA +station = ('kcsg', 0.0063345351664191689) +zone = ('gaz079', 0.003121292067544662) + +[fips1370932] +centroid = (0.58539987212045197, -1.4501033183609848) +description = Siloam town, GA +station = ('k3j7', 0.0012621902958779945) +zone = ('gaz050', 0.0013629881679760123) + +[fips1371184] +centroid = (0.55742081304099622, -1.4145263698086996) +description = Skidaway Island CDP, GA +station = ('ksvn', 0.0020602757392451064) +zone = ('gaz119', 0.00038774954847571743) + +[fips1371282] +centroid = (0.6106217473140696, -1.4543297727710292) +description = Sky Valley city, GA +station = ('k1a5', 0.004223954758982725) +zone = ('gaz010', 0.0021134132174155046) + +[fips1371464] +centroid = (0.55677924746125562, -1.4705302155940132) +description = Smithville city, GA +station = ('kacj', 0.0037363062133588592) +zone = ('gaz104', 0.0025722203085228033) + +[fips1371492] +centroid = (0.59104569809138818, -1.4750709514424643) +description = Smyrna city, GA +station = ('kmge', 0.00091200910757834161) +zone = ('gaz032', 0.001612361954217451) + +[fips1371604] +centroid = (0.5909271902351777, -1.4661606267320129) +description = Snellville city, GA +station = ('klzu', 0.0021892889067946157) +zone = ('gaz034', 0.0018363463425385017) + +[fips1371660] +centroid = (0.58727072545224968, -1.4610751736240144) +description = Social Circle city, GA +station = ('k9a1', 0.0020093705212791612) +zone = ('gaz048', 0.0025680182052090226) + +[fips1371772] +centroid = (0.56510738269311933, -1.4415375740047545) +description = Soperton city, GA +station = ('kvdi', 0.0046096688748857289) +zone = ('gaz098', 0.00059598211864236698) + +[fips1372556] +centroid = (0.54400759122027686, -1.4563210189146294) +description = Sparks town, GA +station = ('ktma', 0.0044132612552633451) +zone = ('gaz147', 0.00031062655948356851) + +[fips1372584] +centroid = (0.58080913258893119, -1.448096451520579) +description = Sparta city, GA +station = ('kmlj', 0.0045047463117304691) +zone = ('gaz061', 0.00047404631138745954) + +[fips1372780] +centroid = (0.56486076766981252, -1.4190899869236444) +description = Springfield city, GA +station = ('ksav', 0.004603369884254865) +zone = ('gaz101', 0.00048756390759657883) + +[fips1373004] +centroid = (0.57974408031948677, -1.4393248804856611) +description = Stapleton city, GA +station = ('khqu', 0.0055019543956914829) +zone = ('gaz075', 0.0021057351085370041) + +[fips1373200] +centroid = (0.53592956167022388, -1.4489553629520704) +description = Statenville CDP, GA +station = ('kvld', 0.003949286393070797) +zone = ('gaz162', 0.0018787007306663511) + +[fips1373256] +centroid = (0.56620650378956283, -1.4272345309714907) +description = Statesboro city, GA +station = ('ktbr', 0.00091332200849957739) +zone = ('gaz100', 0.00090101709311374441) + +[fips1373312] +centroid = (0.59276465541838497, -1.4591591162645898) +description = Statham city, GA +station = ('kwdr', 0.00099113739189303561) +zone = ('gaz035', 0.0016643448525065637) + +[fips1373620] +centroid = (0.56621289169462508, -1.4349134386281976) +description = Stillmore city, GA +station = ('ksbo', 0.003864030452179867) +zone = ('gaz099', 0.002178154160165847) + +[fips1373704] +centroid = (0.58543989252020023, -1.4705711784715576) +description = Stockbridge city, GA +station = ('katl', 0.0031630557773002044) +zone = ('gaz055', 0.0014574647796836303) + +[fips1373816] +centroid = (0.58999438156315698, -1.4690684150790054) +description = Stone Mountain city, GA +station = ('kpdk', 0.0023199615615325849) +zone = ('gaz045', 0.00097938629805140046) + +[fips1374180] +centroid = (0.59511493324241305, -1.466815666253579) +description = Sugar Hill city, GA +station = ('klzu', 0.0023843193339181633) +zone = ('gaz034', 0.0023870662029347877) + +[fips1374348] +centroid = (0.5715122349024554, -1.4360020877491293) +description = Summertown city, GA +station = ('ksbo', 0.0025787489674019299) +zone = ('gaz086', 0.0027375590220680692) + +[fips1374376] +centroid = (0.60176772692528746, -1.4896223199217018) +description = Summerville city, GA +station = ('krmg', 0.0034564919832816947) +zone = ('gaz011', 8.4125801187423031e-05) + +[fips1374432] +centroid = (0.54995124017477348, -1.4614675410931552) +description = Sumner town, GA +station = ('ktma', 0.0041202451122243772) +zone = ('gaz127', 0.0018596598062699456) + +[fips1374572] +centroid = (0.58194907693657882, -1.4711680287158622) +description = Sunny Side city, GA +station = ('k6a2', 0.0020437230709554589) +zone = ('gaz056', 0.0014411516624329476) + +[fips1374628] +centroid = (0.54523193969055084, -1.4371352253126941) +description = Sunnyside CDP, GA +station = ('kays', 0.00088786495118569849) +zone = ('gaz151', 0.0028310717153425384) + +[fips1374768] +centroid = (0.57406975312186537, -1.4732273950601678) +description = Sunset Village CDP, GA +station = ('kopn', 0.0023972863355810215) +zone = ('gaz069', 0.0016285304355654747) + +[fips1374852] +centroid = (0.55365187924106951, -1.4346226493215231) +description = Surrency town, GA +station = ('kjes', 0.0055275869167600005) +zone = ('gaz135', 0.0014353197718250173) + +[fips1374936] +centroid = (0.59426073419990189, -1.4672362382434321) +description = Suwanee city, GA +station = ('klzu', 0.0019438742978566406) +zone = ('gaz034', 0.0016395446631729635) + +[fips1374964] +centroid = (0.56872579929835398, -1.437013069718347) +description = Swainsboro city, GA +station = ('ksbo', 0.00079298460727744897) +zone = ('gaz086', 0.00049058824256810604) + +[fips1375104] +centroid = (0.55275373280799334, -1.4597049330815663) +description = Sycamore city, GA +station = ('ktma', 0.004941532169979241) +zone = ('gaz128', 0.00081584718155757613) + +[fips1375160] +centroid = (0.57154612919652914, -1.4248987044736692) +description = Sylvania city, GA +station = ('kjyl', 0.0018937964061889116) +zone = ('gaz088', 0.00042693398161001864) + +[fips1375188] +centroid = (0.55029934609408371, -1.4632222078566477) +description = Sylvester city, GA +station = ('ktma', 0.0056416325005929149) +zone = ('gaz127', 0.00043570835095274298) + +[fips1375239] +centroid = (0.55908058625305779, -1.4132991066385747) +description = Talahi Island CDP, GA +station = ('ksvn', 0.0025892811902569987) +zone = ('gaz119', 0.0021799542509181231) + +[fips1375244] +centroid = (0.57032556809073198, -1.4755126942761441) +description = Talbotton city, GA +station = ('kopn', 0.006317727221014249) +zone = ('gaz079', 0.00040430070665731189) + +[fips1375272] +centroid = (0.60262119292951266, -1.4747000166165378) +description = Talking Rock town, GA +station = ('kcni', 0.0039000401617313931) +zone = ('gaz013', 0.0011791719163731442) + +[fips1375300] +centroid = (0.58881572581270014, -1.4885452074271259) +description = Tallapoosa city, GA +station = ('kctj', 0.0027284951487216392) +zone = ('gaz041', 0.0014953671732758059) + +[fips1375328] +centroid = (0.60599774180700594, -1.4552041652729857) +description = Tallulah Falls town, GA +station = ('ktoc', 0.0025211472277947922) +zone = ('gaz017', 0.0027145092297837293) + +[fips1375412] +centroid = (0.59662408454002747, -1.461153207294871) +description = Talmo town, GA +station = ('kgvl', 0.0022031616702741959) +zone = ('gaz025', 0.0023580364597979328) + +[fips1375496] +centroid = (0.56406604944820948, -1.4409574963745615) +description = Tarrytown town, GA +station = ('kvdi', 0.003551437696788231) +zone = ('gaz098', 0.0014917931531817628) + +[fips1375580] +centroid = (0.61045007672884344, -1.4582471642771304) +description = Tate City CDP, GA +station = ('k1a5', 0.0046167679001355311) +zone = ('gaz010', 0.0026981285640872124) + +[fips1375664] +centroid = (0.59489772701700239, -1.483279042928376) +description = Taylorsville town, GA +station = ('kvpc', 0.0021328903617963864) +zone = ('gaz031', 0.0033499719083299388) + +[fips1375832] +centroid = (0.58875619263191448, -1.4840062518145118) +description = Temple city, GA +station = ('kctj', 0.0025343546897619376) +zone = ('gaz042', 0.0027339002800285338) + +[fips1375888] +centroid = (0.57485146864054115, -1.4453635800712212) +description = Tennille city, GA +station = ('kdbn', 0.0069669315815519967) +zone = ('gaz074', 0.00062841205369405296) + +[fips1376112] +centroid = (0.57527300056148278, -1.4702509629136944) +description = The Rock CDP, GA +station = ('kopn', 0.00038326665068216776) +zone = ('gaz069', 0.0016422777561533629) + +[fips1376168] +centroid = (0.57406799033932077, -1.4717784052618696) +description = Thomaston city, GA +station = ('kopn', 0.0014329074659239791) +zone = ('gaz069', 0.00044038699795006045) + +[fips1376224] +centroid = (0.53824945331197471, -1.465706230261256) +description = Thomasville city, GA +station = ('ktvi', 0.0018190341459891506) +zone = ('gaz158', 0.00098548994293776084) + +[fips1376280] +centroid = (0.58410522178790747, -1.4397994180559857) +description = Thomson city, GA +station = ('khqu', 0.0011397084196529616) +zone = ('gaz063', 0.00033955465717370412) + +[fips1376364] +centroid = (0.55905143925454948, -1.4145824472375663) +description = Thunderbolt town, GA +station = ('ksvn', 0.0015073541784876704) +zone = ('gaz119', 0.0019868900782142535) + +[fips1376476] +centroid = (0.54911723459170791, -1.4577076131921689) +description = Tifton city, GA +station = ('ktma', 0.00095052575882407077) +zone = ('gaz129', 0.0001212822189096878) + +[fips1376504] +centroid = (0.60817858306725037, -1.4561729102743053) +description = Tiger town, GA +station = ('ktoc', 0.00483266007712836) +zone = ('gaz010', 0.00076109971850317623) + +[fips1376532] +centroid = (0.59108999454780387, -1.4441228778658561) +description = Tignall town, GA +station = ('kiiy', 0.0018647219703094992) +zone = ('gaz039', 0.0014829453853143423) + +[fips1376756] +centroid = (0.60354630469953219, -1.4543168922411496) +description = Toccoa city, GA +station = ('ktoc', 0.00047848782773830058) +zone = ('gaz018', 0.00066150063572498771) + +[fips1376952] +centroid = (0.57285847716768878, -1.4500655668892641) +description = Toomsboro city, GA +station = ('kdbn', 0.0047246163361871442) +zone = ('gaz084', 0.0013464702826399659) + +[fips1377372] +centroid = (0.60866872388108806, -1.492424899821384) +description = Trenton city, GA +station = ('kcha', 0.0052287084626327059) +zone = ('gaz001', 0.00034906818182523273) + +[fips1377540] +centroid = (0.60298364545527428, -1.4889538064583103) +description = Trion town, GA +station = ('krmg', 0.0040365971282240298) +zone = ('gaz011', 0.0013747748289891484) + +[fips1377652] +centroid = (0.59084557863935461, -1.4699360357034643) +description = Tucker CDP, GA +station = ('kpdk', 0.0012599254115376896) +zone = ('gaz045', 0.0014236849365425249) + +[fips1377736] +centroid = (0.60834171899243428, -1.4841717613874785) +description = Tunnel Hill city, GA +station = ('kdnn', 0.003349778239174519) +zone = ('gaz004', 0.0013215996006486596) + +[fips1377764] +centroid = (0.58167104598673602, -1.4771930449200867) +description = Turin town, GA +station = ('kffc', 0.0012334987871418354) +zone = ('gaz053', 0.00189853245518321) + +[fips1377988] +centroid = (0.56866719114207209, -1.4339515527708386) +description = Twin City city, GA +station = ('ksbo', 0.0031663260908466988) +zone = ('gaz086', 0.0020986894107639861) + +[fips1378036] +centroid = (0.55865954302430665, -1.4112258649267158) +description = Tybee Island city, GA +station = ('khxd', 0.0043086104372474319) +zone = ('gaz119', 0.0030601494807952095) + +[fips1378044] +centroid = (0.58426745014188042, -1.4764529380507785) +description = Tyrone town, GA +station = ('kffc', 0.0019519000849395529) +zone = ('gaz054', 0.0018198929172492688) + +[fips1378100] +centroid = (0.5492882943116959, -1.459972457149312) +description = Ty Ty city, GA +station = ('ktma', 0.0026921407273903133) +zone = ('gaz129', 0.0018580045939535128) + +[fips1378156] +centroid = (0.56299581355088657, -1.4614671222141349) +description = Unadilla city, GA +station = ('kwrb', 0.0068617328511294843) +zone = ('gaz105', 0.0019777356271926476) + +[fips1378324] +centroid = (0.58632306402829437, -1.4758963176457325) +description = Union City city, GA +station = ('katl', 0.0021194339534497016) +zone = ('gaz044', 0.00068717173943361241) + +[fips1378380] +centroid = (0.58675902982215, -1.44993290441282) +description = Union Point city, GA +station = ('k3j7', 0.00099994112556476048) +zone = ('gaz050', 0.0015036792896934083) + +[fips1378464] +centroid = (0.54867126806123834, -1.4575081046053733) +description = Unionville CDP, GA +station = ('ktma', 0.00052034238388396826) +zone = ('gaz129', 0.00044934154749212479) + +[fips1378744] +centroid = (0.55917005183051494, -1.4400268170042281) +description = Uvalda city, GA +station = ('kvdi', 0.0033580379879163103) +zone = ('gaz112', 0.0024142682801978842) + +[fips1378800] +centroid = (0.53843627335510813, -1.4534898330685069) +description = Valdosta city, GA +station = ('kvld', 0.0011799294468209502) +zone = ('gaz160', 0.00032868319806817685) + +[fips1378996] +centroid = (0.60911203751109455, -1.4829173583474853) +description = Varnell city, GA +station = ('kdnn', 0.0033942521593499698) +zone = ('gaz004', 0.0016400778428372219) + +[fips1379164] +centroid = (0.55792777882882294, -1.4158022403984927) +description = Vernonburg town, GA +station = ('ksvn', 0.00097885958834871534) +zone = ('gaz119', 0.0015226358485962376) + +[fips1379388] +centroid = (0.56223863736149382, -1.4382040125867377) +description = Vidalia city, GA +station = ('kvdi', 0.00059172316533724037) +zone = ('gaz113', 0.001948461081978152) + +[fips1379416] +centroid = (0.57660496603343481, -1.4354885769766075) +description = Vidette city, GA +station = ('kags', 0.0070648786146242258) +zone = ('gaz076', 0.0025161903754772363) + +[fips1379444] +centroid = (0.56012410115953271, -1.4623562103883931) +description = Vienna city, GA +station = ('kacj', 0.0061159347405294944) +zone = ('gaz105', 0.001138496680191894) + +[fips1379528] +centroid = (0.58869791608819044, -1.4820666325101857) +description = Villa Rica city, GA +station = ('kpuj', 0.0031621796672725465) +zone = ('gaz043', 0.0022116240475274287) + +[fips1379612] +centroid = (0.59097958501932268, -1.4742570695056745) +description = Vinings CDP, GA +station = ('kmge', 0.0011996389777588668) +zone = ('gaz033', 0.0020891905440732798) + +[fips1379808] +centroid = (0.58822105722996065, -1.4868323063926336) +description = Waco city, GA +station = ('kctj', 0.001389014776386613) +zone = ('gaz041', 0.0016299520209046264) + +[fips1379864] +centroid = (0.57359879347650722, -1.4382002077689684) +description = Wadley city, GA +station = ('ksbo', 0.0042994426781129604) +zone = ('gaz076', 0.0033255997463360071) + +[fips1379948] +centroid = (0.59895895110676034, -1.4756793034065396) +description = Waleska city, GA +station = ('kcni', 0.0018483617526751912) +zone = ('gaz021', 0.0016724512651847374) + +[fips1380228] +centroid = (0.58901094088953565, -1.4634576178661569) +description = Walnut Grove city, GA +station = ('k9a1', 0.0020567135989618961) +zone = ('gaz047', 0.0020935102238431695) + +[fips1380256] +centroid = (0.55453009401408804, -1.4245131786951963) +description = Walthourville city, GA +station = ('klhw', 0.0020863442677566462) +zone = ('gaz138', 0.0018466410078297128) + +[fips1380480] +centroid = (0.57399061989357991, -1.4779211090175561) +description = Warm Springs city, GA +station = ('klgc', 0.0061468313390326979) +zone = ('gaz067', 0.0026803706806346303) + +[fips1380508] +centroid = (0.56892665178867352, -1.4600366154526152) +description = Warner Robins city, GA +station = ('kwrb', 0.0010142602500372441) +zone = ('gaz095', 0.0024169768728496016) + +[fips1380592] +centroid = (0.58304596401157971, -1.4427839485301885) +description = Warrenton city, GA +station = ('khqu', 0.0030569948149602659) +zone = ('gaz062', 0.00017143830917547309) + +[fips1380676] +centroid = (0.55553463571836592, -1.4646912165814663) +description = Warwick city, GA +station = ('kacj', 0.0064053092582828193) +zone = ('gaz106', 0.0027851100871184821) + +[fips1380704] +centroid = (0.5887395072842655, -1.4441484818459827) +description = Washington city, GA +station = ('kiiy', 0.0013418586739452848) +zone = ('gaz039', 0.00086764132142990618) + +[fips1380788] +centroid = (0.59099892326743475, -1.455736717587647) +description = Watkinsville city, GA +station = ('kahn', 0.0018785851941636837) +zone = ('gaz037', 0.00063363250978191869) + +[fips1380844] +centroid = (0.57042402211383703, -1.478788363122872) +description = Waverly Hall town, GA +station = ('kcsg', 0.0043634476437825007) +zone = ('gaz079', 0.0028837601046789217) + +[fips1380956] +centroid = (0.54473481755970532, -1.4374122963314482) +description = Waycross city, GA +station = ('kays', 0.00092870825787197994) +zone = ('gaz150', 0.002921198635129013) + +[fips1380984] +centroid = (0.57755177224605669, -1.4314193941854603) +description = Waynesboro city, GA +station = ('kags', 0.004856448562499496) +zone = ('gaz077', 0.00056082508406777643) + +[fips1381128] +centroid = (0.55931788121815895, -1.4757320472565347) +description = Webster County unified government, GA +station = ('kacj', 0.0053396725123336869) +zone = ('gaz103', 3.2822262494501204e-05) + +[fips1382132] +centroid = (0.57422328973616332, -1.4859781422567078) +description = West Point city, GA +station = ('klgc', 0.0021352347124637587) +zone = ('gaz066', 0.0028409740869494082) + +[fips1382412] +centroid = (0.53902834139726219, -1.4717526442021103) +description = Whigham city, GA +station = ('kbge', 0.0048332789627361884) +zone = ('gaz157', 0.0013700946564393281) + +[fips1382468] +centroid = (0.59834077293899657, -1.4791183001646693) +description = White city, GA +station = ('kvpc', 0.0029948450946891934) +zone = ('gaz020', 0.0015534348615736154) + +[fips1382636] +centroid = (0.55908704397129005, -1.4139238996042036) +description = Whitemarsh Island CDP, GA +station = ('ksvn', 0.0020644894687922325) +zone = ('gaz119', 0.0020363728129347241) + +[fips1382692] +centroid = (0.58434218514045089, -1.4492567115007198) +description = White Plains city, GA +station = ('k3j7', 0.0025315699041278928) +zone = ('gaz050', 0.0025610082951772208) + +[fips1382720] +centroid = (0.58454685990183231, -1.482034117026221) +description = Whitesburg city, GA +station = ('kctj', 0.0041888395396379426) +zone = ('gaz042', 0.0028805363732159446) + +[fips1382972] +centroid = (0.54690056172192003, -1.4493912763860486) +description = Willacoochee city, GA +station = ('kdqh', 0.0036872262763538643) +zone = ('gaz149', 0.0025336935911020797) + +[fips1383084] +centroid = (0.57909293288215269, -1.4724149268400721) +description = Williamson city, GA +station = ('k6a2', 0.0015309655248735713) +zone = ('gaz068', 0.0015718502306601631) + +[fips1383168] +centroid = (0.55852689800115496, -1.4132965060979894) +description = Wilmington Island CDP, GA +station = ('ksvn', 0.0025903146720068814) +zone = ('gaz119', 0.0016866714232280889) + +[fips1383420] +centroid = (0.59329106417407895, -1.4612092498171527) +description = Winder city, GA +station = ('kwdr', 0.00079097805088833978) +zone = ('gaz035', 0.00012190573588753109) + +[fips1383728] +centroid = (0.59282961657314404, -1.4535373932906237) +description = Winterville city, GA +station = ('kahn', 0.00080379462116418696) +zone = ('gaz036', 0.0012711806490396107) + +[fips1383868] +centroid = (0.54035140569002904, -1.4262498685673932) +description = Woodbine city, GA +station = ('kssi', 0.0060055536559279771) +zone = ('gaz165', 0.00076260358413723602) + +[fips1383896] +centroid = (0.57570065858809905, -1.4762346497212315) +description = Woodbury city, GA +station = ('kopn', 0.0046798446025518928) +zone = ('gaz067', 0.0018313851870739614) + +[fips1383952] +centroid = (0.57226234250837771, -1.4758717259565719) +description = Woodland city, GA +station = ('kopn', 0.0052344355786717693) +zone = ('gaz079', 0.0016028672768213918) + +[fips1384176] +centroid = (0.59519516602812716, -1.4750854900351333) +description = Woodstock city, GA +station = ('kryy', 0.001959606335519721) +zone = ('gaz021', 0.0025394338188479445) + +[fips1384260] +centroid = (0.58760184931793802, -1.4504749513186119) +description = Woodville city, GA +station = ('k3j7', 0.0013049906490000397) +zone = ('gaz050', 0.0017736576923021771) + +[fips1384288] +centroid = (0.58229550733980717, -1.4731749828227305) +description = Woolsey town, GA +station = ('kffc', 0.0023325022984866765) +zone = ('gaz054', 0.001553015127658648) + +[fips1384456] +centroid = (0.57957905943871069, -1.4379345861101076) +description = Wrens city, GA +station = ('khqu', 0.005925449819152385) +zone = ('gaz076', 0.0026993258261802547) + +[fips1384512] +centroid = (0.57118924427108142, -1.4437387308974921) +description = Wrightsville city, GA +station = ('kdbn', 0.0048139507074329907) +zone = ('gaz085', 0.00098549489093255165) + +[fips1384708] +centroid = (0.57444747727858192, -1.4685673834106354) +description = Yatesville town, GA +station = ('kopn', 0.0019252222610100509) +zone = ('gaz069', 0.0023621830791925587) + +[fips1384832] +centroid = (0.60464622864743156, -1.4616035196951782) +description = Yonah CDP, GA +station = ('ktoc', 0.0064863244669220209) +zone = ('gaz016', 6.9032745711809779e-05) + +[fips1384960] +centroid = (0.60975580220569259, -1.4634071254908967) +description = Young Harris city, GA +station = ('krhp', 0.0045190235964464674) +zone = ('gaz009', 0.0016078435776575287) + +[fips1385128] +centroid = (0.57760214244826913, -1.4720706780984085) +description = Zebulon city, GA +station = ('k6a2', 0.0025247245414345373) +zone = ('gaz068', 0.00067002871272051957) + +[fips15001] +centroid = (0.34204550782881404, -2.7140296252448088) +description = Hawaii County, HI +station = ('phsf', 0.0033317452874993964) +zone = ('hiz028', 0.001235195562929059) + +[fips1500190630] +centroid = (0.34360276040061338, -2.7093373599106996) +description = Hilo CCD, HI +station = ('phto', 0.003060918302690346) +zone = ('hiz025', 0.0017713630265396808) + +[fips1500190720] +centroid = (0.35093853632637823, -2.715253711915695) +description = Honokaa-Kukuihaele CCD, HI +station = ('phsf', 0.0056663533504123544) +zone = ('hiz026', 0.0041558386267442175) + +[fips1500191170] +centroid = (0.33577988053390945, -2.7148071345199871) +description = Kau CCD, HI +station = ('phsf', 0.0095045520572611501) +zone = ('hiz024', 0.0012538660063646145) + +[fips1500191350] +centroid = (0.34136247322604601, -2.7069228365169056) +description = Keaau-Mountain View CCD, HI +station = ('phto', 0.0028568287644269823) +zone = ('hiz025', 0.0049331105132489079) + +[fips1500192430] +centroid = (0.34239003582315769, -2.712598245818663) +description = North Hilo CCD, HI +station = ('phsf', 0.0035929929715901943) +zone = ('hiz028', 0.0025562704133995449) + +[fips1500192520] +centroid = (0.35214394797426818, -2.7196196704928512) +description = North Kohala CCD, HI +station = ('phsf', 0.0081894474974333973) +zone = ('hiz026', 0.0040072474464287553) + +[fips1500192610] +centroid = (0.34326215939708676, -2.7212377128824974) +description = North Kona CCD, HI +station = ('phko', 0.0024920563449351884) +zone = ('hiz023', 0.0023620049502216215) + +[fips1500192700] +centroid = (0.34574565820291953, -2.7140935042954317) +description = Paauhau-Paauilo CCD, HI +station = ('phsf', 0.00085586200071027969) +zone = ('hiz025', 0.0035906234659238466) + +[fips1500192790] +centroid = (0.33906235616472025, -2.7068241206944128) +description = Pahoa-Kalapana CCD, HI +station = ('phto', 0.0051001369657031779) +zone = ('hiz025', 0.006888068993275734) + +[fips1500192880] +centroid = (0.34611193299974308, -2.7079074640144181) +description = Papaikou-Wailea CCD, HI +station = ('phto', 0.0025986797606784465) +zone = ('hiz025', 0.0025008912823996539) + +[fips1500193150] +centroid = (0.34797620644026078, -2.7180780560711497) +description = South Kohala CCD, HI +station = ('phsf', 0.0040507972529479656) +zone = ('hiz026', 0.00058066657942438464) + +[fips1500193240] +centroid = (0.33750074026979088, -2.719872725781098) +description = South Kona CCD, HI +station = ('phko', 0.0077465517488776404) +zone = ('hiz023', 0.0035466039343288644) + +[fips15003] +centroid = (0.37457146376898032, -2.7611453643610488) +description = Honolulu County, HI +station = ('phhi', 0.0027657910828360237) +zone = ('hiz006', 0.00034155734428876903) + +[fips1500390270] +centroid = (0.37295870972696749, -2.7579854981101906) +description = Ewa CCD, HI +station = ('phjr', 0.0011772157155816578) +zone = ('hiz005', 0.0012948437075081393) + +[fips1500390810] +centroid = (0.48493273389632396, -3.069336738142221) +description = Honolulu CCD, HI +station = ('pmdy', 0.024411198354748316) + +[fips1500391710] +centroid = (0.37764584379307581, -2.7567888654684385) +description = Koolauloa CCD, HI +station = ('phhi', 0.0029947342537125932) +zone = ('hiz008', 0.0025985958543050147) + +[fips1500391800] +centroid = (0.37414464350040511, -2.7531781632184971) +description = Koolaupoko CCD, HI +station = ('phng', 0.00023994546691561601) +zone = ('hiz009', 0.0009775642728475217) + +[fips1500393420] +centroid = (0.37526659350346464, -2.7580819624579482) +description = Wahiawa CCD, HI +station = ('phhi', 0.00033109814383486187) +zone = ('hiz010', 0.00029495334935710946) + +[fips1500393510] +centroid = (0.37666353758346832, -2.7597540053346514) +description = Waialua CCD, HI +station = ('phhi', 0.0022368952507442917) +zone = ('hiz007', 3.0219712877543332e-05) + +[fips1500393600] +centroid = (0.37457146376898032, -2.7611453643610488) +description = Waianae CCD, HI +station = ('phhi', 0.0027657910828360237) +zone = ('hiz006', 0.00034155734428876903) + +[fips1500400] +centroid = (0.37416178263365968, -2.754833450934381) +description = Ahuimanu CDP, HI +station = ('phng', 0.0014825607989542595) +zone = ('hiz008', 0.0014401712100492047) + +[fips15005] +centroid = (0.3703372950036421, -2.7397133145585038) +description = Kalawao County, HI +station = ('phmk', 0.0023757687864073328) +zone = ('hiz013', 0.0025608994676590544) + +[fips1500550] +centroid = (0.37324323330162762, -2.7563068578889149) +description = Aiea CDP, HI +station = ('phnl', 0.00099492561502764103) +zone = ('hiz005', 0.00098301353413653321) + +[fips1500590990] +centroid = (0.3703372950036421, -2.7397133145585038) +description = Kalawao CCD, HI +station = ('phmk', 0.0023757687864073328) +zone = ('hiz013', 0.0025608994676590544) + +[fips15007] +centroid = (0.38418253817410758, -2.7873949243248255) +description = Kauai County, HI +station = ('phbk', 0.0013058173685645902) +zone = ('hiz003', 0.00061661023930223294) + +[fips1500790180] +centroid = (0.38252660468640037, -2.7843431288612512) +description = Eleele-Kalaheo CCD, HI +station = ('phli', 0.003403570421630777) +zone = ('hiz003', 0.0027823372722953908) + +[fips1500790540] +centroid = (0.3874585037268084, -2.7837488617042396) +description = Hanalei CCD, HI +station = ('phli', 0.0046126136618910088) +zone = ('hiz004', 0.0019486355112660521) + +[fips1500791080] +centroid = (0.38555176642558969, -2.7804221768834756) +description = Kapaa CCD, HI +station = ('phli', 0.0019201026186359018) +zone = ('hiz002', 0.0020576472828551812) + +[fips1500791260] +centroid = (0.38406546148788379, -2.7855318900680768) +description = Kaumakani-Hanapepe CCD, HI +station = ('phbk', 0.0030188024881091895) +zone = ('hiz003', 0.001120877556417939) + +[fips1500791440] +centroid = (0.38523566984476099, -2.7878978234954954) +description = Kekaha-Waimea CCD, HI +station = ('phbk', 0.0010398509195447261) +zone = ('hiz003', 0.001489769481532863) + +[fips1500791620] +centroid = (0.38188748256761262, -2.782845269843897) +description = Koloa-Poipu CCD, HI +station = ('phli', 0.002550316837076586) +zone = ('hiz002', 0.0032024396613453614) + +[fips1500792160] +centroid = (0.38337230397545424, -2.7808768875134975) +description = Lihue CCD, HI +station = ('phli', 0.0003095309391457923) +zone = ('hiz002', 0.0023286167853919953) + +[fips1500792340] +centroid = (0.38166167186898953, -2.7965791784613776) +description = Niihau CCD, HI +station = ('phbk', 0.0078205975006547749) +zone = ('hiz001', 0.0013213458379225619) + +[fips1500792970] +centroid = (0.38368457828522107, -2.7818136057230429) +description = Puhi-Hanamaulu CCD, HI +station = ('phli', 0.00085527561177742165) +zone = ('hiz002', 0.0015680607550510096) + +[fips1500793780] +centroid = (0.38618909085524789, -2.781078525401981) +description = Wailua-Anahola CCD, HI +station = ('phli', 0.0025135421106227368) +zone = ('hiz002', 0.0017814023641909858) + +[fips15009] +centroid = (0.36400466451875352, -2.733212661226526) +description = Maui County, HI +station = ('phjh', 0.0028528072418345747) +zone = ('hiz018', 0.00093484861808644005) + +[fips1500990090] +centroid = (0.36880699031549347, -2.7373115669748347) +description = East Molokai CCD, HI +station = ('phjh', 0.0038632892955393302) +zone = ('hiz012', 0.00014012589934117421) + +[fips1500990360] +centroid = (0.36505929717256363, -2.7272288871525259) +description = Haiku-Pauwela CCD, HI +station = ('phog', 0.0028614267157658566) +zone = ('hiz020', 0.0024224531105711427) + +[fips1500990450] +centroid = (0.3614744083422598, -2.7243973347872608) +description = Hana CCD, HI +station = ('phog', 0.0064103131607182399) +zone = ('hiz020', 0.0020373805948022843) + +[fips1500990900] +centroid = (0.36439327953000256, -2.7310802179464391) +description = Kahului CCD, HI +station = ('phog', 0.00084162127393285174) +zone = ('hiz019', 0.00086485843366840385) + +[fips1500991530] +centroid = (0.36276659776055875, -2.7308616329109197) +description = Kihei CCD, HI +station = ('phog', 0.0020803175994150149) +zone = ('hiz019', 0.0011351754069889829) + +[fips1500991890] +centroid = (0.35954403928296902, -2.7300672288485819) +description = Kula CCD, HI +station = ('phog', 0.0052334424708300629) +zone = ('hiz021', 0.0020863720973433187) + +[fips1500991980] +centroid = (0.36502767180651746, -2.734008985151041) +description = Lahaina CCD, HI +station = ('phjh', 0.0017965807458787445) +zone = ('hiz018', 0.00040787007506016561) + +[fips1500992070] +centroid = (0.36374171321364807, -2.7389137268682879) +description = Lanai CCD, HI +station = ('phny', 0.0010368329370590921) +zone = ('hiz014', 0.00024715392412130905) + +[fips1500992250] +centroid = (0.36439427436767619, -2.7286880871269483) +description = Makawao-Paia CCD, HI +station = ('phog', 0.0015319802995318748) +zone = ('hiz019', 0.0016956434044877416) + +[fips1500993060] +centroid = (0.36412181101814733, -2.7307406466871713) +description = Puunene CCD, HI +station = ('phog', 0.00078293456203560555) +zone = ('hiz019', 0.00044756304138638835) + +[fips1500993330] +centroid = (0.36492658233624198, -2.7301206533769857) +description = Spreckelsville CCD, HI +station = ('phog', 0.00021117742204189921) +zone = ('hiz019', 0.001141443348190517) + +[fips1500993690] +centroid = (0.36564208006309701, -2.7319533712646269) +description = Waihee-Waikapu CCD, HI +station = ('phog', 0.0017906588065204172) +zone = ('hiz017', 0.0009277746783136286) + +[fips1500993870] +centroid = (0.36462043413214962, -2.7314866178627661) +description = Wailuku CCD, HI +station = ('phog', 0.0011406779878302877) +zone = ('hiz017', 0.001296768765873973) + +[fips1500993960] +centroid = (0.3693625111631107, -2.7434863324288803) +description = West Molokai CCD, HI +station = ('phmk', 0.0014851818351536668) +zone = ('hiz013', 0.0014537830365041061) + +[fips1501085] +centroid = (0.34071366452990964, -2.7051624101668814) +description = Ainaloa CDP, HI +station = ('phto', 0.0035276175198902188) +zone = ('hiz025', 0.006559667916854286) + +[fips1502200] +centroid = (0.38651668915584725, -2.7805509298223949) +description = Anahola CDP, HI +station = ('phli', 0.0028526336092852675) +zone = ('hiz002', 0.0023683144845300388) + +[fips1503850] +centroid = (0.34033103599799491, -2.7208579641438484) +description = Captain Cook CDP, HI +station = ('phko', 0.0048224607874183135) +zone = ('hiz023', 0.00071140793395483139) + +[fips1505900] +centroid = (0.33233693933167036, -2.7161758391726938) +description = Discovery Harbour CDP, HI +station = ('phsf', 0.013006736597728309) +zone = ('hiz024', 0.003833968000418817) + +[fips1506290] +centroid = (0.37156412184145393, -2.752686957753816) +description = East Honolulu CDP, HI +station = ('phng', 0.0028587052483020369) +zone = ('hiz009', 0.0016688468632452711) + +[fips1506325] +centroid = (0.34019519702231221, -2.7069320867619413) +description = Eden Roc CDP, HI +station = ('phto', 0.0039970765612660983) +zone = ('hiz025', 0.0058631925845370383) + +[fips1507000] +centroid = (0.38234020352228737, -2.7852372435837549) +description = Eleele CDP, HI +station = ('phbk', 0.0039351674725646695) +zone = ('hiz003', 0.0023281042030835922) + +[fips1507450] +centroid = (0.3719774856214963, -2.7577269275815075) +description = Ewa Beach CDP, HI +station = ('phnl', 0.00098057728742211741) +zone = ('hiz005', 0.00097937325498327924) + +[fips1507470] +centroid = (0.37235367388847113, -2.7580735325176611) +description = Ewa Gentry CDP, HI +station = ('phjr', 0.00072964165112718088) +zone = ('hiz005', 0.0012269858043752577) + +[fips1507485] +centroid = (0.37248404998359513, -2.7582995177492093) +description = Ewa Villages CDP, HI +station = ('phjr', 0.0006287675890584057) +zone = ('hiz005', 0.0014433394391374455) + +[fips1507542] +centroid = (0.34048272256328577, -2.706631191998897) +description = Fern Acres CDP, HI +station = ('phto', 0.0036681708258700539) +zone = ('hiz025', 0.0057910203869319275) + +[fips1507675] +centroid = (0.33972343452549814, -2.7075707725484155) +description = Fern Forest CDP, HI +station = ('phto', 0.0046012128065840022) +zone = ('hiz025', 0.0059775900017160471) + +[fips1508950] +centroid = (0.38778604966753016, -2.7848664658374616) +description = Haena CDP, HI +station = ('phbk', 0.004832751185365366) +zone = ('hiz004', 0.0021517602656508502) + +[fips1509260] +centroid = (0.36513813369487619, -2.7279823108840269) +description = Haiku-Pauwela CDP, HI +station = ('phog', 0.0021740473298964371) +zone = ('hiz019', 0.0026128501677167657) + +[fips1509700] +centroid = (0.35304169298161647, -2.7188771027092975) +description = Halaula CDP, HI +station = ('phsf', 0.0086271595350538698) +zone = ('hiz026', 0.0048002756994291003) + +[fips1510000] +centroid = (0.37306979993385692, -2.7561985602088286) +description = Halawa CDP, HI +station = ('phnl', 0.00089362329057854307) +zone = ('hiz005', 0.00088458619924123476) + +[fips1510750] +centroid = (0.37681761524983443, -2.7595164834767472) +description = Haleiwa CDP, HI +station = ('phhi', 0.0022281685822811109) +zone = ('hiz007', 0.00028818892578452466) + +[fips1510900] +centroid = (0.36416519990335194, -2.7284929069566979) +description = Haliimaile CDP, HI +station = ('phog', 0.001774293867938672) +zone = ('hiz019', 0.0018101032049677112) + +[fips1511350] +centroid = (0.36257426247698904, -2.7229624821559035) +description = Hana CDP, HI +station = ('phog', 0.0071810184865884275) +zone = ('hiz020', 0.0026671068968382758) + +[fips1511500] +centroid = (0.38753023675906539, -2.7837606775832753) +description = Hanalei CDP, HI +station = ('phli', 0.0046777245778165779) +zone = ('hiz004', 0.0020112267605159606) + +[fips1511650] +centroid = (0.38391606130391309, -2.7811292446700437) +description = Hanamaulu CDP, HI +station = ('phli', 0.00032200384309697143) +zone = ('hiz002', 0.0017816120666650493) + +[fips1511800] +centroid = (0.38245728020851122, -2.7853395547845072) +description = Hanapepe CDP, HI +station = ('phbk', 0.0037910442676723608) +zone = ('hiz003', 0.0021775412694367774) + +[fips1512400] +centroid = (0.37710924231455012, -2.755953934860869) +description = Hauula CDP, HI +station = ('phhi', 0.0030022333987366956) +zone = ('hiz008', 0.0019385609523424354) + +[fips1512450] +centroid = (0.34090570310750656, -2.7061278739492067) +description = Hawaiian Acres CDP, HI +station = ('phto', 0.0032150513769214546) +zone = ('hiz025', 0.0057740990269170766) + +[fips1512500] +centroid = (0.34093882945670939, -2.7042134746525721) +description = Hawaiian Beaches CDP, HI +station = ('phto', 0.0036597213641128483) +zone = ('hiz025', 0.0071143451830843378) + +[fips1512530] +centroid = (0.33330179224875789, -2.7187805510950773) +description = Hawaiian Ocean View CDP, HI +station = ('phko', 0.011998819966426006) +zone = ('hiz024', 0.0052941956112912327) + +[fips1512600] +centroid = (0.34186254496332746, -2.7047903059703562) +description = Hawaiian Paradise Park CDP, HI +station = ('phto', 0.0025881324721999444) +zone = ('hiz025', 0.0061476884879243347) + +[fips1513600] +centroid = (0.3532378679895406, -2.7197561203337721) +description = Hawi CDP, HI +station = ('phsf', 0.0091884074831860077) +zone = ('hiz026', 0.0051025077797060801) + +[fips1513900] +centroid = (0.37386341859803124, -2.7544975972264201) +description = Heeia CDP, HI +station = ('phng', 0.00126236090944376) +zone = ('hiz009', 0.0014062734931716554) + +[fips1514200] +centroid = (0.3722887476402969, -2.7568199323291238) +description = Hickam Housing CDP, HI +station = ('phnl', 8.2854043450894402e-05) +zone = ('hiz005', 8.8002591964264881e-05) + +[fips1514650] +centroid = (0.34369786339155461, -2.7067351961690238) +description = Hilo CDP, HI +station = ('phto', 0.00070727801518435734) +zone = ('hiz025', 0.0036716025774147171) + +[fips1515700] +centroid = (0.34254681874986437, -2.7211488756235713) +description = Holualoa CDP, HI +station = ('phko', 0.0029571612505449297) +zone = ('hiz023', 0.001654201805559118) + +[fips1516000] +centroid = (0.34171349384520711, -2.7210027915651791) +description = Honalo CDP, HI +station = ('phko', 0.0036330825304083528) +zone = ('hiz023', 0.00083563042530705018) + +[fips1516160] +centroid = (0.33985950039398366, -2.7199469546341848) +description = Honaunau-Napoopoo CDP, HI +station = ('phko', 0.005698764624971148) +zone = ('hiz023', 0.0012689246521571586) + +[fips1516450] +centroid = (0.35036847688609191, -2.7133884261842112) +description = Honokaa CDP, HI +station = ('phsf', 0.005268950396570991) +zone = ('hiz026', 0.0053575080784774801) + +[fips1517450] +centroid = (0.34679866770052531, -2.7071789810379281) +description = Honomu CDP, HI +station = ('phto', 0.0028530417128693488) +zone = ('hiz025', 0.0034229956304273395) + +[fips1519100] +centroid = (0.37214011540119707, -2.7572429128733447) +description = Iroquois Point CDP, HI +station = ('phnl', 0.00050164644800161911) +zone = ('hiz005', 0.00050113557791351163) + +[fips1519550] +centroid = (0.3759987940312613, -2.7550105844001664) +description = Kaaawa CDP, HI +station = ('phng', 0.002303313104563403) +zone = ('hiz008', 0.0011956565814969025) + +[fips1520000] +centroid = (0.36531741391564099, -2.7346872200983658) +description = Kaanapali CDP, HI +station = ('phjh', 0.001722091182242145) +zone = ('hiz018', 0.0009695488611759979) + +[fips1521200] +centroid = (0.37448417985308807, -2.7548650064872575) +description = Kahaluu CDP, HI +station = ('phng', 0.0015008107495564165) +zone = ('hiz008', 0.0012115449050934621) + +[fips1521230] +centroid = (0.3416147082095442, -2.7219679760948248) +description = Kahaluu-Keauhou CDP, HI +station = ('phko', 0.0031852064032367026) +zone = ('hiz023', 0.0014635093374292232) + +[fips1522250] +centroid = (0.37837022524582359, -2.7566256771833766) +description = Kahuku CDP, HI +station = ('phhi', 0.0037165906076150616) +zone = ('hiz008', 0.0032628091107371848) + +[fips1522700] +centroid = (0.36427951896935756, -2.7307658143349851) +description = Kahului CDP, HI +station = ('phog', 0.00067315047703184227) +zone = ('hiz019', 0.00058149256247225472) + +[fips1523000] +centroid = (0.34326215939708676, -2.7212377128824974) +description = Kailua CDP, HI +station = ('phko', 0.0024920563449351884) +zone = ('hiz023', 0.0023620049502216215) + +[fips1523150] +centroid = (0.37344431268474987, -2.7530090408139789) +description = Kailua CDP, HI +station = ('phng', 0.00095704097409271083) +zone = ('hiz009', 0.00032216791960876928) + +[fips1524850] +centroid = (0.37212927690654218, -2.7590375302234151) +description = Kalaeloa CDP, HI +station = ('phjr', 0.00025062781365724348) +zone = ('hiz005', 0.0021368433401805476) + +[fips1524950] +centroid = (0.38252382961288972, -2.7841770607829237) +description = Kalaheo CDP, HI +station = ('phli', 0.0032600851643055134) +zone = ('hiz003', 0.0029080056183529426) + +[fips1525400] +centroid = (0.34482963959830287, -2.7227349435813206) +description = Kalaoa CDP, HI +station = ('phko', 0.00090377120127814459) +zone = ('hiz023', 0.0043524533019527883) + +[fips1526750] +centroid = (0.38776994027853429, -2.7829129886188748) +description = Kalihiwai CDP, HI +station = ('phli', 0.0044970784620715736) +zone = ('hiz004', 0.0025998122458103139) + +[fips1528250] +centroid = (0.3736595466881058, -2.7539378352287205) +description = Kaneohe CDP, HI +station = ('phng', 0.00095445182406654421) +zone = ('hiz009', 0.00085638848320002603) + +[fips1528400] +centroid = (0.37429367716523287, -2.7532815739766781) +description = Kaneohe Station CDP, HI +station = ('phng', 8.2701311746978702e-05) +zone = ('hiz009', 0.001130132143791651) + +[fips1528850] +centroid = (0.38551221726473944, -2.7812156733746027) +description = Kapaa CDP, HI +station = ('phli', 0.00185520185215956) +zone = ('hiz002', 0.0013391220380769267) + +[fips1529000] +centroid = (0.35297502140419029, -2.7193670340836253) +description = Kapaau CDP, HI +station = ('phsf', 0.0087798688859064312) +zone = ('hiz026', 0.0047789091273699024) + +[fips1529725] +centroid = (0.36645662522500272, -2.7339668703561903) +description = Kapalua CDP, HI +station = ('phjh', 0.0003994701290563321) +zone = ('hiz017', 0.0017467114918347587) + +[fips1530300] +centroid = (0.3724586728962711, -2.7587803385048413) +description = Kapolei CDP, HI +station = ('phjr', 0.00041266639971271308) +zone = ('hiz005', 0.0018882340079727153) + +[fips1530650] +centroid = (0.38253716392837495, -2.7860214200166764) +description = Kaumakani CDP, HI +station = ('phbk', 0.0032324623824540647) +zone = ('hiz003', 0.001798910397685094) + +[fips1531100] +centroid = (0.36808016540179295, -2.7401749541456568) +description = Kaunakakai CDP, HI +station = ('phmk', 0.0019348256540664692) +zone = ('hiz013', 0.0018997765934472073) + +[fips1532700] +centroid = (0.37873754724019826, -2.757729702655018) +description = Kawela Bay CDP, HI +station = ('phhi', 0.0038080528038471405) +zone = ('hiz007', 0.0028232794450754814) + +[fips1532900] +centroid = (0.3423562287955465, -2.7059097252460003) +description = Keaau CDP, HI +station = ('phto', 0.0017770046853294698) +zone = ('hiz025', 0.0049932707032214613) + +[fips1533950] +centroid = (0.34083805414569929, -2.7210252888592374) +description = Kealakekua CDP, HI +station = ('phko', 0.0043114941919355394) +zone = ('hiz023', 0.00045844860670302796) + +[fips1535600] +centroid = (0.38340572703062992, -2.7875433645777079) +description = Kekaha CDP, HI +station = ('phbk', 0.0016002627055726102) +zone = ('hiz003', 0.0011033376539165412) + +[fips1536050] +centroid = (0.36165026771769071, -2.7290394917185452) +description = Keokea CDP, HI +station = ('phog', 0.0033307764991491826) +zone = ('hiz021', 0.00064259195069905775) + +[fips1536500] +centroid = (0.36243659090559172, -2.7303095503619286) +description = Kihei CDP, HI +station = ('phog', 0.0023374240873149182) +zone = ('hiz019', 0.0013795033657847443) + +[fips1536650] +centroid = (0.38766909515435405, -2.7820564857417507) +description = Kilauea CDP, HI +station = ('phli', 0.0041311154873885708) +zone = ('hiz002', 0.0026340346785946743) + +[fips1539200] +centroid = (0.38227876793261722, -2.7831207875196169) +description = Koloa CDP, HI +station = ('phli', 0.0024988788331389961) +zone = ('hiz002', 0.0028458757362574499) + +[fips1539400] +centroid = (0.37241496985180117, -2.7596907895091443) +description = Ko Olina CDP, HI +station = ('phjr', 0.00092194814817813677) +zone = ('hiz011', 0.0022889887440156317) + +[fips1539500] +centroid = (0.36922508393780867, -2.7412881949557488) +description = Kualapuu CDP, HI +station = ('phmk', 0.00058862001881294891) +zone = ('hiz013', 0.00073139459629901452) + +[fips1541000] +centroid = (0.35118338856714054, -2.7150781317929447) +description = Kukuihaele CDP, HI +station = ('phsf', 0.0059026585227833573) +zone = ('hiz026', 0.0044407034006584915) + +[fips1541600] +centroid = (0.36247102625173355, -2.7285524750440686) +description = Kula CDP, HI +station = ('phog', 0.0028106573307985112) +zone = ('hiz021', 0.0013362884123887199) + +[fips1542800] +centroid = (0.3417934648315335, -2.7065191418609191) +description = Kurtistown CDP, HI +station = ('phto', 0.0023555256885741623) +zone = ('hiz025', 0.0048873551452188755) + +[fips1542950] +centroid = (0.36453030532957659, -2.7343409293214775) +description = Lahaina CDP, HI +station = ('phjh', 0.0023418032847031729) +zone = ('hiz018', 0.00036386707146373053) + +[fips1543250] +centroid = (0.37778602863859595, -2.7562737838995894) +description = Laie CDP, HI +station = ('phhi', 0.0033512697214695118) +zone = ('hiz008', 0.0026338958975048693) + +[fips1543700] +centroid = (0.36351581524856241, -2.7386865548128481) +description = Lanai City CDP, HI +station = ('phny', 0.0009464295664070565) +zone = ('hiz015', 0.00017982435255312648) + +[fips1544075] +centroid = (0.36397710576986447, -2.7339271990222924) +description = Launiupoko CDP, HI +station = ('phjh', 0.0028368548914500021) +zone = ('hiz018', 0.00064578164103319278) + +[fips1544150] +centroid = (0.34864979881177549, -2.7094046947132417) +description = Laupahoehoe CDP, HI +station = ('phto', 0.0054756245206311182) +zone = ('hiz025', 0.0036548395029254296) + +[fips1544450] +centroid = (0.38257426962827235, -2.7838119553566991) +description = Lawai CDP, HI +station = ('phli', 0.0029264941830513193) +zone = ('hiz002', 0.0027530762516621786) + +[fips1544562] +centroid = (0.33974312183946065, -2.7037897959766504) +description = Leilani Estates CDP, HI +station = ('phto', 0.0049027477552078232) +zone = ('hiz025', 0.0081718360648324034) + +[fips1545200] +centroid = (0.38347218916854586, -2.7812340167850409) +description = Lihue CDP, HI +station = ('phli', 0.00038059195851543104) +zone = ('hiz002', 0.0020378691215289877) + +[fips1546400] +centroid = (0.36306925530614714, -2.7313591041076157) +description = Maalaea CDP, HI +station = ('phog', 0.0019820777610744605) +zone = ('hiz019', 0.0011703569642545983) + +[fips1547050] +centroid = (0.36572735685034946, -2.7341852110456148) +description = Mahinahina CDP, HI +station = ('phjh', 0.0011508130530002885) +zone = ('hiz018', 0.0011245283322424812) + +[fips1547300] +centroid = (0.37375163025944103, -2.76067162964218) +description = Maili CDP, HI +station = ('phjr', 0.0024495061621744073) +zone = ('hiz006', 0.00089664438956034214) + +[fips1547450] +centroid = (0.37468161149807366, -2.7613969186661387) +description = Makaha CDP, HI +station = ('phhi', 0.0029856476746831897) +zone = ('hiz006', 0.00056969712657662091) + +[fips1547560] +centroid = (0.37499386835454795, -2.7608841060253178) +description = Makaha Valley CDP, HI +station = ('phhi', 0.0024960544061492325) +zone = ('hiz006', 0.00036355349222693024) + +[fips1547600] +centroid = (0.372785014559809, -2.7590379316491433) +description = Makakilo CDP, HI +station = ('phjr', 0.00077598943290410301) +zone = ('hiz011', 0.0020827903340330505) + +[fips1548050] +centroid = (0.36387308414644565, -2.7282780045658996) +description = Makawao CDP, HI +station = ('phog', 0.0020734038827137742) +zone = ('hiz019', 0.0019775020662097316) + +[fips1548350] +centroid = (0.35995743796959634, -2.7301944982576369) +description = Makena CDP, HI +station = ('phog', 0.0048169893785900177) +zone = ('hiz021', 0.0018820401954283744) + +[fips1549425] +centroid = (0.36201575711635081, -2.7384419992780589) +description = Manele CDP, HI +station = ('phny', 0.0011181458055755378) +zone = ('hiz015', 0.001337625690231409) + +[fips1550150] +centroid = (0.36885149621141933, -2.7438707411966319) +description = Maunaloa CDP, HI +station = ('phmk', 0.0018488599776573533) +zone = ('hiz013', 0.0017450874884844512) + +[fips1550750] +centroid = (0.37292057428281139, -2.7536292784702603) +description = Maunawili CDP, HI +station = ('phng', 0.0014933506386959566) +zone = ('hiz009', 0.00048133423936588452) + +[fips1551000] +centroid = (0.37482046989336237, -2.757528518552141) +description = Mililani Mauka CDP, HI +station = ('phhi', 0.00064095822339685577) +zone = ('hiz010', 0.00054525296455286572) + +[fips1551050] +centroid = (0.37430376516830943, -2.7578671996934903) +description = Mililani Town CDP, HI +station = ('phhi', 0.00072184248149516524) +zone = ('hiz010', 0.0006998504715034369) + +[fips1552550] +centroid = (0.37659718016530752, -2.7603928307474663) +description = Mokuleia CDP, HI +station = ('phhi', 0.0026173243005139352) +zone = ('hiz007', 0.00059445523880327579) + +[fips1553300] +centroid = (0.3410026037875773, -2.7085458181883348) +description = Mountain View CDP, HI +station = ('phto', 0.0038584512130594639) +zone = ('hiz025', 0.0044338737065603168) + +[fips1553600] +centroid = (0.33283126893571269, -2.7152976942128451) +description = Naalehu CDP, HI +station = ('phsf', 0.01245988469538388) +zone = ('hiz024', 0.0029415760589583144) + +[fips1553900] +centroid = (0.37332332646100164, -2.7603250421593191) +description = Nanakuli CDP, HI +station = ('phjr', 0.0019214791076210239) +zone = ('hiz006', 0.001386711856888457) + +[fips1553975] +centroid = (0.34041327591234888, -2.7037190752353593) +description = Nanawale Estates CDP, HI +station = ('phto', 0.0043492576339490083) +zone = ('hiz025', 0.0078014281057323231) + +[fips1554100] +centroid = (0.36605298292889404, -2.7343209627548348) +description = Napili-Honokowai CDP, HI +station = ('phjh', 0.00091664158542499098) +zone = ('hiz018', 0.0014693333609252293) + +[fips1556685] +centroid = (0.37201970513610205, -2.7580868319265615) +description = Ocean Pointe CDP, HI +station = ('phjr', 0.000649794681757748) +zone = ('hiz005', 0.0012836872375750806) + +[fips1557350] +centroid = (0.36345788777068871, -2.727766483468725) +description = Olinda CDP, HI +station = ('phog', 0.0026895766450912369) +zone = ('hiz020', 0.001910396919771688) + +[fips1557650] +centroid = (0.36351153919189505, -2.7335217590370542) +description = Olowalu CDP, HI +station = ('phog', 0.0032844935347377466) +zone = ('hiz018', 0.0011848442566644659) + +[fips1557800] +centroid = (0.38286549526726016, -2.7835511333532814) +description = Omao CDP, HI +station = ('phli', 0.002598346678470493) +zone = ('hiz002', 0.0023899515730128095) + +[fips1558775] +centroid = (0.34133362293351055, -2.7055085962240146) +description = Orchidlands Estates CDP, HI +station = ('phto', 0.0028484972812337609) +zone = ('hiz025', 0.005907181979740864) + +[fips1559300] +centroid = (0.34967453397549891, -2.7117805765173961) +description = Paauilo CDP, HI +station = ('phsf', 0.0052588423714662238) +zone = ('hiz025', 0.0047689424484188064) + +[fips1559750] +centroid = (0.33509332036605244, -2.7136255466163868) +description = Pahala CDP, HI +station = ('phsf', 0.010257172067507366) +zone = ('hiz024', 0.00019852506326324443) + +[fips1559900] +centroid = (0.34027127592440665, -2.704308368204003) +description = Pahoa CDP, HI +station = ('phto', 0.0042157892526419379) +zone = ('hiz025', 0.007456719405879276) + +[fips1560200] +centroid = (0.36493101547254198, -2.7291583311873135) +description = Paia CDP, HI +station = ('phog', 0.0010565390024685135) +zone = ('hiz019', 0.0016059195763384597) + +[fips1560350] +centroid = (0.38310834037938263, -2.7862346992512701) +description = Pakala Village CDP, HI +station = ('phbk', 0.0027403597975153835) +zone = ('hiz003', 0.0011951957268777401) + +[fips1561550] +centroid = (0.34542750213357348, -2.7068966042182478) +description = Papaikou CDP, HI +station = ('phto', 0.0014913332035593478) +zone = ('hiz025', 0.003255770906690038) + +[fips1561700] +centroid = (0.34489215729210926, -2.7068899894203828) +description = Paukaa CDP, HI +station = ('phto', 0.0010501104566436816) +zone = ('hiz025', 0.0032528054471150569) + +[fips1562600] +centroid = (0.3735459955669711, -2.7568681034164788) +description = Pearl City CDP, HI +station = ('phnl', 0.001214289081972494) +zone = ('hiz005', 0.0011967562862764225) + +[fips1563650] +centroid = (0.346125860727174, -2.7071131646718354) +description = Pepeekeo CDP, HI +station = ('phto', 0.0022070838083263467) +zone = ('hiz025', 0.003203282508079025) + +[fips1564550] +centroid = (0.3820794164254544, -2.7830860903740873) +description = Poipu CDP, HI +station = ('phli', 0.0025906922576391204) +zone = ('hiz002', 0.0030372518043760592) + +[fips1565075] +centroid = (0.3878065921928262, -2.7834763110882483) +description = Princeville CDP, HI +station = ('phli', 0.0047699489656060573) +zone = ('hiz004', 0.0023685490869982894) + +[fips1565150] +centroid = (0.3480017406072175, -2.7204386138844723) +description = Puako CDP, HI +station = ('phko', 0.0046535867937958992) +zone = ('hiz026', 0.0017230420505086814) + +[fips1565750] +centroid = (0.38330191484672133, -2.7819103842300663) +description = Puhi CDP, HI +station = ('phli', 0.0010184825519919877) +zone = ('hiz002', 0.0018851441237493676) + +[fips1565900] +centroid = (0.36362262939878448, -2.7286922061039829) +description = Pukalani CDP, HI +station = ('phog', 0.0018754666320408952) +zone = ('hiz019', 0.0016010692328479563) + +[fips1566500] +centroid = (0.37667495203677642, -2.7556927812448935) +description = Punaluu CDP, HI +station = ('phhi', 0.0028994069349898587) +zone = ('hiz008', 0.0015213686755683039) + +[fips1566800] +centroid = (0.37790205812726857, -2.7586303449089247) +description = Pupukea CDP, HI +station = ('phhi', 0.0029739577702577601) +zone = ('hiz007', 0.0016439005901194481) + +[fips1568815] +centroid = (0.37359189772629853, -2.7581751630400051) +description = Royal Kunia CDP, HI +station = ('phhi', 0.0013632320224853309) +zone = ('hiz010', 0.0013820725325018796) + +[fips1569050] +centroid = (0.37513143520619019, -2.7587062492780943) +description = Schofield Barracks CDP, HI +station = ('phhi', 0.00050131582087419328) +zone = ('hiz010', 0.00059392058469497381) + +[fips1570700] +centroid = (0.36778246459128022, -2.7372864691401908) +description = Ualapu'e CDP, HI +station = ('phjh', 0.0034253015731015002) +zone = ('hiz012', 0.0010831210271449482) + +[fips1571550] +centroid = (0.37220633319301777, -2.7549204555975932) +description = Urban Honolulu CDP, HI +station = ('phnl', 0.0017069495419591635) +zone = ('hiz005', 0.0017164160603128065) + +[fips1572350] +centroid = (0.33995456847833977, -2.7096597745834203) +description = Volcano CDP, HI +station = ('phto', 0.0053287795176150312) +zone = ('hiz025', 0.0051872720279461521) + +[fips1572650] +centroid = (0.37524310137173283, -2.7579622328712614) +description = Wahiawa CDP, HI +station = ('phhi', 0.00036445745944549776) +zone = ('hiz010', 0.00029677732405260199) + +[fips1574000] +centroid = (0.37642292649278841, -2.7597237762320068) +description = Waialua CDP, HI +station = ('phhi', 0.0020393992819784288) +zone = ('hiz007', 0.00021236267359281554) + +[fips1574450] +centroid = (0.37440152105971358, -2.7608029482150998) +description = Waianae CDP, HI +station = ('phhi', 0.0024829649329627724) +zone = ('hiz006', 0.00024088630076367728) + +[fips1575510] +centroid = (0.36517646112524993, -2.7315659256239773) +description = Waihee-Waiehu CDP, HI +station = ('phog', 0.0012698119250250154) +zone = ('hiz017', 0.0011266220619798571) + +[fips1575800] +centroid = (0.37506481598864155, -2.7552522426883974) +description = Waikane CDP, HI +station = ('phng', 0.0019815354735952398) +zone = ('hiz008', 0.00064654876455299962) + +[fips1575950] +centroid = (0.36365952565917159, -2.7319876320778436) +description = Waikapu CDP, HI +station = ('phog', 0.0019486919675377854) +zone = ('hiz019', 0.0014981978945306763) + +[fips1576250] +centroid = (0.37354500072929742, -2.7577215519674114) +description = Waikele CDP, HI +station = ('phhi', 0.00147911973115738) +zone = ('hiz010', 0.0014677261410673669) + +[fips1576600] +centroid = (0.34781237238337609, -2.7196271579553426) +description = Waikoloa Village CDP, HI +station = ('phko', 0.0050433926199163178) +zone = ('hiz026', 0.0010381967614404831) + +[fips1576925] +centroid = (0.36097513945643428, -2.7303114527708137) +description = Wailea CDP, HI +station = ('phog', 0.0037988129360448791) +zone = ('hiz021', 0.0015842693219482297) + +[fips1577000] +centroid = (0.38491892749210904, -2.7809891121844013) +description = Wailua CDP, HI +station = ('phli', 0.0012407000507848875) +zone = ('hiz002', 0.0014866568514531977) + +[fips1577225] +centroid = (0.38517959241589439, -2.7817302138913829) +description = Wailua Homesteads CDP, HI +station = ('phli', 0.0016878882912609741) +zone = ('hiz002', 0.00079708904282412159) + +[fips1577450] +centroid = (0.36452016496662254, -2.7315035824630955) +description = Wailuku CDP, HI +station = ('phog', 0.0011739202166746766) +zone = ('hiz019', 0.0012552305984629883) + +[fips1577750] +centroid = (0.37331733998166727, -2.7564572529105593) +description = Waimalu CDP, HI +station = ('phnl', 0.0010170259247991923) +zone = ('hiz005', 0.0010029973088167075) + +[fips1578050] +centroid = (0.37247726065280484, -2.7529556860987459) +description = Waimanalo CDP, HI +station = ('phng', 0.0019164948282347782) +zone = ('hiz009', 0.00072223492571500442) + +[fips1578200] +centroid = (0.37227757753308421, -2.7522790568543325) +description = Waimanalo Beach CDP, HI +station = ('phng', 0.0022847972902820869) +zone = ('hiz009', 0.0012262466891106868) + +[fips1578500] +centroid = (0.34924609055071937, -2.716177217982803) +description = Waimea CDP, HI +station = ('phsf', 0.0041509839254603737) +zone = ('hiz026', 0.0025073224438851879) + +[fips1578800] +centroid = (0.38338768032616433, -2.7867565352443235) +description = Waimea CDP, HI +station = ('phbk', 0.0021819266869567014) +zone = ('hiz003', 0.00082421708341331057) + +[fips1578950] +centroid = (0.34460679595940819, -2.7069778143883432) +description = Wainaku CDP, HI +station = ('phto', 0.00093198713781382546) +zone = ('hiz025', 0.0032020845165983388) + +[fips1579250] +centroid = (0.38732589361024189, -2.784616028543093) +description = Wainiha CDP, HI +station = ('phbk', 0.0047240525015303011) +zone = ('hiz004', 0.0016722404151955034) + +[fips1579550] +centroid = (0.33286088717311901, -2.7159810604281711) +description = Waiohinu CDP, HI +station = ('phsf', 0.012468347565621186) +zone = ('hiz024', 0.0033186439040794541) + +[fips1579700] +centroid = (0.37325068585753363, -2.7578001266903365) +description = Waipahu CDP, HI +station = ('phnl', 0.0013401237347391635) +zone = ('hiz005', 0.0013226898930955714) + +[fips1579860] +centroid = (0.37375046088884223, -2.757560074105017) +description = Waipio CDP, HI +station = ('phhi', 0.0013444846678531369) +zone = ('hiz010', 0.0013176537758014138) + +[fips1580000] +centroid = (0.37470225874312479, -2.7579224044577311) +description = Waipio Acres CDP, HI +station = ('phhi', 0.00036265800924295967) +zone = ('hiz010', 0.00031206667295377067) + +[fips1580470] +centroid = (0.37282438918773397, -2.75804831250997) +description = West Loch Estate CDP, HI +station = ('phjr', 0.0010368885456192186) +zone = ('hiz005', 0.0012921322692390699) + +[fips1580600] +centroid = (0.37481905617666822, -2.7582347136740832) +description = Wheeler AFB CDP, HI +station = ('phhi', 0.0001392149819863197) +zone = ('hiz010', 0.00020271406582418654) + +[fips1580900] +centroid = (0.37546016797080334, -2.7582121465668545) +description = Whitmore Village CDP, HI +station = ('phhi', 0.00050535528500479253) +zone = ('hiz010', 0.00050113856317577689) + +[fips16001] +centroid = (0.75830822739883608, -2.0288484943896776) +description = Ada County, ID +station = ('kboi', 0.0020783247705700521) +zone = ('idz014', 0.0077109089450916306) + +[fips1600100] +centroid = (0.74951550297338387, -1.9694012187099341) +description = Aberdeen city, ID +station = ('kpih', 0.0030835594317036529) +zone = ('idz021', 0.0024380178247483371) + +[fips1600190345] +centroid = (0.76119222690812394, -2.0301143816961491) +description = Boise City CCD, ID +station = ('kboi', 0.0013323250807488276) +zone = ('idz012', 0.0057096729888042944) + +[fips1600190368] +centroid = (0.76205387850654105, -2.0268906363946679) +description = Boise Hills CCD, ID +station = ('kboi', 0.0021039208956762936) +zone = ('idz012', 0.0074350193044220823) + +[fips1600190805] +centroid = (0.76340596762476853, -2.0312771374971201) +description = Eagle CCD, ID +station = ('kman', 0.0032799086308402197) +zone = ('idz012', 0.004009037173143032) + +[fips1600191863] +centroid = (0.75936813094698719, -2.0315359698251911) +description = Kuna CCD, ID +station = ('kman', 0.0020248012619848875) +zone = ('idz012', 0.0062402661725120198) + +[fips1600192668] +centroid = (0.75621524601313694, -2.0281460342723348) +description = Orchard CCD, ID +station = ('kboi', 0.0041828439955772) +zone = ('idz014', 0.0058341596227632318) + +[fips1600280] +centroid = (0.74468635146604079, -1.9826241647356009) +description = Acequia city, ID +station = ('kbyi', 0.0030006249010800976) +zone = ('idz017', 0.0056628662472230354) + +[fips16003] +centroid = (0.78338375673467397, -2.0321195381138875) +description = Adams County, ID +station = ('kmyl', 0.0043102018703837265) +zone = ('idz011', 0.0069129734755447392) + +[fips1600390667] +centroid = (0.78251053360331613, -2.0334577867711467) +description = Council CCD, ID +station = ('kmyl', 0.0053290822294383908) +zone = ('idz033', 0.0063202827793866533) + +[fips1600392484] +centroid = (0.78574691508858174, -2.0301348893148599) +description = New Meadows CCD, ID +station = ('kmyl', 0.0037551491944107901) +zone = ('idz011', 0.0067792713950222882) + +[fips16005] +centroid = (0.74513235290309543, -1.958765321874621) +description = Bannock County, ID +station = ('kpih', 0.0061496061995673455) +zone = ('idz021', 0.0078739205183386111) + +[fips1600591058] +centroid = (0.75013807937086274, -1.9609863580675386) +description = Fort Hall CCD, ID +station = ('kpih', 0.0033029599292571576) +zone = ('idz021', 0.0040225243010728294) + +[fips1600591702] +centroid = (0.74760857368594735, -1.9597891494671333) +description = Inkom CCD, ID +station = ('kpih', 0.004242821608998271) +zone = ('idz021', 0.0057377559836930686) + +[fips1600592852] +centroid = (0.74845411589536859, -1.9624654547954339) +description = Pocatello CCD, ID +station = ('kpih', 0.0021149615335438114) +zone = ('idz021', 0.0036398421755194535) + +[fips1600593289] +centroid = (0.74257446816454253, -1.9575801385927616) +description = South Bannock CCD, ID +station = ('kpih', 0.0085690758067041399) +zone = ('idz024', 0.0078447376733545796) + +[fips16007] +centroid = (0.73802701279847127, -1.9430304630828985) +description = Bear Lake County, ID +station = ('ku78', 0.0071589680266988028) +zone = ('idz025', 0.0013030943538157945) + +[fips1600791219] +centroid = (0.74193876689108873, -1.9453423960232603) +description = Georgetown CCD, ID +station = ('ku78', 0.0029137396898956825) +zone = ('idz025', 0.0042143120834992219) + +[fips1600792208] +centroid = (0.73750104037509034, -1.940841156975782) +description = Montpelier CCD, ID +station = ('ku78', 0.0084542127799763396) +zone = ('idz025', 0.00290368586051755) + +[fips1600792691] +centroid = (0.73650903013484181, -1.9449960005266171) +description = Paris CCD, ID +station = ('ku78', 0.0080873519973597499) +zone = ('idz025', 0.0012514175591181731) + +[fips16009] +centroid = (0.82411743764160905, -2.0356393087097997) +description = Benewah County, ID +station = ('kcoe', 0.0098088487721778774) +zone = ('idz003', 0.0058036973526300762) + +[fips1600992829] +centroid = (0.8255796570356374, -2.0397797532943058) +description = Plummer CCD, ID +station = ('kcoe', 0.0081309812817877743) +zone = ('idz002', 0.0052391712075974721) + +[fips1600993151] +centroid = (0.82427212617321333, -2.0339219221791298) +description = St. Maries CCD, ID +station = ('kcoe', 0.009981672737307443) +zone = ('idz003', 0.0065906243514214768) + +[fips1600993450] +centroid = (0.82302463463705788, -2.0399435000847279) +description = Tensed CCD, ID +station = ('kpuw', 0.0076230768902089061) +zone = ('idz003', 0.0039277032453880105) + +[fips1601000] +centroid = (0.74018675302805925, -1.9823451738546696) +description = Albion city, ID +station = ('kbyi', 0.0034320937701853445) +zone = ('idz022', 0.0060832106802599165) + +[fips16011] +centroid = (0.75426772036729917, -1.9617362213273657) +description = Bingham County, ID +station = ('kpih', 0.0058235640056239282) +zone = ('idz021', 0.0049981026518446312) + +[fips1601190023] +centroid = (0.75026768752111594, -1.9683572500178539) +description = Aberdeen CCD, ID +station = ('kpih', 0.0025918071140705141) +zone = ('idz021', 0.0014480471968963636) + +[fips1601190069] +centroid = (0.7538261346132521, -1.9525427693056556) +description = Alridge CCD, ID +station = ('kida', 0.0061944001278530442) +zone = ('idz023', 0.0054263148062805066) + +[fips1601190207] +centroid = (0.75616957074661229, -1.9689904380171848) +description = Atomic City CCD, ID +station = ('kpih', 0.0076395278697629658) +zone = ('idz021', 0.0058350370227922823) + +[fips1601190276] +centroid = (0.75404414369011863, -1.9599120031931812) +description = Blackfoot CCD, ID +station = ('kida', 0.0061836738793924597) +zone = ('idz021', 0.0058598848559987963) + +[fips1601191012] +centroid = (0.75570964158212661, -1.9576099662696782) +description = Firth CCD, ID +station = ('kida', 0.0039901633325694309) +zone = ('idz020', 0.0067283394841085621) + +[fips1601191081] +centroid = (0.75298987755545144, -1.9585723757258127) +description = Fort Hall CCD, ID +station = ('kpih', 0.0062757715090601017) +zone = ('idz021', 0.006211667164703341) + +[fips1601192254] +centroid = (0.75351399992982537, -1.963234900649468) +description = Moreland CCD, ID +station = ('kpih', 0.0047107492499576711) +zone = ('idz021', 0.0037094280800312623) + +[fips1601193220] +centroid = (0.75707380837877791, -1.956861970512151) +description = Shelley CCD, ID +station = ('kida', 0.0025271035339930656) +zone = ('idz020', 0.0060774727093153083) + +[fips16013] +centroid = (0.75737658809741404, -1.9888950105649692) +description = Blaine County, ID +station = ('ksun', 0.0047402659302172171) +zone = ('idz031', 0.0055396935677049265) + +[fips1601390529] +centroid = (0.75670058717153155, -1.9874350077390908) +description = Carey CCD, ID +station = ('ksun', 0.0059849012871961123) +zone = ('idz031', 0.0067908673291252938) + +[fips1601391380] +centroid = (0.75827813792253163, -1.9929068767434808) +description = Hailey-Bellevue CCD, ID +station = ('ksun', 0.0017319681328752091) +zone = ('idz031', 0.0029399527058706506) + +[fips1601391817] +centroid = (0.76313959547432908, -1.9980742730598604) +description = Ketchum CCD, ID +station = ('ksun', 0.0045410802403649921) +zone = ('idz031', 0.003269417980668972) + +[fips16015] +centroid = (0.76772277773018871, -2.0196096812607078) +description = Boise County, ID +station = ('kboi', 0.0098253904504653801) +zone = ('idz013', 0.0051205353784089325) + +[fips1601591173] +centroid = (0.76981186703165583, -2.016118411891481) +description = Garden Valley CCD, ID +station = ('ksnt', 0.0074836012403194001) +zone = ('idz013', 0.0062175086320608221) + +[fips1601591541] +centroid = (0.76640617115565424, -2.026858382710091) +description = Horseshoe Bend CCD, ID +station = ('kboi', 0.0061625508789416358) +zone = ('idz012', 0.0073502460363481523) + +[fips1601591633] +centroid = (0.76431873991697652, -2.0216713863462115) +description = Idaho City CCD, ID +station = ('kboi', 0.0064034347406985862) +zone = ('idz013', 0.0046087373701706969) + +[fips16017] +centroid = (0.84321240430927069, -2.0350005007502774) +description = Bonner County, ID +station = ('kszt', 0.00048571664086077604) +zone = ('idz001', 0.0033001539383137458) + +[fips1601790299] +centroid = (0.83977293631224303, -2.036157374791669) +description = Blanchard-Glengary CCD, ID +station = ('kszt', 0.0034285008647525674) +zone = ('idz001', 0.0068178801294179539) + +[fips1601790598] +centroid = (0.84047705449237509, -2.0283873085881305) +description = Clark Fork CCD, ID +station = ('kszt', 0.0047005543012465408) +zone = ('idz001', 0.0071998814937990988) + +[fips1601792944] +centroid = (0.84599863047386192, -2.0400349727908251) +description = Priest River CCD, ID +station = ('kszt', 0.0048281505667281347) +zone = ('idz001', 0.0037954319123298837) + +[fips1601793197] +centroid = (0.84432157850220568, -2.0325996956444041) +description = Sandpoint CCD, ID +station = ('kszt', 0.0017750758114797782) +zone = ('idz001', 0.0024568974972140208) + +[fips16019] +centroid = (0.7573886134159602, -1.948169288359423) +description = Bonneville County, ID +station = ('kida', 0.006020962741168057) +zone = ('idz023', 0.0082001694076262194) + +[fips1601900] +centroid = (0.74669777361579415, -1.9696778708496678) +description = American Falls city, ID +station = ('kpih', 0.0040068552303320383) +zone = ('idz021', 0.0045980532274513038) + +[fips1601990] +centroid = (0.75880246973641585, -1.9539645494209152) +description = Ammon city, ID +station = ('kida', 0.001592784084533025) +zone = ('idz020', 0.0070188711939124602) + +[fips1601991656] +centroid = (0.75876843581600195, -1.9540708399723616) +description = Idaho Falls CCD, ID +station = ('kida', 0.0015401610152646649) +zone = ('idz020', 0.0069578194860866992) + +[fips1601991679] +centroid = (0.75976180741306698, -1.9601831051858933) +description = Idaho Falls West CCD, ID +station = ('kida', 0.0030925332350402353) +zone = ('idz020', 0.0025177224819701483) + +[fips1601993404] +centroid = (0.75634775140994837, -1.9432768163068177) +description = Swan Valley CCD, ID +station = ('kdij', 0.0076924560763631635) +zone = ('idz023', 0.0081623735643116587) + +[fips1601993588] +centroid = (0.76104972077469868, -1.953613127376026) +description = Ucon CCD, ID +station = ('kida', 0.0022798757887957811) +zone = ('idz020', 0.0068692003804734919) + +[fips16021] +centroid = (0.85125057053920816, -2.0337382611819423) +description = Boundary County, ID +station = ('k65s', 0.0026918453902034659) +zone = ('idz001', 0.0047833217666372174) + +[fips1602190391] +centroid = (0.8518813674374639, -2.0309652820663739) +description = Bonners Ferry CCD, ID +station = ('k65s', 0.0015757382457680636) +zone = ('idz001', 0.0058429933917949744) + +[fips1602192323] +centroid = (0.85275186785518864, -2.0278092555398701) +description = Moyie Springs CCD, ID +station = ('k65s', 0.0026127758555929558) +zone = ('idz001', 0.0076132100273725318) + +[fips1602193285] +centroid = (0.85056928126569209, -2.0344625204616422) +description = South and West Boundary CCD, ID +station = ('k65s', 0.0030642995984276906) +zone = ('idz001', 0.0040852035789085087) + +[fips16023] +centroid = (0.76244882906297484, -1.9753222307440323) +description = Butte County, ID +station = ('kida', 0.014345734080768207) +zone = ('idz020', 0.0089421866532374238) + +[fips1602390138] +centroid = (0.75990141629993402, -1.9768763766297632) +description = Arco CCD, ID +station = ('kpih', 0.013780724783091561) +zone = ('idz032', 0.010928765226263553) + +[fips1602391564] +centroid = (0.76618702761477386, -1.9712619491320704) +description = Howe CCD, ID +station = ('kida', 0.012937849670720153) +zone = ('idz020', 0.0077669225308512795) + +[fips16025] +centroid = (0.75857936429813344, -2.0037152470154762) +description = Camas County, ID +station = ('ksun', 0.0064199237016258643) +zone = ('idz028', 0.0028398025894420201) + +[fips1602590828] +centroid = (0.75816910720415953, -2.0014050943109516) +description = East Camas CCD, ID +station = ('ksun', 0.004828107489127033) +zone = ('idz028', 0.0030526114088230603) + +[fips1602593749] +centroid = (0.75838289258423641, -2.0061490737507972) +description = West Camas CCD, ID +station = ('ksun', 0.0081974484748028008) +zone = ('idz028', 0.0030815854535894433) + +[fips16027] +centroid = (0.76136586971540487, -2.0369480613027) +description = Canyon County, ID +station = ('keul', 0.000966744083248073) +zone = ('idz012', 0.0030292046360969015) + +[fips1602790483] +centroid = (0.76182777110194522, -2.0374202077719499) +description = Caldwell CCD, ID +station = ('keul', 0.0013219366778063925) +zone = ('idz012', 0.0026184637149607838) + +[fips1602791610] +centroid = (0.75986373464138346, -2.0376016172944023) +description = Huston CCD, ID +station = ('keul', 0.0022035443386715574) +zone = ('idz012', 0.0045751840992360035) + +[fips1602792093] +centroid = (0.75755534471940322, -2.034862357939982) +description = Melba CCD, ID +station = ('kman', 0.0031945184638403662) +zone = ('idz012', 0.0069553990851646437) + +[fips1602792116] +centroid = (0.76363458830348729, -2.0354607440740282) +description = Middleton CCD, ID +station = ('keul', 0.0020930835747933409) +zone = ('idz012', 0.0011475335957713334) + +[fips1602792438] +centroid = (0.7604246136498044, -2.034485558807769) +description = Nampa CCD, ID +station = ('kman', 0.00060062417818932735) +zone = ('idz012', 0.0042637342428838076) + +[fips1602792622] +centroid = (0.76351950129261081, -2.0382056932018098) +description = Notus CCD, ID +station = ('keul', 0.0027112346778058551) +zone = ('idz012', 0.0014144003352452752) + +[fips1602792714] +centroid = (0.7640590698308648, -2.0413358714020915) +description = Parma CCD, ID +station = ('kono', 0.0042372032968745832) +zone = ('idz012', 0.0033918603094672197) + +[fips1602793841] +centroid = (0.76209948395989568, -2.0403216256671728) +description = Wilder CCD, ID +station = ('keul', 0.0034356345053256358) +zone = ('idz012', 0.0034984232467988323) + +[fips16029] +centroid = (0.74676133850715176, -1.9468130628108684) +description = Caribou County, ID +station = ('ku78', 0.0024308462604276963) +zone = ('idz023', 0.0027894297201189917) + +[fips1602935] +centroid = (0.74853035187709571, -1.9650555059521009) +description = Arbon Valley CDP, ID +station = ('kpih', 0.00052463514426075966) +zone = ('idz021', 0.0023398337239364628) + +[fips1602990253] +centroid = (0.74677264824070466, -1.9535372230068568) +description = Bancroft CCD, ID +station = ('ku78', 0.0050405386900554145) +zone = ('idz023', 0.0043141336586686183) + +[fips1602991104] +centroid = (0.74978683185889894, -1.9552063686370018) +description = Fort Hall CCD, ID +station = ('ku78', 0.0078228897735465371) +zone = ('idz023', 0.004821966669630611) + +[fips1602991288] +centroid = (0.74202413094480368, -1.9506735565833546) +description = Grace CCD, ID +station = ('ku78', 0.0033220392758747312) +zone = ('idz025', 0.0061177995709289388) + +[fips1602993266] +centroid = (0.74644990195542582, -1.9480177414204725) +description = Soda Springs CCD, ID +station = ('ku78', 0.0021021548241896238) +zone = ('idz023', 0.0027878161081960422) + +[fips1602993657] +centroid = (0.7473520626457818, -1.9422652409256542) +description = Wayan CCD, ID +station = ('ku78', 0.0048558983195301211) +zone = ('wyz023', 0.003932919019441164) + +[fips16031] +centroid = (0.73807591692411223, -1.9827899884678331) +description = Cassia County, ID +station = ('kbyi', 0.005012092938890913) +zone = ('idz022', 0.0060084305851559987) + +[fips1603160] +centroid = (0.76152019172786622, -1.9775028625647664) +description = Arco city, ID +station = ('kpih', 0.01534693010860827) +zone = ('idz032', 0.0092661527081682044) + +[fips1603190046] +centroid = (0.73811602459032311, -1.9788558767074975) +description = Albion CCD, ID +station = ('kbyi', 0.0067269892492299614) +zone = ('idz022', 0.003099860641296321) + +[fips1603190460] +centroid = (0.74169389719703394, -1.9861555941309164) +description = Burley CCD, ID +station = ('kbyi', 0.0010278553048918265) +zone = ('idz017', 0.0081879728139827648) + +[fips1603190759] +centroid = (0.74247913828079859, -1.9830913370164824) +description = Declo CCD, ID +station = ('kbyi', 0.0018571529132681585) +zone = ('idz017', 0.0076431555859552344) + +[fips1603192645] +centroid = (0.73696286810023792, -1.9899457336812545) +description = Oakley CCD, ID +station = ('kbyi', 0.0065185335315391998) +zone = ('idz030', 0.0085676244811270005) + +[fips16033] +centroid = (0.77294089331463134, -1.9610714952284509) +description = Clark County, ID +station = ('krxe', 0.010583722528724084) +zone = ('idz019', 0.0070306886144567548) + +[fips1603340] +centroid = (0.74280258269777821, -1.9577599773188872) +description = Arimo city, ID +station = ('kpih', 0.0083100618341065031) +zone = ('idz024', 0.0081054227921568238) + +[fips1603390851] +centroid = (0.77409507954897516, -1.9545818374707604) +description = East Clark CCD, ID +station = ('krxe', 0.0093646720769399137) +zone = ('idz019', 0.0037038769961337975) + +[fips1603393772] +centroid = (0.77224735182976623, -1.9652908112418548) +description = West Clark CCD, ID +station = ('krxe', 0.012388256080157117) +zone = ('idz020', 0.011227743037906761) + +[fips16035] +centroid = (0.81459001686752985, -2.018534366455262) +description = Clearwater County, ID +station = ('kp69', 0.009247951665211104) +zone = ('idz005', 0.001165639148516285) + +[fips1603590920] +centroid = (0.81615976599677353, -2.0271930321408682) +description = Elk River CCD, ID +station = ('kp69', 0.012677460440243767) +zone = ('idz026', 0.008582616048972919) + +[fips1603592530] +centroid = (0.81107356239719675, -2.0295860705315705) +description = Nez Perce CCD, ID +station = ('kgic', 0.0094332123860645031) +zone = ('idz007', 0.0052539923169887962) + +[fips1603592806] +centroid = (0.81518730344414736, -2.0149395641548069) +description = Pierce-Headquarters CCD, ID +station = ('kp69', 0.0099816184885076591) +zone = ('idz005', 0.0015530241447324845) + +[fips1603593680] +centroid = (0.80948569675031734, -2.0235961354453109) +description = Weippe CCD, ID +station = ('kp69', 0.0058739202659015641) +zone = ('idz007', 0.0033538630766692975) + +[fips1603610] +centroid = (0.76922575056225106, -1.9451436902879209) +description = Ashton city, ID +station = ('krxe', 0.0060874251060629367) +zone = ('idz019', 0.0049954431627793634) + +[fips16037] +centroid = (0.7727155713081989, -1.9940779577649839) +description = Custer County, ID +station = ('kllj', 0.0043782062618332148) +zone = ('idz018', 0.0041000537257827223) + +[fips1603700] +centroid = (0.83679102383191828, -2.0369372053547528) +description = Athol city, ID +station = ('kcoe', 0.0033564853750915873) +zone = ('idz002', 0.0061467574740627848) + +[fips1603790575] +centroid = (0.77444479117119724, -1.9898326537990179) +description = Challis CCD, ID +station = ('kllj', 0.0036706885718557603) +zone = ('idz032', 0.0066986820418861014) + +[fips1603792024] +centroid = (0.7669400150139617, -1.9876538545739981) +description = Mackay CCD, ID +station = ('ksun', 0.0093346754236090981) +zone = ('idz032', 0.0045080143981465343) + +[fips1603793335] +centroid = (0.77381505892378522, -2.003878854179558) +description = Stanley CCD, ID +station = ('ksnt', 0.002691210736598434) +zone = ('idz018', 0.0035401159583498543) + +[fips16039] +centroid = (0.75738259203004088, -2.015344794700535) +description = Elmore County, ID +station = ('kmuo', 0.0078469679053869909) +zone = ('idz013', 0.0062356217395160328) + +[fips1603970] +centroid = (0.75823963595923261, -1.9689664571932624) +description = Atomic City city, ID +station = ('kida', 0.0095425018290153443) +zone = ('idz020', 0.0051436881394850593) + +[fips1603990184] +centroid = (0.76172350513243103, -2.0134742904345875) +description = Atlanta CCD, ID +station = ('ksnt', 0.011241182121923914) +zone = ('idz013', 0.0023355355266439872) + +[fips1603991242] +centroid = (0.75111309010419691, -2.0120773987144611) +description = Glenns Ferry CCD, ID +station = ('kmuo', 0.0074423359297457331) +zone = ('idz028', 0.0075185284635204686) + +[fips1603992300] +centroid = (0.75424061540401566, -2.0208883094707191) +description = Mountain Home CCD, ID +station = ('kmuo', 0.0030443431959993948) +zone = ('idz014', 0.0021698511019195483) + +[fips16041] +centroid = (0.73606798543286289, -1.9516787440594556) +description = Franklin County, ID +station = ('klgu', 0.0068202790435211037) +zone = ('idz024', 0.0017410270406482021) + +[fips1604190713] +centroid = (0.7355585412774982, -1.9550763939676057) +description = Dayton CCD, ID +station = ('klgu', 0.0066667091003940401) +zone = ('idz024', 0.0010243120649029503) + +[fips1604192185] +centroid = (0.73807848255811259, -1.9502199629640538) +description = Mink Creek CCD, ID +station = ('ku78', 0.0066167658418407249) +zone = ('idz024', 0.0038503189062118921) + +[fips1604192921] +centroid = (0.73447409840006406, -1.9503795558708563) +description = Preston CCD, ID +station = ('klgu', 0.0053811748605770296) +zone = ('idz024', 0.0026247582854348863) + +[fips16043] +centroid = (0.77175127689647194, -1.9457703507558495) +description = Fremont County, ID +station = ('krxe', 0.00779604138739957) +zone = ('idz019', 0.0042480024151487434) + +[fips1604390161] +centroid = (0.76828548933432428, -1.9429094419525652) +description = Ashton CCD, ID +station = ('kdij', 0.0056120413361964135) +zone = ('idz019', 0.0068410126490936569) + +[fips1604391725] +centroid = (0.77279283703418467, -1.9464637526143742) +description = Island Park CCD, ID +station = ('krxe', 0.008493493627464108) +zone = ('idz019', 0.0040787008659194926) + +[fips1604393128] +centroid = (0.76702242946124088, -1.9495766171484761) +description = St. Anthony CCD, ID +station = ('krxe', 0.0023344234799743406) +zone = ('idz019', 0.0042957283838254172) + +[fips1604393496] +centroid = (0.76628199097937488, -1.9480144602014786) +description = Teton-Newdale CCD, ID +station = ('krxe', 0.0026624040912285635) +zone = ('idz019', 0.0054348042016995135) + +[fips1604393910] +centroid = (0.77386686029598439, -1.9386446950187322) +description = Yellowstone National Park CCD, ID +station = ('kwys', 0.0060255559218893948) +zone = ('wyz001', 0.0079841058187196372) + +[fips1604420] +centroid = (0.7456061225285493, -1.9527198329582702) +description = Bancroft city, ID +station = ('ku78', 0.0040297160174677729) +zone = ('idz023', 0.0046603994586491811) + +[fips16045] +centroid = (0.76901777712858344, -2.0315420261176955) +description = Gem County, ID +station = ('keul', 0.0080345096620860913) +zone = ('idz012', 0.0059177780178327616) + +[fips1604590943] +centroid = (0.76645748383566292, -2.0346996234405261) +description = Emmett Bench CCD, ID +station = ('keul', 0.0049584368768717715) +zone = ('idz012', 0.0025061340162885245) + +[fips1604590966] +centroid = (0.76539890673774325, -2.0348007129108012) +description = Emmett Valley CCD, ID +station = ('keul', 0.0039005025017053649) +zone = ('idz012', 0.0016795056545116044) + +[fips1604593427] +centroid = (0.7699009311833851, -2.0304531326506687) +description = Sweet CCD, ID +station = ('keul', 0.0091527852406679128) +zone = ('idz033', 0.007042562020415661) + +[fips1604600] +centroid = (0.76920583635548589, -2.0268802516856188) +description = Banks CDP, ID +station = ('kboi', 0.0089164203511630496) +zone = ('idz012', 0.0085327913274141076) + +[fips16047] +centroid = (0.75002356831863948, -2.0040118308152675) +description = Gooding County, ID +station = ('kjer', 0.0063331325263164037) +zone = ('idz016', 0.0048484278972473691) + +[fips1604790322] +centroid = (0.75161979409263591, -2.0046918983583071) +description = Bliss CCD, ID +station = ('kjer', 0.0078081294277186856) +zone = ('idz028', 0.0041598489676007407) + +[fips1604791265] +centroid = (0.74911830094221499, -2.0018719349792748) +description = Gooding CCD, ID +station = ('kjer', 0.0045725295084053036) +zone = ('idz016', 0.0032628630448288572) + +[fips1604791357] +centroid = (0.7471854011555088, -2.0050999214308383) +description = Hagerman CCD, ID +station = ('kjer', 0.0057184396989911849) +zone = ('idz016', 0.0038519645543491948) + +[fips1604793726] +centroid = (0.74606053645259851, -2.0025249673722008) +description = Wendell CCD, ID +station = ('kjer', 0.0036757968772291099) +zone = ('idz016', 0.0018208890414361345) + +[fips16049] +centroid = (0.80022014517720741, -2.0152858898382799) +description = Idaho County, ID +station = ('kp69', 0.0053799222204570455) +zone = ('idz006', 0.0024534178464500843) + +[fips1604990644] +centroid = (0.80175451648251317, -2.033386699510713) +description = Cottonwood CCD, ID +station = ('kgic', 0.0046259692689034236) +zone = ('idz027', 0.0045741596052957072) + +[fips1604990897] +centroid = (0.80147191277003016, -2.0097751698047404) +description = Elk City CCD, ID +station = ('kp69', 0.0066496895782400629) +zone = ('idz006', 0.0020473523851003424) + +[fips1604991334] +centroid = (0.79980507097449804, -2.0277948565735411) +description = Grangeville CCD, ID +station = ('kgic', 0.0021726515710358413) +zone = ('idz008', 0.0042854878216943785) + +[fips1604992553] +centroid = (0.80537548126845571, -2.0270417470013053) +description = Nez Perce CCD, ID +station = ('kgic', 0.0035330006153363167) +zone = ('idz007', 0.0014102340320633665) + +[fips1604993013] +centroid = (0.79112718921382719, -2.0268451182077758) +description = Riggins CCD, ID +station = ('kmyl', 0.0077861943851199877) +zone = ('idz008', 0.0070462881289928133) + +[fips16051] +centroid = (0.76440124163071832, -1.960329171790993) +description = Jefferson County, ID +station = ('kida', 0.0058354140938676521) +zone = ('idz020', 0.00383457371107039) + +[fips1605191978] +centroid = (0.76281901339732294, -1.9550911769063699) +description = Lewisville-Menan CCD, ID +station = ('kida', 0.0033654622954337908) +zone = ('idz020', 0.0060344701251403505) + +[fips1605192335] +centroid = (0.76542759995064602, -1.9618441699416014) +description = Mud Lake-Hamer CCD, ID +station = ('kida', 0.0073009859353746773) +zone = ('idz020', 0.004391157336379849) + +[fips1605192990] +centroid = (0.7622813298146609, -1.9529255723704952) +description = Rigby CCD, ID +station = ('krxe', 0.0030007007139719447) +zone = ('idz020', 0.0074515490519797721) + +[fips1605193036] +centroid = (0.7617609773514713, -1.9501199206913296) +description = Ririe CCD, ID +station = ('krxe', 0.0033802207185597852) +zone = ('idz019', 0.0093616111685325722) + +[fips1605193059] +centroid = (0.76333463601823948, -1.9569678945444544) +description = Roberts CCD, ID +station = ('kida', 0.0038982740355994736) +zone = ('idz020', 0.00495202993877645) + +[fips1605230] +centroid = (0.75597730527621254, -1.9576481191671267) +description = Basalt city, ID +station = ('kida', 0.0037452669493826633) +zone = ('idz020', 0.0064973859979665927) + +[fips16053] +centroid = (0.74510151293521265, -1.9942657202859133) +description = Jerome County, ID +station = ('kjer', 0.0025083626475548653) +zone = ('idz016', 0.0043735478702916514) + +[fips1605390874] +centroid = (0.74310122598608697, -1.9920049778525126) +description = Eden-Hazelton CCD, ID +station = ('kjer', 0.0048982987374354128) +zone = ('idz016', 0.006650268046704) + +[fips1605391587] +centroid = (0.7455299563599922, -1.991936578399127) +description = Hunt CCD, ID +station = ('kjer', 0.0041200519656235798) +zone = ('idz016', 0.0059892586958509792) + +[fips1605391748] +centroid = (0.74549173364937349, -1.9978736300090512) +description = Jerome CCD, ID +station = ('kjer', 0.00042829807810976781) +zone = ('idz016', 0.0017244226749088827) + +[fips16055] +centroid = (0.83212259969539126, -2.0367105394447962) +description = Kootenai County, ID +station = ('kcoe', 0.0021181216364457023) +zone = ('idz002', 0.0019746527861346105) + +[fips1605590621] +centroid = (0.83207006528490624, -2.0384584168774986) +description = Coeur d'Alene CCD, ID +station = ('kcoe', 0.0016353321083480514) +zone = ('idz002', 0.0013165287239086893) + +[fips1605591426] +centroid = (0.83160917618933217, -2.0328848824441796) +description = Harrison CCD, ID +station = ('kcoe', 0.0045106084932136133) +zone = ('idz002', 0.0041127277265940974) + +[fips1605592875] +centroid = (0.8336362190358908, -2.0412341361599924) +description = Post Falls-Rathdrum CCD, ID +station = ('kcoe', 0.0016130772022262309) +zone = ('idz002', 0.0032705984884300885) + +[fips1605593312] +centroid = (0.83594439951836075, -2.038118322019455) +description = Spirit Lake-Athol CCD, ID +station = ('kcoe', 0.0023095268704689657) +zone = ('idz002', 0.0051866142174691668) + +[fips1605593887] +centroid = (0.82765687809819088, -2.0395527557717914) +description = Worley CCD, ID +station = ('kcoe', 0.0060481034778204039) +zone = ('idz002', 0.0031596975962839119) + +[fips16057] +centroid = (0.81714430622782352, -2.0373398353598953) +description = Latah County, ID +station = ('kpuw', 0.0047637946467986164) +zone = ('idz003', 0.0026288747032501094) + +[fips1605790736] +centroid = (0.81734843993713679, -2.0328513721225416) +description = Deary-Bovill CCD, ID +station = ('klws', 0.010389866663865913) +zone = ('idz003', 0.0051347663266519093) + +[fips1605791196] +centroid = (0.81296815220682161, -2.040760575974049) +description = Genesee CCD, ID +station = ('kpuw', 0.0037420471672337395) +zone = ('idz026', 0.0035063411180322147) + +[fips1605792277] +centroid = (0.81566627415077209, -2.0412642430895898) +description = Moscow CCD, ID +station = ('kpuw', 0.0019433039205927762) +zone = ('idz003', 0.003552777639543717) + +[fips1605792898] +centroid = (0.8194939033734433, -2.0385705193753538) +description = Potlatch CCD, ID +station = ('kpuw', 0.0051742419778937863) +zone = ('idz003', 0.00099984799199816492) + +[fips1605793542] +centroid = (0.81486237549730356, -2.0362883268454461) +description = Troy-Juliaetta-Kendrick CCD, ID +station = ('klws', 0.0069816480022456282) +zone = ('idz026', 0.0041628823195898022) + +[fips16059] +centroid = (0.7841552969838107, -1.9877178034377914) +description = Lemhi County, ID +station = ('ksmn', 0.0032795553597863504) +zone = ('idz010', 0.0042954890293530161) + +[fips1605991035] +centroid = (0.78665720901325198, -1.9965742672875264) +description = Forney CCD, ID +station = ('ksmn', 0.0063553642607481978) +zone = ('idz009', 0.00085344610174446951) + +[fips1605991886] +centroid = (0.77611337829598137, -1.9784093691249598) +description = Leadore CCD, ID +station = ('kllj', 0.010755244581198451) +zone = ('idz010', 0.0065907664558239216) + +[fips1605992737] +centroid = (0.78198777258575891, -1.9881982053144029) +description = Patterson CCD, ID +station = ('ksmn', 0.0054609557399456282) +zone = ('idz010', 0.0040888936359120094) + +[fips1605993174] +centroid = (0.79010835326297546, -1.987177554221129) +description = Salmon CCD, ID +station = ('ksmn', 0.0026936843759236095) +zone = ('idz010', 0.0087282357458098488) + +[fips16061] +centroid = (0.80697615763204478, -2.0319779395516733) +description = Lewis County, ID +station = ('kgic', 0.0062853670990950907) +zone = ('idz027', 0.0021354345502989035) + +[fips1606190690] +centroid = (0.80765488127156027, -2.0319631217063239) +description = Craigmont CCD, ID +station = ('kgic', 0.006844167117543847) +zone = ('idz027', 0.0024687856998724562) + +[fips1606191771] +centroid = (0.80723272103208787, -2.0265683962548722) +description = Kamiah CCD, ID +station = ('kgic', 0.0053851127567058864) +zone = ('idz007', 0.00089028377902457289) + +[fips1606192576] +centroid = (0.80761976524701018, -2.0286560194797678) +description = Nezperce CCD, ID +station = ('kgic', 0.0059224445763279114) +zone = ('idz007', 0.0022527534762371688) + +[fips1606193300] +centroid = (0.80405405758518578, -2.0352000093370726) +description = South Lewis CCD, ID +station = ('kgic', 0.0062789747940608306) +zone = ('idz027', 0.002171710033407737) + +[fips1606193864] +centroid = (0.80720057206726625, -2.0352954439405719) +description = Winchester CCD, ID +station = ('klws', 0.0052717476984550024) +zone = ('idz027', 0.0010325069288732501) + +[fips1606220] +centroid = (0.75868329865508966, -1.9941185192168003) +description = Bellevue city, ID +station = ('ksun', 0.00078551903269621925) +zone = ('idz031', 0.0022447681721491173) + +[fips16063] +centroid = (0.75025039130822868, -1.9923613915390623) +description = Lincoln County, ID +station = ('kjer', 0.0058159425808064881) +zone = ('idz017', 0.0048770901483546764) + +[fips1606392967] +centroid = (0.75188234397201337, -1.989778112259893) +description = Richfield CCD, ID +station = ('ksun', 0.0082326127690210364) +zone = ('idz017', 0.0035847611669219182) + +[fips1606393243] +centroid = (0.74979815904574443, -1.994898925738537) +description = Shoshone CCD, ID +station = ('kjer', 0.0044053535975704505) +zone = ('idz016', 0.0052547908296755874) + +[fips16065] +centroid = (0.76427460054019369, -1.9487744289176745) +description = Madison County, ID +station = ('krxe', 0.0019605844759061175) +zone = ('idz019', 0.007087163419302692) + +[fips1606590863] +centroid = (0.76401377853677566, -1.9469638767115331) +description = East Madison CCD, ID +station = ('krxe', 0.0032771287787891775) +zone = ('idz019', 0.0078015388058815978) + +[fips1606592956] +centroid = (0.76396545036978791, -1.9513668362688317) +description = Rexburg CCD, ID +station = ('krxe', 0.0010724522035062633) +zone = ('idz019', 0.0070971113586973259) + +[fips1606593381] +centroid = (0.76559265573800728, -1.9521121616726034) +description = Sugar City CCD, ID +station = ('krxe', 0.00081955597225013264) +zone = ('idz019', 0.0054792230740799853) + +[fips1606670] +centroid = (0.73970996398299937, -1.9429176275467572) +description = Bennington CDP, ID +station = ('ku78', 0.0057643376698450349) +zone = ('idz025', 0.0023851442827200731) + +[fips16067] +centroid = (0.74799465796978104, -1.9833923364992814) +description = Minidoka County, ID +station = ('kbyi', 0.0055979515945706066) +zone = ('idz017', 0.0025361155156681694) + +[fips1606791449] +centroid = (0.74282160678662501, -1.9862683598538877) +description = Heyburn CCD, ID +station = ('kbyi', 0.00052358520776723345) +zone = ('idz017', 0.0070655514055695647) + +[fips1606792162] +centroid = (0.74979671042246521, -1.9824842591427612) +description = Minidoka CCD, ID +station = ('kbyi', 0.0075164160753666458) +zone = ('idz017', 0.0023657120516948839) + +[fips1606792760] +centroid = (0.74473462727315087, -1.9869230503096031) +description = Paul CCD, ID +station = ('kbyi', 0.0023111745785245373) +zone = ('idz017', 0.0052166376957467646) + +[fips1606793105] +centroid = (0.74422560199680676, -1.9832707743168798) +description = Rupert CCD, ID +station = ('kbyi', 0.0023386266369402214) +zone = ('idz017', 0.0059276946918412413) + +[fips16069] +centroid = (0.80867677154860296, -2.0378621949517246) +description = Nez Perce County, ID +station = ('klws', 0.0031342618372856715) +zone = ('idz026', 0.0021562407886882426) + +[fips1606991909] +centroid = (0.81308997618861079, -2.034616475954961) +description = Leland CCD, ID +station = ('klws', 0.0065517634069583216) +zone = ('idz026', 0.0028279193499679443) + +[fips1606991955] +centroid = (0.80656490570039729, -2.0395893553262057) +description = Lewiston CCD, ID +station = ('klws', 0.0032850353152061528) +zone = ('idz027', 0.0032919748786500933) + +[fips1606992599] +centroid = (0.81009965122129146, -2.0358659048065859) +description = Nez Perce CCD, ID +station = ('klws', 0.0045359152001209734) +zone = ('idz026', 0.00091927630048073655) + +[fips16071] +centroid = (0.73624777179911072, -1.9638525901250414) +description = Oneida County, ID +station = ('klgu', 0.011159526919759721) +zone = ('idz022', 0.0081961789769573849) + +[fips1607191472] +centroid = (0.73629241732137674, -1.9672384765140327) +description = Holbrook CCD, ID +station = ('kpih', 0.012829403872321595) +zone = ('idz022', 0.0057579082348888427) + +[fips1607192047] +centroid = (0.73704238530095878, -1.9602248011017236) +description = Malad City CCD, ID +station = ('klgu', 0.0098290624173422974) +zone = ('idz024', 0.0051152535664424929) + +[fips16073] +centroid = (0.74338918785937358, -2.027071731757855) +description = Owyhee County, ID +station = ('kmuo', 0.0087226079488295777) +zone = ('idz015', 0.0045172768532624405) + +[fips1607390414] +centroid = (0.74099679524049489, -2.0154243991677183) +description = Bruneau CCD, ID +station = ('kmuo', 0.011516870575031498) +zone = ('idz015', 0.007632184980623998) + +[fips1607390793] +centroid = (0.73445711634644217, -2.027773301757279) +description = Duck Valley CCD, ID +station = ('kmuo', 0.017388750538213274) +zone = ('idz015', 0.0049050470739921762) + +[fips1607391311] +centroid = (0.74065345407004257, -2.0310287596912691) +description = Grand View CCD, ID +station = ('kmuo', 0.012499581669668905) +zone = ('idz015', 0.004449235207733564) + +[fips1607391518] +centroid = (0.7608313626319817, -2.0413409503102149) +description = Homedale CCD, ID +station = ('kman', 0.0055299661878581551) +zone = ('idz012', 0.0049097390408723374) + +[fips1607392070] +centroid = (0.75965083937922528, -2.0393846107516542) +description = Marsing CCD, ID +station = ('keul', 0.003311301412598461) +zone = ('idz012', 0.0051308839872980802) + +[fips1607392369] +centroid = (0.75049854222127721, -2.0371158921635719) +description = Murphy CCD, ID +station = ('kman', 0.010438656187801074) +zone = ('idz029', 0.0010898244983309376) + +[fips16075] +centroid = (0.76799269289900973, -2.0376484270249402) +description = Payette County, ID +station = ('kono', 0.0033730630550471933) +zone = ('idz012', 0.0036745418339622828) + +[fips1607591150] +centroid = (0.76627534127492469, -2.0403358326472838) +description = Fruitland CCD, ID +station = ('kono', 0.0024281050725371068) +zone = ('idz012', 0.0032543637880192832) + +[fips1607592507] +centroid = (0.7663281025782126, -2.0384330746967594) +description = New Plymouth CCD, ID +station = ('kono', 0.0033899142029261849) +zone = ('idz012', 0.0023237950424926171) + +[fips1607592783] +centroid = (0.76935363083654473, -2.0369479740362375) +description = Payette CCD, ID +station = ('kono', 0.0040239234906467754) +zone = ('idz012', 0.0049700804873985018) + +[fips16077] +centroid = (0.74515306996131647, -1.9695064446105368) +description = Power County, ID +station = ('kpih', 0.004988020310786454) +zone = ('idz021', 0.0059270169196269833) + +[fips1607790092] +centroid = (0.74774446502150771, -1.9728201616349583) +description = American Falls CCD, ID +station = ('kpih', 0.0057025255073816176) +zone = ('idz021', 0.0054933563407707671) + +[fips1607790115] +centroid = (0.74268934573590883, -1.9643804300507219) +description = Arbon CCD, ID +station = ('kpih', 0.0063791651707506081) +zone = ('idz021', 0.0080917447912289171) + +[fips1607791127] +centroid = (0.74644580043168374, -1.9660839761204236) +description = Fort Hall CCD, ID +station = ('kpih', 0.002664076212194976) +zone = ('idz021', 0.0042006423243264139) + +[fips1607793082] +centroid = (0.74210998369070935, -1.969931851162418) +description = Rockland CCD, ID +station = ('kpih', 0.0077371846565712048) +zone = ('idz022', 0.0054035301166496475) + +[fips1607840] +centroid = (0.75390294655363221, -1.9607174377363914) +description = Blackfoot city, ID +station = ('kpih', 0.0058821577139312421) +zone = ('idz021', 0.0053043809114850333) + +[fips16079] +centroid = (0.82637315352676399, -2.0225764093765406) +description = Shoshone County, ID +station = ('kmlp', 0.0031380091656596516) +zone = ('idz004', 0.0030029676806804001) + +[fips1607990230] +centroid = (0.82286846257558932, -2.0208685348902939) +description = Avery-Clarkia CCD, ID +station = ('kmlp', 0.0054793825348610943) +zone = ('idz004', 0.0048568522287689188) + +[fips1607991794] +centroid = (0.828884315801241, -2.0279288455002167) +description = Kellogg CCD, ID +station = ('kmlp', 0.0062373454146861518) +zone = ('idz004', 0.00341945264669003) + +[fips1607992346] +centroid = (0.82850163490944873, -2.0203475541085738) +description = Mullan CCD, ID +station = ('kmlp', 0.0011241156422934805) +zone = ('idz004', 0.0052943698101957223) + +[fips1607992392] +centroid = (0.83364655138506261, -2.0260901934931184) +description = Murray CCD, ID +station = ('kmlp', 0.007383243229290965) +zone = ('idz004', 0.0081161790613137157) + +[fips1607992679] +centroid = (0.82911014395315652, -2.0231716539179332) +description = Osburn-Wallace CCD, ID +station = ('kmlp', 0.0031271847455168482) +zone = ('idz004', 0.0043418667120434067) + +[fips16081] +centroid = (0.76377342924548342, -1.9410114662041915) +description = Teton County, ID +station = ('kdij', 0.0014559414931002567) +zone = ('wyz013', 0.0069269371808133567) + +[fips1608190782] +centroid = (0.76304431795046279, -1.9419680986205021) +description = Driggs CCD, ID +station = ('kdij', 0.0021319221840923656) +zone = ('wyz013', 0.0074341391450563872) + +[fips1608193473] +centroid = (0.76573025749623447, -1.940963207850374) +description = Tetonia CCD, ID +station = ('kdij', 0.0026985915628919329) +zone = ('wyz013', 0.0076900795839403855) + +[fips1608193611] +centroid = (0.76105335105954275, -1.9396788375071239) +description = Victor CCD, ID +station = ('kdij', 0.002395738910016783) +zone = ('wyz013', 0.0057169268663776768) + +[fips1608290] +centroid = (0.83797519482281135, -2.0418687029694329) +description = Blanchard CDP, ID +station = ('kcoe', 0.0047473801547214933) +zone = ('idz002', 0.0074712784382961802) + +[fips16083] +centroid = (0.73918723787202711, -2.0012929394532182) +description = Twin Falls County, ID +station = ('ktwf', 0.0032782853058664382) +zone = ('idz030', 0.002219358765879708) + +[fips1608390437] +centroid = (0.74306895484821756, -2.0038514350570091) +description = Buhl CCD, ID +station = ('kjer', 0.0054113991169018084) +zone = ('idz016', 0.0041554899232691088) + +[fips1608390989] +centroid = (0.74309656595698415, -2.0005318537263013) +description = Filer CCD, ID +station = ('ktwf', 0.0024114135880636796) +zone = ('idz016', 0.003066377824021028) + +[fips1608391495] +centroid = (0.73732778154024492, -1.9989463791804971) +description = Hollister CCD, ID +station = ('ktwf', 0.0041919419104880073) +zone = ('idz030', 0.0019348794838218346) + +[fips1608391840] +centroid = (0.74221508741826447, -1.9956381424899268) +description = Kimberly CCD, ID +station = ('ktwf', 0.0019679771552323813) +zone = ('idz016', 0.0050936855775846187) + +[fips1608392415] +centroid = (0.74121834733574299, -1.9928780962641153) +description = Murtaugh CCD, ID +station = ('ktwf', 0.0038681174745525998) +zone = ('idz016', 0.007217262774584122) + +[fips1608393565] +centroid = (0.74246788090712323, -1.9981715053524891) +description = Twin Falls CCD, ID +station = ('ktwf', 0.0009948338204951346) +zone = ('idz016', 0.0039249928624353085) + +[fips1608393818] +centroid = (0.73939131922146284, -2.0056515501942238) +description = West Salmon Falls CCD, ID +station = ('ktwf', 0.0059430637581024768) +zone = ('idz030', 0.0038990554179444046) + +[fips1608470] +centroid = (0.74919033068044483, -2.0062119754170391) +description = Bliss city, ID +station = ('kjer', 0.0071964985202431662) +zone = ('idz016', 0.0054517443344987825) + +[fips16085] +centroid = (0.78141064456200193, -2.0182616587596378) +description = Valley County, ID +station = ('kmyl', 0.0058491547314863841) +zone = ('idz011', 0.0032057173429550822) + +[fips1608560] +centroid = (0.73637191706880523, -1.9443958690633187) +description = Bloomington city, ID +station = ('ku78', 0.0083315996793007895) +zone = ('idz025', 0.0014001210518678282) + +[fips1608590552] +centroid = (0.77579998697549335, -2.0228378946050745) +description = Cascade CCD, ID +station = ('kmyl', 0.0078966934544062208) +zone = ('idz011', 0.0056120104064156379) + +[fips1608592001] +centroid = (0.78437201451703076, -2.0216324480505996) +description = McCall CCD, ID +station = ('kmyl', 0.0032782927009793951) +zone = ('idz011', 0.0030694081226751279) + +[fips1608593358] +centroid = (0.78176435298821101, -2.0118949419944578) +description = Stibnite CCD, ID +station = ('ksnt', 0.011016958451286567) +zone = ('idz011', 0.0077322456414761756) + +[fips16087] +centroid = (0.77576766347774639, -2.0385066926846087) +description = Washington County, ID +station = ('kono', 0.0080136653830428506) +zone = ('idz033', 0.0027576581568469045) + +[fips1608790506] +centroid = (0.78092027685536158, -2.0380788601250672) +description = Cambridge CCD, ID +station = ('kmyl', 0.0088850576312067796) +zone = ('idz033', 0.0052499828016605654) + +[fips1608792139] +centroid = (0.77466758245021428, -2.0348577502707568) +description = Midvale CCD, ID +station = ('kono', 0.0083686267657164162) +zone = ('idz033', 0.0015888983632915557) + +[fips1608793703] +centroid = (0.77447489810079406, -2.0412860247986546) +description = Weiser CCD, ID +station = ('kono', 0.0062835443650198497) +zone = ('idz033', 0.0050261894268034653) + +[fips1608830] +centroid = (0.76093716449123761, -2.028615108962101) +description = Boise City city, ID +station = ('kboi', 0.00055611462939139395) +zone = ('idz012', 0.0067627734400311041) + +[fips1609370] +centroid = (0.84984989145460521, -2.0301116938891011) +description = Bonners Ferry city, ID +station = ('k65s', 0.00067738217412497076) +zone = ('idz001', 0.0043821260799204046) + +[fips1609730] +centroid = (0.81784217612923349, -2.0314448461849444) +description = Bovill city, ID +station = ('klws', 0.01138755875394998) +zone = ('idz026', 0.0080336835674345453) + +[fips1610810] +centroid = (0.7434808350983958, -2.002938453325291) +description = Buhl city, ID +station = ('kjer', 0.0046231118411393197) +zone = ('idz016', 0.0034058080266454699) + +[fips1611260] +centroid = (0.74241822628990406, -1.9860729876974192) +description = Burley city, ID +station = ('kbyi', 0.00040996374507702374) +zone = ('idz017', 0.0074618775336339352) + +[fips1611710] +centroid = (0.76108544766448694, -1.9764259246031159) +description = Butte City city, ID +station = ('kpih', 0.014543238777375586) +zone = ('idz032', 0.01000258567459061) + +[fips1612250] +centroid = (0.76176431093034269, -2.0360895163903514) +description = Caldwell city, ID +station = ('keul', 0.00039474391199441241) +zone = ('idz012', 0.0026557338450068284) + +[fips1612520] +centroid = (0.77792375596919749, -2.0364170274244882) +description = Cambridge city, ID +station = ('kmyl', 0.0091632169127650511) +zone = ('idz033', 0.0020702228352587528) + +[fips1612790] +centroid = (0.75590424579372406, -1.9886419727300149) +description = Carey city, ID +station = ('ksun', 0.0056327939855398829) +zone = ('idz017', 0.0063958802399500317) + +[fips1613150] +centroid = (0.77682442543324381, -2.0253433671061898) +description = Cascade city, ID +station = ('kmyl', 0.0065560542605087903) +zone = ('idz011', 0.004937415301629328) + +[fips1613240] +centroid = (0.74212364961875243, -2.0048902026679185) +description = Castleford city, ID +station = ('kjer', 0.0065669089439298967) +zone = ('idz016', 0.0053702486698721588) + +[fips1613780] +centroid = (0.77676147140712437, -1.9936412763861351) +description = Challis city, ID +station = ('kllj', 0.00034319811941981449) +zone = ('idz018', 0.0064881156794849154) + +[fips1614680] +centroid = (0.74914116475541614, -1.962962664192742) +description = Chubbuck city, ID +station = ('kpih', 0.0016714948624477802) +zone = ('idz021', 0.0029543497379894367) + +[fips1614950] +centroid = (0.84032700853658115, -2.0276687041752068) +description = Clark Fork city, ID +station = ('kszt', 0.0051874252472842606) +zone = ('idz001', 0.0075951972729859079) + +[fips1615490] +centroid = (0.77246742039515026, -1.9966564722952953) +description = Clayton city, ID +station = ('kllj', 0.0051476242332459182) +zone = ('idz018', 0.0022428444991918735) + +[fips1616120] +centroid = (0.73631084799827784, -1.9548676351357746) +description = Clifton city, ID +station = ('klgu', 0.0073374876461710006) +zone = ('idz024', 0.0013378865187044465) + +[fips1616750] +centroid = (0.83258287792572716, -2.0384141902342527) +description = Coeur d'Alene city, ID +station = ('kcoe', 0.0011385440264426669) +zone = ('idz002', 0.0018260317337711763) + +[fips1617830] +centroid = (0.82728283658619595, -2.038026360621167) +description = Conkling Park CDP, ID +station = ('kcoe', 0.0064259858067385548) +zone = ('idz002', 0.0035443960649496407) + +[fips1618640] +centroid = (0.80374251631370475, -2.0306875478225037) +description = Cottonwood city, ID +station = ('kgic', 0.003334940267109128) +zone = ('idz027', 0.0038036393815295486) + +[fips1618820] +centroid = (0.78074153768666488, -2.0322061937112492) +description = Council city, ID +station = ('kmyl', 0.0051016853699325316) +zone = ('idz033', 0.0048280931466123901) + +[fips1619270] +centroid = (0.80707061485116272, -2.0328084370229424) +description = Craigmont city, ID +station = ('kgic', 0.0067082983689965197) +zone = ('idz027', 0.0016586099174812274) + +[fips1619720] +centroid = (0.77004005137806153, -2.0240933273893265) +description = Crouch city, ID +station = ('kboi', 0.010203103180906704) +zone = ('idz013', 0.0089868180815337595) + +[fips1619900] +centroid = (0.80940104828159565, -2.036273910425825) +description = Culdesac city, ID +station = ('klws', 0.0041786293169694174) +zone = ('idz026', 0.0013758804407994784) + +[fips1620350] +centroid = (0.83309258388047958, -2.0380180004940502) +description = Dalton Gardens city, ID +station = ('kcoe', 0.00080856104703814493) +zone = ('idz002', 0.0023795402698578538) + +[fips1620710] +centroid = (0.73497989481729209, -1.9545002782348149) +description = Dayton city, ID +station = ('klgu', 0.0059839902397740676) +zone = ('idz024', 0.00061721974524735765) + +[fips1620890] +centroid = (0.81682431756276297, -2.034309839058678) +description = Deary city, ID +station = ('klws', 0.0093653388467805389) +zone = ('idz003', 0.0044553011891580972) + +[fips1620980] +centroid = (0.74210731333695368, -1.9831972435954934) +description = Declo city, ID +station = ('kbyi', 0.0018502739277917305) +zone = ('idz022', 0.007523198238522693) + +[fips1621520] +centroid = (0.82276601174849728, -2.0404882697041531) +description = De Smet CDP, ID +station = ('kpuw', 0.007249745644743808) +zone = ('idz003', 0.0036898003603006982) + +[fips1621790] +centroid = (0.74896940690372726, -1.9943270337025358) +description = Dietrich city, ID +station = ('kjer', 0.0039148758323624697) +zone = ('idz016', 0.0050590560647738869) + +[fips1622330] +centroid = (0.78074956620122393, -2.0261055698438284) +description = Donnelly city, ID +station = ('kmyl', 0.0026128409744908473) +zone = ('idz011', 0.0024546355137461434) + +[fips1622510] +centroid = (0.84226233433094755, -2.0350802273905084) +description = Dover city, ID +station = ('kszt', 0.00086817515090729003) +zone = ('idz001', 0.0042496819607435359) + +[fips1622600] +centroid = (0.7405238110132043, -1.9569242787664471) +description = Downey city, ID +station = ('ku78', 0.0079464260976558742) +zone = ('idz024', 0.0057651539875748729) + +[fips1622690] +centroid = (0.76320415520336049, -1.9390897365246982) +description = Driggs city, ID +station = ('kdij', 0.00020393432765935735) +zone = ('wyz013', 0.0054354696416956966) + +[fips1622780] +centroid = (0.76793734850842887, -1.943308511486034) +description = Drummond city, ID +station = ('kdij', 0.0054682000370208416) +zone = ('idz019', 0.006735189304552836) + +[fips1622960] +centroid = (0.77097144633338832, -1.958787784262094) +description = Dubois city, ID +station = ('krxe', 0.0080254397199104096) +zone = ('idz019', 0.0051438875527591655) + +[fips1623410] +centroid = (0.76371618244601802, -2.0318827667475623) +description = Eagle city, ID +station = ('kman', 0.0033495478115441648) +zone = ('idz012', 0.0035138626426238434) + +[fips1623680] +centroid = (0.84193855830141007, -2.0296372610385314) +description = East Hope city, ID +station = ('kszt', 0.0033103019034857171) +zone = ('idz001', 0.0055220431984704952) + +[fips1624310] +centroid = (0.74360288597298774, -1.9933240977011699) +description = Eden city, ID +station = ('kjer', 0.0038148952267606892) +zone = ('idz016', 0.0055572089202701319) + +[fips1624940] +centroid = (0.79973866119645964, -2.0147522379661904) +description = Elk City CDP, ID +station = ('kp69', 0.0059524258542463194) +zone = ('idz006', 0.0020833729836791351) + +[fips1625120] +centroid = (0.81651860569098367, -2.0277433868138997) +description = Elk River city, ID +station = ('kmlp', 0.013146405860700518) +zone = ('idz026', 0.0085326013083785925) + +[fips1625570] +centroid = (0.76564525996166233, -2.0331141838013069) +description = Emmett city, ID +station = ('keul', 0.0044863086437874353) +zone = ('idz012', 0.0028499343502298899) + +[fips1626290] +centroid = (0.75656635389876059, -2.0036540906784861) +description = Fairfield city, ID +station = ('ksun', 0.0068812404824903405) +zone = ('idz028', 0.00085045267589600542) + +[fips1627460] +centroid = (0.80551077919207037, -2.0313855049903764) +description = Ferdinand city, ID +station = ('kgic', 0.0048809407721930901) +zone = ('idz027', 0.0025065370288667546) + +[fips1627550] +centroid = (0.83204489763709244, -2.0376202050509358) +description = Fernan Lake Village city, ID +station = ('kcoe', 0.0018331239282228739) +zone = ('idz002', 0.0015150658251011503) + +[fips1627730] +centroid = (0.74294550771022405, -2.0003432534473307) +description = Filer city, ID +station = ('ktwf', 0.0022071167133253964) +zone = ('idz016', 0.0032040836237197641) + +[fips1627910] +centroid = (0.75582595032347955, -1.9579802029639037) +description = Firth city, ID +station = ('kida', 0.0039722584518335673) +zone = ('idz020', 0.006477018506477283) + +[fips1628360] +centroid = (0.75074547140384928, -1.9627601012797555) +description = Fort Hall CDP, ID +station = ('kpih', 0.0024926873495577672) +zone = ('idz021', 0.00269533105487875) + +[fips1628810] +centroid = (0.73324601492519081, -1.9513436757496578) +description = Franklin city, ID +station = ('klgu', 0.0040342559708529532) +zone = ('idz024', 0.0026926702165772803) + +[fips1628990] +centroid = (0.76840195515530985, -2.0406789643782259) +description = Fruitland city, ID +station = ('kono', 0.0011960347659432501) +zone = ('orz064', 0.0032784451188381286) + +[fips1629620] +centroid = (0.76217496945004448, -2.029707981779822) +description = Garden City city, ID +station = ('kboi', 0.0019486800204259452) +zone = ('idz012', 0.005488893155463255) + +[fips1629710] +centroid = (0.76946000865445374, -2.0238967684089668) +description = Garden Valley CDP, ID +station = ('kboi', 0.0097053958252633753) +zone = ('idz013', 0.0084800349338947471) + +[fips1630160] +centroid = (0.81247668494275249, -2.0407937721364222) +description = Genesee city, ID +station = ('klws', 0.003394013347450953) +zone = ('idz026', 0.003232810202350193) + +[fips1630340] +centroid = (0.74138919761622069, -1.9436940198112145) +description = Georgetown city, ID +station = ('ku78', 0.004099510154582103) +zone = ('idz025', 0.0037247147255384974) + +[fips1631690] +centroid = (0.74962243929665351, -2.0124806046782568) +description = Glenns Ferry city, ID +station = ('kmuo', 0.0073575329150393906) +zone = ('idz028', 0.0087282876938854191) + +[fips1632140] +centroid = (0.7493929983131864, -2.0021228435125416) +description = Gooding city, ID +station = ('kjer', 0.0048978696094815442) +zone = ('idz016', 0.0035891863334358716) + +[fips1632500] +centroid = (0.74307708808253192, -1.9500690617969265) +description = Grace city, ID +station = ('ku78', 0.002299898253135862) +zone = ('idz023', 0.0062052351210199318) + +[fips1632770] +centroid = (0.75023192572474251, -2.0262170091165679) +description = Grand View city, ID +station = ('kmuo', 0.0031103582455310713) +zone = ('idz014', 0.0035817931629531898) + +[fips1632950] +centroid = (0.80155698011777243, -2.026710204256597) +description = Grangeville city, ID +station = ('kgic', 0.00029243101878625039) +zone = ('idz007', 0.0049871897270859136) + +[fips1633490] +centroid = (0.76223078507952324, -2.0389188172808823) +description = Greenleaf city, ID +station = ('keul', 0.0024723768900787044) +zone = ('idz012', 0.0027051448659822846) + +[fips1634030] +centroid = (0.75439209252979622, -1.9613219499761123) +description = Groveland CDP, ID +station = ('kpih', 0.006072133230518314) +zone = ('idz021', 0.0052978796891990079) + +[fips1634300] +centroid = (0.74728018998718471, -2.0053425920100354) +description = Hagerman city, ID +station = ('kjer', 0.0059138674355363619) +zone = ('idz016', 0.004049153899363004) + +[fips1634390] +centroid = (0.75943595444171963, -1.9949149129544854) +description = Hailey city, ID +station = ('ksun', 0.00021774528884926827) +zone = ('idz031', 0.0014349214985400157) + +[fips1634570] +centroid = (0.76666596341481363, -1.9583580143870829) +description = Hamer city, ID +station = ('krxe', 0.0053571323058477843) +zone = ('idz020', 0.0065082394424895188) + +[fips1634930] +centroid = (0.74231233716418565, -1.9949319124613998) +description = Hansen city, ID +station = ('ktwf', 0.0024890817124385888) +zone = ('idz016', 0.0053694132897114709) + +[fips1635200] +centroid = (0.82813501104677478, -2.0380758756120465) +description = Harrison city, ID +station = ('kcoe', 0.0055741689294663433) +zone = ('idz002', 0.0026996842082449035) + +[fips1635830] +centroid = (0.83371118092726404, -2.042275818470753) +description = Hauser city, ID +station = ('kcoe', 0.0023125538579747791) +zone = ('idz002', 0.0037231094969021853) + +[fips1636370] +centroid = (0.83371016863629777, -2.0385924058041742) +description = Hayden city, ID +station = ('kcoe', 0.00016519959321224234) +zone = ('idz002', 0.0029338369903283523) + +[fips1636460] +centroid = (0.83364709243713075, -2.0377783144278738) +description = Hayden Lake city, ID +station = ('kcoe', 0.00071161628831361331) +zone = ('idz002', 0.0029565998315665212) + +[fips1636730] +centroid = (0.74342217458223614, -1.9920596590179778) +description = Hazelton city, ID +station = ('kjer', 0.0046914902960065695) +zone = ('idz016', 0.0064724711222807069) + +[fips1637360] +centroid = (0.74281181548952124, -1.985522633024388) +description = Heyburn city, ID +station = ('kbyi', 0.00018398165895317498) +zone = ('idz017', 0.0070650762395366509) + +[fips1637500] +centroid = (0.7629977874726046, -2.0291083041021296) +description = Hidden Spring CDP, ID +station = ('kboi', 0.0026365547639952049) +zone = ('idz012', 0.0056285621952399086) + +[fips1638080] +centroid = (0.73919765748766142, -1.999865469564597) +description = Hollister city, ID +station = ('ktwf', 0.0026190330446900444) +zone = ('idz030', 0.0025367000078844368) + +[fips1638170] +centroid = (0.76123041471215769, -2.040942177482719) +description = Homedale city, ID +station = ('kman', 0.0052700932914225094) +zone = ('idz012', 0.0044219850282459375) + +[fips1638440] +centroid = (0.84211839702753566, -2.0299013991675281) +description = Hope city, ID +station = ('kszt', 0.0030885327515701101) +zone = ('idz001', 0.005274383740266635) + +[fips1638620] +centroid = (0.76643645261817628, -2.0280844765096169) +description = Horseshoe Bend city, ID +station = ('kboi', 0.0060686585291049077) +zone = ('idz012', 0.0065139962532210337) + +[fips1639070] +centroid = (0.83258387276340085, -2.0394196220564496) +description = Huetter city, ID +station = ('kcoe', 0.0011696907810628833) +zone = ('idz002', 0.00184061948012448) + +[fips1639610] +centroid = (0.76494611596989848, -2.0216364623078791) +description = Idaho City city, ID +station = ('kboi', 0.0068247901242098619) +zone = ('idz013', 0.0047192806159559366) + +[fips1639700] +centroid = (0.75900035516700681, -1.9553920716694138) +description = Idaho Falls city, ID +station = ('kida', 0.00064217803485630087) +zone = ('idz020', 0.0059786406173859457) + +[fips1640330] +centroid = (0.74699765608787183, -1.9591602200711771) +description = Inkom city, ID +station = ('kpih', 0.0049016893887359738) +zone = ('idz021', 0.0064585819337213404) + +[fips1640420] +centroid = (0.75965785560281818, -1.9535645374096506) +description = Iona city, ID +station = ('kida', 0.0017233605664648812) +zone = ('idz020', 0.0070638146053513123) + +[fips1640510] +centroid = (0.75753181768108635, -1.9421937173329076) +description = Irwin city, ID +station = ('kdij', 0.0062984166149246939) +zone = ('idz023', 0.0095802943411835081) + +[fips1640600] +centroid = (0.77728379609236875, -1.9432087833725749) +description = Island Park city, ID +station = ('kwys', 0.0037729503607512142) +zone = ('idz019', 0.0086528379932115217) + +[fips1641320] +centroid = (0.74557980296342918, -1.998677703195445) +description = Jerome city, ID +station = ('kjer', 0.00088204714314545757) +zone = ('idz016', 0.0011528621378722726) + +[fips1642130] +centroid = (0.81288247399384117, -2.0369400676947258) +description = Juliaetta city, ID +station = ('klws', 0.0051911446799495688) +zone = ('idz026', 0.0021656417194282976) + +[fips1642400] +centroid = (0.80680979284774468, -2.025075912851614) +description = Kamiah city, ID +station = ('kgic', 0.0050927933764981746) +zone = ('idz007', 0.00060045098313303298) + +[fips1642580] +centroid = (0.82968378131840947, -2.0270720633704125) +description = Kellogg city, ID +station = ('kmlp', 0.0058168716596916133) +zone = ('idz004', 0.004140913066393111) + +[fips1642760] +centroid = (0.81357219320764429, -2.0361290830044942) +description = Kendrick city, ID +station = ('klws', 0.0060725308060032316) +zone = ('idz026', 0.0028976957831948016) + +[fips1643030] +centroid = (0.76257353283802987, -1.9963544954281154) +description = Ketchum city, ID +station = ('ksun', 0.0035143215702190932) +zone = ('idz031', 0.0020331564140703305) + +[fips1643570] +centroid = (0.74234687723008252, -1.9961329782394521) +description = Kimberly city, ID +station = ('ktwf', 0.0016994949176719612) +zone = ('idz016', 0.004764205263735422) + +[fips1644110] +centroid = (0.80531216072319334, -2.0241226314674674) +description = Kooskia city, ID +station = ('kgic', 0.0039096058187219401) +zone = ('idz007', 0.0016776865162498864) + +[fips1644200] +centroid = (0.84320240357265686, -2.0336068902491449) +description = Kootenai city, ID +station = ('kszt', 0.00054376887379265913) +zone = ('idz001', 0.0033197198083580503) + +[fips1644290] +centroid = (0.75895539548547553, -2.0315619403244605) +description = Kuna city, ID +station = ('kman', 0.0022936791283702574) +zone = ('idz012', 0.0065666818047723802) + +[fips1645370] +centroid = (0.80989761190708043, -2.0386182715836885) +description = Lapwai city, ID +station = ('klws', 0.0026381630889672331) +zone = ('idz026', 0.0014671050748145352) + +[fips1645820] +centroid = (0.74386248624592943, -1.9549486184130671) +description = Lava Hot Springs city, ID +station = ('ku78', 0.0055069916779885448) +zone = ('idz023', 0.0070498977770924089) + +[fips1645910] +centroid = (0.77980757709733761, -1.9784773671526175) +description = Leadore city, ID +station = ('ksmn', 0.010014254682319671) +zone = ('idz010', 0.0035955147631324832) + +[fips1646540] +centroid = (0.80971286880575688, -2.0419212897397951) +description = Lewiston city, ID +station = ('klws', 0.00053974215874156336) +zone = ('idz026', 0.0036351725724345337) + +[fips1646720] +centroid = (0.76262618942156246, -1.9550038929904776) +description = Lewisville city, ID +station = ('kida', 0.003188747832318655) +zone = ('idz020', 0.0060450871899208301) + +[fips1647080] +centroid = (0.75952875359804817, -1.9542197514641417) +description = Lincoln CDP, ID +station = ('kida', 0.00124205042970195) +zone = ('idz020', 0.0066306496344303838) + +[fips1647890] +centroid = (0.76251296991298567, -1.9832457986552838) +description = Lost River city, ID +station = ('ksun', 0.0090683107279136647) +zone = ('idz032', 0.0074055792695073407) + +[fips1648250] +centroid = (0.76919051236465341, -2.0179231521512135) +description = Lowman CDP, ID +station = ('ksnt', 0.008896178035978735) +zone = ('idz013', 0.0058695836850253891) + +[fips1648790] +centroid = (0.78367739092802946, -2.0264976929668737) +description = McCall city, ID +station = ('kmyl', 0.00045421713097632319) +zone = ('idz011', 0.0034775056522585788) + +[fips1648880] +centroid = (0.7443521383675763, -1.958074311117171) +description = McCammon city, ID +station = ('kpih', 0.0070436889266016203) +zone = ('idz021', 0.0087855419178887138) + +[fips1649240] +centroid = (0.76640521122456562, -1.9829041853607912) +description = Mackay city, ID +station = ('ksun', 0.011269080281892536) +zone = ('idz032', 0.0035102509064951436) + +[fips1650140] +centroid = (0.73637142837661462, -1.9591226605856742) +description = Malad City city, ID +station = ('klgu', 0.0088018899479301981) +zone = ('idz024', 0.0041311379042935307) + +[fips1650230] +centroid = (0.73840573179286162, -1.9786744846383379) +description = Malta city, ID +station = ('kbyi', 0.0066378740631331057) +zone = ('idz022', 0.0029915921494119155) + +[fips1650950] +centroid = (0.76002735925875797, -2.0387264645440197) +description = Marsing city, ID +station = ('keul', 0.0027047572669576512) +zone = ('idz012', 0.004609684117107651) + +[fips1651850] +centroid = (0.75701027839400548, -2.0338720232158152) +description = Melba city, ID +station = ('kman', 0.0036303317948212965) +zone = ('idz012', 0.007648938015852199) + +[fips1652030] +centroid = (0.76308725305006186, -1.9546364662763478) +description = Menan city, ID +station = ('krxe', 0.0031108574590397163) +zone = ('idz020', 0.0064267226056763096) + +[fips1652120] +centroid = (0.76127513004759373, -2.0315131409185749) +description = Meridian city, ID +station = ('kman', 0.0017141343214370597) +zone = ('idz012', 0.004850751897334451) + +[fips1652660] +centroid = (0.7629279743025249, -2.0353093542147103) +description = Middleton city, ID +station = ('keul', 0.0014026459643810432) +zone = ('idz012', 0.0017557258382071065) + +[fips1652750] +centroid = (0.77599876252400302, -2.0375192377537079) +description = Midvale city, ID +station = ('kono', 0.0084925756045679951) +zone = ('idz033', 0.0020256626677442476) + +[fips1653110] +centroid = (0.74619754479888012, -1.9807733826902012) +description = Minidoka city, ID +station = ('kbyi', 0.0050289289437586045) +zone = ('idz017', 0.0051623110586903756) + +[fips1653920] +centroid = (0.73872840826497033, -1.942529745573794) +description = Montpelier city, ID +station = ('ku78', 0.0067370776151136711) +zone = ('idz025', 0.0019133971873735768) + +[fips1654100] +centroid = (0.76330934619737811, -1.9786314971788612) +description = Moore city, ID +station = ('ksun', 0.012475799794731818) +zone = ('idz032', 0.0072996925227158246) + +[fips1654370] +centroid = (0.75432222699983886, -1.9624093250066896) +description = Moreland CDP, ID +station = ('kpih', 0.0056754468918732001) +zone = ('idz021', 0.0047163278974521579) + +[fips1654550] +centroid = (0.8156029885120949, -2.0420161832912265) +description = Moscow city, ID +station = ('kpuw', 0.0014485717149700856) +zone = ('idz003', 0.003778250275800804) + +[fips1654730] +centroid = (0.75281351203453739, -2.0192890991837018) +description = Mountain Home city, ID +station = ('kmuo', 0.0026059359863988465) +zone = ('idz014', 0.0021960307704408546) + +[fips1654820] +centroid = (0.751356895147408, -2.0222502073393427) +description = Mountain Home AFB CDP, ID +station = ('kmuo', 8.0861285429863817e-06) +zone = ('idz014', 0.00094148043653175374) + +[fips1655270] +centroid = (0.85040961854571973, -2.0279913457407308) +description = Moyie Springs city, ID +station = ('k65s', 0.0012081912741751541) +zone = ('idz001', 0.0057542011368032879) + +[fips1655450] +centroid = (0.76518407416011536, -1.963188143278807) +description = Mud Lake city, ID +station = ('kida', 0.007729265235337927) +zone = ('idz020', 0.004053478101095717) + +[fips1655630] +centroid = (0.82848688687726924, -2.0210268537067422) +description = Mullan city, ID +station = ('kmlp', 0.001564629606683807) +zone = ('idz004', 0.004910666430612963) + +[fips1655720] +centroid = (0.7542061451512887, -2.0341571402024212) +description = Murphy CDP, ID +station = ('kman', 0.0064407474762901767) +zone = ('idz029', 0.0053634936384154269) + +[fips1655900] +centroid = (0.7416224434174572, -1.992494507801112) +description = Murtaugh city, ID +station = ('kjer', 0.005612063047675038) +zone = ('idz016', 0.0071638249604393063) + +[fips1656260] +centroid = (0.76065604430861877, -2.0344234076331054) +description = Nampa city, ID +station = ('kman', 0.00051637015292737925) +zone = ('idz012', 0.0040671017240869684) + +[fips1656800] +centroid = (0.76596346839088592, -1.9478665610006647) +description = Newdale city, ID +station = ('krxe', 0.0026288885715008681) +zone = ('idz019', 0.0057659915946632048) + +[fips1656890] +centroid = (0.78488074308740208, -2.0295593495407225) +description = New Meadows city, ID +station = ('kmyl', 0.0029203192376066433) +zone = ('idz011', 0.0059274908211908442) + +[fips1656980] +centroid = (0.76743048744035725, -2.0388729500281397) +description = New Plymouth city, ID +station = ('kono', 0.0026115194694717875) +zone = ('idz012', 0.0034354442680014957) + +[fips1657250] +centroid = (0.80692618885556022, -2.028766062489106) +description = Nezperce city, ID +station = ('kgic', 0.0052689320687521069) +zone = ('idz007', 0.0020780037048975485) + +[fips1658060] +centroid = (0.76317766110531515, -2.038552053791868) +description = Notus city, ID +station = ('keul', 0.0026670145849315091) +zone = ('idz012', 0.0018255713727971632) + +[fips1658330] +centroid = (0.73726302982499592, -1.9876343243396686) +description = Oakley city, ID +station = ('kbyi', 0.0055800139685717731) +zone = ('idz030', 0.010281884461541733) + +[fips1658600] +centroid = (0.84097508419443168, -2.0424156367971302) +description = Oldtown city, ID +station = ('kdew', 0.0061206491652227293) +zone = ('waz037', 0.0079209851061985657) + +[fips1658870] +centroid = (0.81905188128708328, -2.0401059553315033) +description = Onaway city, ID +station = ('kpuw', 0.0041271108072161765) +zone = ('idz003', 0.00013820747411314181) + +[fips1659320] +centroid = (0.81135586940370685, -2.0290870285385476) +description = Orofino city, ID +station = ('kgic', 0.0096451901982151384) +zone = ('idz007', 0.0053470373171712717) + +[fips1659590] +centroid = (0.82913340919208567, -2.0245923344757641) +description = Osburn city, ID +station = ('kmlp', 0.0040578982450928513) +zone = ('idz004', 0.0038953921914354228) + +[fips1660040] +centroid = (0.7375764735053616, -1.9550859583719067) +description = Oxford city, ID +station = ('klgu', 0.0086007317786585651) +zone = ('idz024', 0.0025203216134228397) + +[fips1660580] +centroid = (0.73701727001302253, -1.9443390935027514) +description = Paris city, ID +station = ('ku78', 0.0077254524108150858) +zone = ('idz025', 0.00079091679576403042) + +[fips1660760] +centroid = (0.76721890117513791, -1.950566114114602) +description = Parker city, ID +station = ('krxe', 0.0022423954056170732) +zone = ('idz019', 0.0039148462107685576) + +[fips1660890] +centroid = (0.82621239124936274, -2.0366941682564126) +description = Parkline CDP, ID +station = ('kcoe', 0.0076116652278077606) +zone = ('idz002', 0.0047988356219142159) + +[fips1660940] +centroid = (0.76421482301331278, -2.0410315034338362) +description = Parma city, ID +station = ('kono', 0.0041277179605047308) +zone = ('idz012', 0.0031606613799614867) + +[fips1661210] +centroid = (0.74360632427161422, -1.98591369149659) +description = Paul city, ID +station = ('kbyi', 0.00099539098538786838) +zone = ('idz017', 0.0062708451848781177) + +[fips1661300] +centroid = (0.76934275743530478, -2.0407585513921167) +description = Payette city, ID +station = ('kono', 0.0015795170806667089) +zone = ('orz064', 0.003368507672056801) + +[fips1661840] +centroid = (0.81113178658104335, -2.0320138933342644) +description = Peck city, ID +station = ('kgic', 0.0099756289334576326) +zone = ('idz026', 0.0033591735552557112) + +[fips1662740] +centroid = (0.8114560687560638, -2.0210838038002352) +description = Pierce city, ID +station = ('kp69', 0.0065625759650064473) +zone = ('idz005', 0.0046882006464262337) + +[fips1663100] +centroid = (0.82966519356187574, -2.0286266630417491) +description = Pinehurst city, ID +station = ('kmlp', 0.0068320133625643696) +zone = ('idz004', 0.0042938823940727325) + +[fips1663550] +centroid = (0.76694970159131037, -2.0236325430135076) +description = Placerville city, ID +station = ('kboi', 0.0075029785740798986) +zone = ('idz013', 0.0068312234100155224) + +[fips1663910] +centroid = (0.826059430593718, -2.0400277122211365) +description = Plummer city, ID +station = ('kcoe', 0.0076685161949108134) +zone = ('idz002', 0.0047878073921005489) + +[fips1664090] +centroid = (0.74825036615849083, -1.9628945439920367) +description = Pocatello city, ID +station = ('kpih', 0.0018903590509961861) +zone = ('idz021', 0.0035285675657309263) + +[fips1664450] +centroid = (0.84319976812548625, -2.0340017709924085) +description = Ponderay city, ID +station = ('kszt', 0.00031915232563221229) +zone = ('idz001', 0.0032933145986568119) + +[fips1664810] +centroid = (0.8328743304575178, -2.0409671356910226) +description = Post Falls city, ID +station = ('kcoe', 0.001647104664796988) +zone = ('idz002', 0.0025274359308338681) + +[fips1664900] +centroid = (0.81896070528695908, -2.040238722527703) +description = Potlatch city, ID +station = ('kpuw', 0.0039987958308702609) +zone = ('idz003', 0.00025990996706016855) + +[fips1665260] +centroid = (0.734763683429555, -1.9526463720500538) +description = Preston city, ID +station = ('klgu', 0.0055192693642327918) +zone = ('idz024', 0.00095974749858947315) + +[fips1665530] +centroid = (0.84095108591721679, -2.0399875347417558) +description = Priest River city, ID +station = ('kszt', 0.0042663832358276867) +zone = ('idz001', 0.0066808222382769324) + +[fips1665620] +centroid = (0.81885984270948631, -2.0390000623575624) +description = Princeton CDP, ID +station = ('kpuw', 0.0045336574254685571) +zone = ('idz003', 0.00066813297829666871) + +[fips1666340] +centroid = (0.83425734681009056, -2.0401395703728968) +description = Rathdrum city, ID +station = ('kcoe', 0.0010463110312328497) +zone = ('idz002', 0.003580133510690889) + +[fips1667150] +centroid = (0.80847043872443225, -2.0340338152374748) +description = Reubens city, ID +station = ('klws', 0.0057773282376628685) +zone = ('idz027', 0.0023286618021522501) + +[fips1667420] +centroid = (0.76485377059917536, -1.9511208146574708) +description = Rexburg city, ID +station = ('krxe', 0.00021466081493663712) +zone = ('idz019', 0.0062167547670781316) + +[fips1667600] +centroid = (0.75140696864364764, -1.9923948844074082) +description = Richfield city, ID +station = ('kjer', 0.0067208787180355637) +zone = ('idz017', 0.0051189918174115636) + +[fips1667780] +centroid = (0.76224658030925374, -1.9532391033173238) +description = Rigby city, ID +station = ('krxe', 0.0031284491815610537) +zone = ('idz020', 0.0072221331361866222) + +[fips1667870] +centroid = (0.79270004502913949, -2.0301631461954495) +description = Riggins city, ID +station = ('kgic', 0.0094569553528507655) +zone = ('idz008', 0.0045717603768733739) + +[fips1667960] +centroid = (0.76152687633890137, -1.95078981296483) +description = Ririe city, ID +station = ('krxe', 0.0035268052372865637) +zone = ('idz020', 0.0089197800979509117) + +[fips1668230] +centroid = (0.75392209281552658, -1.9623718527876495) +description = Riverside CDP, ID +station = ('kpih', 0.0053157276311513735) +zone = ('idz021', 0.0044295377005931953) + +[fips1668500] +centroid = (0.7630759084099239, -1.9570177760544765) +description = Roberts city, ID +station = ('kida', 0.0036523323972720485) +zone = ('idz020', 0.0048099268764872152) + +[fips1668545] +centroid = (0.7620462339644174, -2.0248481124776441) +description = Robie Creek CDP, ID +station = ('kboi', 0.0032193827723727346) +zone = ('idz013', 0.0070344180583160349) + +[fips1668860] +centroid = (0.75379435216757307, -1.9640297934039965) +description = Rockford CDP, ID +station = ('kpih', 0.0048388091372938181) +zone = ('idz021', 0.0036148231903163851) + +[fips1668950] +centroid = (0.82918213878480129, -2.0400549219041753) +description = Rockford Bay CDP, ID +station = ('kcoe', 0.0045778159920369403) +zone = ('idz002', 0.0017909108790120016) + +[fips1669130] +centroid = (0.74304523582368298, -1.9700360298654696) +description = Rockland city, ID +station = ('kpih', 0.0069501241848964161) +zone = ('idz022', 0.0061019756258339514) + +[fips1670660] +centroid = (0.74384094888295971, -1.9839848059671634) +description = Rupert city, ID +station = ('kbyi', 0.0016933523988327222) +zone = ('idz017', 0.0061666782684457857) + +[fips1671020] +centroid = (0.76733077678019079, -1.949267990576846) +description = St. Anthony city, ID +station = ('krxe', 0.0027136589338772068) +zone = ('idz019', 0.0040935052415001514) + +[fips1671110] +centroid = (0.73499553296738984, -1.9441251335897494) +description = St. Charles city, ID +station = ('klgu', 0.0082803108488621255) +zone = ('idz025', 0.0027903974437027998) + +[fips1671470] +centroid = (0.82579602550300713, -2.0345540455276172) +description = St. Maries city, ID +station = ('kcoe', 0.0084023062740618201) +zone = ('idz002', 0.0057744722835039357) + +[fips1671650] +centroid = (0.78845201834954037, -1.9878590703874477) +description = Salmon city, ID +station = ('ksmn', 0.0010293929622981481) +zone = ('idz010', 0.0074639605348286045) + +[fips1672100] +centroid = (0.84265747687359915, -2.0343569454951895) +description = Sandpoint city, ID +station = ('kszt', 0.00032685649161382142) +zone = ('idz001', 0.0038272104224068518) + +[fips1673450] +centroid = (0.75711475380302984, -1.9569696747802916) +description = Shelley city, ID +station = ('kida', 0.0025100090323311361) +zone = ('idz020', 0.0059919402852031001) + +[fips1673900] +centroid = (0.749383922601076, -1.9967496379707668) +description = Shoshone city, ID +station = ('kjer', 0.0035923479914258863) +zone = ('idz016', 0.004044342576231711) + +[fips1675070] +centroid = (0.8297718157258801, -2.0276789841645013) +description = Smelterville city, ID +station = ('kmlp', 0.0062354455174188422) +zone = ('idz004', 0.0042642375007218665) + +[fips1675160] +centroid = (0.77316618041447882, -2.025949903927843) +description = Smiths Ferry CDP, ID +station = ('kmyl', 0.010195951465063491) +zone = ('idz011', 0.0085501516912366658) + +[fips1675195] +centroid = (0.74452033574759113, -1.9475445303003793) +description = Soda Springs city, ID +station = ('ku78', 0.00014186717026327381) +zone = ('idz023', 0.0047484334606799298) + +[fips1675970] +centroid = (0.77424153012650998, -1.9580296830481976) +description = Spencer city, ID +station = ('krxe', 0.010404397193539448) +zone = ('idz019', 0.0055863770655908453) + +[fips1676060] +centroid = (0.83716515261037572, -2.0397272014305283) +description = Spirit Lake city, ID +station = ('kcoe', 0.0035305995241598164) +zone = ('idz002', 0.0064095987479998971) + +[fips1676780] +centroid = (0.77164353772174632, -2.0060056076862831) +description = Stanley city, ID +station = ('ksnt', 5.9669928272854045e-05) +zone = ('idz018', 0.0045313144481447729) + +[fips1676870] +centroid = (0.76277110410935556, -2.0332842486836209) +description = Star city, ID +station = ('kman', 0.002154619397695109) +zone = ('idz012', 0.0029255812753397467) + +[fips1677050] +centroid = (0.83261703401918874, -2.0426613442492263) +description = State Line city, ID +station = ('ksff', 0.0033211161865316177) +zone = ('idz002', 0.0031491016401716423) + +[fips1677500] +centroid = (0.80446550150305085, -2.024172163911639) +description = Stites city, ID +station = ('kgic', 0.0031649032785404946) +zone = ('idz007', 0.0023398280716336278) + +[fips1678040] +centroid = (0.76576800896795516, -1.9504490897882556) +description = Sugar City city, ID +station = ('krxe', 0.00094510555507344967) +zone = ('idz019', 0.0053584483206740741) + +[fips1678850] +centroid = (0.76242704735390998, -1.9955082899935783) +description = Sun Valley city, ID +station = ('ksun', 0.0032378193990558087) +zone = ('idz031', 0.0016349324799085931) + +[fips1679120] +centroid = (0.75822504500668597, -1.9429960800966344) +description = Swan Valley city, ID +station = ('kdij', 0.0059140928046028498) +zone = ('idz023', 0.009930885638095072) + +[fips1679300] +centroid = (0.80926793201954605, -2.0385005840322266) +description = Sweetwater CDP, ID +station = ('klws', 0.0026398008784443727) +zone = ('idz026', 0.0018416540313697276) + +[fips1680200] +centroid = (0.82308690798476891, -2.0407046556248152) +description = Tensed city, ID +station = ('kpuw', 0.0075059331867108675) +zone = ('idz003', 0.0040260794278479794) + +[fips1680380] +centroid = (0.76598614021786937, -1.9490485154234076) +description = Teton city, ID +station = ('krxe', 0.001867391890504472) +zone = ('idz019', 0.0053996259809295198) + +[fips1680470] +centroid = (0.76470988565564102, -1.9400857610222264) +description = Tetonia city, ID +station = ('kdij', 0.0014983848884872557) +zone = ('wyz013', 0.0066459646610851301) + +[fips1682360] +centroid = (0.81572346859036005, -2.0380598883960981) +description = Troy city, ID +station = ('kpuw', 0.0041252501753179299) +zone = ('idz003', 0.0036042468613517141) + +[fips1682810] +centroid = (0.74286126066723035, -1.9977734655632791) +description = Twin Falls city, ID +station = ('ktwf', 0.0014093590122757228) +zone = ('idz016', 0.0036827123356467234) + +[fips1683260] +centroid = (0.74968565512216079, -1.9627310590010023) +description = Tyhee CDP, ID +station = ('kpih', 0.0019484861985016241) +zone = ('idz021', 0.0028779740108656115) + +[fips1683350] +centroid = (0.76085167826447486, -1.9540548003965357) +description = Ucon city, ID +station = ('kida', 0.0019115093076690663) +zone = ('idz020', 0.006555486937860784) + +[fips1684250] +centroid = (0.76101469201661109, -1.9393643989890845) +description = Victor city, ID +station = ('kdij', 0.0024023803373136605) +zone = ('wyz013', 0.0054963777354103275) + +[fips1684790] +centroid = (0.82856397807032989, -2.0232175037173832) +description = Wallace city, ID +station = ('kmlp', 0.0030379779037356469) +zone = ('idz004', 0.0038868339429758681) + +[fips1685240] +centroid = (0.8293662361143016, -2.026943642044051) +description = Wardner city, ID +station = ('kmlp', 0.0056579374568310964) +zone = ('idz004', 0.0038209693867659127) + +[fips1685420] +centroid = (0.77005612586047256, -1.9429210832986763) +description = Warm River city, ID +station = ('kdij', 0.0072069108446751341) +zone = ('idz019', 0.0063195723644554275) + +[fips1686050] +centroid = (0.80949798386825134, -2.0235159724727665) +description = Weippe city, ID +station = ('kp69', 0.0058431894911018063) +zone = ('idz007', 0.0033904826073276511) + +[fips1686140] +centroid = (0.77243101282695359, -2.0415186073747753) +description = Weiser city, ID +station = ('kono', 0.0042350922648788526) +zone = ('orz064', 0.0048750653944816934) + +[fips1686320] +centroid = (0.74655900248696805, -2.001944086890552) +description = Wendell city, ID +station = ('kjer', 0.0033209969716523811) +zone = ('idz016', 0.0014532205103207254) + +[fips1687040] +centroid = (0.73370477471907747, -1.9543835680677339) +description = Weston city, ID +station = ('klgu', 0.0047482608137526007) +zone = ('idz024', 0.0016201152290701685) + +[fips1687310] +centroid = (0.79871322790103549, -2.0298194559591471) +description = White Bird city, ID +station = ('kgic', 0.0038006147104684288) +zone = ('idz008', 0.0025059742238785986) + +[fips1687670] +centroid = (0.76233168256358097, -2.0404222788051349) +description = Wilder city, ID +station = ('keul', 0.0035512503273773342) +zone = ('idz012', 0.0034086245172763557) + +[fips1687850] +centroid = (0.80705352807778563, -2.0354724552333092) +description = Winchester city, ID +station = ('klws', 0.0052198318713144879) +zone = ('idz027', 0.00094129643464966716) + +[fips1688480] +centroid = (0.82729793368422577, -2.0406267441270063) +description = Worley city, ID +station = ('kcoe', 0.0065009382120921775) +zone = ('idz002', 0.0036823230007905056) + +[fips1688660] +centroid = (0.78471228390799952, -2.0156006774221695) +description = Yellow Pine CDP, ID +station = ('kmyl', 0.00751153981693088) +zone = ('idz011', 0.0060634014642704749) + +[fips17001] +centroid = (0.69788827972695611, -1.5916523306778207) +description = Adams County, IL +station = ('kuin', 0.00092259781473225252) +zone = ('ilz095', 9.0362496764535784e-05) + +[fips1700105742] +centroid = (0.69475220231380264, -1.5875284143613309) +description = Beverly township, IL +station = ('kppq', 0.0037954569921263355) +zone = ('ilz097', 0.0033530138191258953) + +[fips1700110019] +centroid = (0.69623475479361674, -1.5918430253518936) +description = Burton township, IL +station = ('kuin', 0.00073761546864783176) +zone = ('ilz095', 0.0016998304652052299) + +[fips1700110890] +centroid = (0.6991917963321006, -1.5899609844595906) +description = Camp Point township, IL +station = ('kuin', 0.0026081771908617974) +zone = ('ilz095', 0.0017564463382506649) + +[fips1700113] +centroid = (0.7121597148474661, -1.5777946433097885) +description = Abingdon city, IL +station = ('kgbg', 0.0023776488016494213) +zone = ('ilz027', 0.0033362720145932393) + +[fips1700114780] +centroid = (0.69917788605796227, -1.5877313612467525) +description = Clayton township, IL +station = ('kuin', 0.0037835097238980587) +zone = ('ilz095', 0.0031776684800000976) + +[fips1700115859] +centroid = (0.69783160888614382, -1.5899587504381478) +description = Columbus township, IL +station = ('kuin', 0.0016156537252678515) +zone = ('ilz095', 0.0012157006495046817) + +[fips1700116015] +centroid = (0.69781288150327003, -1.5876981650843798) +description = Concord township, IL +station = ('kuin', 0.0032114514361816803) +zone = ('ilz095', 0.0029465792108400242) + +[fips1700123412] +centroid = (0.69790732126909549, -1.5937393255841854) +description = Ellington township, IL +station = ('kuin', 0.0017971750349074218) +zone = ('ilz095', 0.0016841250733325918) + +[fips1700125258] +centroid = (0.69480454473806996, -1.5938513757221635) +description = Fall Creek township, IL +station = ('kuin', 0.0027030252330633104) +zone = ('ilz095', 0.0035831861709479246) + +[fips1700129288] +centroid = (0.6978094082980586, -1.5919810459891413) +description = Gilmer township, IL +station = ('kuin', 0.00086126601026973652) +zone = ('ilz095', 0.00035423689595967355) + +[fips1700135957] +centroid = (0.69928925551753196, -1.5917574693119607) +description = Honey Creek township, IL +station = ('kuin', 0.002321144914536416) +zone = ('ilz095', 0.0013804442312667082) + +[fips1700136295] +centroid = (0.70087712116441137, -1.5898661258147444) +description = Houston township, IL +station = ('kuin', 0.0041639541958369093) +zone = ('ilz095', 0.0032241440411535259) + +[fips1700139220] +centroid = (0.70066204424068823, -1.5918003520516821) +description = Keene township, IL +station = ('kuin', 0.0036941825984144238) +zone = ('ilz095', 0.0027504274011691796) + +[fips1700143146] +centroid = (0.69607605200473288, -1.5898525995130415) +description = Liberty township, IL +station = ('kuin', 0.0017007436083545738) +zone = ('ilz095', 0.0022521694712913142) + +[fips1700143458] +centroid = (0.70096777356576001, -1.5953389198436381) +description = Lima township, IL +station = ('kuin', 0.0048565220957345707) +zone = ('ilz095', 0.0042119881572175713) + +[fips1700145746] +centroid = (0.69613973906913817, -1.5881025578720669) +description = McKee township, IL +station = ('kuin', 0.0029107144892967351) +zone = ('ilz095', 0.003180721013366211) + +[fips1700148203] +centroid = (0.69609102692971492, -1.5942369538605139) +description = Melrose township, IL +station = ('kuin', 0.0021064368076323674) +zone = ('ilz095', 0.0027591408199524785) + +[fips1700148320] +centroid = (0.69990556618299626, -1.5933238150491629) +description = Mendon township, IL +station = ('kuin', 0.0031779211862250243) +zone = ('ilz095', 0.0024102783683618775) + +[fips1700153624] +centroid = (0.70065544689611559, -1.587778328056924) +description = Northeast township, IL +station = ('kuin', 0.0047746231287473725) +zone = ('ilz095', 0.0039727460557769257) + +[fips1700158278] +centroid = (0.69471876180533454, -1.5917011998968764) +description = Payson township, IL +station = ('kuin', 0.0022495861074446669) +zone = ('ilz095', 0.0032023591358055375) + +[fips1700162380] +centroid = (0.69697411117134656, -1.5948697229808246) +description = Quincy township, IL +station = ('kuin', 0.0023996340359417347) +zone = ('ilz095', 0.0027204566433461303) + +[fips1700163550] +centroid = (0.69450550002403333, -1.5900169746219945) +description = Richfield township, IL +station = ('kuin', 0.002795419116037381) +zone = ('ilz095', 0.0036080946541082871) + +[fips1700164408] +centroid = (0.69810436894164563, -1.5958024967462603) +description = Riverside township, IL +station = ('kuin', 0.0033142441820416921) +zone = ('moz027', 0.0042104789304405407) + +[fips1700177057] +centroid = (0.6995602178839041, -1.5953198259416213) +description = Ursa township, IL +station = ('kuin', 0.0037730905136962979) +zone = ('ilz095', 0.0033262570458073783) + +[fips1700178] +centroid = (0.70543253523187166, -1.5794771232554183) +description = Adair CDP, IL +station = ('kmqb', 0.002722109659513995) +zone = ('ilz035', 0.0024889236821237755) + +[fips1700230] +centroid = (0.67005434477480375, -1.5618386687551309) +description = Addieville village, IL +station = ('ksar', 0.0051307618276123946) +zone = ('ilz074', 0.001246740966859362) + +[fips1700243] +centroid = (0.7318405187318523, -1.5360440812207639) +description = Addison village, IL +station = ('kord', 0.0015012331373203752) +zone = ('ilz013', 0.0017076955020155246) + +[fips1700295] +centroid = (0.73549080504922826, -1.5619276805469828) +description = Adeline village, IL +station = ('kfep', 0.0021861963919211692) +zone = ('ilz008', 0.0027980677757261951) + +[fips17003] +centroid = (0.64897769636784275, -1.5594430647304287) +description = Alexander County, IL +station = ('kcir', 0.0027580584764391246) +zone = ('ilz092', 0.00021452045302838867) + +[fips1700390576] +centroid = (0.6470580261768667, -1.5581994827317978) +description = Cache precinct, IL +station = ('kcir', 0.00083474952377757966) +zone = ('ilz092', 0.0022157279888848289) + +[fips1700390612] +centroid = (0.6458815695412673, -1.5565348924110005) +description = Cairo precinct, IL +station = ('kcir', 0.0011356871750077529) +zone = ('kyz004', 0.0027160084602205242) + +[fips1700391980] +centroid = (0.65088619645160595, -1.5608579507951428) +description = McClure precinct, IL +station = ('kcgi', 0.0023639200571592615) +zone = ('ilz092', 0.0021929322560536872) + +[fips1700392304] +centroid = (0.6485435980762867, -1.5596495022743544) +description = Olive Branch precinct, IL +station = ('kcir', 0.0025715215212738112) +zone = ('ilz092', 0.00065912445066211339) + +[fips1700393114] +centroid = (0.64914557958859209, -1.5586753292990614) +description = Sandusky precinct, IL +station = ('kcir', 0.0025480381452724224) +zone = ('ilz092', 0.00044715850852981436) + +[fips1700393402] +centroid = (0.65093887048843113, -1.5583510820306259) +description = Tamms precinct, IL +station = ('kcir', 0.0041498120876041784) +zone = ('ilz092', 0.0019557901950374612) + +[fips1700393420] +centroid = (0.64945603875593672, -1.5603150661313099) +description = Thebes precinct, IL +station = ('kcgi', 0.0025846775455922602) +zone = ('ilz092', 0.00092554708745500296) + +[fips17005] +centroid = (0.67868740648028347, -1.5609630021628205) +description = Bond County, IL +station = ('k3lf', 0.0058013575398823455) +zone = ('ilz064', 2.0380899462060282e-05) + +[fips1700509694] +centroid = (0.67692992973669519, -1.5628879432481373) +description = Burgess township, IL +station = ('kblv', 0.0058238595046699471) +zone = ('ilz064', 0.002330576325503206) + +[fips1700512112] +centroid = (0.67840836323947462, -1.5608790518257993) +description = Central township, IL +station = ('k3lf', 0.0060706053514090275) +zone = ('ilz064', 0.00029886881218571016) + +[fips1700516] +centroid = (0.72930495675443252, -1.5745770241139816) +description = Albany village, IL +station = ('kcwi', 0.001727747542318585) +zone = ('iaz066', 0.0045420970151318005) + +[fips1700540741] +centroid = (0.6802383933200683, -1.5608441976006371) +description = Lagrange township, IL +station = ('k3lf', 0.0046575381810525212) +zone = ('ilz064', 0.0015377258361228593) + +[fips1700549321] +centroid = (0.67698618169848712, -1.5606901373875635) +description = Mills township, IL +station = ('kenl', 0.0065499111135274507) +zone = ('ilz064', 0.0017280170453479713) + +[fips1700551297] +centroid = (0.6801683707104782, -1.5587605537264362) +description = Mulberry Grove township, IL +station = ('k3lf', 0.0059582301793129032) +zone = ('ilz064', 0.0022445003294883342) + +[fips1700555] +centroid = (0.67274037158703792, -1.5640643649771517) +description = Albers village, IL +station = ('kblv', 0.0032185933619188283) +zone = ('ilz069', 0.0028285031205497546) + +[fips1700555730] +centroid = (0.67853503923658443, -1.5630736637338423) +description = Old Ripley township, IL +station = ('k3lf', 0.0052212115476023679) +zone = ('ilz064', 0.0016649645371007878) + +[fips1700560586] +centroid = (0.67855439493798908, -1.5589817567558339) +description = Pleasant Mound township, IL +station = ('kslo', 0.0063841014186903052) +zone = ('ilz064', 0.0015359679413534521) + +[fips1700568] +centroid = (0.66979818280048864, -1.5369205855711152) +description = Albion city, IL +station = ('kcul', 0.0050881707553372341) +zone = ('ilz077', 0.0007008330500977237) + +[fips1700569641] +centroid = (0.68020299804283779, -1.5628031202464905) +description = Shoal Creek township, IL +station = ('k3lf', 0.0037622249301508897) +zone = ('ilz064', 0.0020829595296713169) + +[fips1700574418] +centroid = (0.6768295733047055, -1.5587998585411911) +description = Tamalco township, IL +station = ('kenl', 0.0055118661210223534) +zone = ('ilz064', 0.0025105098105788069) + +[fips1700646] +centroid = (0.7190499780283669, -1.5837822920147278) +description = Aledo city, IL +station = ('kmli', 0.0053051874350546922) +zone = ('ilz024', 0.00012316001834481236) + +[fips1700672] +centroid = (0.7166829450435197, -1.5804898854604732) +description = Alexis village, IL +station = ('kgbg', 0.0027255544333377327) +zone = ('ilz024', 0.0034863206442174843) + +[fips1700685] +centroid = (0.73587189769140127, -1.5413981405006443) +description = Algonquin village, IL +station = ('kdpa', 0.0046572648097940898) +zone = ('ilz005', 0.0033350768733797016) + +[fips17007] +centroid = (0.73860558944550758, -1.5502764035127368) +description = Boone County, IL +station = ('krfd', 0.004122589186519943) +zone = ('ilz004', 7.2777509265796429e-05) + +[fips1700705105] +centroid = (0.73795671093620097, -1.5514249523335966) +description = Belvidere township, IL +station = ('krfd', 0.0030649753900515251) +zone = ('ilz004', 0.0011228608884597518) + +[fips1700707302] +centroid = (0.73817972910802088, -1.5490647086795395) +description = Bonus township, IL +station = ('krfd', 0.0047547678536766953) +zone = ('ilz004', 0.0010149447832388063) + +[fips1700707328] +centroid = (0.73950858789390439, -1.5488076216807207) +description = Boone township, IL +station = ('kjvl', 0.0057151370117648542) +zone = ('ilz004', 0.0013580424230456871) + +[fips1700710435] +centroid = (0.73951591827676266, -1.5516224712450448) +description = Caledonia township, IL +station = ('krfd', 0.0039365522315383244) +zone = ('ilz004', 0.001309910217206523) + +[fips1700726441] +centroid = (0.73663542687927119, -1.5514338360594893) +description = Flora township, IL +station = ('krfd', 0.002709252724880447) +zone = ('ilz004', 0.0022188866571758981) + +[fips1700737] +centroid = (0.67871397039149872, -1.5662039466538789) +description = Alhambra village, IL +station = ('kaln', 0.0042591471560492955) +zone = ('ilz100', 0.0024971820278404939) + +[fips1700742951] +centroid = (0.74084256049449615, -1.5491419045923553) +description = LeRoy township, IL +station = ('kjvl', 0.0046016850345449454) +zone = ('ilz004', 0.0023174823574339462) + +[fips1700746318] +centroid = (0.74088535596775495, -1.551543634722732) +description = Manchester township, IL +station = ('kjvl', 0.0034030373390104072) +zone = ('ilz004', 0.00240264299800645) + +[fips1700761158] +centroid = (0.73949246105161581, -1.550253958578556) +description = Poplar Grove township, IL +station = ('krfd', 0.0046447799129475959) +zone = ('ilz004', 0.0008150320069127934) + +[fips1700771578] +centroid = (0.73647862649927209, -1.5491109599047175) +description = Spring township, IL +station = ('kdkb', 0.0046718090503807212) +zone = ('ilz004', 0.00235774741648108) + +[fips1700815] +centroid = (0.6724338045039252, -1.5308327724204041) +description = Allendale village, IL +station = ('kajg', 0.0013929120644880261) +zone = ('ilz078', 0.0023189919135001673) + +[fips1700867] +centroid = (0.69042879486380992, -1.5452950069347422) +description = Allenville village, IL +station = ('kmto', 0.0040015676744196678) +zone = ('ilz054', 0.00180500705053626) + +[fips1700880] +centroid = (0.69666742191518616, -1.5347597806906839) +description = Allerton village, IL +station = ('kprg', 0.0051830457676157122) +zone = ('ilz055', 0.0045653259865768231) + +[fips17009] +centroid = (0.69746967995915787, -1.5838917067055351) +description = Brown County, IL +station = ('kppq', 0.0056530594542234386) +zone = ('ilz096', 4.8468417667634266e-06) + +[fips1700909291] +centroid = (0.69617152151481698, -1.5856901463266677) +description = Buckhorn township, IL +station = ('kppq', 0.0044575133177867567) +zone = ('ilz096', 0.0018899532216357328) + +[fips1700916262] +centroid = (0.69758659956574887, -1.5814311764326585) +description = Cooperstown township, IL +station = ('kijx', 0.0060162588906959068) +zone = ('ilz096', 0.0018909520181074457) + +[fips1700919] +centroid = (0.67584555667243118, -1.5518060449757693) +description = Alma village, IL +station = ('kslo', 0.0015721183092323448) +zone = ('ilz070', 0.0012863860089453417) + +[fips1700923308] +centroid = (0.69611118548257556, -1.5837291292857119) +description = Elkhorn township, IL +station = ('kppq', 0.0043112656665883148) +zone = ('ilz096', 0.0013596398773412311) + +[fips1700942561] +centroid = (0.69757314307721607, -1.5859381750666688) +description = Lee township, IL +station = ('kuin', 0.0044888322784400712) +zone = ('ilz096', 0.0015710148240708514) + +[fips1700949685] +centroid = (0.69915989171337423, -1.5837517662061105) +description = Missouri township, IL +station = ('kppq', 0.0073466588227826847) +zone = ('ilz096', 0.0016983687847041606) + +[fips1700951167] +centroid = (0.69770927875887168, -1.5836609043652516) +description = Mount Sterling township, IL +station = ('kppq', 0.0059061045911638094) +zone = ('ilz096', 0.00030231653248523577) + +[fips1700958] +centroid = (0.67344688086824533, -1.5728261970748436) +description = Alorton village, IL +station = ('kcps', 0.00056686562048941576) +zone = ('moz064', 0.0019612091102938151) + +[fips1700958330] +centroid = (0.69920074987116343, -1.5857261350158438) +description = Pea Ridge township, IL +station = ('kuin', 0.0051197184639754801) +zone = ('ilz096', 0.0022323909987825128) + +[fips1700964187] +centroid = (0.69869767616756862, -1.5822619357033154) +description = Ripley township, IL +station = ('kppq', 0.007058631504473608) +zone = ('ilz096', 0.0017553801898414737) + +[fips1700971] +centroid = (0.71893183669129945, -1.5774386485022591) +description = Alpha village, IL +station = ('kgbg', 0.0044776326943018179) +zone = ('ilz016', 0.004314287128026245) + +[fips1700977733] +centroid = (0.6961473137980918, -1.5817989696659314) +description = Versailles township, IL +station = ('kppq', 0.0047524342605642514) +zone = ('ilz096', 0.0020774658272607587) + +[fips1700997] +centroid = (0.69044197209966252, -1.5783638300854488) +description = Alsey village, IL +station = ('kijx', 0.0045728173200425375) +zone = ('ilz049', 0.0015797566130357581) + +[fips1701010] +centroid = (0.72728374330757528, -1.5312802050274454) +description = Alsip village, IL +station = ('kmdw', 0.0019815344194755655) +zone = ('ilz014', 0.003141679257189927) + +[fips1701049] +centroid = (0.68167603847822855, -1.5489359033807424) +description = Altamont city, IL +station = ('k1h2', 0.0029115466875697599) +zone = ('ilz066', 0.0021362057487172726) + +[fips17011] +centroid = (0.72258906941909851, -1.5625649526167635) +description = Bureau County, IL +station = ('ksqi', 0.0063480831126774022) +zone = ('ilz017', 4.898226561532114e-05) + +[fips1701102076] +centroid = (0.72057237637500404, -1.5613404994267341) +description = Arispie township, IL +station = ('kvys', 0.0041636449873752503) +zone = ('ilz017', 0.0022625393910422429) + +[fips1701105430] +centroid = (0.72356203811720776, -1.5593507891728755) +description = Berlin township, IL +station = ('kvys', 0.0031028744413240067) +zone = ('ilz017', 0.0025849230491868072) + +[fips1701109668] +centroid = (0.72347669151678518, -1.5632819862333602) +description = Bureau township, IL +station = ('ksqi', 0.0053508455526909693) +zone = ('ilz017', 0.00099404919651958608) + +[fips1701114] +centroid = (0.67897016727239901, -1.573485582466247) +description = Alton city, IL +station = ('kaln', 0.0014142147127372661) +zone = ('ilz100', 0.0036107187533305708) + +[fips1701114598] +centroid = (0.72501642098289454, -1.5572100381255496) +description = Clarion township, IL +station = ('kvys', 0.0034087724346615438) +zone = ('ilz010', 0.0037351693324942305) + +[fips1701116028] +centroid = (0.72189856480713199, -1.5651669418255141) +description = Concord township, IL +station = ('ksqi', 0.0067778639433510174) +zone = ('ilz017', 0.0020836319548164129) + +[fips1701120539] +centroid = (0.72346147224570789, -1.5612412774587583) +description = Dover township, IL +station = ('kvys', 0.0042869593748908804) +zone = ('ilz017', 0.0012929606603655718) + +[fips1701124790] +centroid = (0.72502153479760301, -1.567335408701362) +description = Fairfield township, IL +station = ('ksqi', 0.0040557823861756071) +zone = ('ilz009', 0.0040387781406220347) + +[fips1701130146] +centroid = (0.72360492085692918, -1.5672433949431968) +description = Gold township, IL +station = ('ksqi', 0.0053453987492071992) +zone = ('ilz017', 0.0036344237707342407) + +[fips1701131602] +centroid = (0.72513508591873765, -1.565033267058104) +description = Greenville township, IL +station = ('ksqi', 0.0035401127960033715) +zone = ('ilz017', 0.003104929957233285) + +[fips1701132265] +centroid = (0.72184775827260628, -1.557240092695269) +description = Hall township, IL +station = ('kvys', 0.00092788350991922675) +zone = ('ilz018', 0.0028155964926881781) + +[fips1701137413] +centroid = (0.72041051454017413, -1.5633378542227165) +description = Indiantown township, IL +station = ('kc75', 0.0051149016764759393) +zone = ('ilz017', 0.0023006420563513102) + +[fips1701140] +centroid = (0.71760147692225928, -1.5736711982321965) +description = Altona village, IL +station = ('kgbg', 0.0046795391482971115) +zone = ('ilz027', 0.0032699800939637725) + +[fips1701141807] +centroid = (0.72497455053413928, -1.5592123496566075) +description = La Moille township, IL +station = ('kvys', 0.004035999943684053) +zone = ('ilz017', 0.0034339224485566166) + +[fips1701142665] +centroid = (0.72053404894463025, -1.559612396574457) +description = Leepertown township, IL +station = ('kvys', 0.002954177893756921) +zone = ('ilz018', 0.0016828713377923475) + +[fips1701145928] +centroid = (0.72039330559374937, -1.5653453842882381) +description = Macon township, IL +station = ('kc75', 0.005974522423737005) +zone = ('ilz017', 0.0030624049602475103) + +[fips1701146435] +centroid = (0.72344428075257572, -1.5652224782023128) +description = Manlius township, IL +station = ('ksqi', 0.0052338611864425431) +zone = ('ilz017', 0.0021456805245189991) + +[fips1701149438] +centroid = (0.71878933055787408, -1.5633658493039184) +description = Milo township, IL +station = ('kc75', 0.0037869905922798225) +zone = ('ilz028', 0.003329897698932991) + +[fips1701149529] +centroid = (0.72201618254542377, -1.5672181749355056) +description = Mineral township, IL +station = ('ksqi', 0.0068664212999190568) +zone = ('ilz017', 0.0035419253386989248) + +[fips1701152012] +centroid = (0.72047620873321916, -1.5672078425863336) +description = Neponset township, IL +station = ('kc75', 0.0070367147318664489) +zone = ('ilz028', 0.0032613329047764118) + +[fips1701155392] +centroid = (0.72509482117289425, -1.5612506847834267) +description = Ohio township, IL +station = ('ksqi', 0.0045362127910743783) +zone = ('ilz017', 0.0026485119100356628) + +[fips1701161912] +centroid = (0.72191303358663095, -1.5612398462887718) +description = Princeton township, IL +station = ('kvys', 0.0039266535038512424) +zone = ('ilz017', 0.0012338198213609787) + +[fips1701168562] +centroid = (0.72204044262202649, -1.5592535394269544) +description = Selby township, IL +station = ('kvys', 0.0024512541412759384) +zone = ('ilz017', 0.0025593586475534205) + +[fips1701178539] +centroid = (0.72507213189261832, -1.5634416664066251) +description = Walnut township, IL +station = ('ksqi', 0.0037814458308660813) +zone = ('ilz017', 0.002520238585106587) + +[fips1701180268] +centroid = (0.72340982795314124, -1.5571941381760639) +description = Westfield township, IL +station = ('kvys', 0.0019008184681969808) +zone = ('ilz017', 0.0041045526049840343) + +[fips1701181009] +centroid = (0.7188779583772904, -1.5620559447937117) +description = Wheatland township, IL +station = ('kc75', 0.0033096862589132403) +zone = ('ilz030', 0.0033891292020264505) + +[fips1701183635] +centroid = (0.7218350697289444, -1.5630727910692161) +description = Wyanet township, IL +station = ('kc75', 0.0063279695251090883) +zone = ('ilz017', 0.00088683522783832534) + +[fips1701205] +centroid = (0.65578397430513746, -1.5589201640865311) +description = Alto Pass village, IL +station = ('kmdh', 0.0037835855271926861) +zone = ('ilz088', 0.0019983347667627718) + +[fips1701242] +centroid = (0.70349035029354501, -1.5290289048252979) +description = Alvan village, IL +station = ('kdnv', 0.001883761163448876) +zone = ('ilz046', 0.0027309493364035841) + +[fips1701270] +centroid = (0.72830772797972054, -1.5597600514291756) +description = Amboy city, IL +station = ('ksqi', 0.0039112231860229246) +zone = ('ilz010', 0.00092451720388571996) + +[fips17013] +centroid = (0.68354532101369947, -1.5824253683344722) +description = Calhoun County, IL +station = ('kset', 0.0051200967386447463) +zone = ('ilz098', 8.7713287798619157e-05) + +[fips1701361] +centroid = (0.70804956917877471, -1.5452851632777609) +description = Anchor village, IL +station = ('kpnt', 0.0063078732773568175) +zone = ('ilz038', 0.0043160288103471015) + +[fips1701390360] +centroid = (0.68706736053763895, -1.5841559321009948) +description = Belleview precinct, IL +station = ('kppq', 0.0047649226126393667) +zone = ('ilz098', 0.0036819548372391) + +[fips1701390630] +centroid = (0.68662301716337371, -1.5820857098087415) +description = Carlin precinct, IL +station = ('kppq', 0.0054991557896447545) +zone = ('ilz098', 0.0030045214024074993) + +[fips1701390900] +centroid = (0.68535137027037063, -1.5819432909417788) +description = Crater precinct, IL +station = ('kset', 0.0064652973821693067) +zone = ('ilz098', 0.0017634802529893142) + +[fips1701391350] +centroid = (0.683081499764982, -1.5824088051598708) +description = Gilead precinct, IL +station = ('kset', 0.0047554548003800982) +zone = ('ilz098', 0.0005507776844847096) + +[fips1701391584] +centroid = (0.68506063332357348, -1.5830505627258291) +description = Hamburg precinct, IL +station = ('kset', 0.0066341565798464621) +zone = ('ilz098', 0.0015038443763131161) + +[fips1701391602] +centroid = (0.68330090510525021, -1.5817395062983159) +description = Hardin precinct, IL +station = ('kset', 0.0046071874522459772) +zone = ('ilz098', 0.0006401005227368975) + +[fips1701392502] +centroid = (0.67925266626512693, -1.5810891442591455) +description = Point precinct, IL +station = ('kset', 0.0021397401832588779) +zone = ('moz061', 0.0026491137104059795) + +[fips1701392988] +centroid = (0.68107632589395073, -1.5817851815648407) +description = Richwood precinct, IL +station = ('kset', 0.0030871518834153992) +zone = ('ilz098', 0.0026062003011389214) + +[fips1701426] +centroid = (0.72318796169862776, -1.5832861647215557) +description = Andalusia village, IL +station = ('kmli', 0.0026149716217337966) +zone = ('ilz015', 0.0020166658069094524) + +[fips1701491] +centroid = (0.72073191692192884, -1.5758706097956823) +description = Andover village, IL +station = ('kmli', 0.004010560051884886) +zone = ('ilz016', 0.0023223876470536723) + +[fips17015] +centroid = (0.73406949617286676, -1.5695132479952929) +description = Carroll County, IL +station = ('ksfy', 0.0023608409293127174) +zone = ('ilz007', 0.00019885032344127315) + +[fips1701512996] +centroid = (0.73560795154862213, -1.5669143480193184) +description = Cherry Grove-Shannon township, IL +station = ('kfep', 0.0030619761021046577) +zone = ('ilz007', 0.0024499536007457673) + +[fips1701523321] +centroid = (0.73264544712957946, -1.5658235695966993) +description = Elkhorn Grove township, IL +station = ('ksqi', 0.0040200460253042181) +zone = ('ilz007', 0.0032608302560575759) + +[fips1701524881] +centroid = (0.73263076891057022, -1.5693867290778158) +description = Fairhaven township, IL +station = ('ksfy', 0.0027269132930878076) +zone = ('ilz007', 0.0016204344058517734) + +[fips1701527832] +centroid = (0.73578463122880156, -1.5692613969842302) +description = Freedom township, IL +station = ('ksfy', 0.0031956722194809804) +zone = ('ilz007', 0.0015726414439261463) + +[fips1701543] +centroid = (0.65390053714943286, -1.557466845871688) +description = Anna city, IL +station = ('kmdh', 0.0055462769851055329) +zone = ('ilz088', 0.00027760729378491808) + +[fips1701550894] +centroid = (0.73425647329563293, -1.5713606091953589) +description = Mount Carroll township, IL +station = ('ksfy', 0.0010633842194363568) +zone = ('ilz007', 0.0012676363441907366) + +[fips1701556] +centroid = (0.68321632644969854, -1.5326725588915164) +description = Annapolis CDP, IL +station = ('krsv', 0.003188971495140852) +zone = ('ilz068', 0.0026028027603092843) + +[fips1701564892] +centroid = (0.73411370536281972, -1.5668224738874934) +description = Rock Creek-Lima township, IL +station = ('kfep', 0.0040557852801439412) +zone = ('ilz007', 0.0021051708982189224) + +[fips1701567210] +centroid = (0.73427572427728238, -1.5694731752356672) +description = Salem township, IL +station = ('ksfy', 0.0024189127855014135) +zone = ('ilz007', 0.00013852682086115656) + +[fips1701567834] +centroid = (0.73444486413509313, -1.5733052899545161) +description = Savanna township, IL +station = ('ksfy', 0.00076504863850592776) +zone = ('ilz007', 0.0027186902297315001) + +[fips1701569] +centroid = (0.72247550084467116, -1.5688415580326631) +description = Annawan town, IL +station = ('ksqi', 0.0068399702480254308) +zone = ('ilz016', 0.0032698597808574611) + +[fips1701579020] +centroid = (0.73577470030535774, -1.573597196271912) +description = Washington township, IL +station = ('ksfy', 0.0020532073439270514) +zone = ('ilz001', 0.0037071879874567234) + +[fips1701583076] +centroid = (0.73571062926851705, -1.571438695226093) +description = Woodland township, IL +station = ('ksfy', 0.0020858159078260383) +zone = ('ilz007', 0.0019799185294906824) + +[fips1701583700] +centroid = (0.73262958208667883, -1.5673419885926421) +description = Wysox township, IL +station = ('ksfy', 0.0041444397062585419) +zone = ('ilz007', 0.0023533418922802875) + +[fips1701583908] +centroid = (0.73279003020481481, -1.5718142028146596) +description = York township, IL +station = ('ksfy', 0.0012288270346819585) +zone = ('ilz007', 0.0021625675675254565) + +[fips1701595] +centroid = (0.7413180056360319, -1.5371182266556112) +description = Antioch village, IL +station = ('kenw', 0.0028129250639258624) +zone = ('wiz072', 0.0018230613340421481) + +[fips1701647] +centroid = (0.74062442924458183, -1.5736000760651778) +description = Apple Canyon Lake CDP, IL +station = ('kpvb', 0.0057234483519467408) +zone = ('ilz001', 0.0013753584461018162) + +[fips1701673] +centroid = (0.74179915800422169, -1.5724478271463036) +description = Apple River village, IL +station = ('kpvb', 0.0055192084861650339) +zone = ('wiz067', 0.0028077509066699977) + +[fips17017] +centroid = (0.69759417429470261, -1.5750846880335092) +description = Cass County, IL +station = ('kijx', 0.0034053347546346728) +zone = ('ilz047', 8.0037718429921788e-05) + +[fips1701701959] +centroid = (0.6967027822858316, -1.5766139629773992) +description = Arenzville township, IL +station = ('kijx', 0.0028149732708786304) +zone = ('ilz047', 0.0015030704623447515) + +[fips1701702518] +centroid = (0.69667077294734991, -1.571192237282419) +description = Ashland township, IL +station = ('kijx', 0.0038112479054704051) +zone = ('ilz048', 0.003529502558641073) + +[fips1701704364] +centroid = (0.69818755133379562, -1.5783845122370848) +description = Beardstown township, IL +station = ('kijx', 0.004783284623916609) +zone = ('ilz047', 0.0025582804439588241) + +[fips1701706938] +centroid = (0.69875865797163317, -1.5770864236059139) +description = Bluff Springs township, IL +station = ('kijx', 0.0048507445159189358) +zone = ('ilz047', 0.0018615071621090778) + +[fips1701712463] +centroid = (0.6993495915497735, -1.5724715112642531) +description = Chandlerville township, IL +station = ('kijx', 0.005501315498329714) +zone = ('ilz047', 0.0026294047378444367) + +[fips1701732148] +centroid = (0.69666206375438255, -1.5789351985226741) +description = Hagener township, IL +station = ('kijx', 0.0039270029746763654) +zone = ('ilz047', 0.0030982279546064783) + +[fips1701752662] +centroid = (0.69818753388050314, -1.5711952043421473) +description = Newmansville township, IL +station = ('kijx', 0.0049322784059547074) +zone = ('ilz048', 0.0029795724949049146) + +[fips1701757550] +centroid = (0.69807433182521872, -1.5726177349489854) +description = Panther Creek township, IL +station = ('kijx', 0.0042801154576053053) +zone = ('ilz047', 0.001954946054338338) + +[fips1701759481] +centroid = (0.69667257063647958, -1.5726701646397154) +description = Philadelphia township, IL +station = ('kijx', 0.0030422942539939761) +zone = ('ilz047', 0.0021231721745151736) + +[fips1701767600] +centroid = (0.69836592398334951, -1.574567302630048) +description = Sangamon Valley township, IL +station = ('kijx', 0.0041866621293698758) +zone = ('ilz047', 0.00081154641052102604) + +[fips1701778214] +centroid = (0.69687040370719311, -1.5746556861033691) +description = Virginia township, IL +station = ('kijx', 0.0026904594954764859) +zone = ('ilz047', 0.00087432041658722299) + +[fips1701881] +centroid = (0.69260906016540136, -1.5411405997162202) +description = Arcola city, IL +station = ('kmto', 0.003813612855811035) +zone = ('ilz055', 0.0018718539223964137) + +[fips17019] +centroid = (0.70056032645188193, -1.5393315484932355) +description = Champaign County, IL +station = ('kcmi', 0.0020667024823507914) +zone = ('ilz045', 3.0280574830852804e-05) + +[fips1701903246] +centroid = (0.69679099122622734, -1.5354338268478041) +description = Ayers township, IL +station = ('kcmi', 0.0043622985135873694) +zone = ('ilz055', 0.0042241055768163852) + +[fips1701908914] +centroid = (0.7041941368611192, -1.5427727443662225) +description = Brown township, IL +station = ('ktip', 0.0034803730593630975) +zone = ('ilz045', 0.0044555008906216791) + +[fips1701912398] +centroid = (0.69972267313067971, -1.5413072612064929) +description = Champaign township, IL +station = ('kcmi', 0.0011660873010065321) +zone = ('ilz045', 0.0017136617745351339) + +[fips1701912411] +centroid = (0.70013982427519894, -1.5406658701596776) +description = Champaign City township, IL +station = ('kcmi', 0.0014293947637020166) +zone = ('ilz045', 0.0010866728369021371) + +[fips1701915482] +centroid = (0.69845430745667048, -1.5428623844766047) +description = Colfax township, IL +station = ('kcmi', 0.0017941646423931424) +zone = ('ilz044', 0.0025649925498832838) + +[fips1701915976] +centroid = (0.7027473636309709, -1.5360031183432195) +description = Compromise township, IL +station = ('ktip', 0.00188104470365203) +zone = ('ilz045', 0.0033619601182880311) + +[fips1701916080] +centroid = (0.70260864486202246, -1.5407731555487976) +description = Condit township, IL +station = ('ktip', 0.0019395564872877623) +zone = ('ilz045', 0.0022989812156513803) + +[fips1701917588] +centroid = (0.69667353056756809, -1.5391601397073971) +description = Crittenden township, IL +station = ('kcmi', 0.0022991172147457193) +zone = ('ilz055', 0.0025961712788025179) + +[fips1701918121] +centroid = (0.70005376208978309, -1.5393336777949227) +description = Cunningham township, IL +station = ('kcmi', 0.0016291460779429198) +zone = ('ilz045', 0.00052368222899428505) + +[fips1701921566] +centroid = (0.70445729760573494, -1.5407914640526512) +description = East Bend township, IL +station = ('ktip', 0.0021980012510244371) +zone = ('ilz045', 0.0040302868655423098) + +[fips1701933422] +centroid = (0.70447944583394262, -1.5371006337367512) +description = Harwood township, IL +station = ('ktip', 0.001562984847169574) +zone = ('ilz045', 0.0042679764568378867) + +[fips1701934189] +centroid = (0.7013767740226724, -1.5410908927391234) +description = Hensley township, IL +station = ('kcmi', 0.0026959469548796895) +zone = ('ilz045', 0.0015427355826365394) + +[fips1701939688] +centroid = (0.70423246429149289, -1.5353555488308521) +description = Kerr township, IL +station = ('ktip', 0.0025018503473055688) +zone = ('ilz046', 0.0042788208167980086) + +[fips1701945187] +centroid = (0.70445885094876914, -1.5391127016583279) +description = Ludlow township, IL +station = ('ktip', 0.001327072623815405) +zone = ('ilz045', 0.0038867050913298155) + +[fips1701946] +centroid = (0.69604428701234666, -1.5772637490579167) +description = Arenzville village, IL +station = ('kijx', 0.0025623342898031141) +zone = ('ilz047', 0.0023158260214513225) + +[fips1701946149] +centroid = (0.70134968651268137, -1.5429997069821517) +description = Mahomet township, IL +station = ('kcmi', 0.0032368628260727294) +zone = ('ilz045', 0.0028834389342466678) + +[fips1701952376] +centroid = (0.70273703128179921, -1.542881687818132) +description = Newcomb township, IL +station = ('kcmi', 0.0044024997711386163) +zone = ('ilz045', 0.0034469891331408947) + +[fips1701955288] +centroid = (0.70072758135410051, -1.5354002467129957) +description = Ogden township, IL +station = ('ktip', 0.0033999137996627328) +zone = ('ilz046', 0.0032459141846219917) + +[fips1701959286] +centroid = (0.69672276630576691, -1.5408593399072612) +description = Pesotum township, IL +station = ('kcmi', 0.0020053281744503845) +zone = ('ilz055', 0.0027654073085326266) + +[fips1701959546] +centroid = (0.69844690726064196, -1.5392885784870511) +description = Philo township, IL +station = ('kcmi', 0.00099758599188255531) +zone = ('ilz045', 0.0021307958616835392) + +[fips1701962796] +centroid = (0.7028591170629761, -1.5387759054725703) +description = Rantoul township, IL +station = ('ktip', 0.00050034228820462952) +zone = ('ilz045', 0.0023260892607220775) + +[fips1701962952] +centroid = (0.69679661118641878, -1.5370470870352999) +description = Raymond township, IL +station = ('kcmi', 0.0032946363032647814) +zone = ('ilz055', 0.0033650773581650594) + +[fips1701966547] +centroid = (0.69692197818658952, -1.5428173375286109) +description = Sadorus township, IL +station = ('kcmi', 0.0024987863018158698) +zone = ('ilz044', 0.0029464202448950183) + +[fips1701966963] +centroid = (0.69993525423357261, -1.5369563473674888) +description = St. Joseph township, IL +station = ('kcmi', 0.0030050915194456827) +zone = ('ilz045', 0.0019501875770772919) + +[fips1701968289] +centroid = (0.69972735061307523, -1.542832940772124) +description = Scott township, IL +station = ('kcmi', 0.0020240956597089208) +zone = ('ilz045', 0.0027850598317601858) + +[fips1701969888] +centroid = (0.69820695939507782, -1.5372299975409089) +description = Sidney township, IL +station = ('kcmi', 0.0025879882494097002) +zone = ('ilz045', 0.0028783853710606954) + +[fips1701970382] +centroid = (0.70127697609604334, -1.5389042220791771) +description = Somer township, IL +station = ('ktip', 0.0020197368845111291) +zone = ('ilz045', 0.00078354234987572152) + +[fips1701970863] +centroid = (0.69854813635725765, -1.5353890416991978) +description = South Homer township, IL +station = ('kcmi', 0.0039506964823652962) +zone = ('ilz045', 0.003656342600318462) + +[fips1701972] +centroid = (0.69787210052479021, -1.550204042161949) +description = Argenta village, IL +station = ('kdec', 0.0027214944903071153) +zone = ('ilz053', 0.0028925231400520144) + +[fips1701972273] +centroid = (0.70129617471781525, -1.5372448677461359) +description = Stanton township, IL +station = ('ktip', 0.00214203642186564) +zone = ('ilz045', 0.0017725440058774743) + +[fips1701975627] +centroid = (0.69844317225604269, -1.5408644711752619) +description = Tolono township, IL +station = ('kcmi', 0.00036510970831784911) +zone = ('ilz045', 0.0024227533101717183) + +[fips1701977018] +centroid = (0.69951264020849468, -1.5385068629683756) +description = Urbana township, IL +station = ('kcmi', 0.0017520886651685632) +zone = ('ilz045', 0.0012502415378527613) + +[fips17021] +centroid = (0.69019959822643806, -1.558222852690482) +description = Christian County, IL +station = ('ktaz', 0.00067816716134060822) +zone = ('ilz052', 3.1234124181131116e-05) + +[fips1702102] +centroid = (0.72381694345446157, -1.5576763901016824) +description = Arlington village, IL +station = ('kvys', 0.0024329293503445077) +zone = ('ilz017', 0.0038538487571514548) + +[fips1702102622] +centroid = (0.68968854836816162, -1.5547601718144026) +description = Assumption township, IL +station = ('ktaz', 0.003334314456250907) +zone = ('ilz052', 0.002689761536040568) + +[fips1702104325] +centroid = (0.68915236576865646, -1.5605317662112377) +description = Bear Creek township, IL +station = ('ktaz', 0.0014154303287582273) +zone = ('ilz052', 0.0020953436368673869) + +[fips1702109239] +centroid = (0.69223667671619571, -1.5592085797454232) +description = Buckhart township, IL +station = ('ktaz', 0.0022380820075825008) +zone = ('ilz052', 0.0021805204441052769) + +[fips1702131641] +centroid = (0.68753491679095569, -1.5587077575165635) +description = Greenwood township, IL +station = ('ktaz', 0.0024817311260736555) +zone = ('ilz052', 0.0027000793692444438) + +[fips1702138492] +centroid = (0.68911236282220067, -1.5588285692073862) +description = Johnson township, IL +station = ('ktaz', 0.00090735377946491152) +zone = ('ilz052', 0.0012003101259495175) + +[fips1702139948] +centroid = (0.68829670064957371, -1.5621385337739162) +description = King township, IL +station = ('ktaz', 0.0029218319213361551) +zone = ('ilz052', 0.0035997737293561372) + +[fips1702144251] +centroid = (0.68902528834581867, -1.556685357245815) +description = Locust township, IL +station = ('ktaz', 0.0020785671775908261) +zone = ('ilz052', 0.0016507670525228216) + +[fips1702147631] +centroid = (0.69052801683178577, -1.5567173840375892) +description = May township, IL +station = ('ktaz', 0.0018843839129635319) +zone = ('ilz052', 0.00117530649124118) + +[fips1702150686] +centroid = (0.6938697114841168, -1.556966791587699) +description = Mosquito township, IL +station = ('ktaz', 0.0041918292349916739) +zone = ('ilz052', 0.0037829918927454135) + +[fips1702150842] +centroid = (0.69351359450353989, -1.558842043149212) +description = Mount Auburn township, IL +station = ('ktaz', 0.0035163700940632208) +zone = ('ilz052', 0.0033478884559557625) + +[fips1702154] +centroid = (0.73473757330394507, -1.535569840356412) +description = Arlington Heights village, IL +station = ('kpwk', 0.0011098927207291501) +zone = ('ilz006', 0.0039500568869246903) + +[fips1702157485] +centroid = (0.68777271790154004, -1.5549104795695845) +description = Pana township, IL +station = ('ktaz', 0.003904691053114473) +zone = ('ilz052', 0.0035061779135354301) + +[fips1702161730] +centroid = (0.69134861828619609, -1.5547327003319762) +description = Prairieton township, IL +station = ('ktaz', 0.0036000965417567351) +zone = ('ilz052', 0.0028949110468142599) + +[fips1702163797] +centroid = (0.6876584511954118, -1.5605178384838068) +description = Ricks township, IL +station = ('ktaz', 0.0025979307629745377) +zone = ('ilz060', 0.0030872582951859844) + +[fips1702165598] +centroid = (0.68753058837441072, -1.5567448555200154) +description = Rosamond township, IL +station = ('ktaz', 0.0030512365322669429) +zone = ('ilz052', 0.0028950998509434012) + +[fips1702170798] +centroid = (0.69079379557027953, -1.5612365650697779) +description = South Fork township, IL +station = ('ktaz', 0.0018531287274135778) +zone = ('ilz052', 0.0024268633628758947) + +[fips1702172962] +centroid = (0.69211438149550852, -1.556751889196901) +description = Stonington township, IL +station = ('ktaz', 0.0027638036067126957) +zone = ('ilz052', 0.0022053551355366791) + +[fips1702174587] +centroid = (0.69061706353022256, -1.5588586237771056) +description = Taylorville township, IL +station = ('ktaz', 0.00063569502741592817) +zone = ('ilz052', 0.00066463923926976423) + +[fips1702206] +centroid = (0.70406152674455258, -1.5588279757954406) +description = Armington village, IL +station = ('kaaa', 0.0031735838798807158) +zone = ('ilz042', 0.0038235171274141806) + +[fips1702258] +centroid = (0.71685927565784868, -1.53258171450395) +description = Aroma Park village, IL +station = ('kikk', 0.00047353697409822611) +zone = ('ilz023', 0.0013154904378565192) + +[fips17023] +centroid = (0.68647925439288693, -1.532253994030303) +description = Clark County, IL +station = ('krsv', 0.0058489041350954013) +zone = ('ilz063', 5.6094201645454087e-05) + +[fips1702301465] +centroid = (0.68598120723753786, -1.5311300892584814) +description = Anderson township, IL +station = ('krsv', 0.0051349034682497382) +zone = ('ilz063', 0.00096731250686300937) + +[fips1702302908] +centroid = (0.68729667934805849, -1.5324871176584918) +description = Auburn township, IL +station = ('kprg', 0.0058924461288361405) +zone = ('ilz063', 0.0008308531448073677) + +[fips1702311631] +centroid = (0.68598415684397374, -1.5351728303114607) +description = Casey township, IL +station = ('kmto', 0.0050293152588056405) +zone = ('ilz063', 0.0023672726393820214) + +[fips1702318680] +centroid = (0.68607330826216562, -1.5297609133668768) +description = Darwin township, IL +station = ('krsv', 0.005118569983230326) +zone = ('ilz063', 0.0019238817765030902) + +[fips1702320279] +centroid = (0.68823554431258382, -1.5331262048706948) +description = Dolson township, IL +station = ('kprg', 0.0052071024794976429) +zone = ('ilz063', 0.0018823463031618366) + +[fips1702320461] +centroid = (0.6887744496257221, -1.5313064198728104) +description = Douglas township, IL +station = ('kprg', 0.0042253326946653531) +zone = ('ilz063', 0.0023747515425414606) + +[fips1702338505] +centroid = (0.684530315030355, -1.5349469672529601) +description = Johnson township, IL +station = ('krsv', 0.0053738431102420218) +zone = ('ilz063', 0.002905744360835935) + +[fips1702342] +centroid = (0.70597334295389469, -1.5469213919982132) +description = Arrowsmith village, IL +station = ('kbmi', 0.003798877691404337) +zone = ('ilz038', 0.0029481492256205194) + +[fips1702347176] +centroid = (0.68767403698563223, -1.5312681797088989) +description = Marshall township, IL +station = ('kprg', 0.0053002934442918925) +zone = ('ilz063', 0.0013726507641959635) + +[fips1702347267] +centroid = (0.68624377457020791, -1.5333283838112457) +description = Martinsville township, IL +station = ('krsv', 0.0059630676170764688) +zone = ('ilz063', 0.00091971915312119578) + +[fips1702348229] +centroid = (0.6845196859752104, -1.5311835836000549) +description = Melrose township, IL +station = ('krsv', 0.0037283993939989054) +zone = ('ilz063', 0.0021261030988487199) + +[fips1702356302] +centroid = (0.68466440867678569, -1.5329521082778084) +description = Orange township, IL +station = ('krsv', 0.0044533214934770532) +zone = ('ilz063', 0.0019280923121675105) + +[fips1702357667] +centroid = (0.68743169801899284, -1.5349875112514841) +description = Parker township, IL +station = ('kmto', 0.0045119532551283498) +zone = ('ilz063', 0.0023581894044341994) + +[fips1702378279] +centroid = (0.68782800993224313, -1.5289873834423928) +description = Wabash township, IL +station = ('khuf', 0.0039440054363052918) +zone = ('inz051', 0.0029154327965294938) + +[fips1702380294] +centroid = (0.68869737588595414, -1.5352074576438204) +description = Westfield township, IL +station = ('kmto', 0.0041218800022575532) +zone = ('ilz063', 0.0032068200470690691) + +[fips1702383934] +centroid = (0.6844755989583049, -1.5295949849148895) +description = York township, IL +station = ('krsv', 0.0035236542825382027) +zone = ('ilz063', 0.0028491952188958846) + +[fips1702414] +centroid = (0.6931473022534238, -1.5440821427309463) +description = Arthur village, IL +station = ('kmto', 0.0051118942220587799) +zone = ('ilz054', 0.0023842078185107845) + +[fips1702479] +centroid = (0.71345963607435148, -1.5350706238304641) +description = Ashkum village, IL +station = ('kikk', 0.0036526608653786232) +zone = ('ilz033', 0.0028472666964782837) + +[fips17025] +centroid = (0.67626817069750911, -1.5443334526899408) +description = Clay County, IL +station = ('kfoa', 0.0014963550922216494) +zone = ('ilz071', 0.00014855039430356656) + +[fips1702505] +centroid = (0.69618703749186717, -1.5709365814535869) +description = Ashland village, IL +station = ('kijx', 0.0036793998500584636) +zone = ('ilz048', 0.003667876715325989) + +[fips1702505807] +centroid = (0.67839263782291415, -1.5431938574081436) +description = Bible Grove township, IL +station = ('kfoa', 0.0035920050475948817) +zone = ('ilz071', 0.0022288955828212429) + +[fips1702506392] +centroid = (0.67840925335739322, -1.545062546531669) +description = Blair township, IL +station = ('k1h2', 0.0035021692444556717) +zone = ('ilz071', 0.0020773018023040146) + +[fips1702514728] +centroid = (0.67485199308914834, -1.5414263624746489) +description = Clay City township, IL +station = ('kfoa', 0.0018511615241186101) +zone = ('ilz071', 0.0028125012539823935) + +[fips1702531] +centroid = (0.66895564255738083, -1.5566408513498891) +description = Ashley city, IL +station = ('kenl', 0.0035116815712531941) +zone = ('ilz074', 0.0030613240173807898) + +[fips1702533266] +centroid = (0.67498760517202827, -1.5452328906666637) +description = Harter township, IL +station = ('kfoa', 0.0011318585617995558) +zone = ('ilz071', 0.0015296434513979368) + +[fips1702536087] +centroid = (0.67684891155281768, -1.5431682185214319) +description = Hoosier township, IL +station = ('kfoa', 0.0020761549454844114) +zone = ('ilz071', 0.0010971038386614095) + +[fips1702542158] +centroid = (0.67836432858244677, -1.5469233467669752) +description = Larkinsburg township, IL +station = ('k1h2', 0.0037907402949401677) +zone = ('ilz071', 0.0027627407253151388) + +[fips1702544940] +centroid = (0.67688729134306902, -1.5451342097507559) +description = Louisville township, IL +station = ('kfoa', 0.0023052841217025099) +zone = ('ilz071', 0.00073305849296747497) + +[fips1702556835] +centroid = (0.67701405460664132, -1.5471968398607627) +description = Oskaloosa township, IL +station = ('kfoa', 0.0034348011156616854) +zone = ('ilz071', 0.0022345611172207899) + +[fips1702557] +centroid = (0.68993755449254368, -1.5362425426100081) +description = Ashmore village, IL +station = ('kmto', 0.0035011857532539644) +zone = ('ilz056', 0.0027198050938346575) + +[fips1702560261] +centroid = (0.67704772200791241, -1.5413058823963839) +description = Pixley township, IL +station = ('koly', 0.0021947277481853375) +zone = ('ilz071', 0.0025348755204059417) + +[fips1702570486] +centroid = (0.67523985760881911, -1.5473771672790788) +description = Songer township, IL +station = ('kfoa', 0.0028246059025807528) +zone = ('ilz071', 0.0025595556548612479) + +[fips1702572247] +centroid = (0.67494672956094659, -1.5431745889732016) +description = Stanford township, IL +station = ('kfoa', 0.00049946571203050957) +zone = ('ilz071', 0.0017497340447035969) + +[fips1702583] +centroid = (0.7307381862295852, -1.557225030503824) +description = Ashton village, IL +station = ('krpj', 0.0019219208796573855) +zone = ('ilz010', 0.0023609680879324835) + +[fips1702583752] +centroid = (0.67402678396551297, -1.5471028364272505) +description = Xenia township, IL +station = ('kfoa', 0.0027045363247174552) +zone = ('ilz071', 0.0031432801279702703) + +[fips1702609] +centroid = (0.68971565333144502, -1.55418896045681) +description = Assumption city, IL +station = ('ktaz', 0.0037710054571727207) +zone = ('ilz052', 0.0031188934341340826) + +[fips1702635] +centroid = (0.70210857312474106, -1.5770188444572768) +description = Astoria town, IL +station = ('kmqb', 0.0064447780523391902) +zone = ('ilz040', 0.0036566299549004701) + +[fips1702674] +centroid = (0.6974659449545586, -1.5659376617699023) +description = Athens city, IL +station = ('kspi', 0.0020184090852391526) +zone = ('ilz048', 0.0015714912504466709) + +[fips17027] +centroid = (0.67380919376766679, -1.5607281506586721) +description = Clinton County, IL +station = ('kenl', 0.0047913839606515502) +zone = ('ilz069', 1.0127759221426074e-05) + +[fips1702707926] +centroid = (0.67385689361612378, -1.5627230619937016) +description = Breese township, IL +station = ('kblv', 0.0043878170768709823) +zone = ('ilz069', 0.0015696165845793762) + +[fips1702708732] +centroid = (0.67250564225593723, -1.557212708479305) +description = Brookside township, IL +station = ('kenl', 0.0017929543007043102) +zone = ('ilz069', 0.0030335265702465739) + +[fips1702711241] +centroid = (0.67386705143237047, -1.5596143164366343) +description = Carlyle township, IL +station = ('kenl', 0.0040046282102222611) +zone = ('ilz069', 0.00086220188521217368) + +[fips1702714884] +centroid = (0.67401926159643688, -1.5582440235343085) +description = Clement township, IL +station = ('kenl', 0.0031465818838017894) +zone = ('ilz069', 0.0019422687452943248) + +[fips1702721748] +centroid = (0.67531499403311734, -1.5569491637622539) +description = East Fork township, IL +station = ('kenl', 0.0034761175599193044) +zone = ('ilz069', 0.0033037125272444789) + +[fips1702726] +centroid = (0.72279898016823574, -1.5708776940446245) +description = Atkinson town, IL +station = ('kmli', 0.006730338724120895) +zone = ('ilz016', 0.0019645835160332767) + +[fips1702729054] +centroid = (0.67224443628008379, -1.5627924737380534) +description = Germantown township, IL +station = ('kblv', 0.0042527956668900278) +zone = ('ilz069', 0.0022562697727451712) + +[fips1702737673] +centroid = (0.6752934043102703, -1.5587897879914072) +description = Irishtown township, IL +station = ('kenl', 0.0043020335293357422) +zone = ('ilz069', 0.0021119462343006223) + +[fips1702740871] +centroid = (0.67231814153439551, -1.5589695918109476) +description = Lake township, IL +station = ('kenl', 0.0031448423531623896) +zone = ('ilz069', 0.0020224907038705561) + +[fips1702744667] +centroid = (0.67205604544062347, -1.5648339330042336) +description = Looking Glass township, IL +station = ('kblv', 0.0027268346918379884) +zone = ('ilz101', 0.0037410129219371691) + +[fips1702748476] +centroid = (0.6737591551780121, -1.5568506399259787) +description = Meridian township, IL +station = ('kenl', 0.0021463189982520829) +zone = ('ilz069', 0.0030205396387323288) + +[fips1702752] +centroid = (0.70273193492038333, -1.5573720395867197) +description = Atlanta city, IL +station = ('kaaa', 0.0022985289542566908) +zone = ('ilz042', 0.0030357638757101809) + +[fips1702767171] +centroid = (0.67529012309127656, -1.5628604717657111) +description = St. Rose township, IL +station = ('kblv', 0.0048313729279636543) +zone = ('ilz069', 0.0022351657711488994) + +[fips1702767652] +centroid = (0.67242708498630499, -1.5609364382516049) +description = Santa Fe township, IL +station = ('kenl', 0.0046867115725094067) +zone = ('ilz069', 0.0013942150796075403) + +[fips1702773365] +centroid = (0.67390642606029549, -1.5647860237162663) +description = Sugar Creek township, IL +station = ('kblv', 0.0028641026912706391) +zone = ('ilz069', 0.0031823841467807472) + +[fips1702778344] +centroid = (0.67385991303572979, -1.5609503485257434) +description = Wade township, IL +station = ('kenl', 0.0049720142655189543) +zone = ('ilz069', 0.00019019195055362792) + +[fips1702780996] +centroid = (0.67539718158759388, -1.5607867413616614) +description = Wheatfield township, IL +station = ('kenl', 0.0055634233270952828) +zone = ('ilz069', 0.0015876244120623744) + +[fips1702882] +centroid = (0.69462762071179529, -1.5439634777951032) +description = Atwood village, IL +station = ('kcmi', 0.0048551863093475572) +zone = ('ilz054', 0.0034669351829233501) + +[fips17029] +centroid = (0.68964381557943299, -1.539743114584148) +description = Coles County, IL +station = ('kmto', 0.0010272525102686192) +zone = ('ilz056', 0.00011461795357628971) + +[fips1702902570] +centroid = (0.68978817176186547, -1.536582812000977) +description = Ashmore township, IL +station = ('kmto', 0.0032054359083738861) +zone = ('ilz056', 0.0024517232770577386) + +[fips1702912580] +centroid = (0.68907398303194944, -1.5391586910841177) +description = Charleston township, IL +station = ('kmto', 0.0010983007355161343) +zone = ('ilz056', 0.00082659378812636574) + +[fips1702921] +centroid = (0.69072712399285341, -1.5663052804702498) +description = Auburn city, IL +station = ('kspi', 0.0048524521188317692) +zone = ('ilz051', 0.003377456118012699) + +[fips1702922138] +centroid = (0.69174016545058847, -1.5362599260893579) +description = East Oakland township, IL +station = ('kmto', 0.0044067898296162936) +zone = ('ilz056', 0.0033484367985787502) + +[fips1702936555] +centroid = (0.69090823680933278, -1.541145434278248) +description = Humboldt township, IL +station = ('kmto', 0.0021359527334579545) +zone = ('ilz056', 0.0015695777399143834) + +[fips1702936880] +centroid = (0.68817723286227472, -1.5374727379332764) +description = Hutton township, IL +station = ('kmto', 0.0024580112498907894) +zone = ('ilz056', 0.0023700513707554309) + +[fips1702940637] +centroid = (0.6890077128802512, -1.5410053017926053) +description = Lafayette township, IL +station = ('kmto', 0.0004010559912077444) +zone = ('ilz056', 0.0012183648603804047) + +[fips1702947566] +centroid = (0.6889971710915691, -1.5431343067740655) +description = Mattoon township, IL +station = ('kmto', 0.0020071423952186715) +zone = ('ilz056', 0.0027118765174018607) + +[fips1702950400] +centroid = (0.69111612297653779, -1.5377982418387732) +description = Morgan township, IL +station = ('kmto', 0.0031211639406675726) +zone = ('ilz056', 0.0020335002555731409) + +[fips1702954014] +centroid = (0.69095820558581733, -1.5431652689149959) +description = North Okaw township, IL +station = ('kmto', 0.0029403799477192741) +zone = ('ilz054', 0.0028727280790633138) + +[fips1702957615] +centroid = (0.68774421667485486, -1.5431725992978544) +description = Paradise township, IL +station = ('kmto', 0.0022991498451300175) +zone = ('ilz056', 0.0033153609623483289) + +[fips1702960469] +centroid = (0.68771880468094582, -1.5403075889708282) +description = Pleasant Grove township, IL +station = ('kmto', 0.001119458709802294) +zone = ('ilz056', 0.0020820389944426762) + +[fips1702968718] +centroid = (0.6909156195520687, -1.539267425096517) +description = Seven Hickory township, IL +station = ('kmto', 0.0023124390561709367) +zone = ('ilz056', 0.0012189100818758322) + +[fips1702986] +centroid = (0.70216213727948473, -1.5873732545908286) +description = Augusta village, IL +station = ('kuin', 0.0061759023239822235) +zone = ('ilz034', 0.0041560107532885087) + +[fips1703012] +centroid = (0.72890979675848844, -1.540952924461753) +description = Aurora city, IL +station = ('kdpa', 0.0024395453286448028) +zone = ('ilz020', 0.0035178896524556144) + +[fips17031] +centroid = (0.73119336809850533, -1.5297017641585267) +description = Cook County, IL +station = ('kmdw', 0.0023661213739002459) +zone = ('ilz014', 0.0024197462696643949) + +[fips1703100000] +centroid = (0.73258640264098451, -1.5254954857546354) +description = County subdivisions not defined, IL +station = ('kmdw', 0.0055901839845845141) +zone = ('ilz014', 0.0058446899989902197) + +[fips1703103] +centroid = (0.66127949252089202, -1.562005190619064) +description = Ava city, IL +station = ('kmdh', 0.0038596952151668776) +zone = ('ilz084', 0.002393769036952733) + +[fips1703103831] +centroid = (0.73498574167028619, -1.5390176161206792) +description = Barrington township, IL +station = ('kdpa', 0.0038051865148855117) +zone = ('ilz006', 0.0043337550002515235) + +[fips1703105586] +centroid = (0.73030391340510392, -1.5322406771681103) +description = Berwyn township, IL +station = ('kmdw', 0.0011747222323735577) +zone = ('ilz014', 0.00034046457547128706) + +[fips1703106561] +centroid = (0.72458925164846899, -1.5289255638802872) +description = Bloom township, IL +station = ('kigq', 0.00099196721057414326) +zone = ('inz001', 0.0033600239023910258) + +[fips1703107939] +centroid = (0.72608412615280216, -1.531265055569538) +description = Bremen township, IL +station = ('kigq', 0.0028577255330960684) +zone = ('ilz022', 0.0041957891697359468) + +[fips1703110474] +centroid = (0.72706508845888551, -1.5298883224022723) +description = Calumet township, IL +station = ('kmdw', 0.0025096340293489384) +zone = ('ilz014', 0.0038047896177846991) + +[fips1703114000] +centroid = (0.73017146036817004, -1.5303295765437617) +description = Chicago city, IL +station = ('kmdw', 0.0012777045833274052) +zone = ('ilz014', 0.0017605077549724458) + +[fips1703114364] +centroid = (0.73032494462259046, -1.5316885248059493) +description = Cicero township, IL +station = ('kmdw', 0.0010750164878578939) +zone = ('ilz014', 0.0007508700203475) + +[fips1703123243] +centroid = (0.73356015673725727, -1.5354940581602903) +description = Elk Grove township, IL +station = ('kord', 0.0011311580944747151) +zone = ('ilz013', 0.0034088351502308992) + +[fips1703124595] +centroid = (0.73384796153091114, -1.5305551952561669) +description = Evanston township, IL +station = ('kord', 0.0030857426983467544) +zone = ('ilz014', 0.0039384157232403251) + +[fips1703132694] +centroid = (0.73352783323951032, -1.5394433717384106) +description = Hanover township, IL +station = ('kdpa', 0.0023145514857138409) +zone = ('ilz012', 0.0033080975921748411) + +[fips1703142808] +centroid = (0.7272619965050956, -1.5352677064095992) +description = Lemont township, IL +station = ('klot', 0.0019973755414631139) +zone = ('ilz014', 0.0035480547567933486) + +[fips1703143120] +centroid = (0.73195749069832083, -1.533594686148515) +description = Leyden township, IL +station = ('kord', 0.0010073146839396187) +zone = ('ilz014', 0.0018409317613805206) + +[fips1703145447] +centroid = (0.72910686188433116, -1.5334392471253322) +description = Lyons township, IL +station = ('kmdw', 0.001434286241348406) +zone = ('ilz014', 0.0012667106039254195) + +[fips1703146162] +centroid = (0.73362345982922705, -1.533523319635401) +description = Maine township, IL +station = ('kord', 0.0011075588250494825) +zone = ('ilz014', 0.0034357549012385964) + +[fips1703152909] +centroid = (0.73480811951231073, -1.5314378955253631) +description = New Trier township, IL +station = ('kpwk', 0.0020254770944447714) +zone = ('ilz014', 0.0046581586566064002) + +[fips1703153013] +centroid = (0.73359827472812078, -1.5316622052408293) +description = Niles township, IL +station = ('kord', 0.0022293283600448538) +zone = ('ilz014', 0.0034403864724521197) + +[fips1703153676] +centroid = (0.73493786728890398, -1.5329691950511855) +description = Northfield township, IL +station = ('kpwk', 0.00088244988522179321) +zone = ('ilz006', 0.0043435576418249886) + +[fips1703154430] +centroid = (0.73249175343564887, -1.5327153718180677) +description = Norwood Park township, IL +station = ('kord', 0.0013039436077082894) +zone = ('ilz014', 0.0022478156268140575) + +[fips1703154898] +centroid = (0.73106896102942309, -1.5322235380348557) +description = Oak Park township, IL +station = ('kmdw', 0.0018851854427805871) +zone = ('ilz014', 0.00089526820515024245) + +[fips1703156614] +centroid = (0.72602464533189415, -1.5332840699015375) +description = Orland township, IL +station = ('kmdw', 0.0034884279866924206) +zone = ('ilz022', 0.003153093638754613) + +[fips1703157238] +centroid = (0.73497994717716963, -1.5370136814334168) +description = Palatine township, IL +station = ('kpwk', 0.0021305584940395569) +zone = ('ilz006', 0.0037800874101365086) + +[fips1703157355] +centroid = (0.7275882858087559, -1.5332724111021343) +description = Palos township, IL +station = ('kmdw', 0.0021169066697937756) +zone = ('ilz014', 0.0026909573382141259) + +[fips1703162133] +centroid = (0.73067715206564288, -1.5336414958790534) +description = Proviso township, IL +station = ('kmdw', 0.0021217478092837119) +zone = ('ilz014', 0.00083026168206089105) + +[fips1703163498] +centroid = (0.72457855278015426, -1.5312356816782269) +description = Rich township, IL +station = ('kigq', 0.0026630081501135558) +zone = ('ilz022', 0.0034348127302075062) + +[fips1703164317] +centroid = (0.73120350846145932, -1.5327318128196215) +description = River Forest township, IL +station = ('kord', 0.0019973129491976981) +zone = ('ilz014', 0.00095998659004947154) + +[fips1703164434] +centroid = (0.73011803583976653, -1.5328325706773391) +description = Riverside township, IL +station = ('kmdw', 0.0012998831713834228) +zone = ('ilz014', 0.00016451841615754151) + +[fips1703168016] +centroid = (0.73354759036664285, -1.5374579724478046) +description = Schaumburg township, IL +station = ('kord', 0.0023843448007460546) +zone = ('ilz013', 0.0030928617993084399) + +[fips1703172689] +centroid = (0.72907525397157746, -1.5319436570360059) +description = Stickney township, IL +station = ('kmdw', 0.00036020760877571986) +zone = ('ilz014', 0.0012945870971048142) + +[fips1703175198] +centroid = (0.72607918687101891, -1.5289140621605166) +description = Thornton township, IL +station = ('kigq', 0.0013908160129171151) +zone = ('inz001', 0.0043204506300041938) + +[fips1703181] +centroid = (0.67414956787839075, -1.5640331933967111) +description = Aviston village, IL +station = ('kblv', 0.003500563248452322) +zone = ('ilz069', 0.0026144862064024386) + +[fips1703181100] +centroid = (0.73495385450485229, -1.5349177329879895) +description = Wheeling township, IL +station = ('kpwk', 0.00058621523625573965) +zone = ('ilz006', 0.0038016461831074043) + +[fips1703183531] +centroid = (0.72763591584404275, -1.5314187667167611) +description = Worth township, IL +station = ('kmdw', 0.0016228127293915597) +zone = ('ilz014', 0.0027752508027572673) + +[fips1703207] +centroid = (0.70968635640458744, -1.5783921742325011) +description = Avon village, IL +station = ('kmqb', 0.0037966735821936028) +zone = ('ilz026', 0.0040343156757017638) + +[fips17033] +centroid = (0.68074350905888792, -1.5316515936389772) +description = Crawford County, IL +station = ('krsv', 0.0014724525453733014) +zone = ('ilz068', 3.5502706871608732e-05) + +[fips1703335970] +centroid = (0.67897796889415551, -1.5312223124561566) +description = Honey Creek township, IL +station = ('krsv', 0.0022742189870350784) +zone = ('ilz068', 0.0017870710571671017) + +[fips1703336854] +centroid = (0.68271704011058054, -1.530432236810364) +description = Hutsonville township, IL +station = ('krsv', 0.0018344132609922493) +zone = ('ilz068', 0.0022172855640876757) + +[fips1703341833] +centroid = (0.68095207590450124, -1.5292607892697176) +description = Lamotte township, IL +station = ('krsv', 0.00040050113088065722) +zone = ('ilz068', 0.001902659983246369) + +[fips1703343315] +centroid = (0.68283786925469603, -1.5340475990894076) +description = Licking township, IL +station = ('krsv', 0.0038135606838715316) +zone = ('ilz068', 0.0027927081421018343) + +[fips1703347202] +centroid = (0.67912349444718678, -1.5335442984930099) +description = Martin township, IL +station = ('krsv', 0.0034550672864657765) +zone = ('ilz068', 0.0021555323853814255) + +[fips1703350205] +centroid = (0.67895541924021974, -1.5287966364084424) +description = Montgomery township, IL +station = ('krsv', 0.0021395283464824004) +zone = ('ilz068', 0.0028653389322584682) + +[fips1703355119] +centroid = (0.68082307861948632, -1.5338129395714768) +description = Oblong township, IL +station = ('krsv', 0.0031393307376264843) +zone = ('ilz068', 0.0016507577935670236) + +[fips1703361470] +centroid = (0.68305448206816111, -1.5322405724483552) +description = Prairie township, IL +station = ('krsv', 0.0028405565784227703) +zone = ('ilz068', 0.0023658243078477788) + +[fips1703364720] +centroid = (0.68093673446037617, -1.5315484446801844) +description = Robinson township, IL +station = ('krsv', 0.0013770803498888205) +zone = ('ilz068', 0.00023739111835682821) + +[fips1703371344] +centroid = (0.67832224869418112, -1.5336378655942093) +description = Southwest township, IL +station = ('krsv', 0.0039939322693638363) +zone = ('ilz068', 0.002841604509917787) + +[fips1703454] +centroid = (0.66643353706849395, -1.5680937193547684) +description = Baldwin village, IL +station = ('ksar', 0.0021012868972365272) +zone = ('ilz079', 0.0023152082529332499) + +[fips17035] +centroid = (0.68544526898412805, -1.5400893355478662) +description = Cumberland County, IL +station = ('kmto', 0.0033962423857672643) +zone = ('ilz062', 5.8266779561094364e-06) + +[fips1703516587] +centroid = (0.68661790334866535, -1.5400931229123431) +description = Cottonwood township, IL +station = ('kmto', 0.0022327177122553549) +zone = ('ilz062', 0.0011712870462817721) + +[fips1703517640] +centroid = (0.68459197751282796, -1.5368348026383798) +description = Crooked Creek township, IL +station = ('kmto', 0.0051119201704574423) +zone = ('ilz062', 0.0026559404599726427) + +[fips1703531537] +centroid = (0.68468297898002684, -1.5384460556972361) +description = Greenup township, IL +station = ('kmto', 0.0044467960283517587) +zone = ('ilz062', 0.0014792281695170909) + +[fips1703551993] +centroid = (0.68632392008945953, -1.5428992807369921) +description = Neoga township, IL +station = ('kmto', 0.0030918929053822103) +zone = ('ilz062', 0.0023500425971977813) + +[fips1703571] +centroid = (0.70707850288954999, -1.5693234608924311) +description = Banner village, IL +station = ('kpia', 0.0040873978721434672) +zone = ('ilz041', 0.0047632741092818636) + +[fips1703572143] +centroid = (0.68455204437954231, -1.5428108972636709) +description = Spring Point township, IL +station = ('k1h2', 0.003226297901484875) +zone = ('ilz062', 0.0022948471057448877) + +[fips1703573729] +centroid = (0.68551040467181246, -1.5402943070152204) +description = Sumpter township, IL +station = ('kmto', 0.0033184898290558483) +zone = ('ilz062', 0.00017626742637241491) + +[fips1703576641] +centroid = (0.68636359142335723, -1.5374989876852263) +description = Union township, IL +station = ('kmto', 0.0034039698874302874) +zone = ('ilz062', 0.0021991523463203723) + +[fips1703582959] +centroid = (0.68404455499293992, -1.5406489404659331) +description = Woodbury township, IL +station = ('k1h2', 0.0041242672647658907) +zone = ('ilz062', 0.0014692492372575215) + +[fips1703610] +centroid = (0.73639326244555703, -1.5336174103353759) +description = Bannockburn village, IL +station = ('kpwk', 0.0013754133585678378) +zone = ('ilz006', 0.0028643627317896892) + +[fips1703675] +centroid = (0.70679331608977414, -1.580629354721) +description = Bardolph village, IL +station = ('kmqb', 0.0012544938179620811) +zone = ('ilz035', 0.0016746355459857788) + +[fips17037] +centroid = (0.73119893569881911, -1.5493111666232138) +description = DeKalb County, IL +station = ('kdkb', 0.0010223442116341619) +zone = ('ilz011', 2.7987490909486054e-05) + +[fips1703700386] +centroid = (0.73053206284492456, -1.5492171631897014) +description = Afton township, IL +station = ('kdkb', 0.0015012988988231018) +zone = ('ilz011', 0.00065171244122048824) + +[fips1703714988] +centroid = (0.72890042434040525, -1.5493487086554241) +description = Clinton township, IL +station = ('kdkb', 0.0030610020367063074) +zone = ('ilz011', 0.0022773609595807712) + +[fips1703716483] +centroid = (0.73191015736900689, -1.5474392835471571) +description = Cortland township, IL +station = ('kdkb', 0.00060789546618154975) +zone = ('ilz011', 0.0015899764509865087) + +[fips1703719174] +centroid = (0.73191253101678955, -1.5493611353996983) +description = DeKalb township, IL +station = ('kdkb', 0.00082707123271619513) +zone = ('ilz011', 0.00073500879243609016) + +[fips1703727650] +centroid = (0.73490358902239483, -1.5513356787423569) +description = Franklin township, IL +station = ('krfd', 0.0032220479770880602) +zone = ('ilz004', 0.0038569103190561559) + +[fips1703728911] +centroid = (0.7348655757512863, -1.5473404106450319) +description = Genoa township, IL +station = ('kdkb', 0.0030902888825290933) +zone = ('ilz011', 0.0039747701481509922) + +[fips1703740078] +centroid = (0.73498987810061345, -1.5493931796447649) +description = Kingston township, IL +station = ('kdkb', 0.0032517437258178161) +zone = ('ilz004', 0.0037431286138703149) + +[fips1703746292] +centroid = (0.73187146341949016, -1.5512952045570032) +description = Malta township, IL +station = ('kdkb', 0.0022636692672172005) +zone = ('ilz011', 0.0016147370078162511) + +[fips1703747696] +centroid = (0.73340888905098689, -1.5493740682894555) +description = Mayfield township, IL +station = ('kdkb', 0.001767434389651471) +zone = ('ilz011', 0.0022313060743071387) + +[fips1703748983] +centroid = (0.7303495712183361, -1.551203120985668) +description = Milan township, IL +station = ('kdkb', 0.0026603894644224055) +zone = ('ilz011', 0.0016185053963788235) + +[fips1703758200] +centroid = (0.72739441463544441, -1.5512845580485661) +description = Paw Paw township, IL +station = ('krpj', 0.0045599268119198774) +zone = ('ilz011', 0.004052813440901454) + +[fips1703759676] +centroid = (0.73038927745881888, -1.5473704477614587) +description = Pierce township, IL +station = ('kdkb', 0.0016019656632192951) +zone = ('ilz011', 0.0016623661853584202) + +[fips1703767561] +centroid = (0.72749852352532585, -1.5467712762292489) +description = Sandwich township, IL +station = ('karr', 0.0025149384779126088) +zone = ('ilz020', 0.0030031915437357484) + +[fips1703768835] +centroid = (0.72892463205713043, -1.551286669896961) +description = Shabbona township, IL +station = ('krpj', 0.0033995973841338934) +zone = ('ilz011', 0.0026813906442193351) + +[fips1703770473] +centroid = (0.72741623125109434, -1.5478590003256769) +description = Somonauk township, IL +station = ('karr', 0.0032479485696355528) +zone = ('ilz020', 0.0036809954687627004) + +[fips1703770837] +centroid = (0.73337106776609617, -1.5513085737790735) +description = South Grove township, IL +station = ('kdkb', 0.0027338739258919204) +zone = ('ilz011', 0.0026387390390836189) + +[fips1703772182] +centroid = (0.72876528349642333, -1.5474966001597927) +description = Squaw Grove township, IL +station = ('kdkb', 0.003136177787592463) +zone = ('ilz011', 0.0027746011144012582) + +[fips1703774236] +centroid = (0.73344976466206857, -1.5471704330291802) +description = Sycamore township, IL +station = ('kdkb', 0.0017901791293309685) +zone = ('ilz011', 0.0027847300801865506) + +[fips1703777798] +centroid = (0.72723154050964822, -1.5493099448927374) +description = Victor township, IL +station = ('kdkb', 0.0046857386781138386) +zone = ('ilz011', 0.0039462712923893917) + +[fips1703844] +centroid = (0.73570219932822989, -1.5381170960398201) +description = Barrington village, IL +station = ('kpwk', 0.0030121510097287987) +zone = ('ilz006', 0.0033793742407358966) + +[fips1703883] +centroid = (0.73545804521916835, -1.5394320445515652) +description = Barrington Hills village, IL +station = ('kdpa', 0.0042095133413968949) +zone = ('ilz006', 0.0041233579525474205) + +[fips17039] +centroid = (0.70129945593680909, -1.5516300459739985) +description = De Witt County, IL +station = ('kbmi', 0.0051598497142548334) +zone = ('ilz043', 0.00012408250350522574) + +[fips1703903714] +centroid = (0.70117728288916936, -1.555035637130245) +description = Barnett township, IL +station = ('kaaa', 0.0031866512246750182) +zone = ('ilz043', 0.0025721878074735295) + +[fips1703915014] +centroid = (0.70127053583110344, -1.5528291569832886) +description = Clintonia township, IL +station = ('kbmi', 0.0052362867864792157) +zone = ('ilz043', 0.00089092961514597988) + +[fips1703917302] +centroid = (0.69971443517661036, -1.5510649607220803) +description = Creek township, IL +station = ('kdec', 0.0044917736861764266) +zone = ('ilz043', 0.0015357566203547536) + +[fips1703919785] +centroid = (0.7010717253760087, -1.5492096233673327) +description = De Witt township, IL +station = ('kbmi', 0.0057546855831019624) +zone = ('ilz043', 0.0018825135459336647) + +[fips1703933058] +centroid = (0.70136199108390795, -1.5508740566084971) +description = Harp township, IL +station = ('kbmi', 0.0051506844842779216) +zone = ('ilz043', 0.00063450282497262255) + +[fips1703948] +centroid = (0.69286576319178461, -1.5889441556373785) +description = Barry city, IL +station = ('kppq', 0.003662407342717112) +zone = ('ilz097', 0.0024500842612442931) + +[fips1703953117] +centroid = (0.6999824653898391, -1.5490682691512137) +description = Nixon township, IL +station = ('kdec', 0.0049882105605589446) +zone = ('ilz043', 0.0023206559737696123) + +[fips1703966469] +centroid = (0.70263225916680194, -1.5491051654116008) +description = Rutledge township, IL +station = ('kbmi', 0.0043670528808638304) +zone = ('ilz043', 0.0024383413029288423) + +[fips1703967639] +centroid = (0.70225371470533693, -1.5472532489021873) +description = Santa Anna township, IL +station = ('kbmi', 0.0054824700649255022) +zone = ('ilz044', 0.0040209860591577757) + +[fips1703974769] +centroid = (0.69985873899916518, -1.5528501707474827) +description = Texas township, IL +station = ('kdec', 0.0048443823475258331) +zone = ('ilz043', 0.0015994624827465294) + +[fips1703976342] +centroid = (0.69975649761158343, -1.5549242676706752) +description = Tunbridge township, IL +station = ('kaaa', 0.003456261889172382) +zone = ('ilz043', 0.0028664759646916003) + +[fips1703978786] +centroid = (0.70235323337928557, -1.5528478494595774) +description = Wapella township, IL +station = ('kbmi', 0.0041692815651422702) +zone = ('ilz043', 0.0014794857949969394) + +[fips1703979462] +centroid = (0.70255218346072046, -1.5549314584271934) +description = Waynesville township, IL +station = ('kaaa', 0.0036478901945581343) +zone = ('ilz043', 0.0028445169598611368) + +[fips1703982140] +centroid = (0.70268205341036138, -1.5510926765506019) +description = Wilson township, IL +station = ('kbmi', 0.003820564522925562) +zone = ('ilz043', 0.0015661668911084148) + +[fips1704000] +centroid = (0.67260247312283794, -1.5615036877117958) +description = Bartelso village, IL +station = ('kenl', 0.0051401714933557007) +zone = ('ilz069', 0.0013562234970088062) + +[fips1704013] +centroid = (0.73235450074327213, -1.5389791665172576) +description = Bartlett village, IL +station = ('kdpa', 0.0014230458258203359) +zone = ('ilz013', 0.0022392225659934395) + +[fips1704039] +centroid = (0.70933640043627, -1.5648588388526596) +description = Bartonville village, IL +station = ('kpia', 0.00053165152397958429) +zone = ('ilz029', 0.0028741146923026502) + +[fips1704052] +centroid = (0.70385290753906171, -1.591731463906106) +description = Basco village, IL +station = ('keok', 0.0039414147059325944) +zone = ('ilz034', 0.0014031732594239751) + +[fips1704078] +centroid = (0.73038871895345836, -1.5412766132248279) +description = Batavia city, IL +station = ('kdpa', 0.0011825881940091495) +zone = ('ilz012', 0.0022236877576037725) + +[fips17041] +centroid = (0.69404899170488166, -1.5397794872457595) +description = Douglas County, IL +station = ('kcmi', 0.0047012099484808646) +zone = ('ilz055', 9.4573464047196032e-05) + +[fips1704101894] +centroid = (0.6930014101812495, -1.5409185589287813) +description = Arcola township, IL +station = ('kmto', 0.0041880941118852865) +zone = ('ilz055', 0.0014585140838088441) + +[fips1704107458] +centroid = (0.69292843796522374, -1.5430460454737922) +description = Bourbon township, IL +station = ('kmto', 0.0045355031804973842) +zone = ('ilz054', 0.0030042613340753184) + +[fips1704107497] +centroid = (0.69300819951203996, -1.5384957103144552) +description = Bowdre township, IL +station = ('kmto', 0.0044727208770407459) +zone = ('ilz055', 0.001430464979390493) + +[fips1704110604] +centroid = (0.69511634780893872, -1.5387898506532938) +description = Camargo township, IL +station = ('kcmi', 0.0038403911963099998) +zone = ('ilz055', 0.0012195692443155138) + +[fips1704117] +centroid = (0.68125778777628054, -1.582199714715482) +description = Batchtown village, IL +station = ('kset', 0.0034567430772745253) +zone = ('ilz098', 0.0023814245260524837) + +[fips1704128755] +centroid = (0.69509639869558848, -1.543096817101733) +description = Garrett township, IL +station = ('kcmi', 0.0041128475346311382) +zone = ('ilz055', 0.0028018817821827374) + +[fips1704151427] +centroid = (0.69513989230054818, -1.5372842249207683) +description = Murdock township, IL +station = ('kcmi', 0.004361030268825279) +zone = ('ilz055', 0.0021125628802315145) + +[fips1704152636] +centroid = (0.69514931707850891, -1.5359182080751101) +description = Newman township, IL +station = ('kprg', 0.0049884809812221088) +zone = ('ilz055', 0.0030747328032340762) + +[fips1704156] +centroid = (0.70144733768433043, -1.5732825134077775) +description = Bath village, IL +station = ('kijx', 0.0073702386967006558) +zone = ('ilz041', 0.0031301323600726881) + +[fips1704167730] +centroid = (0.69326347136843658, -1.5365585170177893) +description = Sargent township, IL +station = ('kprg', 0.004962228049393628) +zone = ('ilz055', 0.0025475419066542317) + +[fips1704176420] +centroid = (0.69490600072748843, -1.5407274977355654) +description = Tuscola township, IL +station = ('kcmi', 0.0038100774638049673) +zone = ('ilz055', 0.001130673695333531) + +[fips1704247] +centroid = (0.69340946816036586, -1.5866663089773083) +description = Baylis village, IL +station = ('kppq', 0.0023645520356426015) +zone = ('ilz097', 0.0018917483551493175) + +[fips1704273] +centroid = (0.71226778563474968, -1.5624779828601365) +description = Bay View Gardens village, IL +station = ('kpia', 0.0032751154551897664) +zone = ('ilz029', 0.0031492465172120654) + +[fips17043] +centroid = (0.73045621083563295, -1.5373913881368408) +description = DuPage County, IL +station = ('kdpa', 0.0022891827889118563) +zone = ('ilz013', 4.509245015181334e-06) + +[fips1704300250] +centroid = (0.73213076698645896, -1.5355513922262185) +description = Addison township, IL +station = ('kord', 0.0010338806130596716) +zone = ('ilz013', 0.0021612804620206667) + +[fips1704303] +centroid = (0.74075707426773341, -1.5337136652436234) +description = Beach Park village, IL +station = ('kugn', 0.00046028626343776229) +zone = ('ilz006', 0.0026570429879257144) + +[fips1704306600] +centroid = (0.73215150149797259, -1.5373846511659282) +description = Bloomingdale township, IL +station = ('kdpa', 0.0023003874842732019) +zone = ('ilz013', 0.0016963030678398491) + +[fips1704314000] +centroid = (0.73268464722457927, -1.5346406096093577) +description = Chicago city, IL +station = ('kord', 0.00016501521905840392) +zone = ('ilz014', 0.0028394974547932155) + +[fips1704320604] +centroid = (0.72875304873836688, -1.5354948784650388) +description = Downers Grove township, IL +station = ('klot', 0.0029704140839724798) +zone = ('ilz013', 0.002209871728566684) + +[fips1704343952] +centroid = (0.72905778322576509, -1.5374970678230493) +description = Lisle township, IL +station = ('klot', 0.0028554981954743495) +zone = ('ilz013', 0.0013998877799991263) + +[fips1704349451] +centroid = (0.73056950015737987, -1.5374733837050998) +description = Milton township, IL +station = ('kdpa', 0.0021924221637492341) +zone = ('ilz013', 0.0001317223357361519) + +[fips1704351] +centroid = (0.69830457566014192, -1.5783290805800416) +description = Beardstown city, IL +station = ('kijx', 0.0048586815144053067) +zone = ('ilz047', 0.0025431850350521429) + +[fips1704351635] +centroid = (0.72892588869419184, -1.5394398810799066) +description = Naperville township, IL +station = ('kdpa', 0.0024433849407631916) +zone = ('ilz013', 0.0021641810592467688) + +[fips1704379410] +centroid = (0.73200407353605668, -1.5394579975975424) +description = Wayne township, IL +station = ('kdpa', 0.00092502147249767157) +zone = ('ilz013', 0.0021860632695063294) + +[fips1704382413] +centroid = (0.73049087307457761, -1.539517932204056) +description = Winfield township, IL +station = ('kdpa', 0.00097105400992501887) +zone = ('ilz013', 0.0015887697204380927) + +[fips1704383947] +centroid = (0.73062205202115738, -1.5354712467069669) +description = York township, IL +station = ('kord', 0.0022608004809212896) +zone = ('ilz013', 0.0014354864745927845) + +[fips1704403] +centroid = (0.70061612462806822, -1.5567476655001111) +description = Beason CDP, IL +station = ('kaaa', 0.0018881801914313943) +zone = ('ilz042', 0.0023231751568435757) + +[fips17045] +centroid = (0.69252983967065329, -1.5314759786096417) +description = Edgar County, IL +station = ('kprg', 0.0011034977418387154) +zone = ('ilz057', 2.1669946743194772e-05) + +[fips1704507] +centroid = (0.71477620774230088, -1.5298513912353002) +description = Beaverville village, IL +station = ('kikk', 0.0032618656005581406) +zone = ('ilz023', 0.0042186869104199982) + +[fips1704508901] +centroid = (0.69380504703533041, -1.5286117711340712) +description = Brouilletts Creek township, IL +station = ('kprg', 0.001474163339810866) +zone = ('inz043', 0.0023867687700875125) + +[fips1704509213] +centroid = (0.69184198795914975, -1.5327232607062868) +description = Buck township, IL +station = ('kprg', 0.0022626340417980654) +zone = ('ilz057', 0.0011933635060030561) + +[fips1704522502] +centroid = (0.69357136490178084, -1.5307176155963576) +description = Edgar township, IL +station = ('kprg', 0.0008108900803006434) +zone = ('ilz057', 0.0011907321694962498) + +[fips1704522912] +centroid = (0.6899502081296206, -1.5286986885308205) +description = Elbridge township, IL +station = ('kprg', 0.0031483859067334757) +zone = ('ilz057', 0.0033327768196284497) + +[fips1704523958] +centroid = (0.69240604346680934, -1.534401918380855) +description = Embarrass township, IL +station = ('kprg', 0.0033280295118126649) +zone = ('ilz057', 0.0022752747902309652) + +[fips1704530822] +centroid = (0.69019581086196125, -1.5328370387202241) +description = Grandview township, IL +station = ('kprg', 0.0034173804022014143) +zone = ('ilz057', 0.0025601865904555346) + +[fips1704533] +centroid = (0.67379833781971943, -1.5608875864858418) +description = Beckemeyer village, IL +station = ('kenl', 0.0049055606682851327) +zone = ('ilz069', 0.00013518157281336427) + +[fips1704536685] +centroid = (0.69238445374396218, -1.5287217268769469) +description = Hunter township, IL +station = ('kprg', 0.001197109534884098) +zone = ('ilz057', 0.0021041277375387349) + +[fips1704538999] +centroid = (0.6902200360319789, -1.5346114277042644) +description = Kansas township, IL +station = ('kprg', 0.0043732448532791297) +zone = ('ilz057', 0.0033515616762761768) + +[fips1704557641] +centroid = (0.69169562464807754, -1.5308166630314082) +description = Paris township, IL +station = ('kprg', 0.0013172323591953993) +zone = ('ilz057', 0.00095954487004784193) + +[fips1704561483] +centroid = (0.69526785984130446, -1.5287903183165501) +description = Prairie township, IL +station = ('kprg', 0.0025801230647796119) +zone = ('inz043', 0.0017596752863725234) + +[fips1704565923] +centroid = (0.69527979789338812, -1.5308211834341707) +description = Ross township, IL +station = ('kprg', 0.0024386182276312099) +zone = ('ilz057', 0.0027995855923796304) + +[fips1704569498] +centroid = (0.69375163996021938, -1.5334158597133556) +description = Shiloh township, IL +station = ('kprg', 0.0026701137159715772) +zone = ('ilz057', 0.0019491537954757397) + +[fips1704572] +centroid = (0.72897290786424052, -1.5323208575939469) +description = Bedford Park village, IL +station = ('kmdw', 0.0006569430139119198) +zone = ('ilz014', 0.0013006370346234164) + +[fips1704573092] +centroid = (0.69140528912700827, -1.5286510934021187) +description = Stratton township, IL +station = ('kprg', 0.0018772236133989012) +zone = ('ilz057', 0.0024271193356786265) + +[fips1704574288] +centroid = (0.69004300728594914, -1.5307751765550883) +description = Symmes township, IL +station = ('kprg', 0.0029010711732579807) +zone = ('ilz057', 0.0025330726645171639) + +[fips1704584064] +centroid = (0.69527630723488409, -1.5332946640500973) +description = Young America township, IL +station = ('kprg', 0.0034027446372832571) +zone = ('ilz057', 0.0030978802135781329) + +[fips1704585] +centroid = (0.72169907367362895, -1.529205479785722) +description = Beecher village, IL +station = ('kigq', 0.0034916282157014299) +zone = ('inz001', 0.0032855290047054285) + +[fips1704598] +centroid = (0.68393608277992846, -1.5496352917186014) +description = Beecher City village, IL +station = ('k1h2', 0.0039941402810702402) +zone = ('ilz066', 0.0034745222161143797) + +[fips1704689] +centroid = (0.69919216285124364, -1.5294813988871698) +description = Belgium village, IL +station = ('kdnv', 0.0024710772082692121) +zone = ('ilz046', 0.0025259199779657576) + +[fips17047] +centroid = (0.67050479680145103, -1.5367264700517085) +description = Edwards County, IL +station = ('kajg', 0.0054923640049239627) +zone = ('ilz077', 7.2661956792126621e-05) + +[fips1704715] +centroid = (0.65140225540483565, -1.5522907752689261) +description = Belknap village, IL +station = ('km30', 0.0035500642032923126) +zone = ('ilz089', 0.0025263440102508252) + +[fips1704790039] +centroid = (0.66983541067343366, -1.5366464467055048) +description = Albion No. 1 precinct, IL +station = ('kcul', 0.0051660625684026192) +zone = ('ilz077', 0.0006726170913169949) + +[fips1704790041] +centroid = (0.67041760015202134, -1.5376866105798157) +description = Albion No. 2 precinct, IL +station = ('kfwc', 0.0042781758331777971) +zone = ('ilz077', 0.00068471052546591324) + +[fips1704790044] +centroid = (0.66943681237886321, -1.5373765179316137) +description = Albion No. 3 precinct, IL +station = ('kcul', 0.0046794942735985104) +zone = ('ilz077', 0.0011445528527925704) + +[fips1704790486] +centroid = (0.67106272620343599, -1.5358941050781398) +description = Bone Gap precinct, IL +station = ('kajg', 0.0046361020490544545) +zone = ('ilz077', 0.00092035084632109102) + +[fips1704790540] +centroid = (0.66968484111886406, -1.5358379403828109) +description = Browns precinct, IL +station = ('kcul', 0.0051944031441742743) +zone = ('ilz077', 0.001116131498758775) + +[fips1704790954] +centroid = (0.66832468857949234, -1.5374592814447434) +description = Dixon precinct, IL +station = ('kcul', 0.0035675332725689009) +zone = ('ilz077', 0.0022271935033219121) + +[fips1704791152] +centroid = (0.66966105228115935, -1.5380954888636804) +description = Ellery precinct, IL +station = ('kcul', 0.0048750495441736829) +zone = ('ilz077', 0.0013025399465300021) + +[fips1704791296] +centroid = (0.66856769077124745, -1.5360971741366096) +description = French Creek precinct, IL +station = ('kcul', 0.0040773370520036292) +zone = ('ilz077', 0.0020079699919709282) + +[fips1704793] +centroid = (0.66712503651813404, -1.5455908227896626) +description = Belle Prairie City town, IL +station = ('kfwc', 0.0033425803363410418) +zone = ('ilz082', 0.0024862321079577275) + +[fips1704793081] +centroid = (0.67239455204904786, -1.5355072004895578) +description = Salem No. 1 precinct, IL +station = ('kajg', 0.0037109311104315955) +zone = ('ilz077', 0.0021596632952791154) + +[fips1704793084] +centroid = (0.67246056040135838, -1.5364041426454502) +description = Salem No. 2 precinct, IL +station = ('koly', 0.0039160234756687989) +zone = ('ilz077', 0.001992699708636329) + +[fips1704793153] +centroid = (0.67240584432930828, -1.5376925272459798) +description = Shelby No. 1 precinct, IL +station = ('koly', 0.0035618759877164364) +zone = ('ilz077', 0.0020302933633051571) + +[fips1704793156] +centroid = (0.67141130336164434, -1.5376049117175297) +description = Shelby No. 2 precinct, IL +station = ('koly', 0.0045409173931982528) +zone = ('ilz077', 0.0011046752116182239) + +[fips1704806] +centroid = (0.66726977667300191, -1.5487907792534392) +description = Belle Rive village, IL +station = ('kmvn', 0.0022909600456034185) +zone = ('ilz075', 0.0028033842369058139) + +[fips1704845] +centroid = (0.67221474822950733, -1.5705559600503118) +description = Belleville city, IL +station = ('kblv', 0.0019572865697741614) +zone = ('ilz101', 0.0011110984771480193) + +[fips1704871] +centroid = (0.71014122411424219, -1.5650962210842232) +description = Bellevue village, IL +station = ('kpia', 0.00039639865175523876) +zone = ('ilz029', 0.0020875315666517738) + +[fips1704897] +centroid = (0.70407723470782058, -1.5450675905332072) +description = Bellflower village, IL +station = ('kcmi', 0.0063806224603841603) +zone = ('ilz045', 0.0055859688694805849) + +[fips17049] +centroid = (0.68151082561123466, -1.5462358092147372) +description = Effingham County, IL +station = ('k1h2', 0.00089911330350935035) +zone = ('ilz066', 0.00021316376128631271) + +[fips1704903558] +centroid = (0.68406439938653507, -1.5470208059524067) +description = Banner township, IL +station = ('k1h2', 0.0025770126272581274) +zone = ('ilz066', 0.00243195914402991) + +[fips1704906145] +centroid = (0.68147071794502379, -1.5431291929593571) +description = Bishop township, IL +station = ('k1h2', 0.0016655044149886226) +zone = ('ilz066', 0.0023864780055484359) + +[fips1704920474] +centroid = (0.6836003861515999, -1.5451931844261806) +description = Douglas township, IL +station = ('k1h2', 0.0016905555389031609) +zone = ('ilz066', 0.0020315480664034125) + +[fips1704936] +centroid = (0.66990915083433034, -1.5343295919366524) +description = Bellmont village, IL +station = ('kajg', 0.0046388842488558077) +zone = ('ilz078', 0.0014270378212101016) + +[fips1704938063] +centroid = (0.68130496402596197, -1.547007960329112) +description = Jackson township, IL +station = ('k1h2', 0.0015300539844876986) +zone = ('ilz066', 0.00076197826270066587) + +[fips1704943159] +centroid = (0.68406804712467173, -1.5489725378417418) +description = Liberty township, IL +station = ('k1h2', 0.0036372441195005475) +zone = ('ilz066', 0.003191585456707979) + +[fips1704945161] +centroid = (0.67991533287552408, -1.5431429985137406) +description = Lucas township, IL +station = ('k1h2', 0.0025549952935131461) +zone = ('ilz066', 0.0029744534340926565) + +[fips1704947462] +centroid = (0.67978912811731229, -1.5472082019541933) +description = Mason township, IL +station = ('k1h2', 0.002633790381218388) +zone = ('ilz066', 0.0020883917949229853) + +[fips1704949763] +centroid = (0.68293944741716217, -1.5490180560286337) +description = Moccasin township, IL +station = ('k1h2', 0.003138124840764399) +zone = ('ilz066', 0.0025137925578773116) + +[fips1704950725] +centroid = (0.68145317738604128, -1.5489773374971847) +description = Mound township, IL +station = ('k1h2', 0.0029698994574135062) +zone = ('ilz066', 0.0021845174243608802) + +[fips1704966807] +centroid = (0.68295360203739575, -1.5431166789486206) +description = St. Francis township, IL +station = ('k1h2', 0.0019232013647353958) +zone = ('ilz066', 0.0026820143043198661) + +[fips1704973651] +centroid = (0.68298796757036762, -1.5469622152494171) +description = Summit township, IL +station = ('k1h2', 0.0017425306712011302) +zone = ('ilz066', 0.0014036488697098566) + +[fips1704974756] +centroid = (0.68295761629467544, -1.5445366090148731) +description = Teutopolis township, IL +station = ('k1h2', 0.0011667983681428243) +zone = ('ilz066', 0.0017799717200213596) + +[fips1704975] +centroid = (0.73099455764341059, -1.533728517995558) +description = Bellwood village, IL +station = ('kord', 0.0018300018288915346) +zone = ('ilz014', 0.0010774510096552847) + +[fips1704976654] +centroid = (0.679965144572376, -1.5450063818363398) +description = Union township, IL +station = ('k1h2', 0.0019503911048612183) +zone = ('ilz066', 0.0019799485833589731) + +[fips1704979254] +centroid = (0.68148560560354343, -1.5450145325239466) +description = Watson township, IL +station = ('k1h2', 0.00044755198126473166) +zone = ('ilz066', 0.00093910105487147631) + +[fips1704979891] +centroid = (0.67980548185240353, -1.5490970321772866) +description = West township, IL +station = ('k1h2', 0.0036886932033619512) +zone = ('ilz066', 0.0029641270435442563) + +[fips1705092] +centroid = (0.73750906888964951, -1.5510414336837632) +description = Belvidere city, IL +station = ('krfd', 0.0031528649498746997) +zone = ('ilz004', 0.001303301590801851) + +[fips17051] +centroid = (0.68069804323187344, -1.5536558496367883) +description = Fayette County, IL +station = ('kslo', 0.0062969092137208742) +zone = ('ilz065', 8.665604479395383e-05) + +[fips1705103155] +centroid = (0.68142636912873078, -1.5509439046851619) +description = Avena township, IL +station = ('k1h2', 0.004487812990392648) +zone = ('ilz065', 0.0023150193892788364) + +[fips1705104377] +centroid = (0.67998741497363147, -1.5569047974926684) +description = Bear Grove township, IL +station = ('kslo', 0.0064327900667358138) +zone = ('ilz065', 0.0025373375921922047) + +[fips1705107562] +centroid = (0.68404413611391945, -1.5523603964527879) +description = Bowling Green township, IL +station = ('k1h2', 0.0059515736258673839) +zone = ('ilz065', 0.0035346312545077737) + +[fips1705111501] +centroid = (0.68329964846818869, -1.5533684811754473) +description = Carson township, IL +station = ('k1h2', 0.0064901583618536289) +zone = ('ilz065', 0.0026358228318842008) + +[fips1705136802] +centroid = (0.68391487702951681, -1.5568442345676239) +description = Hurricane township, IL +station = ('ktaz', 0.0063238120797228835) +zone = ('ilz065', 0.0040202141807701586) + +[fips1705139116] +centroid = (0.67827549132352039, -1.5547541678817756) +description = Kaskaskia township, IL +station = ('kslo', 0.0041478908663242419) +zone = ('ilz065', 0.0025263419457602476) + +[fips1705140533] +centroid = (0.6783655677662157, -1.5490755297209018) +description = La Clede township, IL +station = ('k1h2', 0.0046529127567460533) +zone = ('ilz066', 0.0040378817115598962) + +[fips1705144] +centroid = (0.69678650573004963, -1.5458710179477777) +description = Bement village, IL +station = ('kdec', 0.0042466239979275329) +zone = ('ilz044', 0.0015481943163287355) + +[fips1705144459] +centroid = (0.67837518453039414, -1.5509693690389486) +description = Lone Grove township, IL +station = ('kslo', 0.0041611548010352531) +zone = ('ilz065', 0.0031703828744737532) + +[fips1705144901] +centroid = (0.683132219033045, -1.5511197989671779) +description = Loudon township, IL +station = ('k1h2', 0.0047549061853033514) +zone = ('ilz065', 0.003197322434063489) + +[fips1705156913] +centroid = (0.67952795704804392, -1.5529672823402914) +description = Otego township, IL +station = ('kslo', 0.0050879754585968556) +zone = ('ilz065', 0.0013102128674993962) + +[fips1705161106] +centroid = (0.67680320137970784, -1.556579852092532) +description = Pope township, IL +station = ('kslo', 0.003827528471869616) +zone = ('ilz070', 0.0042646322196596437) + +[fips1705162640] +centroid = (0.68325016838389474, -1.554759979828185) +description = Ramsey township, IL +station = ('ktaz', 0.0075271476433488114) +zone = ('ilz065', 0.0026818244739276365) + +[fips1705168549] +centroid = (0.68150428062653978, -1.5531919760281931) +description = Sefton township, IL +station = ('k1h2', 0.00622040825286517) +zone = ('ilz065', 0.00093529179018169198) + +[fips1705168601] +centroid = (0.67831221305098222, -1.5569032266963414) +description = Seminary township, IL +station = ('kslo', 0.0050616008312046462) +zone = ('ilz065', 0.0034019528816472684) + +[fips1705168926] +centroid = (0.68122420764147218, -1.5569153916412277) +description = Shafter township, IL +station = ('k3lf', 0.0067610383646251899) +zone = ('ilz065', 0.002506817825858067) + +[fips1705169017] +centroid = (0.68157058568482298, -1.5551540053601152) +description = Sharon township, IL +station = ('kslo', 0.0073751573260204166) +zone = ('ilz065', 0.0013976677503443086) + +[fips1705170876] +centroid = (0.68276048135566259, -1.5567441224817296) +description = South Hurricane township, IL +station = ('ktaz', 0.0074599182713190829) +zone = ('ilz065', 0.0031096950212200409) + +[fips1705177330] +centroid = (0.67985295480805785, -1.5547373778143716) +description = Vandalia township, IL +station = ('kslo', 0.0056336335559738606) +zone = ('ilz065', 0.0011216528574053742) + +[fips1705181022] +centroid = (0.6800412060211779, -1.5510207689854199) +description = Wheatland township, IL +station = ('k1h2', 0.0048946530569259454) +zone = ('ilz065', 0.0022276517944599477) + +[fips1705181568] +centroid = (0.67838839667283179, -1.5528161717336537) +description = Wilberton township, IL +station = ('kslo', 0.0039454408343338621) +zone = ('ilz065', 0.0024094291326714201) + +[fips1705209] +centroid = (0.68230152957555823, -1.5673463693690646) +description = Benld city, IL +station = ('k3lf', 0.0021113561284543635) +zone = ('ilz059', 0.0033653143077235657) + +[fips1705248] +centroid = (0.7323349356023573, -1.5349029325959325) +description = Bensenville village, IL +station = ('kord', 0.00053944595182905378) +zone = ('ilz013', 0.0026357407239148926) + +[fips1705261] +centroid = (0.71297780302775349, -1.5554555982548599) +description = Benson village, IL +station = ('kc75', 0.0045710207616895598) +zone = ('ilz031', 0.0016130029855952201) + +[fips1705274] +centroid = (0.7041298738380608, -1.5902094146253194) +description = Bentley town, IL +station = ('keok', 0.0047763830349870466) +zone = ('ilz034', 0.0012583270558616348) + +[fips17053] +centroid = (0.7085063392973141, -1.5398122994356971) +description = Ford County, IL +station = ('ktip', 0.0053626099973943086) +zone = ('ilz039', 5.211869386372052e-05) + +[fips1705300] +centroid = (0.66344813392966506, -1.5518955978196893) +description = Benton city, IL +station = ('kmwa', 0.0047255094054551921) +zone = ('ilz081', 0.00037062334287644782) + +[fips1705307978] +centroid = (0.71063909673666614, -1.5390303570242188) +description = Brenton township, IL +station = ('kpnt', 0.0069028205402617759) +zone = ('ilz039', 0.0021618977806320155) + +[fips1705310214] +centroid = (0.70594204920040637, -1.5357676385205405) +description = Button township, IL +station = ('ktip', 0.003341483905621024) +zone = ('ilz039', 0.004020173921002311) + +[fips1705320110] +centroid = (0.70617494593579255, -1.540822304020534) +description = Dix township, IL +station = ('ktip', 0.0034626219754281934) +zone = ('ilz039', 0.0025065698544818925) + +[fips1705320799] +centroid = (0.70623611972607492, -1.5428150686005835) +description = Drummer township, IL +station = ('ktip', 0.0045067447193630275) +zone = ('ilz039', 0.0032669572101666762) + +[fips1705345252] +centroid = (0.70905957376361117, -1.539155881104022) +description = Lyman township, IL +station = ('ktip', 0.0058335843315324154) +zone = ('ilz039', 0.00069597259624693919) + +[fips1705349919] +centroid = (0.71373606132128242, -1.5391456883811905) +description = Mona township, IL +station = ('kpnt', 0.0058098807869192198) +zone = ('ilz039', 0.0052039894503649346) + +[fips1705358122] +centroid = (0.70586670333659784, -1.5382614696755452) +description = Patton township, IL +station = ('ktip', 0.0026120012678318262) +zone = ('ilz039', 0.002927601433844657) + +[fips1705358317] +centroid = (0.70814908785272335, -1.5406379972515232) +description = Peach Orchard township, IL +station = ('ktip', 0.0051867800792494362) +zone = ('ilz039', 0.0007630343616842868) + +[fips1705358512] +centroid = (0.71220811282762397, -1.539095859231046) +description = Pella township, IL +station = ('kpnt', 0.0061763580473404257) +zone = ('ilz039', 0.0036906948126477234) + +[fips1705365273] +centroid = (0.71505170796472828, -1.5392108240688749) +description = Rogers township, IL +station = ('kpnt', 0.0057899778235831964) +zone = ('ilz032', 0.005033881411992255) + +[fips1705373521] +centroid = (0.70821188479921005, -1.5425957679800701) +description = Sullivant township, IL +station = ('ktip', 0.0059051331399394939) +zone = ('ilz039', 0.0021603625191003698) + +[fips1705378474] +centroid = (0.7075250279253803, -1.5390362038772127) +description = Wall township, IL +station = ('ktip', 0.004298263455946783) +zone = ('ilz039', 0.001177191073543446) + +[fips1705404] +centroid = (0.73110313457617726, -1.5343445319550495) +description = Berkeley village, IL +station = ('kord', 0.0016456488656089103) +zone = ('ilz014', 0.001501772075739988) + +[fips1705443] +centroid = (0.69390187790223101, -1.5690974931141755) +description = Berlin village, IL +station = ('kspi', 0.0033535995439597783) +zone = ('ilz050', 0.004077394052632465) + +[fips17055] +centroid = (0.66308283651722255, -1.5520557841384375) +description = Franklin County, IL +station = ('kmwa', 0.0043405303832049205) +zone = ('ilz081', 2.9227259273989475e-05) + +[fips1705503818] +centroid = (0.66454273462334579, -1.5531964789776633) +description = Barren township, IL +station = ('kmvn', 0.0045447305158345568) +zone = ('ilz081', 0.0017224692711161687) + +[fips1705505313] +centroid = (0.66316671704107344, -1.5510747171125989) +description = Benton township, IL +station = ('kmwa', 0.004663874017561285) +zone = ('ilz081', 0.00074887362201645782) + +[fips1705508940] +centroid = (0.6631721275617547, -1.553151152776989) +description = Browning township, IL +station = ('kmwa', 0.0043087155370718716) +zone = ('ilz081', 0.00089507612573219892) + +[fips1705511813] +centroid = (0.66165372601910455, -1.5490940825708506) +description = Cave township, IL +station = ('khsb', 0.0033356249991733727) +zone = ('ilz081', 0.0027181538621088132) + +[fips1705519421] +centroid = (0.66165250428862832, -1.5530859472761345) +description = Denning township, IL +station = ('kmwa', 0.0027944090818981578) +zone = ('ilz081', 0.0016657983877235054) + +[fips1705521735] +centroid = (0.6630684724574788, -1.5491663915617606) +description = Eastern township, IL +station = ('khsb', 0.0042797441150444577) +zone = ('ilz081', 0.0022490984375685384) + +[fips1705524686] +centroid = (0.66457713506290261, -1.551158300930477) +description = Ewing township, IL +station = ('kmvn', 0.0041763557290434529) +zone = ('ilz081', 0.0016340544043063226) + +[fips1705527611] +centroid = (0.66159452445087696, -1.5509800155473856) +description = Frankfort township, IL +station = ('kmwa', 0.0033139589515205404) +zone = ('ilz081', 0.0017062387689480364) + +[fips1705530406] +centroid = (0.66462460801855694, -1.5548137185158539) +description = Goode township, IL +station = ('kmvn', 0.00509342685173574) +zone = ('ilz081', 0.0026822112512464216) + +[fips1705553637] +centroid = (0.66454427051308751, -1.5492352098941671) +description = Northern township, IL +station = ('kmvn', 0.0044343444135353524) +zone = ('ilz081', 0.0026313830291602829) + +[fips1705570070] +centroid = (0.66156159008789195, -1.5549472362036314) +description = Six Mile township, IL +station = ('kmwa', 0.0029714810759286542) +zone = ('ilz081', 0.0027688059373046979) + +[fips1705573] +centroid = (0.73030391340510392, -1.5322406771681103) +description = Berwyn city, IL +station = ('kmdw', 0.0011747222323735577) +zone = ('ilz014', 0.00034046457547128706) + +[fips1705576576] +centroid = (0.6630634982691106, -1.5549263969723626) +description = Tyrone township, IL +station = ('kmdh', 0.0042329122874893259) +zone = ('ilz081', 0.0022906395169069965) + +[fips1705599] +centroid = (0.67898486294470084, -1.5717295194393528) +description = Bethalto village, IL +station = ('kaln', 7.000293700934472e-05) +zone = ('ilz100', 0.002385672060559574) + +[fips1705612] +centroid = (0.69192155751974815, -1.5488205720237707) +description = Bethany village, IL +station = ('kdec', 0.0037078554830169753) +zone = ('ilz054', 0.001633402507728731) + +[fips17057] +centroid = (0.70625948968475916, -1.5744055455149732) +description = Fulton County, IL +station = ('kpia', 0.0077763401351607052) +zone = ('ilz036', 0.00012448227259255146) + +[fips1705702648] +centroid = (0.70211138310483678, -1.5775303131945737) +description = Astoria township, IL +station = ('kmqb', 0.0062121980878881477) +zone = ('ilz040', 0.0032919087110699374) + +[fips1705703584] +centroid = (0.70690266096741161, -1.5697901095745368) +description = Banner township, IL +station = ('kpia', 0.0044713038100526233) +zone = ('ilz041', 0.0045999671406076791) + +[fips1705705469] +centroid = (0.70523871641843772, -1.5755388227048783) +description = Bernadotte township, IL +station = ('kmqb', 0.0054277219732246865) +zone = ('ilz036', 0.0014278054165198135) + +[fips1705709265] +centroid = (0.7067814478508605, -1.5716235954070494) +description = Buckheart township, IL +station = ('kpia', 0.0056748507649769971) +zone = ('ilz036', 0.0021622086086623719) + +[fips1705711020] +centroid = (0.70827295386973743, -1.5716158112385856) +description = Canton township, IL +station = ('kpia', 0.0050433354679421116) +zone = ('ilz036', 0.0028470830986536441) + +[fips1705711696] +centroid = (0.70672845965477005, -1.5757115753942406) +description = Cass township, IL +station = ('kmqb', 0.0049453737672391163) +zone = ('ilz036', 0.0010426601739780366) + +[fips1705718979] +centroid = (0.7083624019939021, -1.5754424630768755) +description = Deerfield township, IL +station = ('kmqb', 0.0052502132776912893) +zone = ('ilz036', 0.0021265096324429521) + +[fips1705723542] +centroid = (0.70967022956229908, -1.5760412680899423) +description = Ellisville township, IL +station = ('kgbg', 0.0051323712959075582) +zone = ('ilz036', 0.0035103546741933802) + +[fips1705725076] +centroid = (0.70987568972184367, -1.5734093290312274) +description = Fairview township, IL +station = ('kgbg', 0.0059363181207889261) +zone = ('ilz036', 0.0035751143961215283) + +[fips1705725427] +centroid = (0.70527749763441716, -1.5777084414980322) +description = Farmers township, IL +station = ('kmqb', 0.0039167061547353693) +zone = ('ilz036', 0.0027377518588223341) + +[fips1705725544] +centroid = (0.7097504623480132, -1.5716663559737232) +description = Farmington township, IL +station = ('kpia', 0.0048521998450975516) +zone = ('ilz036', 0.0039628552384009287) + +[fips1705733110] +centroid = (0.70682904297956239, -1.5776617015806638) +description = Harris township, IL +station = ('kmqb', 0.0034600481277254685) +zone = ('ilz036', 0.0025070345346264945) + +[fips1705737842] +centroid = (0.70348827335173503, -1.5735315718920371) +description = Isabel township, IL +station = ('kmqb', 0.0075679104135764732) +zone = ('ilz036', 0.0029729996451153774) + +[fips1705738713] +centroid = (0.70841214387758389, -1.5735515035520948) +description = Joshua township, IL +station = ('kpia', 0.0064301030747421929) +zone = ('ilz036', 0.0021327302481745154) + +[fips1705739714] +centroid = (0.70204937155651337, -1.5736121886501868) +description = Kerton township, IL +station = ('kijx', 0.0079268235478517947) +zone = ('ilz041', 0.0032691490634816902) + +[fips1705742574] +centroid = (0.70831672672737744, -1.577569460929696) +description = Lee township, IL +station = ('kmqb', 0.0036764805792863374) +zone = ('ilz036', 0.0030781781979004404) + +[fips1705743068] +centroid = (0.70524854262212644, -1.5736095357497237) +description = Lewistown township, IL +station = ('kpia', 0.0077841279802308471) +zone = ('ilz036', 0.0012910813344092584) + +[fips1705744134] +centroid = (0.70532418519190787, -1.5714186937528651) +description = Liverpool township, IL +station = ('kpia', 0.0064481826028409258) +zone = ('ilz036', 0.0025164390985227708) + +[fips1705756588] +centroid = (0.70836334447169813, -1.5696074259617308) +description = Orion township, IL +station = ('kpia', 0.0035792114095650036) +zone = ('ilz036', 0.0041578557646447731) + +[fips1705760430] +centroid = (0.7038945685483069, -1.5757130938306898) +description = Pleasant township, IL +station = ('kmqb', 0.0059394368270857785) +zone = ('ilz036', 0.0026773510121763) + +[fips1705762276] +centroid = (0.7064101988656688, -1.573767418233859) +description = Putman township, IL +station = ('kpia', 0.0072758411238368998) +zone = ('ilz036', 0.00049552714005698766) + +[fips1705776667] +centroid = (0.70972681313664876, -1.5777093665225359) +description = Union township, IL +station = ('kmqb', 0.004227462113541398) +zone = ('ilz036', 0.0041747390006593426) + +[fips1705777655] +centroid = (0.70369724162307645, -1.5776525909619685) +description = Vermont township, IL +station = ('kmqb', 0.0049254286305293006) +zone = ('ilz036', 0.0036449220673721162) + +[fips1705779137] +centroid = (0.70375234166756173, -1.572639342125125) +description = Waterford township, IL +station = ('kpia', 0.0082213039156712603) +zone = ('ilz041', 0.0028955852135366176) + +[fips1705783089] +centroid = (0.70210745611401981, -1.5755908858764653) +description = Woodland township, IL +station = ('kmqb', 0.007161870232721231) +zone = ('ilz036', 0.0043686025996107648) + +[fips1705784077] +centroid = (0.70982067694382089, -1.5752079082787001) +description = Young Hickory township, IL +station = ('kgbg', 0.0052424941508672357) +zone = ('ilz036', 0.0034890537721081645) + +[fips1705898] +centroid = (0.71303560833257962, -1.5858454806300952) +description = Biggsville village, IL +station = ('kbrl', 0.0038914045413431628) +zone = ('ilz025', 0.0010391339118622819) + +[fips17059] +centroid = (0.6591877677722543, -1.5398684641310263) +description = Gallatin County, IL +station = ('khsb', 0.0044925196794284774) +zone = ('ilz087', 0.00010837665762294427) + +[fips1705902427] +centroid = (0.66121419975357487, -1.5394095647107995) +description = Asbury township, IL +station = ('kcul', 0.0037321254650092388) +zone = ('ilz087', 0.0021657853581359167) + +[fips1705907536] +centroid = (0.65684194053781886, -1.5394822751274375) +description = Bowlesville township, IL +station = ('khsb', 0.00565871822570156) +zone = ('ilz091', 0.0021948550239088084) + +[fips1705921449] +centroid = (0.65707602409709642, -1.5415676119710129) +description = Eagle Creek township, IL +station = ('khsb', 0.0042085252188748942) +zone = ('ilz087', 0.0023981266880589527) + +[fips1705924361] +centroid = (0.65861175675921879, -1.5413350817547697) +description = Equality township, IL +station = ('khsb', 0.003528740243939915) +zone = ('ilz087', 0.0012202415261959587) + +[fips1705930302] +centroid = (0.6585888231328475, -1.5393440275973873) +description = Gold Hill township, IL +station = ('khsb', 0.0050288421161696498) +zone = ('ilz087', 0.00066976857543480782) + +[fips1705952519] +centroid = (0.66041284928081434, -1.538081508776372) +description = New Haven township, IL +station = ('kcul', 0.0043735043704607093) +zone = ('ilz087', 0.0019637384151518999) + +[fips1705953702] +centroid = (0.66006968264328714, -1.5414773435420996) +description = North Fork township, IL +station = ('khsb', 0.00316067149078319) +zone = ('ilz087', 0.0015805071212023588) + +[fips1705956016] +centroid = (0.66121617197562965, -1.5414763312511335) +description = Omaha township, IL +station = ('khsb', 0.0034078339459425551) +zone = ('ilz087', 0.002463029398472366) + +[fips1705964031] +centroid = (0.66020813961284786, -1.5393925652038851) +description = Ridgway township, IL +station = ('kcul', 0.0047010997546184773) +zone = ('ilz087', 0.0011958073257723708) + +[fips1705969069] +centroid = (0.65865046816202799, -1.5377957983778205) +description = Shawnee township, IL +station = ('kcul', 0.0061387091871542348) +zone = ('ilz087', 0.001729356884785823) + +[fips1705976] +centroid = (0.72896761951660694, -1.5450783766679845) +description = Big Rock village, IL +station = ('karr', 0.0007785077998437134) +zone = ('ilz012', 0.0032636877436470219) + +[fips1706028] +centroid = (0.68263729601705692, -1.5570732915786558) +description = Bingham village, IL +station = ('ktaz', 0.0075233488251308916) +zone = ('ilz065', 0.0032282538468742968) + +[fips17061] +centroid = (0.68688207638424725, -1.5775639631425522) +description = Greene County, IL +station = ('kppq', 0.0072210366166693962) +zone = ('ilz058', 3.9298851375337948e-05) + +[fips1706102700] +centroid = (0.68900718928147553, -1.5745640388643469) +description = Athensville township, IL +station = ('kijx', 0.0051919810863257842) +zone = ('ilz058', 0.0031629418870698892) + +[fips1706106860] +centroid = (0.68623553661613845, -1.5800192050677953) +description = Bluffdale township, IL +station = ('kppq', 0.0065285363079088873) +zone = ('ilz058', 0.0019753511934053028) + +[fips1706111475] +centroid = (0.68643008846785825, -1.5784104478297694) +description = Carrollton township, IL +station = ('kset', 0.0069153463046038996) +zone = ('ilz058', 0.00077320562392947298) + +[fips1706138882] +centroid = (0.68443388558918228, -1.5773427252065693) +description = Kane township, IL +station = ('kset', 0.0049819507643746892) +zone = ('ilz099', 0.0022752670841934279) + +[fips1706143809] +centroid = (0.68594670207822594, -1.5763926552282463) +description = Linder township, IL +station = ('kset', 0.0066103750786277544) +zone = ('ilz058', 0.0013375899543791282) + +[fips1706158096] +centroid = (0.68891304622162297, -1.5798147397459241) +description = Patterson township, IL +station = ('kppq', 0.0045713520436248215) +zone = ('ilz058', 0.002639683062162682) + +[fips1706164824] +centroid = (0.68576031836740547, -1.5745468473712148) +description = Rockbridge township, IL +station = ('kset', 0.0069106279642894694) +zone = ('ilz058', 0.002628650212799827) + +[fips1706165494] +centroid = (0.68930206265859995, -1.5769556286317696) +description = Roodhouse township, IL +station = ('kijx', 0.0051238192446223883) +zone = ('ilz058', 0.0024595903355664815) + +[fips1706166235] +centroid = (0.68753571964241167, -1.5740851554241846) +description = Rubicon township, IL +station = ('kijx', 0.0066885839817323123) +zone = ('ilz058', 0.0028003976134719027) + +[fips1706171] +centroid = (0.71906624449699552, -1.5728463905342891) +description = Bishop Hill village, IL +station = ('kgbg', 0.0061521241129505484) +zone = ('ilz016', 0.0026877332495264679) + +[fips1706178461] +centroid = (0.6877374447973571, -1.5802599557848154) +description = Walkerville township, IL +station = ('kppq', 0.0051813398407830856) +zone = ('ilz058', 0.002213350176544485) + +[fips1706181269] +centroid = (0.68805542633377792, -1.5777057536909842) +description = White Hall township, IL +station = ('kijx', 0.0064890877616432209) +zone = ('ilz058', 0.0011624235640329006) + +[fips1706183401] +centroid = (0.68466744554968417, -1.5797189909831597) +description = Woodville township, IL +station = ('kset', 0.0052595621537711579) +zone = ('ilz098', 0.0023538428588255498) + +[fips1706183583] +centroid = (0.6874697636499788, -1.5763766156524206) +description = Wrights township, IL +station = ('kijx', 0.0068084039115263026) +zone = ('ilz058', 0.0011143702625848965) + +[fips1706184] +centroid = (0.70265967828935072, -1.5291049488208073) +description = Bismarck village, IL +station = ('kdnv', 0.0010677224294216275) +zone = ('ilz046', 0.0020927389454300951) + +[fips17063] +centroid = (0.72068851058343164, -1.5428894719865958) +description = Grundy County, IL +station = ('kc09', 0.0023303570016462538) +zone = ('ilz021', 0.00026366716324285856) + +[fips1706303090] +centroid = (0.72301323678721063, -1.5413990829784403) +description = Aux Sable township, IL +station = ('kc09', 0.001347284679339615) +zone = ('ilz021', 0.0028010881633934101) + +[fips1706307653] +centroid = (0.7198532309100123, -1.5407376730051046) +description = Braceville township, IL +station = ('kc09', 0.0036546185492709921) +zone = ('ilz021', 0.0019760444908772431) + +[fips1706324400] +centroid = (0.72167139275169234, -1.5451287643234897) +description = Erienna township, IL +station = ('kc09', 0.0019718354236423663) +zone = ('ilz021', 0.0018310234592154126) + +[fips1706325778] +centroid = (0.72100605578753951, -1.5410368922520665) +description = Felix township, IL +station = ('kc09', 0.0025750831111627575) +zone = ('ilz021', 0.0016815208385851175) + +[fips1706328677] +centroid = (0.7181839282002348, -1.5416273894978938) +description = Garfield township, IL +station = ('kc09', 0.0049654620807321487) +zone = ('ilz021', 0.0026499346092803406) + +[fips1706330432] +centroid = (0.71825306069190642, -1.5431259641002411) +description = Goodfarm township, IL +station = ('kc09', 0.0047547203435052794) +zone = ('ilz021', 0.0023049429433091395) + +[fips1706330549] +centroid = (0.72190266633087408, -1.5412782887409098) +description = Goose Lake township, IL +station = ('kc09', 0.0018138531916075918) +zone = ('ilz021', 0.0019696054094315808) + +[fips1706331381] +centroid = (0.71818398056011234, -1.5405994778349317) +description = Greenfield township, IL +station = ('kc09', 0.0052031259779169647) +zone = ('ilz021', 0.0030727954534940398) + +[fips1706334657] +centroid = (0.7181086346963037, -1.5452875194722511) +description = Highland township, IL +station = ('kpnt', 0.0040227029189052552) +zone = ('ilz021', 0.0029115078726284281) + +[fips1706346175] +centroid = (0.71978125353166011, -1.5416512306954759) +description = Maine township, IL +station = ('kc09', 0.0034283921795715032) +zone = ('ilz021', 0.0013954372329046099) + +[fips1706347800] +centroid = (0.71979792142601662, -1.5431768229946441) +description = Mazon township, IL +station = ('kc09', 0.0032096012610502433) +zone = ('ilz021', 0.00075962396678636956) + +[fips1706350504] +centroid = (0.72194806234471842, -1.5430254854952039) +description = Morris township, IL +station = ('kc09', 0.0010671122353024163) +zone = ('ilz021', 0.0013963685899552256) + +[fips1706352038] +centroid = (0.72278920632442467, -1.5452849538382507) +description = Nettle Creek township, IL +station = ('kc09', 0.0015817101410372715) +zone = ('ilz021', 0.0027285206111371612) + +[fips1706353286] +centroid = (0.72104630308009066, -1.5450759681136168) +description = Norman township, IL +station = ('kc09', 0.0024159911638859926) +zone = ('ilz021', 0.0014960485667464929) + +[fips1706367678] +centroid = (0.72278129998291307, -1.5431163822426477) +description = Saratoga township, IL +station = ('kc09', 0.00023391571506292075) +zone = ('ilz021', 0.0022246257528444782) + +[fips1706377850] +centroid = (0.71980608956691583, -1.5450218978133901) +description = Vienna township, IL +station = ('kc09', 0.0034826589887318902) +zone = ('ilz021', 0.0015660540730676057) + +[fips1706379345] +centroid = (0.72118896629314855, -1.543196615028362) +description = Wauponsee township, IL +station = ('kc09', 0.0018185245650137322) +zone = ('ilz021', 0.00063153312249026889) + +[fips1706470] +centroid = (0.70780325086144069, -1.585946744633296) +description = Blandinsville village, IL +station = ('kmqb', 0.0029196088738169812) +zone = ('ilz035', 0.0030468136861568061) + +[fips17065] +centroid = (0.66471259006614991, -1.545297153689722) +description = Hamilton County, IL +station = ('khsb', 0.0047814050147147683) +zone = ('ilz082', 6.3342312357288097e-05) + +[fips1706504481] +centroid = (0.66624272022137332, -1.5433505879749727) +description = Beaver Creek township, IL +station = ('kfwc', 0.0035960487653394911) +zone = ('ilz082', 0.0022117646848004591) + +[fips1706517627] +centroid = (0.66458966652693197, -1.543447034869438) +description = Crook township, IL +station = ('kcul', 0.004262453745377529) +zone = ('ilz082', 0.0014602211264182227) + +[fips1706517809] +centroid = (0.66708646474166489, -1.544427246683943) +description = Crouch township, IL +station = ('kfwc', 0.0029391791905061006) +zone = ('ilz082', 0.0025320706322431012) + +[fips1706518316] +centroid = (0.66656305795228432, -1.5473500623157952) +description = Dahlgren township, IL +station = ('kmvn', 0.0036164056261409421) +zone = ('ilz082', 0.002502212741874781) + +[fips1706526324] +centroid = (0.66303555554778615, -1.5471655461072744) +description = Flannigan township, IL +station = ('khsb', 0.0033771212090428853) +zone = ('ilz082', 0.0021821816334740636) + +[fips1706540299] +centroid = (0.664756869069273, -1.5473690689513497) +description = Knight Prairie township, IL +station = ('kmvn', 0.0049166970194374571) +zone = ('ilz082', 0.0016316748481341231) + +[fips1706545837] +centroid = (0.66471259006614991, -1.545297153689722) +description = McLeansboro township, IL +station = ('khsb', 0.0047814050147147683) +zone = ('ilz082', 6.3342312357288097e-05) + +[fips1706547657] +centroid = (0.66272993094246946, -1.5436056503918592) +description = Mayberry township, IL +station = ('khsb', 0.003161760210004323) +zone = ('ilz082', 0.0023380628476358414) + +[fips1706570655] +centroid = (0.66617377971591951, -1.5450000288378625) +description = South Crouch township, IL +station = ('kfwc', 0.0039534405021602525) +zone = ('ilz082', 0.0015426978427881372) + +[fips1706570785] +centroid = (0.66200223336414288, -1.5473110542070132) +description = South Flannigan township, IL +station = ('khsb', 0.0025263793217961904) +zone = ('ilz082', 0.0030848940668353796) + +[fips1706571305] +centroid = (0.66202228719724832, -1.5454265698537575) +description = South Twigg township, IL +station = ('khsb', 0.0020893990516743198) +zone = ('ilz082', 0.0026288929573435927) + +[fips1706576472] +centroid = (0.66307826375458234, -1.5452455617570331) +description = Twigg township, IL +station = ('khsb', 0.0031502171056932583) +zone = ('ilz082', 0.0015716376833760507) + +[fips1706587] +centroid = (0.73219146953784331, -1.5374450395580472) +description = Bloomingdale village, IL +station = ('kdpa', 0.0022742234529330822) +zone = ('ilz013', 0.0017368366329430641) + +[fips1706613] +centroid = (0.70643557595299289, -1.5528178996096131) +description = Bloomington city, IL +station = ('kbmi', 0.00071825167709402629) +zone = ('ilz038', 0.0016486448437739566) + +[fips17067] +centroid = (0.70521410727598466, -1.5911815630186801) +description = Hancock County, IL +station = ('keok', 0.0036815391165316226) +zone = ('ilz034', 5.6945056073624088e-05) + +[fips1706701621] +centroid = (0.70827108636743785, -1.5935233061826659) +description = Appanoose township, IL +station = ('kfsw', 0.0015520873216690646) +zone = ('iaz099', 0.0025763999386558822) + +[fips1706702999] +centroid = (0.70225256278803061, -1.5877045878960272) +description = Augusta township, IL +station = ('kuin', 0.0061203533457133115) +zone = ('ilz034', 0.0039183560261224215) + +[fips1706704] +centroid = (0.72706175488001423, -1.5303243405560056) +description = Blue Island city, IL +station = ('kmdw', 0.0023712823034682468) +zone = ('ilz014', 0.0036391312132612844) + +[fips1706704338] +centroid = (0.70384023644869231, -1.5917281303272346) +description = Bear Creek township, IL +station = ('keok', 0.0039512306443755668) +zone = ('ilz034', 0.0014143141282347386) + +[fips1706711540] +centroid = (0.70534916085350396, -1.5897922285742152) +description = Carthage township, IL +station = ('kfsw', 0.005484038471770797) +zone = ('ilz034', 0.001028608604000156) + +[fips1706714104] +centroid = (0.70236004016336839, -1.589781547159193) +description = Chili township, IL +station = ('kuin', 0.0055962592129865677) +zone = ('ilz034', 0.0029977385609086986) + +[fips1706718433] +centroid = (0.70843771295112568, -1.5910733176984715) +description = Dallas City township, IL +station = ('kfsw', 0.002632702129013619) +zone = ('ilz034', 0.0032603473574327187) + +[fips1706721306] +centroid = (0.70831965888052084, -1.5895092059827116) +description = Durham township, IL +station = ('kbrl', 0.0032939484908982688) +zone = ('ilz034', 0.003373560404028645) + +[fips1706727325] +centroid = (0.70693910344219324, -1.5877690079987183) +description = Fountain Green township, IL +station = ('kbrl', 0.0050454205206174876) +zone = ('ilz034', 0.0031017542701182784) + +[fips1706732629] +centroid = (0.70538204285661155, -1.5876522629250522) +description = Hancock township, IL +station = ('kmqb', 0.004544472758831305) +zone = ('ilz034', 0.0026515131510988889) + +[fips1706732993] +centroid = (0.70382667524040432, -1.5898853418898091) +description = Harmony township, IL +station = ('keok', 0.0051361009331797889) +zone = ('ilz034', 0.0016480141132444628) + +[fips1706740845] +centroid = (0.70848181742132355, -1.5876201488668156) +description = La Harpe township, IL +station = ('kbrl', 0.003769967974157894) +zone = ('ilz025', 0.003961880249323934) + +[fips1706750140] +centroid = (0.70548953768524192, -1.5938144445551912) +description = Montebello township, IL +station = ('keok', 0.0017123467076053148) +zone = ('ilz034', 0.0020719738318100839) + +[fips1706751804] +centroid = (0.70775621423809942, -1.5948993412182308) +description = Nauvoo township, IL +station = ('keok', 0.0016345002155427684) +zone = ('iaz099', 0.0020473297163390762) + +[fips1706756] +centroid = (0.69290519017958718, -1.5554125235289205) +description = Blue Mound village, IL +station = ('ktaz', 0.0040426828554495199) +zone = ('ilz052', 0.0034420155043593499) + +[fips1706759845] +centroid = (0.70697217743151852, -1.5895651437852381) +description = Pilot Grove township, IL +station = ('kfsw', 0.0044161717656708583) +zone = ('ilz034', 0.0021512346592960424) + +[fips1706761093] +centroid = (0.70841486659121711, -1.5921461890429649) +description = Pontoosuc township, IL +station = ('kfsw', 0.0019887015402150401) +zone = ('ilz034', 0.0033292556485326431) + +[fips1706761496] +centroid = (0.70524918839394968, -1.5918364978204909) +description = Prairie township, IL +station = ('keok', 0.0031959958338483065) +zone = ('ilz034', 0.00054711797632529628) + +[fips1706764876] +centroid = (0.70695680108080838, -1.5916436738447306) +description = Rock Creek township, IL +station = ('kfsw', 0.003359528643093771) +zone = ('ilz034', 0.0018225895880424998) + +[fips1706765234] +centroid = (0.70240316724918517, -1.5958339999392588) +description = Rocky Run township, IL +station = ('keok', 0.0038734373588355689) +zone = ('ilz034', 0.0045377157121845625) + +[fips1706766612] +centroid = (0.70230839587080185, -1.5920292519830812) +description = St. Albans township, IL +station = ('keok', 0.0049050554100950605) +zone = ('ilz034', 0.0029510125548321605) + +[fips1706767054] +centroid = (0.70384189451148171, -1.5876850227551123) +description = St. Mary township, IL +station = ('kmqb', 0.0053752052296381254) +zone = ('ilz034', 0.002941180348137428) + +[fips1706770499] +centroid = (0.70692114400419015, -1.5935452100647785) +description = Sonora township, IL +station = ('keok', 0.0018411233260074824) +zone = ('ilz034', 0.0025364949763266803) + +[fips1706778422] +centroid = (0.70238231056462386, -1.5937068101002207) +description = Walker township, IL +station = ('keok', 0.0042119610998483936) +zone = ('ilz034', 0.0034191494152972083) + +[fips1706778955] +centroid = (0.70425860932368778, -1.5957199775792261) +description = Warsaw township, IL +station = ('keok', 0.0020191963591584838) +zone = ('ilz034', 0.0036196554742555982) + +[fips1706781607] +centroid = (0.70370900514223478, -1.595577750698481) +description = Wilcox township, IL +station = ('keok', 0.0025737940781936099) +zone = ('ilz034', 0.0036976453799764343) + +[fips1706783713] +centroid = (0.70410077919942993, -1.5939678240898565) +description = Wythe township, IL +station = ('keok', 0.0025899238388075881) +zone = ('ilz034', 0.0024192773930448038) + +[fips1706899] +centroid = (0.69375535751152617, -1.5801382539760738) +description = Bluffs village, IL +station = ('kijx', 0.004003587010319218) +zone = ('ilz049', 0.0020057716669440737) + +[fips17069] +centroid = (0.65481004567593959, -1.5405349006526079) +description = Hardin County, IL +station = ('khsb', 0.0064448872857188989) +zone = ('ilz091', 1.2052451225746118e-05) + +[fips1706964] +centroid = (0.66891797835212274, -1.5487292389440137) +description = Bluford village, IL +station = ('kmvn', 0.0018016722526901631) +zone = ('ilz075', 0.0026176980366388559) + +[fips1706990666] +centroid = (0.65427948303662586, -1.5391287237808611) +description = Cave-In-Rock precinct, IL +station = ('khsb', 0.0075636509831495434) +zone = ('ilz091', 0.0012473074932813088) + +[fips1706991998] +centroid = (0.65441305308428099, -1.5405158940170536) +description = McFarlan precinct, IL +station = ('khsb', 0.0067738100873792123) +zone = ('ilz091', 0.00040387149026366033) + +[fips1706992170] +centroid = (0.65547079242415962, -1.5420036301247462) +description = Monroe precinct, IL +station = ('khsb', 0.0052400861201595469) +zone = ('ilz091', 0.001326973836498946) + +[fips1706992995] +centroid = (0.65510001467786594, -1.538559310112398) +description = Rock precinct, IL +station = ('khsb', 0.0073019580112176083) +zone = ('ilz091', 0.0016025442039791515) + +[fips1706993050] +centroid = (0.65318554556806074, -1.5422668257759469) +description = Rosiclare precinct, IL +station = ('km30', 0.0067811928662573073) +zone = ('ilz091', 0.0021259440318521072) + +[fips1706993276] +centroid = (0.6540081541511108, -1.5423384366351562) +description = Stone Church precinct, IL +station = ('khsb', 0.0064244212842255836) +zone = ('ilz091', 0.0016342252546480891) + +[fips17071] +centroid = (0.71235859511573085, -1.5871758927590129) +description = Henderson County, IL +station = ('kbrl', 0.0027102017905062032) +zone = ('ilz025', 0.00018412414347296628) + +[fips1707103415] +centroid = (0.71603095984814469, -1.5857761037923284) +description = Bald Bluff township, IL +station = ('kbrl', 0.0057951625928433208) +zone = ('ilz024', 0.0034934010823065489) + +[fips1707105911] +centroid = (0.71291577402613759, -1.5856039096083268) +description = Biggsville township, IL +station = ('kbrl', 0.0040170567217551684) +zone = ('ilz025', 0.0011318762852746734) + +[fips1707111280] +centroid = (0.71144311756318224, -1.5892877760605113) +description = Carman township, IL +station = ('kbrl', 0.00097871353777458678) +zone = ('ilz025', 0.002022004647038412) + +[fips1707129444] +centroid = (0.71288486424508479, -1.5878636222974689) +description = Gladstone township, IL +station = ('kbrl', 0.0024699344744387127) +zone = ('ilz025', 0.00084329724691039048) + +[fips1707133] +centroid = (0.72764731284405826, -1.5376624028630907) +description = Bolingbrook village, IL +station = ('klot', 0.0014481186602155075) +zone = ('ilz013', 0.0028154705278918527) + +[fips1707144394] +centroid = (0.70989494070349324, -1.5896337701314265) +description = Lomax township, IL +station = ('kbrl', 0.0017684562103464758) +zone = ('ilz025', 0.0032379588374571908) + +[fips1707148086] +centroid = (0.71145348481893911, -1.5855673275072049) +description = Media township, IL +station = ('kbrl', 0.0037945475540620633) +zone = ('ilz025', 0.0014139140194349403) + +[fips1707156250] +centroid = (0.71467815514492394, -1.5871355407467067) +description = Oquawka township, IL +station = ('kbrl', 0.0040981784859426499) +zone = ('ilz025', 0.0022726134165734352) + +[fips1707162861] +centroid = (0.70997351542641807, -1.5855671355209873) +description = Raritan township, IL +station = ('kmqb', 0.0037710212896233481) +zone = ('ilz025', 0.0026501099488434551) + +[fips1707166222] +centroid = (0.71451686926874702, -1.5853960408944141) +description = Rozetta township, IL +station = ('kbrl', 0.0049377658399591797) +zone = ('ilz025', 0.0024093283120606244) + +[fips1707173274] +centroid = (0.7114622812783693, -1.5875749971990665) +description = Stronghurst township, IL +station = ('kbrl', 0.0022740385666680527) +zone = ('ilz025', 0.0010620875013534277) + +[fips1707174730] +centroid = (0.7099011191690453, -1.5875842998039795) +description = Terre Haute township, IL +station = ('kbrl', 0.0027821542404661117) +zone = ('ilz025', 0.0025558176169816179) + +[fips1707211] +centroid = (0.70007615466408624, -1.5423157473548803) +description = Bondville village, IL +station = ('kcmi', 0.0019222833495378562) +zone = ('ilz045', 0.0023113654580641241) + +[fips1707224] +centroid = (0.67098937001497472, -1.5358458641776147) +description = Bone Gap village, IL +station = ('kajg', 0.0046499411555895069) +zone = ('ilz077', 0.0009084175473247166) + +[fips1707237] +centroid = (0.71811603489233222, -1.53683286532291) +description = Bonfield village, IL +station = ('kikk', 0.0030179488409817277) +zone = ('ilz023', 0.0025299649897707684) + +[fips1707263] +centroid = (0.66674198910719884, -1.5517231243830072) +description = Bonnie village, IL +station = ('kmvn', 0.0020852990360320477) +zone = ('ilz075', 0.0017448721317560696) + +[fips17073] +centroid = (0.72169401221879814, -1.5730798806816209) +description = Henry County, IL +station = ('kmli', 0.0053441352516526378) +zone = ('ilz016', 5.4240781449196221e-05) + +[fips1707300503] +centroid = (0.7235834533071297, -1.5692698269245173) +description = Alba township, IL +station = ('ksqi', 0.0060182839259027895) +zone = ('ilz016', 0.003402707621981122) + +[fips1707301504] +centroid = (0.72048313769034955, -1.5753616543325082) +description = Andover township, IL +station = ('kmli', 0.0044611770733684313) +zone = ('ilz016', 0.0021239255578599727) + +[fips1707301582] +centroid = (0.72208721744597992, -1.5692655508678499) +description = Annawan township, IL +station = ('ksqi', 0.0073271927014754356) +zone = ('ilz016', 0.0028901734327049042) + +[fips1707302739] +centroid = (0.72353507278026441, -1.5714475964052783) +description = Atkinson township, IL +station = ('kmli', 0.0062712594807917792) +zone = ('ilz016', 0.0021706060091928134) + +[fips1707309824] +centroid = (0.72045292604099753, -1.571331444743558) +description = Burns township, IL +station = ('kmli', 0.0070317286145803745) +zone = ('ilz016', 0.00184946129820461) + +[fips1707310656] +centroid = (0.72056424314068979, -1.5731607068792808) +description = Cambridge township, IL +station = ('kmli', 0.0057615031731165327) +zone = ('ilz016', 0.0011847090286525822) + +[fips1707315] +centroid = (0.69403872916887988, -1.554167510360303) +description = Boody CDP, IL +station = ('kdec', 0.0026953475310882136) +zone = ('ilz053', 0.0020075484234003071) + +[fips1707315040] +centroid = (0.71897424819212286, -1.5754337538839081) +description = Clover township, IL +station = ('kgbg', 0.0049721031518767398) +zone = ('ilz016', 0.0032857233616035227) + +[fips1707315677] +centroid = (0.72348215439734398, -1.5772436428649337) +description = Colona township, IL +station = ('kmli', 0.001926912146878628) +zone = ('ilz015', 0.0026028222585401145) + +[fips1707316444] +centroid = (0.7219188280797475, -1.5711854654049211) +description = Cornwall township, IL +station = ('kmli', 0.006647742293348277) +zone = ('ilz016', 0.0014395040644939316) + +[fips1707322476] +centroid = (0.72338701649981774, -1.5754922747737274) +description = Edford township, IL +station = ('kmli', 0.0032396645282139298) +zone = ('ilz016', 0.002436211894661206) + +[fips1707328443] +centroid = (0.71879606752878689, -1.5714685578095948) +description = Galva township, IL +station = ('kgbg', 0.006716843871458913) +zone = ('ilz016', 0.0031932957229438173) + +[fips1707328859] +centroid = (0.72352686973278002, -1.5733279268749143) +description = Geneseo township, IL +station = ('kmli', 0.0048620283807344787) +zone = ('ilz016', 0.0017880702127276665) + +[fips1707332642] +centroid = (0.7244359419269738, -1.5754475768915839) +description = Hanna township, IL +station = ('kmli', 0.0034197832878769627) +zone = ('ilz016', 0.0032174034798591821) + +[fips1707339740] +centroid = (0.72036524069937735, -1.5693884045938977) +description = Kewanee township, IL +station = ('kmli', 0.0084068646898928009) +zone = ('ilz028', 0.0035332963248612646) + +[fips1707344732] +centroid = (0.72501282560463542, -1.5713159811263855) +description = Loraine township, IL +station = ('ksqi', 0.005986560209375596) +zone = ('ilz016', 0.003525384914324769) + +[fips1707345304] +centroid = (0.72057206221573866, -1.5775612927887965) +description = Lynn township, IL +station = ('kmli', 0.003328214429468112) +zone = ('ilz015', 0.0039493542137982) + +[fips1707351388] +centroid = (0.72200705447343583, -1.5733201252531581) +description = Munson township, IL +station = ('kmli', 0.0050764808573359422) +zone = ('ilz016', 0.00031169312164967594) + +[fips1707356809] +centroid = (0.72200740353928639, -1.5753502573324927) +description = Osco township, IL +station = ('kmli', 0.0036409773163344423) +zone = ('ilz016', 0.0017164588233626321) + +[fips1707357108] +centroid = (0.71897775630391947, -1.5774045971285526) +description = Oxford township, IL +station = ('kgbg', 0.004526891897083986) +zone = ('ilz016', 0.0042649150822722344) + +[fips1707359462] +centroid = (0.72483389444972102, -1.5733194620280422) +description = Phenix township, IL +station = ('kmli', 0.0050608054031645146) +zone = ('ilz016', 0.0030909464849627924) + +[fips1707379722] +centroid = (0.7189400746453688, -1.5732809077048657) +description = Weller township, IL +station = ('kgbg', 0.0058410755513304572) +zone = ('ilz016', 0.0028113520096653606) + +[fips1707380190] +centroid = (0.72202695122690852, -1.5773637564240559) +description = Western township, IL +station = ('kmli', 0.0023174363555549062) +zone = ('ilz015', 0.0030332127315301259) + +[fips1707380983] +centroid = (0.71893440232529993, -1.5695064237579177) +description = Wethersfield township, IL +station = ('kgbg', 0.0079870802174373725) +zone = ('ilz028', 0.0024109406837343316) + +[fips1707384012] +centroid = (0.72501163878074415, -1.5693474766229387) +description = Yorktown township, IL +station = ('ksqi', 0.0049070059050798521) +zone = ('ilz009', 0.00377346751753829) + +[fips1707419] +centroid = (0.7280083865597109, -1.5417635251795494) +description = Boulder Hill CDP, IL +station = ('karr', 0.0019464217805204712) +zone = ('ilz020', 0.0024343240538647433) + +[fips1707471] +centroid = (0.71878084825770949, -1.5337634420338904) +description = Bourbonnais village, IL +station = ('kikk', 0.0019941513179270206) +zone = ('ilz023', 0.00082121537858037736) + +[fips17075] +centroid = (0.7112018956072641, -1.5329855313329839) +description = Iroquois County, IL +station = ('kikk', 0.0056315954150686484) +zone = ('ilz033', 0.00012561833031487512) + +[fips1707502401] +centroid = (0.70881938155195179, -1.5362137446773503) +description = Artesia township, IL +station = ('ktip', 0.0058015879132960295) +zone = ('ilz039', 0.0027257932874327853) + +[fips1707502453] +centroid = (0.70901429992281451, -1.5333635347423809) +description = Ash Grove township, IL +station = ('ktip', 0.006906965988428616) +zone = ('ilz033', 0.0022004754817029262) + +[fips1707502492] +centroid = (0.71369947922016053, -1.5354307027084428) +description = Ashkum township, IL +station = ('kikk', 0.0035524522150011699) +zone = ('ilz033', 0.0032031721613906593) + +[fips1707504455] +centroid = (0.71383402665219675, -1.5287131224037345) +description = Beaver township, IL +station = ('kikk', 0.0045274976061671435) +zone = ('inz010', 0.0027068517495610375) + +[fips1707504520] +centroid = (0.71513726400466104, -1.5287540503746937) +description = Beaverville township, IL +station = ('kikk', 0.003763468270284248) +zone = ('inz010', 0.0025724322942298995) + +[fips1707505014] +centroid = (0.71086911367878636, -1.5307999078705892) +description = Belmont township, IL +station = ('kikk', 0.0062336634345410459) +zone = ('ilz033', 0.001563508689223085) + +[fips1707510] +centroid = (0.70218180714015466, -1.5893540985720869) +description = Bowen village, IL +station = ('kuin', 0.0055240756620530311) +zone = ('ilz034', 0.0032857614674390279) + +[fips1707512814] +centroid = (0.71473086408833408, -1.5344084808188425) +description = Chebanse township, IL +station = ('kikk', 0.0022869228624808101) +zone = ('ilz023', 0.0033322312816398986) + +[fips1707516041] +centroid = (0.71250111870244881, -1.528716525795776) +description = Concord township, IL +station = ('kikk', 0.0055009105932738505) +zone = ('ilz033', 0.0033798857981465077) + +[fips1707517367] +centroid = (0.71082420635713262, -1.5328019576022591) +description = Crescent township, IL +station = ('kikk', 0.0060146215473873017) +zone = ('ilz033', 0.00035245292169695314) + +[fips1707518511] +centroid = (0.71264823250509934, -1.53599910408594) +description = Danforth township, IL +station = ('kikk', 0.0046836604100661955) +zone = ('ilz033', 0.0028192790608716845) + +[fips1707520487] +centroid = (0.71157846784667445, -1.5359478263125164) +description = Douglas township, IL +station = ('kikk', 0.0056455622456918313) +zone = ('ilz033', 0.0024007173994250119) + +[fips1707527286] +centroid = (0.70739178949028303, -1.532788658193359) +description = Fountain Creek township, IL +station = ('ktip', 0.0059335383680443618) +zone = ('ilz033', 0.0037845928954324246) + +[fips1707537725] +centroid = (0.71237709560580209, -1.5328047152224773) +description = Iroquois township, IL +station = ('kikk', 0.0044643112309709181) +zone = ('ilz033', 0.0012008855343787325) + +[fips1707544277] +centroid = (0.70731824131560395, -1.5368329176827877) +description = Loda township, IL +station = ('ktip', 0.0042287479864056296) +zone = ('ilz039', 0.0025623973018923411) + +[fips1707544979] +centroid = (0.7074056648578364, -1.5308216721263614) +description = Lovejoy township, IL +station = ('kdnv', 0.0059882987552260358) +zone = ('ilz033', 0.004065020059783514) + +[fips1707547293] +centroid = (0.71386214390644653, -1.5313153210519954) +description = Martinton township, IL +station = ('kikk', 0.0032949485822678401) +zone = ('ilz033', 0.0029181783600020269) + +[fips1707548814] +centroid = (0.71237178980487603, -1.5308019149992289) +description = Middleport township, IL +station = ('kikk', 0.0048155287825833656) +zone = ('ilz033', 0.0019420915370395829) + +[fips1707549061] +centroid = (0.70913409932267146, -1.5308806817083713) +description = Milford township, IL +station = ('kdnv', 0.0076816454303480124) +zone = ('ilz033', 0.0025179517809819168) + +[fips1707549074] +centroid = (0.71479860031660403, -1.5371752640155665) +description = Milks Grove township, IL +station = ('kikk', 0.0036177994521133798) +zone = ('ilz023', 0.0042368237887107293) + +[fips1707556094] +centroid = (0.71034038363518726, -1.5353532449962395) +description = Onarga township, IL +station = ('kikk', 0.0066900095891866277) +zone = ('ilz033', 0.0020917256210029058) + +[fips1707557589] +centroid = (0.71514414060191389, -1.531353805562002) +description = Papineau township, IL +station = ('kikk', 0.0021917542130591074) +zone = ('ilz023', 0.0032640887130260831) + +[fips1707559767] +centroid = (0.70736417838151644, -1.5347969911103363) +description = Pigeon Grove township, IL +station = ('ktip', 0.0049300319150601471) +zone = ('ilz039', 0.0039734831054219601) + +[fips1707561665] +centroid = (0.70744086814884899, -1.5287409080454262) +description = Prairie Green township, IL +station = ('kdnv', 0.0058286080247329898) +zone = ('inz028', 0.0045290213096781358) + +[fips1707563901] +centroid = (0.71041183741476399, -1.5371571125913457) +description = Ridgeland township, IL +station = ('kikk', 0.0070792038250692257) +zone = ('ilz039', 0.0027257905223312421) + +[fips1707569225] +centroid = (0.71091834941698517, -1.5287086194542645) +description = Sheldon township, IL +station = ('kikk', 0.0068211321092150595) +zone = ('ilz033', 0.0031281808732740407) + +[fips1707572773] +centroid = (0.70917717404861069, -1.5287726206779351) +description = Stockland township, IL +station = ('kdnv', 0.0075646409493030191) +zone = ('ilz033', 0.0036646372375233409) + +[fips1707640] +centroid = (0.7194855947563723, -1.5406390269957819) +description = Braceville village, IL +station = ('kc09', 0.0040113263842042534) +zone = ('ilz021', 0.0021995868898461619) + +[fips1707692] +centroid = (0.71867738513965118, -1.5648310183043828) +description = Bradford village, IL +station = ('kc75', 0.0045152721819983451) +zone = ('ilz028', 0.0023431876394138275) + +[fips17077] +centroid = (0.65949178667465924, -1.559996438823066) +description = Jackson County, IL +station = ('kmdh', 0.0018105357237085359) +zone = ('ilz084', 1.9864041540739413e-05) + +[fips1707707731] +centroid = (0.661713555905863, -1.5632177930234719) +description = Bradley township, IL +station = ('ksar', 0.0044975499435731016) +zone = ('ilz084', 0.0033784800132027298) + +[fips1707711170] +centroid = (0.6585153971312161, -1.5570037576612563) +description = Carbondale township, IL +station = ('kmdh', 0.0010816975455606101) +zone = ('ilz084', 0.0025650149292445173) + +[fips1707719148] +centroid = (0.65990022862621101, -1.5643399350127491) +description = Degognia township, IL +station = ('ksar', 0.0059980569678264395) +zone = ('moz076', 0.0032224062323148376) + +[fips1707719629] +centroid = (0.65999883972894868, -1.5567560081739358) +description = De Soto township, IL +station = ('kmdh', 0.00093392865569672944) +zone = ('ilz084', 0.0026252427941135807) + +[fips1707723217] +centroid = (0.66160099962240193, -1.5570173188695442) +description = Elk township, IL +station = ('kmdh', 0.002224986925109077) +zone = ('ilz084', 0.0031791448089455989) + +[fips1707727260] +centroid = (0.65879978107953607, -1.5631292873771032) +description = Fountain Bluff township, IL +station = ('kmdh', 0.0043350591791193258) +zone = ('ilz084', 0.0025554623543044201) + +[fips1707730783] +centroid = (0.65710532817523737, -1.5615961901621513) +description = Grand Tower township, IL +station = ('kmdh', 0.0038646578930060039) +zone = ('ilz084', 0.0026816621429280193) + +[fips1707740104] +centroid = (0.66016719418859604, -1.5628490398591104) +description = Kinkaid township, IL +station = ('kmdh', 0.0041272225128990555) +zone = ('ilz084', 0.0023457000746450194) + +[fips1707742990] +centroid = (0.66015761233100256, -1.5610032494553712) +description = Levan township, IL +station = ('kmdh', 0.0027010135211681056) +zone = ('ilz084', 0.0010381993865426131) + +[fips1707744] +centroid = (0.71843469710716146, -1.533215338835594) +description = Bradley village, IL +station = ('kikk', 0.0016037403760199834) +zone = ('ilz023', 0.00048814590918863394) + +[fips1707746227] +centroid = (0.65687623625762048, -1.5570099361268084) +description = Makanda township, IL +station = ('kmdh', 0.0026257847324963153) +zone = ('ilz088', 0.0029469568857158697) + +[fips1707751466] +centroid = (0.6585735165953075, -1.5588370864141361) +description = Murphysboro township, IL +station = ('kmdh', 0.0012474553776902469) +zone = ('ilz084', 0.0012951680465955351) + +[fips1707756276] +centroid = (0.66157679190567675, -1.560706770375335) +description = Ora township, IL +station = ('kmdh', 0.0031881841915365298) +zone = ('ilz084', 0.0021711198004308735) + +[fips1707760963] +centroid = (0.6569679882163979, -1.559548046284936) +description = Pomona township, IL +station = ('kmdh', 0.0028724870209833591) +zone = ('ilz084', 0.0025348646714046779) + +[fips1707767522] +centroid = (0.65844048759972051, -1.5609629498029427) +description = Sand Ridge township, IL +station = ('kmdh', 0.0027632826701794668) +zone = ('ilz084', 0.0012798227015312651) + +[fips1707770] +centroid = (0.72028212812039738, -1.5397342308582556) +description = Braidwood city, IL +station = ('kc09', 0.0037657663880435155) +zone = ('ilz021', 0.0026146090531891891) + +[fips1707770408] +centroid = (0.66008052113794202, -1.5586329003449455) +description = Somerset township, IL +station = ('kmdh', 0.00097039875666353199) +zone = ('ilz084', 0.0012460051843133889) + +[fips1707777538] +centroid = (0.66157778674335033, -1.5588963228889487) +description = Vergennes township, IL +station = ('kmdh', 0.0023319311666780062) +zone = ('ilz084', 0.0022788119250638015) + +[fips17079] +centroid = (0.68076347562553075, -1.5385210524951942) +description = Jasper County, IL +station = ('koly', 0.0049503171737093022) +zone = ('ilz067', 9.8491657251281451e-05) + +[fips1707913] +centroid = (0.67393798161317142, -1.5624835504604504) +description = Breese city, IL +station = ('kblv', 0.0045888680628584609) +zone = ('ilz069', 0.0013875894337379935) + +[fips1707917653] +centroid = (0.68280723872632354, -1.5382955559558367) +description = Crooked Creek township, IL +station = ('k1h2', 0.0054316696256034632) +zone = ('ilz067', 0.0019662238626542571) + +[fips1707927390] +centroid = (0.67893955419731911, -1.5377354972521642) +description = Fox township, IL +station = ('koly', 0.0032589279879373335) +zone = ('ilz067', 0.0020214548337266379) + +[fips1707930887] +centroid = (0.68303165316154502, -1.5359194996187566) +description = Grandville township, IL +station = ('krsv', 0.0052017288050792065) +zone = ('ilz067', 0.0029989915030710526) + +[fips1707931888] +centroid = (0.68291955066368937, -1.5408080795871302) +description = Grove township, IL +station = ('k1h2', 0.0035534094566920193) +zone = ('ilz062', 0.0025889749905450648) + +[fips1707936659] +centroid = (0.68162102570020566, -1.5362368702899392) +description = Hunt City township, IL +station = ('krsv', 0.0050624054306002211) +zone = ('ilz067', 0.0019713053264104551) + +[fips1707954001] +centroid = (0.6810321690638752, -1.5413404399155735) +description = North Muddy township, IL +station = ('k1h2', 0.0031219939034557039) +zone = ('ilz067', 0.0021568816446469585) + +[fips1707966803] +centroid = (0.67895369136426031, -1.5358841567014037) +description = Ste. Marie township, IL +station = ('koly', 0.0039448000438594092) +zone = ('ilz067', 0.0028253485528666701) + +[fips1707970200] +centroid = (0.67892765105182051, -1.539495993415358) +description = Smallwood township, IL +station = ('koly', 0.0031293589389694934) +zone = ('ilz067', 0.0020544434564622824) + +[fips1707971084] +centroid = (0.6791547882006751, -1.5412480072783878) +description = South Muddy township, IL +station = ('koly', 0.003773543696587734) +zone = ('ilz067', 0.0026845340627400334) + +[fips1707978357] +centroid = (0.68078108599768328, -1.5390736062830832) +description = Wade township, IL +station = ('k1h2', 0.0048891792077878637) +zone = ('ilz067', 0.00039477273893619879) + +[fips1707982023] +centroid = (0.68042090239994923, -1.536070034266741) +description = Willow Hill township, IL +station = ('krsv', 0.0049202026654824507) +zone = ('ilz067', 0.0019934382467028102) + +[fips17081] +centroid = (0.6684747170819938, -1.5520202492348669) +description = Jefferson County, IL +station = ('kmvn', 0.00083542754042565) +zone = ('ilz075', 4.2594911278853529e-06) + +[fips1708103428] +centroid = (0.66617629299004244, -1.5549575685528032) +description = Bald Hill township, IL +station = ('kmvn', 0.0040271341441578019) +zone = ('ilz075', 0.0032565031781222453) + +[fips1708106496] +centroid = (0.66770048902580903, -1.5548809136920556) +description = Blissville township, IL +station = ('kmvn', 0.0032107719415122001) +zone = ('ilz075', 0.0023770637513715188) + +[fips1708111670] +centroid = (0.66915892105536057, -1.5549913930337067) +description = Casner township, IL +station = ('kenl', 0.0030499435025609393) +zone = ('ilz075', 0.002433015063865561) + +[fips1708120227] +centroid = (0.66767046936267482, -1.5512464924175799) +description = Dodds township, IL +station = ('kmvn', 0.0010965597034200787) +zone = ('ilz075', 0.001003610757181633) + +[fips1708123334] +centroid = (0.6662657585674997, -1.5530525591275439) +description = Elk Prairie township, IL +station = ('kmvn', 0.0029563074638465185) +zone = ('ilz075', 0.0023511169665554948) + +[fips1708125648] +centroid = (0.67075252883547909, -1.5489216614940462) +description = Farrington township, IL +station = ('kmvn', 0.0025880167253048377) +zone = ('ilz075', 0.0033303436025788496) + +[fips1708125986] +centroid = (0.6707731935338227, -1.5510265285719511) +description = Field township, IL +station = ('kmvn', 0.0020212188943571313) +zone = ('ilz075', 0.0024289962799602144) + +[fips1708130731] +centroid = (0.67073230046944843, -1.5549158551836804) +description = Grand Prairie township, IL +station = ('kenl', 0.0014766932813395253) +zone = ('ilz075', 0.0032059999020837026) + +[fips1708145512] +centroid = (0.66769598607633895, -1.5530572889698167) +description = McClellan township, IL +station = ('kmvn', 0.0019189967404966643) +zone = ('ilz075', 0.0011264852056125311) + +[fips1708150348] +centroid = (0.66631241121840556, -1.5495416373509396) +description = Moores Prairie township, IL +station = ('kmvn', 0.0027003959053350673) +zone = ('ilz075', 0.0029053062745402914) + +[fips1708151193] +centroid = (0.66913518457753351, -1.5509413390511615) +description = Mount Vernon township, IL +station = ('kmvn', 0.00038763465995661495) +zone = ('ilz075', 0.0010733292657076196) + +[fips1708158564] +centroid = (0.66763585948360771, -1.549041827413046) +description = Pendleton township, IL +station = ('kmvn', 0.0019096780518280524) +zone = ('ilz075', 0.0024803029956181693) + +[fips1708165377] +centroid = (0.67070051802376962, -1.552885531118128) +description = Rome township, IL +station = ('kenl', 0.0022121776037475459) +zone = ('ilz075', 0.0023307477537067717) + +[fips1708169511] +centroid = (0.66917906215492862, -1.553000600675712) +description = Shiloh township, IL +station = ('kmvn', 0.0016144150424128752) +zone = ('ilz075', 0.0010471571066505928) + +[fips1708172039] +centroid = (0.66606078710014549, -1.5511280892811248) +description = Spring Garden township, IL +station = ('kmvn', 0.0026926460804596064) +zone = ('ilz075', 0.002509781335922607) + +[fips1708179514] +centroid = (0.66934509532667075, -1.5490891083824825) +description = Webber township, IL +station = ('kmvn', 0.0016236272535256238) +zone = ('ilz075', 0.0024571152665941345) + +[fips1708186] +centroid = (0.67558677670423806, -1.5316897988963034) +description = Bridgeport city, IL +station = ('kajg', 0.0018331598931110664) +zone = ('ilz073', 0.00049087436841575903) + +[fips1708225] +centroid = (0.72850362373496436, -1.5325151301929862) +description = Bridgeview village, IL +station = ('kmdw', 0.001054082336429908) +zone = ('ilz014', 0.0017452977685956828) + +[fips1708264] +centroid = (0.68138633127568993, -1.5732487587400439) +description = Brighton village, IL +station = ('kaln', 0.0027435345178403871) +zone = ('ilz099', 0.0030319943329572096) + +[fips17083] +centroid = (0.68207802271154772, -1.577103335846366) +description = Jersey County, IL +station = ('kset', 0.0027427236079299107) +zone = ('ilz099', 0.00011435206932198247) + +[fips1708303] +centroid = (0.71276132984062868, -1.5687677655118886) +description = Brimfield village, IL +station = ('kpia', 0.0039984580833338909) +zone = ('ilz029', 0.0018542300869699726) + +[fips1708323789] +centroid = (0.68038796803696411, -1.5763978039495399) +description = Elsah township, IL +station = ('kset', 0.0017575681031826865) +zone = ('ilz099', 0.0018487676868027699) + +[fips1708324231] +centroid = (0.68286389211384335, -1.5782954829919407) +description = English township, IL +station = ('kset', 0.0033494049507682561) +zone = ('ilz099', 0.0012072719875838175) + +[fips1708325973] +centroid = (0.68302400861942136, -1.5741947446479174) +description = Fidelity township, IL +station = ('kaln', 0.004537257857097101) +zone = ('ilz099', 0.0023519397600324297) + +[fips1708338401] +centroid = (0.68325608505005886, -1.5761139435999953) +description = Jersey township, IL +station = ('kset', 0.0041277772898261926) +zone = ('ilz099', 0.001291786590349494) + +[fips1708349672] +centroid = (0.68142598515629527, -1.5762436739232961) +description = Mississippi township, IL +station = ('kset', 0.0025212817970965266) +zone = ('ilz099', 0.00095950127964898396) + +[fips1708356952] +centroid = (0.68146995000015298, -1.5781315267620084) +description = Otter Creek township, IL +station = ('kset', 0.0019631023537446304) +zone = ('ilz099', 0.0011126644445501178) + +[fips1708359598] +centroid = (0.68153606307221859, -1.5741244951455247) +description = Piasa township, IL +station = ('kaln', 0.0032279540581302631) +zone = ('ilz099', 0.0023365405711880884) + +[fips1708362354] +centroid = (0.68048436257155176, -1.5790780188153648) +description = Quarry township, IL +station = ('kset', 0.0011189995110083327) +zone = ('ilz099', 0.0023247374955045912) + +[fips1708363745] +centroid = (0.68300795159030292, -1.5803093660559393) +description = Richwood township, IL +station = ('kset', 0.0038073559660042246) +zone = ('ilz098', 0.0017706570205384088) + +[fips1708365689] +centroid = (0.68137622581932089, -1.5799780327507407) +description = Rosedale township, IL +station = ('kset', 0.0022466870665195271) +zone = ('ilz099', 0.0024307414219470751) + +[fips1708366482] +centroid = (0.68439163116799151, -1.5741616532052995) +description = Ruyle township, IL +station = ('kaln', 0.0057915782424587227) +zone = ('ilz099', 0.0031367358067101135) + +[fips1708420] +centroid = (0.69653859916309635, -1.5358347289769871) +description = Broadlands village, IL +station = ('kcmi', 0.004213666681578636) +zone = ('ilz055', 0.0038262995100579963) + +[fips1708446] +centroid = (0.73056639347131136, -1.5333798012110094) +description = Broadview village, IL +station = ('kmdw', 0.0019033953447100617) +zone = ('ilz014', 0.00060624463204133033) + +[fips1708472] +centroid = (0.69929873265537035, -1.5610723994003353) +description = Broadwell village, IL +station = ('kaaa', 0.0021533141262488251) +zone = ('ilz042', 0.0014217922017160853) + +[fips17085] +centroid = (0.73936320196721317, -1.5744871920173815) +description = Jo Daviess County, IL +station = ('ksfy', 0.0056852930946911882) +zone = ('ilz001', 5.8734085118112601e-05) + +[fips1708501686] +centroid = (0.74147936132537873, -1.573215527671086) +description = Apple River township, IL +station = ('kpvb', 0.0052887883166370265) +zone = ('ilz001', 0.0022667940179518227) + +[fips1708505495] +centroid = (0.73722554015266295, -1.5699099787875639) +description = Berreman township, IL +station = ('ksfy', 0.0039603613071159853) +zone = ('ilz007', 0.0029925315067622442) + +[fips1708516639] +centroid = (0.74147971039122906, -1.576940636253495) +description = Council Hill township, IL +station = ('kpvb', 0.0037745414506636507) +zone = ('ilz001', 0.0027349198824674686) + +[fips1708519551] +centroid = (0.737183076291962, -1.5734906439210778) +description = Derinda township, IL +station = ('ksfy', 0.0033987681158377395) +zone = ('ilz001', 0.0023595011892133936) + +[fips1708521202] +centroid = (0.74141974087813056, -1.5815347791770571) +description = Dunleith township, IL +station = ('kdbq', 0.0017752380085665658) +zone = ('iaz042', 0.0034446053119950096) + +[fips1708521813] +centroid = (0.7402572119699623, -1.5773779110442898) +description = East Galena township, IL +station = ('kdbq', 0.0041680520963822063) +zone = ('ilz001', 0.0022830049965922266) + +[fips1708523178] +centroid = (0.73856277651895608, -1.5757217332104874) +description = Elizabeth township, IL +station = ('ksfy', 0.005235505366608606) +zone = ('ilz001', 0.0012448849266143639) + +[fips1708524] +centroid = (0.69316569802373984, -1.5347287661898759) +description = Brocton village, IL +station = ('kprg', 0.003551404940428716) +zone = ('ilz057', 0.0026038428080145579) + +[fips1708531979] +centroid = (0.74038840836983466, -1.5755954237325205) +description = Guilford township, IL +station = ('kpvb', 0.0051500159961601413) +zone = ('ilz001', 0.0012603468744410487) + +[fips1708532720] +centroid = (0.73729935012672987, -1.576054846751523) +description = Hanover township, IL +station = ('ksfy', 0.0042720450168480181) +zone = ('ilz001', 0.002412613704528751) + +[fips1708548372] +centroid = (0.74110655899715272, -1.5800674983281979) +description = Menominee township, IL +station = ('kdbq', 0.002431039859139705) +zone = ('iaz042', 0.0045231445428279352) + +[fips1708553208] +centroid = (0.74060620800719101, -1.5699675921061722) +description = Nora township, IL +station = ('kfep', 0.0057877386544403818) +zone = ('ilz001', 0.0035518201765612845) + +[fips1708560664] +centroid = (0.73723932825375382, -1.5714523611541362) +description = Pleasant Valley township, IL +station = ('ksfy', 0.0035203044883223996) +zone = ('ilz001', 0.0031377704407490304) + +[fips1708562926] +centroid = (0.74076248478841455, -1.5785997811470258) +description = Rawlins township, IL +station = ('kdbq', 0.0033419380958583569) +zone = ('ilz001', 0.0033101131861496312) + +[fips1708563472] +centroid = (0.73877055796640601, -1.5775878217934269) +description = Rice township, IL +station = ('kdbq', 0.0041990698357765388) +zone = ('ilz001', 0.0023718306528037868) + +[fips1708566326] +centroid = (0.74028592263615756, -1.5715500123257853) +description = Rush township, IL +station = ('ksfy', 0.0065015073900593582) +zone = ('ilz001', 0.0023453205472066664) + +[fips1708567938] +centroid = (0.74148044342951491, -1.5751137303122626) +description = Scales Mound township, IL +station = ('kpvb', 0.0043693907845742562) +zone = ('ilz001', 0.0021084646548989333) + +[fips1708572793] +centroid = (0.73876467620682673, -1.5714963434512865) +description = Stockton township, IL +station = ('ksfy', 0.0050035696780867563) +zone = ('ilz001', 0.0023160947298380002) + +[fips1708575146] +centroid = (0.74033809052749966, -1.5734927557694727) +description = Thompson township, IL +station = ('kpvb', 0.0059974635857632155) +zone = ('ilz001', 0.001181673060977284) + +[fips1708576] +centroid = (0.72998498939088707, -1.5332289174971745) +description = Brookfield village, IL +station = ('kmdw', 0.0014631933459873226) +zone = ('ilz014', 0.00047749576066645428) + +[fips1708578084] +centroid = (0.74148473693947492, -1.5785406319386757) +description = Vinegar Hill township, IL +station = ('kpvb', 0.0035966377291519643) +zone = ('ilz001', 0.0036260229613708974) + +[fips1708578799] +centroid = (0.73875256362181796, -1.5699468226880735) +description = Wards Grove township, IL +station = ('ksfy', 0.0053145294556358859) +zone = ('ilz002', 0.0037501736223339477) + +[fips1708578864] +centroid = (0.74148311378327059, -1.5712708120053438) +description = Warren township, IL +station = ('kpvb', 0.0064097200438848678) +zone = ('ilz001', 0.0031528106821229478) + +[fips1708580359] +centroid = (0.74008086390234062, -1.5788165335868309) +description = West Galena township, IL +station = ('kdbq', 0.0030998870775050288) +zone = ('iaz054', 0.0043082686406353179) + +[fips1708582907] +centroid = (0.73876429223439133, -1.5735820293607123) +description = Woodbine township, IL +station = ('ksfy', 0.0049714574361629342) +zone = ('ilz001', 0.0009450780099980843) + +[fips1708667] +centroid = (0.6746464631164335, -1.5737269440485053) +description = Brooklyn village, IL +station = ('kcps', 0.0015505129742692425) +zone = ('moz064', 0.0010998031624510124) + +[fips17087] +centroid = (0.65381456223047951, -1.5513003358250044) +description = Johnson County, IL +station = ('km30', 0.0051391427389954423) +zone = ('ilz089', 3.5577451517469445e-05) + +[fips1708706] +centroid = (0.64796753470337343, -1.5468152410731066) +description = Brookport city, IL +station = ('km30', 0.0020249096253138876) +zone = ('kyz005', 0.0017414029448221098) + +[fips1708790346] +centroid = (0.65164380897331176, -1.5524762688618279) +description = Belknap precinct, IL +station = ('km30', 0.0038224105733785543) +zone = ('ilz089', 0.0023553185161773022) + +[fips1708790450] +centroid = (0.65390582549706633, -1.5511283685338051) +description = Bloomfield precinct, IL +station = ('km30', 0.0051779339595115145) +zone = ('ilz089', 0.00015588060226568581) + +[fips1708790558] +centroid = (0.65585162326694479, -1.5492490154485501) +description = Burnside precinct, IL +station = ('kmwa', 0.0044377042376547949) +zone = ('ilz089', 0.0026060647978724564) + +[fips1708790594] +centroid = (0.65209598887591824, -1.5529490785561932) +description = Cache precinct, IL +station = ('km30', 0.0044067253091783663) +zone = ('ilz089', 0.0021614298905503547) + +[fips1708791188] +centroid = (0.65361323850126207, -1.5531264214614884) +description = Elvira precinct, IL +station = ('kmwa', 0.0052567288846987349) +zone = ('ilz089', 0.0014891170415369077) + +[fips1708791440] +centroid = (0.65529746377614417, -1.5534899386380936) +description = Goreville No. 1 precinct, IL +station = ('kmwa', 0.0035706046374374589) +zone = ('ilz089', 0.0023194265511177386) + +[fips1708791458] +centroid = (0.65533793796149786, -1.552409038779041) +description = Goreville No. 2 precinct, IL +station = ('kmwa', 0.003608539197080392) +zone = ('ilz089', 0.0017917515646303406) + +[fips1708791512] +centroid = (0.65265112575110018, -1.5492864178544203) +description = Grantsburg No. 1 precinct, IL +station = ('km30', 0.0036435692344156272) +zone = ('ilz089', 0.001942135342753999) + +[fips1708791530] +centroid = (0.6520408539248479, -1.5491844906261041) +description = Grantsburg No. 2 precinct, IL +station = ('km30', 0.003029607101271157) +zone = ('ilz089', 0.0024084371182417812) + +[fips1708791840] +centroid = (0.65605484940504699, -1.552435585236964) +description = Lake No. 1 precinct, IL +station = ('kmwa', 0.002905924075531877) +zone = ('ilz089', 0.0024448329801053433) + +[fips1708791842] +centroid = (0.65595560998377866, -1.5508103520907994) +description = Lake No. 2 precinct, IL +station = ('kmwa', 0.0035433248744149914) +zone = ('ilz089', 0.002192029595446151) + +[fips1708792340] +centroid = (0.65499365431324941, -1.5492700641193293) +description = Ozark precinct, IL +station = ('kmwa', 0.0050499122107907192) +zone = ('ilz089', 0.001986046912747016) + +[fips1708793168] +centroid = (0.65395328099942818, -1.5491662693887132) +description = Simpson precinct, IL +station = ('km30', 0.0049400565323695321) +zone = ('ilz089', 0.0016729763661179372) + +[fips1708793456] +centroid = (0.65543380889730984, -1.5512165251143233) +description = Tunnel Hill precinct, IL +station = ('kmwa', 0.0038302594226138306) +zone = ('ilz089', 0.0016408910089898319) + +[fips1708793528] +centroid = (0.65279218326124633, -1.5524311870072489) +description = Vienna No. 1 precinct, IL +station = ('km30', 0.0046650138319828871) +zone = ('ilz089', 0.0013641419996807294) + +[fips1708793546] +centroid = (0.65235860856846595, -1.5508122544996839) +description = Vienna No. 2 precinct, IL +station = ('km30', 0.0036444205403617508) +zone = ('ilz089', 0.0014789948715903667) + +[fips1708793552] +centroid = (0.65271388779100192, -1.5516983930675066) +description = Vienna No. 3 precinct, IL +station = ('km30', 0.0042807474172140633) +zone = ('ilz089', 0.0011331624905786739) + +[fips1708875] +centroid = (0.66207225597373287, -1.5439430050829772) +description = Broughton village, IL +station = ('khsb', 0.0024570198917908308) +zone = ('ilz082', 0.0027902208965898743) + +[fips17089] +centroid = (0.73198400224965876, -1.5433604490852464) +description = Kane County, IL +station = ('kdpa', 0.0024132042783297581) +zone = ('ilz012', 1.3449930402115509e-05) + +[fips1708903025] +centroid = (0.72900428888419144, -1.5414561203383954) +description = Aurora township, IL +station = ('kdpa', 0.0024579406414285631) +zone = ('ilz012', 0.003294447672319309) + +[fips1708904091] +centroid = (0.7300976853006883, -1.5414335183245822) +description = Batavia township, IL +station = ('kdpa', 0.0014837395538308724) +zone = ('ilz012', 0.0023668224755059508) + +[fips1708905989] +centroid = (0.7289071962179029, -1.5453755713330142) +description = Big Rock township, IL +station = ('karr', 0.0010019176473086216) +zone = ('ilz020', 0.0033641717488710043) + +[fips1708906262] +centroid = (0.73039383276816672, -1.5435589977409534) +description = Blackberry township, IL +station = ('karr', 0.0014713307773097152) +zone = ('ilz012', 0.0015859248975748862) + +[fips1708909772] +centroid = (0.73346175507402978, -1.5454105826378091) +description = Burlington township, IL +station = ('kdkb', 0.0026569836228106567) +zone = ('ilz012', 0.0021239129767264223) + +[fips1708910903] +centroid = (0.73198400224965876, -1.5433604490852464) +description = Campton township, IL +station = ('kdpa', 0.0024132042783297581) +zone = ('ilz012', 1.3449930402115509e-05) + +[fips1708921046] +centroid = (0.73496411704085407, -1.5412329101803579) +description = Dundee township, IL +station = ('kdpa', 0.0037426672270256239) +zone = ('ilz012', 0.003386434679289538) + +[fips1708923087] +centroid = (0.73349383422568137, -1.5414437459539987) +description = Elgin township, IL +station = ('kdpa', 0.002372283138668752) +zone = ('ilz012', 0.0020893710427381065) + +[fips1708928885] +centroid = (0.73095314098026076, -1.5415330195452384) +description = Geneva township, IL +station = ('kdpa', 0.0010116126015397265) +zone = ('ilz012', 0.0017071358737211103) + +[fips1708932538] +centroid = (0.7349844675799323, -1.5451320804490682) +description = Hampshire township, IL +station = ('kdkb', 0.003898138824629911) +zone = ('ilz012', 0.0032824780181978492) + +[fips1708938908] +centroid = (0.73041837209744975, -1.5454790693576574) +description = Kaneville township, IL +station = ('karr', 0.0018080470564698964) +zone = ('ilz012', 0.0022088363132592597) + +[fips1708953] +centroid = (0.70034914161239059, -1.5773064572647129) +description = Browning village, IL +station = ('kijx', 0.0064160878242811546) +zone = ('ilz047', 0.0031604938946837389) + +[fips1708960365] +centroid = (0.73347775974327056, -1.5434455862461589) +description = Plato township, IL +station = ('kdpa', 0.0032262604217993245) +zone = ('ilz012', 0.0015051199288191495) + +[fips1708966430] +centroid = (0.73493156665030435, -1.5430878635626701) +description = Rutland township, IL +station = ('kdpa', 0.0042043923870919058) +zone = ('ilz012', 0.0029654514974031287) + +[fips1708966716] +centroid = (0.73201742530483449, -1.5414922137473268) +description = St. Charles township, IL +station = ('kdpa', 0.001172588028933946) +zone = ('ilz012', 0.0013989261131465826) + +[fips1708973404] +centroid = (0.72899952413533353, -1.5434212912629712) +description = Sugar Grove township, IL +station = ('karr', 0.0004586841498297815) +zone = ('ilz012', 0.0029743377571264671) + +[fips1708978188] +centroid = (0.73192452142875075, -1.5454462048078423) +description = Virgil township, IL +station = ('kdkb', 0.0020889481449234771) +zone = ('ilz012', 0.0015437503276312966) + +[fips1708979] +centroid = (0.66981406529668164, -1.5355954268832461) +description = Browns village, IL +station = ('kajg', 0.0053132898512233111) +zone = ('ilz077', 0.0011753009363638044) + +[fips1708992] +centroid = (0.68057944810920046, -1.5525625928466316) +description = Brownstown village, IL +station = ('k1h2', 0.0058732650455689695) +zone = ('ilz065', 0.00094039329640432836) + +[fips17091] +centroid = (0.71801962290445209, -1.5334659157563029) +description = Kankakee County, IL +station = ('kikk', 0.0012043527724143719) +zone = ('ilz023', 3.2544013236943733e-05) + +[fips1709102245] +centroid = (0.71685664021067819, -1.5321433576090191) +description = Aroma township, IL +station = ('kikk', 0.00080357059989216804) +zone = ('ilz023', 0.0015137919121109731) + +[fips1709107484] +centroid = (0.71862607245964261, -1.5334464553351432) +description = Bourbonnais township, IL +station = ('kikk', 0.0018040188495771644) +zone = ('ilz023', 0.00063819439663091954) + +[fips1709124465] +centroid = (0.71834772735053454, -1.5390550534331344) +description = Essex township, IL +station = ('kikk', 0.0046584233535668712) +zone = ('ilz021', 0.0038176443583603451) + +[fips1709128456] +centroid = (0.71835881019128467, -1.5308032763560453) +description = Ganeer township, IL +station = ('kikk', 0.002370340539884495) +zone = ('ilz023', 0.0020476592485687258) + +[fips1709138947] +centroid = (0.71746136188990928, -1.5334206244622137) +description = Kankakee township, IL +station = ('kikk', 0.00065031329699650911) +zone = ('ilz023', 0.00052870074487963768) + +[fips1709143497] +centroid = (0.71784374607572854, -1.5351751515993659) +description = Limestone township, IL +station = ('kikk', 0.0017948584152843899) +zone = ('ilz023', 0.0012866334563073271) + +[fips1709146513] +centroid = (0.71997657332825071, -1.5330628494188474) +description = Manteno township, IL +station = ('kikk', 0.0031475253336741035) +zone = ('ilz023', 0.0020126176486730788) + +[fips1709148] +centroid = (0.67977937172679381, -1.581077520366327) +description = Brussels village, IL +station = ('kset', 0.0021306069408585167) +zone = ('moz061', 0.0031342841051315851) + +[fips1709149906] +centroid = (0.71851259115167787, -1.5287637718586273) +description = Momence township, IL +station = ('kikk', 0.0037470874707465612) +zone = ('ilz023', 0.0035878985378381772) + +[fips1709154352] +centroid = (0.7165587125073628, -1.5392306161025924) +description = Norton township, IL +station = ('kikk', 0.0045485457009203376) +zone = ('ilz021', 0.0049890412936906218) + +[fips1709157017] +centroid = (0.7162728973890562, -1.5344170329321773) +description = Otto township, IL +station = ('kikk', 0.0010684781308739392) +zone = ('ilz023', 0.0018557669995194846) + +[fips1709158538] +centroid = (0.7167199983835395, -1.528761974169498) +description = Pembroke township, IL +station = ('kikk', 0.00335436258625445) +zone = ('inz010', 0.0031879758550528137) + +[fips1709159819] +centroid = (0.7165994833986894, -1.5372077271396534) +description = Pilot township, IL +station = ('kikk', 0.0030239920897024305) +zone = ('ilz023', 0.0031352855424567044) + +[fips1709161] +centroid = (0.7062591580722013, -1.5724535343729575) +description = Bryant village, IL +station = ('kpia', 0.0064876754839874352) +zone = ('ilz036', 0.0014995624477783908) + +[fips1709165195] +centroid = (0.71981493838622357, -1.5351125117325117) +description = Rockville township, IL +station = ('kikk', 0.0033103900621057362) +zone = ('ilz023', 0.0022022874762425092) + +[fips1709166651] +centroid = (0.71636307855150672, -1.5309376143485713) +description = St. Anne township, IL +station = ('kikk', 0.0017752843180300593) +zone = ('ilz023', 0.0025112141743687871) + +[fips1709167262] +centroid = (0.71839783575335925, -1.5370966020261789) +description = Salina township, IL +station = ('kikk', 0.0033217973646513196) +zone = ('ilz023', 0.0027556207900746141) + +[fips1709173690] +centroid = (0.71998315321953077, -1.5310458422154876) +description = Sumner township, IL +station = ('kikk', 0.00354792358983876) +zone = ('ilz023', 0.0027070186957854681) + +[fips1709183856] +centroid = (0.72018018343878842, -1.5287458473272093) +description = Yellowhead township, IL +station = ('kikk', 0.0047438587717946222) +zone = ('inz001', 0.003816644519290471) + +[fips17093] +centroid = (0.72584997278035457, -1.5434055832997031) +description = Kendall County, IL +station = ('kc09', 0.0028468166827406295) +zone = ('ilz020', 4.8487666437739329e-05) + +[fips1709304] +centroid = (0.71640622309061597, -1.5389423749766256) +description = Buckingham village, IL +station = ('kikk', 0.0043441637339941891) +zone = ('ilz021', 0.0052417936422950806) + +[fips1709305872] +centroid = (0.72454476320583561, -1.5451821888518933) +description = Big Grove township, IL +station = ('kc09', 0.0021397236722134898) +zone = ('ilz020', 0.0019093447207057088) + +[fips1709308368] +centroid = (0.72760017150096201, -1.5435303219813432) +description = Bristol township, IL +station = ('karr', 0.0014165900861013193) +zone = ('ilz020', 0.0017111819710680124) + +[fips1709317] +centroid = (0.70856285305849365, -1.5365433850131744) +description = Buckley village, IL +station = ('ktip', 0.0054870393410751585) +zone = ('ilz039', 0.0024629381957759593) + +[fips1709327416] +centroid = (0.72591285699330399, -1.5454695922198189) +description = Fox township, IL +station = ('karr', 0.0032356503822346073) +zone = ('ilz020', 0.0015663300177430441) + +[fips1709330] +centroid = (0.66289378245264652, -1.553616335382523) +description = Buckner village, IL +station = ('kmwa', 0.0040321271926069347) +zone = ('ilz081', 0.0012734207751343167) + +[fips1709339454] +centroid = (0.72584997278035457, -1.5434055832997031) +description = Kendall township, IL +station = ('kc09', 0.0028468166827406295) +zone = ('ilz020', 4.8487666437739329e-05) + +[fips1709343913] +centroid = (0.7243638772821589, -1.5432933062689222) +description = Lisbon township, IL +station = ('kc09', 0.0013583497866748147) +zone = ('ilz020', 0.001530266275888477) + +[fips1709344043] +centroid = (0.72738945790036869, -1.5454622443836681) +description = Little Rock township, IL +station = ('karr', 0.0019027481418331417) +zone = ('ilz020', 0.0021615447744077758) + +[fips1709351531] +centroid = (0.72592250866406738, -1.5413455886368665) +description = Na-Au-Say township, IL +station = ('kjot', 0.0022125732437465349) +zone = ('ilz020', 0.0015184226960328732) + +[fips1709356] +centroid = (0.72132894169915851, -1.565195669945002) +description = Buda village, IL +station = ('kc75', 0.0066369983196503416) +zone = ('ilz017', 0.0023652976532363016) + +[fips1709356900] +centroid = (0.7273847629646808, -1.5414383179800251) +description = Oswego township, IL +station = ('karr', 0.0025010175445355554) +zone = ('ilz020', 0.0020789121143549687) + +[fips1709368757] +centroid = (0.72439506631589201, -1.5414563995910757) +description = Seward township, IL +station = ('kjot', 0.0018919046717846392) +zone = ('ilz020', 0.0020751599516657527) + +[fips1709434] +centroid = (0.69551166488451543, -1.5604804011713513) +description = Buffalo village, IL +station = ('kspi', 0.0036766736352575871) +zone = ('ilz051', 0.0037139242272347913) + +[fips1709447] +centroid = (0.73593520078337116, -1.5352234797663538) +description = Buffalo Grove village, IL +station = ('kpwk', 0.0011751560715160378) +zone = ('ilz006', 0.0027948550696331267) + +[fips17095] +centroid = (0.7143796863895403, -1.5745271600572524) +description = Knox County, IL +station = ('kgbg', 0.0028685034065935727) +zone = ('ilz027', 1.6177823631333198e-05) + +[fips1709511891] +centroid = (0.71277740432303949, -1.5773944567655986) +description = Cedar township, IL +station = ('kgbg', 0.0018630327002315426) +zone = ('ilz027', 0.0027094361298509845) + +[fips1709513217] +centroid = (0.7113499344344183, -1.5756153553925782) +description = Chestnut township, IL +station = ('kgbg', 0.003759657490771273) +zone = ('ilz027', 0.0031556601647645052) + +[fips1709516275] +centroid = (0.71604153654341185, -1.5734297319301831) +description = Copley township, IL +station = ('kgbg', 0.0039996089879631991) +zone = ('ilz027', 0.0018407960165828074) + +[fips1709522879] +centroid = (0.71276951543482048, -1.5713887439029008) +description = Elba township, IL +station = ('kpia', 0.005522880001518315) +zone = ('ilz027', 0.0028709027632611473) + +[fips1709528339] +centroid = (0.71402962570146788, -1.5779777632549077) +description = Galesburg township, IL +station = ('kgbg', 0.00054038107534727707) +zone = ('ilz027', 0.0026387608624230817) + +[fips1709528352] +centroid = (0.71471611605615482, -1.5773686084393765) +description = Galesburg City township, IL +station = ('kgbg', 0.00074978370702002864) +zone = ('ilz027', 0.0021763324779342616) + +[fips1709531] +centroid = (0.73868261082539799, -1.5421892807972808) +description = Bull Valley village, IL +station = ('kbuu', 0.0064488320791696845) +zone = ('ilz005', 0.0011803774766462165) + +[fips1709533552] +centroid = (0.71286861522974876, -1.5735345040451805) +description = Haw Creek township, IL +station = ('kgbg', 0.0039704671508840909) +zone = ('ilz027', 0.0016979204703515256) + +[fips1709534020] +centroid = (0.71598498787564713, -1.5774745324716801) +description = Henderson township, IL +station = ('kgbg', 0.0016129927559010969) +zone = ('ilz027', 0.0027399905657495755) + +[fips1709537361] +centroid = (0.71126739781409154, -1.5777199955776806) +description = Indian Point township, IL +station = ('kgbg', 0.0032682000710768707) +zone = ('ilz026', 0.0033371386410623468) + +[fips1709538] +centroid = (0.69100920410656075, -1.5607739655515367) +description = Bulpitt village, IL +station = ('ktaz', 0.0016594714825408381) +zone = ('ilz052', 0.0021534368175420383) + +[fips1709540403] +centroid = (0.71433940419040431, -1.5754140142100681) +description = Knox township, IL +station = ('kgbg', 0.0022020208682813425) +zone = ('ilz027', 0.00067835996211272403) + +[fips1709545330] +centroid = (0.71717914214986167, -1.571474212676371) +description = Lynn township, IL +station = ('kgbg', 0.0058175297673728104) +zone = ('ilz028', 0.0031747145922350175) + +[fips1709546708] +centroid = (0.71130237421230147, -1.5740829039494495) +description = Maquon township, IL +station = ('kgbg', 0.0045305614729862168) +zone = ('ilz027', 0.0031098622363351577) + +[fips1709551] +centroid = (0.65399434859672756, -1.552900767842498) +description = Buncombe village, IL +station = ('kmwa', 0.0048859981292220358) +zone = ('ilz089', 0.0013143210933437431) + +[fips1709556172] +centroid = (0.71746605682559705, -1.5754450636174611) +description = Ontario township, IL +station = ('kgbg', 0.0036716739977715007) +zone = ('ilz027', 0.0031498289176664016) + +[fips1709556315] +centroid = (0.71281941439813501, -1.5756266476728387) +description = Orange township, IL +station = ('kgbg', 0.0026429115259448926) +zone = ('ilz027', 0.0017839651260590941) + +[fips1709559221] +centroid = (0.71440707060550412, -1.5734472201292879) +description = Persifer township, IL +station = ('kgbg', 0.0036828924936179487) +zone = ('ilz027', 0.00080989556595762878) + +[fips1709564161] +centroid = (0.71746218219465763, -1.5774471482557162) +description = Rio township, IL +station = ('kgbg', 0.0030308345738747646) +zone = ('ilz027', 0.0037802025893404556) + +[fips1709567223] +centroid = (0.71115838454901203, -1.5717893842326964) +description = Salem township, IL +station = ('kpia', 0.005134548180999168) +zone = ('ilz027', 0.0038390797957621754) + +[fips1709571435] +centroid = (0.715935472884768, -1.575462656536321) +description = Sparta township, IL +station = ('kgbg', 0.0025893776031763213) +zone = ('ilz027', 0.001697499191245528) + +[fips1709576303] +centroid = (0.71435643860390374, -1.571496867050062) +description = Truro township, IL +station = ('kpia', 0.0065791254645054661) +zone = ('ilz027', 0.0022836349799075406) + +[fips1709577] +centroid = (0.68140233594493071, -1.569943558922372) +description = Bunker Hill city, IL +station = ('kaln', 0.0028101176623936295) +zone = ('ilz100', 0.0037452572433993676) + +[fips1709577824] +centroid = (0.71584066659979972, -1.5716217977179199) +description = Victoria township, IL +station = ('kgbg', 0.0052311766199323794) +zone = ('ilz027', 0.002622236157343106) + +[fips1709578565] +centroid = (0.71746204256831736, -1.5735096331033396) +description = Walnut Grove township, IL +station = ('kgbg', 0.0046824341283625342) +zone = ('ilz027', 0.0031605080113793105) + +[fips1709642] +centroid = (0.72857764314854145, -1.531849705962371) +description = Burbank city, IL +station = ('kmdw', 0.0007206380744382982) +zone = ('ilz014', 0.0017803944254968502) + +[fips1709681] +centroid = (0.72060812071808489, -1.5597050561044457) +description = Bureau Junction village, IL +station = ('kvys', 0.0029893660267769021) +zone = ('ilz018', 0.0017835304172190301) + +[fips17097] +centroid = (0.73873580846099884, -1.5260481442622793) +description = Lake County, IL +station = ('kugn', 0.005770628150402279) +zone = ('ilz014', 0.0098190176582123954) + +[fips1709700000] +centroid = (0.73873580846099884, -1.5260481442622793) +description = County subdivisions not defined, IL +station = ('kugn', 0.005770628150402279) +zone = ('ilz014', 0.0098190176582123954) + +[fips1709701608] +centroid = (0.74114874360517347, -1.5378714933074795) +description = Antioch township, IL +station = ('kenw', 0.0033088931759584265) +zone = ('wiz072', 0.0021617666090526424) + +[fips1709703220] +centroid = (0.73919526638658628, -1.5369601521852581) +description = Avon township, IL +station = ('kugn', 0.0027461675304446985) +zone = ('ilz006', 0.00090710938284051159) + +[fips1709705326] +centroid = (0.74060386926599331, -1.5334534191988587) +description = Benton township, IL +station = ('kugn', 0.00030425365830776414) +zone = ('ilz006', 0.002668217742942465) + +[fips1709718004] +centroid = (0.73645937551762253, -1.5387367577374482) +description = Cuba township, IL +station = ('kpwk', 0.0036752767544220187) +zone = ('ilz006', 0.0030275171056370225) + +[fips1709722853] +centroid = (0.73645790944105083, -1.5369754063629204) +description = Ela township, IL +station = ('kpwk', 0.0025136021213884026) +zone = ('ilz006', 0.0023450783505819433) + +[fips1709727923] +centroid = (0.73801292799140783, -1.5368714720059642) +description = Fremont township, IL +station = ('kugn', 0.0033553652189694128) +zone = ('ilz006', 0.00095049521651809402) + +[fips1709730952] +centroid = (0.73957892466275976, -1.5387475962321031) +description = Grant township, IL +station = ('kenw', 0.0049243781248428193) +zone = ('ilz006', 0.002253817220991587) + +[fips1709741599] +centroid = (0.74027243124103959, -1.5370306983936237) +description = Lake Villa township, IL +station = ('kugn', 0.0025606555702190792) +zone = ('ilz006', 0.0017828242301256647) + +[fips1709743263] +centroid = (0.73799790070654814, -1.5349334060446722) +description = Libertyville township, IL +station = ('kugn', 0.0025247468485035582) +zone = ('ilz006', 0.0010148600125528019) + +[fips1709750364] +centroid = (0.73628403974096723, -1.5325027383552972) +description = Moraine township, IL +station = ('kpwk', 0.0017158965609167217) +zone = ('ilz006', 0.0034997807145995866) + +[fips1709752753] +centroid = (0.74096136505667931, -1.534988558449035) +description = Newport township, IL +station = ('kugn', 0.00123739869659408) +zone = ('ilz006', 0.0023923321459143948) + +[fips1709759] +centroid = (0.73396126830595054, -1.5458340867808054) +description = Burlington village, IL +station = ('kdkb', 0.0027723917077683751) +zone = ('ilz012', 0.0027016568456666086) + +[fips1709769485] +centroid = (0.73794695454568249, -1.533386834887895) +description = Shields township, IL +station = ('kugn', 0.0023671049399750107) +zone = ('ilz006', 0.0020333793542743135) + +[fips1709777668] +centroid = (0.73649045983160055, -1.534939043458156) +description = Vernon township, IL +station = ('kpwk', 0.0015336002500565245) +zone = ('ilz006', 0.0023120478985037686) + +[fips1709778877] +centroid = (0.7395470898572033, -1.5349577533877377) +description = Warren township, IL +station = ('kugn', 0.0012823161704369156) +zone = ('ilz006', 0.001138796961980169) + +[fips1709779280] +centroid = (0.7379685791751146, -1.5387929049794848) +description = Wauconda township, IL +station = ('kugn', 0.0045195134218139364) +zone = ('ilz006', 0.0022170806363283422) + +[fips1709779306] +centroid = (0.73957972751421563, -1.5332511529918451) +description = Waukegan township, IL +station = ('kugn', 0.00076611361033947516) +zone = ('ilz006', 0.002190919335850099) + +[fips1709780112] +centroid = (0.73644527325726639, -1.5334051259384558) +description = West Deerfield township, IL +station = ('kpwk', 0.0014762680697509259) +zone = ('ilz006', 0.0029218643043804242) + +[fips1709784233] +centroid = (0.74106521214717302, -1.5332913130179335) +description = Zion township, IL +station = ('kugn', 0.00078083227636293804) +zone = ('ilz006', 0.003092663872868428) + +[fips1709798] +centroid = (0.7267460248183284, -1.5279477955267351) +description = Burnham village, IL +station = ('kigq', 0.0017441970600241634) +zone = ('inz001', 0.0044518051848095926) + +[fips1709889] +centroid = (0.66760372797207845, -1.5403984682649794) +description = Burnt Prairie village, IL +station = ('kfwc', 0.0030730289641348343) +zone = ('ilz083', 0.0030497223172938877) + +[fips17099] +centroid = (0.72157742422476501, -1.5513521546504958) +description = LaSalle County, IL +station = ('kvys', 0.0035032042644666298) +zone = ('ilz019', 9.7648436038052877e-06) + +[fips1709900204] +centroid = (0.72578403424121418, -1.549237967514385) +description = Adams township, IL +station = ('karr', 0.0050228284532621128) +zone = ('ilz020', 0.0043861717493187966) + +[fips1709900763] +centroid = (0.71822686329983387, -1.5471350028453645) +description = Allen township, IL +station = ('kpnt', 0.0039829926695172059) +zone = ('ilz021', 0.0037709082099193401) + +[fips1709908583] +centroid = (0.72004654357796316, -1.5472919603049966) +description = Brookfield township, IL +station = ('kc09', 0.0042690523902618955) +zone = ('ilz021', 0.0031221776084712793) + +[fips1709909057] +centroid = (0.71852712974434696, -1.5506600792422025) +description = Bruce township, IL +station = ('kvys', 0.0051422638797079447) +zone = ('ilz019', 0.0031038973905540626) + +[fips1709918784] +centroid = (0.72294736806124038, -1.55003415181256) +description = Dayton township, IL +station = ('kvys', 0.004649573041115412) +zone = ('ilz019', 0.0016814421859584498) + +[fips1709919096] +centroid = (0.72060332106264191, -1.5531908415641795) +description = Deer Park township, IL +station = ('kvys', 0.0024001571356913045) +zone = ('ilz019', 0.0016959601410253507) + +[fips1709919980] +centroid = (0.72276449246221641, -1.5552119153846964) +description = Dimmick township, IL +station = ('kvys', 0.0011990392437346892) +zone = ('ilz019', 0.0031267629460233017) + +[fips1709921436] +centroid = (0.71809168754926689, -1.5518984950662476) +description = Eagle township, IL +station = ('kvys', 0.0047745243349537631) +zone = ('ilz019', 0.0035195968522656997) + +[fips1709921527] +centroid = (0.72591854676666545, -1.551263177765229) +description = Earl township, IL +station = ('kvys', 0.0054988572071436167) +zone = ('ilz019', 0.0043318730433346093) + +[fips1709922424] +centroid = (0.71971063751012432, -1.5551888595852774) +description = Eden township, IL +station = ('kvys', 0.0021101524472155755) +zone = ('ilz018', 0.0024282105917483973) + +[fips1709925284] +centroid = (0.72086951868015614, -1.549354276255738) +description = Fall River township, IL +station = ('kvys', 0.0050744492363393933) +zone = ('ilz019', 0.0016628320183377904) + +[fips1709925583] +centroid = (0.71972063824673826, -1.5509946763131024) +description = Farm Ridge township, IL +station = ('kvys', 0.0042721730068851381) +zone = ('ilz019', 0.0018857115676282181) + +[fips1709927845] +centroid = (0.72429725806461032, -1.5511743579595951) +description = Freedom township, IL +station = ('kvys', 0.0044467549009522865) +zone = ('ilz019', 0.0027133349894728842) + +[fips1709930744] +centroid = (0.71973126730188286, -1.5491585201268343) +description = Grand Rapids township, IL +station = ('kvys', 0.0055242719136781781) +zone = ('ilz019', 0.002481883076801499) + +[fips1709931914] +centroid = (0.71507212831697664, -1.5531547830618333) +description = Groveland township, IL +station = ('kpnt', 0.0048673033821728289) +zone = ('ilz031', 0.0043254739931902798) + +[fips1709936100] +centroid = (0.71817296753253235, -1.5551784574229357) +description = Hope township, IL +station = ('kvys', 0.003609744004166296) +zone = ('ilz018', 0.0025678779793231504) + +[fips1709942197] +centroid = (0.72119531929162584, -1.5547430152278554) +description = LaSalle township, IL +station = ('kvys', 0.0010929410767802072) +zone = ('ilz018', 0.0033824609369803933) + +[fips1709946448] +centroid = (0.72150937383722968, -1.5471584949770965) +description = Manlius township, IL +station = ('kc09', 0.0033293080662613068) +zone = ('ilz021', 0.0031263203263874545) + +[fips1709948346] +centroid = (0.72563489585663132, -1.5551028148531543) +description = Mendota township, IL +station = ('kvys', 0.003966572914790494) +zone = ('ilz010', 0.0039511140677035679) + +[fips1709948463] +centroid = (0.72577736708347151, -1.5532456274493993) +description = Meriden township, IL +station = ('kvys', 0.0045502788744954175) +zone = ('ilz019', 0.0044240397506944123) + +[fips1709949204] +centroid = (0.72272724713597891, -1.5471154202511572) +description = Miller township, IL +station = ('kc09', 0.0029526357151044508) +zone = ('ilz021', 0.00365716126041937) + +[fips1709949646] +centroid = (0.72430755550719716, -1.5472177139986165) +description = Mission township, IL +station = ('kc09', 0.0032823533273054119) +zone = ('ilz020', 0.0032837191700206343) + +[fips1709954248] +centroid = (0.72597259961359972, -1.547404726027968) +description = Northville township, IL +station = ('karr', 0.0039108614484332097) +zone = ('ilz020', 0.0030144631875872905) + +[fips1709956224] +centroid = (0.72435213121629294, -1.5530104792392783) +description = Ophir township, IL +station = ('kvys', 0.0034584831649337989) +zone = ('ilz019', 0.0030318662483803391) + +[fips1709956731] +centroid = (0.71663004411389175, -1.553153840584037) +description = Osage township, IL +station = ('kvys', 0.0055332092644491387) +zone = ('ilz030', 0.004704334575301658) + +[fips1709956939] +centroid = (0.72167732687114916, -1.5512297372567609) +description = Ottawa township, IL +station = ('kvys', 0.0035920788134544425) +zone = ('ilz019', 0.00012844404221351723) + +[fips1709956965] +centroid = (0.71827039181137853, -1.549171505376469) +description = Otter Creek township, IL +station = ('kpnt', 0.0043978651390124447) +zone = ('ilz019', 0.0036997019413281228) + +[fips1709959247] +centroid = (0.72124663197163441, -1.5556995080178257) +description = Peru township, IL +station = ('kvys', 0.00053590763213425669) +zone = ('ilz018', 0.0028794837464659671) + +[fips1709963576] +centroid = (0.7181832475218265, -1.5535018417835924) +description = Richland township, IL +station = ('kvys', 0.0040162931491913995) +zone = ('ilz018', 0.0037624038508734295) + +[fips1709966456] +centroid = (0.72239181230703808, -1.5490465572553187) +description = Rutland township, IL +station = ('kvys', 0.0052709724610767155) +zone = ('ilz019', 0.0019078992065396274) + +[fips1709968692] +centroid = (0.72432855181809852, -1.5491394262248175) +description = Serena township, IL +station = ('kvys', 0.0057738678242733876) +zone = ('ilz019', 0.0032041802924351027) + +[fips1709971110] +centroid = (0.72096638445364181, -1.5508632879270123) +description = South Ottawa township, IL +station = ('kvys', 0.0039422105977035731) +zone = ('ilz019', 0.00072101835794881298) + +[fips1709976238] +centroid = (0.72415979593272328, -1.5553090255042774) +description = Troy Grove township, IL +station = ('kvys', 0.0024890555708371952) +zone = ('ilz019', 0.0039275359396545107) + +[fips1709977096] +centroid = (0.72161648469342465, -1.5531009571077017) +description = Utica township, IL +station = ('kvys', 0.0021899156655667139) +zone = ('ilz019', 0.00131364390494757) + +[fips1709977623] +centroid = (0.71932111492766426, -1.5532248231247159) +description = Vermillion township, IL +station = ('kvys', 0.0031914308250535709) +zone = ('ilz019', 0.0026677238126631025) + +[fips1709978487] +centroid = (0.72288361118366495, -1.5513029887254672) +description = Wallace township, IL +station = ('kvys', 0.0037190909881689017) +zone = ('ilz019', 0.0012969438502857904) + +[fips1709978682] +centroid = (0.72278728646224744, -1.55318703674641) +description = Waltham township, IL +station = ('kvys', 0.0023713354004745169) +zone = ('ilz019', 0.001826750925155508) + +[fips1709980] +centroid = (0.72863827588675567, -1.5344953109491293) +description = Burr Ridge village, IL +station = ('kmdw', 0.0022991679589283768) +zone = ('ilz014', 0.002094957709747399) + +[fips1710084] +centroid = (0.6604662214493402, -1.5556102693331715) +description = Bush village, IL +station = ('kmdh', 0.0019462763061460727) +zone = ('ilz085', 0.0033773132194170673) + +[fips17101] +centroid = (0.67577323022822844, -1.5311812099522721) +description = Lawrence County, IL +station = ('kajg', 0.0019652288675261116) +zone = ('ilz073', 5.2579604030396812e-05) + +[fips1710100906] +centroid = (0.67577975775963095, -1.5285975816072523) +description = Allison township, IL +station = ('klwv', 0.00086105286252172132) +zone = ('inz067', 0.0022977020040609087) + +[fips1710107198] +centroid = (0.67743003638056176, -1.530581986060185) +description = Bond township, IL +station = ('klwv', 0.0015429399314342779) +zone = ('ilz073', 0.0016910111839793089) + +[fips1710108199] +centroid = (0.6754601530670058, -1.5320445021601863) +description = Bridgeport township, IL +station = ('kajg', 0.0018027237585884232) +zone = ('ilz073', 0.00079526467718741569) + +[fips1710110] +centroid = (0.7077592685642905, -1.5796047242770317) +description = Bushnell city, IL +station = ('kmqb', 0.0020355750965751298) +zone = ('ilz035', 0.0028396610986866177) + +[fips1710114299] +centroid = (0.67541042863661649, -1.5333752808082468) +description = Christy township, IL +station = ('kajg', 0.0023812132608478039) +zone = ('ilz073', 0.0018021645146866626) + +[fips1710119395] +centroid = (0.67423119692750655, -1.5304761143877592) +description = Denison township, IL +station = ('kajg', 0.00065652952927729548) +zone = ('ilz073', 0.0016387902013834967) + +[fips1710142379] +centroid = (0.67600520193911107, -1.5305623336528076) +description = Lawrence township, IL +station = ('klwv', 0.0014229141737104774) +zone = ('ilz073', 0.00048332683401289625) + +[fips1710145200] +centroid = (0.67393602684440923, -1.5330039096500074) +description = Lukin township, IL +station = ('kajg', 0.0014782549953124776) +zone = ('ilz073', 0.0023687480653868027) + +[fips1710149] +centroid = (0.68412756285216481, -1.5626255679016852) +description = Butler village, IL +station = ('k3lf', 0.0020257088563817244) +zone = ('ilz060', 0.00092306919202909921) + +[fips1710159377] +centroid = (0.67715540882276037, -1.5331333258140427) +description = Petty township, IL +station = ('kajg', 0.0036975477905916718) +zone = ('ilz073', 0.0020808494874389738) + +[fips1710166378] +centroid = (0.677464419366826, -1.5283784729729573) +description = Russell township, IL +station = ('klwv', 0.0009526541312071371) +zone = ('ilz073', 0.0027131423253214941) + +[fips1710240] +centroid = (0.73525626770434527, -1.5579284680055479) +description = Byron city, IL +station = ('krfd', 0.002459973255962436) +zone = ('ilz008', 0.0016531272191843568) + +[fips1710292] +centroid = (0.71551083427775786, -1.5394448378149823) +description = Cabery village, IL +station = ('kpnt', 0.0056974504401016762) +zone = ('ilz032', 0.0050110437346354815) + +[fips17103] +centroid = (0.72863031718536653, -1.558567694844091) +description = Lee County, IL +station = ('krpj', 0.0038370678799504281) +zone = ('ilz010', 2.7793314152412705e-05) + +[fips1710301101] +centroid = (0.73031133105442481, -1.5531561269653571) +description = Alto township, IL +station = ('krpj', 0.0014421003395430165) +zone = ('ilz011', 0.0029739542009483682) + +[fips1710301283] +centroid = (0.72802653798393169, -1.5593242776215377) +description = Amboy township, IL +station = ('ksqi', 0.0042691692162831786) +zone = ('ilz010', 0.00079934320065098345) + +[fips1710302596] +centroid = (0.73070937084363474, -1.5572820853170717) +description = Ashton township, IL +station = ('krpj', 0.0019699165597718625) +zone = ('ilz010', 0.0023168100675511442) + +[fips1710307679] +centroid = (0.7297014781071931, -1.5571318299217678) +description = Bradford township, IL +station = ('krpj', 0.0023271205011636889) +zone = ('ilz010', 0.0015417297905919542) + +[fips1710308654] +centroid = (0.7273411646399659, -1.5552471186757089) +description = Brooklyn township, IL +station = ('krpj', 0.0038514534874104661) +zone = ('ilz010', 0.0027966777654823546) + +[fips1710320175] +centroid = (0.73072947703661761, -1.5613613561112956) +description = Dixon township, IL +station = ('ksqi', 0.0033897401354416241) +zone = ('ilz010', 0.002963044952409977) + +[fips1710321865] +centroid = (0.7264094904319589, -1.5614924652447053) +description = East Grove township, IL +station = ('ksqi', 0.0034511356455084932) +zone = ('ilz010', 0.00308781745236744) + +[fips1710327695] +centroid = (0.72996287606926424, -1.5588016736836132) +description = Franklin Grove township, IL +station = ('krpj', 0.0032783305047811334) +zone = ('ilz010', 0.0013653312925156508) + +[fips1710332447] +centroid = (0.72655176967258139, -1.5633643134141768) +description = Hamilton township, IL +station = ('ksqi', 0.002441533866057108) +zone = ('ilz017', 0.0039587660073662568) + +[fips1710332980] +centroid = (0.72806385312333932, -1.5633595661186113) +description = Harmon township, IL +station = ('ksqi', 0.0013539521702529125) +zone = ('ilz010', 0.0036022934705078639) + +[fips1710342613] +centroid = (0.72814005419848138, -1.5573776420936185) +description = Lee Center township, IL +station = ('krpj', 0.003625545971557891) +zone = ('ilz010', 0.0010165838545587579) + +[fips1710346890] +centroid = (0.72805961197325697, -1.5614220063028024) +description = Marion township, IL +station = ('ksqi', 0.0027245228113955949) +zone = ('ilz010', 0.002184818948937301) + +[fips1710347644] +centroid = (0.72642032892661379, -1.5592388263013603) +description = May township, IL +station = ('ksqi', 0.0048432656986966208) +zone = ('ilz010', 0.0022399785563366735) + +[fips1710351557] +centroid = (0.73002804666353371, -1.5598772677417398) +description = Nachusa township, IL +station = ('ksqi', 0.0040370634124311643) +zone = ('ilz010', 0.0017158556052019219) + +[fips1710351960] +centroid = (0.7293425162399354, -1.5633406991093972) +description = Nelson township, IL +station = ('ksqi', 0.0013920759506632822) +zone = ('ilz010', 0.0036205424975010053) + +[fips1710357316] +centroid = (0.73058918747134238, -1.5634720525889023) +description = Palmyra township, IL +station = ('ksqi', 0.0022193116530715611) +zone = ('ilz010', 0.0041456121074981318) + +[fips1710363407] +centroid = (0.73023549649842578, -1.5552179716772008) +description = Reynolds township, IL +station = ('krpj', 0.0010097333603803595) +zone = ('ilz010', 0.0029940521207938611) + +[fips1710370] +centroid = (0.67310167219549333, -1.5738702355800942) +description = Cahokia village, IL +station = ('kcps', 0.00035673515342707791) +zone = ('moz064', 0.0015400155047403522) + +[fips1710370694] +centroid = (0.72950188225393497, -1.5612142597619374) +description = South Dixon township, IL +station = ('ksqi', 0.0029266021894920817) +zone = ('ilz010', 0.0021536363768807102) + +[fips1710373300] +centroid = (0.7264184614243141, -1.5572870769587326) +description = Sublette township, IL +station = ('kvys', 0.0047867871969111062) +zone = ('ilz010', 0.002394331231433392) + +[fips1710378110] +centroid = (0.72890182060380682, -1.5552262270845627) +description = Viola township, IL +station = ('krpj', 0.002302268937610848) +zone = ('ilz010', 0.002524992894342232) + +[fips1710381971] +centroid = (0.72879978865573514, -1.5531368934370005) +description = Willow Creek township, IL +station = ('krpj', 0.0026458943471614018) +zone = ('ilz011', 0.0036983806928591201) + +[fips1710383] +centroid = (0.6458815695412673, -1.5565348924110005) +description = Cairo city, IL +station = ('kcir', 0.0011356871750077529) +zone = ('kyz004', 0.0027160084602205242) + +[fips1710383674] +centroid = (0.72748487505057513, -1.5532041933329572) +description = Wyoming township, IL +station = ('krpj', 0.0038540902096047365) +zone = ('ilz010', 0.0041723876825225702) + +[fips1710422] +centroid = (0.73946842786781597, -1.5514936310396625) +description = Caledonia village, IL +station = ('krfd', 0.0039639849798814844) +zone = ('ilz004', 0.0012066156496831591) + +[fips1710448] +centroid = (0.67458996680854655, -1.5366331822031896) +description = Calhoun village, IL +station = ('koly', 0.0022019889069618275) +zone = ('ilz072', 0.0012150188853412476) + +[fips1710487] +centroid = (0.72599579503935863, -1.5278257621054356) +description = Calumet City city, IL +station = ('kigq', 0.0009888741454341717) +zone = ('inz001', 0.0037602935645584526) + +[fips17105] +centroid = (0.71374150674854864, -1.5455388294312458) +description = Livingston County, IL +station = ('kpnt', 0.0010830471278939304) +zone = ('ilz032', 8.3424013561069307e-05) + +[fips1710501348] +centroid = (0.71507612512096363, -1.5492459611223592) +description = Amity township, IL +station = ('kpnt', 0.0020210486304237558) +zone = ('ilz032', 0.0030668258526645518) + +[fips1710503194] +centroid = (0.71221711872656424, -1.5451949646620178) +description = Avoca township, IL +station = ('kpnt', 0.0023703161603057712) +zone = ('ilz032', 0.0015079815954896099) + +[fips1710504780] +centroid = (0.70937867231075336, -1.5449140364656169) +description = Belle Prairie township, IL +station = ('kpnt', 0.0050786227601276011) +zone = ('ilz039', 0.0039778036514628023) + +[fips1710508888] +centroid = (0.71522453046726064, -1.5411752270485795) +description = Broughton township, IL +station = ('kpnt', 0.0043602767705315662) +zone = ('ilz032', 0.0036955727099903918) + +[fips1710512606] +centroid = (0.71201630114282988, -1.5409984601019378) +description = Charlotte township, IL +station = ('kpnt', 0.0049263754835642132) +zone = ('ilz039', 0.0035812698256228602) + +[fips1710512723] +centroid = (0.71053579069824047, -1.541144055468139) +description = Chatsworth township, IL +station = ('kpnt', 0.0056700123153662014) +zone = ('ilz039', 0.0022325217194285899) + +[fips1710513] +centroid = (0.72720426101343949, -1.5299146070608074) +description = Calumet Park village, IL +station = ('kmdw', 0.0023790391727033125) +zone = ('ilz014', 0.0036781532218654192) + +[fips1710521371] +centroid = (0.71684194453837635, -1.5430275798903061) +description = Dwight township, IL +station = ('kpnt', 0.003850704974182289) +zone = ('ilz032', 0.0037125380264555457) + +[fips1710524309] +centroid = (0.71221570500987008, -1.5472387277628106) +description = Eppards Point township, IL +station = ('kpnt', 0.0020625557253745553) +zone = ('ilz032', 0.0019136281269972134) + +[fips1710524426] +centroid = (0.71503332964770472, -1.5469583406184777) +description = Esmen township, IL +station = ('kpnt', 0.00079034360984697933) +zone = ('ilz032', 0.0016793383430927984) + +[fips1710525700] +centroid = (0.70928456415748586, -1.542849434133555) +description = Fayette township, IL +station = ('kpnt', 0.0057995290504954363) +zone = ('ilz039', 0.0024363980830988175) + +[fips1710527039] +centroid = (0.71063593769071998, -1.5430492045197384) +description = Forrest township, IL +station = ('kpnt', 0.0045982074741409296) +zone = ('ilz039', 0.0032334898537243) + +[fips1710529106] +centroid = (0.70929405874861662, -1.5408122160174573) +description = Germanville township, IL +station = ('ktip', 0.0063157577187489267) +zone = ('ilz039', 0.0010733218032982434) + +[fips1710537244] +centroid = (0.71051870392486349, -1.5451468982944179) +description = Indian Grove township, IL +station = ('kpnt', 0.0039378104990889827) +zone = ('ilz032', 0.003191465477017845) + +[fips1710544589] +centroid = (0.71510982742881968, -1.5511327493102278) +description = Long Point township, IL +station = ('kpnt', 0.0033810429682624649) +zone = ('ilz032', 0.0043966022910824007) + +[fips1710551895] +centroid = (0.71358121571004551, -1.5511325398707174) +description = Nebraska township, IL +station = ('kpnt', 0.00334034989570157) +zone = ('ilz032', 0.0041648946179018024) + +[fips1710552077] +centroid = (0.71670631500220394, -1.5451045566067645) +description = Nevada township, IL +station = ('kpnt', 0.0027691253626227147) +zone = ('ilz032', 0.0030422475563045351) + +[fips1710552883] +centroid = (0.71670285925028487, -1.5491795338910284) +description = Newtown township, IL +station = ('kpnt', 0.0030373931982869361) +zone = ('ilz032', 0.0040349199797181188) + +[fips1710555184] +centroid = (0.71505357546702786, -1.5451208405286856) +description = Odell township, IL +station = ('kpnt', 0.001502353785389381) +zone = ('ilz032', 0.0014162315774541787) + +[fips1710557056] +centroid = (0.71351585312955834, -1.5449664487030541) +description = Owego township, IL +station = ('kpnt', 0.0015710469322900878) +zone = ('ilz032', 0.00052743988272918748) + +[fips1710559780] +centroid = (0.71195566840461544, -1.549269418347506) +description = Pike township, IL +station = ('kpnt', 0.0029584052724056157) +zone = ('ilz032', 0.0032568464425912851) + +[fips1710560612] +centroid = (0.71201452090699269, -1.5431061371599386) +description = Pleasant Ridge township, IL +station = ('kpnt', 0.0035808331974925625) +zone = ('ilz032', 0.0025371869374306126) + +[fips1710561028] +centroid = (0.71369436540545228, -1.5471447243292982) +description = Pontiac township, IL +station = ('kpnt', 0.00061434842480053938) +zone = ('ilz032', 0.0011487034751611594) + +[fips1710563017] +centroid = (0.71669231746160289, -1.5512098754098733) +description = Reading township, IL +station = ('kpnt', 0.0041256134776815031) +zone = ('ilz019', 0.0048960246420630205) + +[fips1710565520] +centroid = (0.71361446423229591, -1.5491209257347462) +description = Rooks Creek township, IL +station = ('kpnt', 0.0018642586144861687) +zone = ('ilz032', 0.0026437610392161877) + +[fips1710565988] +centroid = (0.7167709096378202, -1.541223014163499) +description = Round Grove township, IL +station = ('kpnt', 0.0049073915384377133) +zone = ('ilz021', 0.0040667582736533892) + +[fips1710567808] +centroid = (0.71352901291211834, -1.5430894692655819) +description = Saunemin township, IL +station = ('kpnt', 0.0028982459814301319) +zone = ('ilz032', 0.0019237257682172219) + +[fips1710573482] +centroid = (0.71357802175751428, -1.5411341245446952) +description = Sullivan township, IL +station = ('kpnt', 0.004337128738429211) +zone = ('ilz032', 0.0033970220076011211) + +[fips1710573781] +centroid = (0.71669287596696352, -1.5471009863782432) +description = Sunbury township, IL +station = ('kpnt', 0.0024514668431142822) +zone = ('ilz032', 0.0032033211532629382) + +[fips1710576680] +centroid = (0.71508935471669377, -1.5429949073267089) +description = Union township, IL +station = ('kpnt', 0.0029956887362169488) +zone = ('ilz032', 0.0024306810718372697) + +[fips1710578409] +centroid = (0.71205962021486435, -1.5511150516716123) +description = Waldo township, IL +station = ('kpnt', 0.0039295583836364556) +zone = ('ilz038', 0.0053720925472559265) + +[fips1710591] +centroid = (0.69462023796905936, -1.5388269738064837) +description = Camargo village, IL +station = ('kcmi', 0.0042998627210049691) +zone = ('ilz055', 0.0008339569866831723) + +[fips1710630] +centroid = (0.65938181347849112, -1.5554065545028786) +description = Cambria village, IL +station = ('kmdh', 0.001818702878673085) +zone = ('ilz085', 0.002738627440359109) + +[fips1710643] +centroid = (0.72068681761405728, -1.574106954586542) +description = Cambridge village, IL +station = ('kmli', 0.0050907703163477697) +zone = ('ilz016', 0.0013073742401111799) + +[fips1710695] +centroid = (0.70079907004026221, -1.5842933767795893) +description = Camden village, IL +station = ('kmqb', 0.0066115664476112026) +zone = ('ilz040', 0.0021125602714785916) + +[fips17107] +centroid = (0.70038439726328083, -1.5597188616588287) +description = Logan County, IL +station = ('kaaa', 0.00065524202849010188) +zone = ('ilz042', 8.5425245862057577e-05) + +[fips1710700360] +centroid = (0.69985151333606199, -1.5568793156855891) +description = Aetna township, IL +station = ('kaaa', 0.0020543598047532696) +zone = ('ilz042', 0.0022483879136032899) + +[fips1710702765] +centroid = (0.70247483046827208, -1.5570037925678413) +description = Atlanta township, IL +station = ('kaaa', 0.0022951738922259391) +zone = ('ilz042', 0.0030231793052360265) + +[fips1710708485] +centroid = (0.69967621246599165, -1.560905353937627) +description = Broadwell township, IL +station = ('kaaa', 0.001793959956693568) +zone = ('ilz042', 0.0010788199959779173) + +[fips1710713126] +centroid = (0.6997519423022357, -1.5588078696024579) +description = Chester township, IL +station = ('kaaa', 0.0011846225411947344) +zone = ('ilz042', 0.00091350911669122706) + +[fips1710716496] +centroid = (0.69977869819966876, -1.5629115750062095) +description = Corwin township, IL +station = ('kaaa', 0.0030586326305712987) +zone = ('ilz042', 0.0024679328215787) + +[fips1710721982] +centroid = (0.70112839621682099, -1.5586057255684918) +description = East Lincoln township, IL +station = ('kaaa', 0.00050145024456318466) +zone = ('ilz042', 0.0012064460851500564) + +[fips1710723282] +centroid = (0.69792849211292218, -1.5607407170292864) +description = Elkhart township, IL +station = ('kaaa', 0.0031997022260344329) +zone = ('ilz042', 0.0024921558695770534) + +[fips1710724049] +centroid = (0.70294336410597003, -1.5588817144831095) +description = Eminence township, IL +station = ('kaaa', 0.0020568827221269185) +zone = ('ilz042', 0.0027224505330324653) + +[fips1710736789] +centroid = (0.69835564399405514, -1.5627000061942826) +description = Hurlbut township, IL +station = ('kspi', 0.0034581234691880929) +zone = ('ilz042', 0.0029773416379499295) + +[fips1710740624] +centroid = (0.69833410663108564, -1.5568369390913508) +description = Laenna township, IL +station = ('kaaa', 0.0031344070078883615) +zone = ('ilz042', 0.0029804510277156695) + +[fips1710741144] +centroid = (0.69706821932461416, -1.5568190494665177) +description = Lake Fork township, IL +station = ('kaaa', 0.0042398317811271798) +zone = ('ilz053', 0.0034667724294958585) + +[fips1710751141] +centroid = (0.69783134708675609, -1.5587633637065319) +description = Mount Pulaski township, IL +station = ('kaaa', 0.0030859496817972503) +zone = ('ilz042', 0.0025880103109189893) + +[fips1710756289] +centroid = (0.70131717102871671, -1.5568984444941909) +description = Oran township, IL +station = ('kaaa', 0.001799967706454921) +zone = ('ilz042', 0.0024093616159501737) + +[fips1710756705] +centroid = (0.70287597694355053, -1.5608857364368345) +description = Orvil township, IL +station = ('kaaa', 0.0023625281261043444) +zone = ('ilz042', 0.0027115750788524774) + +[fips1710761574] +centroid = (0.70284473554993976, -1.5628571905467172) +description = Prairie Creek township, IL +station = ('kaaa', 0.003409504803103681) +zone = ('ilz042', 0.0034717167934999885) + +[fips1710769290] +centroid = (0.70123151026902886, -1.5628416745696669) +description = Sheridan township, IL +station = ('kaaa', 0.0028101554665448183) +zone = ('ilz042', 0.0025320777136174462) + +[fips1710773] +centroid = (0.66199601999200575, -1.5629487505192767) +description = Campbell Hill village, IL +station = ('ksar', 0.00433632826597699) +zone = ('ilz084', 0.003424363895712506) + +[fips1710780593] +centroid = (0.70129385342991013, -1.5609164193250846) +description = West Lincoln township, IL +station = ('kaaa', 0.0013768416117188645) +zone = ('ilz042', 0.0013271528555262224) + +[fips1710877] +centroid = (0.69879529243263261, -1.5894044513210068) +description = Camp Point village, IL +station = ('kuin', 0.0025576471677819291) +zone = ('ilz095', 0.0018565593301692977) + +[fips17109] +centroid = (0.70608671954210434, -1.582622311287267) +description = McDonough County, IL +station = ('kmqb', 0.0011737394904845178) +zone = ('ilz035', 9.0948123751808884e-06) + +[fips1710905638] +centroid = (0.70378754495857454, -1.5836197495014896) +description = Bethel township, IL +station = ('kmqb', 0.0035947693355139476) +zone = ('ilz035', 0.002426501605126633) + +[fips1710906] +centroid = (0.73216982745511849, -1.5431686199471599) +description = Campton Hills village, IL +station = ('kdpa', 0.0023397537381490406) +zone = ('ilz012', 0.0002477249436814341) + +[fips1710906483] +centroid = (0.70848975866942021, -1.585755840519713) +description = Blandinsville township, IL +station = ('kmqb', 0.0029989881409187126) +zone = ('ilz035', 0.0033744482257122596) + +[fips1710910123] +centroid = (0.70795305247113938, -1.5795724531391624) +description = Bushnell township, IL +station = ('kmqb', 0.0021187838823176828) +zone = ('ilz035', 0.0029764501720040649) + +[fips1710912333] +centroid = (0.70518829385634774, -1.5833884235624303) +description = Chalmers township, IL +station = ('kmqb', 0.002221560517810829) +zone = ('ilz035', 0.0010741018214124884) + +[fips1710915391] +centroid = (0.70552861560719404, -1.5843206562757981) +description = Colchester township, IL +station = ('kmqb', 0.0023398954222300047) +zone = ('ilz035', 0.0014056637037267842) + +[fips1710916] +centroid = (0.71601427450049571, -1.5412538366780892) +description = Campus village, IL +station = ('kpnt', 0.0045452143076311641) +zone = ('ilz032', 0.004037596415978644) + +[fips1710922996] +centroid = (0.70364510863831931, -1.5795677582034744) +description = Eldorado township, IL +station = ('kmqb', 0.0040858023806039446) +zone = ('ilz040', 0.0031372595263134905) + +[fips1710924101] +centroid = (0.70693044660910342, -1.5839174852185871) +description = Emmet township, IL +station = ('kmqb', 0.0013472603583349293) +zone = ('ilz035', 0.0012881614791562313) + +[fips1710935333] +centroid = (0.70694437433653423, -1.5855176205301083) +description = Hire township, IL +station = ('kmqb', 0.0025480927284281503) +zone = ('ilz035', 0.0023555525830280576) + +[fips1710937452] +centroid = (0.70377770130159334, -1.5816163558662952) +description = Industry township, IL +station = ('kmqb', 0.003461696408098991) +zone = ('ilz035', 0.0024413921131382233) + +[fips1710941820] +centroid = (0.70378442081921355, -1.585726309548769) +description = Lamoine township, IL +station = ('kmqb', 0.0043611804874261932) +zone = ('ilz035', 0.0033009830067651249) + +[fips1710945902] +centroid = (0.70690390015118043, -1.5815059114312291) +description = Macomb township, IL +station = ('kmqb', 0.00060110985105371324) +zone = ('ilz035', 0.0011775983324131389) + +[fips1710945915] +centroid = (0.70642079301422844, -1.5827106947605882) +description = Macomb City township, IL +station = ('kmqb', 0.00088683111448263825) +zone = ('ilz035', 0.00033266295292787513) + +[fips1710950738] +centroid = (0.70681460910664851, -1.5795944791943224) +description = Mound township, IL +station = ('kmqb', 0.002009029536376133) +zone = ('ilz035', 0.0024186414825462781) + +[fips1710952792] +centroid = (0.70524023485488696, -1.5794334376642409) +description = New Salem township, IL +station = ('kmqb', 0.0028757733055606569) +zone = ('ilz035', 0.002578316587418499) + +[fips1710961561] +centroid = (0.70873324955336592, -1.5795737097762237) +description = Prairie City township, IL +station = ('kmqb', 0.0024994919005930068) +zone = ('ilz035', 0.0035158129455922973) + +[fips1710968211] +centroid = (0.7084092117244406, -1.5835713689746242) +description = Sciota township, IL +station = ('kmqb', 0.0015946368670602491) +zone = ('ilz035', 0.002423454035870392) + +[fips1710968250] +centroid = (0.70518222011055065, -1.5815216368477896) +description = Scotland township, IL +station = ('kmqb', 0.0020917674634671223) +zone = ('ilz035', 0.0012419788427744296) + +[fips1710974678] +centroid = (0.70545635897616144, -1.5857719150021237) +description = Tennessee township, IL +station = ('kmqb', 0.0032451226086914558) +zone = ('ilz035', 0.0024751149350511641) + +[fips1710978591] +centroid = (0.70837753399851688, -1.5815641530683682) +description = Walnut Grove township, IL +station = ('kmqb', 0.0012570171886769283) +zone = ('ilz035', 0.0024230238653042161) + +[fips1711007] +centroid = (0.70795078354311181, -1.5715034993012198) +description = Canton city, IL +station = ('kpia', 0.0050689318002492562) +zone = ('ilz036', 0.0027137768725831266) + +[fips1711033] +centroid = (0.69700228078547377, -1.5651937675361172) +description = Cantrall village, IL +station = ('kspi', 0.0014897060190819092) +zone = ('ilz048', 0.0023020281820221602) + +[fips17111] +centroid = (0.73869835369525094, -1.5437829060306918) +description = McHenry County, IL +station = ('kbuu', 0.006668243022427787) +zone = ('ilz005', 2.6775690847924998e-06) + +[fips1711100607] +centroid = (0.74096797985454443, -1.545240727195005) +description = Alden township, IL +station = ('kbuu', 0.0050809673339532856) +zone = ('ilz005', 0.0025096108668536399) + +[fips1711100698] +centroid = (0.7364952071271661, -1.5407058032929632) +description = Algonquin township, IL +station = ('kdpa', 0.005213102156165373) +zone = ('ilz005', 0.0031712788307535272) + +[fips1711110032] +centroid = (0.74098082547783917, -1.5396728650817553) +description = Burton township, IL +station = ('kbuu', 0.0042626030529927745) +zone = ('wiz072', 0.0030938782192090519) + +[fips1711112892] +centroid = (0.74097682867385195, -1.5471952167045584) +description = Chemung township, IL +station = ('kbuu', 0.0060302146684783758) +zone = ('ilz004', 0.0032270226076065479) + +[fips1711116314] +centroid = (0.7365147024549108, -1.5452624914507775) +description = Coral township, IL +station = ('kdkb', 0.0051654567160658001) +zone = ('ilz005', 0.0024435175097590528) + +[fips1711120396] +centroid = (0.73789511826689813, -1.5429904567371162) +description = Dorr township, IL +station = ('kdpa', 0.0069076175099631728) +zone = ('ilz005', 0.00099695626613635212) + +[fips1711121111] +centroid = (0.73947853332418501, -1.5472331427092043) +description = Dunham township, IL +station = ('kjvl', 0.0065597998999686854) +zone = ('ilz005', 0.0026642548255245849) + +[fips1711124] +centroid = (0.73999825746884385, -1.5487817209946213) +description = Capron village, IL +station = ('kjvl', 0.0053699852621050554) +zone = ('ilz004', 0.0017143447476674499) + +[fips1711130666] +centroid = (0.73653133544268223, -1.5431450580022579) +description = Grafton township, IL +station = ('kdpa', 0.00566146946881584) +zone = ('ilz005', 0.0022200037253570066) + +[fips1711131680] +centroid = (0.73957431699353449, -1.5429449210969317) +description = Greenwood township, IL +station = ('kbuu', 0.0056629492621569875) +zone = ('ilz005', 0.0010724852844645368) + +[fips1711133305] +centroid = (0.73949884895667817, -1.5451716470632111) +description = Hartland township, IL +station = ('kbuu', 0.0063087453157108743) +zone = ('ilz005', 0.0012989650133723881) + +[fips1711133864] +centroid = (0.74096970773050386, -1.5430983704447669) +description = Hebron township, IL +station = ('kbuu', 0.0043497907770746434) +zone = ('ilz005', 0.0023256406810729228) + +[fips1711145707] +centroid = (0.73952672186483259, -1.5407828944860236) +description = McHenry township, IL +station = ('kbuu', 0.0055728498118191791) +zone = ('ilz005', 0.0023681471130456377) + +[fips1711146799] +centroid = (0.73811743830701715, -1.5470996075681342) +description = Marengo township, IL +station = ('kdkb', 0.0063250349724833874) +zone = ('ilz005', 0.0025191509770987326) + +[fips1711150] +centroid = (0.7242780594428383, -1.5776400769512318) +description = Carbon Cliff village, IL +station = ('kmli', 0.0018321552705412548) +zone = ('ilz015', 0.0023535575651380297) + +[fips1711154495] +centroid = (0.73801640119661915, -1.540678104917734) +description = Nunda township, IL +station = ('kpwk', 0.0056640443917735043) +zone = ('ilz005', 0.0023977825613408529) + +[fips1711163] +centroid = (0.6583741825414372, -1.557246707493134) +description = Carbondale city, IL +station = ('kmdh', 0.0011294541807438916) +zone = ('ilz084', 0.0024483403191634936) + +[fips1711163654] +centroid = (0.74098246608733598, -1.5410603669305059) +description = Richmond township, IL +station = ('kbuu', 0.0041097290346132666) +zone = ('ilz005', 0.0030430892355170587) + +[fips1711164096] +centroid = (0.73645295270597533, -1.5472611377904062) +description = Riley township, IL +station = ('kdkb', 0.0046609338539794981) +zone = ('ilz004', 0.0031427741619346125) + +[fips1711168653] +centroid = (0.73811775246628253, -1.5450582006618314) +description = Seneca township, IL +station = ('kdkb', 0.0067002803139878065) +zone = ('ilz005', 0.0011067502846149318) + +[fips1711176] +centroid = (0.72076816741049277, -1.5411238620086933) +description = Carbon Hill village, IL +station = ('kc09', 0.0027263780940474346) +zone = ('ilz021', 0.0015696052482975459) + +[fips1711202] +centroid = (0.68553246563355763, -1.5686806561289217) +description = Carlinville city, IL +station = ('k3lf', 0.0034242152032844426) +zone = ('ilz059', 0.00068498195377079572) + +[fips1711215] +centroid = (0.70831707579322778, -1.5555961147129378) +description = Carlock village, IL +station = ('kbmi', 0.0033863010994864794) +zone = ('ilz031', 0.0037325925618064948) + +[fips1711228] +centroid = (0.67408692801153658, -1.5598928709852524) +description = Carlyle city, IL +station = ('kenl', 0.0042950399177586734) +zone = ('ilz069', 0.00069953695561025928) + +[fips1711293] +centroid = (0.66472414414579806, -1.5389019007912719) +description = Carmi city, IL +station = ('kcul', 0.00068319412834253661) +zone = ('ilz083', 9.9084160724488923e-05) + +[fips17113] +centroid = (0.70676338369310254, -1.5506297279665104) +description = McLean County, IL +station = ('kbmi', 0.00099507199071361373) +zone = ('ilz038', 7.5148256398401906e-05) + +[fips1711300893] +centroid = (0.70585689458620171, -1.5569830755096201) +description = Allin township, IL +station = ('kbmi', 0.0039331492933642942) +zone = ('ilz037', 0.0042039267740094097) + +[fips1711301374] +centroid = (0.70737191019010282, -1.544909411343099) +description = Anchor township, IL +station = ('kbmi', 0.0053743250062732433) +zone = ('ilz038', 0.0044372497635685381) + +[fips1711302369] +centroid = (0.70569616721538542, -1.5467587622185122) +description = Arrowsmith township, IL +station = ('kbmi', 0.0039657526494314317) +zone = ('ilz038', 0.0031455573239214489) + +[fips1711304910] +centroid = (0.70398609361428144, -1.54487083956663) +description = Bellflower township, IL +station = ('kcmi', 0.0062231438661659493) +zone = ('ilz045', 0.0054119887433809145) + +[fips1711306626] +centroid = (0.70552721934379248, -1.5530551247615443) +description = Bloomington township, IL +station = ('kbmi', 0.0012924071201777802) +zone = ('ilz038', 0.0021545161350749993) + +[fips1711306639] +centroid = (0.70643557595299289, -1.5528178996096131) +description = Bloomington City township, IL +station = ('kbmi', 0.00071825167709402629) +zone = ('ilz038', 0.0016486448437739566) + +[fips1711306743] +centroid = (0.70738812429885389, -1.5489385562812055) +description = Blue Mound township, IL +station = ('kbmi', 0.0024188770611235596) +zone = ('ilz038', 0.0014917610572742525) + +[fips1711312905] +centroid = (0.70580259739317208, -1.5448047439478567) +description = Cheney's Grove township, IL +station = ('kbmi', 0.0054184174830651044) +zone = ('ilz038', 0.0045570989405286479) + +[fips1711312944] +centroid = (0.71057324546398837, -1.5489762204864634) +description = Chenoa township, IL +station = ('kpnt', 0.0040294671702373478) +zone = ('ilz032', 0.0040182014331449122) + +[fips1711317705] +centroid = (0.7085178410170847, -1.5449112439388135) +description = Cropsey township, IL +station = ('kpnt', 0.0059102297739862643) +zone = ('ilz038', 0.0047451351496008969) + +[fips1711318381] +centroid = (0.70585549832280003, -1.5551067069373861) +description = Dale township, IL +station = ('kbmi', 0.0025318388930027067) +zone = ('ilz038', 0.0034730319389771535) + +[fips1711318550] +centroid = (0.70762440697298878, -1.5570144216229862) +description = Danvers township, IL +station = ('kbmi', 0.0040790938216257872) +zone = ('ilz031', 0.0042639903955102388) + +[fips1711318732] +centroid = (0.70591904576086517, -1.5490624048449271) +description = Dawson township, IL +station = ('kbmi', 0.0022055631235208414) +zone = ('ilz038', 0.0014549623580469057) + +[fips1711320656] +centroid = (0.7042602499331847, -1.5510849098354307) +description = Downs township, IL +station = ('kbmi', 0.0022764242854042146) +zone = ('ilz038', 0.0024571407149315046) + +[fips1711320838] +centroid = (0.70752661617499957, -1.5549931732695437) +description = Dry Grove township, IL +station = ('kbmi', 0.0026020147102418191) +zone = ('ilz038', 0.0033837161164106838) + +[fips1711324140] +centroid = (0.70402213466333508, -1.548889634702272) +description = Empire township, IL +station = ('kbmi', 0.003329822898231187) +zone = ('ilz038', 0.0030021491386058169) + +[fips1711328209] +centroid = (0.70401298913805466, -1.5549018401897872) +description = Funks Grove township, IL +station = ('kbmi', 0.0033591031838965872) +zone = ('ilz043', 0.0037572985455717042) + +[fips1711331745] +centroid = (0.71065639294955341, -1.5514306072003732) +description = Gridley township, IL +station = ('kbmi', 0.0042139147127385384) +zone = ('ilz038', 0.0039996509597203505) + +[fips1711332] +centroid = (0.73164022474689339, -1.5382154802497552) +description = Carol Stream village, IL +station = ('kdpa', 0.001555617837593062) +zone = ('ilz013', 0.0013364495095059383) + +[fips1711336451] +centroid = (0.70909793610057004, -1.5529540352912687) +description = Hudson township, IL +station = ('kbmi', 0.0027664846964195041) +zone = ('ilz038', 0.0029582121973179601) + +[fips1711342353] +centroid = (0.70896447077267, -1.5468151363533515) +description = Lawndale township, IL +station = ('kbmi', 0.0045901169489177629) +zone = ('ilz038', 0.0037082566163323624) + +[fips1711343107] +centroid = (0.70907316987848423, -1.5490589141864228) +description = Lexington township, IL +station = ('kbmi', 0.0033801018886223761) +zone = ('ilz038', 0.0026749645364543798) + +[fips1711347215] +centroid = (0.70728722681479594, -1.5468353647193822) +description = Martin township, IL +station = ('kbmi', 0.0039205413775184779) +zone = ('ilz038', 0.0029804337264639036) + +[fips1711349971] +centroid = (0.70916827286942541, -1.5512776639980208) +description = Money Creek township, IL +station = ('kbmi', 0.0027499105322979127) +zone = ('ilz038', 0.0025121607879612273) + +[fips1711350972] +centroid = (0.70395792400015422, -1.5571831949616539) +description = Mount Hope township, IL +station = ('kaaa', 0.0034200804855618601) +zone = ('ilz042', 0.0041489018794345911) + +[fips1711353247] +centroid = (0.70749303604019131, -1.5530814617799569) +description = Normal township, IL +station = ('kbmi', 0.0013850372223427299) +zone = ('ilz038', 0.0019928526318655324) + +[fips1711355782] +centroid = (0.70589904428763739, -1.5509018422501888) +description = Old Town township, IL +station = ('kbmi', 0.00092590709793831274) +zone = ('ilz038', 0.00081669742984443784) + +[fips1711358] +centroid = (0.73519500664760029, -1.5410086702780619) +description = Carpentersville village, IL +station = ('kdpa', 0.0039422310912354498) +zone = ('ilz012', 0.0036686081874851748) + +[fips1711362692] +centroid = (0.70411880845060304, -1.5529665667552981) +description = Randolph township, IL +station = ('kbmi', 0.0024807753929439397) +zone = ('ilz043', 0.0031019884726615908) + +[fips1711375835] +centroid = (0.70744507439234638, -1.5509477095029311) +description = Towanda township, IL +station = ('kbmi', 0.0012142719070185382) +zone = ('ilz038', 0.0007749360246119976) + +[fips1711379904] +centroid = (0.70405684926215728, -1.546934481967603) +description = West township, IL +station = ('kbmi', 0.0044612063294345652) +zone = ('ilz038', 0.003885576625715515) + +[fips1711381321] +centroid = (0.70862034420405429, -1.5550558480429828) +description = White Oak township, IL +station = ('kbmi', 0.0032452380052558488) +zone = ('ilz031', 0.0035936945989307406) + +[fips1711383804] +centroid = (0.71070740892358908, -1.5469170810349606) +description = Yates township, IL +station = ('kpnt', 0.0035453998726320437) +zone = ('ilz032', 0.0031383887158677095) + +[fips1711397] +centroid = (0.65779017792042738, -1.5468674438710337) +description = Carrier Mills village, IL +station = ('khsb', 0.0024095044978131087) +zone = ('ilz086', 0.0016604156025967173) + +[fips1711462] +centroid = (0.68581828075186424, -1.5778979668015063) +description = Carrollton city, IL +station = ('kset', 0.0063135854302509512) +zone = ('ilz058', 0.0010994993013568577) + +[fips17115] +centroid = (0.69569237627526692, -1.5526715886584186) +description = Macon County, IL +station = ('kdec', 0.0013551043223453375) +zone = ('ilz053', 6.3121853512295402e-06) + +[fips1711503051] +centroid = (0.69823106239204791, -1.5548550828191261) +description = Austin township, IL +station = ('kdec', 0.0042094123785384402) +zone = ('ilz053', 0.0030447394620843949) + +[fips1711506769] +centroid = (0.69417291008177329, -1.5548698657578903) +description = Blue Mound township, IL +station = ('kdec', 0.0031414164170227039) +zone = ('ilz053', 0.0022658797244130601) + +[fips1711514] +centroid = (0.65908386832188315, -1.5548064753994579) +description = Carterville city, IL +station = ('kmwa', 0.0011621757752710634) +zone = ('ilz085', 0.0021986920166527542) + +[fips1711518836] +centroid = (0.69544919955058671, -1.5526138880733478) +description = Decatur township, IL +station = ('kdec', 0.0012476839458009847) +zone = ('ilz053', 0.00024182489655142102) + +[fips1711527] +centroid = (0.70536504334969707, -1.5904796439534055) +description = Carthage city, IL +station = ('kfsw', 0.0051781211417961598) +zone = ('ilz034', 0.00052534963032830348) + +[fips1711527988] +centroid = (0.69824399528180514, -1.5502415143809891) +description = Friends Creek township, IL +station = ('kdec', 0.00307900329335547) +zone = ('ilz043', 0.0031317036200709096) + +[fips1711533240] +centroid = (0.69536636622428694, -1.5549404294195488) +description = Harristown township, IL +station = ('kdec', 0.0030169030857473151) +zone = ('ilz053', 0.0017687464886509956) + +[fips1711534527] +centroid = (0.69673578646198675, -1.55287834036161) +description = Hickory Point township, IL +station = ('kdec', 0.0020813131316035995) +zone = ('ilz053', 0.0010608758880404033) + +[fips1711537023] +centroid = (0.69670725032871661, -1.5548468797716417) +description = Illini township, IL +station = ('kdec', 0.0032935043931923884) +zone = ('ilz053', 0.0019545084518431317) + +[fips1711544511] +centroid = (0.6951076909758489, -1.550424983391959) +description = Long Creek township, IL +station = ('kdec', 0.000468190720524038) +zone = ('ilz053', 0.001821633487241814) + +[fips1711547085] +centroid = (0.69832829468467639, -1.5526868253827883) +description = Maroa township, IL +station = ('kdec', 0.0033594726400714707) +zone = ('ilz053', 0.0026418168730460291) + +[fips1711551219] +centroid = (0.69354680811920533, -1.5509011615717805) +description = Mount Zion township, IL +station = ('kdec', 0.0016783293494493103) +zone = ('ilz053', 0.0025366691996429078) + +[fips1711552974] +centroid = (0.69588999990647038, -1.5563097798440784) +description = Niantic township, IL +station = ('kdec', 0.0041184729738304249) +zone = ('ilz053', 0.0027976090158652388) + +[fips1711554859] +centroid = (0.69616029904772669, -1.5496956626574281) +description = Oakley township, IL +station = ('kdec', 0.0013805616290371665) +zone = ('ilz053', 0.0023347810881783129) + +[fips1711560677] +centroid = (0.69274847706605058, -1.5547938566689661) +description = Pleasant View township, IL +station = ('kdec', 0.0038152549586837792) +zone = ('ilz053', 0.0033592976847549097) + +[fips1711570967] +centroid = (0.69285262086251709, -1.55289821966179) +description = South Macon township, IL +station = ('kdec', 0.0027769116031614422) +zone = ('ilz053', 0.0028390811106211089) + +[fips1711571357] +centroid = (0.69429862614779436, -1.5529048519129478) +description = South Wheatland township, IL +station = ('kdec', 0.0017203998854834692) +zone = ('ilz053', 0.0013990928191626941) + +[fips1711581464] +centroid = (0.69690459470723964, -1.5508039292791518) +description = Whitmore township, IL +station = ('kdec', 0.0016896260041665743) +zone = ('ilz053', 0.0018824375699079915) + +[fips1711592] +centroid = (0.73674089712596935, -1.540246554806886) +description = Cary village, IL +station = ('kdpa', 0.0054479426846711166) +zone = ('ilz005', 0.0032706746406090674) + +[fips1711618] +centroid = (0.68596076943199702, -1.5357074246613467) +description = Casey city, IL +station = ('kmto', 0.0047082722941317453) +zone = ('ilz063', 0.002776873971696263) + +[fips1711644] +centroid = (0.67422889309289391, -1.5713900703531325) +description = Caseyville village, IL +station = ('kcps', 0.0019346465609988448) +zone = ('ilz101', 0.0031453355093937554) + +[fips17117] +centroid = (0.68531923875884149, -1.5695107870810476) +description = Macoupin County, IL +station = ('k3lf', 0.0038571382180168875) +zone = ('ilz059', 8.9464797281548611e-05) + +[fips1711703792] +centroid = (0.68757985901919461, -1.5724974468569377) +description = Barr township, IL +station = ('kijx', 0.0068775356330390168) +zone = ('ilz059', 0.0033111407928385116) + +[fips1711706067] +centroid = (0.68591540832473763, -1.5706892682985791) +description = Bird township, IL +station = ('k3lf', 0.0049432362202290938) +zone = ('ilz059', 0.0011599281608688397) + +[fips1711708277] +centroid = (0.68147068303843883, -1.5724437256225616) +description = Brighton township, IL +station = ('kaln', 0.0026081057264762896) +zone = ('ilz059', 0.004410621040608723) + +[fips1711709135] +centroid = (0.68458178478999632, -1.5687891981551032) +description = Brushy Mound township, IL +station = ('k3lf', 0.0030432065616340237) +zone = ('ilz059', 0.00084181622936594703) + +[fips1711709590] +centroid = (0.68115648886649482, -1.5704913479614029) +description = Bunker Hill township, IL +station = ('kaln', 0.0024045794413142252) +zone = ('ilz100', 0.0036036279953660785) + +[fips1711710357] +centroid = (0.68308701500541824, -1.5664801799145922) +description = Cahokia township, IL +station = ('k3lf', 0.0011404541077496505) +zone = ('ilz059', 0.0031624813145655884) + +[fips1711711209] +centroid = (0.68598855507368872, -1.5685163508331388) +description = Carlinville township, IL +station = ('k3lf', 0.0036178165922893073) +zone = ('ilz059', 0.001059489195236248) + +[fips1711713178] +centroid = (0.68459279781757632, -1.5721536519008801) +description = Chesterfield township, IL +station = ('kaln', 0.0056722158909712156) +zone = ('ilz059', 0.0021699193674159238) + +[fips1711720383] +centroid = (0.6815031810691109, -1.5683398456858848) +description = Dorchester township, IL +station = ('k3lf', 0.0032079874588109309) +zone = ('ilz059', 0.0038333130322755131) + +[fips1711729249] +centroid = (0.68302683605280945, -1.5684505344670461) +description = Gillespie township, IL +station = ('k3lf', 0.0026319625733345498) +zone = ('ilz059', 0.002345833981009631) + +[fips1711729405] +centroid = (0.68866313252602984, -1.5665505341367401) +description = Girard township, IL +station = ('k3lf', 0.0052718620630330696) +zone = ('ilz059', 0.0041085496131959701) + +[fips1711735242] +centroid = (0.68296889112164327, -1.5702791159243605) +description = Hillyard township, IL +station = ('kaln', 0.0041777928959048048) +zone = ('ilz059', 0.0023486163963336651) + +[fips1711735996] +centroid = (0.68464829928778981, -1.5664663918135016) +description = Honey Point township, IL +station = ('k3lf', 0.0015473793762556295) +zone = ('ilz059', 0.0024038482498216812) + +[fips1711751037] +centroid = (0.68181208689342143, -1.566486655086117) +description = Mount Olive township, IL +station = ('k3lf', 0.0020039342014232932) +zone = ('ilz059', 0.0041331350153006961) + +[fips1711753052] +centroid = (0.68751395538663929, -1.5665384739116088) +description = Nilwood township, IL +station = ('k3lf', 0.0041532233468899067) +zone = ('ilz059', 0.0032196170400153406) + +[fips1711754040] +centroid = (0.68903321214062285, -1.5685214821011395) +description = North Otter township, IL +station = ('k3lf', 0.0061201746160145301) +zone = ('ilz059', 0.0038706126344171025) + +[fips1711754053] +centroid = (0.6890170678450418, -1.5704725158587742) +description = North Palmyra township, IL +station = ('kijx', 0.0062218971781228816) +zone = ('ilz059', 0.0038608547409882056) + +[fips1711760924] +centroid = (0.68451064516968507, -1.5703541999887813) +description = Polk township, IL +station = ('k3lf', 0.0041826747611369963) +zone = ('ilz059', 0.00099224786841405803) + +[fips1711768419] +centroid = (0.68900832374548937, -1.5724816167206224) +description = Scottville township, IL +station = ('kijx', 0.0055224997669928262) +zone = ('ilz050', 0.0043925561708467809) + +[fips1711769121] +centroid = (0.68607384931423376, -1.5664950850264041) +description = Shaws Point township, IL +station = ('k3lf', 0.0027782267286674605) +zone = ('ilz059', 0.0024560654204008854) + +[fips1711769576] +centroid = (0.68284354157476512, -1.5721871622225183) +description = Shipman township, IL +station = ('kaln', 0.0039311352480841007) +zone = ('ilz059', 0.0031820247632418186) + +[fips1711771123] +centroid = (0.68749137082611855, -1.5684557879080947) +description = South Otter township, IL +station = ('k3lf', 0.0047480782040324864) +zone = ('ilz059', 0.0023918336526191153) + +[fips1711771136] +centroid = (0.68770135138842592, -1.5705922978053384) +description = South Palmyra township, IL +station = ('k3lf', 0.0059622661462772541) +zone = ('ilz059', 0.0026141168417957534) + +[fips1711772416] +centroid = (0.68101836350949196, -1.5664852937293003) +description = Staunton township, IL +station = ('k3lf', 0.0027090833315805266) +zone = ('ilz100', 0.0039004267028068221) + +[fips1711774] +centroid = (0.69931835015616284, -1.5308000649502216) +description = Catlin village, IL +station = ('kdnv', 0.0027441815378733336) +zone = ('ilz046', 0.0020441301659096891) + +[fips1711778162] +centroid = (0.68940507199105261, -1.5664506314903559) +description = Virden township, IL +station = ('ktaz', 0.0057295411815511538) +zone = ('ilz051', 0.0046734261682251617) + +[fips1711780229] +centroid = (0.68602772026210357, -1.5723606479501666) +description = Western Mound township, IL +station = ('kaln', 0.0071149148142127605) +zone = ('ilz059', 0.0023691256831327146) + +[fips1711826] +centroid = (0.65398385916792301, -1.5387827122566533) +description = Cave-In-Rock village, IL +station = ('khsb', 0.0079670143534992816) +zone = ('ilz091', 0.0016292333885229383) + +[fips17119] +centroid = (0.6776604198418249, -1.5690544009349436) +description = Madison County, IL +station = ('kaln', 0.0024008891409340273) +zone = ('ilz100', 8.2865674952822745e-05) + +[fips1711900750] +centroid = (0.67858027817079614, -1.5665529601444004) +description = Alhambra township, IL +station = ('kaln', 0.0039976791894816852) +zone = ('ilz100', 0.0021947254098990663) + +[fips1711901127] +centroid = (0.67897016727239901, -1.573485582466247) +description = Alton township, IL +station = ('kaln', 0.0014142147127372661) +zone = ('ilz100', 0.0036107187533305708) + +[fips1711914260] +centroid = (0.67696539482709583, -1.5725376243363187) +description = Chouteau township, IL +station = ('kaln', 0.0020807432246721749) +zone = ('ilz100', 0.0027501777202725733) + +[fips1711915612] +centroid = (0.67544301393375128, -1.5704821151696602) +description = Collinsville township, IL +station = ('kblv', 0.0031774776820991161) +zone = ('ilz100', 0.002496501733734426) + +[fips1711922710] +centroid = (0.67701829575672379, -1.5705273541038718) +description = Edwardsville township, IL +station = ('kaln', 0.0021111596470959086) +zone = ('ilz100', 0.001283195462807116) + +[fips1711927130] +centroid = (0.67865229045573339, -1.5705059738205347) +description = Fort Russell township, IL +station = ('kaln', 0.00094776197030698632) +zone = ('ilz100', 0.0014213060843813392) + +[fips1711927182] +centroid = (0.68002048896295675, -1.5726075073195687) +description = Foster township, IL +station = ('kaln', 0.0013097583072300834) +zone = ('ilz100', 0.0035529125277758678) + +[fips1711930107] +centroid = (0.67985623602705159, -1.5746804872320397) +description = Godfrey township, IL +station = ('kaln', 0.0025181225532972416) +zone = ('ilz099', 0.0029443140528341103) + +[fips1711930939] +centroid = (0.67567636445474277, -1.5730415532512472) +description = Granite City township, IL +station = ('kcps', 0.0025775474204342091) +zone = ('moz064', 0.0020852532875577073) + +[fips1711932421] +centroid = (0.67847131726559406, -1.5685348338699174) +description = Hamel township, IL +station = ('kaln', 0.0024829067323722544) +zone = ('ilz100', 0.00089572652881570445) + +[fips1711933981] +centroid = (0.67544018650036297, -1.5645618361738478) +description = Helvetia township, IL +station = ('kblv', 0.0038503217804481838) +zone = ('ilz069', 0.0034174908704371607) + +[fips1711938245] +centroid = (0.67548416879751327, -1.5685010792021838) +description = Jarvis township, IL +station = ('kblv', 0.0026716667398716588) +zone = ('ilz100', 0.0022805131791210765) + +[fips1711942652] +centroid = (0.67847876982150002, -1.5648649649583339) +description = Leef township, IL +station = ('k3lf', 0.0050346789244744049) +zone = ('ilz100', 0.0034169694617388929) + +[fips1711946877] +centroid = (0.67695565588986961, -1.5666012708580956) +description = Marine township, IL +station = ('kblv', 0.0043108266423160131) +zone = ('ilz100', 0.002117102979946326) + +[fips1711950465] +centroid = (0.68002109982819492, -1.5704514846412876) +description = Moro township, IL +station = ('kaln', 0.0014424936179388741) +zone = ('ilz100', 0.0025268258004291638) + +[fips1711951583] +centroid = (0.6755930598895451, -1.572160127072405) +description = Nameoki township, IL +station = ('kcps', 0.0026643873166649211) +zone = ('moz064', 0.0026048972349864245) + +[fips1711952428] +centroid = (0.67986466596733863, -1.5650892746738003) +description = New Douglas township, IL +station = ('k3lf', 0.0036451060497572517) +zone = ('ilz100', 0.0038189790856361853) + +[fips1711955834] +centroid = (0.67997348724620055, -1.5665215965777421) +description = Olive township, IL +station = ('k3lf', 0.003701214179434021) +zone = ('ilz100', 0.0030460221921235452) + +[fips1711956068] +centroid = (0.67997783311603799, -1.5685233845100244) +description = Omphghent township, IL +station = ('kaln', 0.0026607121447859757) +zone = ('ilz100', 0.0023184452705237238) + +[fips1711960014] +centroid = (0.6770093945775385, -1.5686301812069539) +description = Pin Oak township, IL +station = ('kaln', 0.0030499416141968835) +zone = ('ilz100', 0.00080505800439057145) + +[fips1711966872] +centroid = (0.67530038562727823, -1.5664218161044055) +description = St. Jacob township, IL +station = ('kblv', 0.0028308521365707452) +zone = ('ilz100', 0.0032088672943173507) + +[fips1711967275] +centroid = (0.67690961410420203, -1.5646285252045662) +description = Saline township, IL +station = ('kblv', 0.0049366781326336592) +zone = ('ilz100', 0.0036054959504448515) + +[fips1711977486] +centroid = (0.67567224547770821, -1.5737712055983357) +description = Venice township, IL +station = ('kcps', 0.0025720808593128084) +zone = ('moz064', 0.0016897673168430314) + +[fips1711982] +centroid = (0.72021203569763725, -1.5555424283851467) +description = Cedar Point village, IL +station = ('kvys', 0.0015564545460431151) +zone = ('ilz018', 0.0023488764629360326) + +[fips1711983284] +centroid = (0.67852187945402442, -1.5722262750510556) +description = Wood River township, IL +station = ('kaln', 0.00059769980328661554) +zone = ('ilz100', 0.0025369970697622125) + +[fips1712008] +centroid = (0.73959318400274854, -1.5644458939516375) +description = Cedarville village, IL +station = ('kfep', 0.0023595828005922672) +zone = ('ilz002', 0.00053761579040059412) + +[fips17121] +centroid = (0.67454176081460637, -1.5519506280510047) +description = Marion County, IL +station = ('kslo', 0.00060701492122298062) +zone = ('ilz070', 2.6806232282510996e-05) + +[fips1712100932] +centroid = (0.67526549649553091, -1.5509906795091153) +description = Alma township, IL +station = ('kslo', 0.0015790854385905055) +zone = ('ilz070', 0.0010153272977174751) + +[fips1712111436] +centroid = (0.67530729713111615, -1.5548275938834071) +description = Carrigan township, IL +station = ('kslo', 0.0018600599946866575) +zone = ('ilz070', 0.0023821577694108204) + +[fips1712112177] +centroid = (0.67218502527234592, -1.5547659663075193) +description = Centralia township, IL +station = ('kenl', 0.00014795343677935448) +zone = ('ilz070', 0.0032512860415826244) + +[fips1712127195] +centroid = (0.67686219350842536, -1.5527203531577192) +description = Foster township, IL +station = ('kslo', 0.0024184901068155613) +zone = ('ilz070', 0.0023808151560815883) + +[fips1712132187] +centroid = (0.67227730082989889, -1.5510467045781045) +description = Haines township, IL +station = ('kslo', 0.0025297201614978052) +zone = ('ilz070', 0.0023873409309421159) + +[fips1712137946] +centroid = (0.67383439632206554, -1.5490681993380437) +description = Iuka township, IL +station = ('kslo', 0.0029154741048173479) +zone = ('ilz070', 0.0023508138546861216) + +[fips1712140130] +centroid = (0.67683025398311381, -1.5509943796071295) +description = Kinmundy township, IL +station = ('kslo', 0.0027392947144940344) +zone = ('ilz070', 0.0023819404677574161) + +[fips1712147826] +centroid = (0.67699066719466461, -1.5488946437972253) +description = Meacham township, IL +station = ('kslo', 0.0039223430546571078) +zone = ('ilz070', 0.0033912737775087416) + +[fips1712151] +centroid = (0.67279739149370066, -1.5555842639273167) +description = Central City village, IL +station = ('kenl', 0.00076856545427490851) +zone = ('ilz070', 0.0033579604229694547) + +[fips1712155223] +centroid = (0.67368150547959083, -1.5544307758246738) +description = Odin township, IL +station = ('kenl', 0.001528280269495057) +zone = ('ilz070', 0.0021437895328231967) + +[fips1712156055] +centroid = (0.67535754516028113, -1.5489802696503281) +description = Omega township, IL +station = ('kslo', 0.0030577586755910317) +zone = ('ilz070', 0.0024357289922623346) + +[fips1712158070] +centroid = (0.67690170776269054, -1.5547169749154157) +description = Patoka township, IL +station = ('kslo', 0.0029112853459745403) +zone = ('ilz070', 0.003193981642811167) + +[fips1712162445] +centroid = (0.67228473593251237, -1.5529345748701091) +description = Raccoon township, IL +station = ('kenl', 0.001580793566525905) +zone = ('ilz070', 0.0024097596928954559) + +[fips1712164] +centroid = (0.67233700854360956, -1.5554992314861598) +description = Centralia city, IL +station = ('kenl', 0.00044650534995126391) +zone = ('ilz070', 0.0035694502475481847) + +[fips1712165455] +centroid = (0.67224675756798902, -1.549136022832776) +description = Romine township, IL +station = ('kslo', 0.0035589179963967143) +zone = ('ilz070', 0.003183035466877546) + +[fips1712167249] +centroid = (0.67385584641857266, -1.5528793701058685) +description = Salem township, IL +station = ('kslo', 0.00060128546827375919) +zone = ('ilz070', 0.0010249786162012942) + +[fips1712167457] +centroid = (0.67378238551035619, -1.5553352578029349) +description = Sandoval township, IL +station = ('kenl', 0.0016018648251961687) +zone = ('ilz070', 0.0027728806657201423) + +[fips1712172598] +centroid = (0.67375824760680114, -1.5509552493252998) +description = Stevenson township, IL +station = ('kslo', 0.0015380739944664908) +zone = ('ilz070', 0.0011074036338593058) + +[fips1712175744] +centroid = (0.67526104590593827, -1.5529124964550713) +description = Tonti township, IL +station = ('kslo', 0.00083138355219391569) +zone = ('ilz070', 0.0010377073663470197) + +[fips1712203] +centroid = (0.67316014072543517, -1.5729305852174051) +description = Centreville city, IL +station = ('kcps', 0.00038086500017605587) +zone = ('moz064', 0.0020374826976769633) + +[fips1712268] +centroid = (0.6962053459957207, -1.548713338994528) +description = Cerro Gordo village, IL +station = ('kdec', 0.0020221943801061099) +zone = ('ilz044', 0.0028524716519795165) + +[fips1712294] +centroid = (0.73328675090993223, -1.5688492723879568) +description = Chadwick village, IL +station = ('ksfy', 0.0028964958568255001) +zone = ('ilz007', 0.001123975878283378) + +[fips17123] +centroid = (0.71612812232760314, -1.5593185354882988) +description = Marshall County, IL +station = ('kc75', 0.00061598814029435039) +zone = ('ilz030', 4.8392740934575169e-05) + +[fips1712304949] +centroid = (0.7151208230031072, -1.5570046826857598) +description = Bell Plain township, IL +station = ('kc75', 0.002459521661404528) +zone = ('ilz030', 0.0020618221515275063) + +[fips1712305235] +centroid = (0.71507029572126191, -1.5551635697644162) +description = Bennington township, IL +station = ('kc75', 0.0038116963876212787) +zone = ('ilz030', 0.0033513372669006863) + +[fips1712324569] +centroid = (0.71683435235613013, -1.5550939311272616) +description = Evans township, IL +station = ('kvys', 0.0049419775904932925) +zone = ('ilz030', 0.0032867767347451934) + +[fips1712334176] +centroid = (0.71766252853949408, -1.5600830595138424) +description = Henry township, IL +station = ('kc75', 0.0017430160540004131) +zone = ('ilz030', 0.0015939254436192971) + +[fips1712336152] +centroid = (0.71659950085198187, -1.5591149951909311) +description = Hopewell township, IL +station = ('kc75', 0.00099983102217740907) +zone = ('ilz030', 0.00047294673886233554) + +[fips1712340572] +centroid = (0.71513405259883733, -1.5603906039813362) +description = Lacon township, IL +station = ('kc75', 0.00081824796495471675) +zone = ('ilz030', 0.0012905535239206565) + +[fips1712342093] +centroid = (0.71585466414040078, -1.5633852573652007) +description = La Prairie township, IL +station = ('kc75', 0.0024895734273430877) +zone = ('ilz030', 0.0030518394664079138) + +[fips1712363589] +centroid = (0.71509397983921164, -1.5590892864910493) +description = Richland township, IL +station = ('kc75', 0.0011172886689282012) +zone = ('ilz030', 0.0010899160977591875) + +[fips1712364668] +centroid = (0.71665865006033191, -1.5573251600430111) +description = Roberts township, IL +station = ('kc75', 0.0022102076802102237) +zone = ('ilz030', 0.0016128912366618364) + +[fips1712367691] +centroid = (0.71735850963708925, -1.5635367868508587) +description = Saratoga township, IL +station = ('kc75', 0.0029728363202511095) +zone = ('ilz030', 0.0033671641507696044) + +[fips1712372585] +centroid = (0.71593782907925829, -1.5617903754947284) +description = Steuben township, IL +station = ('kc75', 0.001285456563040515) +zone = ('ilz030', 0.0018467393899671163) + +[fips1712381230] +centroid = (0.71731506839200698, -1.5616465952709488) +description = Whitefield township, IL +station = ('kc75', 0.0018250689906280373) +zone = ('ilz030', 0.0020721089928574308) + +[fips1712385] +centroid = (0.70013982427519894, -1.5406658701596776) +description = Champaign city, IL +station = ('kcmi', 0.0014293947637020166) +zone = ('ilz045', 0.0010866728369021371) + +[fips1712450] +centroid = (0.69895525185857788, -1.5734374637387696) +description = Chandlerville village, IL +station = ('kijx', 0.0049062709273907179) +zone = ('ilz047', 0.0018162965956821648) + +[fips1712476] +centroid = (0.72296581619143396, -1.5404777062130202) +description = Channahon village, IL +station = ('kjot', 0.0020176652022912168) +zone = ('ilz021', 0.003155550994557815) + +[fips1712489] +centroid = (0.74146377553515841, -1.5384576446834692) +description = Channel Lake CDP, IL +station = ('kenw', 0.0034273493138175164) +zone = ('wiz072', 0.0021270457287767236) + +[fips17125] +centroid = (0.70226800895191066, -1.5692879259888604) +description = Mason County, IL +station = ('kspi', 0.0074218948508831444) +zone = ('ilz041', 6.3862232519741342e-05) + +[fips1712500844] +centroid = (0.70306724757627648, -1.5649254580702081) +description = Allens Grove township, IL +station = ('kaaa', 0.0048863808364106595) +zone = ('ilz041', 0.0034548098487738699) + +[fips1712504169] +centroid = (0.70085008601429799, -1.5728070857195342) +description = Bath township, IL +station = ('kijx', 0.0068614480928461726) +zone = ('ilz041', 0.0030237112289061207) + +[fips1712517250] +centroid = (0.70124264546965653, -1.5685670177413242) +description = Crane Creek township, IL +station = ('kspi', 0.0062609212567153487) +zone = ('ilz041', 0.0012258796162156538) + +[fips1712526766] +centroid = (0.70406391784562794, -1.5677735736100751) +description = Forest City township, IL +station = ('kpia', 0.0060127497907025576) +zone = ('ilz041', 0.0021197081691817134) + +[fips1712528] +centroid = (0.6940654327064355, -1.5778254832776712) +description = Chapin village, IL +station = ('kijx', 0.00220530114323656) +zone = ('ilz049', 0.002351312733865951) + +[fips1712533526] +centroid = (0.70304876453949783, -1.5709426028395062) +description = Havana township, IL +station = ('kpia', 0.0079850835198460347) +zone = ('ilz041', 0.0014233151254647728) + +[fips1712539870] +centroid = (0.70109755624893833, -1.5705613531177005) +description = Kilbourne township, IL +station = ('kspi', 0.0068998539309880307) +zone = ('ilz041', 0.001531962953418457) + +[fips1712545265] +centroid = (0.70010654084636337, -1.5755383340126876) +description = Lynchburg township, IL +station = ('kijx', 0.0059329165110568053) +zone = ('ilz047', 0.0024571477638309826) + +[fips1712546396] +centroid = (0.70490216457877564, -1.5668526855368452) +description = Manito township, IL +station = ('kpia', 0.0050116905785093941) +zone = ('ilz041', 0.003209581274871671) + +[fips1712547482] +centroid = (0.70137731507474055, -1.5648717019292468) +description = Mason City township, IL +station = ('kaaa', 0.0043676794406024046) +zone = ('ilz048', 0.0033517548197903747) + +[fips1712558629] +centroid = (0.70267976702904122, -1.5668053871141163) +description = Pennsylvania township, IL +station = ('kpia', 0.0071831505930361689) +zone = ('ilz041', 0.0019716969111973452) + +[fips1712562419] +centroid = (0.70460083348341895, -1.5696186658821134) +description = Quiver township, IL +station = ('kpia', 0.0061337461245178247) +zone = ('ilz041', 0.0022951417413822769) + +[fips1712567] +centroid = (0.68914028809023264, -1.5389896035861848) +description = Charleston city, IL +station = ('kmto', 0.0012409664020438529) +zone = ('ilz056', 0.00085746749145565969) + +[fips1712567353] +centroid = (0.7011767592903938, -1.5668072022565382) +description = Salt Creek township, IL +station = ('kspi', 0.0057842289093230732) +zone = ('ilz041', 0.0022472859529828631) + +[fips1712569329] +centroid = (0.70267709667528577, -1.5687967554307645) +description = Sherman township, IL +station = ('kpia', 0.0075810160574096763) +zone = ('ilz041', 0.00055273595374904811) + +[fips1712684] +centroid = (0.69238581510077868, -1.5655522232578918) +description = Chatham village, IL +station = ('kspi', 0.0031354359781768939) +zone = ('ilz051', 0.0016202863748527442) + +[fips17127] +centroid = (0.64954381136401951, -1.5482057972480481) +description = Massac County, IL +station = ('km30', 0.00081791102352913128) +zone = ('ilz094', 5.8435469331689173e-05) + +[fips1712710] +centroid = (0.71053579069824047, -1.541144055468139) +description = Chatsworth town, IL +station = ('kpnt', 0.0056700123153662014) +zone = ('ilz039', 0.0022325217194285899) + +[fips1712790018] +centroid = (0.64883073964482474, -1.5487852116531251) +description = Adkins precinct, IL +station = ('km30', 0.00024597461986066826) +zone = ('ilz094', 0.00087699840798821107) + +[fips1712790396] +centroid = (0.65070785870863723, -1.5485251052347004) +description = Benton precinct, IL +station = ('km30', 0.0017325279390988963) +zone = ('ilz094', 0.001136147157236634) + +[fips1712791026] +centroid = (0.6484803997040719, -1.5463222553725884) +description = East Brooklyn precinct, IL +station = ('km30', 0.0021915569857915195) +zone = ('ilz094', 0.0018926824308643296) + +[fips1712791260] +centroid = (0.64863962609173142, -1.54867996829923) +description = Franklin precinct, IL +station = ('km30', 0.00044929628056510789) +zone = ('ilz094', 0.0010159133246896502) + +[fips1712791332] +centroid = (0.6511917686970452, -1.549739662407871) +description = Georges Creek precinct, IL +station = ('km30', 0.0022569901956029561) +zone = ('ilz094', 0.0019927284345191425) + +[fips1712791494] +centroid = (0.64951663658756598, -1.5492703259187171) +description = Grant precinct, IL +station = ('km30', 0.00054907201575203092) +zone = ('ilz094', 0.00082162802062050956) + +[fips1712791638] +centroid = (0.64969178037800368, -1.5509724931783095) +description = Hillerman precinct, IL +station = ('km30', 0.0017182767475181909) +zone = ('ilz094', 0.0021755438905367032) + +[fips1712791692] +centroid = (0.6479937844553233, -1.5453116748290987) +description = Jackson precinct, IL +station = ('kpah', 0.0034342183612826585) +zone = ('kyz005', 0.0027264299383638817) + +[fips1712791740] +centroid = (0.64867887854660866, -1.5481428955818064) +description = Jefferson precinct, IL +station = ('km30', 0.00075369723843109811) +zone = ('ilz094', 0.00091869587716357905) + +[fips1712791908] +centroid = (0.64853478416356414, -1.5485342158533959) +description = Lincoln precinct, IL +station = ('km30', 0.00060198176383610875) +zone = ('ilz094', 0.0010843861089185165) + +[fips1712791944] +centroid = (0.65080580658625908, -1.5511755622367789) +description = Logan precinct, IL +station = ('km30', 0.0024970876854447455) +zone = ('ilz094', 0.0026298487558773283) + +[fips1712792070] +centroid = (0.64845840855549686, -1.5487314206055789) +description = Metropolis No. 1 precinct, IL +station = ('km30', 0.00059355545706881428) +zone = ('ilz094', 0.0012004485758761593) + +[fips1712792088] +centroid = (0.64841046436094463, -1.5486454805932106) +description = Metropolis No. 2 precinct, IL +station = ('km30', 0.00066396361171568901) +zone = ('ilz094', 0.0012262560435860254) + +[fips1712792106] +centroid = (0.64836327065797061, -1.5485598547401076) +description = Metropolis No. 3 precinct, IL +station = ('km30', 0.000736353380095604) +zone = ('ilz094', 0.0012564150643538743) + +[fips1712792124] +centroid = (0.64831876476204475, -1.5484356745638284) +description = Metropolis No. 4 precinct, IL +station = ('km30', 0.0008244836416321209) +zone = ('ilz094', 0.0012845174900338642) + +[fips1712793618] +centroid = (0.64965235339020111, -1.5468979522263586) +description = Washington precinct, IL +station = ('km30', 0.0017835005435302925) +zone = ('ilz094', 0.0010728054793378088) + +[fips1712793672] +centroid = (0.64839847394898331, -1.5473024148272159) +description = West Brooklyn precinct, IL +station = ('km30', 0.0014790347895399861) +zone = ('ilz094', 0.0014111198346650159) + +[fips1712801] +centroid = (0.71568639694721592, -1.5343148788110581) +description = Chebanse village, IL +station = ('kikk', 0.0014163878070714601) +zone = ('ilz023', 0.0023868703121049761) + +[fips1712879] +centroid = (0.74030246835746649, -1.5474817997677359) +description = Chemung CDP, IL +station = ('kjvl', 0.0058986444233258325) +zone = ('ilz004', 0.0026184175545319994) + +[fips17129] +centroid = (0.69852560415661435, -1.5672032698236935) +description = Menard County, IL +station = ('kspi', 0.0033571020795686662) +zone = ('ilz048', 0.00013687105598017565) + +[fips1712931] +centroid = (0.71100456868203366, -1.5485941679132018) +description = Chenoa city, IL +station = ('kpnt', 0.0035186947105139998) +zone = ('ilz032', 0.003501180232986077) + +[fips1712970] +centroid = (0.72305926111958574, -1.5570727854331727) +description = Cherry village, IL +station = ('kvys', 0.0015504507438866889) +zone = ('ilz018', 0.0040178201313824432) + +[fips1712990256] +centroid = (0.69785499629812064, -1.5659360211604054) +description = Athens North No. 2 precinct, IL +station = ('kspi', 0.0023964565637886728) +zone = ('ilz048', 0.0013164897656734271) + +[fips1712990262] +centroid = (0.69706331494941598, -1.5662110675972272) +description = Athens South No. 1 precinct, IL +station = ('kspi', 0.0017097358173837349) +zone = ('ilz048', 0.0017736007777548134) + +[fips1712990270] +centroid = (0.69888976710504302, -1.5698884239713016) +description = Atterberry No. 10 precinct, IL +station = ('kspi', 0.0048925569059273758) +zone = ('ilz048', 0.0019680776901762403) + +[fips1712991242] +centroid = (0.69824739867384644, -1.5640807012589504) +description = Fancy Prairie No. 3 precinct, IL +station = ('kspi', 0.0028816776109686628) +zone = ('ilz048', 0.0025254139668317911) + +[fips1712991566] +centroid = (0.70005573431183787, -1.5656029250726622) +description = Greenview No. 6 precinct, IL +station = ('kspi', 0.0045492096338719977) +zone = ('ilz048', 0.0019661603631578048) + +[fips1712991656] +centroid = (0.6995462727031807, -1.5670724573962564) +description = Indian Creek No. 7 precinct, IL +station = ('kspi', 0.0042627657228377714) +zone = ('ilz048', 0.00095915394972982953) + +[fips1712991674] +centroid = (0.69988111412017584, -1.5644908885397539) +description = Irish Grove No. 4 precinct, IL +station = ('kspi', 0.0044079714111618555) +zone = ('ilz048', 0.0025266793868431014) + +[fips1712992286] +centroid = (0.70002398677274413, -1.5699237494353622) +description = Oakford No. 9 precinct, IL +station = ('kspi', 0.0057499880372174818) +zone = ('ilz041', 0.0023336659618033422) + +[fips1712992433] +centroid = (0.69813482493709289, -1.5673255824976733) +description = Petersburg East No. 13 precinct, IL +station = ('kspi', 0.0030588559988790971) +zone = ('ilz048', 0.00047530692477270947) + +[fips1712992436] +centroid = (0.69859381162378231, -1.5684775696171593) +description = Petersburg North No. 14 precinct, IL +station = ('kspi', 0.0039417712320292068) +zone = ('ilz048', 0.00086812130558139322) + +[fips1712992439] +centroid = (0.69803411943925275, -1.5690053397296702) +description = Petersburg South No. 15 precinct, IL +station = ('kspi', 0.0038159330480890207) +zone = ('ilz048', 0.0013966265579024113) + +[fips1712992441] +centroid = (0.69829063047941842, -1.568256541120687) +description = Petersburg West No. 16 precinct, IL +station = ('kspi', 0.0035997436509632016) +zone = ('ilz048', 0.0007682979781169373) + +[fips1712993024] +centroid = (0.69697526308865287, -1.5677107068504181) +description = Rock Creek No. 12 precinct, IL +station = ('kspi', 0.0023758220024034907) +zone = ('ilz048', 0.0016586246391355765) + +[fips1712993096] +centroid = (0.69971483660233835, -1.5683556409156152) +description = Sandridge No. 8 precinct, IL +station = ('kspi', 0.0048211578327109362) +zone = ('ilz048', 0.0013491803247119608) + +[fips1712993312] +centroid = (0.69887257561191085, -1.5654606109254547) +description = Sugar Grove No. 5 precinct, IL +station = ('kspi', 0.0033620643110836277) +zone = ('ilz048', 0.001465796020552789) + +[fips1712993366] +centroid = (0.69726270136316382, -1.5698095525424041) +description = Tallula No. 11 precinct, IL +station = ('kspi', 0.0038974696538109162) +zone = ('ilz048', 0.0023201836669555125) + +[fips1713074] +centroid = (0.73719058120774561, -1.5528361732068816) +description = Cherry Valley village, IL +station = ('krfd', 0.0017943692099551462) +zone = ('ilz004', 0.0024169024203357791) + +[fips17131] +centroid = (0.71915927054612683, -1.5837367738278356) +description = Mercer County, IL +station = ('kmli', 0.0051955922111805624) +zone = ('ilz024', 8.8942833037820873e-06) + +[fips1713100126] +centroid = (0.71756023479203468, -1.5854914056847431) +description = Abington township, IL +station = ('kmut', 0.005993121170855124) +zone = ('ilz024', 0.0020812683527857367) + +[fips1713120968] +centroid = (0.72040276527829517, -1.58553016944743) +description = Duncan township, IL +station = ('kmli', 0.0052559697486886025) +zone = ('ilz024', 0.0018286575531648731) + +[fips1713123152] +centroid = (0.72061873231993701, -1.5881171488246137) +description = Eliza township, IL +station = ('kmut', 0.0024761874855529246) +zone = ('iaz067', 0.0037579580312994631) + +[fips1713131342] +centroid = (0.71904770910033933, -1.5815147253439517) +description = Greene township, IL +station = ('kmli', 0.0045732661563043404) +zone = ('ilz024', 0.0016757557717346902) + +[fips1713139] +centroid = (0.66192667806082395, -1.5677890023206627) +description = Chester city, IL +station = ('ksar', 0.0042819894893039645) +zone = ('ilz079', 0.002207999612752564) + +[fips1713139311] +centroid = (0.71768102902956521, -1.5871444244725996) +description = Keithsburg township, IL +station = ('kmut', 0.0051339508250700973) +zone = ('ilz024', 0.0029656669291721082) + +[fips1713148398] +centroid = (0.71902674769602293, -1.5833956492255334) +description = Mercer township, IL +station = ('kmli', 0.0051675179451083726) +zone = ('ilz024', 0.00029265869611920731) + +[fips1713149256] +centroid = (0.71907486642350038, -1.5854535843998525) +description = Millersburg township, IL +station = ('kmut', 0.0050018035174662226) +zone = ('ilz024', 0.0012954984405120198) + +[fips1713152233] +centroid = (0.71911542787531668, -1.5881564536393684) +description = New Boston township, IL +station = ('kmut', 0.0035188458235905933) +zone = ('ilz024', 0.0033260905349671043) + +[fips1713153806] +centroid = (0.71746371808439946, -1.5794167174100067) +description = North Henderson township, IL +station = ('kgbg', 0.0030732051689887499) +zone = ('ilz024', 0.0036717714597412376) + +[fips1713155405] +centroid = (0.71753618415494214, -1.5834606278335852) +description = Ohio Grove township, IL +station = ('kgbg', 0.0049225774858444576) +zone = ('ilz024', 0.0016451054692377429) + +[fips1713159182] +centroid = (0.72060902828929585, -1.5833364302040134) +description = Perryton township, IL +station = ('kmli', 0.0038726088534320989) +zone = ('ilz024', 0.0014718914382463339) + +[fips1713161795] +centroid = (0.72044250642536312, -1.5813568603131087) +description = Preemption township, IL +station = ('kmli', 0.0032124632761978702) +zone = ('ilz024', 0.0021965582134016882) + +[fips1713163628] +centroid = (0.7204757724009061, -1.5792885927896179) +description = Richland Grove township, IL +station = ('kmli', 0.0029893108387016253) +zone = ('ilz015', 0.0034341327677801644) + +[fips1713164551] +centroid = (0.71898814101296882, -1.5794750463136085) +description = Rivoli township, IL +station = ('kmli', 0.0044581013973599053) +zone = ('ilz024', 0.0032111954511509439) + +[fips1713165] +centroid = (0.68515716748450128, -1.5719616133232832) +description = Chesterfield village, IL +station = ('kaln', 0.0062282322867216614) +zone = ('ilz059', 0.0019254567617635334) + +[fips1713173339] +centroid = (0.71750176626209283, -1.5814115240252811) +description = Suez township, IL +station = ('kgbg', 0.003798036283662726) +zone = ('ilz024', 0.0024166570858105202) + +[fips1713230] +centroid = (0.69907079265505989, -1.556600394617828) +description = Chestnut CDP, IL +station = ('kaaa', 0.0026960406023566431) +zone = ('ilz042', 0.0027131514769134341) + +[fips17133] +centroid = (0.66807683437241661, -1.5739218275127831) +description = Monroe County, IL +station = ('kcps', 0.005054144423325033) +zone = ('ilz102', 2.4697711591325985e-05) + +[fips1713392550] +centroid = (0.66854636284778812, -1.5706939981408521) +description = Precinct 1, IL +station = ('kblv', 0.004710171304584356) +zone = ('ilz102', 0.0025523150679250795) + +[fips1713392555] +centroid = (0.67089191082954336, -1.5742243105254461) +description = Precinct 2, IL +station = ('kcps', 0.0023119963103157039) +zone = ('ilz102', 0.0028180868940029806) + +[fips1713392560] +centroid = (0.67068414683538591, -1.5738354860746868) +description = Precinct 3, IL +station = ('kcps', 0.0024534114727680447) +zone = ('ilz102', 0.002598674315502968) + +[fips1713392565] +centroid = (0.67111854183291486, -1.5744355302715225) +description = Precinct 4, IL +station = ('kcps', 0.0021507361028803083) +zone = ('ilz102', 0.0030624218928410247) + +[fips1713392570] +centroid = (0.67103494056174429, -1.5744824621751088) +description = Precinct 5, IL +station = ('kcps', 0.0022420099695662672) +zone = ('ilz102', 0.0029851374188498547) + +[fips1713392575] +centroid = (0.66795127538602816, -1.5704678034697936) +description = Precinct 6, IL +station = ('ksar', 0.0044207244061668111) +zone = ('ilz102', 0.0026919578225937388) + +[fips1713392580] +centroid = (0.66882880948063828, -1.572170930660475) +description = Precinct 7, IL +station = ('kcps', 0.0043957363626897115) +zone = ('ilz102', 0.0015418827131369393) + +[fips1713392585] +centroid = (0.66828550593778502, -1.5725578527023494) +description = Precinct 8, IL +station = ('kcps', 0.0048761890281493504) +zone = ('ilz102', 0.0010665129407911244) + +[fips1713392590] +centroid = (0.66617215655971518, -1.5723271201752358) +description = Precinct 9, IL +station = ('ksar', 0.0053511369626854455) +zone = ('ilz102', 0.0022747857431706514) + +[fips1713392595] +centroid = (0.67100853373016156, -1.5752621182052671) +description = Precinct 10, IL +station = ('kcps', 0.0025552626171493468) +zone = ('ilz102', 0.003113723009045478) + +[fips1713392600] +centroid = (0.67009209624652433, -1.5738942164040166) +description = Precinct 11, IL +station = ('kcps', 0.003046470348478895) +zone = ('ilz102', 0.0020062389523609636) + +[fips1713392605] +centroid = (0.6681964941459333, -1.5744137136558727) +description = Precinct 12, IL +station = ('kcps', 0.0049807415586676299) +zone = ('ilz102', 0.00042380334397686955) + +[fips1713392610] +centroid = (0.6660513099623071, -1.5741764535973566) +description = Precinct 13, IL +station = ('ksar', 0.0067980418972139181) +zone = ('ilz102', 0.0020467381611575823) + +[fips1713392615] +centroid = (0.66981340207156603, -1.5747589223286245) +description = Precinct 14, IL +station = ('kcps', 0.0034656616824351506) +zone = ('ilz102', 0.0018564314450028841) + +[fips1713392620] +centroid = (0.66819417285802818, -1.5761798297792582) +description = Precinct 15, IL +station = ('kcps', 0.0053769424608163261) +zone = ('ilz102', 0.00179872940768486) + +[fips1713392625] +centroid = (0.66935144832514815, -1.5735535455873197) +description = Precinct 16, IL +station = ('kcps', 0.0037654450901268453) +zone = ('ilz102', 0.0012932384295668534) + +[fips1713392630] +centroid = (0.66910279126661643, -1.5736632395308074) +description = Precinct 17, IL +station = ('kcps', 0.0040172559783701071) +zone = ('ilz102', 0.0010327289636377723) + +[fips1713392635] +centroid = (0.66890282889421537, -1.5734839244034575) +description = Precinct 18, IL +station = ('kcps', 0.004212838666824553) +zone = ('ilz102', 0.00087764877246858017) + +[fips1713392640] +centroid = (0.66900219048853149, -1.5733112764338504) +description = Precinct 19, IL +station = ('kcps', 0.0041139159665673358) +zone = ('ilz102', 0.0010235832948190292) + +[fips1713392645] +centroid = (0.66857123378962913, -1.5759980188310778) +description = Precinct 20, IL +station = ('kcps', 0.0049743781217794136) +zone = ('ilz102', 0.0017223104376281242) + +[fips1713392650] +centroid = (0.67049931646759975, -1.5751670501209107) +description = Precinct 21, IL +station = ('kcps', 0.0029538853226655695) +zone = ('ilz102', 0.0026122551614957447) + +[fips1713392655] +centroid = (0.66918154052246648, -1.574500508879574) +description = Precinct 22, IL +station = ('kcps', 0.0040246866521219792) +zone = ('ilz102', 0.0011950318498337696) + +[fips1713392660] +centroid = (0.66759610088324728, -1.5743091509803855) +description = Precinct 23, IL +station = ('kcps', 0.0055635767443242947) +zone = ('ilz102', 0.00058894818966828482) + +[fips1713392665] +centroid = (0.67133785990672046, -1.5750789633535629) +description = Precinct 24, IL +station = ('kcps', 0.0022035865845732336) +zone = ('moz064', 0.0029840636722061002) + +[fips1713392670] +centroid = (0.67074776408662107, -1.5743765730493902) +description = Precinct 25, IL +station = ('kcps', 0.0024844362199507612) +zone = ('ilz102', 0.0026888322210252753) + +[fips1713392675] +centroid = (0.66956221428561891, -1.5729460837411631) +description = Precinct 26, IL +station = ('kcps', 0.0035719654062925763) +zone = ('ilz102', 0.0016525738626919381) + +[fips1713392680] +centroid = (0.66873018092460812, -1.5737350423762344) +description = Precinct 27, IL +station = ('kcps', 0.0043923231998475899) +zone = ('ilz102', 0.0006560723284453555) + +[fips1713392685] +centroid = (0.66950589251065706, -1.5727834539614622) +description = Precinct 28, IL +station = ('kcps', 0.0036430671591540535) +zone = ('ilz102', 0.001665433337489444) + +[fips1713392690] +centroid = (0.66755349739620617, -1.572312057983791) +description = Precinct 29, IL +station = ('ksar', 0.0055989480154412736) +zone = ('ilz102', 0.0013503234262056897) + +[fips1713392695] +centroid = (0.6696437386149795, -1.5736474093944919) +description = Precinct 30, IL +station = ('kcps', 0.0034763699135776766) +zone = ('ilz102', 0.0015697059513226151) + +[fips1713392700] +centroid = (0.66915652995428532, -1.5734391043482665) +description = Precinct 31, IL +station = ('kcps', 0.0039588324741495302) +zone = ('ilz102', 0.0011282435656755263) + +[fips1713392705] +centroid = (0.66907673350088415, -1.5734607813375763) +description = Precinct 32, IL +station = ('kcps', 0.0040387452523513601) +zone = ('ilz102', 0.0010471971777630362) + +[fips1713392710] +centroid = (0.66885676965525542, -1.5733102815961768) +description = Precinct 33, IL +station = ('kcps', 0.0042593246959166178) +zone = ('ilz102', 0.00089615791897758854) + +[fips1713392715] +centroid = (0.67146446609066002, -1.5745208943252376) +description = Precinct 34, IL +station = ('kcps', 0.0018641022366316195) +zone = ('moz064', 0.0028898160829218529) + +[fips1713392720] +centroid = (0.67119530141341743, -1.5742751868731419) +description = Precinct 35, IL +station = ('kcps', 0.0020347491415808341) +zone = ('ilz102', 0.0031238832890461109) + +[fips1713392725] +centroid = (0.67101410133047534, -1.5741666448469602) +description = Precinct 36, IL +station = ('kcps', 0.0021821300697498079) +zone = ('ilz102', 0.0029361204610427473) + +[fips1713392730] +centroid = (0.67093994229055831, -1.5743695917323821) +description = Precinct 37, IL +station = ('kcps', 0.0023002364661671979) +zone = ('ilz102', 0.0028784934579100772) + +[fips17135] +centroid = (0.68465936467524735, -1.5616858302725338) +description = Montgomery County, IL +station = ('k3lf', 0.0028951116766465531) +zone = ('ilz060', 5.2170344355206815e-05) + +[fips1713502960] +centroid = (0.68553051086479533, -1.556814057824857) +description = Audubon township, IL +station = ('ktaz', 0.0047969151710196955) +zone = ('ilz052', 0.0047920475774097023) + +[fips1713507107] +centroid = (0.68923052161256082, -1.5638540178957012) +description = Bois D'Arc township, IL +station = ('ktaz', 0.0037751174791106033) +zone = ('ilz051', 0.0047425511946249353) + +[fips1713510175] +centroid = (0.68459887156337329, -1.5625249147637226) +description = Butler Grove township, IL +station = ('k3lf', 0.0022833305036242795) +zone = ('ilz060', 0.00064754073948176743) + +[fips1713521761] +centroid = (0.68241602317448902, -1.5606506231332984) +description = East Fork township, IL +station = ('k3lf', 0.0036311346667999688) +zone = ('ilz060', 0.0024344658582002819) + +[fips1713526090] +centroid = (0.6829459400419795, -1.5587001304277321) +description = Fillmore township, IL +station = ('k3lf', 0.0050062895501053082) +zone = ('ilz060', 0.002919728435532851) + +[fips1713531836] +centroid = (0.68173963827617112, -1.5624286947620603) +description = Grisham township, IL +station = ('k3lf', 0.0027341360095212617) +zone = ('ilz060', 0.0030235556735523431) + +[fips1713533370] +centroid = (0.68753027421514545, -1.5631074707614532) +description = Harvel township, IL +station = ('ktaz', 0.0039814606457338865) +zone = ('ilz060', 0.0030227062660741302) + +[fips1713535060] +centroid = (0.68298634441416328, -1.562571654681091) +description = Hillsboro township, IL +station = ('k3lf', 0.0020401706779327659) +zone = ('ilz060', 0.00185106273975062) + +[fips1713537751] +centroid = (0.68441662428288008, -1.5606007416232763) +description = Irving township, IL +station = ('k3lf', 0.0036139915559349929) +zone = ('ilz060', 0.00090178407405196029) + +[fips1713553182] +centroid = (0.68588458581014744, -1.5588483961476891) +description = Nokomis township, IL +station = ('ktaz', 0.0041201526606092741) +zone = ('ilz060', 0.0025017177644898496) + +[fips1713553949] +centroid = (0.68459208223258305, -1.5645568619854795) +description = North Litchfield township, IL +station = ('k3lf', 0.0011654013438693756) +zone = ('ilz060', 0.0022150887564431113) + +[fips1713560183] +centroid = (0.68757219702377825, -1.5645749610498225) +description = Pitman township, IL +station = ('k3lf', 0.0040838733857880508) +zone = ('ilz060', 0.0036241314644260732) + +[fips1713562978] +centroid = (0.68590758924968875, -1.5624167392566841) +description = Raymond township, IL +station = ('k3lf', 0.0031805625576344296) +zone = ('ilz060', 0.0013193376935004557) + +[fips1713566092] +centroid = (0.68600206392209917, -1.5606533458469316) +description = Rountree township, IL +station = ('ktaz', 0.0041835726416861573) +zone = ('ilz060', 0.0015256169019232588) + +[fips1713570772] +centroid = (0.68167596866505842, -1.5586889952271046) +description = South Fillmore township, IL +station = ('k3lf', 0.0053121907004475043) +zone = ('ilz064', 0.0034523218584546775) + +[fips1713570928] +centroid = (0.68293286752588211, -1.5645748039701901) +description = South Litchfield township, IL +station = ('k3lf', 0.00071261936686080253) +zone = ('ilz060', 0.0028495074256473444) + +[fips1713578669] +centroid = (0.68142036519610383, -1.5645010114494156) +description = Walshville township, IL +station = ('k3lf', 0.0021428755764103208) +zone = ('ilz064', 0.0038765362354374667) + +[fips1713582738] +centroid = (0.68447348710990996, -1.5587054187753657) +description = Witt township, IL +station = ('ktaz', 0.0055348268691927001) +zone = ('ilz060', 0.0023329623123273637) + +[fips1713584129] +centroid = (0.6858899963308287, -1.5646434128630859) +description = Zanesville township, IL +station = ('k3lf', 0.002408062564173306) +zone = ('ilz060', 0.0025652267273722274) + +[fips17137] +centroid = (0.69318903307583901, -1.5743267264459531) +description = Morgan County, IL +station = ('kijx', 0.0011135587251106663) +zone = ('ilz050', 2.3491773961943413e-05) + +[fips1713790054] +centroid = (0.69356769971035159, -1.5716743495816974) +description = Alexander precinct, IL +station = ('kijx', 0.0026021341336345443) +zone = ('ilz050', 0.0020684951226288776) + +[fips1713790234] +centroid = (0.69487097196940084, -1.575542103923872) +description = Arcadia precinct, IL +station = ('kijx', 0.00081421053083224654) +zone = ('ilz050', 0.0019474476765754143) + +[fips1713790720] +centroid = (0.69430337344335979, -1.578234937520189) +description = Chapin precinct, IL +station = ('kijx', 0.0025187783006317696) +zone = ('ilz049', 0.0024689676490684013) + +[fips1713790828] +centroid = (0.69520700021028736, -1.5772126458174183) +description = Concord precinct, IL +station = ('kijx', 0.0020066278760728991) +zone = ('ilz047', 0.0029431602024867273) + +[fips1713791278] +centroid = (0.69129397202731602, -1.5719109813216829) +description = Franklin precinct, IL +station = ('kijx', 0.0037277074433626316) +zone = ('ilz050', 0.0026328077878424836) + +[fips1713791711] +centroid = (0.6936377223199417, -1.5745852097081736) +description = Jacksonville No. 1 precinct, IL +station = ('kijx', 0.00062337394007227652) +zone = ('ilz050', 0.00051422549646692203) + +[fips1713791712] +centroid = (0.69366814340880389, -1.5748470614558503) +description = Jacksonville No. 2 precinct, IL +station = ('kijx', 0.0005293036208058276) +zone = ('ilz050', 0.00064711085414796221) + +[fips1713791713] +centroid = (0.69348022380824181, -1.5746268881707113) +description = Jacksonville No. 3 precinct, IL +station = ('kijx', 0.00075494901835512134) +zone = ('ilz050', 0.00039460799885519257) + +[fips1713791714] +centroid = (0.69337201339461818, -1.5742739476893728) +description = Jacksonville No. 4 precinct, IL +station = ('kijx', 0.00097380610252174795) +zone = ('ilz050', 0.00020624677166435564) + +[fips1713791715] +centroid = (0.6933751026273941, -1.5747429002060913) +description = Jacksonville No. 5 precinct, IL +station = ('kijx', 0.0008321136064199532) +zone = ('ilz050', 0.00039006556749554089) + +[fips1713791716] +centroid = (0.69308551759790327, -1.5743306708900626) +description = Jacksonville No. 6 precinct, IL +station = ('kijx', 0.0012062610449226961) +zone = ('ilz050', 8.3559045004895566e-05) + +[fips1713791717] +centroid = (0.69323807682782013, -1.5749609441895427) +description = Jacksonville No. 7 precinct, IL +station = ('kijx', 0.00095208874393154931) +zone = ('ilz050', 0.00050317946697441126) + +[fips1713791718] +centroid = (0.69335152322919957, -1.5749387785080426) +description = Jacksonville No. 8 precinct, IL +station = ('kijx', 0.00083881441667946275) +zone = ('ilz050', 0.00051501549141682711) + +[fips1713791719] +centroid = (0.69342493177753861, -1.5749343453717426) +description = Jacksonville No. 9 precinct, IL +station = ('kijx', 0.00076550559291235201) +zone = ('ilz050', 0.000542487318274786) + +[fips1713791720] +centroid = (0.6934826672691945, -1.5749993763396719) +description = Jacksonville No. 10 precinct, IL +station = ('kijx', 0.00070811717414778395) +zone = ('ilz050', 0.0006144748143706505) + +[fips1713791721] +centroid = (0.69329066359818259, -1.575221033154675) +description = Jacksonville No. 11 precinct, IL +station = ('kijx', 0.00092147351280776036) +zone = ('ilz050', 0.00070901376891097665) + +[fips1713791722] +centroid = (0.69336850528282157, -1.5753807831411102) +description = Jacksonville No. 12 precinct, IL +station = ('kijx', 0.00088280837295496998) +zone = ('ilz050', 0.00084529864224359172) + +[fips1713791723] +centroid = (0.69335810312047963, -1.5755739561827207) +description = Jacksonville No. 13 precinct, IL +station = ('kijx', 0.00095629878456582535) +zone = ('ilz050', 0.00098821655103121424) + +[fips1713791724] +centroid = (0.69357098092934544, -1.5754630928686342) +description = Jacksonville No. 14 precinct, IL +station = ('kijx', 0.00072969470832156007) +zone = ('ilz050', 0.00097189484288556359) + +[fips1713791725] +centroid = (0.69356511662305875, -1.575300585261981) +description = Jacksonville No. 15 precinct, IL +station = ('kijx', 0.00067741423989199666) +zone = ('ilz050', 0.00085699356142248761) + +[fips1713791726] +centroid = (0.69354600526774945, -1.5751452509585533) +description = Jacksonville No. 16 precinct, IL +station = ('kijx', 0.00065957078705106685) +zone = ('ilz050', 0.00074326980840248933) + +[fips1713791727] +centroid = (0.69371085161560031, -1.5751442561208797) +description = Jacksonville No. 17 precinct, IL +station = ('kijx', 0.00049961389310937605) +zone = ('ilz050', 0.0008385823341861971) + +[fips1713791728] +centroid = (0.6935585367317787, -1.5749931280609497) +description = Jacksonville No. 18 precinct, IL +station = ('kijx', 0.0006321152956930557) +zone = ('ilz050', 0.00065270071791372335) + +[fips1713791926] +centroid = (0.69470643978081537, -1.5739132928527408) +description = Literberry precinct, IL +station = ('kijx', 0.00095630342827241626) +zone = ('ilz050', 0.0015688648263537464) + +[fips1713791962] +centroid = (0.6925673642495711, -1.5765475357460683) +description = Lynnville precinct, IL +station = ('kijx', 0.0020304135807023994) +zone = ('ilz050', 0.0018210622169977711) + +[fips1713792034] +centroid = (0.69378968813791286, -1.5765647621457854) +description = Markham precinct, IL +station = ('kijx', 0.0012963187567225573) +zone = ('ilz050', 0.0018397665474758197) + +[fips1713792043] +centroid = (0.695758908226353, -1.5792842469197805) +description = Meredosia No. 1 precinct, IL +station = ('kijx', 0.0036725555833961336) +zone = ('ilz049', 0.0038402564738543063) + +[fips1713792045] +centroid = (0.69472162414530769, -1.5799503343755115) +description = Meredosia No. 2 precinct, IL +station = ('kijx', 0.0038705681852041697) +zone = ('ilz049', 0.0028784639140315071) + +[fips1713792232] +centroid = (0.69048916580263642, -1.5749882585923365) +description = Murrayville precinct, IL +station = ('kijx', 0.0037010597868208815) +zone = ('ilz050', 0.0027287982865083012) + +[fips1713792268] +centroid = (0.69032035755738352, -1.573495583202861) +description = Nortonville precinct, IL +station = ('kijx', 0.0040308537584395204) +zone = ('ilz050', 0.0029164078454488622) + +[fips1713792484] +centroid = (0.69261307442268083, -1.5736423304863687) +description = Pisgah precinct, IL +station = ('kijx', 0.0018749768575016413) +zone = ('ilz050', 0.00075784418827731911) + +[fips1713792934] +centroid = (0.69493520008587428, -1.5723236120634394) +description = Prentice-Sinclair precinct, IL +station = ('kijx', 0.0021589261902765335) +zone = ('ilz050', 0.0023370453739200341) + +[fips1713793206] +centroid = (0.6931022553054299, -1.5746431197327546) +description = South Jacksonville No. 1 precinct, IL +station = ('kijx', 0.0011150092239086435) +zone = ('ilz050', 0.00026218899093259841) + +[fips1713793208] +centroid = (0.6931112262977851, -1.5748177224711242) +description = South Jacksonville No. 2 precinct, IL +station = ('kijx', 0.001084539585008381) +zone = ('ilz050', 0.00039225557095706379) + +[fips1713793210] +centroid = (0.69311750948309225, -1.5749941927117934) +description = South Jacksonville No. 3 precinct, IL +station = ('kijx', 0.0010729619456840461) +zone = ('ilz050', 0.00052630074315615787) + +[fips1713793212] +centroid = (0.6928426724857808, -1.5747806865843967) +description = South Jacksonville No. 4 precinct, IL +station = ('kijx', 0.0013545989293803108) +zone = ('ilz050', 0.000484970193467289) + +[fips1713793640] +centroid = (0.69030110657573407, -1.5707227960735102) +description = Waverly No. 1 precinct, IL +station = ('kijx', 0.0050763052378845919) +zone = ('ilz050', 0.0039830502991600085) + +[fips1713793642] +centroid = (0.69131826701050392, -1.5700060766161787) +description = Waverly No. 2 precinct, IL +station = ('kijx', 0.0047732797420026547) +zone = ('ilz050', 0.0037967201790477952) + +[fips1713793644] +centroid = (0.69162678886237894, -1.5706812921438977) +description = Waverly No. 3 precinct, IL +station = ('kijx', 0.0041728390309648446) +zone = ('ilz050', 0.0031922080592193722) + +[fips1713793852] +centroid = (0.69188176401280277, -1.5747110828538273) +description = Woodson precinct, IL +station = ('kijx', 0.0023163865114081044) +zone = ('ilz050', 0.0013221773965109791) + +[fips17139] +centroid = (0.69179434047057031, -1.5468107206703441) +description = Moultrie County, IL +station = ('kdec', 0.0047129751882651321) +zone = ('ilz054', 0.00011579523721817293) + +[fips1713920344] +centroid = (0.69345643497053699, -1.5489546482169088) +description = Dora township, IL +station = ('kdec', 0.0023726164758847896) +zone = ('ilz054', 0.0023488331872351539) + +[fips1713922099] +centroid = (0.6905474074397755, -1.5452119990755173) +description = East Nelson township, IL +station = ('kmto', 0.0039926006320729693) +zone = ('ilz054', 0.0017527123502602039) + +[fips1713938609] +centroid = (0.69207231906053546, -1.545138747606811) +description = Jonathan Creek township, IL +station = ('kmto', 0.0048067526548661059) +zone = ('ilz054', 0.0012188031859482742) + +[fips1713945057] +centroid = (0.69342468743144325, -1.5471357184303578) +description = Lovington township, IL +station = ('kdec', 0.0034820868656665156) +zone = ('ilz054', 0.0015875015393589066) + +[fips1713945083] +centroid = (0.69365775869975466, -1.5451393235654642) +description = Lowe township, IL +station = ('kdec', 0.0047791742146393807) +zone = ('ilz054', 0.002151350565818349) + +[fips1713947124] +centroid = (0.6916799690446872, -1.5491969871835483) +description = Marrowbone township, IL +station = ('kdec', 0.0038090090330934545) +zone = ('ilz054', 0.0019323853438030607) + +[fips1713973508] +centroid = (0.69099272819842184, -1.5472597240737123) +description = Sullivan township, IL +station = ('kdec', 0.0051227834425003876) +zone = ('ilz054', 0.00098004844747458914) + +[fips1713981451] +centroid = (0.68916671237510785, -1.5452647778320976) +description = Whitley township, IL +station = ('kmto', 0.0036600822762243692) +zone = ('ilz054', 0.002923772908415544) + +[fips1714000] +centroid = (0.73020301592104608, -1.530336872020035) +description = Chicago city, IL +station = ('kmdw', 0.0012967494969674492) +zone = ('ilz014', 0.0017540311361782742) + +[fips1714026] +centroid = (0.72449812800822244, -1.529513565305284) +description = Chicago Heights city, IL +station = ('kigq', 0.0014331168508869884) +zone = ('inz001', 0.0037015335732513066) + +[fips1714065] +centroid = (0.72786120294389023, -1.5320406798891244) +description = Chicago Ridge village, IL +station = ('kmdw', 0.0014473261817959319) +zone = ('ilz014', 0.0024316045757125158) + +[fips17141] +centroid = (0.73376929954152381, -1.5589311596608186) +description = Ogle County, IL +station = ('krfd', 0.0039673595083102127) +zone = ('ilz008', 1.5778521481213755e-05) + +[fips1714108784] +centroid = (0.73424151582394326, -1.5647979094084725) +description = Brookville township, IL +station = ('kfep', 0.0032420372893127223) +zone = ('ilz007', 0.0036042281902478779) + +[fips1714109421] +centroid = (0.73278793580971235, -1.5632827367249384) +description = Buffalo township, IL +station = ('ksqi', 0.0043024820210442018) +zone = ('ilz008', 0.0033764577508624233) + +[fips1714110253] +centroid = (0.73594020987832443, -1.5579440363424757) +description = Byron township, IL +station = ('krfd', 0.0021964327575884554) +zone = ('ilz008', 0.0022798176181074627) + +[fips1714117] +centroid = (0.71411881202624472, -1.5621155477876674) +description = Chillicothe city, IL +station = ('kc75', 0.0023641415832326147) +zone = ('ilz030', 0.0029171746432034686) + +[fips1714119382] +centroid = (0.73186319055883564, -1.5532927687924958) +description = Dement township, IL +station = ('krpj', 0.0012612287108715061) +zone = ('ilz011', 0.0030233672745547733) + +[fips1714121501] +centroid = (0.73265445302851984, -1.5648079799582564) +description = Eagle Point township, IL +station = ('ksqi', 0.0039815175302261403) +zone = ('ilz007', 0.0039327040104079197) + +[fips1714126298] +centroid = (0.73192157182231488, -1.5553729220081929) +description = Flagg township, IL +station = ('krpj', 0.00089745618836949809) +zone = ('ilz008', 0.0032399859209328004) + +[fips1714127078] +centroid = (0.73589170717841135, -1.5644841341155489) +description = Forreston township, IL +station = ('kfep', 0.0016185756556134163) +zone = ('ilz002', 0.003299696289129901) + +[fips1714130718] +centroid = (0.73160413133796209, -1.5611022096239595) +description = Grand Detour township, IL +station = ('ksqi', 0.0041135985646497735) +zone = ('ilz008', 0.0027078801639024192) + +[fips1714140650] +centroid = (0.7314726731387019, -1.5572858203216711) +description = Lafayette township, IL +station = ('krpj', 0.0019404813259379457) +zone = ('ilz008', 0.0026178140496460342) + +[fips1714142470] +centroid = (0.73580477232836949, -1.560236788114358) +description = Leaf River township, IL +station = ('kfep', 0.002865815660550258) +zone = ('ilz008', 0.0022384639190171679) + +[fips1714143549] +centroid = (0.73425574025734708, -1.5632673080143509) +description = Lincoln township, IL +station = ('kfep', 0.0030878627217905607) +zone = ('ilz008', 0.003247261350723498) + +[fips1714145382] +centroid = (0.73331678802635913, -1.5531389878321027) +description = Lynnville township, IL +station = ('krpj', 0.0024426453417538754) +zone = ('ilz011', 0.0035461302251932644) + +[fips1714146903] +centroid = (0.73460655143699793, -1.5571360885251424) +description = Marion township, IL +station = ('krfd', 0.0024496494782429061) +zone = ('ilz008', 0.0015720460833663923) + +[fips1714147358] +centroid = (0.7359105741876254, -1.5621087759101697) +description = Maryland township, IL +station = ('kfep', 0.0017630783465094415) +zone = ('ilz008', 0.0031702509883902658) + +[fips1714150049] +centroid = (0.73498260007763261, -1.5534969548616868) +description = Monroe township, IL +station = ('krfd', 0.0019449902863851202) +zone = ('ilz003', 0.004389866097065956) + +[fips1714151011] +centroid = (0.73427675402154113, -1.5612272799181575) +description = Mount Morris township, IL +station = ('kfep', 0.0034964224638188842) +zone = ('ilz008', 0.00176821378269262) + +[fips1714156504] +centroid = (0.73273883969785381, -1.5591011896365481) +description = Oregon-Nashua township, IL +station = ('krpj', 0.0036227830230023245) +zone = ('ilz008', 0.0010515182657523893) + +[fips1714159897] +centroid = (0.73266427923220856, -1.561286184780412) +description = Pine Creek township, IL +station = ('ksqi', 0.0048452137591824297) +zone = ('ilz008', 0.0020714544900528775) + +[fips1714159975] +centroid = (0.73271491123380883, -1.5573241477520448) +description = Pine Rock township, IL +station = ('krpj', 0.002482381070694538) +zone = ('ilz008', 0.0016074565870436714) + +[fips1714165182] +centroid = (0.73452005291926903, -1.5592427183855921) +description = Rockvale township, IL +station = ('krfd', 0.0036775380240029738) +zone = ('ilz008', 0.00076997046098972917) + +[fips1714168302] +centroid = (0.73490711458748381, -1.555341209375684) +description = Scott township, IL +station = ('krfd', 0.0016326261405355403) +zone = ('ilz008', 0.0028981580109220359) + +[fips1714174535] +centroid = (0.73145916429029145, -1.5591849305340586) +description = Taylor township, IL +station = ('krpj', 0.0033428967303379916) +zone = ('ilz008', 0.0023314806869828746) + +[fips1714181399] +centroid = (0.73327748321160424, -1.5552571892254929) +description = White Rock township, IL +station = ('krpj', 0.0021446611550292325) +zone = ('ilz008', 0.0027822838495651079) + +[fips1714183492] +centroid = (0.73170462739629194, -1.5633103827402903) +description = Woosung township, IL +station = ('ksqi', 0.0032746907011425947) +zone = ('ilz008', 0.0038567291495767687) + +[fips1714273] +centroid = (0.69471862217899438, -1.5302211741439202) +description = Chrisman city, IL +station = ('kprg', 0.0018195543650597369) +zone = ('ilz057', 0.0023909167808491253) + +[fips1714286] +centroid = (0.66271670134673921, -1.5542680936850954) +description = Christopher city, IL +station = ('kmwa', 0.0039158948586590567) +zone = ('ilz081', 0.0018109530326682799) + +[fips17143] +centroid = (0.71184997126511462, -1.5667359579164719) +description = Peoria County, IL +station = ('kpia', 0.0023607108927111487) +zone = ('ilz029', 0.00010391800596908005) + +[fips1714300477] +centroid = (0.71433167238181805, -1.5653686669804596) +description = Akron township, IL +station = ('kpia', 0.0045650611611489332) +zone = ('ilz029', 0.0026184233114647532) + +[fips1714308316] +centroid = (0.71271052330610307, -1.5696708512267479) +description = Brimfield township, IL +station = ('kpia', 0.0044475258340306405) +zone = ('ilz029', 0.002460537755380107) + +[fips1714314130] +centroid = (0.71435001579225643, -1.5619826933250056) +description = Chillicothe township, IL +station = ('kc75', 0.0021242109845217758) +zone = ('ilz030', 0.0026850525383129539) + +[fips1714323711] +centroid = (0.71145917459230068, -1.5696923187765477) +description = Elmwood township, IL +station = ('kpia', 0.0037551325510824115) +zone = ('ilz029', 0.0023748025226462224) + +[fips1714332304] +centroid = (0.71442112050598272, -1.5636987708587364) +description = Hallock township, IL +station = ('kc75', 0.0031115239021008191) +zone = ('ilz029', 0.003356064023574269) + +[fips1714335645] +centroid = (0.70852813845967144, -1.5655600423329408) +description = Hollis township, IL +station = ('kpia', 0.0012585632039967985) +zone = ('ilz037', 0.0029127334561143961) + +[fips1714338765] +centroid = (0.71280983254054153, -1.56748679856068) +description = Jubilee township, IL +station = ('kpia', 0.0034754539888404356) +zone = ('ilz029', 0.0011380282554753563) + +[fips1714339818] +centroid = (0.71115269477565046, -1.5655550332379875) +description = Kickapoo township, IL +station = ('kpia', 0.0014022776292487147) +zone = ('ilz029', 0.0010835591717562214) + +[fips1714343523] +centroid = (0.70979701027916398, -1.5655849830879518) +description = Limestone township, IL +station = ('kpia', 0.00024117821902049923) +zone = ('ilz029', 0.0022286836528451568) + +[fips1714344342] +centroid = (0.70982416760232492, -1.5676198799161445) +description = Logan township, IL +station = ('kpia', 0.0017836976216437182) +zone = ('ilz029', 0.0022005284496038635) + +[fips1714348099] +centroid = (0.71290641906134689, -1.5633608576622577) +description = Medina township, IL +station = ('kpia', 0.0034561063816621598) +zone = ('ilz029', 0.0026602969356982072) + +[fips1714349113] +centroid = (0.71429296097900874, -1.5696700832818773) +description = Millbrook township, IL +station = ('kpia', 0.0056196693541696943) +zone = ('ilz029', 0.0033400293532250907) + +[fips1714351] +centroid = (0.73032494462259046, -1.5316885248059493) +description = Cicero town, IL +station = ('kmdw', 0.0010750164878578939) +zone = ('ilz014', 0.0007508700203475) + +[fips1714359013] +centroid = (0.71113107014621824, -1.5639912880413707) +description = Peoria City township, IL +station = ('kpia', 0.0016729907346621439) +zone = ('ilz029', 0.0021206553098241454) + +[fips1714361938] +centroid = (0.71451498431315497, -1.5674966945775388) +description = Princeville township, IL +station = ('kpia', 0.0050382109920497319) +zone = ('ilz028', 0.0027059453544098474) + +[fips1714362510] +centroid = (0.71283479074884504, -1.5655226922869483) +description = Radnor township, IL +station = ('kpia', 0.0030735540160372558) +zone = ('ilz029', 0.0012542262567708199) + +[fips1714363771] +centroid = (0.7112751296226778, -1.5632727708949097) +description = Richwoods township, IL +station = ('kpia', 0.00213647545715695) +zone = ('ilz029', 0.0025984980086337412) + +[fips1714365715] +centroid = (0.71117981719222645, -1.5674687518562143) +description = Rosefield township, IL +station = ('kpia', 0.0021851580328196107) +zone = ('ilz029', 0.00096178538721364867) + +[fips1714375289] +centroid = (0.70822408465068154, -1.5676359020386779) +description = Timber township, IL +station = ('kpia', 0.0023680236076962921) +zone = ('ilz029', 0.0037446573086358324) + +[fips1714376121] +centroid = (0.70974222439394374, -1.5696113354992551) +description = Trivoli township, IL +station = ('kpia', 0.0032935076952419905) +zone = ('ilz029', 0.0031273597000867539) + +[fips1714380749] +centroid = (0.70932601572722076, -1.5644347238444249) +description = West Peoria township, IL +station = ('kpia', 0.0007718175613019002) +zone = ('ilz037', 0.0028419288576210346) + +[fips1714442] +centroid = (0.69838760097265928, -1.5485205673786453) +description = Cisco village, IL +station = ('kdec', 0.0036983809159020233) +zone = ('ilz044', 0.001774002800095412) + +[fips1714455] +centroid = (0.67219228584203428, -1.543518034863409) +description = Cisne village, IL +station = ('kfwc', 0.0023824119946280952) +zone = ('ilz076', 0.0014793057110465348) + +[fips1714468] +centroid = (0.70802244676219872, -1.534010755188898) +description = Cissna Park village, IL +station = ('ktip', 0.0058105523169891746) +zone = ('ilz033', 0.0032799954832187046) + +[fips17145] +centroid = (0.66469791184714055, -1.5597743456757496) +description = Perry County, IL +station = ('ksar', 0.0046707961653879391) +zone = ('ilz080', 2.16172250162403e-05) + +[fips1714533] +centroid = (0.67576445122209106, -1.5354517513792221) +description = Claremont village, IL +station = ('koly', 0.0027443298107534225) +zone = ('ilz072', 0.0015030041998279351) + +[fips1714572] +centroid = (0.72952052237034637, -1.5351434215135646) +description = Clarendon Hills village, IL +station = ('kord', 0.00326964787591667) +zone = ('ilz014', 0.0019659727527655802) + +[fips1714590342] +centroid = (0.66625286058432742, -1.5594582840015061) +description = Beaucoup precinct, IL +station = ('ksar', 0.004798064711437339) +zone = ('ilz080', 0.0015819068862073962) + +[fips1714590936] +centroid = (0.66420260485871707, -1.5628528621301723) +description = Cutler precinct, IL +station = ('ksar', 0.0026620052848115774) +zone = ('ilz080', 0.0024903502317146814) + +[fips1714591010] +centroid = (0.66360959433876709, -1.5574727450845598) +description = Du Quoin No. 1 precinct, IL +station = ('kmdh', 0.0041701013514137235) +zone = ('ilz080', 0.0020924365286807902) + +[fips1714591011] +centroid = (0.66337598201838754, -1.5574651005424358) +description = Du Quoin No. 2 precinct, IL +station = ('kmdh', 0.0039370188074342597) +zone = ('ilz080', 0.0022268366948215925) + +[fips1714591012] +centroid = (0.66322874604268933, -1.557351671594349) +description = Du Quoin No. 3 precinct, IL +station = ('kmdh', 0.0037955122512854547) +zone = ('ilz080', 0.0023867596539543195) + +[fips1714591013] +centroid = (0.66290942060274449, -1.5584427292696481) +description = Du Quoin No. 4 precinct, IL +station = ('kmdh', 0.0035142446433949551) +zone = ('ilz080', 0.002054933305785568) + +[fips1714591014] +centroid = (0.66355178903394108, -1.5581638082018869) +description = Du Quoin No. 5 precinct, IL +station = ('kmdh', 0.0041240471150379952) +zone = ('ilz080', 0.0016884088048110483) + +[fips1714591015] +centroid = (0.66337837311946279, -1.5563219796955499) +description = Du Quoin No. 6 precinct, IL +station = ('kmdh', 0.0040836409453153671) +zone = ('ilz081', 0.0034021034989886768) + +[fips1714591016] +centroid = (0.66368302034039839, -1.556694956556701) +description = Du Quoin No. 7 precinct, IL +station = ('kmdh', 0.0043139070395593919) +zone = ('ilz080', 0.002607070178257388) + +[fips1714591017] +centroid = (0.66338907198777763, -1.5573305531103998) +description = Du Quoin No. 8 precinct, IL +station = ('kmdh', 0.0039566322186151007) +zone = ('ilz080', 0.002305897722093535) + +[fips1714591018] +centroid = (0.6638100803099436, -1.5578348834510558) +description = Du Quoin No. 9 precinct, IL +station = ('kmdh', 0.0043676886113863892) +zone = ('ilz080', 0.001744815930141375) + +[fips1714591019] +centroid = (0.66305098425837372, -1.5565126918229151) +description = Du Quoin No. 10 precinct, IL +station = ('kmdh', 0.0037283968756222211) +zone = ('ilz080', 0.0030299525312078189) + +[fips1714591020] +centroid = (0.6634746280277104, -1.5574542620477811) +description = Du Quoin No. 11 precinct, IL +station = ('kmdh', 0.0040359643921141393) +zone = ('ilz080', 0.0021772185587276439) + +[fips1714591021] +centroid = (0.66254838179367703, -1.5568181244420141) +description = Du Quoin No. 12 precinct, IL +station = ('kmdh', 0.0031829983605193646) +zone = ('ilz080', 0.0031482727766047034) + +[fips1714592468] +centroid = (0.66461591627888195, -1.5600702662504253) +description = Pinckneyville No. 1 precinct, IL +station = ('ksar', 0.0044668014799571151) +zone = ('ilz080', 0.00026200881762742479) + +[fips1714592469] +centroid = (0.66381395494088302, -1.5595190214594754) +description = Pinckneyville No. 2 precinct, IL +station = ('kmdh', 0.0045984425524485777) +zone = ('ilz080', 0.00089249576776313105) + +[fips1714592470] +centroid = (0.66314072908851129, -1.5608825424843036) +description = Pinckneyville No. 3 precinct, IL +station = ('kmdh', 0.004466791925905835) +zone = ('ilz080', 0.0017856509170267453) + +[fips1714592471] +centroid = (0.66428802127230968, -1.5613267462322284) +description = Pinckneyville No. 4 precinct, IL +station = ('ksar', 0.0036509515067890226) +zone = ('ilz080', 0.0013039234661746018) + +[fips1714592472] +centroid = (0.66527915884793232, -1.5615435859384963) +description = Pinckneyville No. 5 precinct, IL +station = ('ksar', 0.0031872795304173237) +zone = ('ilz080', 0.0015302367903708937) + +[fips1714592473] +centroid = (0.66523770727819742, -1.5597826534429891) +description = Pinckneyville No. 6 precinct, IL +station = ('ksar', 0.0045633779005030718) +zone = ('ilz080', 0.0005506004900148458) + +[fips1714592474] +centroid = (0.66480050230057286, -1.5591321692307709) +description = Pinckneyville No. 7 precinct, IL +station = ('ksar', 0.005140976571486558) +zone = ('ilz080', 0.00049929631164832573) + +[fips1714592475] +centroid = (0.66542718022179392, -1.5606601351777218) +description = Pinckneyville No. 8 precinct, IL +station = ('ksar', 0.0038555390201764133) +zone = ('ilz080', 0.0010293542283838926) + +[fips1714593330] +centroid = (0.66432142687419304, -1.5571616925052694) +description = Sunfield precinct, IL +station = ('kmdh', 0.0048967434575280643) +zone = ('ilz080', 0.0020703393808113361) + +[fips1714593348] +centroid = (0.66618065631317236, -1.5624369501694222) +description = Swanwick precinct, IL +station = ('ksar', 0.0024628562386564356) +zone = ('ilz080', 0.0025876863056225993) + +[fips1714593384] +centroid = (0.66582113594055414, -1.5564746610985143) +description = Tamaroa No. 1 precinct, IL +station = ('kmvn', 0.0051938002672820456) +zone = ('ilz080', 0.0028152561342594021) + +[fips1714593386] +centroid = (0.66605300293168146, -1.5576458468397725) +description = Tamaroa No. 2 precinct, IL +station = ('ksar', 0.0062086290290337054) +zone = ('ilz080', 0.0021458016244609562) + +[fips1714593762] +centroid = (0.66291109611882637, -1.5624755219458912) +description = Willisville precinct, IL +station = ('ksar', 0.0037801564901434261) +zone = ('ilz080', 0.0027864863183899914) + +[fips17147] +centroid = (0.69828975781479241, -1.5462278156067628) +description = Piatt County, IL +station = ('kdec', 0.0047844187291411402) +zone = ('ilz044', 2.8630874122953357e-05) + +[fips1714705157] +centroid = (0.69685108291237352, -1.5451913169238809) +description = Bement township, IL +station = ('kcmi', 0.0040187242416271285) +zone = ('ilz044', 0.0016562086524081765) + +[fips1714706808] +centroid = (0.70195741015822588, -1.5454501841585371) +description = Blue Ridge township, IL +station = ('kcmi', 0.0049594649966439404) +zone = ('ilz044', 0.0036897961567088334) + +[fips1714712275] +centroid = (0.6955863998830859, -1.5477483813576856) +description = Cerro Gordo township, IL +station = ('kdec', 0.0025350129879311832) +zone = ('ilz044', 0.0029721391906763458) + +[fips1714715] +centroid = (0.67519505500692045, -1.5419721967449178) +description = Clay City village, IL +station = ('kfoa', 0.001470304592428264) +zone = ('ilz071', 0.0022687716019958236) + +[fips1714730523] +centroid = (0.70009102486931307, -1.5470249249294412) +description = Goose Creek township, IL +station = ('kdec', 0.0057492446730095827) +zone = ('ilz044', 0.0018849614301608816) + +[fips1714750257] +centroid = (0.69843788390840922, -1.5453694277740471) +description = Monticello township, IL +station = ('kcmi', 0.003705412025285727) +zone = ('ilz044', 0.00065302437595227429) + +[fips1714767] +centroid = (0.69866514323031137, -1.5875165635757098) +description = Clayton village, IL +station = ('kuin', 0.0036543283364351307) +zone = ('ilz095', 0.0031717864580830929) + +[fips1714767587] +centroid = (0.70024077411913421, -1.5449019238806081) +description = Sangamon township, IL +station = ('kcmi', 0.0036677461432779723) +zone = ('ilz044', 0.0021707397694948147) + +[fips1714776888] +centroid = (0.69501375735550652, -1.5454424872565355) +description = Unity township, IL +station = ('kdec', 0.0042853802898891805) +zone = ('ilz054', 0.0032863951634408066) + +[fips1714781906] +centroid = (0.69787854078973, -1.5477489922229237) +description = Willow Branch township, IL +station = ('kdec', 0.0036513775772607018) +zone = ('ilz044', 0.0012591495137748581) + +[fips1714845] +centroid = (0.69488203735685861, -1.5632622291062275) +description = Clear Lake village, IL +station = ('kspi', 0.0016658087840001486) +zone = ('ilz051', 0.0015548413069367336) + +[fips17149] +centroid = (0.69158856615176023, -1.5863128972570717) +description = Pike County, IL +station = ('kppq', 0.00150733283354254) +zone = ('ilz097', 5.8477328419811402e-05) + +[fips1714902791] +centroid = (0.69001112012051524, -1.5885851065036583) +description = Atlas township, IL +station = ('kppq', 0.0037152761857815295) +zone = ('ilz097', 0.0023546037755657681) + +[fips1714903974] +centroid = (0.69311901046624902, -1.5898856211424894) +description = Barry township, IL +station = ('kuin', 0.004104246057901194) +zone = ('ilz097', 0.0032015919148341049) + +[fips1714912359] +centroid = (0.69459150984957152, -1.5820092992940893) +description = Chambersburg township, IL +station = ('kppq', 0.0033103372492698335) +zone = ('ilz096', 0.0032166850540755582) + +[fips1714914390] +centroid = (0.69165150272458709, -1.591561346663914) +description = Cincinnati township, IL +station = ('kuin', 0.0053184231540945905) +zone = ('moz035', 0.0048053065394448053) + +[fips1714919577] +centroid = (0.69156537072600111, -1.5877791483616723) +description = Derry township, IL +station = ('kppq', 0.0026305381760694615) +zone = ('ilz097', 0.0011663558096643009) + +[fips1714919694] +centroid = (0.69137668318056811, -1.5821577220936789) +description = Detroit township, IL +station = ('kppq', 0.0017710404590107344) +zone = ('ilz049', 0.0024312672292278732) + +[fips1714923] +centroid = (0.72434651125610161, -1.5763249539065614) +description = Cleveland village, IL +station = ('kmli', 0.0027670636578669659) +zone = ('ilz015', 0.0033321540108433834) + +[fips1714924972] +centroid = (0.69451672249112351, -1.5858615551125061) +description = Fairmount township, IL +station = ('kppq', 0.0029190011303129224) +zone = ('ilz097', 0.0029898079238966486) + +[fips1714926415] +centroid = (0.69317786296862627, -1.5824643764432544) +description = Flint township, IL +station = ('kppq', 0.0019986657811685853) +zone = ('ilz049', 0.0028907429700519567) + +[fips1714931784] +centroid = (0.69304099424868482, -1.583752656324029) +description = Griggsville township, IL +station = ('kppq', 0.0013047558213545574) +zone = ('ilz097', 0.0024463217692563474) + +[fips1714932070] +centroid = (0.69319243646788042, -1.5876314236937834) +description = Hadley township, IL +station = ('kppq', 0.0028491640532850339) +zone = ('ilz097', 0.0019561006659598789) + +[fips1714932863] +centroid = (0.68989430523367923, -1.583827251696259) +description = Hardin township, IL +station = ('kppq', 0.0019812941391799993) +zone = ('ilz097', 0.0024999163219394951) + +[fips1714936] +centroid = (0.71444134887201338, -1.534737196130163) +description = Clifton village, IL +station = ('kikk', 0.002653456051349925) +zone = ('ilz033', 0.0035717329394622951) + +[fips1714939935] +centroid = (0.69315365525190109, -1.5918463763840573) +description = Kinderhook township, IL +station = ('kuin', 0.0038153629533359728) +zone = ('ilz095', 0.0047708673195754553) + +[fips1714943003] +centroid = (0.69333794456761921, -1.5936001704829237) +description = Levee township, IL +station = ('kuin', 0.0039010836550747636) +zone = ('moz027', 0.0044649344995462631) + +[fips1714947241] +centroid = (0.68996088954464274, -1.5857819855519077) +description = Martinsburg township, IL +station = ('kppq', 0.0021578652621595516) +zone = ('ilz097', 0.0016254353292581053) + +[fips1714950192] +centroid = (0.68997179785246776, -1.5817612007409183) +description = Montezuma township, IL +station = ('kppq', 0.0027432534024420096) +zone = ('ilz049', 0.0028403325755364723) + +[fips1714952259] +centroid = (0.69153952239977912, -1.583831615019389) +description = Newburg township, IL +station = ('kppq', 0.00051261469871981117) +zone = ('ilz097', 0.0018744906621365523) + +[fips1714952818] +centroid = (0.69305383987197955, -1.5857669757203405) +description = New Salem township, IL +station = ('kppq', 0.0016242690864289567) +zone = ('ilz097', 0.0015586741489736077) + +[fips1714958356] +centroid = (0.68853137762079686, -1.5820644691517449) +description = Pearl township, IL +station = ('kppq', 0.0037504166198760848) +zone = ('ilz058', 0.0038097491677507866) + +[fips1714959169] +centroid = (0.69462374608085586, -1.5836296280650557) +description = Perry township, IL +station = ('kppq', 0.0028537287171357829) +zone = ('ilz096', 0.0028484332927793741) + +[fips1714960235] +centroid = (0.69151852608887765, -1.5858153387939131) +description = Pittsfield township, IL +station = ('kppq', 0.0011476752815182533) +zone = ('ilz097', 0.00034736855699065165) + +[fips1714960547] +centroid = (0.68835635600340683, -1.5857285784767965) +description = Pleasant Hill township, IL +station = ('kppq', 0.0036249726813024617) +zone = ('ilz097', 0.003213489563703739) + +[fips1714960651] +centroid = (0.6916050769664841, -1.58941797762271) +description = Pleasant Vale township, IL +station = ('kppq', 0.0038858496700841906) +zone = ('ilz097', 0.0024292114186666713) + +[fips1714965936] +centroid = (0.6885160361766719, -1.5875437907120409) +description = Ross township, IL +station = ('kppq', 0.0041140848180245687) +zone = ('ilz097', 0.003183614516619305) + +[fips1714971617] +centroid = (0.68850540712152719, -1.5836606949257415) +description = Spring Creek township, IL +station = ('kppq', 0.0033697850077578557) +zone = ('ilz097', 0.0036417265937788942) + +[fips1715001] +centroid = (0.70069213371699246, -1.5526887103383806) +description = Clinton city, IL +station = ('kdec', 0.0056174659990032814) +zone = ('ilz043', 0.00091873923908792168) + +[fips17151] +centroid = (0.65305279582515419, -1.5453559538322217) +description = Pope County, IL +station = ('km30', 0.0049654327479649535) +zone = ('ilz090', 0.00027686494968864271) + +[fips1715170] +centroid = (0.72046893071023832, -1.5407391565349688) +description = Coal City village, IL +station = ('kc09', 0.0031377090629386628) +zone = ('ilz021', 0.0018468146412594813) + +[fips1715191116] +centroid = (0.6552629062569546, -1.546423990614687) +description = Eddyville No. 6 precinct, IL +station = ('khsb', 0.0047303964902828278) +zone = ('ilz090', 0.0023628240779352805) + +[fips1715191386] +centroid = (0.65205778361859223, -1.545744603750056) +description = Golconda No. 1 precinct, IL +station = ('km30', 0.0039905240230182415) +zone = ('ilz090', 0.00091630467459846818) + +[fips1715191404] +centroid = (0.65405698846358162, -1.5442844263912523) +description = Golconda No. 2 precinct, IL +station = ('khsb', 0.0059513216384159537) +zone = ('ilz090', 0.0015555912108632265) + +[fips1715191422] +centroid = (0.65209230623119663, -1.5443846257436094) +description = Golconda No. 3 precinct, IL +station = ('km30', 0.0047848820318257667) +zone = ('ilz090', 0.0013605421146062793) + +[fips1715191746] +centroid = (0.64959526367036835, -1.5448142210856952) +description = Jefferson No. 4 precinct, IL +station = ('km30', 0.0033757574000184095) +zone = ('kyz007', 0.0021985117184815245) + +[fips1715193654] +centroid = (0.65279780322143777, -1.5473580559237696) +description = Webster No. 5 precinct, IL +station = ('km30', 0.0039990193830214942) +zone = ('ilz090', 0.001336717830411749) + +[fips1715209] +centroid = (0.68564896636112826, -1.5586307186833803) +description = Coalton village, IL +station = ('ktaz', 0.0043652544698387467) +zone = ('ilz060', 0.0025563035293296519) + +[fips1715235] +centroid = (0.7234167918168567, -1.5787999704122295) +description = Coal Valley village, IL +station = ('kmli', 0.00076027646691855292) +zone = ('ilz015', 0.0014602774753872082) + +[fips1715261] +centroid = (0.69869718747537801, -1.5910463523615281) +description = Coatsburg village, IL +station = ('kuin', 0.0018089483421930654) +zone = ('ilz095', 0.00086582467082672203) + +[fips17153] +centroid = (0.64953501490458954, -1.5555727796608385) +description = Pulaski County, IL +station = ('kcir', 0.0029306399363648919) +zone = ('ilz093', 0.00012625624801322497) + +[fips1715300] +centroid = (0.65508126984169956, -1.5577823315872783) +description = Cobden village, IL +station = ('kmdh', 0.0043627138231872144) +zone = ('ilz088', 0.0010855044460228278) + +[fips1715352] +centroid = (0.68221864388938092, -1.560145821553744) +description = Coffeen city, IL +station = ('k3lf', 0.0040648787610400479) +zone = ('ilz060', 0.0027680939422472651) + +[fips1715378] +centroid = (0.70558978939747652, -1.5846219175579845) +description = Colchester city, IL +station = ('kmqb', 0.0024637376038600116) +zone = ('ilz035', 0.0015978430646647352) + +[fips1715390108] +centroid = (0.64818519471438962, -1.5556575852091932) +description = America precinct, IL +station = ('kcir', 0.0017667628692129838) +zone = ('ilz093', 0.0014775125468954561) + +[fips1715391476] +centroid = (0.65017541111373134, -1.5535744300271825) +description = Grand Chain precinct, IL +station = ('km30', 0.0038310789212961248) +zone = ('ilz093', 0.0016582883820677231) + +[fips1715391800] +centroid = (0.650554583893727, -1.5528931582069594) +description = Karnak precinct, IL +station = ('km30', 0.0034685223782082463) +zone = ('ilz093', 0.0022993545335918885) + +[fips1715392178] +centroid = (0.6474561881391242, -1.5562212916510023) +description = Mound City precinct, IL +station = ('kcir', 0.00094324152122884323) +zone = ('ilz093', 0.0022674051865389454) + +[fips1715392196] +centroid = (0.64800214458244054, -1.5571304511116586) +description = Mounds precinct, IL +station = ('kcir', 0.0011060759201796907) +zone = ('ilz092', 0.0020125420136860666) + +[fips1715392322] +centroid = (0.64933906678946818, -1.5550265614181344) +description = Olmsted precinct, IL +station = ('kcir', 0.0029822834207609474) +zone = ('ilz093', 0.00052910190531914986) + +[fips1715392412] +centroid = (0.65091680952668596, -1.5549047723429306) +description = Perks precinct, IL +station = ('kcir', 0.0044077536695379324) +zone = ('ilz093', 0.0013586132688590436) + +[fips1715392952] +centroid = (0.64950206308831182, -1.5568614958739262) +description = Pulaski precinct, IL +station = ('kcir', 0.0026172836202063873) +zone = ('ilz093', 0.0010528919291618701) + +[fips1715393474] +centroid = (0.65040918051374341, -1.5564859708320671) +description = Ullin precinct, IL +station = ('kcir', 0.0035550086836089534) +zone = ('ilz093', 0.0010538693537610292) + +[fips1715393564] +centroid = (0.64868907126944042, -1.5569156359873231) +description = Villa Ridge precinct, IL +station = ('kcir', 0.0018041962008617436) +zone = ('ilz093', 0.0014558012940411131) + +[fips1715393744] +centroid = (0.65130744911986738, -1.5563289435592653) +description = Wetaug precinct, IL +station = ('kcir', 0.0044618217721596586) +zone = ('ilz093', 0.001758597690900791) + +[fips1715469] +centroid = (0.73133899837129179, -1.567309804721235) +description = Coleta village, IL +station = ('ksqi', 0.0031803840520794077) +zone = ('ilz009', 0.0029522978425142385) + +[fips1715495] +centroid = (0.70802045708685135, -1.546642680369962) +description = Colfax village, IL +station = ('kbmi', 0.0042733568929110366) +zone = ('ilz038', 0.0033401505763680623) + +[fips17155] +centroid = (0.71905715133159265, -1.558550852416809) +description = Putnam County, IL +station = ('kvys', 0.0032810296731294302) +zone = ('ilz018', 0.00019165891050825455) + +[fips1715531030] +centroid = (0.72014580045252419, -1.557007771918536) +description = Granville township, IL +station = ('kvys', 0.001748973876360512) +zone = ('ilz018', 0.0014049272031796309) + +[fips1715534124] +centroid = (0.71935942490474558, -1.5586538268426768) +description = Hennepin township, IL +station = ('kvys', 0.0030890332190265514) +zone = ('ilz018', 0.00031785936408289446) + +[fips1715546123] +centroid = (0.71809025637928026, -1.557391622180927) +description = Magnolia township, IL +station = ('kc75', 0.0029731030311997472) +zone = ('ilz018', 0.0012775448230551427) + +[fips1715568627] +centroid = (0.71885333178154465, -1.5606697519419004) +description = Senachwine township, IL +station = ('kc75', 0.0029665206374986587) +zone = ('ilz018', 0.0017852172925114625) + +[fips1715599] +centroid = (0.67503794046765586, -1.5708966657735937) +description = Collinsville city, IL +station = ('kcps', 0.0027505606816295766) +zone = ('ilz100', 0.0030024109851170743) + +[fips1715664] +centroid = (0.72393662068127074, -1.5767081933037144) +description = Colona city, IL +station = ('kmli', 0.0023799018804033447) +zone = ('ilz015', 0.0029967113708931994) + +[fips17157] +centroid = (0.66421148858460977, -1.5676758526252559) +description = Randolph County, IL +station = ('ksar', 0.0023311824376427339) +zone = ('ilz079', 9.5379223819735704e-05) + +[fips1715790306] +centroid = (0.66628514917548942, -1.567808008956217) +description = Baldwin precinct, IL +station = ('ksar', 0.0018449599582924402) +zone = ('ilz079', 0.0021512483239417533) + +[fips1715790504] +centroid = (0.66294204080646424, -1.5662696233936315) +description = Bremen precinct, IL +station = ('ksar', 0.0029389737213785486) +zone = ('ilz079', 0.0016664041756234886) + +[fips1715790522] +centroid = (0.66351257148564868, -1.570514473573992) +description = Brewerville precinct, IL +station = ('ksar', 0.0045493604735955375) +zone = ('ilz079', 0.0022665686414121296) + +[fips1715790702] +centroid = (0.66436923144240512, -1.5673374158300015) +description = Central precinct, IL +station = ('ksar', 0.0020308846698557036) +zone = ('ilz079', 0.00039906837142624337) + +[fips1715790738] +centroid = (0.66169072699924703, -1.5673675053063061) +description = Chester precinct, IL +station = ('ksar', 0.0043775108773331812) +zone = ('ilz079', 0.0024619665263433035) + +[fips1715790864] +centroid = (0.66627218137914701, -1.5641581938777389) +description = Coulterville precinct, IL +station = ('ksar', 0.001172555119947949) +zone = ('ilz079', 0.0035417455837994521) + +[fips1715791170] +centroid = (0.66342218088368787, -1.5689405880144212) +description = Ellis Grove precinct, IL +station = ('ksar', 0.0035984603174250428) +zone = ('ilz079', 0.0011793388962019254) + +[fips1715791206] +centroid = (0.6648121785532688, -1.5696823878531039) +description = Evansville precinct, IL +station = ('ksar', 0.0034152097597730541) +zone = ('ilz079', 0.0016673882814201787) + +[fips1715791818] +centroid = (0.66151352372029193, -1.5695754864364191) +description = Kaskaskia precinct, IL +station = ('ksar', 0.0053574901869817629) +zone = ('ilz079', 0.0029909897105680318) + +[fips1715792358] +centroid = (0.66330381265381766, -1.567307378713575) +description = Palestine precinct, IL +station = ('ksar', 0.0028799414540747032) +zone = ('ilz079', 0.00089998700709568232) + +[fips1715792394] +centroid = (0.6635692248731685, -1.5641072477168732) +description = Percy precinct, IL +station = ('ksar', 0.0025194404983499515) +zone = ('ilz079', 0.0029221278209528388) + +[fips1715792520] +centroid = (0.66466492512427799, -1.5725475727130553) +description = Prairie du Rocher precinct, IL +station = ('ksar', 0.0056367806692345854) +zone = ('moz075', 0.0035391871661277553) + +[fips1715792970] +centroid = (0.66647160269947991, -1.5699938593114144) +description = Red Bud precinct, IL +station = ('ksar', 0.0035641076454922932) +zone = ('ilz079', 0.002930249830460422) + +[fips1715793042] +centroid = (0.66075036105156493, -1.5657082905996051) +description = Rockwood precinct, IL +station = ('ksar', 0.0050751700643409028) +zone = ('moz076', 0.003084213935494668) + +[fips1715793060] +centroid = (0.66532949414355991, -1.5706687432265758) +description = Ruma precinct, IL +station = ('ksar', 0.0040672744213911096) +zone = ('ilz079', 0.0025914691251950977) + +[fips1715793222] +centroid = (0.66516742286921959, -1.565131319655481) +description = Sparta precinct, IL +station = ('ksar', 0.00072945375095918462) +zone = ('ilz079', 0.0023036593065812075) + +[fips1715793240] +centroid = (0.66348928879342706, -1.5650811414394861) +description = Steeleville precinct, IL +station = ('ksar', 0.0023617361867716846) +zone = ('ilz079', 0.0021968138639585754) + +[fips1715793438] +centroid = (0.66654801321413215, -1.5657018852412505) +description = Tilden precinct, IL +station = ('ksar', 0.00073593012599423846) +zone = ('ilz079', 0.0029007828834305056) + +[fips1715793600] +centroid = (0.66506781692880834, -1.5676844920050532) +description = Walsh precinct, IL +station = ('ksar', 0.0018513611261484718) +zone = ('ilz079', 0.00093469046266158381) + +[fips1715793834] +centroid = (0.66205892165824765, -1.5647647132460996) +description = Wine Hill precinct, IL +station = ('ksar', 0.0038134975149703809) +zone = ('ilz079', 0.0031356929172008823) + +[fips1715807] +centroid = (0.65986753860932112, -1.5547066774728289) +description = Colp village, IL +station = ('kmwa', 0.0014596700061739361) +zone = ('ilz085', 0.0024502489051707135) + +[fips1715833] +centroid = (0.67121971856965279, -1.5745661507127418) +description = Columbia city, IL +station = ('kcps', 0.0020989484288665948) +zone = ('moz064', 0.0031273636734651792) + +[fips1715846] +centroid = (0.69792446040235001, -1.5907845704270214) +description = Columbus village, IL +station = ('kuin', 0.001204633213592246) +zone = ('ilz095', 0.00057982645110972886) + +[fips17159] +centroid = (0.67564400605041097, -1.5373854540173839) +description = Richland County, IL +station = ('koly', 0.0012482719633698145) +zone = ('ilz072', 1.7619550385398307e-05) + +[fips1715907289] +centroid = (0.6741197751080592, -1.5353397536011215) +description = Bonpas township, IL +station = ('kajg', 0.0033124128365179567) +zone = ('ilz072', 0.0022112406499483084) + +[fips1715914546] +centroid = (0.67555560512379742, -1.5353722341785012) +description = Claremont township, IL +station = ('koly', 0.002818870346906662) +zone = ('ilz072', 0.0015648731605155022) + +[fips1715918862] +centroid = (0.6743261253855225, -1.5396190740342088) +description = Decker township, IL +station = ('koly', 0.0015830302778864793) +zone = ('ilz072', 0.0022023340852038542) + +[fips1715919486] +centroid = (0.67721296978149115, -1.5394664973509995) +description = Denver township, IL +station = ('koly', 0.0014408993421636818) +zone = ('ilz072', 0.0022538342028206649) + +[fips1715929028] +centroid = (0.67716663128985066, -1.5354080308814595) +description = German township, IL +station = ('koly', 0.0030832013121145549) +zone = ('ilz072', 0.002149909227454999) + +[fips1715946006] +centroid = (0.6739652087495025, -1.5374282145840581) +description = Madison township, IL +station = ('koly', 0.0022150200688514365) +zone = ('ilz072', 0.0016941758645852385) + +[fips1715950] +centroid = (0.72896227880909581, -1.5667008069853368) +description = Como CDP, IL +station = ('ksqi', 0.0013164639186458362) +zone = ('ilz009', 0.001944736166388499) + +[fips1715953156] +centroid = (0.6756015421897098, -1.539616595666671) +description = Noble township, IL +station = ('koly', 0.00055316345541898244) +zone = ('ilz072', 0.0017514322921046604) + +[fips1715955925] +centroid = (0.67562478997534636, -1.5374168873972125) +description = Olney township, IL +station = ('koly', 0.0012270162259163128) +zone = ('ilz072', 4.81433803903962e-05) + +[fips1715961847] +centroid = (0.67734685398841177, -1.5374336774646167) +description = Preston township, IL +station = ('koly', 0.0019355983991067233) +zone = ('ilz072', 0.0016886696872768893) + +[fips1715989] +centroid = (0.72769801465882877, -1.5548455358681177) +description = Compton village, IL +station = ('krpj', 0.0034752033921146815) +zone = ('ilz010', 0.0029373565192662141) + +[fips1716054] +centroid = (0.69491975392199423, -1.5772706256551694) +description = Concord village, IL +station = ('kijx', 0.0019187887960683645) +zone = ('ilz050', 0.0028699434834474971) + +[fips17161] +centroid = (0.72376018534718667, -1.5807831531346856) +description = Rock Island County, IL +station = ('kmli', 0.0007942626502426939) +zone = ('ilz015', 6.5213069092041767e-05) + +[fips1716101439] +centroid = (0.72317860673383716, -1.5833520858074037) +description = Andalusia township, IL +station = ('kmli', 0.0026650717544879532) +zone = ('ilz015', 0.0020667550596635076) + +[fips1716106301] +centroid = (0.72320740466649502, -1.5811849453817874) +description = Blackhawk township, IL +station = ('kmli', 0.0010535435368979494) +zone = ('ilz015', 0.00064728672740212753) + +[fips1716107549] +centroid = (0.72206669237397658, -1.5814212629625073) +description = Bowling township, IL +station = ('kmli', 0.0018265992461889303) +zone = ('ilz015', 0.0017612377796067512) + +[fips1716109512] +centroid = (0.72247244651848019, -1.5851904585618219) +description = Buffalo Prairie township, IL +station = ('kmli', 0.0041458944201183826) +zone = ('ilz024', 0.0034802263296975704) + +[fips1716110955] +centroid = (0.72627740391416806, -1.5741032544885278) +description = Canoe Creek township, IL +station = ('kcwi', 0.0042836694805568542) +zone = ('ilz016', 0.0045928546777401769) + +[fips1716115248] +centroid = (0.72321262320095836, -1.5790514374508569) +description = Coal Valley township, IL +station = ('kmli', 0.00061471097000801854) +zone = ('ilz015', 0.0013440333015830874) + +[fips1716115326] +centroid = (0.72641640193579671, -1.5752972516831096) +description = Coe township, IL +station = ('kcwi', 0.0038408664519260123) +zone = ('ilz015', 0.0048472680348026235) + +[fips1716116379] +centroid = (0.7280645512550401, -1.5757462027266003) +description = Cordova township, IL +station = ('kcwi', 0.002163919706263338) +zone = ('iaz066', 0.0045432465419620264) + +[fips1716119] +centroid = (0.7088927028338281, -1.5569061763027774) +description = Congerville village, IL +station = ('kbmi', 0.0045342147553162635) +zone = ('ilz031', 0.0029970930061365463) + +[fips1716120825] +centroid = (0.72222232338337689, -1.5879190190479271) +description = Drury township, IL +station = ('kmut', 0.0022254156714716904) +zone = ('iaz067', 0.0024974666911133786) + +[fips1716122632] +centroid = (0.72208428529283664, -1.5834482709024811) +description = Edgington township, IL +station = ('kmli', 0.0030438204449394603) +zone = ('ilz015', 0.0026456590428674139) + +[fips1716132577] +centroid = (0.72482855374221, -1.5774226961928957) +description = Hampton township, IL +station = ('kmli', 0.0022669750355034054) +zone = ('ilz015', 0.0026836158737740964) + +[fips1716149880] +centroid = (0.72440656803566283, -1.5796427550014325) +description = Moline township, IL +station = ('kmli', 0.00097604833593121934) +zone = ('ilz015', 0.0010330669332836264) + +[fips1716161236] +centroid = (0.72648132818397093, -1.57655779828207) +description = Port Byron township, IL +station = ('kcwi', 0.003648317460923799) +zone = ('iaz068', 0.0038299857920643145) + +[fips1716165091] +centroid = (0.72442655205559803, -1.5806559709920929) +description = Rock Island township, IL +station = ('kmli', 0.0011719049571998141) +zone = ('ilz015', 0.00068466051134589067) + +[fips1716166300] +centroid = (0.72204976268023224, -1.5793706407177541) +description = Rural township, IL +station = ('kmli', 0.0014284287545291952) +zone = ('ilz015', 0.0019643479609340059) + +[fips1716170993] +centroid = (0.72400765558182689, -1.5790846859731076) +description = South Moline township, IL +station = ('kmli', 0.00078864132678692811) +zone = ('ilz015', 0.0012384427830017632) + +[fips1716171201] +centroid = (0.72400662583756825, -1.5807423473367739) +description = South Rock Island township, IL +station = ('kmli', 0.00089794511239295576) +zone = ('ilz015', 0.0002659244822787669) + +[fips1716184246] +centroid = (0.72526554928032416, -1.5754013431196985) +description = Zuma township, IL +station = ('kmli', 0.0037758636507483228) +zone = ('ilz016', 0.0039213077204472684) + +[fips1716210] +centroid = (0.70760061813528419, -1.5483594036755162) +description = Cooksville village, IL +station = ('kbmi', 0.0029070163209440713) +zone = ('ilz038', 0.0019803496491834823) + +[fips17163] +centroid = (0.67143161899413761, -1.5695492192311764) +description = St. Clair County, IL +station = ('kblv', 0.0017580196131426334) +zone = ('ilz101', 2.6738347348692283e-06) + +[fips1716304858] +centroid = (0.67221474822950733, -1.5705559600503118) +description = Belleville township, IL +station = ('kblv', 0.0019572865697741614) +zone = ('ilz101', 0.0011110984771480193) + +[fips1716310968] +centroid = (0.67427484761209888, -1.5721661484583243) +description = Canteen township, IL +station = ('kcps', 0.0015152771394344479) +zone = ('moz064', 0.0022706791558926211) + +[fips1716311657] +centroid = (0.67402620800685975, -1.5704128255983558) +description = Caseyville township, IL +station = ('kblv', 0.0021201815790586782) +zone = ('ilz101', 0.0026798472727685586) + +[fips1716312210] +centroid = (0.67324892562448413, -1.57338981625019) +description = Centreville township, IL +station = ('kcps', 0.00013497736675381936) +zone = ('moz064', 0.0016971129277102905) + +[fips1716322268] +centroid = (0.67397522693940903, -1.573054747940392) +description = East St. Louis township, IL +station = ('kcps', 0.00090467479436574186) +zone = ('moz064', 0.0016139315040079334) + +[fips1716324205] +centroid = (0.67095774464892854, -1.5667209655381973) +description = Engelmann township, IL +station = ('kblv', 0.00218757282770504) +zone = ('ilz101', 0.0022632956241434134) + +[fips1716325726] +centroid = (0.66949898100681915, -1.5665709195824034) +description = Fayetteville township, IL +station = ('kblv', 0.0035557099918950316) +zone = ('ilz101', 0.0030295727107218034) + +[fips1716327819] +centroid = (0.6708831841832833, -1.568515146555955) +description = Freeburg township, IL +station = ('kblv', 0.0019590595646535535) +zone = ('ilz101', 0.00097737361755864671) + +[fips1716342509] +centroid = (0.67385698088258639, -1.5667244038368238) +description = Lebanon township, IL +station = ('kblv', 0.0015355859060430881) +zone = ('ilz101', 0.0032782377227022026) + +[fips1716342873] +centroid = (0.6678631886186801, -1.5686086962038619) +description = Lenzburg township, IL +station = ('ksar', 0.0031604849824691324) +zone = ('ilz101', 0.0036451652557113346) + +[fips1716346968] +centroid = (0.66779855907647867, -1.5665628387079666) +description = Marissa township, IL +station = ('ksar', 0.0021332940069152535) +zone = ('ilz079', 0.0037806310754525778) + +[fips1716347436] +centroid = (0.67243464226196614, -1.566698834763282) +description = Mascoutah township, IL +station = ('kblv', 0.0012211235279684617) +zone = ('ilz101', 0.0024433392883697804) + +[fips1716349399] +centroid = (0.6705283238397679, -1.572302929911803) +description = Millstadt township, IL +station = ('kcps', 0.0027293224297971559) +zone = ('ilz102', 0.0027422231117152588) + +[fips1716352129] +centroid = (0.66931191661759037, -1.5684602035911022) +description = New Athens township, IL +station = ('kblv', 0.003519439837319695) +zone = ('ilz101', 0.0022859300944851608) + +[fips1716355262] +centroid = (0.67393346121040876, -1.5684338665726898) +description = O'Fallon township, IL +station = ('kblv', 0.0011268806124954641) +zone = ('ilz101', 0.0026472391097468397) + +[fips1716361600] +centroid = (0.66938773372029703, -1.5705914425940048) +description = Prairie Du Long township, IL +station = ('kblv', 0.0039220084090755107) +zone = ('ilz101', 0.0022033908966685167) + +[fips1716366] +centroid = (0.7274013435925748, -1.5763964600460156) +description = Cordova village, IL +station = ('kcwi', 0.0027328868180965006) +zone = ('iaz066', 0.0047353572387535446) + +[fips1716366729] +centroid = (0.67254855990224383, -1.5704444684176944) +description = St. Clair township, IL +station = ('kblv', 0.0017937985837420583) +zone = ('ilz101', 0.0013180410485977866) + +[fips1716369550] +centroid = (0.67245638906444605, -1.5685899862742805) +description = Shiloh Valley township, IL +station = ('kblv', 0.00048900624558080238) +zone = ('ilz101', 0.0012677065108877685) + +[fips1716370265] +centroid = (0.67077403129186364, -1.5705307051360355) +description = Smithton township, IL +station = ('kblv', 0.0027557517585329021) +zone = ('ilz101', 0.00101421899342487) + +[fips1716372741] +centroid = (0.67461344148698588, -1.5736235681969097) +description = Stites township, IL +station = ('kcps', 0.001507023130744539) +zone = ('moz064', 0.0011685301995219164) + +[fips1716372988] +centroid = (0.67228768553894824, -1.5723882066990555) +description = Stookey township, IL +station = ('kcps', 0.0011528583534106049) +zone = ('ilz101', 0.002382403606741179) + +[fips1716373456] +centroid = (0.67223532566138844, -1.5740202989891805) +description = Sugar Loaf township, IL +station = ('kcps', 0.00099951436569712575) +zone = ('moz064', 0.0022428504451102913) + +[fips1716405] +centroid = (0.71544875291626442, -1.548619981332839) +description = Cornell village, IL +station = ('kpnt', 0.001820950383905263) +zone = ('ilz032', 0.0028657030185404303) + +[fips1716431] +centroid = (0.69704310403667791, -1.5603518925785271) +description = Cornland CDP, IL +station = ('kaaa', 0.0039581294140353827) +zone = ('ilz042', 0.0032929889320692739) + +[fips1716470] +centroid = (0.73195094571362596, -1.5479568783901287) +description = Cortland town, IL +station = ('kdkb', 0.00024176481420825512) +zone = ('ilz011', 0.0012847647316053632) + +[fips17165] +centroid = (0.65889064292039479, -1.5454023272304471) +description = Saline County, IL +station = ('khsb', 0.0010441475674164505) +zone = ('ilz086', 6.5079046923979247e-05) + +[fips1716509122] +centroid = (0.65929383143089815, -1.5474546249912824) +description = Brushy township, IL +station = ('khsb', 0.0016903434354052481) +zone = ('ilz086', 0.0017220034831153773) + +[fips1716511404] +centroid = (0.6578742155239109, -1.5472627958531957) +description = Carrier Mills township, IL +station = ('khsb', 0.0024977495225164733) +zone = ('ilz086', 0.0018529061506946198) + +[fips1716516535] +centroid = (0.65857596005626029, -1.5434211167300458) +description = Cottage township, IL +station = ('khsb', 0.0021158072858871542) +zone = ('ilz086', 0.0015468720671759468) + +[fips1716521709] +centroid = (0.66005659267389716, -1.543363992103628) +description = East Eldorado township, IL +station = ('khsb', 0.0016718552934562195) +zone = ('ilz086', 0.0019244841528596973) + +[fips1716528274] +centroid = (0.66038993310773553, -1.5472421486081447) +description = Galatia township, IL +station = ('khsb', 0.0014690413282387232) +zone = ('ilz086', 0.0021093146473742906) + +[fips1716533149] +centroid = (0.65853894162282545, -1.5453343117494971) +description = Harrisburg township, IL +station = ('khsb', 0.0013986863478702128) +zone = ('ilz086', 0.00038047479634813154) + +[fips1716537205] +centroid = (0.6569617573909684, -1.5454109491569521) +description = Independence township, IL +station = ('khsb', 0.0029718986903526346) +zone = ('ilz086', 0.0019587182974393335) + +[fips1716544485] +centroid = (0.6612479195147235, -1.5453033845151516) +description = Long Branch township, IL +station = ('khsb', 0.0013216144869372479) +zone = ('ilz086', 0.0023286154213410762) + +[fips1716550803] +centroid = (0.65690491201723078, -1.5434355680562524) +description = Mountain township, IL +station = ('khsb', 0.0034309734569346597) +zone = ('ilz086', 0.0025102868807843396) + +[fips1716562601] +centroid = (0.65996873279935175, -1.5453958346056298) +description = Raleigh township, IL +station = ('khsb', 7.1578605324290148e-05) +zone = ('ilz086', 0.001050693571104714) + +[fips1716563030] +centroid = (0.66119381430791158, -1.5433344611326845) +description = Rector township, IL +station = ('khsb', 0.0021082615255587672) +zone = ('ilz086', 0.0027666296337571111) + +[fips1716572897] +centroid = (0.65656614360941867, -1.5472676478685161) +description = Stonefort township, IL +station = ('khsb', 0.0036536804356527858) +zone = ('ilz086', 0.0028094078023979362) + +[fips1716574509] +centroid = (0.66124729119619274, -1.5470117826001739) +description = Tate township, IL +station = ('khsb', 0.0017889254551743401) +zone = ('ilz086', 0.0026809051157660681) + +[fips1716613] +centroid = (0.66645535368414388, -1.5638903381974354) +description = Coulterville village, IL +station = ('ksar', 0.0014398572288629695) +zone = ('ilz079', 0.0038202064172155282) + +[fips1716691] +centroid = (0.72541910334791482, -1.5310972421619586) +description = Country Club Hills city, IL +station = ('kigq', 0.0025562681353777476) +zone = ('ilz022', 0.0039032045393691231) + +[fips17167] +centroid = (0.69387969476743816, -1.5649025418971294) +description = Sangamon County, IL +station = ('kspi', 0.0016581466493567692) +zone = ('ilz051', 5.5729972334310379e-05) + +[fips1716702928] +centroid = (0.69057034106614668, -1.5665750909193155) +description = Auburn township, IL +station = ('kspi', 0.0050443783584491258) +zone = ('ilz051', 0.0035973913102710898) + +[fips1716703506] +centroid = (0.69218442155839111, -1.564564192368338) +description = Ball township, IL +station = ('kspi', 0.003373146377341514) +zone = ('ilz051', 0.0017403416864631212) + +[fips1716709486] +centroid = (0.69641975969432812, -1.5608258541901987) +description = Buffalo Hart township, IL +station = ('kspi', 0.0035284797242595483) +zone = ('ilz042', 0.0039698967689460194) + +[fips1716711046] +centroid = (0.6940111180601134, -1.5650512614026919) +description = Capital township, IL +station = ('kspi', 0.0015119086773230364) +zone = ('ilz051', 0.00018855473082902199) + +[fips1716711579] +centroid = (0.6953544107189108, -1.5692112187682354) +description = Cartwright township, IL +station = ('kspi', 0.0030305821149917709) +zone = ('ilz048', 0.0035564180510997629) + +[fips1716712697] +centroid = (0.69220992081876276, -1.5665065343862972) +description = Chatham township, IL +station = ('kspi', 0.0034379487630371943) +zone = ('ilz051', 0.0021291050031486251) + +[fips1716714858] +centroid = (0.69516495522860688, -1.5626125477454653) +description = Clear Lake township, IL +station = ('kspi', 0.0020696615843408014) +zone = ('ilz051', 0.0021232475791863334) + +[fips1716716223] +centroid = (0.69368217585599001, -1.5610307558443828) +description = Cooper township, IL +station = ('ktaz', 0.0039802652773409065) +zone = ('ilz051', 0.0029399066812390196) + +[fips1716716574] +centroid = (0.69218852308213319, -1.5628507502817774) +description = Cotton Hill township, IL +station = ('ktaz', 0.0036466881093064024) +zone = ('ilz051', 0.0023059995455282779) + +[fips1716718160] +centroid = (0.69355703574862193, -1.5667123785182775) +description = Curran township, IL +station = ('kspi', 0.0022489378368472364) +zone = ('ilz051', 0.0014803529079178382) + +[fips1716720058] +centroid = (0.69060168717951254, -1.5648699391467022) +description = Divernon township, IL +station = ('ktaz', 0.0045168863996728334) +zone = ('ilz051', 0.0033098724120244408) + +[fips1716725323] +centroid = (0.69672662348341374, -1.564842136051718) +description = Fancy Creek township, IL +station = ('kspi', 0.0012564557294229024) +zone = ('ilz048', 0.0026875595036926388) + +[fips1716728651] +centroid = (0.6953887413452976, -1.5667639006377962) +description = Gardner township, IL +station = ('kspi', 0.001154170856506721) +zone = ('ilz051', 0.0020881039968635934) + +[fips1716737140] +centroid = (0.69571110365814093, -1.5579180658432059) +description = Illiopolis township, IL +station = ('kaaa', 0.0052795294554372997) +zone = ('ilz053', 0.004025009843930465) + +[fips1716737881] +centroid = (0.69399760921170295, -1.5690681192228644) +description = Island Grove township, IL +station = ('kspi', 0.0032885090845897955) +zone = ('ilz050', 0.0041176727326022499) + +[fips1716741976] +centroid = (0.69537828682307812, -1.5591982299429588) +description = Lanesville township, IL +station = ('ktaz', 0.0053779059632825272) +zone = ('ilz051', 0.0045781087611317167) + +[fips1716744186] +centroid = (0.69205486576801556, -1.5681161468356564) +description = Loami township, IL +station = ('kspi', 0.0040931244105553589) +zone = ('ilz051', 0.0031286152993649998) + +[fips1716747618] +centroid = (0.6920105518583074, -1.5693225707745126) +description = Maxwell township, IL +station = ('kspi', 0.0046885939955346448) +zone = ('ilz050', 0.0040113464053721792) + +[fips1716748034] +centroid = (0.69515642056856453, -1.5608567639712514) +description = Mechanicsburg township, IL +station = ('kspi', 0.003407017973475512) +zone = ('ilz051', 0.003306178573474814) + +[fips1716752181] +centroid = (0.69319868474660251, -1.5688698672731303) +description = New Berlin township, IL +station = ('kspi', 0.003607558641148206) +zone = ('ilz051', 0.003177548609435768) + +[fips1716758187] +centroid = (0.69067842930672263, -1.5635022816915469) +description = Pawnee township, IL +station = ('ktaz', 0.0034885043767560061) +zone = ('ilz051', 0.0033937995376743103) + +[fips1716764772] +centroid = (0.69368994257116134, -1.5626567045755408) +description = Rochester township, IL +station = ('kspi', 0.002712148347064063) +zone = ('ilz051', 0.0016954149574792674) + +[fips1716772013] +centroid = (0.69535877404204083, -1.5648485239567802) +description = Springfield township, IL +station = ('kspi', 0.00035839566627536232) +zone = ('ilz051', 0.0014472855784526605) + +[fips1716774340] +centroid = (0.69057957385788982, -1.5685599840644386) +description = Talkington township, IL +station = ('kspi', 0.0055456020052456192) +zone = ('ilz051', 0.0043919446502346466) + +[fips1716781776] +centroid = (0.69682661339626051, -1.5628529319433424) +description = Williams township, IL +station = ('kspi', 0.0022719582606375139) +zone = ('ilz051', 0.0032913132406432346) + +[fips1716783310] +centroid = (0.69343631132426164, -1.56498392660015) +description = Woodside township, IL +station = ('kspi', 0.0020889485613872897) +zone = ('ilz051', 0.00048738011903121646) + +[fips1716873] +centroid = (0.72909745455966279, -1.5337119897275415) +description = Countryside city, IL +station = ('kmdw', 0.001637595316580211) +zone = ('ilz014', 0.0013763305658797604) + +[fips17169] +centroid = (0.70087020966057356, -1.581503293437351) +description = Schuyler County, IL +station = ('kmqb', 0.0063632774631123693) +zone = ('ilz040', 2.9008240182156703e-05) + +[fips1716903350] +centroid = (0.6989183730514833, -1.5796376062801392) +description = Bainbridge township, IL +station = ('kijx', 0.0059350425956037432) +zone = ('ilz040', 0.0024462177146031294) + +[fips1716906132] +centroid = (0.7022868934144173, -1.5856788365931149) +description = Birmingham township, IL +station = ('kmqb', 0.0055986133872985401) +zone = ('ilz040', 0.0034621588879896596) + +[fips1716908693] +centroid = (0.70225270241437077, -1.5836422467955478) +description = Brooklyn township, IL +station = ('kmqb', 0.0050823450414004207) +zone = ('ilz040', 0.0021112324624452962) + +[fips1716908966] +centroid = (0.70067518656995564, -1.5775641027688925) +description = Browning township, IL +station = ('kijx', 0.0067850497504994018) +zone = ('ilz047', 0.0035413692296836843) + +[fips1716909395] +centroid = (0.70059280702926152, -1.581607821206253) +description = Buena Vista township, IL +station = ('kmqb', 0.0066340408354340153) +zone = ('ilz040', 0.00030214714690107123) + +[fips1716910708] +centroid = (0.70072243263280709, -1.583673174029893) +description = Camden township, IL +station = ('kmqb', 0.0065882794835529883) +zone = ('ilz040', 0.0016451515537494244) + +[fips1716927793] +centroid = (0.69973775277541694, -1.5783093758127864) +description = Frederick township, IL +station = ('kijx', 0.0061129612764786534) +zone = ('ilz047', 0.0032026052765171602) + +[fips1716934462] +centroid = (0.7010913254235086, -1.5755568170494663) +description = Hickory township, IL +station = ('kijx', 0.0069162550771260916) +zone = ('ilz047', 0.0034371157259358649) + +[fips1716936776] +centroid = (0.70079324064056059, -1.5858095268475041) +description = Huntsville township, IL +station = ('kuin', 0.0059368442587903261) +zone = ('ilz040', 0.0032708409057726011) + +[fips1716944069] +centroid = (0.7022239917481754, -1.5816460439168718) +description = Littleton township, IL +station = ('kmqb', 0.0050051123999235152) +zone = ('ilz040', 0.0013375181044560478) + +[fips1716954794] +centroid = (0.7022088771968531, -1.579659213456279) +description = Oakland township, IL +station = ('kmqb', 0.0053605013278977282) +zone = ('ilz040', 0.0019460903289573812) + +[fips1716966352] +centroid = (0.70065148499871366, -1.5793033931816749) +description = Rushville township, IL +station = ('kmqb', 0.0069186483721315282) +zone = ('ilz040', 0.0017198334232878746) + +[fips1716983362] +centroid = (0.69903628749574798, -1.5816061282368785) +description = Woodstock township, IL +station = ('kijx', 0.0070331005276769686) +zone = ('ilz040', 0.0018539043096328191) + +[fips1717055] +centroid = (0.68502818765277884, -1.550888246135316) +description = Cowden village, IL +station = ('k1h2', 0.0054027698802677441) +zone = ('ilz061', 0.0025807487664835497) + +[fips1717077] +centroid = (0.72256901558599296, -1.5806263178481015) +description = Coyne Center CDP, IL +station = ('kmli', 0.0010620502588111391) +zone = ('ilz015', 0.0011749222904774803) + +[fips1717094] +centroid = (0.65840121769155058, -1.5500318130713622) +description = Crab Orchard CDP, IL +station = ('kmwa', 0.0026747500961195082) +zone = ('ilz085', 0.0016553941451586387) + +[fips17171] +centroid = (0.69179580654714201, -1.5791347943759322) +description = Scott County, IL +station = ('kijx', 0.0040055495024643607) +zone = ('ilz049', 0.00013255006969037808) + +[fips1717185] +centroid = (0.65893349075353136, -1.5543688340895205) +description = Crainville village, IL +station = ('kmwa', 0.00079853525691412058) +zone = ('ilz085', 0.0018265585393012396) + +[fips1717190072] +centroid = (0.69050141801398546, -1.5781338131433285) +description = Alsey precinct, IL +station = ('kijx', 0.0044240263154461945) +zone = ('ilz049', 0.0015970529533158263) + +[fips1717190468] +centroid = (0.69217124432253851, -1.5803888308967826) +description = Bloomfield precinct, IL +station = ('kppq', 0.0030926868632162518) +zone = ('ilz049', 0.0010370827860860436) + +[fips1717191224] +centroid = (0.69351060999051894, -1.5798477439220793) +description = Exeter-Bluffs precinct, IL +station = ('kijx', 0.0038179341201805732) +zone = ('ilz049', 0.0016947011890142481) + +[fips1717191368] +centroid = (0.69064249297742419, -1.5801065064369799) +description = Glasgow precinct, IL +station = ('kppq', 0.0035004371714596784) +zone = ('ilz049', 0.001503465860185012) + +[fips1717192016] +centroid = (0.69097263945873133, -1.5768142744156506) +description = Manchester precinct, IL +station = ('kijx', 0.00351951933284717) +zone = ('ilz049', 0.0019876974329743934) + +[fips1717192052] +centroid = (0.69331094432409079, -1.5782181125461996) +description = Merritt precinct, IL +station = ('kijx', 0.0026541906968586952) +zone = ('ilz049', 0.0015398235000116894) + +[fips1717192250] +centroid = (0.69372818273507264, -1.5809602516938857) +description = Naples-Bluffs precinct, IL +station = ('kppq', 0.003245611600630281) +zone = ('ilz049', 0.0023136346408212959) + +[fips1717193780] +centroid = (0.69235270620486844, -1.5776467790155593) +description = Winchester No. 1 precinct, IL +station = ('kijx', 0.0027648044560573989) +zone = ('ilz049', 0.0011855685757345621) + +[fips1717193798] +centroid = (0.69225046481728647, -1.5789325456222112) +description = Winchester No. 2 precinct, IL +station = ('kijx', 0.0036187441264796806) +zone = ('ilz049', 0.00034805618335263615) + +[fips1717193816] +centroid = (0.69146480485450124, -1.5783603568802371) +description = Winchester No. 3 precinct, IL +station = ('kijx', 0.0037774989576319852) +zone = ('ilz049', 0.00071920138191898856) + +[fips1717289] +centroid = (0.65659019424651122, -1.5505059317626664) +description = Creal Springs city, IL +station = ('kmwa', 0.0032081816957087918) +zone = ('ilz085', 0.0023124553081092635) + +[fips17173] +centroid = (0.68739663435432019, -1.5498325139240769) +description = Shelby County, IL +station = ('k1h2', 0.0065568716582703919) +zone = ('ilz061', 0.00014010343889346013) + +[fips1717302466] +centroid = (0.68769913482027589, -1.5450212520415667) +description = Ash Grove township, IL +station = ('kmto', 0.0036361780657050741) +zone = ('ilz054', 0.0043701555851607954) + +[fips1717306002] +centroid = (0.68605143928663803, -1.5450400841441958) +description = Big Spring township, IL +station = ('k1h2', 0.0041434161605813603) +zone = ('ilz066', 0.004421123428162102) + +[fips1717314637] +centroid = (0.68616193608158182, -1.5489852787452814) +description = Clarksburg township, IL +station = ('k1h2', 0.0051667458070028061) +zone = ('ilz061', 0.0015351835266570614) + +[fips1717315417] +centroid = (0.685943717565205, -1.5527263396370534) +description = Cold Spring township, IL +station = ('ktaz', 0.0063588251982910141) +zone = ('ilz061', 0.0026553352256401103) + +[fips1717320851] +centroid = (0.68496275525912154, -1.5509242522777844) +description = Dry Point township, IL +station = ('k1h2', 0.005388349216247027) +zone = ('ilz061', 0.0026513971310917965) + +[fips1717326337] +centroid = (0.69043532239521244, -1.552842229499386) +description = Flat Branch township, IL +station = ('ktaz', 0.004817106693575878) +zone = ('ilz061', 0.0036851182926943542) + +[fips1717334345] +centroid = (0.68482869651927591, -1.552844376254366) +description = Herrick township, IL +station = ('k1h2', 0.0066087555674334006) +zone = ('ilz061', 0.0034899210262122711) + +[fips1717335567] +centroid = (0.6850179949299473, -1.548979187546192) +description = Holland township, IL +station = ('k1h2', 0.0042726915807682992) +zone = ('ilz061', 0.0025969852372264295) + +[fips1717341690] +centroid = (0.68610943657768186, -1.5509285981476217) +description = Lakewood township, IL +station = ('k1h2', 0.0061124539875218051) +zone = ('ilz061', 0.0015875896394095216) + +[fips1717351245] +centroid = (0.69170429893445995, -1.552871062338629) +description = Moweaqua township, IL +station = ('kdec', 0.0037967552511228978) +zone = ('ilz053', 0.0039850603753053696) + +[fips1717355145] +centroid = (0.6855332684850135, -1.5548098613382069) +description = Oconee township, IL +station = ('ktaz', 0.0055468566264454469) +zone = ('ilz061', 0.0042454770997177394) + +[fips1717355457] +centroid = (0.68915405873803082, -1.5489266182291219) +description = Okaw township, IL +station = ('kdec', 0.0062782927629417649) +zone = ('ilz061', 0.0018286860242503701) + +[fips1717358590] +centroid = (0.69156551035234137, -1.5509895799516866) +description = Penn township, IL +station = ('kdec', 0.0036573644977399627) +zone = ('ilz054', 0.003317657126534672) + +[fips1717359663] +centroid = (0.69042050454986292, -1.5509696482916286) +description = Pickaway township, IL +station = ('kdec', 0.0048024461875974594) +zone = ('ilz061', 0.0030207919364529244) + +[fips1717361522] +centroid = (0.68558157919870877, -1.5470266004455233) +description = Prairie township, IL +station = ('k1h2', 0.003935834525392908) +zone = ('ilz061', 0.0029671496761556121) + +[fips1717363615] +centroid = (0.68748248710022586, -1.547050633629323) +description = Richland township, IL +station = ('k1h2', 0.0057544328694569581) +zone = ('ilz061', 0.0022395899315499515) + +[fips1717363836] +centroid = (0.68903181587722118, -1.5509491232196253) +description = Ridge township, IL +station = ('kdec', 0.0061912164714672362) +zone = ('ilz061', 0.0017118548557046073) + +[fips1717365637] +centroid = (0.6875746928446087, -1.5510912104740302) +description = Rose township, IL +station = ('k1h2', 0.007275055539275709) +zone = ('ilz061', 0.00088599278755238208) + +[fips1717366313] +centroid = (0.68894893019104397, -1.5528708179925337) +description = Rural township, IL +station = ('ktaz', 0.0048929330047460719) +zone = ('ilz061', 0.002679877414960953) + +[fips1717369199] +centroid = (0.68762305591818151, -1.5488413065352844) +description = Shelbyville township, IL +station = ('k1h2', 0.0063721033182671857) +zone = ('ilz061', 0.00086372207231405203) + +[fips1717369927] +centroid = (0.68505754409079744, -1.5450412186082096) +description = Sigel township, IL +station = ('k1h2', 0.0031500605255275118) +zone = ('ilz066', 0.0034531116275729233) + +[fips1717375588] +centroid = (0.6901659308251672, -1.5491424980043009) +description = Todds Point township, IL +station = ('kdec', 0.0052583721666621406) +zone = ('ilz054', 0.0025407900212336232) + +[fips1717375861] +centroid = (0.68759650946025863, -1.5530503949192713) +description = Tower Hill township, IL +station = ('ktaz', 0.005228339786858706) +zone = ('ilz061', 0.0023990236695353834) + +[fips1717382335] +centroid = (0.68894776082044518, -1.5472937579941259) +description = Windsor township, IL +station = ('kmto', 0.0052120280259933963) +zone = ('ilz061', 0.0025074405340179771) + +[fips1717406] +centroid = (0.71160297226937252, -1.5333817385264792) +description = Crescent City village, IL +station = ('kikk', 0.0052296265016388201) +zone = ('ilz033', 0.00060086936740192981) + +[fips1717458] +centroid = (0.72559918642013554, -1.5378274935570366) +description = Crest Hill city, IL +station = ('klot', 0.00064211183744400401) +zone = ('ilz022', 0.0028358792053482795) + +[fips1717471] +centroid = (0.73187807821735529, -1.5528912907046597) +description = Creston village, IL +station = ('krpj', 0.0015267675670965896) +zone = ('ilz011', 0.0027369765159134534) + +[fips1717497] +centroid = (0.72685282151525799, -1.5313532470566413) +description = Crestwood village, IL +station = ('kmdw', 0.0024073906853012759) +zone = ('ilz014', 0.0035349435011592465) + +[fips17175] +centroid = (0.71727635698919778, -1.5672604817165738) +description = Stark County, IL +station = ('kc75', 0.0055768523642014027) +zone = ('ilz028', 6.1237342200689318e-05) + +[fips1717523] +centroid = (0.72327358755173066, -1.5293355417215806) +description = Crete village, IL +station = ('kigq', 0.0021139728617924126) +zone = ('inz001', 0.0032066179697421487) + +[fips1717523646] +centroid = (0.71892386053661783, -1.567492575600504) +description = Elmira township, IL +station = ('kc75', 0.0063376260567929764) +zone = ('ilz028', 0.0017175270794357023) + +[fips1717524478] +centroid = (0.71590363807921165, -1.5675073759925608) +description = Essex township, IL +station = ('kpia', 0.0063656721327716081) +zone = ('ilz028', 0.0013244771827493308) + +[fips1717530627] +centroid = (0.71743085353458425, -1.5695165990274567) +description = Goshen township, IL +station = ('kpia', 0.0083090786173230236) +zone = ('ilz028', 0.0017126082694080319) + +[fips1717549] +centroid = (0.7093387391774677, -1.5638073303382105) +description = Creve Coeur village, IL +station = ('kpia', 0.0011891266182176689) +zone = ('ilz037', 0.0026118414500169171) + +[fips1717556783] +centroid = (0.71900234799307994, -1.565444710975969) +description = Osceola township, IL +station = ('kc75', 0.0050795417707630687) +zone = ('ilz028', 0.0022510088911526587) + +[fips1717558603] +centroid = (0.71734726971670637, -1.5653268488915817) +description = Penn township, IL +station = ('kc75', 0.0042011623122611714) +zone = ('ilz028', 0.0014643220640555936) + +[fips1717575796] +centroid = (0.71741114876732925, -1.5674153622343958) +description = Toulon township, IL +station = ('kc75', 0.0057235255000382774) +zone = ('ilz028', 0.00022753752087848234) + +[fips1717577174] +centroid = (0.71589131605469258, -1.5654980656912025) +description = Valley township, IL +station = ('kc75', 0.0040828971469669363) +zone = ('ilz028', 0.0018766511019820686) + +[fips1717580489] +centroid = (0.71579108179575068, -1.5693585071038112) +description = West Jersey township, IL +station = ('kpia', 0.0067717682372040637) +zone = ('ilz028', 0.0021277597017466646) + +[fips17177] +centroid = (0.73914215601744804, -1.5649668223734803) +description = Stephenson County, IL +station = ('kfep', 0.0021029486067387932) +zone = ('ilz002', 5.6728233358958333e-05) + +[fips1717709226] +centroid = (0.74032229529776916, -1.564398438449276) +description = Buckeye township, IL +station = ('kfep', 0.0030559835943104172) +zone = ('ilz002', 0.0012054302839003728) + +[fips1717718355] +centroid = (0.74032901481538926, -1.5628588137029218) +description = Dakota township, IL +station = ('kfep', 0.0030283135425527028) +zone = ('ilz002', 0.001901105167002246) + +[fips1717724413] +centroid = (0.73876924896946705, -1.5669334768279202) +description = Erin township, IL +station = ('kfep', 0.0029121668890334856) +zone = ('ilz002', 0.0015531227660871107) + +[fips1717726506] +centroid = (0.73727132013894281, -1.5654485332470309) +description = Florence township, IL +station = ('kfep', 0.0014405365486832361) +zone = ('ilz002', 0.0019471146263025738) + +[fips1717727897] +centroid = (0.73809169470055025, -1.5644402914447386) +description = Freeport township, IL +station = ('kfep', 0.0010229799565960199) +zone = ('ilz002', 0.0011382123114286181) + +[fips1717732902] +centroid = (0.73886449158674838, -1.5655828537862644) +description = Harlem township, IL +station = ('kfep', 0.0021660209048217278) +zone = ('ilz002', 0.00058976026394937) + +[fips1717738284] +centroid = (0.73722962422311278, -1.5688906890511067) +description = Jefferson township, IL +station = ('ksfy', 0.0044028364571665401) +zone = ('ilz007', 0.0030434989355445116) + +[fips1717739610] +centroid = (0.73876307050391499, -1.5684442687350313) +description = Kent township, IL +station = ('kfep', 0.0039220115524051247) +zone = ('ilz002', 0.00264796467218892) + +[fips1717741885] +centroid = (0.73891672929126051, -1.563272474188937) +description = Lancaster township, IL +station = ('kfep', 0.0015874704210756918) +zone = ('ilz002', 0.0012348941272111024) + +[fips1717744758] +centroid = (0.73720063430423699, -1.5673750276753822) +description = Loran township, IL +station = ('kfep', 0.0028685268085794709) +zone = ('ilz002', 0.0026907836920882881) + +[fips1717756120] +centroid = (0.74145922022581068, -1.5649378324546048) +description = Oneco township, IL +station = ('keft', 0.0024984693861100885) +zone = ('ilz002', 0.0022827335936810938) + +[fips1717764057] +centroid = (0.73775144276287397, -1.5610134945380807) +description = Ridott township, IL +station = ('kfep', 0.0018894740313510517) +zone = ('ilz003', 0.0037774256236071308) + +[fips1717765065] +centroid = (0.74142757740647214, -1.5616698954164629) +description = Rock Grove township, IL +station = ('keft', 0.0027632247932221068) +zone = ('ilz002', 0.0032823917761358448) + +[fips1717765143] +centroid = (0.73992940422985265, -1.5614301395371166) +description = Rock Run township, IL +station = ('kfep', 0.0030108612535342848) +zone = ('ilz002', 0.0026758180576669341) + +[fips1717769953] +centroid = (0.73729175794448376, -1.5632461720771094) +description = Silver Creek township, IL +station = ('kfep', 0.00019704804010176196) +zone = ('ilz002', 0.0022493624522817082) + +[fips1717778318] +centroid = (0.74031822868061192, -1.5664680673295834) +description = Waddams township, IL +station = ('kfep', 0.0036982855014835022) +zone = ('ilz002', 0.0016232158887641034) + +[fips1717780788] +centroid = (0.74032630955504863, -1.5685058788576269) +description = West Point township, IL +station = ('kfep', 0.0047534414628590043) +zone = ('ilz002', 0.0028970184450948424) + +[fips1717782556] +centroid = (0.74145890606654541, -1.5679719651861495) +description = Winslow township, IL +station = ('keft', 0.0039325550864656575) +zone = ('ilz002', 0.0032144460735846698) + +[fips1717783] +centroid = (0.66606089181990058, -1.5370126516891582) +description = Crossville village, IL +station = ('kcul', 0.0015082169344112217) +zone = ('ilz083', 0.0020524486404779798) + +[fips1717887] +centroid = (0.73709711882630136, -1.5417423717890151) +description = Crystal Lake city, IL +station = ('kdpa', 0.0059085257766945945) +zone = ('ilz005', 0.0022034231178501493) + +[fips17179] +centroid = (0.70699926494150955, -1.5623534710712992) +description = Tazewell County, IL +station = ('kpia', 0.0035447637462571115) +zone = ('ilz037', 3.7970761074574094e-05) + +[fips1717907627] +centroid = (0.70440425704976684, -1.5609241336803785) +description = Boynton township, IL +station = ('kaaa', 0.0037458566555169958) +zone = ('ilz037', 0.0027905871943774011) + +[fips1717914403] +centroid = (0.70717044683454511, -1.5649177262616216) +description = Cincinnati township, IL +station = ('kpia', 0.0026104813269640843) +zone = ('ilz037', 0.0019943769944608292) + +[fips1717918953] +centroid = (0.70874523996532712, -1.5592188248281325) +description = Deer Creek township, IL +station = ('kpia', 0.0047038565383970233) +zone = ('ilz037', 0.0029295561214174211) + +[fips1717919239] +centroid = (0.70442616093187937, -1.5628500172434916) +description = Delavan township, IL +station = ('kaaa', 0.004498384563140727) +zone = ('ilz037', 0.0025964037801160566) + +[fips1717919941] +centroid = (0.70576653889082586, -1.5629231814457352) +description = Dillon township, IL +station = ('kpia', 0.004379913474535535) +zone = ('ilz037', 0.0013099411845326533) + +[fips1717923607] +centroid = (0.70732026589753627, -1.5629535676280124) +description = Elm Grove township, IL +station = ('kpia', 0.0030132796672168319) +zone = ('ilz037', 0.0005936724354751046) + +[fips1717926636] +centroid = (0.71037452227535625, -1.5627292230059611) +description = Fondulac township, IL +station = ('kpia', 0.0020197560569645986) +zone = ('ilz037', 0.0034005408579713976) + +[fips1717931940] +centroid = (0.70887577314008365, -1.5629890850782906) +description = Groveland township, IL +station = ('kpia', 0.0019464854914836038) +zone = ('ilz037', 0.0019567416419118211) + +[fips1717935359] +centroid = (0.70425356532214956, -1.558988877699182) +description = Hittle township, IL +station = ('kaaa', 0.0033570852801521143) +zone = ('ilz037', 0.0037224971758900889) + +[fips1717936139] +centroid = (0.70567599120923252, -1.5608073886067126) +description = Hopedale township, IL +station = ('kaaa', 0.0049327704643698581) +zone = ('ilz037', 0.0017387273109963756) + +[fips1717939] +centroid = (0.72550773116733103, -1.5387507727313419) +description = Crystal Lawns CDP, IL +station = ('kjot', 0.00089335802361734475) +zone = ('ilz022', 0.0032418319838926077) + +[fips1717944017] +centroid = (0.70586816941316954, -1.5590333661418154) +description = Little Mackinaw township, IL +station = ('kaaa', 0.0049696163744979826) +zone = ('ilz037', 0.0027297411414483946) + +[fips1717945792] +centroid = (0.7074013713478764, -1.5590584290698741) +description = Mackinaw township, IL +station = ('kpia', 0.0052760975408272428) +zone = ('ilz037', 0.0025023988833513268) + +[fips1717946266] +centroid = (0.70434587578628749, -1.5648565350180468) +description = Malone township, IL +station = ('kpia', 0.0054304349562388637) +zone = ('ilz037', 0.0032800238373004859) + +[fips1717950634] +centroid = (0.7088666625213883, -1.5610167932103667) +description = Morton township, IL +station = ('kpia', 0.0033502525979322447) +zone = ('ilz037', 0.002117290664535411) + +[fips1717958460] +centroid = (0.70846048949786422, -1.5643190259683102) +description = Pekin township, IL +station = ('kpia', 0.0014926027991921753) +zone = ('ilz037', 0.0021226885708186568) + +[fips1717967483] +centroid = (0.70574449538237316, -1.5648869910134944) +description = Sand Prairie township, IL +station = ('kpia', 0.0040332165687327034) +zone = ('ilz037', 0.0023251947979953166) + +[fips1717972130] +centroid = (0.70660731635138907, -1.5674944081962185) +description = Spring Lake township, IL +station = ('kpia', 0.0035834297284169543) +zone = ('ilz041', 0.0045175667491028628) + +[fips1717975978] +centroid = (0.70723219658348069, -1.5608950390417478) +description = Tremont township, IL +station = ('kpia', 0.0041784922505387302) +zone = ('ilz037', 0.0010993215885576179) + +[fips1717979046] +centroid = (0.71042136691247981, -1.56063657323282) +description = Washington township, IL +station = ('kpia', 0.0035734924251583644) +zone = ('ilz031', 0.003103007402668004) + +[fips1717991] +centroid = (0.70674666343886827, -1.5741709732635052) +description = Cuba city, IL +station = ('kpia', 0.0074047522030027055) +zone = ('ilz036', 0.00040874350398480478) + +[fips1718030] +centroid = (0.71346221916164454, -1.5405983084643327) +description = Cullom village, IL +station = ('kpnt', 0.0047556835125906628) +zone = ('ilz039', 0.0049457586050990271) + +[fips17181] +centroid = (0.65406395232729708, -1.557756535620934) +description = Union County, IL +station = ('kmdh', 0.005379763497901981) +zone = ('ilz088', 7.4783695091584163e-05) + +[fips1718147] +centroid = (0.69363204999987282, -1.5669253610468985) +description = Curran village, IL +station = ('kspi', 0.0022714157555822063) +zone = ('ilz051', 0.0016251997034729179) + +[fips1718190090] +centroid = (0.6555953391195819, -1.5591109809336516) +description = Alto Pass precinct, IL +station = ('kmdh', 0.0040056100376372758) +zone = ('ilz088', 0.0019098126992821156) + +[fips1718190126] +centroid = (0.65416073083432014, -1.5579631302444925) +description = Anna District 1 precinct, IL +station = ('kmdh', 0.0052867505052409209) +zone = ('ilz088', 0.00021194980103340065) + +[fips1718190144] +centroid = (0.65330169722978104, -1.557498837756877) +description = Anna District 2 precinct, IL +station = ('kcgi', 0.0059081651633174767) +zone = ('ilz088', 0.00073295000874230984) + +[fips1718190162] +centroid = (0.65351141599270068, -1.5571323709738356) +description = Anna District 3 precinct, IL +station = ('kmdh', 0.005949552382499947) +zone = ('ilz088', 0.00071528014626905535) + +[fips1718190180] +centroid = (0.65428546951596023, -1.5571885182158725) +description = Anna District 4 precinct, IL +station = ('kmdh', 0.0051743750647274605) +zone = ('ilz088', 0.00056197744793998953) + +[fips1718190198] +centroid = (0.65389699413105129, -1.5576097708841339) +description = Anna District 5 precinct, IL +station = ('kmdh', 0.0055471024317505736) +zone = ('ilz088', 0.00017738367343943909) + +[fips1718190216] +centroid = (0.65441167427417191, -1.5576147799790869) +description = Anna District 6 precinct, IL +station = ('kmdh', 0.0050324172879924597) +zone = ('ilz088', 0.00043985802983134931) + +[fips1718190224] +centroid = (0.65383714679100036, -1.5563542508334189) +description = Anna District 7 precinct, IL +station = ('kmwa', 0.0055599994607725481) +zone = ('ilz088', 0.0011547789205066342) + +[fips1718190288] +centroid = (0.65293591112514804, -1.5567696391953938) +description = Balcom precinct, IL +station = ('kcir', 0.0060478544119152771) +zone = ('ilz088', 0.0013366600483188064) + +[fips1718190756] +centroid = (0.6553038691344989, -1.556890154180244) +description = Cobden District 1 precinct, IL +station = ('kmdh', 0.0041898170557971553) +zone = ('ilz088', 0.0014921908586293801) + +[fips1718190774] +centroid = (0.65545566041954484, -1.5581188485203554) +description = Cobden District 2 precinct, IL +station = ('kmdh', 0.0040012526485541525) +zone = ('ilz088', 0.0014822237688209053) + +[fips1718190972] +centroid = (0.65217986939976913, -1.5552362627277616) +description = Dongola District 1 precinct, IL +station = ('kcir', 0.0055038169108854148) +zone = ('ilz093', 0.002532129656566059) + +[fips1718190990] +centroid = (0.65209555254360541, -1.5567386072412934) +description = Dongola District 2 precinct, IL +station = ('kcir', 0.005210461903995124) +zone = ('ilz088', 0.0020773667254099255) + +[fips1718191764] +centroid = (0.65297577444526367, -1.5578488460850719) +description = Jonesboro District 1 precinct, IL +station = ('kcgi', 0.0054931620411558047) +zone = ('ilz088', 0.0010209235201188974) + +[fips1718191782] +centroid = (0.65295743103482518, -1.558625569962087) +description = Jonesboro District 2 precinct, IL +station = ('kcgi', 0.0049866549723581732) +zone = ('ilz088', 0.0012299311274688034) + +[fips1718191792] +centroid = (0.65427105309633871, -1.55849468772148) +description = Jonesboro District 3 precinct, IL +station = ('kmdh', 0.0052100535247839438) +zone = ('ilz088', 0.0006194667541331891) + +[fips1718191872] +centroid = (0.65513340282645649, -1.5550847332421034) +description = Lick Creek precinct, IL +station = ('kmwa', 0.0039745350926643592) +zone = ('ilz088', 0.0024327456074781395) + +[fips1718192142] +centroid = (0.65210316217914399, -1.5580313028050754) +description = Mill Creek precinct, IL +station = ('kcgi', 0.0049188599249145306) +zone = ('ilz088', 0.0019019061976887559) + +[fips1718193258] +centroid = (0.65322218002906018, -1.5552429647920893) +description = Stokes precinct, IL +station = ('kmwa', 0.0058378502661653973) +zone = ('ilz088', 0.0021690002909375843) + +[fips1718193484] +centroid = (0.65394322790293669, -1.5604945732448776) +description = Union precinct, IL +station = ('kcgi', 0.0047540959245040834) +zone = ('ilz088', 0.0021429364851443295) + +[fips1718225] +centroid = (0.66379346477546464, -1.5632488947907424) +description = Cutler village, IL +station = ('ksar', 0.0027133582722372049) +zone = ('ilz080', 0.0028963700836578507) + +[fips1718251] +centroid = (0.65215487628488056, -1.5536726746107776) +description = Cypress village, IL +station = ('km30', 0.0048728854721589217) +zone = ('ilz089', 0.0025186806407465831) + +[fips17183] +centroid = (0.70139092864290609, -1.5311210135463709) +description = Vermilion County, IL +station = ('kdnv', 0.0017633887307765366) +zone = ('ilz046', 9.8385584579165945e-05) + +[fips1718303] +centroid = (0.66668388709639992, -1.5478377596686801) +description = Dahlgren village, IL +station = ('kmvn', 0.0032411638121579238) +zone = ('ilz082', 0.0028498482216078903) + +[fips1718306678] +centroid = (0.7018444524490367, -1.530681539640719) +description = Blount township, IL +station = ('kdnv', 0.0014322986705745167) +zone = ('ilz046', 0.00065771931239406881) + +[fips1718310162] +centroid = (0.70564438329647883, -1.5332278702996234) +description = Butler township, IL +station = ('ktip', 0.0045930501487645671) +zone = ('ilz046', 0.0045702316993576292) + +[fips1718311449] +centroid = (0.69687590149433676, -1.5314199884472377) +description = Carroll township, IL +station = ('kprg', 0.0040978423584941085) +zone = ('ilz057', 0.0043537484429042586) + +[fips1718311787] +centroid = (0.69919743374558463, -1.5310874683181477) +description = Catlin township, IL +station = ('kdnv', 0.0029681997613697202) +zone = ('ilz046', 0.0021413883203318671) + +[fips1718318576] +centroid = (0.69994902488137101, -1.5290995033935408) +description = Danville township, IL +station = ('kdnv', 0.0016762624673854107) +zone = ('ilz046', 0.0021380744126069801) + +[fips1718323932] +centroid = (0.69658804434080546, -1.5294827951505714) +description = Elwood township, IL +station = ('kprg', 0.0037203711082051689) +zone = ('inz043', 0.0024766081031643425) + +[fips1718328976] +centroid = (0.69817308255429655, -1.5298534507238175) +description = Georgetown township, IL +station = ('kdnv', 0.0035273986656313601) +zone = ('ilz046', 0.0033332417250374665) + +[fips1718330965] +centroid = (0.70584446784192745, -1.5297340527496885) +description = Grant township, IL +station = ('kdnv', 0.0042874678688127861) +zone = ('ilz046', 0.0046500322016769392) + +[fips1718338180] +centroid = (0.6977758630698353, -1.5325267191792196) +description = Jamaica township, IL +station = ('kdnv', 0.0047660936039379516) +zone = ('ilz046', 0.0036963396234866129) + +[fips1718342] +centroid = (0.73980126215617126, -1.5625383188923778) +description = Dakota village, IL +station = ('kfep', 0.0025642605783021038) +zone = ('ilz002', 0.0018573468547833203) + +[fips1718344953] +centroid = (0.69668265863955603, -1.5285636175000086) +description = Love township, IL +station = ('kprg', 0.0039678033647870996) +zone = ('inz043', 0.0019077153086755139) + +[fips1718345772] +centroid = (0.69818631215002669, -1.5285045555581211) +description = McKendree township, IL +station = ('kdnv', 0.0034354293039068761) +zone = ('inz043', 0.0030123692842012363) + +[fips1718348775] +centroid = (0.70364729029988438, -1.5330864113637492) +description = Middlefork township, IL +station = ('ktip', 0.0040534623204589969) +zone = ('ilz046', 0.0027117191747605563) + +[fips1718352454] +centroid = (0.70171484429878361, -1.5288014884237631) +description = Newell township, IL +station = ('kdnv', 0.00010461391077029079) +zone = ('ilz046', 0.001891782242065447) + +[fips1718355015] +centroid = (0.70044274362017511, -1.5330688009915967) +description = Oakwood township, IL +station = ('kdnv', 0.0034433885664186107) +zone = ('ilz046', 0.0016665758452586417) + +[fips1718359832] +centroid = (0.7019112636528031, -1.5332847331266535) +description = Pilot township, IL +station = ('ktip', 0.0041123073754659404) +zone = ('ilz046', 0.0016729197445518999) + +[fips1718365949] +centroid = (0.70458184430115711, -1.5296097154937764) +description = Ross township, IL +station = ('kdnv', 0.003028043820793191) +zone = ('ilz046', 0.0034726023116388618) + +[fips1718369849] +centroid = (0.69684237371940605, -1.5337579966066242) +description = Sidell township, IL +station = ('kprg', 0.004829511520740533) +zone = ('ilz057', 0.0046699901280437828) + +[fips1718371227] +centroid = (0.70344287733789068, -1.529820341827907) +description = South Ross township, IL +station = ('kdnv', 0.00197989712562328) +zone = ('ilz046', 0.0023649158835234245) + +[fips1718377304] +centroid = (0.69892243966864032, -1.5337969174489434) +description = Vance township, IL +station = ('kdnv', 0.0046537615021123762) +zone = ('ilz046', 0.0031121749077176893) + +[fips1718420] +centroid = (0.70921979498894427, -1.5911168811166012) +description = Dallas City city, IL +station = ('kfsw', 0.0023044878824546133) +zone = ('ilz034', 0.0040422038054325309) + +[fips1718446] +centroid = (0.69318831749084575, -1.5499994023071526) +description = Dalton City village, IL +station = ('kdec', 0.0021793502470025044) +zone = ('ilz053', 0.0032352016509905835) + +[fips1718459] +centroid = (0.72173778507643815, -1.5563102510829763) +description = Dalzell village, IL +station = ('kvys', 0.00022235016767382948) +zone = ('ilz018', 0.0029969265185406362) + +[fips1718472] +centroid = (0.67210496701955691, -1.5640771407872764) +description = Damiansville village, IL +station = ('kblv', 0.0032879947773734662) +zone = ('ilz069', 0.0031336950193917375) + +[fips1718485] +centroid = (0.71482591471939771, -1.552469898410058) +description = Dana village, IL +station = ('kpnt', 0.0043191566984060979) +zone = ('ilz031', 0.0045283280449911183) + +[fips1718498] +centroid = (0.71247783601022718, -1.5355033258586186) +description = Danforth village, IL +station = ('kikk', 0.0046854619450268911) +zone = ('ilz033', 0.0024108337380871346) + +[fips17185] +centroid = (0.6710061600823789, -1.5330826763591501) +description = Wabash County, IL +station = ('kajg', 0.0031958165975746588) +zone = ('ilz078', 7.033344296508225e-05) + +[fips1718537] +centroid = (0.70737763487004934, -1.5564031200524751) +description = Danvers village, IL +station = ('kbmi', 0.0035649652897918474) +zone = ('ilz038', 0.004405582239841499) + +[fips1718563] +centroid = (0.70062102900326628, -1.5290952971500438) +description = Danville city, IL +station = ('kdnv', 0.0010120122938775821) +zone = ('ilz046', 0.0017797880243711353) + +[fips1718590378] +centroid = (0.67027102740143885, -1.5341968421937455) +description = Bellmont precinct, IL +station = ('kajg', 0.0042795988201041113) +zone = ('ilz078', 0.0010917398136652107) + +[fips1718590792] +centroid = (0.66910170916248013, -1.5334271869002012) +description = Coffee precinct, IL +station = ('kajg', 0.0050418223729182801) +zone = ('ilz078', 0.0019197464369479392) + +[fips1718590810] +centroid = (0.66871834759227966, -1.5348124372742167) +description = Compton precinct, IL +station = ('kcul', 0.0046780878934046116) +zone = ('ilz077', 0.002372292702799603) + +[fips1718591314] +centroid = (0.67223497659553799, -1.5325398440551947) +description = Friendsville precinct, IL +station = ('kajg', 0.0019262241525870305) +zone = ('ilz078', 0.0013202791794247814) + +[fips1718591854] +centroid = (0.67265425704174464, -1.5339116553939696) +description = Lancaster precinct, IL +station = ('kajg', 0.0024695802249138457) +zone = ('ilz078', 0.0017421537992872908) + +[fips1718591890] +centroid = (0.67152146854403028, -1.5341836475046005) +description = Lick Prairie precinct, IL +station = ('kajg', 0.0033130316067686632) +zone = ('ilz078', 0.00094219426263639672) + +[fips1718592214] +centroid = (0.67048095560386867, -1.5325979809725787) +description = Mount Carmel precinct, IL +station = ('kajg', 0.0035230943862905283) +zone = ('ilz078', 0.00069524157923320847) + +[fips1718593582] +centroid = (0.67243581163256505, -1.5311616099047722) +description = Wabash precinct, IL +station = ('kajg', 0.0013731876747415605) +zone = ('ilz078', 0.0021229637891889076) + +[fips1718628] +centroid = (0.72859926777797357, -1.5355667511236359) +description = Darien city, IL +station = ('klot', 0.0028110977167965477) +zone = ('ilz013', 0.0022984356620701974) + +[fips1718641] +centroid = (0.66878816076235947, -1.5660706209523192) +description = Darmstadt CDP, IL +station = ('ksar', 0.0029940292179558769) +zone = ('ilz101', 0.0037972926763223365) + +[fips17187] +centroid = (0.71297469634168487, -1.5816212602414934) +description = Warren County, IL +station = ('kgbg', 0.002926326329849272) +zone = ('ilz026', 7.46664877756193e-05) + +[fips1718705560] +centroid = (0.71127139461807853, -1.5793217365921135) +description = Berwick township, IL +station = ('kgbg', 0.0033199911269385803) +zone = ('ilz026', 0.0023662353346426326) + +[fips1718706] +centroid = (0.7403973444556049, -1.5605954358223504) +description = Davis village, IL +station = ('kfep', 0.0037391526730013885) +zone = ('ilz003', 0.0036050237971981952) + +[fips1718715404] +centroid = (0.71441358068361405, -1.5794788336780854) +description = Coldbrook township, IL +station = ('kgbg', 0.00087960387400675766) +zone = ('ilz026', 0.0021349974895037006) + +[fips1718719] +centroid = (0.73503380803788609, -1.5549108984486049) +description = Davis Junction village, IL +station = ('krfd', 0.0015009129032889658) +zone = ('ilz003', 0.0039814165060492309) + +[fips1718723516] +centroid = (0.71143749760299091, -1.5835559053574515) +description = Ellison township, IL +station = ('kmqb', 0.004351477972950245) +zone = ('ilz026', 0.0021510563423052247) + +[fips1718726610] +centroid = (0.71288831999700375, -1.5795056768419811) +description = Floyd township, IL +station = ('kgbg', 0.0018472885934327839) +zone = ('ilz026', 0.0015324784688081079) + +[fips1718731277] +centroid = (0.70990227108635173, -1.5797251694487118) +description = Greenbush township, IL +station = ('kmqb', 0.0032746776947635164) +zone = ('ilz026', 0.003336708208497617) + +[fips1718732226] +centroid = (0.7143676959775791, -1.5836666115919056) +description = Hale township, IL +station = ('kgbg', 0.0040409802210090821) +zone = ('ilz026', 0.002151685442969798) + +[fips1718739396] +centroid = (0.71590409186481718, -1.5795804118405514) +description = Kelly township, IL +station = ('kgbg', 0.0016926919365370058) +zone = ('ilz026', 0.0033044671705031977) + +[fips1718742847] +centroid = (0.7129279564243165, -1.5815148998768769) +description = Lenox township, IL +station = ('kgbg', 0.0028834043371535399) +zone = ('ilz026', 2.1443200695638695e-05) + +[fips1718745] +centroid = (0.69557086645274313, -1.5614178873257676) +description = Dawson village, IL +station = ('kspi', 0.0029574213053947603) +zone = ('ilz051', 0.0031107806234444636) + +[fips1718750023] +centroid = (0.71438165861159519, -1.5814229384785894) +description = Monmouth township, IL +station = ('kgbg', 0.0023468445500401535) +zone = ('ilz026', 0.001437887085608127) + +[fips1718760898] +centroid = (0.70993270962850641, -1.5835515943941991) +description = Point Pleasant township, IL +station = ('kmqb', 0.0029117302032204018) +zone = ('ilz026', 0.0033800281442229285) + +[fips1718765858] +centroid = (0.71140967705471414, -1.581542266639548) +description = Roseville township, IL +station = ('kgbg', 0.003938608006626044) +zone = ('ilz026', 0.0015364060276652008) + +[fips1718771] +centroid = (0.72241429214780373, -1.5498442774432355) +description = Dayton CDP, IL +station = ('kvys', 0.004680908292832602) +zone = ('ilz019', 0.0014013570325939841) + +[fips1718772065] +centroid = (0.71585087677592396, -1.5816094967223351) +description = Spring Grove township, IL +station = ('kgbg', 0.0028248564316616406) +zone = ('ilz026', 0.002905440506484753) + +[fips1718773716] +centroid = (0.71601097582820927, -1.5834908220296446) +description = Sumner township, IL +station = ('kgbg', 0.0041839659667055112) +zone = ('ilz024', 0.0031625860444996646) + +[fips1718774093] +centroid = (0.70998168356731739, -1.5814757870483396) +description = Swan township, IL +station = ('kmqb', 0.0028212307816238335) +zone = ('ilz026', 0.0029646573566798947) + +[fips1718775692] +centroid = (0.71308187701104997, -1.5834273793113347) +description = Tompkins township, IL +station = ('kgbg', 0.0041136886710320753) +zone = ('ilz026', 0.001441501954550294) + +[fips1718823] +centroid = (0.69561812996888717, -1.552186683832337) +description = Decatur city, IL +station = ('kdec', 0.00098197238726798852) +zone = ('ilz053', 0.00038070977663967197) + +[fips17189] +centroid = (0.66938858893163056, -1.5606243210214708) +description = Washington County, IL +station = ('ksar', 0.0052522963598846794) +zone = ('ilz074', 9.2986722755653578e-05) + +[fips1718902544] +centroid = (0.66901432052683285, -1.5568753712414796) +description = Ashley township, IL +station = ('kenl', 0.003531753211127843) +zone = ('ilz074', 0.0028712327966508864) + +[fips1718904442] +centroid = (0.66928510836027977, -1.5588618177296369) +description = Beaucoup township, IL +station = ('kenl', 0.0042338094894478207) +zone = ('ilz074', 0.0012936267600915888) + +[fips1718907172] +centroid = (0.66757346396284889, -1.5588668791844675) +description = Bolo township, IL +station = ('ksar', 0.0055254794003189306) +zone = ('ilz074', 0.0022120641125390325) + +[fips1718917042] +centroid = (0.67088302710365066, -1.560725532664794) +description = Covington township, IL +station = ('kenl', 0.0047098090161606255) +zone = ('ilz074', 0.0015204847603677387) + +[fips1718920877] +centroid = (0.66767404728764135, -1.5568160475002042) +description = Du Bois township, IL +station = ('kenl', 0.0047641085311731805) +zone = ('ilz074', 0.0033579282529527755) + +[fips1718936360] +centroid = (0.67112105510703768, -1.5588610672380585) +description = Hoyleton township, IL +station = ('kenl', 0.003247065579294591) +zone = ('ilz074', 0.0021733850283764677) + +[fips1718937790] +centroid = (0.67109157649597151, -1.5568225052184368) +description = Irvington township, IL +station = ('kenl', 0.0018413402166236063) +zone = ('ilz074', 0.0033610315777648711) + +[fips1718938453] +centroid = (0.66932654247672219, -1.5646630827237558) +description = Johannisburg township, IL +station = ('ksar', 0.0035692903002624231) +zone = ('ilz074', 0.0032591456157408478) + +[fips1718940] +centroid = (0.70910790193059892, -1.5591249086610826) +description = Deer Creek village, IL +station = ('kpia', 0.004708426856314436) +zone = ('ilz031', 0.003202981929359236) + +[fips1718944108] +centroid = (0.6677755032770597, -1.5646828922107661) +description = Lively Grove township, IL +station = ('ksar', 0.0020637289215355886) +zone = ('ilz074', 0.0036447112909565428) + +[fips1718951713] +centroid = (0.66929725585187361, -1.5607516602436964) +description = Nashville township, IL +station = ('ksar', 0.0051169666724744725) +zone = ('ilz074', 0.00020552938693716244) + +[fips1718954599] +centroid = (0.66770268814066658, -1.5627866268850592) +description = Oakdale township, IL +station = ('ksar', 0.002863348517833925) +zone = ('ilz074', 0.0024465408947142754) + +[fips1718955483] +centroid = (0.67080378915561012, -1.5627504985695428) +description = Okawville township, IL +station = ('kblv', 0.0047043883827235528) +zone = ('ilz074', 0.0022671043401005526) + +[fips1718959858] +centroid = (0.66766135874397947, -1.5607623416587186) +description = Pilot Knob township, IL +station = ('ksar', 0.0041773181306927519) +zone = ('ilz074', 0.0017224455031068415) + +[fips1718960807] +centroid = (0.66930167153488118, -1.5628152328314993) +description = Plum Hill township, IL +station = ('ksar', 0.0040819117517703219) +zone = ('ilz074', 0.0018110861998224023) + +[fips1718963732] +centroid = (0.66971351687847436, -1.5568269209014443) +description = Richview township, IL +station = ('kenl', 0.002895000952824584) +zone = ('ilz074', 0.002906165275985481) + +[fips1718977434] +centroid = (0.67058164364841633, -1.5647009563685241) +description = Venedy township, IL +station = ('kblv', 0.0035269162987661812) +zone = ('ilz101', 0.0038895476022488156) + +[fips1718992] +centroid = (0.73593673667311288, -1.5333148051496652) +description = Deerfield village, IL +station = ('kpwk', 0.00105917514459934) +zone = ('ilz006', 0.0033651858224228262) + +[fips1719031] +centroid = (0.7262273304179282, -1.565340584632795) +description = Deer Grove village, IL +station = ('ksqi', 0.0024625213122090521) +zone = ('ilz009', 0.0039079934691663223) + +[fips1719083] +centroid = (0.73594048913100463, -1.5373938665043787) +description = Deer Park village, IL +station = ('kpwk', 0.0025603364953979465) +zone = ('ilz006', 0.0029375718756473605) + +[fips17191] +centroid = (0.67076403055524969, -1.5434318155983606) +description = Wayne County, IL +station = ('kfwc', 0.00096779730263347661) +zone = ('ilz076', 9.8964045894352131e-05) + +[fips1719102297] +centroid = (0.66961190380942315, -1.5450821814857538) +description = Arrington township, IL +station = ('kfwc', 0.0015742857253564983) +zone = ('ilz076', 0.0017727684585873778) + +[fips1719103753] +centroid = (0.66840776625188736, -1.5414469224532377) +description = Barnhill township, IL +station = ('kfwc', 0.0019237568555448613) +zone = ('ilz076', 0.0027394372511004429) + +[fips1719104559] +centroid = (0.67232821208417948, -1.5431300481706907) +description = Bedford township, IL +station = ('kfwc', 0.0024952449140610783) +zone = ('ilz076', 0.0016136201846415003) + +[fips1719105521] +centroid = (0.67070996025502283, -1.5451122360554732) +description = Berry township, IL +station = ('kfwc', 0.0018083429843786148) +zone = ('ilz076', 0.0014057163672468913) + +[fips1719105950] +centroid = (0.66874597615433873, -1.5432703202826736) +description = Big Mound township, IL +station = ('kfwc', 0.0010959019988195432) +zone = ('ilz076', 0.0019756803646705525) + +[fips1719123685] +centroid = (0.67228843603052657, -1.5412859856429113) +description = Elm River township, IL +station = ('kfwc', 0.0028343735507387223) +zone = ('ilz076', 0.0022330062040575014) + +[fips1719127364] +centroid = (0.66876018313444996, -1.5472600905928549) +description = Four Mile township, IL +station = ('kfwc', 0.0034388970993744715) +zone = ('ilz076', 0.003660331650955377) + +[fips1719128534] +centroid = (0.67346899418986805, -1.5471494192649862) +description = Garden Hill township, IL +station = ('kfoa', 0.0029522366460561934) +zone = ('ilz071', 0.0036027851837192775) + +[fips1719131953] +centroid = (0.66946143897460875, -1.5412941014239327) +description = Grover township, IL +station = ('kfwc', 0.0014593766908279386) +zone = ('ilz076', 0.0020256217250391988) + +[fips1719134501] +centroid = (0.67063084448003007, -1.5471413558438418) +description = Hickory Hill township, IL +station = ('kfwc', 0.0032705411664676661) +zone = ('ilz076', 0.0029966955322320056) + +[fips1719137387] +centroid = (0.67228981484063566, -1.5450904019865308) +description = Indian Prairie township, IL +station = ('kfoa', 0.0027353864607210115) +zone = ('ilz076', 0.0020942591320604526) + +[fips1719138258] +centroid = (0.67067248803598267, -1.5412391060992026) +description = Jasper township, IL +station = ('kfwc', 0.0016785976372821695) +zone = ('ilz076', 0.0016292061473538663) + +[fips1719139285] +centroid = (0.67342621616990173, -1.5442446328843069) +description = Keith township, IL +station = ('kfoa', 0.0014481880736460229) +zone = ('ilz076', 0.0028004461449357798) + +[fips1719141755] +centroid = (0.67079736634396281, -1.5431357728506372) +description = Lamard township, IL +station = ('kfwc', 0.00096479364812807923) +zone = ('ilz076', 0.00016165274730123424) + +[fips1719142626] +centroid = (0.66884783356948518, -1.5393852871809044) +description = Leech township, IL +station = ('kfwc', 0.0030709005427683026) +zone = ('ilz077', 0.0026003555353184067) + +[fips1719147501] +centroid = (0.67057565716908196, -1.5393968063539674) +description = Massilon township, IL +station = ('kfwc', 0.0029911566808217696) +zone = ('ilz077', 0.0020218986650241528) + +[fips1719150946] +centroid = (0.672613922482731, -1.5392734464824365) +description = Mount Erie township, IL +station = ('koly', 0.0032203351908298805) +zone = ('ilz077', 0.0028612287608818752) + +[fips1719156367] +centroid = (0.67235964546400795, -1.5470128472510176) +description = Orchard township, IL +station = ('kfoa', 0.0035252759078170061) +zone = ('ilz076', 0.0033244087755047937) + +[fips1719156510] +centroid = (0.66855788202085131, -1.5455787276579462) +description = Orel township, IL +station = ('kfwc', 0.0023289348347941981) +zone = ('ilz076', 0.0027968872135302079) + +[fips1719161] +centroid = (0.73182727168282957, -1.5489418375001991) +description = DeKalb city, IL +station = ('kdkb', 0.00051336286346296612) +zone = ('ilz011', 0.00071259589351176501) + +[fips1719184194] +centroid = (0.67332769233362655, -1.5413152548144669) +description = Zif township, IL +station = ('kfoa', 0.0024538252291601958) +zone = ('ilz076', 0.0030412601167525526) + +[fips1719200] +centroid = (0.70025718021410299, -1.5471150362787218) +description = De Land village, IL +station = ('kdec', 0.0058549364795534853) +zone = ('ilz044', 0.0020646001570213054) + +[fips1719226] +centroid = (0.70461270172233237, -1.5628491096722805) +description = Delavan city, IL +station = ('kaaa', 0.0046455041296046004) +zone = ('ilz037', 0.0024123163978080698) + +[fips17193] +centroid = (0.6647500448318977, -1.5390066379996841) +description = White County, IL +station = ('kcul', 0.00076365317676288134) +zone = ('ilz083', 1.2766321461838081e-05) + +[fips1719309902] +centroid = (0.66664442520201239, -1.5394463562514316) +description = Burnt Prairie township, IL +station = ('kcul', 0.0021634997670053847) +zone = ('ilz083', 0.0019212724980150466) + +[fips1719311306] +centroid = (0.66467133048263272, -1.5395193633740423) +description = Carmi township, IL +station = ('kcul', 0.0011720218662240535) +zone = ('ilz083', 0.00039928520347728183) + +[fips1719324088] +centroid = (0.66253860794986585, -1.5375355872396408) +description = Emma township, IL +station = ('kcul', 0.0022821137820142764) +zone = ('ilz083', 0.002504500500228826) + +[fips1719324192] +centroid = (0.6646135251778067, -1.5413944927625076) +description = Enfield township, IL +station = ('kcul', 0.0026479586763457552) +zone = ('ilz083', 0.0018720890430627376) + +[fips1719331069] +centroid = (0.66727777028097601, -1.5368636180243302) +description = Gray township, IL +station = ('kcul', 0.002657013637366948) +zone = ('ilz083', 0.0030430118726357336) + +[fips1719333591] +centroid = (0.66477289119180638, -1.5370993247398121) +description = Hawthorne township, IL +station = ('kcul', 0.000738487194026024) +zone = ('ilz083', 0.0015138856510574911) + +[fips1719334228] +centroid = (0.66290708186154679, -1.5394159002559842) +description = Heralds Prairie township, IL +station = ('kcul', 0.0021702241272547264) +zone = ('ilz083', 0.0018710186319615956) + +[fips1719337231] +centroid = (0.66283098550615982, -1.5414174263888787) +description = Indian Creek township, IL +station = ('kcul', 0.0033030873881958293) +zone = ('ilz083', 0.0026924931654700732) + +[fips1719349360] +centroid = (0.66657729983898062, -1.541380844287757) +description = Mill Shoals township, IL +station = ('kcul', 0.0031815913811191589) +zone = ('ilz083', 0.0026020882038861807) + +[fips1719359507] +centroid = (0.66624087017236622, -1.5367257544667152) +description = Phillips township, IL +station = ('kcul', 0.001783427622624669) +zone = ('ilz083', 0.0023409761529717041) + +[fips1719499] +centroid = (0.72129543137752028, -1.5585083361962306) +description = De Pue village, IL +station = ('kvys', 0.0019217201484085448) +zone = ('ilz018', 0.0021453760360638763) + +[fips17195] +centroid = (0.72868492853766154, -1.5692422332690432) +description = Whiteside County, IL +station = ('ksqi', 0.0031809433273357174) +zone = ('ilz009', 0.00010804026891433465) + +[fips1719500529] +centroid = (0.72866260577652842, -1.5747529533025826) +description = Albany township, IL +station = ('kcwi', 0.0020191553685819804) +zone = ('iaz066', 0.0047438072563524567) + +[fips1719515144] +centroid = (0.73097043719314803, -1.5691943239810762) +description = Clyde township, IL +station = ('ksfy', 0.0038641739655530475) +zone = ('ilz009', 0.0021868602185728834) + +[fips1719515651] +centroid = (0.72905565392407756, -1.5654107468687251) +description = Coloma township, IL +station = ('ksqi', 0.00049885299870816395) +zone = ('ilz009', 0.0029114137211883385) + +[fips1719524387] +centroid = (0.72687769245709899, -1.572976993522216) +description = Erie township, IL +station = ('kcwi', 0.0042354274522122823) +zone = ('ilz009', 0.0033445747270409937) + +[fips1719525817] +centroid = (0.72798325381848228, -1.5714578938478649) +description = Fenton township, IL +station = ('kcwi', 0.0044038468292168656) +zone = ('ilz009', 0.0018007861562353838) + +[fips1719528157] +centroid = (0.73093221448252943, -1.5729164655037569) +description = Fulton township, IL +station = ('ksfy', 0.0029114457148087377) +zone = ('ilz009', 0.0034477351438628847) + +[fips1719528586] +centroid = (0.72939635964735938, -1.5732169064811949) +description = Garden Plain township, IL +station = ('kcwi', 0.0026360076190798799) +zone = ('ilz009', 0.0029865825124470117) + +[fips1719528833] +centroid = (0.73095228576892735, -1.5676110834567143) +description = Genesee township, IL +station = ('ksqi', 0.003005943077203269) +zone = ('ilz009', 0.0025052566670501954) + +[fips1719532174] +centroid = (0.72654534686093419, -1.5653810239115635) +description = Hahnaman township, IL +station = ('ksqi', 0.0021507185954086926) +zone = ('ilz009', 0.0036833204295723346) + +[fips1719536178] +centroid = (0.72949821706250573, -1.5674688216693844) +description = Hopkins township, IL +station = ('ksqi', 0.0020314806469213034) +zone = ('ilz009', 0.0015387396459683664) + +[fips1719536581] +centroid = (0.72795325160864044, -1.5674205458622743) +description = Hume township, IL +station = ('ksqi', 0.0019601469535679766) +zone = ('ilz009', 0.0016287307831063928) + +[fips1719538700] +centroid = (0.73094294825742911, -1.5654964948948757) +description = Jordan township, IL +station = ('ksqi', 0.0023006013284625989) +zone = ('ilz009', 0.0035608780083693655) + +[fips1719545291] +centroid = (0.72843100058478882, -1.5692261064267548) +description = Lyndon township, IL +station = ('ksqi', 0.0031786312400041198) +zone = ('ilz009', 0.00035785840786872216) + +[fips1719550270] +centroid = (0.72793787525793041, -1.5655605833850088) +description = Montmorency township, IL +station = ('ksqi', 0.00085555227088238606) +zone = ('ilz009', 0.0029142417498013865) + +[fips1719551076] +centroid = (0.72959777064303954, -1.5691801344542573) +description = Mount Pleasant township, IL +station = ('ksqi', 0.0032663856381450638) +zone = ('ilz009', 0.00081751762270489939) + +[fips1719552857] +centroid = (0.72801571694256939, -1.5733653118274922) +description = Newton township, IL +station = ('kcwi', 0.0032153041651332283) +zone = ('ilz009', 0.0031318013800093495) + +[fips1719561262] +centroid = (0.72637681786836161, -1.5717780221392659) +description = Portland township, IL +station = ('kcwi', 0.0052066490592875313) +zone = ('ilz009', 0.0030383435194052313) + +[fips1719561990] +centroid = (0.72670342133128729, -1.5692348156197224) +description = Prophetstown township, IL +station = ('ksqi', 0.0037400428664470741) +zone = ('ilz009', 0.0020820164084605821) + +[fips1719572553] +centroid = (0.72979645892508649, -1.565359346922254) +description = Sterling township, IL +station = ('ksqi', 0.0011568830255832732) +zone = ('ilz009', 0.0031055241380684409) + +[fips1719574483] +centroid = (0.72653983162049784, -1.5673936154319159) +description = Tampico township, IL +station = ('ksqi', 0.002794876283407707) +zone = ('ilz009', 0.002657205654837761) + +[fips1719576758] +centroid = (0.72955975737193102, -1.5714105779718435) +description = Union Grove township, IL +station = ('ksfy', 0.0043810668919022425) +zone = ('ilz009', 0.0017562502536161899) + +[fips1719577070] +centroid = (0.73096591679038536, -1.5712640575811385) +description = Ustick township, IL +station = ('ksfy', 0.0030585305883024301) +zone = ('ilz009', 0.0026278522966534431) + +[fips1719616] +centroid = (0.66000857866617479, -1.5573043382650349) +description = De Soto village, IL +station = ('kmdh', 0.00064818471483873974) +zone = ('ilz084', 0.0022046666581685185) + +[fips1719642] +centroid = (0.73365121056433369, -1.5341631224325971) +description = Des Plaines city, IL +station = ('kord', 0.00092616318457661639) +zone = ('ilz014', 0.003578952519927851) + +[fips1719681] +centroid = (0.69150201527415389, -1.5825940544066774) +description = Detroit village, IL +station = ('kppq', 0.0014144716385961419) +zone = ('ilz049', 0.0027376633940907323) + +[fips17197] +centroid = (0.72341234122726417, -1.5355137280209603) +description = Will County, IL +station = ('kjot', 0.0028456226076454356) +zone = ('ilz022', 6.0716706308700918e-05) + +[fips1719712483] +centroid = (0.72293937445326617, -1.5391990780030089) +description = Channahon township, IL +station = ('kjot', 0.0016977736054713968) +zone = ('ilz022', 0.0027904487859468871) + +[fips1719717536] +centroid = (0.72292270655890967, -1.5289530179094211) +description = Crete township, IL +station = ('kigq', 0.0022807015452017366) +zone = ('inz001', 0.002891834994642105) + +[fips1719718199] +centroid = (0.71954141038585095, -1.5382151137306121) +description = Custer township, IL +station = ('kikk', 0.0046430575484548058) +zone = ('ilz021', 0.0038783987865866291) + +[fips1719721241] +centroid = (0.72751707637527452, -1.5374315656162219) +description = Du Page township, IL +station = ('klot', 0.0013168579489138959) +zone = ('ilz013', 0.0029383231480287933) + +[fips1719726519] +centroid = (0.72139102306065195, -1.5371469896816841) +description = Florence township, IL +station = ('kjot', 0.003506502684313914) +zone = ('ilz022', 0.002310393828473499) + +[fips1719727631] +centroid = (0.72454907416908809, -1.5332098235951577) +description = Frankfort township, IL +station = ('kigq', 0.0041315937764894979) +zone = ('ilz022', 0.0021033396794322068) + +[fips1719731394] +centroid = (0.72302505266624661, -1.5331896126824196) +description = Green Garden township, IL +station = ('klot', 0.0045467825361782755) +zone = ('ilz022', 0.0017758817345892625) + +[fips1719735827] +centroid = (0.72592036190908749, -1.5352664323192453) +description = Homer township, IL +station = ('klot', 0.0017184276793221227) +zone = ('ilz022', 0.0025755495831497784) + +[fips1719738076] +centroid = (0.72292722696167233, -1.5371205479435164) +description = Jackson township, IL +station = ('kjot', 0.0021829747601051627) +zone = ('ilz022', 0.0012742707118222061) + +[fips1719738583] +centroid = (0.7244564146390996, -1.5373308426650893) +description = Joliet township, IL +station = ('kjot', 0.0012235359839273597) +zone = ('ilz022', 0.0017507673587074794) + +[fips1719744238] +centroid = (0.72599174587549409, -1.5374397337571211) +description = Lockport township, IL +station = ('klot', 0.00022197230314665876) +zone = ('ilz022', 0.0030066705328306658) + +[fips1719746370] +centroid = (0.72299784298320802, -1.5352255916147486) +description = Manhattan township, IL +station = ('kjot', 0.0032305692384561719) +zone = ('ilz022', 0.00041626226520488944) + +[fips1719749958] +centroid = (0.7229458845313762, -1.5313424958284492) +description = Monee township, IL +station = ('kigq', 0.0034062518112360257) +zone = ('ilz022', 0.0031566670837715628) + +[fips1719752597] +centroid = (0.7245061565227815, -1.535264547363653) +description = New Lenox township, IL +station = ('klot', 0.0023998164098796193) +zone = ('ilz022', 0.0011699591013509419) + +[fips1719759065] +centroid = (0.72156855795216479, -1.5332428975844832) +description = Peotone township, IL +station = ('kikk', 0.0047376632420172045) +zone = ('ilz022', 0.0024683085947318343) + +[fips1719760300] +centroid = (0.72594886313577256, -1.5393747279389296) +description = Plainfield township, IL +station = ('kjot', 0.0013599503077085253) +zone = ('ilz020', 0.0029926227045933679) + +[fips1719763108] +centroid = (0.71983911119636368, -1.5396784326820694) +description = Reed township, IL +station = ('kc09', 0.0041248281156873604) +zone = ('ilz021', 0.0027384140489379797) + +[fips1719776212] +centroid = (0.72444815923173767, -1.539328546526922) +description = Troy township, IL +station = ('kjot', 0.0003357237743996836) +zone = ('ilz020', 0.003355597140223863) + +[fips1719779059] +centroid = (0.72155855721555096, -1.5288869222906483) +description = Washington township, IL +station = ('kigq', 0.0035593432126125799) +zone = ('inz001', 0.0031176454466727093) + +[fips1719779865] +centroid = (0.72004692755039867, -1.5369825447595611) +description = Wesley township, IL +station = ('kikk', 0.0042911569454804465) +zone = ('ilz023', 0.0033455777648702181) + +[fips1719781035] +centroid = (0.72748255376267001, -1.539418273903767) +description = Wheatland township, IL +station = ('klot', 0.001903414587798405) +zone = ('ilz013', 0.0033369749088040116) + +[fips1719781711] +centroid = (0.72164367692317066, -1.5313045000106331) +description = Will township, IL +station = ('kigq', 0.0043044530482918486) +zone = ('ilz023', 0.0040039879756584599) + +[fips1719782114] +centroid = (0.72141434065945853, -1.5391943307074436) +description = Wilmington township, IL +station = ('kjot', 0.0032176938440608557) +zone = ('ilz021', 0.0031241452691371753) + +[fips1719782244] +centroid = (0.72146862039919568, -1.5351793927494484) +description = Wilton township, IL +station = ('kjot', 0.0042381822237372484) +zone = ('ilz022', 0.0019001436318145212) + +[fips1719798] +centroid = (0.70135649329676419, -1.5496013974245277) +description = De Witt village, IL +station = ('kbmi', 0.005385718844138165) +zone = ('ilz043', 0.0015898348119975524) + +[fips1719837] +centroid = (0.72056199166595469, -1.5402643397119637) +description = Diamond village, IL +station = ('kc09', 0.0032897794933465095) +zone = ('ilz021', 0.0022014166003819411) + +[fips17199] +centroid = (0.65851888778972012, -1.5521216179578228) +description = Williamson County, IL +station = ('kmwa', 0.0010410238575759071) +zone = ('ilz085', 1.873165461733012e-06) + +[fips1719915] +centroid = (0.68172773513067253, -1.5425544734899681) +description = Dieterich village, IL +station = ('k1h2', 0.0020606965629660903) +zone = ('ilz067', 0.0032132027697357153) + +[fips1719990432] +centroid = (0.66003762094492791, -1.5549410751913717) +description = Blairsville precinct, IL +station = ('kmwa', 0.0017110887140848799) +zone = ('ilz085', 0.0026987517364189121) + +[fips1719990648] +centroid = (0.65857201561215073, -1.5550442416034571) +description = Carterville precinct, IL +station = ('kmwa', 0.0013621836952069993) +zone = ('ilz085', 0.0023137147605045432) + +[fips1719990846] +centroid = (0.66033636895299186, -1.5491863930349887) +description = Corinth precinct, IL +station = ('khsb', 0.0029596373333652939) +zone = ('ilz085', 0.0029462997792528978) + +[fips1719990882] +centroid = (0.6586184588235463, -1.5493513441025946) +description = Crab Orchard precinct, IL +station = ('khsb', 0.0033345326037181968) +zone = ('ilz085', 0.0021916007669077072) + +[fips1719990918] +centroid = (0.65705359661620821, -1.5512116730990029) +description = Creal Springs precinct, IL +station = ('kmwa', 0.0024865902259350934) +zone = ('ilz085', 0.0016311170655977435) + +[fips1719991062] +centroid = (0.65859170292611324, -1.5510983139640857) +description = East Marion precinct, IL +station = ('kmwa', 0.0018113811845912136) +zone = ('ilz085', 0.00081103845837331417) + +[fips1719991548] +centroid = (0.65697816348593707, -1.5550268057642298) +description = Grassy precinct, IL +station = ('kmwa', 0.0023023332135373971) +zone = ('ilz085', 0.0027684379282459947) + +[fips1719991620] +centroid = (0.66007326056825366, -1.5530768890173168) +description = Herrin precinct, IL +station = ('kmwa', 0.0012275407164374647) +zone = ('ilz085', 0.0017296072371183278) + +[fips1719991836] +centroid = (0.66003906956820713, -1.551086742431145) +description = Lake Creek precinct, IL +station = ('kmwa', 0.0021469326841026307) +zone = ('ilz085', 0.0017263345262031665) + +[fips1719993204] +centroid = (0.65701361112304502, -1.5531464927478862) +description = Southern precinct, IL +station = ('kmwa', 0.0018608899718822347) +zone = ('ilz085', 0.0017098285976638252) + +[fips1719993294] +centroid = (0.65693255803258244, -1.5491482575908326) +description = Stonefort precinct, IL +station = ('khsb', 0.0041770151532111582) +zone = ('ilz085', 0.0028359805167410719) + +[fips1719993690] +centroid = (0.65843240672528369, -1.5529884880907032) +description = West Marion precinct, IL +station = ('kmwa', 0.00052536497648963032) +zone = ('ilz085', 0.00069256410548475386) + +[fips1720045] +centroid = (0.69063430738323228, -1.564751169491104) +description = Divernon village, IL +station = ('ktaz', 0.0044306214882668532) +zone = ('ilz051', 0.0032779497591271835) + +[fips17201] +centroid = (0.73892695692067711, -1.5561565922956306) +description = Winnebago County, IL +station = ('krfd', 0.0025249424399639148) +zone = ('ilz003', 1.9529334746574378e-05) + +[fips1720109915] +centroid = (0.73883754370309751, -1.5573611836387722) +description = Burritt township, IL +station = ('krfd', 0.0028563244347184404) +zone = ('ilz003', 0.00089716030454937393) + +[fips1720113087] +centroid = (0.7365022233507591, -1.5532192904309867) +description = Cherry Valley township, IL +station = ('krfd', 0.0013848924330320377) +zone = ('ilz004', 0.0030863864070639698) + +[fips1720121293] +centroid = (0.74019741698978891, -1.5594402372970404) +description = Durand township, IL +station = ('kfep', 0.004147549709909523) +zone = ('ilz003', 0.0027508037394479204) + +[fips1720123] +centroid = (0.67098279012369466, -1.5524008880914344) +description = Dix village, IL +station = ('kenl', 0.002343750008462985) +zone = ('ilz075', 0.0025292241951656532) + +[fips1720132928] +centroid = (0.73937885757060351, -1.5530420173388619) +description = Harlem township, IL +station = ('krfd', 0.0032270950418414224) +zone = ('ilz003', 0.0023456593963226868) + +[fips1720133188] +centroid = (0.74012388626840231, -1.557246707493134) +description = Harrison township, IL +station = ('krfd', 0.0039334182762402817) +zone = ('ilz003', 0.0014607431967905984) + +[fips1720142054] +centroid = (0.74135678685201123, -1.5590785003562722) +description = Laona township, IL +station = ('kjvl', 0.0045156437014965359) +zone = ('ilz003', 0.0032663542316491607) + +[fips1720149] +centroid = (0.72663207227146576, -1.5300818619630259) +description = Dixmoor village, IL +station = ('kigq', 0.0023954435473403754) +zone = ('ilz014', 0.0041031125030366929) + +[fips1720157069] +centroid = (0.73971706747305499, -1.5552125960631047) +description = Owen township, IL +station = ('krfd', 0.0031894473632404982) +zone = ('ilz003', 0.0010658192570470045) + +[fips1720158421] +centroid = (0.7392736491232933, -1.5589540932871899) +description = Pecatonica township, IL +station = ('kfep', 0.0038823132631316533) +zone = ('ilz003', 0.0021035680588839248) + +[fips1720162] +centroid = (0.73029766512638172, -1.5617003688652031) +description = Dixon city, IL +station = ('ksqi', 0.0029336055847460768) +zone = ('ilz010', 0.0028712011500634932) + +[fips1720165013] +centroid = (0.73737853571489287, -1.5546436536335395) +description = Rockford township, IL +station = ('krfd', 0.00091118310092658391) +zone = ('ilz003', 0.0018927315230186014) + +[fips1720165169] +centroid = (0.74094991569678625, -1.5550577155452825) +description = Rockton township, IL +station = ('kjvl', 0.0029709291185530504) +zone = ('ilz003', 0.0021959850782180749) + +[fips1720165624] +centroid = (0.74087769397233871, -1.553203215948576) +description = Roscoe township, IL +station = ('kjvl', 0.002971419572302722) +zone = ('ilz003', 0.0029361225425143275) + +[fips1720168783] +centroid = (0.73722288725219998, -1.5590876982414299) +description = Seward township, IL +station = ('kfep', 0.0032719701347132322) +zone = ('ilz003', 0.0027491547462722655) + +[fips1720169615] +centroid = (0.7412748087370451, -1.5569688685295089) +description = Shirland township, IL +station = ('kjvl', 0.0033781946962861075) +zone = ('ilz003', 0.0024427598990171182) + +[fips1720182504] +centroid = (0.73735418837182765, -1.5573022438699322) +description = Winnebago township, IL +station = ('krfd', 0.0018354255240079912) +zone = ('ilz003', 0.0017716351312373087) + +[fips1720292] +centroid = (0.72658534980738987, -1.5288532548893772) +description = Dolton village, IL +station = ('kigq', 0.0017871796980655633) +zone = ('ilz014', 0.0046460169914501201) + +[fips17203] +centroid = (0.71191275075830907, -1.5570134791451899) +description = Woodford County, IL +station = ('kc75', 0.004631374380557168) +zone = ('ilz031', 2.6554069936796921e-05) + +[fips1720305] +centroid = (0.65200455107640642, -1.5562226355545263) +description = Dongola village, IL +station = ('kcir', 0.0051637393406973727) +zone = ('ilz088', 0.0023506480613180252) + +[fips1720311878] +centroid = (0.71342722531014191, -1.5592034484774222) +description = Cazenovia township, IL +station = ('kc75', 0.0025800497697128456) +zone = ('ilz031', 0.0022536154774647874) + +[fips1720314793] +centroid = (0.71353280027659516, -1.5551526614565911) +description = Clayton township, IL +station = ('kc75', 0.0044253847418293619) +zone = ('ilz031', 0.0021716452996901727) + +[fips1720317861] +centroid = (0.71028366043449742, -1.5585058752819854) +description = Cruger township, IL +station = ('kpia', 0.0051550544926480847) +zone = ('ilz031', 0.0019570097298652863) + +[fips1720318] +centroid = (0.68121431162461332, -1.5616260701989455) +description = Donnellson village, IL +station = ('k3lf', 0.0035493194585812398) +zone = ('ilz064', 0.0025667340165867847) + +[fips1720323750] +centroid = (0.71038358053417416, -1.553750097416396) +description = El Paso township, IL +station = ('kbmi', 0.0041780258174445835) +zone = ('ilz031', 0.0029033739505782323) + +[fips1720331] +centroid = (0.71358022087237183, -1.5291534864273053) +description = Donovan village, IL +station = ('kikk', 0.0044654556617538888) +zone = ('ilz033', 0.0036731599842215468) + +[fips1720331355] +centroid = (0.71205988201425208, -1.5549723689448602) +description = Greene township, IL +station = ('kc75', 0.0054623133107208717) +zone = ('ilz031', 0.0015652513449087803) + +[fips1720339012] +centroid = (0.70927812389254596, -1.5552677833740527) +description = Kansas township, IL +station = ('kbmi', 0.0038226615961973833) +zone = ('ilz031', 0.0029312832396188584) + +[fips1720343835] +centroid = (0.71352150799633474, -1.557136472497578) +description = Linn township, IL +station = ('kc75', 0.003273496668713152) +zone = ('ilz031', 0.0016352047932008881) + +[fips1720348619] +centroid = (0.71208510202194331, -1.559059964959616) +description = Metamora township, IL +station = ('kc75', 0.0039121513946187465) +zone = ('ilz031', 0.0015512891170215502) + +[fips1720349581] +centroid = (0.71360542342677058, -1.5532587872319594) +description = Minonk township, IL +station = ('kpnt', 0.004921948212723559) +zone = ('ilz031', 0.0033283226191777966) + +[fips1720350231] +centroid = (0.70940418902441749, -1.5572671452986748) +description = Montgomery township, IL +station = ('kbmi', 0.0050476712951825929) +zone = ('ilz031', 0.0024908326237273971) + +[fips1720355821] +centroid = (0.71056935337975646, -1.5572137033169786) +description = Olio township, IL +station = ('kc75', 0.0057745171165783657) +zone = ('ilz031', 0.0013265598782778157) + +[fips1720357290] +centroid = (0.71021379490454017, -1.5553031262914057) +description = Palestine township, IL +station = ('kbmi', 0.0045720033057979961) +zone = ('ilz031', 0.0021239328916974496) + +[fips1720357537] +centroid = (0.71202516741542987, -1.5531297899469445) +description = Panola township, IL +station = ('kpnt', 0.0052777723311936663) +zone = ('ilz031', 0.0029540078952596544) + +[fips1720358018] +centroid = (0.71325323343701064, -1.5613904682032189) +description = Partridge township, IL +station = ('kc75', 0.0028423206906463875) +zone = ('ilz030', 0.0032901138348335668) + +[fips1720364603] +centroid = (0.71195914160982698, -1.5571506620243964) +description = Roanoke township, IL +station = ('kc75', 0.0045397033100632207) +zone = ('ilz031', 0.00011709829104448769) + +[fips1720370] +centroid = (0.68217736685257135, -1.5688375263220908) +description = Dorchester village, IL +station = ('k3lf', 0.003180884403057963) +zone = ('ilz059', 0.003096277159708984) + +[fips1720371611] +centroid = (0.71187122937540404, -1.5625870659383863) +description = Spring Bay township, IL +station = ('kpia', 0.0029255815353652933) +zone = ('ilz029', 0.0030440803384891436) + +[fips1720383544] +centroid = (0.71213391888112165, -1.5610279284109947) +description = Worth township, IL +station = ('kc75', 0.0038518312960563756) +zone = ('ilz031', 0.003038514977319592) + +[fips1720526] +centroid = (0.7231602284168136, -1.560253106942864) +description = Dover village, IL +station = ('kvys', 0.0034877029597916672) +zone = ('ilz017', 0.0018146666271077715) + +[fips1720565] +centroid = (0.66217046565074267, -1.5575236039789628) +description = Dowell village, IL +station = ('kmdh', 0.0027307110311661476) +zone = ('ilz080', 0.0030682040325032971) + +[fips1720591] +centroid = (0.72946083210992807, -1.5362603100617933) +description = Downers Grove village, IL +station = ('klot', 0.0033941963257792074) +zone = ('ilz013', 0.001300701014527357) + +[fips1720643] +centroid = (0.70510060851472756, -1.5514423532662389) +description = Downs village, IL +station = ('kbmi', 0.0013946006759091038) +zone = ('ilz038', 0.0016998202194014119) + +[fips1720890] +centroid = (0.66708923981517565, -1.5570580548542858) +description = Du Bois village, IL +station = ('kenl', 0.0053790295395911318) +zone = ('ilz080', 0.0032013957130031566) + +[fips1721098] +centroid = (0.70670865016775986, -1.5713564029518614) +description = Dunfermline village, IL +station = ('kpia', 0.0055432703205300906) +zone = ('ilz036', 0.0023511646113922179) + +[fips1721176] +centroid = (0.71309849254552893, -1.5651909924626066) +description = Dunlap village, IL +station = ('kpia', 0.0033317934128237474) +zone = ('ilz029', 0.0016179176405388739) + +[fips1721254] +centroid = (0.67226499625867231, -1.5744308353358345) +description = Dupo village, IL +station = ('kcps', 0.0011641177983840107) +zone = ('moz064', 0.0021171864301940692) + +[fips1721267] +centroid = (0.66325511796768699, -1.5574068589052967) +description = Du Quoin city, IL +station = ('kmdh', 0.0038188699864040001) +zone = ('ilz080', 0.0023362334284043351) + +[fips1721280] +centroid = (0.74061605166417221, -1.5590413248432045) +description = Durand village, IL +station = ('keft', 0.0046391760598487111) +zone = ('ilz003', 0.0027340222492882394) + +[fips1721358] +centroid = (0.71729983166763711, -1.5433055061203937) +description = Dwight village, IL +station = ('kpnt', 0.0040318078352502649) +zone = ('ilz021', 0.003258686255166687) + +[fips1721410] +centroid = (0.68257556372141381, -1.5669395854803021) +description = Eagarville village, IL +station = ('k3lf', 0.0016962004370803503) +zone = ('ilz059', 0.0033065937783922608) + +[fips1721540] +centroid = (0.72584864633012314, -1.5519979439270264) +description = Earlville city, IL +station = ('kvys', 0.0051029659524376722) +zone = ('ilz019', 0.0042888997982861764) + +[fips1721553] +centroid = (0.67865592074057757, -1.5726802875493768) +description = East Alton village, IL +station = ('kaln', 0.00083449276091460893) +zone = ('ilz100', 0.0029147580159159668) + +[fips1721579] +centroid = (0.71859895004306662, -1.5405222993754086) +description = East Brooklyn village, IL +station = ('kc09', 0.0048445516535056037) +zone = ('ilz021', 0.0028058785413746742) + +[fips1721605] +centroid = (0.65090317850522783, -1.5617238959035198) +description = East Cape Girardeau village, IL +station = ('kcgi', 0.0017815744292190938) +zone = ('ilz092', 0.0026693877779552519) + +[fips1721618] +centroid = (0.67267802842615676, -1.5750287851375679) +description = East Carondelet village, IL +station = ('kcps', 0.0013361263487578544) +zone = ('moz064', 0.0016442439048364116) + +[fips1721683] +centroid = (0.74158593112950555, -1.5818087435097428) +description = East Dubuque city, IL +station = ('kdbq', 0.0018010877503180571) +zone = ('iaz042', 0.0032570930925594219) + +[fips1721696] +centroid = (0.73473876012783657, -1.5402125208864719) +description = East Dundee village, IL +station = ('kdpa', 0.0034459352730275786) +zone = ('ilz012', 0.00362705221627945) + +[fips1721826] +centroid = (0.71460410082476178, -1.5762413526353909) +description = East Galesburg village, IL +station = ('kgbg', 0.0015738554479873446) +zone = ('ilz027', 0.0013177630474696593) + +[fips1721852] +centroid = (0.68308380359959464, -1.5675270633065235) +description = East Gillespie village, IL +station = ('k3lf', 0.0019189426236702854) +zone = ('ilz059', 0.0026277812066704681) + +[fips1721904] +centroid = (0.72563458169736605, -1.5297858541218878) +description = East Hazel Crest village, IL +station = ('kigq', 0.001663543669149574) +zone = ('inz001', 0.0044882460018061138) + +[fips1722073] +centroid = (0.72465698787673893, -1.5775641725820626) +description = East Moline city, IL +station = ('kmli', 0.0020793807236498441) +zone = ('ilz015', 0.0025200410856828065) + +[fips1722151] +centroid = (0.70218224347246772, -1.5680314460070572) +description = Easton village, IL +station = ('kspi', 0.0069957559626738818) +zone = ('ilz041', 0.0010109435917690832) + +[fips1722164] +centroid = (0.70988434655493371, -1.5627985998437279) +description = East Peoria city, IL +station = ('kpia', 0.0018777354989673034) +zone = ('ilz037', 0.0029192343538774366) + +[fips1722255] +centroid = (0.67397522693940903, -1.573054747940392) +description = East St. Louis city, IL +station = ('kcps', 0.00090467479436574186) +zone = ('moz064', 0.0016139315040079334) + +[fips1722398] +centroid = (0.65450180307674488, -1.5461009476234355) +description = Eddyville village, IL +station = ('khsb', 0.0054540234282256725) +zone = ('ilz090', 0.0015632081140324987) + +[fips1722567] +centroid = (0.67931469526674271, -1.5474800544384837) +description = Edgewood village, IL +station = ('k1h2', 0.0031432296852879071) +zone = ('ilz066', 0.0026076387705991659) + +[fips1722645] +centroid = (0.69216075489373408, -1.560151930206126) +description = Edinburg village, IL +station = ('ktaz', 0.0023164411351678164) +zone = ('ilz052', 0.0024756986350807958) + +[fips1722697] +centroid = (0.67702779034785465, -1.5705974465266319) +description = Edwardsville city, IL +station = ('kaln', 0.0020800528598019863) +zone = ('ilz100', 0.0013246195226037855) + +[fips1722736] +centroid = (0.68276844005705184, -1.5455046907910766) +description = Effingham city, IL +station = ('k1h2', 0.00089095265460886622) +zone = ('ilz066', 0.0011737227544329606) + +[fips1722931] +centroid = (0.73079655003977184, -1.5438067646815667) +description = Elburn village, IL +station = ('karr', 0.00183855719608174) +zone = ('ilz012', 0.0012207555540132413) + +[fips1722957] +centroid = (0.69154650371678705, -1.5880957336346917) +description = El Dara village, IL +station = ('kppq', 0.0028750516306436484) +zone = ('ilz097', 0.0014100095990858159) + +[fips1723009] +centroid = (0.65993911456194543, -1.5435967317593817) +description = Eldorado city, IL +station = ('khsb', 0.0014835138915878568) +zone = ('ilz086', 0.0017067843092754198) + +[fips1723022] +centroid = (0.68567268538566273, -1.5804650145186321) +description = Eldred village, IL +station = ('kset', 0.0063708860610675556) +zone = ('ilz058', 0.0025232120692000887) + +[fips1723074] +centroid = (0.73373011689981649, -1.5415046230383085) +description = Elgin city, IL +station = ('kdpa', 0.0026087611800750306) +zone = ('ilz012', 0.0022386617631580397) + +[fips1723165] +centroid = (0.73856349210394945, -1.5746091207189259) +description = Elizabeth village, IL +station = ('ksfy', 0.0049373225112164156) +zone = ('ilz001', 0.00086113378360353073) + +[fips1723191] +centroid = (0.65361449513832348, -1.5411971832905698) +description = Elizabethtown village, IL +station = ('khsb', 0.0071694797837583849) +zone = ('ilz091', 0.0013073839916182314) + +[fips1723256] +centroid = (0.73313913096179861, -1.535768162119316) +description = Elk Grove Village village, IL +station = ('kord', 0.0010652375188012837) +zone = ('ilz013', 0.0029413094542832647) + +[fips1723269] +centroid = (0.69837351616559562, -1.5616365421744576) +description = Elkhart village, IL +station = ('kaaa', 0.0031443556687893439) +zone = ('ilz042', 0.0024070681988934478) + +[fips1723373] +centroid = (0.66164391726870853, -1.5574832345133642) +description = Elkville village, IL +station = ('kmdh', 0.0022073911110012017) +zone = ('ilz084', 0.0029472655984492191) + +[fips1723425] +centroid = (0.7062710612177, -1.5407180205977271) +description = Elliott village, IL +station = ('ktip', 0.0035028732797655763) +zone = ('ilz039', 0.0023908474074607338) + +[fips1723503] +centroid = (0.66340327896788875, -1.5692700014574426) +description = Ellis Grove village, IL +station = ('ksar', 0.0038075154849060914) +zone = ('ilz079', 0.0014047254455136463) + +[fips1723529] +centroid = (0.70908030827512492, -1.5761377673442851) +description = Ellisville village, IL +station = ('kmqb', 0.0049583338626120422) +zone = ('ilz036', 0.0029966562723011381) + +[fips1723555] +centroid = (0.70597775863690226, -1.5483880794351266) +description = Ellsworth village, IL +station = ('kbmi', 0.0026949674481922237) +zone = ('ilz038', 0.001884918676531484) + +[fips1723620] +centroid = (0.73122345757480967, -1.5349063883478513) +description = Elmhurst city, IL +station = ('kord', 0.0015637090520400671) +zone = ('ilz014', 0.0019188891485788927) + +[fips1723698] +centroid = (0.71175237245334311, -1.5701954971998975) +description = Elmwood city, IL +station = ('kpia', 0.0042282601700715022) +zone = ('ilz029', 0.0027200279783433823) + +[fips1723724] +centroid = (0.73168502734879204, -1.5326838686250692) +description = Elmwood Park village, IL +station = ('kord', 0.0016808378920232785) +zone = ('ilz014', 0.0014410222380706807) + +[fips1723737] +centroid = (0.711057382345199, -1.553659026136027) +description = El Paso city, IL +station = ('kbmi', 0.0047968178103804052) +zone = ('ilz031', 0.0026831563340426472) + +[fips1723776] +centroid = (0.67987616768710923, -1.5769990000636815) +description = Elsah village, IL +station = ('kset', 0.0011180753341230069) +zone = ('ilz099', 0.0022963013398108142) + +[fips1723841] +centroid = (0.70503613605215876, -1.5925918588674615) +description = Elvaston village, IL +station = ('keok', 0.0027476088472110673) +zone = ('ilz034', 0.0011266182033676329) + +[fips1723945] +centroid = (0.72269005416961873, -1.5381117902388941) +description = Elwood village, IL +station = ('kjot', 0.0020357818647848019) +zone = ('ilz022', 0.0020543292963371659) + +[fips1723971] +centroid = (0.70333622026730136, -1.5618087538117518) +description = Emden village, IL +station = ('kaaa', 0.003151665050403765) +zone = ('ilz042', 0.0034119035443464256) + +[fips1724062] +centroid = (0.71506471066765565, -1.5421344250988906) +description = Emington village, IL +station = ('kpnt', 0.0036186758549056099) +zone = ('ilz032', 0.0029742638224471477) + +[fips1724166] +centroid = (0.65931238428084682, -1.5537469558237424) +description = Energy village, IL +station = ('kmwa', 0.00053953393458379623) +zone = ('ilz085', 0.0015121955358123954) + +[fips1724179] +centroid = (0.66500390297160028, -1.5417913631811186) +description = Enfield village, IL +station = ('kcul', 0.0029622562153832151) +zone = ('ilz083', 0.0021934684444594602) + +[fips1724348] +centroid = (0.65863334648206584, -1.5418624504415523) +description = Equality village, IL +station = ('khsb', 0.0031370683882865676) +zone = ('ilz087', 0.0016064836426497677) + +[fips1724374] +centroid = (0.72707948742521444, -1.5722153492899382) +description = Erie village, IL +station = ('kcwi', 0.0044802850197764969) +zone = ('ilz009', 0.0027667541700681828) + +[fips1724452] +centroid = (0.71877987087332829, -1.539247179277194) +description = Essex village, IL +station = ('kikk', 0.0049484140734594052) +zone = ('ilz021', 0.0034596422186265875) + +[fips1724543] +centroid = (0.71059413705513474, -1.5581778755556579) +description = Eureka city, IL +station = ('kpia', 0.0054403500384940786) +zone = ('ilz031', 0.0015603329497760107) + +[fips1724582] +centroid = (0.73384796153091114, -1.5305551952561669) +description = Evanston city, IL +station = ('kord', 0.0030857426983467544) +zone = ('ilz014', 0.0039384157232403251) + +[fips1724608] +centroid = (0.66477924419028356, -1.5696189800413787) +description = Evansville village, IL +station = ('ksar', 0.0033776744399686303) +zone = ('ilz079', 0.0016084411018749563) + +[fips1724634] +centroid = (0.72817368669316729, -1.5306769668780784) +description = Evergreen Park village, IL +station = ('kmdw', 0.0012548305176916432) +zone = ('ilz014', 0.0025575100998269733) + +[fips1724673] +centroid = (0.66478468961754977, -1.5507632631075803) +description = Ewing village, IL +station = ('kmvn', 0.0039722673913278588) +zone = ('ilz081', 0.0019619572661794329) + +[fips1724699] +centroid = (0.69322852987681161, -1.5794537358434415) +description = Exeter village, IL +station = ('kijx', 0.0035858166250623872) +zone = ('ilz049', 0.0013377600566895362) + +[fips1724764] +centroid = (0.71114630687058822, -1.5449332176340962) +description = Fairbury city, IL +station = ('kpnt', 0.0034124622898461647) +zone = ('ilz032', 0.0025966127275936432) + +[fips1724816] +centroid = (0.66984326465506761, -1.5423736573794613) +description = Fairfield city, IL +station = ('kfwc', 0.00056484078537059174) +zone = ('ilz076', 0.0011482338890505639) + +[fips1724920] +centroid = (0.72538054902473825, -1.5369156811959173) +description = Fairmont CDP, IL +station = ('klot', 0.00094278444792908543) +zone = ('ilz022', 0.002282958808282119) + +[fips1724933] +centroid = (0.67450802360016526, -1.5725445009335717) +description = Fairmont City village, IL +station = ('kcps', 0.0015497278368736143) +zone = ('moz064', 0.0019832103906350274) + +[fips1724985] +centroid = (0.69892696007140309, -1.5329105345350256) +description = Fairmount village, IL +station = ('kdnv', 0.0041164176009906477) +zone = ('ilz046', 0.002731266174833174) + +[fips1725063] +centroid = (0.70955898227577696, -1.5739931591193121) +description = Fairview village, IL +station = ('kgbg', 0.0059316328161428287) +zone = ('ilz036', 0.0031917156268475482) + +[fips1725141] +centroid = (0.67361120361732052, -1.570886001811864) +description = Fairview Heights city, IL +station = ('kcps', 0.0020377184418316099) +zone = ('ilz101', 0.0024167118380309439) + +[fips1725375] +centroid = (0.67770726447894847, -1.5495195414826093) +description = Farina village, IL +station = ('kslo', 0.0041077865539875065) +zone = ('ilz070', 0.0036634373810067733) + +[fips1725414] +centroid = (0.70246179285875965, -1.5470906016691939) +description = Farmer City city, IL +station = ('kbmi', 0.005407203094704994) +zone = ('ilz044', 0.0042033037507435353) + +[fips1725440] +centroid = (0.68840997251802805, -1.5647266999749911) +description = Farmersville village, IL +station = ('ktaz', 0.0046510489625168454) +zone = ('ilz060', 0.0043776464587328085) + +[fips1725531] +centroid = (0.71029945566422803, -1.5708536783141172) +description = Farmington city, IL +station = ('kpia', 0.0042680557030322953) +zone = ('ilz029', 0.0035873077478554721) + +[fips1725713] +centroid = (0.66981919656468258, -1.5672548617563824) +description = Fayetteville village, IL +station = ('kblv', 0.0030909947523636338) +zone = ('ilz101', 0.0024144128175166185) + +[fips1725895] +centroid = (0.70632682448730111, -1.5911876716710622) +description = Ferris village, IL +station = ('kfsw', 0.0040769639550564995) +zone = ('ilz034', 0.0011502451912116596) + +[fips1725960] +centroid = (0.68337705382051461, -1.5736628381050795) +description = Fidelity village, IL +station = ('kaln', 0.0047061690532254393) +zone = ('ilz099', 0.0028697800709488333) + +[fips1726012] +centroid = (0.68257552881482875, -1.5795154157792071) +description = Fieldon village, IL +station = ('kset', 0.0031897212809773594) +zone = ('ilz099', 0.0019780171946655483) + +[fips1726077] +centroid = (0.68269199463581431, -1.5582039682279751) +description = Fillmore village, IL +station = ('k3lf', 0.0054218093452731847) +zone = ('ilz060', 0.0033799851543207778) + +[fips1726116] +centroid = (0.68979497854594818, -1.549059891570804) +description = Findlay village, IL +station = ('kdec', 0.005632746483504601) +zone = ('ilz061', 0.002391105078450383) + +[fips1726194] +centroid = (0.70363905234581492, -1.5419923727510707) +description = Fisher village, IL +station = ('ktip', 0.0027837234026596882) +zone = ('ilz045', 0.0036608077169009547) + +[fips1726233] +centroid = (0.7001276767836051, -1.5337076264044114) +description = Fithian village, IL +station = ('ktip', 0.0047439085336129427) +zone = ('ilz046', 0.0022478443475859151) + +[fips1726311] +centroid = (0.71344185116927372, -1.550898892643753) +description = Flanagan village, IL +station = ('kpnt', 0.0032001346549514948) +zone = ('ilz032', 0.0039947792240725959) + +[fips1726350] +centroid = (0.6789973769554376, -1.5301890600856833) +description = Flat Rock village, IL +station = ('krsv', 0.0019835221498339948) +zone = ('ilz068', 0.002087821600551841) + +[fips1726454] +centroid = (0.67484232396509225, -1.54415987969583) +description = Flora city, IL +station = ('kfoa', 0.00028350296734376367) +zone = ('ilz071', 0.0015620297727439649) + +[fips1726467] +centroid = (0.66979251048041955, -1.5717622792694128) +description = Floraville CDP, IL +station = ('kcps', 0.0035656614061884075) +zone = ('ilz102', 0.002388596977990958) + +[fips1726480] +centroid = (0.69165115365873675, -1.5814550001769485) +description = Florence village, IL +station = ('kppq', 0.0022602889449207988) +zone = ('ilz049', 0.0018478541774997216) + +[fips1726571] +centroid = (0.72499444728761198, -1.5304042068225769) +description = Flossmoor village, IL +station = ('kigq', 0.0020050805012383076) +zone = ('ilz022', 0.0041678556867438318) + +[fips1726662] +centroid = (0.70443446869911885, -1.5433802585722567) +description = Foosland village, IL +station = ('ktip', 0.0039922468364373019) +zone = ('ilz045', 0.004926827975552355) + +[fips1726710] +centroid = (0.72450184555952901, -1.5285843171049374) +description = Ford Heights village, IL +station = ('kigq', 0.00081939610858393157) +zone = ('inz001', 0.0030968615625705433) + +[fips1726753] +centroid = (0.70462708323536882, -1.5678728653912211) +description = Forest City village, IL +station = ('kpia', 0.0055079783211809735) +zone = ('ilz041', 0.0025697368965426522) + +[fips1726896] +centroid = (0.73671911541690438, -1.5368243481161605) +description = Forest Lake CDP, IL +station = ('kpwk', 0.0025788976859513336) +zone = ('ilz006', 0.0020618547037189747) + +[fips1726935] +centroid = (0.7307409089432183, -1.5326724541717611) +description = Forest Park village, IL +station = ('kmdw', 0.00171232907623436) +zone = ('ilz014', 0.00049707807774122283) + +[fips1726987] +centroid = (0.72970639993568365, -1.5319292231630919) +description = Forest View village, IL +station = ('kmdw', 0.00054071641237857042) +zone = ('ilz014', 0.00078160026532334362) + +[fips1727026] +centroid = (0.71123723852461707, -1.543040058994458) +description = Forrest village, IL +station = ('kpnt', 0.0041463057302546149) +zone = ('ilz032', 0.0031370427284259615) + +[fips1727065] +centroid = (0.7352465811269967, -1.5634353308614404) +description = Forreston village, IL +station = ('kfep', 0.0020926339372148968) +zone = ('ilz002', 0.0040780324920135537) + +[fips1727091] +centroid = (0.69684249589245362, -1.5527170893920179) +description = Forsyth village, IL +station = ('kdec', 0.0020802815353051425) +zone = ('ilz053', 0.0011564615280028881) + +[fips1727442] +centroid = (0.7404810155399455, -1.5390648447302382) +description = Fox Lake village, IL +station = ('kenw', 0.0044050247500179258) +zone = ('ilz006', 0.0029221855991935202) + +[fips1727455] +centroid = (0.74025520484132246, -1.53808862971972) +description = Fox Lake Hills CDP, IL +station = ('kenw', 0.0040914227549358915) +zone = ('ilz006', 0.0022315853195148572) + +[fips1727533] +centroid = (0.73644914788820592, -1.5396334904538302) +description = Fox River Grove village, IL +station = ('kdpa', 0.0051766773337490095) +zone = ('ilz006', 0.0035195170005500966) + +[fips1727624] +centroid = (0.72416052897100913, -1.5330869175092323) +description = Frankfort village, IL +station = ('kigq', 0.0041033481873241464) +zone = ('ilz022', 0.0019931447718682846) + +[fips1727644] +centroid = (0.72469714790282724, -1.5324623339831136) +description = Frankfort Square CDP, IL +station = ('kigq', 0.0035597458581355787) +zone = ('ilz022', 0.0026552436335453258) + +[fips1727663] +centroid = (0.69152142333543598, -1.5716304720043022) +description = Franklin village, IL +station = ('kijx', 0.0036998052747115331) +zone = ('ilz050', 0.002641100680057116) + +[fips1727689] +centroid = (0.73026223494256637, -1.5585889529543802) +description = Franklin Grove village, IL +station = ('krpj', 0.0030282941021511855) +zone = ('ilz010', 0.0016553403192438002) + +[fips1727702] +centroid = (0.7319215543690224, -1.5337812967521383) +description = Franklin Park village, IL +station = ('kord', 0.00095840049636780828) +zone = ('ilz014', 0.0018637317357535807) + +[fips1727806] +centroid = (0.67090915468255308, -1.5693393608419168) +description = Freeburg village, IL +station = ('kblv', 0.0021199023232748647) +zone = ('ilz101', 0.00054880570545865306) + +[fips1727858] +centroid = (0.66078106139310744, -1.5533406082672929) +description = Freeman Spur village, IL +station = ('kmwa', 0.0019144982424225334) +zone = ('ilz085', 0.0024602056573657044) + +[fips1727884] +centroid = (0.73809169470055025, -1.5644402914447386) +description = Freeport city, IL +station = ('kfep', 0.0010229799565960199) +zone = ('ilz002', 0.0011382123114286181) + +[fips1728144] +centroid = (0.73067858323562951, -1.5735377678108815) +description = Fulton city, IL +station = ('kcwi', 0.0023564551833744332) +zone = ('ilz009', 0.0036846479143493945) + +[fips1728170] +centroid = (0.66608907888732027, -1.5745104747096033) +description = Fults village, IL +station = ('ksar', 0.0070617663428073456) +zone = ('ilz102', 0.0020549457980347215) + +[fips1728248] +centroid = (0.73917564888579379, -1.5355832095784823) +description = Gages Lake CDP, IL +station = ('kugn', 0.0018749298963001532) +zone = ('ilz006', 0.00056811384018714281) + +[fips1728261] +centroid = (0.6604670941139662, -1.5466493824342897) +description = Galatia village, IL +station = ('khsb', 0.001070602096257478) +zone = ('ilz086', 0.0018667630782439268) + +[fips1728300] +centroid = (0.74041570531933576, -1.5783051172094116) +description = Galena city, IL +station = ('kdbq', 0.0034988904443562971) +zone = ('ilz001', 0.0029798790714959237) + +[fips1728326] +centroid = (0.71471611605615482, -1.5773686084393765) +description = Galesburg city, IL +station = ('kgbg', 0.00074978370702002864) +zone = ('ilz027', 0.0021763324779342616) + +[fips1728430] +centroid = (0.71853739228034874, -1.5714464095813867) +description = Galva city, IL +station = ('kgbg', 0.0065681989770627553) +zone = ('ilz028', 0.0034178223420115897) + +[fips1728612] +centroid = (0.73746480733981901, -1.5483325954182057) +description = Garden Prairie village, IL +station = ('kdkb', 0.0056146296888968227) +zone = ('ilz004', 0.0018722009222889662) + +[fips1728638] +centroid = (0.71898723344175786, -1.5413668467471562) +description = Gardner village, IL +station = ('kc09', 0.0042485289957682878) +zone = ('ilz021', 0.0020864152208156283) + +[fips1728742] +centroid = (0.6945870418066864, -1.54329786157827) +description = Garrett village, IL +station = ('kcmi', 0.0046356219611138) +zone = ('ilz055', 0.0028179727008205181) + +[fips1728807] +centroid = (0.68867475641884823, -1.5445521598985081) +description = Gays village, IL +station = ('kmto', 0.0030980641087740143) +zone = ('ilz054', 0.0036016697816112237) + +[fips1728846] +centroid = (0.72343817210019368, -1.5734749534111023) +description = Geneseo city, IL +station = ('kmli', 0.0047512232002175558) +zone = ('ilz016', 0.0017149447481468057) + +[fips1728872] +centroid = (0.73098005395732657, -1.5416377567536506) +description = Geneva city, IL +station = ('kdpa', 0.0010772322859949851) +zone = ('ilz012', 0.0016287421657270409) + +[fips1728898] +centroid = (0.73462714632217141, -1.5480191517378399) +description = Genoa city, IL +station = ('kdkb', 0.0027820614082283831) +zone = ('ilz011', 0.003585496809034906) + +[fips1728950] +centroid = (0.70615731811034743, -1.5833168301565133) +description = Georgetown CDP, IL +station = ('kmqb', 0.0013617513125573494) +zone = ('ilz035', 0.00052668868387663337) + +[fips1728963] +centroid = (0.69773737855982876, -1.5295259745962659) +description = Georgetown city, IL +station = ('kdnv', 0.0039116035889611633) +zone = ('inz043', 0.0031492209535467263) + +[fips1729041] +centroid = (0.67291584699003359, -1.5627767832280779) +description = Germantown village, IL +station = ('kblv', 0.0042251941343663234) +zone = ('ilz069', 0.0018432191404950077) + +[fips1729080] +centroid = (0.71159812025405189, -1.56140460537016) +description = Germantown Hills village, IL +station = ('kpia', 0.0034543514519283411) +zone = ('ilz031', 0.0033271928153264709) + +[fips1729093] +centroid = (0.73677728724087344, -1.5618022262803493) +description = German Valley village, IL +station = ('kfep', 0.0013799302015282222) +zone = ('ilz002', 0.0033209999676233485) + +[fips1729125] +centroid = (0.70627917699872167, -1.5425023230519184) +description = Gibson City city, IL +station = ('ktip', 0.0043605798508618565) +zone = ('ilz039', 0.0030720361437671399) + +[fips1729145] +centroid = (0.70350467944670381, -1.5362620728443379) +description = Gifford village, IL +station = ('ktip', 0.001631876569932487) +zone = ('ilz045', 0.0037661209571443473) + +[fips1729171] +centroid = (0.73494502313883714, -1.5423858048710553) +description = Gilberts village, IL +station = ('kdpa', 0.0039811095153880248) +zone = ('ilz012', 0.0030603636900611367) + +[fips1729236] +centroid = (0.68286766202502769, -1.5676073135455302) +description = Gillespie city, IL +station = ('k3lf', 0.0020373004896053998) +zone = ('ilz059', 0.0027744589746385323) + +[fips1729275] +centroid = (0.71161012811930568, -1.5356173482186513) +description = Gilman city, IL +station = ('kikk', 0.0055289591456983258) +zone = ('ilz033', 0.0021604442449969456) + +[fips1729340] +centroid = (0.71319383988256535, -1.5742837215331842) +description = Gilson CDP, IL +station = ('kgbg', 0.0033206197892178767) +zone = ('ilz027', 0.0012139492757057078) + +[fips1729392] +centroid = (0.68847256002500468, -1.5669923293302974) +description = Girard city, IL +station = ('k3lf', 0.0051712225299548886) +zone = ('ilz059', 0.0037657544903609915) + +[fips1729431] +centroid = (0.71321157242776556, -1.5874939964684813) +description = Gladstone village, IL +station = ('kbrl', 0.0028861500764315725) +zone = ('ilz025', 0.0009034888522545531) + +[fips1729483] +centroid = (0.70812734105024344, -1.5675356852330284) +description = Glasford village, IL +station = ('kpia', 0.0023766045494793544) +zone = ('ilz029', 0.0038246257419438426) + +[fips1729496] +centroid = (0.69025532658945432, -1.5791737675781292) +description = Glasgow village, IL +station = ('kijx', 0.005099147090881561) +zone = ('ilz049', 0.0016680117633659365) + +[fips1729639] +centroid = (0.67645900499792211, -1.5705017326704525) +description = Glen Carbon village, IL +station = ('kaln', 0.0026358867078799695) +zone = ('ilz100', 0.0016402496174110057) + +[fips1729652] +centroid = (0.73538556169533309, -1.5317564181138519) +description = Glencoe village, IL +station = ('kpwk', 0.0017982269102347498) +zone = ('ilz006', 0.0045266561954477209) + +[fips1729730] +centroid = (0.73162242238852304, -1.537252756634355) +description = Glendale Heights village, IL +station = ('kdpa', 0.0022570098398279489) +zone = ('ilz013', 0.0011713992651237015) + +[fips1729756] +centroid = (0.73071202374409772, -1.5369842551822281) +description = Glen Ellyn village, IL +station = ('kdpa', 0.002502022535780221) +zone = ('ilz013', 0.00039403081883730853) + +[fips1729938] +centroid = (0.73451982602646626, -1.5328676692485967) +description = Glenview village, IL +station = ('kpwk', 0.0010977458833986303) +zone = ('ilz014', 0.0042778401052812019) + +[fips1730029] +centroid = (0.72502244236881397, -1.5291029940520451) +description = Glenwood village, IL +station = ('kigq', 0.0010311320550757796) +zone = ('inz001', 0.0037109310353979825) + +[fips1730094] +centroid = (0.67985623602705159, -1.5746804872320397) +description = Godfrey village, IL +station = ('kaln', 0.0025181225532972416) +zone = ('ilz099', 0.0029443140528341103) + +[fips1730120] +centroid = (0.71985017658382133, -1.5401242595861986) +description = Godley village, IL +station = ('kc09', 0.003909981075462087) +zone = ('ilz021', 0.0024133549505338807) + +[fips1730133] +centroid = (0.65209230623119663, -1.5443846257436094) +description = Golconda city, IL +station = ('km30', 0.0047848820318257667) +zone = ('ilz090', 0.0013605421146062793) + +[fips1730159] +centroid = (0.70005559468549772, -1.5885839545863518) +description = Golden village, IL +station = ('kuin', 0.0039210640277090644) +zone = ('ilz095', 0.0031130332014100365) + +[fips1730250] +centroid = (0.66948885809715752, -1.5394642633295568) +description = Golden Gate village, IL +station = ('kfwc', 0.0028666343477920324) +zone = ('ilz077', 0.0023049203961826954) + +[fips1730328] +centroid = (0.73406015866136853, -1.5321362541189636) +description = Golf village, IL +station = ('kpwk', 0.0018027414381503934) +zone = ('ilz014', 0.0038383478470682981) + +[fips1730445] +centroid = (0.70913689184947448, -1.5578402416118597) +description = Goodfield village, IL +station = ('kpia', 0.0056718109763502188) +zone = ('ilz031', 0.0028196356233192135) + +[fips1730458] +centroid = (0.70786110852614426, -1.5825867065705266) +description = Good Hope village, IL +station = ('kmqb', 0.00071720735680739904) +zone = ('ilz035', 0.0017675174143408582) + +[fips1730510] +centroid = (0.70502393620068737, -1.5697619050538245) +description = Goofy Ridge CDP, IL +station = ('kpia', 0.0058444592463566562) +zone = ('ilz041', 0.0027273398146283189) + +[fips1730575] +centroid = (0.65539113559709861, -1.5529028971441854) +description = Goreville village, IL +station = ('kmwa', 0.0034944970655263149) +zone = ('ilz089', 0.002059738209176779) + +[fips1730588] +centroid = (0.65830410757196967, -1.5616856382863162) +description = Gorham village, IL +station = ('kmdh', 0.0033463205493628675) +zone = ('ilz084', 0.0017677475646263774) + +[fips1730653] +centroid = (0.68026811627722972, -1.5782294920929227) +description = Grafton city, IL +station = ('kset', 0.00076000687202209725) +zone = ('ilz099', 0.0021233979554165041) + +[fips1730705] +centroid = (0.73131309768519204, -1.5605528148820167) +description = Grand Detour CDP, IL +station = ('ksqi', 0.0042233094983057133) +zone = ('ilz008', 0.0027459692577920659) + +[fips1730757] +centroid = (0.71970634400016453, -1.550393933984566) +description = Grand Ridge village, IL +station = ('kvys', 0.0046816105348497419) +zone = ('ilz019', 0.0020137879426309602) + +[fips1730770] +centroid = (0.65697125198209916, -1.5621870190205365) +description = Grand Tower city, IL +station = ('kmdh', 0.0043216388964099489) +zone = ('ilz084', 0.0030389448276124881) + +[fips1730835] +centroid = (0.69494692869844765, -1.564131211087503) +description = Grandview village, IL +station = ('kspi', 0.0010417392606068749) +zone = ('ilz051', 0.0011710198884754004) + +[fips1730900] +centroid = (0.73986985359577451, -1.535658555442291) +description = Grandwood Park CDP, IL +station = ('kugn', 0.0016091488472089529) +zone = ('ilz006', 0.0012120412830044966) + +[fips1730926] +centroid = (0.67595350528666709, -1.5729862263139589) +description = Granite City city, IL +station = ('kcps', 0.0028578153305535564) +zone = ('moz064', 0.0023052280762113535) + +[fips1730978] +centroid = (0.67768529078366591, -1.5649900003459469) +description = Grantfork village, IL +station = ('kaln', 0.0053480904197544549) +zone = ('ilz100', 0.0032330242213595233) + +[fips1730991] +centroid = (0.7198217277170138, -1.5295736569914302) +description = Grant Park village, IL +station = ('kikk', 0.0040540230788730317) +zone = ('ilz023', 0.0034630387119808639) + +[fips1731017] +centroid = (0.72018643171751051, -1.5573606251334116) +description = Granville village, IL +station = ('kvys', 0.0018433219860820348) +zone = ('ilz018', 0.0012642189362039086) + +[fips1731121] +centroid = (0.73900019093609082, -1.536376042844493) +description = Grayslake village, IL +station = ('kugn', 0.0024568421018207054) +zone = ('ilz006', 0.00044962818783853242) + +[fips1731165] +centroid = (0.66767806154492104, -1.5358361252403887) +description = Grayville city, IL +station = ('kcul', 0.003370123480263464) +zone = ('ilz077', 0.0029198123076965361) + +[fips1731368] +centroid = (0.68669084065810626, -1.574429945217916) +description = Greenfield city, IL +station = ('kijx', 0.0075104874976030011) +zone = ('ilz058', 0.002468981943541399) + +[fips1731446] +centroid = (0.73820971386457013, -1.5343912544191252) +description = Green Oaks village, IL +station = ('kugn', 0.0021881961339234144) +zone = ('ilz006', 0.0012457626329866012) + +[fips1731524] +centroid = (0.68500588234493831, -1.5386827048905141) +description = Greenup village, IL +station = ('kmto', 0.004079656188857291) +zone = ('ilz062', 0.0011696816643490334) + +[fips1731563] +centroid = (0.70524058392073741, -1.5645793941861226) +description = Green Valley village, IL +station = ('kpia', 0.0045569228930532387) +zone = ('ilz037', 0.0024600545905680447) + +[fips1731576] +centroid = (0.69961454998351869, -1.5662684191164478) +description = Greenview village, IL +station = ('kspi', 0.004171700234508015) +zone = ('ilz048', 0.0012988941888232967) + +[fips1731589] +centroid = (0.67870180544661241, -1.5601403761264778) +description = Greenville city, IL +station = ('k3lf', 0.0061682643459563683) +zone = ('ilz064', 0.00062684617469947604) + +[fips1731667] +centroid = (0.73987233196331248, -1.5426870836065347) +description = Greenwood village, IL +station = ('kbuu', 0.0053309753459015279) +zone = ('ilz005', 0.001425831966897896) + +[fips1731732] +centroid = (0.7111144371584468, -1.5512598092797729) +description = Gridley village, IL +station = ('kpnt', 0.0046058755952703735) +zone = ('ilz038', 0.0044386920186614493) + +[fips1731771] +centroid = (0.69303294828083317, -1.5834898271919711) +description = Griggsville city, IL +station = ('kppq', 0.0013854579908781197) +zone = ('ilz097', 0.0026046184647860746) + +[fips1731992] +centroid = (0.7121339712409992, -1.5896836690947411) +description = Gulf Port village, IL +station = ('kbrl', 0.00091836610957979174) +zone = ('ilz025', 0.0020931448619576775) + +[fips1732018] +centroid = (0.73949705126754861, -1.5347976019755747) +description = Gurnee village, IL +station = ('kugn', 0.0012221064209829964) +zone = ('ilz006', 0.0011833947593923849) + +[fips1732200] +centroid = (0.73890610023611591, -1.5371716860905997) +description = Hainesville village, IL +station = ('kugn', 0.0030133897386880625) +zone = ('ilz006', 0.00092982188524170985) + +[fips1732395] +centroid = (0.68473612425575014, -1.5832828835025621) +description = Hamburg village, IL +station = ('kset', 0.0064705024190649532) +zone = ('ilz098', 0.0012807704653728614) + +[fips1732408] +centroid = (0.6787773782032237, -1.5680191937957082) +description = Hamel village, IL +station = ('kaln', 0.0028448717605651856) +zone = ('ilz100', 0.0013790719715268619) + +[fips1732434] +centroid = (0.70496438556660923, -1.5945555288088804) +description = Hamilton city, IL +station = ('keok', 0.0016240813238635877) +zone = ('ilz034', 0.0026218824593998206) + +[fips1732499] +centroid = (0.69464191495836913, -1.5462371356649687) +description = Hammond village, IL +station = ('kdec', 0.0037162575104611171) +zone = ('ilz054', 0.0027917892645985512) + +[fips1732525] +centroid = (0.73505766668876082, -1.5447066040840172) +description = Hampshire village, IL +station = ('kdkb', 0.0041502450992746201) +zone = ('ilz012', 0.0032394637305852474) + +[fips1732564] +centroid = (0.72528349126503477, -1.5778362694124484) +description = Hampton village, IL +station = ('kmli', 0.0023655417646158017) +zone = ('ilz015', 0.0026401782329019182) + +[fips1732616] +centroid = (0.66244322570624437, -1.5503937419983482) +description = Hanaford village, IL +station = ('kmwa', 0.0042762706350993468) +zone = ('ilz081', 0.0014362614174007172) + +[fips1732668] +centroid = (0.7102309165845021, -1.5672000409645772) +description = Hanna City village, IL +station = ('kpia', 0.0015357593362042364) +zone = ('ilz029', 0.0017155041057293709) + +[fips1732707] +centroid = (0.73748561166450266, -1.5755243713786717) +description = Hanover village, IL +station = ('ksfy', 0.0042140784347103524) +zone = ('ilz001', 0.0020778716474531668) + +[fips1732746] +centroid = (0.73271442254161845, -1.5383771850049524) +description = Hanover Park village, IL +station = ('kdpa', 0.001991873742128402) +zone = ('ilz013', 0.0023766876196861801) + +[fips1732850] +centroid = (0.68345377849443234, -1.581677006057802) +description = Hardin village, IL +station = ('kset', 0.004706779586457141) +zone = ('ilz098', 0.0006224539266674263) + +[fips1732967] +centroid = (0.72814094431639986, -1.5630492989374842) +description = Harmon village, IL +station = ('ksqi', 0.0015355345197149198) +zone = ('ilz010', 0.0033619115818004325) + +[fips1733136] +centroid = (0.65864741383583703, -1.5454160629716605) +description = Harrisburg city, IL +station = ('khsb', 0.0012866466352473161) +zone = ('ilz086', 0.00028065322384423987) + +[fips1733162] +centroid = (0.65969181886023032, -1.5592068518694637) +description = Harrison CDP, IL +station = ('kmdh', 0.0012114841845350457) +zone = ('ilz084', 0.00067177764374592281) + +[fips1733227] +centroid = (0.69539188293795118, -1.5544156961799365) +description = Harristown village, IL +station = ('kdec', 0.0026160030360055262) +zone = ('ilz053', 0.0013687566290827443) + +[fips1733279] +centroid = (0.67741616101300839, -1.5724032688905003) +description = Hartford village, IL +station = ('kaln', 0.0016211078614261753) +zone = ('ilz100', 0.0025592926890612264) + +[fips1733318] +centroid = (0.70250704924626395, -1.5610448755580315) +description = Hartsburg village, IL +station = ('kaaa', 0.0021423788742292219) +zone = ('ilz042', 0.0024115953861277221) + +[fips1733331] +centroid = (0.74055732133484276, -1.5466839050468941) +description = Harvard city, IL +station = ('kbuu', 0.0060678538163456393) +zone = ('ilz005', 0.0028342765866879007) + +[fips1733357] +centroid = (0.68692082269364152, -1.5626330728174687) +description = Harvel village, IL +station = ('k3lf', 0.0039149125580384032) +zone = ('ilz060', 0.0023253104936396761) + +[fips1733383] +centroid = (0.72618690859245205, -1.5298208654266827) +description = Harvey city, IL +station = ('kigq', 0.0019603332479843543) +zone = ('ilz014', 0.0045877568741302423) + +[fips1733435] +centroid = (0.73245042403896166, -1.5324966471562078) +description = Harwood Heights village, IL +station = ('kord', 0.0014715477249042236) +zone = ('ilz014', 0.0022111252004794299) + +[fips1733513] +centroid = (0.70328234195329231, -1.5718053016354745) +description = Havana city, IL +station = ('kpia', 0.0081711337674108646) +zone = ('ilz041', 0.0021122885507474901) + +[fips1733630] +centroid = (0.73729805858308339, -1.5370363358071077) +description = Hawthorn Woods village, IL +station = ('kpwk', 0.0030881557525590767) +zone = ('ilz006', 0.0015954867077188754) + +[fips1733695] +centroid = (0.7256062375503135, -1.5304667594229682) +description = Hazel Crest village, IL +station = ('kigq', 0.0021362459828013318) +zone = ('ilz022', 0.0044035008585954225) + +[fips1733851] +centroid = (0.74115645796046725, -1.5434692354575235) +description = Hebron village, IL +station = ('kbuu', 0.00427209578168541) +zone = ('ilz005', 0.0024674114878262829) + +[fips1733877] +centroid = (0.66854662464717596, -1.5706941377671924) +description = Hecker village, IL +station = ('kblv', 0.004709979207787744) +zone = ('ilz102', 0.0025522542738769531) + +[fips1734007] +centroid = (0.71600120198439832, -1.576971249328575) +description = Henderson village, IL +station = ('kgbg', 0.0018110114463302717) +zone = ('ilz027', 0.0024511473897619348) + +[fips1734098] +centroid = (0.71989410652109398, -1.5588227572609772) +description = Hennepin village, IL +station = ('kvys', 0.0027952057511697673) +zone = ('ilz018', 0.00082714418702628468) + +[fips1734137] +centroid = (0.703487330873939, -1.5306704393466761) +description = Henning village, IL +station = ('kdnv', 0.0023421137040106595) +zone = ('ilz046', 0.0021928932774930398) + +[fips1734163] +centroid = (0.71757791497735735, -1.5596621559114314) +description = Henry city, IL +station = ('kc75', 0.0016890201657597131) +zone = ('ilz030', 0.0014315974374162746) + +[fips1734272] +centroid = (0.7076622282578795, -1.5591126215431486) +description = Heritage Lake CDP, IL +station = ('kpia', 0.0051263699955298378) +zone = ('ilz037', 0.0025183480213650431) + +[fips1734332] +centroid = (0.68451143056784847, -1.5530775696957251) +description = Herrick village, IL +station = ('k1h2', 0.0066416048308689732) +zone = ('ilz061', 0.0038497491366639392) + +[fips1734358] +centroid = (0.65970633999960693, -1.5538779776906895) +description = Herrin city, IL +station = ('kmwa', 0.00093335760329665948) +zone = ('ilz085', 0.0018288251584179344) + +[fips1734384] +centroid = (0.71644303208454063, -1.5376407084204884) +description = Herscher village, IL +station = ('kikk', 0.003364241766703449) +zone = ('ilz023', 0.0034973130965347617) + +[fips1734423] +centroid = (0.68688717274566302, -1.5714492021081901) +description = Hettick village, IL +station = ('k3lf', 0.0059553967625539071) +zone = ('ilz059', 0.0022500851955410666) + +[fips1734449] +centroid = (0.70363439231671199, -1.5529546636097997) +description = Heyworth village, IL +station = ('kbmi', 0.0029391303433838351) +zone = ('ilz043', 0.002644115427276301) + +[fips1734514] +centroid = (0.72823493029661968, -1.5328898000235121) +description = Hickory Hills city, IL +station = ('kmdw', 0.0014417274358845531) +zone = ('ilz014', 0.0020145695652800991) + +[fips1734553] +centroid = (0.68339967328762052, -1.5384919578565635) +description = Hidalgo village, IL +station = ('k1h2', 0.0054124317218261307) +zone = ('ilz062', 0.0023891043931700425) + +[fips1734670] +centroid = (0.6766684794147465, -1.5651984275652202) +description = Highland city, IL +station = ('kblv', 0.0044934626981766625) +zone = ('ilz100', 0.0032434574916756467) + +[fips1734722] +centroid = (0.73622574574395061, -1.5325674028040839) +description = Highland Park city, IL +station = ('kpwk', 0.0016408399215973118) +zone = ('ilz006', 0.0035055813944978396) + +[fips1734865] +centroid = (0.73663420514879485, -1.5326247194167191) +description = Highwood city, IL +station = ('kpwk', 0.001923963371015694) +zone = ('ilz006', 0.0032000077241642897) + +[fips1734982] +centroid = (0.73248369001450464, -1.5544702202657688) +description = Hillcrest village, IL +station = ('krpj', 0.0013240298360676533) +zone = ('ilz008', 0.0035669120210384164) + +[fips1735047] +centroid = (0.68359347464776199, -1.5616085819998404) +description = Hillsboro city, IL +station = ('k3lf', 0.0027194020856878441) +zone = ('ilz060', 0.0011189593205839887) + +[fips1735073] +centroid = (0.72624345726021666, -1.5738678095724339) +description = Hillsdale village, IL +station = ('kcwi', 0.0043934206792548792) +zone = ('ilz016', 0.0045333423942714533) + +[fips1735086] +centroid = (0.73072548023263062, -1.5341776784785586) +description = Hillside village, IL +station = ('kord', 0.0020309823178640048) +zone = ('ilz014', 0.0012077996044830895) + +[fips1735203] +centroid = (0.68852462319659158, -1.5801962163605325) +description = Hillview village, IL +station = ('kppq', 0.0046187031540547421) +zone = ('ilz058', 0.0025773260735447671) + +[fips1735268] +centroid = (0.72904907403279751, -1.5470423956752537) +description = Hinckley village, IL +station = ('kdkb', 0.0029428571383878638) +zone = ('ilz011', 0.002729698712045662) + +[fips1735281] +centroid = (0.69263368676114689, -1.5382434404243719) +description = Hindsboro village, IL +station = ('kmto', 0.0042027870267878856) +zone = ('ilz055', 0.0018448217355139292) + +[fips1735307] +centroid = (0.72955954793242084, -1.5346361241131801) +description = Hinsdale village, IL +station = ('kmdw', 0.0023381900857239492) +zone = ('ilz014', 0.0016033565571506067) + +[fips1735385] +centroid = (0.72895536730525801, -1.5334802798160467) +description = Hodgkins village, IL +station = ('kmdw', 0.0014879707567063195) +zone = ('ilz014', 0.0014167466065684998) + +[fips1735398] +centroid = (0.67265841092536438, -1.5579566201663828) +description = Hoffman village, IL +station = ('kenl', 0.0023926961121574983) +zone = ('ilz069', 0.0024452049526610901) + +[fips1735411] +centroid = (0.73417648485601394, -1.5385599384309288) +description = Hoffman Estates village, IL +station = ('kdpa', 0.0031462294984557684) +zone = ('ilz013', 0.0038223965313771884) + +[fips1735515] +centroid = (0.73821826597790485, -1.5398767893515584) +description = Holiday Hills village, IL +station = ('kugn', 0.0051135397283330088) +zone = ('ilz006', 0.0029381153875658907) + +[fips1735541] +centroid = (0.67935452368027327, -1.5696935579603164) +description = Holiday Shores CDP, IL +station = ('kaln', 0.0015938351287220725) +zone = ('ilz100', 0.0017004317055401186) + +[fips1735671] +centroid = (0.7219526700139437, -1.5584897484396967) +description = Hollowayville village, IL +station = ('kvys', 0.0018715904806604219) +zone = ('ilz018', 0.0028010137639714033) + +[fips1735814] +centroid = (0.69870750237125734, -1.5351526368520154) +description = Homer village, IL +station = ('kcmi', 0.0041279836352094658) +zone = ('ilz046', 0.0039899657161824118) + +[fips1735835] +centroid = (0.72614687073941131, -1.5350581272730199) +description = Homer Glen village, IL +station = ('klot', 0.0018515392931444474) +zone = ('ilz022', 0.0028162849794634228) + +[fips1735866] +centroid = (0.72834767856629867, -1.5311971448083428) +description = Hometown city, IL +station = ('kmdw', 0.00094166066997129056) +zone = ('ilz014', 0.0021991090974149514) + +[fips1735879] +centroid = (0.72534874912576675, -1.5299909652155821) +description = Homewood village, IL +station = ('kigq', 0.0017289999546868454) +zone = ('ilz022', 0.0045959086290482242) + +[fips1736061] +centroid = (0.7061746143232347, -1.5300178781926479) +description = Hoopeston city, IL +station = ('kdnv', 0.0046508323603803104) +zone = ('ilz046', 0.0049256622731445087) + +[fips1736074] +centroid = (0.72468800237754682, -1.5692955181711068) +description = Hooppole village, IL +station = ('ksqi', 0.005128897404027697) +zone = ('ilz016', 0.004090934887215408) + +[fips1736126] +centroid = (0.70550501875570704, -1.5606899454013459) +description = Hopedale village, IL +station = ('kaaa', 0.0047450522311886763) +zone = ('ilz037', 0.0019269898200361087) + +[fips1736150] +centroid = (0.71530987706768323, -1.5613213357115472) +description = Hopewell village, IL +station = ('kc75', 0.0011134263138211141) +zone = ('ilz030', 0.0017084300170068121) + +[fips1736190] +centroid = (0.71685787939444701, -1.529012394010574) +description = Hopkins Park village, IL +station = ('kikk', 0.0031636527326576358) +zone = ('ilz023', 0.0035494377190331441) + +[fips1736347] +centroid = (0.67100718982663754, -1.5580932096336437) +description = Hoyleton village, IL +station = ('kenl', 0.0027364222819647962) +zone = ('ilz074', 0.0025007259618964601) + +[fips1736438] +centroid = (0.7086949395762846, -1.5531503150189481) +description = Hudson village, IL +station = ('kbmi', 0.0024400294785531847) +zone = ('ilz038', 0.0027419143959273497) + +[fips1736477] +centroid = (0.67378933192077917, -1.5584040178668388) +description = Huey village, IL +station = ('kenl', 0.0031276359464400931) +zone = ('ilz069', 0.0018062942580945292) + +[fips1736516] +centroid = (0.69308380717523621, -1.5917541706396743) +description = Hull village, IL +station = ('kuin', 0.0038843554431411721) +zone = ('ilz095', 0.0048377244112832772) + +[fips1736542] +centroid = (0.69123278078374106, -1.5414743415757863) +description = Humboldt village, IL +station = ('kmto', 0.0025140740958537128) +zone = ('ilz056', 0.0019801656960946805) + +[fips1736568] +centroid = (0.69461486235496317, -1.5336063100413333) +description = Hume village, IL +station = ('kprg', 0.0031783245168744952) +zone = ('ilz057', 0.0026701228480146707) + +[fips1736750] +centroid = (0.73583393678017039, -1.5435072487286319) +description = Huntley village, IL +station = ('kdpa', 0.0051442446086948966) +zone = ('ilz005', 0.0028735957583699589) + +[fips1736815] +centroid = (0.66038077012916263, -1.5559150212738622) +description = Hurst city, IL +station = ('kmdh', 0.0016974227815169324) +zone = ('ilz085', 0.0035310115044658308) + +[fips1736841] +centroid = (0.68256942016244682, -1.5299697071052929) +description = Hutsonville village, IL +station = ('krsv', 0.0016216407801644889) +zone = ('ilz068', 0.0022765434656352168) + +[fips1737127] +centroid = (0.6955385255017037, -1.5576669129638439) +description = Illiopolis village, IL +station = ('kaaa', 0.005486908766770035) +zone = ('ilz053', 0.0038352799466402211) + +[fips1737179] +centroid = (0.66583471460213461, -1.5516680592451069) +description = Ina village, IL +station = ('kmvn', 0.0029619087811184907) +zone = ('ilz075', 0.0026510374648528305) + +[fips1737218] +centroid = (0.7370014049701219, -1.5355043032429994) +description = Indian Creek village, IL +station = ('kpwk', 0.0021745652634447992) +zone = ('ilz006', 0.0017085445356171056) + +[fips1737257] +centroid = (0.72899667924865275, -1.5340991212089266) +description = Indian Head Park village, IL +station = ('kmdw', 0.0019361542151348358) +zone = ('ilz014', 0.0016304330400122157) + +[fips1737348] +centroid = (0.69685872745449728, -1.5313561093966144) +description = Indianola village, IL +station = ('kprg', 0.0040695073614587752) +zone = ('ilz057', 0.0043371099380529509) + +[fips1737439] +centroid = (0.70384372710719623, -1.5814088013116483) +description = Industry village, IL +station = ('kmqb', 0.0034199149924940024) +zone = ('ilz035', 0.0024347186029463081) + +[fips1737465] +centroid = (0.72466580178946138, -1.5364955106317921) +description = Ingalls Park CDP, IL +station = ('klot', 0.0017216438213349065) +zone = ('ilz022', 0.0015043706629962075) + +[fips1737608] +centroid = (0.73504778812519456, -1.5376506742505172) +description = Inverness village, IL +station = ('kord', 0.003315509507569796) +zone = ('ilz006', 0.0038413419498733404) + +[fips1737621] +centroid = (0.6777812489859405, -1.5468475296642687) +description = Iola village, IL +station = ('kfoa', 0.0037895239603475878) +zone = ('ilz071', 0.0023335475830345976) + +[fips1737647] +centroid = (0.70428519068819573, -1.5764405296096287) +description = Ipava village, IL +station = ('kmqb', 0.0052613429108231838) +zone = ('ilz036', 0.0026028998790892681) + +[fips1737712] +centroid = (0.71259477307011088, -1.5286402898140488) +description = Iroquois village, IL +station = ('kikk', 0.0054635950707949158) +zone = ('inz010', 0.0033206658773069645) + +[fips1737738] +centroid = (0.68426329710809231, -1.5604220024545798) +description = Irving village, IL +station = ('k3lf', 0.0037143612927029394) +zone = ('ilz060', 0.0010872727068742792) + +[fips1737777] +centroid = (0.67087651702554074, -1.5561402385605396) +description = Irvington village, IL +station = ('kenl', 0.0016245533484343805) +zone = ('ilz074', 0.0037388942987867302) + +[fips1737803] +centroid = (0.71652165916734289, -1.5356120424177251) +description = Irwin village, IL +station = ('kikk', 0.0018382950291023184) +zone = ('ilz023', 0.0021767510125343141) + +[fips1737894] +centroid = (0.73791241447978539, -1.5393644130430504) +description = Island Lake village, IL +station = ('kugn', 0.0049129257877461212) +zone = ('ilz006', 0.0026368718124301868) + +[fips1737907] +centroid = (0.73263017549862453, -1.5362174273220721) +description = Itasca village, IL +station = ('kord', 0.0013299707616929199) +zone = ('ilz013', 0.0023422306320610162) + +[fips1737933] +centroid = (0.67402488155662821, -1.5496471948641002) +description = Iuka village, IL +station = ('kslo', 0.0024348653525058362) +zone = ('ilz070', 0.0018620582050866853) + +[fips1737998] +centroid = (0.69718264311037481, -1.5438638194948142) +description = Ivesdale village, IL +station = ('kcmi', 0.0029686914850433174) +zone = ('ilz044', 0.0021214436239734322) + +[fips1738115] +centroid = (0.69340449397199777, -1.5748489987713199) +description = Jacksonville city, IL +station = ('kijx', 0.00079036591433214115) +zone = ('ilz050', 0.00047517698851348434) + +[fips1738323] +centroid = (0.6709463825554981, -1.5429403832408766) +description = Jeffersonville village, IL +station = ('kfwc', 0.0011197511286899671) +zone = ('ilz076', 0.00037160109946437694) + +[fips1738349] +centroid = (0.69078742511850966, -1.5604650248206415) +description = Jeisyville village, IL +station = ('ktaz', 0.0013360175603734648) +zone = ('ilz052', 0.0018534906411230348) + +[fips1738375] +centroid = (0.69407728349205644, -1.5651834700935305) +description = Jerome village, IL +station = ('kspi', 0.0014379411471432924) +zone = ('ilz051', 0.00030980472557080781) + +[fips1738414] +centroid = (0.68273339384567167, -1.5765032741962377) +description = Jerseyville city, IL +station = ('kset', 0.0035267942244977049) +zone = ('ilz099', 0.00068964125471157448) + +[fips1738427] +centroid = (0.6843040679994189, -1.5401320786612476) +description = Jewett village, IL +station = ('kmto', 0.004530423516151582) +zone = ('ilz062', 0.0011432373193382861) + +[fips1738479] +centroid = (0.73975560434293908, -1.5401961846046732) +description = Johnsburg village, IL +station = ('kbuu', 0.0053870034952842516) +zone = ('ilz006', 0.0033161729830780231) + +[fips1738531] +centroid = (0.67231459851601394, -1.5452840811736246) +description = Johnsonville village, IL +station = ('kfoa', 0.0027723479319956691) +zone = ('ilz076', 0.0022154131816011502) + +[fips1738544] +centroid = (0.66010158726201362, -1.5521089992273307) +description = Johnston City city, IL +station = ('kmwa', 0.001583151823114448) +zone = ('ilz085', 0.0015836464900652453) + +[fips1738570] +centroid = (0.72462695076031203, -1.5386535404387132) +description = Joliet city, IL +station = ('kjot', 0.00022116164687474341) +zone = ('ilz022', 0.0026728867557592405) + +[fips1738635] +centroid = (0.65364254257940302, -1.5580013180485264) +description = Jonesboro city, IL +station = ('kcgi', 0.0058056729327997103) +zone = ('ilz088', 0.00038926258141187001) + +[fips1738674] +centroid = (0.64942420395038036, -1.5506726630661094) +description = Joppa village, IL +station = ('km30', 0.0014017936863921984) +zone = ('ilz094', 0.001942236185842132) + +[fips1738739] +centroid = (0.71902193058728736, -1.5861341406350826) +description = Joy village, IL +station = ('kmut', 0.0046292332317687986) +zone = ('ilz024', 0.0018101327551091149) + +[fips1738778] +centroid = (0.65835587403758378, -1.5401380302339969) +description = Junction village, IL +station = ('khsb', 0.0045038196148266133) +zone = ('ilz087', 0.00075076737768881626) + +[fips1738791] +centroid = (0.67327501829680148, -1.5555390773529825) +description = Junction City village, IL +station = ('kenl', 0.0011607733141271038) +zone = ('ilz070', 0.0031006616910054644) + +[fips1738830] +centroid = (0.72873428644890792, -1.5328693796712638) +description = Justice village, IL +station = ('kmdw', 0.0011297070057063228) +zone = ('ilz014', 0.0015156021934944783) + +[fips1738856] +centroid = (0.68586523010874278, -1.5814946191509687) +description = Kampsville village, IL +station = ('kppq', 0.0063664980417345203) +zone = ('ilz098', 0.0023522396088326925) + +[fips1738869] +centroid = (0.68400306851661996, -1.5769255740620503) +description = Kane village, IL +station = ('kset', 0.0046242360020616064) +zone = ('ilz099', 0.0018321281634250417) + +[fips1738895] +centroid = (0.7301345466544904, -1.5449946532237666) +description = Kaneville village, IL +station = ('karr', 0.0013704219999928079) +zone = ('ilz012', 0.0022003658306120519) + +[fips1738921] +centroid = (0.71816811551721171, -1.5511105487221424) +description = Kangley village, IL +station = ('kpnt', 0.0050887626446885076) +zone = ('ilz019', 0.0034238660655338338) + +[fips1738934] +centroid = (0.71738620801231834, -1.5335715430826335) +description = Kankakee city, IL +station = ('kikk', 0.00061893179164576714) +zone = ('ilz023', 0.00060623999752223892) + +[fips1738986] +centroid = (0.69035521178254589, -1.5348326481869545) +description = Kansas village, IL +station = ('kprg', 0.004429898923875155) +zone = ('ilz057', 0.0033892981048785991) + +[fips1739038] +centroid = (0.70991813612925236, -1.5534494120928624) +description = Kappa village, IL +station = ('kbmi', 0.0036631216955775006) +zone = ('ilz031', 0.0033515863774192549) + +[fips1739077] +centroid = (0.65090602339190862, -1.552925307171781) +description = Karnak village, IL +station = ('km30', 0.0036596849095406805) +zone = ('ilz093', 0.0024351781849234299) + +[fips1739129] +centroid = (0.66185248411432174, -1.5693365683151137) +description = Kaskaskia village, IL +station = ('ksar', 0.0049730228178068211) +zone = ('ilz079', 0.0026031491009397378) + +[fips1739233] +centroid = (0.66913511476436338, -1.5470932720229493) +description = Keenes village, IL +station = ('kfwc', 0.0032126827726829225) +zone = ('ilz076', 0.0033576972508935128) + +[fips1739259] +centroid = (0.66936411941551754, -1.5335911431301334) +description = Keensburg village, IL +station = ('kajg', 0.0048474899875625803) +zone = ('ilz078', 0.0016793091263728754) + +[fips1739298] +centroid = (0.71732981642418625, -1.5871336383378223) +description = Keithsburg city, IL +station = ('kmut', 0.0054361371839981628) +zone = ('ilz024', 0.0031501629408430712) + +[fips1739324] +centroid = (0.67186205209426442, -1.5515758709540164) +description = Kell village, IL +station = ('kenl', 0.0026651334272213148) +zone = ('ilz070', 0.0027148225575524825) + +[fips1739441] +centroid = (0.71445693466223359, -1.5399988402261502) +description = Kempton village, IL +station = ('kpnt', 0.0051446657327244199) +zone = ('ilz032', 0.0043205237123920522) + +[fips1739519] +centroid = (0.7345885396391173, -1.5309070361800765) +description = Kenilworth village, IL +station = ('kord', 0.0032026461286254189) +zone = ('ilz014', 0.0045424199580260428) + +[fips1739532] +centroid = (0.69983947056422324, -1.5548440348849608) +description = Kenney village, IL +station = ('kaaa', 0.0034879873535336591) +zone = ('ilz043', 0.0027722822245503376) + +[fips1739727] +centroid = (0.71975784866639081, -1.5694988490289639) +description = Kewanee city, IL +station = ('kmli', 0.0085743703525737354) +zone = ('ilz028', 0.0030497311441166578) + +[fips1739753] +centroid = (0.67622764415227776, -1.5581141361313751) +description = Keyesport village, IL +station = ('kenl', 0.0047171514445295236) +zone = ('ilz069', 0.0031569319141555568) + +[fips1739857] +centroid = (0.70078301301114398, -1.570997371271434) +description = Kilbourne village, IL +station = ('kspi', 0.0068569703324678939) +zone = ('ilz041', 0.0019855256222460044) + +[fips1739883] +centroid = (0.7363424908176166, -1.5367368722140504) +description = Kildeer village, IL +station = ('kpwk', 0.0023025248336924643) +zone = ('ilz006', 0.0024060305884647023) + +[fips1739909] +centroid = (0.69092054138055936, -1.5606129938346256) +description = Kincaid village, IL +station = ('ktaz', 0.0015070778233670465) +zone = ('ilz052', 0.0020055910709332802) + +[fips1739922] +centroid = (0.69296098835577347, -1.590897877202061) +description = Kinderhook village, IL +station = ('kuin', 0.0040590604387796521) +zone = ('ilz097', 0.0038378288738069775) + +[fips1740065] +centroid = (0.73480215048626885, -1.5492100422463533) +description = Kingston village, IL +station = ('kdkb', 0.0030361811361707559) +zone = ('ilz011', 0.0036255896358120452) + +[fips1740091] +centroid = (0.70787816039293627, -1.5667931349027673) +description = Kingston Mines village, IL +station = ('kpia', 0.0022150553934700674) +zone = ('ilz037', 0.0035248245810105302) + +[fips1740117] +centroid = (0.67670127415139147, -1.5507847830172576) +description = Kinmundy city, IL +station = ('kslo', 0.0027150618022634952) +zone = ('ilz070', 0.0023174978254716628) + +[fips1740143] +centroid = (0.71890597091178488, -1.5458369840273638) +description = Kinsman village, IL +station = ('kc09', 0.0045561401149643412) +zone = ('ilz021', 0.0025840991580733642) + +[fips1740156] +centroid = (0.7346119445043866, -1.5507010421197469) +description = Kirkland village, IL +station = ('kdkb', 0.003306887847347206) +zone = ('ilz011', 0.0035809597409896844) + +[fips1740182] +centroid = (0.71327578309094641, -1.5838610587238702) +description = Kirkwood village, IL +station = ('kbrl', 0.0053795716940987547) +zone = ('ilz026', 0.0017935428048256616) + +[fips1740364] +centroid = (0.73801219495312198, -1.5337960273310249) +description = Knollwood CDP, IL +station = ('kugn', 0.0023047593494831156) +zone = ('ilz006', 0.0017281232759388154) + +[fips1740416] +centroid = (0.71396501361255904, -1.575782086696021) +description = Knoxville city, IL +station = ('kgbg', 0.0019923643319493269) +zone = ('ilz027', 0.0010466033345735018) + +[fips1740559] +centroid = (0.71598462135650431, -1.5604348306245819) +description = Lacon city, IL +station = ('kc75', 0.00027053489297270409) +zone = ('ilz030', 0.00082985538040917226) + +[fips1740598] +centroid = (0.72224408763914927, -1.5570841998864808) +description = Ladd village, IL +station = ('kvys', 0.00095469548779765067) +zone = ('ilz018', 0.0032288180352501978) + +[fips1740676] +centroid = (0.71749797889761602, -1.5703341985155537) +description = La Fayette village, IL +station = ('kgbg', 0.0067281755688747497) +zone = ('ilz028', 0.002332231657412513) + +[fips1740767] +centroid = (0.72967341321282098, -1.5336930878117423) +description = La Grange village, IL +station = ('kmdw', 0.001668194375201383) +zone = ('ilz014', 0.00094006881198109387) + +[fips1740793] +centroid = (0.73008435098520297, -1.5336607468607029) +description = La Grange Park village, IL +station = ('kmdw', 0.0017933078155140576) +zone = ('ilz014', 0.00074028016481987992) + +[fips1740832] +centroid = (0.70833831645022449, -1.5877184632635803) +description = La Harpe city, IL +station = ('kbrl', 0.003843810044704713) +zone = ('ilz034', 0.0040863142184606582) + +[fips1740884] +centroid = (0.73670761369713367, -1.5388479177575076) +description = Lake Barrington village, IL +station = ('kpwk', 0.0038499306535235834) +zone = ('ilz006', 0.002910506302445855) + +[fips1740910] +centroid = (0.73797224436654374, -1.5333119951695695) +description = Lake Bluff village, IL +station = ('kugn', 0.0023455723610930632) +zone = ('ilz006', 0.002076384949246298) + +[fips1740962] +centroid = (0.70920993387867048, -1.5664471408318519) +description = Lake Camelot CDP, IL +station = ('kpia', 0.0010530592937602118) +zone = ('ilz029', 0.0026794665292956374) + +[fips1740988] +centroid = (0.7415200624035353, -1.5380527108437141) +description = Lake Catherine CDP, IL +station = ('kenw', 0.0031571676102305538) +zone = ('wiz072', 0.0019035119201045152) + +[fips1741105] +centroid = (0.73719047648799052, -1.5334279199384868) +description = Lake Forest city, IL +station = ('kpwk', 0.0021815758453637545) +zone = ('ilz006', 0.0023874853088982125) + +[fips1741157] +centroid = (0.72633185818683021, -1.547498485115385) +description = Lake Holiday CDP, IL +station = ('karr', 0.0036916761061692718) +zone = ('ilz020', 0.0031141295750113018) + +[fips1741183] +centroid = (0.73617190233652663, -1.5414001127226991) +description = Lake in the Hills village, IL +station = ('kdpa', 0.0049527590990662345) +zone = ('ilz005', 0.0030837907581962795) + +[fips1741214] +centroid = (0.68241607553436667, -1.5663632254014161) +description = Lake Ka-Ho village, IL +station = ('k3lf', 0.0014610320159332375) +zone = ('ilz059', 0.003710041938208483) + +[fips1741326] +centroid = (0.73896938587479322, -1.5394280652008707) +description = Lakemoor village, IL +station = ('kpwk', 0.0055205916440497615) +zone = ('ilz006', 0.0025858291753305036) + +[fips1741346] +centroid = (0.7016859940062482, -1.542406172863426) +description = Lake of the Woods CDP, IL +station = ('kcmi', 0.0032960296007939639) +zone = ('ilz045', 0.0025751127002087626) + +[fips1741404] +centroid = (0.69783052678200763, -1.5684762955268055) +description = Lake Petersburg CDP, IL +station = ('kspi', 0.0033789398703084231) +zone = ('ilz048', 0.0011660272375447771) + +[fips1741456] +centroid = (0.74096190610874746, -1.5601524188983165) +description = Lake Summerset CDP, IL +station = ('keft', 0.0038155375567999771) +zone = ('ilz003', 0.0035987010129115873) + +[fips1741586] +centroid = (0.74032630955504863, -1.53733154079679) +description = Lake Villa village, IL +station = ('kenw', 0.0037183638516323546) +zone = ('ilz006', 0.0019382160424925767) + +[fips1741651] +centroid = (0.73694623511246637, -1.5426375162557779) +description = Lakewood village, IL +station = ('kdpa', 0.0059239658933321719) +zone = ('ilz005', 0.0019488038759300083) + +[fips1741716] +centroid = (0.72026668195651733, -1.5382466343769032) +description = Lakewood Shores CDP, IL +station = ('kjot', 0.0043918012704846831) +zone = ('ilz022', 0.0037030140929958611) + +[fips1741742] +centroid = (0.73643953112402738, -1.537421669599363) +description = Lake Zurich village, IL +station = ('kpwk', 0.0027867173248491113) +zone = ('ilz006', 0.0024880652809016342) + +[fips1741794] +centroid = (0.72483785634712306, -1.5582870459003701) +description = La Moille village, IL +station = ('kvys', 0.0035463161998088412) +zone = ('ilz010', 0.0037757324671305022) + +[fips1741859] +centroid = (0.73481616548016238, -1.5678784504448275) +description = Lanark city, IL +station = ('ksfy', 0.0036939736666201563) +zone = ('ilz007', 0.0014379609635298519) + +[fips1742002] +centroid = (0.69047157288377636, -1.5596306701717253) +description = Langleyville CDP, IL +station = ('ktaz', 0.00064197170095504257) +zone = ('ilz052', 0.0011478503544451509) + +[fips1742028] +centroid = (0.72548898633116454, -1.5279927028483888) +description = Lansing village, IL +station = ('kigq', 0.00051926489836545708) +zone = ('inz001', 0.003424164311520767) + +[fips1742067] +centroid = (0.69460259269032176, -1.5483787419236281) +description = LaPlace CDP, IL +station = ('kdec', 0.0021184736051092072) +zone = ('ilz054', 0.0030195480558905538) + +[fips1742080] +centroid = (0.7006983470891297, -1.5882930780132145) +description = La Prairie village, IL +station = ('kuin', 0.0045694076858937482) +zone = ('ilz095', 0.0037289929229059079) + +[fips1742171] +centroid = (0.71521379669236096, -1.5574437551656841) +description = La Rose village, IL +station = ('kc75', 0.0021159144004659616) +zone = ('ilz030', 0.0017311545447819909) + +[fips1742184] +centroid = (0.72180937848235505, -1.5544611096470733) +description = LaSalle city, IL +station = ('kvys', 0.0011687932968511771) +zone = ('ilz019', 0.002344802756729541) + +[fips1742249] +centroid = (0.69755680679541743, -1.5561765588622736) +description = Latham village, IL +station = ('kaaa', 0.0040614624283118505) +zone = ('ilz053', 0.0032730789035565326) + +[fips1742405] +centroid = (0.67590142466178749, -1.5304338774198609) +description = Lawrenceville city, IL +station = ('klwv', 0.0013826999294834985) +zone = ('ilz073', 0.00054495088065998341) + +[fips1742457] +centroid = (0.73519563496613105, -1.5603953163703168) +description = Leaf River village, IL +station = ('kfep', 0.0031465375594493614) +zone = ('ilz008', 0.0017776744465280707) + +[fips1742496] +centroid = (0.6737410212070839, -1.5675325610936672) +description = Lebanon city, IL +station = ('kblv', 0.0010464319697084058) +zone = ('ilz101', 0.0027941359384837665) + +[fips1742587] +centroid = (0.72945128515891966, -1.5523211963577881) +description = Lee village, IL +station = ('krpj', 0.002475371080108142) +zone = ('ilz011', 0.002815511615949878) + +[fips1742756] +centroid = (0.72633552337825946, -1.5498227924401433) +description = Leland village, IL +station = ('kdkb', 0.0056379376620773955) +zone = ('ilz020', 0.0048413302029748032) + +[fips1742769] +centroid = (0.69426841449844234, -1.5652765659558319) +description = Leland Grove city, IL +station = ('kspi', 0.0012453044143085328) +zone = ('ilz051', 0.00048830916485458531) + +[fips1742795] +centroid = (0.72723234336110421, -1.5356174703916987) +description = Lemont village, IL +station = ('klot', 0.0017637346914778432) +zone = ('ilz013', 0.0034822609133860331) + +[fips1742834] +centroid = (0.73964278626009017, -1.5676794654568076) +description = Lena village, IL +station = ('kfep', 0.0038522548842989156) +zone = ('ilz002', 0.0021016916637215111) + +[fips1742860] +centroid = (0.66820885107703754, -1.5676318354215206) +description = Lenzburg village, IL +station = ('ksar', 0.0028982787168747885) +zone = ('ilz101', 0.003556826266867096) + +[fips1742912] +centroid = (0.7188819551812774, -1.5530336572117449) +description = Leonore village, IL +station = ('kvys', 0.0036216799109574645) +zone = ('ilz019', 0.0029860878418195842) + +[fips1742938] +centroid = (0.68797189487577759, -1.540929990835382) +description = Lerna village, IL +station = ('kmto', 0.00090207039675104059) +zone = ('ilz056', 0.002000828434567305) + +[fips1742971] +centroid = (0.70404278190838621, -1.5492106531115915) +description = Le Roy city, IL +station = ('kbmi', 0.0031521956450012859) +zone = ('ilz038', 0.0028804479721593595) + +[fips1743055] +centroid = (0.70505845881329177, -1.5735105057679655) +description = Lewistown city, IL +station = ('kpia', 0.0078361093687063874) +zone = ('ilz036', 0.00149433519665769) + +[fips1743094] +centroid = (0.70930727089105428, -1.5495140436954655) +description = Lexington city, IL +station = ('kbmi', 0.0033682096533102029) +zone = ('ilz038', 0.0027552096202385821) + +[fips1743133] +centroid = (0.69602864886224869, -1.5901115016542824) +description = Liberty village, IL +station = ('kuin', 0.0015632391216966318) +zone = ('ilz095', 0.0021850778974751043) + +[fips1743250] +centroid = (0.73803193462696204, -1.5352650709624287) +description = Libertyville village, IL +station = ('kugn', 0.0026028344451534649) +zone = ('ilz006', 0.00082171520013234352) + +[fips1743406] +centroid = (0.73218632081654988, -1.5441625151430005) +description = Lily Lake village, IL +station = ('kdpa', 0.0030427826942284867) +zone = ('ilz012', 0.00062528096483501449) + +[fips1743445] +centroid = (0.70120873372229042, -1.5948503323728347) +description = Lima village, IL +station = ('kuin', 0.0048630694662137944) +zone = ('ilz095', 0.0041513727336470151) + +[fips1743510] +centroid = (0.71759039408150915, -1.534962500683303) +description = Limestone village, IL +station = ('kikk', 0.0015243621480219578) +zone = ('ilz023', 0.0011871222128929521) + +[fips1743536] +centroid = (0.70076159782122194, -1.5598345071750659) +description = Lincoln city, IL +station = ('kaaa', 0.0005117541725239861) +zone = ('ilz042', 0.00046060668309179858) + +[fips1743666] +centroid = (0.73646817197705261, -1.5344539815524421) +description = Lincolnshire village, IL +station = ('kpwk', 0.0014124365250698658) +zone = ('ilz006', 0.0024720466043179662) + +[fips1743744] +centroid = (0.73313303976270916, -1.5312289970671917) +description = Lincolnwood village, IL +station = ('kord', 0.0024139610441799692) +zone = ('ilz014', 0.003086916422951494) + +[fips1743770] +centroid = (0.74031887445243516, -1.5363511195427748) +description = Lindenhurst village, IL +station = ('kugn', 0.0020586323449233892) +zone = ('ilz006', 0.0016676305420145231) + +[fips1743900] +centroid = (0.72394480627546265, -1.543916650611272) +description = Lisbon village, IL +station = ('kc09', 0.0010818498874284104) +zone = ('ilz020', 0.0019897774844502476) + +[fips1743939] +centroid = (0.72940993830893985, -1.5374204827754716) +description = Lisle village, IL +station = ('kdpa', 0.0028281247427659464) +zone = ('ilz013', 0.001045585494823695) + +[fips1743965] +centroid = (0.68377017178123389, -1.5645754846485984) +description = Litchfield city, IL +station = ('k3lf', 0.00049228236599300741) +zone = ('ilz060', 0.0024173408925991322) + +[fips1744056] +centroid = (0.70221577124739853, -1.5816577725294452) +description = Littleton village, IL +station = ('kmqb', 0.005012582121259013) +zone = ('ilz040', 0.001329933143295555) + +[fips1744082] +centroid = (0.71577408228883621, -1.5838225567605713) +description = Little York village, IL +station = ('kgbg', 0.0043438284900888559) +zone = ('ilz026', 0.0033162447094450247) + +[fips1744121] +centroid = (0.70493677445784275, -1.57083001164946) +description = Liverpool village, IL +station = ('kpia', 0.0064184474391827378) +zone = ('ilz041', 0.0028558496433567578) + +[fips1744160] +centroid = (0.68012754745927406, -1.5666879439087495) +description = Livingston village, IL +station = ('k3lf', 0.0035960971475246704) +zone = ('ilz100', 0.0030802847933661874) + +[fips1744173] +centroid = (0.6924439171115776, -1.5681326401970879) +description = Loami village, IL +station = ('kspi', 0.0037772737325492156) +zone = ('ilz051', 0.0029252259411321124) + +[fips1744225] +centroid = (0.72587805512801906, -1.5363982085259935) +description = Lockport city, IL +station = ('klot', 0.00090866540992179802) +zone = ('ilz022', 0.0026109002768709855) + +[fips1744264] +centroid = (0.70715086424033768, -1.5372073955270957) +description = Loda village, IL +station = ('ktip', 0.0039951909133833195) +zone = ('ilz039', 0.0024108847180324498) + +[fips1744381] +centroid = (0.70998068872964371, -1.5895797870976622) +description = Lomax village, IL +station = ('kbrl', 0.0017080651576105981) +zone = ('ilz025', 0.0031456254896055354) + +[fips1744407] +centroid = (0.73083644826647243, -1.5361601107094365) +description = Lombard village, IL +station = ('kord', 0.0023018214360297656) +zone = ('ilz013', 0.00098902801673504399) + +[fips1744446] +centroid = (0.71053366139655316, -1.5754422536373653) +description = London Mills village, IL +station = ('kgbg', 0.004528428182055004) +zone = ('ilz027', 0.0039237073887344043) + +[fips1744498] +centroid = (0.69473241028008514, -1.5506797141962876) +description = Long Creek village, IL +station = ('kdec', 0.00055424364622454366) +zone = ('ilz053', 0.0018047067785935008) + +[fips1744524] +centroid = (0.73643919951146963, -1.5360688823494348) +description = Long Grove village, IL +station = ('kpwk', 0.0019742683108651044) +zone = ('ilz006', 0.0022398998486400892) + +[fips1744550] +centroid = (0.73956965696443155, -1.5381026796201986) +description = Long Lake CDP, IL +station = ('kugn', 0.0034337317697072526) +zone = ('ilz006', 0.0018223995030536841) + +[fips1744576] +centroid = (0.71567704198242532, -1.5514762126537276) +description = Long Point village, IL +station = ('kpnt', 0.0038058563625157525) +zone = ('ilz032', 0.0048456252531932443) + +[fips1744602] +centroid = (0.69614103061278465, -1.5370464063568916) +description = Longview village, IL +station = ('kcmi', 0.0037154370910921415) +zone = ('ilz055', 0.002869430637941791) + +[fips1744719] +centroid = (0.70079491615664247, -1.5921167627917763) +description = Loraine village, IL +station = ('kuin', 0.003837606911157203) +zone = ('ilz095', 0.0029096627402267678) + +[fips1744823] +centroid = (0.71803217182177392, -1.554414771155433) +description = Lostant village, IL +station = ('kvys', 0.0038862005804554517) +zone = ('ilz018', 0.0031543143935981242) + +[fips1744836] +centroid = (0.73150157579111486, -1.5597744329422123) +description = Lost Nation CDP, IL +station = ('ksqi', 0.0047985495762148025) +zone = ('ilz008', 0.0023647174877242322) + +[fips1744927] +centroid = (0.67666193443005151, -1.5447284730595447) +description = Louisville village, IL +station = ('kfoa', 0.0019693719405222102) +zone = ('ilz071', 0.0003515198800639725) + +[fips1745031] +centroid = (0.73893269905391623, -1.5533133985842544) +description = Loves Park city, IL +station = ('krfd', 0.0027392028953182285) +zone = ('ilz003', 0.0020978901159126903) + +[fips1745044] +centroid = (0.69314674374806318, -1.5469164701697222) +description = Lovington village, IL +station = ('kdec', 0.00377322859818336) +zone = ('ilz054', 0.0012846119520987193) + +[fips1745174] +centroid = (0.70487156895698833, -1.5380954015972177) +description = Ludlow village, IL +station = ('ktip', 0.0016295684340874505) +zone = ('ilz039', 0.0039014535919137936) + +[fips1745278] +centroid = (0.72810813212646242, -1.5694694227777755) +description = Lyndon village, IL +station = ('ksqi', 0.0033988836754551498) +zone = ('ilz009', 0.00068889545334274184) + +[fips1745369] +centroid = (0.69264632294493134, -1.5768343107954634) +description = Lynnville village, IL +station = ('kijx', 0.002111714071975974) +zone = ('ilz050', 0.0020086709707573887) + +[fips1745421] +centroid = (0.724697776221358, -1.5280078697595885) +description = Lynwood village, IL +station = ('kigq', 0.00037686783353345609) +zone = ('inz001', 0.0028652362653948573) + +[fips1745434] +centroid = (0.72976027824969281, -1.5327235225056746) +description = Lyons village, IL +station = ('kmdw', 0.0010246984028371672) +zone = ('ilz014', 0.000484358924818558) + +[fips1745525] +centroid = (0.65122644838928234, -1.5608753342744925) +description = McClure village, IL +station = ('kcgi', 0.002520567418022859) +zone = ('ilz092', 0.0024831684782197529) + +[fips1745564] +centroid = (0.72951930063986992, -1.533125244939606) +description = McCook village, IL +station = ('kmdw', 0.0012206300044503831) +zone = ('ilz014', 0.00079382374222827161) + +[fips1745616] +centroid = (0.73947245957838803, -1.5410698615216365) +description = McCullom Lake village, IL +station = ('kbuu', 0.0056192185046845481) +zone = ('ilz005', 0.0021506299243326445) + +[fips1745642] +centroid = (0.66417200923692976, -1.5481657593950073) +description = Macedonia village, IL +station = ('khsb', 0.0047405670433498335) +zone = ('ilz082', 0.0023056604061143229) + +[fips1745694] +centroid = (0.73896374846130919, -1.5410037309962785) +description = McHenry city, IL +station = ('kbuu', 0.0061288579006551274) +zone = ('ilz005', 0.0020733472786773222) + +[fips1745726] +centroid = (0.7394551284589157, -1.553771407886563) +description = Machesney Park village, IL +station = ('krfd', 0.0030841261138160143) +zone = ('ilz003', 0.001841953571600483) + +[fips1745785] +centroid = (0.70745031038010242, -1.5595469990873849) +description = Mackinaw village, IL +station = ('kpia', 0.0049240225073508151) +zone = ('ilz037', 0.002146874058540753) + +[fips1745811] +centroid = (0.70363851129374677, -1.5563155394306099) +description = McLean village, IL +station = ('kaaa', 0.0035091428744679748) +zone = ('ilz042', 0.0042458816090255825) + +[fips1745824] +centroid = (0.66477954089625635, -1.5452337284247046) +description = McLeansboro city, IL +station = ('khsb', 0.0048500278096165108) +zone = ('ilz082', 0.00014045759620027386) + +[fips1745850] +centroid = (0.71868141685022324, -1.5570062709353794) +description = McNabb village, IL +station = ('kvys', 0.0031360855509687587) +zone = ('ilz018', 0.0011034359202145661) + +[fips1745889] +centroid = (0.70642079301422844, -1.5827106947605882) +description = Macomb city, IL +station = ('kmqb', 0.00088683111448263825) +zone = ('ilz035', 0.00033266295292787513) + +[fips1745941] +centroid = (0.69309373809868013, -1.5532813194326027) +description = Macon city, IL +station = ('kdec', 0.0027503865819973913) +zone = ('ilz053', 0.0026343452846455131) + +[fips1745993] +centroid = (0.6750267878137356, -1.5726918241757326) +description = Madison city, IL +station = ('kcps', 0.0019930788003127637) +zone = ('moz064', 0.0019881481000224967) + +[fips1746058] +centroid = (0.66723956502364989, -1.5748244419887445) +description = Maeystown village, IL +station = ('kcps', 0.005978773642837925) +zone = ('ilz102', 0.0011188096114135326) + +[fips1746110] +centroid = (0.71757440686556084, -1.5567598304449977) +description = Magnolia village, IL +station = ('kc75', 0.0030050776875068324) +zone = ('ilz018', 0.0019736561311681639) + +[fips1746136] +centroid = (0.7013701417715148, -1.5426943790828078) +description = Mahomet village, IL +station = ('kcmi', 0.0031245525819082859) +zone = ('ilz045', 0.0026653674817169355) + +[fips1746214] +centroid = (0.65659886853289373, -1.5574819080631326) +description = Makanda village, IL +station = ('kmdh', 0.0028502381387084251) +zone = ('ilz088', 0.0026148915673311875) + +[fips1746240] +centroid = (0.7230009845758617, -1.5597977156344338) +description = Malden village, IL +station = ('kvys', 0.0031109981630832949) +zone = ('ilz017', 0.0021109642618474555) + +[fips1746279] +centroid = (0.73180678151741119, -1.5510041359976481) +description = Malta village, IL +station = ('kdkb', 0.0020475630699647827) +zone = ('ilz011', 0.0013918187245060421) + +[fips1746331] +centroid = (0.69014355570415653, -1.5765611318609414) +description = Manchester village, IL +station = ('kijx', 0.0042299906790973646) +zone = ('ilz049', 0.002633237875227326) + +[fips1746357] +centroid = (0.72291804652980685, -1.5355532422752256) +description = Manhattan village, IL +station = ('kjot', 0.0030649318519195847) +zone = ('ilz022', 0.00043446676098187137) + +[fips1746383] +centroid = (0.70547276507113021, -1.5669719438846341) +description = Manito village, IL +station = ('kpia', 0.0044851070401799985) +zone = ('ilz041', 0.0036387277473693717) + +[fips1746422] +centroid = (0.72353151230859036, -1.5650109268436783) +description = Manlius village, IL +station = ('ksqi', 0.0051435073332328088) +zone = ('ilz017', 0.0020362591011316932) + +[fips1746487] +centroid = (0.70183247949036798, -1.544768999604776) +description = Mansfield village, IL +station = ('kcmi', 0.0044906449720586439) +zone = ('ilz044', 0.00368696182638234) + +[fips1746500] +centroid = (0.7199708311950116, -1.5331646021142387) +description = Manteno village, IL +station = ('kikk', 0.0031400424055126057) +zone = ('ilz023', 0.0019964692289134666) + +[fips1746604] +centroid = (0.73165221515885459, -1.5466517386287799) +description = Maple Park village, IL +station = ('kdkb', 0.0012073601440072631) +zone = ('ilz011', 0.0020531001468407232) + +[fips1746643] +centroid = (0.7081313902141082, -1.5659918716964694) +description = Mapleton village, IL +station = ('kpia', 0.0017252992507912927) +zone = ('ilz037', 0.0030254755625227329) + +[fips1746695] +centroid = (0.71206117355789855, -1.57364358712343) +description = Maquon village, IL +station = ('kgbg', 0.0042983857824768377) +zone = ('ilz027', 0.0024256235603123334) + +[fips1746786] +centroid = (0.73735513084962367, -1.5464723711415524) +description = Marengo city, IL +station = ('kdkb', 0.0056609299156743752) +zone = ('ilz005', 0.0023999605613658132) + +[fips1746825] +centroid = (0.7068487477468175, -1.5776557500079147) +description = Marietta village, IL +station = ('kmqb', 0.00346239230058359) +zone = ('ilz036', 0.0025061419352597454) + +[fips1746864] +centroid = (0.67696682599708247, -1.5669243836625173) +description = Marine village, IL +station = ('kaln', 0.0041859293584167829) +zone = ('ilz100', 0.0018795110554015771) + +[fips1746916] +centroid = (0.65827073687667159, -1.5520453819760955) +description = Marion city, IL +station = ('kmwa', 0.0012000218816362218) +zone = ('ilz085', 0.00025409254252467756) + +[fips1746955] +centroid = (0.66762392143152405, -1.5665878667294402) +description = Marissa village, IL +station = ('ksar', 0.0019808821014101175) +zone = ('ilz079', 0.0036066224840320816) + +[fips1746981] +centroid = (0.72016365517077197, -1.5577993660007781) +description = Mark village, IL +station = ('kvys', 0.0020600459019477135) +zone = ('ilz018', 0.0010858048030556347) + +[fips1747007] +centroid = (0.7260580334804847, -1.5304934106006465) +description = Markham city, IL +station = ('kigq', 0.002321017973364444) +zone = ('ilz014', 0.0044957633439144731) + +[fips1747072] +centroid = (0.69876710536521291, -1.5525798716062262) +description = Maroa city, IL +station = ('kdec', 0.0037416606078958551) +zone = ('ilz043', 0.0025104879634090067) + +[fips1747111] +centroid = (0.70892233852452691, -1.5638980350994367) +description = Marquette Heights city, IL +station = ('kpia', 0.001340417568829629) +zone = ('ilz037', 0.0022805517885149938) + +[fips1747150] +centroid = (0.72040766965349334, -1.5477346805230572) +description = Marseilles city, IL +station = ('kc09', 0.0042857788420138264) +zone = ('ilz021', 0.0034155897967952701) + +[fips1747163] +centroid = (0.68764951510964167, -1.5305052439329747) +description = Marshall city, IL +station = ('kprg', 0.0052592117996984383) +zone = ('ilz063', 0.001735582786296418) + +[fips1747254] +centroid = (0.68658496898568022, -1.5338103913907688) +description = Martinsville city, IL +station = ('krsv', 0.0064404204201726403) +zone = ('ilz063', 0.0012591874897934809) + +[fips1747280] +centroid = (0.71410652490831072, -1.5311162313442206) +description = Martinton village, IL +station = ('kikk', 0.0031491291311735101) +zone = ('ilz033', 0.0032022457283383057) + +[fips1747397] +centroid = (0.67590880740452353, -1.570195549559775) +description = Maryville village, IL +station = ('kaln', 0.0032348624826861036) +zone = ('ilz100', 0.0019798951461811381) + +[fips1747423] +centroid = (0.67226756189267267, -1.5673084433644184) +description = Mascoutah city, IL +station = ('kblv', 0.00087927534859556539) +zone = ('ilz101', 0.0019402620441696927) + +[fips1747449] +centroid = (0.67988128150181759, -1.5468341429889056) +description = Mason town, IL +station = ('k1h2', 0.002393930270026521) +zone = ('ilz066', 0.0019069216316254711) + +[fips1747475] +centroid = (0.70166061691892412, -1.5655096197708507) +description = Mason City city, IL +station = ('kspi', 0.0061496605599406177) +zone = ('ilz048', 0.0033578078435806701) + +[fips1747527] +centroid = (0.72010799662092595, -1.5813705087878593) +description = Matherville village, IL +station = ('kmli', 0.0035299779859436003) +zone = ('ilz024', 0.0020120909289293863) + +[fips1747540] +centroid = (0.72447433917051762, -1.5314447372160309) +description = Matteson village, IL +station = ('kigq', 0.0028355095825041) +zone = ('ilz022', 0.0032516955849481496) + +[fips1747553] +centroid = (0.68901816740247057, -1.5422117606380463) +description = Mattoon city, IL +station = ('kmto', 0.00130210231148457) +zone = ('ilz056', 0.0020306048754650673) + +[fips1747592] +centroid = (0.66384224672805792, -1.5366877237423144) +description = Maunie village, IL +station = ('kcul', 0.0014214152923306778) +zone = ('ilz083', 0.002051284185643462) + +[fips1747774] +centroid = (0.73094040007672123, -1.5331698206487021) +description = Maywood village, IL +station = ('kord', 0.002037537536139247) +zone = ('ilz014', 0.0007825382868456367) + +[fips1747787] +centroid = (0.71979928278283312, -1.5432742472734906) +description = Mazon village, IL +station = ('kc09', 0.0032087475482826464) +zone = ('ilz021', 0.00076055274189433411) + +[fips1748021] +centroid = (0.6946138675172896, -1.5605524658161665) +description = Mechanicsburg village, IL +station = ('kspi', 0.0037327858992880544) +zone = ('ilz051', 0.0033713670115286891) + +[fips1748073] +centroid = (0.71156111927390975, -1.5853288282649198) +description = Media village, IL +station = ('kbrl', 0.0039748376529674884) +zone = ('ilz025', 0.0014876839252538317) + +[fips1748138] +centroid = (0.68375928092670146, -1.5732639954644136) +description = Medora village, IL +station = ('kaln', 0.0049826740225555263) +zone = ('ilz059', 0.0032836764258384584) + +[fips1748242] +centroid = (0.73134348386746928, -1.5335213823199314) +description = Melrose Park village, IL +station = ('kord', 0.001559831774246226) +zone = ('ilz014', 0.0012615824471927856) + +[fips1748268] +centroid = (0.70810323805327335, -1.5401973190686873) +description = Melvin village, IL +station = ('ktip', 0.0050412406291817022) +zone = ('ilz039', 0.00054862583142244843) + +[fips1748307] +centroid = (0.69969129211072889, -1.59323804956972) +description = Mendon village, IL +station = ('kuin', 0.0029549125655957075) +zone = ('ilz095', 0.002197576775968386) + +[fips1748333] +centroid = (0.72530045586536418, -1.5550972123462552) +description = Mendota city, IL +station = ('kvys', 0.0036383953084297401) +zone = ('ilz010', 0.0042112818657197891) + +[fips1748359] +centroid = (0.74127927677993011, -1.5802773043575802) +description = Menominee village, IL +station = ('kdbq', 0.0023801527270570677) +zone = ('iaz042', 0.0043669937340950369) + +[fips1748424] +centroid = (0.69519075119495133, -1.5805219820654173) +description = Meredosia village, IL +station = ('kijx', 0.0043879324650669847) +zone = ('ilz096', 0.0034441165660612453) + +[fips1748554] +centroid = (0.72747272755898129, -1.5306749073895611) +description = Merrionette Park village, IL +station = ('kmdw', 0.0018938047091213476) +zone = ('ilz014', 0.003152880900008633) + +[fips1748606] +centroid = (0.71201891913670778, -1.5597737871703889) +description = Metamora village, IL +station = ('kc75', 0.003907762332240907) +zone = ('ilz031', 0.0020833286175352063) + +[fips1748632] +centroid = (0.69463674878378323, -1.5325638074258245) +description = Metcalf village, IL +station = ('kprg', 0.0025552487922218476) +zone = ('ilz057', 0.0022815146791970086) + +[fips1748645] +centroid = (0.64838238201327991, -1.5478849882782391) +description = Metropolis city, IL +station = ('km30', 0.0010839887727026422) +zone = ('ilz094', 0.0012448628690138607) + +[fips1748671] +centroid = (0.73727863306850872, -1.5345142826780984) +description = Mettawa village, IL +station = ('kpwk', 0.0022211061994365814) +zone = ('ilz006', 0.0017575447704747411) + +[fips1748853] +centroid = (0.69989352341115751, -1.5636614033594514) +description = Middletown village, IL +station = ('kaaa', 0.0035639259197741534) +zone = ('ilz048', 0.0030969621868603549) + +[fips1748892] +centroid = (0.7265007711518382, -1.5310766996366627) +description = Midlothian village, IL +station = ('kmdw', 0.0027763447744379947) +zone = ('ilz014', 0.00393221614715913) + +[fips1749009] +centroid = (0.72316944375526404, -1.580608812195704) +description = Milan village, IL +station = ('kmli', 0.00065403351844655526) +zone = ('ilz015', 0.00057721909320886274) + +[fips1749048] +centroid = (0.70908517774373803, -1.5305886357646352) +description = Milford village, IL +station = ('kdnv', 0.0075914180092461238) +zone = ('ilz033', 0.002691431014121181) + +[fips1749100] +centroid = (0.72614411311919314, -1.5453998663162019) +description = Millbrook village, IL +station = ('karr', 0.0030002894491821205) +zone = ('ilz020', 0.0015345995952367024) + +[fips1749178] +centroid = (0.65172110960588248, -1.5577634645780642) +description = Mill Creek village, IL +station = ('kcir', 0.0048473827964802124) +zone = ('ilz088', 0.0022748462439492632) + +[fips1749191] +centroid = (0.73240354449525302, -1.5668638032841804) +description = Milledgeville village, IL +station = ('ksqi', 0.003984214496725297) +zone = ('ilz007', 0.002768355374593245) + +[fips1749308] +centroid = (0.72536784302778368, -1.5464354399745803) +description = Millington village, IL +station = ('kc09', 0.0033851730966682233) +zone = ('ilz020', 0.0023485603816468139) + +[fips1749347] +centroid = (0.66757875231048247, -1.541920884064909) +description = Mill Shoals village, IL +station = ('kfwc', 0.0024350656647149378) +zone = ('ilz076', 0.0033280977651634841) + +[fips1749386] +centroid = (0.67124109885298988, -1.5722444090219838) +description = Millstadt village, IL +station = ('kcps', 0.0020858269322918789) +zone = ('ilz101', 0.0021210383701598455) + +[fips1749477] +centroid = (0.69053161221004489, -1.582142991514792) +description = Milton village, IL +station = ('kppq', 0.0021578872517183574) +zone = ('ilz049', 0.0027380316162270747) + +[fips1749516] +centroid = (0.72225932436351914, -1.5679398162213274) +description = Mineral village, IL +station = ('ksqi', 0.0067874257022811678) +zone = ('ilz028', 0.0050698774458960011) + +[fips1749555] +centroid = (0.70569201333176579, -1.5588214482640383) +description = Minier village, IL +station = ('kaaa', 0.0048002588954788967) +zone = ('ilz037', 0.0029507567796287436) + +[fips1749568] +centroid = (0.71402105613484057, -1.554009313716902) +description = Minonk city, IL +station = ('kpnt', 0.0054504736156560278) +zone = ('ilz031', 0.0031241559144860472) + +[fips1749607] +centroid = (0.72345646315075463, -1.5407680068275043) +description = Minooka village, IL +station = ('kjot', 0.0017962974145567456) +zone = ('ilz020', 0.0031220973552322849) + +[fips1749698] +centroid = (0.67654475302407269, -1.5722154016498155) +description = Mitchell CDP, IL +station = ('kaln', 0.0024259592534008963) +zone = ('ilz100', 0.0026649461882463218) + +[fips1749802] +centroid = (0.68903614429376603, -1.5704530554376144) +description = Modesto village, IL +station = ('kijx', 0.0062143920246836657) +zone = ('ilz059', 0.00387659216216843) + +[fips1749854] +centroid = (0.72483284725216979, -1.533755378612746) +description = Mokena village, IL +station = ('klot', 0.0031407790302923834) +zone = ('ilz022', 0.001984225725648017) + +[fips1749867] +centroid = (0.724004234736493, -1.5794093870271486) +description = Moline city, IL +station = ('kmli', 0.00064139145474924916) +zone = ('ilz015', 0.0010012518792406667) + +[fips1749893] +centroid = (0.71843993309491738, -1.5300167960885116) +description = Momence city, IL +station = ('kikk', 0.0028933114601800477) +zone = ('ilz023', 0.0026448393357445615) + +[fips1749945] +centroid = (0.72286769378088678, -1.5315325098241137) +description = Monee village, IL +station = ('kigq', 0.0035670353851684337) +zone = ('ilz022', 0.003027063182622915) + +[fips1750010] +centroid = (0.71409207358210425, -1.5819910256968208) +description = Monmouth city, IL +station = ('kgbg', 0.0028035810928629785) +zone = ('ilz026', 0.0011978318461275789) + +[fips1750062] +centroid = (0.73478567457813015, -1.5532497987863119) +description = Monroe Center village, IL +station = ('krfd', 0.0022129190175797556) +zone = ('ilz004', 0.0044773955822841769) + +[fips1750218] +centroid = (0.72816951535625507, -1.5421467122168246) +description = Montgomery village, IL +station = ('karr', 0.0016181313472323875) +zone = ('ilz020', 0.0024547450069664681) + +[fips1750244] +centroid = (0.69871717149531321, -1.5459098689769273) +description = Monticello city, IL +station = ('kdec', 0.0052478421705560163) +zone = ('ilz044', 0.00046340209511807685) + +[fips1750283] +centroid = (0.68357479962476564, -1.5424806984224864) +description = Montrose village, IL +station = ('k1h2', 0.0026864797891430485) +zone = ('ilz062', 0.0026376456325745575) + +[fips1750491] +centroid = (0.72211374645061033, -1.5434429158924032) +description = Morris city, IL +station = ('kc09', 0.00091275181046833161) +zone = ('ilz021', 0.0015674994699827205) + +[fips1750530] +centroid = (0.72968493238588417, -1.5701272373728521) +description = Morrison city, IL +station = ('ksfy', 0.0045661441850870727) +zone = ('ilz009', 0.001092346797544853) + +[fips1750543] +centroid = (0.68803790322808789, -1.5613542177146549) +description = Morrisonville village, IL +station = ('ktaz', 0.0026420837014451371) +zone = ('ilz052', 0.0032687856255741222) + +[fips1750621] +centroid = (0.70884331001599654, -1.561490231223263) +description = Morton village, IL +station = ('kpia', 0.0030128852435829931) +zone = ('ilz037', 0.0019547345325664888) + +[fips1750647] +centroid = (0.73377692663035499, -1.5322073064728121) +description = Morton Grove village, IL +station = ('kpwk', 0.0019367061371354678) +zone = ('ilz014', 0.003551152039451751) + +[fips1750751] +centroid = (0.64726715152784053, -1.5561880082221666) +description = Mound City city, IL +station = ('kcir', 0.00086890064784897079) +zone = ('kyz004', 0.0023302292656192797) + +[fips1750777] +centroid = (0.64779977365567176, -1.5568840455278619) +description = Mounds city, IL +station = ('kcir', 0.0009321425675358774) +zone = ('ilz093', 0.0021411803049651711) + +[fips1750790] +centroid = (0.69824682271519345, -1.586045774615054) +description = Mound Station village, IL +station = ('kuin', 0.0045476234323129326) +zone = ('ilz096', 0.0018252196458568429) + +[fips1750829] +centroid = (0.69403673949353273, -1.5578681494265989) +description = Mount Auburn village, IL +station = ('ktaz', 0.0041390480950148582) +zone = ('ilz052', 0.0038399745108407724) + +[fips1750868] +centroid = (0.67053886562844989, -1.5318718541905789) +description = Mount Carmel city, IL +station = ('kajg', 0.003322350407993376) +zone = ('ilz078', 0.0011227705501025587) + +[fips1750881] +centroid = (0.73469128717218224, -1.5703940109490195) +description = Mount Carroll city, IL +station = ('ksfy', 0.0018975744676871394) +zone = ('ilz007', 0.00071193715656345106) + +[fips1750920] +centroid = (0.68237568861547548, -1.5678967938552659) +description = Mount Clare village, IL +station = ('k3lf', 0.0024382010690323095) +zone = ('ilz059', 0.0031094251286219658) + +[fips1750933] +centroid = (0.67220574233056707, -1.5399442637804406) +description = Mount Erie village, IL +station = ('kfwc', 0.0034226978177201023) +zone = ('ilz076', 0.0030297939323783063) + +[fips1750998] +centroid = (0.73390766924462192, -1.5608677071856616) +description = Mount Morris village, IL +station = ('kfep', 0.0039488804822499545) +zone = ('ilz008', 0.0014366694148875534) + +[fips1751024] +centroid = (0.68194649469911761, -1.5660470241008322) +description = Mount Olive city, IL +station = ('k3lf', 0.0017225977123660086) +zone = ('ilz059', 0.0042281295705671237) + +[fips1751089] +centroid = (0.73417983588817792, -1.5347988935192212) +description = Mount Prospect village, IL +station = ('kpwk', 0.0010179943936653836) +zone = ('ilz013', 0.0041919701503906554) + +[fips1751128] +centroid = (0.69830787433242814, -1.5582960517993105) +description = Mount Pulaski city, IL +station = ('kaaa', 0.0026808070585601683) +zone = ('ilz042', 0.0022891652750897241) + +[fips1751154] +centroid = (0.69787606242219224, -1.5841326319554807) +description = Mount Sterling city, IL +station = ('kppq', 0.0060499436561088126) +zone = ('ilz096', 0.00045014455566574983) + +[fips1751180] +centroid = (0.66873131538862207, -1.5518180004811457) +description = Mount Vernon city, IL +station = ('kmvn', 0.0006296471366054701) +zone = ('ilz075', 0.00030289715426442361) + +[fips1751206] +centroid = (0.69428619940352021, -1.5513385410823302) +description = Mount Zion village, IL +station = ('kdec', 0.00096885376170446609) +zone = ('ilz053', 0.0017360363164022673) + +[fips1751232] +centroid = (0.69158099142280649, -1.5537281760809909) +description = Moweaqua village, IL +station = ('kdec', 0.0041969003119489545) +zone = ('ilz052', 0.0036988032557204818) + +[fips1751271] +centroid = (0.65915519992841209, -1.5448588840612536) +description = Muddy village, IL +station = ('khsb', 0.00091761885746987281) +zone = ('ilz086', 0.00043981593249090288) + +[fips1751284] +centroid = (0.67937257038473897, -1.5579146624511646) +description = Mulberry Grove village, IL +station = ('kslo', 0.0063800861989690609) +zone = ('ilz064', 0.0024519550488325227) + +[fips1751310] +centroid = (0.66277138251220435, -1.555236681606782) +description = Mulkeytown CDP, IL +station = ('kmdh', 0.0038567193153877673) +zone = ('ilz081', 0.002555335448981472) + +[fips1751336] +centroid = (0.70015720775454882, -1.5331489465108481) +description = Muncie village, IL +station = ('kdnv', 0.0036068864600825742) +zone = ('ilz046', 0.0018830330686367587) + +[fips1751349] +centroid = (0.73773507157449025, -1.5360900706465539) +description = Mundelein village, IL +station = ('kpwk', 0.0030259847624890231) +zone = ('ilz006', 0.00094784523497274732) + +[fips1751453] +centroid = (0.65918268886413112, -1.5591446483349227) +description = Murphysboro city, IL +station = ('kmdh', 0.0011663931074725696) +zone = ('ilz084', 0.00074568075087520769) + +[fips1751479] +centroid = (0.69083426975563322, -1.575189006362901) +description = Murrayville village, IL +station = ('kijx', 0.0033604857722239019) +zone = ('ilz050', 0.0024291976036871776) + +[fips1751622] +centroid = (0.72866052883471855, -1.5387175067557988) +description = Naperville city, IL +station = ('klot', 0.0026124060303396581) +zone = ('ilz013', 0.0020510592828760508) + +[fips1751648] +centroid = (0.72138077797794276, -1.5512182704435753) +description = Naplate village, IL +station = ('kvys', 0.0036174672486296799) +zone = ('ilz019', 0.00022940264629991191) + +[fips1751661] +centroid = (0.69382869624669496, -1.5813888696515903) +description = Naples town, IL +station = ('kppq', 0.0030492709469975925) +zone = ('ilz049', 0.0026054164836166547) + +[fips1751700] +centroid = (0.6692199377660103, -1.5601651772551486) +description = Nashville city, IL +station = ('kenl', 0.0050603288837154873) +zone = ('ilz074', 0.00030870024363549407) + +[fips1751726] +centroid = (0.66629645890904232, -1.552753339880582) +description = Nason city, IL +station = ('kmvn', 0.0028091751159006334) +zone = ('ilz075', 0.0022507781694859723) + +[fips1751791] +centroid = (0.70763561198678659, -1.594931001490862) +description = Nauvoo city, IL +station = ('keok', 0.0015153985241314202) +zone = ('iaz099', 0.0021273232428206897) + +[fips1751882] +centroid = (0.68839384567573969, -1.5845524883603401) +description = Nebo village, IL +station = ('kppq', 0.0034378276323649513) +zone = ('ilz097', 0.0034150512936852351) + +[fips1751947] +centroid = (0.72947763963062484, -1.5639072853444722) +description = Nelson village, IL +station = ('ksqi', 0.0011325228195654959) +zone = ('ilz010', 0.0040618058373273315) + +[fips1751986] +centroid = (0.68629676276629847, -1.5437438979219098) +description = Neoga city, IL +station = ('kmto', 0.0035353272006330471) +zone = ('ilz062', 0.0029585711519614197) + +[fips1751999] +centroid = (0.72076535743039705, -1.5671218676673804) +description = Neponset village, IL +station = ('kc75', 0.0071789207093117154) +zone = ('ilz028', 0.0035517929468952218) + +[fips1752103] +centroid = (0.72495032536412163, -1.5460224601669734) +description = Newark village, IL +station = ('kc09', 0.0028738206024060179) +zone = ('ilz020', 0.0021933976358760434) + +[fips1752116] +centroid = (0.66878364035959681, -1.5686163058394007) +description = New Athens village, IL +station = ('ksar', 0.0038229602354362146) +zone = ('ilz101', 0.0027482578645545322) + +[fips1752142] +centroid = (0.67259069215038703, -1.5656399260528047) +description = New Baden village, IL +station = ('kblv', 0.0019990939859368807) +zone = ('ilz101', 0.0032690099913665316) + +[fips1752155] +centroid = (0.72450694192094489, -1.5658815145278655) +description = New Bedford village, IL +station = ('ksqi', 0.0042223089027537538) +zone = ('ilz017', 0.0031065347494755816) + +[fips1752168] +centroid = (0.69334817219703582, -1.5692857966871732) +description = New Berlin village, IL +station = ('kspi', 0.0037701929063180795) +zone = ('ilz050', 0.0038710854048976499) + +[fips1752220] +centroid = (0.71855833623137266, -1.5882461286563359) +description = New Boston city, IL +station = ('kmut', 0.0039523671089501562) +zone = ('ilz024', 0.0034483186099063911) + +[fips1752285] +centroid = (0.65586359622561341, -1.5493876993109137) +description = New Burnside village, IL +station = ('kmwa', 0.0043495025550897475) +zone = ('ilz089', 0.0025497894723609041) + +[fips1752311] +centroid = (0.69180214209232682, -1.5899643354917543) +description = New Canton town, IL +station = ('kppq', 0.0042998970616554312) +zone = ('ilz097', 0.0028607696755752255) + +[fips1752415] +centroid = (0.68013669298455448, -1.5648921746413726) +description = New Douglas village, IL +station = ('k3lf', 0.0033774337695642452) +zone = ('ilz064', 0.0033885059619864419) + +[fips1752467] +centroid = (0.65021256917350623, -1.5536207336122381) +description = New Grand Chain village, IL +station = ('km30', 0.0038774993437436169) +zone = ('ilz093', 0.0016354354238389075) + +[fips1752506] +centroid = (0.66145411271255417, -1.5381019989417903) +description = New Haven village, IL +station = ('kcul', 0.0033324911761477352) +zone = ('ilz087', 0.0027671517423820779) + +[fips1752545] +centroid = (0.70133338513746768, -1.5635191241188287) +description = New Holland village, IL +station = ('kaaa', 0.0033363348782991316) +zone = ('ilz042', 0.0030525908488329067) + +[fips1752584] +centroid = (0.72447517692855856, -1.5353513774939398) +description = New Lenox village, IL +station = ('klot', 0.0023767372020239543) +zone = ('ilz022', 0.0011303818213185227) + +[fips1752623] +centroid = (0.69459011358617007, -1.535673966699586) +description = Newman city, IL +station = ('kprg', 0.00458850340878518) +zone = ('ilz055', 0.0031190310118421804) + +[fips1752701] +centroid = (0.73618544609152203, -1.5543765833513994) +description = New Milford village, IL +station = ('krfd', 0.00062937461090734471) +zone = ('ilz003', 0.0030226798505841447) + +[fips1752714] +centroid = (0.67087794819552726, -1.5598090777278641) +description = New Minden village, IL +station = ('kenl', 0.0040281107044051623) +zone = ('ilz074', 0.0016022192006296587) + +[fips1752805] +centroid = (0.69302855005111808, -1.585593943778298) +description = New Salem village, IL +station = ('kppq', 0.001520037064814894) +zone = ('ilz097', 0.0015727689088385435) + +[fips1752844] +centroid = (0.68047191837398502, -1.5387657651096163) +description = Newton city, IL +station = ('koly', 0.0046491713380440438) +zone = ('ilz067', 0.00040911525185218303) + +[fips1752961] +centroid = (0.69558996035475995, -1.5562205760660091) +description = Niantic village, IL +station = ('kdec', 0.0040129221687872129) +zone = ('ilz053', 0.0027237813959113317) + +[fips1753000] +centroid = (0.73352460438039413, -1.5325728482313499) +description = Niles village, IL +station = ('kord', 0.0015872516343945354) +zone = ('ilz014', 0.0032817590375108859) + +[fips1753039] +centroid = (0.68765110335926105, -1.5674406869618422) +description = Nilwood town, IL +station = ('k3lf', 0.0045159372486576329) +zone = ('ilz059', 0.0028851936675678412) + +[fips1753143] +centroid = (0.6754019288831592, -1.5397672350344107) +description = Noble village, IL +station = ('koly', 0.00075365850675430295) +zone = ('ilz072', 0.0018857724724934562) + +[fips1753169] +centroid = (0.68591580975046562, -1.5583200675298179) +description = Nokomis city, IL +station = ('ktaz', 0.0041257729845361833) +zone = ('ilz060', 0.002882211608196553) + +[fips1753195] +centroid = (0.74100262464019651, -1.5698445114873214) +description = Nora village, IL +station = ('kfep', 0.0059478460361453434) +zone = ('wiz067', 0.0042931591652238506) + +[fips1753234] +centroid = (0.70724720641504779, -1.5531149371950101) +description = Normal town, IL +station = ('kbmi', 0.0012314362749806199) +zone = ('ilz038', 0.0019326859264624646) + +[fips1753377] +centroid = (0.73240539454426024, -1.5328039123710213) +description = Norridge village, IL +station = ('kord', 0.0012601586613226962) +zone = ('ilz014', 0.002163026993512172) + +[fips1753390] +centroid = (0.70905358728427681, -1.5713546052627321) +description = Norris village, IL +station = ('kpia', 0.0046719102937966194) +zone = ('ilz036', 0.0035421123004061019) + +[fips1753403] +centroid = (0.66284819445258447, -1.5416093602467205) +description = Norris City village, IL +station = ('kcul', 0.0034162947764445248) +zone = ('ilz083', 0.0027886963339555492) + +[fips1753442] +centroid = (0.72970011675037649, -1.5418584361842729) +description = North Aurora village, IL +station = ('kdpa', 0.0019917217001606423) +zone = ('ilz012', 0.0025375210073930931) + +[fips1753455] +centroid = (0.73666499275679997, -1.5381888639786623) +description = North Barrington village, IL +station = ('kpwk', 0.0033937117786562681) +zone = ('ilz006', 0.0026055279901836576) + +[fips1753481] +centroid = (0.73530108775953651, -1.5330124443100497) +description = Northbrook village, IL +station = ('kpwk', 0.00086962379522199029) +zone = ('ilz006', 0.0040174319317499759) + +[fips1753559] +centroid = (0.73856567376551441, -1.5334323356214945) +description = North Chicago city, IL +station = ('kugn', 0.0017474712271674014) +zone = ('ilz006', 0.0018668060146620838) + +[fips1753585] +centroid = (0.6630708111986765, -1.554458910532216) +description = North City village, IL +station = ('kmwa', 0.0042923470745469513) +zone = ('ilz081', 0.001922148559494765) + +[fips1753663] +centroid = (0.73482848750468144, -1.5320355137145383) +description = Northfield village, IL +station = ('kpwk', 0.0015837389814228095) +zone = ('ilz014', 0.0046102686002425465) + +[fips1753793] +centroid = (0.71716238698904256, -1.5790835166025088) +description = North Henderson village, IL +station = ('kgbg', 0.0027201325434159252) +zone = ('ilz024', 0.0040370582115804039) + +[fips1753871] +centroid = (0.73154283537463205, -1.5342398994663924) +description = Northlake city, IL +station = ('kord', 0.0012132973610132461) +zone = ('ilz014', 0.0017371678292141394) + +[fips1754092] +centroid = (0.70874593809702779, -1.5640845060767199) +description = North Pekin village, IL +station = ('kpia', 0.0013607275193673486) +zone = ('ilz037', 0.0022165731186950957) + +[fips1754144] +centroid = (0.73035295715708504, -1.5328578081383231) +description = North Riverside village, IL +station = ('kmdw', 0.0014786258067883684) +zone = ('ilz014', 0.00016551141483764296) + +[fips1754222] +centroid = (0.7218151729754716, -1.5535564880424722) +description = North Utica village, IL +station = ('kvys', 0.0018470445344244545) +zone = ('ilz019', 0.0016707901749701895) + +[fips1754404] +centroid = (0.71047950382986369, -1.5655681406606701) +description = Norwood village, IL +station = ('kpia', 0.00074741780508813082) +zone = ('ilz029', 0.001612479245036827) + +[fips1754534] +centroid = (0.73018659237278483, -1.5350776749606421) +description = Oak Brook village, IL +station = ('kord', 0.0026050444813541232) +zone = ('ilz014', 0.001779405766777825) + +[fips1754560] +centroid = (0.73047917936858919, -1.5353517614663754) +description = Oakbrook Terrace city, IL +station = ('kord', 0.0023685122760826898) +zone = ('ilz014', 0.001996321714408862) + +[fips1754586] +centroid = (0.66784564805969737, -1.5621338737448132) +description = Oakdale village, IL +station = ('ksar', 0.0033519134999066033) +zone = ('ilz074', 0.0019896468901379246) + +[fips1754625] +centroid = (0.69989284273274921, -1.5701899994127537) +description = Oakford village, IL +station = ('kspi', 0.0057788432323578063) +zone = ('ilz041', 0.0025071443980840312) + +[fips1754638] +centroid = (0.72615599881139925, -1.5315886396128577) +description = Oak Forest city, IL +station = ('kmdw', 0.0031010883682729249) +zone = ('ilz022', 0.0040642273936898517) + +[fips1754703] +centroid = (0.72277150868580942, -1.5808284618820674) +description = Oak Grove village, IL +station = ('kmli', 0.0010120167006985022) +zone = ('ilz015', 0.0009759667092195559) + +[fips1754781] +centroid = (0.69215989968240055, -1.5363573329149118) +description = Oakland city, IL +station = ('kmto', 0.0046422444317459986) +zone = ('ilz055', 0.0032166526401427812) + +[fips1754820] +centroid = (0.72803681797322584, -1.5315710990538753) +description = Oak Lawn village, IL +station = ('kmdw', 0.0012203765149046391) +zone = ('ilz014', 0.0023597993839297869) + +[fips1754885] +centroid = (0.73106896102942309, -1.5322235380348557) +description = Oak Park village, IL +station = ('kmdw', 0.0018851854427805871) +zone = ('ilz014', 0.00089526820515024245) + +[fips1754924] +centroid = (0.7149519274913918, -1.5730447122971931) +description = Oak Run CDP, IL +station = ('kgbg', 0.0040098652295616957) +zone = ('ilz027', 0.0012452670686362026) + +[fips1755002] +centroid = (0.70005376208978309, -1.5319963485261237) +description = Oakwood village, IL +station = ('kdnv', 0.0028781381033724488) +zone = ('ilz046', 0.0014104718496286471) + +[fips1755041] +centroid = (0.73735916256019574, -1.5400742384498365) +description = Oakwood Hills village, IL +station = ('kpwk', 0.0049525346008741184) +zone = ('ilz006', 0.0033219886083162235) + +[fips1755106] +centroid = (0.68071434460708713, -1.5343089446916012) +description = Oblong village, IL +station = ('krsv', 0.003530320664354521) +zone = ('ilz068', 0.0020335442821933177) + +[fips1755132] +centroid = (0.68567539064600347, -1.5552037297905046) +description = Oconee village, IL +station = ('ktaz', 0.0052544058895268907) +zone = ('ilz052', 0.0050802600417535785) + +[fips1755171] +centroid = (0.71562003952905506, -1.5449966952589911) +description = Odell village, IL +station = ('kpnt', 0.0019319670866057772) +zone = ('ilz032', 0.0019879842262860185) + +[fips1755210] +centroid = (0.67397409247539519, -1.5542870654140646) +description = Odin village, IL +station = ('kslo', 0.0013129092861584506) +zone = ('ilz070', 0.0019335787685852328) + +[fips1755249] +centroid = (0.67359837544731838, -1.5693135299689873) +description = O'Fallon city, IL +station = ('kblv', 0.0011775800448615588) +zone = ('ilz101', 0.0021726442565764802) + +[fips1755275] +centroid = (0.70013961483568876, -1.5351270154185961) +description = Ogden village, IL +station = ('ktip', 0.0039841560599238705) +zone = ('ilz046', 0.0032115153471990272) + +[fips1755353] +centroid = (0.72074776451153699, -1.5545524252735377) +description = Oglesby city, IL +station = ('kvys', 0.0014715356211332403) +zone = ('ilz019', 0.0025462641985131615) + +[fips1755379] +centroid = (0.72528829092047764, -1.5613807816258702) +description = Ohio village, IL +station = ('ksqi', 0.004323882437525078) +zone = ('ilz017', 0.0027963027820813772) + +[fips1755418] +centroid = (0.68667134533036145, -1.5571677138911886) +description = Ohlman village, IL +station = ('ktaz', 0.0036377890693031507) +zone = ('ilz052', 0.0036189920637376702) + +[fips1755470] +centroid = (0.6708100548876248, -1.5629089744656242) +description = Okawville village, IL +station = ('kblv', 0.0045899217053783151) +zone = ('ilz074', 0.0023685106853551774) + +[fips1755639] +centroid = (0.74059788278665895, -1.5355790731481551) +description = Old Mill Creek village, IL +station = ('kugn', 0.0015159485060043075) +zone = ('ilz006', 0.0019401568617709579) + +[fips1755717] +centroid = (0.67880615868258909, -1.5633270157280617) +description = Old Ripley village, IL +station = ('k3lf', 0.0049042095745016612) +zone = ('ilz064', 0.0018564039528761115) + +[fips1755756] +centroid = (0.65794195175218084, -1.5383337612131629) +description = Old Shawneetown village, IL +station = ('kcul', 0.006848256925526589) +zone = ('ilz087', 0.0016930811047657455) + +[fips1755847] +centroid = (0.64897769636784275, -1.5594430647304287) +description = Olive Branch CDP, IL +station = ('kcir', 0.0027580584764391246) +zone = ('ilz092', 0.00021452045302838867) + +[fips1755886] +centroid = (0.69710907748240336, -1.5295706550251169) +description = Olivet CDP, IL +station = ('kprg', 0.0042300219127097971) +zone = ('inz043', 0.0027861614736346056) + +[fips1755899] +centroid = (0.64895457075525376, -1.5548086919676081) +description = Olmsted village, IL +station = ('kcir', 0.0027909246090495696) +zone = ('ilz093', 0.00092248225423940749) + +[fips1755912] +centroid = (0.67595259771545602, -1.5373596580510396) +description = Olney city, IL +station = ('koly', 0.0012614176140171734) +zone = ('ilz072', 0.0002939483215285388) + +[fips1755938] +centroid = (0.7245759871461539, -1.5305493134965877) +description = Olympia Fields village, IL +station = ('kigq', 0.0021580716277075714) +zone = ('ilz022', 0.0039186165598291741) + +[fips1756003] +centroid = (0.66130083789764393, -1.5412376574759235) +description = Omaha village, IL +station = ('khsb', 0.0036142143471969341) +zone = ('ilz087', 0.002450366526212536) + +[fips1756081] +centroid = (0.71060984501840263, -1.5360188786663651) +description = Onarga village, IL +station = ('kikk', 0.0065738017756168223) +zone = ('ilz033', 0.0024869875316186453) + +[fips1756159] +centroid = (0.71684224124434925, -1.5747167900804815) +description = Oneida city, IL +station = ('kgbg', 0.0035867121646173811) +zone = ('ilz027', 0.0024521047681568433) + +[fips1756198] +centroid = (0.66773218420502523, -1.5496753470249349) +description = Opdyke CDP, IL +station = ('kmvn', 0.0014653372661118233) +zone = ('ilz075', 0.0019810248641808238) + +[fips1756237] +centroid = (0.71449449414773658, -1.5873683851222156) +description = Oquawka village, IL +station = ('kbrl', 0.0038446373141875849) +zone = ('ilz025', 0.0021089987213529686) + +[fips1756341] +centroid = (0.74117899016111055, -1.5646209155690276) +description = Orangeville village, IL +station = ('keft', 0.0026889562058011224) +zone = ('ilz002', 0.0020134021486239457) + +[fips1756471] +centroid = (0.69703015369362809, -1.5510644720298898) +description = Oreana village, IL +station = ('kdec', 0.0018077187888771728) +zone = ('ilz053', 0.0018251693233523006) + +[fips1756484] +centroid = (0.73325999501249928, -1.5592033786642523) +description = Oregon city, IL +station = ('krpj', 0.0039403896349448821) +zone = ('ilz008', 0.00055882777260238693) + +[fips1756536] +centroid = (0.66178610924286851, -1.5529648388793387) +description = Orient city, IL +station = ('kmwa', 0.0029363071049119736) +zone = ('ilz081', 0.0015023186120406962) + +[fips1756601] +centroid = (0.72171858645466636, -1.5773686084393765) +description = Orion village, IL +station = ('kmli', 0.0025147544363556145) +zone = ('ilz015', 0.003215136683281869) + +[fips1756627] +centroid = (0.72589385035774967, -1.5331347220774445) +description = Orland Hills village, IL +station = ('kmdw', 0.0035709340389885806) +zone = ('ilz022', 0.003105930706153589) + +[fips1756640] +centroid = (0.72619676970272584, -1.5334633850288875) +description = Orland Park village, IL +station = ('kmdw', 0.0033845562282906333) +zone = ('ilz022', 0.0032342467376740404) + +[fips1756887] +centroid = (0.72750943183315075, -1.5418037724721001) +description = Oswego village, IL +station = ('karr', 0.0022120859558554216) +zone = ('ilz020', 0.0019982262389003215) + +[fips1756926] +centroid = (0.72175262037508015, -1.550408263137725) +description = Ottawa city, IL +station = ('kvys', 0.0042083272652611988) +zone = ('ilz019', 0.00072724434567733717) + +[fips1756978] +centroid = (0.68156480864499891, -1.5777505213862981) +description = Otterville town, IL +station = ('kset', 0.0021038724968274261) +zone = ('ilz099', 0.00083109298616621669) + +[fips1757043] +centroid = (0.68908087708249477, -1.556744070121852) +description = Owaneco village, IL +station = ('ktaz', 0.0020126238129828363) +zone = ('ilz052', 0.0015793555663354533) + +[fips1757160] +centroid = (0.6694983526882885, -1.571615392359565) +description = Paderborn CDP, IL +station = ('kcps', 0.0038815590364946165) +zone = ('ilz102', 0.0022775044043694855) + +[fips1757225] +centroid = (0.73509801870106706, -1.5366366728616934) +description = Palatine village, IL +station = ('kpwk', 0.0018488405434467217) +zone = ('ilz006', 0.0036151005452474969) + +[fips1757277] +centroid = (0.68070701422422863, -1.5291290169111922) +description = Palestine village, IL +station = ('krsv', 0.00056063201408519507) +zone = ('ilz068', 0.0019920270991690037) + +[fips1757303] +centroid = (0.68868383213095863, -1.5604626337195662) +description = Palmer village, IL +station = ('ktaz', 0.0017032408308830108) +zone = ('ilz052', 0.0023252060616199125) + +[fips1757329] +centroid = (0.68826181151782628, -1.5707249951883677) +description = Palmyra village, IL +station = ('k3lf', 0.0064369344971917071) +zone = ('ilz059', 0.0031782008834649188) + +[fips1757381] +centroid = (0.72716418825381368, -1.5323300380258122) +description = Palos Heights city, IL +station = ('kmdw', 0.0021768147255967368) +zone = ('ilz014', 0.0030915470305245504) + +[fips1757394] +centroid = (0.72778618869263956, -1.532856499141384) +description = Palos Hills city, IL +station = ('kmdw', 0.0017741137253139549) +zone = ('ilz014', 0.0024609392878902647) + +[fips1757407] +centroid = (0.72729988760315634, -1.5328319423588084) +description = Palos Park village, IL +station = ('kmdw', 0.0021860022669181775) +zone = ('ilz014', 0.002946014852150848) + +[fips1757472] +centroid = (0.68756554731932829, -1.5549279503153968) +description = Pana city, IL +station = ('ktaz', 0.0040160171074372459) +zone = ('ilz052', 0.0036437463029742588) + +[fips1757498] +centroid = (0.68118910907021457, -1.5624957154053367) +description = Panama village, IL +station = ('k3lf', 0.0030846988688825101) +zone = ('ilz064', 0.0027631549484301034) + +[fips1757524] +centroid = (0.71182642677350527, -1.5536971266735977) +description = Panola village, IL +station = ('kbmi', 0.0055458327755412576) +zone = ('ilz031', 0.0025222949802256528) + +[fips1757576] +centroid = (0.71501505605043636, -1.5309345425690879) +description = Papineau village, IL +station = ('kikk', 0.002498325318328198) +zone = ('ilz023', 0.0035381131068811813) + +[fips1757628] +centroid = (0.69139438081918325, -1.5304666023433358) +description = Paris city, IL +station = ('kprg', 0.0015289276212114274) +zone = ('ilz057', 0.0013582854888781169) + +[fips1757654] +centroid = (0.73921092198997662, -1.5340114358673063) +description = Park City city, IL +station = ('kugn', 0.0011484521340634126) +zone = ('ilz006', 0.0015308145179069501) + +[fips1757693] +centroid = (0.67351046321289543, -1.5368767952601829) +description = Parkersburg village, IL +station = ('koly', 0.0028331400026774369) +zone = ('ilz072', 0.0021830859035186054) + +[fips1757732] +centroid = (0.72399318680232794, -1.5304232309114236) +description = Park Forest village, IL +station = ('kigq', 0.0022615207921609808) +zone = ('ilz022', 0.0038714165428471465) + +[fips1757875] +centroid = (0.73324357146423791, -1.5331571495583325) +description = Park Ridge city, IL +station = ('kord', 0.0010716695425347579) +zone = ('ilz014', 0.0030195796570820213) + +[fips1758057] +centroid = (0.6763847063316647, -1.5550150247917789) +description = Patoka village, IL +station = ('kslo', 0.002642411686722127) +zone = ('ilz070', 0.0030196800199850712) + +[fips1758174] +centroid = (0.69103835110506895, -1.5635102578462285) +description = Pawnee village, IL +station = ('ktaz', 0.0035812306685299279) +zone = ('ilz051', 0.0030507651780950582) + +[fips1758226] +centroid = (0.72758446353769402, -1.5530090655225841) +description = Paw Paw village, IL +station = ('krpj', 0.0038049128769723477) +zone = ('ilz010', 0.0042878483457308783) + +[fips1758239] +centroid = (0.7061240870413894, -1.537612975138674) +description = Paxton city, IL +station = ('ktip', 0.0029263477585481537) +zone = ('ilz039', 0.002939248473718948) + +[fips1758265] +centroid = (0.69493863838450065, -1.5925166002701157) +description = Payson village, IL +station = ('kuin', 0.0021151515858716841) +zone = ('ilz095', 0.0030726150438124137) + +[fips1758343] +centroid = (0.6887543608860317, -1.5816113816779271) +description = Pearl village, IL +station = ('kppq', 0.0037435349174965798) +zone = ('ilz058', 0.0036062873189602008) + +[fips1758369] +centroid = (0.73768398578728445, -1.5677801360480625) +description = Pearl City village, IL +station = ('kfep', 0.0031832122180243914) +zone = ('ilz002', 0.0025973379728582405) + +[fips1758408] +centroid = (0.73843238297053948, -1.5595775598025874) +description = Pecatonica village, IL +station = ('kfep', 0.0031047364977676906) +zone = ('ilz003', 0.0025775072031752086) + +[fips1758447] +centroid = (0.70803691554169768, -1.5642495967706658) +description = Pekin city, IL +station = ('kpia', 0.0018955974126236273) +zone = ('ilz037', 0.0018113511308876966) + +[fips1758577] +centroid = (0.70344971902855846, -1.5349177155346967) +description = Penfield CDP, IL +station = ('ktip', 0.0026452834158391982) +zone = ('ilz046', 0.0035212577686238727) + +[fips1759000] +centroid = (0.7112619698401178, -1.5641134087291328) +description = Peoria city, IL +station = ('kpia', 0.001732676861807598) +zone = ('ilz029', 0.0019895016328678942) + +[fips1759026] +centroid = (0.71171819890658916, -1.5627602549600617) +description = Peoria Heights village, IL +station = ('kpia', 0.0027244451577004775) +zone = ('ilz029', 0.0029179718712274367) + +[fips1759052] +centroid = (0.72137096922754651, -1.5322765611375313) +description = Peotone village, IL +station = ('kikk', 0.0045938590450908621) +zone = ('ilz022', 0.0031364475993508846) + +[fips1759104] +centroid = (0.66349005673829797, -1.564134160693939) +description = Percy village, IL +station = ('ksar', 0.0025814128571936702) +zone = ('ilz079', 0.0029178757810246793) + +[fips1759156] +centroid = (0.69433170013711976, -1.5838344424527773) +description = Perry village, IL +station = ('kppq', 0.0025376269878156703) +zone = ('ilz096', 0.0031336102362507848) + +[fips1759234] +centroid = (0.72164577131827301, -1.5556741658370872) +description = Peru city, IL +station = ('kvys', 0.00026816367407296441) +zone = ('ilz018', 0.0031930263615777394) + +[fips1759273] +centroid = (0.69657804360419151, -1.5407128369698486) +description = Pesotum village, IL +station = ('kcmi', 0.0021393521432467883) +zone = ('ilz055', 0.0025925911759762574) + +[fips1759312] +centroid = (0.69837302747340502, -1.5681368115340002) +description = Petersburg city, IL +station = ('kspi', 0.0036069443410284932) +zone = ('ilz048', 0.00065167725025988923) + +[fips1759520] +centroid = (0.66571833604761166, -1.5362059605088862) +description = Phillipstown village, IL +station = ('kcul', 0.001716160286210748) +zone = ('ilz083', 0.0024174732865503016) + +[fips1759533] +centroid = (0.69819004715462596, -1.5386228924570482) +description = Philo village, IL +station = ('kcmi', 0.0015615615020208554) +zone = ('ilz045', 0.0024534325452974549) + +[fips1759572] +centroid = (0.72626492481001625, -1.5294496862546612) +description = Phoenix village, IL +station = ('kigq', 0.0017997482520836542) +zone = ('ilz014', 0.0046565670210516729) + +[fips1759709] +centroid = (0.67671609199674088, -1.563784082552574) +description = Pierron village, IL +station = ('kblv', 0.0051883044092436749) +zone = ('ilz064', 0.0029724953481772287) + +[fips1759884] +centroid = (0.66472407433262803, -1.5602838247376993) +description = Pinckneyville city, IL +station = ('ksar', 0.0042760250722320261) +zone = ('ilz080', 0.00042163570429258981) + +[fips1759988] +centroid = (0.73453488821791102, -1.5435036358970802) +description = Pingree Grove village, IL +station = ('kdpa', 0.0040431112528316899) +zone = ('ilz012', 0.0025631208693417673) + +[fips1760079] +centroid = (0.71132661683561171, -1.5391839285451017) +description = Piper City village, IL +station = ('kpnt', 0.0064637988176341078) +zone = ('ilz039', 0.0028092986442606756) + +[fips1760144] +centroid = (0.74007273066802648, -1.5395706586007587) +description = Pistakee Highlands CDP, IL +station = ('kenw', 0.0049571269799776312) +zone = ('ilz006', 0.0030155764756722519) + +[fips1760209] +centroid = (0.65932592803584222, -1.5507287579482685) +description = Pittsburg village, IL +station = ('kmwa', 0.002132092657904895) +zone = ('ilz085', 0.0013645571817633099) + +[fips1760222] +centroid = (0.69129489705181968, -1.5851199472600412) +description = Pittsfield city, IL +station = ('kppq', 0.00078072218687874964) +zone = ('ilz097', 0.00091646591384192616) + +[fips1760287] +centroid = (0.72658932915808438, -1.5401662347547092) +description = Plainfield village, IL +station = ('kjot', 0.0021635539615768402) +zone = ('ilz020', 0.0024984804458491523) + +[fips1760339] +centroid = (0.69437529846183443, -1.5914210396453463) +description = Plainville village, IL +station = ('kuin', 0.0026044040064003137) +zone = ('ilz095', 0.0035446737028746811) + +[fips1760352] +centroid = (0.72725590530600615, -1.5450534010063885) +description = Plano city, IL +station = ('karr', 0.0018714191706529634) +zone = ('ilz020', 0.0018522261525873366) + +[fips1760391] +centroid = (0.72489752915424877, -1.5426124882343044) +description = Plattville village, IL +station = ('kc09', 0.0019399176814272746) +zone = ('ilz020', 0.0011474694913241794) + +[fips1760534] +centroid = (0.68841423112140299, -1.5860310091295824) +description = Pleasant Hill village, IL +station = ('kppq', 0.0036443041763247266) +zone = ('ilz097', 0.0031340599706559864) + +[fips1760599] +centroid = (0.69594249941037023, -1.5693771123136373) +description = Pleasant Plains village, IL +station = ('kspi', 0.0031820108905674773) +zone = ('ilz048', 0.003089356361364707) + +[fips1760833] +centroid = (0.70323017406195021, -1.5867888310907983) +description = Plymouth village, IL +station = ('kmqb', 0.0053055460669910936) +zone = ('ilz034', 0.0038352844283221841) + +[fips1760872] +centroid = (0.67761458749566761, -1.5627477933092024) +description = Pocahontas village, IL +station = ('k3lf', 0.0061754022392994891) +zone = ('ilz064', 0.0017757743038007404) + +[fips1760937] +centroid = (0.73277105847584556, -1.5634447905459863) +description = Polo city, IL +station = ('ksqi', 0.0042523625616596675) +zone = ('ilz008', 0.0034965615182272545) + +[fips1761015] +centroid = (0.71355032338228519, -1.5471916911394694) +description = Pontiac city, IL +station = ('kpnt', 0.00076049863549034998) +zone = ('ilz032', 0.0011924295693905016) + +[fips1761067] +centroid = (0.6755930598895451, -1.572160127072405) +description = Pontoon Beach village, IL +station = ('kcps', 0.0026643873166649211) +zone = ('moz064', 0.0026048972349864245) + +[fips1761080] +centroid = (0.70910327680808116, -1.591949089010537) +description = Pontoosuc village, IL +station = ('kfsw', 0.0017389556071854973) +zone = ('ilz034', 0.0039754562102959235) + +[fips1761145] +centroid = (0.7390363890647772, -1.550528376696847) +description = Poplar Grove village, IL +station = ('krfd', 0.0042038774177025123) +zone = ('ilz004', 0.00040984408941853939) + +[fips1761216] +centroid = (0.73729734299809002, -1.5392966419081955) +description = Port Barrington village, IL +station = ('kpwk', 0.0044179145177722793) +zone = ('ilz006', 0.0028329245811349706) + +[fips1761223] +centroid = (0.72634599535377131, -1.5765089465163067) +description = Port Byron village, IL +station = ('kcwi', 0.0037842221534323856) +zone = ('iaz068', 0.003876835307889352) + +[fips1761314] +centroid = (0.72656428368331827, -1.5304066677368222) +description = Posen village, IL +station = ('kigq', 0.0025374016080131553) +zone = ('ilz014', 0.0040552574326945647) + +[fips1761366] +centroid = (0.70348448598725821, -1.5323571080825109) +description = Potomac village, IL +station = ('kdnv', 0.003278174165229459) +zone = ('ilz046', 0.0023147900771472709) + +[fips1761548] +centroid = (0.70897063178492969, -1.5789104672071734) +description = Prairie City village, IL +station = ('kmqb', 0.0030458594090183502) +zone = ('ilz035', 0.0040329297998540365) + +[fips1761639] +centroid = (0.66465118938306478, -1.572499157279605) +description = Prairie du Rocher village, IL +station = ('ksar', 0.0056023957289603292) +zone = ('moz075', 0.003540722337079469) + +[fips1761678] +centroid = (0.73781931861748407, -1.5405999665271222) +description = Prairie Grove village, IL +station = ('kpwk', 0.0055143231945087717) +zone = ('ilz005', 0.0025154853859169824) + +[fips1761821] +centroid = (0.72930579451247346, -1.5432871801632477) +description = Prestbury CDP, IL +station = ('karr', 0.00065288083680972438) +zone = ('ilz012', 0.0026685876807673809) + +[fips1761860] +centroid = (0.72420801937995583, -1.5372046030002924) +description = Preston Heights CDP, IL +station = ('kjot', 0.0013717677504900062) +zone = ('ilz022', 0.0015265798142175054) + +[fips1761899] +centroid = (0.72222022898827443, -1.5614944898266376) +description = Princeton city, IL +station = ('kvys', 0.0041422516594578343) +zone = ('ilz017', 0.00090892458896612454) + +[fips1761925] +centroid = (0.71444716081842241, -1.5665144058212239) +description = Princeville village, IL +station = ('kpia', 0.004773876822259401) +zone = ('ilz029', 0.0025614887452811686) + +[fips1761977] +centroid = (0.72728437162610604, -1.5696645505881484) +description = Prophetstown city, IL +station = ('ksqi', 0.0037644418317004046) +zone = ('ilz009', 0.0015254125502935994) + +[fips1762016] +centroid = (0.73483920382628887, -1.5345779173826259) +description = Prospect Heights city, IL +station = ('kpwk', 0.00039848747351682091) +zone = ('ilz006', 0.0039709818466881043) + +[fips1762211] +centroid = (0.64957013092913962, -1.5569577158755885) +description = Pulaski village, IL +station = ('kcir', 0.0026790454058618378) +zone = ('ilz093', 0.0011211516331996307) + +[fips1762367] +centroid = (0.69697411117134656, -1.5948697229808246) +description = Quincy city, IL +station = ('kuin', 0.0023996340359417347) +zone = ('ilz095', 0.0027204566433461303) + +[fips1762523] +centroid = (0.66810898333723845, -1.5566962481003475) +description = Radom village, IL +station = ('kenl', 0.0043214775169204689) +zone = ('ilz074', 0.0032462526393977529) + +[fips1762588] +centroid = (0.66015989871232272, -1.545161035461359) +description = Raleigh village, IL +station = ('khsb', 0.00033570816356085674) +zone = ('ilz086', 0.001247548219102087) + +[fips1762627] +centroid = (0.68319594100403525, -1.5552715009253595) +description = Ramsey village, IL +station = ('ktaz', 0.0074105614182148356) +zone = ('ilz065', 0.0027726481493920729) + +[fips1762744] +centroid = (0.70623685276436077, -1.5340730808964866) +description = Rankin village, IL +station = ('ktip', 0.0044309037746704484) +zone = ('ilz033', 0.0050297606854424965) + +[fips1762757] +centroid = (0.71835242228622243, -1.5473074413754615) +description = Ransom village, IL +station = ('kpnt', 0.0041182862266321528) +zone = ('ilz021', 0.0037993525627723563) + +[fips1762783] +centroid = (0.70340388668240117, -1.5385702707801003) +description = Rantoul village, IL +station = ('ktip', 0.00020876384718666294) +zone = ('ilz045', 0.0028913251244845183) + +[fips1762822] +centroid = (0.72568584201749697, -1.57671952049056) +description = Rapids City village, IL +station = ('kmli', 0.0032275280660011593) +zone = ('iaz068', 0.0038414293769662997) + +[fips1762848] +centroid = (0.71027629514505397, -1.5851961134285981) +description = Raritan village, IL +station = ('kmqb', 0.0038230049168964764) +zone = ('ilz025', 0.0025106605419365296) + +[fips1762965] +centroid = (0.6862589938412853, -1.5633800213774447) +description = Raymond village, IL +station = ('k3lf', 0.0030598481222849703) +zone = ('ilz060', 0.0020217637697008926) + +[fips1763043] +centroid = (0.66686266117168169, -1.570794930531495) +description = Red Bud city, IL +station = ('ksar', 0.0042624549442004467) +zone = ('ilz102', 0.0027230208254085085) + +[fips1763056] +centroid = (0.71730019818678004, -1.5402299567256994) +description = Reddick village, IL +station = ('kpnt', 0.0058217603012766074) +zone = ('ilz021', 0.0039477115336197287) + +[fips1763069] +centroid = (0.6919328323467161, -1.5334715880763718) +description = Redmon village, IL +station = ('kprg', 0.0027514489885493028) +zone = ('ilz057', 0.0016644068294805919) + +[fips1763355] +centroid = (0.67181047761486801, -1.5685108006861175) +description = Rentchler CDP, IL +station = ('kblv', 0.0010467822591977165) +zone = ('ilz101', 0.00089427954562790852) + +[fips1763420] +centroid = (0.72137775855833686, -1.5825274700957139) +description = Reynolds village, IL +station = ('kmli', 0.0028970767658009632) +zone = ('ilz024', 0.0023890881035069952) + +[fips1763641] +centroid = (0.7411334021610485, -1.5412783411007875) +description = Richmond village, IL +station = ('kbuu', 0.0039576893278496627) +zone = ('ilz005', 0.0030576968026808202) + +[fips1763706] +centroid = (0.72397442451286897, -1.5312744105343288) +description = Richton Park village, IL +station = ('kigq', 0.0028521228351939933) +zone = ('ilz022', 0.0032404684521025683) + +[fips1763719] +centroid = (0.66978423761976513, -1.5564930568688302) +description = Richview village, IL +station = ('kenl', 0.0027080745164973865) +zone = ('ilz074', 0.0031746024423537703) + +[fips1763862] +centroid = (0.69631170636033712, -1.529815332732954) +description = Ridge Farm village, IL +station = ('kprg', 0.0034194486603088175) +zone = ('inz043', 0.0026218187375745701) + +[fips1764018] +centroid = (0.65969752608688448, -1.5404383490383875) +description = Ridgway village, IL +station = ('khsb', 0.0039860699949133844) +zone = ('ilz087', 0.000739956346328151) + +[fips1764044] +centroid = (0.73822781292891337, -1.5616727228498513) +description = Ridott village, IL +station = ('kfep', 0.0016212397525905697) +zone = ('ilz002', 0.0025717972049697883) + +[fips1764135] +centroid = (0.73997638849331626, -1.5411817371266894) +description = Ringwood village, IL +station = ('kbuu', 0.0051144024721336227) +zone = ('ilz005', 0.0023088428634251536) + +[fips1764148] +centroid = (0.71749384246728876, -1.5777641698610485) +description = Rio village, IL +station = ('kgbg', 0.0030193127454445469) +zone = ('ilz027', 0.0039495591994768483) + +[fips1764174] +centroid = (0.69857131432972419, -1.581930776931042) +description = Ripley village, IL +station = ('kijx', 0.0069127163324306171) +zone = ('ilz096', 0.001866679799519051) + +[fips1764278] +centroid = (0.7268020847939024, -1.5295425552241597) +description = Riverdale village, IL +station = ('kigq', 0.002249274192737754) +zone = ('ilz014', 0.0041670386872086759) + +[fips1764304] +centroid = (0.73120350846145932, -1.5327318128196215) +description = River Forest village, IL +station = ('kord', 0.0019973129491976981) +zone = ('ilz014', 0.00095998659004947154) + +[fips1764343] +centroid = (0.7317165654483756, -1.5330610168231327) +description = River Grove village, IL +station = ('kord', 0.0014516081507667472) +zone = ('ilz014', 0.001498160196722967) + +[fips1764421] +centroid = (0.73008791145687713, -1.5326757877506325) +description = Riverside village, IL +station = ('kmdw', 0.0011936650425766195) +zone = ('ilz014', 0.00015648942113350938) + +[fips1764486] +centroid = (0.69544478386757913, -1.562794812479251) +description = Riverton village, IL +station = ('kspi', 0.0019011450164464433) +zone = ('ilz051', 0.0021970487946321631) + +[fips1764538] +centroid = (0.73605601247419417, -1.5340547374860483) +description = Riverwoods village, IL +station = ('kpwk', 0.00098375867930990276) +zone = ('ilz006', 0.0029741429417325963) + +[fips1764590] +centroid = (0.71205649607550325, -1.5568653355982807) +description = Roanoke village, IL +station = ('kc75', 0.0045662174902022651) +zone = ('ilz031', 0.00020813350973627464) + +[fips1764616] +centroid = (0.72680962461627108, -1.530795178028316) +description = Robbins village, IL +station = ('kmdw', 0.0025072558418796275) +zone = ('ilz014', 0.0037141771803689411) + +[fips1764655] +centroid = (0.70886078076180903, -1.5391075180304494) +description = Roberts village, IL +station = ('ktip', 0.0056321098296687674) +zone = ('ilz039', 0.00059982101159187595) + +[fips1764707] +centroid = (0.68082793063480684, -1.5312373921008939) +description = Robinson city, IL +station = ('krsv', 0.001142392918766855) +zone = ('ilz068', 0.00036749566592693953) + +[fips1764746] +centroid = (0.73164757258304436, -1.5544569034035762) +description = Rochelle city, IL +station = ('krpj', 0.00051180397993083886) +zone = ('ilz010', 0.0043265284617306984) + +[fips1764759] +centroid = (0.69384614953921486, -1.5626343120012378) +description = Rochester village, IL +station = ('kspi', 0.0026228257687672023) +zone = ('ilz051', 0.00169923919812511) + +[fips1764811] +centroid = (0.68537814362109628, -1.574401339271476) +description = Rockbridge village, IL +station = ('kset', 0.0066191219257737592) +zone = ('ilz058', 0.0029106236210230366) + +[fips1764837] +centroid = (0.74024946270808345, -1.5615621387884451) +description = Rock City village, IL +station = ('kfep', 0.0032458675447464311) +zone = ('ilz002', 0.0026928138755611571) + +[fips1764902] +centroid = (0.72441276395450738, -1.5379507312555201) +description = Rockdale village, IL +station = ('kjot', 0.00077749096935713063) +zone = ('ilz022', 0.0021090540066509454) + +[fips1764928] +centroid = (0.72908405043100755, -1.5654013395440569) +description = Rock Falls city, IL +station = ('ksqi', 0.00051653033474910676) +zone = ('ilz009', 0.0029211347312295675) + +[fips1765000] +centroid = (0.73763537836761628, -1.5544395722841038) +description = Rockford city, IL +station = ('krfd', 0.0012062202240077347) +zone = ('ilz003', 0.0017949797634334503) + +[fips1765078] +centroid = (0.72383956292156737, -1.5810092954458665) +description = Rock Island city, IL +station = ('kmli', 0.0009813435599857305) +zone = ('ilz015', 0.00025166432597022436) + +[fips1765104] +centroid = (0.72460857244328858, -1.5802170904983865) +description = Rock Island Arsenal CDP, IL +station = ('kmli', 0.0012079773262839374) +zone = ('ilz015', 0.00093823091575203927) + +[fips1765156] +centroid = (0.74091596904283497, -1.554459050158556) +description = Rockton village, IL +station = ('kjvl', 0.002911913627886994) +zone = ('ilz003', 0.0023652706945082821) + +[fips1765221] +centroid = (0.66038132863452326, -1.5654168031612297) +description = Rockwood village, IL +station = ('ksar', 0.0054432004211151649) +zone = ('moz076', 0.0029142477109477525) + +[fips1765338] +centroid = (0.73434571198028742, -1.5363324096131934) +description = Rolling Meadows city, IL +station = ('kord', 0.0021308211843568008) +zone = ('ilz013', 0.00396853163423038) + +[fips1765403] +centroid = (0.71339758961944311, -1.5622639880405496) +description = Rome CDP, IL +station = ('kc75', 0.0030107129194955652) +zone = ('ilz030', 0.0035302273931989946) + +[fips1765442] +centroid = (0.7266969810663475, -1.5376192059641036) +description = Romeoville village, IL +station = ('klot', 0.00049872377713050184) +zone = ('ilz022', 0.0036965270713539967) + +[fips1765481] +centroid = (0.68912672688194465, -1.5773244690625936) +description = Roodhouse city, IL +station = ('kijx', 0.0053807337389338182) +zone = ('ilz058', 0.0022424711412840745) + +[fips1765611] +centroid = (0.74046588353533072, -1.5535082645952396) +description = Roscoe village, IL +station = ('kjvl', 0.0033493659062017963) +zone = ('ilz003', 0.0024978269965978063) + +[fips1765754] +centroid = (0.68249882159420361, -1.5385057808642393) +description = Rose Hill village, IL +station = ('k1h2', 0.0052278068899514057) +zone = ('ilz067', 0.00164673410864794) + +[fips1765806] +centroid = (0.73269422908217274, -1.5373838308611798) +description = Roselle village, IL +station = ('kdpa', 0.0025531608790661763) +zone = ('ilz013', 0.0022390308774131134) + +[fips1765819] +centroid = (0.73284598546063362, -1.5336513046294498) +description = Rosemont village, IL +station = ('kord', 0.00059102991559185068) +zone = ('ilz014', 0.0026984051545636593) + +[fips1765845] +centroid = (0.71088579902643545, -1.5823834280725468) +description = Roseville village, IL +station = ('kmqb', 0.0036766362408502673) +zone = ('ilz026', 0.0021591790127954832) + +[fips1765884] +centroid = (0.67871993941754061, -1.5720747106588122) +description = Rosewood Heights CDP, IL +station = ('kaln', 0.00038097581717564988) +zone = ('ilz100', 0.0024986141275965819) + +[fips1765897] +centroid = (0.65315657310247777, -1.5420121124249109) +description = Rosiclare city, IL +station = ('km30', 0.0069247546967935551) +zone = ('ilz091', 0.0020259132040189335) + +[fips1765962] +centroid = (0.70478980028153237, -1.5301288113199045) +description = Rossville village, IL +station = ('kdnv', 0.0033278218028431734) +zone = ('ilz046', 0.0035540068088674949) + +[fips1766027] +centroid = (0.73903279368651809, -1.5376751786732152) +description = Round Lake village, IL +station = ('kugn', 0.003295648478104042) +zone = ('ilz006', 0.001322069507405176) + +[fips1766040] +centroid = (0.7397125819768775, -1.5372980304751518) +description = Round Lake Beach village, IL +station = ('kugn', 0.0028224978501775605) +zone = ('ilz006', 0.0014353245148570439) + +[fips1766053] +centroid = (0.7397509966737138, -1.5377379930729944) +description = Round Lake Heights village, IL +station = ('kugn', 0.0031336341069080112) +zone = ('ilz006', 0.001700995834828436) + +[fips1766066] +centroid = (0.73913349918435822, -1.5372710651382084) +description = Round Lake Park village, IL +station = ('kugn', 0.0029814110175880528) +zone = ('ilz006', 0.001076059001680358) + +[fips1766131] +centroid = (0.67756442673296524, -1.571596525350351) +description = Roxana village, IL +station = ('kaln', 0.0013698150032645841) +zone = ('ilz100', 0.0019192628498891633) + +[fips1766157] +centroid = (0.70150159997077499, -1.5354075945491465) +description = Royal village, IL +station = ('ktip', 0.0028662379034323205) +zone = ('ilz046', 0.0031972156327812031) + +[fips1766196] +centroid = (0.68265556961432527, -1.5700726609271423) +description = Royal Lakes village, IL +station = ('kaln', 0.0039237335579773245) +zone = ('ilz059', 0.0026191802018754162) + +[fips1766209] +centroid = (0.66108960069827494, -1.5553252396130284) +description = Royalton village, IL +station = ('kmdh', 0.0024992712789802429) +zone = ('ilz081', 0.0032863303044364718) + +[fips1766287] +centroid = (0.66550503935972538, -1.5708021038347206) +description = Ruma village, IL +station = ('ksar', 0.0041539883506943702) +zone = ('ilz079', 0.0027674997365953664) + +[fips1766339] +centroid = (0.70022550248817927, -1.5806844547654855) +description = Rushville city, IL +station = ('kmqb', 0.007079759450391564) +zone = ('ilz040', 0.0009275353278611286) + +[fips1766404] +centroid = (0.67753290608667427, -1.5276868688035619) +description = Russellville village, IL +station = ('klwv', 0.0013287926263732691) +zone = ('inz067', 0.0027433405460692718) + +[fips1766443] +centroid = (0.71530216271238944, -1.5540643614015102) +description = Rutland village, IL +station = ('kc75', 0.0045868166104264417) +zone = ('ilz031', 0.0040831325624463887) + +[fips1766534] +centroid = (0.69755383973568896, -1.5419136584018058) +description = Sadorus village, IL +station = ('kcmi', 0.0015638706341255552) +zone = ('ilz045', 0.0035980107265113533) + +[fips1766599] +centroid = (0.67656684889240293, -1.5421733633945025) +description = Sailor Springs village, IL +station = ('kfoa', 0.0021485619767195457) +zone = ('ilz071', 0.0017806179839085171) + +[fips1766638] +centroid = (0.71599376688178473, -1.5310007603609086) +description = St. Anne village, IL +station = ('kikk', 0.0018637844928760135) +zone = ('ilz023', 0.0027320680065468128) + +[fips1766677] +centroid = (0.71071946914872042, -1.5778977224554112) +description = St. Augustine village, IL +station = ('kgbg', 0.0037978947555536752) +zone = ('ilz026', 0.0035386295983461887) + +[fips1766703] +centroid = (0.73162350449265934, -1.5413252904576662) +description = St. Charles city, IL +station = ('kdpa', 0.00086370625411073658) +zone = ('ilz012', 0.0015624112652370395) + +[fips1766768] +centroid = (0.70671938394265965, -1.5717033918604504) +description = St. David village, IL +station = ('kpia', 0.0057591905907947473) +zone = ('ilz036', 0.0020917812892616299) + +[fips1766794] +centroid = (0.68108899698432013, -1.5507640485057437) +description = St. Elmo city, IL +station = ('k1h2', 0.0043998702195610371) +zone = ('ilz065', 0.0023673652269104433) + +[fips1766800] +centroid = (0.67945746319955591, -1.5363740531691459) +description = Ste. Marie village, IL +station = ('koly', 0.0041564888312946961) +zone = ('ilz067', 0.0022074857221205889) + +[fips1766833] +centroid = (0.67355594649320238, -1.5297382589931861) +description = St. Francisville city, IL +station = ('kajg', 0.0011084059830326531) +zone = ('ilz073', 0.0024816456423049707) + +[fips1766859] +centroid = (0.67577289861567069, -1.5667481752212358) +description = St. Jacob village, IL +station = ('kblv', 0.0031530195018528596) +zone = ('ilz100', 0.0026884916065343673) + +[fips1766924] +centroid = (0.66383381678777076, -1.5575051209421842) +description = St. Johns village, IL +station = ('kmdh', 0.0043931177930253253) +zone = ('ilz080', 0.0019630992074992819) + +[fips1766950] +centroid = (0.7001338203425721, -1.5365114280345702) +description = St. Joseph village, IL +station = ('kcmi', 0.0033969351109026918) +zone = ('ilz045', 0.002226183460460563) + +[fips1766989] +centroid = (0.66955825238821687, -1.5657733041142421) +description = St. Libory village, IL +station = ('ksar', 0.0037391775899482853) +zone = ('ilz101', 0.0035009949016026488) + +[fips1767132] +centroid = (0.67836687676315466, -1.5507317773678746) +description = St. Peter village, IL +station = ('kslo', 0.004217759402383804) +zone = ('ilz065', 0.0033057289173754256) + +[fips1767236] +centroid = (0.6741810187115117, -1.5526028750457677) +description = Salem city, IL +station = ('kslo', 0.00027755753736335531) +zone = ('ilz070', 0.00065002676700122507) + +[fips1767372] +centroid = (0.71612623737201109, -1.5334196994377101) +description = Sammons Point village, IL +station = ('kikk', 0.00072246384904456307) +zone = ('ilz023', 0.0018625873932794016) + +[fips1767444] +centroid = (0.67390677512614583, -1.5554255087785553) +description = Sandoval village, IL +station = ('kenl', 0.0017378548616244418) +zone = ('ilz070', 0.0028088486908911013) + +[fips1767548] +centroid = (0.72693080282623712, -1.5466936963439979) +description = Sandwich city, IL +station = ('karr', 0.0028429034657831437) +zone = ('ilz020', 0.002688967537764651) + +[fips1767613] +centroid = (0.70347211160286161, -1.5638855385419923) +description = San Jose village, IL +station = ('kaaa', 0.0044121039757731564) +zone = ('ilz037', 0.0037172766458745663) + +[fips1767756] +centroid = (0.67355746492965163, -1.5736428017252666) +description = Sauget village, IL +station = ('kcps', 0.0004768644028958171) +zone = ('moz064', 0.0013535686955385134) + +[fips1767769] +centroid = (0.72413874726194416, -1.5283957168259668) +description = Sauk Village village, IL +station = ('kigq', 0.0010052600536762186) +zone = ('inz001', 0.0027925009887715528) + +[fips1767795] +centroid = (0.71370529116656978, -1.5429789026574678) +description = Saunemin village, IL +station = ('kpnt', 0.0029412420466392577) +zone = ('ilz032', 0.0020005121791908426) + +[fips1767821] +centroid = (0.73468158314154119, -1.5732445874031318) +description = Savanna city, IL +station = ('ksfy', 0.00094261238271325096) +zone = ('ilz007', 0.0027020288595257878) + +[fips1767860] +centroid = (0.69918319185888833, -1.5403402091745479) +description = Savoy village, IL +station = ('kcmi', 0.00049493277688665062) +zone = ('ilz045', 0.0015808997688948425) + +[fips1767873] +centroid = (0.68210772821541676, -1.5673842081072478) +description = Sawyerville village, IL +station = ('k3lf', 0.002250929048426479) +zone = ('ilz059', 0.0035219043988052819) + +[fips1767912] +centroid = (0.705603839297955, -1.5450730010538885) +description = Saybrook village, IL +station = ('kbmi', 0.0052448922233736782) +zone = ('ilz038', 0.0044026541602717557) + +[fips1767925] +centroid = (0.74137254717515677, -1.5751788485466542) +description = Scales Mound village, IL +station = ('kpvb', 0.0044323510038463184) +zone = ('ilz001', 0.0020145998973349448) + +[fips1768003] +centroid = (0.73355055742637121, -1.5373495700479631) +description = Schaumburg village, IL +station = ('kord', 0.0023096513933782052) +zone = ('ilz013', 0.0030954741874652273) + +[fips1768081] +centroid = (0.73231622567277588, -1.5336089280352114) +description = Schiller Park village, IL +station = ('kord', 0.00075059302931223854) +zone = ('ilz014', 0.0021820455410491227) + +[fips1768120] +centroid = (0.68352744884215899, -1.5613869426381297) +description = Schram City village, IL +station = ('k3lf', 0.0028900886532317802) +zone = ('ilz060', 0.0012075191998306806) + +[fips1768198] +centroid = (0.70794792120313843, -1.5838520179183448) +description = Sciota village, IL +station = ('kmqb', 0.0014652031435006469) +zone = ('ilz035', 0.0020739165996542706) + +[fips1768328] +centroid = (0.67270162527764366, -1.5682152291772922) +description = Scott AFB CDP, IL +station = ('kblv', 0.0001261462763317698) +zone = ('ilz101', 0.0016413272661576371) + +[fips1768406] +centroid = (0.68901607300736822, -1.5726077342123714) +description = Scottville village, IL +station = ('kijx', 0.0054823515185088764) +zone = ('ilz050', 0.0043549137220368931) + +[fips1768458] +centroid = (0.71737086656819327, -1.5847434797403861) +description = Seaton village, IL +station = ('kgbg', 0.0056304854474032206) +zone = ('ilz024', 0.0019507578965904252) + +[fips1768471] +centroid = (0.72199221917479384, -1.558139513218699) +description = Seatonville village, IL +station = ('kvys', 0.0016168983822227505) +zone = ('ilz018', 0.0028416798248905844) + +[fips1768510] +centroid = (0.71107782015073984, -1.5557014976931733) +description = Secor village, IL +station = ('kbmi', 0.0054593504816817075) +zone = ('ilz031', 0.0012905554276948054) + +[fips1768640] +centroid = (0.7205871418604759, -1.5468471282385408) +description = Seneca village, IL +station = ('kc09', 0.003656430082127148) +zone = ('ilz021', 0.0027452653787772602) + +[fips1768705] +centroid = (0.66480177639092686, -1.5542298884277692) +description = Sesser city, IL +station = ('kmvn', 0.0046885803125627208) +zone = ('ilz081', 0.0024406145800845947) + +[fips1768809] +centroid = (0.69999445580180031, -1.543345055281244) +description = Seymour CDP, IL +station = ('kcmi', 0.002497154398058297) +zone = ('ilz044', 0.0027609358470373747) + +[fips1768822] +centroid = (0.72893793146603059, -1.5511844459626718) +description = Shabbona village, IL +station = ('krpj', 0.0034484804686861115) +zone = ('ilz011', 0.002629528736331219) + +[fips1768991] +centroid = (0.73569881338948095, -1.5662608792940791) +description = Shannon village, IL +station = ('kfep', 0.0026187282774135482) +zone = ('ilz007', 0.0029092725326387539) + +[fips1769082] +centroid = (0.65828358249996621, -1.5391421628161015) +description = Shawneetown city, IL +station = ('khsb', 0.0052707647208549684) +zone = ('ilz087', 0.0010069267211005723) + +[fips1769147] +centroid = (0.7218187858070233, -1.5662094618943152) +description = Sheffield village, IL +station = ('ksqi', 0.0069177758945150923) +zone = ('ilz017', 0.0028505822439831522) + +[fips1769186] +centroid = (0.68782457163361665, -1.5498337356545533) +description = Shelbyville city, IL +station = ('k1h2', 0.0069191027803532992) +zone = ('ilz061', 0.00033220802381088134) + +[fips1769212] +centroid = (0.71158832895694835, -1.5283112428901702) +description = Sheldon village, IL +station = ('kikk', 0.006417123955827728) +zone = ('ilz033', 0.0034423734333585742) + +[fips1769277] +centroid = (0.72480638806070952, -1.5477501965001075) +description = Sheridan village, IL +station = ('kc09', 0.0038573458931669561) +zone = ('ilz020', 0.003449079056657367) + +[fips1769342] +centroid = (0.6961612589788152, -1.5639086117947036) +description = Sherman village, IL +station = ('kspi', 0.0012289163258323076) +zone = ('ilz051', 0.0023614515613200643) + +[fips1769368] +centroid = (0.72101010495140427, -1.5795121171069206) +description = Sherrard village, IL +station = ('kmli', 0.0024393996802522288) +zone = ('ilz015', 0.0028740547558504612) + +[fips1769524] +centroid = (0.67285844311093546, -1.5693194989950292) +description = Shiloh village, IL +station = ('kblv', 0.00089310153693154674) +zone = ('ilz101', 0.001436087878812405) + +[fips1769563] +centroid = (0.68276386729441141, -1.5715850236305802) +description = Shipman town, IL +station = ('kaln', 0.0038313438654837234) +zone = ('ilz059', 0.0029614034700119565) + +[fips1769758] +centroid = (0.72461754343564377, -1.5396449049071383) +description = Shorewood village, IL +station = ('kjot', 0.00052120322477808778) +zone = ('ilz020', 0.0030692112772229773) + +[fips1769797] +centroid = (0.68387991808459925, -1.547290337148792) +description = Shumway village, IL +station = ('k1h2', 0.0025525198292113888) +zone = ('ilz066', 0.0023234504980013592) + +[fips1769810] +centroid = (0.70838765690817851, -1.5424908736920255) +description = Sibley village, IL +station = ('ktip', 0.0060113054822974544) +zone = ('ilz039', 0.002059952124423441) + +[fips1769836] +centroid = (0.69655603500232377, -1.5328110507676622) +description = Sidell village, IL +station = ('kprg', 0.0041975618853933305) +zone = ('ilz057', 0.0041672461224952096) + +[fips1769875] +centroid = (0.69857501442773828, -1.53714979966178) +description = Sidney village, IL +station = ('kcmi', 0.0026026390655449903) +zone = ('ilz045', 0.0026228616646310305) + +[fips1769914] +centroid = (0.68461367195543021, -1.5445231699796327) +description = Sigel town, IL +station = ('k1h2', 0.0027540433119047575) +zone = ('ilz066', 0.0031675349110831964) + +[fips1769979] +centroid = (0.72427109557912295, -1.5779670643865928) +description = Silvis city, IL +station = ('kmli', 0.0016146598645002497) +zone = ('ilz015', 0.0021140044402154436) + +[fips1770005] +centroid = (0.65393027755988675, -1.549117225636732) +description = Simpson village, IL +station = ('km30', 0.0049161016008062944) +zone = ('ilz089', 0.0017097490157748246) + +[fips1770031] +centroid = (0.66953449845709723, -1.5452332397325139) +description = Sims village, IL +station = ('kfwc', 0.0017035239491607584) +zone = ('ilz076', 0.0019136338836946429) + +[fips1770122] +centroid = (0.73366611567614581, -1.5313517286201921) +description = Skokie village, IL +station = ('kord', 0.0024685228574077393) +zone = ('ilz014', 0.0035640729584945322) + +[fips1770161] +centroid = (0.7346140912593665, -1.5413650490580264) +description = Sleepy Hollow village, IL +station = ('kdpa', 0.0034224139364918945) +zone = ('ilz012', 0.0030323833875644389) + +[fips1770213] +centroid = (0.67883769678217265, -1.559276647586251) +description = Smithboro village, IL +station = ('k3lf', 0.0065109868345129603) +zone = ('ilz064', 0.0013060861041448504) + +[fips1770226] +centroid = (0.70641201400809095, -1.5759429536931775) +description = Smithfield village, IL +station = ('kmqb', 0.0048133577435412528) +zone = ('ilz036', 0.0011604747813126518) + +[fips1770252] +centroid = (0.67043545487026923, -1.5706314455404609) +description = Smithton village, IL +station = ('kblv', 0.0030650936170446182) +zone = ('ilz101', 0.0013106413453699796) + +[fips1770460] +centroid = (0.72666341838483151, -1.5478884614834505) +description = Somonauk village, IL +station = ('karr', 0.0036851877201834033) +zone = ('ilz020', 0.0034610080550687284) + +[fips1770525] +centroid = (0.68068011870045553, -1.5633400707908667) +description = Sorento village, IL +station = ('k3lf', 0.0031469804792773012) +zone = ('ilz064', 0.0027162936242182399) + +[fips1770564] +centroid = (0.73463035772799512, -1.5386290011094301) +description = South Barrington village, IL +station = ('kdpa', 0.0035489555417788496) +zone = ('ilz013', 0.0042762940166217794) + +[fips1770590] +centroid = (0.74143256904813271, -1.5538508901806987) +description = South Beloit city, IL +station = ('kjvl', 0.0023692064559954645) +zone = ('ilz003', 0.003042891849933691) + +[fips1770629] +centroid = (0.72402201964157087, -1.5295577046820672) +description = South Chicago Heights village, IL +station = ('kigq', 0.001690579034251965) +zone = ('inz001', 0.0035457666116460716) + +[fips1770720] +centroid = (0.73285432813445828, -1.5413459551560096) +description = South Elgin village, IL +station = ('kdpa', 0.0017602999243935729) +zone = ('ilz012', 0.001745010890814919) + +[fips1770759] +centroid = (0.69387236438457978, -1.5647076584328519) +description = Southern View village, IL +station = ('kspi', 0.0016971391464041009) +zone = ('ilz051', 0.00011116678028122979) + +[fips1770850] +centroid = (0.72602490713128198, -1.5289548330518432) +description = South Holland village, IL +station = ('kigq', 0.0013698314094588103) +zone = ('inz001', 0.0043003787293131044) + +[fips1770889] +centroid = (0.69288239617955605, -1.5747044506026697) +description = South Jacksonville village, IL +station = ('kijx', 0.0013225521582534965) +zone = ('ilz050', 0.00041493991153054616) + +[fips1771175] +centroid = (0.70678642203922881, -1.5647305746059303) +description = South Pekin village, IL +station = ('kpia', 0.0030087723039628638) +zone = ('ilz037', 0.0018552667486553427) + +[fips1771240] +centroid = (0.67755142403003787, -1.571932169618802) +description = South Roxana village, IL +station = ('kaln', 0.0013967702460278492) +zone = ('ilz100', 0.0021810049669730024) + +[fips1771370] +centroid = (0.71862898715949342, -1.5407998416330606) +description = South Wilmington village, IL +station = ('kc09', 0.0047340796354179114) +zone = ('ilz021', 0.0026383451748956508) + +[fips1771422] +centroid = (0.71610176785589807, -1.561043077868902) +description = Sparland village, IL +station = ('kc75', 0.0007441149657136187) +zone = ('ilz030', 0.0012704751864585425) + +[fips1771448] +centroid = (0.66562764873967806, -1.5660458896368183) +description = Sparta city, IL +station = ('ksar', 0.00044630887792185096) +zone = ('ilz079', 0.0020056080212242527) + +[fips1771474] +centroid = (0.69579589175320278, -1.5628700710765968) +description = Spaulding village, IL +station = ('kspi', 0.0018633368431042786) +zone = ('ilz051', 0.0024182041097871691) + +[fips1771526] +centroid = (0.65907388503856179, -1.5519106251045491) +description = Spillertown village, IL +station = ('kmwa', 0.0011663873088297377) +zone = ('ilz085', 0.00057995160925711274) + +[fips1771604] +centroid = (0.71237875366859149, -1.5626340851084348) +description = Spring Bay village, IL +station = ('kpia', 0.0032873893857127885) +zone = ('ilz029', 0.003047774808070218) + +[fips1771643] +centroid = (0.66634398422457397, -1.5420811052902421) +description = Springerton village, IL +station = ('kcul', 0.0035415854468497849) +zone = ('ilz083', 0.0028846395301945602) + +[fips1772000] +centroid = (0.6940111180601134, -1.5650512614026919) +description = Springfield city, IL +station = ('kspi', 0.0015119086773230364) +zone = ('ilz051', 0.00018855473082902199) + +[fips1772052] +centroid = (0.74089251181768823, -1.5401126007867953) +description = Spring Grove village, IL +station = ('kbuu', 0.0042750650959501252) +zone = ('ilz005', 0.0034880326785095362) + +[fips1772156] +centroid = (0.72122348890575305, -1.5565491866575745) +description = Spring Valley city, IL +station = ('kvys', 0.0006444891925270228) +zone = ('ilz018', 0.0024650020945819629) + +[fips1772221] +centroid = (0.72004434446310561, -1.5565148385778951) +description = Standard village, IL +station = ('kvys', 0.0017247160854417501) +zone = ('ilz018', 0.0016304542973904332) + +[fips1772234] +centroid = (0.68679051641168765, -1.567023797616711) +description = Standard City village, IL +station = ('k3lf', 0.0035985779076749521) +zone = ('ilz059', 0.0024548925455265343) + +[fips1772260] +centroid = (0.70566804996113586, -1.5571974368483499) +description = Stanford village, IL +station = ('kbmi', 0.004126601830961113) +zone = ('ilz037', 0.0041042697420487781) + +[fips1772403] +centroid = (0.68086573446640508, -1.5672011056154209) +description = Staunton city, IL +station = ('k3lf', 0.0031006901533988337) +zone = ('ilz100', 0.0034981067823301481) + +[fips1772468] +centroid = (0.66337181068147544, -1.5649041999599189) +description = Steeleville village, IL +station = ('ksar', 0.0025018512433480785) +zone = ('ilz079', 0.0023657106574099512) + +[fips1772520] +centroid = (0.72382727580363326, -1.5292175225575608) +description = Steger village, IL +station = ('kigq', 0.0016269012145966929) +zone = ('inz001', 0.0032421592070859791) + +[fips1772546] +centroid = (0.7295418328405131, -1.5654756905701919) +description = Sterling city, IL +station = ('ksqi', 0.00094282223518582173) +zone = ('ilz009', 0.0029485467236291217) + +[fips1772624] +centroid = (0.73039980179420849, -1.5536312754009201) +description = Steward village, IL +station = ('krpj', 0.0011141836862247608) +zone = ('ilz010', 0.0041070783941056536) + +[fips1772650] +centroid = (0.68528571098391067, -1.5468874627975542) +description = Stewardson village, IL +station = ('k1h2', 0.0036210365497465588) +zone = ('ilz061', 0.003244785140082823) + +[fips1772676] +centroid = (0.72984476963878175, -1.5319400791110394) +description = Stickney village, IL +station = ('kmdw', 0.00066398331729131371) +zone = ('ilz014', 0.00068710533562548674) + +[fips1772702] +centroid = (0.7348553481218697, -1.5564842429561077) +description = Stillman Valley village, IL +station = ('krfd', 0.0019677029137133402) +zone = ('ilz008', 0.002114822003600976) + +[fips1772780] +centroid = (0.73918441043863892, -1.5707921729112768) +description = Stockton village, IL +station = ('ksfy', 0.0055255918805162786) +zone = ('ilz001', 0.0027512704331654264) + +[fips1772884] +centroid = (0.65661977757733248, -1.5481780116063564) +description = Stonefort village, IL +station = ('khsb', 0.0039436748298902089) +zone = ('ilz086', 0.0032207475604110651) + +[fips1772923] +centroid = (0.73134943544021858, -1.5338075814106733) +description = Stone Park village, IL +station = ('kord', 0.0014738709352910165) +zone = ('ilz014', 0.0013834112308902787) + +[fips1772949] +centroid = (0.69182289405713293, -1.5566959688476671) +description = Stonington village, IL +station = ('ktaz', 0.0025783599256966618) +zone = ('ilz052', 0.0019829973758901287) + +[fips1773027] +centroid = (0.68062041098674475, -1.532979928826085) +description = Stoy village, IL +station = ('krsv', 0.0025118629373430978) +zone = ('ilz068', 0.0010064274139940657) + +[fips1773040] +centroid = (0.68678158032591741, -1.5467320412276642) +description = Strasburg village, IL +station = ('k1h2', 0.0050146207744683619) +zone = ('ilz061', 0.0025893496282959933) + +[fips1773131] +centroid = (0.70954077849167863, -1.5428692436205653) +description = Strawn village, IL +station = ('kpnt', 0.0055734473277884505) +zone = ('ilz039', 0.0025386136574923478) + +[fips1773157] +centroid = (0.73339757931743399, -1.5389924310195731) +description = Streamwood village, IL +station = ('kdpa', 0.0023039505158668283) +zone = ('ilz013', 0.0031759325446189994) + +[fips1773170] +centroid = (0.71776380999598721, -1.5503872319202383) +description = Streator city, IL +station = ('kpnt', 0.0044324771763818516) +zone = ('ilz019', 0.0038915453344333093) + +[fips1773261] +centroid = (0.71115819256279433, -1.5866668674826689) +description = Stronghurst village, IL +station = ('kbrl', 0.0029828047127340241) +zone = ('ilz025', 0.0012693063592606783) + +[fips1773287] +centroid = (0.72681969516605516, -1.5573778864397136) +description = Sublette village, IL +station = ('krpj', 0.0047853083357414375) +zone = ('ilz010', 0.0020025521982226756) + +[fips1773391] +centroid = (0.72899592875707431, -1.5437553821883876) +description = Sugar Grove village, IL +station = ('karr', 0.00021042500272907682) +zone = ('ilz012', 0.0029913698766408248) + +[fips1773495] +centroid = (0.69107355439608176, -1.5464990746791081) +description = Sullivan city, IL +station = ('kdec', 0.0054119071607865044) +zone = ('ilz054', 0.00081428668661179845) + +[fips1773547] +centroid = (0.67360704973370089, -1.5662361828851632) +description = Summerfield village, IL +station = ('kblv', 0.0017082378469284434) +zone = ('ilz101', 0.003380975888653152) + +[fips1773638] +centroid = (0.72934607671160945, -1.5326420505361913) +description = Summit village, IL +station = ('kmdw', 0.00083664331061788697) +zone = ('ilz014', 0.00089866436315420471) + +[fips1773703] +centroid = (0.67571264984989177, -1.5335613503598018) +description = Sumner city, IL +station = ('kajg', 0.0026948122080502246) +zone = ('ilz073', 0.0019080119644258413) + +[fips1773943] +centroid = (0.71773886924097619, -1.5312350009998188) +description = Sun River Terrace village, IL +station = ('kikk', 0.001742583735279406) +zone = ('ilz023', 0.0017075446474484925) + +[fips1774119] +centroid = (0.6728461036331238, -1.570583518799201) +description = Swansea village, IL +station = ('kcps', 0.0022299042068306468) +zone = ('ilz101', 0.0016291041316175612) + +[fips1774223] +centroid = (0.73298068997230259, -1.5477148012228772) +description = Sycamore city, IL +station = ('kdkb', 0.0011988289105996891) +zone = ('ilz011', 0.0021688980308800254) + +[fips1774275] +centroid = (0.7213097430773866, -1.5368329525893727) +description = Symerton village, IL +station = ('kjot', 0.0036769677598457681) +zone = ('ilz022', 0.002267807863165969) + +[fips1774301] +centroid = (0.70450274597945683, -1.5782181474527848) +description = Table Grove village, IL +station = ('kmqb', 0.0040563461779031564) +zone = ('ilz036', 0.003450863296183538) + +[fips1774379] +centroid = (0.697184423346212, -1.5696899974886425) +description = Tallula village, IL +station = ('kspi', 0.0037805870333761978) +zone = ('ilz048', 0.0022940876400378099) + +[fips1774444] +centroid = (0.6656047849264769, -1.5573445855575856) +description = Tamaroa village, IL +station = ('kmdh', 0.006167814853948822) +zone = ('ilz080', 0.0021032242417660134) + +[fips1774457] +centroid = (0.64998750896646151, -1.5580786186810969) +description = Tamms village, IL +station = ('kcir', 0.0031740665257670685) +zone = ('ilz092', 0.0012693393606296943) + +[fips1774470] +centroid = (0.72659215659147269, -1.567051024753042) +description = Tampico village, IL +station = ('ksqi', 0.0025948373402890496) +zone = ('ilz009', 0.0027606322243943133) + +[fips1774561] +centroid = (0.68296086260708411, -1.5619876326067887) +description = Taylor Springs village, IL +station = ('k3lf', 0.0024861859051250662) +zone = ('ilz060', 0.001763269755224843) + +[fips1774574] +centroid = (0.69049988212424362, -1.5587231862271511) +description = Taylorville city, IL +station = ('ktaz', 0.00056347548295550515) +zone = ('ilz052', 0.00051076093657914472) + +[fips1774665] +centroid = (0.70530880884119784, -1.585388343992413) +description = Tennessee village, IL +station = ('kmqb', 0.0030925699978558039) +zone = ('ilz035', 0.0022417584920435751) + +[fips1774743] +centroid = (0.68297102042333069, -1.5442901336179065) +description = Teutopolis village, IL +station = ('k1h2', 0.0012738392123389543) +zone = ('ilz066', 0.0019307472742300586) + +[fips1774847] +centroid = (0.70988556828541016, -1.5378670078113017) +description = Thawville village, IL +station = ('ktip', 0.0066407179865620837) +zone = ('ilz039', 0.0019733173031710486) + +[fips1774860] +centroid = (0.69010957414362017, -1.5665713559147163) +description = Thayer village, IL +station = ('kspi', 0.0054961947567611314) +zone = ('ilz051', 0.0040280928339937209) + +[fips1774873] +centroid = (0.64946612675901338, -1.5612578755399447) +description = Thebes village, IL +station = ('kcgi', 0.0018437853006385782) +zone = ('ilz092', 0.0016490412548679436) + +[fips1774970] +centroid = (0.73990495216703223, -1.5764829236571594) +description = The Galena Territory CDP, IL +station = ('kdbq', 0.0048242472145723298) +zone = ('ilz001', 0.0015415034878519141) + +[fips1775081] +centroid = (0.73949186763967023, -1.5360484445438938) +description = Third Lake village, IL +station = ('kugn', 0.0020101029427946012) +zone = ('ilz006', 0.00081749953623924199) + +[fips1775107] +centroid = (0.70238704040689681, -1.5391610298253156) +description = Thomasboro village, IL +station = ('ktip', 0.0010551951347493056) +zone = ('ilz045', 0.0018168066033255033) + +[fips1775159] +centroid = (0.66167707852449631, -1.5492418246920319) +description = Thompsonville village, IL +station = ('khsb', 0.0034478102558406507) +zone = ('ilz081', 0.0026072375250462232) + +[fips1775172] +centroid = (0.73256209020450425, -1.5727465926076603) +description = Thomson village, IL +station = ('ksfy', 0.0012771733181197768) +zone = ('ilz007', 0.0028449415689343937) + +[fips1775185] +centroid = (0.72560578376470797, -1.5292452732926676) +description = Thornton village, IL +station = ('kigq', 0.001283969918200806) +zone = ('inz001', 0.0041599505017042189) + +[fips1775263] +centroid = (0.66692563265109372, -1.5652754140385254) +description = Tilden village, IL +station = ('ksar', 0.0011208069746152856) +zone = ('ilz079', 0.0034016367899649797) + +[fips1775276] +centroid = (0.69978515591790114, -1.5295898361935965) +description = Tilton village, IL +station = ('kdnv', 0.0019173853947525204) +zone = ('ilz046', 0.0019934417871616977) + +[fips1775360] +centroid = (0.73889789718863153, -1.551005410088002) +description = Timberlane village, IL +station = ('krfd', 0.0038393874304303759) +zone = ('ilz004', 0.00059299316357811762) + +[fips1775419] +centroid = (0.69047195685621177, -1.5834214451918778) +description = Time village, IL +station = ('kppq', 0.0015454178979136871) +zone = ('ilz097', 0.0024391631604775287) + +[fips1775484] +centroid = (0.72550005171862231, -1.5324590004042422) +description = Tinley Park village, IL +station = ('kigq', 0.0035760047790959755) +zone = ('ilz022', 0.0031405727625984235) + +[fips1775549] +centroid = (0.72069322297241212, -1.5622169688705008) +description = Tiskilwa village, IL +station = ('kvys', 0.0047716595778488219) +zone = ('ilz017', 0.0019626816981087596) + +[fips1775601] +centroid = (0.68543273752009859, -1.540107120452944) +description = Toledo village, IL +station = ('kmto', 0.0034073168766336403) +zone = ('ilz062', 2.3895427937646535e-05) + +[fips1775614] +centroid = (0.69799099235343598, -1.5404680894488416) +description = Tolono village, IL +station = ('kcmi', 0.00072481754189288765) +zone = ('ilz045', 0.0027202980676279283) + +[fips1775653] +centroid = (0.7156623288568309, -1.5556796636242307) +description = Toluca city, IL +station = ('kc75', 0.0033354359911638223) +zone = ('ilz030', 0.0028225136841296375) + +[fips1775718] +centroid = (0.71935263557395535, -1.5545639968064786) +description = Tonica village, IL +station = ('kvys', 0.0026130814497095762) +zone = ('ilz018', 0.0028409860490870337) + +[fips1775757] +centroid = (0.70389760542120539, -1.5695852777335226) +description = Topeka village, IL +station = ('kpia', 0.0067248001791820576) +zone = ('ilz041', 0.0015930001641993137) + +[fips1775783] +centroid = (0.71721458978696973, -1.5684079658865899) +description = Toulon city, IL +station = ('kpia', 0.0078162714693383439) +zone = ('ilz028', 0.00086361864319220677) + +[fips1775809] +centroid = (0.69094520288289007, -1.5611719878874541) +description = Tovey village, IL +station = ('ktaz', 0.0018794434360243765) +zone = ('ilz052', 0.0024204279365865368) + +[fips1775822] +centroid = (0.7079632626472635, -1.5516113534977096) +description = Towanda village, IL +station = ('kbmi', 0.0015204816388566006) +zone = ('ilz038', 0.0014508105514225939) + +[fips1775848] +centroid = (0.68742888803889712, -1.552631795151473) +description = Tower Hill village, IL +station = ('ktaz', 0.0055926913418049892) +zone = ('ilz061', 0.002075276088671721) + +[fips1775874] +centroid = (0.73701491381853235, -1.5385991908858061) +description = Tower Lakes village, IL +station = ('kpwk', 0.0038295600779853847) +zone = ('ilz006', 0.0025688277732749095) + +[fips1775965] +centroid = (0.70729207883011658, -1.5619057592115775) +description = Tremont village, IL +station = ('kpia', 0.0035566651813462367) +zone = ('ilz037', 0.00042891165019255271) + +[fips1775991] +centroid = (0.67381926431745076, -1.5652199998347747) +description = Trenton city, IL +station = ('kblv', 0.0025175852528873839) +zone = ('ilz101', 0.0041407265600627392) + +[fips1776160] +centroid = (0.73645963731701047, -1.5402740611958974) +description = Trout Valley village, IL +station = ('kdpa', 0.0051667042564815082) +zone = ('ilz005', 0.0034313338704379886) + +[fips1776199] +centroid = (0.67597507755622166, -1.5689062399347418) +description = Troy city, IL +station = ('kblv', 0.0032015395005319698) +zone = ('ilz100', 0.0017440725893918927) + +[fips1776225] +centroid = (0.72371300909750524, -1.5547662106536144) +description = Troy Grove village, IL +station = ('kvys', 0.0021950492273991691) +zone = ('ilz019', 0.0033284475028474438) + +[fips1776407] +centroid = (0.69460995797976521, -1.5406870584567969) +description = Tuscola city, IL +station = ('kcmi', 0.004104986888714037) +zone = ('ilz055', 0.00091939833433138916) + +[fips1776511] +centroid = (0.70649746532826863, -1.555114822718408) +description = Twin Grove CDP, IL +station = ('kbmi', 0.002465455940378222) +zone = ('ilz038', 0.0033805398177953363) + +[fips1776615] +centroid = (0.65063038354314107, -1.5564253730004378) +description = Ullin village, IL +station = ('kcir', 0.0037810266467082532) +zone = ('ilz093', 0.0011922770606012162) + +[fips1776706] +centroid = (0.7370770824464884, -1.5453964280175754) +description = Union village, IL +station = ('kdkb', 0.0056400809219636656) +zone = ('ilz005', 0.002013640791643386) + +[fips1776771] +centroid = (0.71747743637232009, -1.5384410291489903) +description = Union Hill village, IL +station = ('kikk', 0.0039961167960266709) +zone = ('ilz021', 0.0047198106093726388) + +[fips1776935] +centroid = (0.72337043587192373, -1.5308679931647093) +description = University Park village, IL +station = ('kigq', 0.002868458818195932) +zone = ('ilz022', 0.0034856154308110974) + +[fips1777005] +centroid = (0.70005376208978309, -1.5393336777949227) +description = Urbana city, IL +station = ('kcmi', 0.0016291460779429198) +zone = ('ilz045', 0.00052368222899428505) + +[fips1777044] +centroid = (0.69942598461113326, -1.594755473727989) +description = Ursa village, IL +station = ('kuin', 0.0033727469480985556) +zone = ('ilz095', 0.0028859273399422674) + +[fips1777148] +centroid = (0.66353876887772123, -1.5541055511718571) +description = Valier village, IL +station = ('kmwa', 0.004708797944144757) +zone = ('ilz081', 0.0017032483879231481) + +[fips1777187] +centroid = (0.69302155128081766, -1.5821304600507629) +description = Valley City village, IL +station = ('kppq', 0.002102860851473173) +zone = ('ilz049', 0.0025916643917556262) + +[fips1777265] +centroid = (0.66857123378962913, -1.5759980188310778) +description = Valmeyer village, IL +station = ('kcps', 0.0049743781217794136) +zone = ('ilz102', 0.0017223104376281242) + +[fips1777317] +centroid = (0.68023446632925122, -1.5552750264904485) +description = Vandalia city, IL +station = ('kslo', 0.0061240749148143659) +zone = ('ilz065', 0.0012558176607129488) + +[fips1777395] +centroid = (0.7162001520658331, -1.5572580870398569) +description = Varna village, IL +station = ('kc75', 0.002152343529317452) +zone = ('ilz030', 0.001586612836010008) + +[fips1777408] +centroid = (0.67014728355747244, -1.5646145451172577) +description = Venedy village, IL +station = ('kblv', 0.0038667350606928154) +zone = ('ilz101', 0.0040719276356689493) + +[fips1777460] +centroid = (0.74010763725306628, -1.5367652512676879) +description = Venetian Village CDP, IL +station = ('kugn', 0.002373263938335016) +zone = ('ilz006', 0.0015511332867025234) + +[fips1777473] +centroid = (0.67495367597136957, -1.5737514484712032) +description = Venice city, IL +station = ('kcps', 0.0018571353717805783) +zone = ('moz064', 0.0012096432419338983) + +[fips1777525] +centroid = (0.66151352372029193, -1.5592799288052448) +description = Vergennes village, IL +station = ('kmdh', 0.0024143079990362215) +zone = ('ilz084', 0.0021177935345088245) + +[fips1777551] +centroid = (0.69080182408483881, -1.5286944822873234) +description = Vermilion village, IL +station = ('kprg', 0.002370385059425331) +zone = ('ilz057', 0.002731759084713823) + +[fips1777642] +centroid = (0.70329290119526688, -1.5782841034452175) +description = Vermont village, IL +station = ('kmqb', 0.0049175592073704543) +zone = ('ilz040', 0.0034533686039195169) + +[fips1777681] +centroid = (0.67721220183662023, -1.5549066049386449) +description = Vernon village, IL +station = ('kslo', 0.0032528784585179283) +zone = ('ilz070', 0.0035234302127664587) + +[fips1777694] +centroid = (0.73712945977734068, -1.5352101803574534) +description = Vernon Hills village, IL +station = ('kpwk', 0.0022015173972139441) +zone = ('ilz006', 0.0016425492616381225) + +[fips1777707] +centroid = (0.7193493543549615, -1.5447019789614993) +description = Verona village, IL +station = ('kc09', 0.0038290193568207721) +zone = ('ilz021', 0.0016567899564447332) + +[fips1777720] +centroid = (0.69610450087154041, -1.5822977324062737) +description = Versailles village, IL +station = ('kppq', 0.0045654105304528342) +zone = ('ilz096', 0.0018298109590043365) + +[fips1777811] +centroid = (0.71616643230468446, -1.5724583514816932) +description = Victoria village, IL +station = ('kgbg', 0.0047272863406066859) +zone = ('ilz027', 0.0023578116587893339) + +[fips1777863] +centroid = (0.65299092390317093, -1.5513634294774639) +description = Vienna city, IL +station = ('km30', 0.0044014207852247919) +zone = ('ilz089', 0.00080628012272521349) + +[fips1777941] +centroid = (0.69576639568884402, -1.5386775387159279) +description = Villa Grove city, IL +station = ('kcmi', 0.0032760565807399399) +zone = ('ilz055', 0.0018291033420741922) + +[fips1777993] +centroid = (0.73104183861284722, -1.5355098708433135) +description = Villa Park village, IL +station = ('kord', 0.0018835987480254001) +zone = ('ilz013', 0.0015149222756499828) + +[fips1778123] +centroid = (0.7191685556977474, -1.5810272374305772) +description = Viola village, IL +station = ('kmli', 0.0043665460051731074) +zone = ('ilz024', 0.0020380965657530118) + +[fips1778149] +centroid = (0.68950150143222544, -1.5668021058951225) +description = Virden city, IL +station = ('ktaz', 0.0059902212344688302) +zone = ('ilz051', 0.0046609605595179992) + +[fips1778175] +centroid = (0.73226215537254902, -1.5451260765164414) +description = Virgil village, IL +station = ('kdkb', 0.002361587669004512) +zone = ('ilz012', 0.0013361584548067422) + +[fips1778201] +centroid = (0.69729673528357772, -1.5744804375931762) +description = Virginia city, IL +station = ('kijx', 0.0031283812484389469) +zone = ('ilz047', 0.00061321664821609699) + +[fips1778227] +centroid = (0.73879652846567567, -1.5387419239120339) +description = Volo village, IL +station = ('kugn', 0.0041149277923902211) +zone = ('ilz006', 0.0020656564660653204) + +[fips1778370] +centroid = (0.74045972252307124, -1.5341717618123945) +description = Wadsworth village, IL +station = ('kugn', 0.00047377835868042906) +zone = ('ilz006', 0.0022152411663076371) + +[fips1778383] +centroid = (0.68726898097282929, -1.5647356709673463) +description = Waggoner village, IL +station = ('k3lf', 0.003770672089231761) +zone = ('ilz060', 0.0034727977112832911) + +[fips1778526] +centroid = (0.72530633762494334, -1.5636536191909876) +description = Walnut village, IL +station = ('ksqi', 0.0035110780693035854) +zone = ('ilz017', 0.0027890982794687978) + +[fips1778604] +centroid = (0.67156686455787462, -1.5541178382897911) +description = Walnut Hill village, IL +station = ('kenl', 0.00091587049073728138) +zone = ('ilz070', 0.0034501885483486472) + +[fips1778656] +centroid = (0.68188224912935169, -1.5641454529741994) +description = Walshville village, IL +station = ('k3lf', 0.001792688629936849) +zone = ('ilz060', 0.0034042848175659395) + +[fips1778708] +centroid = (0.66703656577835047, -1.5539538471532739) +description = Waltonville village, IL +station = ('kmvn', 0.0028745908768800497) +zone = ('ilz075', 0.0020912197486429879) + +[fips1778721] +centroid = (0.67180108774349212, -1.5559218106046524) +description = Wamac city, IL +station = ('kenl', 0.00086106439993335676) +zone = ('ilz070', 0.0041678099339449654) + +[fips1778773] +centroid = (0.7019988268213756, -1.5526657767120093) +description = Wapella village, IL +station = ('kbmi', 0.0044977810243967799) +zone = ('ilz043', 0.0011186585276997559) + +[fips1778851] +centroid = (0.74166530870388625, -1.570633836641536) +description = Warren village, IL +station = ('kfep', 0.0068162892918920276) +zone = ('wiz067', 0.0034204318788840808) + +[fips1778916] +centroid = (0.69694072302275589, -1.5544228171232848) +description = Warrensburg village, IL +station = ('kdec', 0.0031282283939639958) +zone = ('ilz053', 0.0018363285771459733) + +[fips1778929] +centroid = (0.72991320399875248, -1.539162321368962) +description = Warrenville city, IL +station = ('kdpa', 0.0016011364700711495) +zone = ('ilz013', 0.001430485334124291) + +[fips1778942] +centroid = (0.70425860932368778, -1.5957199775792261) +description = Warsaw city, IL +station = ('keok', 0.0020191963591584838) +zone = ('ilz034', 0.0036196554742555982) + +[fips1779007] +centroid = (0.71419426260980845, -1.5584415598990493) +description = Washburn village, IL +station = ('kc75', 0.0021259493249222881) +zone = ('ilz030', 0.0020888719279372877) + +[fips1779033] +centroid = (0.7103784667194657, -1.5609659168626711) +description = Washington city, IL +station = ('kpia', 0.0033201792108594349) +zone = ('ilz031', 0.0033441666533330703) + +[fips1779085] +centroid = (0.67418543439451928, -1.572409237916542) +description = Washington Park village, IL +station = ('kcps', 0.0013274790104390035) +zone = ('moz064', 0.0020848497272249545) + +[fips1779124] +centroid = (0.71602663143159972, -1.5756039932991477) +description = Wataga village, IL +station = ('kgbg', 0.0025543687086496854) +zone = ('ilz027', 0.0018259483815446145) + +[fips1779150] +centroid = (0.66913979224675879, -1.5734751977571977) +description = Waterloo city, IL +station = ('kcps', 0.0039758084463298073) +zone = ('ilz102', 0.0011036404594199018) + +[fips1779163] +centroid = (0.72894880486727054, -1.5492075987854004) +description = Waterman village, IL +station = ('kdkb', 0.0029876370113324753) +zone = ('ilz011', 0.0022310047198569405) + +[fips1779228] +centroid = (0.71165323775182987, -1.5311656590686371) +description = Watseka city, IL +station = ('kikk', 0.0054029529968306345) +zone = ('ilz033', 0.0013430261346019563) + +[fips1779241] +centroid = (0.68113416610536182, -1.5458084304408013) +description = Watson village, IL +station = ('k1h2', 0.00090900104054710571) +zone = ('ilz066', 0.0006552665303312797) + +[fips1779267] +centroid = (0.73787293513210539, -1.5382506835407679) +description = Wauconda village, IL +station = ('kpwk', 0.0041334666739048205) +zone = ('ilz006', 0.0018805296630211659) + +[fips1779293] +centroid = (0.73948635239923388, -1.5336364867841001) +description = Waukegan city, IL +station = ('kugn', 0.00082594145977530535) +zone = ('ilz006', 0.0018932926125350134) + +[fips1779358] +centroid = (0.69102077563950137, -1.5699644156069337) +description = Waverly city, IL +station = ('kijx', 0.0049830263259510003) +zone = ('ilz050', 0.0039775117561205242) + +[fips1779397] +centroid = (0.73211771192365394, -1.5403094564731277) +description = Wayne village, IL +station = ('kdpa', 0.00082582188693554846) +zone = ('ilz012', 0.0022824741742805904) + +[fips1779436] +centroid = (0.6692996993128264, -1.5461775326710132) +description = Wayne City village, IL +station = ('kfwc', 0.0024758585562758817) +zone = ('ilz076', 0.002654254571858927) + +[fips1779449] +centroid = (0.70234091135476651, -1.5555170163912375) +description = Waynesville village, IL +station = ('kaaa', 0.0031537476897155704) +zone = ('ilz043', 0.0031599112251337498) + +[fips1779683] +centroid = (0.7002521013059797, -1.5489737421189256) +description = Weldon village, IL +station = ('kdec', 0.0052671292970887318) +zone = ('ilz043', 0.0022593127486079663) + +[fips1779735] +centroid = (0.70756433274013519, -1.5302989111088041) +description = Wellington village, IL +station = ('kdnv', 0.0060558532478970084) +zone = ('ilz033', 0.0040883777861228862) + +[fips1779813] +centroid = (0.71643278700183133, -1.5542550386222904) +description = Wenona city, IL +station = ('kvys', 0.0054577573578880115) +zone = ('ilz030', 0.0038604093574220646) + +[fips1779826] +centroid = (0.6862633920710004, -1.5583684306033907) +description = Wenonah village, IL +station = ('ktaz', 0.0037763809006897161) +zone = ('ilz060', 0.0030115728175624801) + +[fips1780008] +centroid = (0.72767666928207686, -1.5559139915296036) +description = West Brooklyn village, IL +station = ('krpj', 0.0036084757196378175) +zone = ('ilz010', 0.0022018712094543508) + +[fips1780047] +centroid = (0.73040629441902594, -1.5339806831658862) +description = Westchester village, IL +station = ('kord', 0.0023654185215296851) +zone = ('ilz014', 0.00097469626239241416) + +[fips1780060] +centroid = (0.7315437603991356, -1.5402241447792904) +description = West Chicago city, IL +station = ('kdpa', 0.00025172564176255852) +zone = ('ilz012', 0.0023811068066067684) + +[fips1780073] +centroid = (0.66315559929373835, -1.5524510663074289) +description = West City village, IL +station = ('kmwa', 0.0043488737386299806) +zone = ('ilz081', 0.000345793043994354) + +[fips1780125] +centroid = (0.734974222497223, -1.5419039543711648) +description = West Dundee village, IL +station = ('kdpa', 0.0038802854626559381) +zone = ('ilz012', 0.003192609223736645) + +[fips1780242] +centroid = (0.72958649581607171, -1.5341541514402419) +description = Western Springs village, IL +station = ('kmdw', 0.0019866902804812812) +zone = ('ilz014', 0.0012735763256632043) + +[fips1780255] +centroid = (0.68903954768580755, -1.5509204823666001) +description = Westervelt CDP, IL +station = ('kdec', 0.006183707646187313) +zone = ('ilz061', 0.0017089226500445064) + +[fips1780281] +centroid = (0.68862655042490817, -1.5358313081316533) +description = Westfield village, IL +station = ('kmto', 0.0036437438752373119) +zone = ('ilz056', 0.0032367402451938818) + +[fips1780333] +centroid = (0.66147097259312837, -1.5521355107786685) +description = West Frankfort city, IL +station = ('kmwa', 0.0027788037285926986) +zone = ('ilz081', 0.0016223088428273615) + +[fips1780645] +centroid = (0.7294493827500349, -1.5354160593960187) +description = Westmont village, IL +station = ('kord', 0.0033778649979938008) +zone = ('ilz013', 0.0017792148875453095) + +[fips1780736] +centroid = (0.71033165698892731, -1.5643868843696278) +description = West Peoria city, IL +station = ('kpia', 0.0008755052958585402) +zone = ('ilz029', 0.002290985532694727) + +[fips1780762] +centroid = (0.70259234348680877, -1.5914489474600857) +description = West Point village, IL +station = ('keok', 0.0049628343567814821) +zone = ('ilz034', 0.0025970796938155757) + +[fips1780853] +centroid = (0.67230250338429765, -1.5360520573754455) +description = West Salem village, IL +station = ('kajg', 0.0041407357620518595) +zone = ('ilz077', 0.0019050121349636592) + +[fips1780879] +centroid = (0.68443095343603888, -1.5300555947577836) +description = West Union CDP, IL +station = ('krsv', 0.0034829518603973282) +zone = ('ilz063', 0.00264525979319509) + +[fips1780931] +centroid = (0.69889999473445974, -1.5295876021721537) +description = Westville village, IL +station = ('kdnv', 0.002773702348660916) +zone = ('ilz046', 0.0027401622278735546) + +[fips1780957] +centroid = (0.68362523964014832, -1.5301832132326894) +description = West York CDP, IL +station = ('krsv', 0.0026891027111205896) +zone = ('ilz068', 0.0031257194326316956) + +[fips1781048] +centroid = (0.73052735045594419, -1.5377651503961556) +description = Wheaton city, IL +station = ('kdpa', 0.0020043973977633611) +zone = ('ilz013', 0.00029184902162164382) + +[fips1781074] +centroid = (0.68142963289443192, -1.5414532405451298) +description = Wheeler village, IL +station = ('k1h2', 0.0029473953519039528) +zone = ('ilz067', 0.0023098539777933642) + +[fips1781087] +centroid = (0.73532096705971683, -1.5345618429002152) +description = Wheeling village, IL +station = ('kpwk', 0.00039572856062390313) +zone = ('ilz006', 0.0035109070179093352) + +[fips1781165] +centroid = (0.65945246440661176, -1.5521356678583011) +description = Whiteash village, IL +station = ('kmwa', 0.0011329727547525175) +zone = ('ilz085', 0.00093458842895176276) + +[fips1781191] +centroid = (0.68191132631468987, -1.5667759957695127) +description = White City village, IL +station = ('k3lf', 0.0020535366183408693) +zone = ('ilz059', 0.0039272456377474861) + +[fips1781256] +centroid = (0.68833261952557978, -1.5777964060923328) +description = White Hall city, IL +station = ('kijx', 0.0062516665661554146) +zone = ('ilz058', 0.0014444075675510751) + +[fips1781295] +centroid = (0.699647990491987, -1.5448193698069885) +description = White Heath CDP, IL +station = ('kcmi', 0.0034030994884464119) +zone = ('ilz044', 0.00170556494057866) + +[fips1781802] +centroid = (0.71430406127305146, -1.5711135752930314) +description = Williamsfield village, IL +station = ('kpia', 0.0063368948465645017) +zone = ('ilz027', 0.0025745461755665778) + +[fips1781815] +centroid = (0.68046052137396951, -1.5666770006943396) +description = Williamson village, IL +station = ('k3lf', 0.0032816685305491764) +zone = ('ilz100', 0.0033527360898489914) + +[fips1781854] +centroid = (0.69728938744742686, -1.5629545624656862) +description = Williamsville village, IL +station = ('kspi', 0.0025113313090006748) +zone = ('ilz051', 0.0036758384537338277) + +[fips1781867] +centroid = (0.66292481440674711, -1.5636369687499234) +description = Willisville village, IL +station = ('ksar', 0.0032617824962793206) +zone = ('ilz079', 0.0034567145999955273) + +[fips1781919] +centroid = (0.7288829186880077, -1.5349442270860345) +description = Willowbrook village, IL +station = ('kmdw', 0.0025762472093432539) +zone = ('ilz014', 0.0021621976105709218) + +[fips1781938] +centroid = (0.72350060252753745, -1.5278304919477086) +description = Willowbrook CDP, IL +station = ('kigq', 0.0015112169664243671) +zone = ('inz001', 0.0021526305763984723) + +[fips1782010] +centroid = (0.68060576767432046, -1.5362705202379177) +description = Willow Hill village, IL +station = ('krsv', 0.0050586350183074811) +zone = ('ilz067', 0.001807095098855486) + +[fips1782049] +centroid = (0.7284051871651519, -1.5338681094291324) +description = Willow Springs village, IL +station = ('kmdw', 0.0019433021553666675) +zone = ('ilz014', 0.0020376929220655804) + +[fips1782075] +centroid = (0.73438782677513803, -1.5311532846842404) +description = Wilmette village, IL +station = ('kord', 0.0029383865555846138) +zone = ('ilz014', 0.0042986027612017834) + +[fips1782088] +centroid = (0.68906790928615236, -1.5792919961816594) +description = Wilmington village, IL +station = ('kppq', 0.0047975320973189482) +zone = ('ilz058', 0.0025308269658123718) + +[fips1782101] +centroid = (0.72113086428234963, -1.5383903796940974) +description = Wilmington city, IL +station = ('kjot', 0.0035209061158546508) +zone = ('ilz022', 0.003094699085793406) + +[fips1782218] +centroid = (0.68188238875569185, -1.5682667338435186) +description = Wilsonville village, IL +station = ('k3lf', 0.0029377809258921308) +zone = ('ilz059', 0.0034801879883724243) + +[fips1782270] +centroid = (0.69167014284099837, -1.5787543649588749) +description = Winchester city, IL +station = ('kijx', 0.0038560171863473171) +zone = ('ilz049', 0.00035604973441053444) + +[fips1782309] +centroid = (0.71910745172063506, -1.5785518718590585) +description = Windsor village, IL +station = ('kmli', 0.0044339873911443724) +zone = ('ilz024', 0.0039010223549913823) + +[fips1782322] +centroid = (0.68833865836479158, -1.5462812401351664) +description = Windsor city, IL +station = ('kmto', 0.0044564634668493421) +zone = ('ilz054', 0.0035490367930006658) + +[fips1782400] +centroid = (0.73089924521295924, -1.5385268644416032) +description = Winfield village, IL +station = ('kdpa', 0.0013440171226940854) +zone = ('ilz013', 0.00095900533699057235) + +[fips1782491] +centroid = (0.73770070604151849, -1.5574236140661162) +description = Winnebago village, IL +station = ('krfd', 0.0020886886555625448) +zone = ('ilz003', 0.0015305881336249846) + +[fips1782530] +centroid = (0.73489200003616151, -1.5314001266003499) +description = Winnetka village, IL +station = ('kpwk', 0.002043990158968772) +zone = ('ilz014', 0.0047459646936481069) + +[fips1782543] +centroid = (0.74164591809589653, -1.5672112459783751) +description = Winslow village, IL +station = ('keft', 0.003373879095648354) +zone = ('ilz002', 0.002998951110718749) + +[fips1782686] +centroid = (0.74142658256879845, -1.5329149502180333) +description = Winthrop Harbor village, IL +station = ('kugn', 0.0012141103878271365) +zone = ('ilz006', 0.0035481216169514699) + +[fips1782725] +centroid = (0.68512058538337939, -1.5594375320366998) +description = Witt city, IL +station = ('ktaz', 0.0048893261967342437) +zone = ('ilz060', 0.0018007219730932379) + +[fips1782855] +centroid = (0.73961854363677992, -1.5419885504800088) +description = Wonder Lake village, IL +station = ('kbuu', 0.0055023430726347817) +zone = ('ilz005', 0.0016147141243179235) + +[fips1782985] +centroid = (0.73245021459945148, -1.5355555286565457) +description = Wood Dale city, IL +station = ('kord', 0.00088425586197501981) +zone = ('ilz013', 0.0024155255828017014) + +[fips1783063] +centroid = (0.71870169757613145, -1.5764170723844817) +description = Woodhull village, IL +station = ('kgbg', 0.0044364528047449456) +zone = ('ilz016', 0.0039412797089759923) + +[fips1783102] +centroid = (0.71059610927718941, -1.5311868299124636) +description = Woodland village, IL +station = ('kikk', 0.0064194599263012126) +zone = ('ilz033', 0.0013690307025627927) + +[fips1783206] +centroid = (0.66894742205660385, -1.5539489427780757) +description = Woodlawn village, IL +station = ('kmvn', 0.00230933742107511) +zone = ('ilz075', 0.0015890899627184157) + +[fips1783245] +centroid = (0.72845732014990894, -1.5366682807744472) +description = Woodridge village, IL +station = ('klot', 0.002345644702178466) +zone = ('ilz013', 0.0020681942210600329) + +[fips1783271] +centroid = (0.67829201959153662, -1.5721514702393151) +description = Wood River city, IL +station = ('kaln', 0.00074298029569673833) +zone = ('ilz100', 0.0024166419960122676) + +[fips1783336] +centroid = (0.6916297384688147, -1.5747304211019395) +description = Woodson village, IL +station = ('kijx', 0.0025665591247067505) +zone = ('ilz050', 0.0015714165378796227) + +[fips1783349] +centroid = (0.73845344909461108, -1.5434933384544933) +description = Woodstock city, IL +station = ('kbuu', 0.0068477994366896028) +zone = ('ilz005', 0.00032796175330520943) + +[fips1783505] +centroid = (0.67947610331596719, -1.5680078666088628) +description = Worden village, IL +station = ('kaln', 0.0028999159773716696) +zone = ('ilz100', 0.0019741464529329654) + +[fips1783518] +centroid = (0.72758107759894519, -1.5322686722493124) +description = Worth village, IL +station = ('kmdw', 0.0017648330788243747) +zone = ('ilz014', 0.0026814646055820213) + +[fips1783622] +centroid = (0.72187863314707412, -1.5635194557313865) +description = Wyanet village, IL +station = ('kc75', 0.0064949114455458172) +zone = ('ilz017', 0.0010408211102786713) + +[fips1783687] +centroid = (0.71669645389193015, -1.5668332251156856) +description = Wyoming city, IL +station = ('kc75', 0.0051473644740058057) +zone = ('ilz028', 0.00061115507881566824) + +[fips1783739] +centroid = (0.67434930335798893, -1.5470146973000245) +description = Xenia village, IL +station = ('kfoa', 0.0025587170935166947) +zone = ('ilz071', 0.0028599242250736258) + +[fips1783765] +centroid = (0.68277793464818259, -1.5363183771660072) +description = Yale village, IL +station = ('krsv', 0.0053965939453159374) +zone = ('ilz067', 0.0026024837947569521) + +[fips1783817] +centroid = (0.71171037983154029, -1.5710445998809928) +description = Yates City village, IL +station = ('kpia', 0.0047888190393010543) +zone = ('ilz029', 0.0033643117533456264) + +[fips1784038] +centroid = (0.72704594219699115, -1.5435058699185229) +description = Yorkville city, IL +station = ('karr', 0.0019600619954496029) +zone = ('ilz020', 0.0011571480162987529) + +[fips1784155] +centroid = (0.66160585163772245, -1.5542335536191985) +description = Zeigler city, IL +station = ('kmwa', 0.0028243048842636464) +zone = ('ilz081', 0.0022915948198207344) + +[fips1784220] +centroid = (0.74106521214717302, -1.5332913130179335) +description = Zion city, IL +station = ('kugn', 0.00078083227636293804) +zone = ('ilz006', 0.003092663872868428) + +[fips18001] +centroid = (0.7111471969885067, -1.4824151398552239) +description = Adams County, IN +station = ('kfwa', 0.0056410306396035802) +zone = ('inz027', 7.4159592662075621e-06) + +[fips1800105914] +centroid = (0.71056816655586497, -1.4806596004271053) +description = Blue Creek township, IN +station = ('kfwa', 0.0069509035842439454) +zone = ('inz027', 0.0014549808663283496) + +[fips1800125900] +centroid = (0.71036508004410304, -1.4840574597747656) +description = French township, IN +station = ('kfwa', 0.0056807536675588964) +zone = ('inz027', 0.0014625829724795409) + +[fips1800132206] +centroid = (0.70876049414298947, -1.4840130935051798) +description = Hartford township, IN +station = ('kfwa', 0.0071941621700150529) +zone = ('inz027', 0.0026703167982606159) + +[fips1800137818] +centroid = (0.7090000754894108, -1.480735016104084) +description = Jefferson township, IN +station = ('kfwa', 0.0081235823781337698) +zone = ('inz027', 0.0024963523300599432) + +[fips1800139924] +centroid = (0.71187803615948686, -1.484114916013741) +description = Kirkland township, IN +station = ('kfwa', 0.0043088010795239154) +zone = ('inz027', 0.0014769849335508386) + +[fips1800140] +centroid = (0.72329575323323092, -1.5204718173021574) +description = Aberdeen CDP, IN +station = ('kvpz', 0.0015323809633167585) +zone = ('inz002', 0.00072539781129619886) + +[fips1800150220] +centroid = (0.71031881136563269, -1.4824917598093865) +description = Monroe township, IN +station = ('kfwa', 0.0062823625787244413) +zone = ('inz027', 0.00082594905468887905) + +[fips1800161884] +centroid = (0.71322633791323753, -1.4842583820782551) +description = Preble township, IN +station = ('kfwa', 0.003149249366799888) +zone = ('inz027', 0.0025038228432317372) + +[fips1800165862] +centroid = (0.71346129413714088, -1.4825169449104927) +description = Root township, IN +station = ('kfwa', 0.0040104706943291978) +zone = ('inz027', 0.0023192464114516797) + +[fips1800167068] +centroid = (0.71187766964034382, -1.4805800134132143) +description = St. Marys township, IN +station = ('kfwa', 0.0061193781186795384) +zone = ('inz027', 0.001577526574401992) + +[fips1800177120] +centroid = (0.7134511363208943, -1.480766030604892) +description = Union township, IN +station = ('kfwa', 0.0051842145348141655) +zone = ('inz027', 0.0026268362783167481) + +[fips1800179262] +centroid = (0.70878129846767324, -1.4823470022012259) +description = Wabash township, IN +station = ('kfwa', 0.0076684048717770041) +zone = ('inz027', 0.0023625410732184475) + +[fips1800180324] +centroid = (0.71196755409682155, -1.4825756228799447) +description = Washington township, IN +station = ('kfwa', 0.0049370633822284149) +zone = ('inz027', 0.00083245315713639529) + +[fips18003] +centroid = (0.71718816550209452, -1.4847905155138956) +description = Allen County, IN +station = ('kfwa', 0.0023235158470204021) +zone = ('inz018', 7.758840749225522e-05) + +[fips1800300208] +centroid = (0.71639395342597445, -1.4884330351161001) +description = Aboite township, IN +station = ('kfwa', 0.0013379279174727638) +zone = ('inz018', 0.0029262900954946675) + +[fips1800300298] +centroid = (0.71637766950405335, -1.4843954776909991) +description = Adams township, IN +station = ('kfwa', 0.0021332067708924136) +zone = ('inz018', 0.00082272178692545936) + +[fips1800310990] +centroid = (0.71950437449912363, -1.4838246328525495) +description = Cedar Creek township, IN +station = ('kgwb', 0.0014896230939936497) +zone = ('inz018', 0.0024239344184411229) + +[fips1800320512] +centroid = (0.71955683909643864, -1.4880063893804503) +description = Eel River township, IN +station = ('kgwb', 0.0027538598672734648) +zone = ('inz018', 0.0034540631608386599) + +[fips1800336738] +centroid = (0.71650397898202012, -1.4808023683599185) +description = Jackson township, IN +station = ('kfwa', 0.0047801904596149972) +zone = ('ohz015', 0.0036432209084854648) + +[fips1800337836] +centroid = (0.71643002938161326, -1.48258466368547) +description = Jefferson township, IN +station = ('kfwa', 0.0034515951143545632) +zone = ('inz018', 0.0017514938730016434) + +[fips1800340716] +centroid = (0.71486717430291491, -1.4883863301053171) +description = Lafayette township, IN +station = ('kfwa', 0.0012563640612571494) +zone = ('inz018', 0.0036160788652076174) + +[fips1800340932] +centroid = (0.71803016469313419, -1.4883300083303552) +description = Lake township, IN +station = ('kfwa', 0.002636946159438941) +zone = ('inz018', 0.0028737759406237337) + +[fips1800345882] +centroid = (0.71494520797377159, -1.4824831204295892) +description = Madison township, IN +station = ('kfwa', 0.0034846084165463067) +zone = ('inz018', 0.0027787871670515883) + +[fips1800346836] +centroid = (0.71478479476222079, -1.4843394526220102) +description = Marion township, IN +station = ('kfwa', 0.0021765637595365273) +zone = ('inz018', 0.0023996187623392599) + +[fips1800347646] +centroid = (0.7181558458525702, -1.480718034050462) +description = Maumee township, IN +station = ('kgwb', 0.004038186617633048) +zone = ('ohz015', 0.0034439769409526371) + +[fips1800349248] +centroid = (0.71803552285393779, -1.482621350506347) +description = Milan township, IN +station = ('kgwb', 0.003213446963881436) +zone = ('inz018', 0.0017831535464818632) + +[fips1800350238] +centroid = (0.71497812488346413, -1.4807814942220645) +description = Monroe township, IN +station = ('kfwa', 0.0047488293075765436) +zone = ('inz018', 0.0036741420719482057) + +[fips1800358950] +centroid = (0.71931767662903778, -1.4860102737682368) +description = Perry township, IN +station = ('kgwb', 0.0017763064668216372) +zone = ('inz018', 0.002366661227823559) + +[fips1800360354] +centroid = (0.7148802468190123, -1.4864540760904341) +description = Pleasant township, IN +station = ('kfwa', 0.00082434101025604138) +zone = ('inz018', 0.0026480161137055094) + +[fips1800366924] +centroid = (0.71801536430107715, -1.4845592942945913) +description = St. Joseph township, IN +station = ('kgwb', 0.0028093429791680377) +zone = ('inz018', 0.00085137069923565056) + +[fips1800368292] +centroid = (0.71956345389430376, -1.4804743860868836) +description = Scipio township, IN +station = ('kgwb', 0.0034522677244815691) +zone = ('inz009', 0.0037390409390355133) + +[fips1800372116] +centroid = (0.71963349395718623, -1.4817124702983708) +description = Springfield township, IN +station = ('kgwb', 0.002574586206951222) +zone = ('inz009', 0.0031919756404962117) + +[fips1800380342] +centroid = (0.71796843239749109, -1.4866105797644604) +description = Washington township, IN +station = ('kfwa', 0.0024033943059985031) +zone = ('inz018', 0.0016524298017916695) + +[fips1800381620] +centroid = (0.71649912696669971, -1.4863589556462002) +description = Wayne township, IN +station = ('kfwa', 0.0010415054738909483) +zone = ('inz018', 0.0014254335808467631) + +[fips18005] +centroid = (0.68427104636997127, -1.4992029034247967) +description = Bartholomew County, IN +station = ('kbak', 0.0010619178272614034) +zone = ('inz064', 4.1643080577858628e-06) + +[fips1800509937] +centroid = (0.68561008042539384, -1.5015988390620569) +description = Camp Atterbury UT, IN +station = ('kbak', 0.0018486483190890358) +zone = ('inz064', 0.0022909426454893996) + +[fips1800512970] +centroid = (0.68466636344554788, -1.4977645077750581) +description = Clay township, IN +station = ('kbak', 0.0013212507077145063) +zone = ('inz064', 0.0011783000387810781) + +[fips1800513618] +centroid = (0.68461944899525429, -1.4963212252034137) +description = Clifty township, IN +station = ('kbak', 0.0023686305661513017) +zone = ('inz064', 0.0022555087251321234) + +[fips1800514752] +centroid = (0.68429150162880459, -1.4995692131282052) +description = Columbus township, IN +station = ('kbak', 0.0010722903198409639) +zone = ('inz064', 0.00028854428026819332) + +[fips1800523548] +centroid = (0.68590814775504938, -1.4983499610193471) +description = Flat Rock township, IN +station = ('kbak', 0.0008963930489507368) +zone = ('inz064', 0.0017628853115861868) + +[fips1800527432] +centroid = (0.68610044813203408, -1.5000161046831784) +description = German township, IN +station = ('kbak', 0.00097590871171239534) +zone = ('inz064', 0.0019351102222020858) + +[fips1800531612] +centroid = (0.68397147805715897, -1.5015862028782725) +description = Harrison township, IN +station = ('kbak', 0.0022720007299222309) +zone = ('inz064', 0.0018752833225140573) + +[fips1800532530] +centroid = (0.68598263840752449, -1.4963282937868845) +description = Haw Creek township, IN +station = ('kbak', 0.0023439217273868271) +zone = ('inz064', 0.0028040842095513234) + +[fips1800536756] +centroid = (0.68180671127932535, -1.5016287190988509) +description = Jackson township, IN +station = ('kbak', 0.0039835000794631202) +zone = ('inz071', 0.0027619436608527586) + +[fips1800556124] +centroid = (0.68284577559620763, -1.5014817623758332) +description = Ohio township, IN +station = ('kbak', 0.0030345744479254541) +zone = ('inz064', 0.0022738441006967176) + +[fips1800565250] +centroid = (0.68356790557422031, -1.4967162804796028) +description = Rock Creek township, IN +station = ('kbak', 0.0026326425361583184) +zone = ('inz064', 0.0020481814907742529) + +[fips1800567716] +centroid = (0.68280474290549331, -1.4982085195367654) +description = Sand Creek township, IN +station = ('kbak', 0.0026507583272478547) +zone = ('inz064', 0.001655646271464325) + +[fips1800581656] +centroid = (0.68236558315910645, -1.499635570546366) +description = Wayne township, IN +station = ('kbak', 0.0029830118523017412) +zone = ('inz064', 0.0019364636609169677) + +[fips1800640] +centroid = (0.69805179962457553, -1.5118105685292582) +description = Advance town, IN +station = ('ktyq', 0.0049875006406299438) +zone = ('inz037', 0.0022457081585456813) + +[fips18007] +centroid = (0.70874771833286487, -1.5239425965059659) +description = Benton County, IN +station = ('klaf', 0.0058906245726211811) +zone = ('inz019', 6.9592567549969295e-05) + +[fips1800706328] +centroid = (0.70719135587898407, -1.5210812164637837) +description = Bolivar township, IN +station = ('klaf', 0.0032180291754736767) +zone = ('inz019', 0.0026042949589379434) + +[fips1800711224] +centroid = (0.70863081617956625, -1.5235539116815469) +description = Center township, IN +station = ('klaf', 0.0055816308035402185) +zone = ('inz019', 0.00024862193170159492) + +[fips1800727630] +centroid = (0.71022899672232498, -1.5211239770304577) +description = Gilboa township, IN +station = ('krzl', 0.0045084970956692089) +zone = ('inz019', 0.0025717444035763142) + +[fips1800728818] +centroid = (0.70721661079326037, -1.5250530273359624) +description = Grant township, IN +station = ('klaf', 0.0059789340623151868) +zone = ('inz019', 0.0017489474935794963) + +[fips1800733358] +centroid = (0.70721488291730095, -1.5268283064379209) +description = Hickory Grove township, IN +station = ('kdnv', 0.0058063149221461103) +zone = ('inz019', 0.0027059248399991681) + +[fips1800748] +centroid = (0.71626286174585729, -1.501417778605455) +description = Akron town, IN +station = ('krcr', 0.0020745836217155185) +zone = ('inz015', 0.0031453474256312734) + +[fips1800755620] +centroid = (0.70732504809968666, -1.5232302403717644) +description = Oak Grove township, IN +station = ('klaf', 0.0047193457795883147) +zone = ('inz019', 0.0014693468771277724) + +[fips1800757942] +centroid = (0.70870062934964617, -1.5262354704508958) +description = Parish Grove township, IN +station = ('krzl', 0.0069039237927419833) +zone = ('inz019', 0.0018014803057103427) + +[fips1800759886] +centroid = (0.7087085880510352, -1.521107274229516) +description = Pine township, IN +station = ('klaf', 0.0042636515514639711) +zone = ('inz019', 0.0020919120758906887) + +[fips1800763990] +centroid = (0.71021365527819991, -1.5252670221555493) +description = Richland township, IN +station = ('krzl', 0.0052260258871868696) +zone = ('inz019', 0.0018399299138283926) + +[fips1800777138] +centroid = (0.71011968675127257, -1.5232351098403774) +description = Union township, IN +station = ('krzl', 0.0047276999701370151) +zone = ('inz019', 0.0014844932313918279) + +[fips1800784] +centroid = (0.69784370401786022, -1.5194029253083585) +description = Alamo town, IN +station = ('klaf', 0.0076895956598112183) +zone = ('inz036', 0.0023833296733595682) + +[fips1800785940] +centroid = (0.71010986054758385, -1.5267205672631952) +description = York township, IN +station = ('krzl', 0.0059429028047953284) +zone = ('inz019', 0.0025790407794217033) + +[fips1800802] +centroid = (0.7034718323501814, -1.4875814715207598) +description = Albany town, IN +station = ('kmie', 0.0025698375969910128) +zone = ('inz041', 0.0025856002574675034) + +[fips1800820] +centroid = (0.72250682950474443, -1.4908374530535253) +description = Albion town, IN +station = ('kgsh', 0.0053328753794351308) +zone = ('inz008', 3.8926254075755816e-05) + +[fips18009] +centroid = (0.70638138347971846, -1.4891800185826614) +description = Blackford County, IN +station = ('kmie', 0.0042986602406329512) +zone = ('inz033', 2.0264730058838142e-05) + +[fips1800910] +centroid = (0.7026412650657422, -1.4953305588666894) +description = Alexandria city, IN +station = ('kaid', 0.0025973128297067482) +zone = ('inz040', 0.0017848599634851124) + +[fips1800931630] +centroid = (0.70738892715030977, -1.4882059503271234) +description = Harrison township, IN +station = ('kmie', 0.005474080378372259) +zone = ('inz033', 0.0012474192818272907) + +[fips1800936774] +centroid = (0.70560823752766999, -1.4882068404450419) +description = Jackson township, IN +station = ('kmie', 0.0038306266241745351) +zone = ('inz033', 0.001090860033862364) + +[fips1800943650] +centroid = (0.70559998212030806, -1.4901586246942546) +description = Licking township, IN +station = ('kmie', 0.0034064652445853325) +zone = ('inz033', 0.0010802651937312153) + +[fips1800964] +centroid = (0.67300367195799393, -1.5175393499995415) +description = Alfordsville town, IN +station = ('khnb', 0.0054152669226081333) +zone = ('inz068', 0.002998131646616174) + +[fips1800980360] +centroid = (0.7071390483613017, -1.4901594624522954) +description = Washington township, IN +station = ('kmie', 0.0049421815428388836) +zone = ('inz033', 0.0010422034689883996) + +[fips18011] +centroid = (0.69901993376065674, -1.509168995253072) +description = Boone County, IN +station = ('ktyq', 0.0029491095788396001) +zone = ('inz037', 4.4918289277151367e-06) + +[fips1801111242] +centroid = (0.69896261714802121, -1.5089922806663076) +description = Center township, IN +station = ('ktyq', 0.0028081238898792415) +zone = ('inz037', 0.00014242637609333372) + +[fips1801113672] +centroid = (0.70053062094801299, -1.5081777878642795) +description = Clinton township, IN +station = ('ktyq', 0.0028652132031705769) +zone = ('inz037', 0.0016898666310516987) + +[fips1801119288] +centroid = (0.69735553542607742, -1.5063147012476532) +description = Eagle township, IN +station = ('ktyq', 0.0014965369960375566) +zone = ('inz037', 0.0027435277464992703) + +[fips1801131648] +centroid = (0.6974078254904672, -1.5096341080454359) +description = Harrison township, IN +station = ('keye', 0.003411543055192731) +zone = ('inz037', 0.0016503507227238234) + +[fips1801136792] +centroid = (0.69743322003108377, -1.5119737568143197) +description = Jackson township, IN +station = ('ktyq', 0.0052221638218285012) +zone = ('inz037', 0.0026732472745703332) + +[fips1801137854] +centroid = (0.69905307756315216, -1.5118561216227351) +description = Jefferson township, IN +station = ('ktyq', 0.0049994961972983911) +zone = ('inz037', 0.0020613835920304776) + +[fips1801146854] +centroid = (0.70025566177765375, -1.5061072339594685) +description = Marion township, IN +station = ('ktyq', 0.0017029465228943681) +zone = ('inz037', 0.0026454825168875226) + +[fips1801158968] +centroid = (0.69724578912271207, -1.5080905912148497) +description = Perry township, IN +station = ('keye', 0.0024807641086003677) +zone = ('inz037', 0.0019538231258696983) + +[fips1801173844] +centroid = (0.70050454572898813, -1.5121263858574063) +description = Sugar Creek township, IN +station = ('ktyq', 0.0055071485649658986) +zone = ('inz037', 0.0027103950598621556) + +[fips1801177156] +centroid = (0.6987651680497432, -1.5060748057419664) +description = Union township, IN +station = ('ktyq', 0.00056837902017530429) +zone = ('inz037', 0.0023780919058224497) + +[fips1801180378] +centroid = (0.70045520527103433, -1.5101891227475701) +description = Washington township, IN +station = ('ktyq', 0.0041192810264920037) +zone = ('inz037', 0.0016371365604272272) + +[fips1801185580] +centroid = (0.69817461844403839, -1.5072182232948255) +description = Worth township, IN +station = ('ktyq', 0.0015119424454917915) +zone = ('inz037', 0.0017119430395086458) + +[fips1801270] +centroid = (0.66532099439010273, -1.5082952659762312) +description = Alton town, IN +station = ('khnb', 0.0076299149652837) +zone = ('inz084', 0.0030390865708319298) + +[fips1801288] +centroid = (0.7217299485480968, -1.4861908804392334) +description = Altona town, IN +station = ('kgwb', 0.0014122543753697201) +zone = ('inz009', 0.0021600304552826383) + +[fips18013] +centroid = (0.68403965061774186, -1.5051616494773232) +description = Brown County, IN +station = ('kbak', 0.0047673758728043972) +zone = ('inz063', 0.00017427429666654339) + +[fips1801330528] +centroid = (0.68553414114963951, -1.5037517201476844) +description = Hamblen township, IN +station = ('kbak', 0.0035002113075318572) +zone = ('inz063', 0.0017068129715135448) + +[fips1801336810] +centroid = (0.68562687049279802, -1.506404393717913) +description = Jackson township, IN +station = ('kbmg', 0.0047495293482859033) +zone = ('inz063', 0.0018942718219045784) + +[fips1801342] +centroid = (0.70667231241273343, -1.5274463624326369) +description = Ambia town, IN +station = ('kdnv', 0.0051685124785502464) +zone = ('inz028', 0.0032966091607891054) + +[fips1801360] +centroid = (0.70865169031742015, -1.4997154019063523) +description = Amboy town, IN +station = ('kokk', 0.0022088340606282683) +zone = ('inz031', 0.0032625158541949215) + +[fips1801378398] +centroid = (0.68240144967523486, -1.504052335658048) +description = Van Buren township, IN +station = ('kbak', 0.004745393608467814) +zone = ('inz063', 0.0018388153703826524) + +[fips1801380396] +centroid = (0.6835891636845095, -1.5056130963416439) +description = Washington township, IN +station = ('kbak', 0.0052379676546059741) +zone = ('inz063', 0.00072549276020859128) + +[fips1801396] +centroid = (0.7072667017427926, -1.5139914621493802) +description = Americus CDP, IN +station = ('klaf', 0.0032947688894100755) +zone = ('inz029', 0.0030722725990637479) + +[fips1801450] +centroid = (0.69270095175051871, -1.5116730540374934) +description = Amo town, IN +station = ('kind', 0.0044464670985044814) +zone = ('inz046', 0.0019683073420318775) + +[fips1801468] +centroid = (0.69969841305407698, -1.4955630192697624) +description = Anderson city, IN +station = ('kaid', 0.001079117356349032) +zone = ('inz040', 0.0013159137343698767) + +[fips18015] +centroid = (0.70834152785604831, -1.5108467279031366) +description = Carroll County, IN +station = ('kggp', 0.0033694875261767766) +zone = ('inz021', 4.3826795153513376e-05) + +[fips1801500316] +centroid = (0.71041175014830127, -1.5116446051706858) +description = Adams township, IN +station = ('kggp', 0.0031538390883999973) +zone = ('inz021', 0.0021995717170974183) + +[fips1801509262] +centroid = (0.70641538249354729, -1.5083483937986619) +description = Burlington township, IN +station = ('kggp', 0.0041818216921966096) +zone = ('inz021', 0.0026624532557811722) + +[fips1801510540] +centroid = (0.70799427714807139, -1.5083184788552828) +description = Carrollton township, IN +station = ('kggp', 0.0026282538987464871) +zone = ('inz021', 0.00192363321057433) + +[fips1801512988] +centroid = (0.70613907941966414, -1.5122142806385368) +description = Clay township, IN +station = ('klaf', 0.0041374061191663545) +zone = ('inz021', 0.0024106181211804266) + +[fips1801517236] +centroid = (0.70835871934918038, -1.5120331852753499) +description = Deer Creek township, IN +station = ('kggp', 0.0040836582002914436) +zone = ('inz021', 0.00092445656286328694) + +[fips1801517686] +centroid = (0.70629118486397535, -1.5101441107061613) +description = Democrat township, IN +station = ('kggp', 0.0047085857646066579) +zone = ('inz021', 0.0020764837927127163) + +[fips1801536828] +centroid = (0.70849982921920418, -1.509886971347465) +description = Jackson township, IN +station = ('kggp', 0.0027384220247515727) +zone = ('inz021', 0.00073384738685343029) + +[fips1801537872] +centroid = (0.7100684613377265, -1.5133958161822594) +description = Jefferson township, IN +station = ('kggp', 0.0045045188291257298) +zone = ('inz021', 0.0026347575762725598) + +[fips1801543200] +centroid = (0.70972515507385925, -1.5099650573781991) +description = Liberty township, IN +station = ('kggp', 0.0020498211973284473) +zone = ('inz021', 0.0015621638848991651) + +[fips1801545900] +centroid = (0.70698774576844625, -1.5121264382172841) +description = Madison township, IN +station = ('kggp', 0.0050060317552429873) +zone = ('inz021', 0.0016491228894660944) + +[fips1801550256] +centroid = (0.70742903481652064, -1.5101471475790598) +description = Monroe township, IN +station = ('kggp', 0.0037132876877940995) +zone = ('inz021', 0.0010121737460839046) + +[fips1801565268] +centroid = (0.70975433697895263, -1.5109808040962749) +description = Rock Creek township, IN +station = ('kggp', 0.0027642814328105681) +zone = ('inz021', 0.0014561042133846328) + +[fips1801575824] +centroid = (0.70882381468825195, -1.5136653299253524) +description = Tippecanoe township, IN +station = ('klaf', 0.0045254418202579682) +zone = ('inz021', 0.0022236401923971926) + +[fips1801580414] +centroid = (0.70932559684820018, -1.5084009456624397) +description = Washington township, IN +station = ('kggp', 0.0014030287997725082) +zone = ('inz022', 0.0023429439041730317) + +[fips1801612] +centroid = (0.71314003138172644, -1.4940389105004586) +description = Andrews town, IN +station = ('kfwa', 0.0058390004164316474) +zone = ('inz025', 0.0015980706043776708) + +[fips1801666] +centroid = (0.72681508749682988, -1.4835729214678268) +description = Angola city, IN +station = ('koeb', 0.0051013662881929656) +zone = ('inz007', 2.3195326719070639e-05) + +[fips18017] +centroid = (0.71128797524597254, -1.5071820251661392) +description = Cass County, IN +station = ('kggp', 0.00077748764392536766) +zone = ('inz022', 0.00018099560015753026) + +[fips1801700334] +centroid = (0.71312352056700246, -1.5047236067416576) +description = Adams township, IN +station = ('kggp', 0.0033204193590159552) +zone = ('inz022', 0.0024331209292414342) + +[fips1801705086] +centroid = (0.71318610807397909, -1.5062571577422148) +description = Bethlehem township, IN +station = ('kggp', 0.0027998851978761944) +zone = ('inz022', 0.0018562921509902484) + +[fips1801706490] +centroid = (0.7132638101322778, -1.5101353840599012) +description = Boone township, IN +station = ('kggp', 0.0033771597712089606) +zone = ('inz022', 0.0029904947711774472) + +[fips1801713006] +centroid = (0.7120739144614382, -1.5062232983547261) +description = Clay township, IN +station = ('kggp', 0.0018035161290055428) +zone = ('inz022', 0.00088896848912397338) + +[fips1801713690] +centroid = (0.71078577420700373, -1.5089501135115795) +description = Clinton township, IN +station = ('kggp', 0.0011339264213562909) +zone = ('inz022', 0.0015935094192056269) + +[fips1801717254] +centroid = (0.70869839532820356, -1.5065174037869797) +description = Deer Creek township, IN +station = ('kggp', 0.0019887390112106641) +zone = ('inz022', 0.0027507317086563044) + +[fips1801720494] +centroid = (0.71128797524597254, -1.5071820251661392) +description = Eel township, IN +station = ('kggp', 0.00077748764392536766) +zone = ('inz022', 0.00018099560015753026) + +[fips1801731666] +centroid = (0.71324698515828855, -1.5081680314737609) +description = Harrison township, IN +station = ('kggp', 0.0027497908246303005) +zone = ('inz022', 0.0020202700600457663) + +[fips1801736846] +centroid = (0.70868150054104417, -1.5047803648489322) +description = Jackson township, IN +station = ('kgus', 0.0011969787100479074) +zone = ('inz031', 0.002496395183278041) + +[fips1801737890] +centroid = (0.71185712711504789, -1.5102972633480238) +description = Jefferson township, IN +station = ('kggp', 0.002499835898821101) +zone = ('inz022', 0.0025181452954580372) + +[fips1801748654] +centroid = (0.71166721783913844, -1.5048164757111562) +description = Miami township, IN +station = ('kggp', 0.0023138661494198193) +zone = ('inz022', 0.001688207550394504) + +[fips1801754054] +centroid = (0.71191470552707115, -1.5083082337725735) +description = Noble township, IN +station = ('kggp', 0.0015033272333236222) +zone = ('inz022', 0.0010913855784055301) + +[fips1801775968] +centroid = (0.71035132684959734, -1.5050389528309081) +description = Tipton township, IN +station = ('kgus', 0.0013981031654407975) +zone = ('inz022', 0.001845350847452767) + +[fips1801780432] +centroid = (0.71028975163358687, -1.5067811928501262) +description = Washington township, IN +station = ('kggp', 0.00059380755194894913) +zone = ('inz022', 0.001147237286541967) + +[fips18019] +centroid = (0.67153667036181508, -1.4959412844785474) +description = Clark County, IN +station = ('klou', 0.0042825617715401753) +zone = ('inz092', 5.5537437399070089e-05) + +[fips1801905122] +centroid = (0.67275217001278143, -1.4915592863255651) +description = Bethlehem township, IN +station = ('klou', 0.0061434395026800865) +zone = ('kyz032', 0.0020429473495531393) + +[fips1801910432] +centroid = (0.67087428300409824, -1.4983586178524371) +description = Carr township, IN +station = ('klou', 0.004366539682473955) +zone = ('inz092', 0.0020610277273333316) + +[fips1801912142] +centroid = (0.67132953468618839, -1.4949020630820322) +description = Charlestown township, IN +station = ('klou', 0.0040372693166098022) +zone = ('inz092', 0.00079424964189689069) + +[fips1801938367] +centroid = (0.66871581686486425, -1.4964269397962071) +description = Jeffersonville township, IN +station = ('klou', 0.0017298399346763276) +zone = ('kyz030', 0.0024757773478553979) + +[fips1801950274] +centroid = (0.67277367246916608, -1.4970711757297033) +description = Monroe township, IN +station = ('klou', 0.005676194903306374) +zone = ('inz092', 0.0015363728241388507) + +[fips1801954] +centroid = (0.70117298937920947, -1.5013510546681512) +description = Arcadia town, IN +station = ('ktyq', 0.0039595999513840621) +zone = ('inz039', 0.0018232394380153676) + +[fips1801956898] +centroid = (0.67280082979232703, -1.4946706324232177) +description = Oregon township, IN +station = ('klou', 0.0055169248581118215) +zone = ('inz092', 0.001561448087939648) + +[fips1801957438] +centroid = (0.6716653709408571, -1.4927121112030923) +description = Owen township, IN +station = ('klou', 0.0047726882576303508) +zone = ('kyz031', 0.0018109286271814702) + +[fips1801969696] +centroid = (0.67010895612709875, -1.4968252413848049) +description = Silver Creek township, IN +station = ('klou', 0.0030984094978212706) +zone = ('inz092', 0.0016270264242538208) + +[fips1801977174] +centroid = (0.67140395552549337, -1.4969367504707147) +description = Union township, IN +station = ('klou', 0.004335005179947094) +zone = ('inz092', 0.00084528554889552548) + +[fips1801978128] +centroid = (0.66953757023658078, -1.4954038277886881) +description = Utica township, IN +station = ('klou', 0.0022478218923307814) +zone = ('inz092', 0.0020514296293158252) + +[fips1801980450] +centroid = (0.67316466112819784, -1.493293829442782) +description = Washington township, IN +station = ('klou', 0.0060476594546306911) +zone = ('inz092', 0.0025818135781937495) + +[fips1801985166] +centroid = (0.67090322056309626, -1.4999470245513844) +description = Wood township, IN +station = ('klou', 0.0052026844312870789) +zone = ('inz091', 0.0021538564632866321) + +[fips1802044] +centroid = (0.71974669601247054, -1.5053902003428716) +description = Argos town, IN +station = ('krcr', 0.0032570116472935028) +zone = ('inz014', 0.0015155286238356582) + +[fips18021] +centroid = (0.68755415031931277, -1.5204581862806994) +description = Clay County, IN +station = ('khuf', 0.0028789765530216381) +zone = ('inz052', 2.0094943787010858e-05) + +[fips1802107192] +centroid = (0.69010227866734686, -1.5204910333772219) +description = Brazil township, IN +station = ('khuf', 0.0031055210004683003) +zone = ('inz052', 0.0025683472434432195) + +[fips1802110666] +centroid = (0.68856178125636658, -1.5180522848134101) +description = Cass township, IN +station = ('khuf', 0.004564420206448018) +zone = ('inz052', 0.0021233176949480201) + +[fips1802116] +centroid = (0.69202924433459623, -1.493737561951809) +description = Arlington CDP, IN +station = ('kgez', 0.0031200965165141216) +zone = ('inz057', 0.001687521902807477) + +[fips1802118118] +centroid = (0.69055274814728662, -1.5213617781410418) +description = Dick Johnson township, IN +station = ('khuf', 0.0028479210607344806) +zone = ('inz052', 0.0030983201303388802) + +[fips1802131684] +centroid = (0.68531899441274624, -1.5202572814305024) +description = Harrison township, IN +station = ('khuf', 0.0043054657355982764) +zone = ('inz052', 0.0022204768932380468) + +[fips1802136864] +centroid = (0.68887299091528975, -1.5195302819838767) +description = Jackson township, IN +station = ('khuf', 0.003439529232242413) +zone = ('inz052', 0.0015184462968116429) + +[fips1802143002] +centroid = (0.68456063139946211, -1.5217413698000581) +description = Lewis township, IN +station = ('khuf', 0.0043276162475348549) +zone = ('inz052', 0.0031349752729465333) + +[fips1802158986] +centroid = (0.68728688805095484, -1.5218153717603427) +description = Perry township, IN +station = ('khuf', 0.0020748648497310824) +zone = ('inz052', 0.0010781714998281836) + +[fips1802161290] +centroid = (0.68893460103788506, -1.5216522881950363) +description = Posey township, IN +station = ('khuf', 0.0018290119172790673) +zone = ('inz052', 0.0016772131197115398) + +[fips1802173988] +centroid = (0.68729135609383996, -1.5201982369419074) +description = Sugar Ridge township, IN +station = ('khuf', 0.0031624860878374807) +zone = ('inz052', 0.0003147561149411572) + +[fips1802178416] +centroid = (0.69049862548718233, -1.5194864393130665) +description = Van Buren township, IN +station = ('khuf', 0.0039745802815426244) +zone = ('inz052', 0.0030578565189421742) + +[fips1802180468] +centroid = (0.68740544826704275, -1.5184251744080988) +description = Washington township, IN +station = ('khuf', 0.0044243551555710019) +zone = ('inz052', 0.0015759791793122364) + +[fips18023] +centroid = (0.7034714309244533, -1.5093182732639951) +description = Clinton County, IN +station = ('ktyq', 0.0056926905831931086) +zone = ('inz030', 8.0493638419490738e-05) + +[fips1802311260] +centroid = (0.70299898774923097, -1.5096583506687462) +description = Center township, IN +station = ('ktyq', 0.0054523901817749056) +zone = ('inz030', 0.00049328646137139509) + +[fips1802323944] +centroid = (0.70479137107785916, -1.5062993074436504) +description = Forest township, IN +station = ('kokk', 0.0041230242483532393) +zone = ('inz030', 0.0026634897330024315) + +[fips1802336882] +centroid = (0.70192307953183908, -1.5098206313825966) +description = Jackson township, IN +station = ('ktyq', 0.0047310527287297019) +zone = ('inz030', 0.0015315459031592278) + +[fips1802338628] +centroid = (0.70345882964725392, -1.5062126169397041) +description = Johnson township, IN +station = ('ktyq', 0.0048489140808983021) +zone = ('inz030', 0.0023377666079746878) + +[fips1802339960] +centroid = (0.7019814782486109, -1.5074971967224642) +description = Kirklin township, IN +station = ('ktyq', 0.0037105114294994097) +zone = ('inz030', 0.001961960881215767) + +[fips1802345918] +centroid = (0.70412153116423626, -1.5123880805254504) +description = Madison township, IN +station = ('klaf', 0.0041459769080456066) +zone = ('inz030', 0.0024800471231712085) + +[fips1802348762] +centroid = (0.70359602997975323, -1.5080720558181937) +description = Michigan township, IN +station = ('ktyq', 0.0053617395541522058) +zone = ('inz030', 0.0009400755261899323) + +[fips1802357456] +centroid = (0.70502573388981693, -1.5099843083598488) +description = Owen township, IN +station = ('kggp', 0.0058368924568058186) +zone = ('inz030', 0.0017152890825553107) + +[fips1802359004] +centroid = (0.70187969064663458, -1.5120590510548644) +description = Perry township, IN +station = ('klaf', 0.0054806411718830569) +zone = ('inz030', 0.002609782760224832) + +[fips1802366078] +centroid = (0.70507863481944477, -1.5117748067328844) +description = Ross township, IN +station = ('klaf', 0.004420029179694863) +zone = ('inz030', 0.0025397749079858279) + +[fips1802373862] +centroid = (0.70208474938045129, -1.5058794510387907) +description = Sugar Creek township, IN +station = ('ktyq', 0.0034535765978681797) +zone = ('inz038', 0.0033862749664324821) + +[fips1802377192] +centroid = (0.70375621629850127, -1.510102240257406) +description = Union township, IN +station = ('ktyq', 0.0062628344502106831) +zone = ('inz030', 0.00072443084031022188) + +[fips1802380090] +centroid = (0.70503133639671578, -1.5081824129867973) +description = Warren township, IN +station = ('kggp', 0.0055396939494924006) +zone = ('inz030', 0.0018345935505685712) + +[fips1802380486] +centroid = (0.70324424141572128, -1.5118794217682492) +description = Washington township, IN +station = ('klaf', 0.0048402786585189312) +zone = ('inz030', 0.0019907899550486098) + +[fips1802458] +centroid = (0.72466672681396505, -1.4846192638076898) +description = Ashley town, IN +station = ('kgwb', 0.0038470261613954837) +zone = ('inz009', 0.0022968203508730309) + +[fips18025] +centroid = (0.66827667457176998, -1.5086778072416833) +description = Crawford County, IN +station = ('khnb', 0.0070102714627612818) +zone = ('inz084', 0.00015655487813892924) + +[fips1802506508] +centroid = (0.66594812609692922, -1.5086053760777256) +description = Boone township, IN +station = ('khnb', 0.0072283022348077269) +zone = ('inz084', 0.0023874374487471458) + +[fips1802538394] +centroid = (0.66735163261492048, -1.5071529654340934) +description = Jennings township, IN +station = ('kftk', 0.0079203189882141121) +zone = ('inz084', 0.0016617881737816679) + +[fips1802538646] +centroid = (0.66834734295318321, -1.5118940650806734) +description = Johnson township, IN +station = ('khnb', 0.0045154229968006245) +zone = ('inz084', 0.0023760410690081739) + +[fips1802543218] +centroid = (0.66960415454754441, -1.5073580765277879) +description = Liberty township, IN +station = ('khnb', 0.0082581109444774797) +zone = ('inz084', 0.0017414466781718856) + +[fips1802556142] +centroid = (0.66615938074959058, -1.5077983009250184) +description = Ohio township, IN +station = ('kftk', 0.0074727726223277561) +zone = ('inz084', 0.0023241838258911672) + +[fips1802558284] +centroid = (0.6697081063577931, -1.5114764950571338) +description = Patoka township, IN +station = ('khnb', 0.0052256539060038893) +zone = ('inz084', 0.0024696040538544051) + +[fips1802573016] +centroid = (0.66910582813951491, -1.5088750469004513) +description = Sterling township, IN +station = ('khnb', 0.0069860997894886229) +zone = ('inz084', 0.00077914178948877309) + +[fips1802577210] +centroid = (0.66774672279769431, -1.5100375409020346) +description = Union township, IN +station = ('khnb', 0.0059122316575531816) +zone = ('inz084', 0.0010867748293125173) + +[fips1802583690] +centroid = (0.66898255553444663, -1.5063340220424728) +description = Whiskey Run township, IN +station = ('kftk', 0.0088361855344585797) +zone = ('inz084', 0.0020927870156621699) + +[fips1802602] +centroid = (0.70185762968488929, -1.5014465765381129) +description = Atlanta town, IN +station = ('ktyq', 0.0043758661487209574) +zone = ('inz038', 0.0017420512686535778) + +[fips1802620] +centroid = (0.7031524545503588, -1.5227123139162351) +description = Attica city, IN +station = ('klaf', 0.0045236634702926362) +zone = ('inz028', 0.0017737717368649401) + +[fips1802674] +centroid = (0.72198556947034387, -1.4844787822561969) +description = Auburn city, IN +station = ('kgwb', 0.00118246748548906) +zone = ('inz009', 0.0009023375255863518) + +[fips18027] +centroid = (0.67537531261206629, -1.5197801433195921) +description = Daviess County, IN +station = ('khnb', 0.0079778591799518125) +zone = ('inz068', 0.00012772255799375193) + +[fips1802703484] +centroid = (0.67491948497132292, -1.5185845578753909) +description = Barr township, IN +station = ('khnb', 0.007374491357667429) +zone = ('inz068', 0.0010344670712658958) + +[fips1802706274] +centroid = (0.67680180511630639, -1.5196588080299935) +description = Bogard township, IN +station = ('klwv', 0.0072140294006993247) +zone = ('inz068', 0.0013177962813026637) + +[fips1802720962] +centroid = (0.6781204188194806, -1.5196864714986373) +description = Elmore township, IN +station = ('kbmg', 0.0080540982466581288) +zone = ('inz068', 0.0026361184521945936) + +[fips1802731702] +centroid = (0.67301019948939633, -1.5199343082524206) +description = Harrison township, IN +station = ('khnb', 0.0057311640543784761) +zone = ('inz068', 0.0024811714012168713) + +[fips1802745936] +centroid = (0.67823245150416611, -1.5178556036600028) +description = Madison township, IN +station = ('kbmg', 0.0069414803126615233) +zone = ('inz061', 0.003080177670520625) + +[fips1802763702] +centroid = (0.67303788041133294, -1.5180103096448998) +description = Reeve township, IN +station = ('khnb', 0.0054606637374292567) +zone = ('inz068', 0.0027778747696469825) + +[fips1802772890] +centroid = (0.67688839090049779, -1.5215875015732023) +description = Steele township, IN +station = ('klwv', 0.0057144717937072358) +zone = ('inz068', 0.0020373171612548314) + +[fips1802778434] +centroid = (0.67662776088329757, -1.5179141420031148) +description = Van Buren township, IN +station = ('kbmg', 0.008214321996876597) +zone = ('inz068', 0.0017991280515223362) + +[fips1802778722] +centroid = (0.67333702984512478, -1.5215788970999899) +description = Veale township, IN +station = ('khnb', 0.006553120801414852) +zone = ('inz068', 0.0026031517785026419) + +[fips1802780522] +centroid = (0.6749266408212562, -1.521504144648127) +description = Washington township, IN +station = ('klwv', 0.0060161532565099155) +zone = ('inz068', 0.0015184251342598343) + +[fips1802782] +centroid = (0.68181784647995303, -1.4818311701407989) +description = Aurora city, IN +station = ('kcvg', 0.0032096141881384106) +zone = ('inz074', 0.0016927129588686944) + +[fips1802800] +centroid = (0.67616961195464897, -1.4977017457351562) +description = Austin city, IN +station = ('klou', 0.009091472475713536) +zone = ('inz078', 0.0013222565723373897) + +[fips1802872] +centroid = (0.72193964985772385, -1.487620654162467) +description = Avilla town, IN +station = ('kgwb', 0.0024274868725851456) +zone = ('inz009', 0.0031362357499693737) + +[fips1802890] +centroid = (0.67923320584396707, -1.5106809390774898) +description = Avoca CDP, IN +station = ('kbmg', 0.0041465693262122266) +zone = ('inz070', 0.0016500643853976091) + +[fips18029] +centroid = (0.68332242501492724, -1.4830666538117008) +description = Dearborn County, IN +station = ('kcvg', 0.0045171334646561144) +zone = ('inz074', 0.00010807503426038259) + +[fips1802908] +centroid = (0.69403504652415815, -1.5076613100320295) +description = Avon town, IN +station = ('kind', 0.0015797885253820653) +zone = ('inz046', 0.0017103110134801148) + +[fips1802909730] +centroid = (0.6801113333505231, -1.485207876097925) +description = Caesar Creek township, IN +station = ('kcvg', 0.0059998860885542528) +zone = ('inz075', 0.0018055759054134541) + +[fips1802911278] +centroid = (0.68163729216883429, -1.4819367974671298) +description = Center township, IN +station = ('kcvg', 0.0032819021858857267) +zone = ('inz074', 0.0018033845940804134) + +[fips1802913024] +centroid = (0.6808974994587913, -1.4845705342149742) +description = Clay township, IN +station = ('kcvg', 0.0053675822794199968) +zone = ('inz075', 0.00168413857560029) + +[fips1802931720] +centroid = (0.68516660971575449, -1.4808312361057465) +description = Harrison township, IN +station = ('kcvg', 0.0043499948735395595) +zone = ('inz074', 0.0026085591839253653) + +[fips1802934222] +centroid = (0.68194665177875025, -1.4829283888283578) +description = Hogan township, IN +station = ('kcvg', 0.0040695711269432252) +zone = ('inz074', 0.0012720706973529986) + +[fips1802936900] +centroid = (0.68516097230227069, -1.4843791588624931) +description = Jackson township, IN +station = ('kcvg', 0.0063055851190947322) +zone = ('inz074', 0.0021973070889602657) + +[fips1802939330] +centroid = (0.68525736683685823, -1.4831529603432119) +description = Kelso township, IN +station = ('kcvg', 0.0056157317904817561) +zone = ('inz074', 0.0020441614776358485) + +[fips1802942480] +centroid = (0.6828106944782425, -1.4813520249012491) +description = Lawrenceburg township, IN +station = ('kcvg', 0.0030933808982684437) +zone = ('inz074', 0.0013878341976272487) + +[fips1802944604] +centroid = (0.68530185527949161, -1.4817341821942658) +description = Logan township, IN +station = ('kcvg', 0.0048780222409054285) +zone = ('inz074', 0.0023279203441343085) + +[fips1802946368] +centroid = (0.68326416592449568, -1.4837238051816617) +description = Manchester township, IN +station = ('kcvg', 0.0049699919840953408) +zone = ('inz074', 0.0005142240432286009) + +[fips1802949464] +centroid = (0.68386925412286959, -1.4812735548980793) +description = Miller township, IN +station = ('kcvg', 0.0036068385977851419) +zone = ('inz074', 0.0015348242264883517) + +[fips1802971738] +centroid = (0.68208481204233806, -1.4845064980847187) +description = Sparta township, IN +station = ('kcvg', 0.0053022909097020796) +zone = ('inz074', 0.0015902337916684933) + +[fips1802980540] +centroid = (0.68094802674063659, -1.4829346894669575) +description = Washington township, IN +station = ('kcvg', 0.0041014107969793833) +zone = ('inz075', 0.0011406029732341318) + +[fips1802985958] +centroid = (0.68401004983362801, -1.4828955068252503) +description = York township, IN +station = ('kcvg', 0.0047136150272925606) +zone = ('inz074', 0.00080631283582779912) + +[fips18031] +centroid = (0.68601876672304074, -1.492253560848716) +description = Decatur County, IN +station = ('kbak', 0.0054491293861372156) +zone = ('inz065', 2.5522487741461521e-05) + +[fips1803100370] +centroid = (0.68792564365059972, -1.4933716536741284) +description = Adams township, IN +station = ('kgez', 0.0043264818711246968) +zone = ('inz065', 0.0020709001548914192) + +[fips1803113042] +centroid = (0.68613844394985002, -1.4943287049694596) +description = Clay township, IN +station = ('kbak', 0.0038839446409285952) +zone = ('inz065', 0.0015891477083271679) + +[fips1803113708] +centroid = (0.68800996050676355, -1.4916193605584187) +description = Clinton township, IN +station = ('kgez', 0.0053531776281230464) +zone = ('inz065', 0.0020399545595862476) + +[fips1803126098] +centroid = (0.68771334180038712, -1.4896664942050697) +description = Fugit township, IN +station = ('kbak', 0.0077763666782038167) +zone = ('inz065', 0.0026265449399970448) + +[fips1803136918] +centroid = (0.68413574844635661, -1.4947187686039878) +description = Jackson township, IN +station = ('kbak', 0.0036993680394158011) +zone = ('inz065', 0.0026786649592758301) + +[fips1803142] +centroid = (0.69396734520247338, -1.5151423148048526) +description = Bainbridge town, IN +station = ('khuf', 0.0087020612186502217) +zone = ('inz045', 0.0017205119717642282) + +[fips1803146872] +centroid = (0.68478148536300953, -1.4915275911463488) +description = Marion township, IN +station = ('kbak', 0.00599605220403904) +zone = ('inz065', 0.0013818194062160196) + +[fips1803167536] +centroid = (0.68603691814726153, -1.4894807562660723) +description = Saltcreek township, IN +station = ('kbak', 0.0075845914951201479) +zone = ('inz065', 0.0021653334825974453) + +[fips1803167734] +centroid = (0.68428956431333487, -1.493179562736654) +description = Sandcreek township, IN +station = ('kbak', 0.0048068877504461489) +zone = ('inz065', 0.0018793537071515769) + +[fips1803180558] +centroid = (0.68656430428733672, -1.4917801228358201) +description = Washington township, IN +station = ('kbak', 0.0059008799304325829) +zone = ('inz065', 0.00065529418796477596) + +[fips18033] +centroid = (0.72258706229045866, -1.4835330930542963) +description = DeKalb County, IN +station = ('kgwb', 0.0019889015203992497) +zone = ('inz009', 6.4230293361197856e-05) + +[fips1803309550] +centroid = (0.72085941322378699, -1.4856878067356385) +description = Butler township, IN +station = ('kgwb', 0.00070437990278221247) +zone = ('inz009', 0.0023312687867111164) + +[fips1803314824] +centroid = (0.72146291317254152, -1.4819687544457338) +description = Concord township, IN +station = ('kgwb', 0.0021864170096407231) +zone = ('inz009', 0.0015722455363603866) + +[fips1803322288] +centroid = (0.72413143433237837, -1.4859906562674443) +description = Fairfield township, IN +station = ('kgwb', 0.0034384709632750525) +zone = ('inz009', 0.0024553438111941661) + +[fips1803325342] +centroid = (0.72394552186045591, -1.4818844201362773) +description = Franklin township, IN +station = ('kgwb', 0.0037933813284169345) +zone = ('inz009', 0.0018740932167003823) + +[fips1803328836] +centroid = (0.72291073360024094, -1.4838803612155655) +description = Grant township, IN +station = ('kgwb', 0.0021896765405134992) +zone = ('inz009', 0.00047399706283388912) + +[fips1803336936] +centroid = (0.720955179439844, -1.4838326090072311) +description = Jackson township, IN +station = ('kgwb', 0.00070328265026968278) +zone = ('inz009', 0.0015873461796456689) + +[fips1803339636] +centroid = (0.72172197239341507, -1.4859736742138228) +description = Keyser township, IN +station = ('kgwb', 0.0012860924567931436) +zone = ('inz009', 0.0020125314772617879) + +[fips1803353784] +centroid = (0.72099853341846343, -1.4803018777436165) +description = Newville township, IN +station = ('kgwb', 0.0033473630060695692) +zone = ('inz009', 0.0028535200160422856) + +[fips1803364008] +centroid = (0.72268029777910026, -1.4858865299242703) +description = Richland township, IN +station = ('kgwb', 0.0020452038145597497) +zone = ('inz009', 0.0017863009776836029) + +[fips1803370200] +centroid = (0.72402566737970753, -1.4839682734499886) +description = Smithfield township, IN +station = ('kgwb', 0.0032581203448557037) +zone = ('inz009', 0.0015393588972481608) + +[fips1803371918] +centroid = (0.7206567630443379, -1.481921595649345) +description = Spencer township, IN +station = ('kgwb', 0.0021325620120310712) +zone = ('inz009', 0.0022175814870644818) + +[fips1803372512] +centroid = (0.72257983662735548, -1.4805167103212447) +description = Stafford township, IN +station = ('kgwb', 0.003633175466181734) +zone = ('inz009', 0.0022491278523339752) + +[fips1803376598] +centroid = (0.72398985322345655, -1.4805660682324908) +description = Troy township, IN +station = ('kgwb', 0.0044611279329698633) +zone = ('inz009', 0.0026517516117774659) + +[fips1803377228] +centroid = (0.72226298955494839, -1.4837585023271913) +description = Union township, IN +station = ('kgwb', 0.0016233638831027544) +zone = ('inz009', 0.00031929827222246736) + +[fips1803384590] +centroid = (0.72255440718015385, -1.4819183144303512) +description = Wilmington township, IN +station = ('kgwb', 0.0027438205005927826) +zone = ('inz009', 0.0011974624005840738) + +[fips1803394] +centroid = (0.69016282413909846, -1.503801828550509) +description = Bargersville town, IN +station = ('kind', 0.0034388050587194252) +zone = ('inz055', 0.0012331583061976326) + +[fips18035] +centroid = (0.70209647799302477, -1.4904912146365146) +description = Delaware County, IN +station = ('kmie', 0.00010873156167448242) +zone = ('inz041', 2.7147662435227416e-05) + +[fips1803511296] +centroid = (0.70147454736736903, -1.490266957280926) +description = Center township, IN +station = ('kmie', 0.00075304883415999019) +zone = ('inz041', 0.00064604915854451074) + +[fips1803517470] +centroid = (0.70287381273527805, -1.4882911223946207) +description = Delaware township, IN +station = ('kmie', 0.0018218988017996813) +zone = ('inz041', 0.0018235560972128123) + +[fips1803530600] +centroid = (0.70284323456678299, -1.4903179208950841) +description = Hamilton township, IN +station = ('kmie', 0.00065589883297829076) +zone = ('inz041', 0.00074675596941860614) + +[fips1803531756] +centroid = (0.70275944130939472, -1.4923541965333857) +description = Harrison township, IN +station = ('kmie', 0.0015123062039379281) +zone = ('inz041', 0.0015894266930488587) + +[fips1803543236] +centroid = (0.70148830056187472, -1.4882846646763883) +description = Liberty township, IN +station = ('kmie', 0.0018448253125213118) +zone = ('inz041', 0.0017696242164091801) + +[fips1803550292] +centroid = (0.70012336582035262, -1.4902964707985771) +description = Monroe township, IN +station = ('kmie', 0.0020872274744567132) +zone = ('inz041', 0.0019845025813123138) + +[fips1803551552] +centroid = (0.70130600092150397, -1.4924028039530539) +description = Mount Pleasant township, IN +station = ('kmie', 0.0017010774592384537) +zone = ('inz041', 0.0016867765801160145) + +[fips1803553928] +centroid = (0.70415762457316755, -1.4881999813010816) +description = Niles township, IN +station = ('kmie', 0.002631375417435417) +zone = ('inz033', 0.002363867815016291) + +[fips1803559022] +centroid = (0.70010725643135674, -1.4881097477787533) +description = Perry township, IN +station = ('kmie', 0.0027863705111744498) +zone = ('inz041', 0.0026841174717063868) + +[fips1803567356] +centroid = (0.69992256568991074, -1.4924175694385258) +description = Salem township, IN +station = ('kaid', 0.0014549815689447868) +zone = ('inz041', 0.0026464173077954231) + +[fips1803577246] +centroid = (0.70404274700180125, -1.4901739137785019) +description = Union township, IN +station = ('kmie', 0.0018565243238387649) +zone = ('inz041', 0.0019506740620961888) + +[fips1803580576] +centroid = (0.70419993135423575, -1.4925346984846273) +description = Washington township, IN +station = ('kmie', 0.0025230054891889229) +zone = ('inz041', 0.0026276046866589497) + +[fips1803610] +centroid = (0.71945665719737406, -1.5113518610952488) +description = Bass Lake CDP, IN +station = ('koxi', 0.002076494041258755) +zone = ('inz012', 0.0012503299852891232) + +[fips1803664] +centroid = (0.68587432327414577, -1.4872554091099022) +description = Batesville city, IN +station = ('kbak', 0.0092906197126439941) +zone = ('inz066', 0.0029066844804232872) + +[fips18037] +centroid = (0.66974119780041097, -1.5162266006026541) +description = Dubois County, IN +station = ('khnb', 0.00239483517836551) +zone = ('inz083', 0.00018061452800385462) + +[fips1803703124] +centroid = (0.66994098563988669, -1.5173100311891221) +description = Bainbridge township, IN +station = ('khnb', 0.0023609561123679478) +zone = ('inz083', 0.00084139110004422793) + +[fips1803706526] +centroid = (0.6714131010507739, -1.5186520672108581) +description = Boone township, IN +station = ('khnb', 0.0039187058878708096) +zone = ('inz083', 0.0025755999640559154) + +[fips1803710684] +centroid = (0.66754222256923823, -1.5186198309795738) +description = Cass township, IN +station = ('khnb', 0.0008306329191892528) +zone = ('inz083', 0.0027149223507625243) + +[fips1803714608] +centroid = (0.67164912192552106, -1.51381214702203) +description = Columbia township, IN +station = ('khnb', 0.0050141347174061726) +zone = ('inz083', 0.0028609452665858837) + +[fips1803718] +centroid = (0.70698013613290756, -1.5158542695133261) +description = Battle Ground town, IN +station = ('klaf', 0.0020435825075737824) +zone = ('inz029', 0.0021402354755697809) + +[fips1803723008] +centroid = (0.6674518668738626, -1.5158624027476404) +description = Ferdinand township, IN +station = ('khnb', 0.0013431571907072347) +zone = ('inz083', 0.0021639882531698526) + +[fips1803730456] +centroid = (0.67014623635992132, -1.5138478390052335) +description = Hall township, IN +station = ('khnb', 0.0038782723203076631) +zone = ('inz083', 0.002032010904238248) + +[fips1803731324] +centroid = (0.67150279352103392, -1.5160140893129312) +description = Harbison township, IN +station = ('khnb', 0.0040986202398533905) +zone = ('inz083', 0.0019362051896284797) + +[fips1803736954] +centroid = (0.66869115536253354, -1.5155893110795808) +description = Jackson township, IN +station = ('khnb', 0.001902160302494828) +zone = ('inz083', 0.0010683543844320212) + +[fips1803737926] +centroid = (0.66853543708667074, -1.5134467448898328) +description = Jefferson township, IN +station = ('khnb', 0.0033678557118000463) +zone = ('inz083', 0.0024987132752952645) + +[fips1803745954] +centroid = (0.6698168403701924, -1.5190109069050681) +description = Madison township, IN +station = ('khnb', 0.0025010037742630819) +zone = ('inz083', 0.0021081083869861805) + +[fips1803746890] +centroid = (0.6701481038622209, -1.5156699627443155) +description = Marion township, IN +station = ('khnb', 0.0029596165297093432) +zone = ('inz083', 0.00077048548318660673) + +[fips1803758302] +centroid = (0.66850827976350968, -1.5181052381029156) +description = Patoka township, IN +station = ('khnb', 0.0010133024352427234) +zone = ('inz083', 0.001753918070737578) + +[fips18039] +centroid = (0.7260690639613574, -1.4986092645863158) +description = Elkhart County, IN +station = ('kgsh', 0.0015783961060641183) +zone = ('inz005', 8.9794465386524837e-05) + +[fips1803903754] +centroid = (0.72678215313384475, -1.501482495414119) +description = Baugo township, IN +station = ('kekm', 0.0013630469220649324) +zone = ('inz005', 0.0023470169168659902) + +[fips1803904798] +centroid = (0.72390485568888441, -1.4960159671172402) +description = Benton township, IN +station = ('kgsh', 0.0013287823462666071) +zone = ('inz005', 0.0028183449301177905) + +[fips1803913528] +centroid = (0.72815372012652446, -1.5014989538689654) +description = Cleveland township, IN +station = ('kekm', 0.00038973342386478042) +zone = ('inz005', 0.0030906447055486989) + +[fips1803913726] +centroid = (0.72535100060050184, -1.496141508650336) +description = Clinton township, IN +station = ('kgsh', 0.0009158963416229731) +zone = ('inz005', 0.0018957989766585088) + +[fips1803914842] +centroid = (0.72696935714941369, -1.4999916526203578) +description = Concord township, IN +station = ('kekm', 0.0013458427853643594) +zone = ('inz005', 0.0014602777196659577) + +[fips1803920746] +centroid = (0.72546120068947284, -1.4980502879867796) +description = Elkhart township, IN +station = ('kgsh', 0.00085192494611066344) +zone = ('inz005', 0.00065177206946949798) + +[fips1803931774] +centroid = (0.7253315401793422, -1.4998417113843192) +description = Harrison township, IN +station = ('kgsh', 0.0020239074251400266) +zone = ('inz005', 0.0012018532353520847) + +[fips1803936972] +centroid = (0.7239796605006249, -1.49797188779678) +description = Jackson township, IN +station = ('kgsh', 0.0010805987432616017) +zone = ('inz005', 0.0020724914557337399) + +[fips1803937944] +centroid = (0.72695829176195603, -1.4980124317953039) +description = Jefferson township, IN +station = ('kgsh', 0.0021520767513896503) +zone = ('inz005', 0.0010190710737033478) + +[fips1803944514] +centroid = (0.72393799949137982, -1.5015160755489274) +description = Locke township, IN +station = ('kekm', 0.0041742547818687603) +zone = ('inz005', 0.0030559989620664186) + +[fips1803948942] +centroid = (0.7268419830206031, -1.4961362203027024) +description = Middlebury township, IN +station = ('kgsh', 0.0021051962362752101) +zone = ('inz005', 0.0019639516390268486) + +[fips1803956520] +centroid = (0.72557323337415836, -1.5015432677786735) +description = Olive township, IN +station = ('kekm', 0.0025544776098632453) +zone = ('inz005', 0.0023056184115111144) + +[fips1803957150] +centroid = (0.72828261269178418, -1.50013136622698) +description = Osolo township, IN +station = ('kekm', 0.00066338080197806694) +zone = ('inz005', 0.0025713979738100469) + +[fips1803977264] +centroid = (0.72388696606405145, -1.4998343111882906) +description = Union township, IN +station = ('kgsh', 0.0022136625757559533) +zone = ('inz005', 0.0023422881272397739) + +[fips1803980594] +centroid = (0.72827786539621886, -1.4980330964936475) +description = Washington township, IN +station = ('kekm', 0.0022096062769372884) +zone = ('inz005', 0.0022949286486427453) + +[fips1803985976] +centroid = (0.72830624444985625, -1.4961328343639537) +description = York township, IN +station = ('kgsh', 0.0035050743467615495) +zone = ('inz005', 0.0029048013218762113) + +[fips18041] +centroid = (0.69184249410463283, -1.4867592818167303) +description = Fayette County, IN +station = ('kgez', 0.0083269209303126965) +zone = ('inz058', 8.5457308530319259e-05) + +[fips1804114] +centroid = (0.67823911866190878, -1.5095268575629011) +description = Bedford city, IN +station = ('kbmg', 0.0053432160933638258) +zone = ('inz070', 0.00034254054339211251) + +[fips1804114644] +centroid = (0.69050347750250285, -1.4868387815641586) +description = Columbia township, IN +station = ('kgez', 0.0082197108911632386) +zone = ('inz058', 0.0013547175886809459) + +[fips1804114950] +centroid = (0.6915740624656761, -1.4864868882803717) +description = Connersville township, IN +station = ('khao', 0.0098744716673560048) +zone = ('inz058', 0.00030303246513023674) + +[fips1804122522] +centroid = (0.6924008074790533, -1.4882782069581557) +description = Fairview township, IN +station = ('kgez', 0.0072623457506058222) +zone = ('inz058', 0.0013699815783106872) + +[fips1804131792] +centroid = (0.69253394119439537, -1.4865217250522413) +description = Harrison township, IN +station = ('kaid', 0.0096860872624300459) +zone = ('inz058', 0.0006906405605333996) + +[fips1804136990] +centroid = (0.69043495587606951, -1.4854357811916503) +description = Jackson township, IN +station = ('khao', 0.0086611676816435029) +zone = ('inz058', 0.001696059326886015) + +[fips1804138412] +centroid = (0.69127414508701335, -1.484650749547396) +description = Jennings township, IN +station = ('kmwo', 0.0090372079649872639) +zone = ('inz059', 0.0018978658278450359) + +[fips1804156736] +centroid = (0.69070846642314954, -1.4883679168817083) +description = Orange township, IN +station = ('kgez', 0.0070343529365555031) +zone = ('inz058', 0.0017487014464488979) + +[fips1804161308] +centroid = (0.69380968961114065, -1.4875920656693193) +description = Posey township, IN +station = ('kgez', 0.0081720244966024726) +zone = ('inz058', 0.0020895369822667145) + +[fips1804181314] +centroid = (0.69269290578266718, -1.4851313783168101) +description = Waterloo township, IN +station = ('kmwo', 0.0097035721541832119) +zone = ('inz058', 0.0014403016519100957) + +[fips1804204] +centroid = (0.69316348145558981, -1.5025009299392427) +description = Beech Grove city, IN +station = ('kind', 0.0026364725673968577) +zone = ('inz047', 0.0013467577207334162) + +[fips18043] +centroid = (0.66877416322175842, -1.4994380865415029) +description = Floyd County, IN +station = ('ksdf', 0.003388317978046492) +zone = ('inz091', 6.8908457191231323e-05) + +[fips1804325360] +centroid = (0.66711503578152009, -1.4994085730238518) +description = Franklin township, IN +station = ('ksdf', 0.0025165282319939541) +zone = ('inz091', 0.0016851573901520286) + +[fips1804327342] +centroid = (0.66846375641429123, -1.500067382456602) +description = Georgetown township, IN +station = ('ksdf', 0.003574660853302812) +zone = ('inz091', 0.00065115136664821731) + +[fips1804329862] +centroid = (0.66971774057526412, -1.5005363349733205) +description = Greenville township, IN +station = ('ksdf', 0.0046638875569643568) +zone = ('inz091', 0.0013034613769019336) + +[fips1804340734] +centroid = (0.66950798690575952, -1.4988900531563765) +description = Lafayette township, IN +station = ('ksdf', 0.0036808072766622867) +zone = ('inz091', 0.00079720158555841706) + +[fips1804352344] +centroid = (0.66868457547125359, -1.4980129379407869) +description = New Albany township, IN +station = ('ksdf', 0.0026182452516793991) +zone = ('inz091', 0.0010604367807049617) + +[fips18045] +centroid = (0.70024847102113563, -1.5225345870385045) +description = Fountain County, IN +station = ('kdnv', 0.0050015109728533142) +zone = ('inz035', 9.4912810278966308e-05) + +[fips1804509748] +centroid = (0.69957920706616583, -1.5210884072203019) +description = Cain township, IN +station = ('klaf', 0.0064158994146834144) +zone = ('inz035', 0.0013715559152388682) + +[fips1804516912] +centroid = (0.70340722026127245, -1.5205040011735642) +description = Davis township, IN +station = ('klaf', 0.0030010492713429936) +zone = ('inz035', 0.0035674458999883224) + +[fips1804526134] +centroid = (0.69790746089543565, -1.5249061753326996) +description = Fulton township, IN +station = ('kdnv', 0.0047689298828249693) +zone = ('inz043', 0.0026414046141306127) + +[fips1804537008] +centroid = (0.69810436894164563, -1.5210313524070544) +description = Jackson township, IN +station = ('klaf', 0.0077650632601194468) +zone = ('inz035', 0.002473742483337457) + +[fips1804544622] +centroid = (0.70316379919049676, -1.5221107163763652) +description = Logan township, IN +station = ('klaf', 0.0041261370548625583) +zone = ('inz028', 0.002157690036267789) + +[fips1804549392] +centroid = (0.69819409631849061, -1.5228321656759696) +description = Millcreek township, IN +station = ('kdnv', 0.0057219000324464772) +zone = ('inz035', 0.0020520215856622299) + +[fips1804564026] +centroid = (0.70146538438879613, -1.5209987671099197) +description = Richland township, IN +station = ('klaf', 0.0047301421531528538) +zone = ('inz035', 0.0017624132435497541) + +[fips1804569084] +centroid = (0.70183450407230041, -1.5230025621708416) +description = Shawnee township, IN +station = ('klaf', 0.0054716524668830509) +zone = ('inz035', 0.0016142683576374328) + +[fips1804576616] +centroid = (0.70089373669889043, -1.5245581741331442) +description = Troy township, IN +station = ('kdnv', 0.0033426993088645643) +zone = ('inz035', 0.0015919432998177726) + +[fips1804578452] +centroid = (0.7004023741545764, -1.5228838797817061) +description = Van Buren township, IN +station = ('kdnv', 0.0047030280280119918) +zone = ('inz035', 0.00023560077156794572) + +[fips1804579280] +centroid = (0.6991578671314419, -1.5246715681746463) +description = Wabash township, IN +station = ('kdnv', 0.0040173935944748237) +zone = ('inz035', 0.0018833383353034142) + +[fips18047] +centroid = (0.68783010432734559, -1.4846986064754857) +description = Franklin County, IN +station = ('khao', 0.0074609716510116372) +zone = ('inz066', 0.00012572359176318343) + +[fips1804703700] +centroid = (0.6894383379665957, -1.4813905268645482) +description = Bath township, IN +station = ('khao', 0.0054056226060220378) +zone = ('inz059', 0.0022504628289929367) + +[fips1804705824] +centroid = (0.68941362410438745, -1.4849368613716754) +description = Blooming Grove township, IN +station = ('khao', 0.0079528623202264198) +zone = ('inz066', 0.0015204382205641642) + +[fips1804708200] +centroid = (0.68803189929546105, -1.4836554929947388) +description = Brookville township, IN +station = ('kcvg', 0.0079493844694825174) +zone = ('inz066', 0.00072498524683017017) + +[fips1804709568] +centroid = (0.6869033868544141, -1.4859105631080705) +description = Butler township, IN +station = ('kcvg', 0.0083071150422729043) +zone = ('inz066', 0.0014434080081804203) + +[fips1804722306] +centroid = (0.68941180896196541, -1.4830896223446572) +description = Fairfield township, IN +station = ('kmwo', 0.0077562658576040087) +zone = ('inz066', 0.0018866875820747267) + +[fips1804733448] +centroid = (0.68661275462737204, -1.4834907688199355) +description = Highland township, IN +station = ('khao', 0.0065093573967635911) +zone = ('inz066', 0.0015542333498069984) + +[fips1804742390] +centroid = (0.68907476843011284, -1.4865213236265133) +description = Laurel township, IN +station = ('kcvg', 0.010154876578900043) +zone = ('inz066', 0.0018920890719113803) + +[fips1804748564] +centroid = (0.68822632897413338, -1.4857477238888592) +description = Metamora township, IN +station = ('khao', 0.0083121527922557295) +zone = ('inz066', 0.00095158368671527643) + +[fips1804761326] +centroid = (0.6890035066367538, -1.4882179930989621) +description = Posey township, IN +station = ('kgez', 0.0073901707909915506) +zone = ('inz066', 0.0030101028263224239) + +[fips1804763126] +centroid = (0.68644584879100379, -1.4874474476874993) +description = Ray township, IN +station = ('kbak', 0.0091916972465515279) +zone = ('inz066', 0.0026595032654484815) + +[fips1804767554] +centroid = (0.68778905418333858, -1.4873903928742513) +description = Salt Creek township, IN +station = ('kbak', 0.0094866857126837088) +zone = ('inz066', 0.0021733941227138763) + +[fips1804772134] +centroid = (0.68818198015784016, -1.4812855104034557) +description = Springfield township, IN +station = ('khao', 0.0049101477587382694) +zone = ('inz066', 0.0025603622423644589) + +[fips1804784068] +centroid = (0.68690743601827864, -1.4813867918599488) +description = Whitewater township, IN +station = ('khao', 0.0048682165125695162) +zone = ('inz066', 0.0026685381750821999) + +[fips1804888] +centroid = (0.70960324382560747, -1.4827532799445053) +description = Berne city, IN +station = ('kfwa', 0.0067975683430221995) +zone = ('inz027', 0.0015600714308198825) + +[fips18049] +centroid = (0.71646436000799996, -1.5056083839526635) +description = Fulton County, IN +station = ('krcr', 0.0011312934273335245) +zone = ('inz015', 6.1893448866135435e-05) + +[fips1804902656] +centroid = (0.71787001328097111, -1.5080988640755044) +description = Aubbeenaubbee township, IN +station = ('krcr', 0.0032406707329402425) +zone = ('inz015', 0.0023955122490392964) + +[fips1804933106] +centroid = (0.71594709677758639, -1.5018591898265767) +description = Henry township, IN +station = ('krcr', 0.0018410111704383282) +zone = ('inz015', 0.0028467044070971067) + +[fips1804943254] +centroid = (0.71483588054942659, -1.5052240100914966) +description = Liberty township, IN +station = ('krcr', 0.0019785917808720853) +zone = ('inz015', 0.0015927389307052932) + +[fips1804952722] +centroid = (0.71799461233627104, -1.5031690070703212) +description = Newcastle township, IN +station = ('krcr', 0.0015410753392218624) +zone = ('inz015', 0.0024162158199660844) + +[fips1804964044] +centroid = (0.71798970796107286, -1.5056929626082152) +description = Richland township, IN +station = ('krcr', 0.0017998409863213027) +zone = ('inz015', 0.0015865426591886369) + +[fips1804965232] +centroid = (0.71651293252108295, -1.5051827679612724) +description = Rochester township, IN +station = ('krcr', 0.0008066751104730918) +zone = ('inz015', 0.00032104676181050662) + +[fips1804977282] +centroid = (0.7164144784979779, -1.5079245929496927) +description = Union township, IN +station = ('krcr', 0.0028736959745107112) +zone = ('inz015', 0.0017653415174040145) + +[fips1804978] +centroid = (0.68999501073151936, -1.5075961568910523) +description = Bethany town, IN +station = ('kind', 0.0034404397374047007) +zone = ('inz054', 0.0012863330925047363) + +[fips1804981692] +centroid = (0.71477055287552449, -1.5078701735836155) +description = Wayne township, IN +station = ('krcr', 0.0033844265743632248) +zone = ('inz015', 0.0023769252778060119) + +[fips18051] +centroid = (0.668765017696478, -1.5285692374602002) +description = Gibson County, IN +station = ('kevv', 0.0050002978054579624) +zone = ('inz081', 0.00011246740433667477) + +[fips1805103556] +centroid = (0.66754861047430047, -1.5252563232872345) +description = Barton township, IN +station = ('kevv', 0.00422270396385112) +zone = ('inz081', 0.0028817813064314119) + +[fips1805111314] +centroid = (0.66920965777671604, -1.5263718504786468) +description = Center township, IN +station = ('kevv', 0.0055094905053775078) +zone = ('inz081', 0.0018599469142590885) + +[fips1805114662] +centroid = (0.66907908969537444, -1.5247487815407548) +description = Columbia township, IN +station = ('kevv', 0.0057742592918926406) +zone = ('inz082', 0.002088788981213742) + +[fips1805138682] +centroid = (0.66648854984651684, -1.5284698933191765) +description = Johnson township, IN +station = ('kevv', 0.0027416633823939694) +zone = ('inz081', 0.0021825775032230424) + +[fips1805150706] +centroid = (0.66832994202054086, -1.5311856430885722) +description = Montgomery township, IN +station = ('kevv', 0.0052703657706690285) +zone = ('inz081', 0.0020262206346674224) + +[fips1805158] +centroid = (0.72764780153624886, -1.5180659856480385) +description = Beverly Shores town, IN +station = ('kmgc', 0.0020657017004715879) +zone = ('inz003', 0.0040164573653287301) + +[fips1805158338] +centroid = (0.66932811327304897, -1.5286951106058539) +description = Patoka township, IN +station = ('kajg', 0.0048657871503453741) +zone = ('inz081', 0.00066249126635716785) + +[fips1805176] +centroid = (0.67673923506262235, -1.5238093231642837) +description = Bicknell city, IN +station = ('klwv', 0.0039778000264419364) +zone = ('inz067', 0.0021120389208654508) + +[fips1805177300] +centroid = (0.66758198116959877, -1.5281174589833215) +description = Union township, IN +station = ('kevv', 0.0037864450752136459) +zone = ('inz081', 0.0011599153124216893) + +[fips1805179298] +centroid = (0.66789102662024924, -1.5336726674594943) +description = Wabash township, IN +station = ('kcul', 0.0046273572758510221) +zone = ('ilz078', 0.0031445816477161438) + +[fips1805180612] +centroid = (0.6709610956810923, -1.5268929010735373) +description = Washington township, IN +station = ('kajg', 0.0043635274526208235) +zone = ('inz081', 0.00267165023875686) + +[fips1805183888] +centroid = (0.67087468442982612, -1.5293861737231811) +description = White River township, IN +station = ('kajg', 0.0032320504743399989) +zone = ('inz081', 0.0022838912476415589) + +[fips18053] +centroid = (0.70713337604123272, -1.4949608283179467) +description = Grant County, IN +station = ('kmzz', 0.00055915730570988927) +zone = ('inz032', 2.0712614059463053e-06) + +[fips1805311332] +centroid = (0.70744270074456372, -1.4942734478453414) +description = Center township, IN +station = ('kmzz', 0.0011432456001653514) +zone = ('inz032', 0.00060515347202790893) + +[fips1805322441] +centroid = (0.70545700474798467, -1.4942479660382624) +description = Fairmount township, IN +station = ('kmzz', 0.0015069720799814679) +zone = ('inz032', 0.0017620148719512182) + +[fips1805325378] +centroid = (0.7072580274564102, -1.4962830199460877) +description = Franklin township, IN +station = ('kmzz', 0.00088454672169257912) +zone = ('inz032', 0.0010146448972733833) + +[fips1805329124] +centroid = (0.70561640566856942, -1.4979199293449481) +description = Green township, IN +station = ('kmzz', 0.0021956870765759405) +zone = ('inz032', 0.0027164975309676149) + +[fips1805337962] +centroid = (0.70560195434236284, -1.4922761454092368) +description = Jefferson township, IN +station = ('kmzz', 0.0026101661257855618) +zone = ('inz032', 0.0025515846408366801) + +[fips1805343272] +centroid = (0.70563172965940191, -1.4964302559217859) +description = Liberty township, IN +station = ('kmzz', 0.0013128656559688162) +zone = ('inz032', 0.0018737638748922778) + +[fips1805349374] +centroid = (0.70655987830231992, -1.4942863458285138) +description = Mill township, IN +station = ('kmzz', 0.00085459213618472175) +zone = ('inz032', 0.00076864076410617125) + +[fips1805350310] +centroid = (0.70715227795703184, -1.4926348454771066) +description = Monroe township, IN +station = ('kmzz', 0.0021526815800731697) +zone = ('inz032', 0.0017664169602513349) + +[fips1805360372] +centroid = (0.70873810156868644, -1.4962691969384121) +description = Pleasant township, IN +station = ('kmzz', 0.002158288927751658) +zone = ('inz032', 0.0018880226412771226) + +[fips1805364062] +centroid = (0.70876017998372409, -1.497948954170409) +description = Richland township, IN +station = ('kmzz', 0.0028404412414312894) +zone = ('inz032', 0.0027939455956997017) + +[fips1805369912] +centroid = (0.70725261693572905, -1.497938586914652) +description = Sims township, IN +station = ('kmzz', 0.0020136242496534996) +zone = ('inz032', 0.0022686914411898977) + +[fips1805374] +centroid = (0.66865317699801019, -1.5131501610900413) +description = Birdseye town, IN +station = ('khnb', 0.0036245515274459113) +zone = ('inz083', 0.002668265005510886) + +[fips1805378479] +centroid = (0.70875908042629543, -1.4923130591229166) +description = Van Buren township, IN +station = ('kmzz', 0.0031307807248805285) +zone = ('inz032', 0.0025843575783853104) + +[fips1805380630] +centroid = (0.70886294497008151, -1.494178536840618) +description = Washington township, IN +station = ('kmzz', 0.0023679679851844968) +zone = ('inz032', 0.0018274967259506692) + +[fips18055] +centroid = (0.68152663829425775, -1.518527991754334) +description = Greene County, IN +station = ('kbmg', 0.0055527497364580673) +zone = ('inz061', 0.00062428415248516242) + +[fips1805504186] +centroid = (0.68284231984428867, -1.5141365339168058) +description = Beech Creek township, IN +station = ('kbmg', 0.0019089675840217632) +zone = ('inz053', 0.0034872303977489341) + +[fips1805510702] +centroid = (0.67940410848432242, -1.5184938705674575) +description = Cass township, IN +station = ('kbmg', 0.0065284064312740031) +zone = ('inz061', 0.0019883972683561661) + +[fips1805511350] +centroid = (0.68132751367989774, -1.5141228679887626) +description = Center township, IN +station = ('kbmg', 0.0026980508940894145) +zone = ('inz061', 0.0028354276704822884) + +[fips1805522486] +centroid = (0.68152663829425775, -1.518527991754334) +description = Fairplay township, IN +station = ('kbmg', 0.0055527497364580673) +zone = ('inz061', 0.00062428415248516242) + +[fips1805528854] +centroid = (0.68144101244115496, -1.5199362281145981) +description = Grant township, IN +station = ('krsv', 0.0076593470372214277) +zone = ('inz061', 0.0016849681807813344) + +[fips1805533457] +centroid = (0.68262167532025153, -1.5164819422722209) +description = Highland township, IN +station = ('kbmg', 0.0037351419182871715) +zone = ('inz061', 0.0016493288858789147) + +[fips1805537026] +centroid = (0.67976668318313171, -1.5141460983211068) +description = Jackson township, IN +station = ('kbmg', 0.0039916297732056228) +zone = ('inz061', 0.0032148621923254444) + +[fips1805537980] +centroid = (0.68301999436214167, -1.5181176473938975) +description = Jefferson township, IN +station = ('kbmg', 0.004949446307430376) +zone = ('inz061', 0.0017288275854530826) + +[fips1805564080] +centroid = (0.68131571525415424, -1.5166730558253143) +description = Richland township, IN +station = ('kbmg', 0.0043064915971965396) +zone = ('inz061', 0.00085455944980056232) + +[fips1805570128] +centroid = (0.68277442653638598, -1.5197885034467091) +description = Smith township, IN +station = ('khuf', 0.006602694520869032) +zone = ('inz061', 0.0021415535907116953) + +[fips1805572530] +centroid = (0.67978373504992373, -1.5215258739973143) +description = Stafford township, IN +station = ('krsv', 0.006519368238310788) +zone = ('inz061', 0.0032927808805281468) + +[fips1805573304] +centroid = (0.68136077965544073, -1.5217341964968325) +description = Stockton township, IN +station = ('krsv', 0.0062605892685535991) +zone = ('inz061', 0.003076999370059722) + +[fips1805574996] +centroid = (0.67975355830715667, -1.5166795484501316) +description = Taylor township, IN +station = ('kbmg', 0.0052183934012562669) +zone = ('inz061', 0.0017751625455815186) + +[fips1805580648] +centroid = (0.68011278197380221, -1.5194484085886655) +description = Washington township, IN +station = ('kbmg', 0.0067754315088486908) +zone = ('inz061', 0.0017699682266208566) + +[fips1805585634] +centroid = (0.68291510007409673, -1.5216998484171531) +description = Wright township, IN +station = ('khuf', 0.0058841204067418282) +zone = ('inz061', 0.0034438942923918706) + +[fips1805662] +centroid = (0.69231975438859072, -1.5275168388278326) +description = Blanford CDP, IN +station = ('kprg', 0.0020897632813760749) +zone = ('ilz057', 0.0030338375973853202) + +[fips18057] +centroid = (0.69900209649570133, -1.5013424501949388) +description = Hamilton County, IN +station = ('ktyq', 0.0030850233567431716) +zone = ('inz039', 0.00057627060946506407) + +[fips1805700388] +centroid = (0.70086739968047784, -1.5042422274806648) +description = Adams township, IN +station = ('ktyq', 0.0023679075237371255) +zone = ('inz039', 0.0023228987325200076) + +[fips1805713060] +centroid = (0.69752919568665084, -1.5035726842730148) +description = Clay township, IN +station = ('ktyq', 0.0017648189153780867) +zone = ('inz039', 0.002268947065057468) + +[fips1805716] +centroid = (0.68113674919265477, -1.5173419358078486) +description = Bloomfield town, IN +station = ('kbmg', 0.0048507077687511739) +zone = ('inz061', 0.00037807677925376896) + +[fips1805717488] +centroid = (0.6974066561198683, -1.501430292616192) +description = Delaware township, IN +station = ('ktyq', 0.0032496867722915652) +zone = ('inz039', 0.0020214044892166898) + +[fips1805722612] +centroid = (0.69750205581678237, -1.4997268512662454) +description = Fall Creek township, IN +station = ('ktyq', 0.0044568633164350441) +zone = ('inz039', 0.0025174018460260594) + +[fips1805737044] +centroid = (0.70085015582746801, -1.5020322043153271) +description = Jackson township, IN +station = ('ktyq', 0.0033534708222989137) +zone = ('inz039', 0.0014571138336806342) + +[fips1805754198] +centroid = (0.69900209649570133, -1.5013424501949388) +description = Noblesville township, IN +station = ('ktyq', 0.0030850233567431716) +zone = ('inz039', 0.00057627060946506407) + +[fips1805780666] +centroid = (0.69906307829976611, -1.503995403017848) +description = Washington township, IN +station = ('ktyq', 0.0011118314417788958) +zone = ('inz039', 0.0016450481680469291) + +[fips1805781710] +centroid = (0.69908213729519786, -1.4993396848782754) +description = Wayne township, IN +station = ('ktyq', 0.0046183887516258451) +zone = ('inz039', 0.0019776304622733916) + +[fips1805783906] +centroid = (0.70086863886424677, -1.4997719331208244) +description = White River township, IN +station = ('ktyq', 0.0048046660344115517) +zone = ('inz039', 0.0021888588784878629) + +[fips1805788] +centroid = (0.69517444981973764, -1.5228026696116108) +description = Bloomingdale town, IN +station = ('kprg', 0.0060706356163999558) +zone = ('inz044', 0.0011551381168769489) + +[fips1805860] +centroid = (0.68353551226330322, -1.510133289664799) +description = Bloomington city, IN +station = ('kbmg', 0.0012731983549450377) +zone = ('inz062', 5.1345144137424005e-05) + +[fips1805896] +centroid = (0.69918334893852097, -1.4877157920599933) +description = Blountsville town, IN +station = ('kmie', 0.003700131990577624) +zone = ('inz049', 0.0030772087941251182) + +[fips18059] +centroid = (0.69503555651786397, -1.4970195837970144) +description = Hancock County, IN +station = ('kgez', 0.0041918811013007427) +zone = ('inz048', 1.6133657265803726e-05) + +[fips1805906040] +centroid = (0.69354837891553212, -1.4953542429846389) +description = Blue River township, IN +station = ('kgez', 0.0031527431914865609) +zone = ('inz048', 0.0019765032905120065) + +[fips1805907084] +centroid = (0.69326912623521308, -1.4970733573912685) +description = Brandywine township, IN +station = ('kgez', 0.0024311439673721604) +zone = ('inz048', 0.0017824599884755305) + +[fips1805908290] +centroid = (0.69646026878626699, -1.4944487312621191) +description = Brown township, IN +station = ('kaid', 0.0037095743353150181) +zone = ('inz048', 0.0024279821428477605) + +[fips1805908794] +centroid = (0.69505793163887453, -1.4989981763035378) +description = Buck Creek township, IN +station = ('kgez', 0.0043553148017154222) +zone = ('inz048', 0.0015156433148035757) + +[fips1805911368] +centroid = (0.69493855111803804, -1.4970521690941492) +description = Center township, IN +station = ('kgez', 0.004093100409009994) +zone = ('inz048', 0.00011459524375100336) + +[fips1805929142] +centroid = (0.69657228401765992, -1.4965392866401581) +description = Green township, IN +station = ('kaid', 0.0039861142301010344) +zone = ('inz048', 0.0015660621037406912) + +[fips1805937062] +centroid = (0.69515015483654985, -1.4948850112152403) +description = Jackson township, IN +station = ('kgez', 0.0047364378527332855) +zone = ('inz048', 0.0016462732036616511) + +[fips1805973880] +centroid = (0.69357789243318335, -1.4991333346008122) +description = Sugar Creek township, IN +station = ('kgez', 0.0029975443146811089) +zone = ('inz048', 0.0021900720582794108) + +[fips1805978866] +centroid = (0.69650882384605739, -1.4987428869938484) +description = Vernon township, IN +station = ('kaid', 0.0050006307239799531) +zone = ('inz048', 0.0019656594876732241) + +[fips18061] +centroid = (0.66647910761526341, -1.5027927315368836) +description = Harrison County, IN +station = ('ksdf', 0.005080951060277848) +zone = ('inz090', 0.00018519919111706674) + +[fips1806106058] +centroid = (0.66961158965015788, -1.5044259582910224) +description = Blue River township, IN +station = ('ksdf', 0.0071106139997046246) +zone = ('inz090', 0.003203885459084259) + +[fips1806106544] +centroid = (0.66386806014769495, -1.50221181614865) +description = Boone township, IN +station = ('kftk', 0.0027822492311986107) +zone = ('kyz025', 0.0023325469888036921) + +[fips1806125396] +centroid = (0.66730438655206892, -1.5011148243538939) +description = Franklin township, IN +station = ('ksdf', 0.0038620506574714736) +zone = ('inz090', 0.0015736904451167724) + +[fips1806131810] +centroid = (0.66663753115146707, -1.5038192992963215) +description = Harrison township, IN +station = ('kftk', 0.0058178177012196287) +zone = ('inz090', 0.00070230129265801329) + +[fips1806133268] +centroid = (0.66434189958631884, -1.5038674529303842) +description = Heth township, IN +station = ('kftk', 0.0039566842881625288) +zone = ('kyz025', 0.0017954912283703515) + +[fips1806137080] +centroid = (0.66836629722885987, -1.5026072379439817) +description = Jackson township, IN +station = ('ksdf', 0.0052995988291668298) +zone = ('inz090', 0.0017522417154649909) + +[fips1806151030] +centroid = (0.66968405572070067, -1.5025077541766179) +description = Morgan township, IN +station = ('ksdf', 0.0058437861179872755) +zone = ('inz090', 0.0030696398925351498) + +[fips1806161344] +centroid = (0.66558054230316677, -1.5002877128213739) +description = Posey township, IN +station = ('ksdf', 0.0032252510348766456) +zone = ('inz090', 0.0023253750196590098) + +[fips1806171936] +centroid = (0.6682510007784731, -1.504860108942456) +description = Spencer township, IN +station = ('ksdf', 0.0069453453364359853) +zone = ('inz090', 0.002220229702109373) + +[fips1806175014] +centroid = (0.66383224599144397, -1.5006851591986381) +description = Taylor township, IN +station = ('kftk', 0.0023630734863193587) +zone = ('inz090', 0.0033084872302799133) + +[fips1806180684] +centroid = (0.66519100226741412, -1.5051613876779353) +description = Washington township, IN +station = ('kftk', 0.0052763785430192528) +zone = ('inz090', 0.0022731381322682043) + +[fips1806182106] +centroid = (0.66569137071066831, -1.5019216202539207) +description = Webster township, IN +station = ('kftk', 0.004378555489914138) +zone = ('inz090', 0.001227987718948331) + +[fips1806220] +centroid = (0.71110785726716674, -1.4865337678240802) +description = Bluffton city, IN +station = ('kfwa', 0.0044922404045067907) +zone = ('inz026', 0.00069600815801440898) + +[fips18063] +centroid = (0.69409560944920246, -1.5098893449952477) +description = Hendricks County, IN +station = ('kind', 0.0031785252095520495) +zone = ('inz046', 1.3661187589733513e-05) + +[fips1806308308] +centroid = (0.6963602090602502, -1.5074241023333907) +description = Brown township, IN +station = ('keye', 0.0014659552837217565) +zone = ('inz046', 0.0029391106880387358) + +[fips1806311386] +centroid = (0.69412238279992799, -1.5100824831302735) +description = Center township, IN +station = ('kind', 0.0033284960085372545) +zone = ('inz046', 0.00015291177825075956) + +[fips1806313078] +centroid = (0.69274289201244421, -1.5117476843163087) +description = Clay township, IN +station = ('kind', 0.0044991390056074356) +zone = ('inz046', 0.0019796581611418438) + +[fips1806320530] +centroid = (0.695916005312325, -1.5119927634498738) +description = Eel River township, IN +station = ('keye', 0.0044862178766682239) +zone = ('inz046', 0.0024266529462960958) + +[fips1806325414] +centroid = (0.69180465536644964, -1.5116118278873334) +description = Franklin township, IN +station = ('kind', 0.0045874861014447103) +zone = ('inz046', 0.0026599076505893445) + +[fips1806330204] +centroid = (0.69247393677471192, -1.5076709791560854) +description = Guilford township, IN +station = ('kind', 0.0015185403880219296) +zone = ('inz046', 0.0023602238109505782) + +[fips1806343290] +centroid = (0.69216045818776117, -1.5097205542032872) +description = Liberty township, IN +station = ('kind', 0.00309347959353856) +zone = ('inz046', 0.0019523280986621873) + +[fips1806343794] +centroid = (0.69508531585483824, -1.5076744523612968) +description = Lincoln township, IN +station = ('keye', 0.0011260378854006893) +zone = ('inz046', 0.001958708452808594) + +[fips1806346926] +centroid = (0.69408677808318731, -1.5121038711100556) +description = Marion township, IN +station = ('kind', 0.004833156424310708) +zone = ('inz046', 0.0017061448784100792) + +[fips1806348852] +centroid = (0.6957745114698658, -1.5091792228824887) +description = Middle township, IN +station = ('keye', 0.0023385600196050124) +zone = ('inz046', 0.0017516256073293239) + +[fips1806377318] +centroid = (0.69602430299241125, -1.5104616384569767) +description = Union township, IN +station = ('keye', 0.0033539394174855481) +zone = ('inz046', 0.0019662276545985482) + +[fips1806380702] +centroid = (0.69395535479051218, -1.5078622846953964) +description = Washington township, IN +station = ('kind', 0.0016741455272511025) +zone = ('inz046', 0.0015618442562315028) + +[fips18065] +centroid = (0.69690257012530732, -1.4904647205384693) +description = Henry County, IN +station = ('kaid', 0.0043881380524824322) +zone = ('inz049', 2.8866660846903873e-05) + +[fips1806506076] +centroid = (0.6978252035277891, -1.4880390444907552) +description = Blue River township, IN +station = ('kmie', 0.0047697006000004174) +zone = ('inz049', 0.0020538986287977623) + +[fips1806518838] +centroid = (0.69517579372326166, -1.4882555700377575) +description = Dudley township, IN +station = ('kaid', 0.0068063048404349976) +zone = ('inz049', 0.0024311084372039128) + +[fips1806522630] +centroid = (0.69861047951813882, -1.4929022822783897) +description = Fall Creek township, IN +station = ('kaid', 0.001886199834045082) +zone = ('inz049', 0.0025214379803948335) + +[fips1806525432] +centroid = (0.69494895328037998, -1.4898852188669298) +description = Franklin township, IN +station = ('kaid', 0.0062167674827112857) +zone = ('inz049', 0.0020271135137429333) + +[fips1806529700] +centroid = (0.69630196742311101, -1.4921369379480978) +description = Greensboro township, IN +station = ('kaid', 0.0042038454328614328) +zone = ('inz049', 0.0014378461863729529) + +[fips1806531828] +centroid = (0.69727191670161437, -1.492369572884096) +description = Harrison township, IN +station = ('kaid', 0.0032488553425712259) +zone = ('inz049', 0.0015110622571579528) + +[fips1806533124] +centroid = (0.69668693469622345, -1.4902586844202714) +description = Henry township, IN +station = ('kaid', 0.0046542622864838941) +zone = ('inz049', 0.00028324048584104413) + +[fips1806537998] +centroid = (0.69851272362673467, -1.4910664227980945) +description = Jefferson township, IN +station = ('kaid', 0.0029724651097889627) +zone = ('inz049', 0.0016524860483235323) + +[fips1806543308] +centroid = (0.6966684516594448, -1.488116851268809) +description = Liberty township, IN +station = ('kmie', 0.0058309997378670946) +zone = ('inz049', 0.0018082594143656488) + +[fips1806561560] +centroid = (0.69832911498942485, -1.4897550173047309) +description = Prairie township, IN +station = ('kmie', 0.0039179226959827401) +zone = ('inz049', 0.0014978657145775962) + +[fips1806572026] +centroid = (0.69516135985034766, -1.4915315181371658) +description = Spiceland township, IN +station = ('kaid', 0.005435366988923062) +zone = ('inz049', 0.0019529023477719595) + +[fips1806573472] +centroid = (0.69897396178815918, -1.4881779028860438) +description = Stoney Creek township, IN +station = ('kmie', 0.0036899341690452593) +zone = ('inz049', 0.0026854753419272358) + +[fips1806581728] +centroid = (0.69509899923617402, -1.4930401458360048) +description = Wayne township, IN +station = ('kaid', 0.0051590123346034935) +zone = ('inz049', 0.0027018755845469281) + +[fips1806616] +centroid = (0.6640132017282907, -1.5232153527132448) +description = Boonville city, IN +station = ('kevv', 0.0035733584524736861) +zone = ('inz087', 0.00082144410032890627) + +[fips1806634] +centroid = (0.671463122187136, -1.5000783082177194) +description = Borden town, IN +station = ('klou', 0.005674109133602479) +zone = ('inz091', 0.0027228386268078985) + +[fips1806652] +centroid = (0.69361313063078101, -1.4809434433233573) +description = Boston town, IN +station = ('kmwo', 0.0071031062290035927) +zone = ('inz059', 0.0022450314972715904) + +[fips18067] +centroid = (0.7065710135029476, -1.5029748915509145) +description = Howard County, IN +station = ('kokk', 0.0010732395313056678) +zone = ('inz031', 3.694696567750585e-05) + +[fips1806706] +centroid = (0.70714370839040464, -1.524970647795268) +description = Boswell town, IN +station = ('klaf', 0.00589749371370594) +zone = ('inz019', 0.0017813421271087799) + +[fips1806711422] +centroid = (0.70657054226404969, -1.5033577644289242) +description = Center township, IN +station = ('kokk', 0.0012664923652706236) +zone = ('inz031', 0.00025428442239209371) + +[fips1806713096] +centroid = (0.70726621305060211, -1.5043443466951991) +description = Clay township, IN +station = ('kokk', 0.0016794186336318098) +zone = ('inz031', 0.0012208726174702074) + +[fips1806721430] +centroid = (0.70715606532150865, -1.5063728905249145) +description = Ervin township, IN +station = ('kgus', 0.0031328557245195775) +zone = ('inz031', 0.0026130101864991315) + +[fips1806731846] +centroid = (0.70570541746042104, -1.5042294691238329) +description = Harrison township, IN +station = ('kokk', 0.0023491843977115523) +zone = ('inz031', 0.0012622226548251326) + +[fips1806734528] +centroid = (0.70523841971246493, -1.5056553856694197) +description = Honey Creek township, IN +station = ('kokk', 0.0034600750941029663) +zone = ('inz031', 0.0024063718217740351) + +[fips1806734906] +centroid = (0.70732468158054385, -1.5019060693702855) +description = Howard township, IN +station = ('kokk', 0.0002162870386797235) +zone = ('inz031', 0.0011349761440200953) + +[fips1806737098] +centroid = (0.70712302623876844, -1.4993730555735736) +description = Jackson township, IN +station = ('kokk', 0.0021320527291693045) +zone = ('inz031', 0.0028299457018514241) + +[fips1806743326] +centroid = (0.70685373938847817, -1.5006496766549449) +description = Liberty township, IN +station = ('kokk', 0.0012802555335011234) +zone = ('inz031', 0.0018270881420907571) + +[fips1806750328] +centroid = (0.7060237480626923, -1.5064401729675789) +description = Monroe township, IN +station = ('kgus', 0.0040710859099748944) +zone = ('inz030', 0.003401191154320814) + +[fips1806760] +centroid = (0.72077998328952875, -1.5030418423810208) +description = Bourbon town, IN +station = ('krcr', 0.0042271148359359981) +zone = ('inz014', 0.0019452586927048978) + +[fips1806775032] +centroid = (0.70572559346657415, -1.5018927001482154) +description = Taylor township, IN +station = ('kokk', 0.0017253804509627664) +zone = ('inz031', 0.0012069765909866459) + +[fips1806777336] +centroid = (0.70582687492306728, -1.4994521364419815) +description = Union township, IN +station = ('kokk', 0.0026081516808528831) +zone = ('inz038', 0.0029248654687149146) + +[fips18069] +centroid = (0.71255499701645786, -1.49188297508864) +description = Huntington County, IN +station = ('kfwa', 0.0047626970736622037) +zone = ('inz025', 0.00013470626405139336) + +[fips1806913384] +centroid = (0.71478275272699587, -1.4922531768762803) +description = Clear Creek township, IN +station = ('kfwa', 0.0040311423429832743) +zone = ('inz025', 0.0021842518118397897) + +[fips1806916678] +centroid = (0.71331594311703483, -1.4941261769630581) +description = Dallas township, IN +station = ('kfwa', 0.0058278487552322162) +zone = ('inz025', 0.0017251454385532672) + +[fips1806935311] +centroid = (0.71327276367134052, -1.4925684706056532) +description = Huntington township, IN +station = ('kfwa', 0.0047867851299684848) +zone = ('inz025', 0.00077575940809235971) + +[fips1806937116] +centroid = (0.71491675910696406, -1.4902946905627401) +description = Jackson township, IN +station = ('kfwa', 0.002560497657177458) +zone = ('inz025', 0.0026659215762822102) + +[fips1806938016] +centroid = (0.7103495117071752, -1.4922406454122512) +description = Jefferson township, IN +station = ('kmzz', 0.0043801303656914262) +zone = ('inz025', 0.0022591361123710067) + +[fips1806941904] +centroid = (0.71197183015348897, -1.4923157818365493) +description = Lancaster township, IN +station = ('kfwa', 0.0053922259914963768) +zone = ('inz025', 0.00066364852130249691) + +[fips1806960948] +centroid = (0.71180049118082067, -1.4942211403276593) +description = Polk township, IN +station = ('kmzz', 0.0051940433309125584) +zone = ('inz025', 0.0018300965326093512) + +[fips1806965304] +centroid = (0.71190720061128765, -1.490438121720669) +description = Rock Creek township, IN +station = ('kfwa', 0.0044944584692929038) +zone = ('inz025', 0.0014041857036758093) + +[fips1806967320] +centroid = (0.71042152399211245, -1.4905683581894529) +description = Salamonie township, IN +station = ('kmzz', 0.005236326452886189) +zone = ('inz026', 0.0024476486648885134) + +[fips1806977354] +centroid = (0.71338100899154921, -1.4903858665628642) +description = Union township, IN +station = ('kfwa', 0.0033646348857988106) +zone = ('inz025', 0.0014785196171310426) + +[fips1806980126] +centroid = (0.71474377952479895, -1.4941602806966421) +description = Warren township, IN +station = ('kfwa', 0.0054556520365882473) +zone = ('inz025', 0.0026695673276324939) + +[fips1806981746] +centroid = (0.71040972556636905, -1.4938414963087654) +description = Wayne township, IN +station = ('kmzz', 0.0039088877669922655) +zone = ('inz025', 0.0025803415102217363) + +[fips18071] +centroid = (0.67914176804445514, -1.5017252008999014) +description = Jackson County, IN +station = ('kbak', 0.0064848948511542154) +zone = ('inz071', 0.0001177464140087319) + +[fips1807108488] +centroid = (0.67875011616030756, -1.5017490246441911) +description = Brownstown township, IN +station = ('kbak', 0.0068650938289881161) +zone = ('inz071', 0.00030676664117150894) + +[fips1807110450] +centroid = (0.67753177162266043, -1.5049313358292298) +description = Carr township, IN +station = ('kbmg', 0.007828816187249862) +zone = ('inz071', 0.0029764883411128439) + +[fips1807118712] +centroid = (0.67738989380776582, -1.5029897443028488) +description = Driftwood township, IN +station = ('kbak', 0.0084604472019125642) +zone = ('inz071', 0.0019606899913646057) + +[fips1807129016] +centroid = (0.67703356738767861, -1.5006660478433285) +description = Grassy Fork township, IN +station = ('kbak', 0.0083728846286092087) +zone = ('inz071', 0.00214932954340447) + +[fips1807130618] +centroid = (0.68029228908736983, -1.5006471808341144) +description = Hamilton township, IN +station = ('kbak', 0.0051575575345546194) +zone = ('inz071', 0.0014669168964564208) + +[fips1807137134] +centroid = (0.67956082159785891, -1.4987593454486949) +description = Jackson township, IN +station = ('kbak', 0.0057837295728431631) +zone = ('inz071', 0.0022993689812291743) + +[fips1807157474] +centroid = (0.67910385949310181, -1.5045113048914449) +description = Owen township, IN +station = ('kbmg', 0.0070115780572461055) +zone = ('inz071', 0.0022355656415186807) + +[fips1807159274] +centroid = (0.68083698889362476, -1.5031255658252389) +description = Pershing township, IN +station = ('kbak', 0.0054132750668521709) +zone = ('inz071', 0.0021324994605512091) + +[fips1807163414] +centroid = (0.68101839841607703, -1.4983546559550347) +description = Redding township, IN +station = ('kbak', 0.0043682578787354789) +zone = ('inz072', 0.0030270472951092874) + +[fips1807167572] +centroid = (0.6807421651553639, -1.5048528832793526) +description = Salt Creek township, IN +station = ('kbak', 0.0063278274480027289) +zone = ('inz071', 0.0030208888505562459) + +[fips1807174] +centroid = (0.68981173370676729, -1.5206105884309835) +description = Brazil city, IN +station = ('khuf', 0.0028865437838255111) +zone = ('inz052', 0.0022807353396072654) + +[fips1807178884] +centroid = (0.67739973746474702, -1.4982582090605698) +description = Vernon township, IN +station = ('kbak', 0.0079692880523854447) +zone = ('inz078', 0.0025770367514633265) + +[fips1807180720] +centroid = (0.67840499475401828, -1.4992634838031333) +description = Washington township, IN +station = ('kbak', 0.0069276534999611599) +zone = ('inz071', 0.0019568917210602012) + +[fips18073] +centroid = (0.71589370715576783, -1.5205101447325313) +description = Jasper County, IN +station = ('krzl', 0.0015084157321824275) +zone = ('inz011', 9.8895541410757082e-05) + +[fips1807303412] +centroid = (0.71600240626158207, -1.5196707286287845) +description = Barkley township, IN +station = ('krzl', 0.0020332022141070667) +zone = ('inz011', 0.00059908341446735414) + +[fips1807310396] +centroid = (0.71163979871658967, -1.5216543302302612) +description = Carpenter township, IN +station = ('krzl', 0.0030734282322824919) +zone = ('inz019', 0.003371394634438691) + +[fips1807318] +centroid = (0.72340096168054124, -1.5036124079667903) +description = Bremen town, IN +station = ('ksbn', 0.004906191915282211) +zone = ('inz014', 0.0025911016825513125) + +[fips1807327684] +centroid = (0.71652837868496311, -1.5178442590198651) +description = Gillam township, IN +station = ('krzl', 0.0034637964935975937) +zone = ('inz011', 0.0020493416556021005) + +[fips1807331144] +centroid = (0.71453763868684583, -1.5182690197999229) +description = Hanging Grove township, IN +station = ('krzl', 0.002637057041688002) +zone = ('inz011', 0.0022013726896935207) + +[fips1807338970] +centroid = (0.71309173812132365, -1.5219113474159098) +description = Jordan township, IN +station = ('krzl', 0.0016250274913546491) +zone = ('inz011', 0.0030941332560309757) + +[fips1807339168] +centroid = (0.71916021302392286, -1.5183714880803076) +description = Kankakee township, IN +station = ('kvpz', 0.0042790400033678386) +zone = ('inz011', 0.0035439486644526083) + +[fips1807339222] +centroid = (0.71889898959477694, -1.5221105243901474) +description = Keener township, IN +station = ('krzl', 0.0041953491143038018) +zone = ('inz011', 0.0031656393976567318) + +[fips1807346944] +centroid = (0.71435867262534636, -1.520678918071199) +description = Marion township, IN +station = ('krzl', 0.00088479089105300177) +zone = ('inz011', 0.0016357746286635299) + +[fips1807349788] +centroid = (0.71326126195156991, -1.5191981109206369) +description = Milroy township, IN +station = ('krzl', 0.0024150841760936267) +zone = ('inz011', 0.0028881666393674593) + +[fips1807353622] +centroid = (0.71468496192900666, -1.5224634997780708) +description = Newton township, IN +station = ('krzl', 0.00053765200893819687) +zone = ('inz011', 0.0019926851060767478) + +[fips1807377372] +centroid = (0.71695568764572892, -1.5220840477453945) +description = Union township, IN +station = ('krzl', 0.0022572583241307633) +zone = ('inz011', 0.0015592073585826447) + +[fips1807379640] +centroid = (0.71797003810040294, -1.5193954029392827) +description = Walker township, IN +station = ('krzl', 0.0037112356713114355) +zone = ('inz011', 0.0021410774419404355) + +[fips1807383546] +centroid = (0.71967183884085251, -1.5203804318625231) +description = Wheatfield township, IN +station = ('kvpz', 0.0040399815767941921) +zone = ('inz011', 0.0036859640460728139) + +[fips18075] +centroid = (0.7057233943517166, -1.4835888563238977) +description = Jay County, IN +station = ('kmie', 0.0063426592672005113) +zone = ('inz034', 6.1178386412134321e-05) + +[fips1807503844] +centroid = (0.7072086695451637, -1.4823027057448104) +description = Bearcreek township, IN +station = ('kves', 0.0077111444570784971) +zone = ('inz034', 0.0017521791941939198) + +[fips1807529466] +centroid = (0.70575233191071463, -1.4847767448660973) +description = Greene township, IN +station = ('kmie', 0.0056300148645101883) +zone = ('inz034', 0.00087362945370317942) + +[fips1807537152] +centroid = (0.70725682317922622, -1.4842633039067457) +description = Jackson township, IN +station = ('kmie', 0.0069413795944072388) +zone = ('inz034', 0.0015571252433998102) + +[fips1807538034] +centroid = (0.70424714251050224, -1.4848303439274262) +description = Jefferson township, IN +station = ('kmie', 0.0047905880843900689) +zone = ('inz034', 0.0017817948947817666) + +[fips1807540356] +centroid = (0.70574451283566575, -1.486480465468724) +description = Knox township, IN +station = ('kmie', 0.0046877068231049156) +zone = ('inz034', 0.0021702701659636571) + +[fips1807545972] +centroid = (0.70441750409878934, -1.4809274735607014) +description = Madison township, IN +station = ('kves', 0.0051057583750002342) +zone = ('inz034', 0.002465750062514684) + +[fips1807554072] +centroid = (0.70582575791234614, -1.4809595527123531) +description = Noble township, IN +station = ('kves', 0.0060093373346389251) +zone = ('inz034', 0.002032563375042097) + +[fips1807558680] +centroid = (0.70724984186221829, -1.4863269812143038) +description = Penn township, IN +station = ('kmie', 0.0059681717536993993) +zone = ('inz034', 0.0025262203218843126) + +[fips1807559724] +centroid = (0.70444485340816809, -1.4827562644575261) +description = Pike township, IN +station = ('kves', 0.0063316987472387025) +zone = ('inz034', 0.0014881780067070559) + +[fips1807564098] +centroid = (0.70413449896057856, -1.4866238442667756) +description = Richland township, IN +station = ('kmie', 0.0035382172872196415) +zone = ('inz034', 0.0028101681992171528) + +[fips1807579316] +centroid = (0.70746561691764231, -1.4808009371899318) +description = Wabash township, IN +station = ('kves', 0.007179053707305854) +zone = ('inz034', 0.0027352403782617543) + +[fips1807581764] +centroid = (0.70576100619709703, -1.4828280673029532) +description = Wayne township, IN +station = ('kves', 0.007059720559031272) +zone = ('inz034', 0.00061005561120050066) + +[fips1807624] +centroid = (0.68460407264454426, -1.4811269996007894) +description = Bright CDP, IN +station = ('kcvg', 0.0040418390290010847) +zone = ('inz074', 0.0020457526767782854) + +[fips18077] +centroid = (0.67690158558964286, -1.491210883700282) +description = Jefferson County, IN +station = ('klou', 0.010090242525581378) +zone = ('inz079', 4.4010548687567834e-05) + +[fips1807728566] +centroid = (0.67688853052683795, -1.4946178711199301) +description = Graham township, IN +station = ('kbak', 0.0091751954843745133) +zone = ('inz078', 0.0022892004096358243) + +[fips1807731234] +centroid = (0.67555309184967449, -1.4921133236433179) +description = Hanover township, IN +station = ('klou', 0.0085944125958160901) +zone = ('inz079', 0.0015651184221687916) + +[fips1807741940] +centroid = (0.67845464937123756, -1.4924553209102465) +description = Lancaster township, IN +station = ('kbak', 0.008662264526157374) +zone = ('inz079', 0.0018101441058789376) + +[fips1807746008] +centroid = (0.67686100668453397, -1.490186794308382) +description = Madison township, IN +station = ('klou', 0.010326536282791931) +zone = ('inz079', 0.00078066186759938154) + +[fips1807749824] +centroid = (0.67692507772137478, -1.4877390398456298) +description = Milton township, IN +station = ('kcvg', 0.0090698590894388101) +zone = ('kyz089', 0.0025962333525228354) + +[fips1807750] +centroid = (0.72809015523516685, -1.4979393723128154) +description = Bristol town, IN +station = ('kekm', 0.002272021264764024) +zone = ('inz005', 0.002122895847727358) + +[fips1807750346] +centroid = (0.67815193946577157, -1.4907613741514307) +description = Monroe township, IN +station = ('kbak', 0.0097406934862415417) +zone = ('inz079', 0.001255780512673879) + +[fips1807763828] +centroid = (0.67596835803860145, -1.4932759747245343) +description = Republican township, IN +station = ('klou', 0.0087960471450748336) +zone = ('inz079', 0.0018992941025992541) + +[fips1807767662] +centroid = (0.67418445701013807, -1.4923051178748199) +description = Saluda township, IN +station = ('klou', 0.0072422259099622962) +zone = ('kyz032', 0.0022702173933185298) + +[fips1807769228] +centroid = (0.67835123861305691, -1.4885276494148507) +description = Shelby township, IN +station = ('kcvg', 0.0089983382941626507) +zone = ('inz079', 0.0025043148638580169) + +[fips1807770398] +centroid = (0.67707018439538558, -1.492441515355863) +description = Smyrna township, IN +station = ('kbak', 0.0098051172969386129) +zone = ('inz079', 0.00098946236016254517) + +[fips18079] +centroid = (0.68061267917815849, -1.4944924692131742) +description = Jennings County, IN +station = ('kbak', 0.0059855934258418297) +zone = ('inz072', 1.1624844631102653e-05) + +[fips1807905212] +centroid = (0.67989938056616084, -1.491919400110129) +description = Bigger township, IN +station = ('kbak', 0.0078591184400348298) +zone = ('inz072', 0.0021274897843965609) + +[fips1807909946] +centroid = (0.68133519312860646, -1.4921414932574453) +description = Campbell township, IN +station = ('kbak', 0.0068016435279467588) +zone = ('inz072', 0.0019599251443481289) + +[fips1807911458] +centroid = (0.68091044980184112, -1.4943673989189765) +description = Center township, IN +station = ('kbak', 0.0058159496406969815) +zone = ('inz072', 0.00030215399929569713) + +[fips1807914680] +centroid = (0.68289118906334456, -1.4921613376510405) +description = Columbia township, IN +station = ('kbak', 0.0060030247783107726) +zone = ('inz072', 0.0029007741433324809) + +[fips1807927234] +centroid = (0.68203931130873852, -1.4961824715278804) +description = Geneva township, IN +station = ('kbak', 0.0040566527129365596) +zone = ('inz072', 0.0019302269771981038) + +[fips1807945108] +centroid = (0.67901277075944033, -1.494726936744887) +description = Lovett township, IN +station = ('kbak', 0.007224955636603362) +zone = ('inz072', 0.0016218321608816816) + +[fips1807946962] +centroid = (0.67809240628498602, -1.4966185071349059) +description = Marion township, IN +station = ('kbak', 0.0075204612142558847) +zone = ('inz078', 0.0029102425079553236) + +[fips1807950724] +centroid = (0.67808895053306717, -1.4946275227906933) +description = Montgomery township, IN +station = ('kbak', 0.0080799829462689689) +zone = ('inz072', 0.0025375348848023162) + +[fips1807966] +centroid = (0.71324794508937717, -1.5248195022820454) +description = Brook town, IN +station = ('krzl', 0.0027416994113786033) +zone = ('inz010', 0.0016224357189620665) + +[fips1807967752] +centroid = (0.68236073114378581, -1.493880120445112) +description = Sand Creek township, IN +station = ('kbak', 0.0051068206196356863) +zone = ('inz072', 0.001800335461115504) + +[fips1807971954] +centroid = (0.6800272608404544, -1.4965297571424421) +description = Spencer township, IN +station = ('kbak', 0.0057062801913815688) +zone = ('inz072', 0.001692662775512314) + +[fips1807978920] +centroid = (0.67991048086020356, -1.4938788463547579) +description = Vernon township, IN +station = ('kbak', 0.0068329826734411453) +zone = ('inz072', 0.00085846399095088782) + +[fips1808038] +centroid = (0.69013905275468634, -1.5073996328172778) +description = Brooklyn town, IN +station = ('kind', 0.0032514256574965846) +zone = ('inz054', 0.0014953493933168847) + +[fips1808092] +centroid = (0.67606827813827819, -1.4878116280892204) +description = Brooksburg town, IN +station = ('kcvg', 0.009583867935155253) +zone = ('kyz089', 0.0020396975478566741) + +[fips18081] +centroid = (0.68933499702158518, -1.50263423818751) +description = Johnson County, IN +station = ('kind', 0.0046125399462867362) +zone = ('inz055', 0.00014292513069893208) + +[fips1808106094] +centroid = (0.68760216432703503, -1.5008571963030071) +description = Blue River township, IN +station = ('kbak', 0.0025922482415959508) +zone = ('inz055', 0.0021911088058212476) + +[fips1808112781] +centroid = (0.69092544575575743, -1.5009284580963658) +description = Clark township, IN +station = ('kgez', 0.0026488379802234682) +zone = ('inz055', 0.0022067555017510647) + +[fips1808125468] +centroid = (0.68912885618363207, -1.5025990174432047) +description = Franklin township, IN +station = ('kbak', 0.0046002313753137096) +zone = ('inz055', 0.00015833011031899047) + +[fips1808133160] +centroid = (0.68753407903291475, -1.5043226522525968) +description = Hensley township, IN +station = ('kbak', 0.004507351500671066) +zone = ('inz055', 0.0020812968153583944) + +[fips1808146] +centroid = (0.70862018712442165, -1.5161028043988101) +description = Brookston town, IN +station = ('klaf', 0.0034026930582180411) +zone = ('inz020', 0.0025997645463090688) + +[fips1808152164] +centroid = (0.68920586011023011, -1.5009985505191261) +description = Needham township, IN +station = ('kgez', 0.0031695236072077282) +zone = ('inz055', 0.0013581586558078834) + +[fips1808154000] +centroid = (0.68764881697794089, -1.5023118584213742) +description = Nineveh township, IN +station = ('kbak', 0.0033193602855648191) +zone = ('inz055', 0.0016171128899081905) + +[fips1808160390] +centroid = (0.69084802295013903, -1.5026410449715928) +description = Pleasant township, IN +station = ('kind', 0.0034460138405351371) +zone = ('inz055', 0.00162176363327685) + +[fips1808177390] +centroid = (0.68883047469471104, -1.5045070113814851) +description = Union township, IN +station = ('kind', 0.0044916958787598153) +zone = ('inz055', 0.0014074130712488696) + +[fips1808182] +centroid = (0.68806661389428325, -1.4837325143746292) +description = Brookville town, IN +station = ('kcvg', 0.0080122448300490381) +zone = ('inz066', 0.00067308069508018097) + +[fips1808183924] +centroid = (0.69073672330373925, -1.5043766527396536) +description = White River township, IN +station = ('kind', 0.0027256697049224) +zone = ('inz055', 0.0019575743646215618) + +[fips18083] +centroid = (0.67524455254450688, -1.5257700085926815) +description = Knox County, IN +station = ('klwv', 0.0028014221585679379) +zone = ('inz067', 3.0688709044171638e-05) + +[fips1808309514] +centroid = (0.67798093210566124, -1.5266858875709579) +description = Busseron township, IN +station = ('klwv', 0.0022113788583356855) +zone = ('inz067', 0.0028283082784259055) + +[fips1808317128] +centroid = (0.67158026868652987, -1.5295203371827819) +description = Decker township, IN +station = ('kajg', 0.0025552420413164573) +zone = ('ilz078', 0.0029156262935593124) + +[fips1808331864] +centroid = (0.6733010237026561, -1.5246598221087804) +description = Harrison township, IN +station = ('klwv', 0.0046824557015910798) +zone = ('inz067', 0.0021232961565290018) + +[fips1808338700] +centroid = (0.67315825576984301, -1.5273472626377089) +description = Johnson township, IN +station = ('kajg', 0.0030192031879096846) +zone = ('inz067', 0.0024447748518728581) + +[fips1808357744] +centroid = (0.67517938195023741, -1.5253855649183448) +description = Palmyra township, IN +station = ('klwv', 0.0030965482186704721) +zone = ('inz067', 0.00027998877324756169) + +[fips1808372908] +centroid = (0.67505097807716818, -1.5237321272514679) +description = Steen township, IN +station = ('klwv', 0.0043275154158745168) +zone = ('inz067', 0.0015739795978628218) + +[fips1808379118] +centroid = (0.6779359200642523, -1.5224834837980061) +description = Vigo township, IN +station = ('klwv', 0.0051804840601892841) +zone = ('inz068', 0.0032767762543036419) + +[fips1808379217] +centroid = (0.67421259171768033, -1.5282376423556137) +description = Vincennes township, IN +station = ('kajg', 0.0022873718980802424) +zone = ('inz067', 0.0022156756551753717) + +[fips1808380738] +centroid = (0.67677543319130873, -1.52535526600253) +description = Washington township, IN +station = ('klwv', 0.0027753954794022088) +zone = ('inz067', 0.0015513325476184088) + +[fips1808384158] +centroid = (0.67828746428218889, -1.5244165581176374) +description = Widner township, IN +station = ('klwv', 0.0038829199603115337) +zone = ('inz067', 0.0032038287912177234) + +[fips1808416] +centroid = (0.69533207050448531, -1.5078387576570795) +description = Brownsburg town, IN +station = ('keye', 0.001248451528728415) +zone = ('inz046', 0.0019915176825632637) + +[fips1808470] +centroid = (0.67856409896863001, -1.5017920470102526) +description = Brownstown town, IN +station = ('kbak', 0.0070530100282326031) +zone = ('inz071', 0.00049514622883427707) + +[fips18085] +centroid = (0.71984871050724963, -1.4985671846980504) +description = Kosciusko County, IN +station = ('kasw', 0.00059754352480189863) +zone = ('inz016', 1.1966717966205955e-05) + +[fips1808513114] +centroid = (0.71798153982017354, -1.4983095391938708) +description = Clay township, IN +station = ('kasw', 0.0023950840207264835) +zone = ('inz016', 0.0018727053464373371) + +[fips1808521466] +centroid = (0.72081865978575288, -1.5015629376393433) +description = Etna township, IN +station = ('kasw', 0.0025725458854337449) +zone = ('inz016', 0.0024634777688674918) + +[fips1808525486] +centroid = (0.71771563890863221, -1.5014821987081461) +description = Franklin township, IN +station = ('krcr', 0.0022672301165054028) +zone = ('inz016', 0.0030658182348947704) + +[fips1808531882] +centroid = (0.71928435829361725, -1.500605240572189) +description = Harrison township, IN +station = ('kasw', 0.0021179609266550711) +zone = ('inz016', 0.0016430280545152636) + +[fips1808537170] +centroid = (0.71697020878510542, -1.496382189554186) +description = Jackson township, IN +station = ('kasw', 0.0036667530304068966) +zone = ('inz016', 0.0033067601453998759) + +[fips1808538052] +centroid = (0.72247050920301048, -1.4999146836003452) +description = Jefferson township, IN +station = ('kasw', 0.0024631638080786574) +zone = ('inz016', 0.0028176315958536678) + +[fips1808540950] +centroid = (0.71698247844974694, -1.4982660630422038) +description = Lake township, IN +station = ('kasw', 0.003392949112577572) +zone = ('inz016', 0.0028709405754628) + +[fips1808550364] +centroid = (0.71820701890623873, -1.4964797534593726) +description = Monroe township, IN +station = ('kasw', 0.0025211945086029198) +zone = ('inz016', 0.0022616759236884394) + +[fips1808560228] +centroid = (0.7209812022989911, -1.4980897324278748) +description = Plain township, IN +station = ('kasw', 0.00061097137153005323) +zone = ('inz016', 0.0011877821485223592) + +[fips1808561578] +centroid = (0.72084222173065493, -1.5001281024612789) +description = Prairie township, IN +station = ('kasw', 0.0015289758464405022) +zone = ('inz016', 0.0015482631854055152) + +[fips1808568400] +centroid = (0.72233437352135488, -1.5011640251855076) +description = Scott township, IN +station = ('kasw', 0.002970611102136107) +zone = ('inz016', 0.0031692917639920253) + +[fips1808568796] +centroid = (0.71753114015340391, -1.500121225864026) +description = Seward township, IN +station = ('krcr', 0.0031486170763147161) +zone = ('inz016', 0.0025982112747506415) + +[fips1808575842] +centroid = (0.72084459537843759, -1.4957544295288288) +description = Tippecanoe township, IN +station = ('kasw', 0.0018898540465826458) +zone = ('inz016', 0.0023279019500055151) + +[fips1808576760] +centroid = (0.72231351683679357, -1.4960531077237225) +description = Turkey Creek township, IN +station = ('kasw', 0.002516821765844347) +zone = ('inz016', 0.0031007088787375226) + +[fips1808578] +centroid = (0.67645506055381266, -1.5256865469478513) +description = Bruceville town, IN +station = ('klwv', 0.0025167861894966901) +zone = ('inz067', 0.0012034017992998245) + +[fips1808578488] +centroid = (0.72237652322279056, -1.4977562872742811) +description = Van Buren township, IN +station = ('kasw', 0.002027968721193046) +zone = ('inz016', 0.0026007635281273572) + +[fips1808580756] +centroid = (0.71953929853745613, -1.4959852667756974) +description = Washington township, IN +station = ('kasw', 0.0018567451740837233) +zone = ('inz016', 0.0019542523136019583) + +[fips1808581782] +centroid = (0.71939377298442475, -1.4981526166408241) +description = Wayne township, IN +station = ('kasw', 0.00098159569975972286) +zone = ('inz016', 0.00054230136215611339) + +[fips18087] +centroid = (0.72679817525637802, -1.4909702377030172) +description = LaGrange County, IN +station = ('kirs', 0.0029771859819856155) +zone = ('inz006', 4.8026144318870619e-06) + +[fips1808704] +centroid = (0.70748307021016232, -1.4828886476812899) +description = Bryant town, IN +station = ('kmie', 0.0078472022242372947) +zone = ('inz034', 0.0017973909909786518) + +[fips1808705752] +centroid = (0.7271213753272624, -1.4898438196570722) +description = Bloomfield township, IN +station = ('kirs', 0.0028345824856057661) +zone = ('inz006', 0.00090254953230759221) + +[fips1808713132] +centroid = (0.72715668333803019, -1.4919765770964242) +description = Clay township, IN +station = ('kirs', 0.0026782670210907813) +zone = ('inz006', 0.00082894596154060906) + +[fips1808713456] +centroid = (0.72544833761288563, -1.4921043875575479) +description = Clearspring township, IN +station = ('kirs', 0.0043753538521369333) +zone = ('inz006', 0.001596196996628015) + +[fips1808720206] +centroid = (0.72537876878890106, -1.4937804795981156) +description = Eden township, IN +station = ('kgsh', 0.0026060007067849654) +zone = ('inz006', 0.0025360166021703863) + +[fips1808729538] +centroid = (0.72845248558788089, -1.4883454719475278) +description = Greenfield township, IN +station = ('kirs', 0.0025005549118198873) +zone = ('inz006', 0.0025642346783712848) + +[fips1808738718] +centroid = (0.72545921101412558, -1.4898944516586727) +description = Johnson township, IN +station = ('kirs', 0.0044194258467009006) +zone = ('inz006', 0.0015668238748932964) + +[fips1808743722] +centroid = (0.72844936144851979, -1.4911399709727733) +description = Lima township, IN +station = ('kirs', 0.001321912007853207) +zone = ('inz006', 0.0016518105931921522) + +[fips1808749338] +centroid = (0.72541069086092003, -1.4881031678874732) +description = Milford township, IN +station = ('kirs', 0.0049335008927460277) +zone = ('inz006', 0.0025580724749385045) + +[fips1808752686] +centroid = (0.72694588247097436, -1.4939083424191169) +description = Newbury township, IN +station = ('kgsh', 0.0032060841022951599) +zone = ('inz006', 0.0021976322575971916) + +[fips1808772152] +centroid = (0.72700579962419531, -1.488015814158411) +description = Springfield township, IN +station = ('kirs', 0.0036430884066119325) +zone = ('inz006', 0.0022195873229715435) + +[fips1808778506] +centroid = (0.72834300108390326, -1.4935139154614587) +description = Van Buren township, IN +station = ('kirs', 0.002242713609950812) +zone = ('inz006', 0.0024439015319588854) + +[fips1808812] +centroid = (0.70663930823657828, -1.5142858991941914) +description = Buck Creek CDP, IN +station = ('klaf', 0.0027834809712046073) +zone = ('inz029', 0.0024590487295266701) + +[fips18089] +centroid = (0.72382711872400063, -1.5249698623971046) +description = Lake County, IN +station = ('kigq', 0.0023785025800170719) +zone = ('inz001', 0.00099321953315355065) + +[fips1808900000] +centroid = (0.72788350825173076, -1.5245428152357268) +description = County subdivisions not defined, IN +station = ('kgyy', 0.0017654607962429537) +zone = ('inz001', 0.0050620242375950227) + +[fips1808909820] +centroid = (0.72580091157508098, -1.5246351431531573) +description = Calumet township, IN +station = ('kgyy', 0.00097137455175274495) +zone = ('inz001', 0.0029825763543868339) + +[fips1808911026] +centroid = (0.72025345236078708, -1.5251028041262291) +description = Cedar Creek township, IN +station = ('kigq', 0.0051470728657350218) +zone = ('inz001', 0.0025851314707423289) + +[fips1808911476] +centroid = (0.72244375330557742, -1.5248605175194672) +description = Center township, IN +station = ('kigq', 0.0033456476672715863) +zone = ('inz001', 0.00043326401200378495) + +[fips1808919306] +centroid = (0.7204952851819435, -1.5233542460151186) +description = Eagle Creek township, IN +station = ('kvpz', 0.0047209721342939531) +zone = ('inz001', 0.00268428123939298) + +[fips1808931252] +centroid = (0.72241282607123203, -1.5267942550642142) +description = Hanover township, IN +station = ('kigq', 0.0026890650348976872) +zone = ('inz001', 0.0013413948479160595) + +[fips1808934132] +centroid = (0.72511131453432542, -1.5230480105445636) +description = Hobart township, IN +station = ('kgyy', 0.0023430623516996858) +zone = ('inz001', 0.0027431501336682772) + +[fips1808954414] +centroid = (0.72628894054052362, -1.5266537036995513) +description = North township, IN +station = ('kgyy', 0.00070899413764500315) +zone = ('inz001', 0.0036416068900934173) + +[fips1808966096] +centroid = (0.72394621999215669, -1.5237881523204568) +description = Ross township, IN +station = ('kgyy', 0.0027988764923118589) +zone = ('inz001', 0.0014803275641925328) + +[fips1808966870] +centroid = (0.72392984880377298, -1.5264940060729937) +description = St. John township, IN +station = ('kigq', 0.0014200938061884724) +zone = ('inz001', 0.0015117021104053313) + +[fips1808982574] +centroid = (0.72009157307266469, -1.5268516763966051) +description = West Creek township, IN +station = ('kigq', 0.0049616828091134709) +zone = ('inz001', 0.0030461603285184338) + +[fips1808984896] +centroid = (0.72234552617527514, -1.5228595673452259) +description = Winfield township, IN +station = ('kvpz', 0.0034924614550199255) +zone = ('inz001', 0.0017501988833569671) + +[fips1808992] +centroid = (0.71365455444521431, -1.5138303508061286) +description = Buffalo CDP, IN +station = ('kggp', 0.0057197314768492854) +zone = ('inz013', 0.0027064813771349614) + +[fips18091] +centroid = (0.72516704289734168, -1.5139811298002084) +description = LaPorte County, IN +station = ('kppo', 0.00041375920795030203) +zone = ('inz003', 8.2100071742026806e-05) + +[fips1809110720] +centroid = (0.72239851437136571, -1.5162104388537807) +description = Cass township, IN +station = ('kvpz', 0.0019669534996181251) +zone = ('inz003', 0.0032221093220313551) + +[fips1809111494] +centroid = (0.72673342354112913, -1.5142121764865872) +description = Center township, IN +station = ('kppo', 0.0012543302106346314) +zone = ('inz003', 0.0016360190127558231) + +[fips1809113744] +centroid = (0.72372791420931726, -1.5160538653665843) +description = Clinton township, IN +station = ('kvpz', 0.0018088252769128471) +zone = ('inz003', 0.0021288405287447874) + +[fips1809115040] +centroid = (0.72682601325794738, -1.5162464100896642) +description = Coolspring township, IN +station = ('kmgc', 0.0012465573294839559) +zone = ('inz003', 0.0024529213246350765) + +[fips1809117974] +centroid = (0.72087220648720407, -1.5162774944036421) +description = Dewey township, IN +station = ('kvpz', 0.0030352646975767604) +zone = ('inz002', 0.003715611396834859) + +[fips1809126224] +centroid = (0.7282866967622339, -1.5123210424288813) +description = Galena township, IN +station = ('kppo', 0.0029461677058251995) +zone = ('inz003', 0.0033837682481431906) + +[fips1809131198] +centroid = (0.72266483416192751, -1.5140443805323005) +description = Hanna township, IN +station = ('koxi', 0.0017556685362360089) +zone = ('inz003', 0.0024521494912989376) + +[fips1809135068] +centroid = (0.72830671568875427, -1.5107020575614389) +description = Hudson township, IN +station = ('ksbn', 0.0031696155888345148) +zone = ('inz003', 0.0039863834815526749) + +[fips1809136] +centroid = (0.70963719047955875, -1.5027581042045242) +description = Bunker Hill town, IN +station = ('kgus', 0.00065949393981526428) +zone = ('inz023', 0.0020653132731869753) + +[fips1809138736] +centroid = (0.72383338445601519, -1.5104874518766136) +description = Johnson township, IN +station = ('koxi', 0.0029117570291726943) +zone = ('inz003', 0.0028565100544801839) + +[fips1809139186] +centroid = (0.72691966762560933, -1.5123210598821739) +description = Kankakee township, IN +station = ('kppo', 0.001738455545620598) +zone = ('inz003', 0.0021557639598471208) + +[fips1809143812] +centroid = (0.72550251263286758, -1.510428581920944) +description = Lincoln township, IN +station = ('kppo', 0.0024657240141756076) +zone = ('inz003', 0.0026241310464556896) + +[fips1809148780] +centroid = (0.72837736661687502, -1.5161094017433827) +description = Michigan township, IN +station = ('kmgc', 0.00078754076195796893) +zone = ('inz003', 0.0036579384312937831) + +[fips1809152830] +centroid = (0.72534571225286826, -1.5162075590605149) +description = New Durham township, IN +station = ('kppo', 0.0018676249303078841) +zone = ('inz003', 0.0017446035379879074) + +[fips1809154090] +centroid = (0.72385089010841286, -1.5142814136980138) +description = Noble township, IN +station = ('kppo', 0.001733456563594755) +zone = ('inz003', 0.0012960012655372183) + +[fips1809160408] +centroid = (0.72557855662837689, -1.5123298737948965) +description = Pleasant township, IN +station = ('kppo', 0.001044011886912043) +zone = ('inz003', 0.0012610144868666002) + +[fips1809161596] +centroid = (0.72150333499801778, -1.5146955279696346) +description = Prairie township, IN +station = ('koxi', 0.0016544323590838455) +zone = ('inz012', 0.002072359635369515) + +[fips1809168346] +centroid = (0.72547685629286318, -1.5143169136949997) +description = Scipio township, IN +station = ('kppo', 0.00044713758415388847) +zone = ('inz003', 0.00047970419579979658) + +[fips1809172170] +centroid = (0.72815365031335444, -1.5142601904943096) +description = Springfield township, IN +station = ('kmgc', 0.00083976720017500043) +zone = ('inz003', 0.0030512682507400084) + +[fips1809177408] +centroid = (0.72370499803623867, -1.5123661242834605) +description = Union township, IN +station = ('kppo', 0.0020920655534809964) +zone = ('inz003', 0.0018168037176566688) + +[fips1809180774] +centroid = (0.72480000015564727, -1.512339926891388) +description = Washington township, IN +station = ('kppo', 0.0012691957512821475) +zone = ('inz003', 0.0012070866586019471) + +[fips1809184554] +centroid = (0.72692966836222328, -1.5106673080560318) +description = Wills township, IN +station = ('kppo', 0.002678256783153656) +zone = ('inz003', 0.0030212014950463969) + +[fips1809226] +centroid = (0.71828845596913671, -1.5004374097113173) +description = Burket town, IN +station = ('kasw', 0.0026851459325990604) +zone = ('inz016', 0.0021063153633451158) + +[fips1809244] +centroid = (0.7065234183742457, -1.5078651644886623) +description = Burlington town, IN +station = ('kggp', 0.0040326093821796936) +zone = ('inz021', 0.002864566624318418) + +[fips18093] +centroid = (0.67788265261548142, -1.509497221872202) +description = Lawrence County, IN +station = ('kbmg', 0.0056888806601052529) +zone = ('inz070', 6.4766792785793254e-05) + +[fips1809306436] +centroid = (0.67585794851012027, -1.5072458344035919) +description = Bono township, IN +station = ('kbmg', 0.0082209089373635313) +zone = ('inz070', 0.0026590476474375371) + +[fips1809316] +centroid = (0.71141609986636145, -1.5113621585378356) +description = Burnettsville town, IN +station = ('kggp', 0.0030618873023027559) +zone = ('inz021', 0.0031398545062068651) + +[fips1809330258] +centroid = (0.67723155753802489, -1.5071196121920878) +description = Guthrie township, IN +station = ('kbmg', 0.0070510815308961481) +zone = ('inz070', 0.0019152784303425076) + +[fips1809336054] +centroid = (0.67832755449510718, -1.5114904576911496) +description = Indian Creek township, IN +station = ('kbmg', 0.0049728145004502601) +zone = ('inz070', 0.001666308590630008) + +[fips1809346980] +centroid = (0.67632534768380448, -1.5095040461095777) +description = Marion township, IN +station = ('kbmg', 0.0071857902293203709) +zone = ('inz070', 0.0015828312099632133) + +[fips1809347304] +centroid = (0.67978376995650869, -1.5100468086003627) +description = Marshall township, IN +station = ('kbmg', 0.0037523272472439672) +zone = ('inz070', 0.0019392918574218842) + +[fips1809352] +centroid = (0.67748602654296575, -1.5165824732371358) +description = Burns City CDP, IN +station = ('kbmg', 0.0069205638701809605) +zone = ('inz069', 0.0022689026463092021) + +[fips1809359040] +centroid = (0.67999610671330635, -1.5120213170364365) +description = Perry township, IN +station = ('kbmg', 0.0033072119463899035) +zone = ('inz070', 0.002909149255734083) + +[fips1809360624] +centroid = (0.67965953742035179, -1.5069412046359489) +description = Pleasant Run township, IN +station = ('kbmg', 0.0052107340018075245) +zone = ('inz070', 0.0026066413762932551) + +[fips1809369102] +centroid = (0.67817635662200704, -1.5085433645294022) +description = Shawswick township, IN +station = ('kbmg', 0.0056928920969513443) +zone = ('inz070', 0.00073406074485574807) + +[fips1809370] +centroid = (0.72641065980255781, -1.5206022283038665) +description = Burns Harbor town, IN +station = ('kvpz', 0.0033851393713560159) +zone = ('inz002', 0.0028861021355212246) + +[fips1809372044] +centroid = (0.67646923262733882, -1.5115341258290347) +description = Spice Valley township, IN +station = ('kbmg', 0.0068291577520377816) +zone = ('inz070', 0.0021865762568186666) + +[fips18095] +centroid = (0.70103249037442406, -1.4961390651893831) +description = Madison County, IN +station = ('kaid', 0.0016551900741279941) +zone = ('inz040', 9.0074175559561861e-05) + +[fips1809500406] +centroid = (0.69810611427089753, -1.4944822590370501) +description = Adams township, IN +station = ('kaid', 0.0020669010645214272) +zone = ('inz040', 0.0030992336845927899) + +[fips1809501486] +centroid = (0.69969841305407698, -1.4955630192697624) +description = Anderson township, IN +station = ('kaid', 0.001079117356349032) +zone = ('inz040', 0.0013159137343698767) + +[fips1809506562] +centroid = (0.70411179222701004, -1.4962499285034701) +description = Boone township, IN +station = ('kmzz', 0.0026525272116061918) +zone = ('inz040', 0.0031621225593249438) + +[fips1809518820] +centroid = (0.70398246332943726, -1.4979061063372723) +description = Duck Creek township, IN +station = ('kmzz', 0.0033081406174512115) +zone = ('inz040', 0.0033336387724896381) + +[fips1809522648] +centroid = (0.69804425980220697, -1.4963099154698609) +description = Fall Creek township, IN +station = ('kaid', 0.00262561056467173) +zone = ('inz040', 0.0029129467926957524) + +[fips1809529160] +centroid = (0.69794783036103425, -1.4980659959500475) +description = Green township, IN +station = ('kaid', 0.0036429007036819414) +zone = ('inz048', 0.0030047412251973608) + +[fips1809532] +centroid = (0.72303829971526923, -1.481289315221225) +description = Butler city, IN +station = ('kgwb', 0.0034159858028696304) +zone = ('inz009', 0.0017458998801546705) + +[fips1809537188] +centroid = (0.7005977114044597, -1.4978105495607257) +description = Jackson township, IN +station = ('kaid', 0.0027238322445342312) +zone = ('inz040', 0.0013651438600586418) + +[fips1809540752] +centroid = (0.70122637900102802, -1.496250225209443) +description = Lafayette township, IN +station = ('kaid', 0.0018328237559276182) +zone = ('inz040', 0.00030165127785349271) + +[fips1809550382] +centroid = (0.70274469327721545, -1.4950079696610432) +description = Monroe township, IN +station = ('kaid', 0.0026340643715629638) +zone = ('inz040', 0.0019724662505751886) + +[fips1809560156] +centroid = (0.70237941331806553, -1.4974819564224526) +description = Pipe Creek township, IN +station = ('kaid', 0.0032905780700437704) +zone = ('inz040', 0.0017816319440086483) + +[fips1809564116] +centroid = (0.70134062825386356, -1.4944098104197996) +description = Richland township, IN +station = ('kaid', 0.0011761197548532567) +zone = ('inz040', 0.001338226674180102) + +[fips1809573556] +centroid = (0.69935611908117601, -1.4976424045405885) +description = Stony Creek township, IN +station = ('kaid', 0.002688002280036822) +zone = ('inz040', 0.0019910921515122232) + +[fips1809577426] +centroid = (0.69980199834518286, -1.4940757544009682) +description = Union township, IN +station = ('kaid', 0.00040179304026041507) +zone = ('inz040', 0.0019195741387746895) + +[fips1809578524] +centroid = (0.70411865137097041, -1.4944422909971793) +description = Van Buren township, IN +station = ('kmzz', 0.0026663869543141557) +zone = ('inz032', 0.003040930128926902) + +[fips1809622] +centroid = (0.68124637332297255, -1.4924863703176394) +description = Butlerville CDP, IN +station = ('kbak', 0.0066415654145144621) +zone = ('inz072', 0.0016781162307037965) + +[fips18097] +centroid = (0.69434391744188362, -1.5033532091195767) +description = Marion County, IN +station = ('kind', 0.0022932558947245853) +zone = ('inz047', 4.2408385374217778e-05) + +[fips1809711512] +centroid = (0.6942021443467441, -1.5034177513953153) +description = Center township, IN +station = ('kind', 0.0021811428016155349) +zone = ('inz047', 0.00011866483003339975) + +[fips1809712] +centroid = (0.69727271955307024, -1.4920316596876173) +description = Cadiz town, IN +station = ('kaid', 0.0033733220173761732) +zone = ('inz049', 0.0012603240398784883) + +[fips1809717092] +centroid = (0.69252751838274818, -1.5057805781366653) +description = Decatur township, IN +station = ('kind', 0.00066880591320299919) +zone = ('inz047', 0.0025628485413629241) + +[fips1809725504] +centroid = (0.69250004690032163, -1.5011714777414136) +description = Franklin township, IN +station = ('kgez', 0.0032741255954765367) +zone = ('inz047', 0.0024991693406431828) + +[fips1809742444] +centroid = (0.69594895712860272, -1.501215931277462) +description = Lawrence township, IN +station = ('ktyq', 0.0041653643473490657) +zone = ('inz047', 0.0023374701707528371) + +[fips1809759058] +centroid = (0.692489749457735, -1.50370861051516) +description = Perry township, IN +station = ('kind', 0.0018445709779433192) +zone = ('inz047', 0.0018456077496512826) + +[fips1809759742] +centroid = (0.69596236125725797, -1.5056301133018508) +description = Pike township, IN +station = ('keye', 0.00086682955742932411) +zone = ('inz047', 0.0023736606895547207) + +[fips1809780144] +centroid = (0.69420710108181982, -1.5012829344674461) +description = Warren township, IN +station = ('kgez', 0.0044403499078076924) +zone = ('inz047', 0.0016299209630647644) + +[fips1809780792] +centroid = (0.69597323465849792, -1.5034773020293934) +description = Washington township, IN +station = ('keye', 0.0022346004829622485) +zone = ('inz047', 0.0016544347229584281) + +[fips1809781800] +centroid = (0.69414990664223186, -1.5055373839586923) +description = Wayne township, IN +station = ('kind', 0.0010091005661107663) +zone = ('inz047', 0.0016524445899936426) + +[fips1809874] +centroid = (0.69485194788055415, -1.4865112356234369) +description = Cambridge City town, IN +station = ('kmie', 0.0079647481891449521) +zone = ('inz050', 0.0023419217634660498) + +[fips18099] +centroid = (0.72125736574653432, -1.505678720721519) +description = Marshall County, IN +station = ('krcr', 0.0047707074294189933) +zone = ('inz014', 9.4842302045844564e-05) + +[fips1809906778] +centroid = (0.72131279740357757, -1.5031822890259288) +description = Bourbon township, IN +station = ('krcr', 0.0047340276936743723) +zone = ('inz014', 0.0017807391937652885) + +[fips1809910] +centroid = (0.70878131592096572, -1.510371788907084) +description = Camden town, IN +station = ('kggp', 0.0028105888475827767) +zone = ('inz021', 0.00058580419907751987) + +[fips1809911530] +centroid = (0.72125736574653432, -1.505678720721519) +description = Center township, IN +station = ('krcr', 0.0047707074294189933) +zone = ('inz014', 9.4842302045844564e-05) + +[fips1809927450] +centroid = (0.72306018614408929, -1.5032552786952473) +description = German township, IN +station = ('kasw', 0.0046545470674941502) +zone = ('inz014', 0.0024943165266431864) + +[fips1809929178] +centroid = (0.71936809919112787, -1.5062284470760197) +description = Green township, IN +station = ('krcr', 0.0031615393828862753) +zone = ('inz014', 0.0019563462431770717) + +[fips1809954432] +centroid = (0.72293895557424581, -1.5060767605107288) +description = North township, IN +station = ('ksbn', 0.004874136194204402) +zone = ('inz014', 0.0017270606496358671) + +[fips1809960966] +centroid = (0.7230684590047437, -1.5081534056146291) +description = Polk township, IN +station = ('koxi', 0.0036905673434275759) +zone = ('inz014', 0.002662599628472327) + +[fips1809975878] +centroid = (0.71941778871493223, -1.5027820326685688) +description = Tippecanoe township, IN +station = ('krcr', 0.002963460181426862) +zone = ('inz014', 0.0027783684496231775) + +[fips1809977444] +centroid = (0.71948201683140567, -1.5080837146175969) +description = Union township, IN +station = ('koxi', 0.0038074149317416199) +zone = ('inz014', 0.0026020892728566103) + +[fips1809979820] +centroid = (0.71950474101826656, -1.5046112948042916) +description = Walnut township, IN +station = ('krcr', 0.0028958242144743879) +zone = ('inz014', 0.0018899210664911961) + +[fips1809982304] +centroid = (0.7213047688890184, -1.5082559786147689) +description = West township, IN +station = ('koxi', 0.0031889667361325864) +zone = ('inz014', 0.0020308132338048767) + +[fips1810000] +centroid = (0.67459996754516038, -1.5055663040643981) +description = Campbellsburg town, IN +station = ('kbmg', 0.0099376319584743873) +zone = ('inz077', 0.0023270416992830765) + +[fips1810036] +centroid = (0.67832879367887622, -1.4887804254504173) +description = Canaan CDP, IN +station = ('kbak', 0.010722695693735986) +zone = ('inz079', 0.0023308377047117023) + +[fips1810090] +centroid = (0.67487998817035033, -1.5183882781477118) +description = Cannelburg town, IN +station = ('khnb', 0.0073200761799549867) +zone = ('inz068', 0.0011854836960488592) + +[fips18101] +centroid = (0.67553530694459674, -1.5149780269623623) +description = Martin County, IN +station = ('kbmg', 0.0081582008803701266) +zone = ('inz069', 4.9757964960765655e-05) + +[fips1810108] +centroid = (0.66168124986140864, -1.5138760609792381) +description = Cannelton city, IN +station = ('khnb', 0.0065818567465007211) +zone = ('kyz023', 0.0013369582863342667) + +[fips1810111548] +centroid = (0.6750300166728519, -1.5153437258005327) +description = Center township, IN +station = ('khnb', 0.0076419113203933615) +zone = ('inz069', 0.00061380524705231582) + +[fips1810130420] +centroid = (0.67456774876716852, -1.5138177844355141) +description = Halbert township, IN +station = ('khnb', 0.007570810924234634) +zone = ('inz069', 0.0013712806670596366) + +[fips1810145036] +centroid = (0.67314659697043966, -1.5143020783963577) +description = Lost River township, IN +station = ('khnb', 0.0061176341030951551) +zone = ('inz069', 0.0024956992938781008) + +[fips1810149995] +centroid = (0.67747880087986245, -1.5139105661385501) +description = Mitcheltree township, IN +station = ('kbmg', 0.0060560285798089532) +zone = ('inz069', 0.0020782596688911003) + +[fips1810159076] +centroid = (0.6767999376140067, -1.5158040389374539) +description = Perry township, IN +station = ('kbmg', 0.0072221703219432446) +zone = ('inz069', 0.0013699047250546599) + +[fips1810166582] +centroid = (0.67308516138076957, -1.5163807131756053) +description = Rutherford township, IN +station = ('khnb', 0.0055743528591548526) +zone = ('inz069', 0.0027198875313884864) + +[fips1810198] +centroid = (0.69113430930734365, -1.5203192929788256) +description = Carbon town, IN +station = ('khuf', 0.0038302406067043065) +zone = ('inz044', 0.0033204457631818276) + +[fips1810270] +centroid = (0.67999385523857125, -1.5254426197315925) +description = Carlisle town, IN +station = ('krsv', 0.0035027873761139983) +zone = ('inz060', 0.0022415362057928807) + +[fips18103] +centroid = (0.71162101897383812, -1.5017556219887636) +description = Miami County, IN +station = ('kgus', 0.0025605885207272893) +zone = ('inz023', 6.0047480895623259e-05) + +[fips1810301018] +centroid = (0.71490695035656782, -1.5029080105339778) +description = Allen township, IN +station = ('krcr', 0.001954336161390294) +zone = ('inz015', 0.0025145233810214946) + +[fips1810309586] +centroid = (0.7103590761114762, -1.5006342130377721) +description = Butler township, IN +station = ('kgus', 0.0024171244075639219) +zone = ('inz023', 0.0014792284707847709) + +[fips1810313150] +centroid = (0.70870748849360643, -1.5018767478388519) +description = Clay township, IN +station = ('kokk', 0.0012838483734352818) +zone = ('inz031', 0.0023063218663516723) + +[fips1810317272] +centroid = (0.70869340368654288, -1.50306074429682) +description = Deer Creek township, IN +station = ('kgus', 0.00088386097189295488) +zone = ('inz031', 0.0021214799606873542) + +[fips1810321412] +centroid = (0.71178233975659999, -1.5006465176089987) +description = Erie township, IN +station = ('kgus', 0.0032144736783106254) +zone = ('inz023', 0.00087906750798852622) + +[fips1810331918] +centroid = (0.70861699317189053, -1.5005830399841038) +description = Harrison township, IN +station = ('kokk', 0.001672116139784089) +zone = ('inz031', 0.0027605833894570582) + +[fips1810337206] +centroid = (0.70864139287483341, -1.4992874646270558) +description = Jackson township, IN +station = ('kokk', 0.0024820524462026497) +zone = ('inz023', 0.0034748580951458937) + +[fips1810338070] +centroid = (0.71262173840705412, -1.5027894677711824) +description = Jefferson township, IN +station = ('kgus', 0.0032049558163887576) +zone = ('inz023', 0.0013108194301456812) + +[fips1810342] +centroid = (0.69752919568665084, -1.5035726842730148) +description = Carmel city, IN +station = ('ktyq', 0.0017648189153780867) +zone = ('inz039', 0.002268947065057468) + +[fips1810359094] +centroid = (0.7146999368539888, -1.5010809475131126) +description = Perry township, IN +station = ('krcr', 0.0030016528972952646) +zone = ('inz023', 0.0031809454631860777) + +[fips1810359346] +centroid = (0.71167894645171181, -1.5024876654369275) +description = Peru township, IN +station = ('kgus', 0.0023587740533738645) +zone = ('inz023', 0.00055570678314655552) + +[fips1810360174] +centroid = (0.71026605006234489, -1.5032878814456745) +description = Pipe Creek township, IN +station = ('kgus', 0.00082467760457090235) +zone = ('inz023', 0.0017326117346920119) + +[fips1810364134] +centroid = (0.71322954931906113, -1.5011934688899888) +description = Richland township, IN +station = ('krcr', 0.0040592654922840784) +zone = ('inz023', 0.0017237345041872857) + +[fips1810377462] +centroid = (0.71386074764304486, -1.503170717492988) +description = Union township, IN +station = ('krcr', 0.0028634989142876026) +zone = ('inz023', 0.0025311715908225944) + +[fips1810380810] +centroid = (0.71032596721556585, -1.5019366824453655) +description = Washington township, IN +station = ('kgus', 0.0015216630993025726) +zone = ('inz023', 0.0012424553470645888) + +[fips18105] +centroid = (0.6834840425036619, -1.5101169010231228) +description = Monroe County, IN +station = ('kbmg', 0.0012771381020784968) +zone = ('inz062', 4.0042833329988103e-06) + +[fips1810503808] +centroid = (0.68591156860038327, -1.5121068730763692) +description = Bean Blossom township, IN +station = ('kbmg', 0.0026300644241808386) +zone = ('inz053', 0.0027140415056704438) + +[fips1810504816] +centroid = (0.68493350354085825, -1.5083880651325599) +description = Benton township, IN +station = ('kbmg', 0.0030744572077396736) +zone = ('inz062', 0.0019697905148710658) + +[fips1810505878] +centroid = (0.68436045958755087, -1.5099602053628787) +description = Bloomington township, IN +station = ('kbmg', 0.0017459901626154083) +zone = ('inz062', 0.00088180298218618449) + +[fips1810513420] +centroid = (0.68144795885157783, -1.5097510451053198) +description = Clear Creek township, IN +station = ('kbmg', 0.0024111914217378543) +zone = ('inz062', 0.0020579401286684906) + +[fips1810536072] +centroid = (0.68155552349337822, -1.5119165449214391) +description = Indian Creek township, IN +station = ('kbmg', 0.0017459011914504792) +zone = ('inz062', 0.0023849410954272792) + +[fips1810559112] +centroid = (0.68273670997125058, -1.5100766711838642) +description = Perry township, IN +station = ('kbmg', 0.001410651811431239) +zone = ('inz062', 0.00075046147612491099) + +[fips1810560984] +centroid = (0.68139067714552737, -1.5075037766137442) +description = Polk township, IN +station = ('kbmg', 0.0038041583592696346) +zone = ('inz062', 0.0029142785154891823) + +[fips1810564152] +centroid = (0.68415529613397896, -1.5118230825399948) +description = Richland township, IN +station = ('kbmg', 0.00086096909615632168) +zone = ('inz062', 0.0014847062212830359) + +[fips1810567590] +centroid = (0.68286378739408826, -1.5082199724723) +description = Salt Creek township, IN +station = ('kbmg', 0.0027689205910212617) +zone = ('inz062', 0.0015948169011030635) + +[fips1810578542] +centroid = (0.68281144496982082, -1.5119439291374028) +description = Van Buren township, IN +station = ('kbmg', 0.0005086728506603791) +zone = ('inz062', 0.001572413981323425) + +[fips1810580828] +centroid = (0.68593270453762489, -1.5098079951988124) +description = Washington township, IN +station = ('kbmg', 0.0030338154609684028) +zone = ('inz062', 0.0024574427495949597) + +[fips1810612] +centroid = (0.69353656303649613, -1.493503059513511) +description = Carthage town, IN +station = ('kgez', 0.0040742166771050442) +zone = ('inz057', 0.0024847011369593741) + +[fips18107] +centroid = (0.69883499867311538, -1.5165639727470646) +description = Montgomery County, IN +station = ('klaf', 0.0066131090975874171) +zone = ('inz036', 8.0247975875868622e-06) + +[fips1810708326] +centroid = (0.69660968642353016, -1.5185675932750615) +description = Brown township, IN +station = ('klaf', 0.0088276120481808017) +zone = ('inz036', 0.0027006564691183219) + +[fips1810712790] +centroid = (0.69661425918617037, -1.514031203296448) +description = Clark township, IN +station = ('ktyq', 0.0069615700748322084) +zone = ('inz036', 0.0029558707371714569) + +[fips1810714014] +centroid = (0.7011197219304387, -1.5185690244450483) +description = Coal Creek township, IN +station = ('klaf', 0.0043522535016627967) +zone = ('inz036', 0.002745838770285267) + +[fips1810725522] +centroid = (0.69964507579213608, -1.5140871236456817) +description = Franklin township, IN +station = ('klaf', 0.0063407235440322745) +zone = ('inz036', 0.002067923343167757) + +[fips1810746026] +centroid = (0.70112174651237102, -1.5161057540052461) +description = Madison township, IN +station = ('klaf', 0.0044242099861712958) +zone = ('inz036', 0.0023128515159504233) + +[fips1810764620] +centroid = (0.69820039695709035, -1.5192705769911798) +description = Ripley township, IN +station = ('klaf', 0.0073204838309009557) +zone = ('inz036', 0.0021607366851484284) + +[fips1810768436] +centroid = (0.69635696274784131, -1.5161599464785205) +description = Scott township, IN +station = ('ktyq', 0.0086006961611164983) +zone = ('inz036', 0.0025000891472400939) + +[fips1810773898] +centroid = (0.70116197635162947, -1.5141611954191363) +description = Sugar Creek township, IN +station = ('klaf', 0.004972843216125818) +zone = ('inz036', 0.0029685772239933291) + +[fips1810777480] +centroid = (0.69879471647397939, -1.5166490051882218) +description = Union township, IN +station = ('klaf', 0.0066459894474079472) +zone = ('inz036', 7.1089193846955072e-05) + +[fips1810779838] +centroid = (0.69806319662459104, -1.5141125007330059) +description = Walnut township, IN +station = ('ktyq', 0.0067399285717885627) +zone = ('inz036', 0.0020378090363540298) + +[fips1810781818] +centroid = (0.69956854310443606, -1.5189753196416198) +description = Wayne township, IN +station = ('klaf', 0.0059339789093657601) +zone = ('inz036', 0.0019780429633639322) + +[fips18109] +centroid = (0.68910217009936914, -1.5087927546262196) +description = Morgan County, IN +station = ('kind', 0.0046426333365103068) +zone = ('inz054', 2.6206508285196263e-05) + +[fips1810900442] +centroid = (0.69044162303381207, -1.5118081948814752) +description = Adams township, IN +station = ('kind', 0.0052951267964190772) +zone = ('inz054', 0.0027088533452354832) + +[fips1810902440] +centroid = (0.68901839429527334, -1.5115747047341437) +description = Ashland township, IN +station = ('kbmg', 0.0057235270570481344) +zone = ('inz054', 0.0021651213632982612) + +[fips1810903178] +centroid = (0.68692729786516649, -1.5105131082166179) +description = Baker township, IN +station = ('kbmg', 0.003754312091854338) +zone = ('inz054', 0.0025406764558751843) + +[fips1810908344] +centroid = (0.69103805439909616, -1.5075567822631275) +description = Brown township, IN +station = ('kind', 0.0024876234266999063) +zone = ('inz054', 0.0021684311635395141) + +[fips1810913168] +centroid = (0.68976394659184781, -1.5080116848793672) +description = Clay township, IN +station = ('kind', 0.0037802367090570186) +zone = ('inz054', 0.00089884957288495688) + +[fips1810929196] +centroid = (0.6889563129337799, -1.5063243703717091) +description = Green township, IN +station = ('kind', 0.0042412857529419657) +zone = ('inz054', 0.001892526932237601) + +[fips1810929988] +centroid = (0.6898836063653645, -1.510146379634189) +description = Gregg township, IN +station = ('kind', 0.0046331732741474911) +zone = ('inz054', 0.0013299502176933717) + +[fips1810931936] +centroid = (0.68999162479277043, -1.5058038782821794) +description = Harrison township, IN +station = ('kind', 0.0031964123948966293) +zone = ('inz054', 0.002463157881861086) + +[fips1810937224] +centroid = (0.68742639221806678, -1.5062857811419477) +description = Jackson township, IN +station = ('kind', 0.0057668016556120388) +zone = ('inz054', 0.0025348423942022778) + +[fips1810938088] +centroid = (0.68832080364654369, -1.5095300340621396) +description = Jefferson township, IN +station = ('kbmg', 0.0053090211833836986) +zone = ('inz054', 0.00096087101028212224) + +[fips1810946044] +centroid = (0.6909121114402722, -1.506184761484842) +description = Madison township, IN +station = ('kind', 0.0022830478684431705) +zone = ('inz054', 0.002706782607934141) + +[fips1810950400] +centroid = (0.69097016109119358, -1.5092713239071167) +description = Monroe township, IN +station = ('kind', 0.0033966974539130198) +zone = ('inz054', 0.0019270486356100841) + +[fips1810954] +centroid = (0.69721250569387649, -1.5265447427943495) +description = Cayuga town, IN +station = ('kdnv', 0.0047351554738722179) +zone = ('inz043', 0.0016324941652230067) + +[fips1810963144] +centroid = (0.68772775822000853, -1.511280267689332) +description = Ray township, IN +station = ('kbmg', 0.0044459985101674305) +zone = ('inz054', 0.0023643340916510202) + +[fips1810980846] +centroid = (0.68779125329819613, -1.5082266221767502) +description = Washington township, IN +station = ('kbmg', 0.0052559809133142787) +zone = ('inz054', 0.0013575974583024111) + +[fips1811044] +centroid = (0.68689118700294272, -1.4824317553897028) +description = Cedar Grove town, IN +station = ('khao', 0.0056762592617191094) +zone = ('inz066', 0.0019537496778478532) + +[fips1811062] +centroid = (0.7220226926235338, -1.5261127039913107) +description = Cedar Lake town, IN +station = ('kigq', 0.0032223755803177652) +zone = ('inz001', 0.001115672414437708) + +[fips18111] +centroid = (0.71492873206563268, -1.5254556747943973) +description = Newton County, IN +station = ('krzl', 0.0028049809207414053) +zone = ('inz010', 0.00012906601788597417) + +[fips1811103970] +centroid = (0.71487804770415475, -1.5263989205353452) +description = Beaver township, IN +station = ('krzl', 0.0035129576725115149) +zone = ('inz010', 0.00077645244839749542) + +[fips1811114302] +centroid = (0.71632726439525585, -1.5242635101955302) +description = Colfax township, IN +station = ('krzl', 0.0024898892140765455) +zone = ('inz010', 0.0017287621388373628) + +[fips1811128872] +centroid = (0.71173392432314964, -1.5241042139947005) +description = Grant township, IN +station = ('krzl', 0.0034689690056020281) +zone = ('inz019', 0.0030258394391711086) + +[fips1811136522] +centroid = (0.7133319652395681, -1.524225304938204) +description = Iroquois township, IN +station = ('krzl', 0.0023232602524388109) +zone = ('inz010', 0.0017187231758232736) + +[fips1811137242] +centroid = (0.71496690241637384, -1.5243983717868317) +description = Jackson township, IN +station = ('krzl', 0.0020142533828563991) +zone = ('inz010', 0.00075229350968376602) + +[fips1811138106] +centroid = (0.71175097618994165, -1.5263137484678477) +description = Jefferson township, IN +station = ('krzl', 0.0045461952116244214) +zone = ('inz010', 0.0031456295110295607) + +[fips1811140968] +centroid = (0.71789041617992699, -1.5265195576932429) +description = Lake township, IN +station = ('krzl', 0.004798690242349077) +zone = ('inz010', 0.0031941535480808974) + +[fips1811143830] +centroid = (0.71795951376501332, -1.524117653029941) +description = Lincoln township, IN +station = ('krzl', 0.0037048721468337302) +zone = ('inz010', 0.0032839052486274079) + +[fips1811145594] +centroid = (0.71633775382406029, -1.5264509662536396) +description = McClellan township, IN +station = ('krzl', 0.0039008786659813941) +zone = ('inz010', 0.001725787011643386) + +[fips1811180864] +centroid = (0.71327026785051018, -1.5264049768278496) +description = Washington township, IN +station = ('krzl', 0.0038003009249236953) +zone = ('inz010', 0.0017303239392632967) + +[fips18113] +centroid = (0.72258016823991322, -1.4908227224746384) +description = Noble County, IN +station = ('kgsh', 0.0053102550984677312) +zone = ('inz008', 3.8743073553212456e-05) + +[fips1811300838] +centroid = (0.72249761416629399, -1.4909404972925631) +description = Albion township, IN +station = ('kasw', 0.005843010135921897) +zone = ('inz008', 0.0001041160565392887) + +[fips1811301036] +centroid = (0.72241816677874315, -1.4880421686301162) +description = Allen township, IN +station = ('kgwb', 0.0029417085949469506) +zone = ('inz008', 0.0020836663688117356) + +[fips1811320764] +centroid = (0.72412104962332902, -1.4918917890013623) +description = Elkhart township, IN +station = ('kgsh', 0.0040504519547867974) +zone = ('inz008', 0.0017735462378940482) + +[fips1811329214] +centroid = (0.72084175049175681, -1.4900722832561584) +description = Green township, IN +station = ('kgwb', 0.0039972579355756453) +zone = ('inz008', 0.0017891832609994) + +[fips1811338124] +centroid = (0.72239635016309323, -1.4897620858882015) +description = Jefferson township, IN +station = ('kgwb', 0.0040781579500241485) +zone = ('inz008', 0.00080306709738525608) + +[fips1811354108] +centroid = (0.72087030407831953, -1.491841052280007) +description = Noble township, IN +station = ('kasw', 0.0047966833764837074) +zone = ('inz008', 0.001840534633394031) + +[fips1811356754] +centroid = (0.72403877480238998, -1.4899036146372457) +description = Orange township, IN +station = ('kgwb', 0.0050291913998826432) +zone = ('inz008', 0.0016453993954627191) + +[fips1811359130] +centroid = (0.723958786362771, -1.4939393569199246) +description = Perry township, IN +station = ('kgsh', 0.0026157125316395792) +zone = ('inz008', 0.002737516655395132) + +[fips1811371756] +centroid = (0.72249517070534119, -1.4938788463547579) +description = Sparta township, IN +station = ('kgsh', 0.0034570907995020231) +zone = ('inz008', 0.0022988946283969557) + +[fips1811374474] +centroid = (0.72104438321791342, -1.4880623795428543) +description = Swan township, IN +station = ('kgwb', 0.0024970429217274219) +zone = ('inz008', 0.0025516981029037847) + +[fips1811380882] +centroid = (0.72128543064090633, -1.4937168274402954) +description = Washington township, IN +station = ('kasw', 0.0034821182035780431) +zone = ('inz008', 0.0025144630712024851) + +[fips1811381836] +centroid = (0.72404710002292194, -1.4877352350278603) +description = Wayne township, IN +station = ('kgwb', 0.0039265653621487874) +zone = ('inz008', 0.0027559486476368125) + +[fips1811385994] +centroid = (0.7224414320176723, -1.4920893253661032) +description = York township, IN +station = ('kasw', 0.00502581645833037) +zone = ('inz008', 0.00096130899771483069) + +[fips18115] +centroid = (0.67964040861175001, -1.4829067641989255) +description = Ohio County, IN +station = ('kcvg', 0.0044665712769878779) +zone = ('inz075', 0.00016735111439835157) + +[fips1811510738] +centroid = (0.67944330857932222, -1.4834013032424782) +description = Cass township, IN +station = ('kcvg', 0.0048986349249286803) +zone = ('inz075', 0.00052283606793696188) + +[fips1811559760] +centroid = (0.67947198433893252, -1.4849026529183362) +description = Pike township, IN +station = ('kcvg', 0.005963046697948355) +zone = ('inz075', 0.001578941245402831) + +[fips1811562928] +centroid = (0.67993807451567756, -1.4819943933324455) +description = Randolph township, IN +station = ('kcvg', 0.0036980977757331891) +zone = ('inz075', 0.00073078402889095522) + +[fips1811577498] +centroid = (0.68028607571523281, -1.4829960901500427) +description = Union township, IN +station = ('kcvg', 0.0042960931893772534) +zone = ('inz075', 0.00048232590024513823) + +[fips18117] +centroid = (0.67277871647070431, -1.5095223022535533) +description = Orange County, IN +station = ('khnb', 0.008164312850354731) +zone = ('inz076', 0.00012589617640495983) + +[fips1811725990] +centroid = (0.6727422565426302, -1.5116536808827963) +description = French Lick township, IN +station = ('khnb', 0.0069293438741812223) +zone = ('inz076', 0.0015884331922702436) + +[fips1811729556] +centroid = (0.67097086952490348, -1.5099327513337446) +description = Greenfield township, IN +station = ('khnb', 0.0068744656517348212) +zone = ('inz076', 0.0017273957741347681) + +[fips1811737260] +centroid = (0.67112260845007188, -1.5120705876812202) +description = Jackson township, IN +station = ('khnb', 0.005572086517438582) +zone = ('inz076', 0.002468834342360034) + +[fips1811746] +centroid = (0.68793489389563522, -1.519755464363969) +description = Center Point town, IN +station = ('khuf', 0.0033044873974676452) +zone = ('inz052', 0.00067450422974872225) + +[fips1811754648] +centroid = (0.67426254304087241, -1.5070438474492587) +description = Northeast township, IN +station = ('kbmg', 0.0097470563706066465) +zone = ('inz076', 0.0025629445020525833) + +[fips1811755152] +centroid = (0.67456598598462403, -1.5118295751648123) +description = Northwest township, IN +station = ('khnb', 0.0082977601561482778) +zone = ('inz076', 0.0025539655367143098) + +[fips1811756826] +centroid = (0.67437014258925776, -1.5104912741476755) +description = Orangeville township, IN +station = ('khnb', 0.0087564133739215979) +zone = ('inz076', 0.0018197214416337732) + +[fips1811757042] +centroid = (0.67459249753596184, -1.5088483433628956) +description = Orleans township, IN +station = ('kbmg', 0.0089912863402630133) +zone = ('inz076', 0.0020050958672776327) + +[fips1811757798] +centroid = (0.6728981842580033, -1.5089642332252282) +description = Paoli township, IN +station = ('khnb', 0.0085796270914303245) +zone = ('inz076', 0.00055992182051701025) + +[fips1811771090] +centroid = (0.67098252832430694, -1.5076607864332536) +description = Southeast township, IN +station = ('khnb', 0.0084758007329000361) +zone = ('inz076', 0.0022907622800940456) + +[fips1811772548] +centroid = (0.67266820222246804, -1.5070858924309392) +description = Stampers Creek township, IN +station = ('khnb', 0.0096560701342605949) +zone = ('inz076', 0.0019854643342729393) + +[fips1811836] +centroid = (0.6951018441228547, -1.4832976655914947) +description = Centerville town, IN +station = ('kves', 0.0089322865999635157) +zone = ('inz050', 0.00073246441750510812) + +[fips18119] +centroid = (0.68621701867277474, -1.5156237638790153) +description = Owen County, IN +station = ('kbmg', 0.0041894583181137776) +zone = ('inz053', 7.9278149248268362e-05) + +[fips1811913186] +centroid = (0.6843367405630163, -1.513894718548942) +description = Clay township, IN +station = ('kbmg', 0.0019638043147153844) +zone = ('inz053', 0.0022355248409810426) + +[fips1811925540] +centroid = (0.68430907709437216, -1.5158119801855503) +description = Franklin township, IN +station = ('kbmg', 0.0033105228955638633) +zone = ('inz053', 0.0018376701981407035) + +[fips1811931954] +centroid = (0.6882545858547231, -1.512537131643571) +description = Harrison township, IN +station = ('kbmg', 0.0049958432291932128) +zone = ('inz054', 0.0030234148201039091) + +[fips1811937278] +centroid = (0.68818412691282005, -1.5165209154744179) +description = Jackson township, IN +station = ('khuf', 0.0057582344727451018) +zone = ('inz053', 0.0021644639807261155) + +[fips1811938142] +centroid = (0.68428523589678991, -1.5183077661093172) +description = Jefferson township, IN +station = ('khuf', 0.0060972493938666952) +zone = ('inz053', 0.0027977676590598939) + +[fips1811938430] +centroid = (0.68821505414716544, -1.5152496351005578) +description = Jennings township, IN +station = ('kbmg', 0.0056165656765365798) +zone = ('inz053', 0.0020933122818723305) + +[fips1811940770] +centroid = (0.68576745676404616, -1.5164352023548526) +description = Lafayette township, IN +station = ('kbmg', 0.0043935375057450399) +zone = ('inz053', 0.00074438564284949604) + +[fips1811944] +centroid = (0.70969602552864353, -1.5161252667862835) +description = Chalmers town, IN +station = ('klaf', 0.0044291528035850227) +zone = ('inz020', 0.0015241720107015484) + +[fips1811946998] +centroid = (0.685876819094976, -1.5183225839546666) +description = Marion township, IN +station = ('khuf', 0.0051054145523155717) +zone = ('inz052', 0.0023393161482315405) + +[fips1811950742] +centroid = (0.68709516363262324, -1.5144728937702501) +description = Montgomery township, IN +station = ('kbmg', 0.0043461019255984727) +zone = ('inz053', 0.0012945319028881996) + +[fips1811951048] +centroid = (0.68702859677495209, -1.516470702351838) +description = Morgan township, IN +station = ('kbmg', 0.0052261931732130321) +zone = ('inz053', 0.0011143547880788532) + +[fips1811975050] +centroid = (0.68831232134637899, -1.513860178483045) +description = Taylor township, IN +station = ('kbmg', 0.0052760281689325133) +zone = ('inz053', 0.002556157858992312) + +[fips1811980900] +centroid = (0.68595375320840402, -1.5141352947330369) +description = Washington township, IN +station = ('kbmg', 0.0032383967299256431) +zone = ('inz053', 0.001150006298443902) + +[fips1811981872] +centroid = (0.68730064124546053, -1.5127591549777171) +description = Wayne township, IN +station = ('kbmg', 0.0040803444051257859) +zone = ('inz053', 0.0024862567602363648) + +[fips1812034] +centroid = (0.6638998949532513, -1.5249711888473363) +description = Chandler town, IN +station = ('kevv', 0.002186597248382795) +zone = ('inz087', 0.0016880953300156421) + +[fips18121] +centroid = (0.6941916200113547, -1.5218738751968695) +description = Parke County, IN +station = ('khuf', 0.0058836971111314931) +zone = ('inz044', 0.00012593442021993181) + +[fips1812100460] +centroid = (0.69359745757409819, -1.5220805570868907) +description = Adams township, IN +station = ('khuf', 0.0052687491881403025) +zone = ('inz044', 0.00058377613367347912) + +[fips1812123764] +centroid = (0.6920973470820091, -1.5237817469621022) +description = Florida township, IN +station = ('khuf', 0.0035677052832864594) +zone = ('inz044', 0.0024778594706963935) + +[fips1812124] +centroid = (0.67070062274352471, -1.4952583196889495) +description = Charlestown city, IN +station = ('klou', 0.0034038527130261383) +zone = ('inz092', 0.00098175651640015015) + +[fips1812129484] +centroid = (0.69509955774153454, -1.519489039853652) +description = Greene township, IN +station = ('khuf', 0.0074161778516977778) +zone = ('inz044', 0.0021627069245596488) + +[fips1812134942] +centroid = (0.6964182238045864, -1.5207900780912587) +description = Howard township, IN +station = ('kprg', 0.007988186087536325) +zone = ('inz044', 0.0024341821214971813) + +[fips1812137296] +centroid = (0.69201383307730113, -1.5195067374922673) +description = Jackson township, IN +station = ('khuf', 0.0048917182942445321) +zone = ('inz044', 0.002912447994986537) + +[fips1812143344] +centroid = (0.69662647649093434, -1.524252758967338) +description = Liberty township, IN +station = ('kprg', 0.005851014465995976) +zone = ('inz043', 0.0020399504625473854) + +[fips1812158698] +centroid = (0.69544494094721176, -1.5231723652537683) +description = Penn township, IN +station = ('kprg', 0.0059187155314998135) +zone = ('inz044', 0.0015362137542137384) + +[fips1812162622] +centroid = (0.6920318972350592, -1.5216215005870313) +description = Raccoon township, IN +station = ('khuf', 0.0039379057095775011) +zone = ('inz044', 0.0021720318953449831) + +[fips1812163846] +centroid = (0.69481372516993545, -1.5243023961312645) +description = Reserve township, IN +station = ('kprg', 0.0048682447151148691) +zone = ('inz044', 0.0018523063382936118) + +[fips1812173916] +centroid = (0.69686727956783201, -1.522115812737781) +description = Sugar Creek township, IN +station = ('kdnv', 0.0069950118441700591) +zone = ('inz044', 0.0026876842491652614) + +[fips1812177516] +centroid = (0.69351589833815253, -1.519698741163279) +description = Union township, IN +station = ('khuf', 0.0059694888185418578) +zone = ('inz044', 0.0019165208663932615) + +[fips1812179334] +centroid = (0.69362459744396676, -1.5244301193259255) +description = Wabash township, IN +station = ('kprg', 0.0044399702183974066) +zone = ('inz044', 0.0019217663390188561) + +[fips1812180918] +centroid = (0.69508679938470241, -1.5215958267937344) +description = Washington township, IN +station = ('khuf', 0.0068032552237615113) +zone = ('inz044', 0.00096783507173072954) + +[fips18123] +centroid = (0.66464644208749923, -1.5119183426105687) +description = Perry County, IN +station = ('khnb', 0.005325075906038956) +zone = ('inz089', 0.00016032940533034721) + +[fips1812301504] +centroid = (0.66430612033665293, -1.5130707835156605) +description = Anderson township, IN +station = ('khnb', 0.0048224054366441524) +zone = ('inz089', 0.00081136259610404887) + +[fips1812312808] +centroid = (0.66645575510987176, -1.5138872834463284) +description = Clark township, IN +station = ('khnb', 0.0031026505152037622) +zone = ('inz089', 0.0023065556366865286) + +[fips1812342894] +centroid = (0.66505265001760849, -1.5115524168795955) +description = Leopold township, IN +station = ('khnb', 0.0053629216108405254) +zone = ('inz089', 0.00062363820442760043) + +[fips1812356214] +centroid = (0.66656543160006709, -1.5109020199338399) +description = Oil township, IN +station = ('khnb', 0.0053327451961968806) +zone = ('inz089', 0.0021714105495853949) + +[fips1812376] +centroid = (0.70010528420930196, -1.4938963345538629) +description = Chesterfield town, IN +station = ('kaid', 0.00030954643118807825) +zone = ('inz040', 0.0018758632000264929) + +[fips1812376040] +centroid = (0.6622772099877946, -1.5116804367802295) +description = Tobin township, IN +station = ('khnb', 0.0070459501492019629) +zone = ('inz089', 0.0023642443781136751) + +[fips1812376652] +centroid = (0.66254387884420685, -1.5134662227642848) +description = Troy township, IN +station = ('khnb', 0.0059869402498878774) +zone = ('kyz023', 0.0022572211437918476) + +[fips1812377534] +centroid = (0.66493899417671853, -1.5100926409465201) +description = Union township, IN +station = ('khnb', 0.0064432549802499279) +zone = ('inz089', 0.0016267079207759408) + +[fips1812412] +centroid = (0.72605393195674262, -1.5193962756039083) +description = Chesterton town, IN +station = ('kvpz', 0.0027118945278683903) +zone = ('inz002', 0.0024368362688312693) + +[fips18125] +centroid = (0.67016974594494561, -1.5224948982513142) +description = Pike County, IN +station = ('khnb', 0.004650670995627321) +zone = ('inz082', 1.6384773698851735e-05) + +[fips1812513204] +centroid = (0.67177944566076753, -1.5258580255468595) +description = Clay township, IN +station = ('kajg', 0.0045877929605985376) +zone = ('inz082', 0.0030826581834280573) + +[fips1812538160] +centroid = (0.67146038202021041, -1.5209220598892945) +description = Jefferson township, IN +station = ('khnb', 0.0046825294498548629) +zone = ('inz082', 0.0017697636363676308) + +[fips1812544532] +centroid = (0.668191816663538, -1.5207665859595267) +description = Lockhart township, IN +station = ('khnb', 0.002585992034802977) +zone = ('inz082', 0.0024083118732283041) + +[fips1812544640] +centroid = (0.67045652099434083, -1.5247905472697549) +description = Logan township, IN +station = ('kajg', 0.005979954108328289) +zone = ('inz082', 0.0018237144927905821) + +[fips1812546062] +centroid = (0.67179771925803589, -1.5246907144365409) +description = Madison township, IN +station = ('kajg', 0.0054147856902630664) +zone = ('inz082', 0.0023606232447852603) + +[fips1812547016] +centroid = (0.66967147189679377, -1.5204803345089073) +description = Marion township, IN +station = ('khnb', 0.0030945772573632195) +zone = ('inz082', 0.0016563807502079336) + +[fips1812550418] +centroid = (0.6682209811153389, -1.5229395557848449) +description = Monroe township, IN +station = ('khnb', 0.0042677652579695318) +zone = ('inz082', 0.0019960233035422738) + +[fips1812558356] +centroid = (0.66978835659679992, -1.5227826855916755) +description = Patoka township, IN +station = ('khnb', 0.0046484508643284033) +zone = ('inz082', 0.00045898624791906482) + +[fips1812574] +centroid = (0.66341020792501915, -1.5189772918636746) +description = Chrisney town, IN +station = ('khnb', 0.0043236418767791281) +zone = ('inz088', 0.00032632357406789923) + +[fips1812580936] +centroid = (0.67154373894528563, -1.5229100597204861) +description = Washington township, IN +station = ('khnb', 0.0057634103677204895) +zone = ('inz082', 0.0013976995728306916) + +[fips1812610] +centroid = (0.71964387866623558, -1.4891501734524522) +description = Churubusco town, IN +station = ('kfwa', 0.0043644851640508835) +zone = ('inz008', 0.0031562161627635495) + +[fips1812628] +centroid = (0.7002598156612736, -1.5015773016990872) +description = Cicero town, IN +station = ('ktyq', 0.0033004157437205518) +zone = ('inz039', 0.0008954454753191763) + +[fips18127] +centroid = (0.72448481114602969, -1.5196810086180788) +description = Porter County, IN +station = ('kvpz', 0.0014011274581230582) +zone = ('inz002', 0.00086432948606655706) + +[fips1812700000] +centroid = (0.72800981772969753, -1.5201941877780427) +description = County subdivisions not defined, IN +station = ('kvpz', 0.0047561906127081277) +zone = ('inz002', 0.0044094675049007291) + +[fips1812706580] +centroid = (0.72099176154096567, -1.5210811117440286) +description = Boone township, IN +station = ('kvpz', 0.0031506675928279107) +zone = ('inz002', 0.0028533637217245406) + +[fips1812711566] +centroid = (0.72389216714522242, -1.5197309250346858) +description = Center township, IN +station = ('kvpz', 0.0010706995595033218) +zone = ('inz002', 0.00028532105722881143) + +[fips1812737314] +centroid = (0.72529953084086052, -1.5180671550186373) +description = Jackson township, IN +station = ('kvpz', 0.001880999631875914) +zone = ('inz002', 0.0020356796497148027) + +[fips1812743362] +centroid = (0.72527450281938699, -1.519807527535556) +description = Liberty township, IN +station = ('kvpz', 0.0021032245681464989) +zone = ('inz002', 0.0016590400911594722) + +[fips1812751066] +centroid = (0.72243235630556191, -1.5184899435766404) +description = Morgan township, IN +station = ('kvpz', 0.0010074175903448347) +zone = ('inz002', 0.0014553532435553475) + +[fips1812759922] +centroid = (0.7269843669809809, -1.5177556835603263) +description = Pine township, IN +station = ('kmgc', 0.0020229121422601719) +zone = ('inz003', 0.0034385164209542237) + +[fips1812760426] +centroid = (0.72074628098167282, -1.5183301237770352) +description = Pleasant township, IN +station = ('kvpz', 0.0026938758545659645) +zone = ('inz002', 0.0030314874718734954) + +[fips1812761110] +centroid = (0.72567004678776648, -1.521505348925311) +description = Portage township, IN +station = ('kvpz', 0.0032028684347193102) +zone = ('inz002', 0.0024925066764138648) + +[fips1812761182] +centroid = (0.72233262819210298, -1.520870851929041) +description = Porter township, IN +station = ('kvpz', 0.0021346342047755137) +zone = ('inz002', 0.0016001215660689594) + +[fips1812777570] +centroid = (0.7238617635096527, -1.5215163270463059) +description = Union township, IN +station = ('kvpz', 0.0023464445104968458) +zone = ('inz002', 0.0014502162817657323) + +[fips1812780954] +centroid = (0.72391183700589246, -1.5180611161794253) +description = Washington township, IN +station = ('kvpz', 0.00055019004766419062) +zone = ('inz002', 0.0011944202969559723) + +[fips1812782484] +centroid = (0.72665518043076216, -1.5196845167298754) +description = Westchester township, IN +station = ('kvpz', 0.0033491178646894802) +zone = ('inz002', 0.003033492641761908) + +[fips1812880] +centroid = (0.68827554725903961, -1.489589734624567) +description = Clarksburg CDP, IN +station = ('kgez', 0.0066220755495238108) +zone = ('inz065', 0.0030567133247920747) + +[fips1812898] +centroid = (0.70244625942841687, -1.5136265312560806) +description = Clarks Hill town, IN +station = ('klaf', 0.0042137917360584596) +zone = ('inz029', 0.0033450166699551709) + +[fips18129] +centroid = (0.66370707097749093, -1.5335973041423929) +description = Posey County, IN +station = ('kcul', 0.0036588613854408275) +zone = ('inz085', 0.00010153304511671778) + +[fips1812905014] +centroid = (0.66682876687760795, -1.5346692330090903) +description = Bethel township, IN +station = ('kcul', 0.0033449005703059184) +zone = ('inz085', 0.0033325624678153948) + +[fips1812905428] +centroid = (0.66238020186695479, -1.5344641044621035) +description = Black township, IN +station = ('kcul', 0.0037031675306506461) +zone = ('inz085', 0.0014046656156084805) + +[fips1812911584] +centroid = (0.66481950893612707, -1.532535829797915) +description = Center township, IN +station = ('kcul', 0.0043301252376404375) +zone = ('inz085', 0.0014718542064173141) + +[fips1812931504] +centroid = (0.66512981102383917, -1.5341756888032114) +description = Harmony township, IN +station = ('kcul', 0.0030583589785424447) +zone = ('inz085', 0.0015917798958616149) + +[fips1812934] +centroid = (0.66884650711925364, -1.4969265926544681) +description = Clarksville town, IN +station = ('klou', 0.0020762399622532182) +zone = ('inz091', 0.0019069707165420102) + +[fips1812945450] +centroid = (0.66407751711122676, -1.5345301477209989) +description = Lynn township, IN +station = ('kcul', 0.0028506944799176468) +zone = ('inz085', 0.00087616706915049031) + +[fips1812947250] +centroid = (0.66246739851638448, -1.5317731907279637) +description = Marrs township, IN +station = ('kehr', 0.0026837547922402942) +zone = ('inz085', 0.0018309260046096977) + +[fips1812960858] +centroid = (0.66051786574190674, -1.5357789831606785) +description = Point township, IN +station = ('kcul', 0.0046248241451158061) +zone = ('kyz014', 0.0033224909413486861) + +[fips1812965052] +centroid = (0.66632368604537329, -1.5328765529744894) +description = Robb township, IN +station = ('kcul', 0.0043408359171307701) +zone = ('inz085', 0.0027759279277878549) + +[fips1812965124] +centroid = (0.66410359233025151, -1.5315416728026865) +description = Robinson township, IN +station = ('kevv', 0.0030048955219134648) +zone = ('inz085', 0.0016905952652053835) + +[fips1812970164] +centroid = (0.6660719921139433, -1.5312214746981159) +description = Smith township, IN +station = ('kevv', 0.0035518955901358063) +zone = ('inz085', 0.0030929477698231444) + +[fips18131] +centroid = (0.71637513877663794, -1.5130702250102999) +description = Pulaski County, IN +station = ('koxi', 0.0049877842258710652) +zone = ('inz013', 0.00010235717179352366) + +[fips1813103988] +centroid = (0.71474545504088083, -1.5142126302721928) +description = Beaver township, IN +station = ('kggp', 0.0065974242121258492) +zone = ('inz013', 0.0017531249911910927) + +[fips1813110756] +centroid = (0.71783231416912807, -1.5162121667297401) +description = Cass township, IN +station = ('koxi', 0.0044855929438306985) +zone = ('inz013', 0.0027417552927241078) + +[fips1813125558] +centroid = (0.71787631391957085, -1.5120129569093195) +description = Franklin township, IN +station = ('koxi', 0.0034877386392658115) +zone = ('inz013', 0.0017913942278410544) + +[fips1813131972] +centroid = (0.7162786395222952, -1.5100959919786838) +description = Harrison township, IN +station = ('koxi', 0.0053799058176230291) +zone = ('inz013', 0.0023273448804321762) + +[fips1813136090] +centroid = (0.71474685130428239, -1.5120925439232102) +description = Indian Creek township, IN +station = ('kggp', 0.0054577371285384505) +zone = ('inz013', 0.0017715316449685497) + +[fips1813138178] +centroid = (0.7163069313094701, -1.5141978298801357) +description = Jefferson township, IN +station = ('koxi', 0.0051967358715768533) +zone = ('inz013', 0.00076678512257398446) + +[fips1813150436] +centroid = (0.71643367711974981, -1.5120327838496221) +description = Monroe township, IN +station = ('koxi', 0.0049235984551669358) +zone = ('inz013', 0.00087409127514457641) + +[fips1813163972] +centroid = (0.71782662439576661, -1.5141887192614405) +description = Rich Grove township, IN +station = ('koxi', 0.0037395968581637076) +zone = ('inz013', 0.0016904848046167312) + +[fips1813167392] +centroid = (0.71480331270558439, -1.5162189211539454) +description = Salem township, IN +station = ('krzl', 0.0041802909272171508) +zone = ('inz013', 0.0027468343382405229) + +[fips1813175896] +centroid = (0.71793731317692799, -1.5103049427967326) +description = Tippecanoe township, IN +station = ('koxi', 0.0037868597289438428) +zone = ('inz013', 0.0027069174993836322) + +[fips1813178560] +centroid = (0.71477638227522622, -1.5101602550017421) +description = Van Buren township, IN +station = ('kggp', 0.0046889041262848027) +zone = ('inz013', 0.0027513585255981416) + +[fips1813183852] +centroid = (0.71631178332479062, -1.5162179263162718) +description = White Post township, IN +station = ('krzl', 0.0044730528421118307) +zone = ('inz013', 0.002290350023921466) + +[fips1813276] +centroid = (0.68551188820167663, -1.5204027720769486) +description = Clay City town, IN +station = ('khuf', 0.0040867241226691733) +zone = ('inz052', 0.0020226170210822167) + +[fips18133] +centroid = (0.69229435984797416, -1.5158764875547039) +description = Putnam County, IN +station = ('kind', 0.0077069594343576317) +zone = ('inz045', 0.00011262146119728513) + +[fips1813312] +centroid = (0.71786715094099784, -1.4989284154933356) +description = Claypool town, IN +station = ('kasw', 0.0025685020423348195) +zone = ('inz016', 0.001998379761898564) + +[fips1813313762] +centroid = (0.69345495144067282, -1.5175390882001538) +description = Clinton township, IN +station = ('khuf', 0.0069813953137074902) +zone = ('inz045', 0.0018031854478717498) + +[fips1813313870] +centroid = (0.68927631905213305, -1.5148419261872919) +description = Cloverdale township, IN +station = ('kbmg', 0.0064416931289083346) +zone = ('inz045', 0.0031077393089944923) + +[fips1813323782] +centroid = (0.69358410580532037, -1.513782336798406) +description = Floyd township, IN +station = ('kind', 0.0060535275434169672) +zone = ('inz045', 0.0019692073329893468) + +[fips1813325576] +centroid = (0.69514577406012734, -1.5156726505513636) +description = Franklin township, IN +station = ('ktyq', 0.0086613239411623411) +zone = ('inz045', 0.002838593820082854) + +[fips1813329376] +centroid = (0.69196679645395986, -1.5157853290078722) +description = Greencastle township, IN +station = ('kind', 0.0076834659186903569) +zone = ('inz045', 0.00034328054532853077) + +[fips1813337332] +centroid = (0.69493727702768415, -1.5138895872809413) +description = Jackson township, IN +station = ('ktyq', 0.0075331642158676685) +zone = ('inz045', 0.0029867689849438195) + +[fips1813338196] +centroid = (0.69064350526839025, -1.5135496145959453) +description = Jefferson township, IN +station = ('kind', 0.006395948708904353) +zone = ('inz045', 0.0023649548292763146) + +[fips1813346080] +centroid = (0.69210666714021474, -1.5178259505160114) +description = Madison township, IN +station = ('khuf', 0.0059303337136005531) +zone = ('inz045', 0.0016250916341654365) + +[fips1813347034] +centroid = (0.69184778245226641, -1.5139255585168248) +description = Marion township, IN +station = ('kind', 0.0062989702226643636) +zone = ('inz045', 0.0014642452355550003) + +[fips1813350454] +centroid = (0.6934786704652075, -1.5157674742896243) +description = Monroe township, IN +station = ('khuf', 0.0080221120787478326) +zone = ('inz045', 0.0011714660955918898) + +[fips1813366] +centroid = (0.69269189349170091, -1.5101135674442514) +description = Clayton town, IN +station = ('kind', 0.0032578392301234713) +zone = ('inz046', 0.0014277496333307887) + +[fips1813366474] +centroid = (0.69521307395608423, -1.5175662280700224) +description = Russell township, IN +station = ('khuf', 0.0083004640406475188) +zone = ('inz045', 0.0032299656662059415) + +[fips1813380162] +centroid = (0.69043903994651923, -1.5155873214042337) +description = Warren township, IN +station = ('kbmg', 0.0077355954703709866) +zone = ('inz045', 0.0018717812725286699) + +[fips1813380972] +centroid = (0.69009807242384957, -1.5175091208968969) +description = Washington township, IN +station = ('khuf', 0.0052208814049486034) +zone = ('inz045', 0.002599663440684046) + +[fips1813438] +centroid = (0.7284032323963896, -1.4808228236187519) +description = Clear Lake town, IN +station = ('koeb', 0.0043976786369680264) +zone = ('inz007', 0.0025739866881336155) + +[fips1813492] +centroid = (0.69492994664482577, -1.5065795026017657) +description = Clermont town, IN +station = ('keye', 0.00040294956792852164) +zone = ('inz047', 0.0025187884810157881) + +[fips18135] +centroid = (0.70100126643410576, -1.4836172004709498) +description = Randolph County, IN +station = ('kves', 0.0063641950520587675) +zone = ('inz042', 0.00014636186638247817) + +[fips1813525594] +centroid = (0.70288381347189188, -1.4843283697812599) +description = Franklin township, IN +station = ('kmie', 0.004767422034085156) +zone = ('inz042', 0.0020531682206878211) + +[fips1813529232] +centroid = (0.70286943195885543, -1.4862826673045957) +description = Green township, IN +station = ('kmie', 0.0032950861382562958) +zone = ('inz042', 0.0027842014515448493) + +[fips1813529736] +centroid = (0.69914283984658232, -1.4812004779622983) +description = Greensfork township, IN +station = ('kves', 0.005129992641784863) +zone = ('inz042', 0.0026010241639348279) + +[fips1813537350] +centroid = (0.70290138893745946, -1.4809623452391563) +description = Jackson township, IN +station = ('kves', 0.0044881700721735012) +zone = ('inz042', 0.0029222288923747915) + +[fips1813550472] +centroid = (0.70186890451185724, -1.4862440780748341) +description = Monroe township, IN +station = ('kmie', 0.0032752554454159649) +zone = ('inz042', 0.0021600017981508761) + +[fips1813573478] +centroid = (0.70070880161134907, -1.4863644883399292) +description = Stoney Creek township, IN +station = ('kmie', 0.0035028781028720447) +zone = ('inz042', 0.0020219704737887948) + +[fips1813577588] +centroid = (0.69907726782658486, -1.4856525510847483) +description = Union township, IN +station = ('kmie', 0.004855063337298059) +zone = ('inz042', 0.0023287770299259859) + +[fips1813580072] +centroid = (0.70273190001379837, -1.4828204576674147) +description = Ward township, IN +station = ('kves', 0.0058275238890327903) +zone = ('inz042', 0.0019753729716090475) + +[fips1813580990] +centroid = (0.69925234180385232, -1.4832067339374659) +description = Washington township, IN +station = ('kves', 0.0064740658889886858) +zone = ('inz042', 0.0016781934721095857) + +[fips1813581890] +centroid = (0.70112633672830371, -1.4810112493647971) +description = Wayne township, IN +station = ('kves', 0.0043708906609174637) +zone = ('inz042', 0.0020910463787114377) + +[fips1813582] +centroid = (0.68560618834116183, -1.4986998646277867) +description = Clifford town, IN +station = ('kbak', 0.00049826648726086688) +zone = ('inz064', 0.001388736877097955) + +[fips1813583942] +centroid = (0.70100126643410576, -1.4836172004709498) +description = White River township, IN +station = ('kves', 0.0063641950520587675) +zone = ('inz042', 0.00014636186638247817) + +[fips18137] +centroid = (0.6824277517870625, -1.4880771624816187) +description = Ripley County, IN +station = ('kbak', 0.009125592280831778) +zone = ('inz073', 6.0786815545982882e-05) + +[fips1813700478] +centroid = (0.68541748334243624, -1.4858876818415767) +description = Adams township, IN +station = ('kcvg', 0.0074252156855112005) +zone = ('inz066', 0.0026966486635332425) + +[fips1813708362] +centroid = (0.67999699683122483, -1.487385680485271) +description = Brown township, IN +station = ('kcvg', 0.0076761492331602751) +zone = ('inz073', 0.0025488881220163016) + +[fips1813711602] +centroid = (0.68306292946174074, -1.4889071538074046) +description = Center township, IN +station = ('kbak', 0.0083210211131019753) +zone = ('inz073', 0.00084798981176008065) + +[fips1813717524] +centroid = (0.68394311645681405, -1.4878295351673456) +description = Delaware township, IN +station = ('kbak', 0.0089459596510846132) +zone = ('inz073', 0.0014761064997894989) + +[fips1813725612] +centroid = (0.68365415974585386, -1.4859944087253363) +description = Franklin township, IN +station = ('kcvg', 0.006761879382527888) +zone = ('inz073', 0.002015714211014086) + +[fips1813737368] +centroid = (0.68412225705123875, -1.4899507559803422) +description = Jackson township, IN +station = ('kbak', 0.0072947879952098204) +zone = ('inz073', 0.0021738221206511563) + +[fips1813738754] +centroid = (0.68172410484582835, -1.4878081025241312) +description = Johnson township, IN +station = ('kbak', 0.0095685077085845491) +zone = ('inz073', 0.00079424024760903493) + +[fips1813742336] +centroid = (0.68509283464827264, -1.487980733040446) +description = Laughery township, IN +station = ('kbak', 0.008719472248963531) +zone = ('inz073', 0.0026116673589806328) + +[fips1813757276] +centroid = (0.68228376212377295, -1.4901675956866098) +description = Otter Creek township, IN +station = ('kbak', 0.0076635608586305701) +zone = ('inz073', 0.001609534894570437) + +[fips1813769264] +centroid = (0.68019434120974787, -1.4900895096558755) +description = Shelby township, IN +station = ('kbak', 0.0087622355594007672) +zone = ('inz073', 0.0027574076204901089) + +[fips1813780] +centroid = (0.69221442376823283, -1.5254990811328943) +description = Clinton city, IN +station = ('kprg', 0.0036259249896703721) +zone = ('inz044', 0.0033100109492194009) + +[fips1813781008] +centroid = (0.68212657777133834, -1.486216990564843) +description = Washington township, IN +station = ('kcvg', 0.0066283491142934128) +zone = ('inz073', 0.0015115431712552599) + +[fips1813852] +centroid = (0.68977543085832582, -1.5149229094645844) +description = Cloverdale town, IN +station = ('kbmg', 0.0069293109307715928) +zone = ('inz045', 0.0026075848155439089) + +[fips18139] +centroid = (0.69153980165245954, -1.4916722963946316) +description = Rush County, IN +station = ('kgez', 0.0045356668455979431) +zone = ('inz057', 4.3540769739047553e-05) + +[fips1813901522] +centroid = (0.68930438394650506, -1.4916995584375479) +description = Anderson township, IN +station = ('kgez', 0.0047304028262105894) +zone = ('inz057', 0.0021935559394874243) + +[fips1813911620] +centroid = (0.69353261859238657, -1.49171674993068) +description = Center township, IN +station = ('kgez', 0.0051880962046343395) +zone = ('inz057', 0.0020354189343021246) + +[fips1813937386] +centroid = (0.69234858722783366, -1.4916951253012476) +description = Jackson township, IN +station = ('kgez', 0.004707021037194445) +zone = ('inz057', 0.00085136656749891613) + +[fips1813954126] +centroid = (0.69059796962820574, -1.4896340834408601) +description = Noble township, IN +station = ('kgez', 0.0060627611174520393) +zone = ('inz057', 0.0018004172333293204) + +[fips1813956772] +centroid = (0.68922132372740263, -1.4935276337493792) +description = Orange township, IN +station = ('kgez', 0.0034689534800693847) +zone = ('inz057', 0.0026944739812530772) + +[fips1813961362] +centroid = (0.69202924433459623, -1.493737561951809) +description = Posey township, IN +station = ('kgez', 0.0031200965165141216) +zone = ('inz057', 0.001687521902807477) + +[fips1813964188] +centroid = (0.689233453765704, -1.4894216943241849) +description = Richland township, IN +station = ('kgez', 0.0064332158783364929) +zone = ('inz057', 0.0028459444528610321) + +[fips1813964656] +centroid = (0.69361779065988394, -1.4936258957862667) +description = Ripley township, IN +station = ('kgez', 0.0040581060630519436) +zone = ('inz057', 0.0026055447167328896) + +[fips1813966456] +centroid = (0.69097815469916768, -1.4915397211846504) +description = Rushville township, IN +station = ('kgez', 0.0045891036081581712) +zone = ('inz057', 0.00052746275859263947) + +[fips1813977606] +centroid = (0.69221779225368918, -1.4898872434488619) +description = Union township, IN +station = ('kgez', 0.0060134710374821973) +zone = ('inz057', 0.0015419540551784637) + +[fips1813979658] +centroid = (0.69067912743842352, -1.4935914778934172) +description = Walker township, IN +station = ('kgez', 0.0030121394949464797) +zone = ('inz057', 0.0017000077239672294) + +[fips1813981026] +centroid = (0.69355162522794078, -1.4897948457182615) +description = Washington township, IN +station = ('kgez', 0.0065087984904512834) +zone = ('inz057', 0.0025048956751818705) + +[fips1814032] +centroid = (0.68398802377846779, -1.5222688955664734) +description = Coalmont CDP, IN +station = ('khuf', 0.0047296483187351931) +zone = ('inz060', 0.0031727113973619909) + +[fips1814050] +centroid = (0.69269379590058566, -1.5126661114752931) +description = Coatesville town, IN +station = ('kind', 0.0052072786259647714) +zone = ('inz046', 0.0025649606117947262) + +[fips18141] +centroid = (0.72636587465395164, -1.5060124800343777) +description = St. Joseph County, IN +station = ('ksbn', 0.0014837435587391791) +zone = ('inz004', 2.7612977499584696e-05) + +[fips1814111890] +centroid = (0.72602167827216568, -1.5053947032923418) +description = Centre township, IN +station = ('ksbn', 0.0019660047611621059) +zone = ('inz004', 0.00058342526060337942) + +[fips1814113222] +centroid = (0.72833783490931725, -1.5048846657250314) +description = Clay township, IN +station = ('ksbn', 0.001326207778752835) +zone = ('inz004', 0.002168837940820359) + +[fips1814127468] +centroid = (0.72826803919253014, -1.5063439180593314) +description = German township, IN +station = ('ksbn', 0.00048196599797217446) +zone = ('inz004', 0.0019328793773288296) + +[fips1814129502] +centroid = (0.72586775768543244, -1.5074356738663315) +description = Greene township, IN +station = ('ksbn', 0.0020544864941612452) +zone = ('inz004', 0.001148250489092225) + +[fips1814131558] +centroid = (0.72841722993699065, -1.5030839571758714) +description = Harris township, IN +station = ('kekm', 0.0016010399888526181) +zone = ('inz004', 0.0030263003321183398) + +[fips1814143380] +centroid = (0.72472493354451895, -1.5081792713941435) +description = Liberty township, IN +station = ('ksbn', 0.0033208031104249519) +zone = ('inz004', 0.0022791721098772586) + +[fips1814143848] +centroid = (0.72399662510095431, -1.5094764350008107) +description = Lincoln township, IN +station = ('koxi', 0.0034905848296119969) +zone = ('inz004', 0.003484355684736195) + +[fips1814146098] +centroid = (0.72487738805468072, -1.5031339434056485) +description = Madison township, IN +station = ('kekm', 0.0035953005443684701) +zone = ('inz004', 0.0026256254789799338) + +[fips1814156556] +centroid = (0.72758432391135386, -1.509095848504121) +description = Olive township, IN +station = ('ksbn', 0.0019431206308528331) +zone = ('inz004', 0.0025955916774649621) + +[fips1814158734] +centroid = (0.72688027554439183, -1.5033102565666849) +description = Penn township, IN +station = ('kekm', 0.0021193772617791266) +zone = ('inz004', 0.0021092740165356305) + +[fips1814161128] +centroid = (0.72727814080067643, -1.5058052221857035) +description = Portage township, IN +station = ('ksbn', 0.00074283041979383542) +zone = ('inz004', 0.00094626770106397411) + +[fips1814176] +centroid = (0.70718695764926898, -1.5134148402711061) +description = Colburn CDP, IN +station = ('klaf', 0.0036252046875715391) +zone = ('inz021', 0.0022670915590707009) + +[fips1814177624] +centroid = (0.72461668822431025, -1.5055197037733696) +description = Union township, IN +station = ('ksbn', 0.0032705348401087446) +zone = ('inz004', 0.0017751474660587185) + +[fips1814180180] +centroid = (0.72751283522519206, -1.5078360000368616) +description = Warren township, IN +station = ('ksbn', 0.0010315894488186965) +zone = ('inz004', 0.0017761033695326621) + +[fips1814284] +centroid = (0.70152264864155411, -1.5126276967784567) +description = Colfax town, IN +station = ('klaf', 0.005406846571500392) +zone = ('inz030', 0.0031709876718949365) + +[fips18143] +centroid = (0.67508342374796282, -1.4966529599343403) +description = Scott County, IN +station = ('klou', 0.007872532073632945) +zone = ('inz078', 0.00011638403502509708) + +[fips1814323224] +centroid = (0.67402517826260111, -1.4987442832572502) +description = Finley township, IN +station = ('klou', 0.0072884738547847059) +zone = ('inz078', 0.0020519598323756987) + +[fips1814338448] +centroid = (0.67652990027213811, -1.4971635734603039) +description = Jennings township, IN +station = ('kbak', 0.008949038576277284) +zone = ('inz078', 0.0014237597592160047) + +[fips1814338772] +centroid = (0.67650749024454249, -1.4958624828628198) +description = Johnson township, IN +station = ('kbak', 0.0092065693776422399) +zone = ('inz078', 0.0014368350012376701) + +[fips1814343164] +centroid = (0.67468924113639994, -1.4948039930313628) +description = Lexington township, IN +station = ('klou', 0.0073971078053964882) +zone = ('inz078', 0.0014676098215783281) + +[fips1814379100] +centroid = (0.67464321680402484, -1.4970497081799039) +description = Vienna township, IN +station = ('klou', 0.0074924535456538073) +zone = ('inz078', 0.00065449780611257511) + +[fips1814464] +centroid = (0.71394270830471851, -1.521249867629404) +description = Collegeville CDP, IN +station = ('krzl', 0.00085823827532011739) +zone = ('inz011', 0.0021280119513076008) + +[fips18145] +centroid = (0.68982628975272897, -1.4973559087438737) +description = Shelby County, IN +station = ('kgez', 0.001038559278486904) +zone = ('inz056', 1.0608538427343547e-05) + +[fips1814500568] +centroid = (0.68985753114633974, -1.4969857593161107) +description = Addison township, IN +station = ('kgez', 0.0010754454149879077) +zone = ('inz056', 0.0002833998179660079) + +[fips1814507102] +centroid = (0.69072623387493493, -1.498054598950032) +description = Brandywine township, IN +station = ('kgez', 0.00045326647095670427) +zone = ('inz056', 0.0010594732915701337) + +[fips1814531270] +centroid = (0.69216073744044149, -1.4953447833000932) +description = Hanover township, IN +station = ('kgez', 0.0021047810682829613) +zone = ('inz056', 0.0028070727003791452) + +[fips1814533070] +centroid = (0.68914400564153933, -1.4990988992546703) +description = Hendricks township, IN +station = ('kgez', 0.002116092758360819) +zone = ('inz056', 0.0015083276038546343) + +[fips1814537404] +centroid = (0.68758183124124927, -1.4992087153712057) +description = Jackson township, IN +station = ('kbak', 0.0022493243423201466) +zone = ('inz056', 0.0026564156949554795) + +[fips1814543398] +centroid = (0.68898474434729495, -1.4950400313594026) +description = Liberty township, IN +station = ('kgez', 0.0026632219740843214) +zone = ('inz056', 0.0019667080766705919) + +[fips1814547052] +centroid = (0.69115296687704741, -1.4964344621652832) +description = Marion township, IN +station = ('kgez', 0.00086653626698990458) +zone = ('inz056', 0.0015107768385609008) + +[fips1814550994] +centroid = (0.69221651816333518, -1.499004459488845) +description = Moral township, IN +station = ('kgez', 0.0017882482708387775) +zone = ('inz056', 0.0027174548878446548) + +[fips1814554144] +centroid = (0.68750006256579343, -1.4953530910673325) +description = Noble township, IN +station = ('kbak', 0.003705050181834453) +zone = ('inz056', 0.0027827477408845754) + +[fips1814569282] +centroid = (0.68884277926593773, -1.4969748859148708) +description = Shelby township, IN +station = ('kgez', 0.0020558573528741651) +zone = ('inz056', 0.0010161332830561772) + +[fips1814573952] +centroid = (0.69056409278742459, -1.4994382436211358) +description = Sugar Creek township, IN +station = ('kgez', 0.001528581634290372) +zone = ('inz056', 0.0017756152070436001) + +[fips1814577642] +centroid = (0.69077194404804454, -1.4952155591222753) +description = Union township, IN +station = ('kgez', 0.0017570797987779272) +zone = ('inz056', 0.0019023738440589022) + +[fips1814578578] +centroid = (0.69223156290148735, -1.4973524878985398) +description = Van Buren township, IN +station = ('kgez', 0.0013762990838074964) +zone = ('inz056', 0.0024146118470119169) + +[fips1814581044] +centroid = (0.68754381797014086, -1.4974047081497595) +description = Washington township, IN +station = ('kbak', 0.0026267717056511759) +zone = ('inz056', 0.00227353560871618) + +[fips18147] +centroid = (0.66339596603832296, -1.5186222395339415) +description = Spencer County, IN +station = ('khnb', 0.0042743466247482011) +zone = ('inz088', 8.6988108879896935e-05) + +[fips1814710576] +centroid = (0.66607729791486936, -1.5178137157579552) +description = Carter township, IN +station = ('khnb', 0.0015238493507018036) +zone = ('inz088', 0.0026716491943775049) + +[fips1814713240] +centroid = (0.66445112229090864, -1.517661243794501) +description = Clay township, IN +station = ('khnb', 0.0031382523337579052) +zone = ('inz088', 0.001212429517724344) + +[fips1814716] +centroid = (0.71843391170899806, -1.4918800778420815) +description = Columbia City city, IN +station = ('kfwa', 0.0046404655245225451) +zone = ('inz017', 0.00054474559132214784) + +[fips1814728944] +centroid = (0.66320267082366458, -1.5198700103227774) +description = Grass township, IN +station = ('kowb', 0.0046631866780517915) +zone = ('inz088', 0.0010587507407848484) + +[fips1814731018] +centroid = (0.66288776106672731, -1.5177178099155582) +description = Hammond township, IN +station = ('khnb', 0.0047022395824706346) +zone = ('inz088', 0.0008912512496665431) + +[fips1814731990] +centroid = (0.66548048257714987, -1.5156229435742667) +description = Harrison township, IN +station = ('khnb', 0.0026020082635878866) +zone = ('inz089', 0.0028899931936717921) + +[fips1814734] +centroid = (0.68433808446654032, -1.499548530976569) +description = Columbus city, IN +station = ('kbak', 0.0010232356364178676) +zone = ('inz064', 0.00027976318742666895) + +[fips1814735140] +centroid = (0.66362966562516501, -1.5158241451304366) +description = Huff township, IN +station = ('khnb', 0.0041885697478762458) +zone = ('inz088', 0.0021695401430168026) + +[fips1814737422] +centroid = (0.66451515842116438, -1.5192878557507745) +description = Jackson township, IN +station = ('khnb', 0.0033589652958720146) +zone = ('inz088', 0.0011853493174452767) + +[fips1814745216] +centroid = (0.66170338063632383, -1.5219415241586769) +description = Luce township, IN +station = ('kowb', 0.003052662309718247) +zone = ('inz088', 0.0031927189527617391) + +[fips1814756160] +centroid = (0.66118250457435868, -1.5201489139372459) +description = Ohio township, IN +station = ('kowb', 0.0026682698847240874) +zone = ('inz088', 0.0026066661202485252) + +[fips18149] +centroid = (0.72052811482517343, -1.5122853853522631) +description = Starke County, IN +station = ('koxi', 0.00083257015474824648) +zone = ('inz012', 3.8863559649918893e-05) + +[fips1814909802] +centroid = (0.7194304947118868, -1.5120844281421884) +description = California township, IN +station = ('koxi', 0.0019396814970485893) +zone = ('inz012', 0.0010700288831120303) + +[fips1814911638] +centroid = (0.72086662143359781, -1.5121598787257522) +description = Center township, IN +station = ('koxi', 0.00054277030864504044) +zone = ('inz012', 0.00038960273019061637) + +[fips1814916948] +centroid = (0.72232191187049577, -1.5122497631822298) +description = Davis township, IN +station = ('koxi', 0.00099554844090722671) +zone = ('inz012', 0.0018327850201307813) + +[fips1814932] +centroid = (0.69216307618163919, -1.4860038160500044) +description = Connersville city, IN +station = ('khao', 0.0098335494337312909) +zone = ('inz058', 0.00058690419800256027) + +[fips1814937440] +centroid = (0.72067367528478976, -1.5140475395782467) +description = Jackson township, IN +station = ('koxi', 0.0013406210189488706) +zone = ('inz012', 0.0013338995659491588) + +[fips1814954504] +centroid = (0.71931153307007079, -1.5101830490017731) +description = North Bend township, IN +station = ('koxi', 0.0026780283538024151) +zone = ('inz012', 0.0019736807197802482) + +[fips1814956916] +centroid = (0.72234988949840517, -1.5100995873569429) +description = Oregon township, IN +station = ('koxi', 0.0020647360142309087) +zone = ('inz012', 0.0024829684750859045) + +[fips1814962748] +centroid = (0.71939356354491457, -1.5160867648229843) +description = Railroad township, IN +station = ('koxi', 0.0033262129486201527) +zone = ('inz013', 0.0037761165002798401) + +[fips1814981062] +centroid = (0.72094886134795177, -1.510028151030659) +description = Washington township, IN +station = ('koxi', 0.0018998973549515079) +zone = ('inz012', 0.0017599868684222988) + +[fips1814981908] +centroid = (0.71935431109003722, -1.514197969506476) +description = Wayne township, IN +station = ('koxi', 0.0023633166068708785) +zone = ('inz012', 0.0018296172836621246) + +[fips1814986] +centroid = (0.70823476606570368, -1.4987821743553109) +description = Converse town, IN +station = ('kokk', 0.0026769347449696083) +zone = ('inz031', 0.0036271080250121607) + +[fips18151] +centroid = (0.72681508749682988, -1.4835729214678268) +description = Steuben County, IN +station = ('koeb', 0.0051013662881929656) +zone = ('inz007', 2.3195326719070639e-05) + +[fips1815113447] +centroid = (0.7284032323963896, -1.4808228236187519) +description = Clear Lake township, IN +station = ('koeb', 0.0043976786369680264) +zone = ('inz007', 0.0025739866881336155) + +[fips1815115] +centroid = (0.68603534735093474, -1.5031439615955551) +description = Cordry Sweetwater Lakes CDP, IN +station = ('kbak', 0.0031038886688725064) +zone = ('inz063', 0.0023864849821734228) + +[fips1815125891] +centroid = (0.72827756869024607, -1.4821265147568217) +description = Fremont township, IN +station = ('koeb', 0.0039908682016395079) +zone = ('inz007', 0.0017987802382923436) + +[fips1815137458] +centroid = (0.7270605156962453, -1.4860675031144099) +description = Jackson township, IN +station = ('kirs', 0.0046887022910775461) +zone = ('inz007', 0.001900594962855583) + +[fips1815137746] +centroid = (0.72832584449735616, -1.4840048730044029) +description = Jamestown township, IN +station = ('koeb', 0.0035640880740397439) +zone = ('inz007', 0.0015416163840058224) + +[fips1815149644] +centroid = (0.72833193569644561, -1.4858849591279435) +description = Millgrove township, IN +station = ('koeb', 0.003701447254527672) +zone = ('inz007', 0.0023093353241679156) + +[fips1815157240] +centroid = (0.72551333367422988, -1.4819337605942313) +description = Otsego township, IN +station = ('kgwb', 0.0051459780358385897) +zone = ('inz007', 0.0017790464793067517) + +[fips1815160444] +centroid = (0.7270775850163298, -1.483996547783871) +description = Pleasant township, IN +station = ('koeb', 0.0048088445404793545) +zone = ('inz007', 0.00042327052165030011) + +[fips1815164224] +centroid = (0.72558747526085454, -1.4805723165112132) +description = Richland township, IN +station = ('kgwb', 0.0057040410622418219) +zone = ('inz007', 0.0025423052178601105) + +[fips1815167428] +centroid = (0.72535131475976733, -1.4858376432519222) +description = Salem township, IN +station = ('kgwb', 0.0046029313779193939) +zone = ('inz007', 0.002260196057240961) + +[fips1815168454] +centroid = (0.72700867941746106, -1.4821590302407863) +description = Scott township, IN +station = ('koeb', 0.0051561651877705056) +zone = ('inz007', 0.0010512557559605651) + +[fips1815173070] +centroid = (0.72542844085941294, -1.484009271234118) +description = Steuben township, IN +station = ('kgwb', 0.0046409516971643791) +zone = ('inz007', 0.0014374959594026628) + +[fips1815186030] +centroid = (0.72708812680501189, -1.4807690325712053) +description = York township, IN +station = ('koeb', 0.0055160382406098368) +zone = ('inz007', 0.0020901905454323863) + +[fips1815220] +centroid = (0.7231928835271183, -1.4860430859581744) +description = Corunna town, IN +station = ('kgwb', 0.0025622929101112822) +zone = ('inz009', 0.0020108481259964945) + +[fips1815256] +centroid = (0.6669448661794507, -1.5031790950733976) +description = Corydon town, IN +station = ('ksdf', 0.0054084182352581618) +zone = ('inz090', 0.00037085411877300315) + +[fips18153] +centroid = (0.68223567830288045, -1.5256942787564374) +description = Sullivan County, IN +station = ('krsv', 0.0034189445202572272) +zone = ('inz060', 1.8399923431170039e-05) + +[fips1815310792] +centroid = (0.68219834571018034, -1.5235222165023306) +description = Cass township, IN +station = ('krsv', 0.0050134356854578217) +zone = ('inz060', 0.001669338499869016) + +[fips1815316390] +centroid = (0.68447154979444036, -1.5253975029704283) +description = Curry township, IN +station = ('khuf', 0.0042096250043538886) +zone = ('inz060', 0.0022534084077764729) + +[fips1815322162] +centroid = (0.68434733471157594, -1.5278208926368224) +description = Fairbanks township, IN +station = ('krsv', 0.0037163674833079552) +zone = ('inz060', 0.0026955666219828224) + +[fips1815327666] +centroid = (0.681084930367163, -1.5272303430311178) +description = Gill township, IN +station = ('krsv', 0.0019822662551634818) +zone = ('inz060', 0.0016644662496157687) + +[fips1815330348] +centroid = (0.6800171204775004, -1.5254308213058487) +description = Haddon township, IN +station = ('krsv', 0.0035052817025270082) +zone = ('inz060', 0.0022191025799444086) + +[fips1815330672] +centroid = (0.68254135526807469, -1.5252576846440511) +description = Hamilton township, IN +station = ('krsv', 0.0038505982471237388) +zone = ('inz060', 0.0004491178184688056) + +[fips1815337476] +centroid = (0.68428715575896715, -1.5235406995391092) +description = Jackson township, IN +station = ('khuf', 0.0042578027243453179) +zone = ('inz060', 0.002640551384418805) + +[fips1815338214] +centroid = (0.6800130364070508, -1.5234737312557101) +description = Jefferson township, IN +station = ('krsv', 0.0049884327024274366) +zone = ('inz060', 0.0027973598203776665) + +[fips1815364] +centroid = (0.70030022003345715, -1.4955332439527234) +description = Country Club Heights town, IN +station = ('kaid', 0.00095779343840160503) +zone = ('inz040', 0.0007767947591287344) + +[fips1815376814] +centroid = (0.68318663839912219, -1.5278947200641817) +description = Turman township, IN +station = ('krsv', 0.0026673148334511688) +zone = ('inz060', 0.0019725486554885291) + +[fips1815409] +centroid = (0.6813406211025802, -1.4954903088531244) +description = Country Squire Lakes CDP, IN +station = ('kbak', 0.0049377496156541544) +zone = ('inz072', 0.001055649435676823) + +[fips1815490] +centroid = (0.70058306809203541, -1.5252613847420653) +description = Covington city, IN +station = ('kdnv', 0.0029154101089898334) +zone = ('inz035', 0.00201922697700917) + +[fips18155] +centroid = (0.67763884757227033, -1.4840478604638796) +description = Switzerland County, IN +station = ('kcvg', 0.00629220358260807) +zone = ('inz080', 9.9735524613059001e-05) + +[fips1815515328] +centroid = (0.67840391264988198, -1.483794246670272) +description = Cotton township, IN +station = ('kcvg', 0.0056808217111532344) +zone = ('inz080', 0.0008149456254625101) + +[fips1815515580] +centroid = (0.6765095322797674, -1.4861525181022743) +description = Craig township, IN +station = ('kcvg', 0.008279962458757369) +zone = ('kyz089', 0.0016676883138555957) + +[fips1815538232] +centroid = (0.67724757966055815, -1.4844643134766979) +description = Jefferson township, IN +station = ('kcvg', 0.0067906333737276147) +zone = ('inz080', 0.00045668081037305018) + +[fips1815560480] +centroid = (0.67821574870322454, -1.4862402732570645) +description = Pleasant township, IN +station = ('kcvg', 0.0074233590205592236) +zone = ('inz080', 0.001706362789640832) + +[fips1815561380] +centroid = (0.67814347461889946, -1.4812733803651541) +description = Posey township, IN +station = ('kcvg', 0.0043911059250999421) +zone = ('kyz090', 0.0017151247397068821) + +[fips1815586048] +centroid = (0.67741071558574217, -1.4826771661358258) +description = York township, IN +station = ('kcvg', 0.0056621550690266519) +zone = ('inz080', 0.0011907753570689331) + +[fips1815634] +centroid = (0.66825124512456846, -1.5021332588790175) +description = Crandall town, IN +station = ('ksdf', 0.0049113309113258449) +zone = ('inz090', 0.0017347438241893968) + +[fips1815652] +centroid = (0.67883399668415845, -1.5167133554777428) +description = Crane town, IN +station = ('kbmg', 0.0058996525000099848) +zone = ('inz061', 0.0026114013001931153) + +[fips18157] +centroid = (0.70492556944404494, -1.516585405390279) +description = Tippecanoe County, IN +station = ('klaf', 0.00088537625080933738) +zone = ('inz029', 1.1706718687728835e-05) + +[fips1815722342] +centroid = (0.70561413674054174, -1.5158668358839404) +description = Fairfield township, IN +station = ('klaf', 0.0013088499683196623) +zone = ('inz029', 0.00088981984277117622) + +[fips1815737494] +centroid = (0.70263533094628539, -1.5189069550948193) +description = Jackson township, IN +station = ('klaf', 0.002951817655155948) +zone = ('inz029', 0.0028840819050382866) + +[fips1815742] +centroid = (0.69888707929799498, -1.5166334193980013) +description = Crawfordsville city, IN +station = ('klaf', 0.0065554209488278489) +zone = ('inz036', 6.7699611128463187e-05) + +[fips1815742354] +centroid = (0.7025120583412171, -1.5146495036372594) +description = Lauramie township, IN +station = ('klaf', 0.0036466295821018842) +zone = ('inz029', 0.0028203481812657024) + +[fips1815759148] +centroid = (0.70565141697336431, -1.5141211226595108) +description = Perry township, IN +station = ('klaf', 0.0026324546632731979) +zone = ('inz029', 0.0020180000788366311) + +[fips1815762964] +centroid = (0.70263910085746972, -1.5169301951840104) +description = Randolph township, IN +station = ('klaf', 0.0028066685444165162) +zone = ('inz029', 0.002289847356473247) + +[fips1815769174] +centroid = (0.70441041806202631, -1.5141557499918703) +description = Sheffield township, IN +station = ('klaf', 0.0027794261855601039) +zone = ('inz029', 0.0019202925590012928) + +[fips1815769300] +centroid = (0.70660581536823241, -1.5192326160799487) +description = Shelby township, IN +station = ('klaf', 0.0017485041629031731) +zone = ('inz029', 0.0026293066513747593) + +[fips1815775914] +centroid = (0.70730895616398337, -1.5159828130127353) +description = Tippecanoe township, IN +station = ('klaf', 0.0022529293922466751) +zone = ('inz029', 0.0024387945511282977) + +[fips1815777660] +centroid = (0.70414991021787354, -1.5178027027303751) +description = Union township, IN +station = ('klaf', 0.001267133960763032) +zone = ('inz029', 0.0012001061274549392) + +[fips1815779352] +centroid = (0.70639426400959815, -1.5176851548052532) +description = Wabash township, IN +station = ('klaf', 0.00099465595540573987) +zone = ('inz029', 0.0016995019486370424) + +[fips1815781080] +centroid = (0.70699701346677446, -1.5140206091478883) +description = Washington township, IN +station = ('klaf', 0.0031313148097339713) +zone = ('inz029', 0.0028559335582527454) + +[fips1815781926] +centroid = (0.70427377623488763, -1.5192440305332571) +description = Wayne township, IN +station = ('klaf', 0.0017074133215017806) +zone = ('inz029', 0.0021223348160589088) + +[fips1815782070] +centroid = (0.70423033498980558, -1.5160911455994068) +description = Wea township, IN +station = ('klaf', 0.0016234528204801001) +zone = ('inz029', 0.00078156826153114186) + +[fips18159] +centroid = (0.70354621828290131, -1.5019641539277919) +description = Tipton County, IN +station = ('kokk', 0.0038963845399473604) +zone = ('inz038', 6.0856152594131546e-05) + +[fips1815912646] +centroid = (0.70291194817943403, -1.5017984698219) +description = Cicero township, IN +station = ('kokk', 0.0045359335868460282) +zone = ('inz038', 0.00065833790215158927) + +[fips1815938250] +centroid = (0.70267166870131192, -1.5043262476308561) +description = Jefferson township, IN +station = ('ktyq', 0.0040913850724906492) +zone = ('inz038', 0.0020634163996677956) + +[fips1815943416] +centroid = (0.70457200064417602, -1.5020448928589891) +description = Liberty township, IN +station = ('kokk', 0.0028691691226484348) +zone = ('inz038', 0.001012343772130941) + +[fips1815946116] +centroid = (0.7029580074183942, -1.4994772342766252) +description = Madison township, IN +station = ('kmzz', 0.0048514126090847464) +zone = ('inz038', 0.0019376059754177112) + +[fips1815961614] +centroid = (0.70435407883377188, -1.5042109860870541) +description = Prairie township, IN +station = ('kokk', 0.0034628934440768346) +zone = ('inz038', 0.0019372746187519287) + +[fips1815984194] +centroid = (0.70462858421852559, -1.4996729729522362) +description = Wildcat township, IN +station = ('kokk', 0.0033834968854936174) +zone = ('inz038', 0.0019951252890773193) + +[fips1815994] +centroid = (0.72262289390000212, -1.494249065595691) +description = Cromwell town, IN +station = ('kgsh', 0.0031701749288060043) +zone = ('inz008', 0.002577265946104633) + +[fips1816084] +centroid = (0.6770939557797977, -1.4981864411217276) +description = Crothersville town, IN +station = ('kbak', 0.0082790466212170101) +zone = ('inz078', 0.0022880296457607795) + +[fips18161] +centroid = (0.69155374683318294, -1.4822235201566474) +description = Union County, IN +station = ('khao', 0.0070922885395864801) +zone = ('inz059', 4.17017748416569e-05) + +[fips1816108542] +centroid = (0.69275510931720818, -1.4831576378256073) +description = Brownsville township, IN +station = ('kmwo', 0.0082782068348326368) +zone = ('inz059', 0.0013649151101847094) + +[fips1816111656] +centroid = (0.69142080510405846, -1.4813641898461356) +description = Center township, IN +station = ('khao', 0.006501843399587974) +zone = ('inz059', 0.00068390335553618049) + +[fips1816131522] +centroid = (0.69027754463083213, -1.4830823094150911) +description = Harmony township, IN +station = ('kmwo', 0.0077384923119832487) +zone = ('inz059', 0.0014750574915269499) + +[fips1816132008] +centroid = (0.69276319019164501, -1.4814361497711952) +description = Harrison township, IN +station = ('kmwo', 0.0070494823350648415) +zone = ('inz059', 0.0013153784482539243) + +[fips1816138] +centroid = (0.72286479653432845, -1.5245001244822232) +description = Crown Point city, IN +station = ('kigq', 0.0032311185903177702) +zone = ('inz001', 0.00044940364323340726) + +[fips1816143452] +centroid = (0.69149231124351274, -1.483229126511769) +description = Liberty township, IN +station = ('kmwo', 0.0079943225321311116) +zone = ('inz059', 0.00078210922722906815) + +[fips1816156] +centroid = (0.69562682170856216, -1.5039338801617153) +description = Crows Nest town, IN +station = ('keye', 0.0018004949965082736) +zone = ('inz047', 0.0013700408131058169) + +[fips1816177678] +centroid = (0.69046501044578878, -1.4812248602119487) +description = Union township, IN +station = ('khao', 0.0058201740604779378) +zone = ('inz059', 0.0013671208224120745) + +[fips18163] +centroid = (0.66357540333872045, -1.5286669758983118) +description = Vanderburgh County, IN +station = ('kevv', 0.00076235855945363401) +zone = ('inz086', 9.3246428160784206e-05) + +[fips1816300] +centroid = (0.71936912893538651, -1.5083642937481476) +description = Culver town, IN +station = ('koxi', 0.0036843788151566669) +zone = ('inz014', 0.002834020994692685) + +[fips1816302188] +centroid = (0.66557382278554655, -1.5297244883453875) +description = Armstrong township, IN +station = ('kevv', 0.0023558311298126264) +zone = ('inz086', 0.0020818617425034268) + +[fips1816311674] +centroid = (0.66402794976047008, -1.52785585158174) +description = Center township, IN +station = ('kevv', 0.00023771040868901701) +zone = ('inz086', 0.00072750072928921058) + +[fips1816327486] +centroid = (0.66399061716776997, -1.5296808027542104) +description = German township, IN +station = ('kevv', 0.0015357602174373669) +zone = ('inz086', 0.00086702102762265345) + +[fips1816336] +centroid = (0.69440304919694118, -1.5001115218333849) +description = Cumberland town, IN +station = ('kgez', 0.0040766494569888434) +zone = ('inz048', 0.0024583269425401517) + +[fips1816340212] +centroid = (0.66267027558863623, -1.5271061977614233) +description = Knight township, IN +station = ('kevv', 0.0012430545944778903) +zone = ('inz086', 0.0015790488839101148) + +[fips1816359166] +centroid = (0.66263175617204473, -1.5297624492566186) +description = Perry township, IN +station = ('kevv', 0.0019770334784569138) +zone = ('inz086', 0.0013531731723908241) + +[fips1816359670] +centroid = (0.66277468118449057, -1.5283749648611606) +description = Pigeon township, IN +station = ('kevv', 0.0011454109721650159) +zone = ('inz086', 0.00092131821642003724) + +[fips1816368472] +centroid = (0.66555554918827819, -1.5277612372829894) +description = Scott township, IN +station = ('kevv', 0.0017487044575134226) +zone = ('inz086', 0.0020150537261770332) + +[fips1816377696] +centroid = (0.66104982464462214, -1.5294413086742515) +description = Union township, IN +station = ('kehr', 0.0012566354097890361) +zone = ('kyz018', 0.0015952979097333495) + +[fips18165] +centroid = (0.69558430548798345, -1.5265011095630494) +description = Vermillion County, IN +station = ('kprg', 0.0038678884341131247) +zone = ('inz043', 2.6197156793414939e-05) + +[fips1816513798] +centroid = (0.69200988863319157, -1.5264263222046015) +description = Clinton township, IN +station = ('kprg', 0.0029831051891764794) +zone = ('inz043', 0.0035711143879878127) + +[fips1816521556] +centroid = (0.69739213498049168, -1.5269294831746589) +description = Eugene township, IN +station = ('kdnv', 0.0044642423567663346) +zone = ('inz043', 0.001837226695668152) + +[fips1816532962] +centroid = (0.69396666452406508, -1.5264045928554142) +description = Helt township, IN +station = ('kprg', 0.0030535867569948666) +zone = ('inz043', 0.001616461497636554) + +[fips1816533520] +centroid = (0.69932259130624508, -1.5266300719414791) +description = Highland township, IN +station = ('kdnv', 0.0028417472148505453) +zone = ('inz043', 0.0037432745664490504) + +[fips1816534] +centroid = (0.66649338440854478, -1.5308026305842222) +description = Cynthiana town, IN +station = ('kevv', 0.0036063377301250414) +zone = ('inz081', 0.0027586608735663287) + +[fips1816578794] +centroid = (0.69574981506095013, -1.5265685141787615) +description = Vermillion township, IN +station = ('kprg', 0.00394834146608849) +zone = ('inz043', 0.00017174937170850887) + +[fips1816624] +centroid = (0.66625256387835452, -1.5182165202960229) +description = Dale town, IN +station = ('khnb', 0.0014309443940446376) +zone = ('inz088', 0.0027935633909057151) + +[fips1816642] +centroid = (0.7002032495402164, -1.4932638446862327) +description = Daleville town, IN +station = ('kaid', 0.00078760312852570061) +zone = ('inz040', 0.0022835661625186512) + +[fips18167] +centroid = (0.68816836658967462, -1.5252497783025396) +description = Vigo County, IN +station = ('khuf', 0.001058110339202147) +zone = ('inz051', 2.5927078433563329e-05) + +[fips1816722882] +centroid = (0.69062458589929865, -1.5265289824712038) +description = Fayette township, IN +station = ('khuf', 0.0028801850861912941) +zone = ('inz051', 0.0026254570245513621) + +[fips1816732] +centroid = (0.69476770083756034, -1.5270676957981244) +description = Dana town, IN +station = ('kprg', 0.0030019912597664187) +zone = ('inz043', 0.00090959554047507693) + +[fips1816732026] +centroid = (0.68897017084804069, -1.5252050280605185) +description = Harrison township, IN +station = ('khuf', 0.0010538745407347714) +zone = ('inz051', 0.00077693507043212907) + +[fips1816734546] +centroid = (0.68752414810947093, -1.5255678994653006) +description = Honey Creek township, IN +station = ('khuf', 0.0015978088088016167) +zone = ('inz051', 0.00071508651757155341) + +[fips1816744208] +centroid = (0.68602747591600832, -1.525622894790031) +description = Linton township, IN +station = ('khuf', 0.0028142814948985406) +zone = ('inz051', 0.0021861131162440794) + +[fips1816745018] +centroid = (0.68898155039476372, -1.523541729283368) +description = Lost Creek township, IN +station = ('khuf', 0.00055469563387842459) +zone = ('inz051', 0.0015318760168307865) + +[fips1816752308] +centroid = (0.69056843865726203, -1.5227559471475349) +description = Nevins township, IN +station = ('khuf', 0.0022390273416015741) +zone = ('inz051', 0.0030532919792896161) + +[fips1816757294] +centroid = (0.69045965228498518, -1.5245174032418176) +description = Otter Creek township, IN +station = ('khuf', 0.0019741082346805463) +zone = ('inz051', 0.0023340568043290323) + +[fips1816759652] +centroid = (0.68596921682557654, -1.523582761974082) +description = Pierson township, IN +station = ('khuf', 0.0025799987836169756) +zone = ('inz051', 0.0025683973200076198) + +[fips1816761704] +centroid = (0.68577318144399257, -1.5277066259306944) +description = Prairie Creek township, IN +station = ('khuf', 0.0039983951796103952) +zone = ('inz051', 0.003080078227132113) + +[fips1816761776] +centroid = (0.68699944977644389, -1.5269866252543693) +description = Prairieton township, IN +station = ('khuf', 0.0027940659065121263) +zone = ('inz051', 0.0018004270208008893) + +[fips1816764530] +centroid = (0.68755261442957105, -1.5236124674779512) +description = Riley township, IN +station = ('khuf', 0.0010165724551411655) +zone = ('inz051', 0.0014136931659529367) + +[fips1816773970] +centroid = (0.68879839554305944, -1.5268502975864959) +description = Sugar Creek township, IN +station = ('khuf', 0.0022448323297133256) +zone = ('inz051', 0.0013804234906087105) + +[fips1816804] +centroid = (0.69401731397895794, -1.5099084912571421) +description = Danville town, IN +station = ('kind', 0.0031713272824149918) +zone = ('inz046', 9.3269641430214733e-05) + +[fips1816840] +centroid = (0.70000569572218319, -1.5145397049740164) +description = Darlington town, IN +station = ('klaf', 0.0058707711145519238) +zone = ('inz036', 0.0019467793672452544) + +[fips1816858] +centroid = (0.66481736218114706, -1.528506894299319) +description = Darmstadt town, IN +station = ('kevv', 0.0011751660963555553) +zone = ('inz086', 0.0011551453106256105) + +[fips18169] +centroid = (0.71285734040278081, -1.497408286074726) +description = Wabash County, IN +station = ('kgus', 0.0057830170737102312) +zone = ('inz024', 3.7927814091758074e-05) + +[fips1816912322] +centroid = (0.71521013150093171, -1.4963029516061455) +description = Chester township, IN +station = ('kasw', 0.0053569761261973046) +zone = ('inz024', 0.0024588753448294832) + +[fips1816940914] +centroid = (0.71273384090490965, -1.4957045480188067) +description = Lagro township, IN +station = ('kmzz', 0.0060544907641733904) +zone = ('inz024', 0.001283184496237896) + +[fips1816943470] +centroid = (0.71040445467202795, -1.4959339017358113) +description = Liberty township, IN +station = ('kmzz', 0.0037428173863166972) +zone = ('inz024', 0.0027202639476306524) + +[fips1816954162] +centroid = (0.71209426500051642, -1.4984093894803776) +description = Noble township, IN +station = ('kgus', 0.0047259245296148375) +zone = ('inz024', 0.001110840718925395) + +[fips1816958482] +centroid = (0.71396024886370102, -1.4985504818971087) +description = Paw Paw township, IN +station = ('krcr', 0.0049846323097211837) +zone = ('inz024', 0.0013835328408054585) + +[fips1816960498] +centroid = (0.71550107788723927, -1.4985861913336045) +description = Pleasant township, IN +station = ('krcr', 0.0043286467752651223) +zone = ('inz024', 0.0027618030513542487) + +[fips1816979982] +centroid = (0.71024978359371627, -1.4984726751190549) +description = Waltz township, IN +station = ('kokk', 0.0039588833745206591) +zone = ('inz024', 0.0027669700539580426) + +[fips1817002] +centroid = (0.70469145097818242, -1.5145030879663097) +description = Dayton town, IN +station = ('klaf', 0.0024374163480001248) +zone = ('inz029', 0.0016037933192275299) + +[fips1817074] +centroid = (0.7126202897837749, -1.4822758974874997) +description = Decatur city, IN +station = ('kfwa', 0.0046523858315806431) +zone = ('inz027', 0.0014813708359070745) + +[fips18171] +centroid = (0.70428674403122993, -1.5249962168688098) +description = Warren County, IN +station = ('kdnv', 0.0039635569942032406) +zone = ('inz028', 0.00031629350762155226) + +[fips1817100496] +centroid = (0.70567820777738244, -1.5222907470887084) +description = Adams township, IN +station = ('klaf', 0.0036088894360508448) +zone = ('inz028', 0.0023079741088277146) + +[fips1817110] +centroid = (0.67227218701519043, -1.5275828122735577) +description = Decker town, IN +station = ('kajg', 0.003163355569207793) +zone = ('inz067', 0.003312478396274856) + +[fips1817139024] +centroid = (0.70426169855646381, -1.526559839892379) +description = Jordan township, IN +station = ('kdnv', 0.0031653601348511904) +zone = ('inz028', 0.0014934730561024787) + +[fips1817139528] +centroid = (0.70158774942265345, -1.5267751611621976) +description = Kent township, IN +station = ('kdnv', 0.0015703573690265611) +zone = ('inz028', 0.0030821491055907108) + +[fips1817143488] +centroid = (0.70416989423780896, -1.5240785402014037) +description = Liberty township, IN +station = ('kdnv', 0.004436955654842911) +zone = ('inz028', 0.00039981788757746992) + +[fips1817148222] +centroid = (0.70579345186789166, -1.5209109770485443) +description = Medina township, IN +station = ('klaf', 0.0025775667512609314) +zone = ('inz019', 0.0036826319214813825) + +[fips1817151264] +centroid = (0.70080009978452085, -1.5264982123164912) +description = Mound township, IN +station = ('kdnv', 0.0019587782081978869) +zone = ('ilz046', 0.0036537904281935575) + +[fips1817159778] +centroid = (0.70239674443753786, -1.5250141763068128) +description = Pike township, IN +station = ('kdnv', 0.0030178577421386349) +zone = ('inz028', 0.0018168158165115626) + +[fips1817159958] +centroid = (0.70569806962427017, -1.5241955645277498) +description = Pine township, IN +station = ('klaf', 0.0050570304314458492) +zone = ('inz028', 0.0015432958098727224) + +[fips1817161632] +centroid = (0.70568824342058145, -1.5263325805704768) +description = Prairie township, IN +station = ('kdnv', 0.0044987746361970045) +zone = ('inz028', 0.0019979934786724489) + +[fips1817173088] +centroid = (0.70263548802591813, -1.5264742140392762) +description = Steuben township, IN +station = ('kdnv', 0.0020696365506103331) +zone = ('inz028', 0.0021076108345253561) + +[fips1817180198] +centroid = (0.7042238772715731, -1.5217176333222309) +description = Warren township, IN +station = ('klaf', 0.0033769977795627391) +zone = ('inz028', 0.0021991053721112483) + +[fips1817181098] +centroid = (0.70296367973846308, -1.5241703270667659) +description = Washington township, IN +station = ('kdnv', 0.0038055721744776373) +zone = ('inz028', 0.0012662437843506977) + +[fips18173] +centroid = (0.6649314194477649, -1.5231841462262192) +description = Warrick County, IN +station = ('kevv', 0.0037626555522807031) +zone = ('inz087', 9.7115880574081745e-05) + +[fips1817301540] +centroid = (0.66206899220803173, -1.5237222137813167) +description = Anderson township, IN +station = ('kowb', 0.0038677981456479607) +zone = ('inz087', 0.0027974625577200751) + +[fips1817306472] +centroid = (0.66393286422282149, -1.5233518025541657) +description = Boon township, IN +station = ('kevv', 0.0034623326764748065) +zone = ('inz087', 0.00091090495898140669) + +[fips1817309964] +centroid = (0.66480613971405689, -1.5256554975404584) +description = Campbell township, IN +station = ('kevv', 0.0019247619748512356) +zone = ('inz087', 0.0019441681638995359) + +[fips1817329970] +centroid = (0.66620886083388464, -1.5255254356045997) +description = Greer township, IN +station = ('kevv', 0.0029698003589112344) +zone = ('inz087', 0.0022972064864581606) + +[fips1817332188] +centroid = (0.66631103240829648, -1.5236250163952729) +description = Hart township, IN +station = ('kevv', 0.0040963620260470041) +zone = ('inz087', 0.0015166509183679052) + +[fips1817342012] +centroid = (0.66675654515316052, -1.521761545806211) +description = Lane township, IN +station = ('khnb', 0.0034009643752382617) +zone = ('inz087', 0.0022246349387917137) + +[fips1817356178] +centroid = (0.66317724137646294, -1.5253679894527772) +description = Ohio township, IN +station = ('kevv', 0.0019756412121680225) +zone = ('inz087', 0.0023874857903314868) + +[fips1817357492] +centroid = (0.66585996951641091, -1.521638377920898) +description = Owen township, IN +station = ('khnb', 0.003638758599963896) +zone = ('inz087', 0.0015916508272265056) + +[fips1817359688] +centroid = (0.6662443084709927, -1.5197810683440955) +description = Pigeon township, IN +station = ('khnb', 0.0022004362966980967) +zone = ('inz088', 0.0029304577233743088) + +[fips1817370002] +centroid = (0.66457006647943206, -1.5211041675434476) +description = Skelton township, IN +station = ('khnb', 0.0041059875142236647) +zone = ('inz087', 0.0016593842697719776) + +[fips18175] +centroid = (0.67370779013812598, -1.5028114065598799) +description = Washington County, IN +station = ('klou', 0.0087737974319025257) +zone = ('inz077', 1.3059156973823771e-05) + +[fips1817508380] +centroid = (0.67549921353566544, -1.5055675956080445) +description = Brown township, IN +station = ('kbmg', 0.009159603946927641) +zone = ('inz077', 0.0028015352861296815) + +[fips1817525630] +centroid = (0.67370243197732238, -1.5000037826586594) +description = Franklin township, IN +station = ('klou', 0.0074426822615986966) +zone = ('inz077', 0.0022017054762679829) + +[fips1817527594] +centroid = (0.67535477008677036, -1.5005271021815774) +description = Gibson township, IN +station = ('klou', 0.0090853407961668364) +zone = ('inz077', 0.0024407958283470138) + +[fips1817534960] +centroid = (0.67218244218505296, -1.5044219963936203) +description = Howard township, IN +station = ('ksdf', 0.0085693373365410535) +zone = ('inz077', 0.0019650970056322866) + +[fips1817537512] +centroid = (0.67108229134435093, -1.5019414821008084) +description = Jackson township, IN +station = ('ksdf', 0.0064095803378808932) +zone = ('inz077', 0.0027038152268265771) + +[fips1817538268] +centroid = (0.67560398565066271, -1.5038426343484208) +description = Jefferson township, IN +station = ('kbmg', 0.0098474802950740768) +zone = ('inz077', 0.0020670696468910038) + +[fips1817546134] +centroid = (0.67208156215428771, -1.505579969992441) +description = Madison township, IN +station = ('ksdf', 0.0091999384895340777) +zone = ('inz077', 0.0026953897635605037) + +[fips1817550508] +centroid = (0.67599809844905556, -1.5022540705698406) +description = Monroe township, IN +station = ('kbak', 0.0096243391557934918) +zone = ('inz077', 0.0023431972641188049) + +[fips1817559580] +centroid = (0.67218259926468571, -1.5020344208834771) +description = Pierce township, IN +station = ('klou', 0.0072707556585776874) +zone = ('inz077', 0.0016346319429076538) + +[fips1817561002] +centroid = (0.67243720789596662, -1.5000139928347833) +description = Polk township, IN +station = ('klou', 0.0063923655582917875) +zone = ('inz077', 0.0025307251312131312) + +[fips1817561398] +centroid = (0.67099759051575159, -1.5046814395869292) +description = Posey township, IN +station = ('ksdf', 0.0079911368002351171) +zone = ('inz077', 0.0030669063436732668) + +[fips1817578956] +centroid = (0.67370265887012504, -1.5053698847103785) +description = Vernon township, IN +station = ('ksdf', 0.010157676356946938) +zone = ('inz077', 0.0019920177789120959) + +[fips1817581116] +centroid = (0.67394091376631482, -1.5027754004174114) +description = Washington township, IN +station = ('klou', 0.0089262990879374598) +zone = ('inz077', 0.0002464112701961114) + +[fips1817614] +centroid = (0.70830848877330799, -1.5126274524323615) +description = Delphi city, IN +station = ('kggp', 0.0044958048957265033) +zone = ('inz021', 0.001374158737701446) + +[fips18177] +centroid = (0.69574218797211884, -1.483647412120302) +description = Wayne County, IN +station = ('kmie', 0.0083284716029502787) +zone = ('inz050', 4.81637479589922e-05) + +[fips1817700172] +centroid = (0.69362958908562733, -1.4833819126344885) +description = Abington township, IN +station = ('kmwo', 0.008769802698298133) +zone = ('inz050', 0.0021496145622660386) + +[fips1817706670] +centroid = (0.69385328793585554, -1.481428959014677) +description = Boston township, IN +station = ('kmwo', 0.0075468056551465917) +zone = ('inz059', 0.0023389843228682323) + +[fips1817711710] +centroid = (0.69506646629891689, -1.4835252216193699) +description = Center township, IN +station = ('kmie', 0.0089196882335943611) +zone = ('inz050', 0.00071172715232691063) + +[fips1817713258] +centroid = (0.69644686465761163, -1.4844930066896007) +description = Clay township, IN +station = ('kmie', 0.0073727345647566066) +zone = ('inz050', 0.00091252633873390712) + +[fips1817716714] +centroid = (0.69770413003757825, -1.4863011154347894) +description = Dalton township, IN +station = ('kmie', 0.0055334819466514602) +zone = ('inz050', 0.0027805789293927612) + +[fips1817722] +centroid = (0.71906175900081792, -1.521850697224403) +description = De Motte town, IN +station = ('krzl', 0.0043500592585696872) +zone = ('inz011', 0.0032478412376582486) + +[fips1817725666] +centroid = (0.69733644152406049, -1.4810800676972034) +description = Franklin township, IN +station = ('kves', 0.0061440094250598022) +zone = ('inz050', 0.0025526785503989765) + +[fips1817729250] +centroid = (0.69748585916132377, -1.4835942842978713) +description = Green township, IN +station = ('kmie', 0.0070892081691953301) +zone = ('inz050', 0.0017228310654014069) + +[fips1817732044] +centroid = (0.69557180893053927, -1.485341742851553) +description = Harrison township, IN +station = ('kmie', 0.0077233033243590482) +zone = ('inz050', 0.0012729585357573075) + +[fips1817737530] +centroid = (0.69507583871699996, -1.486449276434991) +description = Jackson township, IN +station = ('kmie', 0.0077772924156086325) +zone = ('inz050', 0.002218578792621306) + +[fips1817738286] +centroid = (0.69662710480946499, -1.486093019828074) +description = Jefferson township, IN +station = ('kmie', 0.0065217620793913723) +zone = ('inz050', 0.0020265938584194849) + +[fips1817752938] +centroid = (0.69743943340322079, -1.4821852625394438) +description = New Garden township, IN +station = ('kves', 0.0067108168226249253) +zone = ('inz050', 0.0020391721887485382) + +[fips1817759184] +centroid = (0.6976129016775765, -1.4852202504823215) +description = Perry township, IN +station = ('kmie', 0.0061202816459206425) +zone = ('inz050', 0.0021838960206045596) + +[fips1817776] +centroid = (0.71322075285963105, -1.5023274791181793) +description = Denver town, IN +station = ('krcr', 0.0036714951700063474) +zone = ('inz023', 0.0017115017708197876) + +[fips1817781134] +centroid = (0.69415606765449156, -1.485791444386622) +description = Washington township, IN +station = ('kmie', 0.0088228199585063099) +zone = ('inz050', 0.0022721652996613158) + +[fips1817781944] +centroid = (0.69535763957802699, -1.4813663366011156) +description = Wayne township, IN +station = ('kves', 0.007787071032839145) +zone = ('inz050', 0.0018392613980429556) + +[fips1817782160] +centroid = (0.69636685876470017, -1.4827593885968873) +description = Webster township, IN +station = ('kves', 0.0077453880145848322) +zone = ('inz050', 0.00094134268752318494) + +[fips1817812] +centroid = (0.67710249043983994, -1.4949220471019677) +description = Deputy CDP, IN +station = ('kbak', 0.0088867465649827802) +zone = ('inz078', 0.0023125850543085904) + +[fips18179] +centroid = (0.71096463554874811, -1.4872469617163226) +description = Wells County, IN +station = ('kfwa', 0.0046235298576383773) +zone = ('inz026', 0.00015311341733437848) + +[fips1817912358] +centroid = (0.70891572372666189, -1.4882210997850307) +description = Chester township, IN +station = ('kfwa', 0.0067308913290315842) +zone = ('inz026', 0.0020408246619230573) + +[fips1817932062] +centroid = (0.71026322262895658, -1.4860930023747814) +description = Harrison township, IN +station = ('kfwa', 0.0053678224032362182) +zone = ('inz026', 0.0011488110917666405) + +[fips1817937548] +centroid = (0.70891247741425323, -1.4901880334921507) +description = Jackson township, IN +station = ('kmzz', 0.0045428305935198629) +zone = ('inz033', 0.0026265328521096675) + +[fips1817938304] +centroid = (0.71330098564534516, -1.4861055687453957) +description = Jefferson township, IN +station = ('kfwa', 0.0023863069842121683) +zone = ('inz026', 0.0026305442455944951) + +[fips1817941958] +centroid = (0.71172762368455, -1.4860895291695699) +description = Lancaster township, IN +station = ('kfwa', 0.0039210511327141453) +zone = ('inz026', 0.0013150833722250339) + +[fips1817943506] +centroid = (0.71031933496440824, -1.4883910948541748) +description = Liberty township, IN +station = ('kfwa', 0.0053667490730715389) +zone = ('inz026', 0.00092959658274863405) + +[fips1817955422] +centroid = (0.70886137417375472, -1.4859413158094905) +description = Nottingham township, IN +station = ('kfwa', 0.0067730578073955904) +zone = ('inz026', 0.0022782160591092847) + +[fips1817965322] +centroid = (0.71197132400800589, -1.4882965678218869) +description = Rockcreek township, IN +station = ('kfwa', 0.0037401828767811771) +zone = ('inz026', 0.0013087822246614031) + +[fips1817977714] +centroid = (0.71334008102058988, -1.4883205486458091) +description = Union township, IN +station = ('kfwa', 0.0024503362639850795) +zone = ('inz026', 0.0025810545150550456) + +[fips18181] +centroid = (0.71123825081558334, -1.5160679152670629) +description = White County, IN +station = ('krzl', 0.0055280202910025882) +zone = ('inz020', 2.3453623005733239e-05) + +[fips1818105194] +centroid = (0.71002423469448106, -1.5160333577478733) +description = Big Creek township, IN +station = ('klaf', 0.0047644258342163315) +zone = ('inz020', 0.0011963873373780473) + +[fips1818110810] +centroid = (0.71328562674792773, -1.5121335940672171) +description = Cass township, IN +station = ('kggp', 0.0044584589052476765) +zone = ('inz013', 0.0031322406529748041) + +[fips1818134564] +centroid = (0.7116611091867564, -1.5162254661386405) +description = Honey Creek township, IN +station = ('krzl', 0.0051751970251985397) +zone = ('inz020', 0.00045343730549755082) + +[fips1818137566] +centroid = (0.71175464138137079, -1.511548402622316) +description = Jackson township, IN +station = ('kggp', 0.0033052546715201859) +zone = ('inz022', 0.0034440263748672442) + +[fips1818143524] +centroid = (0.71298335317477479, -1.5139168842304425) +description = Liberty township, IN +station = ('kggp', 0.0054442381591823042) +zone = ('inz020', 0.0024101686532006744) + +[fips1818143866] +centroid = (0.71176184959118149, -1.5125576567155741) +description = Lincoln township, IN +station = ('kggp', 0.0040287869519027627) +zone = ('inz020', 0.0027276411719779929) + +[fips1818150166] +centroid = (0.71342356011871289, -1.5163063097895926) +description = Monon township, IN +station = ('krzl', 0.0043128196869948237) +zone = ('inz020', 0.0022098641765832933) + +[fips1818161650] +centroid = (0.70876209984590133, -1.5164264757085926) +description = Prairie township, IN +station = ('klaf', 0.0034677202954511471) +zone = ('inz020', 0.0024712528635626517) + +[fips1818162064] +centroid = (0.7118675641839749, -1.5186867469030954) +description = Princeton township, IN +station = ('krzl', 0.0036698422006639) +zone = ('inz020', 0.0020725392336276957) + +[fips1818166186] +centroid = (0.708631845923825, -1.5190681187979485) +description = Round Grove township, IN +station = ('klaf', 0.0034245808054782917) +zone = ('inz020', 0.0034364298590479157) + +[fips1818177732] +centroid = (0.71117592510799454, -1.5144586169769689) +description = Union township, IN +station = ('kggp', 0.0053198522401521247) +zone = ('inz020', 0.0012345942798218262) + +[fips1818183258] +centroid = (0.71034539273014052, -1.5186890681910006) +description = West Point township, IN +station = ('krzl', 0.0049440976942704117) +zone = ('inz020', 0.0021570371211760905) + +[fips1818190] +centroid = (0.68099961867332548, -1.4845537266942774) +description = Dillsboro town, IN +station = ('kcvg', 0.0053429018016286694) +zone = ('inz075', 0.0017423728397399196) + +[fips18183] +centroid = (0.7179660762030009, -1.4922895320845995) +description = Whitley County, IN +station = ('kfwa', 0.004631404013815457) +zone = ('inz017', 6.7712234096351263e-05) + +[fips1818313564] +centroid = (0.71652277617806415, -1.4946251665962031) +description = Cleveland township, IN +station = ('kasw', 0.004695108940795902) +zone = ('inz017', 0.0022765019685932432) + +[fips1818314698] +centroid = (0.7179660762030009, -1.4922895320845995) +description = Columbia township, IN +station = ('kfwa', 0.004631404013815457) +zone = ('inz017', 6.7712234096351263e-05) + +[fips1818321520] +centroid = (0.72006181520891821, -1.4936527214968698) +description = Etna-Troy township, IN +station = ('kasw', 0.003425314000704535) +zone = ('inz017', 0.002267622875314131) + +[fips1818338322] +centroid = (0.716374702444325, -1.4905533483578857) +description = Jefferson township, IN +station = ('kfwa', 0.0027798712277461481) +zone = ('inz017', 0.0021279670185311334) + +[fips1818364242] +centroid = (0.71850772168306476, -1.4942784918468799) +description = Richland township, IN +station = ('kasw', 0.0034850369353210831) +zone = ('inz017', 0.0015343714784494678) + +[fips1818370182] +centroid = (0.71935263557395535, -1.4898305377014647) +description = Smith township, IN +station = ('kfwa', 0.0043217977467265942) +zone = ('inz017', 0.0023172318179581755) + +[fips1818375590] +centroid = (0.71935984378376594, -1.4917784647730306) +description = Thorncreek township, IN +station = ('kfwa', 0.0052059024374006531) +zone = ('inz017', 0.0014085025341790272) + +[fips1818377750] +centroid = (0.71790982424120919, -1.4904302502857425) +description = Union township, IN +station = ('kfwa', 0.0034660629431970337) +zone = ('inz017', 0.0014478407442443568) + +[fips1818381152] +centroid = (0.7163071232956878, -1.4925912820589768) +description = Washington township, IN +station = ('kfwa', 0.0042645676597051884) +zone = ('inz017', 0.0017207150780401618) + +[fips1818550] +centroid = (0.67577710485916798, -1.5149677469730682) +description = Dover Hill CDP, IN +station = ('kbmg', 0.0079259133940518933) +zone = ('inz069', 0.00019666441589703262) + +[fips1818658] +centroid = (0.68876500739446878, -1.5258354060797539) +description = Dresser CDP, IN +station = ('khuf', 0.0014640418775045466) +zone = ('inz051', 0.00073170391626419234) + +[fips1818766] +centroid = (0.69486547418225719, -1.4871111052873474) +description = Dublin town, IN +station = ('kaid', 0.0076428226574260906) +zone = ('inz050', 0.0027674668087240041) + +[fips1818784] +centroid = (0.67101500890168653, -1.5149015640878325) +description = Dubois CDP, IN +station = ('khnb', 0.0040125463487484334) +zone = ('inz083', 0.0018214586328116611) + +[fips1818892] +centroid = (0.68190654411253937, -1.5229575152228478) +description = Dugger town, IN +station = ('krsv', 0.0053807605312560869) +zone = ('inz060', 0.0021320419888772439) + +[fips1818982] +centroid = (0.72691237214933602, -1.5201289648238958) +description = Dune Acres town, IN +station = ('kvpz', 0.0036971453988202639) +zone = ('inz002', 0.003313192055380566) + +[fips1819054] +centroid = (0.7046668069291443, -1.4871469718034758) +description = Dunkirk city, IN +station = ('kmie', 0.0035562882074020095) +zone = ('inz033', 0.0023300413859331914) + +[fips1819072] +centroid = (0.72666174286874963, -1.4996320624345696) +description = Dunlap CDP, IN +station = ('kekm', 0.0017514091954930074) +zone = ('inz005', 0.0010571833444908509) + +[fips1819162] +centroid = (0.69468998132596915, -1.4911512108931564) +description = Dunreith town, IN +station = ('kaid', 0.0059838130073984457) +zone = ('inz049', 0.0023029429079529785) + +[fips1819180] +centroid = (0.67878362648194601, -1.4925511045795958) +description = Dupont town, IN +station = ('kbak', 0.008356605602860433) +zone = ('inz079', 0.0021294697655982082) + +[fips1819270] +centroid = (0.72427589523456593, -1.5273155674584926) +description = Dyer town, IN +station = ('kigq', 0.00079546929447338072) +zone = ('inz001', 0.0021970619641229687) + +[fips1819450] +centroid = (0.71009694511111909, -1.5257656452695516) +description = Earl Park town, IN +station = ('krzl', 0.005524983689964698) +zone = ('inz019', 0.0019995823879370611) + +[fips1819486] +centroid = (0.7269376445169049, -1.5263100309165409) +description = East Chicago city, IN +station = ('kgyy', 0.0007415364541351635) +zone = ('inz001', 0.004198212877216557) + +[fips1819576] +centroid = (0.67841333742784282, -1.4833387157355016) +description = East Enterprise CDP, IN +station = ('kcvg', 0.0053839941975886213) +zone = ('inz080', 0.0010075457825182979) + +[fips1819756] +centroid = (0.69487093706281589, -1.4859182251034866) +description = East Germantown town, IN +station = ('kmie', 0.008133042937581202) +zone = ('inz050', 0.0019218703564782798) + +[fips1820080] +centroid = (0.70380220572429131, -1.4897637963108685) +description = Eaton town, IN +station = ('kmie', 0.0016967427979857252) +zone = ('inz041', 0.0017786031805969928) + +[fips1820152] +centroid = (0.69773966494114892, -1.4850435184422648) +description = Economy town, IN +station = ('kmie', 0.0061172296558587684) +zone = ('inz050', 0.0022263583164601128) + +[fips1820332] +centroid = (0.6999334216378581, -1.4964001315388966) +description = Edgewood town, IN +station = ('kaid', 0.0016287314924988765) +zone = ('inz040', 0.0010467008884872194) + +[fips1820404] +centroid = (0.68680161670573026, -1.5003363027877492) +description = Edinburgh town, IN +station = ('kbak', 0.0016971584537035685) +zone = ('inz064', 0.002678727791916833) + +[fips1820458] +centroid = (0.67740624754285705, -1.5228219729531378) +description = Edwardsport town, IN +station = ('klwv', 0.0048111174530548516) +zone = ('inz068', 0.0031048975862550897) + +[fips1820638] +centroid = (0.6660464404936941, -1.5262582295443419) +description = Elberfeld town, IN +station = ('kevv', 0.002526719955092062) +zone = ('inz087', 0.0027040518690849766) + +[fips1820674] +centroid = (0.66538707255558316, -1.5005112894985544) +description = Elizabeth town, IN +station = ('ksdf', 0.0034486761963839693) +zone = ('inz090', 0.0022702244142884034) + +[fips1820692] +centroid = (0.68303896609111081, -1.497710559647879) +description = Elizabethtown town, IN +station = ('kbak', 0.0025810059408823186) +zone = ('inz064', 0.0016881063113649056) + +[fips1820728] +centroid = (0.72764813314880672, -1.5003745953115379) +description = Elkhart city, IN +station = ('kekm', 0.00063600624105232236) +zone = ('inz005', 0.0021459788187374643) + +[fips1820800] +centroid = (0.68469966432767604, -1.5118348286058607) +description = Ellettsville town, IN +station = ('kbmg', 0.0014049492616409736) +zone = ('inz062', 0.001803360217668509) + +[fips1820998] +centroid = (0.67851657365309836, -1.5199172738389213) +description = Elnora town, IN +station = ('krsv', 0.0080459990921681081) +zone = ('inz068', 0.0030372181816812915) + +[fips1821070] +centroid = (0.70292437492370818, -1.4981398408306994) +description = Elwood city, IN +station = ('kaid', 0.0040290687100505403) +zone = ('inz040', 0.0025198768376294462) + +[fips1821124] +centroid = (0.67714910818416074, -1.5264888922582855) +description = Emison CDP, IN +station = ('klwv', 0.0019627485368302303) +zone = ('inz067', 0.0019866833585671733) + +[fips1821214] +centroid = (0.66917255207681869, -1.5089969406954105) +description = English town, IN +station = ('khnb', 0.0069075702703725031) +zone = ('inz084', 0.00085197892750218929) + +[fips1821502] +centroid = (0.72039374192606243, -1.5017283948524325) +description = Etna Green town, IN +station = ('kasw', 0.0026588809557257925) +zone = ('inz016', 0.0024500106647339184) + +[fips1822000] +centroid = (0.6630110336717957, -1.5277687771053579) +description = Evansville city, IN +station = ('kevv', 0.00079608134537659876) +zone = ('inz086', 0.00096125781730912248) + +[fips1822396] +centroid = (0.69091563700536129, -1.4985860866138494) +description = Fairland town, IN +station = ('kgez', 0.00084467529251697649) +zone = ('inz056', 0.0014547508624581915) + +[fips1822432] +centroid = (0.70541399983521558, -1.4948348504525379) +description = Fairmount town, IN +station = ('kmzz', 0.0013401952637985236) +zone = ('inz032', 0.001722670505653501) + +[fips1822576] +centroid = (0.69258303730625403, -1.5256651492112216) +description = Fairview Park town, IN +station = ('kprg', 0.0034467375329888476) +zone = ('inz043', 0.0030706289466678116) + +[fips1822738] +centroid = (0.68508569625163207, -1.5250814063895997) +description = Farmersburg town, IN +station = ('khuf', 0.0035534768086298899) +zone = ('inz060', 0.0028939585740754437) + +[fips1822792] +centroid = (0.70143974550208432, -1.485752209385037) +description = Farmland town, IN +station = ('kmie', 0.0037137855509651509) +zone = ('inz042', 0.0016434633294217682) + +[fips1822990] +centroid = (0.66717629683826507, -1.5160419971276706) +description = Ferdinand town, IN +station = ('khnb', 0.0012643394380315127) +zone = ('inz083', 0.0024182803752315243) + +[fips1823188] +centroid = (0.69236729715741507, -1.5141285054022466) +description = Fillmore town, IN +station = ('kind', 0.0063628511111239886) +zone = ('inz045', 0.0012351218319108035) + +[fips1823278] +centroid = (0.69743163178146428, -1.500464654300941) +description = Fishers town, IN +station = ('ktyq', 0.0039350651814911673) +zone = ('inz039', 0.0022485049090620627) + +[fips1823386] +centroid = (0.72534044135852727, -1.5105098444509168) +description = Fish Lake CDP, IN +station = ('kppo', 0.0024126329689808461) +zone = ('inz003', 0.0025447097326230972) + +[fips1823692] +centroid = (0.70764683445387699, -1.5101320679343224) +description = Flora town, IN +station = ('kggp', 0.0035258245950805581) +zone = ('inz021', 0.00083832307669682085) + +[fips1823728] +centroid = (0.67691860254984981, -1.4821763788135509) +description = Florence CDP, IN +station = ('kcvg', 0.0057900391027204947) +zone = ('kyz090', 0.00098700046172289953) + +[fips1823854] +centroid = (0.6907544383956471, -1.5224609341440705) +description = Fontanet CDP, IN +station = ('khuf', 0.0025061731746764643) +zone = ('inz051', 0.0033414808373766042) + +[fips1824250] +centroid = (0.66751560629814533, -1.528440938306886) +description = Fort Branch town, IN +station = ('kevv', 0.0037489030816938353) +zone = ('inz081', 0.0011619635915559917) + +[fips1824286] +centroid = (0.6967944469781463, -1.4982896773469832) +description = Fortville town, IN +station = ('kaid', 0.004555178003461619) +zone = ('inz048', 0.0019953320081931123) + +[fips1825000] +centroid = (0.71712390247903601, -1.4860410439229494) +description = Fort Wayne city, IN +station = ('kfwa', 0.0017070322584782894) +zone = ('inz018', 0.0010189092960616803) + +[fips1825090] +centroid = (0.69734420823923204, -1.48211860841531) +description = Fountain City town, IN +station = ('kves', 0.0067312901878699852) +zone = ('inz050', 0.0019925210865670423) + +[fips1825180] +centroid = (0.7089000157633939, -1.5239996164126286) +description = Fowler town, IN +station = ('klaf', 0.0060133498386553295) +zone = ('inz019', 0.00021341417767641008) + +[fips1825198] +centroid = (0.70528070904024076, -1.4935263247524402) +description = Fowlerton town, IN +station = ('kmzz', 0.0019993872099483313) +zone = ('inz032', 0.002149893245641946) + +[fips1825288] +centroid = (0.71532837755775447, -1.5164065615018272) +description = Francesville town, IN +station = ('krzl', 0.0040834029657742747) +zone = ('inz013', 0.0026265315918419531) + +[fips1825306] +centroid = (0.66904667893116487, -1.5262454886408023) +description = Francisco town, IN +station = ('kevv', 0.0053706964161272155) +zone = ('inz081', 0.001916268727498113) + +[fips1825324] +centroid = (0.70301302019641709, -1.5098979320151675) +description = Frankfort city, IN +station = ('ktyq', 0.0055759288998997875) +zone = ('inz030', 0.0006099755412255427) + +[fips1825450] +centroid = (0.68929136379028522, -1.5019269435081393) +description = Franklin city, IN +station = ('kgez', 0.0037622195579441208) +zone = ('inz055', 0.00064450717578026968) + +[fips1825702] +centroid = (0.70199085066669409, -1.4970027588230252) +description = Frankton town, IN +station = ('kaid', 0.0027589019912025977) +zone = ('inz040', 0.001252826902077304) + +[fips1825720] +centroid = (0.67066861340504325, -1.5042756156292556) +description = Fredericksburg town, IN +station = ('ksdf', 0.0075429363173513128) +zone = ('inz077', 0.003235299123325677) + +[fips1825810] +centroid = (0.67832814790705298, -1.5238503733082904) +description = Freelandville CDP, IN +station = ('klwv', 0.0043008958786377007) +zone = ('inz067', 0.0034078111276072596) + +[fips1825864] +centroid = (0.68032293706903479, -1.5032522767289338) +description = Freetown CDP, IN +station = ('kbak', 0.0058988295116295508) +zone = ('inz071', 0.0017909011754211864) + +[fips1825882] +centroid = (0.72833132483120744, -1.4823892740757092) +description = Fremont town, IN +station = ('koeb', 0.0038606466096147186) +zone = ('inz007', 0.0017372203590348724) + +[fips1825972] +centroid = (0.67278424916443302, -1.5118010215782496) +description = French Lick town, IN +station = ('khnb', 0.0068842835993967498) +zone = ('inz076', 0.0017055845616751751) + +[fips1826152] +centroid = (0.71464508115559866, -1.5055939675330419) +description = Fulton town, IN +station = ('krcr', 0.0022755218310104878) +zone = ('inz015', 0.0017602334918047613) + +[fips1826206] +centroid = (0.66945976345852687, -1.499897090681485) +description = Galena CDP, IN +station = ('ksdf', 0.0041301311154103605) +zone = ('inz091', 0.00078452054226723353) + +[fips1826242] +centroid = (0.70820745166290999, -1.5043223380933315) +description = Galveston town, IN +station = ('kgus', 0.0013819543951205469) +zone = ('inz031', 0.0019102270259823604) + +[fips1826386] +centroid = (0.72175384210555649, -1.4856868642578425) +description = Garrett city, IN +station = ('kgwb', 0.0011676986672940531) +zone = ('inz009', 0.0018033168245695089) + +[fips1827000] +centroid = (0.72598511362433649, -1.5244552869737391) +description = Gary city, IN +station = ('kgyy', 0.0010049273897983172) +zone = ('inz001', 0.0031831745053511871) + +[fips1827054] +centroid = (0.7066805329135103, -1.4939757644881213) +description = Gas City city, IN +station = ('kmzz', 0.0010817224312870317) +zone = ('inz032', 0.00087399032220892702) + +[fips1827072] +centroid = (0.70360828219110227, -1.4922715202867189) +description = Gaston town, IN +station = ('kmie', 0.0019430621401841969) +zone = ('inz041', 0.0020443261111411887) + +[fips1827216] +centroid = (0.70854644696352498, -1.4827837708465375) +description = Geneva town, IN +station = ('kfwa', 0.0077348323901048751) +zone = ('inz027', 0.002611034981785775) + +[fips1827270] +centroid = (0.66514503029491656, -1.5190292503155065) +description = Gentryville town, IN +station = ('khnb', 0.0027013443604179872) +zone = ('inz088', 0.0017105881871266469) + +[fips1827324] +centroid = (0.66844000248317159, -1.5003383273696815) +description = Georgetown town, IN +station = ('ksdf', 0.0037385857871211595) +zone = ('inz091', 0.00085024281776893142) + +[fips1828062] +centroid = (0.691605548205382, -1.4888016486541216) +description = Glenwood town, IN +station = ('kgez', 0.0067373844188350698) +zone = ('inz058', 0.0016759920024202758) + +[fips1828332] +centroid = (0.71146167041313102, -1.5235920645789953) +description = Goodland town, IN +station = ('krzl', 0.0035358823010945054) +zone = ('inz019', 0.0027556895328878883) + +[fips1828386] +centroid = (0.72561925770653346, -1.4980299374477013) +description = Goshen city, IN +station = ('kgsh', 0.00095450236352313247) +zone = ('inz005', 0.00053539210816719741) + +[fips1828440] +centroid = (0.68680027280220635, -1.5125993700846969) +description = Gosport town, IN +station = ('kbmg', 0.0035656411314155629) +zone = ('inz053', 0.0024146814097195006) + +[fips1828494] +centroid = (0.71924870121699902, -1.4829794048023937) +description = Grabill town, IN +station = ('kgwb', 0.0020608470527699882) +zone = ('inz018', 0.0024458317909835611) + +[fips1828692] +centroid = (0.6621074418114532, -1.5181478939498345) +description = Grandview town, IN +station = ('kowb', 0.0042513665261651344) +zone = ('inz088', 0.0014056223775268121) + +[fips1828800] +centroid = (0.728431210024299, -1.5033538374381072) +description = Granger CDP, IN +station = ('kekm', 0.0018013150286117915) +zone = ('inz004', 0.0028925151266825412) + +[fips1829358] +centroid = (0.69188371878156496, -1.5157507191288053) +description = Greencastle city, IN +station = ('kind', 0.0076710986253971034) +zone = ('inz045', 0.00042408495668105125) + +[fips1829448] +centroid = (0.68325406046812664, -1.4805599246735239) +description = Greendale city, IN +station = ('kcvg', 0.0027900940406682434) +zone = ('inz074', 0.0019422958267576397) + +[fips1829520] +centroid = (0.69452380852788675, -1.4970133704248774) +description = Greenfield city, IN +station = ('kgez', 0.0036828156236865389) +zone = ('inz048', 0.00052745858342163052) + +[fips1829682] +centroid = (0.69601217295410989, -1.4916278079519982) +description = Greensboro town, IN +station = ('kaid', 0.0046301184717537384) +zone = ('inz049', 0.0012872760585631395) + +[fips1829718] +centroid = (0.68680484556484656, -1.4922772624199578) +description = Greensburg city, IN +station = ('kbak', 0.005583277296492775) +zone = ('inz065', 0.000770023270914546) + +[fips1829754] +centroid = (0.69623630813665105, -1.484254786699996) +description = Greens Fork town, IN +station = ('kmie', 0.0076513070842827617) +zone = ('inz050', 0.00063374567792460383) + +[fips1829772] +centroid = (0.70644826449665488, -1.5003270001828362) +description = Greentown town, IN +station = ('kokk', 0.0017024035504087471) +zone = ('inz031', 0.0020547391118938031) + +[fips1829844] +centroid = (0.66970964224753482, -1.5007166972982215) +description = Greenville town, IN +station = ('ksdf', 0.0047596209807045462) +zone = ('inz091', 0.0014021431297133089) + +[fips1829898] +centroid = (0.69131673112076197, -1.5028548478049621) +description = Greenwood city, IN +station = ('kind', 0.0030156415210019828) +zone = ('inz055', 0.0020892855204733139) + +[fips1830024] +centroid = (0.66679089323283969, -1.534404815627413) +description = Griffin town, IN +station = ('kcul', 0.0034900102390044425) +zone = ('inz085', 0.0032487225808719238) + +[fips1830042] +centroid = (0.72479760905457213, -1.5258364881838899) +description = Griffith town, IN +station = ('kigq', 0.0014298572624274575) +zone = ('inz001', 0.0020355985599399989) + +[fips1830060] +centroid = (0.70959664648103482, -1.5035351422408045) +description = Grissom AFB CDP, IN +station = ('kgus', 0.0001303121090571362) +zone = ('inz023', 0.0023774251012567524) + +[fips1830402] +centroid = (0.69664187029493696, -1.4862220171130887) +description = Hagerstown town, IN +station = ('kmie', 0.0064584102940080275) +zone = ('inz050', 0.0021226350318763847) + +[fips1830594] +centroid = (0.72502977275167235, -1.4821734117538226) +description = Hamilton town, IN +station = ('kgwb', 0.0046315872388615386) +zone = ('inz007', 0.0020656022043245271) + +[fips1830708] +centroid = (0.72220628380755103, -1.5111621961654345) +description = Hamlet town, IN +station = ('koxi', 0.0013245633804443431) +zone = ('inz012', 0.0019142232042004483) + +[fips1831000] +centroid = (0.72643505950550058, -1.527068690635798) +description = Hammond city, IN +station = ('kgyy', 0.0010204630560632941) +zone = ('inz001', 0.0038872907451607602) + +[fips1831180] +centroid = (0.72277622107478978, -1.5145871081165008) +description = Hanna CDP, IN +station = ('koxi', 0.0021206825552329504) +zone = ('inz003', 0.0023947738312289656) + +[fips1831216] +centroid = (0.67568509110100283, -1.4917853588235759) +description = Hanover town, IN +station = ('klou', 0.0087950635550017413) +zone = ('inz079', 0.0013398378979270226) + +[fips1831396] +centroid = (0.67136716398486129, -1.5058064439161798) +description = Hardinsburg town, IN +station = ('ksdf', 0.0089278919685089417) +zone = ('inz076', 0.0032639416793761758) + +[fips1831432] +centroid = (0.71901533324271494, -1.4822128387416251) +description = Harlan CDP, IN +station = ('kgwb', 0.0026275145212513503) +zone = ('inz018', 0.0026244085147686144) + +[fips1831486] +centroid = (0.68999042051558646, -1.5197179397850511) +description = Harmony town, IN +station = ('khuf', 0.0035860193289936259) +zone = ('inz052', 0.0025218516206745702) + +[fips1832170] +centroid = (0.68097651051402919, -1.5106540784603015) +description = Harrodsburg CDP, IN +station = ('kbmg', 0.0024698814324245711) +zone = ('inz062', 0.0025450254859116467) + +[fips1832242] +centroid = (0.70604954402903686, -1.4900431537109426) +description = Hartford City city, IN +station = ('kmie', 0.0038619183852968198) +zone = ('inz033', 0.00072986238280400427) + +[fips1832332] +centroid = (0.68533625571904833, -1.4957294015073552) +description = Hartsville town, IN +station = ('kbak', 0.0027162512624111399) +zone = ('inz065', 0.0027602637509942457) + +[fips1832494] +centroid = (0.66154993128848849, -1.522288722506776) +description = Hatfield CDP, IN +station = ('kowb', 0.0029580762661714213) +zone = ('inz087', 0.0033595439426534193) + +[fips1832512] +centroid = (0.66677113610570715, -1.5284842050190428) +description = Haubstadt town, IN +station = ('kevv', 0.0030207733721674588) +zone = ('inz081', 0.001899841097973233) + +[fips1832584] +centroid = (0.68017966299073862, -1.496426032224996) +description = Hayden CDP, IN +station = ('kbak', 0.00559569883292839) +zone = ('inz072', 0.0015675308571665226) + +[fips1832728] +centroid = (0.67176342353823426, -1.5278711057594023) +description = Hazleton town, IN +station = ('kajg', 0.0032612487217538824) +zone = ('inz081', 0.003154405161692029) + +[fips1832818] +centroid = (0.72125661525495588, -1.5219690654542732) +description = Hebron town, IN +station = ('kvpz', 0.0034332369216942917) +zone = ('inz001', 0.0028315356040530411) + +[fips1833142] +centroid = (0.67262605252103236, -1.4969040255472399) +description = Henryville CDP, IN +station = ('klou', 0.0055000178098675977) +zone = ('inz092', 0.0013397248271736204) + +[fips1833178] +centroid = (0.70711194339801831, -1.4971675179044135) +description = Herbst CDP, IN +station = ('kmzz', 0.0014119034153090529) +zone = ('inz032', 0.0016796838760881102) + +[fips1833187] +centroid = (0.69339903109143897, -1.5133560750351915) +description = Heritage Lake CDP, IN +station = ('kind', 0.005717018534256599) +zone = ('inz045', 0.0021286206176630903) + +[fips1833392] +centroid = (0.68361558796938471, -1.4808222302068061) +description = Hidden Valley CDP, IN +station = ('kcvg', 0.0031758768986249238) +zone = ('inz074', 0.0017839112355306286) + +[fips1833466] +centroid = (0.72512306060019149, -1.5264163214679876) +description = Highland town, IN +station = ('kigq', 0.00098637372020331953) +zone = ('inz001', 0.0024887250945947953) + +[fips1833484] +centroid = (0.6640393467604857, -1.5282072561733364) +description = Highland CDP, IN +station = ('kevv', 0.00043203155390881501) +zone = ('inz086', 0.00051389497448844836) + +[fips1833862] +centroid = (0.70003105535621468, -1.5211872103092574) +description = Hillsboro town, IN +station = ('klaf', 0.0060425707735077784) +zone = ('inz035', 0.0011446671751079321) + +[fips1834096] +centroid = (0.71474658950489456, -1.48345083568665) +description = Hoagland CDP, IN +station = ('kfwa', 0.0028224557588903167) +zone = ('inz018', 0.0025973991037251858) + +[fips1834114] +centroid = (0.72454778262544162, -1.5232605392875789) +description = Hobart city, IN +station = ('kgyy', 0.0025681386714088727) +zone = ('inz001', 0.0021950094370505255) + +[fips1834294] +centroid = (0.66751904459677169, -1.5191046310859002) +description = Holland town, IN +station = ('khnb', 0.0012120740068369956) +zone = ('inz083', 0.0029954653860303436) + +[fips1834366] +centroid = (0.68199131475430874, -1.490242959003711) +description = Holton town, IN +station = ('kbak', 0.0077325570994427372) +zone = ('inz073', 0.0017273114742548642) + +[fips1834420] +centroid = (0.69236464425695199, -1.5032737093721482) +description = Homecroft town, IN +station = ('kind', 0.0022017880246584091) +zone = ('inz047', 0.0019576189504797717) + +[fips1834744] +centroid = (0.68589945601537439, -1.4968986673864362) +description = Hope town, IN +station = ('kbak', 0.0018972336815883295) +zone = ('inz064', 0.0024120254596203595) + +[fips1834978] +centroid = (0.72820061712352557, -1.4909559958163208) +description = Howe CDP, IN +station = ('kirs', 0.0015800925634440821) +zone = ('inz006', 0.0013984551651722106) + +[fips1835086] +centroid = (0.72486634012051565, -1.4849981573350053) +description = Hudson town, IN +station = ('kgwb', 0.0040495825968014706) +zone = ('inz007', 0.0022388337368350877) + +[fips1835104] +centroid = (0.72813621447412702, -1.5105334587556962) +description = Hudson Lake CDP, IN +station = ('ksbn', 0.0030220997956322032) +zone = ('inz003', 0.0039306891949476329) + +[fips1835266] +centroid = (0.71930783297205658, -1.486574084929801) +description = Huntertown town, IN +station = ('kgwb', 0.0020412589994416625) +zone = ('inz018', 0.0025657110799610161) + +[fips1835284] +centroid = (0.66847726526270168, -1.5177716358696896) +description = Huntingburg city, IN +station = ('khnb', 0.0009036799169048975) +zone = ('inz083', 0.0015770555971720956) + +[fips1835302] +centroid = (0.71350499718161087, -1.4923524686574265) +description = Huntington city, IN +station = ('kfwa', 0.0045330749026833168) +zone = ('inz025', 0.00092983752171871574) + +[fips1835500] +centroid = (0.68392257393151801, -1.5236537445147609) +description = Hymera town, IN +station = ('khuf', 0.0046160335255851261) +zone = ('inz060', 0.002307094689803509) + +[fips1835536] +centroid = (0.71137464829662655, -1.5123376230567753) +description = Idaville CDP, IN +station = ('kggp', 0.0037671096996401005) +zone = ('inz021', 0.0032803002846990624) + +[fips1836003] +centroid = (0.69423375225949768, -1.503530220412314) +description = Indianapolis city (balance), IN +station = ('kind', 0.0021204056872373847) +zone = ('inz047', 0.00013281261285915552) + +[fips1836144] +centroid = (0.70554285749389023, -1.5030370078189927) +description = Indian Heights CDP, IN +station = ('kokk', 0.0020145018852108722) +zone = ('inz031', 0.0010293072935440128) + +[fips1836306] +centroid = (0.72805182780479305, -1.505035636705329) +description = Indian Village town, IN +station = ('ksbn', 0.0011286474079639508) +zone = ('inz004', 0.001861649306632539) + +[fips1836342] +centroid = (0.69737134810910051, -1.4975938145742131) +description = Ingalls town, IN +station = ('kaid', 0.0037694384321356809) +zone = ('inz048', 0.0023608807395163354) + +[fips1837674] +centroid = (0.7090619823179789, -1.4965556054686642) +description = Jalapa CDP, IN +station = ('kmzz', 0.0025355555900925405) +zone = ('inz032', 0.0022779069917239609) + +[fips1837692] +centroid = (0.69688340641012037, -1.5119135255018332) +description = Jamestown town, IN +station = ('ktyq', 0.0053350129475025201) +zone = ('inz037', 0.0029995203139033407) + +[fips1837764] +centroid = (0.68349669614073894, -1.5219204056747277) +description = Jasonville city, IN +station = ('khuf', 0.0052779739791398465) +zone = ('inz060', 0.0031751898501909391) + +[fips1837782] +centroid = (0.67009373685602125, -1.5173909097466596) +description = Jasper city, IN +station = ('khnb', 0.0025089664543909681) +zone = ('inz083', 0.00097007680573192806) + +[fips1838358] +centroid = (0.66904407839057933, -1.4956984917263023) +description = Jeffersonville city, IN +station = ('klou', 0.0017959586027213523) +zone = ('inz092', 0.0025152817037734764) + +[fips1838862] +centroid = (0.70650491788417469, -1.4945318089345141) +description = Jonesboro city, IN +station = ('kmzz', 0.00068273834963566006) +zone = ('inz032', 0.00070785121112569257) + +[fips1838916] +centroid = (0.68172221989023629, -1.4990322276772443) +description = Jonesville town, IN +station = ('kbak', 0.0036139172945562226) +zone = ('inz064', 0.0025530492655946777) + +[fips1839366] +centroid = (0.70315358901437275, -1.5049913926087908) +description = Kempton town, IN +station = ('ktyq', 0.0045064680072453055) +zone = ('inz038', 0.0024019096569646296) + +[fips1839402] +centroid = (0.72334282476315725, -1.4880313999486314) +description = Kendallville city, IN +station = ('kgwb', 0.0035238509864030931) +zone = ('inz008', 0.0022356201146743501) + +[fips1839438] +centroid = (0.69650850968679212, -1.4926420013270398) +description = Kennard town, IN +station = ('kaid', 0.0038716594808080331) +zone = ('inz049', 0.0017329185285476062) + +[fips1839510] +centroid = (0.67609194480293522, -1.4929366303580689) +description = Kent CDP, IN +station = ('klou', 0.0089657656568713114) +zone = ('inz079', 0.001608904095460653) + +[fips1839546] +centroid = (0.71162213598455937, -1.5262056427739794) +description = Kentland town, IN +station = ('krzl', 0.0045707231380282855) +zone = ('inz010', 0.0032544971666357784) + +[fips1839618] +centroid = (0.71592138807770456, -1.508182168640702) +description = Kewanna town, IN +station = ('krcr', 0.0031417923867062426) +zone = ('inz015', 0.0020188470601189084) + +[fips1839744] +centroid = (0.72246167783699533, -1.4931082660367099) +description = Kimmell CDP, IN +station = ('kgsh', 0.0039144086234127106) +zone = ('inz008', 0.0017222688198833104) + +[fips1839798] +centroid = (0.69754734711087152, -1.5232980464132044) +description = Kingman town, IN +station = ('kdnv', 0.0058691450396243317) +zone = ('inz035', 0.0027385920497609911) + +[fips1839816] +centroid = (0.7248391827973546, -1.5131542800670761) +description = Kingsbury town, IN +station = ('kppo', 0.00081469085920781337) +zone = ('inz003', 0.00062026911727712682) + +[fips1839852] +centroid = (0.72393745843931168, -1.5130728255508854) +description = Kingsford Heights town, IN +station = ('kppo', 0.0016687274890145746) +zone = ('inz003', 0.0013289630958256426) + +[fips1839942] +centroid = (0.70150058767980883, -1.5072474401065039) +description = Kirklin town, IN +station = ('ktyq', 0.0031952007683107341) +zone = ('inz030', 0.0024489419355086823) + +[fips1840266] +centroid = (0.6945641256336077, -1.4927970214712019) +description = Knightstown town, IN +station = ('kgez', 0.0051749201247309889) +zone = ('inz049', 0.0029729819990239278) + +[fips1840302] +centroid = (0.68984753040972568, -1.5199921310105393) +description = Knightsville town, IN +station = ('khuf', 0.0033350670494812326) +zone = ('inz052', 0.0023412086384154633) + +[fips1840374] +centroid = (0.72066367454817593, -1.5118224716747568) +description = Knox city, IN +station = ('koxi', 0.00085112671165844291) +zone = ('inz012', 0.00039177341437946509) + +[fips1840392] +centroid = (0.70642754743843361, -1.5033003081899485) +description = Kokomo city, IN +station = ('kokk', 0.0013396627818343765) +zone = ('inz031', 0.00025543699936161581) + +[fips1840464] +centroid = (0.72277889142854534, -1.509315114218049) +description = Koontz Lake CDP, IN +station = ('koxi', 0.0027889226829830686) +zone = ('inz012', 0.0031980690811180038) + +[fips1840518] +centroid = (0.72112053193317793, -1.5188977048497836) +description = Kouts town, IN +station = ('kvpz', 0.0023441308518434654) +zone = ('inz002', 0.0025577610213836331) + +[fips1840644] +centroid = (0.66377920543547597, -1.5024768443955652) +description = Laconia town, IN +station = ('kftk', 0.0028221682950905123) +zone = ('kyz025', 0.0021076331680389012) + +[fips1840662] +centroid = (0.72113061993625438, -1.5165134280119268) +description = La Crosse town, IN +station = ('kvpz', 0.0027221828443719622) +zone = ('inz002', 0.0034053969484070783) + +[fips1840698] +centroid = (0.69667586930876579, -1.5149324389623002) +description = Ladoga town, IN +station = ('ktyq', 0.0076081351958221062) +zone = ('inz036', 0.0025004711513142209) + +[fips1840788] +centroid = (0.70510298216251022, -1.5160226414262661) +description = Lafayette city, IN +station = ('klaf', 0.0012114683706684706) +zone = ('inz029', 0.00047030873020875784) + +[fips1840842] +centroid = (0.70989612752738473, -1.4961297625844701) +description = La Fontaine town, IN +station = ('kmzz', 0.0032600205292462586) +zone = ('inz032', 0.0029017282079781717) + +[fips1840860] +centroid = (0.72691031266081874, -1.4908223210489104) +description = Lagrange town, IN +station = ('kirs', 0.0028738019895093057) +zone = ('inz006', 0.00015645514783506524) + +[fips1840896] +centroid = (0.71282243381774102, -1.4962340285539844) +description = Lagro town, IN +station = ('kmzz', 0.0061712794799913522) +zone = ('inz024', 0.00087557160097774815) + +[fips1841058] +centroid = (0.72143320766867269, -1.5253831214573919) +description = Lake Dalecarlia CDP, IN +station = ('kigq', 0.003984391856985574) +zone = ('inz001', 0.0014215250032947632) + +[fips1841211] +centroid = (0.69749503959318926, -1.5177370085373298) +description = Lake Holiday CDP, IN +station = ('klaf', 0.0079099733398065308) +zone = ('inz036', 0.0016105260446718922) + +[fips1841444] +centroid = (0.68783996543761938, -1.4889002946634442) +description = Lake Santee CDP, IN +station = ('kbak', 0.0083791190116248252) +zone = ('inz065', 0.0031755162438630315) + +[fips1841530] +centroid = (0.72263429090001763, -1.5223023535282343) +description = Lakes of the Four Seasons CDP, IN +station = ('kvpz', 0.0030082736569813327) +zone = ('inz001', 0.0021069362527195643) + +[fips1841535] +centroid = (0.72564950426247044, -1.5228510501384762) +description = Lake Station city, IN +station = ('kgyy', 0.0022482339869834391) +zone = ('inz002', 0.0031634743388428781) + +[fips1841562] +centroid = (0.71525709831110285, -1.4981905600987624) +description = Laketon CDP, IN +station = ('krcr', 0.004683595345945593) +zone = ('inz024', 0.002441713170346574) + +[fips1841652] +centroid = (0.71786840757805936, -1.5260988635303423) +description = Lake Village CDP, IN +station = ('krzl', 0.0045505186041945927) +zone = ('inz010', 0.0031016477532874462) + +[fips1841670] +centroid = (0.72481398024295574, -1.5057890953434152) +description = Lakeville town, IN +station = ('ksbn', 0.0030365372928506701) +zone = ('inz004', 0.0015459986583946518) + +[fips1841994] +centroid = (0.70882480952592553, -1.4932941785086324) +description = Landess CDP, IN +station = ('kmzz', 0.0026719689153004073) +zone = ('inz032', 0.0021110704956686585) + +[fips1842048] +centroid = (0.66732634279405911, -1.5007360180930409) +description = Lanesville town, IN +station = ('ksdf', 0.003578301425015154) +zone = ('inz091', 0.001828536180121918) + +[fips1842192] +centroid = (0.7235456145689465, -1.5063606208602729) +description = La Paz town, IN +station = ('ksbn', 0.0042581505983489186) +zone = ('inz014', 0.0023672659561901586) + +[fips1842228] +centroid = (0.69928119209638773, -1.4982998177099371) +description = Lapel town, IN +station = ('kaid', 0.0031911722286677834) +zone = ('inz040', 0.0023788980610356027) + +[fips1842246] +centroid = (0.72619478002737847, -1.51343793097711) +description = La Porte city, IN +station = ('kppo', 0.0006951695288519769) +zone = ('inz003', 0.0011335250187002124) + +[fips1842282] +centroid = (0.71871292004322185, -1.4944197937031212) +description = Larwill town, IN +station = ('kasw', 0.0032871924651649057) +zone = ('inz017', 0.0017081241867716607) + +[fips1842372] +centroid = (0.68944060689462328, -1.4868090237004121) +description = Laurel town, IN +station = ('kbak', 0.010447767481564419) +zone = ('inz066', 0.0022965097318922742) + +[fips1842426] +centroid = (0.69579220910848105, -1.5008024453243718) +description = Lawrence city, IN +station = ('ktyq', 0.0045091687392632479) +zone = ('inz047', 0.0024786242712274377) + +[fips1842462] +centroid = (0.68250215517307489, -1.4813399123162403) +description = Lawrenceburg city, IN +station = ('kcvg', 0.0029725187073982415) +zone = ('inz074', 0.0015152124862911429) + +[fips1842606] +centroid = (0.66671673419292243, -1.5070925421353893) +description = Leavenworth town, IN +station = ('kftk', 0.0074289236565563818) +zone = ('inz084', 0.0021292468410654226) + +[fips1842624] +centroid = (0.69868357390721236, -1.5089584561854041) +description = Lebanon city, IN +station = ('ktyq', 0.0027658294265014579) +zone = ('inz037', 0.00036973770176202954) + +[fips1842678] +centroid = (0.72135711131328573, -1.4983458594956049) +description = Leesburg town, IN +station = ('kasw', 0.00098905749845361324) +zone = ('inz016', 0.0015196772261277076) + +[fips1842861] +centroid = (0.71943592268586043, -1.483911323356496) +description = Leo-Cedarville town, IN +station = ('kgwb', 0.0015222902975489639) +zone = ('inz018', 0.0023408771137101588) + +[fips1843074] +centroid = (0.69475888692483789, -1.4896870890902434) +description = Lewisville town, IN +station = ('kaid', 0.0064590351081597521) +zone = ('inz049', 0.0022479035740455137) + +[fips1843434] +centroid = (0.69176199951953088, -1.4822230140111643) +description = Liberty town, IN +station = ('khao', 0.0072248607690654776) +zone = ('inz059', 0.00016655705736670564) + +[fips1843686] +centroid = (0.72370070452627866, -1.493908324965824) +description = Ligonier city, IN +station = ('kgsh', 0.0027397913612364991) +zone = ('inz008', 0.0025926885539855533) + +[fips1844082] +centroid = (0.70142970985888531, -1.5167402859081009) +description = Linden town, IN +station = ('klaf', 0.0040235128165366776) +zone = ('inz036', 0.0025960057886685838) + +[fips1844190] +centroid = (0.68130225876562145, -1.5212061994915189) +description = Linton city, IN +station = ('krsv', 0.0066668000159768818) +zone = ('inz061', 0.0026665812819121008) + +[fips1844370] +centroid = (0.6754303079367967, -1.4993173795704349) +description = Little York town, IN +station = ('klou', 0.008758418926974201) +zone = ('inz078', 0.0021552042915305215) + +[fips1844424] +centroid = (0.67283351980921702, -1.5058055887048463) +description = Livonia town, IN +station = ('ksdf', 0.0098121076824971253) +zone = ('inz077', 0.0024880076439766099) + +[fips1844442] +centroid = (0.69610661271993535, -1.5104448658428649) +description = Lizton town, IN +station = ('keye', 0.0033620234029258771) +zone = ('inz046', 0.0020437463936247642) + +[fips1844658] +centroid = (0.71122484668692798, -1.5071997053514619) +description = Logansport city, IN +station = ('kggp', 0.00071326290375318046) +zone = ('inz022', 0.00023904331981491178) + +[fips1844784] +centroid = (0.72858921468148208, -1.515927538435325) +description = Long Beach town, IN +station = ('kmgc', 0.00086113914754252824) +zone = ('inz003', 0.0037916256078520112) + +[fips1844910] +centroid = (0.67501746775552995, -1.516937630286624) +description = Loogootee city, IN +station = ('khnb', 0.0074451895441482816) +zone = ('inz069', 0.0016143799930897576) + +[fips1845000] +centroid = (0.69854234186414099, -1.4867318277875963) +description = Losantville town, IN +station = ('kmie', 0.0046646615056013183) +zone = ('inz042', 0.0032792545173596951) + +[fips1845144] +centroid = (0.72072837390354727, -1.5257033370152555) +description = Lowell town, IN +station = ('kigq', 0.0045420150270151696) +zone = ('inz001', 0.002158515178397795) + +[fips1845468] +centroid = (0.69898199030271846, -1.4825255144771199) +description = Lynn town, IN +station = ('kves', 0.0061049640939279948) +zone = ('inz042', 0.0021115074834849984) + +[fips1845486] +centroid = (0.66666130253587919, -1.523940083231843) +description = Lynnville town, IN +station = ('kevv', 0.0041362656590550129) +zone = ('inz087', 0.0019209609796779017) + +[fips1845504] +centroid = (0.68046788666341296, -1.5198548608648701) +description = Lyons town, IN +station = ('krsv', 0.0077254989772150172) +zone = ('inz061', 0.0018244548677813081) + +[fips1845648] +centroid = (0.69647281770358871, -1.4997199746689927) +description = McCordsville town, IN +station = ('ktyq', 0.0048330423556321852) +zone = ('inz048', 0.0025101360299046018) + +[fips1845774] +centroid = (0.66760393741158885, -1.5252630428048548) +description = Mackey town, IN +station = ('kevv', 0.0042693676311722642) +zone = ('inz081', 0.0028558129134743553) + +[fips1845864] +centroid = (0.71485560276997406, -1.5032440213215719) +description = Macy town, IN +station = ('krcr', 0.0018968291417948177) +zone = ('inz015', 0.00234939641791158) + +[fips1845990] +centroid = (0.67646918026746128, -1.490461177520088) +description = Madison city, IN +station = ('klou', 0.0098830077076838933) +zone = ('inz079', 0.00073376237652383446) + +[fips1846422] +centroid = (0.69067410089017778, -1.4943858994090475) +description = Manilla CDP, IN +station = ('kgez', 0.0024016011074399529) +zone = ('inz057', 0.0022576864157488898) + +[fips1846746] +centroid = (0.66970632612195613, -1.5069932503542434) +description = Marengo town, IN +station = ('khnb', 0.0085603907358412015) +zone = ('inz084', 0.0020157599201965112) + +[fips1846908] +centroid = (0.70772371620742736, -1.4950355109566398) +description = Marion city, IN +station = ('kmzz', 0.0010758119912989827) +zone = ('inz032', 0.00059252176120327786) + +[fips1847160] +centroid = (0.71256950070254188, -1.4894504748035504) +description = Markle town, IN +station = ('kfwa', 0.0035306118371194175) +zone = ('inz026', 0.0023165133087299635) + +[fips1847178] +centroid = (0.69771973328109105, -1.4942945663292906) +description = Markleville town, IN +station = ('kaid', 0.0024481853818445328) +zone = ('inz049', 0.0030512247096855069) + +[fips1847322] +centroid = (0.69547321528109396, -1.5216964624784044) +description = Marshall town, IN +station = ('kprg', 0.0069703191538799834) +zone = ('inz044', 0.0013191466329630914) + +[fips1847448] +centroid = (0.68804615863544993, -1.5083293173499375) +description = Martinsville city, IN +station = ('kbmg', 0.0054363193759737454) +zone = ('inz054', 0.0010906577496299541) + +[fips1847592] +centroid = (0.7048941011576314, -1.4922177292391723) +description = Matthews town, IN +station = ('kmie', 0.0029882051584010833) +zone = ('inz033', 0.0027452368342627833) + +[fips1847628] +centroid = (0.6636607848457281, -1.5044623309526339) +description = Mauckport town, IN +station = ('kftk', 0.0038739746127705046) +zone = ('kyz025', 0.00099766289988721169) + +[fips1848132] +centroid = (0.6933686623624542, -1.5242248860591836) +description = Mecca town, IN +station = ('kprg', 0.0045629520977852672) +zone = ('inz044', 0.0018676485797585909) + +[fips1848186] +centroid = (0.71698747009140773, -1.5165261863687589) +description = Medaryville town, IN +station = ('krzl', 0.0045527353988615215) +zone = ('inz013', 0.0026098828744979545) + +[fips1848240] +centroid = (0.67761669934406243, -1.5039893816319285) +description = Medora town, IN +station = ('kbmg', 0.0082830544172434323) +zone = ('inz071', 0.0023210730316952505) + +[fips1848294] +centroid = (0.70099486107575093, -1.5210332722692315) +description = Mellott town, IN +station = ('klaf', 0.0051423063860821308) +zone = ('inz035', 0.0014527393984904871) + +[fips1848330] +centroid = (0.66365282614433896, -1.5273985055045474) +description = Melody Hill CDP, IN +station = ('kevv', 0.00031332741680489975) +zone = ('inz086', 0.0009929437873420011) + +[fips1848384] +centroid = (0.67186336109120337, -1.4969170107968746) +description = Memphis CDP, IN +station = ('klou', 0.0047679007099992862) +zone = ('inz092', 0.00087209338283891498) + +[fips1848402] +centroid = (0.71861868971690657, -1.5016540612795899) +description = Mentone town, IN +station = ('krcr', 0.0027222715427558833) +zone = ('inz016', 0.0026365156845794629) + +[fips1848456] +centroid = (0.69616609354084336, -1.5037187508781145) +description = Meridian Hills town, IN +station = ('keye', 0.0021385908541515547) +zone = ('inz047', 0.001862479056278301) + +[fips1848474] +centroid = (0.68165516434037465, -1.5283363058182291) +description = Merom town, IN +station = ('krsv', 0.0013196805425728074) +zone = ('inz060', 0.0021459225534092149) + +[fips1848528] +centroid = (0.7238349377990495, -1.5239878179868851) +description = Merrillville town, IN +station = ('kgyy', 0.0028237477733781434) +zone = ('inz001', 0.0012983585550712521) + +[fips1848563] +centroid = (0.68850041547986651, -1.4859346661050403) +description = Metamora CDP, IN +station = ('kcvg', 0.0094254351989347084) +zone = ('inz066', 0.0011959305126993543) + +[fips1848636] +centroid = (0.71234157815552401, -1.5029101049290803) +description = Mexico CDP, IN +station = ('kgus', 0.0029126956954025427) +zone = ('inz023', 0.0011629187971910265) + +[fips1848744] +centroid = (0.72878563403550156, -1.5152618873119068) +description = Michiana Shores town, IN +station = ('kmgc', 0.00092655838922595275) +zone = ('inz003', 0.003810198641628678) + +[fips1848798] +centroid = (0.72802067367764489, -1.5162747542367165) +description = Michigan City city, IN +station = ('kmgc', 0.0007350068738097153) +zone = ('inz003', 0.003406610588308608) + +[fips1848816] +centroid = (0.70385561279940234, -1.5078179009725183) +description = Michigantown town, IN +station = ('ktyq', 0.0055325136818980478) +zone = ('inz030', 0.0012032165410455953) + +[fips1848924] +centroid = (0.72728295790941189, -1.4959037948062144) +description = Middlebury town, IN +station = ('kgsh', 0.0025790956291192255) +zone = ('inz005', 0.0023304700252176794) + +[fips1849014] +centroid = (0.69916929903804237, -1.49300319721574) +description = Middletown town, IN +station = ('kaid', 0.0014037613942393444) +zone = ('inz049', 0.0029738562412935155) + +[fips1849212] +centroid = (0.7081639580579504, -1.4978979381963728) +description = Mier CDP, IN +station = ('kmzz', 0.0024084669670162433) +zone = ('inz032', 0.0024597870743087698) + +[fips1849266] +centroid = (0.68283416915668183, -1.4857336914416734) +description = Milan town, IN +station = ('kcvg', 0.0063571221950892622) +zone = ('inz073', 0.0018766043724672522) + +[fips1849320] +centroid = (0.72276897795839401, -1.4983354398799704) +description = Milford town, IN +station = ('kgsh', 0.0022880056654957554) +zone = ('inz016', 0.0029281517165879001) + +[fips1849536] +centroid = (0.72477397729650006, -1.4956809162607345) +description = Millersburg town, IN +station = ('kgsh', 0.001144654480865437) +zone = ('inz005', 0.0024565985608711576) + +[fips1849662] +centroid = (0.68436934331344357, -1.4911223606006208) +description = Millhousen town, IN +station = ('kbak', 0.0063589136518173535) +zone = ('inz065', 0.0018910730645645825) + +[fips1849716] +centroid = (0.66920213540763995, -1.5057811540953185) +description = Milltown town, IN +station = ('kftk', 0.0088060652084940919) +zone = ('inz084', 0.0025743836737381854) + +[fips1849806] +centroid = (0.68937149185624436, -1.4916912681236008) +description = Milroy CDP, IN +station = ('kgez', 0.004714716520382748) +zone = ('inz057', 0.0021263684313613022) + +[fips1849860] +centroid = (0.6944054752046015, -1.4862560510335028) +description = Milton town, IN +station = ('kaid', 0.0084356965808325916) +zone = ('inz050', 0.0023862003265150409) + +[fips1849932] +centroid = (0.72730894586197425, -1.50388556944802) +description = Mishawaka city, IN +station = ('kekm', 0.0023047761254782286) +zone = ('inz004', 0.0018754436950587268) + +[fips1849950] +centroid = (0.67607154190397944, -1.5092588622562573) +description = Mitchell city, IN +station = ('kbmg', 0.0074793460097884873) +zone = ('inz070', 0.0018395805211150235) + +[fips1850058] +centroid = (0.69892531946190617, -1.4857331154830202) +description = Modoc town, IN +station = ('kmie', 0.0049084626101899287) +zone = ('inz042', 0.0024860158809707398) + +[fips1850148] +centroid = (0.71321382390250065, -1.5163195219320302) +description = Monon town, IN +station = ('krzl', 0.0043710387352724608) +zone = ('inz020', 0.002001635897785408) + +[fips1850202] +centroid = (0.71113761513091323, -1.4825043261800008) +description = Monroe town, IN +station = ('kfwa', 0.0056072547329763843) +zone = ('inz027', 6.1614951958607913e-05) + +[fips1850526] +centroid = (0.67395082723646615, -1.5245975836676544) +description = Monroe City town, IN +station = ('klwv', 0.0042861802043052018) +zone = ('inz067', 0.0015742569890651612) + +[fips1850562] +centroid = (0.71511796066313393, -1.4812275829255819) +description = Monroeville town, IN +station = ('kfwa', 0.0043977411035533371) +zone = ('inz018', 0.0033216860263541965) + +[fips1850580] +centroid = (0.69085580711860295, -1.509296980247121) +description = Monrovia town, IN +station = ('kind', 0.0034871565673754786) +zone = ('inz054', 0.0018194716891676167) + +[fips1850616] +centroid = (0.71831118015599771, -1.50939684798692) +description = Monterey town, IN +station = ('koxi', 0.0038280617164277095) +zone = ('inz012', 0.0030787200339823717) + +[fips1850652] +centroid = (0.69448635376213885, -1.5248836605853489) +description = Montezuma town, IN +station = ('kprg', 0.0043310060024931039) +zone = ('inz043', 0.0016745838913882541) + +[fips1850688] +centroid = (0.67483600587320014, -1.5192571379559394) +description = Montgomery town, IN +station = ('khnb', 0.0073678701738003043) +zone = ('inz068', 0.00073282488040804267) + +[fips1850760] +centroid = (0.71113843543566158, -1.514374300120805) +description = Monticello city, IN +station = ('kggp', 0.0052521339737310931) +zone = ('inz020', 0.0013002637717538315) + +[fips1850778] +centroid = (0.70634265462361667, -1.5190543306968578) +description = Montmorenci CDP, IN +station = ('klaf', 0.0014724303122742601) +zone = ('inz029', 0.0023590363057080024) + +[fips1850796] +centroid = (0.70772090622733164, -1.4885462197180921) +description = Montpelier city, IN +station = ('kmie', 0.0057161617760797994) +zone = ('inz033', 0.0014148815999314728) + +[fips1850940] +centroid = (0.69808639205035006, -1.4879166794568977) +description = Mooreland town, IN +station = ('kmie', 0.0045708437266718882) +zone = ('inz049', 0.002260410676628907) + +[fips1850958] +centroid = (0.68262760943970824, -1.4851075022126428) +description = Moores Hill town, IN +station = ('kcvg', 0.0058407958280884253) +zone = ('inz074', 0.0016904218505433711) + +[fips1850976] +centroid = (0.69121679356779286, -1.5073873980592212) +description = Mooresville town, IN +station = ('kind', 0.0022675902426768568) +zone = ('inz054', 0.0023863644484629141) + +[fips1851102] +centroid = (0.6871865665255501, -1.5054966479739509) +description = Morgantown town, IN +station = ('kbak', 0.0051847495502395776) +zone = ('inz055', 0.0029401641624889883) + +[fips1851138] +centroid = (0.71460624757974178, -1.5262937469946201) +description = Morocco town, IN +station = ('krzl', 0.0034316613486970226) +zone = ('inz010', 0.00072534806122048713) + +[fips1851192] +centroid = (0.69241850511766856, -1.4957837685135547) +description = Morristown town, IN +station = ('kgez', 0.0020402305133837206) +zone = ('inz048', 0.0028002580960030179) + +[fips1851318] +centroid = (0.69483737438129989, -1.4868163889898556) +description = Mount Auburn town, IN +station = ('kaid', 0.0078262332537802765) +zone = ('inz050', 0.002564572550424458) + +[fips1851336] +centroid = (0.71474932967182025, -1.5236487354198076) +description = Mount Ayr town, IN +station = ('krzl', 0.0014325904456326079) +zone = ('inz010', 0.0013047512111427409) + +[fips1851354] +centroid = (0.6877925448418426, -1.4813565453040118) +description = Mount Carmel town, IN +station = ('khao', 0.004892553184296205) +zone = ('inz066', 0.0024954036052115625) + +[fips1851408] +centroid = (0.71106537595317321, -1.4933264670997946) +description = Mount Etna town, IN +station = ('kmzz', 0.0046552167028117708) +zone = ('inz025', 0.0018174491486405103) + +[fips1851714] +centroid = (0.69819205428326581, -1.4902691214891985) +description = Mount Summit town, IN +station = ('kmie', 0.0040163493064885158) +zone = ('inz049', 0.0012704790598575813) + +[fips1851732] +centroid = (0.66211986855572724, -1.5340586470235729) +description = Mount Vernon city, IN +station = ('kehr', 0.0035912542745250736) +zone = ('inz085', 0.0015304157939421497) + +[fips1851840] +centroid = (0.70416734605710096, -1.5126324266207298) +description = Mulberry town, IN +station = ('klaf', 0.0039547548694091085) +zone = ('inz030', 0.0026715723992531181) + +[fips1851876] +centroid = (0.70160452203676504, -1.4903950469947296) +description = Muncie city, IN +station = ('kmie', 0.00060613613357601219) +zone = ('inz041', 0.00050178889055780282) + +[fips1851912] +centroid = (0.72514084550526936, -1.5272201503082861) +description = Munster town, IN +station = ('kigq', 0.00040028206130637107) +zone = ('inz001', 0.0027977046652208556) + +[fips1852002] +centroid = (0.68423933373746249, -1.4892453811631488) +description = Napoleon town, IN +station = ('kbak', 0.0078165154557943411) +zone = ('inz073', 0.0019647226672279946) + +[fips1852020] +centroid = (0.72335247643392075, -1.5009194871040108) +description = Nappanee city, IN +station = ('kasw', 0.0036139750360481343) +zone = ('inz005', 0.0032103618915147558) + +[fips1852038] +centroid = (0.68436038977438085, -1.5052577123993527) +description = Nashville town, IN +station = ('kbak', 0.0047627815452956418) +zone = ('inz063', 0.00034998412512489348) + +[fips1852326] +centroid = (0.66859123526285691, -1.4979646621336768) +description = New Albany city, IN +station = ('ksdf', 0.0025186028469962578) +zone = ('inz091', 0.0011118050137460663) + +[fips1852398] +centroid = (0.66498650203895793, -1.5057789898870459) +description = New Amsterdam town, IN +station = ('kftk', 0.0055003758080401453) +zone = ('kyz025', 0.0024278003846185353) + +[fips1852524] +centroid = (0.67934743764351013, -1.5187686901114763) +description = Newberry town, IN +station = ('kbmg', 0.0067341619742325113) +zone = ('inz061', 0.0021114421711002709) + +[fips1852650] +centroid = (0.66233852340441712, -1.5254979117622955) +description = Newburgh town, IN +station = ('kevv', 0.0023004298639369659) +zone = ('inz087', 0.0030899074102691054) + +[fips1852704] +centroid = (0.72792441876939751, -1.5098347860028303) +description = New Carlisle town, IN +station = ('ksbn', 0.0024852544157993564) +zone = ('inz004', 0.0032428769680278124) + +[fips1852740] +centroid = (0.69673255760287056, -1.4899886994382805) +description = New Castle city, IN +station = ('kaid', 0.0047609419795872389) +zone = ('inz049', 0.0004047901384753605) + +[fips1852776] +centroid = (0.72533658418088043, -1.5231804286749124) +description = New Chicago town, IN +station = ('kgyy', 0.0021443906729716757) +zone = ('inz001', 0.0028817061482547292) + +[fips1852956] +centroid = (0.69089825352601142, -1.5267165355526231) +description = New Goshen CDP, IN +station = ('khuf', 0.0031793489828991894) +zone = ('inz051', 0.0029336298405248625) + +[fips1852974] +centroid = (0.665469713895665, -1.5347123077350295) +description = New Harmony town, IN +station = ('kcul', 0.0027041651250823413) +zone = ('inz085', 0.0020619065429729752) + +[fips1852992] +centroid = (0.7166884079240784, -1.4839735792509148) +description = New Haven city, IN +station = ('kfwa', 0.0025495905637886785) +zone = ('inz018', 0.00072371833064914764) + +[fips1853262] +centroid = (0.69730481615801454, -1.5170678842087004) +description = New Market town, IN +station = ('klaf', 0.0081079456875144673) +zone = ('inz036', 0.0015779937945232876) + +[fips1853298] +centroid = (0.66609548424567511, -1.5018734840731507) +description = New Middletown town, IN +station = ('ksdf', 0.0043712025099729868) +zone = ('inz090', 0.00098589340598588321) + +[fips1853352] +centroid = (0.69333934083102067, -1.499076401960612) +description = New Palestine town, IN +station = ('kgez', 0.002763460320938983) +zone = ('inz048', 0.0023274131837240555) + +[fips1853370] +centroid = (0.72432031386402917, -1.4979262299835479) +description = New Paris CDP, IN +station = ('kgsh', 0.00078919226550675067) +zone = ('inz005', 0.001748111954525284) + +[fips1853388] +centroid = (0.67198801250638085, -1.5012338907154648) +description = New Pekin town, IN +station = ('klou', 0.0066812070953094936) +zone = ('inz077', 0.0021122296481399126) + +[fips1853478] +centroid = (0.68607878859601679, -1.4892597801294776) +description = New Point town, IN +station = ('kbak', 0.0077586832767520646) +zone = ('inz065', 0.002336689205700601) + +[fips1853496] +centroid = (0.69610814860967707, -1.525543342682725) +description = Newport town, IN +station = ('kprg', 0.0047627242441555789) +zone = ('inz043', 0.0009262490691574252) + +[fips1853532] +centroid = (0.70152306752057447, -1.5180485323555184) +description = New Richmond town, IN +station = ('klaf', 0.003898405321437386) +zone = ('inz036', 0.0029132719518553916) + +[fips1853550] +centroid = (0.6975153901322676, -1.5134548257642693) +description = New Ross town, IN +station = ('ktyq', 0.0063153150990973772) +zone = ('inz036', 0.0027305232612211973) + +[fips1853586] +centroid = (0.6687048561971618, -1.5027294633514987) +description = New Salisbury CDP, IN +station = ('ksdf', 0.0055194373263081579) +zone = ('inz090', 0.0020785782233039012) + +[fips1853694] +centroid = (0.70169925850856329, -1.5210237078649307) +description = Newtown town, IN +station = ('klaf', 0.0045481139848295004) +zone = ('inz035', 0.001919589030929499) + +[fips1853712] +centroid = (0.68606859587318525, -1.4817296094316255) +description = New Trenton CDP, IN +station = ('khao', 0.0052303608855209143) +zone = ('inz066', 0.0028783629845069558) + +[fips1853820] +centroid = (0.67316466112819784, -1.493293829442782) +description = New Washington CDP, IN +station = ('klou', 0.0060476594546306911) +zone = ('inz092', 0.0025818135781937495) + +[fips1853874] +centroid = (0.69048290007062185, -1.5027192706286674) +description = New Whiteland town, IN +station = ('kind', 0.0036628739286489408) +zone = ('inz055', 0.001254482413218875) + +[fips1854180] +centroid = (0.69877710610182686, -1.501108680794927) +description = Noblesville city, IN +station = ('ktyq', 0.0032470341403738408) +zone = ('inz039', 0.00086178484573333838) + +[fips1854612] +centroid = (0.69579433841016847, -1.5038187233376685) +description = North Crows Nest town, IN +station = ('keye', 0.0019294571278702635) +zone = ('inz047', 0.0015093138978471252) + +[fips1854900] +centroid = (0.71935623095221435, -1.5145444697228745) +description = North Judson town, IN +station = ('koxi', 0.0025118126142424572) +zone = ('inz012', 0.0020392850615679565) + +[fips1854918] +centroid = (0.72487372286325147, -1.5084546319902308) +description = North Liberty town, IN +station = ('ksbn', 0.0032695711764549962) +zone = ('inz004', 0.0023312518015133291) + +[fips1854954] +centroid = (0.71567004321212491, -1.4970684006561925) +description = North Manchester town, IN +station = ('kasw', 0.0047802157297755924) +zone = ('inz024', 0.002788553562023057) + +[fips1855080] +centroid = (0.69568113635488404, -1.5122305471071655) +description = North Salem town, IN +station = ('keye', 0.0046380370349426549) +zone = ('inz046', 0.0023917214950298612) + +[fips1855098] +centroid = (0.69005110561367844, -1.5248115784872414) +description = North Terre Haute CDP, IN +station = ('khuf', 0.0016537807340802849) +zone = ('inz051', 0.0018869524972964793) + +[fips1855116] +centroid = (0.68093429099942338, -1.4945243389253156) +description = North Vernon city, IN +station = ('kbak', 0.0057192580294496767) +zone = ('inz072', 0.00031098754381626717) + +[fips1855134] +centroid = (0.72123692794099348, -1.4956962402515672) +description = North Webster town, IN +station = ('kasw', 0.0020627080892055443) +zone = ('inz016', 0.0025576081940198486) + +[fips1855350] +centroid = (0.71164875225565227, -1.5144506233689947) +description = Norway CDP, IN +station = ('kggp', 0.0053893353030429365) +zone = ('inz020', 0.0013116911639172776) + +[fips1855386] +centroid = (0.727807115190371, -1.5051484896947631) +description = Notre Dame CDP, IN +station = ('ksbn', 0.0010165891761871762) +zone = ('inz004', 0.0016039001034472912) + +[fips1855710] +centroid = (0.66913209534475748, -1.5245286606154931) +description = Oakland City city, IN +station = ('khnb', 0.0056800797686337254) +zone = ('inz082', 0.0019148620173403211) + +[fips1855800] +centroid = (0.67843871451516691, -1.526136213576335) +description = Oaktown town, IN +station = ('klwv', 0.0028326909523345759) +zone = ('inz067', 0.0032020825234463958) + +[fips1856052] +centroid = (0.6779266523659242, -1.5182355094782847) +description = Odon town, IN +station = ('kbmg', 0.0073669143007898345) +zone = ('inz068', 0.0026943474067827903) + +[fips1856088] +centroid = (0.72655307866952046, -1.5218147783483968) +description = Ogden Dunes town, IN +station = ('kgyy', 0.0029180401875661664) +zone = ('inz002', 0.0033643489042524707) + +[fips1856286] +centroid = (0.6865921073823209, -1.487103809811074) +description = Oldenburg town, IN +station = ('kcvg', 0.0088538141746640486) +zone = ('inz066', 0.0023573475293646069) + +[fips1856664] +centroid = (0.71025416437013877, -1.5043900394150163) +description = Onward town, IN +station = ('kgus', 0.00098133123870875762) +zone = ('inz023', 0.0023772487147350491) + +[fips1856682] +centroid = (0.67880210951872455, -1.5101503066250059) +description = Oolitic town, IN +station = ('kbmg', 0.0046621442583057553) +zone = ('inz070', 0.0010605632815568562) + +[fips1856952] +centroid = (0.7028320120996927, -1.496228949645861) +description = Orestes town, IN +station = ('kaid', 0.0030471175861888442) +zone = ('inz040', 0.0018830363990105156) + +[fips1857006] +centroid = (0.72833561834116733, -1.4865382184136726) +description = Orland town, IN +station = ('kirs', 0.0037576821907487489) +zone = ('inz007', 0.0026996223827250158) + +[fips1857024] +centroid = (0.67476319073680691, -1.5088669311194294) +description = Orleans town, IN +station = ('kbmg', 0.0088224289077697988) +zone = ('inz076', 0.002164380372654838) + +[fips1857114] +centroid = (0.72717396209762486, -1.5023562421442525) +description = Osceola town, IN +station = ('kekm', 0.0013770692584165189) +zone = ('inz005', 0.0030960853677702363) + +[fips1857132] +centroid = (0.68293791152742045, -1.4886270982756296) +description = Osgood town, IN +station = ('kbak', 0.0085645332088949682) +zone = ('inz073', 0.00060669376452969243) + +[fips1857168] +centroid = (0.71346710608355002, -1.4864691906417564) +description = Ossian town, IN +station = ('kfwa', 0.0021584486010276975) +zone = ('inz026', 0.0027017726062167043) + +[fips1857258] +centroid = (0.70666037436064977, -1.5200693269233552) +description = Otterbein town, IN +station = ('klaf', 0.0022833596607115124) +zone = ('inz029', 0.003173271956941445) + +[fips1857384] +centroid = (0.67118950692030077, -1.5201114068116206) +description = Otwell CDP, IN +station = ('khnb', 0.0041181395625003222) +zone = ('inz082', 0.0021160360205127889) + +[fips1857510] +centroid = (0.67942760061605423, -1.5136281020524074) +description = Owensburg CDP, IN +station = ('kbmg', 0.0041357707325166823) +zone = ('inz070', 0.0036113835325182297) + +[fips1857528] +centroid = (0.66796549981943198, -1.5305100610417104) +description = Owensville town, IN +station = ('kevv', 0.0046927898582658509) +zone = ('inz081', 0.0016270459657318269) + +[fips1857546] +centroid = (0.70724392519605406, -1.5227716376575104) +description = Oxford town, IN +station = ('klaf', 0.0043683189211019564) +zone = ('inz019', 0.0016873091045681873) + +[fips1857632] +centroid = (0.68762488851389603, -1.5070562916468255) +description = Painted Hills CDP, IN +station = ('kind', 0.0056293004083159915) +zone = ('inz054', 0.0019689959039037959) + +[fips1857726] +centroid = (0.67034754263584628, -1.5028701019826245) +description = Palmyra town, IN +station = ('ksdf', 0.0064607624067039258) +zone = ('inz077', 0.0033497691352770628) + +[fips1857780] +centroid = (0.67294092737138467, -1.509193831288328) +description = Paoli town, IN +station = ('khnb', 0.0084659030112005269) +zone = ('inz076', 0.00042512392554968785) + +[fips1857870] +centroid = (0.68756385434995371, -1.510792256177182) +description = Paragon town, IN +station = ('kbmg', 0.0043308557759666067) +zone = ('inz054', 0.0021777442902008106) + +[fips1857978] +centroid = (0.70144426590484699, -1.4870882065675612) +description = Parker City town, IN +station = ('kmie', 0.0027222120439698424) +zone = ('inz041', 0.0026560558715498961) + +[fips1858050] +centroid = (0.66399335733469556, -1.5309107537313833) +description = Parkers Settlement CDP, IN +station = ('kevv', 0.0025003947233054801) +zone = ('inz085', 0.0021478930708550906) + +[fips1858320] +centroid = (0.67023397406141905, -1.5286869424649547) +description = Patoka town, IN +station = ('kajg', 0.0040497879294678161) +zone = ('inz081', 0.0015673605975979144) + +[fips1858392] +centroid = (0.67782046653423289, -1.4805523499445703) +description = Patriot town, IN +station = ('kcvg', 0.0043355922879602035) +zone = ('kyz090', 0.0014430529655877888) + +[fips1858662] +centroid = (0.69827966981171585, -1.4968079451719176) +description = Pendleton town, IN +station = ('kaid', 0.002696499283102837) +zone = ('inz040', 0.0027290033216929811) + +[fips1858788] +centroid = (0.70671711501463208, -1.4860903145677333) +description = Pennville town, IN +station = ('kmie', 0.0056315089659152604) +zone = ('inz034', 0.0020954204863778895) + +[fips1859238] +centroid = (0.69906021595979273, -1.5260455262684014) +description = Perrysville town, IN +station = ('kdnv', 0.0033242651474818612) +zone = ('inz035', 0.0028480491955034971) + +[fips1859328] +centroid = (0.71137534642832745, -1.5022306307979865) +description = Peru city, IN +station = ('kgus', 0.0021646427519094319) +zone = ('inz023', 0.0003954796313231955) + +[fips1859364] +centroid = (0.67181625465469197, -1.5233404230074428) +description = Petersburg city, IN +station = ('khnb', 0.0061955992072961971) +zone = ('inz082', 0.0017618049036903505) + +[fips1859598] +centroid = (0.71905432389820434, -1.4958017104982653) +description = Pierceton town, IN +station = ('kasw', 0.0022296412452456212) +zone = ('inz016', 0.0022146958170556857) + +[fips1860084] +centroid = (0.70597693833215391, -1.5228600036775388) +description = Pine Village town, IN +station = ('klaf', 0.0040718123883949119) +zone = ('inz028', 0.0022288861476971282) + +[fips1860192] +centroid = (0.69582009946992796, -1.5090904379834398) +description = Pittsboro town, IN +station = ('keye', 0.0022838333427611717) +zone = ('inz046', 0.0018167704424875085) + +[fips1860246] +centroid = (0.69292135192846072, -1.507492117814341) +description = Plainfield town, IN +station = ('kind', 0.0012319697923457865) +zone = ('inz046', 0.0021895326146538609) + +[fips1860264] +centroid = (0.67727208408325623, -1.5210830839660834) +description = Plainville town, IN +station = ('klwv', 0.0061360606630139957) +zone = ('inz068', 0.0020900264075703499) + +[fips1860822] +centroid = (0.72168359260316373, -1.506558331757939) +description = Plymouth city, IN +station = ('koxi', 0.0044756473408978422) +zone = ('inz014', 0.0008672617780904672) + +[fips1860894] +centroid = (0.70547260799149758, -1.4978764182866959) +description = Point Isabel CDP, IN +station = ('kmzz', 0.0022412467798995847) +zone = ('inz032', 0.0027729180564577786) + +[fips1861020] +centroid = (0.70960055601855943, -1.487407497100921) +description = Poneto town, IN +station = ('kfwa', 0.005991596416067827) +zone = ('inz026', 0.0012564062000503381) + +[fips1861092] +centroid = (0.7259106055185689, -1.5215595064920004) +description = Portage city, IN +station = ('kvpz', 0.003402425525795377) +zone = ('inz002', 0.0027151651155912482) + +[fips1861164] +centroid = (0.72653770231881043, -1.5198806044713369) +description = Porter town, IN +station = ('kvpz', 0.0032818567506431168) +zone = ('inz002', 0.0029226209899363901) + +[fips1861236] +centroid = (0.70575322202863322, -1.4832408551243423) +description = Portland city, IN +station = ('kmie', 0.0065809819275317498) +zone = ('inz034', 0.00029658281540149653) + +[fips1861416] +centroid = (0.66619104102222182, -1.5321078750653261) +description = Poseyville town, IN +station = ('kevv', 0.0041799343170915429) +zone = ('inz085', 0.0028373081145362847) + +[fips1861470] +centroid = (0.7282087852644249, -1.5161175698842819) +description = Pottawattamie Park town, IN +station = ('kmgc', 0.00069390056806686645) +zone = ('inz003', 0.0035113318994210367) + +[fips1862028] +centroid = (0.68681617275169193, -1.5028845009489535) +description = Princes Lakes town, IN +station = ('kbak', 0.0031878199535883183) +zone = ('inz055', 0.002414576946369987) + +[fips1862046] +centroid = (0.66942339079691526, -1.5285272797449823) +description = Princeton city, IN +station = ('kajg', 0.0048318512171019509) +zone = ('inz081', 0.00076145683262765506) + +[fips1862388] +centroid = (0.70562022793963119, -1.5171014643435088) +description = Purdue University CDP, IN +station = ('klaf', 0.00041311922076947349) +zone = ('inz029', 0.00080713005050451667) + +[fips1862712] +centroid = (0.67722749092086776, -1.5177908344914615) +description = Raglesville CDP, IN +station = ('kbmg', 0.0076755945392300703) +zone = ('inz068', 0.0022898603457594149) + +[fips1862730] +centroid = (0.6762576463621196, -1.5240933056868755) +description = Ragsdale CDP, IN +station = ('klwv', 0.0037710052497895745) +zone = ('inz067', 0.0016265136992265679) + +[fips1863450] +centroid = (0.70420743627001936, -1.4861808797026195) +description = Redkey town, IN +station = ('kmie', 0.0038630621742822219) +zone = ('inz034', 0.0024975038002479346) + +[fips1863756] +centroid = (0.71149064287871411, -1.521098111250943) +description = Remington town, IN +station = ('krzl', 0.003259490538519609) +zone = ('inz019', 0.0034794389151540815) + +[fips1863792] +centroid = (0.71445012787815088, -1.5210576545188819) +description = Rensselaer city, IN +station = ('krzl', 0.00058676285356421042) +zone = ('inz011', 0.001600219472767477) + +[fips1863918] +centroid = (0.71120763774050322, -1.5162422212994595) +description = Reynolds town, IN +station = ('krzl', 0.0054457879561491144) +zone = ('inz020', 0.00011805335660340988) + +[fips1864206] +centroid = (0.66229279577801492, -1.5213977842835107) +description = Richland town, IN +station = ('kowb', 0.003605774000128703) +zone = ('inz088', 0.0025214881060239961) + +[fips1864260] +centroid = (0.69520092646449039, -1.4816047485769377) +description = Richmond city, IN +station = ('kves', 0.0080219584398484884) +zone = ('inz050', 0.0017065816859597029) + +[fips1864422] +centroid = (0.70322027804509135, -1.4840292552540533) +description = Ridgeville town, IN +station = ('kmie', 0.0050495992149963689) +zone = ('inz042', 0.0023491637670806876) + +[fips1864512] +centroid = (0.68748109083682418, -1.5236761370890639) +description = Riley town, IN +station = ('khuf', 0.0010744533928187922) +zone = ('inz051', 0.0014049608510844803) + +[fips1864674] +centroid = (0.67987105387240099, -1.4809693614627495) +description = Rising Sun city, IN +station = ('kcvg', 0.0030380816531833956) +zone = ('kyz091', 0.0017252249022081101) + +[fips1864728] +centroid = (0.70006332649408409, -1.4962571367132806) +description = River Forest town, IN +station = ('kaid', 0.0015059527437016492) +zone = ('inz040', 0.00089843086056368886) + +[fips1864980] +centroid = (0.69549918578036374, -1.5149540112318549) +description = Roachdale town, IN +station = ('ktyq', 0.0080139362932578825) +zone = ('inz045', 0.0032470876873970278) + +[fips1864998] +centroid = (0.71403281965399901, -1.4996650142508472) +description = Roann town, IN +station = ('krcr', 0.0042532712848810245) +zone = ('inz024', 0.0020654883000067216) + +[fips1865016] +centroid = (0.71496213766751582, -1.4901718717432773) +description = Roanoke town, IN +station = ('kfwa', 0.0024591814885113411) +zone = ('inz025', 0.0027520610369829173) + +[fips1865214] +centroid = (0.71664346569583959, -1.5044428356248891) +description = Rochester city, IN +station = ('krcr', 0.00024010776629956515) +zone = ('inz015', 0.00089278112063999511) + +[fips1865484] +centroid = (0.66130382241066488, -1.5193831856345184) +description = Rockport city, IN +station = ('kowb', 0.0030412432389000064) +zone = ('inz088', 0.0022617330739208076) + +[fips1865520] +centroid = (0.69405562395603926, -1.5224413690031555) +description = Rockville town, IN +station = ('khuf', 0.0056463238018302116) +zone = ('inz044', 0.00033482479231910849) + +[fips1865556] +centroid = (0.69548583401158592, -1.5040048103425163) +description = Rocky Ripple town, IN +station = ('keye', 0.0017204480438899412) +zone = ('inz047', 0.001255449076986359) + +[fips1865736] +centroid = (0.72735666316372372, -1.5118024178416514) +description = Rolling Prairie CDP, IN +station = ('kppo', 0.0023211943347401644) +zone = ('inz003', 0.002734880282868034) + +[fips1865808] +centroid = (0.7241826946525094, -1.4898871561823992) +description = Rome City town, IN +station = ('kgwb', 0.0051129745945793564) +zone = ('inz008', 0.0017820958952832746) + +[fips1865934] +centroid = (0.69154240219304497, -1.523351104422465) +description = Rosedale town, IN +station = ('khuf', 0.0030468191350760936) +zone = ('inz044', 0.0028249952022464495) + +[fips1865988] +centroid = (0.72810999962876199, -1.5053568296475734) +description = Roseland town, IN +station = ('ksbn', 0.0009142437870269213) +zone = ('inz004', 0.0018342300807940302) + +[fips1866006] +centroid = (0.71829418064908335, -1.5234822484624597) +description = Roselawn CDP, IN +station = ('krzl', 0.0038119560525946001) +zone = ('inz011', 0.0032401797136285366) + +[fips1866150] +centroid = (0.7054615600573324, -1.5113761560784365) +description = Rossville town, IN +station = ('kggp', 0.0058800108530571464) +zone = ('inz030', 0.0026114119243757692) + +[fips1866222] +centroid = (0.71321741928075977, -1.5097079354727954) +description = Royal Center town, IN +station = ('kggp', 0.0031563635099131214) +zone = ('inz022', 0.0027119397918547038) + +[fips1866438] +centroid = (0.6914193041209018, -1.4913196526192662) +description = Rushville city, IN +station = ('kgez', 0.0047891301937220765) +zone = ('inz057', 0.00027206953075873465) + +[fips1866510] +centroid = (0.69563507711592409, -1.5181437749727997) +description = Russellville town, IN +station = ('khuf', 0.0083978240005479904) +zone = ('inz044', 0.0033255733465686237) + +[fips1866546] +centroid = (0.70543686364841662, -1.5057498603418302) +description = Russiaville town, IN +station = ('kokk', 0.0033948844175515891) +zone = ('inz031', 0.0023649814412596147) + +[fips1866762] +centroid = (0.69310445442028734, -1.52751252786458) +description = St. Bernice CDP, IN +station = ('kprg', 0.0020204071454166263) +zone = ('inz043', 0.0025870906340531791) + +[fips1866834] +centroid = (0.7210811747585455, -1.4818336310550444) +description = St. Joe town, IN +station = ('kgwb', 0.002207299778768412) +zone = ('inz009', 0.0019168111817446667) + +[fips1866852] +centroid = (0.72333559910005396, -1.5266071034085229) +description = St. John town, IN +station = ('kigq', 0.001872063496267434) +zone = ('inz001', 0.0012355699334969743) + +[fips1866978] +centroid = (0.68590516324202844, -1.4829454581484423) +description = St. Leon town, IN +station = ('kcvg', 0.0059512538433447882) +zone = ('inz066', 0.002377695402890853) + +[fips1867050] +centroid = (0.68965962826245608, -1.5264614556824443) +description = St. Mary of the Woods CDP, IN +station = ('khuf', 0.0022334439811421566) +zone = ('inz051', 0.001741545228514708) + +[fips1867176] +centroid = (0.66615531413243345, -1.5154351636000447) +description = St. Meinrad CDP, IN +station = ('khnb', 0.0022025868139075194) +zone = ('inz089', 0.0030294031264165621) + +[fips1867212] +centroid = (0.68814613109500411, -1.494506327127435) +description = St. Paul town, IN +station = ('kgez', 0.0035596110956347782) +zone = ('inz065', 0.0027243610408565207) + +[fips1867302] +centroid = (0.70479479192319305, -1.4811889413359427) +description = Salamonia town, IN +station = ('kves', 0.0054825365147142683) +zone = ('inz034', 0.0021014555732638356) + +[fips1867464] +centroid = (0.67378032602183879, -1.5026806639456132) +description = Salem city, IN +station = ('klou', 0.0087576183356562597) +zone = ('inz077', 0.00013767336138814784) + +[fips1867608] +centroid = (0.72450620888265904, -1.5208986026641476) +description = Salt Creek Commons CDP, IN +station = ('kvpz', 0.0021310852374418401) +zone = ('inz002', 0.0013102569160601755) + +[fips1867626] +centroid = (0.67483548227442447, -1.5061752319871262) +description = Saltillo town, IN +station = ('kbmg', 0.009506772327309905) +zone = ('inz077', 0.0028568294040198622) + +[fips1867698] +centroid = (0.67887680961070995, -1.5216585190204661) +description = Sandborn town, IN +station = ('krsv', 0.006645750016997117) +zone = ('inz068', 0.0037217113818450577) + +[fips1868004] +centroid = (0.71905582488136111, -1.5165559093259202) +description = San Pierre CDP, IN +station = ('koxi', 0.0038108268620198229) +zone = ('inz013', 0.003737371004502844) + +[fips1868022] +centroid = (0.66525285673610468, -1.5172053463405875) +description = Santa Claus town, IN +station = ('khnb', 0.002352514617412628) +zone = ('inz088', 0.0020793809983518752) + +[fips1868058] +centroid = (0.7022649546257197, -1.4820609601901165) +description = Saratoga town, IN +station = ('kves', 0.0051821070259827134) +zone = ('inz042', 0.0018800565641751519) + +[fips1868220] +centroid = (0.72405277234299104, -1.526174959885729) +description = Schererville town, IN +station = ('kigq', 0.0015046167028271809) +zone = ('inz001', 0.0014578760304155903) + +[fips1868238] +centroid = (0.71895105276636395, -1.5262240385442953) +description = Schneider town, IN +station = ('krzl', 0.0054157489098063004) +zone = ('inz001', 0.0039784355294849886) + +[fips1868328] +centroid = (0.6819759384035986, -1.4960090730666948) +description = Scipio CDP, IN +station = ('kbak', 0.0041872517206313024) +zone = ('inz072', 0.0017930479415993522) + +[fips1868382] +centroid = (0.67909258466613398, -1.5167740405758348) +description = Scotland CDP, IN +station = ('kbmg', 0.0057382783260466119) +zone = ('inz061', 0.0023513981997895523) + +[fips1868526] +centroid = (0.67521191488749466, -1.4972094058064611) +description = Scottsburg city, IN +station = ('klou', 0.0080745820725889109) +zone = ('inz078', 0.00049651227705137181) + +[fips1868652] +centroid = (0.68928902504908762, -1.5230950122613198) +description = Seelyville town, IN +station = ('khuf', 0.0010108303762079586) +zone = ('inz051', 0.0019875200487537732) + +[fips1868670] +centroid = (0.6700460021009792, -1.4967876120861319) +description = Sellersburg town, IN +station = ('klou', 0.0030288899606599959) +zone = ('inz092', 0.0016704236625626446) + +[fips1868706] +centroid = (0.70138412185882315, -1.4883131833563659) +description = Selma town, IN +station = ('kmie', 0.0018681667226309311) +zone = ('inz041', 0.0017886219461238076) + +[fips1868832] +centroid = (0.67971531814324559, -1.4991050602669298) +description = Seymour city, IN +station = ('kbak', 0.0056182461614967018) +zone = ('inz071', 0.0020825251370814842) + +[fips1868868] +centroid = (0.70414991021787354, -1.5178027027303751) +description = Shadeland town, IN +station = ('klaf', 0.001267133960763032) +zone = ('inz029', 0.0012001061274549392) + +[fips1868976] +centroid = (0.70531266601884479, -1.4909899948301497) +description = Shamrock Lakes town, IN +station = ('kmie', 0.0031298922360194575) +zone = ('inz033', 0.0017412053112742802) + +[fips1869048] +centroid = (0.70475585362758109, -1.5024991671566983) +description = Sharpsville town, IN +station = ('kokk', 0.0026976337007564321) +zone = ('inz038', 0.0012768973929227945) + +[fips1869192] +centroid = (0.68380417079506273, -1.5253680069060696) +description = Shelburn town, IN +station = ('krsv', 0.0044523253335026127) +zone = ('inz060', 0.0015935206034785269) + +[fips1869246] +centroid = (0.71896103604968531, -1.524417413328971) +description = Shelby CDP, IN +station = ('krzl', 0.004699737348540226) +zone = ('inz001', 0.0039111425423174724) + +[fips1869318] +centroid = (0.68999530743749216, -1.4970334242579826) +description = Shelbyville city, IN +station = ('kgez', 0.00093385781619197367) +zone = ('inz056', 0.00030199334840669826) + +[fips1869336] +centroid = (0.69123232699813564, -1.525818092413574) +description = Shepardsville CDP, IN +station = ('khuf', 0.0030555411709126375) +zone = ('inz051', 0.0030707212774637917) + +[fips1869354] +centroid = (0.70041343954203406, -1.5047980101276701) +description = Sheridan town, IN +station = ('ktyq', 0.0018075309730220999) +zone = ('inz039', 0.002445047092375223) + +[fips1869480] +centroid = (0.72736512801059583, -1.4935887726330768) +description = Shipshewana town, IN +station = ('kirs', 0.0029961852089763511) +zone = ('inz006', 0.0020332405096544744) + +[fips1869516] +centroid = (0.69622927445976546, -1.4936543446530739) +description = Shirley town, IN +station = ('kaid', 0.003968883653028255) +zone = ('inz049', 0.0025555025614672298) + +[fips1869552] +centroid = (0.67484824063125659, -1.5148285744185142) +description = Shoals town, IN +station = ('khnb', 0.0075691588966614086) +zone = ('inz069', 0.00074589207731616677) + +[fips1869642] +centroid = (0.72358896854756594, -1.5209853455279716) +description = Shorewood Forest CDP, IN +station = ('kvpz', 0.0019162362430174948) +zone = ('inz002', 0.0010330765025714644) + +[fips1869678] +centroid = (0.71741903765554838, -1.4964962642740964) +description = Sidney town, IN +station = ('kasw', 0.0032191955573243605) +zone = ('inz016', 0.0028776881983358618) + +[fips1869768] +centroid = (0.71688206965787971, -1.4991133854874619) +description = Silver Lake town, IN +station = ('kasw', 0.0035612710947468987) +zone = ('inz016', 0.0029932720820095931) + +[fips1869840] +centroid = (0.72874852833560422, -1.500468982717486) +description = Simonton Lake CDP, IN +station = ('kekm', 0.00075940201249363097) +zone = ('miz078', 0.0028274105116734005) + +[fips1869894] +centroid = (0.70686969169784142, -1.4984337891833204) +description = Sims CDP, IN +station = ('kokk', 0.0028796742674553318) +zone = ('inz032', 0.0026556696024948121) + +[fips1870330] +centroid = (0.68172023021488892, -1.5098977923888275) +description = Smithville-Sanders CDP, IN +station = ('kbmg', 0.0021310281447997261) +zone = ('inz062', 0.0017742863612009217) + +[fips1870524] +centroid = (0.70982708230217573, -1.498045872303772) +description = Somerset CDP, IN +station = ('kmzz', 0.0037315069253937654) +zone = ('inz024', 0.0031051420285234284) + +[fips1870542] +centroid = (0.66808280339845849, -1.5250078058550429) +description = Somerville town, IN +station = ('kevv', 0.0047870199979114375) +zone = ('inz082', 0.0028851594754750881) + +[fips1871000] +centroid = (0.72739825435979877, -1.5056788428945664) +description = South Bend city, IN +station = ('ksbn', 0.00074062936789133819) +zone = ('inz004', 0.0010841581572213408) + +[fips1871288] +centroid = (0.72507581453734005, -1.520821511471087) +description = South Haven CDP, IN +station = ('kvpz', 0.002422898305371627) +zone = ('inz002', 0.0017144882018871315) + +[fips1871486] +centroid = (0.69219733699485586, -1.5030271990685966) +description = Southport city, IN +station = ('kind', 0.0024418174436889716) +zone = ('inz047', 0.0021417116076999369) + +[fips1871612] +centroid = (0.71704710799194837, -1.4944857846021391) +description = South Whitley town, IN +station = ('kasw', 0.0043416689184743113) +zone = ('inz017', 0.0018811267980289677) + +[fips1871828] +centroid = (0.69453105164428242, -1.505303579652095) +description = Speedway town, IN +station = ('keye', 0.00098647729963877379) +zone = ('inz047', 0.0014789072045754382) + +[fips1871972] +centroid = (0.68567216178688728, -1.5144131860565395) +description = Spencer town, IN +station = ('kbmg', 0.0031486707660061085) +zone = ('inz053', 0.0010319003473995704) + +[fips1872008] +centroid = (0.69529372562081893, -1.4911705840478535) +description = Spiceland town, IN +station = ('kaid', 0.0054297143795696903) +zone = ('inz049', 0.0017263633285596284) + +[fips1872206] +centroid = (0.69546749060114754, -1.4816185192247362) +description = Spring Grove town, IN +station = ('kves', 0.0078163786610729868) +zone = ('inz050', 0.0016273356244942982) + +[fips1872232] +centroid = (0.69524497857481082, -1.5043438056431309) +description = Spring Hill town, IN +station = ('keye', 0.0014402503919270966) +zone = ('inz047', 0.0011759616220462976) + +[fips1872296] +centroid = (0.69423853446164829, -1.4984444182384649) +description = Spring Lake town, IN +station = ('kgez', 0.0034575469254716907) +zone = ('inz048', 0.00136016621078169) + +[fips1872332] +centroid = (0.69895551365796571, -1.4903811018140061) +description = Springport town, IN +station = ('kmie', 0.0032501436737974302) +zone = ('inz049', 0.0020270340598852296) + +[fips1872440] +centroid = (0.66768446690327576, -1.5229660324295975) +description = Spurgeon town, IN +station = ('khnb', 0.0042434008029375372) +zone = ('inz082', 0.00252885207249907) + +[fips1872638] +centroid = (0.71513975982549138, -1.5107797770730302) +description = Star City CDP, IN +station = ('kggp', 0.0052254921757707512) +zone = ('inz013', 0.0021606197378855928) + +[fips1872764] +centroid = (0.70157607316995751, -1.5276355386702607) +description = State Line City town, IN +station = ('kdnv', 0.00091373200453310002) +zone = ('ilz046', 0.0027547376537562797) + +[fips1872782] +centroid = (0.68916767230619635, -1.5217353309608463) +description = Staunton town, IN +station = ('khuf', 0.0018335349031317534) +zone = ('inz052', 0.0019085382659594038) + +[fips1873178] +centroid = (0.69179254278144076, -1.5120312828664653) +description = Stilesville town, IN +station = ('kind', 0.0048997456185469841) +zone = ('inz046', 0.0028448288216893249) + +[fips1873232] +centroid = (0.68591095773514499, -1.5123277270399165) +description = Stinesville town, IN +station = ('kbmg', 0.0026531054205631722) +zone = ('inz053', 0.0025438513715402298) + +[fips1873340] +centroid = (0.7030581544108736, -1.5143993630488637) +description = Stockwell CDP, IN +station = ('klaf', 0.0033643021908037391) +zone = ('inz029', 0.0024956033657379893) + +[fips1873664] +centroid = (0.69478733579164531, -1.4886061543246056) +description = Straughn town, IN +station = ('kaid', 0.0069244156301618356) +zone = ('inz049', 0.0025671630478847512) + +[fips1874006] +centroid = (0.68237640420046874, -1.5255455592508749) +description = Sullivan city, IN +station = ('krsv', 0.003579637249759098) +zone = ('inz060', 0.00017794920802281355) + +[fips1874060] +centroid = (0.69804886747143224, -1.4910779419711575) +description = Sulphur Springs town, IN +station = ('kaid', 0.0032473316493776979) +zone = ('inz049', 0.0012187270698925715) + +[fips1874132] +centroid = (0.70401223864647633, -1.4947518949531908) +description = Summitville town, IN +station = ('kmzz', 0.0027165037678401499) +zone = ('inz032', 0.0031258211828023063) + +[fips1874168] +centroid = (0.6848199349664309, -1.4851545737425693) +description = Sunman town, IN +station = ('kcvg', 0.0066334582212384217) +zone = ('inz074', 0.0022811148202054854) + +[fips1874510] +centroid = (0.70697427182662087, -1.497916735392417) +description = Swayzee town, IN +station = ('kmzz', 0.0019371304419594935) +zone = ('inz032', 0.0022549224039126381) + +[fips1874546] +centroid = (0.70805656794907512, -1.4968873401995908) +description = Sweetser town, IN +station = ('kmzz', 0.0017792461486770316) +zone = ('inz032', 0.0017320290175351155) + +[fips1874582] +centroid = (0.68128794706575502, -1.5193684201490467) +description = Switz City town, IN +station = ('kbmg', 0.0062475971809284152) +zone = ('inz061', 0.001239308610891087) + +[fips1874744] +centroid = (0.72294869451147181, -1.4966161683937085) +description = Syracuse town, IN +station = ('kgsh', 0.0019935721986495064) +zone = ('inz005', 0.0033774963403636355) + +[fips1875104] +centroid = (0.68585289063093124, -1.5001152742912767) +description = Taylorsville CDP, IN +station = ('kbak', 0.00085555277995755046) +zone = ('inz064', 0.0017332003798525249) + +[fips1875176] +centroid = (0.69055337646581727, -1.5259413475653498) +description = Tecumseh CDP, IN +station = ('khuf', 0.0025324726682084135) +zone = ('inz051', 0.0024202918961938771) + +[fips1875248] +centroid = (0.66240507280879568, -1.5142346912339382) +description = Tell City city, IN +station = ('khnb', 0.0058077708917794743) +zone = ('kyz023', 0.001963347988841322) + +[fips1875302] +centroid = (0.66465111956989475, -1.5205098829331434) +description = Tennyson town, IN +station = ('khnb', 0.0037407304845360374) +zone = ('inz088', 0.0019286697435088103) + +[fips1875428] +centroid = (0.68880364898410795, -1.5249975607723338) +description = Terre Haute city, IN +station = ('khuf', 0.0008433419249493059) +zone = ('inz051', 0.00063867827523622698) + +[fips1875626] +centroid = (0.70038856860019316, -1.511631113775568) +description = Thorntown town, IN +station = ('ktyq', 0.0051115216476341476) +zone = ('inz037', 0.002332665165908718) + +[fips1875986] +centroid = (0.70308602731902792, -1.501714048245981) +description = Tipton city, IN +station = ('kokk', 0.0043665418247220986) +zone = ('inz038', 0.00049880389684075458) + +[fips1876022] +centroid = (0.6886504963422454, -1.5265332759811636) +description = Toad Hop CDP, IN +station = ('khuf', 0.001987877972067838) +zone = ('inz051', 0.0010959282040427221) + +[fips1876184] +centroid = (0.72500664713908347, -1.4930785256262562) +description = Topeka town, IN +station = ('kgsh', 0.0030883383805671706) +zone = ('inz006', 0.0023879298592580128) + +[fips1876256] +centroid = (0.72759622705685245, -1.5175945896703671) +description = Town of Pines town, IN +station = ('kmgc', 0.001723138589343138) +zone = ('inz003', 0.0037149803053985425) + +[fips1876310] +centroid = (0.6878908417853149, -1.5035944834353723) +description = Trafalgar town, IN +station = ('kbak', 0.0042305480430257) +zone = ('inz055', 0.0014856311978731986) + +[fips1876328] +centroid = (0.72773723220712105, -1.5159140644934996) +description = Trail Creek town, IN +station = ('kmgc', 0.0004644805019632292) +zone = ('inz003', 0.0030253528647359255) + +[fips1876526] +centroid = (0.7199698538106305, -1.4914458748307704) +description = Tri-Lakes CDP, IN +station = ('kfwa', 0.0055080885823404428) +zone = ('inz017', 0.0020663620037508781) + +[fips1876634] +centroid = (0.6631556516536159, -1.5149567513987807) +description = Troy town, IN +station = ('khnb', 0.0048842453990551255) +zone = ('kyz023', 0.0027148192539774123) + +[fips1877066] +centroid = (0.69925637351442449, -1.5090690577001029) +description = Ulen town, IN +station = ('ktyq', 0.0029123876443717897) +zone = ('inz037', 0.00024878212035806696) + +[fips1877768] +centroid = (0.70161050851609941, -1.4803994940086806) +description = Union City city, IN +station = ('kves', 0.0038745265684969137) +zone = ('inz042', 0.0026459124946626774) + +[fips1877786] +centroid = (0.71261800340245485, -1.4876977104489426) +description = Uniondale town, IN +station = ('kfwa', 0.0030107980539850225) +zone = ('inz026', 0.0017764015454607858) + +[fips1877912] +centroid = (0.6915435366570587, -1.5263839456103632) +description = Universal town, IN +station = ('kprg', 0.0031838850592399667) +zone = ('inz051', 0.003463368691555677) + +[fips1877966] +centroid = (0.70620992233400259, -1.4922737368548689) +description = Upland town, IN +station = ('kmzz', 0.0024234068572526529) +zone = ('inz032', 0.0022410991820389424) + +[fips1878110] +centroid = (0.66914801274753566, -1.4949750352980582) +description = Utica town, IN +station = ('klou', 0.0018564845766112789) +zone = ('inz092', 0.0025086259868673201) + +[fips1878290] +centroid = (0.67803440899394229, -1.5027420820819908) +description = Vallonia CDP, IN +station = ('kbak', 0.0077889767870128624) +zone = ('inz071', 0.0013258001663272155) + +[fips1878326] +centroid = (0.72395950194776437, -1.519348628115329) +description = Valparaiso city, IN +station = ('kvpz', 0.00085918049010154005) +zone = ('inz002', 0.00038909348221482381) + +[fips1878380] +centroid = (0.69340554116954889, -1.5172108441277312) +description = Van Bibber Lake CDP, IN +station = ('khuf', 0.0071291964903417906) +zone = ('inz045', 0.0015816941080615148) + +[fips1878470] +centroid = (0.70887853076030194, -1.4923249622684149) +description = Van Buren town, IN +station = ('kmzz', 0.0032045216570712304) +zone = ('inz032', 0.0026541867082409817) + +[fips1878740] +centroid = (0.70010132231189992, -1.5229156622273849) +description = Veedersburg town, IN +station = ('kdnv', 0.0047668483124499198) +zone = ('inz035', 0.00024174394285240186) + +[fips1878776] +centroid = (0.71037364961073024, -1.4849216595538905) +description = Vera Cruz town, IN +station = ('kfwa', 0.0054478073346222776) +zone = ('inz027', 0.0020437917300972059) + +[fips1878902] +centroid = (0.68042088494665676, -1.4941859719432316) +description = Vernon town, IN +station = ('kbak', 0.0062836162341952878) +zone = ('inz072', 0.00031314235841659282) + +[fips1878974] +centroid = (0.68179391801590816, -1.4880064068337429) +description = Versailles town, IN +station = ('kbak', 0.0093995518631809442) +zone = ('inz073', 0.00069380091162787405) + +[fips1879010] +centroid = (0.67615029115982939, -1.4849635474559384) +description = Vevay town, IN +station = ('kcvg', 0.0078115451229159374) +zone = ('kyz089', 0.0013875936082226115) + +[fips1879208] +centroid = (0.67502530428387142, -1.5273571586545676) +description = Vincennes city, IN +station = ('klwv', 0.00199080969091165) +zone = ('inz067', 0.0012888158582113423) + +[fips1879370] +centroid = (0.71213812512461905, -1.4980603759898561) +description = Wabash city, IN +station = ('kgus', 0.0049715796958721224) +zone = ('inz024', 0.00090956078316176722) + +[fips1879478] +centroid = (0.7248623782231135, -1.5012149015332032) +description = Wakarusa town, IN +station = ('kekm', 0.0032354490490596119) +zone = ('inz005', 0.0023227989466619919) + +[fips1879568] +centroid = (0.68859436655350126, -1.4951003150317663) +description = Waldron CDP, IN +station = ('kgez', 0.0029216814463574599) +zone = ('inz056', 0.0021230727564874171) + +[fips1879694] +centroid = (0.72371168264727381, -1.5094027646530843) +description = Walkerton town, IN +station = ('koxi', 0.0033180172508573036) +zone = ('inz004', 0.0036446309921440226) + +[fips1879730] +centroid = (0.69791430258610343, -1.5210194841681408) +description = Wallace town, IN +station = ('kdnv', 0.007027526442963652) +zone = ('inz035', 0.0026440486750111702) + +[fips1879964] +centroid = (0.70969258723001705, -1.5052487588602901) +description = Walton town, IN +station = ('kgus', 0.0012684975150765124) +zone = ('inz022', 0.0021906222389999641) + +[fips1880018] +centroid = (0.72309697768472136, -1.5165611627669688) +description = Wanatah town, IN +station = ('kvpz', 0.0014468043488458683) +zone = ('inz003', 0.002837893852956921) + +[fips1880108] +centroid = (0.71013412062418657, -1.4909414048637741) +description = Warren town, IN +station = ('kmzz', 0.0048330928316089707) +zone = ('inz025', 0.0026084084249167038) + +[fips1880234] +centroid = (0.69434772225965302, -1.5018857362844997) +description = Warren Park town, IN +station = ('kind', 0.0033178668218682957) +zone = ('inz047', 0.0011630094922458663) + +[fips1880306] +centroid = (0.71981750402022393, -1.4983227513363084) +description = Warsaw city, IN +station = ('kasw', 0.00056622743201162329) +zone = ('inz016', 0.0001745448013200378) + +[fips1880504] +centroid = (0.67472887756371269, -1.521435064516333) +description = Washington city, IN +station = ('klwv', 0.0061260477253173382) +zone = ('inz068', 0.001554408794737207) + +[fips1881278] +centroid = (0.7231230703570386, -1.4840286967486926) +description = Waterloo town, IN +station = ('kgwb', 0.0023651557734893458) +zone = ('inz009', 0.00071223506699486969) + +[fips1881458] +centroid = (0.69599004217919458, -1.5192302424321662) +description = Waveland town, IN +station = ('khuf', 0.0083001102783846481) +zone = ('inz044', 0.002814608010382004) + +[fips1882052] +centroid = (0.69966551359767704, -1.5195909845352609) +description = Waynetown town, IN +station = ('klaf', 0.0059433046563645937) +zone = ('inz035', 0.0024159206976509264) + +[fips1882376] +centroid = (0.67314141334256128, -1.5116695459256968) +description = West Baden Springs town, IN +station = ('khnb', 0.0072227207913978415) +zone = ('inz076', 0.0016642813441908925) + +[fips1882556] +centroid = (0.69061657483803207, -1.4803703644634647) +description = West College Corner town, IN +station = ('khao', 0.0053955958366832856) +zone = ('inz059', 0.0017306584941499184) + +[fips1882700] +centroid = (0.69862878802199235, -1.5037167088428895) +description = Westfield town, IN +station = ('ktyq', 0.0012482237431731976) +zone = ('inz039', 0.0015949754892052642) + +[fips1882790] +centroid = (0.68514358882292081, -1.480411222621254) +description = West Harrison town, IN +station = ('kcvg', 0.004157776200811817) +zone = ('inz074', 0.0028191298397205067) + +[fips1882862] +centroid = (0.70607722495097336, -1.5168975051671205) +description = West Lafayette city, IN +station = ('klaf', 0.00084293259753344797) +zone = ('inz029', 0.0011867777530538124) + +[fips1882934] +centroid = (0.70288536681492619, -1.5251763348476157) +description = West Lebanon town, IN +station = ('kdnv', 0.003066417026349611) +zone = ('inz028', 0.0013724572999595289) + +[fips1883204] +centroid = (0.67834832391320599, -1.5224111573538035) +description = Westphalia CDP, IN +station = ('krsv', 0.0062935749876307451) +zone = ('inz068', 0.0035617337897921098) + +[fips1883222] +centroid = (0.70408730525760455, -1.5191910597904588) +description = West Point CDP, IN +station = ('klaf', 0.0018083401120947721) +zone = ('inz029', 0.0021486722345179761) + +[fips1883276] +centroid = (0.68377935221309927, -1.4935660833528008) +description = Westport town, IN +station = ('kbak', 0.0046603605300922137) +zone = ('inz065', 0.002465864419588674) + +[fips1883384] +centroid = (0.68877259957671499, -1.5263009028445531) +description = West Terre Haute town, IN +station = ('khuf', 0.0018207653794437798) +zone = ('inz051', 0.0010010412808832462) + +[fips1883420] +centroid = (0.72497474252035699, -1.5167865720398639) +description = Westville town, IN +station = ('kvpz', 0.0019712385173381876) +zone = ('inz003', 0.0021673810965310556) + +[fips1883528] +centroid = (0.71891944485361026, -1.5193541433557654) +description = Wheatfield town, IN +station = ('kvpz', 0.0045717792030635588) +zone = ('inz011', 0.0030500202807728872) + +[fips1883564] +centroid = (0.67480054078279961, -1.5237815724291768) +description = Wheatland town, IN +station = ('klwv', 0.004388858843158058) +zone = ('inz067', 0.0015881924452233725) + +[fips1883600] +centroid = (0.72449437555033058, -1.5214248717935015) +description = Wheeler CDP, IN +station = ('kvpz', 0.0024751660551681864) +zone = ('inz002', 0.0016167883297365641) + +[fips1883816] +centroid = (0.69028761518061621, -1.5024236816665495) +description = Whiteland town, IN +station = ('kgez', 0.0038441294489161694) +zone = ('inz055', 0.0010898215298860922) + +[fips1884014] +centroid = (0.69748699362533773, -1.5073772751495598) +description = Whitestown town, IN +station = ('ktyq', 0.001945590424781431) +zone = ('inz037', 0.0020535226971950477) + +[fips1884086] +centroid = (0.69716663844113402, -1.4805827535801399) +description = Whitewater town, IN +station = ('kves', 0.0060024934532881824) +zone = ('inz050', 0.0027735286218805279) + +[fips1884122] +centroid = (0.72739657884371689, -1.5267527860411869) +description = Whiting city, IN +station = ('kgyy', 0.0013071276200424253) +zone = ('inz001', 0.0047231840433313481) + +[fips1884302] +centroid = (0.69614178110436309, -1.4941389178665978) +description = Wilkinson town, IN +station = ('kaid', 0.0040278607963556675) +zone = ('inz048', 0.0024692601871445377) + +[fips1884338] +centroid = (0.67750684832094199, -1.5121028937256744) +description = Williams CDP, IN +station = ('kbmg', 0.0057961958545866268) +zone = ('inz070', 0.0021278766281189699) + +[fips1884374] +centroid = (0.69638855320730253, -1.5036053742899049) +description = Williams Creek town, IN +station = ('keye', 0.0023202670418490902) +zone = ('inz047', 0.0020747297104648788) + +[fips1884410] +centroid = (0.70316547470657875, -1.523537400866823) +description = Williamsport town, IN +station = ('klaf', 0.0050729033585541154) +zone = ('inz028', 0.0013045064340049162) + +[fips1884734] +centroid = (0.71651876192078456, -1.5115193254369779) +description = Winamac town, IN +station = ('koxi', 0.0048821820266047354) +zone = ('inz013', 0.0012696209663762201) + +[fips1884752] +centroid = (0.70113541244041411, -1.4831293285851399) +description = Winchester city, IN +station = ('kves', 0.0059806039234343838) +zone = ('inz042', 0.00052338692555580076) + +[fips1884806] +centroid = (0.70445858914938142, -1.5002358241827121) +description = Windfall City town, IN +station = ('kokk', 0.0033172533573819986) +zone = ('inz038', 0.0015438428765895164) + +[fips1884878] +centroid = (0.72277711119270838, -1.5230179210682595) +description = Winfield town, IN +station = ('kgyy', 0.0040999512956781765) +zone = ('inz001', 0.0015614464788967092) + +[fips1884914] +centroid = (0.70114064842817014, -1.5196999803470479) +description = Wingate town, IN +station = ('klaf', 0.004564000777868742) +zone = ('inz035', 0.0024334912119471012) + +[fips1884950] +centroid = (0.71936961762757712, -1.4977138583201652) +description = Winona Lake town, IN +station = ('kasw', 0.0010673358807367032) +zone = ('inz016', 0.00078965528760286156) + +[fips1884968] +centroid = (0.66990405447291446, -1.5221392176030502) +description = Winslow town, IN +station = ('khnb', 0.0042719211118678341) +zone = ('inz082', 0.00039295306106377966) + +[fips1885058] +centroid = (0.71137944795206953, -1.5191712503034489) +description = Wolcott town, IN +station = ('krzl', 0.0038626570343175755) +zone = ('inz020', 0.0023416238086404651) + +[fips1885076] +centroid = (0.72475781554762664, -1.4899299691089507) +description = Wolcottville town, IN +station = ('kirs', 0.0051010848027947479) +zone = ('inz006', 0.0021883964504567223) + +[fips1885184] +centroid = (0.71777763300366315, -1.4810859145501976) +description = Woodburn city, IN +station = ('kgwb', 0.0041068417650116981) +zone = ('inz018', 0.0027831455801105025) + +[fips1885400] +centroid = (0.70019872913745373, -1.4956941633097574) +description = Woodlawn Heights town, IN +station = ('kaid', 0.0010721541505023665) +zone = ('inz040', 0.00081072046784326913) + +[fips1885598] +centroid = (0.68274678052103455, -1.5180759165714823) +description = Worthington town, IN +station = ('kbmg', 0.0049405690795643045) +zone = ('inz061', 0.001453931512765149) + +[fips1885742] +centroid = (0.69520799504796105, -1.5044779516494393) +description = Wynnedale town, IN +station = ('keye', 0.0013371714746626883) +zone = ('inz047', 0.0012149499813506768) + +[fips1885886] +centroid = (0.70978519440012788, -1.5136122893693844) +description = Yeoman town, IN +station = ('kggp', 0.0047057216709241014) +zone = ('inz020', 0.0023618167402103987) + +[fips1886084] +centroid = (0.70152074623266936, -1.4918201083289833) +description = Yorktown town, IN +station = ('kmie', 0.0012108353167445646) +zone = ('inz041', 0.0011932155414235007) + +[fips1886318] +centroid = (0.71410961414108676, -1.4884382361972712) +description = Zanesville town, IN +station = ('kfwa', 0.0018229178963502771) +zone = ('inz026', 0.0033479496182034748) + +[fips1886372] +centroid = (0.69742009515510872, -1.5057156169819061) +description = Zionsville town, IN +station = ('ktyq', 0.0012671639567499525) +zone = ('inz037', 0.0030869857905496591) + +[fips19001] +centroid = (0.72131888860266702, -1.648955033039176) +description = Adair County, IA +station = ('kcsq', 0.0056366633372268108) +zone = ('iaz071', 0.0001012558848163287) + +[fips1900190] +centroid = (0.74266718005440857, -1.624068522861329) +description = Ackley city, IA +station = ('kifa', 0.0031432247657543775) +zone = ('iaz037', 0.0038017304508315133) + +[fips1900191248] +centroid = (0.72197089125133451, -1.6518831195653694) +description = Eureka township, IA +station = ('kadu', 0.0068614267800373094) +zone = ('iaz071', 0.0023728424416949306) + +[fips1900191608] +centroid = (0.72065243462779305, -1.6460456564425641) +description = Grand River township, IA +station = ('kcsq', 0.0048313174131170093) +zone = ('iaz071', 0.0022068616723618646) + +[fips1900191755] +centroid = (0.72072636677490742, -1.648507443352502) +description = Greenfield township, IA +station = ('kcsq', 0.0049799603231184663) +zone = ('iaz071', 0.00067538164170008387) + +[fips1900191776] +centroid = (0.72217722407550533, -1.6476925491247458) +description = Grove township, IA +station = ('kcsq', 0.0063222959574274562) +zone = ('iaz071', 0.0011841021893284581) + +[fips1900191854] +centroid = (0.72219893597140017, -1.6460402284685904) +description = Harrison township, IA +station = ('kcsq', 0.0063649359770613177) +zone = ('iaz071', 0.0022570803151623791) + +[fips1900192088] +centroid = (0.72059719495696739, -1.6518322955775511) +description = Jackson township, IA +station = ('kcsq', 0.005956539254009084) +zone = ('iaz071', 0.002379698142857288) + +[fips1900192199] +centroid = (0.72362261849554443, -1.6478315995062522) +description = Jefferson township, IA +station = ('kpro', 0.0072485304405526469) +zone = ('iaz071', 0.0023863961797141362) + +[fips1900192397] +centroid = (0.72055843119428054, -1.6477375088062773) +description = Lee township, IA +station = ('kcsq', 0.0047145677035188077) +zone = ('iaz071', 0.0011449249322497644) + +[fips1900192514] +centroid = (0.72349751329476142, -1.6456586471342267) +description = Lincoln township, IA +station = ('kpro', 0.0067865778242135856) +zone = ('iaz071', 0.003200475606826317) + +[fips1900193198] +centroid = (0.71908390722902571, -1.6478020510820159) +description = Orient township, IA +station = ('kcsq', 0.0032631953308024644) +zone = ('iaz071', 0.0024006335903163059) + +[fips1900193519] +centroid = (0.72186124966772425, -1.6497485120770101) +description = Prussia township, IA +station = ('kcsq', 0.0063304631320921347) +zone = ('iaz071', 0.00085438732386031277) + +[fips1900193570] +centroid = (0.71901388461943572, -1.6498619235718046) +description = Richland township, IA +station = ('kcsq', 0.0038036689040177396) +zone = ('iaz071', 0.0024679789908589912) + +[fips1900194032] +centroid = (0.72058967258789131, -1.6499701339854285) +description = Summerset township, IA +station = ('kcsq', 0.0052144974252250342) +zone = ('iaz071', 0.0011497610627767586) + +[fips1900194035] +centroid = (0.72365618117706032, -1.6518023457275868) +description = Summit township, IA +station = ('kadu', 0.0055331840316918453) +zone = ('iaz071', 0.0032029297873760248) + +[fips1900194161] +centroid = (0.71896077425029747, -1.6459508850641806) +description = Union township, IA +station = ('kcsq', 0.0031862652916457941) +zone = ('iaz082', 0.0030109580666318704) + +[fips1900194389] +centroid = (0.72353364161027778, -1.6497973638427734) +description = Walnut township, IA +station = ('kadu', 0.0066954014207423456) +zone = ('iaz071', 0.0022946253344176886) + +[fips1900194443] +centroid = (0.71903517763631009, -1.6518637813172572) +description = Washington township, IA +station = ('kcsq', 0.0048334002569224337) +zone = ('iaz081', 0.0030296255740121969) + +[fips1900235] +centroid = (0.72197816927431535, -1.6314427309372228) +description = Ackworth city, IA +station = ('kdsm', 0.0038470421491394314) +zone = ('iaz073', 0.0012648510725762042) + +[fips19003] +centroid = (0.71596296182048702, -1.6527728011515734) +description = Adams County, IA +station = ('kcsq', 0.0043495720142426057) +zone = ('iaz081', 0.0001316878906547233) + +[fips1900370] +centroid = (0.72431425757152468, -1.6518311436602451) +description = Adair city, IA +station = ('kadu', 0.0050401055294375255) +zone = ('iaz058', 0.0037023356306794893) + +[fips1900390471] +centroid = (0.71749263819010489, -1.6519413088426307) +description = Carl township, IA +station = ('kcsq', 0.0040551075890916137) +zone = ('iaz081', 0.0015478792768226508) + +[fips1900390780] +centroid = (0.71749738548567032, -1.6498348709683988) +description = Colony township, IA +station = ('kcsq', 0.002677479643375075) +zone = ('iaz081', 0.0026491818743764385) + +[fips1900391020] +centroid = (0.71598104343153768, -1.6557378537513241) +description = Douglas township, IA +station = ('kicl', 0.0057757499702539719) +zone = ('iaz081', 0.002209415172022877) + +[fips1900391626] +centroid = (0.71446089655963563, -1.6499859466684514) +description = Grant township, IA +station = ('kcsq', 0.002655843238024873) +zone = ('iaz081', 0.0026854941272947625) + +[fips1900392193] +centroid = (0.71452955781240912, -1.6538900911255299) +description = Jasper township, IA +station = ('kicl', 0.005298308811175584) +zone = ('iaz081', 0.0017606361463117645) + +[fips1900392517] +centroid = (0.71759789899729265, -1.6558142119060988) +description = Lincoln township, IA +station = ('kaio', 0.005494602683468657) +zone = ('iaz081', 0.0027184656950129636) + +[fips1900392916] +centroid = (0.71440536018283718, -1.6520014528886544) +description = Mercer township, IA +station = ('kcsq', 0.0040459702097890068) +zone = ('iaz081', 0.0017936149578925728) + +[fips1900393120] +centroid = (0.71445880216453328, -1.655645508380601) +description = Nodaway township, IA +station = ('kicl', 0.0044423106415666979) +zone = ('iaz081', 0.0026902328992858509) + +[fips1900393504] +centroid = (0.71601694485425116, -1.6518862437047301) +description = Prescott township, IA +station = ('kcsq', 0.0036824188700828025) +zone = ('iaz081', 0.00070295154102651086) + +[fips1900393531] +centroid = (0.71618334454513632, -1.6539197268162289) +description = Quincy township, IA +station = ('kcsq', 0.0052226008605983382) +zone = ('iaz081', 0.00084005332203212818) + +[fips1900394164] +centroid = (0.71605312552964506, -1.6498197564170765) +description = Union township, IA +station = ('kcsq', 0.0021279706374548253) +zone = ('iaz081', 0.00225827086647995) + +[fips1900394446] +centroid = (0.71752450790224631, -1.6537894728941525) +description = Washington township, IA +station = ('kcsq', 0.0053715428256441338) +zone = ('iaz081', 0.0016114189230975891) + +[fips19005] +centroid = (0.75529060548201532, -1.5949298844801407) +description = Allamakee County, IA +station = ('kpdc', 0.0055042416015780634) +zone = ('iaz011', 0.00017332967054139447) + +[fips1900505] +centroid = (0.72623989678854262, -1.6410271541646719) +description = Adel city, IA +station = ('kpro', 0.0042215183383557961) +zone = ('iaz059', 0.0013152440629158953) + +[fips1900590582] +centroid = (0.75569070475974254, -1.5936559512058175) +description = Center township, IA +station = ('kpdc', 0.0053614016626401459) +zone = ('iaz011', 0.00089999218449625992) + +[fips1900591290] +centroid = (0.75239365562967764, -1.5919502932877212) +description = Fairview township, IA +station = ('kpdc', 0.0018833500383887178) +zone = ('iaz011', 0.0037185455045464417) + +[fips1900591383] +centroid = (0.75266624115225422, -1.5957472221688496) +description = Franklin township, IA +station = ('kpdc', 0.0042798043553200528) +zone = ('iaz011', 0.0028632206942147253) + +[fips1900591488] +centroid = (0.75721065964542678, -1.5957574497982663) +description = French Creek township, IA +station = ('kdeh', 0.0042378293187324478) +zone = ('iaz011', 0.0018773199369378256) + +[fips1900591824] +centroid = (0.75709953453195244, -1.5979549240462823) +description = Hanover township, IA +station = ('kdeh', 0.0027981192972281891) +zone = ('iaz011', 0.0027954193408687962) + +[fips1900592049] +centroid = (0.75834725296091066, -1.5933512865315895) +description = Iowa township, IA +station = ('ky51', 0.0054717738144499624) +zone = ('iaz011', 0.0030916855599639288) + +[fips1900592202] +centroid = (0.7541794241604407, -1.5957406946374473) +description = Jefferson township, IA +station = ('kpdc', 0.0050961033204547116) +zone = ('iaz011', 0.0014302205175682815) + +[fips1900592331] +centroid = (0.75554842551911994, -1.5909432034027353) +description = Lafayette township, IA +station = ('kpdc', 0.004689022886418326) +zone = ('wiz054', 0.0029707406471252218) + +[fips1900592382] +centroid = (0.75701794038942172, -1.5928146326931862) +description = Lansing township, IA +station = ('ky51', 0.0058403730117448085) +zone = ('iaz011', 0.0021532860737237215) + +[fips1900592655] +centroid = (0.75272268510026363, -1.5937823654035395) +description = Linton township, IA +station = ('kpdc', 0.0030699746022343332) +zone = ('iaz011', 0.002839320720824056) + +[fips1900592727] +centroid = (0.75418415400271355, -1.5977841086723896) +description = Ludlow township, IA +station = ('kdeh', 0.0026876343512248764) +zone = ('iaz011', 0.0024865579578393325) + +[fips1900592799] +centroid = (0.75569817476894108, -1.5957318109115546) +description = Makee township, IA +station = ('kdeh', 0.0038788935843731089) +zone = ('iaz011', 0.00068776415400757915) + +[fips1900593255] +centroid = (0.75417205887099725, -1.5936669991399828) +description = Paint Creek township, IA +station = ('kpdc', 0.0040581957508537955) +zone = ('iaz011', 0.0015437360265953503) + +[fips1900593468] +centroid = (0.75267090118135693, -1.5977942490353438) +description = Post township, IA +station = ('kdeh', 0.0036437614817323035) +zone = ('iaz011', 0.0035146721472741936) + +[fips1900594089] +centroid = (0.75416987720943229, -1.5913667773589018) +description = Taylor township, IA +station = ('kpdc', 0.0033660285185058932) +zone = ('wiz054', 0.0031886184974499816) + +[fips1900594290] +centroid = (0.75871858921256496, -1.595688456932935) +description = Union City township, IA +station = ('kdeh', 0.0050941394283385653) +zone = ('iaz011', 0.0033215999269673707) + +[fips1900594293] +centroid = (0.7556984540216215, -1.5977787679648785) +description = Union Prairie township, IA +station = ('kdeh', 0.0023944784123347469) +zone = ('iaz011', 0.0021467364885494919) + +[fips1900594596] +centroid = (0.75859866763966044, -1.5978644636311514) +description = Waterloo township, IA +station = ('kdeh', 0.00391860286084435) +zone = ('mnz096', 0.0036850140077223734) + +[fips1900595] +centroid = (0.7160670183504908, -1.6440193989941687) +description = Afton city, IA +station = ('kcsq', 0.0022636343096949581) +zone = ('iaz082', 0.00061918913021362148) + +[fips1900640] +centroid = (0.71554092375406231, -1.6110650694423929) +description = Agency city, IA +station = ('kotm', 0.0025948762395174517) +zone = ('iaz086', 0.0014656854856858574) + +[fips19007] +centroid = (0.7111288710313608, -1.6208932977130532) +description = Appanoose County, IA +station = ('ktvk', 0.0011951574086535007) +zone = ('iaz096', 3.3809746360194047e-05) + +[fips1900730] +centroid = (0.72064803639807795, -1.5979271907644681) +description = Ainsworth city, IA +station = ('kawg', 0.0014759622983653862) +zone = ('iaz077', 0.0022847985665452068) + +[fips1900775] +centroid = (0.74746919169188319, -1.6852393809905868) +description = Akron city, IA +station = ('klrj', 0.0047319051463122494) +zone = ('sdz071', 0.0012708596353676613) + +[fips1900790177] +centroid = (0.71085474961904249, -1.6224905532313083) +description = Bellair township, IA +station = ('ktvk', 0.0011834775003046543) +zone = ('iaz096', 0.0012567921982437995) + +[fips1900790435] +centroid = (0.70913764234105303, -1.6199591102309234) +description = Caldwell township, IA +station = ('ktvk', 0.0013987761410843452) +zone = ('iaz096', 0.0020818292245030953) + +[fips1900790640] +centroid = (0.71084434745670066, -1.6209115538570291) +description = Centerville city, IA +station = ('ktvk', 0.00092536935255311257) +zone = ('iaz096', 0.00026107725563400178) + +[fips1900790642] +centroid = (0.7134355330773815, -1.6218741029395041) +description = Chariton township, IA +station = ('ktvk', 0.0034534540084890106) +zone = ('iaz096', 0.0024545039508346907) + +[fips1900791023] +centroid = (0.71226890264547082, -1.6197449757849962) +description = Douglas township, IA +station = ('ktvk', 0.0025963709350374808) +zone = ('iaz096', 0.0014415921454939108) + +[fips1900791386] +centroid = (0.70914401279282269, -1.6238451032637813) +description = Franklin township, IA +station = ('ktvk', 0.0020354184297041999) +zone = ('moz007', 0.0026719643324514563) + +[fips1900792016] +centroid = (0.71309172066803117, -1.6237518154152621) +description = Independence township, IA +station = ('ktvk', 0.003564034580102491) +zone = ('iaz096', 0.0029549875306959196) + +[fips1900792271] +centroid = (0.71155357945154107, -1.6238602003618108) +description = Johns township, IA +station = ('ktvk', 0.0024206195243924493) +zone = ('iaz096', 0.002313467711115803) + +[fips1900792520] +centroid = (0.71016251713111656, -1.6239910302425404) +description = Lincoln township, IA +station = ('ktvk', 0.001963297399007771) +zone = ('iaz096', 0.0025494882756808067) + +[fips1900793357] +centroid = (0.70920752532430276, -1.6219723475230987) +description = Pleasant township, IA +station = ('ktvk', 0.00089963828939310065) +zone = ('iaz096', 0.002073241155913503) + +[fips1900793822] +centroid = (0.7108348528655698, -1.6195924514616642) +description = Sharon township, IA +station = ('ktvk', 0.0016116512246111964) +zone = ('iaz096', 0.001000533554161547) + +[fips1900794092] +centroid = (0.7132724844186602, -1.6196982533209201) +description = Taylor township, IA +station = ('ktvk', 0.0035201769618027259) +zone = ('iaz096', 0.0023422461278745539) + +[fips1900794155] +centroid = (0.71221066100833197, -1.6180558461349159) +description = Udell township, IA +station = ('ktvk', 0.0033687639159238779) +zone = ('iaz096', 0.002398143153357696) + +[fips1900794167] +centroid = (0.71309362307691582, -1.6177940991069943) +description = Union township, IA +station = ('ktvk', 0.0041320617711640755) +zone = ('iaz096', 0.0030602549081733938) + +[fips1900794329] +centroid = (0.71155200865521417, -1.6203354381242383) +description = Vermillion township, IA +station = ('ktvk', 0.0017530502703552052) +zone = ('iaz096', 0.00060189942418505387) + +[fips1900794392] +centroid = (0.71211693682749988, -1.6219665181233971) +description = Walnut township, IA +station = ('ktvk', 0.002158451592246256) +zone = ('iaz096', 0.0013131987931794544) + +[fips1900794449] +centroid = (0.71062722849775251, -1.6179401308055088) +description = Washington township, IA +station = ('ktvk', 0.0027051060458835059) +zone = ('iaz096', 0.0022666382543479377) + +[fips1900794638] +centroid = (0.70915064504398029, -1.617907912027517) +description = Wells township, IA +station = ('ktvk', 0.0027898949403791528) +zone = ('iaz096', 0.0029728997832553696) + +[fips1900865] +centroid = (0.74667969200474349, -1.6571731950748714) +description = Albert City city, IA +station = ('kslb', 0.0048319111917157695) +zone = ('iaz022', 0.0027139858870637132) + +[fips19009] +centroid = (0.7274388856247852, -1.6563927187399647) +description = Audubon County, IA +station = ('kadu', 0.0004357059985519173) +zone = ('iaz057', 9.659903905902022e-05) + +[fips1900910] +centroid = (0.71605823934435342, -1.6197326886670622) +description = Albia city, IA +station = ('kotm', 0.0048270631024308281) +zone = ('iaz085', 0.00085902180102888869) + +[fips1900955] +centroid = (0.73500223503171758, -1.6229596977342444) +description = Albion city, IA +station = ('kmiw', 0.00093593631122261957) +zone = ('iaz049', 0.0013454472304508117) + +[fips1900990093] +centroid = (0.72511237918516924, -1.6540174478010481) +description = Audubon township, IA +station = ('kadu', 0.0033579953260914654) +zone = ('iaz057', 0.0030140865603017876) + +[fips1900990453] +centroid = (0.72989295817942934, -1.6566353020526994) +description = Cameron township, IA +station = ('kadu', 0.0020714423179128316) +zone = ('iaz057', 0.0023649683805672681) + +[fips1900991026] +centroid = (0.72836949518194849, -1.6586723456358721) +description = Douglas township, IA +station = ('kadu', 0.001590900341677291) +zone = ('iaz057', 0.0018786882581499516) + +[fips1900991260] +centroid = (0.72526050527878605, -1.655541661290107) +description = Exira township, IA +station = ('kadu', 0.0026968013717968923) +zone = ('iaz057', 0.0023656816175203748) + +[fips1900991728] +centroid = (0.72672216616745366, -1.654774868336536) +description = Greeley township, IA +station = ('kadu', 0.0017932970295882183) +zone = ('iaz057', 0.0014718908735895937) + +[fips1900991815] +centroid = (0.72681135249223061, -1.6567249247097893) +description = Hamlin township, IA +station = ('kadu', 0.0010111296485571216) +zone = ('iaz057', 0.00075753566229550418) + +[fips1900992418] +centroid = (0.72836794183891418, -1.6566349878934341) +description = Leroy township, IA +station = ('kadu', 0.00054692601388974568) +zone = ('iaz057', 0.00084990499865986375) + +[fips1900992523] +centroid = (0.72989580306611013, -1.6586682092055449) +description = Lincoln township, IA +station = ('kadu', 0.0025535420217174935) +zone = ('iaz057', 0.002897720231094678) + +[fips1900992910] +centroid = (0.72837302074703758, -1.654609079510889) +description = Melville township, IA +station = ('kadu', 0.0016351343965782213) +zone = ('iaz057', 0.001590537491704694) + +[fips1900993153] +centroid = (0.72519322283612164, -1.6577216124324332) +description = Oakfield township, IA +station = ('kadu', 0.0027432003866700049) +zone = ('iaz057', 0.002534909613004259) + +[fips1900993825] +centroid = (0.72684580529166498, -1.6586655213984967) +description = Sharon township, IA +station = ('kadu', 0.0017807427135177686) +zone = ('iaz057', 0.0018139080541586133) + +[fips1900994362] +centroid = (0.72989259166028642, -1.6546088526180864) +description = Viola township, IA +station = ('kadu', 0.0025798523727439729) +zone = ('iaz057', 0.0027181349794533276) + +[fips1901000] +centroid = (0.73563662730823243, -1.5990982543326788) +description = Alburnett city, IA +station = ('kcid', 0.0047957654287010768) +zone = ('iaz052', 0.0012560846726421251) + +[fips1901045] +centroid = (0.74193883670425875, -1.6297784024158135) +description = Alden city, IA +station = ('kifa', 0.0015715520101669226) +zone = ('iaz037', 0.0028380406863412269) + +[fips1901090] +centroid = (0.74707806340651117, -1.6315101704595196) +description = Alexander city, IA +station = ('kcav', 0.0038100249497856125) +zone = ('iaz025', 0.003514869594086169) + +[fips19011] +centroid = (0.73465353570046166, -1.6067087450827076) +description = Benton County, IA +station = ('kvti', 0.002238365740337566) +zone = ('iaz051', 0.0002410806841878938) + +[fips1901135] +centroid = (0.75178275548489459, -1.6446224626106103) +description = Algona city, IA +station = ('kaxa', 0.00049601580560618857) +zone = ('iaz005', 0.0022919529446293794) + +[fips1901180] +centroid = (0.72982417475360828, -1.6337932880139312) +description = Alleman city, IA +station = ('kikv', 0.0022686754893175946) +zone = ('iaz060', 0.0023228991508197623) + +[fips1901190178] +centroid = (0.73120212965135034, -1.6105085013972245) +description = Belle Plaine city, IA +station = ('kvti', 0.0065111549827994702) +zone = ('iaz051', 0.0042256610771279259) + +[fips1901190201] +centroid = (0.73565647170182757, -1.6036994309331265) +description = Benton township, IA +station = ('kvti', 0.0021773861795105227) +zone = ('iaz051', 0.0026361736977022804) + +[fips1901190237] +centroid = (0.73443189633875083, -1.6078798959173806) +description = Big Grove township, IA +station = ('kvti', 0.0027391949211703535) +zone = ('iaz051', 0.0007647137742666151) + +[fips1901190363] +centroid = (0.73739885134738614, -1.6097028748677962) +description = Bruce township, IA +station = ('kvti', 0.0026836925998304159) +zone = ('iaz051', 0.003639988085729563) + +[fips1901190465] +centroid = (0.73430656424516516, -1.6040085112903621) +description = Canton township, IA +station = ('kvti', 0.0030030402452107243) +zone = ('iaz051', 0.0021127853521210453) + +[fips1901190522] +centroid = (0.73754601750991422, -1.607666546869617) +description = Cedar township, IA +station = ('kvti', 0.0013166449274082674) +zone = ('iaz051', 0.0031681230546755086) + +[fips1901191131] +centroid = (0.73442821369402911, -1.6058577923526052) +description = Eden township, IA +station = ('kvti', 0.0024354629996566437) +zone = ('iaz051', 0.00073617015753002827) + +[fips1901191161] +centroid = (0.73290811918200471, -1.6058504619697469) +description = Eldorado township, IA +station = ('kvti', 0.0039520627288071606) +zone = ('iaz051', 0.0016988217221481795) + +[fips1901191350] +centroid = (0.73138580810183018, -1.6037903974937404) +description = Florence township, IA +station = ('kcid', 0.0022897724805334965) +zone = ('iaz051', 0.0038046155513089069) + +[fips1901191455] +centroid = (0.73291190654648153, -1.6038266828888892) +description = Fremont township, IA +station = ('kcid', 0.0029763748846980587) +zone = ('iaz051', 0.0027137719536429626) + +[fips1901191857] +centroid = (0.73735554972864403, -1.6056287527948658) +description = Harrison township, IA +station = ('kvti', 0.00063474930047326648) +zone = ('iaz051', 0.0030562942305580594) + +[fips1901191974] +centroid = (0.73443186143216588, -1.609907863788443) +description = Homer township, IA +station = ('kvti', 0.0036894730517284253) +zone = ('iaz051', 0.002269883391463287) + +[fips1901192052] +centroid = (0.73146494133011564, -1.6097210088387246) +description = Iowa township, IA +station = ('kvti', 0.0060043995487104405) +zone = ('iaz051', 0.0036582892315131965) + +[fips1901192091] +centroid = (0.73606540234556983, -1.6080403091289315) +description = Jackson township, IA +station = ('kvti', 0.0016046478051286175) +zone = ('iaz051', 0.0018530714320627048) + +[fips1901192289] +centroid = (0.73291581608400602, -1.6098915798665219) +description = Kane township, IA +station = ('kvti', 0.0048163790807146381) +zone = ('iaz051', 0.0027233174839727697) + +[fips1901192421] +centroid = (0.73132863111553481, -1.6079833241288539) +description = Leroy township, IA +station = ('kvti', 0.0056896547813710474) +zone = ('iaz051', 0.0032198788654119645) + +[fips1901192964] +centroid = (0.736015695368473, -1.6097450420225243) +description = Monroe township, IA +station = ('kvti', 0.0027895145897958011) +zone = ('iaz051', 0.0026657519173257874) + +[fips1901193438] +centroid = (0.73726931301030307, -1.6037510926789855) +description = Polk township, IA +station = ('kvti', 0.0018269536499702374) +zone = ('iaz051', 0.0036470843585858347) + +[fips1901193732] +centroid = (0.73139289413859332, -1.6058227810478101) +description = St. Clair township, IA +station = ('kcid', 0.0037904383177400835) +zone = ('iaz051', 0.0031376249441845087) + +[fips1901193838] +centroid = (0.7346604122977145, -1.6034511578470303) +description = Shellsburg city, IA +station = ('kvti', 0.0029706748634494794) +zone = ('iaz051', 0.0025320304567845392) + +[fips1901194095] +centroid = (0.73606547215873996, -1.6057410647322317) +description = Taylor township, IA +station = ('kvti', 0.00084552120378505763) +zone = ('iaz051', 0.0018248715546081765) + +[fips1901194170] +centroid = (0.73291267449135244, -1.6078720419357466) +description = Union township, IA +station = ('kvti', 0.0041421378885213274) +zone = ('iaz051', 0.0017023789568479889) + +[fips1901194360] +centroid = (0.73590106214320217, -1.6061601182856355) +description = Vinton city, IA +station = ('kvti', 0.00095271890741824782) +zone = ('iaz051', 0.0015514733022059183) + +[fips1901270] +centroid = (0.71049262870583874, -1.6295902035625709) +description = Allerton city, IA +station = ('kcnc', 0.00567420085904105) +zone = ('iaz095', 0.00077165489787090662) + +[fips19013] +centroid = (0.74129173843078933, -1.6110446490901447) +description = Black Hawk County, IA +station = ('kalo', 0.0018088826894986374) +zone = ('iaz039', 5.7924940280303397e-05) + +[fips1901315] +centroid = (0.74615874612960831, -1.6195915613437457) +description = Allison city, IA +station = ('kccy', 0.0059541321952528235) +zone = ('iaz027', 0.00035878366790296774) + +[fips1901390126] +centroid = (0.74184593282817513, -1.6079889440890454) +description = Barclay township, IA +station = ('kiib', 0.0027170838478390168) +zone = ('iaz039', 0.0023629690615955077) + +[fips1901390198] +centroid = (0.74337566155767065, -1.6103845830203329) +description = Bennington township, IA +station = ('kalo', 0.0018473867467295811) +zone = ('iaz039', 0.0021945455734297568) + +[fips1901390234] +centroid = (0.73863424775182518, -1.6094078618643317) +description = Big Creek township, IA +station = ('kvti', 0.0029947349774430477) +zone = ('iaz039', 0.0028886341592734921) + +[fips1901390246] +centroid = (0.74031280070663819, -1.6142154934619977) +description = Black Hawk township, IA +station = ('kalo', 0.0025845535308600637) +zone = ('iaz039', 0.0024888608946462953) + +[fips1901390525] +centroid = (0.73983487719756458, -1.6101986530951178) +description = Cedar township, IA +station = ('kalo', 0.0033491421640839364) +zone = ('iaz039', 0.0015534507746239449) + +[fips1901390575] +centroid = (0.74210356087906204, -1.6136032494136907) +description = Cedar Falls city, IA +station = ('kalo', 0.00086243251579384568) +zone = ('iaz039', 0.0020449900327225668) + +[fips1901390576] +centroid = (0.74193838291865322, -1.6148445450310014) +description = Cedar Falls township, IA +station = ('kalo', 0.0017387716004868491) +zone = ('iaz039', 0.0028565215754882598) + +[fips1901391092] +centroid = (0.73911517322721221, -1.6120601863687098) +description = Eagle township, IA +station = ('kalo', 0.0035523930229335644) +zone = ('iaz039', 0.0022458911141204786) + +[fips1901391128] +centroid = (0.74245102102654903, -1.6103818603066997) +description = East Waterloo township, IA +station = ('kalo', 0.0017065011977143872) +zone = ('iaz039', 0.0013151260339092918) + +[fips1901391252] +centroid = (0.7411660747246458, -1.610405230265384) +description = Evansdale city, IA +station = ('kalo', 0.0022333651281615887) +zone = ('iaz039', 0.00050895668203630067) + +[fips1901391374] +centroid = (0.74048115516628565, -1.6078451987718509) +description = Fox township, IA +station = ('kiib', 0.0024741221536326973) +zone = ('iaz039', 0.0025106724874306889) + +[fips1901392427] +centroid = (0.74343367630200696, -1.6080915869023551) +description = Lester township, IA +station = ('kolz', 0.0025614375210557066) +zone = ('iaz039', 0.0031099288654843939) + +[fips1901392526] +centroid = (0.73910171673867942, -1.6139137260343279) +description = Lincoln township, IA +station = ('kalo', 0.0036504108059069416) +zone = ('iaz039', 0.0029901026413441134) + +[fips1901393039] +centroid = (0.74357935893467086, -1.6122482805021974) +description = Mount Vernon township, IA +station = ('kalo', 0.0009949719234272048) +zone = ('iaz039', 0.002487985471725076) + +[fips1901393186] +centroid = (0.74013666207852691, -1.6121093697470312) +description = Orange township, IA +station = ('kalo', 0.0025366179257682929) +zone = ('iaz039', 0.0013390910161450991) + +[fips1901393477] +centroid = (0.74111067797418739, -1.6091536895653638) +description = Poyner township, IA +station = ('kalo', 0.003017557985522511) +zone = ('iaz039', 0.0014324719055712775) + +[fips1901393966] +centroid = (0.73909047681829654, -1.6076983816751733) +description = Spring Creek township, IA +station = ('kvti', 0.0025117164381112779) +zone = ('iaz039', 0.0033007053261382693) + +[fips1901394173] +centroid = (0.74331068294961888, -1.6149866671919915) +description = Union township, IA +station = ('kalo', 0.0018243587118424878) +zone = ('iaz039', 0.0035401348690200507) + +[fips1901394452] +centroid = (0.74362211950134471, -1.6138249760418641) +description = Washington township, IA +station = ('kalo', 0.001294169765399008) +zone = ('iaz039', 0.0031191390840672496) + +[fips1901394597] +centroid = (0.74163101298408463, -1.6118455457772995) +description = Waterloo city, IA +station = ('kalo', 0.0011812276317647423) +zone = ('iaz039', 0.00068061940827634625) + +[fips1901495] +centroid = (0.74476148789033914, -1.663377823112419) +description = Alta city, IA +station = ('kslb', 0.0015495909539881777) +zone = ('iaz022', 0.0022589242398919148) + +[fips19015] +centroid = (0.73371200038218076, -1.6395472545853209) +description = Boone County, IA +station = ('kbnw', 0.0011723479074495424) +zone = ('iaz047', 0.00010132866641718476) + +[fips1901540] +centroid = (0.75392588018000339, -1.6129814060544976) +description = Alta Vista city, IA +station = ('kccy', 0.0034091504397356582) +zone = ('iaz019', 0.0027007245380703503) + +[fips1901585] +centroid = (0.75027341220106236, -1.6756753257555084) +description = Alton city, IA +station = ('korc', 0.00073826981009873836) +zone = ('iaz012', 0.0027186155058873678) + +[fips1901590057] +centroid = (0.73450359446442282, -1.6425351535449801) +description = Amaqua township, IA +station = ('kpro', 0.0044790015191076994) +zone = ('iaz047', 0.0024566350193686308) + +[fips1901590150] +centroid = (0.73290578044080701, -1.6424634030594307) +description = Beaver township, IA +station = ('kpro', 0.0029193499908130526) +zone = ('iaz047', 0.002389675454672236) + +[fips1901590489] +centroid = (0.73134152909870709, -1.6387277352350471) +description = Cass township, IA +station = ('kbnw', 0.0026270698201799774) +zone = ('iaz047', 0.0023914575147455327) + +[fips1901590756] +centroid = (0.73290864278078027, -1.6363676835672079) +description = Colfax township, IA +station = ('kbnw', 0.0015683910260747575) +zone = ('iaz047', 0.0023938709647178232) + +[fips1901590969] +centroid = (0.73439463355922086, -1.6385393269422943) +description = Des Moines township, IA +station = ('kbnw', 0.00063194719268691016) +zone = ('iaz047', 0.00097038808487958609) + +[fips1901591002] +centroid = (0.73588172389508999, -1.6388351427972148) +description = Dodge township, IA +station = ('kbnw', 0.0020677751359517455) +zone = ('iaz047', 0.0022468329570309786) + +[fips1901591029] +centroid = (0.7313313887357531, -1.6379928992600801) +description = Douglas township, IA +station = ('kbnw', 0.002579561936697831) +zone = ('iaz047', 0.0025742553979448556) + +[fips1901591503] +centroid = (0.73136941946015399, -1.6363476646406874) +description = Garden township, IA +station = ('kamw', 0.00227197443095702) +zone = ('iaz047', 0.0032465805667974959) + +[fips1901591629] +centroid = (0.73594265333927711, -1.6424624431283421) +description = Grant township, IA +station = ('kbnw', 0.0038896816218382132) +zone = ('iaz047', 0.0031986355456233603) + +[fips1901591860] +centroid = (0.73588428952909046, -1.6365353224418617) +description = Harrison township, IA +station = ('kbnw', 0.0022497108865053538) +zone = ('iaz047', 0.0030741430021138418) + +[fips1901592094] +centroid = (0.73446697745671585, -1.6365345370436983) +description = Jackson township, IA +station = ('kbnw', 0.0012161640877802794) +zone = ('iaz047', 0.0022827340994925572) + +[fips1901592832] +centroid = (0.73280088615276218, -1.6402498892355888) +description = Marcy township, IA +station = ('kbnw', 0.0020118021633108072) +zone = ('iaz047', 0.0010717623758915876) + +[fips1901593291] +centroid = (0.73141097574964398, -1.6404268656217411) +description = Peoples township, IA +station = ('kpro', 0.0025891205684916525) +zone = ('iaz047', 0.0023867327921408173) + +[fips1901593330] +centroid = (0.73607224403623772, -1.6408733208444013) +description = Pilot Mound township, IA +station = ('kbnw', 0.0030399886268581387) +zone = ('iaz047', 0.0026269253641867068) + +[fips1901594176] +centroid = (0.7314096842059975, -1.6424624431283421) +description = Union township, IA +station = ('kpro', 0.001510308588143686) +zone = ('iaz047', 0.0032031821715787826) + +[fips1901594782] +centroid = (0.73301435737357357, -1.6382352033201342) +description = Worth township, IA +station = ('kbnw', 0.00091468736950878541) +zone = ('iaz047', 0.0011013333528618087) + +[fips1901594797] +centroid = (0.73462124710929966, -1.64050249073823) +description = Yell township, IA +station = ('kbnw', 0.0019947127104494988) +zone = ('iaz047', 0.0012402722185643439) + +[fips1901630] +centroid = (0.72687488247700327, -1.6314786672665214) +description = Altoona city, IA +station = ('kikv', 0.0013831095673470235) +zone = ('iaz060', 0.0014281669708747318) + +[fips1901675] +centroid = (0.75645692175466062, -1.6807973435113361) +description = Alvord city, IA +station = ('klyv', 0.0049981472364772125) +zone = ('iaz001', 0.0013520555495002847) + +[fips19017] +centroid = (0.7466673874335169, -1.6114203661182214) +description = Bremer County, IA +station = ('kalo', 0.0041355648348392173) +zone = ('iaz028', 0.00016164613195608735) + +[fips1901720] +centroid = (0.72959051007335118, -1.6035043380293386) +description = Amana CDP, IA +station = ('kcid', 0.0024857614475508822) +zone = ('iaz063', 0.0032145600573292993) + +[fips1901790900] +centroid = (0.74659408360493318, -1.6081024428503026) +description = Dayton township, IA +station = ('kolz', 0.0026773529944354424) +zone = ('iaz028', 0.0023154311919575026) + +[fips1901791032] +centroid = (0.74817714959636961, -1.6121490585342215) +description = Douglas township, IA +station = ('kccy', 0.0046982927024419785) +zone = ('iaz028', 0.0017452279835188105) + +[fips1901791389] +centroid = (0.74513212601029266, -1.6079870416801607) +description = Franklin township, IA +station = ('kolz', 0.0020179245831457495) +zone = ('iaz028', 0.0027935943948815497) + +[fips1901791440] +centroid = (0.74799375039856997, -1.6104965458918481) +description = Frederika township, IA +station = ('kolz', 0.0049230424233228246) +zone = ('iaz028', 0.0015389283709839607) + +[fips1901791458] +centroid = (0.74666173256674051, -1.6103824362653529) +description = Fremont township, IA +station = ('kalo', 0.0043655969016058232) +zone = ('iaz028', 0.00064971204450799873) + +[fips1901792097] +centroid = (0.74462547438173121, -1.6139859303054829) +description = Jackson township, IA +station = ('kalo', 0.0022067075063194395) +zone = ('iaz028', 0.0027858312281292845) + +[fips1901792205] +centroid = (0.74491992887983516, -1.6120841148327547) +description = Jefferson township, IA +station = ('kalo', 0.0023246676230568061) +zone = ('iaz028', 0.0017485053083638143) + +[fips1901792334] +centroid = (0.74674486259901296, -1.6144726502739866) +description = Lafayette township, IA +station = ('kalo', 0.0043126447916062172) +zone = ('iaz028', 0.0023677891351380296) + +[fips1901792424] +centroid = (0.748163501121619, -1.6096282096823959) +description = Le Roy township, IA +station = ('kolz', 0.0045617214868603432) +zone = ('iaz028', 0.0019999491760479119) + +[fips1901792898] +centroid = (0.74504527842671342, -1.6101631530981324) +description = Maxfield township, IA +station = ('kalo', 0.0030395162642420817) +zone = ('iaz028', 0.001713902803919531) + +[fips1901793441] +centroid = (0.74819854733299906, -1.6143127606612113) +description = Polk township, IA +station = ('kccy', 0.003798682360562862) +zone = ('iaz028', 0.0027770386804217805) + +[fips1901794045] +centroid = (0.74786258890528268, -1.6074200889259429) +description = Sumner city, IA +station = ('kolz', 0.0033428437464004665) +zone = ('iaz028', 0.0031014743741658375) + +[fips1901794059] +centroid = (0.74821675111709729, -1.6080076889252117) +description = Sumner No. 2 township, IA +station = ('kolz', 0.0038650348264851896) +zone = ('iaz028', 0.0029026415480453314) + +[fips1901794425] +centroid = (0.74655092161253134, -1.6122788935772774) +description = Warren township, IA +station = ('kalo', 0.0039246600018005154) +zone = ('iaz028', 0.00075048127923706175) + +[fips1901794455] +centroid = (0.74538568744402234, -1.6145788535589705) +description = Washington township, IA +station = ('kalo', 0.0030814267811839287) +zone = ('iaz028', 0.002707591615051293) + +[fips1901794607] +centroid = (0.74569639095746243, -1.6139008629577407) +description = Waverly city, IA +station = ('kalo', 0.0031870488488883208) +zone = ('iaz028', 0.0021249016568297349) + +[fips1901855] +centroid = (0.73348324007712185, -1.6341097860204878) +description = Ames city, IA +station = ('kamw', 0.00074936573879488008) +zone = ('iaz048', 0.0021148483652566265) + +[fips19019] +centroid = (0.74124705800193835, -1.6028871023393707) +description = Buchanan County, IA +station = ('kiib', 0.0012695307645256815) +zone = ('iaz040', 1.1806892546427333e-05) + +[fips1901990] +centroid = (0.73495814801481218, -1.5930575825250637) +description = Anamosa city, IA +station = ('kmxo', 0.0025718792204343362) +zone = ('iaz053', 0.0018755281663992366) + +[fips1901990384] +centroid = (0.74350458902951533, -1.6019687275402636) +description = Buffalo township, IA +station = ('kiib', 0.003226980633073858) +zone = ('iaz040', 0.0023477396480008224) + +[fips1901990432] +centroid = (0.74197629147000654, -1.6019762324560474) +description = Byron township, IA +station = ('kiib', 0.0021790751786627135) +zone = ('iaz040', 0.00097996461043431925) + +[fips1901990816] +centroid = (0.73873933402608771, -1.6016299067725741) +description = Cono township, IA +station = ('kiib', 0.0030418558949472443) +zone = ('iaz040', 0.0026767480632676386) + +[fips1901991266] +centroid = (0.74346966499118294, -1.6061073569823479) +description = Fairbank township, IA +station = ('kolz', 0.0015805046952273557) +zone = ('iaz040', 0.0032540379177959282) + +[fips1901991461] +centroid = (0.74198367421274247, -1.5999083489049919) +description = Fremont township, IA +station = ('kiib', 0.0035855054981444269) +zone = ('iaz040', 0.0023052795457308073) + +[fips1901991902] +centroid = (0.74349094055476472, -1.6040226659105956) +description = Hazleton township, IA +station = ('kolz', 0.0016939864970478148) +zone = ('iaz040', 0.0023922086086468532) + +[fips1901991977] +centroid = (0.73900446699275824, -1.6037742182915744) +description = Homer township, IA +station = ('kiib', 0.0019705537231241403) +zone = ('iaz040', 0.0023453082381530237) + +[fips1901992208] +centroid = (0.73889952034483586, -1.6057266832191954) +description = Jefferson township, IA +station = ('kvti', 0.002070014886724425) +zone = ('iaz040', 0.0031590338168539789) + +[fips1901992439] +centroid = (0.74046960108663751, -1.6015602681354195) +description = Liberty township, IA +station = ('kiib', 0.0022388550555090853) +zone = ('iaz040', 0.0012465569810688271) + +[fips1901992751] +centroid = (0.74355831026389174, -1.5997357882018473) +description = Madison township, IA +station = ('kiib', 0.0044316858359513362) +zone = ('iaz040', 0.0032646693376639454) + +[fips1901992919] +centroid = (0.74048279577578247, -1.599697041892453) +description = Middlefield township, IA +station = ('kiib', 0.0035970338360032101) +zone = ('iaz040', 0.0024674922945975759) + +[fips1901993096] +centroid = (0.73880912974287505, -1.5996707746872103) +description = Newton township, IA +station = ('kiib', 0.0041556125425363469) +zone = ('iaz040', 0.0034013865096770455) + +[fips1901993294] +centroid = (0.74186240873631404, -1.6060390447954249) +description = Perry township, IA +station = ('kiib', 0.0014712511295136984) +zone = ('iaz040', 0.0024122573312446646) + +[fips1901994047] +centroid = (0.74054836779577993, -1.6038863382427224) +description = Sumner township, IA +station = ('kiib', 0.00059204048280505522) +zone = ('iaz040', 0.0010273914295843146) + +[fips1901994458] +centroid = (0.74197637873646916, -1.6041315220960426) +description = Washington township, IA +station = ('kiib', 0.0011250625764394179) +zone = ('iaz040', 0.0011758719459117708) + +[fips1901994656] +centroid = (0.74047611116474732, -1.6058189936833334) +description = Westburg township, IA +station = ('kiib', 0.0010320069980567642) +zone = ('iaz040', 0.0023081347734049506) + +[fips1902035] +centroid = (0.71206482129603532, -1.6686829433600734) +description = Anderson CDP, IA +station = ('ksda', 0.0026718882557614102) +zone = ('iaz090', 0.00092130852123823836) + +[fips1902080] +centroid = (0.73268787608369546, -1.5752117480030543) +description = Andover city, IA +station = ('ksfy', 0.002206583449981364) +zone = ('iaz066', 0.0038943614360908438) + +[fips19021] +centroid = (0.74598028621359191, -1.6605312609155862) +description = Buena Vista County, IA +station = ('kslb', 0.0027371229265824061) +zone = ('iaz022', 0.00016445233547734612) + +[fips1902125] +centroid = (0.73571240950435401, -1.5811274716895192) +description = Andrew city, IA +station = ('kdbq', 0.0045276427684701921) +zone = ('iaz054', 0.00039584625193938948) + +[fips1902190129] +centroid = (0.74827485312789621, -1.6618197502358711) +description = Barnes township, IA +station = ('kslb', 0.0047702226428220224) +zone = ('iaz022', 0.0025355793705892932) + +[fips1902190351] +centroid = (0.74810246695767679, -1.6639121033030393) +description = Brooke township, IA +station = ('kckp', 0.0036402319457901535) +zone = ('iaz022', 0.0032409086189928906) + +[fips1902190822] +centroid = (0.74509646893367443, -1.6576111330907819) +description = Coon township, IA +station = ('kslb', 0.0036864475309466367) +zone = ('iaz022', 0.0024018602604424055) + +[fips1902191173] +centroid = (0.7467358567000727, -1.6636242810560931) +description = Elk township, IA +station = ('kckp', 0.0031778080252775867) +zone = ('iaz022', 0.0023107321756440061) + +[fips1902191272] +centroid = (0.74661953050542729, -1.6576029474965901) +description = Fairfield township, IA +station = ('kslb', 0.0045569605752732263) +zone = ('iaz022', 0.0023951328271199991) + +[fips1902191632] +centroid = (0.7450944443517421, -1.6596767128072247) +description = Grant township, IA +station = ('kslb', 0.0024041395520729165) +zone = ('iaz022', 0.0010856809360946598) + +[fips1902191887] +centroid = (0.74346312000648807, -1.6619018156172998) +description = Hayes township, IA +station = ('kslb', 0.0001781649923552008) +zone = ('iaz022', 0.0025679720287851006) + +[fips1902192400] +centroid = (0.74801851662065577, -1.6595060196063796) +description = Lee township, IA +station = ('kslb', 0.0049045276092621109) +zone = ('iaz022', 0.0023164428886132075) + +[fips1902192529] +centroid = (0.74661905926652916, -1.6596728032697003) +description = Lincoln township, IA +station = ('kslb', 0.0035973143881770525) +zone = ('iaz022', 0.0010611498404111098) + +[fips1902192823] +centroid = (0.74358674167740679, -1.6638026362523544) +description = Maple Valley township, IA +station = ('kslb', 0.0012297144397814097) +zone = ('iaz022', 0.003229478233084684) + +[fips1902193078] +centroid = (0.74356447127615133, -1.6576412749269638) +description = Newell township, IA +station = ('kslb', 0.0033083434946229741) +zone = ('iaz022', 0.0032262867108049987) + +[fips1902193129] +centroid = (0.74523258716203744, -1.6639497151484197) +description = Nokomis township, IA +station = ('kslb', 0.0021788797304604268) +zone = ('iaz022', 0.0024701031616452384) + +[fips1902193435] +centroid = (0.74840008050172691, -1.6577675844049307) +description = Poland township, IA +station = ('kspw', 0.0058212177491907338) +zone = ('iaz022', 0.0033187771594341978) + +[fips1902193513] +centroid = (0.74352586459309711, -1.6597184959895175) +description = Providence township, IA +station = ('kslb', 0.0017790021486027362) +zone = ('iaz022', 0.0024584189038378583) + +[fips1902193768] +centroid = (0.7466279953522994, -1.661906859618838) +description = Scott township, IA +station = ('kslb', 0.0031222494046316326) +zone = ('iaz022', 0.0011607881334819454) + +[fips1902193927] +centroid = (0.74859892586340659, -1.6606565755558793) +description = Sioux Rapids city, IA +station = ('kspw', 0.0048794064037350508) +zone = ('iaz022', 0.0027239606265289777) + +[fips1902194018] +centroid = (0.74427965484374103, -1.6615360120593743) +description = Storm Lake city, IA +station = ('kslb', 0.00088678002726091899) +zone = ('iaz022', 0.0017088552003911464) + +[fips1902194461] +centroid = (0.7451764573732933, -1.6619085002283349) +description = Washington township, IA +station = ('kslb', 0.0016745205508837098) +zone = ('iaz022', 0.0011278738534074688) + +[fips1902260] +centroid = (0.72333264949361809, -1.6539723833997615) +description = Anita city, IA +station = ('kadu', 0.0049222425684363929) +zone = ('iaz070', 0.0028910097730724563) + +[fips19023] +centroid = (0.74586135947836085, -1.6193176319176454) +description = Butler County, IA +station = ('kalo', 0.0058482590669750763) +zone = ('iaz027', 0.00014078602755258245) + +[fips1902305] +centroid = (0.72828907041001667, -1.6336839605895861) +description = Ankeny city, IA +station = ('kikv', 0.00082116661204809614) +zone = ('iaz060', 0.00083552439931856685) + +[fips1902350] +centroid = (0.73981250207655413, -1.6731709353585291) +description = Anthon city, IA +station = ('kckp', 0.0071979642028496722) +zone = ('iaz031', 0.002311047875250897) + +[fips1902390030] +centroid = (0.74349574021020781, -1.6184738524907685) +description = Albion township, IA +station = ('kalo', 0.0043489654323998154) +zone = ('iaz027', 0.0024301677449732732) + +[fips1902390153] +centroid = (0.74333325005684714, -1.6165716006857276) +description = Beaver township, IA +station = ('kalo', 0.0029461697425524434) +zone = ('iaz027', 0.0032772087984803537) + +[fips1902390195] +centroid = (0.7480960092394443, -1.6225391606509765) +description = Bennezette township, IA +station = ('kccy', 0.005693806603856745) +zone = ('iaz027', 0.0031984439479322952) + +[fips1902390420] +centroid = (0.74655121831850424, -1.6164114841801496) +description = Butler township, IA +station = ('kalo', 0.0047779542254163697) +zone = ('iaz027', 0.0023829785259023017) + +[fips1902390753] +centroid = (0.74814156233292151, -1.6204425838870182) +description = Coldwater township, IA +station = ('kccy', 0.004562191359561563) +zone = ('iaz027', 0.0024358934391802093) + +[fips1902390903] +centroid = (0.74820793720437484, -1.6183099660740063) +description = Dayton township, IA +station = ('kccy', 0.003701915887307612) +zone = ('iaz027', 0.0025532971407141226) + +[fips1902391464] +centroid = (0.74810553873716024, -1.6164259355063559) +description = Fremont township, IA +station = ('kccy', 0.003549712176460041) +zone = ('iaz027', 0.0032175168348324438) + +[fips1902392100] +centroid = (0.74660609147018686, -1.6185723065138737) +description = Jackson township, IA +station = ('kccy', 0.0052794237432028882) +zone = ('iaz027', 0.0010473222167352507) + +[fips1902392211] +centroid = (0.74501668993356573, -1.6184718104555438) +description = Jefferson township, IA +station = ('kalo', 0.0048784162226110936) +zone = ('iaz027', 0.0010906414763257868) + +[fips1902392754] +centroid = (0.74502541657982579, -1.6225864939802905) +description = Madison township, IA +station = ('kifa', 0.0054265367473535749) +zone = ('iaz027', 0.0024027249606952744) + +[fips1902392967] +centroid = (0.74349849783042588, -1.6205250506941749) +description = Monroe township, IA +station = ('kalo', 0.0058377729337816976) +zone = ('iaz027', 0.0024298043435514766) + +[fips1902393339] +centroid = (0.74660734810724838, -1.6225361935912481) +description = Pittsford township, IA +station = ('kifa', 0.0066474916836620655) +zone = ('iaz027', 0.0023724519990192083) + +[fips1902393633] +centroid = (0.74515807905626974, -1.6208225769717624) +description = Ripley township, IA +station = ('kalo', 0.0064972726948702543) +zone = ('iaz027', 0.0011719487847669716) + +[fips1902393837] +centroid = (0.74517485167038144, -1.6165022063946681) +description = Shell Rock township, IA +station = ('kalo', 0.003785531887124805) +zone = ('iaz027', 0.0022877103882459958) + +[fips1902394464] +centroid = (0.74342077831883469, -1.6226920165868661) +description = Washington township, IA +station = ('kifa', 0.0043932970826415958) +zone = ('iaz027', 0.0033500975410943731) + +[fips1902394692] +centroid = (0.74655381885908967, -1.6205183137232624) +description = West Point township, IA +station = ('kccy', 0.0059017265625740936) +zone = ('iaz027', 0.0010595876642214553) + +[fips1902395] +centroid = (0.74319577047166752, -1.6211295280273108) +description = Aplington city, IA +station = ('kalo', 0.0062449382877791801) +zone = ('iaz027', 0.0028748870128610408) + +[fips1902485] +centroid = (0.7345427072929599, -1.6588166320051345) +description = Arcadia city, IA +station = ('kcin', 0.0034255992481511321) +zone = ('iaz045', 0.0025205688391859438) + +[fips19025] +centroid = (0.73977822381004488, -1.6518438845637844) +description = Calhoun County, IA +station = ('kcin', 0.0061386652038724569) +zone = ('iaz034', 4.4388655872299928e-05) + +[fips1902530] +centroid = (0.75250052213977725, -1.6710497843587029) +description = Archer city, IA +station = ('kshl', 0.0021053463174044457) +zone = ('iaz013', 0.0016131337372638566) + +[fips1902590423] +centroid = (0.74205601811023769, -1.6534793802459509) +description = Butler township, IA +station = ('kcin', 0.0081666427035573218) +zone = ('iaz034', 0.0026120176887630317) + +[fips1902590441] +centroid = (0.73746552292481227, -1.6522522043422885) +description = Calhoun township, IA +station = ('kcin', 0.0038597660166174766) +zone = ('iaz034', 0.0023212511594109431) + +[fips1902590528] +centroid = (0.73905276025316091, -1.6486263875410254) +description = Cedar township, IA +station = ('kfod', 0.0050483449815426299) +zone = ('iaz034', 0.0024413368691119119) + +[fips1902590585] +centroid = (0.74080831713457196, -1.6505275572419302) +description = Center township, IA +station = ('kfod', 0.0052804073052712328) +zone = ('iaz034', 0.001400944125065109) + +[fips1902591215] +centroid = (0.73910710980606809, -1.6545601404786632) +description = Elm Grove township, IA +station = ('kcin', 0.0052002654071272381) +zone = ('iaz034', 0.0021498978337746825) + +[fips1902591509] +centroid = (0.74052899464108279, -1.6546044543883713) +description = Garfield township, IA +station = ('kcin', 0.0066223686171431933) +zone = ('iaz034', 0.0022165355759144259) + +[fips1902591758] +centroid = (0.74051969203616963, -1.6485636255011236) +description = Greenfield township, IA +station = ('kfod', 0.0040959346564796474) +zone = ('iaz034', 0.0024989009142452317) + +[fips1902592103] +centroid = (0.73745880340719205, -1.6549064487088438) +description = Jackson township, IA +station = ('kcin', 0.0035780023856240642) +zone = ('iaz034', 0.0032583775852514452) + +[fips1902592368] +centroid = (0.73770943268777844, -1.6533686565582044) +description = Lake City city, IA +station = ('kcin', 0.0038582511411897934) +zone = ('iaz034', 0.0023611896044671734) + +[fips1902592370] +centroid = (0.73908813807709894, -1.6524828146963544) +description = Lake Creek township, IA +station = ('kcin', 0.0053458705714562607) +zone = ('iaz034', 0.00084642491156460681) + +[fips1902592532] +centroid = (0.74193536349904732, -1.6495287925774766) +description = Lincoln township, IA +station = ('kfod', 0.0042729564293128618) +zone = ('iaz034', 0.0027397953498767042) + +[fips1902592688] +centroid = (0.73897645445826377, -1.6505419562082591) +description = Logan township, IA +station = ('kcin', 0.0057735433275550967) +zone = ('iaz034', 0.0012100004279456472) + +[fips1902593546] +centroid = (0.73757453618989188, -1.6483966847581704) +description = Reading township, IA +station = ('kcin', 0.0056967022870344922) +zone = ('iaz034', 0.0033272057414830583) + +[fips1902593855] +centroid = (0.74196901344702582, -1.6515841272112102) +description = Sherman township, IA +station = ('kfod', 0.0057682702159259332) +zone = ('iaz034', 0.0022128553231984907) + +[fips1902594152] +centroid = (0.74071375519569882, -1.6524282557039371) +description = Twin Lakes township, IA +station = ('kcin', 0.0069397232147508803) +zone = ('iaz034', 0.0010632038163864781) + +[fips1902594179] +centroid = (0.73745005930763952, -1.6505769151531766) +description = Union township, IA +station = ('kcin', 0.004479663565158009) +zone = ('iaz034', 0.0024787371752333907) + +[fips1902594734] +centroid = (0.74194326984055892, -1.6556253323744479) +description = Williams township, IA +station = ('kslb', 0.0050448903747548398) +zone = ('iaz033', 0.0038279785249939169) + +[fips1902620] +centroid = (0.74758028189877257, -1.6232498936289737) +description = Aredale city, IA +station = ('kccy', 0.0064235288506380404) +zone = ('iaz026', 0.0037321532797626399) + +[fips19027] +centroid = (0.73372755126581601, -1.6557527937697212) +description = Carroll County, IA +station = ('kcin', 0.0011080887487446094) +zone = ('iaz045', 0.00010681967848614411) + +[fips1902755] +centroid = (0.73213352460667702, -1.6661318304990183) +description = Arion city, IA +station = ('kdns', 0.0011948170097134843) +zone = ('iaz044', 0.0018702644960225442) + +[fips1902790075] +centroid = (0.73447807775075857, -1.6587321755226305) +description = Arcadia township, IA +station = ('kcin', 0.0033525571082273671) +zone = ('iaz045', 0.0024397426993692656) + +[fips1902790475] +centroid = (0.73425537373820404, -1.6557011669304469) +description = Carroll city, IA +station = ('kcin', 0.0011090530680395794) +zone = ('iaz045', 0.00058755731454066559) + +[fips1902791134] +centroid = (0.7314067520528541, -1.656637466260972) +description = Eden township, IA +station = ('kcin', 0.0030560028235839232) +zone = ('iaz045', 0.0023837043747790584) + +[fips1902791254] +centroid = (0.73146981079872875, -1.6585131716080903) +description = Ewoldt township, IA +station = ('kadu', 0.0038978988029090577) +zone = ('iaz045', 0.0030709907500008848) + +[fips1902791581] +centroid = (0.73444891329895778, -1.6525661367148445) +description = Glidden township, IA +station = ('kcin', 0.0013822436637396691) +zone = ('iaz045', 0.0024055123958186268) + +[fips1902791635] +centroid = (0.73447055538168249, -1.6544617562687283) +description = Grant township, IA +station = ('kcin', 0.00057542673386256433) +zone = ('iaz045', 0.0011811242149709442) + +[fips1902792196] +centroid = (0.73585449675875891, -1.6524097028539886) +description = Jasper township, IA +station = ('kcin', 0.0023885849660888526) +zone = ('iaz045', 0.0032382792887499425) + +[fips1902792319] +centroid = (0.73594799404678823, -1.6565520498473794) +description = Kniest township, IA +station = ('kcin', 0.0026434123070798619) +zone = ('iaz045', 0.0023780831781858476) + +[fips1902792811] +centroid = (0.73146104924588362, -1.6591875144711832) +description = Manning city, IA +station = ('kadu', 0.0040942229103696779) +zone = ('iaz045', 0.0034451629984556861) + +[fips1902792820] +centroid = (0.73444545754703883, -1.6567138942289168) +description = Maple River township, IA +station = ('kcin', 0.001883393983244216) +zone = ('iaz045', 0.001116675661048575) + +[fips1902793099] +centroid = (0.73140233636984653, -1.6546174221847136) +description = Newton township, IA +station = ('kcin', 0.0025210320328077412) +zone = ('iaz045', 0.0023898151051328087) + +[fips1902793405] +centroid = (0.73278826742227021, -1.6546607936166258) +description = Pleasant Valley township, IA +station = ('kcin', 0.0011575539564034774) +zone = ('iaz045', 0.0011392420438406667) + +[fips1902793573] +centroid = (0.73280074652642202, -1.6524375059489727) +description = Richland township, IA +station = ('kcin', 0.0017631863275802016) +zone = ('iaz045', 0.0025274299886596579) + +[fips1902793699] +centroid = (0.73291202871952921, -1.6566322477265085) +description = Roselle township, IA +station = ('kcin', 0.0020120338220469863) +zone = ('iaz045', 0.0010618156732793752) + +[fips1902793840] +centroid = (0.73582014867907963, -1.6544582481569319) +description = Sheridan township, IA +station = ('kcin', 0.0019137094390840087) +zone = ('iaz045', 0.0023196237676035222) + +[fips1902794182] +centroid = (0.73140458784458162, -1.6526050924637492) +description = Union township, IA +station = ('kcin', 0.0027990156932238392) +zone = ('iaz045', 0.0031930387382166307) + +[fips1902794467] +centroid = (0.73291866097068681, -1.6586602854107408) +description = Washington township, IA +station = ('kcin', 0.0034011283871429698) +zone = ('iaz045', 0.0023724206546222762) + +[fips1902794704] +centroid = (0.73594321184463785, -1.6585203100047308) +description = Wheatland township, IA +station = ('kcin', 0.003744372333808236) +zone = ('iaz045', 0.0031242591653593342) + +[fips1902800] +centroid = (0.71464778641593929, -1.6444362883393) +description = Arispe city, IA +station = ('kcsq', 0.0022979226070170477) +zone = ('iaz082', 0.0014530085092749599) + +[fips1902845] +centroid = (0.74610708438374918, -1.5999616163537629) +description = Arlington city, IA +station = ('kolz', 0.0040673939454113073) +zone = ('iaz029', 0.0029766543380454198) + +[fips19029] +centroid = (0.72141132123985263, -1.6568986896901179) +description = Cass County, IA +station = ('kaio', 0.0019158670132490654) +zone = ('iaz070', 8.2731760942223774e-05) + +[fips1902935] +centroid = (0.75737533146035252, -1.6490430325400613) +description = Armstrong city, IA +station = ('kfrm', 0.004539672171047367) +zone = ('iaz004', 0.0024925556958614497) + +[fips1902990144] +centroid = (0.72067088275798663, -1.6574697265147853) +description = Bear Grove township, IA +station = ('kaio', 0.002191682670501841) +zone = ('iaz070', 0.00086074550631722241) + +[fips1902990204] +centroid = (0.72350231295020451, -1.655602346388199) +description = Benton township, IA +station = ('kaio', 0.0026686968619428373) +zone = ('iaz070', 0.0023139509632829564) + +[fips1902990336] +centroid = (0.72364063029342507, -1.659771815798166) +description = Brighton township, IA +station = ('kaio', 0.0012439358201055896) +zone = ('iaz070', 0.0031801309441262479) + +[fips1902990492] +centroid = (0.7204952851819435, -1.6598478423403829) +description = Cass township, IA +station = ('kaio', 0.0021813740810374309) +zone = ('iaz070', 0.0024493170629916144) + +[fips1902991155] +centroid = (0.71909752079719125, -1.6558165506472964) +description = Edna township, IA +station = ('kaio', 0.0041859989945471935) +zone = ('iaz070', 0.0023910268557798329) + +[fips1902991392] +centroid = (0.72209344827140953, -1.6556853542474239) +description = Franklin township, IA +station = ('kaio', 0.0024838688780845692) +zone = ('iaz070', 0.0011071273770835641) + +[fips1902991638] +centroid = (0.72359568806518615, -1.6537614952662429) +description = Grant township, IA +station = ('kadu', 0.0047536285857855973) +zone = ('iaz070', 0.0031866895323368126) + +[fips1902991779] +centroid = (0.72206341115498285, -1.6577054855901447) +description = Grove township, IA +station = ('kaio', 0.0010509517040664981) +zone = ('iaz070', 0.0009690598602822071) + +[fips1902992535] +centroid = (0.72202346056840461, -1.6537562941850721) +description = Lincoln township, IA +station = ('kaio', 0.003923606943844732) +zone = ('iaz070', 0.0023781849815338188) + +[fips1902992892] +centroid = (0.72073055556511223, -1.65371714644995) +description = Massena township, IA +station = ('kaio', 0.0043262669166449167) +zone = ('iaz070', 0.0024043680427341648) + +[fips1902993117] +centroid = (0.7191017619472736, -1.6577900642456964) +description = Noble township, IA +station = ('kaio', 0.0035698066436333732) +zone = ('iaz070', 0.0023872961970678474) + +[fips1902993360] +centroid = (0.7191069281218595, -1.659782217960508) +description = Pleasant township, IA +station = ('kaio', 0.0035173841360904463) +zone = ('iaz080', 0.003091415602278109) + +[fips1902993528] +centroid = (0.7235960371310366, -1.6577249460113046) +description = Pymosa township, IA +station = ('kaio', 0.0013726181311126732) +zone = ('iaz070', 0.0023303513679965543) + +[fips1902994185] +centroid = (0.7205140125648174, -1.6556700128032988) +description = Union township, IA +station = ('kaio', 0.0031972714883621882) +zone = ('iaz070', 0.0012074449951752228) + +[fips1902994350] +centroid = (0.71897615060100761, -1.6539984237122014) +description = Victoria township, IA +station = ('kaio', 0.0051620898444023839) +zone = ('iaz081', 0.0030201316661268162) + +[fips1902994470] +centroid = (0.72209908568489356, -1.6597741196327784) +description = Washington township, IA +station = ('kaio', 0.00078372127739923187) +zone = ('iaz070', 0.0023464523051838367) + +[fips1903025] +centroid = (0.75687649890684006, -1.6602610664940849) +description = Arnolds Park city, IA +station = ('kspw', 0.003662242024696304) +zone = ('iaz003', 0.00038127717531633286) + +[fips19031] +centroid = (0.72906513106191584, -1.5905567700530512) +description = Cedar County, IA +station = ('kmut', 0.0070844151751154891) +zone = ('iaz065', 2.8971168540791837e-06) + +[fips1903115] +centroid = (0.73889143947039915, -1.6641180521547747) +description = Arthur city, IA +station = ('kslb', 0.004844878245997399) +zone = ('iaz032', 0.0023292811121543031) + +[fips1903160] +centroid = (0.74206120173811618, -1.5840493099369903) +description = Asbury city, IA +station = ('kdbq', 0.0021798984422020553) +zone = ('iaz042', 0.0017930669590029672) + +[fips1903190495] +centroid = (0.72919356984157013, -1.5933070424350515) +description = Cass township, IA +station = ('kiow', 0.0042455438234122482) +zone = ('iaz065', 0.0020523791269493846) + +[fips1903190588] +centroid = (0.72866627096795766, -1.590416916820089) +description = Center township, IA +station = ('kmut', 0.0066902425516514388) +zone = ('iaz065', 0.00041205007978269105) + +[fips1903190906] +centroid = (0.73134275082918343, -1.5895350543089337) +description = Dayton township, IA +station = ('kmxo', 0.0058925278476883768) +zone = ('iaz065', 0.002403235703348815) + +[fips1903191275] +centroid = (0.72986328758214547, -1.5893955501418218) +description = Fairfield township, IA +station = ('kmxo', 0.0073648021201343592) +zone = ('iaz065', 0.0011801728711629041) + +[fips1903191317] +centroid = (0.72676876645848187, -1.5875138234087842) +description = Farmington township, IA +station = ('kmut', 0.0054034667412750344) +zone = ('iaz065', 0.0032314325956284574) + +[fips1903191467] +centroid = (0.73127215226094033, -1.5913343142348146) +description = Fremont township, IA +station = ('kmxo', 0.0058400271452753302) +zone = ('iaz065', 0.0022820240906910199) + +[fips1903191593] +centroid = (0.72818880124448948, -1.5937878457373909) +description = Gower township, IA +station = ('kiow', 0.0034063213857617432) +zone = ('iaz065', 0.0025621148155406223) + +[fips1903192046] +centroid = (0.72829112989853406, -1.5875025485818162) +description = Inland township, IA +station = ('kdvn', 0.0052471151564812352) +zone = ('iaz065', 0.0024087680491586268) + +[fips1903192055] +centroid = (0.72691495523662897, -1.5917663879444386) +description = Iowa township, IA +station = ('kmut', 0.0049761492613019532) +zone = ('iaz065', 0.0023301493690017641) + +[fips1903192643] +centroid = (0.73006054469420589, -1.5934988541198456) +description = Linn township, IA +station = ('kiow', 0.004716720029404352) +zone = ('iaz065', 0.0024064521912815153) + +[fips1903192895] +centroid = (0.73136545756275184, -1.5875155338314511) +description = Massillon township, IA +station = ('kmxo', 0.0063499098242061928) +zone = ('iaz065', 0.003231441205734562) + +[fips1903193333] +centroid = (0.73135591061174354, -1.5938242533055873) +description = Pioneer township, IA +station = ('kiow', 0.0055912650567398444) +zone = ('iaz065', 0.003341408658893381) + +[fips1903193552] +centroid = (0.73008463023788339, -1.591392468605491) +description = Red Oak township, IA +station = ('kiow', 0.0059236324544287766) +zone = ('iaz065', 0.0011941699346775514) + +[fips1903193654] +centroid = (0.72719572635339735, -1.5902751786315343) +description = Rochester township, IA +station = ('kmut', 0.0052300386530869337) +zone = ('iaz065', 0.0018805375077729448) + +[fips1903193975] +centroid = (0.72678545180613108, -1.5936259140893907) +description = Springdale township, IA +station = ('kiow', 0.0031595326783627102) +zone = ('iaz065', 0.0032295557461114832) + +[fips1903193978] +centroid = (0.72984194220539356, -1.587479143716547) +description = Springfield township, IA +station = ('kdvn', 0.0059801178544073991) +zone = ('iaz065', 0.0024253162791031445) + +[fips1903194023] +centroid = (0.72676511872034533, -1.5892003699715713) +description = Sugar Creek township, IA +station = ('kmut', 0.0049409550488362635) +zone = ('iaz065', 0.0025132900332120937) + +[fips1903295] +centroid = (0.75588611182279586, -1.671915834186835) +description = Ashton city, IA +station = ('kshl', 0.0016897343748726247) +zone = ('iaz002', 0.0024737721106504055) + +[fips19033] +centroid = (0.75180355980957836, -1.6275416233530426) +description = Cerro Gordo County, IA +station = ('kmcw', 0.0016730238114819986) +zone = ('iaz017', 0.0001654171529953885) + +[fips1903340] +centroid = (0.731477071368417, -1.6604183032063973) +description = Aspinwall city, IA +station = ('kdns', 0.0034653842877613696) +zone = ('iaz044', 0.003894827356774426) + +[fips1903385] +centroid = (0.72556120805561208, -1.5911546500416143) +description = Atalissa city, IA +station = ('kmut', 0.0035831351271610901) +zone = ('iaz067', 0.0016839811316526794) + +[fips1903390135] +centroid = (0.75116560706138935, -1.6266741423549236) +description = Bath township, IA +station = ('kmcw', 0.0025689276237490506) +zone = ('iaz017', 0.0010645926040519483) + +[fips1903390720] +centroid = (0.75284934364408085, -1.6296776445580958) +description = Clear Lake city, IA +station = ('kmcw', 0.0005756214790903851) +zone = ('iaz017', 0.0017144261099249489) + +[fips1903390721] +centroid = (0.75268360717831151, -1.6310210593899408) +description = Clear Lake township, IA +station = ('kmcw', 0.0015533321671711967) +zone = ('iaz017', 0.0025378554766205311) + +[fips1903391017] +centroid = (0.74963706515578521, -1.6246190869738706) +description = Dougherty township, IA +station = ('kmcw', 0.0047101529553536976) +zone = ('iaz017', 0.0032083197731568847) + +[fips1903391308] +centroid = (0.75419593497516457, -1.6246003944975818) +description = Falls township, IA +station = ('kmcw', 0.0033691350130684696) +zone = ('iaz017', 0.0032155803304585568) + +[fips1903391551] +centroid = (0.74962793708379727, -1.62667300789091) +description = Geneseo township, IA +station = ('kmcw', 0.0038663948665509981) +zone = ('iaz017', 0.0024097421274729032) + +[fips1903391641] +centroid = (0.75392696228413969, -1.6306590781030774) +description = Grant township, IA +station = ('kmcw', 0.0014759362469348033) +zone = ('iaz017', 0.0029465055226000924) + +[fips1903391773] +centroid = (0.74964804327678036, -1.630815529417226) +description = Grimes township, IA +station = ('kmcw', 0.003713910558332081) +zone = ('iaz017', 0.0032101195080894377) + +[fips1903392346] +centroid = (0.75262777409554016, -1.6286246699670752) +description = Lake township, IA +station = ('kmcw', 0.00054506907101224786) +zone = ('iaz017', 0.00097718400895501216) + +[fips1903392508] +centroid = (0.75431271495541552, -1.6266541408816959) +description = Lime Creek township, IA +station = ('kmcw', 0.0020757561157726269) +zone = ('iaz017', 0.0025172453037192047) + +[fips1903392538] +centroid = (0.75408491458144522, -1.628567335901147) +description = Lincoln township, IA +station = ('kmcw', 0.001019422607681172) +zone = ('iaz017', 0.0022579451391025102) + +[fips1903392886] +centroid = (0.75225645529717844, -1.6265568911357748) +description = Mason township, IA +station = ('kmcw', 0.0019595746586365407) +zone = ('iaz017', 0.00090704469476137308) + +[fips1903392890] +centroid = (0.75308529470565799, -1.6266432849337484) +description = Mason City city, IA +station = ('kmcw', 0.0017005793482758086) +zone = ('iaz017', 0.0014042422872653447) + +[fips1903393042] +centroid = (0.75122822947495094, -1.6287345384434881) +description = Mount Vernon township, IA +station = ('kmcw', 0.0018894489823846816) +zone = ('iaz017', 0.0010174435157910861) + +[fips1903393246] +centroid = (0.75128654092526004, -1.6246738728590906) +description = Owen township, IA +station = ('kmcw', 0.0036307414979179042) +zone = ('iaz017', 0.0023043128009640405) + +[fips1903393408] +centroid = (0.74972227212986764, -1.6285684354585759) +description = Pleasant Valley township, IA +station = ('kmcw', 0.0034002374263008605) +zone = ('iaz017', 0.0022819186904353057) + +[fips1903393456] +centroid = (0.75263198033903744, -1.62447418973937) +description = Portland township, IA +station = ('kmcw', 0.0033181681265965391) +zone = ('iaz017', 0.0024673765653562413) + +[fips1903394188] +centroid = (0.75129161983338344, -1.6309708113607759) +description = Union township, IA +station = ('kmcw', 0.002330431989491013) +zone = ('iaz017', 0.0024641317727175233) + +[fips1903430] +centroid = (0.70812723633048835, -1.6500801944480592) +description = Athelstan CDP, IA +station = ('kcsq', 0.0080899449495989706) +zone = ('moz003', 0.0022850551036005975) + +[fips1903475] +centroid = (0.73293785959245861, -1.6032343181407624) +description = Atkins city, IA +station = ('kcid', 0.002672242523378443) +zone = ('iaz051', 0.0030749108325504775) + +[fips19035] +centroid = (0.74600150941729615, -1.6691152963223774) +description = Cherokee County, IA +station = ('kckp', 0.0010111915998218559) +zone = ('iaz021', 0.00017172812320092823) + +[fips1903520] +centroid = (0.72244216505595815, -1.6584462905911539) +description = Atlantic city, IA +station = ('kaio', 0.00038737854144809943) +zone = ('iaz070', 0.0016339308052260517) + +[fips1903590021] +centroid = (0.74676826746428226, -1.6657191823039692) +description = Afton township, IA +station = ('kckp', 0.0017819609781036391) +zone = ('iaz021', 0.0025346665594378984) + +[fips1903590063] +centroid = (0.74663202706287146, -1.6720263484350713) +description = Amherst township, IA +station = ('kckp', 0.0032363268814251454) +zone = ('iaz021', 0.0023797625617179075) + +[fips1903590531] +centroid = (0.74815782880155002, -1.6679019434263911) +description = Cedar township, IA +station = ('kckp', 0.0023517324838480962) +zone = ('iaz021', 0.0024058306674253406) + +[fips1903590654] +centroid = (0.7465482338054833, -1.667887038314579) +description = Cherokee township, IA +station = ('kckp', 0.0007454585331103953) +zone = ('iaz021', 0.0010293989657669262) + +[fips1903590996] +centroid = (0.74359412442014272, -1.6658647253102932) +description = Diamond township, IA +station = ('kckp', 0.0026177386071068662) +zone = ('iaz021', 0.0032204934516506709) + +[fips1903591602] +centroid = (0.7436438837571171, -1.6722106028442043) +description = Grand Meadow township, IA +station = ('kckp', 0.003921025261107435) +zone = ('iaz021', 0.0032764163155314485) + +[fips1903592442] +centroid = (0.74822996325953495, -1.6698339530951785) +description = Liberty township, IA +station = ('kckp', 0.0028585637178971581) +zone = ('iaz021', 0.0024387245893236179) + +[fips1903592829] +centroid = (0.74815283715988934, -1.6720202746892743) +description = Marcus township, IA +station = ('kckp', 0.0039051968185429167) +zone = ('iaz021', 0.0032000454990795601) + +[fips1903593321] +centroid = (0.74515406479899027, -1.6679839739012348) +description = Pilot township, IA +station = ('kckp', 0.00067389910695659239) +zone = ('iaz021', 0.0010152935749656012) + +[fips1903593336] +centroid = (0.74510406111592065, -1.6658577788998701) +description = Pitcher township, IA +station = ('kckp', 0.001567660604796708) +zone = ('iaz021', 0.002401760731446189) + +[fips1903593657] +centroid = (0.74517975604557962, -1.6701275349286566) +description = Rock township, IA +station = ('kckp', 0.0018469148265355491) +zone = ('iaz021', 0.0011111213629705237) + +[fips1903593843] +centroid = (0.74663712342428734, -1.6699622522484927) +description = Sheridan township, IA +station = ('kckp', 0.001814515067601807) +zone = ('iaz021', 0.0010609279510217801) + +[fips1903593891] +centroid = (0.74354995013677472, -1.6677723352761378) +description = Silver township, IA +station = ('kckp', 0.0022583365563523124) +zone = ('iaz021', 0.0024849905934363104) + +[fips1903593963] +centroid = (0.74814894507565743, -1.6658572553010946) +description = Spring township, IA +station = ('kckp', 0.0027268877567508125) +zone = ('iaz021', 0.0032108834258684363) + +[fips1903594113] +centroid = (0.74511240378974508, -1.6720393511379987) +description = Tilden township, IA +station = ('kckp', 0.0032176372171862752) +zone = ('iaz021', 0.0023944331754203988) + +[fips1903594740] +centroid = (0.74363095086735986, -1.6699213591841184) +description = Willow township, IA +station = ('kckp', 0.0026939142834255143) +zone = ('iaz021', 0.0023580369650879709) + +[fips1903610] +centroid = (0.73739408659852812, -1.6559287055050294) +description = Auburn city, IA +station = ('kcin', 0.0036910828416661253) +zone = ('iaz045', 0.0037305041303801801) + +[fips1903655] +centroid = (0.72812219948023338, -1.6568161530697911) +description = Audubon city, IA +station = ('kadu', 0.00031935419741678414) +zone = ('iaz057', 0.00065924964054572355) + +[fips19037] +centroid = (0.75153425550599573, -1.6112392707550345) +description = Chickasaw County, IA +station = ('kccy', 0.0038203999591304464) +zone = ('iaz019', 7.999564556658952e-06) + +[fips1903745] +centroid = (0.74548515375809354, -1.6656816577250513) +description = Aurelia city, IA +station = ('kckp', 0.0015634802870713939) +zone = ('iaz021', 0.0024344178974253748) + +[fips1903790324] +centroid = (0.74950557204994006, -1.6143688904499554) +description = Bradford township, IA +station = ('kccy', 0.0026404605838747023) +zone = ('iaz019', 0.0030588911431007693) + +[fips1903790663] +centroid = (0.75113450529411885, -1.6142087390377924) +description = Chickasaw township, IA +station = ('kccy', 0.001729521409917366) +zone = ('iaz019', 0.002202784651275437) + +[fips1903790909] +centroid = (0.75115726438756492, -1.6122695037059016) +description = Dayton township, IA +station = ('kccy', 0.0031064942002445562) +zone = ('iaz019', 0.00084037016342643103) + +[fips1903790942] +centroid = (0.75295891541452109, -1.6142031016243086) +description = Deerfield township, IA +station = ('kccy', 0.0021045167736286272) +zone = ('iaz019', 0.0025833061718569085) + +[fips1903791083] +centroid = (0.74957123133640002, -1.6103539873985453) +description = Dresden township, IA +station = ('kolz', 0.0059669410299698087) +zone = ('iaz019', 0.0020745410426333956) + +[fips1903791437] +centroid = (0.74949157450933901, -1.608086385821184) +description = Fredericksburg township, IA +station = ('kolz', 0.0050197612771091414) +zone = ('iaz019', 0.003088360120645678) + +[fips1903792184] +centroid = (0.75309124627840729, -1.610550110046592) +description = Jacksonville township, IA +station = ('kccy', 0.0045513526358993946) +zone = ('iaz019', 0.0016318534655762795) + +[fips1903793081] +centroid = (0.75121493006605078, -1.6102169441456786) +description = New Hampton township, IA +station = ('kccy', 0.0045872497639099542) +zone = ('iaz019', 0.00081949442930512881) + +[fips1903793576] +centroid = (0.74961657499036682, -1.6122865730259861) +description = Richland township, IA +station = ('kccy', 0.0036735841526222713) +zone = ('iaz019', 0.0020689490694989882) + +[fips1903794008] +centroid = (0.75119342760966623, -1.6080405185684417) +description = Stapleton township, IA +station = ('kolz', 0.0065958938004332217) +zone = ('iaz019', 0.0023680576420437379) + +[fips1903794299] +centroid = (0.75307141933810451, -1.6081489907814532) +description = Utica township, IA +station = ('kdeh', 0.0056895077979892518) +zone = ('iaz019', 0.0027307148352330307) + +[fips1903794473] +centroid = (0.75307318212064911, -1.6122787190443522) +description = Washington township, IA +station = ('kccy', 0.0033697611260637777) +zone = ('iaz019', 0.0017080644918917309) + +[fips1903835] +centroid = (0.74386121215557544, -1.6009809584500976) +description = Aurora city, IA +station = ('kiib', 0.0039610343644398043) +zone = ('iaz040', 0.002957107700992325) + +[fips19039] +centroid = (0.71609447237962476, -1.636841261206444) +description = Clarke County, IA +station = ('ki75', 0.0014176569542188797) +zone = ('iaz083', 1.3632876847410232e-05) + +[fips1903970] +centroid = (0.72403369589426658, -1.6639327680013831) +description = Avoca city, IA +station = ('khnr', 0.0017523394549483135) +zone = ('iaz056', 0.00352495927269999) + +[fips1903991077] +centroid = (0.71454807575577284, -1.639864101657728) +description = Doyle township, IA +station = ('ki75', 0.0041218209313151439) +zone = ('iaz083', 0.0027436981036365192) + +[fips1903991395] +centroid = (0.71461183263334815, -1.6340880043114228) +description = Franklin township, IA +station = ('ki75', 0.0019765107852960477) +zone = ('iaz083', 0.002561827551277884) + +[fips1903991470] +centroid = (0.71734212099541295, -1.6360597202206935) +description = Fremont township, IA +station = ('ki75', 0.0011795595902259382) +zone = ('iaz083', 0.0013884968902728413) + +[fips1903991740] +centroid = (0.71459123774817457, -1.6358973347870878) +description = Green Bay township, IA +station = ('ki75', 0.0019792827377652037) +zone = ('iaz083', 0.0016662662956116693) + +[fips1903992106] +centroid = (0.71611379317444435, -1.6338918816633763) +description = Jackson township, IA +station = ('ki75', 0.0009208469067278212) +zone = ('iaz083', 0.0022382566076982078) + +[fips1903992322] +centroid = (0.71451761976032546, -1.6378373555171422) +description = Knox township, IA +station = ('ki75', 0.0028759945387765631) +zone = ('iaz083', 0.0017382936659643545) + +[fips1903992445] +centroid = (0.71755087982724397, -1.6340627668504391) +description = Liberty township, IA +station = ('ki75', 0.0013117163351147008) +zone = ('iaz083', 0.0025640074381491082) + +[fips1903992757] +centroid = (0.71755288695588382, -1.6399209121248806) +description = Madison township, IA +station = ('ki75', 0.0038499159501215385) +zone = ('iaz083', 0.0027324009711261351) + +[fips1903993212] +centroid = (0.71610894115912382, -1.6367634544283902) +description = Osceola city, IA +station = ('ki75', 0.0013572149670016572) +zone = ('iaz083', 7.4084881057586647e-05) + +[fips1903993213] +centroid = (0.71597947263521089, -1.6357142846551387) +description = Osceola township, IA +station = ('ki75', 0.00070669517248546278) +zone = ('iaz083', 0.00087061752190720058) + +[fips1903994134] +centroid = (0.71580375288612008, -1.6400141301602296) +description = Troy township, IA +station = ('ki75', 0.0038203539607982034) +zone = ('iaz083', 0.0023979025494416154) + +[fips1903994422] +centroid = (0.7162349539311178, -1.638066656874269) +description = Ward township, IA +station = ('ki75', 0.0023052498455195642) +zone = ('iaz083', 0.00092241493738599509) + +[fips1903994476] +centroid = (0.71762978616272666, -1.6379494056551203) +description = Washington township, IA +station = ('ki75', 0.0024969108443770858) +zone = ('iaz083', 0.0017445429611447941) + +[fips19041] +centroid = (0.75188473507308862, -1.6606760010704542) +description = Clay County, IA +station = ('kspw', 0.0017391393933274706) +zone = ('iaz014', 5.1132893337317902e-05) + +[fips1904105] +centroid = (0.75118189098331056, -1.6551572176157705) +description = Ayrshire city, IA +station = ('kspw', 0.0053628474065317054) +zone = ('iaz015', 0.0021146851398350691) + +[fips1904190672] +centroid = (0.75118930863263145, -1.6638071915617021) +description = Clay township, IA +station = ('kspw', 0.0026349643198813879) +zone = ('iaz014', 0.0023901896942689093) + +[fips1904191035] +centroid = (0.74961610375146881, -1.6615556121068742) +description = Douglas township, IA +station = ('kspw', 0.0037902320654818766) +zone = ('iaz014', 0.0024004179023354865) + +[fips1904191452] +centroid = (0.75260454376319608, -1.6577490315549821) +description = Freeman township, IA +station = ('kspw', 0.0030922774623655834) +zone = ('iaz014', 0.0022555530290823468) + +[fips1904191512] +centroid = (0.74954871658904931, -1.6577711099700199) +description = Garfield township, IA +station = ('kspw', 0.0048676350618287742) +zone = ('iaz014', 0.0032041521949109798) + +[fips1904191569] +centroid = (0.75131820119789128, -1.659572289758078) +description = Gillett Grove township, IA +station = ('kspw', 0.0026622031314300302) +zone = ('iaz014', 0.0010270877291972741) + +[fips1904191914] +centroid = (0.74960934932726364, -1.6595360567228066) +description = Herdland township, IA +station = ('kspw', 0.0041493418347905327) +zone = ('iaz014', 0.0024743560785887883) + +[fips1904192349] +centroid = (0.75417816752337929, -1.6575575165761609) +description = Lake township, IA +station = ('kspw', 0.0032208250040323865) +zone = ('iaz014', 0.0032079037657436527) + +[fips1904192541] +centroid = (0.75118489294962387, -1.6617384004394358) +description = Lincoln township, IA +station = ('kspw', 0.0022169171720234841) +zone = ('iaz014', 0.0010665590204234239) + +[fips1904192691] +centroid = (0.75126484648265779, -1.6575025736113078) +description = Logan township, IA +station = ('kspw', 0.0038221900788731277) +zone = ('iaz014', 0.0024285292448296804) + +[fips1904192709] +centroid = (0.75267109316757463, -1.6639952158820195) +description = Lone Tree township, IA +station = ('kspw', 0.0017305290397924453) +zone = ('iaz014', 0.0025177336219671296) + +[fips1904192901] +centroid = (0.75414329584492446, -1.6594964901086637) +description = Meadow township, IA +station = ('kspw', 0.0018660690313136361) +zone = ('iaz014', 0.0023776524765267643) + +[fips1904193312] +centroid = (0.7495737969704005, -1.6636624339535415) +description = Peterson township, IA +station = ('kspw', 0.0040506902542341719) +zone = ('iaz014', 0.00320378880697784) + +[fips1904193645] +centroid = (0.75258576402044464, -1.6619149404932749) +description = Riverton township, IA +station = ('kspw', 0.00081632357390856042) +zone = ('iaz014', 0.0011022789546891738) + +[fips1904193912] +centroid = (0.75249765979980399, -1.6594773089401844) +description = Sioux township, IA +station = ('kspw', 0.0019488805077371555) +zone = ('iaz014', 0.001055154933974354) + +[fips1904193955] +centroid = (0.75305764869030634, -1.6607277500827757) +description = Spencer city, IA +station = ('kspw', 0.00088373166238783156) +zone = ('iaz014', 0.0011246347510505041) + +[fips1904194038] +centroid = (0.75417544480974608, -1.6617778099739458) +description = Summit township, IA +station = ('kspw', 0.00077650076264624494) +zone = ('iaz014', 0.0023765476696142912) + +[fips1904194590] +centroid = (0.75407589122921237, -1.6636260263853448) +description = Waterford township, IA +station = ('kspw', 0.0014641896686327679) +zone = ('iaz014', 0.0030256387175228911) + +[fips1904195] +centroid = (0.74375715562557143, -1.6431323004952576) +description = Badger city, IA +station = ('kfod', 0.0012255084517319688) +zone = ('iaz024', 0.0029440567346573675) + +[fips1904240] +centroid = (0.73035683178802446, -1.648119735912464) +description = Bagley city, IA +station = ('kpro', 0.0035264281081881371) +zone = ('iaz058', 0.0029828036663818655) + +[fips19043] +centroid = (0.74771646994030572, -1.5938959514312592) +description = Clayton County, IA +station = ('kpdc', 0.0040529784506718111) +zone = ('iaz030', 0.00023787115308651589) + +[fips1904330] +centroid = (0.73431595411654094, -1.5854311743722569) +description = Baldwin city, IA +station = ('kmxo', 0.0050831968035304114) +zone = ('iaz054', 0.003829205924115211) + +[fips1904375] +centroid = (0.74415400859088998, -1.5859798884357914) +description = Balltown city, IA +station = ('kdbq', 0.0046768826783952248) +zone = ('iaz042', 0.0029379801974709773) + +[fips1904390291] +centroid = (0.74809400211080457, -1.5957303448349829) +description = Boardman township, IA +station = ('kpdc', 0.0047756415532655841) +zone = ('iaz030', 0.0011589379193398502) + +[fips1904390378] +centroid = (0.74474590210011882, -1.5875838983782515) +description = Buena Vista township, IA +station = ('kdbq', 0.0058033490463229561) +zone = ('iaz042', 0.0036704629046115291) + +[fips1904390498] +centroid = (0.74504655251706742, -1.5977971288286095) +description = Cass township, IA +station = ('kiib', 0.0064740364862320536) +zone = ('iaz030', 0.0037973104427913742) + +[fips1904390705] +centroid = (0.74901398261282326, -1.5915765135751139) +description = Clayton township, IA +station = ('kpdc', 0.0020420637172990129) +zone = ('iaz030', 0.0022888592834776037) + +[fips1904390843] +centroid = (0.74657224953599066, -1.595719366713988) +description = Cox Creek township, IA +station = ('kpdc', 0.0057917234438931249) +zone = ('iaz030', 0.0016402224388535099) + +[fips1904391176] +centroid = (0.74523958593233797, -1.5936877336514965) +description = Elk township, IA +station = ('kpdc', 0.0061211069517190077) +zone = ('iaz030', 0.0025700492853852649) + +[fips1904391311] +centroid = (0.74952925616788957, -1.5937735340375243) +description = Farmersburg township, IA +station = ('kpdc', 0.0027938178290441555) +zone = ('iaz030', 0.0017769365009146442) + +[fips1904391542] +centroid = (0.74802073318880591, -1.5923077018119445) +description = Garnavillo township, IA +station = ('kpdc', 0.0031687782361775963) +zone = ('iaz030', 0.00141373047266536) + +[fips1904391566] +centroid = (0.7511424465422154, -1.5936640844401317) +description = Giard township, IA +station = ('kpdc', 0.002381836525130826) +zone = ('iaz030', 0.0033848805640743699) + +[fips1904391605] +centroid = (0.75114281306135833, -1.5978026440690458) +description = Grand Meadow township, IA +station = ('kdeh', 0.0049034450088948495) +zone = ('iaz030', 0.0042691009049320404) + +[fips1904391929] +centroid = (0.74781298664794094, -1.5979902320570503) +description = Highland township, IA +station = ('kpdc', 0.0063276898782576611) +zone = ('iaz029', 0.00367249156262599) + +[fips1904392214] +centroid = (0.74673327361277964, -1.5906232147376747) +description = Jefferson township, IA +station = ('kpdc', 0.0041438153309333861) +zone = ('iaz030', 0.0028308251439881434) + +[fips1904392685] +centroid = (0.74499016092893544, -1.5956957524092084) +description = Lodomillo township, IA +station = ('kpdc', 0.007039061588816075) +zone = ('iaz030', 0.0029969862123051662) + +[fips1904392808] +centroid = (0.74495769780484833, -1.5915875615092789) +description = Mallory township, IA +station = ('kpdc', 0.0059778004147777184) +zone = ('iaz030', 0.003416585163746556) + +[fips1904392841] +centroid = (0.74960755163813397, -1.5978066932329105) +description = Marion township, IA +station = ('kpdc', 0.0055455187786786833) +zone = ('iaz030', 0.0032071042092927655) + +[fips1904392913] +centroid = (0.7508513605295678, -1.5917904560348235) +description = Mendon township, IA +station = ('kpdc', 0.00099750819556502146) +zone = ('iaz030', 0.0035440101467965625) + +[fips1904392943] +centroid = (0.74488467322894492, -1.5895133249597464) +description = Millville township, IA +station = ('kpdc', 0.0060271989775118077) +zone = ('iaz042', 0.0044034888088848008) + +[fips1904392961] +centroid = (0.75113434821448621, -1.5954424353215739) +description = Monona township, IA +station = ('kpdc', 0.0036759052402349371) +zone = ('iaz030', 0.0034728658497757631) + +[fips1904393543] +centroid = (0.74799500703563149, -1.594033064497296) +description = Read township, IA +station = ('kpdc', 0.0039068175579863923) +zone = ('iaz030', 0.00024948861216717591) + +[fips1904393957] +centroid = (0.74667047666629294, -1.5976732104517177) +description = Sperry township, IA +station = ('kpdc', 0.0067715497797441746) +zone = ('iaz030', 0.0027739053358973031) + +[fips1904394374] +centroid = (0.74653489948999807, -1.5934131060936949) +description = Volga township, IA +station = ('kpdc', 0.0048600346582655194) +zone = ('iaz030', 0.0013759309681395701) + +[fips1904394380] +centroid = (0.74961676697658464, -1.5957408342637873) +description = Wagner township, IA +station = ('kpdc', 0.0040860119752966018) +zone = ('iaz030', 0.0021518349078847197) + +[fips1904420] +centroid = (0.75559876081474753, -1.6444032667098523) +description = Bancroft city, IA +station = ('kaxa', 0.0037062240699034226) +zone = ('iaz005', 0.0015491667847260257) + +[fips19045] +centroid = (0.73125932409093808, -1.5801206261506286) +description = Clinton County, IA +station = ('kcwi', 0.002845328481495134) +zone = ('iaz066', 2.9166844875370906e-05) + +[fips1904510] +centroid = (0.74189867667817044, -1.5875727806309163) +description = Bankston city, IA +station = ('kdbq', 0.0038530902928468318) +zone = ('iaz042', 0.001220312321897381) + +[fips1904555] +centroid = (0.72443485982283762, -1.6138993096147063) +description = Barnes City city, IA +station = ('kggi', 0.0049082985419219459) +zone = ('iaz062', 0.003232275300875948) + +[fips1904590267] +centroid = (0.73278723767801157, -1.5813489714248898) +description = Bloomfield township, IA +station = ('kcwi', 0.0044136753879370303) +zone = ('iaz066', 0.0017964605834911065) + +[fips1904590354] +centroid = (0.73284799258927347, -1.5834212182990752) +description = Brookfield township, IA +station = ('kdvn', 0.0067505828570984423) +zone = ('iaz066', 0.002949358894068106) + +[fips1904590450] +centroid = (0.72924884441898086, -1.5761401235387753) +description = Camanche township, IA +station = ('kcwi', 0.00094878667657376725) +zone = ('iaz066', 0.0035579388883465049) + +[fips1904590591] +centroid = (0.73122178205872768, -1.5775557426417754) +description = Center township, IA +station = ('kcwi', 0.0012981025551575438) +zone = ('iaz066', 0.001880373334299783) + +[fips1904590736] +centroid = (0.73029007294413562, -1.5750651054393019) +description = Clinton city, IA +station = ('kcwi', 0.0011651783230006289) +zone = ('iaz066', 0.0038588586257096895) + +[fips1904590927] +centroid = (0.73288431289100742, -1.5773489734852917) +description = Deep Creek township, IA +station = ('kcwi', 0.0028086647504454139) +zone = ('iaz066', 0.0026029664286139863) + +[fips1904590993] +centroid = (0.72995776225455589, -1.5799152881641316) +description = De Witt township, IA +station = ('kcwi', 0.0024658522020089557) +zone = ('iaz066', 0.0013061653996948488) + +[fips1904591137] +centroid = (0.7294121374237974, -1.5778504240326821) +description = Eden township, IA +station = ('kcwi', 0.0011677254766699571) +zone = ('iaz066', 0.0024838921799679504) + +[fips1904591194] +centroid = (0.73279521383269308, -1.5747442441096151) +description = Elk River township, IA +station = ('ksfy', 0.0018563064034614058) +zone = ('iaz066', 0.0042571516302055724) + +[fips1904591644] +centroid = (0.73127456081530806, -1.5833445285317425) +description = Grant township, IA +station = ('kdvn', 0.0052335835508871683) +zone = ('iaz066', 0.00242883959283694) + +[fips1904591818] +centroid = (0.73137114733611341, -1.5751985009540317) +description = Hampshire township, IA +station = ('kcwi', 0.0016288538444114594) +zone = ('iaz066', 0.0036361436070948294) + +[fips1904592448] +centroid = (0.73133145854892312, -1.5854580175361526) +description = Liberty township, IA +station = ('kdvn', 0.0060005948580355798) +zone = ('iaz065', 0.0044262959161140711) + +[fips1904593171] +centroid = (0.72955083873945348, -1.5836365570221862) +description = Olive township, IA +station = ('kdvn', 0.0037682793995059676) +zone = ('iaz066', 0.0031507928176764924) + +[fips1904593189] +centroid = (0.72980944417472149, -1.5816798334911903) +description = Orange township, IA +station = ('kdvn', 0.0035010712950356844) +zone = ('iaz066', 0.0018750227976733526) + +[fips1904593828] +centroid = (0.73285582911761482, -1.5854586458546833) +description = Sharon township, IA +station = ('kmxo', 0.005998607125145816) +zone = ('iaz054', 0.0046872534553390388) + +[fips1904593990] +centroid = (0.7298088507627758, -1.5854557835147098) +description = Spring Rock township, IA +station = ('kdvn', 0.0048117985912156103) +zone = ('iaz065', 0.0038779430916447547) + +[fips1904594479] +centroid = (0.73138004851529859, -1.579222130651702) +description = Washington township, IA +station = ('kcwi', 0.0023099747580619403) +zone = ('iaz066', 0.0006511385130922963) + +[fips1904594593] +centroid = (0.73285399652190031, -1.5793535888509622) +description = Waterford township, IA +station = ('kcwi', 0.0034028806484964051) +zone = ('iaz066', 0.0016852789127323044) + +[fips1904594641] +centroid = (0.73139244035298778, -1.5814611960957929) +description = Welton township, IA +station = ('kcwi', 0.0038240784264890501) +zone = ('iaz066', 0.0010356664199870137) + +[fips1904645] +centroid = (0.74187314251121372, -1.6469921310426279) +description = Barnum city, IA +station = ('kfod', 0.002467026471469483) +zone = ('iaz035', 0.0027345984464291827) + +[fips19047] +centroid = (0.73379085435778579, -1.6648536909811977) +description = Crawford County, IA +station = ('kdns', 0.0010461236122703249) +zone = ('iaz044', 0.00013740983460201726) + +[fips1904735] +centroid = (0.71358376389075329, -1.6719323275482665) +description = Bartlett CDP, IA +station = ('kpmv', 0.001977364592126401) +zone = ('iaz079', 0.003446036920549264) + +[fips1904780] +centroid = (0.75157378721355328, -1.6147040111196309) +description = Bassett city, IA +station = ('kccy', 0.0012896907253970825) +zone = ('iaz019', 0.0025266765463808696) + +[fips1904790315] +centroid = (0.73119848191321368, -1.6686715987199354) +description = Boyer township, IA +station = ('kdns', 0.003300711652928104) +zone = ('iaz044', 0.0038441307987594365) + +[fips1904790648] +centroid = (0.7345642621092221, -1.6686287683400913) +description = Charter Oak township, IA +station = ('kdns', 0.0034039251237266426) +zone = ('iaz044', 0.0030231670045185407) + +[fips1904790960] +centroid = (0.73276056904704112, -1.6649102396489623) +description = Denison township, IA +station = ('kdns', 0.00011746037273297991) +zone = ('iaz044', 0.00093642424241659715) + +[fips1904791107] +centroid = (0.73295398643474707, -1.6624964842000391) +description = East Boyer township, IA +station = ('kdns', 0.0016900374150198418) +zone = ('iaz044', 0.0018154632242579289) + +[fips1904791587] +centroid = (0.73452113502340532, -1.6647159321433378) +description = Goodrich township, IA +station = ('kdns', 0.0017739535801611643) +zone = ('iaz044', 0.00083366882219123933) + +[fips1904791827] +centroid = (0.73446760577524661, -1.6666991323190865) +description = Hanover township, IA +station = ('kdns', 0.0022468119583538369) +zone = ('iaz044', 0.0016559597959233433) + +[fips1904791890] +centroid = (0.73293051175630775, -1.6606845357304965) +description = Hayes township, IA +station = ('kdns', 0.0030297007281290781) +zone = ('iaz044', 0.0031007235448568945) + +[fips1904792058] +centroid = (0.7314219713239315, -1.660694292121015) +description = Iowa township, IA +station = ('kdns', 0.0032970979641057585) +zone = ('iaz044', 0.0037607044309682439) + +[fips1904792109] +centroid = (0.73592987752915251, -1.6605867798390923) +description = Jackson township, IA +station = ('kdns', 0.0044376302020989761) +zone = ('iaz044', 0.0038060255748849693) + +[fips1904792928] +centroid = (0.73446434200954547, -1.6627274610732483) +description = Milford township, IA +station = ('kdns', 0.0022829589220298499) +zone = ('iaz044', 0.0016785934856727144) + +[fips1904793003] +centroid = (0.73593968627954875, -1.666640943041825) +description = Morgan township, IA +station = ('kdns', 0.0034862688929549897) +zone = ('iaz044', 0.0026606050779710445) + +[fips1904793114] +centroid = (0.73143869157816555, -1.6626917167301674) +description = Nishnabotny township, IA +station = ('kdns', 0.0020158647619546491) +zone = ('iaz044', 0.0027124836571235699) + +[fips1904793231] +centroid = (0.73570734804952331, -1.6645635299930539) +description = Otter Creek township, IA +station = ('kdns', 0.0029632980350345344) +zone = ('iaz044', 0.0020236505456107247) + +[fips1904793270] +centroid = (0.73288626765976972, -1.6666639115747812) +description = Paradise township, IA +station = ('kdns', 0.0014269782134405061) +zone = ('iaz044', 0.0016440770007749529) + +[fips1904793936] +centroid = (0.73586606829169954, -1.6686170397275182) +description = Soldier township, IA +station = ('kdns', 0.0042369872357540363) +zone = ('iaz044', 0.0036134147546129556) + +[fips1904794017] +centroid = (0.73589247512328226, -1.6627623676582881) +description = Stockholm township, IA +station = ('kdns', 0.0034749596745706651) +zone = ('iaz044', 0.0026451379232750008) + +[fips1904794191] +centroid = (0.73145153720146028, -1.666808616823064) +description = Union township, IA +station = ('kdns', 0.0020040776903836998) +zone = ('iaz044', 0.0027173531028803523) + +[fips1904794482] +centroid = (0.7313582842595262, -1.6649107283411531) +description = Washington township, IA +station = ('kdns', 0.0013940450592648929) +zone = ('iaz044', 0.0023330644338888278) + +[fips1904794701] +centroid = (0.73445641821474128, -1.6606012835251762) +description = West Side township, IA +station = ('kdns', 0.0035258069741976382) +zone = ('iaz044', 0.0031615493358959387) + +[fips1904794743] +centroid = (0.73309935490814571, -1.6686457503937133) +description = Willow township, IA +station = ('kdns', 0.0029143440837441567) +zone = ('iaz044', 0.0029666747754662917) + +[fips1904825] +centroid = (0.71549950709091248, -1.608624470829574) +description = Batavia city, IA +station = ('kffl', 0.0026061573120804431) +zone = ('iaz086', 0.0032480870270572468) + +[fips1904870] +centroid = (0.73856846629231754, -1.6685393900290968) +description = Battle Creek city, IA +station = ('kdns', 0.0064625198919581435) +zone = ('iaz032', 0.0016552332206845703) + +[fips19049] +centroid = (0.72754610120073515, -1.6413199680532791) +description = Dallas County, IA +station = ('kpro', 0.0029645435509934731) +zone = ('iaz059', 1.391953511202284e-05) + +[fips1904915] +centroid = (0.72998745030513235, -1.6258170460658545) +description = Baxter city, IA +station = ('ktnu', 0.0030424673337369739) +zone = ('iaz061', 0.0027487671453862764) + +[fips1904960] +centroid = (0.73045443059979598, -1.6503441231375457) +description = Bayard city, IA +station = ('kcin', 0.0045300422043323286) +zone = ('iaz058', 0.0030264329861008931) + +[fips1904990003] +centroid = (0.72507913066291874, -1.641856237919247) +description = Adams township, IA +station = ('kpro', 0.0051238259003700071) +zone = ('iaz059', 0.0024940168605752) + +[fips1904990018] +centroid = (0.72691863788135069, -1.6405246040598529) +description = Adel township, IA +station = ('kpro', 0.0038142740401344607) +zone = ('iaz059', 0.00085067503722584194) + +[fips1904990156] +centroid = (0.72979555135387553, -1.6405532623661707) +description = Beaver township, IA +station = ('kpro', 0.0021407741935653528) +zone = ('iaz059', 0.0023252872751310101) + +[fips1904990300] +centroid = (0.72527333344878819, -1.6378492237560556) +description = Boone township, IA +station = ('kdsm', 0.002319683686436183) +zone = ('iaz059', 0.0034355281504012312) + +[fips1904990759] +centroid = (0.72683351817373087, -1.6424564217424229) +description = Colfax township, IA +station = ('kpro', 0.0033137051026128376) +zone = ('iaz059', 0.0011128128942100432) + +[fips1904990879] +centroid = (0.72977153562336816, -1.6446551002676226) +description = Dallas township, IA +station = ('kpro', 0.00098073740630014476) +zone = ('iaz059', 0.003351951253157473) + +[fips1904990972] +centroid = (0.72983695056373288, -1.6384182010922059) +description = Des Moines township, IA +station = ('kbnw', 0.004086347630680472) +zone = ('iaz059', 0.003149178457863608) + +[fips1904991647] +centroid = (0.72848538504428095, -1.6382212755927033) +description = Grant township, IA +station = ('kikv', 0.0039675363504965517) +zone = ('iaz059', 0.0024884395778519927) + +[fips1904992544] +centroid = (0.72836958244841121, -1.6444900444802615) +description = Lincoln township, IA +station = ('kpro', 0.0018851652476584123) +zone = ('iaz059', 0.0025193350011114006) + +[fips1904992646] +centroid = (0.72683652014004441, -1.6444850528386008) +description = Linn township, IA +station = ('kpro', 0.0033341333899352217) +zone = ('iaz059', 0.0024778813080392147) + +[fips1904993993] +centroid = (0.72967304669367805, -1.6422763735767869) +description = Spring Valley township, IA +station = ('kpro', 0.00092860255469570338) +zone = ('iaz059', 0.0022541950881341116) + +[fips1904994029] +centroid = (0.72835989587106265, -1.6402543398251814) +description = Sugar Grove township, IA +station = ('kpro', 0.0029048378876069371) +zone = ('iaz059', 0.0011351152661193803) + +[fips1904994194] +centroid = (0.72532771790828032, -1.6438309907014159) +description = Union township, IA +station = ('kpro', 0.0047543106228967614) +zone = ('iaz059', 0.0029080547911324002) + +[fips1904994326] +centroid = (0.72524137647018405, -1.6398888678798138) +description = Van Meter township, IA +station = ('kdsm', 0.0038308087640287285) +zone = ('iaz059', 0.0025292986996628803) + +[fips1904994395] +centroid = (0.72687940287976593, -1.6385467445916151) +description = Walnut township, IA +station = ('kdsm', 0.0034396701784698645) +zone = ('iaz059', 0.0021628168238782518) + +[fips1904994485] +centroid = (0.72842394945461075, -1.6422943155614973) +description = Washington township, IA +station = ('kpro', 0.0018427646233508837) +zone = ('iaz059', 0.0011532426605339698) + +[fips1905050] +centroid = (0.7203780688693795, -1.617595532997995) +description = Beacon city, IA +station = ('kooa', 0.0026055343158936928) +zone = ('iaz075', 0.0011815435060820402) + +[fips1905095] +centroid = (0.71222039994555797, -1.641496560466996) +description = Beaconsfield city, IA +station = ('klwd', 0.0036319852397917172) +zone = ('iaz093', 0.0028459996188056262) + +[fips19051] +centroid = (0.71118831694568363, -1.6128647831538794) +description = Davis County, IA +station = ('kotm', 0.0061642274834053483) +zone = ('iaz097', 1.0900899633561971e-05) + +[fips1905140] +centroid = (0.7368798078811355, -1.6200635856399477) +description = Beaman city, IA +station = ('kmiw', 0.0021756258407969547) +zone = ('iaz038', 0.0031994016086192892) + +[fips1905185] +centroid = (0.73370514123822039, -1.6430514044844275) +description = Beaver city, IA +station = ('kpro', 0.0036432638463343575) +zone = ('iaz046', 0.0033314641779491321) + +[fips1905190268] +centroid = (0.7112061018507615, -1.6129814758676675) +description = Bloomfield city, IA +station = ('kotm', 0.0061396337309265097) +zone = ('iaz097', 9.9999334712029593e-05) + +[fips1905190732] +centroid = (0.71115482407733788, -1.6127618436345967) +description = Cleveland township, IA +station = ('kotm', 0.0062046479426558021) +zone = ('iaz097', 7.4414689275012497e-05) + +[fips1905191080] +centroid = (0.71199436235413216, -1.6142462636167103) +description = Drakesville township, IA +station = ('kotm', 0.0053613047637758047) +zone = ('iaz097', 0.0013316196951376341) + +[fips1905191263] +centroid = (0.70925251991241911, -1.6159690606680615) +description = Fabius township, IA +station = ('ktvk', 0.0041953032979942118) +zone = ('moz008', 0.0030478987884936786) + +[fips1905191377] +centroid = (0.71172891522819637, -1.6158384751334274) +description = Fox River township, IA +station = ('ktvk', 0.004563000770986347) +zone = ('iaz097', 0.0023261598313453914) + +[fips1905191782] +centroid = (0.70932910495999679, -1.6120576730945873) +description = Grove township, IA +station = ('kotm', 0.0080811333939419822) +zone = ('iaz097', 0.0019482236088995974) + +[fips1905192502] +centroid = (0.71301644461739255, -1.6120148601680357) +description = Lick Creek township, IA +station = ('kotm', 0.0044682106122936318) +zone = ('iaz097', 0.0019416413876591808) + +[fips1905192844] +centroid = (0.71319677203570875, -1.615857935554587) +description = Marion township, IA +station = ('kotm', 0.0044837210672027941) +zone = ('iaz097', 0.0030385691943030412) + +[fips1905193297] +centroid = (0.71175698012256838, -1.6116927771078726) +description = Perry township, IA +station = ('kotm', 0.0057484767717888175) +zone = ('iaz097', 0.0010507420595753164) + +[fips1905193480] +centroid = (0.71021847238693547, -1.6096067595858889) +description = Prairie township, IA +station = ('kffl', 0.0069991999529567007) +zone = ('iaz097', 0.002642483884660068) + +[fips1905193693] +centroid = (0.70922691593229248, -1.6097718328265425) +description = Roscoe township, IA +station = ('kffl', 0.0079474360348224735) +zone = ('iaz097', 0.0030463635048466656) + +[fips1905193747] +centroid = (0.71312673197282617, -1.6099541499202059) +description = Salt Creek township, IA +station = ('kffl', 0.0047814546337199455) +zone = ('iaz097', 0.0029326645406767176) + +[fips1905193933] +centroid = (0.71322033398061058, -1.6138748051920084) +description = Soap Creek township, IA +station = ('kotm', 0.0041169896556335628) +zone = ('iaz097', 0.0021804379566100125) + +[fips1905194197] +centroid = (0.71164109026023603, -1.6098095668449706) +description = Union township, IA +station = ('kffl', 0.0058517974111120946) +zone = ('iaz097', 0.0023509739867726399) + +[fips1905194677] +centroid = (0.7104940249692403, -1.6152532836885261) +description = West Grove township, IA +station = ('ktvk', 0.0046947594463842071) +zone = ('iaz097', 0.0019441886232625303) + +[fips1905194791] +centroid = (0.70950557520066582, -1.6135958143110771) +description = Wyacondah township, IA +station = ('ktvk', 0.0059484752259346694) +zone = ('iaz097', 0.0017679116949765093) + +[fips1905200] +centroid = (0.71294232048406037, -1.5917807170975971) +description = Beaverdale CDP, IA +station = ('kbrl', 0.0016954962430327512) +zone = ('iaz089', 0.0013309130829714088) + +[fips19053] +centroid = (0.71098393889027511, -1.6368497086000238) +description = Decatur County, IA +station = ('klwd', 0.0023596702659826035) +zone = ('iaz094', 3.2387700422662205e-05) + +[fips1905365] +centroid = (0.70984551297907683, -1.6532507770205247) +description = Bedford city, IA +station = ('kicl', 0.0041660256909084262) +zone = ('iaz092', 0.001213309936246785) + +[fips1905390276] +centroid = (0.70984474503420592, -1.6399837614312447) +description = Bloomington township, IA +station = ('klwd', 0.0010752512914837047) +zone = ('iaz094', 0.0026244975142599267) + +[fips1905390408] +centroid = (0.71026283865652118, -1.6378357498142304) +description = Burrell township, IA +station = ('klwd', 0.0013301551519645761) +zone = ('iaz094', 0.0010386694700909576) + +[fips1905390594] +centroid = (0.71166796833071677, -1.6358439626185619) +description = Center township, IA +station = ('klwd', 0.0033771282640542677) +zone = ('iaz094', 0.0010258918824260189) + +[fips1905390921] +centroid = (0.71178253174281758, -1.6380364452249172) +description = Decatur township, IA +station = ('klwd', 0.0026717998774107017) +zone = ('iaz094', 0.0011700895809957583) + +[fips1905391140] +centroid = (0.70994860957799211, -1.6360358615698185) +description = Eden township, IA +station = ('klwd', 0.0022773533507909776) +zone = ('iaz094', 0.0012366837115591824) + +[fips1905391323] +centroid = (0.70856896171087558, -1.640046872536997) +description = Fayette township, IA +station = ('klwd', 0.0010890711559644712) +zone = ('iaz094', 0.0034227092450450202) + +[fips1905391398] +centroid = (0.71301485636777329, -1.6356929218250942) +description = Franklin township, IA +station = ('ki75', 0.0034796242448639852) +zone = ('iaz094', 0.0021997177661628549) + +[fips1905391506] +centroid = (0.71295806335391343, -1.6337786621547994) +description = Garden Grove township, IA +station = ('ki75', 0.0036238775832937724) +zone = ('iaz094', 0.0030526123841120197) + +[fips1905391611] +centroid = (0.71146121662752548, -1.6399910394542254) +description = Grand River township, IA +station = ('klwd', 0.0024308425632041178) +zone = ('iaz094', 0.0024003627904308745) + +[fips1905391806] +centroid = (0.70875037123332785, -1.6360168200276792) +description = Hamilton township, IA +station = ('klwd', 0.0022045924531881988) +zone = ('iaz094', 0.0023496112842586281) + +[fips1905391959] +centroid = (0.71147708167042611, -1.6339458472438479) +description = High Point township, IA +station = ('klwd', 0.0043767013039133426) +zone = ('iaz094', 0.0022717354393019156) + +[fips1905392380] +centroid = (0.70895604083238295, -1.6394604070017418) +description = Lamoni city, IA +station = ('klwd', 0.00050735564289355027) +zone = ('iaz094', 0.002834911476957597) + +[fips1905392416] +centroid = (0.71107054212775911, -1.6363434060373125) +description = Leon city, IA +station = ('klwd', 0.0026846149418597782) +zone = ('iaz094', 0.00041130175429799319) + +[fips1905392712] +centroid = (0.71309953974308005, -1.6377628474113746) +description = Long Creek township, IA +station = ('ki75', 0.003943878717639804) +zone = ('iaz094', 0.0021967454780707548) + +[fips1905393006] +centroid = (0.70875761434972373, -1.6338811304351839) +description = Morgan township, IA +station = ('klwd', 0.003806403121256931) +zone = ('iaz094', 0.0031987383138165275) + +[fips1905393072] +centroid = (0.70863771023011168, -1.6381961079448895) +description = New Buda township, IA +station = ('klwd', 0.00074644286573120075) +zone = ('iaz094', 0.0025710695970055128) + +[fips1905393579] +centroid = (0.71301571157910681, -1.6399738130545083) +description = Richland township, IA +station = ('klwd', 0.0039214389996451923) +zone = ('iaz094', 0.0030857178577921264) + +[fips1905394776] +centroid = (0.70995658573267362, -1.6337718553707166) +description = Woodland township, IA +station = ('klwd', 0.0039394474243680125) +zone = ('iaz094', 0.0025794758672522725) + +[fips19055] +centroid = (0.74129374555942917, -1.5945230831380859) +description = Delaware County, IA +station = ('kmxo', 0.004866218311935999) +zone = ('iaz041', 0.00010646193618573565) + +[fips1905590] +centroid = (0.73120212965135034, -1.6105085013972245) +description = Belle Plaine city, IA +station = ('kvti', 0.0065111549827994702) +zone = ('iaz051', 0.0042256610771279259) + +[fips1905590006] +centroid = (0.73897237038781416, -1.5976556175328578) +description = Adams township, IA +station = ('kiib', 0.0054341835570028496) +zone = ('iaz041', 0.0031823935725617406) + +[fips1905590330] +centroid = (0.74208999967077405, -1.5915465288185648) +description = Bremen township, IA +station = ('kmxo', 0.0049875230773253256) +zone = ('iaz041', 0.0024410828043125005) + +[fips1905590750] +centroid = (0.74198934653281157, -1.5978390167306573) +description = Coffins Grove township, IA +station = ('kiib', 0.0050617913477699669) +zone = ('iaz041', 0.0024546520365049344) + +[fips1905590783] +centroid = (0.7434179334321539, -1.591397564966907) +description = Colony township, IA +station = ('kmxo', 0.0063096816874768057) +zone = ('iaz041', 0.0032302631213370187) + +[fips1905590948] +centroid = (0.74204144461098343, -1.5957595616466613) +description = Delaware township, IA +station = ('kmxo', 0.0059887819504296468) +zone = ('iaz041', 0.0011255715720921509) + +[fips1905590957] +centroid = (0.7405341608156687, -1.5935707267784427) +description = Delhi township, IA +station = ('kmxo', 0.003860047981240059) +zone = ('iaz041', 0.0010834471200727033) + +[fips1905591179] +centroid = (0.74361793071113991, -1.5936701581859287) +description = Elk township, IA +station = ('kmxo', 0.0067662143278096045) +zone = ('iaz041', 0.0024676891939223004) + +[fips1905591899] +centroid = (0.73897039816575938, -1.5956162526617801) +description = Hazel Green township, IA +station = ('kmxo', 0.0037860027128037961) +zone = ('iaz041', 0.0023964660521536441) + +[fips1905591980] +centroid = (0.74352237393459319, -1.5957520916374628) +description = Honey Creek township, IA +station = ('kmxo', 0.007253252156379281) +zone = ('iaz041', 0.002400674123315761) + +[fips1905592946] +centroid = (0.74046799538372565, -1.5955304697290447) +description = Milo township, IA +station = ('kmxo', 0.004660246847559401) +zone = ('iaz041', 0.0010200342663465223) + +[fips1905593132] +centroid = (0.74052550398257888, -1.5913712279484944) +description = North Fork township, IA +station = ('kmxo', 0.0034184024766580209) +zone = ('iaz041', 0.0025356994987815835) + +[fips1905593177] +centroid = (0.74201175656040708, -1.5937007189011312) +description = Oneida township, IA +station = ('kmxo', 0.0052485602406264573) +zone = ('iaz041', 0.0010319353834323864) + +[fips1905593483] +centroid = (0.74048132969921077, -1.5976601030290354) +description = Prairie township, IA +station = ('kiib', 0.0050935265491465018) +zone = ('iaz041', 0.0023467014730255676) + +[fips1905593582] +centroid = (0.74350193612905235, -1.5979056534014986) +description = Richland township, IA +station = ('kiib', 0.0055418454694308745) +zone = ('iaz041', 0.0032776294675106316) + +[fips1905593945] +centroid = (0.73896147953328162, -1.5917121256579938) +description = South Fork township, IA +station = ('kmxo', 0.0018955348969410327) +zone = ('iaz041', 0.0031661186613353019) + +[fips1905594200] +centroid = (0.73902090799431208, -1.5937119064616365) +description = Union township, IA +station = ('kmxo', 0.002686426943364528) +zone = ('iaz041', 0.0023465297413478628) + +[fips1905635] +centroid = (0.7376231785161449, -1.5783266894789665) +description = Bellevue city, IA +station = ('kdbq', 0.0042128642582983091) +zone = ('iaz054', 0.0024344541143032235) + +[fips1905680] +centroid = (0.74781377204610433, -1.6337756776417784) +description = Belmond city, IA +station = ('kcav', 0.0026355856892479115) +zone = ('iaz025', 0.0025608127941167584) + +[fips19057] +centroid = (0.71410738011964425, -1.5915120760191304) +description = Des Moines County, IA +station = ('kbrl', 0.0026895767062251053) +zone = ('iaz089', 0.00015473469980619198) + +[fips1905770] +centroid = (0.72849744526941229, -1.5877930760891033) +description = Bennett city, IA +station = ('kdvn', 0.0055257936873294696) +zone = ('iaz065', 0.0021407896510532666) + +[fips1905790207] +centroid = (0.71463312565022241, -1.5900396289956853) +description = Benton township, IA +station = ('kbrl', 0.0031468979575662321) +zone = ('iaz089', 0.0011110031557008898) + +[fips1905790401] +centroid = (0.71220683873726998, -1.590437197545997) +description = Burlington city, IA +station = ('kbrl', 0.00070227176170580897) +zone = ('iaz089', 0.0021683824686704527) + +[fips1905790813] +centroid = (0.71099397453347402, -1.5904689625383834) +description = Concordia township, IA +station = ('kbrl', 0.00052496996902737106) +zone = ('ilz025', 0.0030228245277360058) + +[fips1905790887] +centroid = (0.71314217813670622, -1.5937396921033282) +description = Danville city, IA +station = ('kmpz', 0.0030014641197223415) +zone = ('iaz089', 0.0020729721891935295) + +[fips1905790888] +centroid = (0.7129379920675154, -1.5938768575292426) +description = Danville township, IA +station = ('kmpz', 0.0030236013413601839) +zone = ('iaz089', 0.0022725586029451019) + +[fips1905791347] +centroid = (0.71314490085033944, -1.5917286713793029) +description = Flint River township, IA +station = ('kbrl', 0.0018505805864406381) +zone = ('iaz089', 0.0011245739506187706) + +[fips1905791401] +centroid = (0.71446806986286138, -1.5917598429597435) +description = Franklin township, IA +station = ('kbrl', 0.0030880301945176904) +zone = ('iaz089', 0.00034188761862652184) + +[fips1905792010] +centroid = (0.71609750925252325, -1.5886262264608353) +description = Huron township, IA +station = ('kbrl', 0.0048161630221909514) +zone = ('iaz089', 0.002806057138183275) + +[fips1905792112] +centroid = (0.71469431689379737, -1.588173453146283) +description = Jackson township, IA +station = ('kbrl', 0.0036643601844901278) +zone = ('ilz025', 0.0024664362181081377) + +[fips1905792906] +centroid = (0.71572268234236491, -1.5911074912452254) +description = Mediapolis city, IA +station = ('kbrl', 0.0042292022166441068) +zone = ('iaz089', 0.0014965107899896353) + +[fips1905792924] +centroid = (0.71257152528447421, -1.5928262391327119) +description = Middletown city, IA +station = ('kbrl', 0.0020053531340756361) +zone = ('iaz089', 0.0019834148165545759) + +[fips1905793390] +centroid = (0.71451557772510066, -1.593655061087899) +description = Pleasant Grove township, IA +station = ('kmpz', 0.0026588203269735681) +zone = ('iaz089', 0.0017121405696570112) + +[fips1905794080] +centroid = (0.713345823153829, -1.5896912089171098) +description = Tama township, IA +station = ('kbrl', 0.0019519076598594831) +zone = ('iaz089', 0.0015843753916086241) + +[fips1905794203] +centroid = (0.71155089164449303, -1.5919678687532888) +description = Union township, IA +station = ('kbrl', 0.0010542972760195935) +zone = ('iaz089', 0.0027256859594534198) + +[fips1905794488] +centroid = (0.71600067838562265, -1.5937269162932037) +description = Washington township, IA +station = ('kmpz', 0.0029273285077510785) +zone = ('iaz089', 0.0024747602333967029) + +[fips1905794658] +centroid = (0.712475479815737, -1.5913278216099971) +description = West Burlington city, IA +station = ('kbrl', 0.0011182811436544658) +zone = ('iaz089', 0.001770396687053404) + +[fips1905794803] +centroid = (0.71623312133540318, -1.5914727886576678) +description = Yellow Springs township, IA +station = ('kmpz', 0.0045811200259260523) +zone = ('iaz089', 0.0019889806036626628) + +[fips1905870] +centroid = (0.7221395075103697, -1.6689274814415702) +description = Bentley CDP, IA +station = ('kcbf', 0.0026799414896646013) +zone = ('iaz069', 0.0012532990713807755) + +[fips19059] +centroid = (0.75729157310954942, -1.6614846295661956) +description = Dickinson County, IA +station = ('kspw', 0.0038999151177300543) +zone = ('iaz003', 0.00060697606477233806) + +[fips1905905] +centroid = (0.71042388018660274, -1.6468908146795498) +description = Benton city, IA +station = ('kcsq', 0.005452734463991752) +zone = ('iaz093', 0.0016251875782025923) + +[fips1905990639] +centroid = (0.7571205308428538, -1.6597236098042258) +description = Center Grove township, IA +station = ('kspw', 0.0040277927971039979) +zone = ('iaz003', 0.00070917094412946045) + +[fips1905990999] +centroid = (0.75860269935023261, -1.6617022721239194) +description = Diamond Lake township, IA +station = ('kmjq', 0.0043090966958337614) +zone = ('iaz003', 0.0016818476391214424) + +[fips1905991257] +centroid = (0.75733255344038619, -1.6636893992904849) +description = Excelsior township, IA +station = ('kspw', 0.0041551955077040884) +zone = ('iaz003', 0.0021876479237751844) + +[fips1905992379] +centroid = (0.75729157310954942, -1.6614846295661956) +description = Lakeville township, IA +station = ('kspw', 0.0038999151177300543) +zone = ('iaz003', 0.00060697606477233806) + +[fips1905992673] +centroid = (0.75570220647951325, -1.6575995091979636) +description = Lloyd township, IA +station = ('kspw', 0.0038552241438524386) +zone = ('iaz003', 0.0026452852711624842) + +[fips1905992931] +centroid = (0.75568602727734724, -1.6596379315912455) +description = Milford township, IA +station = ('kspw', 0.0027942861056245816) +zone = ('iaz003', 0.0015993570632478109) + +[fips1905993168] +centroid = (0.75584539329134681, -1.6619267563723108) +description = Okoboji township, IA +station = ('kspw', 0.0024456700713245696) +zone = ('iaz003', 0.0015298038094024766) + +[fips1905993585] +centroid = (0.75728860604982096, -1.657536747158062) +description = Richland township, IA +station = ('kest', 0.0027943967369014489) +zone = ('iaz003', 0.0023064889854793216) + +[fips1905993903] +centroid = (0.75876442155872226, -1.6637173594651018) +description = Silver Lake township, IA +station = ('kotg', 0.0044938400279345252) +zone = ('iaz003', 0.0027606123243268223) + +[fips1905993960] +centroid = (0.75871907790475546, -1.6594776405527423) +description = Spirit Lake township, IA +station = ('kmjq', 0.0033532659686730921) +zone = ('iaz003', 0.0018571397872380454) + +[fips1905994062] +centroid = (0.7585518928157069, -1.6574718209098878) +description = Superior township, IA +station = ('kest', 0.0029443303357545364) +zone = ('iaz003', 0.0027635493625103947) + +[fips1905994698] +centroid = (0.75566131341513909, -1.6637878184070047) +description = Westport township, IA +station = ('kspw', 0.0026676825030608731) +zone = ('iaz003', 0.0026613407019189664) + +[fips1906040] +centroid = (0.73210306861122976, -1.6425930286629762) +description = Berkley city, IA +station = ('kpro', 0.00211922042702835) +zone = ('iaz047', 0.0028358601357787146) + +[fips1906085] +centroid = (0.73851130675931476, -1.5853125792495839) +description = Bernard city, IA +station = ('kdbq', 0.0022717851612765916) +zone = ('iaz042', 0.0027867368118142258) + +[fips19061] +centroid = (0.7411275553080543, -1.5861337741159396) +description = Dubuque County, IA +station = ('kdbq', 0.0025555812645826929) +zone = ('iaz042', 0.00010392880870889903) + +[fips1906175] +centroid = (0.73218539579204633, -1.5976332075052622) +description = Bertram city, IA +station = ('kcid', 0.0026088551061266077) +zone = ('iaz052', 0.0023672195658711245) + +[fips1906190486] +centroid = (0.73895882663281864, -1.5895066927085888) +description = Cascade township, IA +station = ('kmxo', 0.0022155735526379968) +zone = ('iaz042', 0.0033297022142946839) + +[fips1906190597] +centroid = (0.74202842445476358, -1.5854697985086035) +description = Center township, IA +station = ('kdbq', 0.0027053807162925737) +zone = ('iaz042', 0.00096981404003129961) + +[fips1906190798] +centroid = (0.74354846660691054, -1.5874867533520856) +description = Concord township, IA +station = ('kdbq', 0.0048299898232782119) +zone = ('iaz042', 0.002514553742372853) + +[fips1906191005] +centroid = (0.74049757871454691, -1.5897145439692089) +description = Dodge township, IA +station = ('kmxo', 0.003551100960993845) +zone = ('iaz042', 0.0026942418763327919) + +[fips1906191085] +centroid = (0.7418065582002501, -1.5831026782572937) +description = Dubuque city, IA +station = ('kdbq', 0.0017881628459719583) +zone = ('iaz042', 0.0023560626841317954) + +[fips1906191086] +centroid = (0.74230978898347766, -1.583716946887533) +description = Dubuque township, IA +station = ('kdbq', 0.0023482184773376651) +zone = ('iaz042', 0.0021284866544433092) + +[fips1906192061] +centroid = (0.74202135587129303, -1.5874944153475019) +description = Iowa township, IA +station = ('kdbq', 0.0038646508152222346) +zone = ('iaz042', 0.0012476489241960683) + +[fips1906192217] +centroid = (0.74378583138518173, -1.5855644651672318) +description = Jefferson township, IA +station = ('kdbq', 0.0042095718482409294) +zone = ('iaz042', 0.0026074433342640774) + +[fips1906192451] +centroid = (0.7435543483664897, -1.5895481966382012) +description = Liberty township, IA +station = ('kdbq', 0.0059753187801630603) +zone = ('iaz042', 0.0033977406807767932) + +[fips1906193024] +centroid = (0.74035681791037344, -1.58124840555339) +description = Mosalem township, IA +station = ('kdbq', 0.0013462572312760174) +zone = ('iaz042', 0.0037525477319339451) + +[fips1906193108] +centroid = (0.74202915749304943, -1.5895587384268832) +description = New Wine township, IA +station = ('kmxo', 0.0050584337558052354) +zone = ('iaz042', 0.0026073739119657452) + +[fips1906193309] +centroid = (0.74343362394212942, -1.5835980376055947) +description = Peru township, IA +station = ('kdbq', 0.0034411045945449852) +zone = ('iaz042', 0.0029268736337117003) + +[fips1906193498] +centroid = (0.73894730745975545, -1.5854545617842335) +description = Prairie Creek township, IA +station = ('kdbq', 0.0020981105099173083) +zone = ('iaz042', 0.0023382777154688839) + +[fips1906194077] +centroid = (0.7404251300972966, -1.5834468746390795) +description = Table Mound township, IA +station = ('kdbq', 0.000516497894122101) +zone = ('iaz042', 0.0021796907412453153) + +[fips1906194098] +centroid = (0.74048689729952477, -1.5874814126445747) +description = Taylor township, IA +station = ('kmxo', 0.0043345343364874405) +zone = ('iaz042', 0.0011983739679289965) + +[fips1906194332] +centroid = (0.74047932257057114, -1.5854546315974036) +description = Vernon township, IA +station = ('kdbq', 0.0018599016480006425) +zone = ('iaz042', 0.00092159893671170498) + +[fips1906194491] +centroid = (0.7389457017568436, -1.5834226843756469) +description = Washington township, IA +station = ('kdbq', 0.0011156153474652006) +zone = ('iaz042', 0.0030612504509841048) + +[fips1906194728] +centroid = (0.7389528227001918, -1.5874785852111863) +description = Whitewater township, IA +station = ('kmxo', 0.0032870482972041665) +zone = ('iaz042', 0.0024570819030991413) + +[fips19063] +centroid = (0.7570886436774199, -1.6522922072887443) +description = Emmet County, IA +station = ('kest', 0.0010924705319807439) +zone = ('iaz004', 0.0001145615780817681) + +[fips1906355] +centroid = (0.72546949100341973, -1.57911524668831) +description = Bettendorf city, IA +station = ('kdvn', 0.0016465610711599145) +zone = ('ilz015', 0.0020949364045170032) + +[fips1906390081] +centroid = (0.75723402960411101, -1.6493639985895034) +description = Armstrong Grove township, IA +station = ('kest', 0.0031594380858523704) +zone = ('iaz004', 0.0022475370984928284) + +[fips1906390600] +centroid = (0.75727464341580497, -1.6532333062747122) +description = Center township, IA +station = ('kest', 0.00039248319462891103) +zone = ('iaz004', 0.00059949030597955934) + +[fips1906390963] +centroid = (0.75570044369696865, -1.6493631782847549) +description = Denmark township, IA +station = ('kest', 0.0036172805853747821) +zone = ('iaz004', 0.0026387219493496459) + +[fips1906391209] +centroid = (0.75862181070554191, -1.6534923829488781) +description = Ellsworth township, IA +station = ('kest', 0.0011587150265110551) +zone = ('iaz004', 0.0017112862451420278) + +[fips1906391221] +centroid = (0.75861819787399021, -1.6555472637970061) +description = Emmet township, IA +station = ('kest', 0.0017641541080264847) +zone = ('iaz004', 0.0027212624874752588) + +[fips1906391242] +centroid = (0.7572896357940796, -1.6553553299391643) +description = Estherville township, IA +station = ('kest', 0.0012170887637923569) +zone = ('iaz004', 0.0021213276476569967) + +[fips1906391926] +centroid = (0.75558225000002366, -1.6536618893258317) +description = High Lake township, IA +station = ('kest', 0.0018908428422055588) +zone = ('iaz004', 0.0017441468137373347) + +[fips1906392079] +centroid = (0.75851384463801352, -1.649371643131627) +description = Iowa Lake township, IA +station = ('kfrm', 0.0034934361043346433) +zone = ('iaz004', 0.0026522234525523576) + +[fips1906392085] +centroid = (0.75561675515933557, -1.6514094372063781) +description = Jack Creek township, IA +station = ('kest', 0.0024937119274691536) +zone = ('iaz004', 0.0016537083522351441) + +[fips1906392547] +centroid = (0.75864518066422615, -1.6513530281649536) +description = Lincoln township, IA +station = ('kest', 0.002068232297219837) +zone = ('iaz004', 0.0017498403263906824) + +[fips1906394065] +centroid = (0.75727174616924664, -1.6512752912000697) +description = Swan Lake township, IA +station = ('kest', 0.0017729590374480821) +zone = ('iaz004', 0.00087333855948534247) + +[fips1906394146] +centroid = (0.75565153957132791, -1.6553171944950082) +description = Twelve Mile Lake township, IA +station = ('kest', 0.0021682437192732744) +zone = ('iaz004', 0.0025319035214241446) + +[fips1906490] +centroid = (0.72187271648090978, -1.6368899035326971) +description = Bevington city, IA +station = ('kdsm', 0.0034055968951367897) +zone = ('iaz073', 0.0029889361441789567) + +[fips19065] +centroid = (0.74812578455648338, -1.6028994418171822) +description = Fayette County, IA +station = ('kolz', 0.0036420853842925923) +zone = ('iaz029', 7.1631972718180409e-05) + +[fips1906590090] +centroid = (0.75115644408281645, -1.6040225960974255) +description = Auburn township, IA +station = ('kdeh', 0.0047985533930327579) +zone = ('iaz029', 0.0031573162967344455) + +[fips1906590120] +centroid = (0.74818470687203076, -1.6059856726268986) +description = Banks township, IA +station = ('kolz', 0.0033071904190023131) +zone = ('iaz029', 0.0022010081551212275) + +[fips1906590231] +centroid = (0.74971028171790643, -1.6060349258183901) +description = Bethel township, IA +station = ('kolz', 0.0048230965942002183) +zone = ('iaz029', 0.0027583395331039003) + +[fips1906590603] +centroid = (0.74817187870202861, -1.6040453900974565) +description = Center township, IA +station = ('kolz', 0.0033702498176433121) +zone = ('iaz029', 0.00078102751262460401) + +[fips1906590729] +centroid = (0.75114785706289666, -1.5998477336200703) +description = Clermont township, IA +station = ('kdeh', 0.0043773754485018791) +zone = ('iaz029', 0.0038228648235962485) + +[fips1906591071] +centroid = (0.75115080666933243, -1.6019294401788013) +description = Dover township, IA +station = ('kdeh', 0.0043337544345265688) +zone = ('iaz029', 0.00315519340005986) + +[fips1906591143] +centroid = (0.75116120883167437, -1.6060919980849304) +description = Eden township, IA +station = ('kdeh', 0.0056402881856476121) +zone = ('iaz019', 0.0037854830608128097) + +[fips1906591278] +centroid = (0.74655102633228643, -1.5998799174914768) +description = Fairfield township, IA +station = ('kolz', 0.0042729510362251328) +zone = ('iaz029', 0.0027500562268395808) + +[fips1906591324] +centroid = (0.74772556310570859, -1.6022769352328736) +description = Fayette city, IA +station = ('kolz', 0.0035569444228754324) +zone = ('iaz029', 0.00063551529168531199) + +[fips1906591473] +centroid = (0.74654439408112883, -1.6060911777801818) +description = Fremont township, IA +station = ('kolz', 0.0017351620221413106) +zone = ('iaz029', 0.0027539208945951878) + +[fips1906591845] +centroid = (0.74666611334316291, -1.6041707396443348) +description = Harlan township, IA +station = ('kolz', 0.0019187770956252501) +zone = ('iaz029', 0.0016698141593993864) + +[fips1906592013] +centroid = (0.74806084085501667, -1.5998226532387192) +description = Illyria township, IA +station = ('kolz', 0.0050765473987568798) +zone = ('iaz029', 0.0023185201973880639) + +[fips1906592220] +centroid = (0.74504459774830512, -1.6040278320851817) +description = Jefferson township, IA +station = ('kolz', 0.0009118806048664113) +zone = ('iaz029', 0.003141748840663915) + +[fips1906593183] +centroid = (0.74513512797660608, -1.6060517333390869) +description = Oran township, IA +station = ('kolz', 0.00062224758990043843) +zone = ('iaz029', 0.0037157763074820993) + +[fips1906593411] +centroid = (0.74975641077003663, -1.5998806679830553) +description = Pleasant Valley township, IA +station = ('kdeh', 0.0057438921228291865) +zone = ('iaz029', 0.0028181832066020282) + +[fips1906593522] +centroid = (0.74501550310967446, -1.5998853629187433) +description = Putnam township, IA +station = ('kiib', 0.0053618158444133585) +zone = ('iaz029', 0.0038264136014679109) + +[fips1906593771] +centroid = (0.74490327843877113, -1.6017831466808992) +description = Scott township, IA +station = ('kolz', 0.0025537699355910846) +zone = ('iaz029', 0.0033083642748194409) + +[fips1906593930] +centroid = (0.74654949044254471, -1.601942687227824) +description = Smithfield township, IA +station = ('kolz', 0.0029289746576301829) +zone = ('iaz029', 0.0017215078248403997) + +[fips1906594045] +centroid = (0.74785190749026043, -1.6070366051826945) +description = Sumner city, IA +station = ('kolz', 0.0032088867958246694) +zone = ('iaz028', 0.0033547165863793207) + +[fips1906594206] +centroid = (0.74960224583720791, -1.601915931330391) +description = Union township, IA +station = ('kolz', 0.0052839018405061028) +zone = ('iaz029', 0.0017015536470176783) + +[fips1906594662] +centroid = (0.74807180152271913, -1.6021988492021393) +description = Westfield township, IA +station = ('kolz', 0.0038686314433505069) +zone = ('iaz029', 0.00057690791826497923) + +[fips1906594702] +centroid = (0.74977407350206682, -1.6024426542453505) +description = West Union city, IA +station = ('kolz', 0.0052737679013431524) +zone = ('iaz029', 0.0017286551515056032) + +[fips1906594761] +centroid = (0.74962174116495273, -1.6040287571096852) +description = Windsor township, IA +station = ('kolz', 0.0047862207887751657) +zone = ('iaz029', 0.0017102259228141254) + +[fips1906625] +centroid = (0.71344768056897534, -1.6047937523741267) +description = Birmingham city, IA +station = ('kffl', 0.0030459698577157035) +zone = ('iaz098', 0.002170335600282704) + +[fips19067] +centroid = (0.751412082458356, -1.6194450584063333) +description = Floyd County, IA +station = ('kccy', 0.0021903174303664688) +zone = ('iaz018', 0.00012839363389722448) + +[fips1906760] +centroid = (0.74138750464684633, -1.6343757567451991) +description = Blairsburg city, IA +station = ('kebs', 0.0029875865123621028) +zone = ('iaz036', 0.0018464609271279342) + +[fips1906790534] +centroid = (0.75379566116451213, -1.6171447668120824) +description = Cedar township, IA +station = ('kccy', 0.0021971424988584953) +zone = ('iaz018', 0.0028253400134710034) + +[fips1906790645] +centroid = (0.75162185358115319, -1.6174744246011992) +description = Charles City city, IA +station = ('kccy', 0.00073764077312404126) +zone = ('iaz018', 0.0014629502362141624) + +[fips1906791353] +centroid = (0.75297373325987049, -1.6188569522615812) +description = Floyd township, IA +station = ('kccy', 0.0021878294868055174) +zone = ('iaz018', 0.0015039269525065025) + +[fips1906793111] +centroid = (0.75271001400989412, -1.6163828607804167) +description = Niles township, IA +station = ('kccy', 0.0010566188396821002) +zone = ('iaz018', 0.0025427573276531781) + +[fips1906793393] +centroid = (0.74963266692607033, -1.6184712694034755) +description = Pleasant Grove township, IA +station = ('kccy', 0.0024982055214235284) +zone = ('iaz018', 0.0020421771547113883) + +[fips1906793648] +centroid = (0.74976025049439099, -1.6161248836636795) +description = Riverton township, IA +station = ('kccy', 0.0019112049823377297) +zone = ('iaz018', 0.0030264343130071746) + +[fips1906793675] +centroid = (0.75154685678319499, -1.622536664830146) +description = Rockford township, IA +station = ('kmcw', 0.0049528627896935013) +zone = ('iaz018', 0.0022380301973388464) + +[fips1906793681] +centroid = (0.75344539103692942, -1.6226226746556844) +description = Rock Grove township, IA +station = ('kmcw', 0.0046451081488635771) +zone = ('iaz018', 0.0029865913235789503) + +[fips1906793711] +centroid = (0.75329976076414296, -1.6207224474325757) +description = Rudd township, IA +station = ('kccy', 0.0035157484916985425) +zone = ('iaz018', 0.0019830097774533825) + +[fips1906793729] +centroid = (0.75122658886545413, -1.6178743493460011) +description = St. Charles township, IA +station = ('kccy', 0.0011149038869996419) +zone = ('iaz018', 0.0012095966060727049) + +[fips1906793774] +centroid = (0.7498102716307532, -1.62287703894087) +description = Scott township, IA +station = ('kmcw', 0.00554366019528165) +zone = ('iaz018', 0.0030300921403880366) + +[fips1906794158] +centroid = (0.75154594921198403, -1.6205029024659672) +description = Ulster township, IA +station = ('kccy', 0.0029515317370058997) +zone = ('iaz018', 0.00075210980786449898) + +[fips1906794209] +centroid = (0.74976000614829574, -1.6203583019374395) +description = Union township, IA +station = ('kccy', 0.0034194397574530038) +zone = ('iaz018', 0.0018927715899335065) + +[fips1906805] +centroid = (0.73140134153217295, -1.6071398239546577) +description = Blairstown city, IA +station = ('kvti', 0.0055013507877186884) +zone = ('iaz051', 0.0030426089459164181) + +[fips1906850] +centroid = (0.7149212969630192, -1.6167822968330281) +description = Blakesburg city, IA +station = ('kotm', 0.0034239391045414423) +zone = ('iaz086', 0.003200463392882933) + +[fips1906895] +centroid = (0.70826845092026725, -1.6619278559297395) +description = Blanchard city, IA +station = ('kicl', 0.0034393688489170945) +zone = ('iaz091', 0.0029195877278971197) + +[fips19069] +centroid = (0.74589349098989011, -1.627893464276952) +description = Franklin County, IA +station = ('kifa', 0.0046521936859461599) +zone = ('iaz026', 0.00013557166218436948) + +[fips1906940] +centroid = (0.73182250693397166, -1.6769491717633689) +description = Blencoe city, IA +station = ('ktqe', 0.0031452169180356984) +zone = ('iaz043', 0.002643514217386911) + +[fips1906985] +centroid = (0.70889830534072695, -1.648949395625692) +description = Blockton city, IA +station = ('kcsq', 0.0071304239568110378) +zone = ('moz003', 0.0025154036386880428) + +[fips1906991557] +centroid = (0.74497392936689188, -1.6245815973015378) +description = Geneva township, IA +station = ('kifa', 0.0044486846438307323) +zone = ('iaz026', 0.0024684311609439284) + +[fips1906991650] +centroid = (0.74351527044453769, -1.6267009855188195) +description = Grant township, IA +station = ('kifa', 0.0024312589059138261) +zone = ('iaz026', 0.0024298042565997621) + +[fips1906991809] +centroid = (0.74503595836850778, -1.6287580829350976) +description = Hamilton township, IA +station = ('kifa', 0.0038507361471210458) +zone = ('iaz026', 0.0010877720738848187) + +[fips1906991819] +centroid = (0.74598873360717155, -1.626733570815954) +description = Hampton city, IA +station = ('kifa', 0.0048203431865501273) +zone = ('iaz026', 0.00075468265217325486) + +[fips1906992040] +centroid = (0.74643483976398128, -1.624489932609223) +description = Ingham township, IA +station = ('kifa', 0.0057579517258781326) +zone = ('iaz026', 0.0024609371685315093) + +[fips1906992403] +centroid = (0.74352212958849795, -1.6287648548125955) +description = Lee township, IA +station = ('kifa', 0.0023744862761419737) +zone = ('iaz026', 0.0024218955967529039) + +[fips1906992847] +centroid = (0.74668141988070302, -1.6289252854774388) +description = Marion township, IA +station = ('kifa', 0.0054953663120957917) +zone = ('iaz026', 0.0012246497192670782) + +[fips1906993009] +centroid = (0.74491554810341265, -1.6309304069885924) +description = Morgan township, IA +station = ('kcav', 0.0042941921032968551) +zone = ('iaz026', 0.0025166383932490616) + +[fips1906993030] +centroid = (0.74661542898168498, -1.6267968913612165) +description = Mott township, IA +station = ('kifa', 0.0054316430958412411) +zone = ('iaz026', 0.001050548696122471) + +[fips1906993156] +centroid = (0.74365458262543183, -1.6306663910326431) +description = Oakland township, IA +station = ('kifa', 0.0031738598657461677) +zone = ('iaz026', 0.003056760068227068) + +[fips1906993216] +centroid = (0.74340941622540424, -1.6245005442110751) +description = Osceola township, IA +station = ('kifa', 0.0032955201125233007) +zone = ('iaz026', 0.0033889327109392639) + +[fips1906993561] +centroid = (0.74502243206680485, -1.6266887333074704) +description = Reeve township, IA +station = ('kifa', 0.0038796271603551914) +zone = ('iaz026', 0.0011102915682297541) + +[fips1906993588] +centroid = (0.74810792983823549, -1.6287557965537773) +description = Richland township, IA +station = ('kmcw', 0.0050041863064627509) +zone = ('iaz026', 0.0024045152526484875) + +[fips1906993702] +centroid = (0.74801490378910418, -1.6266712974682431) +description = Ross township, IA +station = ('kmcw', 0.005365755471614826) +zone = ('iaz026', 0.0023271296147209753) + +[fips1906993777] +centroid = (0.74668515488530229, -1.6311614362216786) +description = Scott township, IA +station = ('kcav', 0.0039855241468947609) +zone = ('iaz026', 0.0026588425742063533) + +[fips1906993833] +centroid = (0.74854932360606485, -1.6267703972631713) +description = Sheffield city, IA +station = ('kmcw', 0.0048364694264997335) +zone = ('iaz026', 0.0028170092316759385) + +[fips1906994668] +centroid = (0.74810388067437084, -1.624625509785518) +description = West Fork township, IA +station = ('kmcw', 0.0059303250221468401) +zone = ('iaz026', 0.0032267807323808338) + +[fips1906994767] +centroid = (0.74811588853962463, -1.6308220569486285) +description = Wisner township, IA +station = ('kmcw', 0.0051733248244556123) +zone = ('iaz026', 0.003222702750141485) + +[fips1907030] +centroid = (0.7112061018507615, -1.6129814758676675) +description = Bloomfield city, IA +station = ('kotm', 0.0061396337309265097) +zone = ('iaz097', 9.9999334712029593e-05) + +[fips1907075] +centroid = (0.72447781237572917, -1.5841484446385037) +description = Blue Grass city, IA +station = ('kdvn', 0.0030210113327464785) +zone = ('iaz068', 0.0028960301537369997) + +[fips19071] +centroid = (0.71111216823041923, -1.6685263175129994) +description = Fremont County, IA +station = ('ksda', 0.0024202265451265322) +zone = ('iaz090', 7.5951676152343511e-05) + +[fips1907190210] +centroid = (0.71104055737120986, -1.6722956352853615) +description = Benton township, IA +station = ('kafk', 0.0024793526526073612) +zone = ('iaz090', 0.0027892207297863054) + +[fips1907191344] +centroid = (0.71045370786351925, -1.6655417695855042) +description = Fisher township, IA +station = ('ksda', 0.00078378579343196179) +zone = ('iaz090', 0.0024307157359098595) + +[fips1907191734] +centroid = (0.7129789723983524, -1.6696099924455627) +description = Green township, IA +station = ('kpmv', 0.003798036704977342) +zone = ('iaz090', 0.0019822242804002532) + +[fips1907191804] +centroid = (0.70870993195455922, -1.6694950276077338) +description = Hamburg city, IA +station = ('kafk', 0.002585911902213067) +zone = ('iaz090', 0.0025243980367107917) + +[fips1907192679] +centroid = (0.70893029722591594, -1.6655873575855662) +description = Locust Grove township, IA +station = ('ksda', 0.0022993504428577239) +zone = ('iaz090', 0.0031909405252393145) + +[fips1907192760] +centroid = (0.70892048847551981, -1.6679507951921544) +description = Madison township, IA +station = ('ksda', 0.0030381093730666672) +zone = ('iaz090', 0.0022810038803705176) + +[fips1907192970] +centroid = (0.71310976737249676, -1.6657766036363599) +description = Monroe township, IA +station = ('ksda', 0.0019174594685164412) +zone = ('iaz090', 0.0029125723456534772) + +[fips1907193486] +centroid = (0.71148257945756999, -1.6676099847491175) +description = Prairie township, IA +station = ('ksda', 0.0017428984654451745) +zone = ('iaz090', 0.00083408640471850138) + +[fips1907193639] +centroid = (0.71299822338000174, -1.6678785036545367) +description = Riverside township, IA +station = ('ksda', 0.0026197889252315954) +zone = ('iaz090', 0.0019357840862257944) + +[fips1907193651] +centroid = (0.71016155720002794, -1.6678011506620884) +description = Riverton township, IA +station = ('ksda', 0.0021488302860775137) +zone = ('iaz090', 0.0011615052140386245) + +[fips1907193780] +centroid = (0.7127243463137789, -1.6716503696076066) +description = Scott township, IA +station = ('kpmv', 0.0027070606304826785) +zone = ('iaz090', 0.0027874060239488742) + +[fips1907193885] +centroid = (0.71118007899161428, -1.6697778058531421) +description = Sidney township, IA +station = ('kafk', 0.003498323848228312) +zone = ('iaz090', 0.00088028989833760008) + +[fips1907194078] +centroid = (0.7137419430808617, -1.6698227480813808) +description = Tabor city, IA +station = ('kpmv', 0.0033607032157817172) +zone = ('iaz079', 0.0025189997069429166) + +[fips1907194398] +centroid = (0.7117978382803577, -1.6658952336656181) +description = Walnut township, IA +station = ('ksda', 0.00071554903980319221) +zone = ('iaz090', 0.002162263416260907) + +[fips1907194494] +centroid = (0.70938212806267231, -1.6702549788706371) +description = Washington township, IA +station = ('kafk', 0.0021519044455929615) +zone = ('iaz090', 0.0021563805676185241) + +[fips1907210] +centroid = (0.74818821498382715, -1.6456053622321634) +description = Bode city, IA +station = ('kaxa', 0.0037661091564488943) +zone = ('iaz024', 0.0018917360659627311) + +[fips1907255] +centroid = (0.75701003404791012, -1.6250499214997254) +description = Bolan CDP, IA +station = ('kmcw', 0.0048352352562353934) +zone = ('iaz007', 0.0019345704776095808) + +[fips19073] +centroid = (0.73377994604996089, -1.6473936440370494) +description = Greene County, IA +station = ('kpro', 0.0047509407024393753) +zone = ('iaz046', 0.00015282909021893803) + +[fips1907345] +centroid = (0.71036949572711061, -1.60222136394949) +description = Bonaparte city, IA +station = ('kmpz', 0.0057418139704750884) +zone = ('iaz098', 0.0021756238426616894) + +[fips1907390] +centroid = (0.72779683520107663, -1.6310911518127009) +description = Bondurant city, IA +station = ('kikv', 0.0014589516127237528) +zone = ('iaz060', 0.0015674684441778844) + +[fips1907390342] +centroid = (0.73445626113510865, -1.6484223585514672) +description = Bristol township, IA +station = ('kcin', 0.0043835538844922963) +zone = ('iaz046', 0.0010249098119778915) + +[fips1907390537] +centroid = (0.73594855255214897, -1.6505450105344504) +description = Cedar township, IA +station = ('kcin', 0.003440180086606669) +zone = ('iaz046', 0.0031895676543901136) + +[fips1907390897] +centroid = (0.73593677157969795, -1.6465285192334207) +description = Dawson township, IA +station = ('kpro', 0.006308983329641151) +zone = ('iaz046', 0.0023869193146342847) + +[fips1907391404] +centroid = (0.73140875918149395, -1.64651473113233) +description = Franklin township, IA +station = ('kpro', 0.0026761894437866401) +zone = ('iaz046', 0.0023855739120842525) + +[fips1907391653] +centroid = (0.73283928339630611, -1.6463781591183615) +description = Grant township, IA +station = ('kpro', 0.0035450933043650484) +zone = ('iaz046', 0.0011963395964115857) + +[fips1907391746] +centroid = (0.73141156916158956, -1.6485455264367805) +description = Greenbrier township, IA +station = ('kcin', 0.0049424507515058837) +zone = ('iaz046', 0.0023798084688156913) + +[fips1907391830] +centroid = (0.73445189781197862, -1.6463556094644256) +description = Hardin township, IA +station = ('kpro', 0.0049004862151234051) +zone = ('iaz046', 0.0011748201738939991) + +[fips1907391932] +centroid = (0.73587278780931975, -1.6483833504426852) +description = Highland township, IA +station = ('kcin', 0.0047953318999162829) +zone = ('iaz046', 0.0022905203442272377) + +[fips1907392115] +centroid = (0.73286623127995676, -1.64871576585202) +description = Jackson township, IA +station = ('kcin', 0.0042645923454753655) +zone = ('iaz046', 0.0011889589137706587) + +[fips1907392221] +centroid = (0.7333306633939124, -1.6472315727627092) +description = Jefferson city, IA +station = ('kpro', 0.0043292731814350621) +zone = ('iaz046', 0.00040815587384940793) + +[fips1907392286] +centroid = (0.73400600109467928, -1.6443520587495988) +description = Junction township, IA +station = ('kpro', 0.0039977249115118506) +zone = ('iaz046', 0.0023886867354739258) + +[fips1907392304] +centroid = (0.73455440099894831, -1.6504608158513339) +description = Kendrick township, IA +station = ('kcin', 0.0029081515216687896) +zone = ('iaz046', 0.002344129385803897) + +[fips1907393276] +centroid = (0.73606512309288963, -1.6441691831505747) +description = Paton township, IA +station = ('kpro', 0.0060209472923193081) +zone = ('iaz046', 0.0034609700465589748) + +[fips1907393804] +centroid = (0.73266733355839953, -1.6507489173509606) +description = Scranton township, IA +station = ('kcin', 0.0029041767478753177) +zone = ('iaz046', 0.0025889395101248536) + +[fips1907394497] +centroid = (0.7316589346764748, -1.6444932907926701) +description = Washington township, IA +station = ('kpro', 0.0017835534071781458) +zone = ('iaz046', 0.0030271255694387048) + +[fips1907394746] +centroid = (0.73141324467767155, -1.6505781892435305) +description = Willow township, IA +station = ('kcin', 0.0037170725049005243) +zone = ('iaz046', 0.003194794300687222) + +[fips1907480] +centroid = (0.7338999723426205, -1.6383881814290715) +description = Boone city, IA +station = ('kbnw', 0.00029476374299063887) +zone = ('iaz047', 0.00079744955032479711) + +[fips19075] +centroid = (0.74007760013663948, -1.6194955682348862) +description = Grundy County, IA +station = ('kmiw', 0.0052627954734265521) +zone = ('iaz038', 2.6599599515002469e-05) + +[fips1907590159] +centroid = (0.74198936398610393, -1.618472386414197) +description = Beaver township, IA +station = ('kalo', 0.0043143058251013718) +zone = ('iaz038', 0.0020819999309266124) + +[fips1907590249] +centroid = (0.73903274132664054, -1.6162193757893824) +description = Black Hawk township, IA +station = ('kalo', 0.0044496925512590452) +zone = ('iaz038', 0.0026353129261319124) + +[fips1907590675] +centroid = (0.737355008676576, -1.6202999555805453) +description = Clay township, IA +station = ('kmiw', 0.0025059386143912832) +zone = ('iaz038', 0.0027604928339572355) + +[fips1907590762] +centroid = (0.74058318711435722, -1.62028876802004) +description = Colfax township, IA +station = ('kmiw', 0.0056070221253819181) +zone = ('iaz038', 0.00078306757792905057) + +[fips1907591281] +centroid = (0.74198831678855282, -1.6164106464221084) +description = Fairfield township, IA +station = ('kalo', 0.002821737520914721) +zone = ('iaz038', 0.0029949809201489453) + +[fips1907591329] +centroid = (0.73745398629845649, -1.6221727636811052) +description = Felix township, IA +station = ('kmiw', 0.0024049412097966391) +zone = ('iaz038', 0.0032609055458439774) + +[fips1907591560] +centroid = (0.74196187505038513, -1.6226302493846381) +description = German township, IA +station = ('kifa', 0.0039293178066826372) +zone = ('iaz038', 0.0029915725418213444) + +[fips1907591656] +centroid = (0.74048867753536174, -1.6160499566788915) +description = Grant township, IA +station = ('kalo', 0.0032829616758558427) +zone = ('iaz038', 0.002590311009652217) + +[fips1907592550] +centroid = (0.74049024833168853, -1.6180986416081748) +description = Lincoln township, IA +station = ('kalo', 0.0045334745907310223) +zone = ('iaz038', 0.00112905593037646) + +[fips1907592907] +centroid = (0.73897083449807244, -1.622178627987392) +description = Melrose township, IA +station = ('kmiw', 0.0039122985135051002) +zone = ('iaz038', 0.0022499224710817753) + +[fips1907593258] +centroid = (0.73900406556703024, -1.6200619973903283) +description = Palermo township, IA +station = ('kmiw', 0.0041128694744588757) +zone = ('iaz038', 0.0011256116455719679) + +[fips1907593414] +centroid = (0.74199358768289381, -1.6205292569376721) +description = Pleasant Valley township, IA +station = ('kalo', 0.0058167957009837871) +zone = ('iaz038', 0.0020818215679558466) + +[fips1907593882] +centroid = (0.74049234272679099, -1.622188506550958) +description = Shiloh township, IA +station = ('kmiw', 0.0054297979936494684) +zone = ('iaz038', 0.0020268735238912101) + +[fips1907594500] +centroid = (0.73894749944597315, -1.618026943482503) +description = Washington township, IA +station = ('kmiw', 0.0047333528273888689) +zone = ('iaz038', 0.0015555271926967966) + +[fips1907660] +centroid = (0.73044324303929065, -1.6407912729162648) +description = Bouton city, IA +station = ('kpro', 0.0019802741062070286) +zone = ('iaz059', 0.0029295700244879983) + +[fips19077] +centroid = (0.72751559284541034, -1.6493583437227268) +description = Guthrie County, IA +station = ('kpro', 0.0051258165784636009) +zone = ('iaz058', 5.3166457749630708e-06) + +[fips1907750] +centroid = (0.73606828213883568, -1.6424630889001652) +description = Boxholm city, IA +station = ('kbnw', 0.0039569955290657717) +zone = ('iaz047', 0.0032890544959160695) + +[fips1907790105] +centroid = (0.72684327456424958, -1.6505624289203853) +description = Baker township, IA +station = ('kadu', 0.0046667941311653548) +zone = ('iaz058', 0.0011282160178689537) + +[fips1907790147] +centroid = (0.72684817893944764, -1.6525840612462628) +description = Bear Grove township, IA +station = ('kadu', 0.0032044676703931792) +zone = ('iaz057', 0.0029454777601347023) + +[fips1907790162] +centroid = (0.72528588236610991, -1.6479386056426921) +description = Beaver township, IA +station = ('kpro', 0.005863018518814188) +zone = ('iaz058', 0.0024714847414809265) + +[fips1907790501] +centroid = (0.7279234413850163, -1.6464538715013128) +description = Cass township, IA +station = ('kpro', 0.0031295446293201283) +zone = ('iaz058', 0.0022025482966449533) + +[fips1907791008] +centroid = (0.72989765311511723, -1.6485466609007944) +description = Dodge township, IA +station = ('kpro', 0.0038376307494467138) +zone = ('iaz058', 0.0024531118681773625) + +[fips1907791659] +centroid = (0.72523762401229241, -1.6518377584581099) +description = Grant township, IA +station = ('kadu', 0.0044420157345059844) +zone = ('iaz058', 0.0029421252073729681) + +[fips1907791935] +centroid = (0.73001973889629423, -1.6504930346293258) +description = Highland township, IA +station = ('kcin', 0.004804381245654076) +zone = ('iaz058', 0.0026407279341735001) + +[fips1907792118] +centroid = (0.72625066547002737, -1.6464617603895322) +description = Jackson township, IA +station = ('kpro', 0.0044511054026838501) +zone = ('iaz058', 0.0025059222180158595) + +[fips1907793192] +centroid = (0.72982688001394891, -1.6526281831697531) +description = Orange township, IA +station = ('kadu', 0.0036217852699357285) +zone = ('iaz058', 0.0033603795524255876) + +[fips1907793279] +centroid = (0.72520474200918472, -1.6456187314542337) +description = Penn township, IA +station = ('kpro', 0.005140305063695132) +zone = ('iaz058', 0.0036269194251429362) + +[fips1907793591] +centroid = (0.72978935543503098, -1.6465949639180442) +description = Richland township, IA +station = ('kpro', 0.0023960824136463766) +zone = ('iaz058', 0.0030639697769254681) + +[fips1907793807] +centroid = (0.72836827345147215, -1.6505645058621949) +description = Seely township, IA +station = ('kadu', 0.0045910808062034321) +zone = ('iaz058', 0.001239973408814094) + +[fips1907794020] +centroid = (0.72468730424584604, -1.6462532982636737) +description = Stuart township, IA +station = ('kpro', 0.0057898257283234009) +zone = ('iaz058', 0.0036600751797003271) + +[fips1907794110] +centroid = (0.72520205420213679, -1.6498622202777775) +description = Thompson township, IA +station = ('kadu', 0.0057243881546230552) +zone = ('iaz058', 0.0023484878206344725) + +[fips1907794212] +centroid = (0.72837125796449309, -1.6525867316000182) +description = Union township, IA +station = ('kadu', 0.0030980828732065555) +zone = ('iaz057', 0.0029808432291071694) + +[fips1907794302] +centroid = (0.72688161944791596, -1.6486099290861793) +description = Valley township, IA +station = ('kpro', 0.0050274433064603609) +zone = ('iaz058', 0.00084592847397859891) + +[fips1907794353] +centroid = (0.72848390151441678, -1.6486426365563616) +description = Victory township, IA +station = ('kpro', 0.0042177776017502224) +zone = ('iaz058', 0.0011007473547454336) + +[fips1907840] +centroid = (0.75378939543249757, -1.6755695413495448) +description = Boyden city, IA +station = ('kshl', 0.0022128725218404435) +zone = ('iaz012', 0.0028989485240973768) + +[fips19079] +centroid = (0.73985847404905158, -1.6355340445032853) +description = Hamilton County, IA +station = ('kebs', 0.0021608612770105421) +zone = ('iaz036', 0.00012717414253234977) + +[fips1907930] +centroid = (0.70826562348687894, -1.6586070877751402) +description = Braddyville city, IA +station = ('kicl', 0.0023744405537032076) +zone = ('iaz091', 0.0031831769973074825) + +[fips1907990264] +centroid = (0.74201510759257094, -1.6349582429297598) +description = Blairsburg township, IA +station = ('kebs', 0.0028302232113288054) +zone = ('iaz036', 0.0023137841470387177) + +[fips1907990504] +centroid = (0.74204629662630406, -1.6371685278944854) +description = Cass township, IA +station = ('kebs', 0.0016621502134320652) +zone = ('iaz036', 0.0026213582483013368) + +[fips1907990722] +centroid = (0.73732195214054319, -1.6366952818678073) +description = Clear Lake township, IA +station = ('kebs', 0.0034829437835229666) +zone = ('iaz036', 0.0025719261017728154) + +[fips1907991212] +centroid = (0.73737555120187193, -1.6345036370194927) +description = Ellsworth township, IA +station = ('kebs', 0.0042669851896544753) +zone = ('iaz036', 0.0024701955980375098) + +[fips1907991446] +centroid = (0.74045089115705609, -1.638479741401631) +description = Freedom township, IA +station = ('kebs', 0.00020944094645374247) +zone = ('iaz036', 0.0023192407246762732) + +[fips1907991476] +centroid = (0.74202725508416489, -1.6390857546245086) +description = Fremont township, IA +station = ('kebs', 0.001544096039943553) +zone = ('iaz036', 0.0035049769088437246) + +[fips1907991812] +centroid = (0.73896922879516047, -1.6363737224064197) +description = Hamilton township, IA +station = ('kebs', 0.0021567011019500825) +zone = ('iaz036', 0.0010054155010613699) + +[fips1907992019] +centroid = (0.74038512715084093, -1.6362931929147329) +description = Independence township, IA +station = ('kebs', 0.0014841379512837754) +zone = ('iaz036', 0.00087884448582895827) + +[fips1907992454] +centroid = (0.7404962173577303, -1.6343294357068514) +description = Liberty township, IA +station = ('kebs', 0.0029195638237219518) +zone = ('iaz036', 0.0011473520571431608) + +[fips1907992553] +centroid = (0.7389687226496775, -1.6322694934038924) +description = Lincoln township, IA +station = ('kifa', 0.0039654420865331778) +zone = ('iaz036', 0.0025015585009181417) + +[fips1907992739] +centroid = (0.73909325189180719, -1.6345489457668745) +description = Lyon township, IA +station = ('kebs', 0.0031428942663751969) +zone = ('iaz036', 0.00094746939630714773) + +[fips1907992850] +centroid = (0.73745354996614354, -1.638405652174884) +description = Marion township, IA +station = ('kebs', 0.003149147409065081) +zone = ('iaz036', 0.0031378903898667148) + +[fips1907993696] +centroid = (0.74049560649249213, -1.6322710642002194) +description = Rose Grove township, IA +station = ('kifa', 0.003333001170212391) +zone = ('iaz036', 0.0024970728764996124) + +[fips1907993783] +centroid = (0.73744410773489022, -1.6322671546626948) +description = Scott township, IA +station = ('kamw', 0.0048539179827401871) +zone = ('iaz036', 0.0033068518922996725) + +[fips1907994623] +centroid = (0.7390338583373619, -1.638459460675723) +description = Webster township, IA +station = ('kebs', 0.0015729671877409027) +zone = ('iaz036', 0.0023018829258426993) + +[fips1907994633] +centroid = (0.74110881047188781, -1.6374065209912874) +description = Webster City city, IA +station = ('kebs', 0.00082169743642828818) +zone = ('iaz036', 0.0019707787795899012) + +[fips1907994737] +centroid = (0.74201500287281574, -1.6329005695548287) +description = Williams township, IA +station = ('kebs', 0.0042137483454457352) +zone = ('iaz036', 0.002975698697109497) + +[fips1908020] +centroid = (0.74415090190482136, -1.6275011666209813) +description = Bradford CDP, IA +station = ('kifa', 0.0029221307677050707) +zone = ('iaz026', 0.001680804920626906) + +[fips1908065] +centroid = (0.74705322737125524, -1.6479496884834421) +description = Bradgate city, IA +station = ('kaxa', 0.0052730823270283498) +zone = ('iaz024', 0.002770651555393449) + +[fips19081] +centroid = (0.75180774859978317, -1.6361361656419307) +description = Hancock County, IA +station = ('kfxy', 0.0031241488733244963) +zone = ('iaz016', 0.00016366139303411849) + +[fips1908155] +centroid = (0.73853666639334614, -1.6057591463432823) +description = Brandon city, IA +station = ('kvti', 0.0017080489466779994) +zone = ('iaz040', 0.00345290767600625) + +[fips1908190069] +centroid = (0.7495561516916629, -1.6372050576357298) +description = Amsterdam township, IA +station = ('kcav', 0.0034627048444689137) +zone = ('iaz016', 0.0025292160210885861) + +[fips1908190096] +centroid = (0.74954901329502222, -1.6327428441503258) +description = Avery township, IA +station = ('kcav', 0.0044090589403873413) +zone = ('iaz016', 0.0033456659548797918) + +[fips1908190243] +centroid = (0.75408948734408543, -1.6389085687988463) +description = Bingham township, IA +station = ('kfxy', 0.0036177505987877081) +zone = ('iaz016', 0.0030496337820487942) + +[fips1908190303] +centroid = (0.75116810288221969, -1.639065596071648) +description = Boone township, IA +station = ('kaxa', 0.0045948323547309973) +zone = ('iaz016', 0.0023817287163566069) + +[fips1908190348] +centroid = (0.7525168584215759, -1.6368299340195984) +description = Britt township, IA +station = ('kfxy', 0.0028782377805238258) +zone = ('iaz016', 0.00086568622292596681) + +[fips1908190801] +centroid = (0.7527463168583356, -1.6327119867291506) +description = Concord township, IA +station = ('kfxy', 0.0019867497877515267) +zone = ('iaz016', 0.0025198342873901493) + +[fips1908190861] +centroid = (0.75404030396576427, -1.6371669221915737) +description = Crystal township, IA +station = ('kfxy', 0.0023706958012746585) +zone = ('iaz016', 0.0022932099256620739) + +[fips1908191197] +centroid = (0.75117536345190805, -1.6328786133128383) +description = Ell township, IA +station = ('kfxy', 0.0034256106551670113) +zone = ('iaz016', 0.0023795142344100609) + +[fips1908191200] +centroid = (0.75415572258919861, -1.6328493441412824) +description = Ellington township, IA +station = ('kfxy', 0.00089339654613474666) +zone = ('iaz016', 0.0031926643100239072) + +[fips1908191239] +centroid = (0.75117485730642497, -1.6369962289907285) +description = Erin township, IA +station = ('kfxy', 0.0039936273446386358) +zone = ('iaz016', 0.001055446259520439) + +[fips1908191515] +centroid = (0.75251673624852833, -1.6348644663890501) +description = Garfield township, IA +station = ('kfxy', 0.0020916929035939389) +zone = ('iaz016', 0.0010055601993989997) + +[fips1908192457] +centroid = (0.75122915449945449, -1.6348899656494218) +description = Liberty township, IA +station = ('kfxy', 0.0033436877047459748) +zone = ('iaz016', 0.0010494730721495233) + +[fips1908192763] +centroid = (0.75419947799354603, -1.6349433203646553) +description = Madison township, IA +station = ('kfxy', 0.00076776379839313229) +zone = ('iaz016', 0.0024005964092335312) + +[fips1908192793] +centroid = (0.74964416864584094, -1.6390714429246425) +description = Magor township, IA +station = ('kcav', 0.0039766686543858893) +zone = ('iaz016', 0.0032110826764751321) + +[fips1908193207] +centroid = (0.75258539750130182, -1.6390008094498143) +description = Orthel township, IA +station = ('kaxa', 0.0046172885519688888) +zone = ('iaz016', 0.0023095287111737023) + +[fips1908194149] +centroid = (0.74952953542056988, -1.6347771475665729) +description = Twin Lake township, IA +station = ('kcav', 0.0036378020987051451) +zone = ('iaz016', 0.0025444589010321485) + +[fips1908200] +centroid = (0.72509361689571028, -1.656847132664014) +description = Brayton city, IA +station = ('kadu', 0.0027312356745147507) +zone = ('iaz057', 0.0024608365725921569) + +[fips1908290] +centroid = (0.73624911570263485, -1.6576272599330706) +description = Breda city, IA +station = ('kcin', 0.0034098860702819829) +zone = ('iaz045', 0.002973773800640817) + +[fips19083] +centroid = (0.73984428452223294, -1.6273638615687269) +description = Hardin County, IA +station = ('kifa', 0.0014458679445903666) +zone = ('iaz037', 0.0001077831283949377) + +[fips1908390036] +centroid = (0.74191087652964183, -1.630171101497512) +description = Alden township, IA +station = ('kifa', 0.0018251263822857322) +zone = ('iaz037', 0.003008963468550003) + +[fips1908390372] +centroid = (0.74061350348346433, -1.6300538851849482) +description = Buckeye township, IA +station = ('kifa', 0.0017303207646153897) +zone = ('iaz037', 0.00217907128195363) + +[fips1908390678] +centroid = (0.74062336459373812, -1.6242346782061188) +description = Clay township, IA +station = ('kifa', 0.0027515382966368249) +zone = ('iaz037', 0.0024664691776560168) + +[fips1908390804] +centroid = (0.73739040395380639, -1.6301432285893578) +description = Concord township, IA +station = ('kifa', 0.0042017517558315676) +zone = ('iaz037', 0.0031250200359001345) + +[fips1908391157] +centroid = (0.73933185585384742, -1.6249239959941939) +description = Eldora city, IA +station = ('kifa', 0.0028934478903718266) +zone = ('iaz037', 0.0018389024841020667) + +[fips1908391158] +centroid = (0.73897586104631807, -1.624119242129392) +description = Eldora township, IA +station = ('kifa', 0.0035772839179596446) +zone = ('iaz037', 0.0025069667812093318) + +[fips1908391206] +centroid = (0.7406096288525249, -1.6282201200997555) +description = Ellis township, IA +station = ('kifa', 0.00068287945881137719) +zone = ('iaz037', 0.0010828674114375901) + +[fips1908391245] +centroid = (0.74201666093560525, -1.624640519617085) +description = Etna township, IA +station = ('kifa', 0.0025033721636912166) +zone = ('iaz037', 0.0030332117711229963) + +[fips1908391662] +centroid = (0.73738165985425397, -1.6282224413876605) +description = Grant township, IA +station = ('kifa', 0.0038685198041715978) +zone = ('iaz037', 0.0024415688106214565) + +[fips1908391833] +centroid = (0.74197758301365302, -1.6271939537660454) +description = Hardin township, IA +station = ('kifa', 0.00088855911450636471) +zone = ('iaz037', 0.0022437553495632538) + +[fips1908392121] +centroid = (0.74050091229341819, -1.626208628136832) +description = Jackson township, IA +station = ('kifa', 0.0014312569970705859) +zone = ('iaz037', 0.0011386433715954941) + +[fips1908393363] +centroid = (0.73887443996348467, -1.6263125450404956) +description = Pleasant township, IA +station = ('kifa', 0.0026310561445871323) +zone = ('iaz037', 0.0011548610981976766) + +[fips1908393516] +centroid = (0.73744101850211419, -1.6262070573405052) +description = Providence township, IA +station = ('kifa', 0.0039937084321238405) +zone = ('iaz037', 0.0024469519311686814) + +[fips1908393858] +centroid = (0.7389685132101671, -1.630222012751793) +description = Sherman township, IA +station = ('kifa', 0.002861033898489072) +zone = ('iaz037', 0.0022555831960403257) + +[fips1908394125] +centroid = (0.73902082072784947, -1.6280516783736454) +description = Tipton township, IA +station = ('kifa', 0.0022246239023754498) +zone = ('iaz037', 0.00088317709996248574) + +[fips1908394215] +centroid = (0.73739651260618833, -1.6240813684846238) +description = Union township, IA +station = ('kmiw', 0.0029156334348547168) +zone = ('iaz037', 0.0033653924765192729) + +[fips1908425] +centroid = (0.7198976844460605, -1.6522846674663756) +description = Bridgewater city, IA +station = ('kcsq', 0.0056536925790912716) +zone = ('iaz071', 0.002977790944798765) + +[fips1908470] +centroid = (0.71862481582258109, -1.6025830310770881) +description = Brighton city, IA +station = ('kawg', 0.002783354330553732) +zone = ('iaz087', 0.0029988147055718152) + +[fips19085] +centroid = (0.72760305129422775, -1.6724992628491917) +description = Harrison County, IA +station = ('ktqe', 0.0048355549046626232) +zone = ('iaz055', 0.00016849448357210455) + +[fips1908560] +centroid = (0.74654406246857097, -1.6215492273525378) +description = Bristow city, IA +station = ('kccy', 0.0063230394080730848) +zone = ('iaz027', 0.0016791247262625951) + +[fips1908590039] +centroid = (0.73003190384118066, -1.6727110760072137) +description = Allen township, IA +station = ('ktqe', 0.004601791774144456) +zone = ('iaz055', 0.0025451017121764291) + +[fips1908590318] +centroid = (0.72836274075774343, -1.6708197848698751) +description = Boyer township, IA +station = ('ktqe', 0.0059217606345291244) +zone = ('iaz055', 0.0014095673364283375) + +[fips1908590444] +centroid = (0.72653229179812928, -1.6731969582176764) +description = Calhoun township, IA +station = ('ktqe', 0.0047857347707782605) +zone = ('iaz055', 0.001173153671699045) + +[fips1908590507] +centroid = (0.7268565216132723, -1.6688164610478509) +description = Cass township, IA +station = ('khnr', 0.0037624942766640787) +zone = ('iaz055', 0.0026939329957284932) + +[fips1908590666] +centroid = (0.72539894479505418, -1.6759316797160413) +description = Cincinnati township, IA +station = ('kbta', 0.00278378490172444) +zone = ('iaz055', 0.003425258442871411) + +[fips1908590681] +centroid = (0.72680768730080147, -1.6768628128719802) +description = Clay township, IA +station = ('ktqe', 0.0025635112039066638) +zone = ('nez045', 0.0027166534448481551) + +[fips1908591038] +centroid = (0.72848461709941015, -1.668844997181121) +description = Douglas township, IA +station = ('khnr', 0.0045199432401219703) +zone = ('iaz055', 0.0027711674105676772) + +[fips1908591863] +centroid = (0.72985686477049805, -1.6688295684705334) +description = Harrison township, IA +station = ('kdns', 0.0041905381053050613) +zone = ('iaz055', 0.003507946579979682) + +[fips1908592124] +centroid = (0.72971324162635143, -1.6748064310406954) +description = Jackson township, IA +station = ('ktqe', 0.003009211827546977) +zone = ('iaz055', 0.0028864395356491155) + +[fips1908592223] +centroid = (0.72682489624722613, -1.6710567831290033) +description = Jefferson township, IA +station = ('ktqe', 0.0061057352772359592) +zone = ('iaz055', 0.0011606773203116747) + +[fips1908592343] +centroid = (0.72533976068011907, -1.6718218307533226) +description = La Grange township, IA +station = ('koma', 0.0047491677303907439) +zone = ('iaz055', 0.0021955028629736186) + +[fips1908592556] +centroid = (0.72991248841375922, -1.6709589050645517) +description = Lincoln township, IA +station = ('ktqe', 0.0058601360779507641) +zone = ('iaz055', 0.0026130325169082588) + +[fips1908592664] +centroid = (0.72992219244440026, -1.6762493470931967) +description = Little Sioux township, IA +station = ('ktqe', 0.0020727051011992762) +zone = ('iaz055', 0.0038019976380400267) + +[fips1908592790] +centroid = (0.72810155223518236, -1.6727574843120241) +description = Magnolia township, IA +station = ('ktqe', 0.0045290746852585887) +zone = ('iaz055', 0.00068225194807997329) + +[fips1908593012] +centroid = (0.72821548732875263, -1.6764049606493046) +description = Morgan township, IA +station = ('ktqe', 0.0018803900199953754) +zone = ('iaz055', 0.0031340152254120124) + +[fips1908593534] +centroid = (0.72823547134868782, -1.6745149086957349) +description = Raglan township, IA +station = ('ktqe', 0.0032183246346281155) +zone = ('iaz055', 0.0017967282055654894) + +[fips1908593738] +centroid = (0.7252498238637638, -1.673688879267351) +description = St. John township, IA +station = ('kbta', 0.003752292433596992) +zone = ('iaz055', 0.0024764149559927608) + +[fips1908594101] +centroid = (0.72706261009134765, -1.6750496950318383) +description = Taylor township, IA +station = ('ktqe', 0.003333505235163309) +zone = ('iaz055', 0.002088499106108613) + +[fips1908594218] +centroid = (0.72508981207794099, -1.6696783220857783) +description = Union township, IA +station = ('kcbf', 0.005028076729457924) +zone = ('iaz055', 0.0031175462974392565) + +[fips1908594503] +centroid = (0.72524010237983016, -1.6676797106527343) +description = Washington township, IA +station = ('khnr', 0.0028123348393314582) +zone = ('iaz069', 0.0037855365309379069) + +[fips1908605] +centroid = (0.75219323947167116, -1.6371739733217514) +description = Britt city, IA +station = ('kfxy', 0.0032840381521593775) +zone = ('iaz016', 0.00091943964165386554) + +[fips1908650] +centroid = (0.74017680465132285, -1.6792049749149867) +description = Bronson city, IA +station = ('ksux', 0.002261471930592751) +zone = ('iaz031', 0.0021717138944013386) + +[fips1908695] +centroid = (0.7283494064422581, -1.6134753516861045) +description = Brooklyn city, IA +station = ('kggi', 0.0037271188255337522) +zone = ('iaz062', 0.001368613723771463) + +[fips19087] +centroid = (0.71533827357461321, -1.5977489228346693) +description = Henry County, IA +station = ('kmpz', 0.00081178246179975429) +zone = ('iaz088', 3.5799883935265906e-05) + +[fips1908790114] +centroid = (0.71309976663588281, -1.595800803776886) +description = Baltimore township, IA +station = ('kmpz', 0.0018674533679939012) +zone = ('iaz088', 0.0027112425657247218) + +[fips1908790459] +centroid = (0.71612770344858279, -1.5957332595348337) +description = Canaan township, IA +station = ('kmpz', 0.0018297046591618958) +zone = ('iaz088', 0.0017015000821702965) + +[fips1908790606] +centroid = (0.71442960280614742, -1.5977744395483335) +description = Center township, IA +station = ('kmpz', 0.00050868881538359027) +zone = ('iaz088', 0.00094432354080292832) + +[fips1908792127] +centroid = (0.71313432415507227, -1.597840709700032) +description = Jackson township, IA +station = ('kmpz', 0.0016020953837105928) +zone = ('iaz088', 0.0022404274402635272) + +[fips1908792226] +centroid = (0.7175845821350999, -1.5998500723612679) +description = Jefferson township, IA +station = ('kawg', 0.0029456289607932714) +zone = ('iaz088', 0.002717441505984494) + +[fips1908792853] +centroid = (0.71617940010102676, -1.5976329107992893) +description = Marion township, IA +station = ('kmpz', 0.0015647281508311748) +zone = ('iaz088', 0.00081081506143853936) + +[fips1908793036] +centroid = (0.71492534612688385, -1.5977993977566372) +description = Mount Pleasant city, IA +station = ('kmpz', 0.00054713657665703488) +zone = ('iaz088', 0.00044973126325426895) + +[fips1908793087] +centroid = (0.71468136655074754, -1.5959080717127134) +description = New London township, IA +station = ('kmpz', 0.00095368102579923119) +zone = ('iaz088', 0.0015568015625096086) + +[fips1908793744] +centroid = (0.71316032956092701, -1.5996295500102784) +description = Salem township, IA +station = ('kmpz', 0.0023846719357241693) +zone = ('iaz088', 0.0026279731038856289) + +[fips1908793786] +centroid = (0.71764915931742379, -1.5957251612071046) +description = Scott township, IA +station = ('kmpz', 0.0031872024996282152) +zone = ('iaz088', 0.002742178040062891) + +[fips1908794122] +centroid = (0.71478277018028846, -1.6000155121210644) +description = Tippecanoe township, IA +station = ('kmpz', 0.0021528530235645762) +zone = ('iaz088', 0.0018064458914390715) + +[fips1908794131] +centroid = (0.71625205815778736, -1.5998104533872475) +description = Trenton township, IA +station = ('kmpz', 0.0025543674814071716) +zone = ('iaz088', 0.0017825686712995975) + +[fips1908794609] +centroid = (0.71756534860674304, -1.5977105081378329) +description = Wayne township, IA +station = ('kmpz', 0.0029395927719245208) +zone = ('iaz088', 0.002191793306092529) + +[fips1908875] +centroid = (0.7471922253928841, -1.6801709273895029) +description = Brunsville city, IA +station = ('klrj', 0.0010982300762690867) +zone = ('iaz020', 0.0014432282678614229) + +[fips19089] +centroid = (0.75686749300789979, -1.611321266323293) +description = Howard County, IA +station = ('kfka', 0.0057243351362905185) +zone = ('iaz009', 0.00016014049032505676) + +[fips1908990024] +centroid = (0.75532856639324619, -1.6143475276199111) +description = Afton township, IA +station = ('kccy', 0.0039850556859017706) +zone = ('iaz009', 0.0026547871027442233) + +[fips1908990033] +centroid = (0.75860503809143021, -1.6081321134475866) +description = Albion township, IA +station = ('kfka', 0.0037319770787621648) +zone = ('iaz009', 0.0029413841068599875) + +[fips1908990657] +centroid = (0.75860238519096712, -1.6122625049356012) +description = Chester township, IA +station = ('kfka', 0.00445359920633731) +zone = ('iaz009', 0.0020248914776093059) + +[fips1908991368] +centroid = (0.75848138151392641, -1.6100267381637965) +description = Forest City township, IA +station = ('kfka', 0.0039158873920407842) +zone = ('iaz009', 0.0019702885244822638) + +[fips1908991989] +centroid = (0.75527412957387652, -1.6122761185037666) +description = Howard township, IA +station = ('kccy', 0.0047364411154341363) +zone = ('iaz009', 0.001629940947798364) + +[fips1908992001] +centroid = (0.75718331033604813, -1.6102755348486684) +description = Howard Center township, IA +station = ('kfka', 0.0052231247119984775) +zone = ('iaz009', 0.00084040907271065008) + +[fips1908992190] +centroid = (0.75705961885195927, -1.6140389534081585) +description = Jamestown township, IA +station = ('kccy', 0.0056864652888768685) +zone = ('iaz009', 0.0020637453766747076) + +[fips1908993090] +centroid = (0.7552456807070691, -1.608075268073849) +description = New Oregon township, IA +station = ('kdeh', 0.0051191654000126499) +zone = ('iaz009', 0.0027330550333047603) + +[fips1908993150] +centroid = (0.75859976719708921, -1.6143322559889564) +description = Oak Dale township, IA +station = ('kfka', 0.005435109728438311) +zone = ('iaz009', 0.0029303041133801975) + +[fips1908993273] +centroid = (0.75526934737172613, -1.6100632853583332) +description = Paris township, IA +station = ('kccy', 0.005904794776743153) +zone = ('iaz009', 0.0016831917696112269) + +[fips1908993756] +centroid = (0.75717386810479481, -1.6122147876338515) +description = Saratoga township, IA +station = ('kfka', 0.0056817187188598359) +zone = ('iaz009', 0.00084263964462722915) + +[fips1908994347] +centroid = (0.75726605639588518, -1.6079840397138474) +description = Vernon Springs township, IA +station = ('kfka', 0.0050736455250698538) +zone = ('iaz009', 0.0024285524080538252) + +[fips19091] +centroid = (0.74669061776586099, -1.6441485882654012) +description = Humboldt County, IA +station = ('kfod', 0.0040606937281330016) +zone = ('iaz024', 0.00011696917612124358) + +[fips1909100] +centroid = (0.74035947081083664, -1.6297156578292042) +description = Buckeye city, IA +station = ('kifa', 0.0016234083308581211) +zone = ('iaz037', 0.0018531494486352031) + +[fips1909145] +centroid = (0.73160406152479207, -1.6649586725357053) +description = Buck Grove city, IA +station = ('kdns', 0.001153501425833422) +zone = ('iaz044', 0.0020903085712935124) + +[fips1909190099] +centroid = (0.74667878443353242, -1.647655356158386) +description = Avery township, IA +station = ('kfod', 0.0049324771263232533) +zone = ('iaz024', 0.0025175279498490517) + +[fips1909190165] +centroid = (0.74494843010652023, -1.6430794868320922) +description = Beaver township, IA +station = ('kfod', 0.0023724191485507292) +zone = ('iaz024', 0.0018446579351112293) + +[fips1909190834] +centroid = (0.74495038487528242, -1.6453535461276858) +description = Corinth township, IA +station = ('kfod', 0.0025769145706257181) +zone = ('iaz024', 0.0018355486119324207) + +[fips1909190872] +centroid = (0.74567150256232895, -1.644049889896201) +description = Dakota City city, IA +station = ('kfod', 0.0030390655587747293) +zone = ('iaz024', 0.00092674950830350946) + +[fips1909190945] +centroid = (0.74811552202048159, -1.6452585478564996) +description = Delana township, IA +station = ('kaxa', 0.003830499241218025) +zone = ('iaz024', 0.0017035450829313279) + +[fips1909191785] +centroid = (0.7464724516093616, -1.643157799755629) +description = Grove township, IA +station = ('kfod', 0.0038646643899045382) +zone = ('iaz024', 0.00079386512362638966) + +[fips1909192003] +centroid = (0.74565575969247599, -1.6445368367575075) +description = Humboldt city, IA +station = ('kfod', 0.0030652565474389229) +zone = ('iaz024', 0.00096049796140584181) + +[fips1909192004] +centroid = (0.74821052029166768, -1.6430138100923395) +description = Humboldt township, IA +station = ('kaxa', 0.0040821078619162855) +zone = ('iaz024', 0.0018498055786633273) + +[fips1909192352] +centroid = (0.74657624633997788, -1.6411472153639168) +description = Lake township, IA +station = ('kfod', 0.0043982893819620754) +zone = ('iaz024', 0.0022610550121969649) + +[fips1909193138] +centroid = (0.74504887380497253, -1.6411470757375766) +description = Norway township, IA +station = ('kfod', 0.0031067753283137347) +zone = ('iaz024', 0.0027371423067461369) + +[fips1909193717] +centroid = (0.74669279942742595, -1.6454291537908821) +description = Rutland township, IA +station = ('kfod', 0.0042265168524095592) +zone = ('iaz024', 0.00088802058162335343) + +[fips1909194335] +centroid = (0.74811491115524342, -1.6411456096610049) +description = Vernon township, IA +station = ('kcav', 0.0039215158355883984) +zone = ('iaz024', 0.0027273770308749953) + +[fips1909194377] +centroid = (0.748227380172242, -1.646971152185019) +description = Wacousta township, IA +station = ('kaxa', 0.003922857856337331) +zone = ('iaz024', 0.0025949056463372981) + +[fips1909194620] +centroid = (0.74505812405000804, -1.6473158023524104) +description = Weaver township, IA +station = ('kfod', 0.0035379568031950223) +zone = ('iaz024', 0.0027366562957348802) + +[fips1909235] +centroid = (0.72362310718773493, -1.5842115557442558) +description = Buffalo city, IA +station = ('kmli', 0.0033010902975065459) +zone = ('ilz015', 0.0026346814452912455) + +[fips1909280] +centroid = (0.75728769847860988, -1.6396113779820394) +description = Buffalo Center city, IA +station = ('kfxy', 0.0049544279313568996) +zone = ('iaz006', 0.0026542792203343166) + +[fips19093] +centroid = (0.73987753304448345, -1.6669189565383751) +description = Ida County, IA +station = ('kslb', 0.0050633548603054614) +zone = ('iaz032', 0.0001189270964264836) + +[fips1909390138] +centroid = (0.74064247594904742, -1.6686069866310267) +description = Battle township, IA +station = ('kckp', 0.0052029643333188352) +zone = ('iaz032', 0.0014454088681167911) + +[fips1909390258] +centroid = (0.73906024771565204, -1.6645227765550197) +description = Blaine township, IA +station = ('kslb', 0.0047858061929008855) +zone = ('iaz032', 0.0019885471538961487) + +[fips1909390837] +centroid = (0.73896359138167655, -1.6667519634355445) +description = Corwin township, IA +station = ('kslb', 0.0056806082361216051) +zone = ('iaz032', 0.00085023563938834248) + +[fips1909391041] +centroid = (0.74208753875652866, -1.6700386104032676) +description = Douglas township, IA +station = ('kckp', 0.0040798586999882328) +zone = ('iaz032', 0.0031969556896285205) + +[fips1909391500] +centroid = (0.74221105570769241, -1.6657117472013558) +description = Galva township, IA +station = ('kslb', 0.0029372009613948076) +zone = ('iaz032', 0.0026089560236774094) + +[fips1909391518] +centroid = (0.7376265993614789, -1.6686477400690605) +description = Garfield township, IA +station = ('kdns', 0.0056701398934917912) +zone = ('iaz032', 0.0024724772595478748) + +[fips1909391665] +centroid = (0.73759952930478034, -1.6666667739147545) +description = Grant township, IA +station = ('kdns', 0.0050554538929420663) +zone = ('iaz032', 0.0022058098276416982) + +[fips1909391770] +centroid = (0.74211497533237003, -1.6679306715458788) +description = Griggs township, IA +station = ('kckp', 0.0036953405124301032) +zone = ('iaz032', 0.0024194824620503773) + +[fips1909391893] +centroid = (0.73750615418979859, -1.6647007826854305) +description = Hayes township, IA +station = ('kdns', 0.0047589154987646969) +zone = ('iaz032', 0.0028583438094843192) + +[fips1909392694] +centroid = (0.74054046145426833, -1.6667351559148476) +description = Logan township, IA +station = ('kslb', 0.0045073216461507725) +zone = ('iaz032', 0.00078149539067376135) + +[fips1909392814] +centroid = (0.73880042054990758, -1.6686654726142609) +description = Maple township, IA +station = ('kdns', 0.006711940813489037) +zone = ('iaz032', 0.0015633199671642765) + +[fips1909393894] +centroid = (0.7405785270852544, -1.6646735031892219) +description = Silver Creek township, IA +station = ('kslb', 0.0034778525427375524) +zone = ('iaz032', 0.0019084196067797184) + +[fips1909415] +centroid = (0.75162249935297643, -1.6280172255742109) +description = Burchinal CDP, IA +station = ('kmcw', 0.0016429480079648024) +zone = ('iaz017', 0.00037016449010484134) + +[fips19095] +centroid = (0.72752161423132966, -1.6067348028484398) +description = Iowa County, IA +station = ('kcid', 0.0056548122561180993) +zone = ('iaz063', 9.410451276894767e-05) + +[fips1909550] +centroid = (0.71220683873726998, -1.590437197545997) +description = Burlington city, IA +station = ('kbrl', 0.00070227176170580897) +zone = ('iaz089', 0.0021683824686704527) + +[fips1909590912] +centroid = (0.72538538358676619, -1.610012758076488) +description = Dayton township, IA +station = ('kooa', 0.0066858513800903087) +zone = ('iaz063', 0.0032155879603061035) + +[fips1909591227] +centroid = (0.7253283113202259, -1.6079473703462628) +description = English township, IA +station = ('kooa', 0.0075130450083815336) +zone = ('iaz063', 0.0023812293176439583) + +[fips1909591341] +centroid = (0.72528675503073592, -1.6058123439788832) +description = Fillmore township, IA +station = ('kawg', 0.0065100822414473078) +zone = ('iaz063', 0.0024044476962962434) + +[fips1909591752] +centroid = (0.7253040337903307, -1.6037555781751629) +description = Greene township, IA +station = ('kawg', 0.0055869595937644047) +zone = ('iaz063', 0.0032322367981506856) + +[fips1909591878] +centroid = (0.72836439882053272, -1.6099127856169337) +description = Hartford township, IA +station = ('kggi', 0.006379277265444786) +zone = ('iaz063', 0.0024242940563948467) + +[fips1909591962] +centroid = (0.7284341421774424, -1.6060367235075197) +description = Hilton township, IA +station = ('kcid', 0.0046985186728707327) +zone = ('iaz063', 0.0010607563349943039) + +[fips1909591983] +centroid = (0.7300799353021955, -1.6100710520735044) +description = Honey Creek township, IA +station = ('kggi', 0.0065892195780593282) +zone = ('iaz063', 0.0034806681515045196) + +[fips1909592064] +centroid = (0.72833739857700441, -1.6037985132747621) +description = Iowa township, IA +station = ('kcid', 0.0034982246285267956) +zone = ('iaz063', 0.0024045001852313424) + +[fips1909592415] +centroid = (0.72978947760807855, -1.6038108003926961) +description = Lenox township, IA +station = ('kcid', 0.0025772795846944157) +zone = ('iaz063', 0.0031765148204106492) + +[fips1909592559] +centroid = (0.72685941885983052, -1.609973784874291) +description = Lincoln township, IA +station = ('kggi', 0.0064241304968346413) +zone = ('iaz063', 0.0024389175607060702) + +[fips1909592835] +centroid = (0.72994964647353411, -1.6076248509537867) +description = Marengo township, IA +station = ('kcid', 0.0052221040872014266) +zone = ('iaz063', 0.0024558448645608175) + +[fips1909593324] +centroid = (0.72667968485346024, -1.6077288027640355) +description = Pilot township, IA +station = ('kcid', 0.0067618554997687591) +zone = ('iaz063', 0.0011017003335358883) + +[fips1909594050] +centroid = (0.72822630837011493, -1.6081159342454205) +description = Sumner township, IA +station = ('kcid', 0.0061473318499081593) +zone = ('iaz063', 0.0011558608703336882) + +[fips1909594137] +centroid = (0.7267714717188225, -1.6059817979959594) +description = Troy township, IA +station = ('kcid', 0.0057516767505984383) +zone = ('iaz063', 0.0010224542143814227) + +[fips1909594506] +centroid = (0.73009354887036104, -1.6061894223637765) +description = Washington township, IA +station = ('kcid', 0.0041462697313786601) +zone = ('iaz063', 0.002577588010114189) + +[fips1909594806] +centroid = (0.72679217132375118, -1.6039688574097566) +description = York township, IA +station = ('kcid', 0.0048435462386904604) +zone = ('iaz063', 0.0022847829503127963) + +[fips1909640] +centroid = (0.7584849070790155, -1.603293083376677) +description = Burr Oak CDP, IA +station = ('kdeh', 0.0034573818576349104) +zone = ('iaz010', 0.0029305391109330434) + +[fips1909685] +centroid = (0.75396319531941114, -1.6444676169993733) +description = Burt city, IA +station = ('kaxa', 0.0020991488549046838) +zone = ('iaz005', 0.00020464039818923266) + +[fips19097] +centroid = (0.73590553018608729, -1.5808249363169784) +description = Jackson County, IA +station = ('kdbq', 0.0044212744850389589) +zone = ('iaz054', 0.0001295877802788618) + +[fips1909730] +centroid = (0.71917602570694594, -1.6211363697179784) +description = Bussey city, IA +station = ('kpea', 0.0034507707689485898) +zone = ('iaz085', 0.003079224133823976) + +[fips1909790180] +centroid = (0.73729558021554553, -1.5789787270342188) +description = Bellevue township, IA +station = ('kdbq', 0.0040398455194458121) +zone = ('iaz054', 0.001856097183623361) + +[fips1909790327] +centroid = (0.73606068995658958, -1.5852726461162983) +description = Brandon township, IA +station = ('kdbq', 0.0042971927039047461) +zone = ('iaz054', 0.0033015546339559155) + +[fips1909790426] +centroid = (0.73738272450509768, -1.5852754735496863) +description = Butler township, IA +station = ('kdbq', 0.0031224409017243022) +zone = ('iaz042', 0.0038976246956630165) + +[fips1909791284] +centroid = (0.73431420878728881, -1.5792115365031425) +description = Fairfield township, IA +station = ('kcwi', 0.0046091241557830098) +zone = ('iaz054', 0.0020930713065577793) + +[fips1909791314] +centroid = (0.73590226642038592, -1.5834208168733472) +description = Farmers Creek township, IA +station = ('kdbq', 0.0041283425275429487) +zone = ('iaz054', 0.0019337143347417781) + +[fips1909792067] +centroid = (0.73476679011562351, -1.5755346513679658) +description = Iowa township, IA +station = ('ksfy', 0.002315290098374789) +zone = ('iaz054', 0.0041180809653187534) + +[fips1909792130] +centroid = (0.73590109704978712, -1.5793668184466922) +description = Jackson township, IA +station = ('kdbq', 0.0049235774142340517) +zone = ('iaz054', 0.0010838988324807053) + +[fips1909792826] +centroid = (0.73439025278279824, -1.581457007305588) +description = Maquoketa township, IA +station = ('kcwi', 0.0055790347217657419) +zone = ('iaz054', 0.0017116846313870279) + +[fips1909792958] +centroid = (0.7343804440324021, -1.5854591170935812) +description = Monmouth township, IA +station = ('kmxo', 0.0050305124909680657) +zone = ('iaz054', 0.0038192698306727469) + +[fips1909793234] +centroid = (0.73731345238708601, -1.5829060494637641) +description = Otter Creek township, IA +station = ('kdbq', 0.0027073192136614545) +zone = ('iaz054', 0.0020066025868324872) + +[fips1909793300] +centroid = (0.73590188244795052, -1.5814019596209803) +description = Perry township, IA +station = ('kdbq', 0.0042868858914923563) +zone = ('iaz054', 0.00045282756887096704) + +[fips1909793501] +centroid = (0.73894388661442156, -1.5813921159639992) +description = Prairie Springs township, IA +station = ('kdbq', 0.001610087018175268) +zone = ('iaz054', 0.0029397438314777988) + +[fips1909793594] +centroid = (0.73742305906411132, -1.5813934075076455) +description = Richland township, IA +station = ('kdbq', 0.002859537429141734) +zone = ('iaz054', 0.001451996507028332) + +[fips1909793948] +centroid = (0.73428413676427695, -1.5836181437985775) +description = South Fork township, IA +station = ('kdbq', 0.0057529027737151352) +zone = ('iaz054', 0.0027164686786044947) + +[fips1909794107] +centroid = (0.73890295864346234, -1.5791342882304491) +description = Tete Des Morts township, IA +station = ('kdbq', 0.0030760177094394056) +zone = ('iaz054', 0.0031270132985734005) + +[fips1909794221] +centroid = (0.73440507062814764, -1.5741030974088952) +description = Union township, IA +station = ('ksfy', 0.0012006885880013452) +zone = ('ilz007', 0.0033073075928051537) + +[fips1909794314] +centroid = (0.734406187638869, -1.577475265509966) +description = Van Buren township, IA +station = ('ksfy', 0.0036070183675001432) +zone = ('iaz054', 0.0029664416733586121) + +[fips1909794509] +centroid = (0.73585348446779275, -1.5772641504836449) +description = Washington township, IA +station = ('ksfy', 0.003955006615042788) +zone = ('iaz054', 0.0026403559942945356) + +[fips1909820] +centroid = (0.73001005231894567, -1.5840610909094412) +description = Calamus city, IA +station = ('kdvn', 0.0043254014756070672) +zone = ('iaz066', 0.0032158560938979485) + +[fips19099] +centroid = (0.72755247165250492, -1.6240807227128005) +description = Jasper County, IA +station = ('ktnu', 0.0004749845966743149) +zone = ('iaz061', 1.0969056397611058e-05) + +[fips1909910] +centroid = (0.72536180418857177, -1.6754244870354118) +description = California Junction CDP, IA +station = ('kbta', 0.0029438548588485449) +zone = ('iaz055', 0.0031599088794710098) + +[fips1909955] +centroid = (0.73934958839904763, -1.6457671717071158) +description = Callender city, IA +station = ('kfod', 0.0035913344739610365) +zone = ('iaz035', 0.0018662346279885284) + +[fips1909990381] +centroid = (0.72692602062408662, -1.6223085502969103) +description = Buena Vista township, IA +station = ('ktnu', 0.0010325049222033428) +zone = ('iaz061', 0.0014755077221225137) + +[fips1909990711] +centroid = (0.72976492082550304, -1.628399365413935) +description = Clear Creek township, IA +station = ('kikv', 0.0040634495831885385) +zone = ('iaz061', 0.0038975449572900764) + +[fips1909990975] +centroid = (0.7252370480536392, -1.6276330436992621) +description = Des Moines township, IA +station = ('ktnu', 0.0038685427041980427) +zone = ('iaz061', 0.0035197225636559772) + +[fips1909991182] +centroid = (0.72524071324506845, -1.6219476336608905) +description = Elk Creek township, IA +station = ('ktnu', 0.0025323202230834517) +zone = ('iaz061', 0.0028183111129836268) + +[fips1909991293] +centroid = (0.72536241505381005, -1.6246862996033649) +description = Fairview township, IA +station = ('ktnu', 0.0023401555129131048) +zone = ('iaz061', 0.0022398185315686456) + +[fips1909991920] +centroid = (0.72972755332621775, -1.6201776079999806) +description = Hickory Grove township, IA +station = ('kggi', 0.0021766172405702396) +zone = ('iaz061', 0.0036390185276635022) + +[fips1909992022] +centroid = (0.72976891762949014, -1.6262443201200352) +description = Independence township, IA +station = ('ktnu', 0.0030743655492808464) +zone = ('iaz061', 0.0027319226082692005) + +[fips1909992301] +centroid = (0.72833488530288149, -1.6220530690010035) +description = Kellogg township, IA +station = ('ktnu', 0.0013271050563967931) +zone = ('iaz061', 0.0017099262399311306) + +[fips1909992736] +centroid = (0.72516610041954566, -1.6198327658463714) +description = Lynn Grove township, IA +station = ('kggi', 0.0029963346813876757) +zone = ('iaz061', 0.0039833211361753156) + +[fips1909992802] +centroid = (0.72982757814564969, -1.6239971563482147) +description = Malaka township, IA +station = ('ktnu', 0.0023522431625538302) +zone = ('iaz061', 0.0022707627332248311) + +[fips1909992871] +centroid = (0.72985960493742374, -1.622039158726865) +description = Mariposa township, IA +station = ('ktnu', 0.0025724184029254013) +zone = ('iaz061', 0.0027652076478960215) + +[fips1909993033] +centroid = (0.72692862116467216, -1.6262323820679516) +description = Mound Prairie township, IA +station = ('ktnu', 0.002160758831690944) +zone = ('iaz061', 0.0017172774331875897) + +[fips1909993102] +centroid = (0.72840993446071722, -1.6242133153760745) +description = Newton township, IA +station = ('ktnu', 0.0010651489741847768) +zone = ('iaz061', 0.00085666889815946487) + +[fips1909993267] +centroid = (0.72671508013069053, -1.6240197409087356) +description = Palo Alto township, IA +station = ('ktnu', 0.00090397675717409796) +zone = ('iaz061', 0.00084466856536891165) + +[fips1909993471] +centroid = (0.72845719797686126, -1.6279558597977111) +description = Poweshiek township, IA +station = ('kikv', 0.0038788401412370595) +zone = ('iaz061', 0.0030202722098542465) + +[fips1909993597] +centroid = (0.72681690263925192, -1.6202615408837089) +description = Richland township, IA +station = ('kggi', 0.0017856959371803367) +zone = ('iaz061', 0.0029569756790091225) + +[fips1909993672] +centroid = (0.72824981795513932, -1.6200501116981223) +description = Rock Creek township, IA +station = ('kggi', 0.00122967400198494) +zone = ('iaz061', 0.0030969060144920234) + +[fips1909993861] +centroid = (0.72850248927095052, -1.6260801369973001) +description = Sherman township, IA +station = ('ktnu', 0.0022012981519123507) +zone = ('iaz061', 0.0017582808168367585) + +[fips1909994512] +centroid = (0.72687914108037799, -1.6283686301658074) +description = Washington township, IA +station = ('kikv', 0.0035629801998023182) +zone = ('iaz060', 0.0036443554519751467) + +[fips1910045] +centroid = (0.75364299721484018, -1.6033947313523131) +description = Calmar city, IA +station = ('kdeh', 0.0024776903457028611) +zone = ('iaz010', 0.001944704749791084) + +[fips1910090] +centroid = (0.74953096659055651, -1.6676885420187495) +description = Calumet city, IA +station = ('kckp', 0.0037230986049780644) +zone = ('iaz013', 0.0025983302959937298) + +[fips19101] +centroid = (0.71570507197021238, -1.6051293442827002) +description = Jefferson County, IA +station = ('kffl', 0.00078221522629612101) +zone = ('iaz087', 0.00049683149598685151) + +[fips1910135] +centroid = (0.72942035792457427, -1.5756173974278032) +description = Camanche city, IA +station = ('kcwi', 0.0010269308875360001) +zone = ('iaz066', 0.0037994871755167759) + +[fips1910190252] +centroid = (0.71774736899443348, -1.6058359757369554) +description = Black Hawk township, IA +station = ('kffl', 0.0013287058570318347) +zone = ('iaz087', 0.0017834046129906853) + +[fips1910190366] +centroid = (0.71602439741015722, -1.6040205017023232) +description = Buchanan township, IA +station = ('kffl', 0.0011355024823285226) +zone = ('iaz087', 0.00060747787758205817) + +[fips1910190540] +centroid = (0.71461748750012466, -1.603755682894918) +description = Cedar township, IA +station = ('kffl', 0.002224633687800332) +zone = ('iaz087', 0.0017183420574208459) + +[fips1910190609] +centroid = (0.71599179465972995, -1.6056362228040644) +description = Center township, IA +station = ('kffl', 0.0004956078831641538) +zone = ('iaz087', 0.00063990740929890911) + +[fips1910190978] +centroid = (0.71457593121063467, -1.6078187221270985) +description = Des Moines township, IA +station = ('kffl', 0.0026154236173272769) +zone = ('iaz087', 0.0027569732960648673) + +[fips1910191285] +centroid = (0.71570507197021238, -1.6051293442827002) +description = Fairfield city, IA +station = ('kffl', 0.00078221522629612101) +zone = ('iaz087', 0.00049683149598685151) + +[fips1910192460] +centroid = (0.71454821538211288, -1.6059641876238069) +description = Liberty township, IA +station = ('kffl', 0.0019543934959002566) +zone = ('iaz087', 0.0018142537144022891) + +[fips1910192676] +centroid = (0.71607302228311775, -1.6019481850149677) +description = Lockridge township, IA +station = ('kffl', 0.0026408062970247784) +zone = ('iaz087', 0.0021606890219024021) + +[fips1910192682] +centroid = (0.71614061888504754, -1.6078544664701793) +description = Locust Grove township, IA +station = ('kffl', 0.001869271971439577) +zone = ('iaz087', 0.0022957871919331322) + +[fips1910193282] +centroid = (0.71764996216887966, -1.6037500105748492) +description = Penn township, IA +station = ('kffl', 0.0017294310362830881) +zone = ('iaz087', 0.0017087252231204693) + +[fips1910193444] +centroid = (0.71764781541389977, -1.607974632389179) +description = Polk township, IA +station = ('kffl', 0.0022687837915802249) +zone = ('iaz087', 0.002821537590227784) + +[fips1910193708] +centroid = (0.71481249313744988, -1.6016066240803524) +description = Round Prairie township, IA +station = ('kmpz', 0.0033544342068626601) +zone = ('iaz087', 0.0027590039591475516) + +[fips1910194401] +centroid = (0.71747132771993805, -1.6016528578522378) +description = Walnut township, IA +station = ('kffl', 0.0030095225361016827) +zone = ('iaz087', 0.0027279114605269178) + +[fips1910225] +centroid = (0.73128070437427506, -1.6324460160044392) +description = Cambridge city, IA +station = ('kamw', 0.0018307776388318603) +zone = ('iaz048', 0.0025434044814296383) + +[fips19103] +centroid = (0.72725665579758447, -1.5985263273900927) +description = Johnson County, IA +station = ('kiow', 0.00079875329843349398) +zone = ('iaz064', 4.9108731737011056e-05) + +[fips1910390240] +centroid = (0.7298220978117983, -1.5976645710719206) +description = Big Grove township, IA +station = ('kcid', 0.0025887162691510582) +zone = ('iaz064', 0.0025957617414655719) + +[fips1910390543] +centroid = (0.72980118876735955, -1.5957017563418352) +description = Cedar township, IA +station = ('kiow', 0.0035453147617520715) +zone = ('iaz064', 0.003261012469344831) + +[fips1910390714] +centroid = (0.72782887944614327, -1.5997253860395053) +description = Clear Creek township, IA +station = ('kiow', 0.001838831625701542) +zone = ('iaz064', 0.0010455210206331072) + +[fips1910391119] +centroid = (0.72623877977782136, -1.5968098135240489) +description = East Lucas township, IA +station = ('kiow', 0.00087370981088330708) +zone = ('iaz064', 0.0016608370728952895) + +[fips1910391479] +centroid = (0.723789402158865, -1.5957983079560556) +description = Fremont township, IA +station = ('kiow', 0.0032363162151306736) +zone = ('iaz064', 0.0040603079059337473) + +[fips1910391599] +centroid = (0.72818984844204082, -1.5952310061359871) +description = Graham township, IA +station = ('kiow', 0.0024958334489155352) +zone = ('iaz064', 0.0026061110264610247) + +[fips1910391836] +centroid = (0.72689552972205429, -1.6019848369292595) +description = Hardin township, IA +station = ('kiow', 0.0031015195673577134) +zone = ('iaz064', 0.0026252640956751921) + +[fips1910392077] +centroid = (0.7270350687957513, -1.5975220649384951) +description = Iowa City city, IA +station = ('kiow', 0.00046554832700809571) +zone = ('iaz064', 0.00078855474211834736) + +[fips1910392229] +centroid = (0.72993852872619891, -1.5996736370271838) +description = Jefferson township, IA +station = ('kcid', 0.0013353908615049682) +zone = ('iaz064', 0.0027721475437784272) + +[fips1910392463] +centroid = (0.72520105936446311, -1.5981689886790393) +description = Liberty township, IA +station = ('kiow', 0.0014574765242938224) +zone = ('iaz064', 0.0021195659709329112) + +[fips1910392562] +centroid = (0.72526762622213414, -1.5953341725480725) +description = Lincoln township, IA +station = ('kiow', 0.0023274477710380115) +zone = ('iaz064', 0.0031308140133555823) + +[fips1910392766] +centroid = (0.72900099021190523, -1.599932015569649) +description = Madison township, IA +station = ('kcid', 0.0020935576051591318) +zone = ('iaz064', 0.0019992968915658084) + +[fips1910392973] +centroid = (0.72989906683181127, -1.6017228979151203) +description = Monroe township, IA +station = ('kcid', 0.0013165796798395191) +zone = ('iaz064', 0.003530189652484824) + +[fips1910393093] +centroid = (0.72830778033959809, -1.5971387208215873) +description = Newport township, IA +station = ('kiow', 0.0017512933654720299) +zone = ('iaz064', 0.0014352847732729723) + +[fips1910393249] +centroid = (0.72850817904431198, -1.6016246533315257) +description = Oxford township, IA +station = ('kcid', 0.0025762209981066951) +zone = ('iaz064', 0.0026156120426896025) + +[fips1910393285] +centroid = (0.72855244059414259, -1.5983646226348955) +description = Penn township, IA +station = ('kiow', 0.0019520596285228162) +zone = ('iaz064', 0.001252529083584329) + +[fips1910393417] +centroid = (0.72536642931108952, -1.596784209543922) +description = Pleasant Valley township, IA +station = ('kiow', 0.0015009253577675354) +zone = ('iaz064', 0.0023301923225164793) + +[fips1910393789] +centroid = (0.72670928563757398, -1.5955752548776507) +description = Scott township, IA +station = ('kiow', 0.0017007815851281559) +zone = ('iaz064', 0.002275005083052803) + +[fips1910393831] +centroid = (0.72532578059281061, -1.5995306771081528) +description = Sharon township, IA +station = ('kiow', 0.0018181476116690509) +zone = ('iaz064', 0.0021200678807578961) + +[fips1910394224] +centroid = (0.72677604448146271, -1.5998306119401082) +description = Union township, IA +station = ('kiow', 0.0014873921507706236) +zone = ('iaz064', 0.0011169052096254542) + +[fips1910394515] +centroid = (0.72528455591587848, -1.6016984283990074) +description = Washington township, IA +station = ('kiow', 0.0031814828889681662) +zone = ('iaz064', 0.0031225457969850929) + +[fips1910394686] +centroid = (0.72621898774410365, -1.597948902660363) +description = West Lucas township, IA +station = ('kiow', 0.0004263585461253008) +zone = ('iaz064', 0.0011650951866614171) + +[fips1910450] +centroid = (0.70935139281454462, -1.6068978689604536) +description = Cantril city, IA +station = ('kffl', 0.0071946050359174779) +zone = ('iaz098', 0.0024834005026154347) + +[fips19105] +centroid = (0.73522200689112871, -1.5902901535565164) +description = Jones County, IA +station = ('kmxo', 0.0019953234890844294) +zone = ('iaz053', 0.0001996030074054372) + +[fips1910585] +centroid = (0.71645174127750799, -1.6549910622709807) +description = Carbon city, IA +station = ('kcsq', 0.0060485464766404954) +zone = ('iaz081', 0.0016820524984770286) + +[fips1910590510] +centroid = (0.73592520004675721, -1.5935921943282421) +description = Cass township, IA +station = ('kmxo', 0.0021577621927949759) +zone = ('iaz053', 0.0023889280557434518) + +[fips1910590519] +centroid = (0.73744787764607456, -1.5935789647325123) +description = Castle Grove township, IA +station = ('kmxo', 0.0018233133558269456) +zone = ('iaz053', 0.0032130974669007848) + +[fips1910590684] +centroid = (0.73596661670990693, -1.5872044114389905) +description = Clay township, IA +station = ('kmxo', 0.0031446898237165516) +zone = ('iaz053', 0.002605485863814302) + +[fips1910591296] +centroid = (0.73436998951018262, -1.5937721377741227) +description = Fairview township, IA +station = ('kmxo', 0.0033564573684692332) +zone = ('iaz053', 0.0025208948134472719) + +[fips1910591761] +centroid = (0.73287713958778178, -1.5936080070112653) +description = Greenfield township, IA +station = ('kmxo', 0.0046070758600824449) +zone = ('iaz053', 0.0032189167813258691) + +[fips1910591803] +centroid = (0.73278112902562964, -1.5896627600503022) +description = Hale township, IA +station = ('kmxo', 0.0044695258544631836) +zone = ('iaz053', 0.0024608756745274434) + +[fips1910592133] +centroid = (0.73436866305995108, -1.5915722724250316) +description = Jackson township, IA +station = ('kmxo', 0.002759161345586562) +zone = ('iaz053', 0.0010951892798824268) + +[fips1910592725] +centroid = (0.73736239141931192, -1.5914747259731377) +description = Lovell township, IA +station = ('kmxo', 0.00034372333242427597) +zone = ('iaz053', 0.0023141552628422528) + +[fips1910592769] +centroid = (0.7343919457521727, -1.5895260484099933) +description = Madison township, IA +station = ('kmxo', 0.0029759489805515687) +zone = ('iaz053', 0.0010721459456304353) + +[fips1910593252] +centroid = (0.73285612582358772, -1.5875039273919251) +description = Oxford township, IA +station = ('kmxo', 0.0050449664188636761) +zone = ('iaz053', 0.0032202863658149445) + +[fips1910593600] +centroid = (0.73743885429384171, -1.5895091885294192) +description = Richland township, IA +station = ('kmxo', 0.0012643150995248062) +zone = ('iaz053', 0.0024101927871100445) + +[fips1910593687] +centroid = (0.73286113491854088, -1.5913060224476399) +description = Rome township, IA +station = ('kmxo', 0.0042509947328194936) +zone = ('iaz053', 0.0023614601044929322) + +[fips1910593765] +centroid = (0.73591471061795277, -1.5895179326289717) +description = Scotch Grove township, IA +station = ('kmxo', 0.0017051499758052328) +zone = ('iaz053', 0.0010756026308549073) + +[fips1910594518] +centroid = (0.73743773728312056, -1.5874821631361531) +description = Washington township, IA +station = ('kmxo', 0.002741182380445603) +zone = ('iaz053', 0.0032188117063303746) + +[fips1910594611] +centroid = (0.73591868996864729, -1.5915560234096955) +description = Wayne township, IA +station = ('kmxo', 0.001227868759073587) +zone = ('iaz053', 0.0010721647326078615) + +[fips1910594794] +centroid = (0.7345131588687237, -1.5873391508572445) +description = Wyoming township, IA +station = ('kmxo', 0.0038422881159145389) +zone = ('iaz053', 0.0024618286473636636) + +[fips19107] +centroid = (0.72136520964101492, -1.6086301955095206) +description = Keokuk County, IA +station = ('kffl', 0.0054725577952336119) +zone = ('iaz076', 0.00017028247582752501) + +[fips1910765] +centroid = (0.72454923124872073, -1.6318279251031378) +description = Carlisle city, IA +station = ('kdsm', 0.0022454902981794292) +zone = ('iaz060', 0.0031619754675882988) + +[fips1910790009] +centroid = (0.72364487144350731, -1.6100604230183599) +description = Adams township, IA +station = ('kooa', 0.0052094198198045271) +zone = ('iaz076', 0.0023776387080697917) + +[fips1910790213] +centroid = (0.71934654437486589, -1.6119770563364375) +description = Benton township, IA +station = ('kotm', 0.0023409321664187837) +zone = ('iaz076', 0.0031739580881370898) + +[fips1910790717] +centroid = (0.72080843215633628, -1.6058661001198447) +description = Clear Creek township, IA +station = ('kffl', 0.0043641784446997109) +zone = ('iaz076', 0.0023125158150476936) + +[fips1910791113] +centroid = (0.72030370038995195, -1.6081095637936507) +description = East Lancaster township, IA +station = ('kffl', 0.0043493212045722304) +zone = ('iaz076', 0.0012707211575498814) + +[fips1910791233] +centroid = (0.72360312316779962, -1.6079347690690635) +description = English River township, IA +station = ('kooa', 0.0062885560853606593) +zone = ('iaz076', 0.0022475974588833888) + +[fips1910792136] +centroid = (0.71911490427654112, -1.6076946292172813) +description = Jackson township, IA +station = ('kffl', 0.0031650119635396891) +zone = ('iaz076', 0.0024899422961806063) + +[fips1910792337] +centroid = (0.72223412180912028, -1.6057995681687587) +description = Lafayette township, IA +station = ('kffl', 0.0057838154368062989) +zone = ('iaz076', 0.0023981142512571837) + +[fips1910792466] +centroid = (0.7237475666166947, -1.6057145182743089) +description = Liberty township, IA +station = ('kawg', 0.0054301712908551404) +zone = ('iaz076', 0.0032683865896653247) + +[fips1910793342] +centroid = (0.7218546697764443, -1.6077174232173128) +description = Plank township, IA +station = ('kffl', 0.0056688785583089048) +zone = ('iaz076', 0.00091983140781287274) + +[fips1910793489] +centroid = (0.72361385694269942, -1.6117011197816971) +description = Prairie township, IA +station = ('kooa', 0.004530640450368187) +zone = ('iaz076', 0.0030528858837060155) + +[fips1910793603] +centroid = (0.71932338385569183, -1.6059075167829946) +description = Richland township, IA +station = ('kffl', 0.0028899247652960872) +zone = ('iaz076', 0.003057185039348632) + +[fips1910793888] +centroid = (0.72113000907101621, -1.6098477022891267) +description = Sigourney township, IA +station = ('kooa', 0.0037207875979514658) +zone = ('iaz076', 0.00083663475303592371) + +[fips1910794014] +centroid = (0.71911650997945287, -1.6099754080304951) +description = Steady Run township, IA +station = ('kotm', 0.0032346619552100779) +zone = ('iaz076', 0.0024952594251601008) + +[fips1910794317] +centroid = (0.72216727569876893, -1.6098561147761214) +description = Van Buren township, IA +station = ('kooa', 0.0042642583404435526) +zone = ('iaz076', 0.0010527303641816898) + +[fips1910794428] +centroid = (0.72084939503388057, -1.6119975465018559) +description = Warren township, IA +station = ('kooa', 0.0021862463855835423) +zone = ('iaz076', 0.0024611160970582583) + +[fips1910794521] +centroid = (0.72222424324555401, -1.6117474931799225) +description = Washington township, IA +station = ('kooa', 0.0033136926316488877) +zone = ('iaz076', 0.0023263975131932696) + +[fips1910794680] +centroid = (0.72030577733176182, -1.6096690329336003) +description = West Lancaster township, IA +station = ('kotm', 0.004173062760548297) +zone = ('iaz076', 0.0013148109599196444) + +[fips19109] +centroid = (0.75420001904561418, -1.6443442047679648) +description = Kossuth County, IA +station = ('kaxa', 0.0023517160595753961) +zone = ('iaz005', 0.00017163242869984633) + +[fips1910990037] +centroid = (0.75178275548489459, -1.6446224626106103) +description = Algona city, IA +station = ('kaxa', 0.00049601580560618857) +zone = ('iaz005', 0.0022919529446293794) + +[fips1910990387] +centroid = (0.75419811663672953, -1.6411246657099809) +description = Buffalo township, IA +station = ('kaxa', 0.0037671172857275362) +zone = ('iaz005', 0.0022584803700299708) + +[fips1910990417] +centroid = (0.75418680690317652, -1.6452434507584699) +description = Burt township, IA +station = ('kaxa', 0.0022408362436292708) +zone = ('iaz005', 0.00075951467905836551) + +[fips1910990855] +centroid = (0.75115920170303463, -1.6454387705550606) +description = Cresco township, IA +station = ('kaxa', 0.00079714613789874124) +zone = ('iaz005', 0.0030305001687340018) + +[fips1910991095] +centroid = (0.75863558135334008, -1.6471415835864764) +description = Eagle township, IA +station = ('kfrm', 0.0032452646040494471) +zone = ('iaz004', 0.0041547181176255802) + +[fips1910991332] +centroid = (0.75418938999046958, -1.6473067091870075) +description = Fenton township, IA +station = ('kaxa', 0.002693414730406212) +zone = ('iaz005', 0.0022559109720825901) + +[fips1910991521] +centroid = (0.74964678663971884, -1.6473096413401507) +description = Garfield township, IA +station = ('kaxa', 0.0027430112067880464) +zone = ('iaz024', 0.003801751067861191) + +[fips1910991563] +centroid = (0.75570595893740511, -1.6411249100560763) +description = German township, IA +station = ('kaxa', 0.0048210358029395798) +zone = ('iaz005', 0.0027921826852318299) + +[fips1910991668] +centroid = (0.75875099997677453, -1.6450852890216541) +description = Grant township, IA +station = ('kfrm', 0.0036911727479627663) +zone = ('iaz005', 0.0047377274047845997) + +[fips1910991767] +centroid = (0.75570094984245184, -1.6452459640325927) +description = Greenwood township, IA +station = ('kaxa', 0.0037549527271435634) +zone = ('iaz005', 0.0018080228948358886) + +[fips1910991866] +centroid = (0.75723223191498157, -1.6452450041015041) +description = Harrison township, IA +station = ('kfrm', 0.0049852267880890729) +zone = ('iaz005', 0.0032636002317052563) + +[fips1910991905] +centroid = (0.75860486355850498, -1.6411284705277502) +description = Hebron township, IA +station = ('kfrm', 0.0058645009417767633) +zone = ('mnz092', 0.0037924117966499958) + +[fips1910992082] +centroid = (0.7511648740231035, -1.6431938058980979) +description = Irvington township, IA +station = ('kaxa', 0.0017021525720174097) +zone = ('iaz005', 0.0029856018135918675) + +[fips1910992394] +centroid = (0.75735229311422625, -1.6430258877707633) +description = Ledyard township, IA +station = ('kaxa', 0.00564673184578641) +zone = ('iaz005', 0.0034088368585422075) + +[fips1910992565] +centroid = (0.75722825256428705, -1.641128295994825) +description = Lincoln township, IA +station = ('kaxa', 0.0060810613102592502) +zone = ('iaz006', 0.0037516378655313995) + +[fips1910992721] +centroid = (0.75268845919363203, -1.6473052605637284) +description = Lotts Creek township, IA +station = ('kaxa', 0.0016652215226209484) +zone = ('iaz005', 0.0026348654592820613) + +[fips1910992730] +centroid = (0.74963833924613921, -1.6411419444695756) +description = Lu Verne township, IA +station = ('kaxa', 0.0037956929438152016) +zone = ('iaz024', 0.0037965118773920503) + +[fips1910993426] +centroid = (0.7525728311306874, -1.6430267953419746) +description = Plum Creek township, IA +station = ('kaxa', 0.0017494225509732202) +zone = ('iaz005', 0.0017182131135734043) + +[fips1910993459] +centroid = (0.75415931796745772, -1.6431051780786816) +description = Portland township, IA +station = ('kaxa', 0.002716415526597793) +zone = ('iaz005', 0.00081707259416292314) + +[fips1910993492] +centroid = (0.75116436787762042, -1.6411340206747715) +description = Prairie township, IA +station = ('kaxa', 0.0031168668852346883) +zone = ('iaz005', 0.0036637372684213149) + +[fips1910993537] +centroid = (0.75583211133573913, -1.643196092279418) +description = Ramsey township, IA +station = ('kaxa', 0.0041681927652665049) +zone = ('iaz005', 0.0019259155228546006) + +[fips1910993636] +centroid = (0.74964645502716099, -1.6452549524782405) +description = Riverdale township, IA +station = ('kaxa', 0.0022995732845160549) +zone = ('iaz024', 0.0031488047454131815) + +[fips1910993810] +centroid = (0.75570007717782584, -1.6473061332283543) +description = Seneca township, IA +station = ('kaxa', 0.0040386034685454784) +zone = ('iaz005', 0.0027868674858656339) + +[fips1910993864] +centroid = (0.74964533801643984, -1.6432030735964258) +description = Sherman township, IA +station = ('kaxa', 0.0027501001237846866) +zone = ('iaz024', 0.0031472128905315833) + +[fips1910993981] +centroid = (0.75869946040396308, -1.6431162783727242) +description = Springfield township, IA +station = ('kfrm', 0.0046652209819287643) +zone = ('mnz092', 0.0043307842926616821) + +[fips1910994071] +centroid = (0.75723273806046465, -1.6473030439955783) +description = Swea township, IA +station = ('kfrm', 0.0046225653080100579) +zone = ('iaz004', 0.0037434457486958225) + +[fips1910994227] +centroid = (0.75257728172027993, -1.6454277924340655) +description = Union township, IA +station = ('kaxa', 0.0006425304914940283) +zone = ('iaz005', 0.0017219579714341322) + +[fips1910994644] +centroid = (0.75269064085519699, -1.6411253289350967) +description = Wesley township, IA +station = ('kaxa', 0.0031118584635903431) +zone = ('iaz005', 0.0026359753455635613) + +[fips1910994731] +centroid = (0.75117361812265615, -1.6473057492559189) +description = Whittemore township, IA +station = ('kaxa', 0.0016800490108521146) +zone = ('iaz005', 0.003658946339858732) + +[fips1911035] +centroid = (0.75773448531382792, -1.6234575878099609) +description = Carpenter city, IA +station = ('kaum', 0.0045191553793061815) +zone = ('iaz008', 0.0030694420261754831) + +[fips1911080] +centroid = (0.73425537373820404, -1.6557011669304469) +description = Carroll city, IA +station = ('kcin', 0.0011090530680395794) +zone = ('iaz045', 0.00058755731454066559) + +[fips19111] +centroid = (0.70943424359413687, -1.5965775800137785) +description = Lee County, IA +station = ('kfsw', 0.00193318408342068) +zone = ('iaz099', 0.00010121211372982741) + +[fips1911170] +centroid = (0.71970262644885774, -1.6653677428057876) +description = Carson city, IA +station = ('krdk', 0.0043163386886038019) +zone = ('iaz069', 0.0023894754546422339) + +[fips1911190546] +centroid = (0.71155757625552818, -1.5998591655266707) +description = Cedar township, IA +station = ('kmpz', 0.0037047202014841747) +zone = ('iaz099', 0.0033146607038623908) + +[fips1911190647] +centroid = (0.70849733339837384, -1.5978675005040499) +description = Charleston township, IA +station = ('keok', 0.0027149402549434842) +zone = ('iaz099', 0.0012692512098124646) + +[fips1911190966] +centroid = (0.71140843787094521, -1.5936504883252589) +description = Denmark township, IA +station = ('kfsw', 0.0016713528937604739) +zone = ('iaz099', 0.0030556614942109199) + +[fips1911190981] +centroid = (0.70694926125843982, -1.5978148264672247) +description = Des Moines township, IA +station = ('keok', 0.0016647053794371905) +zone = ('iaz099', 0.0025559615987813819) + +[fips1911191407] +centroid = (0.70991864227473533, -1.5979316937139383) +description = Franklin township, IA +station = ('kfsw', 0.0029348487745079073) +zone = ('iaz099', 0.001157157725583255) + +[fips1911191743] +centroid = (0.71017042347262804, -1.5918431649782336) +description = Green Bay township, IA +station = ('kbrl', 0.001649968899735789) +zone = ('iaz089', 0.0040868835131533882) + +[fips1911191869] +centroid = (0.70993939423954155, -1.5997050704070122) +description = Harrison township, IA +station = ('keok', 0.0047072059533873906) +zone = ('iaz099', 0.0024216508221774086) + +[fips1911192139] +centroid = (0.70561649293503192, -1.5961931014328568) +description = Jackson township, IA +station = ('keok', 0.00072076232141924062) +zone = ('iaz099', 0.0037338993624410153) + +[fips1911192232] +centroid = (0.70851482159747881, -1.5958095129698533) +description = Jefferson township, IA +station = ('kfsw', 0.0018211470763723613) +zone = ('iaz099', 0.0010235726406334705) + +[fips1911192311] +centroid = (0.70527962693610446, -1.5952747615403349) +description = Keokuk city, IA +station = ('keok', 0.0010777460576522158) +zone = ('ilz034', 0.003162164038353709) + +[fips1911192772] +centroid = (0.70906376255381609, -1.5941077994958663) +description = Madison township, IA +station = ('kfsw', 0.00070413465170953045) +zone = ('iaz099', 0.0019208259656359377) + +[fips1911192856] +centroid = (0.71162154257261367, -1.5977137369969492) +description = Marion township, IA +station = ('kmpz', 0.0030603446477743919) +zone = ('iaz099', 0.0024323616526563505) + +[fips1911193000] +centroid = (0.70687063417563745, -1.595663882697067) +description = Montrose township, IA +station = ('keok', 0.00060475238254629495) +zone = ('iaz099', 0.0025693530351579381) + +[fips1911193402] +centroid = (0.7118145061747142, -1.595886237643771) +description = Pleasant Ridge township, IA +station = ('kfsw', 0.002468067937006799) +zone = ('iaz099', 0.0025383288005135767) + +[fips1911194320] +centroid = (0.70851105168629447, -1.5997443054085969) +description = Van Buren township, IA +station = ('keok', 0.0037312813188890644) +zone = ('iaz099', 0.0025160114073208119) + +[fips1911194524] +centroid = (0.71003610293339459, -1.5938330672183099) +description = Washington township, IA +station = ('kfsw', 0.00032229568223110462) +zone = ('iaz099', 0.0022218872489008284) + +[fips1911194695] +centroid = (0.71032430915277645, -1.5955852556142645) +description = West Point township, IA +station = ('kfsw', 0.0012787714722949028) +zone = ('iaz099', 0.0012582797503119263) + +[fips1911215] +centroid = (0.72062086162162442, -1.6740652246139585) +description = Carter Lake city, IA +station = ('koma', 0.00029832438212365611) +zone = ('nez052', 0.0031170975511623836) + +[fips19113] +centroid = (0.73439878744284048, -1.5986809984684045) +description = Linn County, IA +station = ('kcid', 0.003731104790309539) +zone = ('iaz052', 2.2947256048858652e-05) + +[fips1911305] +centroid = (0.73831033209594765, -1.5883297822873841) +description = Cascade city, IA +station = ('kmxo', 0.0024126524305529014) +zone = ('iaz042', 0.0033090528359439987) + +[fips1911390228] +centroid = (0.73227604819339498, -1.5976243412326621) +description = Bertram township, IA +station = ('kcid', 0.0026569090018595037) +zone = ('iaz052', 0.0022843164285448131) + +[fips1911390312] +centroid = (0.73742719549443847, -1.5955901948960478) +description = Boulder township, IA +station = ('kmxo', 0.0032960424247635246) +zone = ('iaz052', 0.0037937492825710641) + +[fips1911390360] +centroid = (0.73427986070760964, -1.59532085568588) +description = Brown township, IA +station = ('kmxo', 0.0041876044981087168) +zone = ('iaz052', 0.0025136632567740488) + +[fips1911390390] +centroid = (0.73588901937136331, -1.5957166265470624) +description = Buffalo township, IA +station = ('kmxo', 0.003590976169540583) +zone = ('iaz052', 0.0026601288416538823) + +[fips1911390577] +centroid = (0.73246316494250119, -1.6000787628531568) +description = Cedar Rapids city, IA +station = ('kcid', 0.0015459803419528766) +zone = ('iaz052', 0.002203740771458225) + +[fips1911390739] +centroid = (0.73294541686811976, -1.6020295697179885) +description = Clinton township, IA +station = ('kcid', 0.0021613718780627879) +zone = ('iaz052', 0.0028752809449394305) + +[fips1911390774] +centroid = (0.73096741777354213, -1.599194264894831) +description = College township, IA +station = ('kcid', 0.0011646036981067488) +zone = ('iaz052', 0.0034672663361987443) + +[fips1911391269] +centroid = (0.73125834670655709, -1.6018551589658365) +description = Fairfax township, IA +station = ('kcid', 0.00085614427041292445) +zone = ('iaz052', 0.0039316797554860986) + +[fips1911391326] +centroid = (0.73460536461310655, -1.6022904615345763) +description = Fayette township, IA +station = ('kvti', 0.003641161319089497) +zone = ('iaz051', 0.0033877887018757386) + +[fips1911391410] +centroid = (0.73139348755053901, -1.5955340651073036) +description = Franklin township, IA +station = ('kcid', 0.0039080762953663892) +zone = ('iaz052', 0.0038310288976509165) + +[fips1911391671] +centroid = (0.73742412371495492, -1.6014785518198413) +description = Grant township, IA +station = ('kiib', 0.0041406346702157369) +zone = ('iaz052', 0.0036451246100688696) + +[fips1911392142] +centroid = (0.73754612222966931, -1.5975962414317049) +description = Jackson township, IA +station = ('kiib', 0.0061256000144395348) +zone = ('iaz052', 0.0032363383397177492) + +[fips1911392649] +centroid = (0.73288054297982319, -1.5956463246847918) +description = Linn township, IA +station = ('kcid', 0.0042410276289354112) +zone = ('iaz052', 0.0027400507749533549) + +[fips1911392796] +centroid = (0.73602690038227092, -1.5976912047963061) +description = Maine township, IA +station = ('kmxo', 0.0049591601117259616) +zone = ('iaz052', 0.001777516972333528) + +[fips1911392859] +centroid = (0.73410400133217868, -1.598135373637646) +description = Marion township, IA +station = ('kcid', 0.0036637847023552224) +zone = ('iaz052', 0.00052355399545568008) + +[fips1911392976] +centroid = (0.7343934118287444, -1.6007297706641503) +description = Monroe township, IA +station = ('kcid', 0.0033914075155271508) +zone = ('iaz052', 0.0015049380210666512) + +[fips1911393237] +centroid = (0.73577878437580735, -1.5997448988205427) +description = Otter Creek township, IA +station = ('kcid', 0.0048356253269389009) +zone = ('iaz052', 0.001567460613082755) + +[fips1911393525] +centroid = (0.73121462620879452, -1.5978458060614475) +description = Putnam township, IA +station = ('kcid', 0.0021781944546534066) +zone = ('iaz052', 0.0032634369195075541) + +[fips1911393987] +centroid = (0.73748039313003921, -1.5995884649596865) +description = Spring Grove township, IA +station = ('kiib', 0.0050027599587451534) +zone = ('iaz052', 0.0031346139134032502) + +[fips1911394527] +centroid = (0.73606655426287626, -1.6016464524938832) +description = Washington township, IA +station = ('kvti', 0.0034307984726373443) +zone = ('iaz052', 0.0027375553217217673) + +[fips1911395] +centroid = (0.72444184113984555, -1.6497073921198331) +description = Casey city, IA +station = ('kadu', 0.0062080020507843869) +zone = ('iaz058', 0.0030890656202515548) + +[fips1911485] +centroid = (0.7524603970202739, -1.6000648351257258) +description = Castalia city, IA +station = ('kdeh', 0.0030614808379723591) +zone = ('iaz010', 0.0037588981902430974) + +[fips19115] +centroid = (0.71939349373174444, -1.5927350107727103) +description = Louisa County, IA +station = ('kmut', 0.0029465394651841666) +zone = ('iaz078', 3.5881832169035515e-05) + +[fips1911530] +centroid = (0.73431399934777863, -1.6739522319981843) +description = Castana city, IA +station = ('ktqe', 0.0064160856155818981) +zone = ('iaz043', 0.00074418473843582101) + +[fips1911590792] +centroid = (0.72005862125638698, -1.5951408773334144) +description = Columbus City township, IA +station = ('kmut', 0.0037432388594090421) +zone = ('iaz078', 0.0018925056336080437) + +[fips1911590807] +centroid = (0.72076771362488723, -1.5934287442437929) +description = Concord township, IA +station = ('kmut', 0.0022757733685664122) +zone = ('iaz078', 0.0014528760512269065) + +[fips1911591170] +centroid = (0.71766333139094995, -1.5883215268800221) +description = Eliot township, IA +station = ('kmut', 0.0047263009101494603) +zone = ('ilz024', 0.0037657946684890873) + +[fips1911591218] +centroid = (0.71892633890415569, -1.595676571240729) +description = Elm Grove township, IA +station = ('kawg', 0.0035479407365770869) +zone = ('iaz078', 0.0022281817881239434) + +[fips1911591620] +centroid = (0.72052828935809876, -1.5918643707286453) +description = Grandview township, IA +station = ('kmut', 0.0016373644865137708) +zone = ('iaz078', 0.0013238392705619741) + +[fips1911592235] +centroid = (0.71810823327057582, -1.5899768495024911) +description = Jefferson township, IA +station = ('kmut', 0.003933718500994895) +zone = ('iaz078', 0.0024744585962506917) + +[fips1911592874] +centroid = (0.71856742939677554, -1.5938480246899993) +description = Marshall township, IA +station = ('kmut', 0.0040859329965504867) +zone = ('iaz078', 0.0011549499214996528) + +[fips1911593018] +centroid = (0.7173519122925166, -1.5931446744547384) +description = Morning Sun township, IA +station = ('kmpz', 0.0040621681769473237) +zone = ('iaz078', 0.0020647355607822083) + +[fips1911593159] +centroid = (0.72215109649660303, -1.5953404033735024) +description = Oakland township, IA +station = ('kmut', 0.0033606924020228163) +zone = ('iaz078', 0.0033571423105522528) + +[fips1911593465] +centroid = (0.71999641772184586, -1.5904881088002776) +description = Port Louisa township, IA +station = ('kmut', 0.0020084492194113127) +zone = ('iaz078', 0.00182586088928507) + +[fips1911594230] +centroid = (0.72158869905173284, -1.5960540685046429) +description = Union township, IA +station = ('kawg', 0.0030660937504669197) +zone = ('iaz078', 0.0032927304747296529) + +[fips1911594416] +centroid = (0.71836811279619783, -1.5917877158678979) +description = Wapello township, IA +station = ('kmut', 0.0036819633375241721) +zone = ('iaz078', 0.0012735416387843861) + +[fips19117] +centroid = (0.71616695590346013, -1.6289413948664346) +description = Lucas County, IA +station = ('kcnc', 0.0004634213232452989) +zone = ('iaz084', 8.6263858225960483e-05) + +[fips1911755] +centroid = (0.74210356087906204, -1.6136032494136907) +description = Cedar Falls city, IA +station = ('kalo', 0.00086243251579384568) +zone = ('iaz039', 0.0020449900327225668) + +[fips1911790216] +centroid = (0.71466283115409135, -1.6278906542968563) +description = Benton township, IA +station = ('kcnc', 0.0019599722961607222) +zone = ('iaz084', 0.001614888463026592) + +[fips1911790549] +centroid = (0.71611384553432189, -1.6258734202006939) +description = Cedar township, IA +station = ('kcnc', 0.0027782472510422891) +zone = ('iaz084', 0.002264852587715679) + +[fips1911790643] +centroid = (0.71589171748042069, -1.6285570908184379) +description = Chariton city, IA +station = ('kcnc', 0.00080204073440137821) +zone = ('iaz084', 0.00031566518360349885) + +[fips1911791230] +centroid = (0.71764626207086546, -1.6278943543948707) +description = English township, IA +station = ('kcnc', 0.0019384186823101267) +zone = ('iaz084', 0.0017173816661494525) + +[fips1911792145] +centroid = (0.71620203702142515, -1.6319525241584376) +description = Jackson township, IA +station = ('kcnc', 0.0018082731393874814) +zone = ('iaz084', 0.0023234118373599618) + +[fips1911792469] +centroid = (0.71774164431448695, -1.6298317571310468) +description = Liberty township, IA +station = ('kcnc', 0.0015885588604485153) +zone = ('iaz084', 0.001796214836760765) + +[fips1911792568] +centroid = (0.71601739863985669, -1.6278390100042899) +description = Lincoln township, IA +station = ('kcnc', 0.0013036506154754598) +zone = ('iaz084', 0.00078601750868075601) + +[fips1911793240] +centroid = (0.7177432500173988, -1.631749350380213) +description = Otter Creek township, IA +station = ('kcnc', 0.0022846344406460802) +zone = ('iaz084', 0.0027212155619919672) + +[fips1911793366] +centroid = (0.71771165955793759, -1.6256324251375784) +description = Pleasant township, IA +station = ('koxv', 0.003126891024449986) +zone = ('iaz084', 0.0029302885323283121) + +[fips1911794233] +centroid = (0.71457916006975075, -1.6318192857233405) +description = Union township, IA +station = ('kcnc', 0.0023323638027620969) +zone = ('iaz084', 0.0026906365996948378) + +[fips1911794431] +centroid = (0.7146735125691136, -1.6299144159244214) +description = Warren township, IA +station = ('kcnc', 0.0015176008393816328) +zone = ('iaz084', 0.0016246094621757661) + +[fips1911794530] +centroid = (0.71455784959958402, -1.6259960295806466) +description = Washington township, IA +station = ('kcnc', 0.0031319271490499287) +zone = ('iaz084', 0.0026631373835323308) + +[fips1911794713] +centroid = (0.71618207045478244, -1.6297999921386608) +description = Whitebreast township, IA +station = ('kcnc', 0.00018487546378936361) +zone = ('iaz084', 0.00070252122142424938) + +[fips19119] +centroid = (0.75718631230236155, -1.679132421577981) +description = Lyon County, IA +station = ('klyv', 0.0041470489006315671) +zone = ('iaz001', 6.6596046828795071e-05) + +[fips1911990051] +centroid = (0.75863558135334008, -1.6802586476377079) +description = Allison township, IA +station = ('klyv', 0.0027885049533745276) +zone = ('iaz001', 0.0016927597320740091) + +[fips1911990579] +centroid = (0.75732995289980065, -1.6841249184500184) +description = Centennial township, IA +station = ('kfsd', 0.0046630222864186546) +zone = ('iaz001', 0.0035943654975353688) + +[fips1911990735] +centroid = (0.75729113677723636, -1.6802648610098452) +description = Cleveland township, IA +station = ('klyv', 0.004103750530710536) +zone = ('iaz001', 0.0007995797869192352) + +[fips1911990873] +centroid = (0.7557569574581483, -1.6741252464869345) +description = Dale township, IA +station = ('kshl', 0.0018503956966892093) +zone = ('iaz002', 0.0039954573206872684) + +[fips1911991014] +centroid = (0.75575666075217551, -1.6802924023054415) +description = Doon township, IA +station = ('klyv', 0.0056237365379905096) +zone = ('iaz001', 0.0015937307791361356) + +[fips1911991164] +centroid = (0.75863055480509434, -1.6741109173337756) +description = Elgin township, IA +station = ('kshl', 0.0044925700779560353) +zone = ('iaz002', 0.0040496263875438795) + +[fips1911991524] +centroid = (0.75575718435095096, -1.6782466669825942) +description = Garfield township, IA +station = ('kshl', 0.0043669083699871295) +zone = ('iaz001', 0.001535857874237333) + +[fips1911991674] +centroid = (0.75728254975731657, -1.6741098003230546) +description = Grant township, IA +station = ('kshl', 0.0032019330980769711) +zone = ('iaz002', 0.003754425077774964) + +[fips1911992385] +centroid = (0.75863671581735381, -1.6822925321749345) +description = Larchwood township, IA +station = ('klyv', 0.0034696413179788623) +zone = ('iaz001', 0.0027113611367727305) + +[fips1911992436] +centroid = (0.75718011638351701, -1.6760263289213768) +description = Liberal township, IA +station = ('kshl', 0.003826548249439894) +zone = ('iaz001', 0.0022972861934433429) + +[fips1911992697] +centroid = (0.75728647674813354, -1.6823009970218066) +description = Logan township, IA +station = ('klyv', 0.0046014282532523838) +zone = ('iaz001', 0.0022686983805090557) + +[fips1911992742] +centroid = (0.75563150319151495, -1.684158097159099) +description = Lyon township, IA +station = ('kfsd', 0.0059869988472059802) +zone = ('iaz001', 0.0039151323422506766) + +[fips1911992925] +centroid = (0.75863256193373418, -1.6761649429705703) +description = Midland township, IA +station = ('klyv', 0.0035184592318430945) +zone = ('iaz001', 0.002658200673485195) + +[fips1911993606] +centroid = (0.75576556193136057, -1.6823273864000969) +description = Richland township, IA +station = ('klyv', 0.0059902827050771663) +zone = ('iaz001', 0.0026620760945630559) + +[fips1911993642] +centroid = (0.75872139919266057, -1.6781563112872182) +description = Riverside township, IA +station = ('klyv', 0.0027343332927857651) +zone = ('iaz001', 0.0017561937389362283) + +[fips1911993660] +centroid = (0.75711375896535615, -1.6783152060623197) +description = Rock township, IA +station = ('klyv', 0.0042757030062117963) +zone = ('iaz001', 0.00063355512475958965) + +[fips1911993915] +centroid = (0.75866841099657001, -1.6845148075516214) +description = Sioux township, IA +station = ('kfsd', 0.0035800284655870471) +zone = ('iaz001', 0.0041634709142446252) + +[fips1911994707] +centroid = (0.75576369442906099, -1.6761881907562068) +description = Wheeler township, IA +station = ('kshl', 0.0030038095819573964) +zone = ('iaz001', 0.002574654956906858) + +[fips1912000] +centroid = (0.73246316494250119, -1.6000787628531568) +description = Cedar Rapids city, IA +station = ('kcid', 0.0015459803419528766) +zone = ('iaz052', 0.002203740771458225) + +[fips19121] +centroid = (0.72135543579720374, -1.6408745076682927) +description = Madison County, IA +station = ('kdsm', 0.0057719549883913281) +zone = ('iaz072', 4.3594492468262343e-06) + +[fips1912190846] +centroid = (0.72236627814008136, -1.6378416839336869) +description = Crawford township, IA +station = ('kdsm', 0.0034074384744236992) +zone = ('iaz072', 0.0024939450370694361) + +[fips1912191044] +centroid = (0.72213460313517164, -1.6418795206114685) +description = Douglas township, IA +station = ('kdsm', 0.005985835981722378) +zone = ('iaz072', 0.0010806927285270747) + +[fips1912191614] +centroid = (0.71914394655529434, -1.6437059727670955) +description = Grand River township, IA +station = ('kcsq', 0.0041077670184050744) +zone = ('iaz072', 0.0030673271109176725) + +[fips1912192148] +centroid = (0.7221044089391121, -1.6438263481256057) +description = Jackson township, IA +station = ('kcsq', 0.0066730765782926872) +zone = ('iaz072', 0.002334637504593793) + +[fips1912192238] +centroid = (0.72334172520572848, -1.6399840755905102) +description = Jefferson township, IA +station = ('kdsm', 0.0041875946861424209) +zone = ('iaz072', 0.0020956565461970212) + +[fips1912192406] +centroid = (0.72366023034092486, -1.6379091409092768) +description = Lee township, IA +station = ('kdsm', 0.0026405250990352699) +zone = ('iaz072', 0.0032050703392770613) + +[fips1912192571] +centroid = (0.72060670700139073, -1.6417666676220344) +description = Lincoln township, IA +station = ('kcsq', 0.0061613237077561391) +zone = ('iaz072', 0.0010030976282880205) + +[fips1912192775] +centroid = (0.72358533826272176, -1.6416262907902965) +description = Madison township, IA +station = ('kpro', 0.0066202413743396424) +zone = ('iaz072', 0.0022977827485734033) + +[fips1912192979] +centroid = (0.71910158741434849, -1.6418292725823036) +description = Monroe township, IA +station = ('kcsq', 0.0050632512797112988) +zone = ('iaz072', 0.0023653887031366825) + +[fips1912193165] +centroid = (0.71912366582938614, -1.6378845492201162) +description = Ohio township, IA +station = ('ki75', 0.0034276887661610182) +zone = ('iaz083', 0.0031294450230965596) + +[fips1912193288] +centroid = (0.72360818462263055, -1.6438081094349222) +description = Penn township, IA +station = ('kpro', 0.0064701616329602011) +zone = ('iaz072', 0.0031454061340660329) + +[fips1912193792] +centroid = (0.72051404747140246, -1.6396340323557301) +description = Scott township, IA +station = ('ki75', 0.0053381571552937905) +zone = ('iaz072', 0.0012594736755455356) + +[fips1912193942] +centroid = (0.72081665265711314, -1.6378328874742571) +description = South township, IA +station = ('kdsm', 0.0046713183629244811) +zone = ('iaz072', 0.0023515441442242715) + +[fips1912194236] +centroid = (0.72211842393300563, -1.6397758752640397) +description = Union township, IA +station = ('kdsm', 0.0046534890791776456) +zone = ('iaz072', 0.001125632247623537) + +[fips1912194404] +centroid = (0.71907116632548607, -1.6398912764341815) +description = Walnut township, IA +station = ('ki75', 0.0045022792631421119) +zone = ('iaz072', 0.0024034271861122416) + +[fips1912194626] +centroid = (0.72059400100443616, -1.6438273953231568) +description = Webster township, IA +station = ('kcsq', 0.0052914910837329509) +zone = ('iaz072', 0.0023416770406885935) + +[fips1912194765] +centroid = (0.7216887936843347, -1.6409267453728047) +description = Winterset city, IA +station = ('kdsm', 0.0056053820047159897) +zone = ('iaz072', 0.00033384465052863532) + +[fips1912225] +centroid = (0.73505890587252976, -1.5898268035466971) +description = Center Junction city, IA +station = ('kmxo', 0.002276832053153413) +zone = ('iaz053', 0.00053961028529569304) + +[fips1912270] +centroid = (0.73625492764904399, -1.6018533438234144) +description = Center Point city, IA +station = ('kvti', 0.0032415102764498248) +zone = ('iaz052', 0.0029739688867899028) + +[fips19123] +centroid = (0.7213584901233947, -1.6168095937825293) +description = Mahaska County, IA +station = ('kooa', 0.0026161641681136509) +zone = ('iaz075', 9.5765150212524455e-05) + +[fips1912315] +centroid = (0.71084434745670066, -1.6209115538570291) +description = Centerville city, IA +station = ('ktvk', 0.00092536935255311257) +zone = ('iaz096', 0.00026107725563400178) + +[fips1912390012] +centroid = (0.72221272407249093, -1.6158521934213481) +description = Adams township, IA +station = ('kooa', 0.0029185381032954543) +zone = ('iaz075', 0.0011010764577023596) + +[fips1912390255] +centroid = (0.72212338066808135, -1.6201510266354726) +description = Black Oak township, IA +station = ('kpea', 0.0014509519651349967) +zone = ('iaz075', 0.00254408302228746) + +[fips1912390552] +centroid = (0.71910453702078436, -1.6140413968691114) +description = Cedar township, IA +station = ('kooa', 0.00047487233668381981) +zone = ('iaz086', 0.003117472658293585) + +[fips1912391110] +centroid = (0.71940906206867217, -1.6174548594602842) +description = East Des Moines township, IA +station = ('kooa', 0.0023625340331705166) +zone = ('iaz075', 0.0020687531640022519) + +[fips1912391527] +centroid = (0.72068156417300877, -1.6182655125379581) +description = Garfield township, IA +station = ('kooa', 0.0031825564119662259) +zone = ('iaz075', 0.001278646944198162) + +[fips1912391872] +centroid = (0.71927338017262221, -1.6160721572669769) +description = Harrison township, IA +station = ('kooa', 0.0013444251794387796) +zone = ('iaz075', 0.0022456969590253393) + +[fips1912392241] +centroid = (0.71928250824461015, -1.6200488027011835) +description = Jefferson township, IA +station = ('kpea', 0.0035938233407037351) +zone = ('iaz075', 0.0032043494295714353) + +[fips1912392574] +centroid = (0.72116723694396134, -1.617392481392818) +description = Lincoln township, IA +station = ('kooa', 0.0028311148166733613) +zone = ('iaz075', 0.00046265595353685757) + +[fips1912392778] +centroid = (0.72229683148914448, -1.6178434919248259) +description = Madison township, IA +station = ('kooa', 0.0038290109268512246) +zone = ('iaz075', 0.0011219315165756408) + +[fips1912392982] +centroid = (0.72214631429445253, -1.6139327850297596) +description = Monroe township, IA +station = ('kooa', 0.002630906573273444) +zone = ('iaz075', 0.0023304618757541136) + +[fips1912393218] +centroid = (0.72065409269058245, -1.6168468216554743) +description = Oskaloosa city, IA +station = ('kooa', 0.0022077705637981388) +zone = ('iaz075', 0.00078013418150280674) + +[fips1912393396] +centroid = (0.72357643708353669, -1.6139226795733905) +description = Pleasant Grove township, IA +station = ('kooa', 0.0040559370628230678) +zone = ('iaz075', 0.003089067500548695) + +[fips1912393495] +centroid = (0.72371224115263433, -1.6179047529815707) +description = Prairie township, IA +station = ('kpea', 0.0032720516565809495) +zone = ('iaz075', 0.0024027237994238369) + +[fips1912393609] +centroid = (0.72380912437941247, -1.6198700984390715) +description = Richland township, IA +station = ('kpea', 0.0020190965692123697) +zone = ('iaz075', 0.0032625091035082968) + +[fips1912393795] +centroid = (0.72071854769985855, -1.619769776913667) +description = Scott township, IA +station = ('kpea', 0.0024897759689477745) +zone = ('iaz075', 0.0022790219091523858) + +[fips1912393969] +centroid = (0.72066898034910198, -1.6160544770816541) +description = Spring Creek township, IA +station = ('kooa', 0.0017314892111119646) +zone = ('iaz075', 0.00098857321241983278) + +[fips1912394239] +centroid = (0.72368771927664388, -1.6158464163815238) +description = Union township, IA +station = ('kooa', 0.0043118125910600021) +zone = ('iaz075', 0.0023858717608952135) + +[fips1912394659] +centroid = (0.71897665674649058, -1.6181797645118077) +description = West Des Moines township, IA +station = ('kotm', 0.0038507946735089451) +zone = ('iaz075', 0.0026416417346128746) + +[fips1912394722] +centroid = (0.72070842479019703, -1.6141626274389549) +description = White Oak township, IA +station = ('kooa', 0.0011828325723128878) +zone = ('iaz075', 0.0021721905674520611) + +[fips1912495] +centroid = (0.73658994359896424, -1.5973943068372491) +description = Central City city, IA +station = ('kmxo', 0.00464743384719355) +zone = ('iaz052', 0.0023810998864948725) + +[fips19125] +centroid = (0.72136997438987294, -1.6247941784044306) +description = Marion County, IA +station = ('koxv', 0.0006251901606053931) +zone = ('iaz074', 9.0147889778214666e-05) + +[fips1912590687] +centroid = (0.720646727401139, -1.6219948448171568) +description = Clay township, IA +station = ('kpea', 0.0019195836307828243) +zone = ('iaz074', 0.0023104583932479759) + +[fips1912590882] +centroid = (0.71918361788919216, -1.6278327093656901) +description = Dallas township, IA +station = ('koxv', 0.0025731492623418117) +zone = ('iaz074', 0.0031448520200369019) + +[fips1912591413] +centroid = (0.72067786407499457, -1.6278519428940472) +description = Franklin township, IA +station = ('koxv', 0.0020032469963397184) +zone = ('iaz074', 0.0023437066484782512) + +[fips1912592028] +centroid = (0.7193392139920074, -1.6236595747642941) +description = Indiana township, IA +station = ('koxv', 0.0018770933108159448) +zone = ('iaz074', 0.0022791283848417831) + +[fips1912592328] +centroid = (0.72119064180923043, -1.6248705540124979) +description = Knoxville township, IA +station = ('koxv', 0.000441702443635393) +zone = ('iaz074', 0.00023133686919844709) + +[fips1912592376] +centroid = (0.72283283955572442, -1.6218818347480903) +description = Lake Prairie township, IA +station = ('kpea', 0.00027918802501107008) +zone = ('iaz074', 0.0026640738007755924) + +[fips1912592472] +centroid = (0.71911195467010525, -1.6220039205292671) +description = Liberty township, IA +station = ('koxv', 0.002944036630029988) +zone = ('iaz085', 0.003127567067841982) + +[fips1912593399] +centroid = (0.72280154580223621, -1.627996246716602) +description = Pleasant Grove township, IA +station = ('koxv', 0.002889962882236214) +zone = ('iaz074', 0.0027071104666627935) + +[fips1912593558] +centroid = (0.72389616394920941, -1.6263502965122163) +description = Red Rock township, IA +station = ('koxv', 0.0031955244335144226) +zone = ('iaz074', 0.0027054843771890328) + +[fips1912594041] +centroid = (0.72352655557351475, -1.6238091669344827) +description = Summit township, IA +station = ('kpea', 0.0016664769098851907) +zone = ('iaz074', 0.0022566835226896288) + +[fips1912594242] +centroid = (0.72266595117264887, -1.6259921374964146) +description = Union township, IA +station = ('koxv', 0.0019401770736572294) +zone = ('iaz074', 0.0014931831577816395) + +[fips1912594533] +centroid = (0.71903331013401039, -1.6259782795821536) +description = Washington township, IA +station = ('koxv', 0.0018827827648103842) +zone = ('iaz074', 0.0025235976897006579) + +[fips1912630] +centroid = (0.74127800268957622, -1.5853963725069722) +description = Centralia city, IA +station = ('kdbq', 0.0021624103911603637) +zone = ('iaz042', 0.00059344931044043162) + +[fips1912675] +centroid = (0.74761723051903728, -1.6270305211348886) +description = Chapin CDP, IA +station = ('kmcw', 0.005673315645092057) +zone = ('iaz026', 0.0018676031037216483) + +[fips19127] +centroid = (0.73376593105606736, -1.6228324806850667) +description = Marshall County, IA +station = ('kmiw', 0.0015545691935609084) +zone = ('iaz049', 0.00024726277350224749) + +[fips1912720] +centroid = (0.71589171748042069, -1.6285570908184379) +description = Chariton city, IA +station = ('kcnc', 0.00080204073440137821) +zone = ('iaz084', 0.00031566518360349885) + +[fips1912765] +centroid = (0.75162185358115319, -1.6174744246011992) +description = Charles City city, IA +station = ('kccy', 0.00073764077312404126) +zone = ('iaz018', 0.0014629502362141624) + +[fips1912790117] +centroid = (0.73588502256737631, -1.6242744891663567) +description = Bangor township, IA +station = ('kmiw', 0.0020727412438914157) +zone = ('iaz049', 0.0023772650038900141) + +[fips1912791146] +centroid = (0.73135845879245143, -1.6263439086071541) +description = Eden township, IA +station = ('ktnu', 0.0044118220652289812) +zone = ('iaz049', 0.0033170194884353126) + +[fips1912791749] +centroid = (0.73121883245229191, -1.6198876215447617) +description = Greencastle township, IA +station = ('kggi', 0.0034159825387404625) +zone = ('iaz049', 0.0034359251838180639) + +[fips1912792244] +centroid = (0.73148701974515329, -1.6220184591219362) +description = Jefferson township, IA +station = ('kmiw', 0.0035951917718683212) +zone = ('iaz049', 0.0023291130053773893) + +[fips1912792412] +centroid = (0.73282631559996381, -1.6201451448758932) +description = Le Grand township, IA +station = ('kmiw', 0.0025279077380276961) +zone = ('iaz049', 0.0023740412536402719) + +[fips1912792475] +centroid = (0.73579936180768835, -1.626317658855204) +description = Liberty township, IA +station = ('kmiw', 0.0034987687230237929) +zone = ('iaz049', 0.0031842795268756927) + +[fips1912792658] +centroid = (0.7358789837281644, -1.6223105923321353) +description = Liscomb township, IA +station = ('kmiw', 0.00092249601178168205) +zone = ('iaz049', 0.0022988017900591701) + +[fips1912792700] +centroid = (0.73127833072649229, -1.624004277291563) +description = Logan township, IA +station = ('ktnu', 0.003789758513917686) +zone = ('iaz049', 0.0024707650742203649) + +[fips1912792838] +centroid = (0.73435873213650726, -1.6240417146040182) +description = Marietta township, IA +station = ('kmiw', 0.0018780411836530043) +zone = ('iaz049', 0.00096791685393348001) + +[fips1912792862] +centroid = (0.73451223384422015, -1.6202102107504077) +description = Marion township, IA +station = ('kmiw', 0.0012413303743550961) +zone = ('iaz049', 0.0023317800787329185) + +[fips1912792952] +centroid = (0.73445030956235935, -1.6260861583832193) +description = Minerva township, IA +station = ('kmiw', 0.0033125176614978691) +zone = ('iaz049', 0.0023280593099760656) + +[fips1912794011] +centroid = (0.73294061721267689, -1.6262248422455829) +description = State Center township, IA +station = ('kmiw', 0.0039789545517941137) +zone = ('iaz049', 0.0024064794346717417) + +[fips1912794104] +centroid = (0.73439335946886686, -1.622112270569231) +description = Taylor township, IA +station = ('kmiw', 0.00074614887871685229) +zone = ('iaz049', 0.0010536495539749773) + +[fips1912794116] +centroid = (0.73281703044834312, -1.6221516801037412) +description = Timber Creek township, IA +station = ('kmiw', 0.0022820589276892705) +zone = ('iaz049', 0.0011180070247411426) + +[fips1912794356] +centroid = (0.7359485176455639, -1.6201170276216437) +description = Vienna township, IA +station = ('kmiw', 0.0014644695940178351) +zone = ('iaz049', 0.0031996910807830345) + +[fips1912794536] +centroid = (0.73289803117892816, -1.6241711656746389) +description = Washington township, IA +station = ('kmiw', 0.0028458662114567755) +zone = ('iaz049', 0.001085231392078276) + +[fips1912855] +centroid = (0.73237732964988822, -1.5789680630724892) +description = Charlotte city, IA +station = ('kcwi', 0.0028501225257611504) +zone = ('iaz066', 0.0013924546101515009) + +[fips19129] +centroid = (0.71617322163547481, -1.6688681402470025) +description = Mills County, IA +station = ('kcbf', 0.0045047949114805138) +zone = ('iaz079', 3.1514895565390154e-05) + +[fips1912900] +centroid = (0.73422228229558639, -1.6683519591207252) +description = Charter Oak city, IA +station = ('kdns', 0.0030531727516078626) +zone = ('iaz044', 0.0027408292422599779) + +[fips1912945] +centroid = (0.74903103447961528, -1.6844949457047336) +description = Chatsworth city, IA +station = ('klrj', 0.0047622008571545082) +zone = ('sdz071', 0.0023297347405711005) + +[fips1912990] +centroid = (0.73165073162899041, -1.6125884800799961) +description = Chelsea city, IA +station = ('kggi', 0.0057045341118823999) +zone = ('iaz050', 0.0033072569182607805) + +[fips1912990072] +centroid = (0.71748070013802123, -1.6663218095880978) +description = Anderson township, IA +station = ('krdk', 0.0031564124122268897) +zone = ('iaz079', 0.0023525995818232844) + +[fips1912990612] +centroid = (0.71599090454181147, -1.6696087183552089) +description = Center township, IA +station = ('koff', 0.0035360451580965517) +zone = ('iaz079', 0.0005561787661908645) + +[fips1912990933] +centroid = (0.71461581198404267, -1.6657766559962375) +description = Deer Creek township, IA +station = ('krdk', 0.0026311773048558898) +zone = ('iaz079', 0.0028259628451528388) + +[fips1912991575] +centroid = (0.71619872089584646, -1.6711428278611267) +description = Glenwood township, IA +station = ('koff', 0.0024388459904327144) +zone = ('iaz079', 0.0016859191797274334) + +[fips1912992031] +centroid = (0.71630473219461255, -1.6662640915497344) +description = Indian Creek township, IA +station = ('krdk', 0.0027099939751508957) +zone = ('iaz079', 0.0019993836416473715) + +[fips1912992043] +centroid = (0.7174850285545662, -1.6688415937890797) +description = Ingraham township, IA +station = ('kcbf', 0.0033793466012795167) +zone = ('iaz079', 0.0013215421276821055) + +[fips1912992745] +centroid = (0.71454318883386714, -1.6715772926718255) +description = Lyons township, IA +station = ('kpmv', 0.0018987169876763055) +zone = ('iaz079', 0.0025860507050766567) + +[fips1912992809] +centroid = (0.71571697511571097, -1.6682845894115983) +description = Malvern city, IA +station = ('ksda', 0.005018109700066397) +zone = ('iaz079', 0.00064934057634153102) + +[fips1912993147] +centroid = (0.71748961877049899, -1.670865337963352) +description = Oak township, IA +station = ('kcbf', 0.0027838155186003261) +zone = ('iaz079', 0.0019831719793647895) + +[fips1912993354] +centroid = (0.71627808101693458, -1.6725928997635613) +description = Plattville township, IA +station = ('koff', 0.0016100716490949297) +zone = ('iaz079', 0.0027816117863292693) + +[fips1912993540] +centroid = (0.7145593156761556, -1.6696407102403976) +description = Rawles township, IA +station = ('kpmv', 0.0033574053614820213) +zone = ('iaz079', 0.0016976807909740634) + +[fips1912993741] +centroid = (0.7177060919576238, -1.6728707561804785) +description = St. Marys township, IA +station = ('koff', 0.00068329971676381232) +zone = ('nez053', 0.0034673556320566228) + +[fips1912993897] +centroid = (0.7161408457778502, -1.6682760372982635) +description = Silver Creek township, IA +station = ('kcbf', 0.0047419103457875438) +zone = ('iaz079', 0.00047749645958956117) + +[fips1912994719] +centroid = (0.71470779083562275, -1.6676166344535672) +description = White Cloud township, IA +station = ('krdk', 0.003878803486188066) +zone = ('iaz079', 0.0017528054561686934) + +[fips1913080] +centroid = (0.74614693025057222, -1.6677114581918284) +description = Cherokee city, IA +station = ('kckp', 0.00034083605318501435) +zone = ('iaz021', 0.00094965641891824797) + +[fips19131] +centroid = (0.75657516781148326, -1.6193944264047329) +description = Mitchell County, IA +station = ('kccy', 0.0053631485570466856) +zone = ('iaz008', 0.00014887260434094923) + +[fips1913125] +centroid = (0.75907587556374068, -1.6120550551007091) +description = Chester city, IA +station = ('kfka', 0.0039787296994325469) +zone = ('iaz009', 0.0024303222489265551) + +[fips1913190411] +centroid = (0.75598796923794231, -1.6183540530909117) +description = Burr Oak township, IA +station = ('kccy', 0.0045462935434238579) +zone = ('iaz008', 0.0010905152858462696) + +[fips1913190555] +centroid = (0.75472990100651971, -1.6214596221487403) +description = Cedar township, IA +station = ('kccy', 0.0047671811154380347) +zone = ('iaz008', 0.0024523430904598927) + +[fips1913191047] +centroid = (0.75560223401995896, -1.6162898521845781) +description = Douglas township, IA +station = ('kccy', 0.0039491869725499333) +zone = ('iaz008', 0.002569342925016373) + +[fips1913191116] +centroid = (0.75459455072302761, -1.616641169509712) +description = East Lincoln township, IA +station = ('kccy', 0.0029422033904817234) +zone = ('iaz008', 0.002956050970106421) + +[fips1913192268] +centroid = (0.7569653885256441, -1.6162420476163659) +description = Jenkins township, IA +station = ('kccy', 0.0053127596305388514) +zone = ('iaz008', 0.0023642359964918349) + +[fips1913192478] +centroid = (0.75733161096259005, -1.6184381430542729) +description = Liberty township, IA +station = ('kaum', 0.0054440945049172183) +zone = ('iaz008', 0.00097589077749045275) + +[fips1913192955] +centroid = (0.75633466144055839, -1.6203677616219851) +description = Mitchell township, IA +station = ('kccy', 0.0054761764357064667) +zone = ('iaz008', 0.00075070485991655077) + +[fips1913193075] +centroid = (0.75710066899596618, -1.6227224376757285) +description = Newburg township, IA +station = ('kaum', 0.0050542154748440971) +zone = ('iaz008', 0.0023923422476687618) + +[fips1913193210] +centroid = (0.75552577114542907, -1.6196667152213367) +description = Osage township, IA +station = ('kccy', 0.0045200128967774469) +zone = ('iaz008', 0.0011943065690194451) + +[fips1913193225] +centroid = (0.7585849493517397, -1.6224017334256744) +description = Otranto township, IA +station = ('kaum', 0.0035545381373601483) +zone = ('iaz008', 0.0028333207156429176) + +[fips1913193663] +centroid = (0.75557882915468966, -1.6223745237426357) +description = Rock township, IA +station = ('kccy', 0.0058275882991448676) +zone = ('iaz008', 0.0023942423256091768) + +[fips1913193726] +centroid = (0.75727164144949155, -1.6210812522202005) +description = St. Ansgar township, IA +station = ('kaum', 0.0049002246127566665) +zone = ('iaz008', 0.0012946159430675562) + +[fips1913194002] +centroid = (0.75860413052021913, -1.6185044655658485) +description = Stacyville township, IA +station = ('kaum', 0.0043358400566255294) +zone = ('iaz008', 0.0020193594097290572) + +[fips1913194245] +centroid = (0.7585964510715103, -1.6204992896344155) +description = Union township, IA +station = ('kaum', 0.0036927497197460804) +zone = ('iaz008', 0.0020260208254725427) + +[fips1913194614] +centroid = (0.75859823130734749, -1.6164019895890187) +description = Wayne township, IA +station = ('kaum', 0.0053724108574648875) +zone = ('iaz008', 0.002922782675604519) + +[fips1913194683] +centroid = (0.75463254654084344, -1.6187562293104487) +description = West Lincoln township, IA +station = ('kccy', 0.0034142609587111366) +zone = ('iaz008', 0.0021442338862137367) + +[fips1913215] +centroid = (0.71708309668112447, -1.6150051851353553) +description = Chillicothe city, IA +station = ('kotm', 0.0011191455676313234) +zone = ('iaz086', 0.0018895041954122053) + +[fips19133] +centroid = (0.73390103699346432, -1.674758015607245) +description = Monona County, IA +station = ('ktqe', 0.0057473402744437577) +zone = ('iaz043', 5.841609460771764e-05) + +[fips1913350] +centroid = (0.73570951225779568, -1.6489768671081184) +description = Churdan city, IA +station = ('kcin', 0.0043271155601518115) +zone = ('iaz046', 0.0023024424294601962) + +[fips1913390084] +centroid = (0.73459059912763469, -1.6770932661464135) +description = Ashton township, IA +station = ('ktqe', 0.0057528315892657333) +zone = ('iaz043', 0.0018103959617304494) + +[fips1913390192] +centroid = (0.73279825070559157, -1.6749294592996686) +description = Belvidere township, IA +station = ('ktqe', 0.0047576962635984994) +zone = ('iaz043', 0.0011436294719693926) + +[fips1913390615] +centroid = (0.73469629626713551, -1.6724224160022263) +description = Center township, IA +station = ('ktqe', 0.0073999344380147498) +zone = ('iaz043', 0.0019327693370951977) + +[fips1913390828] +centroid = (0.73586769144790398, -1.670685342157594) +description = Cooper township, IA +station = ('kdns', 0.0053968470319354193) +zone = ('iaz043', 0.0036222158661813031) + +[fips1913391299] +centroid = (0.73619237504865243, -1.6807434826506196) +description = Fairview township, IA +station = ('ksux', 0.0036982839992220165) +zone = ('nez015', 0.0031882855094034629) + +[fips1913391416] +centroid = (0.73287246210538648, -1.6771455736640957) +description = Franklin township, IA +station = ('ktqe', 0.004077813090465926) +zone = ('iaz043', 0.0020315833937125929) + +[fips1913391677] +centroid = (0.73610104196889559, -1.6745576169025311) +description = Grant township, IA +station = ('ksux', 0.0067220880319770497) +zone = ('iaz043', 0.0021707736025911978) + +[fips1913392283] +centroid = (0.73299749749299936, -1.6727820585478923) +description = Jordan township, IA +station = ('ktqe', 0.0059809055667463321) +zone = ('iaz043', 0.0017814249779523983) + +[fips1913392307] +centroid = (0.73438876925293406, -1.6750537616489956) +description = Kennebec township, IA +station = ('ktqe', 0.006068977763336255) +zone = ('iaz043', 0.0004827542874194441) + +[fips1913392355] +centroid = (0.73590579198547501, -1.679078037118489) +description = Lake township, IA +station = ('ksux', 0.0044691581718601693) +zone = ('iaz043', 0.0037225541289220695) + +[fips1913392577] +centroid = (0.73436806964800538, -1.6791028731537447) +description = Lincoln township, IA +station = ('ktqe', 0.0054098883351890118) +zone = ('iaz043', 0.0032099404000778759) + +[fips1913392817] +centroid = (0.73597454050471112, -1.6729729277548904) +description = Maple township, IA +station = ('ktqe', 0.008206973306935891) +zone = ('iaz043', 0.002453038846140787) + +[fips1913393175] +centroid = (0.73350530103886702, -1.6770956921540736) +description = Onawa city, IA +station = ('ktqe', 0.0046969088287313384) +zone = ('iaz043', 0.0017463288680098017) + +[fips1913393735] +centroid = (0.7343976006189491, -1.6707827664364403) +description = St. Clair township, IA +station = ('kdns', 0.0047730102175566431) +zone = ('iaz043', 0.0030305906602729844) + +[fips1913393867] +centroid = (0.73126187227164596, -1.6769688416240389) +description = Sherman township, IA +station = ('ktqe', 0.0026393410113718673) +zone = ('iaz043', 0.0031182230994961629) + +[fips1913393918] +centroid = (0.73137226434683478, -1.6748532931311115) +description = Sioux township, IA +station = ('ktqe', 0.0037513727138390441) +zone = ('iaz043', 0.0025667458620240971) + +[fips1913393939] +centroid = (0.73311879787601286, -1.6709577531472453) +description = Soldier township, IA +station = ('kdns', 0.0046262336752998659) +zone = ('iaz043', 0.0029823829057322323) + +[fips1913393996] +centroid = (0.73138709964547666, -1.6728015538756371) +description = Spring Valley township, IA +station = ('ktqe', 0.0050278744165032927) +zone = ('iaz043', 0.0029594763055653573) + +[fips1913394671] +centroid = (0.7361756373411259, -1.6771025862046194) +description = West Fork township, IA +station = ('ksux', 0.0051849234154573882) +zone = ('iaz043', 0.0028062773163656293) + +[fips1913394749] +centroid = (0.73129904778471355, -1.6708883239496009) +description = Willow township, IA +station = ('kdns', 0.0047877584307595873) +zone = ('iaz043', 0.0039374043117435592) + +[fips1913395] +centroid = (0.70914383825989757, -1.621798844342158) +description = Cincinnati city, IA +station = ('ktvk', 0.00090528416821852777) +zone = ('iaz096', 0.0020833001180787882) + +[fips1913485] +centroid = (0.74329130979492164, -1.6466254548200765) +description = Clare city, IA +station = ('kfod', 0.0021746102172490152) +zone = ('iaz035', 0.0034866777656368834) + +[fips19135] +centroid = (0.71608846844699792, -1.6208810280484116) +description = Monroe County, IA +station = ('kotm', 0.0056600965260270508) +zone = ('iaz085', 1.7119923279685514e-05) + +[fips1913530] +centroid = (0.73104665572158267, -1.5892452249333475) +description = Clarence city, IA +station = ('kmxo', 0.0062282187191053003) +zone = ('iaz065', 0.0022114855710192709) + +[fips1913575] +centroid = (0.71100709940944917, -1.6586590462269719) +description = Clarinda city, IA +station = ('kicl', 0.0003673695710134822) +zone = ('iaz091', 0.0015347018938888721) + +[fips1913590285] +centroid = (0.71763470799121731, -1.6197883123103232) +description = Bluff Creek township, IA +station = ('kotm', 0.0047049985708796935) +zone = ('iaz085', 0.0017348706882700079) + +[fips1913590558] +centroid = (0.71763434147207428, -1.6238782645195691) +description = Cedar township, IA +station = ('koxv', 0.0033364828265465833) +zone = ('iaz085', 0.0027363426150624672) + +[fips1913591419] +centroid = (0.7145932448768143, -1.6219567268262933) +description = Franklin township, IA +station = ('ktvk', 0.0046118468992732203) +zone = ('iaz085', 0.0017186038080723202) + +[fips1913591800] +centroid = (0.71616599597237152, -1.6218763195076542) +description = Guilford township, IA +station = ('koxv', 0.0052821056445499243) +zone = ('iaz085', 0.00076182902080612896) + +[fips1913592151] +centroid = (0.71443618269742748, -1.6238536030172384) +description = Jackson township, IA +station = ('kcnc', 0.0046393750563748495) +zone = ('iaz085', 0.0028023628042584468) + +[fips1913592812] +centroid = (0.71612381136435088, -1.6178694798773878) +description = Mantua township, IA +station = ('kotm', 0.003468143595350004) +zone = ('iaz085', 0.0022634389954483882) + +[fips1913592985] +centroid = (0.71453254232542995, -1.6198672360990982) +description = Monroe township, IA +station = ('ktvk', 0.0046807615948098701) +zone = ('iaz085', 0.001743633752105756) + +[fips1913593369] +centroid = (0.71747012344275418, -1.6179282451133028) +description = Pleasant township, IA +station = ('kotm', 0.0032968539712320438) +zone = ('iaz085', 0.0026050555204794332) + +[fips1913594140] +centroid = (0.71612091411779255, -1.6198534479980076) +description = Troy township, IA +station = ('kotm', 0.0048989803274689016) +zone = ('iaz085', 0.00076691737246859057) + +[fips1913594248] +centroid = (0.71768591595147069, -1.6216731108228444) +description = Union township, IA +station = ('koxv', 0.0041034421406128457) +zone = ('iaz085', 0.0016944604569867491) + +[fips1913594296] +centroid = (0.71470372421846562, -1.6174581406792778) +description = Urbana township, IA +station = ('kotm', 0.0039447990424382288) +zone = ('iaz085', 0.0029310067845645972) + +[fips1913594617] +centroid = (0.71611173368592707, -1.6238775838411608) +description = Wayne township, IA +station = ('koxv', 0.0048121482462024088) +zone = ('iaz085', 0.00226896954870493) + +[fips1913620] +centroid = (0.74581781351352372, -1.6358859377870723) +description = Clarion city, IA +station = ('kcav', 0.00057013406854025401) +zone = ('iaz025', 7.6452210788156534e-05) + +[fips19137] +centroid = (0.71596434063059611, -1.6608167444213351) +description = Montgomery County, IA +station = ('krdk', 0.0014364500042143768) +zone = ('iaz080', 0.00014730906617882404) + +[fips1913755] +centroid = (0.74663747249013779, -1.6173687623682833) +description = Clarksville city, IA +station = ('kccy', 0.0050610395642942318) +zone = ('iaz027', 0.0017679725631568471) + +[fips1913791050] +centroid = (0.71747893735547674, -1.6576312567370575) +description = Douglas township, IA +station = ('krdk', 0.0041562022611215067) +zone = ('iaz080', 0.0027471623883723508) + +[fips1913791104] +centroid = (0.71463916448943432, -1.6577271800327471) +description = East township, IA +station = ('krdk', 0.0039647530894923377) +zone = ('iaz080', 0.0027408197287570992) + +[fips1913791380] +centroid = (0.71599181211302243, -1.6599156483818227) +description = Frankfort township, IA +station = ('krdk', 0.0021167429353024835) +zone = ('iaz080', 0.00067072708115065681) + +[fips1913791530] +centroid = (0.71599615798285998, -1.6637001156120923) +description = Garfield township, IA +station = ('krdk', 0.00075142816402855946) +zone = ('iaz080', 0.0021978079450733828) + +[fips1913791680] +centroid = (0.71455596464399174, -1.6616283923366824) +description = Grant township, IA +station = ('krdk', 0.0015548672783897925) +zone = ('iaz080', 0.001678066536615147) + +[fips1913792580] +centroid = (0.71761791792381313, -1.663776438860282) +description = Lincoln township, IA +station = ('krdk', 0.0019164309943791031) +zone = ('iaz080', 0.0027090634553731288) + +[fips1913793327] +centroid = (0.71755765170474173, -1.6597154765699114) +description = Pilot Grove township, IA +station = ('krdk', 0.0028195275797290409) +zone = ('iaz080', 0.0016588664325167697) + +[fips1913793555] +centroid = (0.71607811864453352, -1.6617127266461387) +description = Red Oak township, IA +station = ('krdk', 0.00078420288631799091) +zone = ('iaz080', 0.00069627060670476924) + +[fips1913793798] +centroid = (0.71448791425645652, -1.6599589500005647) +description = Scott township, IA +station = ('krdk', 0.0025024471832488901) +zone = ('iaz080', 0.0017396936582820205) + +[fips1913793870] +centroid = (0.71755063548114872, -1.6616519019217066) +description = Sherman township, IA +station = ('krdk', 0.0018573345934558378) +zone = ('iaz080', 0.0015798574895098177) + +[fips1913794539] +centroid = (0.71613276490341349, -1.6576576635686402) +description = Washington township, IA +station = ('krdk', 0.0038255707335153231) +zone = ('iaz080', 0.0023635648207719949) + +[fips1913794647] +centroid = (0.71448510427636081, -1.6636974627116292) +description = West township, IA +station = ('krdk', 0.0015754976632356315) +zone = ('iaz080', 0.0027306120881941749) + +[fips1913845] +centroid = (0.74880410677027098, -1.5908776139294452) +description = Clayton city, IA +station = ('kpdc', 0.002096635095566732) +zone = ('iaz030', 0.00264652769745796) + +[fips19139] +centroid = (0.72402847735980314, -1.5903213076836646) +description = Muscatine County, IA +station = ('kmut', 0.0020845867640629512) +zone = ('iaz067', 7.8466805389435987e-05) + +[fips1913980] +centroid = (0.71210960644464139, -1.6490263646457051) +description = Clearfield city, IA +station = ('kcsq', 0.0040631550014374072) +zone = ('iaz093', 0.0033514121947073455) + +[fips1913990279] +centroid = (0.72356041496100332, -1.5894148011234714) +description = Bloomington township, IA +station = ('kmut', 0.0019158726515520414) +zone = ('iaz067', 0.00076292966240991563) + +[fips1913990561] +centroid = (0.72213524890699488, -1.5932663413568948) +description = Cedar township, IA +station = ('kmut', 0.0018064137621075984) +zone = ('iaz078', 0.0027607733757736858) + +[fips1913991491] +centroid = (0.72213484748126688, -1.5901662700862098) +description = Fruitland township, IA +station = ('kmut', 0.00054736372428071693) +zone = ('iaz067', 0.0018961696959422106) + +[fips1913991494] +centroid = (0.72523340031550254, -1.5852190470549696) +description = Fulton township, IA +station = ('kdvn', 0.0033626799190774373) +zone = ('iaz068', 0.0030324865053988899) + +[fips1913991590] +centroid = (0.72535588752240754, -1.5914909749884736) +description = Goshen township, IA +station = ('kmut', 0.0034035628128147367) +zone = ('iaz067', 0.00163298166190968) + +[fips1913992358] +centroid = (0.72351716570213886, -1.5913679467295008) +description = Lake township, IA +station = ('kmut', 0.0015779000842183575) +zone = ('iaz067', 0.0010039584062798001) + +[fips1913992997] +centroid = (0.72379006538398072, -1.5853994093798707) +description = Montpelier township, IA +station = ('kmli', 0.0042006028001286312) +zone = ('iaz067', 0.0036171547490927197) + +[fips1913993027] +centroid = (0.72516082952520455, -1.5897646872786184) +description = Moscow township, IA +station = ('kmut', 0.0032820863051203977) +zone = ('iaz067', 0.0011797571185035325) + +[fips1913993204] +centroid = (0.7222230913282478, -1.5941120406459488) +description = Orono township, IA +station = ('kmut', 0.0024463319383402904) +zone = ('iaz078', 0.0029960279538378959) + +[fips1913993318] +centroid = (0.72374512315574191, -1.5934056360844964) +description = Pike township, IA +station = ('kmut', 0.0025927231974261313) +zone = ('iaz067', 0.0024063363637768917) + +[fips1913993816] +centroid = (0.72221989737571668, -1.5917297534834391) +description = Seventy-Six township, IA +station = ('kmut', 0.00068844775446087996) +zone = ('iaz067', 0.0021367766845596168) + +[fips1913994074] +centroid = (0.72380161946362898, -1.5875664625390242) +description = Sweetland township, IA +station = ('kmut', 0.003070825962493519) +zone = ('iaz067', 0.0019986984228838539) + +[fips1913994419] +centroid = (0.72527436319304683, -1.5934435795424347) +description = Wapsinonoc township, IA +station = ('kmut', 0.0038143933726995129) +zone = ('iaz067', 0.0027174494365980024) + +[fips1913994758] +centroid = (0.72531972430030611, -1.5876879549082556) +description = Wilton township, IA +station = ('kmut', 0.0040989351764891581) +zone = ('iaz067', 0.0022904326773659487) + +[fips1914025] +centroid = (0.75284934364408085, -1.6296776445580958) +description = Clear Lake city, IA +station = ('kmcw', 0.0005756214790903851) +zone = ('iaz017', 0.0017144261099249489) + +[fips19141] +centroid = (0.75195322179293689, -1.6689819880741101) +description = O'Brien County, IA +station = ('kshl', 0.0035180983633674172) +zone = ('iaz013', 8.0098419552704422e-06) + +[fips1914115] +centroid = (0.74720662435921303, -1.6705266393687099) +description = Cleghorn city, IA +station = ('kckp', 0.0024633803252004836) +zone = ('iaz021', 0.0017605723877489336) + +[fips1914160] +centroid = (0.73502618094905492, -1.6259226908454776) +description = Clemons city, IA +station = ('kmiw', 0.0031314431703351533) +zone = ('iaz049', 0.0024776638363858449) + +[fips1914190108] +centroid = (0.75119885558363986, -1.6720417247857813) +description = Baker township, IA +station = ('kshl', 0.0031018462396617502) +zone = ('iaz013', 0.00236717515854759) + +[fips1914190438] +centroid = (0.74967575910530204, -1.6720322127413578) +description = Caledonia township, IA +station = ('kshl', 0.0046165051451876804) +zone = ('iaz013', 0.0031937651225382199) + +[fips1914190477] +centroid = (0.75272216150148807, -1.6720552685407768) +description = Carroll township, IA +station = ('kshl', 0.0016023461389418575) +zone = ('iaz013', 0.0023790995566319792) + +[fips1914190618] +centroid = (0.75272107939735178, -1.6679225732181495) +description = Center township, IA +station = ('kshl', 0.0037525068374067495) +zone = ('iaz013', 0.0010835960218684459) + +[fips1914190876] +centroid = (0.75120559255455255, -1.6699831438396391) +description = Dale township, IA +station = ('kshl', 0.0036162545673850402) +zone = ('iaz013', 0.0010521835684347411) + +[fips1914191356] +centroid = (0.75420356206399586, -1.6719547026692769) +description = Floyd township, IA +station = ('kshl', 0.00048059657257135363) +zone = ('iaz013', 0.0031302132814537854) + +[fips1914191422] +centroid = (0.75424344283740374, -1.6699936856283211) +description = Franklin township, IA +station = ('kshl', 0.0019049069313116489) +zone = ('iaz013', 0.0024077770895423681) + +[fips1914191683] +centroid = (0.75122850872763125, -1.6657416970513201) +description = Grant township, IA +station = ('kspw', 0.0035796961402633884) +zone = ('iaz013', 0.0024684791336184804) + +[fips1914191884] +centroid = (0.75419628404101491, -1.6657055338292188) +description = Hartley township, IA +station = ('kspw', 0.0029255009664142626) +zone = ('iaz013', 0.003271619000684102) + +[fips1914191938] +centroid = (0.7512005660063068, -1.6679143876239575) +description = Highland township, IA +station = ('kshl', 0.0046011510311831077) +zone = ('iaz013', 0.0010788718653175981) + +[fips1914192481] +centroid = (0.74968010497513937, -1.667913898931767) +description = Liberty township, IA +station = ('kckp', 0.0038733883074485507) +zone = ('iaz013', 0.002401832247445927) + +[fips1914192583] +centroid = (0.75422729854182291, -1.6679263256760413) +description = Lincoln township, IA +station = ('kshl', 0.0034116579478287771) +zone = ('iaz013', 0.002397530570033815) + +[fips1914193174] +centroid = (0.75271338249535047, -1.6658591228033941) +description = Omega township, IA +station = ('kspw', 0.0030086965413205018) +zone = ('iaz013', 0.0023955326752097953) + +[fips1914194044] +centroid = (0.75272633283840029, -1.6699885718136127) +description = Summit township, IA +station = ('kshl', 0.002457591285623771) +zone = ('iaz013', 0.0010714802279412202) + +[fips1914194251] +centroid = (0.74956856098264446, -1.6698277222697491) +description = Union township, IA +station = ('kckp', 0.0040533739339971651) +zone = ('iaz013', 0.0024664553489983682) + +[fips1914194599] +centroid = (0.74954440562579694, -1.6657307887434951) +description = Waterman township, IA +station = ('kckp', 0.0040225875333133737) +zone = ('iaz013', 0.0033793834304246206) + +[fips1914250] +centroid = (0.75049442324424243, -1.5996345940118166) +description = Clermont city, IA +station = ('kdeh', 0.0050488148785826177) +zone = ('iaz029', 0.00343393766066531) + +[fips19143] +centroid = (0.75709838261464613, -1.6691244767542428) +description = Osceola County, IA +station = ('kshl', 0.0037956451263260692) +zone = ('iaz002', 0.00012670604314454615) + +[fips1914385] +centroid = (0.7389614969865741, -1.6769312995918284) +description = Climbing Hill CDP, IA +station = ('ksux', 0.0039726913983036908) +zone = ('iaz031', 0.00099460251322459133) + +[fips1914390054] +centroid = (0.75723762498237013, -1.6658513560882229) +description = Allison township, IA +station = ('kspw', 0.0048202238629042387) +zone = ('iaz002', 0.0022565026064495343) + +[fips1914390111] +centroid = (0.75573634511968224, -1.6679184367878224) +description = Baker township, IA +station = ('kshl', 0.0037149720817869422) +zone = ('iaz002', 0.001554413181745957) + +[fips1914391111] +centroid = (0.75728453943266383, -1.6699723751581541) +description = East Holman township, IA +station = ('kshl', 0.0035700506816467659) +zone = ('iaz002', 0.00076606499750976403) + +[fips1914391302] +centroid = (0.75863938617110949, -1.6656958123452852) +description = Fairview township, IA +station = ('kotg', 0.0036917921471085195) +zone = ('iaz002', 0.0028220071982631516) + +[fips1914391572] +centroid = (0.75581933552561464, -1.6719723479480146) +description = Gilman township, IA +station = ('kshl', 0.0016138495920234935) +zone = ('iaz002', 0.0025426542394185558) + +[fips1914391584] +centroid = (0.75576283921772758, -1.6699896364644564) +description = Goewey township, IA +station = ('kshl', 0.0024193159650908232) +zone = ('iaz002', 0.0015340352269294477) + +[fips1914391875] +centroid = (0.75585689501111741, -1.6657865345598037) +description = Harrison township, IA +station = ('kspw', 0.0037792062075369284) +zone = ('iaz002', 0.0026140011219151775) + +[fips1914391986] +centroid = (0.75867301866579528, -1.6678617659470101) +description = Horton township, IA +station = ('kotg', 0.00317529634288624) +zone = ('iaz002', 0.0017625707468525518) + +[fips1914393162] +centroid = (0.75734607974208912, -1.6678432130970613) +description = Ocheyedan township, IA +station = ('kotg', 0.004499527992435263) +zone = ('iaz002', 0.00084195153676035672) + +[fips1914394365] +centroid = (0.75867500834114265, -1.6718713457442016) +description = Viola township, IA +station = ('kotg', 0.0041113489452415351) +zone = ('iaz002', 0.0026437451751319483) + +[fips1914394678] +centroid = (0.75728469651229646, -1.6720458612161084) +description = West Holman township, IA +station = ('kshl', 0.0030391512309470054) +zone = ('iaz002', 0.0022576235670760739) + +[fips1914394755] +centroid = (0.75863022319253648, -1.6699740855808212) +description = Wilson township, IA +station = ('kotg', 0.0034424576440320611) +zone = ('iaz002', 0.0017034827505953024) + +[fips1914430] +centroid = (0.73029007294413562, -1.5750651054393019) +description = Clinton city, IA +station = ('kcwi', 0.0011651783230006289) +zone = ('iaz066', 0.0038588586257096895) + +[fips1914475] +centroid = (0.70923154105481023, -1.6310344809718886) +description = Clio city, IA +station = ('kcnc', 0.0070248928189209359) +zone = ('iaz095', 0.0024408018858669599) + +[fips19145] +centroid = (0.71103125476629669, -1.6605811249723157) +description = Page County, IA +station = ('kicl', 0.0015188441925218061) +zone = ('iaz091', 7.8155049211928735e-05) + +[fips1914520] +centroid = (0.72628810278248268, -1.6370816803109061) +description = Clive city, IA +station = ('kdsm', 0.0022090616613023592) +zone = ('iaz060', 0.0031875354362390267) + +[fips1914590066] +centroid = (0.70886346856885718, -1.6595942634533605) +description = Amity township, IA +station = ('kicl', 0.0019169288878001973) +zone = ('iaz091', 0.0023202196326949868) + +[fips1914590369] +centroid = (0.708850273879712, -1.6577133221184863) +description = Buchanan township, IA +station = ('kicl', 0.0019239812225043675) +zone = ('iaz091', 0.003135954567720188) + +[fips1914590765] +centroid = (0.70888778100533745, -1.6615887908159548) +description = Colfax township, IA +station = ('kicl', 0.0028385312423472933) +zone = ('iaz091', 0.0022507307768901571) + +[fips1914591053] +centroid = (0.71309576983189571, -1.6597972103387824) +description = Douglas township, IA +station = ('kicl', 0.0026063308561738731) +zone = ('iaz091', 0.0021708157861903029) + +[fips1914591125] +centroid = (0.7102120146687031, -1.6574234752896075) +description = East River township, IA +station = ('kicl', 0.0010197947158230526) +zone = ('iaz091', 0.0026038363713016995) + +[fips1914591482] +centroid = (0.71310205301720286, -1.6617866936998382) +description = Fremont township, IA +station = ('krdk', 0.0028614722601415241) +zone = ('iaz091', 0.0022324760001593215) + +[fips1914591686] +centroid = (0.71147233437486068, -1.6634549317587721) +description = Grant township, IA +station = ('ksda', 0.0014460077876912154) +zone = ('iaz091', 0.0021447078267516823) + +[fips1914591848] +centroid = (0.71016311054306225, -1.6594637128253116) +description = Harlan township, IA +station = ('kicl', 0.00078291605087915011) +zone = ('iaz091', 0.0012688115813520584) + +[fips1914592586] +centroid = (0.71019141978352951, -1.6615625236107121) +description = Lincoln township, IA +station = ('kicl', 0.0022570805442823989) +zone = ('iaz091', 0.0010717961494779112) + +[fips1914593021] +centroid = (0.71020136816026591, -1.6635590057420684) +description = Morton township, IA +station = ('ksda', 0.0016890176334397732) +zone = ('iaz091', 0.0023316822165797128) + +[fips1914593054] +centroid = (0.71163271267982642, -1.6572776704838958) +description = Nebraska township, IA +station = ('kicl', 0.0014346190984685907) +zone = ('iaz091', 0.0026496046659196101) + +[fips1914593123] +centroid = (0.71148420261377432, -1.6593050798495976) +description = Nodaway township, IA +station = ('kicl', 0.00098148290718262947) +zone = ('iaz091', 0.0011386849772708973) + +[fips1914593315] +centroid = (0.7131026987890261, -1.6637748157040775) +description = Pierce township, IA +station = ('ksda', 0.0022210307234311515) +zone = ('iaz091', 0.0031247053097452474) + +[fips1914594086] +centroid = (0.71158979503351993, -1.6617918947810091) +description = Tarkio township, IA +station = ('kicl', 0.0025667628892686633) +zone = ('iaz091', 0.00100784141633419) + +[fips1914594305] +centroid = (0.7130651742101084, -1.6577873415320632) +description = Valley township, IA +station = ('kicl', 0.0025106274884717544) +zone = ('iaz091', 0.0029909166923870701) + +[fips1914594542] +centroid = (0.70890704944027949, -1.6635854998401136) +description = Washington township, IA +station = ('ksda', 0.0026678713717571928) +zone = ('iaz091', 0.0030584353249700066) + +[fips1914655] +centroid = (0.73442283807993303, -1.6127472003221726) +description = Clutier city, IA +station = ('kvti', 0.0054594443425464443) +zone = ('iaz050', 0.0016709945531811765) + +[fips19147] +centroid = (0.75181548040836943, -1.6522560266133504) +description = Palo Alto County, IA +station = ('kaxa', 0.0051088915292492668) +zone = ('iaz015', 0.00017557163299674659) + +[fips1914790309] +centroid = (0.74964160301184057, -1.6555128109975719) +description = Booth township, IA +station = ('kspw', 0.0059607067126844753) +zone = ('iaz015', 0.0031985223407419712) + +[fips1914791203] +centroid = (0.74965498968720323, -1.6514225795356456) +description = Ellington township, IA +station = ('kaxa', 0.005052316710127798) +zone = ('iaz015', 0.0023880941518833322) + +[fips1914791224] +centroid = (0.75260258899443389, -1.6534427283316591) +description = Emmetsburg township, IA +station = ('kest', 0.0048738938270431083) +zone = ('iaz015', 0.0009957268540332952) + +[fips1914791287] +centroid = (0.75269217674493882, -1.6493639113230407) +description = Fairfield township, IA +station = ('kaxa', 0.0030851717581185808) +zone = ('iaz015', 0.0023784053043938874) + +[fips1914791335] +centroid = (0.7512554740645746, -1.6494120998636881) +description = Fern Valley township, IA +station = ('kaxa', 0.0031084729615408384) +zone = ('iaz015', 0.0023150645002922607) + +[fips1914791449] +centroid = (0.75258047567281106, -1.6511061862488441) +description = Freedom township, IA +station = ('kaxa', 0.0043127718372374044) +zone = ('iaz015', 0.0011790124343909391) + +[fips1914791725] +centroid = (0.75128741358988604, -1.6536566358847833) +description = Great Oak township, IA +station = ('kaxa', 0.0061670145213279315) +zone = ('iaz015', 0.0010888283470932658) + +[fips1914791941] +centroid = (0.75257506515212991, -1.6553857510280265) +description = Highland township, IA +station = ('kspw', 0.0047842341306696453) +zone = ('iaz015', 0.0022431788022720255) + +[fips1914792025] +centroid = (0.75419277592921841, -1.6493649236140069) +description = Independence township, IA +station = ('kaxa', 0.0037418269885836565) +zone = ('iaz015', 0.0031948982813280453) + +[fips1914792718] +centroid = (0.75414017170556336, -1.6554780265855795) +description = Lost Island township, IA +station = ('kest', 0.0035752246631676208) +zone = ('iaz015', 0.0031320700422822248) + +[fips1914793060] +centroid = (0.75117559034471082, -1.6514245343044078) +description = Nevada township, IA +station = ('kaxa', 0.0045667011778280347) +zone = ('iaz015', 0.0010562105528866925) + +[fips1914793714] +centroid = (0.74965633359072725, -1.653484319527734) +description = Rush Lake township, IA +station = ('kaxa', 0.0064317867002506128) +zone = ('iaz015', 0.0023901078707844097) + +[fips1914793906] +centroid = (0.75128120021774902, -1.6554114248213234) +description = Silver Lake township, IA +station = ('kspw', 0.005152607678682644) +zone = ('iaz015', 0.0022592941954686445) + +[fips1914794338] +centroid = (0.75407348267484464, -1.6512543123424608) +description = Vernon township, IA +station = ('kest', 0.003836978120747648) +zone = ('iaz015', 0.0023199358725822091) + +[fips1914794407] +centroid = (0.7541953241099264, -1.6534871644144147) +description = Walnut township, IA +station = ('kest', 0.0032812102998634077) +zone = ('iaz015', 0.0023960986595587628) + +[fips1914794650] +centroid = (0.74963776328748599, -1.6491271748633003) +description = West Bend township, IA +station = ('kaxa', 0.0036479240693496414) +zone = ('iaz015', 0.0033332533648146516) + +[fips1914835] +centroid = (0.7407201256474687, -1.6426303787089689) +description = Coalville CDP, IA +station = ('kfod', 0.0021052948025297121) +zone = ('iaz035', 0.00087717165942793006) + +[fips1914880] +centroid = (0.71416759397883789, -1.662697546129869) +description = Coburg city, IA +station = ('krdk', 0.001708350705824516) +zone = ('iaz080', 0.0024180204467052929) + +[fips19149] +centroid = (0.74591157260094088, -1.6792836194510814) +description = Plymouth County, IA +station = ('klrj', 0.00076173577010965935) +zone = ('iaz020', 2.1658180381551687e-05) + +[fips1914925] +centroid = (0.73788695012599881, -1.5974975081559197) +description = Coggon city, IA +station = ('kiib', 0.0060086504722740523) +zone = ('iaz052', 0.0035845860298434388) + +[fips1914970] +centroid = (0.70958216024824339, -1.6621620965686497) +description = Coin city, IA +station = ('kicl', 0.0028693761795848885) +zone = ('iaz091', 0.0018318680592097202) + +[fips1914990060] +centroid = (0.74670861211044903, -1.6781408651233383) +description = America township, IA +station = ('klrj', 0.00056105446831352626) +zone = ('iaz020', 0.0011392597730956096) + +[fips1914991167] +centroid = (0.74815079512466443, -1.6782154081356908) +description = Elgin township, IA +station = ('klrj', 0.0016119391305083055) +zone = ('iaz020', 0.0023619166879191452) + +[fips1914991188] +centroid = (0.74359738818584398, -1.6761618537377945) +description = Elkhorn township, IA +station = ('klrj', 0.0036276664347579279) +zone = ('iaz020', 0.0032470908219269642) + +[fips1914991443] +centroid = (0.74815770662850234, -1.6761502647515611) +description = Fredonia township, IA +station = ('korc', 0.002079432286161326) +zone = ('iaz020', 0.0031962419275495943) + +[fips1914991533] +centroid = (0.74365025420888686, -1.6742582056693516) +description = Garfield township, IA +station = ('klrj', 0.0045191613318197365) +zone = ('iaz031', 0.0040969404902285577) + +[fips1914991689] +centroid = (0.74814676341409236, -1.6802750711859693) +description = Grant township, IA +station = ('klrj', 0.0018334823088116297) +zone = ('iaz020', 0.0023537070595465279) + +[fips1914991821] +centroid = (0.74369027460863513, -1.6837137188782485) +description = Hancock township, IA +station = ('ksux', 0.004114475680547197) +zone = ('iaz020', 0.003962209911946785) + +[fips1914991908] +centroid = (0.74511510905008571, -1.6741084738728229) +description = Henry township, IA +station = ('kckp', 0.004713073078655209) +zone = ('iaz020', 0.0038647889531781146) + +[fips1914992007] +centroid = (0.74358092973099765, -1.6805100099565802) +description = Hungerford township, IA +station = ('klrj', 0.0032606755770930268) +zone = ('iaz020', 0.0025102697647502964) + +[fips1914992274] +centroid = (0.7465045482143059, -1.6821505321869925) +description = Johnson township, IA +station = ('klrj', 0.0023921696803622882) +zone = ('iaz020', 0.0022065306677837757) + +[fips1914992484] +centroid = (0.74510177473460049, -1.6823346818763703) +description = Liberty township, IA +station = ('klrj', 0.0029463243119780256) +zone = ('iaz020', 0.0024048735939457811) + +[fips1914992589] +centroid = (0.74360218784128684, -1.6782224418125764) +description = Lincoln township, IA +station = ('klrj', 0.0030560043789139642) +zone = ('iaz020', 0.0024344404283112185) + +[fips1914992865] +centroid = (0.74669477164948073, -1.6761188313717328) +description = Marion township, IA +station = ('klrj', 0.0020392273399603192) +zone = ('iaz020', 0.0024306361567130799) + +[fips1914992904] +centroid = (0.74815454758255628, -1.6740843185159755) +description = Meadow township, IA +station = ('korc', 0.0027925406506237498) +zone = ('iaz012', 0.0050295326102195014) + +[fips1914993303] +centroid = (0.74351115146750291, -1.6824539227708666) +description = Perry township, IA +station = ('ksux', 0.0037868338969022199) +zone = ('iaz020', 0.0033636184410605887) + +[fips1914993429] +centroid = (0.74511563264886127, -1.6802633251201033) +description = Plymouth township, IA +station = ('klrj', 0.0018073760471115107) +zone = ('iaz020', 0.0010903368902513283) + +[fips1914993462] +centroid = (0.74802911076921541, -1.6842152217855166) +description = Portland township, IA +station = ('klrj', 0.0041495950585924554) +zone = ('sdz071', 0.0020700825439415533) + +[fips1914993507] +centroid = (0.74814805495773884, -1.6823332681596761) +description = Preston township, IA +station = ('klrj', 0.0029496214066279227) +zone = ('iaz020', 0.0031760881791139148) + +[fips1914993564] +centroid = (0.7466329695406676, -1.6740961343950114) +description = Remsen township, IA +station = ('korc', 0.0040388685031208845) +zone = ('iaz020', 0.0038548375319436786) + +[fips1914993921] +centroid = (0.74521766459693284, -1.6848530349073656) +description = Sioux township, IA +station = ('ksux', 0.0058250204599397315) +zone = ('sdz071', 0.0028152390103850095) + +[fips1914993925] +centroid = (0.74288096543448534, -1.6812793336375667) +description = Sioux City city, IA +station = ('ksux', 0.0032255803225057144) +zone = ('iaz020', 0.0033800958978519985) + +[fips1914994005] +centroid = (0.74511638314043971, -1.6782209582827121) +description = Stanton township, IA +station = ('klrj', 0.0015811012647011314) +zone = ('iaz020', 0.0011022957297981385) + +[fips1914994254] +centroid = (0.74511756996433109, -1.6761692190272377) +description = Union township, IA +station = ('klrj', 0.0025020122037116748) +zone = ('iaz020', 0.0024032013529143173) + +[fips1914994545] +centroid = (0.74662654672902029, -1.6802682294953015) +description = Washington township, IA +station = ('klrj', 0.0010077984392734955) +zone = ('iaz020', 0.0010294384542245526) + +[fips1914994665] +centroid = (0.74650816104585749, -1.684892601521508) +description = Westfield township, IA +station = ('klrj', 0.0044035970244557269) +zone = ('sdz071', 0.0018538540302308084) + +[fips1915015] +centroid = (0.74418737928618806, -1.5917578009245186) +description = Colesburg city, IA +station = ('kpdc', 0.0067581050461946197) +zone = ('iaz041', 0.0036245652776629731) + +[fips1915060] +centroid = (0.72738478041797328, -1.6273525518351739) +description = Colfax city, IA +station = ('ktnu', 0.0029196315938302751) +zone = ('iaz061', 0.0024402419025755604) + +[fips19151] +centroid = (0.74584957850590994, -1.6524476986718044) +description = Pocahontas County, IA +station = ('kaxa', 0.0080531477489003342) +zone = ('iaz023', 8.0464200815308271e-06) + +[fips1915105] +centroid = (0.70897525690744745, -1.6601766972780434) +description = College Springs city, IA +station = ('kicl', 0.002030146890792609) +zone = ('iaz091', 0.00209189208901565) + +[fips1915190183] +centroid = (0.74355289974321059, -1.6514157552982702) +description = Bellville township, IA +station = ('kfod', 0.005675535615610571) +zone = ('iaz023', 0.0024223967934932891) + +[fips1915190564] +centroid = (0.74349345382888776, -1.6556024511079541) +description = Cedar township, IA +station = ('kslb', 0.0048088179440036426) +zone = ('iaz023', 0.0033016694617967286) + +[fips1915190621] +centroid = (0.74597072180929092, -1.6522154128016564) +description = Center township, IA +station = ('kaxa', 0.0078502479102762254) +zone = ('iaz023', 0.00021512816520504079) + +[fips1915190768] +centroid = (0.74355091006786334, -1.6534766226257327) +description = Colfax township, IA +station = ('kslb', 0.0063735728646005865) +zone = ('iaz023', 0.0024186025288430329) + +[fips1915190867] +centroid = (0.74813395269738281, -1.6534928890943612) +description = Cummins township, IA +station = ('kaxa', 0.0071262716943351016) +zone = ('iaz023', 0.0024060371277587239) + +[fips1915190984] +centroid = (0.74811882069276803, -1.649381608961656) +description = Des Moines township, IA +station = ('kaxa', 0.0048708477807456229) +zone = ('iaz023', 0.0032001888611982417) + +[fips1915191074] +centroid = (0.7449552892504806, -1.6557038372842026) +description = Dover township, IA +station = ('kslb', 0.0049467379420517418) +zone = ('iaz023', 0.002547274553983851) + +[fips1915191536] +centroid = (0.74644878494470468, -1.6492031490456394) +description = Garfield township, IA +station = ('kfod', 0.0055008510450400006) +zone = ('iaz023', 0.0024641288955688312) + +[fips1915191692] +centroid = (0.74505323712810245, -1.653491876803395) +description = Grant township, IA +station = ('kslb', 0.0065423696316674017) +zone = ('iaz023', 0.0011011482448136274) + +[fips1915192361] +centroid = (0.74508187798112768, -1.6493044654087179) +description = Lake township, IA +station = ('kfod', 0.0047250361866202949) +zone = ('iaz023', 0.00244173480975129) + +[fips1915192592] +centroid = (0.74503348000096992, -1.6513886677882792) +description = Lincoln township, IA +station = ('kfod', 0.0060703134172206746) +zone = ('iaz023', 0.0011339853288247592) + +[fips1915192670] +centroid = (0.74354623258546793, -1.6493661977043608) +description = Lizard township, IA +station = ('kfod', 0.0041916787094546902) +zone = ('iaz023', 0.0032374103762762025) + +[fips1915192880] +centroid = (0.74672238275824732, -1.6553760819039707) +description = Marshall township, IA +station = ('kslb', 0.005915989752009969) +zone = ('iaz023', 0.0023126520752761196) + +[fips1915193474] +centroid = (0.74813135215679727, -1.651426925405483) +description = Powhatan township, IA +station = ('kaxa', 0.0059064549163735736) +zone = ('iaz023', 0.0024029356896393761) + +[fips1915193685] +centroid = (0.74723126840825127, -1.649892117767864) +description = Rolfe city, IA +station = ('kaxa', 0.0058057161965184333) +zone = ('iaz023', 0.0023355435636647462) + +[fips1915193690] +centroid = (0.74665621732630416, -1.6513426434559042) +description = Roosevelt township, IA +station = ('kaxa', 0.0069131245083908777) +zone = ('iaz023', 0.0011489491601639767) + +[fips1915193873] +centroid = (0.74660483483312545, -1.6535148278830587) +description = Sherman township, IA +station = ('kaxa', 0.0080638368520035524) +zone = ('iaz023', 0.0010817493724738863) + +[fips1915194068] +centroid = (0.74814025333598244, -1.6555381706316032) +description = Swan Lake township, IA +station = ('kslb', 0.0067020635246563794) +zone = ('iaz023', 0.0032167926406379737) + +[fips1915195] +centroid = (0.73132950378016082, -1.6285072267617084) +description = Collins city, IA +station = ('kikv', 0.0050081314756611163) +zone = ('iaz048', 0.0031159648127745639) + +[fips1915240] +centroid = (0.73329104441989224, -1.6287168058982879) +description = Colo city, IA +station = ('kamw', 0.0039041348828828715) +zone = ('iaz048', 0.001936861158418084) + +[fips19153] +centroid = (0.72752794977651436, -1.6330996941691887) +description = Polk County, IA +station = ('kikv', 0.0001119347398543526) +zone = ('iaz060', 5.2473118382431032e-05) + +[fips1915375] +centroid = (0.72011023064236845, -1.5947891934891374) +description = Columbus City city, IA +station = ('kmut', 0.0034913182234804418) +zone = ('iaz078', 0.0016685574300639332) + +[fips1915390042] +centroid = (0.72479368206375505, -1.6319975012932617) +description = Allen township, IA +station = ('kdsm', 0.0020941464299648457) +zone = ('iaz060', 0.0028902729859600984) + +[fips1915390168] +centroid = (0.72694680749547791, -1.6300603079965956) +description = Beaver township, IA +station = ('kikv', 0.0023217946199258366) +zone = ('iaz060', 0.002395408217901864) + +[fips1915390270] +centroid = (0.72488190845744338, -1.6347189931958963) +description = Bloomfield township, IA +station = ('kdsm', 5.5653604839578396e-05) +zone = ('iaz060', 0.0029097222200228957) + +[fips1915390456] +centroid = (0.725121297817647, -1.6297749815704794) +description = Camp township, IA +station = ('kikv', 0.0034943692674944287) +zone = ('iaz060', 0.0035091358655513615) + +[fips1915390690] +centroid = (0.72683341345397579, -1.6312629445709748) +description = Clay township, IA +station = ('kikv', 0.0015417920670078788) +zone = ('iaz060', 0.001590318356254972) + +[fips1915390858] +centroid = (0.72841803278844652, -1.6341681847372593) +description = Crocker township, IA +station = ('kikv', 0.0011593374601011784) +zone = ('iaz060', 0.0011475520201462009) + +[fips1915390951] +centroid = (0.72700175046033066, -1.6325328635880185) +description = Delaware township, IA +station = ('kikv', 0.00072857578145309632) +zone = ('iaz060', 0.00072245460485894719) + +[fips1915390987] +centroid = (0.72592256102394492, -1.6346290912861261) +description = Des Moines township, IA +station = ('kdsm', 0.0010363149476045447) +zone = ('iaz060', 0.001960877018528831) + +[fips1915391056] +centroid = (0.72847163184977515, -1.6323262515111674) +description = Douglas township, IA +station = ('kikv', 0.00099475732311945651) +zone = ('iaz060', 0.0011143877276105481) + +[fips1915391185] +centroid = (0.72989672809061368, -1.6323076113947561) +description = Elkhart township, IA +station = ('kikv', 0.0023324029896082338) +zone = ('iaz060', 0.0024328731725038175) + +[fips1915391371] +centroid = (0.72558393224247297, -1.6315496498071997) +description = Four Mile township, IA +station = ('kikv', 0.0023247773111943035) +zone = ('iaz060', 0.0023061368884521941) + +[fips1915391425] +centroid = (0.72840073657555926, -1.6302259048360248) +description = Franklin township, IA +station = ('kikv', 0.0022327083110847243) +zone = ('iaz060', 0.0023527913346908236) + +[fips1915392247] +centroid = (0.72828655713589385, -1.6364022410863974) +description = Jefferson township, IA +station = ('kikv', 0.0026009241307515074) +zone = ('iaz060', 0.0025275405791431041) + +[fips1915392409] +centroid = (0.72593270138689914, -1.6330904613774455) +description = Lee township, IA +station = ('kikv', 0.0016956294244569422) +zone = ('iaz060', 0.0016174559530320013) + +[fips1915392595] +centroid = (0.72989824652706292, -1.6343140593561412) +description = Lincoln township, IA +station = ('kikv', 0.0024637399311617978) +zone = ('iaz060', 0.0025008231365355026) + +[fips1915392781] +centroid = (0.72960141838117631, -1.6357787920242923) +description = Madison township, IA +station = ('kikv', 0.0028452890317529631) +zone = ('iaz060', 0.0028315994665723617) + +[fips1915393759] +centroid = (0.72712685566111357, -1.6341102048995082) +description = Saylor township, IA +station = ('kikv', 0.00094849470578263853) +zone = ('iaz060', 0.00082340434797176178) + +[fips1915393762] +centroid = (0.72883986141536095, -1.635746922312151) +description = Saylorville Reservoir UT, IA +station = ('kikv', 0.0023612353405008443) +zone = ('iaz060', 0.0023200231802211592) + +[fips1915394257] +centroid = (0.73033059948936696, -1.6364612157618221) +description = Union township, IA +station = ('kamw', 0.0030691296474977497) +zone = ('iaz060', 0.0037127641088253965) + +[fips1915394410] +centroid = (0.72578111954136337, -1.6362984114491963) +description = Walnut township, IA +station = ('kdsm', 0.0014349470591423802) +zone = ('iaz060', 0.0029350348003609381) + +[fips1915394548] +centroid = (0.7297744154166339, -1.6300739913779312) +description = Washington township, IA +station = ('kikv', 0.003078566101915967) +zone = ('iaz060', 0.0032040343916259657) + +[fips1915394629] +centroid = (0.72701580036080915, -1.6362040764031258) +description = Webster township, IA +station = ('kdsm', 0.0023706887360361176) +zone = ('iaz060', 0.0023327528830722139) + +[fips1915420] +centroid = (0.72044981935492902, -1.5946214673480208) +description = Columbus Junction city, IA +station = ('kmut', 0.0032098239465584121) +zone = ('iaz078', 0.0017370729112279821) + +[fips1915465] +centroid = (0.75324411966758942, -1.6160185407523555) +description = Colwell city, IA +station = ('kccy', 0.0016221835102227112) +zone = ('iaz018', 0.0030447473968674382) + +[fips19155] +centroid = (0.72152232418027951, -1.6675731757551928) +description = Pottawattamie County, IA +station = ('kcbf', 0.0031781263692720885) +zone = ('iaz069', 7.4344009333136401e-05) + +[fips1915590174] +centroid = (0.72087342821768052, -1.6656029259224938) +description = Belknap township, IA +station = ('kcbf', 0.0044345288448611282) +zone = ('iaz069', 0.0015586630962331996) + +[fips1915590297] +centroid = (0.72349925862401354, -1.671619599452894) +description = Boomer township, IA +station = ('koma', 0.0031270988253599319) +zone = ('iaz055', 0.0040384263948404697) + +[fips1915590483] +centroid = (0.71993636094228486, -1.6656544654953054) +description = Carson township, IA +station = ('kcbf', 0.0043625263099773114) +zone = ('iaz069', 0.0020714936930473437) + +[fips1915590624] +centroid = (0.72050308680369979, -1.6636130411357102) +description = Center township, IA +station = ('krdk', 0.0046761382480599483) +zone = ('iaz069', 0.0030911726916511995) + +[fips1915590852] +centroid = (0.72222242810313197, -1.6735619065642684) +description = Crescent township, IA +station = ('koma', 0.0014101916951645799) +zone = ('nez052', 0.0037927299558293032) + +[fips1915591545] +centroid = (0.72071083334456476, -1.6715085441525896) +description = Garner township, IA +station = ('kcbf', 0.0004741435493275322) +zone = ('iaz069', 0.0030814921956305646) + +[fips1915591788] +centroid = (0.71908306947098477, -1.6637111635462574) +description = Grove township, IA +station = ('krdk', 0.0032935018760329947) +zone = ('iaz080', 0.0036983864369750539) + +[fips1915591839] +centroid = (0.72052849879760894, -1.6697025996156734) +description = Hardin township, IA +station = ('kcbf', 0.0013400870719167087) +zone = ('iaz069', 0.0018787384150013675) + +[fips1915591896] +centroid = (0.72193917861882584, -1.6719608985881214) +description = Hazel Dell township, IA +station = ('kcbf', 0.0017438017012431535) +zone = ('iaz069', 0.0033627806107722966) + +[fips1915592187] +centroid = (0.72211926169104668, -1.6656888310282771) +description = James township, IA +station = ('khnr', 0.0038803446285954244) +zone = ('iaz069', 0.0015312733488557302) + +[fips1915592292] +centroid = (0.72020803889365026, -1.6731650012390722) +description = Kane township, IA +station = ('koma', 0.00076348332751625188) +zone = ('nez052', 0.0038289218224651245) + +[fips1915592298] +centroid = (0.71901332611407509, -1.6694251969843614) +description = Keg Creek township, IA +station = ('kcbf', 0.00195116348525325) +zone = ('iaz069', 0.0028288173185425825) + +[fips1915592325] +centroid = (0.72363460890750564, -1.6636420834144634) +description = Knox township, IA +station = ('khnr', 0.0021667658217770459) +zone = ('iaz069', 0.0036387638872905463) + +[fips1915592364] +centroid = (0.72122015532688166, -1.6732224225714629) +description = Lake township, IA +station = ('koma', 0.00057356405911249597) +zone = ('nez052', 0.0037778897002855518) + +[fips1915592388] +centroid = (0.72367656662272362, -1.6616192119048168) +description = Layton township, IA +station = ('kaio', 0.0022981160835646663) +zone = ('iaz056', 0.0041083110965009278) + +[fips1915592433] +centroid = (0.71925756748959913, -1.672091361949708) +description = Lewis township, IA +station = ('kcbf', 0.0010958294037105248) +zone = ('iaz079', 0.0039137164786001277) + +[fips1915592598] +centroid = (0.72211809232044777, -1.6617919471408868) +description = Lincoln township, IA +station = ('kaio', 0.0021894793829731695) +zone = ('iaz070', 0.0038190613570838377) + +[fips1915592748] +centroid = (0.71876636202491784, -1.6658156117451419) +description = Macedonia township, IA +station = ('krdk', 0.0037158007041656095) +zone = ('iaz069', 0.0029819676335878067) + +[fips1915592949] +centroid = (0.72352114505283338, -1.6680875766456329) +description = Minden township, IA +station = ('khnr', 0.0038118462774042496) +zone = ('iaz069', 0.0021071440552634557) + +[fips1915593057] +centroid = (0.72359190070070933, -1.6696774843277373) +description = Neola township, IA +station = ('kcbf', 0.0036052353628361279) +zone = ('iaz069', 0.0026760871290387352) + +[fips1915593135] +centroid = (0.72211271670635169, -1.6697820644565167) +description = Norwalk township, IA +station = ('kcbf', 0.0022510653364052617) +zone = ('iaz069', 0.0018150439896622026) + +[fips1915593372] +centroid = (0.72365534341901938, -1.6657557644050911) +description = Pleasant township, IA +station = ('khnr', 0.0025062043116388238) +zone = ('iaz069', 0.0025695450064822005) + +[fips1915593678] +centroid = (0.72404701275645944, -1.6739986752095801) +description = Rockford township, IA +station = ('koma', 0.0032305598501374995) +zone = ('iaz055', 0.0036786040849742583) + +[fips1915593900] +centroid = (0.71912761027349559, -1.6677657379315654) +description = Silver Creek township, IA +station = ('kcbf', 0.0029808573911603927) +zone = ('iaz069', 0.002335532901267626) + +[fips1915594311] +centroid = (0.72200944557451108, -1.6636576866579762) +description = Valley township, IA +station = ('khnr', 0.0037843289981828966) +zone = ('iaz069', 0.0029572743668952644) + +[fips1915594551] +centroid = (0.72063290439346317, -1.6677598736252786) +description = Washington township, IA +station = ('kcbf', 0.0027962758038767781) +zone = ('iaz069', 0.00084164005351231204) + +[fips1915594605] +centroid = (0.71899671057959602, -1.6616222487777152) +description = Waveland township, IA +station = ('krdk', 0.0032280045770598726) +zone = ('iaz080', 0.0029535771343374489) + +[fips1915594785] +centroid = (0.72062063472882176, -1.6617713871622981) +description = Wright township, IA +station = ('kaio', 0.0028842095226766376) +zone = ('iaz069', 0.0044037024509498684) + +[fips1915594809] +centroid = (0.72214521473702376, -1.6677519149238893) +description = York township, IA +station = ('kcbf', 0.0033645145904893691) +zone = ('iaz069', 0.00070919111153065816) + +[fips1915645] +centroid = (0.72221160706176968, -1.5943335752879044) +description = Conesville city, IA +station = ('kmut', 0.0026108223592670775) +zone = ('iaz078', 0.0030449463030685947) + +[fips19157] +centroid = (0.72753222583318178, -1.614828924334196) +description = Poweshiek County, IA +station = ('kggi', 0.0027355027960462232) +zone = ('iaz062', 0.00011574314258447729) + +[fips1915790141] +centroid = (0.72846913602894492, -1.6140183934295702) +description = Bear Creek township, IA +station = ('kggi', 0.0033394364609724697) +zone = ('iaz062', 0.0011533825063239397) + +[fips1915790660] +centroid = (0.72988180552550908, -1.6180580801563584) +description = Chester township, IA +station = ('kggi', 0.0019265793270896714) +zone = ('iaz062', 0.0032633191318168294) + +[fips1915790930] +centroid = (0.72540657188388546, -1.611816887470982) +description = Deep River township, IA +station = ('kggi', 0.0055800069088828676) +zone = ('iaz062', 0.0032001119822221182) + +[fips1915791695] +centroid = (0.72823613457380365, -1.6179031298253665) +description = Grant township, IA +station = ('kggi', 0.00047970911987278979) +zone = ('iaz062', 0.0022849336327469272) + +[fips1915791774] +centroid = (0.72846821100444137, -1.6183550653818779) +description = Grinnell city, IA +station = ('kggi', 0.00049582451426875081) +zone = ('iaz062', 0.0026781908614849775) + +[fips1915792154] +centroid = (0.72534710851626993, -1.6141228164787169) +description = Jackson township, IA +station = ('kggi', 0.0041647417034050395) +zone = ('iaz062', 0.0023080364364592367) + +[fips1915792250] +centroid = (0.72983888787920259, -1.6119663225615377) +description = Jefferson township, IA +station = ('kggi', 0.0051779657470745833) +zone = ('iaz062', 0.0031965194345361546) + +[fips1915792601] +centroid = (0.72676346065755582, -1.6118249508921263) +description = Lincoln township, IA +station = ('kggi', 0.0050905175921976452) +zone = ('iaz062', 0.0024878534434570792) + +[fips1915792784] +centroid = (0.72994128634641708, -1.6138564792348624) +description = Madison township, IA +station = ('kggi', 0.0039453838490313689) +zone = ('iaz062', 0.0025192347096682755) + +[fips1915792805] +centroid = (0.72847538430766701, -1.6161809087326686) +description = Malcom township, IA +station = ('kggi', 0.0017609809620028739) +zone = ('iaz062', 0.001278986529704551) + +[fips1915793375] +centroid = (0.7267252554002297, -1.6161856734815265) +description = Pleasant township, IA +station = ('kggi', 0.0021003265988180225) +zone = ('iaz062', 0.0012327269693287539) + +[fips1915793801] +centroid = (0.72682123105579688, -1.6140266313836393) +description = Scott township, IA +station = ('kggi', 0.0034957504642171284) +zone = ('iaz062', 0.0010284809209333201) + +[fips1915793846] +centroid = (0.7298789606388284, -1.6160233404077986) +description = Sheridan township, IA +station = ('kggi', 0.0026225144488777209) +zone = ('iaz062', 0.0024420001884030962) + +[fips1915794026] +centroid = (0.72524394210418464, -1.6179749675773785) +description = Sugar Creek township, IA +station = ('kggi', 0.0027552646873852493) +zone = ('iaz062', 0.0032261290946244384) + +[fips1915794260] +centroid = (0.72529216555141718, -1.6160810409928694) +description = Union township, IA +station = ('kggi', 0.0032134216047681251) +zone = ('iaz062', 0.0024178312104561543) + +[fips1915794434] +centroid = (0.72836347379602906, -1.6119519410485013) +description = Warren township, IA +station = ('kggi', 0.0048608899206095324) +zone = ('iaz062', 0.0023957403276063417) + +[fips1915794554] +centroid = (0.72672342280451507, -1.6180675223876118) +description = Washington township, IA +station = ('kggi', 0.0012845354158171976) +zone = ('iaz062', 0.0024570116102134681) + +[fips1915825] +centroid = (0.73693920143558089, -1.620965659063841) +description = Conrad city, IA +station = ('kmiw', 0.0019428697130396998) +zone = ('iaz038', 0.0032947566251059898) + +[fips1915870] +centroid = (0.72826678255546873, -1.6056772205881937) +description = Conroy CDP, IA +station = ('kcid', 0.004574795710554822) +zone = ('iaz063', 0.0011219754697812472) + +[fips19159] +centroid = (0.71096570019959182, -1.6448724810259585) +description = Ringgold County, IA +station = ('kcsq', 0.0051691134512734131) +zone = ('iaz093', 4.0606142728180422e-06) + +[fips1915960] +centroid = (0.71120505465321038, -1.6514191761436041) +description = Conway city, IA +station = ('kcsq', 0.0057388142864004451) +zone = ('iaz092', 0.00104025305869652) + +[fips1915990087] +centroid = (0.7099657836178318, -1.6419854097371871) +description = Athens township, IA +station = ('klwd', 0.0024931579449448049) +zone = ('iaz093', 0.0024021810527290327) + +[fips1915990219] +centroid = (0.71001592692724158, -1.6479303851419151) +description = Benton township, IA +station = ('kcsq', 0.0059012534709579952) +zone = ('iaz093', 0.0025072414942197757) + +[fips1915990741] +centroid = (0.70873712418430534, -1.647898358350141) +description = Clinton township, IA +station = ('kcsq', 0.00717041825008211) +zone = ('moz003', 0.0022443727645871576) + +[fips1915991698] +centroid = (0.71168257673655599, -1.6480159760884328) +description = Grant township, IA +station = ('kcsq', 0.0042618227524501362) +zone = ('iaz093', 0.0024906157804257625) + +[fips1915992253] +centroid = (0.71314509283655714, -1.6457411663012609) +description = Jefferson township, IA +station = ('kcsq', 0.0028938769826423747) +zone = ('iaz093', 0.0022796445168866354) + +[fips1915992487] +centroid = (0.71160082551439252, -1.643920421372288) +description = Liberty township, IA +station = ('kcsq', 0.0048710485719202284) +zone = ('iaz093', 0.00096006654564863628) + +[fips1915992604] +centroid = (0.71305519092678682, -1.6478089451325613) +description = Lincoln township, IA +station = ('kcsq', 0.0028846932447987987) +zone = ('iaz093', 0.0030549074863285182) + +[fips1915992724] +centroid = (0.70857651898653673, -1.6439176462987775) +description = Lotts Creek township, IA +station = ('klwd', 0.003884077662492917) +zone = ('iaz093', 0.0024933425432016659) + +[fips1915992922] +centroid = (0.70864612271710625, -1.645754954402352) +description = Middle Fork township, IA +station = ('klwd', 0.0052583041641988326) +zone = ('iaz093', 0.0024128983875922896) + +[fips1915992988] +centroid = (0.71154398014065512, -1.6418769200708832) +description = Monroe township, IA +station = ('klwd', 0.0032832121138073114) +zone = ('iaz093', 0.0023391556934687099) + +[fips1915993034] +centroid = (0.71059877963094509, -1.6447660333948793) +description = Mount Ayr city, IA +station = ('kcsq', 0.0055430229002781176) +zone = ('iaz093', 0.00037269717273570211) + +[fips1915993432] +centroid = (0.71000297658419176, -1.6437338282219573) +description = Poe township, IA +station = ('klwd', 0.0037836271370232954) +zone = ('iaz093', 0.0012890495733698158) + +[fips1915993567] +centroid = (0.70996227550603519, -1.6456820869060811) +description = Rice township, IA +station = ('kcsq', 0.0059981913945703503) +zone = ('iaz093', 0.0011759781817902322) + +[fips1915993630] +centroid = (0.70877875028696535, -1.6419160852592978) +description = Riley township, IA +station = ('klwd', 0.0023519125189425294) +zone = ('iaz093', 0.0031281603245163782) + +[fips1915994119] +centroid = (0.71302902844129956, -1.6439015892696591) +description = Tingley township, IA +station = ('kcsq', 0.0036899115891131217) +zone = ('iaz093', 0.0021914317542894484) + +[fips1915994263] +centroid = (0.71299930548413815, -1.6418744940632228) +description = Union township, IA +station = ('klwd', 0.0044438014688991424) +zone = ('iaz093', 0.0030465514983827025) + +[fips1915994557] +centroid = (0.71165281887280951, -1.6458013103472848) +description = Washington township, IA +station = ('kcsq', 0.0043206116296455894) +zone = ('iaz093', 0.00098746127249162261) + +[fips1915994602] +centroid = (0.71056031257423113, -1.6468850899996033) +description = Waubonsie township, IA +station = ('kcsq', 0.00531639537259029) +zone = ('iaz093', 0.001580849288974583) + +[fips1916050] +centroid = (0.73085257510876089, -1.6524507529979955) +description = Coon Rapids city, IA +station = ('kcin', 0.003347582687055253) +zone = ('iaz045', 0.0036788207851026129) + +[fips19161] +centroid = (0.73980189047470202, -1.6598992946467317) +description = Sac County, IA +station = ('kslb', 0.004058336895180769) +zone = ('iaz033', 2.3414968933629033e-05) + +[fips1916140] +centroid = (0.71845148717456553, -1.6007254597008982) +description = Coppock city, IA +station = ('kawg', 0.002172571618938406) +zone = ('iaz077', 0.002991105419751598) + +[fips1916190321] +centroid = (0.74065952781583944, -1.6604805416475232) +description = Boyer Valley township, IA +station = ('kslb', 0.0031006624638433796) +zone = ('iaz033', 0.0009782132037952512) + +[fips1916190567] +centroid = (0.74063746685409426, -1.6564169962698601) +description = Cedar township, IA +station = ('kslb', 0.005100666694430986) +zone = ('iaz033', 0.0027140640971927161) + +[fips1916190744] +centroid = (0.73909354859778009, -1.6605993113031214) +description = Clinton township, IA +station = ('kslb', 0.0045596872725029748) +zone = ('iaz033', 0.00085634739290404278) + +[fips1916190819] +centroid = (0.74063636729666549, -1.662652097756147) +description = Cook township, IA +station = ('kslb', 0.0028990353324504655) +zone = ('iaz033', 0.0022027284198543389) + +[fips1916190825] +centroid = (0.73909513684739936, -1.6564272064459842) +description = Coon Valley township, IA +station = ('kcin', 0.0054224680547777385) +zone = ('iaz033', 0.0026583062011477712) + +[fips1916190954] +centroid = (0.74193450828771379, -1.6600289726101549) +description = Delaware township, IA +station = ('kslb', 0.0022113878642001723) +zone = ('iaz033', 0.0021577287981786528) + +[fips1916191059] +centroid = (0.74203516142567638, -1.6576327402669215) +description = Douglas township, IA +station = ('kslb', 0.0036297600275592336) +zone = ('iaz033', 0.0028107288693733838) + +[fips1916191149] +centroid = (0.74202224598921163, -1.6617871998453213) +description = Eden township, IA +station = ('kslb', 0.001509936274238367) +zone = ('iaz033', 0.0026389154211430305) + +[fips1916191251] +centroid = (0.74207732858040454, -1.6638011352691977) +description = Eureka township, IA +station = ('kslb', 0.0018865365217659873) +zone = ('iaz032', 0.003301504885124395) + +[fips1916192157] +centroid = (0.74061530117259389, -1.6584900110889162) +description = Jackson township, IA +station = ('kslb', 0.0039496410528303515) +zone = ('iaz033', 0.0013378815420163673) + +[fips1916192430] +centroid = (0.73738014141780472, -1.6604997402692954) +description = Levey township, IA +station = ('kdns', 0.0056051226821467693) +zone = ('iaz033', 0.0024387051497077122) + +[fips1916193612] +centroid = (0.73900055745523385, -1.6626784696811447) +description = Richland township, IA +station = ('kslb', 0.0045274712937870207) +zone = ('iaz033', 0.0021926557897995677) + +[fips1916193723] +centroid = (0.73733197033044962, -1.6564400695225714) +description = Sac township, IA +station = ('kcin', 0.0037769349321343853) +zone = ('iaz033', 0.0035422832289239529) + +[fips1916194368] +centroid = (0.73734167436109077, -1.6585548849772127) +description = Viola township, IA +station = ('kcin', 0.0046700501339648854) +zone = ('iaz033', 0.0026333760592318384) + +[fips1916194383] +centroid = (0.73909389766363043, -1.6584737620735801) +description = Wall Lake township, IA +station = ('kslb', 0.0051766567641499082) +zone = ('iaz033', 0.0012593133076571328) + +[fips1916194710] +centroid = (0.73747531422191603, -1.6626862887561935) +description = Wheeler township, IA +station = ('kdns', 0.0049702868765313718) +zone = ('iaz033', 0.0030882933376957318) + +[fips1916230] +centroid = (0.7277949327921921, -1.5986509264453925) +description = Coralville city, IA +station = ('kiow', 0.0013021928430913808) +zone = ('iaz064', 0.0005006238658237256) + +[fips19163] +centroid = (0.72678440460857985, -1.5816573361971322) +description = Scott County, IA +station = ('kdvn', 0.00066996699770600118) +zone = ('iaz068', 8.0795268146753989e-05) + +[fips1916320] +centroid = (0.72566809201900428, -1.6638321148634205) +description = Corley CDP, IA +station = ('khnr', 0.00016760848519271792) +zone = ('iaz056', 0.0018926922500188312) + +[fips1916390048] +centroid = (0.72799927594101554, -1.5835652254156574) +description = Allens Grove township, IA +station = ('kdvn', 0.0025425578170272657) +zone = ('iaz068', 0.001916675712442538) + +[fips1916390282] +centroid = (0.72515959034143562, -1.5837924672842669) +description = Blue Grass township, IA +station = ('kdvn', 0.0024178028398794613) +zone = ('iaz068', 0.0022133128316570976) + +[fips1916390393] +centroid = (0.72395780897838991, -1.5835685939011135) +description = Buffalo township, IA +station = ('kmli', 0.0028610891629664566) +zone = ('ilz015', 0.0021605707502663166) + +[fips1916390429] +centroid = (0.72821639489996359, -1.579442338843426) +description = Butler township, IA +station = ('kdvn', 0.0021923275508649882) +zone = ('iaz068', 0.0022498843953777433) + +[fips1916390726] +centroid = (0.72676099974331054, -1.5854777572099925) +description = Cleona township, IA +station = ('kdvn', 0.0033891356092723567) +zone = ('iaz068', 0.0028438798483284432) + +[fips1916390893] +centroid = (0.72525593251614584, -1.5813380631170648) +description = Davenport city, IA +station = ('kdvn', 0.0011247516189702121) +zone = ('iaz068', 0.0014700783698417864) + +[fips1916391923] +centroid = (0.72680536601289625, -1.5834541701153528) +description = Hickory Grove township, IA +station = ('kdvn', 0.0019069536391929964) +zone = ('iaz068', 0.0013347839944496931) + +[fips1916392391] +centroid = (0.72637786506591273, -1.5775529501149721) +description = Le Claire township, IA +station = ('kmli', 0.0033913684759520682) +zone = ('iaz068', 0.0030970740941401748) + +[fips1916392490] +centroid = (0.72822196250027738, -1.5856429700769863) +description = Liberty township, IA +station = ('kdvn', 0.0039570298104149425) +zone = ('iaz065', 0.0037642407628190478) + +[fips1916392607] +centroid = (0.72685858110178958, -1.5795469189722056) +description = Lincoln township, IA +station = ('kdvn', 0.0011849189963046302) +zone = ('iaz068', 0.0015964736451543986) + +[fips1916393420] +centroid = (0.7256084017585861, -1.5790260429102405) +description = Pleasant Valley township, IA +station = ('kdvn', 0.0016359855084821608) +zone = ('ilz015', 0.0022473354701779795) + +[fips1916393510] +centroid = (0.72781416632054896, -1.577550698640237) +description = Princeton township, IA +station = ('kcwi', 0.0024183330419813476) +zone = ('iaz066', 0.0039268039350070019) + +[fips1916393849] +centroid = (0.72688760592725032, -1.5814071781554437) +description = Sheridan township, IA +station = ('kdvn', 0.00062809952590056693) +zone = ('iaz068', 0.00027029599228465081) + +[fips1916394764] +centroid = (0.7279762026883041, -1.5812508490143427) +description = Winfield township, IA +station = ('kdvn', 0.0016411085078313072) +zone = ('iaz068', 0.0013102654082537228) + +[fips19165] +centroid = (0.72743602328481194, -1.6634544081599962) +description = Shelby County, IA +station = ('khnr', 0.001698765806227438) +zone = ('iaz056', 0.00010773963491463923) + +[fips1916500] +centroid = (0.71545922489177649, -1.6535200813241073) +description = Corning city, IA +station = ('kcsq', 0.0049312245697287578) +zone = ('iaz081', 0.00082711753004753585) + +[fips1916545] +centroid = (0.74136673522874752, -1.6717290665035789) +description = Correctionville city, IA +station = ('kckp', 0.0053146098806274699) +zone = ('iaz032', 0.0038123348020741438) + +[fips1916590] +centroid = (0.75029959213984232, -1.6398778373989411) +description = Corwith city, IA +station = ('kaxa', 0.0042670789002803109) +zone = ('iaz016', 0.0032822426573912429) + +[fips1916590513] +centroid = (0.72679538272957489, -1.666607973772255) +description = Cass township, IA +station = ('khnr', 0.0022011244183949294) +zone = ('iaz056', 0.002454267349713542) + +[fips1916590627] +centroid = (0.72678438715528726, -1.6626116759306711) +description = Center township, IA +station = ('khnr', 0.001436292334022137) +zone = ('iaz056', 0.00099686577676208043) + +[fips1916590693] +centroid = (0.72524525110112359, -1.6597680284336891) +description = Clay township, IA +station = ('kaio', 0.0027506055504953443) +zone = ('iaz057', 0.0033919929947815067) + +[fips1916591062] +centroid = (0.72838026386343335, -1.6627274959798333) +description = Douglas township, IA +station = ('khnr', 0.0027614382315816369) +zone = ('iaz056', 0.0010082871043223245) + +[fips1916591305] +centroid = (0.725254798052132, -1.6637584270624013) +description = Fairview township, IA +station = ('khnr', 0.00055872089123731113) +zone = ('iaz056', 0.0022969951274509392) + +[fips1916591731] +centroid = (0.72990946899415321, -1.6627262393427718) +description = Greeley township, IA +station = ('kdns', 0.00321401236871925) +zone = ('iaz056', 0.0024328465203419746) + +[fips1916591791] +centroid = (0.73004331829448865, -1.6668581492672356) +description = Grove township, IA +station = ('kdns', 0.0031250942601249226) +zone = ('iaz056', 0.0035512487979313134) + +[fips1916591849] +centroid = (0.72692115115547362, -1.6637675900409741) +description = Harlan city, IA +station = ('khnr', 0.0011480096732666388) +zone = ('iaz056', 0.00065755471386262274) + +[fips1916592160] +centroid = (0.72683014968827464, -1.660716981401291) +description = Jackson township, IA +station = ('kadu', 0.0031803999543351391) +zone = ('iaz056', 0.0021824601729246947) + +[fips1916592256] +centroid = (0.72990222587775744, -1.6606990917764579) +description = Jefferson township, IA +station = ('kadu', 0.0036544590826950146) +zone = ('iaz056', 0.0031415115335484797) + +[fips1916592610] +centroid = (0.72684845819212807, -1.6648176673854367) +description = Lincoln township, IA +station = ('khnr', 0.0012291980607469814) +zone = ('iaz056', 0.0012174144481996241) + +[fips1916592991] +centroid = (0.72528898905217853, -1.6616011826536439) +description = Monroe township, IA +station = ('khnr', 0.0018563433430975015) +zone = ('iaz056', 0.0026545815821005505) + +[fips1916593447] +centroid = (0.72837164193692849, -1.6607030187672749) +description = Polk township, IA +station = ('kadu', 0.0030592269690084008) +zone = ('iaz056', 0.0022318609805301809) + +[fips1916593834] +centroid = (0.7252568400873568, -1.6657545426746145) +description = Shelby township, IA +station = ('khnr', 0.001420625981991744) +zone = ('iaz056', 0.0028492209904334982) + +[fips1916594266] +centroid = (0.72968240165846876, -1.66486866590618) +description = Union township, IA +station = ('kdns', 0.0030662004367172412) +zone = ('iaz056', 0.0023782323090160325) + +[fips1916594560] +centroid = (0.72854188135216802, -1.6666664772087816) +description = Washington township, IA +station = ('khnr', 0.003404351569191757) +zone = ('iaz056', 0.0025811529614493916) + +[fips1916594689] +centroid = (0.72850151188656942, -1.6649141840930719) +description = Westphalia township, IA +station = ('khnr', 0.00280204277434834) +zone = ('iaz056', 0.0014383042547955447) + +[fips1916635] +centroid = (0.71135127833794243, -1.6286967695184751) +description = Corydon city, IA +station = ('kcnc', 0.0048590690052518525) +zone = ('iaz095', 0.00033939841591931134) + +[fips19167] +centroid = (0.75193765345600905, -1.6786215287993376) +description = Sioux County, IA +station = ('korc', 0.0022431823311439059) +zone = ('iaz012', 4.4485394647534636e-06) + +[fips1916725] +centroid = (0.72071617405207589, -1.5963795025969696) +description = Cotter city, IA +station = ('kawg', 0.0026406869637451216) +zone = ('iaz078', 0.0030082279034458924) + +[fips1916790399] +centroid = (0.75100878922809777, -1.683889525893802) +description = Buncombe township, IA +station = ('korc', 0.0053339871270802527) +zone = ('iaz012', 0.0039590547092678962) + +[fips1916790468] +centroid = (0.75272629793181522, -1.676181209439199) +description = Capel township, IA +station = ('korc', 0.0025517312075578565) +zone = ('iaz012', 0.0019498762679248198) + +[fips1916790630] +centroid = (0.75120119432483756, -1.6802832916867461) +description = Center township, IA +station = ('korc', 0.0028185817622611757) +zone = ('iaz012', 0.0014180405954026744) + +[fips1916791098] +centroid = (0.75111724398781665, -1.6823105265195226) +description = Eagle township, IA +station = ('korc', 0.0042183058916868887) +zone = ('iaz012', 0.0028165177160545457) + +[fips1916791122] +centroid = (0.74967458973470313, -1.6740937083873511) +description = East Orange township, IA +station = ('korc', 0.0019639792060171311) +zone = ('iaz013', 0.0043844944007207579) + +[fips1916791359] +centroid = (0.75131179583953644, -1.6739491951252858) +description = Floyd township, IA +station = ('korc', 0.0022847894533355412) +zone = ('iaz013', 0.0036931648842657753) + +[fips1916791539] +centroid = (0.75274996459647225, -1.6824360156927411) +description = Garfield township, IA +station = ('korc', 0.0049183234775472141) +zone = ('iaz012', 0.0029025698623167096) + +[fips1916791701] +centroid = (0.75423841628915811, -1.6741424554333593) +description = Grant township, IA +station = ('kshl', 0.0011194038342315696) +zone = ('iaz012', 0.003998792443937524) + +[fips1916791965] +centroid = (0.75108116803217784, -1.6761904073243568) +description = Holland township, IA +station = ('korc', 0.00095038162182081341) +zone = ('iaz012', 0.0019697735888491849) + +[fips1916792613] +centroid = (0.75423311048823205, -1.6782578719963919) +description = Lincoln township, IA +station = ('kshl', 0.004118306606146053) +zone = ('iaz012', 0.0023151009823402873) + +[fips1916792703] +centroid = (0.74952574805609307, -1.6839255494895631) +description = Logan township, IA +station = ('klrj', 0.0046958604828653393) +zone = ('sdz071', 0.0029673931653630562) + +[fips1916792733] +centroid = (0.75283885421527641, -1.6739597892738456) +description = Lynn township, IA +station = ('kshl', 0.0017407174220354237) +zone = ('iaz013', 0.0037479197001138889) + +[fips1916793051] +centroid = (0.74982645083291921, -1.676045702076074) +description = Nassau township, IA +station = ('korc', 0.00059598534564227462) +zone = ('iaz012', 0.0028254846187371814) + +[fips1916793345] +centroid = (0.75268318829929104, -1.6802316648474722) +description = Plato township, IA +station = ('korc', 0.003591564255250979) +zone = ('iaz012', 0.0013947451410903471) + +[fips1916793549] +centroid = (0.74967544494603666, -1.6802760834769355) +description = Reading township, IA +station = ('korc', 0.0026835372973278396) +zone = ('iaz012', 0.002561609874243447) + +[fips1916793666] +centroid = (0.75418308935186995, -1.6802303907571183) +description = Rock township, IA +station = ('korc', 0.0047520263719715997) +zone = ('iaz012', 0.0025378427077578851) + +[fips1916793813] +centroid = (0.75463258144742851, -1.6839529860654046) +description = Settlers township, IA +station = ('kfsd', 0.0069215893055479451) +zone = ('sdz067', 0.0031174217422181572) + +[fips1916793852] +centroid = (0.75421989834579439, -1.6760740985830038) +description = Sheridan township, IA +station = ('kshl', 0.0025271931346787955) +zone = ('iaz012', 0.002946492774512254) + +[fips1916793876] +centroid = (0.74979597738417936, -1.6781680224464992) +description = Sherman township, IA +station = ('korc', 0.0011618076007200199) +zone = ('iaz012', 0.0021627512061224785) + +[fips1916793924] +centroid = (0.7542318887577556, -1.6823711418044442) +description = Sioux township, IA +station = ('korc', 0.0057897462751014808) +zone = ('iaz001', 0.0037129497283220026) + +[fips1916794563] +centroid = (0.74979746091404365, -1.6821697482620568) +description = Washington township, IA +station = ('klrj', 0.0039836050239887514) +zone = ('iaz012', 0.003360464888374437) + +[fips1916794635] +centroid = (0.75272176007576008, -1.6782446249473693) +description = Welcome township, IA +station = ('korc', 0.0027682923360207129) +zone = ('iaz012', 0.00083505354856696864) + +[fips1916794653] +centroid = (0.75131668276144203, -1.6780730939884831) +description = West Branch township, IA +station = ('korc', 0.0015111287317554568) +zone = ('iaz012', 0.00073509409827587457) + +[fips1916815] +centroid = (0.74583364364983928, -1.6296147428918539) +description = Coulter city, IA +station = ('kifa', 0.0047687848107570256) +zone = ('iaz026', 0.0013800660458295427) + +[fips1916860] +centroid = (0.71975257777204982, -1.6729720725435571) +description = Council Bluffs city, IA +station = ('koma', 0.0012254987012729631) +zone = ('nez052', 0.0040593674974216971) + +[fips19169] +centroid = (0.73369344753223198, -1.6312910618252243) +description = Story County, IA +station = ('kamw', 0.0021697751981247819) +zone = ('iaz048', 2.6665139782847599e-05) + +[fips1916950] +centroid = (0.74866882629994891, -1.6809191674931252) +description = Craig city, IA +station = ('klrj', 0.0025315783458387739) +zone = ('iaz020', 0.0030120890611431092) + +[fips1916990777] +centroid = (0.73146234078953021, -1.6280729888438124) +description = Collins township, IA +station = ('ktnu', 0.005244349379653266) +zone = ('iaz048', 0.0032460416434890197) + +[fips1916991428] +centroid = (0.73445992632653789, -1.6344086736548917) +description = Franklin township, IA +station = ('kamw', 0.0017507155376624249) +zone = ('iaz048', 0.0024579206225918636) + +[fips1916991704] +centroid = (0.73280079888629956, -1.6323139469399406) +description = Grant township, IA +station = ('kamw', 0.0011943155721282769) +zone = ('iaz048', 0.0011632028463733116) + +[fips1916991992] +centroid = (0.73579218850446271, -1.6324366261330634) +description = Howard township, IA +station = ('kamw', 0.0032375501457238649) +zone = ('iaz048', 0.0022908172622104271) + +[fips1916992034] +centroid = (0.73144420681860189, -1.6302425203705038) +description = Indian Creek township, IA +station = ('kamw', 0.0030291788813934881) +zone = ('iaz048', 0.0023542219852125601) + +[fips1916992340] +centroid = (0.73586079739735866, -1.6341827233299286) +description = Lafayette township, IA +station = ('kamw', 0.0031195449407849015) +zone = ('iaz048', 0.0030753897643334338) + +[fips1916992616] +centroid = (0.73587482984454466, -1.6280401417472898) +description = Lincoln township, IA +station = ('kifa', 0.0053680024499288192) +zone = ('iaz048', 0.0032584255956442576) + +[fips1916992934] +centroid = (0.73457345999438006, -1.6323416278618774) +description = Milford township, IA +station = ('kamw', 0.0021696016769880608) +zone = ('iaz048', 0.0012019332869738838) + +[fips1916993063] +centroid = (0.73283074873626375, -1.6299782600684591) +description = Nevada township, IA +station = ('kamw', 0.0029304329181712484) +zone = ('iaz048', 0.0012770990976523114) + +[fips1916993066] +centroid = (0.73281128831510411, -1.6280299664777507) +description = New Albany township, IA +station = ('kamw', 0.0043779390118321541) +zone = ('iaz048', 0.0025585845947533438) + +[fips1916993261] +centroid = (0.73141249418609322, -1.6343172184020871) +description = Palestine township, IA +station = ('kamw', 0.0013673570084030678) +zone = ('iaz048', 0.0031963812548699171) + +[fips1916993615] +centroid = (0.73445575498962556, -1.6301574879293466) +description = Richland township, IA +station = ('kamw', 0.0032748743047538429) +zone = ('iaz048', 0.0011419770908572104) + +[fips1916993879] +centroid = (0.7344069730370324, -1.6282094735913182) +description = Sherman township, IA +station = ('kamw', 0.004554141263809432) +zone = ('iaz048', 0.0023914900913935212) + +[fips1916994269] +centroid = (0.73145956571601944, -1.6323311558863653) +description = Union township, IA +station = ('kamw', 0.0017473892452387787) +zone = ('iaz048', 0.0023461625190279983) + +[fips1916994437] +centroid = (0.73593890088138536, -1.6302225363505685) +description = Warren township, IA +station = ('kamw', 0.004208831463188018) +zone = ('iaz048', 0.0023991237977027896) + +[fips1916994566] +centroid = (0.73279699406853027, -1.6344723956258822) +description = Washington township, IA +station = ('kamw', 0.00041428049221493564) +zone = ('iaz048', 0.0025319523898682059) + +[fips19171] +centroid = (0.73434462987615112, -1.6149428943343513) +description = Tama County, IA +station = ('kmiw', 0.0050680796322710286) +zone = ('iaz050', 9.5789025717892036e-05) + +[fips1917130] +centroid = (0.71931799078830316, -1.5976236605542538) +description = Crawfordsville city, IA +station = ('kawg', 0.0020881215018298854) +zone = ('iaz077', 0.0031839525885082793) + +[fips1917175] +centroid = (0.72205562698651882, -1.6729839058758855) +description = Crescent city, IA +station = ('koma', 0.0013687241250017487) +zone = ('nez052', 0.0041398066854486703) + +[fips1917190375] +centroid = (0.73746833290490788, -1.6139950060175934) +description = Buckingham township, IA +station = ('kalo', 0.0052591018209575003) +zone = ('iaz050', 0.003127025178154573) + +[fips1917190474] +centroid = (0.73442833586707679, -1.6180620595070532) +description = Carlton township, IA +station = ('kmiw', 0.0027768764606778576) +zone = ('iaz050', 0.0022737888417466282) + +[fips1917190480] +centroid = (0.73439981718709912, -1.614095798781896) +description = Carroll township, IA +station = ('kggi', 0.0071923632506379672) +zone = ('iaz050', 0.00067075950313453668) + +[fips1917190669] +centroid = (0.73600979615560136, -1.6122832569004073) +description = Clark township, IA +station = ('kvti', 0.0046188954401170197) +zone = ('iaz050', 0.0025589262723865313) + +[fips1917190786] +centroid = (0.731527389210752, -1.6160470245257481) +description = Columbia township, IA +station = ('kggi', 0.0039746395883147861) +zone = ('iaz050', 0.0030064063581220738) + +[fips1917190864] +centroid = (0.735825733732686, -1.6160539534828784) +description = Crystal township, IA +station = ('kmiw', 0.0042548540812072733) +zone = ('iaz050', 0.0015993666287934779) + +[fips1917191554] +centroid = (0.73749727046390612, -1.6119130202061818) +description = Geneseo township, IA +station = ('kalo', 0.005171775037617312) +zone = ('iaz039', 0.0037951765899598261) + +[fips1917191707] +centroid = (0.73733235430288513, -1.616196564336059) +description = Grant township, IA +station = ('kmiw', 0.0046626180061338403) +zone = ('iaz050', 0.0030341564023172811) + +[fips1917191944] +centroid = (0.73139458710796768, -1.6180527918087249) +description = Highland township, IA +station = ('kggi', 0.0034301613645007683) +zone = ('iaz050', 0.0037911864285510646) + +[fips1917191995] +centroid = (0.7344274457491583, -1.6160261852944793) +description = Howard township, IA +station = ('kmiw', 0.0042606831616974214) +zone = ('iaz050', 0.00076274400853366703) + +[fips1917192037] +centroid = (0.73299364031535241, -1.6181842849145702) +description = Indian Village township, IA +station = ('kmiw', 0.0033392662718993338) +zone = ('iaz050', 0.0027684456502128536) + +[fips1917192619] +centroid = (0.73746370778239012, -1.6180820435269885) +description = Lincoln township, IA +station = ('kmiw', 0.0035919549263253971) +zone = ('iaz038', 0.0027955877851181233) + +[fips1917193180] +centroid = (0.73442751556232833, -1.6119424813639553) +description = Oneida township, IA +station = ('kvti', 0.0049300819847521316) +zone = ('iaz050', 0.0022682464831728245) + +[fips1917193243] +centroid = (0.73290883476699809, -1.6139791933345704) +description = Otter Creek township, IA +station = ('kggi', 0.0059484631376304966) +zone = ('iaz050', 0.0017001020247491912) + +[fips1917193306] +centroid = (0.73587133918604075, -1.6139094325243679) +description = Perry township, IA +station = ('kalo', 0.0068265629163583993) +zone = ('iaz050', 0.0016513571086944226) + +[fips1917193618] +centroid = (0.73134636366073513, -1.614015408916549) +description = Richland township, IA +station = ('kggi', 0.0047169772786520604) +zone = ('iaz050', 0.0031700582450298531) + +[fips1917193750] +centroid = (0.73140669969297656, -1.6119303687789466) +description = Salt Creek township, IA +station = ('kggi', 0.0059443110468086341) +zone = ('iaz050', 0.003787699756632912) + +[fips1917193972] +centroid = (0.73607636301327251, -1.6182406241428244) +description = Spring Creek township, IA +station = ('kmiw', 0.0027548727000042696) +zone = ('iaz050', 0.0029135513938548349) + +[fips1917194083] +centroid = (0.73243197590876807, -1.6160183662194303) +description = Tama township, IA +station = ('kggi', 0.0048076744719005911) +zone = ('iaz050', 0.0021378281449044986) + +[fips1917194128] +centroid = (0.73337934062675059, -1.6164441741970395) +description = Toledo township, IA +station = ('kmiw', 0.0042551956234096831) +zone = ('iaz050', 0.0015028205044568565) + +[fips1917194812] +centroid = (0.73290909656638581, -1.6119261450821569) +description = York township, IA +station = ('kvti', 0.0058224350482686529) +zone = ('iaz050', 0.0027429136442887157) + +[fips1917220] +centroid = (0.75697996202489826, -1.6077336024194786) +description = Cresco city, IA +station = ('kfka', 0.0053817674597828533) +zone = ('iaz009', 0.0025618385404405745) + +[fips1917265] +centroid = (0.71663793300211087, -1.6469854987914705) +description = Creston city, IA +station = ('kcsq', 0.00076225827200659892) +zone = ('iaz082', 0.0017153082794766814) + +[fips19173] +centroid = (0.71101134055953141, -1.6527763267166624) +description = Taylor County, IA +station = ('kicl', 0.0044625721589838475) +zone = ('iaz092', 1.2508448679909479e-05) + +[fips1917390171] +centroid = (0.70979645177380324, -1.6530958615961175) +description = Bedford township, IA +station = ('kicl', 0.0042908471912134006) +zone = ('iaz092', 0.0012310187431392769) + +[fips1917390222] +centroid = (0.71023562897348258, -1.6537816538191037) +description = Benton township, IA +station = ('kicl', 0.0037085574885360652) +zone = ('iaz092', 0.0010862390166113463) + +[fips1917390708] +centroid = (0.70996471896698798, -1.6516885328070645) +description = Clayton township, IA +station = ('kcsq', 0.0068899998277494072) +zone = ('iaz092', 0.0013199290140830089) + +[fips1917390885] +centroid = (0.71165540196010235, -1.6558544242920645) +description = Dallas township, IA +station = ('kicl', 0.0023451245512313592) +zone = ('iaz092', 0.0024292716089970206) + +[fips1917391548] +centroid = (0.7100070257480563, -1.6499259597020604) +description = Gay township, IA +station = ('kcsq', 0.0062699263790462244) +zone = ('iaz092', 0.0023713497742306527) + +[fips1917391710] +centroid = (0.71154008805642321, -1.6498133685120142) +description = Grant township, IA +station = ('kcsq', 0.004826290350323937) +zone = ('iaz092', 0.002300375296806911) + +[fips1917391794] +centroid = (0.71302012726211428, -1.6516834538989411) +description = Grove township, IA +station = ('kcsq', 0.004541525638989883) +zone = ('iaz092', 0.002178326174673412) + +[fips1917391971] +centroid = (0.71314312061450236, -1.6539265685068969) +description = Holt township, IA +station = ('kicl', 0.0043619027991887473) +zone = ('iaz092', 0.0023146659941011239) + +[fips1917392163] +centroid = (0.70875101700515108, -1.6516769961807085) +description = Jackson township, IA +station = ('kicl', 0.0056127007990367803) +zone = ('iaz092', 0.0023974295272240361) + +[fips1917392259] +centroid = (0.70856808904624957, -1.6499806234142327) +description = Jefferson township, IA +station = ('kcsq', 0.0076460959349654535) +zone = ('moz003', 0.0025727900441214085) + +[fips1917392883] +centroid = (0.71144545630438005, -1.6519164728073747) +description = Marshall township, IA +station = ('kcsq', 0.0057785613033770732) +zone = ('iaz092', 0.00078151992529921371) + +[fips1917392889] +centroid = (0.71017995297034398, -1.6556822475613555) +description = Mason township, IA +station = ('kicl', 0.0022923330418008073) +zone = ('iaz092', 0.0023584729776959211) + +[fips1917393126] +centroid = (0.71321502817968452, -1.6556609719977735) +description = Nodaway township, IA +station = ('kicl', 0.0034254773856480553) +zone = ('iaz092', 0.0031147977513224659) + +[fips1917393348] +centroid = (0.71306135193904652, -1.6498879813375369) +description = Platte township, IA +station = ('kcsq', 0.0035569145297847066) +zone = ('iaz092', 0.0029979976832697776) + +[fips1917393450] +centroid = (0.70869061115973964, -1.655581332624005) +description = Polk township, IA +station = ('kicl', 0.0030330367803376866) +zone = ('iaz092', 0.0031467321215020586) + +[fips1917393705] +centroid = (0.70875984837116623, -1.6533953251891746) +description = Ross township, IA +station = ('kicl', 0.0044033709104709055) +zone = ('iaz092', 0.0022922015857339134) + +[fips1917394569] +centroid = (0.71150621121564195, -1.6539679502634614) +description = Washington township, IA +station = ('kicl', 0.0036476601837830795) +zone = ('iaz092', 0.0010411197424675617) + +[fips1917490] +centroid = (0.71628858789903149, -1.6486683278029508) +description = Cromwell city, IA +station = ('kcsq', 0.001318021820122806) +zone = ('iaz082', 0.0028960305872414169) + +[fips19175] +centroid = (0.71608328481911954, -1.6448871417916753) +description = Union County, IA +station = ('kcsq', 0.0016142447883950343) +zone = ('iaz082', 3.8411644399677528e-05) + +[fips1917590856] +centroid = (0.71663793300211087, -1.6469854987914705) +description = Creston city, IA +station = ('kcsq', 0.00076225827200659892) +zone = ('iaz082', 0.0017153082794766814) + +[fips1917591011] +centroid = (0.71751640957451701, -1.6438364186753895) +description = Dodge township, IA +station = ('kcsq', 0.0029005909608775622) +zone = ('iaz082', 0.0016337860175627441) + +[fips1917591065] +centroid = (0.71591915405626194, -1.6479376108050183) +description = Douglas township, IA +station = ('kcsq', 0.00070194782712351092) +zone = ('iaz082', 0.0023415973788280101) + +[fips1917591713] +centroid = (0.7144536185366549, -1.6458026542508088) +description = Grant township, IA +station = ('kcsq', 0.0016889022689459757) +zone = ('iaz082', 0.0017707686736628896) + +[fips1917591947] +centroid = (0.71601238954490343, -1.6454996825459551) +description = Highland township, IA +station = ('kcsq', 0.0011469215152171133) +zone = ('iaz082', 0.00050068787104680975) + +[fips1917592280] +centroid = (0.71604966977772611, -1.6418797125976863) +description = Jones township, IA +station = ('kcsq', 0.0038737774791658326) +zone = ('iaz082', 0.0022334469260041887) + +[fips1917592622] +centroid = (0.71753293784253347, -1.6459248796583259) +description = Lincoln township, IA +station = ('kcsq', 0.0018477074781688024) +zone = ('iaz082', 0.0016773417921335) + +[fips1917593084] +centroid = (0.71751124339993111, -1.6418422578319385) +description = New Hope township, IA +station = ('kcsq', 0.0042249892028837265) +zone = ('iaz082', 0.0026814339108066749) + +[fips1917593351] +centroid = (0.71452721907121142, -1.6479742278127254) +description = Platte township, IA +station = ('kcsq', 0.0015329273824282405) +zone = ('iaz082', 0.0028236184871455504) + +[fips1917593378] +centroid = (0.71446464901752738, -1.6417207131028297) +description = Pleasant township, IA +station = ('kcsq', 0.0042346556290658822) +zone = ('iaz082', 0.0028491945558461016) + +[fips1917593753] +centroid = (0.71461767948634236, -1.6436903171637052) +description = Sand Creek township, IA +station = ('kcsq', 0.002803591918712552) +zone = ('iaz082', 0.0016906040139474704) + +[fips1917593954] +centroid = (0.71770865759162428, -1.648002886119043) +description = Spaulding township, IA +station = ('kcsq', 0.0019800220105144644) +zone = ('iaz082', 0.0028939227398642542) + +[fips1917594272] +centroid = (0.71604211250206495, -1.6438099071240517) +description = Union township, IA +station = ('kcsq', 0.0024193462717586626) +zone = ('iaz082', 0.00077768114002745026) + +[fips1917670] +centroid = (0.75438327861707355, -1.6369915515083331) +description = Crystal Lake city, IA +station = ('kfxy', 0.0021997964142273685) +zone = ('iaz016', 0.0025738040445929429) + +[fips19177] +centroid = (0.71129352539299395, -1.6048816122486722) +description = Van Buren County, IA +station = ('kffl', 0.0051796703844467417) +zone = ('iaz098', 4.2073201039281707e-05) + +[fips1917760] +centroid = (0.72035127806536137, -1.6558055550730089) +description = Cumberland city, IA +station = ('kaio', 0.0032294200025442853) +zone = ('iaz070', 0.0012650848960891227) + +[fips1917790294] +centroid = (0.71032130718646302, -1.6016037093805018) +description = Bonaparte township, IA +station = ('kmpz', 0.005479924593824452) +zone = ('iaz098', 0.0026255189109913174) + +[fips1917790570] +centroid = (0.71296338660813197, -1.6019600881604663) +description = Cedar township, IA +station = ('kmpz', 0.0039958851624914719) +zone = ('iaz098', 0.0027500063161983034) + +[fips1917790651] +centroid = (0.711630583378139, -1.6078817459663879) +description = Chequest township, IA +station = ('kffl', 0.0051753396566326096) +zone = ('iaz098', 0.0023380564191847644) + +[fips1917790990] +centroid = (0.70971969219330056, -1.6058008771656975) +description = Des Moines township, IA +station = ('kffl', 0.0067443814069427111) +zone = ('iaz098', 0.0017228440330430837) + +[fips1917791320] +centroid = (0.70922843436874172, -1.6017978423532011) +description = Farmington township, IA +station = ('keok', 0.0054216744172607446) +zone = ('iaz098', 0.0030797539629854138) + +[fips1917791851] +centroid = (0.71168756837821667, -1.6020094984315902) +description = Harrisburg township, IA +station = ('kmpz', 0.0047112232774602202) +zone = ('iaz098', 0.002175414531451798) + +[fips1917791911] +centroid = (0.71058356035986769, -1.6036188665348543) +description = Henry township, IA +station = ('kffl', 0.0060285182258234191) +zone = ('iaz098', 0.0011507284044266946) + +[fips1917792166] +centroid = (0.70968263885328065, -1.607559436013422) +description = Jackson township, IA +station = ('kffl', 0.0069669871859506455) +zone = ('iaz098', 0.0026122441356251232) + +[fips1917792505] +centroid = (0.71301789324067177, -1.6057538929022339) +description = Lick Creek township, IA +station = ('kffl', 0.0034494418739416926) +zone = ('iaz098', 0.0018755599160973251) + +[fips1917794275] +centroid = (0.71328971081837744, -1.603957320783401) +description = Union township, IA +station = ('kffl', 0.0033530154386634276) +zone = ('iaz098', 0.0021178819006308063) + +[fips1917794323] +centroid = (0.71138122818790661, -1.605542987315423) +description = Van Buren township, IA +station = ('kffl', 0.0050773946602324311) +zone = ('iaz098', 0.00054976706443901537) + +[fips1917794341] +centroid = (0.70952791541509141, -1.60394976350774) +description = Vernon township, IA +station = ('kffl', 0.007017456437840853) +zone = ('iaz098', 0.001872609599550435) + +[fips1917794359] +centroid = (0.71302506654389752, -1.6077676537931851) +description = Village township, IA +station = ('kffl', 0.0038662566146543524) +zone = ('iaz098', 0.0028280437807607296) + +[fips1917794572] +centroid = (0.71168509001067881, -1.6030593837898348) +description = Washington township, IA +station = ('kffl', 0.0050929649185498084) +zone = ('iaz098', 0.0014018016162896858) + +[fips1917850] +centroid = (0.72407771309800206, -1.6363575432042539) +description = Cumming city, IA +station = ('kdsm', 0.0014283648674187667) +zone = ('iaz073', 0.0036850293329023578) + +[fips1917895] +centroid = (0.75013425709980086, -1.6534853841785777) +description = Curlew city, IA +station = ('kaxa', 0.006277018899001569) +zone = ('iaz015', 0.0019430918215794278) + +[fips19179] +centroid = (0.71613063560172618, -1.6128497209624346) +description = Wapello County, IA +station = ('kotm', 0.0013128318853083982) +zone = ('iaz086', 1.1573963175048935e-05) + +[fips1917940] +centroid = (0.74115352580732397, -1.6698560315102162) +description = Cushing city, IA +station = ('kckp', 0.0049029015623111719) +zone = ('iaz032', 0.0024945415467558111) + +[fips1917985] +centroid = (0.75205513156796078, -1.6502325791450507) +description = Cylinder city, IA +station = ('kaxa', 0.003630522638438223) +zone = ('iaz015', 0.0016221756452762459) + +[fips1917990015] +centroid = (0.71466466374980597, -1.6159438755669553) +description = Adams township, IA +station = ('kotm', 0.003216943635762345) +zone = ('iaz086', 0.0027512001245613891) + +[fips1917990027] +centroid = (0.7155037831475799, -1.6112851554610694) +description = Agency township, IA +station = ('kotm', 0.0025042980774961422) +zone = ('iaz086', 0.001331485004283818) + +[fips1917990516] +centroid = (0.7169296647865816, -1.6150601106469153) +description = Cass township, IA +station = ('kotm', 0.0012017244146260311) +zone = ('iaz086', 0.0018532771278139133) + +[fips1917990633] +centroid = (0.71589011177750883, -1.6136239141120343) +description = Center township, IA +station = ('kotm', 0.0014410971560939513) +zone = ('iaz086', 0.0006271277572118967) + +[fips1917990789] +centroid = (0.71774572838493667, -1.6157608777948835) +description = Columbia township, IA +station = ('kotm', 0.0017117118895858573) +zone = ('iaz086', 0.0027314527276168228) + +[fips1917990795] +centroid = (0.71766577485190275, -1.6098529731834679) +description = Competine township, IA +station = ('kotm', 0.0028108183471263096) +zone = ('iaz086', 0.0027380505138040532) + +[fips1917990870] +centroid = (0.71650378699580253, -1.6114889575578246) +description = Dahlonega township, IA +station = ('kotm', 0.0017644474415835526) +zone = ('iaz086', 0.001096292036065238) + +[fips1917991737] +centroid = (0.71436774833745664, -1.6139072683160953) +description = Green township, IA +station = ('kotm', 0.0029743466007991935) +zone = ('iaz086', 0.00192461298234459) + +[fips1917991950] +centroid = (0.71752473479504908, -1.6118276212458817) +description = Highland township, IA +station = ('kotm', 0.0013174292604922059) +zone = ('iaz086', 0.001603132938673436) + +[fips1917992313] +centroid = (0.71448653544634744, -1.61205596267192) +description = Keokuk township, IA +station = ('kotm', 0.0030609739360856142) +zone = ('iaz086', 0.0017391029393553606) + +[fips1917993381] +centroid = (0.71616704316992275, -1.6097518313533148) +description = Pleasant township, IA +station = ('kotm', 0.0030956876416208538) +zone = ('iaz086', 0.002337601417552453) + +[fips1917993453] +centroid = (0.71592273198122858, -1.6159588504919373) +description = Polk township, IA +station = ('kotm', 0.0022938022239248498) +zone = ('iaz086', 0.0023535662511213647) + +[fips1917993621] +centroid = (0.71765436039859476, -1.6139019276085844) +description = Richland township, IA +station = ('kotm', 0.00041543236831545759) +zone = ('iaz086', 0.0017279880498588852) + +[fips1917994575] +centroid = (0.71451702634837977, -1.6097859699934838) +description = Washington township, IA +station = ('kotm', 0.0040011608169372038) +zone = ('iaz086', 0.0028136385024407863) + +[fips1918075] +centroid = (0.74567150256232895, -1.644049889896201) +description = Dakota City city, IA +station = ('kfod', 0.0030390655587747293) +zone = ('iaz024', 0.00092674950830350946) + +[fips19181] +centroid = (0.72146272118632382, -1.6330062492410369) +description = Warren County, IA +station = ('kdsm', 0.0036825914081154831) +zone = ('iaz073', 5.8032250397211025e-05) + +[fips1918190045] +centroid = (0.72398276718669352, -1.6322745024988456) +description = Allen township, IA +station = ('kdsm', 0.0020935180026229504) +zone = ('iaz073', 0.0026133841894813957) + +[fips1918190189] +centroid = (0.72092351916721276, -1.6297236339838856) +description = Belmont township, IA +station = ('koxv', 0.00340552660603613) +zone = ('iaz073', 0.0024766699274116279) + +[fips1918191764] +centroid = (0.72360711997178673, -1.6339312213847161) +description = Greenfield township, IA +station = ('kdsm', 0.0014387366381026472) +zone = ('iaz073', 0.0023069374390008003) + +[fips1918192036] +centroid = (0.72190968255446708, -1.6330329004187147) +description = Indianola city, IA +station = ('kdsm', 0.0032620087609059041) +zone = ('iaz073', 0.00049357674181047038) + +[fips1918192169] +centroid = (0.72063866397999476, -1.6360869299037319) +description = Jackson township, IA +station = ('ki75', 0.004256816669800375) +zone = ('iaz073', 0.0024790877458406892) + +[fips1918192262] +centroid = (0.72237212499307557, -1.636089181378467) +description = Jefferson township, IA +station = ('kdsm', 0.002702277388027894) +zone = ('iaz073', 0.0025382536297241911) + +[fips1918192493] +centroid = (0.71914625038990698, -1.6318765674293909) +description = Liberty township, IA +station = ('kcnc', 0.0034545855717517697) +zone = ('iaz073', 0.0024134299075948312) + +[fips1918192625] +centroid = (0.72198638977509233, -1.6316022191242698) +description = Lincoln township, IA +station = ('kdsm', 0.0037637712013561843) +zone = ('iaz073', 0.0011626200436040167) + +[fips1918192652] +centroid = (0.72370311308064639, -1.6359274242633921) +description = Linn township, IA +station = ('kdsm', 0.001462986242990801) +zone = ('iaz073', 0.0031917700433822843) + +[fips1918193228] +centroid = (0.72066644962168647, -1.6317703117845295) +description = Otter township, IA +station = ('kdsm', 0.0047960251705390488) +zone = ('iaz073', 0.0011655055588941097) + +[fips1918193264] +centroid = (0.72309737911044925, -1.6310802784114611) +description = Palmyra township, IA +station = ('kdsm', 0.0033101172575486478) +zone = ('iaz073', 0.0021891465567233934) + +[fips1918193624] +centroid = (0.72366841593511677, -1.6299487290975156) +description = Richland township, IA +station = ('kikv', 0.00458212625603833) +zone = ('iaz073', 0.0031844428400765088) + +[fips1918193999] +centroid = (0.71909340182015657, -1.6338432916970007) +description = Squaw township, IA +station = ('ki75', 0.0027818623321182929) +zone = ('iaz073', 0.0024202557970295223) + +[fips1918194278] +centroid = (0.72221497554722591, -1.6295593635946881) +description = Union township, IA +station = ('koxv', 0.0035627507489346807) +zone = ('iaz073', 0.0026696257952258237) + +[fips1918194371] +centroid = (0.71912865747104693, -1.6359220835558812) +description = Virginia township, IA +station = ('ki75', 0.0027552539021367902) +zone = ('iaz083', 0.0031184160234809253) + +[fips1918194716] +centroid = (0.71927557928747976, -1.6296852192870495) +description = White Breast township, IA +station = ('kcnc', 0.0031103391551603825) +zone = ('iaz084', 0.0032371725594125705) + +[fips1918194725] +centroid = (0.72062536457109461, -1.6338205326035546) +description = White Oak township, IA +station = ('ki75', 0.0042651012426727268) +zone = ('iaz073', 0.0010266587768130578) + +[fips1918255] +centroid = (0.72757170518086189, -1.6403353056491814) +description = Dallas Center city, IA +station = ('kpro', 0.0033883519671060705) +zone = ('iaz059', 0.00072427634295698154) + +[fips19183] +centroid = (0.72133412532703689, -1.6009041639630099) +description = Washington County, IA +station = ('kawg', 0.0011101446081461103) +zone = ('iaz077', 0.00014314721539751454) + +[fips1918345] +centroid = (0.73490748110662685, -1.6447698033060636) +description = Dana city, IA +station = ('kpro', 0.0049420202622622077) +zone = ('iaz046', 0.0023978332416672216) + +[fips1918390] +centroid = (0.73716480269469364, -1.6706569281973715) +description = Danbury city, IA +station = ('kdns', 0.0062205584319028505) +zone = ('iaz032', 0.0037541804005833219) + +[fips1918390339] +centroid = (0.7192521395156255, -1.6016757565720241) +description = Brighton township, IA +station = ('kawg', 0.0018562697754746947) +zone = ('iaz077', 0.0022914604396184414) + +[fips1918390573] +centroid = (0.72227464835435162, -1.6016873630115498) +description = Cedar township, IA +station = ('kawg', 0.0022078840996601966) +zone = ('iaz077', 0.0010757676818482227) + +[fips1918390696] +centroid = (0.71913387600551026, -1.6037803967571265) +description = Clay township, IA +station = ('kffl', 0.0029449391887083546) +zone = ('iaz087', 0.0030929151908057522) + +[fips1918390849] +centroid = (0.71918984871462177, -1.5977024447166888) +description = Crawford township, IA +station = ('kawg', 0.0021188893027180898) +zone = ('iaz077', 0.0032282591925884788) + +[fips1918391089] +centroid = (0.72057839776092347, -1.6038152684355813) +description = Dutch Creek township, IA +station = ('kawg', 0.0029536447503985359) +zone = ('iaz077', 0.002438566795405093) + +[fips1918391236] +centroid = (0.723732940757563, -1.6006245622168402) +description = English River township, IA +station = ('kawg', 0.0032505535644159621) +zone = ('iaz077', 0.0022935626788128274) + +[fips1918391431] +centroid = (0.72064616889577826, -1.6019166120087993) +description = Franklin township, IA +station = ('kawg', 0.001530885291402332) +zone = ('iaz077', 0.0011677135766483351) + +[fips1918391953] +centroid = (0.72241722430094713, -1.5977711234227547) +description = Highland township, IA +station = ('kawg', 0.0024659113278814805) +zone = ('iaz077', 0.0024592525448027319) + +[fips1918392073] +centroid = (0.72369351376976043, -1.5980828915870386) +description = Iowa township, IA +station = ('kiow', 0.0029504315538312217) +zone = ('iaz077', 0.0030263694826595253) + +[fips1918392172] +centroid = (0.72223618129763767, -1.5997248624407296) +description = Jackson township, IA +station = ('kawg', 0.0017103284911689528) +zone = ('iaz077', 0.0011210084217511008) + +[fips1918392511] +centroid = (0.72374849164119825, -1.6032416485236207) +description = Lime Creek township, IA +station = ('kawg', 0.0040867957815560385) +zone = ('iaz077', 0.0029546044177943373) + +[fips1918392868] +centroid = (0.71909834110193971, -1.5999563454594217) +description = Marion township, IA +station = ('kawg', 0.0014327523070711023) +zone = ('iaz077', 0.0024242265507050695) + +[fips1918393195] +centroid = (0.72076450221906363, -1.5977602325682223) +description = Oregon township, IA +station = ('kawg', 0.0016137317353169651) +zone = ('iaz077', 0.0023667200733087932) + +[fips1918393819] +centroid = (0.72211559649961743, -1.603913076686863) +description = Seventy-Six township, IA +station = ('kawg', 0.0034150614388627925) +zone = ('iaz077', 0.0024467399414169217) + +[fips1918394578] +centroid = (0.72082647886080187, -1.5999346684701121) +description = Washington township, IA +station = ('kawg', 0.00029871237728101824) +zone = ('iaz077', 0.00088414670040062469) + +[fips1918435] +centroid = (0.71314217813670622, -1.5937396921033282) +description = Danville city, IA +station = ('kmpz', 0.0030014641197223415) +zone = ('iaz089', 0.0020729721891935295) + +[fips19185] +centroid = (0.71104684055651701, -1.6289613963396623) +description = Wayne County, IA +station = ('kcnc', 0.005139608132714385) +zone = ('iaz095', 6.945045026968137e-05) + +[fips1918590225] +centroid = (0.71156209665829084, -1.6299865678356988) +description = Benton township, IA +station = ('kcnc', 0.0046161726274240068) +zone = ('iaz095', 0.00099454634638551555) + +[fips1918590699] +centroid = (0.7116020297915765, -1.6321180511846969) +description = Clay township, IA +station = ('kcnc', 0.0049585737432340255) +zone = ('iaz095', 0.0025238263544126406) + +[fips1918590747] +centroid = (0.70888278936367666, -1.6298234493638075) +description = Clinton township, IA +station = ('kcnc', 0.0072867967131600431) +zone = ('iaz095', 0.0022735656707730924) + +[fips1918590840] +centroid = (0.7116710575634928, -1.6279744999141221) +description = Corydon township, IA +station = ('kcnc', 0.0046518492983346569) +zone = ('iaz095', 0.00092778568050383078) + +[fips1918591617] +centroid = (0.7086979589958905, -1.6319156278980507) +description = Grand River township, IA +station = ('klwd', 0.0052967745141054463) +zone = ('iaz095', 0.0032881799508628685) + +[fips1918591998] +centroid = (0.70879297472036917, -1.6279037966261241) +description = Howard township, IA +station = ('ktvk', 0.005072227503451196) +zone = ('iaz095', 0.0023620782645170243) + +[fips1918592175] +centroid = (0.70985992939869835, -1.6280030360473923) +description = Jackson township, IA +station = ('kcnc', 0.0064152612185083852) +zone = ('iaz095', 0.0013495054391727559) + +[fips1918592265] +centroid = (0.70998246896548078, -1.6319219459899428) +description = Jefferson township, IA +station = ('kcnc', 0.006438052360065903) +zone = ('iaz095', 0.0025427697078263417) + +[fips1918592994] +centroid = (0.7088086303237594, -1.6259222196065795) +description = Monroe township, IA +station = ('ktvk', 0.00362436433660556) +zone = ('moz007', 0.0029902347068901185) + +[fips1918593627] +centroid = (0.71305564471239247, -1.6318747173803838) +description = Richman township, IA +station = ('kcnc', 0.0035703365050542197) +zone = ('iaz095', 0.0030400385798087706) + +[fips1918593951] +centroid = (0.71159544990029644, -1.6258184772358411) +description = South Fork township, IA +station = ('ktvk', 0.0037017569874259857) +zone = ('iaz095', 0.0023780113694520724) + +[fips1918594281] +centroid = (0.71309629343067138, -1.6278537754897617) +description = Union township, IA +station = ('kcnc', 0.0033287349483350015) +zone = ('iaz095', 0.0021970834957406897) + +[fips1918594413] +centroid = (0.70999877034069436, -1.625923074817913) +description = Walnut township, IA +station = ('ktvk', 0.0034218811042208658) +zone = ('iaz095', 0.0024642003116436056) + +[fips1918594440] +centroid = (0.70999421503134663, -1.6297930806348226) +description = Warren township, IA +station = ('kcnc', 0.0061751643452392637) +zone = ('iaz095', 0.001256786699376752) + +[fips1918594581] +centroid = (0.71293542643351504, -1.6300327667009991) +description = Washington township, IA +station = ('kcnc', 0.0032513722306422494) +zone = ('iaz095', 0.0020911790137369845) + +[fips1918594788] +centroid = (0.71305939717028421, -1.626225208764726) +description = Wright township, IA +station = ('kcnc', 0.0039980672938583414) +zone = ('iaz095', 0.0028450528232971005) + +[fips19187] +centroid = (0.74061994374840412, -1.6437363764026653) +description = Webster County, IA +station = ('kfod', 0.0020183687248846098) +zone = ('iaz035', 0.00012006788614948067) + +[fips1918790102] +centroid = (0.74340041032646387, -1.6433954263332882) +description = Badger township, IA +station = ('kfod', 0.00082144144209515975) +zone = ('iaz035', 0.0029096305613621845) + +[fips1918790405] +centroid = (0.73890742668634746, -1.6425636547716651) +description = Burnside township, IA +station = ('kebs', 0.0035874115762667756) +zone = ('iaz035', 0.001833629969182431) + +[fips1918790702] +centroid = (0.73897148026989556, -1.6444939540177859) +description = Clay township, IA +station = ('kfod', 0.0037007680955257641) +zone = ('iaz035', 0.0016208767004895893) + +[fips1918790771] +centroid = (0.74202887824036923, -1.6411449813424741) +description = Colfax township, IA +station = ('kebs', 0.0025486717358333523) +zone = ('iaz035', 0.0024713694289359468) + +[fips1918790831] +centroid = (0.74212537749471186, -1.6426223152878248) +description = Cooper township, IA +station = ('kfod', 0.0010135705887476603) +zone = ('iaz035', 0.0018326314487881177) + +[fips1918790915] +centroid = (0.73734413527533604, -1.6419510267509227) +description = Dayton township, IA +station = ('kebs', 0.0042382770320613826) +zone = ('iaz035', 0.0034384071529146433) + +[fips1918790936] +centroid = (0.74338765196963186, -1.6453381697769756) +description = Deer Creek township, IA +station = ('kfod', 0.0013528908107814819) +zone = ('iaz035', 0.0031025599103697643) + +[fips1918791068] +centroid = (0.74215009135692012, -1.6451969726404894) +description = Douglas township, IA +station = ('kfod', 0.0011328005385631867) +zone = ('iaz035', 0.0019481750261943595) + +[fips1918791191] +centroid = (0.74062188106387394, -1.6446762711114491) +description = Elkhorn township, IA +station = ('kfod', 0.0021146667775412548) +zone = ('iaz035', 0.00066998679300381574) + +[fips1918791370] +centroid = (0.74193260587882914, -1.6436754644117708) +description = Fort Dodge city, IA +station = ('kfod', 0.00071185292280740277) +zone = ('iaz035', 0.0014299830614114553) + +[fips1918791497] +centroid = (0.74058889434101116, -1.6464076900893052) +description = Fulton township, IA +station = ('kfod', 0.0028050536926771215) +zone = ('iaz035', 0.0019394715819760944) + +[fips1918791596] +centroid = (0.73745065271958521, -1.6465340868337346) +description = Gowrie township, IA +station = ('kfod', 0.0055635377413628187) +zone = ('iaz035', 0.003669384649648515) + +[fips1918791842] +centroid = (0.7373311151191162, -1.6396744541812063) +description = Hardin township, IA +station = ('kebs', 0.0034283220661144903) +zone = ('iaz047', 0.0036589379584187716) + +[fips1918792178] +centroid = (0.74339328938311566, -1.6473461187215175) +description = Jackson township, IA +station = ('kfod', 0.0027120602417432384) +zone = ('iaz035', 0.0039043662820380316) + +[fips1918792277] +centroid = (0.74204434185754176, -1.6473125211334168) +description = Johnson township, IA +station = ('kfod', 0.002648796076691994) +zone = ('iaz035', 0.0030248610311407373) + +[fips1918792715] +centroid = (0.73745461461698725, -1.6445003593761409) +description = Lost Grove township, IA +station = ('kfod', 0.0052080453652327925) +zone = ('iaz035', 0.0030959973644098522) + +[fips1918793069] +centroid = (0.74353563843690829, -1.6411464474190458) +description = Newark township, IA +station = ('kfod', 0.0021567193060969448) +zone = ('iaz035', 0.0036001932805314039) + +[fips1918793220] +centroid = (0.74028250179082367, -1.6423865911190505) +description = Otho township, IA +station = ('kfod', 0.00257823398577857) +zone = ('iaz035', 0.0010541741532540656) + +[fips1918793423] +centroid = (0.74098543314706433, -1.6425938140611396) +description = Pleasant Valley township, IA +station = ('kfod', 0.0018795257653815664) +zone = ('iaz035', 0.0010002539086680254) + +[fips1918793684] +centroid = (0.73897168970940585, -1.6465275418490395) +description = Roland township, IA +station = ('kfod', 0.0041788074309957049) +zone = ('iaz035', 0.0025419733931697449) + +[fips1918794053] +centroid = (0.73942350309286953, -1.6418565695318046) +description = Sumner township, IA +station = ('kebs', 0.0028902866389790205) +zone = ('iaz035', 0.0017866503337406335) + +[fips1918794584] +centroid = (0.74043214632088961, -1.6405884831104758) +description = Washington township, IA +station = ('kebs', 0.0017105644384238557) +zone = ('iaz035', 0.0023587947196433054) + +[fips1918794632] +centroid = (0.73931513559961326, -1.6402379860900902) +description = Webster township, IA +station = ('kebs', 0.0019339431697585404) +zone = ('iaz036', 0.0035312014561853121) + +[fips1918794800] +centroid = (0.73857096211314799, -1.6405346571563442) +description = Yell township, IA +station = ('kebs', 0.002625072659903604) +zone = ('iaz035', 0.0030817327328403372) + +[fips19189] +centroid = (0.7570910871383727, -1.636132517903794) +description = Winnebago County, IA +station = ('kfxy', 0.0030238278952826668) +zone = ('iaz006', 0.00011832763098863162) + +[fips1918990396] +centroid = (0.75722856672355232, -1.6390654389920154) +description = Buffalo township, IA +station = ('kfxy', 0.0045958871464769364) +zone = ('iaz006', 0.0022543330604451947) + +[fips1918990636] +centroid = (0.75736154335926176, -1.6330580506132359) +description = Center township, IA +station = ('kfxy', 0.0029329858490644081) +zone = ('iaz006', 0.0021351691287203431) + +[fips1918991152] +centroid = (0.75860287388315772, -1.6369989517043617) +description = Eden township, IA +station = ('kfxy', 0.0046491147227450177) +zone = ('iaz006', 0.001696063426578533) + +[fips1918991365] +centroid = (0.75552400836288458, -1.6347810221975123) +description = Forest township, IA +station = ('kfxy', 0.0011744450239233783) +zone = ('iaz006', 0.0017805003265000646) + +[fips1918991716] +centroid = (0.75570524335241174, -1.639062105413144) +description = Grant township, IA +station = ('kfxy', 0.0038921997563420864) +zone = ('iaz006', 0.0026356917044665206) + +[fips1918992316] +centroid = (0.75733815594728504, -1.6368355539797901) +description = King township, IA +station = ('kfxy', 0.0035139248798691574) +zone = ('iaz006', 0.00067960738565225529) + +[fips1918992628] +centroid = (0.75860367673461371, -1.6390652819123828) +description = Lincoln township, IA +station = ('kfxy', 0.005521101414975766) +zone = ('iaz006', 0.0027154933199519966) + +[fips1918992640] +centroid = (0.75558830629252804, -1.6368422560441176) +description = Linden township, IA +station = ('kfxy', 0.0023505019201112897) +zone = ('iaz006', 0.001621070981027436) + +[fips1918992706] +centroid = (0.75862453341917491, -1.6347920003185072) +description = Logan township, IA +station = ('kfxy', 0.0041610949959760375) +zone = ('iaz006', 0.0017656544256861426) + +[fips1918993038] +centroid = (0.75581263346128691, -1.633056811429467) +description = Mount Valley township, IA +station = ('kfxy', 0.0014686465634064724) +zone = ('iaz006', 0.0024691863332044848) + +[fips1918993105] +centroid = (0.75726659744795322, -1.6348840140766725) +description = Newton township, IA +station = ('kfxy', 0.0028385155740932324) +zone = ('iaz006', 0.00081127686427522711) + +[fips1918993141] +centroid = (0.75860589330276373, -1.6328830115425534) +description = Norway township, IA +station = ('kfxy', 0.0041765606568238949) +zone = ('iaz006', 0.0027122480348175503) + +[fips1919000] +centroid = (0.72525593251614584, -1.5813380631170648) +description = Davenport city, IA +station = ('kdvn', 0.0011247516189702121) +zone = ('iaz068', 0.0014700783698417864) + +[fips1919090] +centroid = (0.70930446091095856, -1.6373387847630174) +description = Davis City city, IA +station = ('klwd', 0.0011636441618019298) +zone = ('iaz094', 0.0017377525384288084) + +[fips19191] +centroid = (0.75560520107968732, -1.6030986711512973) +description = Winneshiek County, IA +station = ('kdeh', 0.0015016891330857675) +zone = ('iaz010', 9.9229518810191078e-05) + +[fips1919135] +centroid = (0.73028731532391755, -1.6444644928600123) +description = Dawson city, IA +station = ('kpro', 0.00082056175978280886) +zone = ('iaz059', 0.0036209758341622569) + +[fips1919180] +centroid = (0.7376155688806062, -1.641851106651246) +description = Dayton city, IA +station = ('kebs', 0.0039839174700519843) +zone = ('iaz035', 0.0032226440194561288) + +[fips1919190273] +centroid = (0.75273718878634766, -1.5998877540198184) +description = Bloomfield township, IA +station = ('kdeh', 0.0028290125193057474) +zone = ('iaz010', 0.0036126308789453166) + +[fips1919190288] +centroid = (0.75721451682307384, -1.6041151334543662) +description = Bluffton township, IA +station = ('kdeh', 0.0028522667769889424) +zone = ('iaz010', 0.0018475726202247023) + +[fips1919190414] +centroid = (0.75857458209598283, -1.6041542637361961) +description = Burr Oak township, IA +station = ('kdeh', 0.0038655364729542978) +zone = ('iaz010', 0.0031307085388828353) + +[fips1919190447] +centroid = (0.75417694579290284, -1.6044488229540552) +description = Calmar township, IA +station = ('kdeh', 0.0027786285313004936) +zone = ('iaz010', 0.0017535542332700622) + +[fips1919190462] +centroid = (0.75721572110025759, -1.6020339504944108) +description = Canoe township, IA +station = ('kdeh', 0.0019179566527033022) +zone = ('iaz010', 0.0017883627633281309) + +[fips1919190924] +centroid = (0.75570613347033022, -1.6019177639261053) +description = Decorah township, IA +station = ('kdeh', 0.00068757242382566533) +zone = ('iaz010', 0.00078257447935653772) + +[fips1919191434] +centroid = (0.7541921999705653, -1.5998369649385853) +description = Frankville township, IA +station = ('kdeh', 0.001525698078496424) +zone = ('iaz010', 0.0026653956752120743) + +[fips1919191485] +centroid = (0.75859863273307537, -1.6061342175995359) +description = Fremont township, IA +station = ('kfka', 0.0041898055888956471) +zone = ('mnz095', 0.0037487932868609034) + +[fips1919191578] +centroid = (0.75574390239534339, -1.5995968250868036) +description = Glenwood township, IA +station = ('kdeh', 0.0011005243875028166) +zone = ('iaz010', 0.002465295841238961) + +[fips1919191917] +centroid = (0.75860886036249209, -1.6022087975788755) +description = Hesper township, IA +station = ('kdeh', 0.0032823497317048516) +zone = ('iaz010', 0.0030958523879100145) + +[fips1919191956] +centroid = (0.75859954030428633, -1.599957253030633) +description = Highland township, IA +station = ('kdeh', 0.0032608457779510248) +zone = ('iaz010', 0.0037454649947540868) + +[fips1919192181] +centroid = (0.75268772615534618, -1.6060879838276507) +description = Jackson township, IA +station = ('kdeh', 0.0045879315582479296) +zone = ('iaz010', 0.0036631139068519572) + +[fips1919192631] +centroid = (0.75560726056820471, -1.6060152734110127) +description = Lincoln township, IA +station = ('kdeh', 0.0036192571065054124) +zone = ('iaz010', 0.0022133842395158621) + +[fips1919192787] +centroid = (0.75570267771841126, -1.6040097330208383) +description = Madison township, IA +station = ('kdeh', 0.0021716315365008865) +zone = ('iaz010', 0.00076589583677677564) + +[fips1919192937] +centroid = (0.75268083210480086, -1.601941849469783) +description = Military township, IA +station = ('kdeh', 0.0028317002277492534) +zone = ('iaz010', 0.0029793998173704879) + +[fips1919193201] +centroid = (0.75721498806197185, -1.6061308491140796) +description = Orleans township, IA +station = ('kdeh', 0.00410206547668613) +zone = ('iaz010', 0.0028277121778829957) + +[fips1919193384] +centroid = (0.75717852813389763, -1.5999836249556305) +description = Pleasant township, IA +station = ('kdeh', 0.001906361953434886) +zone = ('iaz010', 0.0027096005143103781) + +[fips1919193984] +centroid = (0.75419185090471486, -1.6019303128434272) +description = Springfield township, IA +station = ('kdeh', 0.0014007035510900942) +zone = ('iaz010', 0.0015685557990561959) + +[fips1919194056] +centroid = (0.75419656329369522, -1.6060871111630246) +description = Sumner township, IA +station = ('kdeh', 0.0038738226485433244) +zone = ('iaz010', 0.0026470095785679796) + +[fips1919194587] +centroid = (0.75268151278320905, -1.6040245683194803) +description = Washington township, IA +station = ('kdeh', 0.0035065891577166206) +zone = ('iaz010', 0.0029818028349817595) + +[fips19193] +centroid = (0.7399012695223105, -1.6764462725926994) +description = Woodbury County, IA +station = ('ksux', 0.0042579684050281482) +zone = ('iaz031', 0.00012444790400462509) + +[fips1919360] +centroid = (0.7110836146438565, -1.6376916903377705) +description = Decatur City city, IA +station = ('klwd', 0.0020960544373847703) +zone = ('iaz094', 0.00061996038591967113) + +[fips1919390078] +centroid = (0.74194655105955265, -1.6763092991530026) +description = Arlington township, IA +station = ('ksux', 0.0048841512947798852) +zone = ('iaz031', 0.0021067289472876359) + +[fips1919390123] +centroid = (0.74205531997853691, -1.6782491628034244) +description = Banner township, IA +station = ('ksux', 0.0037335570322824057) +zone = ('iaz031', 0.0026414412379751765) + +[fips1919390810] +centroid = (0.74208551417459645, -1.6803188440436092) +description = Concord township, IA +station = ('ksux', 0.0027376027028259459) +zone = ('iaz020', 0.0039090429639109707) + +[fips1919391362] +centroid = (0.7405603931143262, -1.6788984427384588) +description = Floyd township, IA +station = ('ksux', 0.0025802889158574225) +zone = ('iaz031', 0.0020495524733437328) + +[fips1919391623] +centroid = (0.73904441757933648, -1.6788717566541957) +description = Grange township, IA +station = ('ksux', 0.0025572456666031989) +zone = ('iaz031', 0.0020600774037671898) + +[fips1919391719] +centroid = (0.73890365677516312, -1.6744375906098716) +description = Grant township, IA +station = ('ksux', 0.0057996630924670766) +zone = ('iaz031', 0.0016642092273879345) + +[fips1919392295] +centroid = (0.74053257256604943, -1.6727457906060359) +description = Kedron township, IA +station = ('kckp', 0.0064256764845290236) +zone = ('iaz031', 0.0027139297482718138) + +[fips1919392373] +centroid = (0.7376640366739341, -1.6807416151483199) +description = Lakeport township, IA +station = ('ksux', 0.0023315071622878997) +zone = ('iaz031', 0.0039393186291825279) + +[fips1919392496] +centroid = (0.7391782843329644, -1.6812195735639786) +description = Liberty township, IA +station = ('ksux', 0.0009136110426951194) +zone = ('iaz031', 0.0036944850281725198) + +[fips1919392661] +centroid = (0.73750084838887253, -1.6707679136845059) +description = Liston township, IA +station = ('kdns', 0.0065191331927034598) +zone = ('iaz032', 0.0035899847664366824) + +[fips1919392667] +centroid = (0.73777343391144912, -1.6748962631372957) +description = Little Sioux township, IA +station = ('ksux', 0.0057473545108278302) +zone = ('iaz031', 0.0023122530163291566) + +[fips1919392940] +centroid = (0.73906747337875522, -1.6731290823630665) +description = Miller township, IA +station = ('kckp', 0.0078144640558724023) +zone = ('iaz031', 0.0024666349910040038) + +[fips1919393015] +centroid = (0.73896547633726861, -1.6706826019906682) +description = Morgan township, IA +station = ('kckp', 0.0071728098552803826) +zone = ('iaz032', 0.002824036974451165) + +[fips1919393045] +centroid = (0.74050604356141914, -1.6766490623984884) +description = Moville township, IA +station = ('ksux', 0.0041765332691408056) +zone = ('iaz031', 0.00071439587572650004) + +[fips1919393222] +centroid = (0.73741159225092556, -1.6728978960503471) +description = Oto township, IA +station = ('kdns', 0.0076324686350765451) +zone = ('iaz031', 0.0034961525620801209) + +[fips1919393669] +centroid = (0.74069610991696122, -1.6706134171391194) +description = Rock township, IA +station = ('kckp', 0.0055259278263038482) +zone = ('iaz032', 0.0027990065969557315) + +[fips1919393720] +centroid = (0.74207809652527545, -1.674099817039733) +description = Rutland township, IA +station = ('klrj', 0.00574898443573384) +zone = ('iaz031', 0.0027648545421934917) + +[fips1919393925] +centroid = (0.74168206386470537, -1.6823483827109984) +description = Sioux City city, IA +station = ('ksux', 0.0019561532120046035) +zone = ('nez014', 0.0028769855719848682) + +[fips1919393929] +centroid = (0.73753329405966717, -1.6788868013923479) +description = Sloan township, IA +station = ('ksux', 0.0032931353524116081) +zone = ('iaz031', 0.002996457682501476) + +[fips1919394284] +centroid = (0.74196651762619537, -1.6721587491121275) +description = Union township, IA +station = ('kckp', 0.0050216744730207903) +zone = ('iaz031', 0.0037227179502090577) + +[fips1919394674] +centroid = (0.73904679122711914, -1.6768257944385454) +description = West Fork township, IA +station = ('ksux', 0.0040337666086399087) +zone = ('iaz031', 0.00088316798810584294) + +[fips1919394752] +centroid = (0.73749479209636815, -1.6767054016267429) +description = Willow township, IA +station = ('ksux', 0.0046406100979167475) +zone = ('iaz031', 0.0023641452954012545) + +[fips1919394770] +centroid = (0.74065518194600199, -1.6747545249487412) +description = Wolf Creek township, IA +station = ('klrj', 0.0066964191340541778) +zone = ('iaz031', 0.0014022436442008557) + +[fips1919394773] +centroid = (0.74042828914324277, -1.68064748954176) +description = Woodbury township, IA +station = ('ksux', 0.0013471000300662032) +zone = ('iaz031', 0.0032637730931882459) + +[fips1919405] +centroid = (0.75575580554084187, -1.6019460906198655) +description = Decorah city, IA +station = ('kdeh', 0.00072696800996284775) +zone = ('iaz010', 0.00077312982104150226) + +[fips1919450] +centroid = (0.73144534128261574, -1.6549776930489104) +description = Dedham city, IA +station = ('kcin', 0.0025193796548347021) +zone = ('iaz045', 0.0022772437413437858) + +[fips1919495] +centroid = (0.72572848041112326, -1.6122169518421241) +description = Deep River city, IA +station = ('kggi', 0.0051678606226639072) +zone = ('iaz062', 0.0027622169585278314) + +[fips19195] +centroid = (0.75701022603412782, -1.6274939235045855) +description = Worth County, IA +station = ('kmcw', 0.0040468231258811039) +zone = ('iaz007', 0.00017108305672576928) + +[fips1919585] +centroid = (0.72999125512290164, -1.664003087316946) +description = Defiance city, IA +station = ('kdns', 0.002812118720531651) +zone = ('iaz056', 0.0024800756726845487) + +[fips1919590132] +centroid = (0.75710300773716388, -1.6244456012462223) +description = Barton township, IA +station = ('kmcw', 0.0051789293507282742) +zone = ('iaz007', 0.0023726446802007704) + +[fips1919590345] +centroid = (0.75710955272185887, -1.6308050574417141) +description = Bristol township, IA +station = ('kfxy', 0.0034796993120334071) +zone = ('iaz007', 0.0022499788292598927) + +[fips1919590357] +centroid = (0.75728958343420205, -1.6289123176810965) +description = Brookfield township, IA +station = ('kmcw', 0.0041802522332464558) +zone = ('iaz007', 0.00089912113604495786) + +[fips1919590891] +centroid = (0.75574713125445958, -1.628703541395973) +description = Danville township, IA +station = ('kmcw', 0.0026449095094086515) +zone = ('iaz007', 0.0015148642625709679) + +[fips1919590939] +centroid = (0.75840872345716592, -1.6244978913106123) +description = Deer Creek township, IA +station = ('kaum', 0.0041378894366160407) +zone = ('iaz007', 0.0026856731626046593) + +[fips1919591338] +centroid = (0.75582059216267594, -1.631029995475711) +description = Fertile township, IA +station = ('kfxy', 0.0025167820828587871) +zone = ('iaz007', 0.0027227020226618394) + +[fips1919591797] +centroid = (0.75860990756004321, -1.6265253530361914) +description = Grove township, IA +station = ('kael', 0.0043956305229953356) +zone = ('iaz007', 0.0017565343339887979) + +[fips1919591881] +centroid = (0.75865886404556171, -1.6286922316624197) +description = Hartland township, IA +station = ('kael', 0.0038108292931479998) +zone = ('iaz007', 0.0017340360953193835) + +[fips1919592310] +centroid = (0.7572493710482362, -1.6267128537577331) +description = Kensett township, IA +station = ('kmcw', 0.0044551815632427483) +zone = ('iaz007', 0.00074443160352618924) + +[fips1919592634] +centroid = (0.75571365583940631, -1.6266378744130674) +description = Lincoln township, IA +station = ('kmcw', 0.0031110944144669022) +zone = ('iaz007', 0.0015717656150769925) + +[fips1919593909] +centroid = (0.75850178441288219, -1.6306524283986272) +description = Silver Lake township, IA +station = ('kael', 0.003996003020823838) +zone = ('iaz007', 0.0025679644082637581) + +[fips1919594287] +centroid = (0.75570644762959549, -1.624602052560371) +description = Union township, IA +station = ('kmcw', 0.0041100503372014114) +zone = ('iaz007', 0.0026441093301616662) + +[fips1919630] +centroid = (0.74125643042002154, -1.5941926574040983) +description = Delaware city, IA +station = ('kmxo', 0.0047132561697505702) +zone = ('iaz041', 0.00034490294792130131) + +[fips1919675] +centroid = (0.74060882600106903, -1.5939373331878239) +description = Delhi city, IA +station = ('kmxo', 0.0040566640860353201) +zone = ('iaz041', 0.00084214175689455357) + +[fips19197] +centroid = (0.7458316714277845, -1.6359797492343671) +description = Wright County, IA +station = ('kcav', 0.00050546136579680584) +zone = ('iaz025', 6.1782881078772915e-06) + +[fips1919720] +centroid = (0.73301735933988699, -1.5814073701416616) +description = Delmar city, IA +station = ('kcwi', 0.0045893653754517875) +zone = ('iaz066', 0.0020168334562079234) + +[fips1919765] +centroid = (0.73473373357959071, -1.6636035814511643) +description = Deloit city, IA +station = ('kdns', 0.002162062578703433) +zone = ('iaz044', 0.0013400932247085878) + +[fips1919790186] +centroid = (0.74823249398695035, -1.6351940194584118) +description = Belmond township, IA +station = ('kcav', 0.0023234822387311277) +zone = ('iaz025', 0.0024688876626513989) + +[fips1919790261] +centroid = (0.74504669214340757, -1.6328995747171551) +description = Blaine township, IA +station = ('kcav', 0.00288298814264103) +zone = ('iaz025', 0.0024017089850854475) + +[fips1919790306] +centroid = (0.74811738952278128, -1.6390719490701255) +description = Boone township, IA +station = ('kcav', 0.0027230829172455403) +zone = ('iaz025', 0.0032152712222683201) + +[fips1919790918] +centroid = (0.74504852473912209, -1.6370171903950448) +description = Dayton township, IA +station = ('kcav', 0.0011358903697691422) +zone = ('iaz025', 0.0010899124015454288) + +[fips1919791101] +centroid = (0.74504915305765285, -1.6390792096398137) +description = Eagle Grove township, IA +station = ('kcav', 0.0021570151482741195) +zone = ('iaz025', 0.0024030230047790728) + +[fips1919791722] +centroid = (0.74668681294809169, -1.6348403808453726) +description = Grant township, IA +station = ('kcav', 0.0013650932005325861) +zone = ('iaz025', 0.0011993059188561851) + +[fips1919792076] +centroid = (0.74657263350842618, -1.632893431158188) +description = Iowa township, IA +station = ('kcav', 0.00271170853501103) +zone = ('iaz025', 0.0023894162335897891) + +[fips1919792367] +centroid = (0.7465782534686175, -1.6370151134532349) +description = Lake township, IA +station = ('kcav', 0.00057068294188082722) +zone = ('iaz025', 0.0010601407043857427) + +[fips1919792499] +centroid = (0.74660268807814556, -1.6387749812978987) +description = Liberty township, IA +station = ('kcav', 0.0017101215152064743) +zone = ('iaz025', 0.0021863242722007042) + +[fips1919792637] +centroid = (0.74504878653850992, -1.6349597090063315) +description = Lincoln township, IA +station = ('kcav', 0.0015837350405264582) +zone = ('iaz025', 0.0010891276588250222) + +[fips1919793144] +centroid = (0.74812103726091805, -1.6370055141423492) +description = Norway township, IA +station = ('kcav', 0.0020222004461565688) +zone = ('iaz025', 0.0024065162687706976) + +[fips1919793387] +centroid = (0.74812007732982932, -1.6328909178840652) +description = Pleasant township, IA +station = ('kcav', 0.0033350949358271192) +zone = ('iaz025', 0.0032238249209868963) + +[fips1919794143] +centroid = (0.74353293317656777, -1.6390808153427254) +description = Troy township, IA +station = ('kebs', 0.0029900394902948389) +zone = ('iaz025', 0.0032347932319880613) + +[fips1919794344] +centroid = (0.7434552834781466, -1.6331330125046091) +description = Vernon township, IA +station = ('kcav', 0.0036617686914767549) +zone = ('iaz025', 0.0031720345805341522) + +[fips1919794386] +centroid = (0.74341777635252126, -1.6353220044524606) +description = Wall Lake township, IA +station = ('kcav', 0.0028539074763126405) +zone = ('iaz025', 0.0024646440711415117) + +[fips1919794779] +centroid = (0.74365482697152707, -1.6371816702237529) +description = Woolstock township, IA +station = ('kcav', 0.0025184161170261027) +zone = ('iaz025', 0.0023486550784921185) + +[fips1919810] +centroid = (0.70970634042452285, -1.6465361288689595) +description = Delphos city, IA +station = ('kcsq', 0.0061799060168664793) +zone = ('iaz093', 0.0017830668161042094) + +[fips1919855] +centroid = (0.72121521604509864, -1.6114698462025154) +description = Delta city, IA +station = ('kooa', 0.0027235012080728525) +zone = ('iaz076', 0.0020030295225059525) + +[fips1919945] +centroid = (0.73331554884259031, -1.6642133994918114) +description = Denison city, IA +station = ('kdns', 0.00069550693254066018) +zone = ('iaz044', 0.00053536273059973398) + +[fips1919990] +centroid = (0.71094538456709855, -1.5941567559813847) +description = Denmark CDP, IA +station = ('kfsw', 0.0011801021416227423) +zone = ('iaz099', 0.0024611738840911641) + +[fips1920035] +centroid = (0.7447240680311763, -1.6115205480172858) +description = Denver city, IA +station = ('kalo', 0.0022554077682919189) +zone = ('iaz028', 0.001845502936251313) + +[fips1920125] +centroid = (0.71436912714756573, -1.6311233356841079) +description = Derby city, IA +station = ('kcnc', 0.0021521982285354515) +zone = ('iaz084', 0.0024213118507904513) + +[fips1921000] +centroid = (0.72560224074632651, -1.6339197894781157) +description = Des Moines city, IA +station = ('kdsm', 0.00096342935336734062) +zone = ('iaz060', 0.002027300205959441) + +[fips1921045] +centroid = (0.72494306479443327, -1.6407816561520865) +description = De Soto city, IA +station = ('kpro', 0.0054888781380798314) +zone = ('iaz059', 0.0026249198051022903) + +[fips1921180] +centroid = (0.72993887779204936, -1.5802881603055277) +description = De Witt city, IA +station = ('kdvn', 0.0036276859233717526) +zone = ('iaz066', 0.0013281228193023366) + +[fips1921225] +centroid = (0.72462417568680138, -1.644292351035888) +description = Dexter city, IA +station = ('kpro', 0.005487495630675682) +zone = ('iaz059', 0.0036725849721432886) + +[fips1921270] +centroid = (0.71228455824886128, -1.6465759572824901) +description = Diagonal city, IA +station = ('kcsq', 0.00360620475048437) +zone = ('iaz093', 0.0018488782268470995) + +[fips1921320] +centroid = (0.72525973733391513, -1.6451402145332144) +description = Diamondhead Lake CDP, IA +station = ('kpro', 0.0049834834843618279) +zone = ('iaz059', 0.0036630347848712291) + +[fips1921360] +centroid = (0.75282730013562815, -1.6584501128622158) +description = Dickens city, IA +station = ('kspw', 0.0025417643295222135) +zone = ('iaz014', 0.0018689999576778356) + +[fips1921405] +centroid = (0.74113896976136229, -1.6166218138083075) +description = Dike city, IA +station = ('kalo', 0.003266789107283312) +zone = ('iaz038', 0.0023914531796608456) + +[fips1921540] +centroid = (0.72853655809794937, -1.5844462152621865) +description = Dixon city, IA +station = ('kdvn', 0.0033915321463245953) +zone = ('iaz068', 0.002764874610613627) + +[fips1921675] +centroid = (0.75858704374684216, -1.6513313686289361) +description = Dolliver city, IA +station = ('kest', 0.0020490654297755629) +zone = ('iaz004', 0.0017057294925578842) + +[fips1921720] +centroid = (0.72765288044437226, -1.5825695848905645) +description = Donahue city, IA +station = ('kdvn', 0.0017658685459499889) +zone = ('iaz068', 0.001160973824690328) + +[fips1921810] +centroid = (0.70937430898762333, -1.5980511265946522) +description = Donnellson city, IA +station = ('kfsw', 0.0030476670368313119) +zone = ('iaz099', 0.0010916918791986476) + +[fips1921900] +centroid = (0.75535729451273403, -1.6795608650027607) +description = Doon city, IA +station = ('kshl', 0.0051797649594859385) +zone = ('iaz001', 0.0017960256727613487) + +[fips1922035] +centroid = (0.7128233239356595, -1.6069483787890062) +description = Douds CDP, IA +station = ('kffl', 0.0038151056255983965) +zone = ('iaz098', 0.0022272495349933193) + +[fips1922080] +centroid = (0.74912962812906037, -1.6237824808502195) +description = Dougherty city, IA +station = ('kmcw', 0.0054989799191242656) +zone = ('iaz018', 0.0039670973923164026) + +[fips1922215] +centroid = (0.7317816138695975, -1.6666907547386769) +description = Dow City city, IA +station = ('kdns', 0.0017346044054963475) +zone = ('iaz044', 0.0023986019864378986) + +[fips1922305] +centroid = (0.74458915407999726, -1.6319787215505102) +description = Dows city, IA +station = ('kcav', 0.0036863422028501642) +zone = ('iaz025', 0.0031983950144006397) + +[fips1922350] +centroid = (0.7120664968121172, -1.6141047872275438) +description = Drakesville city, IA +station = ('kotm', 0.0052800669159539793) +zone = ('iaz097', 0.0012965662674349952) + +[fips1922395] +centroid = (0.7418065582002501, -1.5831026782572937) +description = Dubuque city, IA +station = ('kdbq', 0.0017881628459719583) +zone = ('iaz042', 0.0023560626841317954) + +[fips1922620] +centroid = (0.74616653029807212, -1.622693831729288) +description = Dumont city, IA +station = ('kifa', 0.0062258916398174064) +zone = ('iaz027', 0.0023769755176845939) + +[fips1922710] +centroid = (0.75237925666334871, -1.6354550858079249) +description = Duncan CDP, IA +station = ('kfxy', 0.0023841321343805694) +zone = ('iaz016', 0.0005951162498916868) + +[fips1922755] +centroid = (0.74123192599732357, -1.6405493877352311) +description = Duncombe city, IA +station = ('kebs', 0.0017876034688870841) +zone = ('iaz035', 0.0024940098117577662) + +[fips1922800] +centroid = (0.74315859495860004, -1.5977816652114367) +description = Dundee city, IA +station = ('kiib', 0.0054724370233667713) +zone = ('iaz041', 0.0029823897897225315) + +[fips1922845] +centroid = (0.74294761955861899, -1.6086009786978424) +description = Dunkerton city, IA +station = ('kalo', 0.0030235863155490881) +zone = ('iaz039', 0.0025027143874167082) + +[fips1922890] +centroid = (0.73046345395202883, -1.6685566513353991) +description = Dunlap city, IA +station = ('kdns', 0.0036367712811202907) +zone = ('iaz055', 0.0040773690477355507) + +[fips1922935] +centroid = (0.74283083957836804, -1.5843150712221916) +description = Durango city, IA +station = ('kdbq', 0.0029705732378665878) +zone = ('iaz042', 0.0021255642681374969) + +[fips1922980] +centroid = (0.72608712811911558, -1.5867077954536282) +description = Durant city, IA +station = ('kmut', 0.0051519340920690264) +zone = ('iaz067', 0.0033355778115650714) + +[fips1923115] +centroid = (0.74141352750599354, -1.5904421193744875) +description = Dyersville city, IA +station = ('kmxo', 0.0043352496548301573) +zone = ('iaz042', 0.0031369822035397866) + +[fips1923160] +centroid = (0.73604201493359311, -1.6110976547395275) +description = Dysart city, IA +station = ('kvti', 0.0037515810125694909) +zone = ('iaz051', 0.0035362396411467985) + +[fips1923250] +centroid = (0.74467472757322251, -1.6389097032628599) +description = Eagle Grove city, IA +station = ('kcav', 0.0022698836444312591) +zone = ('iaz025', 0.0024399163227529805) + +[fips1923340] +centroid = (0.72421533230952173, -1.6427431793385254) +description = Earlham city, IA +station = ('kpro', 0.0058765430018681598) +zone = ('iaz072', 0.0031817723872613756) + +[fips1923385] +centroid = (0.72913176773275701, -1.6653755618808368) +description = Earling city, IA +station = ('khnr', 0.0035021956313165477) +zone = ('iaz056', 0.0021285716367044388) + +[fips1923430] +centroid = (0.74146395006808363, -1.5929638757975242) +description = Earlville city, IA +station = ('kmxo', 0.0045530608766456105) +zone = ('iaz041', 0.0012675615020601744) + +[fips1923475] +centroid = (0.74109170624521825, -1.660722252295632) +description = Early city, IA +station = ('kslb', 0.002633170787297536) +zone = ('iaz033', 0.0014451966154346513) + +[fips1923520] +centroid = (0.72967180750990923, -1.6030812876719474) +description = East Amana CDP, IA +station = ('kcid', 0.0021830049211587917) +zone = ('iaz063', 0.0035133410866923548) + +[fips1923790] +centroid = (0.71954746667835534, -1.6393793364579867) +description = East Peru city, IA +station = ('ki75', 0.0045059657017228359) +zone = ('iaz072', 0.0021320311524554293) + +[fips1923970] +centroid = (0.71836364475331271, -1.6166948034776258) +description = Eddyville city, IA +station = ('kooa', 0.002135964613343077) +zone = ('iaz075', 0.0030734074194275238) + +[fips1924060] +centroid = (0.74428230774420412, -1.5952612003320468) +description = Edgewood city, IA +station = ('kpdc', 0.007485223831418357) +zone = ('iaz041', 0.0030540298700156678) + +[fips1924375] +centroid = (0.73313419168001559, -1.6112201593997251) +description = Elberon city, IA +station = ('kvti', 0.0052878007024732684) +zone = ('iaz051', 0.0034972183538314861) + +[fips1924420] +centroid = (0.71415389314420985, -1.6095116915015328) +description = Eldon city, IA +station = ('kffl', 0.0038581288782880288) +zone = ('iaz086', 0.0031960313069121808) + +[fips1924465] +centroid = (0.73933185585384742, -1.6249239959941939) +description = Eldora city, IA +station = ('kifa', 0.0028934478903718266) +zone = ('iaz037', 0.0018389024841020667) + +[fips1924600] +centroid = (0.7267423072670216, -1.5809211912252259) +description = Eldridge city, IA +station = ('kdvn', 0.00039668261183316473) +zone = ('iaz068', 0.00056330296529507587) + +[fips1924645] +centroid = (0.74971262045910403, -1.5993428098674682) +description = Elgin city, IA +station = ('kdeh', 0.0058579262040824864) +zone = ('iaz029', 0.0031217607916420231) + +[fips1924690] +centroid = (0.74800584553028626, -1.5952721086398718) +description = Elkader city, IA +station = ('kpdc', 0.004562178740721741) +zone = ('iaz030', 0.00081173374171433408) + +[fips1924735] +centroid = (0.72941302754171589, -1.6323060580517217) +description = Elkhart city, IA +station = ('kikv', 0.0018655972086131743) +zone = ('iaz060', 0.0019706649551735128) + +[fips1924780] +centroid = (0.72593451652932117, -1.6591372140821408) +description = Elk Horn city, IA +station = ('kadu', 0.0026375399273637721) +zone = ('iaz057', 0.0025854485959539548) + +[fips1924825] +centroid = (0.74598119378480288, -1.5930482275602731) +description = Elkport city, IA +station = ('kpdc', 0.005256996459584262) +zone = ('iaz030', 0.0019910064132450662) + +[fips1924870] +centroid = (0.74114003441220599, -1.6100752408637093) +description = Elk Run Heights city, IA +station = ('kalo', 0.002437598248488966) +zone = ('iaz039', 0.00075360331946684527) + +[fips1924915] +centroid = (0.71819193926150149, -1.6609053198808736) +description = Elliott city, IA +station = ('krdk', 0.0026886613866201111) +zone = ('iaz080', 0.0020833923813701103) + +[fips1925005] +centroid = (0.71280107098769652, -1.6425076122493838) +description = Ellston city, IA +station = ('klwd', 0.0045490735339848674) +zone = ('iaz093', 0.002563449636510924) + +[fips1925050] +centroid = (0.73845135469950884, -1.6333112804344079) +description = Ellsworth city, IA +station = ('kebs', 0.0042556477345123047) +zone = ('iaz036', 0.0020606193413833622) + +[fips1925095] +centroid = (0.7547828717493178, -1.6133707366507399) +description = Elma city, IA +station = ('kccy', 0.0038575143390979926) +zone = ('iaz009', 0.0024808936975227219) + +[fips1925365] +centroid = (0.73093924815941491, -1.5984981577759656) +description = Ely city, IA +station = ('kcid', 0.0016835455191176129) +zone = ('iaz052', 0.0034794166144948959) + +[fips1925500] +centroid = (0.71589992052790508, -1.6650919633306802) +description = Emerson city, IA +station = ('krdk', 0.0017920960316699004) +zone = ('iaz079', 0.0028912052610265025) + +[fips1925590] +centroid = (0.75249518143226612, -1.6524703879520803) +description = Emmetsburg city, IA +station = ('kest', 0.005057555034100652) +zone = ('iaz015', 0.00057270279242536417) + +[fips1925725] +centroid = (0.74084748232298669, -1.5870497927205562) +description = Epworth city, IA +station = ('kdbq', 0.0030922789687174738) +zone = ('iaz042', 0.0007313036873855533) + +[fips1925815] +centroid = (0.71266469095994567, -1.6633652218352195) +description = Essex city, IA +station = ('ksda', 0.002075160569384029) +zone = ('iaz091', 0.002605382132576264) + +[fips1925860] +centroid = (0.75746935234715751, -1.6551745661885353) +description = Estherville city, IA +station = ('kest', 0.0010717778475603972) +zone = ('iaz004', 0.0020166465440229868) + +[fips1925995] +centroid = (0.7411660747246458, -1.610405230265384) +description = Evansdale city, IA +station = ('kalo', 0.0022333651281615887) +zone = ('iaz039', 0.00050895668203630067) + +[fips1926175] +centroid = (0.7533736405513799, -1.6636047857283482) +description = Everly city, IA +station = ('kspw', 0.0012843095710960994) +zone = ('iaz014', 0.0025642252014827778) + +[fips1926265] +centroid = (0.72591692361046112, -1.6559873485678964) +description = Exira city, IA +station = ('kadu', 0.0019721575073341547) +zone = ('iaz057', 0.0016484216878255875) + +[fips1926310] +centroid = (0.70945969049463087, -1.6204184808900484) +description = Exline city, IA +station = ('ktvk', 0.00092656885659962848) +zone = ('iaz096', 0.0016777437763212924) + +[fips1926355] +centroid = (0.74421081905804232, -1.6065369697777261) +description = Fairbank city, IA +station = ('kolz', 0.0011792370378956676) +zone = ('iaz040', 0.0040033634160204952) + +[fips1926400] +centroid = (0.73167546294449126, -1.6017834433868721) +description = Fairfax city, IA +station = ('kcid', 0.0010179268694156054) +zone = ('iaz052', 0.0035706395211090062) + +[fips1926445] +centroid = (0.71570507197021238, -1.6051293442827002) +description = Fairfield city, IA +station = ('kffl', 0.00078221522629612101) +zone = ('iaz087', 0.00049683149598685151) + +[fips1926760] +centroid = (0.74077857672411795, -1.5884282188571965) +description = Farley city, IA +station = ('kmxo', 0.0041864255385056547) +zone = ('iaz042', 0.0017043577898708737) + +[fips1926850] +centroid = (0.74977367207633883, -1.594656181946843) +description = Farmersburg city, IA +station = ('kpdc', 0.00328395602545578) +zone = ('iaz030', 0.0020194341915612921) + +[fips1926895] +centroid = (0.70928180653726769, -1.6011478468331732) +description = Farmington city, IA +station = ('keok', 0.0050461541281108411) +zone = ('iaz098', 0.0034318630589874528) + +[fips1926940] +centroid = (0.73786371979365473, -1.6477253787679758) +description = Farnhamville city, IA +station = ('kfod', 0.0055811507770886911) +zone = ('iaz035', 0.003932665874918792) + +[fips1926985] +centroid = (0.71069819358513864, -1.666452325309562) +description = Farragut city, IA +station = ('ksda', 0.00099540417336368937) +zone = ('iaz090', 0.0016998878484027482) + +[fips1927165] +centroid = (0.74772556310570859, -1.6022769352328736) +description = Fayette city, IA +station = ('kolz', 0.0035569444228754324) +zone = ('iaz029', 0.00063551529168531199) + +[fips1927210] +centroid = (0.75429913629383494, -1.6480789301145522) +description = Fenton city, IA +station = ('kaxa', 0.0031233811204391432) +zone = ('iaz005', 0.0028251632691339316) + +[fips1927255] +centroid = (0.73196630461104351, -1.6207656443315626) +description = Ferguson city, IA +station = ('kmiw', 0.0031850332851836309) +zone = ('iaz049', 0.0024456930374351831) + +[fips1927390] +centroid = (0.75506976897176048, -1.630542455202459) +description = Fertile city, IA +station = ('kmcw', 0.0022692329311574571) +zone = ('iaz007', 0.0028778496783788735) + +[fips1927975] +centroid = (0.713210176164364, -1.6115022220601398) +description = Floris city, IA +station = ('kotm', 0.0044024447476332289) +zone = ('iaz097', 0.0022719191417783814) + +[fips1928020] +centroid = (0.75272909045861847, -1.6186227814358412) +description = Floyd city, IA +station = ('kccy', 0.0019063335964709515) +zone = ('iaz018', 0.0013426913262860472) + +[fips1928245] +centroid = (0.74319079628329932, -1.6553739700555756) +description = Fonda city, IA +station = ('kslb', 0.0049879071557775226) +zone = ('iaz023', 0.0034164698856382915) + +[fips1928290] +centroid = (0.72064655286821377, -1.6503841958971717) +description = Fontanelle city, IA +station = ('kcsq', 0.005405332254165153) +zone = ('iaz071', 0.0013665046055180579) + +[fips1928380] +centroid = (0.75497649857653404, -1.634263671700636) +description = Forest City city, IA +station = ('kfxy', 0.00051483690746277426) +zone = ('iaz006', 0.0024428521215199461) + +[fips1928425] +centroid = (0.75300685960907332, -1.60456452083017) +description = Fort Atkinson city, IA +station = ('kdeh', 0.0035312348869001526) +zone = ('iaz010', 0.0028068388502346547) + +[fips1928515] +centroid = (0.74193260587882914, -1.6436754644117708) +description = Fort Dodge city, IA +station = ('kfod', 0.00071185292280740277) +zone = ('iaz035', 0.0014299830614114553) + +[fips1928605] +centroid = (0.70895029869914394, -1.5943911536999276) +description = Fort Madison city, IA +station = ('kfsw', 0.00085307046585813141) +zone = ('iaz099', 0.0017300882066814615) + +[fips1928650] +centroid = (0.75471243026070722, -1.6607816458500773) +description = Fostoria city, IA +station = ('kspw', 0.0015235783898622636) +zone = ('iaz003', 0.0023755228017894527) + +[fips1928740] +centroid = (0.70977243604329576, -1.5971822667864244) +description = Franklin city, IA +station = ('kfsw', 0.0023626813395838386) +zone = ('iaz099', 0.00061336307210109692) + +[fips1928920] +centroid = (0.73525337045778694, -1.6401674398817245) +description = Fraser city, IA +station = ('kbnw', 0.0020999106909109625) +zone = ('iaz047', 0.0016712615331135737) + +[fips1928965] +centroid = (0.74987449974722664, -1.6091303196066795) +description = Fredericksburg city, IA +station = ('kolz', 0.0057103201152694525) +zone = ('iaz019', 0.0022735449818974121) + +[fips1929010] +centroid = (0.74845664662278388, -1.6110465514990291) +description = Frederika city, IA +station = ('kccy', 0.0050942417980404794) +zone = ('iaz028', 0.0019035355173861812) + +[fips1929055] +centroid = (0.72055069938569427, -1.5941730049967207) +description = Fredonia city, IA +station = ('kmut', 0.0028666058536873274) +zone = ('iaz078', 0.0015558836162976341) + +[fips1929190] +centroid = (0.71929428921706118, -1.6132818295786433) +description = Fremont city, IA +station = ('kooa', 0.00081469894615818) +zone = ('iaz086', 0.0031918427272456433) + +[fips1929280] +centroid = (0.72164866856483134, -1.5904971670590957) +description = Fruitland city, IA +station = ('kmut', 0.00043603040957812436) +zone = ('iaz067', 0.0023912474134053516) + +[fips1929325] +centroid = (0.72556738652116415, -1.6010277681806362) +description = Frytown CDP, IA +station = ('kiow', 0.0026073137924137093) +zone = ('iaz064', 0.0025593732565618523) + +[fips1929550] +centroid = (0.74513312084796623, -1.6337176803507345) +description = Galt city, IA +station = ('kcav', 0.0022979384663554441) +zone = ('iaz025', 0.0018090340873468821) + +[fips1929595] +centroid = (0.74186816832284552, -1.6653537627184793) +description = Galva city, IA +station = ('kslb', 0.0028840667987899611) +zone = ('iaz032', 0.0024178795378482511) + +[fips1929685] +centroid = (0.74603102293494727, -1.5928191880025337) +description = Garber city, IA +station = ('kpdc', 0.0051511166739422638) +zone = ('iaz030', 0.00202522461551485) + +[fips1929730] +centroid = (0.73732343567040737, -1.6300568522446766) +description = Garden City CDP, IA +station = ('kifa', 0.0042384737557828889) +zone = ('iaz037', 0.0031345152717904426) + +[fips1929775] +centroid = (0.71255822587557405, -1.6337537213997884) +description = Garden Grove city, IA +station = ('ki75', 0.0040158460340373493) +zone = ('iaz094', 0.002830024938632391) + +[fips1929910] +centroid = (0.7481551235412095, -1.5923757521994797) +description = Garnavillo city, IA +station = ('kpdc', 0.0030710913664719697) +zone = ('iaz030', 0.001394401133030037) + +[fips1929955] +centroid = (0.7522287918285343, -1.6336857408254231) +description = Garner city, IA +station = ('kfxy', 0.0022869490482377527) +zone = ('iaz016', 0.0016981578098198679) + +[fips1930000] +centroid = (0.73555178685329303, -1.6082015251919382) +description = Garrison city, IA +station = ('kvti', 0.0019994310852421474) +zone = ('iaz051', 0.0015000504686038889) + +[fips1930045] +centroid = (0.73466945310323983, -1.6175552507988591) +description = Garwin city, IA +station = ('kmiw', 0.0031029163172455504) +zone = ('iaz050', 0.0019123382004085521) + +[fips1930135] +centroid = (0.74481573272349111, -1.6254210483118694) +description = Geneva city, IA +station = ('kifa', 0.0040031321575314362) +zone = ('iaz026', 0.0019769048701992632) + +[fips1930225] +centroid = (0.756476137829725, -1.6755805718304175) +description = George city, IA +station = ('kshl', 0.0030885278023202742) +zone = ('iaz001', 0.0027025672738690849) + +[fips1930540] +centroid = (0.7239666927042826, -1.6125454053540567) +description = Gibson city, IA +station = ('kooa', 0.0046306174250619163) +zone = ('iaz076', 0.0037552090279286475) + +[fips1930630] +centroid = (0.73492123430113254, -1.6344443656380951) +description = Gilbert city, IA +station = ('kamw', 0.0022085600801521081) +zone = ('iaz048', 0.0026654537242369863) + +[fips1930675] +centroid = (0.74035112813701209, -1.6094414070925551) +description = Gilbertville city, IA +station = ('kalo', 0.0033086203495856811) +zone = ('iaz039', 0.0015068624441487975) + +[fips1930810] +centroid = (0.75076568231658736, -1.6586960297538216) +description = Gillett Grove city, IA +station = ('kspw', 0.0034968454998353716) +zone = ('iaz014', 0.0018718840599614341) + +[fips1930900] +centroid = (0.73092310386383386, -1.6194585498014513) +description = Gilman city, IA +station = ('kggi', 0.0030418504609341659) +zone = ('iaz049', 0.0038708229695374823) + +[fips1930945] +centroid = (0.7457250841703652, -1.6482350672694359) +description = Gilmore City city, IA +station = ('kfod', 0.0044869614664172185) +zone = ('iaz024', 0.0030669186020701096) + +[fips1931035] +centroid = (0.73628576761692677, -1.6181836915026246) +description = Gladbrook city, IA +station = ('kmiw', 0.0028757447439147488) +zone = ('iaz050', 0.0030032257270757403) + +[fips1931350] +centroid = (0.71636498096039147, -1.6709889247276857) +description = Glenwood city, IA +station = ('koff', 0.0024444019622149806) +zone = ('iaz079', 0.0015821260430255036) + +[fips1931395] +centroid = (0.73404413653883527, -1.6532921936836744) +description = Glidden city, IA +station = ('kcin', 0.00074636413456185397) +zone = ('iaz045', 0.0017770067475147615) + +[fips1931530] +centroid = (0.74587764340028206, -1.6391816604669056) +description = Goldfield city, IA +station = ('kcav', 0.0019583148640298499) +zone = ('iaz025', 0.0023462859023443633) + +[fips1931575] +centroid = (0.7491604157370656, -1.633873608066108) +description = Goodell city, IA +station = ('kcav', 0.0036067367360080142) +zone = ('iaz016', 0.0031569836172492226) + +[fips1931665] +centroid = (0.73247773844175545, -1.5774593306538951) +description = Goose Lake city, IA +station = ('kcwi', 0.0024311441152410412) +zone = ('iaz066', 0.0023006129432632983) + +[fips1931710] +centroid = (0.73788749117806696, -1.6456660124236702) +description = Gowrie city, IA +station = ('kfod', 0.004943949379602062) +zone = ('iaz035', 0.0029644217920622739) + +[fips1931800] +centroid = (0.75462924786855723, -1.6537068664606556) +description = Graettinger city, IA +station = ('kest', 0.002843652593858556) +zone = ('iaz004', 0.0026226252811513066) + +[fips1931845] +centroid = (0.74166550069010395, -1.5860326671923717) +description = Graf city, IA +station = ('kdbq', 0.0027698069255740251) +zone = ('iaz042', 0.00046133747304435405) + +[fips1931890] +centroid = (0.75625882688455925, -1.6243552979107241) +description = Grafton city, IA +station = ('kmcw', 0.0046085358079305154) +zone = ('iaz007', 0.0025731529531784077) + +[fips1931980] +centroid = (0.73361363362553833, -1.6447463286276243) +description = Grand Junction city, IA +station = ('kpro', 0.003680872703851278) +zone = ('iaz046', 0.0020732977946016332) + +[fips1932025] +centroid = (0.72995378290386137, -1.5821437245530781) +description = Grand Mound city, IA +station = ('kdvn', 0.0037095203143643484) +zone = ('iaz066', 0.0020149685639442752) + +[fips1932070] +centroid = (0.71242491762730675, -1.6399704794756371) +description = Grand River city, IA +station = ('klwd', 0.0033461996035551922) +zone = ('iaz094', 0.0027364565693665461) + +[fips1932115] +centroid = (0.72042358705627152, -1.5915356728706171) +description = Grandview city, IA +station = ('kmut', 0.0016395969599925684) +zone = ('iaz078', 0.0013889425460140968) + +[fips1932160] +centroid = (0.72890292016123559, -1.6375551532303874) +description = Granger city, IA +station = ('kikv', 0.0036086712115116887) +zone = ('iaz060', 0.0035459800540202429) + +[fips1932295] +centroid = (0.71806969640069185, -1.6578073779118763) +description = Grant city, IA +station = ('krdk', 0.0043022320806259864) +zone = ('iaz080', 0.0029825133318721903) + +[fips1932475] +centroid = (0.75023375832045713, -1.6733314881964201) +description = Granville city, IA +station = ('korc', 0.0024495284362995584) +zone = ('iaz013', 0.0036218778792444155) + +[fips1932520] +centroid = (0.7113990829061545, -1.6535860373165401) +description = Gravity city, IA +station = ('kicl', 0.0039072945249704295) +zone = ('iaz092', 0.00073761607958860802) + +[fips1932565] +centroid = (0.73027771601303149, -1.6578175357281226) +description = Gray city, IA +station = ('kadu', 0.002600532680798935) +zone = ('iaz057', 0.0029358674138972936) + +[fips1932610] +centroid = (0.74324947425275134, -1.5942107041085638) +description = Greeley city, IA +station = ('kmxo', 0.0065393334792171699) +zone = ('iaz041', 0.0020163401104002906) + +[fips1932745] +centroid = (0.74868968298451033, -1.6197340674771712) +description = Greene city, IA +station = ('kccy', 0.003809290294563077) +zone = ('iaz018', 0.0028554605766120847) + +[fips1932790] +centroid = (0.7209187020584773, -1.6486232110417869) +description = Greenfield city, IA +station = ('kcsq', 0.0051871822022762273) +zone = ('iaz071', 0.00046480955729686274) + +[fips1932925] +centroid = (0.73481707305137345, -1.6200080841697342) +description = Green Mountain CDP, IA +station = ('kmiw', 0.0012825850045147871) +zone = ('iaz049', 0.0025924212423948088) + +[fips1932970] +centroid = (0.75078676589395155, -1.6606157697579678) +description = Greenville city, IA +station = ('kspw', 0.0027633886863049411) +zone = ('iaz014', 0.0011480372132043944) + +[fips1933060] +centroid = (0.72743171232155945, -1.6371685453477778) +description = Grimes city, IA +station = ('kikv', 0.0030955714600145253) +zone = ('iaz060', 0.0029931418756802193) + +[fips1933105] +centroid = (0.72846821100444137, -1.6183550653818779) +description = Grinnell city, IA +station = ('kggi', 0.00049582451426875081) +zone = ('iaz062', 0.0026781908614849775) + +[fips1933150] +centroid = (0.71967424739522023, -1.6604936490702058) +description = Griswold city, IA +station = ('kaio', 0.0031198791624336281) +zone = ('iaz070', 0.0032513361563928211) + +[fips1933195] +centroid = (0.73938704316479542, -1.6192187590155198) +description = Grundy Center city, IA +station = ('kmiw', 0.0046879786778632818) +zone = ('iaz038', 0.00069926958230654476) + +[fips1933240] +centroid = (0.75735297379263455, -1.652888900453416) +description = Gruver city, IA +station = ('kest', 0.00060105474867681082) +zone = ('iaz004', 0.00041530405289828104) + +[fips1933285] +centroid = (0.72691481561028892, -1.6116909096055729) +description = Guernsey city, IA +station = ('kggi', 0.0051541738744419604) +zone = ('iaz062', 0.0025398061109632567) + +[fips1933420] +centroid = (0.72742048985446905, -1.6493177822709104) +description = Guthrie Center city, IA +station = ('kpro', 0.0051480884516046047) +zone = ('iaz058', 0.00010261244719132177) + +[fips1933465] +centroid = (0.74679947395130786, -1.590146163893227) +description = Guttenberg city, IA +station = ('kpdc', 0.0040802748993349659) +zone = ('iaz030', 0.0031371444507247576) + +[fips1933645] +centroid = (0.73312771650849062, -1.6575749349620956) +description = Halbur city, IA +station = ('kcin', 0.0025689394399696056) +zone = ('iaz045', 0.0015422677422421826) + +[fips1933780] +centroid = (0.70870993195455922, -1.6694950276077338) +description = Hamburg city, IA +station = ('kafk', 0.002585911902213067) +zone = ('iaz090', 0.0025243980367107917) + +[fips1933870] +centroid = (0.71855646872907308, -1.6214822067092611) +description = Hamilton city, IA +station = ('koxv', 0.0035934362477696227) +zone = ('iaz085', 0.0024961401861713925) + +[fips1933960] +centroid = (0.74598873360717155, -1.626733570815954) +description = Hampton city, IA +station = ('kifa', 0.0048203431865501273) +zone = ('iaz026', 0.00075468265217325486) + +[fips1934005] +centroid = (0.72247768250623623, -1.6643347173281171) +description = Hancock city, IA +station = ('khnr', 0.0033177343443145627) +zone = ('iaz069', 0.0026049604053628686) + +[fips1934185] +centroid = (0.75539422567970627, -1.6297689776378526) +description = Hanlontown city, IA +station = ('kmcw', 0.0023569754986649425) +zone = ('iaz007', 0.0022539675898300918) + +[fips1934365] +centroid = (0.74626351824460546, -1.6249729873862975) +description = Hansell city, IA +station = ('kifa', 0.0054555796726742647) +zone = ('iaz026', 0.0020763698592561049) + +[fips1934410] +centroid = (0.73758595064319987, -1.643655602564883) +description = Harcourt city, IA +station = ('kebs', 0.0049863229502646652) +zone = ('iaz035', 0.0029203603691510659) + +[fips1934455] +centroid = (0.74717807077265053, -1.6415021455206025) +description = Hardy city, IA +station = ('kfod', 0.0048469143242984647) +zone = ('iaz024', 0.0020848815325281659) + +[fips1934500] +centroid = (0.72692115115547362, -1.6637675900409741) +description = Harlan city, IA +station = ('khnr', 0.0011480096732666388) +zone = ('iaz056', 0.00065755471386262274) + +[fips1934545] +centroid = (0.72193224966169534, -1.6065921745419667) +description = Harper city, IA +station = ('kffl', 0.005546121327981113) +zone = ('iaz076', 0.0017401233403399256) + +[fips1934590] +centroid = (0.75399885239602937, -1.5909141436706895) +description = Harpers Ferry city, IA +station = ('kpdc', 0.0031444929506114494) +zone = ('wiz054', 0.0028984636864023143) + +[fips1934635] +centroid = (0.75823235793625188, -1.6656915013820328) +description = Harris city, IA +station = ('kotg', 0.0040509593092468831) +zone = ('iaz002', 0.0026251298627124327) + +[fips1934680] +centroid = (0.72357991028874813, -1.6302262539018753) +description = Hartford city, IA +station = ('kikv', 0.0045596450335561121) +zone = ('iaz073', 0.0029757954619722103) + +[fips1934725] +centroid = (0.75361653802337991, -1.666383646603496) +description = Hartley city, IA +station = ('kspw', 0.003317529564578342) +zone = ('iaz013', 0.0025157737738969572) + +[fips1934770] +centroid = (0.72930582941905853, -1.6117305111263007) +description = Hartwick city, IA +station = ('kggi', 0.0051819747569442831) +zone = ('iaz062', 0.00298358306429363) + +[fips1934860] +centroid = (0.72113412804805099, -1.6218068554034246) +description = Harvey city, IA +station = ('kpea', 0.0014389558540360376) +zone = ('iaz074', 0.0023351679904003134) + +[fips1934995] +centroid = (0.71602286152041539, -1.6666991672256715) +description = Hastings city, IA +station = ('krdk', 0.0030080192539962782) +zone = ('iaz079', 0.0016724933532114101) + +[fips1935130] +centroid = (0.7475787809156158, -1.6528417242037348) +description = Havelock city, IA +station = ('kaxa', 0.0070590643608724035) +zone = ('iaz023', 0.0017507679955061513) + +[fips1935220] +centroid = (0.73206301330489654, -1.6224709880903936) +description = Haverhill city, IA +station = ('kmiw', 0.0030652140907773523) +zone = ('iaz049', 0.0016745413892848132) + +[fips1935265] +centroid = (0.75053353607277962, -1.6839444688586547) +description = Hawarden city, IA +station = ('korc', 0.0053241886805437009) +zone = ('sdz071', 0.0037019009468167766) + +[fips1935310] +centroid = (0.74940497127185512, -1.6048364256743382) +description = Hawkeye city, IA +station = ('kolz', 0.0044944991541513756) +zone = ('iaz029', 0.0018876143691351358) + +[fips1935445] +centroid = (0.72020505438062932, -1.6100260923919731) +description = Hayesville city, IA +station = ('kotm', 0.0039147845559840437) +zone = ('iaz076', 0.0015440499869744169) + +[fips1935490] +centroid = (0.75360000975536356, -1.6352431330235628) +description = Hayfield CDP, IA +station = ('kfxy', 0.0012930400352162508) +zone = ('iaz016', 0.0017629519472846407) + +[fips1935580] +centroid = (0.74383381048631914, -1.6040642571066706) +description = Hazleton city, IA +station = ('kolz', 0.0013969933286510341) +zone = ('iaz040', 0.0027252666714490947) + +[fips1935670] +centroid = (0.71857235122526619, -1.611077635813007) +description = Hedrick city, IA +station = ('kotm', 0.0022426129188549112) +zone = ('iaz086', 0.0027932838929696007) + +[fips1935715] +centroid = (0.71802822737766436, -1.6655847046851031) +description = Henderson city, IA +station = ('krdk', 0.0030505038947941164) +zone = ('iaz079', 0.0031223123576770819) + +[fips1935760] +centroid = (0.7129261063753094, -1.6583540150336009) +description = Hepburn city, IA +station = ('kicl', 0.0022967738309396667) +zone = ('iaz091', 0.0025888404502398192) + +[fips1935940] +centroid = (0.73392882263515602, -1.600274571341938) +description = Hiawatha city, IA +station = ('kcid', 0.0029487266649838636) +zone = ('iaz052', 0.0012645048320689238) + +[fips1936030] +centroid = (0.72956698303503431, -1.6046889802591298) +description = High Amana CDP, IA +station = ('kcid', 0.0032613659350098434) +zone = ('iaz063', 0.0025709644638270994) + +[fips1936345] +centroid = (0.72529045512875023, -1.5975915290427245) +description = Hills city, IA +station = ('kiow', 0.001361962711498337) +zone = ('iaz064', 0.0021291905835779004) + +[fips1936390] +centroid = (0.71274675634137452, -1.6006855440209049) +description = Hillsboro city, IA +station = ('kmpz', 0.0032710829576660422) +zone = ('iaz088', 0.0034361430417360369) + +[fips1936480] +centroid = (0.74388196412038154, -1.6807080175602191) +description = Hinton city, IA +station = ('klrj', 0.0030430774753376437) +zone = ('iaz020', 0.0022970113109368356) + +[fips1936660] +centroid = (0.72984047612882186, -1.6135298757719367) +description = Holiday Lake CDP, IA +station = ('kggi', 0.0041118961831751091) +zone = ('iaz062', 0.0025188501719034468) + +[fips1936705] +centroid = (0.74001881744743225, -1.6196448636991019) +description = Holland city, IA +station = ('kmiw', 0.0051733728444687543) +zone = ('iaz038', 0.00010628870329760159) + +[fips1936840] +centroid = (0.74156135689363734, -1.667537867744425) +description = Holstein city, IA +station = ('kckp', 0.0042501784818758555) +zone = ('iaz032', 0.0018118310370974051) + +[fips1936885] +centroid = (0.74353158927304375, -1.5881849548660536) +description = Holy Cross city, IA +station = ('kdbq', 0.0051836641959831804) +zone = ('iaz042', 0.0027362737316923079) + +[fips1936975] +centroid = (0.72889630536337047, -1.603488507893023) +description = Homestead CDP, IA +station = ('kcid', 0.0029283442578570949) +zone = ('iaz063', 0.0028396353348073087) + +[fips1937155] +centroid = (0.73902689447364645, -1.5925895724861414) +description = Hopkinton city, IA +station = ('kmxo', 0.0021891749131276177) +zone = ('iaz041', 0.0027067833544322491) + +[fips1937200] +centroid = (0.73706865250620124, -1.6772020001588128) +description = Hornick city, IA +station = ('ksux', 0.0045578314569522183) +zone = ('iaz031', 0.0028503766500281914) + +[fips1937290] +centroid = (0.75177985823833626, -1.6738271966105716) +description = Hospers city, IA +station = ('kshl', 0.0026473991237344115) +zone = ('iaz013', 0.0035512463511664667) + +[fips1937335] +centroid = (0.71180927018695828, -1.598910247465654) +description = Houghton city, IA +station = ('kmpz', 0.0031344838135853002) +zone = ('iaz099', 0.0030240666005510791) + +[fips1937425] +centroid = (0.73838091321089816, -1.6284149162975705) +description = Hubbard city, IA +station = ('kifa', 0.0028887410193181337) +zone = ('iaz037', 0.0015670967835189219) + +[fips1937470] +centroid = (0.74054855978199763, -1.6136509667154399) +description = Hudson city, IA +station = ('kalo', 0.0022073180173406829) +zone = ('iaz039', 0.0020151381021430055) + +[fips1937515] +centroid = (0.75380559208795594, -1.6778287827997891) +description = Hull city, IA +station = ('korc', 0.0037013041666783529) +zone = ('iaz012', 0.0019595917300308987) + +[fips1937560] +centroid = (0.74565575969247599, -1.6445368367575075) +description = Humboldt city, IA +station = ('kfod', 0.0030652565474389229) +zone = ('iaz024', 0.00096049796140584181) + +[fips1937605] +centroid = (0.71315423836183756, -1.631835779084772) +description = Humeston city, IA +station = ('kcnc', 0.0034700321937270969) +zone = ('iaz095', 0.0030847504506790854) + +[fips1937875] +centroid = (0.75202362837496239, -1.6386297699041328) +description = Hutchins CDP, IA +station = ('kfxy', 0.0042046870588840221) +zone = ('iaz016', 0.0019437744704738646) + +[fips1937920] +centroid = (0.73122530762381677, -1.6334734738817958) +description = Huxley city, IA +station = ('kamw', 0.0015577612087178804) +zone = ('iaz048', 0.0029414549414687316) + +[fips1938010] +centroid = (0.73904654688102389, -1.666324602114901) +description = Ida Grove city, IA +station = ('kslb', 0.0054289468917641543) +zone = ('iaz032', 0.00090594909705957486) + +[fips1938055] +centroid = (0.71347384305446282, -1.665524578092372) +description = Imogene city, IA +station = ('ksda', 0.0022567387489628343) +zone = ('iaz090', 0.0033017204340391355) + +[fips1938100] +centroid = (0.74110507546728854, -1.6040125953608118) +description = Independence city, IA +station = ('kiib', 0.00044309252835191557) +zone = ('iaz040', 0.00085312711529966171) + +[fips1938280] +centroid = (0.72190968255446708, -1.6330329004187147) +description = Indianola city, IA +station = ('kdsm', 0.0032620087609059041) +zone = ('iaz073', 0.00049357674181047038) + +[fips1938415] +centroid = (0.75588982937410265, -1.6831096429708408) +description = Inwood city, IA +station = ('klyv', 0.0061114776493427008) +zone = ('iaz001', 0.0031119449390642618) + +[fips1938460] +centroid = (0.75112083936607577, -1.6137038327384832) +description = Ionia city, IA +station = ('kccy', 0.0020877909479797676) +zone = ('iaz019', 0.0018444619177549349) + +[fips1938595] +centroid = (0.7270350687957513, -1.5975220649384951) +description = Iowa City city, IA +station = ('kiow', 0.00046554832700809571) +zone = ('iaz064', 0.00078855474211834736) + +[fips1938640] +centroid = (0.7420994942619048, -1.6277996528296574) +description = Iowa Falls city, IA +station = ('kifa', 0.00085966514351454521) +zone = ('iaz037', 0.0023856137202546484) + +[fips1938820] +centroid = (0.75005346580872612, -1.6811316613295555) +description = Ireton city, IA +station = ('korc', 0.0032604370034463826) +zone = ('iaz012', 0.0026271313118694985) + +[fips1938955] +centroid = (0.7507280006580368, -1.6440312323264972) +description = Irvington CDP, IA +station = ('kaxa', 0.0015148486488583152) +zone = ('iaz005', 0.0033303053821540306) + +[fips1939000] +centroid = (0.72937583457535593, -1.6616720081146898) +description = Irwin city, IA +station = ('khnr', 0.0039865428073165999) +zone = ('iaz056', 0.0022758000839075902) + +[fips1939135] +centroid = (0.7522599983155599, -1.6065095157485925) +description = Jackson Junction city, IA +station = ('kdeh', 0.0050932980728163497) +zone = ('iaz019', 0.0035335686974801751) + +[fips1939180] +centroid = (0.72684365853668509, -1.6607103316968408) +description = Jacksonville CDP, IA +station = ('kadu', 0.0031714717315379525) +zone = ('iaz056', 0.0021827839441800308) + +[fips1939225] +centroid = (0.73033700484772168, -1.6459671515328094) +description = Jamaica city, IA +station = ('kpro', 0.0019295105520871656) +zone = ('iaz046', 0.0035316467532274928) + +[fips1939405] +centroid = (0.74430970941346042, -1.6137732619361274) +description = Janesville city, IA +station = ('kalo', 0.0018543518448454718) +zone = ('iaz028', 0.0029121570001587353) + +[fips1939450] +centroid = (0.7333306633939124, -1.6472315727627092) +description = Jefferson city, IA +station = ('kpro', 0.0043292731814350621) +zone = ('iaz046', 0.00040815587384940793) + +[fips1939585] +centroid = (0.74132538837876771, -1.6068480049037241) +description = Jesup city, IA +station = ('kiib', 0.0017573453540594426) +zone = ('iaz040', 0.0029322960141197861) + +[fips1939675] +centroid = (0.73845147687255641, -1.6343045124051327) +description = Jewell Junction city, IA +station = ('kebs', 0.0036412439994828248) +zone = ('iaz036', 0.0015550686856423183) + +[fips1939765] +centroid = (0.72747431580860056, -1.6356318003946895) +description = Johnston city, IA +station = ('kikv', 0.0019477038861751346) +zone = ('iaz060', 0.0018446103642986776) + +[fips1939855] +centroid = (0.75685834748261938, -1.6311516798311601) +description = Joice city, IA +station = ('kfxy', 0.0031246316590669418) +zone = ('iaz007', 0.0025116605581328626) + +[fips1939900] +centroid = (0.74140623202972011, -1.6531454987600442) +description = Jolley city, IA +station = ('kcin', 0.007542259461259122) +zone = ('iaz034', 0.0019259298530976388) + +[fips1940170] +centroid = (0.7240900525758136, -1.6004969437419343) +description = Kalona city, IA +station = ('kiow', 0.003228274870536306) +zone = ('iaz077', 0.0026561911957077686) + +[fips1940215] +centroid = (0.7398395372266674, -1.6358618522433948) +description = Kamrar city, IA +station = ('kebs', 0.0019427411110547175) +zone = ('iaz036', 0.00029232300541262666) + +[fips1940260] +centroid = (0.74934276773731401, -1.6370009239264165) +description = Kanawha city, IA +station = ('kcav', 0.0032324557872393587) +zone = ('iaz016', 0.0026840727454790639) + +[fips1940350] +centroid = (0.71053053725719206, -1.6414908008804643) +description = Kellerton city, IA +station = ('klwd', 0.0024037548064971114) +zone = ('iaz093', 0.0025959068621726655) + +[fips1940395] +centroid = (0.73217970601868476, -1.6347713530734562) +description = Kelley city, IA +station = ('kamw', 0.00085079253911566851) +zone = ('iaz048', 0.0029964445396943352) + +[fips1940440] +centroid = (0.72811692858589239, -1.6215344269604808) +description = Kellogg city, IA +station = ('ktnu', 0.0015511256677410313) +zone = ('iaz061', 0.0019906913846745836) + +[fips1940665] +centroid = (0.75666018279934777, -1.6268324262647873) +description = Kensett city, IA +station = ('kmcw', 0.0038781155881388563) +zone = ('iaz007', 0.00076273217804997376) + +[fips1940710] +centroid = (0.71477571905011039, -1.6486576812945137) +description = Kent CDP, IA +station = ('kcsq', 0.0016610857140706358) +zone = ('iaz082', 0.0031582086088330157) + +[fips1940845] +centroid = (0.70527962693610446, -1.5952747615403349) +description = Keokuk city, IA +station = ('keok', 0.0010777460576522158) +zone = ('ilz034', 0.003162164038353709) + +[fips1940890] +centroid = (0.72062108851442719, -1.6150712458475431) +description = Keomah Village city, IA +station = ('kooa', 0.0012280370589258936) +zone = ('iaz075', 0.0015886550611790653) + +[fips1940935] +centroid = (0.71095358761458294, -1.605010103388204) +description = Keosauqua city, IA +station = ('kffl', 0.0055124496305963755) +zone = ('iaz098', 0.00035142689666080605) + +[fips1940980] +centroid = (0.72196415428042182, -1.6049251058536318) +description = Keota city, IA +station = ('kawg', 0.00404748626640035) +zone = ('iaz077', 0.0031555970206464442) + +[fips1941070] +centroid = (0.72352039456125505, -1.6098605828190067) +description = Keswick city, IA +station = ('kooa', 0.0052069519081804783) +zone = ('iaz076', 0.0022063060966748165) + +[fips1941115] +centroid = (0.73303336400912777, -1.6091636728486851) +description = Keystone city, IA +station = ('kvti', 0.0044250977941446765) +zone = ('iaz051', 0.0022185260050595216) + +[fips1941295] +centroid = (0.72653000541680912, -1.6593694999522888) +description = Kimballton city, IA +station = ('kadu', 0.0023940099413788168) +zone = ('iaz057', 0.0024223407419899407) + +[fips1941385] +centroid = (0.74327403103532685, -1.6749558486779588) +description = Kingsley city, IA +station = ('klrj', 0.0044235731298755349) +zone = ('iaz031', 0.0035743248752900377) + +[fips1941475] +centroid = (0.72359390782934918, -1.6054813248329498) +description = Kinross city, IA +station = ('kawg', 0.0051984330849117986) +zone = ('iaz076', 0.0032937245709900916) + +[fips1941520] +centroid = (0.728291967656575, -1.6627278450456835) +description = Kirkman city, IA +station = ('khnr', 0.0026785620124525869) +zone = ('iaz056', 0.00093604686790885367) + +[fips1941565] +centroid = (0.71806770672534448, -1.6144921630550237) +description = Kirkville city, IA +station = ('kotm', 0.0010198713408433302) +zone = ('iaz086', 0.0023084877643829499) + +[fips1941610] +centroid = (0.73642649351451506, -1.66377469353103) +description = Kiron city, IA +station = ('kdns', 0.0037500757729062814) +zone = ('iaz044', 0.0028294469577689464) + +[fips1941655] +centroid = (0.75066214938535913, -1.6336512531194038) +description = Klemme city, IA +station = ('kfxy', 0.0038510445379317661) +zone = ('iaz016', 0.0021112075836649188) + +[fips1941790] +centroid = (0.74099943068766527, -1.6485670987063352) +description = Knierim city, IA +station = ('kfod', 0.0038713447797001249) +zone = ('iaz034', 0.0026809763638044443) + +[fips1942015] +centroid = (0.72114934731912839, -1.6249427931902378) +description = Knoxville city, IA +station = ('koxv', 0.00037813275804353147) +zone = ('iaz074', 0.00027460474272836803) + +[fips1942285] +centroid = (0.71889953064684498, -1.6298751809228365) +description = Lacona city, IA +station = ('kcnc', 0.0027433383701287043) +zone = ('iaz084', 0.0029025579555780044) + +[fips1942330] +centroid = (0.72877106053624729, -1.6089475138208256) +description = Ladora city, IA +station = ('kggi', 0.0071310437209980444) +zone = ('iaz063', 0.0019786387721631082) + +[fips1942465] +centroid = (0.73770943268777844, -1.6533686565582044) +description = Lake City city, IA +station = ('kcin', 0.0038582511411897934) +zone = ('iaz034', 0.0023611896044671734) + +[fips1942555] +centroid = (0.75777104996165723, -1.6324447768206702) +description = Lake Mills city, IA +station = ('kfxy', 0.0034502937521805948) +zone = ('iaz006', 0.0026532707235487315) + +[fips1942575] +centroid = (0.72817832926897763, -1.6476609935718698) +description = Lake Panorama CDP, IA +station = ('kpro', 0.0036974360400724429) +zone = ('iaz058', 0.0014251122604487653) + +[fips1942600] +centroid = (0.75829189111703732, -1.6637340448127509) +description = Lake Park city, IA +station = ('kotg', 0.0048214663462256844) +zone = ('iaz003', 0.0025128932069439962) + +[fips1942645] +centroid = (0.74384864578496102, -1.6611029260587844) +description = Lakeside city, IA +station = ('kslb', 0.00083170269735972197) +zone = ('iaz022', 0.0020477044351919558) + +[fips1942690] +centroid = (0.7383091103654712, -1.6586869365884187) +description = Lake View city, IA +station = ('kcin', 0.0054775864667939494) +zone = ('iaz033', 0.0017231269129846657) + +[fips1942825] +centroid = (0.75708094677541871, -1.6422455161556118) +description = Lakota city, IA +station = ('kaxa', 0.0055859954239288155) +zone = ('iaz005', 0.0033485095088760406) + +[fips1942870] +centroid = (0.72781544041090296, -1.6245411056628913) +description = Lambs Grove city, IA +station = ('ktnu', 0.00087167314225198168) +zone = ('iaz061', 0.00042194722318376156) + +[fips1942960] +centroid = (0.70895604083238295, -1.6394604070017418) +description = Lamoni city, IA +station = ('klwd', 0.00050735564289355027) +zone = ('iaz094', 0.002834911476957597) + +[fips1943005] +centroid = (0.74348521587481831, -1.5994271790835097) +description = Lamont city, IA +station = ('kiib', 0.0045736612868965548) +zone = ('iaz040', 0.0033808551555976275) + +[fips1943050] +centroid = (0.73819981784771138, -1.5816772154973124) +description = La Motte city, IA +station = ('kdbq', 0.0020705491738245568) +zone = ('iaz054', 0.0022563404957650032) + +[fips1943140] +centroid = (0.73622843355099876, -1.6526491620273622) +description = Lanesboro city, IA +station = ('kcin', 0.0026146514349358343) +zone = ('iaz045', 0.0033823592247214248) + +[fips1943275] +centroid = (0.75678453750855246, -1.5921875707995297) +description = Lansing city, IA +station = ('ky51', 0.0056475767215233667) +zone = ('iaz011', 0.0023493789137629313) + +[fips1943365] +centroid = (0.73851441344538327, -1.6090343614044049) +description = La Porte City city, IA +station = ('kvti', 0.0027022027336738095) +zone = ('iaz039', 0.0031215957393208992) + +[fips1943410] +centroid = (0.75842277335764452, -1.6831403258590907) +description = Larchwood city, IA +station = ('klyv', 0.0040375748274552037) +zone = ('iaz001', 0.0031484196233836927) + +[fips1943500] +centroid = (0.7480755365273184, -1.6675680270338995) +description = Larrabee city, IA +station = ('kckp', 0.0022718097915823796) +zone = ('iaz021', 0.0024201787571000808) + +[fips1943590] +centroid = (0.74635312344840288, -1.6295371281000177) +description = Latimer city, IA +station = ('kifa', 0.0052571926362191433) +zone = ('iaz026', 0.0014250416205531004) + +[fips1943680] +centroid = (0.73101478600944125, -1.621797709878144) +description = Laurel city, IA +station = ('ktnu', 0.0037129857714071897) +zone = ('iaz049', 0.002828940673882032) + +[fips1943725] +centroid = (0.74783426221152272, -1.6554150376528749) +description = Laurens city, IA +station = ('kslb', 0.0065627304813606442) +zone = ('iaz023', 0.0029396337639398104) + +[fips1943815] +centroid = (0.75174514363951406, -1.6083887641140922) +description = Lawler city, IA +station = ('kolz', 0.0071996862689534353) +zone = ('iaz019', 0.0020974666208248777) + +[fips1943905] +centroid = (0.74136205774635222, -1.6787468434396304) +description = Lawton city, IA +station = ('ksux', 0.0030312682167827221) +zone = ('iaz031', 0.0023620404572616553) + +[fips1943950] +centroid = (0.71246439697498676, -1.6070034788334917) +description = Leando CDP, IA +station = ('kffl', 0.004170318223811976) +zone = ('iaz098', 0.002028831095494166) + +[fips1944085] +centroid = (0.72598006962279815, -1.5773763227946702) +description = Le Claire city, IA +station = ('kmli', 0.0031285227833209774) +zone = ('iaz068', 0.0032930626616607559) + +[fips1944130] +centroid = (0.75783238083157234, -1.6433773970821153) +description = Ledyard city, IA +station = ('kfrm', 0.0051665723379404277) +zone = ('iaz005', 0.003825940376785234) + +[fips1944220] +centroid = (0.73314735146257548, -1.6192301734688277) +description = Le Grand city, IA +station = ('kmiw', 0.002661022384769029) +zone = ('iaz049', 0.0029465752863657218) + +[fips1944265] +centroid = (0.73929045664399007, -1.6415411536293845) +description = Lehigh city, IA +station = ('kebs', 0.0027404919699743858) +zone = ('iaz035', 0.0020529811209830345) + +[fips1944310] +centroid = (0.72149816882343187, -1.6194284777784393) +description = Leighton city, IA +station = ('kpea', 0.0022008937894719329) +zone = ('iaz075', 0.0019080351487292865) + +[fips1944355] +centroid = (0.75631664964267775, -1.634184887538201) +description = Leland city, IA +station = ('kfxy', 0.0018171122743296554) +zone = ('iaz006', 0.0015061535708000169) + +[fips1944400] +centroid = (0.74667827828804945, -1.6785409294944802) +description = Le Mars city, IA +station = ('klrj', 0.00026696167462528827) +zone = ('iaz020', 0.00092554731896459744) + +[fips1944490] +centroid = (0.71354615204537297, -1.6503597263810583) +description = Lenox city, IA +station = ('kcsq', 0.0034397903104178267) +zone = ('iaz092', 0.0031289158882383083) + +[fips1944535] +centroid = (0.71107054212775911, -1.6363434060373125) +description = Leon city, IA +station = ('klwd', 0.0026846149418597782) +zone = ('iaz094', 0.00041130175429799319) + +[fips1944580] +centroid = (0.71346202717542673, -1.6334967565740175) +description = Le Roy city, IA +station = ('ki75', 0.0032100718486258689) +zone = ('iaz094', 0.0035473590539574413) + +[fips1944670] +centroid = (0.7581762630540928, -1.6813007488274887) +description = Lester city, IA +station = ('klyv', 0.0034797812326412664) +zone = ('iaz001', 0.0018569540620944674) + +[fips1944715] +centroid = (0.72134114155062989, -1.592362138631314) +description = Letts city, IA +station = ('kmut', 0.0012933410344870184) +zone = ('iaz078', 0.0019680945050992468) + +[fips1944805] +centroid = (0.7209343053019901, -1.6595338227013638) +description = Lewis city, IA +station = ('kaio', 0.0016926872393580011) +zone = ('iaz070', 0.0020971450765897731) + +[fips1944985] +centroid = (0.71485619618191987, -1.6065789973061142) +description = Libertyville city, IA +station = ('kffl', 0.0018276380532112938) +zone = ('iaz087', 0.0018516924176146148) + +[fips1945030] +centroid = (0.73517622690484885, -1.6542871186237738) +description = Lidderdale city, IA +station = ('kcin', 0.0012652839557366694) +zone = ('iaz045', 0.0018066963367225949) + +[fips1945165] +centroid = (0.75834288963778063, -1.6106610780804336) +description = Lime Springs city, IA +station = ('kfka', 0.0041729651011381229) +zone = ('iaz009', 0.0016773961411429784) + +[fips1945255] +centroid = (0.73763660009809273, -1.6177698913902694) +description = Lincoln city, IA +station = ('kmiw', 0.003879573721457951) +zone = ('iaz038', 0.0027367276121326865) + +[fips1945390] +centroid = (0.72680121212927651, -1.6453198787264147) +description = Linden city, IA +station = ('kpro', 0.0035694721809817627) +zone = ('iaz058', 0.0030978843303463561) + +[fips1945435] +centroid = (0.70837653916084331, -1.632287575014943) +description = Lineville city, IA +station = ('klwd', 0.0050577607148516524) +zone = ('moz006', 0.0029365361374907202) + +[fips1945480] +centroid = (0.74863960948827046, -1.6623152317572196) +description = Linn Grove city, IA +station = ('kspw', 0.0047732786914304673) +zone = ('iaz022', 0.0030066463024055732) + +[fips1945615] +centroid = (0.73165130758764363, -1.5950854107697858) +description = Lisbon city, IA +station = ('kcid', 0.0042715313089021836) +zone = ('iaz052', 0.0038555183891070917) + +[fips1945660] +centroid = (0.73637237085441065, -1.6232639260761597) +description = Liscomb city, IA +station = ('kmiw', 0.001739442494816745) +zone = ('iaz049', 0.0027109379029787626) + +[fips1945705] +centroid = (0.75694662623618514, -1.6183328473404999) +description = Little Cedar CDP, IA +station = ('kccy', 0.0054636266559987112) +zone = ('iaz008', 0.00086310730794896678) + +[fips1945795] +centroid = (0.7582658857111827, -1.6734293139009944) +description = Little Rock city, IA +station = ('kshl', 0.0040372945959864679) +zone = ('iaz002', 0.0034571648554990409) + +[fips1945840] +centroid = (0.72969081414546344, -1.6759953318738614) +description = Little Sioux city, IA +station = ('ktqe', 0.0021541360086135613) +zone = ('iaz055', 0.0035092993659709341) + +[fips1945975] +centroid = (0.74818828479699739, -1.6438216357366253) +description = Livermore city, IA +station = ('kaxa', 0.0039030453938033254) +zone = ('iaz024', 0.0016267412502508957) + +[fips1946065] +centroid = (0.71547505502809206, -1.6013259925899244) +description = Lockridge city, IA +station = ('kmpz', 0.0032434434712045224) +zone = ('iaz087', 0.002712464030131795) + +[fips1946155] +centroid = (0.7268448104539913, -1.6718796535114411) +description = Logan city, IA +station = ('ktqe', 0.0055268862784813759) +zone = ('iaz055', 0.00073554350066775483) + +[fips1946245] +centroid = (0.73770131690675678, -1.6502366981220855) +description = Lohrville city, IA +station = ('kcin', 0.0048327962138659825) +zone = ('iaz034', 0.0023578542419589528) + +[fips1946290] +centroid = (0.75434538751901281, -1.6462905435899113) +description = Lone Rock city, IA +station = ('kaxa', 0.0025135920376205723) +zone = ('iaz005', 0.0015387165781007542) + +[fips1946335] +centroid = (0.7240787428422607, -1.5956883871197649) +description = Lone Tree city, IA +station = ('kiow', 0.0030277331521957173) +zone = ('iaz064', 0.0038568433118112131) + +[fips1946425] +centroid = (0.72767581407074344, -1.5809632362069064) +description = Long Grove city, IA +station = ('kdvn', 0.0013279992831225764) +zone = ('iaz068', 0.0011067026352370574) + +[fips1946515] +centroid = (0.71779590660093151, -1.6416051897596402) +description = Lorimor city, IA +station = ('kcsq', 0.0045036767847200657) +zone = ('iaz082', 0.0029884668208987378) + +[fips1946605] +centroid = (0.73245532841415983, -1.585050727501907) +description = Lost Nation city, IA +station = ('kmxo', 0.0064969178691198417) +zone = ('iaz054', 0.0047630805578237588) + +[fips1946785] +centroid = (0.72426603412429225, -1.6736138301095151) +description = Loveland CDP, IA +station = ('koma', 0.0034470634636823969) +zone = ('iaz055', 0.0033799878842701676) + +[fips1946830] +centroid = (0.71794026278336387, -1.6215531194367698) +description = Lovilia city, IA +station = ('koxv', 0.003973991761975622) +zone = ('iaz085', 0.0019077468322996722) + +[fips1946920] +centroid = (0.730579134374851, -1.5869178807356907) +description = Lowden city, IA +station = ('kdvn', 0.0061280495669869374) +zone = ('iaz065', 0.0031088727606396567) + +[fips1947010] +centroid = (0.72958853785129651, -1.5769785098982634) +description = Low Moor city, IA +station = ('kcwi', 0.00060522475524619438) +zone = ('iaz066', 0.0028512675126344663) + +[fips1947055] +centroid = (0.7515292115044574, -1.5962033988754434) +description = Luana city, IA +station = ('kpdc', 0.00427265004481194) +zone = ('iaz030', 0.0040225733970585898) + +[fips1947100] +centroid = (0.71615065452824644, -1.6312126616352249) +description = Lucas city, IA +station = ('kcnc', 0.0012499708662010844) +zone = ('iaz084', 0.0017637756630933794) + +[fips1947280] +centroid = (0.7324611229072765, -1.637468846698876) +description = Luther city, IA +station = ('kbnw', 0.0015009402095387805) +zone = ('iaz047', 0.0018918595850920537) + +[fips1947370] +centroid = (0.74890730808894135, -1.6420690633682351) +description = Lu Verne city, IA +station = ('kaxa', 0.0038331770913480607) +zone = ('iaz024', 0.0028070017814694819) + +[fips1947460] +centroid = (0.74357745652578622, -1.5895150702889984) +description = Luxemburg city, IA +station = ('kdbq', 0.005969348276507613) +zone = ('iaz042', 0.0033960219810445923) + +[fips1947505] +centroid = (0.73139247525957274, -1.6088489899845506) +description = Luzerne city, IA +station = ('kvti', 0.005816319279192665) +zone = ('iaz051', 0.003387188669800441) + +[fips1947595] +centroid = (0.72558285013833679, -1.6194367506390939) +description = Lynnville city, IA +station = ('kggi', 0.0025063448321061472) +zone = ('iaz061', 0.0040020168551667245) + +[fips1947730] +centroid = (0.74042631692118788, -1.6556280376347885) +description = Lytton city, IA +station = ('kslb', 0.0057025443126871578) +zone = ('iaz033', 0.003223171220904421) + +[fips1947775] +centroid = (0.73592305329177721, -1.6299761482200643) +description = McCallsburg city, IA +station = ('kamw', 0.0043186275958542715) +zone = ('iaz048', 0.0024500476012251178) + +[fips1947820] +centroid = (0.72855989315004854, -1.5785784183169815) +description = McCausland city, IA +station = ('kcwi', 0.0021467386908574871) +zone = ('iaz066', 0.0029214287539709276) + +[fips1947865] +centroid = (0.72131792867157851, -1.6699908931015179) +description = McClelland city, IA +station = ('kcbf', 0.0015345657006268383) +zone = ('iaz069', 0.0018547476091826307) + +[fips1947955] +centroid = (0.71893476884444274, -1.6655113659499343) +description = Macedonia city, IA +station = ('krdk', 0.0037135297528168043) +zone = ('iaz069', 0.0029419687734102257) + +[fips1948000] +centroid = (0.75098922408718283, -1.5914917080267597) +description = McGregor city, IA +station = ('kpdc', 0.00078716607162916468) +zone = ('iaz030', 0.0037745557437268555) + +[fips1948045] +centroid = (0.75810053321784865, -1.6160646698044856) +description = McIntire city, IA +station = ('kaum', 0.0058882762400552808) +zone = ('iaz008', 0.0028407512537264516) + +[fips1948180] +centroid = (0.71933214540853696, -1.6438395253614582) +description = Macksburg city, IA +station = ('kcsq', 0.0042009052490286792) +zone = ('iaz072', 0.0030077751839423764) + +[fips1948450] +centroid = (0.73086760239362059, -1.6374698066299647) +description = Madrid city, IA +station = ('kbnw', 0.0030679717874828863) +zone = ('iaz047', 0.0031614353736971377) + +[fips1948495] +centroid = (0.72766588314729952, -1.6733192010784861) +description = Magnolia city, IA +station = ('ktqe', 0.0042320987312123156) +zone = ('iaz055', 0.00076584411580407651) + +[fips1948500] +centroid = (0.71653323070028363, -1.6059451984415449) +description = Maharishi Vedic City city, IA +station = ('kffl', 0.00040911409445017129) +zone = ('iaz087', 0.00094144747431760959) + +[fips1948540] +centroid = (0.72793487329161699, -1.6154324766428283) +description = Malcom city, IA +station = ('kggi', 0.0022484639813367194) +zone = ('iaz062', 0.00050221314375201013) + +[fips1948585] +centroid = (0.74943373429792803, -1.6525328881925943) +description = Mallard city, IA +station = ('kaxa', 0.0058791581797365258) +zone = ('iaz015', 0.0024898188563394126) + +[fips1948675] +centroid = (0.70983648962684398, -1.6477574928262124) +description = Maloy city, IA +station = ('kcsq', 0.0060658749252573982) +zone = ('iaz093', 0.002463314040864834) + +[fips1948720] +centroid = (0.71571697511571097, -1.6682845894115983) +description = Malvern city, IA +station = ('ksda', 0.005018109700066397) +zone = ('iaz079', 0.00064934057634153102) + +[fips1948810] +centroid = (0.74150924136217289, -1.5961883541372914) +description = Manchester city, IA +station = ('kmxo', 0.0057585549823000052) +zone = ('iaz041', 0.0011541709616448787) + +[fips1948855] +centroid = (0.73115870585956066, -1.6621566511413834) +description = Manilla city, IA +station = ('kdns', 0.002500933403100169) +zone = ('iaz044', 0.0031719185918380561) + +[fips1948900] +centroid = (0.75551934833378176, -1.6266638798189221) +description = Manly city, IA +station = ('kmcw', 0.0029395649050707596) +zone = ('iaz007', 0.0017348069578836639) + +[fips1948945] +centroid = (0.73146104924588362, -1.6591875144711832) +description = Manning city, IA +station = ('kadu', 0.0040942229103696779) +zone = ('iaz045', 0.0034451629984556861) + +[fips1948990] +centroid = (0.74226034380576866, -1.6500369800957797) +description = Manson city, IA +station = ('kfod', 0.0046041506535472671) +zone = ('iaz034', 0.0028133304159884539) + +[fips1949170] +centroid = (0.73595446921831309, -1.6718591982526076) +description = Mapleton city, IA +station = ('kdns', 0.0061729896859316607) +zone = ('iaz043', 0.0029800386753496672) + +[fips1949215] +centroid = (0.73408651313307371, -1.5823948948857323) +description = Maquoketa city, IA +station = ('kcwi', 0.0058433656562356202) +zone = ('iaz054', 0.002272642937534969) + +[fips1949260] +centroid = (0.74805281234045751, -1.6577637970404537) +description = Marathon city, IA +station = ('kslb', 0.0055628809264895735) +zone = ('iaz022', 0.0030650805812029889) + +[fips1949305] +centroid = (0.74987387142869588, -1.6208483903913995) +description = Marble Rock city, IA +station = ('kccy', 0.0036662259954468365) +zone = ('iaz018', 0.0019448666617664077) + +[fips1949350] +centroid = (0.74738651544521617, -1.6721399868226685) +description = Marcus city, IA +station = ('kckp', 0.003578844412889672) +zone = ('iaz021', 0.0027837296617262311) + +[fips1949395] +centroid = (0.72948943805636834, -1.6068906432973502) +description = Marengo city, IA +station = ('kcid', 0.0048128975915545163) +zone = ('iaz063', 0.0019265147386575226) + +[fips1949485] +centroid = (0.73381663287083776, -1.59848004125833) +description = Marion city, IA +station = ('kcid', 0.0032848578473624874) +zone = ('iaz052', 0.00062105944502760123) + +[fips1949575] +centroid = (0.72341988104963284, -1.659995950980707) +description = Marne city, IA +station = ('kaio', 0.0011665812231474611) +zone = ('iaz070', 0.0031524886645134848) + +[fips1949620] +centroid = (0.75125707976748646, -1.5915501591034089) +description = Marquette city, IA +station = ('kpdc', 0.00090609329182533035) +zone = ('iaz030', 0.0039835078933167451) + +[fips1949755] +centroid = (0.73363693377105255, -1.6215202374336621) +description = Marshalltown city, IA +station = ('kmiw', 0.0014438701359342661) +zone = ('iaz049', 0.0011998202542296439) + +[fips1949845] +centroid = (0.73339510094989613, -1.5944937790599449) +description = Martelle city, IA +station = ('kmxo', 0.004463712271503959) +zone = ('iaz053', 0.0034195590438408636) + +[fips1949890] +centroid = (0.72210535141690824, -1.636047659995562) +description = Martensdale city, IA +station = ('kdsm', 0.0029426800461626336) +zone = ('iaz073', 0.0024210107095612048) + +[fips1949935] +centroid = (0.7187033032790433, -1.6100997103798222) +description = Martinsburg city, IA +station = ('kotm', 0.0029434743513619389) +zone = ('iaz076', 0.0029157768719866271) + +[fips1950070] +centroid = (0.7187728371964428, -1.6223471220733794) +description = Marysville city, IA +station = ('koxv', 0.0029618102080221078) +zone = ('iaz085', 0.0028922644499937899) + +[fips1950160] +centroid = (0.75308529470565799, -1.6266432849337484) +description = Mason City city, IA +station = ('kmcw', 0.0017005793482758086) +zone = ('iaz017', 0.0014042422872653447) + +[fips1950205] +centroid = (0.74141321334672816, -1.5985732767469716) +description = Masonville city, IA +station = ('kiib', 0.0044318448409520535) +zone = ('iaz040', 0.0031758973225949438) + +[fips1950250] +centroid = (0.71995955636804376, -1.6540453905223724) +description = Massena city, IA +station = ('kaio', 0.0045034359505426863) +zone = ('iaz070', 0.0025066961365024206) + +[fips1950385] +centroid = (0.75475590641237444, -1.6743729436143777) +description = Matlock city, IA +station = ('kshl', 0.0013741297114774895) +zone = ('iaz012', 0.004191498938560175) + +[fips1950430] +centroid = (0.74990097639197939, -1.6787119543078832) +description = Maurice city, IA +station = ('korc', 0.0015168597899869467) +zone = ('iaz012', 0.0020333308983301332) + +[fips1950520] +centroid = (0.73114257901727231, -1.6300674987531139) +description = Maxwell city, IA +station = ('kamw', 0.0032839262312692086) +zone = ('iaz048', 0.0026819381121173337) + +[fips1950610] +centroid = (0.74654867013779624, -1.6035738370401529) +description = Maynard city, IA +station = ('kolz', 0.0020439276052900113) +zone = ('iaz029', 0.0016023035844991175) + +[fips1950655] +centroid = (0.72692333281703858, -1.5833346150615912) +description = Maysville city, IA +station = ('kdvn', 0.0018534094667012379) +zone = ('iaz068', 0.0012606940315441563) + +[fips1950700] +centroid = (0.7313905728506882, -1.5926700496179509) +description = Mechanicsville city, IA +station = ('kmxo', 0.0058291617050651636) +zone = ('iaz065', 0.0028075639492210159) + +[fips1950790] +centroid = (0.71572268234236491, -1.5911074912452254) +description = Mediapolis city, IA +station = ('kbrl', 0.0042292022166441068) +zone = ('iaz089', 0.0014965107899896353) + +[fips1950880] +centroid = (0.73201810598324268, -1.6249471914199529) +description = Melbourne city, IA +station = ('kmiw', 0.0038927002927595078) +zone = ('iaz049', 0.0021259890886410259) + +[fips1950935] +centroid = (0.71955434327560819, -1.6273650483926181) +description = Melcher-Dallas city, IA +station = ('koxv', 0.0020667521481882124) +zone = ('iaz074', 0.00263389571595873) + +[fips1950970] +centroid = (0.71521889305377684, -1.6240429014279096) +description = Melrose city, IA +station = ('kcnc', 0.0042668207297204396) +zone = ('iaz085', 0.0025527147980256262) + +[fips1951060] +centroid = (0.75549149287891992, -1.6686856660737064) +description = Melvin city, IA +station = ('kshl', 0.0031052567636223882) +zone = ('iaz002', 0.001617637411099139) + +[fips1951105] +centroid = (0.72469814274050093, -1.6476650078291495) +description = Menlo city, IA +station = ('kpro', 0.0062456680719860909) +zone = ('iaz058', 0.0030910653955205166) + +[fips1951150] +centroid = (0.74690347812143421, -1.6691106537465672) +description = Meriden city, IA +station = ('kckp', 0.0014754863356623421) +zone = ('iaz021', 0.0010314111408852482) + +[fips1951375] +centroid = (0.74561427321615603, -1.6799228811962095) +description = Merrill city, IA +station = ('klrj', 0.0012556959980508941) +zone = ('iaz020', 0.00057587347952639219) + +[fips1951420] +centroid = (0.74901928841374943, -1.6314183312342798) +description = Meservey city, IA +station = ('kmcw', 0.004463500777380414) +zone = ('iaz017', 0.0039690347530310088) + +[fips1951510] +centroid = (0.75855173573607426, -1.6179387694486922) +description = Meyer CDP, IA +station = ('kaum', 0.0046272950762595959) +zone = ('iaz008', 0.0021519453408684391) + +[fips1951600] +centroid = (0.7294494002033276, -1.6039787185200305) +description = Middle Amana CDP, IA +station = ('kcid', 0.0028581640630490636) +zone = ('iaz063', 0.002853254370927644) + +[fips1951735] +centroid = (0.71257152528447421, -1.5928262391327119) +description = Middletown city, IA +station = ('kbrl', 0.0020053531340756361) +zone = ('iaz089', 0.0019834148165545759) + +[fips1952050] +centroid = (0.73388967490003376, -1.5763041844884629) +description = Miles city, IA +station = ('ksfy', 0.0026937092717359543) +zone = ('iaz066', 0.0038485968459306338) + +[fips1952095] +centroid = (0.75613546701302836, -1.6607408051455808) +description = Milford city, IA +station = ('kspw', 0.0028506889091112096) +zone = ('iaz003', 0.00095221385203335211) + +[fips1952140] +centroid = (0.75375030005725285, -1.633762674938851) +description = Miller CDP, IA +station = ('kfxy', 0.0007715523791184144) +zone = ('iaz016', 0.0024397693701199781) + +[fips1952230] +centroid = (0.72558873189791606, -1.6084808476854275) +description = Millersburg city, IA +station = ('kooa', 0.0074741722979614336) +zone = ('iaz063', 0.0023212751258133262) + +[fips1952275] +centroid = (0.71295558498637557, -1.6284917805978283) +description = Millerton city, IA +station = ('kcnc', 0.00331023211168157) +zone = ('iaz095', 0.0019384848870811814) + +[fips1952410] +centroid = (0.7453191205863513, -1.5895828414238533) +description = Millville city, IA +station = ('kpdc', 0.0055897658801934329) +zone = ('iaz030', 0.0041938454238142041) + +[fips1952455] +centroid = (0.72062410793403309, -1.6308246400359214) +description = Milo city, IA +station = ('koxv', 0.0042362241651838582) +zone = ('iaz073', 0.0017866693821434938) + +[fips1952500] +centroid = (0.70984842767892753, -1.6085402412398728) +description = Milton city, IA +station = ('kffl', 0.0070199176853486473) +zone = ('iaz098', 0.0031544446315216637) + +[fips1952545] +centroid = (0.72881183142757389, -1.6411044897038281) +description = Minburn city, IA +station = ('kpro', 0.0021260677891958156) +zone = ('iaz059', 0.0012817696138274944) + +[fips1952590] +centroid = (0.7237594697621933, -1.6675055267933854) +description = Minden city, IA +station = ('khnr', 0.0033201594371878138) +zone = ('iaz069', 0.0023032489442410646) + +[fips1952635] +centroid = (0.71805388371766876, -1.670198377842995) +description = Mineola CDP, IA +station = ('kcbf', 0.0023776900013122272) +zone = ('iaz079', 0.0021249678259050372) + +[fips1952815] +centroid = (0.72895782821950328, -1.6280888189801277) +description = Mingo city, IA +station = ('kikv', 0.0039214961486228207) +zone = ('iaz061', 0.0032941298668516528) + +[fips1952860] +centroid = (0.72532084131102748, -1.6738130943502154) +description = Missouri Valley city, IA +station = ('kbta', 0.0037252862441159093) +zone = ('iaz055', 0.0024528677801110054) + +[fips1952905] +centroid = (0.75608397980009456, -1.6209025130515038) +description = Mitchell city, IA +station = ('kccy', 0.0054842654480724657) +zone = ('iaz008', 0.0012131871460888011) + +[fips1952950] +centroid = (0.72724585220951454, -1.6295082429008974) +description = Mitchellville city, IA +station = ('kikv', 0.0026592892647528885) +zone = ('iaz060', 0.0027472549827846451) + +[fips1952995] +centroid = (0.72637449658045639, -1.6757258704906461) +description = Modale city, IA +station = ('ktqe', 0.0034205326243662341) +zone = ('iaz055', 0.0027863599372541978) + +[fips1953085] +centroid = (0.75892654519294012, -1.6222856341238316) +description = Mona CDP, IA +station = ('kaum', 0.0032075921331684415) +zone = ('iaz008', 0.003011841030379994) + +[fips1953175] +centroid = (0.72797752913853564, -1.6758912578905651) +description = Mondamin city, IA +station = ('ktqe', 0.0023279050074450835) +zone = ('iaz055', 0.0027106119345941342) + +[fips1953265] +centroid = (0.73434908046574365, -1.5861929233242897) +description = Monmouth city, IA +station = ('kmxo', 0.0046019292827172943) +zone = ('iaz054', 0.0043284193789174764) + +[fips1953310] +centroid = (0.75138646102493678, -1.5950774171618118) +description = Monona city, IA +station = ('kpdc', 0.0034378080367881638) +zone = ('iaz030', 0.0036610908431260612) + +[fips1953355] +centroid = (0.72464213512480435, -1.6249669485470855) +description = Monroe city, IA +station = ('kpea', 0.0030459035529946808) +zone = ('iaz061', 0.002988081158004874) + +[fips1953490] +centroid = (0.72576010577716932, -1.6149152483189999) +description = Montezuma city, IA +station = ('kggi', 0.0034447537204700491) +zone = ('iaz062', 0.0018054288946600314) + +[fips1953625] +centroid = (0.73706866995949383, -1.5914595416086452) +description = Monticello city, IA +station = ('kmxo', 0.00022683039814887002) +zone = ('iaz053', 0.0020319389771861814) + +[fips1953670] +centroid = (0.73269377529656721, -1.6181819112667877) +description = Montour city, IA +station = ('kmiw', 0.0035354812916165296) +zone = ('iaz050', 0.0029341854032148827) + +[fips1953760] +centroid = (0.7073243325146934, -1.5955201373798726) +description = Montrose city, IA +station = ('keok', 0.0010711234373338015) +zone = ('iaz099', 0.0021768867084851506) + +[fips1953850] +centroid = (0.73171778717885194, -1.6729105671407165) +description = Moorhead city, IA +station = ('ktqe', 0.0051259615689595566) +zone = ('iaz043', 0.0026349931718313477) + +[fips1953895] +centroid = (0.7407420644361663, -1.6457653914712789) +description = Moorland city, IA +station = ('kfod', 0.0023818658468525507) +zone = ('iaz035', 0.0014825728300887093) + +[fips1953985] +centroid = (0.71369518571020074, -1.6200143149951638) +description = Moravia city, IA +station = ('ktvk', 0.0038435613310544921) +zone = ('iaz085', 0.0024933226646468311) + +[fips1954030] +centroid = (0.73314349428492864, -1.5925408952533036) +description = Morley city, IA +station = ('kmxo', 0.0040975961606598225) +zone = ('iaz053', 0.0024981320630132371) + +[fips1954120] +centroid = (0.71722740050367928, -1.5926274461309098) +description = Morning Sun city, IA +station = ('kmpz', 0.0042858607706358414) +zone = ('iaz078', 0.0021742630783889048) + +[fips1954165] +centroid = (0.73902534113061213, -1.617451421161658) +description = Morrison city, IA +station = ('kalo', 0.0050421108135126269) +zone = ('iaz038', 0.0018344186896263146) + +[fips1954390] +centroid = (0.71009432711724119, -1.6175104831035454) +description = Moulton city, IA +station = ('ktvk', 0.0029592935957009135) +zone = ('iaz096', 0.0027350975929837551) + +[fips1954435] +centroid = (0.73753135674419756, -1.6073490540253867) +description = Mount Auburn city, IA +station = ('kvti', 0.001114547815774231) +zone = ('iaz051', 0.0031171215848149968) + +[fips1954480] +centroid = (0.71059877963094509, -1.6447660333948793) +description = Mount Ayr city, IA +station = ('kcsq', 0.0055430229002781176) +zone = ('iaz093', 0.00037269717273570211) + +[fips1954705] +centroid = (0.71492534612688385, -1.5977993977566372) +description = Mount Pleasant city, IA +station = ('kmpz', 0.00054713657665703488) +zone = ('iaz088', 0.00044973126325426895) + +[fips1954750] +centroid = (0.70891965071747887, -1.6045987816433867) +description = Mount Sterling city, IA +station = ('kffl', 0.0075630778408840339) +zone = ('iaz098', 0.0023643938157040106) + +[fips1954795] +centroid = (0.71659051240633409, -1.5950709419902869) +description = Mount Union city, IA +station = ('kmpz', 0.0025018812830408018) +zone = ('iaz088', 0.0023621936243521185) + +[fips1954840] +centroid = (0.73170572695372083, -1.5956456789129685) +description = Mount Vernon city, IA +station = ('kcid', 0.0038693297065972186) +zone = ('iaz052', 0.0035358072923159052) + +[fips1954930] +centroid = (0.74158036352919166, -1.6767012826497083) +description = Moville city, IA +station = ('ksux', 0.0044650415394639235) +zone = ('iaz031', 0.0017655762523749528) + +[fips1955065] +centroid = (0.71630677422983746, -1.6397173718275129) +description = Murray city, IA +station = ('ki75', 0.0035425557469726267) +zone = ('iaz083', 0.0021670066816882835) + +[fips1955110] +centroid = (0.72291762765078638, -1.5894685572644327) +description = Muscatine city, IA +station = ('kmut', 0.0014043600208921395) +zone = ('iaz067', 0.001246254606154066) + +[fips1955200] +centroid = (0.71173099217000624, -1.622189501388632) +description = Mystic city, IA +station = ('ktvk', 0.0018288495638379713) +zone = ('iaz096', 0.0011838417938938521) + +[fips1955335] +centroid = (0.7496257728755249, -1.615171986251968) +description = Nashua city, IA +station = ('kccy', 0.0022390563092281055) +zone = ('iaz019', 0.0034509113081561968) + +[fips1955515] +centroid = (0.74202589372734828, -1.6596137064212277) +description = Nemaha city, IA +station = ('kslb', 0.002377622020554217) +zone = ('iaz033', 0.0022573395303660451) + +[fips1955560] +centroid = (0.72346744127174956, -1.6688384172898409) +description = Neola city, IA +station = ('kcbf', 0.0037742871381787938) +zone = ('iaz069', 0.0022386554170051136) + +[fips1955695] +centroid = (0.73335605793452896, -1.631198192855726) +description = Nevada city, IA +station = ('kamw', 0.002111603274546158) +zone = ('iaz048', 0.0003190106615148777) + +[fips1955785] +centroid = (0.75916551567412316, -1.5932789251808017) +description = New Albin city, IA +station = ('ky51', 0.0051305281347823516) +zone = ('iaz011', 0.0038832948660217871) + +[fips1955965] +centroid = (0.74368064039116411, -1.6581319044329921) +description = Newell city, IA +station = ('kslb', 0.0029515220760519645) +zone = ('iaz022', 0.0028966903747969434) + +[fips1956055] +centroid = (0.73292185492321793, -1.6051329047543745) +description = Newhall city, IA +station = ('kvti', 0.0040041983199377009) +zone = ('iaz051', 0.0019796922008033136) + +[fips1956100] +centroid = (0.75148931327775681, -1.6112243830965147) +description = New Hampton city, IA +station = ('kccy', 0.0038330329279228498) +zone = ('iaz019', 5.3605170609511035e-05) + +[fips1956145] +centroid = (0.74292686759381277, -1.6165800655325997) +description = New Hartford city, IA +station = ('kalo', 0.0028841752278793028) +zone = ('iaz027', 0.0035903914211000837) + +[fips1956190] +centroid = (0.755446952076409, -1.6169112243048731) +description = New Haven CDP, IA +station = ('kccy', 0.0038057105027626335) +zone = ('iaz008', 0.0022539014429909295) + +[fips1956280] +centroid = (0.72808085263025379, -1.5861202478142367) +description = New Liberty city, IA +station = ('kdvn', 0.0042146214258110479) +zone = ('iaz065', 0.0034557863033834596) + +[fips1956325] +centroid = (0.71424409175995296, -1.5952504141972694) +description = New London city, IA +station = ('kmpz', 0.0015071592345040187) +zone = ('iaz088', 0.0022029885851614335) + +[fips1956370] +centroid = (0.71091737203260408, -1.6563181931809046) +description = New Market city, IA +station = ('kicl', 0.0017847527950675373) +zone = ('iaz091', 0.0033102589326958112) + +[fips1956415] +centroid = (0.73794590734813115, -1.6261553606880612) +description = New Providence city, IA +station = ('kifa', 0.0035301085148888235) +zone = ('iaz037', 0.0019975035965173085) + +[fips1956460] +centroid = (0.72378983849117806, -1.6170636788150348) +description = New Sharon city, IA +station = ('kggi', 0.0043123525426322033) +zone = ('iaz075', 0.0023598983004087136) + +[fips1956505] +centroid = (0.7277416827967137, -1.6238624692898385) +description = Newton city, IA +station = ('ktnu', 0.00038631613347169853) +zone = ('iaz061', 0.00025200439625851126) + +[fips1956550] +centroid = (0.7425970352717709, -1.590239451741746) +description = New Vienna city, IA +station = ('kmxo', 0.0055281447993215911) +zone = ('iaz042', 0.0032825512039052975) + +[fips1956595] +centroid = (0.7187547904919771, -1.6359152767717984) +description = New Virginia city, IA +station = ('ki75', 0.0023931659759625738) +zone = ('iaz083', 0.0027568946853399) + +[fips1956685] +centroid = (0.72395721556644421, -1.5936242385733086) +description = Nichols city, IA +station = ('kmut', 0.0028572908945915126) +zone = ('iaz067', 0.0025539388018489375) + +[fips1956865] +centroid = (0.71447756445399213, -1.6562368782910541) +description = Nodaway city, IA +station = ('kicl', 0.0042481686988543564) +zone = ('iaz081', 0.0030471237731056902) + +[fips1956910] +centroid = (0.75302169490771531, -1.6233128476550931) +description = Nora Springs city, IA +station = ('kmcw', 0.0041312620486615584) +zone = ('iaz018', 0.0031712633235924819) + +[fips1957045] +centroid = (0.70874359935583009, -1.6631877393035841) +description = Northboro city, IA +station = ('ksda', 0.0029652292955163798) +zone = ('iaz091', 0.0029730932321194357) + +[fips1957135] +centroid = (0.74484854491342867, -1.5875585561975127) +description = North Buena Vista city, IA +station = ('kdbq', 0.0058764917189048386) +zone = ('iaz042', 0.0037641336502488962) + +[fips1957225] +centroid = (0.72459787357497374, -1.6070578283863988) +description = North English city, IA +station = ('kawg', 0.0067449593845083644) +zone = ('iaz063', 0.0029694687464112694) + +[fips1957360] +centroid = (0.72857670067074531, -1.5989748071946852) +description = North Liberty city, IA +station = ('kiow', 0.0021124777059372377) +zone = ('iaz064', 0.0013175455247834147) + +[fips1957495] +centroid = (0.75253865758393335, -1.6129528350146425) +description = North Washington city, IA +station = ('kccy', 0.0027132358371825004) +zone = ('iaz019', 0.0015968369411473388) + +[fips1957630] +centroid = (0.75824176526092002, -1.626937390366002) +description = Northwood city, IA +station = ('kael', 0.0045869984425645329) +zone = ('iaz007', 0.0012915583895133061) + +[fips1957675] +centroid = (0.72416641073058829, -1.6354104926455364) +description = Norwalk city, IA +station = ('kdsm', 0.00086209935044940871) +zone = ('iaz073', 0.0033071802968821155) + +[fips1957720] +centroid = (0.73133172034831084, -1.6043531963643385) +description = Norway city, IA +station = ('kcid', 0.0026966131408775961) +zone = ('iaz051', 0.0036167714853236701) + +[fips1957945] +centroid = (0.71009429221065612, -1.6228069290648175) +description = Numa city, IA +station = ('ktvk', 0.0010628673844770284) +zone = ('iaz096', 0.0017846446032713692) + +[fips1958080] +centroid = (0.72095421950875538, -1.6649827929859677) +description = Oakland city, IA +station = ('khnr', 0.0048879966664286774) +zone = ('iaz069', 0.0019761013236959972) + +[fips1958170] +centroid = (0.72816017784475695, -1.6200091662738705) +description = Oakland Acres city, IA +station = ('kggi', 0.0011827705839590008) +zone = ('iaz061', 0.0031082234013515217) + +[fips1958395] +centroid = (0.71729520654511936, -1.5890138989942881) +description = Oakville city, IA +station = ('kmut', 0.004892158909062431) +zone = ('iaz078', 0.003531782267874436) + +[fips1958530] +centroid = (0.75778906175953775, -1.6674269346171682) +description = Ocheyedan city, IA +station = ('kotg', 0.0040902617551267697) +zone = ('iaz002', 0.001304980791640261) + +[fips1958575] +centroid = (0.73848010027228916, -1.6625000097651284) +description = Odebolt city, IA +station = ('kslb', 0.0050373559543229786) +zone = ('iaz033', 0.0023167154793345122) + +[fips1958620] +centroid = (0.74475860809707339, -1.6041802865953434) +description = Oelwein city, IA +station = ('kolz', 0.00080801098451724687) +zone = ('iaz029', 0.0034466298122538381) + +[fips1958665] +centroid = (0.73372634698863215, -1.6411058336073518) +description = Ogden city, IA +station = ('kbnw', 0.002320127099662003) +zone = ('iaz047', 0.001253645683298056) + +[fips1958710] +centroid = (0.75726654508807567, -1.6604485323090417) +description = Okoboji city, IA +station = ('kspw', 0.0039974089785939195) +zone = ('iaz003', 0.00025516177079842932) + +[fips1958890] +centroid = (0.71792663176190585, -1.597748207249676) +description = Olds city, IA +station = ('kawg', 0.0030598277302945529) +zone = ('iaz088', 0.0025528279524886289) + +[fips1958980] +centroid = (0.73299418136742045, -1.5907147572569418) +description = Olin city, IA +station = ('kmxo', 0.004129678830067712) +zone = ('iaz053', 0.0021632062874144134) + +[fips1959070] +centroid = (0.71906078161643683, -1.6073139554541289) +description = Ollie city, IA +station = ('kffl', 0.0029713378997753173) +zone = ('iaz076', 0.0026500794029294386) + +[fips1959115] +centroid = (0.73350530103886702, -1.6770956921540736) +description = Onawa city, IA +station = ('ktqe', 0.0046969088287313384) +zone = ('iaz043', 0.0017463288680098017) + +[fips1959250] +centroid = (0.73491112884476351, -1.5885158692922317) +description = Onslow city, IA +station = ('kmxo', 0.002945214069027403) +zone = ('iaz053', 0.0015231576938013306) + +[fips1959475] +centroid = (0.75053617151995022, -1.6765075336494442) +description = Orange City city, IA +station = ('korc', 0.00035832085287693539) +zone = ('iaz012', 0.0020827014439354493) + +[fips1959520] +centroid = (0.75446021273050157, -1.6192346764182979) +description = Orchard city, IA +station = ('kccy', 0.0034568270275011606) +zone = ('iaz008', 0.0022585205292586764) + +[fips1959565] +centroid = (0.71913303824746933, -1.647903192912169) +description = Orient city, IA +station = ('kcsq', 0.0033260999479774967) +zone = ('iaz071', 0.0023303203120258703) + +[fips1959655] +centroid = (0.75820614309088685, -1.6596663106448828) +description = Orleans city, IA +station = ('kmjq', 0.0038810909017926638) +zone = ('iaz003', 0.0013468688444391698) + +[fips1959745] +centroid = (0.75542473403503119, -1.6198643039459548) +description = Osage city, IA +station = ('kccy', 0.0045113842045495789) +zone = ('iaz008', 0.001317943030278209) + +[fips1959835] +centroid = (0.71610894115912382, -1.6367634544283902) +description = Osceola city, IA +station = ('ki75', 0.0013572149670016572) +zone = ('iaz083', 7.4084881057586647e-05) + +[fips1959925] +centroid = (0.72065409269058245, -1.6168468216554743) +description = Oskaloosa city, IA +station = ('kooa', 0.0022077705637981388) +zone = ('iaz075', 0.00078013418150280674) + +[fips1959970] +centroid = (0.75305246506242796, -1.6015988573651811) +description = Ossian city, IA +station = ('kdeh', 0.0024176910734745637) +zone = ('iaz010', 0.0027038840772943642) + +[fips1960015] +centroid = (0.74580337964060972, -1.5910043422864326) +description = Osterdock city, IA +station = ('kpdc', 0.0050888543821699219) +zone = ('iaz030', 0.0030723676922291463) + +[fips1960105] +centroid = (0.74040757208502161, -1.643215936673013) +description = Otho city, IA +station = ('kfod', 0.0022725440231632305) +zone = ('iaz035', 0.00042937300003896166) + +[fips1960240] +centroid = (0.73796152804493653, -1.6736756147650358) +description = Oto city, IA +station = ('ksux', 0.0065493477432432938) +zone = ('iaz031', 0.0027001391904001074) + +[fips1960285] +centroid = (0.75853522492135039, -1.622914668239543) +description = Otranto CDP, IA +station = ('kaum', 0.0036534875476833999) +zone = ('iaz008', 0.0030931183437560026) + +[fips1960420] +centroid = (0.74871287841026923, -1.6471640285206568) +description = Ottosen city, IA +station = ('kaxa', 0.0035192811627511012) +zone = ('iaz024', 0.0030244580913724064) + +[fips1960465] +centroid = (0.71597484751269314, -1.6130926707943121) +description = Ottumwa city, IA +station = ('kotm', 0.0013999400481685771) +zone = ('iaz086', 0.00023303265872685598) + +[fips1960555] +centroid = (0.74057266277896772, -1.6267340595081448) +description = Owasa city, IA +station = ('kifa', 0.0010713989400964799) +zone = ('iaz037', 0.0009522230220988221) + +[fips1960645] +centroid = (0.72819841800866802, -1.6020597115541702) +description = Oxford city, IA +station = ('kcid', 0.0029668673929011146) +zone = ('iaz064', 0.0027942738307282938) + +[fips1960690] +centroid = (0.73275419859527124, -1.587448460828297) +description = Oxford Junction city, IA +station = ('kmxo', 0.0051531438985438207) +zone = ('iaz053', 0.0033222027349544226) + +[fips1960780] +centroid = (0.74734668703168572, -1.6765296993309446) +description = Oyens city, IA +station = ('klrj', 0.001882480846273755) +zone = ('iaz020', 0.0024594368043089117) + +[fips1960825] +centroid = (0.71589896059681635, -1.6720177788684438) +description = Pacific Junction city, IA +station = ('kpmv', 0.0019580634597819281) +zone = ('iaz079', 0.00236084218760407) + +[fips1960915] +centroid = (0.71790148156738465, -1.6071423895886581) +description = Packwood city, IA +station = ('kffl', 0.001945593323438403) +zone = ('iaz087', 0.0024881409802819392) + +[fips1961050] +centroid = (0.74403145157081496, -1.6510548212089577) +description = Palmer city, IA +station = ('kfod', 0.0055133873447856165) +zone = ('iaz023', 0.0020915729864462427) + +[fips1961230] +centroid = (0.7341345096875036, -1.6021814482694969) +description = Palo city, IA +station = ('kcid', 0.0033064222837408171) +zone = ('iaz051', 0.0034783244645046375) + +[fips1961275] +centroid = (0.72826220979282852, -1.6663614111088256) +description = Panama city, IA +station = ('khnr', 0.0030443534572918789) +zone = ('iaz056', 0.0022694922887221388) + +[fips1961320] +centroid = (0.72764556751480636, -1.6469572768174658) +description = Panora city, IA +station = ('kpro', 0.0035940016358787853) +zone = ('iaz058', 0.0017939649699470006) + +[fips1961365] +centroid = (0.72528226953455843, -1.5787148507046098) +description = Panorama Park city, IA +station = ('kmli', 0.0020187089936991704) +zone = ('ilz015', 0.0021397761659972493) + +[fips1961590] +centroid = (0.74305647574406586, -1.61929543132956) +description = Parkersburg city, IA +station = ('kalo', 0.0048874327141721994) +zone = ('iaz027', 0.0027545327860323036) + +[fips1961725] +centroid = (0.72766640674607519, -1.580209655395773) +description = Park View CDP, IA +station = ('kdvn', 0.0014379292364108088) +zone = ('iaz068', 0.0014562661383203551) + +[fips1961770] +centroid = (0.72577179948315773, -1.6057824639420892) +description = Parnell city, IA +station = ('kcid', 0.0064354802366174023) +zone = ('iaz063', 0.0019603831705499414) + +[fips1961815] +centroid = (0.73589991022589574, -1.6450586552972688) +description = Paton city, IA +station = ('kpro', 0.0059572927689575282) +zone = ('iaz046', 0.0028901066873944924) + +[fips1961860] +centroid = (0.72166413218200409, -1.6385241774843871) +description = Patterson city, IA +station = ('kdsm', 0.0042728197823790537) +zone = ('iaz072', 0.0017952913707013748) + +[fips1961905] +centroid = (0.7501360896955156, -1.6700012778105673) +description = Paullina city, IA +station = ('kshl', 0.0045536472228852745) +zone = ('iaz013', 0.0019678566611953693) + +[fips1962040] +centroid = (0.72264519920784254, -1.621724964554921) +description = Pella city, IA +station = ('kpea', 0.00021572961255456486) +zone = ('iaz074', 0.0026738615827697938) + +[fips1962130] +centroid = (0.74084676673799332, -1.5855578678226592) +description = Peosta city, IA +station = ('kdbq', 0.0020521793218063605) +zone = ('iaz042', 0.00060167728782340585) + +[fips1962175] +centroid = (0.71124381841589712, -1.6722569587891372) +description = Percival CDP, IA +station = ('kafk', 0.0026845444831463815) +zone = ('iaz090', 0.002759498987407326) + +[fips1962355] +centroid = (0.73026398027181827, -1.6423133920102218) +description = Perry city, IA +station = ('kpro', 0.0008336877940907419) +zone = ('iaz059', 0.0028272923985879421) + +[fips1962445] +centroid = (0.72568327638349661, -1.6680183568874991) +description = Persia city, IA +station = ('khnr', 0.0030134513050440416) +zone = ('iaz055', 0.0036928609459181056) + +[fips1962625] +centroid = (0.74906768639390708, -1.6640261431163645) +description = Peterson city, IA +station = ('kckp', 0.0042589902374266788) +zone = ('iaz014', 0.0037596443466348718) + +[fips1962760] +centroid = (0.74251198537732122, -1.6731647045330995) +description = Pierson city, IA +station = ('kckp', 0.0051624852363874527) +zone = ('iaz031', 0.0035339292016639125) + +[fips1962850] +centroid = (0.73581793211092961, -1.6409294157265604) +description = Pilot Mound city, IA +station = ('kbnw', 0.002896147305867661) +zone = ('iaz047', 0.0024164004030750984) + +[fips1962985] +centroid = (0.74444446628500682, -1.6474318492943754) +description = Pioneer city, IA +station = ('kfod', 0.0032210203121800958) +zone = ('iaz024', 0.003184631376484913) + +[fips1963075] +centroid = (0.73007881829147425, -1.6742312752389932) +description = Pisgah city, IA +station = ('ktqe', 0.0035236067869458812) +zone = ('iaz055', 0.0029444721446444111) + +[fips1963210] +centroid = (0.74777802770302348, -1.6150561312962208) +description = Plainfield city, IA +station = ('kccy', 0.0040120216415549161) +zone = ('iaz028', 0.0030421947954143865) + +[fips1963345] +centroid = (0.71131631939302498, -1.6239755491720751) +description = Plano city, IA +station = ('ktvk', 0.002347638640270453) +zone = ('iaz096', 0.0023664154606632265) + +[fips1963525] +centroid = (0.72604361706086329, -1.6320293535521104) +description = Pleasant Hill city, IA +station = ('kikv', 0.0017523570462143088) +zone = ('iaz060', 0.0017279297409816363) + +[fips1963570] +centroid = (0.708297946984626, -1.6361241403233846) +description = Pleasanton city, IA +station = ('klwd', 0.0022615934187590024) +zone = ('iaz094', 0.0027690204725100936) + +[fips1963615] +centroid = (0.71815439722929109, -1.6032529931637587) +description = Pleasant Plain city, IA +station = ('kffl', 0.0023507558952623464) +zone = ('iaz087', 0.0023316728459833779) + +[fips1963750] +centroid = (0.72232407607876814, -1.6279155252386972) +description = Pleasantville city, IA +station = ('koxv', 0.0025375063367615251) +zone = ('iaz074', 0.0024417495900678453) + +[fips1963840] +centroid = (0.74833979682936291, -1.6514694067194764) +description = Plover city, IA +station = ('kaxa', 0.0057979872833286792) +zone = ('iaz023', 0.0025926803355275385) + +[fips1963885] +centroid = (0.75479266304642145, -1.6253072179380543) +description = Plymouth city, IA +station = ('kmcw', 0.0031587724583909834) +zone = ('iaz007', 0.002877657411255985) + +[fips1963975] +centroid = (0.7459037360725993, -1.652235676074272) +description = Pocahontas city, IA +station = ('kaxa', 0.007911027467516268) +zone = ('iaz023', 0.00017205268682856181) + +[fips1964020] +centroid = (0.72905926675562926, -1.6355283721832161) +description = Polk City city, IA +station = ('kikv', 0.00234953384659752) +zone = ('iaz060', 0.0023225054316508027) + +[fips1964065] +centroid = (0.74267164809729369, -1.6524397050638302) +description = Pomeroy city, IA +station = ('kfod', 0.0063579184461940033) +zone = ('iaz034', 0.0029497500532924504) + +[fips1964110] +centroid = (0.74340346465265494, -1.6306231243204863) +description = Popejoy city, IA +station = ('kifa', 0.0029656291385696427) +zone = ('iaz026', 0.0032188157157195204) + +[fips1964155] +centroid = (0.75271816469750097, -1.625374849446569) +description = Portland CDP, IA +station = ('kmcw', 0.0026552814606882473) +zone = ('iaz017', 0.0018829878083169089) + +[fips1964200] +centroid = (0.72693464255059148, -1.6671296701389684) +description = Portsmouth city, IA +station = ('khnr', 0.0026120373688537876) +zone = ('iaz056', 0.0027942962710662501) + +[fips1964290] +centroid = (0.75195676481131835, -1.5981668070174744) +description = Postville city, IA +station = ('kdeh', 0.004065162533713044) +zone = ('iaz011', 0.0042521834471954522) + +[fips1964425] +centroid = (0.73718754433484712, -1.5956818595883626) +description = Prairieburg city, IA +station = ('kmxo', 0.0033499192099928619) +zone = ('iaz052', 0.0035635132765965563) + +[fips1964470] +centroid = (0.7259744671158993, -1.6273303163405035) +description = Prairie City city, IA +station = ('ktnu', 0.0032839543418732506) +zone = ('iaz061', 0.0028911903381868462) + +[fips1964560] +centroid = (0.71600045149281977, -1.6513080161235445) +description = Prescott city, IA +station = ('kcsq', 0.003245874259685603) +zone = ('iaz081', 0.0011388655838458434) + +[fips1964605] +centroid = (0.73389428256925904, -1.5777315845639139) +description = Preston city, IA +station = ('ksfy', 0.0037536035906304203) +zone = ('iaz054', 0.0031345414450910346) + +[fips1964650] +centroid = (0.75199917631214186, -1.6688995910801234) +description = Primghar city, IA +station = ('kshl', 0.0035337213446067) +zone = ('iaz013', 6.8944970821958776e-05) + +[fips1964740] +centroid = (0.72735285834595442, -1.5770321962260545) +description = Princeton city, IA +station = ('kcwi', 0.0027940102584413052) +zone = ('iaz066', 0.0045188518702715553) + +[fips1964875] +centroid = (0.71116808857965308, -1.6257621554608792) +description = Promise City city, IA +station = ('ktvk', 0.0034989434705330674) +zone = ('iaz095', 0.0023585141406890636) + +[fips1965010] +centroid = (0.75426895955106799, -1.6072587855964735) +description = Protivin city, IA +station = ('kdeh', 0.0046715477832082932) +zone = ('iaz009', 0.0037943609143437588) + +[fips1965055] +centroid = (0.71019468354923077, -1.6105210852211311) +description = Pulaski city, IA +station = ('kffl', 0.0073587147807108108) +zone = ('iaz097', 0.0020245819597737606) + +[fips1965235] +centroid = (0.73991483073059849, -1.6014739616039084) +description = Quasqueton city, IA +station = ('kiib', 0.0024649419186687578) +zone = ('iaz040', 0.0016910173480644286) + +[fips1965280] +centroid = (0.74401867576069036, -1.6693003186763813) +description = Quimby city, IA +station = ('kckp', 0.0021162257105169155) +zone = ('iaz021', 0.0018775498794770767) + +[fips1965370] +centroid = (0.73858337140412955, -1.6307363612823556) +description = Radcliffe city, IA +station = ('kifa', 0.0033985822336431138) +zone = ('iaz037', 0.0027543458400711603) + +[fips1965415] +centroid = (0.75887905478399331, -1.6392162528926804) +description = Rake city, IA +station = ('kfxy', 0.0057996553262634346) +zone = ('iaz006', 0.0029651895991957625) + +[fips1965505] +centroid = (0.73376737967934647, -1.6515928713107626) +description = Ralston city, IA +station = ('kcin', 0.0020015634360373664) +zone = ('iaz046', 0.0030140382766568126) + +[fips1965550] +centroid = (0.74811087944467136, -1.6037210381092661) +description = Randalia city, IA +station = ('kolz', 0.0033831818621766411) +zone = ('iaz029', 0.00053952346755820773) + +[fips1965595] +centroid = (0.73717686291982487, -1.633674116932605) +description = Randall city, IA +station = ('kamw', 0.0044331911975434082) +zone = ('iaz036', 0.0028900307980127896) + +[fips1965640] +centroid = (0.71337601734988854, -1.6679191000129381) +description = Randolph city, IA +station = ('ksda', 0.0029097074439654791) +zone = ('iaz090', 0.0022927837146780919) + +[fips1965730] +centroid = (0.71212390069121523, -1.6211864432142182) +description = Rathbun city, IA +station = ('ktvk', 0.0021307570389538801) +zone = ('iaz096', 0.0010496068618065539) + +[fips1965820] +centroid = (0.74123052973392189, -1.6097098212782193) +description = Raymond city, IA +station = ('kalo', 0.002605269743398204) +zone = ('iaz039', 0.0010161176579384064) + +[fips1965910] +centroid = (0.7453213720610864, -1.6096302866242058) +description = Readlyn city, IA +station = ('kalo', 0.0035002530404795321) +zone = ('iaz028', 0.0017202339700986408) + +[fips1965955] +centroid = (0.72568790150601437, -1.6235561290995284) +description = Reasnor city, IA +station = ('ktnu', 0.0018253286511321057) +zone = ('iaz061', 0.0019126874747307935) + +[fips1966000] +centroid = (0.7087349250694478, -1.6473657013157248) +description = Redding city, IA +station = ('kcsq', 0.0071460567903145755) +zone = ('moz003', 0.0022891817148593002) + +[fips1966045] +centroid = (0.72589297769312366, -1.6440322969773409) +description = Redfield city, IA +station = ('kpro', 0.0042046568310703239) +zone = ('iaz059', 0.0026202596879582856) + +[fips1966135] +centroid = (0.71583160834098192, -1.6619788020906054) +description = Red Oak city, IA +station = ('krdk', 0.00055875217773006887) +zone = ('iaz080', 0.00093867898288127428) + +[fips1966315] +centroid = (0.73865215482995072, -1.616133557950062) +description = Reinbeck city, IA +station = ('kalo', 0.004729102228322719) +zone = ('iaz038', 0.0028601438507269137) + +[fips1966360] +centroid = (0.74744987089706361, -1.6609660573388432) +description = Rembrandt city, IA +station = ('kslb', 0.0040321835047253353) +zone = ('iaz022', 0.001586438504981254) + +[fips1966405] +centroid = (0.74725606953692214, -1.67503793151268) +description = Remsen city, IA +station = ('korc', 0.0031807428135845707) +zone = ('iaz020', 0.0033729854908935123) + +[fips1966450] +centroid = (0.74747069267503974, -1.6402837137164925) +description = Renwick city, IA +station = ('kcav', 0.0030597576869120157) +zone = ('iaz024', 0.0030249807674381803) + +[fips1966540] +centroid = (0.73177861190328408, -1.6263622171110073) +description = Rhodes city, IA +station = ('kmiw', 0.0047801203705531061) +zone = ('iaz049', 0.0030504903634327816) + +[fips1966585] +centroid = (0.75681797801702066, -1.6153599582124081) +description = Riceville city, IA +station = ('kccy', 0.0052253687706261404) +zone = ('iaz008', 0.002993985389885395) + +[fips1966720] +centroid = (0.71882622681826136, -1.6056335349970166) +description = Richland city, IA +station = ('kffl', 0.0023744402630598745) +zone = ('iaz087', 0.0027567761793857275) + +[fips1966810] +centroid = (0.7431863282404142, -1.5860849223501765) +description = Rickardsville city, IA +station = ('kdbq', 0.0038932160057299678) +zone = ('iaz042', 0.0019676767771388006) + +[fips1966855] +centroid = (0.73527387807649791, -1.6680967570774987) +description = Ricketts city, IA +station = ('kdns', 0.0035420585874198114) +zone = ('iaz044', 0.002958689021488783) + +[fips1967035] +centroid = (0.75570796606604473, -1.6055744032419588) +description = Ridgeway city, IA +station = ('kdeh', 0.003305315598370447) +zone = ('iaz010', 0.0018974729465906514) + +[fips1967125] +centroid = (0.73896565087019395, -1.6490731220163659) +description = Rinard city, IA +station = ('kfod', 0.0053452077197669208) +zone = ('iaz034', 0.002158270247593849) + +[fips1967170] +centroid = (0.75563923500010122, -1.6494536037933007) +description = Ringsted city, IA +station = ('kest', 0.0035910480478450377) +zone = ('iaz004', 0.00261642278112823) + +[fips1967215] +centroid = (0.73189005117602379, -1.6441141180126744) +description = Rippey city, IA +station = ('kpro', 0.001894519208095411) +zone = ('iaz046', 0.0031049716215377763) + +[fips1967350] +centroid = (0.72496222850962011, -1.5788873765011695) +description = Riverdale city, IA +station = ('kmli', 0.0016738839331637901) +zone = ('ilz015', 0.0018245121706863818) + +[fips1967440] +centroid = (0.72401598080235896, -1.5982384702365613) +description = Riverside city, IA +station = ('kiow', 0.0026389121252383438) +zone = ('iaz077', 0.0032023848864260254) + +[fips1967530] +centroid = (0.72959019591408591, -1.6763536305160034) +description = River Sioux CDP, IA +station = ('ktqe', 0.0018687829632946058) +zone = ('iaz055', 0.0036639961700345781) + +[fips1967575] +centroid = (0.71011893625969424, -1.6679869584142555) +description = Riverton city, IA +station = ('ksda', 0.0022926133324472821) +zone = ('iaz090', 0.0011315687939892852) + +[fips1967800] +centroid = (0.73441264535710127, -1.6000125974212136) +description = Robins city, IA +station = ('kcid', 0.003455273414119258) +zone = ('iaz052', 0.00097246598383365999) + +[fips1967890] +centroid = (0.72735113046999489, -1.5907682690518077) +description = Rochester CDP, IA +station = ('kmut', 0.0053671119916627119) +zone = ('iaz065', 0.0017200496173743415) + +[fips1968025] +centroid = (0.75410420046967974, -1.624677346064302) +description = Rock Falls city, IA +station = ('kmcw', 0.0032872876170993038) +zone = ('iaz017', 0.0031111109099861722) + +[fips1968070] +centroid = (0.75140641013828702, -1.62224475851275) +description = Rockford city, IA +station = ('kmcw', 0.0052001341110105197) +zone = ('iaz018', 0.002029192965839732) + +[fips1968160] +centroid = (0.75792477856217289, -1.6784085811773015) +description = Rock Rapids city, IA +station = ('klyv', 0.0034650932089687219) +zone = ('iaz001', 0.00097316981164996975) + +[fips1968205] +centroid = (0.7540640578968838, -1.6806201576856734) +description = Rock Valley city, IA +station = ('korc', 0.0048172180171824255) +zone = ('iaz012', 0.0025822725234903583) + +[fips1968250] +centroid = (0.75014190164192462, -1.626422186624106) +description = Rockwell city, IA +station = ('kmcw', 0.0035046539236526226) +zone = ('iaz017', 0.0020075023836806202) + +[fips1968295] +centroid = (0.73998754114723653, -1.6515855060213191) +description = Rockwell City city, IA +station = ('kcin', 0.0063960875666618589) +zone = ('iaz034', 0.00027134261365764211) + +[fips1968340] +centroid = (0.75095566140566694, -1.6498105759852109) +description = Rodman city, IA +station = ('kaxa', 0.0034668556646362094) +zone = ('iaz015', 0.0021551251687541391) + +[fips1968385] +centroid = (0.73661196965412445, -1.6746557044064934) +description = Rodney city, IA +station = ('ksux', 0.006396089345193345) +zone = ('iaz043', 0.0026758008422382829) + +[fips1968475] +centroid = (0.7359436307236582, -1.6319306202763251) +description = Roland city, IA +station = ('kamw', 0.0035205637864619867) +zone = ('iaz048', 0.0023251901589322267) + +[fips1968520] +centroid = (0.74723126840825127, -1.649892117767864) +description = Rolfe city, IA +station = ('kaxa', 0.0058057161965184333) +zone = ('iaz023', 0.0023355435636647462) + +[fips1968565] +centroid = (0.71527394073838468, -1.6001388545393027) +description = Rome city, IA +station = ('kmpz', 0.0023257903939997667) +zone = ('iaz088', 0.0018025343880161801) + +[fips1968700] +centroid = (0.72117636501594928, -1.6137959861229885) +description = Rose Hill city, IA +station = ('kooa', 0.0016911358063107145) +zone = ('iaz075', 0.0023366778537496895) + +[fips1968800] +centroid = (0.75093401932294235, -1.6198082090637957) +description = Roseville CDP, IA +station = ('kccy', 0.0025468872978914054) +zone = ('iaz018', 0.00065234074720941918) + +[fips1968925] +centroid = (0.75072983325375153, -1.6613538869519286) +description = Rossie city, IA +station = ('kspw', 0.0026945373440494195) +zone = ('iaz014', 0.001295265297719122) + +[fips1969015] +centroid = (0.74593831104508135, -1.6327627932636761) +description = Rowan city, IA +station = ('kcav', 0.0027782736152424537) +zone = ('iaz025', 0.0023710997490164211) + +[fips1969060] +centroid = (0.73946961469170724, -1.6029888724880546) +description = Rowley city, IA +station = ('kiib', 0.0018260609862662243) +zone = ('iaz040', 0.0017859597412350204) + +[fips1969105] +centroid = (0.75161476754439016, -1.6630161385315281) +description = Royal city, IA +station = ('kspw', 0.0019799972186656484) +zone = ('iaz014', 0.0017228643784679074) + +[fips1969195] +centroid = (0.75271727457958237, -1.6214910206219837) +description = Rudd city, IA +station = ('kccy', 0.0038200474731661552) +zone = ('iaz018', 0.0018865966164388723) + +[fips1969240] +centroid = (0.72455696305730699, -1.6294463186190367) +description = Runnells city, IA +station = ('kikv', 0.0040765804256946) +zone = ('iaz060', 0.0040843796968735571) + +[fips1969285] +centroid = (0.71524303095733188, -1.62666656762597) +description = Russell city, IA +station = ('kcnc', 0.0023678757137992144) +zone = ('iaz084', 0.0018728024470410043) + +[fips1969330] +centroid = (0.75276211208806609, -1.6562904075392129) +description = Ruthven city, IA +station = ('kspw', 0.0041020341981092391) +zone = ('iaz015', 0.0029293582025581204) + +[fips1969375] +centroid = (0.74632781617424893, -1.6457615168403392) +description = Rutland city, IA +station = ('kfod', 0.003959686429290463) +zone = ('iaz024', 0.0011559699220243715) + +[fips1969465] +centroid = (0.73918898320127913, -1.5967168921946728) +description = Ryan city, IA +station = ('kmxo', 0.0046070149192482448) +zone = ('iaz041', 0.002568480987641575) + +[fips1969510] +centroid = (0.73426329753300823, -1.5739815352264939) +description = Sabula city, IA +station = ('ksfy', 0.0010574682267256224) +zone = ('ilz007', 0.0032132023408766096) + +[fips1969645] +centroid = (0.74040430831932025, -1.6580180566058846) +description = Sac City city, IA +station = ('kslb', 0.0043425672710786737) +zone = ('iaz033', 0.0015267195133242962) + +[fips1969690] +centroid = (0.74260104952905037, -1.5830825546110181) +description = Sageville city, IA +station = ('kdbq', 0.0025819471975942494) +zone = ('iaz042', 0.0026791358165908384) + +[fips1969735] +centroid = (0.75712368988880008, -1.6217284726667176) +description = St. Ansgar city, IA +station = ('kaum', 0.0050070822516514154) +zone = ('iaz008', 0.0016889157073190469) + +[fips1969780] +centroid = (0.73520088840717956, -1.6266080467361508) +description = St. Anthony city, IA +station = ('kmiw', 0.0036413711678279911) +zone = ('iaz049', 0.0030014107522562204) + +[fips1969825] +centroid = (0.7512596628547793, -1.6416732750537604) +description = St. Benedict CDP, IA +station = ('kaxa', 0.0027114603043464614) +zone = ('iaz005', 0.0033562092184344747) + +[fips1969915] +centroid = (0.72061297273340552, -1.6372495984382405) +description = St. Charles city, IA +station = ('ki75', 0.0044802185447709629) +zone = ('iaz073', 0.003325527508806441) + +[fips1969960] +centroid = (0.73936159626430131, -1.5802560637005834) +description = St. Donatus city, IA +station = ('kdbq', 0.0021405947462297659) +zone = ('iaz054', 0.0033524714473984005) + +[fips1970005] +centroid = (0.74896075007063745, -1.64463970646362) +description = St. Joseph CDP, IA +station = ('kaxa', 0.0030199531725867115) +zone = ('iaz024', 0.0023909011712286341) + +[fips1970050] +centroid = (0.75165560824888678, -1.6045541361211204) +description = St. Lucas city, IA +station = ('kdeh', 0.0045641681811960742) +zone = ('iaz029', 0.0037441734528080692) + +[fips1970095] +centroid = (0.72095451621472817, -1.6359646870429223) +description = St. Marys city, IA +station = ('kdsm', 0.0040359099269491536) +zone = ('iaz073', 0.0023080798661449485) + +[fips1970140] +centroid = (0.74921577758093882, -1.5950195769504008) +description = St. Olaf city, IA +station = ('kpdc', 0.0037477082739289166) +zone = ('iaz030', 0.0015530005857349533) + +[fips1970185] +centroid = (0.71153282748673485, -1.5972630929840843) +description = St. Paul city, IA +station = ('kmpz', 0.0031221143525466) +zone = ('iaz099', 0.0022506904223358439) + +[fips1970230] +centroid = (0.71300487308445193, -1.5990821798502679) +description = Salem city, IA +station = ('kmpz', 0.0021928765812894539) +zone = ('iaz088', 0.0025725555285069251) + +[fips1970320] +centroid = (0.73841173572548846, -1.6806145551787746) +description = Salix city, IA +station = ('ksux', 0.0017660226056013632) +zone = ('iaz031', 0.0034940726827354328) + +[fips1970410] +centroid = (0.75365708202190385, -1.6694991814913536) +description = Sanborn city, IA +station = ('kshl', 0.0023479420596771985) +zone = ('iaz013', 0.0017459805205668883) + +[fips1970590] +centroid = (0.72205615058529449, -1.629898969760541) +description = Sandyville city, IA +station = ('koxv', 0.0037435773530138804) +zone = ('iaz073', 0.0023803309128843735) + +[fips1970995] +centroid = (0.72747134874887232, -1.6341128577999713) +description = Saylorville CDP, IA +station = ('kikv', 0.00082231014792954571) +zone = ('iaz060', 0.00071296176058980036) + +[fips1971040] +centroid = (0.75871150317580183, -1.6339174158303331) +description = Scarville city, IA +station = ('kfxy', 0.0042058925617968479) +zone = ('iaz006', 0.0022100710734100164) + +[fips1971085] +centroid = (0.74170438662583837, -1.6632336938227892) +description = Schaller city, IA +station = ('kslb', 0.0019789063694198718) +zone = ('iaz033', 0.0031217857072950682) + +[fips1971130] +centroid = (0.73583983599304215, -1.665648985161454) +description = Schleswig city, IA +station = ('kdns', 0.0031631167997793418) +zone = ('iaz044', 0.0022573406727850543) + +[fips1971310] +centroid = (0.7333714342852391, -1.6501923143992072) +description = Scranton city, IA +station = ('kcin', 0.0030845641489836342) +zone = ('iaz046', 0.0019951225278245889) + +[fips1971355] +centroid = (0.72569407997156643, -1.6179948643308513) +description = Searsboro city, IA +station = ('kggi', 0.0023072727189839982) +zone = ('iaz062', 0.0029301618086390938) + +[fips1971625] +centroid = (0.74001110309213847, -1.6817128036105922) +description = Sergeant Bluff city, IA +station = ('ksux', 0.000461192606475292) +zone = ('nez014', 0.0027050214383956099) + +[fips1971715] +centroid = (0.75179891723376813, -1.6421654928094078) +description = Sexton CDP, IA +station = ('kaxa', 0.0022677469999330723) +zone = ('iaz005', 0.0027080347516697579) + +[fips1971760] +centroid = (0.71003571896095907, -1.6252814045184174) +description = Seymour city, IA +station = ('ktvk', 0.0029354342470064008) +zone = ('iaz095', 0.0028994066882015372) + +[fips1971895] +centroid = (0.70960680429728151, -1.6586779655960635) +description = Shambaugh city, IA +station = ('kicl', 0.0010333998682782899) +zone = ('iaz091', 0.0020840514944488321) + +[fips1971940] +centroid = (0.71381786490332333, -1.6452110749008453) +description = Shannon City city, IA +station = ('kcsq', 0.0024655785769822211) +zone = ('iaz082', 0.0022679450190828607) + +[fips1972075] +centroid = (0.71216212340183382, -1.6517895001042924) +description = Sharpsburg city, IA +station = ('kcsq', 0.0051811226363957519) +zone = ('iaz092', 0.001375876149922994) + +[fips1972210] +centroid = (0.74854932360606485, -1.6267703972631713) +description = Sheffield city, IA +station = ('kmcw', 0.0048364694264997335) +zone = ('iaz026', 0.0028170092316759385) + +[fips1972300] +centroid = (0.72444280107093406, -1.6659226178815816) +description = Shelby city, IA +station = ('khnr', 0.0019724173471674681) +zone = ('iaz069', 0.0032199268340244525) + +[fips1972345] +centroid = (0.73066969950973681, -1.6353161925060513) +description = Sheldahl city, IA +station = ('kamw', 0.0023232315698767186) +zone = ('iaz060', 0.0035090851997739603) + +[fips1972390] +centroid = (0.75362529957622504, -1.6728137537271086) +description = Sheldon city, IA +station = ('kshl', 0.00066509472553270919) +zone = ('iaz013', 0.0032644818426711903) + +[fips1972435] +centroid = (0.7454710514977374, -1.6158547590553485) +description = Shell Rock city, IA +station = ('kalo', 0.0036701100191138284) +zone = ('iaz027', 0.002694989376926383) + +[fips1972480] +centroid = (0.7346604122977145, -1.6034511578470303) +description = Shellsburg city, IA +station = ('kvti', 0.0029706748634494794) +zone = ('iaz051', 0.0025320304567845392) + +[fips1972525] +centroid = (0.71136654996889737, -1.664556426502998) +description = Shenandoah city, IA +station = ('ksda', 0.00060731338827569117) +zone = ('iaz091', 0.0029525438463862243) + +[fips1972660] +centroid = (0.74358599118582847, -1.584484228533295) +description = Sherrill city, IA +station = ('kdbq', 0.0037275476370162638) +zone = ('iaz042', 0.002681239414315981) + +[fips1972840] +centroid = (0.73036065405908634, -1.599632290177204) +description = Shueyville city, IA +station = ('kcid', 0.0010554568687135505) +zone = ('iaz064', 0.0031676105061461419) + +[fips1972975] +centroid = (0.75749497378057684, -1.6710444785577769) +description = Sibley city, IA +station = ('kshl', 0.00341663405634561) +zone = ('iaz002', 0.0015729464816811936) + +[fips1973065] +centroid = (0.71115096689969104, -1.6693079283119201) +description = Sidney city, IA +station = ('kafk', 0.0037286735364941512) +zone = ('iaz090', 0.00052364680142546322) + +[fips1973110] +centroid = (0.72141608598871065, -1.6092728431933976) +description = Sigourney city, IA +station = ('kooa', 0.0042340426002765736) +zone = ('iaz076', 0.00034103495421741655) + +[fips1973155] +centroid = (0.71752908066488652, -1.6691957734541869) +description = Silver City city, IA +station = ('kcbf', 0.0031947353778782835) +zone = ('iaz079', 0.0013817438904992769) + +[fips1973290] +centroid = (0.75179427465795767, -1.678495673106976) +description = Sioux Center city, IA +station = ('korc', 0.0020740953379483596) +zone = ('iaz012', 0.00016639911685617674) + +[fips1973335] +centroid = (0.74168206386470537, -1.6823483827109984) +description = Sioux City city, IA +station = ('ksux', 0.0019561532120046035) +zone = ('nez014', 0.0028769855719848682) + +[fips1973425] +centroid = (0.74859892586340659, -1.6606565755558793) +description = Sioux Rapids city, IA +station = ('kspw', 0.0048794064037350508) +zone = ('iaz022', 0.0027239606265289777) + +[fips1973515] +centroid = (0.73092881109048802, -1.6351237525027262) +description = Slater city, IA +station = ('kamw', 0.0020274293400325302) +zone = ('iaz060', 0.0036820252892297953) + +[fips1973605] +centroid = (0.73709574001619227, -1.6794556391021578) +description = Sloan city, IA +station = ('ksux', 0.003327345263030094) +zone = ('iaz031', 0.0036023092016594085) + +[fips1973650] +centroid = (0.73703439169298468, -1.6743147892437014) +description = Smithland city, IA +station = ('ksux', 0.0064282738595000414) +zone = ('iaz043', 0.0031179190716088233) + +[fips1973785] +centroid = (0.73276264598885088, -1.6716793071666047) +description = Soldier city, IA +station = ('ktqe', 0.0064704527379317381) +zone = ('iaz043', 0.0026116757121310537) + +[fips1973875] +centroid = (0.72966041050989372, -1.5969313757064503) +description = Solon city, IA +station = ('kiow', 0.0030983068868548893) +zone = ('iaz064', 0.0026349475471662684) + +[fips1973920] +centroid = (0.73964807460772364, -1.6481310980058943) +description = Somers city, IA +station = ('kfod', 0.0043705664983461085) +zone = ('iaz035', 0.0033233984430305896) + +[fips1973965] +centroid = (0.729030259383461, -1.6050032442442437) +description = South Amana CDP, IA +station = ('kcid', 0.003727734908282329) +zone = ('iaz063', 0.0020118268975359917) + +[fips1974055] +centroid = (0.72347533015996868, -1.6072826442473485) +description = South English city, IA +station = ('kooa', 0.0065921976491953513) +zone = ('iaz076', 0.0023258929948470155) + +[fips1974280] +centroid = (0.75305764869030634, -1.6607277500827757) +description = Spencer city, IA +station = ('kspw', 0.00088373166238783156) +zone = ('iaz014', 0.0011246347510505041) + +[fips1974370] +centroid = (0.75403182166559957, -1.6048688538918401) +description = Spillville city, IA +station = ('kdeh', 0.0031173087002402881) +zone = ('iaz010', 0.0020613480323411339) + +[fips1974415] +centroid = (0.75776309126026808, -1.6600308226591618) +description = Spirit Lake city, IA +station = ('kmjq', 0.0043900204351994768) +zone = ('iaz003', 0.00083188565482062576) + +[fips1974460] +centroid = (0.73429012324361131, -1.5783371789077707) +description = Spragueville city, IA +station = ('ksfy', 0.0042263708432167943) +zone = ('iaz054', 0.0025358544939326766) + +[fips1974505] +centroid = (0.73592841145258081, -1.5791584959471743) +description = Springbrook city, IA +station = ('kdbq', 0.0049872440382081971) +zone = ('iaz054', 0.0012345946058041433) + +[fips1974685] +centroid = (0.7227790310548855, -1.6344988897239274) +description = Spring Hill city, IA +station = ('kdsm', 0.0021257394380833922) +zone = ('iaz073', 0.0017863780361759487) + +[fips1974775] +centroid = (0.73395355395065676, -1.5960566166853507) +description = Springville city, IA +station = ('kcid', 0.0045748518676302303) +zone = ('iaz052', 0.0020177231310818649) + +[fips1974820] +centroid = (0.75815788473706924, -1.6193853332393302) +description = Stacyville city, IA +station = ('kaum', 0.0043960637785834759) +zone = ('iaz008', 0.0014474299835806534) + +[fips1974910] +centroid = (0.73808108309869813, -1.6370490601071863) +description = Stanhope city, IA +station = ('kebs', 0.0026800004472762196) +zone = ('iaz036', 0.0020150086173533342) + +[fips1974955] +centroid = (0.74424265386359867, -1.6024197904321493) +description = Stanley city, IA +station = ('kolz', 0.0021938465672163001) +zone = ('iaz040', 0.0030077479669592378) + +[fips1975000] +centroid = (0.71525362510589152, -1.6598596233128338) +description = Stanton city, IA +station = ('krdk', 0.002244507619360756) +zone = ('iaz080', 0.0011080120653657053) + +[fips1975045] +centroid = (0.73117148166968526, -1.5908461630963242) +description = Stanwood city, IA +station = ('kmxo', 0.0059437639306439112) +zone = ('iaz065', 0.0021180372453523597) + +[fips1975135] +centroid = (0.73329835734945814, -1.62604051802328) +description = State Center city, IA +station = ('kmiw', 0.0036782386432830877) +zone = ('iaz049', 0.0021887735475982243) + +[fips1975180] +centroid = (0.74016158538024546, -1.6243169530270578) +description = Steamboat Rock city, IA +station = ('kifa', 0.0028347812413867489) +zone = ('iaz037', 0.0022812589408785192) + +[fips1975405] +centroid = (0.71309416412898396, -1.6027945126225522) +description = Stockport city, IA +station = ('kffl', 0.0039014114267334403) +zone = ('iaz098', 0.0023821467310772889) + +[fips1975450] +centroid = (0.72589688723064816, -1.5857438152011665) +description = Stockton city, IA +station = ('kdvn', 0.0035925146806567317) +zone = ('iaz067', 0.0038329987824963999) + +[fips1975540] +centroid = (0.73487833410811843, -1.594361692542154) +description = Stone City CDP, IA +station = ('kmxo', 0.0032588088230078851) +zone = ('iaz053', 0.0028461401624450132) + +[fips1975630] +centroid = (0.74427965484374103, -1.6615360120593743) +description = Storm Lake city, IA +station = ('kslb', 0.00088678002726091899) +zone = ('iaz022', 0.0017088552003911464) + +[fips1975675] +centroid = (0.73628011275015026, -1.6333992799352932) +description = Story City city, IA +station = ('kamw', 0.003553714910320179) +zone = ('iaz048', 0.0030493590131685801) + +[fips1975720] +centroid = (0.74223439075979158, -1.6181217148608862) +description = Stout city, IA +station = ('kalo', 0.0040267047684607064) +zone = ('iaz038', 0.0024095698810090256) + +[fips1975810] +centroid = (0.73773536828046316, -1.639339612764211) +description = Stratford city, IA +station = ('kebs', 0.0029706016948841661) +zone = ('iaz036', 0.003477071692643152) + +[fips1975855] +centroid = (0.74491242396405155, -1.5975863803214312) +description = Strawberry Point city, IA +station = ('kiib', 0.0065104057523021281) +zone = ('iaz030', 0.0037921676091326665) + +[fips1975945] +centroid = (0.74864968003805454, -1.6789122308395497) +description = Struble city, IA +station = ('klrj', 0.0020318012247395531) +zone = ('iaz020', 0.0027458624120742375) + +[fips1975990] +centroid = (0.72430519931270687, -1.6461955278654326) +description = Stuart city, IA +station = ('kpro', 0.0061320536058155567) +zone = ('iaz071', 0.003549139488704319) + +[fips1976035] +centroid = (0.72567301384749483, -1.6204823773939636) +description = Sully city, IA +station = ('kggi', 0.0027619369570746504) +zone = ('iaz061', 0.0032920572230859821) + +[fips1976260] +centroid = (0.74786262381186774, -1.6073985690162658) +description = Sumner city, IA +station = ('kolz', 0.0033353979347428161) +zone = ('iaz028', 0.0031158213590382891) + +[fips1976415] +centroid = (0.71295143110275583, -1.6417986595072236) +description = Sun Valley Lake CDP, IA +station = ('klwd', 0.0043733180070940738) +zone = ('iaz093', 0.0030581989892385086) + +[fips1976440] +centroid = (0.75806087933724342, -1.6571332793948783) +description = Superior city, IA +station = ('kest', 0.0025625952638049414) +zone = ('iaz003', 0.0027669444865829236) + +[fips1976485] +centroid = (0.7500173898530873, -1.6667027800572232) +description = Sutherland city, IA +station = ('kckp', 0.0042803955684907616) +zone = ('iaz013', 0.002549636029358684) + +[fips1976620] +centroid = (0.75008184486236351, -1.6286621945459931) +description = Swaledale city, IA +station = ('kmcw', 0.0030362835192139872) +zone = ('iaz017', 0.0019620870486237126) + +[fips1976665] +centroid = (0.72374439011745606, -1.6285591852135404) +description = Swan city, IA +station = ('koxv', 0.0038635957494851151) +zone = ('iaz074', 0.0035999606013145846) + +[fips1976755] +centroid = (0.75718142538045596, -1.6460360745849705) +description = Swea City city, IA +station = ('kfrm', 0.0048433878317425769) +zone = ('iaz005', 0.0033946975319985163) + +[fips1976890] +centroid = (0.73031899304984116, -1.600360371727966) +description = Swisher city, IA +station = ('kcid', 0.00074444639225386476) +zone = ('iaz064', 0.003313928378169947) + +[fips1976935] +centroid = (0.71375133295223736, -1.6698212820048091) +description = Tabor city, IA +station = ('kpmv', 0.0033590528770932712) +zone = ('iaz079', 0.0025096657477916566) + +[fips1977115] +centroid = (0.7323939277310747, -1.6157172620168763) +description = Tama city, IA +station = ('kggi', 0.0048618298424185262) +zone = ('iaz050', 0.0021059419459715802) + +[fips1977340] +centroid = (0.73160910552633041, -1.6570429586060877) +description = Templeton city, IA +station = ('kcin', 0.0030842752422202417) +zone = ('iaz045', 0.0023127092604278139) + +[fips1977430] +centroid = (0.72595425620316123, -1.665828370101974) +description = Tennant city, IA +station = ('khnr', 0.0013837488974057564) +zone = ('iaz056', 0.0023676238128785298) + +[fips1977520] +centroid = (0.75582959806161631, -1.657521109007964) +description = Terril city, IA +station = ('kest', 0.0032283909232318285) +zone = ('iaz003', 0.0026306901017214531) + +[fips1977565] +centroid = (0.71609056284210038, -1.6414775538314417) +description = Thayer city, IA +station = ('kcsq', 0.0041787341178765765) +zone = ('iaz082', 0.0025368070199145161) + +[fips1977745] +centroid = (0.75694493326681078, -1.6366771828034639) +description = Thompson city, IA +station = ('kfxy', 0.0031321233690026484) +zone = ('iaz006', 0.00053125367603972656) + +[fips1977790] +centroid = (0.74504817567327175, -1.6414746391315909) +description = Thor city, IA +station = ('kfod', 0.0029601292406410944) +zone = ('iaz024', 0.0025422720208587843) + +[fips1977835] +centroid = (0.7235331354647947, -1.6115106869070122) +description = Thornburg city, IA +station = ('kooa', 0.004522905828848847) +zone = ('iaz076', 0.0028951562201703245) + +[fips1977880] +centroid = (0.74951780680799651, -1.6299118328371283) +description = Thornton city, IA +station = ('kmcw', 0.0036565733829163035) +zone = ('iaz017', 0.0028891005056744285) + +[fips1977970] +centroid = (0.7124473102016099, -1.671131989366472) +description = Thurman city, IA +station = ('kpmv', 0.0031782352588810721) +zone = ('iaz090', 0.0023072440806259438) + +[fips1978060] +centroid = (0.72809144677881332, -1.5996735148541359) +description = Tiffin city, IA +station = ('kiow', 0.0019918985723196042) +zone = ('iaz064', 0.0011698112077502556) + +[fips1978195] +centroid = (0.71301651443056269, -1.6440259614321562) +description = Tingley city, IA +station = ('kcsq', 0.0036406874385766508) +zone = ('iaz093', 0.0021498627100153826) + +[fips1978285] +centroid = (0.72902036336660225, -1.5904901333822101) +description = Tipton city, IA +station = ('kmut', 0.0070414952082257509) +zone = ('iaz065', 6.832450039391114e-05) + +[fips1978330] +centroid = (0.75462481473225718, -1.6413316617592675) +description = Titonka city, IA +station = ('kaxa', 0.0039246107824569103) +zone = ('iaz005', 0.0021783800632289877) + +[fips1978465] +centroid = (0.75817251059620105, -1.6212006501943295) +description = Toeterville CDP, IA +station = ('kaum', 0.0039960346009920347) +zone = ('iaz008', 0.0019248048228305921) + +[fips1978510] +centroid = (0.73286747046372569, -1.6158313541900791) +description = Toledo city, IA +station = ('kggi', 0.005263578394626549) +zone = ('iaz050', 0.0016814961754387622) + +[fips1978600] +centroid = (0.73134337914771419, -1.5858542770895254) +description = Toronto city, IA +station = ('kdvn', 0.0061797411394340822) +zone = ('iaz065', 0.0041819472983873306) + +[fips1978735] +centroid = (0.73636723958640971, -1.6138040320908402) +description = Traer city, IA +station = ('kalo', 0.0063246992833562981) +zone = ('iaz050', 0.0021291868825687719) + +[fips1978825] +centroid = (0.71963754312105077, -1.6686454536877404) +description = Treynor city, IA +station = ('kcbf', 0.0021881539169769653) +zone = ('iaz069', 0.0020033165181066455) + +[fips1978915] +centroid = (0.74714630578026409, -1.6102040112559213) +description = Tripoli city, IA +station = ('kalo', 0.0048634429034323471) +zone = ('iaz028', 0.00097009959688518037) + +[fips1979095] +centroid = (0.74576711169875332, -1.6612589235873279) +description = Truesdale city, IA +station = ('kslb', 0.0023470383493776454) +zone = ('iaz022', 0.00042206635083272075) + +[fips1979140] +centroid = (0.71924615303629114, -1.6379334184391718) +description = Truro city, IA +station = ('ki75', 0.0035463516651006968) +zone = ('iaz072', 0.0030593553501989533) + +[fips1979185] +centroid = (0.73340230915970683, -1.6749230888478988) +description = Turin city, IA +station = ('ktqe', 0.0052586105677769161) +zone = ('iaz043', 0.00054221908455797567) + +[fips1979335] +centroid = (0.74143373841873161, -1.651599730454723) +description = Twin Lakes CDP, IA +station = ('kcin', 0.0077801143228121063) +zone = ('iaz034', 0.0016782271574159737) + +[fips1979410] +centroid = (0.71174842800923366, -1.61866543728276) +description = Udell city, IA +station = ('ktvk', 0.0027176391839872707) +zone = ('iaz096', 0.0017863841967267285) + +[fips1979500] +centroid = (0.72233371029623916, -1.6699318311596305) +description = Underwood city, IA +station = ('kcbf', 0.0023824100088255381) +zone = ('iaz069', 0.0020064470986679655) + +[fips1979545] +centroid = (0.73728877343146282, -1.6242501243699989) +description = Union city, IA +station = ('kmiw', 0.0029101824115746419) +zone = ('iaz037', 0.0033547431347769182) + +[fips1979680] +centroid = (0.7124117054848691, -1.6178464938911392) +description = Unionville city, IA +station = ('ktvk', 0.0036205180273001479) +zone = ('iaz096', 0.0026335421744695595) + +[fips1979770] +centroid = (0.72701796456908174, -1.5980034791060727) +description = University Heights city, IA +station = ('kiow', 0.00039641611951799107) +zone = ('iaz064', 0.00047720356840293116) + +[fips1979815] +centroid = (0.72057050887270435, -1.6164364598417456) +description = University Park city, IA +station = ('kooa', 0.0019015899625193678) +zone = ('iaz075', 0.00092753446999909697) + +[fips1979905] +centroid = (0.73703695732698504, -1.6037447222272156) +description = Urbana city, IA +station = ('kvti', 0.0017933538797464189) +zone = ('iaz051', 0.0034729681586948631) + +[fips1979950] +centroid = (0.72669729522561277, -1.636766142235438) +description = Urbandale city, IA +station = ('kdsm', 0.0023312923031029269) +zone = ('iaz060', 0.0028228067490217992) + +[fips1979995] +centroid = (0.73391014761215967, -1.6703818468539648) +description = Ute city, IA +station = ('kdns', 0.0043404313902106325) +zone = ('iaz044', 0.0042019041305098878) + +[fips1980130] +centroid = (0.73408237670274645, -1.6615590329522083) +description = Vail city, IA +station = ('kdns', 0.0027226815467543855) +zone = ('iaz044', 0.002388801885610328) + +[fips1980175] +centroid = (0.72832223166580456, -1.6288384029872742) +description = Valeria city, IA +station = ('kikv', 0.003206615835722848) +zone = ('iaz060', 0.0033204445805494272) + +[fips1980400] +centroid = (0.73320737333555153, -1.6072661683392095) +description = Van Horne city, IA +station = ('kvti', 0.0037385980980429254) +zone = ('iaz051', 0.0012672605200140239) + +[fips1980445] +centroid = (0.72473992592279357, -1.639761284311493) +description = Van Meter city, IA +station = ('kdsm', 0.0037234738586492031) +zone = ('iaz059', 0.0030272694255174359) + +[fips1980490] +centroid = (0.71332901563313234, -1.6369823187165902) +description = Van Wert city, IA +station = ('ki75', 0.0034604052441187193) +zone = ('iaz094', 0.0023233190985876215) + +[fips1980535] +centroid = (0.74452461180425844, -1.6562767590644623) +description = Varina city, IA +station = ('kslb', 0.0044281279324842222) +zone = ('iaz022', 0.0035226115629628748) + +[fips1980580] +centroid = (0.7527407492580217, -1.6312879376858633) +description = Ventura city, IA +station = ('kmcw', 0.0017282966398012608) +zone = ('iaz017', 0.0027408015770554431) + +[fips1980805] +centroid = (0.72833872502723596, -1.6108471476319888) +description = Victor city, IA +station = ('kggi', 0.005681696344561761) +zone = ('iaz062', 0.0031791416221954149) + +[fips1980985] +centroid = (0.71436024342167315, -1.6577473036790227) +description = Villisca city, IA +station = ('kicl', 0.0037818012257024082) +zone = ('iaz080', 0.0028882217638462118) + +[fips1981075] +centroid = (0.74336766794969644, -1.6409387183314734) +description = Vincent city, IA +station = ('kfod', 0.002236503986254842) +zone = ('iaz035', 0.0035483204631659732) + +[fips1981120] +centroid = (0.73288090949896612, -1.6124664117521115) +description = Vining city, IA +station = ('kvti', 0.0061415208005442586) +zone = ('iaz050', 0.0024372002399406533) + +[fips1981210] +centroid = (0.73590106214320217, -1.6061601182856355) +description = Vinton city, IA +station = ('kvti', 0.00095271890741824782) +zone = ('iaz051', 0.0015514733022059183) + +[fips1981345] +centroid = (0.74704746778472375, -1.5977140860627996) +description = Volga city, IA +station = ('kpdc', 0.006567725556932651) +zone = ('iaz030', 0.0026740091002764774) + +[fips1981570] +centroid = (0.74769522928330889, -1.5997583378557831) +description = Wadena city, IA +station = ('kolz', 0.0048983214353900163) +zone = ('iaz029', 0.0023988570639823827) + +[fips1981615] +centroid = (0.75702469481362689, -1.661109924829085) +description = Wahpeton city, IA +station = ('kspw', 0.00366347165717121) +zone = ('iaz003', 0.00030569394006760552) + +[fips1981705] +centroid = (0.72625885106421928, -1.5845207582745389) +description = Walcott city, IA +station = ('kdvn', 0.0026506204890822853) +zone = ('iaz068', 0.0021747294763082761) + +[fips1981840] +centroid = (0.7308529590811963, -1.6028587232857332) +description = Walford city, IA +station = ('kcid', 0.0015713355521512903) +zone = ('iaz063', 0.0044352449029993858) + +[fips1981885] +centroid = (0.73805689283526554, -1.6018890009000328) +description = Walker city, IA +station = ('kiib', 0.003445819282611159) +zone = ('iaz040', 0.0032783781323504251) + +[fips1981975] +centroid = (0.75607933722428411, -1.6544399745596634) +description = Wallingford city, IA +station = ('kest', 0.0014939433669686393) +zone = ('iaz004', 0.001763571166291187) + +[fips1982020] +centroid = (0.73770154379955943, -1.6596820884213208) +description = Wall Lake city, IA +station = ('kcin', 0.005513371379213392) +zone = ('iaz033', 0.0020836791070611921) + +[fips1982065] +centroid = (0.7241104380214769, -1.6619112403952605) +description = Walnut city, IA +station = ('khnr', 0.002287301465877425) +zone = ('iaz056', 0.0036264997403344917) + +[fips1982200] +centroid = (0.71867855451024998, -1.5915198776408865) +description = Wapello city, IA +station = ('kmut', 0.0033421292558568952) +zone = ('iaz078', 0.0011918858642087193) + +[fips1982290] +centroid = (0.74019921467891847, -1.6103606021964103) +description = Washburn CDP, IA +station = ('kalo', 0.0029803477813454917) +zone = ('iaz039', 0.0011735507221314453) + +[fips1982335] +centroid = (0.72080295182248499, -1.6003326558994442) +description = Washington city, IA +station = ('kawg', 0.0004330254376313144) +zone = ('iaz077', 0.00072203960801919766) + +[fips1982380] +centroid = (0.7430817830182197, -1.6706205206291749) +description = Washta city, IA +station = ('kckp', 0.0034420468746465581) +zone = ('iaz021', 0.0030542660562709609) + +[fips1982425] +centroid = (0.74163101298408463, -1.6118455457772995) +description = Waterloo city, IA +station = ('kalo', 0.0011812276317647423) +zone = ('iaz039', 0.00068061940827634625) + +[fips1982470] +centroid = (0.75412748316190137, -1.5934162651396411) +description = Waterville city, IA +station = ('kpdc', 0.0039172390691435879) +zone = ('iaz011', 0.0016873540122149784) + +[fips1982515] +centroid = (0.73117256377382145, -1.6054409902739364) +description = Watkins CDP, IA +station = ('kcid', 0.0034905514928108066) +zone = ('iaz051', 0.0034275615938370199) + +[fips1982650] +centroid = (0.75146894528538599, -1.6063048584405033) +description = Waucoma city, IA +station = ('kdeh', 0.0055170983756991547) +zone = ('iaz019', 0.0036110705074868781) + +[fips1982695] +centroid = (0.72608906543458529, -1.6383200612283662) +description = Waukee city, IA +station = ('kdsm', 0.0028979522167044305) +zone = ('iaz059', 0.0026597801719090122) + +[fips1982740] +centroid = (0.75517893931647284, -1.59658977986525) +description = Waukon city, IA +station = ('kdeh', 0.0032565782550189669) +zone = ('iaz011', 0.0012969992733021052) + +[fips1982875] +centroid = (0.74569639095746243, -1.6139008629577407) +description = Waverly city, IA +station = ('kalo', 0.0031870488488883208) +zone = ('iaz028', 0.0021249016568297349) + +[fips1982965] +centroid = (0.71817617893835595, -1.5997533462141222) +description = Wayland city, IA +station = ('kawg', 0.0023560009647076645) +zone = ('iaz088', 0.0031818029026882554) + +[fips1983010] +centroid = (0.74961493438087001, -1.6582899614500526) +description = Webb city, IA +station = ('kspw', 0.0045907292267718868) +zone = ('iaz014', 0.0029111836829924945) + +[fips1983055] +centroid = (0.72322738868643033, -1.6086964307546336) +description = Webster city, IA +station = ('kooa', 0.0056106471294210293) +zone = ('iaz076', 0.0017736042506415126) + +[fips1983145] +centroid = (0.74110881047188781, -1.6374065209912874) +description = Webster City city, IA +station = ('kebs', 0.00082169743642828818) +zone = ('iaz036', 0.0019707787795899012) + +[fips1983190] +centroid = (0.7137923481896592, -1.6359939213078931) +description = Weldon city, IA +station = ('ki75', 0.0027639917712137391) +zone = ('iaz083', 0.002389761071960548) + +[fips1983280] +centroid = (0.72377528244521638, -1.6028197151769512) +description = Wellman city, IA +station = ('kawg', 0.0039217702577740501) +zone = ('iaz077', 0.0027901615874901921) + +[fips1983325] +centroid = (0.74061034443751828, -1.6218745916316946) +description = Wellsburg city, IA +station = ('kmiw', 0.0055373179536178825) +zone = ('iaz038', 0.0018336127721784281) + +[fips1983370] +centroid = (0.73142699787217724, -1.5812001471995722) +description = Welton city, IA +station = ('kcwi', 0.0036532410988291204) +zone = ('iaz066', 0.00084956922693893108) + +[fips1983415] +centroid = (0.75203919671189012, -1.6404992967856988) +description = Wesley city, IA +station = ('kaxa', 0.0034808344826909947) +zone = ('iaz005', 0.0033798628936788783) + +[fips1983505] +centroid = (0.7296952298284709, -1.6051014539212536) +description = West Amana CDP, IA +station = ('kcid', 0.0034896934362600783) +zone = ('iaz063', 0.0024986623111488259) + +[fips1983550] +centroid = (0.74979241691250531, -1.6483880104717881) +description = West Bend city, IA +station = ('kaxa', 0.0031393319445281935) +zone = ('iaz015', 0.003652623522889501) + +[fips1983595] +centroid = (0.72715240728136288, -1.5941952230380989) +description = West Branch city, IA +station = ('kiow', 0.0027780994341596796) +zone = ('iaz064', 0.0032297370270583758) + +[fips1983685] +centroid = (0.712475479815737, -1.5913278216099971) +description = West Burlington city, IA +station = ('kbrl', 0.0011182811436544658) +zone = ('iaz089', 0.001770396687053404) + +[fips1983775] +centroid = (0.72151913022774838, -1.6025065332959734) +description = West Chester city, IA +station = ('kawg', 0.0022034419652781014) +zone = ('iaz077', 0.0012991002562021234) + +[fips1983910] +centroid = (0.72524135901689157, -1.6364164829730936) +description = West Des Moines city, IA +station = ('kdsm', 0.0012648504639440538) +zone = ('iaz060', 0.0033523967445869035) + +[fips1984090] +centroid = (0.74623585477596133, -1.6860843821479399) +description = Westfield city, IA +station = ('ksux', 0.0071062500897512721) +zone = ('sdz071', 0.0014798692125897552) + +[fips1984180] +centroid = (0.74644658582984713, -1.6056260475345254) +description = Westgate city, IA +station = ('kolz', 0.0015494350130699458) +zone = ('iaz029', 0.0025413760755506501) + +[fips1984315] +centroid = (0.72557613062071669, -1.5928335346089852) +description = West Liberty city, IA +station = ('kmut', 0.0038819484171319796) +zone = ('iaz067', 0.0024953255269669875) + +[fips1984450] +centroid = (0.75656335193244717, -1.6609717296589119) +description = West Okoboji city, IA +station = ('kspw', 0.0032261041930346374) +zone = ('iaz003', 0.00056029332456232158) + +[fips1984495] +centroid = (0.72155572978216265, -1.6710642356849095) +description = Weston CDP, IA +station = ('kcbf', 0.0013470241912135032) +zone = ('iaz069', 0.0026571265030886004) + +[fips1984540] +centroid = (0.72813830886922937, -1.6649335397944764) +description = Westphalia city, IA +station = ('khnr', 0.002455749488792386) +zone = ('iaz056', 0.0012391036933729527) + +[fips1984585] +centroid = (0.71061015917766801, -1.5961434119090523) +description = West Point city, IA +station = ('kfsw', 0.0017856094402187047) +zone = ('iaz099', 0.0013223519793657478) + +[fips1984630] +centroid = (0.7343603552927116, -1.6598316456849243) +description = Westside city, IA +station = ('kcin', 0.0041451065710244291) +zone = ('iaz044', 0.0036998964776557364) + +[fips1984765] +centroid = (0.74977407350206682, -1.6024426542453505) +description = West Union city, IA +station = ('kolz', 0.0052737679013431524) +zone = ('iaz029', 0.0017286551515056032) + +[fips1984835] +centroid = (0.71496925861086402, -1.5991905997034019) +description = Westwood city, IA +station = ('kmpz', 0.0015580434334611763) +zone = ('iaz088', 0.0011571134099335016) + +[fips1984900] +centroid = (0.72257238407144941, -1.6119352731541448) +description = What Cheer city, IA +station = ('kooa', 0.0035285774602358128) +zone = ('iaz076', 0.002589453053346096) + +[fips1984945] +centroid = (0.73012170103119578, -1.5854199519051666) +description = Wheatland city, IA +station = ('kdvn', 0.0050235093302501066) +zone = ('iaz065', 0.0039751986601524857) + +[fips1985215] +centroid = (0.73525813520664485, -1.6781476370008359) +description = Whiting city, IA +station = ('ksux', 0.0053862090692395042) +zone = ('iaz043', 0.0028010863869310509) + +[fips1985260] +centroid = (0.7515979600236935, -1.6480280886734417) +description = Whittemore city, IA +station = ('kaxa', 0.0020491008873350794) +zone = ('iaz005', 0.003711368081820491) + +[fips1985305] +centroid = (0.73765553692047692, -1.623350005714868) +description = Whitten city, IA +station = ('kmiw', 0.0028553595445136794) +zone = ('iaz038', 0.0037163518776042732) + +[fips1985710] +centroid = (0.73266733355839953, -1.654962473777833) +description = Willey city, IA +station = ('kcin', 0.0013426688258829794) +zone = ('iaz045', 0.0011192397123455046) + +[fips1985800] +centroid = (0.74157666343117745, -1.6325997096983698) +description = Williams city, IA +station = ('kebs', 0.0043042519161844593) +zone = ('iaz036', 0.0028192832188956066) + +[fips1985845] +centroid = (0.72725950068426515, -1.60593435994689) +description = Williamsburg city, IA +station = ('kcid', 0.0053767702713998829) +zone = ('iaz063', 0.00074681676892168216) + +[fips1985935] +centroid = (0.7171250893029274, -1.6276396410438347) +description = Williamson city, IA +station = ('kcnc', 0.0017337037414127158) +zone = ('iaz084', 0.0013881161970055703) + +[fips1986070] +centroid = (0.72586688502080643, -1.5886943466615406) +description = Wilton city, IA +station = ('kmut', 0.004209963320932035) +zone = ('iaz067', 0.0021610555698777898) + +[fips1986250] +centroid = (0.72613020284505481, -1.6355967890898946) +description = Windsor Heights city, IA +station = ('kdsm', 0.0013756525730809655) +zone = ('iaz060', 0.0023062630026718092) + +[fips1986385] +centroid = (0.7177815774477726, -1.595895836954657) +description = Winfield city, IA +station = ('kmpz', 0.0032718147451667639) +zone = ('iaz088', 0.0027860450422629449) + +[fips1986520] +centroid = (0.7216887936843347, -1.6409267453728047) +description = Winterset city, IA +station = ('kdsm', 0.0056053820047159897) +zone = ('iaz072', 0.00033384465052863532) + +[fips1986565] +centroid = (0.74124559192536665, -1.6011306029801637) +description = Winthrop city, IA +station = ('kiib', 0.0025394995894891257) +zone = ('iaz040', 0.0012858016417600373) + +[fips1986610] +centroid = (0.7225843046702406, -1.656098543494541) +description = Wiota city, IA +station = ('kaio', 0.0021280568767183222) +zone = ('iaz070', 0.0013236090271717292) + +[fips1986700] +centroid = (0.75451958883165438, -1.6390635540364231) +description = Woden city, IA +station = ('kfxy', 0.0037059352999119582) +zone = ('iaz006', 0.0034093225322726411) + +[fips1986835] +centroid = (0.72840436686040344, -1.6704086900178603) +description = Woodbine city, IA +station = ('kdns', 0.0060501177989337566) +zone = ('iaz055', 0.0016853081347874771) + +[fips1986880] +centroid = (0.7157747629672444, -1.6335633408849808) +description = Woodburn city, IA +station = ('ki75', 0.0012966059773103808) +zone = ('iaz083', 0.0025063975838644625) + +[fips1986970] +centroid = (0.73027546453829639, -1.6392512816507678) +description = Woodward city, IA +station = ('kpro', 0.0030992826728082601) +zone = ('iaz059', 0.0031359610410270516) + +[fips1987015] +centroid = (0.74289548657386195, -1.6378738678050939) +description = Woolstock city, IA +station = ('kebs', 0.0023137954558942971) +zone = ('iaz025', 0.0032488471202765622) + +[fips1987060] +centroid = (0.73998202590680029, -1.5903538231676293) +description = Worthington city, IA +station = ('kmxo', 0.002932309399577851) +zone = ('iaz042', 0.0033084187814585134) + +[fips1987240] +centroid = (0.73408061392020196, -1.5883388056396168) +description = Wyoming city, IA +station = ('kmxo', 0.0036813294051615225) +zone = ('iaz053', 0.0019562305950666073) + +[fips1987285] +centroid = (0.72911778764544855, -1.6468440224023038) +description = Yale city, IA +station = ('kpro', 0.0027372380255751443) +zone = ('iaz058', 0.0024621190289434518) + +[fips1987375] +centroid = (0.73855579520194814, -1.6553255197155403) +description = Yetter city, IA +station = ('kcin', 0.0047088602350749539) +zone = ('iaz034', 0.002878677938068082) + +[fips1987420] +centroid = (0.71096631106482999, -1.6607575079465224) +description = Yorktown city, IA +station = ('kicl', 0.0016341993247174908) +zone = ('iaz091', 8.5554335415951159e-05) + +[fips1987555] +centroid = (0.73581205035135044, -1.6283430087323885) +description = Zearing city, IA +station = ('kamw', 0.0051502309272548948) +zone = ('iaz048', 0.0030523576019009478) + +[fips1987690] +centroid = (0.73822324016627305, -1.5827938422461532) +description = Zwingle city, IA +station = ('kdbq', 0.0018036920019801458) +zone = ('iaz054', 0.0026321908779805975) + +[fips20001] +centroid = (0.66120453062951878, -1.6633152705120273) +description = Allen County, KS +station = ('kcnu', 0.0045551504290284239) +zone = ('ksz072', 2.8126335497363724e-05) + +[fips2000100] +centroid = (0.66270750346158125, -1.713983330614729) +description = Abbyville city, KS +station = ('khut', 0.0049337145373325323) +zone = ('ksz067', 0.0016508373596809754) + +[fips2000110725] +centroid = (0.66302719542066912, -1.6647767743210624) +description = Carlyle township, KS +station = ('kcnu', 0.0057820512494858849) +zone = ('ksz072', 0.0021300574999879866) + +[fips2000115825] +centroid = (0.65894382310270316, -1.6642023690109384) +description = Cottage Grove township, KS +station = ('kcnu', 0.0023791843941552275) +zone = ('ksz072', 0.0023911974955770129) + +[fips2000117175] +centroid = (0.66314963026769647, -1.6629163580581914) +description = Deer Creek township, KS +station = ('kcnu', 0.0064014515175809554) +zone = ('ksz072', 0.0019443384938832449) + +[fips2000120550] +centroid = (0.6615768442655543, -1.6632655984415154) +description = Elm township, KS +station = ('kcnu', 0.0048900635867943571) +zone = ('ksz072', 0.00034787819558371885) + +[fips2000120900] +centroid = (0.65970014408076239, -1.6607969523876174) +description = Elsmore township, KS +station = ('kcnu', 0.0050586894677402934) +zone = ('ksz072', 0.0025152461950699958) + +[fips2000125] +centroid = (0.67935024762360585, -1.6968813379666272) +description = Abilene city, KS +station = ('kfri', 0.0066494754649575735) +zone = ('ksz035', 0.001396036260246524) + +[fips2000126100] +centroid = (0.66326749235208371, -1.6663721274304328) +description = Geneva township, KS +station = ('kcnu', 0.0058609912722787216) +zone = ('ksz072', 0.003150334058848887) + +[fips2000133450] +centroid = (0.65993410546699216, -1.665698185993068) +description = Humboldt city, KS +station = ('kcnu', 0.0026048198232179586) +zone = ('ksz072', 0.0022806534286112568) + +[fips2000133475] +centroid = (0.66018087756993171, -1.6652921875024689) +description = Humboldt township, KS +station = ('kcnu', 0.0029329817214134575) +zone = ('ksz072', 0.0018765933225815812) + +[fips2000134300] +centroid = (0.66195847795979545, -1.6650557826552861) +description = Iola city, KS +station = ('kcnu', 0.0046917445240532082) +zone = ('ksz072', 0.0015480923610674178) + +[fips2000134325] +centroid = (0.66149816482287438, -1.6659888182201099) +description = Iola township, KS +station = ('kcnu', 0.0041106012858256376) +zone = ('ksz072', 0.0021203535584696166) + +[fips2000137725] +centroid = (0.66182040496267014, -1.6634096579179753) +description = La Harpe city, KS +station = ('kcnu', 0.0050431289435457936) +zone = ('ksz072', 0.00059239535013631698) + +[fips2000141725] +centroid = (0.65973070479596474, -1.6665291197966496) +description = Logan township, KS +station = ('kcnu', 0.0023234790196041207) +zone = ('ksz072', 0.002943334144346011) + +[fips2000144850] +centroid = (0.6614780586298914, -1.6607971967337127) +description = Marmaton township, KS +station = ('kcnu', 0.0060724232068542217) +zone = ('ksz072', 0.0020085664842865777) + +[fips2000153075] +centroid = (0.66325105135052986, -1.6605579120932643) +description = Osage township, KS +station = ('kcnu', 0.0074941406285173448) +zone = ('ksz072', 0.0029719483805724627) + +[fips2000162600] +centroid = (0.66011816788990751, -1.6634223290083447) +description = Salem township, KS +station = ('kcnu', 0.0036422065256447216) +zone = ('ksz072', 0.0011165280067684292) + +[fips2000225] +centroid = (0.6835092974179382, -1.7084320840359584) +description = Ada CDP, KS +station = ('ksln', 0.0073467175163736678) +zone = ('ksz034', 0.003231163365959769) + +[fips20003] +centroid = (0.66697956332498032, -1.6631599536618924) +description = Anderson County, KS +station = ('kcnu', 0.0099277187967872754) +zone = ('ksz059', 2.230571936177897e-05) + +[fips2000325] +centroid = (0.67441147198594509, -1.6772973125892643) +description = Admire city, KS +station = ('kemp', 0.0055328246699899043) +zone = ('ksz054', 0.0032957300296657097) + +[fips2000325925] +centroid = (0.668214540850399, -1.6622730646024915) +description = Garnett city, KS +station = ('kixd', 0.01047315250839592) +zone = ('ksz059', 0.0014386782321801342) + +[fips2000334050] +centroid = (0.66478256031586236, -1.6660839386643433) +description = Indian Creek township, KS +station = ('kcnu', 0.0073824657827458911) +zone = ('ksz059', 0.0031579697823029031) + +[fips2000334725] +centroid = (0.66839568857346354, -1.6635295445842946) +description = Jackson township, KS +station = ('kixd', 0.0108131503353732) +zone = ('ksz059', 0.0014561594063173167) + +[fips2000340475] +centroid = (0.66700281111061688, -1.6607129322374263) +description = Lincoln township, KS +station = ('kcnu', 0.010625023804012739) +zone = ('ksz059', 0.0019401599089146069) + +[fips2000342450] +centroid = (0.66477877295138554, -1.6620606231259389) +description = Lone Elm township, KS +station = ('kcnu', 0.0081613934995920304) +zone = ('ksz059', 0.0023576560965357478) + +[fips2000347725] +centroid = (0.6685428721892841, -1.6615925258205539) +description = Monroe township, KS +station = ('kixd', 0.0099393131586613531) +zone = ('ksz059', 0.0020114522901527108) + +[fips2000351325] +centroid = (0.66554357622960947, -1.6604687781283649) +description = North Rich township, KS +station = ('kcnu', 0.0094253086139902686) +zone = ('ksz059', 0.0025633013698309944) + +[fips2000353900] +centroid = (0.6646301058057007, -1.6642582719068799) +description = Ozark township, KS +station = ('kcnu', 0.0074360862433856317) +zone = ('ksz059', 0.0024839506361924953) + +[fips2000358000] +centroid = (0.66938192177388789, -1.6626433711098874) +description = Putnam township, KS +station = ('kixd', 0.0096077405252895307) +zone = ('ksz059', 0.0024532511565119059) + +[fips2000358825] +centroid = (0.6688224564821611, -1.6655603922486228) +description = Reeder township, KS +station = ('kfoe', 0.011106737014966991) +zone = ('ksz059', 0.0026336764843237293) + +[fips2000359175] +centroid = (0.66454919234157828, -1.6602537361112266) +description = Rich township, KS +station = ('kcnu', 0.0086779357694331278) +zone = ('ksz059', 0.0033377764663838107) + +[fips2000374650] +centroid = (0.66885692673488806, -1.6600048696131846) +description = Walker township, KS +station = ('kixd', 0.0091656165994606041) +zone = ('ksz059', 0.0031304205982838253) + +[fips2000375500] +centroid = (0.66709383003110834, -1.6631492547935776) +description = Washington township, KS +station = ('kcnu', 0.010040124727311349) +zone = ('ksz059', 0.00013099962617233124) + +[fips2000376450] +centroid = (0.66605844835894779, -1.6636910224466892) +description = Welda township, KS +station = ('kcnu', 0.0089301361960065911) +zone = ('ksz059', 0.00099128655146909681) + +[fips2000377275] +centroid = (0.66683328728037061, -1.6659137690622741) +description = Westphalia township, KS +station = ('kcnu', 0.0094372121494552749) +zone = ('ksz059', 0.0021506537554291201) + +[fips2000475] +centroid = (0.69302205742630074, -1.7005130365274697) +description = Agenda city, KS +station = ('kcnk', 0.0040015916335157222) +zone = ('ksz008', 0.0036070036985953072) + +[fips20005] +centroid = (0.68997305448952928, -1.6635326163637785) +description = Atchison County, KS +station = ('kstj', 0.0067172139080006552) +zone = ('ksz025', 1.1622657376122887e-05) + +[fips2000502900] +centroid = (0.69051592170006948, -1.6604468218863748) +description = Atchison city, KS +station = ('kstj', 0.0046136926293258119) +zone = ('ksz025', 0.0024361785557439441) + +[fips2000506150] +centroid = (0.68929139869687028, -1.6651131341745067) +description = Benton township, KS +station = ('ktop', 0.0080682731932108648) +zone = ('ksz025', 0.0013982112790336409) + +[fips2000511550] +centroid = (0.68895425344526251, -1.6632283356619855) +description = Center township, KS +station = ('kstj', 0.0072155135308312277) +zone = ('ksz025', 0.0010347545905310047) + +[fips2000528225] +centroid = (0.69116244401488569, -1.6665698732346839) +description = Grasshopper township, KS +station = ('kfnb', 0.0085211918485228605) +zone = ('ksz025', 0.0026364401739978993) + +[fips2000536100] +centroid = (0.68914967796160842, -1.6669001069824538) +description = Kapioma township, KS +station = ('ktop', 0.0075064302896154832) +zone = ('ksz025', 0.00272900827997961) + +[fips2000538350] +centroid = (0.69115567213738793, -1.6634379497051501) +description = Lancaster township, KS +station = ('kstj', 0.0060046447394228588) +zone = ('ksz025', 0.001193953203860182) + +[fips2000548925] +centroid = (0.68894882547128888, -1.6610314548259153) +description = Mount Pleasant township, KS +station = ('kstj', 0.0061420360383752709) +zone = ('ksz025', 0.0021744577837722037) + +[fips2000550] +centroid = (0.69396821786709939, -1.7299637746854994) +description = Agra city, KS +station = ('khlc', 0.011819089227384132) +zone = ('ksz005', 0.0030751991931668426) + +[fips2000564275] +centroid = (0.69112345335939629, -1.6607894649251262) +description = Shannon township, KS +station = ('kstj', 0.0043557959182275131) +zone = ('ksz025', 0.0024060324891102204) + +[fips2000574800] +centroid = (0.68876734613566648, -1.6591608283869201) +description = Walnut township, KS +station = ('kmci', 0.0052827315789883466) +zone = ('ksz025', 0.0035729733405320909) + +[fips20007] +centroid = (0.64966226686035244, -1.722379079901815) +description = Barber County, KS +station = ('kp28', 0.002152289490875398) +zone = ('ksz090', 0.00010467363827495469) + +[fips2000700400] +centroid = (0.64696426708944954, -1.7264047516347101) +description = Aetna township, KS +station = ('kavk', 0.0061896066886070814) +zone = ('ksz090', 0.0042630049211278267) + +[fips2000717300] +centroid = (0.65020724591928769, -1.7266358332276741) +description = Deerhead township, KS +station = ('kp28', 0.0052879491515147488) +zone = ('ksz090', 0.0034207293814518258) + +[fips2000719150] +centroid = (0.64957266165655492, -1.7232426862689945) +description = Eagle township, KS +station = ('kp28', 0.0028074439132229627) +zone = ('ksz090', 0.0007179472667084248) + +[fips2000720800] +centroid = (0.65320366208569647, -1.7220529127712025) +description = Elm Mills township, KS +station = ('kp28', 0.0029648098192387728) +zone = ('ksz090', 0.0034462914924051707) + +[fips2000720925] +centroid = (0.64689850308323438, -1.7228880528182817) +description = Elwood township, KS +station = ('kp28', 0.004449225380926845) +zone = ('ksz090', 0.0028974203221287598) + +[fips2000731175] +centroid = (0.6478819437568557, -1.7174872187144479) +description = Hazelton township, KS +station = ('kp28', 0.0034804132692849822) +zone = ('ksz091', 0.0047434727778628959) + +[fips2000737150] +centroid = (0.64627618848514323, -1.7191324358805478) +description = Kiowa township, KS +station = ('kp28', 0.0044969702048329469) +zone = ('ksz090', 0.0043436186174179992) + +[fips2000737900] +centroid = (0.65145941493783854, -1.7243384912398592) +description = Lake City township, KS +station = ('kp28', 0.0035128259064201675) +zone = ('ksz090', 0.0023035781755351204) + +[fips2000743550] +centroid = (0.65317034375027594, -1.7246484791683057) +description = McAdoo township, KS +station = ('kp28', 0.0044208865035015015) +zone = ('ksz090', 0.0038539339546608134) + +[fips2000745525] +centroid = (0.65097299167530764, -1.7198588419152279) +description = Medicine Lodge township, KS +station = ('kp28', 0.0002870814969193864) +zone = ('ksz090', 0.002337461726990145) + +[fips2000747050] +centroid = (0.65136823893771423, -1.722633112574443) +description = Mingona township, KS +station = ('kp28', 0.002176758881985407) +zone = ('ksz090', 0.0016145072765957394) + +[fips2000748075] +centroid = (0.64726472552018033, -1.7198819849811093) +description = Moore township, KS +station = ('kp28', 0.0034539984360561922) +zone = ('ksz090', 0.003194915936606652) + +[fips2000750775] +centroid = (0.64867348547921999, -1.7198390498815102) +description = Nippawalla township, KS +station = ('kp28', 0.0020486221607226088) +zone = ('ksz090', 0.0022967347312604354) + +[fips2000764350] +centroid = (0.65085622914834917, -1.7175088782504651) +description = Sharon township, KS +station = ('kp28', 0.0020042878006280716) +zone = ('ksz090', 0.004022963170493013) + +[fips2000769300] +centroid = (0.6517377600469465, -1.7272372213280338) +description = Sun City township, KS +station = ('kptt', 0.0069141978822411685) +zone = ('ksz090', 0.0043418601199236564) + +[fips2000771675] +centroid = (0.65340420041675074, -1.7269250691913147) +description = Turkey Creek township, KS +station = ('kptt', 0.0053232814144483004) +zone = ('ksz081', 0.0046494874310024767) + +[fips2000772750] +centroid = (0.65296933418032388, -1.7193752460860854) +description = Valley township, KS +station = ('kp28', 0.002310343450750436) +zone = ('ksz090', 0.0039931716947100631) + +[fips2000825] +centroid = (0.67114840441641643, -1.7280688532633168) +description = Albert city, KS +station = ('kgbd', 0.0026819665708772674) +zone = ('ksz046', 0.0042490053247369181) + +[fips20009] +centroid = (0.6716243207968503, -1.7238239507230786) +description = Barton County, KS +station = ('kgbd', 0.0026595468973751204) +zone = ('ksz047', 0.00015974917803604797) + +[fips2000900850] +centroid = (0.67321586908845132, -1.725605338477419) +description = Albion township, KS +station = ('kgbd', 0.0038823528931341577) +zone = ('ksz047', 0.0022486820589763049) + +[fips2000904975] +centroid = (0.67477369761890393, -1.7218157225258564) +description = Beaver township, KS +station = ('krsl', 0.0042159082513938606) +zone = ('ksz047', 0.0034885020639505919) + +[fips2000909075] +centroid = (0.67005851611171607, -1.7255719154222435) +description = Buffalo township, KS +station = ('kgbd', 0.00072497346771653777) +zone = ('ksz047', 0.0021573258567984606) + +[fips2000913025] +centroid = (0.67229039079928876, -1.7216000521901875) +description = Cheyenne township, KS +station = ('kgbd', 0.0042789315853381761) +zone = ('ksz047', 0.0017353322921054158) + +[fips2000913475] +centroid = (0.67005127299532019, -1.7274845868429189) +description = Clarence township, KS +station = ('kgbd', 0.0016787021441363283) +zone = ('ksz047', 0.00338940429986567) + +[fips2000914025] +centroid = (0.67463930726650034, -1.7197436327313038) +description = Cleveland township, KS +station = ('krsl', 0.0053453366145117254) +zone = ('ksz047', 0.0043060811167667246) + +[fips2000915125] +centroid = (0.66841109983075853, -1.7208632090865803) +description = Comanche township, KS +station = ('kgbd', 0.0037900125818271331) +zone = ('ksz047', 0.0038425264508308563) + +[fips2000920425] +centroid = (0.66943592226094462, -1.7205933113710521) +description = Ellinwood city, KS +station = ('kgbd', 0.0038874947002004506) +zone = ('ksz047', 0.0032040365402893618) + +[fips2000921750] +centroid = (0.67155904548282563, -1.7255604137024729) +description = Eureka township, KS +station = ('kgbd', 0.0022252957770236472) +zone = ('ksz047', 0.0015145066941888905) + +[fips2000922400] +centroid = (0.6747450567658787, -1.7274251758351811) +description = Fairview township, KS +station = ('krsl', 0.0041951813532315934) +zone = ('ksz047', 0.0043367332298783227) + +[fips2000927475] +centroid = (0.67303667613414908, -1.7274804853191768) +description = Grant township, KS +station = ('kgbd', 0.0039999468705823561) +zone = ('ksz047', 0.0033467361174466912) + +[fips2000928300] +centroid = (0.66950727132076615, -1.7243767663103553) +description = Great Bend city, KS +station = ('kgbd', 0.00093536184642537001) +zone = ('ksz047', 0.0021596024335631642) + +[fips2000928325] +centroid = (0.6701082056355202, -1.7231815822918821) +description = Great Bend township, KS +station = ('kgbd', 0.0020110256070493011) +zone = ('ksz047', 0.0015175193377947799) + +[fips2000932550] +centroid = (0.67226487408562474, -1.7239947486436789) +description = Hoisington city, KS +station = ('kgbd', 0.0031738568628630953) +zone = ('ksz047', 0.00073834032915889316) + +[fips2000933975] +centroid = (0.67297649718154029, -1.7196351779715848) +description = Independent township, KS +station = ('kgbd', 0.0058920071485989694) +zone = ('ksz047', 0.0034184156256984932) + +[fips2000938125] +centroid = (0.66998519482983976, -1.720314756822434) +description = Lakin township, KS +station = ('kgbd', 0.0041550855940564475) +zone = ('ksz047', 0.003047675721196668) + +[fips2000939875] +centroid = (0.66820579675084657, -1.7259917194672258) +description = Liberty township, KS +station = ('kgbd', 0.0011802761856304982) +zone = ('ksz047', 0.0038547906890722856) + +[fips2000941750] +centroid = (0.6715442625440613, -1.7195850870220526) +description = Logan township, KS +station = ('kgbd', 0.0051693578120278905) +zone = ('ksz047', 0.003163754118605042) + +[fips2000950] +centroid = (0.66748131057834359, -1.7158678324212775) +description = Alden city, KS +station = ('khut', 0.0068495596547786149) +zone = ('ksz050', 0.0023566139162320681) + +[fips2000951200] +centroid = (0.67318302199192881, -1.7235199667272589) +description = North Homestead township, KS +station = ('kgbd', 0.0041642178309408183) +zone = ('ksz047', 0.001599934437981405) + +[fips2000954900] +centroid = (0.66841790661484135, -1.7276351913040735) +description = Pawnee Rock township, KS +station = ('kgbd', 0.0018755862651091216) +zone = ('ksz065', 0.0039885659555160867) + +[fips2000966525] +centroid = (0.6684124960941602, -1.7234595259752621) +description = South Bend township, KS +station = ('kgbd', 0.0018802819771006232) +zone = ('ksz047', 0.003175431567043769) + +[fips2000966725] +centroid = (0.67142482966334727, -1.7234913782341112) +description = South Homestead township, KS +station = ('kgbd', 0.0026404078668574023) +zone = ('ksz047', 0.0001919735695797574) + +[fips2000972025] +centroid = (0.6747209712222012, -1.7237285510261646) +description = Union township, KS +station = ('krsl', 0.0037047675719855582) +zone = ('ksz047', 0.0031367516315205955) + +[fips2000974825] +centroid = (0.67157381096829749, -1.7274855816805927) +description = Walnut township, KS +station = ('kgbd', 0.0027056616994259762) +zone = ('ksz047', 0.0030213903697216223) + +[fips2000977600] +centroid = (0.67466971090207006, -1.7254972851434283) +description = Wheatland township, KS +station = ('krsl', 0.003736850066761538) +zone = ('ksz047', 0.003413860930223759) + +[fips2001050] +centroid = (0.67141571904465192, -1.7375271066391393) +description = Alexander city, KS +station = ('khys', 0.0077056534213760927) +zone = ('ksz046', 0.0034607177705141992) + +[fips20011] +centroid = (0.66071358696422533, -1.65546099217208) +description = Bourbon County, KS +station = ('kpts', 0.007282093532051814) +zone = ('ksz073', 2.7386992488789648e-05) + +[fips2001118750] +centroid = (0.65837957560882598, -1.652764667917259) +description = Drywood township, KS +station = ('kpts', 0.0047763768519594827) +zone = ('ksz073', 0.0031336562795526487) + +[fips2001124000] +centroid = (0.66026849309838187, -1.6528879579756199) +description = Fort Scott city, KS +station = ('kpts', 0.0066527738934240898) +zone = ('ksz073', 0.0020548395613025224) + +[fips2001124300] +centroid = (0.66260915415823141, -1.6583886423659604) +description = Franklin township, KS +station = ('kcnu', 0.0082525438072848217) +zone = ('ksz073', 0.0030153671512019595) + +[fips2001124600] +centroid = (0.66297809930881046, -1.6540020365437529) +description = Freedom township, KS +station = ('kpts', 0.0093664886776136207) +zone = ('ksz073', 0.0025441937072807727) + +[fips2001144650] +centroid = (0.66031875858083922, -1.6578570499823881) +description = Marion township, KS +station = ('kcnu', 0.0074271367797553783) +zone = ('ksz073', 0.00195173355327022) + +[fips2001144900] +centroid = (0.65995208235828773, -1.6548449956658813) +description = Marmaton township, KS +station = ('kpts', 0.0064360556999697571) +zone = ('ksz073', 0.00087839183561711962) + +[fips2001146675] +centroid = (0.66170062301610577, -1.6552240637261217) +description = Mill Creek township, KS +station = ('kpts', 0.0082098433510389736) +zone = ('ksz073', 0.0010161590896287703) + +[fips2001153100] +centroid = (0.66276876451832623, -1.6522761328063333) +description = Osage township, KS +station = ('kpts', 0.009182371176164059) +zone = ('ksz073', 0.0032387806799401065) + +[fips2001154775] +centroid = (0.65826619902061634, -1.6550428636431798) +description = Pawnee township, KS +station = ('kpts', 0.0048303356767026495) +zone = ('ksz073', 0.0024511075945771888) + +[fips2001163500] +centroid = (0.66027638198660077, -1.6524401064895582) +description = Scott township, KS +station = ('kpts', 0.0066895259195939635) +zone = ('ksz073', 0.0024004305335740437) + +[fips2001170600] +centroid = (0.6630875838127881, -1.6559045501481817) +description = Timberhill township, KS +station = ('kpts', 0.0096750661273434582) +zone = ('ksz073', 0.0024185327164969917) + +[fips2001174850] +centroid = (0.65832559257506174, -1.6579911261755262) +description = Walnut township, KS +station = ('kpts', 0.0059676091366348194) +zone = ('ksz073', 0.0031170844474726713) + +[fips2001275] +centroid = (0.67465922147326562, -1.6784775391360478) +description = Allen city, KS +station = ('kemp', 0.0056315934432650165) +zone = ('ksz054', 0.0034778974578795778) + +[fips20013] +centroid = (0.69509362362207772, -1.6680095080681914) +description = Brown County, KS +station = ('kfnb', 0.0044961089915028611) +zone = ('ksz012', 7.735585606041519e-05) + +[fips2001329725] +centroid = (0.69726151453927243, -1.6687297181840268) +description = Hamlin township, KS +station = ('kfnb', 0.0023542172985140729) +zone = ('ksz012', 0.0022460899619019489) + +[fips2001331675] +centroid = (0.69553938071303711, -1.6674531669158255) +description = Hiawatha city, KS +station = ('kfnb', 0.0040918846076918826) +zone = ('ksz012', 0.00055806583115324633) + +[fips2001331700] +centroid = (0.69496567353461414, -1.6667237065549547) +description = Hiawatha township, KS +station = ('kfnb', 0.0047651620125498629) +zone = ('ksz012', 0.00092169896869896684) + +[fips2001333200] +centroid = (0.6922449844834353, -1.6673575403261089) +description = Horton city, KS +station = ('kfnb', 0.0073726049107391183) +zone = ('ksz012', 0.0028916788654026276) + +[fips2001334500] +centroid = (0.69695039214681198, -1.6649112170333435) +description = Irving township, KS +station = ('kfnb', 0.0036692370938438399) +zone = ('ksz012', 0.0029495583271632918) + +[fips2001347200] +centroid = (0.69321132093038695, -1.6674286799464202) +description = Mission township, KS +station = ('kfnb', 0.0064054229192769038) +zone = ('ksz012', 0.0019297603838483953) + +[fips2001348325] +centroid = (0.69733631935101292, -1.6706949065618948) +description = Morrill township, KS +station = ('kfnb', 0.0029300374912032815) +zone = ('nez093', 0.0029767958389714695) + +[fips2001350] +centroid = (0.68095218062425644, -1.6805387904359457) +description = Alma city, KS +station = ('kmhk', 0.0057393998528343978) +zone = ('ksz038', 0.001564232788194611) + +[fips2001354025] +centroid = (0.69727823479350648, -1.6668068365872271) +description = Padonia township, KS +station = ('kfnb', 0.0025568854575292017) +zone = ('ksz012', 0.0023319594061173054) + +[fips2001357375] +centroid = (0.69331487131490777, -1.6704378370163688) +description = Powhattan township, KS +station = ('kfnb', 0.0064931831339856824) +zone = ('ksz012', 0.0026420185324546072) + +[fips2001360350] +centroid = (0.69499101571535304, -1.6648777067117053) +description = Robinson township, KS +station = ('kfnb', 0.005270096275122837) +zone = ('ksz012', 0.0023316243321184153) + +[fips2001362025] +centroid = (0.69701519622193853, -1.6717359431008318) +description = Sabetha city, KS +station = ('kfnb', 0.0037099541101918141) +zone = ('nez093', 0.0034148618265199826) + +[fips2001374875] +centroid = (0.69547077182014128, -1.6704454641051998) +description = Walnut township, KS +station = ('kfnb', 0.0044478607703333688) +zone = ('ksz012', 0.0019809582226176271) + +[fips2001375525] +centroid = (0.69296959282898574, -1.664848420086857) +description = Washington township, KS +station = ('kfnb', 0.0071109248028122345) +zone = ('ksz025', 0.0031744591909145603) + +[fips2001425] +centroid = (0.6962344929942289, -1.7402626309889602) +description = Almena city, KS +station = ('khlc', 0.0093061299348520341) +zone = ('ksz004', 0.003196775073745464) + +[fips20015] +centroid = (0.65927510404802425, -1.6901552404551692) +description = Butler County, KS +station = ('kaao', 0.0052306526417926309) +zone = ('ksz069', 0.00013131411476032356) + +[fips2001503300] +centroid = (0.65795450066950267, -1.6925009280632644) +description = Augusta city, KS +station = ('kaao', 0.0034818902692511926) +zone = ('ksz069', 0.0023519043854795417) + +[fips2001503325] +centroid = (0.65783897732631325, -1.6928347222827083) +description = Augusta township, KS +station = ('kaao', 0.0032622130671807656) +zone = ('ksz069', 0.0026319475831102102) + +[fips2001506200] +centroid = (0.6594130374188093, -1.6946885935608842) +description = Benton township, KS +station = ('kaao', 0.0017209852691466789) +zone = ('ksz069', 0.0035782965367394093) + +[fips2001507500] +centroid = (0.65636216697973826, -1.6908853465878633) +description = Bloomington township, KS +station = ('kaao', 0.0052725070604434134) +zone = ('ksz069', 0.00309763677043041) + +[fips2001508825] +centroid = (0.6579768059773432, -1.6948605084922057) +description = Bruno township, KS +station = ('kaao', 0.00173751201355784) +zone = ('ksz069', 0.0039816975703564758) + +[fips2001512750] +centroid = (0.66208836536272875, -1.6870486591063742) +description = Chelsea township, KS +station = ('kemp', 0.0094008960012790747) +zone = ('ksz069', 0.0036375994787394336) + +[fips2001513575] +centroid = (0.65500807073287093, -1.6891176945747359) +description = Clay township, KS +station = ('kaao', 0.0071684749951502679) +zone = ('ksz069', 0.0044751720471758582) + +[fips2001514175] +centroid = (0.66384510906803118, -1.6925824698459178) +description = Clifford township, KS +station = ('kewk', 0.0042068183952028186) +zone = ('ksz069', 0.0048324304339503396) + +[fips2001518425] +centroid = (0.65477726839258721, -1.6926452667924043) +description = Douglass township, KS +station = ('kiab', 0.0043197048633608244) +zone = ('ksz069', 0.0050295912172917167) + +[fips2001520075] +centroid = (0.66009153416552213, -1.6905538911096172) +description = El Dorado city, KS +station = ('kaao', 0.0050496185451407707) +zone = ('ksz069', 0.00075219861163800666) + +[fips2001520100] +centroid = (0.65925693517051098, -1.6915418172794159) +description = El Dorado township, KS +station = ('kaao', 0.0041370659504555993) +zone = ('ksz069', 0.0011014692350968802) + +[fips2001522275] +centroid = (0.66410367959671424, -1.6946946149468036) +description = Fairmount township, KS +station = ('kewk', 0.0025355532508121049) +zone = ('ksz052', 0.0053837438757243783) + +[fips2001522450] +centroid = (0.66081054000417361, -1.6929053557575364) +description = Fairview township, KS +station = ('kaao', 0.0036095973431082003) +zone = ('ksz069', 0.002582794507147935) + +[fips2001526400] +centroid = (0.65786149207366384, -1.6862441670409598) +description = Glencoe township, KS +station = ('kaao', 0.0083707643051427229) +zone = ('ksz069', 0.0034615028928627) + +[fips2001531750] +centroid = (0.6563370516918019, -1.6860416215812661) +description = Hickory township, KS +station = ('kaao', 0.0088440122891365498) +zone = ('ksz069', 0.0044773294543559794) + +[fips2001540500] +centroid = (0.66309423351723817, -1.6904357323192571) +description = Lincoln township, KS +station = ('kewk', 0.005976473162633401) +zone = ('ksz069', 0.0036942601792956881) + +[fips2001541625] +centroid = (0.65783391587148243, -1.6889535987184636) +description = Little Walnut township, KS +station = ('kaao', 0.0062527710910152117) +zone = ('ksz069', 0.0018396922633735898) + +[fips2001541775] +centroid = (0.6563627952982688, -1.6892962766638) +description = Logan township, KS +station = ('kaao', 0.0064074149738574037) +zone = ('ksz069', 0.0031195315634782784) + +[fips2001546875] +centroid = (0.66238648505226194, -1.694485733941925) +description = Milton township, KS +station = ('kewk', 0.0031982037326037656) +zone = ('ksz069', 0.0045317521903475771) + +[fips2001549225] +centroid = (0.6609368320288479, -1.6946676147032751) +description = Murdock township, KS +station = ('kaao', 0.0026485567587441862) +zone = ('ksz069', 0.0038746871969047893) + +[fips2001550] +centroid = (0.6490073844184191, -1.6631558346848576) +description = Altamont city, KS +station = ('kppf', 0.0038770333496405455) +zone = ('ksz100', 0.00013092915446620239) + +[fips2001556200] +centroid = (0.65625481177744804, -1.694549682805718) +description = Pleasant township, KS +station = ('kiab', 0.0024511685039493767) +zone = ('ksz069', 0.0046895647118601154) + +[fips2001556850] +centroid = (0.66250124045058056, -1.6926074455075137) +description = Plum Grove township, KS +station = ('kewk', 0.0044761553830901905) +zone = ('ksz069', 0.0036479715015516976) + +[fips2001557775] +centroid = (0.66030226521940782, -1.6887618393935468) +description = Prospect township, KS +station = ('kaao', 0.0064755978817639384) +zone = ('ksz069', 0.0014230094466203883) + +[fips2001559250] +centroid = (0.65471153929295711, -1.6944987366448523) +description = Richland township, KS +station = ('kiab', 0.0030755867639034747) +zone = ('ksz069', 0.0058169286835503091) + +[fips2001560475] +centroid = (0.65470944489785465, -1.691041396476284) +description = Rock Creek township, KS +station = ('kaao', 0.0061390343175402335) +zone = ('ksz069', 0.0047483217895911006) + +[fips2001561125] +centroid = (0.65956008140828981, -1.6863066323748888) +description = Rosalia township, KS +station = ('kaao', 0.0082854207518883866) +zone = ('ksz069', 0.0030501283681277813) + +[fips2001567275] +centroid = (0.65785463292970348, -1.6908210312049272) +description = Spring township, KS +station = ('kaao', 0.0047974379200138246) +zone = ('ksz069', 0.0016371075200401473) + +[fips2001569700] +centroid = (0.66370988095758665, -1.6868797810479514) +description = Sycamore township, KS +station = ('kemp', 0.0081695157821380163) +zone = ('ksz053', 0.0048498253635030908) + +[fips2001571150] +centroid = (0.65926731987956033, -1.6927306308461194) +description = Towanda township, KS +station = ('kaao', 0.0032040682944896779) +zone = ('ksz069', 0.0020356743750423825) + +[fips2001572050] +centroid = (0.65485270152285835, -1.6863136136918968) +description = Union township, KS +station = ('kwld', 0.0084380689258946422) +zone = ('ksz069', 0.0054786239665178095) + +[fips2001574900] +centroid = (0.65661487320213441, -1.6927152719487017) +description = Walnut township, KS +station = ('kaao', 0.0039049294128440759) +zone = ('ksz069', 0.0034461734975363349) + +[fips2001575] +centroid = (0.67828807514742717, -1.6840500961849854) +description = Alta Vista city, KS +station = ('kfri', 0.0050238505038972077) +zone = ('ksz037', 0.0037659429498027555) + +[fips2001600] +centroid = (0.68884169716180144, -1.726979191851419) +description = Alton city, KS +station = ('krsl', 0.010641260058369545) +zone = ('ksz018', 0.0031841772324976646) + +[fips2001625] +centroid = (0.65492637187058511, -1.6696081074899705) +description = Altoona city, KS +station = ('kcnu', 0.0034965196845097449) +zone = ('ksz095', 0.0012857706936711558) + +[fips2001675] +centroid = (0.67206320129055674, -1.6800763130907521) +description = Americus city, KS +station = ('kemp', 0.0031344156382047367) +zone = ('ksz054', 0.0017219035893112045) + +[fips20017] +centroid = (0.66843584859955185, -1.6858844546821241) +description = Chase County, KS +station = ('kemp', 0.0054303123460331826) +zone = ('ksz053', 6.0167884985317141e-05) + +[fips2001704700] +centroid = (0.66769870878997206, -1.6835450677126282) +description = Bazaar township, KS +station = ('kemp', 0.0038070181044671525) +zone = ('ksz053', 0.002001229000271857) + +[fips2001711225] +centroid = (0.66594575244914656, -1.6893693535995811) +description = Cedar township, KS +station = ('kewk', 0.0069734860961698023) +zone = ('ksz053', 0.0037420242934815065) + +[fips2001715875] +centroid = (0.6682967458581679, -1.688604340881847) +description = Cottonwood township, KS +station = ('kemp', 0.0075675895465450102) +zone = ('ksz053', 0.0021447645217560177) + +[fips2001717975] +centroid = (0.6706485595719377, -1.6878248244780287) +description = Diamond Creek township, KS +station = ('kemp', 0.0070966745228771373) +zone = ('ksz053', 0.0026364461495885145) + +[fips2001722850] +centroid = (0.66925423348581203, -1.6849916838631438) +description = Falls township, KS +station = ('kemp', 0.0046990438997614797) +zone = ('ksz053', 0.0010316156401639794) + +[fips2001732950] +centroid = (0.66611463050756947, -1.6872852559397746) +description = Homestead township, KS +station = ('kemp', 0.0071303205945233003) +zone = ('ksz053', 0.0026236614304243544) + +[fips2001745125] +centroid = (0.66550418414839196, -1.6840635875801031) +description = Matfield township, KS +station = ('kemp', 0.0053198483855899214) +zone = ('ksz053', 0.0033158985761706089) + +[fips2001768600] +centroid = (0.67132126182553398, -1.684533953813516) +description = Strong township, KS +station = ('kemp', 0.0048943661836066028) +zone = ('ksz053', 0.0030167675110774534) + +[fips2001770775] +centroid = (0.67041765251189889, -1.6826672718186304) +description = Toledo township, KS +station = ('kemp', 0.0031821126890612559) +zone = ('ksz053', 0.0031706015553111507) + +[fips2001775] +centroid = (0.65958613917402209, -1.7039214376638117) +description = Andale city, KS +station = ('kict', 0.0036449062017086991) +zone = ('ksz083', 0.0029569380159751588) + +[fips2001800] +centroid = (0.65776359655591954, -1.6952890740900328) +description = Andover city, KS +station = ('kaao', 0.0015947410686646232) +zone = ('ksz083', 0.0045331706351727308) + +[fips20019] +centroid = (0.64846415068873597, -1.6797990500857805) +description = Chautauqua County, KS +station = ('kidp', 0.0066135880987864791) +zone = ('ksz098', 7.2600527948118819e-05) + +[fips2001905575] +centroid = (0.64664274253464715, -1.6782572436778611) +description = Belleville township, KS +station = ('kbvo', 0.0053174547416402346) +zone = ('ksz098', 0.0021371233731358377) + +[fips2001910425] +centroid = (0.65017212989473749, -1.6833054340063296) +description = Caneyville township, KS +station = ('kidp', 0.0095692198511185926) +zone = ('ksz098', 0.0033133293217797559) + +[fips2001911575] +centroid = (0.65009996053016761, -1.6809198132649485) +description = Center township, KS +station = ('kidp', 0.0076942545185724482) +zone = ('ksz098', 0.0019282063892398426) + +[fips2001930275] +centroid = (0.64685574251656042, -1.6836837515749918) +description = Harrison township, KS +station = ('kbvo', 0.0081393721721888003) +zone = ('ksz098', 0.0034591037824623994) + +[fips2001931300] +centroid = (0.64630531803035896, -1.6806326193365329) +description = Hendricks township, KS +station = ('kbvo', 0.0060089025545095702) +zone = ('ksz098', 0.0021900505527289505) + +[fips2001935125] +centroid = (0.64838533161971579, -1.6832701434488542) +description = Jefferson township, KS +station = ('kbvo', 0.008959146356039149) +zone = ('ksz098', 0.0027680049114575237) + +[fips2001937650] +centroid = (0.6497603194577295, -1.6783232869367566) +description = Lafayette township, KS +station = ('kidp', 0.0056044206318647209) +zone = ('ksz098', 0.0018034758668579957) + +[fips2001941525] +centroid = (0.64664319632025258, -1.6759466022811458) +description = Little Caney township, KS +station = ('kidp', 0.0039519988986469606) +zone = ('ksz098', 0.0035340826740681811) + +[fips2001962775] +centroid = (0.65005103895123417, -1.6759131617726777) +description = Salt Creek township, KS +station = ('kidp', 0.0038867665970502095) +zone = ('ksz098', 0.0035109281033885594) + +[fips2001963775] +centroid = (0.64836641225062419, -1.6784566126383165) +description = Sedan township, KS +station = ('kidp', 0.0055434585239101134) +zone = ('ksz098', 0.0010689686282381247) + +[fips2001969025] +centroid = (0.64843385177292123, -1.680832215189791) +description = Summit township, KS +station = ('kidp', 0.007436851688445505) +zone = ('ksz098', 0.00082589628135253449) + +[fips2001975] +centroid = (0.64851661528605087, -1.7111299267272284) +description = Anthony city, KS +station = ('kp28', 0.0074148521883169935) +zone = ('ksz091', 0.00077182440758765639) + +[fips2001975550] +centroid = (0.6482951155506802, -1.6760363122046984) +description = Washington township, KS +station = ('kidp', 0.0036156150585704779) +zone = ('ksz098', 0.0029994378803208793) + +[fips20021] +centroid = (0.64872827136444022, -1.6553697114522008) +description = Cherokee County, KS +station = ('kpts', 0.0051541615524760033) +zone = ('ksz101', 7.1639414930344156e-06) + +[fips2002104625] +centroid = (0.64612005133025985, -1.6534369861984197) +description = Baxter Springs city, KS +station = ('kjln', 0.0039817050645813649) +zone = ('ksz101', 0.0030319338111513086) + +[fips2002112800] +centroid = (0.65098988646246692, -1.6540269074855938) +description = Cherokee township, KS +station = ('kpts', 0.0026901839964539294) +zone = ('ksz101', 0.002506013783662235) + +[fips2002115075] +centroid = (0.64877886845945554, -1.6553423795961146) +description = Columbus city, KS +station = ('kpts', 0.0050993024971368942) +zone = ('ksz101', 5.960121183042948e-05) + +[fips2002116225] +centroid = (0.6486846032265553, -1.6540176223339733) +description = Crawford township, KS +station = ('kjln', 0.003742616238200058) +zone = ('ksz101', 0.0010852316855852694) + +[fips2002125100] +centroid = (0.64708420611564665, -1.6517013609770665) +description = Galena city, KS +station = ('kjln', 0.002293940910959608) +zone = ('ksz101', 0.0033606487760080182) + +[fips2002125250] +centroid = (0.6464911432358188, -1.6525623668036604) +description = Garden township, KS +station = ('kjln', 0.0031979680351980296) +zone = ('ksz101', 0.0031688694370601636) + +[fips2002142350] +centroid = (0.64857998819119078, -1.6582104966092095) +description = Lola township, KS +station = ('kpts', 0.0063564580664256139) +zone = ('ksz101', 0.0022615952998019952) + +[fips2002143075] +centroid = (0.64755617805197085, -1.6523676578723079) +description = Lowell township, KS +station = ('kjln', 0.0025567752524515456) +zone = ('ksz101', 0.0026704319628984468) + +[fips2002143400] +centroid = (0.64670658667868508, -1.6559160693212451) +description = Lyon township, KS +station = ('kjln', 0.0055112500104019854) +zone = ('ksz101', 0.0020650700181979445) + +[fips2002147000] +centroid = (0.65029260997300276, -1.6544066387709504) +description = Mineral township, KS +station = ('kpts', 0.003437312179411916) +zone = ('ksz101', 0.0017467625839185127) + +[fips2002149725] +centroid = (0.64672224228207542, -1.6581646119031743) +description = Neosho township, KS +station = ('kpts', 0.0078957771730846071) +zone = ('ksz101', 0.0029923638079246209) + +[fips2002156675] +centroid = (0.6504024609961232, -1.6523817426793714) +description = Pleasant View township, KS +station = ('kjln', 0.0031519167347888138) +zone = ('ksz101', 0.0029160539807374219) + +[fips2002161350] +centroid = (0.65056189682329291, -1.6559624776260555) +description = Ross township, KS +station = ('kpts', 0.0037010522386612325) +zone = ('ksz101', 0.0018932346920272612) + +[fips2002162575] +centroid = (0.64850471214055216, -1.6562357612803329) +description = Salamanca township, KS +station = ('kpts', 0.0056118774546679052) +zone = ('ksz101', 0.00071834051861066617) + +[fips2002163325] +centroid = (0.65063069770240656, -1.6549846743659185) +description = Scammon city, KS +station = ('kpts', 0.0032646337483832259) +zone = ('ksz101', 0.0019296803185021845) + +[fips2002164475] +centroid = (0.64869127038429786, -1.6523686178033965) +description = Shawnee township, KS +station = ('kjln', 0.0024355075221242661) +zone = ('ksz101', 0.0023987074389818989) + +[fips2002164625] +centroid = (0.65057578964413876, -1.6581575258664112) +description = Sheridan township, KS +station = ('kpts', 0.0048888359667331573) +zone = ('ksz101', 0.0028838137774153064) + +[fips2002167725] +centroid = (0.64695456305880839, -1.6543287970863114) +description = Spring Valley township, KS +station = ('kjln', 0.0042323778625995402) +zone = ('ksz101', 0.0019598254425187045) + +[fips2002175] +centroid = (0.65696240316279153, -1.651500403766992) +description = Arcadia city, KS +station = ('kpts', 0.0036447767906051896) +zone = ('ksz097', 0.0039228364641710096) + +[fips2002176350] +centroid = (0.6511520799098548, -1.6541272988241686) +description = Weir city, KS +station = ('kpts', 0.0025495955040735581) +zone = ('ksz101', 0.0026219876090533062) + +[fips2002250] +centroid = (0.65044658291961355, -1.7062908268431491) +description = Argonia city, KS +station = ('kict', 0.0080858165331672734) +zone = ('ksz091', 0.0045384963816474475) + +[fips20023] +centroid = (0.69445352411890893, -1.7754763590706126) +description = Cheyenne County, KS +station = ('ksyf', 0.0010414233669072031) +zone = ('ksz001', 7.9820589955416596e-05) + +[fips2002300] +centroid = (0.64703716949230528, -1.6936402091857963) +description = Arkansas City city, KS +station = ('kwld', 0.001645069267210007) +zone = ('ksz093', 0.004015709237136433) + +[fips2002306025] +centroid = (0.69211516689367192, -1.7788209509695019) +description = Benkelman township, KS +station = ('ksyf', 0.0024847911558929753) +zone = ('ksz001', 0.0033972079068953958) + +[fips2002306850] +centroid = (0.69426684370211555, -1.7717479169093322) +description = Bird City township, KS +station = ('ksyf', 0.0038024724615612834) +zone = ('ksz001', 0.002920259389236905) + +[fips2002309950] +centroid = (0.69686979284195483, -1.7746203274323868) +description = Calhoun township, KS +station = ('ksyf', 0.0032978541917243697) +zone = ('ksz001', 0.0025761738581326593) + +[fips2002314150] +centroid = (0.69644297257337973, -1.7768308218366229) +description = Cleveland Run township, KS +station = ('ksyf', 0.0024695964160290581) +zone = ('ksz001', 0.0022753242337321517) + +[fips2002325] +centroid = (0.66141147431892777, -1.7135113237718198) +description = Arlington city, KS +station = ('khut', 0.005204417861915403) +zone = ('ksz067', 0.0015963362898491395) + +[fips2002335025] +centroid = (0.69178458408005161, -1.7802966268520632) +description = Jaqua township, KS +station = ('ksyf', 0.0035416471472077774) +zone = ('ksz001', 0.0044910584848580357) + +[fips2002353050] +centroid = (0.6943881091785441, -1.7748673438814218) +description = Orlando township, KS +station = ('ksyf', 0.0014532634099880858) +zone = ('ksz001', 0.00052029837101347091) + +[fips2002375] +centroid = (0.65524503408541412, -1.6528583397382137) +description = Arma city, KS +station = ('kpts', 0.0016656268688518465) +zone = ('ksz097', 0.0021665552067189711) + +[fips2002375375] +centroid = (0.69428935844946638, -1.7776818094733104) +description = Wano township, KS +station = ('ksyf', 0.00083086475829656514) +zone = ('ksz001', 0.0016458320346310115) + +[fips20025] +centroid = (0.64985294408113281, -1.7420806532042998) +description = Clark County, KS +station = ('kddc', 0.0095373637552934269) +zone = ('ksz088', 9.3990959186650286e-05) + +[fips2002502100] +centroid = (0.65260394950141876, -1.7438240102342397) +description = Appleton township, KS +station = ('kddc', 0.0065894986736214772) +zone = ('ksz088', 0.003015216520072981) + +[fips2002511600] +centroid = (0.6483032138784095, -1.742293443746703) +description = Center township, KS +station = ('kddc', 0.011022966322076664) +zone = ('ksz088', 0.0015808902977296302) + +[fips2002521375] +centroid = (0.64836253761968476, -1.7454909916561117) +description = Englewood township, KS +station = ('kddc', 0.010806272464795579) +zone = ('ksz088', 0.0030350867394412576) + +[fips2002539775] +centroid = (0.65133275639402122, -1.7389433889672552) +description = Lexington township, KS +station = ('kddc', 0.0090735802473908226) +zone = ('ksz088', 0.0029648336894927681) + +[fips2002539900] +centroid = (0.65345038182875848, -1.7392099880104974) +description = Liberty township, KS +station = ('kddc', 0.007194629120435868) +zone = ('ksz088', 0.0042845593199085904) + +[fips2002565725] +centroid = (0.64809976084750454, -1.7390580047392334) +description = Sitka township, KS +station = ('kddc', 0.011940173724829152) +zone = ('ksz088', 0.0030682865403952151) + +[fips2002600] +centroid = (0.6877905028066178, -1.7099554248603916) +description = Asherville CDP, KS +station = ('kcnk', 0.0050202098094577598) +zone = ('ksz019', 0.0031961216900488567) + +[fips2002675] +centroid = (0.64903122561600135, -1.7413096714605241) +description = Ashland city, KS +station = ('kddc', 0.010482699667229844) +zone = ('ksz088', 0.0011039604282872897) + +[fips20027] +centroid = (0.68669916587863822, -1.6959164152363697) +description = Clay County, KS +station = ('kcnk', 0.0074247815912680051) +zone = ('ksz021', 9.6944822405311006e-05) + +[fips2002702950] +centroid = (0.68371631092051732, -1.6965379618895899) +description = Athelstane township, KS +station = ('kfri', 0.0063109293385933208) +zone = ('ksz021', 0.0031113261615689836) + +[fips2002707050] +centroid = (0.68668398151414589, -1.6961912696869736) +description = Blaine township, KS +station = ('kcnk', 0.0072475362035459559) +zone = ('ksz021', 0.00028080281927646229) + +[fips2002707325] +centroid = (0.68826725694509261, -1.6982432358352511) +description = Bloom township, KS +station = ('kcnk', 0.0051144634829770651) +zone = ('ksz021', 0.0023716431970781269) + +[fips2002712525] +centroid = (0.68367828019611643, -1.6984481374894351) +description = Chapman township, KS +station = ('kcnk', 0.0080317774523368558) +zone = ('ksz021', 0.003698100307868294) + +[fips2002713625] +centroid = (0.68733128922712561, -1.6951924352093497) +description = Clay Center city, KS +station = ('kfri', 0.0075112525545550394) +zone = ('ksz021', 0.00074904849184418169) + +[fips2002713650] +centroid = (0.68708415060504313, -1.6953225145985011) +description = Clay Center township, KS +station = ('kfri', 0.0073943219743859961) +zone = ('ksz021', 0.00050824996046778951) + +[fips2002722100] +centroid = (0.68537927808511001, -1.6965247148405671) +description = Exeter township, KS +station = ('kfri', 0.0070215226426830687) +zone = ('ksz021', 0.0014963075799866534) + +[fips2002723475] +centroid = (0.68682804099060546, -1.6984053420161762) +description = Five Creeks township, KS +station = ('kcnk', 0.0057403998066531186) +zone = ('ksz021', 0.001975818635845443) + +[fips2002725500] +centroid = (0.68980723075729722, -1.6951841099888179) +description = Garfield township, KS +station = ('kcnk', 0.0070658938262842851) +zone = ('ksz021', 0.0030689246410441173) + +[fips2002726250] +centroid = (0.68387990063130677, -1.694721719910087) +description = Gill township, KS +station = ('kmhk', 0.0057116532315905242) +zone = ('ksz021', 0.0030307496602910446) + +[fips2002727025] +centroid = (0.68977560539125105, -1.6932142441285545) +description = Goshen township, KS +station = ('kmhk', 0.008109694426197649) +zone = ('ksz021', 0.0036207268779762467) + +[fips2002727500] +centroid = (0.68546497375138304, -1.6927762886593516) +description = Grant township, KS +station = ('kmhk', 0.0048095717081702563) +zone = ('ksz021', 0.002719020279733809) + +[fips2002730875] +centroid = (0.68844336066661882, -1.6943897931929428) +description = Hayes township, KS +station = ('kmhk', 0.0076473074593063706) +zone = ('ksz021', 0.0020088722795321072) + +[fips2002731825] +centroid = (0.68794091528155465, -1.6927734786792559) +description = Highland township, KS +station = ('kmhk', 0.0064334032551518934) +zone = ('ksz021', 0.0026460004123231066) + +[fips2002749000] +centroid = (0.68975057736977741, -1.6982690318015954) +description = Mulberry township, KS +station = ('kcnk', 0.0047019838738216668) +zone = ('ksz021', 0.0035073533203445304) + +[fips2002751725] +centroid = (0.68553269252636029, -1.6982362719715356) +description = Oakland township, KS +station = ('kcnk', 0.0066980378069617591) +zone = ('ksz021', 0.0022285134136956707) + +[fips2002759025] +centroid = (0.68389400289166291, -1.6931810305128892) +description = Republican township, KS +station = ('kfri', 0.0040395052129293934) +zone = ('ksz021', 0.0035513584034767382) + +[fips2002764850] +centroid = (0.68939552504004431, -1.6965336160197524) +description = Sherman township, KS +station = ('kcnk', 0.0060768063387295103) +zone = ('ksz021', 0.0026663719511804272) + +[fips2002772075] +centroid = (0.68516217657945444, -1.6947300276773265) +description = Union township, KS +station = ('kfri', 0.0057545691407091711) +zone = ('ksz021', 0.0018372662339068556) + +[fips2002850] +centroid = (0.67509649626406021, -1.7035146537750494) +description = Assaria city, KS +station = ('ksln', 0.0019052958832776606) +zone = ('ksz049', 0.0019150871763610013) + +[fips20029] +centroid = (0.68918390386824002, -1.7041637417238662) +description = Cloud County, KS +station = ('kcnk', 0.0011248453907148749) +zone = ('ksz020', 0.00016297135220631065) + +[fips2002900] +centroid = (0.69051592170006948, -1.6604468218863748) +description = Atchison city, KS +station = ('kstj', 0.0046136926293258119) +zone = ('ksz025', 0.0024361785557439441) + +[fips2002902275] +centroid = (0.68907944591250814, -1.7062280298966623) +description = Arion township, KS +station = ('kcnk', 0.0019112079132789157) +zone = ('ksz020', 0.0014841345512000294) + +[fips2002903450] +centroid = (0.68836462886406125, -1.7022852438499445) +description = Aurora township, KS +station = ('kcnk', 0.0024955268092024668) +zone = ('ksz020', 0.0017088132645631741) + +[fips2002909100] +centroid = (0.69075578229917112, -1.7064424086886847) +description = Buffalo township, KS +station = ('kcnk', 0.0016951993600215405) +zone = ('ksz020', 0.002362780546791763) + +[fips2002911625] +centroid = (0.68869587490279727, -1.7042769961390281) +description = Center township, KS +station = ('kcnk', 0.0016064893334137274) +zone = ('ksz020', 0.00036774420891733881) + +[fips2002914775] +centroid = (0.68839477070024324, -1.7003031083250397) +description = Colfax township, KS +station = ('kcnk', 0.0036418560163564754) +zone = ('ksz020', 0.0031613242762961271) + +[fips2002915200] +centroid = (0.69054618570929904, -1.7042585480088344) +description = Concordia city, KS +station = ('kcnk', 0.00024933958138354971) +zone = ('ksz020', 0.0014836538349925577) + +[fips2002920150] +centroid = (0.69144735156198134, -1.7002724428900822) +description = Elk township, KS +station = ('kcnk', 0.0033257281925260064) +zone = ('ksz020', 0.003918576894961146) + +[fips2002927525] +centroid = (0.69132467236885864, -1.7082604134507324) +description = Grant township, KS +station = ('kcnk', 0.0032018527627468716) +zone = ('ksz020', 0.0037969843261702841) + +[fips2002938875] +centroid = (0.69134079921114699, -1.702317689520739) +description = Lawrence township, KS +station = ('kcnk', 0.0018626781887956167) +zone = ('ksz020', 0.0027454663785219592) + +[fips2002940525] +centroid = (0.69045286295419495, -1.7041211731434101) +description = Lincoln township, KS +station = ('kcnk', 0.00021715658624245538) +zone = ('ksz020', 0.0013971305708118504) + +[fips2002943425] +centroid = (0.68717513461894963, -1.7062919438538704) +description = Lyon township, KS +station = ('kcnk', 0.0034765106421007835) +zone = ('ksz020', 0.0024328675739471815) + +[fips2002945925] +centroid = (0.68679486228152509, -1.7042782876826745) +description = Meredith township, KS +station = ('kcnk', 0.003507272950153041) +zone = ('ksz020', 0.0022682036407089181) + +[fips2002949600] +centroid = (0.68982180425655149, -1.702319836275719) +description = Nelson township, KS +station = ('kcnk', 0.0016182750794518446) +zone = ('ksz020', 0.0017096139052253086) + +[fips2002951750] +centroid = (0.68693600705813385, -1.7022250125374583) +description = Oakland township, KS +station = ('kcnk', 0.0037357071788631695) +zone = ('ksz020', 0.0026658164748924753) + +[fips2002965375] +centroid = (0.6899590918555133, -1.7005536677924562) +description = Shirley township, KS +station = ('kcnk', 0.0029274645610571494) +zone = ('ksz020', 0.0030301281420915876) + +[fips2002965425] +centroid = (0.69168873059753222, -1.7047280939374985) +description = Sibley township, KS +station = ('kcnk', 0.0014213520458152594) +zone = ('ksz020', 0.0026459186603806466) + +[fips2002966250] +centroid = (0.68717209774605115, -1.7082073728947642) +description = Solomon township, KS +station = ('kcnk', 0.0043343147815014969) +zone = ('ksz020', 0.0035581472819267985) + +[fips2002968050] +centroid = (0.68674253731055024, -1.7004047912072608) +description = Starr township, KS +station = ('kcnk', 0.0046719313688393651) +zone = ('ksz020', 0.0038033182377542026) + +[fips2002969050] +centroid = (0.68943992621621497, -1.7082013515088446) +description = Summit township, KS +station = ('kcnk', 0.003112680282432096) +zone = ('ksz020', 0.0030302161756751668) + +[fips2003025] +centroid = (0.69405035306169827, -1.726476379947212) +description = Athol city, KS +station = ('khde', 0.013149973356163283) +zone = ('ksz006', 0.0018316992203105938) + +[fips2003050] +centroid = (0.65337643222835151, -1.688907766372306) +description = Atlanta city, KS +station = ('kwld', 0.0059743352734751469) +zone = ('ksz093', 0.0035906818112077382) + +[fips20031] +centroid = (0.66735194677418574, -1.6707886307427269) +description = Coffey County, KS +station = ('kemp', 0.00666865352609659) +zone = ('ksz058', 7.0068666659663231e-05) + +[fips2003100] +centroid = (0.65000915104918633, -1.7143948443457642) +description = Attica city, KS +station = ('kp28', 0.0045340140151597869) +zone = ('ksz091', 0.0022948615331387164) + +[fips2003103550] +centroid = (0.66605649359018548, -1.6683161798710593) +description = Avon township, KS +station = ('kcnu', 0.0087672075963613379) +zone = ('ksz058', 0.0023985619957604216) + +[fips2003109400] +centroid = (0.66659864521573253, -1.6710729623311695) +description = Burlington city, KS +station = ('kemp', 0.0066917439344641042) +zone = ('ksz058', 0.00077828281570541894) + +[fips2003109425] +centroid = (0.66607902579082878, -1.6716215193150712) +description = Burlington township, KS +station = ('kemp', 0.0065132737073901777) +zone = ('ksz058', 0.0014096751087019097) + +[fips2003129775] +centroid = (0.66659503238418083, -1.6699268220646772) +description = Hampden township, KS +station = ('kemp', 0.0075378326179435951) +zone = ('ksz058', 0.0010699886302746933) + +[fips2003136650] +centroid = (0.67016053060649516, -1.6709503704045092) +description = Key West township, KS +station = ('kemp', 0.0064148555753544912) +zone = ('ksz058', 0.0027995764767071263) + +[fips2003139675] +centroid = (0.66478959399274795, -1.6691822471524838) +description = LeRoy township, KS +station = ('kcnu', 0.007680143919822368) +zone = ('ksz058', 0.0028966350255160839) + +[fips2003139925] +centroid = (0.66509813329791545, -1.6734487394155693) +description = Liberty township, KS +station = ('kemp', 0.0058845478882708583) +zone = ('ksz058', 0.0030349108225978649) + +[fips2003140550] +centroid = (0.66946754762699068, -1.6735145034217842) +description = Lincoln township, KS +station = ('kemp', 0.0043283542328373436) +zone = ('ksz058', 0.002952938042558262) + +[fips2003149750] +centroid = (0.6645303427856567, -1.670797287575817) +description = Neosho township, KS +station = ('kemp', 0.0078726954039230485) +zone = ('ksz058', 0.0028318970036719329) + +[fips2003150] +centroid = (0.69481382988969054, -1.7635137152978109) +description = Atwood city, KS +station = ('kcbk', 0.0066314015522328847) +zone = ('ksz002', 0.00062655878217768182) + +[fips2003153700] +centroid = (0.66839258188739492, -1.6711263868595729) +description = Ottumwa township, KS +station = ('kemp', 0.0062171584568558027) +zone = ('ksz058', 0.0010494639993596665) + +[fips2003156225] +centroid = (0.66727351167760118, -1.673441321766248) +description = Pleasant township, KS +station = ('kemp', 0.0047133603499205775) +zone = ('ksz058', 0.0020161605407844944) + +[fips2003157200] +centroid = (0.66859336456454432, -1.6683665675265642) +description = Pottawatomie township, KS +station = ('kemp', 0.0083598801026137197) +zone = ('ksz058', 0.0023241630724134391) + +[fips2003160500] +centroid = (0.67003341827707241, -1.6683816122647164) +description = Rock Creek township, KS +station = ('kfoe', 0.0095152114841580444) +zone = ('ksz058', 0.0033124725280761153) + +[fips2003167375] +centroid = (0.66477318789777917, -1.6679047534064866) +description = Spring Creek township, KS +station = ('kcnu', 0.0074489945860844575) +zone = ('ksz058', 0.0034872510191340292) + +[fips2003168000] +centroid = (0.66722085509406848, -1.6684054185557138) +description = Star township, KS +station = ('kemp', 0.0085189388922735261) +zone = ('ksz058', 0.0019465178587123513) + +[fips2003250] +centroid = (0.67904949248690216, -1.6722969617355929) +description = Auburn city, KS +station = ('kfoe', 0.0022957846853784375) +zone = ('ksz039', 0.0024863634653257659) + +[fips20033] +centroid = (0.64907173470794011, -1.732310649117486) +description = Comanche County, KS +station = ('kavk', 0.010910362326092427) +zone = ('ksz089', 0.00025067909847742572) + +[fips2003300] +centroid = (0.65795450066950267, -1.6925009280632644) +description = Augusta city, KS +station = ('kaao', 0.0034818902692511926) +zone = ('ksz069', 0.0023519043854795417) + +[fips2003303525] +centroid = (0.64730837620477266, -1.7332703882198652) +description = Avilla township, KS +station = ('kavk', 0.010474669875781611) +zone = ('ksz089', 0.0018750225932170374) + +[fips2003314725] +centroid = (0.64920715480460234, -1.73118941469942) +description = Coldwater township, KS +station = ('kavk', 0.010355189893530577) +zone = ('ksz089', 0.0011448717703311162) + +[fips2003357325] +centroid = (0.65194301076698102, -1.7294884517170113) +description = Powell township, KS +station = ('kptt', 0.0076821634083604788) +zone = ('ksz089', 0.0037733613057085698) + +[fips2003357875] +centroid = (0.64864847491103894, -1.736377702606946) +description = Protection township, KS +station = ('kddc', 0.01242858255973197) +zone = ('ksz089', 0.0030282633709679059) + +[fips2003425] +centroid = (0.68856593513998643, -1.7022175076216746) +description = Aurora city, KS +station = ('kcnk', 0.0023780081371165794) +zone = ('ksz020', 0.0016866638130448872) + +[fips20035] +centroid = (0.64986474250687631, -1.6901287987170015) +description = Cowley County, KS +station = ('kwld', 0.0029720248089022648) +zone = ('ksz093', 5.5839138666560803e-05) + +[fips2003502300] +centroid = (0.64703716949230528, -1.6936402091857963) +description = Arkansas City city, KS +station = ('kwld', 0.001645069267210007) +zone = ('ksz093', 0.004015709237136433) + +[fips2003505025] +centroid = (0.64885367327119603, -1.6945697540921159) +description = Beaver township, KS +station = ('kwld', 0.00082987847501456006) +zone = ('ksz093', 0.0036910276956248489) + +[fips2003507875] +centroid = (0.64637450288190812, -1.6941093885953173) +description = Bolton township, KS +station = ('kwld', 0.0023487882585335961) +zone = ('okz008', 0.0039350076949501329) + +[fips2003511250] +centroid = (0.64687907756865959, -1.6853359151515146) +description = Cedar township, KS +station = ('kwld', 0.0067942504062641915) +zone = ('ksz098', 0.0046688293180246416) + +[fips2003516375] +centroid = (0.64733274100113047, -1.6932775297672318) +description = Creswell township, KS +station = ('kwld', 0.0013655033430004702) +zone = ('ksz093', 0.0036020987542889115) + +[fips2003517950] +centroid = (0.64905368800347452, -1.6876551435681497) +description = Dexter township, KS +station = ('kwld', 0.0047125357560815683) +zone = ('ksz093', 0.0021554805270331914) + +[fips2003522475] +centroid = (0.65178605330734918, -1.6927331964801198) +description = Fairview township, KS +station = ('kwld', 0.0031728605907183839) +zone = ('ksz093', 0.002785484058806304) + +[fips2003527550] +centroid = (0.6468853083940892, -1.687458706760838) +description = Grant township, KS +station = ('kwld', 0.0051793899331655322) +zone = ('ksz093', 0.0037089631434000818) + +[fips2003530525] +centroid = (0.65354051063133145, -1.6865631434150543) +description = Harvey township, KS +station = ('kwld', 0.0073832668966191863) +zone = ('ksz093', 0.0046000861363348763) + +[fips2003539950] +centroid = (0.64886795006447717, -1.6901068250217188) +description = Liberty township, KS +station = ('kwld', 0.0027509042437822303) +zone = ('ksz093', 0.0010527306372209819) + +[fips2003544450] +centroid = (0.65333272918388152, -1.6946378393862362) +description = Maple township, KS +station = ('kiab', 0.0039824309101136289) +zone = ('ksz093', 0.0049468642291737525) + +[fips2003550625] +centroid = (0.65193248643159152, -1.6945675724305509) +description = Ninnescah township, KS +station = ('kwld', 0.0033508966242941618) +zone = ('ksz093', 0.0040610812007721916) + +[fips2003552850] +centroid = (0.65333409054069813, -1.6889160217796679) +description = Omnia township, KS +station = ('kwld', 0.0059370697221074482) +zone = ('ksz093', 0.003548155725852931) + +[fips2003553625] +centroid = (0.64855126007170294, -1.6850725624206813) +description = Otter township, KS +station = ('kwld', 0.0067579944234985147) +zone = ('ksz098', 0.0042073967263778576) + +[fips2003556500] +centroid = (0.64866351964919111, -1.6926913085780717) +description = Pleasant Valley township, KS +station = ('kwld', 0.00068541236436244347) +zone = ('ksz093', 0.0023940647166344957) + +[fips2003559275] +centroid = (0.65319877516379099, -1.6908483805143062) +description = Richland township, KS +station = ('kwld', 0.0050035822199741391) +zone = ('ksz093', 0.0033272583905100623) + +[fips2003560525] +centroid = (0.65321029433685407, -1.6925952282027494) +description = Rock Creek township, KS +station = ('kwld', 0.0045929787562248945) +zone = ('ksz093', 0.0038282190557468411) + +[fips2003562625] +centroid = (0.65165250071298664, -1.6909991769616786) +description = Salem township, KS +station = ('kwld', 0.0035997015253944561) +zone = ('ksz093', 0.0018640283564552837) + +[fips2003564650] +centroid = (0.65016928500805671, -1.6888204824564139) +description = Sheridan township, KS +station = ('kwld', 0.0040510578425741461) +zone = ('ksz093', 0.0010742216559961218) + +[fips2003565500] +centroid = (0.65167340975742549, -1.6891266306605062) +description = Silver Creek township, KS +station = ('kwld', 0.0046216258794573297) +zone = ('ksz093', 0.0019272098550334339) + +[fips2003565575] +centroid = (0.64694248538038457, -1.6909479864547172) +description = Silverdale township, KS +station = ('kwld', 0.0027074463777674411) +zone = ('ksz093', 0.0030479692207750456) + +[fips2003567400] +centroid = (0.64684054069877561, -1.6890671323863058) +description = Spring Creek township, KS +station = ('kwld', 0.0040214399254421161) +zone = ('ksz093', 0.0031949987131629307) + +[fips2003570725] +centroid = (0.65042043788741877, -1.6907642381910675) +description = Tisdale township, KS +station = ('kwld', 0.0028199795912248397) +zone = ('ksz093', 0.00070869946178279009) + +[fips2003573575] +centroid = (0.65026170019194984, -1.6945028730751794) +description = Vernon township, KS +station = ('kwld', 0.0017532941491574857) +zone = ('ksz093', 0.0034950698003889092) + +[fips2003574925] +centroid = (0.65023389709696555, -1.6922984524167404) +description = Walnut township, KS +station = ('kwld', 0.0018460059492734092) +zone = ('ksz093', 0.001751875027926659) + +[fips2003579875] +centroid = (0.65181268703173467, -1.6858519915580368) +description = Windsor township, KS +station = ('kwld', 0.0068819956496958589) +zone = ('ksz093', 0.0038962889724678041) + +[fips2003579950] +centroid = (0.65000902887613865, -1.6926146188107394) +description = Winfield city, KS +station = ('kwld', 0.0015234347703441753) +zone = ('ksz093', 0.0019774425870278606) + +[fips2003600] +centroid = (0.69588474646542187, -1.6799997629497596) +description = Axtell city, KS +station = ('kfnb', 0.009739259510230025) +zone = ('ksz011', 0.0035968026890101389) + +[fips2003675] +centroid = (0.69537247487666887, -1.6786768208300404) +description = Baileyville CDP, KS +station = ('kfnb', 0.0090386959352671079) +zone = ('ksz011', 0.0024600204315228889) + +[fips20037] +centroid = (0.65459669662817588, -1.6555135789424429) +description = Crawford County, KS +station = ('kpts', 0.0019722073284073813) +zone = ('ksz097', 4.1596812336651579e-05) + +[fips2003703750] +centroid = (0.65211195863857419, -1.6534737602857592) +description = Baker township, KS +station = ('kpts', 0.0015170143357705686) +zone = ('ksz097', 0.0029745547359353057) + +[fips2003716250] +centroid = (0.65468494047515657, -1.6556405341922327) +description = Crawford township, KS +station = ('kpts', 0.0021034678362146517) +zone = ('ksz097', 0.00014310665295342329) + +[fips2003724850] +centroid = (0.65375180019057788, -1.652877381280353) +description = Frontenac city, KS +station = ('kpts', 0.00039607868458628963) +zone = ('ksz097', 0.0022398686447781821) + +[fips2003726300] +centroid = (0.65465301840313761, -1.6553666047661322) +description = Girard city, KS +station = ('kpts', 0.0019013617432882275) +zone = ('ksz097', 9.1084716348683521e-05) + +[fips2003727575] +centroid = (0.65461643630201594, -1.6581397060547485) +description = Grant township, KS +station = ('kpts', 0.0039276895641600935) +zone = ('ksz097', 0.0021129142672580629) + +[fips2003740575] +centroid = (0.65655158756345711, -1.6528230491807383) +description = Lincoln township, KS +station = ('kpts', 0.0029555175181075854) +zone = ('ksz097', 0.0028515818004873103) + +[fips2003749025] +centroid = (0.65547203160792855, -1.651494731446923) +description = Mulberry city, KS +station = ('kpts', 0.0023613046647251146) +zone = ('ksz097', 0.0032687999486562366) + +[fips2003753125] +centroid = (0.65284997111277998, -1.6584873058285756) +description = Osage township, KS +station = ('kpts', 0.0041524393678025037) +zone = ('ksz097', 0.0029777779246266838) + +[fips2003756025] +centroid = (0.65300710310533705, -1.65279189505359) +description = Pittsburg city, KS +station = ('kpts', 0.00076123484380462509) +zone = ('ksz097', 0.0026758961991465045) + +[fips2003764675] +centroid = (0.65273076512486872, -1.6557707532077239) +description = Sheridan township, KS +station = ('kpts', 0.0021203092104924077) +zone = ('ksz097', 0.0019094836545114292) + +[fips2003764875] +centroid = (0.65664836607048016, -1.6556137259349222) +description = Sherman township, KS +station = ('kpts', 0.0035152451319184325) +zone = ('ksz097', 0.0020254227470028136) + +[fips2003774975] +centroid = (0.65662803298469441, -1.658305547240273) +description = Walnut township, KS +station = ('kpts', 0.0049449587062444606) +zone = ('ksz097', 0.0030063931943289587) + +[fips2003775575] +centroid = (0.65462671629131008, -1.6527205110871837) +description = Washington township, KS +station = ('kpts', 0.0011187900240276205) +zone = ('ksz097', 0.002186029528963792) + +[fips20039] +centroid = (0.69435379600544989, -1.7533526701920878) +description = Decatur County, KS +station = ('kmck', 0.0074541675354384751) +zone = ('ksz003', 2.0374307078047474e-05) + +[fips2003900] +centroid = (0.67679515541185631, -1.6613349326762519) +description = Baldwin City city, KS +station = ('klwc', 0.0041929262326965066) +zone = ('ksz040', 0.0023499106738209229) + +[fips2003901300] +centroid = (0.69140579527249135, -1.7493494782999581) +description = Allison township, KS +station = ('khlc', 0.0068792911987075375) +zone = ('ksz003', 0.0042793653327651213) + +[fips2003901650] +centroid = (0.69437355313258253, -1.751399210426793) +description = Altory township, KS +station = ('kmck', 0.0079035063928883618) +zone = ('ksz003', 0.0015037201766673234) + +[fips2003904475] +centroid = (0.69286637405702278, -1.7572766241361764) +description = Bassettville township, KS +station = ('kcbk', 0.0067904999911429119) +zone = ('ksz003', 0.0033706576082243142) + +[fips2003905050] +centroid = (0.69726392309364027, -1.7551735896539857) +description = Beaver township, KS +station = ('kmck', 0.0043660468847647928) +zone = ('ksz003', 0.0032090088540836078) + +[fips2003911650] +centroid = (0.69435379600544989, -1.7533526701920878) +description = Center township, KS +station = ('kmck', 0.0074541675354384751) +zone = ('ksz003', 2.0374307078047474e-05) + +[fips2003915375] +centroid = (0.69122693393074697, -1.757120521887878) +description = Cook township, KS +station = ('kcbk', 0.005888627204775735) +zone = ('ksz003', 0.0042772108304144473) + +[fips2003916850] +centroid = (0.69298448048750527, -1.753522735074402) +description = Custer township, KS +station = ('kmck', 0.0087712266663473905) +zone = ('ksz003', 0.0013954265889588836) + +[fips2003918625] +centroid = (0.69119239386484999, -1.7535401185537518) +description = Dresden township, KS +station = ('kcbk', 0.0083632883209805459) +zone = ('ksz003', 0.0031847650547914496) + +[fips2003923425] +centroid = (0.69740817455631754, -1.757251631021288) +description = Finley township, KS +station = ('kmck', 0.0044197873002958417) +zone = ('ksz003', 0.0042597102263183789) + +[fips2003925525] +centroid = (0.69436732230715292, -1.7494459077411311) +description = Garfield township, KS +station = ('kmck', 0.008615220245224188) +zone = ('ksz003', 0.0030047590350518417) + +[fips2003927600] +centroid = (0.69744428541854131, -1.7493437012601343) +description = Grant township, KS +station = ('kmck', 0.00630230724179976) +zone = ('ksz003', 0.0043484383705420741) + +[fips2003930050] +centroid = (0.6972253687704637, -1.7514332443472069) +description = Harlan township, KS +station = ('kmck', 0.0053913742329225961) +zone = ('ksz003', 0.0032106505509592485) + +[fips2003935400] +centroid = (0.69293138757165962, -1.7513846718341239) +description = Jennings township, KS +station = ('khlc', 0.0090587433986158653) +zone = ('ksz003', 0.002092559152910498) + +[fips2003939975] +centroid = (0.69594386076718684, -1.7552598612789121) +description = Liberty township, KS +station = ('kmck', 0.0056817358211933358) +zone = ('ksz003', 0.0021452393686836827) + +[fips2003940600] +centroid = (0.6958382858007337, -1.7493615036185046) +description = Lincoln township, KS +station = ('kmck', 0.0074578645960007217) +zone = ('ksz003', 0.003399277123021599) + +[fips2003941825] +centroid = (0.69589551514690662, -1.7572639704990993) +description = Logan township, KS +station = ('kmck', 0.0058821291385268062) +zone = ('ksz003', 0.0033648245684620103) + +[fips2003943450] +centroid = (0.69134230019430376, -1.7514115673578969) +description = Lyon township, KS +station = ('khlc', 0.0081445244708611593) +zone = ('ksz003', 0.0033807663368507681) + +[fips2003952000] +centroid = (0.69504316615340267, -1.7545923601064868) +description = Oberlin city, KS +station = ('kmck', 0.0066166546211737188) +zone = ('ksz003', 0.0011618537379846998) + +[fips2003952025] +centroid = (0.69419696071886572, -1.7554715348105938) +description = Oberlin township, KS +station = ('kmck', 0.0074254581046206388) +zone = ('ksz003', 0.0016354070767806443) + +[fips2003952675] +centroid = (0.69588375162774807, -1.7531270514796824) +description = Olive township, KS +station = ('kmck', 0.0060217364039742731) +zone = ('ksz003', 0.0015199505042095571) + +[fips2003956525] +centroid = (0.69271103975359538, -1.749389010007516) +description = Pleasant Valley township, KS +station = ('khlc', 0.0077860195101859949) +zone = ('ksz003', 0.0034744018630582961) + +[fips2003957475] +centroid = (0.69126958977766573, -1.7552104684610805) +description = Prairie Dog township, KS +station = ('kcbk', 0.0072085224492399952) +zone = ('ksz003', 0.003416641576554599) + +[fips2003961025] +centroid = (0.69619005691147307, -1.7514957096811359) +description = Roosevelt township, KS +station = ('kmck', 0.0062414363497983478) +zone = ('ksz003', 0.0023105409825375056) + +[fips2003963050] +centroid = (0.69454751009912874, -1.7572943915879617) +description = Sappa township, KS +station = ('kmck', 0.0072056493162906852) +zone = ('ksz003', 0.0030312083355069899) + +[fips2003964900] +centroid = (0.69753444912769935, -1.753180510914671) +description = Sherman township, KS +station = ('kmck', 0.0044596636270384862) +zone = ('ksz003', 0.0031633111441855921) + +[fips2003969075] +centroid = (0.69273540454995319, -1.7553971139712887) +description = Summit township, KS +station = ('kcbk', 0.0078265460307784408) +zone = ('ksz003', 0.0022690356405709795) + +[fips20041] +centroid = (0.67836994854263832, -1.6957259998149772) +description = Dickinson County, KS +station = ('kfri', 0.0062692789475560584) +zone = ('ksz035', 7.4961333706937411e-05) + +[fips2004100125] +centroid = (0.67935024762360585, -1.6968813379666272) +description = Abilene city, KS +station = ('kfri', 0.0066494754649575735) +zone = ('ksz035', 0.001396036260246524) + +[fips2004103975] +centroid = (0.67453593141490475, -1.6963835177040809) +description = Banner township, KS +station = ('ksln', 0.0066229337335531697) +zone = ('ksz035', 0.0038552209699707438) + +[fips2004108925] +centroid = (0.68073150119363424, -1.6965304220672213) +description = Buckeye township, KS +station = ('kmhk', 0.0074132108317923901) +zone = ('ksz035', 0.0024845937313232773) + +[fips2004111675] +centroid = (0.67919754876734884, -1.6944191845375463) +description = Center township, KS +station = ('kfri', 0.0049721758690295511) +zone = ('ksz035', 0.001272324826016569) + +[fips2004112700] +centroid = (0.68221452491234624, -1.6964936654331741) +description = Cheever township, KS +station = ('kmhk', 0.0070674552341361387) +zone = ('ksz035', 0.0039251218585856021) + +[fips2004123550] +centroid = (0.68215356056157406, -1.6984506507635579) +description = Flora township, KS +station = ('ksln', 0.0069595192551153533) +zone = ('ksz035', 0.0043915494190584969) + +[fips2004124250] +centroid = (0.68234619255111673, -1.6931572940350619) +description = Fragrant Hill township, KS +station = ('kfri', 0.0034134117182058844) +zone = ('ksz036', 0.0038585677796025598) + +[fips2004125550] +centroid = (0.67766689501334987, -1.6983438715199208) +description = Garfield township, KS +station = ('ksln', 0.0047156986667162351) +zone = ('ksz035', 0.0022169158546283285) + +[fips2004127625] +centroid = (0.67917924026349552, -1.6964431730579139) +description = Grant township, KS +station = ('kfri', 0.0063954106704281009) +zone = ('ksz035', 0.0010437431340365451) + +[fips2004130900] +centroid = (0.6805974424537885, -1.6947552302317253) +description = Hayes township, KS +station = ('kfri', 0.0047038274028306194) +zone = ('ksz035', 0.0023524252492988693) + +[fips2004131400] +centroid = (0.67498118236038096, -1.6920153251054819) +description = Herington city, KS +station = ('kfri', 0.0071069360648910972) +zone = ('ksz037', 0.004032596721548873) + +[fips2004132625] +centroid = (0.67453849704890523, -1.6985946404268475) +description = Holland township, KS +station = ('ksln', 0.0050474286046819396) +zone = ('ksz035', 0.0044531357490229968) + +[fips2004133100] +centroid = (0.67449201893092459, -1.6944878806969046) +description = Hope township, KS +station = ('kfri', 0.0083942789593353696) +zone = ('ksz035', 0.0039569772637804658) + +[fips2004135175] +centroid = (0.67627722895632691, -1.6966674827733805) +description = Jefferson township, KS +station = ('ksln', 0.0059942159350369938) +zone = ('ksz035', 0.0022204662146019338) + +[fips2004140000] +centroid = (0.67772464795829834, -1.6925038602164078) +description = Liberty township, KS +station = ('kfri', 0.0048429856600171635) +zone = ('ksz035', 0.0025162447576838683) + +[fips2004140625] +centroid = (0.67911141676876297, -1.698647192290625) +description = Lincoln township, KS +station = ('ksln', 0.0049379067317851834) +zone = ('ksz035', 0.0024665541538510792) + +[fips2004141850] +centroid = (0.67778555994919298, -1.6945623015362099) +description = Logan township, KS +station = ('kfri', 0.0058850473650691815) +zone = ('ksz035', 0.0010060115751584753) + +[fips2004143475] +centroid = (0.67455329744096204, -1.6927606156026687) +description = Lyon township, KS +station = ('kfri', 0.0077197343325765356) +zone = ('ksz035', 0.0044058816997335128) + +[fips2004150225] +centroid = (0.67764244295052933, -1.6965575095772123) +description = Newbern township, KS +station = ('kfri', 0.0072077859314565677) +zone = ('ksz035', 0.001006323704448522) + +[fips2004150800] +centroid = (0.68062676398522204, -1.6930618419782704) +description = Noble township, KS +station = ('kfri', 0.0034252244829095892) +zone = ('ksz035', 0.0030337985218281348) + +[fips2004159800] +centroid = (0.67623986145704185, -1.6946546294536404) +description = Ridge township, KS +station = ('kfri', 0.0070449699423091126) +zone = ('ksz035', 0.0022408936044466133) + +[fips2004159900] +centroid = (0.67905767808109407, -1.6924978737370733) +description = Rinehart township, KS +station = ('kfri', 0.0038388062050349553) +zone = ('ksz035', 0.0025429343285131851) + +[fips2004164925] +centroid = (0.68217350967492441, -1.6947628224139715) +description = Sherman township, KS +station = ('kmhk', 0.0057407510970194789) +zone = ('ksz035', 0.0038863951239337677) + +[fips2004172100] +centroid = (0.67614653870193764, -1.6926498046484595) +description = Union township, KS +station = ('kfri', 0.0062447224076443248) +zone = ('ksz035', 0.0032016577538584714) + +[fips2004177625] +centroid = (0.6760246798135634, -1.6983355113928038) +description = Wheatland township, KS +station = ('ksln', 0.0047428772184970637) +zone = ('ksz035', 0.0031341026912047286) + +[fips2004179450] +centroid = (0.68077586746321983, -1.6983436620804107) +description = Willowdale township, KS +station = ('ksln', 0.0060530036458233067) +zone = ('ksz035', 0.0032158842133440213) + +[fips2004225] +centroid = (0.68398046650280664, -1.7111963365052669) +description = Barnard city, KS +station = ('kcnk', 0.0082576387173170906) +zone = ('ksz033', 0.0033464256255286559) + +[fips2004250] +centroid = (0.69310054488276296, -1.6907546388801813) +description = Barnes city, KS +station = ('kbie', 0.010398208043906567) +zone = ('ksz009', 0.0031415016829079252) + +[fips20043] +centroid = (0.69444036433634893, -1.6606323503858618) +description = Doniphan County, KS +station = ('kstj', 0.0031159739266127763) +zone = ('ksz102', 3.0177334842258607e-06) + +[fips2004309500] +centroid = (0.69554805499941952, -1.6575701527599451) +description = Burr Oak township, KS +station = ('kstj', 0.0016620393606609507) +zone = ('ksz102', 0.002597019951814267) + +[fips2004311700] +centroid = (0.69475661799681021, -1.6597090712115568) +description = Center township, KS +station = ('kstj', 0.0024826481470629743) +zone = ('ksz102', 0.00077392905956179682) + +[fips2004333850] +centroid = (0.69294643230981179, -1.6610903771414627) +description = Independence township, KS +station = ('kstj', 0.0036219261258228649) +zone = ('ksz102', 0.0015355421015096611) + +[fips2004334400] +centroid = (0.69642899248607115, -1.6626874930333777) +description = Iowa township, KS +station = ('kfnb', 0.0052998636371585257) +zone = ('ksz102', 0.0025404785765619901) + +[fips2004344675] +centroid = (0.69301242320882972, -1.6579582267191262) +description = Marion township, KS +station = ('kstj', 0.0014742502527638843) +zone = ('moz020', 0.0026520285218269964) + +[fips2004350] +centroid = (0.64673023589004952, -1.6617558013720781) +description = Bartlett city, KS +station = ('kcfv', 0.0049696045076697516) +zone = ('ksz100', 0.0026643630405944049) + +[fips2004372125] +centroid = (0.69296056947675289, -1.6628443108666693) +description = Union township, KS +station = ('kstj', 0.0049197469184127573) +zone = ('ksz102', 0.0022566560534415963) + +[fips2004375600] +centroid = (0.69422054011706014, -1.65704484356168) +description = Washington township, KS +station = ('kstj', 0.0003722422590377761) +zone = ('moz020', 0.0027229469877923067) + +[fips2004376100] +centroid = (0.69274802328044505, -1.6592607833931821) +description = Wayne township, KS +station = ('kstj', 0.0024250018599026491) +zone = ('ksz102', 0.0019924531131300331) + +[fips2004380275] +centroid = (0.69451633851868821, -1.6625098010622321) +description = Wolf River township, KS +station = ('kstj', 0.0045582940337948845) +zone = ('ksz102', 0.0014476241508532843) + +[fips2004400] +centroid = (0.68306669937292508, -1.656822157002418) +description = Basehor city, KS +station = ('kmci', 0.0038863199272806594) +zone = ('ksz103', 0.0018338946686970031) + +[fips2004450] +centroid = (0.66161817366224163, -1.6651901206478124) +description = Bassett city, KS +station = ('kcnu', 0.0043359257559051198) +zone = ('ksz072', 0.0015229966506000892) + +[fips20045] +centroid = (0.67887326659232827, -1.6631334770171398) +description = Douglas County, KS +station = ('klwc', 0.0023234189169623761) +zone = ('ksz040', 0.00021224100821839458) + +[fips2004514325] +centroid = (0.67888773537182734, -1.6651520724701188) +description = Clinton township, KS +station = ('klwc', 0.0033089068573036989) +zone = ('ksz040', 0.0015620573802179591) + +[fips2004521700] +centroid = (0.67914056376727128, -1.6599790038336701) +description = Eudora township, KS +station = ('klwc', 0.0023340578358511869) +zone = ('ksz040', 0.0025260630117610958) + +[fips2004527650] +centroid = (0.68095797511737299, -1.6619582246587241) +description = Grant township, KS +station = ('klwc', 8.9208886425505525e-05) +zone = ('ksz040', 0.0024802008597298777) + +[fips2004536075] +centroid = (0.6800331076934486, -1.665323306723032) +description = Kanwaka township, KS +station = ('kfoe', 0.0032182839802619) +zone = ('ksz040', 0.0021667770138812672) + +[fips2004538900] +centroid = (0.67998591399047481, -1.6626568974115901) +description = Lawrence city, KS +station = ('klwc', 0.0011687326905906266) +zone = ('ksz040', 0.0013813925882518955) + +[fips2004539175] +centroid = (0.68112762112066672, -1.6655687000158623) +description = Lecompton township, KS +station = ('kfoe', 0.0033920421846032954) +zone = ('ksz040', 0.0030930908420882608) + +[fips2004544700] +centroid = (0.67707280238926348, -1.6654447641856782) +description = Marion township, KS +station = ('kfoe', 0.0039349662255762745) +zone = ('ksz040', 0.0023827313282450695) + +[fips2004554225] +centroid = (0.67714760720100398, -1.6606287899141876) +description = Palmyra township, KS +station = ('kixd', 0.003601565615660344) +zone = ('ksz040', 0.0024901493127080948) + +[fips2004574400] +centroid = (0.67935291797736153, -1.662380995763435) +description = Wakarusa township, KS +station = ('klwc', 0.0016693611152850979) +zone = ('ksz040', 0.00092190713702407104) + +[fips2004579500] +centroid = (0.67725122739869492, -1.6631139642361024) +description = Willow Springs township, KS +station = ('klwc', 0.0038470841011900431) +zone = ('ksz040', 0.0014119103471927719) + +[fips2004625] +centroid = (0.64612005133025985, -1.6534369861984197) +description = Baxter Springs city, KS +station = ('kjln', 0.0039817050645813649) +zone = ('ksz101', 0.0030319338111513086) + +[fips20047] +centroid = (0.66119346524206124, -1.7331947805566688) +description = Edwards County, KS +station = ('kddc', 0.0093507066027031793) +zone = ('ksz079', 0.00012194495257825045) + +[fips2004705850] +centroid = (0.6625895541107315, -1.7296254949698779) +description = Belpre township, KS +station = ('kptt', 0.0066688540706310159) +zone = ('ksz079', 0.0032028211460315395) + +[fips2004724350] +centroid = (0.66013471361121645, -1.7310543262153155) +description = Franklin township, KS +station = ('kptt', 0.0063365133241313175) +zone = ('ksz079', 0.0021161076258943107) + +[fips2004734750] +centroid = (0.66335791786062948, -1.7366995064144286) +description = Jackson township, KS +station = ('kddc', 0.007617547092654291) +zone = ('ksz079', 0.003388728046135517) + +[fips2004737075] +centroid = (0.66187075771159021, -1.7350558600446555) +description = Kinsley city, KS +station = ('kddc', 0.0081215790220880817) +zone = ('ksz079', 0.0014972842423125706) + +[fips2004737100] +centroid = (0.66224359494640117, -1.7351080977491677) +description = Kinsley township, KS +station = ('kddc', 0.0082145807608344258) +zone = ('ksz079', 0.0017168930152109193) + +[fips2004740650] +centroid = (0.66013670328656371, -1.7291456865052122) +description = Lincoln township, KS +station = ('kptt', 0.0049440795392989359) +zone = ('ksz079', 0.0034841671923807218) + +[fips2004741875] +centroid = (0.6639983838829413, -1.7349459392083648) +description = Logan township, KS +station = ('kddc', 0.0091263257621864921) +zone = ('ksz079', 0.0030200438730639016) + +[fips2004751100] +centroid = (0.66087352893687823, -1.7338345484472799) +description = North Brown township, KS +station = ('kddc', 0.0087910931970710277) +zone = ('ksz079', 0.00056217803987293491) + +[fips2004766550] +centroid = (0.65934163599911022, -1.7343893886164889) +description = South Brown township, KS +station = ('kddc', 0.0081897533208082872) +zone = ('ksz079', 0.002098704835527457) + +[fips2004771400] +centroid = (0.66054079936827803, -1.7369458945449325) +description = Trenton township, KS +station = ('kddc', 0.0063182838506569755) +zone = ('ksz079', 0.0029511507928972453) + +[fips2004775] +centroid = (0.67101038377916877, -1.7399666929609918) +description = Bazine city, KS +station = ('khys', 0.009134232310015233) +zone = ('ksz045', 0.0031089896623641778) + +[fips2004776125] +centroid = (0.66243652364191663, -1.7325026876950831) +description = Wayne township, KS +station = ('kptt', 0.0083786461831472786) +zone = ('ksz079', 0.0013391802868856911) + +[fips20049] +centroid = (0.65373097841260164, -1.6797858903032203) +description = Elk County, KS +station = ('kidp', 0.0084822765572062243) +zone = ('ksz094', 4.1285051361480826e-05) + +[fips2004900] +centroid = (0.69572937725540929, -1.6828077708234159) +description = Beattie city, KS +station = ('kbie', 0.0088332108949583238) +zone = ('ksz010', 0.0019684671591090716) + +[fips2004920325] +centroid = (0.65194739154340353, -1.6793363633010767) +description = Elk Falls township, KS +station = ('kidp', 0.0071795344599586567) +zone = ('ksz094', 0.001777701000896967) + +[fips2004928550] +centroid = (0.65217669290053049, -1.6835311225319047) +description = Greenfield township, KS +station = ('kwld', 0.0087068440301710289) +zone = ('ksz094', 0.0033445151132852884) + +[fips2004933275] +centroid = (0.65396513178504911, -1.6794947868372803) +description = Howard township, KS +station = ('kidp', 0.0084557607657646978) +zone = ('ksz094', 0.00035421121462754778) + +[fips2004940025] +centroid = (0.65558017220838205, -1.6766515233127337) +description = Liberty township, KS +station = ('kidp', 0.008273868258953097) +zone = ('ksz094', 0.003117085527606128) + +[fips2004942675] +centroid = (0.65215588857584683, -1.677342481710306) +description = Longton township, KS +station = ('kidp', 0.005982766965263943) +zone = ('ksz094', 0.0024682722108766266) + +[fips2004951950] +centroid = (0.6522164689541835, -1.675559872225489) +description = Oak Valley township, KS +station = ('kidp', 0.0050074784796295957) +zone = ('ksz094', 0.0036591573337546542) + +[fips2004954075] +centroid = (0.6543039176461537, -1.6765058406800697) +description = Painterhood township, KS +station = ('kidp', 0.0071283332316741787) +zone = ('ksz094', 0.002667253996439706) + +[fips2004954925] +centroid = (0.65567145292826146, -1.6794784854620666) +description = Paw Paw township, KS +station = ('kidp', 0.0096550886737380472) +zone = ('ksz094', 0.0019951189498928967) + +[fips2004972500] +centroid = (0.65494796159343216, -1.6829579738588425) +description = Union Center township, KS +station = ('kwld', 0.010497513400311289) +zone = ('ksz094', 0.0028203324206568844) + +[fips2004979150] +centroid = (0.65222978581637614, -1.6814873768844045) +description = Wildcat township, KS +station = ('kidp', 0.008826501912413862) +zone = ('ksz094', 0.001995039419513163) + +[fips20051] +centroid = (0.67918782728341531, -1.7334143953364474) +description = Ellis County, KS +station = ('khys', 0.0013209219153316153) +zone = ('ksz031', 3.5821722067304981e-06) + +[fips2005106650] +centroid = (0.67836092519040547, -1.7342475108015944) +description = Big Creek township, KS +station = ('khys', 0.0013706358002032377) +zone = ('ksz031', 0.0010538806901262761) + +[fips2005108950] +centroid = (0.68113734260460035, -1.7337875641838163) +description = Buckeye township, KS +station = ('khys', 0.0032286268267990637) +zone = ('ksz031', 0.0019675219350699788) + +[fips2005111050] +centroid = (0.68109138808539549, -1.7312864375525383) +description = Catherine township, KS +station = ('khys', 0.0031816206145669607) +zone = ('ksz031', 0.0025191090178578999) + +[fips2005120450] +centroid = (0.67954099465755635, -1.7375949824937493) +description = Ellis city, KS +station = ('khys', 0.004210945191379341) +zone = ('ksz031', 0.0032715026500451105) + +[fips2005120475] +centroid = (0.68058604545377299, -1.7367888498188382) +description = Ellis township, KS +station = ('khys', 0.0041660983032074262) +zone = ('ksz031', 0.002972059064415695) + +[fips2005124625] +centroid = (0.67602265523163096, -1.7300648467024826) +description = Freedom township, KS +station = ('khys', 0.00280085683077055) +zone = ('ksz031', 0.004104697422642147) + +[fips2005131100] +centroid = (0.67858907463022611, -1.7334780125876827) +description = Hays city, KS +station = ('khys', 0.00090782445551487268) +zone = ('ksz031', 0.00060437706851807751) + +[fips2005131525] +centroid = (0.68047671802942811, -1.7298344457879267) +description = Herzog township, KS +station = ('khys', 0.0031996001458589052) +zone = ('ksz031', 0.0030660692079821079) + +[fips2005142700] +centroid = (0.6764942257422274, -1.7357812537883692) +description = Lookout township, KS +station = ('khys', 0.0029785253581851049) +zone = ('ksz031', 0.0032672665442805586) + +[fips2005173800] +centroid = (0.67740919714929293, -1.7300313363808439) +description = Victoria township, KS +station = ('khys', 0.002052621541316055) +zone = ('ksz031', 0.0031801031981138483) + +[fips2005177650] +centroid = (0.67652820730276375, -1.7324828083949029) +description = Wheatland township, KS +station = ('khys', 0.0015326515586685111) +zone = ('ksz031', 0.0027601619651011714) + +[fips20053] +centroid = (0.67545716855398485, -1.7140067878398759) +description = Ellsworth County, KS +station = ('krsl', 0.0088061065856388718) +zone = ('ksz048', 7.4473919618912464e-05) + +[fips2005302575] +centroid = (0.67473048326662444, -1.7137586718334126) +description = Ash Creek township, KS +station = ('krsl', 0.0092508695870227153) +zone = ('ksz048', 0.00067862203943994321) + +[fips2005307025] +centroid = (0.67609178772330258, -1.7160399742454018) +description = Black Wolf township, KS +station = ('krsl', 0.0070994939873342674) +zone = ('ksz048', 0.0017443973745174238) + +[fips2005310800] +centroid = (0.67616310187653905, -1.710125123223563) +description = Carneiro township, KS +station = ('ksln', 0.0045902350212085677) +zone = ('ksz048', 0.0031200838063372835) + +[fips2005313725] +centroid = (0.67625902517222869, -1.712375236601819) +description = Clear Creek township, KS +station = ('ksln', 0.0063177686363168947) +zone = ('ksz048', 0.0015389730360048097) + +[fips2005315025] +centroid = (0.67767752406849457, -1.7161308709928456) +description = Columbia township, KS +station = ('krsl', 0.0066892736304671177) +zone = ('ksz048', 0.0028342061534465729) + +[fips2005320500] +centroid = (0.67601495832962977, -1.7144105348557397) +description = Ellsworth city, KS +station = ('krsl', 0.0083345845912408834) +zone = ('ksz048', 0.00070946123686304718) + +[fips2005320525] +centroid = (0.67628394847394713, -1.7140062467878079) +description = Ellsworth township, KS +station = ('krsl', 0.0085677637273140171) +zone = ('ksz048', 0.00090089740303507992) + +[fips2005321150] +centroid = (0.67454036455120481, -1.7111355466874201) +description = Empire township, KS +station = ('ksln', 0.0058208733112281724) +zone = ('ksz048', 0.0023877576631161279) + +[fips2005325575] +centroid = (0.67748923794878935, -1.712138622315126) +description = Garfield township, KS +station = ('ksln', 0.0061266865748276405) +zone = ('ksz048', 0.0025566091796051333) + +[fips2005328600] +centroid = (0.67296171424277584, -1.7160325740493731) +description = Green Garden township, KS +station = ('krsl', 0.0086334598127254178) +zone = ('ksz048', 0.0028968281622041123) + +[fips2005337] +centroid = (0.65930095237424624, -1.6972701624173865) +description = Bel Aire city, KS +station = ('kaao', 0.00060113423406449643) +zone = ('ksz083', 0.0033569856154662867) + +[fips2005338600] +centroid = (0.67315150134563773, -1.7103661531932635) +description = Langley township, KS +station = ('ksln', 0.0060292518027329559) +zone = ('ksz048', 0.0036090041958602805) + +[fips2005340675] +centroid = (0.67470151080104146, -1.7157708793813293) +description = Lincoln township, KS +station = ('krsl', 0.0078446752378459605) +zone = ('ksz048', 0.0015433985071890515) + +[fips2005349050] +centroid = (0.67769785715428033, -1.7101607803001813) +description = Mulberry township, KS +station = ('ksln', 0.0046260750779718177) +zone = ('ksz048', 0.0037823710482328154) + +[fips2005350825] +centroid = (0.67630550329020922, -1.7178493047210668) +description = Noble township, KS +station = ('krsl', 0.0056996500599466142) +zone = ('ksz048', 0.0031437780167421904) + +[fips2005354100] +centroid = (0.67487454274308412, -1.7176660451496071) +description = Palacky township, KS +station = ('krsl', 0.0064778578889147335) +zone = ('ksz048', 0.002908870729468817) + +[fips2005364950] +centroid = (0.67767979299652215, -1.714035795212044) +description = Sherman township, KS +station = ('krsl', 0.008314087622030215) +zone = ('ksz048', 0.0022969118400657739) + +[fips2005370450] +centroid = (0.67309896693515281, -1.7137699641136728) +description = Thomas township, KS +station = ('ksln', 0.0083019615709399672) +zone = ('ksz048', 0.0022909938104187172) + +[fips2005371525] +centroid = (0.67310449962888153, -1.7118220719486921) +description = Trivoli township, KS +station = ('ksln', 0.006981407872316053) +zone = ('ksz048', 0.0028423266586149686) + +[fips2005372800] +centroid = (0.67296736910955246, -1.7179957378453088) +description = Valley township, KS +station = ('krsl', 0.0074939289130242287) +zone = ('ksz048', 0.0039489123069838669) + +[fips2005379700] +centroid = (0.67778852700892145, -1.7177710441574072) +description = Wilson township, KS +station = ('krsl', 0.0054069856746654038) +zone = ('ksz048', 0.0038006652673876319) + +[fips20055] +centroid = (0.66409524965642697, -1.7582434492753187) +description = Finney County, KS +station = ('kgck', 0.0023464982729650163) +zone = ('ksz063', 0.00010391221847769501) + +[fips2005500] +centroid = (0.65264573268371162, -1.697848547078205) +description = Belle Plaine city, KS +station = ('kiab', 0.0038930468343278289) +zone = ('ksz092', 0.003865025969251069) + +[fips2005525325] +centroid = (0.66283863004828369, -1.7603463266778767) +description = Garden City city, KS +station = ('kgck', 0.0022482833682410247) +zone = ('ksz063', 0.0020576074954369071) + +[fips2005525350] +centroid = (0.66392680793031711, -1.7596413358331184) +description = Garden City township, KS +station = ('kgck', 0.0025827731231180878) +zone = ('ksz063', 0.0011448934833849886) + +[fips2005525600] +centroid = (0.6655396492387925, -1.7531492346144752) +description = Garfield township, KS +station = ('kgck', 0.0052767640152629964) +zone = ('ksz063', 0.0042560668808040714) + +[fips2005534675] +centroid = (0.65966670357229418, -1.7612529030512398) +description = Ivanhoe township, KS +station = ('kgck', 0.0034203458293351266) +zone = ('ksz076', 0.0041203057341195649) + +[fips2005555800] +centroid = (0.66159056255347493, -1.7577788426284378) +description = Pierceville township, KS +station = ('kgck', 0.00018595176932363679) +zone = ('ksz063', 0.0024312410848816562) + +[fips2005556550] +centroid = (0.66632312754001277, -1.758837873511963) +description = Pleasant Valley township, KS +station = ('kgck', 0.0046201210727472766) +zone = ('ksz063', 0.0023782581523019617) + +[fips2005564800] +centroid = (0.66227059518992948, -1.7636205818079105) +description = Sherlock township, KS +station = ('kgck', 0.0045887697147424895) +zone = ('ksz062', 0.0038614387085715218) + +[fips2005570225] +centroid = (0.66640936425835373, -1.7625088594342675) +description = Terry township, KS +station = ('kgck', 0.0059202808378399589) +zone = ('ksz063', 0.0041651351494085736) + +[fips2005600] +centroid = (0.69504079250562001, -1.7040311665138845) +description = Belleville city, KS +station = ('kcnk', 0.0047441770741781302) +zone = ('ksz008', 0.00024093242415261883) + +[fips20057] +centroid = (0.6577860589433927, -1.7433174807787257) +description = Ford County, KS +station = ('kddc', 0.0017739428726369234) +zone = ('ksz078', 7.2801376421528018e-05) + +[fips2005707375] +centroid = (0.6547577730648424, -1.7438361402725409) +description = Bloom township, KS +station = ('kddc', 0.0044537607218274209) +zone = ('ksz078', 0.0031082507558044146) + +[fips2005709025] +centroid = (0.65614148754911605, -1.7384164566127855) +description = Bucklin township, KS +station = ('kddc', 0.0058457731841472689) +zone = ('ksz080', 0.0044422117864182532) + +[fips2005715150] +centroid = (0.6562872225416575, -1.7470915283933608) +description = Concord township, KS +station = ('kddc', 0.0034135136031256457) +zone = ('ksz078', 0.0033308279628868754) + +[fips2005718225] +centroid = (0.65959664605611912, -1.7462013581149662) +description = Dodge township, KS +station = ('kddc', 0.0012318952510964743) +zone = ('ksz078', 0.0028415013416423795) + +[fips2005718250] +centroid = (0.6590480192590471, -1.7456410201586134) +description = Dodge City city, KS +station = ('kddc', 0.00071409734607740969) +zone = ('ksz078', 0.0021604997426250792) + +[fips2005721450] +centroid = (0.65682609294821082, -1.7444889283193719) +description = Enterprise township, KS +station = ('kddc', 0.0023355640592924855) +zone = ('ksz078', 0.0013481203659733544) + +[fips2005722500] +centroid = (0.6587848236078464, -1.7481592684698533) +description = Fairview township, KS +station = ('kddc', 0.0027224123576832801) +zone = ('ksz077', 0.0038066361702984801) + +[fips2005723750] +centroid = (0.656504289140728, -1.7416872734441931) +description = Ford township, KS +station = ('kddc', 0.0035886119655211832) +zone = ('ksz078', 0.0018910867611283148) + +[fips2005727350] +centroid = (0.66002774238136164, -1.7441584851320917) +description = Grandview township, KS +station = ('kddc', 0.00099114705124119049) +zone = ('ksz078', 0.0022701359508382917) + +[fips2005759300] +centroid = (0.65798874402942686, -1.7463432184765684) +description = Richland township, KS +station = ('kddc', 0.001716812962983223) +zone = ('ksz078', 0.0023548819680264789) + +[fips2005761575] +centroid = (0.66107855276410998, -1.7473915853983635) +description = Royal township, KS +station = ('kddc', 0.0028410191587576661) +zone = ('ksz078', 0.0045330711457049104) + +[fips2005766150] +centroid = (0.65477615138186585, -1.7410302617005722) +description = Sodville township, KS +station = ('kddc', 0.0052742783717441566) +zone = ('ksz078', 0.0035857220450499234) + +[fips2005767150] +centroid = (0.65971258827832902, -1.7413486097561359) +description = Spearville township, KS +station = ('kddc', 0.0027439903949780121) +zone = ('ksz078', 0.0024601667198327084) + +[fips2005775] +centroid = (0.68878891840522116, -1.7123135566660537) +description = Beloit city, KS +station = ('kcnk', 0.0063474096193638849) +zone = ('ksz019', 0.001847338182983221) + +[fips2005777675] +centroid = (0.66013738396497201, -1.7386878902180558) +description = Wheatland township, KS +station = ('kddc', 0.0048885422665100589) +zone = ('ksz079', 0.0043842442063803926) + +[fips2005779100] +centroid = (0.65481563072954596, -1.7471900173230506) +description = Wilburn township, KS +station = ('kddc', 0.0047487594616533249) +zone = ('ksz078', 0.0042799921684083687) + +[fips2005825] +centroid = (0.66236082871225765, -1.7296197877432238) +description = Belpre city, KS +station = ('kptt', 0.006510153570118098) +zone = ('ksz079', 0.0031195356631692687) + +[fips20059] +centroid = (0.67296438459653152, -1.6629315947825616) +description = Franklin County, KS +station = ('kixd', 0.0070305551803494038) +zone = ('ksz056', 0.00014885662048853577) + +[fips2005902075] +centroid = (0.67542894657998009, -1.6659977019460026) +description = Appanoose township, KS +station = ('kfoe', 0.0048736840777099909) +zone = ('ksz056', 0.0032884186830895771) + +[fips2005912475] +centroid = (0.67522542373590511, -1.6645396015290088) +description = Centropolis township, KS +station = ('kfoe', 0.0057259897935805562) +zone = ('ksz056', 0.0024403838510533714) + +[fips2005916900] +centroid = (0.67235456655588466, -1.6602057744633818) +description = Cutler township, KS +station = ('kixd', 0.0060747739243302255) +zone = ('ksz056', 0.0023416165685875212) + +[fips2005924375] +centroid = (0.67541580425071268, -1.6601907646318148) +description = Franklin township, KS +station = ('kixd', 0.0038470592759425599) +zone = ('ksz056', 0.0032338380459822329) + +[fips2005925] +centroid = (0.68445263042534876, -1.6786373065757754) +description = Belvue city, KS +station = ('kfoe', 0.0087019390436367614) +zone = ('ksz023', 0.0035993728083599965) + +[fips2005928750] +centroid = (0.6730005827252179, -1.665807722856923) +description = Greenwood township, KS +station = ('kfoe', 0.0070934923648006401) +zone = ('ksz056', 0.002155682439791971) + +[fips2005930300] +centroid = (0.67321092980666819, -1.6619199495882282) +description = Harrison township, KS +station = ('kixd', 0.0062746106901994392) +zone = ('ksz056', 0.00089538290654316466) + +[fips2005930925] +centroid = (0.67552410193079893, -1.6621068045379466) +description = Hayes township, KS +station = ('kixd', 0.0051282410466774002) +zone = ('ksz056', 0.0025540659374895997) + +[fips2005933000] +centroid = (0.67201602504087532, -1.6648289247591119) +description = Homewood township, KS +station = ('kfoe', 0.0083062298371663623) +zone = ('ksz056', 0.001749565360678901) + +[fips2005940700] +centroid = (0.67311778158448932, -1.6635787454159083) +description = Lincoln township, KS +station = ('kixd', 0.00733235754198437) +zone = ('ksz056', 0.00041312411103073258) + +[fips2005952350] +centroid = (0.67152152090390782, -1.6629401468958964) +description = Ohio township, KS +station = ('kixd', 0.0080400874830525385) +zone = ('ksz056', 0.0015602102931465652) + +[fips2005953550] +centroid = (0.67372974638011607, -1.662672710094613) +description = Ottawa city, KS +station = ('kixd', 0.0063992561239307293) +zone = ('ksz056', 0.00071510704833024625) + +[fips2005953575] +centroid = (0.67451620919435717, -1.6628909809708676) +description = Ottawa township, KS +station = ('kixd', 0.0061196304049488262) +zone = ('ksz056', 0.0014425100098185398) + +[fips2005955425] +centroid = (0.67372068812129815, -1.6600976338629281) +description = Peoria township, KS +station = ('kixd', 0.0049207803860907891) +zone = ('ksz056', 0.0023973862364532338) + +[fips2005957025] +centroid = (0.67395501602667096, -1.6662203535986795) +description = Pomona township, KS +station = ('kfoe', 0.0060897919336183179) +zone = ('ksz056', 0.0026262739790737753) + +[fips2005957225] +centroid = (0.67090929430889323, -1.6602674369458548) +description = Pottawatomie township, KS +station = ('kixd', 0.0073574571306240805) +zone = ('ksz056', 0.003075663116433894) + +[fips2005959700] +centroid = (0.67043056794836364, -1.6625072703348165) +description = Richmond township, KS +station = ('kixd', 0.0086785127390934091) +zone = ('ksz056', 0.0026828610329060012) + +[fips2005975] +centroid = (0.69365564685135972, -1.6612228301783964) +description = Bendena CDP, KS +station = ('kstj', 0.0035704293452351351) +zone = ('ksz102', 0.00090801043945245067) + +[fips2005979325] +centroid = (0.6709236583686371, -1.665722358803208) +description = Williamsburg township, KS +station = ('kfoe', 0.0090599398546055941) +zone = ('ksz056', 0.0030019009194345507) + +[fips2006000] +centroid = (0.65671299561268148, -1.6710390156772181) +description = Benedict city, KS +station = ('kcnu', 0.0036615416029634209) +zone = ('ksz095', 0.0011795464269297) + +[fips2006075] +centroid = (0.68125967273187271, -1.7033201368299147) +description = Bennington city, KS +station = ('ksln', 0.0044308291922019799) +zone = ('ksz034', 0.0018986590748812703) + +[fips20061] +centroid = (0.68071602012316901, -1.6889208737949886) +description = Geary County, KS +station = ('kfri', 0.00093349234324769151) +zone = ('ksz036', 0.00020943417817036227) + +[fips2006107275] +centroid = (0.67934731547046256, -1.6886182686092777) +description = Blakely township, KS +station = ('kfri', 0.0023079616930988269) +zone = ('ksz036', 0.0013732228051893647) + +[fips2006125] +centroid = (0.66124950776434277, -1.7019548006626644) +description = Bentley city, KS +station = ('kewk', 0.0042729476236090438) +zone = ('ksz068', 0.002982925814052486) + +[fips2006134775] +centroid = (0.68091978731333935, -1.6851398099567607) +description = Jackson township, KS +station = ('kmhk', 0.0027469963681405157) +zone = ('ksz036', 0.0027360100891035866) + +[fips2006135200] +centroid = (0.68071602012316901, -1.6889208737949886) +description = Jefferson township, KS +station = ('kfri', 0.00093349234324769151) +zone = ('ksz036', 0.00020943417817036227) + +[fips2006135750] +centroid = (0.68115563365516141, -1.6903975096086383) +description = Junction City city, KS +station = ('kfri', 0.0012965119401469325) +zone = ('ksz036', 0.0014248093217763848) + +[fips2006140050] +centroid = (0.67906083712704013, -1.6861238964022049) +description = Liberty township, KS +station = ('kfri', 0.0033459266173929262) +zone = ('ksz036', 0.0025723627335897496) + +[fips2006143500] +centroid = (0.67934120681808052, -1.6905671730652247) +description = Lyon township, KS +station = ('kfri', 0.0026638333292439403) +zone = ('ksz036', 0.0020299685428419299) + +[fips2006146550] +centroid = (0.68341307741627588, -1.691180900643396) +description = Milford township, KS +station = ('kfri', 0.0025253909185573823) +zone = ('ksz022', 0.003281991989179691) + +[fips2006166000] +centroid = (0.6815963991044599, -1.6911954043294801) +description = Smoky Hill township, KS +station = ('kfri', 0.0018194928148640426) +zone = ('ksz036', 0.0021617588574835136) + +[fips2006175] +centroid = (0.65952594276812082, -1.6948514153268026) +description = Benton city, KS +station = ('kaao', 0.0016418577423876505) +zone = ('ksz069', 0.003708743919282297) + +[fips2006180025] +centroid = (0.68092889793203482, -1.6868846854231494) +description = Wingfield township, KS +station = ('kfri', 0.0016898097973402685) +zone = ('ksz036', 0.0013886134798833071) + +[fips2006275] +centroid = (0.69745690414903327, -1.6750125544253558) +description = Bern city, KS +station = ('kfnb', 0.0056036893275807128) +zone = ('ksz011', 0.003156709394585921) + +[fips20063] +centroid = (0.67923395633554551, -1.7538352886368491) +description = Gove County, KS +station = ('kcbk', 0.011749204383369079) +zone = ('ksz029', 6.3744572555811768e-05) + +[fips2006303775] +centroid = (0.68083896111567954, -1.7490668745874756) +description = Baker township, KS +station = ('khlc', 0.0080909337427712332) +zone = ('ksz029', 0.0039927650810008758) + +[fips2006325000] +centroid = (0.67961010969593538, -1.7581061442230643) +description = Gaeland township, KS +station = ('kcbk', 0.0095916489469752599) +zone = ('ksz029', 0.0034061360201695745) + +[fips2006327075] +centroid = (0.67959888722884498, -1.7545636494402914) +description = Gove township, KS +station = ('kcbk', 0.011106414106199267) +zone = ('ksz029', 0.00073582328290938562) + +[fips2006327225] +centroid = (0.68189994676796684, -1.7539613363154281) +description = Grainfield township, KS +station = ('kcbk', 0.0097894386928497491) +zone = ('ksz029', 0.0026905404816090724) + +[fips2006328925] +centroid = (0.68176098365292304, -1.7571093692339577) +description = Grinnell township, KS +station = ('kcbk', 0.0081819524845482949) +zone = ('ksz029', 0.0036434177342107594) + +[fips2006335425] +centroid = (0.67668308782058573, -1.7537348798449819) +description = Jerome township, KS +station = ('khlc', 0.01360946267875611) +zone = ('ksz029', 0.0025310502450811979) + +[fips2006338750] +centroid = (0.67717134367883103, -1.7497414443433712) +description = Larrabee township, KS +station = ('khlc', 0.011420816159596812) +zone = ('ksz029', 0.0037353319253747093) + +[fips2006339750] +centroid = (0.67695815171069995, -1.7576664085180242) +description = Lewis township, KS +station = ('kcbk', 0.01214902045967271) +zone = ('ksz029', 0.0037889760492002779) + +[fips2006355050] +centroid = (0.68062498374938496, -1.7512323045904248) +description = Payne township, KS +station = ('khlc', 0.0093966098313547405) +zone = ('ksz029', 0.0024179366433718782) + +[fips20065] +centroid = (0.68677737408242012, -1.7432514724264152) +description = Graham County, KS +station = ('khlc', 0.00070942844650683022) +zone = ('ksz016', 3.2000756267792787e-05) + +[fips2006500] +centroid = (0.68092109631027831, -1.7099898951131185) +description = Beverly city, KS +station = ('ksln', 0.0059755263653046495) +zone = ('ksz033', 0.003201101283262185) + +[fips2006501325] +centroid = (0.68943451569553382, -1.7470253106015401) +description = Allodium township, KS +station = ('khlc', 0.0042665121923438727) +zone = ('ksz016', 0.0039180336164676725) + +[fips2006508850] +centroid = (0.68413840134681958, -1.7466405004080605) +description = Bryant township, KS +station = ('khlc', 0.0043944392087580195) +zone = ('ksz016', 0.0037020518423675785) + +[fips2006526175] +centroid = (0.68777427124457424, -1.7455842620513384) +description = Gettysburg township, KS +station = ('khlc', 0.0025425236318388214) +zone = ('ksz016', 0.002030568256645892) + +[fips2006527175] +centroid = (0.68946518113049138, -1.7419906814813595) +description = Graham township, KS +station = ('khlc', 0.0024101896006050692) +zone = ('ksz016', 0.0028655730279492525) + +[fips2006529950] +centroid = (0.6840892354217909, -1.7432525370772589) +description = Happy township, KS +station = ('khlc', 0.0030573390139611335) +zone = ('ksz016', 0.0026927665526527761) + +[fips2006532200] +centroid = (0.68766031869771149, -1.7421162579210407) +description = Hill City township, KS +station = ('khlc', 0.00062801657585983509) +zone = ('ksz016', 0.0012642860321121765) + +[fips2006534000] +centroid = (0.68923226694181272, -1.7445013725169387) +description = Indiana township, KS +station = ('khlc', 0.0026879057195943416) +zone = ('ksz016', 0.0026223742988099276) + +[fips2006546625] +centroid = (0.68614036381202725, -1.7431975941124063) +description = Millbrook township, KS +station = ('khlc', 0.0011137293607529099) +zone = ('ksz016', 0.00064564353124925325) + +[fips2006548250] +centroid = (0.68438948441301151, -1.740128397716189) +description = Morlan township, KS +station = ('khlc', 0.0032209461356695062) +zone = ('ksz016', 0.0034236716236687326) + +[fips2006550575] +centroid = (0.68763291702845519, -1.7394708623737929) +description = Nicodemus township, KS +station = ('khlc', 0.0023463294308110356) +zone = ('ksz016', 0.0030743229891707887) + +[fips2006555900] +centroid = (0.68930253389749807, -1.7395238680231759) +description = Pioneer township, KS +station = ('khlc', 0.0031550042972131312) +zone = ('ksz016', 0.0038508472721720107) + +[fips2006566300] +centroid = (0.68611955948734338, -1.7466905913575927) +description = Solomon township, KS +station = ('khlc', 0.0034388635039653117) +zone = ('ksz016', 0.0027106092093819464) + +[fips2006579225] +centroid = (0.68649885444038683, -1.7399866944342197) +description = Wildhorse township, KS +station = ('khlc', 0.0019690104907766205) +zone = ('ksz016', 0.0025722197385240754) + +[fips20067] +centroid = (0.6553281466643941, -1.7680073970696282) +description = Grant County, KS +station = ('klbl', 0.0098357297244913554) +zone = ('ksz075', 0.00028245119534239501) + +[fips2006740725] +centroid = (0.6553281466643941, -1.7680073970696282) +description = Lincoln township, KS +station = ('klbl', 0.0098357297244913554) +zone = ('ksz075', 0.00028245119534239501) + +[fips2006764975] +centroid = (0.65748031216502834, -1.7680095961844855) +description = Sherman township, KS +station = ('kgck', 0.0091115463122978142) +zone = ('ksz075', 0.0018998958314079559) + +[fips2006768875] +centroid = (0.65393235450169673, -1.7683099673487539) +description = Sullivan township, KS +station = ('klbl', 0.008761010751146386) +zone = ('ksz075', 0.0016560932179176004) + +[fips2006825] +centroid = (0.6937616581501258, -1.772078918601973) +description = Bird City city, KS +station = ('ksyf', 0.0035441609108206738) +zone = ('ksz001', 0.0027375593310991972) + +[fips20069] +centroid = (0.65876602641180249, -1.7532131834782683) +description = Gray County, KS +station = ('kgck', 0.0047294480272502444) +zone = ('ksz077', 0.00022142544265930469) + +[fips2006913300] +centroid = (0.65957046611733916, -1.7503833938955473) +description = Cimarron township, KS +station = ('kddc', 0.0044740834326747417) +zone = ('ksz077', 0.0022402540846458031) + +[fips2006915500] +centroid = (0.65585720832055117, -1.7559256345753778) +description = Copeland township, KS +station = ('kgck', 0.0061036314224079263) +zone = ('ksz077', 0.003647782247582334) + +[fips2006919525] +centroid = (0.65648201873947265, -1.7502035377161291) +description = East Hess township, KS +station = ('kddc', 0.0050767628307567527) +zone = ('ksz077', 0.0030855975371279921) + +[fips2006923675] +centroid = (0.66199628179139358, -1.7510608085381238) +description = Foote township, KS +station = ('kddc', 0.0057392334108343343) +zone = ('ksz077', 0.0036650918987591085) + +[fips2006934250] +centroid = (0.6592675467723631, -1.7549584254638) +description = Ingalls township, KS +station = ('kgck', 0.0033814761627184572) +zone = ('ksz077', 0.0016866955629114564) + +[fips2006941900] +centroid = (0.66186377639458216, -1.7548633050195663) +description = Logan township, KS +station = ('kgck', 0.0023480760209791686) +zone = ('ksz063', 0.0033824979512745777) + +[fips2006947900] +centroid = (0.65621452957831194, -1.7525677432675881) +description = Montezuma township, KS +station = ('kddc', 0.0068510442346317911) +zone = ('ksz077', 0.0024620222574225754) + +[fips2006950] +centroid = (0.67229683106422866, -1.7313288141467766) +description = Bison city, KS +station = ('kgbd', 0.0054109340382430867) +zone = ('ksz046', 0.0015219499489387126) + +[fips20071] +centroid = (0.67160981711076606, -1.7768496190326668) +description = Greeley County, KS +station = ('klaa', 0.014023393910430467) +zone = ('ksz041', 1.6205312531545462e-06) + +[fips2007171475] +centroid = (0.67160981711076606, -1.7768496190326668) +description = Tribune township, KS +station = ('klaa', 0.014023393910430467) +zone = ('ksz041', 1.6205312531545462e-06) + +[fips20073] +centroid = (0.66110731579018278, -1.6797438278682473) +description = Greenwood County, KS +station = ('kemp', 0.0079567307550063131) +zone = ('ksz070', 0.00013216770385199411) + +[fips2007303625] +centroid = (0.66032406438176527, -1.679118650930183) +description = Bachelor township, KS +station = ('kemp', 0.0087192604966195176) +zone = ('ksz070', 0.00084938407335116456) + +[fips2007321800] +centroid = (0.66018937732338889, -1.6805570116733366) +description = Eureka city, KS +station = ('kemp', 0.0089372040738284926) +zone = ('ksz070', 0.0011889228522241439) + +[fips2007321825] +centroid = (0.66068597585545885, -1.6811415922529993) +description = Eureka township, KS +station = ('kemp', 0.0085241206665420278) +zone = ('ksz070', 0.0012999388786878697) + +[fips2007322800] +centroid = (0.65826363338661587, -1.6792705992948616) +description = Fall River township, KS +station = ('kemp', 0.010781250307519946) +zone = ('ksz070', 0.0028390639271387266) + +[fips2007335000] +centroid = (0.6630140530914016, -1.6794545919046069) +description = Janesville township, KS +station = ('kemp', 0.0060391019840500505) +zone = ('ksz070', 0.0019241717609395398) + +[fips2007338425] +centroid = (0.66275830999610674, -1.6757206519561825) +description = Lane township, KS +station = ('kemp', 0.0067950771697121116) +zone = ('ksz070', 0.0034685795629467863) + +[fips2007344075] +centroid = (0.66538871316507997, -1.6790651914951944) +description = Madison township, KS +station = ('kemp', 0.0036544552310833404) +zone = ('ksz070', 0.004315311599892852) + +[fips2007353650] +centroid = (0.65747931732735465, -1.6824890562487091) +description = Otter Creek township, KS +station = ('kemp', 0.011884671379403385) +zone = ('ksz070', 0.0042837232446717348) + +[fips2007356375] +centroid = (0.65940630044789661, -1.6761215191787806) +description = Pleasant Grove township, KS +station = ('kcnu', 0.0078695580706706174) +zone = ('ksz070', 0.0032083645168173324) + +[fips2007358175] +centroid = (0.66064314547561487, -1.6763823237289062) +description = Quincy township, KS +station = ('kemp', 0.0086499455251851983) +zone = ('ksz070', 0.0025621151310866834) + +[fips2007362650] +centroid = (0.66320516664449491, -1.6828149441266416) +description = Salem township, KS +station = ('kemp', 0.0065607493237741944) +zone = ('ksz070', 0.0033141377382624056) + +[fips2007362875] +centroid = (0.65736892525216606, -1.6762142136153542) +description = Salt Springs township, KS +station = ('kcnu', 0.0076909177383626707) +zone = ('ksz095', 0.0044927808871655138) + +[fips2007364600] +centroid = (0.66508753914935592, -1.6754258832988134) +description = Shell Rock township, KS +station = ('kemp', 0.0048537779851326795) +zone = ('ksz058', 0.0042379204764554715) + +[fips2007366925] +centroid = (0.66124664542436951, -1.6831471500964663) +description = South Salem township, KS +station = ('kemp', 0.0084495145602039336) +zone = ('ksz070', 0.0028216861393407524) + +[fips2007367425] +centroid = (0.65908428720090373, -1.6832106277213612) +description = Spring Creek township, KS +station = ('kemp', 0.010494425290057421) +zone = ('ksz070', 0.0035027068754509586) + +[fips2007371825] +centroid = (0.65698615709391117, -1.6794145889581509) +description = Twin Grove township, KS +station = ('kidp', 0.010649612411288497) +zone = ('ksz094', 0.003308237427537576) + +[fips20075] +centroid = (0.66314210789862038, -1.7766350308011341) +description = Hamilton County, KS +station = ('klaa', 0.012293765661127722) +zone = ('ksz061', 7.4892794419044003e-05) + +[fips2007504850] +centroid = (0.66010233775359195, -1.77871434625879) +description = Bear Creek township, KS +station = ('klaa', 0.011438609820669974) +zone = ('ksz061', 0.0035290558194285434) + +[fips2007515425] +centroid = (0.66400655202384062, -1.7799030376524458) +description = Coolidge township, KS +station = ('klaa', 0.0096605864692237611) +zone = ('ksz061', 0.0027264361783731965) + +[fips2007536425] +centroid = (0.66378763537576302, -1.7730657626676356) +description = Kendall township, KS +station = ('klaa', 0.015050006602371629) +zone = ('ksz061', 0.0028386853823293406) + +[fips2007538275] +centroid = (0.66005572000927115, -1.7743532571502469) +description = Lamont township, KS +station = ('kgck', 0.013150354669001668) +zone = ('ksz061', 0.0036151679955562341) + +[fips2007540075] +centroid = (0.66514405291053535, -1.7753520741745781) +description = Liberty township, KS +station = ('klaa', 0.013252121667282141) +zone = ('ksz061', 0.0021675239056471855) + +[fips2007545650] +centroid = (0.66403168476506935, -1.7782667391188236) +description = Medway township, KS +station = ('klaa', 0.010947170887647973) +zone = ('ksz061', 0.001553682738042781) + +[fips2007559325] +centroid = (0.66704876562982185, -1.7766302311456912) +description = Richland township, KS +station = ('klaa', 0.012501743631034059) +zone = ('ksz061', 0.0038394675937419584) + +[fips2007569875] +centroid = (0.66294078416940283, -1.7754984200323578) +description = Syracuse township, KS +station = ('klaa', 0.013206317689796085) +zone = ('ksz061', 0.00090375053251868544) + +[fips2007600] +centroid = (0.66478468961754977, -1.6582360307761659) +description = Blue Mound city, KS +station = ('kcnu', 0.0098467221282063592) +zone = ('ksz060', 0.0031399936260837159) + +[fips2007650] +centroid = (0.69251940260172629, -1.6870160738092395) +description = Blue Rapids city, KS +station = ('kmhk', 0.0095195921717811677) +zone = ('ksz010', 0.0025886430011069399) + +[fips20077] +centroid = (0.64905625363747499, -1.7115848817033461) +description = Harper County, KS +station = ('kp28', 0.0069194412636213194) +zone = ('ksz091', 0.00013748399706420468) + +[fips2007701975] +centroid = (0.64851661528605087, -1.7111299267272284) +description = Anthony city, KS +station = ('kp28', 0.0074148521883169935) +zone = ('ksz091', 0.00077182440758765639) + +[fips2007730175] +centroid = (0.6507477743886303, -1.7109055471985921) +description = Harper city, KS +station = ('kp28', 0.0072534567130374296) +zone = ('ksz091', 0.001762056825766953) + +[fips2007771201] +centroid = (0.65046206399007889, -1.7147555689955665) +description = Township 1, KS +station = ('kp28', 0.0041983640661333579) +zone = ('ksz091', 0.002752395060261236) + +[fips2007771205] +centroid = (0.64729022478055198, -1.7146511284931272) +description = Township 2, KS +station = ('kp28', 0.0054818821674089118) +zone = ('ksz091', 0.0029524613273813152) + +[fips2007771209] +centroid = (0.64776174293127076, -1.7108882335324125) +description = Township 3, KS +station = ('kp28', 0.0078526879033097383) +zone = ('ksz091', 0.0015149170559306357) + +[fips2007771213] +centroid = (0.64738969109462319, -1.7085066095950185) +description = Township 4, KS +station = ('kbkn', 0.0096224847122213866) +zone = ('ksz091', 0.0031023588668347103) + +[fips2007771217] +centroid = (0.65009414858375836, -1.709672698974861) +description = Township 5, KS +station = ('kp28', 0.0082598500967599152) +zone = ('ksz091', 0.0019152406105231146) + +[fips2007771221] +centroid = (0.65186555305477756, -1.7097077277329484) +description = Township 6, KS +station = ('kp28', 0.0082829551752024166) +zone = ('ksz091', 0.0031901801895762969) + +[fips2007775] +centroid = (0.64709855272209804, -1.7082394345931233) +description = Bluff City city, KS +station = ('kbkn', 0.0092753235005658217) +zone = ('ksz091', 0.0034437754270247637) + +[fips2007825] +centroid = (0.68695260513932033, -1.7398797057510726) +description = Bogue city, KS +station = ('khlc', 0.0019682902243938942) +zone = ('ksz016', 0.0026443800229820937) + +[fips20079] +centroid = (0.6641002936579653, -1.7005913494510065) +description = Harvey County, KS +station = ('kewk', 0.0021079668445035038) +zone = ('ksz068', 0.00017621642369671547) + +[fips2007901500] +centroid = (0.66546906812384177, -1.7042140944727859) +description = Alta township, KS +station = ('khut', 0.0032400005493080689) +zone = ('ksz068', 0.0033310721230415184) + +[fips2007909600] +centroid = (0.66385474328550209, -1.7041466374971965) +description = Burrton township, KS +station = ('khut', 0.0031551174486205385) +zone = ('ksz068', 0.0029306626649614454) + +[fips2007917025] +centroid = (0.66243097349489521, -1.6984519772137896) +description = Darlington township, KS +station = ('kewk', 0.0017197778159097885) +zone = ('ksz068', 0.0021962802320217348) + +[fips2007921025] +centroid = (0.66549720283138403, -1.7004204642639438) +description = Emma township, KS +station = ('kewk', 0.0024183512035137163) +zone = ('ksz068', 0.0015181193961847799) + +[fips2007925300] +centroid = (0.66550093783598319, -1.7023427000889202) +description = Garden township, KS +station = ('kewk', 0.0037570483419921306) +zone = ('ksz068', 0.0021412455009811203) + +[fips2007929600] +centroid = (0.66321956561082385, -1.7018624029320639) +description = Halstead city, KS +station = ('kewk', 0.0032315759807079293) +zone = ('ksz068', 0.0013609386160150451) + +[fips2007929625] +centroid = (0.6640610935629655, -1.7023779208332255) +description = Halstead township, KS +station = ('kewk', 0.0035150855286022078) +zone = ('ksz068', 0.001537074284387717) + +[fips2007931875] +centroid = (0.66559511580242081, -1.6985262584267544) +description = Highland township, KS +station = ('kewk', 0.0015728437868560363) +zone = ('ksz068', 0.0022031698282691508) + +[fips2007937825] +centroid = (0.66236494768929233, -1.7041920509643333) +description = Lake township, KS +station = ('khut', 0.0036817136856395535) +zone = ('ksz068', 0.003376353712579599) + +[fips2007938150] +centroid = (0.66243085132184765, -1.7023683389756321) +description = Lakin township, KS +station = ('kewk', 0.003885335342209765) +zone = ('ksz068', 0.0021755019460510771) + +[fips2007943925] +centroid = (0.66398890674510302, -1.7004476914002749) +description = Macon township, KS +station = ('kewk', 0.0019978942780595624) +zone = ('ksz068', 1.7746876355359218e-05) + +[fips2007950475] +centroid = (0.6638401174263705, -1.6991550831029554) +description = Newton city, KS +station = ('kewk', 0.0010104488693191548) +zone = ('ksz068', 0.0010128342579726799) + +[fips2007950500] +centroid = (0.66403423294577735, -1.6983601903484271) +description = Newton township, KS +station = ('kewk', 0.00035670458991427016) +zone = ('ksz068', 0.0016301112987862324) + +[fips2007956250] +centroid = (0.66403681603307019, -1.6965398293918894) +description = Pleasant township, KS +station = ('kewk', 0.0010842368553546644) +zone = ('ksz068', 0.0030633063740897115) + +[fips2007959350] +centroid = (0.66257642923475657, -1.6967555695407284) +description = Richland township, KS +station = ('kewk', 0.0017743591480238849) +zone = ('ksz068', 0.0032164706753299681) + +[fips2007963825] +centroid = (0.66244701307072118, -1.7004157344216708) +description = Sedgwick township, KS +station = ('kewk', 0.0025709264411001931) +zone = ('ksz068', 0.0015321201126660428) + +[fips2007975] +centroid = (0.6819934091494112, -1.6558223975002906) +description = Bonner Springs city, KS +station = ('kmci', 0.004344468540066598) +zone = ('ksz104', 0.001602838952098954) + +[fips2007975225] +centroid = (0.66538705510229057, -1.6964798947853761) +description = Walton township, KS +station = ('kewk', 0.0017138104251372616) +zone = ('ksz068', 0.0034123284924025658) + +[fips20081] +centroid = (0.65552035977491618, -1.7606335031529996) +description = Haskell County, KS +station = ('kgck', 0.006629911522603167) +zone = ('ksz076', 0.00010215386917424283) + +[fips2008118825] +centroid = (0.65564666925288306, -1.762928436586447) +description = Dudley township, KS +station = ('kgck', 0.0073287739037550936) +zone = ('ksz076', 0.0018985350699664114) + +[fips2008130625] +centroid = (0.65552035977491618, -1.7606335031529996) +description = Haskell township, KS +station = ('kgck', 0.006629911522603167) +zone = ('ksz076', 0.00010215386917424283) + +[fips2008141675] +centroid = (0.65555242147327542, -1.7580095926088439) +description = Lockport township, KS +station = ('kgck', 0.0062197432694082863) +zone = ('ksz076', 0.0020018230799084668) + +[fips20083] +centroid = (0.66475215668029264, -1.743556119647351) +description = Hodgeman County, KS +station = ('kddc', 0.0056777832986093105) +zone = ('ksz064', 6.965699176995636e-06) + +[fips2008306225] +centroid = (0.66399744140514527, -1.7483252492817178) +description = Benton township, KS +station = ('kddc', 0.0056072035902276001) +zone = ('ksz064', 0.0038366988664134609) + +[fips2008311725] +centroid = (0.66475224394675514, -1.7435730667943878) +description = Center township, KS +station = ('kddc', 0.00567567220296514) +zone = ('ksz064', 2.0303257283797449e-05) + +[fips2008329525] +centroid = (0.66475463504783039, -1.7464312179774537) +description = Hallet township, KS +station = ('kddc', 0.0057572381681331389) +zone = ('ksz064', 0.0022698660134935658) + +[fips2008344575] +centroid = (0.66621174062715038, -1.7397979894354942) +description = Marena township, KS +station = ('kddc', 0.0080656663966564516) +zone = ('ksz064', 0.003290613481800546) + +[fips2008351350] +centroid = (0.66649844586337559, -1.7478380231677313) +description = North Roscoe township, KS +station = ('kddc', 0.0077391852261933418) +zone = ('ksz064', 0.0037997917912133924) + +[fips2008363225] +centroid = (0.6623904294963715, -1.7436735279461326) +description = Sawlog township, KS +station = ('kddc', 0.003346931787526459) +zone = ('ksz064', 0.0023639428223908637) + +[fips2008366900] +centroid = (0.66279719593184128, -1.7474492510768493) +description = South Roscoe township, KS +station = ('kddc', 0.0042226963419729749) +zone = ('ksz064', 0.003642612407467861) + +[fips2008368175] +centroid = (0.6631208323350386, -1.7396278547400097) +description = Sterling township, KS +station = ('kddc', 0.0056634745152132418) +zone = ('ksz064', 0.0034914313261528505) + +[fips2008372825] +centroid = (0.66679110267234998, -1.7436263342431586) +description = Valley township, KS +station = ('kddc', 0.0076893632994008499) +zone = ('ksz064', 0.0020397717389604038) + +[fips2008425] +centroid = (0.68701475631398379, -1.7693646000025638) +description = Brewster city, KS +station = ('kcbk', 0.004564184222236204) +zone = ('ksz013', 0.0046315753273405338) + +[fips2008475] +centroid = (0.66140660485031477, -1.6593388519706238) +description = Bronson city, KS +station = ('kcnu', 0.0069292719320751201) +zone = ('ksz073', 0.0031638058502601431) + +[fips20085] +centroid = (0.68785151951726753, -1.6719295873813407) +description = Jackson County, KS +station = ('ktop', 0.006392315394312462) +zone = ('ksz024', 0.00010547734722287709) + +[fips2008500350] +centroid = (0.68671839940699519, -1.675126314986001) +description = Adrian township, KS +station = ('ktop', 0.0067428078623042826) +zone = ('ksz024', 0.0027734421645827113) + +[fips2008504025] +centroid = (0.68819452907516188, -1.6727198724666437) +description = Banner township, KS +station = ('ktop', 0.0069384169935171091) +zone = ('ksz024', 0.00066543332083871551) + +[fips2008511275] +centroid = (0.68686903877473493, -1.6695800076890133) +description = Cedar township, KS +station = ('ktop', 0.0050398875176356555) +zone = ('ksz024', 0.0021072831537378646) + +[fips2008518350] +centroid = (0.68535904971907946, -1.6698755617445462) +description = Douglas township, KS +station = ('ktop', 0.003565979489663907) +zone = ('ksz024', 0.0030389486996575707) + +[fips2008524400] +centroid = (0.68809361413781167, -1.6708121403277514) +description = Franklin township, KS +station = ('ktop', 0.0063880734046632328) +zone = ('ksz024', 0.0008632915140586822) + +[fips2008525625] +centroid = (0.68831300202478729, -1.669039252326868) +description = Garfield township, KS +station = ('ktop', 0.0064713176794250612) +zone = ('ksz024', 0.0022501125638754735) + +[fips2008527700] +centroid = (0.68833939140307743, -1.6749389538907993) +description = Grant township, KS +station = ('ktop', 0.0079084964349166939) +zone = ('ksz024', 0.0023666023201708124) + +[fips2008532825] +centroid = (0.68887902975450166, -1.6708482860965601) +description = Holton city, KS +station = ('ktop', 0.0071636437647651331) +zone = ('ksz024', 0.001237086728961438) + +[fips2008535225] +centroid = (0.68982889029331451, -1.6727593343610314) +description = Jefferson township, KS +station = ('ktop', 0.008469849792922127) +zone = ('ksz024', 0.0019825374351830345) + +[fips2008540125] +centroid = (0.68998403261052421, -1.6709196700629667) +description = Liberty township, KS +station = ('ktop', 0.0082607660535150076) +zone = ('ksz024', 0.0021684096911699455) + +[fips2008540750] +centroid = (0.68640305331774487, -1.6727483038801587) +description = Lincoln township, KS +station = ('ktop', 0.0053595752947561311) +zone = ('ksz024', 0.0016815110582125638) + +[fips2008549975] +centroid = (0.69121564165048655, -1.6708831403217224) +description = Netawaka township, KS +station = ('kfnb', 0.0086122918091928666) +zone = ('ksz024', 0.0033551130736812632) + +[fips2008566200] +centroid = (0.68977173076031162, -1.6750723319522369) +description = Soldier township, KS +station = ('ktop', 0.0091720195469381857) +zone = ('ksz024', 0.0030387948936527699) + +[fips2008568475] +centroid = (0.68980979639129769, -1.6690180291231638) +description = Straight Creek township, KS +station = ('ktop', 0.0079681999978193155) +zone = ('ksz024', 0.0029047835587716906) + +[fips2008575] +centroid = (0.67672532478848402, -1.7080613761028347) +description = Brookville city, KS +station = ('ksln', 0.0029263765039266834) +zone = ('ksz049', 0.0029256033199744958) + +[fips2008575625] +centroid = (0.68507749320414768, -1.6744439087017637) +description = Washington township, KS +station = ('ktop', 0.0052471065336166019) +zone = ('ksz024', 0.00348034753677817) + +[fips2008578125] +centroid = (0.69125950177458917, -1.6688228140463284) +description = Whiting township, KS +station = ('kfnb', 0.008338495661447622) +zone = ('ksz012', 0.0039093792268574462) + +[fips2008675] +centroid = (0.67440534588027046, -1.7408673701214836) +description = Brownell city, KS +station = ('khys', 0.0074593267415909445) +zone = ('ksz045', 0.0036611924912094036) + +[fips20087] +centroid = (0.6848609851104378, -1.6646132544234431) +description = Jefferson County, KS +station = ('klwc', 0.0044451000077886486) +zone = ('ksz026', 0.00012825431698999909) + +[fips2008717425] +centroid = (0.68693160882841886, -1.6666718179162929) +description = Delaware township, KS +station = ('ktop', 0.005430694241828635) +zone = ('ksz026', 0.0026022366601495474) + +[fips2008722525] +centroid = (0.68379959803242252, -1.6656795807832414) +description = Fairview township, KS +station = ('ktop', 0.0033078565944781022) +zone = ('ksz026', 0.0012257960138537022) + +[fips2008735250] +centroid = (0.68659496972229417, -1.6625943797177838) +description = Jefferson township, KS +station = ('klwc', 0.0056556389865375888) +zone = ('ksz026', 0.0024573919019226865) + +[fips2008736125] +centroid = (0.68238349023723177, -1.6675349006846965) +description = Kaw township, KS +station = ('ktop', 0.0013418610174893467) +zone = ('ksz026', 0.0032337864173866953) + +[fips2008736575] +centroid = (0.68241139805197126, -1.6653859989497637) +description = Kentucky township, KS +station = ('ktop', 0.0029512292201955455) +zone = ('ksz026', 0.0024323014267799863) + +[fips2008751475] +centroid = (0.68752598070518545, -1.6634651244816037) +description = Norton township, KS +station = ('klwc', 0.0066758877672220811) +zone = ('ksz025', 0.0024380018757009484) + +[fips2008753400] +centroid = (0.68448430815127248, -1.6635142380467547) +description = Oskaloosa township, KS +station = ('klwc', 0.0037461829448938574) +zone = ('ksz026', 0.0010093256526926) + +[fips2008753950] +centroid = (0.68530787666541093, -1.6655938851169687) +description = Ozawkie township, KS +station = ('ktop', 0.0044126997015092578) +zone = ('ksz026', 0.0008287387791477952) + +[fips2008760575] +centroid = (0.68457630445614492, -1.6675483571732292) +description = Rock Creek township, KS +station = ('ktop', 0.0029926224245351227) +zone = ('ksz026', 0.0021751745381380855) + +[fips2008761700] +centroid = (0.68208908809900548, -1.6635727240299891) +description = Rural township, KS +station = ('klwc', 0.0017480441420094561) +zone = ('ksz026', 0.0028557859672567673) + +[fips2008763100] +centroid = (0.68231636487420022, -1.6619930614305942) +description = Sarcoxie township, KS +station = ('klwc', 0.0013520101324496733) +zone = ('ksz103', 0.0031327135666339139) + +[fips2008772150] +centroid = (0.68428345566095283, -1.6618788819909287) +description = Union township, KS +station = ('klwc', 0.0033142675705404396) +zone = ('ksz103', 0.0024478238936422089) + +[fips20089] +centroid = (0.69423979109870959, -1.714307490616702) +description = Jewell County, KS +station = ('kcnk', 0.008635564614494615) +zone = ('ksz007', 0.00014547594406191978) + +[fips2008901225] +centroid = (0.69138842924643396, -1.7100907402372987) +description = Allen township, KS +station = ('kcnk', 0.0045755539686352367) +zone = ('ksz007', 0.0043678812164308148) + +[fips2008902975] +centroid = (0.69134011853273891, -1.7162018535335242) +description = Athens township, KS +station = ('kcnk', 0.0092134124596985473) +zone = ('ksz007', 0.0033905647253330467) + +[fips2008908725] +centroid = (0.6912203714927595, -1.7140693055336824) +description = Browns Creek township, KS +station = ('kcnk', 0.0075674516970572602) +zone = ('ksz007', 0.0031561950043322881) + +[fips2008909125] +centroid = (0.69272081359740645, -1.7123457579907528) +description = Buffalo township, KS +station = ('kcnk', 0.0066357975481513174) +zone = ('ksz007', 0.002200560704171755) + +[fips2008909550] +centroid = (0.69595415820977358, -1.7162973579501932) +description = Burr Oak township, KS +station = ('kcnk', 0.010806664470002994) +zone = ('ksz007', 0.0022375320956168291) + +[fips2008910075] +centroid = (0.69299392271875859, -1.7141718959871146) +description = Calvin township, KS +station = ('kcnk', 0.0080485458434457775) +zone = ('ksz007', 0.0013809225011891706) + +[fips2008911750] +centroid = (0.69439491596262692, -1.7141456113285796) +description = Center township, KS +station = ('kcnk', 0.0085971786259623813) +zone = ('ksz007', 7.1409903083204524e-05) + +[fips2008921575] +centroid = (0.69136212713460654, -1.7182595618150405) +description = Erving township, KS +station = ('kcnk', 0.010792744323702187) +zone = ('ksz007', 0.0043200306593477941) + +[fips2008921625] +centroid = (0.69423649242642338, -1.7181288890139437) +description = Esbon township, KS +station = ('kcnk', 0.01133213056874181) +zone = ('ksz007', 0.0029960146994207192) + +[fips2008927725] +centroid = (0.69443552977432077, -1.7101543400352415) +description = Grant township, KS +station = ('kcnk', 0.0061015442236605783) +zone = ('ksz007', 0.0031359132483590475) + +[fips2008930350] +centroid = (0.69753516471269261, -1.7139688269286451) +description = Harrison township, KS +station = ('kcnk', 0.010358342650956923) +zone = ('ksz007', 0.0031677244930671277) + +[fips2008931900] +centroid = (0.69754120355190452, -1.7182851134352897) +description = Highland township, KS +station = ('khsi', 0.011064829509294924) +zone = ('nez085', 0.0037281412946750508) + +[fips2008932800] +centroid = (0.69597171622204868, -1.713980031942443) +description = Holmwood township, KS +station = ('kcnk', 0.0093446190653131683) +zone = ('ksz007', 0.0016096125594761799) + +[fips2008934375] +centroid = (0.69273912210125999, -1.7162759951201487) +description = Ionia township, KS +station = ('kcnk', 0.0095236652548351675) +zone = ('ksz007', 0.0022665831445221815) + +[fips2008934800] +centroid = (0.69746257646910215, -1.7101548636340169) +description = Jackson township, KS +station = ('khjh', 0.00626810250612575) +zone = ('nez086', 0.0038398539869566707) + +[fips2008940450] +centroid = (0.69426677388894553, -1.7161620774798712) +description = Limestone township, KS +station = ('kcnk', 0.0099381486653056673) +zone = ('ksz007', 0.0014852237489995572) + +[fips2008947800] +centroid = (0.6975281659423922, -1.7123082508651275) +description = Montana township, KS +station = ('khjh', 0.007686658741591689) +zone = ('ksz007', 0.0034833854653400042) + +[fips2008952125] +centroid = (0.69284836225914226, -1.7179400443888777) +description = Odessa township, KS +station = ('kcnk', 0.010792537613346065) +zone = ('ksz007', 0.0032321087581000233) + +[fips2008957400] +centroid = (0.69146222176720828, -1.7120086650990229) +description = Prairie township, KS +station = ('kcnk', 0.006035244967281664) +zone = ('ksz007', 0.003378037403428106) + +[fips2008959375] +centroid = (0.69594145221281911, -1.7118784809901164) +description = Richland township, KS +station = ('kcnk', 0.0080979998348565639) +zone = ('ksz007', 0.0023938242277083228) + +[fips2008965675] +centroid = (0.69586834037045309, -1.7101987761179971) +description = Sinclair township, KS +station = ('kcnk', 0.0071701355186218757) +zone = ('ksz007', 0.0034407506678230302) + +[fips2008973725] +centroid = (0.69298243845228036, -1.7103524698119277) +description = Vicksburg township, KS +station = ('kcnk', 0.0053614905437162977) +zone = ('ksz007', 0.0032933071686386483) + +[fips2008975000] +centroid = (0.69753746854730525, -1.7162952111952132) +description = Walnut township, KS +station = ('khsi', 0.011141099844677753) +zone = ('ksz007', 0.0035367538725667252) + +[fips2008975650] +centroid = (0.69425361410638553, -1.7122936424592883) +description = Washington township, KS +station = ('kcnk', 0.0072976776335179983) +zone = ('ksz007', 0.0014963602265196953) + +[fips2008977925] +centroid = (0.69592326588201336, -1.7181328334580532) +description = White Mound township, KS +station = ('kcnk', 0.012018391215106014) +zone = ('ksz007', 0.0033708957784561082) + +[fips2009000] +centroid = (0.65534751981909134, -1.738948659861596) +description = Bucklin city, KS +station = ('kddc', 0.005962751740630848) +zone = ('ksz078', 0.0043026894322167313) + +[fips2009050] +centroid = (0.67580749104144522, -1.6529724842712941) +description = Bucyrus CDP, KS +station = ('kojc', 0.001991271907014403) +zone = ('ksz105', 0.0032379115696263305) + +[fips20091] +centroid = (0.67865220318927078, -1.6549618629125946) +description = Johnson County, KS +station = ('kixd', 0.0014369406144436536) +zone = ('ksz105', 1.9114188262756321e-06) + +[fips2009103225] +centroid = (0.67648490568402175, -1.6530640616971461) +description = Aubry township, KS +station = ('kojc', 0.0013123818907871665) +zone = ('ksz105', 0.0026218442406253373) + +[fips2009107975] +centroid = (0.68165467564818416, -1.6555889248062514) +description = Bonner Springs city, KS +station = ('kixd', 0.0041898898567014654) +zone = ('ksz104', 0.0016293157812989761) + +[fips2009117850] +centroid = (0.68019523132766635, -1.6572101087885511) +description = De Soto city, KS +station = ('kixd', 0.002868518224445608) +zone = ('ksz105', 0.002333900709214722) + +[fips2009119825] +centroid = (0.67652019624149706, -1.6581151492721729) +description = Edgerton city, KS +station = ('kixd', 0.0018891384296961021) +zone = ('ksz105', 0.003251894265614454) + +[fips2009122700] +centroid = (0.68110432097515272, -1.6515828356675637) +description = Fairway city, KS +station = ('kmkc', 0.0016566810235809663) +zone = ('ksz104', 0.0024212720350950978) + +[fips2009125425] +centroid = (0.67746450663328861, -1.6568407622122441) +description = Gardner city, KS +station = ('kixd', 0.00063454193634161023) +zone = ('ksz105', 0.0018837598862346437) + +[fips2009125450] +centroid = (0.67729479081682475, -1.6566579738796829) +description = Gardner township, KS +station = ('kixd', 0.00052522433877176034) +zone = ('ksz105', 0.0018930514415517036) + +[fips2009137975] +centroid = (0.68138425433388006, -1.6540735426832072) +description = Lake Quivira city, KS +station = ('kmkc', 0.0026767106943233476) +zone = ('ksz104', 0.0012958672102323528) + +[fips2009139075] +centroid = (0.67905984228936656, -1.6515219934898393) +description = Leawood city, KS +station = ('kojc', 0.001955093887380873) +zone = ('ksz105', 0.0027079577488927065) + +[fips2009139350] +centroid = (0.68007220306869332, -1.6546404430775477) +description = Lenexa city, KS +station = ('kojc', 0.002494278487528756) +zone = ('ksz105', 0.0014436174831454118) + +[fips2009139800] +centroid = (0.67917541799243364, -1.6578524423131629) +description = Lexington township, KS +station = ('kixd', 0.0022136382314306437) +zone = ('ksz105', 0.002310473910952108) + +[fips2009143625] +centroid = (0.67725747567741701, -1.6582419648956228) +description = McCamish township, KS +station = ('kixd', 0.0017403987319700382) +zone = ('ksz105', 0.0029101195635334934) + +[fips2009146000] +centroid = (0.68098597019857499, -1.6527212266721769) +description = Merriam city, KS +station = ('kmkc', 0.0021468764927458765) +zone = ('ksz104', 0.001943063978936131) + +[fips2009147225] +centroid = (0.68114570273171759, -1.6520756468351567) +description = Mission city, KS +station = ('kmkc', 0.0017484988159286821) +zone = ('ksz104', 0.0021146064203888598) + +[fips2009147350] +centroid = (0.68092336523830588, -1.6513878125769459) +description = Mission Hills city, KS +station = ('kmkc', 0.0018069829084792258) +zone = ('ksz104', 0.0026543284869013166) + +[fips2009147425] +centroid = (0.6812670031147311, -1.6512719401679059) +description = Mission Woods city, KS +station = ('kmkc', 0.0014551546175125946) +zone = ('ksz104', 0.00251473489160027) + +[fips2009150] +centroid = (0.65814807513684137, -1.6702313645658577) +description = Buffalo city, KS +station = ('kcnu', 0.0030454287805252028) +zone = ('ksz095', 0.0026914468970628482) + +[fips2009152575] +centroid = (0.67865869581408811, -1.6549010905480404) +description = Olathe city, KS +station = ('kojc', 0.0014633376429269086) +zone = ('ksz105', 4.7638033524703684e-05) + +[fips2009152600] +centroid = (0.67882424029363975, -1.6559679579599069) +description = Olathe township, KS +station = ('kixd', 0.0013463762534422993) +zone = ('ksz105', 0.00080258516697611184) + +[fips2009153775] +centroid = (0.67874182584636067, -1.6526624614362624) +description = Overland Park city, KS +station = ('kojc', 0.0011326523184436266) +zone = ('ksz105', 0.0017917652186284054) + +[fips2009153825] +centroid = (0.67767986280969217, -1.6521650425994439) +description = Oxford township, KS +station = ('kojc', 0.000972856564651328) +zone = ('ksz105', 0.0023840144256993506) + +[fips2009157575] +centroid = (0.68045114895588632, -1.6517163882619261) +description = Prairie Village city, KS +station = ('kmkc', 0.0023165568620171439) +zone = ('ksz104', 0.0028238172689552896) + +[fips2009160825] +centroid = (0.68130459750681904, -1.6517343476999291) +description = Roeland Park city, KS +station = ('kmkc', 0.0014983518195940022) +zone = ('ksz104', 0.0022029535833683741) + +[fips2009164500] +centroid = (0.68098871036550057, -1.6546650173134156) +description = Shawnee city, KS +station = ('kojc', 0.0033643095295694033) +zone = ('ksz104', 0.0017760049674643455) + +[fips2009167625] +centroid = (0.67661828374545918, -1.6548444895203982) +description = Spring Hill city, KS +station = ('kixd', 0.0012605893779197076) +zone = ('ksz105', 0.0020340899809209545) + +[fips2009167650] +centroid = (0.67681063648232143, -1.6548458159706296) +description = Spring Hill township, KS +station = ('kixd', 0.0011371311479385032) +zone = ('ksz105', 0.0018418989640105719) + +[fips2009177500] +centroid = (0.68136613781624433, -1.6513535866703142) +description = Westwood city, KS +station = ('kmkc', 0.0013649328217147439) +zone = ('ksz104', 0.0024070530722751535) + +[fips2009177525] +centroid = (0.68135767296937222, -1.6512500537390857) +description = Westwood Hills city, KS +station = ('kmkc', 0.0013632487971764924) +zone = ('ksz104', 0.0024793521753997401) + +[fips2009200] +centroid = (0.66564569544414365, -1.7064198241281638) +description = Buhler city, KS +station = ('khut', 0.0018217980297742622) +zone = ('ksz051', 0.0047233021336881764) + +[fips2009225] +centroid = (0.67850179071433392, -1.7226212617888217) +description = Bunker Hill city, KS +station = ('krsl', 0.001606948480851061) +zone = ('ksz032', 0.0011040795427276582) + +[fips2009250] +centroid = (0.65125772468947796, -1.6886995485925433) +description = Burden city, KS +station = ('kwld', 0.0046431579376915678) +zone = ('ksz093', 0.0017577506435224029) + +[fips2009275] +centroid = (0.66660374157714841, -1.7370594282127749) +description = Burdett city, KS +station = ('kddc', 0.009604176858509679) +zone = ('ksz065', 0.0039753621228992078) + +[fips20093] +centroid = (0.6631284419705773, -1.7681605322581981) +description = Kearny County, KS +station = ('kgck', 0.0082520824068832762) +zone = ('ksz062', 0.00019029549503309681) + +[fips2009317250] +centroid = (0.66356571676137188, -1.7656311312930379) +description = Deerfield township, KS +station = ('kgck', 0.0064010172675870863) +zone = ('ksz062', 0.002180911582273628) + +[fips2009319550] +centroid = (0.66619058723661617, -1.7664936381027885) +description = East Hibbard township, KS +station = ('kgck', 0.0081245779867617288) +zone = ('ksz062', 0.0033083016345949951) + +[fips2009330500] +centroid = (0.66267552902968474, -1.7699545212897378) +description = Hartland township, KS +station = ('kgck', 0.0095985789796972226) +zone = ('ksz062', 0.001368863102938077) + +[fips2009336450] +centroid = (0.65997827975036016, -1.7687669818133887) +description = Kendall township, KS +station = ('kgck', 0.0088125699222494757) +zone = ('ksz062', 0.0032656992625627198) + +[fips2009338200] +centroid = (0.66316334855561709, -1.7675202931286889) +description = Lakin township, KS +station = ('kgck', 0.0077606746689691712) +zone = ('ksz062', 0.00066951321915680148) + +[fips2009350] +centroid = (0.67634877000236626, -1.6726498498570537) +description = Burlingame city, KS +station = ('kfoe', 0.0040499222130447798) +zone = ('ksz055', 0.0022840375864845008) + +[fips2009367025] +centroid = (0.66082125632578093, -1.7659058635705944) +description = Southside township, KS +station = ('kgck', 0.006437955637217648) +zone = ('ksz062', 0.0030919489104743545) + +[fips2009377050] +centroid = (0.66618177332389372, -1.7703224366960586) +description = West Hibbard township, KS +station = ('kgck', 0.010776620342693622) +zone = ('ksz062', 0.0033305953384971288) + +[fips2009400] +centroid = (0.66659864521573253, -1.6710729623311695) +description = Burlington city, KS +station = ('kemp', 0.0066917439344641042) +zone = ('ksz058', 0.00077828281570541894) + +[fips2009450] +centroid = (0.66478996051189077, -1.6910074847289178) +description = Burns city, KS +station = ('kewk', 0.0054814693784569326) +zone = ('ksz069', 0.0054248496881034586) + +[fips20095] +centroid = (0.6554226387900971, -1.712945173869058) +description = Kingman County, KS +station = ('kp28', 0.0073303611850402319) +zone = ('ksz082', 0.00015307250616435408) + +[fips2009501250] +centroid = (0.65483036130843286, -1.7081750144904322) +description = Allen township, KS +station = ('kict', 0.0064734676494204941) +zone = ('ksz082', 0.0037353793053519187) + +[fips2009505675] +centroid = (0.65474580010617367, -1.7137461229160906) +description = Belmont township, KS +station = ('kp28', 0.0064100759057098156) +zone = ('ksz082', 0.0010809216441897656) + +[fips2009506050] +centroid = (0.65327324836297351, -1.7080148630782692) +description = Bennett township, KS +station = ('kict', 0.0070689974861585661) +zone = ('ksz082', 0.0044171195740394173) + +[fips2009510450] +centroid = (0.65334285209354315, -1.7097936502920241) +description = Canton township, KS +station = ('kp28', 0.0085435635529812204) +zone = ('ksz082', 0.0032357227602334152) + +[fips2009513125] +centroid = (0.65303061269036133, -1.7136583154014227) +description = Chikaskia township, KS +station = ('kp28', 0.0055627679725867678) +zone = ('ksz082', 0.0025864232834884051) + +[fips2009516925] +centroid = (0.65637098089246071, -1.7097789197131374) +description = Dale township, KS +station = ('khut', 0.0081271594790945732) +zone = ('ksz082', 0.0025411604451034764) + +[fips2009518650] +centroid = (0.65779338932625109, -1.7177344795095779) +description = Dresden township, KS +station = ('kptt', 0.0045763450332947878) +zone = ('ksz082', 0.0045158813028218321) + +[fips2009519225] +centroid = (0.65477159607251822, -1.7099690209752645) +description = Eagle township, KS +station = ('kict', 0.0078372052442609811) +zone = ('ksz082', 0.0023708438831563563) + +[fips2009521850] +centroid = (0.65766009853127627, -1.7156254760013454) +description = Eureka township, KS +station = ('kptt', 0.0062499610455477089) +zone = ('ksz082', 0.0030901947620908562) + +[fips2009522000] +centroid = (0.65793882761281985, -1.7081790811075894) +description = Evan township, KS +station = ('khut', 0.0064501778360371576) +zone = ('ksz082', 0.0043854496712855988) + +[fips2009525] +centroid = (0.69586882906264369, -1.7157582781041296) +description = Burr Oak city, KS +station = ('kcnk', 0.010409856817598061) +zone = ('ksz007', 0.0018984150655192247) + +[fips2009525125] +centroid = (0.65786321994962338, -1.7098886311099177) +description = Galesburg township, KS +station = ('khut', 0.0066771592814100552) +zone = ('ksz082', 0.0032847177788154058) + +[fips2009533050] +centroid = (0.65805443822247178, -1.7139108296376011) +description = Hoosier township, KS +station = ('khut', 0.0078222256683217473) +zone = ('ksz082', 0.0026758112491469684) + +[fips2009536950] +centroid = (0.65707653024257939, -1.7124471267137087) +description = Kingman city, KS +station = ('khut', 0.0080790823931941071) +zone = ('ksz082', 0.0015755365114753859) + +[fips2009536975] +centroid = (0.65488055697772019, -1.717420791483117) +description = Kingman township, KS +station = ('kp28', 0.0046481854136013389) +zone = ('ksz082', 0.0037178589470347463) + +[fips2009540150] +centroid = (0.65323495583918478, -1.7175763177727623) +description = Liberty township, KS +station = ('kp28', 0.0031811485114554309) +zone = ('ksz082', 0.0044263569113960561) + +[fips2009550650] +centroid = (0.65618290421226577, -1.7129480536623236) +description = Ninnescah township, KS +station = ('kp28', 0.0078372994079753747) +zone = ('ksz082', 0.000666385478683244) + +[fips2009555550] +centroid = (0.65457334412278412, -1.7156040957180085) +description = Peters township, KS +station = ('kp28', 0.0052145444802886723) +zone = ('ksz082', 0.0024169514646934036) + +[fips2009559400] +centroid = (0.65465474627909725, -1.7118683580804548) +description = Richland township, KS +station = ('kp28', 0.0075806768392865393) +zone = ('ksz082', 0.0011443652801440846) + +[fips2009560375] +centroid = (0.65326075180552934, -1.7154238381128626) +description = Rochester township, KS +station = ('kp28', 0.0044530653996127222) +zone = ('ksz082', 0.0030751370694683386) + +[fips2009561725] +centroid = (0.65639730045758082, -1.7174263590834307) +description = Rural township, KS +station = ('kptt', 0.0050746880311724179) +zone = ('ksz082', 0.0037656742135426169) + +[fips2009572175] +centroid = (0.656091606039094, -1.7155127277316669) +description = Union township, KS +station = ('kp28', 0.0064580652664578868) +zone = ('ksz082', 0.0022204933463120602) + +[fips2009572850] +centroid = (0.65324982604441173, -1.7118390889088988) +description = Valley township, KS +station = ('kp28', 0.0069801909548534461) +zone = ('ksz082', 0.0024017406274164832) + +[fips2009573975] +centroid = (0.65629937003325134, -1.7081074527950875) +description = Vinita township, KS +station = ('kict', 0.0060548169893518029) +zone = ('ksz082', 0.0038008289931075745) + +[fips2009575] +centroid = (0.6636405041198199, -1.70468135402013) +description = Burrton city, KS +station = ('khut', 0.0027909209790601135) +zone = ('ksz068', 0.003366508675974004) + +[fips2009577775] +centroid = (0.65784756434623304, -1.7118091914188123) +description = White township, KS +station = ('khut', 0.0071678335082646129) +zone = ('ksz082', 0.0024510008835626216) + +[fips2009675] +centroid = (0.67444321952503872, -1.6799957486924801) +description = Bushong city, KS +station = ('kemp', 0.0054555428325488179) +zone = ('ksz054', 0.0035501337327352267) + +[fips20097] +centroid = (0.65556715205216221, -1.7328770084597584) +description = Kiowa County, KS +station = ('kptt', 0.0078016903801007278) +zone = ('ksz080', 5.3423969303622474e-05) + +[fips2009700] +centroid = (0.67216530305179834, -1.7173325999960136) +description = Bushton city, KS +station = ('kgbd', 0.007031554279662516) +zone = ('ksz050', 0.0039244267400237315) + +[fips2009737185] +centroid = (0.65556715205216221, -1.7328770084597584) +description = Kiowa Rural township, KS +station = ('kptt', 0.0078016903801007278) +zone = ('ksz080', 5.3423969303622474e-05) + +[fips2009800] +centroid = (0.65951890909123523, -1.7255540956105806) +description = Byers city, KS +station = ('kptt', 0.002224000350742608) +zone = ('ksz081', 0.0030082968749370969) + +[fips20099] +centroid = (0.64911357025011041, -1.6632546726803981) +description = Labette County, KS +station = ('kppf', 0.0037476428644252669) +zone = ('ksz100', 3.4227938069799433e-06) + +[fips2009900] +centroid = (0.64638272338268499, -1.7035924430998106) +description = Caldwell city, KS +station = ('kbkn', 0.0061464028879656398) +zone = ('ksz092', 0.0039808940211832136) + +[fips2009910325] +centroid = (0.64773367803689863, -1.6659243108509563) +description = Canada township, KS +station = ('kcfv', 0.001695780387841886) +zone = ('ksz100', 0.0025329909828460582) + +[fips2009912950] +centroid = (0.6464298123659038, -1.6596727683631154) +description = Chetopa city, KS +station = ('kppf', 0.0076660828402062928) +zone = ('ksz100', 0.0039186079812603882) + +[fips2009920750] +centroid = (0.64683685805405389, -1.6636442476227358) +description = Elm Grove township, KS +station = ('kcfv', 0.0034598269529070441) +zone = ('ksz100', 0.0022946590697334917) + +[fips2009922550] +centroid = (0.64857072049286257, -1.6619475956035796) +description = Fairview township, KS +station = ('kppf', 0.0048958100372542158) +zone = ('ksz100', 0.0011746616755969382) + +[fips2009929350] +centroid = (0.64682207511528955, -1.6617624859831133) +description = Hackberry township, KS +station = ('kcfv', 0.0049557927498927665) +zone = ('ksz100', 0.0025801565107969157) + +[fips2009933300] +centroid = (0.64645141954204355, -1.6658452474358409) +description = Howard township, KS +station = ('kcfv', 0.0018518588392018073) +zone = ('ksz100', 0.0033662468123255322) + +[fips2009937400] +centroid = (0.65014547871705952, -1.6637130135952645) +description = Labette township, KS +station = ('kppf', 0.002841755203189454) +zone = ('ksz100', 0.0010967318856187776) + +[fips2009940175] +centroid = (0.65020806622403615, -1.6618195582496533) +description = Liberty township, KS +station = ('kppf', 0.0041881492060587841) +zone = ('ksz100', 0.0015856550499516488) + +[fips2009947850] +centroid = (0.65012559941687942, -1.6600238937020315) +description = Montana township, KS +station = ('kppf', 0.0055779660397134523) +zone = ('ksz100', 0.0027673276374533548) + +[fips2009948850] +centroid = (0.64948754194893532, -1.6658982356319314) +description = Mound Valley township, KS +station = ('kppf', 0.0022184521456535375) +zone = ('ksz100', 0.0021373471141530901) + +[fips2009948950] +centroid = (0.64865983700446939, -1.6636445443287087) +description = Mount Pleasant township, KS +station = ('kppf', 0.00385359998690933) +zone = ('ksz100', 0.00054646189916098356) + +[fips2009949775] +centroid = (0.65165600882478314, -1.6600138580588326) +description = Neosho township, KS +station = ('kppf', 0.0053876718446219402) +zone = ('ksz100', 0.0036249575173756036) + +[fips2009950975] +centroid = (0.65164349481404626, -1.6616397020702354) +description = North township, KS +station = ('kppf', 0.0040949292697428858) +zone = ('ksz100', 0.0028411004146967163) + +[fips2009953150] +centroid = (0.65142616641558804, -1.6659889927530351) +description = Osage township, KS +station = ('kppf', 0.00065713314575033418) +zone = ('ksz100', 0.0031765211245230536) + +[fips2009953450] +centroid = (0.64870258011785087, -1.6600394271323742) +description = Oswego city, KS +station = ('kppf', 0.006099473998135237) +zone = ('ksz100', 0.0025957707091730951) + +[fips2009953475] +centroid = (0.64827281024283967, -1.6604457223289459) +description = Oswego township, KS +station = ('kppf', 0.0060421329110583186) +zone = ('ksz100', 0.0023916976746750744) + +[fips2009954675] +centroid = (0.65160144983236579, -1.6626878770058131) +description = Parsons city, KS +station = ('kppf', 0.0032612405598122919) +zone = ('ksz100', 0.0025316445040008935) + +[fips2009959425] +centroid = (0.64675186051948175, -1.6600591668062143) +description = Richland township, KS +station = ('kppf', 0.0072212351611110927) +zone = ('ksz100', 0.0034734064238602907) + +[fips2009975250] +centroid = (0.6517098696854996, -1.6637735765203086) +description = Walton township, KS +station = ('kppf', 0.0024008769004522945) +zone = ('ksz100', 0.0026315562740775946) + +[fips20101] +centroid = (0.67162514110159865, -1.7534657151677393) +description = Lane County, KS +station = ('kgck', 0.010436167437623987) +zone = ('ksz044', 3.5478848076914664e-06) + +[fips2010100775] +centroid = (0.67034143398346435, -1.7509027689743557) +description = Alamota township, KS +station = ('kgck', 0.010158100566384437) +zone = ('ksz044', 0.0023862472541609399) + +[fips2010113050] +centroid = (0.67392531052280202, -1.7560560455770866) +description = Cheyenne township, KS +station = ('kgck', 0.01223484365249084) +zone = ('ksz044', 0.0030616900265478825) + +[fips2010118075] +centroid = (0.67036763137553679, -1.7547393517360896) +description = Dighton township, KS +station = ('kgck', 0.0089353874218461408) +zone = ('ksz044', 0.0016048423828820102) + +[fips2010125] +centroid = (0.65131310398664377, -1.6871568171601203) +description = Cambridge city, KS +station = ('kwld', 0.0057307942494736865) +zone = ('ksz093', 0.0027474543684223914) + +[fips2010177950] +centroid = (0.67421157942671406, -1.7508012431717672) +description = White Rock township, KS +station = ('kgck', 0.013612065826315634) +zone = ('ksz044', 0.0033216147756934024) + +[fips2010179725] +centroid = (0.67417264113110209, -1.7535174467267685) +description = Wilson township, KS +station = ('kgck', 0.012857328749531152) +zone = ('ksz044', 0.0025457868624382076) + +[fips20103] +centroid = (0.68398599919653558, -1.658743066377163) +description = Leavenworth County, KS +station = ('klwc', 0.0038590566644571694) +zone = ('ksz103', 0.00017147023967589977) + +[fips2010301100] +centroid = (0.68536220876502563, -1.6602598622169011) +description = Alexandria township, KS +station = ('klwc', 0.0045615595386019198) +zone = ('ksz103', 0.0016934062715572979) + +[fips2010307975] +centroid = (0.68228247058012648, -1.6565848271307317) +description = Bonner Springs city, KS +station = ('kmci', 0.0043874970985547518) +zone = ('ksz103', 0.0025032666212305935) + +[fips2010317450] +centroid = (0.68527195778940486, -1.6556770290268918) +description = Delaware township, KS +station = ('kmci', 0.0018697167321867429) +zone = ('moz028', 0.0023773548160802177) + +[fips2010319625] +centroid = (0.68714532439532561, -1.6603031463823503) +description = Easton township, KS +station = ('kmci', 0.005472824704694298) +zone = ('ksz103', 0.0032286861497577515) + +[fips2010322325] +centroid = (0.68300688693945921, -1.6570609529506759) +description = Fairmount township, KS +station = ('kmci', 0.0040572001911815059) +zone = ('ksz103', 0.0017278506730048747) + +[fips2010332125] +centroid = (0.68515790052278713, -1.6583410123306734) +description = High Prairie township, KS +station = ('kmci', 0.0038923179708139585) +zone = ('ksz103', 0.0010441472883049138) + +[fips2010336700] +centroid = (0.68709409898177953, -1.6581741763074753) +description = Kickapoo township, KS +station = ('kmci', 0.0038702073138928033) +zone = ('ksz103', 0.0029679499343171281) + +[fips2010338650] +centroid = (0.68491840644282842, -1.6562805289756466) +description = Lansing city, KS +station = ('kmci', 0.002436230438414753) +zone = ('ksz103', 0.0020406248770544026) + +[fips2010339000] +centroid = (0.68631088247994698, -1.6567540193484203) +description = Leavenworth city, KS +station = ('kmci', 0.0026186066237750736) +zone = ('moz028', 0.0022780243774546613) + +[fips2010358950] +centroid = (0.6810314011190044, -1.6602627245568744) +description = Reno township, KS +station = ('klwc', 0.0012303908551756957) +zone = ('ksz040', 0.0032725371782824178) + +[fips2010365000] +centroid = (0.68092977059666071, -1.6578345352350374) +description = Sherman township, KS +station = ('kixd', 0.0037268205844620552) +zone = ('ksz105', 0.0031919895247483538) + +[fips2010368500] +centroid = (0.68287097815060638, -1.6584533417213319) +description = Stranger township, KS +station = ('klwc', 0.0032476464700374945) +zone = ('ksz103', 0.001302917005825672) + +[fips2010370825] +centroid = (0.68306254548930523, -1.6605304406108377) +description = Tonganoxie township, KS +station = ('klwc', 0.0023285302066709691) +zone = ('ksz103', 0.0017771885423579238) + +[fips2010375] +centroid = (0.64600871677727512, -1.6743280537460163) +description = Caney city, KS +station = ('kidp', 0.0032792207076174041) +zone = ('ksz099', 0.0040836231920594974) + +[fips2010475] +centroid = (0.66996102201969965, -1.7004749883497761) +description = Canton city, KS +station = ('kewk', 0.006198750682056494) +zone = ('ksz051', 0.0029833626016593558) + +[fips20105] +centroid = (0.68150353013496134, -1.7141622966762287) +description = Lincoln County, KS +station = ('krsl', 0.0087624065309116882) +zone = ('ksz033', 9.3549291817320967e-05) + +[fips2010504525] +centroid = (0.68362366884382153, -1.7142472593042157) +description = Battle Creek township, KS +station = ('kcnk', 0.010171933261162509) +zone = ('ksz033', 0.0021583453460493375) + +[fips2010505075] +centroid = (0.68216631891840618, -1.712294305684404) +description = Beaver township, KS +station = ('ksln', 0.0081425557352962242) +zone = ('ksz033', 0.0015299854487371165) + +[fips2010511500] +centroid = (0.68374346824367838, -1.7179904494976752) +description = Cedron township, KS +station = ('krsl', 0.0074870137082188194) +zone = ('ksz033', 0.0038099895079513955) + +[fips2010515000] +centroid = (0.68063306462382178, -1.7099869978665601) +description = Colorado township, KS +station = ('ksln', 0.0057841411586456726) +zone = ('ksz033', 0.0032654545096965316) + +[fips2010520375] +centroid = (0.68073481731921293, -1.7120465387437911) +description = Elkhorn township, KS +station = ('ksln', 0.0071379462879069119) +zone = ('ksz033', 0.0017213003478686764) + +[fips2010524425] +centroid = (0.67881694481736654, -1.7120163270944389) +description = Franklin township, KS +station = ('ksln', 0.0062992302455826387) +zone = ('ksz033', 0.0030889433767371578) + +[fips2010526800] +centroid = (0.67932539413505744, -1.715757178546701) +description = Golden Belt township, KS +station = ('krsl', 0.0070096911190328653) +zone = ('ksz033', 0.0025228608510427433) + +[fips2010527750] +centroid = (0.6821048658754435, -1.7162524157219543) +description = Grant township, KS +station = ('krsl', 0.0075483060023769357) +zone = ('ksz033', 0.0018242230625640946) + +[fips2010529850] +centroid = (0.68235184741789323, -1.7177485468633489) +description = Hanover township, KS +station = ('krsl', 0.0067085562158855526) +zone = ('ksz033', 0.0030039681812410483) + +[fips2010531950] +centroid = (0.67907246101985852, -1.7178058809292771) +description = Highland township, KS +station = ('krsl', 0.0053961262801950054) +zone = ('ksz033', 0.0037788626105402933) + +[fips2010534025] +centroid = (0.68082679617079311, -1.7138758008795139) +description = Indiana township, KS +station = ('krsl', 0.0087579924909703885) +zone = ('ksz033', 0.00065797060513860851) + +[fips2010541925] +centroid = (0.6820839917375896, -1.7101949189403503) +description = Logan township, KS +station = ('ksln', 0.0069162251229027997) +zone = ('ksz033', 0.0030550466700900863) + +[fips2010544100] +centroid = (0.6792767692620969, -1.7099945376889287) +description = Madison township, KS +station = ('ksln', 0.0050233774062416799) +zone = ('ksz033', 0.0038404537696131624) + +[fips2010544725] +centroid = (0.68227311561533566, -1.7140009933467593) +description = Marion township, KS +station = ('krsl', 0.0091786493936615483) +zone = ('ksz033', 0.00080320982051164944) + +[fips2010552950] +centroid = (0.68389007590084594, -1.7159057584259234) +description = Orange township, KS +station = ('krsl', 0.0087807071276233967) +zone = ('ksz033', 0.0028155525363749768) + +[fips2010556275] +centroid = (0.68067723890718967, -1.7180797230889149) +description = Pleasant township, KS +station = ('krsl', 0.0056337903948589308) +zone = ('ksz033', 0.003230091133687274) + +[fips2010562800] +centroid = (0.6838628138579298, -1.7101415642251168) +description = Salt Creek township, KS +station = ('kcnk', 0.0078544515230565878) +zone = ('ksz033', 0.0038620543069657373) + +[fips2010563525] +centroid = (0.6837359284213097, -1.7121375227576974) +description = Scott township, KS +station = ('kcnk', 0.0089223344883500848) +zone = ('ksz033', 0.0027077184310073279) + +[fips2010572900] +centroid = (0.6790841721791393, -1.7141719308936996) +description = Valley township, KS +station = ('krsl', 0.0082090511524124683) +zone = ('ksz033', 0.0023885138535358189) + +[fips2010573650] +centroid = (0.6807381683513769, -1.7159433004581337) +description = Vesper township, KS +station = ('krsl', 0.0072000825428409207) +zone = ('ksz033', 0.0016435937202939771) + +[fips2010600] +centroid = (0.67756812683097944, -1.6701606089179819) +description = Carbondale city, KS +station = ('kfoe', 0.0020331130661720366) +zone = ('ksz055', 0.0029919653705755321) + +[fips2010675] +centroid = (0.67520887801459617, -1.6980854755241632) +description = Carlton city, KS +station = ('ksln', 0.0051434304857207796) +zone = ('ksz035', 0.0036737787309256945) + +[fips20107] +centroid = (0.66700460879974643, -1.6553563422301305) +description = Linn County, KS +station = ('kixd', 0.010487148419066901) +zone = ('ksz060', 7.9221333662061433e-05) + +[fips2010707625] +centroid = (0.66488576163453283, -1.6581613132308881) +description = Blue Mound township, KS +station = ('kcnu', 0.0099613622559095762) +zone = ('ksz060', 0.0030281490430966707) + +[fips2010712350] +centroid = (0.6669776260095106, -1.6578051787970187) +description = Centerville township, KS +station = ('kixd', 0.010592822086206287) +zone = ('ksz060', 0.0019525093027374825) + +[fips2010740200] +centroid = (0.66901461723280564, -1.6578971576485988) +description = Liberty township, KS +station = ('kixd', 0.0085894296310564285) +zone = ('ksz060', 0.0029042373742781506) + +[fips2010740825] +centroid = (0.66917222046426084, -1.6526234707807728) +description = Lincoln township, KS +station = ('kojc', 0.0086191804834710919) +zone = ('ksz060', 0.0030837524244145135) + +[fips2010748775] +centroid = (0.66526128667639195, -1.6553667618457648) +description = Mound City township, KS +station = ('kpts', 0.011744101043892514) +zone = ('ksz060', 0.0016695529056046216) + +[fips2010754375] +centroid = (0.66680061471677332, -1.65506703645332) +description = Paris township, KS +station = ('kixd', 0.010704387329344174) +zone = ('ksz060', 0.00023799371405408537) + +[fips2010757175] +centroid = (0.66629289843736816, -1.6526034867608375) +description = Potosi township, KS +station = ('kojc', 0.011493907571634668) +zone = ('ksz060', 0.0022287871056230384) + +[fips2010763550] +centroid = (0.66887668386202059, -1.6554209892256244) +description = Scott township, KS +station = ('kixd', 0.0086149745152213075) +zone = ('ksz060', 0.0019478206189035036) + +[fips2010764700] +centroid = (0.66466590250865909, -1.6524804235952792) +description = Sheridan township, KS +station = ('kpts', 0.011061496973664837) +zone = ('ksz060', 0.0031808856060952235) + +[fips2010767875] +centroid = (0.66425918843306675, -1.6551444418056458) +description = Stanton township, KS +station = ('kpts', 0.010727570464283357) +zone = ('ksz060', 0.0026748636569853793) + +[fips2010772925] +centroid = (0.66780595927250708, -1.6526752721529718) +description = Valley township, KS +station = ('kojc', 0.0099800586581035976) +zone = ('ksz060', 0.0022549047043932333) + +[fips20109] +centroid = (0.67916468421753384, -1.7655298149299596) +description = Logan County, KS +station = ('kcbk', 0.0091349826317849887) +zone = ('ksz028', 0.00013992080081185159) + +[fips2010903350] +centroid = (0.67621956327784105, -1.7692878578753537) +description = Augustine township, KS +station = ('kgld', 0.011729370895382065) +zone = ('ksz028', 0.0042880081833641132) + +[fips2010920225] +centroid = (0.67870691926132076, -1.7606992497059222) +description = Elkader township, KS +station = ('kcbk', 0.0097496487804624131) +zone = ('ksz028', 0.0036763864909169939) + +[fips2010925] +centroid = (0.66391237405740311, -1.6866409676464009) +description = Cassoday city, KS +station = ('kemp', 0.0078948216685046143) +zone = ('ksz053', 0.004622173808064808) + +[fips2010939200] +centroid = (0.67618881057642088, -1.7615459612859423) +description = Lees township, KS +station = ('kcbk', 0.012105727974375081) +zone = ('ksz028', 0.0042630774327687389) + +[fips2010942325] +centroid = (0.67808933450550257, -1.7639779554255488) +description = Logansport township, KS +station = ('kcbk', 0.010097092856844703) +zone = ('ksz028', 0.0015792781679313868) + +[fips2010943600] +centroid = (0.68147787379495706, -1.7698324355085611) +description = McAllaster township, KS +station = ('kgld', 0.0068842969423720292) +zone = ('ksz028', 0.0041279432331346681) + +[fips2010948050] +centroid = (0.6814942100767557, -1.7638860987470164) +description = Monument township, KS +station = ('kcbk', 0.0066915039641411433) +zone = ('ksz028', 0.0025381736334731957) + +[fips2010951850] +centroid = (0.68125188856340879, -1.7607776498959218) +description = Oakley township, KS +station = ('kcbk', 0.0072809998141532932) +zone = ('ksz028', 0.0041034309502747902) + +[fips2010955025] +centroid = (0.67621417021045238, -1.7654172586464985) +description = Paxton township, KS +station = ('kcbk', 0.01204703829688689) +zone = ('ksz028', 0.0030210356268175064) + +[fips2010961900] +centroid = (0.67841508275709472, -1.7673412223474345) +description = Russell Springs township, KS +station = ('kcbk', 0.010177880631006555) +zone = ('ksz028', 0.0017365897365502561) + +[fips2010976900] +centroid = (0.6785069743422123, -1.7697442963813352) +description = Western township, KS +station = ('kgld', 0.0094913597270766953) +zone = ('ksz028', 0.0034780953933075723) + +[fips2010980100] +centroid = (0.68152241459746798, -1.7667962956483769) +description = Winona township, KS +station = ('kcbk', 0.0070912770175067955) +zone = ('ksz028', 0.0025404531318299686) + +[fips2011025] +centroid = (0.67946027317965152, -1.7316171250859138) +description = Catharine CDP, KS +station = ('khys', 0.0015699226294277292) +zone = ('ksz031', 0.0014235015744338846) + +[fips20111] +centroid = (0.67117505559409429, -1.6783363419995616) +description = Lyon County, KS +station = ('kemp', 0.0021959614625174451) +zone = ('ksz054', 0.00012229365296655985) + +[fips2011100525] +centroid = (0.67505471308176745, -1.6797337573184632) +description = Agnes City township, KS +station = ('kemp', 0.0060386928347603182) +zone = ('ksz054', 0.0040517780051133878) + +[fips2011101700] +centroid = (0.67244092544727341, -1.6804731311494856) +description = Americus township, KS +station = ('kemp', 0.0035869556671726992) +zone = ('ksz054', 0.0021875067488873463) + +[fips2011111800] +centroid = (0.66763465520642384, -1.6796747128298681) +description = Center township, KS +station = ('kemp', 0.0015026459584656332) +zone = ('ksz054', 0.0037423834619247998) + +[fips2011120687] +centroid = (0.66763980392771727, -1.6761447495111246) +description = Elmendaro township, KS +station = ('kemp', 0.0026484318736870313) +zone = ('ksz054', 0.0038919691670424241) + +[fips2011121275] +centroid = (0.6702428926938967, -1.6788582478057852) +description = Emporia city, KS +station = ('kemp', 0.0012056472639166646) +zone = ('ksz054', 0.0010846780731241961) + +[fips2011121300] +centroid = (0.66967035488607241, -1.6784234164759435) +description = Emporia township, KS +station = ('kemp', 0.00077652417089271372) +zone = ('ksz054', 0.0015305112348849318) + +[fips2011124750] +centroid = (0.67219136081753061, -1.6783260445569748) +description = Fremont township, KS +station = ('kemp', 0.0031933246287861278) +zone = ('ksz054', 0.0010087000516412143) + +[fips2011134700] +centroid = (0.67443117675320008, -1.6769039153758647) +description = Ivy township, KS +station = ('kemp', 0.0056340871050431854) +zone = ('ksz054', 0.003392524812949561) + +[fips2011134825] +centroid = (0.67016672652533971, -1.6758931777527424) +description = Jackson township, KS +station = ('kemp', 0.0026875060894365581) +zone = ('ksz054', 0.0020634880261231939) + +[fips2011155825] +centroid = (0.66995419778232435, -1.6807243538420176) +description = Pike township, KS +station = ('kemp', 0.0016261827803784586) +zone = ('ksz054', 0.002344104753417221) + +[fips2011158625] +centroid = (0.67260505621013089, -1.6758003611431214) +description = Reading township, KS +station = ('kemp', 0.0043585723743800892) +zone = ('ksz054', 0.0023403239122362085) + +[fips2011175] +centroid = (0.68957204764059099, -1.7179808501867895) +description = Cawker City city, KS +station = ('kcnk', 0.010558787089472102) +zone = ('ksz019', 0.0036324412364791394) + +[fips2011175925] +centroid = (0.67523837407895482, -1.6756635098764725) +description = Waterloo township, KS +station = ('kfoe', 0.0064847837670104136) +zone = ('ksz055', 0.0038874151987140569) + +[fips20113] +centroid = (0.67013333837674904, -1.704270189354945) +description = McPherson County, KS +station = ('khut', 0.0064831016897478238) +zone = ('ksz051', 7.3844850899930085e-05) + +[fips2011304550] +centroid = (0.67166601671268045, -1.700349010484367) +description = Battle Hill township, KS +station = ('ksln', 0.0060790499910330174) +zone = ('ksz051', 0.0034722206484778095) + +[fips2011307925] +centroid = (0.67300351487836108, -1.70218076844092) +description = Bonaville township, KS +station = ('ksln', 0.004234625086282022) +zone = ('ksz051', 0.0033710314368831087) + +[fips2011310500] +centroid = (0.67023259525130996, -1.7002916066052691) +description = Canton township, KS +station = ('kewk', 0.0064127372054666905) +zone = ('ksz051', 0.0031298991755106245) + +[fips2011310950] +centroid = (0.67011382559571175, -1.708111397239197) +description = Castle township, KS +station = ('khut', 0.0057251705173149365) +zone = ('ksz051', 0.0030041093805223597) + +[fips2011317575] +centroid = (0.6716762967019746, -1.7024099476249994) +description = Delmore township, KS +station = ('ksln', 0.0054283093617333049) +zone = ('ksz051', 0.0021809424174966899) + +[fips2011321200] +centroid = (0.67005739910099471, -1.7023521074135886) +description = Empire township, KS +station = ('kewk', 0.0069044617971798306) +zone = ('ksz051', 0.0015103565179921646) + +[fips2011325] +centroid = (0.69214731585849365, -1.7268314148236525) +description = Cedar city, KS +station = ('khlc', 0.013051412502817) +zone = ('ksz006', 0.0030495163411828202) + +[fips2011329150] +centroid = (0.66839739899613038, -1.7060876530649245) +description = Groveland township, KS +station = ('khut', 0.0043082516886711183) +zone = ('ksz051', 0.0021853234999386459) + +[fips2011329325] +centroid = (0.67318904337784824, -1.7000448519556219) +description = Gypsum Creek township, KS +station = ('ksln', 0.0049855554670924698) +zone = ('ksz051', 0.0045583680979389384) + +[fips2011330225] +centroid = (0.67165634758862436, -1.7063183855920381) +description = Harper township, KS +station = ('ksln', 0.0054694137626938311) +zone = ('ksz051', 0.0022584034018281701) + +[fips2011330950] +centroid = (0.66853391865022149, -1.7081468623295974) +description = Hayes township, KS +station = ('khut', 0.0041454461770761546) +zone = ('ksz051', 0.0033954966024242438) + +[fips2011334850] +centroid = (0.67015911688980101, -1.7061886727220299) +description = Jackson township, KS +station = ('khut', 0.0059616867881027054) +zone = ('ksz051', 0.0014999183740312229) + +[fips2011336900] +centroid = (0.66850644716779506, -1.7042531898480306) +description = King City township, KS +station = ('khut', 0.0051066245953809977) +zone = ('ksz051', 0.0015535109278948284) + +[fips2011341375] +centroid = (0.6732978122968325, -1.7047448316450251) +description = Lindsborg city, KS +station = ('ksln', 0.0036147286914366954) +zone = ('ksz051', 0.003258444937759408) + +[fips2011341600] +centroid = (0.66696703186095097, -1.7081003667583243) +description = Little Valley township, KS +station = ('khut', 0.002578366038562738) +zone = ('ksz051', 0.0043078538651030677) + +[fips2011342525] +centroid = (0.66853737440214034, -1.7023519677872483) +description = Lone Tree township, KS +station = ('kewk', 0.00564609240256811) +zone = ('ksz051', 0.0021452514371186593) + +[fips2011343950] +centroid = (0.66971323762579393, -1.7044977628361127) +description = McPherson city, KS +station = ('khut', 0.0060283244326502861) +zone = ('ksz051', 0.00038665419199011928) + +[fips2011343975] +centroid = (0.67018042735996786, -1.7041157800760214) +description = McPherson township, KS +station = ('khut', 0.0065815747596245939) +zone = ('ksz051', 0.00017587180727355911) + +[fips2011344950] +centroid = (0.67316438187551741, -1.7079219941087707) +description = Marquette township, KS +station = ('ksln', 0.004676024501862627) +zone = ('ksz051', 0.0042155155650321309) + +[fips2011345975] +centroid = (0.66701649449195255, -1.7004188236544469) +description = Meridian township, KS +station = ('kewk', 0.0035212506776307524) +zone = ('ksz068', 0.0030374068628892317) + +[fips2011348675] +centroid = (0.66695889862663671, -1.7022495693200339) +description = Mound township, KS +station = ('kewk', 0.0044512578395180845) +zone = ('ksz068', 0.003306107077902614) + +[fips2011350350] +centroid = (0.67150766298964693, -1.7041207891709746) +description = New Gottland township, KS +station = ('ksln', 0.0053913121438043787) +zone = ('ksz051', 0.0014531395823874904) + +[fips2011366025] +centroid = (0.67306643399789556, -1.704248564725513) +description = Smoky Hill township, KS +station = ('ksln', 0.00383076837386796) +zone = ('ksz051', 0.0030067039657384778) + +[fips2011367000] +centroid = (0.67172249556727481, -1.7082004962975113) +description = South Sharps Creek township, KS +station = ('ksln', 0.0059992133689626814) +zone = ('ksz051', 0.003492643825298646) + +[fips2011367750] +centroid = (0.668653368984228, -1.7004391741935252) +description = Spring Valley township, KS +station = ('kewk', 0.0049690986412120877) +zone = ('ksz051', 0.0033236095796569574) + +[fips2011369475] +centroid = (0.66690653874907679, -1.7060760640786912) +description = Superior township, KS +station = ('khut', 0.0029770088645452268) +zone = ('ksz051', 0.00345424797840104) + +[fips2011371700] +centroid = (0.6670189728594903, -1.7042624051864812) +description = Turkey Creek township, KS +station = ('khut', 0.0040008691645213538) +zone = ('ksz051', 0.0030408804972326146) + +[fips2011372225] +centroid = (0.67326332459081306, -1.7060775301552629) +description = Union township, KS +station = ('ksln', 0.0038856002387140328) +zone = ('ksz051', 0.0034991801199013655) + +[fips2011425] +centroid = (0.66776122648377856, -1.6898454968728176) +description = Cedar Point city, KS +station = ('kewk', 0.0073266248496593146) +zone = ('ksz053', 0.0031958413224881413) + +[fips2011450] +centroid = (0.64761489092800795, -1.6842735681424108) +description = Cedar Vale city, KS +station = ('kwld', 0.0074725093417205351) +zone = ('ksz098', 0.0036523604311506173) + +[fips20115] +centroid = (0.66950214005276532, -1.6947630667600668) +description = Marion County, KS +station = ('kewk', 0.0059447095198641659) +zone = ('ksz052', 8.1697591854199467e-05) + +[fips2011507125] +centroid = (0.6729419745689359, -1.6965213987149883) +description = Blaine township, KS +station = ('ksln', 0.0072565624008711959) +zone = ('ksz052', 0.0037493473857216604) + +[fips2011511075] +centroid = (0.66691568427435732, -1.6944592223905872) +description = Catlin township, KS +station = ('kewk', 0.0039150512200197074) +zone = ('ksz052', 0.0025765260559526995) + +[fips2011512437] +centroid = (0.66943468307717569, -1.6928568181510384) +description = Centre township, KS +station = ('kewk', 0.0066542130159554201) +zone = ('ksz052', 0.0014154259980789629) + +[fips2011513500] +centroid = (0.67146188300336718, -1.6945806100400631) +description = Clark township, KS +station = ('kewk', 0.0078155296448165299) +zone = ('ksz052', 0.001975520285954168) + +[fips2011513750] +centroid = (0.6714330850707092, -1.6919703479706583) +description = Clear Creek township, KS +station = ('kewk', 0.0086942938771434278) +zone = ('ksz052', 0.0028686454113312177) + +[fips2011514800] +centroid = (0.67297173243268227, -1.6944832032145094) +description = Colfax township, KS +station = ('kewk', 0.0092734625325593227) +zone = ('ksz052', 0.0034871431699169671) + +[fips2011518550] +centroid = (0.66698589887016502, -1.6908442615372714) +description = Doyle township, KS +station = ('kewk', 0.0062665159059673761) +zone = ('ksz052', 0.0039026026619997773) + +[fips2011519100] +centroid = (0.67171883037584579, -1.6964926356889156) +description = Durham Park township, KS +station = ('kewk', 0.0077023722471377476) +zone = ('ksz052', 0.0026532184257144586) + +[fips2011519325] +centroid = (0.66700490550571923, -1.6966683030781289) +description = East Branch township, KS +station = ('kewk', 0.0030679282222479268) +zone = ('ksz052', 0.0029403941083185055) + +[fips2011522350] +centroid = (0.66738840670226007, -1.6929147979887897) +description = Fairplay township, KS +station = ('kewk', 0.0051272869605177565) +zone = ('ksz052', 0.0025065378646783394) + +[fips2011523600] +centroid = (0.66746757483713037, -1.6917328959259241) +description = Florence city, KS +station = ('kewk', 0.0059151194368453099) +zone = ('ksz052', 0.0030591347500609732) + +[fips2011525075] +centroid = (0.67008413754513529, -1.6946056031549519) +description = Gale township, KS +station = ('kewk', 0.0065264058753711131) +zone = ('ksz052', 0.00059833576360421824) + +[fips2011527775] +centroid = (0.66958902254292951, -1.6909569399937803) +description = Grant township, KS +station = ('kewk', 0.0077487037066493432) +zone = ('ksz052', 0.0029058479411675211) + +[fips2011532275] +centroid = (0.66938021135122094, -1.6964467160762955) +description = Hillsboro city, KS +station = ('kewk', 0.0054068901311323551) +zone = ('ksz052', 0.0014047176600799399) + +[fips2011539250] +centroid = (0.66995168450820153, -1.6983318811079597) +description = Lehigh township, KS +station = ('kewk', 0.0058630827132076469) +zone = ('ksz052', 0.0029154819873761406) + +[fips2011540225] +centroid = (0.66851653517087162, -1.696557945909525) +description = Liberty township, KS +station = ('kewk', 0.0045456082141833633) +zone = ('ksz052', 0.0017769923157911153) + +[fips2011541950] +centroid = (0.67302194555526229, -1.6984994850760287) +description = Logan township, KS +station = ('ksln', 0.0059684808296373787) +zone = ('ksz052', 0.0046399757574087869) + +[fips2011542850] +centroid = (0.6729863408385216, -1.6925758550480525) +description = Lost Springs township, KS +station = ('kfri', 0.0091345259573466283) +zone = ('ksz052', 0.0038610645598949602) + +[fips2011544750] +centroid = (0.66939162580452904, -1.6931051086904274) +description = Marion city, KS +station = ('kewk', 0.0065044952340463777) +zone = ('ksz052', 0.0012235186575714377) + +[fips2011545800] +centroid = (0.66859205556760526, -1.6986245553702266) +description = Menno township, KS +station = ('kewk', 0.0045288054279862232) +zone = ('ksz052', 0.0032357243516346339) + +[fips2011546900] +centroid = (0.66535516793685667, -1.6909949009050109) +description = Milton township, KS +station = ('kewk', 0.0055895533159305618) +zone = ('ksz052', 0.0050362928712259078) + +[fips2011548100] +centroid = (0.67160964257784095, -1.6984862205737135) +description = Moore township, KS +station = ('ksln', 0.0069771008712537653) +zone = ('ksz052', 0.0036725877533099619) + +[fips2011555125] +centroid = (0.66538949856324336, -1.6945257543416732) +description = Peabody township, KS +station = ('kewk', 0.0029635046934009847) +zone = ('ksz052', 0.0040992268955718208) + +[fips2011560000] +centroid = (0.67009801291268867, -1.6965739156721809) +description = Risley township, KS +station = ('kewk', 0.00609195766023609) +zone = ('ksz052', 0.0016194867433563462) + +[fips2011569100] +centroid = (0.66533818588323479, -1.6928860873225944) +description = Summit township, KS +station = ('kewk', 0.0041476189153868848) +zone = ('ksz052', 0.0043770016415524892) + +[fips2011576775] +centroid = (0.66689564789454447, -1.6984915263746396) +description = West Branch township, KS +station = ('kewk', 0.0028344490316820634) +zone = ('ksz068', 0.003290737017944639) + +[fips2011579750] +centroid = (0.66845763030861682, -1.6948119359791225) +description = Wilson township, KS +station = ('kewk', 0.0049956921853217921) +zone = ('ksz052', 0.0010365477703526036) + +[fips20117] +centroid = (0.6943392574127808, -1.6846134884675292) +description = Marshall County, KS +station = ('kbie', 0.0095318066047431829) +zone = ('ksz010', 2.7124689773230619e-05) + +[fips2011703850] +centroid = (0.69733813449343507, -1.6847044201215582) +description = Balderson township, KS +station = ('kbie', 0.0067271972746627447) +zone = ('ksz010', 0.0029837058225924101) + +[fips2011706725] +centroid = (0.69129568244998307, -1.6847769734585634) +description = Bigelow township, KS +station = ('kmhk', 0.0085424176367135205) +zone = ('ksz010', 0.0030608775695397075) + +[fips2011707675] +centroid = (0.69133983928005849, -1.6865947687811005) +description = Blue Rapids township, KS +station = ('kmhk', 0.0083600496529304992) +zone = ('ksz010', 0.0033684794429511126) + +[fips2011707700] +centroid = (0.69290016363134144, -1.6866444757581973) +description = Blue Rapids City township, KS +station = ('kmhk', 0.0099138372040495307) +zone = ('ksz010', 0.0021179957816452634) + +[fips2011711850] +centroid = (0.6943392574127808, -1.6846134884675292) +description = Center township, KS +station = ('kbie', 0.0095318066047431829) +zone = ('ksz010', 2.7124689773230619e-05) + +[fips2011713875] +centroid = (0.69119509912519062, -1.6824732610189785) +description = Clear Fork township, KS +station = ('kmhk', 0.0090458498449631636) +zone = ('ksz010', 0.0035734685652639656) + +[fips2011714100] +centroid = (0.69130723652963122, -1.6806190232216598) +description = Cleveland township, KS +station = ('kmhk', 0.0098357879173745638) +zone = ('ksz023', 0.0040704025458170728) + +[fips2011715850] +centroid = (0.69119876431661986, -1.6887708278391946) +description = Cottage Hill township, KS +station = ('kmhk', 0.0082573535384329565) +zone = ('ksz010', 0.0044779589582788172) + +[fips2011720600] +centroid = (0.69434892653683689, -1.6867424585424045) +description = Elm Creek township, KS +station = ('kbie', 0.0091309126990315251) +zone = ('ksz010', 0.0016138330463468784) + +[fips2011724450] +centroid = (0.69588279169665956, -1.6846614675686666) +description = Franklin township, KS +station = ('kbie', 0.0080704077902247311) +zone = ('ksz010', 0.0015280535035108783) + +[fips2011729225] +centroid = (0.69594438436596251, -1.6825585552595235) +description = Guittard township, KS +station = ('kbie', 0.0087470936663762034) +zone = ('ksz010', 0.0022556035244309311) + +[fips2011731450] +centroid = (0.69728755485171223, -1.6885183310563086) +description = Herkimer township, KS +station = ('kbie', 0.0060805036520291122) +zone = ('ksz010', 0.0041774242697081377) + +[fips2011740850] +centroid = (0.69433372471905197, -1.6806433356581401) +description = Lincoln township, KS +station = ('kfnb', 0.010862151874098244) +zone = ('ksz011', 0.0037510947392754616) + +[fips2011741975] +centroid = (0.69600906626804138, -1.6884420950745815) +description = Logan township, KS +station = ('kbie', 0.0073596912500980185) +zone = ('ksz010', 0.0033542241246943992) + +[fips2011745050] +centroid = (0.69538579173886172, -1.6866532198577497) +description = Marysville city, KS +station = ('kbie', 0.0081205816246499602) +zone = ('ksz010', 0.0018570533742420746) + +[fips2011745075] +centroid = (0.69600803652378274, -1.6864975190351794) +description = Marysville township, KS +station = ('kbie', 0.0075343607354776757) +zone = ('ksz010', 0.0021823547932787821) + +[fips2011749275] +centroid = (0.69576454563983703, -1.6804945812459926) +description = Murray township, KS +station = ('kbie', 0.0098145194920347019) +zone = ('ksz010', 0.0034835854565168681) + +[fips2011750850] +centroid = (0.6929524711490237, -1.6805396456472792) +description = Noble township, KS +station = ('kmhk', 0.011286210157551466) +zone = ('ksz011', 0.0039314182320267753) + +[fips2011752550] +centroid = (0.69733576084565241, -1.6865782579663766) +description = Oketo township, KS +station = ('kbie', 0.0062280112512515104) +zone = ('ksz010', 0.0033307113893257423) + +[fips2011759450] +centroid = (0.69737867849195878, -1.6826036894739802) +description = Richland township, KS +station = ('kbie', 0.0075452474519315162) +zone = ('ksz010', 0.0034047192842682336) + +[fips2011760425] +centroid = (0.69431567801458638, -1.6825588694187887) +description = Rock township, KS +station = ('kbie', 0.010167205262166266) +zone = ('ksz010', 0.0016016345283025504) + +[fips2011762100] +centroid = (0.69725552805993818, -1.680379721127919) +description = St. Bridget township, KS +station = ('kbie', 0.0087706642545906897) +zone = ('nez092', 0.0032180609692762335) + +[fips2011773550] +centroid = (0.69283743649802476, -1.682593147685298) +description = Vermillion township, KS +station = ('kmhk', 0.010521513107328529) +zone = ('ksz010', 0.0021875804034554081) + +[fips2011775025] +centroid = (0.69448391030118606, -1.6885341437393317) +description = Walnut township, KS +station = ('kbie', 0.0088839487967668704) +zone = ('ksz010', 0.0029932928048663266) + +[fips2011775975] +centroid = (0.69289955276610327, -1.6885470591757963) +description = Waterville township, KS +station = ('kmhk', 0.0099307679005496436) +zone = ('ksz010', 0.0033365000064463301) + +[fips2011776525] +centroid = (0.69283357932037792, -1.6847582460756896) +description = Wells township, KS +station = ('kmhk', 0.010044465235396937) +zone = ('ksz010', 0.0015238345390470569) + +[fips20119] +centroid = (0.65002843693742085, -1.7516140779110061) +description = Meade County, KS +station = ('klbl', 0.0090917338683488697) +zone = ('ksz087', 0.00013056134523023452) + +[fips2011913325] +centroid = (0.64736393003486359, -1.754532111340708) +description = Cimarron township, KS +station = ('klbl', 0.0061609142472879999) +zone = ('ksz087', 0.0034059148360539603) + +[fips2011916450] +centroid = (0.65294943742685108, -1.7509968073144531) +description = Crooked Creek township, KS +station = ('kddc', 0.0079374076086733136) +zone = ('ksz087', 0.0030746009953825379) + +[fips2011924200] +centroid = (0.65274738065934768, -1.7485882354934084) +description = Fowler township, KS +station = ('kddc', 0.0070916698954038744) +zone = ('ksz087', 0.0037613613094898287) + +[fips2011942000] +centroid = (0.64965936961379411, -1.7483792497687747) +description = Logan township, KS +station = ('kddc', 0.0099209745178309595) +zone = ('ksz087', 0.002674096462247158) + +[fips2011945350] +centroid = (0.65002843693742085, -1.7516140779110061) +description = Meade Center township, KS +station = ('klbl', 0.0090917338683488697) +zone = ('ksz087', 0.00013056134523023452) + +[fips2011946025] +centroid = (0.65266648464851773, -1.7541283817781366) +description = Mertilla township, KS +station = ('klbl', 0.0088081173617907856) +zone = ('ksz087', 0.0033405752800342117) + +[fips2011952075] +centroid = (0.64706293055206465, -1.751902790275871) +description = Odee township, KS +station = ('klbl', 0.0082282543494213763) +zone = ('ksz087', 0.0028699406860120229) + +[fips2011962925] +centroid = (0.64695472013844102, -1.7485562959680969) +description = Sand Creek township, KS +station = ('kddc', 0.012567461188268337) +zone = ('ksz087', 0.0038997867842119854) + +[fips2011977300] +centroid = (0.6501603314689941, -1.754675786844732) +description = West Plains township, KS +station = ('klbl', 0.0069522945815467512) +zone = ('ksz087', 0.0023637854233037954) + +[fips20121] +centroid = (0.67311715326595856, -1.6551474437719593) +description = Miami County, KS +station = ('kixd', 0.004415131559501434) +zone = ('ksz057', 8.9327442822974924e-05) + +[fips2012142875] +centroid = (0.67386893638796252, -1.6526811888191364) +description = Louisburg city, KS +station = ('kojc', 0.0039416572451926772) +zone = ('ksz057', 0.0021547518919242388) + +[fips2012145100] +centroid = (0.67490053069564626, -1.6556080012549756) +description = Marysville township, KS +station = ('kixd', 0.0025986957198805539) +zone = ('ksz057', 0.0018614365864831146) + +[fips2012146100] +centroid = (0.67117072717754944, -1.6535750766488377) +description = Miami township, KS +station = ('kixd', 0.0065921675423211085) +zone = ('ksz057', 0.0022951114805707666) + +[fips2012146225] +centroid = (0.67318443570862296, -1.6529801637200028) +description = Middle Creek township, KS +station = ('kojc', 0.0045972639982265586) +zone = ('ksz057', 0.0017689074973637278) + +[fips2012148700] +centroid = (0.67070830219223354, -1.6580680777422467) +description = Mound township, KS +station = ('kixd', 0.0069556709853604301) +zone = ('ksz057', 0.0032323467244064854) + +[fips2012153175] +centroid = (0.67099584518649957, -1.6557682050270162) +description = Osage township, KS +station = ('kixd', 0.0064859338685764904) +zone = ('ksz057', 0.0021073381680989361) + +[fips2012153225] +centroid = (0.67195335026743619, -1.6571030851988191) +description = Osawatomie city, KS +station = ('kixd', 0.0055888694656823336) +zone = ('ksz057', 0.0018328477741007744) + +[fips2012153250] +centroid = (0.67161538471108007, -1.6579815268646403) +description = Osawatomie township, KS +station = ('kixd', 0.0060587818749559654) +zone = ('ksz057', 0.0025888871689103915) + +[fips2012154250] +centroid = (0.6733220898267277, -1.6556614257833793) +description = Paola city, KS +station = ('kixd', 0.0041663060692192491) +zone = ('ksz057', 0.00042168068292153097) + +[fips2012154275] +centroid = (0.67353102319148395, -1.6563710242973624) +description = Paola township, KS +station = ('kixd', 0.0039567562244124197) +zone = ('ksz057', 0.0010029969188538265) + +[fips2012159475] +centroid = (0.67495987189021411, -1.6578370659624526) +description = Richland township, KS +station = ('kixd', 0.0028875877094805898) +zone = ('ksz057', 0.0027801723423800479) + +[fips2012167625] +centroid = (0.67597626438011305, -1.6551228171762138) +description = Spring Hill city, KS +station = ('kixd', 0.0016593898302997541) +zone = ('ksz105', 0.0026770303139708449) + +[fips2012167925] +centroid = (0.67316326486479627, -1.6580525443119039) +description = Stanton township, KS +station = ('kixd', 0.0045959649164680379) +zone = ('ksz057', 0.0022036899637399299) + +[fips2012168825] +centroid = (0.67115011483908327, -1.6519457070723458) +description = Sugar Creek township, KS +station = ('kojc', 0.0067172950218996504) +zone = ('ksz057', 0.0032074893745814765) + +[fips2012170125] +centroid = (0.67501746775552995, -1.6536782256076306) +description = Ten Mile township, KS +station = ('kojc', 0.0027600803478797825) +zone = ('ksz057', 0.0023039303813569582) + +[fips2012172950] +centroid = (0.67236669659418602, -1.655523963651492) +description = Valley township, KS +station = ('kixd', 0.0051269808441447035) +zone = ('ksz057', 0.0007304082902413843) + +[fips2012176225] +centroid = (0.67494421628682377, -1.6522127599011933) +description = Wea township, KS +station = ('kojc', 0.002975240962380314) +zone = ('ksz057', 0.0030211456493581543) + +[fips20123] +centroid = (0.68753800602373172, -1.7140418165979634) +description = Mitchell County, KS +station = ('kcnk', 0.007994689436817734) +zone = ('ksz019', 2.9231323480068583e-05) + +[fips2012302625] +centroid = (0.68819037519154225, -1.7101030099019401) +description = Asherville township, KS +station = ('kcnk', 0.0049346369198778398) +zone = ('ksz019', 0.0031394753514693563) + +[fips2012305775] +centroid = (0.68878891840522116, -1.7123135566660537) +description = Beloit city, KS +station = ('kcnk', 0.0063474096193638849) +zone = ('ksz019', 0.001847338182983221) + +[fips2012305800] +centroid = (0.68817718050239718, -1.7122501837609136) +description = Beloit township, KS +station = ('kcnk', 0.0064756022240185247) +zone = ('ksz019', 0.0015489296997668873) + +[fips2012307425] +centroid = (0.68665883131962457, -1.7121245026014777) +description = Bloomfield township, KS +station = ('kcnk', 0.0070398279484550231) +zone = ('ksz019', 0.001750658315409423) + +[fips2012307575] +centroid = (0.68515536979537173, -1.7161683432118859) +description = Blue Hill township, KS +station = ('krsl', 0.0094834067817292471) +zone = ('ksz019', 0.0028829971783824065) + +[fips2012310850] +centroid = (0.68819465124820967, -1.7179280888835018) +description = Carr Creek township, KS +station = ('kcnk', 0.01070819054663434) +zone = ('ksz019', 0.0030443156700368282) + +[fips2012311150] +centroid = (0.68979265725804306, -1.7178915416889651) +description = Cawker township, KS +station = ('kcnk', 0.010476081401548484) +zone = ('ksz019', 0.0037049024620378632) + +[fips2012311875] +centroid = (0.68691357957724575, -1.7139257522027058) +description = Center township, KS +station = ('kcnk', 0.0081516106014982801) +zone = ('ksz019', 0.0006402818361822913) + +[fips2012316875] +centroid = (0.68549520285402754, -1.7182819543893435) +description = Custer township, KS +station = ('krsl', 0.0086993476868329339) +zone = ('ksz019', 0.0038418302053533524) + +[fips2012321875] +centroid = (0.68512782849977527, -1.7100662707211858) +description = Eureka township, KS +station = ('kcnk', 0.0068162178177217769) +zone = ('ksz019', 0.003932980611821825) + +[fips2012326525] +centroid = (0.68994546083405517, -1.716177279297656) +description = Glen Elder township, KS +station = ('kcnk', 0.0091480111427541325) +zone = ('ksz019', 0.0028977216334916413) + +[fips2012330975] +centroid = (0.68654004421073389, -1.7159817151549701) +description = Hayes township, KS +station = ('kcnk', 0.0097572268893965537) +zone = ('ksz019', 0.0017802103543111544) + +[fips2012342025] +centroid = (0.68675068799815708, -1.7101072859586077) +description = Logan township, KS +station = ('kcnk', 0.0057058233744874624) +zone = ('ksz019', 0.0031709952998361032) + +[fips2012343225] +centroid = (0.68982375902531357, -1.710157883053623) +description = Lulu township, KS +station = ('kcnk', 0.004524686681788812) +zone = ('ksz019', 0.0037906143587984405) + +[fips2012356050] +centroid = (0.68675506877457959, -1.7180980141394757) +description = Pittsburg township, KS +station = ('krsl', 0.0098324980202588053) +zone = ('ksz019', 0.0032051326198149093) + +[fips2012356825] +centroid = (0.68974968725185892, -1.7120725441496458) +description = Plum Creek township, KS +station = ('kcnk', 0.0060015875257713605) +zone = ('ksz019', 0.0026964294345121556) + +[fips2012361500] +centroid = (0.68536716550010113, -1.7142129635844141) +description = Round Springs township, KS +station = ('kcnk', 0.0090956764896868991) +zone = ('ksz019', 0.0021780840980121959) + +[fips2012362825] +centroid = (0.68525984520439609, -1.7121398091390174) +description = Salt Creek township, KS +station = ('kcnk', 0.0078672783851437816) +zone = ('ksz019', 0.0027317042691523533) + +[fips2012366450] +centroid = (0.68970682196542998, -1.7139129414859962) +description = Solomon Rapids township, KS +station = ('kcnk', 0.0074195245392818738) +zone = ('ksz019', 0.002167834807559704) + +[fips2012371725] +centroid = (0.68818234667698297, -1.7139177236881467) +description = Turkey Creek township, KS +station = ('kcnk', 0.0077013831203253643) +zone = ('ksz019', 0.00065160283666009032) + +[fips2012375150] +centroid = (0.68817917017774433, -1.715940891903766) +description = Walnut Creek township, KS +station = ('kcnk', 0.0092131809379959739) +zone = ('ksz019', 0.0015728939773758798) + +[fips2012425] +centroid = (0.69332180027203816, -1.6778016778365055) +description = Centralia city, KS +station = ('kfnb', 0.0096436222264431014) +zone = ('ksz011', 0.0018767045830114426) + +[fips20125] +centroid = (0.64907986794225447, -1.6710201661212964) +description = Montgomery County, KS +station = ('kidp', 0.00078960717280620674) +zone = ('ksz099', 5.217373639334021e-05) + +[fips2012500] +centroid = (0.65745727381890207, -1.6661535423949132) +description = Chanute city, KS +station = ('kcnu', 0.00027761901256165289) +zone = ('ksz096', 0.002906148935822367) + +[fips2012510375] +centroid = (0.64600871677727512, -1.6743280537460163) +description = Caney city, KS +station = ('kidp', 0.0032792207076174041) +zone = ('ksz099', 0.0040836231920594974) + +[fips2012510400] +centroid = (0.64681415132048548, -1.673482371910255) +description = Caney township, KS +station = ('kidp', 0.0022310767324647041) +zone = ('ksz099', 0.0030327028929548077) + +[fips2012512850] +centroid = (0.64687944408780262, -1.6679114380175217) +description = Cherokee township, KS +station = ('kcfv', 0.00034840102817984488) +zone = ('ksz099', 0.0033540549529231631) + +[fips2012512875] +centroid = (0.65136223500508739, -1.6679630124969183) +description = Cherry township, KS +station = ('kppf', 0.00096051113699376848) +zone = ('ksz099', 0.0033061108824640338) + +[fips2012512925] +centroid = (0.65046934201305961, -1.6677206386236938) +description = Cherryvale city, KS +station = ('kppf', 0.0013429959015583259) +zone = ('ksz099', 0.0029542478569586175) + +[fips2012514600] +centroid = (0.64649191118068972, -1.6690521852166251) +description = Coffeyville city, KS +station = ('kcfv', 0.001143960244279545) +zone = ('ksz099', 0.0030744520388439477) + +[fips2012518700] +centroid = (0.64973522162308572, -1.6685008007993354) +description = Drum Creek township, KS +station = ('kppf', 0.0023006320585605821) +zone = ('ksz099', 0.0021019397598670089) + +[fips2012523325] +centroid = (0.64677849424386724, -1.6711739121751046) +description = Fawn Creek township, KS +station = ('kidp', 0.0016324081589897217) +zone = ('ksz099', 0.0023559289925154498) + +[fips2012533875] +centroid = (0.64983924324650466, -1.6705163942860008) +description = Independence city, KS +station = ('kidp', 0.0016483570731947803) +zone = ('ksz099', 0.00081690745331557861) + +[fips2012533900] +centroid = (0.64892669784709933, -1.6712022563221571) +description = Independence township, KS +station = ('kidp', 0.00058756302683294899) +zone = ('ksz099', 0.00024711223635671048) + +[fips2012540275] +centroid = (0.64855242944230174, -1.6685118312802079) +description = Liberty township, KS +station = ('kcfv', 0.0013990253767741791) +zone = ('ksz099', 0.0020874621258356206) + +[fips2012542900] +centroid = (0.65144868116293864, -1.6736514768614805) +description = Louisburg township, KS +station = ('kidp', 0.0035050764850633087) +zone = ('ksz099', 0.0031186676934917778) + +[fips2012550] +centroid = (0.68022696141346761, -1.6934005580262048) +description = Chapman city, KS +station = ('kfri', 0.0038082138440864517) +zone = ('ksz035', 0.0025605435978906482) + +[fips2012554525] +centroid = (0.647291568684076, -1.6694408176811668) +description = Parker township, KS +station = ('kcfv', 0.0011886955295066352) +zone = ('ksz099', 0.0022334258235427494) + +[fips2012561925] +centroid = (0.64909173618116789, -1.673474884447764) +description = Rutland township, KS +station = ('kidp', 0.0017217943907295366) +zone = ('ksz099', 0.0019489774637072483) + +[fips2012569750] +centroid = (0.6513495464614254, -1.671122966014239) +description = Sycamore township, KS +station = ('kidp', 0.0029750596861456468) +zone = ('ksz099', 0.0022192293402258059) + +[fips2012576825] +centroid = (0.65115440119775991, -1.6693792250118638) +description = West Cherry township, KS +station = ('kppf', 0.0021050128146214903) +zone = ('ksz099', 0.0024116382682113804) + +[fips2012650] +centroid = (0.66942478706031694, -1.7165052790239832) +description = Chase city, KS +station = ('khut', 0.0083081704107735369) +zone = ('ksz050', 0.0020225776743945999) + +[fips2012675] +centroid = (0.64618890456925093, -1.6786078279647092) +description = Chautauqua city, KS +station = ('kbvo', 0.005017277184692537) +zone = ('ksz098', 0.0023983663917226711) + +[fips20127] +centroid = (0.6752276752106402, -1.6867717975271304) +description = Morris County, KS +station = ('kfri', 0.0066217247447258806) +zone = ('ksz037', 6.81350214499594e-05) + +[fips2012715925] +centroid = (0.67479924923915302, -1.6840992970165991) +description = Council Grove city, KS +station = ('kemp', 0.007001460168947593) +zone = ('ksz037', 0.0021959999531458766) + +[fips2012731400] +centroid = (0.67543927892915201, -1.6895370448341127) +description = Herington city, KS +station = ('kfri', 0.0062315312194918598) +zone = ('ksz037', 0.0021012616130620973) + +[fips2012731975] +centroid = (0.67616006500364056, -1.6888793698653761) +description = Highland township, KS +station = ('kfri', 0.0054880081226826062) +zone = ('ksz037', 0.0018332945951764822) + +[fips2012753750] +centroid = (0.67757952383099496, -1.6905488296547861) +description = Overland township, KS +station = ('kfri', 0.0042769178244488025) +zone = ('ksz036', 0.0034704673019208608) + +[fips2012771202] +centroid = (0.67322983172246731, -1.683361546341781) +description = Township 1, KS +station = ('kemp', 0.005400070774690696) +zone = ('ksz037', 0.0033826604665085258) + +[fips2012771206] +centroid = (0.67561663928773952, -1.68385058759819) +description = Township 2, KS +station = ('kfri', 0.0071793440205321132) +zone = ('ksz037', 0.0023804417856526697) + +[fips2012771210] +centroid = (0.67751883873290319, -1.6854463595865807) +description = Township 3, KS +station = ('kfri', 0.0049064194680008069) +zone = ('ksz037', 0.0025453291741126907) + +[fips2012771214] +centroid = (0.6767253422417765, -1.687013804881212) +description = Township 4, KS +station = ('kfri', 0.0051265464482699551) +zone = ('ksz037', 0.0015059391974575546) + +[fips2012771218] +centroid = (0.67765808110062731, -1.6887781407687605) +description = Township 5, KS +station = ('kfri', 0.0039903828313420618) +zone = ('ksz037', 0.0028571393333076431) + +[fips2012771222] +centroid = (0.67603633861296664, -1.6905923581663309) +description = Township 6, KS +station = ('kfri', 0.0057726166935935025) +zone = ('ksz037', 0.0030242757171997981) + +[fips2012771227] +centroid = (0.6745237839233108, -1.6900459130308241) +description = Township 7, KS +station = ('kfri', 0.0071845368289555449) +zone = ('ksz037', 0.002585026811108317) + +[fips2012771232] +centroid = (0.67308741285550444, -1.6896334219154079) +description = Township 8, KS +station = ('kfri', 0.0085821780972670098) +zone = ('ksz037', 0.003043699132189433) + +[fips2012771237] +centroid = (0.6740109538291974, -1.6870397055673116) +description = Township 9, KS +station = ('kfri', 0.0077666369703206836) +zone = ('ksz037', 0.0012214821019965586) + +[fips2012775] +centroid = (0.65680853493593572, -1.7065855780472261) +description = Cheney city, KS +station = ('kict', 0.0048030391217940352) +zone = ('ksz082', 0.0050906075499263541) + +[fips2012825] +centroid = (0.65179436107458877, -1.6549485460504021) +description = Cherokee city, KS +station = ('kpts', 0.0022284861598250256) +zone = ('ksz097', 0.0028623563969291063) + +[fips20129] +centroid = (0.6490050456772215, -1.7769112640618474) +description = Morton County, KS +station = ('keha', 0.0033926146056895341) +zone = ('ksz084', 0.00017804021533410634) + +[fips2012913350] +centroid = (0.64708076781702017, -1.7762700650012497) +description = Cimarron township, KS +station = ('keha', 0.0020213130013729103) +zone = ('ksz084', 0.0020648607628784969) + +[fips2012925] +centroid = (0.65046934201305961, -1.6677206386236938) +description = Cherryvale city, KS +station = ('kppf', 0.0013429959015583259) +zone = ('ksz099', 0.0029542478569586175) + +[fips2012935650] +centroid = (0.64681867172324814, -1.7800396445729996) +description = Jones township, KS +station = ('keha', 0.0018037862492242657) +zone = ('ksz084', 0.0034945728454833396) + +[fips2012950] +centroid = (0.6464298123659038, -1.6596727683631154) +description = Chetopa city, KS +station = ('kppf', 0.0076660828402062928) +zone = ('ksz100', 0.0039186079812603882) + +[fips2012959225] +centroid = (0.65072023309303384, -1.775610976315819) +description = Richfield township, KS +station = ('keha', 0.0053614230285951893) +zone = ('ksz084', 0.0018393143019708896) + +[fips2012960925] +centroid = (0.6477156836923107, -1.773860725235334) +description = Rolla township, KS +station = ('keha', 0.0039709645928330296) +zone = ('ksz084', 0.0026817225030062075) + +[fips2012969975] +centroid = (0.64682441385648715, -1.7781629618415) +description = Taloga township, KS +station = ('keha', 0.0010529973523504788) +zone = ('ksz084', 0.0025563175046426118) + +[fips2012977225] +centroid = (0.65003171815641458, -1.779343502547549) +description = Westola township, KS +station = ('keha', 0.0043564419110074084) +zone = ('ksz084', 0.0022730903638755466) + +[fips20131] +centroid = (0.69448471315264204, -1.6756099980816062) +description = Nemaha County, KS +station = ('kfnb', 0.0076107682914698625) +zone = ('ksz011', 0.00017608422514926614) + +[fips2013100] +centroid = (0.65246355521638844, -1.6535851995584991) +description = Chicopee CDP, KS +station = ('kpts', 0.0011771157065621823) +zone = ('ksz097', 0.0026324237485163167) + +[fips2013100275] +centroid = (0.69434978174817041, -1.674780635074351) +description = Adams township, KS +station = ('kfnb', 0.0072486372477510658) +zone = ('ksz011', 0.00075428873518321117) + +[fips2013106375] +centroid = (0.69727638474449949, -1.6726702876625947) +description = Berwick township, KS +station = ('kfnb', 0.0041020586248648825) +zone = ('nez093', 0.0034343127930527373) + +[fips2013110575] +centroid = (0.69453735228288216, -1.6726580005446605) +description = Capioma township, KS +station = ('kfnb', 0.0060782141643005308) +zone = ('ksz011', 0.0023923821125086953) + +[fips2013111900] +centroid = (0.69435604748018498, -1.6787177138944149) +description = Center township, KS +station = ('kfnb', 0.0095840436710557149) +zone = ('ksz011', 0.0022712366375534725) + +[fips2013113775] +centroid = (0.69739129722245075, -1.6787079575038961) +description = Clear Creek township, KS +station = ('kfnb', 0.0083086695068544814) +zone = ('nez092', 0.0031187511431158524) + +[fips2013126275] +centroid = (0.69580540379762612, -1.6747177683146943) +description = Gilman township, KS +station = ('kfnb', 0.0062374986393723747) +zone = ('ksz011', 0.0016591165691680636) + +[fips2013127275] +centroid = (0.69295639813984067, -1.6727004818586542) +description = Granada township, KS +station = ('kfnb', 0.0074595472284385957) +zone = ('ksz011', 0.0027373028157969318) + +[fips2013130375] +centroid = (0.69281836004930042, -1.6747323418139484) +description = Harrison township, KS +station = ('kfnb', 0.0084016611428721043) +zone = ('ksz011', 0.0017269669426288343) + +[fips2013132900] +centroid = (0.69299804169579327, -1.6787285174824846) +description = Home township, KS +station = ('kfnb', 0.010397567002549386) +zone = ('ksz011', 0.0026529688506961658) + +[fips2013133725] +centroid = (0.69275910612119518, -1.6766816302423309) +description = Illinois township, KS +station = ('kfnb', 0.0094087440403981659) +zone = ('ksz011', 0.0017437333781182276) + +[fips2013144775] +centroid = (0.69591172925565759, -1.6787215536187692) +description = Marion township, KS +station = ('kfnb', 0.0088297662730396752) +zone = ('ksz011', 0.0027558403224852172) + +[fips2013147475] +centroid = (0.69422909223039497, -1.6765866319711447) +description = Mitchell township, KS +station = ('kfnb', 0.0083441800089151044) +zone = ('ksz011', 0.00064561678499544691) + +[fips2013149625] +centroid = (0.69738789383040944, -1.676743275271511) +description = Nemaha township, KS +station = ('kfnb', 0.0068701453290944464) +zone = ('ksz011', 0.0031268504317163749) + +[fips2013150050] +centroid = (0.69144558877943685, -1.6788542859083833) +description = Neuchatel township, KS +station = ('kmhk', 0.010738118187796295) +zone = ('ksz011', 0.0037567715339718163) + +[fips2013158750] +centroid = (0.6913341669599895, -1.6767174443985815) +description = Red Vermillion township, KS +station = ('kfnb', 0.010507988465103797) +zone = ('ksz011', 0.0031070857238455533) + +[fips2013158900] +centroid = (0.69125037370260123, -1.6746159632594253) +description = Reilly township, KS +station = ('kfnb', 0.0096654085486665101) +zone = ('ksz011', 0.0032256063452121347) + +[fips2013159725] +centroid = (0.69589898835211816, -1.6767453522133209) +description = Richmond township, KS +station = ('kfnb', 0.0074856731786009179) +zone = ('ksz011', 0.0017204629343704496) + +[fips2013160600] +centroid = (0.69575854170721008, -1.6728998857256945) +description = Rock Creek township, KS +station = ('kfnb', 0.0052327516830715246) +zone = ('ksz011', 0.0026091834304272591) + +[fips2013162025] +centroid = (0.6964241753773357, -1.6720364713447329) +description = Sabetha city, KS +station = ('kfnb', 0.0042942453909858161) +zone = ('ksz011', 0.0035316559172316807) + +[fips2013163950] +centroid = (0.69529986917978592, -1.6767218426282966) +description = Seneca city, KS +station = ('kfnb', 0.0077845413504888479) +zone = ('ksz011', 0.0011999509928928324) + +[fips2013175675] +centroid = (0.69725690687004716, -1.6746268715672501) +description = Washington township, KS +station = ('kfnb', 0.0054150154100771359) +zone = ('ksz011', 0.0030317690176776503) + +[fips2013177575] +centroid = (0.69133041450209776, -1.6726474238493936) +description = Wetmore township, KS +station = ('kfnb', 0.0089211599142667262) +zone = ('ksz024', 0.0034209107646611782) + +[fips2013275] +centroid = (0.65990359711166735, -1.7513486656916553) +description = Cimarron city, KS +station = ('kddc', 0.0052705613454795981) +zone = ('ksz077', 0.0017888240057782878) + +[fips20133] +centroid = (0.65562041950093319, -1.6635724971371864) +description = Neosho County, KS +station = ('kcnu', 0.0029266540923159547) +zone = ('ksz096', 0.00015793058255628525) + +[fips2013306675] +centroid = (0.65786831631103915, -1.663241477991253) +description = Big Creek township, KS +station = ('kcnu', 0.0026186603027262465) +zone = ('ksz096', 0.0023512187132382107) + +[fips2013310525] +centroid = (0.65614644428419167, -1.665800741539915) +description = Canville township, KS +station = ('kcnu', 0.0013766971825429446) +zone = ('ksz096', 0.0019896297934902676) + +[fips2013312375] +centroid = (0.65469864130978472, -1.6632746916069185) +description = Centerville township, KS +station = ('kcnu', 0.003723317597184978) +zone = ('ksz096', 0.00083034521654583933) + +[fips2013312500] +centroid = (0.65745727381890207, -1.6661535423949132) +description = Chanute city, KS +station = ('kcnu', 0.00027761901256165289) +zone = ('ksz096', 0.002906148935822367) + +[fips2013312975] +centroid = (0.654800289285421, -1.6661088794193546) +description = Chetopa township, KS +station = ('kcnu', 0.0026252825384504579) +zone = ('ksz096', 0.0022526433784330964) + +[fips2013321525] +centroid = (0.65627160184485223, -1.6633929900236186) +description = Erie township, KS +station = ('kcnu', 0.0027089543467808796) +zone = ('ksz096', 0.00075061994318980849) + +[fips2013327800] +centroid = (0.65778061351612638, -1.66073803007207) +description = Grant township, KS +station = ('kcnu', 0.0045744999219806837) +zone = ('ksz096', 0.0030997754271137744) + +[fips2013337600] +centroid = (0.65323087176873507, -1.6634026416943821) +description = Ladore township, KS +station = ('kppf', 0.003152220363696048) +zone = ('ksz096', 0.0022903908458781811) + +[fips2013340875] +centroid = (0.65316706253128221, -1.6607585900506585) +description = Lincoln township, KS +station = ('kppf', 0.0050453093846057166) +zone = ('ksz096', 0.0031611435318902328) + +[fips2013347250] +centroid = (0.65485875781536274, -1.6608213520905604) +description = Mission township, KS +station = ('kcnu', 0.005170162684252245) +zone = ('ksz096', 0.0021625092902522571) + +[fips2013365300] +centroid = (0.65310023387422345, -1.6660306712155726) +description = Shiloh township, KS +station = ('kppf', 0.001626534748791851) +zone = ('ksz096', 0.003187573487933585) + +[fips2013370650] +centroid = (0.65826022999457456, -1.6653965232851531) +description = Tioga township, KS +station = ('kcnu', 0.0012197853629464408) +zone = ('ksz096', 0.0031556696345528376) + +[fips2013375] +centroid = (0.68956850462220953, -1.6729991251469629) +description = Circleville city, KS +station = ('ktop', 0.0082903222334076744) +zone = ('ksz024', 0.0018162357342684757) + +[fips2013375175] +centroid = (0.65614890519843694, -1.6610305647079968) +description = Walnut Grove township, KS +station = ('kcnu', 0.004509589552984198) +zone = ('ksz096', 0.0019931201875889389) + +[fips2013425] +centroid = (0.67237722092957553, -1.7197947359718022) +description = Claflin city, KS +station = ('kgbd', 0.0054384632244211494) +zone = ('ksz047', 0.0031012036293140751) + +[fips20135] +centroid = (0.67161032325624925, -1.743736551785422) +description = Ness County, KS +station = ('khys', 0.010870418702348459) +zone = ('ksz045', 0.00010316131368373439) + +[fips2013504800] +centroid = (0.6716006192256081, -1.7400227005766886) +description = Bazine township, KS +station = ('khys', 0.008715166480024265) +zone = ('ksz045', 0.0030091734137962047) + +[fips2013511925] +centroid = (0.67206819293221742, -1.742887152398354) +description = Center township, KS +station = ('khys', 0.010063738083979966) +zone = ('ksz045', 0.00090146461386565876) + +[fips2013519775] +centroid = (0.67155373968189958, -1.7479697780729644) +description = Eden township, KS +station = ('kgck', 0.012483801154814327) +zone = ('ksz045', 0.0032123449992398183) + +[fips2013523875] +centroid = (0.6720933780333237, -1.7451780890278143) +description = Forrester township, KS +station = ('khys', 0.011536651018512747) +zone = ('ksz045', 0.0011414656102461912) + +[fips2013524475] +centroid = (0.66905556265705746, -1.7438670326003012) +description = Franklin township, KS +station = ('kddc', 0.0099271220554715631) +zone = ('ksz045', 0.0025384068803913956) + +[fips2013532100] +centroid = (0.66918899307837243, -1.7399679845046385) +description = Highpoint township, KS +station = ('khys', 0.010606318960985038) +zone = ('ksz045', 0.0038879877947836997) + +[fips2013535550] +centroid = (0.66917813713042495, -1.7477450145718925) +description = Johnson township, KS +station = ('kddc', 0.010299559374862897) +zone = ('ksz045', 0.0038822379438044224) + +[fips2013550125] +centroid = (0.67421349928889129, -1.7437353126016533) +description = Nevada township, KS +station = ('khys', 0.0095490921944775594) +zone = ('ksz045', 0.0026215429941205295) + +[fips2013552400] +centroid = (0.67416349560582167, -1.7477991721385817) +description = Ohio township, KS +station = ('khlc', 0.013574142880014566) +zone = ('ksz045', 0.0040075135764076966) + +[fips2013575400] +centroid = (0.67410448602381179, -1.7397572709040452) +description = Waring township, KS +station = ('khys', 0.0068868693749585029) +zone = ('ksz045', 0.0040780944738448384) + +[fips2013625] +centroid = (0.68733128922712561, -1.6951924352093497) +description = Clay Center city, KS +station = ('kfri', 0.0075112525545550394) +zone = ('ksz021', 0.00074904849184418169) + +[fips2013675] +centroid = (0.6935418513841296, -1.7484092345253239) +description = Clayton city, KS +station = ('khlc', 0.0079438652954811947) +zone = ('ksz003', 0.0038926818380470006) + +[fips20137] +centroid = (0.69435946832551898, -1.7435705709735576) +description = Norton County, KS +station = ('khlc', 0.0073352918400017425) +zone = ('ksz004', 5.6630972596681427e-05) + +[fips2013701450] +centroid = (0.69628135508464495, -1.7402760002110305) +description = Almena-District 4 township, KS +station = ('khlc', 0.009350412625240629) +zone = ('ksz004', 0.0032160499811513289) + +[fips2013712260] +centroid = (0.69663981080641957, -1.7448600551315159) +description = Center-District 1 township, KS +station = ('khlc', 0.0097446735527485628) +zone = ('ksz004', 0.0024556650019204145) + +[fips2013732060] +centroid = (0.69275989151935857, -1.7458733409353462) +description = Highland-District 2 township, KS +station = ('khlc', 0.006275142201194777) +zone = ('ksz004', 0.0023514380232581224) + +[fips2013751500] +centroid = (0.69527621996842148, -1.7434377165108956) +description = Norton city, KS +station = ('khlc', 0.0082356589103550048) +zone = ('ksz004', 0.00092108334403591201) + +[fips2013766410] +centroid = (0.69235270620486844, -1.7412274140928776) +description = Solomon-District 3 township, KS +station = ('khlc', 0.0053544347559273658) +zone = ('ksz004', 0.0027416802166581522) + +[fips20139] +centroid = (0.67456462462780753, -1.670756132712055) +description = Osage County, KS +station = ('kfoe', 0.0050606168903848808) +zone = ('ksz055', 4.7296177654172171e-05) + +[fips2013900450] +centroid = (0.67325906598743812, -1.6677239023893948) +description = Agency township, KS +station = ('kfoe', 0.006392068637258462) +zone = ('ksz055', 0.0027237537110572658) + +[fips2013902550] +centroid = (0.67143318979046429, -1.6732532101794682) +description = Arvonia township, KS +station = ('kemp', 0.0051032960211647481) +zone = ('ksz055', 0.0037329736822255951) + +[fips2013904175] +centroid = (0.6730227135001331, -1.6731923680017435) +description = Barclay township, KS +station = ('kemp', 0.0060477395291786843) +zone = ('ksz055', 0.0024836656121683819) + +[fips2013909375] +centroid = (0.67734074533602961, -1.6732144289634889) +description = Burlingame township, KS +station = ('kfoe', 0.0036758550915011391) +zone = ('ksz055', 0.0033384430591614478) + +[fips2013918575] +centroid = (0.6757400340658557, -1.6727007785646268) +description = Dragoon township, KS +station = ('kfoe', 0.0045642296576706596) +zone = ('ksz055', 0.0018955417154685463) + +[fips2013920175] +centroid = (0.67725169863759294, -1.6676984903954861) +description = Elk township, KS +station = ('kfoe', 0.0026253125958146913) +zone = ('ksz055', 0.0035546306856974784) + +[fips2013922150] +centroid = (0.67574732954212891, -1.6697785563447203) +description = Fairfax township, KS +station = ('kfoe', 0.0037786038864291364) +zone = ('ksz055', 0.0013654005507488568) + +[fips2013925] +centroid = (0.65464720645672847, -1.7016504326944093) +description = Clearwater city, KS +station = ('kict', 0.0026233990313955695) +zone = ('ksz083', 0.003117287183667999) + +[fips2013927850] +centroid = (0.67485302283340698, -1.6735071555856333) +description = Grant township, KS +station = ('kfoe', 0.0056516521459590609) +zone = ('ksz055', 0.0021667999252060889) + +[fips2013935725] +centroid = (0.67509328485823661, -1.6678773342839377) +description = Junction township, KS +station = ('kfoe', 0.0045795171719646057) +zone = ('ksz055', 0.0022937892238542408) + +[fips2013940925] +centroid = (0.67169573966984186, -1.6677437642362827) +description = Lincoln township, KS +station = ('kfoe', 0.007926151892707638) +zone = ('ksz055', 0.0037450768849913428) + +[fips2013945725] +centroid = (0.67191800735008334, -1.6692835111556845) +description = Melvern township, KS +station = ('kfoe', 0.0075974633576504982) +zone = ('ksz055', 0.002927348135330726) + +[fips2013952725] +centroid = (0.67222323052967214, -1.6708294365406386) +description = Olivet township, KS +station = ('kfoe', 0.0073755367238458741) +zone = ('ksz055', 0.0023892287180743133) + +[fips2013953200] +centroid = (0.67429244053095894, -1.6724250339961044) +description = Osage City city, KS +station = ('kfoe', 0.0057277183008487779) +zone = ('ksz055', 0.0013469745100541221) + +[fips2013959825] +centroid = (0.67745588470678375, -1.6698234287597891) +description = Ridgeway township, KS +station = ('kfoe', 0.0020842862632046563) +zone = ('ksz055', 0.0029345619509401066) + +[fips2013963700] +centroid = (0.67723530999591675, -1.6712745129531896) +description = Scranton township, KS +station = ('kfoe', 0.0027036207100904872) +zone = ('ksz055', 0.0026554325841739684) + +[fips2013969500] +centroid = (0.6745550951300916, -1.6716542093319608) +description = Superior township, KS +station = ('kfoe', 0.0052598441390971085) +zone = ('ksz055', 0.00070873936856574434) + +[fips2013973200] +centroid = (0.67395393392253466, -1.6697970393814989) +description = Valley Brook township, KS +station = ('kfoe', 0.005569210944677396) +zone = ('ksz055', 0.00099310065892942319) + +[fips20141] +centroid = (0.68676348126157427, -1.7238246314014869) +description = Osborne County, KS +station = ('krsl', 0.0084380902859902546) +zone = ('ksz018', 2.8817204572347298e-05) + +[fips2014106425] +centroid = (0.68982841905441639, -1.7218645044784497) +description = Bethany township, KS +station = ('krsl', 0.011682134275916422) +zone = ('ksz018', 0.0033927486153075698) + +[fips2014107400] +centroid = (0.68627779103732933, -1.7198444429488988) +description = Bloom township, KS +station = ('krsl', 0.0087687757744846946) +zone = ('ksz018', 0.0031214819734043547) + +[fips2014115625] +centroid = (0.68818152637223451, -1.7198069881831513) +description = Corinth township, KS +station = ('krsl', 0.010530534376746052) +zone = ('ksz018', 0.0034019167030821464) + +[fips2014116100] +centroid = (0.68569725962153094, -1.7235756427303974) +description = Covert township, KS +station = ('krsl', 0.0073954710801915511) +zone = ('ksz018', 0.0011119062658727491) + +[fips2014117500] +centroid = (0.68418261053677265, -1.719988589691821) +description = Delhi township, KS +station = ('krsl', 0.0068747695866007152) +zone = ('ksz018', 0.0039535325221037726) + +[fips2014127875] +centroid = (0.68983726787372401, -1.7276651760606228) +description = Grant township, KS +station = ('krsl', 0.011717214468061682) +zone = ('ksz018', 0.0042506206093044568) + +[fips2014129825] +centroid = (0.68694478606427145, -1.7218490059546918) +description = Hancock township, KS +station = ('krsl', 0.0088690394407596514) +zone = ('ksz018', 0.001535537938804378) + +[fips2014130850] +centroid = (0.68973851714464618, -1.7256958861590126) +description = Hawkeye township, KS +station = ('krsl', 0.011414604271640283) +zone = ('ksz018', 0.0032814717410356697) + +[fips2014133925] +centroid = (0.68676348126157427, -1.7238246314014869) +description = Independence township, KS +station = ('krsl', 0.0084380902859902546) +zone = ('ksz018', 2.8817204572347298e-05) + +[fips2014134875] +centroid = (0.68363688098625908, -1.7220590039702919) +description = Jackson township, KS +station = ('krsl', 0.0056632221650085189) +zone = ('ksz018', 0.0034389650881653223) + +[fips2014136750] +centroid = (0.68678863145609548, -1.7258057546354257) +description = Kill Creek township, KS +station = ('krsl', 0.0084827319294732938) +zone = ('ksz018', 0.001531653307520681) + +[fips2014138925] +centroid = (0.68997356063501225, -1.7237748895178051) +description = Lawrence township, KS +station = ('krsl', 0.011643226052967628) +zone = ('ksz018', 0.0031814998313636719) + +[fips2014140300] +centroid = (0.68389543406164954, -1.7255994567178401) +description = Liberty township, KS +station = ('krsl', 0.0055903349114778643) +zone = ('ksz018', 0.0032060867628509447) + +[fips2014148875] +centroid = (0.68678498371795882, -1.727642521686932) +description = Mount Ayr township, KS +station = ('krsl', 0.0087421333677826594) +zone = ('ksz018', 0.0029520062359333207) + +[fips2014149450] +centroid = (0.68377196947036345, -1.7277066625369428) +description = Natoma township, KS +station = ('krsl', 0.0059098845348968757) +zone = ('ksz018', 0.0042607731812915311) + +[fips2014153325] +centroid = (0.68836792753634757, -1.7226288714243607) +description = Osborne city, KS +station = ('krsl', 0.010141656651234827) +zone = ('ksz018', 0.0018267745638352933) + +[fips2014155350] +centroid = (0.68822823138301792, -1.7221688375401198) +description = Penn township, KS +station = ('krsl', 0.010066504813922742) +zone = ('ksz018', 0.0019235972556212778) + +[fips2014161375] +centroid = (0.6899240805507183, -1.7198216314955754) +description = Ross township, KS +station = ('kcnk', 0.01195751815511184) +zone = ('ksz018', 0.0044008262701389564) + +[fips2014161475] +centroid = (0.68539973334394333, -1.727585589046732) +description = Round Mound township, KS +station = ('krsl', 0.0074015300180423913) +zone = ('ksz018', 0.0032256988648584309) + +[fips2014169150] +centroid = (0.6881637938270343, -1.7272265399130116) +description = Sumner township, KS +station = ('krsl', 0.010009833902204196) +zone = ('ksz018', 0.0029650944140290742) + +[fips2014170575] +centroid = (0.68836253446895901, -1.724683665006026) +description = Tilden township, KS +station = ('krsl', 0.010011233538946127) +zone = ('ksz018', 0.0017046736726225125) + +[fips2014173000] +centroid = (0.68380148298801469, -1.7238325377429984) +description = Valley township, KS +station = ('krsl', 0.0054894489809156092) +zone = ('ksz018', 0.0029908192775827654) + +[fips2014173750] +centroid = (0.68515856374790285, -1.7257947765144308) +description = Victor township, KS +station = ('krsl', 0.0068624463527869215) +zone = ('ksz018', 0.0022343226063914739) + +[fips2014179975] +centroid = (0.68529112150459182, -1.722049771178549) +description = Winfield township, KS +station = ('krsl', 0.0072332187548260372) +zone = ('ksz018', 0.0020347997838731729) + +[fips2014200] +centroid = (0.69059144209680323, -1.697866506516208) +description = Clifton city, KS +station = ('kcnk', 0.0049866624981549706) +zone = ('ksz021', 0.0041152084819996515) + +[fips2014275] +centroid = (0.65832400432544236, -1.6794263175707245) +description = Climax city, KS +station = ('kemp', 0.010723969882871519) +zone = ('ksz070', 0.002770894126425988) + +[fips20143] +centroid = (0.68308631687371746, -1.7043978427364361) +description = Ottawa County, KS +station = ('ksln', 0.0061897985259655704) +zone = ('ksz034', 0.00011170289121759291) + +[fips2014306100] +centroid = (0.68069402897459386, -1.7042187894084739) +description = Bennington township, KS +station = ('ksln', 0.0037978906751982133) +zone = ('ksz034', 0.0023000088491267) + +[fips2014307150] +centroid = (0.6836209635834809, -1.704247220821989) +description = Blaine township, KS +station = ('kcnk', 0.0066812580117251155) +zone = ('ksz034', 0.00063072703972433968) + +[fips2014308975] +centroid = (0.68072141319055768, -1.7022816135651004) +description = Buckeye township, KS +station = ('ksln', 0.0041387761350018997) +zone = ('ksz034', 0.0027679636930985057) + +[fips2014311975] +centroid = (0.68184224618289591, -1.7064153386319865) +description = Center township, KS +station = ('ksln', 0.005208576480008548) +zone = ('ksz034', 0.0019923935006512608) + +[fips2014312575] +centroid = (0.6852636325688729, -1.7003976179040352) +description = Chapman township, KS +station = ('kcnk', 0.0058810631849575291) +zone = ('ksz021', 0.0038317094043694871) + +[fips2014315175] +centroid = (0.68209345142213551, -1.7042247933411008) +description = Concord township, KS +station = ('ksln', 0.0051970533062423102) +zone = ('ksz034', 0.00090224556236605041) + +[fips2014316725] +centroid = (0.6806860004600348, -1.7063025554557225) +description = Culver township, KS +station = ('ksln', 0.0040930526435429531) +zone = ('ksz034', 0.0027734670196065746) + +[fips2014319075] +centroid = (0.68407172976939346, -1.7002954986895011) +description = Durham township, KS +station = ('kcnk', 0.0069650779572544893) +zone = ('ksz034', 0.0033011267189890269) + +[fips2014324075] +centroid = (0.68361747292497688, -1.70838312755044) +description = Fountain township, KS +station = ('kcnk', 0.0073846716968829773) +zone = ('ksz034', 0.0032128257961070864) + +[fips2014325725] +centroid = (0.68361667007352089, -1.7061072531124244) +description = Garfield township, KS +station = ('kcnk', 0.0068260315374303847) +zone = ('ksz034', 0.0015205002663337605) + +[fips2014327900] +centroid = (0.68394662456861055, -1.7027100395365875) +description = Grant township, KS +station = ('kcnk', 0.0064766111865714026) +zone = ('ksz034', 0.0015706205332893196) + +[fips2014331325] +centroid = (0.68208554508062391, -1.7082050865134439) +description = Henry township, KS +station = ('ksln', 0.0060070047925889943) +zone = ('ksz034', 0.0031488128226573003) + +[fips2014340950] +centroid = (0.68088549159353762, -1.7003429018319851) +description = Lincoln township, KS +station = ('ksln', 0.0050458804372732887) +zone = ('ksz034', 0.0037376768597634446) + +[fips2014342050] +centroid = (0.68537467041588473, -1.7041930632552995) +description = Logan township, KS +station = ('kcnk', 0.0049283232607631247) +zone = ('ksz034', 0.0023839619384317047) + +[fips2014347075] +centroid = (0.68285029599897029, -1.7051857192673714) +description = Minneapolis city, KS +station = ('ksln', 0.0059919031196681511) +zone = ('ksz034', 0.0006870704693846927) + +[fips2014348500] +centroid = (0.68075401594098484, -1.7081070688226521) +description = Morton township, KS +station = ('ksln', 0.0048572564501073627) +zone = ('ksz034', 0.0036959817059317411) + +[fips2014353600] +centroid = (0.68239961707952035, -1.7002131191488068) +description = Ottawa township, KS +station = ('ksln', 0.0063603546934042085) +zone = ('ksz034', 0.0032405791964430324) + +[fips2014359500] +centroid = (0.68219869477603068, -1.7023220353905766) +description = Richland township, KS +station = ('ksln', 0.005523612135699657) +zone = ('ksz034', 0.0017412879906205758) + +[fips2014364725] +centroid = (0.68531543394107208, -1.7062898669120607) +description = Sheridan township, KS +station = ('kcnk', 0.0052127898848398019) +zone = ('ksz034', 0.0027797783609228486) + +[fips2014365025] +centroid = (0.68526717558725447, -1.702340745320158) +description = Sherman township, KS +station = ('kcnk', 0.005262747508517583) +zone = ('ksz034', 0.0027430125383635109) + +[fips2014367950] +centroid = (0.68523961683836554, -1.7082221383802361) +description = Stanton township, KS +station = ('kcnk', 0.0058907068876789441) +zone = ('ksz034', 0.0037679001302663739) + +[fips2014475] +centroid = (0.69100812200242445, -1.6999550024057293) +description = Clyde city, KS +station = ('kcnk', 0.0034407691301142438) +zone = ('ksz020', 0.003878131600188058) + +[fips20145] +centroid = (0.66641685172084486, -1.731927811146061) +description = Pawnee County, KS +station = ('kgbd', 0.0057958682491072557) +zone = ('ksz065', 6.8728610781062442e-05) + +[fips2014502825] +centroid = (0.66868649533343072, -1.7313761474760909) +description = Ash Valley township, KS +station = ('kgbd', 0.0046167355524852072) +zone = ('ksz065', 0.0023485274925897975) + +[fips2014508750] +centroid = (0.66704167959305882, -1.7368717180517228) +description = Browns Grove township, KS +station = ('kddc', 0.01003793058024338) +zone = ('ksz065', 0.0038764517622877502) + +[fips2014515225] +centroid = (0.66868117207921218, -1.7333913744436136) +description = Conkling township, KS +station = ('kgbd', 0.0061864785489740854) +zone = ('ksz065', 0.0025343702370737428) + +[fips2014525] +centroid = (0.65469344022861387, -1.7248210573247431) +description = Coats city, KS +station = ('kptt', 0.0034548565335727802) +zone = ('ksz081', 0.0026609572616643428) + +[fips2014525775] +centroid = (0.66411580963501549, -1.7327439096510013) +description = Garfield township, KS +station = ('kgbd', 0.0076939786526677842) +zone = ('ksz065', 0.0023476682119632189) + +[fips2014527925] +centroid = (0.66703893942613313, -1.7349565857168021) +description = Grant township, KS +station = ('kgbd', 0.0077329070639711242) +zone = ('ksz065', 0.0024053337431174885) + +[fips2014536625] +centroid = (0.66552402854198711, -1.7349462359143377) +description = Keysville township, KS +station = ('kgbd', 0.0083060664851374623) +zone = ('ksz065', 0.0024671061303191215) + +[fips2014538700] +centroid = (0.66642102305775708, -1.7296415694522889) +description = Larned city, KS +station = ('kgbd', 0.0043370097837442927) +zone = ('ksz065', 0.0018610753624075888) + +[fips2014538725] +centroid = (0.66706714394684541, -1.7291952713092613) +description = Larned township, KS +station = ('kgbd', 0.0036510032791045558) +zone = ('ksz065', 0.0023121148037613848) + +[fips2014540975] +centroid = (0.66843630238515728, -1.7350174453478191) +description = Lincoln township, KS +station = ('kgbd', 0.0074822457629223418) +zone = ('ksz065', 0.0031251208469807281) + +[fips2014542075] +centroid = (0.66563895847323096, -1.7271510718761554) +description = Logan township, KS +station = ('kgbd', 0.0039032113018857375) +zone = ('ksz065', 0.0038930168366305726) + +[fips2014548525] +centroid = (0.66703326710606414, -1.733043827029664) +description = Morton township, KS +station = ('kgbd', 0.0063169497568942015) +zone = ('ksz065', 0.0010362395183693928) + +[fips2014553000] +centroid = (0.66398449106209545, -1.7311284328953551) +description = Orange township, KS +station = ('kgbd', 0.0069168177477048854) +zone = ('ksz065', 0.0025043717338570433) + +[fips2014554800] +centroid = (0.66712545539715451, -1.730956186351476) +description = Pawnee township, KS +station = ('kgbd', 0.0047844415402181475) +zone = ('ksz065', 0.0011061480914355973) + +[fips2014556400] +centroid = (0.66538206346062989, -1.7290614220089258) +description = Pleasant Grove township, KS +station = ('kgbd', 0.0048195344120000767) +zone = ('ksz065', 0.0025279364061476894) + +[fips2014556475] +centroid = (0.66559511580242081, -1.7329477641076341) +description = Pleasant Ridge township, KS +station = ('kgbd', 0.0069098291260426391) +zone = ('ksz065', 0.0010856551115230235) + +[fips2014556600] +centroid = (0.66398681235000057, -1.7292209451025582) +description = Pleasant Valley township, KS +station = ('kgbd', 0.0060760257088761311) +zone = ('ksz065', 0.0032546144860836081) + +[fips2014560050] +centroid = (0.66702928775536963, -1.7273063538197055) +description = River township, KS +station = ('kgbd', 0.0026858485754833695) +zone = ('ksz065', 0.0037502349132199422) + +[fips2014563025] +centroid = (0.66550577239801123, -1.7311282583624299) +description = Santa Fe township, KS +station = ('kgbd', 0.0058186765358093856) +zone = ('ksz065', 0.0011240120468647605) + +[fips2014563250] +centroid = (0.66564560817768104, -1.7367099434833557) +description = Sawmill township, KS +station = ('kddc', 0.0090732937501656705) +zone = ('ksz065', 0.0037708084515279201) + +[fips2014565275] +centroid = (0.66868762979744456, -1.7369874159278376) +description = Shiley township, KS +station = ('khys', 0.0099994677885428922) +zone = ('ksz046', 0.0046846934415437453) + +[fips2014573225] +centroid = (0.66411678701939658, -1.72715941454998) +description = Valley Center township, KS +station = ('kgbd', 0.0053683124677191118) +zone = ('ksz066', 0.0033371091246766267) + +[fips2014575050] +centroid = (0.66844811826419337, -1.7293692457291001) +description = Walnut township, KS +station = ('kgbd', 0.0031252503202130978) +zone = ('ksz065', 0.0029205251957812109) + +[fips2014600] +centroid = (0.64649191118068972, -1.6690521852166251) +description = Coffeyville city, KS +station = ('kcfv', 0.001143960244279545) +zone = ('ksz099', 0.0030744520388439477) + +[fips2014650] +centroid = (0.6874059893191109, -1.7635841916930064) +description = Colby city, KS +station = ('kcbk', 0.00077926900405017336) +zone = ('ksz014', 0.00061688370582900606) + +[fips20147] +centroid = (0.69437062097943913, -1.7338476035100849) +description = Phillips County, KS +station = ('khlc', 0.0098409771691960937) +zone = ('ksz005', 6.3707551220053331e-05) + +[fips2014700] +centroid = (0.65044022992113637, -1.7335205288082611) +description = Coldwater city, KS +station = ('kptt', 0.010956853378306637) +zone = ('ksz089', 0.0015100356780987697) + +[fips2014702150] +centroid = (0.69443737982332798, -1.7319487725503777) +description = Arcade township, KS +station = ('khlc', 0.010922597993370904) +zone = ('ksz005', 0.0015243014643561714) + +[fips2014705100] +centroid = (0.69437634565938566, -1.7380093934713428) +description = Beaver township, KS +station = ('khlc', 0.0080514463739324409) +zone = ('ksz005', 0.0031344446743571267) + +[fips2014705700] +centroid = (0.6928588516879467, -1.7358968818513139) +description = Belmont township, KS +station = ('khlc', 0.0076637473100548536) +zone = ('ksz005', 0.0021380708523781062) + +[fips2014708075] +centroid = (0.69121962100118106, -1.7318143821979741) +description = Bow Creek township, KS +station = ('khlc', 0.0091736824795581838) +zone = ('ksz005', 0.0035467497252401107) + +[fips2014716550] +centroid = (0.69583844288036634, -1.7299382579718352) +description = Crystal township, KS +station = ('khde', 0.010545325770857997) +zone = ('ksz005', 0.0033992821248620369) + +[fips2014717100] +centroid = (0.69590364838122099, -1.7358625686782199) +description = Dayton township, KS +station = ('khlc', 0.010169049605117084) +zone = ('ksz005', 0.0021335485971696565) + +[fips2014717200] +centroid = (0.69274315381183205, -1.7318181695624508) +description = Deer Creek township, KS +station = ('khlc', 0.0099481351341909521) +zone = ('ksz005', 0.0022993005293467468) + +[fips2014724650] +centroid = (0.69589516608105617, -1.7338374107872532) +description = Freedom township, KS +station = ('khde', 0.010091113830124619) +zone = ('ksz005', 0.0015263251838720094) + +[fips2014726650] +centroid = (0.69749762268048232, -1.7319054185717579) +description = Glenwood township, KS +station = ('khde', 0.0085972338825262579) +zone = ('ksz005', 0.0034920216294153238) + +[fips2014727450] +centroid = (0.69728603641526299, -1.7357278292599658) +description = Granite township, KS +station = ('khde', 0.0088372812762556666) +zone = ('ksz005', 0.003225404835413261) + +[fips2014728775] +centroid = (0.69595977816996502, -1.7319694721553061) +description = Greenwood township, KS +station = ('khde', 0.01011212349269627) +zone = ('ksz005', 0.0021894530091323043) + +[fips2014737300] +centroid = (0.6928208209635458, -1.7300784079107705) +description = Kirwin township, KS +station = ('khlc', 0.011117210368872915) +zone = ('ksz005', 0.0033429722900914995) + +[fips2014742125] +centroid = (0.69296987208166605, -1.7380250490747333) +description = Logan township, KS +station = ('khlc', 0.0067974583837799481) +zone = ('ksz005', 0.0034458185356345435) + +[fips2014742625] +centroid = (0.69731047102479093, -1.7378516331602549) +description = Long Island township, KS +station = ('khde', 0.009238199076864885) +zone = ('ksz005', 0.004207201534895501) + +[fips2014748725] +centroid = (0.69437768956290979, -1.7358900750672313) +description = Mound township, KS +station = ('khlc', 0.0088668666501869262) +zone = ('ksz005', 0.0015058558943645561) + +[fips2014755675] +centroid = (0.6938002822864725, -1.7334792866780364) +description = Phillipsburg city, KS +station = ('khlc', 0.0096284128000450019) +zone = ('ksz005', 0.00066742382637017194) + +[fips2014755700] +centroid = (0.6945106836519116, -1.7340217001029714) +description = Phillipsburg township, KS +station = ('khlc', 0.0098563215265645761) +zone = ('ksz005', 0.00015670762880514737) + +[fips2014756125] +centroid = (0.69137439679924795, -1.735898662087151) +description = Plainview township, KS +station = ('khlc', 0.0066174710558473881) +zone = ('ksz005', 0.0033570691072527447) + +[fips2014756775] +centroid = (0.69431168121059927, -1.7298564020299168) +description = Plum township, KS +station = ('khde', 0.012037181619447283) +zone = ('ksz005', 0.0031314014055226305) + +[fips2014757550] +centroid = (0.69631053698973833, -1.7376585473851069) +description = Prairie View township, KS +station = ('khlc', 0.0099342928451602482) +zone = ('ksz005', 0.0034579911548785233) + +[fips2014761800] +centroid = (0.69134051995846679, -1.733928639147255) +description = Rushville township, KS +station = ('khlc', 0.0078177609592839058) +zone = ('ksz005', 0.0030299966419419216) + +[fips2014766350] +centroid = (0.69284759431427134, -1.7339374007001001) +description = Solomon township, KS +station = ('khlc', 0.008723227993738366) +zone = ('ksz005', 0.0015229311717432084) + +[fips2014769175] +centroid = (0.69727511065414549, -1.7298649017833738) +description = Sumner township, KS +station = ('khde', 0.0091883683707600933) +zone = ('ksz005', 0.0042630868921944374) + +[fips2014771175] +centroid = (0.69139301946236675, -1.7378808150653484) +description = Towanda township, KS +station = ('khlc', 0.0055581499440999667) +zone = ('ksz005', 0.0042548111720227735) + +[fips2014773025] +centroid = (0.69135922988804821, -1.7299738452352833) +description = Valley township, KS +station = ('khlc', 0.010516391075264314) +zone = ('ksz005', 0.0042820291129446421) + +[fips2014775075] +centroid = (0.69741683138940747, -1.7339205757261109) +description = Walnut township, KS +station = ('khde', 0.0085706024089730482) +zone = ('ksz005', 0.003046324664416834) + +[fips20149] +centroid = (0.68734882978610812, -1.6813998137158321) +description = Pottawatomie County, KS +station = ('kmhk', 0.0063840660935092679) +zone = ('ksz023', 9.1517206288459294e-05) + +[fips2014900] +centroid = (0.6813284387044013, -1.7473974322513579) +description = Collyer city, KS +station = ('khlc', 0.0069232899991021092) +zone = ('ksz030', 0.0039634635389681483) + +[fips2014905950] +centroid = (0.68509262520876246, -1.6788231666878202) +description = Belvue township, KS +station = ('kmhk', 0.0069985981720586494) +zone = ('ksz023', 0.0030185639939523477) + +[fips2014907550] +centroid = (0.6855378587009463, -1.6847283136790179) +description = Blue township, KS +station = ('kmhk', 0.0032918188123748932) +zone = ('ksz022', 0.0028190654460945957) + +[fips2014907725] +centroid = (0.68863522471129046, -1.6867365593295327) +description = Blue Valley township, KS +station = ('kmhk', 0.0056561571012127727) +zone = ('ksz022', 0.0030479780527839706) + +[fips2014912000] +centroid = (0.68667630206543717, -1.6795839906153496) +description = Center township, KS +station = ('kmhk', 0.007107799050778278) +zone = ('ksz023', 0.0016003037943316408) + +[fips2014913800] +centroid = (0.68988126762416679, -1.6826554733928869) +description = Clear Creek township, KS +station = ('kmhk', 0.0078093824770343765) +zone = ('ksz023', 0.0027390848046106378) + +[fips2014921125] +centroid = (0.68607198181193407, -1.6770100313943861) +description = Emmett township, KS +station = ('ktop', 0.0074379881303430571) +zone = ('ksz024', 0.004366403621515004) + +[fips2014927950] +centroid = (0.68982185661642903, -1.6769768701385981) +description = Grant township, KS +station = ('ktop', 0.010034019727314932) +zone = ('ksz023', 0.0043080199154324128) + +[fips2014928450] +centroid = (0.68703091806285732, -1.685868781625441) +description = Green township, KS +station = ('kmhk', 0.0042058408625738871) +zone = ('ksz022', 0.0022502290718014848) + +[fips2014941000] +centroid = (0.68814571221598364, -1.6769856142381505) +description = Lincoln township, KS +station = ('ktop', 0.0087677564912212007) +zone = ('ksz024', 0.0039211821389808325) + +[fips2014942550] +centroid = (0.68984707662412026, -1.6806142061129243) +description = Lone Tree township, KS +station = ('kmhk', 0.0086431441735430794) +zone = ('ksz023', 0.0026426463472489893) + +[fips2014942950] +centroid = (0.68541840836693979, -1.6809304597733856) +description = Louisville township, KS +station = ('kmhk', 0.0055934827208358393) +zone = ('ksz023', 0.0019247836583779485) + +[fips2014944250] +centroid = (0.68401764201587423, -1.6851057062231767) +description = Manhattan city, KS +station = ('kmhk', 0.0020753843305216214) +zone = ('ksz022', 0.0031102926035569823) + +[fips2014946700] +centroid = (0.68984733842350798, -1.6786432232419395) +description = Mill Creek township, KS +station = ('kmhk', 0.0096507349134370042) +zone = ('ksz023', 0.0033717188800171972) + +[fips2014950] +centroid = (0.66449723388974635, -1.6643659587217279) +description = Colony city, KS +station = ('kcnu', 0.0072870097433150706) +zone = ('ksz059', 0.0026379703744312515) + +[fips2014957250] +centroid = (0.6865272684006094, -1.6834462820769656) +description = Pottawatomie township, KS +station = ('kmhk', 0.0046886915582833076) +zone = ('ksz023', 0.0016928388773780568) + +[fips2014960625] +centroid = (0.68827966623607417, -1.6826293458139845) +description = Rock Creek township, KS +station = ('kmhk', 0.006457203313219223) +zone = ('ksz023', 0.0013201732370227844) + +[fips2014962150] +centroid = (0.68698112381929799, -1.6772631564958027) +description = St. Clere township, KS +station = ('ktop', 0.0081394748288538474) +zone = ('ksz023', 0.0032854446351387617) + +[fips2014962225] +centroid = (0.68451897039021703, -1.6825522022610462) +description = St. George township, KS +station = ('kmhk', 0.0040819049363738438) +zone = ('ksz023', 0.0028926052302504289) + +[fips2014962425] +centroid = (0.68460703970427261, -1.6769174416775676) +description = St. Marys township, KS +station = ('kfoe', 0.0077406100929672513) +zone = ('ksz023', 0.0044447966093059581) + +[fips2014964300] +centroid = (0.68822053448101672, -1.6847545808842603) +description = Shannon township, KS +station = ('kmhk', 0.0056147146626086162) +zone = ('ksz023', 0.0026847251664050397) + +[fips2014965050] +centroid = (0.68824359028043547, -1.6806575077316663) +description = Sherman township, KS +station = ('kmhk', 0.0074174137681354765) +zone = ('ksz023', 0.0011492626114659019) + +[fips2014967475] +centroid = (0.68978089373888463, -1.6846143262255702) +description = Spring Creek township, KS +station = ('kmhk', 0.0071198122365062301) +zone = ('ksz023', 0.003463323013250199) + +[fips2014972250] +centroid = (0.68665006976677967, -1.6812235180080879) +description = Union township, KS +station = ('kmhk', 0.0060401983357990839) +zone = ('ksz023', 0.00067624381276971946) + +[fips2014973875] +centroid = (0.68812941084076995, -1.6785515760029175) +description = Vienna township, KS +station = ('kmhk', 0.0085800509259338249) +zone = ('ksz023', 0.002422389925887709) + +[fips2014975350] +centroid = (0.68428071549402736, -1.6806870561559024) +description = Wamego township, KS +station = ('kmhk', 0.005390342506170597) +zone = ('ksz023', 0.0030765163399980389) + +[fips2015075] +centroid = (0.64877886845945554, -1.6553423795961146) +description = Columbus city, KS +station = ('kpts', 0.0050993024971368942) +zone = ('ksz101', 5.960121183042948e-05) + +[fips20151] +centroid = (0.657074470754062, -1.7233401978143035) +description = Pratt County, KS +station = ('kptt', 0.00092478441041271629) +zone = ('ksz081', 8.0352223338163206e-06) + +[fips2015100] +centroid = (0.65941724366230658, -1.7023296624794078) +description = Colwich city, KS +station = ('kict', 0.0027045801594302744) +zone = ('ksz083', 0.0019862573355725953) + +[fips2015157625] +centroid = (0.65796427451331385, -1.7237908418271684) +description = Pratt city, KS +station = ('kptt', 0.00022152345332779148) +zone = ('ksz081', 0.00095800236202563875) + +[fips2015171223] +centroid = (0.65869532312380419, -1.7203026616907173) +description = Township 6, KS +station = ('kptt', 0.0026354904024573677) +zone = ('ksz081', 0.0028910459319434418) + +[fips2015171228] +centroid = (0.65895467905065053, -1.7231663281142198) +description = Township 7, KS +station = ('kptt', 0.0010036497058600032) +zone = ('ksz081', 0.0018811370431817201) + +[fips2015171233] +centroid = (0.65937322645857133, -1.7262004084858866) +description = Township 8, KS +station = ('kptt', 0.0025364218289249483) +zone = ('ksz081', 0.003227985418839821) + +[fips2015171238] +centroid = (0.65716672885832261, -1.7259262696202757) +description = Township 9, KS +station = ('kptt', 0.002079831881828378) +zone = ('ksz081', 0.0020566283489589533) + +[fips2015171242] +centroid = (0.65471413983354254, -1.7260270274779936) +description = Township 10, KS +station = ('kptt', 0.0038332028292356493) +zone = ('ksz081', 0.0031863481170089207) + +[fips2015171245] +centroid = (0.65465668359456686, -1.7212396591529431) +description = Township 11, KS +station = ('kptt', 0.0037878575854901411) +zone = ('ksz081', 0.0029343614851539764) + +[fips2015171248] +centroid = (0.65646042901662538, -1.7216474553326717) +description = Township 12, KS +station = ('kptt', 0.0021254185613620883) +zone = ('ksz081', 0.0014695108910167073) + +[fips2015200] +centroid = (0.69054618570929904, -1.7042585480088344) +description = Concordia city, KS +station = ('kcnk', 0.00024933958138354971) +zone = ('ksz020', 0.0014836538349925577) + +[fips20153] +centroid = (0.69440015195038285, -1.7641218752756684) +description = Rawlins County, KS +station = ('kcbk', 0.0062272152546339991) +zone = ('ksz002', 2.1486389378514326e-05) + +[fips2015300175] +centroid = (0.69253242275794613, -1.7597894270201502) +description = Achilles township, KS +station = ('kcbk', 0.0052724300452090091) +zone = ('ksz002', 0.0038001283789224367) + +[fips2015303175] +centroid = (0.69488859979484596, -1.7635132266056204) +description = Atwood township, KS +station = ('kcbk', 0.0067061675436173888) +zone = ('ksz002', 0.00068041250783805864) + +[fips2015312037] +centroid = (0.693356671950493, -1.7648711625768421) +description = Center township, KS +station = ('kcbk', 0.0052575537848368039) +zone = ('ksz002', 0.0011829102342574354) + +[fips2015318675] +centroid = (0.6975279739561745, -1.7642355136632655) +description = Driftwood township, KS +station = ('kmck', 0.0078313197228979236) +zone = ('ksz002', 0.00314682253985646) + +[fips2015325] +centroid = (0.65257799645544157, -1.7042138152201058) +description = Conway Springs city, KS +station = ('kict', 0.0053965757899260385) +zone = ('ksz092', 0.0035386927138766722) + +[fips2015331462] +centroid = (0.69569241118185199, -1.7599561757768858) +description = Herl township, KS +station = ('kmck', 0.0068376009466345269) +zone = ('ksz002', 0.0034454295366452203) + +[fips2015335300] +centroid = (0.69126349857857627, -1.7595332824991274) +description = Jefferson township, KS +station = ('kcbk', 0.0044269881072189652) +zone = ('ksz002', 0.0047017502074743912) + +[fips2015343200] +centroid = (0.69581725458324717, -1.7617119246445145) +description = Ludell township, KS +station = ('kmck', 0.007499719453637782) +zone = ('ksz002', 0.0023317354265683797) + +[fips2015347175] +centroid = (0.69211029742505881, -1.7670347948906617) +description = Mirage township, KS +station = ('kcbk', 0.004713092926848848) +zone = ('ksz002', 0.0032000923313132623) + +[fips2015360362] +centroid = (0.6950223618287189, -1.7683511396658085) +description = Rocewood township, KS +station = ('kcbk', 0.0077365623025091946) +zone = ('ksz002', 0.0033238086227554667) + +[fips2015372275] +centroid = (0.69419446489803538, -1.7612220456300647) +description = Union township, KS +station = ('kcbk', 0.006296695552183232) +zone = ('ksz002', 0.0022239469655113225) + +[fips2015400] +centroid = (0.66394811840048384, -1.7803723043284296) +description = Coolidge city, KS +station = ('klaa', 0.00929418218655363) +zone = ('ksz061', 0.0030673259775737924) + +[fips2015475] +centroid = (0.65520511840542106, -1.7563093801180136) +description = Copeland city, KS +station = ('kgck', 0.006675864553578474) +zone = ('ksz076', 0.0033713143264115395) + +[fips20155] +centroid = (0.66232077340592443, -1.7117900626102103) +description = Reno County, KS +station = ('khut', 0.0035707378635973417) +zone = ('ksz067', 0.00013475993060151691) + +[fips2015500875] +centroid = (0.65938720654587979, -1.7097910148448536) +description = Albion township, KS +station = ('khut', 0.0051771934022736034) +zone = ('ksz067', 0.0034546389905056275) + +[fips2015502350] +centroid = (0.66081574108534458, -1.7139548992012141) +description = Arlington township, KS +station = ('khut', 0.0058399660373805659) +zone = ('ksz067', 0.0022547104502696129) + +[fips2015505350] +centroid = (0.65944199243109991, -1.7155188363840488) +description = Bell township, KS +station = ('khut', 0.00766533876471807) +zone = ('ksz067', 0.0041006247806693995) + +[fips2015511000] +centroid = (0.66083905868415127, -1.7095682933790066) +description = Castleton township, KS +station = ('khut', 0.0037346806458960634) +zone = ('ksz067', 0.0024299742265010394) + +[fips2015512050] +centroid = (0.66254990023012617, -1.71182468994257) +description = Center township, KS +station = ('khut', 0.0034659912322394771) +zone = ('ksz067', 0.00016692898532988168) + +[fips2015513600] +centroid = (0.66416066459679179, -1.7079524501042178) +description = Clay township, KS +station = ('khut', 0.00025432802170048528) +zone = ('ksz067', 0.0035902232980408013) + +[fips2015521475] +centroid = (0.66390534038051752, -1.7137391415990826) +description = Enterprise township, KS +station = ('khut', 0.0044702006739869033) +zone = ('ksz067', 0.0020735993121540853) + +[fips2015528025] +centroid = (0.66564777238595352, -1.7108038468630784) +description = Grant township, KS +station = ('khut', 0.0024753188802481025) +zone = ('ksz067', 0.0033627714110382547) + +[fips2015529025] +centroid = (0.66079265037934076, -1.7175365417191093) +description = Grove township, KS +station = ('kptt', 0.0054926521614290826) +zone = ('ksz066', 0.005200543668490625) + +[fips2015530750] +centroid = (0.66130006995277302, -1.7066611158972524) +description = Haven township, KS +station = ('khut', 0.0032890589513555474) +zone = ('ksz067', 0.0042967391714906888) + +[fips2015531000] +centroid = (0.66509635306207837, -1.7172616872685051) +description = Hayes township, KS +station = ('khut', 0.0072490508297119336) +zone = ('ksz050', 0.0049364869500385135) + +[fips2015533550] +centroid = (0.66384526614766393, -1.7156295251652103) +description = Huntsville township, KS +station = ('khut', 0.0059575342660259586) +zone = ('ksz067', 0.0032559515872755975) + +[fips2015533625] +centroid = (0.66441408640418131, -1.7088858172815995) +description = Hutchinson city, KS +station = ('khut', 0.00062267649657263746) +zone = ('ksz067', 0.0031272404206612093) + +[fips2015538525] +centroid = (0.66089119166890831, -1.7158480054809748) +description = Langdon township, KS +station = ('khut', 0.0070417527899529668) +zone = ('ksz067', 0.0034444082333689994) + +[fips2015541050] +centroid = (0.66254225568800251, -1.7099002026428585) +description = Lincoln township, KS +station = ('khut', 0.0023304037536957612) +zone = ('ksz067', 0.0016028662705414487) + +[fips2015541550] +centroid = (0.66535783829061224, -1.7060176653619197) +description = Little River township, KS +station = ('khut', 0.001900914085098133) +zone = ('ksz051', 0.0048961628735966168) + +[fips2015541700] +centroid = (0.65944234149695025, -1.7137510272912888) +description = Loda township, KS +station = ('khut', 0.0066609042370828278) +zone = ('ksz067', 0.0032928627573957968) + +[fips2015545450] +centroid = (0.6653626379460551, -1.7140291978674715) +description = Medford township, KS +station = ('khut', 0.0047702198835349197) +zone = ('ksz067', 0.0033918432207449591) + +[fips2015545600] +centroid = (0.6656998704641256, -1.7078839459310771) +description = Medora township, KS +station = ('khut', 0.0013217331597903362) +zone = ('ksz067', 0.0045823729548874785) + +[fips2015546125] +centroid = (0.65933756938195298, -1.7175674864067472) +description = Miami township, KS +station = ('kptt', 0.0048910398740055561) +zone = ('ksz082', 0.0053615385437799784) + +[fips2015550525] +centroid = (0.66582165953932981, -1.7119590453883884) +description = Nickerson city, KS +station = ('khut', 0.003360802274737612) +zone = ('ksz067', 0.0034186965532044616) + +[fips2015550700] +centroid = (0.65927995606334466, -1.7076219196504752) +description = Ninnescah township, KS +station = ('khut', 0.0051223578189465973) +zone = ('ksz067', 0.0046148374707525742) + +[fips2015556750] +centroid = (0.66258074019800883, -1.7158964907275951) +description = Plevna township, KS +station = ('khut', 0.0064063595348977775) +zone = ('ksz067', 0.0031360938494496959) + +[fips2015558975] +centroid = (0.66416188632726825, -1.7100243479125528) +description = Reno township, KS +station = ('khut', 0.00153549605351211) +zone = ('ksz067', 0.0023102788866562235) + +[fips2015561150] +centroid = (0.65936786829776772, -1.7118576417588476) +description = Roscoe township, KS +station = ('khut', 0.0058322795288805263) +zone = ('ksz067', 0.0030356686443781204) + +[fips2015562850] +centroid = (0.66436467613305739, -1.7120053489734439) +description = Salt Creek township, KS +station = ('khut', 0.0030782735381479649) +zone = ('ksz067', 0.0019626217453441552) + +[fips2015569200] +centroid = (0.6594822746302359, -1.7059758472730417) +description = Sumner township, KS +station = ('khut', 0.0051834737514182723) +zone = ('ksz083', 0.0042978155603096858) + +[fips2015569825] +centroid = (0.66241400889456592, -1.7176377359091399) +description = Sylvia township, KS +station = ('kptt', 0.0064119230366859225) +zone = ('ksz066', 0.0043965901690318247) + +[fips2015571600] +centroid = (0.66093677966897035, -1.7118581479043307) +description = Troy township, KS +station = ('khut', 0.0045512869536537132) +zone = ('ksz067', 0.001467245588012937) + +[fips2015573075] +centroid = (0.66338156707199403, -1.7060822774508282) +description = Valley township, KS +station = ('khut', 0.0018784580716182061) +zone = ('ksz068', 0.0044932341652312528) + +[fips2015575100] +centroid = (0.66549236826935598, -1.7157903048959038) +description = Walnut township, KS +station = ('khut', 0.0061551610124418385) +zone = ('ksz050', 0.0040619262451796452) + +[fips2015577175] +centroid = (0.66245191744591925, -1.7138621349514707) +description = Westminster township, KS +station = ('khut', 0.0049389991410098717) +zone = ('ksz067', 0.0015279032234830809) + +[fips2015580775] +centroid = (0.66256574781973432, -1.7082328372485507) +description = Yoder township, KS +station = ('khut', 0.0018261263212789895) +zone = ('ksz067', 0.0029159995465366378) + +[fips20157] +centroid = (0.69514561698049471, -1.7043300890548736) +description = Republic County, KS +station = ('kcnk', 0.0048436596193423961) +zone = ('ksz008', 1.9845169331361274e-05) + +[fips2015700900] +centroid = (0.69740033802797607, -1.7003937607263884) +description = Albion township, KS +station = ('khjh', 0.0040171763248381736) +zone = ('ksz008', 0.0037771278814894174) + +[fips2015705150] +centroid = (0.6927130643355276, -1.7083744358107649) +description = Beaver township, KS +station = ('kcnk', 0.0039432405618409728) +zone = ('ksz008', 0.0039391041831273324) + +[fips2015705600] +centroid = (0.69504079250562001, -1.7040311665138845) +description = Belleville city, KS +station = ('kcnk', 0.0047441770741781302) +zone = ('ksz008', 0.00024093242415261883) + +[fips2015705625] +centroid = (0.69427096267915023, -1.7043476296138562) +description = Belleville township, KS +station = ('kcnk', 0.0039690455388969878) +zone = ('ksz008', 0.00085546592771461056) + +[fips2015706550] +centroid = (0.69730078444744237, -1.7081911064261355) +description = Big Bend township, KS +station = ('khjh', 0.0051653886135061356) +zone = ('ksz008', 0.0036783562239241234) + +[fips2015716050] +centroid = (0.69435231247558571, -1.7082660857708012) +description = Courtland township, KS +station = ('kcnk', 0.0050610941176784255) +zone = ('ksz008', 0.0031253568886723568) + +[fips2015720275] +centroid = (0.69297634725319091, -1.7002798081795256) +description = Elk Creek township, KS +station = ('kcnk', 0.0041052630252747394) +zone = ('ksz008', 0.0037799249860029369) + +[fips2015722575] +centroid = (0.69574772066584767, -1.7025270592178083) +description = Fairview township, KS +station = ('khjh', 0.0050681050932643761) +zone = ('ksz008', 0.0015134997945157795) + +[fips2015723200] +centroid = (0.69590199031843158, -1.7003607216436478) +description = Farmington township, KS +station = ('khjh', 0.0053527349541580543) +zone = ('ksz008', 0.003140398926480987) + +[fips2015724675] +centroid = (0.69592349277481613, -1.7043085691451965) +description = Freedom township, KS +station = ('khjh', 0.0049367550971605766) +zone = ('ksz008', 0.00079734259690980634) + +[fips2015725] +centroid = (0.69213813542662816, -1.6760178291679195) +description = Corning city, KS +station = ('kfnb', 0.009543142189089495) +zone = ('ksz011', 0.0022236395737864831) + +[fips2015728050] +centroid = (0.69284453998808038, -1.7023571863217117) +description = Grant township, KS +station = ('kcnk', 0.0029595666619649107) +zone = ('ksz008', 0.0027373579645368663) + +[fips2015735325] +centroid = (0.69419516302973616, -1.7023300639051357) +description = Jefferson township, KS +station = ('kcnk', 0.0041847858657733297) +zone = ('ksz008', 0.0017929645793908096) + +[fips2015740325] +centroid = (0.69746961014598785, -1.7042224545999032) +description = Liberty township, KS +station = ('khjh', 0.0034075341917590429) +zone = ('ksz008', 0.0023446734611267399) + +[fips2015741075] +centroid = (0.69284946181657103, -1.7043013783886785) +description = Lincoln township, KS +station = ('kcnk', 0.0025475600421908432) +zone = ('ksz008', 0.0022768513018847766) + +[fips2015751575] +centroid = (0.69272585759894478, -1.706372124279707) +description = Norway township, KS +station = ('kcnk', 0.0028922140936133364) +zone = ('ksz008', 0.0028704791453015707) + +[fips2015759575] +centroid = (0.69449455680962324, -1.7005520271829591) +description = Richland township, KS +station = ('kcnk', 0.0050996068819472232) +zone = ('ksz008', 0.0029659572231368874) + +[fips2015761200] +centroid = (0.69747776083359458, -1.7024176270737086) +description = Rose Creek township, KS +station = ('khjh', 0.0033662924427819499) +zone = ('ksz008', 0.0027694651894221954) + +[fips2015763375] +centroid = (0.69435592530713741, -1.706272832498561) +description = Scandia township, KS +station = ('kcnk', 0.0043226962145703806) +zone = ('ksz008', 0.0016833515533421814) + +[fips2015772300] +centroid = (0.69603102251003146, -1.7061582865397527) +description = Union township, KS +station = ('khjh', 0.0052649633285552526) +zone = ('ksz008', 0.0016734575748654427) + +[fips2015775700] +centroid = (0.69743904943078527, -1.7063620711832157) +description = Washington township, KS +station = ('khjh', 0.0041263303528036345) +zone = ('ksz008', 0.0027915893915359301) + +[fips2015777975] +centroid = (0.69586830546386802, -1.708236205734007) +description = White Rock township, KS +station = ('khjh', 0.0062455859272133023) +zone = ('ksz008', 0.0030934843791431267) + +[fips20159] +centroid = (0.66928451494833407, -1.7139380218673472) +description = Rice County, KS +station = ('khut', 0.0067115976979574641) +zone = ('ksz050', 4.5215142225582794e-06) + +[fips2015900] +centroid = (0.66966721329341883, -1.6849889262429256) +description = Cottonwood Falls city, KS +station = ('kemp', 0.0047327201765518558) +zone = ('ksz053', 0.0013652529428040243) + +[fips2015903075] +centroid = (0.66848312956898837, -1.7138655732500971) +description = Atlanta township, KS +station = ('khut', 0.0061101865383780384) +zone = ('ksz050', 0.00080174634235853962) + +[fips2015905375] +centroid = (0.66667845912242629, -1.7174455926117878) +description = Bell township, KS +station = ('khut', 0.0077028122347749953) +zone = ('ksz050', 0.003793558308140545) + +[fips2015912075] +centroid = (0.66862252901634522, -1.7160082092530153) +description = Center township, KS +station = ('khut', 0.007523579196592212) +zone = ('ksz050', 0.0017572241678037743) + +[fips2015919725] +centroid = (0.66730025012174177, -1.7101100959387032) +description = East Washington township, KS +station = ('khut', 0.0033146730254506231) +zone = ('ksz050', 0.0035962214755930681) + +[fips2015921900] +centroid = (0.67157450909999838, -1.7158900330093627) +description = Eureka township, KS +station = ('khut', 0.0094382615682257476) +zone = ('ksz050', 0.0027573356384004242) + +[fips2015923100] +centroid = (0.67157176893307269, -1.7178393563443302) +description = Farmer township, KS +station = ('kgbd', 0.0064419426667411692) +zone = ('ksz050', 0.0038221494701187494) + +[fips2015925] +centroid = (0.67479924923915302, -1.6840992970165991) +description = Council Grove city, KS +station = ('kemp', 0.007001460168947593) +zone = ('ksz037', 0.0021959999531458766) + +[fips2015925175] +centroid = (0.67159423132054585, -1.7120065008907501) +description = Galt township, KS +station = ('khut', 0.0078324369287332725) +zone = ('ksz050', 0.0027601742890082195) + +[fips2015930425] +centroid = (0.67009104904897321, -1.713993261538173) +description = Harrison township, KS +station = ('khut', 0.0073471167839691169) +zone = ('ksz050', 0.00080929762860657906) + +[fips2015941100] +centroid = (0.67005462402748417, -1.7158920401380027) +description = Lincoln township, KS +station = ('khut', 0.0083433750822968517) +zone = ('ksz050', 0.0017191354219553523) + +[fips2015943525] +centroid = (0.66927151224540671, -1.7139617234385893) +description = Lyons city, KS +station = ('khut', 0.0067149059762038835) +zone = ('ksz050', 2.5689286414150424e-05) + +[fips2015947525] +centroid = (0.67017845513791308, -1.7121628823917288) +description = Mitchell township, KS +station = ('khut', 0.0066127869121288237) +zone = ('ksz050', 0.001651177015725368) + +[fips2015952150] +centroid = (0.67192987558899686, -1.7101382131929528) +description = Odessa township, KS +station = ('ksln', 0.0067353808955321866) +zone = ('ksz050', 0.0039801592935434851) + +[fips2015955925] +centroid = (0.67003357535670505, -1.7178458489691477) +description = Pioneer township, KS +station = ('kgbd', 0.00607969896756262) +zone = ('ksz050', 0.0031586149657184493) + +[fips2015958575] +centroid = (0.66865705162894962, -1.7176712462307782) +description = Raymond township, KS +station = ('kgbd', 0.006216487119712592) +zone = ('ksz050', 0.0029989647926251467) + +[fips2015960725] +centroid = (0.66848573010957391, -1.7099368371038579) +description = Rockville township, KS +station = ('khut', 0.0043451779558370011) +zone = ('ksz050', 0.0032345087208518015) + +[fips2015968200] +centroid = (0.66687796770922181, -1.7140261260879881) +description = Sterling city, KS +station = ('khut', 0.0052872024491058336) +zone = ('ksz050', 0.0024063080107152145) + +[fips2015968225] +centroid = (0.66739224642661443, -1.7146677440276061) +description = Sterling township, KS +station = ('khut', 0.0059775527025688136) +zone = ('ksz050', 0.0019769937189617545) + +[fips2015972325] +centroid = (0.67005455421431404, -1.7100689759815264) +description = Union township, KS +station = ('khut', 0.005874127486335483) +zone = ('ksz050', 0.0031258060998929985) + +[fips2015973100] +centroid = (0.66685800114257887, -1.7156234863259983) +description = Valley township, KS +station = ('khut', 0.0064152306807735305) +zone = ('ksz050', 0.0027646788493886809) + +[fips2015973825] +centroid = (0.67151164234034155, -1.713959157804589) +description = Victoria township, KS +station = ('khut', 0.0084810609433040134) +zone = ('ksz050', 0.0022285864667370113) + +[fips2015977425] +centroid = (0.66689201760970029, -1.7117894168383874) +description = West Washington township, KS +station = ('khut', 0.0038350344868036553) +zone = ('ksz050', 0.0029236703783353723) + +[fips2015979775] +centroid = (0.66850444003915532, -1.7120152624435954) +description = Wilson township, KS +station = ('khut', 0.0051412011030285715) +zone = ('ksz050', 0.0016937334660158941) + +[fips2016025] +centroid = (0.6943462736363738, -1.7086104741388046) +description = Courtland city, KS +station = ('kcnk', 0.0052196830617025182) +zone = ('ksz008', 0.0033837124225660907) + +[fips20161] +centroid = (0.68576099904581367, -1.6882131602365975) +description = Riley County, KS +station = ('kmhk', 0.0028194404873907995) +zone = ('ksz022', 0.00013917382551254965) + +[fips2016102725] +centroid = (0.68244777071358276, -1.6854266722726183) +description = Ashland township, KS +station = ('kmhk', 0.0016604638486921557) +zone = ('ksz036', 0.0030422889154269033) + +[fips2016103825] +centroid = (0.68685910785129101, -1.6911883357460096) +description = Bala township, KS +station = ('kmhk', 0.0048234841166329709) +zone = ('ksz022', 0.0024166222572931458) + +[fips2016112100] +centroid = (0.68895762193071897, -1.6908124092784225) +description = Center township, KS +station = ('kmhk', 0.0064982502254653692) +zone = ('ksz022', 0.0036421831791141287) + +[fips2016122950] +centroid = (0.68793159522334901, -1.6910011666370257) +description = Fancy Creek township, KS +station = ('kmhk', 0.0056440587619818574) +zone = ('ksz022', 0.0029203874615116765) + +[fips2016128075] +centroid = (0.68576099904581367, -1.6882131602365975) +description = Grant township, KS +station = ('kmhk', 0.0028194404873907995) +zone = ('ksz022', 0.00013917382551254965) + +[fips2016134900] +centroid = (0.68865637810182467, -1.6886976461836585) +description = Jackson township, KS +station = ('kmhk', 0.0057337404129460673) +zone = ('ksz022', 0.0028160874592230768) + +[fips2016144125] +centroid = (0.68435939493670706, -1.6895522117453123) +description = Madison township, KS +station = ('kmhk', 0.0021232160609513401) +zone = ('ksz022', 0.0017611579889663307) + +[fips2016144250] +centroid = (0.68396498543234152, -1.6860904035338593) +description = Manhattan city, KS +station = ('kmhk', 0.0014211584605189616) +zone = ('ksz022', 0.0025733565525055042) + +[fips2016144275] +centroid = (0.68312090929949199, -1.6847439518291156) +description = Manhattan township, KS +station = ('kmhk', 0.0020962869366128499) +zone = ('ksz022', 0.0039065753380134668) + +[fips2016145225] +centroid = (0.68994176073604097, -1.6907148628265285) +description = May Day township, KS +station = ('kmhk', 0.0073836337108457379) +zone = ('ksz022', 0.0044788294528767389) + +[fips2016150] +centroid = (0.65776604001687233, -1.6736966459825222) +description = Coyville city, KS +station = ('kcnu', 0.0057083516227200868) +zone = ('ksz095', 0.0030692211490990482) + +[fips2016152300] +centroid = (0.6828376947217708, -1.6874413930946579) +description = Ogden township, KS +station = ('kmhk', 0.00016782141585825838) +zone = ('ksz036', 0.0023164853630438863) + +[fips2016165075] +centroid = (0.68718330275984896, -1.6885822624668092) +description = Sherman township, KS +station = ('kmhk', 0.00426999713172141) +zone = ('ksz022', 0.0013423057742831589) + +[fips2016169650] +centroid = (0.68996689347726958, -1.6877712777765776) +description = Swede Creek township, KS +station = ('kmhk', 0.0069660228582504088) +zone = ('ksz022', 0.0041376224558742243) + +[fips2016179175] +centroid = (0.68494552885940441, -1.6877014122466201) +description = Wildcat township, KS +station = ('kmhk', 0.0019503662393119306) +zone = ('ksz022', 0.001036548569804691) + +[fips2016180900] +centroid = (0.6823072018956271, -1.6837199497036781) +description = Zeandale township, KS +station = ('kmhk', 0.0029715404511186437) +zone = ('ksz038', 0.0043460532371336225) + +[fips20163] +centroid = (0.68671735220944408, -1.7335394132707678) +description = Rooks County, KS +station = ('khlc', 0.0068763593671374431) +zone = ('ksz017', 7.1923445725123052e-05) + +[fips2016371203] +centroid = (0.68833317803094041, -1.729585649103055) +description = Township 1, KS +station = ('khlc', 0.0099965372518851566) +zone = ('ksz017', 0.0034308970304497439) + +[fips2016371207] +centroid = (0.68822501997719432, -1.7315332794686478) +description = Township 2, KS +station = ('khlc', 0.0084906990635556252) +zone = ('ksz017', 0.0021194222586950673) + +[fips2016371211] +centroid = (0.6891449132127504, -1.7334558294528897) +description = Township 3, KS +station = ('khlc', 0.00722652524315936) +zone = ('ksz017', 0.0023572307176943489) + +[fips2016371215] +centroid = (0.68671735220944408, -1.7335394132707678) +description = Township 4, KS +station = ('khlc', 0.0068763593671374431) +zone = ('ksz017', 7.1923445725123052e-05) + +[fips2016371219] +centroid = (0.68926839525732908, -1.736645279034569) +description = Township 5, KS +station = ('khlc', 0.0049695137418184297) +zone = ('ksz017', 0.0034446516589217839) + +[fips2016371224] +centroid = (0.68771800182948994, -1.7356518899842115) +description = Township 6, KS +station = ('khlc', 0.0052703613444715115) +zone = ('ksz017', 0.0018716653008857274) + +[fips2016371229] +centroid = (0.68677742644229767, -1.7374056142699079) +description = Township 7, KS +station = ('khlc', 0.0038890261580528038) +zone = ('ksz017', 0.0029815084922357868) + +[fips2016371234] +centroid = (0.68521504260249733, -1.7375637760067237) +description = Township 8, KS +station = ('khlc', 0.0041939604989687232) +zone = ('ksz017', 0.0034817504576069688) + +[fips2016371239] +centroid = (0.68373849405531018, -1.7376123485198067) +description = Township 9, KS +station = ('khlc', 0.0050006541962391562) +zone = ('ksz017', 0.004381444313973709) + +[fips2016371243] +centroid = (0.68455745490022346, -1.7354888064189051) +description = Township 10, KS +station = ('khlc', 0.0059269736735395959) +zone = ('ksz017', 0.0026890026013137078) + +[fips2016371246] +centroid = (0.6846426444210133, -1.7328469015301613) +description = Township 11, KS +station = ('khys', 0.0065868257297662762) +zone = ('ksz017', 0.0022140812502280728) + +[fips2016371249] +centroid = (0.68425340109123356, -1.7302383498834233) +description = Township 12, KS +station = ('khys', 0.0064438217424064494) +zone = ('ksz017', 0.0036055459265266496) + +[fips20165] +centroid = (0.67236352009494738, -1.73327222081558) +description = Rush County, KS +station = ('khys', 0.0057262644018754574) +zone = ('ksz046', 5.1016187898845877e-06) + +[fips2016501087] +centroid = (0.67123696242266262, -1.7371239704885135) +description = Alexander-Belle Prairie township, KS +station = ('khys', 0.0077090156148823452) +zone = ('ksz046', 0.003216390398241059) + +[fips2016504075] +centroid = (0.67046582359925389, -1.7312119818066483) +description = Banner township, KS +station = ('kgbd', 0.0045813020782957273) +zone = ('ksz046', 0.0024868892230511821) + +[fips2016506775] +centroid = (0.67438948083736983, -1.7333012456410406) +description = Big Timber township, KS +station = ('khys', 0.0037198689917008268) +zone = ('ksz046', 0.0020311812557240513) + +[fips2016512125] +centroid = (0.67047334596832997, -1.7332579614755912) +description = Center township, KS +station = ('kgbd', 0.0061495313054915754) +zone = ('ksz046', 0.001885112214615419) + +[fips2016525800] +centroid = (0.67055199050442482, -1.7292517676171484) +description = Garfield township, KS +station = ('kgbd', 0.0031478384567660877) +zone = ('ksz046', 0.0036294009880887559) + +[fips2016529812] +centroid = (0.67426812809447867, -1.7362292099941863) +description = Hampton-Fairview township, KS +station = ('khys', 0.0047650416881125012) +zone = ('ksz046', 0.0029982733705189884) + +[fips2016533750] +centroid = (0.6742547414191159, -1.7311857669612833) +description = Illinois township, KS +station = ('khys', 0.0039474967375304586) +zone = ('ksz046', 0.0025014615033514451) + +[fips2016537525] +centroid = (0.67250592150861754, -1.7343982025292117) +description = La Crosse-Brookdale township, KS +station = ('khys', 0.0057426734776163078) +zone = ('ksz046', 0.0008929003020401137) + +[fips2016542500] +centroid = (0.67248180105835509, -1.7313380992983971) +description = Lone Star township, KS +station = ('kgbd', 0.0055200963858782967) +zone = ('ksz046', 0.0015183482049117201) + +[fips2016555950] +centroid = (0.67246616290825723, -1.7293047732665312) +description = Pioneer township, KS +station = ('kgbd', 0.0042972638289782731) +zone = ('ksz046', 0.003105919600814066) + +[fips2016556325] +centroid = (0.674371661025707, -1.7294101911533519) +description = Pleasantdale township, KS +station = ('khys', 0.0044190948010410904) +zone = ('ksz046', 0.0036289399930440505) + +[fips2016572350] +centroid = (0.67047201951809854, -1.7350675886572289) +description = Union township, KS +station = ('kgbd', 0.00754787272120634) +zone = ('ksz046', 0.0023523969058711269) + +[fips2016625] +centroid = (0.69467750222181734, -1.7009508698236249) +description = Cuba city, KS +station = ('kcnk', 0.0050876540368145328) +zone = ('ksz008', 0.0026298975955643717) + +[fips2016675] +centroid = (0.65677300003236516, -1.7262225392608019) +description = Cullison city, KS +station = ('kptt', 0.0024658907053379535) +zone = ('ksz081', 0.0023098700737347443) + +[fips20167] +centroid = (0.67922697501853757, -1.7237855709328271) +description = Russell County, KS +station = ('krsl', 0.0011168373173637836) +zone = ('ksz032', 5.656898054178672e-05) + +[fips2016700] +centroid = (0.68013061923875762, -1.7062187272917491) +description = Culver city, KS +station = ('ksln', 0.0035575231171415251) +zone = ('ksz034', 0.0032198678231354686) + +[fips2016706700] +centroid = (0.67839115429304997, -1.7276244749824663) +description = Big Creek township, KS +station = ('krsl', 0.0022958686534711829) +zone = ('ksz032', 0.0031375124208744437) + +[fips2016712150] +centroid = (0.67777964328302875, -1.7222026620210236) +description = Center township, KS +station = ('krsl', 0.0020093847835091464) +zone = ('ksz032', 0.001845769282213033) + +[fips2016722200] +centroid = (0.67627356376489778, -1.7235771262602615) +description = Fairfield township, KS +station = ('krsl', 0.0022473348807651354) +zone = ('ksz032', 0.0029219124849531133) + +[fips2016722650] +centroid = (0.68138575531703682, -1.7197034727052154) +description = Fairview township, KS +station = ('krsl', 0.0049154865437884771) +zone = ('ksz032', 0.0038200201770552385) + +[fips2016728100] +centroid = (0.67775203217426216, -1.7252292374769069) +description = Grant township, KS +station = ('krsl', 0.00073799583558017035) +zone = ('ksz032', 0.0018558091891268428) + +[fips2016741125] +centroid = (0.67614615472950224, -1.7256856410763035) +description = Lincoln township, KS +station = ('krsl', 0.0023412644447492184) +zone = ('ksz032', 0.0034075729999289107) + +[fips2016743275] +centroid = (0.68161327643832681, -1.7217397308902247) +description = Luray township, KS +station = ('krsl', 0.0039817221551768896) +zone = ('ksz032', 0.0028712484669439547) + +[fips2016754350] +centroid = (0.68155119507683337, -1.72656668328271) +description = Paradise township, KS +station = ('krsl', 0.0035214154245297559) +zone = ('ksz032', 0.0032298565701281146) + +[fips2016756925] +centroid = (0.67774121113289976, -1.7198658755921135) +description = Plymouth township, KS +station = ('krsl', 0.0037956219052756876) +zone = ('ksz032', 0.0033385179162386249) + +[fips2016761825] +centroid = (0.6787168327314721, -1.7252754363422071) +description = Russell city, KS +station = ('krsl', 0.00059265837170452656) +zone = ('ksz032', 0.0012955289303249421) + +[fips2016761850] +centroid = (0.67919391848250477, -1.7249337183279594) +description = Russell township, KS +station = ('krsl', 0.00086612943657062675) +zone = ('ksz032', 0.00093868054694944158) + +[fips2016774600] +centroid = (0.68159824915346712, -1.7236249482817663) +description = Waldo township, KS +station = ('krsl', 0.0033482617393172133) +zone = ('ksz032', 0.0024064319279236573) + +[fips2016775] +centroid = (0.65702931908631301, -1.7179712334226109) +description = Cunningham city, KS +station = ('kptt', 0.0044899006685744734) +zone = ('ksz082', 0.0043614921702469457) + +[fips2016780125] +centroid = (0.67605047577990784, -1.7277323363302397) +description = Winterset township, KS +station = ('krsl', 0.0033115722292648233) +zone = ('ksz032', 0.0044285186366963165) + +[fips20169] +centroid = (0.67694911090517473, -1.7043166849262184) +description = Saline County, KS +station = ('ksln', 5.2290786201471516e-05) +zone = ('ksz049', 4.2365282768148094e-05) + +[fips2016910100] +centroid = (0.67924188013034958, -1.7022041733061894) +description = Cambria township, KS +station = ('ksln', 0.0028633772204611479) +zone = ('ksz049', 0.0028560617305932825) + +[fips2016917125] +centroid = (0.67927308661737518, -1.7003688548779623) +description = Dayton township, KS +station = ('ksln', 0.0038840738206262575) +zone = ('ksz049', 0.0038790982670947275) + +[fips2016920650] +centroid = (0.67926666380572798, -1.7044778486293475) +description = Elm Creek township, KS +station = ('ksln', 0.0023732344835766589) +zone = ('ksz049', 0.0023632856306806706) + +[fips2016921925] +centroid = (0.6762099639669551, -1.7002822341871859) +description = Eureka township, KS +station = ('ksln', 0.003217888494856914) +zone = ('ksz049', 0.0032213306399580068) + +[fips2016922925] +centroid = (0.67475889722684701, -1.7070386306144587) +description = Falun township, KS +station = ('ksln', 0.0030148889865743724) +zone = ('ksz049', 0.0030209468899487003) + +[fips2016926475] +centroid = (0.67917384719610685, -1.7080670309696113) +description = Glendale township, KS +station = ('ksln', 0.0037051100139677611) +zone = ('ksz049', 0.0036979570503733136) + +[fips2016928375] +centroid = (0.67766822146358141, -1.7023010041730899) +description = Greeley township, KS +station = ('ksln', 0.001748085264363127) +zone = ('ksz049', 0.0017449617509793485) + +[fips2016929275] +centroid = (0.6747700324274748, -1.7003563583205179) +description = Gypsum township, KS +station = ('ksln', 0.0037493098154436268) +zone = ('ksz049', 0.0037560386646328802) + +[fips2016940350] +centroid = (0.67471912117319399, -1.7023091548606968) +description = Liberty township, KS +station = ('ksln', 0.0026812788837181772) +zone = ('ksz049', 0.0026901065378479852) + +[fips2016952425] +centroid = (0.67779156388181983, -1.7064212727514432) +description = Ohio township, KS +station = ('ksln', 0.0018699869844720099) +zone = ('ksz049', 0.001864072294633982) + +[fips2016956625] +centroid = (0.67906626510101387, -1.7064321112460983) +description = Pleasant Valley township, KS +station = ('ksln', 0.0027253776295993056) +zone = ('ksz049', 0.0027166826730636359) + +[fips2016962700] +centroid = (0.67743214822895659, -1.7036937769161815) +description = Salina city, KS +station = ('ksln', 0.00072124314783618046) +zone = ('ksz049', 0.00071485405249925506) + +[fips2016966050] +centroid = (0.67774356732738994, -1.7043923973091697) +description = Smoky Hill township, KS +station = ('ksln', 0.00084890601970164447) +zone = ('ksz049', 0.00083894382753225093) + +[fips2016966075] +centroid = (0.67474699408134842, -1.7041521701909252) +description = Smoky View township, KS +station = ('ksln', 0.0021535724409833374) +zone = ('ksz049', 0.0021635255755185485) + +[fips2016966125] +centroid = (0.6760783137814772, -1.70445590984065) +description = Smolan township, KS +station = ('ksln', 0.00082599221621550026) +zone = ('ksz049', 0.00083561518845488684) + +[fips2016966375] +centroid = (0.67766434683264187, -1.7005131412472247) +description = Solomon township, KS +station = ('ksln', 0.0030597612395476745) +zone = ('ksz049', 0.0030586017403182058) + +[fips2016967500] +centroid = (0.67697104969387234, -1.7081840552959573) +description = Spring Creek township, KS +station = ('ksln', 0.0030175963718983719) +zone = ('ksz049', 0.0030159972705594115) + +[fips2016975] +centroid = (0.68625011011539261, -1.7380816326490831) +description = Damar city, KS +station = ('khlc', 0.0034560392703142798) +zone = ('ksz017', 0.0035461570662929116) + +[fips2016975125] +centroid = (0.67603899151342972, -1.7022293060474183) +description = Walnut township, KS +station = ('ksln', 0.0018381024968526472) +zone = ('ksz049', 0.0018439342098138464) + +[fips2016975725] +centroid = (0.67607667317198028, -1.7062078364372169) +description = Washington township, KS +station = ('ksln', 0.0016892379360021964) +zone = ('ksz049', 0.0016928706957173936) + +[fips2017000] +centroid = (0.65076262714056476, -1.708538950546058) +description = Danville city, KS +station = ('kict', 0.0089862619056505257) +zone = ('ksz091', 0.0030344398893355222) + +[fips20171] +centroid = (0.67163545599747787, -1.7611482182027054) +description = Scott County, KS +station = ('kgck', 0.010202118298434378) +zone = ('ksz043', 9.2850138610494272e-06) + +[fips2017105175] +centroid = (0.67439726500583375, -1.7632662276098781) +description = Beaver township, KS +station = ('kgck', 0.013326354528071085) +zone = ('ksz043', 0.0032116968071336008) + +[fips2017134575] +centroid = (0.6716020853021798, -1.763734761247576) +description = Isbel township, KS +station = ('kgck', 0.010869002039283007) +zone = ('ksz043', 0.0020177802356851839) + +[fips2017136600] +centroid = (0.67165004695002462, -1.7585895306126966) +description = Keystone township, KS +station = ('kgck', 0.0098970353680198804) +zone = ('ksz043', 0.0020103348224108533) + +[fips2017137850] +centroid = (0.66911427553309455, -1.7592081276594811) +description = Lake township, KS +station = ('kgck', 0.0074223350162952286) +zone = ('ksz043', 0.0029526957720093457) + +[fips2017146175] +centroid = (0.67417724880032737, -1.7592474499275284) +description = Michigan township, KS +station = ('kgck', 0.01245585826172594) +zone = ('ksz043', 0.0029433823141962342) + +[fips2017150] +centroid = (0.64670981553780116, -1.670202269927227) +description = Dearing city, KS +station = ('kidp', 0.0019740040319529322) +zone = ('ksz099', 0.002509842621748283) + +[fips2017163575] +centroid = (0.67228396798764145, -1.7618066087564352) +description = Scott township, KS +station = ('kgck', 0.010966023854072599) +zone = ('ksz043', 0.00081928711102052126) + +[fips2017163600] +centroid = (0.67157152458697744, -1.7610746002148563) +description = Scott City city, KS +station = ('kgck', 0.010125640605324702) +zone = ('ksz043', 9.5214681875259178e-05) + +[fips2017173125] +centroid = (0.66911275709664531, -1.763063071284946) +description = Valley township, KS +station = ('kgck', 0.0084145033073455486) +zone = ('ksz043', 0.0029362797070718706) + +[fips2017225] +centroid = (0.66291031072066298, -1.7651071310917117) +description = Deerfield city, KS +station = ('kgck', 0.00584472502398655) +zone = ('ksz062', 0.0025878685741764986) + +[fips20173] +centroid = (0.65770650683608678, -1.7009883071360801) +description = Sedgwick County, KS +station = ('kict', 0.00069162909668516153) +zone = ('ksz083', 2.8620650647137602e-05) + +[fips2017300425] +centroid = (0.65645196416975327, -1.704368905177438) +description = Afton township, KS +station = ('kict', 0.0031101199218244537) +zone = ('ksz083', 0.0029429158100056376) + +[fips2017303125] +centroid = (0.65794806040456288, -1.7024829896541955) +description = Attica township, KS +station = ('kict', 0.0017535694472604389) +zone = ('ksz083', 0.0011814654045412905) + +[fips2017305337] +centroid = (0.65930095237424624, -1.6972701624173865) +description = Bel Aire city, KS +station = ('kaao', 0.00060113423406449643) +zone = ('ksz083', 0.0033569856154662867) + +[fips2017317375] +centroid = (0.65831670884916904, -1.7002677828609791) +description = Delano township, KS +station = ('kict', 0.0012183868384808164) +zone = ('ksz083', 0.00083843358542397403) + +[fips2017319250] +centroid = (0.66085237554634402, -1.7024061079006452) +description = Eagle township, KS +station = ('kict', 0.0040188757082204223) +zone = ('ksz083', 0.0033155958214671887) + +[fips2017321550] +centroid = (0.6548365572272774, -1.7062146257680071) +description = Erie township, KS +station = ('kict', 0.0050471286697787139) +zone = ('ksz083', 0.0050292097887939579) + +[fips2017325400] +centroid = (0.65778981140128456, -1.7043175750441368) +description = Garden Plain township, KS +station = ('kict', 0.0030708377360035644) +zone = ('ksz083', 0.0026127247500978006) + +[fips2017327300] +centroid = (0.65770786819290328, -1.7061744831952113) +description = Grand River township, KS +station = ('kict', 0.0045050699787383026) +zone = ('ksz083', 0.0040815440291830235) + +[fips2017328125] +centroid = (0.66100140921117179, -1.698472781538473) +description = Grant township, KS +station = ('kaao', 0.0025354389568302683) +zone = ('ksz068', 0.0033534200544394458) + +[fips2017328400] +centroid = (0.66100229932909027, -1.7043840197287603) +description = Greeley township, KS +station = ('khut', 0.0044753347438614031) +zone = ('ksz083', 0.0042225685569988449) + +[fips2017329300] +centroid = (0.65627676801943813, -1.6964667873626937) +description = Gypsum township, KS +station = ('kiab', 0.00095200863003155932) +zone = ('ksz083', 0.0038827822331046315) + +[fips2017333775] +centroid = (0.6563093707698654, -1.7024209606525795) +description = Illinois township, KS +station = ('kict', 0.0016995570486736239) +zone = ('ksz083', 0.0017989990305677366) + +[fips2017336250] +centroid = (0.65971876674388119, -1.6984699017452074) +description = Kechi township, KS +station = ('kaao', 0.0016064085966259578) +zone = ('ksz083', 0.0028349513072943966) + +[fips2017341150] +centroid = (0.66102242297536584, -1.6966629623706175) +description = Lincoln township, KS +station = ('kaao', 0.0021617475189134611) +zone = ('ksz068', 0.0041902949321078594) + +[fips2017347125] +centroid = (0.65789390283787341, -1.696686506862227) +description = Minneha township, KS +station = ('kaao', 0.00096922991440399398) +zone = ('ksz083', 0.0034311509273097936) + +[fips2017348550] +centroid = (0.65645447744387619, -1.7059893386681595) +description = Morton township, KS +station = ('kict', 0.0043720234731425694) +zone = ('ksz083', 0.0041364738695097835) + +[fips2017350725] +centroid = (0.65495223765009958, -1.7023091025008195) +description = Ninnescah township, KS +station = ('kict', 0.0025818353012814869) +zone = ('ksz083', 0.0029545682569424993) + +[fips2017352450] +centroid = (0.65492225289355033, -1.700361925920832) +description = Ohio township, KS +station = ('kict', 0.0021983682518191983) +zone = ('ksz083', 0.0028492608282650032) + +[fips2017354425] +centroid = (0.65946471661796091, -1.7004636262563455) +description = Park township, KS +station = ('kict', 0.0023488845832507614) +zone = ('ksz083', 0.001795061442730114) + +[fips2017355075] +centroid = (0.65956041302084767, -1.6964196634728896) +description = Payne township, KS +station = ('kaao', 0.00074608073355875452) +zone = ('ksz083', 0.0040732901409987737) + +[fips2017360125] +centroid = (0.65598943446468228, -1.6980307769054057) +description = Riverside township, KS +station = ('kiab', 0.00063354297335785706) +zone = ('ksz083', 0.0029327342579663724) + +[fips2017360675] +centroid = (0.65487820078323, -1.6966401509172941) +description = Rockford township, KS +station = ('kiab', 0.0018307230594413249) +zone = ('ksz083', 0.0044857785727631192) + +[fips2017362675] +centroid = (0.65466623054557527, -1.6985122434328608) +description = Salem township, KS +station = ('kiab', 0.0019968326502167568) +zone = ('ksz083', 0.0036452347428762061) + +[fips2017365100] +centroid = (0.65950608092123308, -1.7041528159627486) +description = Sherman township, KS +station = ('kict', 0.0037298201209794669) +zone = ('ksz083', 0.003053865839978374) + +[fips2017372375] +centroid = (0.6593932453850917, -1.7023161187244122) +description = Union township, KS +station = ('kict', 0.0026785422933702399) +zone = ('ksz083', 0.0019602072799400879) + +[fips2017373275] +centroid = (0.6608218671910191, -1.7004946407571535) +description = Valley Center township, KS +station = ('kaao', 0.0035483643949991588) +zone = ('ksz083', 0.003125431519691229) + +[fips2017374050] +centroid = (0.65471112041393653, -1.7043552916092726) +description = Viola township, KS +station = ('kict', 0.0038683137301786597) +zone = ('ksz083', 0.0040089686711688123) + +[fips2017374300] +centroid = (0.65624884275140616, -1.7005601429639807) +description = Waco township, KS +station = ('kict', 0.00086789746117435236) +zone = ('ksz083', 0.0015187259133792837) + +[fips2017379000] +centroid = (0.65782670766167162, -1.6989502338086488) +description = Wichita city, KS +station = ('kict', 0.0014397763489743813) +zone = ('ksz083', 0.0016388452554228579) + +[fips20175] +centroid = (0.64892362606761589, -1.7602472966961185) +description = Seward County, KS +station = ('klbl', 0.0027606214061050884) +zone = ('ksz086', 0.00022701771680424558) + +[fips2017523000] +centroid = (0.64799022398364936, -1.758462016857546) +description = Fargo township, KS +station = ('klbl', 0.0032719746333679934) +zone = ('ksz086', 0.0017958727897816062) + +[fips2017525] +centroid = (0.68485517316402866, -1.6749025463226028) +description = Delia city, KS +station = ('ktop', 0.0054047236272101546) +zone = ('ksz024', 0.0038673790477534767) + +[fips2017539825] +centroid = (0.64657661200928906, -1.7615428720531663) +description = Liberal city, KS +station = ('klbl', 0.0005294557188196444) +zone = ('ksz086', 0.0027870888450055565) + +[fips2017539850] +centroid = (0.64798500544918591, -1.7622152077876196) +description = Liberal township, KS +station = ('klbl', 0.0013405670721728885) +zone = ('ksz086', 0.0019897048221234888) + +[fips2017564075] +centroid = (0.65131080015203113, -1.7603846017483726) +description = Seward township, KS +station = ('klbl', 0.0048854995049662023) +zone = ('ksz086', 0.002170946400062844) + +[fips2017600] +centroid = (0.68547055880498931, -1.7063388583041639) +description = Delphos city, KS +station = ('kcnk', 0.0050760520034425346) +zone = ('ksz034', 0.0029306900350394012) + +[fips2017625] +centroid = (0.68755142760567955, -1.6690313285320639) +description = Denison city, KS +station = ('ktop', 0.0057098480272176648) +zone = ('ksz024', 0.0022650017030912562) + +[fips20177] +centroid = (0.68140804317158465, -1.6712516142334035) +description = Shawnee County, KS +station = ('ktop', 0.0017138311656860888) +zone = ('ksz039', 1.1308341903490778e-05) + +[fips2017703275] +centroid = (0.67917742512107337, -1.6727806273779058) +description = Auburn township, KS +station = ('kfoe', 0.0026458967854713676) +zone = ('ksz039', 0.0025181660320000993) + +[fips2017718475] +centroid = (0.68112788292005466, -1.673769443665623) +description = Dover township, KS +station = ('kfoe', 0.0037550041853473006) +zone = ('ksz039', 0.0019651261696950004) + +[fips2017729075] +centroid = (0.68364970915626122, -1.6730149203766935) +description = Grove township, KS +station = ('ktop', 0.0035235959807170827) +zone = ('ksz039', 0.002625643956807202) + +[fips2017745850] +centroid = (0.68306635030707474, -1.6715240950362249) +description = Menoken township, KS +station = ('ktop', 0.0022337800995807754) +zone = ('ksz039', 0.0016757912537361792) + +[fips2017747275] +centroid = (0.68064097096533327, -1.6717492774163172) +description = Mission township, KS +station = ('kfoe', 0.002140934650545072) +zone = ('ksz039', 0.00084978887505199514) + +[fips2017747700] +centroid = (0.67953741673258983, -1.6680042546271427) +description = Monmouth township, KS +station = ('kfoe', 0.0010917216097500598) +zone = ('ksz039', 0.0031465732890420717) + +[fips2017750] +centroid = (0.69345221127374723, -1.6627668706077583) +description = Denton city, KS +station = ('kstj', 0.0047737315841144901) +zone = ('ksz102', 0.0019180021629865394) + +[fips2017761425] +centroid = (0.68350585911931183, -1.6749140131357882) +description = Rossville township, KS +station = ('ktop', 0.0047960665353462464) +zone = ('ksz039', 0.0035276435889674291) + +[fips2017765625] +centroid = (0.68246539853902799, -1.6730560752404555) +description = Silver Lake township, KS +station = ('ktop', 0.0031208358935186464) +zone = ('ksz039', 0.0017504201948814501) + +[fips2017766225] +centroid = (0.68337639059539901, -1.6696028715022144) +description = Soldier township, KS +station = ('ktop', 0.001580149594626999) +zone = ('ksz039', 0.0023575832113298285) + +[fips2017770100] +centroid = (0.68106807048658879, -1.6679145621568829) +description = Tecumseh township, KS +station = ('ktop', 0.0012125907944142561) +zone = ('ksz039', 0.0026236145916216963) + +[fips2017771000] +centroid = (0.68130969386823481, -1.6701897908230754) +description = Topeka city, KS +station = ('ktop', 0.00098892483311673399) +zone = ('ksz039', 0.00083988379756382763) + +[fips2017771025] +centroid = (0.6802985548193845, -1.6695948255343629) +description = Topeka township, KS +station = ('kfoe', 0.00079713266629724512) +zone = ('ksz039', 0.0017036270556510184) + +[fips2017779350] +centroid = (0.67909989759569978, -1.6702445592550028) +description = Williamsport township, KS +station = ('kfoe', 0.00077225217519012431) +zone = ('ksz039', 0.0024354994399047843) + +[fips2017800] +centroid = (0.65550409330628767, -1.6974244320699703) +description = Derby city, KS +station = ('kiab', 0.0010426067059751184) +zone = ('ksz083', 0.00360898356944255) + +[fips2017850] +centroid = (0.68019523132766635, -1.6572101087885511) +description = De Soto city, KS +station = ('kixd', 0.002868518224445608) +zone = ('ksz105', 0.002333900709214722) + +[fips2017875] +centroid = (0.67955959986738257, -1.6951458698249067) +description = Detroit CDP, KS +station = ('kfri', 0.0053177858636152698) +zone = ('ksz035', 0.0012711607068307297) + +[fips20179] +centroid = (0.68679653779760708, -1.7530297493738836) +description = Sheridan County, KS +station = ('kcbk', 0.0083280524277259543) +zone = ('ksz015', 9.0695572100264689e-06) + +[fips2017900300] +centroid = (0.68994238905457161, -1.7495998283278644) +description = Adell township, KS +station = ('khlc', 0.0062401980926133039) +zone = ('ksz015', 0.0041209313526672205) + +[fips2017907450] +centroid = (0.68831314165112745, -1.7569275059259) +description = Bloomfield township, KS +station = ('kcbk', 0.0051978255638152598) +zone = ('ksz015', 0.0033672033773304317) + +[fips2017908125] +centroid = (0.68830020876137021, -1.7501107560130933) +description = Bowcreek township, KS +station = ('khlc', 0.0060668657320839979) +zone = ('ksz015', 0.0027200558643421489) + +[fips2017919675] +centroid = (0.6846017862632241, -1.7493662509140699) +description = East Saline township, KS +station = ('khlc', 0.0059182312847870224) +zone = ('ksz015', 0.0035893957521400443) + +[fips2017925] +centroid = (0.64890680109362664, -1.6880117666942098) +description = Dexter city, KS +station = ('kwld', 0.0044196394465485719) +zone = ('ksz093', 0.0019703508700529911) + +[fips2017936525] +centroid = (0.68679384999055892, -1.7530400119098855) +description = Kenneth township, KS +station = ('kcbk', 0.0083206893374399155) +zone = ('ksz015', 1.555441421354431e-06) + +[fips2017942225] +centroid = (0.68691932171048475, -1.756108492721109) +description = Logan township, KS +station = ('kcbk', 0.0059675163418378765) +zone = ('ksz015', 0.002375999696881841) + +[fips2017954650] +centroid = (0.68843653642924341, -1.7541672851671635) +description = Parnell township, KS +station = ('kcbk', 0.0073320826140027837) +zone = ('ksz015', 0.0018607049932624598) + +[fips2017957500] +centroid = (0.68980894117996427, -1.7570177394482283) +description = Prairie Dog township, KS +station = ('kcbk', 0.0053750721355695311) +zone = ('ksz015', 0.00430551378037238) + +[fips2017964750] +centroid = (0.68993163782637945, -1.7545431767281654) +description = Sheridan township, KS +station = ('kcbk', 0.007247114684260857) +zone = ('ksz015', 0.0033470739507166216) + +[fips2017966400] +centroid = (0.68463625651595106, -1.7566494575227647) +description = Solomon township, KS +station = ('kcbk', 0.0064767703476647474) +zone = ('ksz015', 0.0035287671703406356) + +[fips2017967350] +centroid = (0.68440259183569407, -1.7534466561723074) +description = Springbrook township, KS +station = ('kcbk', 0.0087556542402024776) +zone = ('ksz015', 0.0024103342800644344) + +[fips2017972400] +centroid = (0.68982705769759978, -1.752059625562455) +description = Union township, KS +station = ('kcbk', 0.0091000467339653057) +zone = ('ksz015', 0.0031278117687973919) + +[fips2017973150] +centroid = (0.68641514844946117, -1.7502340286181617) +description = Valley township, KS +station = ('khlc', 0.006078639487603771) +zone = ('ksz015', 0.0022027647643904106) + +[fips2017977375] +centroid = (0.68461770366600228, -1.75126080581711) +description = West Saline township, KS +station = ('khlc', 0.0072703613404388068) +zone = ('ksz015', 0.0025739778221511586) + +[fips2018050] +centroid = (0.67162219149516278, -1.7534700959441618) +description = Dighton city, KS +station = ('kgck', 0.01043225048810178) +zone = ('ksz044', 4.9637197193126929e-06) + +[fips20181] +centroid = (0.68681065751125558, -1.7753464542143866) +description = Sherman County, KS +station = ('kgld', 0.00037850181976018156) +zone = ('ksz013', 2.0792326608382694e-06) + +[fips2018126875] +centroid = (0.68678009679605323, -1.7751867391345366) +description = Goodland city, KS +station = ('kgld', 0.00033105420856763512) +zone = ('ksz013', 0.00012927861615258146) + +[fips2018128150] +centroid = (0.68884983039611569, -1.7794292505736993) +description = Grant township, KS +station = ('kgld', 0.0038534258170826261) +zone = ('ksz013', 0.0037541294771913235) + +[fips2018134450] +centroid = (0.68416388315389876, -1.7715660536012745) +description = Iowa township, KS +station = ('kgld', 0.0039440985873651722) +zone = ('ksz013', 0.0039477941926944742) + +[fips2018134600] +centroid = (0.68601552041063207, -1.7744366838884922) +description = Itasca township, KS +station = ('kgld', 0.0011482505017583935) +zone = ('ksz013', 0.0010637168104430242) + +[fips2018141175] +centroid = (0.68621413887950899, -1.7782187600176862) +description = Lincoln township, KS +station = ('kgld', 0.0026350383630834406) +zone = ('ksz013', 0.002298686502559686) + +[fips2018141650] +centroid = (0.68908853907791101, -1.7705663639123173) +description = Llanos township, KS +station = ('kgld', 0.0039712841547216663) +zone = ('ksz013', 0.0043400605853406108) + +[fips2018142250] +centroid = (0.68642455577412953, -1.7764347019095903) +description = Logan township, KS +station = ('kgld', 0.0012876734105051032) +zone = ('ksz013', 0.0009246013615724927) + +[fips2018144025] +centroid = (0.68376535467249844, -1.779244106046648) +description = McPherson township, KS +station = ('kgld', 0.0046657339852374758) +zone = ('ksz013', 0.0042864893742770435) + +[fips2018165175] +centroid = (0.68908768386657759, -1.7725190382794485) +description = Shermanville township, KS +station = ('kgld', 0.0027769385232526774) +zone = ('ksz013', 0.0031560395008490469) + +[fips2018165950] +centroid = (0.68376043284400767, -1.7757511960679242) +description = Smoky township, KS +station = ('kgld', 0.0033681207820059796) +zone = ('ksz013', 0.0030669186152469125) + +[fips2018168150] +centroid = (0.6862322728504372, -1.7803160523666379) +description = Stateline township, KS +station = ('kgld', 0.0041974670658096224) +zone = ('ksz013', 0.0038852751105470612) + +[fips2018172425] +centroid = (0.68644160764092144, -1.7705833983258166) +description = Union township, KS +station = ('kgld', 0.0034740367407856796) +zone = ('ksz013', 0.0037041110771398283) + +[fips2018174175] +centroid = (0.68895734267803854, -1.7753677995911386) +description = Voltaire township, KS +station = ('kgld', 0.0019007671194556021) +zone = ('ksz013', 0.0021458970078738807) + +[fips2018175750] +centroid = (0.6864348183101312, -1.7725305923590966) +description = Washington township, KS +station = ('kgld', 0.0020148891790952028) +zone = ('ksz013', 0.0022119735227511283) + +[fips2018250] +centroid = (0.6590480192590471, -1.7456410201586134) +description = Dodge City city, KS +station = ('kddc', 0.00071409734607740969) +zone = ('ksz078', 0.0021604997426250792) + +[fips20183] +centroid = (0.69437330878648729, -1.7241310064983821) +description = Smith County, KS +station = ('khde', 0.013723088051415673) +zone = ('ksz006', 7.7366163070948107e-06) + +[fips2018304100] +centroid = (0.69286358153021954, -1.7241324027617837) +description = Banner township, KS +station = ('krsl', 0.014518381278759653) +zone = ('ksz006', 0.0015174067109840509) + +[fips2018305200] +centroid = (0.69753795723949585, -1.7242650477849351) +description = Beaver township, KS +station = ('khde', 0.011100159272503284) +zone = ('ksz006', 0.0031586141225264791) + +[fips2018307200] +centroid = (0.6943795396119169, -1.7221510177284571) +description = Blaine township, KS +station = ('kcnk', 0.014315539133569396) +zone = ('ksz006', 0.0015224626368071025) + +[fips2018311350] +centroid = (0.6945091303088774, -1.7278975666505259) +description = Cedar township, KS +station = ('khde', 0.012302647591379451) +zone = ('ksz006', 0.002896155321607649) + +[fips2018312175] +centroid = (0.6944030317436487, -1.7240825910649318) +description = Center township, KS +station = ('khde', 0.013717697955481636) +zone = ('ksz006', 4.4054848989576099e-05) + +[fips2018315525] +centroid = (0.69602185953145845, -1.7220882207819703) +description = Cora township, KS +station = ('khsi', 0.01296567417707141) +zone = ('ksz006', 0.0022707351696863902) + +[fips2018316575] +centroid = (0.69274125140294729, -1.7223037689445915) +description = Crystal Plains township, KS +station = ('kcnk', 0.014062704308812448) +zone = ('ksz006', 0.0021600182720492699) + +[fips2018318300] +centroid = (0.69110245704849471, -1.7279954796215629) +description = Dor township, KS +station = ('khlc', 0.011838490212864221) +zone = ('ksz006', 0.0044256144237488637) + +[fips2018325] +centroid = (0.67800604739359738, -1.7207219770435092) +description = Dorrance city, KS +station = ('krsl', 0.0030985053987692824) +zone = ('ksz032', 0.0026234477517964243) + +[fips2018325825] +centroid = (0.6914691332710462, -1.7221738117284882) +description = Garfield township, KS +station = ('krsl', 0.013260214273970916) +zone = ('ksz006', 0.0032786039912709513) + +[fips2018326150] +centroid = (0.69720480879187519, -1.7281086991301398) +description = German township, KS +station = ('khde', 0.0097622438537763277) +zone = ('nez084', 0.0040850097114482403) + +[fips2018330100] +centroid = (0.69127992212683753, -1.7242029838767341) +description = Harlan township, KS +station = ('krsl', 0.012933813429811933) +zone = ('ksz006', 0.0031015439649914596) + +[fips2018330550] +centroid = (0.69284419092223004, -1.7261764800218418) +description = Harvey township, KS +station = ('khlc', 0.013791612701121159) +zone = ('ksz006', 0.0021983277556661502) + +[fips2018333225] +centroid = (0.69141010623574373, -1.7258822349632481) +description = Houston township, KS +station = ('krsl', 0.013092166077728807) +zone = ('ksz006', 0.0032617595762844294) + +[fips2018338450] +centroid = (0.69438770775281622, -1.7261115188670826) +description = Lane township, KS +station = ('khde', 0.012966564643437704) +zone = ('ksz006', 0.001520996299182408) + +[fips2018341200] +centroid = (0.69121082454175098, -1.7201222819125239) +description = Lincoln township, KS +station = ('kcnk', 0.012210793190546541) +zone = ('ksz006', 0.0044238285246215852) + +[fips2018342275] +centroid = (0.69747507302654654, -1.7201594399722988) +description = Logan township, KS +station = ('khsi', 0.011251468388433912) +zone = ('nez085', 0.0038148059743590076) + +[fips2018345000] +centroid = (0.69774460422293194, -1.7261944569131373) +description = Martin township, KS +station = ('khde', 0.0100354478586552) +zone = ('nez084', 0.0035254856446140558) + +[fips2018351650] +centroid = (0.6943764154725558, -1.7201881506384942) +description = Oak township, KS +station = ('kcnk', 0.012873447422390225) +zone = ('ksz006', 0.003030834685123082) + +[fips2018354825] +centroid = (0.69729076625753594, -1.7220048813101876) +description = Pawnee township, KS +station = ('khsi', 0.011721096724252983) +zone = ('ksz006', 0.0033365796638206691) + +[fips2018356300] +centroid = (0.69593726342261431, -1.7260665940921363) +description = Pleasant township, KS +station = ('khde', 0.011616580525177262) +zone = ('ksz006', 0.0021514414336887585) + +[fips2018369625] +centroid = (0.69590394508719378, -1.7280656593107855) +description = Swan township, KS +station = ('khde', 0.010960877591533035) +zone = ('ksz006', 0.0033829249766752093) + +[fips2018373175] +centroid = (0.69272997657597934, -1.7279006907898871) +description = Valley township, KS +station = ('khlc', 0.012544483689391671) +zone = ('ksz006', 0.0033351834824186044) + +[fips2018375775] +centroid = (0.69589694631689325, -1.7241351254754169) +description = Washington township, KS +station = ('khde', 0.012455694157519241) +zone = ('ksz006', 0.001515959714474079) + +[fips2018376275] +centroid = (0.69298959430221363, -1.7203531017061002) +description = Webster township, KS +station = ('kcnk', 0.012634888929463914) +zone = ('ksz006', 0.0032217013469653766) + +[fips2018378000] +centroid = (0.69576810611151096, -1.720123765442388) +description = White Rock township, KS +station = ('khsi', 0.012938929435165943) +zone = ('ksz006', 0.0033765947194550703) + +[fips2018400] +centroid = (0.65480887630534079, -1.6931487593750196) +description = Douglass city, KS +station = ('kiab', 0.0039444956648479147) +zone = ('ksz069', 0.0051703112417294441) + +[fips20185] +centroid = (0.66384697657033076, -1.7229871002533323) +description = Stafford County, KS +station = ('kgbd', 0.0058445283753553621) +zone = ('ksz066', 8.5613155980731974e-05) + +[fips2018500] +centroid = (0.68945867105238146, -1.7199717298112469) +description = Downs city, KS +station = ('krsl', 0.011690595821784415) +zone = ('ksz018', 0.0039960968950635157) + +[fips2018500800] +centroid = (0.66081153484184729, -1.7255504129658588) +description = Albano township, KS +station = ('kptt', 0.0032496049454649421) +zone = ('ksz066', 0.003600028502804194) + +[fips2018509825] +centroid = (0.6669586193739564, -1.7215081780583625) +description = Byron township, KS +station = ('kgbd', 0.0039625402589698443) +zone = ('ksz066', 0.0033851121523689794) + +[fips2018513825] +centroid = (0.66093821083895699, -1.7273097223051617) +description = Clear Creek township, KS +station = ('kptt', 0.0042074419298544037) +zone = ('ksz066', 0.0044554360905007771) + +[fips2018514125] +centroid = (0.66392703482311977, -1.7253219319134805) +description = Cleveland township, KS +station = ('kgbd', 0.005409673754685527) +zone = ('ksz066', 0.0018785693793426739) + +[fips2018518375] +centroid = (0.66550748282067818, -1.7253917276302675) +description = Douglas township, KS +station = ('kgbd', 0.003828274984834706) +zone = ('ksz066', 0.0025950015857187235) + +[fips2018519350] +centroid = (0.66390710316306201, -1.7194625649085626) +description = East Cooper township, KS +station = ('kptt', 0.0067263832563067257) +zone = ('ksz066', 0.0027467297340691517) + +[fips2018522675] +centroid = (0.6623121165728344, -1.7194632630402633) +description = Fairview township, KS +station = ('kptt', 0.0053776592206580594) +zone = ('ksz066', 0.0031065829194183588) + +[fips2018523250] +centroid = (0.66246497250872405, -1.7273085005746853) +description = Farmington township, KS +station = ('kptt', 0.0053872246783508038) +zone = ('ksz066', 0.0036770423404187545) + +[fips2018531025] +centroid = (0.66548653886965425, -1.7215527886740436) +description = Hayes township, KS +station = ('kgbd', 0.0049650840980313962) +zone = ('ksz066', 0.0020384583155064707) + +[fips2018541225] +centroid = (0.66690184381338902, -1.7252355032089217) +description = Lincoln township, KS +station = ('kgbd', 0.0024443323075679017) +zone = ('ksz066', 0.003614890601604893) + +[fips2018551375] +centroid = (0.667143798807593, -1.7233189746105992) +description = North Seward township, KS +station = ('kgbd', 0.0028034594226435828) +zone = ('ksz066', 0.0033886515788904546) + +[fips2018552475] +centroid = (0.66245451798650479, -1.7234629119140112) +description = Ohio township, KS +station = ('kptt', 0.0044655627019832425) +zone = ('ksz066', 0.0013752594262509891) + +[fips2018558050] +centroid = (0.66612377603284989, -1.7195336696222889) +description = Putnam township, KS +station = ('kgbd', 0.0057108285802018764) +zone = ('ksz066', 0.0035719153882192121) + +[fips2018559650] +centroid = (0.66246322717947215, -1.7253951833821866) +description = Richland township, KS +station = ('kptt', 0.0047147145001183964) +zone = ('ksz066', 0.0023301259606202458) + +[fips2018561300] +centroid = (0.66080717151871737, -1.7236242152434804) +description = Rose Valley township, KS +station = ('kptt', 0.0028194230446901619) +zone = ('ksz066', 0.0030087436835070079) + +[fips2018562300] +centroid = (0.66389424008647491, -1.7235371407670983) +description = St. John township, KS +station = ('kgbd', 0.0056646404390215937) +zone = ('ksz066', 0.00048289057016810672) + +[fips2018566975] +centroid = (0.66537127732585255, -1.7233127961450472) +description = South Seward township, KS +station = ('kgbd', 0.0043342880927339207) +zone = ('ksz066', 0.001629237783391072) + +[fips2018567800] +centroid = (0.66236383067857107, -1.7214324482221184) +description = Stafford township, KS +station = ('kptt', 0.0046730945650364942) +zone = ('ksz066', 0.0018420647662744142) + +[fips2018572450] +centroid = (0.66104589765380517, -1.7216982618671972) +description = Union township, KS +station = ('kptt', 0.0033763653533790097) +zone = ('ksz066', 0.0028942048531417643) + +[fips2018576875] +centroid = (0.66408650555687454, -1.7216264590217703) +description = West Cooper township, KS +station = ('kgbd', 0.0060856572643578398) +zone = ('ksz066', 0.0010865310837397638) + +[fips2018580800] +centroid = (0.66100758767672385, -1.7194879943557642) +description = York township, KS +station = ('kptt', 0.0043849464170883498) +zone = ('ksz066', 0.0038796728814034409) + +[fips2018600] +centroid = (0.69152896315780454, -1.7526406282171514) +description = Dresden city, KS +station = ('kcbk', 0.0091309440690036242) +zone = ('ksz003', 0.0028977941362178248) + +[fips20187] +centroid = (0.65564919998029847, -1.7765598769235433) +description = Stanton County, KS +station = ('keha', 0.009963166647487226) +zone = ('ksz074', 8.8092552141201652e-05) + +[fips2018706600] +centroid = (0.65546091386059335, -1.7733992776343992) +description = Big Bow township, KS +station = ('keha', 0.010414803565617111) +zone = ('ksz074', 0.0024376356031995676) + +[fips2018744400] +centroid = (0.65572671005237948, -1.7793829993485217) +description = Manter township, KS +station = ('keha', 0.0099993117283666798) +zone = ('ksz074', 0.0023130167979716967) + +[fips2018767975] +centroid = (0.65556367884695066, -1.7763027201115544) +description = Stanton township, KS +station = ('keha', 0.0099074943954738474) +zone = ('ksz074', 0.0001365304581719596) + +[fips20189] +centroid = (0.64930360169906765, -1.7682942244789011) +description = Stevens County, KS +station = ('klbl', 0.0055384576470366648) +zone = ('ksz085', 0.00018120310899930205) + +[fips2018904125] +centroid = (0.64685214713830141, -1.7658498734081904) +description = Banner township, KS +station = ('klbl', 0.0029195530882798592) +zone = ('ksz085', 0.0029644832961593748) + +[fips2018912200] +centroid = (0.64886746137228668, -1.76664616242612) +description = Center township, KS +station = ('klbl', 0.004184274219238302) +zone = ('ksz085', 0.0012885954968655177) + +[fips2018930150] +centroid = (0.65161530774662657, -1.770593713221696) +description = Harmony township, KS +station = ('klbl', 0.0083312678427058997) +zone = ('ksz085', 0.0031172501686077447) + +[fips2018948625] +centroid = (0.65114239333250612, -1.7663339753828158) +description = Moscow township, KS +station = ('klbl', 0.0055745765523604641) +zone = ('ksz085', 0.0025154527040100131) + +[fips2018950] +centroid = (0.67328020192467974, -1.6819294338773496) +description = Dunlap city, KS +station = ('kemp', 0.0048159422162275542) +zone = ('ksz054', 0.0036019224707371186) + +[fips2018974200] +centroid = (0.64684019163292528, -1.7701161038718876) +description = Voorhees township, KS +station = ('kguy', 0.0066887368809092664) +zone = ('ksz085', 0.0027394425575991781) + +[fips2018976800] +centroid = (0.64912184311076482, -1.7707506881346202) +description = West Center township, KS +station = ('klbl', 0.0072535465187481898) +zone = ('ksz085', 0.0020082528058972884) + +[fips2019050] +centroid = (0.67168793804808546, -1.6969350766542961) +description = Durham city, KS +station = ('kewk', 0.0076290086803721254) +zone = ('ksz052', 0.0028315924310496738) + +[fips20191] +centroid = (0.64990237180554933, -1.7015799388459212) +description = Sumner County, KS +station = ('kwld', 0.006510665715427637) +zone = ('ksz092', 0.00023438499138359595) + +[fips2019103575] +centroid = (0.65019995044301426, -1.6983547449211609) +description = Avon township, KS +station = ('kwld', 0.0041163078546642652) +zone = ('ksz092', 0.0023508374993003022) + +[fips2019105525] +centroid = (0.65317144330770471, -1.6980703958794259) +description = Belle Plaine township, KS +station = ('kiab', 0.0033818625044786856) +zone = ('ksz092', 0.0041414216470288855) + +[fips2019107750] +centroid = (0.64685340377536282, -1.7060187998259333) +description = Bluff township, KS +station = ('kbkn', 0.007774906028742575) +zone = ('okz007', 0.0046694350098266078) + +[fips2019109900] +centroid = (0.64638272338268499, -1.7035924430998106) +description = Caldwell city, KS +station = ('kbkn', 0.0061464028879656398) +zone = ('ksz092', 0.0039808940211832136) + +[fips2019109925] +centroid = (0.64684080249816345, -1.7042382672829264) +description = Caldwell township, KS +station = ('kbkn', 0.0068217162584141792) +zone = ('ksz092', 0.0038702964417523839) + +[fips2019113150] +centroid = (0.64864063838269759, -1.7040004138124645) +description = Chikaskia township, KS +station = ('kbkn', 0.0082325761656386418) +zone = ('ksz092', 0.0025090286737336326) + +[fips2019115300] +centroid = (0.65329605981629713, -1.7041749118310789) +description = Conway township, KS +station = ('kict', 0.0047892594633123292) +zone = ('ksz092', 0.0040888249924154125) + +[fips2019116300] +centroid = (0.65175460247422823, -1.7060227268167503) +description = Creek township, KS +station = ('kict', 0.0069082195230585055) +zone = ('ksz092', 0.0041942341730308169) + +[fips2019118200] +centroid = (0.65024522428381104, -1.706012987879524) +description = Dixon township, KS +station = ('kict', 0.0081327994563013036) +zone = ('ksz091', 0.0046983478789526731) + +[fips2019118525] +centroid = (0.64874136133383009, -1.702208152656884) +description = Downs township, KS +station = ('kwld', 0.0068987049737735768) +zone = ('ksz092', 0.0013832960995823205) + +[fips2019119800] +centroid = (0.65328335381934266, -1.7060953848735108) +description = Eden township, KS +station = ('kict', 0.005843749567534519) +zone = ('ksz092', 0.0050970420055194829) + +[fips2019122875] +centroid = (0.64687335288871317, -1.7021862313214788) +description = Falls township, KS +station = ('kbkn', 0.0060034686807943468) +zone = ('ksz092', 0.003123689389588897) + +[fips2019125] +centroid = (0.6779686798943122, -1.6858448706146887) +description = Dwight city, KS +station = ('kfri', 0.0043602240822825204) +zone = ('ksz037', 0.0028560615957054693) + +[fips2019126975] +centroid = (0.65322279089429847, -1.6963159036488586) +description = Gore township, KS +station = ('kiab', 0.0034704949711046921) +zone = ('ksz092', 0.0051544198708005839) + +[fips2019128525] +centroid = (0.64882653340132745, -1.6983316716684496) +description = Greene township, KS +station = ('kwld', 0.0038120870763409119) +zone = ('ksz092', 0.0025918477469148446) + +[fips2019129175] +centroid = (0.64689862525628195, -1.6983909255965546) +description = Guelph township, KS +station = ('kwld', 0.004250908445153182) +zone = ('ksz092', 0.0037965141555620923) + +[fips2019130125] +centroid = (0.65174479372383198, -1.6984907584297686) +description = Harmon township, KS +station = ('kiab', 0.0048390746945905878) +zone = ('ksz092', 0.0028807433802102108) + +[fips2019133800] +centroid = (0.65309592291097096, -1.7023875550506964) +description = Illinois township, KS +station = ('kict', 0.0042812071165660654) +zone = ('ksz092', 0.0033008044665394391) + +[fips2019134925] +centroid = (0.64873769614240095, -1.700226523277462) +description = Jackson township, KS +station = ('kwld', 0.0053196677169194363) +zone = ('ksz092', 0.0014472111640577183) + +[fips2019142400] +centroid = (0.65320048558645794, -1.7001830645790874) +description = London township, KS +station = ('kiab', 0.0039035586735302907) +zone = ('ksz092', 0.0034019504008690254) + +[fips2019148375] +centroid = (0.64872327972277943, -1.7060171592164366) +description = Morris township, KS +station = ('kbkn', 0.0091787917519581385) +zone = ('ksz091', 0.0045767782854209682) + +[fips2019153335] +centroid = (0.65029343027775111, -1.702229567846806) +description = Osborne township, KS +station = ('kict', 0.0069547653435747319) +zone = ('ksz092', 0.00084182159070805862) + +[fips2019153875] +centroid = (0.65038720681846085, -1.6963774265049913) +description = Oxford township, KS +station = ('kwld', 0.0028245379225669315) +zone = ('ksz092', 0.0039356961446915745) + +[fips2019154175] +centroid = (0.65201675092787781, -1.6967725515943504) +description = Palestine township, KS +station = ('kwld', 0.0042074196049009275) +zone = ('ksz092', 0.004161037421483129) + +[fips2019161950] +centroid = (0.65024735358549846, -1.7041112945798436) +description = Ryan township, KS +station = ('kict', 0.0074334484629365281) +zone = ('ksz092', 0.0022737827602319488) + +[fips2019164000] +centroid = (0.65183076864278533, -1.7003302831014933) +description = Seventy-Six township, KS +station = ('kiab', 0.0051710969584193214) +zone = ('ksz092', 0.0020624972668264688) + +[fips2019166675] +centroid = (0.64689010804953229, -1.700287243282139) +description = South Haven township, KS +station = ('kbkn', 0.0055662303296941645) +zone = ('ksz092', 0.0031264000504519079) + +[fips2019167575] +centroid = (0.65177278880503398, -1.7041251175875196) +description = Springdale township, KS +station = ('kict', 0.0060563474397913007) +zone = ('ksz092', 0.0029256289882742927) + +[fips2019169225] +centroid = (0.65178799062281889, -1.7022278923307241) +description = Sumner township, KS +station = ('kict', 0.0054956303887225538) +zone = ('ksz092', 0.002018767263645332) + +[fips2019173350] +centroid = (0.64886587312266741, -1.6966075481668668) +description = Valverde township, KS +station = ('kwld', 0.0024424443632409692) +zone = ('ksz092', 0.0038705331193368935) + +[fips2019175300] +centroid = (0.64689005568965474, -1.6965016939477335) +description = Walton township, KS +station = ('kwld', 0.0029567248008515669) +zone = ('okz008', 0.0043715402129125419) + +[fips2019176475] +centroid = (0.6507084695738754, -1.6997743433748553) +description = Wellington city, KS +station = ('kwld', 0.0053541664681200224) +zone = ('ksz092', 0.0014419571426712986) + +[fips2019176500] +centroid = (0.65023084277077459, -1.7003733752807249) +description = Wellington township, KS +station = ('kwld', 0.0056501070099013607) +zone = ('ksz092', 0.00079268057869952854) + +[fips2019275] +centroid = (0.65602317167912327, -1.6662649816676529) +description = Earlton city, KS +station = ('kcnu', 0.0013964860453799326) +zone = ('ksz096', 0.0023120240151811126) + +[fips20193] +centroid = (0.68692155573192737, -1.7642388297888443) +description = Thomas County, KS +station = ('kcbk', 0.0013399555919146773) +zone = ('ksz014', 0.00039532173002294885) + +[fips2019300] +centroid = (0.65772090580241571, -1.6974827086136943) +description = Eastborough city, KS +station = ('kiab', 0.0011914512992272168) +zone = ('ksz083', 0.0027970612921377229) + +[fips2019304325] +centroid = (0.68954829370947135, -1.7675192982910153) +description = Barrett township, KS +station = ('kcbk', 0.0032804162807943448) +zone = ('ksz014', 0.0040011123006907868) + +[fips2019314650] +centroid = (0.6874059893191109, -1.7635841916930064) +description = Colby city, KS +station = ('kcbk', 0.00077926900405017336) +zone = ('ksz014', 0.00061688370582900606) + +[fips2019319475] +centroid = (0.68720094803858656, -1.7666695498380969) +description = East Hale township, KS +station = ('kcbk', 0.0025279095380349647) +zone = ('ksz014', 0.0022911874529608499) + +[fips2019336925] +centroid = (0.68455242835197772, -1.7676622756633389) +description = Kingery township, KS +station = ('kcbk', 0.0047740307977560369) +zone = ('ksz014', 0.0037719418702140193) + +[fips2019337425] +centroid = (0.68832090836629889, -1.7608154362742277) +description = Lacey township, KS +station = ('kcbk', 0.0021976303810141112) +zone = ('ksz014', 0.002729827509496561) + +[fips2019345775] +centroid = (0.6864082893055008, -1.75906274173279) +description = Menlo township, KS +station = ('kcbk', 0.0039688677552921605) +zone = ('ksz015', 0.0046737313223731347) + +[fips2019348200] +centroid = (0.68667864080663488, -1.7645560084738094) +description = Morgan township, KS +station = ('kcbk', 0.0016579438775861976) +zone = ('ksz014', 0.00063462754087000961) + +[fips2019351300] +centroid = (0.68641916270674086, -1.7606831054103413) +description = North Randall township, KS +station = ('kcbk', 0.0028965394659816648) +zone = ('ksz014', 0.0024036696858550552) + +[fips2019361525] +centroid = (0.68946450045208307, -1.7639511820748233) +description = Rovohl township, KS +station = ('kcbk', 0.0013013916819627934) +zone = ('ksz014', 0.0026662103372397496) + +[fips2019365900] +centroid = (0.68819363895724339, -1.7587359811902314) +description = Smith township, KS +station = ('kcbk', 0.0037996135368993265) +zone = ('ksz015', 0.0046196572619471767) + +[fips2019366875] +centroid = (0.68414290429628977, -1.759933521403195) +description = South Randall township, KS +station = ('kcbk', 0.004961444205341092) +zone = ('ksz014', 0.0039760416281371868) + +[fips2019368975] +centroid = (0.68464486098916333, -1.7635938608170625) +description = Summers township, KS +station = ('kcbk', 0.0035387812625440672) +zone = ('ksz014', 0.0021613409638115751) + +[fips2019376650] +centroid = (0.68971532171888728, -1.7596840963997924) +description = Wendell township, KS +station = ('kcbk', 0.0034268691737331502) +zone = ('ksz014', 0.0042837293560759743) + +[fips2019376975] +centroid = (0.68720775482266938, -1.7686250341853238) +description = West Hale township, KS +station = ('kcbk', 0.0039622146680937395) +zone = ('ksz014', 0.0037898962393804097) + +[fips20195] +centroid = (0.67930486906305398, -1.7429804402468732) +description = Trego County, KS +station = ('khlc', 0.0077852067087902091) +zone = ('ksz030', 0.00015888335520942737) + +[fips2019514925] +centroid = (0.68042402653931033, -1.7463578792422849) +description = Collyer township, KS +station = ('khlc', 0.007320633001627704) +zone = ('ksz030', 0.0028137670711784308) + +[fips2019524500] +centroid = (0.6766506421497912, -1.7463748787491993) +description = Franklin township, KS +station = ('khlc', 0.010869915734178923) +zone = ('ksz030', 0.00358803508698644) + +[fips2019526425] +centroid = (0.67918121248555019, -1.7392309843213987) +description = Glencoe township, KS +station = ('khys', 0.0053352254917243686) +zone = ('ksz030', 0.0030189409407055138) + +[fips2019552250] +centroid = (0.68107676222626368, -1.7400357032796159) +description = Ogallah township, KS +station = ('khlc', 0.0062793125789364348) +zone = ('ksz030', 0.0030503017948802277) + +[fips2019560150] +centroid = (0.67679606298306727, -1.7398909107648703) +description = Riverside township, KS +station = ('khys', 0.0058730967953813367) +zone = ('ksz030', 0.0034619734245266423) + +[fips2019574475] +centroid = (0.68076063073884996, -1.7430767300617058) +description = WaKeeney township, KS +station = ('khlc', 0.0063377699984258525) +zone = ('ksz030', 0.0015781938164105727) + +[fips2019579137] +centroid = (0.67666209150968426, -1.7432238787709413) +description = Wilcox township, KS +station = ('khlc', 0.010434522088511896) +zone = ('ksz030', 0.0025221041251156317) + +[fips2019600] +centroid = (0.68669808377450192, -1.6600980003820711) +description = Easton city, KS +station = ('kmci', 0.0052338838332503445) +zone = ('ksz103', 0.0027547853866176984) + +[fips20197] +centroid = (0.67989569792143911, -1.6790287664737051) +description = Wabaunsee County, KS +station = ('kfoe', 0.0074927453079222071) +zone = ('ksz038', 6.017487422979659e-05) + +[fips2019701375] +centroid = (0.68103775411748169, -1.6809779676356251) +description = Alma township, KS +station = ('kmhk', 0.0053904088781456588) +zone = ('ksz038', 0.0018771428021489116) + +[fips2019723125] +centroid = (0.67949596516285493, -1.6809212793415202) +description = Farmer township, KS +station = ('kmhk', 0.0061625493907320212) +zone = ('ksz038', 0.001467919577807979) + +[fips2019725850] +centroid = (0.67850835315232139, -1.6832368076601409) +description = Garfield township, KS +station = ('kmhk', 0.0055592902775919344) +zone = ('ksz038', 0.0034966553462306821) + +[fips2019736150] +centroid = (0.68358759288818272, -1.678270769979564) +description = Kaw township, KS +station = ('kfoe', 0.0079978647022138569) +zone = ('ksz038', 0.0037787140469149778) + +[fips2019744525] +centroid = (0.6815708649375033, -1.6760503097452992) +description = Maple Hill township, KS +station = ('kfoe', 0.0055573587648862915) +zone = ('ksz038', 0.0029172571625223059) + +[fips2019746725] +centroid = (0.6787114571173759, -1.6783837102354606) +description = Mill Creek township, KS +station = ('kfoe', 0.007030756615772963) +zone = ('ksz038', 0.0012775867154689513) + +[fips2019747300] +centroid = (0.6790062606813303, -1.676568951785822) +description = Mission Creek township, KS +station = ('kfoe', 0.0055950913457583715) +zone = ('ksz038', 0.00214315198898227) + +[fips2019750275] +centroid = (0.68169583051194604, -1.6784801745832185) +description = Newbury township, KS +station = ('kfoe', 0.007380839210553102) +zone = ('ksz038', 0.0018935549481081855) + +[fips2019756800] +centroid = (0.67719631934042712, -1.6754265116173439) +description = Plumb township, KS +station = ('kfoe', 0.0052286476364359659) +zone = ('ksz038', 0.0039070135454444387) + +[fips2019760650] +centroid = (0.67686622521899753, -1.68055565031652) +description = Rock Creek township, KS +station = ('kemp', 0.0079165502822012897) +zone = ('ksz038', 0.0032059032715088991) + +[fips2019774250] +centroid = (0.68267962025141771, -1.6808643641546126) +description = Wabaunsee township, KS +station = ('kmhk', 0.0051135910496233677) +zone = ('ksz038', 0.0031340887139220484) + +[fips2019775800] +centroid = (0.68032286725586477, -1.6832216931088186) +description = Washington township, KS +station = ('kmhk', 0.0042354431824371212) +zone = ('ksz038', 0.0032420653333502165) + +[fips2019779525] +centroid = (0.67726375886272427, -1.6773260756153372) +description = Wilmington township, KS +station = ('kfoe', 0.0065634341142399681) +zone = ('ksz038', 0.0029414268507681556) + +[fips2019825] +centroid = (0.67652019624149706, -1.6581151492721729) +description = Edgerton city, KS +station = ('kixd', 0.0018891384296961021) +zone = ('ksz105', 0.003251894265614454) + +[fips2019875] +centroid = (0.69162383925594306, -1.7421860710911203) +description = Edmond city, KS +station = ('khlc', 0.004549484305889414) +zone = ('ksz004', 0.0029650371132170345) + +[fips20199] +centroid = (0.6793977903924302, -1.7762408307362787) +description = Wallace County, KS +station = ('kgld', 0.0077402245501752391) +zone = ('ksz027', 0.00020248503989725458) + +[fips2019900] +centroid = (0.64679837354404734, -1.6643268458931908) +description = Edna city, KS +station = ('kcfv', 0.0029247260412239677) +zone = ('ksz100', 0.0024646181113868381) + +[fips2019930450] +centroid = (0.67657376039624073, -1.7726732032122772) +description = Harrison township, KS +station = ('kgld', 0.010658385976619071) +zone = ('ksz027', 0.0037659896851782856) + +[fips2019964400] +centroid = (0.67967144056585038, -1.7759417162090718) +description = Sharon Springs township, KS +station = ('kgld', 0.0074424320105701052) +zone = ('ksz027', 0.00046732016695166047) + +[fips2019974775] +centroid = (0.68042482939076621, -1.7728647007378058) +description = Wallace township, KS +station = ('kgld', 0.0068559175777406049) +zone = ('ksz027', 0.0027953587548790104) + +[fips2019976700] +centroid = (0.6787329246671755, -1.7791479907647405) +description = Weskan township, KS +station = ('kitr', 0.0078574543822774318) +zone = ('ksz027', 0.0024145217000434548) + +[fips2020000] +centroid = (0.68204269724748745, -1.6549005669492647) +description = Edwardsville city, KS +station = ('kmkc', 0.003039112490935806) +zone = ('ksz104', 0.00097027769607261314) + +[fips2020025] +centroid = (0.68979536251838369, -1.6650042605357673) +description = Effingham city, KS +station = ('kstj', 0.0077444705577103534) +zone = ('ksz025', 0.0011541385254435447) + +[fips2020050] +centroid = (0.66416520245284694, -1.6951980551695414) +description = Elbing city, KS +station = ('kewk', 0.0021401125832103346) +zone = ('ksz068', 0.0041234419561527085) + +[fips2020075] +centroid = (0.66009153416552213, -1.6905538911096172) +description = El Dorado city, KS +station = ('kaao', 0.0050496185451407707) +zone = ('ksz069', 0.00075219861163800666) + +[fips20201] +centroid = (0.69423462492412369, -1.694638101185624) +description = Washington County, KS +station = ('kcnk', 0.0084295406982943435) +zone = ('ksz009', 0.00017088049929619588) + +[fips2020104275] +centroid = (0.69284129367567171, -1.6905693721800821) +description = Barnes township, KS +station = ('kmhk', 0.010128085042769649) +zone = ('ksz009', 0.0033813479321716132) + +[fips2020108250] +centroid = (0.69276805966025801, -1.698389791132541) +description = Brantford township, KS +station = ('kcnk', 0.005193550594488219) +zone = ('ksz009', 0.0033944026543341775) + +[fips2020112625] +centroid = (0.69602932954065699, -1.6923923511304977) +description = Charleston township, KS +station = ('kbie', 0.0078893607815017624) +zone = ('ksz009', 0.0023185639752859501) + +[fips2020114225] +centroid = (0.6912080843748255, -1.6982595895703421) +description = Clifton township, KS +station = ('kcnk', 0.0047610327927765476) +zone = ('ksz009', 0.0042848412634011127) + +[fips2020114750] +centroid = (0.69425469621052172, -1.696278518696281) +description = Coleman township, KS +station = ('kcnk', 0.0073470304252528417) +zone = ('ksz009', 0.0013752388035711098) + +[fips2020123275] +centroid = (0.69577184111611023, -1.6944060073016938) +description = Farmington township, KS +station = ('kbie', 0.0087971239362147277) +zone = ('ksz009', 0.0014082126843908808) + +[fips2020124525] +centroid = (0.69740412539245289, -1.6923525925301375) +description = Franklin township, KS +station = ('kbie', 0.0066158771607509265) +zone = ('ksz009', 0.0034550934512791124) + +[fips2020125] +centroid = (0.64580053390409731, -1.6804142961004009) +description = Elgin city, KS +station = ('kbvo', 0.0055136043946391287) +zone = ('ksz098', 0.0026373647223395299) + +[fips2020128175] +centroid = (0.69409901284124376, -1.6982625915366556) +description = Grant township, KS +station = ('kcnk', 0.0060158220668121614) +zone = ('ksz009', 0.0029079394949209003) + +[fips2020128650] +centroid = (0.69274694117630886, -1.6924921839637117) +description = Greenleaf township, KS +station = ('kcnk', 0.0094357711300387184) +zone = ('ksz009', 0.0022339424082012931) + +[fips2020129425] +centroid = (0.69601117811643631, -1.6982770603161546) +description = Haddam township, KS +station = ('khjh', 0.0060922896286380876) +zone = ('ksz009', 0.0033384515561672322) + +[fips2020129900] +centroid = (0.69589078530463377, -1.6905169948492298) +description = Hanover township, KS +station = ('kbie', 0.0076185019856943497) +zone = ('ksz009', 0.0034145536790133107) + +[fips2020132025] +centroid = (0.69734010671548974, -1.6945671360982377) +description = Highland township, KS +station = ('kbie', 0.007556867362192533) +zone = ('ksz009', 0.0029753445732769411) + +[fips2020133950] +centroid = (0.69737702042916949, -1.6905356175123487) +description = Independence township, KS +station = ('kbie', 0.0061696631620648725) +zone = ('ksz009', 0.0042783103468778247) + +[fips2020136850] +centroid = (0.69129472251889434, -1.692500718623754) +description = Kimeo township, KS +station = ('kmhk', 0.0091652106426043482) +zone = ('ksz009', 0.0034325596938815216) + +[fips2020141250] +centroid = (0.69119836289089187, -1.6904119609348449) +description = Lincoln township, KS +station = ('kmhk', 0.0085083906786478248) +zone = ('ksz009', 0.0044608458842113879) + +[fips2020141450] +centroid = (0.69297118107860511, -1.6943294048008237) +description = Linn township, KS +station = ('kcnk', 0.0081472818944451058) +zone = ('ksz009', 0.0013998871688513334) + +[fips2020141500] +centroid = (0.6942949784096577, -1.6905738053163823) +description = Little Blue township, KS +station = ('kbie', 0.0091969325303441329) +zone = ('ksz009', 0.0030140290329421998) + +[fips2020142300] +centroid = (0.69423352536669503, -1.6923728907093381) +description = Logan township, KS +station = ('kbie', 0.009578616711015871) +zone = ('ksz009', 0.0016359998197753934) + +[fips2020143025] +centroid = (0.69725992628965316, -1.6964291231574355) +description = Lowe township, KS +station = ('khjh', 0.0062785509338635272) +zone = ('ksz009', 0.0032531822384947715) + +[fips2020146750] +centroid = (0.69586779931838494, -1.6964972957180184) +description = Mill Creek township, KS +station = ('khjh', 0.0071185794028099068) +zone = ('ksz009', 0.0021500323450555203) + +[fips2020164775] +centroid = (0.69118689607770623, -1.6963675828480103) +description = Sheridan township, KS +station = ('kcnk', 0.0061958749509745436) +zone = ('ksz009', 0.0034898131304103657) + +[fips2020165125] +centroid = (0.69131741179917028, -1.6944838838929177) +description = Sherman township, KS +station = ('kcnk', 0.0076515209070622701) +zone = ('ksz009', 0.0030478800293494116) + +[fips2020168550] +centroid = (0.692970308413979, -1.6962934412613855) +description = Strawberry township, KS +station = ('kcnk', 0.006735980824482582) +zone = ('ksz009', 0.0019643352730122649) + +[fips2020172475] +centroid = (0.69732750543829047, -1.6982511770833477) +description = Union township, KS +station = ('khjh', 0.0051386850316489088) +zone = ('ksz009', 0.0041336228276290686) + +[fips2020175825] +centroid = (0.69493605529720781, -1.6938440287358441) +description = Washington city, KS +station = ('kcnk', 0.0093014563781038256) +zone = ('ksz009', 0.00075878254088008177) + +[fips2020175850] +centroid = (0.69423462492412369, -1.694638101185624) +description = Washington township, KS +station = ('kcnk', 0.0084295406982943435) +zone = ('ksz009', 0.00017088049929619588) + +[fips2020250] +centroid = (0.65083659419426432, -1.6739509404545381) +description = Elk City city, KS +station = ('kidp', 0.0031289428102195269) +zone = ('ksz099', 0.0028841928883308349) + +[fips20203] +centroid = (0.67163624139564126, -1.768846411747647) +description = Wichita County, KS +station = ('kgck', 0.013121616061156494) +zone = ('ksz042', 3.1412481911329326e-06) + +[fips2020300] +centroid = (0.65230008767864667, -1.6788705872835969) +description = Elk Falls city, KS +station = ('kidp', 0.0070486690345776416) +zone = ('ksz094', 0.0015654304565904543) + +[fips2020339575] +centroid = (0.67163624139564126, -1.768846411747647) +description = Leoti township, KS +station = ('kgck', 0.013121616061156494) +zone = ('ksz042', 3.1412481911329326e-06) + +[fips2020350] +centroid = (0.64583736035131434, -1.7783894532185314) +description = Elkhart city, KS +station = ('keha', 0.00016516334426198306) +zone = ('ksz084', 0.0035314911984650446) + +[fips2020425] +centroid = (0.66943592226094462, -1.7205933113710521) +description = Ellinwood city, KS +station = ('kgbd', 0.0038874947002004506) +zone = ('ksz047', 0.0032040365402893618) + +[fips2020450] +centroid = (0.67954099465755635, -1.7375949824937493) +description = Ellis city, KS +station = ('khys', 0.004210945191379341) +zone = ('ksz031', 0.0032715026500451105) + +[fips20205] +centroid = (0.65551974890967801, -1.6710685466481618) +description = Wilson County, KS +station = ('kcnu', 0.0040827089093411553) +zone = ('ksz095', 2.8121626007335485e-05) + +[fips2020500] +centroid = (0.67601495832962977, -1.7144105348557397) +description = Ellsworth city, KS +station = ('krsl', 0.0083345845912408834) +zone = ('ksz048', 0.00070946123686304718) + +[fips2020511375] +centroid = (0.65477746037880491, -1.6699859712730274) +description = Cedar township, KS +station = ('kcnu', 0.0038147787399856487) +zone = ('ksz095', 0.0011255455337545505) + +[fips2020512225] +centroid = (0.6547518214920931, -1.6721225160768562) +description = Center township, KS +station = ('kcnu', 0.0051875881670352961) +zone = ('ksz095', 0.0011623670023974771) + +[fips2020513000] +centroid = (0.65490942472354818, -1.6683012223993696) +description = Chetopa township, KS +station = ('kcnu', 0.0028774598649527459) +zone = ('ksz095', 0.0022576384407059719) + +[fips2020514250] +centroid = (0.65783791267546943, -1.6706734390120954) +description = Clifton township, KS +station = ('kcnu', 0.0033321414175441614) +zone = ('ksz095', 0.0023224387915478299) + +[fips2020514825] +centroid = (0.65781147093730175, -1.6684890721867618) +description = Colfax township, KS +station = ('kcnu', 0.0016264179639353088) +zone = ('ksz095', 0.0030436218131531315) + +[fips2020518800] +centroid = (0.65307812055260051, -1.6740008568711451) +description = Duck Creek township, KS +station = ('kidp', 0.0050925061361635961) +zone = ('ksz095', 0.0033995832081810153) + +[fips2020522825] +centroid = (0.65531067591858172, -1.6741995451531919) +description = Fall River township, KS +station = ('kidp', 0.0072455151110600155) +zone = ('ksz095', 0.0025166658957639144) + +[fips2020524575] +centroid = (0.65507610366711366, -1.6724154695918034) +description = Fredonia city, KS +station = ('kcnu', 0.005235579541119229) +zone = ('ksz095', 0.0011843533671887464) + +[fips2020529200] +centroid = (0.65633193787709365, -1.6707346651622552) +description = Guilford township, KS +station = ('kcnu', 0.0035227744860700017) +zone = ('ksz095', 0.00083378904971269125) + +[fips2020549650] +centroid = (0.65317510849913396, -1.6700110691076708) +description = Neodesha city, KS +station = ('kppf', 0.0030112565910254459) +zone = ('ksz095', 0.0024950204174886224) + +[fips2020549675] +centroid = (0.65328365052531545, -1.6700743896529333) +description = Neodesha township, KS +station = ('kppf', 0.003111789172291947) +zone = ('ksz095', 0.0023760442661717937) + +[fips2020550200] +centroid = (0.65333864585004575, -1.6680112010375658) +description = Newark township, KS +station = ('kppf', 0.0020004156160067735) +zone = ('ksz095', 0.0032530603597899972) + +[fips2020556650] +centroid = (0.65626715125525958, -1.6686161321563071) +description = Pleasant Valley township, KS +station = ('kcnu', 0.0020278794992197604) +zone = ('ksz095', 0.0020544636449971168) + +[fips2020557425] +centroid = (0.65633633610680864, -1.6724185937311644) +description = Prairie township, KS +station = ('kcnu', 0.0048089012406561668) +zone = ('ksz095', 0.0013573542909373784) + +[fips2020569900] +centroid = (0.65313829950520941, -1.6721402137154715) +description = Talleyrand township, KS +station = ('kidp', 0.004775569306162979) +zone = ('ksz095', 0.0025499390848671777) + +[fips2020573500] +centroid = (0.65759487557712926, -1.6739293681849832) +description = Verdigris township, KS +station = ('kcnu', 0.0058846407122275278) +zone = ('ksz095', 0.003081593869255553) + +[fips2020576300] +centroid = (0.65784246798481716, -1.6721468459666289) +description = Webster township, KS +station = ('kcnu', 0.0044914481287403095) +zone = ('ksz095', 0.0024705158572458866) + +[fips2020675] +centroid = (0.66973460045583832, -1.6867906994429296) +description = Elmdale city, KS +station = ('kemp', 0.006143250525615083) +zone = ('ksz053', 0.001428507678363539) + +[fips20207] +centroid = (0.66127879438919124, -1.6712845835029737) +description = Woodson County, KS +station = ('kcnu', 0.0054127650076202334) +zone = ('ksz071', 0.00024104726198691243) + +[fips2020712250] +centroid = (0.66024102161595533, -1.6711715210740294) +description = Center township, KS +station = ('kcnu', 0.0046564494620809707) +zone = ('ksz071', 0.0010177295763965331) + +[fips2020740375] +centroid = (0.66276258605277416, -1.6708001848223752) +description = Liberty township, KS +station = ('kcnu', 0.0063423261268177695) +zone = ('ksz071', 0.0015216799431748004) + +[fips2020749850] +centroid = (0.66223130782846706, -1.6679161329532097) +description = Neosho Falls township, KS +station = ('kcnu', 0.0049522755668282709) +zone = ('ksz071', 0.0026108954050451214) + +[fips2020751025] +centroid = (0.66283292282162953, -1.6736752482458928) +description = North township, KS +station = ('kemp', 0.0074926107865404797) +zone = ('ksz071', 0.0026507625205977551) + +[fips2020755475] +centroid = (0.65946037074812336, -1.6683616282447813) +description = Perry township, KS +station = ('kcnu', 0.0025271330646623662) +zone = ('ksz071', 0.0027342846595698957) + +[fips2020771075] +centroid = (0.66001062070139971, -1.6740183450702499) +description = Toronto township, KS +station = ('kcnu', 0.0064913865119694825) +zone = ('ksz071', 0.0026980399359313638) + +[fips2020780700] +centroid = (0.66091227524627238, -1.6712367091215916) +description = Yates Center city, KS +station = ('kcnu', 0.0051296771262009889) +zone = ('ksz071', 0.00039114231041592753) + +[fips2020875] +centroid = (0.65963242530578492, -1.6606777638529986) +description = Elsmore city, KS +station = ('kcnu', 0.0051131701560279815) +zone = ('ksz072', 0.0026311892276909611) + +[fips20209] +centroid = (0.68269223898190967, -1.6539278775038357) +description = Wyandotte County, KS +station = ('kmkc', 0.0022085534476834695) +zone = ('ksz104', 2.5648140793060884e-05) + +[fips2020907975] +centroid = (0.6819934091494112, -1.6558223975002906) +description = Bonner Springs city, KS +station = ('kmci', 0.004344468540066598) +zone = ('ksz104', 0.001602838952098954) + +[fips2020917475] +centroid = (0.68089430550626018, -1.6563303057659133) +description = Delaware township, KS +station = ('kixd', 0.0034238336039010683) +zone = ('ksz105', 0.0024837300037070294) + +[fips2020920000] +centroid = (0.68204269724748745, -1.6549005669492647) +description = Edwardsville city, KS +station = ('kmkc', 0.003039112490935806) +zone = ('ksz104', 0.00097027769607261314) + +[fips2020936000] +centroid = (0.68281711728988992, -1.6535560176534059) +description = Kansas City city, KS +station = ('kmkc', 0.0019225615575847674) +zone = ('ksz104', 0.00033935564424961856) + +[fips2020937975] +centroid = (0.68149532708747695, -1.6539731687979249) +description = Lake Quivira city, KS +station = ('kmkc', 0.002554454454871753) +zone = ('ksz104', 0.0011815741224770449) + +[fips2020950] +centroid = (0.69383157603996071, -1.6560434434500555) +description = Elwood city, KS +station = ('kstj', 0.00049032963853724702) +zone = ('moz020', 0.0019444954271257242) + +[fips2021100] +centroid = (0.68604088004466346, -1.6765158065100989) +description = Emmett city, KS +station = ('ktop', 0.0071078763856017805) +zone = ('ksz024', 0.0040397894476119061) + +[fips2021275] +centroid = (0.6702428926938967, -1.6788582478057852) +description = Emporia city, KS +station = ('kemp', 0.0012056472639166646) +zone = ('ksz054', 0.0010846780731241961) + +[fips2021350] +centroid = (0.64647098468295838, -1.7450974373630797) +description = Englewood city, KS +station = ('kwwr', 0.012382019529885525) +zone = ('ksz088', 0.0041227258708348416) + +[fips2021400] +centroid = (0.65716987045097619, -1.7493981206262115) +description = Ensign city, KS +station = ('kddc', 0.0041794859666517198) +zone = ('ksz077', 0.0031933619643513414) + +[fips2021425] +centroid = (0.67896953895386825, -1.6950006584311408) +description = Enterprise city, KS +station = ('kfri', 0.0054782653675360306) +zone = ('ksz035', 0.00079462103135409512) + +[fips2021500] +centroid = (0.65574999274460122, -1.6622873064891879) +description = Erie city, KS +station = ('kcnu', 0.0037247101682247696) +zone = ('ksz096', 0.0009245748379920829) + +[fips2021600] +centroid = (0.69502536379503232, -1.7179963312572546) +description = Esbon city, KS +station = ('kcnk', 0.011533260851181441) +zone = ('ksz007', 0.0029625292547129428) + +[fips2021650] +centroid = (0.67823302746281922, -1.6773465832340479) +description = Eskridge city, KS +station = ('kfoe', 0.0063104382148729344) +zone = ('ksz038', 0.0021229592959170307) + +[fips2021675] +centroid = (0.67953642189491614, -1.6596991402881129) +description = Eudora city, KS +station = ('klwc', 0.0021987192733954808) +zone = ('ksz040', 0.0028358013228616777) + +[fips2021800] +centroid = (0.66018937732338889, -1.6805570116733366) +description = Eureka city, KS +station = ('kemp', 0.0089372040738284926) +zone = ('ksz070', 0.0011889228522241439) + +[fips2022025] +centroid = (0.69248983672419751, -1.6654793391581602) +description = Everest city, KS +station = ('kfnb', 0.0074066281695407184) +zone = ('ksz025', 0.0029414021982716813) + +[fips2022425] +centroid = (0.69533189597155998, -1.6707717534088602) +description = Fairview city, KS +station = ('kfnb', 0.0046746895567350306) +zone = ('ksz012', 0.0022092788780394288) + +[fips2022700] +centroid = (0.68110432097515272, -1.6515828356675637) +description = Fairway city, KS +station = ('kmkc', 0.0016566810235809663) +zone = ('ksz104', 0.0024212720350950978) + +[fips2022775] +centroid = (0.65637948064591789, -1.6760133960316195) +description = Fall River city, KS +station = ('kidp', 0.0087571249968432345) +zone = ('ksz094', 0.0040170390561611452) + +[fips2022900] +centroid = (0.67499647144462849, -1.7060793278443924) +description = Falun CDP, KS +station = ('ksln', 0.0023469162236455341) +zone = ('ksz049', 0.0023541326951663144) + +[fips2023600] +centroid = (0.66746757483713037, -1.6917328959259241) +description = Florence city, KS +station = ('kewk', 0.0059151194368453099) +zone = ('ksz052', 0.0030591347500609732) + +[fips2023650] +centroid = (0.67058028229159972, -1.6553504779238437) +description = Fontana city, KS +station = ('kixd', 0.0069185509071633105) +zone = ('ksz057', 0.002483095266826124) + +[fips2023725] +centroid = (0.65688340956084634, -1.741032373548967) +description = Ford city, KS +station = ('kddc', 0.0037134501304277655) +zone = ('ksz078', 0.0020869930505522725) + +[fips2023825] +centroid = (0.69427464532387195, -1.710303635499457) +description = Formoso city, KS +station = ('kcnk', 0.0060804785915637262) +zone = ('ksz007', 0.0030224219858161045) + +[fips2023890] +centroid = (0.65851969064117599, -1.7442297469254509) +description = Fort Dodge CDP, KS +station = ('kddc', 0.00075383087749208663) +zone = ('ksz078', 0.0009570067805355142) + +[fips2023975] +centroid = (0.68259813082864207, -1.6896455694070018) +description = Fort Riley CDP, KS +station = ('kfri', 0.0011317619222416561) +zone = ('ksz036', 0.0020303230635715349) + +[fips2024000] +centroid = (0.66026849309838187, -1.6528879579756199) +description = Fort Scott city, KS +station = ('kpts', 0.0066527738934240898) +zone = ('ksz073', 0.0020548395613025224) + +[fips2024175] +centroid = (0.65246105939555799, -1.7487464844966867) +description = Fowler city, KS +station = ('kddc', 0.007404257759010247) +zone = ('ksz087', 0.0034649745411801766) + +[fips2024275] +centroid = (0.69296765551351602, -1.6828081897024363) +description = Frankfort city, KS +station = ('kmhk', 0.010585897438861243) +zone = ('ksz010', 0.0019782007871001527) + +[fips2024325] +centroid = (0.65484716882912952, -1.6527633763736125) +description = Franklin CDP, KS +station = ('kpts', 0.0013071762734280495) +zone = ('ksz097', 0.0021631918576796847) + +[fips2024550] +centroid = (0.6721705041329693, -1.7150932029393648) +description = Frederick city, KS +station = ('khut', 0.0095248422086009303) +zone = ('ksz050', 0.0030271291473880253) + +[fips2024575] +centroid = (0.65507610366711366, -1.6724154695918034) +description = Fredonia city, KS +station = ('kcnu', 0.005235579541119229) +zone = ('ksz095', 0.0011843533671887464) + +[fips2024725] +centroid = (0.649243091133901, -1.7078808392450087) +description = Freeport city, KS +station = ('kict', 0.0098002762601633597) +zone = ('ksz091', 0.0030770719660117261) + +[fips2024850] +centroid = (0.65375180019057788, -1.652877381280353) +description = Frontenac city, KS +station = ('kpts', 0.00039607868458628963) +zone = ('ksz097', 0.0022398686447781821) + +[fips2024925] +centroid = (0.66339603585149309, -1.6531716088856541) +description = Fulton city, KS +station = ('kpts', 0.009771254212662811) +zone = ('ksz073', 0.0032342275593091004) + +[fips2025050] +centroid = (0.67441559096297976, -1.7271412107658817) +description = Galatia city, KS +station = ('krsl', 0.0043800857309695441) +zone = ('ksz047', 0.0039453831914025407) + +[fips2025100] +centroid = (0.64708420611564665, -1.6517013609770665) +description = Galena city, KS +station = ('kjln', 0.002293940910959608) +zone = ('ksz101', 0.0033606487760080182) + +[fips2025150] +centroid = (0.65401590341298976, -1.6642829857690882) +description = Galesburg city, KS +station = ('kppf', 0.0031386975577453323) +zone = ('ksz096', 0.0016544887049599862) + +[fips2025200] +centroid = (0.66992306110846878, -1.7023623175897127) +description = Galva city, KS +station = ('kewk', 0.0067930644313564173) +zone = ('ksz051', 0.0015086437994457963) + +[fips2025325] +centroid = (0.66283863004828369, -1.7603463266778767) +description = Garden City city, KS +station = ('kgck', 0.0022482833682410247) +zone = ('ksz063', 0.0020576074954369071) + +[fips2025375] +centroid = (0.65727713838680368, -1.7048590110846904) +description = Garden Plain city, KS +station = ('kict', 0.0034291234341497613) +zone = ('ksz083', 0.0030736007817099833) + +[fips2025425] +centroid = (0.67746450663328861, -1.6568407622122441) +description = Gardner city, KS +station = ('kixd', 0.00063454193634161023) +zone = ('ksz105', 0.0018837598862346437) + +[fips2025750] +centroid = (0.66456931598785363, -1.7321420503117435) +description = Garfield city, KS +station = ('kgbd', 0.0070381689391475705) +zone = ('ksz065', 0.0018248353559165869) + +[fips2025925] +centroid = (0.668214540850399, -1.6622730646024915) +description = Garnett city, KS +station = ('kixd', 0.01047315250839592) +zone = ('ksz059', 0.0014386782321801342) + +[fips2025975] +centroid = (0.66187370731802597, -1.6640834073691226) +description = Gas city, KS +station = ('kcnu', 0.0048570144280852511) +zone = ('ksz072', 0.00087843140777491479) + +[fips2026000] +centroid = (0.69195819198074759, -1.7252110336928088) +description = Gaylord city, KS +station = ('krsl', 0.013613190057696485) +zone = ('ksz006', 0.0025609726992879161) + +[fips2026050] +centroid = (0.68811321418531157, -1.7609889918150461) +description = Gem city, KS +station = ('kcbk', 0.002060641402109395) +zone = ('ksz014', 0.0025049276930045042) + +[fips2026075] +centroid = (0.67224527403812484, -1.7131188690362165) +description = Geneseo city, KS +station = ('khut', 0.0087903512259037298) +zone = ('ksz050', 0.0030299178963291663) + +[fips2026200] +centroid = (0.64771746392814766, -1.6955926566601245) +description = Geuda Springs city, KS +station = ('kwld', 0.0018911288329198981) +zone = ('okz008', 0.0051229181527368125) + +[fips2026300] +centroid = (0.65465301840313761, -1.6553666047661322) +description = Girard city, KS +station = ('kpts', 0.0019013617432882275) +zone = ('ksz097', 9.1084716348683521e-05) + +[fips2026325] +centroid = (0.69260186940888302, -1.7333127997206887) +description = Glade city, KS +station = ('khlc', 0.0089367377453137935) +zone = ('ksz005', 0.0018313288478122953) + +[fips2026375] +centroid = (0.68697932613016832, -1.7075769948755288) +description = Glasco city, KS +station = ('kcnk', 0.0041652720936911289) +zone = ('ksz020', 0.003275568513792492) + +[fips2026500] +centroid = (0.68940774234480828, -1.7157700765298731) +description = Glen Elder city, KS +station = ('kcnk', 0.0088741694296820377) +zone = ('ksz019', 0.0022766418488853551) + +[fips2026725] +centroid = (0.65738765263503995, -1.7027903595887643) +description = Goddard city, KS +station = ('kict', 0.0018079685945177756) +zone = ('ksz083', 0.0014432258709100392) + +[fips2026750] +centroid = (0.66753419405467906, -1.6990040248561953) +description = Goessel city, KS +station = ('kewk', 0.003541624831359644) +zone = ('ksz068', 0.0037275263138075803) + +[fips2026775] +centroid = (0.69226934927979311, -1.6743253310323833) +description = Goff city, KS +station = ('kfnb', 0.0086786242971917688) +zone = ('ksz011', 0.0023586354554042039) + +[fips2026875] +centroid = (0.68678009679605323, -1.7751867391345366) +description = Goodland city, KS +station = ('kgld', 0.00033105420856763512) +zone = ('ksz013', 0.00012927861615258146) + +[fips2027000] +centroid = (0.67859607340052663, -1.7282879095377344) +description = Gorham city, KS +station = ('krsl', 0.0028224711718379774) +zone = ('ksz032', 0.0035992299240403523) + +[fips2027125] +centroid = (0.67996867013746509, -1.7538302620886033) +description = Gove City city, KS +station = ('kcbk', 0.011200801449991209) +zone = ('ksz029', 0.0007567156573747482) + +[fips2027200] +centroid = (0.68267131248417823, -1.7535051770621268) +description = Grainfield city, KS +station = ('kcbk', 0.0095981243702455785) +zone = ('ksz029', 0.0034627873441646097) + +[fips2027425] +centroid = (0.68125106825866044, -1.6893524413591292) +description = Grandview Plaza city, KS +station = ('kfri', 0.0005548532964144801) +zone = ('ksz036', 0.00076050345418785643) + +[fips2028200] +centroid = (0.68208758711584871, -1.667781533161296) +description = Grantville CDP, KS +station = ('ktop', 0.0010651231339908807) +zone = ('ksz039', 0.0027897729774304871) + +[fips2028300] +centroid = (0.66950727132076615, -1.7243767663103553) +description = Great Bend city, KS +station = ('kgbd', 0.00093536184642537001) +zone = ('ksz047', 0.0021596024335631642) + +[fips2028350] +centroid = (0.66963946255831219, -1.6602766522843053) +description = Greeley city, KS +station = ('kixd', 0.0085139567075805719) +zone = ('ksz059', 0.0035142829054460212) + +[fips2028425] +centroid = (0.68818292263563619, -1.6929710324972891) +description = Green city, KS +station = ('kmhk', 0.0067169951039579368) +zone = ('ksz021', 0.002629987134583889) + +[fips2028625] +centroid = (0.69336766752478063, -1.6926278833130546) +description = Greenleaf city, KS +station = ('kcnk', 0.0095141144328826834) +zone = ('ksz009', 0.0017478975440662118) + +[fips2028675] +centroid = (0.65632977366882117, -1.7329880637600628) +description = Greensburg city, KS +station = ('kptt', 0.0076832974355546214) +zone = ('ksz080', 0.00082109108896969655) + +[fips2028800] +centroid = (0.65188551962142027, -1.6833643214152918) +description = Grenola city, KS +station = ('kidp', 0.010068818866165081) +zone = ('ksz094', 0.0033735948641497593) + +[fips2028850] +centroid = (0.66498732234370628, -1.673445911982181) +description = Gridley city, KS +station = ('kemp', 0.0059611652197679331) +zone = ('ksz058', 0.0031170428722009087) + +[fips2028900] +centroid = (0.68288843144312628, -1.7563455433401149) +description = Grinnell city, KS +station = ('kcbk', 0.0077492949913236927) +zone = ('ksz029', 0.0041885398216990758) + +[fips2029250] +centroid = (0.67554300384659793, -1.7004195566927327) +description = Gypsum city, KS +station = ('ksln', 0.0033255195737663681) +zone = ('ksz049', 0.0033307891150417168) + +[fips2029400] +centroid = (0.69560655843594643, -1.6982851935504688) +description = Haddam city, KS +station = ('khjh', 0.0064111975823301446) +zone = ('ksz009', 0.0031648433587612369) + +[fips2029600] +centroid = (0.66321956561082385, -1.7018624029320639) +description = Halstead city, KS +station = ('kewk', 0.0032315759807079293) +zone = ('ksz068', 0.0013609386160150451) + +[fips2029675] +centroid = (0.66288505580638668, -1.678375768987364) +description = Hamilton city, KS +station = ('kemp', 0.0061777792969057626) +zone = ('ksz070', 0.0020278882859287432) + +[fips2029700] +centroid = (0.69665750844503482, -1.6690096864493393) +description = Hamlin city, KS +station = ('kfnb', 0.0029868126890417609) +zone = ('ksz012', 0.0017668513937926129) + +[fips2029875] +centroid = (0.69626519333577153, -1.6908064053457956) +description = Hanover city, KS +station = ('kbie', 0.007299212847728857) +zone = ('ksz009', 0.0034103730023424964) + +[fips2029925] +centroid = (0.66537185328450577, -1.7403143974545743) +description = Hanston city, KS +station = ('kddc', 0.0071343941618161235) +zone = ('ksz064', 0.0026182413138872316) + +[fips2030000] +centroid = (0.64602891023672071, -1.7217554039469074) +description = Hardtner city, KS +station = ('kavk', 0.0042278820961285267) +zone = ('ksz090', 0.0037704447600575841) + +[fips2030175] +centroid = (0.6507477743886303, -1.7109055471985921) +description = Harper city, KS +station = ('kp28', 0.0072534567130374296) +zone = ('ksz091', 0.001762056825766953) + +[fips2030250] +centroid = (0.66883024065062502, -1.6658950591326929) +description = Harris CDP, KS +station = ('kfoe', 0.011031320303198476) +zone = ('ksz059', 0.0028311858918559215) + +[fips2030475] +centroid = (0.66860251008982474, -1.6747599180161299) +description = Hartford city, KS +station = ('kemp', 0.0033608286410423279) +zone = ('ksz058', 0.0032912898156919608) + +[fips2030575] +centroid = (0.67699780559130529, -1.6748619848707866) +description = Harveyville city, KS +station = ('kfoe', 0.0049370987858742893) +zone = ('ksz055', 0.0039985336901204177) + +[fips2030700] +centroid = (0.64737867806704308, -1.6745100915869995) +description = Havana city, KS +station = ('kidp', 0.0026030867414050013) +zone = ('ksz099', 0.0032823023378218603) + +[fips2030725] +centroid = (0.66150837499899851, -1.7066110074944276) +description = Haven city, KS +station = ('khut', 0.0031088929952045093) +zone = ('ksz067', 0.0042863566566725105) + +[fips2030775] +centroid = (0.68960168333128979, -1.676850752646849) +description = Havensville city, KS +station = ('ktop', 0.009800240626757821) +zone = ('ksz023', 0.0042644057970975136) + +[fips2030825] +centroid = (0.65655088943175632, -1.7297110510098106) +description = Haviland city, KS +station = ('kptt', 0.0051134811461997732) +zone = ('ksz080', 0.0027076116552125309) + +[fips2031100] +centroid = (0.67858907463022611, -1.7334780125876827) +description = Hays city, KS +station = ('khys', 0.00090782445551487268) +zone = ('ksz031', 0.00060437706851807751) + +[fips2031125] +centroid = (0.65565141654844861, -1.6991393402331025) +description = Haysville city, KS +station = ('kiab', 0.0014908727909318073) +zone = ('ksz083', 0.0025508283143378611) + +[fips2031150] +centroid = (0.64733256646820536, -1.7174271968414718) +description = Hazelton city, KS +station = ('kp28', 0.0039657464700712233) +zone = ('ksz091', 0.0048714234948959738) + +[fips2031200] +centroid = (0.67375018418565691, -1.7561082309217215) +description = Healy CDP, KS +station = ('kgck', 0.012056209864333452) +zone = ('ksz044', 0.0029609222894986719) + +[fips2031375] +centroid = (0.65732417501014495, -1.657542960530199) +description = Hepler city, KS +station = ('kpts', 0.0049724038754063509) +zone = ('ksz097', 0.0031564532145363497) + +[fips2031400] +centroid = (0.67551324598285156, -1.6895103238432647) +description = Herington city, KS +station = ('kfri', 0.0061560732572420894) +zone = ('ksz037', 0.0020893960025138037) + +[fips2031475] +centroid = (0.69653973362711019, -1.7590476620880526) +description = Herndon city, KS +station = ('kmck', 0.0057588242667310705) +zone = ('ksz002', 0.0044420558029189088) + +[fips2031600] +centroid = (0.66567503442886966, -1.7003287821183364) +description = Hesston city, KS +station = ('kewk', 0.0024693798841902851) +zone = ('ksz068', 0.0016977663272249642) + +[fips2031675] +centroid = (0.69553938071303711, -1.6674531669158255) +description = Hiawatha city, KS +station = ('kfnb', 0.0040918846076918826) +zone = ('ksz012', 0.00055806583115324633) + +[fips2031850] +centroid = (0.69569462775000201, -1.6626875104866701) +description = Highland city, KS +station = ('kfnb', 0.0057685239862594589) +zone = ('ksz102', 0.0020184376098605745) + +[fips2032175] +centroid = (0.68708757145037713, -1.7426435393413606) +description = Hill City city, KS +station = ('khlc', 0.0001728003443983219) +zone = ('ksz016', 0.00058755406109230147) + +[fips2032275] +centroid = (0.66938021135122094, -1.6964467160762955) +description = Hillsboro city, KS +station = ('kewk', 0.0054068901311323551) +zone = ('ksz052', 0.0014047176600799399) + +[fips2032300] +centroid = (0.67476865361736571, -1.6555653105014718) +description = Hillsdale CDP, KS +station = ('kixd', 0.0027337631423859469) +zone = ('ksz057', 0.0017260211360084808) + +[fips2032550] +centroid = (0.67226487408562474, -1.7239947486436789) +description = Hoisington city, KS +station = ('kgbd', 0.0031738568628630953) +zone = ('ksz047', 0.00073834032915889316) + +[fips2032575] +centroid = (0.66293404719849014, -1.7628375049324181) +description = Holcomb city, KS +station = ('kgck', 0.0041108370243851163) +zone = ('ksz062', 0.0043668306615943994) + +[fips2032650] +centroid = (0.6977986745231588, -1.6928273046333873) +description = Hollenberg city, KS +station = ('kbie', 0.0064364116830494516) +zone = ('ksz009', 0.0036640789653438152) + +[fips2032825] +centroid = (0.68887902975450166, -1.6708482860965601) +description = Holton city, KS +station = ('ktop', 0.0071636437647651331) +zone = ('ksz024', 0.001237086728961438) + +[fips2032850] +centroid = (0.67347717978405996, -1.7176128475140064) +description = Holyrood city, KS +station = ('krsl', 0.0073566935812778376) +zone = ('ksz048', 0.0034070701184516533) + +[fips2032875] +centroid = (0.6953585995091156, -1.6845801875854012) +description = Home CDP, KS +station = ('kbie', 0.0085811818196555988) +zone = ('ksz010', 0.0010049284243133483) + +[fips2033075] +centroid = (0.67528846502848705, -1.6943017064255945) +description = Hope city, KS +station = ('kfri', 0.0076443805885852258) +zone = ('ksz035', 0.0032298611797222923) + +[fips2033150] +centroid = (0.67154702016427936, -1.7765776094687433) +description = Horace city, KS +station = ('kitr', 0.015065881099880255) +zone = ('ksz041', 0.00022267528325891115) + +[fips2033200] +centroid = (0.6922449844834353, -1.6673575403261089) +description = Horton city, KS +station = ('kfnb', 0.0073726049107391183) +zone = ('ksz012', 0.0028916788654026276) + +[fips2033250] +centroid = (0.65396548085089956, -1.6801089856543496) +description = Howard city, KS +station = ('kidp', 0.0088291388333233776) +zone = ('ksz094', 0.00038125996063564959) + +[fips2033350] +centroid = (0.68688783597077874, -1.7530040755805867) +description = Hoxie city, KS +station = ('kcbk', 0.0083326321749275564) +zone = ('ksz015', 9.9521033798435633e-05) + +[fips2033375] +centroid = (0.68503255097590887, -1.6704225479321211) +description = Hoyt city, KS +station = ('ktop', 0.0033474460101591669) +zone = ('ksz024', 0.0031436412509288458) + +[fips2033400] +centroid = (0.66505519819831638, -1.7219533068307911) +description = Hudson city, KS +station = ('kgbd', 0.0051267962158373604) +zone = ('ksz066', 0.0015057073293472149) + +[fips2033425] +centroid = (0.64883831437377837, -1.7688338802836174) +description = Hugoton city, KS +station = ('klbl', 0.0057264577606448725) +zone = ('ksz085', 0.00056273381431692438) + +[fips2033450] +centroid = (0.65993410546699216, -1.665698185993068) +description = Humboldt city, KS +station = ('kcnu', 0.0026048198232179586) +zone = ('ksz072', 0.0022806534286112568) + +[fips2033500] +centroid = (0.64585273670202437, -1.7000819402022271) +description = Hunnewell city, KS +station = ('kbkn', 0.0045162074417936177) +zone = ('ksz092', 0.0041726788248687028) + +[fips2033525] +centroid = (0.68477975748705011, -1.7173394940465589) +description = Hunter city, KS +station = ('krsl', 0.0085899426231416005) +zone = ('ksz019', 0.0037412936271693361) + +[fips2033575] +centroid = (0.69194925589497736, -1.664131019951117) +description = Huron city, KS +station = ('kstj', 0.0061600530017144762) +zone = ('ksz025', 0.0020400666736465423) + +[fips2033625] +centroid = (0.66441408640418131, -1.7088858172815995) +description = Hutchinson city, KS +station = ('khut', 0.00062267649657263746) +zone = ('ksz067', 0.0031272404206612093) + +[fips2033875] +centroid = (0.64983924324650466, -1.6705163942860008) +description = Independence city, KS +station = ('kidp', 0.0016483570731947803) +zone = ('ksz099', 0.00081690745331557861) + +[fips2034225] +centroid = (0.66023369123309705, -1.7532441456191987) +description = Ingalls city, KS +station = ('kgck', 0.0039381551282712188) +zone = ('ksz077', 0.0015926214060170802) + +[fips2034275] +centroid = (0.66724670342029058, -1.7064562316963605) +description = Inman city, KS +station = ('khut', 0.0031353415178657913) +zone = ('ksz051', 0.0032911886330019005) + +[fips2034300] +centroid = (0.66195847795979545, -1.6650557826552861) +description = Iola city, KS +station = ('kcnu', 0.0046917445240532082) +zone = ('ksz072', 0.0015480923610674178) + +[fips2034550] +centroid = (0.65392474486615804, -1.7200481577791917) +description = Isabel city, KS +station = ('kp28', 0.0032078895450622907) +zone = ('ksz081', 0.0040886009363692178) + +[fips2034625] +centroid = (0.65850440155692858, -1.7232050918769064) +description = Iuka city, KS +station = ('kptt', 0.00056982090450530796) +zone = ('ksz081', 0.0014298179869592237) + +[fips2034975] +centroid = (0.69114115099801143, -1.7080009528041307) +description = Jamestown city, KS +station = ('kcnk', 0.0029559907976329509) +zone = ('ksz020', 0.0035272476259324255) + +[fips2035375] +centroid = (0.69255619414235836, -1.7504466969875172) +description = Jennings city, KS +station = ('khlc', 0.0082669125859355635) +zone = ('ksz003', 0.0028827558406151498) + +[fips2035450] +centroid = (0.66290919370994172, -1.74330358795788) +description = Jetmore city, KS +station = ('kddc', 0.0039256091510564747) +zone = ('ksz064', 0.0018530519179400715) + +[fips2035475] +centroid = (0.69239995226771989, -1.7130794245951213) +description = Jewell city, KS +station = ('kcnk', 0.0070640018600060094) +zone = ('ksz007', 0.0021647202320646481) + +[fips2035600] +centroid = (0.65571824520550737, -1.7757732221230842) +description = Johnson City city, KS +station = ('keha', 0.010132035184984555) +zone = ('ksz074', 0.00056477934973166307) + +[fips2035750] +centroid = (0.68115563365516141, -1.6903975096086383) +description = Junction City city, KS +station = ('kfri', 0.0012965119401469325) +zone = ('ksz036', 0.0014248093217763848) + +[fips2035950] +centroid = (0.67558433324328526, -1.7131806013318593) +description = Kanopolis city, KS +station = ('ksln', 0.0070387735128212801) +zone = ('ksz048', 0.00066822701478251101) + +[fips2035975] +centroid = (0.68655217424903525, -1.7808860594470466) +description = Kanorado city, KS +station = ('kitr', 0.0036509619904401555) +zone = ('ksz013', 0.004290014760500253) + +[fips2036000] +centroid = (0.68281711728988992, -1.6535560176534059) +description = Kansas City city, KS +station = ('kmkc', 0.0019225615575847674) +zone = ('ksz104', 0.00033935564424961856) + +[fips2036225] +centroid = (0.65964383975909313, -1.6977455028391673) +description = Kechi city, KS +station = ('kaao', 0.0011088987804986339) +zone = ('ksz083', 0.0032217725486924655) + +[fips2036550] +centroid = (0.69406197695451644, -1.7284543266819121) +description = Kensington city, KS +station = ('khde', 0.01257903197174765) +zone = ('ksz006', 0.0033370396687871159) + +[fips2036735] +centroid = (0.69314794802524704, -1.6693799929567348) +description = Kickapoo Site 1 CDP, KS +station = ('kfnb', 0.0064969241215196887) +zone = ('ksz012', 0.0022600679627585245) + +[fips2036736] +centroid = (0.69294704317505007, -1.6693992788449694) +description = Kickapoo Site 2 CDP, KS +station = ('kfnb', 0.0066980188530162566) +zone = ('ksz012', 0.0024430901382079071) + +[fips2036739] +centroid = (0.69243286917741254, -1.6700043146834658) +description = Kickapoo Site 5 CDP, KS +station = ('kfnb', 0.0072797260436569793) +zone = ('ksz012', 0.0031200588279171808) + +[fips2036740] +centroid = (0.69275174083175173, -1.6701141831598789) +description = Kickapoo Site 6 CDP, KS +station = ('kfnb', 0.006983445357633648) +zone = ('ksz012', 0.0029000922384437595) + +[fips2036741] +centroid = (0.69271299452235757, -1.6697796733554415) +description = Kickapoo Site 7 CDP, KS +station = ('kfnb', 0.0069734399517942377) +zone = ('ksz012', 0.0027909021016624853) + +[fips2036744] +centroid = (0.69241129690785774, -1.669324980178712) +description = Kickapoo Tribal Center CDP, KS +station = ('kfnb', 0.0072226529669363977) +zone = ('ksz012', 0.0029053902467530302) + +[fips2036875] +centroid = (0.66463422478273537, -1.6607832864595742) +description = Kincaid city, KS +station = ('kcnu', 0.008519415993204587) +zone = ('ksz059', 0.0029987018818428851) + +[fips2036950] +centroid = (0.65707653024257939, -1.7124471267137087) +description = Kingman city, KS +station = ('khut', 0.0080790823931941071) +zone = ('ksz082', 0.0015755365114753859) + +[fips2037075] +centroid = (0.66187075771159021, -1.7350558600446555) +description = Kinsley city, KS +station = ('kddc', 0.0081215790220880817) +zone = ('ksz079', 0.0014972842423125706) + +[fips2037125] +centroid = (0.64608057198257973, -1.7188816320670361) +description = Kiowa city, KS +station = ('kp28', 0.0047246026941392492) +zone = ('ksz090', 0.0046201598881299346) + +[fips2037200] +centroid = (0.67692577585307556, -1.7009424224300453) +description = Kipp CDP, KS +station = ('ksln', 0.0026283522191467346) +zone = ('ksz049', 0.0026296120427658598) + +[fips2037275] +centroid = (0.69232001618797845, -1.730075004518729) +description = Kirwin city, KS +station = ('khlc', 0.010870999573118132) +zone = ('ksz005', 0.0036052218801342194) + +[fips2037325] +centroid = (0.64934072485225758, -1.7575782519375061) +description = Kismet city, KS +station = ('klbl', 0.0045664766507318103) +zone = ('ksz086', 0.0020873127503144113) + +[fips2037375] +centroid = (0.64978602815761133, -1.6612663761432338) +description = Labette city, KS +station = ('kppf', 0.0047502193203881526) +zone = ('ksz100', 0.0017231547856944843) + +[fips2037500] +centroid = (0.67250897583480851, -1.7332763572459071) +description = La Crosse city, KS +station = ('khys', 0.0055819065587846602) +zone = ('ksz046', 0.00015058206532734156) + +[fips2037575] +centroid = (0.66927830157619705, -1.6538839824731479) +description = La Cygne city, KS +station = ('kixd', 0.0083696339378740749) +zone = ('ksz060', 0.0026047450904018083) + +[fips2037725] +centroid = (0.66182040496267014, -1.6634096579179753) +description = La Harpe city, KS +station = ('kcnu', 0.0050431289435457936) +zone = ('ksz072', 0.00059239535013631698) + +[fips2037975] +centroid = (0.68137043132620434, -1.6540400672681539) +description = Lake Quivira city, KS +station = ('kmkc', 0.0026611592568228657) +zone = ('ksz104', 0.0013080751499152253) + +[fips2038175] +centroid = (0.66217308364462057, -1.7672979556352775) +description = Lakin city, KS +station = ('kgck', 0.0074731093106444428) +zone = ('ksz062', 0.0013501313686149119) + +[fips2038325] +centroid = (0.69064870634956121, -1.6633635114125525) +description = Lancaster city, KS +station = ('kstj', 0.0062184611425915018) +zone = ('ksz025', 0.00069622128572246176) + +[fips2038400] +centroid = (0.67090540222466122, -1.6594837492051244) +description = Lane city, KS +station = ('kixd', 0.0071064477261258991) +zone = ('ksz056', 0.003539260518302288) + +[fips2038500] +centroid = (0.66066024970228443, -1.7160831711443887) +description = Langdon city, KS +station = ('khut', 0.0073186584048990713) +zone = ('ksz067', 0.0037148890425638533) + +[fips2038650] +centroid = (0.68491840644282842, -1.6562805289756466) +description = Lansing city, KS +station = ('kmci', 0.002436230438414753) +zone = ('ksz103', 0.0020406248770544026) + +[fips2038700] +centroid = (0.66642102305775708, -1.7296415694522889) +description = Larned city, KS +station = ('kgbd', 0.0043370097837442927) +zone = ('ksz065', 0.0018610753624075888) + +[fips2038775] +centroid = (0.65511725853087566, -1.6867339064290696) +description = Latham city, KS +station = ('kwld', 0.0084141074603190612) +zone = ('ksz069', 0.0050752112926486332) + +[fips2038800] +centroid = (0.67611686810465377, -1.6902780941812168) +description = Latimer city, KS +station = ('kfri', 0.0056412243827852404) +zone = ('ksz037', 0.0028132581301362597) + +[fips2038900] +centroid = (0.67998591399047481, -1.6626568974115901) +description = Lawrence city, KS +station = ('klwc', 0.0011687326905906266) +zone = ('ksz040', 0.0013813925882518955) + +[fips2039000] +centroid = (0.68631088247994698, -1.6567540193484203) +description = Leavenworth city, KS +station = ('kmci', 0.0026186066237750736) +zone = ('moz028', 0.0022780243774546613) + +[fips2039075] +centroid = (0.67905984228936656, -1.6515219934898393) +description = Leawood city, KS +station = ('kojc', 0.001955093887380873) +zone = ('ksz105', 0.0027079577488927065) + +[fips2039100] +centroid = (0.69481929277024934, -1.7201496835817802) +description = Lebanon city, KS +station = ('kcnk', 0.012990527865345993) +zone = ('ksz006', 0.003091059833661989) + +[fips2039125] +centroid = (0.67048880958550272, -1.6731159400337987) +description = Lebo city, KS +station = ('kemp', 0.004839254947800584) +zone = ('ksz058', 0.0035867534357016521) + +[fips2039150] +centroid = (0.68112629467043528, -1.6649585329093652) +description = Lecompton city, KS +station = ('klwc', 0.0024245494070255702) +zone = ('ksz040', 0.0028306911673085999) + +[fips2039225] +centroid = (0.66975620763197807, -1.6982485067295918) +description = Lehigh city, KS +station = ('kewk', 0.0056645108134996958) +zone = ('ksz052', 0.0028259399399552377) + +[fips2039350] +centroid = (0.68007220306869332, -1.6546404430775477) +description = Lenexa city, KS +station = ('kojc', 0.002494278487528756) +zone = ('ksz105', 0.0014436174831454118) + +[fips2039400] +centroid = (0.6913405025051742, -1.7453524648733809) +description = Lenora city, KS +station = ('khlc', 0.0048259497745231283) +zone = ('ksz004', 0.0033014999743452298) + +[fips2039450] +centroid = (0.65781644512566995, -1.689199533063362) +description = Leon city, KS +station = ('kaao', 0.0060639944416695608) +zone = ('ksz069', 0.0017624074351943249) + +[fips2039475] +centroid = (0.69439830190137575, -1.6636679666472702) +description = Leona city, KS +station = ('kfnb', 0.0062629516118016754) +zone = ('ksz102', 0.0023360400618898823) + +[fips2039500] +centroid = (0.68703175582089826, -1.6905198571892031) +description = Leonardville city, KS +station = ('kmhk', 0.0046786645820310856) +zone = ('ksz022', 0.0020522217457936936) + +[fips2039550] +centroid = (0.67166112979077475, -1.7690190597172541) +description = Leoti city, KS +station = ('kgck', 0.013230002558008701) +zone = ('ksz042', 0.00013735074917200932) + +[fips2039650] +centroid = (0.66472534842298203, -1.669110217414254) +description = LeRoy city, KS +station = ('kcnu', 0.0076028130143915521) +zone = ('ksz058', 0.0029798201300465983) + +[fips2039700] +centroid = (0.68745222309099629, -1.7661819746582597) +description = Levant CDP, KS +station = ('kcbk', 0.0020846674288229347) +zone = ('ksz014', 0.0019882237458731739) + +[fips2039725] +centroid = (0.66212512199677576, -1.7323191314176509) +description = Lewis city, KS +station = ('kptt', 0.0080933654696205073) +zone = ('ksz079', 0.0011695641918157672) + +[fips2039825] +centroid = (0.64657661200928906, -1.7615428720531663) +description = Liberal city, KS +station = ('klbl', 0.0005294557188196444) +zone = ('ksz086', 0.0027870888450055565) + +[fips2040250] +centroid = (0.64850369984958611, -1.6684979733659471) +description = Liberty city, KS +station = ('kcfv', 0.0013493261943380277) +zone = ('ksz099', 0.002112078920767898) + +[fips2040400] +centroid = (0.67464782447325011, -1.7334635961680611) +description = Liebenthal city, KS +station = ('khys', 0.0034893648122251773) +zone = ('ksz046', 0.0022942673411997473) + +[fips2041300] +centroid = (0.6814303484794253, -1.712982436648588) +description = Lincoln Center city, KS +station = ('ksln', 0.0081268465800148296) +zone = ('ksz033', 0.00082970108852494396) + +[fips2041325] +centroid = (0.67185370942043987, -1.6922971608730939) +description = Lincolnville city, KS +station = ('kewk', 0.008922020308300322) +zone = ('ksz052', 0.0030046260827750592) + +[fips2041375] +centroid = (0.6732978122968325, -1.7047448316450251) +description = Lindsborg city, KS +station = ('ksln', 0.0036147286914366954) +zone = ('ksz051', 0.003258444937759408) + +[fips2041425] +centroid = (0.69253575633681752, -1.6944818942175706) +description = Linn city, KS +station = ('kcnk', 0.0079037788976087583) +zone = ('ksz009', 0.0018295508241586379) + +[fips2041465] +centroid = (0.66979055571165724, -1.6530104800891101) +description = Linn Valley city, KS +station = ('kojc', 0.007985033019087609) +zone = ('ksz060', 0.0033864754927759831) + +[fips2041475] +centroid = (0.6807215877234829, -1.6586878441596298) +description = Linwood city, KS +station = ('klwc', 0.0024651994487413713) +zone = ('ksz103', 0.0034353780497172579) + +[fips2041575] +centroid = (0.67017859476425323, -1.7106798935796017) +description = Little River city, KS +station = ('khut', 0.0061354821848608014) +zone = ('ksz050', 0.0027026732668846139) + +[fips2042100] +centroid = (0.69222543679581294, -1.7377752750054805) +description = Logan city, KS +station = ('khlc', 0.0062720251510098059) +zone = ('ksz005', 0.003653249866620344) + +[fips2042425] +centroid = (0.66461474690828304, -1.6623063305780346) +description = Lone Elm city, KS +station = ('kcnu', 0.0079307839430740427) +zone = ('ksz059', 0.0024493738540292088) + +[fips2042575] +centroid = (0.68368362090362755, -1.6987126072309899) +description = Longford city, KS +station = ('kcnk', 0.0079134508679958009) +zone = ('ksz021', 0.0038089774011647718) + +[fips2042600] +centroid = (0.69719239950089351, -1.7371962271195462) +description = Long Island city, KS +station = ('khde', 0.0091912330723876133) +zone = ('ksz005', 0.0037744035078624339) + +[fips2042650] +centroid = (0.65236623565729712, -1.6769629773177523) +description = Longton city, KS +station = ('kidp', 0.0058908417524596258) +zone = ('ksz094', 0.0025974410302041081) + +[fips2042800] +centroid = (0.673156109014863, -1.7159592527674969) +description = Lorraine city, KS +station = ('krsl', 0.0085584360396203391) +zone = ('ksz048', 0.0027034696917522276) + +[fips2042825] +centroid = (0.67311392440684226, -1.6923696443969294) +description = Lost Springs city, KS +station = ('kfri', 0.0089631725755307985) +zone = ('ksz052', 0.0040459694371800621) + +[fips2042875] +centroid = (0.67386893638796252, -1.6526811888191364) +description = Louisburg city, KS +station = ('kojc', 0.0039416572451926772) +zone = ('ksz057', 0.0021547518919242388) + +[fips2042925] +centroid = (0.68503920068035895, -1.6810056834641467) +description = Louisville city, KS +station = ('kmhk', 0.0053873610360440551) +zone = ('ksz023', 0.0022854271857609401) + +[fips2043050] +centroid = (0.6466672644106376, -1.6528734019296583) +description = Lowell CDP, KS +station = ('kjln', 0.003305533945292473) +zone = ('ksz101', 0.0028691575085574923) + +[fips2043150] +centroid = (0.68170159009847775, -1.7198097981632468) +description = Lucas city, KS +station = ('krsl', 0.005053930533801443) +zone = ('ksz032', 0.0039452076942090549) + +[fips2043250] +centroid = (0.68268325053626189, -1.7225024921332235) +description = Luray city, KS +station = ('krsl', 0.0046497494940892893) +zone = ('ksz032', 0.0036175378797260777) + +[fips2043350] +centroid = (0.67389785649366807, -1.6700117497860791) +description = Lyndon city, KS +station = ('kfoe', 0.0056367241943515306) +zone = ('ksz055', 0.00091744462113867967) + +[fips2043525] +centroid = (0.66927151224540671, -1.7139617234385893) +description = Lyons city, KS +station = ('khut', 0.0067149059762038835) +zone = ('ksz050', 2.5689286414150424e-05) + +[fips2043675] +centroid = (0.65676868906911268, -1.6974842968633137) +description = McConnell AFB CDP, KS +station = ('kiab', 0.0002587045391869187) +zone = ('ksz083', 0.0029554305899292858) + +[fips2043700] +centroid = (0.6733833334301802, -1.7378073716104245) +description = McCracken city, KS +station = ('khys', 0.0062313183321900572) +zone = ('ksz046', 0.003691545242124832) + +[fips2043725] +centroid = (0.65194686794462786, -1.6584009294838944) +description = McCune city, KS +station = ('kpts', 0.00434923571231582) +zone = ('ksz097', 0.0035455680528214441) + +[fips2043750] +centroid = (0.69437454797025611, -1.7692426713010196) +description = McDonald city, KS +station = ('ksyf', 0.0057305213257872857) +zone = ('ksz002', 0.0039476703695311369) + +[fips2043775] +centroid = (0.68163294629899673, -1.6796696688283301) +description = McFarland city, KS +station = ('kmhk', 0.0061867584081550008) +zone = ('ksz038', 0.0018252748619341651) + +[fips2043850] +centroid = (0.66247849881042709, -1.7273320974261723) +description = Macksville city, KS +station = ('kptt', 0.0054088323205311309) +zone = ('ksz066', 0.0036896719407469121) + +[fips2043900] +centroid = (0.68409117273726072, -1.6617036509340284) +description = McLouth city, KS +station = ('klwc', 0.0031237844223893992) +zone = ('ksz103', 0.002309873850339816) + +[fips2043950] +centroid = (0.66971323762579393, -1.7044977628361127) +description = McPherson city, KS +station = ('khut', 0.0060283244326502861) +zone = ('ksz051', 0.00038665419199011928) + +[fips2044050] +centroid = (0.6655628446645514, -1.6779106911015851) +description = Madison city, KS +station = ('kemp', 0.0035849491878291975) +zone = ('ksz070', 0.0046594404471636385) + +[fips2044150] +centroid = (0.6979167635003487, -1.6991437384628174) +description = Mahaska city, KS +station = ('khjh', 0.0042363064880286501) +zone = ('nez088', 0.0043266497180348929) + +[fips2044200] +centroid = (0.65929946884438206, -1.7009908204102029) +description = Maize city, KS +station = ('kict', 0.0022129143728259969) +zone = ('ksz083', 0.001575767841806515) + +[fips2044225] +centroid = (0.68227866576235707, -1.6985699265646392) +description = Manchester city, KS +station = ('ksln', 0.0069947189017269332) +zone = ('ksz035', 0.0045462042680009373) + +[fips2044250] +centroid = (0.68396498543234152, -1.6860904035338593) +description = Manhattan city, KS +station = ('kmhk', 0.0014211584605189616) +zone = ('ksz022', 0.0025733565525055042) + +[fips2044300] +centroid = (0.69442006615714824, -1.714057611827694) +description = Mankato city, KS +station = ('kcnk', 0.0085496883113282685) +zone = ('ksz007', 0.00014349477971565817) + +[fips2044375] +centroid = (0.65492537703291132, -1.7782000675413974) +description = Manter city, KS +station = ('keha', 0.0091535538019661671) +zone = ('ksz074', 0.001528210316520546) + +[fips2044500] +centroid = (0.68216799443448806, -1.6760071302996051) +description = Maple Hill city, KS +station = ('kfoe', 0.0057739110296871447) +zone = ('ksz038', 0.0033261479146560898) + +[fips2044550] +centroid = (0.66349901027736069, -1.6560396211789936) +description = Mapleton city, KS +station = ('kpts', 0.010099677914779517) +zone = ('ksz073', 0.0028417536078363076) + +[fips2044600] +centroid = (0.67176118951679165, -1.7666228797338985) +description = Marienthal CDP, KS +station = ('kgck', 0.012143800611037888) +zone = ('ksz042', 0.0017442982967647803) + +[fips2044750] +centroid = (0.66939162580452904, -1.6931051086904274) +description = Marion city, KS +station = ('kewk', 0.0065044952340463777) +zone = ('ksz052', 0.0012235186575714377) + +[fips2044925] +centroid = (0.67290869114010032, -1.7075280034834253) +description = Marquette city, KS +station = ('ksln', 0.0047119484809107562) +zone = ('ksz051', 0.0038191238299677931) + +[fips2045050] +centroid = (0.69538579173886172, -1.6866532198577497) +description = Marysville city, KS +station = ('kbie', 0.0081205816246499602) +zone = ('ksz010', 0.0018570533742420746) + +[fips2045150] +centroid = (0.66601155136194667, -1.6853250766568599) +description = Matfield Green city, KS +station = ('kemp', 0.0058147794597657445) +zone = ('ksz053', 0.0025228637038542112) + +[fips2045250] +centroid = (0.68658706338078268, -1.6706487600564723) +description = Mayetta city, KS +station = ('ktop', 0.0048913970243085504) +zone = ('ksz024', 0.0016834137280849059) + +[fips2045275] +centroid = (0.65035631449070053, -1.7025025547951105) +description = Mayfield city, KS +station = ('kict', 0.0069386839098941871) +zone = ('ksz092', 0.0010649211867101716) + +[fips2045325] +centroid = (0.65075152684652215, -1.7512230543453891) +description = Meade city, KS +station = ('kddc', 0.0098465046301026062) +zone = ('ksz087', 0.00091272126954504396) + +[fips2045500] +centroid = (0.65074800128143306, -1.7205683357094561) +description = Medicine Lodge city, KS +station = ('kp28', 0.00043581387945331005) +zone = ('ksz090', 0.0017405852650610233) + +[fips2045700] +centroid = (0.67208124799502234, -1.6691929809273838) +description = Melvern city, KS +station = ('kfoe', 0.0074354901292854325) +zone = ('ksz055', 0.0028077838336030727) + +[fips2045750] +centroid = (0.6868937351836506, -1.7579702703407964) +description = Menlo city, KS +station = ('kcbk', 0.0045787336103776839) +zone = ('ksz015', 0.0038135975402716514) + +[fips2045950] +centroid = (0.68398601664982805, -1.667978476114091) +description = Meriden city, KS +station = ('ktop', 0.0023187019400391896) +zone = ('ksz026', 0.0026254309108673141) + +[fips2046000] +centroid = (0.68098597019857499, -1.6527212266721769) +description = Merriam city, KS +station = ('kmkc', 0.0021468764927458765) +zone = ('ksz104', 0.001943063978936131) + +[fips2046450] +centroid = (0.65026629040788264, -1.7047315845960025) +description = Milan city, KS +station = ('kict', 0.0076181757367662292) +zone = ('ksz092', 0.0027654871126113361) + +[fips2046500] +centroid = (0.66365764325307453, -1.661102542086349) +description = Mildred city, KS +station = ('kcnu', 0.0075645505575586015) +zone = ('ksz072', 0.0029916396507881976) + +[fips2046525] +centroid = (0.68369431977194217, -1.6914087184706588) +description = Milford city, KS +station = ('kfri', 0.0028492895307394676) +zone = ('ksz022', 0.0032066292404537961) + +[fips2046925] +centroid = (0.65350731446895849, -1.7063978155262962) +description = Milton CDP, KS +station = ('kict', 0.0058865923183637515) +zone = ('ksz092', 0.0054252714279005784) + +[fips2046950] +centroid = (0.68677835146680122, -1.7008650868908894) +description = Miltonvale city, KS +station = ('kcnk', 0.004421337015705378) +zone = ('ksz020', 0.0035047556213804918) + +[fips2047075] +centroid = (0.68285029599897029, -1.7051857192673714) +description = Minneapolis city, KS +station = ('ksln', 0.0059919031196681511) +zone = ('ksz034', 0.0006870704693846927) + +[fips2047150] +centroid = (0.65348649269098213, -1.7455577854065856) +description = Minneola city, KS +station = ('kddc', 0.0057024381649320366) +zone = ('ksz088', 0.0044887690458072001) + +[fips2047225] +centroid = (0.68114570273171759, -1.6520756468351567) +description = Mission city, KS +station = ('kmkc', 0.0017484988159286821) +zone = ('ksz104', 0.0021146064203888598) + +[fips2047350] +centroid = (0.68092336523830588, -1.6513878125769459) +description = Mission Hills city, KS +station = ('kmkc', 0.0018069829084792258) +zone = ('ksz104', 0.0026543284869013166) + +[fips2047425] +centroid = (0.6812670031147311, -1.6512719401679059) +description = Mission Woods city, KS +station = ('kmkc', 0.0014551546175125946) +zone = ('ksz104', 0.00251473489160027) + +[fips2047600] +centroid = (0.65211831163705136, -1.6807947778773358) +description = Moline city, KS +station = ('kidp', 0.0082831252571005914) +zone = ('ksz094', 0.001767970140845807) + +[fips2047875] +centroid = (0.65616738823521559, -1.7530757038930886) +description = Montezuma city, KS +station = ('kgck', 0.0067505570716089678) +zone = ('ksz077', 0.0024898538016269022) + +[fips2048125] +centroid = (0.66176781819230746, -1.6610539521199734) +description = Moran city, KS +station = ('kcnu', 0.0061258166539997381) +zone = ('ksz072', 0.0018690729224834504) + +[fips2048225] +centroid = (0.68882412169623386, -1.6965241563352067) +description = Morganville city, KS +station = ('kcnk', 0.0061963496260299183) +zone = ('ksz021', 0.0021075009901274084) + +[fips2048275] +centroid = (0.68676845544994236, -1.7466255254830783) +description = Morland city, KS +station = ('khlc', 0.003266125538323496) +zone = ('ksz016', 0.0025774818145430272) + +[fips2048300] +centroid = (0.69689400055868, -1.6701889181584493) +description = Morrill city, KS +station = ('kfnb', 0.0030768947496538279) +zone = ('ksz012', 0.0025016331825246769) + +[fips2048450] +centroid = (0.69542747020139928, -1.6959843783574424) +description = Morrowville city, KS +station = ('khjh', 0.0077077103645196978) +zone = ('ksz009', 0.0015612165569176305) + +[fips2048600] +centroid = (0.65144719763307457, -1.7663903495176554) +description = Moscow city, KS +station = ('klbl', 0.0058485925923033909) +zone = ('ksz085', 0.0027410518959310143) + +[fips2048750] +centroid = (0.66566040856973796, -1.6549429435435032) +description = Mound City city, KS +station = ('kixd', 0.011848635329146243) +zone = ('ksz060', 0.001304328548889587) + +[fips2048800] +centroid = (0.66678173025426668, -1.7019663198357275) +description = Moundridge city, KS +station = ('kewk', 0.004166877061812492) +zone = ('ksz068', 0.0030524608522722201) + +[fips2048825] +centroid = (0.64938722042353059, -1.6651267651959649) +description = Mound Valley city, KS +station = ('kppf', 0.0025692606505129485) +zone = ('ksz100', 0.0015148899816091444) + +[fips2048900] +centroid = (0.66100229932909027, -1.7043840197287603) +description = Mount Hope city, KS +station = ('khut', 0.0044753347438614031) +zone = ('ksz083', 0.0042225685569988449) + +[fips2049025] +centroid = (0.65547203160792855, -1.651494731446923) +description = Mulberry city, KS +station = ('kpts', 0.0023613046647251146) +zone = ('ksz097', 0.0032687999486562366) + +[fips2049075] +centroid = (0.65605135874654297, -1.7361775133417423) +description = Mullinville city, KS +station = ('kddc', 0.0074581599527982958) +zone = ('ksz080', 0.0026777591173619631) + +[fips2049100] +centroid = (0.65408744445902889, -1.6970772686284561) +description = Mulvane city, KS +station = ('kiab', 0.0024852799368633273) +zone = ('ksz083', 0.0047929136251620794) + +[fips2049150] +centroid = (0.69660844723976123, -1.7023664540200401) +description = Munden city, KS +station = ('khjh', 0.0042300467754886606) +zone = ('ksz008', 0.0021107560642021732) + +[fips2049200] +centroid = (0.67734231613235651, -1.7325440345450627) +description = Munjor CDP, KS +station = ('khys', 0.00071817947860285363) +zone = ('ksz031', 0.0019692208644067843) + +[fips2049325] +centroid = (0.69033847407501925, -1.6671445403441956) +description = Muscotah city, KS +station = ('ktop', 0.0086324236136206354) +zone = ('ksz025', 0.0028170959507680545) + +[fips2049350] +centroid = (0.69743363891010413, -1.7004201850112635) +description = Narka city, KS +station = ('khjh', 0.0039782073439647908) +zone = ('ksz008', 0.0037811557584054804) + +[fips2049400] +centroid = (0.65341894844893, -1.7178000340762829) +description = Nashville city, KS +station = ('kp28', 0.0032279926309929418) +zone = ('ksz082', 0.0044896488815646214) + +[fips2049425] +centroid = (0.68397004688717233, -1.7282983640599541) +description = Natoma city, KS +station = ('krsl', 0.0062839497119434465) +zone = ('ksz018', 0.0044674828488225652) + +[fips2049650] +centroid = (0.65317510849913396, -1.6700110691076708) +description = Neodesha city, KS +station = ('kppf', 0.0030112565910254459) +zone = ('ksz095', 0.0024950204174886224) + +[fips2049825] +centroid = (0.66332999259259751, -1.66775441074472) +description = Neosho Falls city, KS +station = ('kcnu', 0.0060051154536550867) +zone = ('ksz071', 0.0032883415563535975) + +[fips2049875] +centroid = (0.66965632243888651, -1.6753739423002738) +description = Neosho Rapids city, KS +station = ('kemp', 0.0029142278604259316) +zone = ('ksz054', 0.0026809939950183416) + +[fips2049925] +centroid = (0.67114613548838875, -1.7436922204224214) +description = Ness City city, KS +station = ('khys', 0.011126236156328826) +zone = ('ksz045', 0.00046819972760287068) + +[fips2049950] +centroid = (0.69120230733500132, -1.6706106071590234) +description = Netawaka city, KS +station = ('kfnb', 0.008578505591742688) +zone = ('ksz024', 0.0033984098296684661) + +[fips2050150] +centroid = (0.65568483960362423, -1.6744076756664923) +description = New Albany city, KS +station = ('kppf', 0.0073040099208374369) +zone = ('ksz095', 0.0026756923759929789) + +[fips2050300] +centroid = (0.67856289469144626, -1.7018123817957016) +description = New Cambria city, KS +station = ('ksln', 0.0025638558910126221) +zone = ('ksz049', 0.0025584703958466035) + +[fips2050450] +centroid = (0.66783590912247126, -1.6710254719222226) +description = New Strawn city, KS +station = ('kemp', 0.0063788399545555152) +zone = ('ksz058', 0.0004884830020851972) + +[fips2050475] +centroid = (0.6638401174263705, -1.6991550831029554) +description = Newton city, KS +station = ('kewk', 0.0010104488693191548) +zone = ('ksz068', 0.0010128342579726799) + +[fips2050525] +centroid = (0.66582165953932981, -1.7119590453883884) +description = Nickerson city, KS +station = ('khut', 0.003360802274737612) +zone = ('ksz067', 0.0034186965532044616) + +[fips2050750] +centroid = (0.64694725012924248, -1.6757686136040275) +description = Niotaze city, KS +station = ('kidp', 0.0036958865187047014) +zone = ('ksz098', 0.0035226107329281958) + +[fips2050925] +centroid = (0.69524759656868873, -1.7486240147430745) +description = Norcatur city, KS +station = ('kmck', 0.0082735213454336026) +zone = ('ksz003', 0.0037385066466683881) + +[fips2051225] +centroid = (0.66457954361727045, -1.699013711433544) +description = North Newton city, KS +station = ('kewk', 0.00099051057860795387) +zone = ('ksz068', 0.0012657570869934829) + +[fips2051500] +centroid = (0.69527621996842148, -1.7434377165108956) +description = Norton city, KS +station = ('khlc', 0.0082356589103550048) +zone = ('ksz004', 0.00092108334403591201) + +[fips2051525] +centroid = (0.68792883760313084, -1.6638231089644804) +description = Nortonville city, KS +station = ('klwc', 0.0071263977802474348) +zone = ('ksz025', 0.0020477867295870976) + +[fips2051600] +centroid = (0.6537461278705089, -1.7077336381758952) +description = Norwich city, KS +station = ('kict', 0.006629591571834275) +zone = ('ksz082', 0.0043980554151428417) + +[fips2051700] +centroid = (0.68498167462821313, -1.6989554523431123) +description = Oak Hill city, KS +station = ('kcnk', 0.0067463800274225353) +zone = ('ksz021', 0.0030020744846930535) + +[fips2051810] +centroid = (0.65639059839325309, -1.698178553933172) +description = Oaklawn-Sunview CDP, KS +station = ('kiab', 0.00046263214072754256) +zone = ('ksz083', 0.0026132205060834233) + +[fips2051825] +centroid = (0.68287490514142335, -1.7602390587420491) +description = Oakley city, KS +station = ('kcbk', 0.0059306025966122441) +zone = ('ksz014', 0.004777836876989342) + +[fips2052000] +centroid = (0.69504316615340267, -1.7545923601064868) +description = Oberlin city, KS +station = ('kmck', 0.0066166546211737188) +zone = ('ksz003', 0.0011618537379846998) + +[fips2052175] +centroid = (0.6732259396382354, -1.7211859902784443) +description = Odin CDP, KS +station = ('kgbd', 0.0051787664780506421) +zone = ('ksz047', 0.0025171333556675284) + +[fips2052200] +centroid = (0.66131918130808232, -1.7376592978766852) +description = Offerle city, KS +station = ('kddc', 0.0060031438978286594) +zone = ('ksz079', 0.0034239328704326107) + +[fips2052275] +centroid = (0.6826485184841472, -1.6877627256632426) +description = Ogden city, KS +station = ('kmhk', 0.00043492881329543659) +zone = ('ksz036', 0.002047990446679037) + +[fips2052525] +centroid = (0.69748928000665777, -1.6859697314693765) +description = Oketo city, KS +station = ('kbie', 0.0062143750244356283) +zone = ('ksz010', 0.0032958460235071006) + +[fips2052575] +centroid = (0.67865869581408811, -1.6549010905480404) +description = Olathe city, KS +station = ('kojc', 0.0014633376429269086) +zone = ('ksz105', 4.7638033524703684e-05) + +[fips2052700] +centroid = (0.6716168158810667, -1.6711936867555299) +description = Olivet city, KS +station = ('kemp', 0.0066414821483094496) +zone = ('ksz055', 0.0030148906081877203) + +[fips2052750] +centroid = (0.67224094562157977, -1.7267700665004451) +description = Olmitz city, KS +station = ('kgbd', 0.003060521583704302) +zone = ('ksz047', 0.0025464509176738905) + +[fips2052800] +centroid = (0.6678441645298332, -1.6783974285233811) +description = Olpe city, KS +station = ('kemp', 0.0012905715214852488) +zone = ('ksz054', 0.0033491830071466309) + +[fips2052825] +centroid = (0.6882151937735056, -1.6862447953594908) +description = Olsburg city, KS +station = ('kmhk', 0.0052915216055618754) +zone = ('ksz022', 0.002867383733095274) + +[fips2052875] +centroid = (0.68921800760182395, -1.6784873478864442) +description = Onaga city, KS +station = ('kmhk', 0.0093060123798321716) +zone = ('ksz023', 0.0030161050153776482) + +[fips2052900] +centroid = (0.69580378064142179, -1.6744665630754547) +description = Oneida city, KS +station = ('kfnb', 0.0060865174730228358) +zone = ('ksz011', 0.0017591680497322328) + +[fips2053200] +centroid = (0.67429244053095894, -1.6724250339961044) +description = Osage City city, KS +station = ('kfoe', 0.0057277183008487779) +zone = ('ksz055', 0.0013469745100541221) + +[fips2053225] +centroid = (0.67195335026743619, -1.6571030851988191) +description = Osawatomie city, KS +station = ('kixd', 0.0055888694656823336) +zone = ('ksz057', 0.0018328477741007744) + +[fips2053325] +centroid = (0.68836792753634757, -1.7226288714243607) +description = Osborne city, KS +station = ('krsl', 0.010141656651234827) +zone = ('ksz018', 0.0018267745638352933) + +[fips2053375] +centroid = (0.68444807511600103, -1.6635375556455614) +description = Oskaloosa city, KS +station = ('klwc', 0.0037185664151970074) +zone = ('ksz026', 0.0010040582778790203) + +[fips2053450] +centroid = (0.64870258011785087, -1.6600394271323742) +description = Oswego city, KS +station = ('kppf', 0.006099473998135237) +zone = ('ksz100', 0.0025957707091730951) + +[fips2053525] +centroid = (0.67256023615493965, -1.7288103913026116) +description = Otis city, KS +station = ('kgbd', 0.0041153098624385374) +zone = ('ksz046', 0.0034965138757398579) + +[fips2053550] +centroid = (0.67372974638011607, -1.662672710094613) +description = Ottawa city, KS +station = ('kixd', 0.0063992561239307293) +zone = ('ksz056', 0.00071510704833024625) + +[fips2053725] +centroid = (0.67682838648081423, -1.6677808350295951) +description = Overbrook city, KS +station = ('kfoe', 0.002970109221084627) +zone = ('ksz055', 0.0032061816157920955) + +[fips2053775] +centroid = (0.67874182584636067, -1.6526624614362624) +description = Overland Park city, KS +station = ('kojc', 0.0011326523184436266) +zone = ('ksz105', 0.0017917652186284054) + +[fips2053850] +centroid = (0.65056692337153854, -1.6959320708397598) +description = Oxford city, KS +station = ('kwld', 0.0026744075180870652) +zone = ('ksz093', 0.0046605691217809584) + +[fips2053925] +centroid = (0.68479047380865732, -1.6661803157456387) +description = Ozawkie city, KS +station = ('ktop', 0.0037253744419144404) +zone = ('ksz026', 0.0011044631660283885) + +[fips2054125] +centroid = (0.68509772157017834, -1.7377118497404629) +description = Palco city, KS +station = ('khlc', 0.0041465210156327193) +zone = ('ksz017', 0.0036375055052091788) + +[fips2054200] +centroid = (0.69172416078134757, -1.6954194152785718) +description = Palmer city, KS +station = ('kcnk', 0.0070074847014567031) +zone = ('ksz009', 0.002735229882246025) + +[fips2054250] +centroid = (0.6733220898267277, -1.6556614257833793) +description = Paola city, KS +station = ('kixd', 0.0041663060692192491) +zone = ('ksz057', 0.00042168068292153097) + +[fips2054325] +centroid = (0.68267607723303614, -1.7264525387496297) +description = Paradise city, KS +station = ('krsl', 0.0045398136465590834) +zone = ('ksz032', 0.0040760913456480063) + +[fips2054400] +centroid = (0.68262975619468824, -1.7516377445756632) +description = Park city, KS +station = ('khlc', 0.008411350066957226) +zone = ('ksz029', 0.0037920235603954456) + +[fips2054450] +centroid = (0.65985469298602639, -1.6986493564988976) +description = Park City city, KS +station = ('kaao', 0.0017992604458658367) +zone = ('ksz083', 0.0028365193117570338) + +[fips2054500] +centroid = (0.66896107053135445, -1.6578739273162546) +description = Parker city, KS +station = ('kixd', 0.008639149788606049) +zone = ('ksz060', 0.0028532419614246103) + +[fips2054560] +centroid = (0.64695922308791121, -1.6928895081679285) +description = Parkerfield city, KS +station = ('kwld', 0.0018005157761572979) +zone = ('ksz093', 0.0036871515129229468) + +[fips2054575] +centroid = (0.67655503301336684, -1.6870788882090186) +description = Parkerville city, KS +station = ('kfri', 0.0052768465058202077) +zone = ('ksz037', 0.0013417920994507114) + +[fips2054675] +centroid = (0.65160144983236579, -1.6626878770058131) +description = Parsons city, KS +station = ('kppf', 0.0032612405598122919) +zone = ('ksz100', 0.0025316445040008935) + +[fips2054700] +centroid = (0.66264146020268577, -1.7120337105737888) +description = Partridge city, KS +station = ('khut', 0.0035607383485867852) +zone = ('ksz067', 0.00025322947381518001) + +[fips2054875] +centroid = (0.66784901654515383, -1.7275667569441031) +description = Pawnee Rock city, KS +station = ('kgbd', 0.0021706605133640783) +zone = ('ksz065', 0.0037820531200914637) + +[fips2054950] +centroid = (0.6818799976546166, -1.6784325620012239) +description = Paxico city, KS +station = ('kfoe', 0.0074017705530817117) +zone = ('ksz038', 0.0020811207032977344) + +[fips2055100] +centroid = (0.66616918949998682, -1.6947880773282478) +description = Peabody city, KS +station = ('kewk', 0.0032159156562654484) +zone = ('ksz052', 0.0033196769075039749) + +[fips2055225] +centroid = (0.65827037035752856, -1.7160050502070692) +description = Penalosa city, KS +station = ('kptt', 0.0059461827109712944) +zone = ('ksz082', 0.0037359639677850111) + +[fips2055450] +centroid = (0.68195077075578492, -1.6648142639933952) +description = Perry city, KS +station = ('klwc', 0.0025067348417069876) +zone = ('ksz026', 0.0028435030784493098) + +[fips2055525] +centroid = (0.64717477125053247, -1.677195158468145) +description = Peru city, KS +station = ('kidp', 0.0046997783907903358) +zone = ('ksz098', 0.0024055116193810121) + +[fips2055675] +centroid = (0.6938002822864725, -1.7334792866780364) +description = Phillipsburg city, KS +station = ('khlc', 0.0096284128000450019) +zone = ('ksz005', 0.00066742382637017194) + +[fips2056000] +centroid = (0.66185859276670367, -1.6674471106233213) +description = Piqua CDP, KS +station = ('kcnu', 0.0045139120559396263) +zone = ('ksz072', 0.0033137261874752215) + +[fips2056025] +centroid = (0.65300710310533705, -1.65279189505359) +description = Pittsburg city, KS +station = ('kpts', 0.00076123484380462509) +zone = ('ksz097', 0.0026758961991465045) + +[fips2056100] +centroid = (0.65038368125337176, -1.7556225930573539) +description = Plains city, KS +station = ('klbl', 0.006439504945682622) +zone = ('ksz086', 0.0038395960787168987) + +[fips2056150] +centroid = (0.68471490105204591, -1.7331323326760326) +description = Plainville city, KS +station = ('khys', 0.006670901913696725) +zone = ('ksz017', 0.0020989485645933371) + +[fips2056450] +centroid = (0.66637496381879691, -1.6529655029542862) +description = Pleasanton city, KS +station = ('kixd', 0.011359164523086062) +zone = ('ksz060', 0.0019326295204985854) + +[fips2056725] +centroid = (0.66273263620280998, -1.7158257176264269) +description = Plevna city, KS +station = ('khut', 0.0063109913140630986) +zone = ('ksz067', 0.0030926830734208884) + +[fips2057000] +centroid = (0.67389228889335429, -1.6659942461940835) +description = Pomona city, KS +station = ('kfoe', 0.006220484693402111) +zone = ('ksz056', 0.0024387938614474987) + +[fips2057100] +centroid = (0.69051951707832859, -1.7224933466079431) +description = Portis city, KS +station = ('krsl', 0.012285175740372561) +zone = ('ksz018', 0.003866443237601833) + +[fips2057300] +centroid = (0.66215346614382831, -1.6932891013001725) +description = Potwin city, KS +station = ('kewk', 0.0041312571709873945) +zone = ('ksz069', 0.0036939796510261384) + +[fips2057350] +centroid = (0.69397066132805207, -1.6691263791631277) +description = Powhattan city, KS +station = ('kfnb', 0.0056561188257865328) +zone = ('ksz012', 0.0014700271933249418) + +[fips2057525] +centroid = (0.69520008870644945, -1.737883014180206) +description = Prairie View city, KS +station = ('khlc', 0.0088426147550528175) +zone = ('ksz005', 0.0031475686835772143) + +[fips2057575] +centroid = (0.68045114895588632, -1.6517163882619261) +description = Prairie Village city, KS +station = ('kmkc', 0.0023165568620171439) +zone = ('ksz104', 0.0028238172689552896) + +[fips2057625] +centroid = (0.65796427451331385, -1.7237908418271684) +description = Pratt city, KS +station = ('kptt', 0.00022152345332779148) +zone = ('ksz081', 0.00095800236202563875) + +[fips2057650] +centroid = (0.6643268199415816, -1.6526961113842407) +description = Prescott city, KS +station = ('kpts', 0.010713510586078884) +zone = ('ksz060', 0.0033227773566242408) + +[fips2057675] +centroid = (0.65900656768931232, -1.7201175869768359) +description = Preston city, KS +station = ('kptt', 0.0028714813779182344) +zone = ('ksz081', 0.0031911626362503293) + +[fips2057700] +centroid = (0.65937045138506067, -1.7108164655935705) +description = Pretty Prairie city, KS +station = ('khut', 0.005457958481124678) +zone = ('ksz067', 0.0031564454245825886) + +[fips2057725] +centroid = (0.67174802973423153, -1.6627891759155988) +description = Princeton city, KS +station = ('kixd', 0.0077930200408034668) +zone = ('ksz056', 0.0013470823186280281) + +[fips2057850] +centroid = (0.64926621674648988, -1.7362703474046557) +description = Protection city, KS +station = ('kddc', 0.011957907544999759) +zone = ('ksz089', 0.0029107319681667436) + +[fips2058100] +centroid = (0.67335539070885575, -1.6672572711605818) +description = Quenemo city, KS +station = ('kfoe', 0.0063835999066994484) +zone = ('ksz055', 0.0030039856832694543) + +[fips2058250] +centroid = (0.68184402641873298, -1.7494279308498355) +description = Quinter city, KS +station = ('khlc', 0.0075411977524042391) +zone = ('ksz029', 0.0042708690870618595) + +[fips2058300] +centroid = (0.66625851545110382, -1.7260340960614642) +description = Radium city, KS +station = ('kgbd', 0.0030987650387602739) +zone = ('ksz066', 0.0034800155065849306) + +[fips2058375] +centroid = (0.6736577515484713, -1.6940821963655712) +description = Ramona city, KS +station = ('kfri', 0.0089687323121328058) +zone = ('ksz052', 0.004194903521663954) + +[fips2058450] +centroid = (0.69187602187956365, -1.7112162158054474) +description = Randall city, KS +station = ('kcnk', 0.0055393783230411001) +zone = ('ksz007', 0.0034103762341752618) + +[fips2058475] +centroid = (0.68816335749472135, -1.6887762558131685) +description = Randolph city, KS +station = ('kmhk', 0.005260150163772701) +zone = ('ksz022', 0.0023336845683029988) + +[fips2058500] +centroid = (0.67432851648659775, -1.7441551166466354) +description = Ransom city, KS +station = ('khys', 0.0098049361171600718) +zone = ('ksz045', 0.0027438340698134412) + +[fips2058525] +centroid = (0.67279639665602708, -1.6598237917032903) +description = Rantoul city, KS +station = ('kixd', 0.0055416380575047212) +zone = ('ksz056', 0.0025407680589926555) + +[fips2058550] +centroid = (0.66807720089155964, -1.7176571788770072) +description = Raymond city, KS +station = ('kgbd', 0.0063182110123255111) +zone = ('ksz050', 0.0031615519453303386) + +[fips2058600] +centroid = (0.67228607983603639, -1.6747748231279418) +description = Reading city, KS +station = ('kemp', 0.0046378516703860437) +zone = ('ksz054', 0.0028831725092202066) + +[fips2058725] +centroid = (0.66037099628535145, -1.6559931605143057) +description = Redfield city, KS +station = ('kpts', 0.0070623362812982857) +zone = ('ksz073', 0.00055028240560560187) + +[fips2059000] +centroid = (0.69680572180511424, -1.7073630175092345) +description = Republic city, KS +station = ('khjh', 0.0050946361662139042) +zone = ('ksz008', 0.0028737219785720212) + +[fips2059050] +centroid = (0.69773037978952834, -1.6679269016346945) +description = Reserve city, KS +station = ('kfnb', 0.0018715663817191171) +zone = ('ksz012', 0.002625112174884519) + +[fips2059125] +centroid = (0.6888894144635509, -1.7583130355525958) +description = Rexford city, KS +station = ('kcbk', 0.0041850947176709117) +zone = ('ksz015', 0.0045820279515822954) + +[fips2059200] +centroid = (0.65040171050454487, -1.7764446328330341) +description = Richfield city, KS +station = ('keha', 0.0048366781883627018) +zone = ('ksz084', 0.0013096065863149021) + +[fips2059675] +centroid = (0.67022861590061544, -1.6624866230897655) +description = Richmond city, KS +station = ('kixd', 0.008834312671442985) +zone = ('ksz056', 0.0028848623656134134) + +[fips2059875] +centroid = (0.685898094658558, -1.6899587163813945) +description = Riley city, KS +station = ('kmhk', 0.0034881921783643096) +zone = ('ksz022', 0.0012474798982868014) + +[fips2060200] +centroid = (0.64704978822279724, -1.6529517672130729) +description = Riverton CDP, KS +station = ('kjln', 0.0031794990710830163) +zone = ('ksz101', 0.0025604644542245101) + +[fips2060325] +centroid = (0.69490659413943412, -1.6652448541731548) +description = Robinson city, KS +station = ('kfnb', 0.0052138231114879779) +zone = ('ksz012', 0.0020565384770582684) + +[fips2060825] +centroid = (0.68130459750681904, -1.6517343476999291) +description = Roeland Park city, KS +station = ('kmkc', 0.0014983518195940022) +zone = ('ksz104', 0.0022029535833683741) + +[fips2060900] +centroid = (0.64782850177515949, -1.773811751296523) +description = Rolla city, KS +station = ('keha', 0.0040609162268934913) +zone = ('ksz084', 0.0026587591226768558) + +[fips2061100] +centroid = (0.66001103958042007, -1.686424424646106) +description = Rosalia CDP, KS +station = ('kaao', 0.0082419224303136862) +zone = ('ksz069', 0.0030139283429532582) + +[fips2061250] +centroid = (0.65574042834030022, -1.6953322535357271) +description = Rose Hill city, KS +station = ('kiab', 0.0019816805516205591) +zone = ('ksz083', 0.0049198523941851816) + +[fips2061275] +centroid = (0.65066446982343251, -1.6553416814644137) +description = Roseland city, KS +station = ('kpts', 0.0033577138748147367) +zone = ('ksz101', 0.0019380255984652232) + +[fips2061400] +centroid = (0.68304114775267588, -1.6746308858245298) +description = Rossville city, KS +station = ('kfoe', 0.0053756207448309836) +zone = ('ksz039', 0.0030841284016702537) + +[fips2061550] +centroid = (0.6728340085014074, -1.7004345141644224) +description = Roxbury CDP, KS +station = ('ksln', 0.0050677464468475812) +zone = ('ksz051', 0.0040934438881274401) + +[fips2061600] +centroid = (0.66663636178086816, -1.7349007002741532) +description = Rozel city, KS +station = ('kgbd', 0.0078216852190606343) +zone = ('ksz065', 0.0022860925664619568) + +[fips2061775] +centroid = (0.67133777264025785, -1.7333002333500744) +description = Rush Center city, KS +station = ('kgbd', 0.0063961243901231382) +zone = ('ksz046', 0.0010208815870852473) + +[fips2061825] +centroid = (0.6787168327314721, -1.7252754363422071) +description = Russell city, KS +station = ('krsl', 0.00059265837170452656) +zone = ('ksz032', 0.0012955289303249421) + +[fips2061875] +centroid = (0.67915534670603561, -1.765850903152449) +description = Russell Springs city, KS +station = ('kcbk', 0.0091870516089429515) +zone = ('ksz028', 0.00037925271197448545) + +[fips2062025] +centroid = (0.6965668385903937, -1.6719002309433222) +description = Sabetha city, KS +station = ('kfnb', 0.0041185076036412294) +zone = ('ksz011', 0.0037003049826702401) + +[fips2062175] +centroid = (0.69414318712461187, -1.7767714457354702) +description = St. Francis city, KS +station = ('ksyf', 0.00018111728559226968) +zone = ('ksz001', 0.00097559827882939831) + +[fips2062200] +centroid = (0.68403753876934692, -1.6828186093180706) +description = St. George city, KS +station = ('kmhk', 0.0037307313558988101) +zone = ('ksz023', 0.003413320480527011) + +[fips2062275] +centroid = (0.66322241049750463, -1.7236971700062136) +description = St. John city, KS +station = ('kptt', 0.0052353106318292399) +zone = ('ksz066', 0.00080520935852666873) + +[fips2062400] +centroid = (0.68406815184442682, -1.6766443500095081) +description = St. Marys city, KS +station = ('kfoe', 0.0072323056971403798) +zone = ('ksz038', 0.0046148782628542143) + +[fips2062500] +centroid = (0.65481760295160074, -1.6611140263528272) +description = St. Paul city, KS +station = ('kcnu', 0.0049909964993810393) +zone = ('ksz096', 0.0019573395553346262) + +[fips2062700] +centroid = (0.67743214822895659, -1.7036937769161815) +description = Salina city, KS +station = ('ksln', 0.00072124314783618046) +zone = ('ksz049', 0.00071485405249925506) + +[fips2063150] +centroid = (0.65341470729884776, -1.7625657571678826) +description = Satanta city, KS +station = ('klbl', 0.0067764513372126555) +zone = ('ksz076', 0.0027037876664388811) + +[fips2063200] +centroid = (0.6588466606232446, -1.66056737177781) +description = Savonburg city, KS +station = ('kcnu', 0.0049081624491048512) +zone = ('ksz072', 0.0032294021067858936) + +[fips2063275] +centroid = (0.65446260298174508, -1.7223302455893443) +description = Sawyer city, KS +station = ('kptt', 0.0036488336551201428) +zone = ('ksz081', 0.0027331170398841895) + +[fips2063325] +centroid = (0.65063069770240656, -1.6549846743659185) +description = Scammon city, KS +station = ('kpts', 0.0032646337483832259) +zone = ('ksz101', 0.0019296803185021845) + +[fips2063350] +centroid = (0.69458569790316249, -1.7066526685036727) +description = Scandia city, KS +station = ('kcnk', 0.0046436738755657805) +zone = ('ksz008', 0.0018682892082057727) + +[fips2063425] +centroid = (0.67566636371812894, -1.7336662638008027) +description = Schoenchen city, KS +station = ('khys', 0.0025526104785653508) +zone = ('ksz046', 0.0033222147875917336) + +[fips2063600] +centroid = (0.67157152458697744, -1.7610746002148563) +description = Scott City city, KS +station = ('kgck', 0.010125640605324702) +zone = ('ksz043', 9.5214681875259178e-05) + +[fips2063650] +centroid = (0.69014816337338181, -1.7095902147144117) +description = Scottsville city, KS +station = ('kcnk', 0.0040639248282459588) +zone = ('ksz019', 0.0043355095173785553) + +[fips2063675] +centroid = (0.67680438820359934, -1.6709971277751703) +description = Scranton city, KS +station = ('kfoe', 0.0029797875616975563) +zone = ('ksz055', 0.0022012345671815238) + +[fips2063750] +centroid = (0.64801382083513626, -1.6787418867045549) +description = Sedan city, KS +station = ('kidp', 0.0057837954211994152) +zone = ('ksz098', 0.0009223060846348766) + +[fips2063800] +centroid = (0.66175450133011482, -1.7003239824628935) +description = Sedgwick city, KS +station = ('kewk', 0.003016250615487927) +zone = ('ksz068', 0.0022261336447792577) + +[fips2063875] +centroid = (0.69012842369954175, -1.7552284802589611) +description = Selden city, KS +station = ('kcbk', 0.0067882375838509857) +zone = ('ksz015', 0.0037397231211150385) + +[fips2063950] +centroid = (0.69529986917978592, -1.6767218426282966) +description = Seneca city, KS +station = ('kfnb', 0.0077845413504888479) +zone = ('ksz011', 0.0011999509928928324) + +[fips2064025] +centroid = (0.69406188968805393, -1.6624127258492363) +description = Severance city, KS +station = ('kstj', 0.0044615617339748299) +zone = ('ksz102', 0.0014225566883376924) + +[fips2064050] +centroid = (0.65662721267994606, -1.6794869154023537) +description = Severy city, KS +station = ('kidp', 0.010397532366570698) +zone = ('ksz094', 0.0029457897179606999) + +[fips2064100] +centroid = (0.66632934091214979, -1.7242848572719454) +description = Seward city, KS +station = ('kgbd', 0.0031641006679539829) +zone = ('ksz066', 0.002769805360448832) + +[fips2064325] +centroid = (0.65013568741995587, -1.7177130643196561) +description = Sharon city, KS +station = ('kp28', 0.0019272294893513499) +zone = ('ksz090', 0.0037294545691682196) + +[fips2064375] +centroid = (0.67883499152183213, -1.7758929866163562) +description = Sharon Springs city, KS +station = ('kgld', 0.0082720210038132718) +zone = ('ksz027', 0.00042294862171187315) + +[fips2064500] +centroid = (0.68098871036550057, -1.6546650173134156) +description = Shawnee city, KS +station = ('kojc', 0.0033643095295694033) +zone = ('ksz104', 0.0017760049674643455) + +[fips2065600] +centroid = (0.6824220794669934, -1.6729968387656429) +description = Silver Lake city, KS +station = ('ktop', 0.0030673610895036404) +zone = ('ksz039', 0.0016876089276706542) + +[fips2065650] +centroid = (0.68741595514913978, -1.7092708543678818) +description = Simpson city, KS +station = ('kcnk', 0.0047868742176626978) +zone = ('ksz019', 0.003718230116771251) + +[fips2065925] +centroid = (0.69419936927323345, -1.7240932375733689) +description = Smith Center city, KS +station = ('khde', 0.01388611517190865) +zone = ('ksz006', 0.00018407424231702175) + +[fips2066100] +centroid = (0.67610051436956253, -1.7049089275012974) +description = Smolan city, KS +station = ('ksln', 0.00092161129438120585) +zone = ('ksz049', 0.00092949165222860073) + +[fips2066175] +centroid = (0.69005573073619619, -1.674915810824918) +description = Soldier city, KS +station = ('ktop', 0.0093597027018765665) +zone = ('ksz024', 0.0031257706997217922) + +[fips2066275] +centroid = (0.67930654457913597, -1.6994156956668633) +description = Solomon city, KS +station = ('ksln', 0.004511985309257417) +zone = ('ksz035', 0.0030955355895961306) + +[fips2066650] +centroid = (0.64664131136466052, -1.6999661899662346) +description = South Haven city, KS +station = ('kbkn', 0.0052807923114831824) +zone = ('ksz092', 0.0034371126736124484) + +[fips2066750] +centroid = (0.66367024453027379, -1.7094700662487043) +description = South Hutchinson city, KS +station = ('khut', 0.0012991602099436468) +zone = ('ksz067', 0.0023130917342226056) + +[fips2067125] +centroid = (0.66056966711410592, -1.7410463361829829) +description = Spearville city, KS +station = ('kddc', 0.0032494166168107455) +zone = ('ksz078', 0.0032877981548210941) + +[fips2067175] +centroid = (0.69248645078544879, -1.7352251046222213) +description = Speed city, KS +station = ('khlc', 0.0077496858303837011) +zone = ('ksz005', 0.0021309541751375655) + +[fips2067250] +centroid = (0.65359821121640238, -1.7133156549093786) +description = Spivey city, KS +station = ('kp28', 0.006058952596000089) +zone = ('ksz082', 0.0019706310743434095) + +[fips2067625] +centroid = (0.67643176040829844, -1.6549382311545229) +description = Spring Hill city, KS +station = ('kixd', 0.0013474567639919211) +zone = ('ksz105', 0.0022186483292654631) + +[fips2067775] +centroid = (0.66256838326690481, -1.7208829836670057) +description = Stafford city, KS +station = ('kptt', 0.0050282503455823507) +zone = ('ksz066', 0.0020200030389382483) + +[fips2068025] +centroid = (0.65780841661111078, -1.6605725554056885) +description = Stark city, KS +station = ('kcnu', 0.0047072796521325528) +zone = ('ksz096', 0.0032106652573532721) + +[fips2068200] +centroid = (0.66687796770922181, -1.7140261260879881) +description = Sterling city, KS +station = ('khut', 0.0052872024491058336) +zone = ('ksz050', 0.0024063080107152145) + +[fips2068350] +centroid = (0.68815717902916929, -1.7325594632556505) +description = Stockton city, KS +station = ('khlc', 0.0076961498247378581) +zone = ('ksz017', 0.0015679677729811177) + +[fips2068650] +centroid = (0.67012668867229896, -1.6848826705980642) +description = Strong City city, KS +station = ('kemp', 0.0047329554560366855) +zone = ('ksz053', 0.0018096905037811456) + +[fips2068775] +centroid = (0.65416219691089184, -1.7600937251752353) +description = Sublette city, KS +station = ('klbl', 0.0077024541476411711) +zone = ('ksz076', 0.0014659192853456275) + +[fips2068950] +centroid = (0.69807773521726013, -1.6816121679259219) +description = Summerfield city, KS +station = ('kbie', 0.0075208131968475941) +zone = ('nez092', 0.0027855452340246251) + +[fips2069275] +centroid = (0.65237871476144882, -1.7264190109746989) +description = Sun City city, KS +station = ('kptt', 0.0060652892514647784) +zone = ('ksz090', 0.004143756999226784) + +[fips2069525] +centroid = (0.67440515389405276, -1.7239406608901595) +description = Susank city, KS +station = ('krsl', 0.0039876187275310233) +zone = ('ksz047', 0.0028306196529297098) + +[fips2069775] +centroid = (0.68089119882019167, -1.7173077465074653) +description = Sylvan Grove city, KS +station = ('krsl', 0.0062688307562884368) +zone = ('ksz033', 0.0025966424461508252) + +[fips2069800] +centroid = (0.66251268981047373, -1.7175573111372078) +description = Sylvia city, KS +station = ('kptt', 0.0065259245954332181) +zone = ('ksz066', 0.0044277995983675383) + +[fips2069850] +centroid = (0.6624148990124844, -1.7766886124091703) +description = Syracuse city, KS +station = ('klaa', 0.012350399056926756) +zone = ('ksz061', 0.00079805062778079557) + +[fips2069925] +centroid = (0.68114774476694229, -1.6975022213947317) +description = Talmage CDP, KS +station = ('ksln', 0.0067947661888113067) +zone = ('ksz035', 0.0031553383974238158) + +[fips2070000] +centroid = (0.67279074178925058, -1.6956582984932922) +description = Tampa city, KS +station = ('ksln', 0.0079079830207784592) +zone = ('ksz052', 0.0033945247355336625) + +[fips2070250] +centroid = (0.68090151371607099, -1.7082959309010102) +description = Tescott city, KS +station = ('ksln', 0.0050636841145966123) +zone = ('ksz034', 0.0037288639533921688) + +[fips2070300] +centroid = (0.65418893535503231, -1.6666908943650172) +description = Thayer city, KS +station = ('kppf', 0.0026005262197980146) +zone = ('ksz096', 0.0029181635555411375) + +[fips2070625] +centroid = (0.67148216372927538, -1.7309748439211798) +description = Timken city, KS +station = ('kgbd', 0.0047636073472611708) +zone = ('ksz046', 0.0020003591677322471) + +[fips2070675] +centroid = (0.68660425487391474, -1.7186400610452677) +description = Tipton city, KS +station = ('krsl', 0.0094895578423124429) +zone = ('ksz019', 0.0036488451612014623) + +[fips2070800] +centroid = (0.68256940270915423, -1.6595142052005716) +description = Tonganoxie city, KS +station = ('klwc', 0.0024153108303347449) +zone = ('ksz103', 0.0017015331938482349) + +[fips2071000] +centroid = (0.68130969386823481, -1.6701897908230754) +description = Topeka city, KS +station = ('ktop', 0.00098892483311673399) +zone = ('ksz039', 0.00083988379756382763) + +[fips2071050] +centroid = (0.65970857402104943, -1.6746365755978914) +description = Toronto city, KS +station = ('kcnu', 0.0068351839498005107) +zone = ('ksz071', 0.0032709545306553573) + +[fips2071125] +centroid = (0.65968469791688211, -1.6928579177084673) +description = Towanda city, KS +station = ('kaao', 0.0031853070937733568) +zone = ('ksz069', 0.0021492868263177367) + +[fips2071350] +centroid = (0.64578028808477406, -1.6553347176006983) +description = Treece city, KS +station = ('kjln', 0.0054511195308358986) +zone = ('okz058', 0.0029165437252012278) + +[fips2071450] +centroid = (0.67146066127289072, -1.7759516645858082) +description = Tribune city, KS +station = ('kitr', 0.015365212033539343) +zone = ('ksz041', 0.00071917705111946997) + +[fips2071575] +centroid = (0.69438212269920974, -1.6596931189021935) +description = Troy city, KS +station = ('kstj', 0.0023926901280106696) +zone = ('ksz102', 0.00072106973519701098) + +[fips2071800] +centroid = (0.65986636923872233, -1.717892414353591) +description = Turon city, KS +station = ('kptt', 0.0048238773840747979) +zone = ('ksz081', 0.0051262630444122636) + +[fips2071925] +centroid = (0.64644497927710365, -1.6724491369930743) +description = Tyro city, KS +station = ('kidp', 0.0020864688937133578) +zone = ('ksz099', 0.0029155710914662049) + +[fips2071950] +centroid = (0.65257234158866506, -1.695004358529155) +description = Udall city, KS +station = ('kwld', 0.0040597922322436397) +zone = ('ksz093', 0.0046948387752803952) + +[fips2071975] +centroid = (0.65584835950124354, -1.76897608971107) +description = Ulysses city, KS +station = ('klbl', 0.010665259264627957) +zone = ('ksz075', 0.00070010487487357615) + +[fips2072525] +centroid = (0.66055926495176398, -1.6576395994108819) +description = Uniontown city, KS +station = ('kcnu', 0.0076805339934493868) +zone = ('ksz073', 0.0017481826052215496) + +[fips2072650] +centroid = (0.67444129966286159, -1.7482940253413999) +description = Utica city, KS +station = ('khlc', 0.013435687132696392) +zone = ('ksz045', 0.0044824480755152199) + +[fips2073250] +centroid = (0.660305022839626, -1.6993400007372041) +description = Valley Center city, KS +station = ('kaao', 0.0025038137622336296) +zone = ('ksz083', 0.0029018130567692508) + +[fips2073300] +centroid = (0.68660081657528838, -1.6661122129982258) +description = Valley Falls city, KS +station = ('ktop', 0.005297798438037897) +zone = ('ksz026', 0.0020903162300026051) + +[fips2073450] +centroid = (0.67454526892640287, -1.6687097865239691) +description = Vassar CDP, KS +station = ('kfoe', 0.0049992472087179666) +zone = ('ksz055', 0.0015944062423963693) + +[fips2073525] +centroid = (0.69320203577876638, -1.6801485173619071) +description = Vermillion city, KS +station = ('kfnb', 0.011142843082611934) +zone = ('ksz011', 0.0035633962347683544) + +[fips2073775] +centroid = (0.67812071552545339, -1.7304478592068324) +description = Victoria city, KS +station = ('khys', 0.00162276649876744) +zone = ('ksz031', 0.0025449817736325959) + +[fips2073950] +centroid = (0.69058255837091076, -1.6980943767033483) +description = Vining city, KS +station = ('kcnk', 0.004810782027127372) +zone = ('ksz021', 0.0041768270133790532) + +[fips2074025] +centroid = (0.65419952950359195, -1.7042164157606912) +description = Viola city, KS +station = ('kict', 0.0041273831495483391) +zone = ('ksz083', 0.0043415094862416142) + +[fips2074075] +centroid = (0.66288477655370637, -1.6757117158704122) +description = Virgil city, KS +station = ('kemp', 0.0066809574428135241) +zone = ('ksz070', 0.0035370104601232565) + +[fips2074425] +centroid = (0.67882622996898712, -1.6703665926763021) +description = Wakarusa CDP, KS +station = ('kfoe', 0.001015478780300701) +zone = ('ksz039', 0.0026693880625206709) + +[fips2074450] +centroid = (0.68109100411295997, -1.7432653303406762) +description = WaKeeney city, KS +station = ('khlc', 0.006022650786300072) +zone = ('ksz030', 0.0019121145443359727) + +[fips2074525] +centroid = (0.68445683666884594, -1.6932882809954239) +description = Wakefield city, KS +station = ('kfri', 0.0044410407531132699) +zone = ('ksz021', 0.0030561446208950817) + +[fips2074575] +centroid = (0.68277147692995011, -1.7243494519075615) +description = Waldo city, KS +station = ('krsl', 0.0044274631112777912) +zone = ('ksz032', 0.0036108440800343596) + +[fips2074625] +centroid = (0.64580241885968936, -1.7136086956907886) +description = Waldron city, KS +station = ('kp28', 0.0070913569674760151) +zone = ('ksz091', 0.003633133977481386) + +[fips2074750] +centroid = (0.67915391553604898, -1.7731321724456741) +description = Wallace city, KS +station = ('kgld', 0.0080553509559976068) +zone = ('ksz027', 0.0023179256110606211) + +[fips2074950] +centroid = (0.6562502564681002, -1.6593733571299356) +description = Walnut city, KS +station = ('kcnu', 0.005760081322615739) +zone = ('ksz097', 0.0034905754249904288) + +[fips2075200] +centroid = (0.66530909124460402, -1.697475849469734) +description = Walton city, KS +station = ('kewk', 0.0012595497112535903) +zone = ('ksz068', 0.002678059862553307) + +[fips2075325] +centroid = (0.68426092346030964, -1.6809288017105963) +description = Wamego city, KS +station = ('kmhk', 0.0052036611891845899) +zone = ('ksz023', 0.0030636520922698043) + +[fips2075825] +centroid = (0.69493605529720781, -1.6938440287358441) +description = Washington city, KS +station = ('kcnk', 0.0093014563781038256) +zone = ('ksz009', 0.00075878254088008177) + +[fips2075950] +centroid = (0.69275837308290944, -1.6885499389690624) +description = Waterville city, KS +station = ('kmhk', 0.0097903164140837919) +zone = ('ksz010', 0.003402562194547936) + +[fips2076000] +centroid = (0.69396731029588832, -1.6569339278877158) +description = Wathena city, KS +station = ('kstj', 0.00026662705473971148) +zone = ('moz020', 0.0024798830841237848) + +[fips2076050] +centroid = (0.67013323365699395, -1.6686233403661177) +description = Waverly city, KS +station = ('kfoe', 0.0094015767271025969) +zone = ('ksz058', 0.0032876792358130773) + +[fips2076250] +centroid = (0.69698711387427403, -1.7110361676398114) +description = Webber city, KS +station = ('khjh', 0.0070932999350470215) +zone = ('ksz007', 0.003585482711376934) + +[fips2076350] +centroid = (0.6511520799098548, -1.6541272988241686) +description = Weir city, KS +station = ('kpts', 0.0025495955040735581) +zone = ('ksz101', 0.0026219876090533062) + +[fips2076425] +centroid = (0.66622702971139791, -1.6631506859635643) +description = Welda CDP, KS +station = ('kcnu', 0.0092066138351542277) +zone = ('ksz059', 0.00073873251759527944) + +[fips2076475] +centroid = (0.6507084695738754, -1.6997743433748553) +description = Wellington city, KS +station = ('kwld', 0.0053541664681200224) +zone = ('ksz092', 0.0014419571426712986) + +[fips2076625] +centroid = (0.67572123686981167, -1.6594721602188911) +description = Wellsville city, KS +station = ('kixd', 0.003210293126321749) +zone = ('ksz056', 0.003847276895445265) + +[fips2076675] +centroid = (0.67832662947060374, -1.7796797925878234) +description = Weskan CDP, KS +station = ('kitr', 0.00795863421122797) +zone = ('ksz027', 0.0029195599704363272) + +[fips2077150] +centroid = (0.65072656863821865, -1.6567862206731192) +description = West Mineral city, KS +station = ('kpts', 0.0039827263329978695) +zone = ('ksz101', 0.0022926115695900617) + +[fips2077200] +centroid = (0.68756085238364029, -1.6827377307605333) +description = Westmoreland city, KS +station = ('kmhk', 0.0058326409327549402) +zone = ('ksz023', 0.00099794472738049173) + +[fips2077250] +centroid = (0.66640135319708704, -1.6666320593159323) +description = Westphalia city, KS +station = ('kcnu', 0.0089946181976467351) +zone = ('ksz059', 0.0027694846099672816) + +[fips2077500] +centroid = (0.68136613781624433, -1.6513535866703142) +description = Westwood city, KS +station = ('kmkc', 0.0013649328217147439) +zone = ('ksz104', 0.0024070530722751535) + +[fips2077525] +centroid = (0.68135767296937222, -1.6512500537390857) +description = Westwood Hills city, KS +station = ('kmkc', 0.0013632487971764924) +zone = ('ksz104', 0.0024793521753997401) + +[fips2077550] +centroid = (0.69177133703102911, -1.6722239197063971) +description = Wetmore city, KS +station = ('kfnb', 0.0083907688091701387) +zone = ('ksz011', 0.0037515768767516148) + +[fips2077700] +centroid = (0.68944353904776656, -1.6810762471258047) +description = Wheaton city, KS +station = ('kmhk', 0.0081058978830546805) +zone = ('ksz023', 0.0021743815485766867) + +[fips2077825] +centroid = (0.67708481025451728, -1.6883441646502519) +description = White City city, KS +station = ('kfri', 0.004580384073677027) +zone = ('ksz037', 0.0021917147949306512) + +[fips2077850] +centroid = (0.69768440781703078, -1.6632810446053958) +description = White Cloud city, KS +station = ('kfnb', 0.0042494297965251322) +zone = ('moz011', 0.0023796486978412243) + +[fips2078050] +centroid = (0.66258618562527516, -1.6955213599601808) +description = Whitewater city, KS +station = ('kewk', 0.0024167140474877316) +zone = ('ksz068', 0.004110243948659149) + +[fips2078100] +centroid = (0.69093841355209973, -1.6687295087445166) +description = Whiting city, KS +station = ('kfnb', 0.008655764766059993) +zone = ('ksz024', 0.0038646261453350091) + +[fips2079000] +centroid = (0.65782670766167162, -1.6989502338086488) +description = Wichita city, KS +station = ('kict', 0.0014397763489743813) +zone = ('ksz083', 0.0016388452554228579) + +[fips2079250] +centroid = (0.68231748188492147, -1.6745271085472064) +description = Willard city, KS +station = ('kfoe', 0.0048661000268931187) +zone = ('ksz039', 0.0026932348702736852) + +[fips2079300] +centroid = (0.67164400811081282, -1.6662745460719539) +description = Williamsburg city, KS +station = ('kfoe', 0.0082417744419973071) +zone = ('ksz056', 0.002900600650113844) + +[fips2079400] +centroid = (0.6932920249549992, -1.6668888845153633) +description = Willis city, KS +station = ('kfnb', 0.0063793704269331447) +zone = ('ksz012', 0.0019758018789036496) + +[fips2079425] +centroid = (0.66499030685672722, -1.7102821679496574) +description = Willowbrook city, KS +station = ('khut', 0.0018232225875891945) +zone = ('ksz067', 0.0028929733995104591) + +[fips2079550] +centroid = (0.65162633822749916, -1.7315293699311236) +description = Wilmore city, KS +station = ('kptt', 0.0089953508985022215) +zone = ('ksz089', 0.0026616234378953958) + +[fips2079625] +centroid = (0.65825579685827451, -1.7440524040201555) +description = Wilroads Gardens CDP, KS +station = ('kddc', 0.0010519121103037881) +zone = ('ksz078', 0.00067714467387229582) + +[fips2079650] +centroid = (0.67432207622165785, -1.6873222394666245) +description = Wilsey city, KS +station = ('kfri', 0.0074223720735823225) +zone = ('ksz037', 0.00097199785501140971) + +[fips2079675] +centroid = (0.67762985912662255, -1.7187116020913069) +description = Wilson city, KS +station = ('krsl', 0.0047011111516081479) +zone = ('ksz048', 0.0043084159915680008) + +[fips2079800] +centroid = (0.68631093483982453, -1.662760517609281) +description = Winchester city, KS +station = ('klwc', 0.0053886563352624683) +zone = ('ksz026', 0.0021641302410694411) + +[fips2079850] +centroid = (0.66993065329071499, -1.7088686432417597) +description = Windom city, KS +station = ('khut', 0.0055751617622858051) +zone = ('ksz051', 0.0035997078578995688) + +[fips2079950] +centroid = (0.65000902887613865, -1.6926146188107394) +description = Winfield city, KS +station = ('kwld', 0.0015234347703441753) +zone = ('ksz093', 0.0019774425870278606) + +[fips2080075] +centroid = (0.68175667268967055, -1.7670605559504213) +description = Winona city, KS +station = ('kcbk', 0.0069467082660193222) +zone = ('ksz028', 0.0028419072581310598) + +[fips2080350] +centroid = (0.677110344421474, -1.6922599155468565) +description = Woodbine city, KS +station = ('kfri', 0.0052549259429255889) +zone = ('ksz035', 0.0029049938368678773) + +[fips2080450] +centroid = (0.68860164457648221, -1.7295964875977097) +description = Woodston city, KS +station = ('khlc', 0.010024424528234403) +zone = ('ksz017', 0.0035523289721592298) + +[fips2080500] +centroid = (0.6593031340358112, -1.7434175754113275) +description = Wright CDP, KS +station = ('kddc', 0.0010619518429504586) +zone = ('ksz078', 0.0014592992634895577) + +[fips2080700] +centroid = (0.66091227524627238, -1.6712367091215916) +description = Yates Center city, KS +station = ('kcnu', 0.0051296771262009889) +zone = ('ksz071', 0.00039114231041592753) + +[fips2080750] +centroid = (0.66227324809039256, -1.7081207522039876) +description = Yoder CDP, KS +station = ('khut', 0.0021155136223320764) +zone = ('ksz067', 0.0030029827919871694) + +[fips2080925] +centroid = (0.65353307552871798, -1.7153384391525626) +description = Zenda city, KS +station = ('kp28', 0.0046676946461486016) +zone = ('ksz082', 0.0028317133113670216) + +[fips2081025] +centroid = (0.68472999815007562, -1.7354626439334178) +description = Zurich city, KS +station = ('khlc', 0.0058738868389421692) +zone = ('ksz017', 0.0025357099698178191) + +[fips21001] +centroid = (0.64761386118374931, -1.4884412381635848) +description = Adair County, KY +station = ('kekq', 0.0073646617901305111) +zone = ('kyz077', 2.7510824691543146e-05) + +[fips2100190552] +centroid = (0.64877988075042159, -1.4894258482078049) +description = Cane Valley CCD, KY +station = ('kekq', 0.0087000351518768011) +zone = ('kyz077', 0.0014326871841870729) + +[fips2100190624] +centroid = (0.6497323243765275, -1.4865339249037128) +description = Casey Creek CCD, KY +station = ('kekq', 0.0078392685460601727) +zone = ('kyz077', 0.0026213563020100888) + +[fips2100190784] +centroid = (0.64724069233638026, -1.4888781813418215) +description = Columbia CCD, KY +station = ('kekq', 0.0074424372255274245) +zone = ('kyz077', 0.00050048429869154658) + +[fips2100191416] +centroid = (0.64579740976473621, -1.4881031678874732) +description = Glens Fork CCD, KY +station = ('kekq', 0.0062115729584856869) +zone = ('kyz077', 0.0018098784281349784) + +[fips2100191432] +centroid = (0.64637518356031642, -1.4912140951061057) +description = Gradyville CCD, KY +station = ('kglw', 0.0071523661402964284) +zone = ('kyz077', 0.0025332197366735852) + +[fips2100193680] +centroid = (0.6480087070204279, -1.486262840364293) +description = White Oak CCD, KY +station = ('kekq', 0.0063426671196056212) +zone = ('kyz077', 0.0017763037606789173) + +[fips2100298] +centroid = (0.64010053291317903, -1.5159616945287864) +description = Adairville city, KY +station = ('kckv', 0.0078864903106269438) +zone = ('tnz007', 0.0026177153906931914) + +[fips21003] +centroid = (0.64142193914315648, -1.5043421824869267) +description = Allen County, KY +station = ('kbwg', 0.0048991602233004758) +zone = ('kyz073', 3.0229803223495499e-05) + +[fips2100390024] +centroid = (0.6401156823710864, -1.5059151953818715) +description = Adolphus CCD, KY +station = ('kbwg', 0.0054091122243689702) +zone = ('kyz073', 0.0018423013928339752) + +[fips2100391560] +centroid = (0.64184087052351269, -1.5068927019360361) +description = Halfway CCD, KY +station = ('kbwg', 0.0035221204247221482) +zone = ('kyz073', 0.002112153688754954) + +[fips2100391760] +centroid = (0.64034287187981842, -1.5018004420439546) +description = Holland CCD, KY +station = ('kglw', 0.0061216354775853596) +zone = ('kyz073', 0.0022844757386704974) + +[fips2100393112] +centroid = (0.64138434475106842, -1.5038543804142868) +description = Scottsville CCD, KY +station = ('kbwg', 0.0051849037206693474) +zone = ('kyz073', 0.00036509110822548115) + +[fips2100393136] +centroid = (0.64318053289746591, -1.5039260087267885) +description = Settle CCD, KY +station = ('kbwg', 0.0040026899405052998) +zone = ('kyz073', 0.0017756431289962795) + +[fips21005] +centroid = (0.66331929372428278, -1.4832927961228817) +description = Anderson County, KY +station = ('kfft', 0.0033247041514699745) +zone = ('kyz039', 6.6292301941861957e-05) + +[fips2100591992] +centroid = (0.66375354909547157, -1.481487462451204) +description = Lawrenceburg CCD, KY +station = ('kfft', 0.0026815447856251094) +zone = ('kyz039', 0.0015531856735519756) + +[fips2100592580] +centroid = (0.66419089369943629, -1.4841164519034828) +description = Northwest Anderson CCD, KY +station = ('kfft', 0.0028907449682491135) +zone = ('kyz039', 0.0010712163058909326) + +[fips2100593292] +centroid = (0.66237718244734878, -1.4842506851762538) +description = Southwest Anderson CCD, KY +station = ('kfft', 0.004489272573696571) +zone = ('kyz039', 0.0011502329591906954) + +[fips2100694] +centroid = (0.64037083205443535, -1.4858945933454148) +description = Albany city, KY +station = ('kekq', 0.0048498955505491175) +zone = ('kyz082', 0.00064502562860020219) + +[fips21007] +centroid = (0.64666403555152141, -1.5535032205937014) +description = Ballard County, KY +station = ('kpah', 0.0033781281528737204) +zone = ('kyz004', 0.00018830836267692009) + +[fips2100790168] +centroid = (0.64757783758798804, -1.5547702598174791) +description = Barlow CCD, KY +station = ('kcir', 0.0020343009908764605) +zone = ('kyz004', 0.0013931638579634243) + +[fips2100791952] +centroid = (0.6476279110842279, -1.5526057548390333) +description = La Center CCD, KY +station = ('kpah', 0.0028367494657179264) +zone = ('kyz004', 0.0010164819029948669) + +[fips2100793696] +centroid = (0.6452955926982028, -1.5529709824383058) +description = Wickliffe CCD, KY +station = ('kpah', 0.0032481452733310818) +zone = ('kyz004', 0.0015225903309926167) + +[fips2100802] +centroid = (0.68006342406255582, -1.4727671342831243) +description = Alexandria city, KY +station = ('kluk', 0.0024031678056556116) +zone = ('kyz093', 0.00032345074799434851) + +[fips21009] +centroid = (0.64513676773627127, -1.4996739852432024) +description = Barren County, KY +station = ('kglw', 0.0012529565840863977) +zone = ('kyz074', 0.00012497221106090619) + +[fips2100946] +centroid = (0.65644573334432366, -1.4438945364398177) +description = Allen city, KY +station = ('kk22', 0.0027476642280294329) +zone = ('kyz110', 0.00097643599850552858) + +[fips2100990640] +centroid = (0.64743903155257698, -1.5008423435510727) +description = Cave City CCD, KY +station = ('kglw', 0.001235715558739657) +zone = ('kyz074', 0.0024088549920382894) + +[fips2100991408] +centroid = (0.64552564454690808, -1.4992389619271429) +description = Glasgow CCD, KY +station = ('kglw', 0.0010932182300625792) +zone = ('kyz074', 0.00058660539631858919) + +[fips2100991744] +centroid = (0.64738923730901765, -1.4983598046763282) +description = Hiseville CCD, KY +station = ('kglw', 0.0017967608512135392) +zone = ('kyz074', 0.0025070900294003194) + +[fips2100992944] +centroid = (0.64529316669054249, -1.5025715634140708) +description = Rocky Hill CCD, KY +station = ('kglw', 0.002175159537230176) +zone = ('kyz074', 0.0021983602916004763) + +[fips2100993464] +centroid = (0.64419114834754065, -1.4977002272987072) +description = Temple Hill CCD, KY +station = ('kglw', 0.0029079022684746539) +zone = ('kyz074', 0.0019604086929498822) + +[fips2100993496] +centroid = (0.64291417820031915, -1.5001179446450323) +description = Tracy CCD, KY +station = ('kglw', 0.0034106219254618122) +zone = ('kyz074', 0.0022694364494741819) + +[fips2101000] +centroid = (0.64080271377784137, -1.5196055929411001) +description = Allensville city, KY +station = ('kckv', 0.0051892521478973637) +zone = ('kyz022', 0.0026202325624300866) + +[fips21011] +centroid = (0.66588236209071405, -1.4614975433029969) +description = Bath County, KY +station = ('kiob', 0.0037523554190828329) +zone = ('kyz051', 0.00014651188464137762) + +[fips2101192640] +centroid = (0.665879203044768, -1.4619104358441413) +description = Owingsville CCD, KY +station = ('kiob', 0.0034621674628408472) +zone = ('kyz051', 0.00028304332592325927) + +[fips2101193056] +centroid = (0.6645163976049332, -1.4596722605179688) +description = Salt Lick CCD, KY +station = ('kiob', 0.0048157663588301487) +zone = ('kyz051', 0.0019501470107051342) + +[fips2101193144] +centroid = (0.66694612281651211, -1.4637273585020523) +description = Sharpsburg CCD, KY +station = ('kiob', 0.0031601223285645389) +zone = ('kyz051', 0.002061596348838539) + +[fips21013] +centroid = (0.64093167615627122, -1.4605097742128308) +description = Bell County, KY +station = ('k1a6', 0.0021090567659769527) +zone = ('kyz087', 0.00017119620578374018) + +[fips2101391920] +centroid = (0.64053813931653159, -1.4621028758474661) +description = Kentucky Ridge CCD, KY +station = ('k1a6', 0.0016388381211242605) +zone = ('kyz087', 0.0014754665964703748) + +[fips2101392304] +centroid = (0.6396043881667145, -1.4612061256777915) +description = Middlesborough CCD, KY +station = ('k1a6', 0.00066966247159904986) +zone = ('kyz087', 0.0016076468803416294) + +[fips2101392808] +centroid = (0.64281942427522831, -1.4591758365188241) +description = Pineville CCD, KY +station = ('ki35', 0.0034736953988097367) +zone = ('kyz087', 0.0019988526421176895) + +[fips2101392864] +centroid = (0.63943130386479441, -1.4639609882757245) +description = Pruden-Fonde CCD, KY +station = ('k1a6', 0.0020348392903393056) +zone = ('kyz087', 0.0033024901405550983) + +[fips2101393456] +centroid = (0.64097948072448341, -1.4578605563945213) +description = Tejay CCD, KY +station = ('ki35', 0.0033407005722955354) +zone = ('kyz087', 0.0020268362656849282) + +[fips21015] +centroid = (0.68023500738131937, -1.4788426777691941) +description = Boone County, KY +station = ('kcvg', 0.0015823209999186714) +zone = ('kyz091', 9.3510584144031788e-05) + +[fips2101504] +centroid = (0.66793376973363072, -1.4929133302125548) +description = Anchorage city, KY +station = ('klou', 0.0018795010809645051) +zone = ('kyz030', 0.002206662176551777) + +[fips2101590440] +centroid = (0.68041713248876501, -1.4800769048030344) +description = Burlington CCD, KY +station = ('kcvg', 0.0021590854900552406) +zone = ('kyz091', 0.0010411529844461382) + +[fips2101591272] +centroid = (0.68063287263760397, -1.4775838415929008) +description = Florence CCD, KY +station = ('kcvg', 0.00092359097054607359) +zone = ('kyz091', 0.0010460736008978211) + +[fips2101591680] +centroid = (0.68212785186169222, -1.4793349304314267) +description = Hebron CCD, KY +station = ('kcvg', 0.0013857298458423652) +zone = ('kyz091', 0.0020194534757418535) + +[fips2101593592] +centroid = (0.67839085758707707, -1.4780694794572684) +description = Walton CCD, KY +station = ('kcvg', 0.0031724101722977061) +zone = ('kyz091', 0.0018487372280711729) + +[fips2101648] +centroid = (0.65155935249080765, -1.4655363224585747) +description = Annville CDP, KY +station = ('kloz', 0.0045406035895264778) +zone = ('kyz069', 0.001621572828143342) + +[fips21017] +centroid = (0.66676048959726997, -1.4697393196434723) +description = Bourbon County, KY +station = ('kiob', 0.0040148509103013364) +zone = ('kyz042', 0.00012381764000351638) + +[fips2101792328] +centroid = (0.66840251281083884, -1.4691914607912713) +description = Millersburg CCD, KY +station = ('kiob', 0.0049619182397408522) +zone = ('kyz042', 0.0016550324718909465) + +[fips2101792576] +centroid = (0.66649724158619172, -1.4675177947583637) +description = North Middletown CCD, KY +station = ('kiob', 0.0026494160473592644) +zone = ('kyz042', 0.0018757360579648886) + +[fips2101792680] +centroid = (0.66651623076845334, -1.4711384977449182) +description = Paris CCD, KY +station = ('klex', 0.0050458028658717782) +zone = ('kyz042', 0.0010496829196339102) + +[fips21019] +centroid = (0.66950837087819492, -1.4430627648781946) +description = Boyd County, KY +station = ('khts', 0.0018020423111540175) +zone = ('kyz103', 8.6425496604555601e-05) + +[fips2101990104] +centroid = (0.67135054845038233, -1.4426146341394528) +description = Ashland CCD, KY +station = ('khts', 0.0022514886371781486) +zone = ('kyz103', 0.0019002104399615961) + +[fips2101990113] +centroid = (0.67052430958248832, -1.4439477689820035) +description = Ashland South CCD, KY +station = ('khts', 0.0026486768199870756) +zone = ('kyz103', 0.0011898135250011082) + +[fips2101990576] +centroid = (0.6688562984163573, -1.4436160691576621) +description = Cannonsburg CCD, KY +station = ('khts', 0.0023612149571133564) +zone = ('kyz103', 0.00073282145621731082) + +[fips2101990632] +centroid = (0.66914872833252903, -1.4419256305106429) +description = Catlettsburg CCD, KY +station = ('khts', 0.0010241054434181746) +zone = ('kyz103', 0.0010395579155070794) + +[fips2102044] +centroid = (0.64210322841667244, -1.5535725974314682) +description = Arlington city, KY +station = ('kcir', 0.0055910989689581594) +zone = ('kyz003', 0.0012540861994510886) + +[fips21021] +centroid = (0.6565614486737309, -1.4813135752978277) +description = Boyle County, KY +station = ('kdvk', 0.0015728293834390578) +zone = ('kyz055', 0.00013904337319268847) + +[fips2102188] +centroid = (0.6429364660548671, -1.4632839925121683) +description = Artemus CDP, KY +station = ('k1a6', 0.0042145465906733119) +zone = ('kyz086', 0.00094780766296665103) + +[fips2102191000] +centroid = (0.65718378072511452, -1.4797089370368366) +description = Danville CCD, KY +station = ('kdvk', 0.0012981123667351643) +zone = ('kyz055', 0.0012902335547324557) + +[fips2102191896] +centroid = (0.65571032141070329, -1.4813574877818079) +description = Junction City CCD, KY +station = ('kdvk', 0.0014714007559868134) +zone = ('kyz055', 0.00096708097587638138) + +[fips2102192744] +centroid = (0.65663941253141744, -1.4828049416903644) +description = Perryville CCD, KY +station = ('kdvk', 0.0027103669441664903) +zone = ('kyz055', 0.0012688912035746631) + +[fips21023] +centroid = (0.67506757615835467, -1.4678280968460755) +description = Bracken County, KY +station = ('kluk', 0.0085192577032035324) +zone = ('kyz097', 0.00022736156054483736) + +[fips2102368] +centroid = (0.67124476404441902, -1.4424287740274078) +description = Ashland city, KY +station = ('khts', 0.0020773758018049547) +zone = ('kyz103', 0.0018382958756476811) + +[fips2102390128] +centroid = (0.67619977124412334, -1.4660858393735647) +description = Augusta CCD, KY +station = ('kluk', 0.0084063500009135383) +zone = ('kyz097', 0.0015477967094398946) + +[fips2102390360] +centroid = (0.67446721780225372, -1.467612164711019) +description = Brooksville CCD, KY +station = ('kluk', 0.0091243153392993517) +zone = ('kyz097', 0.00078025936416176265) + +[fips2102391304] +centroid = (0.67616544061773665, -1.4691156960484419) +description = Foster CCD, KY +station = ('kluk', 0.0070719647572777961) +zone = ('kyz097', 0.0014673490962376547) + +[fips21025] +centroid = (0.65486809532686097, -1.4542502381170157) +description = Breathitt County, KY +station = ('kjkl', 0.0010877130911568274) +zone = ('kyz112', 2.4644989009045236e-05) + +[fips2102590584] +centroid = (0.65302900698744959, -1.4572440013829617) +description = Canoe CCD, KY +station = ('kjkl', 0.0038175781796394906) +zone = ('kyz112', 0.002990648759004965) + +[fips2102591552] +centroid = (0.65321622845631089, -1.4548684337380722) +description = Haddix CCD, KY +station = ('kjkl', 0.0027953734897387958) +zone = ('kyz112', 0.0017237224039355454) + +[fips2102591592] +centroid = (0.65391130583091761, -1.452393417232404) +description = Hardshell CCD, KY +station = ('kjkl', 0.002471698460716367) +zone = ('kyz112', 0.0017804178309055259) + +[fips2102591848] +centroid = (0.65569351389000663, -1.4553334941705587) +description = Jackson CCD, KY +station = ('kjkl', 0.00097306258978749024) +zone = ('kyz112', 0.0011692144325893769) + +[fips2102592592] +centroid = (0.65553727201536816, -1.4572720139174562) +description = Oakdale CCD, KY +station = ('kjkl', 0.0025090317809521923) +zone = ('kyz112', 0.0024630967586845827) + +[fips2102592960] +centroid = (0.65596383048455553, -1.4511412133072681) +description = Rousseau CCD, KY +station = ('kjkl', 0.0023845020234424461) +zone = ('kyz109', 0.002405773955185903) + +[fips2102593440] +centroid = (0.65697699411533828, -1.4549129570872905) +description = Taulbee CCD, KY +station = ('kjkl', 0.0011890642456693272) +zone = ('kyz112', 0.00216058783562776) + +[fips2102638] +centroid = (0.64338461424690163, -1.5134717030981362) +description = Auburn city, KY +station = ('kbwg', 0.0045446182785161921) +zone = ('kyz070', 0.0022806061351766413) + +[fips2102656] +centroid = (0.6668030756310187, -1.4962186347499817) +description = Audubon Park city, KY +station = ('ksdf', 0.00038799926925587214) +zone = ('kyz030', 0.00097677715372409949) + +[fips2102674] +centroid = (0.67670987862460386, -1.4660800797870335) +description = Augusta city, KY +station = ('kluk', 0.0080383257871205361) +zone = ('kyz097', 0.0019074440521096429) + +[fips21027] +centroid = (0.65935238722730249, -1.5085374478632378) +description = Breckinridge County, KY +station = ('kftk', 0.0067683729630963153) +zone = ('kyz024', 9.8543737078964563e-05) + +[fips2102764] +centroid = (0.65859999324006024, -1.4445697345142441) +description = Auxier CDP, KY +station = ('kk22', 0.0018300959157093201) +zone = ('kyz107', 0.0021380829373897755) + +[fips2102790760] +centroid = (0.65974913547286584, -1.5110984392878593) +description = Cloverport CCD, KY +station = ('kowb', 0.0081691683651133624) +zone = ('kyz024', 0.0021280166411371542) + +[fips2102791412] +centroid = (0.65704349115983929, -1.5102394929497829) +description = Glen Dean-Vanzant CCD, KY +station = ('kowb', 0.0089404303950096006) +zone = ('kyz024', 0.0026247714612767504) + +[fips2102791584] +centroid = (0.65935238722730249, -1.5085374478632378) +description = Hardinsburg CCD, KY +station = ('kftk', 0.0067683729630963153) +zone = ('kyz024', 9.8543737078964563e-05) + +[fips2102791824] +centroid = (0.66137836542301742, -1.5075294853136263) +description = Irvington CCD, KY +station = ('kftk', 0.005625806037094009) +zone = ('kyz024', 0.002240034655093699) + +[fips2102792134] +centroid = (0.65766514253281461, -1.5065317154868461) +description = McDaniels-Hudson CCD, KY +station = ('kftk', 0.006166101755940883) +zone = ('kyz024', 0.0022202431381388946) + +[fips21029] +centroid = (0.66269404697304835, -1.4958001571552308) +description = Bullitt County, KY +station = ('ksdf', 0.0037539883792808864) +zone = ('kyz029', 9.8468311899795386e-05) + +[fips2102991296] +centroid = (0.66225139656815757, -1.4977191466677986) +description = Fort Knox CCD, KY +station = ('kftk', 0.0022521755986468382) +zone = ('kyz029', 0.001672961092527655) + +[fips2102992008] +centroid = (0.66095630990330023, -1.4952784433352246) +description = Lebanon Junction CCD, KY +station = ('kftk', 0.0040769960037678717) +zone = ('kyz029', 0.0017731082176126343) + +[fips2102992440] +centroid = (0.66398150654907451, -1.4933050868164575) +description = Mount Washington CCD, KY +station = ('ksdf', 0.003410341446764989) +zone = ('kyz029', 0.0022643218953132529) + +[fips2102993160] +centroid = (0.66359006410443722, -1.4966955634213817) +description = Shepherdsville Northwest CCD, KY +station = ('ksdf', 0.0028494640515158523) +zone = ('kyz029', 0.0011981586294192229) + +[fips2102993168] +centroid = (0.66261788080449135, -1.4942758563997092) +description = Shepherdsville Southeast CCD, KY +station = ('ksdf', 0.0041358717232278614) +zone = ('kyz029', 0.0011066732053221352) + +[fips21031] +centroid = (0.64938488168233299, -1.5128945227145016) +description = Butler County, KY +station = ('kbwg', 0.005593945024449592) +zone = ('kyz061', 1.386416722027393e-05) + +[fips2103191888] +centroid = (0.64998956845497891, -1.5100514860827579) +description = Jetson CCD, KY +station = ('kbwg', 0.0050087322684005085) +zone = ('kyz061', 0.0023297590665066182) + +[fips2103192392] +centroid = (0.64961379906702454, -1.5138380477081297) +description = Morgantown CCD, KY +station = ('kbwg', 0.0062768716745104014) +zone = ('kyz061', 0.00079518047909338924) + +[fips2103192936] +centroid = (0.64852387585573901, -1.5158193629282863) +description = Rochester CCD, KY +station = ('kbwg', 0.0068954181511159292) +zone = ('kyz061', 0.0024979424960414496) + +[fips2103193392] +centroid = (0.64729533859526034, -1.5136377362698783) +description = Sugar Grove CCD, KY +station = ('kbwg', 0.0047850477404118991) +zone = ('kyz061', 0.0021817216455071765) + +[fips2103193648] +centroid = (0.65126395551490757, -1.5119033502322941) +description = Welchs Creek CCD, KY +station = ('kbwg', 0.0067341546321054574) +zone = ('kyz061', 0.0020270512521082832) + +[fips21033] +centroid = (0.64836613299794388, -1.5336297149066025) +description = Caldwell County, KY +station = ('k2i0', 0.0074925734164468698) +zone = ('kyz013', 6.8721935738047521e-05) + +[fips2103376] +centroid = (0.66822326749665895, -1.4941832841361833) +description = Bancroft city, KY +station = ('klou', 0.0012048410628818596) +zone = ('kyz030', 0.0018571867223758441) + +[fips2103391336] +centroid = (0.64990598463710092, -1.5347462369356883) +description = Fredonia CCD, KY +station = ('k2i0', 0.0077301420595286005) +zone = ('kyz013', 0.0018469502241872681) + +[fips2103392848] +centroid = (0.647529125448565, -1.5327860052928961) +description = Princeton CCD, KY +station = ('k2i0', 0.0073861971226142483) +zone = ('kyz013', 0.0010056454004025461) + +[fips2103412] +centroid = (0.64830082277733414, -1.5523328551571915) +description = Bandana CDP, KY +station = ('kpah', 0.002951133440707398) +zone = ('kyz004', 0.0017060433966908375) + +[fips21035] +centroid = (0.63915664140040795, -1.5406734448886312) +description = Calloway County, KY +station = ('kcey', 0.0013825642888077969) +zone = ('kyz009', 2.510871306995692e-05) + +[fips2103556] +centroid = (0.66843642455820507, -1.4940177222033393) +description = Barbourmeade city, KY +station = ('klou', 0.0014522366225010888) +zone = ('kyz030', 0.0021034172988282974) + +[fips2103574] +centroid = (0.64344634654254462, -1.4640854127980991) +description = Barbourville city, KY +station = ('kloz', 0.0045430853593345774) +zone = ('kyz086', 0.0006118484197783383) + +[fips2103591658] +centroid = (0.63812167860726787, -1.5431809419716789) +description = Hazel-Lynn Grove CCD, KY +station = ('kcey', 0.0018972207804264765) +zone = ('kyz009', 0.0022869819243741285) + +[fips2103591936] +centroid = (0.64058535047279808, -1.5426122438882091) +description = Kirksey CCD, KY +station = ('kcey', 0.00082650105683635278) +zone = ('kyz009', 0.0021289283742785257) + +[fips2103592480] +centroid = (0.63910632355807295, -1.5413605286552636) +description = Murray CCD, KY +station = ('kcey', 0.00097972500966213186) +zone = ('kyz009', 0.00057886228211513787) + +[fips2103592512] +centroid = (0.63799151195165416, -1.5386554079410129) +description = New Concord CCD, KY +station = ('kcey', 0.003373648225370058) +zone = ('kyz009', 0.0019767697476013647) + +[fips2103593176] +centroid = (0.64011105724856865, -1.5390528543182771) +description = Shiloh CCD, KY +station = ('kcey', 0.0025175288355488027) +zone = ('kyz009', 0.0015915453500782938) + +[fips2103628] +centroid = (0.66007971828648604, -1.4914065351094306) +description = Bardstown city, KY +station = ('ksdf', 0.0074368219301076321) +zone = ('kyz045', 0.00032843982596996818) + +[fips2103664] +centroid = (0.643570421999069, -1.5534954887851151) +description = Bardwell city, KY +station = ('kcir', 0.0044380830733082724) +zone = ('kyz003', 0.0006397320898682236) + +[fips21037] +centroid = (0.6797530521616737, -1.4727015448098344) +description = Campbell County, KY +station = ('kluk', 0.0027176082569746103) +zone = ('kyz093', 9.2321923677493483e-06) + +[fips2103718] +centroid = (0.64665827596498981, -1.554128275358718) +description = Barlow city, KY +station = ('kcir', 0.0024414896126406724) +zone = ('kyz004', 0.00065149640683392494) + +[fips2103790040] +centroid = (0.68006342406255582, -1.4727671342831243) +description = Alexandria CCD, KY +station = ('kluk', 0.0024031678056556116) +zone = ('kyz093', 0.00032345074799434851) + +[fips2103791448] +centroid = (0.67866126144808858, -1.4721198789300223) +description = Grants Lick CCD, KY +station = ('kluk', 0.0038818181287014007) +zone = ('kyz093', 0.0011726508120336592) + +[fips2103792545] +centroid = (0.68145357881176938, -1.4738234773596015) +description = Newport-Fort Thomas CCD, KY +station = ('kluk', 0.0010377985278516501) +zone = ('kyz093', 0.0019202704458932867) + +[fips21039] +centroid = (0.64328867349791952, -1.5529199141043923) +description = Carlisle County, KY +station = ('kpah', 0.0044458880090142419) +zone = ('kyz003', 0.00010411919364134921) + +[fips2103990080] +centroid = (0.6423857797692778, -1.5519057556359359) +description = Arlington CCD, KY +station = ('kpah', 0.0047512108966300095) +zone = ('kyz003', 0.0011100459265702281) + +[fips2103990160] +centroid = (0.64327862040142803, -1.5543394078383317) +description = Bardwell CCD, KY +station = ('kcir', 0.0042680677618206651) +zone = ('kyz003', 0.0012056160592288766) + +[fips2103990968] +centroid = (0.64400848218802709, -1.5511478987681351) +description = Cunningham CCD, KY +station = ('kpah', 0.0030327982305180154) +zone = ('kyz003', 0.0015683552462380276) + +[fips21041] +centroid = (0.67488887189624303, -1.4856955210909322) +description = Carroll County, KY +station = ('kfft', 0.0090014717490864305) +zone = ('kyz089', 1.0393973845798336e-05) + +[fips2104190608] +centroid = (0.67498446357937469, -1.4845137062945293) +description = Carrollton CCD, KY +station = ('kcvg', 0.0084361815489022787) +zone = ('kyz089', 0.00092045771602320737) + +[fips2104192840] +centroid = (0.6746798163584391, -1.4872464555708396) +description = Prestonville CCD, KY +station = ('kfft', 0.0092981688865159916) +zone = ('kyz089', 0.0012356641895791753) + +[fips21043] +centroid = (0.66862786972385635, -1.4494753663494098) +description = Carter County, KY +station = ('khts', 0.0069010843088163909) +zone = ('kyz102', 0.00014942797233258152) + +[fips2104390616] +centroid = (0.67034946249802352, -1.4511486484098817) +description = Carter CCD, KY +station = ('khts', 0.0081678517251975516) +zone = ('kyz102', 0.002041979793755774) + +[fips2104391440] +centroid = (0.66814090540925741, -1.4497950234019126) +description = Grahn CCD, KY +station = ('khts', 0.0072345924442819938) +zone = ('kyz102', 0.00068042459350437933) + +[fips2104391480] +centroid = (0.66935335073403268, -1.4474659862348811) +description = Grayson CCD, KY +station = ('khts', 0.0052581341825391498) +zone = ('kyz102', 0.0016869632194030629) + +[fips2104392608] +centroid = (0.6687126578189182, -1.4517617476695224) +description = Olive Hill CCD, KY +station = ('khts', 0.0086698756704368437) +zone = ('kyz102', 0.0017857574390558195) + +[fips2104393552] +centroid = (0.66786446270903399, -1.4533243933087105) +description = Upper Tygart CCD, KY +station = ('kjkl', 0.011929348432734674) +zone = ('kyz052', 0.0024083588816287151) + +[fips2104393704] +centroid = (0.66733135188901227, -1.4468345610180946) +description = Willard CCD, KY +station = ('khts', 0.0052834647599133457) +zone = ('kyz102', 0.0025350252423491301) + +[fips21045] +centroid = (0.65139112020420786, -1.4822770668580985) +description = Casey County, KY +station = ('kdvk', 0.0050088389619669547) +zone = ('kyz066', 6.0028010571958665e-06) + +[fips2104546] +centroid = (0.6560889705919235, -1.4609388983160188) +description = Beattyville city, KY +station = ('kjkl', 0.0053812903819747578) +zone = ('kyz111', 0.00016014384923461423) + +[fips2104590736] +centroid = (0.65161216615397299, -1.4846727930558485) +description = Clementsville CCD, KY +station = ('kdvk', 0.005924488430517484) +zone = ('kyz066', 0.0019160222961365774) + +[fips2104591052] +centroid = (0.6542125496598119, -1.482084469775141) +description = Dividing Ridge CCD, KY +station = ('kdvk', 0.0026419134211811668) +zone = ('kyz055', 0.0025544756167871479) + +[fips2104591088] +centroid = (0.64899549872621298, -1.4821554697691119) +description = Dunnville CCD, KY +station = ('ksme', 0.0048328022718515801) +zone = ('kyz066', 0.0024035152825592253) + +[fips2104592040] +centroid = (0.65107411605216814, -1.482353843891894) +description = Liberty CCD, KY +station = ('kdvk', 0.0053213223117132948) +zone = ('kyz066', 0.00032842190045987617) + +[fips2104592296] +centroid = (0.65125234907538188, -1.4799759200525142) +description = Middleburg CCD, KY +station = ('kdvk', 0.0046567457096752599) +zone = ('kyz066', 0.0018368754697145181) + +[fips2104654] +centroid = (0.65287878649873032, -1.516300986535374) +description = Beaver Dam city, KY +station = ('kowb', 0.0070513989117789696) +zone = ('kyz026', 0.0013028937424437474) + +[fips21047] +centroid = (0.64391109281576575, -1.527050591571455) +description = Christian County, KY +station = ('khop', 0.0039580595870922003) +zone = ('kyz017', 4.5744633016648229e-05) + +[fips2104790928] +centroid = (0.64657029391739684, -1.5269407754549194) +description = Crofton CCD, KY +station = ('k2i0', 0.0055533954640964332) +zone = ('kyz017', 0.0026471360368959217) + +[fips2104791288] +centroid = (0.63961096805799456, -1.5270732808517309) +description = Fort Campbell CCD, KY +station = ('khop', 0.00035057506000046998) +zone = ('tnz006', 0.0030539142040407817) + +[fips2104791768] +centroid = (0.64390301194132893, -1.5269411594273548) +description = Hopkinsville CCD, KY +station = ('khop', 0.0039529516356593443) +zone = ('kyz017', 4.8086384264359773e-05) + +[fips2104791960] +centroid = (0.64115333297127453, -1.5285786447848682) +description = LaFayette CCD, KY +station = ('khop', 0.0016511636205892826) +zone = ('kyz017', 0.0030463453180115843) + +[fips2104792596] +centroid = (0.64153098731482106, -1.5251965108537686) +description = Oak Grove-Pembroke CCD, KY +station = ('khop', 0.0022298219677428528) +zone = ('kyz017', 0.0027924871114331125) + +[fips2104816] +centroid = (0.6736224435377034, -1.4890906228183742) +description = Bedford city, KY +station = ('klou', 0.0079157895469326427) +zone = ('kyz032', 0.00039575388998124364) + +[fips21049] +centroid = (0.662703838270152, -1.4686068453050232) +description = Clark County, KY +station = ('kiob', 0.0027003703349038526) +zone = ('kyz049', 3.7243973140611092e-05) + +[fips2104978] +centroid = (0.65661487320213441, -1.5251953414831698) +description = Beech Grove CDP, KY +station = ('kowb', 0.0036849788298079001) +zone = ('kyz020', 0.0023479988425830515) + +[fips2104991278] +centroid = (0.66228712345794594, -1.4704459510977272) +description = Ford-Boonesborough CCD, KY +station = ('kiob', 0.0041591855500878062) +zone = ('kyz049', 0.001479202601619666) + +[fips2104993269] +centroid = (0.66159129559176078, -1.4677205322042755) +description = Southeast Clark CCD, KY +station = ('kiob', 0.0030495589010569391) +zone = ('kyz049', 0.0013439297943026026) + +[fips2104993744] +centroid = (0.66371363341547851, -1.4684251390765979) +description = Winchester CCD, KY +station = ('kiob', 0.0021473450862042978) +zone = ('kyz049', 0.0010121701970444827) + +[fips2105014] +centroid = (0.64872467598618111, -1.519125470317169) +description = Beechmont CDP, KY +station = ('k2i0', 0.0059543611919485291) +zone = ('kyz021', 0.001641589564952896) + +[fips2105068] +centroid = (0.66770488725552413, -1.4945229775684989) +description = Beechwood Village city, KY +station = ('klou', 0.00064844249747886035) +zone = ('kyz030', 0.0012788182002276512) + +[fips21051] +centroid = (0.64864229644548688, -1.4610284337066459) +description = Clay County, KY +station = ('kloz', 0.005151228059571176) +zone = ('kyz116', 9.7366545346854496e-05) + +[fips2105190096] +centroid = (0.64614010516336529, -1.4595110270016696) +description = Ashers Fork CCD, KY +station = ('ki35', 0.0046554365775425622) +zone = ('kyz116', 0.0027308090928415112) + +[fips2105190248] +centroid = (0.64834606171154585, -1.4596920700049791) +description = Big Creek CCD, KY +station = ('ki35', 0.0063295797022707391) +zone = ('kyz116', 0.001138920475846476) + +[fips2105190448] +centroid = (0.64982836984526471, -1.4633920109395744) +description = Burning Springs CCD, KY +station = ('kloz', 0.0040220002770145159) +zone = ('kyz116', 0.0022256075949884063) + +[fips2105192216] +centroid = (0.64829357966093848, -1.4614502797868529) +description = Manchester CCD, KY +station = ('kloz', 0.0047387957297460957) +zone = ('kyz116', 0.0003891561537470118) + +[fips2105192616] +centroid = (0.65062633437927653, -1.4601102683470495) +description = Oneida CCD, KY +station = ('kjkl', 0.0071254607567203298) +zone = ('kyz116', 0.0022094371971493366) + +[fips2105193200] +centroid = (0.6472875718800889, -1.4624969013793965) +description = Sibert-Hima CCD, KY +station = ('kloz', 0.0037843583221426427) +zone = ('kyz116', 0.0016941068061184198) + +[fips21053] +centroid = (0.6410441451732698, -1.4862089271436989) +description = Clinton County, KY +station = ('kekq', 0.0047036889381648316) +zone = ('kyz082', 0.00024503026313681917) + +[fips2105374] +centroid = (0.67193380257981383, -1.4432144339901929) +description = Bellefonte city, KY +station = ('khts', 0.0030001303865783832) +zone = ('kyz103', 0.0024327034130887455) + +[fips2105390032] +centroid = (0.64023883280310712, -1.4859631673317257) +description = Albany CCD, KY +station = ('kekq', 0.0049730853312459425) +zone = ('kyz082', 0.00077835412833946274) + +[fips2105390944] +centroid = (0.64215050938610896, -1.4857831366193823) +description = Cumberland City CCD, KY +station = ('kekq', 0.0039681740711491878) +zone = ('kyz082', 0.0011389183988315013) + +[fips2105392] +centroid = (0.6676055431145006, -1.4938452138600722) +description = Bellemeade city, KY +station = ('klou', 0.0010816467919547593) +zone = ('kyz030', 0.0014562748784096755) + +[fips2105428] +centroid = (0.68031852138602733, -1.4804923280715943) +description = Belleview CDP, KY +station = ('kcvg', 0.0024870906449582348) +zone = ('kyz091', 0.0013405982921630049) + +[fips2105446] +centroid = (0.68244084175645237, -1.4744119325702039) +description = Bellevue city, KY +station = ('kluk', 0.0008252296700358736) +zone = ('ohz077', 0.0018682067549705972) + +[fips2105464] +centroid = (0.66777737077935939, -1.4950381464038101) +description = Bellewood city, KY +station = ('klou', 0.00049011615478688044) +zone = ('kyz030', 0.0012849997864713756) + +[fips21055] +centroid = (0.6520227025006271, -1.5377225120025291) +description = Crittenden County, KY +station = ('kehr', 0.0099021951991781747) +zone = ('kyz010', 0.00014416852136143617) + +[fips2105591098] +centroid = (0.65223247362342429, -1.5355574310654303) +description = East Crittenden CCD, KY +station = ('kehr', 0.0088130449828397878) +zone = ('kyz010', 0.0016410819006795825) + +[fips2105592240] +centroid = (0.65186384263211061, -1.5373603910893254) +description = Marion CCD, KY +station = ('kehr', 0.0098671398181381549) +zone = ('kyz010', 0.00019049128826076095) + +[fips2105593265] +centroid = (0.65015645683805467, -1.5387438437742114) +description = South Crittenden CCD, KY +station = ('kpah', 0.009095692058842161) +zone = ('kyz010', 0.0019962238138388324) + +[fips2105593650] +centroid = (0.65295465596131452, -1.539246777851466) +description = West Crittenden CCD, KY +station = ('khsb', 0.0085462679101096176) +zone = ('kyz010', 0.0016721022824832139) + +[fips2105662] +centroid = (0.64514544202265378, -1.4477901113302691) +description = Benham city, KY +station = ('klnp', 0.0058510239701049134) +zone = ('kyz118', 0.0030564134921608737) + +[fips21057] +centroid = (0.64200587395099629, -1.4903977173484855) +description = Cumberland County, KY +station = ('kglw', 0.0089303792005499781) +zone = ('kyz081', 8.2433859441920126e-05) + +[fips2105790432] +centroid = (0.64292803611457994, -1.4905818670378632) +description = Burkesville CCD, KY +station = ('kglw', 0.0083854736704982065) +zone = ('kyz081', 0.00090748779357091201) + +[fips2105791924] +centroid = (0.64113343621780183, -1.48967321372269) +description = Kettle-Peytonsburg CCD, KY +station = ('kekq', 0.0072453487002497579) +zone = ('kyz081', 0.0010461110528725292) + +[fips2105824] +centroid = (0.64318939917006612, -1.5421450367007428) +description = Benton city, KY +station = ('kcey', 0.003351769875834818) +zone = ('kyz008', 0.00068171560053468529) + +[fips2105842] +centroid = (0.65605223141116908, -1.4710867661858893) +description = Berea city, KY +station = ('ki39', 0.00092945912642666275) +zone = ('kyz057', 0.0022928755856395163) + +[fips21059] +centroid = (0.65854189122926132, -1.519957311691962) +description = Daviess County, KY +station = ('kowb', 0.0011072863757684512) +zone = ('kyz019', 3.1635414385170298e-06) + +[fips2105968] +centroid = (0.67231182344250329, -1.4727507281881558) +description = Berry city, KY +station = ('klex', 0.0090123442378538098) +zone = ('kyz037', 0.001541617409813411) + +[fips2105992624] +centroid = (0.65904431916103301, -1.5205331132654876) +description = Owensboro CCD, KY +station = ('kowb', 0.00073479628749087726) +zone = ('kyz019', 0.00067487771794575032) + +[fips2105993556] +centroid = (0.65811500114751609, -1.5218754634464888) +description = Utica-Stanley CCD, KY +station = ('kowb', 0.00070944246178637164) +zone = ('kyz019', 0.0015746691660082995) + +[fips2105993692] +centroid = (0.65898691528193487, -1.5174633758172025) +description = Whitesville-Philpot CCD, KY +station = ('kowb', 0.0030840718388497374) +zone = ('kyz019', 0.0020233386791615737) + +[fips21061] +centroid = (0.64974866065832615, -1.5047840998535316) +description = Edmonson County, KY +station = ('kglw', 0.0050236300006137836) +zone = ('kyz062', 0.00044128132464097504) + +[fips2106190368] +centroid = (0.64788573112133252, -1.5047541500035673) +description = Brownsville CCD, KY +station = ('kbwg', 0.0038828288419922715) +zone = ('kyz062', 0.0015601262923099048) + +[fips2106190376] +centroid = (0.65018897232201933, -1.5064284094484204) +description = Brownsville North CCD, KY +station = ('kbwg', 0.005206915640127702) +zone = ('kyz062', 0.0012818029070259267) + +[fips2106192212] +centroid = (0.64972954930301685, -1.5041192341282767) +description = Mammoth Cave CCD, KY +station = ('kglw', 0.0046357822401283935) +zone = ('kyz062', 0.00087614302440094981) + +[fips2106193424] +centroid = (0.6505399580345953, -1.5077697124318707) +description = Sunfish CCD, KY +station = ('kbwg', 0.0053639078274071135) +zone = ('kyz062', 0.0023728927303059075) + +[fips2106220] +centroid = (0.65537336814531333, -1.4420716796624498) +description = Betsy Layne CDP, KY +station = ('kk22', 0.0035098489580833257) +zone = ('kyz110', 0.001679870778512332) + +[fips21063] +centroid = (0.66525711533947962, -1.4503256907609814) +description = Elliott County, KY +station = ('khts', 0.0086838977648181874) +zone = ('kyz104', 2.5756354314726015e-05) + +[fips2106391840] +centroid = (0.66480605244759416, -1.4486553757602378) +description = Isonville CCD, KY +station = ('kk22', 0.0077717885013082822) +zone = ('kyz104', 0.0013989277742036919) + +[fips2106393088] +centroid = (0.66564527656512318, -1.4515595512756785) +description = Sandy Hook CCD, KY +station = ('kjkl', 0.0099058096665693846) +zone = ('kyz104', 0.0010352892164884567) + +[fips21065] +centroid = (0.65785753017626181, -1.4654469790541649) +description = Estill County, KY +station = ('ki39', 0.0051740524895574321) +zone = ('kyz058', 5.2567951427066793e-06) + +[fips2106591816] +centroid = (0.65920995090704726, -1.4659382717853087) +description = Irvine CCD, KY +station = ('kiob', 0.005020319367895992) +zone = ('kyz058', 0.0014067262221087843) + +[fips2106592888] +centroid = (0.6577332103736423, -1.4633108531293566) +description = Ravenna CCD, KY +station = ('kiob', 0.0067811782727032824) +zone = ('kyz058', 0.0017000336881228355) + +[fips2106593580] +centroid = (0.6561561657681253, -1.4651493480568223) +description = Wagersville-South Irvine CCD, KY +station = ('ki39', 0.0053321460918564637) +zone = ('kyz058', 0.0017172873554801287) + +[fips2106593756] +centroid = (0.65751748767809581, -1.4670105148112715) +description = Winston-West Irvine CCD, KY +station = ('ki39', 0.0038935927193264885) +zone = ('kyz058', 0.0012780220846848821) + +[fips21067] +centroid = (0.66392598762556865, -1.4740779114579572) +description = Fayette County, KY +station = ('klex', 0.0019495525169580773) +zone = ('kyz041', 3.7722945145351878e-05) + +[fips2106792034] +centroid = (0.6637650333619497, -1.474921655978249) +description = Lexington-Fayette Central CCD, KY +station = ('klex', 0.001282129242859861) +zone = ('kyz041', 0.0006888181580153867) + +[fips2106792035] +centroid = (0.6639027223866395, -1.4726285376872235) +description = Lexington-Fayette Northeast CCD, KY +station = ('klex', 0.003088975419776869) +zone = ('kyz041', 0.0011480014722573758) + +[fips2106792036] +centroid = (0.66568226009197284, -1.4741103222221668) +description = Lexington-Fayette Northwest CCD, KY +station = ('klex', 0.0026832460115979832) +zone = ('kyz041', 0.001718993549101173) + +[fips2106792037] +centroid = (0.66221378472277714, -1.4734594365842204) +description = Lexington-Fayette Southeast CCD, KY +station = ('klex', 0.0029095634022440835) +zone = ('kyz041', 0.0018175546050554869) + +[fips2106792038] +centroid = (0.66388837578018811, -1.4764526064382206) +description = Lexington-Fayette Southwest CCD, KY +station = ('klex', 0.00011112934468616969) +zone = ('kyz040', 0.0020494633125588608) + +[fips21069] +centroid = (0.6696554497742605, -1.4609479565748367) +description = Fleming County, KY +station = ('kiob', 0.0066221459093044038) +zone = ('kyz044', 0.0001325793652694157) + +[fips2106991184] +centroid = (0.67009511566613034, -1.4638920826768556) +description = Ewing CCD, KY +station = ('kiob', 0.0060506438705416497) +zone = ('kyz043', 0.0021726250047751608) + +[fips2106991264] +centroid = (0.67089501751561187, -1.4607545740937156) +description = Flemingsburg CCD, KY +station = ('kiob', 0.0077462348210603355) +zone = ('kyz044', 0.0012106429767547451) + +[fips2106991728] +centroid = (0.66859860055230036, -1.4592241995923969) +description = Hillsboro CCD, KY +station = ('kiob', 0.006755422462318173) +zone = ('kyz044', 0.0016352994791036478) + +[fips2107012] +centroid = (0.64819585867611929, -1.4482880014059853) +description = Blackey city, KY +station = ('klnp', 0.0067976843820569555) +zone = ('kyz118', 0.0017732623344833603) + +[fips21071] +centroid = (0.65551569974581347, -1.4440913048596875) +description = Floyd County, KY +station = ('kk22', 0.0036557068310698127) +zone = ('kyz110', 7.6571665206034864e-05) + +[fips2107190244] +centroid = (0.65574468694367505, -1.4426736437214625) +description = Betsy Layne-Stanville CCD, KY +station = ('kk22', 0.003149815894170765) +zone = ('kyz110', 0.0012233114790605728) + +[fips2107191540] +centroid = (0.65391436015710858, -1.4424543780075345) +description = Grethel-Teaberry CCD, KY +station = ('kk22', 0.0049667525428294381) +zone = ('kyz110', 0.0020948556642909045) + +[fips2107192136] +centroid = (0.65322888209338792, -1.4438373420002297) +description = McDowell CCD, KY +station = ('kk22', 0.0057831296556483938) +zone = ('kyz110', 0.0022846205451786824) + +[fips2107192244] +centroid = (0.65521545075459287, -1.444760132482344) +description = Martin-Allen CCD, KY +station = ('kk22', 0.0041559592771810245) +zone = ('kyz110', 0.00053585805335829907) + +[fips2107192832] +centroid = (0.65759908182062654, -1.4445736789583539) +description = Prestonsburg CCD, KY +station = ('kk22', 0.0022189915590552535) +zone = ('kyz110', 0.0021247187613902519) + +[fips2107192919] +centroid = (0.65662625274885744, -1.4453530557358316) +description = Risner CCD, KY +station = ('kk22', 0.0033136964929346771) +zone = ('kyz110', 0.0014603018563792722) + +[fips2107193624] +centroid = (0.65406796658457655, -1.4458290593827283) +description = Wayland CCD, KY +station = ('kk22', 0.0055714565737296599) +zone = ('kyz110', 0.0019344921339278307) + +[fips2107193672] +centroid = (0.65181047046358465, -1.4435636220136396) +description = Wheelwright-Weeksbury CCD, KY +station = ('klnp', 0.0067902684833077787) +zone = ('kyz113', 0.0033868102472203324) + +[fips2107264] +centroid = (0.66366516562215061, -1.4458873882863297) +description = Blaine city, KY +station = ('kk22', 0.00556768588142296) +zone = ('kyz105', 0.0016675942396522396) + +[fips21073] +centroid = (0.66732522578333775, -1.4812397478704682) +description = Franklin County, KY +station = ('kfft', 0.00099692345811949377) +zone = ('kyz035', 0.00013418141623426532) + +[fips2107390] +centroid = (0.64482602931624622, -1.5527139128927794) +description = Blandville city, KY +station = ('kpah', 0.0032968831393232548) +zone = ('kyz003', 0.0016192541912355089) + +[fips2107390136] +centroid = (0.66834496930540055, -1.4823008207892181) +description = Bald Knob CCD, KY +station = ('kfft', 0.0019624373590509708) +zone = ('kyz035', 0.0011897665158231607) + +[fips2107391320] +centroid = (0.66671512849001058, -1.4812763125182975) +description = Frankfort CCD, KY +station = ('kfft', 0.00049375065506452416) +zone = ('kyz035', 0.00068820338735079637) + +[fips2107392704] +centroid = (0.66899677996785034, -1.4805640261972663) +description = Peaks Mill CCD, KY +station = ('kfft', 0.0027446594114440841) +zone = ('kyz035', 0.0017230275858700799) + +[fips21075] +centroid = (0.63796356923032971, -1.5566194187066746) +description = Fulton County, KY +station = ('kcir', 0.0089440126749903929) +zone = ('kyz001', 2.650293736973423e-05) + +[fips2107516] +centroid = (0.6616355396882988, -1.4889212909743457) +description = Bloomfield city, KY +station = ('kfft', 0.0073841317813278812) +zone = ('kyz038', 0.002172583146203578) + +[fips2107591360] +centroid = (0.63787192199130749, -1.5532992090574358) +description = Fulton CCD, KY +station = ('kpah', 0.0093468760412007273) +zone = ('kyz002', 0.002301278390285363) + +[fips2107591712] +centroid = (0.63840257189708383, -1.5583544156094973) +description = Hickman CCD, KY +station = ('kcir', 0.008546500300519521) +zone = ('kyz001', 0.0014591489165216018) + +[fips2107591918] +centroid = (0.63771606408910431, -1.5622887193560504) +description = Kentucky Bend CCD, KY +station = ('kdyr', 0.0095300521663443365) +zone = ('moz114', 0.0021786446049246793) + +[fips21077] +centroid = (0.67649282947882583, -1.4811232995027752) +description = Gallatin County, KY +station = ('kcvg', 0.0057124799399522171) +zone = ('kyz090', 6.9699752620663326e-05) + +[fips2107793616] +centroid = (0.67649282947882583, -1.4811232995027752) +description = Warsaw CCD, KY +station = ('kcvg', 0.0057124799399522171) +zone = ('kyz090', 6.9699752620663326e-05) + +[fips2107858] +centroid = (0.66747336933024703, -1.4933857210278996) +description = Blue Ridge Manor city, KY +station = ('klou', 0.0014088435271397157) +zone = ('kyz030', 0.0016286030650674947) + +[fips21079] +centroid = (0.6567702249588544, -1.4756035561170029) +description = Garrard County, KY +station = ('ki39', 0.0029836637922423946) +zone = ('kyz056', 0.00020038802596121229) + +[fips2107990400] +centroid = (0.65855229339160326, -1.4775298760124291) +description = Bryantsville CCD, KY +station = ('kdvk', 0.0030877303390391604) +zone = ('kyz056', 0.0023022572894514227) + +[fips2107991976] +centroid = (0.6572756723102321, -1.4757638297022135) +description = Lancaster CCD, KY +station = ('ki39', 0.0031512486038797909) +zone = ('kyz056', 0.00041733351255208382) + +[fips2107992664] +centroid = (0.65553522998014324, -1.4737758647776069) +description = Paint Lick CCD, KY +station = ('ki39', 0.0019698617686127813) +zone = ('kyz056', 0.001933524321932459) + +[fips21081] +centroid = (0.6745559677947176, -1.4770013903149253) +description = Grant County, KY +station = ('kcvg', 0.0070169687938859649) +zone = ('kyz095', 2.0968904290134713e-05) + +[fips2108190840] +centroid = (0.67257770690075203, -1.4758639941479856) +description = Corinth CCD, KY +station = ('kfft', 0.0077077632980156819) +zone = ('kyz095', 0.0021542703169028549) + +[fips2108190896] +centroid = (0.67642755416480127, -1.4773681538039394) +description = Crittenden CCD, KY +station = ('kcvg', 0.0051305054877655593) +zone = ('kyz095', 0.0019034858078142616) + +[fips2108193720] +centroid = (0.67471763764332982, -1.4770765267392236) +description = Williamstown-Dry Ridge CCD, KY +station = ('kcvg', 0.006851336317527712) +zone = ('kyz095', 0.00018613548068180472) + +[fips21083] +centroid = (0.64094326514250444, -1.5472325842038435) +description = Graves County, KY +station = ('kcey', 0.0042050814035074708) +zone = ('kyz006', 1.9191521305226423e-05) + +[fips2108391208] +centroid = (0.64130449593778982, -1.5493896191730909) +description = Fancy Farm CCD, KY +station = ('kpah', 0.0053408401337057066) +zone = ('kyz006', 0.0017494557640275452) + +[fips2108391216] +centroid = (0.64059737579134424, -1.5452885666698022) +description = Farmington CCD, KY +station = ('kcey', 0.0026115672045403126) +zone = ('kyz006', 0.0016128471590726851) + +[fips2108391722] +centroid = (0.64345182687639602, -1.5486643301491323) +description = Hickory-Lowes CCD, KY +station = ('kpah', 0.0032292069315198353) +zone = ('kyz006', 0.002756105119433647) + +[fips2108392256] +centroid = (0.64086291018374264, -1.5474933363940917) +description = Mayfield CCD, KY +station = ('kcey', 0.0043878120118426922) +zone = ('kyz006', 0.00020475544601544622) + +[fips2108393128] +centroid = (0.63848922749444537, -1.5461603237245882) +description = Sedalia CCD, KY +station = ('kcey', 0.0034727617723263491) +zone = ('kyz006', 0.0026008848920813094) + +[fips2108393432] +centroid = (0.64331609262046829, -1.5457625108281814) +description = Symsonia CCD, KY +station = ('kpah', 0.0043516649335074813) +zone = ('kyz006', 0.0026623324487125536) + +[fips2108393752] +centroid = (0.63858539513623025, -1.5489219407467265) +description = Wingo-Water Valley CCD, KY +station = ('kcey', 0.0055594099957490539) +zone = ('kyz006', 0.0027053465945114765) + +[fips2108488] +centroid = (0.65236298934488846, -1.4992667999287124) +description = Bonnieville city, KY +station = ('kglw', 0.0060815102782400829) +zone = ('kyz063', 0.001377181576346764) + +[fips21085] +centroid = (0.65377550176181998, -1.5069872813282015) +description = Grayson County, KY +station = ('kbwg', 0.0086446461901289618) +zone = ('kyz027', 3.8829132354501515e-05) + +[fips2108590560] +centroid = (0.65261080864537913, -1.5089249109571807) +description = Caneyville CCD, KY +station = ('kbwg', 0.0074399115978860154) +zone = ('kyz027', 0.0019546996450264557) + +[fips2108590704] +centroid = (0.65494036941118605, -1.5036826051093055) +description = Clarkson CCD, KY +station = ('kftk', 0.0070357492070905999) +zone = ('kyz027', 0.0028521843240352346) + +[fips2108592016] +centroid = (0.65396399732103538, -1.5063088194880738) +description = Leitchfield CCD, KY +station = ('kftk', 0.0088511613438050762) +zone = ('kyz027', 0.00055744959709254284) + +[fips2108592336] +centroid = (0.65300256524928169, -1.5032530446738046) +description = Millerstown CCD, KY +station = ('kglw', 0.0071140407324262866) +zone = ('kyz027', 0.003072667061950037) + +[fips2108593192] +centroid = (0.65506233301931549, -1.5097731060670647) +description = Short Creek CCD, KY +station = ('kftk', 0.0098052649203082959) +zone = ('kyz027', 0.0025395991564133402) + +[fips2108614] +centroid = (0.6540361317790202, -1.4605350465803999) +description = Booneville city, KY +station = ('kjkl', 0.0054141931454489414) +zone = ('kyz114', 0.00094619356092430018) + +[fips21087] +centroid = (0.65047787667310197, -1.4933281949757538) +description = Green County, KY +station = ('kglw', 0.006857037010744341) +zone = ('kyz064', 0.0001527290852542884) + +[fips2108722] +centroid = (0.65941162370211515, -1.4955252852513343) +description = Boston CDP, KY +station = ('kftk', 0.0043709842622804106) +zone = ('kyz045', 0.0030769309505375908) + +[fips2108791064] +centroid = (0.64942491953537373, -1.4943533490184979) +description = Donansburg CCD, KY +station = ('kglw', 0.0055811873572930376) +zone = ('kyz064', 0.0013325358807105073) + +[fips2108791504] +centroid = (0.65057772695960847, -1.492011675667682) +description = Greensburg CCD, KY +station = ('kglw', 0.0077721686460326626) +zone = ('kyz064', 0.00095356213506527605) + +[fips2108791536] +centroid = (0.64909941562987683, -1.491775061380989) +description = Gresham CCD, KY +station = ('kglw', 0.0072495691543724089) +zone = ('kyz064', 0.0017004136189439851) + +[fips2108793408] +centroid = (0.65198619021267534, -1.4939136656733354) +description = Summersville CCD, KY +station = ('kglw', 0.0075445498801695243) +zone = ('kyz064', 0.0017101353511887504) + +[fips21089] +centroid = (0.67306172160891509, -1.4474684471491266) +description = Greenup County, KY +station = ('khts', 0.006271120736147974) +zone = ('kyz101', 0.00035132654689156589) + +[fips2108902] +centroid = (0.64526426403812953, -1.5086357622600028) +description = Bowling Green city, KY +station = ('kbwg', 0.00031285639099229792) +zone = ('kyz071', 0.00044488490276261249) + +[fips2108991260] +centroid = (0.67223186990946948, -1.4436784123185431) +description = Flatwoods-Russell CCD, KY +station = ('khts', 0.0034625625691070512) +zone = ('kyz103', 0.0027591418883529469) + +[fips2108991512] +centroid = (0.67283601563004725, -1.4467745042385336) +description = Greenup CCD, KY +station = ('khts', 0.0056943389946851036) +zone = ('kyz101', 0.00039530453491576562) + +[fips2108993290] +centroid = (0.67564850899988094, -1.448228101706057) +description = South Shore CCD, KY +station = ('khts', 0.0083859184673118273) +zone = ('ohz088', 0.0016227213086865337) + +[fips2108993530] +centroid = (0.67347232776873944, -1.4484245210600766) +description = Tygarts Valley CCD, KY +station = ('khts', 0.0071217953368711779) +zone = ('kyz101', 0.001159342681886933) + +[fips2108993784] +centroid = (0.6712602800214692, -1.4452053136146503) +description = Wurtland CCD, KY +station = ('khts', 0.0038414343609177851) +zone = ('kyz101', 0.0021944832188676511) + +[fips21091] +centroid = (0.66049173816300444, -1.5148196557860363) +description = Hancock County, KY +station = ('kowb', 0.0054634646690838685) +zone = ('kyz023', 0.00020626638524817842) + +[fips2109100] +centroid = (0.65440458823740888, -1.4860636110301779) +description = Bradfordsville city, KY +station = ('kdvk', 0.0054018788814951197) +zone = ('kyz054', 0.0019967354122300608) + +[fips2109191640] +centroid = (0.66109525556505155, -1.5138588171262284) +description = Hawesville CCD, KY +station = ('kowb', 0.0063861602212685557) +zone = ('kyz023', 0.00084449628672453162) + +[fips2109192032] +centroid = (0.66175680516472746, -1.5160078759407942) +description = Lewisport CCD, KY +station = ('kowb', 0.0052149022922824981) +zone = ('kyz023', 0.001728488350371973) + +[fips2109192696] +centroid = (0.6591813449606071, -1.5139387357526772) +description = Patesville CCD, KY +station = ('kowb', 0.0058767905954972537) +zone = ('kyz023', 0.001369003365700129) + +[fips2109226] +centroid = (0.6631720228419995, -1.5041305962217073) +description = Brandenburg city, KY +station = ('kftk', 0.0033928632755008776) +zone = ('kyz025', 0.00069475191759061738) + +[fips21093] +centroid = (0.65791645249180919, -1.5003405788444166) +description = Hardin County, KY +station = ('kftk', 0.0035636578830709354) +zone = ('kyz028', 3.6288626254666921e-05) + +[fips2109379] +centroid = (0.65769765801677926, -1.5335408252877984) +description = Breckinridge Center CDP, KY +station = ('kehr', 0.0034252273260331058) +zone = ('kyz014', 0.0011860616110248483) + +[fips2109390656] +centroid = (0.65717974901454246, -1.5011277921502362) +description = Cecilia CCD, KY +station = ('kftk', 0.0043381999167147311) +zone = ('kyz028', 0.00098988875361508437) + +[fips2109391128] +centroid = (0.65785341119922724, -1.4979605955165196) +description = Elizabethtown CCD, KY +station = ('kftk', 0.0041073676250208656) +zone = ('kyz028', 0.001890199732424673) + +[fips2109391298] +centroid = (0.66125936887461656, -1.4991099471888354) +description = Fort Knox CCD, KY +station = ('kftk', 0.0010427001260580207) +zone = ('kyz029', 0.0030688847391805432) + +[fips2109392880] +centroid = (0.65927826309397031, -1.5017110462796674) +description = Radcliff CCD, KY +station = ('kftk', 0.0024323908168182055) +zone = ('kyz028', 0.0017096529912657447) + +[fips2109393264] +centroid = (0.65505301296110974, -1.5003770911323684) +description = Sonora CCD, KY +station = ('kftk', 0.0064268022663842694) +zone = ('kyz028', 0.002899566972505944) + +[fips2109393416] +centroid = (0.65669903297866561, -1.5034002981027954) +description = Summit CCD, KY +station = ('kftk', 0.0053363135240825695) +zone = ('kyz028', 0.002723378271083723) + +[fips2109393664] +centroid = (0.66304498032574699, -1.5004299920619963) +description = West Point CCD, KY +station = ('kftk', 0.0015653564441482312) +zone = ('inz090', 0.0040895780676976053) + +[fips2109406] +centroid = (0.65212009187288833, -1.5223146406461683) +description = Bremen city, KY +station = ('k2i0', 0.0024455866306589435) +zone = ('kyz021', 0.0028128516319554878) + +[fips21095] +centroid = (0.64331480107682193, -1.4524891310885835) +description = Harlan County, KY +station = ('ki35', 0.0019128263431167625) +zone = ('kyz088', 6.3470661319919156e-05) + +[fips2109532] +centroid = (0.66807864951483864, -1.4938706433072737) +description = Briarwood city, KY +station = ('klou', 0.0012821121523988953) +zone = ('kyz030', 0.0018331475730240503) + +[fips2109590056] +centroid = (0.64100981454688299, -1.4561444439542053) +description = Alva CCD, KY +station = ('ki35', 0.0025193701153781215) +zone = ('kyz088', 0.003741805225222908) + +[fips2109590648] +centroid = (0.64194278029853657, -1.452187136768111) +description = Cawood CCD, KY +station = ('k0vg', 0.0022198852632014641) +zone = ('kyz088', 0.0013469050969744881) + +[fips2109590936] +centroid = (0.6448821067451127, -1.4478248782889689) +description = Cumberland CCD, KY +station = ('klnp', 0.0059002217716049663) +zone = ('kyz118', 0.0033062228587580514) + +[fips2109591608] +centroid = (0.64283267132425093, -1.4534267045094622) +description = Harlan CCD, KY +station = ('ki35', 0.0012595804582228943) +zone = ('kyz088', 0.00091510838691901981) + +[fips2109592792] +centroid = (0.64466200327314371, -1.4535215457010155) +description = Pine Mountain CCD, KY +station = ('ki35', 0.0017290961659526391) +zone = ('kyz088', 0.0016395448404517489) + +[fips2109592824] +centroid = (0.64437714808592572, -1.4519054057202538) +description = Poor Fork CCD, KY +station = ('ki35', 0.0026045825310964045) +zone = ('kyz088', 0.0011773372931625961) + +[fips2109593545] +centroid = (0.64407098242854099, -1.4492245101760204) +description = Upper Clover Fork CCD, KY +station = ('ki35', 0.0045860570836524185) +zone = ('kyz088', 0.0026816857150041688) + +[fips2109593584] +centroid = (0.64256830630245132, -1.4559684449524339) +description = Wallins Creek CCD, KY +station = ('ki35', 0.0011485466017904942) +zone = ('kyz088', 0.0029219024894995933) + +[fips21097] +centroid = (0.67096545900422233, -1.471884957612704) +description = Harrison County, KY +station = ('klex', 0.0080412888488413346) +zone = ('kyz037', 3.4392654785806737e-05) + +[fips2109790232] +centroid = (0.6722092155357785, -1.4707150285085071) +description = Berry CCD, KY +station = ('kiob', 0.0088715940421154084) +zone = ('kyz037', 0.0015581486018414093) + +[fips2109790240] +centroid = (0.67140439185780643, -1.4735922037804199) +description = Berry West CCD, KY +station = ('klex', 0.0079443007831602793) +zone = ('kyz037', 0.001433346001488552) + +[fips2109790984] +centroid = (0.66990869704872491, -1.4713444465966539) +description = Cynthiana CCD, KY +station = ('kiob', 0.0071684455630224176) +zone = ('kyz037', 0.0011045287031149742) + +[fips2109838] +centroid = (0.65286724987237454, -1.4733478925917256) +description = Brodhead city, KY +station = ('ki39', 0.0040803012071423689) +zone = ('kyz068', 0.0015708132360302612) + +[fips2109847] +centroid = (0.66838968464083659, -1.4937425710467622) +description = Broeck Pointe city, KY +station = ('klou', 0.001562293237498544) +zone = ('kyz030', 0.0021537583840715757) + +[fips2109856] +centroid = (0.6820347559993909, -1.4758735760055792) +description = Bromley city, KY +station = ('kcvg', 0.0015072282474939012) +zone = ('ohz077', 0.0020696116470394362) + +[fips21099] +centroid = (0.65124964381504125, -1.4989235809313075) +description = Hart County, KY +station = ('kglw', 0.0050248271849274613) +zone = ('kyz063', 0.00024645578074944938) + +[fips2109964] +centroid = (0.66438165818667927, -1.4960374172137469) +description = Brooks CDP, KY +station = ('ksdf', 0.0020560581193229646) +zone = ('kyz029', 0.0017041480462148726) + +[fips2109990280] +centroid = (0.65257916582604047, -1.5001649463617885) +description = Bonnieville CCD, KY +station = ('kglw', 0.0062546587169184584) +zone = ('kyz063', 0.0018373646065828527) + +[fips2109991568] +centroid = (0.6521407042113545, -1.49706166368528) +description = Hammonville CCD, KY +station = ('kglw', 0.0063223582688272453) +zone = ('kyz063', 0.0018951905688845887) + +[fips2109991600] +centroid = (0.64996487204606312, -1.4968536378917348) +description = Hardyville CCD, KY +station = ('kglw', 0.0045007592631644494) +zone = ('kyz063', 0.0019805725401313037) + +[fips2109991784] +centroid = (0.64978609797078146, -1.4996400211359586) +description = Horse Cave CCD, KY +station = ('kglw', 0.0034876202518571335) +zone = ('kyz063', 0.0013311596092173393) + +[fips2109992472] +centroid = (0.65111555016861056, -1.5007558101267586) +description = Munfordville CCD, KY +station = ('kglw', 0.0048134557846817583) +zone = ('kyz063', 0.001424091946699959) + +[fips2110000] +centroid = (0.67508398225332344, -1.4672445111040864) +description = Brooksville city, KY +station = ('kluk', 0.0087433653044736818) +zone = ('kyz097', 0.00035539764618127914) + +[fips21101] +centroid = (0.65960429059824277, -1.5284298031062582) +description = Henderson County, KY +station = ('kehr', 0.0015842996208419848) +zone = ('kyz018', 6.2258396063309224e-05) + +[fips2110162] +centroid = (0.66852398772677757, -1.4939043281618372) +description = Brownsboro Farm city, KY +station = ('klou', 0.0015762020120962503) +zone = ('kyz030', 0.0022188770667620848) + +[fips2110190848] +centroid = (0.65945106814321031, -1.5311991693902753) +description = Corydon CCD, KY +station = ('kehr', 0.00087547759935599446) +zone = ('kyz018', 0.0021946598647341973) + +[fips2110191672] +centroid = (0.65847206060588914, -1.526312282391276) +description = Hebbardsville-Robards CCD, KY +station = ('kowb', 0.0039340629226142657) +zone = ('kyz018', 0.0020600355341713014) + +[fips2110191704] +centroid = (0.66037439967739286, -1.5285611740390559) +description = Henderson CCD, KY +station = ('kehr', 0.0014652839125071609) +zone = ('kyz018', 0.00071494361499196632) + +[fips2110193320] +centroid = (0.66085508080668454, -1.5264608622704985) +description = Spottsville CCD, KY +station = ('kevv', 0.0031206384912301193) +zone = ('kyz018', 0.0019609420924170408) + +[fips2110198] +centroid = (0.66781388306731115, -1.4951512088327543) +description = Brownsboro Village city, KY +station = ('klou', 0.00051645252648873372) +zone = ('kyz030', 0.0013243795166208512) + +[fips21103] +centroid = (0.67110634198144326, -1.4856256381076824) +description = Henry County, KY +station = ('kfft', 0.005567607784358216) +zone = ('kyz033', 5.7475333733057616e-05) + +[fips2110324] +centroid = (0.64917364448296411, -1.5056104783477657) +description = Brownsville city, KY +station = ('kbwg', 0.0045079208780834691) +zone = ('kyz062', 0.00044151623002953809) + +[fips2110390520] +centroid = (0.67270497630980763, -1.485616265689599) +description = Campbellsburg CCD, KY +station = ('kfft', 0.0069617551424904873) +zone = ('kyz033', 0.0016538274373322915) + +[fips2110391152] +centroid = (0.67032631943214205, -1.4878987549254798) +description = Eminence CCD, KY +station = ('kfft', 0.0061844820879887958) +zone = ('kyz033', 0.0019375595966932935) + +[fips2110392504] +centroid = (0.67131536261266223, -1.4861757309813259) +description = New Castle CCD, KY +station = ('kfft', 0.0059820285299873764) +zone = ('kyz033', 0.00051913583844594581) + +[fips2110392816] +centroid = (0.67008380593257744, -1.4830278900490139) +description = Pleasureville CCD, KY +station = ('kfft', 0.0037868326743981644) +zone = ('kyz033', 0.0022389051436218612) + +[fips21105] +centroid = (0.64011549038486859, -1.5528546911502452) +description = Hickman County, KY +station = ('kpah', 0.0071309520389385558) +zone = ('kyz002', 6.8663342974957628e-05) + +[fips2110590752] +centroid = (0.6399368384826345, -1.5521883768017113) +description = Clinton CCD, KY +station = ('kpah', 0.0071023106053656705) +zone = ('kyz002', 0.0006300114297343014) + +[fips2110590792] +centroid = (0.64102115918702096, -1.5552155805761254) +description = Columbus CCD, KY +station = ('kcir', 0.0060804034179653263) +zone = ('kyz002', 0.0020304140970972928) + +[fips2110612] +centroid = (0.65180998177139404, -1.4568305154298717) +description = Buckhorn city, KY +station = ('kjkl', 0.0046572532295090386) +zone = ('kyz112', 0.0036741190215058609) + +[fips2110648] +centroid = (0.6699756827854163, -1.4913776324570176) +description = Buckner CDP, KY +station = ('klou', 0.0040007429514317744) +zone = ('kyz031', 0.00022257416045290114) + +[fips21107] +centroid = (0.65120101894208071, -1.52789955462621) +description = Hopkins County, KY +station = ('k2i0', 0.0021459489225332685) +zone = ('kyz016', 4.3512439371273379e-05) + +[fips2110774] +centroid = (0.65462055527905061, -1.4957294713205254) +description = Buffalo CDP, KY +station = ('kftk', 0.0077917839335859213) +zone = ('kyz053', 0.00067566753995759125) + +[fips2110791024] +centroid = (0.65015139538322386, -1.5306368592118678) +description = Dawson Springs CCD, KY +station = ('k2i0', 0.0045605625803621609) +zone = ('kyz016', 0.002417162034490195) + +[fips2110791576] +centroid = (0.6540762219919386, -1.5256553055542406) +description = Hanson CCD, KY +station = ('k2i0', 0.0021030969626067205) +zone = ('kyz020', 0.0022758189833452366) + +[fips2110792176] +centroid = (0.65104680164937445, -1.526714284077888) +description = Madisonville CCD, KY +station = ('k2i0', 0.0014116259610426555) +zone = ('kyz016', 0.00093186359319596707) + +[fips2110792496] +centroid = (0.65259370441870956, -1.5295148743022233) +description = Nebo CCD, KY +station = ('k2i0', 0.0033368256452105493) +zone = ('kyz016', 0.0019356885558971071) + +[fips2110792584] +centroid = (0.64885964229723769, -1.5257384355865129) +description = Nortonville CCD, KY +station = ('k2i0', 0.003136845922237111) +zone = ('kyz016', 0.0028629160876364385) + +[fips2110793016] +centroid = (0.64815189383226146, -1.5276542660531347) +description = St. Charles CCD, KY +station = ('k2i0', 0.0042359340848653953) +zone = ('kyz016', 0.0030147248273312164) + +[fips21109] +centroid = (0.65281108517704545, -1.4664376104843044) +description = Jackson County, KY +station = ('kloz', 0.0056212421039747535) +zone = ('kyz069', 0.00035400225054362455) + +[fips2110990076] +centroid = (0.65145103735742893, -1.4655957334663123) +description = Annville CCD, KY +station = ('kloz', 0.0044231318718645192) +zone = ('kyz069', 0.0017113782742780744) + +[fips2110992152] +centroid = (0.65361653717354828, -1.4651472536617198) +description = McKee CCD, KY +station = ('ki39', 0.0061691597510278549) +zone = ('kyz069', 0.00096837976798851296) + +[fips2110993080] +centroid = (0.65414106097365021, -1.4680847475125816) +description = Sandgap CCD, KY +station = ('ki39', 0.0039676645757570368) +zone = ('kyz069', 0.0018380376405185592) + +[fips2111044] +centroid = (0.65899119133860218, -1.4793530120424774) +description = Burgin city, KY +station = ('kdvk', 0.0030991320294661219) +zone = ('kyz047', 0.0018271217363064129) + +[fips2111098] +centroid = (0.64210792335236022, -1.4898935789940468) +description = Burkesville city, KY +station = ('kekq', 0.0071949862542364726) +zone = ('kyz081', 0.00033795305009350437) + +[fips21111] +centroid = (0.66653309064902755, -1.4950075682353152) +description = Jefferson County, KY +station = ('klou', 0.00077445276177777879) +zone = ('kyz030', 4.8169344419027721e-05) + +[fips2111170] +centroid = (0.68106642987709198, -1.4786702217858048) +description = Burlington CDP, KY +station = ('kcvg', 0.00088811180291176412) +zone = ('kyz091', 0.00091566398062529683) + +[fips2111188] +centroid = (0.65004604730957349, -1.5421367463867959) +description = Burna CDP, KY +station = ('kpah', 0.0066260292202073405) +zone = ('kyz007', 0.00061720488218934447) + +[fips2111190683] +centroid = (0.66598179349820019, -1.4950789871083068) +description = Central Jefferson CCD, KY +station = ('ksdf', 0.0010779607346072943) +zone = ('kyz030', 0.00051148316624113487) + +[fips2111191099] +centroid = (0.66828897914299656, -1.4939956961481791) +description = East Jefferson CCD, KY +station = ('klou', 0.0013514626318736249) +zone = ('kyz030', 0.0019750913483131938) + +[fips2111191276] +centroid = (0.66596481144457831, -1.492041084465578) +description = Floyds Fork CCD, KY +station = ('klou', 0.0027937947234881293) +zone = ('kyz030', 0.0024161642588912471) + +[fips2111192105] +centroid = (0.6660308372501812, -1.4962772079996784) +description = Louisville Airport CCD, KY +station = ('ksdf', 0.00039614241826864844) +zone = ('kyz030', 0.0010763461050176156) + +[fips2111192106] +centroid = (0.66745773118014917, -1.4966412138684746) +description = Louisville Central CCD, KY +station = ('ksdf', 0.0010615874963415372) +zone = ('kyz030', 0.0015855721930235487) + +[fips2111192108] +centroid = (0.66737938335002722, -1.495574747882336) +description = Louisville East CCD, KY +station = ('klou', 0.0003317870408233479) +zone = ('kyz030', 0.00098138697946249342) + +[fips2111192109] +centroid = (0.66652288047290353, -1.4973935554958391) +description = Louisville South CCD, KY +station = ('ksdf', 0.00084250881348912302) +zone = ('kyz030', 0.0018498680123474837) + +[fips2111192110] +centroid = (0.66763704630749909, -1.4974670513106407) +description = Louisville West CCD, KY +station = ('ksdf', 0.0015062755130955474) +zone = ('inz091', 0.0018844899856746873) + +[fips2111192572] +centroid = (0.66612754594403423, -1.4986599314945013) +description = North Dixie CCD, KY +station = ('ksdf', 0.0018564217337349975) +zone = ('inz091', 0.0027275811199754941) + +[fips2111192573] +centroid = (0.6682782104615117, -1.4924023152608634) +description = Northeast Jefferson CCD, KY +station = ('klou', 0.0023808904386841473) +zone = ('kyz031', 0.0020870401583524046) + +[fips2111192820] +centroid = (0.66500920877252634, -1.4974651663550484) +description = Pond Creek CCD, KY +station = ('ksdf', 0.0016741199827280779) +zone = ('kyz030', 0.0024158965833699997) + +[fips2111193267] +centroid = (0.6644668651607617, -1.4990256652392566) +description = South Dixie CCD, KY +station = ('ksdf', 0.0028868624531227503) +zone = ('kyz029', 0.0031751375148945239) + +[fips2111193270] +centroid = (0.66672678728941404, -1.4935727854171283) +description = Southeast Jefferson CCD, KY +station = ('klou', 0.0013752983333443073) +zone = ('kyz030', 0.0011769419384242471) + +[fips2111193283] +centroid = (0.66489260332520062, -1.4944828000891182) +description = South Jefferson CCD, KY +station = ('ksdf', 0.0021109779050077445) +zone = ('kyz030', 0.0016587710275238695) + +[fips2111278] +centroid = (0.64595400070522513, -1.4774203216952815) +description = Burnside city, KY +station = ('ksme', 0.0009053173827857896) +zone = ('kyz079', 0.0019210470975443794) + +[fips21113] +centroid = (0.66101362651593576, -1.4762685963751829) +description = Jessamine County, KY +station = ('klex', 0.0028019745076402806) +zone = ('kyz048', 4.780193571914116e-05) + +[fips2111391912] +centroid = (0.66226172891732948, -1.4768564058139619) +description = Keene CCD, KY +station = ('klex', 0.0015640971136027411) +zone = ('kyz048', 0.0013676487768421123) + +[fips2111392552] +centroid = (0.66054191637899917, -1.4754464066711535) +description = Nicholasville CCD, KY +station = ('klex', 0.0033786969209014164) +zone = ('kyz048', 0.00075509892342222589) + +[fips2111393736] +centroid = (0.66066220447104662, -1.4776626781152136) +description = Wilmore CCD, KY +station = ('klex', 0.0032651252490176193) +zone = ('kyz048', 0.0011891567291330166) + +[fips21115] +centroid = (0.66059420644338895, -1.4456673720808235) +description = Johnson County, KY +station = ('kk22', 0.0031771700645844914) +zone = ('kyz107', 4.5894862864998837e-05) + +[fips2111530] +centroid = (0.67696918219157265, -1.4725559843502183) +description = Butler city, KY +station = ('kluk', 0.0054892962242543281) +zone = ('kyz096', 0.0016088496031901487) + +[fips2111591256] +centroid = (0.66159160975102616, -1.4476235545597511) +description = Flatgap CCD, KY +station = ('kk22', 0.0050153408352099161) +zone = ('kyz107', 0.0018541486095453681) + +[fips2111592560] +centroid = (0.66144330912448424, -1.4447880926569612) +description = Nippa CCD, KY +station = ('kk22', 0.0032390520387828243) +zone = ('kyz107', 0.0011380985573733518) + +[fips2111592600] +centroid = (0.65920480218575384, -1.4468413328955925) +description = Oil Springs CCD, KY +station = ('kk22', 0.0036187926411908123) +zone = ('kyz107', 0.0016276356240679866) + +[fips2111592672] +centroid = (0.65996382842415369, -1.4443297168355098) +description = Paintsville CCD, KY +station = ('kk22', 0.0019478920799504611) +zone = ('kyz107', 0.0012171965078687267) + +[fips2111692] +centroid = (0.64337077378593344, -1.5326932235898598) +description = Cadiz city, KY +station = ('khop', 0.0055946855460981219) +zone = ('kyz012', 0.0012570856182067339) + +[fips21117] +centroid = (0.67946500302192459, -1.4753877636082864) +description = Kenton County, KY +station = ('kcvg', 0.002759615773347426) +zone = ('kyz092', 4.9557252190183762e-05) + +[fips2111790864] +centroid = (0.68134608398313889, -1.4756468926423301) +description = Covington CCD, KY +station = ('kcvg', 0.0016170118743828571) +zone = ('kyz092', 0.0018434397926690375) + +[fips2111791808] +centroid = (0.67986847078510804, -1.4754085155730927) +description = Independence CCD, KY +station = ('kcvg', 0.0024568021442791322) +zone = ('kyz092', 0.00035484671513263689) + +[fips2111792800] +centroid = (0.67808851420075411, -1.4751712729678692) +description = Piner-Visalia CCD, KY +station = ('kcvg', 0.0039866954668592216) +zone = ('kyz092', 0.0014350666134638117) + +[fips2111854] +centroid = (0.65521063364585741, -1.5229586322335691) +description = Calhoun city, KY +station = ('kowb', 0.0037039099089140686) +zone = ('kyz020', 0.00021354865325162893) + +[fips2111872] +centroid = (0.67925174124062337, -1.4706801917366372) +description = California city, KY +station = ('kluk', 0.0037896461359276873) +zone = ('kyz093', 0.0016441706447904458) + +[fips21119] +centroid = (0.65196255845460338, -1.4477355697911443) +description = Knott County, KY +station = ('kjkl', 0.0064685797503947796) +zone = ('kyz113', 6.8560241046939605e-05) + +[fips2111990196] +centroid = (0.65175407887545267, -1.4446657799829814) +description = Beaver Creek CCD, KY +station = ('klnp', 0.0071054757230763314) +zone = ('kyz113', 0.0025154870775451303) + +[fips2111990600] +centroid = (0.65004690252090691, -1.4482597619786883) +description = Carr Fork CCD, KY +station = ('kjkl', 0.0075345463352063467) +zone = ('kyz113', 0.0019352044626066217) + +[fips2111991160] +centroid = (0.65232848418557654, -1.4495501537078577) +description = Emmalena CCD, KY +station = ('kjkl', 0.0051441270268988539) +zone = ('kyz113', 0.0014258359183830771) + +[fips2111991736] +centroid = (0.65163166148171769, -1.4475743886347225) +description = Hindman CCD, KY +station = ('kjkl', 0.006776329482298676) +zone = ('kyz113', 0.00037387565271152043) + +[fips2111992448] +centroid = (0.65333241502461625, -1.4476386167511959) +description = Mousie CCD, KY +station = ('kjkl', 0.0057920687687375563) +zone = ('kyz113', 0.0013896537182061068) + +[fips2112016] +centroid = (0.64596574677109098, -1.5417770165746671) +description = Calvert City city, KY +station = ('kpah', 0.0060206117428839726) +zone = ('kyz008', 0.0022317800354121628) + +[fips2112052] +centroid = (0.66321949579765382, -1.464130791358651) +description = Camargo city, KY +station = ('kiob', 0.0016438478233842275) +zone = ('kyz050', 0.00068244659325140088) + +[fips2112066] +centroid = (0.66709503430829231, -1.4942982489740124) +description = Cambridge city, KY +station = ('klou', 0.00071065938404336502) +zone = ('kyz030', 0.00083858741620318608) + +[fips21121] +centroid = (0.64380790895038786, -1.4635568398341328) +description = Knox County, KY +station = ('kloz', 0.0045101519473175382) +zone = ('kyz086', 6.1232631887901798e-05) + +[fips2112142] +centroid = (0.67218841121109485, -1.4875756944809355) +description = Campbellsburg city, KY +station = ('kfft', 0.0073379380686462896) +zone = ('kyz033', 0.0019165212559665592) + +[fips2112160] +centroid = (0.65177999701484479, -1.4895812348711097) +description = Campbellsville city, KY +station = ('kglw', 0.010048307151452704) +zone = ('kyz065', 0.00046658773882198051) + +[fips2112190144] +centroid = (0.64339852452103996, -1.4642950617478485) +description = Barbourville CCD, KY +station = ('kloz', 0.0044930451848871249) +zone = ('kyz086', 0.00077113952766630204) + +[fips2112190396] +centroid = (0.64165225279124971, -1.4646206354665157) +description = Bryants Store CCD, KY +station = ('k1a6', 0.0036702411475356142) +zone = ('kyz086', 0.0023789552396182366) + +[fips2112190824] +centroid = (0.64466832136503605, -1.4669128985462074) +description = Corbin CCD, KY +station = ('kloz', 0.0025712544414511472) +zone = ('kyz080', 0.0031879424418698168) + +[fips2112191040] +centroid = (0.64460163233431722, -1.4606165883630529) +description = Dewitt CCD, KY +station = ('ki35', 0.0047643712268378071) +zone = ('kyz086', 0.0024408365586739214) + +[fips2112191400] +centroid = (0.64544947837835109, -1.4631727975855238) +description = Girdler CCD, KY +station = ('kloz', 0.0037012810517558382) +zone = ('kyz086', 0.0016103324269725963) + +[fips2112191472] +centroid = (0.64486383314784435, -1.465351718983591) +description = Gray CCD, KY +station = ('kloz', 0.0028026149574615295) +zone = ('kyz086', 0.0017687058518168683) + +[fips2112193520] +centroid = (0.64207539041510309, -1.4635158595032955) +description = Trosper CCD, KY +station = ('k1a6', 0.003500255530946292) +zone = ('kyz086', 0.001788808779320089) + +[fips21123] +centroid = (0.65529290846679633, -1.4956984568197174) +description = Larue County, KY +station = ('kftk', 0.0072190816275668548) +zone = ('kyz053', 1.1397576655866829e-05) + +[fips2112358] +centroid = (0.65860280322015596, -1.4581744364071998) +description = Campton city, KY +station = ('kjkl', 0.0041438612223329971) +zone = ('kyz108', 0.00075076562177807317) + +[fips2112390416] +centroid = (0.65458926152556229, -1.4939844736810888) +description = Buffalo CCD, KY +station = ('kftk', 0.008558927734083302) +zone = ('kyz053', 0.0015418382229896949) + +[fips2112391752] +centroid = (0.65667330682549119, -1.4956607053479967) +description = Hodgenville CCD, KY +station = ('kftk', 0.0060949165615430722) +zone = ('kyz053', 0.0013778277403662721) + +[fips2112392192] +centroid = (0.65416861972253926, -1.4973059050608042) +description = Magnolia-Upton CCD, KY +station = ('kftk', 0.0077105937618484654) +zone = ('kyz053', 0.0016938456180992337) + +[fips21125] +centroid = (0.6477487227750508, -1.4681604075356554) +description = Laurel County, KY +station = ('kloz', 0.00090097021746077472) +zone = ('kyz080', 5.0016606032048706e-05) + +[fips2112538] +centroid = (0.65315475796005573, -1.5096985106948346) +description = Caneyville city, KY +station = ('kbwg', 0.008047245553977107) +zone = ('kyz027', 0.0022528777066692664) + +[fips2112590464] +centroid = (0.64742335849589405, -1.4656302560789169) +description = Bush CCD, KY +station = ('kloz', 0.0012992285920315572) +zone = ('kyz080', 0.0020153564907936217) + +[fips2112590536] +centroid = (0.64652070911334758, -1.4655493251615019) +description = Camp Ground CCD, KY +station = ('kloz', 0.0015225560530967356) +zone = ('kyz080', 0.0023764687147122122) + +[fips2112590768] +centroid = (0.64849900491389822, -1.4698589096038188) +description = Colony CCD, KY +station = ('kloz', 0.002445456530654136) +zone = ('kyz080', 0.0015894552003446558) + +[fips2112591096] +centroid = (0.65017987915661646, -1.4684841312053154) +description = East Bernstadt CCD, KY +station = ('kloz', 0.0031155308786045203) +zone = ('kyz080', 0.0024917692159005553) + +[fips2112591496] +centroid = (0.64924748936361587, -1.4662544381793077) +description = Greenmount-Langnau CCD, KY +station = ('kloz', 0.0021685794235055825) +zone = ('kyz080', 0.0021501884294586777) + +[fips2112591904] +centroid = (0.6460236567956722, -1.4698752284323249) +description = Keavy CCD, KY +station = ('kloz', 0.0024226915623579023) +zone = ('kyz080', 0.0021810553302276663) + +[fips2112592072] +centroid = (0.64784433191147517, -1.467655797942319) +description = London CCD, KY +station = ('kloz', 0.00070136984511199858) +zone = ('kyz080', 0.00040529728735806957) + +[fips2112592568] +centroid = (0.6459488519839317, -1.4672600270811367) +description = North Corbin CCD, KY +station = ('kloz', 0.0012775110623150408) +zone = ('kyz080', 0.0018881264385068556) + +[fips2112610] +centroid = (0.66987204513443288, -1.4433249482384292) +description = Cannonsburg CDP, KY +station = ('khts', 0.0020187887286822917) +zone = ('kyz103', 0.00038948822839917371) + +[fips21127] +centroid = (0.66452467046558761, -1.4440558397692869) +description = Lawrence County, KY +station = ('khts', 0.005716349492833687) +zone = ('kyz105', 0.00012473285147345323) + +[fips2112790016] +centroid = (0.66322886821573701, -1.4436220207304111) +description = Adams CCD, KY +station = ('kk22', 0.0044762920233939515) +zone = ('kyz105', 0.0012169123062377555) + +[fips2112790264] +centroid = (0.6640775694711043, -1.4469699462081718) +description = Blaine CCD, KY +station = ('kk22', 0.0063799337117721394) +zone = ('kyz105', 0.0023675416550423098) + +[fips2112790744] +centroid = (0.66278948157654749, -1.4416403215378195) +description = Clifford CCD, KY +station = ('kk22', 0.0039429654417875428) +zone = ('kyz105', 0.0024620197155179701) + +[fips2112792096] +centroid = (0.66595208799433125, -1.4427863221779713) +description = Louisa CCD, KY +station = ('khts', 0.0039995032673967364) +zone = ('kyz105', 0.0018107224000391197) + +[fips2112793640] +centroid = (0.66582494075832344, -1.4447771668958438) +description = Webbville CCD, KY +station = ('khts', 0.0049337710035817599) +zone = ('kyz105', 0.0015434683587582211) + +[fips2112898] +centroid = (0.66873902974391586, -1.4666592323927226) +description = Carlisle city, KY +station = ('kiob', 0.0045632097522752858) +zone = ('kyz043', 0.00042336803245729719) + +[fips21129] +centroid = (0.65633774982350279, -1.4611634174709953) +description = Lee County, KY +station = ('kjkl', 0.0055702619488158323) +zone = ('kyz111', 0.00018891234853156305) + +[fips2112990184] +centroid = (0.65691351649044316, -1.4615147522494216) +description = Beattyville CCD, KY +station = ('kjkl', 0.0059125928819043615) +zone = ('kyz111', 0.00082234852763474274) + +[fips2112993024] +centroid = (0.65571993817488183, -1.4591192878510595) +description = St. Helens CCD, KY +station = ('kjkl', 0.0039451105743544251) +zone = ('kyz111', 0.0016470292679788871) + +[fips2112993294] +centroid = (0.65523567912062353, -1.4626149205434162) +description = Southwest Lee CCD, KY +station = ('ki39', 0.0074660532590198848) +zone = ('kyz111', 0.0014942752135961536) + +[fips2113024] +centroid = (0.67508764744475269, -1.48642004217002) +description = Carrollton city, KY +station = ('kcvg', 0.0093673414724120586) +zone = ('kyz089', 0.00060928312442973004) + +[fips2113060] +centroid = (0.65271891433924756, -1.5424410270885884) +description = Carrsville city, KY +station = ('km30', 0.0063919743041553692) +zone = ('ilz091', 0.0025799722581450971) + +[fips21131] +centroid = (0.64730502517260891, -1.4554059078812238) +description = Leslie County, KY +station = ('ki35', 0.0040104229162455391) +zone = ('kyz117', 0.00015120716894174191) + +[fips2113190976] +centroid = (0.64780787198340084, -1.4530566598014543) +description = Cutshin CCD, KY +station = ('ki35', 0.0047213864206699365) +zone = ('kyz117', 0.0018122504303317863) + +[fips2113191800] +centroid = (0.64862861306415132, -1.4560997809786467) +description = Hyden CCD, KY +station = ('ki35', 0.0054005117600733196) +zone = ('kyz117', 0.0013811406133749419) + +[fips2113192456] +centroid = (0.64575730209852533, -1.4555208203591752) +description = Mozelle CCD, KY +station = ('ki35', 0.0024938229772463231) +zone = ('kyz117', 0.0016684775929538124) + +[fips21133] +centroid = (0.64784009076139271, -1.4462003258212124) +description = Letcher County, KY +station = ('klnp', 0.0051400375470816986) +zone = ('kyz118', 9.4343199772392193e-05) + +[fips2113390256] +centroid = (0.64738162767347895, -1.4481790754073685) +description = Blackey CCD, KY +station = ('klnp', 0.0064341081815959692) +zone = ('kyz118', 0.0017351315112989591) + +[fips2113390776] +centroid = (0.65005046299258096, -1.4455463509504902) +description = Colson CCD, KY +station = ('klnp', 0.0061002456094214862) +zone = ('kyz118', 0.0022074609595279016) + +[fips2113391168] +centroid = (0.64619731705624572, -1.4453742614862435) +description = Eolia CCD, KY +station = ('klnp', 0.0039748900070116751) +zone = ('kyz118', 0.0017857292682740571) + +[fips2113391880] +centroid = (0.64903586819181169, -1.4432295834481002) +description = Jenkins CCD, KY +station = ('klnp', 0.0041778388972788282) +zone = ('kyz118', 0.0025583808701167741) + +[fips2113393688] +centroid = (0.64811567825028271, -1.445611905517195) +description = Whitesburg CCD, KY +station = ('klnp', 0.00487074112418911) +zone = ('kyz118', 0.00044976710322057847) + +[fips2113420] +centroid = (0.67055984448605888, -1.4416883529988342) +description = Catlettsburg city, KY +station = ('khts', 0.0011804413885597) +zone = ('kyz103', 0.0015728643082733192) + +[fips2113492] +centroid = (0.64830324878499457, -1.5004124515030139) +description = Cave City city, KY +station = ('kglw', 0.0019878963236339285) +zone = ('kyz063', 0.0029365084087400054) + +[fips21135] +centroid = (0.67251115749637358, -1.4551386456128661) +description = Lewis County, KY +station = ('khts', 0.011617719130730488) +zone = ('kyz100', 6.5779531789437594e-05) + +[fips2113582] +centroid = (0.64213525520844661, -1.4526834560475004) +description = Cawood CDP, KY +station = ('ki35', 0.0021181987277468987) +zone = ('kyz088', 0.0011591636449499929) + +[fips2113591376] +centroid = (0.67326384818958862, -1.4512048829183808) +description = Garrison CCD, KY +station = ('khts', 0.0089440809322136969) +zone = ('kyz101', 0.0031220814246022328) + +[fips2113591984] +centroid = (0.6708966406718162, -1.4553271760786664) +description = Laurel-Petersville CCD, KY +station = ('kiob', 0.010574654467608151) +zone = ('kyz100', 0.0016104816455577674) + +[fips2113593480] +centroid = (0.6736797776036314, -1.4581432997333441) +description = Tollesboro CCD, KY +station = ('kiob', 0.011189014103686881) +zone = ('kyz100', 0.0025682837465038663) + +[fips2113593560] +centroid = (0.67331723781140707, -1.4549019789662954) +description = Vanceburg CCD, KY +station = ('khts', 0.011664429289567414) +zone = ('kyz100', 0.0008499728111317676) + +[fips2113600] +centroid = (0.6380784468016959, -1.5539408444503464) +description = Cayce CDP, KY +station = ('kcir', 0.009189991283900455) +zone = ('kyz001', 0.0021475302832283162) + +[fips2113636] +centroid = (0.65723099188138101, -1.5001611939038968) +description = Cecilia CDP, KY +station = ('kftk', 0.0042530336159141771) +zone = ('kyz028', 0.00073617903283510367) + +[fips21137] +centroid = (0.6537524634156936, -1.4775621296970061) +description = Lincoln County, KY +station = ('kdvk', 0.002643858924239891) +zone = ('kyz067', 5.1113615516204544e-05) + +[fips2113790888] +centroid = (0.6535997471061441, -1.4754130010692701) +description = Crab Orchard CCD, KY +station = ('kdvk', 0.0039820502513518048) +zone = ('kyz067', 0.0017464128727903577) + +[fips2113791792] +centroid = (0.65418701549285518, -1.4800348772746466) +description = Hustonville CCD, KY +station = ('kdvk', 0.0017566651334031387) +zone = ('kyz067', 0.0019828276658600563) + +[fips2113793344] +centroid = (0.6551778738157974, -1.4778097744645715) +description = Stanford CCD, KY +station = ('kdvk', 0.0015305113633521884) +zone = ('kyz067', 0.0014700574810847323) + +[fips2113793632] +centroid = (0.65237658545976152, -1.4776793460095698) +description = Waynesburg CCD, KY +station = ('kdvk', 0.0038079934041583396) +zone = ('kyz067', 0.0013411754230357631) + +[fips2113870] +centroid = (0.65306412301199956, -1.5183590089761558) +description = Centertown city, KY +station = ('kowb', 0.0061008938692323619) +zone = ('kyz026', 0.0022887806526753324) + +[fips21139] +centroid = (0.64942858472680287, -1.5422327220423631) +description = Livingston County, KY +station = ('kpah', 0.0062638205319894245) +zone = ('kyz007', 0.00013662168555713162) + +[fips2113978] +centroid = (0.65095194300452863, -1.5206882730359896) +description = Central City city, KY +station = ('k2i0', 0.0038760790290084278) +zone = ('kyz021', 0.0014270597292846624) + +[fips2113993040] +centroid = (0.65068363353861958, -1.5422864432767394) +description = Salem CCD, KY +station = ('km30', 0.0055914426864752649) +zone = ('kyz007', 0.0012646277388933078) + +[fips2113993240] +centroid = (0.64762349540122033, -1.541508742015343) +description = Smithland CCD, KY +station = ('kpah', 0.0062694304341861856) +zone = ('kyz007', 0.001861119523909755) + +[fips2114068] +centroid = (0.64492268565022171, -1.530906722020811) +description = Cerulean CDP, KY +station = ('khop', 0.0058026652447027288) +zone = ('kyz017', 0.0032825392455345121) + +[fips21141] +centroid = (0.64332537777208887, -1.516367117060732) +description = Logan County, KY +station = ('kbwg', 0.0067484395364033195) +zone = ('kyz070', 3.6879175823489384e-05) + +[fips2114190008] +centroid = (0.64044855156602676, -1.5166555501729169) +description = Adairville CCD, KY +station = ('kckv', 0.0073902754941719568) +zone = ('kyz070', 0.0028870291273022605) + +[fips2114190120] +centroid = (0.64411512180532393, -1.513675313208674) +description = Auburn CCD, KY +station = ('kbwg', 0.0044635766887186745) +zone = ('kyz070', 0.0022596337636814228) + +[fips2114192024] +centroid = (0.64613643997193604, -1.5172862248981247) +description = Lewisburg CCD, KY +station = ('kbwg', 0.0072747703453915772) +zone = ('kyz070', 0.0029171491912424749) + +[fips2114192992] +centroid = (0.64302074800444586, -1.5171205931521106) +description = Russellville CCD, KY +station = ('kckv', 0.0079306152384096794) +zone = ('kyz070', 0.00070760533578590997) + +[fips2114266] +centroid = (0.66146446251501834, -1.4873866404163598) +description = Chaplin CDP, KY +station = ('kfft', 0.0066386545928938476) +zone = ('kyz046', 0.0026221224573179727) + +[fips21143] +centroid = (0.64619028337936002, -1.5373451892715406) +description = Lyon County, KY +station = ('kcey', 0.0074352224795230784) +zone = ('kyz011', 8.5143864659895219e-05) + +[fips2114391104] +centroid = (0.64738462963979237, -1.5382542440124418) +description = Eddyville CCD, KY +station = ('kcey', 0.0081720393221540004) +zone = ('kyz011', 0.0014721287747804697) + +[fips2114391978] +centroid = (0.64511428789550551, -1.5378973416337014) +description = Land Between the Lakes CCD, KY +station = ('kcey', 0.0062896620778220627) +zone = ('kyz011', 0.0010856913497473177) + +[fips2114393272] +centroid = (0.64572883577842533, -1.5356161264881749) +description = Southeast Lyon CCD, KY +station = ('kcey', 0.0078898322599986557) +zone = ('kyz011', 0.0014285426410414791) + +[fips21145] +centroid = (0.64670885560671265, -1.5483230833737822) +description = McCracken County, KY +station = ('kpah', 0.00075893815009647368) +zone = ('kyz005', 5.8143941454494374e-06) + +[fips2114590516] +centroid = (0.64549571215023649, -1.5491772998695856) +description = Camelia CCD, KY +station = ('kpah', 0.0011511886128057827) +zone = ('kyz005', 0.0013927603904605795) + +[fips2114591436] +centroid = (0.64786695137858097, -1.5501691181236164) +description = Grahamville-Heath CCD, KY +station = ('kpah', 0.0014171092911958757) +zone = ('kyz005', 0.0018676339882728241) + +[fips2114592648] +centroid = (0.64681425604024068, -1.546949858318313) +description = Paducah CCD, KY +station = ('kpah', 0.0018598522932647406) +zone = ('kyz005', 0.0011050609583689586) + +[fips2114593028] +centroid = (0.64552208407523415, -1.5460611541164901) +description = St. Johns-Freemont CCD, KY +station = ('kpah', 0.0027976022096028392) +zone = ('kyz005', 0.0021668032439881354) + +[fips21147] +centroid = (0.64107926119781988, -1.47464704587374) +description = McCreary County, KY +station = ('kekq', 0.0055432762885113179) +zone = ('kyz084', 0.00014244556469467033) + +[fips2114790808] +centroid = (0.64065809579602118, -1.4766796912271976) +description = Co-operative CCD, KY +station = ('kekq', 0.0043328104931449115) +zone = ('kyz084', 0.0018046449722632927) + +[fips2114792688] +centroid = (0.64372704784614299, -1.4736132524511987) +description = Parkers Lake CCD, KY +station = ('ksme', 0.0039326658844043624) +zone = ('kyz084', 0.0026465206140271575) + +[fips2114792784] +centroid = (0.6396445830993881, -1.4732692131490457) +description = Pine Knot CCD, KY +station = ('kekq', 0.0071778328271478817) +zone = ('kyz084', 0.0018392685364347111) + +[fips2114793368] +centroid = (0.64124641138028338, -1.4732762991858088) +description = Stearns-Whitley City CCD, KY +station = ('ksme', 0.0061576854290086849) +zone = ('kyz084', 0.0010032241183222921) + +[fips21149] +centroid = (0.65503210391667088, -1.5230254608906277) +description = McLean County, KY +station = ('k2i0', 0.0035784999829425622) +zone = ('kyz020', 2.7358272235884363e-05) + +[fips2114990496] +centroid = (0.65597522748457104, -1.523994991290111) +description = Calhoun CCD, KY +station = ('kowb', 0.0034285243993676189) +zone = ('kyz020', 0.0012309741386391322) + +[fips2114991832] +centroid = (0.65355806864360655, -1.5211431756522296) +description = Island CCD, KY +station = ('k2i0', 0.0037204681687259974) +zone = ('kyz020', 0.0020871141192409866) + +[fips2114992056] +centroid = (0.65519419264430356, -1.5207833760269309) +description = Livermore CCD, KY +station = ('kowb', 0.0035212973536598749) +zone = ('kyz020', 0.0017970460991091036) + +[fips2114993000] +centroid = (0.65334067043197819, -1.5233347855939587) +description = Sacramento CCD, KY +station = ('k2i0', 0.0021208778665181057) +zone = ('kyz020', 0.0016823533591630126) + +[fips21151] +centroid = (0.65839976906827147, -1.4709112733296013) +description = Madison County, KY +station = ('ki39', 0.0017889912737285389) +zone = ('kyz057', 5.9677191641591442e-05) + +[fips2115148] +centroid = (0.65437797196631586, -1.5049302711783861) +description = Clarkson city, KY +station = ('kftk', 0.0079547037490681517) +zone = ('kyz027', 0.0017255627292544836) + +[fips2115166] +centroid = (0.67917904827727782, -1.4732381811949451) +description = Claryville CDP, KY +station = ('kluk', 0.0032458271803560671) +zone = ('kyz093', 0.00070526950655205888) + +[fips2115190224] +centroid = (0.65627486561055337, -1.4702734078478747) +description = Berea CCD, KY +station = ('ki39', 0.0013322726147960266) +zone = ('kyz057', 0.0021309045823833398) + +[fips2115190290] +centroid = (0.66037822194845475, -1.4705186964209502) +description = Boonesborough-White Hall CCD, KY +station = ('ki39', 0.0037581486124749369) +zone = ('kyz057', 0.0020621449856475776) + +[fips2115190856] +centroid = (0.65953894547104819, -1.4738106491895993) +description = Cottonburg-Valley View CCD, KY +station = ('ki39', 0.0031814340168685629) +zone = ('kyz048', 0.0023907337762195859) + +[fips2115191940] +centroid = (0.65771416883150313, -1.4727096954974412) +description = Kirksville CCD, KY +station = ('ki39', 0.0011724482671007256) +zone = ('kyz057', 0.001542613362332903) + +[fips2115192912] +centroid = (0.65847963533484277, -1.4712878455690117) +description = Richmond CCD, KY +station = ('ki39', 0.0017663747725356659) +zone = ('kyz057', 0.00031587658773269686) + +[fips2115193578] +centroid = (0.65878765104123471, -1.4689631542718178) +description = Waco-Bybee CCD, KY +station = ('ki39', 0.0030414623628602132) +zone = ('kyz057', 0.0016171145456520075) + +[fips2115202] +centroid = (0.65407714701644215, -1.5327535770753939) +description = Clay city, KY +station = ('kehr', 0.006242140841154268) +zone = ('kyz015', 0.0020379746683070452) + +[fips2115238] +centroid = (0.66079308671165371, -1.4648467079645267) +description = Clay City city, KY +station = ('kiob', 0.0035132040995324897) +zone = ('kyz059', 0.0015439713489659309) + +[fips21153] +centroid = (0.65797087185788639, -1.449840052896614) +description = Magoffin County, KY +station = ('kjkl', 0.0039649018137663484) +zone = ('kyz109', 0.00014972198719062236) + +[fips2115392968] +centroid = (0.65593892463612957, -1.4484154278946735) +description = Royalton CCD, KY +station = ('kjkl', 0.0045446262813886047) +zone = ('kyz109', 0.0024109643567017829) + +[fips2115393072] +centroid = (0.65908367633566545, -1.4497418606728967) +description = Salyersville CCD, KY +station = ('kjkl', 0.0046878867328311201) +zone = ('kyz109', 0.00097940563533086954) + +[fips2115393660] +centroid = (0.65866978895684747, -1.4517261953126592) +description = West Magoffin CCD, KY +station = ('kjkl', 0.0033261978239892773) +zone = ('kyz109', 0.00165910513148461) + +[fips21155] +centroid = (0.65541035167216311, -1.4882290235798348) +description = Marion County, KY +station = ('kdvk', 0.0069236481872474893) +zone = ('kyz054', 6.6359875028957418e-06) + +[fips2115590320] +centroid = (0.6540338977575777, -1.4855499082714383) +description = Bradfordsville CCD, KY +station = ('kdvk', 0.0051346699115897114) +zone = ('kyz054', 0.0025385051408516606) + +[fips2115591464] +centroid = (0.65583361146906427, -1.4849317824635522) +description = Gravel Switch CCD, KY +station = ('kdvk', 0.0042928672076535737) +zone = ('kyz054', 0.0026518541569048419) + +[fips2115592000] +centroid = (0.65526857857702347, -1.4874665066829309) +description = Lebanon CCD, KY +station = ('kdvk', 0.0063336471935592177) +zone = ('kyz054', 0.00062679394593606792) + +[fips2115592088] +centroid = (0.65702413545843463, -1.4909657871134243) +description = Loretto CCD, KY +station = ('kftk', 0.0086879058165230689) +zone = ('kyz054', 0.0026963603772235845) + +[fips2115592536] +centroid = (0.65435666149614902, -1.4894731466305338) +description = New Market CCD, KY +station = ('kdvk', 0.0080444356535542549) +zone = ('kyz054', 0.0014434265017861567) + +[fips2115592896] +centroid = (0.65467108256089579, -1.4908302797502997) +description = Raywick CCD, KY +station = ('kftk', 0.010183247385035841) +zone = ('kyz054', 0.0021881519381462215) + +[fips2115593032] +centroid = (0.65599407704049262, -1.4894148700868097) +description = St. Mary CCD, KY +station = ('kdvk', 0.0078455087463579053) +zone = ('kyz054', 0.001099896068742874) + +[fips21157] +centroid = (0.64371263142652146, -1.5416973597476062) +description = Marshall County, KY +station = ('kcey', 0.0038936080242511599) +zone = ('kyz008', 5.3898091226522008e-05) + +[fips2115742] +centroid = (0.63993881070468928, -1.5532398678628681) +description = Clinton city, KY +station = ('kpah', 0.0074197322684384816) +zone = ('kyz002', 0.00033098782681123209) + +[fips2115790216] +centroid = (0.64287457667959136, -1.5429499825517625) +description = Benton CCD, KY +station = ('kcey', 0.0031000452455815712) +zone = ('kyz008', 0.0013589788881698747) + +[fips2115790512] +centroid = (0.64526248380229234, -1.5421994037069424) +description = Calvert City CCD, KY +station = ('kcey', 0.0054248214314719292) +zone = ('kyz008', 0.001590550900919267) + +[fips2115791192] +centroid = (0.64296369319119817, -1.5396744358780821) +description = Fairdealing CCD, KY +station = ('kcey', 0.0037120820404623147) +zone = ('kyz008', 0.0017502982328617674) + +[fips21159] +centroid = (0.65967815293218723, -1.4400122260516814) +description = Martin County, KY +station = ('kk22', 0.0019643024940039977) +zone = ('kyz119', 0.00012378078269579464) + +[fips2115904] +centroid = (0.66027399088552563, -1.5119815060761985) +description = Cloverport city, KY +station = ('kowb', 0.0075685148776944502) +zone = ('kyz023', 0.0020462066809925701) + +[fips2115991812] +centroid = (0.65969956812210917, -1.4409423120100691) +description = Inez CCD, KY +station = ('kk22', 0.0013398087204754541) +zone = ('kyz119', 0.00064726682088329446) + +[fips2115993472] +centroid = (0.65897818863567492, -1.4382393729573832) +description = Threeforks CCD, KY +station = ('kk22', 0.0031982211708985655) +zone = ('kyz119', 0.0016854912105152011) + +[fips2115993600] +centroid = (0.66054303338972054, -1.4390521902433295) +description = Warfield CCD, KY +station = ('kk22', 0.003046865223012537) +zone = ('kyz119', 0.001153352861261421) + +[fips21161] +centroid = (0.67359355833858292, -1.4630755129330175) +description = Mason County, KY +station = ('kiob', 0.0096018773397275412) +zone = ('kyz099', 5.869873241113364e-05) + +[fips2116110] +centroid = (0.65514684186169692, -1.440907056359179) +description = Coal Run Village city, KY +station = ('kk22', 0.0038880560565248963) +zone = ('kyz120', 0.0025400453168160698) + +[fips2116192272] +centroid = (0.67239493602148326, -1.4637459462585862) +description = Mays Lick CCD, KY +station = ('kiob', 0.0083205582211187366) +zone = ('kyz099', 0.0013491936420897892) + +[fips2116192280] +centroid = (0.67404486557656362, -1.4627153642418687) +description = Maysville CCD, KY +station = ('kiob', 0.010105859016530347) +zone = ('kyz099', 0.00048722518281108732) + +[fips21163] +centroid = (0.66265746487192656, -1.5044888774105567) +description = Meade County, KY +station = ('kftk', 0.0034322656824023025) +zone = ('kyz025', 0.00022346749986890848) + +[fips2116354] +centroid = (0.64277488347271738, -1.4565275088184328) +description = Coldiron CDP, KY +station = ('ki35', 0.0014255650964686817) +zone = ('kyz088', 0.0033201306434210609) + +[fips2116372] +centroid = (0.68087467055217532, -1.4736720351404058) +description = Cold Spring city, KY +station = ('kluk', 0.0015692737563889234) +zone = ('kyz093', 0.001360850796344277) + +[fips2116390176] +centroid = (0.664160367890819, -1.506688777666233) +description = Battletown-Payneville CCD, KY +station = ('kftk', 0.0056345730236467091) +zone = ('kyz025', 0.0021076471565085204) + +[fips2116390328] +centroid = (0.66226878004750744, -1.5041538091007589) +description = Brandenburg CCD, KY +station = ('kftk', 0.0030634186026828824) +zone = ('kyz025', 0.00064412371670545163) + +[fips2116391248] +centroid = (0.66096718330454018, -1.5023778144138071) +description = Flaherty CCD, KY +station = ('kftk', 0.0016419498020135048) +zone = ('kyz025', 0.0025564228497524768) + +[fips2116395] +centroid = (0.66870052778061684, -1.4927028784113494) +description = Coldstream city, KY +station = ('klou', 0.0023886633073489007) +zone = ('kyz031', 0.0018314710379187368) + +[fips21165] +centroid = (0.66236493023599985, -1.459048916175619) +description = Menifee County, KY +station = ('kiob', 0.0056203933497558723) +zone = ('kyz060', 0.00016398009919142174) + +[fips2116591344] +centroid = (0.66221046859719834, -1.4583976640185299) +description = Frenchburg CCD, KY +station = ('kjkl', 0.0071015732514913598) +zone = ('kyz060', 0.00053506695604145559) + +[fips2116593662] +centroid = (0.66206649638720128, -1.4610512451599695) +description = West Menifee CCD, KY +station = ('kiob', 0.0043070919775038876) +zone = ('kyz060', 0.0015637084151046469) + +[fips21167] +centroid = (0.6599453802939601, -1.4814301458385684) +description = Mercer County, KY +station = ('kdvk', 0.0043246600930455141) +zone = ('kyz047', 7.5007552256663816e-05) + +[fips2116750] +centroid = (0.64757713945628725, -1.4888973974168858) +description = Columbia city, KY +station = ('kekq', 0.0076402945223921102) +zone = ('kyz077', 0.00037513543928060865) + +[fips2116768] +centroid = (0.64157868716327815, -1.5551216469557831) +description = Columbus city, KY +station = ('kcir', 0.0055651076055866881) +zone = ('kyz002', 0.0022646561386252227) + +[fips2116790424] +centroid = (0.65945970752300764, -1.4791684260207865) +description = Burgin CCD, KY +station = ('kdvk', 0.0035755473769605146) +zone = ('kyz047', 0.0017770066874117302) + +[fips2116791624] +centroid = (0.65922016108317139, -1.4822330322010708) +description = Harrodsburg CCD, KY +station = ('kdvk', 0.0039603578974059328) +zone = ('kyz047', 0.0010009398481157269) + +[fips2116793064] +centroid = (0.66112948147168304, -1.4818636681714712) +description = Salvisa-McAfee CCD, KY +station = ('klex', 0.0049730967658897273) +zone = ('kyz047', 0.0012710591538520075) + +[fips2116894] +centroid = (0.67523554664556662, -1.4572116778852147) +description = Concord city, KY +station = ('kiob', 0.012893959392487366) +zone = ('ohz081', 0.0027633608378339089) + +[fips21169] +centroid = (0.64560416690995537, -1.4945176543142804) +description = Metcalfe County, KY +station = ('kglw', 0.0045734016374050883) +zone = ('kyz076', 6.5938606430687005e-06) + +[fips2116990664] +centroid = (0.64753745066909696, -1.4952309354729856) +description = Center CCD, KY +station = ('kglw', 0.0041261757829321663) +zone = ('kyz076', 0.0020153879737340465) + +[fips2116991112] +centroid = (0.64518605583434752, -1.4932200892818854) +description = Edmonton CCD, KY +station = ('kglw', 0.0056688125242463014) +zone = ('kyz076', 0.001112551908194766) + +[fips2116993400] +centroid = (0.64433754656519804, -1.4954967491180644) +description = Summer Shade CCD, KY +station = ('kglw', 0.0042317546997445998) +zone = ('kyz076', 0.0014936976056066631) + +[fips21171] +centroid = (0.6407815254807222, -1.4959829280344998) +description = Monroe County, KY +station = ('kglw', 0.0064778697000957381) +zone = ('kyz075', 5.2061810394843694e-05) + +[fips2117191312] +centroid = (0.64027494366533078, -1.4987370401408544) +description = Fountain Run CCD, KY +station = ('kglw', 0.0061577813061575223) +zone = ('kyz075', 0.0022189282495302626) + +[fips2117192400] +centroid = (0.64223927683186544, -1.4966313003983231) +description = Mount Hermon CCD, KY +station = ('kglw', 0.0049709125638159194) +zone = ('kyz075', 0.0015655989018332063) + +[fips2117193488] +centroid = (0.64053351419401372, -1.4943040609204215) +description = Tompkinsville CCD, KY +station = ('kglw', 0.0074556135885644704) +zone = ('kyz075', 0.0014030453855016919) + +[fips21173] +centroid = (0.66389074942797077, -1.4645465811463536) +description = Montgomery County, KY +station = ('kiob', 0.0010270214838514792) +zone = ('kyz050', 8.0084549320066716e-05) + +[fips2117362] +centroid = (0.64459461611072422, -1.4678127554019507) +description = Corbin city, KY +station = ('kloz', 0.0026710808168587583) +zone = ('kyz085', 0.0031092914572110877) + +[fips2117391872] +centroid = (0.66257255460381714, -1.4636724155371996) +description = Jeffersonville CCD, KY +station = ('kiob', 0.002344212177571527) +zone = ('kyz050', 0.0014234172114273777) + +[fips2117392416] +centroid = (0.66454664416087028, -1.4651145461915376) +description = Mount Sterling CCD, KY +station = ('kiob', 0.00061158194126833632) +zone = ('kyz050', 0.00085435728786784288) + +[fips2117434] +centroid = (0.67194535665946209, -1.4766915769194036) +description = Corinth city, KY +station = ('kfft', 0.0068140934235304566) +zone = ('kyz095', 0.0026129442184188419) + +[fips21175] +centroid = (0.66188016503625835, -1.4531427045335776) +description = Morgan County, KY +station = ('kjkl', 0.0059805374011277258) +zone = ('kyz106', 1.1186525114468502e-05) + +[fips2117590568] +centroid = (0.65991902582225492, -1.454007550084526) +description = Cannel City CCD, KY +station = ('kjkl', 0.0039677200740658881) +zone = ('kyz106', 0.002066240711059431) + +[fips2117591132] +centroid = (0.66205956743007088, -1.4508256577785077) +description = Elkfork-Ophir CCD, KY +station = ('kjkl', 0.0066482649440217185) +zone = ('kyz106', 0.0018369610599809239) + +[fips2117591456] +centroid = (0.66143611836796601, -1.4556024668615835) +description = Grassy Creek CCD, KY +station = ('kjkl', 0.0056021921546702633) +zone = ('kyz106', 0.001988980365205016) + +[fips2117593656] +centroid = (0.66136447260217168, -1.4525219956383986) +description = West Liberty CCD, KY +station = ('kjkl', 0.005562628151214985) +zone = ('kyz106', 0.00070270493448971159) + +[fips2117593776] +centroid = (0.66324305774255565, -1.4543452712947869) +description = Wrigley CCD, KY +station = ('kjkl', 0.0072917775587928585) +zone = ('kyz106', 0.001669774982569663) + +[fips2117686] +centroid = (0.65868047037186961, -1.5307698533008698) +description = Corydon city, KY +station = ('kehr', 0.0013828108841036422) +zone = ('kyz018', 0.0020922124678327634) + +[fips21177] +centroid = (0.64950361643134613, -1.5207767961356509) +description = Muhlenberg County, KY +station = ('k2i0', 0.004427736577017464) +zone = ('kyz021', 0.00011606141686242797) + +[fips2117790352] +centroid = (0.65169913591059991, -1.5227517059974527) +description = Bremen CCD, KY +station = ('k2i0', 0.0021140122094410315) +zone = ('kyz021', 0.0026094644559819711) + +[fips2117790680] +centroid = (0.65108504181328575, -1.5204335422316613) +description = Central City CCD, KY +station = ('k2i0', 0.0040398060440687035) +zone = ('kyz021', 0.0015955486760123147) + +[fips2117791080] +centroid = (0.64992801069226103, -1.5187477112538672) +description = Drakesboro CCD, KY +station = ('k2i0', 0.0056674112388239986) +zone = ('kyz021', 0.0017707618486130867) + +[fips2117791520] +centroid = (0.64948272484019964, -1.5229180184218751) +description = Greenville CCD, KY +station = ('k2i0', 0.0031802901428385068) +zone = ('kyz021', 0.0015948274585217226) + +[fips2117792736] +centroid = (0.64798919423939061, -1.5181055871687661) +description = Penrod CCD, KY +station = ('k2i0', 0.0070396548132117681) +zone = ('kyz021', 0.0027223489989572393) + +[fips2117792952] +centroid = (0.64743922353879468, -1.521271247912741) +description = Rosewood CCD, KY +station = ('k2i0', 0.0056029617215557041) +zone = ('kyz021', 0.0021162400827136594) + +[fips2117848] +centroid = (0.6812911933781638, -1.4751461402266404) +description = Covington city, KY +station = ('kluk', 0.0017972248502945362) +zone = ('kyz092', 0.0017862670626374055) + +[fips21179] +centroid = (0.65979009835041014, -1.4916623131113103) +description = Nelson County, KY +station = ('ksdf', 0.0075858877964880946) +zone = ('kyz045', 3.3541285854122216e-05) + +[fips2117956] +centroid = (0.65384072471596699, -1.474925722595406) +description = Crab Orchard city, KY +station = ('ki39', 0.0038165352832744076) +zone = ('kyz067', 0.0021327554588128732) + +[fips2117990152] +centroid = (0.65968148651105851, -1.4913721870297512) +description = Bardstown CCD, KY +station = ('ksdf', 0.0077932041847176845) +zone = ('kyz045', 0.00027252731632648692) + +[fips2117990272] +centroid = (0.66162751117373975, -1.4880690990604746) +description = Bloomfield CCD, KY +station = ('kfft', 0.0068926955629020452) +zone = ('kyz038', 0.0023573869380154309) + +[fips2117990304] +centroid = (0.65926152538644367, -1.4943782548669238) +description = Boston CCD, KY +station = ('kftk', 0.0052486458070215109) +zone = ('kyz045', 0.0022154088672645491) + +[fips2117990880] +centroid = (0.66166302862401782, -1.4918575281881459) +description = Coxs Creek CCD, KY +station = ('ksdf', 0.0059223771042884966) +zone = ('kyz045', 0.0018457264094547563) + +[fips2117992520] +centroid = (0.65686703837246252, -1.492893799978225) +description = New Haven CCD, KY +station = ('kftk', 0.0075165326467789111) +zone = ('kyz053', 0.0027304940438506093) + +[fips21181] +centroid = (0.66910917917167867, -1.4665225731122915) +description = Nicholas County, KY +station = ('kiob', 0.004915440842281643) +zone = ('kyz043', 0.00014290171876856937) + +[fips2118190] +centroid = (0.65070546760756198, -1.5373937268780387) +description = Crayne CDP, KY +station = ('kehr', 0.010859634117244612) +zone = ('kyz010', 0.0012316808112471172) + +[fips2118190592] +centroid = (0.66831545578774931, -1.4657069109396643) +description = Carlisle CCD, KY +station = ('kiob', 0.0040871590924942847) +zone = ('kyz043', 0.00091533394867619917) + +[fips2118191664] +centroid = (0.66984621426150348, -1.4668922687544488) +description = Headquarters CCD, KY +station = ('kiob', 0.0056853235410460395) +zone = ('kyz043', 0.00087661420490665193) + +[fips2118270] +centroid = (0.668313029780089, -1.4934785376375208) +description = Creekside city, KY +station = ('klou', 0.0016689724124442757) +zone = ('kyz030', 0.0021953367144607197) + +[fips21183] +centroid = (0.65411203614818958, -1.5157289374197405) +description = Ohio County, KY +station = ('kowb', 0.0063818976375578026) +zone = ('kyz026', 5.7705131043321773e-05) + +[fips2118352] +centroid = (0.68165862009229361, -1.4761963397441502) +description = Crescent Springs city, KY +station = ('kcvg', 0.0011819856497395293) +zone = ('kyz092', 0.00223603554102444) + +[fips2118390200] +centroid = (0.65219828262337776, -1.5152819411450122) +description = Beaver Dam CCD, KY +station = ('kowb', 0.0080754617482775744) +zone = ('kyz026', 0.0019651713002922146) + +[fips2118390672] +centroid = (0.65328768223588762, -1.5192261234551314) +description = Centertown CCD, KY +station = ('kowb', 0.0056547024775851678) +zone = ('kyz026', 0.0028434484805508922) + +[fips2118391280] +centroid = (0.6567469073600477, -1.5139410046807049) +description = Fordsville CCD, KY +station = ('kowb', 0.0061726063311041196) +zone = ('kyz026', 0.003012708985919287) + +[fips2118391632] +centroid = (0.65429749483450639, -1.5157789236495176) +description = Hartford CCD, KY +station = ('kowb', 0.0062219297677041686) +zone = ('kyz026', 0.00017862306181678543) + +[fips2118391688] +centroid = (0.6552977255755319, -1.5174813701617904) +description = Heflin-Beda CCD, KY +station = ('kowb', 0.0045661940813964338) +zone = ('kyz026', 0.0017788524801013064) + +[fips2118391776] +centroid = (0.65365601652122851, -1.5132841325634245) +description = Horse Branch CCD, KY +station = ('kowb', 0.0081307373085498305) +zone = ('kyz026', 0.0020508157606685686) + +[fips2118392144] +centroid = (0.65118361800943836, -1.5169742472943311) +description = McHenry-Rockport CCD, KY +station = ('kowb', 0.0082657210669965734) +zone = ('kyz026', 0.0030805208997979759) + +[fips2118424] +centroid = (0.68110802107316692, -1.4733304392992055) +description = Crestview city, KY +station = ('kluk', 0.0013157934970521813) +zone = ('kyz093', 0.0014496539495761258) + +[fips2118442] +centroid = (0.68110329123089397, -1.4760233078021077) +description = Crestview Hills city, KY +station = ('kcvg', 0.0013860705942438975) +zone = ('kyz092', 0.001665639227975513) + +[fips2118496] +centroid = (0.66922164818867724, -1.4918243494790655) +description = Crestwood city, KY +station = ('klou', 0.00325254761238949) +zone = ('kyz031', 0.0010423808489076682) + +[fips21185] +centroid = (0.67020723561727857, -1.4914895953285328) +description = Oldham County, KY +station = ('klou', 0.0040968022724103721) +zone = ('kyz031', 0.0001038307919012976) + +[fips2118568] +centroid = (0.67698668784397009, -1.4765821622285964) +description = Crittenden city, KY +station = ('kcvg', 0.0046482763537079507) +zone = ('kyz095', 0.0024571802574300523) + +[fips2118591968] +centroid = (0.67062503253362082, -1.4902946556561552) +description = La Grange CCD, KY +station = ('klou', 0.0050667131747020831) +zone = ('kyz031', 0.00093615965793685028) + +[fips2118592752] +centroid = (0.66984260142995178, -1.4924681665335413) +description = Pewee Valley CCD, KY +station = ('klou', 0.0033101366210428291) +zone = ('kyz031', 0.00094006981063590029) + +[fips2118658] +centroid = (0.64660828973521267, -1.5268750463552891) +description = Crofton city, KY +station = ('k2i0', 0.0055048466995458222) +zone = ('kyz017', 0.0026864956440789821) + +[fips21187] +centroid = (0.67194483306068642, -1.4807636744104018) +description = Owen County, KY +station = ('kfft', 0.005577715775901949) +zone = ('kyz094', 0.00039632119354260007) + +[fips2118766] +centroid = (0.66809936657305991, -1.4945185618854915) +description = Crossgate city, KY +station = ('klou', 0.00094915460492502773) +zone = ('kyz030', 0.0016584311352136963) + +[fips2118792360] +centroid = (0.67077036610043439, -1.4795214363152949) +description = Monterey-New Columbus CCD, KY +station = ('kfft', 0.0046943339659007485) +zone = ('kyz094', 0.0017167244430269948) + +[fips2118792528] +centroid = (0.6741837414251447, -1.4814893997666734) +description = New Liberty CCD, KY +station = ('kfft', 0.0077623015413867289) +zone = ('kyz094', 0.0020322826314988318) + +[fips2118792632] +centroid = (0.67233241832767687, -1.4809236512896395) +description = Owenton CCD, KY +station = ('kfft', 0.0059459825946122031) +zone = ('kyz094', 0.00031181289886919871) + +[fips21189] +centroid = (0.65316245486205693, -1.4606933828501405) +description = Owsley County, KY +station = ('kjkl', 0.0058933472526926916) +zone = ('kyz114', 0.00013674316217425513) + +[fips2118990296] +centroid = (0.65438202113018051, -1.4601824551649116) +description = Booneville CCD, KY +station = ('kjkl', 0.0050346295897995118) +zone = ('kyz114', 0.0013241068309466091) + +[fips2118990872] +centroid = (0.65228823689302551, -1.4589836408615944) +description = Cowcreek CCD, KY +station = ('kjkl', 0.0053049916935070159) +zone = ('kyz114', 0.0014785592281109114) + +[fips2118993376] +centroid = (0.65298411711908821, -1.461915567112142) +description = Sturgeon CCD, KY +station = ('kjkl', 0.0068388410859265194) +zone = ('kyz114', 0.0010918260671972642) + +[fips21191] +centroid = (0.67528123936538387, -1.4722557528122899) +description = Pendleton County, KY +station = ('kluk', 0.0071929792771406381) +zone = ('kyz096', 0.0001202412573029394) + +[fips2119108] +centroid = (0.64552231096803681, -1.4486487609623726) +description = Cumberland city, KY +station = ('ki35', 0.0054478686086481274) +zone = ('kyz118', 0.0031204584305381017) + +[fips2119190472] +centroid = (0.67676353004581014, -1.472451282048391) +description = Butler CCD, KY +station = ('kluk', 0.0057030942485567409) +zone = ('kyz096', 0.0013978464470691882) + +[fips2119191200] +centroid = (0.67433942479442266, -1.4712052914953921) +description = Falmouth CCD, KY +station = ('kluk', 0.0082547730100179535) +zone = ('kyz096', 0.0013689871569504998) + +[fips2119191420] +centroid = (0.67443983358628989, -1.4734348274417675) +description = Goforth-Locust Grove CCD, KY +station = ('kcvg', 0.0078528322070359306) +zone = ('kyz096', 0.0012491263549802576) + +[fips21193] +centroid = (0.64998298856369885, -1.4524241175739465) +description = Perry County, KY +station = ('kjkl', 0.0061253159753023164) +zone = ('kyz115', 7.3875148294308358e-05) + +[fips2119390408] +centroid = (0.65116588546423815, -1.456882526241581) +description = Buckhorn CCD, KY +station = ('kjkl', 0.0052556095634661848) +zone = ('kyz114', 0.0034909225496233959) + +[fips2119390992] +centroid = (0.64669923884253411, -1.4503582586048236) +description = Daisy CCD, KY +station = ('ki35', 0.0049494027408938388) +zone = ('kyz115', 0.0037438764249534563) + +[fips2119391032] +centroid = (0.6494366481479471, -1.449850193259568) +description = Defiance-Vicco CCD, KY +station = ('ki35', 0.0073194356058921845) +zone = ('kyz115', 0.002184991749944206) + +[fips2119391048] +centroid = (0.65244800433275307, -1.452102994444872) +description = Dice CCD, KY +station = ('kjkl', 0.0038630735804087483) +zone = ('kyz115', 0.002431816729722936) + +[fips2119391648] +centroid = (0.65030215692401105, -1.4522711743715944) +description = Hazard CCD, KY +station = ('kjkl', 0.0058444714843878072) +zone = ('kyz115', 0.0003180130553683467) + +[fips2119391944] +centroid = (0.65156416959954311, -1.4541019374904738) +description = Krypton CCD, KY +station = ('kjkl', 0.0043889078421822962) +zone = ('kyz115', 0.0019956688635284002) + +[fips2119393576] +centroid = (0.64821095577414911, -1.4509855997511603) +description = Viper CCD, KY +station = ('ki35', 0.0057988342702351902) +zone = ('kyz115', 0.0021827095398154026) + +[fips2119432] +centroid = (0.66990869704872491, -1.4713444465966539) +description = Cynthiana city, KY +station = ('kiob', 0.0071684455630224176) +zone = ('kyz037', 0.0011045287031149742) + +[fips21195] +centroid = (0.65418547960311346, -1.4382013771395672) +description = Pike County, KY +station = ('kk22', 0.0056992810517326109) +zone = ('kyz120', 0.00024819242948543457) + +[fips2119590088] +centroid = (0.65023817315363308, -1.4393607993616673) +description = Ashcamp CCD, KY +station = ('klnp', 0.004839986674272369) +zone = ('vaz003', 0.0028095677106301314) + +[fips2119591072] +centroid = (0.65047782431322443, -1.4413503525358931) +description = Dorton CCD, KY +station = ('klnp', 0.0050450182719031103) +zone = ('vaz003', 0.0040980711805456904) + +[fips2119591136] +centroid = (0.65156275588284895, -1.4371243693647466) +description = Elkhorn City CCD, KY +station = ('klnp', 0.0066433361932750658) +zone = ('kyz120', 0.0025116372032118221) + +[fips2119591232] +centroid = (0.65301822085267214, -1.4359283650415249) +description = Fedscreek CCD, KY +station = ('kk22', 0.0077270442807236498) +zone = ('kyz120', 0.0019480903785414447) + +[fips2119591696] +centroid = (0.65124772395286412, -1.439388323203971) +description = Hellier CCD, KY +station = ('klnp', 0.0058318776890604962) +zone = ('kyz120', 0.0029027990847780706) + +[fips2119592080] +centroid = (0.65104758704753785, -1.4425978091654634) +description = Long Fork CCD, KY +station = ('klnp', 0.0058173717533367732) +zone = ('kyz118', 0.0042140105823942585) + +[fips2119592112] +centroid = (0.65559767786077972, -1.4345305657501879) +description = McCarr CCD, KY +station = ('kk22', 0.0069593195280419186) +zone = ('wvz024', 0.002962506157343902) + +[fips2119592264] +centroid = (0.65654352414231287, -1.4400387550563118) +description = Mayflower CCD, KY +station = ('kk22', 0.0029340488520976683) +zone = ('kyz120', 0.0030174416514793644) + +[fips2119592320] +centroid = (0.6528453634435547, -1.4388534496014049) +description = Millard CCD, KY +station = ('kk22', 0.0066176286508069053) +zone = ('kyz120', 0.0012711329638865484) + +[fips2119592760] +centroid = (0.65440429153143598, -1.4333767111284017) +description = Phelps CCD, KY +station = ('ki16', 0.0080635207116808681) +zone = ('wvz024', 0.0040471777622208644) + +[fips2119592768] +centroid = (0.65456400661128589, -1.4406173317033479) +description = Pikeville CCD, KY +station = ('kk22', 0.0045122653037295247) +zone = ('kyz120', 0.0021042795905913689) + +[fips2119592872] +centroid = (0.654799015195067, -1.4378145423641553) +description = Raccoon CCD, KY +station = ('kk22', 0.0054007159433143289) +zone = ('kyz120', 0.00086716899173465271) + +[fips2119592928] +centroid = (0.65204977255732544, -1.4409135140774112) +description = Robinson Creek CCD, KY +station = ('klnp', 0.006577980650499418) +zone = ('kyz120', 0.0029514826199072319) + +[fips2119593208] +centroid = (0.65725329718922143, -1.4373336168887683) +description = Sidney CCD, KY +station = ('kk22', 0.0042396156163393237) +zone = ('kyz119', 0.0033431396215922765) + +[fips2119593304] +centroid = (0.65632319377754111, -1.4358660742405212) +description = South Williamson CCD, KY +station = ('kk22', 0.005685326747325109) +zone = ('wvz024', 0.0028238539042508039) + +[fips21197] +centroid = (0.65991560497692103, -1.4630568902698988) +description = Powell County, KY +station = ('kiob', 0.0048175876958576839) +zone = ('kyz059', 0.0003658756014356774) + +[fips2119790728] +centroid = (0.66039309215368158, -1.4647569456810965) +description = Clay City CCD, KY +station = ('kiob', 0.0039192083337768122) +zone = ('kyz059', 0.0013898955785268156) + +[fips2119793352] +centroid = (0.65984392430454164, -1.4618355961258156) +description = Stanton CCD, KY +station = ('kiob', 0.0053754873025874065) +zone = ('kyz059', 0.0010197080503757273) + +[fips2119882] +centroid = (0.65694076108006683, -1.4796210597089987) +description = Danville city, KY +station = ('kdvk', 0.0010493586346620606) +zone = ('kyz055', 0.001282073114328877) + +[fips21199] +centroid = (0.64766222425732201, -1.4761992369907087) +description = Pulaski County, KY +station = ('ksme', 0.0010633622935943405) +zone = ('kyz079', 8.6852357272755273e-05) + +[fips2119990456] +centroid = (0.64448722600184905, -1.4755986691950973) +description = Burnside CCD, KY +station = ('ksme', 0.0024309437899043091) +zone = ('kyz079', 0.0031289887032438439) + +[fips2119991176] +centroid = (0.65023492684122419, -1.475693388213603) +description = Eubank CCD, KY +station = ('ksme', 0.0036286119275075342) +zone = ('kyz079', 0.0026744420556492001) + +[fips2119992432] +centroid = (0.64635889963839521, -1.4733543852165429) +description = Mount Victory CCD, KY +station = ('ksme', 0.0027816325014934826) +zone = ('kyz079', 0.0025447306320891209) + +[fips2119992488] +centroid = (0.64703706477255019, -1.4797921019756941) +description = Nancy CCD, KY +station = ('ksme', 0.0024007531964228279) +zone = ('kyz079', 0.002957480819488211) + +[fips2119993104] +centroid = (0.64912711400510592, -1.4780851001540736) +description = Science Hill CCD, KY +station = ('ksme', 0.0026154786475318494) +zone = ('kyz079', 0.0021815811477835026) + +[fips2119993184] +centroid = (0.64849773082354423, -1.4730920622299681) +description = Shopville CCD, KY +station = ('ksme', 0.0034589140655832281) +zone = ('kyz079', 0.0026023230837338915) + +[fips2119993256] +centroid = (0.64703298070210058, -1.4764197593416981) +description = Somerset CCD, KY +station = ('ksme', 0.00044368224108529548) +zone = ('kyz079', 0.00059301350881664559) + +[fips21201] +centroid = (0.67219307124019767, -1.4671893412464307) +description = Robertson County, KY +station = ('kiob', 0.0080410529743176178) +zone = ('kyz098', 0.00018132081917270838) + +[fips2120192408] +centroid = (0.67219307124019767, -1.4671893412464307) +description = Mount Olivet CCD, KY +station = ('kiob', 0.0080410529743176178) +zone = ('kyz098', 0.00018132081917270838) + +[fips2120224] +centroid = (0.64881288492657685, -1.5304547515577147) +description = Dawson Springs city, KY +station = ('k2i0', 0.0051306765917412183) +zone = ('kyz016', 0.0031188060225522457) + +[fips21203] +centroid = (0.65207630156195595, -1.4715642184560649) +description = Rockcastle County, KY +station = ('ki39', 0.0046960549594999351) +zone = ('kyz068', 7.2844047219647486e-05) + +[fips2120350] +centroid = (0.68264642408904475, -1.4741829453723423) +description = Dayton city, KY +station = ('kluk', 0.00068452899106329675) +zone = ('ohz077', 0.001788518709319072) + +[fips2120390800] +centroid = (0.65355932528066796, -1.4712546843132237) +description = Conway CCD, KY +station = ('ki39', 0.0032410369755047643) +zone = ('kyz068', 0.0014387032353254852) + +[fips2120392064] +centroid = (0.65220967962339327, -1.4700837603713532) +description = Livingston CCD, KY +station = ('ki39', 0.0047650461746939115) +zone = ('kyz068', 0.0012002481035036283) + +[fips2120392424] +centroid = (0.65153319000532017, -1.4726041554375733) +description = Mount Vernon CCD, KY +station = ('ki39', 0.0052695694817823562) +zone = ('kyz068', 0.0010113963581261038) + +[fips21205] +centroid = (0.66681864396794643, -1.4560578407167211) +description = Rowan County, KY +station = ('kiob', 0.0080726434728519078) +zone = ('kyz052', 0.00018027253259465556) + +[fips2120591725] +centroid = (0.66831945259173642, -1.4566706607236815) +description = Hilda-Triplett CCD, KY +station = ('kiob', 0.008245885372226756) +zone = ('kyz052', 0.0017559677502273559) + +[fips2120592376] +centroid = (0.66567564529410794, -1.4555830238937162) +description = Morehead CCD, KY +station = ('kjkl', 0.0097883218872904919) +zone = ('kyz052', 0.001022563823988484) + +[fips21207] +centroid = (0.64558205358833265, -1.4845591895748362) +description = Russell County, KY +station = ('kekq', 0.0036700983592332817) +zone = ('kyz078', 3.4831998976836487e-05) + +[fips2120790384] +centroid = (0.64471212912926101, -1.4865124049940355) +description = Bryan CCD, KY +station = ('kekq', 0.0046317092729329804) +zone = ('kyz078', 0.0018082580824721191) + +[fips2120791120] +centroid = (0.64599468433008911, -1.4826969581695435) +description = Eli CCD, KY +station = ('kekq', 0.0030586764415254648) +zone = ('kyz078', 0.0015294616635075425) + +[fips2120791864] +centroid = (0.64428366825118899, -1.48487088792595) +description = Jamestown CCD, KY +station = ('kekq', 0.003251328147882059) +zone = ('kyz078', 0.0013568697609000805) + +[fips2120792984] +centroid = (0.64710928649699773, -1.4847262350375445) +description = Russell Springs CCD, KY +station = ('kekq', 0.004868406181195265) +zone = ('kyz078', 0.0014992168258871812) + +[fips21209] +centroid = (0.66828451110011144, -1.4761885904822714) +description = Scott County, KY +station = ('klex', 0.0044865547122869328) +zone = ('kyz036', 6.8103611536739184e-05) + +[fips2120991392] +centroid = (0.66696951022848883, -1.476183843186706) +description = Georgetown CCD, KY +station = ('klex', 0.0031756049567780616) +zone = ('kyz036', 0.0013448476963258543) + +[fips2120993008] +centroid = (0.66966873172986807, -1.4752297764043958) +description = Sadieville CCD, KY +station = ('klex', 0.0059527447035106779) +zone = ('kyz036', 0.0015815843210805526) + +[fips2120993336] +centroid = (0.66898065312556187, -1.4772975726889888) +description = Stamping Ground CCD, KY +station = ('kfft', 0.0043527063762093419) +zone = ('kyz036', 0.001048481156333132) + +[fips21211] +centroid = (0.66740388777272519, -1.4875154980750342) +description = Shelby County, KY +station = ('kfft', 0.0046082039484353684) +zone = ('kyz034', 0.00062136727760648376) + +[fips2121190696] +centroid = (0.66811359100646361, -1.4846311494998958) +description = Christianburg CCD, KY +station = ('kfft', 0.0028020832881115536) +zone = ('kyz034', 0.0021282665851981792) + +[fips2121191616] +centroid = (0.66560864210412385, -1.4853281292833873) +description = Harrisonville CCD, KY +station = ('kfft', 0.0029033871846096226) +zone = ('kyz034', 0.0018663336655639091) + +[fips2121193152] +centroid = (0.66740388777272519, -1.4875154980750342) +description = Shelbyville CCD, KY +station = ('kfft', 0.0046082039484353684) +zone = ('kyz034', 0.00062136727760648376) + +[fips2121193232] +centroid = (0.66703342418569689, -1.4897887196125867) +description = Simpsonville CCD, KY +station = ('ksdf', 0.0051755241203663002) +zone = ('kyz034', 0.0022467026557460869) + +[fips21213] +centroid = (0.64124902937416139, -1.5111316179969396) +description = Simpson County, KY +station = ('kbwg', 0.0045638205650585144) +zone = ('kyz072', 2.1547326407471238e-05) + +[fips2121322] +centroid = (0.64122349520720479, -1.5410558988876206) +description = Dexter CDP, KY +station = ('kcey', 0.0016500102558907315) +zone = ('kyz009', 0.0020912019042444588) + +[fips2121358] +centroid = (0.64976075579004244, -1.45160880446717) +description = Diablock CDP, KY +station = ('kjkl', 0.0065129101516285164) +zone = ('kyz115', 0.0007528931561557831) + +[fips2121391101] +centroid = (0.6410641291932051, -1.5091829404337955) +description = East Simpson CCD, KY +station = ('kbwg', 0.0041921546081927314) +zone = ('kyz072', 0.0015864032302353608) + +[fips2121391328] +centroid = (0.64163141355998077, -1.512248052759563) +description = Franklin CCD, KY +station = ('kbwg', 0.0047820321214875399) +zone = ('kyz072', 0.00095503499010854301) + +[fips21215] +centroid = (0.66369593577686314, -1.4891415340726548) +description = Spencer County, KY +station = ('klou', 0.005951826430534231) +zone = ('kyz038', 0.00013029364721435651) + +[fips2121593448] +centroid = (0.66352773839684853, -1.4877527232269654) +description = Taylorsville CCD, KY +station = ('kfft', 0.005518244508058141) +zone = ('kyz038', 0.0012109381576100721) + +[fips2121593668] +centroid = (0.66403824720305682, -1.4907034641268497) +description = West Spencer CCD, KY +station = ('klou', 0.004789404345000599) +zone = ('kyz038', 0.001168685435742942) + +[fips2121682] +centroid = (0.65479185934513384, -1.53057966477228) +description = Dixon city, KY +station = ('k2i0', 0.0049886183776280905) +zone = ('kyz015', 0.0001757382982657576) + +[fips21217] +centroid = (0.65214412505668828, -1.4892318199548604) +description = Taylor County, KY +station = ('kdvk', 0.0085749430359434338) +zone = ('kyz065', 2.8072561718440345e-05) + +[fips2121790528] +centroid = (0.651241109154999, -1.4891875758583224) +description = Campbellsville CCD, KY +station = ('kdvk', 0.0089788181436771634) +zone = ('kyz065', 0.00092705189650494355) + +[fips2121792224] +centroid = (0.65288011294896187, -1.4871611438770018) +description = Mannsville CCD, KY +station = ('kdvk', 0.0067738993315184983) +zone = ('kyz065', 0.0018085809771892229) + +[fips2121793048] +centroid = (0.65312636145312575, -1.4912500139821117) +description = Saloma CCD, KY +station = ('kglw', 0.009836176330823088) +zone = ('kyz065', 0.0018543717092420649) + +[fips2121844] +centroid = (0.66281079204671434, -1.5028666811372906) +description = Doe Valley CDP, KY +station = ('kftk', 0.0023562595608924075) +zone = ('kyz025', 0.001504061207395374) + +[fips21219] +centroid = (0.64298519564758283, -1.5216416067800143) +description = Todd County, KY +station = ('kckv', 0.0050857587816073623) +zone = ('kyz022', 0.00010422805714818025) + +[fips2121991144] +centroid = (0.64275065830269973, -1.5213741874320235) +description = Elkton CCD, KY +station = ('kckv', 0.0050531287952107901) +zone = ('kyz022', 0.00021385704592723597) + +[fips2121991544] +centroid = (0.6405047686212334, -1.5208991960760931) +description = Guthrie CCD, KY +station = ('kckv', 0.0041124197290861421) +zone = ('kyz022', 0.0024558754693424383) + +[fips2121991928] +centroid = (0.64532102214540432, -1.521452046569955) +description = Kirkmansville CCD, KY +station = ('khop', 0.0070502100394854682) +zone = ('kyz022', 0.0024201275415741924) + +[fips2121993504] +centroid = (0.64050972535630912, -1.5228416079072229) +description = Trenton CCD, KY +station = ('kckv', 0.0027074169412138363) +zone = ('kyz022', 0.0026029951695170869) + +[fips21221] +centroid = (0.64241522347375901, -1.5334227537639011) +description = Trigg County, KY +station = ('khop', 0.0055876354393150337) +zone = ('kyz012', 0.00020729942098133422) + +[fips2122190480] +centroid = (0.64276310250026647, -1.5317211624629616) +description = Cadiz CCD, KY +station = ('khop', 0.0046076048803610683) +zone = ('kyz012', 0.0016113881563873879) + +[fips2122190588] +centroid = (0.64160926533177298, -1.5336980794534032) +description = Canton CCD, KY +station = ('khop', 0.0054938973648188368) +zone = ('kyz012', 0.00078373196348290226) + +[fips2122190687] +centroid = (0.64440006425900453, -1.5329083354201682) +description = Cerulean CCD, KY +station = ('khop', 0.0063979502751895009) +zone = ('kyz012', 0.0021000372711612101) + +[fips2122191290] +centroid = (0.64014559731446552, -1.5312999447012854) +description = Fort Campbell CCD, KY +station = ('khop', 0.0033235490629282237) +zone = ('kyz012', 0.0029475749642902008) + +[fips2122191980] +centroid = (0.6421472456204077, -1.5367418114958338) +description = Land Between the Lakes CCD, KY +station = ('kcey', 0.0049277804180699438) +zone = ('kyz012', 0.0024638578967878075) + +[fips2122204] +centroid = (0.66734597774814408, -1.4931840133262464) +description = Douglass Hills city, KY +station = ('klou', 0.0015570908573805328) +zone = ('kyz030', 0.0016899738201808412) + +[fips2122222] +centroid = (0.6764305386778221, -1.4641271610738067) +description = Dover city, KY +station = ('kluk', 0.0093477913248150163) +zone = ('kyz099', 0.0029503418072827576) + +[fips21223] +centroid = (0.67401461902062654, -1.4897287675527808) +description = Trimble County, KY +station = ('klou', 0.0079535507090276406) +zone = ('kyz032', 0.00025873944022487003) + +[fips2122348] +centroid = (0.64956445860907064, -1.5193081539299751) +description = Drakesboro city, KY +station = ('k2i0', 0.0054076475437741115) +zone = ('kyz021', 0.0012811702023493713) + +[fips2122390208] +centroid = (0.67315218202404603, -1.4888161697934981) +description = Bedford CCD, KY +station = ('klou', 0.0076834090985542719) +zone = ('kyz032', 0.00090410281083637639) + +[fips2122392352] +centroid = (0.67510560688275556, -1.490008316939073) +description = Milton CCD, KY +station = ('klou', 0.0087905616446609675) +zone = ('kyz032', 0.0012682105238480527) + +[fips2122474] +centroid = (0.66784912126490892, -1.4950799121328107) +description = Druid Hills city, KY +station = ('klou', 0.00055564066550649576) +zone = ('kyz030', 0.0013571057731161789) + +[fips21225] +centroid = (0.65725659586150764, -1.5350458750616707) +description = Union County, KY +station = ('kehr', 0.0046240031834249243) +zone = ('kyz014', 8.7978058384819227e-05) + +[fips2122582] +centroid = (0.67505954764379561, -1.4765036049589639) +description = Dry Ridge city, KY +station = ('kcvg', 0.0065593698549076132) +zone = ('kyz095', 0.00063007668337984938) + +[fips2122592384] +centroid = (0.65747895080821173, -1.5350208295869046) +description = Morganfield CCD, KY +station = ('kehr', 0.0044778246080270749) +zone = ('kyz014', 0.00022630794704759109) + +[fips2122593384] +centroid = (0.65571541777211917, -1.5350744635548184) +description = Sturgis CCD, KY +station = ('kehr', 0.0056987189639882089) +zone = ('kyz014', 0.0015515885703709538) + +[fips2122593536] +centroid = (0.65933922744474249, -1.5344045887346105) +description = Uniontown CCD, KY +station = ('kehr', 0.0032665852326444443) +zone = ('kyz014', 0.0021181353695743101) + +[fips21227] +centroid = (0.64569562216275989, -1.5083760049074286) +description = Warren County, KY +station = ('kbwg', 0.00051467883740823311) +zone = ('kyz071', 3.5780899608523091e-05) + +[fips2122790060] +centroid = (0.64361480572194718, -1.5067507194013863) +description = Alvaton CCD, KY +station = ('kbwg', 0.0019820069720996973) +zone = ('kyz071', 0.0024254245699368714) + +[fips2122790312] +centroid = (0.64527639407643089, -1.5089892088868242) +description = Bowling Green CCD, KY +station = ('kbwg', 0.00059263814709519793) +zone = ('kyz071', 0.00061872818537726793) + +[fips2122791488] +centroid = (0.64835416003927515, -1.5098641948007265) +description = Greencastle CCD, KY +station = ('kbwg', 0.0034146760837812148) +zone = ('kyz061', 0.0026167977011651113) + +[fips2122791556] +centroid = (0.64614956484791097, -1.5110861870765104) +description = Hadley-Browning CCD, KY +station = ('kbwg', 0.0024561481308541439) +zone = ('kyz071', 0.002214520808501022) + +[fips2122793084] +centroid = (0.64729128943139569, -1.5074951895938247) +description = Sand Hill-Girkin CCD, KY +station = ('kbwg', 0.0021871284451003893) +zone = ('kyz071', 0.0017780135084744916) + +[fips2122793248] +centroid = (0.64586521580617606, -1.5050078161570524) +description = Smiths Grove CCD, KY +station = ('kbwg', 0.0026805064109413934) +zone = ('kyz071', 0.0027022419097015768) + +[fips2122793760] +centroid = (0.64338042545669683, -1.5097894772554485) +description = Woodburn CCD, KY +station = ('kbwg', 0.0021861387238153273) +zone = ('kyz072', 0.002376165851171363) + +[fips21229] +centroid = (0.65893525353607585, -1.4865914509558584) +description = Washington County, KY +station = ('kdvk', 0.0063731073312607404) +zone = ('kyz046', 1.7233345926729054e-05) + +[fips2122993328] +centroid = (0.65830557364854136, -1.4868408759592611) +description = Springfield CCD, KY +station = ('kdvk', 0.0062809992909613867) +zone = ('kyz046', 0.00064947723072521582) + +[fips2122993728] +centroid = (0.66046616908946265, -1.4857064992119273) +description = Willisburg CCD, KY +station = ('kdvk', 0.0066996201748156887) +zone = ('kyz046', 0.0016918633078713938) + +[fips2123000] +centroid = (0.64708535803295286, -1.5183549074524136) +description = Dunmor CDP, KY +station = ('k2i0', 0.0074400819562410875) +zone = ('kyz021', 0.0031902144954222863) + +[fips21231] +centroid = (0.64231626330517089, -1.4805704839154985) +description = Wayne County, KY +station = ('kekq', 0.0009964544254369859) +zone = ('kyz083', 2.981666875365047e-05) + +[fips2123104] +centroid = (0.65670912098174206, -1.4439334398288446) +description = Dwale CDP, KY +station = ('kk22', 0.0025330377290252114) +zone = ('kyz110', 0.0012285888241518302) + +[fips2123140] +centroid = (0.64857065067969255, -1.5391118289937018) +description = Dycusburg city, KY +station = ('kpah', 0.0083277197342412537) +zone = ('kyz007', 0.0025025703332764056) + +[fips2123190816] +centroid = (0.64060571846516878, -1.4803267486854574) +description = Coopersville CCD, KY +station = ('kekq', 0.002697738357837323) +zone = ('kyz083', 0.0017064411620687911) + +[fips2123191528] +centroid = (0.6425460009946109, -1.4781908322001593) +description = Gregory CCD, KY +station = ('kekq', 0.0023689491467977909) +zone = ('kyz083', 0.0018936928122773868) + +[fips2123192344] +centroid = (0.64434253820685872, -1.4800740773696464) +description = Mill Springs CCD, KY +station = ('kekq', 0.0013315934143392539) +zone = ('kyz083', 0.0020720032741225114) + +[fips2123192368] +centroid = (0.6428446966427972, -1.4807645121684427) +description = Monticello CCD, KY +station = ('kekq', 0.00044980379705762214) +zone = ('kyz083', 0.00057078360077807036) + +[fips2123193792] +centroid = (0.64130491481681018, -1.4829797713215365) +description = Zula-Powersburg CCD, KY +station = ('kekq', 0.0024967693149879314) +zone = ('kyz082', 0.0023622497058035027) + +[fips2123230] +centroid = (0.65060327857985767, -1.5273119371736483) +description = Earlington city, KY +station = ('k2i0', 0.0020617258985736429) +zone = ('kyz016', 0.00071661371518359448) + +[fips2123284] +centroid = (0.64913467128076707, -1.4683317290550313) +description = East Bernstadt CDP, KY +station = ('kloz', 0.0020974462604582979) +zone = ('kyz080', 0.0014395472944108544) + +[fips21233] +centroid = (0.65484790186741537, -1.5303936126740174) +description = Webster County, KY +station = ('k2i0', 0.0048996969064491278) +zone = ('kyz015', 3.9879555411836933e-05) + +[fips2123390720] +centroid = (0.65411800517423135, -1.5333249629659118) +description = Clay CCD, KY +station = ('kehr', 0.0063558832406986959) +zone = ('kyz015', 0.002453811853906313) + +[fips2123391056] +centroid = (0.65517281236096669, -1.5305304290340811) +description = Dixon CCD, KY +station = ('kehr', 0.0048543450077158067) +zone = ('kyz015', 0.00037965830542865031) + +[fips2123392856] +centroid = (0.65310267733517613, -1.5317922148168104) +description = Providence CCD, KY +station = ('k2i0', 0.0052109473576014446) +zone = ('kyz015', 0.0020574330709866354) + +[fips2123393120] +centroid = (0.65572915351333227, -1.5278684703122318) +description = Sebree CCD, KY +station = ('k2i0', 0.0042316460328453778) +zone = ('kyz015', 0.0021759327536285998) + +[fips21235] +centroid = (0.64154849296721861, -1.4685994451089945) +description = Whitley County, KY +station = ('kloz', 0.0057808362343091469) +zone = ('kyz085', 9.6109139769970565e-06) + +[fips2123590832] +centroid = (0.64415589269665052, -1.4683979468468518) +description = Corbin CCD, KY +station = ('kloz', 0.0032066046416541808) +zone = ('kyz085', 0.0026098415273073704) + +[fips2123590952] +centroid = (0.64310082371052746, -1.4705978645558206) +description = Cumberland Falls CCD, KY +station = ('kloz', 0.0049210624462278424) +zone = ('kyz085', 0.0022207002920303798) + +[fips2123592712] +centroid = (0.63892039363285802, -1.4655820151783918) +description = Pearl CCD, KY +station = ('k1a6', 0.0032850187132709013) +zone = ('kyz085', 0.003580932449744246) + +[fips2123593096] +centroid = (0.63967093757109317, -1.4681852086643263) +description = Saxton CCD, KY +station = ('k1a6', 0.00541763247063795) +zone = ('kyz085', 0.0019113800749945354) + +[fips2123593216] +centroid = (0.64065472731056483, -1.4661907860214873) +description = Siler CCD, KY +station = ('k1a6', 0.004128120940396972) +zone = ('kyz085', 0.0021368176403818292) + +[fips2123593712] +centroid = (0.64131988974179233, -1.4688795704539397) +description = Williamsburg CCD, KY +station = ('kloz', 0.0060500773050466972) +zone = ('kyz085', 0.00031634836262808992) + +[fips21237] +centroid = (0.65875312842863032, -1.4572638457765568) +description = Wolfe County, KY +station = ('kjkl', 0.0037304991663748856) +zone = ('kyz108', 8.2675209074674515e-05) + +[fips2123790544] +centroid = (0.65872537769352357, -1.4590090354022109) +description = Campton CCD, KY +station = ('kjkl', 0.0047414407126052495) +zone = ('kyz108', 0.0014081377900623782) + +[fips2123791656] +centroid = (0.65917919820562709, -1.4553262336008703) +description = Hazel Green CCD, KY +station = ('kjkl', 0.0033578866387303807) +zone = ('kyz108', 0.0015870225993366205) + +[fips2123792208] +centroid = (0.65782686474130436, -1.4568328018111918) +description = Malaga CCD, KY +station = ('kjkl', 0.0028327848062229969) +zone = ('kyz108', 0.00090436886069634645) + +[fips2123824] +centroid = (0.64708993079559307, -1.5371970806312163) +description = Eddyville city, KY +station = ('kcey', 0.0082729242200466693) +zone = ('kyz011', 0.00099150584155104408) + +[fips21239] +centroid = (0.66397192469148103, -1.479134200114155) +description = Woodford County, KY +station = ('klex', 0.0020431402329732047) +zone = ('kyz040', 6.4442531384111576e-05) + +[fips2123932] +centroid = (0.68083068825502502, -1.4758483210913027) +description = Edgewood city, KY +station = ('kcvg', 0.0016171445616447613) +zone = ('kyz092', 0.0013656488583031277) + +[fips2123968] +centroid = (0.64550079105835967, -1.4943656186831391) +description = Edmonton city, KY +station = ('kglw', 0.0047104804792320928) +zone = ('kyz076', 0.00015595900154213217) + +[fips2123992312] +centroid = (0.66585599016571639, -1.478313040154384) +description = Midway CCD, KY +station = ('klex', 0.0024753318390098216) +zone = ('kyz040', 0.0019801837563834823) + +[fips2123993308] +centroid = (0.66254119103715869, -1.4788563611505299) +description = South Woodford CCD, KY +station = ('klex', 0.0022157397849276602) +zone = ('kyz040', 0.0014306231741721381) + +[fips2123993568] +centroid = (0.66452543841045852, -1.4791805211525026) +description = Versailles CCD, KY +station = ('klex', 0.0021935257321401293) +zone = ('kyz040', 0.0005709336002855689) + +[fips2124094] +centroid = (0.66201535824011792, -1.5040797198740117) +description = Ekron city, KY +station = ('kftk', 0.0029509215539585895) +zone = ('kyz025', 0.00086841609727127253) + +[fips2124274] +centroid = (0.65806484038481372, -1.4988370824135786) +description = Elizabethtown city, KY +station = ('kftk', 0.0036317423476787511) +zone = ('kyz028', 0.0011992369628405818) + +[fips2124292] +centroid = (0.67046788308777128, -1.4629376319221099) +description = Elizaville CDP, KY +station = ('kiob', 0.0066261180469947634) +zone = ('kyz044', 0.0018615734892451087) + +[fips2124346] +centroid = (0.66523557797651012, -1.4900160312943667) +description = Elk Creek CDP, KY +station = ('ksdf', 0.005104967825952344) +zone = ('kyz038', 0.0015633007029648724) + +[fips2124382] +centroid = (0.65106497052688772, -1.4373042429974572) +description = Elkhorn City city, KY +station = ('klnp', 0.0061305300934924164) +zone = ('kyz120', 0.002957063444746476) + +[fips2124400] +centroid = (0.64256183113092646, -1.521248855338438) +description = Elkton city, KY +station = ('kckv', 0.0049893884811869791) +zone = ('kyz022', 0.00042310894013653953) + +[fips2124778] +centroid = (0.68056686428529356, -1.4765789508227725) +description = Elsmere city, KY +station = ('kcvg', 0.0013204862942812435) +zone = ('kyz092', 0.0014055901793756556) + +[fips2124904] +centroid = (0.66956341856280277, -1.4866138958900392) +description = Eminence city, KY +station = ('kfft', 0.0049218690359722232) +zone = ('kyz033', 0.0016847511636181522) + +[fips2124922] +centroid = (0.64055590676831686, -1.4685600006678996) +description = Emlyn CDP, KY +station = ('k1a6', 0.0058878955695618844) +zone = ('kyz085', 0.00099654203774562217) + +[fips2125300] +centroid = (0.68136657414855739, -1.4765509033816928) +description = Erlanger city, KY +station = ('kcvg', 0.00092052747586889646) +zone = ('kyz092', 0.0020635076760559794) + +[fips2125552] +centroid = (0.65064446835020473, -1.477509298580548) +description = Eubank city, KY +station = ('ksme', 0.0039665585255043287) +zone = ('kyz067', 0.0030730942211019698) + +[fips2125606] +centroid = (0.64341503533576394, -1.4519851323604851) +description = Evarts city, KY +station = ('ki35', 0.0023180805636423127) +zone = ('kyz088', 0.00037940855913150138) + +[fips2125786] +centroid = (0.67069083144642105, -1.463669169224791) +description = Ewing city, KY +station = ('kiob', 0.0066710502257638091) +zone = ('kyz044', 0.0024756412545806918) + +[fips2125876] +centroid = (0.66133143351943136, -1.456374042017305) +description = Ezel CDP, KY +station = ('kjkl', 0.0056587564782681413) +zone = ('kyz060', 0.0023026910582330759) + +[fips2126020] +centroid = (0.6620259174820925, -1.4902689469562731) +description = Fairfield city, KY +station = ('ksdf', 0.0064899192264416834) +zone = ('kyz038', 0.0019395281923985247) + +[fips2126182] +centroid = (0.64301814746386032, -1.5238603740449044) +description = Fairview CDP, KY +station = ('khop', 0.0040485563987159032) +zone = ('kyz022', 0.0018428095715172091) + +[fips2126236] +centroid = (0.68066325881988121, -1.474512672974629) +description = Fairview city, KY +station = ('kluk', 0.0019789616929449024) +zone = ('kyz092', 0.0013326279805101133) + +[fips2126434] +centroid = (0.67494700881362701, -1.4718872265407315) +description = Falmouth city, KY +station = ('kluk', 0.0075627868432775408) +zone = ('kyz096', 0.00056105345971057131) + +[fips2126452] +centroid = (0.64229406271708556, -1.5497420360556535) +description = Fancy Farm CDP, KY +station = ('kpah', 0.0043667188329281443) +zone = ('kyz006', 0.0024103278256198363) + +[fips2126528] +centroid = (0.64646990257882209, -1.545888645773223) +description = Farley CDP, KY +station = ('kpah', 0.0027049883568062445) +zone = ('kyz005', 0.0019625711440875156) + +[fips2126560] +centroid = (0.66563927263249623, -1.4581211165985513) +description = Farmers CDP, KY +station = ('kiob', 0.0061886339241070546) +zone = ('kyz052', 0.0019689188742482364) + +[fips2126614] +centroid = (0.63999911183034575, -1.5451150634888615) +description = Farmington CDP, KY +station = ('kcey', 0.0023655313165620541) +zone = ('kyz006', 0.0019557891874408184) + +[fips2127010] +centroid = (0.64703298070210058, -1.4764197593416981) +description = Ferguson city, KY +station = ('ksme', 0.00044368224108529548) +zone = ('kyz079', 0.00059301350881664559) + +[fips2127262] +centroid = (0.6686041157927366, -1.4929802635893688) +description = Fincastle city, KY +station = ('klou', 0.002156420285247197) +zone = ('kyz031', 0.0020392667235224161) + +[fips2127730] +centroid = (0.64288265755402807, -1.4619158289115299) +description = Flat Lick CDP, KY +station = ('k1a6', 0.0039227828935841091) +zone = ('kyz086', 0.0016199778428573216) + +[fips2127802] +centroid = (0.67235749870902795, -1.4437837778454861) +description = Flatwoods city, KY +station = ('khts', 0.0036114458506382196) +zone = ('ohz087', 0.002857094055405181) + +[fips2127846] +centroid = (0.64924635489960214, -1.4434383946398088) +description = Fleming-Neon city, KY +station = ('klnp', 0.0044444585241980869) +zone = ('kyz118', 0.0025177919256501157) + +[fips2127856] +centroid = (0.67061056375412187, -1.4614390573197626) +description = Flemingsburg city, KY +station = ('kiob', 0.0072348280239215761) +zone = ('kyz044', 0.0010591644810373294) + +[fips2127982] +centroid = (0.68045533774609124, -1.4773691311883204) +description = Florence city, KY +station = ('kcvg', 0.0011276701782017822) +zone = ('kyz091', 0.0011378282331177231) + +[fips2128270] +centroid = (0.65685192382114022, -1.513520642130362) +description = Fordsville city, KY +station = ('kowb', 0.0064583907246112049) +zone = ('kyz026', 0.0032761036565858406) + +[fips2128342] +centroid = (0.6670046437063315, -1.4937108758675461) +description = Forest Hills city, KY +station = ('klou', 0.0011795948633669469) +zone = ('kyz030', 0.0011635544212435539) + +[fips2128486] +centroid = (0.63975918141807397, -1.5265708354666665) +description = Fort Campbell North CDP, KY +station = ('khop', 0.00051351462387274802) +zone = ('tnz006', 0.0030035320071544009) + +[fips2128540] +centroid = (0.66132747162202932, -1.5004099731354759) +description = Fort Knox CDP, KY +station = ('kftk', 0.00015246574695138509) +zone = ('kyz028', 0.0033753727930850423) + +[fips2128558] +centroid = (0.68148890427582964, -1.4757794503990189) +description = Fort Mitchell city, KY +station = ('kcvg', 0.001502213612819437) +zone = ('kyz092', 0.001998778795988154) + +[fips2128594] +centroid = (0.68210914193211092, -1.4739859151530845) +description = Fort Thomas city, KY +station = ('kluk', 0.00058609944303807983) +zone = ('ohz077', 0.0023204569205401049) + +[fips2128612] +centroid = (0.68147698367703857, -1.4754327756496954) +description = Fort Wright city, KY +station = ('kluk', 0.0018745527299993011) +zone = ('kyz092', 0.0019631237826563388) + +[fips2128630] +centroid = (0.6771897219958547, -1.4697979103464616) +description = Foster city, KY +station = ('kluk', 0.005917827493807367) +zone = ('kyz097', 0.0025657691947928809) + +[fips2128666] +centroid = (0.64093209503529169, -1.5002118608120822) +description = Fountain Run city, KY +station = ('kglw', 0.0053925030255105293) +zone = ('kyz073', 0.0033189513768271716) + +[fips2128785] +centroid = (0.66401812355678136, -1.4955818164658066) +description = Fox Chase city, KY +station = ('ksdf', 0.0024775077825435676) +zone = ('kyz029', 0.0013186790770045032) + +[fips2128882] +centroid = (0.68254154725429239, -1.4787775769880949) +description = Francisville CDP, KY +station = ('kcvg', 0.0012904089974995559) +zone = ('kyz091', 0.0023867390840446238) + +[fips2128900] +centroid = (0.66658751001510474, -1.4811975807157403) +description = Frankfort city, KY +station = ('kfft', 0.00048916191568009403) +zone = ('kyz035', 0.00082368867819387209) + +[fips2128918] +centroid = (0.64086311962325293, -1.5108277561741674) +description = Franklin city, KY +station = ('kbwg', 0.0047916917856039463) +zone = ('kyz072', 0.00047787435230037636) + +[fips2129080] +centroid = (0.64939914102232177, -1.5369670462358034) +description = Fredonia city, KY +station = ('k2i0', 0.0095697497219366361) +zone = ('kyz010', 0.0025760060171352633) + +[fips2129134] +centroid = (0.65557982314253171, -1.4338118566175091) +description = Freeburn CDP, KY +station = ('ki16', 0.0082183215436159723) +zone = ('wvz024', 0.0028794116208889684) + +[fips2129260] +centroid = (0.66241200176592607, -1.4594940973079251) +description = Frenchburg city, KY +station = ('kiob', 0.0052742501778452137) +zone = ('kyz060', 0.00039067441579874302) + +[fips2129566] +centroid = (0.63729535247291114, -1.5512932148816561) +description = Fulton city, KY +station = ('kcey', 0.0077518889520690219) +zone = ('kyz002', 0.0031444958227606862) + +[fips2129872] +centroid = (0.63951291546061761, -1.497411200774577) +description = Gamaliel city, KY +station = ('kglw', 0.0071613894180053289) +zone = ('kyz075', 0.0016578269664508862) + +[fips2130232] +centroid = (0.67381439484883776, -1.451798225050889) +description = Garrison CDP, KY +station = ('khts', 0.009595866696793371) +zone = ('kyz100', 0.0029802270183566372) + +[fips2130700] +centroid = (0.66714898243547138, -1.4756472766147655) +description = Georgetown city, KY +station = ('klex', 0.0034164585338608807) +zone = ('kyz036', 0.0012615781744911648) + +[fips2130718] +centroid = (0.67467311429411136, -1.4654509933114446) +description = Germantown city, KY +station = ('kluk', 0.0098930863269901855) +zone = ('kyz097', 0.001809537079787316) + +[fips2130808] +centroid = (0.67602090990237906, -1.4846203459118261) +description = Ghent city, KY +station = ('kcvg', 0.0077132255959461724) +zone = ('kyz089', 0.0014098023802622721) + +[fips2130880] +centroid = (0.64620435073313121, -1.5413128113535144) +description = Gilbertsville CDP, KY +station = ('kpah', 0.0063674691104116119) +zone = ('kyz008', 0.0024811526401459258) + +[fips2131114] +centroid = (0.64585633208028348, -1.4996894488603751) +description = Glasgow city, KY +station = ('kglw', 0.0006071038039050995) +zone = ('kyz074', 0.00069331581120554925) + +[fips2131204] +centroid = (0.67587857830187892, -1.4804454485278857) +description = Glencoe city, KY +station = ('kcvg', 0.0060583638958581253) +zone = ('kyz090', 0.00074117443644722487) + +[fips2131348] +centroid = (0.66847960400389939, -1.4948884495138668) +description = Glenview city, KY +station = ('klou', 0.0012018854822535977) +zone = ('kyz030', 0.0019908077720086053) + +[fips2131402] +centroid = (0.66837687392412704, -1.4946708593160207) +description = Glenview Hills city, KY +station = ('klou', 0.0011470427536799854) +zone = ('kyz030', 0.0019067109134550421) + +[fips2131420] +centroid = (0.66829911950595067, -1.4945812715655158) +description = Glenview Manor city, KY +station = ('klou', 0.0011015872840264285) +zone = ('kyz030', 0.0018423705820450871) + +[fips2131870] +centroid = (0.66834606886282921, -1.493819662239823) +description = Goose Creek city, KY +station = ('klou', 0.0014885757231338375) +zone = ('kyz030', 0.0020869456039847071) + +[fips2131960] +centroid = (0.67026624519928846, -1.4937177001049213) +description = Goshen city, KY +station = ('klou', 0.00317856054660636) +zone = ('kyz031', 0.0018507752882893616) + +[fips2132032] +centroid = (0.6436671481462144, -1.5300201471206756) +description = Gracey CDP, KY +station = ('khop', 0.0043616980573270318) +zone = ('kyz017', 0.0024326948508466869) + +[fips2132212] +centroid = (0.64585448203127638, -1.5399361130928337) +description = Grand Rivers city, KY +station = ('kcey', 0.0062774895595609755) +zone = ('kyz008', 0.0025165214137890558) + +[fips2132428] +centroid = (0.67148785350263673, -1.4825952229274446) +description = Gratz city, KY +station = ('kfft', 0.0051027523782594883) +zone = ('kyz094', 0.0018083994458952539) + +[fips2132523] +centroid = (0.66799407085928708, -1.4942923846677256) +description = Graymoor-Devondale city, KY +station = ('klou', 0.00097730675699359373) +zone = ('kyz030', 0.001612537492877547) + +[fips2132572] +centroid = (0.66899983429404131, -1.447375351286825) +description = Grayson city, KY +station = ('khts', 0.0052183262489616539) +zone = ('kyz102', 0.0016716999834042591) + +[fips2132968] +centroid = (0.65029777614758855, -1.4921915842069775) +description = Greensburg city, KY +station = ('kglw', 0.0075011479166277248) +zone = ('kyz064', 0.00079331150583906529) + +[fips2132986] +centroid = (0.66875243387257122, -1.4942558723797739) +description = Green Spring city, KY +station = ('klou', 0.0016206490228716907) +zone = ('kyz030', 0.0023425103071082524) + +[fips2133004] +centroid = (0.67322513678677942, -1.445634559890886) +description = Greenup city, KY +station = ('khts', 0.0052415002937494463) +zone = ('kyz101', 0.0013630118865171495) + +[fips2133022] +centroid = (0.64948211397496158, -1.5214802161840824) +description = Greenville city, KY +station = ('k2i0', 0.0039899756318531694) +zone = ('kyz021', 0.00045216568354093005) + +[fips2133562] +centroid = (0.63963966127089744, -1.5214723622024482) +description = Guthrie city, KY +station = ('kckv', 0.0034450621632651775) +zone = ('kyz022', 0.0032636371322214081) + +[fips2134390] +centroid = (0.65304703623862259, -1.5267902408069349) +description = Hanson city, KY +station = ('k2i0', 0.001540702643930577) +zone = ('kyz016', 0.0020740360168852402) + +[fips2134534] +centroid = (0.64167134669326642, -1.5411636904222239) +description = Hardin city, KY +station = ('kcey', 0.0020041972983177135) +zone = ('kyz008', 0.0020999007792334825) + +[fips2134552] +centroid = (0.65930266279691319, -1.5089447553507758) +description = Hardinsburg city, KY +station = ('kftk', 0.0070896930750713929) +zone = ('kyz024', 0.0003723728219640238) + +[fips2134660] +centroid = (0.65020773461147818, -1.4973761894697817) +description = Hardyville CDP, KY +station = ('kglw', 0.0044779006311888095) +zone = ('kyz063', 0.001499105059717196) + +[fips2134732] +centroid = (0.64304073202438117, -1.454139200270004) +description = Harlan city, KY +station = ('ki35', 0.00065374444061346644) +zone = ('kyz088', 0.0013906766594983498) + +[fips2134966] +centroid = (0.65914176089317189, -1.4808536461333421) +description = Harrodsburg city, KY +station = ('kdvk', 0.0034153805394543379) +zone = ('kyz047', 0.00087454087513334831) + +[fips2135020] +centroid = (0.65360473874780489, -1.5165515110962053) +description = Hartford city, KY +station = ('kowb', 0.0063450464522751115) +zone = ('kyz026', 0.00078745717635570194) + +[fips2135200] +centroid = (0.6614347570111494, -1.5140362647512788) +description = Hawesville city, KY +station = ('kowb', 0.0063941979474184093) +zone = ('kyz023', 0.0010605076556324711) + +[fips2135362] +centroid = (0.65010558049035894, -1.4519362631414292) +description = Hazard city, KY +station = ('kjkl', 0.0061059915674912891) +zone = ('kyz115', 0.00044566593432156752) + +[fips2135380] +centroid = (0.63714136207300764, -1.5415620269174064) +description = Hazel city, KY +station = ('kcey', 0.0027406018348164274) +zone = ('kyz009', 0.0021484137695989901) + +[fips2135398] +centroid = (0.65978334392620497, -1.4559499444623629) +description = Hazel Green CDP, KY +station = ('kjkl', 0.004086620816366425) +zone = ('kyz108', 0.0015004485629262502) + +[fips2135542] +centroid = (0.6817922250465337, -1.4784384071545549) +description = Hebron CDP, KY +station = ('kcvg', 0.00061338548872403968) +zone = ('kyz091', 0.0016588878439502091) + +[fips2135545] +centroid = (0.66409622704080817, -1.4951872149752232) +description = Hebron Estates city, KY +station = ('ksdf', 0.0024959023493560054) +zone = ('kyz029', 0.0014468219548739033) + +[fips2135866] +centroid = (0.66043653339876385, -1.5285557809716672) +description = Henderson city, KY +station = ('kehr', 0.0014853746214430004) +zone = ('kyz018', 0.00077598902343211913) + +[fips2135902] +centroid = (0.64635483302123808, -1.5471940473339596) +description = Hendron CDP, KY +station = ('kpah', 0.0016826169145065161) +zone = ('kyz005', 0.00097374450933834789) + +[fips2136102] +centroid = (0.66486532382899199, -1.4942020464256422) +description = Heritage Creek city, KY +station = ('ksdf', 0.0022870601944934093) +zone = ('kyz030', 0.0017555491831854363) + +[fips2136298] +centroid = (0.63820819457828926, -1.556554946244106) +description = Hickman city, KY +station = ('kcir', 0.0087024765994069189) +zone = ('kyz001', 0.00022354822688426377) + +[fips2136374] +centroid = (0.66824655018888046, -1.4934411526849429) +description = Hickory Hill city, KY +station = ('klou', 0.0016533563191559674) +zone = ('kyz030', 0.0021575061002136087) + +[fips2136460] +centroid = (0.66028884363745999, -1.4783760290870884) +description = High Bridge CDP, KY +station = ('klex', 0.0038018798122561107) +zone = ('kyz048', 0.0018450659472609521) + +[fips2136604] +centroid = (0.68129793034907649, -1.4740470191301969) +description = Highland Heights city, KY +station = ('kluk', 0.0012495325768471237) +zone = ('kyz093', 0.0018746523163248017) + +[fips2136865] +centroid = (0.66846522249086293, -1.4944203347551892) +description = Hills and Dales city, KY +station = ('klou', 0.0013060049063780665) +zone = ('kyz030', 0.0020320504634496373) + +[fips2136982] +centroid = (0.66383639987506371, -1.4952193813933372) +description = Hillview city, KY +station = ('ksdf', 0.0027317516623291027) +zone = ('kyz029', 0.0011904621699363612) + +[fips2137108] +centroid = (0.65161865877879044, -1.4483073222008052) +description = Hindman city, KY +station = ('kjkl', 0.0063479398238235401) +zone = ('kyz113', 0.00050971682000785503) + +[fips2137234] +centroid = (0.64751837422037273, -1.4977618374213026) +description = Hiseville CDP, KY +station = ('kglw', 0.002264632655735573) +zone = ('kyz074', 0.002866847071222148) + +[fips2137396] +centroid = (0.65566869530804317, -1.4963614201360875) +description = Hodgenville city, KY +station = ('kftk', 0.0066315261179187603) +zone = ('kyz053', 0.00063535397321508205) + +[fips2137576] +centroid = (0.66588929104784444, -1.494428886868524) +description = Hollow Creek city, KY +station = ('klou', 0.0015225817384580131) +zone = ('kyz030', 0.00077121307932978046) + +[fips2137630] +centroid = (0.66483987692849789, -1.4965859043844789) +description = Hollyvilla city, KY +station = ('ksdf', 0.0015978424047185182) +zone = ('kyz030', 0.002051454771573924) + +[fips2137918] +centroid = (0.64296679987726668, -1.5267013511881309) +description = Hopkinsville city, KY +station = ('khop', 0.0030353710411393313) +zone = ('kyz017', 0.00098524553722338518) + +[fips2138008] +centroid = (0.64877209658195778, -1.4994574422429074) +description = Horse Cave city, KY +station = ('kglw', 0.0025133344623716851) +zone = ('kyz063', 0.0022673184258771933) + +[fips2138170] +centroid = (0.66697453677673457, -1.4942546331960049) +description = Houston Acres city, KY +station = ('klou', 0.00078502453839589031) +zone = ('kyz030', 0.00078338492667374309) + +[fips2138670] +centroid = (0.66459434400932726, -1.4956284516634197) +description = Hunters Hollow city, KY +station = ('ksdf', 0.0019116735727846771) +zone = ('kyz029', 0.0018931915456043087) + +[fips2138814] +centroid = (0.66733215474046814, -1.4937718402183182) +description = Hurstbourne city, KY +station = ('klou', 0.0010951630240312196) +zone = ('kyz030', 0.0013033072340701991) + +[fips2138818] +centroid = (0.6670684180371993, -1.4938387386885472) +description = Hurstbourne Acres city, KY +station = ('klou', 0.0010670678869280658) +zone = ('kyz030', 0.0011060613965303866) + +[fips2138836] +centroid = (0.65409418142994158, -1.4803306756762744) +description = Hustonville city, KY +station = ('kdvk', 0.001913062216054939) +zone = ('kyz067', 0.0021938005731751507) + +[fips2138908] +centroid = (0.64853652949281604, -1.4551984929529169) +description = Hyden city, KY +station = ('ki35', 0.00522604228157537) +zone = ('kyz117', 0.0011239961586796889) + +[fips2139142] +centroid = (0.67987213597653717, -1.4756655153054488) +description = Independence city, KY +station = ('kcvg', 0.0023126533641550811) +zone = ('kyz092', 0.00042078486324155734) + +[fips2139304] +centroid = (0.66825546882135822, -1.4952388767210822) +description = Indian Hills city, KY +station = ('klou', 0.00095965433085782605) +zone = ('kyz030', 0.0017699815375126159) + +[fips2139430] +centroid = (0.66094470346377454, -1.440591291390908) +description = Inez city, KY +station = ('kk22', 0.002459951193754922) +zone = ('kyz119', 0.0012378739276600952) + +[fips2139646] +centroid = (0.65792685465415113, -1.4655240527939331) +description = Irvine city, KY +station = ('ki39', 0.0051295172426912275) +zone = ('kyz058', 8.9832138154826829e-05) + +[fips2139664] +centroid = (0.66109712306735113, -1.5059665604217578) +description = Irvington city, KY +station = ('kftk', 0.004408685396391325) +zone = ('kyz025', 0.0018544243432632422) + +[fips2139700] +centroid = (0.6535031082254612, -1.5210130264499084) +description = Island city, KY +station = ('k2i0', 0.0037921170075480531) +zone = ('kyz020', 0.0021998717333606421) + +[fips2139952] +centroid = (0.65563703503541215, -1.4551633769283665) +description = Jackson city, KY +station = ('kjkl', 0.00086293372360251306) +zone = ('kyz112', 0.0010347500867740891) + +[fips2140114] +centroid = (0.6456747480249061, -1.4847265491968102) +description = Jamestown city, KY +station = ('kekq', 0.0038322359348846938) +zone = ('kyz078', 0.00015063563154708984) + +[fips2140204] +centroid = (0.64945198959207218, -1.4510424276716052) +description = Jeff CDP, KY +station = ('ki35', 0.0068575138749901289) +zone = ('kyz115', 0.0012913918682800098) + +[fips2140222] +centroid = (0.66681241314251682, -1.4934726384246488) +description = Jeffersontown city, KY +station = ('klou', 0.0014156311909827132) +zone = ('kyz030', 0.0012729170084969667) + +[fips2140240] +centroid = (0.66241320604310994, -1.4633806488461438) +description = Jeffersonville city, KY +station = ('kiob', 0.002620040214049494) +zone = ('kyz050', 0.0016797518497057482) + +[fips2140312] +centroid = (0.64873937165848283, -1.4422892000471259) +description = Jenkins city, KY +station = ('klnp', 0.0035643467839756417) +zone = ('vaz002', 0.0034196785669962757) + +[fips2141338] +centroid = (0.6559908656346688, -1.4798833652422809) +description = Junction City city, KY +station = ('kdvk', 0.00030688431612715668) +zone = ('kyz055', 0.0012467227985600185) + +[fips2142094] +centroid = (0.68157512354087813, -1.4751499974042872) +description = Kenton Vale city, KY +station = ('kluk', 0.0016356721053945463) +zone = ('kyz092', 0.0020686507130394599) + +[fips2142112] +centroid = (0.64320847561879035, -1.4513078747975412) +description = Kenvir CDP, KY +station = ('ki35', 0.0028601230868480483) +zone = ('kyz088', 0.00089749903910473611) + +[fips2142292] +centroid = (0.64725299690760696, -1.551330879086914) +description = Kevil city, KY +station = ('kpah', 0.001752957883120585) +zone = ('kyz004', 0.0016598848661340529) + +[fips2142598] +centroid = (0.66709857732667377, -1.4952699435817676) +description = Kingsley city, KY +station = ('klou', 0.00021525772917757452) +zone = ('kyz030', 0.00063249189148193786) + +[fips2143264] +centroid = (0.64682717147670543, -1.5378862064330738) +description = Kuttawa city, KY +station = ('kcey', 0.0077856356265026865) +zone = ('kyz011', 0.00084265604366586899) + +[fips2143336] +centroid = (0.64707940646020357, -1.5529077142529208) +description = La Center city, KY +station = ('kpah', 0.0029347461845656243) +zone = ('kyz004', 0.00044290428722508642) + +[fips2143444] +centroid = (0.63984143878572053, -1.529923019547802) +description = LaFayette city, KY +station = ('khop', 0.0022167542773323667) +zone = ('tnz005', 0.0037540277169690402) + +[fips2143480] +centroid = (0.67018880494037736, -1.4900829995777656) +description = La Grange city, KY +station = ('klou', 0.0049255136219133995) +zone = ('kyz031', 0.00099899771243587413) + +[fips2143606] +centroid = (0.68127665478549471, -1.4759950683748102) +description = Lakeside Park city, KY +station = ('kcvg', 0.0013615304256693434) +zone = ('kyz092', 0.001825894022929056) + +[fips2143668] +centroid = (0.66587752752868601, -1.4574471577078938) +description = Lakeview Heights city, KY +station = ('kiob', 0.0067596725967313826) +zone = ('kyz052', 0.0013934993933526613) + +[fips2143840] +centroid = (0.65649465492325709, -1.4762554889525004) +description = Lancaster city, KY +station = ('kdvk', 0.0026518066921566732) +zone = ('kyz056', 0.00076898168817506681) + +[fips2143900] +centroid = (0.66824295481062146, -1.4937390105750883) +description = Langdon Place city, KY +station = ('klou', 0.0014656710463560121) +zone = ('kyz030', 0.0020271283654273282) + +[fips2144146] +centroid = (0.66380920764531759, -1.4818537023414424) +description = Lawrenceburg city, KY +station = ('kfft', 0.0026162445411401338) +zone = ('kyz039', 0.0013013060099440598) + +[fips2144344] +centroid = (0.65567679363577247, -1.4880589237909354) +description = Lebanon city, KY +station = ('kdvk', 0.0067746670926935914) +zone = ('kyz054', 0.00029698498783116022) + +[fips2144362] +centroid = (0.66035521850891332, -1.4961211406579653) +description = Lebanon Junction city, KY +station = ('kftk', 0.0035611690569062717) +zone = ('kyz029', 0.0023724885679415981) + +[fips2144434] +centroid = (0.64668662011204225, -1.5445607818250131) +description = Ledbetter CDP, KY +station = ('kpah', 0.0037591276512675422) +zone = ('kyz005', 0.0030072020265260787) + +[fips2144686] +centroid = (0.65425543239953332, -1.5059417069332093) +description = Leitchfield city, KY +station = ('kftk', 0.0084504983137033349) +zone = ('kyz027', 0.00093841582868011732) + +[fips2145064] +centroid = (0.64554894469242219, -1.5175670658280633) +description = Lewisburg city, KY +station = ('k2i0', 0.0089573142850967319) +zone = ('kyz070', 0.0024385266395248926) + +[fips2145136] +centroid = (0.66201504408085243, -1.5167402684548086) +description = Lewisport city, KY +station = ('kowb', 0.004929672669261218) +zone = ('inz088', 0.0020513152403606205) + +[fips2146027] +centroid = (0.66392598762556865, -1.4740779114579572) +description = Lexington-Fayette urban county, KY +station = ('klex', 0.0019495525169580773) +zone = ('kyz041', 3.7722945145351878e-05) + +[fips2146072] +centroid = (0.65136783751198635, -1.4822763512731052) +description = Liberty city, KY +station = ('kdvk', 0.0050295444414322774) +zone = ('kyz066', 2.923019163645876e-05) + +[fips2146540] +centroid = (0.66713090082442073, -1.4943781326938761) +description = Lincolnshire city, KY +station = ('klou', 0.00064049110621564834) +zone = ('kyz030', 0.00082369310444388682) + +[fips2147062] +centroid = (0.65435920967685701, -1.5207777037068622) +description = Livermore city, KY +station = ('kowb', 0.0043513425629351345) +zone = ('kyz020', 0.0019055326419236155) + +[fips2147098] +centroid = (0.6509585927089786, -1.469830652723229) +description = Livingston city, KY +station = ('kloz', 0.0042648700945576608) +zone = ('kyz068', 0.0018358723530413614) + +[fips2147476] +centroid = (0.64787798185945356, -1.4674934125087133) +description = London city, KY +station = ('kloz', 0.00068230864545792231) +zone = ('kyz080', 0.00053858421522925775) + +[fips2147710] +centroid = (0.65697659268961028, -1.4903941394235187) +description = Loretto city, KY +station = ('kftk', 0.0091023242335773486) +zone = ('kyz054', 0.0023162786743833727) + +[fips2147854] +centroid = (0.66514939361804659, -1.4418449439393233) +description = Louisa city, KY +station = ('khts', 0.0045543119333646661) +zone = ('kyz105', 0.001845113624744213) + +[fips2148006] +centroid = (0.6663331457299192, -1.4951661139445664) +description = Louisville/Jefferson County metro government (balance), KY +station = ('ksdf', 0.00091865344025877623) +zone = ('kyz030', 0.00018743446410962169) + +[fips2148072] +centroid = (0.64520331714064982, -1.5504186653000669) +description = Lovelaceville CDP, KY +station = ('kpah', 0.0017080574632834873) +zone = ('kyz005', 0.0022501049155421709) + +[fips2148234] +centroid = (0.64372696057968037, -1.549265351730349) +description = Lowes CDP, KY +station = ('kpah', 0.0029175302969317958) +zone = ('kyz003', 0.0029023716418357958) + +[fips2148288] +centroid = (0.6431552954364822, -1.4547450389599561) +description = Loyall city, KY +station = ('ki35', 0.00019411232603317691) +zone = ('kyz088', 0.0018592691889307107) + +[fips2148378] +centroid = (0.68224349737792933, -1.4756408014432405) +description = Ludlow city, KY +station = ('kluk', 0.001787955539189502) +zone = ('ohz077', 0.0018467261077386209) + +[fips2148540] +centroid = (0.64514690809922526, -1.4471287362635181) +description = Lynch city, KY +station = ('klnp', 0.0053235054426221205) +zone = ('kyz118', 0.0028611429590987818) + +[fips2148558] +centroid = (0.66781534914388285, -1.4937901487221719) +description = Lyndon city, KY +station = ('klou', 0.0011977390390267844) +zone = ('kyz030', 0.0016476671204841355) + +[fips2148648] +centroid = (0.6663521523654734, -1.4959421047832957) +description = Lynnview city, KY +station = ('ksdf', 0.00031265732517739395) +zone = ('kyz030', 0.00072258047467498173) + +[fips2148810] +centroid = (0.65655411829087251, -1.4341470645536472) +description = McCarr CDP, KY +station = ('kk22', 0.0068452763314933275) +zone = ('wvz024', 0.0019598332485243736) + +[fips2149026] +centroid = (0.66073289030575244, -1.5183164753022846) +description = Maceo CDP, KY +station = ('kowb', 0.0031484178557585449) +zone = ('kyz019', 0.0025451087913189395) + +[fips2149098] +centroid = (0.65237724868487734, -1.5170826671474646) +description = McHenry city, KY +station = ('kowb', 0.0071578308111105359) +zone = ('kyz026', 0.0020179551258280633) + +[fips2149116] +centroid = (0.65328178302301587, -1.465872787031774) +description = McKee city, KY +station = ('ki39', 0.0058748854636400238) +zone = ('kyz069', 0.00030362370828923617) + +[fips2149206] +centroid = (0.65858388385106437, -1.4847455034724866) +description = Mackville city, KY +station = ('kdvk', 0.0049370556880868203) +zone = ('kyz046', 0.0014885212639920364) + +[fips2149278] +centroid = (0.64963036224162596, -1.4428284893326997) +description = McRoberts CDP, KY +station = ('klnp', 0.0045531143645809631) +zone = ('kyz118', 0.0031345222122038138) + +[fips2149368] +centroid = (0.6517240243057334, -1.527223745686545) +description = Madisonville city, KY +station = ('k2i0', 0.0014833342522087691) +zone = ('kyz016', 0.00076573237704609691) + +[fips2149476] +centroid = (0.65373342187355443, -1.4963767441269198) +description = Magnolia CDP, KY +station = ('kglw', 0.008001703009032874) +zone = ('kyz053', 0.0016491864049250464) + +[fips2149656] +centroid = (0.64849919690011593, -1.461885547449008) +description = Manchester city, KY +station = ('kloz', 0.0044553213990055317) +zone = ('kyz116', 0.00063273601846967583) + +[fips2149746] +centroid = (0.6522984819757347, -1.5284814648521172) +description = Manitou CDP, KY +station = ('k2i0', 0.0024797021877858397) +zone = ('kyz016', 0.0012344851446492991) + +[fips2149800] +centroid = (0.66842127510029781, -1.4937934648477504) +description = Manor Creek city, KY +station = ('klou', 0.0015566138702021489) +zone = ('kyz030', 0.0021632468364173271) + +[fips2150034] +centroid = (0.65155682176339236, -1.5372706637124804) +description = Marion city, KY +station = ('kehr', 0.010084131589092505) +zone = ('kyz010', 0.00044766920375890416) + +[fips2150124] +centroid = (0.64288859167348489, -1.492310894914644) +description = Marrowbone CDP, KY +station = ('kglw', 0.0071627559481378554) +zone = ('kyz081', 0.0018103382659710964) + +[fips2150286] +centroid = (0.65565105002930557, -1.4444381715952288) +description = Martin city, KY +station = ('kk22', 0.0036515249974400452) +zone = ('kyz110', 0.00025317843153784247) + +[fips2150412] +centroid = (0.66787430636601519, -1.4949308610146901) +description = Maryhill Estates city, KY +station = ('klou', 0.00060545033462476052) +zone = ('kyz030', 0.0013846063826834416) + +[fips2150520] +centroid = (0.65748500710071611, -1.5192323019206835) +description = Masonville CDP, KY +station = ('kowb', 0.0020591670303870503) +zone = ('kyz019', 0.0012055617675581531) + +[fips2150556] +centroid = (0.6463317946751117, -1.5478654929504942) +description = Massac CDP, KY +station = ('kpah', 0.0011643358261656206) +zone = ('kyz005', 0.00053073251131355434) + +[fips2150898] +centroid = (0.64116301954862309, -1.5471402562864129) +description = Mayfield city, KY +station = ('kcey', 0.0041975053804197511) +zone = ('kyz006', 0.00024386923160712759) + +[fips2150952] +centroid = (0.64812998995014903, -1.444714509575697) +description = Mayking CDP, KY +station = ('klnp', 0.004294764133908867) +zone = ('kyz118', 0.0011292864825905122) + +[fips2151006] +centroid = (0.67229683106422866, -1.4633912429947034) +description = Mays Lick CDP, KY +station = ('kiob', 0.0082828045530491095) +zone = ('kyz099', 0.0013507238023319763) + +[fips2151024] +centroid = (0.67464867968458353, -1.4624721002507257) +description = Maysville city, KY +station = ('kiob', 0.010737652361290576) +zone = ('kyz099', 0.0011158730537370852) + +[fips2151060] +centroid = (0.65506901763035053, -1.445117890072418) +description = Maytown CDP, KY +station = ('kk22', 0.0044225206886747649) +zone = ('kyz110', 0.00085452355735999772) + +[fips2151193] +centroid = (0.66808343171698914, -1.4935735010021216) +description = Meadowbrook Farm city, KY +station = ('klou', 0.0014765519430239571) +zone = ('kyz030', 0.0019644327622896861) + +[fips2151258] +centroid = (0.66817027930056849, -1.4935258535135421) +description = Meadow Vale city, KY +station = ('klou', 0.0015553390373791015) +zone = ('kyz030', 0.0020568052501554728) + +[fips2151294] +centroid = (0.66711849153343905, -1.4946243113848698) +description = Meadowview Estates city, KY +station = ('klou', 0.00046122405901749888) +zone = ('kyz030', 0.00070631750012557467) + +[fips2151438] +centroid = (0.68123956653888984, -1.472551411587578) +description = Melbourne city, KY +station = ('kluk', 0.0013362385150296374) +zone = ('kyz093', 0.0014991631477952612) + +[fips2151564] +centroid = (0.67869058297952212, -1.4704169611788516) +description = Mentor city, KY +station = ('kluk', 0.0043736451152605995) +zone = ('kyz093', 0.0020632786446363317) + +[fips2151924] +centroid = (0.63902556717358316, -1.4612324626962041) +description = Middlesborough city, KY +station = ('k1a6', 0.00021306371324823493) +zone = ('kyz087', 0.002155579654812733) + +[fips2151978] +centroid = (0.66741990989525846, -1.4926351596363718) +description = Middletown city, KY +station = ('klou', 0.0019911574306966219) +zone = ('kyz030', 0.0021051052955192067) + +[fips2152140] +centroid = (0.6659349663143691, -1.4779283521339519) +description = Midway city, KY +station = ('klex', 0.0023891170747894798) +zone = ('kyz040', 0.0021611430220637266) + +[fips2152302] +centroid = (0.66855592725208912, -1.4685704726434115) +description = Millersburg city, KY +station = ('kiob', 0.0048520965593508826) +zone = ('kyz042', 0.0019994696954461254) + +[fips2152464] +centroid = (0.6486214048543405, -1.4442537950130481) +description = Millstone CDP, KY +station = ('klnp', 0.0043515702447269634) +zone = ('kyz118', 0.0016430984293688978) + +[fips2152590] +centroid = (0.67569118230009229, -1.4900975730770198) +description = Milton city, KY +station = ('klou', 0.0092840884854220544) +zone = ('inz079', 0.0015086677207639067) + +[fips2152842] +centroid = (0.66793830758968586, -1.4953866886554334) +description = Mockingbird Valley city, KY +station = ('klou', 0.00066390521590358679) +zone = ('kyz030', 0.0014713143356455997) + +[fips2153076] +centroid = (0.67063927442031712, -1.4812860863621089) +description = Monterey city, KY +station = ('kfft', 0.0042325011512128067) +zone = ('kyz094', 0.0017594714991501794) + +[fips2153130] +centroid = (0.64297938370117358, -1.4809246984871909) +description = Monticello city, KY +station = ('kekq', 0.00027693385343079141) +zone = ('kyz083', 0.00074353848164786316) + +[fips2153328] +centroid = (0.66797942754686279, -1.4936571720864622) +description = Moorland city, KY +station = ('klou', 0.0013666462718675471) +zone = ('kyz030', 0.0018416905016536739) + +[fips2153418] +centroid = (0.66649656090778342, -1.4564917121154746) +description = Morehead city, KY +station = ('kiob', 0.0076494551585317115) +zone = ('kyz052', 0.00043612364522280364) + +[fips2153472] +centroid = (0.65774525314548116, -1.5338486490079728) +description = Morganfield city, KY +station = ('kehr', 0.0035770125677100535) +zone = ('kyz014', 0.00098586862677725118) + +[fips2153490] +centroid = (0.64967270392927934, -1.5130928793839908) +description = Morgantown city, KY +station = ('kbwg', 0.0059146216111288525) +zone = ('kyz061', 0.00032851671256562185) + +[fips2153616] +centroid = (0.64999901068623211, -1.5265966139797187) +description = Mortons Gap city, KY +station = ('k2i0', 0.0022059963017184471) +zone = ('kyz016', 0.0015456675203979278) + +[fips2153976] +centroid = (0.67247401688989106, -1.4667731151264152) +description = Mount Olivet city, KY +station = ('kiob', 0.0082822339430006376) +zone = ('kyz098', 0.00025572853248778991) + +[fips2154084] +centroid = (0.66436530445158815, -1.4651817064611543) +description = Mount Sterling city, KY +station = ('kiob', 0.00048905818515995931) +zone = ('kyz050', 0.00073829889516255625) + +[fips2154174] +centroid = (0.65197140727391101, -1.472068444076966) +description = Mount Vernon city, KY +station = ('ki39', 0.0047995301766526567) +zone = ('kyz068', 0.00041704185829888443) + +[fips2154228] +centroid = (0.66399021574204209, -1.4931199422894059) +description = Mount Washington city, KY +station = ('ksdf', 0.0035074578643467334) +zone = ('kyz029', 0.0023907626070066063) + +[fips2154480] +centroid = (0.66210370680685382, -1.500844036520447) +description = Muldraugh city, KY +station = ('kftk', 0.00071499849794921441) +zone = ('kyz025', 0.0031503001053520279) + +[fips2154570] +centroid = (0.65067403422773351, -1.4992255054386099) +description = Munfordville city, KY +station = ('kglw', 0.0044146594888687576) +zone = ('kyz063', 0.00038898496842546085) + +[fips2154642] +centroid = (0.63901895237571815, -1.5415172766753855) +description = Murray city, KY +station = ('kcey', 0.00097321843577255886) +zone = ('kyz009', 0.00071609477950104966) + +[fips2154660] +centroid = (0.66830318612310768, -1.4937858552122119) +description = Murray Hill city, KY +station = ('klou', 0.0014780424075621704) +zone = ('kyz030', 0.0020615162096699934) + +[fips2155092] +centroid = (0.65246011691776196, -1.5296339232105018) +description = Nebo city, KY +station = ('k2i0', 0.0034088426265780694) +zone = ('kyz016', 0.00190726632838419) + +[fips2155596] +centroid = (0.67079223507596186, -1.4864836245146704) +description = New Castle city, KY +station = ('kfft', 0.0057157574919327455) +zone = ('kyz033', 0.00073523947128628934) + +[fips2155758] +centroid = (0.65727680677424583, -1.4938122096839168) +description = New Haven city, KY +station = ('kftk', 0.0066923207015731553) +zone = ('kyz053', 0.0024878329906609774) + +[fips2155794] +centroid = (0.65669845702001239, -1.4923255207737756) +description = New Hope CDP, KY +station = ('kftk', 0.0079762798338829551) +zone = ('kyz045', 0.003168186208319386) + +[fips2155884] +centroid = (0.68218113676375569, -1.4745751557618503) +description = Newport city, KY +station = ('kluk', 0.00098225137921875228) +zone = ('ohz077', 0.0020510838563433742) + +[fips2156136] +centroid = (0.66135893990844286, -1.4759647345524107) +description = Nicholasville city, KY +station = ('klex', 0.0024908490389348235) +zone = ('kyz048', 0.00041759606136421005) + +[fips2156550] +centroid = (0.66752824248192966, -1.4948137145152964) +description = Norbourne Estates city, KY +station = ('klou', 0.00035988122373101998) +zone = ('kyz030', 0.0010510577425845093) + +[fips2156694] +centroid = (0.64517202338716162, -1.4677446701078303) +description = North Corbin CDP, KY +station = ('kloz', 0.0020933628520768315) +zone = ('kyz080', 0.0025507423335314593) + +[fips2156730] +centroid = (0.66821265589480683, -1.4946348008136745) +description = Northfield city, KY +station = ('klou', 0.0010054831368835682) +zone = ('kyz030', 0.0017495218456946744) + +[fips2156820] +centroid = (0.66571285571376038, -1.4679999594175197) +description = North Middletown city, KY +station = ('kiob', 0.0022934311566169636) +zone = ('kyz042', 0.0018464014077821584) + +[fips2156910] +centroid = (0.64902251642303388, -1.5263922882841876) +description = Nortonville city, KY +station = ('k2i0', 0.0030676685447797365) +zone = ('kyz016', 0.0024436696636583872) + +[fips2156928] +centroid = (0.66762639979906191, -1.4941915220902529) +description = Norwood city, KY +station = ('klou', 0.00083256994619056428) +zone = ('kyz030', 0.0013155615165720339) + +[fips2157030] +centroid = (0.68062199923636413, -1.4779528914632349) +description = Oakbrook CDP, KY +station = ('kcvg', 0.00094771957699840541) +zone = ('kyz091', 0.0007952703589197309) + +[fips2157090] +centroid = (0.64008899628682325, -1.5258162249112743) +description = Oak Grove city, KY +station = ('kckv', 0.0010112915659754977) +zone = ('tnz006', 0.0031480601688897371) + +[fips2157144] +centroid = (0.6465781304457382, -1.5052924619047601) +description = Oakland city, KY +station = ('kbwg', 0.0027431902042531048) +zone = ('kyz062', 0.0028386054942205995) + +[fips2157658] +centroid = (0.66827400421801442, -1.4942310887043955) +description = Old Brownsboro Place city, KY +station = ('klou', 0.0012213294751943376) +zone = ('kyz030', 0.0018916125537929555) + +[fips2157918] +centroid = (0.66856618978809079, -1.4515592022098283) +description = Olive Hill city, KY +station = ('khts', 0.0085293328879403937) +zone = ('kyz102', 0.0016393861509239412) + +[fips2158062] +centroid = (0.65053444279415895, -1.4599175839976291) +description = Oneida CDP, KY +station = ('kjkl', 0.0070947959667959698) +zone = ('kyz116', 0.0021851332751049268) + +[fips2158116] +centroid = (0.65556963041970007, -1.5261057575808876) +description = Onton CDP, KY +station = ('k2i0', 0.0036308024930892186) +zone = ('kyz020', 0.0024973746084837119) + +[fips2158200] +centroid = (0.66886970254501266, -1.4926738710391811) +description = Orchard Grass Hills city, KY +station = ('klou', 0.0025093994838334024) +zone = ('kyz031', 0.0016818806461196955) + +[fips2158620] +centroid = (0.65898696764181242, -1.5204854308703228) +description = Owensboro city, KY +station = ('kowb', 0.0007430518014870267) +zone = ('kyz019', 0.00060715784878146058) + +[fips2158692] +centroid = (0.6725350336005409, -1.4807809357167041) +description = Owenton city, KY +station = ('kfft', 0.0061606180083934297) +zone = ('kyz094', 0.00031067521080896203) + +[fips2158710] +centroid = (0.66563279746097137, -1.4620040553052183) +description = Owingsville city, KY +station = ('kiob', 0.0032852174925397091) +zone = ('kyz051', 0.0003492883271390324) + +[fips2158836] +centroid = (0.64700912205122574, -1.5471379873583855) +description = Paducah city, KY +station = ('kpah', 0.0017404496469809951) +zone = ('kyz005', 0.00099537384633499701) + +[fips2158962] +centroid = (0.65994473452213676, -1.4452059244798885) +description = Paintsville city, KY +station = ('kk22', 0.0025443757420340277) +zone = ('kyz107', 0.00071159558569592555) + +[fips2159196] +centroid = (0.66691793574909231, -1.4707655208837673) +description = Paris city, KY +station = ('kiob', 0.0047561785666268347) +zone = ('kyz042', 0.00071196666710201487) + +[fips2159232] +centroid = (0.64740368863522413, -1.5018222586596048) +description = Park City city, KY +station = ('kglw', 0.001701640693752646) +zone = ('kyz074', 0.0027435692737831719) + +[fips2159255] +centroid = (0.68184976855197199, -1.4753736788012228) +description = Park Hills city, KY +station = ('kluk', 0.0016733038216609482) +zone = ('ohz077', 0.0022430333370455705) + +[fips2159322] +centroid = (0.66691310118706437, -1.4964122790304903) +description = Parkway Village city, KY +station = ('ksdf', 0.00049258811744579752) +zone = ('kyz030', 0.0011573629687026603) + +[fips2159466] +centroid = (0.64162177934250986, -1.4569006602125094) +description = Pathfork CDP, KY +station = ('ki35', 0.0023431500092263033) +zone = ('kyz087', 0.0028470648738577334) + +[fips2159592] +centroid = (0.64834847026591358, -1.4428848111076613) +description = Payne Gap CDP, KY +station = ('klnp', 0.0034510647619217369) +zone = ('vaz002', 0.0031006302723171407) + +[fips2159934] +centroid = (0.64186066255723018, -1.5246863336601182) +description = Pembroke city, KY +station = ('khop', 0.0027525223604027474) +zone = ('kyz017', 0.0027697042291679546) + +[fips2160258] +centroid = (0.65710504892255706, -1.482685334276725) +description = Perryville city, KY +station = ('kdvk', 0.0027873306961126057) +zone = ('kyz055', 0.0012517463739296971) + +[fips2160312] +centroid = (0.68145129243044922, -1.4808637515897112) +description = Petersburg CDP, KY +station = ('kcvg', 0.0024496931283693028) +zone = ('kyz091', 0.0020738019423150404) + +[fips2160492] +centroid = (0.66867349263050335, -1.492074682053679) +description = Pewee Valley city, KY +station = ('klou', 0.0027894015813763285) +zone = ('kyz031', 0.0016246130012535561) + +[fips2160600] +centroid = (0.65465656142151929, -1.433972304735645) +description = Phelps CDP, KY +station = ('kk22', 0.007819584643191416) +zone = ('kyz120', 0.0033319214998926991) + +[fips2160852] +centroid = (0.65414188127839856, -1.4403654108791151) +description = Pikeville city, KY +station = ('kk22', 0.0049748050285837531) +zone = ('kyz120', 0.001824697778811871) + +[fips2161122] +centroid = (0.63993538985935527, -1.4737516221542968) +description = Pine Knot CDP, KY +station = ('kekq', 0.0066972763563671357) +zone = ('kyz084', 0.001393771128308982) + +[fips2161248] +centroid = (0.64149506843881499, -1.4608451915884793) +description = Pineville city, KY +station = ('k1a6', 0.0025728724641092301) +zone = ('kyz087', 0.00056054306672266812) + +[fips2161356] +centroid = (0.6643478860656532, -1.4954699408607537) +description = Pioneer Village city, KY +station = ('ksdf', 0.0021841658220362573) +zone = ('kyz029', 0.0016543232703746084) + +[fips2161374] +centroid = (0.65160548154293785, -1.4464127498444725) +description = Pippa Passes city, KY +station = ('kjkl', 0.0075248008657805183) +zone = ('kyz113', 0.0011710278452294165) + +[fips2161536] +centroid = (0.64363894362550222, -1.5082443721752432) +description = Plano CDP, KY +station = ('kbwg', 0.0015511280771798267) +zone = ('kyz071', 0.0020241529974350642) + +[fips2161554] +centroid = (0.66816471170025449, -1.4938898942889232) +description = Plantation city, KY +station = ('klou', 0.0013247965133606555) +zone = ('kyz030', 0.001900857683049555) + +[fips2161734] +centroid = (0.64017270227774903, -1.4683103836782794) +description = Pleasant View CDP, KY +station = ('k1a6', 0.005601739424152148) +zone = ('kyz085', 0.0013997823269634223) + +[fips2161788] +centroid = (0.66936439866819786, -1.4854674240109891) +description = Pleasureville city, KY +station = ('kfft', 0.0041233116358037952) +zone = ('kyz033', 0.0016902187744881358) + +[fips2161860] +centroid = (0.64611621160590538, -1.5076564405634163) +description = Plum Springs city, KY +station = ('kbwg', 0.0010424068252386366) +zone = ('kyz071', 0.00073713398628761414) + +[fips2162370] +centroid = (0.66633199381261277, -1.495625100631256) +description = Poplar Hills city, KY +station = ('ksdf', 0.00056101202290393022) +zone = ('kyz030', 0.00048684562171637127) + +[fips2162652] +centroid = (0.64994085631555565, -1.5211318659186768) +description = Powderly city, KY +station = ('k2i0', 0.0039535641221422639) +zone = ('kyz021', 0.00043919800248866603) + +[fips2162940] +centroid = (0.6580177688548875, -1.4442917908308641) +description = Prestonsburg city, KY +station = ('kk22', 0.0018077085991809994) +zone = ('kyz110', 0.0025223918105072994) + +[fips2162958] +centroid = (0.67510400117984382, -1.4868820133697305) +description = Prestonville city, KY +station = ('kfft', 0.009553613398779635) +zone = ('kyz089', 0.00096022684987190441) + +[fips2163138] +centroid = (0.64763011019908523, -1.5338802918273113) +description = Princeton city, KY +station = ('k2i0', 0.0080429241541530184) +zone = ('kyz013', 0.00071762960723724455) + +[fips2163264] +centroid = (0.66926189548122827, -1.4941861290228642) +description = Prospect city, KY +station = ('klou', 0.0021093638361181413) +zone = ('kyz031', 0.0024068609902067645) + +[fips2163372] +centroid = (0.65273708321676083, -1.5315554958103623) +description = Providence city, KY +station = ('k2i0', 0.0049595628577084466) +zone = ('kyz015', 0.0022867866427440531) + +[fips2163426] +centroid = (0.64037617276194647, -1.5483255093814425) +description = Pryorsburg CDP, KY +station = ('kcey', 0.0049638567259249131) +zone = ('kyz006', 0.0010251498952515113) + +[fips2163804] +centroid = (0.67948962961767012, -1.4808955689419749) +description = Rabbit Hash CDP, KY +station = ('kcvg', 0.0032205405983679928) +zone = ('kyz091', 0.0017740318035594025) + +[fips2163858] +centroid = (0.6726041660922123, -1.4440640777233564) +description = Raceland city, KY +station = ('khts', 0.0039414581014380248) +zone = ('ohz087', 0.0029554486201881251) + +[fips2163912] +centroid = (0.66008408160961607, -1.4998366673827808) +description = Radcliff city, KY +station = ('kftk', 0.0014651868331928717) +zone = ('kyz028', 0.0021693225350609517) + +[fips2164092] +centroid = (0.65776214793264043, -1.4652083227322472) +description = Ravenna city, KY +station = ('ki39', 0.0053404914819107589) +zone = ('kyz058', 0.00021572749584476773) + +[fips2164146] +centroid = (0.65558586198174362, -1.4911393950141201) +description = Raywick city, KY +station = ('kftk', 0.0094019476052658885) +zone = ('kyz054', 0.0023085720383592919) + +[fips2164632] +centroid = (0.64590865705125833, -1.5451123931351058) +description = Reidland CDP, KY +station = ('kpah', 0.0034002010659631879) +zone = ('kyz005', 0.0026905210263925739) + +[fips2165208] +centroid = (0.66766996321719174, -1.4947209677188453) +description = Richlawn city, KY +station = ('klou', 0.00051041375996071321) +zone = ('kyz030', 0.0012040200912980233) + +[fips2165226] +centroid = (0.65835849203146179, -1.47115527035903) +description = Richmond city, KY +station = ('ki39', 0.0016798832048723067) +zone = ('kyz057', 0.00018009317322910598) + +[fips2165559] +centroid = (0.66971634431186255, -1.494072368462219) +description = River Bluff city, KY +station = ('klou', 0.0025663775871134012) +zone = ('kyz031', 0.0021816807041843871) + +[fips2165766] +centroid = (0.66817425865126301, -1.4950816923686476) +description = Riverwood city, KY +station = ('klou', 0.00087916804347688393) +zone = ('kyz030', 0.0016822005953145362) + +[fips2165874] +centroid = (0.65761527847608503, -1.5277674855617114) +description = Robards city, KY +station = ('kehr', 0.0031654329458871778) +zone = ('kyz018', 0.0021180388098068466) + +[fips2165982] +centroid = (0.64941310365633764, -1.5165579513611451) +description = Rochester city, KY +station = ('kbwg', 0.0078548889273591313) +zone = ('kyz061', 0.0029299061124755379) + +[fips2166162] +centroid = (0.64283183356620999, -1.4679557502275666) +description = Rockholds CDP, KY +station = ('kloz', 0.0044314811596837264) +zone = ('kyz085', 0.0013835108822420452) + +[fips2166216] +centroid = (0.65160089132700516, -1.5183012036713297) +description = Rockport city, KY +station = ('k2i0', 0.0056459600134175347) +zone = ('kyz021', 0.0029313603200250482) + +[fips2166486] +centroid = (0.66791875990206351, -1.4952382484025513) +description = Rolling Fields city, KY +station = ('klou', 0.0006238383975594342) +zone = ('kyz030', 0.0014348377923572287) + +[fips2166504] +centroid = (0.66815584542765449, -1.4936249184018855) +description = Rolling Hills city, KY +station = ('klou', 0.0014831961255857135) +zone = ('kyz030', 0.0020007897534218121) + +[fips2166846] +centroid = (0.65371279208179589, -1.5138349061154761) +description = Rosine CDP, KY +station = ('kowb', 0.0077559714185906972) +zone = ('kyz026', 0.0016126926368670907) + +[fips2167458] +centroid = (0.67214978707474826, -1.4434151294008799) +description = Russell city, KY +station = ('khts', 0.0032666690797990669) +zone = ('kyz103', 0.0026552711801191347) + +[fips2167494] +centroid = (0.64665661790220041, -1.4849347495232805) +description = Russell Springs city, KY +station = ('kekq', 0.0046289141139117347) +zone = ('kyz078', 0.0010839509894449506) + +[fips2167512] +centroid = (0.6429708839477164, -1.5166139589768417) +description = Russellville city, KY +station = ('kckv', 0.0082620113694607967) +zone = ('kyz070', 0.00042307267538588191) + +[fips2167602] +centroid = (0.6803176661746938, -1.4743809355226882) +description = Ryland Heights city, KY +station = ('kluk', 0.0022534949584752163) +zone = ('kyz092', 0.0011180896444208856) + +[fips2167638] +centroid = (0.65304104975928823, -1.5230990614251847) +description = Sacramento city, KY +station = ('k2i0', 0.0021026942375549609) +zone = ('kyz020', 0.0019659249380363226) + +[fips2167656] +centroid = (0.67006176242412474, -1.4754391111948801) +description = Sadieville city, KY +station = ('klex', 0.0063153202196654656) +zone = ('kyz036', 0.0018658074800821591) + +[fips2167710] +centroid = (0.64911346553035532, -1.5281049100659996) +description = St. Charles city, KY +station = ('k2i0', 0.0035942265761606499) +zone = ('kyz016', 0.002055958687685639) + +[fips2167944] +centroid = (0.66757681499501276, -1.4946608411261142) +description = St. Matthews city, KY +station = ('klou', 0.00048479521616232892) +zone = ('kyz030', 0.0011246777935931226) + +[fips2167998] +centroid = (0.66721617761167318, -1.4942965210980528) +description = St. Regis Park city, KY +station = ('klou', 0.00068735149625771515) +zone = ('kyz030', 0.00093030870338795348) + +[fips2168052] +centroid = (0.65039109890269275, -1.5400992141114325) +description = Salem city, KY +station = ('kpah', 0.0082136631428318917) +zone = ('kyz007', 0.0018330944867610496) + +[fips2168160] +centroid = (0.66531050496129818, -1.4593688524808019) +description = Salt Lick city, KY +station = ('kiob', 0.0051591664526191659) +zone = ('kyz051', 0.0018007213301614586) + +[fips2168214] +centroid = (0.6619251770776674, -1.4811421490586967) +description = Salvisa CDP, KY +station = ('klex', 0.0040805870812314357) +zone = ('kyz047', 0.0020029479554647413) + +[fips2168232] +centroid = (0.65871809967054273, -1.4497338670649225) +description = Salyersville city, KY +station = ('kjkl', 0.0044574102496580019) +zone = ('kyz109', 0.00061399169500851996) + +[fips2168358] +centroid = (0.67465227506284264, -1.482600074942765) +description = Sanders city, KY +station = ('kcvg', 0.0078792962900909227) +zone = ('kyz090', 0.0021450116270591555) + +[fips2168556] +centroid = (0.66485593395761611, -1.4507636462301843) +description = Sandy Hook city, KY +station = ('kk22', 0.00897110251642666) +zone = ('kyz104', 0.00054814883504431433) + +[fips2168646] +centroid = (0.6725335675239692, -1.4652509611258735) +description = Sardis city, KY +station = ('kiob', 0.0083151863319108951) +zone = ('kyz098', 0.0013807805350634945) + +[fips2168952] +centroid = (0.64884079274131634, -1.4771521867622974) +description = Science Hill city, KY +station = ('ksme', 0.0021410068816282821) +zone = ('kyz079', 0.0014886768464741898) + +[fips2169114] +centroid = (0.64139136097466154, -1.504406044084257) +description = Scottsville city, KY +station = ('kbwg', 0.0048903998492644089) +zone = ('kyz073', 8.9320749723051319e-05) + +[fips2169222] +centroid = (0.65627980489233662, -1.5275045168033135) +description = Sebree city, KY +station = ('kehr', 0.0043752218987568358) +zone = ('kyz015', 0.0026949940739931996) + +[fips2169258] +centroid = (0.63964065610857113, -1.5463858900771159) +description = Sedalia CDP, KY +station = ('kcey', 0.003385594084546788) +zone = ('kyz006', 0.0014721756922542566) + +[fips2169384] +centroid = (0.66720511222421552, -1.4953351839892071) +description = Seneca Gardens city, KY +station = ('klou', 0.00016227722852304308) +zone = ('kyz030', 0.00074945660906967861) + +[fips2169852] +centroid = (0.66674778360031539, -1.4647823925815906) +description = Sharpsburg city, KY +station = ('kiob', 0.0026380617422216168) +zone = ('kyz043', 0.0026368620775831814) + +[fips2170050] +centroid = (0.66681871378111646, -1.4875123739356735) +description = Shelbyville city, KY +station = ('kfft', 0.0045187866009672095) +zone = ('kyz034', 0.00048749083533665373) + +[fips2170086] +centroid = (0.66301660127210948, -1.4959077043437388) +description = Shepherdsville city, KY +station = ('ksdf', 0.003424373379497038) +zone = ('kyz029', 0.00036434447718420237) + +[fips2170284] +centroid = (0.6666955109892182, -1.4977353782298424) +description = Shively city, KY +station = ('ksdf', 0.0011380357485887534) +zone = ('kyz030', 0.0021278589016778377) + +[fips2170644] +centroid = (0.68137795369528042, -1.4730674007276374) +description = Silver Grove city, KY +station = ('kluk', 0.0010683566091277191) +zone = ('kyz093', 0.0016585266664614561) + +[fips2170752] +centroid = (0.66703248170790075, -1.4896891485787607) +description = Simpsonville city, KY +station = ('ksdf', 0.0052531298281749015) +zone = ('kyz034', 0.0021684705727472806) + +[fips2171130] +centroid = (0.6543176708406595, -1.5272464000602362) +description = Slaughters city, KY +station = ('k2i0', 0.0027617828344283593) +zone = ('kyz015', 0.0025206085866324055) + +[fips2171364] +centroid = (0.66997538607944351, -1.4879758286652478) +description = Smithfield city, KY +station = ('kfft', 0.00601859067805483) +zone = ('kyz033', 0.0021465397644170377) + +[fips2171382] +centroid = (0.64819020380934278, -1.5429537001030693) +description = Smithland city, KY +station = ('kpah', 0.0052703948829217759) +zone = ('kyz007', 0.001430806759917214) + +[fips2171454] +centroid = (0.64664806578886569, -1.5046147680095032) +description = Smiths Grove city, KY +station = ('kglw', 0.0035597632553503) +zone = ('kyz062', 0.002798467147906992) + +[fips2171688] +centroid = (0.64715187253074635, -1.4766999021399356) +description = Somerset city, KY +station = ('ksme', 0.00044350653404960953) +zone = ('kyz079', 0.0006172449130032266) + +[fips2171724] +centroid = (0.65502226025968968, -1.4991728314017849) +description = Sonora city, KY +station = ('kftk', 0.0065302486839477593) +zone = ('kyz053', 0.0027576893733037362) + +[fips2171814] +centroid = (0.65162457544495467, -1.5208828423410021) +description = South Carrollton city, KY +station = ('k2i0', 0.0035985150124351797) +zone = ('kyz021', 0.0020882493989432989) + +[fips2171976] +centroid = (0.68177573168510242, -1.4744137302593334) +description = Southgate city, KY +station = ('kluk', 0.0010503790254537903) +zone = ('kyz092', 0.0023831069132113328) + +[fips2172138] +centroid = (0.66529903814811253, -1.4960702294036845) +description = South Park View city, KY +station = ('ksdf', 0.001144082820714004) +zone = ('kyz030', 0.0014422097140471156) + +[fips2172210] +centroid = (0.67582754487455055, -1.4480002140656241) +description = South Shore city, KY +station = ('khts', 0.008394045946973688) +zone = ('ohz088', 0.0014816798523761567) + +[fips2172255] +centroid = (0.64247156270201333, -1.455605102308754) +description = South Wallins CDP, KY +station = ('ki35', 0.0010252765035769617) +zone = ('kyz088', 0.0026683433757092772) + +[fips2172264] +centroid = (0.6573472308095637, -1.4361927300633246) +description = South Williamson CDP, KY +station = ('kk22', 0.0050556150739634971) +zone = ('wvz024', 0.0023856320891302921) + +[fips2172372] +centroid = (0.67536274624145209, -1.4818916283460881) +description = Sparta city, KY +station = ('kcvg', 0.0069916663228131865) +zone = ('kyz090', 0.001248702440087723) + +[fips2172570] +centroid = (0.66069739030876695, -1.5257593271776593) +description = Spottsville CDP, KY +station = ('kevv', 0.0034814919062550569) +zone = ('kyz018', 0.0023518406870766148) + +[fips2172660] +centroid = (0.65789594487309833, -1.4873320290640648) +description = Springfield city, KY +station = ('kdvk', 0.006505220290349752) +zone = ('kyz046', 0.0011856727133522792) + +[fips2172770] +centroid = (0.66573158309663438, -1.4945531368579734) +description = Spring Mill city, KY +station = ('ksdf', 0.001558887477464594) +zone = ('kyz030', 0.00085177017024948591) + +[fips2172790] +centroid = (0.66840682377409111, -1.4941789731729311) +description = Spring Valley city, KY +station = ('klou', 0.0013528941220211864) +zone = ('kyz030', 0.0020304612272569393) + +[fips2173038] +centroid = (0.66793518345032477, -1.4780267014373019) +description = Stamping Ground city, KY +station = ('kfft', 0.0033159509465342952) +zone = ('kyz036', 0.0014315953572543955) + +[fips2173110] +centroid = (0.65509394093206896, -1.4776834300800197) +description = Stanford city, KY +station = ('kdvk', 0.0016585790513436529) +zone = ('kyz067', 0.0013786798059791151) + +[fips2173164] +centroid = (0.6605585668200632, -1.4635867722308042) +description = Stanton city, KY +station = ('kiob', 0.0040565321947796775) +zone = ('kyz059', 0.00053913642860095395) + +[fips2173362] +centroid = (0.64043671823369819, -1.4743576877370519) +description = Stearns CDP, KY +station = ('kekq', 0.0060296831867573336) +zone = ('kyz084', 0.00075868575593396543) + +[fips2174064] +centroid = (0.66704771843227073, -1.495460516082793) +description = Strathmoor Manor city, KY +station = ('klou', 0.00034083223913007425) +zone = ('kyz030', 0.00064610088738681164) + +[fips2174082] +centroid = (0.66707862821332353, -1.495360962502259) +description = Strathmoor Village city, KY +station = ('klou', 0.00026745112043881141) +zone = ('kyz030', 0.00063811161385250205) + +[fips2174316] +centroid = (0.65530526539790046, -1.5356707029338845) +description = Sturgis city, KY +station = ('kehr', 0.006318641967967463) +zone = ('kyz014', 0.0020427185124652805) + +[fips2174586] +centroid = (0.64374909135459568, -1.4959381777924787) +description = Summer Shade CDP, KY +station = ('kglw', 0.0042528452194318216) +zone = ('kyz076', 0.0021798536146682684) + +[fips2174604] +centroid = (0.65146290559634246, -1.492898704353423) +description = Summersville CDP, KY +station = ('kglw', 0.0077459090241178063) +zone = ('kyz064', 0.0011085216565468721) + +[fips2175190] +centroid = (0.66753314685712783, -1.4933250708363928) +description = Sycamore city, KY +station = ('klou', 0.0014645073582860788) +zone = ('kyz030', 0.001702728835808299) + +[fips2175270] +centroid = (0.64434913555143125, -1.5450627036113016) +description = Symsonia CDP, KY +station = ('kpah', 0.0040702293962322491) +zone = ('kyz008', 0.0028069703296068516) + +[fips2175738] +centroid = (0.68083259066390966, -1.4747941771296831) +description = Taylor Mill city, KY +station = ('kluk', 0.0019471979397674276) +zone = ('kyz092', 0.0013950101032677703) + +[fips2175810] +centroid = (0.66378222485508176, -1.489549382612261) +description = Taylorsville city, KY +station = ('klou', 0.0056454760358577742) +zone = ('kyz038', 0.00023382776091115555) + +[fips2175963] +centroid = (0.66842014063628385, -1.493617553112442) +description = Ten Broeck city, KY +station = ('klou', 0.0016544262229660817) +zone = ('kyz030', 0.0022282155386132547) + +[fips2176380] +centroid = (0.66825059935274522, -1.4944398126296417) +description = Thornhill city, KY +station = ('klou', 0.00111035594090247) +zone = ('kyz030', 0.0018203922021975711) + +[fips2177124] +centroid = (0.65334077515173328, -1.5401626917363276) +description = Tolu CDP, KY +station = ('khsb', 0.0078205498298799525) +zone = ('ilz091', 0.0015067040084597695) + +[fips2177160] +centroid = (0.64054861129204355, -1.4956105271320017) +description = Tompkinsville city, KY +station = ('kglw', 0.0068328298571283417) +zone = ('kyz075', 0.00039369832320997224) + +[fips2177592] +centroid = (0.64093370073820366, -1.5230312553837444) +description = Trenton city, KY +station = ('kckv', 0.002835995286978886) +zone = ('kyz022', 0.0022935565901416165) + +[fips2178384] +centroid = (0.67975680461956545, -1.4778267216116081) +description = Union city, KY +station = ('kcvg', 0.0017964781717353742) +zone = ('kyz091', 0.00084192531247923312) + +[fips2178492] +centroid = (0.65927035675245882, -1.534706844854471) +description = Uniontown city, KY +station = ('kehr', 0.0035146931045033579) +zone = ('kyz014', 0.0020153866525737655) + +[fips2178672] +centroid = (0.65377707255814677, -1.499238700127755) +description = Upton city, KY +station = ('kglw', 0.0074896228249069418) +zone = ('kyz063', 0.0027791726829133282) + +[fips2179068] +centroid = (0.67357158464330036, -1.4542403246468645) +description = Vanceburg city, KY +station = ('khts', 0.011259873797172014) +zone = ('kyz100', 0.0013142270187478803) + +[fips2179464] +centroid = (0.67727862906795122, -1.4776596063357297) +description = Verona CDP, KY +station = ('kcvg', 0.0042726389948924874) +zone = ('kyz095', 0.0027814005042765999) + +[fips2179482] +centroid = (0.66410258003928535, -1.4788847751107523) +description = Versailles city, KY +station = ('klex', 0.0018635306778287046) +zone = ('kyz040', 0.0001922092173181872) + +[fips2179590] +centroid = (0.64954370664426442, -1.4496845789668462) +description = Vicco city, KY +station = ('kjkl', 0.0073254864807355633) +zone = ('kyz115', 0.0022866051796168328) + +[fips2179698] +centroid = (0.68183194874030917, -1.476533415182588) +description = Villa Hills city, KY +station = ('kcvg', 0.00095738642115069143) +zone = ('ohz077', 0.0023830866121232193) + +[fips2179734] +centroid = (0.65994002213315639, -1.500566232463407) +description = Vine Grove city, KY +station = ('kftk', 0.0015452559585235769) +zone = ('kyz028', 0.0019951510627367673) + +[fips2179860] +centroid = (0.65157099383691841, -1.4413350983582307) +description = Virgie CDP, KY +station = ('klnp', 0.0061282112582509186) +zone = ('kyz120', 0.003519940452460851) + +[fips2180310] +centroid = (0.64275325884328527, -1.4558649469277909) +description = Wallins Creek city, KY +station = ('ki35', 0.00096900714426188328) +zone = ('kyz088', 0.0028010889201137111) + +[fips2180490] +centroid = (0.67832772902803251, -1.4767784594095681) +description = Walton city, KY +station = ('kcvg', 0.0033040934469643853) +zone = ('kyz092', 0.0016096076128186093) + +[fips2180616] +centroid = (0.66041609559322301, -1.4385413149179782) +description = Warfield city, KY +station = ('kk22', 0.0033319195694144787) +zone = ('kyz119', 0.0014129260128415162) + +[fips2180706] +centroid = (0.67684067359874822, -1.4818487805129519) +description = Warsaw city, KY +station = ('kcvg', 0.0057050481572344224) +zone = ('kyz090', 0.00072838274008395871) + +[fips2180832] +centroid = (0.6382368179780219, -1.5500396845062887) +description = Water Valley city, KY +station = ('kcey', 0.0065141805676567251) +zone = ('kyz002', 0.0030066303622104172) + +[fips2180913] +centroid = (0.66663344708101735, -1.4954371286708161) +description = Watterson Park city, KY +station = ('klou', 0.00069757969492094797) +zone = ('kyz030', 0.00034230264609243888) + +[fips2180958] +centroid = (0.65815900089795887, -1.5326628199542902) +description = Waverly city, KY +station = ('kehr', 0.0026056059133982563) +zone = ('kyz014', 0.0020090556119349685) + +[fips2181012] +centroid = (0.6536012131827158, -1.4451133522163628) +description = Wayland city, KY +station = ('kk22', 0.0057348085205641526) +zone = ('kyz110', 0.002033655919076957) + +[fips2181372] +centroid = (0.66700497531888925, -1.4952295915694616) +description = Wellington city, KY +station = ('klou', 0.0002968904263378865) +zone = ('kyz030', 0.00053374786810597133) + +[fips2181624] +centroid = (0.66664149304886899, -1.4952005492907083) +description = West Buechel city, KY +station = ('klou', 0.00065663888499436194) +zone = ('kyz030', 0.00019518654934328646) + +[fips2181858] +centroid = (0.66168580517075626, -1.4533616386349479) +description = West Liberty city, KY +station = ('kjkl', 0.0057666992664705862) +zone = ('kyz106', 0.00025218926194920131) + +[fips2181930] +centroid = (0.66313791910841557, -1.5001739697140213) +description = West Point city, KY +station = ('kftk', 0.0016678018544266742) +zone = ('inz090', 0.0041107580875234841) + +[fips2181948] +centroid = (0.67173328170205227, -1.4918152214070775) +description = Westport CDP, KY +station = ('klou', 0.0051552412437191756) +zone = ('kyz031', 0.0015768384539597378) + +[fips2182146] +centroid = (0.67157265905099117, -1.4430559057342343) +description = Westwood CDP, KY +station = ('khts', 0.0026465029580781583) +zone = ('kyz103', 0.0020733566892388853) + +[fips2182164] +centroid = (0.66810472473386351, -1.4937255715398479) +description = Westwood city, KY +station = ('klou', 0.0013891798766959027) +zone = ('kyz030', 0.0019147314560743177) + +[fips2182200] +centroid = (0.65431117821584206, -1.5334669629538542) +description = Wheatcroft city, KY +station = ('kehr', 0.0062202426515278256) +zone = ('kyz015', 0.0025159162454420295) + +[fips2182272] +centroid = (0.65169203242054419, -1.4437120448132292) +description = Wheelwright city, KY +station = ('klnp', 0.0067244808769334587) +zone = ('kyz113', 0.0032762772827682157) + +[fips2182722] +centroid = (0.64872898694943348, -1.5250498857433088) +description = White Plains city, KY +station = ('k2i0', 0.0032660058093217396) +zone = ('kyz016', 0.0033139258409785265) + +[fips2182776] +centroid = (0.64783351087011265, -1.4455391427406794) +description = Whitesburg city, KY +station = ('klnp', 0.0046741807511490015) +zone = ('kyz118', 0.00044866992601380422) + +[fips2182830] +centroid = (0.65769493530314604, -1.5161646065076233) +description = Whitesville city, KY +station = ('kowb', 0.004216889603048367) +zone = ('kyz023', 0.0030404452970068645) + +[fips2182938] +centroid = (0.64103388263726802, -1.4743887371444448) +description = Whitley City CDP, KY +station = ('kekq', 0.0057516270728287218) +zone = ('kyz084', 0.00018545038187573401) + +[fips2183064] +centroid = (0.64518253026925865, -1.5547724589323368) +description = Wickliffe city, KY +station = ('kcir', 0.0025714200298655242) +zone = ('kyz004', 0.0019788534654786578) + +[fips2183172] +centroid = (0.68140146328030482, -1.4744813443145557) +description = Wilder city, KY +station = ('kluk', 0.0013484046378302629) +zone = ('kyz092', 0.0020125615274701365) + +[fips2183208] +centroid = (0.66757164882042686, -1.4935601841399291) +description = Wildwood city, KY +station = ('klou', 0.0012902018074441306) +zone = ('kyz030', 0.0015865444045674367) + +[fips2183334] +centroid = (0.64122023144150342, -1.4689765758537654) +description = Williamsburg city, KY +station = ('kloz', 0.0061644214980338848) +zone = ('kyz085', 0.00044240212667691505) + +[fips2183406] +centroid = (0.67445013102887674, -1.4759968835172326) +description = Williamstown city, KY +station = ('kcvg', 0.0072255015920244621) +zone = ('kyz095', 0.00077116837086080032) + +[fips2183424] +centroid = (0.65988850001363764, -1.4856341378611395) +description = Willisburg city, KY +station = ('kdvk', 0.0062761526221893783) +zone = ('kyz046', 0.0012220562098873157) + +[fips2183550] +centroid = (0.6608135768770721, -1.4776146815607836) +description = Wilmore city, KY +station = ('klex', 0.0031091404498073808) +zone = ('kyz048', 0.0011189838306499774) + +[fips2183676] +centroid = (0.66321574333976197, -1.4693823649048543) +description = Winchester city, KY +station = ('kiob', 0.0030143674419105719) +zone = ('kyz049', 0.0007621449726807302) + +[fips2183784] +centroid = (0.66793856938907359, -1.4946350451597696) +description = Windy Hills city, KY +station = ('klou', 0.00076443537009583836) +zone = ('kyz030', 0.0014808229611975887) + +[fips2183856] +centroid = (0.63951387539170623, -1.548823539083499) +description = Wingo city, KY +station = ('kcey', 0.0053455291780802362) +zone = ('kyz006', 0.0018993945294088965) + +[fips2184414] +centroid = (0.64300565090641615, -1.5102519371473497) +description = Woodburn city, KY +station = ('kbwg', 0.0027056493670214285) +zone = ('kyz072', 0.0018802471781391688) + +[fips2184432] +centroid = (0.64896972021316102, -1.5120650026276139) +description = Woodbury city, KY +station = ('kbwg', 0.0048502097698932484) +zone = ('kyz061', 0.00077381176292228102) + +[fips2184486] +centroid = (0.66740100797945934, -1.4927759902537154) +description = Woodland Hills city, KY +station = ('klou', 0.0018796409805186261) +zone = ('kyz030', 0.0019977098333378695) + +[fips2184522] +centroid = (0.68227128301962114, -1.4743236363633454) +description = Woodlawn city, KY +station = ('kluk', 0.00077179030458535277) +zone = ('ohz077', 0.0020501531433250184) + +[fips2184576] +centroid = (0.66778787766145642, -1.4945381270264062) +description = Woodlawn Park city, KY +station = ('klou', 0.00069505034536528868) +zone = ('kyz030', 0.0013542432398117774) + +[fips2184864] +centroid = (0.67284372998534103, -1.4439973014261749) +description = Worthington city, KY +station = ('khts', 0.0040928842929597959) +zone = ('ohz087', 0.0028274519016536011) + +[fips2184891] +centroid = (0.6686258625952165, -1.4927279762459928) +description = Worthington Hills city, KY +station = ('klou', 0.0023294209893564653) +zone = ('kyz031', 0.0019040514644425861) + +[fips2184900] +centroid = (0.67386562026238384, -1.4847270378890007) +description = Worthville city, KY +station = ('kfft', 0.007789910056575448) +zone = ('kyz089', 0.0012624079009474079) + +[fips2185008] +centroid = (0.67281741042022103, -1.4447664156676514) +description = Wurtland city, KY +station = ('khts', 0.0044710754989669794) +zone = ('kyz101', 0.0019570518051515401) + +[fips22001] +centroid = (0.5286863580079848, -1.612876860832303) +description = Acadia Parish, LA +station = ('k3r7', 0.0040470337023987297) +zone = ('laz043', 2.1347628405485292e-05) + +[fips2200100] +centroid = (0.52315200621637337, -1.6079166525514279) +description = Abbeville city, LA +station = ('kiya', 0.00064474651000411541) +zone = ('laz052', 0.0035795545424935887) + +[fips2200194000] +centroid = (0.52733058624503559, -1.612396842928127) +description = District 1, LA +station = ('k3r7', 0.0044016792037202867) +zone = ('laz043', 0.001407158322052875) + +[fips2200194201] +centroid = (0.52786100925800916, -1.6136426065883229) +description = District 2, LA +station = ('k3r7', 0.0032959410403489275) +zone = ('laz043', 0.0010363450871011585) + +[fips2200194381] +centroid = (0.52590466969944871, -1.6139493656576536) +description = District 3, LA +station = ('k3r7', 0.0035946304073850343) +zone = ('laz043', 0.0029126002837560703) + +[fips2200194567] +centroid = (0.52693821877589475, -1.6109993403427627) +description = District 4, LA +station = ('kiya', 0.0050116903949959449) +zone = ('laz043', 0.0023832237157295662) + +[fips2200194759] +centroid = (0.52803220860433731, -1.6098108409353247) +description = District 5, LA +station = ('klft', 0.0036724779565403833) +zone = ('laz044', 0.0027165020733040061) + +[fips2200194933] +centroid = (0.52948966324950775, -1.6095034535474633) +description = District 6, LA +station = ('klft', 0.0040663668537093862) +zone = ('laz044', 0.0032593959621553576) + +[fips2200195092] +centroid = (0.53015653610340219, -1.6116274668872628) +description = District 7, LA +station = ('k3r7', 0.0055430423889534742) +zone = ('laz043', 0.0018444647608146349) + +[fips2200195242] +centroid = (0.53020826766243134, -1.614762427289695) +description = District 8, LA +station = ('k3r7', 0.0033238582167635241) +zone = ('laz043', 0.0022283574531276606) + +[fips2200240] +centroid = (0.53191725915939914, -1.5713083540375541) +description = Abita Springs town, LA +station = ('kasd', 0.0038897298226423212) +zone = ('laz040', 0.0014317627544376216) + +[fips22003] +centroid = (0.53499130757093671, -1.6200077176505912) +description = Allen Parish, LA +station = ('kacp', 0.0026036071921755927) +zone = ('laz031', 0.00012454988491447576) + +[fips2200394003] +centroid = (0.53773269622704423, -1.6169616294136706) +description = District 1, LA +station = ('kacp', 0.0012230331450792289) +zone = ('laz031', 0.0038772009832589876) + +[fips2200394204] +centroid = (0.53744291921133558, -1.6179677070076901) +description = District 2, LA +station = ('kacp', 0.00077396312139974509) +zone = ('laz031', 0.0030875609528687965) + +[fips2200394384] +centroid = (0.53861054448091983, -1.6165258032461554) +description = District 3, LA +station = ('kacp', 0.0021704293358766288) +zone = ('laz032', 0.0039433556195398838) + +[fips2200394570] +centroid = (0.53597883231500765, -1.620951399723852) +description = District 4, LA +station = ('kacp', 0.0028681635757163678) +zone = ('laz031', 0.0012022271473474051) + +[fips2200394762] +centroid = (0.53415662130946295, -1.6178165614944677) +description = District 5, LA +station = ('kacp', 0.0025431360568241319) +zone = ('laz031', 0.0021768264412348639) + +[fips2200394936] +centroid = (0.53230781148611794, -1.6195847545596631) +description = District 6, LA +station = ('kacp', 0.0046742462367090143) +zone = ('laz031', 0.002728611484538047) + +[fips2200395095] +centroid = (0.53228644865607344, -1.6233275258741022) +description = District 7, LA +station = ('kcwf', 0.0053410929800254865) +zone = ('laz031', 0.0038462977787885118) + +[fips2200415] +centroid = (0.52997259585353451, -1.5928787037300267) +description = Addis town, LA +station = ('kbtr', 0.0034084692833214313) +zone = ('laz047', 0.0018610890454739176) + +[fips22005] +centroid = (0.52714085150205126, -1.5866792244137728) +description = Ascension Parish, LA +station = ('kbtr', 0.0068051196332010481) +zone = ('laz049', 2.1552823409095051e-05) + +[fips2200594006] +centroid = (0.52529563705696536, -1.5891004673251872) +description = District 1, LA +station = ('k7r3', 0.0069760799039819601) +zone = ('laz049', 0.0027827558079851801) + +[fips2200594206] +centroid = (0.52609747622191649, -1.586505546699907) +description = District 2, LA +station = ('kbtr', 0.0077810863724596642) +zone = ('laz049', 0.0010665850192318831) + +[fips2200594387] +centroid = (0.52673583039583349, -1.5881811151416991) +description = District 3, LA +station = ('kbtr', 0.0065923946288026086) +zone = ('laz049', 0.0013444454012581217) + +[fips2200594572] +centroid = (0.52890326752742267, -1.5880237911629242) +description = District 4, LA +station = ('kbtr', 0.004695268857574742) +zone = ('laz049', 0.0020920600068800154) + +[fips2200594765] +centroid = (0.52915749218626817, -1.5863552913046028) +description = District 5, LA +station = ('kbtr', 0.0054036473296570344) +zone = ('laz049', 0.0020291284793121076) + +[fips2200594938] +centroid = (0.52734343186833021, -1.584094077632304) +description = District 6, LA +station = ('khdc', 0.0074480093730899749) +zone = ('laz049', 0.0022615758610387057) + +[fips2200595097] +centroid = (0.52927313770250528, -1.5874437135327315) +description = District 7, LA +station = ('kbtr', 0.0046821265248608752) +zone = ('laz049', 0.0022173054448122878) + +[fips2200595244] +centroid = (0.52813832462285848, -1.5882853985645058) +description = District 8, LA +station = ('kbtr', 0.0052633515177033545) +zone = ('laz049', 0.0016877405591841524) + +[fips2200595361] +centroid = (0.52835649077935787, -1.5853272400153007) +description = District 9, LA +station = ('kbtr', 0.0065987066751478805) +zone = ('laz049', 0.0016923416008805404) + +[fips2200595466] +centroid = (0.5275767125761518, -1.5865070825896488) +description = District 10, LA +station = ('kbtr', 0.0065241755095011376) +zone = ('laz049', 0.00045811377555756436) + +[fips2200595544] +centroid = (0.52859172625594164, -1.5869238846683176) +description = District 11, LA +station = ('kbtr', 0.0054946606272644732) +zone = ('laz049', 0.0014539523229552625) + +[fips22007] +centroid = (0.52185142176437227, -1.5891314992792875) +description = Assumption Parish, LA +station = ('k7r3', 0.0035681891596790055) +zone = ('laz056', 0.0001830783543546839) + +[fips2200794009] +centroid = (0.52353252289989316, -1.5877770016066923) +description = District 1, LA +station = ('k7r3', 0.0055160572316754891) +zone = ('laz056', 0.0021502380568110446) + +[fips2200794207] +centroid = (0.52175748814402989, -1.5873142973686962) +description = District 2, LA +station = ('k7r3', 0.0041152610502461478) +zone = ('laz056', 0.0017612400455802792) + +[fips2200794390] +centroid = (0.51894872977879536, -1.5887881755621278) +description = District 3, LA +station = ('k7r3', 0.0012007372237100146) +zone = ('laz056', 0.0029545514816735081) + +[fips2200794573] +centroid = (0.52068219079187616, -1.5888408495989528) +description = District 4, LA +station = ('k7r3', 0.0025265150530031102) +zone = ('laz056', 0.0012591648841717895) + +[fips2200794768] +centroid = (0.5222298440527896, -1.5897415442127372) +description = District 5, LA +station = ('k7r3', 0.0038733018525549732) +zone = ('laz056', 0.00050371159613561678) + +[fips2200794939] +centroid = (0.52316268763139562, -1.5898252327503704) +description = District 6, LA +station = ('k7r3', 0.0048021569240886044) +zone = ('laz056', 0.0013645565802580496) + +[fips2200795098] +centroid = (0.52428491688713541, -1.5896706663918136) +description = District 7, LA +station = ('k7r3', 0.0059288015707563693) +zone = ('laz056', 0.0024376633967244671) + +[fips2200795245] +centroid = (0.52311837372168746, -1.5915086377205039) +description = District 8, LA +station = ('k7r3', 0.0049335275150861179) +zone = ('laz056', 0.002257932794927058) + +[fips2200795362] +centroid = (0.52198940749503486, -1.5914780071921313) +description = District 9, LA +station = ('k7r3', 0.0038481775095155876) +zone = ('laz055', 0.0016780527606730128) + +[fips2200835] +centroid = (0.53237158581698574, -1.5810021745025185) +description = Albany village, LA +station = ('khdc', 0.002534832207077065) +zone = ('laz050', 0.002495221651366153) + +[fips22009] +centroid = (0.54253723859193426, -1.6055946665145744) +description = Avoyelles Parish, LA +station = ('kesf', 0.0071473892236537384) +zone = ('laz029', 0.00019149703864981959) + +[fips2200975] +centroid = (0.54617371935492698, -1.6139092579914429) +description = Alexandria city, LA +station = ('kesf', 0.0031454178521986803) +zone = ('laz028', 0.001903803746682634) + +[fips2200994012] +centroid = (0.54515914200745019, -1.6080054025438917) +description = District 1, LA +station = ('kesf', 0.0038133598422524953) +zone = ('laz029', 0.0033939289670378166) + +[fips2200994210] +centroid = (0.54298032532913798, -1.6082257852685409) +description = District 2, LA +station = ('kesf', 0.0055599234775485281) +zone = ('laz029', 0.0022230064154227752) + +[fips2200994393] +centroid = (0.54425453785614153, -1.6050346601707797) +description = District 3, LA +station = ('kesf', 0.0063036002330539975) +zone = ('laz029', 0.0019637133410026039) + +[fips2200994576] +centroid = (0.54168160837943646, -1.6074400554925856) +description = District 4, LA +station = ('kesf', 0.0070212787914925032) +zone = ('laz029', 0.0016271647418575814) + +[fips2200994771] +centroid = (0.54207034556373324, -1.6063482298724157) +description = District 5, LA +station = ('kesf', 0.0071391286862754026) +zone = ('laz029', 0.00061770904149784013) + +[fips2200994942] +centroid = (0.54073506396620241, -1.6082982513390838) +description = District 6, LA +station = ('kesf', 0.0076399097757860746) +zone = ('laz029', 0.0027517875408401221) + +[fips2200995101] +centroid = (0.54205947216249328, -1.6029300199856773) +description = District 7, LA +station = ('khzr', 0.0080352390913303526) +zone = ('laz029', 0.0024162203659601872) + +[fips2200995248] +centroid = (0.53948476244995125, -1.6084679671555477) +description = District 8, LA +station = ('kesf', 0.00880625984855107) +zone = ('laz029', 0.003731011881739819) + +[fips2200995365] +centroid = (0.53945411446828617, -1.6033998975268993) +description = District 9, LA +station = ('khzr', 0.0067140985726249517) +zone = ('laz029', 0.003542218271579467) + +[fips22011] +centroid = (0.5348564634329277, -1.6290947394945148) +description = Beauregard Parish, LA +station = ('kdri', 0.0032576435086372839) +zone = ('laz030', 7.6981867811341722e-05) + +[fips2201194015] +centroid = (0.53336891931145292, -1.6322318641052196) +description = District 1, LA +station = ('kdri', 0.0054622961265937756) +zone = ('laz030', 0.0030716398461700179) + +[fips2201194213] +centroid = (0.5368652152289255, -1.6321754376105024) +description = District 2, LA +station = ('kdri', 0.0029334000163805047) +zone = ('laz030', 0.0032500688813428525) + +[fips2201194552] +centroid = (0.53885691515813139, -1.6272797716053657) +description = District 3A, LA +station = ('kdri', 0.0017189567378437301) +zone = ('laz027', 0.0041589431255975601) + +[fips2201194555] +centroid = (0.53820868242064812, -1.6270570850461039) +description = District 3B, LA +station = ('kdri', 0.0017442490779133071) +zone = ('laz030', 0.0037507675328456429) + +[fips2201194558] +centroid = (0.53761506103545975, -1.6287492341157901) +description = District 3C, LA +station = ('kdri', 0.00057656117672843967) +zone = ('laz030', 0.0027196962767270061) + +[fips2201194561] +centroid = (0.53866266001238439, -1.6282686053463757) +description = District 3D, LA +station = ('kdri', 0.00089037106783535923) +zone = ('laz030', 0.0038211864998351081) + +[fips2201194564] +centroid = (0.53806390735919518, -1.6292862370200436) +description = District 3E, LA +station = ('kdri', 0.00017954919716499512) +zone = ('laz030', 0.0031488602798118198) + +[fips2201194732] +centroid = (0.53221344153346251, -1.6276192206915863) +description = District 4A, LA +station = ('kcwf', 0.0050885926268428201) +zone = ('laz030', 0.0030078005737075547) + +[fips2201194744] +centroid = (0.53571581119673206, -1.6271994690064815) +description = District 4B, LA +station = ('kdri', 0.0028945134776034993) +zone = ('laz030', 0.0018577722879320848) + +[fips2201194774] +centroid = (0.53655796746740436, -1.6243150331648806) +description = District 5, LA +station = ('kdri', 0.0043836646121378341) +zone = ('laz031', 0.003906716196900124) + +[fips22013] +centroid = (0.56451397074744125, -1.6242298087375058) +description = Bienville Parish, LA +station = ('kmne', 0.0063873055563437942) +zone = ('laz012', 9.6055975773711236e-05) + +[fips2201394018] +centroid = (0.56602975429621338, -1.6213116880413414) +description = District 1, LA +station = ('krsn', 0.0047343449066305126) +zone = ('laz012', 0.0027970112997396874) + +[fips2201394216] +centroid = (0.56744853244515947, -1.6229534843621072) +description = District 2, LA +station = ('kmne', 0.0051738952221586859) +zone = ('laz012', 0.0030505861819961908) + +[fips2201394396] +centroid = (0.56710946733137457, -1.6248819684658058) +description = District 3, LA +station = ('kmne', 0.0040325033711031081) +zone = ('laz012', 0.0026215784779557785) + +[fips2201394579] +centroid = (0.56515536179425674, -1.6284265052838036) +description = District 4, LA +station = ('kmne', 0.0046947281464873982) +zone = ('laz012', 0.0036737897390623623) + +[fips2201394777] +centroid = (0.56362479530672027, -1.6279029763213755) +description = District 5, LA +station = ('kmne', 0.0062388723562013569) +zone = ('laz012', 0.003321305164402052) + +[fips2201394945] +centroid = (0.56242215873234103, -1.6251854986760204) +description = District 6, LA +station = ('kmne', 0.0079055219798581204) +zone = ('laz012', 0.0023201725399195146) + +[fips2201395104] +centroid = (0.56339336464790579, -1.6218893920237516) +description = District 7, LA +station = ('krsn', 0.006457865213285406) +zone = ('laz012', 0.0022294260467572539) + +[fips22015] +centroid = (0.57065637779715506, -1.6339419377063233) +description = Bossier Parish, LA +station = ('kdtn', 0.0034420034675126448) +zone = ('laz002', 0.00034816757214352052) + +[fips2201594021] +centroid = (0.56547156309484048, -1.6316663076144033) +description = District 1, LA +station = ('kbad', 0.0031709958063178339) +zone = ('laz002', 0.0051886145977719051) + +[fips2201594219] +centroid = (0.56829503458566932, -1.6330044690051997) +description = District 2, LA +station = ('kbad', 0.0018440799972116871) +zone = ('laz002', 0.0021538651889525025) + +[fips2201594399] +centroid = (0.57016951820231121, -1.63448803377598) +description = District 3, LA +station = ('kdtn', 0.0027826690983549238) +zone = ('laz002', 0.00067572331175306318) + +[fips2201594582] +centroid = (0.57289669987830738, -1.6340182609545131) +description = District 4, LA +station = ('kdtn', 0.0054178043329765205) +zone = ('laz002', 0.0025460479805570614) + +[fips2201594780] +centroid = (0.56868516803336766, -1.6345251743824623) +description = District 5, LA +station = ('kbad', 0.0014704323676583552) +zone = ('laz002', 0.0018101271954348139) + +[fips2201594948] +centroid = (0.56931270116592214, -1.6360004488392959) +description = District 6, LA +station = ('kdtn', 0.0015131527264061213) +zone = ('laz001', 0.0022573021511871705) + +[fips2201595107] +centroid = (0.56804374207996711, -1.6357262401605148) +description = District 7, LA +station = ('kdtn', 0.00049497386574360767) +zone = ('laz001', 0.0024507876909951381) + +[fips2201595251] +centroid = (0.56789060689139714, -1.6346501225036127) +description = District 8, LA +station = ('kbad', 0.00066933710830251365) +zone = ('laz002', 0.0025939637920256004) + +[fips2201595368] +centroid = (0.56752469861371657, -1.6355168355568606) +description = District 9, LA +station = ('kbad', 0.00067792819918247927) +zone = ('laz001', 0.0027840587213930441) + +[fips2201595470] +centroid = (0.56723918020138275, -1.6338240058087663) +description = District 10, LA +station = ('kbad', 0.00081620223132688693) +zone = ('laz002', 0.0031252014243297382) + +[fips2201595548] +centroid = (0.5667859705545174, -1.6348416898423115) +description = District 11, LA +station = ('kbad', 0.00044802248777344567) +zone = ('laz001', 0.0036276390694877556) + +[fips2201595614] +centroid = (0.56601807804351745, -1.6343024005567379) +description = District 12, LA +station = ('kbad', 0.0012822148754841102) +zone = ('laz002', 0.0043727919550784478) + +[fips22017] +centroid = (0.56857931381423421, -1.6385573911000524) +description = Caddo Parish, LA +station = ('kdtn', 0.0020930796928213973) +zone = ('laz001', 4.3977812964743649e-05) + +[fips2201780] +centroid = (0.52258505346215556, -1.5760146169122644) +description = Ama CDP, LA +station = ('kmsy', 0.0012554599345767964) +zone = ('laz060', 0.0014049338326078816) + +[fips2201794024] +centroid = (0.57173397898392142, -1.6393162777121122) +description = District 1, LA +station = ('kdtn', 0.0046958114860942805) +zone = ('laz001', 0.0031768177544652912) + +[fips2201794222] +centroid = (0.5685509347605967, -1.6378809538418568) +description = District 2, LA +station = ('kdtn', 0.0015627114117680811) +zone = ('laz001', 0.00056983762070720635) + +[fips2201794402] +centroid = (0.56778258846399121, -1.63654680670834) +description = District 3, LA +station = ('kdtn', 0.00025537223027646865) +zone = ('laz001', 0.0018873630825171569) + +[fips2201794585] +centroid = (0.566948827227021, -1.6359258360137729) +description = District 4, LA +station = ('kdtn', 0.0009061605945157354) +zone = ('laz001', 0.0027756612610187509) + +[fips2201794783] +centroid = (0.5668884737414871, -1.6368499180395339) +description = District 5, LA +station = ('kshv', 0.00089170764398018108) +zone = ('laz001', 0.0022510995483978414) + +[fips2201794951] +centroid = (0.5662077080667467, -1.6364085068184118) +description = District 6, LA +station = ('kshv', 0.0011009035355829914) +zone = ('laz001', 0.0030166930771227131) + +[fips2201795110] +centroid = (0.56718720429625846, -1.6380271775265891) +description = District 7, LA +station = ('kshv', 0.00087249994091411723) +zone = ('laz001', 0.0015023907562019924) + +[fips2201795254] +centroid = (0.56620777787991672, -1.6353048129593284) +description = District 8, LA +station = ('kbad', 0.0011119443729513889) +zone = ('laz001', 0.0036511321416913167) + +[fips2201795371] +centroid = (0.56413764285412626, -1.6343383368860362) +description = District 9, LA +station = ('kbad', 0.0031179478587362269) +zone = ('laz010', 0.004878730618584552) + +[fips2201795473] +centroid = (0.56575214222539116, -1.6369234836675055) +description = District 10, LA +station = ('kshv', 0.00089382226117809722) +zone = ('laz001', 0.0031824507650026709) + +[fips2201795551] +centroid = (0.56377883806650131, -1.6389531794145273) +description = District 11, LA +station = ('kshv', 0.0027889171256106318) +zone = ('laz001', 0.0048560281600513525) + +[fips2201795617] +centroid = (0.56575013509675132, -1.6396073811780523) +description = District 12, LA +station = ('kshv', 0.0017208015550541336) +zone = ('laz001', 0.003007697033876597) + +[fips2201815] +centroid = (0.51772089065001747, -1.5901856257876146) +description = Amelia CDP, LA +station = ('k7r3', 0.00066292892582127904) +zone = ('laz055', 0.0040112089773221967) + +[fips2201885] +centroid = (0.53637744806287069, -1.5797897640843281) +description = Amite City town, LA +station = ('khdc', 0.0039700427597073882) +zone = ('laz071', 0.0020271537821415718) + +[fips22019] +centroid = (0.52760533597588455, -1.6294047448762539) +description = Calcasieu Parish, LA +station = ('klch', 0.0006418476456408101) +zone = ('laz041', 6.5012965385290634e-06) + +[fips2201920] +centroid = (0.54555435436327171, -1.6292133520704803) +description = Anacoco village, LA +station = ('kpoe', 0.0042903819406153246) +zone = ('laz027', 0.003568708088048685) + +[fips2201994027] +centroid = (0.52949001231535808, -1.6268416416032379) +description = District 1, LA +station = ('kcwf', 0.0023022992990688529) +zone = ('laz041', 0.0029097928569470927) + +[fips2201994225] +centroid = (0.52920175373609868, -1.6258591783139977) +description = District 2, LA +station = ('kcwf', 0.0018229095476580356) +zone = ('laz041', 0.0034545388243175648) + +[fips2201994405] +centroid = (0.52781763782609714, -1.6270766676403112) +description = District 3, LA +station = ('kcwf', 0.0012073418270620289) +zone = ('laz041', 0.002021489822044403) + +[fips2201994588] +centroid = (0.52740411696642209, -1.6255060283931491) +description = District 4, LA +station = ('kcwf', 0.00023295001694156734) +zone = ('laz041', 0.003372658244118574) + +[fips2201994786] +centroid = (0.52732559460337491, -1.627090892073715) +description = District 5, LA +station = ('kcwf', 0.0011391261269015462) +zone = ('laz041', 0.0020162685149680169) + +[fips2201994954] +centroid = (0.52624483437066238, -1.6273874933267989) +description = District 6, LA +station = ('kcwf', 0.0017983647447278289) +zone = ('laz041', 0.0022063886426152346) + +[fips2201995113] +centroid = (0.52541829879679547, -1.6269207399249381) +description = District 7, LA +station = ('kcwf', 0.0021982403455165092) +zone = ('laz041', 0.0030594843364024232) + +[fips2201995257] +centroid = (0.52585344428590275, -1.6281707447352165) +description = District 8, LA +station = ('kuxl', 0.0013992182006320702) +zone = ('laz041', 0.0020448584578049316) + +[fips2201995374] +centroid = (0.52667149755960496, -1.6258092444440979) +description = District 9, LA +station = ('kcwf', 0.00070947167173243664) +zone = ('laz041', 0.0032412424956965108) + +[fips2201995476] +centroid = (0.52660411039718547, -1.6243351742644485) +description = District 10, LA +station = ('kcwf', 0.001466117209060815) +zone = ('laz042', 0.0041686351076827433) + +[fips2201995554] +centroid = (0.52949009958182069, -1.6320498262642364) +description = District 11, LA +station = ('klch', 0.0030633254716829661) +zone = ('laz041', 0.0029666813684539172) + +[fips2201995620] +centroid = (0.5257705935063105, -1.6320972119534281) +description = District 12, LA +station = ('kuxl', 0.0019992334297297258) +zone = ('laz041', 0.0029612545789225284) + +[fips2201995671] +centroid = (0.52767570765132499, -1.6300439193549194) +description = District 13, LA +station = ('klch', 0.00061055731703056778) +zone = ('laz041', 0.00055925616182434272) + +[fips2201995704] +centroid = (0.52854149568006925, -1.6286823181922685) +description = District 14, LA +station = ('klch', 0.0017664206772986795) +zone = ('laz041', 0.0011293378228591877) + +[fips2201995728] +centroid = (0.52723103266450189, -1.6287430032903603) +description = District 15, LA +station = ('klch', 0.00096425354587190203) +zone = ('laz041', 0.00067856257147915411) + +[fips22021] +centroid = (0.56027240178607463, -1.6076957287747105) +description = Caldwell Parish, LA +station = ('kmlu', 0.0073479173014724944) +zone = ('laz021', 0.00016218552144259098) + +[fips2202165] +centroid = (0.54037723656295855, -1.567674613441487) +description = Angie village, LA +station = ('khbg', 0.010061375480369891) +zone = ('laz039', 0.0037867409156322339) + +[fips2202194030] +centroid = (0.56182143385709704, -1.6061461032917419) +description = District 1, LA +station = ('kmlu', 0.0057026630672845956) +zone = ('laz021', 0.0021758314848042411) + +[fips2202194228] +centroid = (0.559339470941006, -1.6053692746949719) +description = District 2, LA +station = ('kmlu', 0.0082199373125118515) +zone = ('laz021', 0.0021530584971732043) + +[fips2202194408] +centroid = (0.56051666061489125, -1.6098638291314153) +description = District 3, LA +station = ('kmlu', 0.0076312857341074188) +zone = ('laz021', 0.0018436970699677322) + +[fips2202194591] +centroid = (0.55997815672748086, -1.6068975024413106) +description = District 4, LA +station = ('kmlu', 0.0075624984844429102) +zone = ('laz021', 0.00072646437206243199) + +[fips2202194789] +centroid = (0.56188733748965247, -1.6090774361303442) +description = District 5, LA +station = ('kmlu', 0.0061094296166725008) +zone = ('laz021', 0.0021037418052227701) + +[fips2202194957] +centroid = (0.55853913275921163, -1.6096896627253587) +description = District 6, LA +station = ('kmlu', 0.0094339137570937388) +zone = ('laz021', 0.0022833550477550538) + +[fips2202195116] +centroid = (0.55825598799466047, -1.6067645607121863) +description = District 7, LA +station = ('kmlu', 0.0092757893377746984) +zone = ('laz021', 0.0020341025781442797) + +[fips22023] +centroid = (0.52136456216952842, -1.6260436247093484) +description = Cameron Parish, LA +station = ('kuxl', 0.0055494010358488983) +zone = ('laz074', 0.0016171607027846966) + +[fips2202394033] +centroid = (0.52007425770682147, -1.6349363565009398) +description = District 1, LA +station = ('korg', 0.0051162283502727548) +zone = ('laz073', 0.0038272789550127533) + +[fips2202394231] +centroid = (0.52298524000634528, -1.6303142010428833) +description = District 2, LA +station = ('kuxl', 0.0029181679656749568) +zone = ('laz073', 0.0017653383362353609) + +[fips2202394411] +centroid = (0.52362263424917355, -1.6239289139744619) +description = District 3, LA +station = ('kcwf', 0.0040826954167848435) +zone = ('laz074', 0.0040363060630178504) + +[fips2202394594] +centroid = (0.52046688697535015, -1.6198671837392209) +description = District 4, LA +station = ('kcmb', 0.0071030232881342734) +zone = ('laz074', 0.0049224105192196017) + +[fips2202394792] +centroid = (0.52136456216952842, -1.6260436247093484) +description = District 5, LA +station = ('kuxl', 0.0055494010358488983) +zone = ('laz074', 0.0016171607027846966) + +[fips2202394960] +centroid = (0.52089765168803492, -1.6286542358446039) +description = District 6, LA +station = ('kuxl', 0.0050662109790161353) +zone = ('laz073', 0.0018457286466510726) + +[fips2202395117] +centroid = (0.52309350277984656, -1.6267435017393981) +description = District 7, LA +station = ('kuxl', 0.0038266046798111427) +zone = ('laz074', 0.0034488688065443538) + +[fips22025] +centroid = (0.55268498428875723, -1.6030273744513535) +description = Catahoula Parish, LA +station = ('kesf', 0.0081920087132071728) +zone = ('laz024', 9.3674274590126988e-06) + +[fips2202550] +centroid = (0.52282144085604565, -1.5707686284196674) +description = Arabi CDP, LA +station = ('knew', 0.0017323617101693289) +zone = ('laz064', 0.0020224248654301196) + +[fips2202594036] +centroid = (0.55524651676544667, -1.599451666052915) +description = District 1, LA +station = ('khez', 0.0061264221026170662) +zone = ('laz024', 0.0039852258051529281) + +[fips2202594234] +centroid = (0.55481854457956514, -1.6011895252957107) +description = District 2, LA +station = ('khez', 0.0072098236134679992) +zone = ('laz024', 0.0026542872299112367) + +[fips2202594414] +centroid = (0.55521517065208081, -1.6043585894317272) +description = District 3, LA +station = ('kesf', 0.0091096486179060299) +zone = ('laz024', 0.0027761760953370043) + +[fips2202594597] +centroid = (0.55450710802783931, -1.6029933056243546) +description = District 4, LA +station = ('kesf', 0.0093659872528198927) +zone = ('laz024', 0.0018297341421224076) + +[fips2202594795] +centroid = (0.55294043067807908, -1.6029158653654436) +description = District 5, LA +station = ('kesf', 0.0084163061844030693) +zone = ('laz024', 0.00028139680124707899) + +[fips2202594963] +centroid = (0.55120197802333759, -1.6045104156233581) +description = District 6, LA +station = ('kesf', 0.0063316034422221442) +zone = ('laz024', 0.0019384602458367419) + +[fips2202595119] +centroid = (0.55191901163993451, -1.602519378919268) +description = District 7, LA +station = ('kesf', 0.0081621612075123712) +zone = ('laz024', 0.00087623185759223615) + +[fips2202595260] +centroid = (0.55191876729383915, -1.6028478498844934) +description = District 8, LA +station = ('kesf', 0.0079168989616122658) +zone = ('laz024', 0.00077536065525609895) + +[fips2202595377] +centroid = (0.54816264421062222, -1.6040063296287972) +description = District 9, LA +station = ('kesf', 0.0059184756151622435) +zone = ('laz024', 0.0045904393262683101) + +[fips2202655] +centroid = (0.56811594635112217, -1.6218270663161627) +description = Arcadia town, LA +station = ('kmne', 0.0057962479077300171) +zone = ('laz012', 0.0040492817886048802) + +[fips22027] +centroid = (0.5729494437283027, -1.623001306383612) +description = Claiborne Parish, LA +station = ('kmne', 0.0054925701390558333) +zone = ('laz004', 0.00010987323088848068) + +[fips2202794039] +centroid = (0.57504102885060016, -1.620422879119763) +description = District 1, LA +station = ('keld', 0.0047153955701781615) +zone = ('laz004', 0.0031192140709348695) + +[fips2202794237] +centroid = (0.5749307938550442, -1.6240923466056185) +description = District 2, LA +station = ('keld', 0.0059279387734037254) +zone = ('laz004', 0.0022358924642202258) + +[fips2202794417] +centroid = (0.57345157495410148, -1.6263646954785453) +description = District 3, LA +station = ('kmne', 0.003984826427340795) +zone = ('laz004', 0.0028210105718951238) + +[fips2202794600] +centroid = (0.57542430315433812, -1.6254516613869494) +description = District 4, LA +station = ('kmne', 0.0060976091941722889) +zone = ('laz004', 0.0032442087904675479) + +[fips2202794798] +centroid = (0.56994674437658666, -1.6244967568465982) +description = District 5, LA +station = ('kmne', 0.0032812102653846844) +zone = ('laz004', 0.0031494591122067607) + +[fips2202794966] +centroid = (0.57053439673573314, -1.6212853859295138) +description = District 6, LA +station = ('krsn', 0.0054171908922090537) +zone = ('laz004', 0.0027749808024373924) + +[fips2202795122] +centroid = (0.57210540250203823, -1.624551054039628) +description = District 7, LA +station = ('kmne', 0.0039410083598510129) +zone = ('laz004', 0.001449017368664439) + +[fips2202795263] +centroid = (0.5732132327914492, -1.622292859786935) +description = District 8, LA +station = ('kmne', 0.0061341676860227094) +zone = ('laz004', 0.00074952786983826841) + +[fips2202795380] +centroid = (0.57210184203036418, -1.6227183186986938) +description = District 9, LA +station = ('kmne', 0.0052782938389748166) +zone = ('laz004', 0.0008194656621064631) + +[fips2202795479] +centroid = (0.57164313459635507, -1.6239957600848132) +description = District 10, LA +station = ('kmne', 0.0041112366704313822) +zone = ('laz004', 0.0014414921262610187) + +[fips22029] +centroid = (0.54925172966386659, -1.5991808607661755) +description = Concordia Parish, LA +station = ('khez', 0.0054889797877511895) +zone = ('laz026', 0.00046396623316050822) + +[fips2202994042] +centroid = (0.55303900687423169, -1.5962816768923955) +description = District 1, LA +station = ('khez', 0.0026764787391874881) +zone = ('msz060', 0.0038939846207756636) + +[fips2202994240] +centroid = (0.55090626688817224, -1.5961388565997048) +description = District 2, LA +station = ('khez', 0.0024358966817576966) +zone = ('msz060', 0.0020455928779158456) + +[fips2202994420] +centroid = (0.55089082072429207, -1.5965238064195244) +description = District 3, LA +station = ('khez', 0.0027480291647325045) +zone = ('msz060', 0.0022834936902731712) + +[fips2202994603] +centroid = (0.55091174722202352, -1.5982571976194351) +description = District 4, LA +station = ('khez', 0.0041636333185902357) +zone = ('laz026', 0.0023012644998902944) + +[fips2202994927] +centroid = (0.5520650956983264, -1.6000020905391166) +description = District 5A, LA +station = ('khez', 0.0055544772557630569) +zone = ('laz024', 0.00265296915677515) + +[fips2202994930] +centroid = (0.54696236383073316, -1.5994736397481977) +description = District 5B, LA +station = ('khez', 0.0070446629937643722) +zone = ('laz026', 0.0018710634722057442) + +[fips22031] +centroid = (0.55953943331340694, -1.636085551093623) +description = De Soto Parish, LA +station = ('kshv', 0.0069553322542458681) +zone = ('laz010', 8.4771683216917535e-05) + +[fips2203110] +centroid = (0.53061007736282539, -1.6045229121808022) +description = Arnaudville town, LA +station = ('klft', 0.0036650886979957241) +zone = ('laz033', 0.0036141988422520492) + +[fips2203145] +centroid = (0.56060637053844375, -1.6251204153482133) +description = Ashland village, LA +station = ('kier', 0.0067145112625497782) +zone = ('laz011', 0.0033957936211122708) + +[fips2203194165] +centroid = (0.56081835822939097, -1.6397114900679337) +description = District 1A, LA +station = ('kshv', 0.005795867453367359) +zone = ('laz010', 0.0034012247748840549) + +[fips2203194174] +centroid = (0.55820443096855665, -1.6402699256154016) +description = District 1B, LA +station = ('kshv', 0.0084396489030178195) +zone = ('txz153', 0.0041204081057000632) + +[fips2203194183] +centroid = (0.55783623630955592, -1.6380428156766871) +description = District 1C, LA +station = ('kaqv', 0.0078880685427032745) +zone = ('laz010', 0.002367634516870957) + +[fips2203194243] +centroid = (0.56394892040210809, -1.6370167366094395) +description = District 2, LA +station = ('kshv', 0.0024786457674184411) +zone = ('laz010', 0.0045547301225572195) + +[fips2203194423] +centroid = (0.56305758075311463, -1.636453693392746) +description = District 3, LA +station = ('kshv', 0.0034657079150286945) +zone = ('laz010', 0.0036036706484071724) + +[fips2203194735] +centroid = (0.56099440959103963, -1.6360885705132289) +description = District 4A, LA +station = ('kshv', 0.0055352797132966194) +zone = ('laz010', 0.0015231034137031159) + +[fips2203194747] +centroid = (0.55943129271295355, -1.6356791860838811) +description = District 4B, LA +station = ('kshv', 0.0071358534989770022) +zone = ('laz010', 0.00029553886145016037) + +[fips2203194753] +centroid = (0.5583560302673849, -1.6338466078225795) +description = District 4C, LA +station = ('kaqv', 0.0061594403559428459) +zone = ('laz010', 0.0021576742161795895) + +[fips2203194756] +centroid = (0.55768840692191202, -1.636286194144432) +description = District 4D, LA +station = ('kaqv', 0.0067164203593245925) +zone = ('laz010', 0.0017976150601638869) + +[fips2203194801] +centroid = (0.56152696190570062, -1.63416853380311) +description = District 5, LA +station = ('kshv', 0.0056800522455363062) +zone = ('laz010', 0.0025870684760830771) + +[fips2203194969] +centroid = (0.55777846591131486, -1.6327707694183575) +description = District 6, LA +station = ('kaqv', 0.005306153929760386) +zone = ('laz010', 0.0032375547863375716) + +[fips22033] +centroid = (0.53309340163573304, -1.5898758123920931) +description = East Baton Rouge Parish, LA +station = ('kbtr', 0.00087428330780933337) +zone = ('laz048', 0.00010651634161976384) + +[fips2203320] +centroid = (0.56987207919118632, -1.6236002684763113) +description = Athens village, LA +station = ('kmne', 0.0040347437590597043) +zone = ('laz004', 0.0030220725589081569) + +[fips2203390] +centroid = (0.5551264381129094, -1.6185892711142029) +description = Atlanta village, LA +station = ('kaex', 0.0053305494050266584) +zone = ('laz019', 0.0028370389776313735) + +[fips2203394045] +centroid = (0.53481059618018523, -1.5901124266787858) +description = District 1, LA +station = ('kbtr', 0.0020113568016854096) +zone = ('laz048', 0.0018242571834496163) + +[fips2203394246] +centroid = (0.53332184778152658, -1.591215998364822) +description = District 2, LA +station = ('kbtr', 0.00051181806588101856) +zone = ('laz048', 0.0011633927328028027) + +[fips2203394426] +centroid = (0.52976933480884725, -1.5904275284219411) +description = District 3, LA +station = ('kbtr', 0.0031607181111015623) +zone = ('laz048', 0.0032541099064036533) + +[fips2203394606] +centroid = (0.53298953709194685, -1.5888443926173343) +description = District 4, LA +station = ('kbtr', 0.0017445699146177239) +zone = ('laz048', 0.00092633429030928877) + +[fips2203394804] +centroid = (0.53242298576345704, -1.5901916122669488) +description = District 5, LA +station = ('kbtr', 0.00075735596946489739) +zone = ('laz048', 0.00061701624140470662) + +[fips2203394972] +centroid = (0.53168504310242126, -1.5898485678024694) +description = District 6, LA +station = ('kbtr', 0.0015048729334674316) +zone = ('laz048', 0.0013102821133697819) + +[fips2203395125] +centroid = (0.53170251384823375, -1.5908148344362509) +description = District 7, LA +station = ('kbtr', 0.0012055424752809415) +zone = ('laz048', 0.0015040666631292098) + +[fips2203395266] +centroid = (0.53127311049236559, -1.588834374427428) +description = District 8, LA +station = ('kbtr', 0.002395879318398663) +zone = ('laz048', 0.0019585909914439131) + +[fips2203395383] +centroid = (0.53026188417705256, -1.5879871567019248) +description = District 9, LA +station = ('kbtr', 0.0036280583118091436) +zone = ('laz048', 0.0031998969797653568) + +[fips2203395482] +centroid = (0.53151907974384915, -1.5913868311920072) +description = District 10, LA +station = ('kbtr', 0.0014584383413583008) +zone = ('laz048', 0.0019423558508051587) + +[fips2203395557] +centroid = (0.53088561249183774, -1.5897277910182315) +description = District 11, LA +station = ('kbtr', 0.0022476263196634636) +zone = ('laz048', 0.002114761386075054) + +[fips2203395623] +centroid = (0.53042688760453616, -1.59063654905316) +description = District 12, LA +station = ('kbtr', 0.0024882944322758651) +zone = ('laz048', 0.0026402708487262253) + +[fips22035] +centroid = (0.57124923123747251, -1.5923361506787519) +description = East Carroll Parish, LA +station = ('ktvr', 0.0073143286060270638) +zone = ('laz009', 4.4687601093311343e-05) + +[fips2203594048] +centroid = (0.56860603480508221, -1.5928256457207661) +description = District 1, LA +station = ('ktvr', 0.0052819551781784456) +zone = ('laz009', 0.0027149430890003579) + +[fips2203594249] +centroid = (0.57110234432762452, -1.5927335796027235) +description = District 2, LA +station = ('ktvr', 0.0073271912116779046) +zone = ('laz009', 0.00037202041004117921) + +[fips2203594429] +centroid = (0.57285105951836779, -1.5930716498788349) +description = District 3, LA +station = ('kbqp', 0.0089235665727288929) +zone = ('laz009', 0.0016724188326526358) + +[fips2203594609] +centroid = (0.57520734127502271, -1.5925525191461216) +description = District 4, LA +station = ('kbqp', 0.0099029092560710512) +zone = ('laz009', 0.0039192887628543534) + +[fips2203594807] +centroid = (0.57269247890253161, -1.5912744494414712) +description = District 5, LA +station = ('ktvr', 0.0083817134308927718) +zone = ('laz009', 0.0016687083113012353) + +[fips2203594975] +centroid = (0.5724328960828825, -1.5912199951688091) +description = District 6, LA +station = ('ktvr', 0.0081190037014046337) +zone = ('laz009', 0.0014866032029647246) + +[fips2203595128] +centroid = (0.57246788993438491, -1.591372728931651) +description = District 7, LA +station = ('ktvr', 0.0081863468583030802) +zone = ('laz009', 0.0014362678600706668) + +[fips2203595269] +centroid = (0.57239706447333905, -1.5917810836167401) +description = District 8, LA +station = ('ktvr', 0.0082176833356292795) +zone = ('laz009', 0.0012054698676939206) + +[fips2203595386] +centroid = (0.57267226798979354, -1.5916952657774197) +description = District 9, LA +station = ('ktvr', 0.0084584936648488106) +zone = ('laz009', 0.0014872384542230837) + +[fips22037] +centroid = (0.53825577140386693, -1.5890076856221511) +description = East Feliciana Parish, LA +station = ('kbtr', 0.005582613740591472) +zone = ('laz036', 9.7810588745924409e-05) + +[fips2203794168] +centroid = (0.53708961221085438, -1.5883332380393029) +description = District 1A, LA +station = ('kbtr', 0.0047165709868620485) +zone = ('laz036', 0.0013990437963452946) + +[fips2203794177] +centroid = (0.5367248907570652, -1.5906878617331686) +description = District 1B, LA +station = ('kbtr', 0.0038208235863233689) +zone = ('laz036', 0.0021519139762249387) + +[fips2203794252] +centroid = (0.53786527143702567, -1.590221457397158) +description = District 2, LA +station = ('kbtr', 0.0049891217091528536) +zone = ('laz036', 0.0011208242709948087) + +[fips2203794432] +centroid = (0.5391564660176511, -1.5906929580945843) +description = District 3, LA +station = ('khzr', 0.0059077894995129658) +zone = ('laz036', 0.0016299237445455647) + +[fips2203794738] +centroid = (0.53805549487220061, -1.5919707136399692) +description = District 4A, LA +station = ('khzr', 0.0044196445074318079) +zone = ('laz036', 0.0025302173484187756) + +[fips2203794750] +centroid = (0.53672073687344546, -1.5925145407815982) +description = District 4B, LA +station = ('kbtr', 0.0040682719598813359) +zone = ('laz035', 0.0034524265381625243) + +[fips2203794810] +centroid = (0.53866552235235765, -1.5886102392448871) +description = District 5, LA +station = ('kbtr', 0.0060766701252154406) +zone = ('laz036', 0.00048884305328834681) + +[fips2203794978] +centroid = (0.5387614281947547, -1.5865231221654745) +description = District 6, LA +station = ('kbtr', 0.0069445286684313703) +zone = ('laz036', 0.0022028672541272208) + +[fips2203795131] +centroid = (0.54001501092999971, -1.5896974921024167) +description = District 7, LA +station = ('khzr', 0.0070866880138436656) +zone = ('laz036', 0.001758352263785599) + +[fips2203810] +centroid = (0.52186161448720392, -1.574170536931192) +description = Avondale CDP, LA +station = ('kmsy', 0.0019370653788591229) +zone = ('laz061', 0.0015958423858797423) + +[fips22039] +centroid = (0.53617724134437439, -1.6127555429959972) +description = Evangeline Parish, LA +station = ('kacp', 0.0043000654908667887) +zone = ('laz032', 0.00014751685996316282) + +[fips2203985] +centroid = (0.5337781117545829, -1.5910027540368132) +description = Baker city, LA +station = ('kbtr', 0.00087865385853115087) +zone = ('laz048', 0.0012183805041820184) + +[fips2203994051] +centroid = (0.53397037722498264, -1.6107746815614461) +description = District 1, LA +station = ('kacp', 0.006568229227893874) +zone = ('laz032', 0.0029202912283891125) + +[fips2203994255] +centroid = (0.53284460495086128, -1.6153581605232785) +description = District 2, LA +station = ('kacp', 0.0043573485541949656) +zone = ('laz032', 0.0041216415889806686) + +[fips2203994435] +centroid = (0.53617596725402039, -1.6139150873911445) +description = District 3, LA +station = ('kacp', 0.0033131509007674987) +zone = ('laz032', 0.00098053376075837796) + +[fips2203994612] +centroid = (0.53845857866294866, -1.614044678088105) +description = District 4, LA +station = ('kacp', 0.0036155302337386014) +zone = ('laz032', 0.0023939299093554711) + +[fips2203994813] +centroid = (0.53864407225585065, -1.6112898678500498) +description = District 5, LA +station = ('kacp', 0.0058567183735338813) +zone = ('laz032', 0.002654299920496604) + +[fips2203994981] +centroid = (0.53403436099536072, -1.6141848803869177) +description = District 6, LA +station = ('kacp', 0.0040434452622343554) +zone = ('laz032', 0.0025845175531297379) + +[fips2203995134] +centroid = (0.53487323604703929, -1.6119917869153242) +description = District 7, LA +station = ('kacp', 0.0052539672195238167) +zone = ('laz032', 0.0016023318084481734) + +[fips2203995272] +centroid = (0.53539451353473244, -1.6102087934580718) +description = District 8, LA +station = ('kacp', 0.0065891849500568488) +zone = ('laz032', 0.0024032726324356144) + +[fips2203995389] +centroid = (0.53580131487678728, -1.6092201167966946) +description = District 9, LA +station = ('kacp', 0.0073628544126382832) +zone = ('laz032', 0.0031106455903104134) + +[fips2203995485] +centroid = (0.53631304541347202, -1.6099079859614907) +description = District 10, LA +station = ('kacp', 0.0067267108760454735) +zone = ('laz032', 0.0024749807656874677) + +[fips2203995560] +centroid = (0.53582430086303612, -1.6104681319316256) +description = District 11, LA +station = ('kacp', 0.0062960998334472022) +zone = ('laz032', 0.0020549901277203339) + +[fips2203995626] +centroid = (0.53570102825796773, -1.6106433280819408) +description = District 12, LA +station = ('kacp', 0.0061659487451143878) +zone = ('laz032', 0.0019450653073825642) + +[fips2203995674] +centroid = (0.53561849163764086, -1.6107960792980753) +description = District 13, LA +station = ('kacp', 0.0060507311471841314) +zone = ('laz032', 0.0018509177213430139) + +[fips2204020] +centroid = (0.52082853664965589, -1.5979342069880611) +description = Baldwin town, LA +station = ('kptn', 0.0039992612953002318) +zone = ('laz054', 0.0028732060711443783) + +[fips2204055] +centroid = (0.54835257093982426, -1.6128259321247298) +description = Ball town, LA +station = ('kesf', 0.0016418458685504983) +zone = ('laz020', 0.0038848790851110089) + +[fips22041] +centroid = (0.56091878447455068, -1.5999799946707862) +description = Franklin Parish, LA +station = ('kmlu', 0.0084850626857913124) +zone = ('laz023', 9.2133034977923153e-05) + +[fips2204194054] +centroid = (0.5586722664745537, -1.6019335067959586) +description = District 1, LA +station = ('kmlu', 0.0095849512853023056) +zone = ('laz023', 0.0027044664704373284) + +[fips2204194258] +centroid = (0.56101313697391342, -1.6025066729223134) +description = District 2, LA +station = ('kmlu', 0.0072503763431387529) +zone = ('laz023', 0.0021222981011156188) + +[fips2204194438] +centroid = (0.55961711791841329, -1.5983801909718232) +description = District 3, LA +station = ('khez', 0.0088410056984257069) +zone = ('laz023', 0.0018376199235698011) + +[fips2204194615] +centroid = (0.5634154081563586, -1.5983108141340565) +description = District 4, LA +station = ('kmlu', 0.0078866769711483618) +zone = ('laz023', 0.0029580075053930364) + +[fips2204194816] +centroid = (0.5611392544656626, -1.6003296713864235) +description = District 5, LA +station = ('kmlu', 0.008128245234212907) +zone = ('laz023', 0.00041107079589386539) + +[fips2204194984] +centroid = (0.56369792460237877, -1.6001193243049729) +description = District 6, LA +station = ('kmlu', 0.0064594273878319083) +zone = ('laz015', 0.0024323509202969881) + +[fips2204195137] +centroid = (0.55948492668086724, -1.6002420907645583) +description = District 7, LA +station = ('kmlu', 0.0095238531453844776) +zone = ('laz023', 0.0013595491222565502) + +[fips2204230] +centroid = (0.55983919361243706, -1.6071875412564072) +description = Banks Springs CDP, LA +station = ('kmlu', 0.0077215089440731315) +zone = ('laz021', 0.00054285678648300847) + +[fips22043] +centroid = (0.55148541949386154, -1.6155067054959158) +description = Grant Parish, LA +station = ('kesf', 0.0052043739754268287) +zone = ('laz020', 4.7959486270088458e-05) + +[fips2204300] +centroid = (0.51860769244295568, -1.5729168320228994) +description = Barataria CDP, LA +station = ('knbg', 0.0026187034920513801) +zone = ('laz061', 0.0018857250020464322) + +[fips2204394057] +centroid = (0.55274434293661756, -1.6195824158184653) +description = District 1, LA +station = ('kaex', 0.0029315248477039188) +zone = ('laz020', 0.0037126158653366238) + +[fips2204394261] +centroid = (0.55093194068146911, -1.6175147766135054) +description = District 2, LA +station = ('kaex', 0.0038259440180962809) +zone = ('laz020', 0.0018411155626044079) + +[fips2204394441] +centroid = (0.54909396935277888, -1.6172305148382329) +description = District 3, LA +station = ('kaex', 0.0043486054571961544) +zone = ('laz020', 0.0028532710342020653) + +[fips2204394618] +centroid = (0.54877508024514698, -1.6151309884678389) +description = District 4, LA +station = ('kesf', 0.0036534288689130607) +zone = ('laz020', 0.0027585746181022219) + +[fips2204394819] +centroid = (0.54941605241294189, -1.6145975809418442) +description = District 5, LA +station = ('kesf', 0.0034140662400736045) +zone = ('laz020', 0.0022292910940738624) + +[fips2204394987] +centroid = (0.54949110157077763, -1.6129364289196737) +description = District 6, LA +station = ('kesf', 0.002242620913486322) +zone = ('laz020', 0.0029597862183354858) + +[fips2204395140] +centroid = (0.55054006190451876, -1.6123615523706518) +description = District 7, LA +station = ('kesf', 0.0027849073980017809) +zone = ('laz020', 0.0028204534919561877) + +[fips2204395278] +centroid = (0.55316149408113668, -1.6145410846339572) +description = District 8, LA +station = ('kesf', 0.0059767285597168637) +zone = ('laz020', 0.0018217478749296568) + +[fips22045] +centroid = (0.51672240523824398, -1.6029576136411514) +description = Iberia Parish, LA +station = ('k7r4', 0.0053845358848625697) +zone = ('laz053', 0.0053067872447390557) + +[fips2204580] +centroid = (0.53207254110294899, -1.6161926897051195) +description = Basile town, LA +station = ('k3r7', 0.0043761556651761039) +zone = ('laz043', 0.004435206938035203) + +[fips2204594060] +centroid = (0.52391557031082836, -1.6028357896593619) +description = District 1, LA +station = ('kara', 0.00076664762031325158) +zone = ('laz053', 0.0026851311024206708) + +[fips2204594264] +centroid = (0.5236204525876087, -1.6031265789660367) +description = District 2, LA +station = ('kara', 0.00072967705547798329) +zone = ('laz053', 0.00262362530222564) + +[fips2204594444] +centroid = (0.52423447687175273, -1.6037232546774161) +description = District 3, LA +station = ('kara', 7.2838890974788424e-05) +zone = ('laz053', 0.0034241872430111836) + +[fips2204594621] +centroid = (0.52351189310813462, -1.602510617366423) +description = District 4, LA +station = ('kara', 0.0012038287745385597) +zone = ('laz053', 0.0021931206288607918) + +[fips2204594822] +centroid = (0.5232569005044182, -1.6031550103795518) +description = District 5, LA +station = ('kara', 0.0010244365613945436) +zone = ('laz053', 0.0023974811999832109) + +[fips2204594990] +centroid = (0.52332941893483853, -1.6021576943383773) +description = District 6, LA +station = ('kara', 0.0015594646484451769) +zone = ('laz053', 0.0018694210384071282) + +[fips2204595143] +centroid = (0.52382025788037689, -1.6022749630108188) +description = District 7, LA +station = ('kara', 0.0012577062685072426) +zone = ('laz053', 0.0023450087160187955) + +[fips2204595281] +centroid = (0.52400018387296499, -1.6019045866902528) +description = District 8, LA +station = ('kara', 0.0015362219369035573) +zone = ('laz053', 0.0023815348150171612) + +[fips2204595395] +centroid = (0.52464553681718251, -1.6005171197480876) +description = District 9, LA +station = ('kara', 0.0027656962562250427) +zone = ('laz053', 0.0029254662411414664) + +[fips2204595491] +centroid = (0.51672240523824398, -1.6029576136411514) +description = District 10, LA +station = ('k7r4', 0.0053845358848625697) +zone = ('laz053', 0.0053067872447390557) + +[fips2204595566] +centroid = (0.5235921608004338, -1.5968699052101949) +description = District 11, LA +station = ('kptn', 0.0055041819661788604) +zone = ('laz053', 0.0040268798471492584) + +[fips2204595629] +centroid = (0.52124137683092264, -1.6011544965376234) +description = District 12, LA +station = ('kara', 0.0036574508542153569) +zone = ('laz053', 0.00052582525378028948) + +[fips2204595677] +centroid = (0.52245329855692246, -1.6046163396556614) +description = District 13, LA +station = ('kara', 0.0019131110455794052) +zone = ('laz053', 0.0032100546665907951) + +[fips2204595707] +centroid = (0.52422629127756093, -1.604555759277325) +description = District 14, LA +station = ('kara', 0.00077104171367310952) +zone = ('laz044', 0.0035593296627178294) + +[fips2204615] +centroid = (0.56302695022474214, -1.6012929884137692) +description = Baskin village, LA +station = ('kmlu', 0.0061629000218726485) +zone = ('laz023', 0.002450586458173659) + +[fips2204685] +centroid = (0.57203096420944066, -1.6040579390147784) +description = Bastrop city, LA +station = ('kbqp', 0.00045933422225056847) +zone = ('laz007', 0.0017210485784911363) + +[fips22047] +centroid = (0.52863220044129544, -1.5945877824934573) +description = Iberville Parish, LA +station = ('kbtr', 0.0053449991878019264) +zone = ('laz046', 0.00056140612950245853) + +[fips2204794063] +centroid = (0.52680971018307043, -1.590067275011037) +description = District 1, LA +station = ('kbtr', 0.006136471223686572) +zone = ('laz049', 0.0029290239099199829) + +[fips2204794267] +centroid = (0.52547608664832901, -1.5924134164047377) +description = District 2, LA +station = ('kptn', 0.0069714135167697798) +zone = ('laz046', 0.0031202378226644826) + +[fips2204794447] +centroid = (0.52724998694017855, -1.5919154914224363) +description = District 3, LA +station = ('kbtr', 0.0057289953265703243) +zone = ('laz046', 0.0022707996161118343) + +[fips2204794624] +centroid = (0.52740560049628626, -1.5902412494308757) +description = District 4, LA +station = ('kbtr', 0.0055280727970263895) +zone = ('laz049', 0.0030695861143519181) + +[fips2204794825] +centroid = (0.52845888924657236, -1.5921245644135327) +description = District 5, LA +station = ('kbtr', 0.0045784999291055397) +zone = ('laz046', 0.0019515064462950352) + +[fips2204794993] +centroid = (0.52807538805003162, -1.5922318672559452) +description = District 6, LA +station = ('kbtr', 0.0049730396052000674) +zone = ('laz046', 0.0018280143527691823) + +[fips2204795146] +centroid = (0.52846264170446411, -1.5925513323222305) +description = District 7, LA +station = ('kbtr', 0.0046757663216151343) +zone = ('laz046', 0.0015910285038306191) + +[fips2204795284] +centroid = (0.52877573631897934, -1.5923989476252387) +description = District 8, LA +station = ('kbtr', 0.0043373888522291364) +zone = ('laz046', 0.0018097357145303839) + +[fips2204795398] +centroid = (0.52883053965749205, -1.5929416228495614) +description = District 9, LA +station = ('kbtr', 0.0044517499696197929) +zone = ('laz046', 0.0014117934454699196) + +[fips2204795494] +centroid = (0.52698759414043372, -1.5931684807457356) +description = District 10, LA +station = ('kbtr', 0.0062436343833660989) +zone = ('laz046', 0.0015162899097061011) + +[fips2204795569] +centroid = (0.52923444375298856, -1.5959887408307407) +description = District 11, LA +station = ('kbtr', 0.0057435266220674727) +zone = ('laz046', 0.0018085926627985816) + +[fips2204795632] +centroid = (0.52934085647748264, -1.597399734811223) +description = District 12, LA +station = ('kbtr', 0.0066663996713689135) +zone = ('laz046', 0.0029082892396699884) + +[fips2204795678] +centroid = (0.52867398362358808, -1.5903009396912937) +description = District 13, LA +station = ('kbtr', 0.0042613303612655754) +zone = ('laz049', 0.0034625602896346292) + +[fips22049] +centroid = (0.56381953914465777, -1.6154186710884451) +description = Jackson Parish, LA +station = ('krsn', 0.0036941469852658816) +zone = ('laz013', 4.586392963111981e-05) + +[fips2204994066] +centroid = (0.56510120422756727, -1.6176833754192479) +description = District 1, LA +station = ('krsn', 0.0027867197213754069) +zone = ('laz013', 0.0023149293658040627) + +[fips2204994270] +centroid = (0.56472163002184361, -1.6147349907138537) +description = District 2, LA +station = ('krsn', 0.0029529654375451339) +zone = ('laz013', 0.0011158951090809077) + +[fips2204994450] +centroid = (0.56203965237347397, -1.6134414922986158) +description = District 3, LA +station = ('krsn', 0.0058488124147361049) +zone = ('laz013', 0.002421306533858282) + +[fips2204994627] +centroid = (0.56417911187715375, -1.6166835984638279) +description = District 4, LA +station = ('krsn', 0.0033592538849298477) +zone = ('laz013', 0.0011282460115728686) + +[fips2204994828] +centroid = (0.56269315600529812, -1.6179860504181287) +description = District 5, LA +station = ('krsn', 0.0050841482803860244) +zone = ('laz013', 0.0024124367384057962) + +[fips2204994996] +centroid = (0.56170657373902344, -1.6186748969673059) +description = District 6, LA +station = ('krsn', 0.0062126274244886457) +zone = ('laz013', 0.0034329713177641114) + +[fips2204995149] +centroid = (0.56293226611282132, -1.6186340562628092) +description = District 7, LA +station = ('krsn', 0.0050769834089447862) +zone = ('laz013', 0.0028320222500724441) + +[fips2205000] +centroid = (0.53142577444203754, -1.5904469713898084) +description = Baton Rouge city, LA +station = ('kbtr', 0.0015251235604928843) +zone = ('laz048', 0.0016325550527713142) + +[fips22051] +centroid = (0.514929725203643, -1.5714286770361867) +description = Jefferson Parish, LA +station = ('kgao', 0.0035666066311840967) +zone = ('laz068', 0.00031409702550019532) + +[fips2205105] +centroid = (0.56668610281471832, -1.6087345836520826) +description = Bawcomville CDP, LA +station = ('kmlu', 0.0022293905489553065) +zone = ('laz014', 0.00033024783690870774) + +[fips2205175] +centroid = (0.51718514438282515, -1.582469839323813) +description = Bayou Blue CDP, LA +station = ('khum', 0.0011499365924553706) +zone = ('laz059', 0.0021966608174397721) + +[fips2205194069] +centroid = (0.514929725203643, -1.5714286770361867) +description = District 1, LA +station = ('kgao', 0.0035666066311840967) +zone = ('laz068', 0.00031409702550019532) + +[fips2205194273] +centroid = (0.52232620368079219, -1.5733267924109007) +description = District 2, LA +station = ('kmsy', 0.0020348989885382311) +zone = ('laz061', 0.0018590977167275715) + +[fips2205194453] +centroid = (0.52225040403137812, -1.5736287692780808) +description = District 3, LA +station = ('kmsy', 0.0018913407239491337) +zone = ('laz061', 0.0018089953022541062) + +[fips2205194630] +centroid = (0.5243582556223042, -1.5749520081037727) +description = District 4, LA +station = ('kmsy', 0.00078046913196775486) +zone = ('laz060', 0.0033699241731355322) + +[fips2205194829] +centroid = (0.52400754916240844, -1.57297833742574) +description = District 5, LA +station = ('knew', 0.0014609365037740693) +zone = ('laz062', 0.003356051976913747) + +[fips2205210] +centroid = (0.51704300476854281, -1.5839040810899319) +description = Bayou Cane CDP, LA +station = ('khum', 0.0016289511878737604) +zone = ('laz065', 0.0013484762048292121) + +[fips2205260] +centroid = (0.51975814367270035, -1.584573694110752) +description = Bayou Country Club CDP, LA +station = ('khum', 0.0041617177605158817) +zone = ('laz065', 0.0025693310084582699) + +[fips22053] +centroid = (0.52830294407790668, -1.6199486557087037) +description = Jefferson Davis Parish, LA +station = ('k3r7', 0.0022020010795208785) +zone = ('laz042', 5.8627855104975102e-05) + +[fips2205315] +centroid = (0.52021568173611066, -1.5781490149611133) +description = Bayou Gauche CDP, LA +station = ('kmsy', 0.0042615273964031041) +zone = ('laz060', 0.0016139986113179008) + +[fips2205350] +centroid = (0.52737034484539602, -1.5914015094110163) +description = Bayou Goula CDP, LA +station = ('kbtr', 0.0055559794991660947) +zone = ('laz046', 0.0026508521275321346) + +[fips2205378] +centroid = (0.51866668457167309, -1.5893074633744737) +description = Bayou L'Ourse CDP, LA +station = ('k7r3', 0.00067000370049604676) +zone = ('laz056', 0.0031973757777232262) + +[fips2205394072] +centroid = (0.52512674154524985, -1.618788325915393) +description = District 1, LA +station = ('k3r7', 0.0029421880423265347) +zone = ('laz042', 0.0032761414690758136) + +[fips2205394276] +centroid = (0.52589053253250762, -1.6171486239897293) +description = District 2, LA +station = ('k3r7', 0.0019624282123609791) +zone = ('laz042', 0.0033587960767467373) + +[fips2205394456] +centroid = (0.52695413617867293, -1.6167203376445825) +description = District 3, LA +station = ('k3r7', 0.001086906406484651) +zone = ('laz042', 0.0030455789316421239) + +[fips2205394633] +centroid = (0.52694211086012666, -1.6179450002741218) +description = District 4, LA +station = ('k3r7', 0.00098691890591684375) +zone = ('laz042', 0.0021450055717826583) + +[fips2205394831] +centroid = (0.52798197802846492, -1.6175138515890015) +description = District 5, LA +station = ('k3r7', 0.00015506915731773629) +zone = ('laz042', 0.0020848070583704228) + +[fips2205394999] +centroid = (0.52739802576733263, -1.617214370542652) +description = District 6, LA +station = ('k3r7', 0.00048464151323990886) +zone = ('laz042', 0.0024792346979413044) + +[fips2205395152] +centroid = (0.52736989105979049, -1.6166079035341689) +description = District 7, LA +station = ('k3r7', 0.00086899321532398453) +zone = ('laz042', 0.0029845135880138328) + +[fips2205395290] +centroid = (0.5290516554204272, -1.6178561281086101) +description = District 8, LA +station = ('k3r7', 0.0012646714358717766) +zone = ('laz042', 0.001940525545146492) + +[fips2205395404] +centroid = (0.53110526217820131, -1.6178837566706694) +description = District 9, LA +station = ('k3r7', 0.0032911788929151243) +zone = ('laz042', 0.0033405011975445003) + +[fips2205395500] +centroid = (0.53003240828700038, -1.622006189457295) +description = District 10, LA +station = ('kcwf', 0.0041974964226478458) +zone = ('laz042', 0.0025372131198096604) + +[fips2205395572] +centroid = (0.52699251596892427, -1.6193713531520215) +description = District 11, LA +station = ('k3r7', 0.0018557127658673277) +zone = ('laz042', 0.0013463940323021676) + +[fips2205395635] +centroid = (0.5283851316323831, -1.6197503513990921) +description = District 12, LA +station = ('k3r7', 0.0020553760116770316) +zone = ('laz042', 0.00018592019887613361) + +[fips2205395680] +centroid = (0.52642556321470646, -1.6214053424090034) +description = District 13, LA +station = ('k3r7', 0.0036913085101009289) +zone = ('laz042', 0.0022432560247964755) + +[fips22055] +centroid = (0.52720300267671472, -1.6068228896157881) +description = Lafayette Parish, LA +station = ('klft', 0.00097457632960380215) +zone = ('laz044', 5.4440857613079655e-06) + +[fips2205525] +centroid = (0.51819822074714528, -1.5929092993518144) +description = Bayou Vista CDP, LA +station = ('kptn', 0.0011042185898736886) +zone = ('laz054', 0.0025960826758634941) + +[fips2205595737] +centroid = (0.52903401014168949, -1.6057805615332044) +description = District A, LA +station = ('klft', 0.001945732436149431) +zone = ('laz044', 0.0020418355583439007) + +[fips2205595752] +centroid = (0.5275320496005933, -1.6080879217109261) +description = District B, LA +station = ('klft', 0.0021080291855272285) +zone = ('laz044', 0.0011465512437351937) + +[fips2205595767] +centroid = (0.52771539643851528, -1.6056831372543581) +description = District C, LA +station = ('klft', 0.00062619552161867552) +zone = ('laz044', 0.0011082350279427795) + +[fips2205595782] +centroid = (0.52735400856359738, -1.6059189486895951) +description = District D, LA +station = ('klft', 0.00032381606800911959) +zone = ('laz044', 0.00079232877662932565) + +[fips2205595797] +centroid = (0.52732732247933434, -1.6066764564915457) +description = District E, LA +station = ('klft', 0.0008743362127874891) +zone = ('laz044', 0.00017710578182965318) + +[fips2205595812] +centroid = (0.52647176208000668, -1.6067862900613736) +description = District F, LA +station = ('klft', 0.0011218555240810745) +zone = ('laz044', 0.00072814964277386829) + +[fips2205595827] +centroid = (0.52575235481562721, -1.6056229757550418) +description = District G, LA +station = ('klft', 0.0013388643351859829) +zone = ('laz044', 0.0017781239193797747) + +[fips22057] +centroid = (0.51473238082512007, -1.5776877418931037) +description = Lafourche Parish, LA +station = ('kgao', 0.0021932781850758551) +zone = ('laz067', 0.0029784495060559695) + +[fips2205794075] +centroid = (0.5193936665650063, -1.5860665440331529) +description = District 1, LA +station = ('k7r3', 0.0035636909581923865) +zone = ('laz065', 0.0021678224772108006) + +[fips2205794279] +centroid = (0.52060785721903369, -1.5831244599663585) +description = District 2, LA +station = ('khum', 0.0046115881224016633) +zone = ('laz059', 0.0027364227380359029) + +[fips2205794459] +centroid = (0.5201189904955501, -1.5852286987257329) +description = District 3, LA +station = ('k7r3', 0.0044952867340109347) +zone = ('laz065', 0.0028261279805759836) + +[fips2205794636] +centroid = (0.51933991042404493, -1.5839246061619354) +description = District 4, LA +station = ('khum', 0.0035497208450412888) +zone = ('laz065', 0.0024234219093723711) + +[fips2205794834] +centroid = (0.51779885450770402, -1.58181731307637) +description = District 5, LA +station = ('khum', 0.0018423354166938941) +zone = ('laz059', 0.0013610634610676691) + +[fips2205795002] +centroid = (0.51866298447365888, -1.578981048322124) +description = District 6, LA +station = ('khum', 0.0039872258672177105) +zone = ('laz059', 0.0015484050522457699) + +[fips2205795155] +centroid = (0.5158047460241304, -1.5778624493512283) +description = District 7, LA +station = ('kgao', 0.0028928116389995923) +zone = ('laz067', 0.0038879185321630755) + +[fips2205795293] +centroid = (0.51582548053564403, -1.5755906066237848) +description = District 8, LA +station = ('kgao', 0.0019291928021761768) +zone = ('laz067', 0.0031707625297972362) + +[fips2205795407] +centroid = (0.51064213190990126, -1.5747189368354613) +description = District 9, LA +station = ('kxpy', 0.0026042366344579976) +zone = ('laz067', 0.0020754533368803848) + +[fips22059] +centroid = (0.55293489798435025, -1.6085270116441428) +description = La Salle Parish, LA +station = ('kesf', 0.005315094669575555) +zone = ('laz022', 7.5159191147136466e-05) + +[fips2205945] +centroid = (0.57163241827474776, -1.6377675248937698) +description = Belcher village, LA +station = ('kdtn', 0.0040277870489590049) +zone = ('laz001', 0.0030809479893459022) + +[fips2205994078] +centroid = (0.55618155945891012, -1.6076928664347372) +description = District 1, LA +station = ('kesf', 0.0086041221154068218) +zone = ('laz022', 0.003389459011436155) + +[fips2205994282] +centroid = (0.55610331634854326, -1.6097122996457571) +description = District 2, LA +station = ('kesf', 0.0081372294487198574) +zone = ('laz022', 0.0033999340803056032) + +[fips2205994462] +centroid = (0.55576926032971152, -1.6109472248112982) +description = District 3, LA +station = ('kesf', 0.0077358784517122161) +zone = ('laz022', 0.0035733882670353646) + +[fips2205994639] +centroid = (0.55419855126937922, -1.6078282690781067) +description = District 4, LA +station = ('kesf', 0.0067105968356844566) +zone = ('laz022', 0.0014537368516786791) + +[fips2205994837] +centroid = (0.55319884412712939, -1.6078346046232914) +description = District 5, LA +station = ('kesf', 0.0058034933891048454) +zone = ('laz022', 0.00066023809966064785) + +[fips2205995005] +centroid = (0.552434494634511, -1.6079397083508464) +description = District 6, LA +station = ('kesf', 0.0050897467209459939) +zone = ('laz022', 0.00064246202964164309) + +[fips2205995158] +centroid = (0.55291119641310815, -1.6092020526389366) +description = District 7, LA +station = ('kesf', 0.005097474833177352) +zone = ('laz022', 0.00059736670733095596) + +[fips2205995296] +centroid = (0.55215543394040956, -1.6103308268793712) +description = District 8, LA +station = ('kesf', 0.0041545143935149582) +zone = ('laz022', 0.0017095303043384576) + +[fips2205995410] +centroid = (0.55061238834872139, -1.6065491870824904) +description = District 9, LA +station = ('kesf', 0.0045462016632847315) +zone = ('laz022', 0.0027983670055881813) + +[fips2205995506] +centroid = (0.5528379100378169, -1.608294533787777) +description = District 10, LA +station = ('kesf', 0.0053068806130229058) +zone = ('laz022', 0.00017864753286053251) + +[fips22061] +centroid = (0.56899737252996441, -1.6172584226529723) +description = Lincoln Parish, LA +station = ('krsn', 0.0018619681758270494) +zone = ('laz005', 3.9293418375666825e-05) + +[fips2206120] +centroid = (0.52101492036047636, -1.570905933471922) +description = Belle Chasse CDP, LA +station = ('knbg', 0.00036106472430265634) +zone = ('laz063', 0.001318890640371814) + +[fips2206194080] +centroid = (0.56817261719193446, -1.6184148952686361) +description = District 1, LA +station = ('krsn', 0.0021721582659552483) +zone = ('laz005', 0.0012527625063714857) + +[fips2206194284] +centroid = (0.56734252114639339, -1.6183098089943737) +description = District 2, LA +station = ('krsn', 0.0019771557895521589) +zone = ('laz005', 0.0018663528878173968) + +[fips2206194465] +centroid = (0.56861273686940983, -1.6195496734416981) +description = District 3, LA +station = ('krsn', 0.0032206568601592486) +zone = ('laz005', 0.0019322683764112362) + +[fips2206194642] +centroid = (0.57052663002056181, -1.6172910952165698) +description = District 4, LA +station = ('krsn', 0.0032393192068392845) +zone = ('laz005', 0.0015214081039073533) + +[fips2206194840] +centroid = (0.56853314985551895, -1.6141186102352196) +description = District 5, LA +station = ('krsn', 0.0018813601896596858) +zone = ('laz005', 0.0027251988612312567) + +[fips2206195007] +centroid = (0.5679973337751566, -1.6174883348753377) +description = District 6, LA +station = ('krsn', 0.0013781924690325898) +zone = ('laz005', 0.0010198130416216274) + +[fips2206195160] +centroid = (0.56824658424563401, -1.61664371769042) +description = District 7, LA +station = ('krsn', 0.00095013443711177412) +zone = ('laz005', 0.00094088227707792558) + +[fips2206195298] +centroid = (0.56825550287811155, -1.6159826218763493) +description = District 8, LA +station = ('krsn', 0.00077145227514049106) +zone = ('laz005', 0.0013424284671419578) + +[fips2206195412] +centroid = (0.56766046777622925, -1.6166235765908519) +description = District 9, LA +station = ('krsn', 0.0005776155223004445) +zone = ('laz005', 0.0014619980400742765) + +[fips2206195508] +centroid = (0.56725176402528965, -1.6161536990496299) +description = District 10, LA +station = ('krsn', 0.00027866524945532607) +zone = ('laz005', 0.0020037625427438374) + +[fips2206195577] +centroid = (0.5668437060461734, -1.6174752972658251) +description = District 11, LA +station = ('krsn', 0.001421026750979602) +zone = ('laz005', 0.002166367206704128) + +[fips2206195640] +centroid = (0.56761301227386751, -1.6174124828660457) +description = District 12, LA +station = ('krsn', 0.0012220822538688597) +zone = ('laz005', 0.0013952417265308255) + +[fips2206260] +centroid = (0.52433417007862659, -1.589117955524292) +description = Belle Rose CDP, LA +station = ('k7r3', 0.0060196126864274519) +zone = ('laz056', 0.0024778777430517003) + +[fips22063] +centroid = (0.53128553723663974, -1.5834931433175499) +description = Livingston Parish, LA +station = ('khdc', 0.0048690601694361324) +zone = ('laz050', 0.00025270752940613088) + +[fips2206394081] +centroid = (0.53334431016899975, -1.5838342155599745) +description = District 1, LA +station = ('khdc', 0.0049964838758156166) +zone = ('laz050', 0.0018829140538172222) + +[fips2206394285] +centroid = (0.53391147236272785, -1.5866396403463376) +description = District 2, LA +station = ('kbtr', 0.0037765921811641601) +zone = ('laz048', 0.0029697982648935052) + +[fips2206394468] +centroid = (0.5324203852228715, -1.587203346788147) +description = District 3, LA +station = ('kbtr', 0.0031939264345361529) +zone = ('laz048', 0.0024093833112321964) + +[fips2206394645] +centroid = (0.53195640689452139, -1.5875514701607496) +description = District 4, LA +station = ('kbtr', 0.0030111556705813918) +zone = ('laz048', 0.0022891283578292897) + +[fips2206394843] +centroid = (0.53065699181311909, -1.5868124628488702) +description = District 5, LA +station = ('kbtr', 0.0041568632897564768) +zone = ('laz050', 0.0028031468279296253) + +[fips2206395008] +centroid = (0.53035977969479697, -1.584518681332729) +description = District 6, LA +station = ('kbtr', 0.0060364902960032517) +zone = ('laz050', 0.0013116497108642848) + +[fips2206395161] +centroid = (0.53250925738838306, -1.5861137726427117) +description = District 7, LA +station = ('kbtr', 0.0041144120685371859) +zone = ('laz050', 0.0023279495218089317) + +[fips2206395299] +centroid = (0.52915578176360123, -1.5813847332212632) +description = District 8, LA +station = ('khdc', 0.0045376330531439746) +zone = ('laz050', 0.0030528463664815241) + +[fips2206395413] +centroid = (0.53279861552507124, -1.581570157000995) +description = District 9, LA +station = ('khdc', 0.0030058273584522136) +zone = ('laz050', 0.0022684022743154888) + +[fips22065] +centroid = (0.56489019392100126, -1.5924511329698734) +description = Madison Parish, LA +station = ('ktvr', 0.0031222851641806815) +zone = ('laz016', 3.9392591476681616e-05) + +[fips2206594084] +centroid = (0.56530748469186054, -1.5894020253133467) +description = District 1, LA +station = ('ktvr', 0.00090066252201264252) +zone = ('laz016', 0.0026417148079114603) + +[fips2206594288] +centroid = (0.56362537126537338, -1.5940397840149161) +description = District 2, LA +station = ('ktvr', 0.0045518538293303715) +zone = ('laz016', 0.0018050028207495781) + +[fips2206594471] +centroid = (0.5668836915393366, -1.5942276338023085) +description = District 3, LA +station = ('ktvr', 0.0051486831143263394) +zone = ('laz016', 0.0024986563605311979) + +[fips2206594648] +centroid = (0.56580460682270606, -1.5916741822000555) +description = District 4, LA +station = ('ktvr', 0.0027388140908677252) +zone = ('laz016', 0.0011639942143516051) + +[fips2206594846] +centroid = (0.56575978676751482, -1.5913934285365796) +description = District 5, LA +station = ('ktvr', 0.0025075941659773488) +zone = ('laz016', 0.0012859263992479834) + +[fips2206595011] +centroid = (0.56569440673373506, -1.5915300180038408) +description = District 6, LA +station = ('ktvr', 0.002581095855745905) +zone = ('laz016', 0.0011581427249926287) + +[fips2206595164] +centroid = (0.56554170787747826, -1.5915971608201651) +description = District 7, LA +station = ('ktvr', 0.0025715467407093438) +zone = ('laz016', 0.0010112647303355817) + +[fips2206595302] +centroid = (0.56540846944238088, -1.5913935158030423) +description = District 8, LA +station = ('ktvr', 0.0023630413444459385) +zone = ('laz016', 0.0010711624118528119) + +[fips22067] +centroid = (0.57281720013087911, -1.60221921719451) +description = Morehouse Parish, LA +station = ('kbqp', 0.0015687496554946045) +zone = ('laz007', 2.0925257699888369e-05) + +[fips2206750] +centroid = (0.55358670864680004, -1.6320255836409263) +description = Belmont CDP, LA +station = ('kaqv', 0.0012469433564500252) +zone = ('laz017', 0.0027783517891442678) + +[fips2206794087] +centroid = (0.57469417956835145, -1.6019898460242128) +description = District 1, LA +station = ('kbqp', 0.0032250635265453835) +zone = ('laz007', 0.0018803489107632235) + +[fips2206794291] +centroid = (0.57107797953126671, -1.6014213573802532) +description = District 2, LA +station = ('kbqp', 0.0019654918095031284) +zone = ('laz007', 0.0018790662618904572) + +[fips2206794474] +centroid = (0.57230051285911876, -1.6027289755091398) +description = District 3, LA +station = ('kbqp', 0.00091020756719144801) +zone = ('laz007', 0.00066595817870280149) + +[fips2206794651] +centroid = (0.57155330249975489, -1.6058079981090458) +description = District 4, LA +station = ('kbqp', 0.0018624043725779147) +zone = ('laz007', 0.0032569278956699425) + +[fips2206794849] +centroid = (0.57216542437501428, -1.6040280066181067) +description = District 5, LA +station = ('kbqp', 0.00052998324443378206) +zone = ('laz007', 0.0016401111387562494) + +[fips2206795014] +centroid = (0.5716969430971941, -1.6037561890404013) +description = District 6, LA +station = ('kbqp', 0.00014401302470800056) +zone = ('laz007', 0.0017014238934888494) + +[fips2206795167] +centroid = (0.57207286956478109, -1.6045437339587785) +description = District 7, LA +station = ('kbqp', 0.00084274606227023564) +zone = ('laz007', 0.0020761792938987292) + +[fips22069] +centroid = (0.55387992396113506, -1.6246590375604488) +description = Natchitoches Parish, LA +station = ('kier', 0.00019443828505948024) +zone = ('laz018', 0.00024972622041449414) + +[fips2206925] +centroid = (0.57058492401757832, -1.636077330592846) +description = Benton town, LA +station = ('kdtn', 0.0027747879005616456) +zone = ('laz002', 0.0019972835787981352) + +[fips2206994090] +centroid = (0.55409805521104938, -1.6236729614396568) +description = District 1, LA +station = ('kier', 0.0010522646081270958) +zone = ('laz018', 0.0010741185737272402) + +[fips2206994294] +centroid = (0.55457023658688387, -1.6248106892191545) +description = District 2, LA +station = ('kier', 0.00067856272004060989) +zone = ('laz018', 0.00088924657713093777) + +[fips2206994477] +centroid = (0.55432355175040704, -1.6250007032148193) +description = District 3, LA +station = ('kier', 0.00043953808394701948) +zone = ('laz018', 0.00065720385136322805) + +[fips2206994654] +centroid = (0.55434041163098124, -1.6257012434699847) +description = District 4, LA +station = ('kier', 0.00082342066654798711) +zone = ('laz018', 0.00098727085198536328) + +[fips2206994852] +centroid = (0.55387992396113506, -1.6246590375604488) +description = District 5, LA +station = ('kier', 0.00019443828505948024) +zone = ('laz018', 0.00024972622041449414) + +[fips2206995017] +centroid = (0.55417919556797457, -1.6244579581773264) +description = District 6, LA +station = ('kier', 0.00046260908794648408) +zone = ('laz018', 0.0005931460160583773) + +[fips2206995170] +centroid = (0.55812821244012201, -1.6233734280334295) +description = District 7, LA +station = ('kier', 0.0044243203775658508) +zone = ('laz018', 0.0046174366362006303) + +[fips2206995308] +centroid = (0.55696418254879687, -1.6255593831083825) +description = District 8, LA +station = ('kier', 0.0031221174697729122) +zone = ('laz018', 0.0033398119685816574) + +[fips2206995419] +centroid = (0.55489053941120992, -1.6286452473989561) +description = District 9, LA +station = ('kaqv', 0.0029831132808660192) +zone = ('laz018', 0.003456532771008864) + +[fips2206995512] +centroid = (0.55042708674203722, -1.6250406014415197) +description = District 10, LA +station = ('kaex', 0.0026072577321898118) +zone = ('laz018', 0.0032588000377701066) + +[fips2206995581] +centroid = (0.55102952203994804, -1.6222186658404325) +description = District 11, LA +station = ('kaex', 0.00042435895062910826) +zone = ('laz018', 0.0034640843105343375) + +[fips2207030] +centroid = (0.57294260203763492, -1.6171745072225363) +description = Bernice town, LA +station = ('krsn', 0.0055516698948961463) +zone = ('laz005', 0.0039388504435257307) + +[fips22071] +centroid = (0.5247966997836977, -1.5697317981242278) +description = Orleans Parish, LA +station = ('knew', 0.0014615411255537037) +zone = ('laz062', 0.00075016772446610455) + +[fips2207100] +centroid = (0.51837235224661682, -1.5923543544628502) +description = Berwick town, LA +station = ('kptn', 0.0015142260889551293) +zone = ('laz055', 0.0026046288989494881) + +[fips2207198000] +centroid = (0.5247966997836977, -1.5697317981242278) +description = New Orleans city, LA +station = ('knew', 0.0014615411255537037) +zone = ('laz062', 0.00075016772446610455) + +[fips2207205] +centroid = (0.56484689230225926, -1.6227476227768347) +description = Bienville village, LA +station = ('krsn', 0.0062977628959053483) +zone = ('laz012', 0.0012042131775850311) + +[fips22073] +centroid = (0.56683922054999569, -1.6084046466102853) +description = Ouachita Parish, LA +station = ('kmlu', 0.0019142622509903515) +zone = ('laz014', 1.8080998012158721e-05) + +[fips2207395740] +centroid = (0.56837805989818668, -1.608721039897087) +description = District A, LA +station = ('kmlu', 0.0022247774266831262) +zone = ('laz014', 0.001545276519768246) + +[fips2207395755] +centroid = (0.56600867071884919, -1.6103216988073834) +description = District B, LA +station = ('kmlu', 0.0037272347542179336) +zone = ('laz014', 0.001830371737856637) + +[fips2207395770] +centroid = (0.56934931817362899, -1.6068425594764579) +description = District C, LA +station = ('kmlu', 0.0018859626463261136) +zone = ('laz014', 0.0028169242882134932) + +[fips2207395785] +centroid = (0.56666660748697351, -1.6059695632379027) +description = District D, LA +station = ('kmlu', 0.00089659160833677686) +zone = ('laz014', 0.0020587560241080017) + +[fips2207395800] +centroid = (0.56846604194577965, -1.6054422469109979) +description = District E, LA +station = ('kmlu', 0.001180617055485472) +zone = ('laz014', 0.0029676239284563387) + +[fips2207395815] +centroid = (0.56521344635176307, -1.6072479645551112) +description = District F, LA +station = ('kmlu', 0.0024483267085270311) +zone = ('laz014', 0.0019092017071986613) + +[fips22075] +centroid = (0.513167588430952, -1.5585526501059388) +description = Plaquemines Parish, LA +station = ('kbve', 0.0019581701231830111) +zone = ('laz069', 0.0057539466884200556) + +[fips2207594093] +centroid = (0.513167588430952, -1.5585526501059388) +description = District 1, LA +station = ('kbve', 0.0019581701231830111) +zone = ('laz069', 0.0057539466884200556) + +[fips2207594297] +centroid = (0.52146202135495978, -1.5705743209140428) +description = District 2, LA +station = ('knbg', 0.0008910951392714319) +zone = ('laz063', 0.0016911396220569543) + +[fips2207594480] +centroid = (0.52107286529164254, -1.5707539502006582) +description = District 3, LA +station = ('knbg', 0.00047982019154951361) +zone = ('laz063', 0.0013346182359206314) + +[fips2207594657] +centroid = (0.52065206640898676, -1.5711796360052197) +description = District 4, LA +station = ('knbg', 8.8649546567680368e-05) +zone = ('laz063', 0.0011186441164998593) + +[fips2207594855] +centroid = (0.51931058889261139, -1.5716042746122296) +description = District 5, LA +station = ('knbg', 0.0014504570265912915) +zone = ('laz063', 0.0011679651182621407) + +[fips2207595020] +centroid = (0.5131698399056871, -1.5677928594983097) +description = District 6, LA +station = ('kaxo', 0.0033968880778347979) +zone = ('laz069', 0.00273872302961172) + +[fips2207595173] +centroid = (0.51217479279254008, -1.5645257602182088) +description = District 7, LA +station = ('kdlp', 0.0041618859438689194) +zone = ('laz069', 0.0022902266506636725) + +[fips2207595311] +centroid = (0.51107511319073606, -1.5633973175903322) +description = District 8, LA +station = ('kdlp', 0.0028451398425193525) +zone = ('laz069', 0.0036314812261627099) + +[fips2207595422] +centroid = (0.5088602554633701, -1.5606369572052554) +description = District 9, LA +station = ('kdlp', 0.002059451993326179) +zone = ('laz069', 0.0067426327298033767) + +[fips22077] +centroid = (0.53596127430273255, -1.5988022464915403) +description = Pointe Coupee Parish, LA +station = ('khzr', 0.0018979873534891365) +zone = ('laz034', 6.0816936720236217e-05) + +[fips2207730] +centroid = (0.5686301203487597, -1.6386018446361006) +description = Blanchard town, LA +station = ('kdtn', 0.0021467674186060907) +zone = ('laz001', 4.2799377596075333e-05) + +[fips2207794096] +centroid = (0.53966201808878378, -1.6005796898017717) +description = District 1, LA +station = ('khzr', 0.0049085074503756538) +zone = ('laz034', 0.0040026641331434472) + +[fips2207794300] +centroid = (0.5370594703746725, -1.599802547045736) +description = District 2, LA +station = ('khzr', 0.0029001592718159381) +zone = ('laz034', 0.0014113614318926207) + +[fips2207794483] +centroid = (0.53579162829943872, -1.5970006303711695) +description = District 3, LA +station = ('khzr', 0.00048438620750570273) +zone = ('laz034', 0.0015057347174258129) + +[fips2207794660] +centroid = (0.53438838358083529, -1.5947190312532074) +description = District 4, LA +station = ('khzr', 0.0023835218815605398) +zone = ('laz047', 0.0028355913965084707) + +[fips2207794858] +centroid = (0.53492350152949675, -1.5957925309162313) +description = District 5, LA +station = ('khzr', 0.0013985866915312731) +zone = ('laz034', 0.002746216102200342) + +[fips2207795023] +centroid = (0.53384857069648595, -1.5966671503109908) +description = District 6, LA +station = ('khzr', 0.0022876492598230456) +zone = ('laz034', 0.0027816921353676109) + +[fips2207795176] +centroid = (0.53585065533474119, -1.596103286789549) +description = District 7, LA +station = ('khzr', 0.00051618901576252064) +zone = ('laz034', 0.0022687309420565257) + +[fips2207795314] +centroid = (0.53575946188132451, -1.5956588037889436) +description = District 8, LA +station = ('khzr', 0.00089542528751318561) +zone = ('laz034', 0.0026565888376459692) + +[fips2207795425] +centroid = (0.53504412123410205, -1.5969558103159782) +description = District 9, LA +station = ('khzr', 0.001132624529692371) +zone = ('laz034', 0.0017981311301957098) + +[fips2207795515] +centroid = (0.53285666517599251, -1.5968132169160902) +description = District 10, LA +station = ('khzr', 0.0032838504589456112) +zone = ('laz047', 0.0029112079342193658) + +[fips2207795584] +centroid = (0.53343197805732745, -1.5996911601328738) +description = District 11, LA +station = ('khzr', 0.0037900861154813669) +zone = ('laz034', 0.0026820552468928083) + +[fips2207795641] +centroid = (0.53576612903906706, -1.5949264112749293) +description = District 12, LA +station = ('khzr', 0.0014888668758283681) +zone = ('laz035', 0.0032371188395296431) + +[fips22079] +centroid = (0.54442411404626534, -1.6150570563207245) +description = Rapides Parish, LA +station = ('kesf', 0.0050407954258434619) +zone = ('laz028', 0.00010275597450197704) + +[fips2207995743] +centroid = (0.5480591985458565, -1.6129338807389657) +description = District A, LA +station = ('kesf', 0.0017029999035827149) +zone = ('laz028', 0.0039600415857710273) + +[fips2207995758] +centroid = (0.5461564405953323, -1.6122119951070486) +description = District B, LA +station = ('kesf', 0.0021691205799610792) +zone = ('laz028', 0.0028986033263344447) + +[fips2207995773] +centroid = (0.54684509515829161, -1.6097688308602294) +description = District C, LA +station = ('kesf', 0.0015524766886988171) +zone = ('laz028', 0.0050474648012818661) + +[fips2207995788] +centroid = (0.54647534715625667, -1.6136560630768559) +description = District D, LA +station = ('kesf', 0.0027948976844753373) +zone = ('laz028', 0.0022732722339009821) + +[fips2207995803] +centroid = (0.54593734941432936, -1.6174562731769784) +description = District E, LA +station = ('kdnk', 0.0052597610313910746) +zone = ('laz028', 0.0025282413979905213) + +[fips2207995818] +centroid = (0.54470369833914223, -1.6126703709284997) +description = District F, LA +station = ('kesf', 0.0036435463237594278) +zone = ('laz028', 0.0020088774192654592) + +[fips2207995830] +centroid = (0.54566305346908595, -1.6140541028660658) +description = District G, LA +station = ('kesf', 0.0035635493712686465) +zone = ('laz028', 0.0014061236094645867) + +[fips2207995839] +centroid = (0.54173314795224792, -1.6155845122739696) +description = District H, LA +station = ('kacp', 0.0053582463492707596) +zone = ('laz028', 0.0028283862568612996) + +[fips2207995848] +centroid = (0.54676294251040025, -1.6147530025117343) +description = District I, LA +station = ('kesf', 0.00349581372438905) +zone = ('laz028', 0.0022552922492758156) + +[fips22081] +centroid = (0.56027186073400648, -1.6292482761088127) +description = Red River Parish, LA +station = ('kier', 0.007373656875841828) +zone = ('laz011', 0.00019229822516422042) + +[fips2208150] +centroid = (0.53715429411293325, -1.568357211711942) +description = Bogalusa city, LA +station = ('kasd', 0.0074756139613333904) +zone = ('laz039', 0.0030154921830556729) + +[fips2208194099] +centroid = (0.55846139579432774, -1.6270458800323062) +description = District 1, LA +station = ('kier', 0.0049209418676321118) +zone = ('laz011', 0.0024082805312340516) + +[fips2208194303] +centroid = (0.56003728848253842, -1.6276813369596648) +description = District 2, LA +station = ('kier', 0.0065845887458602969) +zone = ('laz011', 0.0011975986058903416) + +[fips2208194486] +centroid = (0.56154741716453405, -1.6285123056698318) +description = District 3, LA +station = ('kbad', 0.0077758331859380499) +zone = ('laz011', 0.0014960040749539159) + +[fips2208194663] +centroid = (0.56120247029116987, -1.6309858735522207) +description = District 4, LA +station = ('kbad', 0.006833576083585308) +zone = ('laz011', 0.0019285425611853546) + +[fips2208194861] +centroid = (0.55754769847761609, -1.6290129359124739) +description = District 5, LA +station = ('kier', 0.0050625399690225874) +zone = ('laz011', 0.0025868866278389723) + +[fips2208195026] +centroid = (0.55818338229777753, -1.6286917604235218) +description = District 6, LA +station = ('kier', 0.0053698449773036394) +zone = ('laz011', 0.0019794182140848602) + +[fips2208195179] +centroid = (0.55898354594664679, -1.6284453024798478) +description = District 7, LA +station = ('kier', 0.0059181917058254768) +zone = ('laz011', 0.0012734993893431389) + +[fips22083] +centroid = (0.56580294875991666, -1.6014857600296519) +description = Richland Parish, LA +station = ('kmlu', 0.0043990131505080871) +zone = ('laz015', 7.7331778012805366e-05) + +[fips2208394102] +centroid = (0.56749424261826931, -1.5971135357204809) +description = District 1, LA +station = ('kbqp', 0.0069422873170944402) +zone = ('laz015', 0.0041311907260071137) + +[fips2208394306] +centroid = (0.56613660335302041, -1.5976988842450148) +description = District 2, LA +station = ('kmlu', 0.0073745134345951464) +zone = ('laz015', 0.0032910789372427658) + +[fips2208394489] +centroid = (0.56844747164253839, -1.5996962739475822) +description = District 3, LA +station = ('kbqp', 0.0046781774766954118) +zone = ('laz015', 0.0030900870024057831) + +[fips2208394666] +centroid = (0.56679031642435496, -1.5992905023497861) +description = District 4, LA +station = ('kmlu', 0.0059444295533311771) +zone = ('laz015', 0.0021708359623308052) + +[fips2208394864] +centroid = (0.56629548067482938, -1.6011949183630996) +description = District 5, LA +station = ('kmlu', 0.0044655469591095226) +zone = ('laz015', 0.00059485525575685269) + +[fips2208395029] +centroid = (0.56676610870762978, -1.601398319034127) +description = District 6, LA +station = ('kmlu', 0.0041902570481183931) +zone = ('laz015', 0.00098214607573401795) + +[fips2208395182] +centroid = (0.56493414131156638, -1.6023549339971452) +description = District 7, LA +station = ('kmlu', 0.0042071833076975842) +zone = ('laz015', 0.0010833551511777203) + +[fips2208395320] +centroid = (0.5664119988556926, -1.6036463903771583) +description = District 8, LA +station = ('kmlu', 0.0024873493463126923) +zone = ('laz015', 0.0018521752050165128) + +[fips2208395428] +centroid = (0.56303091212214418, -1.6039188886332723) +description = District 9, LA +station = ('kmlu', 0.0049161984277790362) +zone = ('laz015', 0.0033998205842924673) + +[fips22085] +centroid = (0.5508295596675471, -1.6329165742240694) +description = Sabine Parish, LA +station = ('kaqv', 0.0024673896735061987) +zone = ('laz017', 9.4404882331786504e-05) + +[fips2208535] +centroid = (0.57457129093571846, -1.600031743683108) +description = Bonita village, LA +station = ('kbqp', 0.0041083978350015364) +zone = ('laz007', 0.0025480852473990308) + +[fips2208594105] +centroid = (0.54792306286420089, -1.629961033668742) +description = District 1, LA +station = ('kaqv', 0.004847729284463323) +zone = ('laz017', 0.003854195762636584) + +[fips2208594309] +centroid = (0.54787752722401639, -1.6335876358681687) +description = District 2, LA +station = ('kaqv', 0.0052880404766916618) +zone = ('laz017', 0.0030852467347001677) + +[fips2208594492] +centroid = (0.55181422207164477, -1.6304400916418296) +description = District 3, LA +station = ('kaqv', 0.00099917213012319975) +zone = ('laz017', 0.0022392341702451289) + +[fips2208594669] +centroid = (0.5504744898845213, -1.6315453562972402) +description = District 4, LA +station = ('kaqv', 0.0022595567953621293) +zone = ('laz017', 0.001178979542101579) + +[fips2208594867] +centroid = (0.55034249063319307, -1.6327840862805505) +description = District 5, LA +station = ('kaqv', 0.0027896771423242691) +zone = ('laz017', 0.00055510712646610592) + +[fips2208595032] +centroid = (0.55128474153646723, -1.6357430825877965) +description = District 6, LA +station = ('kaqv', 0.0042671769868688871) +zone = ('laz017', 0.0025057652661231783) + +[fips2208595185] +centroid = (0.55405777301191339, -1.6363776668505294) +description = District 7, LA +station = ('kaqv', 0.0047675531571409338) +zone = ('laz017', 0.0043679968516988944) + +[fips2208595323] +centroid = (0.55255389260863996, -1.6337579974564558) +description = District 8, LA +station = ('kaqv', 0.0023426230251248864) +zone = ('laz017', 0.0018341160940419116) + +[fips2208595431] +centroid = (0.55441752027733437, -1.6326173724303998) +description = District 9, LA +station = ('kaqv', 0.002204948282925355) +zone = ('laz017', 0.0035267773863272892) + +[fips22087] +centroid = (0.52216952547384066, -1.5579418721342031) +description = St. Bernard Parish, LA +station = ('khsa', 0.0083620739651323779) +zone = ('laz070', 0.0044516711862086066) + +[fips2208710] +centroid = (0.51194898209391704, -1.56042435864907) +description = Boothville CDP, LA +station = ('kbve', 8.8344529868609675e-05) +zone = ('laz069', 0.0046934616385892417) + +[fips2208745] +centroid = (0.54281771300272974, -1.6039658030835657) +description = Bordelonville CDP, LA +station = ('kesf', 0.0079209012303626484) +zone = ('laz029', 0.0015687565885123881) + +[fips2208795746] +centroid = (0.52295921714719806, -1.5704726031252367) +description = District A, LA +station = ('knew', 0.0017034328363533038) +zone = ('laz062', 0.0017620250359268593) + +[fips2208795761] +centroid = (0.52288725722213836, -1.5700548236621867) +description = District B, LA +station = ('knew', 0.0019552019256696717) +zone = ('laz064', 0.0014988798178714878) + +[fips2208795776] +centroid = (0.52277670806731702, -1.5698161673402693) +description = District C, LA +station = ('knew', 0.0021683623809094091) +zone = ('laz064', 0.0012652365773792972) + +[fips2208795791] +centroid = (0.5225142105478171, -1.5691029734480266) +description = District D, LA +station = ('knbg', 0.0025075569990499168) +zone = ('laz064', 0.00061674833628643639) + +[fips2208795806] +centroid = (0.52216952547384066, -1.5579418721342031) +description = District E, LA +station = ('khsa', 0.0083620739651323779) +zone = ('laz070', 0.0044516711862086066) + +[fips22089] +centroid = (0.52209487774173291, -1.5770675391434075) +description = St. Charles Parish, LA +station = ('kmsy', 0.0022347500688998725) +zone = ('laz060', 0.00053060449606220244) + +[fips2208920] +centroid = (0.56764496925247143, -1.6345984083978762) +description = Bossier City city, LA +station = ('kbad', 0.00044397700539565953) +zone = ('laz002', 0.0028173244270646037) + +[fips2208994108] +centroid = (0.52308639928979084, -1.5787252703202443) +description = District 1, LA +station = ('kmsy', 0.003130588354488757) +zone = ('laz060', 0.002053024973622578) + +[fips2208994312] +centroid = (0.52168791932004543, -1.5759154473041661) +description = District 2, LA +station = ('kmsy', 0.0020199668557611345) +zone = ('laz060', 0.0010615366227478423) + +[fips2208994495] +centroid = (0.52369014358464072, -1.5768283766760067) +description = District 3, LA +station = ('kmsy', 0.0014480070921308312) +zone = ('laz060', 0.0021391578645659514) + +[fips2208994672] +centroid = (0.52045463476400111, -1.5770169595016845) +description = District 4, LA +station = ('kmsy', 0.0035323516939752154) +zone = ('laz060', 0.0011170327159977828) + +[fips2208994870] +centroid = (0.52349437000244459, -1.5763959189939474) +description = District 5, LA +station = ('kmsy', 0.0010757511290108129) +zone = ('laz060', 0.0020299401728689184) + +[fips2208995035] +centroid = (0.52455765948934452, -1.5772303958159111) +description = District 6, LA +station = ('kmsy', 0.002033142405582865) +zone = ('laz058', 0.0027151453037779836) + +[fips2208995188] +centroid = (0.52206351417507457, -1.5772340261007554) +description = District 7, LA +station = ('kmsy', 0.0023637180052403896) +zone = ('laz060', 0.00050414105288667675) + +[fips2209095] +centroid = (0.515982036569548, -1.5815307125599001) +description = Bourg CDP, LA +station = ('khum', 0.00078564331339702246) +zone = ('laz059', 0.0028979420599563933) + +[fips22091] +centroid = (0.53793531149990825, -1.5831768198439184) +description = St. Helena Parish, LA +station = ('khdc', 0.0068350607720212174) +zone = ('laz037', 1.7440228921618382e-05) + +[fips2209130] +centroid = (0.52162191096773503, -1.5775889038975632) +description = Boutte CDP, LA +station = ('kmsy', 0.0028877318335314979) +zone = ('laz060', 0.00040001587232992383) + +[fips2209165] +centroid = (0.54785625166043461, -1.6174034944203981) +description = Boyce town, LA +station = ('kaex', 0.0048097130044950295) +zone = ('laz028', 0.0039151700214360048) + +[fips2209194111] +centroid = (0.53969896670904849, -1.5840609338298086) +description = District 1, LA +station = ('kmcb', 0.0063218558120185534) +zone = ('laz037', 0.0019051276668964074) + +[fips2209194315] +centroid = (0.53807973749551075, -1.5837757993899102) +description = District 2, LA +station = ('khdc', 0.0072823005956363191) +zone = ('laz037', 0.00051785531078301457) + +[fips2209194498] +centroid = (0.53676463190413304, -1.5835031964140411) +description = District 3, LA +station = ('khdc', 0.0061934481379554065) +zone = ('laz037', 0.0012103713237322281) + +[fips2209194675] +centroid = (0.53540369396659793, -1.5842264957626528) +description = District 4, LA +station = ('khdc', 0.0059440739960625426) +zone = ('laz037', 0.0026922975480858516) + +[fips2209194873] +centroid = (0.53628871552369928, -1.5814070210758109) +description = District 5, LA +station = ('khdc', 0.0045977504444991964) +zone = ('laz037', 0.0022583754901637763) + +[fips2209195038] +centroid = (0.53938693674537697, -1.5816341233180806) +description = District 6, LA +station = ('kmcb', 0.0053842851906940603) +zone = ('laz037', 0.0019671275968347036) + +[fips2209235] +centroid = (0.52953441349152885, -1.6106873976455538) +description = Branch CDP, LA +station = ('klft', 0.0049507610584446898) +zone = ('laz043', 0.0020912781815639438) + +[fips22093] +centroid = (0.52403196631864379, -1.5846534731108606) +description = St. James Parish, LA +station = ('k7r3', 0.0073210129802519577) +zone = ('laz057', 4.2627161942236175e-05) + +[fips2209340] +centroid = (0.52853978525740231, -1.6040608886212144) +description = Breaux Bridge city, LA +station = ('klft', 0.0020287508354460077) +zone = ('laz044', 0.0027332122519981394) + +[fips2209394114] +centroid = (0.52549186442476703, -1.5824601876530495) +description = District 1, LA +station = ('kmsy', 0.0065964681067082276) +zone = ('laz058', 0.0019130920409280564) + +[fips2209394318] +centroid = (0.52455123667769721, -1.5830686966967573) +description = District 2, LA +station = ('kmsy', 0.006913470455806682) +zone = ('laz057', 0.0014898857693569029) + +[fips2209394501] +centroid = (0.52462516882481169, -1.5835390454768772) +description = District 3, LA +station = ('kmsy', 0.0073268604245172635) +zone = ('laz057', 0.0011485366611817163) + +[fips2209394678] +centroid = (0.52491506801356791, -1.5848943285476358) +description = District 4, LA +station = ('k7r3', 0.0079049715940090765) +zone = ('laz057', 0.00087486638329493601) + +[fips2209394876] +centroid = (0.52342602290893647, -1.5858901086990689) +description = District 5, LA +station = ('k7r3', 0.0061897475692162997) +zone = ('laz057', 0.0012142538435547332) + +[fips2209395041] +centroid = (0.52318448679375296, -1.5832789390584525) +description = District 6, LA +station = ('kmsy', 0.0070445392037435982) +zone = ('laz057', 0.0015038421604334862) + +[fips2209395191] +centroid = (0.5222565650436376, -1.5827290032644417) +description = District 7, LA +station = ('khum', 0.0062262304505768416) +zone = ('laz057', 0.0024774597064971572) + +[fips2209480] +centroid = (0.52256503453563519, -1.573528918991574) +description = Bridge City CDP, LA +station = ('kmsy', 0.0017505063990023346) +zone = ('laz061', 0.0021089310715347444) + +[fips22095] +centroid = (0.52564903132390906, -1.579604602103984) +description = St. John the Baptist Parish, LA +station = ('kmsy', 0.0043593785146161012) +zone = ('laz058', 0.00091612725707045377) + +[fips2209594117] +centroid = (0.52332639951523263, -1.5810645002101071) +description = District 1, LA +station = ('kmsy', 0.0051213986455689179) +zone = ('laz058', 0.0017728700519619458) + +[fips2209594321] +centroid = (0.52621277267230326, -1.5800635015242108) +description = District 2, LA +station = ('kmsy', 0.0049841279505067355) +zone = ('laz058', 0.0012529748757151543) + +[fips2209594504] +centroid = (0.52511377374890755, -1.5802694852825312) +description = District 3, LA +station = ('kmsy', 0.0046755617838856811) +zone = ('laz058', 0.00014243880088701293) + +[fips2209594681] +centroid = (0.52525458691295845, -1.5798326642773419) +description = District 4, LA +station = ('kmsy', 0.0043707927350581828) +zone = ('laz058', 0.00050939161678076697) + +[fips2209594879] +centroid = (0.52705182225690705, -1.5781334117176005) +description = District 5, LA +station = ('kmsy', 0.0043061265055510537) +zone = ('laz058', 0.0028096920444133935) + +[fips2209595044] +centroid = (0.52501306825106742, -1.5791777818354087) +description = District 6, LA +station = ('kmsy', 0.0037549117235089902) +zone = ('laz058', 0.0009969644698649997) + +[fips2209595194] +centroid = (0.52514595762031435, -1.5793029568493617) +description = District 7, LA +station = ('kmsy', 0.0039060850616014133) +zone = ('laz058', 0.00090327569099775537) + +[fips22097] +centroid = (0.53378174203942708, -1.605515725272507) +description = St. Landry Parish, LA +station = ('klft', 0.00669425545991167) +zone = ('laz033', 0.00036665747901628638) + +[fips2209794120] +centroid = (0.53305565016401246, -1.6090719907030779) +description = District 1, LA +station = ('klft', 0.0066366277103962088) +zone = ('laz033', 0.0029846881142708455) + +[fips2209794324] +centroid = (0.53317970816724414, -1.60649419175776) +description = District 2, LA +station = ('klft', 0.0061284150443542242) +zone = ('laz033', 0.0010550287965536611) + +[fips2209794507] +centroid = (0.53340009089189355, -1.6083214118582578) +description = District 3, LA +station = ('klft', 0.0067027715927473188) +zone = ('laz033', 0.0022629616833910677) + +[fips2209794684] +centroid = (0.53469093640666854, -1.6081461458947726) +description = District 4, LA +station = ('klft', 0.0078880914291370365) +zone = ('laz033', 0.0021144896462891817) + +[fips2209794882] +centroid = (0.53610144169496021, -1.6045940343478211) +description = District 5, LA +station = ('khzr', 0.0068691560457817009) +zone = ('laz033', 0.0022990568748345822) + +[fips2209795047] +centroid = (0.53232467136669215, -1.6031590246368315) +description = District 6, LA +station = ('klft', 0.0056768701675009069) +zone = ('laz033', 0.0028585263110463758) + +[fips2209795197] +centroid = (0.53139633073755643, -1.604558481990958) +description = District 7, LA +station = ('klft', 0.0044187354228948364) +zone = ('laz033', 0.002863847868892194) + +[fips2209795326] +centroid = (0.53034785909600579, -1.6074218866150725) +description = District 8, LA +station = ('klft', 0.0035805509141758579) +zone = ('laz044', 0.0031913271090681784) + +[fips2209795434] +centroid = (0.53167167388035097, -1.6068391909910016) +description = District 9, LA +station = ('klft', 0.0046860195630039998) +zone = ('laz033', 0.0025413929972024226) + +[fips2209795518] +centroid = (0.53230381468213084, -1.6077969055114485) +description = District 10, LA +station = ('klft', 0.0055186157689165747) +zone = ('laz033', 0.0024494480677430676) + +[fips2209795587] +centroid = (0.53203934494057614, -1.6097755852844342) +description = District 11, LA +station = ('klft', 0.0060708794696627839) +zone = ('laz033', 0.0039684397574922632) + +[fips2209795644] +centroid = (0.53254798624448485, -1.6130728089474244) +description = District 12, LA +station = ('kacp', 0.0057641960686540036) +zone = ('laz032', 0.0037822337498932537) + +[fips2209795686] +centroid = (0.53222293612459337, -1.6133948571010024) +description = District 13, LA +station = ('k3r7', 0.0056164446530834206) +zone = ('laz043', 0.0035784439461066919) + +[fips22099] +centroid = (0.52571818126887315, -1.5989219760782274) +description = St. Martin Parish, LA +station = ('kara', 0.0043843130485887649) +zone = ('laz045', 0.002548456195075979) + +[fips2209994123] +centroid = (0.52109867871127957, -1.5938103953913265) +description = District 1, LA +station = ('kptn', 0.0024551542873929269) +zone = ('laz055', 0.00074950907220200499) + +[fips2209994327] +centroid = (0.52566706057508228, -1.6038407327893678) +description = District 2, LA +station = ('kara', 0.0014941184466231952) +zone = ('laz044', 0.0029958494271668545) + +[fips2209994510] +centroid = (0.52617055315769756, -1.6024157761748696) +description = District 3, LA +station = ('kara', 0.0022652951840393407) +zone = ('laz045', 0.0019062998441145781) + +[fips2209994687] +centroid = (0.52580846715107876, -1.5994992088217395) +description = District 4, LA +station = ('kara', 0.0039566448971391213) +zone = ('laz045', 0.0021633766471259109) + +[fips2209994885] +centroid = (0.5280320166181196, -1.60002490199244) +description = District 5, LA +station = ('kara', 0.0049751280053180399) +zone = ('laz045', 0.00090456059714879851) + +[fips2209995050] +centroid = (0.52790455522284641, -1.6042349328542234) +description = District 6, LA +station = ('klft', 0.0015077640877624915) +zone = ('laz044', 0.0023407739762651577) + +[fips2209995200] +centroid = (0.52819948095984848, -1.6046868684107347) +description = District 7, LA +station = ('klft', 0.0014152161084988299) +zone = ('laz044', 0.0020954402149509273) + +[fips2209995329] +centroid = (0.53015801963326636, -1.6007935799016035) +description = District 8, LA +station = ('klft', 0.0052332732039776907) +zone = ('laz045', 0.0025792101628611596) + +[fips2209995437] +centroid = (0.53002509535743447, -1.6040898610867975) +description = District 9, LA +station = ('klft', 0.0032493612682479322) +zone = ('laz045', 0.0036606280036067789) + +[fips2210075] +centroid = (0.52599762593540988, -1.6049319999041773) +description = Broussard city, LA +station = ('klft', 0.0012791621078751759) +zone = ('laz044', 0.0020256421474963795) + +[fips22101] +centroid = (0.51712969527248942, -1.5963445261987597) +description = St. Mary Parish, LA +station = ('kp92', 0.0015199477330136552) +zone = ('laz054', 0.0015150392987161106) + +[fips2210145] +centroid = (0.53308205699559508, -1.5904148922381565) +description = Brownfields CDP, LA +station = ('kbtr', 0.00042733602720821257) +zone = ('laz048', 0.00043534396729522383) + +[fips2210194126] +centroid = (0.52012789167473528, -1.5999422082924808) +description = District 1, LA +station = ('kp92', 0.0045865482054619081) +zone = ('laz053', 0.0018651806114588039) + +[fips2210194330] +centroid = (0.5214304134422062, -1.5967363526158325) +description = District 2, LA +station = ('kptn', 0.0036158963550022316) +zone = ('laz054', 0.0029431398551021922) + +[fips2210194513] +centroid = (0.51767221341717928, -1.5992209160725088) +description = District 3, LA +station = ('kp92', 0.0021836173016938723) +zone = ('laz054', 0.0030557709260684665) + +[fips2210194690] +centroid = (0.51512399780268248, -1.5953286922142216) +description = District 4, LA +station = ('kp92', 0.0021431335072394581) +zone = ('laz054', 0.003493387245051288) + +[fips2210194888] +centroid = (0.51866452036340061, -1.5938488449947481) +description = District 5, LA +station = ('kptn', 0.00019010687970751907) +zone = ('laz054', 0.0017523427263025733) + +[fips2210195053] +centroid = (0.51850014525444788, -1.592233839478) +description = District 6, LA +station = ('kptn', 0.0015998633236025551) +zone = ('laz055', 0.0025043473883275612) + +[fips2210195203] +centroid = (0.51856308182727473, -1.5917731772752288) +description = District 7, LA +station = ('k7r3', 0.0015574700131201248) +zone = ('laz055', 0.0025772547601636596) + +[fips2210195332] +centroid = (0.51755740565898312, -1.5912159110983592) +description = District 8, LA +station = ('k7r3', 0.0013319002468743417) +zone = ('laz055', 0.0036929496952585938) + +[fips2210225] +centroid = (0.56702836188103445, -1.6085269767375576) +description = Brownsville CDP, LA +station = ('kmlu', 0.0019546674385546676) +zone = ('laz014', 0.00020253387756075726) + +[fips22103] +centroid = (0.53075500950391108, -1.5699579055288235) +description = St. Tammany Parish, LA +station = ('kasd', 0.0022906884124120385) +zone = ('laz040', 0.00068814415512585922) + +[fips2210394129] +centroid = (0.53154344454020697, -1.5740492016415935) +description = District 1, LA +station = ('khdc', 0.003660035519010701) +zone = ('laz072', 0.0032088167036957646) + +[fips2210394333] +centroid = (0.53397809158027643, -1.5718387246906502) +description = District 2, LA +station = ('kasd', 0.0056219592811461551) +zone = ('laz040', 0.0031274114073592367) + +[fips2210394516] +centroid = (0.53418597774748144, -1.5741509194303998) +description = District 3, LA +station = ('khdc', 0.0037019924346190745) +zone = ('laz072', 0.00348259429496645) + +[fips2210394693] +centroid = (0.52999975317669556, -1.5727226641436152) +description = District 4, LA +station = ('kasd', 0.004432869193583113) +zone = ('laz040', 0.0029300157115223035) + +[fips2210394891] +centroid = (0.53083119312576066, -1.5717082264224786) +description = District 5, LA +station = ('kasd', 0.0037207764430665117) +zone = ('laz040', 0.0017873323061052262) + +[fips2210395056] +centroid = (0.5325839225737834, -1.5683977906170508) +description = District 6, LA +station = ('kasd', 0.0029582915000527141) +zone = ('laz040', 0.0016478458171571176) + +[fips2210395206] +centroid = (0.52872294010910659, -1.570304842077535) +description = District 7, LA +station = ('kasd', 0.0025366378531240978) +zone = ('laz040', 0.0027386832664595094) + +[fips2210395335] +centroid = (0.52878198459770154, -1.566427505877767) +description = District 8, LA +station = ('kasd', 0.0013692153772591462) +zone = ('laz040', 0.0038959136180642851) + +[fips2210395440] +centroid = (0.52936913081136494, -1.5655120283252184) +description = District 9, LA +station = ('kasd', 0.0018305629757583094) +zone = ('msz080', 0.0034787034508012662) + +[fips2210395521] +centroid = (0.52969238324212686, -1.5718565794088981) +description = District 10, LA +station = ('kasd', 0.0036762540745360374) +zone = ('laz040', 0.0025063788003277607) + +[fips2210395590] +centroid = (0.52862678992061418, -1.5687694759345556) +description = District 11, LA +station = ('kasd', 0.001480853786717974) +zone = ('laz040', 0.0029183460716371333) + +[fips2210395647] +centroid = (0.52809528480350443, -1.5670096255431847) +description = District 12, LA +station = ('kasd', 0.0016899067158318503) +zone = ('laz040', 0.0040800303753872084) + +[fips2210395689] +centroid = (0.52749113908292655, -1.5657811755491684) +description = District 13, LA +station = ('kasd', 0.0027146505208104489) +zone = ('laz062', 0.0043219198939448656) + +[fips2210395713] +centroid = (0.52801967714030795, -1.5660960154929358) +description = District 14, LA +station = ('kasd', 0.0021276565419049249) +zone = ('laz062', 0.0045678106779088595) + +[fips22105] +centroid = (0.53444741061613776, -1.5778934114921588) +description = Tangipahoa Parish, LA +station = ('khdc', 0.0017659451195842927) +zone = ('laz072', 0.0020453262985524164) + +[fips2210594132] +centroid = (0.53921297977883076, -1.5787173988853178) +description = District 1, LA +station = ('kmcb', 0.005042505889101029) +zone = ('laz071', 0.0011974187113374824) + +[fips2210594336] +centroid = (0.5362150626292651, -1.5761423226536329) +description = District 2, LA +station = ('khdc', 0.0039015583413554065) +zone = ('laz071', 0.0026876072466097503) + +[fips2210594519] +centroid = (0.53580943065780906, -1.579988853792103) +description = District 3, LA +station = ('khdc', 0.0035252190809315835) +zone = ('laz071', 0.0025975196448930842) + +[fips2210594696] +centroid = (0.53439618520259169, -1.5787376970645184) +description = District 4, LA +station = ('khdc', 0.0017977920814085363) +zone = ('laz072', 0.002198304157910125) + +[fips2210594894] +centroid = (0.53340583302513256, -1.5787870375224724) +description = District 5, LA +station = ('khdc', 0.00093882771571353438) +zone = ('laz072', 0.0014040306643857158) + +[fips2210595059] +centroid = (0.532411606216734, -1.5799873353556539) +description = District 6, LA +station = ('khdc', 0.0016638393541431133) +zone = ('laz072', 0.0020286494432409678) + +[fips2210595209] +centroid = (0.53226691842174367, -1.5787592344274881) +description = District 7, LA +station = ('khdc', 0.00071940165954169854) +zone = ('laz072', 0.00098172219438379506) + +[fips2210595338] +centroid = (0.53233236826869346, -1.5776234963233378) +description = District 8, LA +station = ('khdc', 0.00053289873194218283) +zone = ('laz072', 8.2454403733204753e-05) + +[fips2210595443] +centroid = (0.52993163297599022, -1.5770549727727932) +description = District 9, LA +station = ('khdc', 0.0028963609298307651) +zone = ('laz072', 0.0025322907874089926) + +[fips2210595524] +centroid = (0.53132606378187108, -1.5797055170413343) +description = District 10, LA +station = ('khdc', 0.0019526023445022485) +zone = ('laz072', 0.0020918417219292925) + +[fips2210600] +centroid = (0.53047977108087163, -1.5926409200727352) +description = Brusly town, LA +station = ('kbtr', 0.0028685739886362607) +zone = ('laz047', 0.0015236172801648617) + +[fips22107] +centroid = (0.5585313485907476, -1.594228698453152) +description = Tensas Parish, LA +station = ('khez', 0.0067460377390519983) +zone = ('laz025', 3.8304750020462774e-05) + +[fips2210705] +centroid = (0.56627251214187324, -1.6229828757067111) +description = Bryceland village, LA +station = ('kmne', 0.0057956679814270481) +zone = ('laz012', 0.001964472814439388) + +[fips2210794135] +centroid = (0.56073144083264159, -1.5940722645922958) +description = District 1, LA +station = ('ktvr', 0.005907759403327547) +zone = ('laz025', 0.0021984402336217581) + +[fips2210794339] +centroid = (0.55974517272563218, -1.5925608094600685) +description = District 2, LA +station = ('ktvr', 0.0058005456500732026) +zone = ('laz025', 0.0018322666989521676) + +[fips2210794522] +centroid = (0.55962678704246938, -1.5911201274290099) +description = District 3, LA +station = ('ktvr', 0.0053365225254341439) +zone = ('laz025', 0.0028172933194391459) + +[fips2210794699] +centroid = (0.5578471795239659, -1.5945514447384308) +description = District 4, LA +station = ('khez', 0.0060998978321893079) +zone = ('laz025', 0.00075525993103767728) + +[fips2210794897] +centroid = (0.5570723929624205, -1.5924482182700224) +description = District 5, LA +station = ('khez', 0.0053309271611160936) +zone = ('laz025', 0.0020754320307999918) + +[fips2210795062] +centroid = (0.55558844421920484, -1.5959687393575128) +description = District 6, LA +station = ('khez', 0.0043243961232352843) +zone = ('laz025', 0.0033133051645502071) + +[fips2210795212] +centroid = (0.55513469352027145, -1.5949952994205054) +description = District 7, LA +station = ('khez', 0.0035595281747284502) +zone = ('laz025', 0.0034694324250217441) + +[fips22109] +centroid = (0.51196207206330702, -1.5855302392605999) +description = Terrebonne Parish, LA +station = ('khum', 0.0048860649825694892) +zone = ('laz066', 0.00074419942376191409) + +[fips2210950] +centroid = (0.54027246444796129, -1.6089491718836151) +description = Bunkie city, LA +station = ('kesf', 0.0079454284212052591) +zone = ('laz029', 0.0034760013205876361) + +[fips2210985] +centroid = (0.51231806687083625, -1.5624880883165055) +description = Buras CDP, LA +station = ('kbve', 0.0019192083841070384) +zone = ('laz069', 0.0030389443445335354) + +[fips2210994136] +centroid = (0.51573493285405059, -1.5832171544029321) +description = District 1, LA +station = ('khum', 0.00074637282066947511) +zone = ('laz065', 0.0024773790746674498) + +[fips2210994340] +centroid = (0.51775173061790014, -1.5861913699812555) +description = District 2, LA +station = ('k7r3', 0.0033605059922215065) +zone = ('laz065', 0.00080406385312148355) + +[fips2210994523] +centroid = (0.51699575870569137, -1.5838505867483581) +description = District 3, LA +station = ('khum', 0.0015632152784430305) +zone = ('laz065', 0.0014035953506034307) + +[fips2210994700] +centroid = (0.51765130437274032, -1.5835191138168194) +description = District 4, LA +station = ('khum', 0.0018718231314944094) +zone = ('laz065', 0.0016956419915353314) + +[fips2210994898] +centroid = (0.51691379804401771, -1.5828600425846813) +description = District 5, LA +station = ('khum', 0.0009537936359967328) +zone = ('laz065', 0.0022645565492742758) + +[fips2210995063] +centroid = (0.51310817742321413, -1.5886289666277609) +description = District 6, LA +station = ('k7r3', 0.0053873001103577544) +zone = ('laz066', 0.0024600135286842249) + +[fips2210995213] +centroid = (0.51078051906629185, -1.5842733927596537) +description = District 7, LA +station = ('khum', 0.005494535844931943) +zone = ('laz066', 0.0023233414843649622) + +[fips2210995340] +centroid = (0.51483170751285101, -1.5814390304142927) +description = District 8, LA +station = ('khum', 0.0014818121960096685) +zone = ('laz059', 0.0040132145895047438) + +[fips2210995445] +centroid = (0.50968197392850156, -1.5815503649672775) +description = District 9, LA +station = ('khum', 0.0063999652391909792) +zone = ('laz066', 0.0047860980738948112) + +[fips22111] +centroid = (0.57298023133630793, -1.6122592411698997) +description = Union Parish, LA +station = ('krsn', 0.0063222615029225803) +zone = ('laz006', 4.6235525044705372e-05) + +[fips2211194138] +centroid = (0.57192071176059223, -1.6128323200297923) +description = District 1, LA +station = ('krsn', 0.0051642846903247382) +zone = ('laz006', 0.0012095966677519486) + +[fips2211194342] +centroid = (0.57403720273131575, -1.6085864575584656) +description = District 2, LA +station = ('kbqp', 0.0047580732680432627) +zone = ('laz006', 0.0032351459778302153) + +[fips2211194525] +centroid = (0.57463818940594735, -1.6148055369222194) +description = District 3, LA +station = ('keld', 0.0066829747069318312) +zone = ('laz006', 0.0026887863280561333) + +[fips2211194702] +centroid = (0.57215456842706691, -1.6156188254470638) +description = District 4, LA +station = ('krsn', 0.0046798765390428975) +zone = ('laz006', 0.0029666921667251163) + +[fips2211194900] +centroid = (0.57012007302460221, -1.6119434936549215) +description = District 5, LA +station = ('krsn', 0.0042970583044424672) +zone = ('laz006', 0.00291568624422595) + +[fips2211195065] +centroid = (0.57447805544707697, -1.6114507697537912) +description = District 6, LA +station = ('kbqp', 0.0071239772169341565) +zone = ('laz006', 0.0015988665029704394) + +[fips2211195215] +centroid = (0.57204382728602787, -1.610912038973578) +description = District 7, LA +station = ('kmlu', 0.0059682500818534394) +zone = ('laz006', 0.0014887523934278349) + +[fips2211195341] +centroid = (0.57066290532855746, -1.6084400942473933) +description = District 8, LA +station = ('kmlu', 0.0036271749189507423) +zone = ('laz014', 0.0038062983115482322) + +[fips2211195446] +centroid = (0.57416825950484796, -1.6175672761174051) +description = District 9, LA +station = ('keld', 0.0059208260491821372) +zone = ('arz073', 0.0049301257080139682) + +[fips22113] +centroid = (0.51987899027010842, -1.6107659374618937) +description = Vermilion Parish, LA +station = ('k7r4', 0.0023752931687861323) +zone = ('laz052', 0.001156009496554096) + +[fips2211394141] +centroid = (0.52484893748820993, -1.6075687386183353) +description = District 1, LA +station = ('kiya', 0.0017076703152850965) +zone = ('laz044', 0.0024384314149397705) + +[fips2211394345] +centroid = (0.52485008940551614, -1.6094851974034874) +description = District 2, LA +station = ('kiya', 0.0026097409822038813) +zone = ('laz044', 0.003292262050514604) + +[fips2211394528] +centroid = (0.52386132547767639, -1.6063084189121777) +description = District 3, LA +station = ('kiya', 0.0010149629347368772) +zone = ('laz044', 0.003367065242280161) + +[fips2211394705] +centroid = (0.52287233465703375, -1.6079447872589698) +description = District 4, LA +station = ('kiya', 0.00073444976773133258) +zone = ('laz052', 0.0033965262882618918) + +[fips2211394903] +centroid = (0.52303531350258503, -1.6081608590203667) +description = District 5, LA +station = ('kiya', 0.00086735890680200592) +zone = ('laz052', 0.0033408369306003219) + +[fips2211395068] +centroid = (0.52335257945401248, -1.6069149557338307) +description = District 6, LA +station = ('kiya', 0.0002847481929161656) +zone = ('laz044', 0.0038477215478934196) + +[fips2211395218] +centroid = (0.52320050891628633, -1.6077387860473571) +description = District 7, LA +station = ('kiya', 0.00049082816687970408) +zone = ('laz052', 0.0037317888535049739) + +[fips2211395344] +centroid = (0.52197617789930484, -1.6061313552595626) +description = District 8, LA +station = ('kiya', 0.0015013782313571624) +zone = ('laz052', 0.0045024948175558408) + +[fips2211395449] +centroid = (0.51945243180092093, -1.607210160723513) +description = District 9, LA +station = ('k7r4', 0.00079968925594327733) +zone = ('laz052', 0.0037765771833262992) + +[fips2211395527] +centroid = (0.52357510893364179, -1.6121377837072535) +description = District 10, LA +station = ('kiya', 0.0043187764079076077) +zone = ('laz052', 0.0027269529201956809) + +[fips2211395593] +centroid = (0.52338596760260325, -1.6091176485163101) +description = District 11, LA +station = ('kiya', 0.0016975723341103078) +zone = ('laz052', 0.0030093830503658864) + +[fips2211395650] +centroid = (0.52451338048622154, -1.6106945534954871) +description = District 12, LA +station = ('kiya', 0.0033298047355671085) +zone = ('laz052', 0.0035659058967593363) + +[fips2211395692] +centroid = (0.51972562818873569, -1.6141822100331622) +description = District 13, LA +station = ('kvnp', 0.0057188316905016339) +zone = ('laz052', 0.0028777297654039671) + +[fips2211395716] +centroid = (0.52316867411072987, -1.6149935612425368) +description = District 14, LA +station = ('k3r7', 0.0051298798997931406) +zone = ('laz052', 0.0039579857423721054) + +[fips22115] +centroid = (0.54298175649912461, -1.6263243260129467) +description = Vernon Parish, LA +station = ('kpoe', 0.0010730715638762192) +zone = ('laz027', 5.6247849200927045e-05) + +[fips2211580] +centroid = (0.52521297826359081, -1.6039438817481606) +description = Cade CDP, LA +station = ('kara', 0.0010599318242875094) +zone = ('laz044', 0.0031817170480892857) + +[fips2211594144] +centroid = (0.54097502928505914, -1.6281122762052747) +description = District 1, LA +station = ('kpoe', 0.0016483029059413158) +zone = ('laz027', 0.0024688171821828551) + +[fips2211594348] +centroid = (0.54573817244009182, -1.6297220108276815) +description = District 2, LA +station = ('kpoe', 0.0046857026196929679) +zone = ('laz027', 0.004004311550039788) + +[fips2211594531] +centroid = (0.54202433868465072, -1.631018511209233) +description = District 3, LA +station = ('kbkb', 0.0026689317983877893) +zone = ('laz027', 0.0040846528226628686) + +[fips2211594708] +centroid = (0.5419099672587675, -1.6264624513699495) +description = District 4, LA +station = ('kpoe', 6.8229070052751157e-05) +zone = ('laz027', 0.0010352530410547992) + +[fips2211594906] +centroid = (0.54139732915087169, -1.6229663474386944) +description = District 5, LA +station = ('kdnk', 0.0025687711220911381) +zone = ('laz027', 0.0033004043160801675) + +[fips2211595071] +centroid = (0.54577374225024744, -1.6247109611056954) +description = District 6, LA +station = ('kdnk', 0.0022481343636077634) +zone = ('laz027', 0.0031676821706816561) + +[fips2211595221] +centroid = (0.53964889321280884, -1.6274644623468117) +description = District 7, LA +station = ('kdri', 0.0020715408791756925) +zone = ('laz027', 0.003424081798944129) + +[fips2211595347] +centroid = (0.54265527520924661, -1.6285495509960692) +description = District 8, LA +station = ('kpoe', 0.0018696935076917512) +zone = ('laz027', 0.0018872809045683268) + +[fips2211595452] +centroid = (0.54356164214309977, -1.6290361487915253) +description = District 9, LA +station = ('kpoe', 0.0026920945272076004) +zone = ('laz027', 0.0023639518308105865) + +[fips2211595530] +centroid = (0.54404120626167018, -1.6283594846405269) +description = District 10, LA +station = ('kpoe', 0.0026278556282719181) +zone = ('laz027', 0.0020258474797114432) + +[fips2211595596] +centroid = (0.54340360257933173, -1.6265225954159732) +description = District 11, LA +station = ('kpoe', 0.0014789467052582748) +zone = ('laz027', 0.00047922527031219971) + +[fips2211595653] +centroid = (0.54452164304486672, -1.6276361503853305) +description = District 12, LA +station = ('kpoe', 0.0027611822076899569) +zone = ('laz027', 0.0019148090647460201) + +[fips22117] +centroid = (0.53847149409941342, -1.5716035939338213) +description = Washington Parish, LA +station = ('khdc', 0.0080303066199598119) +zone = ('laz039', 8.8943460930051619e-05) + +[fips2211794147] +centroid = (0.53576747294259108, -1.5688007522347514) +description = District 1, LA +station = ('kasd', 0.006148184068247289) +zone = ('laz039', 0.003580763947310832) + +[fips2211794351] +centroid = (0.53671375555643741, -1.5698126417751801) +description = District 2, LA +station = ('kasd', 0.0072615953173121393) +zone = ('laz039', 0.0022968897208092069) + +[fips2211794534] +centroid = (0.53746665568916274, -1.5683789934210068) +description = District 3, LA +station = ('kasd', 0.0077884170270000972) +zone = ('laz039', 0.0028726481205353341) + +[fips2211794711] +centroid = (0.53946413265819271, -1.5678265792594581) +description = District 4, LA +station = ('kasd', 0.0097587120968773231) +zone = ('laz039', 0.0033013247703322143) + +[fips2211794909] +centroid = (0.53835982793387083, -1.5712712134310718) +description = District 5, LA +station = ('khdc', 0.0081533014654717149) +zone = ('laz039', 0.00023980609092878822) + +[fips2211795074] +centroid = (0.53957658422189869, -1.5728904077380244) +description = District 6, LA +station = ('kmcb', 0.0069807002067455897) +zone = ('laz039', 0.0016095320739923172) + +[fips2211795224] +centroid = (0.5388401250907271, -1.5749872986612481) +description = District 7, LA +station = ('kmcb', 0.0063848344433181069) +zone = ('laz039', 0.0030107691131661283) + +[fips2211825] +centroid = (0.5674992168066374, -1.6118800683899042) +description = Calhoun CDP, LA +station = ('krsn', 0.0034499422179170018) +zone = ('laz014', 0.0030051058580532041) + +[fips22119] +centroid = (0.57128382366324693, -1.6290872694853162) +description = Webster Parish, LA +station = ('kmne', 0.0015485612778368546) +zone = ('laz003', 0.0003331589058626122) + +[fips2211930] +centroid = (0.55783675990833148, -1.6192432808915103) +description = Calvin village, LA +station = ('kier', 0.0062065828991802706) +zone = ('laz019', 0.00208103043390833) + +[fips2211994150] +centroid = (0.57603103196220906, -1.631163862229339) +description = District 1, LA +station = ('kmne', 0.0066052739532547521) +zone = ('arz071', 0.0046659835571996322) + +[fips2211994354] +centroid = (0.57571622692502666, -1.6312686168910437) +description = District 2, LA +station = ('kmne', 0.0063447680159796739) +zone = ('arz071', 0.0049090483502216373) + +[fips2211994537] +centroid = (0.5744419445848532, -1.6308010257311421) +description = District 3, LA +station = ('kmne', 0.0050187037424071004) +zone = ('laz003', 0.0037972701826591258) + +[fips2211994714] +centroid = (0.57332997786511497, -1.6283578614843228) +description = District 4, LA +station = ('kmne', 0.0034800968688636193) +zone = ('laz003', 0.0024329348801267721) + +[fips2211994912] +centroid = (0.57054575882916359, -1.6301619559722316) +description = District 5, LA +station = ('kmne', 0.0016442366459538951) +zone = ('laz003', 0.0010588706004849679) + +[fips2211995077] +centroid = (0.56969484100564627, -1.6277184426595621) +description = District 6, LA +station = ('kmne', 0.00058814848780642257) +zone = ('laz003', 0.0016629738956269028) + +[fips2211995227] +centroid = (0.56835263045098516, -1.6282843133096436) +description = District 7, LA +station = ('kmne', 0.0015001254122860388) +zone = ('laz003', 0.0026750244450306875) + +[fips2211995353] +centroid = (0.56942619992717936, -1.6281078779755596) +description = District 8, LA +station = ('kmne', 0.0004867535572802438) +zone = ('laz003', 0.0017073769022411924) + +[fips2211995458] +centroid = (0.56917091061749014, -1.6283218378885616) +description = District 9, LA +station = ('kmne', 0.00068167000110370632) +zone = ('laz003', 0.0018771264295645404) + +[fips2211995536] +centroid = (0.56884273635823768, -1.6277452683701652) +description = District 10, LA +station = ('kmne', 0.0011451938704173401) +zone = ('laz003', 0.0023658039187594571) + +[fips2211995602] +centroid = (0.56697219718570524, -1.6274985486271032) +description = District 11, LA +station = ('kmne', 0.0029747183541524664) +zone = ('laz012', 0.0037233080908384729) + +[fips2211995659] +centroid = (0.56698392579827861, -1.6299715230975467) +description = District 12, LA +station = ('kmne', 0.0031600492816863841) +zone = ('laz003', 0.0040572408925604164) + +[fips2212000] +centroid = (0.52002493470216016, -1.6282452004811065) +description = Cameron CDP, LA +station = ('kuxl', 0.0059937893475140152) +zone = ('laz073', 0.0024923215363554909) + +[fips22121] +centroid = (0.53169801089876356, -1.5936567889638587) +description = West Baton Rouge Parish, LA +station = ('kbtr', 0.0026903208509982891) +zone = ('laz047', 5.5222772563544294e-05) + +[fips2212194153] +centroid = (0.52955617774730124, -1.5914750575856955) +description = District 1, LA +station = ('kbtr', 0.0033917001334979988) +zone = ('laz046', 0.0028709027163911511) + +[fips2212194357] +centroid = (0.53018599726117588, -1.5934543133173347) +description = District 2, LA +station = ('kbtr', 0.0035180857556340456) +zone = ('laz047', 0.0015179556873269882) + +[fips2212194540] +centroid = (0.53085082807984552, -1.5920396017855456) +description = District 3, LA +station = ('kbtr', 0.0022910541881382427) +zone = ('laz047', 0.0016721949133747425) + +[fips2212194717] +centroid = (0.53090205349339159, -1.5925199338489868) +description = District 4, LA +station = ('kbtr', 0.0024593688643936126) +zone = ('laz047', 0.0012981200597743496) + +[fips2212194915] +centroid = (0.53168221566903306, -1.5918142623258207) +description = District 5, LA +station = ('kbtr', 0.0014717025259280586) +zone = ('laz047', 0.0016422174935592363) + +[fips2212195080] +centroid = (0.53208114557616137, -1.5922793402115996) +description = District 6, LA +station = ('kbtr', 0.0014702589990811031) +zone = ('laz047', 0.0013023801881224192) + +[fips2212195230] +centroid = (0.53251496461503711, -1.5936312897034868) +description = District 7, LA +station = ('kbtr', 0.0024128176139205188) +zone = ('laz047', 0.0008318123298211459) + +[fips2212195354] +centroid = (0.53236360966230412, -1.5952884972815482) +description = District 8, LA +station = ('kbtr', 0.0038470640951743774) +zone = ('laz047', 0.0015121529599049653) + +[fips2212195459] +centroid = (0.5314395625431283, -1.5922660931625767) +description = District 9, LA +station = ('kbtr', 0.00189899170772959) +zone = ('laz047', 0.0012769728553409913) + +[fips2212280] +centroid = (0.55672451393591305, -1.6251871916453946) +description = Campti town, LA +station = ('kier', 0.0028412061296053484) +zone = ('laz018', 0.0030577626036543881) + +[fips22123] +centroid = (0.5723367458943901, -1.5961384726272694) +description = West Carroll Parish, LA +station = ('kbqp', 0.006306273446340791) +zone = ('laz008', 9.7901561251243096e-05) + +[fips2212395750] +centroid = (0.56973852659682378, -1.5971036222503294) +description = District A, LA +station = ('kbqp', 0.0058385843238464886) +zone = ('laz008', 0.002635647560104897) + +[fips2212395765] +centroid = (0.57194057360747996, -1.5974029113104615) +description = District B, LA +station = ('kbqp', 0.005221072716202862) +zone = ('laz008', 0.0010464063706408715) + +[fips2212395780] +centroid = (0.57244668418397326, -1.5953642794776697) +description = District C, LA +station = ('kbqp', 0.0069643963073731082) +zone = ('laz008', 0.00074181422122931149) + +[fips2212395794] +centroid = (0.573747425715607, -1.5943335403813195) +description = District D, LA +station = ('kbqp', 0.0080417097044827284) +zone = ('laz008', 0.0021690869655867635) + +[fips2212395809] +centroid = (0.57511455957198665, -1.5948603680160336) +description = District E, LA +station = ('kbqp', 0.0080741172220246508) +zone = ('laz008', 0.0030679134376386521) + +[fips2212420] +centroid = (0.52962946412259237, -1.6076765999661085) +description = Cankton village, LA +station = ('klft', 0.0030589587190842865) +zone = ('laz044', 0.0025406388881842289) + +[fips22125] +centroid = (0.53883028143374589, -1.5955975950920762) +description = West Feliciana Parish, LA +station = ('khzr', 0.0028299662788291917) +zone = ('laz035', 0.00012481761531930917) + +[fips2212594159] +centroid = (0.53728624100438405, -1.5948193353253195) +description = District 1, LA +station = ('khzr', 0.0019173374273635036) +zone = ('laz035', 0.0017912710840178008) + +[fips2212594363] +centroid = (0.53890005969724064, -1.5932131262680016) +description = District 2, LA +station = ('khzr', 0.0040156992046098527) +zone = ('laz035', 0.0020321151698125882) + +[fips2212594546] +centroid = (0.53814251698870497, -1.5963904283580872) +description = District 3, LA +station = ('khzr', 0.0020153091769044588) +zone = ('laz035', 0.0010690267353088583) + +[fips2212594723] +centroid = (0.54056005980210498, -1.5979094233126829) +description = District 4, LA +station = ('khzr', 0.0045642480884912524) +zone = ('laz035', 0.002563564974167242) + +[fips2212594921] +centroid = (0.5393496565125544, -1.5939935676963233) +description = District 5, LA +station = ('khzr', 0.0039187596296969898) +zone = ('laz035', 0.0014176678098244443) + +[fips2212595082] +centroid = (0.53922254418313165, -1.5946424985655074) +description = District 6, LA +station = ('khzr', 0.0035167462491307766) +zone = ('laz035', 0.00084812097985435407) + +[fips2212595232] +centroid = (0.53669890280450294, -1.5945122097368458) +description = District 7, LA +station = ('khzr', 0.0018841132549863404) +zone = ('laz035', 0.0024345961185523635) + +[fips2212665] +centroid = (0.52903544131167612, -1.6063749159566787) +description = Carencro city, LA +station = ('klft', 0.0020307352943200289) +zone = ('laz044', 0.001875546438938232) + +[fips22127] +centroid = (0.55747888014520997, -1.6168951672757546) +description = Winn Parish, LA +station = ('kier', 0.0076773026554521643) +zone = ('laz019', 8.4535325010332005e-05) + +[fips2212794162] +centroid = (0.55464463997289648, -1.6202808965851134) +description = District 1, LA +station = ('kier', 0.0039876288305382059) +zone = ('laz018', 0.0039921847307442145) + +[fips2212794366] +centroid = (0.55703930151980274, -1.6167565357732687) +description = District 2, LA +station = ('kier', 0.0075900811335795236) +zone = ('laz019', 0.00049484822736910053) + +[fips2212794549] +centroid = (0.55627357321707527, -1.6196241815474655) +description = District 3, LA +station = ('kier', 0.0050658684225209265) +zone = ('laz019', 0.0026945001359903755) + +[fips2212794726] +centroid = (0.55912830355480725, -1.6200645630243289) +description = District 4, LA +station = ('kier', 0.006645036996853408) +zone = ('laz019', 0.0031836720249713664) + +[fips2212794924] +centroid = (0.55995176734919072, -1.6164612958770015) +description = District 5, LA +station = ('krsn', 0.0075437228309721749) +zone = ('laz019', 0.0024390384769471347) + +[fips2212795083] +centroid = (0.5586627020702527, -1.6131472995998994) +description = District 6, LA +station = ('krsn', 0.0091389107984118957) +zone = ('laz019', 0.0033121858992066992) + +[fips2212795233] +centroid = (0.55561891766794469, -1.6151082817342703) +description = District 7, LA +station = ('kaex', 0.0076804871473080405) +zone = ('laz019', 0.0024006536267546746) + +[fips2212840] +centroid = (0.52668352287815112, -1.6296067492838799) +description = Carlyss CDP, LA +station = ('klch', 0.0004558047522827711) +zone = ('laz041', 0.0009323703962539464) + +[fips2213260] +centroid = (0.56295382092908353, -1.626052805141214) +description = Castor village, LA +station = ('kmne', 0.0071731569943946777) +zone = ('laz012', 0.0022864740143497455) + +[fips2213330] +centroid = (0.52731531461408065, -1.6007594761680195) +description = Catahoula CDP, LA +station = ('kara', 0.0040186954226758371) +zone = ('laz045', 0.0003055819057270258) + +[fips2213575] +centroid = (0.52947006320200785, -1.6030486325616427) +description = Cecilia CDP, LA +station = ('klft', 0.0033049434287021635) +zone = ('laz045', 0.002627590269658346) + +[fips2213855] +centroid = (0.54545698244430296, -1.6093670909730051) +description = Center Point CDP, LA +station = ('kesf', 0.002905274093089411) +zone = ('laz029', 0.0043777557001615612) + +[fips2213960] +centroid = (0.53336048937116576, -1.5888693333723454) +description = Central city, LA +station = ('kbtr', 0.0017796519238500658) +zone = ('laz048', 0.00097619754103177043) + +[fips2214100] +centroid = (0.52112983283842773, -1.5848819018033617) +description = Chackbay CDP, LA +station = ('k7r3', 0.0052298150664329456) +zone = ('laz057', 0.0029325538149900321) + +[fips2214135] +centroid = (0.52262165301656982, -1.570203002115681) +description = Chalmette CDP, LA +station = ('knbg', 0.0020783124973728796) +zone = ('laz064', 0.0014932268696714456) + +[fips2214310] +centroid = (0.52127869197033028, -1.5976740482097589) +description = Charenton CDP, LA +station = ('kptn', 0.0040850402204112377) +zone = ('laz054', 0.003117019746311235) + +[fips2214450] +centroid = (0.53353964741888293, -1.6112326734104621) +description = Chataignier village, LA +station = ('kacp', 0.0064135147785878387) +zone = ('laz032', 0.0030872792900211786) + +[fips2214485] +centroid = (0.56390141253986881, -1.6135819738501087) +description = Chatham town, LA +station = ('krsn', 0.004111487597489678) +zone = ('laz013', 0.0015725475625044906) + +[fips2214520] +centroid = (0.51391696299858824, -1.5811568630341228) +description = Chauvin CDP, LA +station = ('khum', 0.0023917047146629501) +zone = ('laz066', 0.0042842634598652804) + +[fips2214660] +centroid = (0.54124396706949895, -1.6107663214343289) +description = Cheneyville town, LA +station = ('kesf', 0.0067910224321851348) +zone = ('laz029', 0.0044661892519891732) + +[fips2215150] +centroid = (0.52090524387028103, -1.5834222480433338) +description = Choctaw CDP, LA +station = ('khum', 0.0049449600749226687) +zone = ('laz059', 0.0031271992220379993) + +[fips2215290] +centroid = (0.56780920473508412, -1.614876955795211) +description = Choudrant village, LA +station = ('krsn', 0.00097828371706725858) +zone = ('laz005', 0.0023695289683917154) + +[fips2215465] +centroid = (0.53064472214847758, -1.6094464336408008) +description = Church Point town, LA +station = ('klft', 0.0048048290919984818) +zone = ('laz043', 0.0035702583969749553) + +[fips2215605] +centroid = (0.56795174577509455, -1.6091264449757403) +description = Claiborne CDP, LA +station = ('kmlu', 0.002434018701788635) +zone = ('laz014', 0.0012549325670200338) + +[fips2215745] +centroid = (0.55536827093406582, -1.6236638857275467) +description = Clarence village, LA +station = ('kier', 0.0018034009933690694) +zone = ('laz018', 0.0019597323525021673) + +[fips2215780] +centroid = (0.55900831216873259, -1.6081610160999995) +description = Clarks village, LA +station = ('kmlu', 0.0086611177456485736) +zone = ('laz021', 0.0011624357204003336) + +[fips2215850] +centroid = (0.55365612039115186, -1.5975795735373484) +description = Clayton town, LA +station = ('khez', 0.0039408868541667957) +zone = ('laz024', 0.0047432446628334572) + +[fips2215990] +centroid = (0.53863791124359106, -1.5885193424974431) +description = Clinton town, LA +station = ('kbtr', 0.0060760422397700383) +zone = ('laz036', 0.00053516237659129759) + +[fips2216375] +centroid = (0.5501203102194141, -1.6179156787426885) +description = Colfax town, LA +station = ('kaex', 0.003515243451062534) +zone = ('laz020', 0.0025123416075890541) + +[fips2216655] +centroid = (0.57053561846620959, -1.6034656266265293) +description = Collinston village, LA +station = ('kbqp', 0.0012400846659842116) +zone = ('laz007', 0.002510770834571921) + +[fips2216830] +centroid = (0.56028735925776418, -1.6070369542485452) +description = Columbia town, LA +station = ('kmlu', 0.007263415970030722) +zone = ('laz021', 0.00061991163869245657) + +[fips2217180] +centroid = (0.52383833949142755, -1.5850993174682826) +description = Convent CDP, LA +station = ('k7r3', 0.0069288345819362926) +zone = ('laz057', 0.00041491276349695845) + +[fips2217215] +centroid = (0.55465757286265371, -1.6353757780467144) +description = Converse village, LA +station = ('kaqv', 0.004203558061163782) +zone = ('laz017', 0.0043379726962590086) + +[fips2217880] +centroid = (0.54086311877342119, -1.6065921919952593) +description = Cottonport town, LA +station = ('kesf', 0.008076993959018966) +zone = ('laz029', 0.0016906864330687179) + +[fips2217915] +centroid = (0.57270186877390739, -1.6305410240324723) +description = Cotton Valley town, LA +station = ('kmne', 0.0033764841881263967) +zone = ('laz003', 0.0021708742168789512) + +[fips2218055] +centroid = (0.5589560395576354, -1.6291006212540942) +description = Coushatta town, LA +station = ('kier', 0.0061982527081102341) +zone = ('laz011', 0.0011777456065606199) + +[fips2218125] +centroid = (0.53198075423758673, -1.5727611661069143) +description = Covington city, LA +station = ('kasd', 0.0050004819089919722) +zone = ('laz040', 0.0026546968832113133) + +[fips2218295] +centroid = (0.54851954658936253, -1.6140613634357541) +description = Creola village, LA +station = ('kesf', 0.0027087700880297307) +zone = ('laz020', 0.0032295642770322043) + +[fips2218335] +centroid = (0.52784915847238811, -1.5932715249847733) +description = Crescent CDP, LA +station = ('kbtr', 0.005466606040263864) +zone = ('laz046', 0.00096573474975627637) + +[fips2218650] +centroid = (0.52739748471526449, -1.6122556806982258) +description = Crowley city, LA +station = ('k3r7', 0.0045158120244316001) +zone = ('laz043', 0.00138736691842791) + +[fips2218790] +centroid = (0.57539505143607472, -1.6309498325031668) +description = Cullen town, LA +station = ('kmne', 0.0059471478346883148) +zone = ('laz003', 0.0047286601478376197) + +[fips2218930] +centroid = (0.51515632130042943, -1.576550921684817) +description = Cut Off CDP, LA +station = ('kgao', 0.0016267621175857609) +zone = ('laz067', 0.0027424090812091981) + +[fips2220155] +centroid = (0.52275187203206108, -1.6055554489662822) +description = Delcambre town, LA +station = ('kiya', 0.001464024390895572) +zone = ('laz053', 0.0040709129166530602) + +[fips2220190] +centroid = (0.56641603056626477, -1.5968008948915713) +description = Delhi town, LA +station = ('kbqp', 0.007845367222892188) +zone = ('laz016', 0.0039601944749682325) + +[fips2220330] +centroid = (0.56412566989545765, -1.5875172966139954) +description = Delta village, LA +station = ('ktvr', 0.0011543702476131551) +zone = ('msz047', 0.0016798318166585842) + +[fips2220435] +centroid = (0.53187737838599103, -1.5875345055604204) +description = Denham Springs city, LA +station = ('kbtr', 0.0030508525205195256) +zone = ('laz048', 0.0023388871262771372) + +[fips2220575] +centroid = (0.53143505959365811, -1.6309329900758853) +description = DeQuincy city, LA +station = ('klch', 0.0044456472425258324) +zone = ('laz030', 0.0038058126993434907) + +[fips2220610] +centroid = (0.53834703467045375, -1.6283084861197838) +description = DeRidder city, LA +station = ('kdri', 0.00070663353369120594) +zone = ('laz030', 0.0035051618879111384) + +[fips2220680] +centroid = (0.52035696613905957, -1.5789923755089694) +description = Des Allemands CDP, LA +station = ('kmsy', 0.0046419011596965576) +zone = ('laz060', 0.0020170999222964732) + +[fips2220820] +centroid = (0.52311120041846171, -1.576976956555229) +description = Destrehan CDP, LA +station = ('kmsy', 0.0016478407074197792) +zone = ('laz060', 0.001549814312201823) + +[fips2220890] +centroid = (0.54707247665324155, -1.6081778061674037) +description = Deville CDP, LA +station = ('kesf', 0.002545740156687929) +zone = ('laz029', 0.0051380066045457152) + +[fips2221135] +centroid = (0.56892309131699936, -1.6289256519965816) +description = Dixie Inn village, LA +station = ('kmne', 0.0010300625345748189) +zone = ('laz003', 0.0020362366911901831) + +[fips2221170] +centroid = (0.55991518524806883, -1.6171996748703501) +description = Dodson village, LA +station = ('krsn', 0.0076398161961171718) +zone = ('laz019', 0.0024056826799826072) + +[fips2221240] +centroid = (0.5252580426648773, -1.5881194875658111) +description = Donaldsonville city, LA +station = ('k7r3', 0.0070843472112720827) +zone = ('laz049', 0.002254976410652117) + +[fips2221450] +centroid = (0.56943874884450119, -1.6129097253821181) +description = Downsville village, LA +station = ('krsn', 0.0032368623342877052) +zone = ('laz006', 0.0036294201435059501) + +[fips2221590] +centroid = (0.56759383110538797, -1.6304115729618518) +description = Doyline village, LA +station = ('kmne', 0.0028258512174819412) +zone = ('laz003', 0.0035674984142609143) + +[fips2221765] +centroid = (0.55119775432654783, -1.6149779056391464) +description = Dry Prong village, LA +station = ('kesf', 0.004677121548709931) +zone = ('laz020', 0.00052548755006272502) + +[fips2221800] +centroid = (0.57078010418782887, -1.6172487884355013) +description = Dubach town, LA +station = ('krsn', 0.0034672272277355776) +zone = ('laz005', 0.0017754539792042136) + +[fips2221835] +centroid = (0.5679948903142038, -1.6272723888626299) +description = Dubberly village, LA +station = ('kmne', 0.0020812170218835395) +zone = ('laz003', 0.0033024425423943747) + +[fips2221940] +centroid = (0.51321535809257901, -1.5828888230640468) +description = Dulac CDP, LA +station = ('khum', 0.0028482374781578419) +zone = ('laz066', 0.0026455247563009574) + +[fips2222255] +centroid = (0.5277043659576427, -1.6090057380046723) +description = Duson town, LA +station = ('klft', 0.0029195332558813558) +zone = ('laz044', 0.001956543690204622) + +[fips2222465] +centroid = (0.56335037718842929, -1.618159134720049) +description = East Hodge village, LA +station = ('krsn', 0.0045277451724590528) +zone = ('laz013', 0.0023405736484749698) + +[fips2222610] +centroid = (0.56828924009255266, -1.632978254159835) +description = Eastwood CDP, LA +station = ('kbad', 0.0018588843078939374) +zone = ('laz002', 0.002165686673755645) + +[fips2222722] +centroid = (0.52758596282118742, -1.5672840087548907) +description = Eden Isle CDP, LA +station = ('kasd', 0.0021385627534918901) +zone = ('laz062', 0.003673581362508714) + +[fips2222815] +centroid = (0.52413499310438905, -1.5803384606945701) +description = Edgard CDP, LA +station = ('kmsy', 0.0045162317758425845) +zone = ('laz058', 0.00084612029073389671) + +[fips2222850] +centroid = (0.55937943898087672, -1.6290198474163116) +description = Edgefield village, LA +station = ('kier', 0.0065110752679444391) +zone = ('laz011', 0.0007566742578217436) + +[fips2223025] +centroid = (0.52788383816462525, -1.614631911568231) +description = Egan CDP, LA +station = ('k3r7', 0.0024416610124988274) +zone = ('laz043', 0.0016949917451829553) + +[fips2223235] +centroid = (0.53870859707829688, -1.6196973806562942) +description = Elizabeth town, LA +station = ('kacp', 0.0026307599164287908) +zone = ('laz031', 0.0037368336483344562) + +[fips2223567] +centroid = (0.52279540054360596, -1.5740672483460592) +description = Elmwood CDP, LA +station = ('kmsy', 0.0012413026626985893) +zone = ('laz061', 0.0024270505955422002) + +[fips2223620] +centroid = (0.53199700325292276, -1.6178776654715799) +description = Elton town, LA +station = ('k3r7', 0.004178057077470594) +zone = ('laz031', 0.0035788596201630821) + +[fips2223725] +centroid = (0.5139043268148038, -1.564054713306388) +description = Empire CDP, LA +station = ('kbve', 0.0037857900822584421) +zone = ('laz069', 0.00097479888770530122) + +[fips2224145] +centroid = (0.56904407754074771, -1.5966518437734509) +description = Epps village, LA +station = ('kbqp', 0.0064586665629792848) +zone = ('laz008', 0.0032435764652047573) + +[fips2224180] +centroid = (0.52287947305367444, -1.606356101307342) +description = Erath town, LA +station = ('kiya', 0.00076720142284468463) +zone = ('laz044', 0.0043383809872947253) + +[fips2224215] +centroid = (0.56535679024322938, -1.6131019384926404) +description = Eros town, LA +station = ('krsn', 0.0032230066338910859) +zone = ('laz013', 0.0025275238984513075) + +[fips2224250] +centroid = (0.53307076471533477, -1.5950794591970368) +description = Erwinville CDP, LA +station = ('khzr', 0.00333373198141773) +zone = ('laz047', 0.0018135175779765919) + +[fips2224390] +centroid = (0.52083152116267684, -1.5724398684449146) +description = Estelle CDP, LA +station = ('knbg', 0.0011818635620065791) +zone = ('laz061', 0.00081047905546050708) + +[fips2224460] +centroid = (0.52676853786601585, -1.6137892840586605) +description = Estherwood village, LA +station = ('k3r7', 0.0033446090046851547) +zone = ('laz043', 0.0020535227782915782) + +[fips2224565] +centroid = (0.53215828912909957, -1.6130163824527075) +description = Eunice city, LA +station = ('k3r7', 0.0057773500873127739) +zone = ('laz043', 0.00348919273870133) + +[fips2224775] +centroid = (0.54022755712630754, -1.6075384397025207) +description = Evergreen town, LA +station = ('kesf', 0.0083303794188742467) +zone = ('laz029', 0.0026562287393478504) + +[fips2225160] +centroid = (0.57203349493685618, -1.6126932871015784) +description = Farmerville town, LA +station = ('krsn', 0.0053212173789102431) +zone = ('laz006', 0.0010606370401044019) + +[fips2225335] +centroid = (0.52994769000510855, -1.6216974756192022) +description = Fenton village, LA +station = ('k3r7', 0.0042265661268516448) +zone = ('laz042', 0.0022910375146617755) + +[fips2225440] +centroid = (0.55212057971524731, -1.5979566170156567) +description = Ferriday town, LA +station = ('khez', 0.0038192885622329656) +zone = ('laz026', 0.003514779939759816) + +[fips2225545] +centroid = (0.54315868052539928, -1.608467338837017) +description = Fifth Ward CDP, LA +station = ('kesf', 0.0053128499705162929) +zone = ('laz029', 0.0024728330726590851) + +[fips2225615] +centroid = (0.54966179477162269, -1.6311805126704031) +description = Fisher village, LA +station = ('kaqv', 0.0030292789126689854) +zone = ('laz017', 0.0018755034307293935) + +[fips2225860] +centroid = (0.5489491244781558, -1.6311554846489296) +description = Florien village, LA +station = ('kaqv', 0.0037405215273469709) +zone = ('laz017', 0.002417808761779881) + +[fips2226140] +centroid = (0.53463679629327165, -1.5742197028562208) +description = Folsom village, LA +station = ('khdc', 0.0038545012568723886) +zone = ('laz072', 0.0036844269585107337) + +[fips2226280] +centroid = (0.5339665200473358, -1.5990343403754708) +description = Fordoche town, LA +station = ('khzr', 0.0030126392519175169) +zone = ('laz034', 0.0020349651307875619) + +[fips2226350] +centroid = (0.57233475621904284, -1.5954500798636975) +description = Forest village, LA +station = ('kbqp', 0.0068827609072954583) +zone = ('laz008', 0.00065119621468117794) + +[fips2226420] +centroid = (0.54193389572281225, -1.6148633422270455) +description = Forest Hill village, LA +station = ('kacp', 0.0057813776983433457) +zone = ('laz028', 0.0025874028031214287) + +[fips2226665] +centroid = (0.55172285408530286, -1.6302456445098648) +description = Fort Jesup CDP, LA +station = ('kaqv', 0.0011637905297319034) +zone = ('laz017', 0.0023577301275109026) + +[fips2226746] +centroid = (0.54280467539321731, -1.6262023449515248) +description = Fort Polk North CDP, LA +station = ('kpoe', 0.00092630219203157255) +zone = ('laz027', 0.00019951893718286854) + +[fips2226757] +centroid = (0.54199843799855107, -1.6269392055084242) +description = Fort Polk South CDP, LA +station = ('kpoe', 0.0003496801363351721) +zone = ('laz027', 0.00106185011527274) + +[fips2227155] +centroid = (0.51984607336041577, -1.5971433983039824) +description = Franklin city, LA +station = ('kptn', 0.0029246802492057457) +zone = ('laz054', 0.0016793454358381369) + +[fips2227190] +centroid = (0.53840056391861235, -1.5733421338550257) +description = Franklinton town, LA +station = ('khdc', 0.0070174627083193679) +zone = ('laz039', 0.0015814767355164067) + +[fips2227435] +centroid = (0.52939103469347748, -1.5850077225891379) +description = French Settlement village, LA +station = ('kbtr', 0.0061556129921127621) +zone = ('laz050', 0.0023610504478949997) + +[fips2227540] +centroid = (0.56281508470684261, -1.635144085588512) +description = Frierson CDP, LA +station = ('kshv', 0.0041504699699178469) +zone = ('laz010', 0.0034249133707803326) + +[fips2228065] +centroid = (0.51392717317471248, -1.5761665129170654) +description = Galliano CDP, LA +station = ('kgao', 0.00070820420012274751) +zone = ('laz067', 0.001502864855766817) + +[fips2228275] +centroid = (0.5298549955685351, -1.5906053425661342) +description = Gardere CDP, LA +station = ('kbtr', 0.003060566129904789) +zone = ('laz048', 0.0031940239990012331) + +[fips2228345] +centroid = (0.52474592815575716, -1.5818744377027876) +description = Garyville CDP, LA +station = ('kmsy', 0.0059253520321060401) +zone = ('laz058', 0.0013576562571070111) + +[fips2228660] +centroid = (0.55429176930472823, -1.6123405386064578) +description = Georgetown village, LA +station = ('kesf', 0.0063712783196416918) +zone = ('laz022', 0.0035639480113758004) + +[fips2228835] +centroid = (0.56793425757598959, -1.6241213365244942) +description = Gibsland town, LA +station = ('kmne', 0.0040763977362137391) +zone = ('laz012', 0.0033691296414243813) + +[fips2228940] +centroid = (0.55944129344956739, -1.5996221672675426) +description = Gilbert village, LA +station = ('khez', 0.0092380175560283998) +zone = ('laz023', 0.0014271130535018276) + +[fips2229010] +centroid = (0.57297347691210265, -1.6378743914038694) +description = Gilliam village, LA +station = ('kdtn', 0.0053385922728449936) +zone = ('laz002', 0.0043620038163270074) + +[fips2229045] +centroid = (0.53017704372211316, -1.6266441226917896) +description = Gillis CDP, LA +station = ('kcwf', 0.0028958282783471722) +zone = ('laz041', 0.0035097640068037467) + +[fips2229150] +centroid = (0.52030404775613914, -1.5999499051944819) +description = Glencoe CDP, LA +station = ('kp92', 0.0047472625164671827) +zone = ('laz053', 0.0017105418783176464) + +[fips2229220] +centroid = (0.54058632700734743, -1.6158673952391327) +description = Glenmora town, LA +station = ('kacp', 0.0042010239485209804) +zone = ('laz028', 0.0040000932059608323) + +[fips2229395] +centroid = (0.5618282057345948, -1.6372007815790621) +description = Gloster CDP, LA +station = ('kshv', 0.0045507818937112997) +zone = ('laz010', 0.0025578920655483757) + +[fips2229640] +centroid = (0.51289296087315073, -1.5755929104583974) +description = Golden Meadow town, LA +station = ('kgao', 0.0010355913216332094) +zone = ('laz067', 0.00039409442394544748) + +[fips2229745] +centroid = (0.55890029374132666, -1.6219061471845706) +description = Goldonna village, LA +station = ('kier', 0.0056091170017441572) +zone = ('laz019', 0.004528317737804626) + +[fips2229850] +centroid = (0.5273602219357344, -1.5869258568903724) +description = Gonzales city, LA +station = ('kbtr', 0.0065064354584306958) +zone = ('laz049', 0.00028559202400720745) + +[fips2230515] +centroid = (0.56770057544244001, -1.618119725185539) +description = Grambling city, LA +station = ('krsn', 0.0018244631514710453) +zone = ('laz005', 0.0014746883756978806) + +[fips2230550] +centroid = (0.52467929148491599, -1.5829025762585525) +description = Gramercy town, LA +station = ('kmsy', 0.0067899978949686962) +zone = ('laz057', 0.0016695386631472215) + +[fips2230690] +centroid = (0.55996883666927522, -1.6372750453387346) +description = Grand Cane village, LA +station = ('kshv', 0.0064006290369175651) +zone = ('laz010', 0.0011702751947726513) + +[fips2230760] +centroid = (0.53093329488700225, -1.6064671915142315) +description = Grand Coteau town, LA +station = ('klft', 0.0039000782898091745) +zone = ('laz033', 0.0031701504132516053) + +[fips2230830] +centroid = (0.50986053856427316, -1.5713044794066149) +description = Grand Isle town, LA +station = ('kaxo', 0.0011510437004662974) +zone = ('laz067', 0.0044221284876217225) + +[fips2230900] +centroid = (0.52442271063158041, -1.583887535368623) +description = Grand Point CDP, LA +station = ('kmsy', 0.0076015508851089517) +zone = ('laz057', 0.00078673033580975145) + +[fips2231180] +centroid = (0.5179713803042636, -1.584467787531741) +description = Gray CDP, LA +station = ('khum', 0.0026228371390750265) +zone = ('laz065', 0.0010717602503557619) + +[fips2231250] +centroid = (0.55936359139126868, -1.6076501931345257) +description = Grayson village, LA +station = ('kmlu', 0.0082405656145920474) +zone = ('laz021', 0.00075478435774833453) + +[fips2231565] +centroid = (0.53807872520454469, -1.5824875718690132) +description = Greensburg town, LA +station = ('khdc', 0.006587797390067031) +zone = ('laz037', 0.00062060972528681611) + +[fips2231705] +centroid = (0.5661728887481694, -1.6399379988982576) +description = Greenwood town, LA +station = ('kshv', 0.0018973345028926894) +zone = ('laz001', 0.0027147427472528742) + +[fips2231915] +centroid = (0.52204469952573807, -1.5716990983504908) +description = Gretna city, LA +station = ('knbg', 0.0014549992347379285) +zone = ('laz061', 0.0020866181714067891) + +[fips2232020] +centroid = (0.53084981578887935, -1.5959060296774887) +description = Grosse Tete village, LA +station = ('kbtr', 0.0048051161185375512) +zone = ('laz047', 0.0020625495851458297) + +[fips2232055] +centroid = (0.52410481636162209, -1.6145514867962991) +description = Gueydan town, LA +station = ('k3r7', 0.0044976825453840906) +zone = ('laz052', 0.0042742886815225773) + +[fips2232405] +centroid = (0.52298524000634528, -1.6303142010428833) +description = Hackberry CDP, LA +station = ('kuxl', 0.0029181679656749568) +zone = ('laz073', 0.0017653383362353609) + +[fips2232510] +centroid = (0.52293473017779257, -1.5781321027206614) +description = Hahnville CDP, LA +station = ('kmsy', 0.0026589662273714815) +zone = ('laz060', 0.0016191410611315804) + +[fips2232650] +centroid = (0.56159499483994335, -1.6284812911690236) +description = Hall Summit village, LA +station = ('kbad', 0.007759047550885574) +zone = ('laz011', 0.0015495811083322427) + +[fips2232755] +centroid = (0.53242403296100815, -1.578763632657203) +description = Hammond city, LA +station = ('khdc', 0.00064341335286576245) +zone = ('laz072', 0.00097436778041393775) + +[fips2232930] +centroid = (0.52248815278208482, -1.5743333936036956) +description = Harahan city, LA +station = ('kmsy', 0.0013213007881680209) +zone = ('laz061', 0.0022192566974703122) + +[fips2233210] +centroid = (0.55442907435698263, -1.6026228245840337) +description = Harrisonburg village, LA +station = ('khez', 0.0082024597349006547) +zone = ('laz024', 0.001786004102887783) + +[fips2233245] +centroid = (0.52160738982835841, -1.5719488549664511) +description = Harvey CDP, LA +station = ('knbg', 0.0011832962737185341) +zone = ('laz061', 0.0016190355678113932) + +[fips2233420] +centroid = (0.56768964968132252, -1.6319840622580213) +description = Haughton town, LA +station = ('kbad', 0.0024114435539526963) +zone = ('laz002', 0.0030468793239315306) + +[fips2233490] +centroid = (0.52553729534519644, -1.6218282007801765) +description = Hayes CDP, LA +station = ('kcwf', 0.0038776641741120987) +zone = ('laz042', 0.0031869307684456684) + +[fips2233525] +centroid = (0.57537112297202997, -1.6255672196367241) +description = Haynesville town, LA +station = ('kmne', 0.0060100199011263022) +zone = ('laz004', 0.0032635961100998096) + +[fips2233735] +centroid = (0.56651757382214574, -1.6279222622096101) +description = Heflin village, LA +station = ('kmne', 0.0033558843578640339) +zone = ('laz012', 0.0037475476436456198) + +[fips2233875] +centroid = (0.52911131077426032, -1.6022265999372458) +description = Henderson town, LA +station = ('klft', 0.0036199863149904434) +zone = ('laz045', 0.0018942689902419429) + +[fips2234015] +centroid = (0.54198360269990908, -1.6078232599831537) +description = Hessmer village, LA +station = ('kesf', 0.0066104518488096032) +zone = ('laz029', 0.0018404607676882285) + +[fips2234085] +centroid = (0.52405144419309613, -1.5842379800291309) +description = Hester CDP, LA +station = ('k7r3', 0.0075687665250958368) +zone = ('laz057', 0.00039369320575132215) + +[fips2235100] +centroid = (0.56321808123112793, -1.6184382303207354) +description = Hodge village, LA +station = ('krsn', 0.0047474539180086825) +zone = ('laz013', 0.0025982082444419973) + +[fips2235870] +centroid = (0.57235959225429867, -1.6241877113959475) +description = Homer town, LA +station = ('kmne', 0.0043370669774384493) +zone = ('laz004', 0.0010572818728184804) + +[fips2236045] +centroid = (0.54674262687790709, -1.6300643571604603) +description = Hornbeck town, LA +station = ('kpoe', 0.0056834128958770189) +zone = ('laz017', 0.0047797269784015228) + +[fips2236150] +centroid = (0.57397037407425677, -1.6385620336758626) +description = Hosston village, LA +station = ('kdtn', 0.0064576048138996756) +zone = ('laz001', 0.0053473467544503019) + +[fips2236255] +centroid = (0.51624448172917037, -1.5831538164043772) +description = Houma city, LA +station = ('khum', 0.00066171784274093751) +zone = ('laz065', 0.0022399984611682277) + +[fips2236885] +centroid = (0.57595085153637227, -1.63876958823051) +description = Ida village, LA +station = ('ktxk', 0.0079678547201149433) +zone = ('arz070', 0.005460361404869005) + +[fips2237025] +centroid = (0.53469997721219387, -1.5796132414837813) +description = Independence town, LA +station = ('khdc', 0.0024040306815524544) +zone = ('laz072', 0.0028515529886321937) + +[fips2237270] +centroid = (0.53054946207790366, -1.5894880525921777) +description = Inniswold CDP, LA +station = ('kbtr', 0.0026406150178393925) +zone = ('laz048', 0.0024725970002183028) + +[fips2237410] +centroid = (0.5292894914375964, -1.6143529905004699) +description = Iota town, LA +station = ('k3r7', 0.0030502998474104892) +zone = ('laz043', 0.0014036239146928955) + +[fips2237445] +centroid = (0.52777112480153143, -1.6233823466659074) +description = Iowa town, LA +station = ('kcwf', 0.0021032576186723975) +zone = ('laz042', 0.00304162130514155) + +[fips2237830] +centroid = (0.5381642288845998, -1.5919078294270199) +description = Jackson town, LA +station = ('khzr', 0.0045160421005255996) +zone = ('laz036', 0.0024660127640861607) + +[fips2237935] +centroid = (0.56444050983922478, -1.6266836718526396) +description = Jamestown village, LA +station = ('kmne', 0.0055981381880704341) +zone = ('laz012', 0.002158051511107012) + +[fips2238075] +centroid = (0.52211938216443088, -1.6000534206724177) +description = Jeanerette city, LA +station = ('kara', 0.0037477052824840141) +zone = ('laz053', 0.00090183018796044609) + +[fips2238092] +centroid = (0.5192539180517991, -1.5726350137085803) +description = Jean Lafitte town, LA +station = ('knbg', 0.0019662894902763941) +zone = ('laz061', 0.0013346806150858754) + +[fips2238145] +centroid = (0.52291380368006124, -1.5735165446071773) +description = Jefferson CDP, LA +station = ('kmsy', 0.0015795040915958535) +zone = ('laz061', 0.0024551189225037349) + +[fips2238285] +centroid = (0.55309859241489479, -1.6079470910935825) +description = Jena town, LA +station = ('kesf', 0.0056707395972155263) +zone = ('laz022', 0.00052816368619889426) + +[fips2238355] +centroid = (0.5274918721212124, -1.6171922397677365) +description = Jennings city, LA +station = ('k3r7', 0.00041246676484617636) +zone = ('laz042', 0.0024664083121846182) + +[fips2238670] +centroid = (0.56258063462842223, -1.61810747297419) +description = Jonesboro town, LA +station = ('krsn', 0.0052248559112936833) +zone = ('laz013', 0.0025553436710219982) + +[fips2238775] +centroid = (0.5518658663642112, -1.6028781662536005) +description = Jonesville town, LA +station = ('kesf', 0.0078685860986315512) +zone = ('laz024', 0.00082265003575446652) + +[fips2238845] +centroid = (0.55604627898858805, -1.6147022483370865) +description = Jordan Hill CDP, LA +station = ('kaex', 0.0082204078161426161) +zone = ('laz019', 0.0023301314236213642) + +[fips2238880] +centroid = (0.55736566063663318, -1.6159143620493039) +description = Joyce CDP, LA +station = ('kier', 0.0083758422001872605) +zone = ('laz019', 0.00078386512025071197) + +[fips2238985] +centroid = (0.57608470083670771, -1.6183129680403199) +description = Junction City village, LA +station = ('keld', 0.0039061012920567095) +zone = ('arz073', 0.0033989184284415586) + +[fips2239055] +centroid = (0.52370305902110548, -1.6106571685429092) +description = Kaplan city, LA +station = ('kiya', 0.0030634479710958079) +zone = ('laz052', 0.0027685880961735069) + +[fips2239085] +centroid = (0.56143751378153595, -1.6391176417899427) +description = Keachi town, LA +station = ('kshv', 0.0050654447536532879) +zone = ('laz010', 0.0032750780192031333) + +[fips2239475] +centroid = (0.52377727042090039, -1.5752437747948285) +description = Kenner city, LA +station = ('kmsy', 0.00019278900384048025) +zone = ('laz060', 0.0027497084398097832) + +[fips2239545] +centroid = (0.53989587475525858, -1.5797876173293481) +description = Kentwood town, LA +station = ('kmcb', 0.0044158981219612958) +zone = ('laz071', 0.0021874772520968774) + +[fips2239650] +centroid = (0.57590934760675994, -1.5937279460374623) +description = Kilbourne village, LA +station = ('kbqp', 0.0092731097674593772) +zone = ('laz008', 0.0042006281085220712) + +[fips2239685] +centroid = (0.52975301598034108, -1.5809353807520445) +description = Killian town, LA +station = ('khdc', 0.0038298789484878318) +zone = ('laz050', 0.0029350779765262031) + +[fips2239720] +centroid = (0.52354355338076575, -1.5792478917114614) +description = Killona CDP, LA +station = ('kmsy', 0.0035410076888199365) +zone = ('laz058', 0.001715490379706883) + +[fips2239755] +centroid = (0.53203492925756857, -1.6205589624415413) +description = Kinder town, LA +station = ('k3r7', 0.0049801982669458221) +zone = ('laz031', 0.0029779924617810501) + +[fips2240210] +centroid = (0.52113763446018413, -1.5817254913044223) +description = Kraemer CDP, LA +station = ('khum', 0.0051387048343517188) +zone = ('laz059', 0.0024833501036862745) + +[fips2240280] +centroid = (0.53283837412543167, -1.6014245164261995) +description = Krotz Springs town, LA +station = ('khzr', 0.0052990136157433114) +zone = ('laz034', 0.0039053064536866871) + +[fips2240420] +centroid = (0.52053783460944369, -1.5874205879201426) +description = Labadieville CDP, LA +station = ('k7r3', 0.0031185054063741589) +zone = ('laz056', 0.002129691540564397) + +[fips2240595] +centroid = (0.52766764423018075, -1.6217744446392153) +description = Lacassine CDP, LA +station = ('k3r7', 0.0037331506336858861) +zone = ('laz042', 0.0017179578719174701) + +[fips2240665] +centroid = (0.52908164017697645, -1.5695847366814548) +description = Lacombe CDP, LA +station = ('kasd', 0.0018265674978556667) +zone = ('laz040', 0.002342344773910752) + +[fips2240735] +centroid = (0.52729142105662086, -1.6062508405001543) +description = Lafayette city, LA +station = ('klft', 0.00051481290209888541) +zone = ('laz044', 0.00049885302407945431) + +[fips2240840] +centroid = (0.5185526796649329, -1.5724855437114393) +description = Lafitte CDP, LA +station = ('knbg', 0.0024578230242835288) +zone = ('laz061', 0.0020338138616830029) + +[fips2240878] +centroid = (0.51954015204912618, -1.5842298817014016) +description = Lafourche Crossing CDP, LA +station = ('khum', 0.0038369509760704467) +zone = ('laz065', 0.0024715624755206884) + +[fips2241050] +centroid = (0.52499751736743216, -1.6175285123547183) +description = Lake Arthur town, LA +station = ('k3r7', 0.002837832778160959) +zone = ('laz042', 0.0038536368489599936) + +[fips2241155] +centroid = (0.52713654053879888, -1.6269041592970441) +description = Lake Charles city, LA +station = ('kcwf', 0.0010064707337534) +zone = ('laz041', 0.0022080947045183875) + +[fips2241400] +centroid = (0.57250243000028189, -1.5913079946696944) +description = Lake Providence town, LA +station = ('ktvr', 0.008205256632926608) +zone = ('laz009', 0.0014959909267991838) + +[fips2241470] +centroid = (0.56784060320832752, -1.6062929378417123) +description = Lakeshore CDP, LA +station = ('kmlu', 0.00031778423284810385) +zone = ('laz014', 0.00203071913896807) + +[fips2241645] +centroid = (0.56764608626319268, -1.637639766792524) +description = Lakeview CDP, LA +station = ('kshv', 0.0012877672436307241) +zone = ('laz001', 0.0012431238257321967) + +[fips2242030] +centroid = (0.524887579077849, -1.5790919465427957) +description = Laplace CDP, LA +station = ('kmsy', 0.0036399989531787874) +zone = ('laz058', 0.0010748396612542653) + +[fips2242135] +centroid = (0.5160100141974574, -1.577361679482246) +description = Larose CDP, LA +station = ('kgao', 0.0027341500517853311) +zone = ('laz067', 0.0038245468452689792) + +[fips2242520] +centroid = (0.53254620600864777, -1.6089005121040696) +description = Lawtell CDP, LA +station = ('klft', 0.0061146987280535654) +zone = ('laz033', 0.0030619786722468215) + +[fips2242800] +centroid = (0.54259048858741254, -1.6126823264338759) +description = Lecompte town, LA +station = ('kesf', 0.0056433066158282979) +zone = ('laz028', 0.0027716236803785564) + +[fips2243010] +centroid = (0.54349881029002789, -1.6279535036032209) +description = Leesville city, LA +station = ('kpoe', 0.0019855384453890891) +zone = ('laz027', 0.0014644882690859262) + +[fips2243255] +centroid = (0.5253569330202954, -1.587011814356033) +description = Lemannville CDP, LA +station = ('k7r3', 0.0074569240693674339) +zone = ('laz049', 0.0018135463248852204) + +[fips2243395] +centroid = (0.53166378499213196, -1.6054124715939586) +description = Leonville town, LA +station = ('klft', 0.0045812147950766409) +zone = ('laz033', 0.0024114830677127415) + +[fips2243920] +centroid = (0.57456394309956749, -1.6172394509240031) +description = Lillie village, LA +station = ('keld', 0.0056548932416830861) +zone = ('arz073', 0.0044823916004845263) + +[fips2244235] +centroid = (0.57228241379477551, -1.620838511827833) +description = Lisbon village, LA +station = ('krsn', 0.0063101202908576962) +zone = ('laz004', 0.0019721863089366279) + +[fips2244655] +centroid = (0.53224316449062403, -1.5838286305063682) +description = Livingston town, LA +station = ('khdc', 0.004970164360436056) +zone = ('laz050', 0.00078610242904556785) + +[fips2244690] +centroid = (0.53341185441105199, -1.597850884969571) +description = Livonia town, LA +station = ('khzr', 0.0029274004693753148) +zone = ('laz034', 0.0026841611237604446) + +[fips2244900] +centroid = (0.51737220877205392, -1.5801527402088655) +description = Lockport town, LA +station = ('khum', 0.0023901813856066949) +zone = ('laz059', 0.0015220290987140335) + +[fips2244970] +centroid = (0.51758938009087962, -1.5803586716073081) +description = Lockport Heights CDP, LA +station = ('khum', 0.002379643568496433) +zone = ('laz059', 0.0012599160877187633) + +[fips2245040] +centroid = (0.5580830782256655, -1.640493659372215) +description = Logansport town, LA +station = ('kshv', 0.0086070210825870686) +zone = ('txz153', 0.0039110923685137496) + +[fips2245460] +centroid = (0.56021536442611952, -1.639734231708087) +description = Longstreet village, LA +station = ('kshv', 0.0063800383398679205) +zone = ('laz010', 0.003230020797480436) + +[fips2245530] +centroid = (0.53425790276595619, -1.6270852197536461) +description = Longville CDP, LA +station = ('kdri', 0.0042222113502950716) +zone = ('laz030', 0.0018948237675978331) + +[fips2245670] +centroid = (0.52463450633630981, -1.6011424886723697) +description = Loreauville village, LA +station = ('kara', 0.0022316630068878341) +zone = ('laz053', 0.0028865738509326433) + +[fips2246370] +centroid = (0.56276539518303825, -1.6233889614637724) +description = Lucky village, LA +station = ('krsn', 0.007842757048897725) +zone = ('laz012', 0.0019066419756132531) + +[fips2246615] +centroid = (0.52182473568010923, -1.5769606551800153) +description = Luling CDP, LA +station = ('kmsy', 0.0023627148688753785) +zone = ('laz060', 0.00029724218235067967) + +[fips2246720] +centroid = (0.52469920569168127, -1.5832175034687823) +description = Lutcher town, LA +station = ('kmsy', 0.0070623420262620595) +zone = ('laz057', 0.0014289687564102704) + +[fips2246755] +centroid = (0.52231222359348384, -1.6018851437223856) +description = Lydia CDP, LA +station = ('kara', 0.0024232333782609984) +zone = ('laz053', 0.00094899838033502568) + +[fips2247315] +centroid = (0.54088514482858141, -1.6158512683968442) +description = McNary village, LA +station = ('kacp', 0.0044838853431061407) +zone = ('laz028', 0.0037040447160013282) + +[fips2247560] +centroid = (0.53055440135968679, -1.5736961913470853) +description = Madisonville town, LA +station = ('khdc', 0.0043423351366604851) +zone = ('laz040', 0.0035103681099522906) + +[fips2248085] +centroid = (0.53468009791201365, -1.6129971140177657) +description = Mamou town, LA +station = ('kacp', 0.004536281196805241) +zone = ('laz032', 0.0016520211142589095) + +[fips2248225] +centroid = (0.53014122956586218, -1.5724000923912616) +description = Mandeville city, LA +station = ('kasd', 0.0041673472583966462) +zone = ('laz040', 0.0026180440662787745) + +[fips2248260] +centroid = (0.56389108019069711, -1.6018553509520541) +description = Mangham town, LA +station = ('kmlu', 0.0052127085402907565) +zone = ('laz015', 0.00191898330064523) + +[fips2248365] +centroid = (0.55912680257165059, -1.6353691108889719) +description = Mansfield city, LA +station = ('kaqv', 0.0074278037660371003) +zone = ('laz010', 0.00065419748811367602) + +[fips2248400] +centroid = (0.54221321821630142, -1.6066178657885561) +description = Mansura town, LA +station = ('kesf', 0.0068938734035352365) +zone = ('laz029', 0.00078266466336682195) + +[fips2248470] +centroid = (0.55093616437825887, -1.6314943577764967) +description = Many town, LA +station = ('kaqv', 0.0017993090517113453) +zone = ('laz017', 0.001145171333085507) + +[fips2248610] +centroid = (0.53216390908929101, -1.5973011760683626) +description = Maringouin town, LA +station = ('khzr', 0.0040167476886119168) +zone = ('laz047', 0.0031234993606327009) + +[fips2248645] +centroid = (0.57417691633793777, -1.6098987008098702) +description = Marion town, LA +station = ('kbqp', 0.0058078715935908328) +zone = ('laz006', 0.0022824286546145353) + +[fips2248750] +centroid = (0.54322339733406322, -1.6068587910385015) +description = Marksville city, LA +station = ('kesf', 0.0059413682364975011) +zone = ('laz029', 0.0012843036685212632) + +[fips2248785] +centroid = (0.52161194513770603, -1.572773139065583) +description = Marrero CDP, LA +station = ('knbg', 0.0017285689701507063) +zone = ('laz061', 0.0012241833950628589) + +[fips2248925] +centroid = (0.56024828133581206, -1.6269807094380366) +description = Martin village, LA +station = ('kier', 0.006597365938514347) +zone = ('laz011', 0.0017908333304604662) + +[fips2249170] +centroid = (0.51805161308997782, -1.5804985248402705) +description = Mathews CDP, LA +station = ('khum', 0.0026245833846086576) +zone = ('laz059', 0.00078214685862556979) + +[fips2249240] +centroid = (0.52546830247986509, -1.6078281294517665) +description = Maurice village, LA +station = ('kiya', 0.0023614241010398059) +zone = ('laz044', 0.0019388774752078669) + +[fips2249730] +centroid = (0.53567601768978657, -1.6013484549773975) +description = Melville town, LA +station = ('khzr', 0.0041051764911195776) +zone = ('laz034', 0.002266398278516428) + +[fips2249800] +centroid = (0.52233463362107935, -1.5693873224897614) +description = Meraux CDP, LA +station = ('knbg', 0.0022085311921543971) +zone = ('laz064', 0.00073049521497848017) + +[fips2249870] +centroid = (0.52688011676509583, -1.6158923185408514) +description = Mermentau village, LA +station = ('k3r7', 0.0016556086748336972) +zone = ('laz043', 0.0031492089236765165) + +[fips2249905] +centroid = (0.57206499812985456, -1.6021139214807372) +description = Mer Rouge village, LA +station = ('kbqp', 0.0012909420222485136) +zone = ('laz007', 0.0007683598536403351) + +[fips2249940] +centroid = (0.5323222802656169, -1.590137000914654) +description = Merrydale CDP, LA +station = ('kbtr', 0.00085923536514018878) +zone = ('laz048', 0.00069715728210588271) + +[fips2250010] +centroid = (0.53679301095777043, -1.6323294629169909) +description = Merryville town, LA +station = ('kdri', 0.0030839251446044239) +zone = ('laz030', 0.0033156886499468136) + +[fips2250115] +centroid = (0.52356025618170743, -1.5739006392156638) +description = Metairie CDP, LA +station = ('kmsy', 0.0010910275518768689) +zone = ('laz061', 0.0031398367154992857) + +[fips2250395] +centroid = (0.5528379100378169, -1.608294533787777) +description = Midway CDP, LA +station = ('kesf', 0.0053068806130229058) +zone = ('laz022', 0.00017864753286053251) + +[fips2250815] +centroid = (0.52558747356119129, -1.6069084805623057) +description = Milton CDP, LA +station = ('klft', 0.0018282445626560185) +zone = ('laz044', 0.0016138061701560409) + +[fips2250885] +centroid = (0.56931149688873828, -1.6279166597027113) +description = Minden city, LA +station = ('kmne', 0.00067108392633649725) +zone = ('laz003', 0.0018837012536195741) + +[fips2250990] +centroid = (0.55105261274595196, -1.5968137579681585) +description = Minorca CDP, LA +station = ('khez', 0.0029355419689956908) +zone = ('msz060', 0.0025779131516662215) + +[fips2251410] +centroid = (0.56757325367350697, -1.6070552278458134) +description = Monroe city, LA +station = ('kmlu', 0.00065168423906275335) +zone = ('laz014', 0.0013411445821276244) + +[fips2251550] +centroid = (0.51379438852522075, -1.5806713997026804) +description = Montegut CDP, LA +station = ('khum', 0.0027149561133805291) +zone = ('laz059', 0.0050070293557133213) + +[fips2251585] +centroid = (0.54877541185770484, -1.6008178050716213) +description = Monterey CDP, LA +station = ('khez', 0.0069496696734559077) +zone = ('laz026', 0.001198608409441911) + +[fips2251620] +centroid = (0.55269346658892193, -1.6211920282678247) +description = Montgomery town, LA +station = ('kaex', 0.0021529145259137363) +zone = ('laz018', 0.0032548162513552767) + +[fips2251645] +centroid = (0.5321177800371607, -1.5890301131030393) +description = Monticello CDP, LA +station = ('kbtr', 0.0017689795683640467) +zone = ('laz048', 0.0011641190535525868) + +[fips2251690] +centroid = (0.5355578938060116, -1.5822556001581305) +description = Montpelier village, LA +station = ('khdc', 0.0045965391410680524) +zone = ('laz037', 0.0025198430186729871) + +[fips2251795] +centroid = (0.52386799263541894, -1.5789217594874339) +description = Montz CDP, LA +station = ('kmsy', 0.00326893342912595) +zone = ('laz058', 0.0016502870279849497) + +[fips2251800] +centroid = (0.52298703769547483, -1.5849861154129983) +description = Moonshine CDP, LA +station = ('k7r3', 0.0063453397879705154) +zone = ('laz057', 0.0011005126958030706) + +[fips2251830] +centroid = (0.5703624119912416, -1.639914018074335) +description = Mooringsport town, LA +station = ('kdtn', 0.0040052644636218385) +zone = ('laz001', 0.002083662567867389) + +[fips2251970] +centroid = (0.54164853439011129, -1.6053837609277635) +description = Moreauville village, LA +station = ('kesf', 0.0079584122055497315) +zone = ('laz029', 0.00078977396484219975) + +[fips2252040] +centroid = (0.51853894392371969, -1.5915904936624223) +description = Morgan City city, LA +station = ('k7r3', 0.0013970216942689384) +zone = ('laz055', 0.0026667313991738766) + +[fips2252075] +centroid = (0.53648148713958199, -1.5985748824498833) +description = Morganza village, LA +station = ('khzr', 0.0017291850672758726) +zone = ('laz034', 0.00051538288704902494) + +[fips2252320] +centroid = (0.52572977025510637, -1.6144022436919612) +description = Morse village, LA +station = ('k3r7', 0.0033773915290977721) +zone = ('laz043', 0.0032169576005150694) + +[fips2252425] +centroid = (0.52898901555357314, -1.6267849707624256) +description = Moss Bluff CDP, LA +station = ('kcwf', 0.001830319976636576) +zone = ('laz041', 0.0026539656774983485) + +[fips2252565] +centroid = (0.5642950017394861, -1.588677382061211) +description = Mound village, LA +station = ('ktvr', 0.00029635055385943192) +zone = ('msz047', 0.0025814307012723891) + +[fips2252740] +centroid = (0.56732360177730179, -1.6240275250771998) +description = Mount Lebanon town, LA +station = ('kmne', 0.0044620543636535353) +zone = ('laz012', 0.002759910394800408) + +[fips2253370] +centroid = (0.5225213314911652, -1.5887097055589581) +description = Napoleonville village, LA +station = ('k7r3', 0.0043054472974528874) +zone = ('laz056', 0.00085598562325954562) + +[fips2253475] +centroid = (0.53317930674151626, -1.5793055399366549) +description = Natalbany CDP, LA +station = ('khdc', 0.0011614799168443743) +zone = ('laz072', 0.0016313230321251479) + +[fips2253510] +centroid = (0.55281679155386776, -1.6239502593512138) +description = Natchez village, LA +station = ('kier', 0.0013405871746311345) +zone = ('laz018', 0.0011473775554208315) + +[fips2253545] +centroid = (0.55387262848486174, -1.6249118485026) +description = Natchitoches city, LA +station = ('kier', 3.0623669991290645e-05) +zone = ('laz018', 0.00020168146187840593) + +[fips2253930] +centroid = (0.55977248712842587, -1.5924256511627941) +description = Newellton town, LA +station = ('ktvr', 0.0057151467659583696) +zone = ('laz025', 0.0019371125504250963) + +[fips2254035] +centroid = (0.52369506541313138, -1.6025670089545547) +description = New Iberia city, LA +station = ('kara', 0.001068795145569217) +zone = ('laz053', 0.0023703376692183389) + +[fips2254175] +centroid = (0.54303312153901084, -1.6280409445987456) +description = New Llano town, LA +station = ('kpoe', 0.0016971960313368771) +zone = ('laz027', 0.0014325524745537666) + +[fips2255000] +centroid = (0.5247966997836977, -1.5697317981242278) +description = New Orleans city, LA +station = ('knew', 0.0014615411255537037) +zone = ('laz062', 0.00075016772446610455) + +[fips2255105] +centroid = (0.53574488838207035, -1.596169818740635) +description = New Roads city, LA +station = ('khzr', 0.00054031969249543474) +zone = ('laz034', 0.002220652981154606) + +[fips2255140] +centroid = (0.5232653828045829, -1.5774838176233008) +description = New Sarpy CDP, LA +station = ('kmsy', 0.00204040353413972) +zone = ('laz060', 0.0017253431287616915) + +[fips2255420] +centroid = (0.55309314698762857, -1.6350804508839845) +description = Noble village, LA +station = ('kaqv', 0.0034874966302885914) +zone = ('laz017', 0.0029113495330687199) + +[fips2255525] +centroid = (0.52356887810821218, -1.5778567944844517) +description = Norco CDP, LA +station = ('kmsy', 0.0023360070183245582) +zone = ('laz060', 0.002097920121571666) + +[fips2255910] +centroid = (0.56345670264646064, -1.6182246718334614) +description = North Hodge village, LA +station = ('krsn', 0.0044542129399841772) +zone = ('laz013', 0.0023783901719749835) + +[fips2256170] +centroid = (0.5237291691467153, -1.5832219366050824) +description = North Vacherie CDP, LA +station = ('kmsy', 0.0069830950157561047) +zone = ('laz057', 0.0013151679587703089) + +[fips2256295] +centroid = (0.54058742656477621, -1.5901755203312458) +description = Norwood village, LA +station = ('khzr', 0.0070907997857931138) +zone = ('laz036', 0.0024403850932621356) + +[fips2256540] +centroid = (0.53784795777084593, -1.6171497410004507) +description = Oakdale city, LA +station = ('kacp', 0.001250047935192311) +zone = ('laz031', 0.0038492075782090439) + +[fips2256820] +centroid = (0.57355285641059472, -1.5950776964144922) +description = Oak Grove town, LA +station = ('kbqp', 0.007388192648776824) +zone = ('laz008', 0.0016046789291807217) + +[fips2256855] +centroid = (0.53006823989654384, -1.5897809188406622) +description = Oak Hills Place CDP, LA +station = ('kbtr', 0.0029895246335636195) +zone = ('laz048', 0.0029280950687026962) + +[fips2257205] +centroid = (0.56940237618288958, -1.6017431960943209) +description = Oak Ridge village, LA +station = ('kbqp', 0.002840658621094999) +zone = ('laz007', 0.0034490272695208396) + +[fips2257450] +centroid = (0.53410600676115516, -1.6192568770063833) +description = Oberlin town, LA +station = ('kacp', 0.0029094022785715614) +zone = ('laz031', 0.0011744914943331959) + +[fips2257590] +centroid = (0.57152118844151822, -1.6401748749843381) +description = Oil City town, LA +station = ('kdtn', 0.0049688581809129665) +zone = ('laz001', 0.0032041323594959332) + +[fips2257705] +centroid = (0.53018835345566606, -1.5883543565232521) +description = Old Jefferson CDP, LA +station = ('kbtr', 0.0034764600516065548) +zone = ('laz048', 0.0031132209800155226) + +[fips2257905] +centroid = (0.55672643379809017, -1.6098987880763325) +description = Olla town, LA +station = ('kesf', 0.008738023842461003) +zone = ('laz021', 0.0038512690551301089) + +[fips2258045] +centroid = (0.53281270033213479, -1.6071874888965296) +description = Opelousas city, LA +station = ('klft', 0.0058648593541218768) +zone = ('laz033', 0.0017186055210781761) + +[fips2258150] +centroid = (0.53283041542404252, -1.6308198054738934) +description = Oretta CDP, LA +station = ('kdri', 0.0054901793027295354) +zone = ('laz030', 0.00253414244443095) + +[fips2258360] +centroid = (0.52854493397869573, -1.6075708853733153) +description = Ossun CDP, LA +station = ('klft', 0.0021731760990545213) +zone = ('laz044', 0.0014944276843814339) + +[fips2258745] +centroid = (0.5233997557036939, -1.5892171425856829) +description = Paincourtville CDP, LA +station = ('k7r3', 0.0050819485895873557) +zone = ('laz056', 0.0015396552233656923) + +[fips2258780] +centroid = (0.53612566686497798, -1.6041167217039858) +description = Palmetto village, LA +station = ('khzr', 0.0064586885229236512) +zone = ('laz033', 0.0025315940029537439) + +[fips2258920] +centroid = (0.52126802800860061, -1.5784758802234267) +description = Paradis CDP, LA +station = ('kmsy', 0.0037002032493972984) +zone = ('laz060', 0.0012031989051990571) + +[fips2259165] +centroid = (0.52740025978877514, -1.6026938420312973) +description = Parks village, LA +station = ('klft', 0.0026189380826428729) +zone = ('laz045', 0.0015323286975938522) + +[fips2259340] +centroid = (0.51820370108099667, -1.5936520940281707) +description = Patterson city, LA +station = ('kptn', 0.00057671167195899142) +zone = ('laz054', 0.0019594167678750446) + +[fips2259375] +centroid = (0.52426645130364924, -1.5834440472056912) +description = Paulina CDP, LA +station = ('kmsy', 0.0072041166117039973) +zone = ('laz057', 0.0011009134606541461) + +[fips2259445] +centroid = (0.53008078881386567, -1.5664399675286262) +description = Pearl River town, LA +station = ('kasd', 0.0010655291932988721) +zone = ('laz040', 0.0031536977704056967) + +[fips2260075] +centroid = (0.52281959080703844, -1.5917898975294629) +description = Pierre Part CDP, LA +station = ('kptn', 0.0046106264580959965) +zone = ('laz055', 0.002156580969836501) + +[fips2260495] +centroid = (0.53724768668120748, -1.6130680267452739) +description = Pine Prairie village, LA +station = ('kacp', 0.0040360447727456868) +zone = ('laz032', 0.00095640828083079065) + +[fips2260530] +centroid = (0.54702449755210414, -1.6128368927924326) +description = Pineville city, LA +station = ('kesf', 0.0019089206838690741) +zone = ('laz028', 0.0031189576347822011) + +[fips2260565] +centroid = (0.57138765330044816, -1.595896378006725) +description = Pioneer village, LA +station = ('kbqp', 0.0064975251566778006) +zone = ('laz008', 0.00092089730471930941) + +[fips2260600] +centroid = (0.53993582534183659, -1.6219286793852139) +description = Pitkin CDP, LA +station = ('kdnk', 0.0041602339731911355) +zone = ('laz027', 0.0048509755990775684) + +[fips2260670] +centroid = (0.57433593328608701, -1.635360192256494) +description = Plain Dealing town, LA +station = ('kdtn', 0.0065646057431373106) +zone = ('laz002', 0.0042055585929112807) + +[fips2260880] +centroid = (0.52854078009507599, -1.5925049414707124) +description = Plaquemine city, LA +station = ('kbtr', 0.0045890766108437134) +zone = ('laz046', 0.0016487380506437829) + +[fips2260985] +centroid = (0.54043582726594797, -1.6054176377685447) +description = Plaucheville village, LA +station = ('khzr', 0.0087038331599871947) +zone = ('laz029', 0.0019639951188381416) + +[fips2261055] +centroid = (0.55528292433364324, -1.6321691718784879) +description = Pleasant Hill village, LA +station = ('kaqv', 0.0027761871994945019) +zone = ('laz017', 0.0044239079988384455) + +[fips2261160] +centroid = (0.52223900703136261, -1.5819874826784392) +description = Pleasure Bend CDP, LA +station = ('kmsy', 0.0060696655171639429) +zone = ('laz057', 0.0029663525527424761) + +[fips2261440] +centroid = (0.51615941438142809, -1.5669714028325661) +description = Pointe a la Hache CDP, LA +station = ('knbg', 0.0057711181043519676) +zone = ('laz069', 0.0024380300090425769) + +[fips2261473] +centroid = (0.55305260298910475, -1.6235922050551672) +description = Point Place CDP, LA +station = ('kier', 0.0013865494193279571) +zone = ('laz018', 0.0012315319497871386) + +[fips2261580] +centroid = (0.55022962019046651, -1.61283701496548) +description = Pollock town, LA +station = ('kesf', 0.0027285109442451894) +zone = ('laz020', 0.0025847645545167331) + +[fips2261615] +centroid = (0.53128866137600084, -1.5785244876430948) +description = Ponchatoula city, LA +station = ('khdc', 0.0014511197536208481) +zone = ('laz072', 0.0013630877528088389) + +[fips2261790] +centroid = (0.53134479116474498, -1.5918696067164013) +description = Port Allen city, LA +station = ('kbtr', 0.0017851214294129459) +zone = ('laz047', 0.0016308931612402098) + +[fips2261825] +centroid = (0.53332146380909118, -1.6049409010833624) +description = Port Barre town, LA +station = ('klft', 0.0062666060876619195) +zone = ('laz033', 0.0010418105067278812) + +[fips2262070] +centroid = (0.5149507913277146, -1.5659439275019167) +description = Port Sulphur CDP, LA +station = ('kbve', 0.0057346158320544941) +zone = ('laz069', 0.00097459370977379784) + +[fips2262105] +centroid = (0.52946922544396691, -1.5855199592713058) +description = Port Vincent village, LA +station = ('kbtr', 0.0057514238661031288) +zone = ('laz049', 0.0025333239836910094) + +[fips2262245] +centroid = (0.55630231878985559, -1.6267033940731872) +description = Powhatan village, LA +station = ('kier', 0.0028599199405771086) +zone = ('laz018', 0.0030636938211009526) + +[fips2262280] +centroid = (0.52114775736984564, -1.5688291661949736) +description = Poydras CDP, LA +station = ('knbg', 0.002011353404923177) +zone = ('laz064', 0.00095401950893587311) + +[fips2262385] +centroid = (0.52907238993194083, -1.587522218442486) +description = Prairieville CDP, LA +station = ('kbtr', 0.0047987022229202137) +zone = ('laz049', 0.0020484411447400071) + +[fips2262510] +centroid = (0.51589567767815925, -1.5819419993981323) +description = Presquille CDP, LA +station = ('khum', 0.00044849685374817702) +zone = ('laz059', 0.0030823688402725831) + +[fips2262647] +centroid = (0.52615323949151782, -1.62735771800976) +description = Prien CDP, LA +station = ('kcwf', 0.0018383391128397905) +zone = ('laz041', 0.00228366198651964) + +[fips2262733] +centroid = (0.54888290668633521, -1.6144314255970544) +description = Prospect CDP, LA +station = ('kesf', 0.0030989874835635578) +zone = ('laz020', 0.0027795920371717041) + +[fips2262770] +centroid = (0.55247940195616474, -1.6266489223472325) +description = Provencal village, LA +station = ('kier', 0.0020617340638260512) +zone = ('laz018', 0.0019549164880693433) + +[fips2263120] +centroid = (0.56466864182575305, -1.6183272971934788) +description = Quitman village, LA +station = ('krsn', 0.0034468914283432663) +zone = ('laz013', 0.0026005480106642753) + +[fips2263155] +centroid = (0.51875423028695322, -1.5818945089891856) +description = Raceland CDP, LA +station = ('khum', 0.0027583699822650476) +zone = ('laz059', 0.00098901116659720774) + +[fips2263645] +centroid = (0.527796519342148, -1.6103687877906023) +description = Rayne city, LA +station = ('klft', 0.0040933020772442015) +zone = ('laz043', 0.0023494264092204552) + +[fips2263680] +centroid = (0.56672554725581337, -1.6014695982807783) +description = Rayville town, LA +station = ('kmlu', 0.0041388143792371705) +zone = ('laz015', 0.00093434910958378487) + +[fips2263855] +centroid = (0.56850815674063038, -1.6337773531578605) +description = Red Chute CDP, LA +station = ('kbad', 0.0015361887163171215) +zone = ('laz002', 0.0018556231522734643) + +[fips2263890] +centroid = (0.5352706126111334, -1.6131524134146078) +description = Reddell CDP, LA +station = ('kacp', 0.0041797372253559312) +zone = ('laz032', 0.0010974996548275447) + +[fips2264100] +centroid = (0.53270393141315053, -1.6237906664444113) +description = Reeves village, LA +station = ('kcwf', 0.0055919194315831216) +zone = ('laz031', 0.0038788666622396003) + +[fips2264310] +centroid = (0.52487220272713897, -1.5804832881159006) +description = Reserve CDP, LA +station = ('kmsy', 0.0047814022737460889) +zone = ('laz058', 0.00017206666368926654) + +[fips2264590] +centroid = (0.56528373076074079, -1.5913983678183627) +description = Richmond village, LA +station = ('ktvr', 0.0023262421847135171) +zone = ('laz016', 0.0010097229772186346) + +[fips2264660] +centroid = (0.56633979458453765, -1.6070516848274319) +description = Richwood town, LA +station = ('kmlu', 0.0013484578644953583) +zone = ('laz014', 0.0012491441293397819) + +[fips2264765] +centroid = (0.55155554682320662, -1.5975072121865608) +description = Ridgecrest town, LA +station = ('khez', 0.0034347770432728657) +zone = ('laz026', 0.003171260421702177) + +[fips2264905] +centroid = (0.56420464604411036, -1.6281059406600897) +description = Ringgold town, LA +station = ('kmne', 0.0056505158614345843) +zone = ('laz012', 0.0033756149131529945) + +[fips2265150] +centroid = (0.52287036243497909, -1.574669107685317) +description = River Ridge CDP, LA +station = ('kmsy', 0.0008432884253468982) +zone = ('laz060', 0.002500869256956733) + +[fips2265290] +centroid = (0.52770947977235105, -1.6187604355539462) +description = Roanoke CDP, LA +station = ('k3r7', 0.0011324135906266694) +zone = ('laz042', 0.0011312702628153758) + +[fips2265325] +centroid = (0.55309178563081207, -1.6284609057233606) +description = Robeline village, LA +station = ('kaqv', 0.0022067949473914997) +zone = ('laz018', 0.0031389217001640411) + +[fips2265535] +centroid = (0.54871530271826618, -1.6157543328101884) +description = Rock Hill CDP, LA +station = ('kesf', 0.0041655552811574389) +zone = ('laz020', 0.0028142379486063855) + +[fips2265710] +centroid = (0.57549797350206489, -1.6405599818837906) +description = Rodessa village, LA +station = ('ktxk', 0.0083171133045666507) +zone = ('txz112', 0.0053840624564174717) + +[fips2265850] +centroid = (0.52478949157388699, -1.5853219691209595) +description = Romeville CDP, LA +station = ('k7r3', 0.0075972468219996109) +zone = ('laz057', 0.00091221518372786264) + +[fips2266060] +centroid = (0.53132883885538174, -1.5962801235493611) +description = Rosedale village, LA +station = ('khzr', 0.0048148113530694517) +zone = ('laz047', 0.0022361949732792826) + +[fips2266165] +centroid = (0.53693176463330405, -1.5797084142878928) +description = Roseland town, LA +station = ('khdc', 0.0044672420594148157) +zone = ('laz071', 0.0015544003821622511) + +[fips2266200] +centroid = (0.53973704979332704, -1.628187814055301) +description = Rosepine town, LA +station = ('kdri', 0.0017965337387841928) +zone = ('laz027', 0.0035633529555479603) + +[fips2266655] +centroid = (0.56780772120521994, -1.6167914598116013) +description = Ruston city, LA +station = ('krsn', 0.00076353298893128314) +zone = ('laz005', 0.001273093017010669) + +[fips2267215] +centroid = (0.53728624100438405, -1.5948193353253195) +description = St. Francisville town, LA +station = ('khzr', 0.0019173374273635036) +zone = ('laz035', 0.0017912710840178008) + +[fips2267250] +centroid = (0.52802686789682618, -1.5900198544152602) +description = St. Gabriel city, LA +station = ('kbtr', 0.0049348102267216341) +zone = ('laz049', 0.0029980646794483673) + +[fips2267355] +centroid = (0.52393995256047876, -1.5856046426466126) +description = St. James CDP, LA +station = ('k7r3', 0.0067528935027296117) +zone = ('laz057', 0.00079838150433741918) + +[fips2267495] +centroid = (0.55711405397166558, -1.5924391076513269) +description = St. Joseph town, LA +station = ('khez', 0.0053732936857019287) +zone = ('laz025', 0.0020518405385438906) + +[fips2267600] +centroid = (0.52579932162579834, -1.6027620320451728) +description = St. Martinville city, LA +station = ('kara', 0.0017981208020729756) +zone = ('laz045', 0.0023826078785315753) + +[fips2267635] +centroid = (0.55434168572133524, -1.6220884293716489) +description = St. Maurice CDP, LA +station = ('kier', 0.0024213948915041755) +zone = ('laz018', 0.0024289109618357242) + +[fips2267740] +centroid = (0.52293089045343821, -1.5761953981161858) +description = St. Rose CDP, LA +station = ('kmsy', 0.0011184638640523289) +zone = ('laz060', 0.0015869403049299402) + +[fips2267880] +centroid = (0.56135241152720872, -1.6227509039958283) +description = Saline village, LA +station = ('kier', 0.0076747217929101436) +zone = ('laz012', 0.0034189074762513922) + +[fips2268125] +centroid = (0.57412628433633739, -1.6310358074221203) +description = Sarepta town, LA +station = ('kmne', 0.0048194936997523223) +zone = ('laz003', 0.0035993694762381633) + +[fips2268300] +centroid = (0.51897496207745286, -1.5852970981791186) +description = Schriever CDP, LA +station = ('khum', 0.0038522381981144081) +zone = ('laz065', 0.0016806429227748383) + +[fips2268475] +centroid = (0.52777979908791384, -1.6073549008783807) +description = Scott city, LA +station = ('klft', 0.0015856603060973285) +zone = ('laz044', 0.00074293757469907906) + +[fips2269225] +centroid = (0.53062513955427015, -1.5883149120821571) +description = Shenandoah CDP, LA +station = ('kbtr', 0.003169967382806462) +zone = ('laz048', 0.0027430874153018714) + +[fips2269455] +centroid = (0.57491669159468817, -1.6282737715209616) +description = Shongaloo village, LA +station = ('kmne', 0.0050676686132637826) +zone = ('laz003', 0.0040055637193648691) + +[fips2270000] +centroid = (0.56665639731084938, -1.6369911675358979) +description = Shreveport city, LA +station = ('kshv', 0.00066826995879136258) +zone = ('laz001', 0.0023662423055454814) + +[fips2270175] +centroid = (0.56797542989304406, -1.6282811717169901) +description = Sibley town, LA +station = ('kmne', 0.0018769028907602112) +zone = ('laz003', 0.0030441818424326223) + +[fips2270245] +centroid = (0.55586698131453072, -1.5997575873642047) +description = Sicily Island village, LA +station = ('khez', 0.0066988557143591509) +zone = ('laz024', 0.0042348582783953469) + +[fips2270385] +centroid = (0.55988383913470308, -1.6141899243884561) +description = Sikes village, LA +station = ('krsn', 0.0077479926047664318) +zone = ('laz019', 0.003239831642571966) + +[fips2270525] +centroid = (0.54071523702589974, -1.6024571055715569) +description = Simmesport town, LA +station = ('khzr', 0.0067988499449623532) +zone = ('laz029', 0.0032592433008199672) + +[fips2270595] +centroid = (0.54552611493597447, -1.6234778859891617) +description = Simpson village, LA +station = ('kdnk', 0.0015891609250612865) +zone = ('laz027', 0.0035781263713048237) + +[fips2270630] +centroid = (0.56779616712557179, -1.6193852459728675) +description = Simsboro village, LA +station = ('krsn', 0.0028954376901777837) +zone = ('laz005', 0.0021302751101739928) + +[fips2270665] +centroid = (0.53496434223399336, -1.6303420739510375) +description = Singer CDP, LA +station = ('kdri', 0.0033297759199779928) +zone = ('laz030', 0.0010269089911893537) + +[fips2270675] +centroid = (0.518153732304512, -1.5908859740565624) +description = Siracusaville CDP, LA +station = ('k7r3', 0.0008017540502894137) +zone = ('laz055', 0.0033068301138878095) + +[fips2270770] +centroid = (0.53629999035066711, -1.5906243841082734) +description = Slaughter town, LA +station = ('kbtr', 0.0033992412252122212) +zone = ('laz036', 0.0024577419690775221) + +[fips2270805] +centroid = (0.5286486239895567, -1.5670138317866817) +description = Slidell city, LA +station = ('kasd', 0.001172218385157388) +zone = ('laz040', 0.0036407314168032914) + +[fips2271190] +centroid = (0.52165657320667957, -1.5991626744353697) +description = Sorrel CDP, LA +station = ('kara', 0.0046472614197606323) +zone = ('laz053', 0.0015980454942297511) + +[fips2271225] +centroid = (0.52685220895035645, -1.585960916706822) +description = Sorrento town, LA +station = ('kbtr', 0.007388375905584158) +zone = ('laz049', 0.00070620945535230519) + +[fips2271820] +centroid = (0.55878707423274987, -1.635720201321303) +description = South Mansfield village, LA +station = ('kaqv', 0.007294739155008007) +zone = ('laz010', 0.00073215282158146347) + +[fips2272092] +centroid = (0.52255573193072202, -1.5827989211542766) +description = South Vacherie CDP, LA +station = ('khum', 0.0065278328776376612) +zone = ('laz057', 0.0022241243340715626) + +[fips2272170] +centroid = (0.57480455419024756, -1.6162133718567555) +description = Spearsville village, LA +station = ('keld', 0.0058479293060898288) +zone = ('laz006', 0.0037784927044426267) + +[fips2272310] +centroid = (0.55314791541955621, -1.5961947420423537) +description = Spokane CDP, LA +station = ('khez', 0.002663618215137884) +zone = ('msz060', 0.0039646523340725664) + +[fips2272415] +centroid = (0.53102590205711309, -1.580297916696046) +description = Springfield town, LA +station = ('khdc', 0.0025317753597481718) +zone = ('laz072', 0.0026842200627265047) + +[fips2272485] +centroid = (0.5759958810310738, -1.6312112130119456) +description = Springhill city, LA +station = ('kmne', 0.0065866072435269724) +zone = ('arz071', 0.0046789457021186535) + +[fips2272800] +centroid = (0.55775183218692936, -1.6389621853134673) +description = Stanley village, LA +station = ('kaqv', 0.0084445151201437817) +zone = ('laz010', 0.0030274710455411467) + +[fips2272975] +centroid = (0.52901735970062547, -1.6347922795711876) +description = Starks CDP, LA +station = ('klch', 0.0046868794266506086) +zone = ('txz262', 0.0024880259052115273) + +[fips2273010] +centroid = (0.56707281541708265, -1.6033576081991232) +description = Start CDP, LA +station = ('kmlu', 0.0025092651515336269) +zone = ('laz015', 0.0019720390019209205) + +[fips2273255] +centroid = (0.57053701472961116, -1.6067828517627472) +description = Sterlington town, LA +station = ('kmlu', 0.0030431949408322575) +zone = ('laz014', 0.0039242461383100979) + +[fips2273395] +centroid = (0.56310749716972164, -1.6374214435563921) +description = Stonewall town, LA +station = ('kshv', 0.0032603849068823664) +zone = ('laz010', 0.0038227453755138893) + +[fips2273570] +centroid = (0.53826060596589498, -1.6233763776398655) +description = Sugartown CDP, LA +station = ('kpoe', 0.0045594776839180525) +zone = ('laz031', 0.0042847230347290051) + +[fips2273640] +centroid = (0.52762242274926152, -1.6293559978302457) +description = Sulphur city, LA +station = ('klch', 0.00068105374277401063) +zone = ('laz041', 4.6649721935694656e-05) + +[fips2273955] +centroid = (0.53494688894147346, -1.5691266924725613) +description = Sun village, LA +station = ('kasd', 0.0054027903657508144) +zone = ('laz040', 0.0035680170908267933) + +[fips2274060] +centroid = (0.53071076540737294, -1.6067666900138737) +description = Sunset town, LA +station = ('klft', 0.0037359798397918849) +zone = ('laz033', 0.0034421868685188591) + +[fips2274235] +centroid = (0.52120741272367876, -1.5881894752688162) +description = Supreme CDP, LA +station = ('k7r3', 0.0032476806930540254) +zone = ('laz056', 0.0011958024913351971) + +[fips2274340] +centroid = (0.56864347211753752, -1.6054740817165543) +description = Swartz CDP, LA +station = ('kmlu', 0.0013124689457029394) +zone = ('laz014', 0.0030455738591487025) + +[fips2274550] +centroid = (0.5233392102319423, -1.5786927024764019) +description = Taft CDP, LA +station = ('kmsy', 0.003070931414368878) +zone = ('laz058', 0.0021687085138278077) + +[fips2274690] +centroid = (0.56560310856056339, -1.591595485304083) +description = Tallulah city, LA +station = ('ktvr', 0.0025937893669802396) +zone = ('laz016', 0.0010544204945440196) + +[fips2274760] +centroid = (0.53888403757470738, -1.5797645266233442) +description = Tangipahoa village, LA +station = ('kmcb', 0.0054139663379558674) +zone = ('laz071', 0.0014169480099457394) + +[fips2275180] +centroid = (0.52189641635248862, -1.5712874449931151) +description = Terrytown CDP, LA +station = ('knbg', 0.0012189529689595414) +zone = ('laz061', 0.0022386339133791721) + +[fips2275425] +centroid = (0.52000777811561305, -1.5850451075417158) +description = Thibodaux city, LA +station = ('khum', 0.0045751748414474052) +zone = ('laz065', 0.0027299088468778132) + +[fips2275670] +centroid = (0.53367148959057864, -1.5792992742046401) +description = Tickfaw village, LA +station = ('khdc', 0.001436048227779139) +zone = ('laz072', 0.0019079440599645825) + +[fips2275740] +centroid = (0.52148432666280031, -1.5713202048231754) +description = Timberlane CDP, LA +station = ('knbg', 0.00081972868972308576) +zone = ('laz063', 0.0018923711127656611) + +[fips2276440] +centroid = (0.51207223724569284, -1.5617602511118389) +description = Triumph CDP, LA +station = ('kbve', 0.0012564926282079172) +zone = ('laz069', 0.0036755503643456449) + +[fips2276615] +centroid = (0.55531760402588037, -1.6114058449788446) +description = Tullos town, LA +station = ('kesf', 0.0072950659504608375) +zone = ('laz022', 0.0034817405583738754) + +[fips2276685] +centroid = (0.53883965385182908, -1.6129806206563342) +description = Turkey Creek village, LA +station = ('kacp', 0.0046003569506278706) +zone = ('laz032', 0.002522904052218073) + +[fips2277035] +centroid = (0.52510178333694635, -1.5863111693811125) +description = Union CDP, LA +station = ('k7r3', 0.0074574502322066688) +zone = ('laz057', 0.0017471153051923022) + +[fips2277490] +centroid = (0.556121031440451, -1.6107814359856512) +description = Urania town, LA +station = ('kesf', 0.0080887574786573883) +zone = ('laz022', 0.0037908746500826453) + +[fips2277910] +centroid = (0.53922472584469661, -1.5678618174570558) +description = Varnado village, LA +station = ('kasd', 0.0095200348763603872) +zone = ('laz039', 0.0032097862577367036) + +[fips2278015] +centroid = (0.51117292144201776, -1.5597139747369231) +description = Venice CDP, LA +station = ('kbve', 0.00095283199987078178) +zone = ('laz069', 0.0056394476147226319) + +[fips2278050] +centroid = (0.53550994961145937, -1.5957857241321487) +description = Ventress CDP, LA +station = ('khzr', 0.00094146871431016656) +zone = ('laz034', 0.0025821695192339142) + +[fips2278470] +centroid = (0.55094377401379757, -1.5959367998322014) +description = Vidalia town, LA +station = ('khez', 0.0022623832087359992) +zone = ('msz060', 0.0019532284301425843) + +[fips2278540] +centroid = (0.569137505015607, -1.6170136925852576) +description = Vienna town, LA +station = ('krsn', 0.0018723243757182218) +zone = ('laz005', 0.00027810661873000606) + +[fips2278545] +centroid = (0.55393378482185163, -1.6237291610415712) +description = Vienna Bend CDP, LA +station = ('kier', 0.00098547257321891812) +zone = ('laz018', 0.0009754616222313635) + +[fips2278680] +centroid = (0.52987857496672952, -1.5894212064818261) +description = Village St. George CDP, LA +station = ('kbtr', 0.0032752773248661067) +zone = ('laz048', 0.0031448321112757913) + +[fips2278715] +centroid = (0.53563906906952197, -1.6104880112318058) +description = Ville Platte city, LA +station = ('kacp', 0.0063079685195100311) +zone = ('laz032', 0.0020914901677058203) + +[fips2278820] +centroid = (0.52700975982193399, -1.6333183141112932) +description = Vinton town, LA +station = ('kuxl', 0.0032586069544964179) +zone = ('laz041', 0.0034346439415536821) + +[fips2278855] +centroid = (0.52179787506292108, -1.5689249847709084) +description = Violet CDP, LA +station = ('knbg', 0.0021779746123466157) +zone = ('laz064', 0.00040064510648537145) + +[fips2278890] +centroid = (0.57371429936640428, -1.6403701424210515) +description = Vivian town, LA +station = ('kdtn', 0.0068453483280231002) +zone = ('laz001', 0.0053161188891930567) + +[fips2279100] +centroid = (0.52251237795210248, -1.5748318421847729) +description = Waggaman CDP, LA +station = ('kmsy', 0.001122899728466009) +zone = ('laz060', 0.0022063716021547713) + +[fips2279240] +centroid = (0.53208315270480111, -1.5858957984724305) +description = Walker town, LA +station = ('kbtr', 0.0043619754737693325) +zone = ('laz050', 0.0019913506037210977) + +[fips2279275] +centroid = (0.52402461848249293, -1.5823036839790232) +description = Wallace CDP, LA +station = ('kmsy', 0.0062007906774237728) +zone = ('laz058', 0.0019584066267338243) + +[fips2279310] +centroid = (0.55299113249284959, -1.6027133024524571) +description = Wallace Ridge CDP, LA +station = ('kesf', 0.0085862421517399565) +zone = ('laz024', 0.00041577130755077868) + +[fips2279870] +centroid = (0.53434230688858264, -1.6067477706447821) +description = Washington town, LA +station = ('klft', 0.0073086385499993248) +zone = ('laz033', 0.00086263770512888689) + +[fips2279940] +centroid = (0.55513965025534706, -1.5949891384082457) +description = Waterproof town, LA +station = ('khez', 0.0035622655298226677) +zone = ('laz025', 0.003463538046219392) + +[fips2280010] +centroid = (0.53363269092130683, -1.5873908649629811) +description = Watson CDP, LA +station = ('kbtr', 0.0030806444531293088) +zone = ('laz048', 0.0022695765855095616) + +[fips2280360] +centroid = (0.52436816909245554, -1.5861658358142987) +description = Welcome CDP, LA +station = ('k7r3', 0.006862174163096927) +zone = ('laz057', 0.0013125962692969065) + +[fips2280430] +centroid = (0.52771057932977983, -1.6198817397851824) +description = Welsh town, LA +station = ('k3r7', 0.0020978734816210209) +zone = ('laz042', 0.00054689511175504504) + +[fips2280815] +centroid = (0.52813828971627352, -1.6277720417208907) +description = Westlake city, LA +station = ('kcwf', 0.0018851080034914284) +zone = ('laz041', 0.0015084022207168962) + +[fips2280920] +centroid = (0.53071889864168731, -1.5898318126416504) +description = Westminster CDP, LA +station = ('kbtr', 0.0023633976845738145) +zone = ('laz048', 0.0022762507242069709) + +[fips2280955] +centroid = (0.56744738052785326, -1.608339580735771) +description = West Monroe city, LA +station = ('kmlu', 0.0017344437827945161) +zone = ('laz014', 0.00059277377014978325) + +[fips2281165] +centroid = (0.52194710071396655, -1.5733017120295494) +description = Westwego city, LA +station = ('knbg', 0.0022952642431606535) +zone = ('laz061', 0.0014796313166042544) + +[fips2281375] +centroid = (0.52642086827901857, -1.5908420441192896) +description = White Castle town, LA +station = ('kbtr', 0.0064863675280062809) +zone = ('laz046', 0.0034689069672246388) + +[fips2282215] +centroid = (0.53970423760338959, -1.5900962649299126) +description = Wilson village, LA +station = ('khzr', 0.0066308390863153294) +zone = ('laz036', 0.0016290487217960894) + +[fips2282460] +centroid = (0.55717763631631578, -1.6169161635866562) +description = Winnfield city, LA +station = ('kier', 0.0075258924147982654) +zone = ('laz019', 0.00036366778811615749) + +[fips2282495] +centroid = (0.56140941398057886, -1.600848679946089) +description = Winnsboro city, LA +station = ('kmlu', 0.0076464231621898608) +zone = ('laz023', 0.00091661961461644143) + +[fips2282565] +centroid = (0.55816376479698515, -1.5996830967117295) +description = Wisner town, LA +station = ('khez', 0.0082493475453929814) +zone = ('laz023', 0.00268069917858998) + +[fips2283002] +centroid = (0.52078390858068235, -1.5721482239269062) +description = Woodmere CDP, LA +station = ('knbg', 0.00092516443699330723) +zone = ('laz061', 0.0010271219522531374) + +[fips2283125] +centroid = (0.54408707351441266, -1.6147859194214271) +description = Woodworth town, LA +station = ('kesf', 0.0051362918154758564) +zone = ('laz028', 0.00047156422545344839) + +[fips2283335] +centroid = (0.52527835829737057, -1.6056328019587305) +description = Youngsville city, LA +station = ('klft', 0.0018120902555595986) +zone = ('laz044', 0.002177379134575403) + +[fips2283405] +centroid = (0.5351629432495778, -1.5910095608208963) +description = Zachary city, LA +station = ('kbtr', 0.0022590515770210991) +zone = ('laz048', 0.0023631552695084555) + +[fips2283685] +centroid = (0.55213330316549436, -1.6343915519749297) +description = Zwolle town, LA +station = ('kaqv', 0.0029313121567640559) +zone = ('laz017', 0.0018120450443091655) + +[fips23001] +centroid = (0.77087145642054167, -1.2253509001299052) +description = Androscoggin County, ME +station = ('klew', 0.0022634622827507624) +zone = ('mez020', 5.4176560610001764e-05) + +[fips2300102060] +centroid = (0.76942031986726345, -1.2260876734203421) +description = Auburn city, ME +station = ('klew', 0.00073606334129277585) +zone = ('mez020', 0.0015204579443700416) + +[fips2300119105] +centroid = (0.76732707668217648, -1.2239400283224704) +description = Durham town, ME +station = ('klew', 0.0024683397808264204) +zone = ('mez020', 0.003638197341079365) + +[fips2300129255] +centroid = (0.7712567029463343, -1.2242627571544566) +description = Greene town, ME +station = ('klew', 0.0029916202830614293) +zone = ('mez020', 0.00085656528436683823) + +[fips2300138565] +centroid = (0.77309971827656276, -1.2240530558448295) +description = Leeds town, ME +station = ('klew', 0.0046770898170150404) +zone = ('mez020', 0.0024376329898190287) + +[fips2300138740] +centroid = (0.76950858116753673, -1.2247356715685771) +description = Lewiston city, ME +station = ('klew', 0.0015557132430641062) +zone = ('mez020', 0.0013836155865674454) + +[fips2300140035] +centroid = (0.76828512281518124, -1.2231080996812147) +description = Lisbon town, ME +station = ('klew', 0.0026194025916414262) +zone = ('mez025', 0.002863241818960722) + +[fips2300140665] +centroid = (0.77499821762371213, -1.2254927081316296) +description = Livermore town, ME +station = ('klew', 0.0062385321808190964) +zone = ('mez020', 0.0041688630988122909) + +[fips2300140770] +centroid = (0.77571163840875734, -1.2241340565754146) +description = Livermore Falls town, ME +station = ('kaug', 0.0047711104475501994) +zone = ('mez013', 0.0037421790215882785) + +[fips2300144585] +centroid = (0.76977566890296956, -1.2287934748130014) +description = Mechanic Falls town, ME +station = ('klew', 0.0017980481995153045) +zone = ('mez020', 0.00272077671178045) + +[fips2300146160] +centroid = (0.77035237804770595, -1.2276006120824332) +description = Minot town, ME +station = ('klew', 0.0016724581295725072) +zone = ('mez020', 0.00171907818098935) + +[fips2300160020] +centroid = (0.76878447896746938, -1.2285994465600572) +description = Poland town, ME +station = ('klew', 0.0013831669943515639) +zone = ('mez019', 0.0030404235237539343) + +[fips2300164570] +centroid = (0.76954680387815544, -1.2230371520471213) +description = Sabattus town, ME +station = ('klew', 0.002713949808270799) +zone = ('mez020', 0.0020707880286405743) + +[fips2300177800] +centroid = (0.77257186089758967, -1.2260585438751261) +description = Turner town, ME +station = ('klew', 0.0037803332907914667) +zone = ('mez020', 0.0018232326263385086) + +[fips2300179585] +centroid = (0.77080499428262572, -1.2225764374844723) +description = Wales town, ME +station = ('klew', 0.0035515217761989573) +zone = ('mez020', 0.0019536705848329011) + +[fips23003] +centroid = (0.81554099441706407, -1.1981582340515204) +description = Aroostook County, ME +station = ('kcar', 0.0079431437519912607) +zone = ('mez002', 0.0051589430175583159) + +[fips2300300800] +centroid = (0.82194787120833246, -1.2060740177943081) +description = Allagash town, ME +station = ('k40b', 0.0097894549394592096) +zone = ('mez001', 0.0025513197889821381) + +[fips2300301220] +centroid = (0.80133951209297394, -1.1841255076128057) +description = Amity town, ME +station = ('khul', 0.0035905680843917268) +zone = ('mez006', 0.003651920963769895) + +[fips2300301710] +centroid = (0.81420379295735601, -1.193602278931992) +description = Ashland town, ME +station = ('kcar', 0.0058304940068977032) +zone = ('mez002', 0.0024307305689784857) + +[fips2300302760] +centroid = (0.79747282240164319, -1.1862855794549514) +description = Bancroft town, ME +station = ('khul', 0.0076941905475979558) +zone = ('mez032', 0.0046707967585807014) + +[fips2300305385] +centroid = (0.81136094831183014, -1.1841556843555727) +description = Blaine town, ME +station = ('kpqi', 0.0041949338029517074) +zone = ('mez002', 0.0060970233050187646) + +[fips2300307065] +centroid = (0.81006865417377594, -1.1841911494459731) +description = Bridgewater town, ME +station = ('khul', 0.0052148176391756318) +zone = ('mez002', 0.0070305219469819647) + +[fips2300310565] +centroid = (0.81745199032165761, -1.1857062697696295) +description = Caribou city, ME +station = ('kcar', 0.0010973567632386015) +zone = ('mez002', 0.0038825583683265276) + +[fips2300311020] +centroid = (0.80249696209301902, -1.1841562777675183) +description = Cary plantation, ME +station = ('khul', 0.002458009662114416) +zone = ('mez006', 0.0033011267922052425) + +[fips2300311300] +centroid = (0.81504244111623181, -1.1907876562604709) +description = Castle Hill town, ME +station = ('kpqi', 0.0021367322133471955) +zone = ('mez002', 0.00049861281856411032) + +[fips2300311335] +centroid = (0.82064632682524263, -1.1844107467724592) +description = Caswell town, ME +station = ('cysl', 0.0023013063315703687) +zone = ('mez002', 0.0066535902474418778) + +[fips2300311785] +centroid = (0.80946543347770172, -1.1905666277639984) +description = Central Aroostook UT, ME +station = ('kpqi', 0.0056675036804433821) +zone = ('mez002', 0.0060642617792546873) + +[fips2300312000] +centroid = (0.81331116176471607, -1.1889073781507125) +description = Chapman town, ME +station = ('kpqi', 0.0016859150951419911) +zone = ('mez002', 0.0025144296251229624) + +[fips2300313900] +centroid = (0.82047467369330895, -1.1866930440221222) +description = Connor UT, ME +station = ('kcar', 0.0025135794390927797) +zone = ('mez002', 0.0056309251865347635) + +[fips2300315395] +centroid = (0.80264639718357478, -1.1931080365944122) +description = Crystal town, ME +station = ('kmlt', 0.0072076470278497045) +zone = ('mez006', 0.0029547963819099277) + +[fips2300315990] +centroid = (0.82171820333206247, -1.1869138456257919) +description = Cyr plantation, ME +station = ('cwiy', 0.0025422100780117967) +zone = ('mez002', 0.0066898165266805424) + +[fips2300319210] +centroid = (0.80445909614469613, -1.1911799190098566) +description = Dyer Brook town, ME +station = ('khul', 0.0054573206541657943) +zone = ('mez006', 0.0022318617883279545) + +[fips2300319420] +centroid = (0.82132552170365636, -1.1982714535600973) +description = Eagle Lake town, ME +station = ('kfve', 0.0057646781491142362) +zone = ('mez002', 0.0078003914084270806) + +[fips2300321380] +centroid = (0.81390469588344183, -1.1841644284551252) +description = Easton town, ME +station = ('kpqi', 0.0025767235690897345) +zone = ('mez002', 0.0047254932411819666) + +[fips2300325615] +centroid = (0.81639941715636488, -1.1843664154094584) +description = Fort Fairfield town, ME +station = ('kcar', 0.0024551125171967708) +zone = ('mez002', 0.0043803435982622402) + +[fips2300325755] +centroid = (0.82441224120556345, -1.1966979694262543) +description = Fort Kent town, ME +station = ('cerm', 0.0043403146944326889) +zone = ('mez001', 0.0081622691158169097) + +[fips2300326735] +centroid = (0.82508901007631674, -1.193774316036361) +description = Frenchville town, ME +station = ('kfve', 0.0011741973492353796) +zone = ('mez002', 0.0097967137908465465) + +[fips2300327120] +centroid = (0.81344453982615339, -1.1957067271308768) +description = Garfield plantation, ME +station = ('kcar', 0.0074312215014789244) +zone = ('mez002', 0.0040588070850487556) + +[fips2300327855] +centroid = (0.79953231091899635, -1.1885991704581025) +description = Glenwood plantation, ME +station = ('khul', 0.0064868096848525771) +zone = ('mez006', 0.0033785553773286038) + +[fips2300328590] +centroid = (0.8247843977619661, -1.1892000175063944) +description = Grand Isle town, ME +station = ('kfve', 0.0019955825011812802) +zone = ('mez002', 0.0093062842387192334) + +[fips2300330690] +centroid = (0.82169631690324252, -1.18482063734729) +description = Hamlin town, ME +station = ('cysl', 0.0013725721670878634) +zone = ('mez002', 0.0073345208061349875) + +[fips2300330725] +centroid = (0.80681928743887543, -1.1863783262514023) +description = Hammond town, ME +station = ('khul', 0.0028596855021250996) +zone = ('mez006', 0.004278250605042503) + +[fips2300332195] +centroid = (0.79906622074225131, -1.1866979833039051) +description = Haynesville town, ME +station = ('khul', 0.0062739423693801291) +zone = ('mez006', 0.0041265326869113252) + +[fips2300332685] +centroid = (0.80419638918568592, -1.1930711054274401) +description = Hersey town, ME +station = ('kmlt', 0.0085346045388827053) +zone = ('mez006', 0.0031883928685350177) + +[fips2300333385] +centroid = (0.80371881474246265, -1.1838646856093877) +description = Hodgdon town, ME +station = ('khul', 0.0012256072544050277) +zone = ('mez006', 0.0035699938015162145) + +[fips2300333980] +centroid = (0.80530163638780383, -1.184072309977205) +description = Houlton town, ME +station = ('khul', 0.00065857931877498781) +zone = ('mez006', 0.0041018251483351106) + +[fips2300335065] +centroid = (0.80260374133665602, -1.1903629827468756) +description = Island Falls town, ME +station = ('khul', 0.0053868783771697454) +zone = ('mez006', 0.0010794624520988128) + +[fips2300339300] +centroid = (0.81868019596957853, -1.1844328950006671) +description = Limestone town, ME +station = ('kcar', 0.0019629437847214397) +zone = ('mez002', 0.0052843721618402988) + +[fips2300339965] +centroid = (0.80373061316820626, -1.1863386200109196) +description = Linneus town, ME +station = ('khul', 0.0023841540764746628) +zone = ('mez006', 0.0019423402082008867) + +[fips2300340595] +centroid = (0.80696863526296869, -1.1840895363769222) +description = Littleton town, ME +station = ('khul', 0.002145847081191944) +zone = ('mez006', 0.0052434575851259572) + +[fips2300341715] +centroid = (0.80575650409745858, -1.1864556617905584) +description = Ludlow town, ME +station = ('khul', 0.0023314044428324248) +zone = ('mez006', 0.0033067731890976944) + +[fips2300342450] +centroid = (0.79644309559625903, -1.1910144617967673) +description = Macwahoc plantation, ME +station = ('kmlt', 0.0056198546927993566) +zone = ('mez011', 0.0047020101988296007) + +[fips2300342520] +centroid = (0.82542376422684927, -1.1912187874922984) +description = Madawaska town, ME +station = ('kfve', 0.00059643980314201767) +zone = ('mez002', 0.009902317659105998) + +[fips2300343255] +centroid = (0.81510380689273199, -1.1887786775716704) +description = Mapleton town, ME +station = ('kpqi', 0.00081064961288070028) +zone = ('mez002', 0.0013402555875787639) + +[fips2300343710] +centroid = (0.81261259373160533, -1.1842621843465293) +description = Mars Hill town, ME +station = ('kpqi', 0.0032019198484414279) +zone = ('mez002', 0.0052568177469499719) + +[fips2300343990] +centroid = (0.81191011616097009, -1.1933797843589478) +description = Masardis town, ME +station = ('kpqi', 0.004844723582792889) +zone = ('mez002', 0.0040817936514629879) + +[fips2300345180] +centroid = (0.80570456309891925, -1.1908679588593551) +description = Merrill town, ME +station = ('khul', 0.0052843100670083342) +zone = ('mez006', 0.0031229211639323207) + +[fips2300346685] +centroid = (0.80858514176287333, -1.1841560508747155) +description = Monticello town, ME +station = ('khul', 0.0037410350686445247) +zone = ('mez006', 0.0065514428665398583) + +[fips2300347175] +centroid = (0.8057464335476745, -1.1933442843619624) +description = Moro plantation, ME +station = ('kpqi', 0.0098347387188445715) +zone = ('mez006', 0.0042066966275521468) + +[fips2300348120] +centroid = (0.81503036343780799, -1.1954773385072872) +description = Nashville plantation, ME +station = ('kcar', 0.0064403837408024221) +zone = ('mez002', 0.0033594298149656489) + +[fips2300348575] +centroid = (0.82313719092051896, -1.1953090538608098) +description = New Canada town, ME +station = ('kfve', 0.0030549501859493209) +zone = ('mez002', 0.0082505212872069546) + +[fips2300348960] +centroid = (0.80489792427852502, -1.1863925157782211) +description = New Limerick town, ME +station = ('khul', 0.0021206841033914741) +zone = ('mez006', 0.0026320517970772599) + +[fips2300349415] +centroid = (0.81989269365423156, -1.1888303567708218) +description = New Sweden town, ME +station = ('kcar', 0.0022450808767203304) +zone = ('mez002', 0.0045338384192531696) + +[fips2300353602] +centroid = (0.81783999446766853, -1.2073479685219239) +description = Northwest Aroostook UT, ME +station = ('k40b', 0.0060109001223465049) +zone = ('mez001', 0.0017569981379882203) + +[fips2300354385] +centroid = (0.80414975398807265, -1.1888147186207239) +description = Oakfield town, ME +station = ('khul', 0.0038721411934002884) +zone = ('mez006', 0.0012448096620771767) + +[fips2300355435] +centroid = (0.79973993528681364, -1.1842868633021528) +description = Orient town, ME +station = ('khul', 0.0051902339577415066) +zone = ('mez006', 0.00449382138772566) + +[fips2300356205] +centroid = (0.81067339330629939, -1.1956515049133436) +description = Oxbow plantation, ME +station = ('kpqi', 0.0068380286040197651) +zone = ('mez002', 0.0059565974768074964) + +[fips2300357936] +centroid = (0.79546578102831234, -1.1942066515453726) +description = Penobscot Indian Island Reservation, ME +station = ('kmlt', 0.0036148258594094797) +zone = ('mez011', 0.0032650381929969345) + +[fips2300358060] +centroid = (0.81842787371961778, -1.1905899628160974) +description = Perham town, ME +station = ('kcar', 0.0024176972885770528) +zone = ('mez002', 0.0028984902766166381) + +[fips2300360300] +centroid = (0.81658779054253261, -1.1954253800554553) +description = Portage Lake town, ME +station = ('kcar', 0.0058535423995020796) +zone = ('mez002', 0.0034501047936219562) + +[fips2300360825] +centroid = (0.81486776856469223, -1.1867019975611848) +description = Presque Isle city, ME +station = ('kpqi', 0.00068816132846573309) +zone = ('mez002', 0.0027750897772028165) + +[fips2300362400] +centroid = (0.79747825037561682, -1.1883791891591813) +description = Reed plantation, ME +station = ('kmlt', 0.0074865531405738702) +zone = ('mez006', 0.0054381191187442843) + +[fips2300364780] +centroid = (0.82441836731123785, -1.1923619781523547) +description = St. Agatha town, ME +station = ('kfve', 0.00085638581792440798) +zone = ('mez002', 0.0089668346743579045) + +[fips2300365025] +centroid = (0.82264966810055939, -1.201922263476249) +description = St. Francis town, ME +station = ('cerm', 0.0081555320754278116) +zone = ('mez001', 0.0043481544858234873) + +[fips2300365200] +centroid = (0.8230916029204568, -1.1996934082082822) +description = St. John plantation, ME +station = ('cerm', 0.0067124266828365387) +zone = ('mez001', 0.0057481105654242108) + +[fips2300367790] +centroid = (0.80093182063300061, -1.1930956447567231) +description = Sherman town, ME +station = ('kmlt', 0.0058947021032888496) +zone = ('mez006', 0.0035389238732441842) + +[fips2300369260] +centroid = (0.80566976123363443, -1.1886334138180268) +description = Smyrna town, ME +station = ('khul', 0.0037548988617158718) +zone = ('mez006', 0.0027691148298201146) + +[fips2300369930] +centroid = (0.8000479335399131, -1.1902543883608163) +description = South Aroostook UT, ME +station = ('khul', 0.0068232340389703123) +zone = ('mez006', 0.0030152829739080586) + +[fips2300373472] +centroid = (0.82189851329708596, -1.1931498721365827) +description = Square Lake UT, ME +station = ('kfve', 0.0034322255107816359) +zone = ('mez002', 0.0065971394220835228) + +[fips2300374405] +centroid = (0.82150911288767348, -1.1889691278996479) +description = Stockholm town, ME +station = ('kcar', 0.0037513425027175863) +zone = ('mez002', 0.0060866072029931552) + +[fips2300378570] +centroid = (0.82345812206337565, -1.1869691376564953) +description = Van Buren town, ME +station = ('cwiy', 0.0023363938078208519) +zone = ('mez002', 0.0083135029407078818) + +[fips2300379270] +centroid = (0.81674033231915699, -1.1911635303681805) +description = Wade town, ME +station = ('kcar', 0.0030337372047016162) +zone = ('mez002', 0.0012643307245613516) + +[fips2300379865] +centroid = (0.82292621552053791, -1.1975313990506666) +description = Wallagrass town, ME +station = ('kfve', 0.0043830198422509913) +zone = ('mez001', 0.0068552888634284999) + +[fips2300380285] +centroid = (0.81666676669118543, -1.1887394774766706) +description = Washburn town, ME +station = ('kcar', 0.001718722193191164) +zone = ('mez002', 0.0017247028971113796) + +[fips2300382770] +centroid = (0.81218360925475763, -1.1863495981319145) +description = Westfield town, ME +station = ('kpqi', 0.002754346365084094) +zone = ('mez002', 0.0044546381700715241) + +[fips2300383540] +centroid = (0.81987066759907146, -1.1911392004784076) +description = Westmanland town, ME +station = ('kcar', 0.0033375036263873117) +zone = ('mez002', 0.0043549653324561274) + +[fips2300383785] +centroid = (0.79800872574846793, -1.1844755857541709) +description = Weston town, ME +station = ('khul', 0.0069246988276238644) +zone = ('mez032', 0.0045497663840055134) + +[fips2300386865] +centroid = (0.81976582567090406, -1.1978233926345252) +description = Winterville plantation, ME +station = ('kfve', 0.0067417926608431015) +zone = ('mez002', 0.0064912296424827452) + +[fips2300387215] +centroid = (0.81828117879598772, -1.1889096994386175) +description = Woodland town, ME +station = ('kcar', 0.0012639724474308729) +zone = ('mez002', 0.0029936038057742855) + +[fips23005] +centroid = (0.7645999124594729, -1.2274966079123071) +description = Cumberland County, ME +station = ('kpwm', 0.0027901186182707417) +zone = ('mez024', 0.002129919591616332) + +[fips2300502655] +centroid = (0.76514103434076108, -1.2347189897965696) +description = Baldwin town, ME +station = ('kizg', 0.0036071661551319674) +zone = ('mez019', 0.0031018374168258474) + +[fips2300507170] +centroid = (0.76875192857691976, -1.2344438735465779) +description = Bridgton town, ME +station = ('kizg', 0.0029900378273928527) +zone = ('mez019', 0.0037984965011739267) + +[fips2300508430] +centroid = (0.76613725082450701, -1.2212659919221975) +description = Brunswick town, ME +station = ('kiwi', 0.0034518000583376568) +zone = ('mez025', 0.0019120533828122625) + +[fips2300510180] +centroid = (0.76039344206936377, -1.2252823785034717) +description = Cape Elizabeth town, ME +station = ('kpwm', 0.0018890523798931079) +zone = ('mez024', 0.0031069703670618212) + +[fips2300511125] +centroid = (0.76710707792996269, -1.230688361328599) +description = Casco town, ME +station = ('klew', 0.0033552314862293265) +zone = ('mez019', 0.00098677273654066387) + +[fips2300512300] +centroid = (0.76332533341332642, -1.2231443327164861) +description = Chebeague Island town, ME +station = ('kpwm', 0.0031392697092149278) +zone = ('mez024', 0.0013344353962491042) + +[fips2300515430] +centroid = (0.76422920452634935, -1.2261137660926593) +description = Cumberland town, ME +station = ('kpwm', 0.0024710695675839536) +zone = ('mez024', 0.001103119274652611) + +[fips2300524495] +centroid = (0.76341537494943679, -1.2265680403903683) +description = Falmouth town, ME +station = ('kpwm', 0.0016052163274020289) +zone = ('mez024', 0.0011521897319504693) + +[fips2300526525] +centroid = (0.76521348295801139, -1.223330925866817) +description = Freeport town, ME +station = ('kpwm', 0.0042782551062800099) +zone = ('mez024', 0.0020911913289099913) + +[fips2300527025] +centroid = (0.76507726000989329, -1.2308097838846603) +description = Frye Island town, ME +station = ('kpwm', 0.004267770923579545) +zone = ('mez019', 0.0010511586405034226) + +[fips2300528240] +centroid = (0.76277201168056663, -1.22982496440093) +description = Gorham town, ME +station = ('kpwm', 0.0022693287767855371) +zone = ('mez019', 0.0033998756386707527) + +[fips2300528870] +centroid = (0.76627897155976887, -1.2281363059897479) +description = Gray town, ME +station = ('klew', 0.0027475897663048979) +zone = ('mez019', 0.0018087103277453069) + +[fips2300531390] +centroid = (0.76329662274713106, -1.2212312598700827) +description = Harpswell town, ME +station = ('kiwi', 0.0051783809952311369) +zone = ('mez024', 0.0027132010013667988) + +[fips2300531600] +centroid = (0.7697372891127181, -1.2331176502078651) +description = Harrison town, ME +station = ('kizg', 0.0042751058792172133) +zone = ('mez012', 0.0028090640847810095) + +[fips2300541067] +centroid = (0.76230634038284195, -1.224431478133247) +description = Long Island town, ME +station = ('kpwm', 0.0018931292442852313) +zone = ('mez024', 0.0012499719110783795) + +[fips2300548085] +centroid = (0.76752196014645424, -1.2328883313974452) +description = Naples town, ME +station = ('kizg', 0.0039043909701962634) +zone = ('mez019', 0.0021427356218342276) + +[fips2300548820] +centroid = (0.76720324557174757, -1.2268968429681515) +description = New Gloucester town, ME +station = ('klew', 0.0016221167124352393) +zone = ('mez019', 0.0029029716310860145) + +[fips2300553860] +centroid = (0.76534429538544835, -1.2258164492545822) +description = North Yarmouth town, ME +station = ('klew', 0.0035278834582762849) +zone = ('mez024', 0.0019484133086252453) + +[fips2300560545] +centroid = (0.76154286355484968, -1.224970575432603) +description = Portland city, ME +station = ('kpwm', 0.0014738562470466073) +zone = ('mez024', 0.0019496775776047983) + +[fips2300560685] +centroid = (0.76626785381243379, -1.2249072897939257) +description = Pownal town, ME +station = ('klew', 0.0028495807415667832) +zone = ('mez024', 0.0027757707637080858) + +[fips2300561945] +centroid = (0.766552883532577, -1.2298985823887789) +description = Raymond town, ME +station = ('klew', 0.0032413704620812465) +zone = ('mez019', 0.00068517135543957994) + +[fips2300566145] +centroid = (0.76046095140483083, -1.2275628431574201) +description = Scarborough town, ME +station = ('kpwm', 0.0014414627411179293) +zone = ('mez024', 0.0035624303682873187) + +[fips2300566775] +centroid = (0.76595036096820346, -1.2331308274437176) +description = Sebago town, ME +station = ('kizg', 0.0041010787193834271) +zone = ('mez019', 0.0018053738062952717) + +[fips2300571990] +centroid = (0.76151162216123891, -1.2267219260705167) +description = South Portland city, ME +station = ('kpwm', 0.00036970307864660191) +zone = ('mez024', 0.0023487177589834253) + +[fips2300573670] +centroid = (0.76401911924428667, -1.2318927781388154) +description = Standish town, ME +station = ('kpwm', 0.0041766556660188291) +zone = ('mez019', 0.0022887962677285781) + +[fips2300582105] +centroid = (0.76284758443717793, -1.227884751684658) +description = Westbrook city, ME +station = ('kpwm', 0.0012099265507243509) +zone = ('mez024', 0.0021981785422902638) + +[fips2300586025] +centroid = (0.76436151793694285, -1.2288048019998468) +description = Windham town, ME +station = ('kpwm', 0.0028534561005745768) +zone = ('mez019', 0.0022003856556738976) + +[fips2300587845] +centroid = (0.76424161381733091, -1.2245133515284581) +description = Yarmouth town, ME +station = ('kpwm', 0.0029881949028112689) +zone = ('mez024', 0.00082044351902985015) + +[fips23007] +centroid = (0.78492713393892, -1.2294924268185474) +description = Franklin County, ME +station = ('kbml', 0.011401224123773738) +zone = ('mez008', 0.0019862019323657835) + +[fips2300702235] +centroid = (0.78150627115171867, -1.2271058635993704) +description = Avon town, ME +station = ('kaug', 0.010221432556760057) +zone = ('mez013', 0.0026132682936464446) + +[fips2300710740] +centroid = (0.78652117805135147, -1.2264908444775529) +description = Carrabassett Valley town, ME +station = ('kgnr', 0.011001150975182276) +zone = ('mez008', 0.0031108341213569616) + +[fips2300710915] +centroid = (0.77873495009893945, -1.2290712265101635) +description = Carthage town, ME +station = ('klew', 0.010064357070734673) +zone = ('mez013', 0.003042237042525387) + +[fips2300712595] +centroid = (0.7772516645808395, -1.223596582432263) +description = Chesterville town, ME +station = ('kaug', 0.0053780231091477386) +zone = ('mez013', 0.0023535697310908777) + +[fips2300714205] +centroid = (0.78703601527410483, -1.2299381490029218) +description = Coplin plantation, ME +station = ('kbml', 0.012540605508480605) +zone = ('mez008', 0.00077631795196731054) + +[fips2300716165] +centroid = (0.78508156067113644, -1.2320542036413322) +description = Dallas plantation, ME +station = ('kbml', 0.010106024893635658) +zone = ('mez008', 0.0017702259281904499) + +[fips2300719865] +centroid = (0.78504876593449158, -1.2281602868136705) +description = East Central Franklin UT, ME +station = ('kwvl', 0.011526312054133339) +zone = ('mez008', 0.0025078919752579048) + +[fips2300724005] +centroid = (0.78859892271268073, -1.2305778645336554) +description = Eustis town, ME +station = ('kgnr', 0.01236480501154576) +zone = ('mez008', 0.0019618938812037139) + +[fips2300724775] +centroid = (0.77975963290278527, -1.2241998205816298) +description = Farmington town, ME +station = ('kaug', 0.0075901265204380078) +zone = ('mez013', 0.00060852787377540564) + +[fips2300734820] +centroid = (0.78105477192752026, -1.2225871538060795) +description = Industry town, ME +station = ('kwvl', 0.00592287284267763) +zone = ('mez013', 0.0023247374228184941) + +[fips2300735625] +centroid = (0.7769664254211861, -1.2252593052507603) +description = Jay town, ME +station = ('kaug', 0.0061115260796050629) +zone = ('mez013', 0.0024600904317441637) + +[fips2300737025] +centroid = (0.78495870694508862, -1.2250641076272173) +description = Kingfield town, ME +station = ('kwvl', 0.0099480528231958749) +zone = ('mez008', 0.0044525997308385449) + +[fips2300749345] +centroid = (0.77929301912726467, -1.2217358869167119) +description = New Sharon town, ME +station = ('kwvl', 0.0044363947831750888) +zone = ('mez013', 0.002256543094207713) + +[fips2300749520] +centroid = (0.78204549062412232, -1.2236475460464213) +description = New Vineyard town, ME +station = ('kwvl', 0.0071406993249890326) +zone = ('mez013', 0.00277917253610435) + +[fips2300751400] +centroid = (0.79043898843647331, -1.2327629469439823) +description = North Franklin UT, ME +station = ('kbml', 0.014070869224668553) +zone = ('mez008', 0.0040124149484055197) + +[fips2300758445] +centroid = (0.78261675434159261, -1.2282011275181668) +description = Phillips town, ME +station = ('kaug', 0.011574675561710924) +zone = ('mez013', 0.0039681426113490712) + +[fips2300761840] +centroid = (0.78486372612719513, -1.234379767603152) +description = Rangeley town, ME +station = ('kbml', 0.0088134655048776999) +zone = ('mez007', 0.0029135084346439124) + +[fips2300761875] +centroid = (0.7830865097097669, -1.233669104438325) +description = Rangeley plantation, ME +station = ('kbml', 0.0079335507949851725) +zone = ('mez007', 0.0024484641195168678) + +[fips2300765655] +centroid = (0.7838801981871113, -1.2309599869200869) +description = Sandy River plantation, ME +station = ('kbml', 0.0099464828068861321) +zone = ('mez008', 0.0027697871983261629) + +[fips2300770760] +centroid = (0.77910939303666227, -1.2277661042021073) +description = South Franklin UT, ME +station = ('kaug', 0.0088308517017421945) +zone = ('mez013', 0.002059130373756973) + +[fips2300774825] +centroid = (0.78166619567107898, -1.2253704652708199) +description = Strong town, ME +station = ('kwvl', 0.0078732454777814768) +zone = ('mez013', 0.0022770705888763708) + +[fips2300775980] +centroid = (0.78013809009778778, -1.2264629715693984) +description = Temple town, ME +station = ('kaug', 0.0088786664342098576) +zone = ('mez013', 0.0013246906843231484) + +[fips2300781300] +centroid = (0.77994345097960538, -1.2295720138324384) +description = Weld town, ME +station = ('klew', 0.011316930785387806) +zone = ('mez013', 0.0033620161194692372) + +[fips2300782235] +centroid = (0.78196152283380882, -1.2319669371787325) +description = West Central Franklin UT, ME +station = ('kbml', 0.0083393536341880414) +zone = ('mez007', 0.0036863831563238463) + +[fips2300785850] +centroid = (0.77889789403790566, -1.2260736409731561) +description = Wilton town, ME +station = ('kaug', 0.0077905370978596294) +zone = ('mez013', 0.00097926326829979229) + +[fips2300787680] +centroid = (0.78776825070848655, -1.227855115993959) +description = Wyman UT, ME +station = ('kgnr', 0.011051723578475076) +zone = ('mez008', 0.0024176867100721812) + +[fips23009] +centroid = (0.77780434054177605, -1.1932938792531647) +description = Hancock County, ME +station = ('kbhb', 0.0020061172220951248) +zone = ('mez029', 0.0022856457625697194) + +[fips2300901185] +centroid = (0.78312705370829072, -1.1938100778327345) +description = Amherst town, ME +station = ('kbgr', 0.005295891166083035) +zone = ('mez016', 0.0010006919607777904) + +[fips2300902165] +centroid = (0.78322124912802082, -1.191481302465091) +description = Aurora town, ME +station = ('kbgr', 0.0069303206222496539) +zone = ('mez016', 0.00082313243966304899) + +[fips2300902865] +centroid = (0.77488203105540687, -1.1914282095492452) +description = Bar Harbor town, ME +station = ('kbhb', 0.001576193110924509) +zone = ('mez029', 0.0017357034501965529) + +[fips2300905700] +centroid = (0.77492088208455623, -1.1961416980870587) +description = Blue Hill town, ME +station = ('kbhb', 0.0022615152618512828) +zone = ('mez029', 0.001862865077603474) + +[fips2300907800] +centroid = (0.77244005363247903, -1.1963217462526943) +description = Brooklin town, ME +station = ('kbhb', 0.0040236236520236196) +zone = ('mez029', 0.0036264105127385565) + +[fips2300907975] +centroid = (0.77408191976641516, -1.2001056724308958) +description = Brooksville town, ME +station = ('kbhb', 0.0052082342784664087) +zone = ('mez028', 0.0036222500384516924) + +[fips2300908815] +centroid = (0.77903460567821436, -1.2000262774032224) +description = Bucksport town, ME +station = ('kbgr', 0.0029684062737923953) +zone = ('mez015', 0.0053611557266087344) + +[fips2300911265] +centroid = (0.77509492631756516, -1.2010342224995418) +description = Castine town, ME +station = ('kbgr', 0.0068126479755644424) +zone = ('mez028', 0.0031404010129075749) + +[fips2300911800] +centroid = (0.77862200984304297, -1.1932059321121566) +description = Central Hancock UT, ME +station = ('kbhb', 0.0028231848943662823) +zone = ('mez029', 0.0031051166897436856) + +[fips2300914905] +centroid = (0.77244593539205819, -1.1908038180093443) +description = Cranberry Isles town, ME +station = ('kbhb', 0.0037729718004214821) +zone = ('mez029', 0.0037112584440490929) + +[fips2300916935] +centroid = (0.78017802323107344, -1.1965604025746122) +description = Dedham town, ME +station = ('kbgr', 0.0036443992669164191) +zone = ('mez016', 0.0039069827003888596) + +[fips2300917145] +centroid = (0.77196846566859023, -1.2006433560135576) +description = Deer Isle town, ME +station = ('krkd', 0.0048038897703983384) +zone = ('mez028', 0.00384419898059235) + +[fips2300919770] +centroid = (0.77995547629815154, -1.1909999057508058) +description = Eastbrook town, ME +station = ('kbhb', 0.004448227059279641) +zone = ('mez016', 0.0030294373814614829) + +[fips2300920405] +centroid = (0.78442994199490446, -1.189377081159009) +description = East Hancock UT, ME +station = ('kbgr', 0.0086669629862947076) +zone = ('mez016', 0.002736127727280345) + +[fips2300923200] +centroid = (0.77811891868615546, -1.1952031123752136) +description = Ellsworth city, ME +station = ('kbhb', 0.0027157583919639292) +zone = ('mez029', 0.0028027783557075538) + +[fips2300926350] +centroid = (0.77842473527768996, -1.191090034553379) +description = Franklin town, ME +station = ('kbhb', 0.0030345773394864052) +zone = ('mez029', 0.0034289951871612082) + +[fips2300926595] +centroid = (0.7705349918473422, -1.1911625355305067) +description = Frenchboro town, ME +station = ('kbhb', 0.0054666078017284146) +zone = ('mez029', 0.0053149897446688847) + +[fips2300928450] +centroid = (0.77512896023797895, -1.1875803345072509) +description = Gouldsboro town, ME +station = ('kbhb', 0.0040850137890238777) +zone = ('mez029', 0.0043748949019373562) + +[fips2300928975] +centroid = (0.78453405088478589, -1.192148698917761) +description = Great Pond town, ME +station = ('kbgr', 0.0068507720442038244) +zone = ('mez016', 0.0017519315423144294) + +[fips2300930970] +centroid = (0.77709345048414624, -1.1918140843935687) +description = Hancock town, ME +station = ('kbhb', 0.0016391746763149526) +zone = ('mez029', 0.0020492406633736107) + +[fips2300938180] +centroid = (0.77653168135780681, -1.1924099398001997) +description = Lamoine town, ME +station = ('kbhb', 0.00093489704690899336) +zone = ('mez029', 0.0013467747404358342) + +[fips2300943430] +centroid = (0.78096193786460666, -1.1935602164970189) +description = Mariaville town, ME +station = ('kbhb', 0.0051686514426479858) +zone = ('mez016', 0.001990108502794353) + +[fips2300943475] +centroid = (0.76992641299046427, -1.1956596381476581) +description = Marshall Island UT, ME +station = ('kbhb', 0.0061259655303297685) +zone = ('mez029', 0.0057853025582329807) + +[fips2300947630] +centroid = (0.77376796994056629, -1.1925905464711959) +description = Mount Desert town, ME +station = ('kbhb', 0.0020806266147354053) +zone = ('mez029', 0.001931109650014274) + +[fips2300953620] +centroid = (0.78427790636376327, -1.1944008194246571) +description = Northwest Hancock UT, ME +station = ('kbgr', 0.0052924422213080306) +zone = ('mez016', 0.002012123032223236) + +[fips2300955505] +centroid = (0.77799964288507428, -1.1985197266461936) +description = Orland town, ME +station = ('kbgr', 0.0043102048397259032) +zone = ('mez029', 0.0042413179025054329) + +[fips2300955855] +centroid = (0.78183859929459099, -1.1910971554967269) +description = Osborn town, ME +station = ('kbhb', 0.0062264584123599177) +zone = ('mez016', 0.001370252982324758) + +[fips2300955890] +centroid = (0.78052893913047938, -1.1953819213570807) +description = Otis town, ME +station = ('kbgr', 0.0042726241638158914) +zone = ('mez016', 0.0030655636174891187) + +[fips2300957920] +centroid = (0.77636961008346672, -1.1991459333285166) +description = Penobscot town, ME +station = ('kbgr', 0.0057058670897453621) +zone = ('mez028', 0.0048953924074610668) + +[fips2300967300] +centroid = (0.77399906898682291, -1.1978956492655579) +description = Sedgwick town, ME +station = ('kbhb', 0.0037925167360242196) +zone = ('mez029', 0.0033818252868782666) + +[fips2300969750] +centroid = (0.77625834534365201, -1.189965257116931) +description = Sorrento town, ME +station = ('kbhb', 0.0023703251362600982) +zone = ('mez029', 0.0027480567715178496) + +[fips2300972865] +centroid = (0.77243886680858764, -1.1922828449240694) +description = Southwest Harbor town, ME +station = ('kbhb', 0.0034266357018748047) +zone = ('mez029', 0.0032535499297390632) + +[fips2300974580] +centroid = (0.7705709630832257, -1.1980869897114541) +description = Stonington town, ME +station = ('kbhb', 0.0062806586317348603) +zone = ('mez029', 0.0058819386739530737) + +[fips2300974965] +centroid = (0.77726267760841961, -1.1895108257395892) +description = Sullivan town, ME +station = ('kbhb', 0.0030260063437703255) +zone = ('mez029', 0.0034393722438582487) + +[fips2300975280] +centroid = (0.77610185912291818, -1.1956062136192545) +description = Surry town, ME +station = ('kbhb', 0.001727505321858155) +zone = ('mez029', 0.0014874690930298336) + +[fips2300975455] +centroid = (0.77016819345174303, -1.1945238127770452) +description = Swans Island town, ME +station = ('kbhb', 0.0057070831949826021) +zone = ('mez029', 0.0054010415021997589) + +[fips2300977345] +centroid = (0.77243078593415093, -1.1948213216013399) +description = Tremont town, ME +station = ('kbhb', 0.0035565854415985309) +zone = ('mez029', 0.003210102996192921) + +[fips2300977415] +centroid = (0.77606466615655822, -1.1936503278462995) +description = Trenton town, ME +station = ('kbhb', 0.00040435380705347243) +zone = ('mez029', 0.00052976908096033927) + +[fips2300978925] +centroid = (0.77729173734046542, -1.2004495721067086) +description = Verona Island town, ME +station = ('kbgr', 0.0046373146123036462) +zone = ('mez028', 0.0046862824995899822) + +[fips2300980040] +centroid = (0.77953678926389058, -1.1922630354370591) +description = Waltham town, ME +station = ('kbhb', 0.0038000631086744885) +zone = ('mez016', 0.0032643716427578225) + +[fips2300986655] +centroid = (0.77412059626263929, -1.1892403869719927) +description = Winter Harbor town, ME +station = ('kbhb', 0.0033037017398000854) +zone = ('mez029', 0.003473145110306945) + +[fips23011] +centroid = (0.77522310329783162, -1.2176422869693293) +description = Kennebec County, ME +station = ('kaug', 0.0018026969028103362) +zone = ('mez021', 0.00013578517067832477) + +[fips2301100590] +centroid = (0.77681192887579964, -1.2120483147304697) +description = Albion town, ME +station = ('kwvl', 0.0029954017873329909) +zone = ('mez021', 0.0043652290210404194) + +[fips2301102100] +centroid = (0.77379031015499189, -1.2170914785106923) +description = Augusta city, ME +station = ('kaug', 0.00088110151828946399) +zone = ('mez021', 0.0013618934418033219) + +[fips2301104020] +centroid = (0.77707454856834712, -1.2188956253584788) +description = Belgrade town, ME +station = ('kwvl', 0.0019274642887245929) +zone = ('mez021', 0.0021708890102045179) + +[fips2301104475] +centroid = (0.77825659025755278, -1.2133170120170369) +description = Benton town, ME +station = ('kwvl', 0.0022883359936103848) +zone = ('mez021', 0.0044344765652219939) + +[fips2301112350] +centroid = (0.77256261065255405, -1.216950351187376) +description = Chelsea town, ME +station = ('kaug', 0.0012955595625301392) +zone = ('mez021', 0.0025774263389976406) + +[fips2301112735] +centroid = (0.77517878938812346, -1.2136194426698226) +description = China town, ME +station = ('kwvl', 0.0027755740151551417) +zone = ('mez021', 0.002892939743735036) + +[fips2301113470] +centroid = (0.77946034384265328, -1.2135566631766284) +description = Clinton town, ME +station = ('kwvl', 0.002902332630362491) +zone = ('mez014', 0.0035395881516913199) + +[fips2301124670] +centroid = (0.77249229133699115, -1.2187251066905591) +description = Farmingdale town, ME +station = ('kaug', 0.0010392350185780544) +zone = ('mez021', 0.0027042054748675159) + +[fips2301124950] +centroid = (0.77551972200420805, -1.2229004404068127) +description = Fayette town, ME +station = ('kaug', 0.0039104572383846341) +zone = ('mez013', 0.0041471511050240155) + +[fips2301127085] +centroid = (0.77134934502303021, -1.2181336320603506) +description = Gardiner city, ME +station = ('kaug', 0.0021237640201926824) +zone = ('mez021', 0.003754019568839622) + +[fips2301130550] +centroid = (0.77295817207422601, -1.2185546752891017) +description = Hallowell city, ME +station = ('kaug', 0.00056083356926815773) +zone = ('mez021', 0.0022228224709558882) + +[fips2301140175] +centroid = (0.77094935046505819, -1.2205872857359743) +description = Litchfield town, ME +station = ('kaug', 0.0030315743496705932) +zone = ('mez025', 0.0036370854864274322) + +[fips2301143080] +centroid = (0.77392328679070133, -1.2193264075244561) +description = Manchester town, ME +station = ('kaug', 0.00089891056005983135) +zone = ('mez021', 0.0016625112387896497) + +[fips2301146405] +centroid = (0.77202030194737437, -1.2219874586750943) +description = Monmouth town, ME +station = ('kaug', 0.0030506994231131153) +zone = ('mez020', 0.002655475954576888) + +[fips2301147770] +centroid = (0.7760866398518409, -1.2210401986768669) +description = Mount Vernon town, ME +station = ('kaug', 0.0032927178302538341) +zone = ('mez021', 0.0026068995459725412) + +[fips2301154560] +centroid = (0.77806722203371148, -1.2171968440376351) +description = Oakland town, ME +station = ('kwvl', 0.0010786006047042455) +zone = ('mez021', 0.0029975663668363839) + +[fips2301159110] +centroid = (0.7710779637776376, -1.2165627659203857) +description = Pittston town, ME +station = ('kaug', 0.002678311279937107) +zone = ('mez026', 0.0027153891071817781) + +[fips2301161700] +centroid = (0.77207444206077125, -1.2173908373839943) +description = Randolph town, ME +station = ('kaug', 0.0015237923541338504) +zone = ('mez021', 0.003020546188321851) + +[fips2301162190] +centroid = (0.77460454115763233, -1.2207835829169462) +description = Readfield town, ME +station = ('kaug', 0.0021429167939271223) +zone = ('mez021', 0.0022786245290659641) + +[fips2301163835] +centroid = (0.77790227096610554, -1.2198645797993084) +description = Rome town, ME +station = ('kwvl', 0.0026883754326916115) +zone = ('mez021', 0.0032208956618323338) + +[fips2301168385] +centroid = (0.77559375887107762, -1.217466619580116) +description = Sidney town, ME +station = ('kwvl', 0.0018883799938204716) +zone = ('mez021', 0.00052519949502896895) + +[fips2301178190] +centroid = (0.77892156070256269, -1.2117625694253333) +description = Unity UT, ME +station = ('kwvl', 0.0035761234631667979) +zone = ('mez022', 0.0035580511696075407) + +[fips2301178745] +centroid = (0.77541453101019031, -1.2156132369941306) +description = Vassalboro town, ME +station = ('kwvl', 0.0018863909916853815) +zone = ('mez021', 0.0015029281466285749) + +[fips2301179025] +centroid = (0.77762865569927031, -1.2217240361310908) +description = Vienna town, ME +station = ('kaug', 0.0048445109412303166) +zone = ('mez013', 0.0028825986638202168) + +[fips2301180740] +centroid = (0.77746188948924233, -1.2158207217356078) +description = Waterville city, ME +station = ('kwvl', 0.00034349523395632591) +zone = ('mez021', 0.0027146055534654108) + +[fips2301180880] +centroid = (0.77394122877541194, -1.2228906316564165) +description = Wayne town, ME +station = ('kaug', 0.0033598074043807956) +zone = ('mez020', 0.0035562265920439039) + +[fips2301182945] +centroid = (0.77186460112480393, -1.2195577509168081) +description = West Gardiner town, ME +station = ('kaug', 0.00186373260380639) +zone = ('mez021', 0.0034961332084305799) + +[fips2301186165] +centroid = (0.77347185737967306, -1.2142784789953756) +description = Windsor town, ME +station = ('kaug', 0.0028342955001996305) +zone = ('mez021', 0.002912633405087039) + +[fips2301186515] +centroid = (0.77708777816407737, -1.2143508577994557) +description = Winslow town, ME +station = ('kwvl', 0.001331151399361664) +zone = ('mez021', 0.0030982326307851934) + +[fips2301186970] +centroid = (0.77335523447905463, -1.2210863277289972) +description = Winthrop town, ME +station = ('kaug', 0.0020400933315778604) +zone = ('mez021', 0.0029965898944472828) + +[fips23013] +centroid = (0.76867869456150606, -1.204949397437493) +description = Knox County, ME +station = ('krkd', 0.00088286952559476302) +zone = ('mez027', 0.0025281793262515086) + +[fips2301301465] +centroid = (0.77331275316506121, -1.2088077793615843) +description = Appleton town, ME +station = ('krkd', 0.0046545960786664037) +zone = ('mez028', 0.0027003857232141435) + +[fips2301309725] +centroid = (0.77179925599760935, -1.2054545131763128) +description = Camden town, ME +station = ('krkd', 0.0027215272649466931) +zone = ('mez027', 0.0018092945882433353) + +[fips2301315125] +centroid = (0.76476605035097012, -1.2021697860707667) +description = Criehaven UT, ME +station = ('krkd', 0.0051528508165098299) +zone = ('mez027', 0.0068710294871894319) + +[fips2301315780] +centroid = (0.76818789052255276, -1.2087924553707519) +description = Cushing town, ME +station = ('krkd', 0.002193663785493659) +zone = ('mez027', 0.0026067475682124428) + +[fips2301326805] +centroid = (0.76712596239246922, -1.2103265299700849) +description = Friendship town, ME +station = ('krkd', 0.0036759315781415176) +zone = ('mez026', 0.0032597604368183679) + +[fips2301333840] +centroid = (0.77214793787557268, -1.2075805161914595) +description = Hope town, ME +station = ('krkd', 0.0032385454093175306) +zone = ('mez027', 0.0015980900361333421) + +[fips2301335135] +centroid = (0.76875747872394107, -1.1977651509973861) +description = Isle au Haut town, ME +station = ('kbhb', 0.0077566082553655836) +zone = ('mez029', 0.0073828246358430463) + +[fips2301344165] +centroid = (0.76627054161948183, -1.2044393249635976) +description = Matinicus Isle plantation, ME +station = ('krkd', 0.0030579717098109739) +zone = ('mez027', 0.0047586387568069634) + +[fips2301347962] +centroid = (0.76867869456150606, -1.204949397437493) +description = Muscle Ridge Islands UT, ME +station = ('krkd', 0.00088286952559476302) +zone = ('mez027', 0.0025281793262515086) + +[fips2301351620] +centroid = (0.76973091866094834, -1.2034642967769709) +description = North Haven town, ME +station = ('krkd', 0.0019401770751450111) +zone = ('mez027', 0.0028739119151691365) + +[fips2301356135] +centroid = (0.76908505957124784, -1.2055857968426478) +description = Owls Head town, ME +station = ('krkd', 0.00031466635341966518) +zone = ('mez027', 0.0019216952776370199) + +[fips2301360] +centroid = (0.78186102677547897, -1.2198972698161985) +description = Anson CDP, ME +station = ('kwvl', 0.0053040021160855044) +zone = ('mez014', 0.0029634992952814556) + +[fips2301363590] +centroid = (0.77010185348687477, -1.2065611915484173) +description = Rockland city, ME +station = ('krkd', 0.0010661012423924653) +zone = ('mez027', 0.00070078066322440966) + +[fips2301363660] +centroid = (0.77090627573911896, -1.205905576068198) +description = Rockport town, ME +station = ('krkd', 0.0017998109529787653) +zone = ('mez027', 0.001055357276024431) + +[fips2301365130] +centroid = (0.76635382873138691, -1.2083471171588129) +description = St. George town, ME +station = ('krkd', 0.0032225963328268081) +zone = ('mez027', 0.0042762672233669502) + +[fips2301372585] +centroid = (0.76861505985697831, -1.2066216846602915) +description = South Thomaston town, ME +station = ('krkd', 0.0006548639096208758) +zone = ('mez027', 0.0020072123648845128) + +[fips2301376365] +centroid = (0.76982286260594346, -1.2072684513212029) +description = Thomaston town, ME +station = ('krkd', 0.0011451343138743305) +zone = ('mez027', 0.0007402779899028329) + +[fips2301378115] +centroid = (0.77194912742047805, -1.2092883557711211) +description = Union town, ME +station = ('krkd', 0.0036825282913800807) +zone = ('mez027', 0.0019903157477067727) + +[fips2301379130] +centroid = (0.76832187944922825, -1.2006727124515764) +description = Vinalhaven town, ME +station = ('krkd', 0.0039250733629756663) +zone = ('mez028', 0.0065616973566144429) + +[fips2301380215] +centroid = (0.77018842181777358, -1.2085217024438901) +description = Warren town, ME +station = ('krkd', 0.0020946893090452159) +zone = ('mez027', 0.00095560691973895233) + +[fips2301380425] +centroid = (0.77249387958661042, -1.2111105667766657) +description = Washington town, ME +station = ('krkd', 0.0049782759824819464) +zone = ('mez026', 0.0037518016880074474) + +[fips23015] +centroid = (0.7678447762449031, -1.2132486823768212) +description = Lincoln County, ME +station = ('kiwi', 0.0025901050995670782) +zone = ('mez026', 0.0014589188989461385) + +[fips2301501010] +centroid = (0.76966351404523636, -1.2152583591973227) +description = Alna town, ME +station = ('kiwi', 0.0025489574200524118) +zone = ('mez026', 0.0011529815747929927) + +[fips2301506050] +centroid = (0.76439539477772411, -1.2147333641583229) +description = Boothbay town, ME +station = ('kiwi', 0.0033158379859096979) +zone = ('mez025', 0.0044819868201831092) + +[fips2301506120] +centroid = (0.76536159159833572, -1.2154122448774709) +description = Boothbay Harbor town, ME +station = ('kiwi', 0.0022326310281649037) +zone = ('mez025', 0.0034874015401349817) + +[fips2301506855] +centroid = (0.76759702675758246, -1.2117887493641131) +description = Bremen town, ME +station = ('kiwi', 0.0036034853927813335) +zone = ('mez026', 0.0021811784829377759) + +[fips2301507485] +centroid = (0.76601272158237721, -1.2125394154753959) +description = Bristol town, ME +station = ('kiwi', 0.0033428763133593617) +zone = ('mez026', 0.0033606658061731834) + +[fips2301516235] +centroid = (0.76834394041097354, -1.2129617502477936) +description = Damariscotta town, ME +station = ('kiwi', 0.002920370596689576) +zone = ('mez026', 0.0010771592964678761) + +[fips2301518475] +centroid = (0.76944732011079175, -1.2171406269824285) +description = Dresden town, ME +station = ('kiwi', 0.0020998195028448649) +zone = ('mez025', 0.0025498643977714701) + +[fips2301522675] +centroid = (0.76746061182324665, -1.2151599400808029) +description = Edgecomb town, ME +station = ('kiwi', 0.0011739004290740854) +zone = ('mez026', 0.0020608984658245654) + +[fips2301532715] +centroid = (0.77363010638295138, -1.2117300015814909) +description = Hibberts gore, ME +station = ('kaug', 0.0046600328479032916) +zone = ('mez027', 0.0044155244300142903) + +[fips2301535695] +centroid = (0.77094058891221307, -1.2132579675284418) +description = Jefferson town, ME +station = ('kiwi', 0.0043842737895119976) +zone = ('mez026', 0.0017207879986463725) + +[fips2301541280] +centroid = (0.76637730340982624, -1.2112661803327736) +description = Louds Island UT, ME +station = ('kiwi', 0.0040947266003328996) +zone = ('mez026', 0.0033916731002255561) + +[fips2301546335] +centroid = (0.7637896259009419, -1.2098887490338071) +description = Monhegan plantation, ME +station = ('krkd', 0.006003882590646506) +zone = ('mez026', 0.0061364746698744756) + +[fips2301548645] +centroid = (0.76885727665057002, -1.2141823113535906) +description = Newcastle town, ME +station = ('kiwi', 0.0023953436297787629) +zone = ('mez026', 0.00050386100453465497) + +[fips2301549660] +centroid = (0.76971117898710828, -1.2127030575460627) +description = Nobleboro town, ME +station = ('kiwi', 0.003758601720015518) +zone = ('mez026', 0.00088204892381121684) + +[fips2301569645] +centroid = (0.77299361971133396, -1.2127550159978946) +description = Somerville town, ME +station = ('kaug', 0.0039542445736051417) +zone = ('mez026', 0.0038046022204025181) + +[fips2301570240] +centroid = (0.76585623536164338, -1.2138835284389418) +description = South Bristol town, ME +station = ('kiwi', 0.0025766562382727961) +zone = ('mez026', 0.0034023596814097661) + +[fips2301571955] +centroid = (0.76468712656219495, -1.2158464129821973) +description = Southport town, ME +station = ('kiwi', 0.0027602003104203843) +zone = ('mez025', 0.0037084274027653894) + +[fips2301579550] +centroid = (0.77007562118821726, -1.2109679035636076) +description = Waldoboro town, ME +station = ('krkd', 0.0036810871559550496) +zone = ('mez026', 0.0021630430263638906) + +[fips2301584140] +centroid = (0.76641678275750635, -1.2164848195159916) +description = Westport Island town, ME +station = ('kiwi', 0.00097074442240946369) +zone = ('mez025', 0.0022724407368601824) + +[fips2301585010] +centroid = (0.77140146055449477, -1.215091732613635) +description = Whitefield town, ME +station = ('kaug', 0.0030610026340002435) +zone = ('mez026', 0.0023486277264592788) + +[fips2301587075] +centroid = (0.76820283054094984, -1.2162963414100689) +description = Wiscasset town, ME +station = ('kiwi', 0.00091046493089736152) +zone = ('mez025', 0.0023015345508155213) + +[fips2301675] +centroid = (0.81361783356758388, -1.1936799984435833) +description = Ashland CDP, ME +station = ('kpqi', 0.0042680139138064786) +zone = ('mez002', 0.0028334157760084911) + +[fips23017] +centroid = (0.77657700755848114, -1.2345532009709228) +description = Oxford County, ME +station = ('kbml', 0.0057922015111224771) +zone = ('mez012', 0.0041177883094517219) + +[fips2301701325] +centroid = (0.77825805633412448, -1.2352094796762576) +description = Andover town, ME +station = ('kbml', 0.0051109516768528436) +zone = ('mez007', 0.0045959784441206358) + +[fips2301704825] +centroid = (0.77578274312248363, -1.2350663103177166) +description = Bethel town, ME +station = ('kbml', 0.0057195754765447544) +zone = ('mez012', 0.0034479385217939733) + +[fips2301708150] +centroid = (0.7667370855818324, -1.2377627916521703) +description = Brownfield town, ME +station = ('kizg', 0.00099824593754027158) +zone = ('nhz004', 0.0041114317201219035) + +[fips2301708710] +centroid = (0.77249171537833794, -1.228137318280714) +description = Buckfield town, ME +station = ('klew', 0.0038209208400612777) +zone = ('mez020', 0.0026253633877250881) + +[fips2301709550] +centroid = (0.78020041580537647, -1.2330127384665277) +description = Byron town, ME +station = ('kbml', 0.006982592319699589) +zone = ('mez007', 0.0037874772126317733) + +[fips2301710005] +centroid = (0.77650792742668728, -1.2268721291059435) +description = Canton town, ME +station = ('klew', 0.0076916796660839414) +zone = ('mez013', 0.0032262267676956531) + +[fips2301717250] +centroid = (0.76785114669667287, -1.2359470034582729) +description = Denmark town, ME +station = ('kizg', 0.0017122965980133084) +zone = ('mez012', 0.0050193610693571901) + +[fips2301717740] +centroid = (0.77743680910789104, -1.2285736156871276) +description = Dixfield town, ME +station = ('klew', 0.008725669776753835) +zone = ('mez013', 0.0032765634218676469) + +[fips2301726910] +centroid = (0.76891372059857965, -1.2382165947109813) +description = Fryeburg town, ME +station = ('kizg', 0.0012615698616372682) +zone = ('nhz004', 0.0027674409923162326) + +[fips2301727505] +centroid = (0.77497003055629243, -1.238192753513399) +description = Gilead town, ME +station = ('kbml', 0.0043470232167702287) +zone = ('mez012', 0.0041807060810784757) + +[fips2301729710] +centroid = (0.77396208545997314, -1.2334212153246644) +description = Greenwood town, ME +station = ('klew', 0.0070608304316325775) +zone = ('mez012', 0.0014253159797504469) + +[fips2301731110] +centroid = (0.77657700755848114, -1.2345532009709228) +description = Hanover town, ME +station = ('kbml', 0.0057922015111224771) +zone = ('mez012', 0.0041177883094517219) + +[fips2301731670] +centroid = (0.77463314710407249, -1.2274214889413011) +description = Hartford town, ME +station = ('klew', 0.005840131394965223) +zone = ('mez020', 0.004093832900596654) + +[fips2301732370] +centroid = (0.77159709451035075, -1.2285176778846012) +description = Hebron town, ME +station = ('klew', 0.0030780112553136911) +zone = ('mez020', 0.0024311607141288892) + +[fips2301733315] +centroid = (0.76530790527054438, -1.2362441108568398) +description = Hiram town, ME +station = ('kizg', 0.0027786884815593047) +zone = ('mez019', 0.0041231383635393012) + +[fips2301739422] +centroid = (0.78454625073625739, -1.2389012350166611) +description = Lincoln plantation, ME +station = ('kbml', 0.0068798655145103317) +zone = ('mez007', 0.0022893934943487874) + +[fips2301741365] +centroid = (0.77130412354211098, -1.237190655270074) +description = Lovell town, ME +station = ('kizg', 0.0037378082070149842) +zone = ('mez012', 0.0029569014058022343) + +[fips2301742835] +centroid = (0.78232100829984219, -1.2388171276000075) +description = Magalloway plantation, ME +station = ('kbml', 0.0049014148977614899) +zone = ('mez007', 0.001284342459510148) + +[fips2301745285] +centroid = (0.77760289463951093, -1.2303833126819357) +description = Mexico town, ME +station = ('klew', 0.0091773387928992013) +zone = ('mez013', 0.0043010634497203425) + +[fips2301746105] +centroid = (0.7759472927643617, -1.2322145993995905) +description = Milton UT, ME +station = ('klew', 0.0081592181686918775) +zone = ('mez012', 0.0035211724453428073) + +[fips2301749275] +centroid = (0.77702574916246148, -1.2366767779784091) +description = Newry town, ME +station = ('kbml', 0.004212924506359246) +zone = ('mez012', 0.0050497810854388111) + +[fips2301752575] +centroid = (0.78412634197151998, -1.2378130222280428) +description = North Oxford UT, ME +station = ('kbml', 0.0068219149911469277) +zone = ('mez007', 0.0015581826537207841) + +[fips2301754000] +centroid = (0.77188699369910707, -1.2323773688056316) +description = Norway town, ME +station = ('klew', 0.0051152514360822436) +zone = ('mez012', 0.0010008250723847673) + +[fips2301755960] +centroid = (0.76952647079236969, -1.2313199785316031) +description = Otisfield town, ME +station = ('klew', 0.0034114161344935587) +zone = ('mez012', 0.003372511820588463) + +[fips2301756310] +centroid = (0.77047451618876062, -1.2299896536691481) +description = Oxford town, ME +station = ('klew', 0.0029000193069732053) +zone = ('mez012', 0.0032203352530235886) + +[fips2301756625] +centroid = (0.77227330487574353, -1.2302968316174991) +description = Paris town, ME +station = ('klew', 0.0043236329267404335) +zone = ('mez012', 0.0022665382284581159) + +[fips2301758270] +centroid = (0.7762128271567601, -1.2292393191704232) +description = Peru town, ME +station = ('klew', 0.0076197989405153268) +zone = ('mez013', 0.0044481607005434744) + +[fips2301760405] +centroid = (0.7651321506148685, -1.2382595298105805) +description = Porter town, ME +station = ('kizg', 0.0025221057490480985) +zone = ('nhz006', 0.0037426046773918441) + +[fips2301764185] +centroid = (0.77953780155485686, -1.2322430831729831) +description = Roxbury town, ME +station = ('kbml', 0.0073540910944763461) +zone = ('mez007', 0.0046364909887595058) + +[fips2301764290] +centroid = (0.77771791183721728, -1.2326442471015542) +description = Rumford town, ME +station = ('kbml', 0.0069499884555861424) +zone = ('mez012', 0.0052121597786768791) + +[fips2301771755] +centroid = (0.77375744560517679, -1.2375871068096644) +description = South Oxford UT, ME +station = ('kbml', 0.0055501568141095477) +zone = ('mez012', 0.0032094046626217018) + +[fips2301774510] +centroid = (0.77253576748865838, -1.2370113925026018) +description = Stoneham town, ME +station = ('kizg', 0.0049701397144277853) +zone = ('mez012', 0.0025577049511600301) + +[fips2301774685] +centroid = (0.77145958001858617, -1.238697712172586) +description = Stow town, ME +station = ('kizg', 0.0038157136956216381) +zone = ('nhz004', 0.0030518181909512804) + +[fips2301775035] +centroid = (0.77468025354058379, -1.2295774068998271) +description = Sumner town, ME +station = ('klew', 0.006220662846315588) +zone = ('mez012', 0.0034970700608340315) + +[fips2301775595] +centroid = (0.77006890167059705, -1.2357770782022988) +description = Sweden town, ME +station = ('kizg', 0.003024671650051697) +zone = ('mez012', 0.0029830995388366913) + +[fips2301778465] +centroid = (0.78066130490095065, -1.2388972556659665) +description = Upton town, ME +station = ('kbml', 0.0035465521024236396) +zone = ('mez007', 0.0023822963895312765) + +[fips2301780635] +centroid = (0.77148497455920262, -1.234338071687322) +description = Waterford town, ME +station = ('kizg', 0.0047768989499022722) +zone = ('mez012', 0.0012331130030858168) + +[fips2301783890] +centroid = (0.77351732320668742, -1.2308523873717017) +description = West Paris town, ME +station = ('klew', 0.005573064150698262) +zone = ('mez012', 0.0020956537541815183) + +[fips2301787355] +centroid = (0.77493936512133477, -1.2314713334843361) +description = Woodstock town, ME +station = ('klew', 0.0070204840472074762) +zone = ('mez012', 0.0027847710802420471) + +[fips23019] +centroid = (0.79221545436232321, -1.1982992042952041) +description = Penobscot County, ME +station = ('kmlt', 0.0045571005362042569) +zone = ('mez011', 0.0030714499200486097) + +[fips2301901115] +centroid = (0.78615352444441888, -1.2003434909947723) +description = Alton town, ME +station = ('kbgr', 0.0042777024509196553) +zone = ('mez015', 0.0020562902334713838) + +[fips2301901500] +centroid = (0.78667731520623496, -1.1989407698749448) +description = Argyle UT, ME +station = ('kbgr', 0.0050038728890075121) +zone = ('mez015', 0.0030240011199808249) + +[fips2301902795] +centroid = (0.78244208179005303, -1.2006538279890695) +description = Bangor city, ME +station = ('kbgr', 0.0006132398993653654) +zone = ('mez015', 0.0019503438640084659) + +[fips2301906575] +centroid = (0.78693859099525842, -1.2026484600714189) +description = Bradford town, ME +station = ('kbgr', 0.0051525059086085052) +zone = ('mez015', 0.0027639973096540036) + +[fips2301906680] +centroid = (0.78355649197074395, -1.1963665139480082) +description = Bradley town, ME +station = ('kbgr', 0.0037248616822209181) +zone = ('mez015', 0.0037465296512052778) + +[fips2301906925] +centroid = (0.78164031243827181, -1.1996533703552412) +description = Brewer city, ME +station = ('kbgr', 0.0010453185214029837) +zone = ('mez015', 0.0029684525448001975) + +[fips2301909200] +centroid = (0.7899635083883525, -1.1936953398877084) +description = Burlington town, ME +station = ('kmlt', 0.0077472811265827477) +zone = ('mez011', 0.0022490204230224244) + +[fips2301910670] +centroid = (0.78191542868826369, -1.2043315857888721) +description = Carmel town, ME +station = ('kbgr', 0.0023090693756421766) +zone = ('mez015', 0.0030793199269056326) + +[fips2301910810] +centroid = (0.79241773802262927, -1.1872591066584213) +description = Carroll plantation, ME +station = ('kmlt', 0.0093187768979064722) +zone = ('mez011', 0.0046859937189157579) + +[fips2301912105] +centroid = (0.78675346392149936, -1.2048258630330368) +description = Charleston town, ME +station = ('kbgr', 0.0055248256364097822) +zone = ('mez031', 0.003341807680842461) + +[fips2301912525] +centroid = (0.79295863301111491, -1.1956518365259015) +description = Chester town, ME +station = ('kmlt', 0.0044671258279374597) +zone = ('mez011', 0.0014261452168343707) + +[fips2301913365] +centroid = (0.78181854546148544, -1.195161224473166) +description = Clifton town, ME +station = ('kbgr', 0.0041990794671554659) +zone = ('mez016', 0.002140876042445619) + +[fips2301914310] +centroid = (0.78441542085552796, -1.2087839207107096) +description = Corinna town, ME +station = ('kbgr', 0.0060097812530809603) +zone = ('mez015', 0.0051177788726572285) + +[fips2301914380] +centroid = (0.78505735295441137, -1.204464771864092) +description = Corinth town, ME +station = ('kbgr', 0.0039598738181879072) +zone = ('mez015', 0.0021984265448556049) + +[fips2301917530] +centroid = (0.7861411326067298, -1.2091578749562417) +description = Dexter town, ME +station = ('kbgr', 0.007117580455207659) +zone = ('mez031', 0.0038832569343909351) + +[fips2301917950] +centroid = (0.78011976414064188, -1.2067852569177884) +description = Dixmont town, ME +station = ('kbgr', 0.0044304129842518804) +zone = ('mez022', 0.0027604004809653276) + +[fips2301918580] +centroid = (0.79578748011603984, -1.1883752098084865) +description = Drew plantation, ME +station = ('kmlt', 0.0075204934832994296) +zone = ('mez011', 0.0052877851242572266) + +[fips2301919868] +centroid = (0.78724177213962243, -1.1939792875037154) +description = East Central Penobscot UT, ME +station = ('kbgr', 0.0073271620897133582) +zone = ('mez016', 0.0045694337159726296) + +[fips2301921030] +centroid = (0.7968062811603065, -1.1972497378159799) +description = East Millinocket town, ME +station = ('kmlt', 0.0012538673362950136) +zone = ('mez005', 0.0051259478890378334) + +[fips2301922535] +centroid = (0.78200896088287808, -1.1974894413354489) +description = Eddington town, ME +station = ('kbgr', 0.0025478120044661037) +zone = ('mez015', 0.0036722297563455404) + +[fips2301922710] +centroid = (0.78834188807373951, -1.1988498033143309) +description = Edinburg town, ME +station = ('kbgr', 0.0066244798230789756) +zone = ('mez015', 0.004485180540379153) + +[fips2301923620] +centroid = (0.79035681833528937, -1.196985739313323) +description = Enfield town, ME +station = ('kmlt', 0.006546662554662127) +zone = ('mez011', 0.0028370848090239742) + +[fips2301923865] +centroid = (0.78165673598653307, -1.2065966391855254) +description = Etna town, ME +station = ('kbgr', 0.0039247855274298603) +zone = ('mez022', 0.0043025590736689885) + +[fips2301924110] +centroid = (0.78475619639197969, -1.2064587407213252) +description = Exeter town, ME +station = ('kbgr', 0.0047596391793493465) +zone = ('mez015', 0.0035015456755584495) + +[fips2301927190] +centroid = (0.78674656987095404, -1.2070482605827713) +description = Garland town, ME +station = ('kbgr', 0.0064249574355753208) +zone = ('mez031', 0.0029713824278015072) + +[fips2301927645] +centroid = (0.78352535529688827, -1.2015776656687354) +description = Glenburn town, ME +station = ('kbgr', 0.0016562720186729055) +zone = ('mez015', 0.00075943996780088413) + +[fips2301929185] +centroid = (0.78665790714495276, -1.197110774700936) +description = Greenbush town, ME +station = ('kbgr', 0.0055182352364623903) +zone = ('mez015', 0.0039385126459825651) + +[fips2301930795] +centroid = (0.78073591772647333, -1.2022330368028591) +description = Hampden town, ME +station = ('kbgr', 0.0014303120510205133) +zone = ('mez015', 0.003581036004094817) + +[fips2301932510] +centroid = (0.78221658525069537, -1.2026525615951609) +description = Hermon town, ME +station = ('kbgr', 0.0011594624986883404) +zone = ('mez015', 0.0022091699677435589) + +[fips2301933490] +centroid = (0.78124201084967426, -1.1986219505804827) +description = Holden town, ME +station = ('kbgr', 0.0018656319635910786) +zone = ('mez015', 0.003685815888919372) + +[fips2301934190] +centroid = (0.7900651214574036, -1.1993084234818772) +description = Howland town, ME +station = ('kmlt', 0.0066803121901446378) +zone = ('mez011', 0.004348246100723401) + +[fips2301934365] +centroid = (0.78526968971120892, -1.202330879960726) +description = Hudson town, ME +station = ('kbgr', 0.0034774582484108398) +zone = ('mez015', 0.001127271653208697) + +[fips2301936325] +centroid = (0.78393070801566389, -1.2030195345236854) +description = Kenduskeag town, ME +station = ('kbgr', 0.0024471647760677287) +zone = ('mez015', 0.0010948445406102055) + +[fips2301937075] +centroid = (0.79547635772357927, -1.1905203416322354) +description = Kingman UT, ME +station = ('kmlt', 0.0060933236956267024) +zone = ('mez011', 0.0040485547215941683) + +[fips2301937760] +centroid = (0.7883018153141137, -1.2009295900108847) +description = Lagrange town, ME +station = ('kbgr', 0.0063951651991319448) +zone = ('mez015', 0.0040414908131947425) + +[fips2301938005] +centroid = (0.79068757568183479, -1.1883317336568195) +description = Lakeville town, ME +station = ('kmlt', 0.0096466180364100113) +zone = ('mez011', 0.0042147690666104447) + +[fips2301938530] +centroid = (0.79196629115830841, -1.1920293009436322) +description = Lee town, ME +station = ('kmlt', 0.0068525788163169669) +zone = ('mez011', 0.0013534345329770129) + +[fips2301938705] +centroid = (0.78324912203617514, -1.2042198149035743) +description = Levant town, ME +station = ('kbgr', 0.0026009843510842617) +zone = ('mez015', 0.002152035378726084) + +[fips2301939475] +centroid = (0.79159275579179655, -1.1944947530449994) +description = Lincoln town, ME +station = ('kmlt', 0.006056129379716467) +zone = ('mez011', 0.00073263902394910549) + +[fips2301941435] +centroid = (0.78913379631524683, -1.1956796396208857) +description = Lowell town, ME +station = ('kmlt', 0.0079662857481630385) +zone = ('mez011', 0.0033113037612592365) + +[fips2301944270] +centroid = (0.79497134670451475, -1.1921325720754725) +description = Mattawamkeag town, ME +station = ('kmlt', 0.0051481425621406254) +zone = ('mez011', 0.0030371883400188804) + +[fips2301944340] +centroid = (0.79091157123803579, -1.1997317181853635) +description = Maxfield town, ME +station = ('kmlt', 0.0058512954800133028) +zone = ('mez011', 0.0042807612402094878) + +[fips2301945005] +centroid = (0.79628786601258661, -1.19553235128531) +description = Medway town, ME +station = ('kmlt', 0.0024952148910260654) +zone = ('mez011', 0.0042336616678433263) + +[fips2301945670] +centroid = (0.7852825876943812, -1.1968760279165429) +description = Milford town, ME +station = ('kbgr', 0.0044998658455021913) +zone = ('mez015', 0.0034585284026603536) + +[fips2301945810] +centroid = (0.79672727010506872, -1.1987693785423987) +description = Millinocket town, ME +station = ('kmlt', 0.00019064662129845218) +zone = ('mez005', 0.005192772895584505) + +[fips2301947560] +centroid = (0.80413193417640971, -1.1954275617170202) +description = Mount Chase town, ME +station = ('kmlt', 0.0078058917883494948) +zone = ('mez005', 0.0029003606154685974) + +[fips2301948505] +centroid = (0.78017957657410775, -1.2043857957154391) +description = Newburgh town, ME +station = ('kbgr', 0.0029165196696954521) +zone = ('mez022', 0.0034672751747203702) + +[fips2301949065] +centroid = (0.78312338851686147, -1.2082016265123665) +description = Newport town, ME +station = ('kbgr', 0.0051963277006269598) +zone = ('mez015', 0.004848094617782097) + +[fips2301952710] +centroid = (0.80070201313039047, -1.1989610855074377) +description = North Penobscot UT, ME +station = ('kmlt', 0.0039596040148268622) +zone = ('mez005', 0.0013406947818484429) + +[fips2301955225] +centroid = (0.78459829645455181, -1.1997338998469285) +description = Old Town city, ME +station = ('kbgr', 0.0028542501310011301) +zone = ('mez015', 0.0013273930525124088) + +[fips2301955565] +centroid = (0.78333307237319605, -1.1997157484227077) +description = Orono town, ME +station = ('kbgr', 0.0017217602802764849) +zone = ('mez015', 0.0016138555343256835) + +[fips2301955680] +centroid = (0.78028356329094151, -1.2002689130758346) +description = Orrington town, ME +station = ('kbgr', 0.0017224503025761023) +zone = ('mez015', 0.0041039458249820379) + +[fips2301957045] +centroid = (0.78876598562868161, -1.1972047781344484) +description = Passadumkeag town, ME +station = ('kbgr', 0.007384998950374865) +zone = ('mez011', 0.0041424772077169958) + +[fips2301957150] +centroid = (0.80270161940110796, -1.1954227271549922) +description = Patten town, ME +station = ('kmlt', 0.0064704358064106102) +zone = ('mez005', 0.0020214886075744817) + +[fips2301957937] +centroid = (0.78617404951642234, -1.1984305054148314) +description = Penobscot Indian Island Reservation, ME +station = ('kbgr', 0.0046600377887097266) +zone = ('mez015', 0.0029080112217257392) + +[fips2301959950] +centroid = (0.78165067969402868, -1.2084009605662371) +description = Plymouth town, ME +station = ('kbgr', 0.0052035731655843505) +zone = ('mez022', 0.0043469849953109065) + +[fips2301960790] +centroid = (0.79420617690714801, -1.1881608135631718) +description = Prentiss UT, ME +station = ('kmlt', 0.0080269941184130111) +zone = ('mez011', 0.0045116513099632801) + +[fips2301967160] +centroid = (0.79186521914132546, -1.1997216301822868) +description = Seboeis plantation, ME +station = ('kmlt', 0.0049008366444957124) +zone = ('mez011', 0.00408538534941891) + +[fips2301973250] +centroid = (0.79236310921704189, -1.1898681644506428) +description = Springfield town, ME +station = ('kmlt', 0.0077770994510278661) +zone = ('mez011', 0.002853528535148476) + +[fips2301973600] +centroid = (0.80103421910021511, -1.1954692401795577) +description = Stacyville town, ME +station = ('kmlt', 0.0049622110382915056) +zone = ('mez005', 0.0020187236548921388) + +[fips2301974055] +centroid = (0.78322405910811654, -1.2061045086963404) +description = Stetson town, ME +station = ('kbgr', 0.0038000941743962392) +zone = ('mez015', 0.0033915065558381241) + +[fips2301978015] +centroid = (0.79062531978741624, -1.1913574888079543) +description = Twombly Ridge UT, ME +station = ('kmlt', 0.0081519120958699221) +zone = ('mez011', 0.002399737104423337) + +[fips2301978780] +centroid = (0.78273489567866006, -1.1992879333164588) +description = Veazie town, ME +station = ('kbgr', 0.0015151065483454552) +zone = ('mez015', 0.0022324836722863576) + +[fips2301981055] +centroid = (0.79348114968257699, -1.1903894244850433) +description = Webster plantation, ME +station = ('kmlt', 0.0068802360113400874) +zone = ('mez011', 0.002789897071492672) + +[fips2301985230] +centroid = (0.79053791369847626, -1.1864299181840916) +description = Whitney UT, ME +station = ('kmlt', 0.010803261202732464) +zone = ('mez032', 0.0042939573815717908) + +[fips2301986305] +centroid = (0.7933240351433124, -1.1926498702124713) +description = Winn town, ME +station = ('kmlt', 0.0056319462883464176) +zone = ('mez011', 0.0014318702834281087) + +[fips2301987390] +centroid = (0.79456789639462377, -1.1946752899028257) +description = Woodville town, ME +station = ('kmlt', 0.00375036890802716) +zone = ('mez011', 0.0024190458274241573) + +[fips2302060] +centroid = (0.76942031986726345, -1.2260876734203421) +description = Auburn city, ME +station = ('klew', 0.00073606334129277585) +zone = ('mez020', 0.0015204579443700416) + +[fips23021] +centroid = (0.80141466597056488, -1.2061018907024623) +description = Piscataquis County, ME +station = ('kmlt', 0.0067875495593987412) +zone = ('mez004', 0.0049045944823575341) + +[fips2302100] +centroid = (0.77379031015499189, -1.2170914785106923) +description = Augusta city, ME +station = ('kaug', 0.00088110151828946399) +zone = ('mez021', 0.0013618934418033219) + +[fips2302100100] +centroid = (0.78877055839132182, -1.212875129557017) +description = Abbot town, ME +station = ('kgnr', 0.0049005349120125209) +zone = ('mez031', 0.0042358529224485048) + +[fips2302101920] +centroid = (0.78815824452984462, -1.2053367732649731) +description = Atkinson town, ME +station = ('kbgr', 0.0069389711504347232) +zone = ('mez031', 0.001956714624718912) + +[fips2302103740] +centroid = (0.79501525918849492, -1.2126290555857784) +description = Beaver Cove town, ME +station = ('kgnr', 0.0019521137684079116) +zone = ('mez010', 0.00063994405473009278) + +[fips2302105560] +centroid = (0.78969832306180443, -1.2156012465821695) +description = Blanchard UT, ME +station = ('kgnr', 0.0039277042439882729) +zone = ('mez010', 0.0061195539938862197) + +[fips2302106400] +centroid = (0.79096747413397706, -1.2084439480257136) +description = Bowerbank town, ME +station = ('kgnr', 0.0049468627658637862) +zone = ('mez031', 0.0016043737736425459) + +[fips2302108325] +centroid = (0.79161867393118879, -1.2045378662531654) +description = Brownville town, ME +station = ('kmlt', 0.0064107648079313089) +zone = ('mez031', 0.0025779991218669541) + +[fips2302118195] +centroid = (0.78850528579831114, -1.2076403635315103) +description = Dover-Foxcroft town, ME +station = ('kgnr', 0.006954069051717659) +zone = ('mez031', 0.001290393568731616) + +[fips2302129535] +centroid = (0.79346181143446481, -1.213741109571979) +description = Greenville town, ME +station = ('kgnr', 0.00050949912165292835) +zone = ('mez010', 0.0022198398255237162) + +[fips2302130095] +centroid = (0.78899293079131838, -1.2102136071674807) +description = Guilford town, ME +station = ('kgnr', 0.0054411574300822869) +zone = ('mez031', 0.0023673159636905081) + +[fips2302137095] +centroid = (0.78808254960018564, -1.2147221067846474) +description = Kingsbury plantation, ME +station = ('kgnr', 0.0054636351402906338) +zone = ('mez014', 0.0055383619390130413) + +[fips2302137970] +centroid = (0.79188714047673059, -1.2022032789391126) +description = Lake View plantation, ME +station = ('kmlt', 0.0053373826469892208) +zone = ('mez031', 0.0040189003776379363) + +[fips2302144830] +centroid = (0.79055697269390812, -1.2021944475730975) +description = Medford town, ME +station = ('kmlt', 0.0065691621565163311) +zone = ('mez031', 0.0034939090556595875) + +[fips2302146020] +centroid = (0.79011985498274617, -1.2040961932326557) +description = Milo town, ME +station = ('kmlt', 0.0075122886595526137) +zone = ('mez031', 0.0020927280268210396) + +[fips2302146580] +centroid = (0.79058561354693324, -1.2129889773841247) +description = Monson town, ME +station = ('kgnr', 0.0031323073705163957) +zone = ('mez010', 0.0046836596345575321) + +[fips2302151105] +centroid = (0.80141466597056488, -1.2061018907024623) +description = Northeast Piscataquis UT, ME +station = ('kmlt', 0.0067875495593987412) +zone = ('mez004', 0.0049045944823575341) + +[fips2302153628] +centroid = (0.80400920262340947, -1.2128569781327962) +description = Northwest Piscataquis UT, ME +station = ('k40b', 0.009618278872521974) +zone = ('mez004', 0.0036568869728368773) + +[fips2302156765] +centroid = (0.78727296117335566, -1.211657395884608) +description = Parkman town, ME +station = ('kgnr', 0.0065724349360745653) +zone = ('mez031', 0.0040855715255785144) + +[fips2302165865] +centroid = (0.78786221923541389, -1.209893513782665) +description = Sangerville town, ME +station = ('kgnr', 0.0065252972357862284) +zone = ('mez031', 0.0027498086357438944) + +[fips2302166950] +centroid = (0.78963481053032436, -1.2061034964053743) +description = Sebec town, ME +station = ('kgnr', 0.007052867312061414) +zone = ('mez031', 0.00064632160163719747) + +[fips2302168140] +centroid = (0.79165448808743966, -1.2151743390471317) +description = Shirley town, ME +station = ('kgnr', 0.0019542996380170494) +zone = ('mez010', 0.0042727296752601424) + +[fips2302170655] +centroid = (0.78838011078435821, -1.2027747695493856) +description = Southeast Piscataquis UT, ME +station = ('kbgr', 0.0065829968995468153) +zone = ('mez015', 0.0041849610679055961) + +[fips2302181405] +centroid = (0.78674246834721184, -1.2145125974612381) +description = Wellington town, ME +station = ('kgnr', 0.0068006723571311881) +zone = ('mez014', 0.004247451537561636) + +[fips2302185710] +centroid = (0.79068916393145405, -1.2109017381316645) +description = Willimantic town, ME +station = ('kgnr', 0.0037926298204761979) +zone = ('mez031', 0.0029032051759498609) + +[fips23023] +centroid = (0.76649090689083865, -1.2190076580431644) +description = Sagadahoc County, ME +station = ('kiwi', 0.0018224095587647594) +zone = ('mez025', 0.00096394571072086976) + +[fips2302301570] +centroid = (0.76560216778243051, -1.2180457896390977) +description = Arrowsic town, ME +station = ('kiwi', 0.0019812180392284346) +zone = ('mez025', 0.0020420240903382416) + +[fips2302303355] +centroid = (0.76675267137205272, -1.2190163846894244) +description = Bath city, ME +station = ('kiwi', 0.0017183072744470288) +zone = ('mez025', 0.00070948248404318986) + +[fips2302306260] +centroid = (0.76908636856818691, -1.2212938299237668) +description = Bowdoin town, ME +station = ('kiwi', 0.0036717476547296559) +zone = ('mez025', 0.0021861834193250356) + +[fips2302306365] +centroid = (0.76854245416009537, -1.2194100262489191) +description = Bowdoinham town, ME +station = ('kiwi', 0.0022260799908692202) +zone = ('mez025', 0.0011147934566749773) + +[fips2302327295] +centroid = (0.76285557804515214, -1.2175050168236599) +description = Georgetown town, ME +station = ('kiwi', 0.0045373062144658622) +zone = ('mez025', 0.0047560187429308105) + +[fips2302358070] +centroid = (0.76904362545480542, -1.2182347564372114) +description = Perkins UT, ME +station = ('kiwi', 0.0019775358355520406) +zone = ('mez025', 0.0017892383357506309) + +[fips2302358515] +centroid = (0.76343134471209251, -1.218692678473057) +description = Phippsburg town, ME +station = ('kiwi', 0.0041653674969161312) +zone = ('mez025', 0.0040233311857506004) + +[fips2302362645] +centroid = (0.76998399140248752, -1.2187565575236798) +description = Richmond town, ME +station = ('kiwi', 0.0029794034649301328) +zone = ('mez025', 0.0025847572691826571) + +[fips2302376960] +centroid = (0.76733360421357899, -1.2209559690871656) +description = Topsham town, ME +station = ('kiwi', 0.0030019444651808208) +zone = ('mez025', 0.0011887817544502638) + +[fips2302381930] +centroid = (0.76571516039820475, -1.2192650242946634) +description = West Bath town, ME +station = ('kiwi', 0.0024302137827644892) +zone = ('mez025', 0.0017151403176262963) + +[fips2302387460] +centroid = (0.76724073524408043, -1.2177048919295983) +description = Woolwich town, ME +station = ('kiwi', 0.00067306978476989793) +zone = ('mez025', 0.00117048785388577) + +[fips23025] +centroid = (0.79425539519205424, -1.2213122955072528) +description = Somerset County, ME +station = ('kgnr', 0.0048576634484024054) +zone = ('mez009', 0.0012230648791275041) + +[fips2302501395] +centroid = (0.78254081506583828, -1.2211438886877279) +description = Anson town, ME +station = ('kwvl', 0.00634785334371524) +zone = ('mez013', 0.0041122116740716615) + +[fips2302501885] +centroid = (0.78479183601530544, -1.2159173955228757) +description = Athens town, ME +station = ('kwvl', 0.0075412821652460788) +zone = ('mez014', 0.00219017684463614) + +[fips2302505000] +centroid = (0.78588596547008815, -1.2185445523794403) +description = Bingham town, ME +station = ('kgnr', 0.0081796877823110611) +zone = ('mez014', 0.0037968648863795189) + +[fips2302507380] +centroid = (0.78655329210958824, -1.2165952115911802) +description = Brighton plantation, ME +station = ('kgnr', 0.0071497179286827799) +zone = ('mez014', 0.0039859798210634357) + +[fips2302509655] +centroid = (0.78617473019483064, -1.212129385274225) +description = Cambridge town, ME +station = ('kgnr', 0.0075484767547855953) +zone = ('mez014', 0.00443925912596579) + +[fips2302509935] +centroid = (0.78159755187159796, -1.2138121793791203) +description = Canaan town, ME +station = ('kwvl', 0.004665422354686765) +zone = ('mez014', 0.0017617582228303813) + +[fips2302510495] +centroid = (0.78910475403649372, -1.2200444359787266) +description = Caratunk town, ME +station = ('kgnr', 0.0059258677038191414) +zone = ('mez009', 0.00508870536216381) + +[fips2302511820] +centroid = (0.78554461397498321, -1.2217534100224017) +description = Central Somerset UT, ME +station = ('kwvl', 0.0091798143877813449) +zone = ('mez014', 0.0051104082929502278) + +[fips2302514555] +centroid = (0.78306958001602256, -1.2160487315490882) +description = Cornville town, ME +station = ('kwvl', 0.005817328067669195) +zone = ('mez014', 0.00048775448102730942) + +[fips2302517285] +centroid = (0.79695662382207322, -1.2274955956213407) +description = Dennistown plantation, ME +station = ('cwhv', 0.010877868844572163) +zone = ('mez009', 0.0045154648907226747) + +[fips2302517460] +centroid = (0.7814207151117859, -1.2095511499965939) +description = Detroit town, ME +station = ('kbgr', 0.0060338277021086701) +zone = ('mez022', 0.0043569103248963592) + +[fips2302523410] +centroid = (0.78409803273105272, -1.2205597269870854) +description = Embden town, ME +station = ('kwvl', 0.007511846029606379) +zone = ('mez014', 0.003655600567929997) + +[fips2302524320] +centroid = (0.77931836130800369, -1.2158186273405054) +description = Fairfield town, ME +station = ('kwvl', 0.0020831852782445975) +zone = ('mez014', 0.0032838712362470682) + +[fips2302531355] +centroid = (0.7850027066955314, -1.2137973091738932) +description = Harmony town, ME +station = ('kwvl', 0.0079355648436471686) +zone = ('mez014', 0.0028072636524936203) + +[fips2302531740] +centroid = (0.78330067906227907, -1.2133616226327177) +description = Hartland town, ME +station = ('kwvl', 0.0063757824803654757) +zone = ('mez014', 0.0018985865320547851) + +[fips2302532895] +centroid = (0.78692112024944605, -1.2234549489634636) +description = Highland plantation, ME +station = ('kgnr', 0.0091612146842140439) +zone = ('mez008', 0.0052582948200011999) + +[fips2302535345] +centroid = (0.7962002155775515, -1.2248300066146474) +description = Jackman town, ME +station = ('kgnr', 0.007734834871972825) +zone = ('mez009', 0.0027698737420110138) + +[fips2302542660] +centroid = (0.78236746896453024, -1.2182348087970887) +description = Madison town, ME +station = ('kwvl', 0.0053142007138966812) +zone = ('mez014', 0.0017058738230428532) + +[fips2302545110] +centroid = (0.77919402405209148, -1.220124773484196) +description = Mercer town, ME +station = ('kwvl', 0.003400665806139761) +zone = ('mez013', 0.0034066609809734736) + +[fips2302547140] +centroid = (0.79767718300375912, -1.2255807948989779) +description = Moose River town, ME +station = ('cwhv', 0.011032124751920894) +zone = ('mez009', 0.0043237766473344557) + +[fips2302547455] +centroid = (0.78778008404081501, -1.2195655350852719) +description = Moscow town, ME +station = ('kgnr', 0.0067908915344503879) +zone = ('mez014', 0.0058058792077373489) + +[fips2302549205] +centroid = (0.78363791158034934, -1.2229514912874333) +description = New Portland town, ME +station = ('kwvl', 0.0079847052665154936) +zone = ('mez013', 0.0044459119399568809) + +[fips2302549835] +centroid = (0.78072996615372414, -1.2185829670762767) +description = Norridgewock town, ME +station = ('kwvl', 0.0038670663351099057) +zone = ('mez014', 0.0026946995904080819) + +[fips2302551114] +centroid = (0.7936384387547667, -1.2196504104467962) +description = Northeast Somerset UT, ME +station = ('kgnr', 0.0036424434229657011) +zone = ('mez009', 0.0022948771993152625) + +[fips2302553636] +centroid = (0.79292988743833459, -1.225976967185888) +description = Northwest Somerset UT, ME +station = ('kgnr', 0.0081040610888725214) +zone = ('mez009', 0.0023068996479896318) + +[fips2302556520] +centroid = (0.78266063191898771, -1.2107062088955638) +description = Palmyra town, ME +station = ('kwvl', 0.0066718990190883223) +zone = ('mez014', 0.0036492909026438667) + +[fips2302559005] +centroid = (0.7813811310443507, -1.2118461532432112) +description = Pittsfield town, ME +station = ('kwvl', 0.0051621809840269109) +zone = ('mez014', 0.0030935048686491938) + +[fips2302559705] +centroid = (0.78703486335679851, -1.2212046959588674) +description = Pleasant Ridge plantation, ME +station = ('kgnr', 0.008055460012361404) +zone = ('mez014', 0.0058300982898161534) + +[fips2302562995] +centroid = (0.78535161546629761, -1.211335749156758) +description = Ripley town, ME +station = ('kbgr', 0.0080414115350547332) +zone = ('mez014', 0.0042175511954562804) + +[fips2302564850] +centroid = (0.78413124634671816, -1.2110377865468576) +description = St. Albans town, ME +station = ('kbgr', 0.0074017059237668405) +zone = ('mez014', 0.0037382534471169229) + +[fips2302567238] +centroid = (0.80454685129948633, -1.2215576713467908) +description = Seboomook Lake UT, ME +station = ('cwhv', 0.0097579000869024522) +zone = ('mez003', 0.0024443028786417893) + +[fips2302568910] +centroid = (0.78135317086973377, -1.2161037094205263) +description = Skowhegan town, ME +station = ('kwvl', 0.004100493127855924) +zone = ('mez014', 0.0012616583015184603) + +[fips2302569155] +centroid = (0.77915009411481884, -1.2182427674984779) +description = Smithfield town, ME +station = ('kwvl', 0.0023889064518655715) +zone = ('mez014', 0.0038470612843605791) + +[fips2302569505] +centroid = (0.78434295478498506, -1.2183713459044723) +description = Solon town, ME +station = ('kwvl', 0.0072549591842669837) +zone = ('mez014', 0.0024931226697684932) + +[fips2302573845] +centroid = (0.78080217042487909, -1.2209301033076512) +description = Starks town, ME +station = ('kwvl', 0.0048894473378087028) +zone = ('mez013', 0.003147378877390031) + +[fips2302576190] +centroid = (0.79062762362202887, -1.2204793894816162) +description = The Forks plantation, ME +station = ('kgnr', 0.0051365395562276176) +zone = ('mez009', 0.0035835624413465758) + +[fips2302582840] +centroid = (0.79208844675265555, -1.221717229347008) +description = West Forks plantation, ME +station = ('kgnr', 0.0052982210236716008) +zone = ('mez009', 0.0018857905542806336) + +[fips23027] +centroid = (0.77676508423867607, -1.206715024868688) +description = Waldo County, ME +station = ('kbgr', 0.0065213739379338864) +zone = ('mez022', 0.00072747140296584411) + +[fips2302703950] +centroid = (0.7753777743761433, -1.2047382649578793) +description = Belfast city, ME +station = ('krkd', 0.0063364885992073629) +zone = ('mez028', 0.0013768480844780005) + +[fips2302704125] +centroid = (0.77472400894493132, -1.2062349371513421) +description = Belmont town, ME +station = ('krkd', 0.0056176478654549108) +zone = ('mez028', 0.001025640214047884) + +[fips2302707870] +centroid = (0.77732721988415832, -1.2064022967733157) +description = Brooks town, ME +station = ('kbgr', 0.0059430626230015) +zone = ('mez022', 0.00061359711273317036) + +[fips2302709270] +centroid = (0.7799622481756493, -1.2109934377305642) +description = Burnham town, ME +station = ('kwvl', 0.0045929956931427471) +zone = ('mez022', 0.003705480499167088) + +[fips2302726280] +centroid = (0.77839857279220259, -1.2030264285742307) +description = Frankfort town, ME +station = ('kbgr', 0.0037725124565781477) +zone = ('mez022', 0.0031832634937821731) + +[fips2302726420] +centroid = (0.77650267398563877, -1.2105255149581047) +description = Freedom town, ME +station = ('kwvl', 0.0041180596501491596) +zone = ('mez022', 0.0024883808354378553) + +[fips2302735240] +centroid = (0.7731613109458656, -1.2027980173350221) +description = Islesboro town, ME +station = ('krkd', 0.0046661367187568513) +zone = ('mez028', 0.0019096225939645864) + +[fips2302735450] +centroid = (0.77869611652308257, -1.2067540155241776) +description = Jackson town, ME +station = ('kbgr', 0.0051564585130743548) +zone = ('mez022', 0.0013644464681099673) + +[fips2302737585] +centroid = (0.77698345983468564, -1.2080561707725055) +description = Knox town, ME +station = ('kbgr', 0.0069919530567194611) +zone = ('mez022', 0.00069248182440810114) + +[fips2302739055] +centroid = (0.77442056600117948, -1.2101007192714617) +description = Liberty town, ME +station = ('kaug', 0.0058975580372289498) +zone = ('mez028', 0.0035456120573979948) + +[fips2302739755] +centroid = (0.77311649089067447, -1.2055045692192599) +description = Lincolnville town, ME +station = ('krkd', 0.0040252411841806878) +zone = ('mez028', 0.00095007686196417452) + +[fips2302746475] +centroid = (0.77838298700198227, -1.2052980095022863) +description = Monroe town, ME +station = ('kbgr', 0.0046284412919192193) +zone = ('mez022', 0.0017202557791431258) + +[fips2302746790] +centroid = (0.77547132402405028, -1.2092330288338329) +description = Montville town, ME +station = ('kwvl', 0.0052828773417934564) +zone = ('mez022', 0.0023716972018227346) + +[fips2302747245] +centroid = (0.77541817874832708, -1.2072414161710896) +description = Morrill town, ME +station = ('krkd', 0.0063698801950471395) +zone = ('mez022', 0.0019619866309419855) + +[fips2302752845] +centroid = (0.77421257511421937, -1.2041035585220992) +description = Northport town, ME +station = ('krkd', 0.0052862198119852672) +zone = ('mez028', 0.0007832546521610689) + +[fips2302756450] +centroid = (0.77485838184404232, -1.2117930952339504) +description = Palermo town, ME +station = ('kwvl', 0.0039551959987889638) +zone = ('mez022', 0.0041017676508427886) + +[fips2302761210] +centroid = (0.77780533537944974, -1.2020554844580535) +description = Prospect town, ME +station = ('kbgr', 0.004160697610197708) +zone = ('mez028', 0.0043762865067839265) + +[fips2302766565] +centroid = (0.77426633125518074, -1.20766190089448) +description = Searsmont town, ME +station = ('krkd', 0.0052900509285570569) +zone = ('mez028', 0.0017960007082436975) + +[fips2302766635] +centroid = (0.77616599997292901, -1.2030106857043779) +description = Searsport town, ME +station = ('kbgr', 0.0059040159216495322) +zone = ('mez028', 0.0026301467835181695) + +[fips2302774475] +centroid = (0.77691799253444327, -1.2014680415384176) +description = Stockton Springs town, ME +station = ('kbgr', 0.0049972433746362796) +zone = ('mez028', 0.0039110932690215195) + +[fips2302775525] +centroid = (0.77696755988519994, -1.2044924702393207) +description = Swanville town, ME +station = ('kbgr', 0.0055048912405989206) +zone = ('mez022', 0.0020156062107724126) + +[fips2302776610] +centroid = (0.77830432501259494, -1.2084218696106759) +description = Thorndike town, ME +station = ('kbgr', 0.0063433989118620044) +zone = ('mez022', 0.0012407177268951794) + +[fips2302777625] +centroid = (0.77971099057653226, -1.2086726908774801) +description = Troy town, ME +station = ('kbgr', 0.005825238277479038) +zone = ('mez022', 0.002538610718513004) + +[fips2302778255] +centroid = (0.77789583070116564, -1.2106029726703083) +description = Unity town, ME +station = ('kwvl', 0.0040424918233308025) +zone = ('mez022', 0.0024373287401541262) + +[fips2302779480] +centroid = (0.77608344589930978, -1.2058970588614484) +description = Waldo town, ME +station = ('kbgr', 0.0067589004738519212) +zone = ('mez022', 0.0016205555535699157) + +[fips2302786760] +centroid = (0.7792962130797958, -1.2026870143945954) +description = Winterport town, ME +station = ('kbgr', 0.0028507324325383085) +zone = ('mez022', 0.003778213461237463) + +[fips2302795] +centroid = (0.78244208179005303, -1.2006538279890695) +description = Bangor city, ME +station = ('kbgr', 0.0006132398993653654) +zone = ('mez015', 0.0019503438640084659) + +[fips2302830] +centroid = (0.77459993348840706, -1.1905088224591722) +description = Bar Harbor CDP, ME +station = ('kbhb', 0.002279716402521368) +zone = ('mez029', 0.0024506145507437287) + +[fips23029] +centroid = (0.78482236182392284, -1.1800058324463982) +description = Washington County, ME +station = ('cwss', 0.0062122222948586018) +zone = ('mez017', 0.00079741792631476797) + +[fips2302900380] +centroid = (0.77691890010565423, -1.1817121186830255) +description = Addison town, ME +station = ('kbhb', 0.0082889693984384838) +zone = ('mez030', 0.0035486646411946226) + +[fips2302900660] +centroid = (0.78689209542398542, -1.1776697441491888) +description = Alexander town, ME +station = ('cwss', 0.0035968945362040211) +zone = ('mez017', 0.0023628956328072331) + +[fips2302902480] +centroid = (0.78856518549823973, -1.1770480753229211) +description = Baileyville town, ME +station = ('cwss', 0.0024148050938348595) +zone = ('mez017', 0.0038387919816595989) + +[fips2302902970] +centroid = (0.78701110942567887, -1.1746965059552466) +description = Baring plantation, ME +station = ('cwss', 0.0022723584621351916) +zone = ('mez017', 0.0043041699367110577) + +[fips2302903670] +centroid = (0.77573198894783557, -1.1798924034983114) +description = Beals town, ME +station = ('kbhb', 0.009517024865426436) +zone = ('mez030', 0.004145880948071559) + +[fips2302903810] +centroid = (0.78214671972073802, -1.1871330938864273) +description = Beddington town, ME +station = ('kbhb', 0.0076863239404837153) +zone = ('mez016', 0.0038452501847225421) + +[fips2302909585] +centroid = (0.78802186450209377, -1.1735452344207535) +description = Calais city, ME +station = ('cwss', 0.001165458672364525) +zone = ('mez017', 0.0054506358159806551) + +[fips2302912175] +centroid = (0.78558704292909909, -1.1741354175073153) +description = Charlotte town, ME +station = ('cwss', 0.0036038224772050667) +zone = ('mez017', 0.0044520002638818957) + +[fips2302912455] +centroid = (0.77896259339327711, -1.1855518953972906) +description = Cherryfield town, ME +station = ('kbhb', 0.0063172105654955733) +zone = ('mez016', 0.0062371934245394542) + +[fips2302913610] +centroid = (0.79349060936712268, -1.1813605046519187) +description = Codyville plantation, ME +station = ('cwss', 0.0068790018582458607) +zone = ('mez032', 0.00070921543770300862) + +[fips2302913750] +centroid = (0.77968798713699106, -1.183502774135694) +description = Columbia town, ME +station = ('kbhb', 0.0079431616808956201) +zone = ('mez030', 0.0033358289888422848) + +[fips2302913820] +centroid = (0.78014898095232021, -1.1818255999909901) +description = Columbia Falls town, ME +station = ('cwss', 0.010692930562622457) +zone = ('mez030', 0.0021679077826376107) + +[fips2302914100] +centroid = (0.78520556631449068, -1.1767512297237419) +description = Cooper town, ME +station = ('cwss', 0.0045088279075153215) +zone = ('mez017', 0.0026271702372606264) + +[fips2302914940] +centroid = (0.78623873141850131, -1.1794158762526392) +description = Crawford town, ME +station = ('cwss', 0.0049716172672485846) +zone = ('mez017', 0.00098806146298303379) + +[fips2302915920] +centroid = (0.77926745005372289, -1.1732942909809019) +description = Cutler town, ME +station = ('cwss', 0.0099171447999287614) +zone = ('mez030', 0.0039630211327512351) + +[fips2302916410] +centroid = (0.79647801963459142, -1.1839171676599951) +description = Danforth town, ME +station = ('khul', 0.0084194745070252618) +zone = ('mez032', 0.0029796838606833717) + +[fips2302916865] +centroid = (0.78062924320259153, -1.186555372450725) +description = Deblois town, ME +station = ('kbhb', 0.0067737276717574294) +zone = ('mez016', 0.004729052369091713) + +[fips2302917355] +centroid = (0.78406951405107506, -1.1736635328374536) +description = Dennysville town, ME +station = ('cwss', 0.0051104378460508767) +zone = ('mez030', 0.005615585009733283) + +[fips2302919870] +centroid = (0.78288649497748819, -1.1750475789342851) +description = East Central Washington UT, ME +station = ('cwss', 0.0063613125099759972) +zone = ('mez030', 0.0040793698921923454) + +[fips2302920960] +centroid = (0.7814441199770551, -1.1765521225626745) +description = East Machias town, ME +station = ('cwss', 0.0079881841801670694) +zone = ('mez030', 0.0022949490525879693) + +[fips2302921730] +centroid = (0.78384408732488753, -1.1695261600324312) +description = Eastport city, ME +station = ('cwss', 0.0061075110447405042) +zone = ('mez030', 0.0077298327746683181) + +[fips2302928660] +centroid = (0.78929422698009022, -1.1826141048404561) +description = Grand Lake Stream plantation, ME +station = ('cwss', 0.0062561243725391281) +zone = ('mez017', 0.0040386772485772812) + +[fips2302931530] +centroid = (0.7771629320416682, -1.1833318714953387) +description = Harrington town, ME +station = ('kbhb', 0.0071871005014153217) +zone = ('mez030', 0.0041629931400668663) + +[fips2302935905] +centroid = (0.7795587280525883, -1.1797785207646185) +description = Jonesboro town, ME +station = ('cwss', 0.010529429559939248) +zone = ('mez030', 0.00072877510102622913) + +[fips2302936010] +centroid = (0.77773196173769588, -1.1777871699012632) +description = Jonesport town, ME +station = ('cwss', 0.011802410707609153) +zone = ('mez030', 0.0021993056096730208) + +[fips2302941610] +centroid = (0.78194513419213263, -1.1699502401340804) +description = Lubec town, ME +station = ('cwss', 0.0077132828337420686) +zone = ('mez030', 0.0066497170494072156) + +[fips2302941960] +centroid = (0.78009929142851586, -1.1771258995542675) +description = Machias town, ME +station = ('cwss', 0.0093923014995915509) +zone = ('mez030', 0.0012358339232893482) + +[fips2302942100] +centroid = (0.77890820893378487, -1.1759948912923901) +description = Machiasport town, ME +station = ('cwss', 0.01039550671722588) +zone = ('mez030', 0.0021976339286671684) + +[fips2302943640] +centroid = (0.78104110599947718, -1.1776612618490243) +description = Marshfield town, ME +station = ('cwss', 0.008599601113090093) +zone = ('mez030', 0.0014821780949377805) + +[fips2302944760] +centroid = (0.78624515423014862, -1.1755725390667) +description = Meddybemps town, ME +station = ('cwss', 0.0032084335968155264) +zone = ('mez017', 0.0035023472286928501) + +[fips2302945600] +centroid = (0.77596586306760285, -1.1844419707127771) +description = Milbridge town, ME +station = ('kbhb', 0.0062704511123086093) +zone = ('mez030', 0.0055515054131724589) + +[fips2302951375] +centroid = (0.78230325830134928, -1.1801200991525262) +description = Northfield town, ME +station = ('cwss', 0.0082257438017920986) +zone = ('mez030', 0.0026636919009829893) + +[fips2302953500] +centroid = (0.78824081605675655, -1.1833392193314898) +description = North Washington UT, ME +station = ('cwss', 0.0068342243169023723) +zone = ('mez017', 0.0033757994330857704) + +[fips2302957082] +centroid = (0.79045729694032674, -1.1801802955584275) +description = Passamaquoddy Indian Township Reservation, ME +station = ('cwss', 0.004714483953359461) +zone = ('mez032', 0.0035886781398914644) + +[fips2302957090] +centroid = (0.78460803539177792, -1.1701495218280733) +description = Passamaquoddy Pleasant Point Reservation, ME +station = ('cwss', 0.0052254097363926945) +zone = ('mez030', 0.0077999408122022733) + +[fips2302957780] +centroid = (0.78397854749046114, -1.1717383299527488) +description = Pembroke town, ME +station = ('cwss', 0.0053887442854054857) +zone = ('mez030', 0.0065284802991987297) + +[fips2302958165] +centroid = (0.78514187925008538, -1.1711780967161511) +description = Perry town, ME +station = ('cwss', 0.0044225181544570733) +zone = ('mez030', 0.0076025204264180335) + +[fips2302961035] +centroid = (0.78789588663668486, -1.1785613106909851) +description = Princeton town, ME +station = ('cwss', 0.0036368752181111558) +zone = ('mez017', 0.0026833067316362666) + +[fips2302963275] +centroid = (0.78657407898097942, -1.1720265012655455) +description = Robbinston town, ME +station = ('cwss', 0.0028704924041673906) +zone = ('mez030', 0.0083033412990491419) + +[fips2302963940] +centroid = (0.77882680677747196, -1.1778434567696401) +description = Roque Bluffs town, ME +station = ('cwss', 0.01075406880503872) +zone = ('mez030', 0.0011984748076695831) + +[fips2302974125] +centroid = (0.7763593824540499, -1.1857565876119645) +description = Steuben town, ME +station = ('kbhb', 0.0053582226675910434) +zone = ('mez029', 0.005714792853367321) + +[fips2302975770] +centroid = (0.79129571820639977, -1.1828374546248337) +description = Talmadge town, ME +station = ('cwss', 0.0067463597834144309) +zone = ('mez032', 0.0024478765052494728) + +[fips2302976895] +centroid = (0.7931359235565324, -1.1828459194717063) +description = Topsfield town, ME +station = ('cwss', 0.0075290974137937148) +zone = ('mez032', 0.00068807504183729113) + +[fips2302978675] +centroid = (0.79539354185057221, -1.1776322195702711) +description = Vanceboro town, ME +station = ('cwss', 0.0067900872578946303) +zone = ('mez032', 0.0036872088283235937) + +[fips2302979375] +centroid = (0.79124880375610618, -1.1799296313712564) +description = Waite town, ME +station = ('cwss', 0.004825932674720459) +zone = ('mez032', 0.0029838896656378057) + +[fips2302981685] +centroid = (0.78391013058378289, -1.1804922557089292) +description = Wesley town, ME +station = ('cwss', 0.0071100894942572497) +zone = ('mez017', 0.0016508900486089046) + +[fips2302985185] +centroid = (0.78121499315285337, -1.1738220087335349) +description = Whiting town, ME +station = ('cwss', 0.0079649605978042524) +zone = ('mez030', 0.0038170099124823207) + +[fips2302985290] +centroid = (0.78115968366885769, -1.1787935267479632) +description = Whitneyville town, ME +station = ('cwss', 0.0087821515029466186) +zone = ('mez030', 0.0013536378267892336) + +[fips23031] +centroid = (0.75794830560048976, -1.2334311986079856) +description = York County, ME +station = ('ksfm', 0.00075502495980821096) +zone = ('mez023', 0.0018547641095771421) + +[fips2303100275] +centroid = (0.75985783542851171, -1.2381410743142476) +description = Acton town, ME +station = ('ksfm', 0.0037025958415924849) +zone = ('mez018', 0.0020843622515297777) + +[fips2303100730] +centroid = (0.75884547464918484, -1.2344196658298525) +description = Alfred town, ME +station = ('ksfm', 0.0013788566420342427) +zone = ('mez018', 0.0015458233733916214) + +[fips2303101605] +centroid = (0.75816769348746538, -1.2309463733519213) +description = Arundel town, ME +station = ('ksfm', 0.0024902045160873571) +zone = ('mez023', 0.0020643857478445486) + +[fips2303104720] +centroid = (0.7557159073141414, -1.236427492601347) +description = Berwick town, ME +station = ('kdaw', 0.00098786027447917237) +zone = ('mez023', 0.0031264441847018002) + +[fips2303104860] +centroid = (0.75814896610459148, -1.2285886255186949) +description = Biddeford city, ME +station = ('kpwm', 0.0038701875454519312) +zone = ('mez023', 0.00320605010737231) + +[fips2303109410] +centroid = (0.7615986268244509, -1.2311348514578442) +description = Buxton town, ME +station = ('kpwm', 0.0030258022927641174) +zone = ('mez018', 0.003315643066831559) + +[fips2303114485] +centroid = (0.76388151748605948, -1.2358477814902971) +description = Cornish town, ME +station = ('kizg', 0.0041694776933416328) +zone = ('mez018', 0.0036538473390342833) + +[fips2303116725] +centroid = (0.76013378943654453, -1.2317752476669861) +description = Dayton town, ME +station = ('ksfm', 0.0032056022712027253) +zone = ('mez018', 0.0025686239327609934) + +[fips2303122955] +centroid = (0.7530493932829444, -1.235246009417502) +description = Eliot town, ME +station = ('kpsm', 0.0012278653945881409) +zone = ('nhz014', 0.0026428197875169273) + +[fips2303133665] +centroid = (0.76150493755020388, -1.2324532382682156) +description = Hollis town, ME +station = ('ksfm', 0.0042348309616830225) +zone = ('mez018', 0.0024246468110200921) + +[fips2303136535] +centroid = (0.75713033959325005, -1.2313972442575891) +description = Kennebunk town, ME +station = ('ksfm', 0.0020930635217683452) +zone = ('mez023', 0.0010040538688582908) + +[fips2303136745] +centroid = (0.7568945979711833, -1.229246527380234) +description = Kennebunkport town, ME +station = ('ksfm', 0.0036739524237233306) +zone = ('mez023', 0.0022312625004594832) + +[fips2303137270] +centroid = (0.75057626173286851, -1.2322784609969211) +description = Kittery town, ME +station = ('kpsm', 0.0030348153570721468) +zone = ('nhz014', 0.002869643937414464) + +[fips2303138425] +centroid = (0.7574713071159197, -1.2376615974621397) +description = Lebanon town, ME +station = ('kdaw', 0.0020352254008328442) +zone = ('nhz010', 0.0023198037835419354) + +[fips2303139195] +centroid = (0.76250783864498484, -1.2353769091114013) +description = Limerick town, ME +station = ('ksfm', 0.0051020924362181535) +zone = ('mez018', 0.002260298166147234) + +[fips2303139405] +centroid = (0.76349435109808961, -1.2339997919717003) +description = Limington town, ME +station = ('kizg', 0.0051927413115943344) +zone = ('mez018', 0.0033832091152014836) + +[fips2303141750] +centroid = (0.75922677673086814, -1.2330634053747129) +description = Lyman town, ME +station = ('ksfm', 0.0019504009849844435) +zone = ('mez018', 0.0019262284840257152) + +[fips2303148750] +centroid = (0.76163257347840208, -1.2373433715796236) +description = Newfield town, ME +station = ('ksfm', 0.0047298518589618836) +zone = ('mez018', 0.0020180386455940585) + +[fips2303150325] +centroid = (0.75661960389423899, -1.2353221406794739) +description = North Berwick town, ME +station = ('ksfm', 0.0011611743939469665) +zone = ('mez023', 0.0022823413658419416) + +[fips2303154980] +centroid = (0.7545314570705679, -1.2319346136809857) +description = Ogunquit town, ME +station = ('ksfm', 0.0033856094460527853) +zone = ('mez023', 0.0017990767145932755) + +[fips2303155085] +centroid = (0.7598342385770247, -1.2279014893921845) +description = Old Orchard Beach town, ME +station = ('kpwm', 0.002113415520638917) +zone = ('mez024', 0.0042264647590793611) + +[fips2303156870] +centroid = (0.76328114167666594, -1.2374236741785076) +description = Parsonsfield town, ME +station = ('kizg', 0.004419411024732158) +zone = ('mez018', 0.0033949904795602765) + +[fips2303164675] +centroid = (0.75970574743749286, -1.2290542095499568) +description = Saco city, ME +station = ('kpwm', 0.002612573896514358) +zone = ('mez023', 0.0040895585959137897) + +[fips2303165760] +centroid = (0.7578942527535556, -1.2349576112119023) +description = Sanford town, ME +station = ('ksfm', 0.00067104278909178926) +zone = ('mez018', 0.0023680425869176572) + +[fips2303167475] +centroid = (0.76016099911958313, -1.2362655085934695) +description = Shapleigh town, ME +station = ('ksfm', 0.0030641608161932924) +zone = ('mez018', 0.00069349275876563743) + +[fips2303170030] +centroid = (0.75451442265706847, -1.2348628049269339) +description = South Berwick town, ME +station = ('kpsm', 0.0026954853368375076) +zone = ('mez023', 0.0026426448911182668) + +[fips2303180530] +centroid = (0.76109831074107415, -1.2345958219112563) +description = Waterboro town, ME +station = ('ksfm', 0.0036346588137466987) +zone = ('mez018', 0.00099765635111910382) + +[fips2303181475] +centroid = (0.75590660198821424, -1.2327587581537773) +description = Wells town, ME +station = ('ksfm', 0.001900311396209547) +zone = ('mez023', 0.00057355191235124961) + +[fips2303187985] +centroid = (0.75338001100314977, -1.2320455468082423) +description = York town, ME +station = ('kpsm', 0.0032123867323763607) +zone = ('mez023', 0.0029416965856837473) + +[fips2303355] +centroid = (0.76675267137205272, -1.2190163846894244) +description = Bath city, ME +station = ('kiwi', 0.0017183072744470288) +zone = ('mez025', 0.00070948248404318986) + +[fips2303950] +centroid = (0.7753777743761433, -1.2047382649578793) +description = Belfast city, ME +station = ('krkd', 0.0063364885992073629) +zone = ('mez028', 0.0013768480844780005) + +[fips2304685] +centroid = (0.75520319939307556, -1.2367827194640055) +description = Berwick CDP, ME +station = ('kdaw', 0.00072765499869199347) +zone = ('nhz010', 0.0021739734025128642) + +[fips2304860] +centroid = (0.75814896610459148, -1.2285886255186949) +description = Biddeford city, ME +station = ('kpwm', 0.0038701875454519312) +zone = ('mez023', 0.00320605010737231) + +[fips2304965] +centroid = (0.78641319453053071, -1.2195128610484467) +description = Bingham CDP, ME +station = ('kgnr', 0.0079681740306115079) +zone = ('mez014', 0.0046082730471868139) + +[fips2305350] +centroid = (0.81156063143155077, -1.1845334259655818) +description = Blaine CDP, ME +station = ('kpqi', 0.003882730750023133) +zone = ('mez002', 0.0057708886556076004) + +[fips2305665] +centroid = (0.77490492977519299, -1.1969661043592383) +description = Blue Hill CDP, ME +station = ('kbhb', 0.0028184401681242638) +zone = ('mez029', 0.002430646198667639) + +[fips2306085] +centroid = (0.76542499941006059, -1.2151564668755914) +description = Boothbay Harbor CDP, ME +station = ('kiwi', 0.0022656780191690172) +zone = ('mez025', 0.0036016455834556186) + +[fips2306330] +centroid = (0.76831512502502308, -1.220007190652489) +description = Bowdoinham CDP, ME +station = ('kiwi', 0.0025057189588068469) +zone = ('mez025', 0.0010174556473402936) + +[fips2306925] +centroid = (0.78164031243827181, -1.1996533703552412) +description = Brewer city, ME +station = ('kbgr', 0.0010453185214029837) +zone = ('mez015', 0.0029684525448001975) + +[fips2307135] +centroid = (0.76927936707687239, -1.234217504342594) +description = Bridgton CDP, ME +station = ('kizg', 0.0033621894447808877) +zone = ('mez012', 0.0033048721626951698) + +[fips2308395] +centroid = (0.76595231573696565, -1.2214907728765618) +description = Brunswick CDP, ME +station = ('kiwi', 0.0036708971359345269) +zone = ('mez025', 0.0021566278339970974) + +[fips2308500] +centroid = (0.76605619773404443, -1.2206622127207625) +description = Brunswick Station CDP, ME +station = ('kiwi', 0.0030828101916724943) +zone = ('mez025', 0.0016840679661525471) + +[fips2308780] +centroid = (0.77821508632794045, -1.2007628412541491) +description = Bucksport CDP, ME +station = ('kbgr', 0.0036991837771476344) +zone = ('mez028', 0.0052306105815823544) + +[fips2309585] +centroid = (0.78802186450209377, -1.1735452344207535) +description = Calais city, ME +station = ('cwss', 0.001165458672364525) +zone = ('mez017', 0.0054506358159806551) + +[fips2309690] +centroid = (0.77167587867278586, -1.2054720886418802) +description = Camden CDP, ME +station = ('krkd', 0.0025976631514294463) +zone = ('mez027', 0.0017177752562000318) + +[fips2310320] +centroid = (0.75349330032489659, -1.2326168454322977) +description = Cape Neddick CDP, ME +station = ('kpsm', 0.0029039916568974473) +zone = ('mez023', 0.0028413361928701108) + +[fips2310565] +centroid = (0.81745199032165761, -1.1857062697696295) +description = Caribou city, ME +station = ('kcar', 0.0010973567632386015) +zone = ('mez002', 0.0038825583683265276) + +[fips2311090] +centroid = (0.76797436694186372, -1.2310288750656631) +description = Casco CDP, ME +station = ('klew', 0.0032417095216653812) +zone = ('mez019', 0.0018747284328027153) + +[fips2311230] +centroid = (0.77481885013648466, -1.2008736696616507) +description = Castine CDP, ME +station = ('krkd', 0.0067985455833677322) +zone = ('mez028', 0.0031698467871351397) + +[fips2312770] +centroid = (0.77654793037314296, -1.2250919979886643) +description = Chisholm CDP, ME +station = ('kaug', 0.0057815822544485685) +zone = ('mez013', 0.0028686437118463463) + +[fips2313435] +centroid = (0.77919576938134361, -1.2128058399857129) +description = Clinton CDP, ME +station = ('kwvl', 0.0031029672102904195) +zone = ('mez014', 0.0040355064952258398) + +[fips2314800] +centroid = (0.76382111164064792, -1.2242219513565451) +description = Cousins Island CDP, ME +station = ('kpwm', 0.0028064058282370455) +zone = ('mez024', 0.0006365811955553898) + +[fips2315500] +centroid = (0.76436696336420917, -1.2259776827708813) +description = Cumberland Center CDP, ME +station = ('kpwm', 0.002629696701360539) +zone = ('mez024', 0.0011344680340670749) + +[fips2316200] +centroid = (0.76824534676152834, -1.2133552696342405) +description = Damariscotta CDP, ME +station = ('kiwi', 0.0026207143486454707) +zone = ('mez026', 0.0010522169871791704) + +[fips2317495] +centroid = (0.78568090673627133, -1.2094197616105036) +description = Dexter CDP, ME +station = ('kbgr', 0.0070105140943077836) +zone = ('mez031', 0.0043792444300937983) + +[fips2317705] +centroid = (0.77745646151526859, -1.2296584774435821) +description = Dixfield CDP, ME +station = ('klew', 0.0088988127073395488) +zone = ('mez013', 0.0039105124881271764) + +[fips2318230] +centroid = (0.78898497208992935, -1.2081609254342103) +description = Dover-Foxcroft CDP, ME +station = ('kgnr', 0.0063538506901811191) +zone = ('mez031', 0.0010907761598622915) + +[fips2319385] +centroid = (0.82090645069695989, -1.1971081741603506) +description = Eagle Lake CDP, ME +station = ('kfve', 0.0055360878257964923) +zone = ('mez002', 0.0069645359592645784) + +[fips2321065] +centroid = (0.79632481463285121, -1.1968436171523333) +description = East Millinocket CDP, ME +station = ('kmlt', 0.0015923621550489075) +zone = ('mez011', 0.0045979025846511114) + +[fips2321730] +centroid = (0.78384408732488753, -1.1695261600324312) +description = Eastport city, ME +station = ('cwss', 0.0061075110447405042) +zone = ('mez030', 0.0077298327746683181) + +[fips2323200] +centroid = (0.77811891868615546, -1.1952031123752136) +description = Ellsworth city, ME +station = ('kbhb', 0.0027157583919639292) +zone = ('mez029', 0.0028027783557075538) + +[fips2324285] +centroid = (0.77822922349488155, -1.2148653459563585) +description = Fairfield CDP, ME +station = ('kwvl', 0.0013644096985357056) +zone = ('mez021', 0.0037226780332129837) + +[fips2324480] +centroid = (0.76290865350770531, -1.2259251309071038) +description = Falmouth CDP, ME +station = ('kpwm', 0.0013104441186969241) +zone = ('mez024', 0.00090030656158496367) + +[fips2324530] +centroid = (0.76327342732137204, -1.2255357130443989) +description = Falmouth Foreside CDP, ME +station = ('kpwm', 0.0017708297391233307) +zone = ('mez024', 0.00045943659125890346) + +[fips2324635] +centroid = (0.77233240172421602, -1.2179688729789624) +description = Farmingdale CDP, ME +station = ('kaug', 0.0011557379079023074) +zone = ('mez021', 0.0027645284420054661) + +[fips2324740] +centroid = (0.77964697189956911, -1.2242050565693858) +description = Farmington CDP, ME +station = ('kaug', 0.0074993129338878726) +zone = ('mez013', 0.00054891306463225587) + +[fips2325580] +centroid = (0.81623926574420191, -1.1838906910152425) +description = Fort Fairfield CDP, ME +station = ('kcar', 0.0028089003171737261) +zone = ('mez002', 0.0046736467000291111) + +[fips2325720] +centroid = (0.8247565074005192, -1.1970926058234228) +description = Fort Kent CDP, ME +station = ('cerm', 0.0042849505524957922) +zone = ('mez001', 0.0081726216987909397) + +[fips2326490] +centroid = (0.76544994016507162, -1.2235210620355292) +description = Freeport CDP, ME +station = ('klew', 0.0040617563873742452) +zone = ('mez024', 0.0022215612035670945) + +[fips2326875] +centroid = (0.76829585659008115, -1.2386950418188305) +description = Fryeburg CDP, ME +station = ('kizg', 0.00069876601221766435) +zone = ('nhz004', 0.0026549542022809721) + +[fips2327085] +centroid = (0.77134934502303021, -1.2181336320603506) +description = Gardiner city, ME +station = ('kaug', 0.0021237640201926824) +zone = ('mez021', 0.003754019568839622) + +[fips2328205] +centroid = (0.76257754709530945, -1.2293251893696215) +description = Gorham CDP, ME +station = ('kpwm', 0.0018601988258981996) +zone = ('mez019', 0.0036677723877895419) + +[fips2328835] +centroid = (0.76596193250114419, -1.2273868616089416) +description = Gray CDP, ME +station = ('klew', 0.0029011274466676689) +zone = ('mez019', 0.0023475638131195422) + +[fips2329500] +centroid = (0.79353336993379664, -1.2143626736784916) +description = Greenville CDP, ME +station = ('kgnr', 6.773797287099506e-05) +zone = ('mez010', 0.0024680834415223398) + +[fips2330060] +centroid = (0.78851568796065308, -1.2111718801932883) +description = Guilford CDP, ME +station = ('kgnr', 0.005532948357861959) +zone = ('mez031', 0.0031663015588515122) + +[fips2330550] +centroid = (0.77295817207422601, -1.2185546752891017) +description = Hallowell city, ME +station = ('kaug', 0.00056083356926815773) +zone = ('mez021', 0.0022228224709558882) + +[fips2330760] +centroid = (0.78101887050480678, -1.2014184567343684) +description = Hampden CDP, ME +station = ('kbgr', 0.00092102331758761949) +zone = ('mez015', 0.0032672332348789601) + +[fips2331705] +centroid = (0.78340077369488104, -1.2124656753144991) +description = Hartland CDP, ME +station = ('kwvl', 0.0066968884994987833) +zone = ('mez014', 0.0025297409173533603) + +[fips2333945] +centroid = (0.80497164698612933, -1.1838949496186173) +description = Houlton CDP, ME +station = ('khul', 0.00039831307359050871) +zone = ('mez006', 0.0040238068631517025) + +[fips2334225] +centroid = (0.7900732197851329, -1.198328909799073) +description = Howland CDP, ME +station = ('kmlt', 0.0066882700206625711) +zone = ('mez011', 0.0037596236639230525) + +[fips2336500] +centroid = (0.75719549273422704, -1.2312279473201457) +description = Kennebunk CDP, ME +station = ('ksfm', 0.0022053174037978615) +zone = ('mez023', 0.0011308742009917326) + +[fips2336710] +centroid = (0.75680240968009294, -1.2298398869660345) +description = Kennebunkport CDP, ME +station = ('ksfm', 0.0032666060073319055) +zone = ('mez023', 0.0017908194140607053) + +[fips2337235] +centroid = (0.75206211288496883, -1.2346166087826478) +description = Kittery CDP, ME +station = ('kpsm', 0.0010053593760038636) +zone = ('nhz014', 0.0019442144362578823) + +[fips2337375] +centroid = (0.75212901135519772, -1.2337897590495153) +description = Kittery Point CDP, ME +station = ('kpsm', 0.0016128642649966567) +zone = ('nhz014', 0.0023995284328915908) + +[fips2337795] +centroid = (0.76205108597973792, -1.2346498922114832) +description = Lake Arrowhead CDP, ME +station = ('ksfm', 0.0045878877626843737) +zone = ('mez018', 0.0018665259328422732) + +[fips2338740] +centroid = (0.76950858116753673, -1.2247356715685771) +description = Lewiston city, ME +station = ('klew', 0.0015557132430641062) +zone = ('mez020', 0.0013836155865674454) + +[fips2339265] +centroid = (0.81875498332802654, -1.1838712829539602) +description = Limestone CDP, ME +station = ('kcar', 0.0023490013846802966) +zone = ('mez002', 0.0056398927248890807) + +[fips2339440] +centroid = (0.7917280711687037, -1.1955807318121752) +description = Lincoln CDP, ME +station = ('kmlt', 0.0055703747188109477) +zone = ('mez011', 0.0012572806101099033) + +[fips2340105] +centroid = (0.76809517863268673, -1.2227364143637103) +description = Lisbon Falls CDP, ME +station = ('klew', 0.0029228625854035837) +zone = ('mez025', 0.0025535602596819815) + +[fips2340350] +centroid = (0.76324092929069987, -1.2292577673006169) +description = Little Falls CDP, ME +station = ('kpwm', 0.0021721459112346983) +zone = ('mez019', 0.0030471625218817795) + +[fips2340470] +centroid = (0.76378128322711736, -1.2239417038385525) +description = Littlejohn Island CDP, ME +station = ('kpwm', 0.0029265100536939805) +zone = ('mez024', 0.00080148802766825814) + +[fips2340735] +centroid = (0.77619284313682468, -1.2248861014968064) +description = Livermore Falls CDP, ME +station = ('kaug', 0.005473345012781114) +zone = ('mez013', 0.0032206100690041605) + +[fips2341575] +centroid = (0.7828939998932718, -1.1691888053413129) +description = Lubec CDP, ME +station = ('cwss', 0.0070587432552181454) +zone = ('mez030', 0.0074991615235796456) + +[fips2341925] +centroid = (0.78017290941636508, -1.1777243380481914) +description = Machias CDP, ME +station = ('cwss', 0.0094390382426685973) +zone = ('mez030', 0.00085747632614357181) + +[fips2342485] +centroid = (0.82628162846078945, -1.1926436044804565) +description = Madawaska CDP, ME +station = ('kfve', 0.0011050786478803512) +zone = ('mez002', 0.010839138934255246) + +[fips2342625] +centroid = (0.78204344858889752, -1.2191188704231013) +description = Madison CDP, ME +station = ('kwvl', 0.0052195609246654725) +zone = ('mez014', 0.0023833800575902599) + +[fips2343220] +centroid = (0.81473189468242446, -1.189462881545037) +description = Mapleton CDP, ME +station = ('kpqi', 0.0012126537665215675) +zone = ('mez002', 0.0011310354329554543) + +[fips2343675] +centroid = (0.81191303086082101, -1.1845499716868908) +description = Mars Hill CDP, ME +station = ('kpqi', 0.0035890438877015348) +zone = ('mez002', 0.0055252579825475507) + +[fips2344620] +centroid = (0.76989388005320702, -1.228607963766807) +description = Mechanic Falls CDP, ME +station = ('klew', 0.0017565512119471507) +zone = ('mez020', 0.002552708836757559) + +[fips2345250] +centroid = (0.77763275722301262, -1.2310927541162862) +description = Mexico CDP, ME +station = ('klew', 0.0093648864289318928) +zone = ('mez013', 0.0047526439295161559) + +[fips2345635] +centroid = (0.78465517673487439, -1.1978359240985548) +description = Milford CDP, ME +station = ('kbgr', 0.0035812782652012896) +zone = ('mez015', 0.0026590266198568526) + +[fips2345845] +centroid = (0.79703139372722875, -1.1988495415149429) +description = Millinocket CDP, ME +station = ('kmlt', 0.00031816359541098115) +zone = ('mez005', 0.0048956958432823617) + +[fips2345985] +centroid = (0.78963304774777987, -1.2034168761811945) +description = Milo CDP, ME +station = ('kmlt', 0.0077441980810742756) +zone = ('mez031', 0.0025339682650539577) + +[fips2348050] +centroid = (0.76725698425941646, -1.2322431006262755) +description = Naples CDP, ME +station = ('kizg', 0.0043850236592965766) +zone = ('mez019', 0.0016213160947297011) + +[fips2348610] +centroid = (0.76879311834726671, -1.2135843266452724) +description = Newcastle CDP, ME +station = ('kiwi', 0.0027103066669244931) +zone = ('mez026', 0.00048036351517081056) + +[fips2349100] +centroid = (0.78254346796630136, -1.2087230261731075) +description = Newport CDP, ME +station = ('kbgr', 0.005460542894597068) +zone = ('mez022', 0.005267074587065209) + +[fips2349800] +centroid = (0.78056086120249835, -1.2175928243383276) +description = Norridgewock CDP, ME +station = ('kwvl', 0.0034521730513415744) +zone = ('mez014', 0.0023860590957757413) + +[fips2350290] +centroid = (0.75566239551927528, -1.2344888332281092) +description = North Berwick CDP, ME +station = ('ksfm', 0.0018196164180656774) +zone = ('mez023', 0.0017826268517984161) + +[fips2353685] +centroid = (0.76491401936495429, -1.2292572437018412) +description = North Windham CDP, ME +station = ('kpwm', 0.0034945983052850696) +zone = ('mez019', 0.0015640817231933723) + +[fips2353965] +centroid = (0.77197239265940709, -1.2315643071735898) +description = Norway CDP, ME +station = ('klew', 0.0047182027623009796) +zone = ('mez012', 0.0014573018993467113) + +[fips2354525] +centroid = (0.77757289242966909, -1.2166235731915251) +description = Oakland CDP, ME +station = ('kwvl', 0.00043788162837105684) +zone = ('mez021', 0.0025936075808222921) + +[fips2355120] +centroid = (0.7598342385770247, -1.2279014893921845) +description = Old Orchard Beach CDP, ME +station = ('kpwm', 0.002113415520638917) +zone = ('mez024', 0.0042264647590793611) + +[fips2355225] +centroid = (0.78459829645455181, -1.1997338998469285) +description = Old Town city, ME +station = ('kbgr', 0.0028542501310011301) +zone = ('mez015', 0.0013273930525124088) + +[fips2355575] +centroid = (0.78327348683253295, -1.1988341302576477) +description = Orono CDP, ME +station = ('kbgr', 0.0020967101876983763) +zone = ('mez015', 0.0021769948065385111) + +[fips2356240] +centroid = (0.77047332936486912, -1.2308737502017459) +description = Oxford CDP, ME +station = ('klew', 0.0034397039382936851) +zone = ('mez012', 0.0027644259868626932) + +[fips2358970] +centroid = (0.78126649781907964, -1.2107825845036309) +description = Pittsfield CDP, ME +station = ('kwvl', 0.0055659502515670086) +zone = ('mez014', 0.0038371208997235785) + +[fips2360545] +centroid = (0.76154286355484968, -1.224970575432603) +description = Portland city, ME +station = ('kpwm', 0.0014738562470466073) +zone = ('mez024', 0.0019496775776047983) + +[fips2360825] +centroid = (0.81486776856469223, -1.1867019975611848) +description = Presque Isle city, ME +station = ('kpqi', 0.00068816132846573309) +zone = ('mez002', 0.0027750897772028165) + +[fips2361735] +centroid = (0.77207444206077125, -1.2173908373839943) +description = Randolph CDP, ME +station = ('kaug', 0.0015237923541338504) +zone = ('mez021', 0.003020546188321851) + +[fips2362610] +centroid = (0.76978847961967922, -1.2184444926534235) +description = Richmond CDP, ME +station = ('kiwi', 0.0027027986648271028) +zone = ('mez025', 0.0024391172546888366) + +[fips2363590] +centroid = (0.77010185348687477, -1.2065611915484173) +description = Rockland city, ME +station = ('krkd', 0.0010661012423924653) +zone = ('mez027', 0.00070078066322440966) + +[fips2364255] +centroid = (0.77745445438662886, -1.2315080552117983) +description = Rumford CDP, ME +station = ('klew', 0.0093036995623502535) +zone = ('mez012', 0.0051076223583095904) + +[fips2364675] +centroid = (0.75970574743749286, -1.2290542095499568) +description = Saco city, ME +station = ('kpwm', 0.002612573896514358) +zone = ('mez023', 0.0040895585959137897) + +[fips2365725] +centroid = (0.75818432647523692, -1.2353285285845361) +description = Sanford CDP, ME +station = ('ksfm', 0.0010643124474531236) +zone = ('mez018', 0.0020636620324620443) + +[fips2366110] +centroid = (0.76095407673168936, -1.2275243935539988) +description = Scarborough CDP, ME +station = ('kpwm', 0.00097019872892200535) +zone = ('mez024', 0.0031367611033199932) + +[fips2366600] +centroid = (0.7762343645197296, -1.2028041958005742) +description = Searsport CDP, ME +station = ('kbgr', 0.0058046756945782747) +zone = ('mez028', 0.0027731498598357754) + +[fips2368875] +centroid = (0.78152559194653826, -1.2167070348363556) +description = Skowhegan CDP, ME +station = ('kwvl', 0.004287281041767386) +zone = ('mez014', 0.001235625225888802) + +[fips2370660] +centroid = (0.75284915165786304, -1.2355736600779788) +description = South Eliot CDP, ME +station = ('kpsm', 0.00095151943726945671) +zone = ('nhz014', 0.0023931403508193234) + +[fips2371780] +centroid = (0.77174453992555925, -1.2306937369426953) +description = South Paris CDP, ME +station = ('klew', 0.004109035630588692) +zone = ('mez012', 0.0021209365683643846) + +[fips2371990] +centroid = (0.76151162216123891, -1.2267219260705167) +description = South Portland city, ME +station = ('kpwm', 0.00036970307864660191) +zone = ('mez024', 0.0023487177589834253) + +[fips2372200] +centroid = (0.75730326681553772, -1.234142071212323) +description = South Sanford CDP, ME +station = ('ksfm', 0.00018357744447676597) +zone = ('mez023', 0.00171435681748594) + +[fips2372830] +centroid = (0.77280369298213203, -1.1925586942123472) +description = Southwest Harbor CDP, ME +station = ('kbhb', 0.0030326261106096821) +zone = ('mez029', 0.0028467483579619909) + +[fips2372900] +centroid = (0.76338594869824816, -1.2290940379634874) +description = South Windham CDP, ME +station = ('kpwm', 0.0021835883959468289) +zone = ('mez019', 0.0029529374723953269) + +[fips2373285] +centroid = (0.75865591443912583, -1.235722065424276) +description = Springvale CDP, ME +station = ('ksfm', 0.0015999632655785314) +zone = ('mez018', 0.0016190451538963925) + +[fips2373635] +centroid = (0.76332571738576194, -1.2313734030600068) +description = Standish CDP, ME +station = ('kpwm', 0.0035174037073884609) +zone = ('mez019', 0.0028453559939979074) + +[fips2373985] +centroid = (0.76430095501189865, -1.2324444069022005) +description = Steep Falls CDP, ME +station = ('kizg', 0.0053962979715863578) +zone = ('mez019', 0.0022387630660313839) + +[fips2376330] +centroid = (0.76937371957623524, -1.2074092121253761) +description = Thomaston CDP, ME +station = ('krkd', 0.0010309764627337947) +zone = ('mez027', 0.0011918901954177704) + +[fips2376925] +centroid = (0.76688379795875505, -1.2206553710300947) +description = Topsham CDP, ME +station = ('kiwi', 0.0028269743975014392) +zone = ('mez025', 0.0011121008636232801) + +[fips2378220] +centroid = (0.77868601106671353, -1.2101104407553953) +description = Unity CDP, ME +station = ('kwvl', 0.0045707461913297043) +zone = ('mez022', 0.0024140901739689038) + +[fips2378535] +centroid = (0.8232354355041136, -1.1859526229935484) +description = Van Buren CDP, ME +station = ('cwiy', 0.0016138857692216773) +zone = ('mez002', 0.0083418446018318874) + +[fips2379515] +centroid = (0.76929298064503793, -1.2106036708020089) +description = Waldoboro CDP, ME +station = ('krkd', 0.0032965787645259101) +zone = ('mez026', 0.002265008619207158) + +[fips2380250] +centroid = (0.81661150956706718, -1.1892588525554788) +description = Washburn CDP, ME +station = ('kcar', 0.0020045729128958479) +zone = ('mez002', 0.0014338450061127442) + +[fips2380740] +centroid = (0.77746188948924233, -1.2158207217356078) +description = Waterville city, ME +station = ('kwvl', 0.00034349523395632591) +zone = ('mez021', 0.0027146055534654108) + +[fips2382105] +centroid = (0.76284758443717793, -1.227884751684658) +description = Westbrook city, ME +station = ('kpwm', 0.0012099265507243509) +zone = ('mez024', 0.0021981785422902638) + +[fips2383330] +centroid = (0.75772050522651946, -1.2318707171770702) +description = West Kennebunk CDP, ME +station = ('ksfm', 0.0017380209170822177) +zone = ('mez023', 0.0014229579127047782) + +[fips2385815] +centroid = (0.77829037983187144, -1.2258574121321264) +description = Wilton CDP, ME +station = ('kaug', 0.0072653303314501923) +zone = ('mez013', 0.0013123206133864283) + +[fips2386480] +centroid = (0.77708777816407737, -1.2143508577994557) +description = Winslow CDP, ME +station = ('kwvl', 0.001331151399361664) +zone = ('mez021', 0.0030982326307851934) + +[fips2386620] +centroid = (0.77480048927275369, -1.1884236077886445) +description = Winter Harbor CDP, ME +station = ('kbhb', 0.0035705051033824002) +zone = ('mez029', 0.0038255674269278158) + +[fips2386725] +centroid = (0.7792568035452857, -1.201855591898823) +description = Winterport CDP, ME +station = ('kbgr', 0.0027077507300591408) +zone = ('mez015', 0.0050323265767378052) + +[fips2386935] +centroid = (0.77358692693725695, -1.2208725074423352) +description = Winthrop CDP, ME +station = ('kaug', 0.0018870740123372437) +zone = ('mez021', 0.0027394997214457138) + +[fips2387040] +centroid = (0.76813256358526449, -1.2161110048967994) +description = Wiscasset CDP, ME +station = ('kiwi', 0.00090966848870014175) +zone = ('mez026', 0.0020323981304450674) + +[fips2387250] +centroid = (0.78818116070292332, -1.1765558052073961) +description = Woodland CDP, ME +station = ('cwss', 0.0022254155021006112) +zone = ('mez017', 0.0037894831805178881) + +[fips2387810] +centroid = (0.76452086649764994, -1.2250214517802986) +description = Yarmouth CDP, ME +station = ('kpwm', 0.0030303296031287614) +zone = ('mez024', 0.0010288361153824776) + +[fips2388160] +centroid = (0.75298778316034909, -1.233031291316476) +description = York Harbor CDP, ME +station = ('kpsm', 0.0023940367321604408) +zone = ('mez023', 0.0033845993640646138) + +[fips24001] +centroid = (0.69136521636738257, -1.3736283661526894) +description = Allegany County, MD +station = ('kcbe', 0.00077786290485219441) +zone = ('mdz502', 0.0014610260937195682) + +[fips2400125] +centroid = (0.68968179394395634, -1.3294204328367345) +description = Aberdeen city, MD +station = ('kapg', 0.00085981901082174221) +zone = ('mdz007', 0.0021619201724592243) + +[fips2400175] +centroid = (0.68859728125335218, -1.3288000730074057) +description = Aberdeen Proving Ground CDP, MD +station = ('kapg', 0.00048720356417897742) +zone = ('mdz007', 0.0032611377804569711) + +[fips2400190004] +centroid = (0.6923803347669274, -1.3681267741911378) +description = "District 1, Orleans", MD +station = ('kcbe', 0.0051039585835029469) +zone = ('wvz051', 0.0025980446494049229) + +[fips2400190096] +centroid = (0.69060662646129567, -1.3708588951489171) +description = "District 2, Oldtown", MD +station = ('kcbe', 0.0030212545607745133) +zone = ('mdz502', 0.0012860867163197261) + +[fips2400190188] +centroid = (0.69231423914815438, -1.3707993445148392) +description = "District 3, Flintstone", MD +station = ('kcbe', 0.00308757063569246) +zone = ('mdz502', 0.00098338167012067984) + +[fips2400190281] +centroid = (0.6917526096481551, -1.3745685401141536) +description = "District 4, Cumberland", MD +station = ('kcbe', 0.00033956108817670888) +zone = ('mdz502', 0.0021515406646891071) + +[fips2400190372] +centroid = (0.69268314939214848, -1.3745474041769119) +description = "District 5, Wills Creek", MD +station = ('kcbe', 0.001267948621002902) +zone = ('mdz502', 0.0023569296266941365) + +[fips2400190463] +centroid = (0.69172105409527906, -1.3753449498319035) +description = "District 6, Cumberland", MD +station = ('kcbe', 0.00062508633685522683) +zone = ('mdz501', 0.0017914057150053523) + +[fips2400190555] +centroid = (0.69089998140197084, -1.3762003007917207) +description = "District 7, Cresaptown/Bel Air", MD +station = ('kcbe', 0.0013116241100850029) +zone = ('mdz501', 0.0010839916985359425) + +[fips2400190647] +centroid = (0.68907141739794897, -1.3789914836913875) +description = "District 8, Westernport/Luke", MD +station = ('kcbe', 0.0040965748643638188) +zone = ('wvz504', 0.001935315000863518) + +[fips2400190740] +centroid = (0.69003588634260105, -1.3786544955194124) +description = "District 9, Barton", MD +station = ('kcbe', 0.0033914638103625756) +zone = ('mdz501', 0.0014185871512421347) + +[fips2400190832] +centroid = (0.69047460975667485, -1.3782815361115537) +description = "District 10, Lonaconing", MD +station = ('kcbe', 0.0029633637694418493) +zone = ('mdz501', 0.00089532163592010263) + +[fips2400190926] +centroid = (0.69253319070281705, -1.377723676522739) +description = "District 11, West Frostburg", MD +station = ('kcbe', 0.0026265338681009964) +zone = ('mdz501', 0.0013624372627157469) + +[fips2400191012] +centroid = (0.69209252997327364, -1.377283469578801) +description = "District 12, East Frostburg", MD +station = ('kcbe', 0.0021479755428021417) +zone = ('mdz501', 0.00094048158290441924) + +[fips2400191104] +centroid = (0.69279807932339232, -1.3771164415693848) +description = "District 13, Mount Savage", MD +station = ('kcbe', 0.0023568289521489071) +zone = ('mdz501', 0.0016571646402446984) + +[fips2400191197] +centroid = (0.69210827284312648, -1.3747116396595247) +description = "District 14, Cumberland", MD +station = ('kcbe', 0.000693700514434952) +zone = ('mdz502', 0.0023002608415892889) + +[fips2400191380] +centroid = (0.69124803496140363, -1.3734349487649833) +description = "District 16, North Branch", MD +station = ('kcbe', 0.00094048911034673574) +zone = ('mdz502', 0.0013489365499738) + +[fips2400191595] +centroid = (0.69128988795686641, -1.3778900238537464) +description = "District 18, Midland/Shaft", MD +station = ('kcbe', 0.0025101741230143131) +zone = ('mdz501', 0.00027806164594304782) + +[fips2400191747] +centroid = (0.69304219852586868, -1.3753737128579764) +description = "District 20, Corriganville/Ellerslie", MD +station = ('kcbe', 0.0017215717317407707) +zone = ('mdz501', 0.0025129693528667591) + +[fips2400191840] +centroid = (0.69252811179469387, -1.3728037678942921) +description = "District 21, Gross", MD +station = ('kcbe', 0.0017957043288734003) +zone = ('mdz502', 0.0011589919178662212) + +[fips2400191928] +centroid = (0.69218133232561507, -1.3739958452266967) +description = "District 22, Cumberland", MD +station = ('kcbe', 0.00090944176410788751) +zone = ('mdz502', 0.001780726703591096) + +[fips2400192024] +centroid = (0.69239619980982803, -1.3744521615596308) +description = "District 23, Decatur", MD +station = ('kcbe', 0.00098933348389394467) +zone = ('mdz502', 0.0021807929824752218) + +[fips2400192116] +centroid = (0.69165071732642369, -1.3769086601219349) +description = "District 24, Eckhart", MD +station = ('kcbe', 0.0017661920254863962) +zone = ('mdz501', 0.0006906026049822685) + +[fips2400192300] +centroid = (0.6921463035675276, -1.3778670902273753) +description = "District 26, Frostburg", MD +station = ('kcbe', 0.0025930641373030782) +zone = ('mdz501', 0.00099808346560997644) + +[fips2400192580] +centroid = (0.69198034020895538, -1.3758311112950465) +description = "District 29, La Vale", MD +station = ('kcbe', 0.0010792146825374127) +zone = ('mdz501', 0.0015557326236962932) + +[fips2400192764] +centroid = (0.69003743968563536, -1.3774625403600556) +description = "District 31, McCoole", MD +station = ('kcbe', 0.0025788059273811636) +zone = ('mdz501', 0.0011416218210903066) + +[fips2400192856] +centroid = (0.69295076072635664, -1.3736127280025916) +description = "District 34, Bedford Road", MD +station = ('kcbe', 0.0017241639728201878) +zone = ('mdz502', 0.0019001147733367454) + +[fips2400225] +centroid = (0.69159898576739465, -1.3843938013250858) +description = Accident town, MD +station = ('k2g4', 0.00084212392374891033) +zone = ('mdz001', 0.0018043085680202638) + +[fips2400250] +centroid = (0.67503329789184552, -1.3439125648411592) +description = Accokeek CDP, MD +station = ('kdca', 0.003059880983780054) +zone = ('vaz054', 0.0034332978574134177) + +[fips24003] +centroid = (0.68056276276155148, -1.3362329939593365) +description = Anne Arundel County, MD +station = ('knak', 0.0010615558072812859) +zone = ('mdz014', 0.001142363545687959) + +[fips2400350] +centroid = (0.68601075566177405, -1.3520579466470466) +description = Adamstown CDP, MD +station = ('kfdk', 0.0023209509979471138) +zone = ('mdz004', 0.0030548283197377084) + +[fips2400390008] +centroid = (0.68371294243506098, -1.3381704490553903) +description = District 1, MD +station = ('kbwi', 0.00020333172589564062) +zone = ('mdz011', 0.0028706810780823699) + +[fips2400390100] +centroid = (0.68312893781405115, -1.3376268837131493) +description = District 2, MD +station = ('kbwi', 0.00074035427690072667) +zone = ('mdz011', 0.0033558883628820009) + +[fips2400390192] +centroid = (0.68278568391006145, -1.3346355464548636) +description = District 3, MD +station = ('knak', 0.0024060372385486953) +zone = ('mdz014', 0.003372934641651398) + +[fips2400390284] +centroid = (0.68185853010481701, -1.338833499638223) +description = District 4, MD +station = ('kfme', 0.00082159357794047956) +zone = ('mdz014', 0.0034031189577388198) + +[fips2400390376] +centroid = (0.68122244485892769, -1.3347672315469266) +description = District 5, MD +station = ('knak', 0.00084000924305631863) +zone = ('mdz014', 0.0018502459719673104) + +[fips2400390468] +centroid = (0.68017849362013971, -1.3355913585664256) +description = District 6, MD +station = ('knak', 0.00058683893116398599) +zone = ('mdz014', 0.00067193893865688189) + +[fips2400390560] +centroid = (0.67798773888974395, -1.3365370128617411) +description = District 7, MD +station = ('knak', 0.0027219902163660376) +zone = ('mdz014', 0.0016656633948564136) + +[fips2400400] +centroid = (0.68061896236346564, -1.3433117701527451) +description = Adelphi CDP, MD +station = ('kcgs', 0.00068913765035037852) +zone = ('dcz001', 0.0016597227075141089) + +[fips24005] +centroid = (0.68841313156397432, -1.3372113906314194) +description = Baltimore County, MD +station = ('kdmh', 0.0027896240501532584) +zone = ('mdz006', 0.0018963153374902423) + +[fips2400590012] +centroid = (0.68554056396128693, -1.3394095281045511) +description = District 1, MD +station = ('kdmh', 0.0017021722666911349) +zone = ('mdz011', 0.0020162975125195826) + +[fips2400590104] +centroid = (0.68708449967089347, -1.3407010368444419) +description = District 2, MD +station = ('kdmh', 0.0030682957991818873) +zone = ('mdz010', 0.002552104076478471) + +[fips2400590196] +centroid = (0.68759273954907429, -1.3389509428435897) +description = District 3, MD +station = ('kdmh', 0.0023841871957580281) +zone = ('mdz011', 0.0018319593021971197) + +[fips2400590288] +centroid = (0.6890006966566582, -1.3405711494415085) +description = District 4, MD +station = ('kdmw', 0.0035658602657162846) +zone = ('mdz006', 0.0022392694995081943) + +[fips2400590380] +centroid = (0.69096164388444381, -1.3399508070654722) +description = District 5, MD +station = ('kdmw', 0.0032007999471296866) +zone = ('mdz006', 0.0016242804417387947) + +[fips2400590472] +centroid = (0.69255778239197774, -1.3393046163632139) +description = District 6, MD +station = ('kdmw', 0.0038768433037938265) +zone = ('mdz006', 0.002551414384491993) + +[fips2400590564] +centroid = (0.69203514354746798, -1.3376783534727905) +description = District 7, MD +station = ('kdmw', 0.0049797983076671588) +zone = ('mdz006', 0.0018839041591706377) + +[fips2400590656] +centroid = (0.68919648769214692, -1.3379956892373881) +description = District 8, MD +station = ('kdmh', 0.0036238157237175363) +zone = ('mdz006', 0.00098702264106833031) + +[fips2400590748] +centroid = (0.68769004165487291, -1.3367033252861638) +description = District 9, MD +station = ('kdmh', 0.0021038031309317342) +zone = ('mdz011', 0.0012668338357199145) + +[fips2400590840] +centroid = (0.69015645368732881, -1.3366144531206523) +description = District 10, MD +station = ('kmtn', 0.0042879266266707874) +zone = ('mdz006', 0.0011487303562407059) + +[fips2400590932] +centroid = (0.68832783732342928, -1.3342988549888612) +description = District 11, MD +station = ('kmtn', 0.0018850659757195028) +zone = ('mdz011', 0.0028540922586067926) + +[fips2400591020] +centroid = (0.68518024073721262, -1.335344883169459) +description = District 12, MD +station = ('kdmh', 0.0015127062852705365) +zone = ('mdz011', 0.0018597146726617535) + +[fips2400591112] +centroid = (0.68487644872761044, -1.3382687459988625) +description = District 13, MD +station = ('kdmh', 0.0011073195965504243) +zone = ('mdz011', 0.0018267426854492726) + +[fips2400591204] +centroid = (0.68691211350067416, -1.3351984674985093) +description = District 14, MD +station = ('kmtn', 0.0012148942518788847) +zone = ('mdz011', 0.0015312289615571711) + +[fips2400591296] +centroid = (0.68546216377128721, -1.333553302692287) +description = District 15, MD +station = ('kmtn', 0.0010422583247679145) +zone = ('mdz011', 0.0029124307110313398) + +[fips2400712] +centroid = (0.67351999271061136, -1.3280482200722314) +description = Algonquin CDP, MD +station = ('kcge', 0.0012094568846003279) +zone = ('mdz021', 0.0022325062742589549) + +[fips2400800] +centroid = (0.66821895653340657, -1.3210415608835151) +description = Allen CDP, MD +station = ('ksby', 0.0027307802378869908) +zone = ('mdz022', 0.0018099606926761267) + +[fips24009] +centroid = (0.67232452943945786, -1.335628289733398) +description = Calvert County, MD +station = ('k2w6', 0.0035298232004166911) +zone = ('mdz018', 0.00079348349679311619) + +[fips2400990016] +centroid = (0.67023355518239847, -1.3341462957589445) +description = "District 1, Solomons Island", MD +station = ('knhk', 0.0018589706178635292) +zone = ('mdz017', 0.0028455529002585681) + +[fips2400990108] +centroid = (0.67279348195617616, -1.3369289963584468) +description = "District 2, Prince Frederick", MD +station = ('k2w6', 0.0040424443570506044) +zone = ('mdz018', 0.00042366758347126731) + +[fips2400990200] +centroid = (0.67437864234271494, -1.3357517368713916) +description = "District 3, Sunderland", MD +station = ('kadw', 0.0053147810984745031) +zone = ('mdz018', 0.0016111157133443191) + +[fips24011] +centroid = (0.67843620124104387, -1.3235116381074001) +description = Caroline County, MD +station = ('kesn', 0.0034305835283061411) +zone = ('mdz020', 3.0949966488667537e-06) + +[fips2401190020] +centroid = (0.68219756031201695, -1.3230747647423335) +description = "District 1, Henderson", MD +station = ('kdov', 0.0046739431193153986) +zone = ('dez002', 0.0032215018593955945) + +[fips2401190112] +centroid = (0.68042170525140522, -1.3230094370684313) +description = "District 2, Greensboro", MD +station = ('kesn', 0.0048271251099372041) +zone = ('mdz020', 0.0020208621195324508) + +[fips2401190204] +centroid = (0.67827741118569751, -1.3225548486114567) +description = "District 3, Denton", MD +station = ('kesn', 0.0040887629165424141) +zone = ('mdz020', 0.00076323204947210889) + +[fips2401190296] +centroid = (0.67615071003884997, -1.3252686785186754) +description = "District 4, Preston", MD +station = ('kesn', 0.0021020147819152501) +zone = ('mdz020', 0.0026662945344531389) + +[fips2401190388] +centroid = (0.67556248172105027, -1.3223692153922149) +description = "District 5, Federalsburg", MD +station = ('kesn', 0.0044010510596246459) +zone = ('mdz020', 0.0030116155217769906) + +[fips2401190480] +centroid = (0.67873557756763847, -1.3247685020616389) +description = "District 6, Hillsboro", MD +station = ('kesn', 0.0027030854874808348) +zone = ('mdz020', 0.0010214391779938374) + +[fips2401190572] +centroid = (0.67998174265356248, -1.3243155018542838) +description = "District 7, Ridgely", MD +station = ('kesn', 0.0037945862149823314) +zone = ('mdz020', 0.001664217526312209) + +[fips2401190664] +centroid = (0.67692519989442235, -1.3233216241117356) +description = "District 8, American Corner", MD +station = ('kesn', 0.0033556821916066772) +zone = ('mdz020', 0.0015212619328862493) + +[fips24013] +centroid = (0.6905079106388029, -1.3441742595092032) +description = Carroll County, MD +station = ('kdmw', 0.00082036310260594084) +zone = ('mdz005', 9.6728065296715978e-05) + +[fips2401390024] +centroid = (0.69234898865356165, -1.3470018848836516) +description = "District 1, Taneytown", MD +station = ('kdmw', 0.0024735155375729596) +zone = ('mdz005', 0.002779975661609002) + +[fips2401390116] +centroid = (0.6913852702004879, -1.3456268446857604) +description = "District 2, Uniontown", MD +station = ('kdmw', 0.0011946847345689715) +zone = ('mdz005', 0.0013485158172383944) + +[fips2401390208] +centroid = (0.6925542044670111, -1.3445289104132083) +description = "District 3, Myers", MD +station = ('kdmw', 0.0012773682088870156) +zone = ('mdz005', 0.0020554429258766199) + +[fips2401390300] +centroid = (0.68941276889305403, -1.3425852768516024) +description = "District 4, Woolerys", MD +station = ('kdmw', 0.0022318141097509956) +zone = ('mdz005', 0.001715926469332774) + +[fips2401390392] +centroid = (0.68757673487983351, -1.3426710074244605) +description = "District 5, Freedom", MD +station = ('kdmw', 0.0039022491924686521) +zone = ('mdz010', 0.0025177125845647574) + +[fips2401390484] +centroid = (0.69242346185274417, -1.3420387968095104) +description = "District 6, Manchester", MD +station = ('kdmw', 0.0019164431838942866) +zone = ('mdz005', 0.0025900777379198772) + +[fips2401390576] +centroid = (0.69078941479385703, -1.3439883644905732) +description = "District 7, Westminster", MD +station = ('kdmw', 0.00053994363649561314) +zone = ('mdz005', 0.00037110753025704896) + +[fips2401390668] +centroid = (0.6911461600929647, -1.3417444819377466) +description = "District 8, Hampstead", MD +station = ('kdmw', 0.0018067881028845296) +zone = ('mdz005', 0.0020706897043422847) + +[fips2401390760] +centroid = (0.6887282158538367, -1.3451806687157808) +description = "District 9, Franklin", MD +station = ('kdmw', 0.0027323939868313845) +zone = ('mdz005', 0.0019036037913995698) + +[fips2401390852] +centroid = (0.69165621511356756, -1.3480872876921743) +description = "District 10, Middleburg", MD +station = ('kdmw', 0.0031060142150660134) +zone = ('mdz005', 0.0031368865689584838) + +[fips2401390940] +centroid = (0.69001654809448887, -1.3456468461589883) +description = "District 11, New Windsor", MD +station = ('kdmw', 0.0017816057229178759) +zone = ('mdz005', 0.0011484366312704854) + +[fips2401391032] +centroid = (0.6906624769973595, -1.346898142512913) +description = "District 12, Union Bridge", MD +station = ('kdmw', 0.0022719156314469791) +zone = ('mdz005', 0.0020091354259346907) + +[fips2401391124] +centroid = (0.68748520981385886, -1.3460632817185141) +description = "District 13, Mount Airy", MD +station = ('kgai', 0.0038902592773507987) +zone = ('mdz005', 0.0033136667579562375) + +[fips2401391216] +centroid = (0.68787563996753009, -1.3442041569992897) +description = "District 14, Berrett", MD +station = ('kdmw', 0.0034506484408531393) +zone = ('mdz005', 0.0026317507987495899) + +[fips2401450] +centroid = (0.67735884440037286, -1.3416199003357394) +description = Andrews AFB CDP, MD +station = ('kadw', 0.00028675958004927709) +zone = ('mdz013', 0.00051142364266060876) + +[fips24015] +centroid = (0.69049330223296368, -1.3254306799798456) +description = Cecil County, MD +station = ('kapg', 0.003460313096389867) +zone = ('mdz008', 0.00022315418806879308) + +[fips2401590028] +centroid = (0.68804186512549004, -1.3247505775302209) +description = "District 1, Cecilton", MD +station = ('kapg', 0.0036436831511836164) +zone = ('mdz008', 0.002713576352065259) + +[fips2401590120] +centroid = (0.68944598250871936, -1.3233459190949233) +description = "District 2, Chesapeake City", MD +station = ('kilg', 0.0041416170946614065) +zone = ('mdz008', 0.0020130804746692388) + +[fips2401590212] +centroid = (0.69175767110298592, -1.323853687734206) +description = "District 3, Elkton", MD +station = ('kilg', 0.0034215691208372822) +zone = ('mdz008', 0.0015706125248635301) + +[fips2401590304] +centroid = (0.69279373345355477, -1.3237940847402503) +description = "District 4, Fair Hill", MD +station = ('kilg', 0.0033631280094210303) +zone = ('mdz008', 0.002411403946635297) + +[fips2401590396] +centroid = (0.69015037994153183, -1.325890609144331) +description = "District 5, North East", MD +station = ('kapg', 0.0029871817857137091) +zone = ('mdz008', 0.00068827065370259764) + +[fips2401590488] +centroid = (0.69251221184520817, -1.3277830521989757) +description = "District 6, Rising Sun", MD +station = ('kapg', 0.003883827214006169) +zone = ('mdz007', 0.0013153523249075673) + +[fips2401590580] +centroid = (0.6912023247882938, -1.3279180883232027) +description = "District 7, Port Deposit", MD +station = ('kapg', 0.002625835431811825) +zone = ('mdz007', 0.0012088271708671037) + +[fips2401590672] +centroid = (0.69277998025904908, -1.3293487870709402) +description = "District 8, Oakwood", MD +station = ('kapg', 0.0039567101435065057) +zone = ('mdz007', 0.00094317018312218789) + +[fips2401590764] +centroid = (0.69258481754209111, -1.3260279840097555) +description = "District 9, Calvert", MD +station = ('kapg', 0.0045543232985012297) +zone = ('mdz008', 0.0019388523564069272) + +[fips2401600] +centroid = (0.68019462046242829, -1.3352885090346196) +description = Annapolis city, MD +station = ('knak', 0.00036759451108096569) +zone = ('mdz014', 0.00074565814082130021) + +[fips2401635] +centroid = (0.67957120630690837, -1.335143437267194) +description = Annapolis Neck CDP, MD +station = ('knak', 0.00084050178251546704) +zone = ('mdz014', 0.00041087758550004447) + +[fips24017] +centroid = (0.67147795748577799, -1.3441727759793389) +description = Charles County, MD +station = ('knyg', 0.0039165038851426276) +zone = ('mdz016', 0.0014830464774616353) + +[fips2401750] +centroid = (0.68792295584355156, -1.3567575947238917) +description = Antietam CDP, MD +station = ('kmrb', 0.0033392244028980301) +zone = ('wvz053', 0.0025346586460553802) + +[fips2401790032] +centroid = (0.67210219194604637, -1.3437817698670147) +description = "District 1, La Plata", MD +station = ('knyg', 0.0041954574352456196) +zone = ('mdz016', 0.0020369018383953642) + +[fips2401790124] +centroid = (0.67132286752844572, -1.3456902175909002) +description = "District 2, Hill Top", MD +station = ('knyg', 0.0027723919838836524) +zone = ('mdz016', 0.002079157804197782) + +[fips2401790216] +centroid = (0.67073034570068613, -1.3480613520994897) +description = "District 3, Nanjemoy", MD +station = ('knyg', 0.0014847585824260437) +zone = ('vaz057', 0.0029579940235610848) + +[fips2401790308] +centroid = (0.67100766106553555, -1.3422691279108963) +description = "District 4, Allens Fresh", MD +station = ('knyg', 0.0054610586437446205) +zone = ('mdz016', 0.001383635624139829) + +[fips2401790400] +centroid = (0.66836511040496849, -1.3424156657548936) +description = "District 5, Thompkinsville", MD +station = ('k2w6', 0.0050152670012640734) +zone = ('mdz016', 0.0019322304719919278) + +[fips2401790492] +centroid = (0.67382708339249975, -1.3432716101266566) +description = "District 6, Waldorf", MD +station = ('kdaa', 0.0035475963692081888) +zone = ('mdz016', 0.0037623033095887113) + +[fips2401790584] +centroid = (0.673932832891878, -1.346061396762922) +description = "District 7, Pomonkey", MD +station = ('kdaa', 0.0019757368724357622) +zone = ('vaz054', 0.0042752569844609206) + +[fips2401790676] +centroid = (0.67301847235005074, -1.3412201501238625) +description = "District 8, Bryantown", MD +station = ('kadw', 0.0044604575741680908) +zone = ('mdz016', 0.0034736250685249285) + +[fips2401790768] +centroid = (0.6728903826362469, -1.3394668621704791) +description = "District 9, Hughesville", MD +station = ('kadw', 0.0048028580912752765) +zone = ('mdz018', 0.0024053365060594891) + +[fips2401790860] +centroid = (0.67246778606446156, -1.3466880572308506) +description = "District 10, Marbury", MD +station = ('knyg', 0.0019863332885718555) +zone = ('mdz016', 0.0034205349823502257) + +[fips24019] +centroid = (0.67071599909423474, -1.327278093539789) +description = Dorchester County, MD +station = ('kcge', 0.0019485053821378796) +zone = ('mdz021', 0.0010361543627538541) + +[fips2401925] +centroid = (0.67351437275041992, -1.3385015729210785) +description = Aquasco CDP, MD +station = ('kadw', 0.0045205674477129896) +zone = ('mdz018', 0.0017794833868963313) + +[fips2401975] +centroid = (0.6849138511334808, -1.3385302312273963) +description = Arbutus CDP, MD +station = ('kdmh', 0.0012424116295363318) +zone = ('mdz011', 0.0019053359262233879) + +[fips2401990036] +centroid = (0.67356469059275492, -1.3223244127903162) +description = "District 1, Fork", MD +station = ('kcge', 0.003748657134020404) +zone = ('mdz021', 0.0038714933823781727) + +[fips2401990128] +centroid = (0.6735759305131378, -1.3251483206134578) +description = "District 2, East New Market", MD +station = ('kcge', 0.0017014223516341408) +zone = ('mdz021', 0.0022742023661198596) + +[fips2401990220] +centroid = (0.67217448348366382, -1.3238879834540076) +description = "District 3, Vienna", MD +station = ('kcge', 0.002460489447608447) +zone = ('mdz021', 0.0021910139008026676) + +[fips2401990312] +centroid = (0.67144797272922863, -1.3319656290316251) +description = "District 4, Taylors Island", MD +station = ('knhk', 0.0032002696147699137) +zone = ('mdz021', 0.0042113293830153328) + +[fips2401990404] +centroid = (0.66948617029010959, -1.328634563434439) +description = "District 5, Lakes", MD +station = ('kcge', 0.00342063514336653) +zone = ('mdz021', 0.0026530508508992843) + +[fips2401990496] +centroid = (0.66872578269489313, -1.3304322700172857) +description = "District 6, Hoopers Island", MD +station = ('knhk', 0.002368352816178706) +zone = ('mdz021', 0.0041635267827053448) + +[fips2401990588] +centroid = (0.67297742220604384, -1.3286556121052178) +description = "District 7, Cambridge", MD +station = ('kcge', 0.001355440384712034) +zone = ('mdz021', 0.0021229485285513701) + +[fips2401990680] +centroid = (0.67350126532773746, -1.3310480919905592) +description = "District 8, Neck", MD +station = ('kcge', 0.003297498866548973) +zone = ('mdz021', 0.0039715287490030239) + +[fips2401990772] +centroid = (0.67146230188238754, -1.3286140209091428) +description = "District 9, Church Creek", MD +station = ('kcge', 0.0017486558556179619) +zone = ('mdz021', 0.0015907096284490201) + +[fips2401990864] +centroid = (0.66555647421278175, -1.3280454449987207) +description = "District 10, Straits", MD +station = ('knhk', 0.0051326758307900502) +zone = ('mdz023', 0.0047643045388385792) + +[fips2401990952] +centroid = (0.66997577005187892, -1.3249843469302329) +description = "District 11, Drawbridge", MD +station = ('kcge', 0.0030947700621843659) +zone = ('mdz021', 0.0020549670548142217) + +[fips2401991044] +centroid = (0.67493306363290351, -1.3235565454290539) +description = "District 12, Williamsburg", MD +station = ('kcge', 0.0035134455548770944) +zone = ('mdz020', 0.0035062527766604331) + +[fips2401991136] +centroid = (0.67071599909423474, -1.327278093539789) +description = "District 13, Bucktown", MD +station = ('kcge', 0.0019485053821378796) +zone = ('mdz021', 0.0010361543627538541) + +[fips2401991228] +centroid = (0.67274923785963814, -1.3259776661674205) +description = "District 14, Linkwood", MD +station = ('kcge', 0.00078545008302098303) +zone = ('mdz021', 0.0012441962096114421) + +[fips2401991320] +centroid = (0.67438134760305557, -1.3244167134976068) +description = "District 15, Hurlock", MD +station = ('kcge', 0.00264439876151433) +zone = ('mdz021', 0.0032585681888052951) + +[fips2401991412] +centroid = (0.67169617600215492, -1.3306273280144885) +description = "District 16, Madison", MD +station = ('kcge', 0.0030136432150679252) +zone = ('mdz021', 0.0031619523766839115) + +[fips2401991504] +centroid = (0.67159712856710418, -1.3256673466264159) +description = "District 17, Salem", MD +station = ('kcge', 0.0014674681197523937) +zone = ('mdz021', 0.00072217743349783242) + +[fips2401991596] +centroid = (0.66807299464806225, -1.3259830068749316) +description = "District 18, Elliott", MD +station = ('kcge', 0.0046422848870254349) +zone = ('mdz021', 0.0035598859367762508) + +[fips2402025] +centroid = (0.68186017071431382, -1.3368609110643264) +description = Arden on the Severn CDP, MD +station = ('kbwi', 0.0020894751510284935) +zone = ('mdz014', 0.0025279978532891409) + +[fips24021] +centroid = (0.68888890831806793, -1.3508434243804612) +description = Frederick County, MD +station = ('kfdk', 0.00097516465148572349) +zone = ('mdz004', 3.1594067326015303e-05) + +[fips2402190040] +centroid = (0.68590360989899424, -1.352286357886255) +description = "District 1, Buckeystown", MD +station = ('kfdk', 0.0025081109078891996) +zone = ('mdz004', 0.0032136065881256328) + +[fips2402190132] +centroid = (0.68800427073340209, -1.3510745234267176) +description = "District 2, Frederick", MD +station = ('kfdk', 0.00049265910769205102) +zone = ('mdz004', 0.00093161376843690674) + +[fips2402190224] +centroid = (0.68855281026401127, -1.3536586230106356) +description = "District 3, Middletown", MD +station = ('kfdk', 0.0025553197089758502) +zone = ('mdz004', 0.002197962880604973) + +[fips2402190316] +centroid = (0.69096023016774977, -1.3500702609751203) +description = "District 4, Creagerstown", MD +station = ('krsp', 0.0018947205126398773) +zone = ('mdz004', 0.0021275293186776307) + +[fips2402190408] +centroid = (0.69241597439025315, -1.3494237910201816) +description = "District 5, Emmitsburg", MD +station = ('kryt', 0.0018270994036286667) +zone = ('mdz004', 0.0036652807480294786) + +[fips2402190500] +centroid = (0.69061280492684773, -1.3534334406305433) +description = "District 6, Catoctin", MD +station = ('krsp', 0.0017417626755401583) +zone = ('mdz004', 0.0026138822848324299) + +[fips2402190592] +centroid = (0.68604648255156253, -1.3503158113475833) +description = "District 7, Urbana", MD +station = ('kfdk', 0.0019210306492281413) +zone = ('mdz004', 0.0029030625749240082) + +[fips2402190684] +centroid = (0.68877500813108272, -1.3480972360689107) +description = "District 8, Liberty", MD +station = ('kfdk', 0.0019814178077085898) +zone = ('mdz004', 0.0021313004426002434) + +[fips2402190776] +centroid = (0.68728913952568993, -1.3489095297560814) +description = "District 9, New Market", MD +station = ('kfdk', 0.0013614538494968284) +zone = ('mdz004', 0.0022158233231347477) + +[fips2402190868] +centroid = (0.69223826496581509, -1.3522482573486838) +description = "District 10, Hauvers", MD +station = ('krsp', 0.00024128218860683108) +zone = ('mdz004', 0.0034886817704279246) + +[fips2402190956] +centroid = (0.69019979021265576, -1.3492854387703761) +description = "District 11, Woodsboro", MD +station = ('kfdk', 0.0024054211641840548) +zone = ('mdz004', 0.0017602440479051987) + +[fips2402191048] +centroid = (0.68662727576674865, -1.3547821089034366) +description = "District 12, Petersville", MD +station = ('kfdk', 0.0036139721631421738) +zone = ('wvz053', 0.0032852667677915233) + +[fips2402191140] +centroid = (0.68834991573846704, -1.3494859072882599) +description = "District 13, Mount Pleasant", MD +station = ('kfdk', 0.00083053859779286439) +zone = ('mdz004', 0.0011986938346369843) + +[fips2402191232] +centroid = (0.6867137219245999, -1.3533630340485179) +description = "District 14, Jefferson", MD +station = ('kfdk', 0.0025835570240761848) +zone = ('mdz004', 0.0029380258060413391) + +[fips2402191324] +centroid = (0.69161265169543773, -1.3512228065999672) +description = "District 15, Thurmont", MD +station = ('krsp', 0.00079473875905827502) +zone = ('mdz004', 0.0027079616465844536) + +[fips2402191416] +centroid = (0.6895432671612256, -1.3536914701071581) +description = "District 16, Jackson", MD +station = ('krsp', 0.0027643285448704573) +zone = ('mdz004', 0.0022785087740236605) + +[fips2402191508] +centroid = (0.69007355054785902, -1.3477542265110163) +description = "District 17, Johnsville", MD +station = ('kfdk', 0.0029562008322192666) +zone = ('mdz005', 0.0026985745173067105) + +[fips2402191600] +centroid = (0.68776521298575644, -1.3472109927813332) +description = "District 18, Woodville", MD +station = ('kfdk', 0.0025018257431982959) +zone = ('mdz005', 0.0035443587748725104) + +[fips2402191692] +centroid = (0.68909803366904177, -1.3466074579259932) +description = "District 19, Linganore", MD +station = ('kdmw', 0.0029602799259310416) +zone = ('mdz005', 0.0022698529856027289) + +[fips2402191784] +centroid = (0.68992004884014613, -1.3514577279172857) +description = "District 20, Lewistown", MD +station = ('kfdk', 0.002107180919650677) +zone = ('mdz004', 0.0011041172842385677) + +[fips2402191876] +centroid = (0.6890227227118183, -1.3519527731063214) +description = "District 21, Tuscarora", MD +station = ('kfdk', 0.0015764533943781358) +zone = ('mdz004', 0.00085613703414017406) + +[fips2402191968] +centroid = (0.68758174397478677, -1.3545459134957645) +description = "District 22, Burkittsville", MD +station = ('kfdk', 0.0031964757749998198) +zone = ('mdz004', 0.0031514582559660385) + +[fips2402192060] +centroid = (0.68727287305706131, -1.3523007743058766) +description = "District 23, Ballenger", MD +station = ('kfdk', 0.0015967288291944962) +zone = ('mdz004', 0.0019913598086275255) + +[fips2402192152] +centroid = (0.68799805736126496, -1.3524488305863231) +description = "District 24, Braddock", MD +station = ('kfdk', 0.0015531461267267023) +zone = ('mdz004', 0.0015397685381121256) + +[fips2402192244] +centroid = (0.68616368141083395, -1.3547352119064358) +description = "District 25, Brunswick", MD +station = ('kfdk', 0.003778663082093469) +zone = ('vaz042', 0.0039075928396679399) + +[fips2402192336] +centroid = (0.68917458381003438, -1.349937092353193) +description = "District 26, Walkersville", MD +station = ('kfdk', 0.0012699584031267554) +zone = ('mdz004', 0.00075047962295699358) + +[fips2402275] +centroid = (0.68142680546104362, -1.3351223187832448) +description = Arnold CDP, MD +station = ('knak', 0.0010553830858145497) +zone = ('mdz014', 0.0019637042613727001) + +[fips24023] +centroid = (0.68992640183862342, -1.3835123053330736) +description = Garrett County, MD +station = ('k2g4', 0.001291377513267753) +zone = ('mdz001', 6.430946189701064e-05) + +[fips2402390044] +centroid = (0.68894435742840376, -1.3826247006886792) +description = "District 1, Swanton", MD +station = ('k2g4', 0.0024740716830426081) +zone = ('mdz001', 0.0012152226724749988) + +[fips2402390136] +centroid = (0.69240225610233241, -1.3857577412289341) +description = "District 2, Friendsville", MD +station = ('k2g4', 0.0017811206741878399) +zone = ('mdz001', 0.0030047511367018976) + +[fips2402390228] +centroid = (0.69252425461704681, -1.3814058674588414) +description = "District 3, Grantsville", MD +station = ('k2g4', 0.0030950558475730172) +zone = ('mdz001', 0.0031141473730061714) + +[fips2402390320] +centroid = (0.6897734062763935, -1.3806487785359114) +description = "District 4, Bloomington", MD +station = ('k2g4', 0.003320935433634333) +zone = ('wvz503', 0.0023482925880753112) + +[fips2402390412] +centroid = (0.69193845230690754, -1.38443261744765) +description = "District 5, Accident", MD +station = ('k2g4', 0.0011621969918463022) +zone = ('mdz001', 0.0021352335389272204) + +[fips2402390504] +centroid = (0.69013807537030525, -1.3854473867813444) +description = "District 6, Sang Run", MD +station = ('k2g4', 0.00085659826787265112) +zone = ('mdz001', 0.0014510097439591238) + +[fips2402390596] +centroid = (0.68788679262145025, -1.3854664457767762) +description = "District 7, East Oakland", MD +station = ('k2g4', 0.0029673304556074873) +zone = ('mdz001', 0.0024833343517183023) + +[fips2402390688] +centroid = (0.68567985868888859, -1.3859110334971367) +description = "District 8, Red House", MD +station = ('k2g4', 0.0052001441447694779) +zone = ('wvz501', 0.0020107874565696445) + +[fips2402390780] +centroid = (0.69265066881476889, -1.3787312900065003) +description = "District 9, Finzel", MD +station = ('kcbe', 0.0033859980050142289) +zone = ('mdz501', 0.0017279535041669237) + +[fips2402390872] +centroid = (0.68796494846535461, -1.3839795997870024) +description = "District 10, Deer Park", MD +station = ('k2g4', 0.0028970866634977191) +zone = ('mdz001', 0.0019623842042134124) + +[fips2402390960] +centroid = (0.69064320856241745, -1.3798288403066168) +description = "District 11, The Elbow", MD +station = ('kcbe', 0.0040757861027518518) +zone = ('mdz501', 0.0018277212485642998) + +[fips2402391052] +centroid = (0.69096206276346439, -1.3826976205448276) +description = "District 12, Bittinger", MD +station = ('k2g4', 0.0015854586722186682) +zone = ('mdz001', 0.0012621314007589739) + +[fips2402391144] +centroid = (0.68783109916501917, -1.3827273784085738) +description = "District 13, Kitzmiller", MD +station = ('k2g4', 0.0033532769311343542) +zone = ('wvz503', 0.0015193558658590978) + +[fips2402391236] +centroid = (0.68856972250446324, -1.3862664523460129) +description = "District 14, West Oakland", MD +station = ('k2g4', 0.0025217115262447199) +zone = ('mdz001', 0.0024587342335296502) + +[fips2402391328] +centroid = (0.69151599536146224, -1.3797597427215305) +description = "District 15, Avilton", MD +station = ('kcbe', 0.003948222984629453) +zone = ('mdz501', 0.0017279725991357663) + +[fips2402391420] +centroid = (0.6872829261535528, -1.3850397127746639) +description = "District 16, Mountain Lake Park", MD +station = ('k2g4', 0.0035257760881448772) +zone = ('mdz001', 0.0028501246040892646) + +[fips24025] +centroid = (0.69005831382348914, -1.3316825366269518) +description = Harford County, MD +station = ('kapg', 0.0021769912305045183) +zone = ('mdz007', 0.0025852538537743473) + +[fips2402590048] +centroid = (0.68771346397343469, -1.3315632608258705) +description = "District 1, Abingdon", MD +station = ('kapg', 0.0020321758130840916) +zone = ('mdz011', 0.0044528920705326509) + +[fips2402590140] +centroid = (0.68880150222912795, -1.3294069239883239) +description = "District 2, Halls Cross Roads", MD +station = ('kapg', 4.2854573808300435e-05) +zone = ('mdz007', 0.0030406495266456879) + +[fips2402590232] +centroid = (0.69034172038742792, -1.3323705454180879) +description = "District 3, Bel Air", MD +station = ('kapg', 0.0027755431982871776) +zone = ('mdz007', 0.0028320515371155017) + +[fips2402590324] +centroid = (0.6916293544963793, -1.3350594345702953) +description = "District 4, Marshall", MD +station = ('kapg', 0.0052148514772326991) +zone = ('mdz006', 0.0027577742372009773) + +[fips2402590416] +centroid = (0.69228401004550988, -1.3316907571277286) +description = "District 5, Dublin", MD +station = ('kapg', 0.0038996765516129384) +zone = ('mdz007', 0.0019298941629372201) + +[fips2402590508] +centroid = (0.68984583744035133, -1.328394825008385) +description = "District 6, Havre de Grace", MD +station = ('kapg', 0.0012646462356069468) +zone = ('mdz007', 0.0021004173417991843) + +[fips24027] +centroid = (0.68508124566203943, -1.3425841598408812) +description = Howard County, MD +station = ('kfme', 0.0036399074572535154) +zone = ('mdz010', 9.8383465344606947e-05) + +[fips2402762] +centroid = (0.68329198647277245, -1.3438963856389929) +description = Ashton-Sandy Spring CDP, MD +station = ('kgai', 0.0023330871004725545) +zone = ('mdz010', 0.0019927707074365313) + +[fips2402790052] +centroid = (0.68431344041750219, -1.3395657001660197) +description = "District 1, Elkridge", MD +station = ('kbwi', 0.0011733139248602214) +zone = ('mdz010', 0.00254573741193728) + +[fips2402790144] +centroid = (0.68542666377430173, -1.3410023155799211) +description = "District 2, Ellicott City", MD +station = ('kbwi', 0.0027424809030166543) +zone = ('mdz010', 0.0013708059600983939) + +[fips2402790236] +centroid = (0.68595706933398271, -1.3427526888334538) +description = "District 3, West Friendship", MD +station = ('kgai', 0.0039390802290493942) +zone = ('mdz010', 0.00089855158223378878) + +[fips2402790328] +centroid = (0.68605229449797156, -1.3452284209241152) +description = "District 4, Lisbon", MD +station = ('kgai', 0.002722221133830814) +zone = ('mdz010', 0.0021892123498732244) + +[fips2402790420] +centroid = (0.68413248468065535, -1.3428714061291744) +description = "District 5, Clarksville", MD +station = ('kfme', 0.0030917656889312842) +zone = ('mdz010', 0.00093530865849543714) + +[fips2402790512] +centroid = (0.68350256044702551, -1.341034063119015) +description = "District 6, Savage", MD +station = ('kfme', 0.0016574350939479023) +zone = ('mdz010', 0.0020261951372626736) + +[fips2402825] +centroid = (0.68231264732289343, -1.3453344322228813) +description = Aspen Hill CDP, MD +station = ('kgai', 0.0017878168518211334) +zone = ('mdz009', 0.0018135686694553065) + +[fips24029] +centroid = (0.68485283442283096, -1.3286179304466674) +description = Kent County, MD +station = ('kapg', 0.0040115947403264489) +zone = ('mdz012', 0.0012312004042355879) + +[fips2402990056] +centroid = (0.68592601992658975, -1.3237013553970918) +description = "District 1, Massey", MD +station = ('kapg', 0.0052456507720758131) +zone = ('mdz012', 0.0027236659636596474) + +[fips2402990148] +centroid = (0.68599239479804308, -1.3261569114816003) +description = "District 2, Kennedyville", MD +station = ('kapg', 0.0037602284210987002) +zone = ('mdz012', 0.0010898036900132051) + +[fips2402990240] +centroid = (0.68624291935887449, -1.3283404929087705) +description = "District 3, Worton (Betterton)", MD +station = ('kapg', 0.0026977658987053631) +zone = ('mdz012', 0.001448428089530868) + +[fips2402990332] +centroid = (0.6846538668881037, -1.3276968678405126) +description = "District 4, Chestertown", MD +station = ('kapg', 0.0043630665920070619) +zone = ('mdz012', 0.00070288292273836559) + +[fips2402990424] +centroid = (0.68220606006547413, -1.3304882776329821) +description = "District 5, Edesville", MD +station = ('kw29', 0.0023044095999242764) +zone = ('mdz015', 0.0028844419852193885) + +[fips2402990516] +centroid = (0.68466226192180568, -1.3301273784502547) +description = "District 6, Fairlee", MD +station = ('kmtn', 0.003332715387224358) +zone = ('mdz012', 0.0024127477712219706) + +[fips2402990608] +centroid = (0.68341552087722857, -1.3286429759214335) +description = "District 7, Pomona", MD +station = ('kw29', 0.0041464875287119344) +zone = ('mdz015', 0.0020813155423617907) + +[fips24031] +centroid = (0.68307617651076347, -1.3474476419746111) +description = Montgomery County, MD +station = ('kgai', 0.00072410880976634556) +zone = ('mdz009', 2.3530806713413572e-05) + +[fips2403190060] +centroid = (0.68451179708699128, -1.3461979862301829) +description = District 1, MD +station = ('kgai', 0.001011060028389008) +zone = ('mdz009', 0.0017553852149904206) + +[fips2403190152] +centroid = (0.68471507558497113, -1.3487286787389898) +description = District 2, MD +station = ('kgai', 0.001793709167840144) +zone = ('mdz009', 0.0019252413188629227) + +[fips2403190244] +centroid = (0.68283279034657285, -1.3515783999817688) +description = District 3, MD +station = ('kjyo', 0.0018561409692078527) +zone = ('vaz042', 0.0027147614870161869) + +[fips2403190336] +centroid = (0.68199428181403721, -1.3465104525261675) +description = District 4, MD +station = ('kgai', 0.001674656309367848) +zone = ('mdz009', 0.0012959539366522873) + +[fips2403190428] +centroid = (0.68221581645599283, -1.3434484468864689) +description = District 5, MD +station = ('kcgs', 0.0020231836359827552) +zone = ('mdz010', 0.0029007419382398973) + +[fips2403190520] +centroid = (0.68243068394020578, -1.3488929142216024) +description = District 6, MD +station = ('kgai', 0.0019840175520956533) +zone = ('mdz009', 0.0012722703229615091) + +[fips2403190612] +centroid = (0.68041954104313274, -1.3459260813860148) +description = District 7, MD +station = ('kdca', 0.0026119184688631748) +zone = ('dcz001', 0.0019087901935079426) + +[fips2403190704] +centroid = (0.68348514206109068, -1.3449708452331059) +description = District 8, MD +station = ('kgai', 0.0014816164645452487) +zone = ('mdz010', 0.0023563114287421705) + +[fips2403190796] +centroid = (0.68333150072703763, -1.3475613327220859) +description = District 9, MD +station = ('kgai', 0.00062083099388083739) +zone = ('mdz009', 0.00028405405993977564) + +[fips2403190888] +centroid = (0.68089399134699491, -1.3473680375074277) +description = District 10, MD +station = ('kgai', 0.0027784335986042069) +zone = ('mdz009', 0.0021646300265551368) + +[fips2403190976] +centroid = (0.68441100432268864, -1.3503584497412096) +description = District 11, MD +station = ('kgai', 0.0028095198933214311) +zone = ('mdz009', 0.0026194018299893736) + +[fips2403191068] +centroid = (0.68566322570111704, -1.3474890237311756) +description = District 12, MD +station = ('kgai', 0.0020738493143665068) +zone = ('mdz009', 0.0026059960942816569) + +[fips2403191160] +centroid = (0.68146794287151324, -1.3447831176187615) +description = District 13, MD +station = ('kcgs', 0.0021032113560571645) +zone = ('dcz001', 0.002421752882764062) + +[fips24033] +centroid = (0.67763944098421591, -1.3412379175756479) +description = Prince George's County, MD +station = ('kadw', 0.00016502624117899355) +zone = ('mdz013', 0.00010696365520603492) + +[fips2403390064] +centroid = (0.6814758841196098, -1.342210275408519) +description = "District 1, Vansville", MD +station = ('kcgs', 0.0011695330400272195) +zone = ('dcz001', 0.0028213782255609473) + +[fips2403390156] +centroid = (0.67958504676787657, -1.3424461217503409) +description = "District 2, Bladensburg", MD +station = ('kcgs', 0.00074581246271892881) +zone = ('dcz001', 0.0014192292751050112) + +[fips2403390248] +centroid = (0.67785851471192626, -1.3392951392253754) +description = "District 3, Marlboro", MD +station = ('kadw', 0.0015964420095207037) +zone = ('mdz013', 0.0014687020203660295) + +[fips2403390340] +centroid = (0.67563143967979655, -1.3391901053109903) +description = "District 4, Nottingham", MD +station = ('kadw', 0.0024661072631566045) +zone = ('mdz013', 0.0026101620166401368) + +[fips2403390432] +centroid = (0.67547971820792063, -1.3439023721183274) +description = "District 5, Piscataway", MD +station = ('kdca', 0.0026204041561525655) +zone = ('vaz054', 0.003030643028658647) + +[fips2403390524] +centroid = (0.67789474774719771, -1.3422506972339951) +description = "District 6, Spauldings", MD +station = ('kadw', 0.00085935156851987891) +zone = ('mdz013', 0.00085407768787940509) + +[fips2403390616] +centroid = (0.67933471419326308, -1.3394902844890408) +description = "District 7, Queen Anne", MD +station = ('kadw', 0.0023235035340733283) +zone = ('mdz013', 0.0020687944611695506) + +[fips2403390708] +centroid = (0.67396136902514814, -1.339387170436833) +description = "District 8, Aquasco", MD +station = ('kadw', 0.0038164317802351047) +zone = ('mdz018', 0.0025932157550560548) + +[fips2403390800] +centroid = (0.67666608831367125, -1.342025759199998) +description = "District 9, Surratts", MD +station = ('kadw', 0.00099654357873385935) +zone = ('mdz013', 0.0012575076928917268) + +[fips2403390892] +centroid = (0.682061476990239, -1.3414898383998808) +description = "District 10, Laurel", MD +station = ('kfme', 0.0012895845086356554) +zone = ('mdz010', 0.0031429676735255088) + +[fips2403390980] +centroid = (0.67550924917886435, -1.3411071575080886) +description = "District 11, Brandywine", MD +station = ('kadw', 0.001974294378904055) +zone = ('mdz013', 0.0022253958758220844) + +[fips2403391072] +centroid = (0.67705503493747821, -1.3437253084657126) +description = "District 12, Oxon Hill", MD +station = ('kdca', 0.0011667849887531669) +zone = ('vaz054', 0.0018708729103766386) + +[fips2403391164] +centroid = (0.67911792684687289, -1.341132150622977) +description = "District 13, Kent", MD +station = ('kcgs', 0.001615960878777173) +zone = ('mdz013', 0.0013842693974895394) + +[fips2403391256] +centroid = (0.68076452282308186, -1.3402294488805531) +description = "District 14, Bowie", MD +station = ('kfme', 0.0014028684304789045) +zone = ('mdz013', 0.003118288764367475) + +[fips2403391348] +centroid = (0.67727929229306694, -1.3402603237550206) +description = "District 15, Mellwood", MD +station = ('kadw', 0.00082335596755794219) +zone = ('mdz013', 0.00084461646387538371) + +[fips2403391440] +centroid = (0.67989749561056878, -1.343009863098735) +description = "District 16, Hyattsville", MD +station = ('kcgs', 0.00058240542268904244) +zone = ('dcz001', 0.0012006292317888873) + +[fips2403391532] +centroid = (0.68017453172273779, -1.3434312728466291) +description = "District 17, Chillum", MD +station = ('kcgs', 0.00073483270505233036) +zone = ('dcz001', 0.0012183370459072508) + +[fips2403391624] +centroid = (0.67873678184482245, -1.3421840082032763) +description = "District 18, Seat Pleasant", MD +station = ('kadw', 0.0014396199580329094) +zone = ('mdz013', 0.0012744593044270063) + +[fips2403391716] +centroid = (0.68010967528773358, -1.3426332035928623) +description = "District 19, Riverdale", MD +station = ('kcgs', 0.00024050050867477062) +zone = ('dcz001', 0.0015607825008721904) + +[fips2403391808] +centroid = (0.67995449806393882, -1.3413599859035323) +description = "District 20, Lanham", MD +station = ('kcgs', 0.00096754808393628765) +zone = ('mdz013', 0.0022251821224065988) + +[fips2403391900] +centroid = (0.68066139131758163, -1.3422675571145695) +description = "District 21, Berwyn", MD +station = ('kcgs', 0.00038074756949536495) +zone = ('dcz001', 0.0021480978308399947) + +[fips24035] +centroid = (0.68138863511030257, -1.3278884700857962) +description = Queen Anne's County, MD +station = ('kesn', 0.0042063178450406019) +zone = ('mdz015', 0.00099758917747043842) + +[fips2403500] +centroid = (0.67491608157928162, -1.3394500371964899) +description = Baden CDP, MD +station = ('kadw', 0.0029353351554063591) +zone = ('mdz013', 0.0031222019011108511) + +[fips2403514] +centroid = (0.69085336365765015, -1.3546178385142391) +description = Bagtown CDP, MD +station = ('krsp', 0.0022606337084401717) +zone = ('mdz004', 0.0034895464578893615) + +[fips2403575] +centroid = (0.68966386941253843, -1.3571165042312718) +description = Bakersville CDP, MD +station = ('khgr', 0.0032475371842903889) +zone = ('mdz003', 0.0017312695270913366) + +[fips2403590068] +centroid = (0.68372009828499414, -1.3237109372546854) +description = "District 1, Dixon", MD +station = ('kdov', 0.0051439278576911295) +zone = ('mdz012', 0.0029877129674338171) + +[fips2403590160] +centroid = (0.68314208014331868, -1.3260675331706056) +description = "District 2, Church Hill", MD +station = ('kesn', 0.0060744737845748629) +zone = ('mdz015', 0.0013554088704714501) + +[fips2403590252] +centroid = (0.68156369163427755, -1.3276325175509913) +description = "District 3, Centreville", MD +station = ('kesn', 0.0043759661287720306) +zone = ('mdz015', 0.00073808535585943098) + +[fips2403590344] +centroid = (0.67946041280599179, -1.3321250823120876) +description = "District 4, Kent Island", MD +station = ('kw29', 0.00087142451103483921) +zone = ('mdz014', 0.0027545620071443102) + +[fips2403590436] +centroid = (0.67982766498719638, -1.3293344230111961) +description = "District 5, Queenstown", MD +station = ('kw29', 0.0022912821766159228) +zone = ('mdz015', 0.0028693446238005171) + +[fips2403590528] +centroid = (0.68095523495044741, -1.3256608365483058) +description = "District 6, Ruthsburg", MD +station = ('kesn', 0.0040624401140346321) +zone = ('mdz015', 0.001296795622380833) + +[fips2403590620] +centroid = (0.68442774203021528, -1.3252385366824935) +description = "District 7, Crumpton", MD +station = ('kapg', 0.0054292217801470465) +zone = ('mdz012', 0.0016096892855911762) + +[fips24037] +centroid = (0.66711137059009085, -1.3357750195636131) +description = St. Mary's County, MD +station = ('k2w6', 0.0017124158072008217) +zone = ('mdz017', 0.0017517316613102477) + +[fips2403790072] +centroid = (0.66434729265370751, -1.3323975631149088) +description = "District 1, St. Inigoes", MD +station = ('knui', 0.0018232520116891315) +zone = ('vaz077', 0.0033053192311616303) + +[fips2403790164] +centroid = (0.66614904840041889, -1.3358101006815781) +description = "District 2, Valley Lee", MD +station = ('knui', 0.0016697998087330697) +zone = ('mdz017', 0.0025870178178282978) + +[fips2403790256] +centroid = (0.6678498193966097, -1.3379179871790894) +description = "District 3, Leonardtown", MD +station = ('k2w6', 0.0017529362351967285) +zone = ('mdz017', 0.00096335509042906446) + +[fips2403790348] +centroid = (0.66967812160124385, -1.3400833822754536) +description = "District 4, Chaptico", MD +station = ('k2w6', 0.0032806027395078049) +zone = ('mdz016', 0.0027615266304529579) + +[fips2403790440] +centroid = (0.67128487171062989, -1.3392136847091847) +description = "District 5, Mechanicsville", MD +station = ('k2w6', 0.0035035252352424982) +zone = ('mdz018', 0.0027050836724249665) + +[fips2403790532] +centroid = (0.66971911938537321, -1.3368400892863499) +description = "District 6, Patuxent", MD +station = ('k2w6', 0.0011002730257628061) +zone = ('mdz017', 0.0011907050471661588) + +[fips2403790624] +centroid = (0.66752593864731724, -1.3401132448589552) +description = "District 7, Milestown", MD +station = ('k2w6', 0.0034386465821453125) +zone = ('vaz075', 0.0020728219957685924) + +[fips2403790716] +centroid = (0.66797918320076755, -1.3338656817218089) +description = "District 8, Bay", MD +station = ('knhk', 0.00059022548747703345) +zone = ('mdz017', 0.0025722233236525559) + +[fips2403790808] +centroid = (0.66509556766391498, -1.3345962416401085) +description = "District 9, St. George Island", MD +station = ('knui', 0.0010155199581828344) +zone = ('vaz077', 0.0039019600142157452) + +[fips2403800] +centroid = (0.68732446498975031, -1.3512460194790188) +description = Ballenger Creek CDP, MD +station = ('kfdk', 0.00089418588741455767) +zone = ('mdz004', 0.0016242063598472186) + +[fips24039] +centroid = (0.66452451338595497, -1.3238902349287427) +description = Somerset County, MD +station = ('kwal', 0.0058602374580435804) +zone = ('mdz023', 0.0016783691016688184) + +[fips2403990076] +centroid = (0.6670383809207725, -1.3216275726331648) +description = "District 1, West Princess Anne", MD +station = ('ksby', 0.0036620818264212758) +zone = ('mdz023', 0.0017640065956100917) + +[fips2403990168] +centroid = (0.66637213638540882, -1.3232152113872413) +description = "District 2, St. Peters", MD +station = ('ksby', 0.0050723196076168419) +zone = ('mdz023', 0.0014383914209911237) + +[fips2403990260] +centroid = (0.6636319170999001, -1.3212924345101968) +description = "District 3, Brinkleys", MD +station = ('kwal', 0.0036290562656184663) +zone = ('mdz023', 0.0017567470429981319) + +[fips2403990352] +centroid = (0.66532036607157197, -1.3194549693269897) +description = "District 4, Dublin", MD +station = ('kwal', 0.0037336246541856666) +zone = ('mdz023', 0.0020007050156728981) + +[fips2403990444] +centroid = (0.66740612179416769, -1.3227031317847062) +description = "District 5, Mount Vernon", MD +station = ('ksby', 0.0042374285678521461) +zone = ('mdz023', 0.002179246663747021) + +[fips2403990536] +centroid = (0.66476929581354727, -1.3238713504662363) +description = "District 6, Fairmount", MD +station = ('kwal', 0.0059535415138628773) +zone = ('mdz023', 0.0015663434128356359) + +[fips2403990628] +centroid = (0.66312919246215563, -1.3244295242143163) +description = "District 7, Crisfield", MD +station = ('kmfv', 0.0062273219523893697) +zone = ('mdz023', 0.002893463756216266) + +[fips2403990720] +centroid = (0.66335428757578541, -1.32311546582049) +description = "District 8, Lawsons", MD +station = ('kwal', 0.0048834145580704648) +zone = ('mdz023', 0.0021341139595382956) + +[fips2403990812] +centroid = (0.66620482912331247, -1.3252454656396238) +description = "District 9, Tangier", MD +station = ('kcge', 0.0065860304159630423) +zone = ('mdz023', 0.0027100789159242222) + +[fips2403990904] +centroid = (0.6629843999474101, -1.3273031739211401) +description = "District 10, Smith Island", MD +station = ('knui', 0.005806246333409296) +zone = ('mdz023', 0.0047757560775920247) + +[fips2403990992] +centroid = (0.66624313910039379, -1.324530788217517) +description = "District 11, Dames Quarter", MD +station = ('kcge', 0.0066870442637305769) +zone = ('mdz023', 0.002204576519000898) + +[fips2403991084] +centroid = (0.66207740469502629, -1.324113270553855) +description = "District 12, Asbury", MD +station = ('kmfv', 0.0051470160942126263) +zone = ('mdz023', 0.0036266443499529386) + +[fips2403991176] +centroid = (0.66534788991387583, -1.3214870387217943) +description = "District 13, Westover", MD +station = ('ksby', 0.0047321595299487937) +zone = ('mdz023', 0.00040491597596773788) + +[fips2403991268] +centroid = (0.66561920134609842, -1.3257185720399618) +description = "District 14, Deal Island", MD +station = ('knhk', 0.0066930423515628411) +zone = ('mdz023', 0.0029443179488367432) + +[fips2403991360] +centroid = (0.66689168599714244, -1.3200915258117771) +description = "District 15, East Princess Anne", MD +station = ('ksby', 0.00284317025857031) +zone = ('mdz023', 0.0021873788349578926) + +[fips2404000] +centroid = (0.68591813103837074, -1.3371057458517963) +description = Baltimore city, MD +station = ('kdmh', 0.00030611320678227192) +zone = ('mdz011', 0.00054094914602949708) + +[fips2404050] +centroid = (0.68479619848860374, -1.3375749950744873) +description = Baltimore Highlands CDP, MD +station = ('kdmh', 0.00087347618811567092) +zone = ('mdz011', 0.0017046313846074458) + +[fips24041] +centroid = (0.67630508441118875, -1.3295766398047879) +description = Talbot County, MD +station = ('kesn', 0.00176658569211511) +zone = ('mdz019', 0.0012501271401710113) + +[fips2404190080] +centroid = (0.67705301035554588, -1.3282774865227733) +description = "District 1, Easton", MD +station = ('kesn', 0.00053453670925485456) +zone = ('mdz019', 0.00035929534586906189) + +[fips2404190172] +centroid = (0.67580682781632939, -1.3304645237018624) +description = "District 2, St. Michaels", MD +station = ('kesn', 0.0026169304725164526) +zone = ('mdz019', 0.0020842933085769614) + +[fips2404190264] +centroid = (0.67468533159887545, -1.3275565782752372) +description = "District 3, Trappe", MD +station = ('kcge', 0.0020857691451883404) +zone = ('mdz019', 0.0020857053374945759) + +[fips2404190356] +centroid = (0.67826179048889224, -1.3266555869554799) +description = "District 4, Chapel", MD +station = ('kesn', 0.0013079493794263483) +zone = ('mdz019', 0.0018851752269318533) + +[fips2404190448] +centroid = (0.67495732370950623, -1.332369271327734) +description = "District 5, Bay Hundred", MD +station = ('kesn', 0.0043283727131703227) +zone = ('mdz018', 0.0037857167846729487) + +[fips2404250] +centroid = (0.6831855562949859, -1.3240745067911683) +description = Barclay town, MD +station = ('kesn', 0.0065988697235272661) +zone = ('mdz015', 0.0024652669790213343) + +[fips24043] +centroid = (0.69121358216196915, -1.3581222153061485) +description = Washington County, MD +station = ('khgr', 0.0020060492212198339) +zone = ('mdz003', 6.4820051193691221e-06) + +[fips2404390084] +centroid = (0.6885615718168564, -1.3568806927960348) +description = "District 1, Sharpsburg", MD +station = ('kmrb', 0.003356306301950092) +zone = ('mdz003', 0.0028187552562835799) + +[fips2404390176] +centroid = (0.69115429332727896, -1.3579364250072736) +description = "District 2, Williamsport", MD +station = ('khgr', 0.001983687420367755) +zone = ('mdz003', 0.00014966356305561436) + +[fips2404390268] +centroid = (0.69170742307382094, -1.3568819843396813) +description = "District 3, Hagerstown", MD +station = ('khgr', 0.0011962858163486185) +zone = ('mdz003', 0.0010691999934950346) + +[fips2404390360] +centroid = (0.69240976101811602, -1.3599824744893867) +description = "District 4, Clear Spring", MD +station = ('khgr', 0.0025703928129600494) +zone = ('mdz003', 0.0018702882701157188) + +[fips2404390452] +centroid = (0.69265539865704173, -1.3655380145781173) +description = "District 5, Hancock", MD +station = ('kmrb', 0.0060703969208604405) +zone = ('wvz051', 0.0022098045456540355) + +[fips2404390544] +centroid = (0.68974123985827929, -1.3553996063927924) +description = "District 6, Boonsboro", MD +station = ('khgr', 0.003310345848098595) +zone = ('mdz003', 0.0025594865522029779) + +[fips2404390636] +centroid = (0.69205497048777065, -1.353564776656756) +description = "District 7, Smithsburg", MD +station = ('krsp', 0.0011231936285297521) +zone = ('mdz004', 0.0037687978192849445) + +[fips2404390728] +centroid = (0.68808979186674979, -1.3555169274251113) +description = "District 8, Rohrersville", MD +station = ('kmrb', 0.0043086566987707653) +zone = ('wvz053', 0.0033567141894055739) + +[fips2404390820] +centroid = (0.69288065085030415, -1.3550511165010468) +description = "District 9, Leitersburg", MD +station = ('khgr', 0.0012707518377823943) +zone = ('mdz003', 0.00288717692702812) + +[fips2404390912] +centroid = (0.69102416157825031, -1.3563869915105231) +description = "District 10, Funkstown", MD +station = ('khgr', 0.0018872637132320885) +zone = ('mdz003', 0.0013443217148017752) + +[fips2404391000] +centroid = (0.68681030844540525, -1.3562882931413227) +description = "District 11, Sandy Hook", MD +station = ('kmrb', 0.0037895489254047951) +zone = ('wvz053', 0.0022046637058840543) + +[fips2404391092] +centroid = (0.68999433005311106, -1.3569683257777776) +description = "District 12, Fairplay", MD +station = ('khgr', 0.0029085944515700891) +zone = ('mdz003', 0.0015066174694931427) + +[fips2404391184] +centroid = (0.69273453188532719, -1.3574355678718288) +description = "District 13, Maugansville", MD +station = ('khgr', 0.00058655905398307122) +zone = ('mdz003', 0.0016068530545300702) + +[fips2404391276] +centroid = (0.69298894853039039, -1.3533521082874003) +description = "District 14, Ringgold", MD +station = ('krsp', 0.0013608546814044037) +zone = ('mdz004', 0.0045022843349728529) + +[fips2404391368] +centroid = (0.69246906730609892, -1.3613900650778274) +description = "District 15, Indian Spring", MD +station = ('khgr', 0.0036323103588401834) +zone = ('mdz003', 0.0028173305291611375) + +[fips2404391460] +centroid = (0.690696126945338, -1.355026350278961) +description = "District 16, Beaver Creek", MD +station = ('khgr', 0.0025504048756743512) +zone = ('mdz003', 0.0024353623724094817) + +[fips2404391552] +centroid = (0.69154388572290915, -1.3562128774643443) +description = "District 17, Hagerstown", MD +station = ('khgr', 0.0014034143420999191) +zone = ('mdz003', 0.0015010405570728546) + +[fips2404391644] +centroid = (0.6918493532485932, -1.355188386646716) +description = "District 18, Chewsville", MD +station = ('khgr', 0.0015663216187995139) +zone = ('mdz003', 0.0023410998663435049) + +[fips2404391736] +centroid = (0.68914074187583818, -1.3561260124274725) +description = "District 19, Keedysville", MD +station = ('khgr', 0.0037811676571314727) +zone = ('mdz003', 0.0025792375015795213) + +[fips2404391828] +centroid = (0.69003585143601598, -1.3582625572313012) +description = "District 20, Downsville", MD +station = ('khgr', 0.0031020586746632554) +zone = ('mdz003', 0.001184657713443964) + +[fips2404391920] +centroid = (0.69221227701325294, -1.3563293607386224) +description = "District 21, Hagerstown", MD +station = ('khgr', 0.00074135050341518833) +zone = ('mdz003', 0.0016981557164113478) + +[fips2404392012] +centroid = (0.6919109808244811, -1.3561734853831269) +description = "District 22, Hagerstown", MD +station = ('khgr', 0.0010656299101700171) +zone = ('mdz003', 0.0016487888344632194) + +[fips2404392104] +centroid = (0.69232717203791172, -1.35877133816155) +description = "District 23, Wilsons", MD +station = ('khgr', 0.0016905284083532479) +zone = ('mdz003', 0.0012219999168624365) + +[fips2404392196] +centroid = (0.69192169714608842, -1.3574496003190148) +description = "District 24, Cedar Lawn", MD +station = ('khgr', 0.00113106029501458) +zone = ('mdz003', 0.00087256042530674607) + +[fips2404392288] +centroid = (0.69202182668527523, -1.3565789602749501) +description = "District 25, Hagerstown", MD +station = ('khgr', 0.00087905295293708022) +zone = ('mdz003', 0.001431391033761631) + +[fips2404392380] +centroid = (0.69142799586057679, -1.3573637301198169) +description = "District 26, Halfway", MD +station = ('khgr', 0.0015534648953917621) +zone = ('mdz003', 0.00061601623028085281) + +[fips2404392472] +centroid = (0.69283705252558925, -1.3562711540080683) +description = "District 27, Fountain Head", MD +station = ('khgr', 0.00033710944783434425) +zone = ('mdz003', 0.0021551028612347301) + +[fips2404475] +centroid = (0.68458661935202425, -1.350467654992507) +description = Barnesville town, MD +station = ('kgai', 0.0029422371174639391) +zone = ('mdz009', 0.0027845377297019626) + +[fips24045] +centroid = (0.66963726344345476, -1.3200310152466104) +description = Wicomico County, MD +station = ('ksby', 0.0019046768919616988) +zone = ('mdz022', 0.00020813525827529002) + +[fips2404525] +centroid = (0.69294201662680421, -1.3760604126521734) +description = Barrelville CDP, MD +station = ('kcbe', 0.001878384481596833) +zone = ('mdz501', 0.0021096658345644849) + +[fips2404590088] +centroid = (0.67115889384522087, -1.3223716588531675) +description = "District 1, Barren Creek", MD +station = ('kcge', 0.0038982384390521163) +zone = ('mdz022', 0.0024564853537484689) + +[fips2404590180] +centroid = (0.66962555228417375, -1.3222003373337918) +description = "District 2, Quantico", MD +station = ('ksby', 0.0035588471367866163) +zone = ('mdz022', 0.001881335836471707) + +[fips2404590364] +centroid = (0.6701915974671806, -1.3164176426429139) +description = "District 4, Pittsburg", MD +station = ('ksby', 0.0015388298924161618) +zone = ('mdz024', 0.0032785370374566157) + +[fips2404590456] +centroid = (0.67010394703214549, -1.3179305638517129) +description = "District 5, Parsons", MD +station = ('ksby', 0.0010734063278966986) +zone = ('mdz022', 0.0015125303061930384) + +[fips2404590548] +centroid = (0.66882085077924924, -1.3159841377633035) +description = "District 6, Dennis", MD +station = ('ksby', 0.0013825147367587012) +zone = ('mdz024', 0.0018718554423702827) + +[fips2404590640] +centroid = (0.66847414112334058, -1.3214235610968992) +description = "District 7, Trappe", MD +station = ('ksby', 0.0029581586996294458) +zone = ('mdz022', 0.0017976290650158417) + +[fips2404590732] +centroid = (0.66870688077909402, -1.3182839406653641) +description = "District 8, Nutters", MD +station = ('ksby', 0.00055331033343516902) +zone = ('mdz022', 0.0015834475360002281) + +[fips2404590824] +centroid = (0.66979662945745422, -1.3199028382663438) +description = "District 9, Salisbury", MD +station = ('ksby', 0.0018677744932772153) +zone = ('mdz022', 9.0632037612084707e-05) + +[fips2404590916] +centroid = (0.67232589079627436, -1.3215877791262192) +description = "District 10, Sharptown", MD +station = ('kcge', 0.0042258067071668298) +zone = ('mdz022', 0.0029319533762670541) + +[fips2404591004] +centroid = (0.67082703694124668, -1.3194852507895118) +description = "District 11, Delmar", MD +station = ('ksby', 0.0022561265550163317) +zone = ('mdz022', 0.0011084569386700413) + +[fips2404591188] +centroid = (0.66931888048130594, -1.3194563655903915) +description = "District 13, Camden", MD +station = ('ksby', 0.0013868136179039983) +zone = ('mdz022', 0.00050862189167092905) + +[fips2404591280] +centroid = (0.67006813287589462, -1.3152086181634726) +description = "District 14, Willards", MD +station = ('ksby', 0.0022225763744989141) +zone = ('mdz024', 0.0031271168292697983) + +[fips2404591372] +centroid = (0.67057338824105439, -1.3207619940439306) +description = "District 15, Hebron", MD +station = ('ksby', 0.0028312636339098973) +zone = ('mdz022', 0.0011152879961732027) + +[fips2404591464] +centroid = (0.66862279081573295, -1.3199419161882961) +description = "District 16, Fruitland", MD +station = ('ksby', 0.0017903646222527587) +zone = ('mdz022', 0.0011296790505503926) + +[fips2404591555] +centroid = (0.66844003738975666, -1.3238243487494799) +description = "District 17, Westside", MD +station = ('kcge', 0.0048797277306268788) +zone = ('mdz023', 0.0034537669519872048) + +[fips2404625] +centroid = (0.68997125680039961, -1.3791074957267675) +description = Barton town, MD +station = ('kcbe', 0.0037376930808197843) +zone = ('mdz501', 0.001695589266747697) + +[fips2404650] +centroid = (0.68743578208944245, -1.3499364814879549) +description = Bartonsville CDP, MD +station = ('kfdk', 0.00065643206558007119) +zone = ('mdz004', 0.0016438304668798624) + +[fips24047] +centroid = (0.66710206798517779, -1.3144062728530383) +description = Worcester County, MD +station = ('koxb', 0.0031201783094730734) +zone = ('mdz024', 0.0010155317840820264) + +[fips2404790092] +centroid = (0.66441968891108016, -1.3155561306708372) +description = "District 1, Southern", MD +station = ('kwal', 0.0026687163583192799) +zone = ('mdz024', 0.0025459966791416071) + +[fips2404790184] +centroid = (0.66690411274141659, -1.314475387891417) +description = "District 2, Central", MD +station = ('koxb', 0.0032740506744300653) +zone = ('mdz024', 0.0009536799469852525) + +[fips2404790276] +centroid = (0.66654734998901644, -1.3117563743563201) +description = "District 3, Sinepuxent", MD +station = ('koxb', 0.0022766174096457608) +zone = ('mdz025', 0.0010587976120548558) + +[fips2404790368] +centroid = (0.66760365815890843, -1.3160817365750752) +description = "District 4, Western", MD +station = ('ksby', 0.0019318154455322102) +zone = ('mdz024', 0.00071127113843909133) + +[fips2404790460] +centroid = (0.6698333162783312, -1.3117143293746396) +description = "District 5, Ocean Pines", MD +station = ('koxb', 0.001206089005532837) +zone = ('mdz025', 0.002228133337550473) + +[fips2404790551] +centroid = (0.67043025378909826, -1.3114493534876019) +description = "District 6, Northern", MD +station = ('koxb', 0.0017096943277786036) +zone = ('mdz025', 0.002836678372090346) + +[fips2404790644] +centroid = (0.66995906725093735, -1.3101049438180832) +description = "District 7, Ocean City", MD +station = ('koxb', 0.0014095762530489857) +zone = ('mdz025', 0.0026975775036663001) + +[fips2405250] +centroid = (0.69077623755800455, -1.35520718384276) +description = Beaver Creek CDP, MD +station = ('khgr', 0.0024121214837154654) +zone = ('mdz003', 0.0022825818903182372) + +[fips2405525] +centroid = (0.69082416429926419, -1.3762833086509456) +description = Bel Air CDP, MD +station = ('kcbe', 0.0014010325211381888) +zone = ('mdz501', 0.0010453676817767953) + +[fips2405550] +centroid = (0.69001502965803962, -1.3324940623692516) +description = Bel Air town, MD +station = ('kapg', 0.0026966107933024015) +zone = ('mdz007', 0.0030942346285272974) + +[fips2405825] +centroid = (0.69033713017149523, -1.3329592973346631) +description = Bel Air North CDP, MD +station = ('kapg', 0.0031633434208008624) +zone = ('mdz007', 0.0032281255145774753) + +[fips2405950] +centroid = (0.68951370128369682, -1.3320579394957632) +description = Bel Air South CDP, MD +station = ('kapg', 0.002194333274442844) +zone = ('mdz007', 0.0031765324450166686) + +[fips2406400] +centroid = (0.68137486446250439, -1.3425149924426247) +description = Beltsville CDP, MD +station = ('kcgs', 0.0010455392966845472) +zone = ('dcz001', 0.0026130811831875647) + +[fips2406550] +centroid = (0.67215298102727938, -1.3383127108427204) +description = Benedict CDP, MD +station = ('k2w6', 0.0037840154823465468) +zone = ('mdz018', 0.0016553641898723525) + +[fips2406615] +centroid = (0.67393358338345632, -1.3439757457600812) +description = Bensville CDP, MD +station = ('kdaa', 0.0030335602576462219) +zone = ('mdz016', 0.0038745630940303808) + +[fips2406800] +centroid = (0.66899255627106047, -1.3127656808094561) +description = Berlin town, MD +station = ('koxb', 0.0013803270168698044) +zone = ('mdz025', 0.0015855971292512711) + +[fips2406925] +centroid = (0.68055368704944108, -1.342392959021325) +description = Berwyn Heights town, MD +station = ('kcgs', 0.00024129677627584116) +zone = ('dcz001', 0.0020028712464597582) + +[fips2407125] +centroid = (0.68045640239693483, -1.345973449621914) +description = Bethesda CDP, MD +station = ('kdca', 0.0026610796471732488) +zone = ('dcz001', 0.0019608801651124371) + +[fips2407200] +centroid = (0.68708526761576438, -1.3277169391269104) +description = Betterton town, MD +station = ('kapg', 0.0021517824919392754) +zone = ('mdz012', 0.0019764004210155689) + +[fips2407285] +centroid = (0.69041734550391687, -1.3765116849835688) +description = Bier CDP, MD +station = ('kcbe', 0.0017576121366566129) +zone = ('mdz501', 0.0011089649724910148) + +[fips2407375] +centroid = (0.69158778075359684, -1.3616386697764815) +description = Big Pool CDP, MD +station = ('kmrb', 0.0039528294599609952) +zone = ('wvz052', 0.0028134501802009582) + +[fips2407400] +centroid = (0.69160245897260608, -1.3603031961927332) +description = Big Spring CDP, MD +station = ('khgr', 0.0030586373178832812) +zone = ('mdz003', 0.0017303934235696184) + +[fips2407625] +centroid = (0.67087943172539155, -1.3126446247725376) +description = Bishopville CDP, MD +station = ('koxb', 0.0024742465748647719) +zone = ('mdz025', 0.0033420907202554684) + +[fips2407675] +centroid = (0.66858873944202657, -1.3243185736337673) +description = Bivalve CDP, MD +station = ('kcge', 0.0045629263212973933) +zone = ('mdz021', 0.0034989051098486472) + +[fips2407850] +centroid = (0.67967254012327916, -1.3426104095928313) +description = Bladensburg town, MD +station = ('kcgs', 0.00066168136525425318) +zone = ('dcz001', 0.0013353895603874823) + +[fips2408050] +centroid = (0.68905200933666666, -1.3801297350696606) +description = Bloomington CDP, MD +station = ('k2g4', 0.0039657827848446035) +zone = ('wvz503', 0.0017107258188496306) + +[fips2408625] +centroid = (0.68953333623778179, -1.3553906354004372) +description = Boonsboro town, MD +station = ('khgr', 0.0035110347696313917) +zone = ('mdz003', 0.0026901169506183286) + +[fips2408775] +centroid = (0.67992917333649239, -1.3393852854812409) +description = Bowie city, MD +station = ('kfme', 0.0022307285503443655) +zone = ('mdz013', 0.002599303939565349) + +[fips2408800] +centroid = (0.68613805997741462, -1.3331217176748538) +description = Bowleys Quarters CDP, MD +station = ('kmtn', 0.00058668339371315437) +zone = ('mdz011', 0.0030863887387108761) + +[fips2408850] +centroid = (0.69162345528350755, -1.3754077118718051) +description = Bowling Green CDP, MD +station = ('kcbe', 0.00062935343290558532) +zone = ('mdz501', 0.0017175311354483832) + +[fips2408862] +centroid = (0.69267880352231104, -1.3745172797940226) +description = Bowmans Addition CDP, MD +station = ('kcbe', 0.0012650712254759736) +zone = ('mdz502', 0.0023341022571787173) + +[fips2409100] +centroid = (0.68773402395202321, -1.3526932115881876) +description = Braddock Heights CDP, MD +station = ('kfdk', 0.0017570468328335146) +zone = ('mdz004', 0.0018517389101528794) + +[fips2409325] +centroid = (0.67531248075899453, -1.3418616458904331) +description = Brandywine CDP, MD +station = ('kadw', 0.0022122578147016564) +zone = ('mdz013', 0.0024802390959503037) + +[fips2409400] +centroid = (0.69020808052660276, -1.3565492722243735) +description = Breathedsville CDP, MD +station = ('khgr', 0.0026902262919924866) +zone = ('mdz003', 0.0015711236871785612) + +[fips2409500] +centroid = (0.67969517704367755, -1.3431494545323095) +description = Brentwood town, MD +station = ('kcgs', 0.00080716394630781895) +zone = ('dcz001', 0.0009878030911639143) + +[fips2410150] +centroid = (0.67835429293924787, -1.3397299880085098) +description = Brock Hall CDP, MD +station = ('kadw', 0.001494892381803741) +zone = ('mdz013', 0.0012841875247147493) + +[fips2410225] +centroid = (0.68383611032037417, -1.3449332333877253) +description = Brookeville town, MD +station = ('kgai', 0.0015139146172606468) +zone = ('mdz010', 0.0021138343658184486) + +[fips2410475] +centroid = (0.68447310313747456, -1.3372160681138148) +description = Brooklyn Park CDP, MD +station = ('kdmh', 0.0011504069911702172) +zone = ('mdz011', 0.0019882414055236758) + +[fips2410500] +centroid = (0.67988093243596726, -1.3461489250249095) +description = Brookmont CDP, MD +station = ('kdca', 0.0022339297770795231) +zone = ('vaz054', 0.0017338715852576712) + +[fips2410575] +centroid = (0.67324349765051039, -1.322836754192239) +description = Brookview town, MD +station = ('kcge', 0.0032891527334236691) +zone = ('mdz021', 0.0033643264824641094) + +[fips2410650] +centroid = (0.67048971715671379, -1.336020692109124) +description = Broomes Island CDP, MD +station = ('k2w6', 0.001679700104253566) +zone = ('mdz017', 0.0021129835728577683) + +[fips2410800] +centroid = (0.68727880717651801, -1.3554498020620798) +description = Brownsville CDP, MD +station = ('kmrb', 0.0043571284647874907) +zone = ('wvz053', 0.002982617209477862) + +[fips2410900] +centroid = (0.68622838076620529, -1.354816718782504) +description = Brunswick city, MD +station = ('kfdk', 0.0038041224527611854) +zone = ('vaz042', 0.003969461225483438) + +[fips2410925] +centroid = (0.67378201899121326, -1.3454934491710304) +description = Bryans Road CDP, MD +station = ('kdaa', 0.0023211489719785266) +zone = ('mdz016', 0.0040036939553419557) + +[fips2410950] +centroid = (0.67280416337119842, -1.3411490803167212) +description = Bryantown CDP, MD +station = ('kadw', 0.0046756880067186099) +zone = ('mdz016', 0.0033252868109668538) + +[fips2411050] +centroid = (0.68644705306818765, -1.3514259629248995) +description = Buckeystown CDP, MD +station = ('kfdk', 0.0016991015070932413) +zone = ('mdz004', 0.0025123020246376401) + +[fips2411400] +centroid = (0.6875435910773382, -1.3548601251210011) +description = Burkittsville town, MD +station = ('kfdk', 0.0034421425511069223) +zone = ('wvz053', 0.0035073836417581841) + +[fips2411750] +centroid = (0.68279091989781737, -1.3427972645425497) +description = Burtonsville CDP, MD +station = ('kcgs', 0.0024718586274593835) +zone = ('mdz010', 0.0022693204148490163) + +[fips2411900] +centroid = (0.68560362270716135, -1.3281810047217231) +description = Butlertown CDP, MD +station = ('kapg', 0.0033459751138056916) +zone = ('mdz012', 0.00095451752788569771) + +[fips2412075] +centroid = (0.68022633309493696, -1.3467630540288087) +description = Cabin John CDP, MD +station = ('kdca', 0.0027986438547278696) +zone = ('vaz054', 0.0022146757109299327) + +[fips2412150] +centroid = (0.66841919815848783, -1.3350397472563329) +description = California CDP, MD +station = ('k2w6', 0.00088357471987758705) +zone = ('mdz017', 0.0015929243414558548) + +[fips2412300] +centroid = (0.67147703246127444, -1.3349966027172235) +description = Calvert Beach CDP, MD +station = ('k2w6', 0.0027916215083628512) +zone = ('mdz018', 0.0017517600678271801) + +[fips2412350] +centroid = (0.68170864122865571, -1.3430385388583455) +description = Calverton CDP, MD +station = ('kcgs', 0.0014397366277927389) +zone = ('dcz001', 0.0027544021923524295) + +[fips2412400] +centroid = (0.6729510328277537, -1.3277715679324977) +description = Cambridge city, MD +station = ('kcge', 0.00069276896188408992) +zone = ('mdz021', 0.0016363264650440196) + +[fips2412600] +centroid = (0.67727210153654882, -1.3424706436263314) +description = Camp Springs CDP, MD +station = ('kadw', 0.00094627907075905667) +zone = ('mdz013', 0.0011109879653677748) + +[fips2412912] +centroid = (0.68143996524360373, -1.3342228633532296) +description = Cape St. Claire CDP, MD +station = ('knak', 0.0011718024126257192) +zone = ('mdz014', 0.0022329286291471011) + +[fips2413000] +centroid = (0.67852952399614808, -1.3422907350870359) +description = Capitol Heights town, MD +station = ('kadw', 0.0013104435140419268) +zone = ('mdz013', 0.0011786967731090235) + +[fips2413225] +centroid = (0.69156477731405552, -1.3780540324435564) +description = Carlos CDP, MD +station = ('kcbe', 0.0026371439783266768) +zone = ('mdz501', 0.00054340793432655751) + +[fips2413325] +centroid = (0.68774590964422933, -1.3355737831008581) +description = Carney CDP, MD +station = ('kmtn', 0.0019000689932562353) +zone = ('mdz011', 0.0017406416817909347) + +[fips2414125] +centroid = (0.68529403620444274, -1.3393952338579771) +description = Catonsville CDP, MD +station = ('kdmh', 0.0017210861107075179) +zone = ('mdz011', 0.0021307504688578352) + +[fips2414225] +centroid = (0.69189480162231509, -1.3542569393315118) +description = Cavetown CDP, MD +station = ('krsp', 0.0016607371300077034) +zone = ('mdz003', 0.0030477088339329883) + +[fips2414300] +centroid = (0.69288058103713412, -1.3574532131505666) +description = Cearfoss CDP, MD +station = ('khgr', 0.00057771923994321284) +zone = ('mdz003', 0.0017415882504365327) + +[fips2414325] +centroid = (0.68774337891681392, -1.3241437265493023) +description = Cecilton town, MD +station = ('kapg', 0.0041702835854422445) +zone = ('mdz008', 0.0031173071115326487) + +[fips2414800] +centroid = (0.67469039305370615, -1.340797012500009) +description = Cedarville CDP, MD +station = ('kadw', 0.0028141632109696716) +zone = ('mdz013', 0.0030578013614665925) + +[fips2414950] +centroid = (0.68142081898170936, -1.3275710470547362) +description = Centreville town, MD +station = ('kesn', 0.0042331997920716661) +zone = ('mdz015', 0.0007770818049016552) + +[fips2415075] +centroid = (0.66633256977126598, -1.3253818805739597) +description = Chance CDP, MD +station = ('kcge', 0.0064394750066648666) +zone = ('mdz023', 0.002855029895640653) + +[fips2415400] +centroid = (0.69075848755951164, -1.3260973259409372) +description = Charlestown town, MD +station = ('kapg', 0.0031742180125559592) +zone = ('mdz008', 0.00055858126751518421) + +[fips2415475] +centroid = (0.67139669495580523, -1.340110749038125) +description = Charlotte Hall CDP, MD +station = ('k2w6', 0.004101412878342852) +zone = ('mdz018', 0.0032516305313143225) + +[fips2415500] +centroid = (0.69175079450573307, -1.3595131205469402) +description = Charlton CDP, MD +station = ('khgr', 0.0024477119082131917) +zone = ('mdz003', 0.0012036024511186657) + +[fips2415925] +centroid = (0.67525844536535284, -1.3361264939683799) +description = Chesapeake Beach town, MD +station = ('kadw', 0.004595214989560256) +zone = ('mdz018', 0.0024202107149444031) + +[fips2415950] +centroid = (0.68988702721069839, -1.3231730965923909) +description = Chesapeake City town, MD +station = ('kilg', 0.0037465390107378612) +zone = ('mdz008', 0.0018878180302970217) + +[fips2416050] +centroid = (0.66946707638809277, -1.3337328621657321) +description = Chesapeake Ranch Estates CDP, MD +station = ('knhk', 0.0010333693062800266) +zone = ('mdz017', 0.0027718830988285228) + +[fips2416125] +centroid = (0.68001649215896964, -1.3314520135393484) +description = Chester CDP, MD +station = ('kw29', 0.0006670768367721603) +zone = ('mdz019', 0.0042095930807744637) + +[fips2416225] +centroid = (0.68452684182514345, -1.3276824339675983) +description = Chestertown town, MD +station = ('kapg', 0.0044878413720279339) +zone = ('mdz012', 0.00079437398420084573) + +[fips2416550] +centroid = (0.67938566035412884, -1.342393255727298) +description = Cheverly town, MD +station = ('kcgs', 0.00094783752500959687) +zone = ('dcz001', 0.001403665551647102) + +[fips2416620] +centroid = (0.68036246877659257, -1.3453548700284221) +description = Chevy Chase town, MD +station = ('kdca', 0.0023994208425034305) +zone = ('dcz001', 0.0015720931211419191) + +[fips2416625] +centroid = (0.68054815435571214, -1.345211229430983) +description = Chevy Chase CDP, MD +station = ('kdca', 0.0025510441083725103) +zone = ('dcz001', 0.001667623305106333) + +[fips2416720] +centroid = (0.68039971410283007, -1.3451940553911435) +description = Chevy Chase Section Five village, MD +station = ('kdca', 0.0024034186921521226) +zone = ('dcz001', 0.0015330003628368782) + +[fips2416730] +centroid = (0.68031740437530597, -1.345197999835253) +description = Chevy Chase Section Three village, MD +station = ('kdca', 0.002324116336606829) +zone = ('dcz001', 0.0014653135217742555) + +[fips2416775] +centroid = (0.68101473322464778, -1.3453169614770688) +description = Chevy Chase View town, MD +station = ('kcgs', 0.0022885996455594272) +zone = ('dcz001', 0.0021202423958581722) + +[fips2416787] +centroid = (0.68015096977783585, -1.3452882508108737) +description = Chevy Chase Village town, MD +station = ('kdca', 0.0021819259522608027) +zone = ('dcz001', 0.0013735438433443174) + +[fips2416800] +centroid = (0.69199536749381507, -1.3549206531394602) +description = Chewsville CDP, MD +station = ('khgr', 0.0016406578917782088) +zone = ('mdz003', 0.0025804253481806079) + +[fips2416875] +centroid = (0.68009663767822126, -1.3435349977640751) +description = Chillum CDP, MD +station = ('kcgs', 0.00083219996150508057) +zone = ('dcz001', 0.00111246160033941) + +[fips2417000] +centroid = (0.67513318308493719, -1.3255670600075964) +description = Choptank CDP, MD +station = ('kesn', 0.00260187536066827) +zone = ('mdz019', 0.0025237386922832422) + +[fips2417050] +centroid = (0.67203946481272969, -1.3291386319757073) +description = Church Creek town, MD +station = ('kcge', 0.0018003091744318474) +zone = ('mdz021', 0.0020425278486663353) + +[fips2417100] +centroid = (0.68320939749256815, -1.3261134702365183) +description = Church Hill town, MD +station = ('kw29', 0.0055408725920072623) +zone = ('mdz015', 0.0014031598158425797) + +[fips2417350] +centroid = (0.6847951687443451, -1.3484998137141757) +description = Clarksburg CDP, MD +station = ('kgai', 0.0017075545688852573) +zone = ('mdz009', 0.0019137997143408153) + +[fips2417475] +centroid = (0.69188387586119771, -1.3768718685813031) +description = Clarysville CDP, MD +station = ('kcbe', 0.0017843132803896551) +zone = ('mdz501', 0.00088408783347685284) + +[fips2417600] +centroid = (0.69212993237914378, -1.360148682194054) +description = Clear Spring town, MD +station = ('khgr', 0.0027605906419842369) +zone = ('mdz003', 0.0018146349065945103) + +[fips2417900] +centroid = (0.6763191692182523, -1.342248341039505) +description = Clinton CDP, MD +station = ('kadw', 0.001381181323198182) +zone = ('mdz013', 0.0016441674540362832) + +[fips2418150] +centroid = (0.68249410920522324, -1.3438002354505008) +description = Cloverly CDP, MD +station = ('kcgs', 0.0023863566948171618) +zone = ('mdz010', 0.0027012097966953338) + +[fips2418200] +centroid = (0.66783671197392735, -1.3412927907273304) +description = Cobb Island CDP, MD +station = ('k2w6', 0.004228791193365786) +zone = ('vaz075', 0.0028118485931711173) + +[fips2418250] +centroid = (0.68902097738256629, -1.3374541135704943) +description = Cockeysville CDP, MD +station = ('kdmh', 0.0034025732853868187) +zone = ('mdz006', 0.0012627428528685209) + +[fips2418475] +centroid = (0.68194970610494121, -1.3439136469452952) +description = Colesville CDP, MD +station = ('kcgs', 0.001954293533394933) +zone = ('dcz001', 0.0028606407062712349) + +[fips2418750] +centroid = (0.68058496334963681, -1.3427864260478948) +description = College Park city, MD +station = ('kcgs', 0.00033530166970539973) +zone = ('dcz001', 0.0018322376661157893) + +[fips2418850] +centroid = (0.67945777735882118, -1.3429042357724044) +description = Colmar Manor town, MD +station = ('kcgs', 0.00092462076875232235) +zone = ('dcz001', 0.0010408498406988419) + +[fips2419125] +centroid = (0.68418906825500503, -1.3414434824549477) +description = Columbia CDP, MD +station = ('kfme', 0.0024066345624974396) +zone = ('mdz010', 0.0013101961309950766) + +[fips2419825] +centroid = (0.67842295419202137, -1.3425962200660124) +description = Coral Hills CDP, MD +station = ('kadw', 0.0013906308382483517) +zone = ('dcz001', 0.0013894399364976545) + +[fips2419900] +centroid = (0.67824379614430408, -1.3264677197147954) +description = Cordova CDP, MD +station = ('kesn', 0.0013828636577934302) +zone = ('mdz019', 0.0019604101768277839) + +[fips2419975] +centroid = (0.69280031334483483, -1.375266026043128) +description = Corriganville CDP, MD +station = ('kcbe', 0.0014658965791690766) +zone = ('mdz501', 0.0023995101226464877) + +[fips2420050] +centroid = (0.67959708953971543, -1.3430287126546567) +description = Cottage City town, MD +station = ('kcgs', 0.00083702295528640259) +zone = ('dcz001', 0.0010119513420765896) + +[fips2420500] +centroid = (0.68746129880310658, -1.3869864704756305) +description = Crellin CDP, MD +station = ('k2g4', 0.0037617222914721727) +zone = ('wvz023', 0.0030372669724718555) + +[fips2420525] +centroid = (0.69098845214175442, -1.3762332700612907) +description = Cresaptown CDP, MD +station = ('kcbe', 0.0013032552007055148) +zone = ('mdz501', 0.0010398265338734411) + +[fips2420775] +centroid = (0.66278717774193485, -1.3239765589135466) +description = Crisfield city, MD +station = ('kmfv', 0.0058096731728408558) +zone = ('mdz023', 0.002955518827942974) + +[fips2420875] +centroid = (0.68093032910202145, -1.3383187147753473) +description = Crofton CDP, MD +station = ('kfme', 0.001680939889672454) +zone = ('mdz014', 0.0025049105170822429) + +[fips2420925] +centroid = (0.67613751534970479, -1.3396303297082208) +description = Croom CDP, MD +station = ('kadw', 0.0018610811616356791) +zone = ('mdz013', 0.0019991138343064645) + +[fips2421075] +centroid = (0.68107054885412666, -1.336754044554227) +description = Crownsville CDP, MD +station = ('knak', 0.0016043494391394552) +zone = ('mdz014', 0.0017760405305466071) + +[fips2421325] +centroid = (0.69205339969144386, -1.374585504714483) +description = Cumberland city, MD +station = ('kcbe', 0.00063754909224936825) +zone = ('mdz502', 0.0021949708469606961) + +[fips2421475] +centroid = (0.68540774440521013, -1.3473374244323475) +description = Damascus CDP, MD +station = ('kgai', 0.0017990061853592467) +zone = ('mdz009', 0.0023525546136778188) + +[fips2421550] +centroid = (0.66624313910039379, -1.324530788217517) +description = Dames Quarter CDP, MD +station = ('kcge', 0.0066870442637305769) +zone = ('mdz023', 0.002204576519000898) + +[fips2421675] +centroid = (0.68958164695147695, -1.3773716785191967) +description = Danville CDP, MD +station = ('kcbe', 0.0027958906187509017) +zone = ('wvz504', 0.0015594821994588052) + +[fips2421750] +centroid = (0.68725264469103076, -1.3567150261434355) +description = Dargan CDP, MD +station = ('kmrb', 0.0033871999685038934) +zone = ('wvz053', 0.0021151509039332959) + +[fips2421800] +centroid = (0.69189183456258674, -1.3300028143015399) +description = Darlington CDP, MD +station = ('kapg', 0.003108433168282632) +zone = ('mdz007', 0.00058090262488345043) + +[fips2421825] +centroid = (0.68236497229386817, -1.3491809633613516) +description = Darnestown CDP, MD +station = ('kgai', 0.0022025759258989157) +zone = ('mdz009', 0.001500094930009655) + +[fips2421925] +centroid = (0.68898296411145787, -1.3779134810788933) +description = Dawson CDP, MD +station = ('kcbe', 0.00350892939960902) +zone = ('wvz504', 0.0012273446597564918) + +[fips2422050] +centroid = (0.67696157255603395, -1.335941907946689) +description = Deale CDP, MD +station = ('knak', 0.0035231644383047758) +zone = ('mdz014', 0.0025565368283600527) + +[fips2422100] +centroid = (0.66589126326989934, -1.3254019867669429) +description = Deal Island CDP, MD +station = ('knhk', 0.0068111871365791714) +zone = ('mdz023', 0.0027423010062319303) + +[fips2422275] +centroid = (0.68807792362783615, -1.3844996380909267) +description = Deer Park town, MD +station = ('k2g4', 0.0027299256851002125) +zone = ('mdz001', 0.0019564607475349494) + +[fips2422600] +centroid = (0.67093800497508849, -1.3188107159402009) +description = Delmar town, MD +station = ('ksby', 0.0020778864134347683) +zone = ('mdz022', 0.001423196622584244) + +[fips2422725] +centroid = (0.67853980398544234, -1.3234293283798761) +description = Denton town, MD +station = ('kesn', 0.0035286379191821898) +zone = ('mdz020', 0.00011982622552872978) + +[fips2422775] +centroid = (0.68267010820699447, -1.3465254972643197) +description = Derwood CDP, MD +station = ('kgai', 0.0010114146832953547) +zone = ('mdz009', 0.00082580440973628383) + +[fips2422825] +centroid = (0.69040626266316663, -1.3786555252636712) +description = Detmold CDP, MD +station = ('kcbe', 0.0032585425542021123) +zone = ('mdz501', 0.0011426853814921953) + +[fips2423025] +centroid = (0.67822110686402814, -1.3419507100421624) +description = District Heights city, MD +station = ('kadw', 0.00090537965630928252) +zone = ('mdz013', 0.00077675200935680474) + +[fips2423500] +centroid = (0.69036184403370349, -1.3578946069183959) +description = Downsville CDP, MD +station = ('khgr', 0.0026950656882323617) +zone = ('mdz003', 0.00086971292358544914) + +[fips2423700] +centroid = (0.66899892672283034, -1.3340051858889208) +description = Drum Point CDP, MD +station = ('knhk', 0.00070130384262538257) +zone = ('mdz017', 0.0024427991972717045) + +[fips2423975] +centroid = (0.68533536560112984, -1.3351163323039106) +description = Dundalk CDP, MD +station = ('kmtn', 0.0015846010692438853) +zone = ('mdz011', 0.001895934251004563) + +[fips2424062] +centroid = (0.67576738337523434, -1.3382224947736849) +description = Dunkirk CDP, MD +station = ('kadw', 0.0029380260355663548) +zone = ('mdz013', 0.003026853230471218) + +[fips2424200] +centroid = (0.67311242342368571, -1.3384379556698436) +description = Eagle Harbor town, MD +station = ('k2w6', 0.0046913489993630356) +zone = ('mdz018', 0.0016220079641299659) + +[fips2424250] +centroid = (0.68883026525520086, -1.3558757845726139) +description = Eakles Mill CDP, MD +station = ('khgr', 0.004115084826206504) +zone = ('mdz003', 0.0029438853734968505) + +[fips2424450] +centroid = (0.67364513281797933, -1.3251084223867571) +description = East New Market town, MD +station = ('kcge', 0.0017657022386996025) +zone = ('mdz021', 0.0023497686872660907) + +[fips2424475] +centroid = (0.67671474809321697, -1.3276773026995976) +description = Easton town, MD +station = ('kesn', 0.0004755859493063146) +zone = ('mdz019', 0.00030657607188725242) + +[fips2424650] +centroid = (0.67997441227070399, -1.3423531655143797) +description = East Riverdale CDP, MD +station = ('kcgs', 0.00037460480513765805) +zone = ('dcz001', 0.0016566241753197216) + +[fips2424825] +centroid = (0.69210951202689541, -1.3769627129688695) +description = Eckhart Mines CDP, MD +station = ('kcbe', 0.0019211054339298649) +zone = ('mdz501', 0.001040356378463454) + +[fips2424850] +centroid = (0.66808114533566909, -1.3204239586744044) +description = Eden CDP, MD +station = ('ksby', 0.0023270536422244797) +zone = ('mdz022', 0.0017354074927928567) + +[fips2424925] +centroid = (0.68336008922018532, -1.330187208337013) +description = Edesville CDP, MD +station = ('kw29', 0.0034134301172116265) +zone = ('mdz012', 0.0030113955466125222) + +[fips2424950] +centroid = (0.68452984379145698, -1.3344154778894795) +description = Edgemere CDP, MD +station = ('kmtn', 0.002038199724029821) +zone = ('mdz011', 0.0028296706638084607) + +[fips2425000] +centroid = (0.69248749798299991, -1.3534495674728317) +description = Edgemont CDP, MD +station = ('krsp', 0.0011333836285433367) +zone = ('mdz004', 0.0040911940017960766) + +[fips2425050] +centroid = (0.67959674047386509, -1.336114084677398) +description = Edgewater CDP, MD +station = ('knak', 0.0012398553577814685) +zone = ('mdz014', 0.00035973356956945236) + +[fips2425150] +centroid = (0.68801346861856005, -1.3316299498565891) +description = Edgewood CDP, MD +station = ('kapg', 0.0019316067721472745) +zone = ('mdz007', 0.0042433567615233325) + +[fips2425425] +centroid = (0.67980513278655319, -1.3427201209896116) +description = Edmonston town, MD +station = ('kcgs', 0.00054971609457386567) +zone = ('dcz001', 0.0013249463349022149) + +[fips2425575] +centroid = (0.6877096591556654, -1.3431111620085208) +description = Eldersburg CDP, MD +station = ('kdmw', 0.0036914248738801484) +zone = ('mdz010', 0.0026687611230032386) + +[fips2425600] +centroid = (0.6733986399677202, -1.3227910614724219) +description = Eldorado town, MD +station = ('kcge', 0.003355283153698384) +zone = ('mdz021', 0.0034731128983799676) + +[fips2425750] +centroid = (0.68408630326864761, -1.339393209276045) +description = Elkridge CDP, MD +station = ('kbwi', 0.00093270848581081614) +zone = ('mdz010', 0.0027460276940380552) + +[fips2425800] +centroid = (0.69125119400734969, -1.3233380651132893) +description = Elkton town, MD +station = ('kilg', 0.0031635202359330777) +zone = ('mdz008', 0.0016597089981871863) + +[fips2425925] +centroid = (0.69322231650467458, -1.3749462119109928) +description = Ellerslie CDP, MD +station = ('kcbe', 0.0018210233359405206) +zone = ('mdz501', 0.0028697544261248693) + +[fips2426000] +centroid = (0.68550757723842415, -1.3410054397192821) +description = Ellicott City CDP, MD +station = ('kbwi', 0.0027991047167151006) +zone = ('mdz010', 0.0013923454641286714) + +[fips2426025] +centroid = (0.66860319076823305, -1.3266372959049191) +description = Elliott CDP, MD +station = ('kcge', 0.0040552825854295376) +zone = ('mdz021', 0.0029979906243674521) + +[fips2426200] +centroid = (0.69298441067433514, -1.3495184751321023) +description = Emmitsburg town, MD +station = ('kryt', 0.0015174257759081545) +zone = ('paz064', 0.003220991389821549) + +[fips2426550] +centroid = (0.69168063226980292, -1.3617745960186269) +description = Ernstville CDP, MD +station = ('kmrb', 0.0040579032826000916) +zone = ('wvz052', 0.0029025470538096873) + +[fips2426600] +centroid = (0.68600112144430314, -1.3342531797223365) +description = Essex CDP, MD +station = ('kmtn', 0.0006431688018238552) +zone = ('mdz011', 0.0022417378686790039) + +[fips2427250] +centroid = (0.68208301435320851, -1.3430603729272879) +description = Fairland CDP, MD +station = ('kcgs', 0.0018055407164885835) +zone = ('mdz010', 0.0029886854382394786) + +[fips2427325] +centroid = (0.68462049619280552, -1.329352644248587) +description = Fairlee CDP, MD +station = ('kapg', 0.0042027849053102723) +zone = ('mdz012', 0.0018426667192308695) + +[fips2427375] +centroid = (0.66514087641129682, -1.323318482519082) +description = Fairmount CDP, MD +station = ('kwal', 0.0057583532418452677) +zone = ('mdz023', 0.0010509103165376643) + +[fips2427400] +centroid = (0.67895946840408428, -1.3424250032663918) +description = Fairmount Heights town, MD +station = ('kcgs', 0.0013713672777845457) +zone = ('dcz001', 0.0013556877452019797) + +[fips2427425] +centroid = (0.69002763093523911, -1.3569290733229) +description = Fairplay CDP, MD +station = ('khgr', 0.0028733827298027211) +zone = ('mdz003', 0.0014980142506376419) + +[fips2427500] +centroid = (0.69308916533603993, -1.3585752329667962) +description = Fairview CDP, MD +station = ('khgr', 0.0014536133419620154) +zone = ('mdz003', 0.0019075467627452647) + +[fips2427580] +centroid = (0.67991461729053071, -1.3399507547055944) +description = Fairwood CDP, MD +station = ('kcgs', 0.0020304779082571155) +zone = ('mdz013', 0.0023793069772072204) + +[fips2427700] +centroid = (0.68999515035785952, -1.3341042507772638) +description = Fallston CDP, MD +station = ('kmtn', 0.003511383094472804) +zone = ('mdz006', 0.0030899416354550125) + +[fips2427900] +centroid = (0.67530741930416371, -1.3224789966021651) +description = Federalsburg town, MD +station = ('kesn', 0.0044242178362284357) +zone = ('mdz020', 0.0032337665684264885) + +[fips2428075] +centroid = (0.68394210416584789, -1.3374984100269098) +description = Ferndale CDP, MD +station = ('kbwi', 0.00076772080937050969) +zone = ('mdz011', 0.0025366464141735341) + +[fips2428275] +centroid = (0.69294877105100949, -1.3779933124388797) +description = Finzel CDP, MD +station = ('kcbe', 0.0030045202659177636) +zone = ('mdz501', 0.001803271696695226) + +[fips2428300] +centroid = (0.66905575464327527, -1.3303760180554938) +description = Fishing Creek CDP, MD +station = ('knhk', 0.0024699940360846488) +zone = ('mdz021', 0.0039090298961717658) + +[fips2428425] +centroid = (0.69295563019496975, -1.3714088658495132) +description = Flintstone CDP, MD +station = ('kcbe', 0.0029221715881946643) +zone = ('mdz502', 0.0013056912840019111) + +[fips2428640] +centroid = (0.68100886891836121, -1.3446868452572214) +description = Forest Glen CDP, MD +station = ('kcgs', 0.0018250876076410106) +zone = ('dcz001', 0.0019571021938245099) + +[fips2428725] +centroid = (0.67737186455659282, -1.3438951639085168) +description = Forest Heights town, MD +station = ('kdca', 0.00082791525499424775) +zone = ('vaz054', 0.0015819987609934636) + +[fips2429000] +centroid = (0.67809001518391077, -1.3416486808151047) +description = Forestville CDP, MD +station = ('kadw', 0.00067364968663215718) +zone = ('mdz013', 0.00051333432912723984) + +[fips2429400] +centroid = (0.68259863697412526, -1.3394485013067483) +description = Fort Meade CDP, MD +station = ('kfme', 0.00055237627719809308) +zone = ('mdz010', 0.0035267611786844086) + +[fips2429450] +centroid = (0.69295625851350051, -1.3527423251533386) +description = Fort Ritchie CDP, MD +station = ('krsp', 0.0010537118466784172) +zone = ('mdz004', 0.0042913257641934727) + +[fips2429525] +centroid = (0.67604153969413761, -1.3440848113850383) +description = Fort Washington CDP, MD +station = ('kdca', 0.0020428639237119578) +zone = ('vaz054', 0.0024670262486169831) + +[fips2429712] +centroid = (0.6926834111915362, -1.3564227358536041) +description = Fountainhead-Orchard Hills CDP, MD +station = ('khgr', 0.00030240344463747628) +zone = ('mdz003', 0.0019627193772604754) + +[fips2429790] +centroid = (0.68108545396593867, -1.3440817221522623) +description = Four Corners CDP, MD +station = ('kcgs', 0.001438331580014978) +zone = ('dcz001', 0.0019909507935039817) + +[fips2430100] +centroid = (0.68939625807833016, -1.3797205426265307) +description = Franklin CDP, MD +station = ('kcbe', 0.0044104010408365733) +zone = ('wvz503', 0.0021457930005282628) + +[fips2430325] +centroid = (0.68823718492208075, -1.3511075101495804) +description = Frederick city, MD +station = ('kfdk', 0.00058378928102121653) +zone = ('mdz004', 0.00071067399977608168) + +[fips2430567] +centroid = (0.66452451338595497, -1.3238902349287427) +description = Frenchtown-Rumbly CDP, MD +station = ('kwal', 0.0058602374580435804) +zone = ('mdz023', 0.0016783691016688184) + +[fips2430575] +centroid = (0.6765548759337342, -1.3434006248649641) +description = Friendly CDP, MD +station = ('kdca', 0.0017265829741963056) +zone = ('mdz013', 0.0020981744521395454) + +[fips2430650] +centroid = (0.67606813851193792, -1.336709311765498) +description = Friendship CDP, MD +station = ('kadw', 0.0038363165837431469) +zone = ('mdz018', 0.0032305654399198205) + +[fips2430800] +centroid = (0.68003776772255142, -1.3454737094971905) +description = Friendship Heights Village CDP, MD +station = ('kdca', 0.0021216781448764634) +zone = ('dcz001', 0.0013910093852611211) + +[fips2430850] +centroid = (0.69224920818022517, -1.3858693375813067) +description = Friendsville town, MD +station = ('k2g4', 0.0016874403554987196) +zone = ('mdz001', 0.0029295500747348034) + +[fips2430900] +centroid = (0.69205682053677775, -1.3775241853892359) +description = Frostburg city, MD +station = ('kcbe', 0.0023145904533099864) +zone = ('mdz501', 0.00088069992875537077) + +[fips2430950] +centroid = (0.6688063645464577, -1.3199082836936102) +description = Fruitland city, MD +station = ('ksby', 0.0017301144344020495) +zone = ('mdz022', 0.00094447527245886294) + +[fips2431025] +centroid = (0.68334301990010071, -1.3423495526828282) +description = Fulton CDP, MD +station = ('kfme', 0.0022983501662984423) +zone = ('mdz010', 0.0017384953434674178) + +[fips2431100] +centroid = (0.6912974103259425, -1.3562593032224473) +description = Funkstown town, MD +station = ('khgr', 0.0016343374558248039) +zone = ('mdz003', 0.0014313159264215339) + +[fips2431175] +centroid = (0.68273828076757737, -1.347959686670561) +description = Gaithersburg city, MD +station = ('kgai', 0.0012395362322912924) +zone = ('mdz009', 0.00049859083061652438) + +[fips2431225] +centroid = (0.68665734778976051, -1.3243323617348579) +description = Galena town, MD +station = ('kapg', 0.0044471701922182702) +zone = ('mdz012', 0.0025956024915987476) + +[fips2431250] +centroid = (0.67304444284932052, -1.3214902501276178) +description = Galestown town, MD +station = ('ksby', 0.0049713858928759017) +zone = ('mdz022', 0.0035510346390042894) + +[fips2431275] +centroid = (0.67790014081458638, -1.3361257434768015) +description = Galesville CDP, MD +station = ('knak', 0.0026678894976060533) +zone = ('mdz014', 0.0016482873507766495) + +[fips2431350] +centroid = (0.68229922574094559, -1.3378121155066633) +description = Gambrills CDP, MD +station = ('kbwi', 0.0013604715923981551) +zone = ('mdz014', 0.003250684250790887) + +[fips2431400] +centroid = (0.68769393373910492, -1.3553928170620022) +description = Gapland CDP, MD +station = ('kmrb', 0.0043838730662197805) +zone = ('wvz053', 0.0032139980343015204) + +[fips2431525] +centroid = (0.6813073725803297, -1.3455344644084524) +description = Garrett Park town, MD +station = ('kgai', 0.0025576823105508927) +zone = ('mdz009', 0.0023042091687623238) + +[fips2431575] +centroid = (0.68684528484361518, -1.3559273939585956) +description = Garretts Mill CDP, MD +station = ('kmrb', 0.0040546818880712503) +zone = ('wvz053', 0.0024794595855041662) + +[fips2431625] +centroid = (0.68770435335473934, -1.3395763641277492) +description = Garrison CDP, MD +station = ('kdmh', 0.0027695291361306898) +zone = ('mdz011', 0.0022905589350520972) + +[fips2431875] +centroid = (0.68454565647448007, -1.329797284328825) +description = Georgetown CDP, MD +station = ('kmtn', 0.0036106076518924129) +zone = ('mdz012', 0.0021939540373724208) + +[fips2432025] +centroid = (0.68371912090061304, -1.3485060096330206) +description = Germantown CDP, MD +station = ('kgai', 0.0012700047212672104) +zone = ('mdz009', 0.001043419114059289) + +[fips2432175] +centroid = (0.69085331129777261, -1.3779581266011591) +description = Gilmore CDP, MD +station = ('kcbe', 0.0026212141080438353) +zone = ('mdz501', 0.0004454231738744253) + +[fips2432250] +centroid = (0.66494845386126444, -1.315985760919508) +description = Girdletree CDP, MD +station = ('kwal', 0.0030271531033581539) +zone = ('mdz024', 0.0020288239200150523) + +[fips2432350] +centroid = (0.67750388126121353, -1.3436146371378437) +description = Glassmanor CDP, MD +station = ('kdca', 0.00087732936329387918) +zone = ('dcz001', 0.0016468578226929761) + +[fips2432500] +centroid = (0.67944154579677773, -1.3414154175605757) +description = Glenarden city, MD +station = ('kcgs', 0.0012284526080591994) +zone = ('mdz013', 0.0017178336965412869) + +[fips2432650] +centroid = (0.68340585175317248, -1.3370443102621259) +description = Glen Burnie CDP, MD +station = ('kbwi', 0.001048866178860605) +zone = ('mdz011', 0.0030532898932259123) + +[fips2432900] +centroid = (0.68012297469663385, -1.34636606143715) +description = Glen Echo town, MD +station = ('kdca', 0.0025290295740221162) +zone = ('dcz001', 0.0020011775461002386) + +[fips2433250] +centroid = (0.6819075913100906, -1.3447163064149952) +description = Glenmont CDP, MD +station = ('kcgs', 0.0023315232277891949) +zone = ('mdz009', 0.0024236342367816733) + +[fips2433400] +centroid = (0.68040604964801477, -1.3404185029451292) +description = Glenn Dale CDP, MD +station = ('kcgs', 0.0016254887617283607) +zone = ('mdz013', 0.0027358931284236767) + +[fips2433850] +centroid = (0.67177258651680716, -1.338679561598197) +description = Golden Beach CDP, MD +station = ('k2w6', 0.0036088205147684869) +zone = ('mdz018', 0.0020877924710737978) + +[fips2433950] +centroid = (0.681223998201962, -1.3226544894584533) +description = Goldsboro town, MD +station = ('kdov', 0.0046351981178450307) +zone = ('mdz020', 0.0028637319177064369) + +[fips2434150] +centroid = (0.68578702190496099, -1.3849667580119303) +description = Gorman CDP, MD +station = ('k2g4', 0.0050172405339999936) +zone = ('wvz501', 0.0015310326158411624) + +[fips2434425] +centroid = (0.69193065068515103, -1.3774587879021636) +description = Grahamtown CDP, MD +station = ('kcbe', 0.0022340028801168558) +zone = ('mdz501', 0.0007581420357281565) + +[fips2434525] +centroid = (0.69284211398042006, -1.3814809515232622) +description = Grantsville town, MD +station = ('k2g4', 0.0032372850175959246) +zone = ('mdz001', 0.0033574473356576249) + +[fips2434550] +centroid = (0.67993596266728273, -1.3299022658833326) +description = Grasonville CDP, MD +station = ('kw29', 0.0018367175666357813) +zone = ('mdz015', 0.0031195131136988637) + +[fips2434775] +centroid = (0.68058562657475252, -1.3419033068996782) +description = Greenbelt city, MD +station = ('kcgs', 0.00053484519245963855) +zone = ('dcz001', 0.0023013436251978444) + +[fips2435200] +centroid = (0.68025445034918663, -1.3231145407959866) +description = Greensboro town, MD +station = ('kesn', 0.0046550349596714263) +zone = ('mdz020', 0.001841557179240036) + +[fips2435225] +centroid = (0.69255958008110718, -1.3537044379035004) +description = Greensburg CDP, MD +station = ('krsp', 0.0013419393743105803) +zone = ('mdz004', 0.0042523486061689375) + +[fips2436075] +centroid = (0.69185169198979091, -1.3565168614601641) +description = Hagerstown city, MD +station = ('khgr', 0.0010537652738869298) +zone = ('mdz003', 0.001385234049600097) + +[fips2436125] +centroid = (0.69143478519136703, -1.3573418087844118) +description = Halfway CDP, MD +station = ('khgr', 0.0015415814936106465) +zone = ('mdz003', 0.00063420906901266684) + +[fips2436500] +centroid = (0.69136978913002278, -1.3413952939143003) +description = Hampstead town, MD +station = ('kdmw', 0.0020672543975002104) +zone = ('mdz006', 0.0028020812431713885) + +[fips2436512] +centroid = (0.68804640298154518, -1.3363946987145336) +description = Hampton CDP, MD +station = ('kdmh', 0.0025041755171440125) +zone = ('mdz011', 0.0016759199313192874) + +[fips2436600] +centroid = (0.69297681849208903, -1.36420151125011) +description = Hancock town, MD +station = ('kmrb', 0.005840938853585209) +zone = ('wvz051', 0.0028217680564157285) + +[fips2437600] +centroid = (0.69029227520971903, -1.3282849390786793) +description = Havre de Grace city, MD +station = ('kapg', 0.0016866496612974239) +zone = ('mdz007', 0.0017174131164119312) + +[fips2437875] +centroid = (0.67063063504051967, -1.3209812946644439) +description = Hebron town, MD +station = ('ksby', 0.0030071283557004396) +zone = ('mdz022', 0.001276252733843454) + +[fips2437925] +centroid = (0.68198489194266132, -1.3223721475453583) +description = Henderson town, MD +station = ('kdov', 0.0041851045513355816) +zone = ('dez002', 0.0026843341163289886) + +[fips2438025] +centroid = (0.68157315131882346, -1.3364844784512564) +description = Herald Harbor CDP, MD +station = ('knak', 0.0017170247526319129) +zone = ('mdz014', 0.0021600171873283071) + +[fips2438437] +centroid = (0.69313295564697253, -1.3525353465573446) +description = Highfield-Cascade CDP, MD +station = ('kryt', 0.0009128449771850345) +zone = ('mdz004', 0.004408347342039297) + +[fips2438475] +centroid = (0.68393377894531582, -1.3431691069396869) +description = Highland CDP, MD +station = ('kgai', 0.0028837742790099661) +zone = ('mdz010', 0.0011807501445860755) + +[fips2438500] +centroid = (0.6794935566084872, -1.3345924019157542) +description = Highland Beach town, MD +station = ('knak', 0.00092265381000225489) +zone = ('mdz014', 0.00083494613665044458) + +[fips2438850] +centroid = (0.68111997657854306, -1.343485011534298) +description = Hillandale CDP, MD +station = ('kcgs', 0.001096557737928974) +zone = ('dcz001', 0.0020911725654236954) + +[fips2438975] +centroid = (0.67782287508860062, -1.3433942369599019) +description = Hillcrest Heights CDP, MD +station = ('kdca', 0.0008823664565732692) +zone = ('dcz001', 0.0014047050755424072) + +[fips2439175] +centroid = (0.67922751607060572, -1.3254290393703485) +description = Hillsboro town, MD +station = ('kesn', 0.0026561100628912037) +zone = ('mdz020', 0.0016869365348774659) + +[fips2440700] +centroid = (0.67260486422391308, -1.339937943988885) +description = Hughesville CDP, MD +station = ('k2w6', 0.0048660480353194379) +zone = ('mdz018', 0.0027842250456761924) + +[fips2441037] +centroid = (0.67391263943243251, -1.3372981684018284) +description = Huntingtown CDP, MD +station = ('kadw', 0.0047324458651448326) +zone = ('mdz018', 0.0012796637504563634) + +[fips2441125] +centroid = (0.67414632156598209, -1.3241370070316822) +description = Hurlock town, MD +station = ('kcge', 0.0026752354461371457) +zone = ('mdz021', 0.003187231596582111) + +[fips2441175] +centroid = (0.68791382777156362, -1.3871874974988754) +description = Hutton CDP, MD +station = ('k2g4', 0.0034485031954382471) +zone = ('wvz023', 0.0027095131575256789) + +[fips2441250] +centroid = (0.67998844471789011, -1.3430709147159701) +description = Hyattsville city, MD +station = ('kcgs', 0.00055520538455134402) +zone = ('dcz001', 0.0012300525395876471) + +[fips2441475] +centroid = (0.68445154832121247, -1.3397487153913838) +description = Ilchester CDP, MD +station = ('kbwi', 0.001370318708340748) +zone = ('mdz010', 0.0023713360749419857) + +[fips2441500] +centroid = (0.67367290100637855, -1.3466204431756283) +description = Indian Head town, MD +station = ('kdaa', 0.0020946241138617076) +zone = ('mdz016', 0.0043203553675298344) + +[fips2441700] +centroid = (0.69194684734060963, -1.3614860058268097) +description = Indian Springs CDP, MD +station = ('kmrb', 0.0042993504326667631) +zone = ('mdz003', 0.0026984032528177709) + +[fips2442325] +centroid = (0.69116343885255949, -1.3346953414350369) +description = Jarrettsville CDP, MD +station = ('kmtn', 0.0047273124780247699) +zone = ('mdz006', 0.0028053309080846092) + +[fips2442350] +centroid = (0.68709059086998292, -1.3533734711174445) +description = Jefferson CDP, MD +station = ('kfdk', 0.0024307373870304317) +zone = ('mdz004', 0.0026723334866115833) + +[fips2442450] +centroid = (0.6919995388307274, -1.3820126835331747) +description = Jennings CDP, MD +station = ('k2g4', 0.0024214922193239881) +zone = ('mdz001', 0.0024225955724559134) + +[fips2442550] +centroid = (0.68321629154311347, -1.3399295140485978) +description = Jessup CDP, MD +station = ('kfme', 0.0010861302528531076) +zone = ('mdz010', 0.0028341753321001408) + +[fips2442575] +centroid = (0.66829493071574575, -1.3245291301547277) +description = Jesterville CDP, MD +station = ('kcge', 0.0047576037191191861) +zone = ('mdz023', 0.0035964633732706304) + +[fips2442875] +centroid = (0.68792723190021898, -1.3325663713601617) +description = Joppatowne CDP, MD +station = ('kmtn', 0.0016871743982110772) +zone = ('mdz011', 0.003792475293751449) + +[fips2442950] +centroid = (0.69139958190035422, -1.354276015780236) +description = Jugtown CDP, MD +station = ('krsp', 0.0017833436103165353) +zone = ('mdz004', 0.0036224456942296713) + +[fips2443100] +centroid = (0.68916775957265908, -1.3561035151334144) +description = Keedysville town, MD +station = ('khgr', 0.0037564290246895316) +zone = ('mdz003', 0.0025679860375256922) + +[fips2443200] +centroid = (0.68137530079481734, -1.3442182767129385) +description = Kemp Mill CDP, MD +station = ('kcgs', 0.0016916432459437118) +zone = ('dcz001', 0.0022803822277182024) + +[fips2443280] +centroid = (0.69161954574598306, -1.3581086890044456) +description = Kemps Mill CDP, MD +station = ('khgr', 0.0016733859590141508) +zone = ('mdz003', 0.00040460541905990005) + +[fips2443475] +centroid = (0.68601737045963918, -1.3263633315722336) +description = Kennedyville CDP, MD +station = ('kapg', 0.003637879404604688) +zone = ('mdz012', 0.0010129259948566034) + +[fips2443500] +centroid = (0.68114050165054663, -1.3451903203865441) +description = Kensington town, MD +station = ('kcgs', 0.0022372623354731404) +zone = ('dcz001', 0.002196871897142991) + +[fips2443725] +centroid = (0.6801698367870499, -1.3305149811705377) +description = Kent Narrows CDP, MD +station = ('kw29', 0.0013272124528469782) +zone = ('mdz015', 0.0033747710633610559) + +[fips2443900] +centroid = (0.67875254216796799, -1.3402436035007865) +description = Kettering CDP, MD +station = ('kadw', 0.0015103684068078608) +zone = ('mdz013', 0.0012498103161667192) + +[fips2444325] +centroid = (0.68430214813724177, -1.3272166230435336) +description = Kingstown CDP, MD +station = ('kapg', 0.0048152328028562234) +zone = ('mdz012', 0.00087496983545106485) + +[fips2444350] +centroid = (0.68856567334059848, -1.3339611686851855) +description = Kingsville CDP, MD +station = ('kmtn', 0.0020777084882271642) +zone = ('mdz011', 0.0032069245873724357) + +[fips2444450] +centroid = (0.68747051414155713, -1.3820090183417457) +description = Kitzmiller town, MD +station = ('k2g4', 0.0039434326329966128) +zone = ('wvz503', 0.00091122693622440725) + +[fips2444525] +centroid = (0.69132633043164804, -1.3781693638005283) +description = Klondike CDP, MD +station = ('kcbe', 0.0027236205230383947) +zone = ('mdz501', 0.00049246025352926162) + +[fips2444715] +centroid = (0.68190326289354564, -1.3421330620424108) +description = Konterra CDP, MD +station = ('kcgs', 0.0016005418667241172) +zone = ('mdz010', 0.0031872490765510429) + +[fips2444817] +centroid = (0.67906518299687768, -1.3409835183838772) +description = Lake Arbor CDP, MD +station = ('kadw', 0.0016038787748882497) +zone = ('mdz013', 0.0013393663833566503) + +[fips2444975] +centroid = (0.6823839614761299, -1.3350858937617556) +description = Lake Shore CDP, MD +station = ('knak', 0.0020024699022381863) +zone = ('mdz014', 0.0029099900795249299) + +[fips2445325] +centroid = (0.67935885209681812, -1.341941843769562) +description = Landover CDP, MD +station = ('kcgs', 0.0010654551575891144) +zone = ('mdz013', 0.001731326638227737) + +[fips2445400] +centroid = (0.67968131912941665, -1.3420222685414942) +description = Landover Hills town, MD +station = ('kcgs', 0.00074976656210696613) +zone = ('dcz001', 0.0017620439365781339) + +[fips2445525] +centroid = (0.68049637043680555, -1.3435681590198629) +description = Langley Park CDP, MD +station = ('kcgs', 0.00084139539727829239) +zone = ('dcz001', 0.0014742459819847759) + +[fips2445550] +centroid = (0.68001780115590871, -1.3410971044115969) +description = Lanham CDP, MD +station = ('kcgs', 0.0011397501495129269) +zone = ('mdz013', 0.0022845438478137996) + +[fips2445650] +centroid = (0.68479014219609935, -1.3380502656830979) +description = Lansdowne CDP, MD +station = ('kdmh', 0.0010557821377066533) +zone = ('mdz011', 0.0018269119646742338) + +[fips2445750] +centroid = (0.67270858914135911, -1.3433778308649331) +description = La Plata town, MD +station = ('kdaa', 0.0041974752630521053) +zone = ('mdz016', 0.0026408438172729472) + +[fips2445825] +centroid = (0.67859012182777734, -1.3409236535905338) +description = Largo CDP, MD +station = ('kadw', 0.0011466584624205394) +zone = ('mdz013', 0.00087797154063454577) + +[fips2445900] +centroid = (0.68234970066291323, -1.3414996471502769) +description = Laurel city, MD +station = ('kfme', 0.0013131000785857154) +zone = ('mdz010', 0.0028668423404877097) + +[fips2446075] +centroid = (0.6920380407940262, -1.3756133291109827) +description = La Vale CDP, MD +station = ('kcbe', 0.00097588239433114615) +zone = ('mdz501', 0.0017295361564196405) + +[fips2446150] +centroid = (0.68222981399659377, -1.3446012194041184) +description = Layhill CDP, MD +station = ('kgai', 0.0022589974251688207) +zone = ('mdz009', 0.0023716426254981608) + +[fips2446250] +centroid = (0.68430982758595049, -1.3462606959102073) +description = Laytonsville town, MD +station = ('kgai', 0.00081536602677471373) +zone = ('mdz009', 0.0015625614682376378) + +[fips2446375] +centroid = (0.6824949295099717, -1.3451067540219586) +description = Leisure World CDP, MD +station = ('kgai', 0.0017875738009596699) +zone = ('mdz009', 0.0019146103660951323) + +[fips2446400] +centroid = (0.69276952573682971, -1.3547354213459459) +description = Leitersburg CDP, MD +station = ('khgr', 0.0015188804147441251) +zone = ('mdz003', 0.003030521315280265) + +[fips2446475] +centroid = (0.66849213546792863, -1.337644302099084) +description = Leonardtown town, MD +station = ('k2w6', 0.0012911242564739209) +zone = ('mdz017', 0.00045837183929971318) + +[fips2446725] +centroid = (0.66769005195688225, -1.3341182657711574) +description = Lexington Park CDP, MD +station = ('knhk', 0.00094081427101852131) +zone = ('mdz017', 0.0024638002143886205) + +[fips2446800] +centroid = (0.68921800760182395, -1.3483936278824846) +description = Libertytown CDP, MD +station = ('kfdk', 0.00201579179068686) +zone = ('mdz004', 0.0019205036224849508) + +[fips2447040] +centroid = (0.6878069787147566, -1.3491947514624425) +description = Linganore CDP, MD +station = ('kfdk', 0.0009740779707576462) +zone = ('mdz004', 0.0016958553829860663) + +[fips2447125] +centroid = (0.68430769828426308, -1.3380497769909072) +description = Linthicum CDP, MD +station = ('kbwi', 0.00076365905894295943) +zone = ('mdz011', 0.0022760088504370658) + +[fips2447275] +centroid = (0.69168927164960026, -1.3682607631178134) +description = Little Orleans CDP, MD +station = ('kcbe', 0.0049179994066828698) +zone = ('wvz051', 0.002223934215866208) + +[fips2447450] +centroid = (0.68675011203950398, -1.3391416724242475) +description = Lochearn CDP, MD +station = ('kdmh', 0.0018696342186897532) +zone = ('mdz011', 0.0016134469690209277) + +[fips2447525] +centroid = (0.687517166792463, -1.3853144275989275) +description = Loch Lynn Heights town, MD +station = ('k2g4', 0.0033135039967571002) +zone = ('mdz001', 0.0027330207462481254) + +[fips2447875] +centroid = (0.69056974765420109, -1.3784113537013172) +description = Lonaconing town, MD +station = ('kcbe', 0.0030303041799559704) +zone = ('mdz501', 0.00089346155744200739) + +[fips2448025] +centroid = (0.67118814556348438, -1.334680977375293) +description = Long Beach CDP, MD +station = ('k2w6', 0.0026087313819319539) +zone = ('mdz018', 0.0021317349833706307) + +[fips2448775] +centroid = (0.68903579522791569, -1.3798393820952988) +description = Luke town, MD +station = ('kcbe', 0.0046658275941962668) +zone = ('wvz503', 0.0017797543432170402) + +[fips2448800] +centroid = (0.66957608965317228, -1.3340939882412624) +description = Lusby CDP, MD +station = ('knhk', 0.0012301291514323601) +zone = ('mdz017', 0.0025488311342784921) + +[fips2448875] +centroid = (0.68807806325417631, -1.3372306241597764) +description = Lutherville CDP, MD +station = ('kdmh', 0.0024545928521397496) +zone = ('mdz011', 0.0016227816816652865) + +[fips2449325] +centroid = (0.68859098061475243, -1.3783404060672237) +description = McCoole CDP, MD +station = ('kcbe', 0.0040186549833685871) +zone = ('wvz504', 0.0012667313287443851) + +[fips2449700] +centroid = (0.67210758501343493, -1.3300145778206984) +description = Madison CDP, MD +station = ('kcge', 0.0024399359441013638) +zone = ('mdz021', 0.0027278810590825298) + +[fips2449950] +centroid = (0.69208511232395264, -1.3419557714969932) +description = Manchester town, MD +station = ('kdmw', 0.0018026319406668813) +zone = ('mdz005', 0.002398636200193021) + +[fips2450375] +centroid = (0.69002817198730715, -1.355182609606892) +description = Mapleville CDP, MD +station = ('khgr', 0.0030973757568389273) +zone = ('mdz003', 0.0025523563988069571) + +[fips2450525] +centroid = (0.67120956075340632, -1.3221819415634757) +description = Mardela Springs town, MD +station = ('kcge', 0.0040173148544719412) +zone = ('mdz022', 0.0023673097966880412) + +[fips2450680] +centroid = (0.67808500608895761, -1.3388544086826617) +description = Marlboro Meadows CDP, MD +station = ('kadw', 0.0019884687589570536) +zone = ('mdz013', 0.0018403389910942611) + +[fips2450685] +centroid = (0.67772073842077385, -1.3398830882904946) +description = Marlboro Village CDP, MD +station = ('kadw', 0.0011191148699092098) +zone = ('mdz013', 0.0010055746310019108) + +[fips2450750] +centroid = (0.67755632840523605, -1.3429312883758102) +description = Marlow Heights CDP, MD +station = ('kadw', 0.0012846131196108464) +zone = ('mdz013', 0.0013806355504806876) + +[fips2450775] +centroid = (0.67650865961514139, -1.3401779267610343) +description = Marlton CDP, MD +station = ('kadw', 0.001298537677120035) +zone = ('mdz013', 0.0014505227054333386) + +[fips2450965] +centroid = (0.68032152335234064, -1.3451119027432521) +description = Martin's Additions village, MD +station = ('kdca', 0.0023130749894032074) +zone = ('dcz001', 0.0014329750805255202) + +[fips24510] +centroid = (0.68591813103837074, -1.3371057458517963) +description = Baltimore city, MD +station = ('kdmh', 0.00030611320678227192) +zone = ('mdz011', 0.00054094914602949708) + +[fips2451025] +centroid = (0.68265132846424292, -1.3220502041115352) +description = Marydel town, MD +station = ('kdov', 0.0038243244469838328) +zone = ('dez002', 0.0024689721425407373) + +[fips2451075] +centroid = (0.68245106938586908, -1.3405021042162997) +description = Maryland City CDP, MD +station = ('kfme', 0.00061032043808337125) +zone = ('mdz010', 0.0031187130367415997) + +[fips2451090000] +centroid = (0.68591813103837074, -1.3371057458517963) +description = Baltimore city, MD +station = ('kdmh', 0.00030611320678227192) +zone = ('mdz011', 0.00054094914602949708) + +[fips2451425] +centroid = (0.69278558276594793, -1.3569436293688617) +description = Maugansville CDP, MD +station = ('khgr', 0.00021568785863879502) +zone = ('mdz003', 0.0018107786902456526) + +[fips2451575] +centroid = (0.67900599888194257, -1.3354076277560682) +description = Mayo CDP, MD +station = ('knak', 0.0014398618627244045) +zone = ('mdz014', 0.00054159411155869214) + +[fips2451587] +centroid = (0.68823610281794445, -1.3377910493825917) +description = Mays Chapel CDP, MD +station = ('kdmh', 0.0026505371217356399) +zone = ('mdz011', 0.0018579908204706664) + +[fips2451800] +centroid = (0.67073699540513632, -1.3394540863603543) +description = Mechanicsville CDP, MD +station = ('k2w6', 0.0032918675150263588) +zone = ('mdz017', 0.00288679090998683) + +[fips2451860] +centroid = (0.67722078885654013, -1.3411393413794952) +description = Melwood CDP, MD +station = ('kadw', 0.00028189171971208473) +zone = ('mdz013', 0.00051395192013357102) + +[fips2451945] +centroid = (0.68939126643666937, -1.3572696917797193) +description = Mercersville CDP, MD +station = ('kmrb', 0.0034045975254132113) +zone = ('mdz003', 0.0019364053114550479) + +[fips2452225] +centroid = (0.69320404290740611, -1.3565375436118003) +description = Middleburg CDP, MD +station = ('khgr', 0.00033345427231637372) +zone = ('mdz003', 0.0023300854852611056) + +[fips2452300] +centroid = (0.68649785960271326, -1.3339842244846045) +description = Middle River CDP, MD +station = ('kmtn', 0.00020249227840856776) +zone = ('mdz011', 0.0024023923386991596) + +[fips2452425] +centroid = (0.68836227266957106, -1.3532501461524988) +description = Middletown town, MD +station = ('kfdk', 0.0022075245050820792) +zone = ('mdz004', 0.0019340001924069018) + +[fips2452475] +centroid = (0.69096459349087969, -1.3779036897817896) +description = Midland town, MD +station = ('kcbe', 0.0025581461624672999) +zone = ('mdz501', 0.0003389455132033682) + +[fips2452525] +centroid = (0.69170281540459577, -1.3779782677007273) +description = Midlothian CDP, MD +station = ('kcbe', 0.0025903069032553296) +zone = ('mdz501', 0.00061687202926094379) + +[fips2452562] +centroid = (0.68674059999508064, -1.3398720403563296) +description = Milford Mill CDP, MD +station = ('kdmh', 0.0023408865172750526) +zone = ('mdz010', 0.0027646621239221176) + +[fips2452825] +centroid = (0.68518519747228834, -1.3236570763939688) +description = Millington town, MD +station = ('kapg', 0.0057158249964032399) +zone = ('mdz012', 0.0026520098586808563) + +[fips2452975] +centroid = (0.6795689373788808, -1.3405568377416421) +description = Mitchellville CDP, MD +station = ('kcgs', 0.0016966044690608626) +zone = ('mdz013', 0.0018967138616997224) + +[fips2453100] +centroid = (0.68695220371359245, -1.3487012770697335) +description = Monrovia CDP, MD +station = ('kfdk', 0.0016820776210324979) +zone = ('mdz004', 0.0025751884299759411) + +[fips2453325] +centroid = (0.68394941709541368, -1.3475187292350448) +description = Montgomery Village CDP, MD +station = ('kgai', 0.00058721367518747814) +zone = ('mdz009', 0.00089307059788176638) + +[fips2453625] +centroid = (0.67771990066273291, -1.3419697864908866) +description = Morningside town, MD +station = ('kadw', 0.00058514365860377893) +zone = ('mdz013', 0.00062021193503664866) + +[fips2453700] +centroid = (0.6901908890334707, -1.3789078649669244) +description = Moscow CDP, MD +station = ('kcbe', 0.0035134708537164234) +zone = ('mdz501', 0.0014318668093194183) + +[fips2453750] +centroid = (0.69113083610213222, -1.3545983431864943) +description = Mount Aetna CDP, MD +station = ('krsp', 0.0021165114933744604) +zone = ('mdz003', 0.0027101110842240373) + +[fips2453800] +centroid = (0.68766019652466392, -1.3854593946465983) +description = Mountain Lake Park town, MD +station = ('k2g4', 0.0031892409123736765) +zone = ('mdz001', 0.0026678137821294547) + +[fips2453875] +centroid = (0.68721327006310573, -1.3465818190392815) +description = Mount Airy town, MD +station = ('kgai', 0.0035747985074365356) +zone = ('mdz010', 0.0036909666964903588) + +[fips2453925] +centroid = (0.68840272940163239, -1.3558999748360467) +description = Mount Briar CDP, MD +station = ('kmrb', 0.0040592639317783346) +zone = ('mdz003', 0.0032901825159297412) + +[fips2454125] +centroid = (0.69034803847932014, -1.3547575695741538) +description = Mount Lena CDP, MD +station = ('krsp', 0.0026415422136027772) +zone = ('mdz004', 0.0033346293006601643) + +[fips2454275] +centroid = (0.67967603078178318, -1.3432829198602096) +description = Mount Rainier city, MD +station = ('kcgs', 0.00088914679901022165) +zone = ('dcz001', 0.00089496207450546214) + +[fips2454325] +centroid = (0.6928462678640398, -1.3766533882655385) +description = Mount Savage CDP, MD +station = ('kcbe', 0.0021107709570700765) +zone = ('mdz501', 0.0018098852576215643) + +[fips2454375] +centroid = (0.66740612179416769, -1.3227031317847062) +description = Mount Vernon CDP, MD +station = ('ksby', 0.0042374285678521461) +zone = ('mdz023', 0.002179246663747021) + +[fips2454875] +centroid = (0.68958416022559976, -1.3538764924611622) +description = Myersville town, MD +station = ('krsp', 0.0027944671975259319) +zone = ('mdz004', 0.0024269991452099122) + +[fips2454925] +centroid = (0.66785877293567253, -1.3244775556753312) +description = Nanticoke CDP, MD +station = ('kcge', 0.0051751029615583564) +zone = ('mdz023', 0.0032175662215551213) + +[fips2454930] +centroid = (0.66772539487423499, -1.3248068643985977) +description = Nanticoke Acres CDP, MD +station = ('kcge', 0.0052091041838012182) +zone = ('mdz023', 0.0032808336939967363) + +[fips2455000] +centroid = (0.69135643736124497, -1.3777715683574137) +description = National CDP, MD +station = ('kcbe', 0.002416389258172899) +zone = ('mdz501', 0.00024250766509255437) + +[fips2455018] +centroid = (0.67697532575053965, -1.3440774460955949) +description = National Harbor CDP, MD +station = ('kdca', 0.0011306619263569708) +zone = ('vaz054', 0.0017174270062623282) + +[fips2455050] +centroid = (0.68037613470463565, -1.3348554230340299) +description = Naval Academy CDP, MD +station = ('knak', 2.6347317834151606e-05) +zone = ('mdz014', 0.0010717876155691517) + +[fips2455325] +centroid = (0.66790460528182982, -1.314037362609044) +description = Newark CDP, MD +station = ('koxb', 0.0025055231731532027) +zone = ('mdz024', 0.0016011658885626634) + +[fips2455400] +centroid = (0.68008944692170303, -1.3417550237264289) +description = New Carrollton city, MD +station = ('kcgs', 0.00063211081976504596) +zone = ('dcz001', 0.0021172351736073935) + +[fips2455650] +centroid = (0.68743431601287075, -1.3486634383315503) +description = New Market town, MD +station = ('kfdk', 0.0014709706016498283) +zone = ('mdz004', 0.0022502497636315809) + +[fips2455925] +centroid = (0.69017052104109988, -1.3456613323917797) +description = New Windsor town, MD +station = ('kdmw', 0.0016798395191252853) +zone = ('mdz005', 0.0011022567505838258) + +[fips2455950] +centroid = (0.6903050859264287, -1.3787704901015001) +description = Nikep CDP, MD +station = ('kcbe', 0.0033749808790486252) +zone = ('mdz501', 0.0012764551201439806) + +[fips2456300] +centroid = (0.67557743919273971, -1.3357790163676) +description = North Beach town, MD +station = ('kadw', 0.0046957931046075659) +zone = ('mdz018', 0.0027719478137105918) + +[fips2456337] +centroid = (0.68131952007192353, -1.3460022650078645) +description = North Bethesda CDP, MD +station = ('kgai', 0.0024215844490842204) +zone = ('mdz009', 0.0020761059039467959) + +[fips2456375] +centroid = (0.67971709837908256, -1.3430444904310948) +description = North Brentwood town, MD +station = ('kcgs', 0.00074117402062338173) +zone = ('dcz001', 0.0010664736570674183) + +[fips2456400] +centroid = (0.68071666589499225, -1.3452007050955936) +description = North Chevy Chase village, MD +station = ('kcgs', 0.0021289915622751581) +zone = ('dcz001', 0.0018126089515905243) + +[fips2456450] +centroid = (0.69133121735355363, -1.3253940455188462) +description = North East town, MD +station = ('kapg', 0.0039547659348351935) +zone = ('mdz008', 0.00061908321365855567) + +[fips2456712] +centroid = (0.68136250753140015, -1.3451525165549458) +description = North Kensington CDP, MD +station = ('kgai', 0.0026437402971865825) +zone = ('dcz001', 0.0023952398905152626) + +[fips2456725] +centroid = (0.68307485006053192, -1.3410767887791037) +description = North Laurel CDP, MD +station = ('kfme', 0.0013496816475009592) +zone = ('mdz010', 0.002352815425734765) + +[fips2456875] +centroid = (0.68236736339494342, -1.3480661866615178) +description = North Potomac CDP, MD +station = ('kgai', 0.0015791228074863444) +zone = ('mdz009', 0.0008324849088326093) + +[fips2457650] +centroid = (0.68794304458324207, -1.3859240885599418) +description = Oakland town, MD +station = ('k2g4', 0.0029997690406506341) +zone = ('mdz001', 0.0026628830380737824) + +[fips2458215] +centroid = (0.69117808216498366, -1.3778505445060663) +description = Ocean CDP, MD +station = ('kcbe', 0.0024881526920541332) +zone = ('mdz501', 0.00022351926710278977) + +[fips2458225] +centroid = (0.66995906725093735, -1.3101049438180832) +description = Ocean City town, MD +station = ('koxb', 0.0014095762530489857) +zone = ('mdz025', 0.0026975775036663001) + +[fips2458275] +centroid = (0.66989890575162114, -1.3114503308719831) +description = Ocean Pines CDP, MD +station = ('koxb', 0.0011926645405301527) +zone = ('mdz025', 0.0023080861732218982) + +[fips2458300] +centroid = (0.68183273413847256, -1.3385594305857822) +description = Odenton CDP, MD +station = ('kfme', 0.0010318292208599848) +zone = ('mdz014', 0.0032337909985826695) + +[fips2458775] +centroid = (0.69015261396297434, -1.3720998591536704) +description = Oldtown CDP, MD +station = ('kcbe', 0.0023279327456040026) +zone = ('mdz502', 0.0015485413949923672) + +[fips2458900] +centroid = (0.68319747689377697, -1.3451497938413128) +description = Olney CDP, MD +station = ('kgai', 0.0014075264261130566) +zone = ('mdz009', 0.0018017160479100311) + +[fips2459325] +centroid = (0.68703426909502119, -1.3354837939246254) +description = Overlea CDP, MD +station = ('kmtn', 0.0014644976301073076) +zone = ('mdz011', 0.0013687048433991638) + +[fips2459375] +centroid = (0.67566186076865875, -1.3369753523033796) +description = Owings CDP, MD +station = ('kadw', 0.0038203821365424694) +zone = ('mdz018', 0.0028514409093311779) + +[fips2459425] +centroid = (0.68784342118953823, -1.3402288729218998) +description = Owings Mills CDP, MD +station = ('kdmh', 0.0032197824835092782) +zone = ('mdz011', 0.0027938714607556249) + +[fips2459450] +centroid = (0.67518531606969423, -1.3294431395703028) +description = Oxford town, MD +station = ('kesn', 0.0024587783039085862) +zone = ('mdz019', 0.00188163260567408) + +[fips2459500] +centroid = (0.6768457699601641, -1.3433774468924977) +description = Oxon Hill CDP, MD +station = ('kdca', 0.0014901305513460369) +zone = ('mdz013', 0.0019333571861962057) + +[fips2459787] +centroid = (0.69254258057419282, -1.3559831746814894) +description = Paramount-Long Meadow CDP, MD +station = ('khgr', 0.00065664853159243719) +zone = ('mdz003', 0.0021106664548823811) + +[fips2460275] +centroid = (0.68736664959777105, -1.3360827211107398) +description = Parkville CDP, MD +station = ('kdmh', 0.0019501194703274809) +zone = ('mdz011', 0.001195923478411342) + +[fips2460325] +centroid = (0.68046460544441922, -1.3360984116207153) +description = Parole CDP, MD +station = ('knak', 0.00094556873354508409) +zone = ('mdz014', 0.0010131084452682745) + +[fips2460425] +centroid = (0.67007904118371953, -1.3172895916839178) +description = Parsonsburg CDP, MD +station = ('ksby', 0.0010906093053379149) +zone = ('mdz022', 0.0020000505240531283) + +[fips2460475] +centroid = (0.68338789231516961, -1.3360998602439942) +description = Pasadena CDP, MD +station = ('kbwi', 0.0017765895735636164) +zone = ('mdz011', 0.00316529115338148) + +[fips2460770] +centroid = (0.69230179495058763, -1.3621977860023582) +description = Pecktonville CDP, MD +station = ('kmrb', 0.0047234369110900403) +zone = ('wvz051', 0.0033672356311749102) + +[fips2460950] +centroid = (0.67882769604555881, -1.3419440603377122) +description = Peppermill Village CDP, MD +station = ('kadw', 0.0014432396980007846) +zone = ('mdz013', 0.0012473088146279891) + +[fips2460975] +centroid = (0.68777737793064275, -1.3347892925086717) +description = Perry Hall CDP, MD +station = ('kmtn', 0.0015237120991758123) +zone = ('mdz011', 0.0022138476424740385) + +[fips2461075] +centroid = (0.68876720650932632, -1.3300957879907938) +description = Perryman CDP, MD +station = ('kapg', 0.00057147913570874476) +zone = ('mdz007', 0.0031407905136531015) + +[fips2461150] +centroid = (0.69066437940624414, -1.3276379804315503) +description = Perryville town, MD +station = ('kapg', 0.0022698972351090506) +zone = ('mdz007', 0.0017108299128059203) + +[fips2461400] +centroid = (0.68751018547545495, -1.3386848499458306) +description = Pikesville CDP, MD +station = ('kdmh', 0.0022034667541921144) +zone = ('mdz011', 0.0016205119393081654) + +[fips2461700] +centroid = (0.69161972027890828, -1.3588456542811) +description = Pinesburg CDP, MD +station = ('khgr', 0.0020856122159430834) +zone = ('mdz003', 0.00069390740968348376) + +[fips2461875] +centroid = (0.66585457644902235, -1.3355248964285098) +description = Piney Point CDP, MD +station = ('knui', 0.001417487482924275) +zone = ('mdz017', 0.0029461794869282314) + +[fips2462025] +centroid = (0.67011419211485457, -1.3161141473392848) +description = Pittsville town, MD +station = ('ksby', 0.0016553504736909566) +zone = ('mdz024', 0.0031683795501758487) + +[fips2462100] +centroid = (0.69255130722045277, -1.3734051036347741) +description = Pleasant Grove CDP, MD +station = ('kcbe', 0.0014780544839634651) +zone = ('mdz502', 0.0015263638808278904) + +[fips2462175] +centroid = (0.6891641292878149, -1.3333252928788064) +description = Pleasant Hills CDP, MD +station = ('kmtn', 0.0026855439672299306) +zone = ('mdz011', 0.0039721271535844834) + +[fips2462475] +centroid = (0.66432339909624771, -1.318662851645972) +description = Pocomoke City city, MD +station = ('kwal', 0.0025598069602052165) +zone = ('mdz023', 0.0028000857465749294) + +[fips2462575] +centroid = (0.68553206420782964, -1.3531391432120721) +description = Point of Rocks CDP, MD +station = ('kfdk', 0.0032063225197528126) +zone = ('vaz042', 0.0035741276938215097) + +[fips2462675] +centroid = (0.673171816978131, -1.3444336154360494) +description = Pomfret CDP, MD +station = ('kdaa', 0.0033028899292040772) +zone = ('mdz016', 0.0031726122882591331) + +[fips2462775] +centroid = (0.69155896536764638, -1.35422922350299) +description = Pondsville CDP, MD +station = ('krsp', 0.0016992645592815848) +zone = ('mdz004', 0.0037078040694281441) + +[fips2462850] +centroid = (0.68315583333782437, -1.3510667392582538) +description = Poolesville town, MD +station = ('kjyo', 0.0023502063849770469) +zone = ('vaz042', 0.0031789997971755223) + +[fips2463075] +centroid = (0.69133479527852015, -1.3281619631795838) +description = Port Deposit town, MD +station = ('kapg', 0.002675833341506337) +zone = ('mdz007', 0.00097941513923494169) + +[fips2463225] +centroid = (0.67213922783277369, -1.3442440552259902) +description = Port Tobacco Village town, MD +station = ('knyg', 0.0038355211240306357) +zone = ('mdz016', 0.0021334879785814974) + +[fips2463300] +centroid = (0.68091109557366436, -1.3472821149483518) +description = Potomac CDP, MD +station = ('kgai', 0.0027529642193072118) +zone = ('mdz009', 0.0021509255485554447) + +[fips2463375] +centroid = (0.67368255267714217, -1.346306545709657) +description = Potomac Heights CDP, MD +station = ('kdaa', 0.0021430582592900948) +zone = ('mdz016', 0.0041979030324916199) + +[fips2463425] +centroid = (0.69137008583599557, -1.3754634576881137) +description = Potomac Park CDP, MD +station = ('kcbe', 0.00063927021757966126) +zone = ('mdz501', 0.0016271475430956709) + +[fips2463725] +centroid = (0.66900711231702203, -1.3156079145897439) +description = Powellville CDP, MD +station = ('ksby', 0.0016599739487076336) +zone = ('mdz024', 0.0020444391925543929) + +[fips2463825] +centroid = (0.67561927473491012, -1.3248367444353919) +description = Preston town, MD +station = ('kesn', 0.0026739493847314608) +zone = ('mdz020', 0.003002751062851992) + +[fips2463950] +centroid = (0.67271605915055765, -1.3367111269079204) +description = Prince Frederick CDP, MD +station = ('k2w6', 0.0039401215364734156) +zone = ('mdz018', 0.00028216124553142555) + +[fips2464000] +centroid = (0.66680459406746795, -1.3211519529587039) +description = Princess Anne town, MD +station = ('ksby', 0.0035006936935667622) +zone = ('mdz023', 0.00164636753271777) + +[fips2464375] +centroid = (0.69268489472140049, -1.3332295615693344) +description = Pylesville CDP, MD +station = ('kapg', 0.0048797110391039338) +zone = ('mdz007', 0.0031768094900562517) + +[fips2464475] +centroid = (0.66980062626144132, -1.3221320600534539) +description = Quantico CDP, MD +station = ('ksby', 0.0035391099675169176) +zone = ('mdz022', 0.0018245044603111393) + +[fips2464495] +centroid = (0.67904568766913287, -1.3387768637039958) +description = Queen Anne CDP, MD +station = ('kadw', 0.0025042859713013976) +zone = ('mdz013', 0.0022810682052257338) + +[fips2464500] +centroid = (0.67926626237999987, -1.3256390373859486) +description = Queen Anne town, MD +station = ('kesn', 0.0025854901361385104) +zone = ('mdz020', 0.0018499969975568561) + +[fips2464535] +centroid = (0.67727929229306694, -1.3402603237550206) +description = Queenland CDP, MD +station = ('kadw', 0.00082335596755794219) +zone = ('mdz013', 0.00084461646387538371) + +[fips2464600] +centroid = (0.68043716886857786, -1.3294066098290587) +description = Queenstown town, MD +station = ('kw29', 0.0021816884523471196) +zone = ('mdz015', 0.0025080542606980734) + +[fips2464950] +centroid = (0.68716921795278529, -1.3404468645454739) +description = Randallstown CDP, MD +station = ('kdmh', 0.0029404731280038474) +zone = ('mdz010', 0.0027409514096648721) + +[fips2465150] +centroid = (0.69010793353412336, -1.3768143076225723) +description = Rawlings CDP, MD +station = ('kcbe', 0.0021290780910505481) +zone = ('mdz501', 0.0012135796954476756) + +[fips2465312] +centroid = (0.68301435694865775, -1.3464357000743046) +description = Redland CDP, MD +station = ('kgai', 0.00071556468269771316) +zone = ('mdz009', 0.00080011460542817048) + +[fips2465550] +centroid = (0.69311401882458823, -1.3557597899905267) +description = Reid CDP, MD +station = ('khgr', 0.00075747575818477426) +zone = ('mdz003', 0.0026251276456715311) + +[fips2465600] +centroid = (0.68860415785060503, -1.3406925196376922) +description = Reisterstown CDP, MD +station = ('kdmw', 0.0037710293745201969) +zone = ('mdz006', 0.002544287792192919) + +[fips2466000] +centroid = (0.67989053174685332, -1.3243631493428631) +description = Ridgely town, MD +station = ('kesn', 0.0037025523820418526) +zone = ('mdz020', 0.0015950704299755494) + +[fips2466150] +centroid = (0.6930557422808642, -1.3538325625238894) +description = Ringgold CDP, MD +station = ('krsp', 0.001682563938211871) +zone = ('mdz003', 0.0037753760136227696) + +[fips2466275] +centroid = (0.69294531529909043, -1.327512299272114) +description = Rising Sun town, MD +station = ('kapg', 0.0043608470997458402) +zone = ('mdz007', 0.0017361659611556625) + +[fips2466400] +centroid = (0.67972348628414492, -1.3367481278880624) +description = Riva CDP, MD +station = ('knak', 0.0015928921757388226) +zone = ('mdz014', 0.00086890760584477532) + +[fips2466635] +centroid = (0.68003665071183028, -1.3426041264075239) +description = Riverdale Park town, MD +station = ('kcgs', 0.00030222490137844701) +zone = ('dcz001', 0.0015321546320851442) + +[fips2466762] +centroid = (0.68907775294313378, -1.330633855545891) +description = Riverside CDP, MD +station = ('kapg', 0.0010163636243805622) +zone = ('mdz007', 0.0029605152128937993) + +[fips2466850] +centroid = (0.68355024284219001, -1.335655412149974) +description = Riviera Beach CDP, MD +station = ('kdmh', 0.0023988677635187351) +zone = ('mdz011', 0.0031135741262117884) + +[fips2467000] +centroid = (0.69161321020079836, -1.3554751966026963) +description = Robinwood CDP, MD +station = ('khgr', 0.0015929823681878775) +zone = ('mdz003', 0.0020714288599095118) + +[fips2467400] +centroid = (0.68308851598857501, -1.3306595642457728) +description = Rock Hall town, MD +station = ('kw29', 0.0030103308763083235) +zone = ('mdz012', 0.0034673979655609989) + +[fips2467500] +centroid = (0.66803327095428677, -1.3411591508665053) +description = Rock Point CDP, MD +station = ('k2w6', 0.0040845873107560049) +zone = ('mdz016', 0.0027808831859071578) + +[fips2467675] +centroid = (0.68213832383720419, -1.3466195705110025) +description = Rockville city, MD +station = ('kgai', 0.0015196713073683261) +zone = ('mdz009', 0.0011294214451956174) + +[fips2467950] +centroid = (0.68826868811507924, -1.3555176081035196) +description = Rohrersville CDP, MD +station = ('kmrb', 0.0043293405858701658) +zone = ('wvz053', 0.0034679344839609518) + +[fips2468300] +centroid = (0.67662378153260294, -1.3409027619993874) +description = Rosaryville CDP, MD +station = ('kadw', 0.00090542001073423554) +zone = ('mdz013', 0.0011301758454591096) + +[fips2468400] +centroid = (0.68638841000532069, -1.3353230840071015) +description = Rosedale CDP, MD +station = ('kmtn', 0.0012427906636776358) +zone = ('mdz011', 0.0013683725522723421) + +[fips2468600] +centroid = (0.68650307813717659, -1.3547727364853537) +description = Rosemont village, MD +station = ('kfdk', 0.0036552833079749204) +zone = ('wvz053', 0.0032729628461302001) + +[fips2468700] +centroid = (0.68690071650065854, -1.3347911251043862) +description = Rossville CDP, MD +station = ('kmtn', 0.00092016141859576359) +zone = ('mdz011', 0.0018317320782130035) + +[fips2469200] +centroid = (0.6928498806955915, -1.3518653844706741) +description = Sabillasville CDP, MD +station = ('kryt', 0.00066918334130913477) +zone = ('mdz004', 0.0040069262622393527) + +[fips2469425] +centroid = (0.66524166917559957, -1.3347748411824654) +description = St. George Island CDP, MD +station = ('knui', 0.0010232239850558149) +zone = ('mdz017', 0.0037579621222201048) + +[fips2469550] +centroid = (0.69069336932511982, -1.3569628454439262) +description = St. James CDP, MD +station = ('khgr', 0.0022114435610590569) +zone = ('mdz003', 0.0010290963403936429) + +[fips2469675] +centroid = (0.67138123133863248, -1.3351520242871138) +description = St. Leonard CDP, MD +station = ('k2w6', 0.0026655558218755021) +zone = ('mdz018', 0.0017577578955971234) + +[fips2469825] +centroid = (0.67698663548409255, -1.3303366434275687) +description = St. Michaels town, MD +station = ('kesn', 0.002131706932694924) +zone = ('mdz019', 0.0017852490816798871) + +[fips2469925] +centroid = (0.6698026857499586, -1.3192665086743594) +description = Salisbury city, MD +station = ('ksby', 0.0014287177242202703) +zone = ('mdz022', 0.00042635280642531142) + +[fips2470175] +centroid = (0.68641195449693004, -1.3562106085363168) +description = Sandy Hook CDP, MD +station = ('kmrb', 0.0039557374979225408) +zone = ('wvz053', 0.0021598121196913533) + +[fips2470300] +centroid = (0.69031876930776426, -1.3550866863112023) +description = San Mar CDP, MD +station = ('krsp', 0.0028595453199110883) +zone = ('mdz003', 0.0024995088385383834) + +[fips2470475] +centroid = (0.68323466986013692, -1.3407905024218991) +description = Savage CDP, MD +station = ('kfme', 0.0013297095939233032) +zone = ('mdz010', 0.0023530683850878421) + +[fips2470530] +centroid = (0.68305463914779374, -1.3416203715746373) +description = Scaggsville CDP, MD +station = ('kfme', 0.0016665170969184029) +zone = ('mdz010', 0.0021745565928110114) + +[fips2470775] +centroid = (0.68036618632789936, -1.3413049905788019) +description = Seabrook CDP, MD +station = ('kcgs', 0.00093531537233346206) +zone = ('dcz001', 0.0025572698667045883) + +[fips2470850] +centroid = (0.67885125799046064, -1.3421827690195076) +description = Seat Pleasant city, MD +station = ('kcgs', 0.0014994795848089228) +zone = ('mdz013', 0.0013657810098584742) + +[fips2470900] +centroid = (0.67384479848440748, -1.3255312982112231) +description = Secretary town, MD +station = ('kcge', 0.0016430668884444817) +zone = ('mdz021', 0.0023917186024461929) + +[fips2471150] +centroid = (0.68304587759494872, -1.3385623627389256) +description = Severn CDP, MD +station = ('kbwi', 0.00056024024629285616) +zone = ('mdz011', 0.0035986177609227594) + +[fips2471200] +centroid = (0.68219089315427428, -1.3363208887404667) +description = Severna Park CDP, MD +station = ('kbwi', 0.0021197138105687663) +zone = ('mdz014', 0.0027297693465236773) + +[fips2471450] +centroid = (0.6776697922599082, -1.3354953654575661) +description = Shady Side CDP, MD +station = ('knak', 0.0027587887554848772) +zone = ('mdz014', 0.0018440117161210947) + +[fips2471460] +centroid = (0.69153442603836324, -1.3777452138857085) +description = Shaft CDP, MD +station = ('kcbe', 0.0023980257063864548) +zone = ('mdz501', 0.00038512991699374418) + +[fips2471600] +centroid = (0.68866400519065585, -1.3569838592081203) +description = Sharpsburg town, MD +station = ('kmrb', 0.0033091232981637009) +zone = ('mdz003', 0.0026957667710113646) + +[fips2471650] +centroid = (0.67262069436022875, -1.3215497134952334) +description = Sharptown town, MD +station = ('kcge', 0.0042427475074518295) +zone = ('mdz022', 0.0031813185179994465) + +[fips2472350] +centroid = (0.67788390925254283, -1.3428308272240657) +description = Silver Hill CDP, MD +station = ('kadw', 0.0012702176450335441) +zone = ('dcz001', 0.001592424697757811) + +[fips2472450] +centroid = (0.68072101176482969, -1.3442663954404159) +description = Silver Spring CDP, MD +station = ('kcgs', 0.0014222669074479587) +zone = ('dcz001', 0.0016277872424162771) + +[fips2472887] +centroid = (0.66282752975424097, -1.326952729260632) +description = Smith Island CDP, MD +station = ('kmfv', 0.006758616751005129) +zone = ('mdz023', 0.004618532793698958) + +[fips2472900] +centroid = (0.69210708601923521, -1.3540250374337992) +description = Smithsburg town, MD +station = ('krsp', 0.0014794728330791032) +zone = ('mdz004', 0.004017874960391128) + +[fips2473075] +centroid = (0.66612042500068613, -1.3159136264615232) +description = Snow Hill town, MD +station = ('ksby', 0.0032497866536259591) +zone = ('mdz024', 0.00086182912380012731) + +[fips2473325] +centroid = (0.66914333526514025, -1.3345119247839448) +description = Solomons CDP, MD +station = ('knhk', 0.001088075690162069) +zone = ('mdz017', 0.0020904163387115075) + +[fips2473350] +centroid = (0.68009506688189447, -1.3455849044238348) +description = Somerset town, MD +station = ('kdca', 0.0022072523377964976) +zone = ('dcz001', 0.001493518786877128) + +[fips2473600] +centroid = (0.68095514768398469, -1.3450612009284815) +description = South Kensington CDP, MD +station = ('kcgs', 0.0020811609187414144) +zone = ('dcz001', 0.0019878427209366477) + +[fips2473650] +centroid = (0.68175162868813233, -1.3412193123658216) +description = South Laurel CDP, MD +station = ('kfme', 0.0011431832190679082) +zone = ('mdz010', 0.0035032045544774455) + +[fips2474050] +centroid = (0.68277322225920223, -1.3436160334012455) +description = Spencerville CDP, MD +station = ('kcgs', 0.0025911362611714963) +zone = ('mdz010', 0.0023918645326746093) + +[fips2474282] +centroid = (0.67960209863466869, -1.341150616206463) +description = Springdale CDP, MD +station = ('kcgs', 0.0012813029640935678) +zone = ('mdz013', 0.0018681481911246524) + +[fips2474350] +centroid = (0.69054538285784317, -1.3736671822752538) +description = Spring Gap CDP, MD +station = ('kcbe', 0.0011476115383843818) +zone = ('mdz502', 0.0018471816405146735) + +[fips2474560] +centroid = (0.68774552567179392, -1.3498046044096741) +description = Spring Ridge CDP, MD +station = ('kfdk', 0.00053696695036344663) +zone = ('mdz004', 0.0014258260941552635) + +[fips2475025] +centroid = (0.68023427434303352, -1.3320068013486799) +description = Stevensville CDP, MD +station = ('kw29', 0.0001842455944905448) +zone = ('mdz014', 0.002936227749003741) + +[fips2475200] +centroid = (0.6643665087287719, -1.3161250207405248) +description = Stockton CDP, MD +station = ('kwal', 0.0024402399311213635) +zone = ('mdz024', 0.0026198741377134608) + +[fips2475650] +centroid = (0.68389108819181199, -1.3239285972657016) +description = Sudlersville town, MD +station = ('kapg', 0.006478682908812798) +zone = ('mdz012', 0.002757940266775331) + +[fips2475725] +centroid = (0.67804146012412037, -1.3425574213967404) +description = Suitland CDP, MD +station = ('kadw', 0.0011394768200854368) +zone = ('mdz013', 0.0011206695012326814) + +[fips2475810] +centroid = (0.67901228206724973, -1.3416048905041722) +description = Summerfield CDP, MD +station = ('kcgs', 0.0014923921630805969) +zone = ('mdz013', 0.0013215712180668167) + +[fips2476450] +centroid = (0.68870454918917978, -1.382871385525156) +description = Swanton CDP, MD +station = ('k2g4', 0.0025463001397179764) +zone = ('mdz001', 0.0013218219600992392) + +[fips2476550] +centroid = (0.68717337183640514, -1.3434107128680406) +description = Sykesville town, MD +station = ('kdmw', 0.0041833663667773932) +zone = ('mdz010', 0.0021829833475635017) + +[fips2476650] +centroid = (0.68033461332173073, -1.3439439284078174) +description = Takoma Park city, MD +station = ('kcgs', 0.0011168261075884865) +zone = ('dcz001', 0.001250388752586656) + +[fips2476675] +centroid = (0.66618840557505132, -1.3358625129190154) +description = Tall Timbers CDP, MD +station = ('knui', 0.001717781763285117) +zone = ('mdz017', 0.002535054354730097) + +[fips2476725] +centroid = (0.69213296925204226, -1.3468498317992179) +description = Taneytown city, MD +station = ('kdmw', 0.0022824873998956614) +zone = ('mdz005', 0.0025506102191016032) + +[fips2476925] +centroid = (0.67144797272922863, -1.3319656290316251) +description = Taylors Island CDP, MD +station = ('knhk', 0.0032002696147699137) +zone = ('mdz021', 0.0042113293830153328) + +[fips2477100] +centroid = (0.67737186455659282, -1.3430217313376487) +description = Temple Hills CDP, MD +station = ('kadw', 0.0013570360670040085) +zone = ('mdz013', 0.0014845724709476892) + +[fips2477200] +centroid = (0.68304425443874439, -1.3223883616541092) +description = Templeville town, MD +station = ('kdov', 0.0040697611396398542) +zone = ('dez002', 0.0028197924667799348) + +[fips2477825] +centroid = (0.69149819300309201, -1.3510032965399439) +description = Thurmont town, MD +station = ('krsp', 0.00099869564135327753) +zone = ('mdz004', 0.0025809893294001119) + +[fips2477912] +centroid = (0.67549807907165171, -1.3323194596308821) +description = Tilghman Island CDP, MD +station = ('kesn', 0.0040401000647189329) +zone = ('mdz018', 0.004141024669121334) + +[fips2477925] +centroid = (0.68990423615712315, -1.3568832584300352) +description = Tilghmanton CDP, MD +station = ('khgr', 0.0029947122309733148) +zone = ('mdz003', 0.0016180693431048891) + +[fips2478050] +centroid = (0.688429136233215, -1.3370546775178829) +description = Timonium CDP, MD +station = ('kdmh', 0.0028083004971173869) +zone = ('mdz006', 0.0019289621201318175) + +[fips2478120] +centroid = (0.68448774644989885, -1.3304722555104489) +description = Tolchester CDP, MD +station = ('kmtn', 0.0032193126094580927) +zone = ('mdz012', 0.0027132212763410946) + +[fips2478425] +centroid = (0.68752746423504973, -1.337297609896468) +description = Towson CDP, MD +station = ('kdmh', 0.0019050781211922643) +zone = ('mdz011', 0.001080542303319142) + +[fips2478575] +centroid = (0.67479179668324718, -1.3273672624112733) +description = Trappe town, MD +station = ('kcge', 0.0021638589722690052) +zone = ('mdz019', 0.0020163778814613867) + +[fips2478650] +centroid = (0.68149740402928694, -1.3483720730662223) +description = Travilah CDP, MD +station = ('kgai', 0.0024436860309010647) +zone = ('mdz009', 0.0017111625532596829) + +[fips2478705] +centroid = (0.68816773827114386, -1.3556819308525949) +description = Trego-Rohrersville Station CDP, MD +station = ('kmrb', 0.0041904328931115361) +zone = ('wvz053', 0.0033058060345445544) + +[fips2479225] +centroid = (0.6688172903075752, -1.3242272929138879) +description = Tyaskin CDP, MD +station = ('kcge', 0.0043952214810226075) +zone = ('mdz021', 0.0033431864168090701) + +[fips2479350] +centroid = (0.6906624769973595, -1.346898142512913) +description = Union Bridge town, MD +station = ('kdmw', 0.0022719156314469791) +zone = ('mdz005', 0.0020091354259346907) + +[fips2479675] +centroid = (0.68018990807344781, -1.3429378857203829) +description = University Park town, MD +station = ('kcgs', 0.00036264891447072996) +zone = ('dcz001', 0.0014488162824064601) + +[fips2479875] +centroid = (0.67749244935461306, -1.3396254427863155) +description = Upper Marlboro town, MD +station = ('kadw', 0.0012935329633835444) +zone = ('mdz013', 0.0012302570837697086) + +[fips2479900] +centroid = (0.68621480210462471, -1.3499166545476522) +description = Urbana CDP, MD +station = ('kfdk', 0.0017963020335772237) +zone = ('mdz004', 0.0027998967100438571) + +[fips2480075] +centroid = (0.69145134836596844, -1.3772285091606555) +description = Vale Summit CDP, MD +station = ('kcbe', 0.0019974934599306759) +zone = ('mdz501', 0.00037537427039114956) + +[fips2480600] +centroid = (0.67168863617978625, -1.3234273736111137) +description = Vienna town, MD +station = ('kcge', 0.0029367784560155388) +zone = ('mdz021', 0.0024771421939819953) + +[fips2481175] +centroid = (0.67385741721489945, -1.3425033860030988) +description = Waldorf CDP, MD +station = ('kadw', 0.003743830770833153) +zone = ('mdz016', 0.0038763455594035289) + +[fips2481250] +centroid = (0.67859973859195577, -1.3418805827128173) +description = Walker Mill CDP, MD +station = ('kadw', 0.0012131089506066805) +zone = ('mdz013', 0.0010258365085026705) + +[fips2481275] +centroid = (0.6891361342066129, -1.3500602253319214) +description = Walkersville town, MD +station = ('kfdk', 0.0012069150434047499) +zone = ('mdz004', 0.00064805158001608699) + +[fips2481675] +centroid = (0.68313406908205199, -1.3469496995390169) +description = Washington Grove town, MD +station = ('kgai', 0.00051506562104717841) +zone = ('mdz009', 0.00040755057963857993) + +[fips2481925] +centroid = (0.66756637792608586, -1.3247050593433287) +description = Waterview CDP, MD +station = ('kcge', 0.0053855328178278273) +zone = ('mdz023', 0.0031098214935108338) + +[fips2482625] +centroid = (0.67874983690762736, -1.3236391169559658) +description = West Denton CDP, MD +station = ('kesn', 0.003467453693945112) +zone = ('mdz020', 0.00032586585140711104) + +[fips2482750] +centroid = (0.68918390386824002, -1.3795360089647173) +description = Westernport town, MD +station = ('kcbe', 0.0043888759163230777) +zone = ('wvz503', 0.0020196779234177261) + +[fips2483025] +centroid = (0.68269887123306716, -1.3420353410575916) +description = West Laurel CDP, MD +station = ('kfme', 0.0018018257647062468) +zone = ('mdz010', 0.0024172116791208874) + +[fips2483100] +centroid = (0.69079477295466063, -1.34405116143706) +description = Westminster city, MD +station = ('kdmw', 0.00053054870457832541) +zone = ('mdz005', 0.00034625293969573867) + +[fips2483225] +centroid = (0.66928702822245689, -1.3109384956155432) +description = West Ocean City CDP, MD +station = ('koxb', 0.00054016463590564876) +zone = ('mdz025', 0.00180791655082505) + +[fips2483290] +centroid = (0.67788846456189056, -1.3408325997634571) +description = Westphalia CDP, MD +station = ('kadw', 0.00054079338119430379) +zone = ('mdz013', 0.0003074037118305184) + +[fips2483337] +centroid = (0.66490726409091738, -1.3191213147338858) +description = West Pocomoke CDP, MD +station = ('kwal', 0.0032450307708282227) +zone = ('mdz023', 0.0022970225467365867) + +[fips2483746] +centroid = (0.66998018573488649, -1.3141899567455462) +description = Whaleyville CDP, MD +station = ('koxb', 0.0027635311451316732) +zone = ('mdz025', 0.0030322619161641659) + +[fips2483775] +centroid = (0.68154217172460052, -1.3449194627399272) +description = Wheaton CDP, MD +station = ('kcgs', 0.0022324286115564256) +zone = ('dcz001', 0.0025172992912969087) + +[fips2484225] +centroid = (0.66793333340131766, -1.322867768693047) +description = Whitehaven CDP, MD +station = ('ksby', 0.0041866478376948605) +zone = ('mdz023', 0.0027220156507556359) + +[fips2484350] +centroid = (0.68733771203877281, -1.3344472079752807) +description = White Marsh CDP, MD +station = ('kmtn', 0.0010110554840909826) +zone = ('mdz011', 0.0022242232286269559) + +[fips2484375] +centroid = (0.68143340280561626, -1.3437480675591587) +description = White Oak CDP, MD +station = ('kcgs', 0.0014657744861069572) +zone = ('dcz001', 0.0023596633585670134) + +[fips2484950] +centroid = (0.67006993056502406, -1.315093356619671) +description = Willards town, MD +station = ('ksby', 0.0023039394911853021) +zone = ('mdz024', 0.0031410327579927226) + +[fips2485100] +centroid = (0.69110605242675383, -1.3581745577304158) +description = Williamsport town, MD +station = ('khgr', 0.0021183460557384214) +zone = ('mdz003', 0.00011848465563673579) + +[fips2485175] +centroid = (0.67772873202874806, -1.3238472649225586) +description = Williston CDP, MD +station = ('kesn', 0.0029841971901223272) +zone = ('mdz020', 0.00075665317548263638) + +[fips2485395] +centroid = (0.69204481267152396, -1.3583386535866884) +description = Wilson-Conococheague CDP, MD +station = ('khgr', 0.0015197580338529213) +zone = ('mdz003', 0.00084769957009754235) + +[fips2486275] +centroid = (0.69129257576391456, -1.3779340585107742) +description = Woodland CDP, MD +station = ('kcbe', 0.0025439189924405434) +zone = ('mdz501', 0.00031034671545426585) + +[fips2486475] +centroid = (0.68601077311506675, -1.3395020480081994) +description = Woodlawn CDP, MD +station = ('kdmh', 0.0018132620183521149) +zone = ('mdz011', 0.0019192944903148972) + +[fips2486525] +centroid = (0.67981145087844541, -1.3421627500929871) +description = Woodlawn CDP, MD +station = ('kcgs', 0.00058306452983273053) +zone = ('dcz001', 0.0017095884366648143) + +[fips2486710] +centroid = (0.67934185258990376, -1.3400277237256075) +description = Woodmore CDP, MD +station = ('kadw', 0.0021048944768160896) +zone = ('mdz013', 0.0018387896595146022) + +[fips2486750] +centroid = (0.68999501073151936, -1.3493100304595367) +description = Woodsboro town, MD +station = ('kfdk', 0.0022089515798389314) +zone = ('mdz004', 0.0016034116593755723) + +[fips2487000] +centroid = (0.68539934937150804, -1.3280515012912253) +description = Worton CDP, MD +station = ('kapg', 0.0035700399891303619) +zone = ('mdz012', 0.00078459333238374519) + +[fips2487150] +centroid = (0.68724384823160056, -1.355847614958487) +description = Yarrowsburg CDP, MD +station = ('kmrb', 0.0040544380116071836) +zone = ('wvz053', 0.0026897034237182839) + +[fips2487275] +centroid = (0.69244290482061144, -1.377294011367483) +description = Zihlman CDP, MD +station = ('kcbe', 0.0022895137567133473) +zone = ('mdz501', 0.001282856438784765) + +[fips25001] +centroid = (0.7295270149951637, -1.2254145697410179) +description = Barnstable County, MA +station = ('khya', 0.0024174420739877423) +zone = ('maz022', 0.0017042666422315803) + +[fips2500100000] +centroid = (0.7295270149951637, -1.2254145697410179) +description = County subdivisions not defined, MA +station = ('khya', 0.0024174420739877423) +zone = ('maz022', 0.0017042666422315803) + +[fips2500103690] +centroid = (0.72715176150953953, -1.2279649321104946) +description = Barnstable Town city, MA +station = ('khya', 0.001182519026713602) +zone = ('maz022', 0.0013456022437442485) + +[fips2500107175] +centroid = (0.72810703256903364, -1.2320597537883538) +description = Bourne town, MA +station = ('kfmh', 0.0015316568695890372) +zone = ('maz021', 0.0024366493947010045) + +[fips2500107980] +centroid = (0.72862288208275316, -1.22293089640226) +description = Brewster town, MA +station = ('kcqx', 0.0014276931756196042) +zone = ('maz022', 0.0030151271397790003) + +[fips2500112995] +centroid = (0.727310551564886, -1.2212149584948691) +description = Chatham town, MA +station = ('kcqx', 0.00043428042360672998) +zone = ('maz022', 0.0043801577512920737) + +[fips2500116775] +centroid = (0.72790916459173505, -1.2246071804290453) +description = Dennis town, MA +station = ('khya', 0.0014954309817628198) +zone = ('maz022', 0.0017777260765086014) + +[fips2500119295] +centroid = (0.73026192078330099, -1.2215366575825968) +description = Eastham town, MA +station = ('kcqx', 0.0027543078020638568) +zone = ('maz022', 0.0045005733003778995) + +[fips2500123105] +centroid = (0.7259637507942921, -1.2321807923719794) +description = Falmouth town, MA +station = ('kfmh', 0.0014422549873910268) +zone = ('maz021', 0.0034516919412036196) + +[fips2500129020] +centroid = (0.72749155966161028, -1.2230085635539736) +description = Harwich town, MA +station = ('kcqx', 0.00095473073803369708) +zone = ('maz022', 0.0030354495716244361) + +[fips2500135] +centroid = (0.73513205262148096, -1.2384370472488007) +description = Abington CDP, MA +station = ('kmqe', 0.0026651662665606469) +zone = ('maz016', 0.0018991489571112987) + +[fips2500139100] +centroid = (0.72636313448702594, -1.230326432401613) +description = Mashpee town, MA +station = ('kfmh', 0.00064823076131462925) +zone = ('maz022', 0.0031602860097550345) + +[fips2500151440] +centroid = (0.72884080389315709, -1.2211120015222938) +description = Orleans town, MA +station = ('kcqx', 0.0014072612634710394) +zone = ('maz022', 0.0043886756620437435) + +[fips2500155500] +centroid = (0.73403160507480592, -1.2250551191815697) +description = Provincetown town, MA +station = ('kpvc', 0.00037953509884680343) +zone = ('maz022', 0.0059404813657177669) + +[fips2500159735] +centroid = (0.72804184452147158, -1.2302023918516738) +description = Sandwich town, MA +station = ('kfmh', 0.0011845106423211244) +zone = ('maz022', 0.0024432753953971455) + +[fips2500170605] +centroid = (0.73327491757760388, -1.2228501400177703) +description = Truro town, MA +station = ('kpvc', 0.0021834336046164752) +zone = ('maz022', 0.0058684131295224096) + +[fips2500174385] +centroid = (0.73158999417102111, -1.2221832497105831) +description = Wellfleet town, MA +station = ('kpvc', 0.0035976072954022643) +zone = ('maz022', 0.0048650089978012467) + +[fips2500182525] +centroid = (0.72736507565071828, -1.2256751648516333) +description = Yarmouth town, MA +station = ('khya', 0.00054935687326822832) +zone = ('maz022', 0.0013018520327407529) + +[fips25003] +centroid = (0.73958875086644849, -1.2778244509839174) +description = Berkshire County, MA +station = ('kpsf', 0.0013509355615251729) +zone = ('maz025', 0.0028250570227480541) + +[fips2500300555] +centroid = (0.74395636750639416, -1.2761817470919403) +description = Adams town, MA +station = ('kaqw', 0.0014315569346329644) +zone = ('maz001', 0.0012157460759151838) + +[fips2500300975] +centroid = (0.73747847326786209, -1.2815787240181273) +description = Alford town, MA +station = ('kpsf', 0.0036450061039539254) +zone = ('nyz061', 0.0013816036426066499) + +[fips2500304545] +centroid = (0.73818444149700135, -1.2756344641983925) +description = Becket town, MA +station = ('kpsf', 0.0034865912479233444) +zone = ('maz025', 0.0025134247862514574) + +[fips2500313345] +centroid = (0.74289953573772649, -1.2766945248261763) +description = Cheshire town, MA +station = ('kaqw', 0.0023666962435645793) +zone = ('maz001', 9.35417827673747e-05) + +[fips2500314010] +centroid = (0.74565197232799907, -1.2759373137301986) +description = Clarksburg town, MA +station = ('kaqw', 0.00087518824217008037) +zone = ('maz001', 0.002900542470690323) + +[fips2500316180] +centroid = (0.74141270720124508, -1.2767742514664073) +description = Dalton town, MA +station = ('kpsf', 0.0018551130822011183) +zone = ('maz001', 0.0013996532810196742) + +[fips2500321360] +centroid = (0.73606700804848169, -1.2818558648500513) +description = Egremont town, MA +station = ('kpsf', 0.0049911605086320329) +zone = ('nyz061', 0.0018432625154760475) + +[fips2500324120] +centroid = (0.74490725778946565, -1.2743663603237712) +description = Florida town, MA +station = ('kaqw', 0.0019663484363042182) +zone = ('maz001', 0.0027275993501729057) + +[fips2500326815] +centroid = (0.73691031623646042, -1.2799030683098727) +description = Great Barrington town, MA +station = ('kpsf', 0.0037463824829317761) +zone = ('maz025', 0.0010644296256086508) + +[fips2500328180] +centroid = (0.74219590624978504, -1.2797313802713539) +description = Hancock town, MA +station = ('kpsf', 0.0016750985757795157) +zone = ('maz001', 0.0022886755449025636) + +[fips2500330315] +centroid = (0.74064490195670785, -1.2760592947916205) +description = Hinsdale town, MA +station = ('kpsf', 0.0021969794667740989) +zone = ('maz001', 0.0022245425452941843) + +[fips2500334340] +centroid = (0.74239075480747763, -1.278298918741072) +description = Lanesborough town, MA +station = ('kpsf', 0.001869997822198925) +zone = ('maz001', 0.0012234986738750271) + +[fips2500334655] +centroid = (0.73832967034405972, -1.2781730979552959) +description = Lee town, MA +station = ('kpsf', 0.0023593642033258736) +zone = ('maz025', 0.0015410192467046864) + +[fips2500334970] +centroid = (0.73945868893058986, -1.2787986937723805) +description = Lenox town, MA +station = ('kpsf', 0.0011559880616351481) +zone = ('maz025', 0.002664903801062686) + +[fips2500342460] +centroid = (0.73630020148984077, -1.2779842707835225) +description = Monterey town, MA +station = ('kpsf', 0.0043708602670977856) +zone = ('maz025', 0.00062091478692935704) + +[fips2500343300] +centroid = (0.73462520900670181, -1.2822968397388603) +description = Mount Washington town, MA +station = ('kpsf', 0.0064451815710806536) +zone = ('nyz061', 0.002984138657638899) + +[fips2500344385] +centroid = (0.74369730828552061, -1.2780230694527945) +description = New Ashford town, MA +station = ('kaqw', 0.0017306670585219559) +zone = ('maz001', 0.0012947202319421249) + +[fips2500345420] +centroid = (0.73475631814011155, -1.2783136667732515) +description = New Marlborough town, MA +station = ('kpsf', 0.0058694162945497298) +zone = ('maz025', 0.002051785480601395) + +[fips2500346225] +centroid = (0.74482884014617357, -1.2761517274288061) +description = North Adams city, MA +station = ('kaqw', 0.00075512011252299772) +zone = ('maz001', 0.0020626135878107979) + +[fips2500351580] +centroid = (0.73660479635089871, -1.2755732205949402) +description = Otis town, MA +station = ('kpsf', 0.0047461865367592485) +zone = ('maz009', 0.0020628543883575521) + +[fips2500353050] +centroid = (0.74016217879219115, -1.2747071533135155) +description = Peru town, MA +station = ('kpsf', 0.0032252421257358147) +zone = ('maz008', 0.0021734155916601247) + +[fips2500353960] +centroid = (0.74092795945479617, -1.2786376347890067) +description = Pittsfield city, MA +station = ('kpsf', 0.00043913413723114842) +zone = ('maz001', 0.0023468359186550802) + +[fips2500356795] +centroid = (0.73973157115913912, -1.2803593497362216) +description = Richmond town, MA +station = ('kpsf', 0.0013084670539184559) +zone = ('nyz061', 0.0032018563119525344) + +[fips2500359665] +centroid = (0.7349144449703422, -1.2761604366217734) +description = Sandisfield town, MA +station = ('kbaf', 0.0053035639715853485) +zone = ('maz025', 0.0025517131467852937) + +[fips2500360225] +centroid = (0.74340843884102303, -1.2744799114449057) +description = Savoy town, MA +station = ('kaqw', 0.0026164512803572588) +zone = ('maz001', 0.0017676973833710542) + +[fips2500361065] +centroid = (0.73484733706060301, -1.2803715844942778) +description = Sheffield town, MA +station = ('kpsf', 0.0058383727016433039) +zone = ('maz025', 0.002410862772666153) + +[fips2500367595] +centroid = (0.73830863912657319, -1.2797281863188228) +description = Stockbridge town, MA +station = ('kpsf', 0.0023491727131726295) +zone = ('maz025', 0.0017677639465181619) + +[fips2500371095] +centroid = (0.73724477368102004, -1.277253990117903) +description = Tyringham town, MA +station = ('kpsf', 0.0036056736720626761) +zone = ('maz025', 0.0010041193461433711) + +[fips2500373335] +centroid = (0.73949195490613284, -1.2767985813561802) +description = Washington town, MA +station = ('kpsf', 0.0019897811434617251) +zone = ('maz025', 0.0029589168170875528) + +[fips2500377990] +centroid = (0.7384896123167124, -1.2808591771274076) +description = West Stockbridge town, MA +station = ('kpsf', 0.0025049614383616729) +zone = ('maz025', 0.0024408244265975328) + +[fips2500379985] +centroid = (0.74518502693992061, -1.2779643914833423) +description = Williamstown town, MA +station = ('kaqw', 0.00071283107176808587) +zone = ('maz001', 0.0025382106431321143) + +[fips2500380685] +centroid = (0.74211117051460074, -1.2749576080611764) +description = Windsor town, MA +station = ('kpsf', 0.0033653064806490971) +zone = ('maz001', 0.0014884841057720051) + +[fips25005] +centroid = (0.72865010921908413, -1.2407032874693453) +description = Bristol County, MA +station = ('kewb', 0.0019382679984844228) +zone = ('maz020', 0.0014383940520733311) + +[fips2500500000] +centroid = (0.72571176015688921, -1.2364509149199088) +description = County subdivisions not defined, MA +station = ('kewb', 0.0024132324469925848) +zone = ('maz021', 0.0029485398259161987) + +[fips2500500520] +centroid = (0.72812026216476378, -1.2374585284036701) +description = Acushnet town, MA +station = ('kewb', 0.0010486082353152169) +zone = ('maz020', 0.0019438999642470217) + +[fips2500502690] +centroid = (0.73184540565375777, -1.244323815922975) +description = Attleboro city, MA +station = ('ksfz', 0.0026813243451277108) +zone = ('maz017', 0.001445761126092348) + +[fips2500505280] +centroid = (0.73021191710023137, -1.2405384062149092) +description = Berkley town, MA +station = ('ktan', 0.0011189260784601354) +zone = ('maz017', 0.0019613193112798842) + +[fips2500516425] +centroid = (0.7254724580631482, -1.2384592303835937) +description = Dartmouth town, MA +station = ('kewb', 0.0020417425827204592) +zone = ('maz020', 0.0021554838954354477) + +[fips2500516950] +centroid = (0.73015706140184111, -1.241827995092623) +description = Dighton town, MA +station = ('ktan', 0.0019457964473256911) +zone = ('maz017', 0.0014985716393730738) + +[fips2500520100] +centroid = (0.73371081355828938, -1.2410795106429053) +description = Easton town, MA +station = ('kowd', 0.0026366362256957598) +zone = ('maz017', 0.0023391191507806915) + +[fips2500522130] +centroid = (0.72671151965901659, -1.2369848111380939) +description = Fairhaven town, MA +station = ('kewb', 0.0014489832605245263) +zone = ('maz021', 0.0022187731155909798) + +[fips2500523000] +centroid = (0.72824475650030851, -1.2408272058462368) +description = Fall River city, MA +station = ('kewb', 0.0018159765227135764) +zone = ('maz020', 0.0011456937361607087) + +[fips2500525240] +centroid = (0.72918667579102481, -1.2395238637740176) +description = Freetown town, MA +station = ('kewb', 0.0018110264238322472) +zone = ('maz020', 0.0018442217932595857) + +[fips2500530] +centroid = (0.72754042888066617, -1.2375551323777678) +description = Acushnet Center CDP, MA +station = ('kewb', 0.00078235653174092365) +zone = ('maz020', 0.0017265036528498973) + +[fips2500538225] +centroid = (0.7333402277982134, -1.2429763693805576) +description = Mansfield town, MA +station = ('kowd', 0.0029710845106357977) +zone = ('maz017', 0.0017986532088307935) + +[fips2500545000] +centroid = (0.72712690802099111, -1.2381001463432881) +description = New Bedford city, MA +station = ('kewb', 0.0005369923181654891) +zone = ('maz020', 0.0013305242823218257) + +[fips2500546575] +centroid = (0.73255819812027234, -1.2450342521949991) +description = North Attleborough town, MA +station = ('ksfz', 0.0023507065910505004) +zone = ('maz017', 0.0021776121870210052) + +[fips2500549970] +centroid = (0.73229549116126225, -1.2423090776476426) +description = Norton town, MA +station = ('ktan', 0.0024740446651569099) +zone = ('maz017', 0.00070814430311660047) + +[fips2500556060] +centroid = (0.73182784764148279, -1.2399714011008141) +description = Raynham town, MA +station = ('ktan', 0.00090475598592356461) +zone = ('maz018', 0.0020765406835289127) + +[fips2500556375] +centroid = (0.73036728631024384, -1.2434511512969775) +description = Rehoboth town, MA +station = ('kpvd', 0.0031577212076679064) +zone = ('maz017', 0.0014485600896165269) + +[fips2500560645] +centroid = (0.73020650657955011, -1.2447762925315544) +description = Seekonk town, MA +station = ('kpvd', 0.0023409886367073349) +zone = ('riz005', 0.0021749403370017765) + +[fips2500562430] +centroid = (0.72847388332451024, -1.2420646966457785) +description = Somerset town, MA +station = ('kewb', 0.0027583164780784273) +zone = ('maz020', 0.001991721307904766) + +[fips2500568750] +centroid = (0.72881764337398314, -1.2429222990803308) +description = Swansea town, MA +station = ('ktan', 0.0033723897127072773) +zone = ('riz005', 0.0011706190075238881) + +[fips2500569170] +centroid = (0.73135095387666782, -1.2408415524526881) +description = Taunton city, MA +station = ('ktan', 0.001075654148044117) +zone = ('maz017', 0.0011923802236874861) + +[fips2500577570] +centroid = (0.7257225811982515, -1.2406131063068948) +description = Westport town, MA +station = ('kewb', 0.0023365343641065408) +zone = ('maz020', 0.0017319917164896265) + +[fips2500590] +centroid = (0.74401789036252697, -1.2761628800827263) +description = Adams CDP, MA +station = ('kaqw', 0.001382073816742204) +zone = ('maz001', 0.001278362847690233) + +[fips25007] +centroid = (0.72223363311692979, -1.2339745894173018) +description = Dukes County, MA +station = ('kmvy', 0.0011599925016563346) +zone = ('maz023', 0.00065473211888890652) + +[fips2500701585] +centroid = (0.72139474061195863, -1.2360913596407053) +description = Aquinnah town, MA +station = ('kmvy', 0.0029435065323654519) +zone = ('maz023', 0.0024507568045070969) + +[fips2500713800] +centroid = (0.72087358529731316, -1.2353212505615554) +description = Chilmark town, MA +station = ('kmvy', 0.002715090422228064) +zone = ('maz023', 0.0022908316894432808) + +[fips2500721150] +centroid = (0.72209419876298797, -1.2301490545897329) +description = Edgartown town, MA +station = ('kmvy', 0.0018211008172762833) +zone = ('maz023', 0.0023124030403785163) + +[fips2500726325] +centroid = (0.72335861999288786, -1.2367104279263879) +description = Gosnold town, MA +station = ('kmvy', 0.0032599269413614539) +zone = ('maz023', 0.0027798429585406555) + +[fips2500750390] +centroid = (0.72356394052609241, -1.2314362698196637) +description = Oak Bluffs town, MA +station = ('kmvy', 0.0012741409408839168) +zone = ('maz023', 0.0016821760239074568) + +[fips2500769940] +centroid = (0.72384163986337713, -1.2325065231702792) +description = Tisbury town, MA +station = ('kmvy', 0.0012753678320698845) +zone = ('maz023', 0.0014274033441581718) + +[fips2500778235] +centroid = (0.72246867660729586, -1.2331876379108699) +description = West Tisbury town, MA +station = ('kmvy', 0.00052989508783971018) +zone = ('maz023', 3.856109584011577e-05) + +[fips2500840] +centroid = (0.7341680549157269, -1.2680423866719721) +description = Agawam Town city, MA +station = ('kbaf', 0.0019581950281461623) +zone = ('maz011', 0.0022928239409588064) + +[fips25009] +centroid = (0.74425570892640369, -1.2368294419280812) +description = Essex County, MA +station = ('kbvy', 0.0012298725927284118) +zone = ('maz007', 0.00010058969240152156) + +[fips2500900000] +centroid = (0.74095152139969811, -1.2331377214942629) +description = County subdivisions not defined, MA +station = ('kbvy', 0.0040738880011810296) +zone = ('maz007', 0.004224936643756309) + +[fips2500901260] +centroid = (0.74789599450716582, -1.2384129791584157) +description = Amesbury Town city, MA +station = ('klwm', 0.0032694804423308108) +zone = ('maz006', 0.0027605333983610407) + +[fips2500901465] +centroid = (0.74434878733541254, -1.2420068564343671) +description = Andover town, MA +station = ('klwm', 0.0012519599461764865) +zone = ('maz006', 0.0017000988598194194) + +[fips2500905595] +centroid = (0.74278591480342171, -1.2364579485967944) +description = Beverly city, MA +station = ('kbvy', 0.0010317630130870837) +zone = ('maz007', 0.001406614720491615) + +[fips2500907420] +centroid = (0.74496076958433177, -1.2395036877678647) +description = Boxford town, MA +station = ('klwm', 0.0015871404370362357) +zone = ('maz006', 0.00082945379886517135) + +[fips2500916250] +centroid = (0.74305951261696435, -1.2383201276422098) +description = Danvers town, MA +station = ('kbvy', 0.00046347619253502768) +zone = ('maz007', 0.00153299642135841) + +[fips2500921850] +centroid = (0.74411102113141336, -1.2352845637406784) +description = Essex town, MA +station = ('kbvy', 0.0020081368332660779) +zone = ('maz007', 0.001166976836836992) + +[fips2500925625] +centroid = (0.74574229311678986, -1.2388702030625607) +description = Georgetown town, MA +station = ('klwm', 0.0019498287535876235) +zone = ('maz006', 0.0010975550650678427) + +[fips2500926150] +centroid = (0.74401682571168326, -1.2337004330983983) +description = Gloucester city, MA +station = ('kbvy', 0.0030707173165890893) +zone = ('maz007', 0.0023358355408202199) + +[fips2500927620] +centroid = (0.74619632306840367, -1.2394618871322793) +description = Groveland town, MA +station = ('klwm', 0.0016392821833298259) +zone = ('maz006', 0.00092959321790358682) + +[fips2500927900] +centroid = (0.74396793903933489, -1.2366919623429018) +description = Hamilton town, MA +station = ('kbvy', 0.0010692749783879428) +zone = ('maz007', 0.00023185914781976151) + +[fips2500929405] +centroid = (0.74670325394964543, -1.2407098150007476) +description = Haverhill city, MA +station = ('klwm', 0.0012977489879946438) +zone = ('maz006', 0.0012124634470964718) + +[fips2500932310] +centroid = (0.74518626612368943, -1.2363154599166615) +description = Ipswich town, MA +station = ('kbvy', 0.0022249573639412917) +zone = ('maz007', 0.0011046015328839813) + +[fips2500934550] +centroid = (0.74526035535043667, -1.2419999798371144) +description = Lawrence city, MA +station = ('klwm', 0.00045938666196814642) +zone = ('maz006', 0.0012520207964591109) + +[fips2500937490] +centroid = (0.74132619123022381, -1.2385237726593323) +description = Lynn city, MA +station = ('kbvy', 0.0019816390096860054) +zone = ('maz015', 0.0029547188376857609) + +[fips2500937560] +centroid = (0.74236040353178545, -1.2398570122216381) +description = Lynnfield town, MA +station = ('kbvy', 0.0017871777193690552) +zone = ('maz014', 0.0025178979130420992) + +[fips2500937995] +centroid = (0.74285237694133766, -1.2349997783666304) +description = Manchester-by-the-Sea town, MA +station = ('kbvy', 0.0020433172543958184) +zone = ('maz007', 0.0018980945539778982) + +[fips2500938400] +centroid = (0.74163420693661575, -1.2363142905460625) +description = Marblehead town, MA +station = ('kbvy', 0.0018973279481575079) +zone = ('maz007', 0.0025582057686846073) + +[fips2500940430] +centroid = (0.74767466930472037, -1.2393931560663356) +description = Merrimac town, MA +station = ('klwm', 0.0026354002517634) +zone = ('maz006', 0.0022601181221353303) + +[fips2500940710] +centroid = (0.74600173631009881, -1.2423007175205256) +description = Methuen Town city, MA +station = ('klwm', 0.00073748150385753741) +zone = ('maz006', 0.0015221074854342655) + +[fips2500941095] +centroid = (0.74369374781384645, -1.2393080014521309) +description = Middleton town, MA +station = ('kbvy', 0.0012552055614834562) +zone = ('maz006', 0.0019783722027091567) + +[fips2500943580] +centroid = (0.74034875448922932, -1.2379558948806109) +description = Nahant town, MA +station = ('kbos', 0.0014449662142627542) +zone = ('maz015', 0.0025002662732710457) + +[fips2500945175] +centroid = (0.74648440711473785, -1.236957025496402) +description = Newbury town, MA +station = ('kbvy', 0.0033140351043509614) +zone = ('maz007', 0.002325773608235398) + +[fips2500945245] +centroid = (0.74721662509582709, -1.2372830180940897) +description = Newburyport city, MA +station = ('klwm', 0.0035246935583175387) +zone = ('maz006', 0.0028083101342651446) + +[fips2500946365] +centroid = (0.74480021674644092, -1.2407778479349905) +description = North Andover town, MA +station = ('klwm', 0.00092041385486608127) +zone = ('maz006', 0.00079266767604851452) + +[fips2500952490] +centroid = (0.74236186960835715, -1.2386555275645654) +description = Peabody city, MA +station = ('kbvy', 0.001095783560211388) +zone = ('maz007', 0.0022272929866176661) + +[fips2500957880] +centroid = (0.7445042612651801, -1.2322832606523639) +description = Rockport town, MA +station = ('kbvy', 0.0042084762668862016) +zone = ('maz007', 0.0033909059895051506) + +[fips2500958405] +centroid = (0.74563074912429483, -1.2372052113160354) +description = Rowley town, MA +station = ('kbvy', 0.0024419921380379925) +zone = ('maz007', 0.0014917869564891354) + +[fips2500959105] +centroid = (0.74178727231201558, -1.2373948413392648) +description = Salem city, MA +station = ('kbvy', 0.0014531505810588925) +zone = ('maz007', 0.0024035982907162413) + +[fips2500959245] +centroid = (0.74778270518541889, -1.2364170031725426) +description = Salisbury town, MA +station = ('kpsm', 0.0041753548274116202) +zone = ('nhz014', 0.0027221989783248563) + +[fips2500960015] +centroid = (0.74121396655932048, -1.2394271725334571) +description = Saugus town, MA +station = ('kbos', 0.0017764860393692462) +zone = ('maz014', 0.0020322364058154439) + +[fips2500968645] +centroid = (0.74120745648121045, -1.2372858978873553) +description = Swampscott town, MA +station = ('kbvy', 0.0020382846866918631) +zone = ('maz007', 0.0029679638131873288) + +[fips2500970150] +centroid = (0.74423246114076713, -1.2381966106910458) +description = Topsfield town, MA +station = ('kbvy', 0.0010698656989238063) +zone = ('maz007', 0.00097901450109704824) + +[fips2500974595] +centroid = (0.74352066351192636, -1.2371488197279037) +description = Wenham town, MA +station = ('kbvy', 0.00052289302290906058) +zone = ('maz007', 0.00067112015529941773) + +[fips2500977150] +centroid = (0.74699247245999334, -1.2385626236884817) +description = West Newbury town, MA +station = ('klwm', 0.0026032194519338787) +zone = ('maz006', 0.0019626284757278136) + +[fips25011] +centroid = (0.74322736093112862, -1.2669633892218044) +description = Franklin County, MA +station = ('kore', 0.0040430306368966322) +zone = ('maz003', 0.0018535180322263585) + +[fips2501102095] +centroid = (0.74211965281476544, -1.2706975386097388) +description = Ashfield town, MA +station = ('kbaf', 0.0062782089772890955) +zone = ('maz002', 0.0016998920530262457) + +[fips2501105560] +centroid = (0.74511324154778613, -1.2664084792394252) +description = Bernardston town, MA +station = ('kore', 0.0041887192983720211) +zone = ('maz003', 0.0027032792508264458) + +[fips2501109595] +centroid = (0.74337224071233665, -1.2704008326368996) +description = Buckland town, MA +station = ('kaqw', 0.0052060693960177809) +zone = ('maz002', 0.00043730010290795771) + +[fips2501112505] +centroid = (0.74408848893077018, -1.2715545650856379) +description = Charlemont town, MA +station = ('kaqw', 0.0041701668141586315) +zone = ('maz002', 0.00086833187772460162) + +[fips2501114885] +centroid = (0.74516354193682854, -1.269047731227706) +description = Colrain town, MA +station = ('kaqw', 0.0058446429227885519) +zone = ('maz002', 0.0016970684788806707) + +[fips2501115200] +centroid = (0.74191445445460835, -1.268979314321028) +description = Conway town, MA +station = ('kcef', 0.0058335364854929239) +zone = ('maz002', 0.0021775013516824341) + +[fips2501116670] +centroid = (0.74207851540429581, -1.2673383557583029) +description = Deerfield town, MA +station = ('kore', 0.0044164673229176278) +zone = ('maz003', 0.0022003693010968421) + +[fips2501121780] +centroid = (0.74374444962861708, -1.2640796166053192) +description = Erving town, MA +station = ('kore', 0.0020475938567685618) +zone = ('maz003', 0.0010008686903103452) + +[fips2501125730] +centroid = (0.74393046682029462, -1.2655145565031389) +description = Gill town, MA +station = ('kore', 0.0031073510841191586) +zone = ('maz003', 0.0013516823947733413) + +[fips2501127100] +centroid = (0.74376631860414455, -1.2670577766277522) +description = Greenfield Town city, MA +station = ('kore', 0.0041740123947061492) +zone = ('maz002', 0.0024874424877747016) + +[fips2501129475] +centroid = (0.74308396467978477, -1.272358777898372) +description = Hawley town, MA +station = ('kaqw', 0.0040459435803519937) +zone = ('maz002', 0.0015892888830899847) + +[fips2501129650] +centroid = (0.74513821720938211, -1.2710030934018854) +description = Heath town, MA +station = ('kaqw', 0.004408451117748219) +zone = ('maz002', 0.0013930831942768735) + +[fips2501135180] +centroid = (0.7412341425654736, -1.265093216568415) +description = Leverett town, MA +station = ('kore', 0.0032038498498863778) +zone = ('maz003', 0.0016192804888354793) + +[fips2501135285] +centroid = (0.74521328382051033, -1.2675908525411888) +description = Leyden town, MA +station = ('kore', 0.005003790453783347) +zone = ('maz002', 0.0025209329831227191) + +[fips2501142040] +centroid = (0.7457403034414426, -1.2738345934072735) +description = Monroe town, MA +station = ('kaqw', 0.0023752054226139226) +zone = ('maz002', 0.0031575129108686703) + +[fips2501142285] +centroid = (0.74275308516019178, -1.265661722665667) +description = Montague town, MA +station = ('kore', 0.0030908469725957912) +zone = ('maz003', 0.00084542944204928712) + +[fips2501145490] +centroid = (0.74104100443044785, -1.2623481103610006) +description = New Salem town, MA +station = ('kore', 0.0020757518813392627) +zone = ('maz003', 0.0023736499541309182) + +[fips2501147835] +centroid = (0.74485575312323926, -1.2645586920316989) +description = Northfield town, MA +station = ('kore', 0.0029182442262126762) +zone = ('maz003', 0.0020595769601992973) + +[fips2501151265] +centroid = (0.74353005338330203, -1.261794788628241) +description = Orange town, MA +station = ('kore', 0.0005640056626815004) +zone = ('maz003', 0.0021334351928998436) + +[fips2501158335] +centroid = (0.74517760929059962, -1.2725046874238388) +description = Rowe town, MA +station = ('kaqw', 0.0033041472869525328) +zone = ('maz002', 0.0020458201144496328) + +[fips2501161135] +centroid = (0.74383576525508133, -1.2684927165255717) +description = Shelburne town, MA +station = ('kore', 0.0052269022006461441) +zone = ('maz002', 0.0014313058455176625) + +[fips2501161905] +centroid = (0.74101388201387197, -1.2639193430201083) +description = Shutesbury town, MA +station = ('kore', 0.0026906448898579923) +zone = ('maz003', 0.0018359119465108788) + +[fips2501168400] +centroid = (0.74118481956081228, -1.2661814817169108) +description = Sunderland town, MA +station = ('kore', 0.0039189697497040979) +zone = ('maz003', 0.0020261723006712684) + +[fips2501173265] +centroid = (0.74490601860569683, -1.2625691214041808) +description = Warwick town, MA +station = ('kore', 0.0020530186016653146) +zone = ('maz003', 0.0025498546802925365) + +[fips2501174525] +centroid = (0.74274772699938807, -1.2637431345788273) +description = Wendell town, MA +station = ('kore', 0.0016880057247001951) +zone = ('maz003', 0.000570985429990612) + +[fips2501179110] +centroid = (0.74056056764725142, -1.2678497023225521) +description = Whately town, MA +station = ('kcef', 0.0042704384397029456) +zone = ('maz010', 0.0027566908634593691) + +[fips2501260] +centroid = (0.74789599450716582, -1.2384129791584157) +description = Amesbury Town city, MA +station = ('klwm', 0.0032694804423308108) +zone = ('maz006', 0.0027605333983610407) + +[fips25013] +centroid = (0.73541538937224971, -1.2677312119196342) +description = Hampden County, MA +station = ('kbaf', 0.0011754966270685193) +zone = ('maz011', 0.0018674504833593843) + +[fips2501300840] +centroid = (0.7341680549157269, -1.2680423866719721) +description = Agawam Town city, MA +station = ('kbaf', 0.0019581950281461623) +zone = ('maz011', 0.0022928239409588064) + +[fips2501306085] +centroid = (0.73638663019439943, -1.2733455346975719) +description = Blandford town, MA +station = ('kbaf', 0.0031434773826076192) +zone = ('maz009', 0.00052564875594084267) + +[fips2501308470] +centroid = (0.73529808579322309, -1.2602202572968468) +description = Brimfield town, MA +station = ('korh', 0.0049904426167335985) +zone = ('maz011', 0.003727723025354057) + +[fips2501313485] +centroid = (0.73782013892223253, -1.2731011711490003) +description = Chester town, MA +station = ('kbaf', 0.0034771642920902925) +zone = ('maz009', 0.0018628479715712333) + +[fips2501313660] +centroid = (0.73610427082801189, -1.2666248302535024) +description = Chicopee city, MA +station = ('kcef', 0.00065857307139490808) +zone = ('maz011', 0.0014103411948712375) + +[fips2501319645] +centroid = (0.73407874641790238, -1.2653852450588585) +description = East Longmeadow town, MA +station = ('kcef', 0.002485176083648176) +zone = ('maz011', 0.0010627894952296827) + +[fips2501326675] +centroid = (0.73456293565899056, -1.2724907596964077) +description = Granville town, MA +station = ('kbaf', 0.0028412281826997302) +zone = ('maz009', 0.0014358682212330289) + +[fips2501328075] +centroid = (0.73428075082552813, -1.2639276158807629) +description = Hampden town, MA +station = ('kcef', 0.0027006462133658889) +zone = ('maz011', 0.0012970334203284341) + +[fips2501330665] +centroid = (0.73385506502096676, -1.2597812546300926) +description = Holland town, MA +station = ('kijd', 0.0051802674884228964) +zone = ('ctz003', 0.0039146652891555835) + +[fips2501330840] +centroid = (0.73673237991921947, -1.2678498943087699) +description = Holyoke city, MA +station = ('kbaf', 0.0012400493705800699) +zone = ('maz010', 0.0023124803575119476) + +[fips2501336300] +centroid = (0.73386845169632953, -1.2666051778461249) +description = Longmeadow town, MA +station = ('kbdl', 0.0024684908664000952) +zone = ('maz011', 0.001622144639630537) + +[fips2501337175] +centroid = (0.73633460192939748, -1.2646495015126804) +description = Ludlow town, MA +station = ('kcef', 0.00097962517350090226) +zone = ('maz011', 0.0012762700141143472) + +[fips2501342145] +centroid = (0.73467184420431497, -1.2622481902613238) +description = Monson town, MA +station = ('kcef', 0.0033111040863531781) +zone = ('maz011', 0.0022687701193129764) + +[fips2501342530] +centroid = (0.73688783639569466, -1.2712136673761385) +description = Montgomery town, MA +station = ('kbaf', 0.0017981220300900399) +zone = ('maz009', 0.0015718799379028994) + +[fips2501352144] +centroid = (0.73631590945310854, -1.2620208611262518) +description = Palmer Town city, MA +station = ('kcef', 0.0029154524253287967) +zone = ('maz011', 0.0026631813113509885) + +[fips2501358650] +centroid = (0.73585203584451364, -1.2715387349493223) +description = Russell town, MA +station = ('kbaf', 0.001776661438419667) +zone = ('maz009', 0.0010355523850379478) + +[fips2501360] +centroid = (0.73958815745450268, -1.2656758423793155) +description = Amherst Center CDP, MA +station = ('kcef', 0.0030657095198023806) +zone = ('maz010', 0.0012378146156213716) + +[fips2501365825] +centroid = (0.73395580542539185, -1.2702044307361728) +description = Southwick town, MA +station = ('kbaf', 0.0021407823294813475) +zone = ('maz009', 0.0028471006603804049) + +[fips2501367000] +centroid = (0.73505333827221597, -1.2660614554242513) +description = Springfield city, MA +station = ('kcef', 0.0014781082599102182) +zone = ('maz011', 0.00061380521829311084) + +[fips2501370045] +centroid = (0.73481677634540066, -1.2746950407285065) +description = Tolland town, MA +station = ('kbaf', 0.0042679925771339049) +zone = ('maz009', 0.0017401298740407614) + +[fips2501372390] +centroid = (0.73410839956189367, -1.2607283051888096) +description = Wales town, MA +station = ('kcef', 0.0045639136709477749) +zone = ('maz011', 0.0035033430823979725) + +[fips2501376030] +centroid = (0.73546146606450225, -1.26983019723796) +description = Westfield city, MA +station = ('kbaf', 0.00070267699148768477) +zone = ('maz009', 0.0023503918217036342) + +[fips2501377890] +centroid = (0.73522781883753774, -1.2679770589980701) +description = West Springfield Town city, MA +station = ('kbaf', 0.0011259069621237516) +zone = ('maz011', 0.0020310306916518518) + +[fips2501379740] +centroid = (0.73525281195242631, -1.264158592753972) +description = Wilbraham town, MA +station = ('kcef', 0.0018392446404992468) +zone = ('maz011', 0.00081164317961921481) + +[fips2501430] +centroid = (0.74448190359746214, -1.2416663601505957) +description = Andover CDP, MA +station = ('klwm', 0.0010706930053580113) +zone = ('maz006', 0.0014291297148447948) + +[fips25015] +centroid = (0.73896296306314579, -1.2682207069616487) +description = Hampshire County, MA +station = ('kcef', 0.002959571970811399) +zone = ('maz010', 0.0020189421379601898) + +[fips2501501325] +centroid = (0.73938315108056352, -1.2654909596516517) +description = Amherst town, MA +station = ('kcef', 0.0028739482543131216) +zone = ('maz010', 0.0010363821617595701) + +[fips2501504825] +centroid = (0.7379079289836078, -1.263626546584794) +description = Belchertown town, MA +station = ('kcef', 0.0022020482273593552) +zone = ('maz010', 0.0015387151298538212) + +[fips2501513590] +centroid = (0.73963304732286395, -1.2713324719383217) +description = Chesterfield town, MA +station = ('kbaf', 0.0040255515875924968) +zone = ('maz008', 0.00039642798765753939) + +[fips2501516040] +centroid = (0.74116270623918934, -1.272663843998328) +description = Cummington town, MA +station = ('kaqw', 0.0051905187776343283) +zone = ('maz008', 0.0014783680862656171) + +[fips2501519370] +centroid = (0.73767100053764945, -1.2683449569510978) +description = Easthampton Town city, MA +station = ('kbaf', 0.0018228844617637855) +zone = ('maz010', 0.0021285970388821838) + +[fips2501526290] +centroid = (0.74067631788324362, -1.2707941425838367) +description = Goshen town, MA +station = ('kbaf', 0.0048838608259537059) +zone = ('maz008', 0.0011258054977362102) + +[fips2501526535] +centroid = (0.73731362692001123, -1.2653643011078346) +description = Granby town, MA +station = ('kcef', 0.00089496487597955771) +zone = ('maz010', 0.001054357051307595) + +[fips2501527690] +centroid = (0.73926007046171283, -1.2665605846837364) +description = Hadley town, MA +station = ('kcef', 0.0027687848796546315) +zone = ('maz010', 0.0011451256013073991) + +[fips2501529265] +centroid = (0.73991120044575431, -1.2674153771381933) +description = Hatfield town, MA +station = ('kcef', 0.0035527068834641218) +zone = ('maz010', 0.0020487842886921133) + +[fips2501531785] +centroid = (0.73795604771108536, -1.2716932489480015) +description = Huntington town, MA +station = ('kbaf', 0.0027560420101768218) +zone = ('maz008', 0.0018749364885991277) + +[fips2501540990] +centroid = (0.73944978775140457, -1.2745090409901214) +description = Middlefield town, MA +station = ('kpsf', 0.0035353488998672434) +zone = ('maz008', 0.0020377959255629937) + +[fips2501546330] +centroid = (0.73874629788980328, -1.2684115761686465) +description = Northampton city, MA +station = ('kbaf', 0.0028513321934085008) +zone = ('maz008', 0.0027272181174961712) + +[fips2501552560] +centroid = (0.73952476709607029, -1.2638363351608837) +description = Pelham town, MA +station = ('kcef', 0.0033778126744781769) +zone = ('maz010', 0.001764376682679642) + +[fips2501554030] +centroid = (0.74205132317454991, -1.2727356119371702) +description = Plainfield town, MA +station = ('kaqw', 0.004484920602716237) +zone = ('maz008', 0.0023270043834342749) + +[fips2501562745] +centroid = (0.73699929312172696, -1.2695802137291969) +description = Southampton town, MA +station = ('kbaf', 0.0011003651794529536) +zone = ('maz008', 0.0032712553804382215) + +[fips2501564145] +centroid = (0.73751236756193583, -1.2667732879596771) +description = South Hadley town, MA +station = ('kcef', 0.0011588141145725214) +zone = ('maz010', 0.0011972286995442865) + +[fips2501572880] +centroid = (0.73784600470174699, -1.2615267409617195) +description = Ware town, MA +station = ('kcef', 0.0035266343840537127) +zone = ('maz011', 0.0038622336045351625) + +[fips2501576380] +centroid = (0.73851998104569716, -1.2702153215907053) +description = Westhampton town, MA +station = ('kbaf', 0.0026920165906532171) +zone = ('maz008', 0.0017560768383000885) + +[fips2501579915] +centroid = (0.74011409497129865, -1.2693089022969746) +description = Williamsburg town, MA +station = ('kbaf', 0.0041686853914210727) +zone = ('maz008', 0.0018606271187837473) + +[fips2501582175] +centroid = (0.73997699935855454, -1.2731023579728917) +description = Worthington town, MA +station = ('kbaf', 0.0049810141886638291) +zone = ('maz008', 0.00097402250930661593) + +[fips2501640] +centroid = (0.74034636338815418, -1.2420445729995029) +description = Arlington CDP, MA +station = ('kbed', 0.0019422754046174752) +zone = ('maz014', 8.9627691373790155e-05) + +[fips25017] +centroid = (0.74140673817520331, -1.2461041215731792) +description = Middlesex County, MA +station = ('kbed', 0.0012623366797542175) +zone = ('maz005', 0.00035571468734833697) + +[fips2501700380] +centroid = (0.74148485911252249, -1.2468369504195065) +description = Acton town, MA +station = ('kbed', 0.0018081933033603482) +zone = ('maz005', 0.00083833954534096923) + +[fips2501701605] +centroid = (0.74034636338815418, -1.2420445729995029) +description = Arlington town, MA +station = ('kbed', 0.0019422754046174752) +zone = ('maz014', 8.9627691373790155e-05) + +[fips2501701955] +centroid = (0.74484182539580845, -1.2537140363645547) +description = Ashby town, MA +station = ('kfit', 0.0023833705520191206) +zone = ('maz026', 0.002312528526258639) + +[fips2501702130] +centroid = (0.73753695925109641, -1.2474483567097727) +description = Ashland town, MA +station = ('kbed', 0.0042781562261153937) +zone = ('maz013', 0.003357670474226184) + +[fips2501703005] +centroid = (0.74283768126903582, -1.2492051702282452) +description = Ayer town, MA +station = ('kfit', 0.0023412300364650477) +zone = ('maz026', 0.0017384819084288624) + +[fips2501704615] +centroid = (0.74175325584489415, -1.2441039393438085) +description = Bedford town, MA +station = ('kbed', 0.0006158412532984342) +zone = ('maz005', 0.0014071340200752743) + +[fips2501705070] +centroid = (0.73993786907672476, -1.2423303183046395) +description = Belmont town, MA +station = ('kbed', 0.0019821961155766523) +zone = ('maz014', 0.00051502170714807659) + +[fips2501705805] +centroid = (0.74280677148798313, -1.243738100879298) +description = Billerica town, MA +station = ('kbed', 0.0016995874733849031) +zone = ('maz005', 0.0022726074007952475) + +[fips2501707350] +centroid = (0.74152032420292302, -1.2482766725194765) +description = Boxborough town, MA +station = ('kfit', 0.0032329972879341961) +zone = ('maz005', 0.0018613762430466575) + +[fips2501709840] +centroid = (0.74182125387255193, -1.2427043249100493) +description = Burlington town, MA +station = ('kbed', 0.0014168729783149826) +zone = ('maz014', 0.0015738802437436803) + +[fips2501711000] +centroid = (0.739600147866464, -1.2412480570887703) +description = Cambridge city, MA +station = ('kbos', 0.0013201920151984078) +zone = ('maz014', 0.00090615718234201875) + +[fips2501711525] +centroid = (0.74240407166967037, -1.2454989286550502) +description = Carlisle town, MA +station = ('kbed', 0.0014572781740917434) +zone = ('maz005', 0.0013001669930517317) + +[fips2501713135] +centroid = (0.7434579189253171, -1.2456372809048557) +description = Chelmsford town, MA +station = ('kbed', 0.0024453030462339978) +zone = ('maz005', 0.0023370228344682395) + +[fips2501715060] +centroid = (0.7411176069313179, -1.2455454242263233) +description = Concord town, MA +station = ('kbed', 0.000832979442607025) +zone = ('maz005', 0.00019587690913806257) + +[fips2501717475] +centroid = (0.74490169018915187, -1.2444316249108704) +description = Dracut town, MA +station = ('klwm', 0.0022413141721159381) +zone = ('maz006', 0.0030749144871892939) + +[fips2501717825] +centroid = (0.7448380729379166, -1.2479194385281784) +description = Dunstable town, MA +station = ('kash', 0.001851847043517578) +zone = ('maz026', 0.0021465653154402816) + +[fips2501721990] +centroid = (0.74012324049657918, -1.2401375738988962) +description = Everett city, MA +station = ('kbos', 0.00084234256395916143) +zone = ('maz015', 0.001360033893156145) + +[fips2501724925] +centroid = (0.73841224187097154, -1.246796825300003) +description = Framingham town, MA +station = ('kbed', 0.0032803185443164178) +zone = ('maz005', 0.0028082418392793734) + +[fips2501727480] +centroid = (0.74371551206961883, -1.2490495741254297) +description = Groton town, MA +station = ('kfit', 0.0026621907554713296) +zone = ('maz026', 0.0013012250017624544) + +[fips2501730700] +centroid = (0.73645827596019386, -1.2470976153432918) +description = Holliston town, MA +station = ('ksfz', 0.0049116474567434129) +zone = ('maz013', 0.0026015072762456165) + +[fips2501731085] +centroid = (0.73694963850450768, -1.2486169942703231) +description = Hopkinton town, MA +station = ('kbed', 0.0052484343236427252) +zone = ('maz012', 0.0032393570217678484) + +[fips2501731540] +centroid = (0.73982885581164526, -1.2487108929840802) +description = Hudson town, MA +station = ('kfit', 0.0039227252106630991) +zone = ('maz005', 0.0025022085425901266) + +[fips2501735215] +centroid = (0.74081796880533546, -1.2432138912384616) +description = Lexington town, MA +station = ('kbed', 0.00096171272088399875) +zone = ('maz014', 0.0010580433096720914) + +[fips2501735425] +centroid = (0.74046476652460935, -1.2446084616706825) +description = Lincoln town, MA +station = ('kbed', 0.00073176015964413962) +zone = ('maz005', 0.0011055737730083859) + +[fips2501735950] +centroid = (0.7423920463511241, -1.2477458131741899) +description = Littleton town, MA +station = ('kbed', 0.0027339668011835765) +zone = ('maz005', 0.0019084809610207555) + +[fips2501737000] +centroid = (0.74418907225556263, -1.2448055966096954) +description = Lowell city, MA +station = ('kbed', 0.0030193246576814847) +zone = ('maz005', 0.0031528672321826734) + +[fips2501737875] +centroid = (0.74054564508214682, -1.2401907191746195) +description = Malden city, MA +station = ('kbos', 0.0012275522060675918) +zone = ('maz014', 0.0012933117216864202) + +[fips2501738715] +centroid = (0.73914027106185598, -1.2487344549289823) +description = Marlborough city, MA +station = ('kbed', 0.0037845303538844733) +zone = ('maz005', 0.0029320758516072501) + +[fips2501739625] +centroid = (0.74047260305295093, -1.2471469383479532) +description = Maynard town, MA +station = ('kbed', 0.0021341735593535141) +zone = ('maz005', 0.0011819504669212792) + +[fips2501739835] +centroid = (0.74043575915244131, -1.2410902095112197) +description = Medford city, MA +station = ('kbos', 0.00155543084605446) +zone = ('maz014', 0.00062054669760870521) + +[fips2501740115] +centroid = (0.74099215266468454, -1.2402138447872086) +description = Melrose city, MA +station = ('kbos', 0.001647356506697983) +zone = ('maz014', 0.0014131305970646287) + +[fips2501743895] +centroid = (0.73800936751973367, -1.2452716693331478) +description = Natick town, MA +station = ('kowd', 0.0029457982397002743) +zone = ('maz013', 0.0027090589264648513) + +[fips2501745560] +centroid = (0.73883061474596712, -1.2428210699837152) +description = Newton city, MA +station = ('kmqe', 0.0023338263522027286) +zone = ('maz015', 0.0016232777597794349) + +[fips2501748955] +centroid = (0.74313016354508499, -1.240656791898072) +description = North Reading town, MA +station = ('klwm', 0.0024966427726388104) +zone = ('maz006', 0.0024042189980610076) + +[fips2501752805] +centroid = (0.74474321429307067, -1.249705625937962) +description = Pepperell town, MA +station = ('kash', 0.0022431495283583036) +zone = ('maz026', 0.00092032437853852153) + +[fips2501756130] +centroid = (0.7423789912883193, -1.2410237473733039) +description = Reading town, MA +station = ('kbed', 0.0027746801395694162) +zone = ('maz014', 0.0021287250253098173) + +[fips2501761380] +centroid = (0.73711485137150157, -1.2457233430902714) +description = Sherborn town, MA +station = ('kmqe', 0.0033478038852161776) +zone = ('maz013', 0.002126132693968814) + +[fips2501761590] +centroid = (0.74305043690485395, -1.2503710850751624) +description = Shirley town, MA +station = ('kfit', 0.0015242074766140046) +zone = ('maz026', 0.0011590008679795887) + +[fips2501762535] +centroid = (0.7398549484839626, -1.2409522237805573) +description = Somerville city, MA +station = ('kbos', 0.0011684769386112572) +zone = ('maz014', 0.00087539994132784847) + +[fips2501767665] +centroid = (0.7413147767769156, -1.2408883447299344) +description = Stoneham town, MA +station = ('kbos', 0.0021475690800412091) +zone = ('maz014', 0.0012256996590720517) + +[fips2501768050] +centroid = (0.74053775619392781, -1.2481288256785401) +description = Stow town, MA +station = ('kbed', 0.0028119452374916116) +zone = ('maz005', 0.0018083031267349455) + +[fips2501768260] +centroid = (0.73972930223111155, -1.2465328267973466) +description = Sudbury town, MA +station = ('kbed', 0.0021322802803681231) +zone = ('maz005', 0.0014934436810833777) + +[fips2501769415] +centroid = (0.74372123674956547, -1.2431604143501804) +description = Tewksbury town, MA +station = ('klwm', 0.0021915277267008852) +zone = ('maz006', 0.0027504312718165196) + +[fips2501770360] +centroid = (0.74464385269875466, -1.2516109495224865) +description = Townsend town, MA +station = ('kfit', 0.0020510294797226429) +zone = ('maz026', 0.00081297599176745881) + +[fips2501771025] +centroid = (0.74469293135732084, -1.246668089814376) +description = Tyngsborough town, MA +station = ('kash', 0.0022727238130609336) +zone = ('nhz012', 0.0031115267852007689) + +[fips2501772215] +centroid = (0.74184102845297695, -1.240301844288094) +description = Wakefield town, MA +station = ('kbvy', 0.0023435224432440155) +zone = ('maz014', 0.0019068208769421964) + +[fips2501772600] +centroid = (0.73982623781776735, -1.2434121431881955) +description = Waltham city, MA +station = ('kbed', 0.0015473805855065394) +zone = ('maz014', 0.0012201283969416701) + +[fips2501773440] +centroid = (0.7394864222124039, -1.2422891459875849) +description = Watertown Town city, MA +station = ('kbed', 0.0023136424407156765) +zone = ('maz014', 0.00091087717985013103) + +[fips2501773790] +centroid = (0.73932536322902986, -1.2454770422262302) +description = Wayland town, MA +station = ('kbed', 0.0020151213922298631) +zone = ('maz005', 0.0018158293787946984) + +[fips2501776135] +centroid = (0.7432536106830786, -1.2468601807518505) +description = Westford town, MA +station = ('kbed', 0.00274252783598389) +zone = ('maz005', 0.0022653242758699367) + +[fips2501777255] +centroid = (0.73933023269764298, -1.2444796912784704) +description = Weston town, MA +station = ('kbed', 0.001853451264793094) +zone = ('maz005', 0.0020456908869719644) + +[fips2501780230] +centroid = (0.74289323509912686, -1.2420551147881851) +description = Wilmington town, MA +station = ('kbed', 0.0024417778014015029) +zone = ('maz014', 0.0025386271500237442) + +[fips2501780510] +centroid = (0.74094029893260771, -1.2417026106391595) +description = Winchester town, MA +station = ('kbed', 0.0020192378252697398) +zone = ('maz014', 0.0006062668619305669) + +[fips2501781035] +centroid = (0.74156699430712136, -1.2418789936133663) +description = Woburn city, MA +station = ('kbed', 0.0019128231837098944) +zone = ('maz014', 0.0012109969807591648) + +[fips25019] +centroid = (0.7209235715270903, -1.2242072731375357) +description = Nantucket County, MA +station = ('kack', 0.0013874964743914916) +zone = ('maz024', 0.0010093600416424856) + +[fips2501900000] +centroid = (0.7209235715270903, -1.2242072731375357) +description = County subdivisions not defined, MA +station = ('kack', 0.0013874964743914916) +zone = ('maz024', 0.0010093600416424856) + +[fips2501943790] +centroid = (0.72069915709186883, -1.2235184091350662) +description = Nantucket town, MA +station = ('kack', 0.00088542898688088241) +zone = ('maz024', 0.00045061534373965482) + +[fips25021] +centroid = (0.73600016193813034, -1.2423231799079988) +description = Norfolk County, MA +station = ('kowd', 0.00029288233606297411) +zone = ('maz013', 0.0012102510191273261) + +[fips2502102935] +centroid = (0.73534910176725887, -1.2401250249815745) +description = Avon town, MA +station = ('kmqe', 0.0016797461719144364) +zone = ('maz016', 0.00166204344888044) + +[fips2502104930] +centroid = (0.7343766392146327, -1.2474651816837619) +description = Bellingham town, MA +station = ('ksfz', 0.002812328002149372) +zone = ('maz013', 0.0029347937923072751) + +[fips2502107740] +centroid = (0.73662347137389506, -1.2392216076541571) +description = Braintree Town city, MA +station = ('kmqe', 0.0014931174449697385) +zone = ('maz016', 0.00029878853530647837) + +[fips2502109175] +centroid = (0.73869058698007961, -1.241662171360391) +description = Brookline town, MA +station = ('kmqe', 0.0018991543453875867) +zone = ('maz015', 0.00077601805420404561) + +[fips2502111315] +centroid = (0.73610547510519564, -1.241372149998587) +description = Canton town, MA +station = ('kowd', 0.0005501379812131058) +zone = ('maz016', 0.0017018757979387572) + +[fips2502114640] +centroid = (0.73761851848704207, -1.2356736150842407) +description = Cohasset town, MA +station = ('kghg', 0.0032250175404354921) +zone = ('maz016', 0.0028101598085827923) + +[fips2502116495] +centroid = (0.7373470150686019, -1.242315971698188) +description = Dedham town, MA +station = ('kmqe', 0.00096770752236824843) +zone = ('maz015', 0.0019260657368534988) + +[fips2502117405] +centroid = (0.73714399837000988, -1.2442108931203708) +description = Dover town, MA +station = ('kowd', 0.0018117411938992055) +zone = ('maz013', 0.001647392129968697) + +[fips2502124820] +centroid = (0.73410883589420672, -1.243473823123961) +description = Foxborough town, MA +station = ('kowd', 0.0023628468114382062) +zone = ('maz013', 0.0014365872719547177) + +[fips2502125172] +centroid = (0.73451935478756836, -1.2463495846791797) +description = Franklin Town city, MA +station = ('ksfz', 0.0031563594280176635) +zone = ('maz013', 0.0021256392813612086) + +[fips2502130455] +centroid = (0.73563730798664073, -1.2392489918701211) +description = Holbrook town, MA +station = ('kmqe', 0.001879223272350369) +zone = ('maz016', 0.0012724083111754806) + +[fips2502139765] +centroid = (0.73626014618350744, -1.2445123812953602) +description = Medfield town, MA +station = ('kowd', 0.0017931379784817164) +zone = ('maz013', 0.00089791236080653922) + +[fips2502139975] +centroid = (0.73575778806490588, -1.2467372223060476) +description = Medway town, MA +station = ('ksfz', 0.0042639253021686113) +zone = ('maz013', 0.0021735558296186882) + +[fips2502141515] +centroid = (0.73604986891522717, -1.245516015428427) +description = Millis town, MA +station = ('kmqe', 0.0032745968851631128) +zone = ('maz013', 0.0013616735311008971) + +[fips2502141690] +centroid = (0.73725480932421894, -1.2406263009960399) +description = Milton town, MA +station = ('kmqe', 0.0006184292661041991) +zone = ('maz016', 0.0010094757311426366) + +[fips2502144105] +centroid = (0.73795699018888139, -1.2433994720978261) +description = Needham town, MA +station = ('kowd', 0.0019725574305510815) +zone = ('maz015', 0.0022225487277286898) + +[fips2502146050] +centroid = (0.73506716127989169, -1.2449321853403423) +description = Norfolk town, MA +station = ('kowd', 0.0024089217700654321) +zone = ('maz013', 0.00094002164252087502) + +[fips2502150250] +centroid = (0.73630833472415491, -1.242603846305012) +description = Norwood town, MA +station = ('kowd', 0.00038524813058354163) +zone = ('maz013', 0.0011978718325488667) + +[fips2502154100] +centroid = (0.73326168798187363, -1.2450585820847719) +description = Plainville town, MA +station = ('ksfz', 0.0027040098936394223) +zone = ('maz013', 0.0024392158148769335) + +[fips2502155745] +centroid = (0.73759211165545935, -1.239347777505784) +description = Quincy city, MA +station = ('kmqe', 0.0015867128499178354) +zone = ('maz016', 0.00068443201383993691) + +[fips2502155955] +centroid = (0.73611784948959225, -1.24008378285135) +description = Randolph town, MA +station = ('kmqe', 0.0010960493885800553) +zone = ('maz016', 0.00096046542644921207) + +[fips2502160785] +centroid = (0.73493132230420899, -1.242415804531402) +description = Sharon town, MA +station = ('kowd', 0.0013285182357497449) +zone = ('maz013', 0.0011990937932289123) + +[fips2502167945] +centroid = (0.73511311579909677, -1.2409564998372244) +description = Stoughton town, MA +station = ('kowd', 0.0014053427785779146) +zone = ('maz016', 0.0021552393522435926) + +[fips2502172495] +centroid = (0.73559145818719085, -1.2436449002972416) +description = Walpole town, MA +station = ('kowd', 0.0013197962713025889) +zone = ('maz013', 0.00014916212124042443) + +[fips2502174175] +centroid = (0.73836834684028396, -1.2441347269518139) +description = Wellesley town, MA +station = ('kowd', 0.0026121681894417975) +zone = ('maz014', 0.0025731384184346177) + +[fips2502178690] +centroid = (0.7368718142731614, -1.2429671016822295) +description = Westwood town, MA +station = ('kowd', 0.00090623981385886884) +zone = ('maz013', 0.0014914508744721894) + +[fips2502178972] +centroid = (0.73664546252247021, -1.2382385858595566) +description = Weymouth Town city, MA +station = ('kmqe', 0.0022151005952849101) +zone = ('maz016', 0.00086114926912253889) + +[fips2502182315] +centroid = (0.73395756820793623, -1.245412115978056) +description = Wrentham town, MA +station = ('ksfz', 0.0030138304486746277) +zone = ('maz013', 0.0019590069420752326) + +[fips25023] +centroid = (0.73281481388019298, -1.2346798071548624) +description = Plymouth County, MA +station = ('kpym', 0.0015259551254529263) +zone = ('maz019', 0.00076736326564553873) + +[fips2502300000] +centroid = (0.73413260727861884, -1.231545143458403) +description = County subdivisions not defined, MA +station = ('kghg', 0.0016573593383133894) +zone = ('maz019', 0.0020999110377913381) + +[fips2502300170] +centroid = (0.73513205262148096, -1.2384370472488007) +description = Abington town, MA +station = ('kmqe', 0.0026651662665606469) +zone = ('maz016', 0.0018991489571112987) + +[fips2502308085] +centroid = (0.73255634807126513, -1.2388133751421158) +description = Bridgewater town, MA +station = ('ktan', 0.001630286616893972) +zone = ('maz018', 0.0011132529039760402) + +[fips2502309000] +centroid = (0.7344789329620921, -1.2396137831370804) +description = Brockton city, MA +station = ('kowd', 0.0025443807716842041) +zone = ('maz016', 0.0024368429009549524) + +[fips2502311665] +centroid = (0.73090978700164122, -1.2347181345852363) +description = Carver town, MA +station = ('kpym', 0.00040807676280617548) +zone = ('maz021', 0.0024191772842880655) + +[fips2502317895] +centroid = (0.73381274078660585, -1.2340545080437504) +description = Duxbury town, MA +station = ('kghg', 0.001028138019724811) +zone = ('maz019', 0.00033340974945421207) + +[fips2502318455] +centroid = (0.73368890967617684, -1.2381445824260442) +description = East Bridgewater town, MA +station = ('ktan', 0.0028631002158552698) +zone = ('maz018', 0.0013571705544762401) + +[fips2502327795] +centroid = (0.73309959925424095, -1.2367984972404433) +description = Halifax town, MA +station = ('kpym', 0.0024721184345008976) +zone = ('maz018', 0.00073243850446859219) + +[fips2502328285] +centroid = (0.73518427287270061, -1.2366759053137832) +description = Hanover town, MA +station = ('kghg', 0.0023176804085514894) +zone = ('maz019', 0.0024599660799447158) + +[fips2502328495] +centroid = (0.73391679731660975, -1.2368652909909172) +description = Hanson town, MA +station = ('kghg', 0.0025749543778252832) +zone = ('maz018', 0.0014778593498975181) + +[fips2502330210] +centroid = (0.73693169651979729, -1.2372106218367169) +description = Hingham town, MA +station = ('kmqe', 0.002971327014364335) +zone = ('maz016', 0.0015815821749486374) + +[fips2502331645] +centroid = (0.73897650681814131, -1.2371473361980394) +description = Hull town, MA +station = ('kbos', 0.0017806910413189492) +zone = ('maz015', 0.0025763081558950822) + +[fips2502333220] +centroid = (0.73281481388019298, -1.2346798071548624) +description = Kingston town, MA +station = ('kpym', 0.0015259551254529263) +zone = ('maz019', 0.00076736326564553873) + +[fips2502333920] +centroid = (0.73014931213996226, -1.2384339754693172) +description = Lakeville town, MA +station = ('ktan', 0.0011523701894861069) +zone = ('maz018', 0.0024719840036925272) + +[fips2502338540] +centroid = (0.72789073391483394, -1.2348081761213465) +description = Marion town, MA +station = ('kewb', 0.0028581459786354399) +zone = ('maz021', 0.00072542722282454089) + +[fips2502338855] +centroid = (0.7350478404850721, -1.2341280911250145) +description = Marshfield town, MA +station = ('kghg', 0.00047334716955753885) +zone = ('maz019', 0.0015390710113544453) + +[fips2502339450] +centroid = (0.72712795521854234, -1.2359029688012451) +description = Mattapoisett town, MA +station = ('kewb', 0.0020522026928718236) +zone = ('maz021', 0.001474915612711752) + +[fips2502340850] +centroid = (0.73090905396335537, -1.2369020476249641) +description = Middleborough town, MA +station = ('ktan', 0.0019176593978891495) +zone = ('maz018', 0.0015994671024052395) + +[fips2502350145] +centroid = (0.73591055673433292, -1.2360220002562312) +description = Norwell town, MA +station = ('kghg', 0.0021212202548812247) +zone = ('maz019', 0.0027372997924414873) + +[fips2502352630] +centroid = (0.7342216888836407, -1.2357928210721516) +description = Pembroke town, MA +station = ('kghg', 0.0017226153308629621) +zone = ('maz019', 0.001350446282875089) + +[fips2502354310] +centroid = (0.73119237326083164, -1.232526227937534) +description = Plymouth town, MA +station = ('kpym', 0.0014945570090995732) +zone = ('maz019', 0.002648230799990949) + +[fips2502354415] +centroid = (0.73232444617355275, -1.2357411593262926) +description = Plympton town, MA +station = ('kpym', 0.001369845810428264) +zone = ('maz018', 0.0011838052407200132) + +[fips2502357600] +centroid = (0.72884680782578404, -1.2363641720560845) +description = Rochester town, MA +station = ('kewb', 0.0021384865687162102) +zone = ('maz021', 0.00087271036169602129) + +[fips2502357775] +centroid = (0.73531417772892649, -1.2376237063640789) +description = Rockland town, MA +station = ('kmqe', 0.0030611402990914013) +zone = ('maz016', 0.0020416958835596933) + +[fips2502360330] +centroid = (0.73662579266180017, -1.2347057602008398) +description = Scituate town, MA +station = ('kghg', 0.0020167283505787394) +zone = ('maz019', 0.0031331204107840102) + +[fips2502372985] +centroid = (0.72886101480589516, -1.2339640825352047) +description = Wareham town, MA +station = ('kpym', 0.002468172415708062) +zone = ('maz021', 0.0010342836819371888) + +[fips2502375260] +centroid = (0.73341557366202204, -1.2396500685322294) +description = West Bridgewater town, MA +station = ('ktan', 0.0024170283035472636) +zone = ('maz018', 0.0019693804943768599) + +[fips2502379530] +centroid = (0.73441664216108848, -1.2381259248563403) +description = Whitman town, MA +station = ('kmqe', 0.0033223017433038171) +zone = ('maz018', 0.002029002781586475) + +[fips25025] +centroid = (0.73883208082253882, -1.2395358541859789) +description = Suffolk County, MA +station = ('kbos', 0.00060743171737616896) +zone = ('maz015', 0.00080572266549649876) + +[fips2502500000] +centroid = (0.73982946667688343, -1.2339515510711752) +description = County subdivisions not defined, MA +station = ('kbvy', 0.0043877761418706493) +zone = ('maz007', 0.0048348272863735818) + +[fips2502507000] +centroid = (0.73883208082253882, -1.2395358541859789) +description = Boston city, MA +station = ('kbos', 0.00060743171737616896) +zone = ('maz015', 0.00080572266549649876) + +[fips2502513205] +centroid = (0.7399641711885524, -1.2397308947298891) +description = Chelsea city, MA +station = ('kbos', 0.00055934234149285743) +zone = ('maz015', 0.0013284282392402983) + +[fips2502515] +centroid = (0.74339479036627243, -1.2606552980661987) +description = Athol CDP, MA +station = ('kore', 0.00071603983141292388) +zone = ('maz003', 0.0029048461333360523) + +[fips2502556585] +centroid = (0.7403863139747322, -1.2390154842694967) +description = Revere city, MA +station = ('kbos', 0.0010072862068866318) +zone = ('maz015', 0.0019731836673735547) + +[fips2502581005] +centroid = (0.73959271276385041, -1.2386714449673435) +description = Winthrop Town city, MA +station = ('kbos', 0.00061328986715338115) +zone = ('maz015', 0.0016416105152138429) + +[fips2502690] +centroid = (0.73184540565375777, -1.244323815922975) +description = Attleboro city, MA +station = ('ksfz', 0.0026813243451277108) +zone = ('maz017', 0.001445761126092348) + +[fips25027] +centroid = (0.73847835494303704, -1.2555947857132113) +description = Worcester County, MA +station = ('korh', 0.0012332692333906134) +zone = ('maz004', 0.0025286705657577208) + +[fips2502701885] +centroid = (0.74436018433542805, -1.2552389828918997) +description = Ashburnham town, MA +station = ('kfit', 0.00270077107031148) +zone = ('maz004', 0.0034804080535644805) + +[fips2502702480] +centroid = (0.74309005587887422, -1.2606446515577616) +description = Athol town, MA +station = ('kore', 0.00061988340391734532) +zone = ('maz003', 0.0028658705810111424) + +[fips2502702760] +centroid = (0.73650639468767132, -1.2539493591076012) +description = Auburn town, MA +station = ('korh', 0.0012157814675061724) +zone = ('maz012', 0.001276079263047131) + +[fips2502703740] +centroid = (0.74034856250301162, -1.2584975475119582) +description = Barre town, MA +station = ('kore', 0.0034570061260551428) +zone = ('maz004', 0.0017682487215942289) + +[fips2502705490] +centroid = (0.73975656427402769, -1.2502472365114408) +description = Berlin town, MA +station = ('kfit', 0.0033108576760962983) +zone = ('maz005', 0.0035490387116148448) + +[fips2502706015] +centroid = (0.73373626045878348, -1.2484760065733469) +description = Blackstone town, MA +station = ('ksfz', 0.0021930980581164141) +zone = ('riz001', 0.002842745607848491) + +[fips2502706365] +centroid = (0.74071663498896467, -1.2496884868047073) +description = Bolton town, MA +station = ('kfit', 0.0027833308469114504) +zone = ('maz005', 0.0028900628588964853) + +[fips2502707525] +centroid = (0.73923505989353178, -1.251683066527179) +description = Boylston town, MA +station = ('korh', 0.0024805578401884288) +zone = ('maz012', 0.0036257297299276273) + +[fips2502709105] +centroid = (0.73621117224469645, -1.2585128191429131) +description = Brookfield town, MA +station = ('korh', 0.0034468480897228461) +zone = ('maz004', 0.0050353794333986802) + +[fips2502712715] +centroid = (0.735375892571277, -1.2560789924075921) +description = Charlton town, MA +station = ('korh', 0.0026615926401918266) +zone = ('maz012', 0.0025689767178803261) + +[fips2502714395] +centroid = (0.74022707013378031, -1.2512266280211974) +description = Clinton town, MA +station = ('kfit', 0.0025871508172443962) +zone = ('maz004', 0.0037791126707843645) + +[fips2502717300] +centroid = (0.73396456697823687, -1.2523128511344686) +description = Douglas town, MA +station = ('korh', 0.0040111156875142382) +zone = ('maz012', 0.0017313452886089117) + +[fips2502717685] +centroid = (0.73397688900275593, -1.2555039064190598) +description = Dudley town, MA +station = ('korh', 0.0038195599215774521) +zone = ('maz012', 0.0027233824551034175) + +[fips2502718560] +centroid = (0.73669792711978521, -1.2573382998227836) +description = East Brookfield town, MA +station = ('korh', 0.0024527492184694705) +zone = ('maz004', 0.0043377266808379104) + +[fips2502723875] +centroid = (0.7435448014154814, -1.2534234914039752) +description = Fitchburg city, MA +station = ('kfit', 0.0011653645902166012) +zone = ('maz026', 0.0021039391637929666) + +[fips2502725485] +centroid = (0.74327492115324556, -1.2564287040298141) +description = Gardner city, MA +station = ('kfit', 0.0030453613264793326) +zone = ('maz004', 0.0023183471843897753) + +[fips2502726430] +centroid = (0.736688659421457, -1.2511156076274781) +description = Grafton town, MA +station = ('korh', 0.0025691940694854525) +zone = ('maz012', 0.0015142816438300977) + +[fips2502728740] +centroid = (0.73920315527480529, -1.2604263981347996) +description = Hardwick town, MA +station = ('kore', 0.0038910700592891946) +zone = ('maz004', 0.0035496461584955024) + +[fips2502728950] +centroid = (0.74184910932741377, -1.2494618208947508) +description = Harvard town, MA +station = ('kfit', 0.0022993615823923537) +zone = ('maz026', 0.0025064363152952985) + +[fips2502730560] +centroid = (0.73924818476950671, -1.2542385252580714) +description = Holden town, MA +station = ('korh', 0.0015565841235259785) +zone = ('maz004', 0.0022664072074221717) + +[fips2502730945] +centroid = (0.73520389037349299, -1.248493634398792) +description = Hopedale town, MA +station = ('ksfz', 0.0036458824347249327) +zone = ('maz013', 0.0034783567480535654) + +[fips2502731435] +centroid = (0.74158338294879766, -1.2566872920117895) +description = Hubbardston town, MA +station = ('korh', 0.0042688528983881062) +zone = ('maz004', 0.00070172557296425465) + +[fips2502734165] +centroid = (0.74146506707880488, -1.2509736949059984) +description = Lancaster town, MA +station = ('kfit', 0.0015884596110292137) +zone = ('maz026', 0.0027263846022042614) + +[fips2502734795] +centroid = (0.73719962201327094, -1.255107105813619) +description = Leicester town, MA +station = ('korh', 0.00076881361960356813) +zone = ('maz012', 0.002378494609504401) + +[fips2502735075] +centroid = (0.74212862380712064, -1.2526380932405778) +description = Leominster city, MA +station = ('kfit', 0.00057634711774318158) +zone = ('maz026', 0.0025024256408475382) + +[fips2502737420] +centroid = (0.74320669623278501, -1.2517582378580625) +description = Lunenburg town, MA +station = ('kfit', 0.00070220804528668484) +zone = ('maz026', 0.0012499006335946472) + +[fips2502740255] +centroid = (0.73468709838197743, -1.248694102916676) +description = Mendon town, MA +station = ('ksfz', 0.003157420577337294) +zone = ('riz001', 0.0036868083303726201) + +[fips2502741165] +centroid = (0.73580798373419332, -1.2482842472484301) +description = Milford town, MA +station = ('ksfz', 0.0042332537296588283) +zone = ('maz013', 0.0033199572672186818) + +[fips2502741340] +centroid = (0.73639361151140736, -1.2527563043908152) +description = Millbury town, MA +station = ('korh', 0.0017350961876462915) +zone = ('maz012', 0.00071995501143286159) + +[fips2502741585] +centroid = (0.73367780938213423, -1.2492853681073741) +description = Millville town, MA +station = ('ksfz', 0.002330129918899524) +zone = ('riz001', 0.0026018330177037708) + +[fips2502745105] +centroid = (0.73860806781304533, -1.2589201964436212) +description = New Braintree town, MA +station = ('korh', 0.0035310260073085228) +zone = ('maz004', 0.0030698654986176179) + +[fips2502746820] +centroid = (0.73868166834760185, -1.250462714860892) +description = Northborough town, MA +station = ('korh', 0.0030127777549604821) +zone = ('maz012', 0.0034075148083932139) + +[fips2502746925] +centroid = (0.73527724656195437, -1.2506640560434019) +description = Northbridge town, MA +station = ('korh', 0.0036233768104489417) +zone = ('maz012', 0.0015181923202852098) + +[fips2502747135] +centroid = (0.73770815859742456, -1.2578042678264809) +description = North Brookfield town, MA +station = ('korh', 0.0025858980181036871) +zone = ('maz004', 0.0034491052074443751) + +[fips2502750670] +centroid = (0.73916198295775071, -1.2574093347233397) +description = Oakham town, MA +station = ('korh', 0.0027226833426488399) +zone = ('maz004', 0.0019918481176904156) + +[fips2502751825] +centroid = (0.73527686258951885, -1.2543175188600166) +description = Oxford town, MA +station = ('korh', 0.0024156410847769685) +zone = ('maz012', 0.0013083255767515694) + +[fips2502752420] +centroid = (0.73847835494303704, -1.2555947857132113) +description = Paxton town, MA +station = ('korh', 0.0012332692333906134) +zone = ('maz004', 0.0025286705657577208) + +[fips2502753120] +centroid = (0.74105322173521171, -1.2604128194732191) +description = Petersham town, MA +station = ('kore', 0.0021144003940995267) +zone = ('maz004', 0.0030729832477852576) + +[fips2502753225] +centroid = (0.74266691825502074, -1.2590710277975785) +description = Phillipston town, MA +station = ('kore', 0.0018085458022280179) +zone = ('maz004', 0.0026905698923161683) + +[fips2502755395] +centroid = (0.74096426230323764, -1.254499731233925) +description = Princeton town, MA +station = ('kfit', 0.0023167303525566873) +zone = ('maz004', 0.0012910917100451909) + +[fips2502758580] +centroid = (0.74506297606532856, -1.2598714706991281) +description = Royalston town, MA +station = ('kore', 0.0023648062031376895) +zone = ('maz003', 0.0041004827792074901) + +[fips2502758825] +centroid = (0.73982721520214834, -1.2561224336526742) +description = Rutland town, MA +station = ('korh', 0.0025204255211724821) +zone = ('maz004', 0.0011370019293207674) + +[fips2502761800] +centroid = (0.73800840758864517, -1.2516493991259081) +description = Shrewsbury town, MA +station = ('korh', 0.0019937756693458324) +zone = ('maz012', 0.0024419017040889831) + +[fips2502763165] +centroid = (0.73826772860890644, -1.2484065599224099) +description = Southborough town, MA +station = ('kbed', 0.004143902615794128) +zone = ('maz005', 0.0034405059246465186) + +[fips2502763345] +centroid = (0.73407970634899089, -1.2572311715132962) +description = Southbridge Town city, MA +station = ('korh', 0.0042119841182157369) +zone = ('maz012', 0.0037639926595616777) + +[fips2502766105] +centroid = (0.73735293173476613, -1.2564951138078526) +description = Spencer town, MA +station = ('korh', 0.0016525779991174896) +zone = ('maz004', 0.0036119638338802228) + +[fips2502767385] +centroid = (0.74085603443632153, -1.2527283093096133) +description = Sterling town, MA +station = ('kfit', 0.0018340338758383249) +zone = ('maz004', 0.0026002958451394964) + +[fips2502768155] +centroid = (0.73486770505297383, -1.2581704029969643) +description = Sturbridge town, MA +station = ('korh', 0.0040201723604563026) +zone = ('maz012', 0.0041821498970341011) + +[fips2502768610] +centroid = (0.73534301056816942, -1.2522792884529528) +description = Sutton town, MA +station = ('korh', 0.002789826348360083) +zone = ('maz012', 0.00042873736833849122) + +[fips2502769275] +centroid = (0.74287290201334111, -1.2579542963289825) +description = Templeton town, MA +station = ('kore', 0.002600793581268657) +zone = ('maz004', 0.0022884722167438826) + +[fips2502771480] +centroid = (0.73611924575299392, -1.2497183668415015) +description = Upton town, MA +station = ('korh', 0.0037466242104380399) +zone = ('maz012', 0.0022088159070036396) + +[fips2502771620] +centroid = (0.7341058339278933, -1.2504171966740001) +description = Uxbridge town, MA +station = ('ksfz', 0.003135607393936808) +zone = ('maz012', 0.0022783012869509833) + +[fips2502773090] +centroid = (0.73653156233548511, -1.2601243689077422) +description = Warren town, MA +station = ('korh', 0.0044588486638749069) +zone = ('maz011', 0.0040417225743387252) + +[fips2502773895] +centroid = (0.73385989958299469, -1.2539458509958046) +description = Webster town, MA +station = ('korh', 0.0038420902967771947) +zone = ('maz012', 0.0020615439794007661) + +[fips2502775015] +centroid = (0.73772320333557673, -1.2498880302980879) +description = Westborough town, MA +station = ('korh', 0.0032724215930382181) +zone = ('maz012', 0.0028860494678665362) + +[fips2502775155] +centroid = (0.73948582880045832, -1.2528852318626602) +description = West Boylston town, MA +station = ('korh', 0.0020798635199194581) +zone = ('maz004', 0.0028886473328096126) + +[fips2502775400] +centroid = (0.73751838894785515, -1.2593976312605042) +description = West Brookfield town, MA +station = ('korh', 0.0037693136839984224) +zone = ('maz004', 0.0041543734890082335) + +[fips2502777010] +centroid = (0.74271788186917898, -1.2549866780952315) +description = Westminster town, MA +station = ('kfit', 0.0019240432380294103) +zone = ('maz004', 0.0019889294273300485) + +[fips2502780405] +centroid = (0.7446829306207069, -1.2574400699714674) +description = Winchendon town, MA +station = ('kafn', 0.0023918538911630984) +zone = ('maz004', 0.0038244727132088203) + +[fips2502782000] +centroid = (0.7377415641993077, -1.2532822419076113) +description = Worcester city, MA +station = ('korh', 0.00076209563265487723) +zone = ('maz012', 0.0021169876057177419) + +[fips2503040] +centroid = (0.74285089341147348, -1.2493912223265078) +description = Ayer CDP, MA +station = ('kfit', 0.0022055713663612433) +zone = ('maz026', 0.0016445020305130254) + +[fips2503355] +centroid = (0.7435948225518435, -1.2580127823122167) +description = Baldwinville CDP, MA +station = ('kore', 0.0026177970162339749) +zone = ('maz004', 0.0029374846649127808) + +[fips2503690] +centroid = (0.72715176150953953, -1.2279649321104946) +description = Barnstable Town city, MA +station = ('khya', 0.001182519026713602) +zone = ('maz022', 0.0013456022437442485) + +[fips2503705] +centroid = (0.74042115074660209, -1.2584937426941889) +description = Barre CDP, MA +station = ('kore', 0.0034030828958695955) +zone = ('maz004', 0.0017417422500047169) + +[fips2504790] +centroid = (0.73778598282877095, -1.2636651009079705) +description = Belchertown CDP, MA +station = ('kcef', 0.0021049198140330131) +zone = ('maz010', 0.0015516408339532729) + +[fips2504965] +centroid = (0.73460501554725621, -1.2474265226408301) +description = Bellingham CDP, MA +station = ('ksfz', 0.0030424945475318608) +zone = ('maz013', 0.0028260273383083406) + +[fips2505105] +centroid = (0.73993786907672476, -1.2423303183046395) +description = Belmont CDP, MA +station = ('kbed', 0.0019821961155766523) +zone = ('maz014', 0.00051502170714807659) + +[fips2505595] +centroid = (0.74278591480342171, -1.2364579485967944) +description = Beverly city, MA +station = ('kbvy', 0.0010317630130870837) +zone = ('maz007', 0.001406614720491615) + +[fips2506050] +centroid = (0.73609271674836363, -1.2727614951699771) +description = Blandford CDP, MA +station = ('kbaf', 0.0026841123568272407) +zone = ('maz009', 0.00017995597949658088) + +[fips2506170] +centroid = (0.72614652167356097, -1.2381779182147572) +description = Bliss Corner CDP, MA +station = ('kewb', 0.001401195274500667) +zone = ('maz020', 0.0017432774425766115) + +[fips2507000] +centroid = (0.73883208082253882, -1.2395358541859789) +description = Boston city, MA +station = ('kbos', 0.00060743171737616896) +zone = ('maz015', 0.00080572266549649876) + +[fips2507140] +centroid = (0.72836106524166133, -1.2324776379711586) +description = Bourne CDP, MA +station = ('kfmh', 0.0019280017490865746) +zone = ('maz021', 0.002094703305617859) + +[fips2507385] +centroid = (0.74462337998662886, -1.2389052667272333) +description = Boxford CDP, MA +station = ('kbvy', 0.0016492242179045153) +zone = ('maz006', 0.0013825399888818955) + +[fips2507740] +centroid = (0.73662347137389506, -1.2392216076541571) +description = Braintree Town city, MA +station = ('kmqe', 0.0014931174449697385) +zone = ('maz016', 0.00029878853530647837) + +[fips2507945] +centroid = (0.72886576210146059, -1.2229590485630946) +description = Brewster CDP, MA +station = ('kcqx', 0.0016355817034900549) +zone = ('maz022', 0.0030330235571912338) + +[fips2508050] +centroid = (0.73279894883729235, -1.2386286320407922) +description = Bridgewater CDP, MA +station = ('ktan', 0.0019039108736879195) +zone = ('maz018', 0.0010245876461975219) + +[fips2509000] +centroid = (0.7344789329620921, -1.2396137831370804) +description = Brockton city, MA +station = ('kowd', 0.0025443807716842041) +zone = ('maz016', 0.0024368429009549524) + +[fips2509070] +centroid = (0.73679074372940623, -1.2584301428962461) +description = Brookfield CDP, MA +station = ('korh', 0.0031807800158892476) +zone = ('maz004', 0.0044703191374799722) + +[fips2509210] +centroid = (0.73869058698007961, -1.241662171360391) +description = Brookline CDP, MA +station = ('kmqe', 0.0018991543453875867) +zone = ('maz015', 0.00077601805420404561) + +[fips2509875] +centroid = (0.74182125387255193, -1.2427043249100493) +description = Burlington CDP, MA +station = ('kbed', 0.0014168729783149826) +zone = ('maz014', 0.0015738802437436803) + +[fips2510015] +centroid = (0.72876135650560636, -1.2324844622085338) +description = Buzzards Bay CDP, MA +station = ('kfmh', 0.0022441017551176508) +zone = ('maz021', 0.0020958750599095032) + +[fips2511000] +centroid = (0.739600147866464, -1.2412480570887703) +description = Cambridge city, MA +station = ('kbos', 0.0013201920151984078) +zone = ('maz014', 0.00090615718234201875) + +[fips2512960] +centroid = (0.72739415283605646, -1.2210716146034029) +description = Chatham CDP, MA +station = ('kcqx', 0.00050586203145581987) +zone = ('maz022', 0.0044675988681557987) + +[fips2513205] +centroid = (0.7399641711885524, -1.2397308947298891) +description = Chelsea city, MA +station = ('kbos', 0.00055934234149285743) +zone = ('maz015', 0.0013284282392402983) + +[fips2513310] +centroid = (0.74283200894896684, -1.2769237912767184) +description = Cheshire CDP, MA +station = ('kaqw', 0.0024242172128986976) +zone = ('maz001', 0.00013699779309078332) + +[fips2513450] +centroid = (0.73793719815516379, -1.2737443773382378) +description = Chester CDP, MA +station = ('kbaf', 0.0039445529082722036) +zone = ('maz009', 0.0020659260913287202) + +[fips2513660] +centroid = (0.73610427082801189, -1.2666248302535024) +description = Chicopee city, MA +station = ('kcef', 0.00065857307139490808) +zone = ('maz011', 0.0014103411948712375) + +[fips2514430] +centroid = (0.74035119795018212, -1.251163307475935) +description = Clinton CDP, MA +station = ('kfit', 0.0024865903878303923) +zone = ('maz004', 0.0038029157052128382) + +[fips2514570] +centroid = (0.73875818358200929, -1.2453327907635527) +description = Cochituate CDP, MA +station = ('kbed', 0.0025169668669033423) +zone = ('maz005', 0.0023923989274304736) + +[fips2515340] +centroid = (0.73778666350717914, -1.2483082629789377) +description = Cordaville CDP, MA +station = ('korh', 0.0044421928817586689) +zone = ('maz005', 0.0038138311517331648) + +[fips2516285] +centroid = (0.74305951261696435, -1.2383201276422098) +description = Danvers CDP, MA +station = ('kbvy', 0.00046347619253502768) +zone = ('maz007', 0.00153299642135841) + +[fips2516530] +centroid = (0.7373470150686019, -1.242315971698188) +description = Dedham CDP, MA +station = ('kmqe', 0.00096770752236824843) +zone = ('maz015', 0.0019260657368534988) + +[fips2516635] +centroid = (0.7425995659991862, -1.2671495460398221) +description = Deerfield CDP, MA +station = ('kore', 0.0041964597081356955) +zone = ('maz003', 0.0019503375269907092) + +[fips2516740] +centroid = (0.72832945732890775, -1.2251759483256852) +description = Dennis CDP, MA +station = ('khya', 0.0014297788686628268) +zone = ('maz022', 0.0013198964542943815) + +[fips2516810] +centroid = (0.72722466391239537, -1.2240979282598983) +description = Dennis Port CDP, MA +station = ('kcqx', 0.0017914117052505445) +zone = ('maz022', 0.002362379046377542) + +[fips2516840] +centroid = (0.74252181158100994, -1.2499005792154099) +description = Devens CDP, MA +station = ('kfit', 0.0018294844908932054) +zone = ('maz026', 0.0017631312363575911) + +[fips2517370] +centroid = (0.73734355931668283, -1.2438633631597136) +description = Dover CDP, MA +station = ('kowd', 0.0017152293895163629) +zone = ('maz013', 0.0018219171591352069) + +[fips2517860] +centroid = (0.73381237426746304, -1.2335854333539844) +description = Duxbury CDP, MA +station = ('kghg', 0.00097129086182434342) +zone = ('maz019', 0.00057579694919098184) + +[fips2518595] +centroid = (0.7370370969533252, -1.2575520852028603) +description = East Brookfield CDP, MA +station = ('korh', 0.0024878444357703667) +zone = ('maz004', 0.0040396328371346173) + +[fips2518840] +centroid = (0.72842183760621593, -1.2244774151991595) +description = East Dennis CDP, MA +station = ('khya', 0.0018630586959905663) +zone = ('maz022', 0.0018464355550554437) + +[fips2518875] +centroid = (0.73444823262054948, -1.2516801867339131) +description = East Douglas CDP, MA +station = ('korh', 0.003784661806342252) +zone = ('maz012', 0.0014212860924157137) + +[fips2518980] +centroid = (0.72554593642465715, -1.2314464101826177) +description = East Falmouth CDP, MA +station = ('kfmh', 0.0014789479383332917) +zone = ('maz023', 0.0033053053064928655) + +[fips2519370] +centroid = (0.73767100053764945, -1.2683449569510978) +description = Easthampton Town city, MA +station = ('kbaf', 0.0018228844617637855) +zone = ('maz010', 0.0021285970388821838) + +[fips2519400] +centroid = (0.72795234403742937, -1.2222864684825461) +description = East Harwich CDP, MA +station = ('kcqx', 0.00060561807316619613) +zone = ('maz022', 0.003488632229495033) + +[fips2520310] +centroid = (0.74460264547511501, -1.2489933570702232) +description = East Pepperell CDP, MA +station = ('kash', 0.0021650739688758038) +zone = ('maz026', 0.0013228374197128653) + +[fips2520380] +centroid = (0.72839944503191278, -1.22924733023169) +description = East Sandwich CDP, MA +station = ('kfmh', 0.0018482684399889417) +zone = ('maz022', 0.0017260930071649272) + +[fips2521815] +centroid = (0.74411102113141336, -1.2352845637406784) +description = Essex CDP, MA +station = ('kbvy', 0.0020081368332660779) +zone = ('maz007', 0.001166976836836992) + +[fips2521990] +centroid = (0.74012324049657918, -1.2401375738988962) +description = Everett city, MA +station = ('kbos', 0.00084234256395916143) +zone = ('maz015', 0.001360033893156145) + +[fips2523000] +centroid = (0.72824475650030851, -1.2408272058462368) +description = Fall River city, MA +station = ('kewb', 0.0018159765227135764) +zone = ('maz020', 0.0011456937361607087) + +[fips2523070] +centroid = (0.72520852937366165, -1.2323568611869204) +description = Falmouth CDP, MA +station = ('kfmh', 0.0020999059138321254) +zone = ('maz023', 0.0027713283478649933) + +[fips2523840] +centroid = (0.73521579351899147, -1.2585724221368688) +description = Fiskdale CDP, MA +station = ('korh', 0.0040132495680944014) +zone = ('maz012', 0.0044244837012051572) + +[fips2523875] +centroid = (0.7435448014154814, -1.2534234914039752) +description = Fitchburg city, MA +station = ('kfit', 0.0011653645902166012) +zone = ('maz026', 0.0021039391637929666) + +[fips2524190] +centroid = (0.72751410931554605, -1.2306453738691223) +description = Forestdale CDP, MA +station = ('kfmh', 0.00058948339631208907) +zone = ('maz021', 0.0036019452488385627) + +[fips2524855] +centroid = (0.73415571543791536, -1.2435191842312205) +description = Foxborough CDP, MA +station = ('kowd', 0.0023357285187347618) +zone = ('maz013', 0.0013846274807590203) + +[fips2524960] +centroid = (0.73841224187097154, -1.246796825300003) +description = Framingham CDP, MA +station = ('kbed', 0.0032803185443164178) +zone = ('maz005', 0.0028082418392793734) + +[fips2525172] +centroid = (0.73451935478756836, -1.2463495846791797) +description = Franklin Town city, MA +station = ('ksfz', 0.0031563594280176635) +zone = ('maz013', 0.0021256392813612086) + +[fips2525485] +centroid = (0.74327492115324556, -1.2564287040298141) +description = Gardner city, MA +station = ('kfit', 0.0030453613264793326) +zone = ('maz004', 0.0023183471843897753) + +[fips2526150] +centroid = (0.74401682571168326, -1.2337004330983983) +description = Gloucester city, MA +station = ('kbvy', 0.0030707173165890893) +zone = ('maz007', 0.0023358355408202199) + +[fips2526500] +centroid = (0.73769164778270069, -1.2658511956092633) +description = Granby CDP, MA +station = ('kcef', 0.0011647974409816134) +zone = ('maz010', 0.00068151571707865052) + +[fips2526780] +centroid = (0.73642370098771182, -1.280399247962922) +description = Great Barrington CDP, MA +station = ('kpsf', 0.004297677825528051) +zone = ('maz025', 0.0014769446705679605) + +[fips2527100] +centroid = (0.74376631860414455, -1.2670577766277522) +description = Greenfield Town city, MA +station = ('kore', 0.0041740123947061492) +zone = ('maz002', 0.0024874424877747016) + +[fips2527147] +centroid = (0.73438143887007568, -1.2331902035448703) +description = Green Harbor-Cedar Crest CDP, MA +station = ('kghg', 0.00050363901215687171) +zone = ('maz019', 0.001171353841448752) + +[fips2527445] +centroid = (0.74371551206961883, -1.2490495741254297) +description = Groton CDP, MA +station = ('kfit', 0.0026621907554713296) +zone = ('maz026', 0.0013012250017624544) + +[fips2528460] +centroid = (0.73417325599689787, -1.2365616909675328) +description = Hanson CDP, MA +station = ('kghg', 0.0022821945368887353) +zone = ('maz018', 0.0017863302849563639) + +[fips2529055] +centroid = (0.72766598786705461, -1.2229438991051873) +description = Harwich Center CDP, MA +station = ('kcqx', 0.0009192499528484241) +zone = ('maz022', 0.003043181191969984) + +[fips2529090] +centroid = (0.7272813871130851, -1.222868326348576) +description = Harwich Port CDP, MA +station = ('kcqx', 0.00088044784237354301) +zone = ('maz022', 0.0031950883860752412) + +[fips2529230] +centroid = (0.73954632191233249, -1.2671743297152003) +description = Hatfield CDP, MA +station = ('kcef', 0.0031513499250543529) +zone = ('maz010', 0.0016586634703577542) + +[fips2529405] +centroid = (0.74670325394964543, -1.2407098150007476) +description = Haverhill city, MA +station = ('klwm', 0.0012977489879946438) +zone = ('maz006', 0.0012124634470964718) + +[fips2530175] +centroid = (0.73710727664254794, -1.2372556338781258) +description = Hingham CDP, MA +station = ('kbos', 0.0028504729025499286) +zone = ('maz016', 0.0015607583442334941) + +[fips2530420] +centroid = (0.73563730798664073, -1.2392489918701211) +description = Holbrook CDP, MA +station = ('kmqe', 0.001879223272350369) +zone = ('maz016', 0.0012724083111754806) + +[fips2530630] +centroid = (0.73392934623393158, -1.2593041514257672) +description = Holland CDP, MA +station = ('kijd', 0.005269320533162718) +zone = ('ctz003', 0.0041705156271947064) + +[fips2530840] +centroid = (0.73673237991921947, -1.2678498943087699) +description = Holyoke city, MA +station = ('kbaf', 0.0012400493705800699) +zone = ('maz010', 0.0023124803575119476) + +[fips2530980] +centroid = (0.73525286431230397, -1.2486136955980367) +description = Hopedale CDP, MA +station = ('ksfz', 0.0037060312930952931) +zone = ('maz013', 0.0035629183789998441) + +[fips2531050] +centroid = (0.73697510285829437, -1.2483309697125062) +description = Hopkinton CDP, MA +station = ('kbed', 0.0051052924328812057) +zone = ('maz013', 0.0036428880757886136) + +[fips2531295] +centroid = (0.73733397745908946, -1.2804059674805421) +description = Housatonic CDP, MA +station = ('kpsf', 0.0034208406951907518) +zone = ('maz025', 0.0015260620948065625) + +[fips2531575] +centroid = (0.73988158220834799, -1.2490439890718235) +description = Hudson CDP, MA +station = ('kfit', 0.0037178680159817416) +zone = ('maz005', 0.0026907388673104672) + +[fips2531680] +centroid = (0.73897650681814131, -1.2371473361980394) +description = Hull CDP, MA +station = ('kbos', 0.0017806910413189492) +zone = ('maz015', 0.0025763081558950822) + +[fips2531750] +centroid = (0.73729402687251133, -1.2722022567710529) +description = Huntington CDP, MA +station = ('kbaf', 0.0026347244200724575) +zone = ('maz009', 0.0014366739768078879) + +[fips2532275] +centroid = (0.74482316782610458, -1.2360877119025686) +description = Ipswich CDP, MA +station = ('kbvy', 0.0020077318340542376) +zone = ('maz007', 0.00087804431599116512) + +[fips2533185] +centroid = (0.7329711255680017, -1.2343256973029253) +description = Kingston CDP, MA +station = ('kpym', 0.0016850044876260909) +zone = ('maz019', 0.00054336190925634374) + +[fips2534550] +centroid = (0.74526035535043667, -1.2419999798371144) +description = Lawrence city, MA +station = ('klwm', 0.00045938666196814642) +zone = ('maz006', 0.0012520207964591109) + +[fips2534620] +centroid = (0.73839358430126767, -1.2784665227091412) +description = Lee CDP, MA +station = ('kpsf', 0.002247450965039316) +zone = ('maz025', 0.0015888848945026319) + +[fips2534935] +centroid = (0.73934290378801248, -1.2790957488110701) +description = Lenox CDP, MA +station = ('kpsf', 0.0012592629600143284) +zone = ('maz025', 0.0025796829826250215) + +[fips2535075] +centroid = (0.74212862380712064, -1.2526380932405778) +description = Leominster city, MA +station = ('kfit', 0.00057634711774318158) +zone = ('maz026', 0.0025024256408475382) + +[fips2535250] +centroid = (0.74081796880533546, -1.2432138912384616) +description = Lexington CDP, MA +station = ('kbed', 0.00096171272088399875) +zone = ('maz014', 0.0010580433096720914) + +[fips2536020] +centroid = (0.74236675653026274, -1.2474239744601221) +description = Littleton Common CDP, MA +station = ('kbed', 0.0025113310887534602) +zone = ('maz005', 0.0017199146333759748) + +[fips2536335] +centroid = (0.73386845169632953, -1.2666051778461249) +description = Longmeadow CDP, MA +station = ('kbdl', 0.0024684908664000952) +zone = ('maz011', 0.001622144639630537) + +[fips2537000] +centroid = (0.74418907225556263, -1.2448055966096954) +description = Lowell city, MA +station = ('kbed', 0.0030193246576814847) +zone = ('maz005', 0.0031528672321826734) + +[fips2537385] +centroid = (0.74339543613809567, -1.2518717540726121) +description = Lunenburg CDP, MA +station = ('kfit', 0.00081343665802254808) +zone = ('maz026', 0.0011687730303300036) + +[fips2537490] +centroid = (0.74132619123022381, -1.2385237726593323) +description = Lynn city, MA +station = ('kbvy', 0.0019816390096860054) +zone = ('maz015', 0.0029547188376857609) + +[fips2537595] +centroid = (0.74236040353178545, -1.2398570122216381) +description = Lynnfield CDP, MA +station = ('kbvy', 0.0017871777193690552) +zone = ('maz014', 0.0025178979130420992) + +[fips2537735] +centroid = (0.72048741374701686, -1.2249797209578834) +description = Madaket CDP, MA +station = ('kack', 0.0016578357499623976) +zone = ('maz024', 0.0014667736171134779) + +[fips2537875] +centroid = (0.74054564508214682, -1.2401907191746195) +description = Malden city, MA +station = ('kbos', 0.0012275522060675918) +zone = ('maz014', 0.0012933117216864202) + +[fips2538230] +centroid = (0.7334215601413564, -1.2429858639716884) +description = Mansfield Center CDP, MA +station = ('kowd', 0.0028934131293590903) +zone = ('maz017', 0.0018794181021437658) + +[fips2538435] +centroid = (0.74163420693661575, -1.2363142905460625) +description = Marblehead CDP, MA +station = ('kbvy', 0.0018973279481575079) +zone = ('maz007', 0.0025582057686846073) + +[fips2538575] +centroid = (0.72781688903418218, -1.2349628122930734) +description = Marion Center CDP, MA +station = ('kewb', 0.0027346005435381639) +zone = ('maz021', 0.00074722117667143308) + +[fips2538715] +centroid = (0.73914027106185598, -1.2487344549289823) +description = Marlborough city, MA +station = ('kbed', 0.0037845303538844733) +zone = ('maz005', 0.0029320758516072501) + +[fips2538820] +centroid = (0.73482075569609517, -1.2337549222776456) +description = Marshfield CDP, MA +station = ('kghg', 0.00012170538259000953) +zone = ('maz019', 0.0013593345727645405) + +[fips2538960] +centroid = (0.73554613198651653, -1.2344828292954824) +description = Marshfield Hills CDP, MA +station = ('kghg', 0.0010057136333267375) +zone = ('maz019', 0.002042423731215316) + +[fips2539152] +centroid = (0.72627890489732472, -1.2298974479247653) +description = Mashpee Neck CDP, MA +station = ('kfmh', 0.0009097324742318013) +zone = ('maz022', 0.0029659530379458668) + +[fips2539485] +centroid = (0.72720803092462383, -1.2358188788378839) +description = Mattapoisett Center CDP, MA +station = ('kewb', 0.0021008186601249898) +zone = ('maz021', 0.0013794711741604848) + +[fips2539660] +centroid = (0.74047260305295093, -1.2471469383479532) +description = Maynard CDP, MA +station = ('kbed', 0.0021341735593535141) +zone = ('maz005', 0.0011819504669212792) + +[fips2539730] +centroid = (0.73630226097835805, -1.2444268776153051) +description = Medfield CDP, MA +station = ('kowd', 0.0017308025928796536) +zone = ('maz013', 0.00089968178043386342) + +[fips2539835] +centroid = (0.74043575915244131, -1.2410902095112197) +description = Medford city, MA +station = ('kbos', 0.00155543084605446) +zone = ('maz014', 0.00062054669760870521) + +[fips2540115] +centroid = (0.74099215266468454, -1.2402138447872086) +description = Melrose city, MA +station = ('kbos', 0.001647356506697983) +zone = ('maz014', 0.0014131305970646287) + +[fips2540710] +centroid = (0.74600173631009881, -1.2423007175205256) +description = Methuen Town city, MA +station = ('klwm', 0.00073748150385753741) +zone = ('maz006', 0.0015221074854342655) + +[fips2540885] +centroid = (0.73119212891473628, -1.2378867972955245) +description = Middleborough Center CDP, MA +station = ('ktan', 0.0011972520719607381) +zone = ('maz018', 0.0013533334389462112) + +[fips2541200] +centroid = (0.73566786870184309, -1.2482207870768276) +description = Milford CDP, MA +station = ('ksfz', 0.0040905249954210268) +zone = ('maz013', 0.0032640317680723428) + +[fips2541410] +centroid = (0.74314623802749591, -1.2652386199483985) +description = Millers Falls CDP, MA +station = ('kore', 0.0027706169211144395) +zone = ('maz003', 0.00063718025583333812) + +[fips2541532] +centroid = (0.73594986154908781, -1.2452789822627139) +description = Millis-Clicquot CDP, MA +station = ('kmqe', 0.0031306212556920917) +zone = ('maz013', 0.0011612239486432907) + +[fips2541725] +centroid = (0.73725480932421894, -1.2406263009960399) +description = Milton CDP, MA +station = ('kmqe', 0.0006184292661041991) +zone = ('maz016', 0.0010094757311426366) + +[fips2541960] +centroid = (0.72563714733136642, -1.2304432647417416) +description = Monomoscoy Island CDP, MA +station = ('kfmh', 0.0013124148263262666) +zone = ('maz022', 0.0037042294509379166) + +[fips2542180] +centroid = (0.73474902266383824, -1.2618023284506095) +description = Monson Center CDP, MA +station = ('kcef', 0.0035501717967529396) +zone = ('maz011', 0.0025806460199365995) + +[fips2542670] +centroid = (0.72813181624441192, -1.2322018410427584) +description = Monument Beach CDP, MA +station = ('kfmh', 0.0016199046319263972) +zone = ('maz021', 0.0023279097826475249) + +[fips2543615] +centroid = (0.74034875448922932, -1.2379558948806109) +description = Nahant CDP, MA +station = ('kbos', 0.0014449662142627542) +zone = ('maz015', 0.0025002662732710457) + +[fips2543755] +centroid = (0.72036094718941746, -1.2234077552604898) +description = Nantucket CDP, MA +station = ('kack', 0.00056514708309473769) +zone = ('maz024', 0.00029509187500442291) + +[fips2544140] +centroid = (0.73795699018888139, -1.2433994720978261) +description = Needham CDP, MA +station = ('kowd', 0.0019725574305510815) +zone = ('maz015', 0.0022225487277286898) + +[fips2545000] +centroid = (0.72712690802099111, -1.2381001463432881) +description = New Bedford city, MA +station = ('kewb', 0.0005369923181654891) +zone = ('maz020', 0.0013305242823218257) + +[fips2545245] +centroid = (0.74721662509582709, -1.2372830180940897) +description = Newburyport city, MA +station = ('klwm', 0.0035246935583175387) +zone = ('maz006', 0.0028083101342651446) + +[fips2545500] +centroid = (0.72553609276767583, -1.2301205708163403) +description = New Seabury CDP, MA +station = ('kfmh', 0.0014703856533913088) +zone = ('maz022', 0.0036136669664074863) + +[fips2545560] +centroid = (0.73883061474596712, -1.2428210699837152) +description = Newton city, MA +station = ('kmqe', 0.0023338263522027286) +zone = ('maz015', 0.0016232777597794349) + +[fips2546225] +centroid = (0.74482884014617357, -1.2761517274288061) +description = North Adams city, MA +station = ('kaqw', 0.00075512011252299772) +zone = ('maz001', 0.0020626135878107979) + +[fips2546295] +centroid = (0.74013746492998289, -1.2658211759461293) +description = North Amherst CDP, MA +station = ('kcef', 0.003609691574607477) +zone = ('maz010', 0.0017926628086977106) + +[fips2546330] +centroid = (0.73874629788980328, -1.2684115761686465) +description = Northampton city, MA +station = ('kbaf', 0.0028513321934085008) +zone = ('maz008', 0.0027272181174961712) + +[fips2546785] +centroid = (0.73848284043921475, -1.250488859893087) +description = Northborough CDP, MA +station = ('korh', 0.0029350916487648018) +zone = ('maz012', 0.003224146113055481) + +[fips2547100] +centroid = (0.73777106026366646, -1.2581068206523141) +description = North Brookfield CDP, MA +station = ('korh', 0.0028107625765234233) +zone = ('maz004', 0.0034719823273983218) + +[fips2547590] +centroid = (0.73007717768197733, -1.2217993819948993) +description = North Eastham CDP, MA +station = ('kcqx', 0.0025662826453873517) +zone = ('maz022', 0.0042439406592696665) + +[fips2547730] +centroid = (0.72678991984901609, -1.2327385996009168) +description = North Falmouth CDP, MA +station = ('kfmh', 0.0014940437843608267) +zone = ('maz021', 0.0025702430295792967) + +[fips2547800] +centroid = (0.74549792956821814, -1.2640167498456623) +description = Northfield CDP, MA +station = ('kore', 0.0031051956438168733) +zone = ('maz003', 0.0027263084886071298) + +[fips2548220] +centroid = (0.73059499941775163, -1.2381238479145305) +description = North Lakeville CDP, MA +station = ('ktan', 0.0010851161475677036) +zone = ('maz018', 0.0019758192314091975) + +[fips2548710] +centroid = (0.73474413574193265, -1.235401169188004) +description = North Pembroke CDP, MA +station = ('kghg', 0.0013379835814984209) +zone = ('maz019', 0.0015017208926006518) + +[fips2548780] +centroid = (0.73260341960119157, -1.2335770383202824) +description = North Plymouth CDP, MA +station = ('kpym', 0.001489752326498568) +zone = ('maz019', 0.001035132515037226) + +[fips2549165] +centroid = (0.73675246865890998, -1.2351048471876007) +description = North Scituate CDP, MA +station = ('kghg', 0.0022634039258196451) +zone = ('maz019', 0.0033031759870083481) + +[fips2549200] +centroid = (0.73102501363885786, -1.24494969099274) +description = North Seekonk CDP, MA +station = ('ksfz', 0.0022734311563616526) +zone = ('maz017', 0.0019726973344734687) + +[fips2549700] +centroid = (0.7276911555148684, -1.2235682731917958) +description = Northwest Harwich CDP, MA +station = ('kcqx', 0.0013841355183587458) +zone = ('maz022', 0.0025819326990697967) + +[fips2549710] +centroid = (0.72733912260474121, -1.2411234056735927) +description = North Westport CDP, MA +station = ('kewb', 0.0018910798795711628) +zone = ('maz020', 0.00094839577514653451) + +[fips2550005] +centroid = (0.73258259782321522, -1.24247292915782) +description = Norton Center CDP, MA +station = ('ktan', 0.0027338361186750094) +zone = ('maz017', 0.00099226368255507665) + +[fips2550285] +centroid = (0.73630833472415491, -1.242603846305012) +description = Norwood CDP, MA +station = ('kowd', 0.00038524813058354163) +zone = ('maz013', 0.0011978718325488667) + +[fips2550862] +centroid = (0.73483307772061424, -1.2332215845648213) +description = Ocean Bluff-Brant Rock CDP, MA +station = ('kghg', 0.00028415374104690948) +zone = ('maz019', 0.0015250623335446257) + +[fips2550880] +centroid = (0.72830514489242748, -1.2428348755380985) +description = Ocean Grove CDP, MA +station = ('kewb', 0.0032582896824265486) +zone = ('riz005', 0.0010019656793361636) + +[fips2551160] +centroid = (0.72861874565242579, -1.2333592037763408) +description = Onset CDP, MA +station = ('kfmh', 0.0025795910945957765) +zone = ('maz021', 0.0014331178376111703) + +[fips2551230] +centroid = (0.74353005338330203, -1.261794788628241) +description = Orange CDP, MA +station = ('kore', 0.0005640056626815004) +zone = ('maz003', 0.0021334351928998436) + +[fips2551405] +centroid = (0.72933448772537623, -1.2217570228539534) +description = Orleans CDP, MA +station = ('kcqx', 0.0018231854752552418) +zone = ('maz022', 0.0040144737878758715) + +[fips2551790] +centroid = (0.73506079082812203, -1.2543697740178215) +description = Oxford CDP, MA +station = ('korh', 0.0026320795086308209) +zone = ('maz012', 0.0014249476658501012) + +[fips2552144] +centroid = (0.73631590945310854, -1.2620208611262518) +description = Palmer Town city, MA +station = ('kcef', 0.0029154524253287967) +zone = ('maz011', 0.0026631813113509885) + +[fips2552490] +centroid = (0.74236186960835715, -1.2386555275645654) +description = Peabody city, MA +station = ('kbvy', 0.001095783560211388) +zone = ('maz007', 0.0022272929866176661) + +[fips2552770] +centroid = (0.74482946846470421, -1.2495196785594544) +description = Pepperell CDP, MA +station = ('kash', 0.0021011309655552947) +zone = ('maz026', 0.0010814189035620253) + +[fips2553085] +centroid = (0.74160858550319642, -1.2599051730069841) +description = Petersham CDP, MA +station = ('kore', 0.0018241377052158859) +zone = ('maz004', 0.002773188361536956) + +[fips2553680] +centroid = (0.74230947482421228, -1.2432568437913529) +description = Pinehurst CDP, MA +station = ('kbed', 0.0014155338268896866) +zone = ('maz014', 0.0021865058971099632) + +[fips2553960] +centroid = (0.74092795945479617, -1.2786376347890067) +description = Pittsfield city, MA +station = ('kpsf', 0.00043913413723114842) +zone = ('maz001', 0.0023468359186550802) + +[fips2554275] +centroid = (0.73231123403111509, -1.2333159719707689) +description = Plymouth CDP, MA +station = ('kpym', 0.0013609071827585262) +zone = ('maz019', 0.0013849608480592948) + +[fips2554450] +centroid = (0.72760689101858211, -1.2328877903453774) +description = Pocasset CDP, MA +station = ('kfmh', 0.001735961641351609) +zone = ('maz021', 0.0020059581366585638) + +[fips2555070] +centroid = (0.72559623681369967, -1.2298184543228201) +description = Popponesset CDP, MA +station = ('kfmh', 0.0015036496546583366) +zone = ('maz022', 0.0034224167570688887) + +[fips2555090] +centroid = (0.72577462691654604, -1.2297611202568921) +description = Popponesset Island CDP, MA +station = ('kfmh', 0.001370544020198124) +zone = ('maz022', 0.0032575309108782155) + +[fips2555535] +centroid = (0.73402472847755307, -1.2248450862593847) +description = Provincetown CDP, MA +station = ('kpvc', 0.00052587277547068803) +zone = ('maz022', 0.0059727438706846138) + +[fips2555745] +centroid = (0.73759211165545935, -1.239347777505784) +description = Quincy city, MA +station = ('kmqe', 0.0015867128499178354) +zone = ('maz016', 0.00068443201383993691) + +[fips2555990] +centroid = (0.73611784948959225, -1.24008378285135) +description = Randolph CDP, MA +station = ('kmqe', 0.0010960493885800553) +zone = ('maz016', 0.00096046542644921207) + +[fips2556095] +centroid = (0.73182784764148279, -1.2399714011008141) +description = Raynham Center CDP, MA +station = ('ktan', 0.00090475598592356461) +zone = ('maz018', 0.0020765406835289127) + +[fips2556165] +centroid = (0.7423789912883193, -1.2410237473733039) +description = Reading CDP, MA +station = ('kbed', 0.0027746801395694162) +zone = ('maz014', 0.0021287250253098173) + +[fips2556585] +centroid = (0.7403863139747322, -1.2390154842694967) +description = Revere city, MA +station = ('kbos', 0.0010072862068866318) +zone = ('maz015', 0.0019731836673735547) + +[fips2557845] +centroid = (0.74422132594013934, -1.2325557414551855) +description = Rockport CDP, MA +station = ('kbvy', 0.0039371493923639938) +zone = ('maz007', 0.0031739312814403849) + +[fips2558370] +centroid = (0.74556435679954902, -1.2368689387290539) +description = Rowley CDP, MA +station = ('kbvy', 0.0024288688993015632) +zone = ('maz007', 0.0014048330210169595) + +[fips2558615] +centroid = (0.73659762304767307, -1.2716793910337407) +description = Russell CDP, MA +station = ('kbaf', 0.0019872055035233677) +zone = ('maz009', 0.0011226307715241194) + +[fips2558790] +centroid = (0.73952275996743044, -1.2558994329341469) +description = Rutland CDP, MA +station = ('korh', 0.002175113823583881) +zone = ('maz004', 0.0014606368917365969) + +[fips2558965] +centroid = (0.72924896659202842, -1.2310173733458925) +description = Sagamore CDP, MA +station = ('kfmh', 0.0023280320489790546) +zone = ('maz021', 0.0032576552061062518) + +[fips2559105] +centroid = (0.74178727231201558, -1.2373948413392648) +description = Salem city, MA +station = ('kbvy', 0.0014531505810588925) +zone = ('maz007', 0.0024035982907162413) + +[fips2559210] +centroid = (0.74762124477631686, -1.2364303898479052) +description = Salisbury CDP, MA +station = ('kpsm', 0.0043370956009833967) +zone = ('nhz014', 0.0028839569437534435) + +[fips2559700] +centroid = (0.72879825276599342, -1.2304225476835202) +description = Sandwich CDP, MA +station = ('kfmh', 0.0018843519193120092) +zone = ('maz022', 0.0026522828297361732) + +[fips2560050] +centroid = (0.74121396655932048, -1.2394271725334571) +description = Saugus CDP, MA +station = ('kbos', 0.0017764860393692462) +zone = ('maz014', 0.0020322364058154439) + +[fips2560295] +centroid = (0.73618497485262402, -1.2345479126232892) +description = Scituate CDP, MA +station = ('kghg', 0.0015681814869891301) +zone = ('maz019', 0.0026830571035876194) + +[fips2560505] +centroid = (0.72580181914629205, -1.230421395766214) +description = Seabrook CDP, MA +station = ('kfmh', 0.0011539439389262104) +zone = ('maz022', 0.003577503739801082) + +[fips2560627] +centroid = (0.72547739734493133, -1.2306704717037662) +description = Seconsett Island CDP, MA +station = ('kfmh', 0.0014533929084361299) +zone = ('maz023', 0.0035160352902187781) + +[fips2560820] +centroid = (0.73508932696139206, -1.2424305874701667) +description = Sharon CDP, MA +station = ('kowd', 0.0011757336353451615) +zone = ('maz013', 0.0011194867612008105) + +[fips2561205] +centroid = (0.74367622470815653, -1.2696743218824644) +description = Shelburne Falls CDP, MA +station = ('kaqw', 0.0056138437296235407) +zone = ('maz002', 0.00057698184848253733) + +[fips2561555] +centroid = (0.74240141876920729, -1.2508311713192808) +description = Shirley CDP, MA +station = ('kfit', 0.0011694519165965289) +zone = ('maz026', 0.001785175740638697) + +[fips2561940] +centroid = (0.72021426971907976, -1.2212595865638427) +description = Siasconset CDP, MA +station = ('kack', 0.0012571492358321738) +zone = ('maz024', 0.0013486885830567507) + +[fips2562300] +centroid = (0.72687181069751972, -1.239169073243672) +description = Smith Mills CDP, MA +station = ('kewb', 0.00076717222023314855) +zone = ('maz020', 0.00070651378948058722) + +[fips2562465] +centroid = (0.72847388332451024, -1.2420646966457785) +description = Somerset CDP, MA +station = ('kewb', 0.0027583164780784273) +zone = ('maz020', 0.001991721307904766) + +[fips2562535] +centroid = (0.7398549484839626, -1.2409522237805573) +description = Somerville city, MA +station = ('kbos', 0.0011684769386112572) +zone = ('maz014', 0.00087539994132784847) + +[fips2562675] +centroid = (0.7389272710799426, -1.2656690355952327) +description = South Amherst CDP, MA +station = ('kcef', 0.002407035640555956) +zone = ('maz010', 0.00057741201701299726) + +[fips2562780] +centroid = (0.74387789750322442, -1.2556497810379417) +description = South Ashburnham CDP, MA +station = ('kfit', 0.0026956743727713341) +zone = ('maz004', 0.0029508478519899828) + +[fips2563345] +centroid = (0.73407970634899089, -1.2572311715132962) +description = Southbridge Town city, MA +station = ('korh', 0.0042119841182157369) +zone = ('maz012', 0.0037639926595616777) + +[fips2563620] +centroid = (0.74144021359025647, -1.2669308911911321) +description = South Deerfield CDP, MA +station = ('kore', 0.0043147899668840731) +zone = ('maz003', 0.0022379897779262188) + +[fips2563655] +centroid = (0.72787326316902146, -1.2243598149141601) +description = South Dennis CDP, MA +station = ('kcqx', 0.0019964235083760364) +zone = ('maz022', 0.0019658567549365406) + +[fips2563690] +centroid = (0.73337141683194651, -1.2337387954353571) +description = South Duxbury CDP, MA +station = ('kghg', 0.0014160227408417157) +zone = ('maz019', 0.00040206903879365499) + +[fips2563840] +centroid = (0.73559339550266056, -1.2380211003814654) +description = Southfield CDP, MA +station = ('kmqe', 0.0026689207928030909) +zone = ('maz016', 0.0016405123089284724) + +[fips2564460] +centroid = (0.74066574118797657, -1.2513503369585788) +description = South Lancaster CDP, MA +station = ('kfit', 0.0021435103603897315) +zone = ('maz026', 0.0035507550161359381) + +[fips2566035] +centroid = (0.72722778805175636, -1.2252349753609877) +description = South Yarmouth CDP, MA +station = ('khya', 0.00085889190795903714) +zone = ('maz022', 0.0016398885153581617) + +[fips2566070] +centroid = (0.73737673802576331, -1.2565171573163052) +description = Spencer CDP, MA +station = ('korh', 0.001663849553340361) +zone = ('maz004', 0.0035890483464567306) + +[fips2567000] +centroid = (0.73505333827221597, -1.2660614554242513) +description = Springfield city, MA +station = ('kcef', 0.0014781082599102182) +zone = ('maz011', 0.00061380521829311084) + +[fips2567700] +centroid = (0.7413147767769156, -1.2408883447299344) +description = Stoneham CDP, MA +station = ('kbos', 0.0021475690800412091) +zone = ('maz014', 0.0012256996590720517) + +[fips2568120] +centroid = (0.7347361770405435, -1.2575975859364599) +description = Sturbridge CDP, MA +station = ('korh', 0.0038307720515410619) +zone = ('maz012', 0.0037970097685454227) + +[fips2568680] +centroid = (0.74120745648121045, -1.2372858978873553) +description = Swampscott CDP, MA +station = ('kbvy', 0.0020382846866918631) +zone = ('maz007', 0.0029679638131873288) + +[fips2569170] +centroid = (0.73135095387666782, -1.2408415524526881) +description = Taunton city, MA +station = ('ktan', 0.001075654148044117) +zone = ('maz017', 0.0011923802236874861) + +[fips2569205] +centroid = (0.72540384917025225, -1.2319816503043268) +description = Teaticket CDP, MA +station = ('kfmh', 0.0017829419038620407) +zone = ('maz023', 0.0030331624680706467) + +[fips2569585] +centroid = (0.73108685065425605, -1.2322018584960508) +description = The Pinehills CDP, MA +station = ('kpym', 0.0017449085207463927) +zone = ('maz019', 0.0028616510308806064) + +[fips2570115] +centroid = (0.74419793852816263, -1.2384032402211897) +description = Topsfield CDP, MA +station = ('kbvy', 0.001097078282067265) +zone = ('maz007', 0.001128968891501356) + +[fips2570325] +centroid = (0.74483634506195717, -1.2515366159496444) +description = Townsend CDP, MA +station = ('kfit', 0.0022511303742559366) +zone = ('maz026', 0.00089702551130186779) + +[fips2570815] +centroid = (0.74346566818719595, -1.2663284907998065) +description = Turners Falls CDP, MA +station = ('kore', 0.0035978273874196342) +zone = ('maz003', 0.0014933740378360056) + +[fips2571445] +centroid = (0.73621248124163552, -1.2498524779412248) +description = Upton CDP, MA +station = ('korh', 0.0036174650476159089) +zone = ('maz012', 0.0021328034586026029) + +[fips2571970] +centroid = (0.72356959539286891, -1.2322914113399708) +description = Vineyard Haven CDP, MA +station = ('kmvy', 0.0010146445122247462) +zone = ('maz023', 0.0012548554257268533) + +[fips2572250] +centroid = (0.74184102845297695, -1.240301844288094) +description = Wakefield CDP, MA +station = ('kbvy', 0.0023435224432440155) +zone = ('maz014', 0.0019068208769421964) + +[fips2572460] +centroid = (0.73537458357433805, -1.2433777602019311) +description = Walpole CDP, MA +station = ('kowd', 0.0012857310871990399) +zone = ('maz013', 0.00036143094060273235) + +[fips2572600] +centroid = (0.73982623781776735, -1.2434121431881955) +description = Waltham city, MA +station = ('kbed', 0.0015473805855065394) +zone = ('maz014', 0.0012201283969416701) + +[fips2572845] +centroid = (0.73748053275637948, -1.2609051768552069) +description = Ware CDP, MA +station = ('kcef', 0.0038516689763994989) +zone = ('maz011', 0.0039773870211570516) + +[fips2573020] +centroid = (0.72868243271683109, -1.2343330102324912) +description = Wareham Center CDP, MA +station = ('kpym', 0.0026146293107910021) +zone = ('maz021', 0.00072060062628997805) + +[fips2573055] +centroid = (0.73684842686118468, -1.2598759387420133) +description = Warren CDP, MA +station = ('korh', 0.0042060929030328115) +zone = ('maz004', 0.004908508234172165) + +[fips2573440] +centroid = (0.7394864222124039, -1.2422891459875849) +description = Watertown Town city, MA +station = ('kbed', 0.0023136424407156765) +zone = ('maz014', 0.00091087717985013103) + +[fips2573930] +centroid = (0.73382417269320643, -1.2544771117668192) +description = Webster CDP, MA +station = ('korh', 0.0038703087111692539) +zone = ('maz012', 0.0023024784822473074) + +[fips2574210] +centroid = (0.73836834684028396, -1.2441347269518139) +description = Wellesley CDP, MA +station = ('kowd', 0.0026121681894417975) +zone = ('maz014', 0.0025731384184346177) + +[fips2575050] +centroid = (0.73770601184244455, -1.2499610374206989) +description = Westborough CDP, MA +station = ('korh', 0.0032183049450001883) +zone = ('maz012', 0.0028358323446790743) + +[fips2575365] +centroid = (0.73725988823234234, -1.2592003043352737) +description = West Brookfield CDP, MA +station = ('korh', 0.0036454378363119833) +zone = ('maz004', 0.004295236918726025) + +[fips2575505] +centroid = (0.72748127967231613, -1.2216057900742683) +description = West Chatham CDP, MA +station = ('kcqx', 9.7874097111250578e-05) +zone = ('maz022', 0.0040593060399512371) + +[fips2575680] +centroid = (0.74092467823580233, -1.2462205699408722) +description = West Concord CDP, MA +station = ('kbed', 0.0013534737985637665) +zone = ('maz005', 0.00036234120790241601) + +[fips2575820] +centroid = (0.72721314473933218, -1.2246462932575823) +description = West Dennis CDP, MA +station = ('khya', 0.0012986494008882588) +zone = ('maz022', 0.0020083435654872552) + +[fips2575960] +centroid = (0.72608328839476122, -1.2328886630100033) +description = West Falmouth CDP, MA +station = ('kfmh', 0.0018101757168573764) +zone = ('maz021', 0.0030248621107322867) + +[fips2576030] +centroid = (0.73546146606450225, -1.26983019723796) +description = Westfield city, MA +station = ('kbaf', 0.00070267699148768477) +zone = ('maz009', 0.0023503918217036342) + +[fips2577890] +centroid = (0.73522781883753774, -1.2679770589980701) +description = West Springfield Town city, MA +station = ('kbaf', 0.0011259069621237516) +zone = ('maz011', 0.0020310306916518518) + +[fips2578410] +centroid = (0.72940339332424498, -1.2349578381047053) +description = West Wareham CDP, MA +station = ('kpym', 0.0019163085433005727) +zone = ('maz021', 0.00090832547474369203) + +[fips2578795] +centroid = (0.72688123547548045, -1.226093415553581) +description = West Yarmouth CDP, MA +station = ('khya', 0.00040308036938515869) +zone = ('maz022', 0.0015170505264517126) + +[fips2578850] +centroid = (0.72865496123440476, -1.2346552678255795) +description = Weweantic CDP, MA +station = ('kpym', 0.0026396581348950574) +zone = ('maz021', 0.00048057625509969145) + +[fips2578972] +centroid = (0.73664546252247021, -1.2382385858595566) +description = Weymouth Town city, MA +station = ('kmqe', 0.0022151005952849101) +zone = ('maz016', 0.00086114926912253889) + +[fips2579390] +centroid = (0.72943767159075412, -1.232878679726682) +description = White Island Shores CDP, MA +station = ('kpym', 0.0022258623878012021) +zone = ('maz021', 0.0020067600653542296) + +[fips2579495] +centroid = (0.73511920699818623, -1.2509092748033075) +description = Whitinsville CDP, MA +station = ('korh', 0.0036013601276626513) +zone = ('maz012', 0.0013991873637468602) + +[fips2579705] +centroid = (0.73534411012559819, -1.2642842913667005) +description = Wilbraham CDP, MA +station = ('kcef', 0.0017087662017293745) +zone = ('maz011', 0.00073978324108598162) + +[fips2579950] +centroid = (0.74540916212246167, -1.2776063022807105) +description = Williamstown CDP, MA +station = ('kaqw', 0.00047180349883149751) +zone = ('maz001', 0.0026741332193081879) + +[fips2580195] +centroid = (0.74289323509912686, -1.2420551147881851) +description = Wilmington CDP, MA +station = ('kbed', 0.0024417778014015029) +zone = ('maz014', 0.0025386271500237442) + +[fips2580370] +centroid = (0.74491202253832367, -1.257411359305272) +description = Winchendon CDP, MA +station = ('kafn', 0.0021649208778955703) +zone = ('maz004', 0.0040432554196229041) + +[fips2580545] +centroid = (0.74094029893260771, -1.2417026106391595) +description = Winchester CDP, MA +station = ('kbed', 0.0020192378252697398) +zone = ('maz014', 0.0006062668619305669) + +[fips2581005] +centroid = (0.73959271276385041, -1.2386714449673435) +description = Winthrop Town city, MA +station = ('kbos', 0.00061328986715338115) +zone = ('maz015', 0.0016416105152138429) + +[fips2581035] +centroid = (0.74156699430712136, -1.2418789936133663) +description = Woburn city, MA +station = ('kbed', 0.0019128231837098944) +zone = ('maz014', 0.0012109969807591648) + +[fips2581245] +centroid = (0.72481680767634404, -1.2333524493521357) +description = Woods Hole CDP, MA +station = ('kmvy', 0.0023407691593862129) +zone = ('maz023', 0.0023133849300137101) + +[fips2582000] +centroid = (0.7377415641993077, -1.2532822419076113) +description = Worcester city, MA +station = ('korh', 0.00076209563265487723) +zone = ('maz012', 0.0021169876057177419) + +[fips2582595] +centroid = (0.72792307486587338, -1.2255896960781631) +description = Yarmouth Port CDP, MA +station = ('khya', 0.00091981103174061077) +zone = ('maz022', 0.0010640528527480185) + +[fips26001] +centroid = (0.77985735388760458, -1.4457274288603845) +description = Alcona County, MI +station = ('kosc', 0.0077670618044315583) +zone = ('miz024', 0.011591963443993731) + +[fips2600100000] +centroid = (0.77985735388760458, -1.4457274288603845) +description = County subdivisions not defined, MI +station = ('kosc', 0.0077670618044315583) +zone = ('miz024', 0.011591963443993731) + +[fips2600101040] +centroid = (0.7820163610789066, -1.4564312539101854) +description = Alcona township, MI +station = ('kapn', 0.0050558124832822482) +zone = ('miz030', 0.0027826067043189673) + +[fips2600112460] +centroid = (0.7823722860732657, -1.4593220951101411) +description = Caledonia township, MI +station = ('kapn', 0.0045167128360452981) +zone = ('miz030', 0.002476384457103934) + +[fips2600119320] +centroid = (0.77758900181866508, -1.4621933886224747) +description = Curtis township, MI +station = ('kosc', 0.0054185426896138046) +zone = ('miz030', 0.0032532212113570631) + +[fips2600134820] +centroid = (0.77747925551529973, -1.4552514113358372) +description = Greenbush township, MI +station = ('kosc', 0.0016882946912292044) +zone = ('miz030', 0.0036009306745383054) + +[fips2600135740] +centroid = (0.77916848988513476, -1.4568311612016949) +description = Gustin township, MI +station = ('kosc', 0.0036076833521043322) +zone = ('miz030', 0.0017020802676851654) + +[fips2600136860] +centroid = (0.77941569832038726, -1.4537671658866489) +description = Harrisville city, MI +station = ('kosc', 0.0037258806457039833) +zone = ('miz030', 0.0037445401278187063) + +[fips2600136880] +centroid = (0.77921475856360523, -1.4547697179155794) +description = Harrisville township, MI +station = ('kosc', 0.003420665111542365) +zone = ('miz030', 0.0030783796994673504) + +[fips2600137220] +centroid = (0.78039076141359898, -1.4574457614444922) +description = Hawes township, MI +station = ('kosc', 0.0049054870607538447) +zone = ('miz030', 0.0011974659530340377) + +[fips2600137380] +centroid = (0.78056454384722007, -1.4547072874882356) +description = Haynes township, MI +station = ('kosc', 0.0047709865108689908) +zone = ('miz030', 0.0031120082803634242) + +[fips2600153880] +centroid = (0.77769921936092845, -1.457598285767824) +description = Mikado township, MI +station = ('kosc', 0.0026429659329864183) +zone = ('miz030', 0.0024192801868709703) + +[fips2600154060] +centroid = (0.77913456068447617, -1.4597313399131489) +description = Millen township, MI +station = ('kosc', 0.0047315762047408947) +zone = ('miz030', 0.00093672767446314196) + +[fips2600154740] +centroid = (0.78061264512140505, -1.4626223032861523) +description = Mitchell township, MI +station = ('kapn', 0.0068852245345227183) +zone = ('miz030', 0.002678223308578434) + +[fips26003] +centroid = (0.82170235574245443, -1.5108286986519637) +description = Alger County, MI +station = ('cwci', 0.009727035869747231) +zone = ('miz006', 0.011705524286452619) + +[fips2600300000] +centroid = (0.82170235574245443, -1.5108286986519637) +description = County subdivisions not defined, MI +station = ('cwci', 0.009727035869747231) +zone = ('miz006', 0.011705524286452619) + +[fips2600304460] +centroid = (0.80875229194533682, -1.5144906786753278) +description = Au Train township, MI +station = ('kp53', 0.0020266386140051743) +zone = ('miz006', 0.002421104936309417) + +[fips2600311960] +centroid = (0.81284741032916874, -1.5027423089747936) +description = Burt township, MI +station = ('kery', 0.0089865276014515511) +zone = ('miz085', 0.0043825709923341208) + +[fips2600333380] +centroid = (0.81195860140759057, -1.5124539667047132) +description = Grand Island township, MI +station = ('kp53', 0.0018369967846923745) +zone = ('miz006', 0.0020631973331090105) + +[fips2600347540] +centroid = (0.80706253397672589, -1.5188296544622486) +description = Limestone township, MI +station = ('ksaw', 0.004903858169104984) +zone = ('miz013', 0.0057369272001349244) + +[fips2600352360] +centroid = (0.80660328549064875, -1.5161650602932288) +description = Mathias township, MI +station = ('kp53', 0.0044065029786093711) +zone = ('miz006', 0.0046915522285311054) + +[fips2600356200] +centroid = (0.81037686186638558, -1.5118034999457877) +description = Munising city, MI +station = ('kp53', 0.00044127714368585804) +zone = ('miz006', 0.00043020917807484239) + +[fips2600356220] +centroid = (0.80987602218423338, -1.5098944239033709) +description = Munising township, MI +station = ('kp53', 0.0016959837773294073) +zone = ('miz006', 0.0011066465571923781) + +[fips2600360820] +centroid = (0.81076118336767489, -1.5183626043544147) +description = Onota township, MI +station = ('ksaw', 0.0051127210447759414) +zone = ('miz006', 0.0047977886993266312) + +[fips2600369160] +centroid = (0.80890572383987969, -1.5183474025366301) +description = Rock River township, MI +station = ('ksaw', 0.0048248397425644891) +zone = ('miz006', 0.0048581754700649489) + +[fips2600380] +centroid = (0.73279196752028442, -1.4721690972149284) +description = Addison village, MI +station = ('kjym', 0.0032727468699738998) +zone = ('miz082', 0.0039972919023212369) + +[fips2600440] +centroid = (0.73127166356874984, -1.4668589853256133) +description = Adrian city, MI +station = ('kadg', 0.00075131536723721797) +zone = ('miz082', 0.00028750166662887706) + +[fips2600480] +centroid = (0.78919181105958314, -1.4849320966228174) +description = Advance CDP, MI +station = ('kcvx', 0.0028332359578781877) +zone = ('miz019', 0.001590404853018496) + +[fips26005] +centroid = (0.74343674808149041, -1.5120615468756948) +description = Allegan County, MI +station = ('klwa', 0.0064835648003230455) +zone = ('miz064', 0.0095898136748784456) + +[fips2600500000] +centroid = (0.74343674808149041, -1.5120615468756948) +description = County subdivisions not defined, MI +station = ('klwa', 0.0064835648003230455) +zone = ('miz064', 0.0095898136748784456) + +[fips2600501260] +centroid = (0.74229966607381614, -1.4983014234128491) +description = Allegan city, MI +station = ('kbiv', 0.0050263042531680617) +zone = ('miz064', 0.0011887794024717986) + +[fips2600501280] +centroid = (0.74277292955378693, -1.4980832048964721) +description = Allegan township, MI +station = ('kbiv', 0.0047885368755748491) +zone = ('miz064', 0.00091347595726856223) + +[fips2600513700] +centroid = (0.74105912094808357, -1.5044429054380593) +description = Casco township, MI +station = ('klwa', 0.0020389881535492031) +zone = ('miz071', 0.0043083066969560506) + +[fips2600515200] +centroid = (0.74118338839082554, -1.5001348568854842) +description = Cheshire township, MI +station = ('kbiv', 0.0053005290036658263) +zone = ('miz064', 0.0023210469278508324) + +[fips2600516720] +centroid = (0.74257605641416191, -1.5020095848482211) +description = Clyde township, MI +station = ('kbiv', 0.0035913387896775533) +zone = ('miz064', 0.0023259315811691573) + +[fips2600522680] +centroid = (0.74568523830354216, -1.4961425558478874) +description = Dorr township, MI +station = ('kgrr', 0.0038250550296672096) +zone = ('miz064', 0.0031527698178477419) + +[fips2600522740] +centroid = (0.74418964821421563, -1.5046065300554339) +description = Douglas city, MI +station = ('kbiv', 0.0023798092601704578) +zone = ('miz064', 0.0041833321799978548) + +[fips2600527740] +centroid = (0.74341810796507912, -1.5028169043470236) +description = Fennville city, MI +station = ('kbiv', 0.0027109268395686414) +zone = ('miz064', 0.0027845282898956549) + +[fips2600528120] +centroid = (0.74551019923285966, -1.5021688112358806) +description = Fillmore township, MI +station = ('kbiv', 0.00074229083979110216) +zone = ('miz064', 0.0031529566890858961) + +[fips2600531360] +centroid = (0.74258230469288411, -1.5042411628298213) +description = Ganges township, MI +station = ('klwa', 0.0035357858170113996) +zone = ('miz064', 0.003911636887957929) + +[fips2600535720] +centroid = (0.74100442232932606, -1.4937982819564859) +description = Gun Plain township, MI +station = ('kazo', 0.0039249815312774926) +zone = ('miz072', 0.0037561095503134386) + +[fips2600537460] +centroid = (0.7442793057778907, -1.5001138256679976) +description = Heath township, MI +station = ('kbiv', 0.0026667066886050432) +zone = ('miz064', 0.0012156778375336848) + +[fips2600538640] +centroid = (0.74615893811582601, -1.5026365594754152) +description = Holland city, MI +station = ('kbiv', 7.4148898317049825e-05) +zone = ('miz064', 0.0038540415445223386) + +[fips2600539200] +centroid = (0.74405332054634243, -1.4959567131891349) +description = Hopkins township, MI +station = ('kgrr', 0.0050640057100528471) +zone = ('miz064', 0.0023699485091022805) + +[fips2600545180] +centroid = (0.74568089243370461, -1.5039965200285692) +description = Laketown township, MI +station = ('kbiv', 0.0010332108674288342) +zone = ('miz064', 0.0043249724209568456) + +[fips2600546600] +centroid = (0.74110446460205037, -1.5023038473601076) +description = Lee township, MI +station = ('klwa', 0.0030302670263983294) +zone = ('miz064', 0.0032988396952096381) + +[fips2600546760] +centroid = (0.74574843667575685, -1.4942165501117264) +description = Leighton township, MI +station = ('kgrr', 0.0029710368957882997) +zone = ('miz064', 0.0042743501493388222) + +[fips2600550840] +centroid = (0.74422378685438462, -1.5022545243554462) +description = Manlius township, MI +station = ('kbiv', 0.0019360643590664714) +zone = ('miz064', 0.0025221052477953625) + +[fips2600552000] +centroid = (0.74259520267605628, -1.4942387157932269) +description = Martin township, MI +station = ('kazo', 0.0055453646028962899) +zone = ('miz064', 0.0036140394916018047) + +[fips2600555200] +centroid = (0.74409583676692093, -1.4979962874997228) +description = Monterey township, MI +station = ('kbiv', 0.0040284898304039788) +zone = ('miz064', 0.0010623426899893105) + +[fips2600561620] +centroid = (0.74100754646868716, -1.4957033786482079) +description = Otsego city, MI +station = ('kazo', 0.0043364874053834638) +zone = ('miz064', 0.003399536554627533) + +[fips2600561640] +centroid = (0.74128514108621679, -1.4963204921651281) +description = Otsego township, MI +station = ('kazo', 0.0047945661223826701) +zone = ('miz064', 0.0028811200889077232) + +[fips2600561820] +centroid = (0.74570708982577716, -1.5001740395271914) +description = Overisel township, MI +station = ('kbiv', 0.0019228436972237375) +zone = ('miz064', 0.0024934855974108718) + +[fips2600564740] +centroid = (0.74092722641651032, -1.4948870881570502) +description = Plainwell city, MI +station = ('kazo', 0.0040316194653348889) +zone = ('miz064', 0.0039061754757656313) + +[fips2600571100] +centroid = (0.74559163629575764, -1.4983900337789728) +description = Salem township, MI +station = ('kbiv', 0.0032314787602158398) +zone = ('miz064', 0.0022830938723046091) + +[fips2600571700] +centroid = (0.74450577970162934, -1.5045565263723641) +description = Saugatuck city, MI +station = ('kbiv', 0.0021064396711082752) +zone = ('miz064', 0.0042214417792696326) + +[fips2600571720] +centroid = (0.74409204940244411, -1.5040619524222263) +description = Saugatuck township, MI +station = ('kbiv', 0.0022598139862024889) +zone = ('miz064', 0.0037713633134815083) + +[fips2600574980] +centroid = (0.74039050276493701, -1.5055454997397142) +description = South Haven city, MI +station = ('klwa', 0.0012309120189080887) +zone = ('miz071', 0.0043112518287588969) + +[fips2600580620] +centroid = (0.74100916962489149, -1.4982718400820276) +description = Trowbridge township, MI +station = ('kazo', 0.0054447295933923471) +zone = ('miz064', 0.0024157019793817308) + +[fips2600581580] +centroid = (0.74286311071623745, -1.5002306929147109) +description = Valley township, MI +station = ('kbiv', 0.0037464045608543144) +zone = ('miz064', 0.0010099883147405286) + +[fips2600584580] +centroid = (0.74259865842797523, -1.4961523122384059) +description = Watson township, MI +station = ('kazo', 0.0059247579078371831) +zone = ('miz064', 0.0022550855296453011) + +[fips2600584880] +centroid = (0.74478576542023445, -1.4947301132441257) +description = Wayland city, MI +station = ('kgrr', 0.0040040732317950176) +zone = ('miz064', 0.0034741962348595417) + +[fips2600584900] +centroid = (0.74415536994770648, -1.4941803345297475) +description = Wayland township, MI +station = ('kgrr', 0.0044639990889459398) +zone = ('miz064', 0.0036607659502783398) + +[fips2600620] +centroid = (0.82551382321625211, -1.5428205489344344) +description = Ahmeek village, MI +station = ('kcmx', 0.0025169743529100752) +zone = ('miz003', 0.0050373488608013725) + +[fips26007] +centroid = (0.78356476483139825, -1.4560683999586959) +description = Alpena County, MI +station = ('kapn', 0.0037148639934583075) +zone = ('miz024', 0.0034880822718182758) + +[fips2600700] +centroid = (0.76038276065434163, -1.4575994202318379) +description = Akron village, MI +station = ('kcfs', 0.0020793210163944208) +zone = ('miz054', 0.0021757580251355658) + +[fips2600700000] +centroid = (0.7859005564226349, -1.4469060147976711) +description = County subdivisions not defined, MI +station = ('cwnl', 0.010581510637181801) +zone = ('miz024', 0.0089664153095019069) + +[fips2600701740] +centroid = (0.78669333732876823, -1.4563548957554107) +description = Alpena city, MI +station = ('kapn', 0.0015325465265087078) +zone = ('miz024', 0.0023889553935289415) + +[fips2600701760] +centroid = (0.78665315984938733, -1.4549345293568452) +description = Alpena township, MI +station = ('kapn', 0.002535125209839441) +zone = ('miz024', 0.0033541964274068021) + +[fips2600734740] +centroid = (0.78552300679884346, -1.4624969188326888) +description = Green township, MI +station = ('kapn', 0.0031127462993842891) +zone = ('miz024', 0.0021084100770217447) + +[fips2600749360] +centroid = (0.78810096282379427, -1.4605098789325859) +description = Long Rapids township, MI +station = ('kapn', 0.0018822647448113298) +zone = ('miz024', 0.0021948492845497354) + +[fips2600751220] +centroid = (0.78770133478496507, -1.4583202586662039) +description = Maple Ridge township, MI +station = ('kapn', 0.00085961616633941881) +zone = ('miz024', 0.0019206284142191353) + +[fips2600761520] +centroid = (0.78338857384340943, -1.460054539984033) +description = Ossineke township, MI +station = ('kapn', 0.0036314732479894034) +zone = ('miz024', 0.0026355605135721522) + +[fips2600771240] +centroid = (0.78356476483139825, -1.4560683999586959) +description = Sanborn township, MI +station = ('kapn', 0.0037148639934583075) +zone = ('miz024', 0.0034880822718182758) + +[fips2600785180] +centroid = (0.78787324971628647, -1.4628147781960621) +description = Wellington township, MI +station = ('kapn', 0.0032024907004913352) +zone = ('miz024', 0.0029444607054863537) + +[fips2600787680] +centroid = (0.78554967542981402, -1.4594507084227208) +description = Wilson township, MI +station = ('kapn', 0.00146154664877785) +zone = ('miz024', 0.00046507188654831166) + +[fips2600860] +centroid = (0.79312646387198671, -1.4798098868807719) +description = Alanson village, MI +station = ('kpln', 0.002167864371063059) +zone = ('miz016', 0.0018567607620355328) + +[fips26009] +centroid = (0.78549340601472961, -1.4865950986939951) +description = Antrim County, MI +station = ('kacb', 0.00040971844749684703) +zone = ('miz021', 0.00047659799777156832) + +[fips2600900] +centroid = (0.78502482001715412, -1.482997172254179) +description = Alba CDP, MI +station = ('kacb', 0.0028302765768739488) +zone = ('miz021', 0.0021106836471178215) + +[fips2600900000] +centroid = (0.78643975844174607, -1.4908905110627859) +description = County subdivisions not defined, MI +station = ('kacb', 0.0030241672877243477) +zone = ('miz021', 0.0036535890557502001) + +[fips2600905240] +centroid = (0.78833085759286692, -1.4888615309007573) +description = Banks township, MI +station = ('kcvx', 0.0024154794330099264) +zone = ('miz019', 0.0031952217184855148) + +[fips2600914420] +centroid = (0.78676885772550209, -1.4884189852156218) +description = Central Lake township, MI +station = ('kacb', 0.0018698214868874364) +zone = ('miz021', 0.0022248213552443761) + +[fips2600915380] +centroid = (0.78532931015845708, -1.4840914587885945) +description = Chestonia township, MI +station = ('kacb', 0.0020552942732047523) +zone = ('miz021', 0.0013044424544400863) + +[fips2600919400] +centroid = (0.78358134545929226, -1.4863093882954437) +description = Custer township, MI +station = ('kacb', 0.0016838838370294817) +zone = ('miz021', 0.0018414054412660783) + +[fips2600924640] +centroid = (0.78687792335045914, -1.4862555623413123) +description = Echo township, MI +station = ('kacb', 0.001761868787221521) +zone = ('miz021', 0.0014920147707237355) + +[fips2600925340] +centroid = (0.78357698213616234, -1.4904938500836851) +description = Elk Rapids township, MI +station = ('kacb', 0.002960129892944537) +zone = ('miz021', 0.0037087071871355183) + +[fips2600929600] +centroid = (0.78513229739249202, -1.4880082917893351) +description = Forest Home township, MI +station = ('kacb', 0.00072188437804620979) +zone = ('miz021', 0.001492345845626243) + +[fips2600937500] +centroid = (0.78359087495700819, -1.4881852856287796) +description = Helena township, MI +station = ('kacb', 0.0018126831690057897) +zone = ('miz021', 0.0024136684834743698) + +[fips2600941960] +centroid = (0.7866350433317516, -1.4843342689941317) +description = Jordan township, MI +station = ('kacb', 0.002366781897060403) +zone = ('miz021', 0.0016714127553120932) + +[fips2600942400] +centroid = (0.78534952107119527, -1.4859143155659622) +description = Kearney township, MI +station = ('kacb', 0.00077733959996367536) +zone = ('miz021', 5.5505519336950009e-05) + +[fips2600950640] +centroid = (0.78356312422190144, -1.4831731014427798) +description = Mancelona township, MI +station = ('kacb', 0.0031569296346454665) +zone = ('miz021', 0.0026837661709871556) + +[fips2600954440] +centroid = (0.78395591057006275, -1.4893997206289025) +description = Milton township, MI +station = ('kacb', 0.0021068697672210323) +zone = ('miz021', 0.0028482088999513965) + +[fips2600976260] +centroid = (0.78506557345518824, -1.4821061816710359) +description = Star township, MI +station = ('kacb', 0.0034577252577452254) +zone = ('miz021', 0.002727542258929916) + +[fips2600980] +centroid = (0.73736415420185641, -1.4793257150929762) +description = Albion city, MI +station = ('krmy', 0.0025384556427943969) +zone = ('miz073', 0.0031832572753572076) + +[fips2600980100] +centroid = (0.78609463703545657, -1.4895376190931024) +description = Torch Lake township, MI +station = ('kacb', 0.0020124865041594923) +zone = ('miz021', 0.0026399295352836222) + +[fips2600983300] +centroid = (0.78659055488911833, -1.4823124621353292) +description = Warner township, MI +station = ('kacb', 0.0035894847388297083) +zone = ('miz021', 0.0028206895546914468) + +[fips2601060] +centroid = (0.78328957876823646, -1.488294351253737) +description = Alden CDP, MI +station = ('kacb', 0.0021165164624654636) +zone = ('miz021', 0.0026947457715956295) + +[fips26011] +centroid = (0.76858837377271527, -1.4615504965925024) +description = Arenac County, MI +station = ('kosc', 0.0085940951787565906) +zone = ('miz042', 0.0019973115904562402) + +[fips2601100000] +centroid = (0.76650605634874591, -1.4611603456915119) +description = County subdivisions not defined, MI +station = ('kmbs', 0.0081342532060598889) +zone = ('miz042', 0.003403869562978589) + +[fips2601100280] +centroid = (0.7686249209672521, -1.4678565980727609) +description = Adams township, MI +station = ('kikw', 0.0069067125198930849) +zone = ('miz042', 0.002640171054977544) + +[fips2601103360] +centroid = (0.76857455076503955, -1.4636660625387223) +description = Arenac township, MI +station = ('kikw', 0.0082579289884677481) +zone = ('miz042', 0.00066025353223794791) + +[fips2601104120] +centroid = (0.76871888949417944, -1.4607240133785131) +description = Au Gres city, MI +station = ('kosc', 0.0081733968482685295) +zone = ('miz042', 0.0025542674387305894) + +[fips2601104140] +centroid = (0.76858837377271527, -1.4615504965925024) +description = Au Gres township, MI +station = ('kosc', 0.0085940951787565906) +zone = ('miz042', 0.0019973115904562402) + +[fips2601116240] +centroid = (0.77004656145617156, -1.466022396655255) +description = Clayton township, MI +station = ('kikw', 0.0086905536999968402) +zone = ('miz042', 0.0015978854071006534) + +[fips2601121120] +centroid = (0.7685983046961592, -1.4658118575875867) +description = Deep River township, MI +station = ('kikw', 0.0074425366739914308) +zone = ('miz042', 0.0012316849044469206) + +[fips2601147580] +centroid = (0.76723267182293609, -1.4662832186586732) +description = Lincoln township, MI +station = ('kikw', 0.0060858597528011954) +zone = ('miz042', 0.0023679609220280265) + +[fips2601152120] +centroid = (0.77014782545937233, -1.4637171483259281) +description = Mason township, MI +station = ('kosc', 0.0084064485820267779) +zone = ('miz042', 0.0011227934098160181) + +[fips2601154800] +centroid = (0.77003478048372054, -1.4679847750530273) +description = Moffatt township, MI +station = ('kikw', 0.0082447834420335733) +zone = ('miz042', 0.0028504033013530623) + +[fips2601160660] +centroid = (0.76879828452185262, -1.4635857773931307) +description = Omer city, MI +station = ('kikw', 0.0084710452275571398) +zone = ('miz042', 0.00055349629749583884) + +[fips2601174020] +centroid = (0.76883800821562809, -1.4587742013513552) +description = Sims township, MI +station = ('kosc', 0.0074614822463697113) +zone = ('miz042', 0.0039363034960214448) + +[fips2601176120] +centroid = (0.76755585444052798, -1.4654480611583012) +description = Standish city, MI +station = ('kikw', 0.0066815995795362721) +zone = ('miz042', 0.0017626753098925077) + +[fips2601176140] +centroid = (0.76713584095603549, -1.4645679090698129) +description = Standish township, MI +station = ('kikw', 0.0067310992639406089) +zone = ('miz042', 0.0019681053334619932) + +[fips2601180] +centroid = (0.7438824004526946, -1.4405067301886489) +description = Algonac city, MI +station = ('kmtc', 0.0038330389092405739) +zone = ('miz063', 0.0059136117681625128) + +[fips2601180840] +centroid = (0.7701382785083638, -1.4617094786340668) +description = Turner township, MI +station = ('kosc', 0.0074130433515009701) +zone = ('miz042', 0.0020984242545380762) + +[fips2601187080] +centroid = (0.76982815095357693, -1.4587033584370166) +description = Whitney township, MI +station = ('kosc', 0.0065263186215262182) +zone = ('miz042', 0.0040451978532716074) + +[fips2601260] +centroid = (0.74229966607381614, -1.4983014234128491) +description = Allegan city, MI +station = ('kbiv', 0.0050263042531680617) +zone = ('miz064', 0.0011887794024717986) + +[fips26013] +centroid = (0.81500013433516338, -1.5421034978645451) +description = Baraga County, MI +station = ('kcmx', 0.0083524729454867667) +zone = ('miz004', 0.00059437554350984007) + +[fips2601300] +centroid = (0.73230861603723718, -1.4794835975771115) +description = Allen village, MI +station = ('kjym', 0.0024527564369662596) +zone = ('miz081', 0.0025852892662940217) + +[fips2601300000] +centroid = (0.81931210987855563, -1.5402367809630746) +description = County subdivisions not defined, MI +station = ('kcmx', 0.0047939092524140157) +zone = ('miz004', 0.0050888880878506943) + +[fips2601303660] +centroid = (0.8176363145439608, -1.5389044664252722) +description = Arvon township, MI +station = ('kcmx', 0.0066911558918142612) +zone = ('miz004', 0.0039581720104188518) + +[fips2601305340] +centroid = (0.81587677831185523, -1.5457477278894167) +description = Baraga township, MI +station = ('kcmx', 0.0074007926084742135) +zone = ('miz004', 0.0028003993161156908) + +[fips2601318600] +centroid = (0.81189620588683165, -1.5446118676122189) +description = Covington township, MI +station = ('klnl', 0.010681209431580586) +zone = ('miz004', 0.0029922230406759179) + +[fips2601340] +centroid = (0.75024309583195525, -1.5001536191749432) +description = Allendale CDP, MI +station = ('kbiv', 0.0045269584267416422) +zone = ('miz056', 0.00069319307264291028) + +[fips2601345560] +centroid = (0.81537066773536182, -1.5412219495126556) +description = L'Anse township, MI +station = ('kcmx', 0.0081241464644390467) +zone = ('miz004', 0.0011924728610252259) + +[fips2601376000] +centroid = (0.81125633327646551, -1.5401379255142418) +description = Spurr township, MI +station = ('kimt', 0.011705384627959696) +zone = ('miz004', 0.0034812400452979152) + +[fips2601380] +centroid = (0.73756696146093814, -1.452295294821857) +description = Allen Park city, MI +station = ('kdtw', 0.0016526370578226369) +zone = ('miz076', 0.0010720959315733503) + +[fips26015] +centroid = (0.74321025670445906, -1.4890197973573283) +description = Barry County, MI +station = ('kbtl', 0.0050055123194286521) +zone = ('miz065', 0.00022437336613773294) + +[fips2601503860] +centroid = (0.74121709069868158, -1.4856261966130428) +description = Assyria township, MI +station = ('kbtl', 0.0033858650081061083) +zone = ('miz065', 0.0032814397797250915) + +[fips2601505020] +centroid = (0.7427739243914605, -1.4878284530632095) +description = Baltimore township, MI +station = ('kbtl', 0.0044999044817630096) +zone = ('miz065', 0.0010348157807140506) + +[fips2601505560] +centroid = (0.74118731538164251, -1.4900899983480662) +description = Barry township, MI +station = ('kbtl', 0.0033344982018490565) +zone = ('miz065', 0.0023953926848251429) + +[fips2601513340] +centroid = (0.74568228869710629, -1.4879486189822093) +description = Carlton township, MI +station = ('ky70', 0.0045018530521626857) +zone = ('miz065', 0.0023701858959144441) + +[fips2601513960] +centroid = (0.74425040312547763, -1.4857870985167843) +description = Castleton township, MI +station = ('kfpk', 0.0042528998993405769) +zone = ('miz065', 0.0024514379240103204) + +[fips2601537120] +centroid = (0.7443851949036091, -1.4885629225190338) +description = Hastings city, MI +station = ('kgrr', 0.0050122267734765032) +zone = ('miz065', 0.00099799992335755151) + +[fips2601537140] +centroid = (0.74407810422172072, -1.4877600361565313) +description = Hastings charter township, MI +station = ('kgrr', 0.0056138798006092772) +zone = ('miz065', 0.0010777694719396951) + +[fips2601539120] +centroid = (0.74268922356286116, -1.4899503371013216) +description = Hope township, MI +station = ('kbtl', 0.0046687821742624567) +zone = ('miz065', 0.0010539651593268029) + +[fips2601540] +centroid = (0.75712587155036493, -1.4775243084121152) +description = Alma city, MI +station = ('kamn', 0.0010929073212147301) +zone = ('miz052', 0.0016579239486142375) + +[fips2601541120] +centroid = (0.74561598363882309, -1.4901404209101561) +description = Irving township, MI +station = ('kgrr', 0.0033437797013591603) +zone = ('miz065', 0.0023687264048513328) + +[fips2601541860] +centroid = (0.74116907669095922, -1.4878539697768738) +description = Johnstown township, MI +station = ('kbtl', 0.0028949480361405398) +zone = ('miz065', 0.0023876090315457657) + +[fips2601550960] +centroid = (0.74255362893327381, -1.4860273954481988) +description = Maple Grove township, MI +station = ('kfpk', 0.0042947774733645104) +zone = ('miz065', 0.0023028249917865424) + +[fips2601560980] +centroid = (0.74267101977876293, -1.4918039989399872) +description = Orangeville township, MI +station = ('kbtl', 0.0052597277170177877) +zone = ('miz065', 0.0022509679242200113) + +[fips2601566260] +centroid = (0.7412830815976994, -1.4919764374700841) +description = Prairieville township, MI +station = ('kazo', 0.0042584384873037995) +zone = ('miz065', 0.0031051605686961202) + +[fips2601570420] +centroid = (0.74418636699522189, -1.4900092594168688) +description = Rutland charter township, MI +station = ('kgrr', 0.0046579877999988473) +zone = ('miz065', 0.0011053592780096324) + +[fips2601579620] +centroid = (0.74557369431104725, -1.49219146203393) +description = Thornapple township, MI +station = ('kgrr', 0.0028934763982883262) +zone = ('miz065', 0.003225461356896977) + +[fips2601588440] +centroid = (0.74571873117188803, -1.4858503841554616) +description = Woodland township, MI +station = ('ky70', 0.0038408842769895751) +zone = ('miz065', 0.0032211291576454562) + +[fips2601589020] +centroid = (0.74430895892188198, -1.4919694910596613) +description = Yankee Springs township, MI +station = ('kgrr', 0.004168051613381199) +zone = ('miz065', 0.0024105456904196972) + +[fips2601660] +centroid = (0.74909913722702814, -1.449377994430441) +description = Almont village, MI +station = ('kd95', 0.0038743197780281881) +zone = ('miz062', 0.0037396561716266557) + +[fips26017] +centroid = (0.76270383911998374, -1.4657048339978547) +description = Bay County, MI +station = ('kmbs', 0.0031906472515376861) +zone = ('miz048', 0.00021369629582115876) + +[fips2601700000] +centroid = (0.76405653910344939, -1.4627676543062582) +description = County subdivisions not defined, MI +station = ('kmbs', 0.0054767834510287012) +zone = ('miz048', 0.0025964724920004875) + +[fips2601704080] +centroid = (0.76099865244078524, -1.4673874186632399) +description = Auburn city, MI +station = ('kmbs', 0.001203158367488213) +zone = ('miz048', 0.0021140432014010889) + +[fips2601705120] +centroid = (0.76186213663491698, -1.4642393682914174) +description = Bangor charter township, MI +station = ('kmbs', 0.0031521310743658597) +zone = ('miz048', 0.0015671523683508676) + +[fips2601706020] +centroid = (0.76079010304846451, -1.4641291507491541) +description = Bay City city, MI +station = ('kmbs', 0.002656504783297038) +zone = ('miz048', 0.0024277905423933958) + +[fips2601706540] +centroid = (0.76253862625298996, -1.4680381646748457) +description = Beaver township, MI +station = ('kikw', 0.0019366556542771661) +zone = ('miz048', 0.0015464596812291298) + +[fips2601726420] +centroid = (0.76117805483459777, -1.463318654751113) +description = Essexville city, MI +station = ('khyx', 0.0031341569686068522) +zone = ('miz048', 0.0025172947195828978) + +[fips2601730180] +centroid = (0.75989689589717135, -1.4656394190574897) +description = Frankenlust township, MI +station = ('kmbs', 0.0013747115937937922) +zone = ('miz048', 0.0029456283220132564) + +[fips2601730400] +centroid = (0.76426299410066778, -1.4657047990912697) +description = Fraser township, MI +station = ('kmbs', 0.0046544306792858873) +zone = ('miz048', 0.001438405062461119) + +[fips2601731540] +centroid = (0.76407055409734304, -1.4677688080113855) +description = Garfield township, MI +station = ('kikw', 0.0029107622145557901) +zone = ('miz048', 0.001809932912162894) + +[fips2601732040] +centroid = (0.76709636160835537, -1.4680503994329022) +description = Gibson township, MI +station = ('kikw', 0.0054117945885209335) +zone = ('miz042', 0.003388609419742727) + +[fips2601736260] +centroid = (0.76133907891138675, -1.4621099444309367) +description = Hampton charter township, MI +station = ('khyx', 0.0034753160194845012) +zone = ('miz048', 0.0031476447678549855) + +[fips2601740] +centroid = (0.78669333732876823, -1.4563548957554107) +description = Alpena city, MI +station = ('kapn', 0.0015325465265087078) +zone = ('miz024', 0.0023889553935289415) + +[fips2601742360] +centroid = (0.76270383911998374, -1.4657048339978547) +description = Kawkawlin township, MI +station = ('kmbs', 0.0031906472515376861) +zone = ('miz048', 0.00021369629582115876) + +[fips2601753220] +centroid = (0.75953903358734243, -1.4616901752925395) +description = Merritt township, MI +station = ('khyx', 0.0020691754672101745) +zone = ('miz048', 0.0045080097588000223) + +[fips2601753780] +centroid = (0.76102704894771522, -1.4689104104218225) +description = Midland city, MI +station = ('kmbs', 0.0015825721126791639) +zone = ('miz048', 0.002808873160043167) + +[fips2601754980] +centroid = (0.76111293660020585, -1.4658987226244586) +description = Monitor charter township, MI +station = ('kmbs', 0.0017670344507595003) +zone = ('miz048', 0.0017218530431658294) + +[fips2601755920] +centroid = (0.76555429340104841, -1.4681034748954556) +description = Mount Forest township, MI +station = ('kikw', 0.0039806230372433395) +zone = ('miz048', 0.0031367973828680313) + +[fips2601764160] +centroid = (0.76544847408849992, -1.4654612733007388) +description = Pinconning city, MI +station = ('kikw', 0.0050666162152735736) +zone = ('miz048', 0.0026365550729060996) + +[fips2601764180] +centroid = (0.76573212499853405, -1.4655642302733141) +description = Pinconning township, MI +station = ('kikw', 0.0052105331781338625) +zone = ('miz048', 0.0029101596536133078) + +[fips2601765980] +centroid = (0.76023400624219406, -1.4631040316129951) +description = Portsmouth charter township, MI +station = ('khyx', 0.0022185818502429753) +zone = ('miz048', 0.0033124202070563147) + +[fips2601787380] +centroid = (0.76128602090212616, -1.4678091251171064) +description = Williams charter township, MI +station = ('kmbs', 0.0014996165972394888) +zone = ('miz048', 0.0020564075363589352) + +[fips2601800] +centroid = (0.8036199767469222, -1.5424948355894275) +description = Alpha village, MI +station = ('kimt', 0.0050838656172530567) +zone = ('miz010', 0.0034128170438544373) + +[fips26019] +centroid = (0.77926544292508315, -1.5096106159137042) +description = Benzie County, MI +station = ('kfks', 0.0036715354754847315) +zone = ('miz025', 0.0059442380773153227) + +[fips2601900000] +centroid = (0.77926544292508315, -1.5096106159137042) +description = County subdivisions not defined, MI +station = ('kfks', 0.0036715354754847315) +zone = ('miz025', 0.0059442380773153227) + +[fips2601901640] +centroid = (0.78085744500228971, -1.4990135701075404) +description = Almira township, MI +station = ('kfks', 0.0043752730618530728) +zone = ('miz025', 0.0023695521367478913) + +[fips2601907600] +centroid = (0.77941266144748877, -1.5029959925815708) +description = Benzonia township, MI +station = ('kfks', 0.0011971799365099011) +zone = ('miz025', 0.0012732329913587167) + +[fips2601908840] +centroid = (0.7778215494882007, -1.5042289804316424) +description = Blaine township, MI +station = ('kfks', 0.0010474298452385631) +zone = ('miz025', 0.0024743191670124178) + +[fips2601917120] +centroid = (0.7777085394191342, -1.4986883105481388) +description = Colfax township, MI +station = ('kfks', 0.004282682255815109) +zone = ('miz025', 0.0023029986459065926) + +[fips2601919180] +centroid = (0.77908115360936503, -1.5042637997502195) +description = Crystal Lake township, MI +station = ('kfks', 0.00027644098748900146) +zone = ('miz025', 0.002138271866912604) + +[fips2601930260] +centroid = (0.77905989549907584, -1.5050323031264579) +description = Frankfort city, MI +station = ('kfks', 0.00044188001098049642) +zone = ('miz025', 0.0026853815548018192) + +[fips2601932180] +centroid = (0.77847262711236465, -1.5042965944868647) +description = Gilmore township, MI +station = ('kfks', 0.00040314241232754179) +zone = ('miz025', 0.0022530411540445799) + +[fips2601939000] +centroid = (0.77921472365702027, -1.5006796265049089) +description = Homestead township, MI +station = ('kfks', 0.0027308543211136695) +zone = ('miz025', 0.00042620317302914049) + +[fips2601940700] +centroid = (0.77916910075037304, -1.4986965485022081) +description = Inland township, MI +station = ('kfks', 0.0041301503595173542) +zone = ('miz025', 0.0018242596877325369) + +[fips2601942000] +centroid = (0.77738610729312063, -1.5025957885840886) +description = Joyfield township, MI +station = ('kfks', 0.001989970339467875) +zone = ('miz025', 0.0019660333650144686) + +[fips2601944240] +centroid = (0.78029694996630428, -1.5034632172223299) +description = Lake township, MI +station = ('kfks', 0.0016158703507808039) +zone = ('miz025', 0.0019684780554708224) + +[fips2601960] +centroid = (0.80684475179266213, -1.5438868054810628) +description = Amasa CDP, MI +station = ('kimt', 0.008298891432532738) +zone = ('miz010', 0.00094207746655942926) + +[fips2601964760] +centroid = (0.78082976408035321, -1.5008436176414266) +description = Platte township, MI +station = ('kfks', 0.0032565179689370829) +zone = ('miz025', 0.0017486193895639727) + +[fips2601985160] +centroid = (0.77773697083264903, -1.5010499155590122) +description = Weldon township, MI +station = ('kfks', 0.0026878327371717965) +zone = ('miz025', 0.0013773435611546282) + +[fips26021] +centroid = (0.72941915364739052, -1.5139303930788528) +description = Berrien County, MI +station = ('kmgc', 0.0018700221424982331) +zone = ('inz003', 0.0043047355462849162) + +[fips2602100000] +centroid = (0.73337578015507654, -1.51571979189446) +description = County subdivisions not defined, MI +station = ('kmgc', 0.0055241570427735764) +zone = ('miz077', 0.0057176792442537238) + +[fips2602104840] +centroid = (0.73490374610202758, -1.5057708042928539) +description = Bainbridge township, MI +station = ('kbeh', 0.001899838148853308) +zone = ('miz077', 0.0032037808213116123) + +[fips2602105520] +centroid = (0.7319422190673659, -1.5094074595887721) +description = Baroda township, MI +station = ('kbeh', 0.0035285026313630228) +zone = ('miz077', 0.00096274046227793621) + +[fips2602107400] +centroid = (0.73503801428138338, -1.5078993205821236) +description = Benton charter township, MI +station = ('kbeh', 0.00042060796469778057) +zone = ('miz077', 0.0027998328673486004) + +[fips2602107520] +centroid = (0.73503071880511017, -1.5087807991208435) +description = Benton Harbor city, MI +station = ('kbeh', 0.00051369652209244383) +zone = ('miz077', 0.0028204386084833056) + +[fips2602107820] +centroid = (0.73196841645943844, -1.5060077152855198) +description = Berrien township, MI +station = ('kbeh', 0.0037850050725157626) +zone = ('miz077', 0.0016387071388466491) + +[fips2602107920] +centroid = (0.72934028221849279, -1.5073964737713317) +description = Bertrand township, MI +station = ('ksbn', 0.0016741687579902495) +zone = ('miz077', 0.0029634987447581993) + +[fips2602110580] +centroid = (0.73190677143025795, -1.5108810934361085) +description = Bridgman city, MI +station = ('kbeh', 0.0039705801327646565) +zone = ('miz077', 0.0020380876353921959) + +[fips2602111400] +centroid = (0.73004139843231142, -1.507370607991817) +description = Buchanan city, MI +station = ('ksbn', 0.0023292920866244391) +zone = ('miz077', 0.0022851964611016293) + +[fips2602111420] +centroid = (0.73044050287236495, -1.5078720759925002) +description = Buchanan township, MI +station = ('ksbn', 0.0028269923285770462) +zone = ('miz077', 0.0018198120265082401) + +[fips2602115480] +centroid = (0.7304944859061292, -1.5117731486700954) +description = Chikaming township, MI +station = ('kmgc', 0.0037300780981266673) +zone = ('miz077', 0.0031972476974482366) + +[fips2602117320] +centroid = (0.73629454662306426, -1.5063822629429979) +description = Coloma city, MI +station = ('kbeh', 0.001670689583024532) +zone = ('miz071', 0.0039204926588213181) + +[fips2602117340] +centroid = (0.73666680789922201, -1.5063209844329604) +description = Coloma charter township, MI +station = ('kbeh', 0.0019362514933418094) +zone = ('miz071', 0.0037847574137289748) + +[fips2602131320] +centroid = (0.72939368929360382, -1.5099643068866209) +description = Galien township, MI +station = ('ksbn', 0.0030289943708034723) +zone = ('miz077', 0.0031467628299563688) + +[fips2602135860] +centroid = (0.73636261446389195, -1.5074616967254788) +description = Hagar township, MI +station = ('kbeh', 0.0011578240469369199) +zone = ('miz077', 0.0041510128308035431) + +[fips2602144260] +centroid = (0.73163053816954482, -1.5104160504569146) +description = Lake charter township, MI +station = ('kbeh', 0.0040651286880241068) +zone = ('miz077', 0.0017741280512288942) + +[fips2602147600] +centroid = (0.73330783448729642, -1.509817489789943) +description = Lincoln charter township, MI +station = ('kbeh', 0.0023617889403613084) +zone = ('miz077', 0.0016157827839770036) + +[fips2602157220] +centroid = (0.72941915364739052, -1.5139303930788528) +description = New Buffalo city, MI +station = ('kmgc', 0.0018700221424982331) +zone = ('inz003', 0.0043047355462849162) + +[fips2602157230] +centroid = (0.72930095995044542, -1.5135400327383517) +description = New Buffalo township, MI +station = ('kmgc', 0.0019567006724493215) +zone = ('inz003', 0.004194946015562806) + +[fips2602157760] +centroid = (0.7300937932164564, -1.5053582782708528) +description = Niles city, MI +station = ('ksbn', 0.0024472315353759196) +zone = ('miz077', 0.0030068100217022433) + +[fips2602157780] +centroid = (0.73039706162728291, -1.5058007366895259) +description = Niles township, MI +station = ('ksbn', 0.0026481336299751588) +zone = ('miz077', 0.0025596784274251015) + +[fips2602161180] +centroid = (0.73208427141518573, -1.508085425040264) +description = Oronoko charter township, MI +station = ('kbeh', 0.0032835465394663141) +zone = ('miz077', 0.00017602469587432688) + +[fips2602164480] +centroid = (0.73343445812452868, -1.5060643686730397) +description = Pipestone township, MI +station = ('kbeh', 0.0025245032107970625) +zone = ('miz077', 0.0019706406413277735) + +[fips2602170100] +centroid = (0.73335754146439325, -1.5084589778600681) +description = Royalton township, MI +station = ('kbeh', 0.0020135301763665463) +zone = ('miz077', 0.0011309268559240189) + +[fips2602170960] +centroid = (0.73476837836524289, -1.5095187941417569) +description = St. Joseph city, MI +station = ('kbeh', 0.0011111981205244792) +zone = ('miz077', 0.0027116685782692476) + +[fips2602170980] +centroid = (0.73423961341505872, -1.5093567752272941) +description = St. Joseph charter township, MI +station = ('kbeh', 0.001391116505716257) +zone = ('miz077', 0.0021772612620453388) + +[fips2602174440] +centroid = (0.73366969360111245, -1.5074883304498643) +description = Sodus township, MI +station = ('kbeh', 0.0017886987140139597) +zone = ('miz077', 0.0015135275136147139) + +[fips2602179740] +centroid = (0.72945482817730123, -1.5117722236455917) +description = Three Oaks township, MI +station = ('kmgc', 0.0030864793189108487) +zone = ('miz077', 0.0038662664183244954) + +[fips2602184500] +centroid = (0.73633915723874521, -1.5054944663123857) +description = Watervliet city, MI +station = ('kbeh', 0.0022663930946364699) +zone = ('miz071', 0.0032812657227355925) + +[fips2602184520] +centroid = (0.73653009625891341, -1.5053271241437047) +description = Watervliet township, MI +station = ('kbeh', 0.0024631580486770038) +zone = ('miz071', 0.0031040422213255395) + +[fips2602185120] +centroid = (0.73044561668707331, -1.5097572410241642) +description = Weesaw township, MI +station = ('ksbn', 0.0035848882903532359) +zone = ('miz077', 0.0021495527464041554) + +[fips26023] +centroid = (0.73161732602710727, -1.4846909095734844) +description = Branch County, MI +station = ('koeb', 0.00031530413347797149) +zone = ('miz080', 0.00010689639188180687) + +[fips2602301120] +centroid = (0.73039008031027497, -1.4813803341417164) +description = Algansee township, MI +station = ('koeb', 0.0027226638317551649) +zone = ('miz080', 0.0026465804581074386) + +[fips2602305800] +centroid = (0.73195291793568062, -1.4855912900280031) +description = Batavia township, MI +station = ('koeb', 0.00085543742730566493) +zone = ('miz080', 0.00085602231855873019) + +[fips2602308060] +centroid = (0.73047268674377175, -1.4854850692897268) +description = Bethel township, MI +station = ('koeb', 0.0016011898100775173) +zone = ('miz080', 0.0012990414479993166) + +[fips2602310860] +centroid = (0.73080578283151487, -1.4868593939026247) +description = Bronson city, MI +station = ('koeb', 0.0020901435640369344) +zone = ('miz080', 0.0018763636075374121) + +[fips2602310880] +centroid = (0.73035040897637704, -1.4877475395990869) +description = Bronson township, MI +station = ('kirs', 0.0026332635785414442) +zone = ('miz080', 0.0026703271889152998) + +[fips2602312140] +centroid = (0.73351420221805219, -1.4813775241616205) +description = Butler township, MI +station = ('koeb', 0.0028091797043279191) +zone = ('miz080', 0.0030596681675498028) + +[fips2602312560] +centroid = (0.72939857621550941, -1.4815699990715308) +description = California township, MI +station = ('koeb', 0.0032740798769026157) +zone = ('inz007', 0.0029670561607277423) + +[fips2602317020] +centroid = (0.73204226134009032, -1.4835445424141893) +description = Coldwater city, MI +station = ('koeb', 0.00069129162956189103) +zone = ('miz080', 0.00088859553452892801) + +[fips2602317040] +centroid = (0.7323995825978511, -1.4829615326308532) +description = Coldwater township, MI +station = ('koeb', 0.0012225797173049536) +zone = ('miz080', 0.0014473180644708668) + +[fips2602332120] +centroid = (0.72929568905610431, -1.4855413387048111) +description = Gilead township, MI +station = ('koeb', 0.0027049554613166418) +zone = ('miz080', 0.0023927509134527613) + +[fips2602332280] +centroid = (0.73364333912940727, -1.4837874398861894) +description = Girard township, MI +station = ('koeb', 0.0018351358506464577) +zone = ('miz080', 0.0021475313951422768) + +[fips2602343260] +centroid = (0.72927437858593747, -1.4834616916345973) +description = Kinderhook township, MI +station = ('koeb', 0.0027017514124594078) +zone = ('miz080', 0.0024406746725164621) + +[fips2602352400] +centroid = (0.73205838818237867, -1.4874418626338928) +description = Matteson township, MI +station = ('koeb', 0.0022359412892258394) +zone = ('miz080', 0.0021983274820402796) + +[fips2602357860] +centroid = (0.72932513276058553, -1.4875734080996155) +description = Noble township, MI +station = ('kirs', 0.0027361491461830151) +zone = ('miz080', 0.0031775428407867425) + +[fips2602361840] +centroid = (0.73043942076822876, -1.4835139816989868) +description = Ovid township, MI +station = ('koeb', 0.0015942527944258827) +zone = ('miz080', 0.0013759307088054757) + +[fips2602366660] +centroid = (0.73201276527573167, -1.4814952640729602) +description = Quincy township, MI +station = ('koeb', 0.0021994396733776406) +zone = ('miz080', 0.0023216486425835085) + +[fips2602373440] +centroid = (0.73370798612490107, -1.487409277336758) +description = Sherwood township, MI +station = ('koeb', 0.002865637037264179) +zone = ('miz080', 0.0030069945068728486) + +[fips2602381280] +centroid = (0.73359921720591692, -1.4856090923863734) +description = Union township, MI +station = ('koeb', 0.001929024710775645) +zone = ('miz080', 0.0021703584071832778) + +[fips26025] +centroid = (0.73727926138703936, -1.4837460232230395) +description = Calhoun County, MI +station = ('krmy', 0.0007477838222070929) +zone = ('miz073', 0.00010900932840792902) + +[fips2602500980] +centroid = (0.73736415420185641, -1.4793257150929762) +description = Albion city, MI +station = ('krmy', 0.0025384556427943969) +zone = ('miz073', 0.0031832572753572076) + +[fips2602501000] +centroid = (0.73644534307043663, -1.4794009911436148) +description = Albion township, MI +station = ('krmy', 0.0026679316303676879) +zone = ('miz073', 0.0032547861783160702) + +[fips2602503900] +centroid = (0.73514200099821725, -1.4876623675315896) +description = Athens township, MI +station = ('kbtl', 0.0031369348759083932) +zone = ('miz073', 0.0037131514003986431) + +[fips2602505920] +centroid = (0.73825989208056497, -1.4875313282113498) +description = Battle Creek city, MI +station = ('kbtl', 0.00026803011074699322) +zone = ('miz073', 0.0030320401114515899) + +[fips2602506720] +centroid = (0.73969235361084684, -1.4876707625652918) +description = Bedford charter township, MI +station = ('kbtl', 0.0014275784675967672) +zone = ('miz073', 0.0038038689824611066) + +[fips2602511820] +centroid = (0.73501747175608745, -1.4855975383067253) +description = Burlington township, MI +station = ('krmy', 0.0031962948036850817) +zone = ('miz073', 0.0027458085165462127) + +[fips2602515960] +centroid = (0.73952258543450533, -1.4796142703782085) +description = Clarence township, MI +station = ('krmy', 0.0031317840292228428) +zone = ('miz066', 0.0040019488081197404) + +[fips2602516020] +centroid = (0.73493868759365244, -1.4813570863560797) +description = Clarendon township, MI +station = ('krmy', 0.002689554110788285) +zone = ('miz073', 0.0029332556068713857) + +[fips2602517880] +centroid = (0.73971415277320429, -1.4834946783574599) +description = Convis township, MI +station = ('krmy', 0.0023576189089539058) +zone = ('miz073', 0.0023738676774874663) + +[fips2602524700] +centroid = (0.73639219779471332, -1.4816410339720869) +description = Eckford township, MI +station = ('krmy', 0.0013183147398341886) +zone = ('miz073', 0.0017502235860856299) + +[fips2602525935] +centroid = (0.73793442308165302, -1.4854298470721938) +description = Emmett charter township, MI +station = ('krmy', 0.0020455734885683435) +zone = ('miz073', 0.0014604894238035718) + +[fips2602530500] +centroid = (0.73650618524816103, -1.4836896839947853) +description = Fredonia township, MI +station = ('krmy', 0.0011475246390365665) +zone = ('miz073', 0.00083741750489865611) + +[fips2602538940] +centroid = (0.73509040906552836, -1.4796166091194061) +description = Homer township, MI +station = ('krmy', 0.003291923807175585) +zone = ('miz073', 0.0037278898639058386) + +[fips2602546620] +centroid = (0.73963718375319132, -1.4815377104803686) +description = Lee township, MI +station = ('krmy', 0.0023917761716952595) +zone = ('miz073', 0.0027660534203905723) + +[fips2602547060] +centroid = (0.73657695834932946, -1.487716193485721) +description = Leroy township, MI +station = ('kbtl', 0.001702363931796511) +zone = ('miz073', 0.0031241426485729327) + +[fips2602551520] +centroid = (0.73814709145100854, -1.4813659351753876) +description = Marengo township, MI +station = ('krmy', 0.0012579410679352454) +zone = ('miz073', 0.0018559024705934151) + +[fips2602551940] +centroid = (0.73761329995257863, -1.4828041039323232) +description = Marshall city, MI +station = ('krmy', 0.00019581882714682144) +zone = ('miz073', 0.00066588874227075832) + +[fips2602551960] +centroid = (0.73811333678327506, -1.4837344342368062) +description = Marshall township, MI +station = ('krmy', 0.0010027440169726204) +zone = ('miz073', 0.00077524384875147471) + +[fips2602557620] +centroid = (0.7367279642362119, -1.4857133758091803) +description = Newton township, MI +station = ('kbtl', 0.0022347478876981828) +zone = ('miz073', 0.001663327908381687) + +[fips2602563440] +centroid = (0.73970226708099818, -1.4855157172713918) +description = Pennfield charter township, MI +station = ('kbtl', 0.0022643528706047826) +zone = ('miz073', 0.0027427274906230139) + +[fips2602572980] +centroid = (0.73825811184472789, -1.479572626822256) +description = Sheridan township, MI +station = ('krmy', 0.0024985005757985788) +zone = ('miz073', 0.0031359037749192561) + +[fips2602575700] +centroid = (0.73869351913322301, -1.4876800651702051) +description = Springfield city, MI +station = ('kbtl', 0.00044788962663954682) +zone = ('miz073', 0.003289646825884424) + +[fips2602579180] +centroid = (0.7349865968816196, -1.4835525360221635) +description = Tekonsha township, MI +station = ('krmy', 0.0025052607764496698) +zone = ('miz073', 0.0023562974351300507) + +[fips26027] +centroid = (0.73157639805614805, -1.5009736795772852) +description = Cass County, MI +station = ('kekm', 0.0034832189270967311) +zone = ('miz078', 7.7816765765201319e-05) + +[fips2602712620] +centroid = (0.73052665232424341, -1.4996278212844874) +description = Calvin township, MI +station = ('kekm', 0.0026349642666657412) +zone = ('miz078', 0.0013874454423357227) + +[fips2602722880] +centroid = (0.7327491720470255, -1.5029524291634411) +description = Dowagiac city, MI +station = ('kekm', 0.0048815960582838085) +zone = ('miz078', 0.0019517957168572991) + +[fips2602739480] +centroid = (0.73051494116496263, -1.5038969315414503) +description = Howard township, MI +station = ('kekm', 0.0032534865054507215) +zone = ('miz078', 0.0024830407260424746) + +[fips2602741600] +centroid = (0.73046017273303498, -1.501814910823454) +description = Jefferson township, MI +station = ('kekm', 0.0024468910589885628) +zone = ('miz078', 0.0013049796256753893) + +[fips2602744140] +centroid = (0.73182592777930555, -1.5017330199749501) +description = LaGrange township, MI +station = ('kekm', 0.0037743362663429374) +zone = ('miz078', 0.00069401497184210198) + +[fips2602751480] +centroid = (0.73350367788266269, -1.4978185955285774) +description = Marcellus township, MI +station = ('khai', 0.0031864407755847709) +zone = ('miz078', 0.0029882569040604935) + +[fips2602752140] +centroid = (0.7292823547406192, -1.4997752317931106) +description = Mason township, MI +station = ('kekm', 0.001492055762001978) +zone = ('miz078', 0.0024195902211835755) + +[fips2602754460] +centroid = (0.72937073821394016, -1.5040574843793413) +description = Milton township, MI +station = ('ksbn', 0.0024100798343696115) +zone = ('miz078', 0.0032287306096007479) + +[fips2602757120] +centroid = (0.73211994594509655, -1.497652056211352) +description = Newberg township, MI +station = ('khai', 0.0028529208001402714) +zone = ('miz078', 0.0024596456688393466) + +[fips2602757760] +centroid = (0.7308982154687006, -1.5045160521870105) +description = Niles city, MI +station = ('ksbn', 0.003434392957397421) +zone = ('miz078', 0.002792420278509383) + +[fips2602760900] +centroid = (0.72942070699042472, -1.5018960337270866) +description = Ontwa township, MI +station = ('kekm', 0.0014920066807354992) +zone = ('miz078', 0.0022713308413655283) + +[fips2602763380] +centroid = (0.73183727241944363, -1.499720428454598) +description = Penn township, MI +station = ('kekm', 0.0038605212860676505) +zone = ('miz078', 0.00090018001357474939) + +[fips2602765300] +centroid = (0.73196316301838993, -1.5039263752459315) +description = Pokagon township, MI +station = ('kekm', 0.0044482165310467253) +zone = ('miz078', 0.0023083365256294152) + +[fips2602765720] +centroid = (0.7299215641258695, -1.4979612761949279) +description = Porter township, MI +station = ('kekm', 0.0029021881770149465) +zone = ('miz078', 0.0027167982699876306) + +[fips2602773940] +centroid = (0.73351826883520943, -1.50404113064425) +description = Silver Creek township, MI +station = ('kbeh', 0.0036325093983981126) +zone = ('miz078', 0.0030640394111399296) + +[fips2602782580] +centroid = (0.73354191804657387, -1.4997029402554931) +description = Volinia township, MI +station = ('kekm', 0.0055314938928728357) +zone = ('miz078', 0.002163970660725472) + +[fips2602784920] +centroid = (0.7335170296514405, -1.5018543901711341) +description = Wayne township, MI +station = ('kekm', 0.0054625043332579394) +zone = ('miz078', 0.0020890313253850352) + +[fips26029] +centroid = (0.79435456480015254, -1.4913906875198224) +description = Charlevoix County, MI +station = ('ksjx', 0.0034311565076321671) +zone = ('miz019', 0.0053999141718605046) + +[fips2602900000] +centroid = (0.79435456480015254, -1.4913906875198224) +description = County subdivisions not defined, MI +station = ('ksjx', 0.0034311565076321671) +zone = ('miz019', 0.0053999141718605046) + +[fips2602906000] +centroid = (0.79062289377975592, -1.4843741323142472) +description = Bay township, MI +station = ('kmgn', 0.0027556898675639729) +zone = ('miz019', 0.00098230167998532205) + +[fips2602909820] +centroid = (0.78912981696455231, -1.4837530568999251) +description = Boyne City city, MI +station = ('kmgn', 0.0038920228870512469) +zone = ('miz019', 0.0020936149204164884) + +[fips2602909860] +centroid = (0.7879929793029733, -1.4814766414098413) +description = Boyne Valley township, MI +station = ('kglr', 0.0033650843230189518) +zone = ('miz019', 0.0040375235249952941) + +[fips2602914560] +centroid = (0.78967781544309357, -1.4796878010995949) +description = Chandler township, MI +station = ('kmgn', 0.0035481486019412396) +zone = ('miz022', 0.0044975752200053795) + +[fips2602914780] +centroid = (0.79088465826096999, -1.4879658453819267) +description = Charlevoix city, MI +station = ('kcvx', 0.0003032100660127461) +zone = ('miz019', 0.0015599121099928524) + +[fips2602914800] +centroid = (0.79086287655190513, -1.4884186361497713) +description = Charlevoix township, MI +station = ('kcvx', 0.00016053919815570901) +zone = ('miz019', 0.0018734586734201599) + +[fips2602924020] +centroid = (0.78807087334748982, -1.4858140464004352) +description = East Jordan city, MI +station = ('kacb', 0.0029941094392874758) +zone = ('miz019', 0.0025983770374656719) + +[fips2602926580] +centroid = (0.7898130435535381, -1.4839534381513466) +description = Evangeline township, MI +station = ('kmgn', 0.003305626445366854) +zone = ('miz019', 0.0015379036266214702) + +[fips2602926680] +centroid = (0.78969195261003466, -1.4863126869677299) +description = Eveline township, MI +station = ('kcvx', 0.0017476911571658999) +zone = ('miz019', 0.0010493107446031416) + +[fips2602937320] +centroid = (0.79106955844192639, -1.4861157614682274) +description = Hayes township, MI +station = ('kcvx', 0.0015929318061467287) +zone = ('miz019', 0.00046885286088711763) + +[fips2602939700] +centroid = (0.78815885539508279, -1.4800398165564295) +description = Hudson township, MI +station = ('kglr', 0.0028579592367120104) +zone = ('miz022', 0.0034419701668538557) + +[fips2602951620] +centroid = (0.78978302389040367, -1.4881810444786974) +description = Marion township, MI +station = ('kcvx', 0.00093900034225672031) +zone = ('miz019', 0.0019145901161995384) + +[fips2602952880] +centroid = (0.7895852431795678, -1.4820343090124386) +description = Melrose township, MI +station = ('kmgn', 0.0032402880158638918) +zone = ('miz019', 0.0028430787885112773) + +[fips2602959340] +centroid = (0.7899240115873799, -1.4897514219264718) +description = Norwood township, MI +station = ('kcvx', 0.0012790374100950677) +zone = ('miz019', 0.0028994420606227151) + +[fips2602963140] +centroid = (0.79619939527280303, -1.492940627162056) +description = Peaine township, MI +station = ('ksjx', 0.0013226005852042828) +zone = ('miz019', 0.0074757125966449138) + +[fips2602970920] +centroid = (0.79955243456527192, -1.4942057465236567) +description = St. James township, MI +station = ('ksjx', 0.0021448582224357741) +zone = ('miz015', 0.0078741943740234781) + +[fips2602974680] +centroid = (0.78825120076580579, -1.4864263428086197) +description = South Arm township, MI +station = ('kcvx', 0.0028044859627052699) +zone = ('miz019', 0.0024617569438473352) + +[fips2602987700] +centroid = (0.78829312357443881, -1.484038505499089) +description = Wilson township, MI +station = ('kacb', 0.0037348833249372937) +zone = ('miz019', 0.0026702711213416725) + +[fips2603000] +centroid = (0.73784912884110809, -1.4613874479337814) +description = Ann Arbor city, MI +station = ('karb', 0.0010571744280818793) +zone = ('miz075', 0.00143759727468043) + +[fips26031] +centroid = (0.79370802503204374, -1.4747206813148817) +description = Cheboygan County, MI +station = ('kslh', 0.0031115342041344815) +zone = ('miz017', 0.00051485841766077899) + +[fips2603100000] +centroid = (0.79712843403363953, -1.4718674345070137) +description = County subdivisions not defined, MI +station = ('kslh', 0.0023082028403590259) +zone = ('miz017', 0.0044364328722595837) + +[fips2603101720] +centroid = (0.79396511203086251, -1.4736409682797205) +description = Aloha township, MI +station = ('kslh', 0.0030277813787531319) +zone = ('miz017', 0.001119573966748394) + +[fips2603106500] +centroid = (0.79702554687423455, -1.4758217048202098) +description = Beaugrand township, MI +station = ('kslh', 0.00052611086376816939) +zone = ('miz017', 0.0038953175681984277) + +[fips2603107420] +centroid = (0.79596676033680469, -1.4725679573088868) +description = Benton township, MI +station = ('kslh', 0.001983271950793885) +zone = ('miz017', 0.0031818170663681293) + +[fips2603111980] +centroid = (0.7944831257528544, -1.477445611516143) +description = Burt township, MI +station = ('kpln', 0.0019869457293199121) +zone = ('miz017', 0.0022566902728728281) + +[fips2603115000] +centroid = (0.79660167621209521, -1.4742580294367629) +description = Cheboygan city, MI +station = ('kslh', 0.00064797741209011094) +zone = ('miz017', 0.0034265848280781359) + +[fips2603125400] +centroid = (0.79136174401200265, -1.4756655851186187) +description = Ellis township, MI +station = ('kpln', 0.0049830643550562055) +zone = ('miz017', 0.0019322998092217941) + +[fips2603129400] +centroid = (0.79047888666317379, -1.4715977811375809) +description = Forest township, MI +station = ('kpzq', 0.0064991485358789625) +zone = ('miz017', 0.0035284585589351221) + +[fips2603134200] +centroid = (0.79447703455376495, -1.4713186331770167) +description = Grant township, MI +station = ('kslh', 0.0035449485018931659) +zone = ('miz017', 0.0027573571285903773) + +[fips2603137480] +centroid = (0.79715068698160252, -1.4775913639619769) +description = Hebron township, MI +station = ('kslh', 0.0017491008077543449) +zone = ('miz016', 0.0038806588210155866) + +[fips2603140820] +centroid = (0.79567345775600706, -1.4756032768643226) +description = Inverness township, MI +station = ('kslh', 0.0011782522807825397) +zone = ('miz017', 0.0025400734016416513) + +[fips2603143820] +centroid = (0.79278403027274535, -1.4751939797014375) +description = Koehler township, MI +station = ('kslh', 0.0040219919550591992) +zone = ('miz017', 0.00049580550826408662) + +[fips2603150300] +centroid = (0.79837327266933211, -1.4782353730026703) +description = Mackinaw township, MI +station = ('kmcd', 0.0022417860782159849) +zone = ('miz016', 0.0045535243779577699) + +[fips2603153100] +centroid = (0.79108723862724906, -1.4777228745211146) +description = Mentor township, MI +station = ('kmgn', 0.0034815855516862116) +zone = ('miz017', 0.002942422676174786) + +[fips2603156100] +centroid = (0.79430745836364125, -1.4758316706502386) +description = Mullett township, MI +station = ('kslh', 0.0025451396459759664) +zone = ('miz017', 0.0013253201325596153) + +[fips2603156280] +centroid = (0.79586448404263788, -1.4776248742836153) +description = Munro township, MI +station = ('kpln', 0.0017852417596889425) +zone = ('miz017', 0.0033214799007293722) + +[fips2603159500] +centroid = (0.7891687378068718, -1.4746231697695726) +description = Nunda township, MI +station = ('kglr', 0.0042185992132261546) +zone = ('miz022', 0.0036532208509700822) + +[fips2603180880] +centroid = (0.79290000740154043, -1.4772352993412774) +description = Tuscarora township, MI +station = ('kpln', 0.0030930264945648375) +zone = ('miz017', 0.0017332710356851441) + +[fips2603182940] +centroid = (0.79115560317404965, -1.4732600152638875) +description = Walker township, MI +station = ('kslh', 0.0058015257373734636) +zone = ('miz017', 0.0023100563888227795) + +[fips2603184760] +centroid = (0.79265014606582496, -1.4720144959497867) +description = Waverly township, MI +station = ('kslh', 0.0046963809258925753) +zone = ('miz017', 0.0020306277833648809) + +[fips2603187640] +centroid = (0.789699317899478, -1.4776532009773751) +description = Wilmot township, MI +station = ('kglr', 0.004017851422881147) +zone = ('miz022', 0.004007117018483085) + +[fips2603200] +centroid = (0.75676624645799162, -1.4423260788542203) +description = Applegate village, MI +station = ('cyzr', 0.0074980867303775468) +zone = ('miz055', 0.002551743397874031) + +[fips26033] +centroid = (0.80846825706286718, -1.4751632793598948) +description = Chippewa County, MI +station = ('kciu', 0.0014123860158108718) +zone = ('miz008', 0.00076040858294488319) + +[fips2603300] +centroid = (0.77654491095353695, -1.5051326246518624) +description = Arcadia CDP, MI +station = ('kfks', 0.0023541489867530958) +zone = ('miz031', 0.0035813658742268441) + +[fips2603300000] +centroid = (0.81557829210317911, -1.480169599239608) +description = County subdivisions not defined, MI +station = ('cyam', 0.0056573270288005698) +zone = ('miz008', 0.0080214051878378899) + +[fips2603306070] +centroid = (0.8102407087314375, -1.4791283707144531) +description = Bay Mills township, MI +station = ('cyam', 0.0031582150989240883) +zone = ('miz008', 0.0030208013674930074) + +[fips2603311280] +centroid = (0.80831822856036584, -1.4716367019799002) +description = Bruce township, MI +station = ('kciu', 0.0020996779352204266) +zone = ('miz008', 0.0030902182996186481) + +[fips2603315560] +centroid = (0.80903112574663549, -1.4836132909334254) +description = Chippewa township, MI +station = ('kciu', 0.0067378431263831291) +zone = ('miz015', 0.0048778084464485387) + +[fips2603319540] +centroid = (0.80916010557835782, -1.4737620766765163) +description = Dafter township, MI +station = ('kciu', 0.0019710393108805639) +zone = ('miz008', 0.0019488612151111) + +[fips2603321770] +centroid = (0.80293371328503815, -1.4663292953509257) +description = Detour township, MI +station = ('kdrm', 0.0033286514325360198) +zone = ('miz008', 0.008489693701797656) + +[fips2603323080] +centroid = (0.80289269804761632, -1.4593655887151009) +description = Drummond township, MI +station = ('kdrm', 0.001515285764671324) +zone = ('miz018', 0.012133733345095765) + +[fips2603339860] +centroid = (0.80862352155312456, -1.4868259184875714) +description = Hulbert township, MI +station = ('kery', 0.0032528853532892595) +zone = ('miz015', 0.0045089331724840996) + +[fips2603343480] +centroid = (0.80813786623546469, -1.4778657122670977) +description = Kinross charter township, MI +station = ('kciu', 0.0026826604591349747) +zone = ('miz008', 0.0012257898013494264) + +[fips2603363980] +centroid = (0.80591143697515821, -1.471944246447394) +description = Pickford township, MI +station = ('kciu', 0.0020449417258347883) +zone = ('miz008', 0.0035875947796674833) + +[fips2603366760] +centroid = (0.80485214429224528, -1.4687605739055389) +description = Raber township, MI +station = ('kciu', 0.0044584012391408988) +zone = ('miz008', 0.00600601323879159) + +[fips2603370220] +centroid = (0.80668187766686605, -1.4769794166196426) +description = Rudyard township, MI +station = ('kciu', 0.0019807389121151301) +zone = ('miz008', 0.0015105095436292867) + +[fips2603371740] +centroid = (0.81117969586901051, -1.4725411490515763) +description = Sault Ste. Marie city, MI +station = ('kanj', 0.00026763784508963264) +zone = ('miz008', 0.0039651000848382684) + +[fips2603374620] +centroid = (0.80774316002512614, -1.4695065625344261) +description = Soo township, MI +station = ('kciu', 0.0033020476073992795) +zone = ('miz008', 0.0045637665102056897) + +[fips2603377020] +centroid = (0.81045880507476675, -1.4696328894656854) +description = Sugar Island township, MI +station = ('kanj', 0.0019436007133829514) +zone = ('miz008', 0.0050617810579672729) + +[fips2603377540] +centroid = (0.80942523854502824, -1.4780219715950289) +description = Superior township, MI +station = ('cyam', 0.0028963190681613191) +zone = ('miz008', 0.001904221176572968) + +[fips2603380600] +centroid = (0.80648570265894182, -1.4826980577269722) +description = Trout Lake township, MI +station = ('kciu', 0.0059090630341578033) +zone = ('miz015', 0.0027877225301542264) + +[fips2603386700] +centroid = (0.8134319560022466, -1.4855228207614475) +description = Whitefish township, MI +station = ('kery', 0.0065983885271610572) +zone = ('miz007', 0.0056796435567196225) + +[fips2603400] +centroid = (0.74683450270939533, -1.4632501854845572) +description = Argentine CDP, MI +station = ('kfnt', 0.0032750467546420383) +zone = ('miz068', 0.0034047975905648663) + +[fips26035] +centroid = (0.7677901823459008, -1.4807081031270182) +description = Clare County, MI +station = ('khtl', 0.006621730808460095) +zone = ('miz040', 0.0001317104560583157) + +[fips2603503620] +centroid = (0.76706262439391448, -1.4778641589240638) +description = Arthur township, MI +station = ('kmop', 0.005853909830449546) +zone = ('miz040', 0.0022674389822325753) + +[fips2603515920] +centroid = (0.76492485785960906, -1.4793718615983988) +description = Clare city, MI +station = ('kmop', 0.0036878929043382743) +zone = ('miz040', 0.0030099697760538253) + +[fips2603520] +centroid = (0.7477354067626899, -1.4465482223010124) +description = Armada village, MI +station = ('kmtc', 0.0039816497448060427) +zone = ('miz070', 0.002639086239470117) + +[fips2603530280] +centroid = (0.77006127458176576, -1.4775726191258105) +description = Franklin township, MI +station = ('khtl', 0.0039934992709336689) +zone = ('miz040', 0.0033234360972502512) + +[fips2603530560] +centroid = (0.76720390879686329, -1.4841388095712009) +description = Freeman township, MI +station = ('kmop', 0.0070592216813059128) +zone = ('miz040', 0.0024089420495800027) + +[fips2603530900] +centroid = (0.76978554746653582, -1.4797295842818876) +description = Frost township, MI +station = ('khtl', 0.0045061714178746218) +zone = ('miz040', 0.0022104620288379514) + +[fips2603531560] +centroid = (0.7655505933030341, -1.4844124422913285) +description = Garfield township, MI +station = ('kmop', 0.0058701707016343366) +zone = ('miz040', 0.0033560219702680047) + +[fips2603534220] +centroid = (0.76555233863228611, -1.4799301575195267) +description = Grant township, MI +station = ('kmop', 0.0043648999209998183) +zone = ('miz040', 0.0022847063623903903) + +[fips2603535120] +centroid = (0.76836008470655437, -1.4817721605587892) +description = Greenwood township, MI +station = ('khtl', 0.006394614542688434) +zone = ('miz040', 0.0009001142061073581) + +[fips2603536140] +centroid = (0.76859842686920687, -1.4780954674098303) +description = Hamilton township, MI +station = ('khtl', 0.0054620169451664704) +zone = ('miz040', 0.0021770143626553226) + +[fips2603536800] +centroid = (0.76817096082880831, -1.4802250308966514) +description = Harrison city, MI +station = ('khtl', 0.0061524072997545124) +zone = ('miz040', 0.00063936057502550015) + +[fips2603537160] +centroid = (0.76691343364945386, -1.4801405220542698) +description = Hatton township, MI +station = ('kmop', 0.0057322085109942737) +zone = ('miz040', 0.00097525913850169841) + +[fips2603537340] +centroid = (0.76862094161655747, -1.4797566717918786) +description = Hayes township, MI +station = ('khtl', 0.0056268846020607593) +zone = ('miz040', 0.0011967953851448995) + +[fips2603547620] +centroid = (0.76692854820077616, -1.4818657974731586) +description = Lincoln township, MI +station = ('kmop', 0.0060709437988634195) +zone = ('miz040', 0.0010762841436103663) + +[fips2603567600] +centroid = (0.76840771474184133, -1.4838566421910309) +description = Redding township, MI +station = ('kcad', 0.0067023336809935207) +zone = ('miz040', 0.002249029294645538) + +[fips2603573000] +centroid = (0.76535749007459353, -1.4778262852792954) +description = Sheridan township, MI +station = ('kmop', 0.0041725178695114374) +zone = ('miz040', 0.0032348083354095418) + +[fips2603577120] +centroid = (0.76985796117720096, -1.4816467935586182) +description = Summerfield township, MI +station = ('khtl', 0.0050548675536808436) +zone = ('miz040', 0.0021957876687756133) + +[fips2603577580] +centroid = (0.76544815992923465, -1.4819688940720739) +description = Surrey township, MI +station = ('kmop', 0.004752072162177704) +zone = ('miz040', 0.0024178843012085888) + +[fips2603587980] +centroid = (0.77024425490054493, -1.4839572778757011) +description = Winterfield township, MI +station = ('kcad', 0.0055743353785725576) +zone = ('miz040', 0.0033487148759664752) + +[fips26037] +centroid = (0.74962685497966108, -1.4764035975928247) +description = Clinton County, MI +station = ('klan', 0.0029187839189480798) +zone = ('miz059', 0.00017322058524233219) + +[fips2603705900] +centroid = (0.74733759386628285, -1.4733495157479297) +description = Bath charter township, MI +station = ('klan', 0.0022241190647898064) +zone = ('miz059', 0.0032081927586206736) + +[fips2603707240] +centroid = (0.75045653214618169, -1.477731339367987) +description = Bengal township, MI +station = ('klan', 0.0038989752325615037) +zone = ('miz059', 0.0012717789893628641) + +[fips2603708400] +centroid = (0.75012479741525517, -1.4754376800248934) +description = Bingham township, MI +station = ('klan', 0.0034672249215507134) +zone = ('miz059', 0.0010362496679785802) + +[fips2603719620] +centroid = (0.75037670078619545, -1.4794603323381825) +description = Dallas township, MI +station = ('ky70', 0.0038584946989672617) +zone = ('miz059', 0.0022834956352481809) + +[fips2603722120] +centroid = (0.74762719634906627, -1.476123419888002) +description = DeWitt city, MI +station = ('klan', 0.00092243665870910278) +zone = ('miz059', 0.0019088727575310026) + +[fips2603722140] +centroid = (0.74722447907746103, -1.4755594865533901) +description = DeWitt charter township, MI +station = ('klan', 0.00072601171276951923) +zone = ('miz059', 0.0024009088386455243) + +[fips2603723460] +centroid = (0.75175514437612811, -1.4734640093468607) +description = Duplain township, MI +station = ('krnp', 0.0038850717874672363) +zone = ('miz059', 0.003198065618906953) + +[fips2603723580] +centroid = (0.74729465876668377, -1.4797511216448573) +description = Eagle township, MI +station = ('klan', 0.0026290794546367773) +zone = ('miz059', 0.0032113965950617039) + +[fips2603724120] +centroid = (0.74657034712710602, -1.4747957479260099) +description = East Lansing city, MI +station = ('klan', 0.0010820598952175494) +zone = ('miz059', 0.0032133598965514406) + +[fips2603726400] +centroid = (0.75174435824135066, -1.4775666850063536) +description = Essex township, MI +station = ('kamn', 0.0043822520106654725) +zone = ('miz059', 0.0023518072894438882) + +[fips2603733420] +centroid = (0.74656608852373119, -1.4787993936037449) +description = Grand Ledge city, MI +station = ('klan', 0.0018711177984377084) +zone = ('miz059', 0.0033629614392434886) + +[fips2603734840] +centroid = (0.75166487594721487, -1.4753938897139609) +description = Greenbush township, MI +station = ('kamn', 0.0048580401462903012) +zone = ('miz059', 0.0023240482537173024) + +[fips2603740] +centroid = (0.75376815477550074, -1.4743933273603778) +description = Ashley village, MI +station = ('kamn', 0.0035635061960978837) +zone = ('miz052', 0.0024528871834350028) + +[fips2603746580] +centroid = (0.75175339904687599, -1.4795843554348291) +description = Lebanon township, MI +station = ('ky70', 0.0043199345509978638) +zone = ('miz059', 0.0031446691817739797) + +[fips2603760440] +centroid = (0.74869591380993983, -1.4756584292686858) +description = Olive township, MI +station = ('klan', 0.0020339096576364457) +zone = ('miz059', 0.0010528316732452006) + +[fips2603761880] +centroid = (0.75025307911527661, -1.4731734992928662) +description = Ovid township, MI +station = ('krnp', 0.0034199414030333382) +zone = ('miz060', 0.0033679387951045647) + +[fips2603768600] +centroid = (0.7486248614560912, -1.477503853153282) +description = Riley township, MI +station = ('klan', 0.002121700357681494) +zone = ('miz059', 0.0011142343284169225) + +[fips2603770940] +centroid = (0.75050665800229899, -1.4757750347160115) +description = St. Johns city, MI +station = ('klan', 0.0038130559697777421) +zone = ('miz059', 0.0011581273395523351) + +[fips2603782320] +centroid = (0.74868463898297199, -1.4736104773776881) +description = Victor township, MI +station = ('klan', 0.002768897775982613) +zone = ('miz059', 0.0023213600888967205) + +[fips2603784400] +centroid = (0.74728334903313076, -1.4774830662818905) +description = Watertown charter township, MI +station = ('klan', 0.0010663545819965864) +zone = ('miz059', 0.0023213382452605441) + +[fips2603786140] +centroid = (0.74872924959865295, -1.47965292942114) +description = Westphalia township, MI +station = ('klan', 0.0032054802065297461) +zone = ('miz059', 0.0023846071300869551) + +[fips2603880] +centroid = (0.73456359888410638, -1.487652646047656) +description = Athens village, MI +station = ('koeb', 0.0035925287479389111) +zone = ('miz080', 0.0037710892282553092) + +[fips26039] +centroid = (0.77981674007591062, -1.4767428372395348) +description = Crawford County, MI +station = ('kgov', 0.0014613661605675798) +zone = ('miz028', 6.0095158262519551e-05) + +[fips2603906600] +centroid = (0.77771073853399164, -1.4787515541289478) +description = Beaver Creek township, MI +station = ('kgov', 0.002107479628848258) +zone = ('miz028', 0.0026003620994248656) + +[fips2603920] +centroid = (0.78544291363946939, -1.4687896510908771) +description = Atlanta CDP, MI +station = ('kpzq', 0.008220005985840495) +zone = ('miz023', 0.0005567986435508534) + +[fips2603930480] +centroid = (0.78148089406439469, -1.4799363883449566) +description = Frederic township, MI +station = ('kgov', 0.0018491562692305734) +zone = ('miz028', 0.0027875263308050412) + +[fips2603934640] +centroid = (0.77942843922392691, -1.4784870320275154) +description = Grayling city, MI +station = ('kgov', 0.00044795066509327328) +zone = ('miz028', 0.001328371688720282) + +[fips2603934660] +centroid = (0.77977607390433912, -1.4772913767701441) +description = Grayling charter township, MI +station = ('kgov', 0.0010721710422860061) +zone = ('miz028', 0.00041262424358235177) + +[fips2603949520] +centroid = (0.78164528662664001, -1.474164479788856) +description = Lovells township, MI +station = ('kgov', 0.0037648953459843643) +zone = ('miz028', 0.002539230007975134) + +[fips2603950940] +centroid = (0.78207015212645303, -1.4775121260139363) +description = Maple Forest township, MI +station = ('kgov', 0.0024303467056250539) +zone = ('miz028', 0.0022637262870855816) + +[fips2603974760] +centroid = (0.77806067704901649, -1.4739728600902795) +description = South Branch township, MI +station = ('kgov', 0.0038574311413993394) +zone = ('miz028', 0.0026721277443966544) + +[fips2604020] +centroid = (0.75091509995385064, -1.4514314615618749) +description = Attica CDP, MI +station = ('kd95', 0.0015920101024269754) +zone = ('miz062', 0.0013868921259887713) + +[fips2604080] +centroid = (0.76099865244078524, -1.4673874186632399) +description = Auburn city, MI +station = ('kmbs', 0.001203158367488213) +zone = ('miz048', 0.0021140432014010889) + +[fips26041] +centroid = (0.79944982665854714, -1.5167150833537024) +description = Delta County, MI +station = ('kesc', 0.0018721935895360973) +zone = ('miz013', 0.0020196160935942648) + +[fips2604100000] +centroid = (0.79549609739741944, -1.5160286802654779) +description = County subdivisions not defined, MI +station = ('kesc', 0.003649293239406947) +zone = ('miz013', 0.0060020951233306988) + +[fips2604104900] +centroid = (0.80289379760504498, -1.520139052826972) +description = Baldwin township, MI +station = ('kesc', 0.0044742369698461681) +zone = ('miz013', 0.0025491113983212793) + +[fips2604105] +centroid = (0.74481437136667461, -1.4528750059329067) +description = Auburn Hills city, MI +station = ('kvll', 0.0024531698272393368) +zone = ('miz069', 0.0018380508403855317) + +[fips2604105420] +centroid = (0.79780293397636526, -1.5235690611394541) +description = Bark River township, MI +station = ('kesc', 0.003249702740192911) +zone = ('miz012', 0.00394792689004703) + +[fips2604106040] +centroid = (0.79884472100688075, -1.5169259540339282) +description = Bay de Noc township, MI +station = ('kesc', 0.0015026239007315599) +zone = ('miz013', 0.0026086317227765961) + +[fips2604109980] +centroid = (0.80139546734879286, -1.5193033193679473) +description = Brampton township, MI +station = ('kesc', 0.0029141124603084506) +zone = ('miz013', 0.001521979737388902) + +[fips2604118280] +centroid = (0.80143049610688044, -1.523633568508608) +description = Cornell township, MI +station = ('kesc', 0.0043586726424288871) +zone = ('miz013', 0.0045334509884888) + +[fips2604120] +centroid = (0.76871888949417944, -1.4607240133785131) +description = Au Gres city, MI +station = ('kosc', 0.0081733968482685295) +zone = ('miz042', 0.0025542674387305894) + +[fips2604126140] +centroid = (0.80062722577194245, -1.5161589690941395) +description = Ensign township, MI +station = ('kesc', 0.0029236350005319551) +zone = ('miz013', 0.0010589741792181701) + +[fips2604126360] +centroid = (0.79842336361886423, -1.5198956317561967) +description = Escanaba city, MI +station = ('kesc', 0.00061568225579851637) +zone = ('miz013', 0.003592835763169364) + +[fips2604126380] +centroid = (0.80027751414972048, -1.5213177260307216) +description = Escanaba township, MI +station = ('kesc', 0.0024024562716912618) +zone = ('miz013', 0.0031503772387249454) + +[fips2604126960] +centroid = (0.79597784317755493, -1.5130645701435235) +description = Fairbanks township, MI +station = ('kesc', 0.0048585017102482303) +zone = ('miz013', 0.0061592454429539346) + +[fips2604129380] +centroid = (0.79706197189572359, -1.5221627970012448) +description = Ford River township, MI +station = ('kesc', 0.0026183429287403208) +zone = ('miz013', 0.0056242037360746166) + +[fips2604131400] +centroid = (0.8018301590522946, -1.5101641994458517) +description = Garden township, MI +station = ('kisq', 0.0043352556146192068) +zone = ('miz014', 0.0044892434682858627) + +[fips2604132300] +centroid = (0.80023932634568673, -1.5188957675343142) +description = Gladstone city, MI +station = ('kesc', 0.0017532733573321) +zone = ('miz013', 0.0017317044325409967) + +[fips2604151260] +centroid = (0.80436399315375484, -1.5208398199749404) +description = Maple Ridge township, MI +station = ('ksaw', 0.0056019774771609706) +zone = ('miz013', 0.0038959900732750442) + +[fips2604152220] +centroid = (0.80348443447721241, -1.5164442257070851) +description = Masonville township, MI +station = ('kesc', 0.0053077751971513159) +zone = ('miz013', 0.0020875046505921184) + +[fips2604156500] +centroid = (0.8023231098462279, -1.5135494749696052) +description = Nahma township, MI +station = ('kesc', 0.0054047949881481008) +zone = ('miz013', 0.0026298532106198199) + +[fips2604160] +centroid = (0.73893177402941268, -1.4896815214899293) +description = Augusta village, MI +station = ('kbtl', 0.0014767582459070052) +zone = ('miz072', 0.0028140043645899847) + +[fips2604185240] +centroid = (0.79905983283718907, -1.521461785507181) +description = Wells township, MI +station = ('kesc', 0.0017979084983575579) +zone = ('miz013', 0.0038562828566671842) + +[fips2604280] +centroid = (0.77514585502513833, -1.4545406259979625) +description = Au Sable CDP, MI +station = ('kosc', 0.00073822002920098401) +zone = ('miz036', 0.0038339213450713575) + +[fips26043] +centroid = (0.80307525948737479, -1.5335530774991475) +description = Dickinson County, MI +station = ('kimt', 0.0045800241732558925) +zone = ('miz011', 8.315702718536502e-05) + +[fips2604310200] +centroid = (0.80256354640398264, -1.5306649764661173) +description = Breen township, MI +station = ('kimt', 0.0058319498852258712) +zone = ('miz011', 0.0021062060588383303) + +[fips2604310220] +centroid = (0.80056376560033993, -1.5359686480904926) +description = Breitung charter township, MI +station = ('kimt', 0.0016404503268221454) +zone = ('miz011', 0.00293861176746217) + +[fips2604327660] +centroid = (0.80423314581973293, -1.5335455027701939) +description = Felch township, MI +station = ('kimt', 0.0055014999040311468) +zone = ('miz011', 0.0012241982222145366) + +[fips2604340960] +centroid = (0.79985041462846485, -1.536947725440984) +description = Iron Mountain city, MI +station = ('kimt', 0.00071009215398647673) +zone = ('miz011', 0.0039139528633292025) + +[fips2604343300] +centroid = (0.79947316171064631, -1.537641441458774) +description = Kingsford city, MI +station = ('kimt', 0.00026683237192444523) +zone = ('wiz013', 0.0044577326044629544) + +[fips2604359220] +centroid = (0.79946221849623633, -1.5344338579061665) +description = Norway city, MI +station = ('kimt', 0.0024414422544523041) +zone = ('miz011', 0.0035921198579895739) + +[fips2604359240] +centroid = (0.8005341473629336, -1.5337774046679065) +description = Norway township, MI +station = ('kimt', 0.0030217734852606894) +zone = ('miz011', 0.0024783184323142401) + +[fips2604370600] +centroid = (0.80471651475607264, -1.5365029457344057) +description = Sagola township, MI +station = ('kimt', 0.0051605217141893183) +zone = ('miz011', 0.0026252364221769063) + +[fips2604384700] +centroid = (0.79987879368210235, -1.5317539746528992) +description = Waucedah township, MI +station = ('kimt', 0.0043070905347040505) +zone = ('miz011', 0.0033919721411306771) + +[fips2604385520] +centroid = (0.80562523788441609, -1.5308673299395936) +description = West Branch township, MI +station = ('ksaw', 0.0051162728853073854) +zone = ('miz011', 0.0032409779062596736) + +[fips26045] +centroid = (0.7433289914534722, -1.4808512026723892) +description = Eaton County, MI +station = ('kfpk', 0.000523420831865111) +zone = ('miz066', 0.00015398258253422015) + +[fips2604507080] +centroid = (0.74119178342452763, -1.4837949797085581) +description = Bellevue township, MI +station = ('kfpk', 0.0032216399403558822) +zone = ('miz066', 0.0031991180727091104) + +[fips2604507440] +centroid = (0.74432187435834674, -1.4798212838807874) +description = Benton township, MI +station = ('kfpk', 0.0012944933179216392) +zone = ('miz066', 0.0010958710285892356) + +[fips2604510920] +centroid = (0.74122005775840993, -1.4798122081686771) +description = Brookfield township, MI +station = ('kfpk', 0.00187068265495926) +zone = ('miz066', 0.0023184044403469499) + +[fips2604513380] +centroid = (0.74257169309103199, -1.4818704924088466) +description = Carmel township, MI +station = ('kfpk', 0.0012994183079428647) +zone = ('miz066', 0.0012202065277370357) + +[fips2604514820] +centroid = (0.74292037496899532, -1.4805949010717339) +description = Charlotte city, MI +station = ('kfpk', 0.00029964542598447276) +zone = ('miz066', 0.00052858670210008548) + +[fips2604515260] +centroid = (0.74420532127089856, -1.4817266074653122) +description = Chester township, MI +station = ('kfpk', 0.0015819386814159846) +zone = ('miz066', 0.0010689592905200737) + +[fips2604521520] +centroid = (0.74574482384420526, -1.4776197779221993) +description = Delta charter township, MI +station = ('klan', 0.0013899322182478898) +zone = ('miz066', 0.0032348259144732573) + +[fips2604524520] +centroid = (0.74245960804646882, -1.4795717192510447) +description = Eaton township, MI +station = ('kfpk', 0.00077873336182028845) +zone = ('miz066', 0.00129132564745587) + +[fips2604524540] +centroid = (0.74191969044236439, -1.4774537796570422) +description = Eaton Rapids city, MI +station = ('kfpk', 0.0023490527769213241) +zone = ('miz066', 0.0028407386468374159) + +[fips2604524560] +centroid = (0.74274908835620457, -1.477779615175097) +description = Eaton Rapids township, MI +station = ('kfpk', 0.0018378201590447333) +zone = ('miz066', 0.0022660377763450805) + +[fips2604533420] +centroid = (0.74617934101478178, -1.4790775467266351) +description = Grand Ledge city, MI +station = ('klan', 0.0021370423629764922) +zone = ('miz066', 0.0029885498863506479) + +[fips2604536200] +centroid = (0.74102424926962873, -1.4775875242376226) +description = Hamlin township, MI +station = ('kfpk', 0.0028245635066012926) +zone = ('miz066', 0.0033376198674478059) + +[fips2604542220] +centroid = (0.74275350403921214, -1.4839090893350533) +description = Kalamo township, MI +station = ('kfpk', 0.0027215830279628908) +zone = ('miz066', 0.0024547522885211867) + +[fips2604546000] +centroid = (0.7450897668693468, -1.4781232355982297) +description = Lansing city, MI +station = ('klan', 0.002121973179243189) +zone = ('miz066', 0.0025166333121244867) + +[fips2604560580] +centroid = (0.74077037367663356, -1.4823105248198594) +description = Olivet city, MI +station = ('kfpk', 0.0027560918553441657) +zone = ('miz066', 0.0029208289733221346) + +[fips2604560700] +centroid = (0.74559716898948658, -1.480043359574811) +description = Oneida charter township, MI +station = ('kfpk', 0.0025369781364301845) +zone = ('miz066', 0.0022099426575729868) + +[fips2604566100] +centroid = (0.74399411897811485, -1.47910590832698) +description = Potterville city, MI +station = ('kfpk', 0.0012486298380318989) +zone = ('miz066', 0.0013027963209009737) + +[fips2604570020] +centroid = (0.74574923952721284, -1.4818095629646593) +description = Roxand township, MI +station = ('kfpk', 0.0029232390072944504) +zone = ('miz066', 0.0024447813636899541) + +[fips2604577440] +centroid = (0.74560116579347357, -1.4839592500977559) +description = Sunfield township, MI +station = ('kfpk', 0.0037320193863800586) +zone = ('miz066', 0.0032207310738046517) + +[fips2604581980] +centroid = (0.744149208935447, -1.4838707095448023) +description = Vermontville township, MI +station = ('kfpk', 0.002885550232000629) +zone = ('miz066', 0.0024314719453534623) + +[fips2604583180] +centroid = (0.74122634094371709, -1.4816606165662942) +description = Walton township, MI +station = ('kfpk', 0.0021159451265637176) +zone = ('miz066', 0.0023240723813070054) + +[fips2604587840] +centroid = (0.74412261011764658, -1.4776500942913064) +description = Windsor charter township, MI +station = ('kfpk', 0.0021790781096730108) +zone = ('miz066', 0.0023519623996332267) + +[fips26047] +centroid = (0.79569724659371177, -1.4832998647063524) +description = Emmet County, MI +station = ('kpln', 0.0023185802263340979) +zone = ('miz016', 0.0016914727679875684) + +[fips2604700000] +centroid = (0.79712229047467253, -1.4852374943353315) +description = County subdivisions not defined, MI +station = ('kpln', 0.0040721435517899638) +zone = ('miz016', 0.0036577901652846932) + +[fips2604706380] +centroid = (0.79154289173506709, -1.4818544004731431) +description = Bear Creek township, MI +station = ('kmgn', 0.001287705837443855) +zone = ('miz016', 0.0029443581577322936) + +[fips2604708980] +centroid = (0.79755837844157584, -1.4821251184934201) +description = Bliss township, MI +station = ('kpln', 0.0026982433552681642) +zone = ('miz016', 0.0030961090105130619) + +[fips2604713500] +centroid = (0.79738871498498953, -1.4800359942853678) +description = Carp Lake township, MI +station = ('kpln', 0.0021003536936716116) +zone = ('miz016', 0.0031099223737268405) + +[fips2604714300] +centroid = (0.79581149584654731, -1.4821357475485646) +description = Center township, MI +station = ('kpln', 0.001557816704605867) +zone = ('miz016', 0.0013773187115913423) + +[fips2604718900] +centroid = (0.79662679150003135, -1.4837251490851857) +description = Cross Village township, MI +station = ('kpln', 0.0029053437321552977) +zone = ('miz016', 0.0026021118521195666) + +[fips2604730860] +centroid = (0.79435032365007008, -1.4842329177244686) +description = Friendship township, MI +station = ('kmgn', 0.0021770290850871049) +zone = ('miz016', 0.0018365351219557723) + +[fips2604736560] +centroid = (0.79294690439854143, -1.4833356265027258) +description = Harbor Springs city, MI +station = ('kmgn', 0.00093315931310620896) +zone = ('miz016', 0.001951338346276226) + +[fips2604740] +centroid = (0.76452097121740514, -1.4485935387448394) +description = Bad Axe city, MI +station = ('kbax', 0.00043219247961886738) +zone = ('miz049', 0.00057845327847458631) + +[fips2604748020] +centroid = (0.79293266251184513, -1.4797705297061394) +description = Littlefield township, MI +station = ('kmgn', 0.0015803755903476234) +zone = ('miz016', 0.0020203584984193096) + +[fips2604748080] +centroid = (0.79305816913835603, -1.4819537097075817) +description = Little Traverse township, MI +station = ('kmgn', 0.0002368938406417897) +zone = ('miz016', 0.001443667588152659) + +[fips2604750340] +centroid = (0.79564537540834246, -1.4798264326020807) +description = McKinley township, MI +station = ('kpln', 0.00038683150284258351) +zone = ('miz016', 0.0017108931708199702) + +[fips2604751280] +centroid = (0.79415386938946575, -1.4800804652747086) +description = Maple River township, MI +station = ('kpln', 0.0011348611835586191) +zone = ('miz016', 0.0011269809932836611) + +[fips2604763820] +centroid = (0.7917659971733495, -1.4837166318784361) +description = Petoskey city, MI +station = ('kmgn', 0.0015958078130982073) +zone = ('miz019', 0.0018124892334619377) + +[fips2604764960] +centroid = (0.79416278802194329, -1.4818472620765024) +description = Pleasantview township, MI +station = ('kmgn', 0.0013425827574415968) +zone = ('miz016', 0.000357671297356484) + +[fips2604767540] +centroid = (0.7954202628414202, -1.4841821635498205) +description = Readmond township, MI +station = ('kpln', 0.0029031989905593694) +zone = ('miz016', 0.002025347449771597) + +[fips2604768060] +centroid = (0.79115233940834839, -1.4838436045815186) +description = Resort township, MI +station = ('kmgn', 0.0021083891870221816) +zone = ('miz019', 0.001437682417945334) + +[fips2604775900] +centroid = (0.7913760382585765, -1.4799604215287563) +description = Springvale township, MI +station = ('kmgn', 0.0020464289086673487) +zone = ('miz016', 0.0033173809147986687) + +[fips2604784840] +centroid = (0.79821650719591786, -1.4797183443615047) +description = Wawatam township, MI +station = ('kmcd', 0.0028774378458857617) +zone = ('miz016', 0.0039633598121428561) + +[fips2604786300] +centroid = (0.79330878096565005, -1.4841913439816858) +description = West Traverse township, MI +station = ('kmgn', 0.0016002048761661648) +zone = ('miz016', 0.0021519274194576033) + +[fips26049] +centroid = (0.75085944140400451, -1.4609517962991909) +description = Genesee County, MI +station = ('kfnt', 0.0011009107041359165) +zone = ('miz061', 1.1651088249836582e-05) + +[fips2604903420] +centroid = (0.74756782024791335, -1.4637032205984974) +description = Argentine township, MI +station = ('kfnt', 0.0027586064264272544) +zone = ('miz061', 0.0038663161460594144) + +[fips2604904000] +centroid = (0.74908826382578819, -1.4576439261277636) +description = Atlas township, MI +station = ('kfnt', 0.0030900755281929953) +zone = ('miz061', 0.0030090237492302529) + +[fips2604912060] +centroid = (0.75050728632082964, -1.4594127300581972) +description = Burton city, MI +station = ('kfnt', 0.0017858506856907727) +zone = ('miz061', 0.0011864831188033585) + +[fips2604916260] +centroid = (0.75064595272990065, -1.4637904870610972) +description = Clayton charter township, MI +station = ('kfnt', 0.00168842938514025) +zone = ('miz061', 0.0020835002722747638) + +[fips2604916620] +centroid = (0.75357995592225824, -1.461462497091617) +description = Clio city, MI +station = ('kfnt', 0.0036747221197727742) +zone = ('miz061', 0.0027346129641684347) + +[fips2604919880] +centroid = (0.7510457029417773, -1.4576771921033065) +description = Davison city, MI +station = ('kfnt', 0.0031628342497496205) +zone = ('miz061', 0.0024044416392599356) + +[fips2604919900] +centroid = (0.75047323494712326, -1.4576264728352437) +description = Davison township, MI +station = ('kfnt', 0.0030423419059009129) +zone = ('miz061', 0.0024679182817921664) + +[fips2604927760] +centroid = (0.74699999482906954, -1.4610890140849828) +description = Fenton city, MI +station = ('kfnt', 0.0029455379407453916) +zone = ('miz061', 0.0038715180223861155) + +[fips2604927780] +centroid = (0.74765042668141024, -1.4617208232742047) +description = Fenton charter township, MI +station = ('kfnt', 0.002259382072047969) +zone = ('miz061', 0.0032680315787301782) + +[fips2604929000] +centroid = (0.75091787502736129, -1.4607006608731212) +description = Flint city, MI +station = ('kfnt', 0.0012508874475580011) +zone = ('miz061', 0.0001937142332729832) + +[fips2604929020] +centroid = (0.75056983892122109, -1.4619897261520594) +description = Flint charter township, MI +station = ('kfnt', 0.00069032892841090895) +zone = ('miz061', 0.00081235924568091975) + +[fips2604929200] +centroid = (0.75158740078171893, -1.4633299121247885) +description = Flushing city, MI +station = ('kfnt', 0.0020522243495049012) +zone = ('miz061', 0.0018762980676666498) + +[fips2604929220] +centroid = (0.7521670595328912, -1.4638769332189483) +description = Flushing charter township, MI +station = ('kfnt', 0.0027562116795465893) +zone = ('miz061', 0.0024963092288717761) + +[fips2604929420] +centroid = (0.75358374328673505, -1.457828424882992) +description = Forest township, MI +station = ('kd95', 0.0037891217084031897) +zone = ('miz061', 0.0035472313330190981) + +[fips2604931220] +centroid = (0.74884156153601888, -1.4639803963370066) +description = Gaines township, MI +station = ('kfnt', 0.0019738565240696128) +zone = ('miz061', 0.0030015368048252429) + +[fips2604931800] +centroid = (0.75215883903211422, -1.4596223790079468) +description = Genesee charter township, MI +station = ('kfnt', 0.0027192173479975712) +zone = ('miz061', 0.0016161531429883835) + +[fips2604933280] +centroid = (0.74924405191482124, -1.4593898836982888) +description = Grand Blanc city, MI +station = ('kfnt', 0.0018263167159458932) +zone = ('miz061', 0.0019900378963879383) + +[fips2604933300] +centroid = (0.74900272523914802, -1.4596819296420247) +description = Grand Blanc charter township, MI +station = ('kfnt', 0.0017418648898770617) +zone = ('miz061', 0.0020878479130248223) + +[fips2604940] +centroid = (0.76614685013539285, -1.4984058115554109) +description = Baldwin village, MI +station = ('krqb', 0.0053388044021090006) +zone = ('miz038', 0.0017437085188827027) + +[fips2604947820] +centroid = (0.7473353947514253, -1.4622582276041864) +description = Linden city, MI +station = ('kfnt', 0.0026051843928742539) +zone = ('miz061', 0.0036610008265565439) + +[fips2604955280] +centroid = (0.75356937922699108, -1.4642122982347192) +description = Montrose city, MI +station = ('kfnt', 0.0040896410316185782) +zone = ('miz053', 0.0034358086743209474) + +[fips2604955300] +centroid = (0.753634497461383, -1.4637964735404314) +description = Montrose charter township, MI +station = ('kfnt', 0.0040235656960019225) +zone = ('miz061', 0.0034550641014492026) + +[fips2604955960] +centroid = (0.75253968732819199, -1.4608216994567473) +description = Mount Morris city, MI +station = ('kfnt', 0.002709403638713553) +zone = ('miz061', 0.0016723185817864791) + +[fips2604955980] +centroid = (0.75210354700141113, -1.4618800322085717) +description = Mount Morris township, MI +station = ('kfnt', 0.0021971303269716544) +zone = ('miz061', 0.0014054224148276893) + +[fips2604956160] +centroid = (0.74888933119764589, -1.4618198707092553) +description = Mundy township, MI +station = ('kfnt', 0.0010234517900208949) +zone = ('miz061', 0.0020790646939764321) + +[fips2604968180] +centroid = (0.75219191302143962, -1.4577822609242768) +description = Richfield township, MI +station = ('kfnt', 0.0036694256975573847) +zone = ('miz061', 0.0026700095557559505) + +[fips2604977700] +centroid = (0.74984636503968438, -1.4630231006955803) +description = Swartz Creek city, MI +station = ('kfnt', 0.00096060996779079246) +zone = ('miz061', 0.001825146860820059) + +[fips2604979460] +centroid = (0.75349522018707393, -1.4596201624397969) +description = Thetford township, MI +station = ('kfnt', 0.003897849216763487) +zone = ('miz061', 0.0028006701197196304) + +[fips2604982380] +centroid = (0.75363673148282562, -1.4619092141136649) +description = Vienna charter township, MI +station = ('kfnt', 0.0037296776387253866) +zone = ('miz061', 0.0028523530265351831) + +[fips2605080] +centroid = (0.74833703920914474, -1.4672232529937972) +description = Bancroft village, MI +station = ('krnp', 0.0022336935905703978) +zone = ('miz060', 0.0016984962358505865) + +[fips26051] +centroid = (0.76776597462917562, -1.4728801443521911) +description = Gladwin County, MI +station = ('kikw', 0.005982855399933899) +zone = ('miz041', 2.5136651288951601e-05) + +[fips2605106660] +centroid = (0.76586206476134511, -1.4745881235581926) +description = Beaverton city, MI +station = ('kikw', 0.0048027578476351439) +zone = ('miz041', 0.0022901378888721255) + +[fips2605106680] +centroid = (0.76536255152942423, -1.4760296084407074) +description = Beaverton township, MI +station = ('kmop', 0.0045940604522190205) +zone = ('miz041', 0.0033296858344359056) + +[fips2605107360] +centroid = (0.76555806331223264, -1.4701366438476886) +description = Bentley township, MI +station = ('kikw', 0.0035640555974870048) +zone = ('miz041', 0.0029605849155222579) + +[fips2605108360] +centroid = (0.76563649840881731, -1.4717581070826691) +description = Billings township, MI +station = ('kikw', 0.003718635557010156) +zone = ('miz041', 0.0022844391508963259) + +[fips2605109720] +centroid = (0.76974378173753555, -1.4703685806519862) +description = Bourret township, MI +station = ('khtl', 0.0068018518466375338) +zone = ('miz041', 0.0026531803040281926) + +[fips2605111440] +centroid = (0.76683667406895117, -1.4733410858076426) +description = Buckeye township, MI +station = ('kikw', 0.0052117870646989318) +zone = ('miz041', 0.0010076465532876833) + +[fips2605112180] +centroid = (0.76999484735043489, -1.4735428109625883) +description = Butman township, MI +station = ('khtl', 0.0050395172530867654) +zone = ('miz041', 0.0022690288184907771) + +[fips2605116360] +centroid = (0.77002923033669923, -1.4718414465544516) +description = Clement township, MI +station = ('khtl', 0.0058212871661801509) +zone = ('miz041', 0.0023627906886196344) + +[fips2605132320] +centroid = (0.76766511205170274, -1.4745803219364362) +description = Gladwin city, MI +station = ('kikw', 0.0063371249042119731) +zone = ('miz041', 0.0012489308928676631) + +[fips2605132340] +centroid = (0.76854196546790476, -1.4733543328566654) +description = Gladwin township, MI +station = ('khtl', 0.0063356110748780461) +zone = ('miz041', 0.00084255966306940363) + +[fips2605135340] +centroid = (0.76777386351739452, -1.4701751981708653) +description = Grim township, MI +station = ('kikw', 0.0057718174112980671) +zone = ('miz041', 0.001925810551808137) + +[fips2605135620] +centroid = (0.7670352925378281, -1.4757984395812807) +description = Grout township, MI +station = ('kmop', 0.0061930599317010773) +zone = ('miz041', 0.0022478607965239678) + +[fips2605137300] +centroid = (0.76708835054708879, -1.4719779662085428) +description = Hay township, MI +station = ('kikw', 0.0051720764561317412) +zone = ('miz041', 0.00093548545621894099) + +[fips2605140] +centroid = (0.73849121801962425, -1.5029630756718781) +description = Bangor city, MI +station = ('klwa', 0.0019590323968299577) +zone = ('miz071', 0.0016213029939228757) + +[fips2605170500] +centroid = (0.76854294285228586, -1.4756886932779154) +description = Sage township, MI +station = ('khtl', 0.0056983579215008021) +zone = ('miz041', 0.0021778671684374172) + +[fips2605172240] +centroid = (0.76887242610847739, -1.4718140274319029) +description = Secord township, MI +station = ('khtl', 0.006687445210775295) +zone = ('miz041', 0.0013223629163915287) + +[fips2605173140] +centroid = (0.76995950443308214, -1.4754520964445148) +description = Sherman township, MI +station = ('khtl', 0.0044026327173941728) +zone = ('miz041', 0.0028703367704598754) + +[fips2605179860] +centroid = (0.7653459010883602, -1.4732769100510468) +description = Tobacco township, MI +station = ('kikw', 0.0038498746582316876) +zone = ('miz041', 0.0024540744651410525) + +[fips26053] +centroid = (0.81136960514491996, -1.5671017091145198) +description = Gogebic County, MI +station = ('kiwd', 0.0042189379612508834) +zone = ('miz009', 0.0017843715176791872) + +[fips2605300000] +centroid = (0.81674918113846462, -1.5733105084889796) +description = County subdivisions not defined, MI +station = ('kiwd', 0.0045910979193739057) +zone = ('miz009', 0.0086478086470166554) + +[fips2605307960] +centroid = (0.81118608377407275, -1.5716669493856688) +description = Bessemer city, MI +station = ('kiwd', 0.0013975818917076879) +zone = ('wiz004', 0.0044119237235725212) + +[fips2605307980] +centroid = (0.80968304112884038, -1.5694545351192557) +description = Bessemer township, MI +station = ('kiwd', 0.003538600686552961) +zone = ('miz009', 0.0027697584819598624) + +[fips2605320] +centroid = (0.81638414552540994, -1.5446378032049035) +description = Baraga village, MI +station = ('kcmx', 0.0068328089900384255) +zone = ('miz004', 0.0025539735162962329) + +[fips2605326340] +centroid = (0.80952564733689536, -1.5723326877755497) +description = Erwin township, MI +station = ('kiwd', 0.0026899645147053014) +zone = ('wiz004', 0.0027996945664344203) + +[fips2605341060] +centroid = (0.81075343410579592, -1.5734174448122491) +description = Ironwood city, MI +station = ('kiwd', 0.0014209349526280611) +zone = ('wiz004', 0.0035031609719938066) + +[fips2605341080] +centroid = (0.812969339030713, -1.5735809996164534) +description = Ironwood charter township, MI +station = ('kiwd', 0.00086846130834037933) +zone = ('wiz004', 0.0056279984958633031) + +[fips2605351560] +centroid = (0.80956713381321532, -1.5635033114358055) +description = Marenisco township, MI +station = ('kd25', 0.0058450187694724176) +zone = ('miz009', 0.0014152999989409021) + +[fips2605382780] +centroid = (0.81116164916454492, -1.569636380974021) +description = Wakefield city, MI +station = ('kiwd', 0.0025994281848254479) +zone = ('miz009', 0.0031062851400074395) + +[fips2605382800] +centroid = (0.81241720412184459, -1.568573283473339) +description = Wakefield township, MI +station = ('kiwd', 0.0031403294477581885) +zone = ('miz009', 0.0032386867026899992) + +[fips2605384380] +centroid = (0.80724366424649796, -1.5570208444346334) +description = Watersmeet township, MI +station = ('klnl', 0.0017064043248552609) +zone = ('wiz005', 0.0050547005894891134) + +[fips2605470] +centroid = (0.75359377892993396, -1.4540920938334925) +description = Barnes Lake-Millers Lake CDP, MI +station = ('kd95', 0.0020135910904457897) +zone = ('miz062', 0.0019233338893360002) + +[fips26055] +centroid = (0.78048834277207801, -1.4931963353507658) +description = Grand Traverse County, MI +station = ('ktvc', 0.00030100258899991576) +zone = ('miz026', 0.0008365037158744172) + +[fips2605500] +centroid = (0.73224683138171653, -1.5094930679885825) +description = Baroda village, MI +station = ('kbeh', 0.0032511947842178159) +zone = ('miz077', 0.00097712827340782661) + +[fips2605500000] +centroid = (0.78423683876646377, -1.4928579683686813) +description = County subdivisions not defined, MI +station = ('ktvc', 0.0035155584145791286) +zone = ('miz020', 0.0034332526979269609) + +[fips2605500200] +centroid = (0.78176485913369409, -1.4915993241786059) +description = Acme township, MI +station = ('ktvc', 0.0016472803905499586) +zone = ('miz026', 0.0024270828643000956) + +[fips2605508880] +centroid = (0.77888482152180816, -1.4941525663413484) +description = Blair township, MI +station = ('ktvc', 0.0019307103287188223) +zone = ('miz026', 0.00098586053533660065) + +[fips2605523800] +centroid = (0.7799366965554001, -1.4924250219944317) +description = East Bay township, MI +station = ('ktvc', 0.0010731834081138911) +zone = ('miz026', 0.00067436844347704703) + +[fips2605528020] +centroid = (0.77763445019238697, -1.490418626392924) +description = Fife Lake township, MI +station = ('ktvc', 0.0037721651909960689) +zone = ('miz026', 0.0028717429966842825) + +[fips2605531580] +centroid = (0.78053190619020785, -1.4947307066560716) +description = Garfield charter township, MI +station = ('ktvc', 0.00095500436287864496) +zone = ('miz026', 0.0013507435391076615) + +[fips2605534240] +centroid = (0.77771475279127122, -1.4969070275135532) +description = Grant township, MI +station = ('ktvc', 0.0039154170357984883) +zone = ('miz025', 0.0033967732159657757) + +[fips2605534960] +centroid = (0.7791680710061144, -1.4967105208930711) +description = Green Lake township, MI +station = ('ktvc', 0.0028206154351438622) +zone = ('miz025', 0.0032368654511429756) + +[fips2605549240] +centroid = (0.7804133634274123, -1.4965952244426843) +description = Long Lake township, MI +station = ('ktvc', 0.0022800654651190201) +zone = ('miz026', 0.00247175476891664) + +[fips2605552480] +centroid = (0.77776925942381103, -1.4944434429144857) +description = Mayfield township, MI +station = ('ktvc', 0.0030624956441162154) +zone = ('miz026', 0.0020571377191365911) + +[fips2605562320] +centroid = (0.77802217508571758, -1.492245305441354) +description = Paradise township, MI +station = ('ktvc', 0.0028471735341225653) +zone = ('miz026', 0.0017923943161242842) + +[fips2605563340] +centroid = (0.78348357211459552, -1.4926468533423602) +description = Peninsula township, MI +station = ('ktvc', 0.0027939949330266418) +zone = ('miz020', 0.0036739400691258128) + +[fips2605580] +centroid = (0.76360613943667976, -1.4860531216013733) +description = Barryton village, MI +station = ('krqb', 0.0045626047864797958) +zone = ('miz045', 0.0029791353502051855) + +[fips2605580340] +centroid = (0.78110906912054978, -1.4940242846413267) +description = Traverse City city, MI +station = ('ktvc', 0.00056345779202524688) +zone = ('miz026', 0.0015464390059152244) + +[fips2605581320] +centroid = (0.77917810664931331, -1.490760169874247) +description = Union township, MI +station = ('ktvc', 0.0024551683372493844) +zone = ('miz026', 0.0018588887890755121) + +[fips2605587040] +centroid = (0.78124241227540214, -1.4903639801340443) +description = Whitewater township, MI +station = ('ktvc', 0.002226976187183941) +zone = ('miz026', 0.0026142412363281899) + +[fips2605660] +centroid = (0.73856453930150057, -1.4618158739052682) +description = Barton Hills village, MI +station = ('karb', 0.0017463588694226703) +zone = ('miz075', 0.0015349138221507305) + +[fips26057] +centroid = (0.75559362954674669, -1.4766304031291215) +description = Gratiot County, MI +station = ('kamn', 0.0011750740699513359) +zone = ('miz052', 6.6754208544964961e-06) + +[fips2605701540] +centroid = (0.75712587155036493, -1.4775243084121152) +description = Alma city, MI +station = ('kamn', 0.0010929073212147301) +zone = ('miz052', 0.0016579239486142375) + +[fips2605703260] +centroid = (0.75628146380495764, -1.4778833575458354) +description = Arcada township, MI +station = ('kamn', 0.00022312356697433021) +zone = ('miz052', 0.00113701322930679) + +[fips2605708020] +centroid = (0.75792474365558782, -1.4755505504676198) +description = Bethany township, MI +station = ('kamn', 0.0025832654180692541) +zone = ('miz052', 0.0024540394670649556) + +[fips2605725120] +centroid = (0.75330503165848406, -1.4734984970528802) +description = Elba township, MI +station = ('kamn', 0.0043603434612979834) +zone = ('miz052', 0.0032375517155487014) + +[fips2605725880] +centroid = (0.75639403754171131, -1.475444713701779) +description = Emerson township, MI +station = ('kamn', 0.0019381881821053971) +zone = ('miz052', 0.0011734128657393307) + +[fips2605731080] +centroid = (0.7532483259110867, -1.4776748779666848) +description = Fulton township, MI +station = ('kamn', 0.002877459912989187) +zone = ('miz052', 0.0024714801142637502) + +[fips2605736160] +centroid = (0.75476819353030844, -1.4734719156883722) +description = Hamilton township, MI +station = ('kamn', 0.0036135414159582375) +zone = ('miz052', 0.0024470076150632414) + +[fips2605741340] +centroid = (0.75559350737369901, -1.4765233969926814) +description = Ithaca city, MI +station = ('kamn', 0.001245523425115925) +zone = ('miz052', 7.9561515332120732e-05) + +[fips2605744080] +centroid = (0.75634054320013766, -1.473549582840086) +description = Lafayette township, MI +station = ('kamn', 0.0033039847744905774) +zone = ('miz052', 0.0023620566955761526) + +[fips2605757040] +centroid = (0.75474630710148838, -1.4776486805746123) +description = Newark township, MI +station = ('kamn', 0.0014000200192547895) +zone = ('miz052', 0.0011299353202484355) + +[fips2605757360] +centroid = (0.75482271761614084, -1.4796311826186603) +description = New Haven township, MI +station = ('kamn', 0.0017125137529762438) +zone = ('miz052', 0.002317821872553325) + +[fips2605758800] +centroid = (0.75328661843487554, -1.479638896973954) +description = North Shade township, MI +station = ('kamn', 0.0030435845993243373) +zone = ('miz052', 0.0031861939181444714) + +[fips2605758880] +centroid = (0.75474049515507935, -1.4755065681704698) +description = North Star township, MI +station = ('kamn', 0.0023212657408978746) +zone = ('miz052', 0.0011878406985443922) + +[fips2605764360] +centroid = (0.75799073455460575, -1.4778027931475635) +description = Pine River township, MI +station = ('kamn', 0.0018909747422607018) +zone = ('miz052', 0.0025375231866512755) + +[fips2605771000] +centroid = (0.75762173704414904, -1.4767445476622019) +description = St. Louis city, MI +station = ('kamn', 0.0017963826421448384) +zone = ('miz052', 0.0020232264073685251) + +[fips2605772580] +centroid = (0.7577915575803682, -1.4796279712128366) +description = Seville township, MI +station = ('kamn', 0.0020226330075909875) +zone = ('miz052', 0.0030897592250639454) + +[fips2605777300] +centroid = (0.75634342299340351, -1.4797870754274485) +description = Sumner township, MI +station = ('kamn', 0.001263022194336668) +zone = ('miz052', 0.0024127512506380865) + +[fips2605784080] +centroid = (0.75325385860481564, -1.475485833658956) +description = Washington township, MI +station = ('kamn', 0.0034254562264079171) +zone = ('miz052', 0.0024905858437885642) + +[fips2605786620] +centroid = (0.7578827335804923, -1.4734062913084973) +description = Wheeler township, MI +station = ('kamn', 0.0038321192060253371) +zone = ('miz052', 0.003272897786543352) + +[fips2605880] +centroid = (0.74733190409292127, -1.4740079935681223) +description = Bath CDP, MI +station = ('klan', 0.001763875803700383) +zone = ('miz059', 0.0028756598441760906) + +[fips26059] +centroid = (0.73067292836885311, -1.477288723869681) +description = Hillsdale County, MI +station = ('kjym', 0.0012357163136134939) +zone = ('miz081', 0.00076027423208944154) + +[fips2605900300] +centroid = (0.73206116325588944, -1.475425986318905) +description = Adams township, MI +station = ('kjym', 0.00076155363715014936) +zone = ('miz081', 0.0012315772625585942) + +[fips2605901320] +centroid = (0.73207685376586473, -1.4793220848081319) +description = Allen township, MI +station = ('kjym', 0.0022844440444630596) +zone = ('miz081', 0.0023741624042873562) + +[fips2605902020] +centroid = (0.72808617588447233, -1.476590714341931) +description = Amboy township, MI +station = ('kjym', 0.003586578910813184) +zone = ('ohz001', 0.0027284112415390449) + +[fips2605912700] +centroid = (0.73067292836885311, -1.477288723869681) +description = Cambria township, MI +station = ('kjym', 0.0012357163136134939) +zone = ('miz081', 0.00076027423208944154) + +[fips2605912780] +centroid = (0.72879179504776115, -1.4796146019907663) +description = Camden township, MI +station = ('kjym', 0.0037889286841327947) +zone = ('miz081', 0.0032986357539782985) + +[fips2605920] +centroid = (0.73825989208056497, -1.4875313282113498) +description = Battle Creek city, MI +station = ('kbtl', 0.00026803011074699322) +zone = ('miz073', 0.0030320401114515899) + +[fips2605927580] +centroid = (0.73259170844191057, -1.477419571203703) +description = Fayette township, MI +station = ('kjym', 0.0012442718782452854) +zone = ('miz081', 0.0016825984040907591) + +[fips2605938460] +centroid = (0.7317888220794081, -1.4771883499843987) +description = Hillsdale city, MI +station = ('kjym', 0.00067127286519778418) +zone = ('miz081', 0.0009077256058768622) + +[fips2605938480] +centroid = (0.73157641550944041, -1.477618695818063) +description = Hillsdale township, MI +station = ('kjym', 0.00098437864335754123) +zone = ('miz081', 0.0010168260923515613) + +[fips2605941620] +centroid = (0.73045416880040803, -1.47547394796675) +description = Jefferson township, MI +station = ('kjym', 0.0013596112652935523) +zone = ('miz081', 0.00094589303773138188) + +[fips2605947980] +centroid = (0.73375285853996997, -1.4792530221296305) +description = Litchfield city, MI +station = ('kjym', 0.0030279430340955766) +zone = ('miz081', 0.0034002234671451654) + +[fips2605948000] +centroid = (0.73343253826235144, -1.4794615889752438) +description = Litchfield township, MI +station = ('kjym', 0.0029394390956879964) +zone = ('miz081', 0.003260247945282515) + +[fips2605955640] +centroid = (0.73342154268806392, -1.4751748683461281) +description = Moscow township, MI +station = ('kjym', 0.0019448288751842395) +zone = ('miz081', 0.0025197056820833149) + +[fips2605964620] +centroid = (0.73052162577599777, -1.4733769697770638) +description = Pittsford township, MI +station = ('kjym', 0.0024595733558186159) +zone = ('miz081', 0.0023383600209928115) + +[fips2605967120] +centroid = (0.72911429698694452, -1.4754116048058687) +description = Ransom township, MI +station = ('kjym', 0.0026366181977271479) +zone = ('miz081', 0.0021061340162937276) + +[fips2605967500] +centroid = (0.73023848101144662, -1.4791286674204258) +description = Reading city, MI +station = ('kjym', 0.0025436127726240331) +zone = ('miz081', 0.0021813569303160197) + +[fips2605967520] +centroid = (0.73055391436715955, -1.479550914926361) +description = Reading township, MI +station = ('kjym', 0.0026626111678853485) +zone = ('miz081', 0.0023853666832827814) + +[fips2605971980] +centroid = (0.73367152619682696, -1.4773024421576018) +description = Scipio township, MI +station = ('kjym', 0.0021389209102514323) +zone = ('miz081', 0.0026721220157904218) + +[fips2605974560] +centroid = (0.73357939026561414, -1.4734271479930585) +description = Somerset township, MI +station = ('kjym', 0.0028680227018546105) +zone = ('miz081', 0.0033497704122231126) + +[fips2605986540] +centroid = (0.73204142358204927, -1.4733016239132553) +description = Wheatland township, MI +station = ('kjym', 0.002262878793689077) +zone = ('miz081', 0.0025161419135522585) + +[fips2605988300] +centroid = (0.72910614629933779, -1.477266697814521) +description = Woodbridge township, MI +station = ('kjym', 0.0026592046462944148) +zone = ('miz081', 0.0020708085306978563) + +[fips2605988780] +centroid = (0.72886317901416764, -1.4732938397447912) +description = Wright township, MI +station = ('kjym', 0.0035884972056626353) +zone = ('miz081', 0.0032192489265915176) + +[fips2606020] +centroid = (0.76079010304846451, -1.4641291507491541) +description = Bay City city, MI +station = ('kmbs', 0.002656504783297038) +zone = ('miz048', 0.0024277905423933958) + +[fips26061] +centroid = (0.82027516510651366, -1.5472704403953195) +description = Houghton County, MI +station = ('kcmx', 0.0035575216812070822) +zone = ('miz003', 0.0010265816101388337) + +[fips2606100000] +centroid = (0.82628429881454502, -1.5485012291305331) +description = County subdivisions not defined, MI +station = ('kcmx', 0.0041787421621146464) +zone = ('miz003', 0.0051952331448178726) + +[fips2606100320] +centroid = (0.82129892288585582, -1.5478213361204187) +description = Adams township, MI +station = ('kcmx', 0.0030539318664385444) +zone = ('miz003', 0.00075132096328853865) + +[fips2606112600] +centroid = (0.82480055951083953, -1.5436503308207103) +description = Calumet charter township, MI +station = ('kcmx', 0.0016518739260669942) +zone = ('miz003', 0.0041356807600049254) + +[fips2606114920] +centroid = (0.82014826221660109, -1.5451285374306867) +description = Chassell township, MI +station = ('kcmx', 0.0031137661102677984) +zone = ('miz003', 0.0015345849722772989) + +[fips2606120] +centroid = (0.76510248001758452, -1.4550569467505801) +description = Bay Port CDP, MI +station = ('kbax', 0.0049238699966144524) +zone = ('miz049', 0.0043983547665925205) + +[fips2606123340] +centroid = (0.81198099398189361, -1.5499846019150958) +description = Duncan township, MI +station = ('klnl', 0.0080784835055579471) +zone = ('miz084', 0.0014712374835038633) + +[fips2606125660] +centroid = (0.81844146983449084, -1.5505826040767063) +description = Elm River township, MI +station = ('kcmx', 0.0064002391326977472) +zone = ('miz003', 0.0038366664446482287) + +[fips2606130300] +centroid = (0.82304885980707554, -1.5451171404306712) +description = Franklin township, MI +station = ('kcmx', 0.00056291396088182567) +zone = ('miz003', 0.0021207209213487117) + +[fips2606136300] +centroid = (0.82265029641909015, -1.5463468296084566) +description = Hancock city, MI +station = ('kcmx', 0.0014856046534208183) +zone = ('miz003', 0.0014417063733829856) + +[fips2606136320] +centroid = (0.82385115275763232, -1.5462659859575041) +description = Hancock township, MI +station = ('kcmx', 0.0014648285020849262) +zone = ('miz003', 0.0026380229410518066) + +[fips2606139360] +centroid = (0.82222810127303259, -1.5458176632325442) +description = Houghton city, MI +station = ('kcmx', 0.001414750683894965) +zone = ('miz003', 0.001171854399716481) + +[fips2606144220] +centroid = (0.81510803058952175, -1.5496039979651133) +description = Laird township, MI +station = ('kcmx', 0.0088708337364818562) +zone = ('miz084', 0.0017099880678179799) + +[fips2606161260] +centroid = (0.82366981304835007, -1.544306941138603) +description = Osceola township, MI +station = ('kcmx', 0.00045635689641173254) +zone = ('miz003', 0.0029407236715866072) + +[fips2606165540] +centroid = (0.81975489990978667, -1.5469760033505078) +description = Portage charter township, MI +station = ('kcmx', 0.0039015503977240925) +zone = ('miz003', 0.0014866614920860677) + +[fips2606166680] +centroid = (0.82301423247471595, -1.5462674345807834) +description = Quincy township, MI +station = ('kcmx', 0.001335372270785243) +zone = ('miz003', 0.0018094819518139414) + +[fips2606171840] +centroid = (0.82373395389836079, -1.540990152334698) +description = Schoolcraft township, MI +station = ('kcmx', 0.0023259062779189335) +zone = ('miz003', 0.004634351312829227) + +[fips2606176200] +centroid = (0.82189453394639145, -1.5494884222620462) +description = Stanton township, MI +station = ('kcmx', 0.0037521152604444953) +zone = ('miz003', 0.0019967561635472228) + +[fips2606180120] +centroid = (0.82206712955612116, -1.5425570391239685) +description = Torch Lake township, MI +station = ('kcmx', 0.0016618738000291544) +zone = ('miz003', 0.0029575764314469146) + +[fips2606190] +centroid = (0.79169566040449413, -1.4854767789757797) +description = Bay Shore CDP, MI +station = ('kmgn', 0.0026792925843117355) +zone = ('miz019', 0.0010469722059897799) + +[fips2606260] +centroid = (0.7921306313606763, -1.4822980806222925) +description = Bay View CDP, MI +station = ('kmgn', 0.00072230930646503485) +zone = ('miz016', 0.0023997658158949916) + +[fips26063] +centroid = (0.76633246590134252, -1.4461282437231051) +description = Huron County, MI +station = ('kp58', 0.0020337425826199955) +zone = ('miz049', 0.0024187187200228051) + +[fips2606300000] +centroid = (0.76685849068460121, -1.438631199374456) +description = County subdivisions not defined, MI +station = ('kp58', 0.0048770311888864971) +zone = ('miz049', 0.007664292740495) + +[fips2606304740] +centroid = (0.76452097121740514, -1.4485935387448394) +description = Bad Axe city, MI +station = ('kbax', 0.00043219247961886738) +zone = ('miz049', 0.00057845327847458631) + +[fips2606308420] +centroid = (0.76312702910371488, -1.4475344205948517) +description = Bingham township, MI +station = ('kbax', 0.0011621954418083171) +zone = ('miz049', 0.0021683039223682867) + +[fips2606309060] +centroid = (0.76624094083536798, -1.4456283116121638) +description = Bloomfield township, MI +station = ('kp58', 0.0020264785997476404) +zone = ('miz049', 0.0026875833636905719) + +[fips2606310940] +centroid = (0.7629545033071552, -1.4537903438591153) +description = Brookfield township, MI +station = ('kbax', 0.004084498182589753) +zone = ('miz049', 0.0040613830178773671) + +[fips2606313780] +centroid = (0.76643353791832558, -1.4553484865488333) +description = Caseville township, MI +station = ('kbax', 0.0055384598196813158) +zone = ('miz049', 0.0048127515316179923) + +[fips2606314600] +centroid = (0.76616046370355861, -1.4516342164610792) +description = Chandler township, MI +station = ('kbax', 0.0031151401080110213) +zone = ('miz049', 0.002232190594849946) + +[fips2606317140] +centroid = (0.76456338271822855, -1.4497767672579367) +description = Colfax township, MI +station = ('kbax', 0.0011073818627540782) +zone = ('miz049', 0.00075497710058069318) + +[fips2606323540] +centroid = (0.76780822905036639, -1.4478489638326462) +description = Dwight township, MI +station = ('kp58', 0.0020000563315895102) +zone = ('miz049', 0.0028860539179946694) + +[fips2606327120] +centroid = (0.76442080677163315, -1.4569092821390144) +description = Fairhaven township, MI +station = ('kcfs', 0.005936644008096994) +zone = ('miz049', 0.0057687021094899359) + +[fips2606333080] +centroid = (0.76706536456083996, -1.4435710920228382) +description = Gore township, MI +station = ('kp58', 0.0016224286317789813) +zone = ('miz049', 0.0043821564955502362) + +[fips2606334260] +centroid = (0.76312996125685817, -1.4516485979741154) +description = Grant township, MI +station = ('kbax', 0.0025659525043135855) +zone = ('miz049', 0.0027200502339816092) + +[fips2606336460] +centroid = (0.76523678310352561, -1.4425955925973135) +description = Harbor Beach city, MI +station = ('kp58', 0.0035117220679783054) +zone = ('miz049', 0.0045950743927467832) + +[fips2606339960] +centroid = (0.76755238123531644, -1.4497033412563052) +description = Hume township, MI +station = ('kbax', 0.0035644633053963618) +zone = ('miz049', 0.0025733036807706901) + +[fips2606340020] +centroid = (0.76759885935329719, -1.4455809782828497) +description = Huron township, MI +station = ('kp58', 0.0007139095905337896) +zone = ('miz049', 0.0035353111672233885) + +[fips2606344300] +centroid = (0.76770460885267555, -1.4515331618973886) +description = Lake township, MI +station = ('kbax', 0.0042479954741152879) +zone = ('miz049', 0.003249742745182525) + +[fips2606347640] +centroid = (0.766290455826247, -1.4475200739884004) +description = Lincoln township, MI +station = ('kbax', 0.0022558879384362417) +zone = ('miz049', 0.0016287847153439786) + +[fips2606350360] +centroid = (0.76576034697253881, -1.4537697838805266) +description = McKinley township, MI +station = ('kbax', 0.0042261437088095995) +zone = ('miz049', 0.0035432273728924972) + +[fips2606352600] +centroid = (0.76596945487022028, -1.4498002593896684) +description = Meade township, MI +station = ('kbax', 0.0021176215993677998) +zone = ('miz049', 0.0011132812037889534) + +[fips2606360] +centroid = (0.76202097905014099, -1.4817790197027494) +description = Beal City CDP, MI +station = ('kmop', 0.0022366404400629199) +zone = ('miz046', 0.00075457676097633573) + +[fips2606360520] +centroid = (0.7644874608957668, -1.4515158133246238) +description = Oliver township, MI +station = ('kbax', 0.0022996002711867429) +zone = ('miz049', 0.0019237357865605545) + +[fips2606362360] +centroid = (0.76332316920505394, -1.4456394642660841) +description = Paris township, MI +station = ('kbax', 0.0021277396609963354) +zone = ('miz049', 0.002946024359582502) + +[fips2606365180] +centroid = (0.76901854507345435, -1.4477517838998952) +description = Pointe Aux Barques township, MI +station = ('kp58', 0.0020390655044748409) +zone = ('miz049', 0.004077039363695697) + +[fips2606365700] +centroid = (0.76922332455459086, -1.4470681384318891) +description = Port Austin township, MI +station = ('kp58', 0.0017061160898988609) +zone = ('miz049', 0.0044038432473495273) + +[fips2606370140] +centroid = (0.76651712173620357, -1.443177642449561) +description = Rubicon township, MI +station = ('kp58', 0.0022211585042630662) +zone = ('miz049', 0.0044237928084017936) + +[fips2606371260] +centroid = (0.76475964499261539, -1.4430407737296194) +description = Sand Beach township, MI +station = ('kp58', 0.0037886616776816478) +zone = ('miz049', 0.0042794286927152316) + +[fips2606372200] +centroid = (0.76300319799328575, -1.4556776032858818) +description = Sebewaing township, MI +station = ('kcfs', 0.0045371858055525847) +zone = ('miz054', 0.0044143832734160398) + +[fips2606373040] +centroid = (0.76321504605789281, -1.4497980253682259) +description = Sheridan township, MI +station = ('kbax', 0.0013713348501551202) +zone = ('miz049', 0.0019182493350214458) + +[fips2606373160] +centroid = (0.76323569330294405, -1.4428838511765727) +description = Sherman township, MI +station = ('kbax', 0.0040608631915582619) +zone = ('miz049', 0.0047417605425657105) + +[fips2606373880] +centroid = (0.7647931727675461, -1.4455941380654096) +description = Sigel township, MI +station = ('kbax', 0.0021144739520150189) +zone = ('miz049', 0.0024404165235038626) + +[fips2606382140] +centroid = (0.76477732517793806, -1.4474995314631045) +description = Verona township, MI +station = ('kbax', 0.00091009725400578224) +zone = ('miz049', 0.001084887350572614) + +[fips2606387960] +centroid = (0.76460272243956851, -1.4537265346216623) +description = Winsor township, MI +station = ('kbax', 0.0038956890405548311) +zone = ('miz049', 0.0034661100706341093) + +[fips2606430] +centroid = (0.78052712398805735, -1.4827646943978132) +description = Bear Lake CDP, MI +station = ('kgov', 0.0029072552060966225) +zone = ('miz027', 0.0017794756899229497) + +[fips2606460] +centroid = (0.77527549808197649, -1.503523518347986) +description = Bear Lake village, MI +station = ('kmbl', 0.0029770581710178872) +zone = ('miz031', 0.0018743944943937195) + +[fips26065] +centroid = (0.74357194128534998, -1.4726008044054093) +description = Ingham County, MI +station = ('ktew', 0.00091539689660887294) +zone = ('miz067', 0.0001123271987671206) + +[fips2606500800] +centroid = (0.74408388126154479, -1.4735046929717248) +description = Alaiedon township, MI +station = ('ktew', 0.0011703031061945149) +zone = ('miz067', 0.00091419845533743048) + +[fips2606504240] +centroid = (0.74273725502387611, -1.4756177805504067) +description = Aurelius township, MI +station = ('ktew', 0.0015953693402148653) +zone = ('miz067', 0.0023387038219432545) + +[fips2606511640] +centroid = (0.7412556799284431, -1.4714692725447562) +description = Bunker Hill township, MI +station = ('ktew', 0.0022167262042569174) +zone = ('miz067', 0.0023554559427122917) + +[fips2606521420] +centroid = (0.74395931711283003, -1.4754371040662404) +description = Delhi charter township, MI +station = ('ktew', 0.0017888910007291677) +zone = ('miz067', 0.0021490158438330232) + +[fips2606524120] +centroid = (0.74589036685052912, -1.4745043826606821) +description = East Lansing city, MI +station = ('klan', 0.0015260742456085423) +zone = ('miz067', 0.0028062770616643046) + +[fips2606540640] +centroid = (0.74280661440835027, -1.4714698135968245) +description = Ingham township, MI +station = ('ktew', 0.0014735394044680184) +zone = ('miz067', 0.0010561773042322812) + +[fips2606546000] +centroid = (0.74543464392954084, -1.4756673479011633) +description = Lansing city, MI +station = ('klan', 0.0013470474935800964) +zone = ('miz067', 0.0029998891499716644) + +[fips2606546020] +centroid = (0.74591230563922672, -1.4763413766049911) +description = Lansing charter township, MI +station = ('klan', 0.00080009047476799254) +zone = ('miz059', 0.0035989766444998262) + +[fips2606547080] +centroid = (0.74413173818963452, -1.4698241600984114) +description = Leroy township, MI +station = ('kozw', 0.0029624109937773681) +zone = ('miz067', 0.0021484619677310836) + +[fips2606547180] +centroid = (0.74089825395092712, -1.4736267438463166) +description = Leslie city, MI +station = ('ktew', 0.0020192043010620548) +zone = ('miz067', 0.0026714328758371594) + +[fips2606547200] +centroid = (0.74128599629755021, -1.4733322893482128) +description = Leslie township, MI +station = ('ktew', 0.0016308859973289576) +zone = ('miz067', 0.0022401377341822004) + +[fips2606549040] +centroid = (0.74584804261616822, -1.4696782680262372) +description = Locke township, MI +station = ('kozw', 0.0033843716764974585) +zone = ('miz067', 0.0032110783963559151) + +[fips2606552180] +centroid = (0.74317329063090176, -1.473795866250835) +description = Mason city, MI +station = ('ktew', 0.00035578421378922682) +zone = ('miz067', 0.00092784347330591185) + +[fips2606553140] +centroid = (0.7456970018227006, -1.4734021025182924) +description = Meridian charter township, MI +station = ('klan', 0.002328648090307943) +zone = ('miz067', 0.0023143412914787475) + +[fips2606560800] +centroid = (0.74132777947984307, -1.4756339946591579) +description = Onondaga township, MI +station = ('ktew', 0.0022519341795762646) +zone = ('miz067', 0.0030906750451061564) + +[fips2606576580] +centroid = (0.74114560201251989, -1.4695852943369836) +description = Stockbridge township, MI +station = ('ktew', 0.0033623789207130909) +zone = ('miz067', 0.0032063665327749227) + +[fips2606582220] +centroid = (0.74246482658093227, -1.4733499695335355) +description = Vevay township, MI +station = ('ktew', 0.0004570561038270056) +zone = ('miz067', 0.0011388942089853734) + +[fips2606586520] +centroid = (0.74414152948673828, -1.4716297904760622) +description = Wheatfield township, MI +station = ('ktew', 0.0018254007998506983) +zone = ('miz067', 0.0009857525153206309) + +[fips2606586900] +centroid = (0.74285647846507985, -1.4696040915330275) +description = White Oak township, MI +station = ('kozw', 0.0030339022191873477) +zone = ('miz067', 0.0022849226317088571) + +[fips2606587420] +centroid = (0.74496495837453669, -1.4710255923956068) +description = Williamston city, MI +station = ('ktew', 0.0027255824207587562) +zone = ('miz067', 0.0018980031888982873) + +[fips2606587440] +centroid = (0.74590293322114343, -1.4715250358143577) +description = Williamstown township, MI +station = ('ktew', 0.003312124716439933) +zone = ('miz067', 0.0025673095876707843) + +[fips2606660] +centroid = (0.76586206476134511, -1.4745881235581926) +description = Beaverton city, MI +station = ('kikw', 0.0048027578476351439) +zone = ('miz041', 0.0022901378888721255) + +[fips26067] +centroid = (0.74952553861658289, -1.4848173237712063) +description = Ionia County, MI +station = ('ky70', 0.00019370298939737555) +zone = ('miz058', 1.3236979194764386e-05) + +[fips2606706900] +centroid = (0.75217555928634849, -1.4875969874978101) +description = Belding city, MI +station = ('ky70', 0.0035120492754632301) +zone = ('miz058', 0.0033268378419997816) + +[fips2606707700] +centroid = (0.74884723385608776, -1.4858398947266573) +description = Berlin township, MI +station = ('ky70', 0.0011007818153360581) +zone = ('miz058', 0.001007779333264811) + +[fips2606709680] +centroid = (0.74863760235963073, -1.4879957428720132) +description = Boston township, MI +station = ('ky70', 0.0026304226811988043) +zone = ('miz058', 0.0024840738522767347) + +[fips2606712840] +centroid = (0.74735696702097987, -1.4879289316682469) +description = Campbell township, MI +station = ('ky70', 0.0032233663445961152) +zone = ('miz058', 0.0031443289661277282) + +[fips2606719720] +centroid = (0.74711202751375494, -1.481797363113188) +description = Danby township, MI +station = ('ky70', 0.0030967367418350393) +zone = ('miz058', 0.0032875877294292707) + +[fips2606724220] +centroid = (0.75036732836811215, -1.4860024721464806) +description = Easton township, MI +station = ('ky70', 0.0013927604910594961) +zone = ('miz058', 0.0011954600953072252) + +[fips2606740860] +centroid = (0.750087028490242, -1.4848324557758212) +description = Ionia city, MI +station = ('ky70', 0.00066927669639970397) +zone = ('miz058', 0.00055363605235702695) + +[fips2606740880] +centroid = (0.75034657640330604, -1.4837185342873209) +description = Ionia township, MI +station = ('ky70', 0.0010993804826971345) +zone = ('miz058', 0.0011510655111229052) + +[fips2606742520] +centroid = (0.75034381878308787, -1.4878851239040218) +description = Keene township, MI +station = ('ky70', 0.0025824071532269109) +zone = ('miz058', 0.0023765994888687628) + +[fips2606749920] +centroid = (0.75035739744466834, -1.4817397323412873) +description = Lyons township, MI +station = ('ky70', 0.0022681147791469712) +zone = ('miz058', 0.0024079788900973182) + +[fips2606758720] +centroid = (0.75169522722290705, -1.4818983129571233) +description = North Plains township, MI +station = ('ky70', 0.0029839346250705588) +zone = ('miz058', 0.0030455755114856759) + +[fips2606760200] +centroid = (0.74711548326567401, -1.4860328059688801) +description = Odessa township, MI +station = ('ky70', 0.0025616295279131608) +zone = ('miz058', 0.0025730945527549613) + +[fips2606760920] +centroid = (0.748666208306071, -1.4840426419294162) +description = Orange township, MI +station = ('ky70', 0.00087104835252105176) +zone = ('miz058', 0.001042135788353661) + +[fips2606761160] +centroid = (0.75182427686779951, -1.4858775589319153) +description = Orleans township, MI +station = ('ky70', 0.002562869211644947) +zone = ('miz058', 0.0024151201549809541) + +[fips2606761580] +centroid = (0.75180579383102097, -1.4880321504402099) +description = Otisco township, MI +station = ('ky70', 0.0034583016927897054) +zone = ('miz058', 0.0032619101006681984) + +[fips2606765860] +centroid = (0.7482041672931905, -1.4817564525955214) +description = Portland city, MI +station = ('ky70', 0.0024097221259676335) +zone = ('miz058', 0.0026155608443436504) + +[fips2606765880] +centroid = (0.74888196590820244, -1.4818109592280611) +description = Portland township, MI +station = ('ky70', 0.0021021354596207822) +zone = ('miz058', 0.0023059314026559158) + +[fips2606769440] +centroid = (0.75186672327520798, -1.4838850212446684) +description = Ronald township, MI +station = ('ky70', 0.0024746369743542255) +zone = ('miz058', 0.0024338827295133213) + +[fips2606772120] +centroid = (0.74712155701147087, -1.4839591453780008) +description = Sebewa township, MI +station = ('ky70', 0.0023665541836388514) +zone = ('miz058', 0.0024951938752472507) + +[fips2606820] +centroid = (0.75207052537196339, -1.4609196996942466) +description = Beecher CDP, MI +station = ('kfnt', 0.0022372383550365053) +zone = ('miz061', 0.0012005286850022146) + +[fips2606880] +centroid = (0.74693360250432361, -1.5031379402096354) +description = Beechwood CDP, MI +station = ('kbiv', 0.00085960470325651729) +zone = ('miz056', 0.0033067354443827484) + +[fips26069] +centroid = (0.77369541660356089, -1.4459956336065385) +description = Iosco County, MI +station = ('kp58', 0.0054946337452167386) +zone = ('miz049', 0.0089179955312878416) + +[fips2606900] +centroid = (0.75217555928634849, -1.4875969874978101) +description = Belding city, MI +station = ('ky70', 0.0035120492754632301) +zone = ('miz058', 0.0033268378419997816) + +[fips2606900000] +centroid = (0.77369541660356089, -1.4459956336065385) +description = County subdivisions not defined, MI +station = ('kp58', 0.0054946337452167386) +zone = ('miz049', 0.0089179955312878416) + +[fips2606900760] +centroid = (0.7714573110905586, -1.4590559498525044) +description = Alabaster township, MI +station = ('kosc', 0.0052128141368430322) +zone = ('miz036', 0.0027411821893182486) + +[fips2606904300] +centroid = (0.77470323952683251, -1.455273123231732) +description = Au Sable charter township, MI +station = ('kosc', 0.0011101033326550375) +zone = ('miz036', 0.0032279089374999755) + +[fips2606904920] +centroid = (0.77354100732463704, -1.4568805540195262) +description = Baldwin township, MI +station = ('kosc', 0.0026192503206594691) +zone = ('miz036', 0.0021245113170653687) + +[fips2606911740] +centroid = (0.77148331649641322, -1.4629720847215444) +description = Burleigh township, MI +station = ('kosc', 0.0071387570250625483) +zone = ('miz042', 0.0025607841074970694) + +[fips2606924420] +centroid = (0.77302034070218206, -1.4570666584776666) +description = East Tawas city, MI +station = ('kosc', 0.0031392131443731953) +zone = ('miz036', 0.0022144542472309642) + +[fips2606934280] +centroid = (0.7731470690591693, -1.4610695711171156) +description = Grant township, MI +station = ('kosc', 0.0050707903658434401) +zone = ('miz036', 0.0013950197343327432) + +[fips2606961340] +centroid = (0.77615955970798911, -1.4580854944285182) +description = Oscoda charter township, MI +station = ('kosc', 0.0022154999714939778) +zone = ('miz036', 0.0023197805977384031) + +[fips2606964640] +centroid = (0.77532749144039337, -1.4621225282548436) +description = Plainfield township, MI +station = ('kosc', 0.005091244071696973) +zone = ('miz036', 0.0020760632261359411) + +[fips2606967960] +centroid = (0.7729125491675789, -1.4628835267152982) +description = Reno township, MI +station = ('kosc', 0.0063172941875492836) +zone = ('miz036', 0.0025804083733137239) + +[fips2606973180] +centroid = (0.77157147307693141, -1.4609194378948589) +description = Sherman township, MI +station = ('kosc', 0.0059718411883460092) +zone = ('miz036', 0.002723108509118102) + +[fips2606978100] +centroid = (0.7730115267894595, -1.4589645469595778) +description = Tawas township, MI +station = ('kosc', 0.0039634016815392947) +zone = ('miz036', 0.0012672112617325697) + +[fips2606978140] +centroid = (0.77260758778737793, -1.4577510893438361) +description = Tawas City city, MI +station = ('kosc', 0.0037402147647434174) +zone = ('miz036', 0.0020955220896488546) + +[fips2606980] +centroid = (0.78490636452082141, -1.4871137581878104) +description = Bellaire village, MI +station = ('kacb', 0.00030088682200181248) +zone = ('miz021', 0.00097173145606835147) + +[fips2606987140] +centroid = (0.77202344354002794, -1.4626418858803596) +description = Whittemore city, MI +station = ('kosc', 0.0066291293030629854) +zone = ('miz036', 0.0029854646696654734) + +[fips2606987180] +centroid = (0.77454814956950035, -1.4576661441691414) +description = Wilber township, MI +station = ('kosc', 0.002264789934278632) +zone = ('miz036', 0.0015220549319231982) + +[fips2607020] +centroid = (0.73656240230336778, -1.4570499382234323) +description = Belleville city, MI +station = ('kyip', 0.0008527040910464973) +zone = ('miz076', 0.0029130995151662202) + +[fips2607060] +centroid = (0.74079283606410673, -1.4838564152982283) +description = Bellevue village, MI +station = ('krmy', 0.003468848311273975) +zone = ('miz073', 0.0034547733931731325) + +[fips26071] +centroid = (0.80582286151561944, -1.5453216581124201) +description = Iron County, MI +station = ('kimt', 0.0080301295989932183) +zone = ('miz010', 0.00068148139702028552) + +[fips2607105860] +centroid = (0.80713088107023401, -1.5466565033776378) +description = Bates township, MI +station = ('klnl', 0.0073629182485413476) +zone = ('miz010', 0.0012211467977096813) + +[fips2607113860] +centroid = (0.80399131299857651, -1.5468266729797071) +description = Caspian city, MI +station = ('klnl', 0.0072489669119021171) +zone = ('miz010', 0.0027590458433242515) + +[fips2607119140] +centroid = (0.80442572544939794, -1.5414999106493281) +description = Crystal Falls city, MI +station = ('kimt', 0.0053819564679550161) +zone = ('miz010', 0.0032670389176436285) + +[fips2607119150] +centroid = (0.80723081862320334, -1.5413444018129754) +description = Crystal Falls township, MI +station = ('kimt', 0.0079419905530281557) +zone = ('miz010', 0.0027340731115416375) + +[fips2607131160] +centroid = (0.80382407554965041, -1.5464493502487184) +description = Gaastra city, MI +station = ('klnl', 0.0075415931029916214) +zone = ('miz010', 0.0028175343577102477) + +[fips2607137580] +centroid = (0.80873658398206882, -1.5443128403514748) +description = Hematite township, MI +station = ('klnl', 0.0093664780908444718) +zone = ('miz010', 0.0023161584995175987) + +[fips2607140980] +centroid = (0.80452712907893886, -1.547001746956975) +description = Iron River city, MI +station = ('klnl', 0.0070318161136863483) +zone = ('miz010', 0.0023480067761362379) + +[fips2607141000] +centroid = (0.8071219275311714, -1.5496664283924571) +description = Iron River township, MI +station = ('klnl', 0.0053453945624304727) +zone = ('miz010', 0.0031866642796324965) + +[fips2607150860] +centroid = (0.80648198510763502, -1.5384716247707777) +description = Mansfield township, MI +station = ('kimt', 0.0068408043668441477) +zone = ('miz011', 0.0048301316650359513) + +[fips2607152300] +centroid = (0.80323436370198664, -1.5407992831277) +description = Mastodon township, MI +station = ('kimt', 0.0041025741342018045) +zone = ('wiz012', 0.0033447545469361805) + +[fips2607176080] +centroid = (0.80718879109481523, -1.551015916970099) +description = Stambaugh township, MI +station = ('klnl', 0.0044859768608046489) +zone = ('miz010', 0.0041166816649844083) + +[fips2607220] +centroid = (0.77906651029694085, -1.4983316350622011) +description = Bendon CDP, MI +station = ('kfks', 0.0043831412549354644) +zone = ('miz025', 0.002083304309564975) + +[fips26073] +centroid = (0.76175301865008227, -1.4807273017487903) +description = Isabella County, MI +station = ('kmop', 0.0014299557284461297) +zone = ('miz046', 0.00012239799571436957) + +[fips2607311140] +centroid = (0.7610162453596454, -1.4841708014563899) +description = Broomfield township, MI +station = ('kmop', 0.0038413602974443242) +zone = ('miz046', 0.0024888489575018119) + +[fips2607315580] +centroid = (0.76076345187078653, -1.4775760923310219) +description = Chippewa township, MI +station = ('kmop', 0.001061448829897507) +zone = ('miz046', 0.0025414038610593573) + +[fips2607315920] +centroid = (0.7645986383691189, -1.4793432731052512) +description = Clare city, MI +station = ('kmop', 0.0033612341435261795) +zone = ('miz046', 0.003123565452109203) + +[fips2607316880] +centroid = (0.75949056579401464, -1.4775487604749358) +description = Coe township, MI +station = ('kmop', 0.0020088860482955408) +zone = ('miz046', 0.0032393811923711168) + +[fips2607317060] +centroid = (0.76399379451684024, -1.4838590681986912) +description = Coldwater township, MI +station = ('kmop', 0.0045262133950259228) +zone = ('miz046', 0.003179315714973137) + +[fips2607321140] +centroid = (0.76087988278518703, -1.4818416246630186) +description = Deerfield township, MI +station = ('kmop', 0.0021800785104198377) +zone = ('miz046', 0.0010670688819031551) + +[fips2607321680] +centroid = (0.76255307757919655, -1.4776346132208413) +description = Denver township, MI +station = ('kmop', 0.0015788336398501067) +zone = ('miz046', 0.0024900645759683908) + +[fips2607330680] +centroid = (0.75929885882897552, -1.4819159058759834) +description = Fremont township, MI +station = ('kmop', 0.0029458396896537942) +zone = ('miz046', 0.002494823211110159) + +[fips2607332200] +centroid = (0.76398974535297559, -1.4821314714918972) +description = Gilmore township, MI +station = ('kmop', 0.0036087944220943901) +zone = ('miz046', 0.0024947199778660024) + +[fips2607341160] +centroid = (0.76241729096339128, -1.4799256545700565) +description = Isabella township, MI +station = ('kmop', 0.0013890417432358209) +zone = ('miz046', 0.001003255861118546) + +[fips2607347660] +centroid = (0.75941996722577132, -1.4797885240507274) +description = Lincoln township, MI +station = ('kmop', 0.0019500871323620732) +zone = ('miz046', 0.002380858715425998) + +[fips2607356020] +centroid = (0.76090613253713713, -1.4796198379785221) +description = Mount Pleasant city, MI +station = ('kmop', 0.00064162876928708899) +zone = ('miz046', 0.0011770449085773333) + +[fips2607359360] +centroid = (0.76228106801527318, -1.4818751349846568) +description = Nottawa township, MI +station = ('kmop', 0.0024010258701558447) +zone = ('miz046', 0.00095720947406434268) + +[fips2607369300] +centroid = (0.75919368528825026, -1.4838016294130081) +description = Rolland township, MI +station = ('kmop', 0.0041218818198812046) +zone = ('miz046', 0.0032715509497821256) + +[fips2607373200] +centroid = (0.76242257931102486, -1.483981380872671) +description = Sherman township, MI +station = ('kmop', 0.0038746213438951337) +zone = ('miz046', 0.0023834401308273898) + +[fips2607381340] +centroid = (0.76053434249987728, -1.4803370112214593) +description = Union charter township, MI +station = ('kmop', 0.0012800921041055402) +zone = ('miz046', 0.0011978737269874458) + +[fips2607382000] +centroid = (0.76372215147205991, -1.4800866088336757) +description = Vernon township, MI +station = ('kmop', 0.002618468817224748) +zone = ('miz046', 0.0021237945486668854) + +[fips2607388040] +centroid = (0.76406097223974956, -1.477850039210415) +description = Wise township, MI +station = ('kmop', 0.0029028372176637474) +zone = ('miz046', 0.0032283786616260214) + +[fips26075] +centroid = (0.73737497524321882, -1.4734221039915203) +description = Jackson County, MI +station = ('kjxn', 0.00067143594744319092) +zone = ('miz074', 3.1423630768309702e-05) + +[fips2607508760] +centroid = (0.73820573451387561, -1.4734866811738441) +description = Blackman charter township, MI +station = ('kjxn', 0.00074761416156133838) +zone = ('miz074', 0.00083046695622138297) + +[fips2607517400] +centroid = (0.73481970849854406, -1.4708732600584928) +description = Columbia township, MI +station = ('kjxn', 0.0037957961952885034) +zone = ('miz074', 0.0031968107759530497) + +[fips2607517760] +centroid = (0.73664905790072932, -1.477365221650796) +description = Concord township, MI +station = ('kjxn', 0.0025507544224152765) +zone = ('miz074', 0.0029783018226404562) + +[fips2607520] +centroid = (0.73503071880511017, -1.5087807991208435) +description = Benton Harbor city, MI +station = ('kbeh', 0.00051369652209244383) +zone = ('miz077', 0.0028204386084833056) + +[fips2607534500] +centroid = (0.73742812051894202, -1.4694489492158178) +description = Grass Lake charter township, MI +station = ('kjxn', 0.0035420547032917905) +zone = ('miz074', 0.0029728864258724585) + +[fips2607536400] +centroid = (0.73518315586197924, -1.4752818395759828) +description = Hanover township, MI +station = ('kjxn', 0.0026294447942536332) +zone = ('miz074', 0.0025727971386912559) + +[fips2607537700] +centroid = (0.73951378897507525, -1.4714793081879554) +description = Henrietta township, MI +station = ('kjxn', 0.00272545379917367) +zone = ('miz074', 0.002593830035415765) + +[fips2607540] +centroid = (0.7351710083703854, -1.5082271632288184) +description = Benton Heights CDP, MI +station = ('kbeh', 0.00019550494107762443) +zone = ('miz077', 0.0029253193684707903) + +[fips2607541420] +centroid = (0.73728735971476866, -1.4730972458578466) +description = Jackson city, MI +station = ('kjxn', 0.00092547221636781873) +zone = ('miz074', 0.00028580998368963814) + +[fips2607546980] +centroid = (0.73781019054549613, -1.4713391582490203) +description = Leoni township, MI +station = ('kjxn', 0.0021360848676989469) +zone = ('miz074', 0.0016319573466131603) + +[fips2607547360] +centroid = (0.7349612547008807, -1.4733537394447196) +description = Liberty township, MI +station = ('kjxn', 0.002805891093678012) +zone = ('miz074', 0.0024155704767427452) + +[fips2607556640] +centroid = (0.736103171270583, -1.4712536894755501) +description = Napoleon township, MI +station = ('kjxn', 0.002712236606790919) +zone = ('miz074', 0.0020736575839168823) + +[fips2607559180] +centroid = (0.73529735275493724, -1.4689179851507761) +description = Norvell township, MI +station = ('kjxn', 0.0046014445450898288) +zone = ('miz082', 0.0042767036059068592) + +[fips2607562760] +centroid = (0.73807233899914559, -1.4776336707430451) +description = Parma township, MI +station = ('kjxn', 0.0025531038005832309) +zone = ('miz074', 0.0031628873968997519) + +[fips2607566440] +centroid = (0.73514207081138738, -1.4775520766005146) +description = Pulaski township, MI +station = ('kjxn', 0.0035487615204278589) +zone = ('miz074', 0.0037631767319887877) + +[fips2607568920] +centroid = (0.73953899152947411, -1.4734431526622993) +description = Rives township, MI +station = ('kjxn', 0.0019340900145291033) +zone = ('miz074', 0.0021636203655824113) + +[fips2607571500] +centroid = (0.7380519535534823, -1.4756009206698324) +description = Sandstone township, MI +station = ('kjxn', 0.0010821248096217926) +zone = ('miz074', 0.0017196015605179431) + +[fips2607575640] +centroid = (0.736625181796562, -1.4754650642408571) +description = Spring Arbor township, MI +station = ('kjxn', 0.0014095927277923293) +zone = ('miz074', 0.0016605079456344122) + +[fips2607575880] +centroid = (0.73978656648386942, -1.4774693654472626) +description = Springport township, MI +station = ('kjxn', 0.0031860806420672045) +zone = ('miz074', 0.0038187194071650412) + +[fips2607577200] +centroid = (0.73650775604448782, -1.4735735287574234) +description = Summit township, MI +station = ('kjxn', 0.0012781824939043765) +zone = ('miz074', 0.00087141788553094283) + +[fips2607579980] +centroid = (0.73962192957552886, -1.4755047530280476) +description = Tompkins township, MI +station = ('kjxn', 0.0021501203762794921) +zone = ('miz074', 0.0027060864602270157) + +[fips2607580] +centroid = (0.77869702409429364, -1.5027110675811828) +description = Benzonia village, MI +station = ('kfks', 0.0012712076442195708) +zone = ('miz025', 0.0011115458061859709) + +[fips2607584300] +centroid = (0.73952602373313181, -1.4693150824621899) +description = Waterloo township, MI +station = ('kjxn', 0.0040648063388020999) +zone = ('miz074', 0.0037471640706619094) + +[fips2607660] +centroid = (0.7417405323946471, -1.451858107297525) +description = Berkley city, MI +station = ('kvll', 0.00077712848196791228) +zone = ('miz069', 0.0038198646678353813) + +[fips26077] +centroid = (0.73733643837333473, -1.4928299209276019) +description = Kalamazoo County, MI +station = ('kazo', 0.00031627910744388201) +zone = ('miz072', 2.6174792048214088e-05) + +[fips2607700840] +centroid = (0.73968039810547059, -1.4956494305210288) +description = Alamo township, MI +station = ('kazo', 0.0031744581032332312) +zone = ('miz072', 0.0031625593645398828) + +[fips2607709920] +centroid = (0.73491182697646429, -1.4917175178755508) +description = Brady township, MI +station = ('kazo', 0.0024351134162745682) +zone = ('miz072', 0.002539776303582294) + +[fips2607714720] +centroid = (0.73817503417233299, -1.4895802574867285) +description = Charleston township, MI +station = ('kbtl', 0.0012518057224348085) +zone = ('miz072', 0.0025316261227141161) + +[fips2607716460] +centroid = (0.73659893204461202, -1.4897617542756436) +description = Climax township, MI +station = ('kbtl', 0.0021724966879498693) +zone = ('miz072', 0.0023637375562173815) + +[fips2607717680] +centroid = (0.73807708629471114, -1.4917307125646961) +description = Comstock charter township, MI +station = ('kazo', 0.0014160010537194057) +zone = ('miz072', 0.0010947848036322089) + +[fips2607717980] +centroid = (0.73966140892320897, -1.4937603908584254) +description = Cooper charter township, MI +station = ('kazo', 0.0025930541792938268) +zone = ('miz072', 0.0024452542264561) + +[fips2607731260] +centroid = (0.73811478540655406, -1.4908176610198076) +description = Galesburg city, MI +station = ('kazo', 0.0019835893214931138) +zone = ('miz072', 0.0016684677985391988) + +[fips2607742160] +centroid = (0.73784080362057602, -1.4938011442964592) +description = Kalamazoo city, MI +station = ('kazo', 0.00088340146454657918) +zone = ('miz072', 0.00090426946302257154) + +[fips2607742180] +centroid = (0.7385162285878053, -1.4943322305345488) +description = Kalamazoo charter township, MI +station = ('kazo', 0.0016636978072443983) +zone = ('miz072', 0.0016465713461638514) + +[fips2607761400] +centroid = (0.73806572420128069, -1.4958426210159319) +description = Oshtemo charter township, MI +station = ('kazo', 0.0022237135908599261) +zone = ('miz072', 0.0023707276506436366) + +[fips2607762340] +centroid = (0.73875415187143723, -1.4933968387752348) +description = Parchment city, MI +station = ('kazo', 0.0016553196789037511) +zone = ('miz072', 0.0014990871521242935) + +[fips2607762960] +centroid = (0.73667816999265268, -1.4918428325158442) +description = Pavilion township, MI +station = ('kazo', 0.0010462173940760135) +zone = ('miz072', 0.00095765840404548523) + +[fips2607765560] +centroid = (0.7365248428178649, -1.4938411297896224) +description = Portage city, MI +station = ('kazo', 0.00078821212701511104) +zone = ('miz072', 0.0011079791487189951) + +[fips2607766200] +centroid = (0.73507932622477812, -1.4957551625671146) +description = Prairie Ronde township, MI +station = ('kazo', 0.0028131650877330555) +zone = ('miz072', 0.003133459943960781) + +[fips2607768260] +centroid = (0.73959444063980984, -1.4918030215556062) +description = Richland township, MI +station = ('kazo', 0.002670359618555575) +zone = ('miz072', 0.0023899330144027259) + +[fips2607769820] +centroid = (0.73969685656031692, -1.4897206517717589) +description = Ross township, MI +station = ('kbtl', 0.0019617166920554031) +zone = ('miz072', 0.0032911782771801556) + +[fips2607771880] +centroid = (0.73499825568102306, -1.493759343660874) +description = Schoolcraft township, MI +station = ('kazo', 0.0021634758692695029) +zone = ('miz072', 0.0024291868338114828) + +[fips2607779300] +centroid = (0.73656261174287807, -1.4958720123605356) +description = Texas charter township, MI +station = ('kazo', 0.0021039871155913215) +zone = ('miz072', 0.0023973530586993029) + +[fips2607782840] +centroid = (0.73503953271783262, -1.4896942274868841) +description = Wakeshma township, MI +station = ('kazo', 0.0032818065094703036) +zone = ('miz072', 0.0032414571518753466) + +[fips2607860] +centroid = (0.73211783409670173, -1.5069214300555238) +description = Berrien Springs village, MI +station = ('kbeh', 0.0033953005959403001) +zone = ('miz077', 0.00094411490234191269) + +[fips26079] +centroid = (0.77979357955673656, -1.485083067603115) +description = Kalkaska County, MI +station = ('kgov', 0.0044690021697189409) +zone = ('miz027', 0.00010093482123282884) + +[fips2607906440] +centroid = (0.77981309233777396, -1.4818620450152669) +description = Bear Lake township, MI +station = ('kgov', 0.0021786147983214117) +zone = ('miz027', 0.0023065895266459746) + +[fips2607909320] +centroid = (0.78211521652773941, -1.4818890627120878) +description = Blue Lake township, MI +station = ('kgov', 0.0031775470173745234) +zone = ('miz027', 0.0031859527987027551) + +[fips2607909440] +centroid = (0.77921976765855838, -1.4881148790467544) +description = Boardman township, MI +station = ('ktvc', 0.004067928151487028) +zone = ('miz027', 0.002244763277553546) + +[fips2607916340] +centroid = (0.78210406387381926, -1.4882515383271855) +description = Clearwater township, MI +station = ('kacb', 0.0032167932595324415) +zone = ('miz027', 0.0031438273538310899) + +[fips2607917000] +centroid = (0.78211275561349414, -1.4841112682756044) +description = Coldsprings township, MI +station = ('kacb', 0.003695881346771623) +zone = ('miz027', 0.002328691030131553) + +[fips2607926860] +centroid = (0.78051118913198658, -1.4841661414272871) +description = Excelsior township, MI +station = ('kgov', 0.0038780647225138041) +zone = ('miz027', 0.00090894021459571447) + +[fips2607931600] +centroid = (0.77764013996574843, -1.4840339676430334) +description = Garfield township, MI +station = ('kgov', 0.0043165871465882105) +zone = ('miz027', 0.0023785285458340407) + +[fips2607942280] +centroid = (0.78070870804343473, -1.4872745902783815) +description = Kalkaska township, MI +station = ('kacb', 0.0044903215719985538) +zone = ('miz027', 0.0017447488381842672) + +[fips2607960] +centroid = (0.81118608377407275, -1.5716669493856688) +description = Bessemer city, MI +station = ('kiwd', 0.0013975818917076879) +zone = ('wiz004', 0.0044119237235725212) + +[fips2607960540] +centroid = (0.77905670154654461, -1.4841592124701566) +description = Oliver township, MI +station = ('kgov', 0.0038886589207626165) +zone = ('miz027', 0.001073218977011693) + +[fips2607960940] +centroid = (0.7792588630338031, -1.4860554603425711) +description = Orange township, MI +station = ('kgov', 0.0051919086391798968) +zone = ('miz027', 0.0009275742440620513) + +[fips2607967180] +centroid = (0.78220791096431286, -1.4862099568879577) +description = Rapid River township, MI +station = ('kacb', 0.0030374909741983959) +zone = ('miz027', 0.0024441159038445012) + +[fips2607975720] +centroid = (0.77757770953840466, -1.488542990858976) +description = Springfield township, MI +station = ('ktvc', 0.0046974795886062992) +zone = ('miz027', 0.0033695670025289709) + +[fips26081] +centroid = (0.75105875800458233, -1.493084599372053) +description = Kent County, MI +station = ('kgrr', 0.0026329157317686656) +zone = ('miz057', 2.2969732769362691e-05) + +[fips2608100] +centroid = (0.77893643090778975, -1.502655513751092) +description = Beulah village, MI +station = ('kfks', 0.0013036293252366247) +zone = ('miz025', 0.0010082238117562997) + +[fips2608100240] +centroid = (0.75018712312284386, -1.4920023207028914) +description = Ada township, MI +station = ('kgrr', 0.0017771507447579848) +zone = ('miz057', 0.0011887136689364066) + +[fips2608101160] +centroid = (0.75334430156665388, -1.4942951597412362) +description = Algoma township, MI +station = ('kgrr', 0.0050531535409093489) +zone = ('miz057', 0.0024473978355463266) + +[fips2608101840] +centroid = (0.75178378522915335, -1.4963464452111053) +description = Alpine township, MI +station = ('kgrr', 0.0043363003494655151) +zone = ('miz057', 0.0024714650525123282) + +[fips2608109780] +centroid = (0.74737230846510483, -1.4901054445119462) +description = Bowne township, MI +station = ('kgrr', 0.0020923397749697359) +zone = ('miz065', 0.0040437751128960227) + +[fips2608112240] +centroid = (0.74720543753532176, -1.4961625224145301) +description = Byron township, MI +station = ('kgrr', 0.002930422707566032) +zone = ('miz064', 0.0043882683754603606) + +[fips2608112500] +centroid = (0.74708054177404892, -1.4921903101166236) +description = Caledonia township, MI +station = ('kgrr', 0.0013995275921011908) +zone = ('miz057', 0.0040303548149742364) + +[fips2608113080] +centroid = (0.75187611314658376, -1.4921354893248184) +description = Cannon township, MI +station = ('kgrr', 0.0034339995924964166) +zone = ('miz057', 0.0010904332868249755) + +[fips2608113660] +centroid = (0.74870144650366866, -1.4921095013722563) +description = Cascade charter township, MI +station = ('kgrr', 0.00040433785438265452) +zone = ('miz057', 0.0024645748749733808) + +[fips2608114200] +centroid = (0.75432097036277745, -1.4931819363844367) +description = Cedar Springs city, MI +station = ('kgrr', 0.0058839080887079353) +zone = ('miz057', 0.0032677588790572037) + +[fips2608118500] +centroid = (0.75343291193277762, -1.4920108902695186) +description = Courtland township, MI +station = ('kgrr', 0.0049929793949010978) +zone = ('miz057', 0.0025122526763779393) + +[fips2608123980] +centroid = (0.74956320282184086, -1.4941500181606404) +description = East Grand Rapids city, MI +station = ('kgrr', 0.0016139659362695475) +zone = ('miz057', 0.0016715748545942303) + +[fips2608131240] +centroid = (0.7470805766806341, -1.4940847777532009) +description = Gaines charter township, MI +station = ('kgrr', 0.0017778229285146392) +zone = ('miz057', 0.0040359459828160603) + +[fips2608134000] +centroid = (0.74981362266291707, -1.4949717191724794) +description = Grand Rapids city, MI +station = ('kgrr', 0.0022352817023416657) +zone = ('miz057', 0.0018388036989060946) + +[fips2608134020] +centroid = (0.75027800241699516, -1.4936420575351399) +description = Grand Rapids charter township, MI +station = ('kgrr', 0.0019910547048395681) +zone = ('miz057', 0.00086598353096956559) + +[fips2608134160] +centroid = (0.74875522009792261, -1.4966562411533342) +description = Grandville city, MI +station = ('kgrr', 0.0030251943947672572) +zone = ('miz057', 0.0034636020509889579) + +[fips2608134560] +centroid = (0.7518450637391908, -1.4898542916325843) +description = Grattan township, MI +station = ('kgrr', 0.0039207039103507663) +zone = ('miz057', 0.0025107719031549924) + +[fips2608142820] +centroid = (0.74848156992450243, -1.4938749542705261) +description = Kentwood city, MI +station = ('kgrr', 0.00097309541002157712) +zone = ('miz057', 0.0026314176687953382) + +[fips2608149540] +centroid = (0.74935013302675746, -1.4895725256781425) +description = Lowell city, MI +station = ('kgrr', 0.0023554706530920333) +zone = ('miz058', 0.0034753147998490136) + +[fips2608149560] +centroid = (0.74867622649597743, -1.4900467316359092) +description = Lowell charter township, MI +station = ('kgrr', 0.0018454174218580179) +zone = ('miz057', 0.0032701443906241493) + +[fips2608156920] +centroid = (0.75497162910792082, -1.4920180286661591) +description = Nelson township, MI +station = ('kgrr', 0.0065277330046586727) +zone = ('miz057', 0.0039990017345560569) + +[fips2608159580] +centroid = (0.75340107712722126, -1.4899782623693536) +description = Oakfield township, MI +station = ('kgrr', 0.0052903355424749427) +zone = ('miz057', 0.0032798114409122439) + +[fips2608160] +centroid = (0.74215838167086712, -1.4528180034795368) +description = Beverly Hills village, MI +station = ('kvll', 0.00087871812791985332) +zone = ('miz069', 0.0030443352513374587) + +[fips2608164660] +centroid = (0.75177895066712519, -1.4941887121101571) +description = Plainfield charter township, MI +station = ('kgrr', 0.0035338596381879433) +zone = ('miz057', 0.0010684109950958116) + +[fips2608169080] +centroid = (0.75285955382020497, -1.4932091809740604) +description = Rockford city, MI +station = ('kgrr', 0.0044306990987345298) +zone = ('miz057', 0.0018072830048515712) + +[fips2608174460] +centroid = (0.75495173235444812, -1.4943702263523644) +description = Solon township, MI +station = ('kffx', 0.0056819839422537965) +zone = ('miz057', 0.0040042665790685243) + +[fips2608175440] +centroid = (0.75331681263093497, -1.4962134511221032) +description = Sparta township, MI +station = ('kgrr', 0.0055513152000700892) +zone = ('miz057', 0.0032000560387979242) + +[fips2608175560] +centroid = (0.7548014769591439, -1.4899773722514351) +description = Spencer township, MI +station = ('kgrr', 0.0066180468450984242) +zone = ('miz051', 0.0029755345925247187) + +[fips2608180] +centroid = (0.81711678238551966, -1.5307935897786968) +description = Big Bay CDP, MI +station = ('ksaw', 0.0089207064642856295) +zone = ('miz005', 0.0067829911671033047) + +[fips2608181140] +centroid = (0.75488113378620503, -1.496232981356433) +description = Tyrone township, MI +station = ('kffx', 0.00467928931076253) +zone = ('miz057', 0.004452577874682272) + +[fips2608181920] +centroid = (0.75014078463120337, -1.4901067884154704) +description = Vergennes township, MI +station = ('kgrr', 0.0024563764263742741) +zone = ('miz057', 0.0023818492501075095) + +[fips2608182960] +centroid = (0.75043141685824544, -1.4967309412453196) +description = Walker city, MI +station = ('kgrr', 0.0036447953843638573) +zone = ('miz057', 0.002715976989117234) + +[fips2608188940] +centroid = (0.74861815939176346, -1.4958992394968667) +description = Wyoming city, MI +station = ('kgrr', 0.0024612346478272078) +zone = ('miz057', 0.0031752236091799322) + +[fips26083] +centroid = (0.83220756232337834, -1.5384868265885627) +description = Keweenaw County, MI +station = ('kp59', 0.0048880037109896276) +zone = ('miz001', 0.0034979284002069795) + +[fips2608300] +centroid = (0.76269179634814499, -1.4919026624026024) +description = Big Rapids city, MI +station = ('krqb', 0.00051283379489862422) +zone = ('miz045', 0.0022066326226191746) + +[fips2608300000] +centroid = (0.83220756232337834, -1.5384868265885627) +description = County subdivisions not defined, MI +station = ('kp59', 0.0048880037109896276) +zone = ('miz001', 0.0034979284002069795) + +[fips2608301520] +centroid = (0.82671530787332503, -1.5420216593759193) +description = Allouez township, MI +station = ('kcmx', 0.0038348124532618486) +zone = ('miz001', 0.0041922315075782323) + +[fips2608323620] +centroid = (0.83712377085381096, -1.5520578610802473) +description = Eagle Harbor township, MI +station = ('cyqt', 0.0083736365794765347) +zone = ('miz001', 0.0086414741927120613) + +[fips2608334300] +centroid = (0.82724337469180842, -1.5340600956468518) +description = Grant township, MI +station = ('kp59', 0.0012143106178202406) +zone = ('miz001', 0.0071699591037738238) + +[fips2608339380] +centroid = (0.83943940389218696, -1.5457644655969436) +description = Houghton township, MI +station = ('cztb', 0.010086998606214828) +zone = ('miz001', 0.0087785924604775085) + +[fips2608373220] +centroid = (0.82495170502406223, -1.5396397038259673) +description = Sherman township, MI +station = ('kcmx', 0.0036263876230579043) +zone = ('miz003', 0.0060857831553277611) + +[fips2608460] +centroid = (0.74207315724349221, -1.4534753119291304) +description = Bingham Farms village, MI +station = ('kvll', 0.0013615467199271408) +zone = ('miz069', 0.0028486002880382484) + +[fips26085] +centroid = (0.7678608681806065, -1.4976914657458622) +description = Lake County, MI +station = ('krqb', 0.0061318825192627577) +zone = ('miz038', 0.00015175732803029437) + +[fips2608514880] +centroid = (0.7652901378187591, -1.4946588514507668) +description = Chase township, MI +station = ('krqb', 0.0027601387821829561) +zone = ('miz038', 0.0032257293450585257) + +[fips2608515100] +centroid = (0.76697794101860761, -1.496477955770243) +description = Cherry Valley township, MI +station = ('krqb', 0.0048971799733591075) +zone = ('miz038', 0.0010921227005929524) + +[fips2608522800] +centroid = (0.77003017281449526, -1.4944447344581322) +description = Dover township, MI +station = ('kcad', 0.0038727052430970049) +zone = ('miz038', 0.0031620186074842907) + +[fips2608524800] +centroid = (0.77006787192633841, -1.4984745426213544) +description = Eden township, MI +station = ('kmbl', 0.0055392044934420128) +zone = ('miz038', 0.0023973138220665523) + +[fips2608525260] +centroid = (0.77005539282218671, -1.500667670999533) +description = Elk township, MI +station = ('kmbl', 0.0042099807742273596) +zone = ('miz038', 0.0032142862804029971) + +[fips2608525440] +centroid = (0.76839003455651866, -1.4943613949863492) +description = Ellsworth township, MI +station = ('kcad', 0.0051740426791934404) +zone = ('miz038', 0.0023563207039475949) + +[fips2608540] +centroid = (0.75486786928388983, -1.4624405970577272) +description = Birch Run village, MI +station = ('khyx', 0.0033111825359665079) +zone = ('miz061', 0.0041414600175735203) + +[fips2608544320] +centroid = (0.76551687354188558, -1.5006251896855394) +description = Lake township, MI +station = ('kldm', 0.0056001719408359466) +zone = ('miz038', 0.0031737992369358179) + +[fips2608557480] +centroid = (0.769571325754146, -1.4965506138270035) +description = Newkirk township, MI +station = ('kcad', 0.0052919103424539484) +zone = ('miz038', 0.0019316579369927866) + +[fips2608563120] +centroid = (0.76838038288575505, -1.4985757193580926) +description = Peacock township, MI +station = ('kmbl', 0.0064344536677638196) +zone = ('miz038', 0.00097281192013981403) + +[fips2608564440] +centroid = (0.76691289259738582, -1.4941418674730336) +description = Pinora township, MI +station = ('krqb', 0.0040293771787213899) +zone = ('miz038', 0.0025796713304391795) + +[fips2608564880] +centroid = (0.76545924276998478, -1.498549015820537) +description = Pleasant Plains township, MI +station = ('krqb', 0.0050712978201031102) +zone = ('miz038', 0.0024265548003717546) + +[fips2608571680] +centroid = (0.76851829880324773, -1.5007265235019103) +description = Sauble township, MI +station = ('kmbl', 0.0052575099513739046) +zone = ('miz038', 0.0024229139911136378) + +[fips2608577740] +centroid = (0.76683206639972601, -1.5007134858923978) +description = Sweetwater township, MI +station = ('kmbl', 0.0066578695567188389) +zone = ('miz038', 0.002481304212555365) + +[fips2608585060] +centroid = (0.76715592969572599, -1.4984803894743486) +description = Webber township, MI +station = ('krqb', 0.0060102151680555185) +zone = ('miz038', 0.00092360978278698273) + +[fips2608589040] +centroid = (0.76535050875758548, -1.4963116607991129) +description = Yates township, MI +station = ('krqb', 0.0036500963993917118) +zone = ('miz038', 0.0025721262941874688) + +[fips2608640] +centroid = (0.74254692686894608, -1.4524032434360927) +description = Birmingham city, MI +station = ('kvll', 0.00050015554506162741) +zone = ('miz069', 0.0029630753699618735) + +[fips26087] +centroid = (0.75203851603348182, -1.4525384889998296) +description = Lapeer County, MI +station = ('kd95', 0.00071539883068602182) +zone = ('miz062', 4.1125941519321224e-05) + +[fips2608701680] +centroid = (0.74933386655812873, -1.449408816945031) +description = Almont township, MI +station = ('kd95', 0.0037059842882028564) +zone = ('miz062', 0.0035418703663837267) + +[fips2608703280] +centroid = (0.75232120701242733, -1.4515162845635217) +description = Arcadia township, MI +station = ('kd95', 0.0015053747349367333) +zone = ('miz062', 0.00075908731565275782) + +[fips2608704040] +centroid = (0.75091509995385064, -1.4514314615618749) +description = Attica township, MI +station = ('kd95', 0.0015920101024269754) +zone = ('miz062', 0.0013868921259887713) + +[fips2608711180] +centroid = (0.75419260139629318, -1.4486295099807229) +description = Brown City city, MI +station = ('kd95', 0.0042875498930257687) +zone = ('miz062', 0.0035328283881626674) + +[fips2608711840] +centroid = (0.75535677091395848, -1.4516070940445029) +description = Burlington township, MI +station = ('kd95', 0.003919857609929662) +zone = ('miz062', 0.003355615330730193) + +[fips2608711900] +centroid = (0.75432503697993458, -1.4497155236544841) +description = Burnside township, MI +station = ('kd95', 0.0037718622050980041) +zone = ('miz062', 0.0030366727547779856) + +[fips2608721160] +centroid = (0.75383273195782452, -1.4536664254822236) +description = Deerfield township, MI +station = ('kd95', 0.0021921061444836768) +zone = ('miz062', 0.0019645172893401363) + +[fips2608723160] +centroid = (0.74940214383846682, -1.4516606407459542) +description = Dryden township, MI +station = ('kd95', 0.0025710781365048895) +zone = ('miz062', 0.0027308953077129681) + +[fips2608725160] +centroid = (0.75076676442072354, -1.4554832783269649) +description = Elba township, MI +station = ('kd95', 0.0017848847873098907) +zone = ('miz062', 0.0025402971490451659) + +[fips2608732960] +centroid = (0.75233946315640321, -1.4495804351703796) +description = Goodland township, MI +station = ('kd95', 0.0028464719610921609) +zone = ('miz062', 0.0021454924493090068) + +[fips2608735840] +centroid = (0.74920654478919579, -1.455451600601041) +description = Hadley township, MI +station = ('kd95', 0.0028834330432839965) +zone = ('miz062', 0.0035835647962776419) + +[fips2608740300] +centroid = (0.75091886986503498, -1.449413511880719) +description = Imlay township, MI +station = ('kd95', 0.0029776325542414735) +zone = ('miz062', 0.0025257048324459608) + +[fips2608740320] +centroid = (0.75078596304249556, -1.4499575659151507) +description = Imlay City city, MI +station = ('kd95', 0.0026349010549875495) +zone = ('miz062', 0.0022516584314502242) + +[fips2608746040] +centroid = (0.75127832042448317, -1.4543352531048803) +description = Lapeer city, MI +station = ('kd95', 0.00080293365304999096) +zone = ('miz062', 0.0015575678155278188) + +[fips2608746060] +centroid = (0.75059299944039515, -1.4533592475338726) +description = Lapeer township, MI +station = ('kd95', 0.0010588765490142755) +zone = ('miz062', 0.0016011312166081901) + +[fips2608751420] +centroid = (0.75385643352906662, -1.4555700735506663) +description = Marathon township, MI +station = ('kd95', 0.0027305012863175701) +zone = ('miz062', 0.0028720795409995993) + +[fips2608752500] +centroid = (0.75232188769083563, -1.4536669839875844) +description = Mayfield township, MI +station = ('kd95', 0.00070594253706878537) +zone = ('miz062', 0.00089415793429048788) + +[fips2608753360] +centroid = (0.74935151183686655, -1.4533954282092667) +description = Metamora township, MI +station = ('kd95', 0.0023004871043649519) +zone = ('miz062', 0.0027914673863661411) + +[fips2608758090] +centroid = (0.75393342000237207, -1.4517598103540525) +description = North Branch township, MI +station = ('kd95', 0.0025638897972277471) +zone = ('miz062', 0.0019446283720276345) + +[fips2608761060] +centroid = (0.7520617463658259, -1.4555813483776343) +description = Oregon township, MI +station = ('kd95', 0.0016716877483864607) +zone = ('miz062', 0.0022543268113014211) + +[fips2608768160] +centroid = (0.75535205852497822, -1.4537558386998033) +description = Rich township, MI +station = ('kcfs', 0.0036829056567981222) +zone = ('miz062', 0.0034141641610693908) + +[fips26089] +centroid = (0.78794952060459866, -1.501883292823547) +description = Leelanau County, MI +station = ('kfks', 0.0092810242566768331) +zone = ('miz020', 0.0046983788248607002) + +[fips2608900000] +centroid = (0.78902345659993589, -1.5033771375836213) +description = County subdivisions not defined, MI +station = ('kfks', 0.010200409303739609) +zone = ('miz020', 0.0061973629827959112) + +[fips2608908440] +centroid = (0.78388909936629636, -1.494748212308469) +description = Bingham township, MI +station = ('ktvc', 0.0032831957666156664) +zone = ('miz020', 0.0021336827129042591) + +[fips2608914340] +centroid = (0.78385452439381442, -1.4968620852853145) +description = Centerville township, MI +station = ('ktvc', 0.0039542521819653544) +zone = ('miz020', 0.0007420366286063915) + +[fips2608916400] +centroid = (0.78456606022326747, -1.4993830388568952) +description = Cleveland township, MI +station = ('ktvc', 0.0056995153407943203) +zone = ('miz020', 0.0012171038059911115) + +[fips2608925700] +centroid = (0.78226508795060823, -1.4950903841083225) +description = Elmwood charter township, MI +station = ('ktvc', 0.0019286529056704164) +zone = ('miz020', 0.0027481313261923626) + +[fips2608926000] +centroid = (0.78222606238853365, -1.501145542148729) +description = Empire township, MI +station = ('kfks', 0.0041232843273984751) +zone = ('miz025', 0.0031208505666540411) + +[fips2608932380] +centroid = (0.7837773110277062, -1.5015644560757926) +description = Glen Arbor township, MI +station = ('kfks', 0.0053424971038464443) +zone = ('miz020', 0.0027795507026533652) + +[fips2608942320] +centroid = (0.78241673960931402, -1.4988612726770112) +description = Kasson township, MI +station = ('kfks', 0.0053529640525120615) +zone = ('miz020', 0.0020470550183321642) + +[fips2608946700] +centroid = (0.78811541415000075, -1.4940908165924127) +description = Leelanau township, MI +station = ('kcvx', 0.0048225074321990753) +zone = ('miz020', 0.0045974407786422084) + +[fips2608946820] +centroid = (0.78756050416762169, -1.5006334974527789) +description = Leland township, MI +station = ('ktvc', 0.0085174274561186075) +zone = ('miz020', 0.0038666919020969451) + +[fips2608974500] +centroid = (0.78231948986339295, -1.4969883947632814) +description = Solon township, MI +station = ('ktvc', 0.0029829576566102758) +zone = ('miz020', 0.0020385300197209213) + +[fips2608977620] +centroid = (0.78531543479090382, -1.4946261614338772) +description = Suttons Bay township, MI +station = ('ktvc', 0.0046507237042625604) +zone = ('miz020', 0.0024076062018656449) + +[fips2608980340] +centroid = (0.78153079302770923, -1.4948964780284257) +description = Traverse City city, MI +station = ('ktvc', 0.0013108417865471574) +zone = ('miz026', 0.0021977604167616439) + +[fips2609000] +centroid = (0.73008927281369373, -1.4637071126827292) +description = Blissfield village, MI +station = ('kduh', 0.0031869322404397479) +zone = ('miz082', 0.0028557261290511103) + +[fips26091] +centroid = (0.73122165988568011, -1.4672433766400725) +description = Lenawee County, MI +station = ('kadg', 0.00055358042691747058) +zone = ('miz082', 1.5393822694606931e-05) + +[fips2609100440] +centroid = (0.73127166356874984, -1.4668589853256133) +description = Adrian city, MI +station = ('kadg', 0.00075131536723721797) +zone = ('miz082', 0.00028750166662887706) + +[fips2609100460] +centroid = (0.73214923256994502, -1.4673838407382731) +description = Adrian township, MI +station = ('kadg', 0.0014422174434294652) +zone = ('miz082', 0.00094824522368349633) + +[fips2609109020] +centroid = (0.73051581382958863, -1.4636082746871888) +description = Blissfield township, MI +station = ('kduh', 0.0033701377402725104) +zone = ('miz082', 0.0027879563574493018) + +[fips2609112720] +centroid = (0.73343976392545474, -1.4692229814375621) +description = Cambridge township, MI +station = ('kadg', 0.0030048137446808355) +zone = ('miz082', 0.002677246518175459) + +[fips2609116500] +centroid = (0.73405876239796697, -1.4651553868960343) +description = Clinton township, MI +station = ('karb', 0.0037601321011520696) +zone = ('miz082', 0.0032436569578803342) + +[fips2609121200] +centroid = (0.73112599838937831, -1.4625548114039777) +description = Deerfield township, MI +station = ('kduh', 0.0032769178673857239) +zone = ('miz082', 0.0034852131995733839) + +[fips2609122820] +centroid = (0.73054318059225987, -1.4691674974206412) +description = Dover township, MI +station = ('kadg', 0.0012303059817051092) +zone = ('miz082', 0.0015845233684921866) + +[fips2609127020] +centroid = (0.72895206863297179, -1.4671088117547439) +description = Fairfield township, MI +station = ('kadg', 0.0017870323711872522) +zone = ('miz082', 0.0022573405370896202) + +[fips2609130320] +centroid = (0.73358923392259545, -1.4673773306601632) +description = Franklin township, MI +station = ('kadg', 0.002880322501532806) +zone = ('miz082', 0.0023841331145272328) + +[fips2609139720] +centroid = (0.73053298786942822, -1.4721102621658437) +description = Hudson city, MI +station = ('kjym', 0.0033194178843067618) +zone = ('miz082', 0.0036918663739905089) + +[fips2609139740] +centroid = (0.73045238856457106, -1.4712507049625292) +description = Hudson township, MI +station = ('kadg', 0.002782436207835345) +zone = ('miz082', 0.0030836915600339653) + +[fips2609150520] +centroid = (0.73373570195342286, -1.4630694740938057) +description = Macon township, MI +station = ('karb', 0.0032440047925231157) +zone = ('miz075', 0.0037278659073831837) + +[fips2609150540] +centroid = (0.7304679569014989, -1.4673517092267438) +description = Madison charter township, MI +station = ('kadg', 0.00027747249207881098) +zone = ('miz082', 0.00074452669601725774) + +[fips2609152820] +centroid = (0.72888934149965501, -1.4712339323484176) +description = Medina township, MI +station = ('kadg', 0.0033069107858255107) +zone = ('ohz002', 0.0035345872183543737) + +[fips2609155500] +centroid = (0.72819841800866802, -1.4698610389055062) +description = Morenci city, MI +station = ('kadg', 0.0030547607355026359) +zone = ('ohz002', 0.0023939961825479267) + +[fips2609160260] +centroid = (0.72899624291633969, -1.4650580324303579) +description = Ogden township, MI +station = ('kadg', 0.0025175013586018202) +zone = ('miz082', 0.0027425581045385774) + +[fips2609162240] +centroid = (0.73073719139191151, -1.4652840874750763) +description = Palmyra township, MI +station = ('kadg', 0.0016734676175212647) +zone = ('miz082', 0.0015270610327848949) + +[fips2609166840] +centroid = (0.73211401182563973, -1.4651055228393046) +description = Raisin township, MI +station = ('kadg', 0.002286135414600478) +zone = ('miz082', 0.0018257979360946572) + +[fips2609168540] +centroid = (0.73256165387219119, -1.4631947887340988) +description = Ridgeway township, MI +station = ('kadg', 0.0037194867168213585) +zone = ('miz082', 0.0032968934728478724) + +[fips2609168580] +centroid = (0.72902144547073855, -1.4631592363772357) +description = Riga township, MI +station = ('kduh', 0.0023870982839565217) +zone = ('ohz003', 0.0034636987257568841) + +[fips2609169340] +centroid = (0.73192254920669597, -1.4713090862260083) +description = Rollin township, MI +station = ('kjym', 0.0037229143851171152) +zone = ('miz082', 0.0031145072529166137) + +[fips2609169360] +centroid = (0.73203400593272838, -1.4693072633871409) +description = Rome township, MI +station = ('kadg', 0.0018701665504953955) +zone = ('miz082', 0.0017492189057705537) + +[fips2609172440] +centroid = (0.72887705438172101, -1.4690112206394177) +description = Seneca township, MI +station = ('kadg', 0.0021403509647914009) +zone = ('miz082', 0.0026798347944323037) + +[fips2609179120] +centroid = (0.7331449952680853, -1.4651069191027064) +description = Tecumseh city, MI +station = ('kadg', 0.0030290540740624656) +zone = ('miz082', 0.0025020350158078447) + +[fips2609179140] +centroid = (0.7335677314662109, -1.4646381585722057) +description = Tecumseh township, MI +station = ('kadg', 0.0035761759475269423) +zone = ('miz082', 0.0030497452017879461) + +[fips2609180] +centroid = (0.74307904285129422, -1.453063187332857) +description = Bloomfield Hills city, MI +station = ('kvll', 0.0011366826288556721) +zone = ('miz069', 0.0022454637230369147) + +[fips2609188640] +centroid = (0.73353605374028719, -1.4714116068662704) +description = Woodstock township, MI +station = ('kadg', 0.0040385811119052302) +zone = ('miz082', 0.0038814371839537821) + +[fips2609220] +centroid = (0.73972799323417249, -1.5002677811613161) +description = Bloomingdale village, MI +station = ('klwa', 0.0038728205620551272) +zone = ('miz071', 0.00242988800661056) + +[fips26093] +centroid = (0.74355445308624479, -1.4645357601049911) +description = Livingston County, MI +station = ('kozw', 0.0010423618477413805) +zone = ('miz068', 8.6349239835602424e-06) + +[fips2609310620] +centroid = (0.74228338215189493, -1.4623161725353524) +description = Brighton city, MI +station = ('kozw', 0.0031002923204666) +zone = ('miz068', 0.0020735444803498117) + +[fips2609310640] +centroid = (0.74279198854921868, -1.4613220329934165) +description = Brighton township, MI +station = ('kozw', 0.0035194384318091329) +zone = ('miz068', 0.0024859972246540122) + +[fips2609316920] +centroid = (0.74583840839869719, -1.4656641329196982) +description = Cohoctah township, MI +station = ('kozw', 0.0018170010701732328) +zone = ('miz068', 0.0024232682431120168) + +[fips2609317920] +centroid = (0.74592942731918865, -1.4676585904691219) +description = Conway township, MI +station = ('kozw', 0.0023444031318839167) +zone = ('miz068', 0.0032994932255318529) + +[fips2609321220] +centroid = (0.74607069426884509, -1.4637338162202849) +description = Deerfield township, MI +station = ('kozw', 0.0025486123786305926) +zone = ('miz068', 0.0025758039168862217) + +[fips2609327760] +centroid = (0.74666901058972124, -1.4607346598869504) +description = Fenton city, MI +station = ('kfnt', 0.0033191940110833566) +zone = ('miz068', 0.0041760718065632528) + +[fips2609331860] +centroid = (0.74287070289848356, -1.4637053673534774) +description = Genoa township, MI +station = ('kozw', 0.0019257656964297425) +zone = ('miz068', 0.00092149929663062099) + +[fips2609335060] +centroid = (0.7413682187586117, -1.4612693065967137) +description = Green Oak township, MI +station = ('kozw', 0.004265467197165607) +zone = ('miz068', 0.0032548859096825709) + +[fips2609336100] +centroid = (0.74125527850271522, -1.4633769138415444) +description = Hamburg township, MI +station = ('kozw', 0.0032945006526262028) +zone = ('miz068', 0.0024593031157358601) + +[fips2609336340] +centroid = (0.74406529350501116, -1.4675963869345809) +description = Handy township, MI +station = ('kozw', 0.0013221372816597907) +zone = ('miz068', 0.0023104338046601551) + +[fips2609337040] +centroid = (0.74437025488521202, -1.4615503046062848) +description = Hartland township, MI +station = ('kozw', 0.0031454760055612506) +zone = ('miz068', 0.0023377995190565562) + +[fips2609339540] +centroid = (0.74365213916447892, -1.4649305710350846) +description = Howell city, MI +station = ('kozw', 0.00074023620047006732) +zone = ('miz068', 0.00030674633691550948) + +[fips2609339560] +centroid = (0.74428688050684433, -1.4656289645352705) +description = Howell township, MI +station = ('kozw', 0.00029136562757496338) +zone = ('miz068', 0.0010844902607564579) + +[fips2609340900] +centroid = (0.7426955242014609, -1.4674784550370237) +description = Iosco township, MI +station = ('kozw', 0.0018143221306528006) +zone = ('miz068', 0.0023365193013927359) + +[fips2609351640] +centroid = (0.74269379632550148, -1.4656029416761231) +description = Marion township, MI +station = ('kozw', 0.0013382723868598798) +zone = ('miz068', 0.0011733664702221155) + +[fips2609360120] +centroid = (0.74441214278725998, -1.4636524489705569) +description = Oceola township, MI +station = ('kozw', 0.0016268838423065669) +zone = ('miz068', 0.0010679177824038171) + +[fips2609366540] +centroid = (0.74115923303397802, -1.4655259901094027) +description = Putnam township, MI +station = ('kozw', 0.0028720457960122845) +zone = ('miz068', 0.0025125284709954089) + +[fips2609381160] +centroid = (0.74592024688732317, -1.4615891905420193) +description = Tyrone township, MI +station = ('kozw', 0.0036300988937344463) +zone = ('miz068', 0.003200002434332589) + +[fips2609381240] +centroid = (0.74127815976920886, -1.4673778717122312) +description = Unadilla township, MI +station = ('kozw', 0.0029818251708040701) +zone = ('miz068', 0.0031009732406796883) + +[fips26095] +centroid = (0.8192680577682353, -1.4936941032534345) +description = Luce County, MI +station = ('cwci', 0.0074740499662055747) +zone = ('miz007', 0.0082139827399465137) + +[fips2609500000] +centroid = (0.8192680577682353, -1.4936941032534345) +description = County subdivisions not defined, MI +station = ('cwci', 0.0074740499662055747) +zone = ('miz007', 0.0082139827399465137) + +[fips2609517480] +centroid = (0.81018984983703446, -1.4963793795740903) +description = Columbus township, MI +station = ('kery', 0.0038643478750466378) +zone = ('miz007', 0.0024690346140353679) + +[fips2609544540] +centroid = (0.80766763962839239, -1.496429959215813) +description = Lakefield township, MI +station = ('kery', 0.0034545382312720376) +zone = ('miz007', 0.004130086939924108) + +[fips2609550440] +centroid = (0.81175874375494472, -1.4925762722274096) +description = McMillan township, MI +station = ('kery', 0.0035542540492312746) +zone = ('miz007', 0.00075917351295930766) + +[fips2609560] +centroid = (0.77297175073580648, -1.4939584508219417) +description = Boon CDP, MI +station = ('kcad', 0.0022610292823890409) +zone = ('miz032', 0.00091081180420949574) + +[fips2609563500] +centroid = (0.80796588149097326, -1.490930793261922) +description = Pentland township, MI +station = ('kery', 0.00050950429098239696) +zone = ('miz007', 0.0034222323894462273) + +[fips26097] +centroid = (0.80578327744818412, -1.4888314065178681) +description = Mackinac County, MI +station = ('kery', 0.0031100559939246913) +zone = ('miz015', 0.0029747997733902153) + +[fips2609700000] +centroid = (0.80130137664881784, -1.4830745601532123) +description = County subdivisions not defined, MI +station = ('kmcd', 0.0041689869271899563) +zone = ('miz015', 0.0032951921657952002) + +[fips2609709500] +centroid = (0.79893347099934464, -1.4744965286790479) +description = Bois Blanc township, MI +station = ('kslh', 0.0021742371691321266) +zone = ('miz017', 0.0057411407655266443) + +[fips2609710360] +centroid = (0.80366296420639882, -1.4808132243078658) +description = Brevort township, MI +station = ('kmcd', 0.0040435839631919705) +zone = ('miz015', 0.0030608232083780191) + +[fips2609716060] +centroid = (0.80303406971702773, -1.4722095364936973) +description = Clark township, MI +station = ('kciu', 0.0044070820912584683) +zone = ('miz008', 0.0057038198803149222) + +[fips2609731620] +centroid = (0.80567747558892822, -1.4921792272758734) +description = Garfield township, MI +station = ('kery', 0.0026447300294386886) +zone = ('miz015', 0.0050802089554497143) + +[fips2609737660] +centroid = (0.80510345425123986, -1.4861077853135458) +description = Hendricks township, MI +station = ('kery', 0.004906041617888204) +zone = ('miz015', 0.0010722049621495638) + +[fips2609739760] +centroid = (0.80578327744818412, -1.4888314065178681) +description = Hudson township, MI +station = ('kery', 0.0031100559939246913) +zone = ('miz015', 0.0029747997733902153) + +[fips2609750280] +centroid = (0.80034186443924149, -1.4769227457788305) +description = Mackinac Island city, MI +station = ('kmcd', 0.00024561755823059381) +zone = ('miz016', 0.0067150601257620676) + +[fips2609751880] +centroid = (0.80417975619791449, -1.4759487647897549) +description = Marquette township, MI +station = ('kciu', 0.0032623048573600529) +zone = ('miz008', 0.003884568020711238) + +[fips2609755480] +centroid = (0.80361105811444467, -1.4825313438768217) +description = Moran township, MI +station = ('kmcd', 0.0048431115101673656) +zone = ('miz015', 0.0019240815998611709) + +[fips2609757640] +centroid = (0.8034182341386843, -1.4963853311468396) +description = Newton township, MI +station = ('kery', 0.0059202115669003174) +zone = ('miz015', 0.0078516694830462006) + +[fips2609765600] +centroid = (0.806011496701175, -1.4970129515458568) +description = Portage township, MI +station = ('kery', 0.0044312153489413893) +zone = ('miz014', 0.005549116171277014) + +[fips2609770840] +centroid = (0.80088220092236639, -1.4788473377982971) +description = St. Ignace city, MI +station = ('kmcd', 0.0012116002059307331) +zone = ('miz015', 0.0055290545476773473) + +[fips2609770860] +centroid = (0.80359168495974742, -1.478070212495554) +description = St. Ignace township, MI +station = ('kmcd', 0.0031552159323977162) +zone = ('miz008', 0.0046759200184997287) + +[fips2609820] +centroid = (0.78912981696455231, -1.4837530568999251) +description = Boyne City city, MI +station = ('kmgn', 0.0038920228870512469) +zone = ('miz019', 0.0020936149204164884) + +[fips2609840] +centroid = (0.78832698296192738, -1.4819950740108538) +description = Boyne Falls village, MI +station = ('kglr', 0.0038602301330460855) +zone = ('miz019', 0.0035424030351127208) + +[fips26099] +centroid = (0.74475759580610712, -1.4470676497396986) +description = Macomb County, MI +station = ('kmtc', 0.0013804532520359015) +zone = ('miz070', 0.00050230427860933685) + +[fips2609900000] +centroid = (0.74236234084725528, -1.4448314815421659) +description = County subdivisions not defined, MI +station = ('kmtc', 0.0015788882537333979) +zone = ('miz070', 0.0034084255257357176) + +[fips2609903540] +centroid = (0.74788653482261991, -1.4472938269574644) +description = Armada township, MI +station = ('kmtc', 0.0042469088319060109) +zone = ('miz070', 0.0027098622169028845) + +[fips2609911300] +centroid = (0.74778972140901179, -1.4493090190184019) +description = Bruce township, MI +station = ('kmtc', 0.0047833572576864792) +zone = ('miz070', 0.0029494829911484075) + +[fips2609914320] +centroid = (0.74142557027783229, -1.4491005743458365) +description = Center Line city, MI +station = ('kdet', 0.0011235304705174845) +zone = ('miz070', 0.0039473398173848094) + +[fips2609915340] +centroid = (0.74489568625652491, -1.4452436759516094) +description = Chesterfield township, MI +station = ('kmtc', 0.0011479918319517283) +zone = ('miz070', 0.0016390317865418677) + +[fips2609916520] +centroid = (0.74334173235701184, -1.4471738181180971) +description = Clinton charter township, MI +station = ('kmtc', 0.0011683330762789011) +zone = ('miz070', 0.0018474646084797387) + +[fips2609924290] +centroid = (0.74117291641531358, -1.4476867529319659) +description = Eastpointe city, MI +station = ('kdet', 0.0012506950004286586) +zone = ('miz070', 0.0040099997156336385) + +[fips2609930420] +centroid = (0.74242175185499304, -1.4476937517022663) +description = Fraser city, MI +station = ('kmtc', 0.0020067720960060824) +zone = ('miz070', 0.0027633635653415986) + +[fips2609936820] +centroid = (0.74327305365094587, -1.4454487521387185) +description = Harrison charter township, MI +station = ('kmtc', 0.00056313361426672522) +zone = ('miz070', 0.0024036088483607885) + +[fips2609946900] +centroid = (0.74631296342231435, -1.4451053237018037) +description = Lenox township, MI +station = ('kmtc', 0.0025514001680577636) +zone = ('miz070', 0.0020560790242048241) + +[fips2609950480] +centroid = (0.74479452697307935, -1.4471153146815705) +description = Macomb township, MI +station = ('kmtc', 0.0014313122796997515) +zone = ('miz070', 0.00045233797178876776) + +[fips2609952960] +centroid = (0.74860522650200623, -1.4445856344637298) +description = Memphis city, MI +station = ('kphn', 0.0030393531539499126) +zone = ('miz063', 0.0014164151711805707) + +[fips2609955820] +centroid = (0.74347633214892561, -1.4465551687114353) +description = Mount Clemens city, MI +station = ('kmtc', 0.00069888490248697088) +zone = ('miz070', 0.0018226117850144693) + +[fips2609957100] +centroid = (0.74500181972833868, -1.444043657371108) +description = New Baltimore city, MI +station = ('kmtc', 0.0017180228127359105) +zone = ('miz070', 0.0025026275061644249) + +[fips2609967420] +centroid = (0.7463403301849858, -1.4472352188011823) +description = Ray township, MI +station = ('kmtc', 0.00277435709371279) +zone = ('miz070', 0.0011712291089982492) + +[fips2609968380] +centroid = (0.74717686649546655, -1.4443417770606413) +description = Richmond city, MI +station = ('kmtc', 0.0035231543575178883) +zone = ('miz063', 0.0024911308025796666) + +[fips2609968400] +centroid = (0.74788742494053861, -1.4452607452716937) +description = Richmond township, MI +station = ('kmtc', 0.0040998387313818064) +zone = ('miz063', 0.0022650020349327632) + +[fips2609969800] +centroid = (0.74189733277464642, -1.4475164262502638) +description = Roseville city, MI +station = ('kdet', 0.0018924401052426933) +zone = ('miz070', 0.0032819461947064857) + +[fips2609970760] +centroid = (0.7416435095415288, -1.4467191423946602) +description = St. Clair Shores city, MI +station = ('kdet', 0.0020975579742175689) +zone = ('miz070', 0.0035748871338714128) + +[fips2609972820] +centroid = (0.74478602721962217, -1.4492613366232376) +description = Shelby charter township, MI +station = ('kvll', 0.0029093112404429441) +zone = ('miz070', 0.0013953246881819954) + +[fips2609976460] +centroid = (0.74318224416996459, -1.4491523931713282) +description = Sterling Heights city, MI +station = ('kvll', 0.0020107959079539335) +zone = ('miz070', 0.0023607601093175432) + +[fips2609981540] +centroid = (0.74401195624307015, -1.4490304644697838) +description = Utica city, MI +station = ('kvll', 0.0024880185315236396) +zone = ('miz070', 0.0016521184944225786) + +[fips2609982453] +centroid = (0.74098642798473802, -1.4463702161706016) +description = Village of Grosse Pointe Shores city, MI +station = ('kdet', 0.0019954831157844677) +zone = ('miz070', 0.0042657324096906524) + +[fips2609984000] +centroid = (0.74164108353386859, -1.4490596289215847) +description = Warren city, MI +station = ('kdet', 0.0013349136950319251) +zone = ('miz070', 0.0037332442701510232) + +[fips2609984120] +centroid = (0.74640075348368984, -1.4494437758899485) +description = Washington township, MI +station = ('kmtc', 0.0037778184890188624) +zone = ('miz070', 0.0019130395794687081) + +[fips26101] +centroid = (0.77406024277710539, -1.5115069161459962) +description = Manistee County, MI +station = ('kmbl', 0.0046441793111285214) +zone = ('miz037', 0.0076119879151174781) + +[fips2610100000] +centroid = (0.77406024277710539, -1.5115069161459962) +description = County subdivisions not defined, MI +station = ('kmbl', 0.0046441793111285214) +zone = ('miz037', 0.0076119879151174781) + +[fips2610103320] +centroid = (0.77621188467896385, -1.5045403471701981) +description = Arcadia township, MI +station = ('kfks', 0.0026416045633962481) +zone = ('miz031', 0.0030588952785147766) + +[fips2610106480] +centroid = (0.77458727985133002, -1.5032572683705945) +description = Bear Lake township, MI +station = ('kmbl', 0.0024873380439890858) +zone = ('miz031', 0.0012321686360464896) + +[fips2610111160] +centroid = (0.77330634780670637, -1.5029764972538262) +description = Brown township, MI +station = ('kmbl', 0.0018380774825881609) +zone = ('miz031', 0.0008453575911229231) + +[fips2610116380] +centroid = (0.7761635739652688, -1.4990347409513669) +description = Cleon township, MI +station = ('kfks', 0.0047236321762539014) +zone = ('miz031', 0.0031941655519532358) + +[fips2610122320] +centroid = (0.77316860642213903, -1.5000393350155223) +description = Dickson township, MI +station = ('kmbl', 0.003841831823371947) +zone = ('miz031', 0.0015091797628587061) + +[fips2610128040] +centroid = (0.77140538754531174, -1.5064837363857089) +description = Filer charter township, MI +station = ('kmbl', 0.0014453049619648976) +zone = ('miz037', 0.0036346239759243787) + +[fips2610150720] +centroid = (0.77223057921565463, -1.5066948165054448) +description = Manistee city, MI +station = ('kmbl', 0.0010336350545936783) +zone = ('miz037', 0.0044728171258610486) + +[fips2610150740] +centroid = (0.77294134710023676, -1.505324488696534) +description = Manistee township, MI +station = ('kmbl', 0.00034262685680861707) +zone = ('miz031', 0.0025296502841563513) + +[fips2610151000] +centroid = (0.77470285555439711, -1.5009463651744912) +description = Maple Grove township, MI +station = ('kmbl', 0.0037859954455744149) +zone = ('miz031', 0.0011976020526246961) + +[fips2610151580] +centroid = (0.7747182668116922, -1.4993132082335228) +description = Marilla township, MI +station = ('kmbl', 0.0048081549934951397) +zone = ('miz031', 0.0021335921626134888) + +[fips2610157900] +centroid = (0.7715133710661326, -1.5000058246938841) +description = Norman township, MI +station = ('kmbl', 0.0039775050585762568) +zone = ('miz031', 0.0026545449915349115) + +[fips2610160] +centroid = (0.75760704137184731, -1.4744288273573631) +description = Breckenridge village, MI +station = ('kamn', 0.0030475171622954627) +zone = ('miz052', 0.0025680749748559872) + +[fips2610160760] +centroid = (0.77464030295400566, -1.5049083323896886) +description = Onekama township, MI +station = ('kmbl', 0.0020651463643165092) +zone = ('miz031', 0.0022712877941996096) + +[fips2610164860] +centroid = (0.7760934640892162, -1.5032631675834662) +description = Pleasanton township, MI +station = ('kfks', 0.0028935175729865349) +zone = ('miz031', 0.0025068818265656431) + +[fips2610175680] +centroid = (0.77629447365916837, -1.5008475446322436) +description = Springdale township, MI +station = ('kfks', 0.0036414992191201984) +zone = ('miz031', 0.0026601165979468996) + +[fips2610176840] +centroid = (0.77156512007845424, -1.5036467036865919) +description = Stronach township, MI +station = ('kmbl', 0.0015975497656399208) +zone = ('miz031', 0.002498723051124229) + +[fips2610180] +centroid = (0.73915952204350543, -1.5021621964380156) +description = Breedsville village, MI +station = ('klwa', 0.0024321198202504769) +zone = ('miz071', 0.0018453904825980259) + +[fips26103] +centroid = (0.81431123542610873, -1.5286296607589043) +description = Marquette County, MI +station = ('ksaw', 0.0057537167741936778) +zone = ('miz005', 0.003990520010980575) + +[fips2610300] +centroid = (0.7730510235904321, -1.5011621053233304) +description = Brethren CDP, MI +station = ('kmbl', 0.0030296630789111707) +zone = ('miz031', 0.00091943665381151679) + +[fips2610300000] +centroid = (0.81928870501328643, -1.5270317420155333) +description = County subdivisions not defined, MI +station = ('kp59', 0.01026651936859665) +zone = ('miz005', 0.0090848293062771156) + +[fips2610314540] +centroid = (0.81402444292342113, -1.5330832872243882) +description = Champion township, MI +station = ('ksaw', 0.0073116631353587359) +zone = ('miz005', 0.0043485881812969779) + +[fips2610315660] +centroid = (0.81090354987475999, -1.5227612878550461) +description = Chocolay charter township, MI +station = ('ksaw', 0.0025857596819601194) +zone = ('miz005', 0.0047634209728862681) + +[fips2610325820] +centroid = (0.8101662180789625, -1.5325768799419219) +description = Ely township, MI +station = ('ksaw', 0.0051242658460055081) +zone = ('miz005', 0.0020407123745020146) + +[fips2610326840] +centroid = (0.8046116379213204, -1.5235651865085145) +description = Ewing township, MI +station = ('ksaw', 0.0045783105470284871) +zone = ('miz013', 0.0054820436478671391) + +[fips2610329720] +centroid = (0.80717090146998227, -1.5262777074187941) +description = Forsyth township, MI +station = ('ksaw', 0.0019633224934544578) +zone = ('miz005', 0.00395834912672147) + +[fips2610339940] +centroid = (0.80916504486014096, -1.5345242834147121) +description = Humboldt township, MI +station = ('ksaw', 0.0063433591214126688) +zone = ('miz005', 0.003585900794981456) + +[fips2610341220] +centroid = (0.81106050733439172, -1.5301706992219526) +description = Ishpeming city, MI +station = ('ksaw', 0.0039070733525918373) +zone = ('miz005', 0.00077419000547167651) + +[fips2610341240] +centroid = (0.81378348276689072, -1.5304780342499362) +description = Ishpeming township, MI +station = ('ksaw', 0.0059327026011888103) +zone = ('miz005', 0.0034520157103556976) + +[fips2610351900] +centroid = (0.81246294920153928, -1.5253450383731133) +description = Marquette city, MI +station = ('ksaw', 0.0034398216026542048) +zone = ('miz005', 0.0036123762660109139) + +[fips2610351920] +centroid = (0.81337453466985599, -1.5274232193667556) +description = Marquette charter township, MI +station = ('ksaw', 0.0045827781569224351) +zone = ('miz005', 0.0033577034739993585) + +[fips2610353540] +centroid = (0.81425140553935038, -1.5355500657759868) +description = Michigamme township, MI +station = ('ksaw', 0.0087617232856417402) +zone = ('miz004', 0.004610847329079658) + +[fips2610356860] +centroid = (0.81151776614512183, -1.5287585358708715) +description = Negaunee city, MI +station = ('ksaw', 0.0034337942701943925) +zone = ('miz005', 0.0012865739025656423) + +[fips2610356880] +centroid = (0.8124590222107223, -1.5279195735527302) +description = Negaunee township, MI +station = ('ksaw', 0.0038697869156516262) +zone = ('miz005', 0.0023895825920323376) + +[fips2610366120] +centroid = (0.8173259077364935, -1.5325070144119648) +description = Powell township, MI +station = ('ksaw', 0.0096552528268337625) +zone = ('miz005', 0.007220120927601336) + +[fips2610368000] +centroid = (0.80970901162811004, -1.5374729473727866) +description = Republic township, MI +station = ('ksaw', 0.0084024397280687245) +zone = ('miz004', 0.0057462687496937634) + +[fips2610368420] +centroid = (0.80988424268501025, -1.5280779272757636) +description = Richmond township, MI +station = ('ksaw', 0.002078823471844279) +zone = ('miz005', 0.0011813219969287259) + +[fips2610371460] +centroid = (0.81025444447265071, -1.5261054783282073) +description = Sands township, MI +station = ('ksaw', 0.0013410085934939301) +zone = ('miz005', 0.0024345082431298207) + +[fips2610374110] +centroid = (0.80868865724080907, -1.52145651461284) +description = Skandia township, MI +station = ('ksaw', 0.0026984705628703316) +zone = ('miz013', 0.0078386254632740321) + +[fips2610379780] +centroid = (0.80898230888745715, -1.5300598184545733) +description = Tilden township, MI +station = ('ksaw', 0.0032611799292310167) +zone = ('miz005', 0.0014291840326024093) + +[fips2610380780] +centroid = (0.80618379560493181, -1.5227982015687258) +description = Turin township, MI +station = ('ksaw', 0.0033372890250377655) +zone = ('miz013', 0.0061605902647712905) + +[fips2610385260] +centroid = (0.80396494107357885, -1.5268377661224666) +description = Wells township, MI +station = ('ksaw', 0.0051639453918807098) +zone = ('miz011', 0.0048093396879862107) + +[fips2610385540] +centroid = (0.80948204901218068, -1.5235720980123526) +description = West Branch township, MI +station = ('ksaw', 0.0013003811880301474) +zone = ('miz005', 0.0042746487877599257) + +[fips2610440] +centroid = (0.75696352102334452, -1.4640164548393528) +description = Bridgeport CDP, MI +station = ('khyx', 0.0011187173581580874) +zone = ('miz053', 0.0022612654992782816) + +[fips26105] +centroid = (0.76788615800146798, -1.5140873330851923) +description = Mason County, MI +station = ('kldm', 0.0044367157872079463) +zone = ('miz043', 0.008698682676358243) + +[fips2610500000] +centroid = (0.76788615800146798, -1.5140873330851923) +description = County subdivisions not defined, MI +station = ('kldm', 0.0044367157872079463) +zone = ('miz043', 0.008698682676358243) + +[fips2610501980] +centroid = (0.76723364920731729, -1.5070180340296218) +description = Amber township, MI +station = ('kldm', 0.00069342585329111312) +zone = ('miz037', 0.0013616414219198578) + +[fips2610510020] +centroid = (0.76701710620702235, -1.5027559574495442) +description = Branch township, MI +station = ('kldm', 0.0037653504172544382) +zone = ('miz037', 0.0020445215484377497) + +[fips2610519440] +centroid = (0.7669907342820248, -1.5047564887447651) +description = Custer township, MI +station = ('kldm', 0.002339168634537119) +zone = ('miz037', 0.00096991188615050308) + +[fips2610524820] +centroid = (0.76553584527085472, -1.5050048665506164) +description = Eden township, MI +station = ('kldm', 0.0028079187333386437) +zone = ('miz037', 0.0023413077659359717) + +[fips2610530620] +centroid = (0.77018664158193662, -1.5046392375256161) +description = Free Soil township, MI +station = ('kmbl', 0.0024651510296559197) +zone = ('miz037', 0.0023762189580558597) + +[fips2610534320] +centroid = (0.77026205725891528, -1.5072893280085518) +description = Grant township, MI +station = ('kmbl', 0.0027206116050174532) +zone = ('miz037', 0.0027762136077320613) + +[fips2610536220] +centroid = (0.76850224177412929, -1.5087733116583524) +description = Hamlin township, MI +station = ('kldm', 0.0012791363451062235) +zone = ('miz037', 0.0025492901498115404) + +[fips2610549140] +centroid = (0.76553584527085472, -1.5030491727638793) +description = Logan township, MI +station = ('kldm', 0.0039845451890817857) +zone = ('miz037', 0.0028544754871137759) + +[fips2610549640] +centroid = (0.76719780014448136, -1.5087138657440295) +description = Ludington city, MI +station = ('kldm', 0.00056417096279479941) +zone = ('miz037', 0.0025169574297234233) + +[fips2610552640] +centroid = (0.77001071239333552, -1.5026232426132224) +description = Meade township, MI +station = ('kmbl', 0.0032422463910716202) +zone = ('miz037', 0.0029019302036521776) + +[fips2610563600] +centroid = (0.7667326873521173, -1.5082971683851158) +description = Pere Marquette charter township, MI +station = ('kldm', 0.00067437870751651619) +zone = ('miz037', 0.0024099886565532008) + +[fips2610568860] +centroid = (0.76565962402140619, -1.5067132995422234) +description = Riverton township, MI +station = ('kldm', 0.0019271969867269837) +zone = ('miz037', 0.0024162363127120138) + +[fips2610572080] +centroid = (0.76710065511831538, -1.5058609854553044) +description = Scottville city, MI +station = ('kldm', 0.0015367392158098197) +zone = ('miz037', 0.00085058458344348204) + +[fips2610573060] +centroid = (0.76890150329381568, -1.5025608296391713) +description = Sheridan township, MI +station = ('kmbl', 0.0042030517155195422) +zone = ('miz037', 0.002252123550051954) + +[fips2610573240] +centroid = (0.76864911123068469, -1.5047070261137636) +description = Sherman township, MI +station = ('kldm', 0.0026727936158251432) +zone = ('miz037', 0.00090746334634895468) + +[fips2610577220] +centroid = (0.76548879119422097, -1.5080865595042776) +description = Summit township, MI +station = ('kldm', 0.0018763656106993989) +zone = ('miz037', 0.0030909281463065178) + +[fips2610580] +centroid = (0.73190677143025795, -1.5108810934361085) +description = Bridgman city, MI +station = ('kbeh', 0.0039705801327646565) +zone = ('miz077', 0.0020380876353921959) + +[fips2610582360] +centroid = (0.76861879486157758, -1.5068586680156222) +description = Victory township, MI +station = ('kldm', 0.001486427811599309) +zone = ('miz037', 0.0013265049783429221) + +[fips2610620] +centroid = (0.74228338215189493, -1.4623161725353524) +description = Brighton city, MI +station = ('kozw', 0.0031002923204666) +zone = ('miz068', 0.0020735444803498117) + +[fips26107] +centroid = (0.76157956782901903, -1.4893374647344837) +description = Mecosta County, MI +station = ('krqb', 0.0026454050243107535) +zone = ('miz045', 0.00014293930324151317) + +[fips2610700500] +centroid = (0.75954227989975109, -1.4923864676712553) +description = Aetna township, MI +station = ('krqb', 0.0035595434612816193) +zone = ('miz045', 0.003147852975572127) + +[fips2610704380] +centroid = (0.76093510500272021, -1.4900535209666994) +description = Austin township, MI +station = ('krqb', 0.0027210452440649523) +zone = ('miz045', 0.00096884507391767859) + +[fips2610708300] +centroid = (0.76269179634814499, -1.4919026624026024) +description = Big Rapids city, MI +station = ('krqb', 0.00051283379489862422) +zone = ('miz045', 0.0022066326226191746) + +[fips2610708320] +centroid = (0.76240163536000083, -1.4923314025333547) +description = Big Rapids charter township, MI +station = ('krqb', 0.00069994860123755501) +zone = ('miz045', 0.0023828122934630865) + +[fips2610715600] +centroid = (0.76405922691049755, -1.488064177231984) +description = Chippewa township, MI +station = ('krqb', 0.0032263255152321885) +zone = ('miz045', 0.002517834016855566) + +[fips2610717160] +centroid = (0.76235695493114985, -1.4901206986896087) +description = Colfax township, MI +station = ('krqb', 0.0017617639077948976) +zone = ('miz045', 0.00095487522927035628) + +[fips2610721240] +centroid = (0.75937003335587183, -1.4902729612135528) +description = Deerfield township, MI +station = ('krqb', 0.0040175486842556505) +zone = ('miz045', 0.0024362981955701191) + +[fips2610729680] +centroid = (0.76387713670963697, -1.4860726518357033) +description = Fork township, MI +station = ('krqb', 0.0045859776841847485) +zone = ('miz045', 0.0031510020998651318) + +[fips2610734340] +centroid = (0.7638654953635261, -1.4900096259360118) +description = Grant township, MI +station = ('krqb', 0.0018416636637713121) +zone = ('miz045', 0.0022662571919045281) + +[fips2610734760] +centroid = (0.76397492750762619, -1.492252531104457) +description = Green charter township, MI +station = ('krqb', 0.00087510121456100957) +zone = ('miz045', 0.0031888514059951953) + +[fips2610738540] +centroid = (0.75922113931738411, -1.4880527802319685) +description = Hinton township, MI +station = ('krqb', 0.004964360728261492) +zone = ('miz045', 0.0025915641173705406) + +[fips2610752060] +centroid = (0.76246909233559057, -1.4881838195522079) +description = Martiny township, MI +station = ('krqb', 0.0030627956104073784) +zone = ('miz045', 0.0010771441212250028) + +[fips2610752780] +centroid = (0.76105448552355659, -1.4923049433418947) +description = Mecosta township, MI +station = ('krqb', 0.00204717208621239) +zone = ('miz045', 0.0023369334980813065) + +[fips2610754020] +centroid = (0.75938827204655512, -1.4861398295586126) +description = Millbrook township, MI +station = ('krqb', 0.0058196073591612668) +zone = ('miz045', 0.0031834186658070574) + +[fips2610755600] +centroid = (0.76088504895977305, -1.4881314945812334) +description = Morton township, MI +station = ('krqb', 0.0037597562736528091) +zone = ('miz045', 0.001104029092703133) + +[fips2610760] +centroid = (0.73282259804865701, -1.463118727285297) +description = Britton village, MI +station = ('karb', 0.0041310170356901599) +zone = ('miz082', 0.0034620110892427404) + +[fips2610773080] +centroid = (0.76242992714717572, -1.4860281459397773) +description = Sheridan township, MI +station = ('krqb', 0.0046044776195757007) +zone = ('miz045', 0.0024103342239621402) + +[fips2610786560] +centroid = (0.76090786041309655, -1.4860822336932966) +description = Wheatland township, MI +station = ('krqb', 0.0050236884921007526) +zone = ('miz045', 0.0023801848298483867) + +[fips2610860] +centroid = (0.73080578283151487, -1.4868593939026247) +description = Bronson city, MI +station = ('koeb', 0.0020901435640369344) +zone = ('miz080', 0.0018763636075374121) + +[fips26109] +centroid = (0.79489579140119593, -1.5273357434646455) +description = Menominee County, MI +station = ('kesc', 0.006834761646839032) +zone = ('miz012', 0.00084220918230729633) + +[fips2610900000] +centroid = (0.79101965947861186, -1.5243171965233213) +description = County subdivisions not defined, MI +station = ('kmnm', 0.0049118817268750583) +zone = ('miz012', 0.0052360844610058336) + +[fips2610914240] +centroid = (0.79369456854351084, -1.5250073869760226) +description = Cedarville township, MI +station = ('kesc', 0.0063662848857679727) +zone = ('miz012', 0.002858869911145524) + +[fips2610919580] +centroid = (0.79370828683143146, -1.528039198419662) +description = Daggett township, MI +station = ('kmnm', 0.0060694312490475535) +zone = ('miz012', 0.0018009189746349891) + +[fips2610927300] +centroid = (0.79689059801647033, -1.5312405336935475) +description = Faithorn township, MI +station = ('kimt', 0.0054217773611200653) +zone = ('miz012', 0.002558679892239759) + +[fips2610933160] +centroid = (0.79576173650957294, -1.5253844130010383) +description = Gourley township, MI +station = ('kesc', 0.0052174801701211221) +zone = ('miz012', 0.0019612604078690431) + +[fips2610936760] +centroid = (0.79951360098941504, -1.5251774518583368) +description = Harris township, MI +station = ('kesc', 0.0044162894649172856) +zone = ('miz012', 0.0045167721959093613) + +[fips2610938760] +centroid = (0.794566796837195, -1.5312533967701347) +description = Holmes township, MI +station = ('kimt', 0.0068989881625389016) +zone = ('miz012', 0.0023594278299437889) + +[fips2610940600] +centroid = (0.79035458431384686, -1.5276332522889406) +description = Ingallston township, MI +station = ('kmnm', 0.0029368122792842464) +zone = ('miz012', 0.0051659282639895917) + +[fips2610944360] +centroid = (0.7925864240948346, -1.5316574753985563) +description = Lake township, MI +station = ('kmnm', 0.0050948013791732097) +zone = ('miz012', 0.0038118080186369079) + +[fips2610952860] +centroid = (0.79121148861669843, -1.5293729964873284) +description = Mellen township, MI +station = ('kmnm', 0.0034871964783835122) +zone = ('miz012', 0.0043786471818318745) + +[fips2610953020] +centroid = (0.78752900097462308, -1.5293198512116053) +description = Menominee city, MI +station = ('kmnm', 0.00023014350791829863) +zone = ('wiz073', 0.0041466366054009763) + +[fips2610953040] +centroid = (0.78924493888201397, -1.5296477287648849) +description = Menominee township, MI +station = ('kmnm', 0.0015237214996490071) +zone = ('wiz073', 0.003796376449447521) + +[fips2610953460] +centroid = (0.79869671708631162, -1.5295976552686452) +description = Meyer township, MI +station = ('kesc', 0.0073843634647449965) +zone = ('miz012', 0.0033434085961515122) + +[fips2610956440] +centroid = (0.79527414387644324, -1.5279121035435317) +description = Nadeau township, MI +station = ('kesc', 0.0069979820641029042) +zone = ('miz012', 0.00029182282426784941) + +[fips2610975350] +centroid = (0.79967919782884433, -1.5280893417290717) +description = Spalding township, MI +station = ('kesc', 0.0064370082930031462) +zone = ('miz012', 0.0041724060291554914) + +[fips2610976380] +centroid = (0.79261949808415988, -1.5290658534455626) +description = Stephenson city, MI +station = ('kmnm', 0.0049033307821593902) +zone = ('miz012', 0.0029561229672580625) + +[fips2610976400] +centroid = (0.7926606354946294, -1.5278123754300728) +description = Stephenson township, MI +station = ('kmnm', 0.005074631230624997) +zone = ('miz012', 0.0028570752008770001) + +[fips2611000] +centroid = (0.73488006198407796, -1.4704190206673688) +description = Brooklyn village, MI +station = ('kjxn', 0.0039809433128761779) +zone = ('miz074', 0.0033646289110123052) + +[fips26111] +centroid = (0.76180790925505748, -1.4726952092646497) +description = Midland County, MI +station = ('kikw', 0.0015190890322140682) +zone = ('miz047', 0.00011302810422702943) + +[fips2611117100] +centroid = (0.76374143736029432, -1.4763202057611644) +description = Coleman city, MI +station = ('kmop', 0.0030983521873072339) +zone = ('miz047', 0.0031861293960250879) + +[fips2611124830] +centroid = (0.76384970013379561, -1.4737875933901805) +description = Edenville township, MI +station = ('kikw', 0.0029397904619240557) +zone = ('miz047', 0.0021782463185767999) + +[fips2611131820] +centroid = (0.76250651219475329, -1.4753655455669086) +description = Geneva township, MI +station = ('kikw', 0.0034719551560533535) +zone = ('miz047', 0.0019613907739341415) + +[fips2611134860] +centroid = (0.7608877193135285, -1.4755008085839381) +description = Greendale township, MI +station = ('kmop', 0.0024710797993089928) +zone = ('miz047', 0.0021185854754381598) + +[fips2611138980] +centroid = (0.76109797912851629, -1.4719342457107802) +description = Homer township, MI +station = ('kikw', 0.0013212232761678007) +zone = ('miz047', 0.00094967599774678372) + +[fips2611139160] +centroid = (0.76417708899488479, -1.4718076395268405) +description = Hope township, MI +station = ('kikw', 0.0023316603061334022) +zone = ('miz047', 0.0025116319697234676) + +[fips2611140620] +centroid = (0.75969084232568096, -1.4700924521110281) +description = Ingersoll township, MI +station = ('kmbs', 0.0018602778511024628) +zone = ('miz047', 0.0028889572528588521) + +[fips2611141560] +centroid = (0.75951152719833093, -1.4755609002700842) +description = Jasper township, MI +station = ('kmop', 0.0029675374383025996) +zone = ('miz047', 0.0030022214978595524) + +[fips2611141760] +centroid = (0.76240500384545729, -1.4733856615167387) +description = Jerome township, MI +station = ('kikw', 0.0020428737960991733) +zone = ('miz047', 0.00073632524921012218) + +[fips2611146160] +centroid = (0.76284210410332676, -1.4696583189128871) +description = Larkin charter township, MI +station = ('kikw', 0.0010813007385248479) +zone = ('miz048', 0.0026888462320769492) + +[fips2611146640] +centroid = (0.76092964212216141, -1.473521622665469) +description = Lee township, MI +station = ('kikw', 0.0023657646125868001) +zone = ('miz047', 0.0009810402180674407) + +[fips2611147680] +centroid = (0.7627498110924813, -1.47168913167063) +description = Lincoln township, MI +station = ('kikw', 0.0010725107685083349) +zone = ('miz047', 0.001280934447345285) + +[fips2611153780] +centroid = (0.76139632571085225, -1.4701254562871833) +description = Midland city, MI +station = ('kikw', 0.00070903354901322136) +zone = ('miz047', 0.0020065719044920411) + +[fips2611153800] +centroid = (0.760800156144956, -1.4702522719106332) +description = Midland charter township, MI +station = ('kikw', 0.0012386544753152852) +zone = ('miz047', 0.0021186224322090937) + +[fips2611154320] +centroid = (0.76412797542973365, -1.4701292261983678) +description = Mills township, MI +station = ('kikw', 0.0021460667522944458) +zone = ('miz047', 0.0030609282244530153) + +[fips2611155940] +centroid = (0.75959593132095748, -1.4716821329003296) +description = Mount Haley township, MI +station = ('kikw', 0.0025356219796574724) +zone = ('miz047', 0.0023416604769509177) + +[fips2611165740] +centroid = (0.75932943699747046, -1.473491585549042) +description = Porter township, MI +station = ('kikw', 0.0033960375341297085) +zone = ('miz047', 0.0024950602706437803) + +[fips2611180] +centroid = (0.75418258320638676, -1.4484204020830418) +description = Brown City city, MI +station = ('kd95', 0.0044056363535727068) +zone = ('miz062', 0.0036499301800478833) + +[fips2611184020] +centroid = (0.76398393340656645, -1.4755632215579892) +description = Warren township, MI +station = ('kmop', 0.0036312610346376502) +zone = ('miz047', 0.00295152977454491) + +[fips2611200] +centroid = (0.73876710221448705, -1.4858608735842662) +description = Brownlee Park CDP, MI +station = ('kbtl', 0.0015815699731159172) +zone = ('miz073', 0.0021826455255188888) + +[fips26113] +centroid = (0.77362459114251503, -1.4850216145601522) +description = Missaukee County, MI +station = ('kcad', 0.0042014404636919675) +zone = ('miz033', 0.00023714682377773194) + +[fips2611300520] +centroid = (0.77319258724606132, -1.4843033243064938) +description = Aetna township, MI +station = ('kcad', 0.0046615669921647833) +zone = ('miz033', 0.00089694541488999401) + +[fips2611309080] +centroid = (0.77609117770789604, -1.4883482295677459) +description = Bloomfield township, MI +station = ('kcad', 0.0036502130236361198) +zone = ('miz033', 0.0031967746641801079) + +[fips2611312200] +centroid = (0.7732479141833497, -1.482142030733872) +description = Butterfield township, MI +station = ('khtl', 0.0032698093110061608) +zone = ('miz033', 0.0022524280475881547) + +[fips2611312440] +centroid = (0.77447676560309386, -1.4883434822721806) +description = Caldwell township, MI +station = ('kcad', 0.0023687647412703825) +zone = ('miz033', 0.002350216210426798) + +[fips2611315900] +centroid = (0.77164273487029045, -1.483981712485229) +description = Clam Union township, MI +station = ('kcad', 0.0050423168905630381) +zone = ('miz033', 0.0023519630093220452) + +[fips2611326200] +centroid = (0.77469098731548358, -1.482039527546902) +description = Enterprise township, MI +station = ('khtl', 0.0031585008650954526) +zone = ('miz033', 0.0024057929467569449) + +[fips2611329440] +centroid = (0.77454680566597622, -1.4862707467058047) +description = Forest township, MI +station = ('kcad', 0.0036402369931478619) +zone = ('miz033', 0.0010565695453315835) + +[fips2611338620] +centroid = (0.77163299593306434, -1.4820717288716014) +description = Holland township, MI +station = ('khtl', 0.0039497729728562667) +zone = ('miz033', 0.0031299571045063242) + +[fips2611344380] +centroid = (0.7732204077943382, -1.4885196732601693) +description = Lake township, MI +station = ('kcad', 0.0016667772544459963) +zone = ('miz033', 0.0024645063739436443) + +[fips2611344480] +centroid = (0.77369957048718074, -1.4871685266197379) +description = Lake City city, MI +station = ('kcad', 0.0027233334114856187) +zone = ('miz033', 0.0014265841565931784) + +[fips2611349980] +centroid = (0.77136648415628473, -1.4872888147117853) +description = McBain city, MI +station = ('kcad', 0.0029421510609584736) +zone = ('miz033', 0.0028901125471219162) + +[fips2611359280] +centroid = (0.77620101127772401, -1.4831340060675351) +description = Norwich township, MI +station = ('kgov', 0.0047561827869172816) +zone = ('miz033', 0.0027847743295781172) + +[fips2611364460] +centroid = (0.77602386035864657, -1.4861578413564929) +description = Pioneer township, MI +station = ('kcad', 0.0045652623118111928) +zone = ('miz033', 0.0023000546364496731) + +[fips2611367840] +centroid = (0.77302896262868692, -1.486146566529525) +description = Reeder township, MI +station = ('kcad', 0.0033355250550018644) +zone = ('miz033', 0.0010584422941454395) + +[fips2611368280] +centroid = (0.77162967980748542, -1.4883052421082692) +description = Richland township, MI +station = ('kcad', 0.0021879899898917276) +zone = ('miz033', 0.0031381964423913499) + +[fips2611368820] +centroid = (0.77171106451050597, -1.4859899057758661) +description = Riverside township, MI +station = ('kcad', 0.0036430109202077103) +zone = ('miz033', 0.0021981412214285758) + +[fips2611380] +centroid = (0.79402768208454655, -1.4797212241547706) +description = Brutus CDP, MI +station = ('kpln', 0.0012802089516044356) +zone = ('miz016', 0.0014054627227577407) + +[fips2611385560] +centroid = (0.77459447060784825, -1.4841355981653772) +description = West Branch township, MI +station = ('khtl', 0.0046238672401328574) +zone = ('miz033', 0.0010686575328067265) + +[fips2611400] +centroid = (0.73004139843231142, -1.507370607991817) +description = Buchanan city, MI +station = ('ksbn', 0.0023292920866244391) +zone = ('miz077', 0.0022851964611016293) + +[fips2611480] +centroid = (0.77667881261375005, -1.4952567663459151) +description = Buckley village, MI +station = ('ktvc', 0.0042702043670734364) +zone = ('miz032', 0.0030580729927911425) + +[fips26115] +centroid = (0.7315739022353176, -1.4571248826615131) +description = Monroe County, MI +station = ('kttf', 0.00079794693584176401) +zone = ('miz083', 0.00069077698942010329) + +[fips2611500000] +centroid = (0.73103983148420737, -1.4535621595127095) +description = County subdivisions not defined, MI +station = ('kttf', 0.002188437763714511) +zone = ('miz083', 0.0033903655881885688) + +[fips2611503680] +centroid = (0.73401491972715682, -1.4550067161747078) +description = Ash township, MI +station = ('kttf', 0.0022127760375758921) +zone = ('miz083', 0.003137956552885257) + +[fips2611506740] +centroid = (0.72907614408949606, -1.45903451720929) +description = Bedford township, MI +station = ('kduh', 0.0010028750984536331) +zone = ('ohz003', 0.0027899834079777109) + +[fips2611507720] +centroid = (0.7335383750281923, -1.4530745494262873) +description = Berlin charter township, MI +station = ('konz', 0.0017239676265848485) +zone = ('miz083', 0.0040527566313488346) + +[fips2611523400] +centroid = (0.73231636529911603, -1.4604306584378379) +description = Dundee township, MI +station = ('kttf', 0.0031554106489673091) +zone = ('miz083', 0.0018788387534054872) + +[fips2611526320] +centroid = (0.72910522127483424, -1.4570356963367361) +description = Erie township, MI +station = ('kttf', 0.0029505717247216173) +zone = ('miz083', 0.0027915480326259406) + +[fips2611526880] +centroid = (0.73383733247576655, -1.4570546855189979) +description = Exeter township, MI +station = ('kttf', 0.0019499154288029569) +zone = ('miz083', 0.0021528698536409929) + +[fips2611528360] +centroid = (0.73460995482903924, -1.4536138387118611) +description = Flat Rock city, MI +station = ('konz', 0.0016235332024444817) +zone = ('miz076', 0.00338507388640326) + +[fips2611530820] +centroid = (0.73235706637727249, -1.4548729541408347) +description = Frenchtown township, MI +station = ('kttf', 0.0010600290692774229) +zone = ('miz083', 0.0023917058966959567) + +[fips2611540260] +centroid = (0.73071825456952744, -1.4590697554068879) +description = Ida township, MI +station = ('kduh', 0.002406566249081542) +zone = ('miz083', 0.0013448808772750752) + +[fips2611546260] +centroid = (0.73055656726762264, -1.4569712238741674) +description = La Salle township, MI +station = ('kttf', 0.0015421951766314695) +zone = ('miz083', 0.001462909866697038) + +[fips2611549180] +centroid = (0.73369163238980994, -1.4591961696046098) +description = London township, MI +station = ('kttf', 0.0027957509169133339) +zone = ('miz083', 0.0020875446904544) + +[fips2611549700] +centroid = (0.72963372442563057, -1.4563424690111366) +description = Luna Pier city, MI +station = ('kttf', 0.0023594076515827457) +zone = ('miz083', 0.0024958640258798135) + +[fips2611553900] +centroid = (0.7336662203959009, -1.4612589742475419) +description = Milan township, MI +station = ('karb', 0.0031715587313037156) +zone = ('miz083', 0.0030558958504203833) + +[fips2611553920] +centroid = (0.73439506989153369, -1.4605818039510607) +description = Milan city, MI +station = ('karb', 0.0025657730386490002) +zone = ('miz083', 0.0032247638861644364) + +[fips2611555] +centroid = (0.75777433118065096, -1.4643126023068311) +description = Buena Vista CDP, MI +station = ('khyx', 0.00054023629311895558) +zone = ('miz053', 0.0024273224453887983) + +[fips2611555020] +centroid = (0.7315840425982717, -1.455341103806097) +description = Monroe city, MI +station = ('kttf', 0.0007643062264881637) +zone = ('miz083', 0.0019910611438385185) + +[fips2611555040] +centroid = (0.73117293029296448, -1.4560301772480773) +description = Monroe charter township, MI +station = ('kttf', 0.00082910180117767949) +zone = ('miz083', 0.001596054454742553) + +[fips2611563800] +centroid = (0.73127927320428854, -1.4610771982059465) +description = Petersburg city, MI +station = ('kduh', 0.0029506076676265726) +zone = ('miz083', 0.0023482444575181716) + +[fips2611566900] +centroid = (0.73231105949818998, -1.4574549069697726) +description = Raisinville township, MI +station = ('kttf', 0.00097918327086390813) +zone = ('miz083', 0.00065075653349198968) + +[fips2611577140] +centroid = (0.73077567590191805, -1.4610497790833978) +description = Summerfield township, MI +station = ('kduh', 0.0024611574592930375) +zone = ('miz083', 0.0024908377298930857) + +[fips2611586740] +centroid = (0.72906125643097641, -1.4610189740221002) +description = Whiteford township, MI +station = ('kduh', 0.00095559006490703632) +zone = ('ohz003', 0.0027391178787516115) + +[fips26117] +centroid = (0.75595065409853457, -1.486138572921551) +description = Montcalm County, MI +station = ('ky70', 0.006605332064286768) +zone = ('miz051', 4.8515672851860781e-05) + +[fips2611707200] +centroid = (0.75787482723898081, -1.4860460006580254) +description = Belvidere township, MI +station = ('krqb', 0.0069311813265618156) +zone = ('miz051', 0.0019580653458527992) + +[fips2611709040] +centroid = (0.75329375683151611, -1.4817441829308797) +description = Bloomer township, MI +station = ('kamn', 0.003880364555756795) +zone = ('miz058', 0.0043853171963285) + +[fips2611712120] +centroid = (0.75346048813495914, -1.4837046065598898) +description = Bushnell township, MI +station = ('ky70', 0.0040663895547382607) +zone = ('miz051', 0.0030536012544439902) + +[fips2611713600] +centroid = (0.75365997926846218, -1.4808284959388209) +description = Carson City city, MI +station = ('kamn', 0.0031640521779132502) +zone = ('miz052', 0.0036207216387603423) + +[fips2611714000] +centroid = (0.75776775128937091, -1.4882976673793156) +description = Cato township, MI +station = ('krqb', 0.0060812832818435691) +zone = ('miz051', 0.0024008979740576379) + +[fips2611719080] +centroid = (0.75489204209402994, -1.4816510870685782) +description = Crystal township, MI +station = ('kamn', 0.0028705499220386451) +zone = ('miz051', 0.003460192530246005) + +[fips2611719920] +centroid = (0.75648058841931765, -1.4837845775462162) +description = Day township, MI +station = ('kamn', 0.0041654712992007167) +zone = ('miz051', 0.0018373862582879252) + +[fips2611722760] +centroid = (0.75646770788943796, -1.4861375431772925) +description = Douglass township, MI +station = ('ky70', 0.0071150263126370603) +zone = ('miz051', 0.00054946940120461274) + +[fips2611726520] +centroid = (0.75317310222032585, -1.4880112413957709) +description = Eureka township, MI +station = ('ky70', 0.0044946472940536461) +zone = ('miz051', 0.0030502792347869867) + +[fips2611726720] +centroid = (0.7547993476574566, -1.4838630999092635) +description = Evergreen township, MI +station = ('ky70', 0.0053802869960681713) +zone = ('miz051', 0.0020307653699946017) + +[fips2611727180] +centroid = (0.75320237139188173, -1.4858256353866686) +description = Fairplain township, MI +station = ('ky70', 0.0038671742942469616) +zone = ('miz051', 0.0027301000085843455) + +[fips2611727900] +centroid = (0.75629303533789838, -1.4817053668083153) +description = Ferris township, MI +station = ('kamn', 0.0026431625329306528) +zone = ('miz051', 0.0032837511346380755) + +[fips2611735100] +centroid = (0.75362680055938169, -1.4879625816162252) +description = Greenville city, MI +station = ('ky70', 0.0048591460061006694) +zone = ('miz051', 0.0026314204212153003) + +[fips2611738840] +centroid = (0.75811908606779743, -1.4841024020030043) +description = Home township, MI +station = ('kamn', 0.00481564851515016) +zone = ('miz051', 0.0026720830199916355) + +[fips2611751340] +centroid = (0.75649708178074904, -1.4903989914388394) +description = Maple Valley township, MI +station = ('krqb', 0.0067511221057845443) +zone = ('miz051', 0.0031159735360355269) + +[fips2611755140] +centroid = (0.75473620164511934, -1.4881288591340627) +description = Montcalm township, MI +station = ('ky70', 0.0058932857413343054) +zone = ('miz051', 0.0018421179547408444) + +[fips2611764040] +centroid = (0.75665559258341508, -1.4922197363678122) +description = Pierson township, MI +station = ('krqb', 0.006446478312393763) +zone = ('miz044', 0.0052008269430323254) + +[fips2611764200] +centroid = (0.75649910636268125, -1.4883014023839147) +description = Pine township, MI +station = ('krqb', 0.0072193751337939344) +zone = ('miz051', 0.0016418009682298981) + +[fips2611768120] +centroid = (0.75784866475349333, -1.4927367028922529) +description = Reynolds township, MI +station = ('krqb', 0.0052612064545958835) +zone = ('miz044', 0.0041648350119856854) + +[fips2611768300] +centroid = (0.75774487002287727, -1.4817063441926965) +description = Richland township, MI +station = ('kamn', 0.0031013176986359691) +zone = ('miz051', 0.0037357863966599753) + +[fips2611773840] +centroid = (0.75478596098209372, -1.4859462376379811) +description = Sidney township, MI +station = ('ky70', 0.0054343480788305977) +zone = ('miz051', 0.0011473700360360971) + +[fips2611776220] +centroid = (0.7556080459663681, -1.4849187274007472) +description = Stanton city, MI +station = ('ky70', 0.006168708921356428) +zone = ('miz051', 0.00097602571019040024) + +[fips2611787880] +centroid = (0.75787247104449063, -1.4900597343388367) +description = Winfield township, MI +station = ('krqb', 0.0054815276895249544) +zone = ('miz051', 0.003424751483241768) + +[fips2611800] +centroid = (0.73486948528881091, -1.4849118682567868) +description = Burlington village, MI +station = ('krmy', 0.0030111481527004191) +zone = ('miz073', 0.0026500853630567539) + +[fips26119] +centroid = (0.78581938115912453, -1.468347367205129) +description = Montmorency County, MI +station = ('kpzq', 0.0077370099106903378) +zone = ('miz023', 6.8193099463795899e-05) + +[fips2611900940] +centroid = (0.78350029236882968, -1.4703265880301832) +description = Albert township, MI +station = ('kgov', 0.0070505859970638038) +zone = ('miz023', 0.0027773802979408043) + +[fips2611904580] +centroid = (0.78503834631885716, -1.4672951256523943) +description = Avery township, MI +station = ('kpzq', 0.0081044075091398007) +zone = ('miz023', 0.0010992859916488104) + +[fips2611910660] +centroid = (0.7856992676000023, -1.4694130303398119) +description = Briley township, MI +station = ('kpzq', 0.0082404200694981399) +zone = ('miz023', 0.00080791922624513324) + +[fips2611920] +centroid = (0.73037140528727862, -1.4891863192212609) +description = Burr Oak village, MI +station = ('kirs', 0.0016126307330181209) +zone = ('miz079', 0.0028960222260921583) + +[fips2611938400] +centroid = (0.78664703374371281, -1.4661405030857375) +description = Hillman township, MI +station = ('kpzq', 0.0063062273956160514) +zone = ('miz023', 0.001707453059632248) + +[fips2611949480] +centroid = (0.78376860183473873, -1.4671308552631965) +description = Loud township, MI +station = ('kapn', 0.0068298561430092733) +zone = ('miz023', 0.0022654887315509166) + +[fips2611955240] +centroid = (0.7884043010477908, -1.4683586420320969) +description = Montmorency township, MI +station = ('kpzq', 0.0056589967409950712) +zone = ('miz023', 0.0025265302656407949) + +[fips2611970380] +centroid = (0.78425678787981412, -1.4653217342270417) +description = Rust township, MI +station = ('kapn', 0.0054687371354680894) +zone = ('miz023', 0.0026574177438938185) + +[fips2611982420] +centroid = (0.78596159058657711, -1.4720560522392769) +description = Vienna township, MI +station = ('kglr', 0.0042121452924485606) +zone = ('miz022', 0.0031660829186674522) + +[fips2612000] +centroid = (0.75449621887297025, -1.4645016912779922) +description = Burt CDP, MI +station = ('khyx', 0.0036086926533649795) +zone = ('miz053', 0.0025913344535507042) + +[fips2612060] +centroid = (0.75050728632082964, -1.4594127300581972) +description = Burton city, MI +station = ('kfnt', 0.0017858506856907727) +zone = ('miz061', 0.0011864831188033585) + +[fips26121] +centroid = (0.75554008284529539, -1.5141061477345286) +description = Muskegon County, MI +station = ('kmkg', 0.006932952820019384) +zone = ('miz043', 0.0086778631338780242) + +[fips2612100000] +centroid = (0.75554008284529539, -1.5141061477345286) +description = County subdivisions not defined, MI +station = ('kmkg', 0.006932952820019384) +zone = ('miz043', 0.0086778631338780242) + +[fips2612109340] +centroid = (0.75802695013658461, -1.5044475654671621) +description = Blue Lake township, MI +station = ('kffx', 0.0026463212228140867) +zone = ('miz050', 0.0025349586805394971) + +[fips2612113840] +centroid = (0.75469012495286669, -1.4982024981508462) +description = Casnovia township, MI +station = ('kffx', 0.0039634890335047161) +zone = ('miz050', 0.0040057715264869296) + +[fips2612114100] +centroid = (0.75661445517294557, -1.5026172037740106) +description = Cedar Creek township, MI +station = ('kffx', 0.0020371431226804981) +zone = ('miz050', 0.0012494264134103247) + +[fips2612119660] +centroid = (0.75653448418661917, -1.5049398530359797) +description = Dalton township, MI +station = ('kmkg', 0.0031351570756338108) +zone = ('miz050', 0.0013851975727825379) + +[fips2612125080] +centroid = (0.75497422964850636, -1.5024234373204541) +description = Egelston township, MI +station = ('kmkg', 0.0024813221154682207) +zone = ('miz050', 0.0010267108792438003) + +[fips2612130980] +centroid = (0.75649849549744319, -1.5069322336435937) +description = Fruitland township, MI +station = ('kmkg', 0.003386129877335795) +zone = ('miz050', 0.0026164730595260315) + +[fips2612131020] +centroid = (0.75311676299207142, -1.503403003363136) +description = Fruitport charter township, MI +station = ('kmkg', 0.0012384354165297464) +zone = ('miz050', 0.0024601537046110571) + +[fips2612138820] +centroid = (0.75797582944279362, -1.502541526297644) +description = Holton township, MI +station = ('kffx', 0.0012734172382356369) +zone = ('miz050', 0.0025151239369960014) + +[fips2612145160] +centroid = (0.75522873356003217, -1.5065174910534422) +description = Laketon township, MI +station = ('kmkg', 0.0021160207347821953) +zone = ('miz050', 0.0021748043833063556) + +[fips2612155100] +centroid = (0.75770516378239439, -1.5073408501280705) +description = Montague city, MI +station = ('kmkg', 0.0046149138469230985) +zone = ('miz050', 0.0034739486190427946) + +[fips2612155120] +centroid = (0.75835864996092617, -1.5071055448383166) +description = Montague township, MI +station = ('kffx', 0.0045756003026659921) +zone = ('miz043', 0.003479420876717152) + +[fips2612155440] +centroid = (0.75480065665439555, -1.5003734433942315) +description = Moorland township, MI +station = ('kffx', 0.0033851971545381596) +zone = ('miz050', 0.00245126522137096) + +[fips2612156320] +centroid = (0.75447473386987807, -1.5054409894241048) +description = Muskegon city, MI +station = ('kmkg', 0.0011104048328826196) +zone = ('miz050', 0.0017518245371935975) + +[fips2612156340] +centroid = (0.75504833632854607, -1.504454476971) +description = Muskegon charter township, MI +station = ('kmkg', 0.0017051161793960018) +zone = ('miz050', 0.00083238109948133581) + +[fips2612156360] +centroid = (0.75401576463648112, -1.5051887544406064) +description = Muskegon Heights city, MI +station = ('kmkg', 0.0006229181139303353) +zone = ('miz050', 0.0019549439295772409) + +[fips2612158640] +centroid = (0.75489265295926822, -1.5057100493815923) +description = North Muskegon city, MI +station = ('kmkg', 0.0015665799151474312) +zone = ('miz050', 0.0017019804813721161) + +[fips2612159140] +centroid = (0.75345012087920227, -1.5050913825216377) +description = Norton Shores city, MI +station = ('kmkg', 5.6103309238536662e-05) +zone = ('miz050', 0.0023964055718815208) + +[fips2612167300] +centroid = (0.75343807810736352, -1.5004075820344007) +description = Ravenna township, MI +station = ('kmkg', 0.0033902511597657713) +zone = ('miz050', 0.0031407805034848473) + +[fips2612169520] +centroid = (0.75394989591051087, -1.5057539444122798) +description = Roosevelt Park city, MI +station = ('kmkg', 0.00074912510110987818) +zone = ('miz050', 0.0022744532690821616) + +[fips2612177100] +centroid = (0.75337561277343468, -1.5024184456787935) +description = Sullivan township, MI +station = ('kmkg', 0.001923629235338458) +zone = ('miz050', 0.00235252370612111) + +[fips2612186780] +centroid = (0.75748191871777182, -1.5069102774016037) +description = Whitehall city, MI +station = ('kmkg', 0.0042989775419975968) +zone = ('miz050', 0.0030899843784355134) + +[fips2612186800] +centroid = (0.75768226506260827, -1.5062018657115115) +description = Whitehall township, MI +station = ('kffx', 0.0039472854560629418) +zone = ('miz050', 0.0028483329843117331) + +[fips2612186980] +centroid = (0.75813074486720067, -1.5083870528415935) +description = White River township, MI +station = ('kmkg', 0.0053154071650255014) +zone = ('miz043', 0.004061421016189292) + +[fips2612260] +centroid = (0.7474647061957056, -1.4652175904305753) +description = Byron village, MI +station = ('kozw', 0.0034670608841895737) +zone = ('miz060', 0.0033465257123936019) + +[fips2612280] +centroid = (0.74720594368080473, -1.4962333653288684) +description = Byron Center CDP, MI +station = ('kgrr', 0.0029772699829749972) +zone = ('miz064', 0.0043639054939046094) + +[fips2612290] +centroid = (0.77230315000595251, -1.4961825413410506) +description = Caberfae CDP, MI +station = ('kcad', 0.0038973885423265226) +zone = ('miz032', 0.0023964462980961602) + +[fips26123] +centroid = (0.76031270313816646, -1.4973428013211911) +description = Newaygo County, MI +station = ('kffx', 0.0033025401390795648) +zone = ('miz044', 0.00019084724400889177) + +[fips2612303700] +centroid = (0.75637714275455192, -1.4984816461114099) +description = Ashland township, MI +station = ('kffx', 0.002465286337851624) +zone = ('miz044', 0.0038524321600449983) + +[fips2612305620] +centroid = (0.76392267234982147, -1.4945948851336812) +description = Barton township, MI +station = ('krqb', 0.0018311438936345602) +zone = ('miz044', 0.0043090619631839583) + +[fips2612306580] +centroid = (0.76251092787776076, -1.5004942027251773) +description = Beaver township, MI +station = ('kffx', 0.0043458768027607895) +zone = ('miz044', 0.0031905623452790789) + +[fips2612308280] +centroid = (0.75942916511092928, -1.4944965532836239) +description = Big Prairie township, MI +station = ('krqb', 0.0039935686620385259) +zone = ('miz044', 0.0023037785348505786) + +[fips2612310500] +centroid = (0.75638956949882619, -1.5004119977174082) +description = Bridgeton township, MI +station = ('kffx', 0.0018046240764530408) +zone = ('miz050', 0.0024368331695604935) + +[fips2612311060] +centroid = (0.75777649538892344, -1.4963405983581111) +description = Brooks township, MI +station = ('kffx', 0.0032687119572143439) +zone = ('miz044', 0.0025335282545574014) + +[fips2612318980] +centroid = (0.75784501701535667, -1.4945688971811191) +description = Croton township, MI +station = ('krqb', 0.0055013159546658122) +zone = ('miz044', 0.0031505966766608015) + +[fips2612319960] +centroid = (0.75946791142032366, -1.5008039986674062) +description = Dayton township, MI +station = ('kffx', 0.0012968886967022093) +zone = ('miz044', 0.0024887119013735754) + +[fips2612320] +centroid = (0.7723313545266649, -1.4907552829523412) +description = Cadillac city, MI +station = ('kcad', 0.00055961968899522212) +zone = ('miz032', 0.0025560090838132937) + +[fips2612321700] +centroid = (0.76086490786020489, -1.500688754576897) +description = Denver township, MI +station = ('kffx', 0.0026952828656306403) +zone = ('miz044', 0.0024084348235639845) + +[fips2612326160] +centroid = (0.75625938538991999, -1.4945614446252131) +description = Ensley township, MI +station = ('kffx', 0.0049261814667227437) +zone = ('miz044', 0.0044525448648124917) + +[fips2612326700] +centroid = (0.75941504539728077, -1.4963162161084607) +description = Everett township, MI +station = ('kffx', 0.0034892858203636632) +zone = ('miz044', 0.0011436835104562933) + +[fips2612330700] +centroid = (0.75858882398267913, -1.5001686464598027) +description = Fremont city, MI +station = ('kffx', 0.0006248201671603537) +zone = ('miz044', 0.0024909539895311703) + +[fips2612331640] +centroid = (0.75794478003540067, -1.4985879192095639) +description = Garfield township, MI +station = ('kffx', 0.0016284083302944604) +zone = ('miz044', 0.0023535887741295875) + +[fips2612333000] +centroid = (0.76097367677918926, -1.4942162708590461) +description = Goodwell township, MI +station = ('krqb', 0.0025281594218096236) +zone = ('miz044', 0.002518459667013436) + +[fips2612334360] +centroid = (0.75633096134254418, -1.4975996788804997) +description = Grant city, MI +station = ('kffx', 0.0029705530275354847) +zone = ('miz044', 0.0038338070067361922) + +[fips2612334380] +centroid = (0.75654994780379192, -1.4965473849678874) +description = Grant township, MI +station = ('kffx', 0.0034951119121246128) +zone = ('miz044', 0.0036809383504784136) + +[fips2612338860] +centroid = (0.76395846905277986, -1.496227169410024) +description = Home township, MI +station = ('krqb', 0.0029433588206440875) +zone = ('miz044', 0.003905808115927605) + +[fips2612347440] +centroid = (0.7639403001752666, -1.4985390325372154) +description = Lilley township, MI +station = ('krqb', 0.0045637235453335192) +zone = ('miz044', 0.0038490365402150356) + +[fips2612347700] +centroid = (0.76128094199400276, -1.4987636738652397) +description = Lincoln township, MI +station = ('kffx', 0.0034452551858660863) +zone = ('miz044', 0.0014401754098889541) + +[fips2612353160] +centroid = (0.7623534119127684, -1.4987563434823814) +description = Merrill township, MI +station = ('kffx', 0.0044389280512724802) +zone = ('miz044', 0.0023683732929693471) + +[fips2612355060] +centroid = (0.76255065157153623, -1.4962931079491641) +description = Monroe township, MI +station = ('krqb', 0.0029179121673517964) +zone = ('miz044', 0.002543402487009756) + +[fips2612357080] +centroid = (0.75775947842871649, -1.4975355729370741) +description = Newaygo city, MI +station = ('kffx', 0.0024123718837895116) +zone = ('miz044', 0.0024047966182395848) + +[fips2612359300] +centroid = (0.76237582194036391, -1.4945821791367266) +description = Norwich township, MI +station = ('krqb', 0.0017831393833588876) +zone = ('miz044', 0.0030624511927961552) + +[fips2612373120] +centroid = (0.75778098088510104, -1.5007220903656102) +description = Sheridan charter township, MI +station = ('kffx', 0.00039507629033012134) +zone = ('miz050', 0.003025378197553386) + +[fips2612373260] +centroid = (0.75952128358884963, -1.4986045172907505) +description = Sherman township, MI +station = ('kffx', 0.0020931232130775531) +zone = ('miz044', 0.0010222441829192529) + +[fips2612380680] +centroid = (0.76410162095802847, -1.5006927164742989) +description = Troy township, MI +station = ('kffx', 0.0059311876468374327) +zone = ('miz038', 0.0043221797909596049) + +[fips2612386680] +centroid = (0.76022212054998795, -1.4970439485933722) +description = White Cloud city, MI +station = ('kffx', 0.0034153388860797859) +zone = ('miz044', 0.00034139918839604279) + +[fips2612387200] +centroid = (0.76105816816827832, -1.4963603729385362) +description = Wilcox township, MI +station = ('krqb', 0.0035608086138919394) +zone = ('miz044', 0.0012208995998680809) + +[fips2612480] +centroid = (0.74690916789479567, -1.4925549617572427) +description = Caledonia village, MI +station = ('kgrr', 0.0015462029476643775) +zone = ('miz057', 0.0041646686623285981) + +[fips26125] +centroid = (0.74456534778899996, -1.4553290086743809) +description = Oakland County, MI +station = ('kptk', 0.00043044563407604504) +zone = ('miz069', 1.6581812386956892e-05) + +[fips2612500400] +centroid = (0.74781270739526062, -1.4514708012832147) +description = Addison township, MI +station = ('kd95', 0.0040811841792516646) +zone = ('miz070', 0.0039614143254092047) + +[fips2612504105] +centroid = (0.74481437136667461, -1.4528750059329067) +description = Auburn Hills city, MI +station = ('kvll', 0.0024531698272393368) +zone = ('miz069', 0.0018380508403855317) + +[fips2612507660] +centroid = (0.7417405323946471, -1.451858107297525) +description = Berkley city, MI +station = ('kvll', 0.00077712848196791228) +zone = ('miz069', 0.0038198646678353813) + +[fips2612508640] +centroid = (0.74254692686894608, -1.4524032434360927) +description = Birmingham city, MI +station = ('kvll', 0.00050015554506162741) +zone = ('miz069', 0.0029630753699618735) + +[fips2612509110] +centroid = (0.74309672303661689, -1.4533811863225703) +description = Bloomfield charter township, MI +station = ('kvll', 0.0013522755905028693) +zone = ('miz069', 0.0020631275372243784) + +[fips2612509180] +centroid = (0.74307904285129422, -1.453063187332857) +description = Bloomfield Hills city, MI +station = ('kvll', 0.0011366826288556721) +zone = ('miz069', 0.0022454637230369147) + +[fips2612510040] +centroid = (0.74774950902304593, -1.4555384481846203) +description = Brandon charter township, MI +station = ('kptk', 0.0030868472829717851) +zone = ('miz069', 0.00318802499754275) + +[fips2612516160] +centroid = (0.74240497924088145, -1.4512484986963883) +description = Clawson city, MI +station = ('kvll', 0.00036767321550394661) +zone = ('miz069', 0.0037128746656998265) + +[fips2612517640] +centroid = (0.74305420681603829, -1.4572746319113343) +description = Commerce charter township, MI +station = ('kptk', 0.0019112980536018485) +zone = ('miz069', 0.0020696881563312531) + +[fips2612527380] +centroid = (0.74109093830034733, -1.4552271163526496) +description = Farmington city, MI +station = ('kvll', 0.0029462553821011099) +zone = ('miz076', 0.003314813763616926) + +[fips2612527440] +centroid = (0.74151444244334375, -1.4551850364643839) +description = Farmington Hills city, MI +station = ('kvll', 0.002737663088802298) +zone = ('miz069', 0.0030524609788812928) + +[fips2612527760] +centroid = (0.74682326278901257, -1.4605879475100276) +description = Fenton city, MI +station = ('kfnt', 0.0031947963248316219) +zone = ('miz061', 0.0040560953939489585) + +[fips2612527880] +centroid = (0.74105348353459966, -1.450915664408033) +description = Ferndale city, MI +station = ('kvll', 0.0015757364648869693) +zone = ('miz076', 0.0036546815504089857) + +[fips2612535640] +centroid = (0.74768716586216477, -1.4575310731383297) +description = Groveland township, MI +station = ('kptk', 0.0032438657873250444) +zone = ('miz069', 0.0035089877679649146) + +[fips2612537420] +centroid = (0.74110038053160077, -1.4503282738482743) +description = Hazel Park city, MI +station = ('kdet', 0.0013088264350371102) +zone = ('miz076', 0.003945909004973408) + +[fips2612538080] +centroid = (0.7444835965668366, -1.459468510781091) +description = Highland charter township, MI +station = ('kptk', 0.0026343845220563196) +zone = ('miz068', 0.0038375769058949056) + +[fips2612538720] +centroid = (0.74758640800444709, -1.4595909630814108) +description = Holly township, MI +station = ('kfnt', 0.0027955554788705586) +zone = ('miz061', 0.0034329678582161001) + +[fips2612540000] +centroid = (0.74144901004968655, -1.4515569681883858) +description = Huntington Woods city, MI +station = ('kvll', 0.0010698231841628713) +zone = ('miz076', 0.0037762988670721098) + +[fips2612540400] +centroid = (0.74608334790592212, -1.4554616362442399) +description = Independence charter township, MI +station = ('kptk', 0.0014451373514889174) +zone = ('miz069', 0.0015210615868893218) + +[fips2612542460] +centroid = (0.74365465243860185, -1.454657789950649) +description = Keego Harbor city, MI +station = ('kptk', 0.0013666485536524354) +zone = ('miz069', 0.0010431658720538193) + +[fips2612544440] +centroid = (0.74511090280658843, -1.454304901829188) +description = Lake Angelus city, MI +station = ('kptk', 0.0012483542716490608) +zone = ('miz069', 0.00094377518037672408) + +[fips2612546320] +centroid = (0.74162719071302274, -1.4525913899294578) +description = Lathrup Village city, MI +station = ('kvll', 0.0010903482713516305) +zone = ('miz069', 0.0035719015404134967) + +[fips2612549820] +centroid = (0.74147894244635837, -1.459142535636696) +description = Lyon charter township, MI +station = ('kptk', 0.0039905560170700651) +zone = ('miz069', 0.0041610639754443247) + +[fips2612550560] +centroid = (0.74189183498750266, -1.4504271467503997) +description = Madison Heights city, MI +station = ('kvll', 0.0011403751417474054) +zone = ('miz070', 0.0039546051817214113) + +[fips2612553980] +centroid = (0.74294657236106776, -1.4592848846904887) +description = Milford charter township, MI +station = ('kptk', 0.003033906181175371) +zone = ('miz068', 0.0039120693451694961) + +[fips2612558980] +centroid = (0.74073028346371528, -1.4572304925345512) +description = Northville city, MI +station = ('kyip', 0.0036564874261866701) +zone = ('miz076', 0.0038189466314080362) + +[fips2612559440] +centroid = (0.74138958158865609, -1.4571199782863149) +description = Novi city, MI +station = ('kptk', 0.0034057776584776114) +zone = ('miz069', 0.0034316102014178159) + +[fips2612559460] +centroid = (0.74101550517007631, -1.457045731979935) +description = Novi township, MI +station = ('kptk', 0.0037551285016640895) +zone = ('miz069', 0.0037619486296928935) + +[fips2612559820] +centroid = (0.74616644303160951, -1.451317578828182) +description = Oakland charter township, MI +station = ('kvll', 0.00366722805350112) +zone = ('miz069', 0.0033694955691428875) + +[fips2612559920] +centroid = (0.74115394468634443, -1.4518055379804546) +description = Oak Park city, MI +station = ('kvll', 0.0013588634857265515) +zone = ('miz076', 0.0034326104080357263) + +[fips2612561020] +centroid = (0.74332455831717215, -1.4551038437475812) +description = Orchard Lake Village city, MI +station = ('kptk', 0.0014696099947231595) +zone = ('miz069', 0.0012532038120709314) + +[fips2612561100] +centroid = (0.74626063845133961, -1.4532009985305943) +description = Orion charter township, MI +station = ('kptk', 0.0025372691787909768) +zone = ('miz069', 0.0023182302062051152) + +[fips2612562040] +centroid = (0.74769404245941762, -1.4534789073073893) +description = Oxford charter township, MI +station = ('kptk', 0.0035029219657561473) +zone = ('miz069', 0.0034183786290954122) + +[fips2612564900] +centroid = (0.74126761798052676, -1.4511462398555139) +description = Pleasant Ridge city, MI +station = ('kvll', 0.0013153235544678475) +zone = ('miz076', 0.0037495544667267384) + +[fips2612565440] +centroid = (0.74436945203375615, -1.453638709653702) +description = Pontiac city, MI +station = ('kptk', 0.001687336785296285) +zone = ('miz069', 0.0012746892970610234) + +[fips2612569020] +centroid = (0.74502377597032876, -1.4507120193909102) +description = Rochester city, MI +station = ('kvll', 0.0026207306951989235) +zone = ('miz070', 0.0024100272647681643) + +[fips2612569035] +centroid = (0.7446182661719204, -1.4514017735112983) +description = Rochester Hills city, MI +station = ('kvll', 0.0021202022775180795) +zone = ('miz069', 0.0029050052531886966) + +[fips2612569580] +centroid = (0.74597410774803974, -1.4595331054167071) +description = Rose township, MI +station = ('kptk', 0.0029726428275534994) +zone = ('miz069', 0.0033809599870310595) + +[fips2612570040] +centroid = (0.7419013470319259, -1.45130918379448) +description = Royal Oak city, MI +station = ('kvll', 0.00068318629231717254) +zone = ('miz069', 0.0039938054228536111) + +[fips2612570060] +centroid = (0.74088956221125235, -1.4514571004485868) +description = Royal Oak charter township, MI +station = ('kvll', 0.0016340633827965291) +zone = ('miz076', 0.0033076782597607685) + +[fips2612574900] +centroid = (0.74132231659928427, -1.4531525656438513) +description = Southfield city, MI +station = ('kvll', 0.0015874668743049174) +zone = ('miz076', 0.003345443393611881) + +[fips2612574920] +centroid = (0.74212022877341854, -1.453245329893595) +description = Southfield township, MI +station = ('kvll', 0.0011859567736211337) +zone = ('miz069', 0.0028945694743500255) + +[fips2612575100] +centroid = (0.74108451548870014, -1.4600232287772525) +description = South Lyon city, MI +station = ('kyip', 0.0042638629618777487) +zone = ('miz068', 0.0041448583914830755) + +[fips2612575760] +centroid = (0.74607329480943052, -1.4573675532407102) +description = Springfield charter township, MI +station = ('kptk', 0.00176880717420026) +zone = ('miz069', 0.0021146043172377148) + +[fips2612577860] +centroid = (0.74380284834538879, -1.4544433413454565) +description = Sylvan Lake city, MI +station = ('kptk', 0.0013782733292577109) +zone = ('miz069', 0.0010131014093957471) + +[fips2612580] +centroid = (0.82462847004659301, -1.5438045132068317) +description = Calumet village, MI +station = ('kcmx', 0.0014584370011924796) +zone = ('miz003', 0.0039342936982583523) + +[fips2612580700] +centroid = (0.74322896663404048, -1.4511633091755984) +description = Troy city, MI +station = ('kvll', 0.00082855654956834562) +zone = ('miz069', 0.0033587490019643148) + +[fips2612582450] +centroid = (0.74581029114444763, -1.4560135268070131) +description = Village of Clarkston city, MI +station = ('kptk', 0.0011397832342174348) +zone = ('miz069', 0.00133748719291079) + +[fips2612583060] +centroid = (0.74241299030214813, -1.4568940454146442) +description = Walled Lake city, MI +station = ('kptk', 0.0023773034175337032) +zone = ('miz069', 0.0024326987988173947) + +[fips2612584240] +centroid = (0.74459198151338535, -1.4553937778429225) +description = Waterford charter township, MI +station = ('kptk', 0.00037789012085191255) +zone = ('miz069', 4.1521579647208871e-05) + +[fips2612585480] +centroid = (0.74297350279142604, -1.4553842832517916) +description = West Bloomfield charter township, MI +station = ('kptk', 0.0017414287270344298) +zone = ('miz069', 0.0015911200842696192) + +[fips2612586860] +centroid = (0.74451962016259776, -1.4574507530861527) +description = White Lake charter township, MI +station = ('kptk', 0.0011540318772272366) +zone = ('miz069', 0.0015444203193845641) + +[fips2612588140] +centroid = (0.74218313043966044, -1.4579516974880604) +description = Wixom city, MI +station = ('kptk', 0.0029145749631170445) +zone = ('miz069', 0.0030553019845370698) + +[fips26127] +centroid = (0.76178830920755758, -1.5150779994219166) +description = Oceana County, MI +station = ('kldm', 0.0075784169501574147) +zone = ('miz043', 0.0068245884656163106) + +[fips2612700000] +centroid = (0.76178830920755758, -1.5150779994219166) +description = County subdivisions not defined, MI +station = ('kldm', 0.0075784169501574147) +zone = ('miz043', 0.0068245884656163106) + +[fips2612707300] +centroid = (0.76103256418815157, -1.5091369335547131) +description = Benona township, MI +station = ('kldm', 0.0063868670011319982) +zone = ('miz043', 0.0026055087183087561) + +[fips2612716200] +centroid = (0.75963778431642026, -1.5086556590134754) +description = Claybanks township, MI +station = ('kmkg', 0.0067644988624856617) +zone = ('miz043', 0.0029818071802950774) + +[fips2612717180] +centroid = (0.76398403812632154, -1.5027380503714187) +description = Colfax township, MI +station = ('kldm', 0.0050610624648089247) +zone = ('miz043', 0.0031245718156154025) + +[fips2612719100] +centroid = (0.76402688595945811, -1.5047903306789614) +description = Crystal township, MI +station = ('kldm', 0.0040455309271479629) +zone = ('miz043', 0.0024333692005882009) + +[fips2612725200] +centroid = (0.76256889026221963, -1.5046407559620654) +description = Elbridge township, MI +station = ('kffx', 0.0052010729848667213) +zone = ('miz043', 0.0011542633867897825) + +[fips2612727940] +centroid = (0.76095454797058737, -1.5047926345135738) +description = Ferry township, MI +station = ('kffx', 0.0040117352363262925) +zone = ('miz043', 0.0009493623807077117) + +[fips2612732780] +centroid = (0.76252977743368233, -1.5088709977365864) +description = Golden township, MI +station = ('kldm', 0.0048773605030359877) +zone = ('miz043', 0.0024833163884721292) + +[fips2612734400] +centroid = (0.7594143298122874, -1.5069285335455793) +description = Grant township, MI +station = ('kffx', 0.0046117679706604809) +zone = ('miz043', 0.0024424830099333615) + +[fips2612735160] +centroid = (0.75928924206479698, -1.5025805169531337) +description = Greenwood township, MI +station = ('kffx', 0.0017040815789243296) +zone = ('miz043', 0.0032599134399798535) + +[fips2612736920] +centroid = (0.76264746498514435, -1.5074654840899555) +description = Hart city, MI +station = ('kldm', 0.0047293479462877618) +zone = ('miz043', 0.0016356576794417264) + +[fips2612736940] +centroid = (0.76246218083175266, -1.5067953474703599) +description = Hart township, MI +station = ('kldm', 0.0049729639076184313) +zone = ('miz043', 0.0011444559462431933) + +[fips2612746560] +centroid = (0.76253977817029628, -1.5028010043975382) +description = Leavitt township, MI +station = ('kffx', 0.0046011011192956114) +zone = ('miz043', 0.0022343686781292524) + +[fips2612757300] +centroid = (0.76101593120038002, -1.5028580766640784) +description = Newfield township, MI +station = ('kffx', 0.0032096635940019854) +zone = ('miz043', 0.0021244163660947804) + +[fips2612760] +centroid = (0.72876373015338902, -1.4792744722261377) +description = Camden village, MI +station = ('kjym', 0.0036512193043981536) +zone = ('miz081', 0.0031416768954763718) + +[fips2612761780] +centroid = (0.75931699279990372, -1.5048079585044063) +description = Otto township, MI +station = ('kffx', 0.0031203670512673946) +zone = ('miz043', 0.0024342960394633855) + +[fips2612763560] +centroid = (0.76379641523173214, -1.5082855619455902) +description = Pentwater township, MI +station = ('kldm', 0.003574184105969715) +zone = ('miz043', 0.0028530444686595165) + +[fips2612772860] +centroid = (0.76110424486053097, -1.5067144165529449) +description = Shelby township, MI +station = ('kffx', 0.0051904696261459195) +zone = ('miz043', 0.00095914268380655734) + +[fips2612785040] +centroid = (0.76392337048152226, -1.5067900591227263) +description = Weare township, MI +station = ('kldm', 0.0035423951026909385) +zone = ('miz043', 0.0023960834767557085) + +[fips26129] +centroid = (0.77376170420855173, -1.4683118672081434) +description = Ogemaw County, MI +station = ('khtl', 0.0067292234989555838) +zone = ('miz035', 3.3728138960710763e-05) + +[fips2612915740] +centroid = (0.77313631783097714, -1.4672680032358183) +description = Churchill township, MI +station = ('khtl', 0.007527811766500552) +zone = ('miz035', 0.00097875607322682142) + +[fips2612919260] +centroid = (0.77459029927093603, -1.46727175569371) +description = Cumming township, MI +station = ('kgov', 0.0097387952900494738) +zone = ('miz035', 0.0010800703269834592) + +[fips2612925020] +centroid = (0.77147738237695651, -1.4714319923119339) +description = Edwards township, MI +station = ('khtl', 0.0051821309121331599) +zone = ('miz035', 0.0032283947233981919) + +[fips2612929860] +centroid = (0.77544750027976039, -1.4712140530482372) +description = Foster township, MI +station = ('khtl', 0.0048481942532090372) +zone = ('miz035', 0.0026694674160769125) + +[fips2612932860] +centroid = (0.77620682322413315, -1.4651714613784452) +description = Goodar township, MI +station = ('kosc', 0.0072547428462340913) +zone = ('miz035', 0.0032852215075007702) + +[fips2612938300] +centroid = (0.77459509892637901, -1.4647700356504862) +description = Hill township, MI +station = ('kosc', 0.0070655537911801731) +zone = ('miz035', 0.0026397536229739661) + +[fips2612939320] +centroid = (0.7715264435822301, -1.4693042265142426) +description = Horton township, MI +station = ('khtl', 0.0065286544607366321) +zone = ('miz035', 0.0023780294165545064) + +[fips2612943640] +centroid = (0.77442709353258199, -1.4689901370620535) +description = Klacking township, MI +station = ('khtl', 0.0062469583356108659) +zone = ('miz035', 0.0008119746783749115) + +[fips2612949160] +centroid = (0.77319019614498619, -1.4650315034257277) +description = Logan township, MI +station = ('kosc', 0.0076147103055366058) +zone = ('miz035', 0.0024046316798549596) + +[fips2612954340] +centroid = (0.77150832706459438, -1.4672721571194378) +description = Mills township, MI +station = ('kikw', 0.0097978222957692974) +zone = ('miz035', 0.0023943974334255237) + +[fips2612960300] +centroid = (0.77298311282923704, -1.4715386668358157) +description = Ogemaw township, MI +station = ('khtl', 0.0045446774571905523) +zone = ('miz035', 0.0024632276448158532) + +[fips2612968320] +centroid = (0.77159953797130365, -1.4649350914378474) +description = Richland township, MI +station = ('kosc', 0.0082407327717510994) +zone = ('miz042', 0.0025587595492927088) + +[fips2612969600] +centroid = (0.77591144370152565, -1.4675903480953689) +description = Rose township, MI +station = ('kgov', 0.0088889331296277217) +zone = ('miz035', 0.0021789438531486125) + +[fips2612969680] +centroid = (0.77529364950619717, -1.4680908387116709) +description = Rose City city, MI +station = ('kgov', 0.0088707548995127262) +zone = ('miz035', 0.0015101375432714115) + +[fips2612980] +centroid = (0.78848645369568215, -1.4697246763310481) +description = Canada Creek Ranch CDP, MI +station = ('kpzq', 0.0063074528355382747) +zone = ('miz023', 0.0027958706526000372) + +[fips2612985580] +centroid = (0.77273209957621514, -1.4701821445812882) +description = West Branch city, MI +station = ('khtl', 0.0055476871377754568) +zone = ('miz035', 0.0017204982922115785) + +[fips2612985600] +centroid = (0.77309083455067018, -1.4692088617239136) +description = West Branch township, MI +station = ('khtl', 0.0061590729211610552) +zone = ('miz035', 0.00096159892314697762) + +[fips2613010] +centroid = (0.76064935969758363, -1.4888420006664276) +description = Canadian Lakes CDP, MI +station = ('krqb', 0.0035184829283828149) +zone = ('miz045', 0.0010590594402832703) + +[fips26131] +centroid = (0.8240852014103246, -1.5620777265027768) +description = Ontonagon County, MI +station = ('kiwd', 0.014114675540570337) +zone = ('miz002', 0.0098879111484883129) + +[fips2613100000] +centroid = (0.8240852014103246, -1.5620777265027768) +description = County subdivisions not defined, MI +station = ('kiwd', 0.014114675540570337) +zone = ('miz002', 0.0098879111484883129) + +[fips2613107640] +centroid = (0.81339975467754733, -1.5647940522308255) +description = Bergland township, MI +station = ('kiwd', 0.005858985518722379) +zone = ('miz009', 0.0034425380497047852) + +[fips2613109460] +centroid = (0.8174835982344113, -1.552641359555774) +description = Bohemia township, MI +station = ('kcmx', 0.0080619204839612602) +zone = ('miz084', 0.004374380417234397) + +[fips2613113520] +centroid = (0.81577963328568914, -1.5651222264900779) +description = Carp Lake township, MI +station = ('kiwd', 0.0065790505140790939) +zone = ('miz009', 0.0057962503335417708) + +[fips2613135000] +centroid = (0.81674354372498059, -1.5544709707573472) +description = Greenland township, MI +station = ('kcmx', 0.0094746928572884831) +zone = ('miz002', 0.0037740767713842294) + +[fips2613135960] +centroid = (0.81004278839426136, -1.5571668237732701) +description = Haight township, MI +station = ('klnl', 0.0045062883057580844) +zone = ('miz002', 0.0045526627959802122) + +[fips2613140] +centroid = (0.75055730745719185, -1.447265186104439) +description = Capac village, MI +station = ('kd95', 0.0045892154852393927) +zone = ('miz062', 0.0041078333190494518) + +[fips2613140760] +centroid = (0.81058879719745525, -1.5542234132562442) +description = Interior township, MI +station = ('klnl', 0.0054138714234441181) +zone = ('miz084', 0.0039840075076614332) + +[fips2613150460] +centroid = (0.81143955794133993, -1.5587187007309733) +description = McMillan township, MI +station = ('klnl', 0.0060147205570894938) +zone = ('miz002', 0.0030090365806647169) + +[fips2613152320] +centroid = (0.81338240610478241, -1.5612494106930725) +description = Matchwood township, MI +station = ('klnl', 0.0083647978490049273) +zone = ('miz002', 0.0019671214199340221) + +[fips2613160880] +centroid = (0.81743062749161322, -1.5581760604132358) +description = Ontonagon township, MI +station = ('klnl', 0.011918891802451884) +zone = ('miz002', 0.0030177758913534436) + +[fips2613169140] +centroid = (0.81474742811276724, -1.5582904143858265) +description = Rockland township, MI +station = ('klnl', 0.0092502177073125504) +zone = ('miz002', 0.00048232344259525639) + +[fips2613176180] +centroid = (0.81323478615664879, -1.5558714054958549) +description = Stannard township, MI +station = ('klnl', 0.0077397276082535214) +zone = ('miz002', 0.0023724549397550871) + +[fips2613220] +centroid = (0.73403652690329657, -1.4554272358046831) +description = Carleton village, MI +station = ('kttf', 0.0021266751775086668) +zone = ('miz083', 0.0029409847173259545) + +[fips26133] +centroid = (0.76790214521741618, -1.4891547636683851) +description = Osceola County, MI +station = ('kcad', 0.0051260024403688344) +zone = ('miz039', 0.00013848388374301126) + +[fips2613311680] +centroid = (0.77003762537040132, -1.4922777511121486) +description = Burdell township, MI +station = ('kcad', 0.0030422076842636404) +zone = ('miz039', 0.00316590779961775) + +[fips2613314040] +centroid = (0.76709070674157898, -1.4904180155276858) +description = Cedar township, MI +station = ('krqb', 0.0042206181794120327) +zone = ('miz039', 0.0011049062754519931) + +[fips2613326640] +centroid = (0.76617871984753438, -1.4882515732337704) +description = Evart city, MI +station = ('krqb', 0.0042576340704823584) +zone = ('miz039', 0.0017319406119383563) + +[fips2613326660] +centroid = (0.76539119238244946, -1.4880022005902456) +description = Evart township, MI +station = ('krqb', 0.0038729581728984166) +zone = ('miz039', 0.0025305048455821228) + +[fips2613337060] +centroid = (0.76835034576932837, -1.4880093215335937) +description = Hartwick township, MI +station = ('kcad', 0.0049621696973473038) +zone = ('miz039', 0.0010386907855661836) + +[fips2613337840] +centroid = (0.76542306209459088, -1.4904039132673299) +description = Hersey township, MI +station = ('krqb', 0.0027057377144544259) +zone = ('miz039', 0.0024992777466695286) + +[fips2613338100] +centroid = (0.77010948057570594, -1.4880092866270087) +description = Highland township, MI +station = ('kcad', 0.003426268999777396) +zone = ('miz039', 0.0024937886817368643) + +[fips2613347120] +centroid = (0.76847175087209707, -1.4922620256955881) +description = Le Roy township, MI +station = ('kcad', 0.0045406781716670654) +zone = ('miz039', 0.0023079071502071632) + +[fips2613347720] +centroid = (0.76697036628965398, -1.4922898636971575) +description = Lincoln township, MI +station = ('krqb', 0.0038688883165871003) +zone = ('miz039', 0.002358967625959228) + +[fips2613351680] +centroid = (0.76998966372255662, -1.4859325717099381) +description = Marion township, MI +station = ('kcad', 0.0045385764118116949) +zone = ('miz039', 0.0032352260679078928) + +[fips2613353660] +centroid = (0.76848004118604396, -1.4860974878709592) +description = Middle Branch township, MI +station = ('kcad', 0.0055533358765081833) +zone = ('miz039', 0.002345936088860696) + +[fips2613361080] +centroid = (0.76550055471337952, -1.4860848342338822) +description = Orient township, MI +station = ('krqb', 0.0051062354411742028) +zone = ('miz039', 0.003193198543261196) + +[fips2613361280] +centroid = (0.76721698131296079, -1.4880107527035804) +description = Osceola township, MI +station = ('krqb', 0.0051612423109185278) +zone = ('miz039', 0.0010216432897546838) + +[fips2613367820] +centroid = (0.76571980297401498, -1.4923793641811998) +description = Reed City city, MI +station = ('krqb', 0.002618470798776426) +zone = ('miz039', 0.0030694505330441297) + +[fips2613368440] +centroid = (0.76535626834411707, -1.4921299915376747) +description = Richmond township, MI +station = ('krqb', 0.0022592693833133103) +zone = ('miz039', 0.003202522549337727) + +[fips2613369760] +centroid = (0.76837802669126498, -1.4901963412593902) +description = Rose Lake township, MI +station = ('kcad', 0.0045328252343384886) +zone = ('miz039', 0.00093761359386850213) + +[fips2613373280] +centroid = (0.77010457620050787, -1.4901651871322421) +description = Sherman township, MI +station = ('kcad', 0.0028225640333860284) +zone = ('miz039', 0.0024356319741600635) + +[fips2613377760] +centroid = (0.76694640291902405, -1.4860942241052579) +description = Sylvan township, MI +station = ('krqb', 0.0059170955205032211) +zone = ('miz039', 0.0023856177500957382) + +[fips2613400] +centroid = (0.7957113488540678, -1.5280501590873645) +description = Carney village, MI +station = ('kesc', 0.0068951951764381209) +zone = ('miz012', 0.00021901729301052996) + +[fips2613420] +centroid = (0.75903152674744756, -1.4556350347054254) +description = Caro village, MI +station = ('kcfs', 0.00076874578762715223) +zone = ('miz054', 0.00047892556700717737) + +[fips2613480] +centroid = (0.79755818645535814, -1.4792111516808752) +description = Carp Lake CDP, MI +station = ('kpln', 0.0023425152993686608) +zone = ('miz016', 0.0035065447338801111) + +[fips26135] +centroid = (0.77990248810206109, -1.4682563831912225) +description = Oscoda County, MI +station = ('kgov', 0.0074957325448783176) +zone = ('miz029', 8.439110535232517e-05) + +[fips2613508220] +centroid = (0.77844999019196637, -1.4704696003090916) +description = Big Creek township, MI +station = ('kgov', 0.0060817364853916886) +zone = ('miz029', 0.0020579711124031697) + +[fips2613516540] +centroid = (0.7822011390868151, -1.4659576449400058) +description = Clinton township, MI +station = ('kapn', 0.0070279412562109546) +zone = ('miz029', 0.0029026072392728838) + +[fips2613517600] +centroid = (0.78080618468215868, -1.4662934637413823) +description = Comins township, MI +station = ('kapn', 0.008180329395609259) +zone = ('miz029', 0.0017447341209286861) + +[fips2613525500] +centroid = (0.7812447859231848, -1.4692090013502537) +description = Elmer township, MI +station = ('kgov', 0.0069612044903382886) +zone = ('miz029', 0.0015318731570465888) + +[fips2613535200] +centroid = (0.78133252362468253, -1.4715024687071292) +description = Greenwood township, MI +station = ('kgov', 0.0054003261318235872) +zone = ('miz029', 0.0026957747519217859) + +[fips2613553120] +centroid = (0.77853462120739558, -1.4663444971687103) +description = Mentor township, MI +station = ('kgov', 0.0089530577088781337) +zone = ('miz029', 0.0019306872385006673) + +[fips2613600] +centroid = (0.75365997926846218, -1.4808284959388209) +description = Carson City city, MI +station = ('kamn', 0.0031640521779132502) +zone = ('miz052', 0.0036207216387603423) + +[fips2613620] +centroid = (0.75792392335083947, -1.4429157383420068) +description = Carsonville village, MI +station = ('kbax', 0.00734802210758396) +zone = ('miz055', 0.0018653088957018113) + +[fips26137] +centroid = (0.78577854045462792, -1.4761400877823587) +description = Otsego County, MI +station = ('kglr', 0.0013198644854620024) +zone = ('miz022', 0.00027399780365033042) + +[fips2613704780] +centroid = (0.78512046406016345, -1.4774858588086939) +description = Bagley township, MI +station = ('kglr', 0.00067601881441584728) +zone = ('miz022', 0.00093975740456687549) + +[fips2613714840] +centroid = (0.78509862999122104, -1.4735844021586633) +description = Charlton township, MI +station = ('kglr', 0.0031797208114850554) +zone = ('miz022', 0.0021872055897700707) + +[fips2613715280] +centroid = (0.78431173084466688, -1.4755450875870613) +description = Chester township, MI +station = ('kglr', 0.0022181187181869095) +zone = ('miz022', 0.0016169157831096136) + +[fips2613718320] +centroid = (0.78819929467385164, -1.4756885536515751) +description = Corwith township, MI +station = ('kglr', 0.0029952189207308366) +zone = ('miz022', 0.0024988547988143823) + +[fips2613722840] +centroid = (0.78656036069305879, -1.4758749722689806) +description = Dover township, MI +station = ('kglr', 0.0017378476279433757) +zone = ('miz022', 0.00091360778922546469) + +[fips2613725620] +centroid = (0.7867892257178728, -1.4799755186267862) +description = Elmira township, MI +station = ('kglr', 0.0017755415873680241) +zone = ('miz022', 0.0026398861245440371) + +[fips2613731720] +centroid = (0.78576726562765997, -1.4779385448567837) +description = Gaylord city, MI +station = ('kglr', 9.0512633795998407e-05) +zone = ('miz022', 0.0009973255335422003) + +[fips2613737360] +centroid = (0.78407991621341699, -1.4799515552561564) +description = Hayes township, MI +station = ('kglr', 0.0021188963865036037) +zone = ('miz022', 0.0029545326532156137) + +[fips2613748140] +centroid = (0.78672346171165763, -1.4778821358153593) +description = Livingston township, MI +station = ('kglr', 0.0010379282801789627) +zone = ('miz022', 0.0013497183483744037) + +[fips2613760] +centroid = (0.76692624436616352, -1.4534278913333536) +description = Caseville village, MI +station = ('kbax', 0.004601082776280789) +zone = ('miz049', 0.0037340584125834697) + +[fips2613761680] +centroid = (0.78374243934925125, -1.4777841530311522) +description = Otsego Lake township, MI +station = ('kglr', 0.0019527612119674487) +zone = ('miz022', 0.0022154507274157833) + +[fips2613820] +centroid = (0.75454070731560341, -1.497273476843302) +description = Casnovia village, MI +station = ('kffx', 0.0044486592081814215) +zone = ('miz057', 0.0046226559118200238) + +[fips2613860] +centroid = (0.80399131299857651, -1.5468266729797071) +description = Caspian city, MI +station = ('klnl', 0.0072489669119021171) +zone = ('miz010', 0.0027590458433242515) + +[fips2613880] +centroid = (0.76096915637642659, -1.4517029998869002) +description = Cass City village, MI +station = ('kbax', 0.003966104479313011) +zone = ('miz054', 0.003859225184074601) + +[fips26139] +centroid = (0.74948532623061692, -1.5124210323417282) +description = Ottawa County, MI +station = ('kmkg', 0.0066553427865780647) +zone = ('miz050', 0.0088788241899576612) + +[fips2613900] +centroid = (0.73147937520302952, -1.501147025678593) +description = Cassopolis village, MI +station = ('kekm', 0.003388390782325907) +zone = ('miz078', 0.00022034527432743305) + +[fips2613900000] +centroid = (0.74948532623061692, -1.5124210323417282) +description = County subdivisions not defined, MI +station = ('kmkg', 0.0066553427865780647) +zone = ('miz050', 0.0088788241899576612) + +[fips2613901360] +centroid = (0.75010051988535986, -1.5002600493527296) +description = Allendale charter township, MI +station = ('kbiv', 0.0043649085026162176) +zone = ('miz056', 0.00054480966756007758) + +[fips2613908940] +centroid = (0.74869059055572129, -1.5004506742136325) +description = Blendon township, MI +station = ('kbiv', 0.0030588693522268224) +zone = ('miz056', 0.0011478004344831914) + +[fips2613915300] +centroid = (0.75339423543655348, -1.4981798612304476) +description = Chester township, MI +station = ('kffx', 0.0051456237121519912) +zone = ('miz056', 0.004103072783706023) + +[fips2613918020] +centroid = (0.75163419305896484, -1.4998269109922622) +description = Coopersville city, MI +station = ('kmkg', 0.0042056517457355422) +zone = ('miz056', 0.0019927709154672455) + +[fips2613918800] +centroid = (0.75184265518482296, -1.5024664073266383) +description = Crockery township, MI +station = ('kmkg', 0.0024491354205379611) +zone = ('miz056', 0.0023543620328383063) + +[fips2613927960] +centroid = (0.75202113255413194, -1.5049439196531367) +description = Ferrysburg city, MI +station = ('kmkg', 0.0013817337233660548) +zone = ('miz050', 0.0036917582242243238) + +[fips2613931880] +centroid = (0.74884011291273966, -1.4982709499641091) +description = Georgetown charter township, MI +station = ('kgrr', 0.0042107429051369532) +zone = ('miz056', 0.0021335156508422996) + +[fips2613933340] +centroid = (0.75145438923942443, -1.5048964117908976) +description = Grand Haven city, MI +station = ('kmkg', 0.001949537649017168) +zone = ('miz056', 0.0033754138395913247) + +[fips2613933360] +centroid = (0.75045255279548706, -1.5042705541744248) +description = Grand Haven charter township, MI +station = ('kmkg', 0.0030031505423269598) +zone = ('miz056', 0.0025685081638791274) + +[fips2613938640] +centroid = (0.74669751181640631, -1.5027686634464985) +description = Holland city, MI +station = ('kbiv', 0.0005700202155736688) +zone = ('miz056', 0.0033938562188187658) + +[fips2613938660] +centroid = (0.74734070055235136, -1.5023226794627367) +description = Holland charter township, MI +station = ('kbiv', 0.0012484886207688958) +zone = ('miz056', 0.0026733694964608738) + +[fips2613939800] +centroid = (0.74810693500056191, -1.4985781802723379) +description = Hudsonville city, MI +station = ('kbiv', 0.0036313104523542231) +zone = ('miz056', 0.0023841499663928949) + +[fips2613941520] +centroid = (0.7470979252533988, -1.4981249008123025) +description = Jamestown charter township, MI +station = ('kgrr', 0.0043088413269932926) +zone = ('miz056', 0.0033676356837398212) + +[fips2613960460] +centroid = (0.74867786710547424, -1.502478554818232) +description = Olive township, MI +station = ('kbiv', 0.002556193371956633) +zone = ('miz056', 0.0016199091684781276) + +[fips2613962460] +centroid = (0.74733291638388732, -1.5040103953961224) +description = Park township, MI +station = ('kbiv', 0.0015285067055605865) +zone = ('miz056', 0.0033666343366738388) + +[fips2613965320] +centroid = (0.75169135259196762, -1.5005237511494136) +description = Polkton charter township, MI +station = ('kmkg', 0.0037234447451061372) +zone = ('miz056', 0.0019136409962741878) + +[fips2613965940] +centroid = (0.74875766355887552, -1.5041416790624575) +description = Port Sheldon township, MI +station = ('kbiv', 0.0028263176320404053) +zone = ('miz056', 0.0026060047020545407) + +[fips2613969000] +centroid = (0.75040361376326115, -1.5026093323390839) +description = Robinson township, MI +station = ('kmkg', 0.003489050014772226) +zone = ('miz056', 0.00140608642307497) + +[fips2613975840] +centroid = (0.75170419821526224, -1.5045813449543273) +description = Spring Lake township, MI +station = ('kmkg', 0.0017312257055043284) +zone = ('miz056', 0.003313860565011846) + +[fips2613977980] +centroid = (0.75025220645065072, -1.4981834740619993) +description = Tallmadge charter township, MI +station = ('kgrr', 0.004500584435408234) +zone = ('miz056', 0.0020228552099708793) + +[fips2613988820] +centroid = (0.7518365814390261, -1.4984092673073297) +description = Wright township, MI +station = ('kgrr', 0.005461101697494912) +zone = ('miz056', 0.0027242857489884541) + +[fips2613989260] +centroid = (0.74724952455222715, -1.5012319533999954) +description = Zeeland city, MI +station = ('kbiv', 0.0015696038657564326) +zone = ('miz056', 0.0025589407819928628) + +[fips2613989280] +centroid = (0.74722618950012798, -1.5002530854890141) +description = Zeeland charter township, MI +station = ('kbiv', 0.0021228026549959906) +zone = ('miz056', 0.0026093193804397276) + +[fips2614020] +centroid = (0.78272201514878037, -1.4973887907469814) +description = Cedar CDP, MI +station = ('ktvc', 0.0034417794799960636) +zone = ('miz020', 0.001587460693838229) + +[fips26141] +centroid = (0.79394181188534829, -1.4553256750955095) +description = Presque Isle County, MI +station = ('kpzq', 0.0054441005403816226) +zone = ('miz018', 0.0070221163995665987) + +[fips2614100000] +centroid = (0.79394181188534829, -1.4553256750955095) +description = County subdivisions not defined, MI +station = ('kpzq', 0.0054441005403816226) +zone = ('miz018', 0.0070221163995665987) + +[fips2614101480] +centroid = (0.79006028689537555, -1.469366883834389) +description = Allis township, MI +station = ('kpzq', 0.0052159253853080022) +zone = ('miz018', 0.0035777503840521063) + +[fips2614106400] +centroid = (0.79460004535944551, -1.4695040143537181) +description = Bearinger township, MI +station = ('kpzq', 0.0051433392287061081) +zone = ('miz017', 0.0039703271931922912) + +[fips2614106920] +centroid = (0.79094333623042212, -1.4632428900082839) +description = Belknap township, MI +station = ('kpzq', 0.0015869159721644893) +zone = ('miz018', 0.001033432555212433) + +[fips2614108700] +centroid = (0.79039797319905136, -1.4649738377472419) +description = Bismarck township, MI +station = ('kpzq', 0.0025954664674704524) +zone = ('miz018', 0.0009622131954186001) + +[fips2614113740] +centroid = (0.79023276033205769, -1.4673708205820533) +description = Case township, MI +station = ('kpzq', 0.0039274261891347854) +zone = ('miz018', 0.0022287016590361785) + +[fips2614143900] +centroid = (0.79054901399251898, -1.4589710395843951) +description = Krakow township, MI +station = ('kpzq', 0.0033291820105331152) +zone = ('miz018', 0.004039608846773084) + +[fips2614153440] +centroid = (0.7897526726147116, -1.4631167550632422) +description = Metz township, MI +station = ('kpzq', 0.0027565198350991416) +zone = ('miz018', 0.0018906986252751315) + +[fips2614154860] +centroid = (0.79249479430910486, -1.4651517391578976) +description = Moltke township, MI +station = ('kpzq', 0.0016448254526345071) +zone = ('miz018', 0.0012301268699352725) + +[fips2614157940] +centroid = (0.79264381052064015, -1.469469090315386) +description = North Allis township, MI +station = ('kpzq', 0.0046777252250519959) +zone = ('miz017', 0.0037826576768285681) + +[fips2614160160] +centroid = (0.79250161854648016, -1.4670238840333418) +description = Ocqueoc township, MI +station = ('kpzq', 0.0029591784846055781) +zone = ('miz018', 0.0020644986226126269) + +[fips2614160680] +centroid = (0.79165588435084133, -1.4700421342686931) +description = Onaway city, MI +station = ('kpzq', 0.0051501237358304542) +zone = ('miz017', 0.0036795798647156685) + +[fips2614166020] +centroid = (0.78977895727324665, -1.460691951680154) +description = Posen township, MI +station = ('kpzq', 0.0031020721318646316) +zone = ('miz018', 0.0031595499700953732) + +[fips2614166340] +centroid = (0.79012378197356314, -1.4565486447556744) +description = Presque Isle township, MI +station = ('kapn', 0.0035523163374920471) +zone = ('miz024', 0.0046457119617062895) + +[fips2614166460] +centroid = (0.79171084476898668, -1.4608714413404291) +description = Pulawski township, MI +station = ('kpzq', 0.0015734016336025713) +zone = ('miz018', 0.0026545995533195275) + +[fips2614169240] +centroid = (0.79323861872971979, -1.4640335765193149) +description = Rogers township, MI +station = ('kpzq', 0.0011327953614322121) +zone = ('miz018', 0.0019554839184082874) + +[fips2614169260] +centroid = (0.79268838622973603, -1.4626688337640104) +description = Rogers City city, MI +station = ('kpzq', 0.00021190583275191468) +zone = ('miz018', 0.0019273728031158181) + +[fips2614200] +centroid = (0.75432097036277745, -1.4931819363844367) +description = Cedar Springs city, MI +station = ('kgrr', 0.0058839080887079353) +zone = ('miz057', 0.0032677588790572037) + +[fips2614260] +centroid = (0.734231235834649, -1.4717881965589734) +description = Cement City village, MI +station = ('kjxn', 0.0039029320409815476) +zone = ('miz074', 0.0033808532170037913) + +[fips26143] +centroid = (0.7738705603939986, -1.4767452807004875) +description = Roscommon County, MI +station = ('khtl', 0.00071521608673087537) +zone = ('miz034', 6.8487049939783439e-05) + +[fips2614304320] +centroid = (0.77612123227761542, -1.4735104874648413) +description = Au Sable township, MI +station = ('khtl', 0.0036447475541305186) +zone = ('miz034', 0.0032768859115647787) + +[fips2614304720] +centroid = (0.77271544913515111, -1.4754381861703767) +description = Backus township, MI +station = ('khtl', 0.0021066312770221707) +zone = ('miz034', 0.0014365532317661778) + +[fips2614320] +centroid = (0.74142557027783229, -1.4491005743458365) +description = Center Line city, MI +station = ('kdet', 0.0011235304705174845) +zone = ('miz070', 0.0039473398173848094) + +[fips2614321640] +centroid = (0.77288722444013247, -1.4778182393114436) +description = Denton township, MI +station = ('khtl', 0.0011687686119338026) +zone = ('miz034', 0.001191802851139216) + +[fips2614331960] +centroid = (0.77616870523326953, -1.4777522135058407) +description = Gerrish township, MI +station = ('khtl', 0.0021153760608292045) +zone = ('miz034', 0.0024722483120205412) + +[fips2614338020] +centroid = (0.7751716335381903, -1.4758851126319348) +description = Higgins township, MI +station = ('khtl', 0.001719043153929117) +zone = ('miz034', 0.0015028056269419676) + +[fips2614344400] +centroid = (0.77452724052506139, -1.4800274247187404) +description = Lake township, MI +station = ('khtl', 0.00172171785711829) +zone = ('miz034', 0.0024522904248706753) + +[fips2614349840] +centroid = (0.77608739034341923, -1.4798971533433716) +description = Lyon township, MI +station = ('khtl', 0.0025638147918901487) +zone = ('miz034', 0.0032054156246437205) + +[fips2614351780] +centroid = (0.77456361318667311, -1.4778211365580021) +description = Markey township, MI +station = ('khtl', 0.00051601167597656002) +zone = ('miz034', 0.0010794392147211005) + +[fips2614356980] +centroid = (0.77144910804307421, -1.4741175478852699) +description = Nester township, MI +station = ('khtl', 0.0036615233556147324) +zone = ('miz034', 0.0030154822290969496) + +[fips2614368200] +centroid = (0.77390805006633145, -1.4739479716951462) +description = Richfield township, MI +station = ('khtl', 0.0026957826591308674) +zone = ('miz034', 0.0020075827067095905) + +[fips2614369560] +centroid = (0.77191004949852582, -1.4791516010467973) +description = Roscommon township, MI +station = ('khtl', 0.0023782947301197134) +zone = ('miz034', 0.0025561521735643486) + +[fips2614400] +centroid = (0.78660587887995082, -1.488098926737391) +description = Central Lake village, MI +station = ('kacb', 0.0016138546309326059) +zone = ('miz021', 0.0019463644550359717) + +[fips2614460] +centroid = (0.73165560109760341, -1.4927092139565339) +description = Centreville village, MI +station = ('khai', 0.0010771764327780168) +zone = ('miz079', 0.00011220847074770935) + +[fips26145] +centroid = (0.75622091833320593, -1.4670436586137667) +description = Saginaw County, MI +station = ('khyx', 0.0030579228665587798) +zone = ('miz053', 0.00012081596668472103) + +[fips2614500920] +centroid = (0.75515426036084965, -1.4658479859031031) +description = Albee township, MI +station = ('khyx', 0.0033023010475024084) +zone = ('miz053', 0.001453058469552509) + +[fips2614508560] +centroid = (0.75509851454454091, -1.4618883225225185) +description = Birch Run township, MI +station = ('khyx', 0.0032295850868660531) +zone = ('miz061', 0.0042823976472290562) + +[fips2614509400] +centroid = (0.75804524118714545, -1.4618910801427367) +description = Blumfield township, MI +station = ('khyx', 0.0012967440905709618) +zone = ('miz053', 0.0040898650582654253) + +[fips2614509940] +centroid = (0.75337714866317651, -1.4699444481904591) +description = Brady township, MI +station = ('krnp', 0.0031909232345524339) +zone = ('miz053', 0.0036541488758880455) + +[fips2614510100] +centroid = (0.75505256002533583, -1.4699279024691501) +description = Brant township, MI +station = ('krnp', 0.0048013909411099851) +zone = ('miz053', 0.0024856554730239766) + +[fips2614510460] +centroid = (0.75655617862922153, -1.4638934265803798) +description = Bridgeport charter township, MI +station = ('khyx', 0.0015067434065876267) +zone = ('miz053', 0.0022734961349256131) + +[fips2614511560] +centroid = (0.75840544223817219, -1.4636151163778568) +description = Buena Vista charter township, MI +station = ('khyx', 0.00035361281625109059) +zone = ('miz053', 0.0032156459887255754) + +[fips2614513540] +centroid = (0.75850806759818934, -1.4650143293858879) +description = Carrollton township, MI +station = ('khyx', 0.0010717401050515921) +zone = ('miz053', 0.0026076206936409764) + +[fips2614514660] +centroid = (0.75341189816858367, -1.4719487319435718) +description = Chapin township, MI +station = ('krnp', 0.0039526109788872938) +zone = ('miz060', 0.0044447563281064632) + +[fips2614515160] +centroid = (0.7535886651152256, -1.4679090801233683) +description = Chesaning township, MI +station = ('krnp', 0.0032519653084374638) +zone = ('miz053', 0.0028274849607978643) + +[fips2614530200] +centroid = (0.75630059261355953, -1.4615235138022669) +description = Frankenmuth city, MI +station = ('khyx', 0.0023506942025636919) +zone = ('miz061', 0.0054459410340493633) + +[fips2614530220] +centroid = (0.75673109552685636, -1.4620401312608569) +description = Frankenmuth township, MI +station = ('khyx', 0.0017793472700621139) +zone = ('miz053', 0.0036318967760360591) + +[fips2614530720] +centroid = (0.75660066707185492, -1.4702498808095581) +description = Fremont township, MI +station = ('kmbs', 0.0037593616612644192) +zone = ('miz053', 0.0023743461344551266) + +[fips2614541480] +centroid = (0.75687471867100298, -1.4670191367377765) +description = James township, MI +station = ('kmbs', 0.0029487916141001961) +zone = ('miz053', 0.00053638462770802444) + +[fips2614541900] +centroid = (0.75816266693921974, -1.471670596273974) +description = Jonesfield township, MI +station = ('kmbs', 0.0034207305685875228) +zone = ('miz047', 0.0037167900017161352) + +[fips2614543800] +centroid = (0.75931514275089662, -1.4658181233196015) +description = Kochville township, MI +station = ('kmbs', 0.0013333658931987142) +zone = ('miz053', 0.0030990442121782988) + +[fips2614544560] +centroid = (0.75649146182055749, -1.4717073529080209) +description = Lakefield township, MI +station = ('kmbs', 0.0044880284951974176) +zone = ('miz052', 0.0036923727002551913) + +[fips2614551060] +centroid = (0.75360102204632984, -1.4659429143611189) +description = Maple Grove township, MI +station = ('krnp', 0.0037360184966912318) +zone = ('miz053', 0.0028446128011781965) + +[fips2614551700] +centroid = (0.75510249389523554, -1.4719835687154417) +description = Marion township, MI +station = ('krnp', 0.0053758875092027609) +zone = ('miz052', 0.0034208281440732697) + +[fips2614568340] +centroid = (0.75816032819802204, -1.4702593754006887) +description = Richland township, MI +station = ('kmbs', 0.002570421598457807) +zone = ('miz053', 0.0029853720684829659) + +[fips2614570520] +centroid = (0.75778143467070658, -1.4652862167767637) +description = Saginaw city, MI +station = ('khyx', 0.0012004201158888842) +zone = ('miz053', 0.0019087156500474684) + +[fips2614570540] +centroid = (0.75833672862552115, -1.4664649947002681) +description = Saginaw charter township, MI +station = ('kmbs', 0.0016550740585197469) +zone = ('miz053', 0.0020364730602054535) + +[fips2614570660] +centroid = (0.7550906256563219, -1.4680772251435052) +description = St. Charles township, MI +station = ('khyx', 0.0043618260339016775) +zone = ('miz053', 0.0014716860168256241) + +[fips2614575480] +centroid = (0.75645215700580259, -1.4658343374283525) +description = Spaulding township, MI +station = ('khyx', 0.0022420094898248344) +zone = ('miz053', 0.00085906413434418225) + +[fips2614577660] +centroid = (0.75656193821575313, -1.4682227332432443) +description = Swan Creek township, MI +station = ('kmbs', 0.0032767827243999478) +zone = ('miz053', 0.00091333606204625653) + +[fips2614579100] +centroid = (0.75502458239742631, -1.4637241121896436) +description = Taymouth township, MI +station = ('khyx', 0.0030302851798130119) +zone = ('miz053', 0.002725490119914306) + +[fips2614579520] +centroid = (0.75805723159910676, -1.4681034574421628) +description = Thomas township, MI +station = ('kmbs', 0.0017915807144258849) +zone = ('miz053', 0.0018951216396314611) + +[fips2614579840] +centroid = (0.75956732537451721, -1.4677976757572135) +description = Tittabawassee township, MI +station = ('kmbs', 0.00030252319148335756) +zone = ('miz053', 0.0032797997702663255) + +[fips2614589320] +centroid = (0.75893258403215202, -1.4647587433702258) +description = Zilwaukee city, MI +station = ('khyx', 0.0011779531675697905) +zone = ('miz053', 0.0030647465812946605) + +[fips2614589340] +centroid = (0.75925615062217922, -1.4642953584538214) +description = Zilwaukee township, MI +station = ('khyx', 0.0012826232496205012) +zone = ('miz053', 0.0035195096919230732) + +[fips26147] +centroid = (0.74924897374331179, -1.4428447383480356) +description = St. Clair County, MI +station = ('kphn', 0.0017456986099111899) +zone = ('miz063', 0.0002917189368977181) + +[fips2614700000] +centroid = (0.75253504475238175, -1.4385479995290134) +description = County subdivisions not defined, MI +station = ('cyzr', 0.0024505368707994596) +zone = ('miz063', 0.0044973707420863096) + +[fips2614701180] +centroid = (0.7438824004526946, -1.4405067301886489) +description = Algonac city, MI +station = ('kmtc', 0.0038330389092405739) +zone = ('miz063', 0.0059136117681625128) + +[fips2614707760] +centroid = (0.74938125224732044, -1.4471767502712405) +description = Berlin township, MI +station = ('kmtc', 0.0056824007427737251) +zone = ('miz063', 0.0030060481417313158) + +[fips2614710820] +centroid = (0.75244748158380914, -1.4453066474310212) +description = Brockway township, MI +station = ('kphn', 0.0049085212967955238) +zone = ('miz063', 0.0033799939996562562) + +[fips2614712020] +centroid = (0.7525630747401687, -1.4401848042081185) +description = Burtchville township, MI +station = ('cyzr', 0.0032841593622329373) +zone = ('miz063', 0.0037301111152199646) + +[fips2614713720] +centroid = (0.74638337000433996, -1.4428074406619205) +description = Casco township, MI +station = ('kphn', 0.0031557737549658795) +zone = ('miz063', 0.003110747903485582) + +[fips2614715540] +centroid = (0.74651709713162762, -1.4409786672183882) +description = China township, MI +station = ('kphn', 0.00254659328071091) +zone = ('miz063', 0.0033441928509794334) + +[fips2614716180] +centroid = (0.74356691473710412, -1.442047594118772) +description = Clay township, MI +station = ('kmtc', 0.002708837137533547) +zone = ('miz070', 0.0042811721061243539) + +[fips2614716760] +centroid = (0.75121723390066331, -1.4411219762032694) +description = Clyde township, MI +station = ('kphn', 0.0022303601367835201) +zone = ('miz063', 0.0022421002254855403) + +[fips2614717520] +centroid = (0.74803645860536638, -1.4430925227419411) +description = Columbus township, MI +station = ('kphn', 0.0021609760826936438) +zone = ('miz063', 0.0014516249284406899) + +[fips2614718400] +centroid = (0.74513401096588472, -1.4409533075843568) +description = Cottrellville township, MI +station = ('kmtc', 0.0037466340162979322) +zone = ('miz063', 0.0046233258400236385) + +[fips2614723820] +centroid = (0.74636858706557552, -1.43968932268677) +description = East China township, MI +station = ('kphn', 0.0027305562809812191) +zone = ('miz063', 0.0039855391017747151) + +[fips2614725960] +centroid = (0.75089991558935831, -1.4451745783665226) +description = Emmett township, MI +station = ('kphn', 0.0039086614131411098) +zone = ('miz063', 0.002087304078338) + +[fips2614729760] +centroid = (0.75129065990229471, -1.4396758138383594) +description = Fort Gratiot charter township, MI +station = ('cyzr', 0.0023198236326871561) +zone = ('miz063', 0.0030698766957949594) + +[fips2614734420] +centroid = (0.75256506441551607, -1.4415651676602286) +description = Grant township, MI +station = ('kphn', 0.0036162988172598544) +zone = ('miz063', 0.0032685336052231465) + +[fips2614735220] +centroid = (0.75261487611236799, -1.4432130377267913) +description = Greenwood township, MI +station = ('kphn', 0.0040984906871967359) +zone = ('miz063', 0.0031285339938107925) + +[fips2614740920] +centroid = (0.74520850161835994, -1.442653013929704) +description = Ira township, MI +station = ('kmtc', 0.0026550887671967912) +zone = ('miz063', 0.0042905926143970404) + +[fips2614742740] +centroid = (0.75105086911636321, -1.44328180369932) +description = Kenockee township, MI +station = ('kphn', 0.0028744107218018418) +zone = ('miz063', 0.0015702917791272299) + +[fips2614743160] +centroid = (0.74962280581579654, -1.4409709703163869) +description = Kimball township, MI +station = ('kphn', 0.00068779277115458344) +zone = ('miz063', 0.0015446575950024961) + +[fips2614749800] +centroid = (0.75244292627446141, -1.4475059368214593) +description = Lynn township, MI +station = ('kd95', 0.0043495692547638101) +zone = ('miz062', 0.0036619884262464012) + +[fips2614751600] +centroid = (0.74550519013790639, -1.439956654768298) +description = Marine City city, MI +station = ('kphn', 0.0035526234512118747) +zone = ('miz063', 0.0045920408326909218) + +[fips2614752080] +centroid = (0.74889657431404166, -1.4395545658152236) +description = Marysville city, MI +station = ('kphn', 0.00069106257195851678) +zone = ('miz063', 0.0026434446792155553) + +[fips2614752960] +centroid = (0.74872996518364632, -1.4445760351528438) +description = Memphis city, MI +station = ('kphn', 0.0030169806966595558) +zone = ('miz063', 0.0013363725309717383) + +[fips2614756380] +centroid = (0.75094045958788214, -1.4474286536421808) +description = Mussey township, MI +station = ('kd95', 0.004394480484957471) +zone = ('miz062', 0.0038681720040590973) + +[fips2614765820] +centroid = (0.75038277453199242, -1.438740230092828) +description = Port Huron city, MI +station = ('cyzr', 0.0014984554455566483) +zone = ('miz063', 0.0032943630742803599) + +[fips2614765840] +centroid = (0.75010312042594529, -1.4395332727983492) +description = Port Huron charter township, MI +station = ('kphn', 0.0012708023150644792) +zone = ('miz063', 0.0026625925443500105) + +[fips2614768380] +centroid = (0.74716627234690702, -1.4439177318655765) +description = Richmond city, MI +station = ('kphn', 0.0031393254911157428) +zone = ('miz063', 0.0024028271988065582) + +[fips2614768620] +centroid = (0.74958191275142227, -1.4452558234432031) +description = Riley township, MI +station = ('kphn', 0.0035399960513622271) +zone = ('miz063', 0.0016004993151552799) + +[fips2614770680] +centroid = (0.74746395570412716, -1.4397645638308236) +description = St. Clair city, MI +station = ('kphn', 0.0016578902128024829) +zone = ('miz063', 0.0031581514454951834) + +[fips2614770700] +centroid = (0.74807176661613417, -1.4408404022350454) +description = St. Clair township, MI +station = ('kphn', 0.0010011411455113166) +zone = ('miz063', 0.0021634874677307772) + +[fips2614780] +centroid = (0.79088465826096999, -1.4879658453819267) +description = Charlevoix city, MI +station = ('kcvx', 0.0003032100660127461) +zone = ('miz019', 0.0015599121099928524) + +[fips2614782900] +centroid = (0.74951923797798314, -1.4432832872291841) +description = Wales township, MI +station = ('kphn', 0.0021095048176208446) +zone = ('miz063', 0.00015697593178197938) + +[fips2614789000] +centroid = (0.75272996312324447, -1.4450901044307263) +description = Yale city, MI +station = ('kphn', 0.0050004236875093328) +zone = ('miz063', 0.0035614183126550865) + +[fips2614820] +centroid = (0.74292037496899532, -1.4805949010717339) +description = Charlotte city, MI +station = ('kfpk', 0.00029964542598447276) +zone = ('miz066', 0.00052858670210008548) + +[fips26149] +centroid = (0.73149346001009319, -1.4926556672550828) +description = St. Joseph County, MI +station = ('khai', 0.0012151281338416769) +zone = ('miz079', 8.2846299376525942e-05) + +[fips2614911940] +centroid = (0.73036894437303324, -1.4895368860548166) +description = Burr Oak township, MI +station = ('kirs', 0.0013725949585658684) +zone = ('miz079', 0.0026606447141444998) + +[fips2614917370] +centroid = (0.73213949363271891, -1.48967771667216) +description = Colon township, MI +station = ('kirs', 0.002624353483516341) +zone = ('miz079', 0.0023554303385035611) + +[fips2614917860] +centroid = (0.73038704343737648, -1.4957425787432077) +description = Constantine township, MI +station = ('khai', 0.0024179743303428701) +zone = ('miz079', 0.002516951630781381) + +[fips2614926920] +centroid = (0.73197647988058268, -1.495732892165859) +description = Fabius township, MI +station = ('khai', 0.0014631639768413257) +zone = ('miz079', 0.0022666811100887259) + +[fips2614927540] +centroid = (0.72937454303170957, -1.489565195295284) +description = Fawn River township, MI +station = ('kirs', 0.0012777267996860226) +zone = ('inz006', 0.0027788847814778704) + +[fips2614929060] +centroid = (0.73058480669491987, -1.4938936467468149) +description = Florence township, MI +station = ('khai', 0.0017560415841994645) +zone = ('miz079', 0.0012881695524937561) + +[fips2614929140] +centroid = (0.73341641142006297, -1.4956430775225513) +description = Flowerfield township, MI +station = ('khai', 0.0017261754350484718) +zone = ('miz079', 0.0028551538740212014) + +[fips2614940] +centroid = (0.80885673244777612, -1.5172371287862663) +description = Chatham village, MI +station = ('kp53', 0.0036159962923421637) +zone = ('miz006', 0.0041292089597258167) + +[fips2614947020] +centroid = (0.73354971966833027, -1.489606856304529) +description = Leonidas township, MI +station = ('kirs', 0.003959469072099652) +zone = ('miz079', 0.0030735707177991819) + +[fips2614949060] +centroid = (0.73193640712095687, -1.4935847060159193) +description = Lockport township, MI +station = ('khai', 0.0004422306074516782) +zone = ('miz079', 0.00073876371723644875) + +[fips2614953000] +centroid = (0.73354287797766249, -1.4916499561802063) +description = Mendon township, MI +station = ('khai', 0.0020162351905547958) +zone = ('miz079', 0.0021555161395713967) + +[fips2614955780] +centroid = (0.72934043929812542, -1.495946049227405) +description = Mottville township, MI +station = ('khai', 0.0033892839146744138) +zone = ('miz079', 0.0032498669962801961) + +[fips2614959400] +centroid = (0.73200599339823391, -1.491742964776045) +description = Nottawa township, MI +station = ('khai', 0.0015857814128943687) +zone = ('miz079', 0.00087389947888623799) + +[fips2614962480] +centroid = (0.7334056601918707, -1.4936695115642737) +description = Park township, MI +station = ('khai', 0.001071941348103313) +zone = ('miz079', 0.0019834574992729326) + +[fips2614973300] +centroid = (0.73061173712527816, -1.4918640033596708) +description = Sherman township, MI +station = ('kirs', 0.00097778058260872421) +zone = ('miz079', 0.0011401104460037404) + +[fips2614976960] +centroid = (0.72955179867054198, -1.4908280806354419) +description = Sturgis city, MI +station = ('kirs', 0.00035014440968090789) +zone = ('miz079', 0.0024512038553574189) + +[fips2614976980] +centroid = (0.72933623305462825, -1.4918498487394369) +description = Sturgis township, MI +station = ('kirs', 0.00065359828353757235) +zone = ('miz079', 0.0023074953797639422) + +[fips2614979760] +centroid = (0.73208476010737633, -1.4945346887277799) +description = Three Rivers city, MI +station = ('khai', 0.00058479406870298137) +zone = ('miz079', 0.0014385895206584409) + +[fips2614986940] +centroid = (0.72931972223990438, -1.4939125486626139) +description = White Pigeon township, MI +station = ('kirs', 0.002075616177001425) +zone = ('miz079', 0.0023910393889263479) + +[fips2615000] +centroid = (0.79660167621209521, -1.4742580294367629) +description = Cheboygan city, MI +station = ('kslh', 0.00064797741209011094) +zone = ('miz017', 0.0034265848280781359) + +[fips2615020] +centroid = (0.73847310150198853, -1.4664154448028042) +description = Chelsea city, MI +station = ('karb', 0.0038526380725847423) +zone = ('miz075', 0.0025459371961658651) + +[fips26151] +centroid = (0.75833081195935681, -1.4423892248665575) +description = Sanilac County, MI +station = ('kbax', 0.0072296215897378032) +zone = ('miz055', 0.0022910060420248605) + +[fips2615100000] +centroid = (0.75875449063527844, -1.4377573130179824) +description = County subdivisions not defined, MI +station = ('cyzr', 0.0082989499880691004) +zone = ('miz055', 0.0056763936700337863) + +[fips2615103460] +centroid = (0.76019902984398413, -1.4473616679054895) +description = Argyle township, MI +station = ('kbax', 0.0039880833039374229) +zone = ('miz055', 0.002687116296339651) + +[fips2615104400] +centroid = (0.76169952430850862, -1.4477059166471529) +description = Austin township, MI +station = ('kbax', 0.0024674765456479644) +zone = ('miz049', 0.0034567726685035523) + +[fips2615110420] +centroid = (0.75875887141170095, -1.4431103774601892) +description = Bridgehampton township, MI +station = ('kbax', 0.006575642465539531) +zone = ('miz055', 0.0019326580047381013) + +[fips2615111180] +centroid = (0.75418258320638676, -1.4484204020830418) +description = Brown City city, MI +station = ('kd95', 0.0044056363535727068) +zone = ('miz062', 0.0036499301800478833) + +[fips2615111540] +centroid = (0.75565211552998091, -1.4433727528066416) +description = Buel township, MI +station = ('kphn', 0.0069442914432200232) +zone = ('miz055', 0.0027077695748762396) + +[fips2615118920] +centroid = (0.75528149486331997, -1.4419706076454668) +description = Croswell city, MI +station = ('cyzr', 0.00614434402390683) +zone = ('miz055', 0.0036460138449652306) + +[fips2615119460] +centroid = (0.75871433060919002, -1.4452649340618986) +description = Custer township, MI +station = ('kbax', 0.0058543608740091457) +zone = ('miz055', 0.00084628303244040277) + +[fips2615121380] +centroid = (0.76175418802068107, -1.4430786299210954) +description = Delaware township, MI +station = ('kbax', 0.0044977811361653743) +zone = ('miz055', 0.0042455991636098202) + +[fips2615125280] +centroid = (0.75542154008249995, -1.4456162688403249) +description = Elk township, MI +station = ('kd95', 0.0067914011389640485) +zone = ('miz055', 0.0024634020632993449) + +[fips2615125540] +centroid = (0.75716421643403131, -1.4473146138288557) +description = Elmer township, MI +station = ('kbax', 0.0069974569107006286) +zone = ('miz055', 0.0015122013499180543) + +[fips2615126740] +centroid = (0.75998801953741801, -1.4495066601028979) +description = Evergreen township, MI +station = ('kbax', 0.004212535386228778) +zone = ('miz055', 0.0035989173257532257) + +[fips2615129240] +centroid = (0.75558814921289541, -1.4475004739409008) +description = Flynn township, MI +station = ('kd95', 0.0058109714872501324) +zone = ('miz055', 0.0027234781955839068) + +[fips2615129500] +centroid = (0.75972763386631292, -1.4418233018565982) +description = Forester township, MI +station = ('kbax', 0.0064601402532116414) +zone = ('miz055', 0.0032337048029782932) + +[fips2615130740] +centroid = (0.75398660018468033, -1.4432897624007091) +description = Fremont township, MI +station = ('kphn', 0.0053587895706455873) +zone = ('miz055', 0.0042107107538661625) + +[fips2615135020] +centroid = (0.76150628145372778, -1.4492825249203569) +description = Greenleaf township, MI +station = ('kbax', 0.0026951694667371783) +zone = ('miz049', 0.0035368059259445858) + +[fips2615140] +centroid = (0.75371350851662089, -1.4681694134345957) +description = Chesaning village, MI +station = ('krnp', 0.0033567088074434926) +zone = ('miz053', 0.0027584770250761027) + +[fips2615145460] +centroid = (0.75851600884628601, -1.4494577734305496) +description = Lamotte township, MI +station = ('kbax', 0.0056586230046172777) +zone = ('miz055', 0.0029542732380482334) + +[fips2615147300] +centroid = (0.75574767230652773, -1.441479890872976) +description = Lexington township, MI +station = ('cyzr', 0.0063089638951431895) +zone = ('miz055', 0.0036099676712722482) + +[fips2615151380] +centroid = (0.75387756946630835, -1.4474624955763771) +description = Maple Valley township, MI +station = ('kd95', 0.0048470767195844785) +zone = ('miz062', 0.0040950205928399746) + +[fips2615151720] +centroid = (0.76026269945509684, -1.4432616625997521) +description = Marion township, MI +station = ('kbax', 0.0053418647907636221) +zone = ('miz055', 0.0028741529027609095) + +[fips2615151820] +centroid = (0.75620484385079501, -1.4500288277085096) +description = Marlette city, MI +station = ('kd95', 0.0051609936586266107) +zone = ('miz062', 0.0045138763985989551) + +[fips2615151840] +centroid = (0.75662089543788558, -1.4495836291229109) +description = Marlette township, MI +station = ('kd95', 0.0056813168949762394) +zone = ('miz055', 0.0032360099343881343) + +[fips2615154540] +centroid = (0.7616659092671153, -1.4454851597069152) +description = Minden township, MI +station = ('kbax', 0.0032207089140839878) +zone = ('miz055', 0.0037828617347416653) + +[fips2615155320] +centroid = (0.75859135471009453, -1.4473919493680116) +description = Moore township, MI +station = ('kbax', 0.0055735970695343102) +zone = ('miz055', 0.0015562137678756338) + +[fips2615171540] +centroid = (0.75782517262176152, -1.4457093297960415) +description = Sandusky city, MI +station = ('kbax', 0.0065830558767128039) +zone = ('miz055', 0.00017398084314824476) + +[fips2615171580] +centroid = (0.75759000695834777, -1.4413592013552006) +description = Sanilac township, MI +station = ('cyzr', 0.0078700307724321097) +zone = ('miz055', 0.0030101112304614674) + +[fips2615175500] +centroid = (0.7538951623851684, -1.445354643985451) +description = Speaker township, MI +station = ('kphn', 0.0060245616166309498) +zone = ('miz055', 0.0039889863218193341) + +[fips2615184140] +centroid = (0.7570750999224245, -1.4430024637525383) +description = Washington township, MI +station = ('cyzr', 0.0080298776659459038) +zone = ('miz055', 0.0019753829772229201) + +[fips2615184440] +centroid = (0.75696893154402567, -1.4451298979376717) +description = Watertown township, MI +station = ('kbax', 0.0075264344999368014) +zone = ('miz055', 0.0009495239972482425) + +[fips2615186580] +centroid = (0.76018759793738344, -1.4452903286025152) +description = Wheatland township, MI +station = ('kbax', 0.004519700071575523) +zone = ('miz055', 0.0023088045811903192) + +[fips2615188760] +centroid = (0.75406763582185043, -1.4412685838604371) +description = Worth township, MI +station = ('cyzr', 0.0048918447767455917) +zone = ('miz063', 0.0047655556134499561) + +[fips26153] +centroid = (0.80321375136352058, -1.5044625054855592) +description = Schoolcraft County, MI +station = ('kisq', 0.00086948260671291145) +zone = ('miz014', 0.00055310148247435622) + +[fips2615300000] +centroid = (0.79858807034037504, -1.5033536803584748) +description = County subdivisions not defined, MI +station = ('kisq', 0.0038473364156556195) +zone = ('miz014', 0.0052153011096967685) + +[fips2615322960] +centroid = (0.80567634112491449, -1.5022079415177105) +description = Doyle township, MI +station = ('kisq', 0.0034908212236165431) +zone = ('miz014', 0.0024163078153160104) + +[fips2615331940] +centroid = (0.80713847325248034, -1.4997094328803104) +description = Germfask township, MI +station = ('kisq', 0.0055801808442669694) +zone = ('miz014', 0.0046543338526359619) + +[fips2615337940] +centroid = (0.80695647031808226, -1.5067035431517048) +description = Hiawatha township, MI +station = ('kisq', 0.0049216684674461093) +zone = ('miz085', 0.0022380375443504497) + +[fips2615340840] +centroid = (0.80445916595786615, -1.5091125513050625) +description = Inwood township, MI +station = ('kisq', 0.0041077834260021548) +zone = ('miz014', 0.00339168536295792) + +[fips2615350760] +centroid = (0.80211140140796089, -1.5053365489216655) +description = Manistique city, MI +station = ('kisq', 0.000986395907563271) +zone = ('miz014', 0.001790110071991905) + +[fips2615350780] +centroid = (0.80515064795421387, -1.5036579261536824) +description = Manistique township, MI +station = ('kisq', 0.0027497086131442854) +zone = ('miz014', 0.0014673677484288675) + +[fips2615356060] +centroid = (0.80339653969608193, -1.5001130577231268) +description = Mueller township, MI +station = ('kisq', 0.0028641109751594571) +zone = ('miz014', 0.0029487670254340031) + +[fips2615372500] +centroid = (0.80992497866975177, -1.5010457442220999) +description = Seney township, MI +station = ('kery', 0.0067832647325855753) +zone = ('miz085', 0.0027584160083167549) + +[fips2615379580] +centroid = (0.80230977553074267, -1.5071650954723947) +description = Thompson township, MI +station = ('kisq', 0.0022130748878161017) +zone = ('miz014', 0.0024454748159912611) + +[fips26155] +centroid = (0.74964587906850788, -1.4686308959421155) +description = Shiawassee County, MI +station = ('krnp', 0.0007259312222528887) +zone = ('miz060', 3.7873648557269624e-05) + +[fips2615503120] +centroid = (0.74748406189711014, -1.4679284358247728) +description = Antrim township, MI +station = ('krnp', 0.0029117829322400368) +zone = ('miz060', 0.0022598589769119611) + +[fips2615507280] +centroid = (0.74891781497103838, -1.4698508112760893) +description = Bennington township, MI +station = ('krnp', 0.0017528483044543448) +zone = ('miz060', 0.001173075214772988) + +[fips2615511880] +centroid = (0.74750008401964341, -1.4658301486381478) +description = Burns township, MI +station = ('krnp', 0.0034693424837149147) +zone = ('miz060', 0.0029993479901457079) + +[fips2615512520] +centroid = (0.75052706090125465, -1.4678536310130323) +description = Caledonia charter township, MI +station = ('krnp', 0.00050002329074155664) +zone = ('miz060', 0.0010198325402023705) + +[fips2615518300] +centroid = (0.75020171407539049, -1.4680987625064752) +description = Corunna city, MI +station = ('krnp', 0.00033653221831997626) +zone = ('miz060', 0.00065088433376376349) + +[fips2615523500] +centroid = (0.74899474908446628, -1.4658752828526043) +description = Durand city, MI +station = ('krnp', 0.0023603508100609925) +zone = ('miz060', 0.0021360246963559107) + +[fips2615527040] +centroid = (0.75190089682196204, -1.4719703216664191) +description = Fairfield township, MI +station = ('krnp', 0.0029646046989305389) +zone = ('miz060', 0.0032949512097842156) + +[fips2615537440] +centroid = (0.75205509666137571, -1.4659231921405715) +description = Hazelton township, MI +station = ('krnp', 0.0025304549769244711) +zone = ('miz060', 0.003092068752291773) + +[fips2615544200] +centroid = (0.74858149002417917, -1.4721921879209323) +description = Laingsburg city, MI +station = ('krnp', 0.0032381603069058271) +zone = ('miz060', 0.0028270425317791299) + +[fips2615553680] +centroid = (0.75053060391963633, -1.4716386567486626) +description = Middlebury township, MI +station = ('krnp', 0.002301021799370943) +zone = ('miz060', 0.0023537998528679279) + +[fips2615557400] +centroid = (0.75207024611928308, -1.4678410297358331) +description = New Haven township, MI +station = ('krnp', 0.0017715728676742446) +zone = ('miz060', 0.0024566669694431179) + +[fips2615561940] +centroid = (0.75040871012467703, -1.4691456458984062) +description = Owosso city, MI +station = ('krnp', 0.00047374558689551734) +zone = ('miz060', 0.00081514317965776712) + +[fips2615561960] +centroid = (0.75047642889965449, -1.4701521947313239) +description = Owosso charter township, MI +station = ('krnp', 0.0012130303466426917) +zone = ('miz060', 0.0013629833704251171) + +[fips2615563700] +centroid = (0.74755223445769303, -1.4699437500587584) +description = Perry city, MI +station = ('krnp', 0.0030052810752172121) +zone = ('miz060', 0.0023364165752985809) + +[fips2615563720] +centroid = (0.74699866837883799, -1.4693646323596539) +description = Perry township, MI +station = ('krnp', 0.0034258369592770586) +zone = ('miz060', 0.0027372653169004681) + +[fips2615570260] +centroid = (0.75197371195835527, -1.4700831844127) +description = Rush township, MI +station = ('krnp', 0.0019809437725943906) +zone = ('miz060', 0.0025225235420404807) + +[fips2615571960] +centroid = (0.7488789813951815, -1.4717038797028095) +description = Sciota township, MI +station = ('krnp', 0.0027761408026522674) +zone = ('miz060', 0.0023852923242767879) + +[fips2615573520] +centroid = (0.74902937641682588, -1.4677440766958847) +description = Shiawassee township, MI +station = ('krnp', 0.0014463433410757684) +zone = ('miz060', 0.00092477258316350623) + +[fips2615581880] +centroid = (0.75065134579728932, -1.466013809635335) +description = Venice township, MI +station = ('krnp', 0.0018410455809915248) +zone = ('miz060', 0.002149289764891215) + +[fips2615582040] +centroid = (0.7485401082676143, -1.465255376808881) +description = Vernon township, MI +station = ('kfnt', 0.0029330611356959469) +zone = ('miz060', 0.0027275411231602372) + +[fips2615588400] +centroid = (0.74723187927348944, -1.4716350613704032) +description = Woodhull township, MI +station = ('krnp', 0.0038847498844922046) +zone = ('miz060', 0.0032918696276409546) + +[fips26157] +centroid = (0.75900707468462703, -1.4562437008287661) +description = Tuscola County, MI +station = ('kcfs', 0.00052285630436058289) +zone = ('miz054', 0.00048601889840499618) + +[fips2615700000] +centroid = (0.76305650034864181, -1.459625136628165) +description = County subdivisions not defined, MI +station = ('kcfs', 0.0051257873132765606) +zone = ('miz048', 0.0045688505575655529) + +[fips2615700720] +centroid = (0.76151273917196027, -1.4577093236148357) +description = Akron township, MI +station = ('kcfs', 0.0031637624345580199) +zone = ('miz054', 0.0032031234139165447) + +[fips2615701620] +centroid = (0.76002139023271609, -1.4557188105095213) +description = Almer township, MI +station = ('kcfs', 0.001602409574915758) +zone = ('miz054', 0.0014355076698874772) + +[fips2615703220] +centroid = (0.75510656051239256, -1.459784851708015) +description = Arbela township, MI +station = ('khyx', 0.0040866856192736068) +zone = ('miz061', 0.0043217921534577245) + +[fips2615715] +centroid = (0.77972514519676595, -1.4948710834878094) +description = Chums Corner CDP, MI +station = ('ktvc', 0.0014496787106529228) +zone = ('miz026', 0.0011292473938797933) + +[fips2615717420] +centroid = (0.76143128465576959, -1.4558271780027776) +description = Columbia township, MI +station = ('kcfs', 0.0029641317635534349) +zone = ('miz054', 0.0028400722069979669) + +[fips2615719980] +centroid = (0.75703029732052574, -1.4534073488080577) +description = Dayton township, MI +station = ('kcfs', 0.0026185733692379093) +zone = ('miz054', 0.0023886106520942434) + +[fips2615721600] +centroid = (0.75796378667095488, -1.4596101791564753) +description = Denmark township, MI +station = ('kcfs', 0.0023943735789036706) +zone = ('miz054', 0.0027686567583033346) + +[fips2615725300] +centroid = (0.7615100688182046, -1.4516548462528378) +description = Elkland township, MI +station = ('kbax', 0.0035277159014735666) +zone = ('miz049', 0.004027326552111998) + +[fips2615725380] +centroid = (0.75989148537649021, -1.4535332743135891) +description = Ellington township, MI +station = ('kcfs', 0.0025013102986115678) +zone = ('miz054', 0.0021510273896131896) + +[fips2615725720] +centroid = (0.76155345770340932, -1.4535682332585065) +description = Elmwood township, MI +station = ('kcfs', 0.0036805485691247374) +zone = ('miz054', 0.0034086459218682415) + +[fips2615727100] +centroid = (0.75950562798545929, -1.4576713627036049) +description = Fairgrove township, MI +station = ('kcfs', 0.0013701800732423917) +zone = ('miz054', 0.0015793030876158839) + +[fips2615730760] +centroid = (0.75676347138448086, -1.4556505332291834) +description = Fremont township, MI +station = ('kcfs', 0.0018148049437944041) +zone = ('miz054', 0.0018368602892001697) + +[fips2615732160] +centroid = (0.75955725482473324, -1.4596480702545362) +description = Gilford township, MI +station = ('kcfs', 0.0025879124873769538) +zone = ('miz054', 0.0028881746630721686) + +[fips2615740440] +centroid = (0.75840931686911162, -1.4556671487636623) +description = Indianfields township, MI +station = ('kcfs', 0.00053527490971170372) +zone = ('miz054', 0.00024669072735489613) + +[fips2615742140] +centroid = (0.75809657132044661, -1.4576939996240033) +description = Juniata township, MI +station = ('kcfs', 0.0010242315844582375) +zone = ('miz054', 0.0013959934297789317) + +[fips2615743400] +centroid = (0.75833772346319472, -1.4516779020522563) +description = Kingston township, MI +station = ('kcfs', 0.0034277965638413745) +zone = ('miz054', 0.0030724452735924651) + +[fips2615743880] +centroid = (0.75699472751037011, -1.451417900353587) +description = Koylton township, MI +station = ('kcfs', 0.0039144528692982095) +zone = ('miz054', 0.0036235951564090665) + +[fips2615754240] +centroid = (0.7550026610620213, -1.4576395278980485) +description = Millington township, MI +station = ('kcfs', 0.003608512458452888) +zone = ('miz054', 0.0038062533506072588) + +[fips2615759420] +centroid = (0.75997814097385163, -1.4516162046631984) +description = Novesta township, MI +station = ('kbax', 0.004760597954479414) +zone = ('miz054', 0.0033998606838150655) + +[fips2615780940] +centroid = (0.75658968895085976, -1.4597575023986362) +description = Tuscola township, MI +station = ('kcfs', 0.0030987096520118046) +zone = ('miz054', 0.0034463893522807339) + +[fips2615781840] +centroid = (0.75697359157312849, -1.4586847008673127) +description = Vassar city, MI +station = ('kcfs', 0.0022547679822300182) +zone = ('miz054', 0.0025924886770253286) + +[fips2615781860] +centroid = (0.75656672041790363, -1.4578081965169614) +description = Vassar township, MI +station = ('kcfs', 0.0021853993516082739) +zone = ('miz054', 0.0024556311966734486) + +[fips2615784460] +centroid = (0.75536027902575498, -1.4557639970838554) +description = Watertown township, MI +station = ('kcfs', 0.0031689313107274653) +zone = ('miz054', 0.0032327981833426421) + +[fips2615785280] +centroid = (0.75839270133463255, -1.4535495931420952) +description = Wells township, MI +station = ('kcfs', 0.002067960005638973) +zone = ('miz054', 0.0017148234308350984) + +[fips2615788080] +centroid = (0.76093072422629759, -1.4597207283112967) +description = Wisner township, MI +station = ('kcfs', 0.0034268550459297187) +zone = ('miz054', 0.0036276878200073954) + +[fips26159] +centroid = (0.73799477656718704, -1.5063185758785924) +description = Van Buren County, MI +station = ('klwa', 0.0013306801216778367) +zone = ('miz071', 0.0037478340880054738) + +[fips2615900000] +centroid = (0.73880417300779944, -1.5130229440408633) +description = County subdivisions not defined, MI +station = ('kbeh', 0.0049281367484289478) +zone = ('miz077', 0.0074773033662433814) + +[fips2615901600] +centroid = (0.73803851451824209, -1.4978145114581276) +description = Almena township, MI +station = ('kazo', 0.0035895984887721918) +zone = ('miz071', 0.0026607500477781551) + +[fips2615903140] +centroid = (0.73660369679346993, -1.4977325682497467) +description = Antwerp township, MI +station = ('kazo', 0.0034466947825766568) +zone = ('miz071', 0.0027753404445720982) + +[fips2615903500] +centroid = (0.73812215069599751, -1.5017618528141934) +description = Arlington township, MI +station = ('klwa', 0.002920471853083017) +zone = ('miz071', 0.00077285258497221388) + +[fips2615905140] +centroid = (0.73849121801962425, -1.5029630756718781) +description = Bangor city, MI +station = ('klwa', 0.0019590323968299577) +zone = ('miz071', 0.0016213029939228757) + +[fips2615905160] +centroid = (0.73802538964226694, -1.5039191146762432) +description = Bangor township, MI +station = ('klwa', 0.0016053981685066445) +zone = ('miz071', 0.0020200140896302014) + +[fips2615909240] +centroid = (0.73959927520183799, -1.4998668615788404) +description = Bloomingdale township, MI +station = ('kazo', 0.0055698714115273214) +zone = ('miz071', 0.0024236603986407079) + +[fips2615917440] +centroid = (0.73962044604566468, -1.5019260708435134) +description = Columbia township, MI +station = ('klwa', 0.0026461821652984099) +zone = ('miz071', 0.0022424472074398893) + +[fips2615918560] +centroid = (0.73798460129764787, -1.5058440732148528) +description = Covert township, MI +station = ('klwa', 0.0012118623210830395) +zone = ('miz071', 0.0033995324249388144) + +[fips2615920] +centroid = (0.7648804566834384, -1.4794296494499324) +description = Clare city, MI +station = ('kmop', 0.0036480527218848758) +zone = ('miz040', 0.003036941939351031) + +[fips2615921060] +centroid = (0.73500926870860306, -1.4996598306229687) +description = Decatur township, MI +station = ('kazo', 0.0052765137548311421) +zone = ('miz071', 0.0027079674126931231) + +[fips2615931840] +centroid = (0.73973352592790131, -1.5038036611462238) +description = Geneva township, MI +station = ('klwa', 0.0013462790082666794) +zone = ('miz071', 0.0029536708776046424) + +[fips2615932640] +centroid = (0.73935032143733337, -1.4988432434258383) +description = Gobles city, MI +station = ('kazo', 0.004783180873272258) +zone = ('miz071', 0.0026543933597310949) + +[fips2615936180] +centroid = (0.73490002855072079, -1.5014935433482841) +description = Hamilton township, MI +station = ('klwa', 0.0051726473099680745) +zone = ('miz071', 0.0025278118943210227) + +[fips2615936960] +centroid = (0.73661549521921355, -1.5038825325751215) +description = Hartford city, MI +station = ('klwa', 0.0027986554017541917) +zone = ('miz071', 0.0020674286810390095) + +[fips2615936980] +centroid = (0.73597715849858902, -1.5041545944989223) +description = Hartford township, MI +station = ('kbeh', 0.0031011679904765538) +zone = ('miz071', 0.0025542236109086913) + +[fips2615942500] +centroid = (0.73490510745884408, -1.5037179654799511) +description = Keeler township, MI +station = ('kbeh', 0.0033968962972261902) +zone = ('miz071', 0.0030858518137017498) + +[fips2615946460] +centroid = (0.73654786371069869, -1.501806149270609) +description = Lawrence township, MI +station = ('klwa', 0.0037566811919636546) +zone = ('miz071', 0.0009494618827512449) + +[fips2615963000] +centroid = (0.73651561002612187, -1.4999593465759036) +description = Paw Paw township, MI +station = ('kazo', 0.0050933992569319238) +zone = ('miz071', 0.0013529739105183553) + +[fips2615964280] +centroid = (0.73965233321109858, -1.4977696914029366) +description = Pine Grove township, MI +station = ('kazo', 0.0042705902734740961) +zone = ('miz071', 0.0034393609175400689) + +[fips2615965760] +centroid = (0.73513830090020305, -1.4977546990246617) +description = Porter township, MI +station = ('kazo', 0.0039548300638051993) +zone = ('miz071', 0.0034896289618913411) + +[fips2615974980] +centroid = (0.74005042536018595, -1.5056722280967014) +description = South Haven city, MI +station = ('klwa', 0.00090355640583036835) +zone = ('miz071', 0.0041573114744683131) + +[fips2615975000] +centroid = (0.73938011420766503, -1.5055054967932586) +description = South Haven charter township, MI +station = ('klwa', 0.0002220286373444292) +zone = ('miz071', 0.0036658474402005725) + +[fips2615984820] +centroid = (0.7380668761185869, -1.4998623237227853) +description = Waverly township, MI +station = ('kazo', 0.0050740496185507833) +zone = ('miz071', 0.0012511219912435811) + +[fips26161] +centroid = (0.73744222277929816, -1.4633649234295834) +description = Washtenaw County, MI +station = ('karb', 0.0013721712774241324) +zone = ('miz075', 8.1425885670540583e-05) + +[fips2616103000] +centroid = (0.73784912884110809, -1.4613874479337814) +description = Ann Arbor city, MI +station = ('karb', 0.0010571744280818793) +zone = ('miz075', 0.00143759727468043) + +[fips2616103020] +centroid = (0.73861244858946784, -1.4610075595687924) +description = Ann Arbor charter township, MI +station = ('karb', 0.001867131488808758) +zone = ('miz075', 0.0020241932122361432) + +[fips2616104180] +centroid = (0.73532550491577198, -1.458962609644108) +description = Augusta charter township, MI +station = ('kyip', 0.0019417938598968046) +zone = ('miz083', 0.0035946029975522688) + +[fips2616110560] +centroid = (0.73509716348973353, -1.4653492057094681) +description = Bridgewater township, MI +station = ('karb', 0.0031984696469056699) +zone = ('miz075', 0.0028264506800182083) + +[fips2616115020] +centroid = (0.73847310150198853, -1.4664154448028042) +description = Chelsea city, MI +station = ('karb', 0.0038526380725847423) +zone = ('miz075', 0.0025459371961658651) + +[fips2616122180] +centroid = (0.73971558394319081, -1.465047054309363) +description = Dexter township, MI +station = ('karb', 0.0038033582569409409) +zone = ('miz075', 0.0026141153338434565) + +[fips2616130520] +centroid = (0.73674892564052841, -1.465446682348192) +description = Freedom township, MI +station = ('karb', 0.0027660125193828692) +zone = ('miz075', 0.0017701549052302735) + +[fips2616140] +centroid = (0.74773554638903006, -1.4877629857629673) +description = Clarksville village, MI +station = ('ky70', 0.0028928245843489147) +zone = ('miz058', 0.0028006253691519076) + +[fips2616147460] +centroid = (0.73814503196249115, -1.4651261700843556) +description = Lima township, MI +station = ('karb', 0.0028526188512108769) +zone = ('miz075', 0.0015424437388018395) + +[fips2616149120] +centroid = (0.73686396029152734, -1.4634841294174947) +description = Lodi township, MI +station = ('karb', 0.0013122464450015738) +zone = ('miz075', 0.0006200486589350659) + +[fips2616149780] +centroid = (0.73979724789889156, -1.4674170892605236) +description = Lyndon township, MI +station = ('kozw', 0.0043917507504242399) +zone = ('miz075', 0.0038620881744368747) + +[fips2616150680] +centroid = (0.73518327803502681, -1.4673494053921314) +description = Manchester township, MI +station = ('kadg', 0.0044741341688520481) +zone = ('miz082', 0.0039767437984210225) + +[fips2616153920] +centroid = (0.73461883855493193, -1.4605525522327973) +description = Milan city, MI +station = ('karb', 0.0023632180401327897) +zone = ('miz083', 0.0033949631270881048) + +[fips2616158280] +centroid = (0.73985784573052094, -1.4613280892859208) +description = Northfield township, MI +station = ('karb', 0.0030513388096563071) +zone = ('miz075', 0.0027894309604412316) + +[fips2616160] +centroid = (0.74240497924088145, -1.4512484986963883) +description = Clawson city, MI +station = ('kvll', 0.00036767321550394661) +zone = ('miz069', 0.0037128746656998265) + +[fips2616164560] +centroid = (0.73667556945206714, -1.4611126982029323) +description = Pittsfield charter township, MI +station = ('karb', 0.00046761183818088136) +zone = ('miz075', 0.0017719333026205413) + +[fips2616171130] +centroid = (0.73984438924198803, -1.459211249249347) +description = Salem township, MI +station = ('kyip', 0.0028927961981562293) +zone = ('miz075', 0.0038252657726729005) + +[fips2616171140] +centroid = (0.73607467004389793, -1.4621838940313439) +description = Saline city, MI +station = ('karb', 0.00082270674755587851) +zone = ('miz075', 0.0015982745229795843) + +[fips2616171160] +centroid = (0.73509569741316183, -1.4633099804647305) +description = Saline township, MI +station = ('karb', 0.0020912347182067484) +zone = ('miz075', 0.0023655679603210699) + +[fips2616171940] +centroid = (0.7383107684282606, -1.4635807857514698) +description = Scio township, MI +station = ('karb', 0.0020330538651134973) +zone = ('miz075', 0.00088276668995040063) + +[fips2616172760] +centroid = (0.73665745293443141, -1.4675157352698462) +description = Sharon township, MI +station = ('kjxn', 0.0050714478189329342) +zone = ('miz075', 0.0032535094580313909) + +[fips2616177560] +centroid = (0.7383428475799122, -1.4591041732997372) +description = Superior charter township, MI +station = ('kyip', 0.0015069555069014654) +zone = ('miz076', 0.00406884776928906) + +[fips2616177800] +centroid = (0.73817660496865978, -1.4674643353233752) +description = Sylvan township, MI +station = ('karb', 0.0044676802838369062) +zone = ('miz075', 0.0031937390043641255) + +[fips2616185100] +centroid = (0.73961259206403063, -1.4636027419934601) +description = Webster township, MI +station = ('karb', 0.0031229460765845587) +zone = ('miz075', 0.0021667022005467172) + +[fips2616189100] +centroid = (0.73525677384982846, -1.4612341556655786) +description = York charter township, MI +station = ('karb', 0.0016028813366916444) +zone = ('miz075', 0.0026658212618004421) + +[fips2616189140] +centroid = (0.73728320583114892, -1.4594789129434329) +description = Ypsilanti city, MI +station = ('kyip', 0.0011583999624114546) +zone = ('miz075', 0.002802964358927058) + +[fips2616189160] +centroid = (0.73676767047669489, -1.4590810127805631) +description = Ypsilanti charter township, MI +station = ('kyip', 0.00091763353798582446) +zone = ('miz075', 0.0031693425324484667) + +[fips2616280] +centroid = (0.73067989223256857, -1.4701743255062392) +description = Clayton village, MI +station = ('kadg', 0.0019687508758081166) +zone = ('miz082', 0.0022508047739228424) + +[fips26163] +centroid = (0.7380066098995155, -1.4531952214907704) +description = Wayne County, MI +station = ('kdtw', 0.0012856088997665902) +zone = ('miz076', 0.00031716780059111639) + +[fips2616301380] +centroid = (0.73756696146093814, -1.452295294821857) +description = Allen Park city, MI +station = ('kdtw', 0.0016526370578226369) +zone = ('miz076', 0.0010720959315733503) + +[fips2616307020] +centroid = (0.73656240230336778, -1.4570499382234323) +description = Belleville city, MI +station = ('kyip', 0.0008527040910464973) +zone = ('miz076', 0.0029130995151662202) + +[fips2616311220] +centroid = (0.73494753641296007, -1.4526233294547692) +description = Brownstown charter township, MI +station = ('konz', 0.00090136712988306419) +zone = ('miz076', 0.0031362969020213801) + +[fips2616313120] +centroid = (0.73840588887249425, -1.4571016523291691) +description = Canton charter township, MI +station = ('kyip', 0.0014334310976864034) +zone = ('miz076', 0.0026052156317181766) + +[fips2616321000] +centroid = (0.73850216123403434, -1.4523144410837514) +description = Dearborn city, MI +station = ('kdtw', 0.0021005306619336383) +zone = ('miz076', 0.0010931136714403935) + +[fips2616321020] +centroid = (0.7388968499910803, -1.4536643485404137) +description = Dearborn Heights city, MI +station = ('kdtw', 0.0018762816441608625) +zone = ('miz076', 0.00090233122525143212) + +[fips2616322000] +centroid = (0.73972356009787243, -1.4504076514226549) +description = Detroit city, MI +station = ('kdet', 0.0012493272213719142) +zone = ('miz076', 0.0029393529084260927) + +[fips2616324740] +centroid = (0.7373945927440112, -1.4510713303240184) +description = Ecorse city, MI +station = ('konz', 0.0026489800139336867) +zone = ('miz076', 0.0019819076575894662) + +[fips2616328360] +centroid = (0.73473233731618914, -1.4533327883424125) +description = Flat Rock city, MI +station = ('konz', 0.0014082733189327297) +zone = ('miz076', 0.0032697928449942236) + +[fips2616331420] +centroid = (0.73869990703828525, -1.4545785694559008) +description = Garden City city, MI +station = ('kdtw', 0.0015924404678516948) +zone = ('miz076', 0.00099781936202211481) + +[fips2616332020] +centroid = (0.73487850864104376, -1.4521317051110676) +description = Gibraltar city, MI +station = ('konz', 0.00053032907192084012) +zone = ('miz076', 0.0033067204146874358) + +[fips2616335420] +centroid = (0.73530539872278899, -1.4512547120685253) +description = Grosse Ile township, MI +station = ('konz', 0.00056219937783334283) +zone = ('miz076', 0.0032114048551278038) + +[fips2616335480] +centroid = (0.73973773217139871, -1.4469496654822638) +description = Grosse Pointe city, MI +station = ('kdet', 0.0015596654813792243) +zone = ('miz076', 0.0052323635019535849) + +[fips2616335520] +centroid = (0.7399767550124593, -1.4466890529183558) +description = Grosse Pointe Farms city, MI +station = ('kdet', 0.0016765147828287663) +zone = ('miz070', 0.0052313730221005056) + +[fips2616335540] +centroid = (0.73956492712215871, -1.4472870376266742) +description = Grosse Pointe Park city, MI +station = ('kdet', 0.0014141548395553965) +zone = ('miz076', 0.0049406477722395798) + +[fips2616335580] +centroid = (0.74070481910992869, -1.4468603046245616) +description = Grosse Pointe Woods city, MI +station = ('kdet', 0.001566454562267631) +zone = ('miz070', 0.0044942973534377447) + +[fips2616336280] +centroid = (0.73993909080720122, -1.4495998083250767) +description = Hamtramck city, MI +station = ('kdet', 0.00062788852033547084) +zone = ('miz076', 0.0035532706659327355) + +[fips2616336700] +centroid = (0.74069998454790065, -1.4473907974507052) +description = Harper Woods city, MI +station = ('kdet', 0.0011899891065404163) +zone = ('miz070', 0.0044789578326399921) + +[fips2616338180] +centroid = (0.74011084865888999, -1.4503275408099883) +description = Highland Park city, MI +station = ('kdet', 0.0010624566133098159) +zone = ('miz076', 0.0032267111873968118) + +[fips2616340040] +centroid = (0.73554592254700624, -1.4548738093521685) +description = Huron charter township, MI +station = ('kdtw', 0.0015973139818512526) +zone = ('miz076', 0.0026182846184626797) + +[fips2616340680] +centroid = (0.73817049631627785, -1.4542060114737703) +description = Inkster city, MI +station = ('kdtw', 0.0010739545264600021) +zone = ('miz076', 0.00046517578650112239) + +[fips2616347800] +centroid = (0.73728451482808788, -1.4517868280508734) +description = Lincoln Park city, MI +station = ('konz', 0.0025385528987095425) +zone = ('miz076', 0.0015338378599712734) + +[fips2616349000] +centroid = (0.73997043692056697, -1.4551214890263189) +description = Livonia city, MI +station = ('kdtw', 0.0029036430064783652) +zone = ('miz076', 0.0022645124136774098) + +[fips2616352940] +centroid = (0.73789967357624586, -1.4518100583832174) +description = Melvindale city, MI +station = ('kdtw', 0.0021010706991986751) +zone = ('miz076', 0.001345169182140864) + +[fips2616358980] +centroid = (0.74054904847418823, -1.4571270817763706) +description = Northville city, MI +station = ('kyip', 0.0034893994226431152) +zone = ('miz076', 0.0036366768814107995) + +[fips2616359000] +centroid = (0.74034051653515998, -1.4571751830505555) +description = Northville township, MI +station = ('kyip', 0.003277867145308666) +zone = ('miz076', 0.0035199900721370877) + +[fips2616365060] +centroid = (0.73951775087247729, -1.4567847354435919) +description = Plymouth city, MI +station = ('kyip', 0.0025521378441402554) +zone = ('miz076', 0.0027893244079311829) + +[fips2616365080] +centroid = (0.73956716114360121, -1.4572713681456329) +description = Plymouth charter township, MI +station = ('kyip', 0.0025045176540944773) +zone = ('miz076', 0.0031215270923565454) + +[fips2616367625] +centroid = (0.73992865373827432, -1.4537548613154221) +description = Redford charter township, MI +station = ('kdtw', 0.0028632514320256794) +zone = ('miz076', 0.0019360637329806491) + +[fips2616368760] +centroid = (0.73782652682729477, -1.4507903148611547) +description = River Rouge city, MI +station = ('cyqg', 0.0020384696634630759) +zone = ('miz076', 0.0021030741464552415) + +[fips2616368880] +centroid = (0.73605723420467051, -1.4519610817233926) +description = Riverview city, MI +station = ('konz', 0.0013551820523810061) +zone = ('miz076', 0.0022957734680387064) + +[fips2616369180] +centroid = (0.73426602024664123, -1.4528425428088199) +description = Rockwood city, MI +station = ('konz', 0.0011551268092761381) +zone = ('miz076', 0.0037736610387989738) + +[fips2616369420] +centroid = (0.73694169725641123, -1.4550118125361233) +description = Romulus city, MI +station = ('kdtw', 0.00045518304926619671) +zone = ('miz076', 0.001471465562479485) + +[fips2616374960] +centroid = (0.73661577447189375, -1.4522275760468797) +description = Southgate city, MI +station = ('konz', 0.0019471291544980735) +zone = ('miz076', 0.0017234897312400255) + +[fips2616377360] +centroid = (0.73537463593421559, -1.4568275832767283) +description = Sumpter township, MI +station = ('kyip', 0.0019192073040266754) +zone = ('miz076', 0.0035352889684954064) + +[fips2616379000] +centroid = (0.73696984941724586, -1.453306154618027) +description = Taylor city, MI +station = ('kdtw', 0.00085206657428308242) +zone = ('miz076', 0.0010517604433985051) + +[fips2616380420] +centroid = (0.73548275908137672, -1.4519902636284858) +description = Trenton city, MI +station = ('konz', 0.00083234497254412005) +zone = ('miz076', 0.0027883764816077437) + +[fips2616381660] +centroid = (0.73689068128237545, -1.4570752629508787) +description = Van Buren charter township, MI +station = ('kyip', 0.00067127093111574155) +zone = ('miz076', 0.0027833132757632125) + +[fips2616382453] +centroid = (0.74091185006580018, -1.4463593951292391) +description = Village of Grosse Pointe Shores city, MI +station = ('kdet', 0.0019791386329926393) +zone = ('miz070', 0.0043405082431538216) + +[fips2616384940] +centroid = (0.73787132942919342, -1.4553977397403246) +description = Wayne city, MI +station = ('kdtw', 0.0010392017478320417) +zone = ('miz076', 0.0013183960957504235) + +[fips2616386000] +centroid = (0.73860890557108627, -1.4552691089744525) +description = Westland city, MI +station = ('kdtw', 0.001618626407323153) +zone = ('miz076', 0.0013630672747915269) + +[fips2616388380] +centroid = (0.73538627728032635, -1.4527272289051405) +description = Woodhaven city, MI +station = ('konz', 0.0011452278304991035) +zone = ('miz076', 0.0026919144518377704) + +[fips2616388900] +centroid = (0.73672367072625211, -1.4513557666322159) +description = Wyandotte city, MI +station = ('konz', 0.0019651787533823931) +zone = ('miz076', 0.0021058652542497972) + +[fips2616420] +centroid = (0.75599161697607886, -1.4517578904918753) +description = Clifford village, MI +station = ('kd95', 0.0044946724450011279) +zone = ('miz062', 0.003964022566875126) + +[fips2616440] +centroid = (0.73719745780499846, -1.489394537001024) +description = Climax village, MI +station = ('kbtl', 0.0015471999742686863) +zone = ('miz072', 0.0025249302772281405) + +[fips2616480] +centroid = (0.73422256154826659, -1.4654789534860615) +description = Clinton village, MI +station = ('karb', 0.0038134202217857687) +zone = ('miz082', 0.0032857117765617986) + +[fips26165] +centroid = (0.77372845568630122, -1.4934790437830039) +description = Wexford County, MI +station = ('kcad', 0.002091118079679502) +zone = ('miz032', 0.00016177541660632403) + +[fips2616503060] +centroid = (0.77464810457576205, -1.4946448539101658) +description = Antioch township, MI +station = ('kcad', 0.0032628563742095823) +zone = ('miz032', 0.0010794707213838488) + +[fips2616509580] +centroid = (0.77309050293811221, -1.4947029210143796) +description = Boon township, MI +station = ('kcad', 0.0027995209582799894) +zone = ('miz032', 0.0010823635904019325) + +[fips2616512320] +centroid = (0.7723313545266649, -1.4907552829523412) +description = Cadillac city, MI +station = ('kcad', 0.00055961968899522212) +zone = ('miz032', 0.0025560090838132937) + +[fips2616514120] +centroid = (0.77453928329690014, -1.4905515332154635) +description = Cedar Creek township, MI +station = ('kcad', 0.0016590209175032175) +zone = ('miz032', 0.0023038158516848271) + +[fips2616515060] +centroid = (0.77166095610768126, -1.4927341372582525) +description = Cherry Grove township, MI +station = ('kcad', 0.0018509181446383074) +zone = ('miz032', 0.0022814215279366693) + +[fips2616515860] +centroid = (0.77150933935556043, -1.4902568343712643) +description = Clam Lake township, MI +station = ('kcad', 0.0014348191149288695) +zone = ('miz032', 0.003362395947134163) + +[fips2616517200] +centroid = (0.77487573041680713, -1.4927599855844746) +description = Colfax township, MI +station = ('kcad', 0.0024298347945998339) +zone = ('miz032', 0.0011973848534717524) + +[fips2616535240] +centroid = (0.7762791322150433, -1.49270780023984) +description = Greenwood township, MI +station = ('kcad', 0.0036526135034333266) +zone = ('miz032', 0.0025152181851765135) + +[fips2616536420] +centroid = (0.77625518629770596, -1.4948125451446974) +description = Hanover township, MI +station = ('kcad', 0.0044204869019284143) +zone = ('miz032', 0.002549036430306682) + +[fips2616536600] +centroid = (0.77317043901785354, -1.4905047234849251) +description = Haring charter township, MI +station = ('kcad', 0.00035208426137379588) +zone = ('miz032', 0.0023349799324887967) + +[fips2616537640] +centroid = (0.77165521397444214, -1.4945590360708452) +description = Henderson township, MI +station = ('kcad', 0.0029609556832019958) +zone = ('miz032', 0.0022950988038931072) + +[fips2616547380] +centroid = (0.77612863247364383, -1.4904587340591351) +description = Liberty township, MI +station = ('kcad', 0.0032479462300241272) +zone = ('miz032', 0.0032108276264124088) + +[fips2616550880] +centroid = (0.77512419548912104, -1.4905203092751456) +description = Manton city, MI +station = ('kcad', 0.0022432922693024437) +zone = ('miz032', 0.0025594190989056105) + +[fips2616572380] +centroid = (0.77306388666701931, -1.492454570418668) +description = Selma township, MI +station = ('kcad', 0.0011956347254372575) +zone = ('miz032', 0.0011501607845398859) + +[fips2616574220] +centroid = (0.77308669812034281, -1.4968066885348561) +description = Slagle township, MI +station = ('kcad', 0.0043027660804383881) +zone = ('miz032', 0.0024002883190679496) + +[fips2616574820] +centroid = (0.77149329977973469, -1.4967310459650747) +description = South Branch township, MI +station = ('kcad', 0.0044711548118838689) +zone = ('miz032', 0.0032404463600655084) + +[fips2616575940] +centroid = (0.77453898659092735, -1.4968730634063094) +description = Springville township, MI +station = ('kcad', 0.004645242682096839) +zone = ('miz032', 0.0024209670104622725) + +[fips2616586500] +centroid = (0.77614950661149762, -1.4968205464491169) +description = Wexford township, MI +station = ('ktvc', 0.0051933522383569601) +zone = ('miz032', 0.0032387580073877853) + +[fips2616620] +centroid = (0.75357995592225824, -1.461462497091617) +description = Clio city, MI +station = ('kfnt', 0.0036747221197727742) +zone = ('miz061', 0.0027346129641684347) + +[fips2617020] +centroid = (0.73204226134009032, -1.4835445424141893) +description = Coldwater city, MI +station = ('koeb', 0.00069129162956189103) +zone = ('miz080', 0.00088859553452892801) + +[fips2617100] +centroid = (0.76374143736029432, -1.4763202057611644) +description = Coleman city, MI +station = ('kmop', 0.0030983521873072339) +zone = ('miz047', 0.0031861293960250879) + +[fips2617320] +centroid = (0.73629454662306426, -1.5063822629429979) +description = Coloma city, MI +station = ('kbeh', 0.001670689583024532) +zone = ('miz071', 0.0039204926588213181) + +[fips2617360] +centroid = (0.73232275320417839, -1.4891753760068511) +description = Colon village, MI +station = ('kirs', 0.0029620006892957552) +zone = ('miz079', 0.0027643026309572293) + +[fips2617460] +centroid = (0.75320598422343332, -1.4556886337667543) +description = Columbiaville village, MI +station = ('kd95', 0.002301924573330776) +zone = ('miz062', 0.0025960345130609458) + +[fips2617690] +centroid = (0.73864686648231714, -1.4925540192794466) +description = Comstock Northwest CDP, MI +station = ('kazo', 0.0015940017592275307) +zone = ('miz072', 0.0013380827126949068) + +[fips2617700] +centroid = (0.7512616176235416, -1.4953339273521458) +description = Comstock Park CDP, MI +station = ('kgrr', 0.0034688846764069901) +zone = ('miz057', 0.0016349475694522331) + +[fips2617740] +centroid = (0.73612744880047831, -1.4773424800106425) +description = Concord village, MI +station = ('kjxn', 0.0027913059765223625) +zone = ('miz074', 0.0031316174050991081) + +[fips2617840] +centroid = (0.73021008450451674, -1.4951400038189566) +description = Constantine village, MI +station = ('khai', 0.0023434725241349838) +zone = ('miz079', 0.0022301605388825941) + +[fips2617900] +centroid = (0.7925380610212619, -1.4812768884769507) +description = Conway CDP, MI +station = ('kmgn', 0.00059388413908911407) +zone = ('miz016', 0.0019592650652849476) + +[fips2618020] +centroid = (0.75163419305896484, -1.4998269109922622) +description = Coopersville city, MI +station = ('kmkg', 0.0042056517457355422) +zone = ('miz056', 0.0019927709154672455) + +[fips2618040] +centroid = (0.77635208697777669, -1.4996746659216107) +description = Copemish village, MI +station = ('kfks', 0.0042424270089535358) +zone = ('miz025', 0.0029765070876054565) + +[fips2618080] +centroid = (0.82526495671821032, -1.5426537478178217) +description = Copper City village, MI +station = ('kcmx', 0.0023445408984807603) +zone = ('miz003', 0.0048909945621758554) + +[fips2618100] +centroid = (0.82847128363375655, -1.53361868442573) +description = Copper Harbor CDP, MI +station = ('kp59', 0.00016022586934184477) +zone = ('miz001', 0.0069181123535977185) + +[fips2618300] +centroid = (0.75020171407539049, -1.4680987625064752) +description = Corunna city, MI +station = ('krnp', 0.00033653221831997626) +zone = ('miz060', 0.00065088433376376349) + +[fips2618880] +centroid = (0.79663447094874018, -1.4840719809141421) +description = Cross Village CDP, MI +station = ('kpln', 0.003125996669888666) +zone = ('miz016', 0.0027529278430767704) + +[fips2618920] +centroid = (0.75528149486331997, -1.4419706076454668) +description = Croswell city, MI +station = ('cyzr', 0.00614434402390683) +zone = ('miz055', 0.0036460138449652306) + +[fips2619135] +centroid = (0.78018739564915662, -1.5050124587328626) +description = Crystal Downs Country Club CDP, MI +station = ('kfks', 0.0013862437998856214) +zone = ('miz025', 0.0028800045796445119) + +[fips2619140] +centroid = (0.80442572544939794, -1.5414999106493281) +description = Crystal Falls city, MI +station = ('kimt', 0.0053819564679550161) +zone = ('miz010', 0.0032670389176436285) + +[fips2619195] +centroid = (0.77710339886088264, -1.5009624745634871) +description = Crystal Mountain CDP, MI +station = ('kfks', 0.0030581949827760495) +zone = ('miz025', 0.0020139510656898389) + +[fips2619420] +centroid = (0.76708030457923704, -1.5047906273849341) +description = Custer village, MI +station = ('kldm', 0.0023021022613321698) +zone = ('miz037', 0.0008787034039660635) + +[fips2619500] +centroid = (0.74768519364010988, -1.4953014642280587) +description = Cutlerville CDP, MI +station = ('kgrr', 0.0021606616481765011) +zone = ('miz057', 0.0037293277789257149) + +[fips2619560] +centroid = (0.79345966467948481, -1.5289837182509638) +description = Daggett village, MI +station = ('kmnm', 0.0057454522585175241) +zone = ('miz012', 0.0021266328438988495) + +[fips2619780] +centroid = (0.74273276952769851, -1.4713564719151999) +description = Dansville village, MI +station = ('ktew', 0.0015636894005707006) +zone = ('miz067', 0.001167471816315593) + +[fips2619880] +centroid = (0.7510457029417773, -1.4576771921033065) +description = Davison city, MI +station = ('kfnt', 0.0031628342497496205) +zone = ('miz061', 0.0024044416392599356) + +[fips2621000] +centroid = (0.73850216123403434, -1.4523144410837514) +description = Dearborn city, MI +station = ('kdtw', 0.0021005306619336383) +zone = ('miz076', 0.0010931136714403935) + +[fips2621020] +centroid = (0.7388968499910803, -1.4536643485404137) +description = Dearborn Heights city, MI +station = ('kdtw', 0.0018762816441608625) +zone = ('miz076', 0.00090233122525143212) + +[fips2621040] +centroid = (0.73491748184324068, -1.5005472258278527) +description = Decatur village, MI +station = ('klwa', 0.0055863705087233597) +zone = ('miz071', 0.0025702478149664185) + +[fips2621100] +centroid = (0.75968120810820994, -1.4441209056438014) +description = Deckerville village, MI +station = ('kbax', 0.0053997027275048872) +zone = ('miz055', 0.0020520738806398954) + +[fips2621180] +centroid = (0.73111980247053376, -1.4622186260834584) +description = Deerfield village, MI +station = ('kduh', 0.0031362042690548085) +zone = ('miz083', 0.0032122083533816679) + +[fips2621560] +centroid = (0.74167996946960291, -1.4907274100441872) +description = Delton CDP, MI +station = ('kbtl', 0.0039974385325816956) +zone = ('miz065', 0.0021921567637078927) + +[fips2621780] +centroid = (0.80255487211760024, -1.4645622192964514) +description = De Tour Village village, MI +station = ('kdrm', 0.0021526206079691022) +zone = ('miz008', 0.0097051975938468177) + +[fips2622000] +centroid = (0.73972356009787243, -1.4504076514226549) +description = Detroit city, MI +station = ('kdet', 0.0012493272213719142) +zone = ('miz076', 0.0029393529084260927) + +[fips2622040] +centroid = (0.73183537001055887, -1.4543527936638629) +description = Detroit Beach CDP, MI +station = ('kttf', 0.0013907716620584567) +zone = ('miz083', 0.002714267687097093) + +[fips2622120] +centroid = (0.74762719634906627, -1.476123419888002) +description = DeWitt city, MI +station = ('klan', 0.00092243665870910278) +zone = ('miz059', 0.0019088727575310026) + +[fips2622160] +centroid = (0.73883724699712472, -1.4640001011042616) +description = Dexter village, MI +station = ('karb', 0.0026330977761264774) +zone = ('miz075', 0.0014817697342374289) + +[fips2622380] +centroid = (0.74439594613180138, -1.477339670030547) +description = Dimondale village, MI +station = ('klan', 0.0024468273304526097) +zone = ('miz066', 0.0026566298944879509) + +[fips2622520] +centroid = (0.82251882076653737, -1.5447338312203485) +description = Dollar Bay CDP, MI +station = ('kcmx', 0.00074825562565266918) +zone = ('miz003', 0.0018685125927778371) + +[fips2622740] +centroid = (0.74418964821421563, -1.5046065300554339) +description = Douglas city, MI +station = ('kbiv', 0.0023798092601704578) +zone = ('miz064', 0.0041833321799978548) + +[fips2622880] +centroid = (0.7327491720470255, -1.5029524291634411) +description = Dowagiac city, MI +station = ('kekm', 0.0048815960582838085) +zone = ('miz078', 0.0019517957168572991) + +[fips2622900] +centroid = (0.74228441189615368, -1.4876170064243304) +description = Dowling CDP, MI +station = ('kbtl', 0.0040153186380065724) +zone = ('miz065', 0.0014904900534083183) + +[fips2623140] +centroid = (0.74954164800557876, -1.4507874350678889) +description = Dryden village, MI +station = ('kd95', 0.0028282914039388781) +zone = ('miz062', 0.0028143352416282246) + +[fips2623380] +centroid = (0.73238287979690953, -1.4602482889842971) +description = Dundee village, MI +station = ('kttf', 0.0030283268175740762) +zone = ('miz083', 0.0017693929316327708) + +[fips2623500] +centroid = (0.74899474908446628, -1.4658752828526043) +description = Durand city, MI +station = ('krnp', 0.0023603508100609925) +zone = ('miz060', 0.0021360246963559107) + +[fips2623560] +centroid = (0.7471670751983629, -1.4798765759114907) +description = Eagle village, MI +station = ('klan', 0.0026945049166462228) +zone = ('miz059', 0.0033661567052128498) + +[fips2623600] +centroid = (0.82818559068849751, -1.5385687523436513) +description = Eagle Harbor CDP, MI +station = ('kp59', 0.0031989553346218093) +zone = ('miz001', 0.004119901870100643) + +[fips2623740] +centroid = (0.82736345334434569, -1.5404477563630559) +description = Eagle River CDP, MI +station = ('kp59', 0.0045908006658782474) +zone = ('miz001', 0.003945984220138532) + +[fips2623980] +centroid = (0.74956320282184086, -1.4941500181606404) +description = East Grand Rapids city, MI +station = ('kgrr', 0.0016139659362695475) +zone = ('miz057', 0.0016715748545942303) + +[fips2624020] +centroid = (0.78807087334748982, -1.4858140464004352) +description = East Jordan city, MI +station = ('kacb', 0.0029941094392874758) +zone = ('miz019', 0.0025983770374656719) + +[fips2624060] +centroid = (0.77223028250968184, -1.5061108293377277) +description = Eastlake village, MI +station = ('kmbl', 0.00066008542303284685) +zone = ('miz031', 0.003329498511156233) + +[fips2624120] +centroid = (0.74610928349860672, -1.4744967730251435) +description = East Lansing city, MI +station = ('klan', 0.0014254920435196291) +zone = ('miz067', 0.0029952142313622522) + +[fips2624290] +centroid = (0.74117291641531358, -1.4476867529319659) +description = Eastpointe city, MI +station = ('kdet', 0.0012506950004286586) +zone = ('miz070', 0.0040099997156336385) + +[fips2624300] +centroid = (0.78734872591618466, -1.4896576802923471) +description = Eastport CDP, MI +station = ('kacb', 0.0028615955124232377) +zone = ('miz021', 0.003272103126779191) + +[fips2624420] +centroid = (0.77302034070218206, -1.4570666584776666) +description = East Tawas city, MI +station = ('kosc', 0.0031392131443731953) +zone = ('miz036', 0.0022144542472309642) + +[fips2624500] +centroid = (0.7383140845538394, -1.493034211716548) +description = Eastwood CDP, MI +station = ('kazo', 0.001205413962609624) +zone = ('miz072', 0.0010076398278887025) + +[fips2624540] +centroid = (0.74191969044236439, -1.4774537796570422) +description = Eaton Rapids city, MI +station = ('kfpk', 0.0023490527769213241) +zone = ('miz066', 0.0028407386468374159) + +[fips2624580] +centroid = (0.73275730528133987, -1.5062858509551176) +description = Eau Claire village, MI +station = ('kbeh', 0.0029900469018843416) +zone = ('miz077', 0.0014976902101154835) + +[fips2624740] +centroid = (0.7373945927440112, -1.4510713303240184) +description = Ecorse city, MI +station = ('konz', 0.0026489800139336867) +zone = ('miz076', 0.0019819076575894662) + +[fips2624880] +centroid = (0.74607149712030096, -1.4764200735009636) +description = Edgemont Park CDP, MI +station = ('klan', 0.00064957177304021565) +zone = ('miz059', 0.0034375861825231414) + +[fips2625000] +centroid = (0.75760557529527561, -1.4841667871991102) +description = Edmore village, MI +station = ('kamn', 0.0046704074526192551) +zone = ('miz051', 0.0022374037415670133) + +[fips2625040] +centroid = (0.72946688840243257, -1.5024404717339537) +description = Edwardsburg village, MI +station = ('kekm', 0.0017518353828240812) +zone = ('miz078', 0.0023972549080229317) + +[fips2625180] +centroid = (0.77877633185550421, -1.5050677856701509) +description = Elberta village, MI +station = ('kfks', 0.00042289590582478422) +zone = ('miz025', 0.0027306127882105254) + +[fips2625320] +centroid = (0.78361763085444125, -1.4905893021404768) +description = Elk Rapids village, MI +station = ('kacb', 0.0029952978008949507) +zone = ('miz021', 0.0037480550103550724) + +[fips2625360] +centroid = (0.76477304912127075, -1.4517814698900697) +description = Elkton village, MI +station = ('kbax', 0.0025466695114476239) +zone = ('miz049', 0.0020522917930704027) + +[fips2625420] +centroid = (0.78831647607983046, -1.4877695656542473) +description = Ellsworth village, MI +station = ('kcvx', 0.0024317175514660208) +zone = ('miz019', 0.0027421048615856678) + +[fips2625780] +centroid = (0.75204949415447686, -1.4728574201653302) +description = Elsie village, MI +station = ('krnp', 0.0036020801768138237) +zone = ('miz059', 0.003721608472010033) + +[fips2625940] +centroid = (0.75037621209400485, -1.4445294697684006) +description = Emmett village, MI +station = ('kphn', 0.003253289921240481) +zone = ('miz063', 0.0013872680517730597) + +[fips2625980] +centroid = (0.78211985910354986, -1.5020173166568076) +description = Empire village, MI +station = ('kfks', 0.0037070366208276882) +zone = ('miz025', 0.0030613993779026443) + +[fips2626360] +centroid = (0.79842336361886423, -1.5198956317561967) +description = Escanaba city, MI +station = ('kesc', 0.00061568225579851637) +zone = ('miz013', 0.003592835763169364) + +[fips2626420] +centroid = (0.76117805483459777, -1.463318654751113) +description = Essexville city, MI +station = ('khyx', 0.0031341569686068522) +zone = ('miz048', 0.0025172947195828978) + +[fips2626460] +centroid = (0.73279341614356364, -1.4527398127290474) +description = Estral Beach village, MI +station = ('konz', 0.0021917356389079897) +zone = ('miz083', 0.0040358919833194543) + +[fips2626640] +centroid = (0.76617871984753438, -1.4882515732337704) +description = Evart city, MI +station = ('krqb', 0.0042576340704823584) +zone = ('miz039', 0.0017319406119383563) + +[fips2627080] +centroid = (0.75964556848488418, -1.4581080440824539) +description = Fairgrove village, MI +station = ('kcfs', 0.0016931076435312972) +zone = ('miz054', 0.0019198139557620793) + +[fips2627160] +centroid = (0.73446701236330092, -1.5088989230046186) +description = Fair Plain CDP, MI +station = ('kbeh', 0.0010173706846087946) +zone = ('miz077', 0.0022845702978447156) + +[fips2627380] +centroid = (0.74109093830034733, -1.4552271163526496) +description = Farmington city, MI +station = ('kvll', 0.0029462553821011099) +zone = ('miz076', 0.003314813763616926) + +[fips2627440] +centroid = (0.74151444244334375, -1.4551850364643839) +description = Farmington Hills city, MI +station = ('kvll', 0.002737663088802298) +zone = ('miz069', 0.0030524609788812928) + +[fips2627500] +centroid = (0.76509719166995105, -1.4812144231430218) +description = Farwell village, MI +station = ('kmop', 0.0041979931724496532) +zone = ('miz040', 0.0026479108838269143) + +[fips2627740] +centroid = (0.74341810796507912, -1.5028169043470236) +description = Fennville city, MI +station = ('kbiv', 0.0027109268395686414) +zone = ('miz064', 0.0027845282898956549) + +[fips2627760] +centroid = (0.74699999482906954, -1.4610890140849828) +description = Fenton city, MI +station = ('kfnt', 0.0029455379407453916) +zone = ('miz061', 0.0038715180223861155) + +[fips2627880] +centroid = (0.74105348353459966, -1.450915664408033) +description = Ferndale city, MI +station = ('kvll', 0.0015757364648869693) +zone = ('miz076', 0.0036546815504089857) + +[fips2627960] +centroid = (0.75202113255413194, -1.5049439196531367) +description = Ferrysburg city, MI +station = ('kmkg', 0.0013817337233660548) +zone = ('miz050', 0.0036917582242243238) + +[fips2628000] +centroid = (0.77798524391874535, -1.4896177471590615) +description = Fife Lake village, MI +station = ('ktvc', 0.0038634804005908659) +zone = ('miz026', 0.0030989015176651272) + +[fips2628060] +centroid = (0.77169540890711552, -1.5060261459624209) +description = Filer City CDP, MI +station = ('kmbl', 0.0010265081056500612) +zone = ('miz037', 0.0038622630232532187) + +[fips2628360] +centroid = (0.73473233731618914, -1.4533327883424125) +description = Flat Rock city, MI +station = ('konz', 0.0014082733189327297) +zone = ('miz076', 0.0032697928449942236) + +[fips2629000] +centroid = (0.75091787502736129, -1.4607006608731212) +description = Flint city, MI +station = ('kfnt', 0.0012508874475580011) +zone = ('miz061', 0.0001937142332729832) + +[fips2629200] +centroid = (0.75158740078171893, -1.4633299121247885) +description = Flushing city, MI +station = ('kfnt', 0.0020522243495049012) +zone = ('miz061', 0.0018762980676666498) + +[fips2629580] +centroid = (0.74979629154344474, -1.4920794293492443) +description = Forest Hills CDP, MI +station = ('kgrr', 0.0013840264013350563) +zone = ('miz057', 0.0014678806026830759) + +[fips2629660] +centroid = (0.76200843013281905, -1.4418612104079518) +description = Forestville village, MI +station = ('kbax', 0.0051568766820552182) +zone = ('miz055', 0.0048900703557288967) + +[fips2629920] +centroid = (0.75486757257791703, -1.4551051701978128) +description = Fostoria CDP, MI +station = ('kd95', 0.0034578338568325103) +zone = ('miz062', 0.0033889304824506255) + +[fips2629940] +centroid = (0.76878620684342891, -1.5041436687378047) +description = Fountain village, MI +station = ('kldm', 0.0030947314151060844) +zone = ('miz037', 0.0012613322650700655) + +[fips2630040] +centroid = (0.75056123444800882, -1.4790216438306938) +description = Fowler village, MI +station = ('ky70', 0.0042154659518315075) +zone = ('miz059', 0.0020775520233320766) + +[fips2630060] +centroid = (0.74454672512588127, -1.4673852020950897) +description = Fowlerville village, MI +station = ('kozw', 0.0012776174622438081) +zone = ('miz068', 0.0023184393865970931) + +[fips2630200] +centroid = (0.75630059261355953, -1.4615235138022669) +description = Frankenmuth city, MI +station = ('khyx', 0.0023506942025636919) +zone = ('miz061', 0.0054459410340493633) + +[fips2630260] +centroid = (0.77905989549907584, -1.5050323031264579) +description = Frankfort city, MI +station = ('kfks', 0.00044188001098049642) +zone = ('miz025', 0.0026853815548018192) + +[fips2630340] +centroid = (0.74209261766465195, -1.4539122551073671) +description = Franklin village, MI +station = ('kvll', 0.0016645964456025882) +zone = ('miz069', 0.0026893671080001746) + +[fips2630420] +centroid = (0.74242175185499304, -1.4476937517022663) +description = Fraser city, MI +station = ('kmtc', 0.0020067720960060824) +zone = ('miz070', 0.0027633635653415986) + +[fips2630540] +centroid = (0.75952409356894535, -1.4680791450056827) +description = Freeland CDP, MI +station = ('kmbs', 0.00048381649724693425) +zone = ('miz053', 0.003279773196451573) + +[fips2630580] +centroid = (0.7463661610579152, -1.4890408634813999) +description = Freeport village, MI +station = ('kgrr', 0.003313498843820675) +zone = ('miz065', 0.0029444428610244343) + +[fips2630600] +centroid = (0.76981387416029567, -1.5046662726757296) +description = Free Soil village, MI +station = ('kmbl', 0.0028275943078385599) +zone = ('miz037', 0.0020087460709667594) + +[fips2630700] +centroid = (0.75858882398267913, -1.5001686464598027) +description = Fremont city, MI +station = ('kffx', 0.0006248201671603537) +zone = ('miz044', 0.0024909539895311703) + +[fips2631000] +centroid = (0.75268231563466503, -1.5037083836223575) +description = Fruitport village, MI +station = ('kmkg', 0.0012173339895051706) +zone = ('miz050', 0.0028934715233859035) + +[fips2631160] +centroid = (0.80382407554965041, -1.5464493502487184) +description = Gaastra city, MI +station = ('klnl', 0.0075415931029916214) +zone = ('miz010', 0.0028175343577102477) + +[fips2631180] +centroid = (0.76197797413737178, -1.4528924417721343) +description = Gagetown village, MI +station = ('kbax', 0.0039069883781622699) +zone = ('miz054', 0.0040254830923337715) + +[fips2631200] +centroid = (0.74826720858577256, -1.4645244678247309) +description = Gaines village, MI +station = ('kfnt', 0.0026336830740574481) +zone = ('miz060', 0.0033283092507082287) + +[fips2631260] +centroid = (0.73811478540655406, -1.4908176610198076) +description = Galesburg city, MI +station = ('kazo', 0.0019835893214931138) +zone = ('miz072', 0.0016684677985391988) + +[fips2631300] +centroid = (0.72957541297532147, -1.5097022107928491) +description = Galien village, MI +station = ('ksbn', 0.0029691008040415405) +zone = ('miz077', 0.0029012990200118832) + +[fips2631380] +centroid = (0.79882506859950331, -1.5107098417299027) +description = Garden village, MI +station = ('kesc', 0.0058062840331685956) +zone = ('miz013', 0.0051779032945240694) + +[fips2631420] +centroid = (0.73869990703828525, -1.4545785694559008) +description = Garden City city, MI +station = ('kdtw', 0.0015924404678516948) +zone = ('miz076', 0.00099781936202211481) + +[fips2631720] +centroid = (0.78576726562765997, -1.4779385448567837) +description = Gaylord city, MI +station = ('kglr', 9.0512633795998407e-05) +zone = ('miz022', 0.0009973255335422003) + +[fips2632020] +centroid = (0.73487850864104376, -1.4521317051110676) +description = Gibraltar city, MI +station = ('konz', 0.00053032907192084012) +zone = ('miz076', 0.0033067204146874358) + +[fips2632300] +centroid = (0.80023932634568673, -1.5188957675343142) +description = Gladstone city, MI +station = ('kesc', 0.0017532733573321) +zone = ('miz013', 0.0017317044325409967) + +[fips2632320] +centroid = (0.76766511205170274, -1.4745803219364362) +description = Gladwin city, MI +station = ('kikw', 0.0063371249042119731) +zone = ('miz041', 0.0012489308928676631) + +[fips2632360] +centroid = (0.78357795952054343, -1.5008005429154871) +description = Glen Arbor CDP, MI +station = ('kfks', 0.0054002186608423947) +zone = ('miz020', 0.0023044024082506933) + +[fips2632640] +centroid = (0.73935032143733337, -1.4988432434258383) +description = Gobles city, MI +station = ('kazo', 0.004783180873272258) +zone = ('miz071', 0.0026543933597310949) + +[fips2632980] +centroid = (0.74893566968928638, -1.4576524433345133) +description = Goodrich village, MI +station = ('kfnt', 0.0031283738659089668) +zone = ('miz061', 0.003097098491698909) + +[fips2633260] +centroid = (0.72910401699765037, -1.5147434023510167) +description = Grand Beach village, MI +station = ('kmgc', 0.0013149748595405407) +zone = ('inz003', 0.0040393466469583533) + +[fips2633280] +centroid = (0.74924405191482124, -1.4593898836982888) +description = Grand Blanc city, MI +station = ('kfnt', 0.0018263167159458932) +zone = ('miz061', 0.0019900378963879383) + +[fips2633340] +centroid = (0.75145438923942443, -1.5048964117908976) +description = Grand Haven city, MI +station = ('kmkg', 0.001949537649017168) +zone = ('miz056', 0.0033754138395913247) + +[fips2633420] +centroid = (0.7461845944558303, -1.4790139818352774) +description = Grand Ledge city, MI +station = ('klan', 0.0020905413753439014) +zone = ('miz066', 0.0030123966310655901) + +[fips2634000] +centroid = (0.74981362266291707, -1.4949717191724794) +description = Grand Rapids city, MI +station = ('kgrr', 0.0022352817023416657) +zone = ('miz057', 0.0018388036989060946) + +[fips2634160] +centroid = (0.74875522009792261, -1.4966562411533342) +description = Grandville city, MI +station = ('kgrr', 0.0030251943947672572) +zone = ('miz057', 0.0034636020509889579) + +[fips2634360] +centroid = (0.75633096134254418, -1.4975996788804997) +description = Grant city, MI +station = ('kffx', 0.0029705530275354847) +zone = ('miz044', 0.0038338070067361922) + +[fips2634480] +centroid = (0.73741553669503523, -1.4696750217138286) +description = Grass Lake village, MI +station = ('kjxn', 0.003376254047307385) +zone = ('miz074', 0.0028053793952050729) + +[fips2634620] +centroid = (0.77948359162828984, -1.4955393700583981) +description = Grawn CDP, MI +station = ('ktvc', 0.0019641719881574532) +zone = ('miz026', 0.001611518397062343) + +[fips2634640] +centroid = (0.77942843922392691, -1.4784870320275154) +description = Grayling city, MI +station = ('kgov', 0.00044795066509327328) +zone = ('miz028', 0.001328371688720282) + +[fips2635100] +centroid = (0.75362680055938169, -1.4879625816162252) +description = Greenville city, MI +station = ('ky70', 0.0048591460061006694) +zone = ('miz051', 0.0026314204212153003) + +[fips2635300] +centroid = (0.78189511305577042, -1.4949788401158275) +description = Greilickville CDP, MI +station = ('ktvc', 0.0015968636970520166) +zone = ('miz026', 0.0025430250838025898) + +[fips2635480] +centroid = (0.73973773217139871, -1.4469496654822638) +description = Grosse Pointe city, MI +station = ('kdet', 0.0015596654813792243) +zone = ('miz076', 0.0052323635019535849) + +[fips2635520] +centroid = (0.7399767550124593, -1.4466890529183558) +description = Grosse Pointe Farms city, MI +station = ('kdet', 0.0016765147828287663) +zone = ('miz070', 0.0052313730221005056) + +[fips2635540] +centroid = (0.73956492712215871, -1.4472870376266742) +description = Grosse Pointe Park city, MI +station = ('kdet', 0.0014141548395553965) +zone = ('miz076', 0.0049406477722395798) + +[fips2635580] +centroid = (0.74070481910992869, -1.4468603046245616) +description = Grosse Pointe Woods city, MI +station = ('kdet', 0.001566454562267631) +zone = ('miz070', 0.0044942973534377447) + +[fips2635760] +centroid = (0.80806323595664953, -1.5260104451504364) +description = Gwinn CDP, MI +station = ('ksaw', 0.0010671165552412472) +zone = ('miz005', 0.0034086858490749244) + +[fips2636280] +centroid = (0.73993909080720122, -1.4495998083250767) +description = Hamtramck city, MI +station = ('kdet', 0.00062788852033547084) +zone = ('miz076', 0.0035532706659327355) + +[fips2636300] +centroid = (0.82265029641909015, -1.5463468296084566) +description = Hancock city, MI +station = ('kcmx', 0.0014856046534208183) +zone = ('miz003', 0.0014417063733829856) + +[fips2636380] +centroid = (0.73479270825501564, -1.4757548761631509) +description = Hanover village, MI +station = ('kjxn', 0.0031144634855418915) +zone = ('miz074', 0.0030905499474969435) + +[fips2636460] +centroid = (0.76523678310352561, -1.4425955925973135) +description = Harbor Beach city, MI +station = ('kp58', 0.0035117220679783054) +zone = ('miz049', 0.0045950743927467832) + +[fips2636560] +centroid = (0.79294690439854143, -1.4833356265027258) +description = Harbor Springs city, MI +station = ('kmgn', 0.00093315931310620896) +zone = ('miz016', 0.001951338346276226) + +[fips2636585] +centroid = (0.78050394601559092, -1.4978780938027778) +description = Hardwood Acres CDP, MI +station = ('ktvc', 0.0031763963821377279) +zone = ('miz025', 0.0027807300443662337) + +[fips2636590] +centroid = (0.77286870649676875, -1.4905195936901521) +description = Haring CDP, MI +station = ('kcad', 0.00020334017258224847) +zone = ('miz032', 0.0024306274460029515) + +[fips2636700] +centroid = (0.74069998454790065, -1.4473907974507052) +description = Harper Woods city, MI +station = ('kdet', 0.0011899891065404163) +zone = ('miz070', 0.0044789578326399921) + +[fips2636720] +centroid = (0.77334600168731171, -1.4957601891153602) +description = Harrietta village, MI +station = ('kcad', 0.0035778875379599991) +zone = ('miz032', 0.0016077662308496348) + +[fips2636800] +centroid = (0.76817096082880831, -1.4802250308966514) +description = Harrison city, MI +station = ('khtl', 0.0061524072997545124) +zone = ('miz040', 0.00063936057502550015) + +[fips2636860] +centroid = (0.77941569832038726, -1.4537671658866489) +description = Harrisville city, MI +station = ('kosc', 0.0037258806457039833) +zone = ('miz030', 0.0037445401278187063) + +[fips2636920] +centroid = (0.76264746498514435, -1.5074654840899555) +description = Hart city, MI +station = ('kldm', 0.0047293479462877618) +zone = ('miz043', 0.0016356576794417264) + +[fips2636960] +centroid = (0.73661549521921355, -1.5038825325751215) +description = Hartford city, MI +station = ('klwa', 0.0027986554017541917) +zone = ('miz071', 0.0020674286810390095) + +[fips2637080] +centroid = (0.81143351910212802, -1.5245294634669488) +description = Harvey CDP, MI +station = ('ksaw', 0.0024735724912607277) +zone = ('miz005', 0.0036695816746611385) + +[fips2637100] +centroid = (0.74616462788918747, -1.4730129115483903) +description = Haslett CDP, MI +station = ('klan', 0.0024436520040104969) +zone = ('miz067', 0.0027221998296928511) + +[fips2637120] +centroid = (0.7443851949036091, -1.4885629225190338) +description = Hastings city, MI +station = ('kgrr', 0.0050122267734765032) +zone = ('miz065', 0.00099799992335755151) + +[fips2637420] +centroid = (0.74110038053160077, -1.4503282738482743) +description = Hazel Park city, MI +station = ('kdet', 0.0013088264350371102) +zone = ('miz076', 0.003945909004973408) + +[fips2637600] +centroid = (0.75785053225579302, -1.4702644194022272) +description = Hemlock CDP, MI +station = ('kmbs', 0.0027811193922983742) +zone = ('miz053', 0.0028104419129709336) + +[fips2637620] +centroid = (0.75202094056791424, -1.4694225947441126) +description = Henderson CDP, MI +station = ('krnp', 0.0017873013411400869) +zone = ('miz060', 0.0024069854029737429) + +[fips2637820] +centroid = (0.76534862380199342, -1.4912450921536209) +description = Hersey village, MI +station = ('krqb', 0.0023794439772554668) +zone = ('miz039', 0.0028309354350837734) + +[fips2637860] +centroid = (0.76043073975547881, -1.5016975374312571) +description = Hesperia village, MI +station = ('kffx', 0.0023498928401370651) +zone = ('miz044', 0.0030473978079185123) + +[fips2637960] +centroid = (0.74062004846815943, -1.4902643741936328) +description = Hickory Corners CDP, MI +station = ('kbtl', 0.0029277832910594576) +zone = ('miz065', 0.002972237786979207) + +[fips2638180] +centroid = (0.74011084865888999, -1.4503275408099883) +description = Highland Park city, MI +station = ('kdet', 0.0010624566133098159) +zone = ('miz076', 0.0032267111873968118) + +[fips2638380] +centroid = (0.78651906620295664, -1.4642694228611368) +description = Hillman village, MI +station = ('kapn', 0.0040784815527827086) +zone = ('miz023', 0.0029178814067264609) + +[fips2638460] +centroid = (0.7317888220794081, -1.4771883499843987) +description = Hillsdale city, MI +station = ('kjym', 0.00067127286519778418) +zone = ('miz081', 0.0009077256058768622) + +[fips2638640] +centroid = (0.74644370603658128, -1.5027040164510046) +description = Holland city, MI +station = ('kbiv', 0.00031596200150922399) +zone = ('miz056', 0.0036092066272660193) + +[fips2638700] +centroid = (0.74697995844925669, -1.4594961218898577) +description = Holly village, MI +station = ('kfnt', 0.0033501171648375543) +zone = ('miz061', 0.0040349147273746593) + +[fips2638780] +centroid = (0.74424436428626572, -1.4753402208394619) +description = Holt CDP, MI +station = ('ktew', 0.001916994364394605) +zone = ('miz067', 0.0021657179400304031) + +[fips2638920] +centroid = (0.73559384928826599, -1.4802091658537506) +description = Homer village, MI +station = ('krmy', 0.0026254800908104494) +zone = ('miz073', 0.0030763837549577116) + +[fips2639080] +centroid = (0.7795750119745094, -1.5013227279743915) +description = Honor village, MI +station = ('kfks', 0.0023617995760779162) +zone = ('miz025', 0.00047095319022969005) + +[fips2639180] +centroid = (0.74394753614037901, -1.4968527477738163) +description = Hopkins village, MI +station = ('kgrr', 0.0055058368716591217) +zone = ('miz064', 0.0017110272890739743) + +[fips2639340] +centroid = (0.7905075449694916, -1.4847236344969592) +description = Horton Bay CDP, MI +station = ('kmgn', 0.0029982175505626103) +zone = ('miz019', 0.0007529509074501935) + +[fips2639360] +centroid = (0.82222810127303259, -1.5458176632325442) +description = Houghton city, MI +station = ('kcmx', 0.001414750683894965) +zone = ('miz003', 0.001171854399716481) + +[fips2639400] +centroid = (0.77336877823405015, -1.4793813736428223) +description = Houghton Lake CDP, MI +station = ('khtl', 0.0013764720050114616) +zone = ('miz034', 0.0019310594492298297) + +[fips2639500] +centroid = (0.75738260948333336, -1.4916958234329487) +description = Howard City village, MI +station = ('krqb', 0.0057373634099108367) +zone = ('miz045', 0.004662400423445655) + +[fips2639540] +centroid = (0.74365213916447892, -1.4649305710350846) +description = Howell city, MI +station = ('kozw', 0.00074023620047006732) +zone = ('miz068', 0.00030674633691550948) + +[fips2639634] +centroid = (0.782259171284444, -1.458367696715273) +description = Hubbard Lake CDP, MI +station = ('kapn', 0.0045945916157200551) +zone = ('miz030', 0.0023925881829789889) + +[fips2639660] +centroid = (0.75214075742106368, -1.4807854037595891) +description = Hubbardston village, MI +station = ('ky70', 0.0038672828970790453) +zone = ('miz058', 0.003943445667900179) + +[fips2639680] +centroid = (0.82344108764987611, -1.5435163069874496) +description = Hubbell CDP, MI +station = ('kcmx', 0.00059524892170205066) +zone = ('miz003', 0.0031055019265869102) + +[fips2639720] +centroid = (0.73053298786942822, -1.4721102621658437) +description = Hudson city, MI +station = ('kjym', 0.0033194178843067618) +zone = ('miz082', 0.0036918663739905089) + +[fips2639800] +centroid = (0.74810693500056191, -1.4985781802723379) +description = Hudsonville city, MI +station = ('kbiv', 0.0036313104523542231) +zone = ('miz056', 0.0023841499663928949) + +[fips2640000] +centroid = (0.74144901004968655, -1.4515569681883858) +description = Huntington Woods city, MI +station = ('kvll', 0.0010698231841628713) +zone = ('miz076', 0.0037762988670721098) + +[fips2640320] +centroid = (0.75078596304249556, -1.4499575659151507) +description = Imlay City city, MI +station = ('kd95', 0.0026349010549875495) +zone = ('miz062', 0.0022516584314502242) + +[fips2640480] +centroid = (0.79297030926381074, -1.4769281213929264) +description = Indian River CDP, MI +station = ('kpln', 0.0031824957902767807) +zone = ('miz017', 0.0015091821239892301) + +[fips2640680] +centroid = (0.73817049631627785, -1.4542060114737703) +description = Inkster city, MI +station = ('kdtw', 0.0010739545264600021) +zone = ('miz076', 0.00046517578650112239) + +[fips2640800] +centroid = (0.77929146578423036, -1.4969242015533928) +description = Interlochen CDP, MI +station = ('ktvc', 0.0028836204106065123) +zone = ('miz025', 0.0030896057947729012) + +[fips2640860] +centroid = (0.750087028490242, -1.4848324557758212) +description = Ionia city, MI +station = ('ky70', 0.00066927669639970397) +zone = ('miz058', 0.00055363605235702695) + +[fips2640960] +centroid = (0.79985041462846485, -1.536947725440984) +description = Iron Mountain city, MI +station = ('kimt', 0.00071009215398647673) +zone = ('miz011', 0.0039139528633292025) + +[fips2640980] +centroid = (0.80452712907893886, -1.547001746956975) +description = Iron River city, MI +station = ('klnl', 0.0070318161136863483) +zone = ('miz010', 0.0023480067761362379) + +[fips2641040] +centroid = (0.78987411262406537, -1.4868932009302358) +description = Ironton CDP, MI +station = ('kcvx', 0.0013131079674800752) +zone = ('miz019', 0.0011214084777649948) + +[fips2641060] +centroid = (0.81075343410579592, -1.5734174448122491) +description = Ironwood city, MI +station = ('kiwd', 0.0014209349526280611) +zone = ('wiz004', 0.0035031609719938066) + +[fips2641220] +centroid = (0.81106050733439172, -1.5301706992219526) +description = Ishpeming city, MI +station = ('ksaw', 0.0039070733525918373) +zone = ('miz005', 0.00077419000547167651) + +[fips2641340] +centroid = (0.75559350737369901, -1.4765233969926814) +description = Ithaca city, MI +station = ('kamn', 0.001245523425115925) +zone = ('miz052', 7.9561515332120732e-05) + +[fips2641420] +centroid = (0.73728735971476866, -1.4730972458578466) +description = Jackson city, MI +station = ('kjxn', 0.00092547221636781873) +zone = ('miz074', 0.00028580998368963814) + +[fips2641540] +centroid = (0.7293016580821462, -1.4667807073086614) +description = Jasper CDP, MI +station = ('kadg', 0.0015163610795217604) +zone = ('miz082', 0.0019356583030469751) + +[fips2641680] +centroid = (0.74877769993868837, -1.497969967934603) +description = Jenison CDP, MI +station = ('kgrr', 0.0039857965585044742) +zone = ('miz056', 0.0023589516233045596) + +[fips2641720] +centroid = (0.77374749722844038, -1.4887175237841752) +description = Jennings CDP, MI +station = ('kcad', 0.0017206105149401058) +zone = ('miz033', 0.0025297572532239554) + +[fips2641920] +centroid = (0.73265459265485988, -1.4777235551995229) +description = Jonesville village, MI +station = ('kjym', 0.0014476527578265257) +zone = ('miz081', 0.0018467541043415865) + +[fips2642160] +centroid = (0.73784080362057602, -1.4938011442964592) +description = Kalamazoo city, MI +station = ('kazo', 0.00088340146454657918) +zone = ('miz072', 0.00090426946302257154) + +[fips2642240] +centroid = (0.77444219063061182, -1.5012191950431633) +description = Kaleva village, MI +station = ('kmbl', 0.0034808880245056576) +zone = ('miz031', 0.00087218802122321186) + +[fips2642260] +centroid = (0.78071251286120413, -1.4866493435271471) +description = Kalkaska village, MI +station = ('kacb', 0.0044885833704732094) +zone = ('miz027', 0.001370010472484527) + +[fips2642460] +centroid = (0.74365465243860185, -1.454657789950649) +description = Keego Harbor city, MI +station = ('kptk', 0.0013666485536524354) +zone = ('miz069', 0.0010431658720538193) + +[fips2642780] +centroid = (0.75439605442719815, -1.4967261241365841) +description = Kent City village, MI +station = ('kffx', 0.0048029938014911644) +zone = ('miz057', 0.0042564306415446822) + +[fips2642820] +centroid = (0.74848156992450243, -1.4938749542705261) +description = Kentwood city, MI +station = ('kgrr', 0.00097309541002157712) +zone = ('miz057', 0.0026314176687953382) + +[fips2643220] +centroid = (0.7669225617214418, -1.4485657531031477) +description = Kinde village, MI +station = ('kbax', 0.00280637970925265) +zone = ('miz049', 0.0019084386263132349) + +[fips2643300] +centroid = (0.79947316171064631, -1.537641441458774) +description = Kingsford city, MI +station = ('kimt', 0.00026683237192444523) +zone = ('wiz013', 0.0044577326044629544) + +[fips2643340] +centroid = (0.77821316646576322, -1.4928317360700238) +description = Kingsley village, MI +station = ('ktvc', 0.002565148866099729) +zone = ('miz026', 0.0014769736277547856) + +[fips2643380] +centroid = (0.75769638477625689, -1.4518741643266433) +description = Kingston village, MI +station = ('kcfs', 0.0033786217136532993) +zone = ('miz054', 0.0030545013337215932) + +[fips2643558] +centroid = (0.80859913930347427, -1.524811299234561) +description = K. I. Sawyer CDP, MI +station = ('ksaw', 0.00055736665145162474) +zone = ('miz005', 0.003773276283142688) + +[fips2644200] +centroid = (0.74858149002417917, -1.4721921879209323) +description = Laingsburg city, MI +station = ('krnp', 0.0032381603069058271) +zone = ('miz060', 0.0028270425317791299) + +[fips2644440] +centroid = (0.74511090280658843, -1.454304901829188) +description = Lake Angelus city, MI +station = ('kptk', 0.0012483542716490608) +zone = ('miz069', 0.00094377518037672408) + +[fips2644460] +centroid = (0.78062259349814145, -1.4982645271524619) +description = Lake Ann village, MI +station = ('kfks', 0.0047631472254559201) +zone = ('miz025', 0.0026138276971641276) + +[fips2644480] +centroid = (0.77369957048718074, -1.4871685266197379) +description = Lake City city, MI +station = ('kcad', 0.0027233334114856187) +zone = ('miz033', 0.0014265841565931784) + +[fips2644520] +centroid = (0.7478270714550046, -1.4610649110880125) +description = Lake Fenton CDP, MI +station = ('kfnt', 0.002136183046705274) +zone = ('miz061', 0.0030442588219011441) + +[fips2644715] +centroid = (0.76173308699002451, -1.4836132560268405) +description = Lake Isabella village, MI +station = ('kmop', 0.003462348716111791) +zone = ('miz046', 0.0019974992652860126) + +[fips2644760] +centroid = (0.78506197807692923, -1.4960332284235425) +description = Lake Leelanau CDP, MI +station = ('ktvc', 0.0046985829015498623) +zone = ('miz020', 0.0014120280637114511) + +[fips2644780] +centroid = (0.82371513924902429, -1.5429719387937524) +description = Lake Linden village, MI +station = ('kcmx', 0.0010478071123816606) +zone = ('miz003', 0.0035612355847146507) + +[fips2644820] +centroid = (0.73661580937847881, -1.5075581785265291) +description = Lake Michigan Beach CDP, MI +station = ('kbeh', 0.0013529794113474249) +zone = ('miz077', 0.0043941407304914221) + +[fips2644880] +centroid = (0.74670245109818956, -1.4859306518477611) +description = Lake Odessa village, MI +station = ('ky70', 0.0029159222316821423) +zone = ('miz058', 0.0029432711267353847) + +[fips2644940] +centroid = (0.74680074804166174, -1.4530175644262098) +description = Lake Orion village, MI +station = ('kptk', 0.0029988657309815252) +zone = ('miz069', 0.002817954535571896) + +[fips2645070] +centroid = (0.78417690415995034, -1.4815241318187882) +description = Lakes of the North CDP, MI +station = ('kglr', 0.0029140308230509444) +zone = ('miz021', 0.0033520086005358039) + +[fips2645190] +centroid = (0.74909180684416965, -1.4727055416138215) +description = Lake Victoria CDP, MI +station = ('krnp', 0.0033306297405446619) +zone = ('miz060', 0.0030368238401155653) + +[fips2645240] +centroid = (0.75818135941550857, -1.4882651868019361) +description = Lakeview village, MI +station = ('krqb', 0.0057337144527199596) +zone = ('miz051', 0.0027187378879916183) + +[fips2645340] +centroid = (0.75705761172331953, -1.5054338859340493) +description = Lakewood Club village, MI +station = ('kffx', 0.0035398135823321427) +zone = ('miz050', 0.0020107586544127242) + +[fips2645420] +centroid = (0.72872377956681089, -1.4594762774962624) +description = Lambertville CDP, MI +station = ('kduh', 0.00052665557989763979) +zone = ('ohz003', 0.0023667743057838877) + +[fips2645540] +centroid = (0.81599142899041865, -1.54371134753136) +description = L'Anse village, MI +station = ('kcmx', 0.0072343549719550296) +zone = ('miz004', 0.0018620926295102058) + +[fips2646000] +centroid = (0.74542640597547138, -1.4757844769472648) +description = Lansing city, MI +station = ('klan', 0.0013298279442746268) +zone = ('miz067', 0.0030599603681416461) + +[fips2646040] +centroid = (0.75127832042448317, -1.4543352531048803) +description = Lapeer city, MI +station = ('kd95', 0.00080293365304999096) +zone = ('miz062', 0.0015575678155278188) + +[fips2646320] +centroid = (0.74162719071302274, -1.4525913899294578) +description = Lathrup Village city, MI +station = ('kvll', 0.0010903482713516305) +zone = ('miz069', 0.0035719015404134967) + +[fips2646360] +centroid = (0.82440827930816141, -1.5435373556582286) +description = Laurium village, MI +station = ('kcmx', 0.0013091729069921419) +zone = ('miz003', 0.0038453274717948731) + +[fips2646440] +centroid = (0.73678901585344669, -1.50198436484053) +description = Lawrence village, MI +station = ('klwa', 0.0034949302521554951) +zone = ('miz071', 0.00080663751416465608) + +[fips2646500] +centroid = (0.73595848347559278, -1.4983041112198972) +description = Lawton village, MI +station = ('kazo', 0.0040030107197795923) +zone = ('miz071', 0.0026675191565901108) + +[fips2646800] +centroid = (0.78577243180224599, -1.4967439090416619) +description = Leland CDP, MI +station = ('ktvc', 0.0055527630100618069) +zone = ('miz020', 0.0016284661016405667) + +[fips2646880] +centroid = (0.75023745841847123, -1.4648989980289162) +description = Lennon village, MI +station = ('kfnt', 0.0023537346624047527) +zone = ('miz060', 0.0027906679444468494) + +[fips2646940] +centroid = (0.74813784478161471, -1.4511098148340247) +description = Leonard village, MI +station = ('kd95', 0.0038814695029112632) +zone = ('miz070', 0.0040013921597255907) + +[fips2647100] +centroid = (0.76861209279724996, -1.4914487720773288) +description = Le Roy village, MI +station = ('kcad', 0.0043029609358765193) +zone = ('miz039', 0.0018203839297452739) + +[fips2647180] +centroid = (0.74089825395092712, -1.4736267438463166) +description = Leslie city, MI +station = ('ktew', 0.0020192043010620548) +zone = ('miz067', 0.0026714328758371594) + +[fips2647230] +centroid = (0.7395163720623682, -1.4882182548983498) +description = Level Park-Oak Park CDP, MI +station = ('kbtl', 0.0012651283995721379) +zone = ('miz065', 0.0039410367641743048) + +[fips2647240] +centroid = (0.79647704225021032, -1.4797602846234303) +description = Levering CDP, MI +station = ('kpln', 0.0012045922232280675) +zone = ('miz016', 0.0023811505715964311) + +[fips2647260] +centroid = (0.78317363654602634, -1.4718393696126417) +description = Lewiston CDP, MI +station = ('kgov', 0.0059717039733886623) +zone = ('miz023', 0.0036870742223323923) + +[fips2647280] +centroid = (0.75515598823680907, -1.4405422476389271) +description = Lexington village, MI +station = ('cyzr', 0.0054434816435087402) +zone = ('miz055', 0.0045110033533638958) + +[fips2647560] +centroid = (0.77988932831950109, -1.4558239491436613) +description = Lincoln village, MI +station = ('kosc', 0.0041301020313698911) +zone = ('miz030', 0.002248985068479687) + +[fips2647800] +centroid = (0.73728451482808788, -1.4517868280508734) +description = Lincoln Park city, MI +station = ('konz', 0.0025385528987095425) +zone = ('miz076', 0.0015338378599712734) + +[fips2647820] +centroid = (0.7473353947514253, -1.4622582276041864) +description = Linden city, MI +station = ('kfnt', 0.0026051843928742539) +zone = ('miz061', 0.0036610008265565439) + +[fips2647980] +centroid = (0.73375285853996997, -1.4792530221296305) +description = Litchfield city, MI +station = ('kjym', 0.0030279430340955766) +zone = ('miz081', 0.0034002234671451654) + +[fips2649000] +centroid = (0.73997043692056697, -1.4551214890263189) +description = Livonia city, MI +station = ('kdtw', 0.0029036430064783652) +zone = ('miz076', 0.0022645124136774098) + +[fips2649400] +centroid = (0.76419119125524082, -1.4775295967597488) +description = Loomis CDP, MI +station = ('kmop', 0.0030937836469662927) +zone = ('miz046', 0.0034814518683353901) + +[fips2649450] +centroid = (0.78188230233906075, -1.4559726861025166) +description = Lost Lake Woods CDP, MI +station = ('kapn', 0.0052856732591166633) +zone = ('miz030', 0.0029128156658991241) + +[fips2649540] +centroid = (0.74935013302675746, -1.4895725256781425) +description = Lowell city, MI +station = ('kgrr', 0.0023554706530920333) +zone = ('miz058', 0.0034753147998490136) + +[fips2649640] +centroid = (0.76719780014448136, -1.5087138657440295) +description = Ludington city, MI +station = ('kldm', 0.00056417096279479941) +zone = ('miz037', 0.0025169574297234233) + +[fips2649700] +centroid = (0.72963372442563057, -1.4563424690111366) +description = Luna Pier city, MI +station = ('kttf', 0.0023594076515827457) +zone = ('miz083', 0.0024958640258798135) + +[fips2649720] +centroid = (0.77543528297499653, -1.466493391207198) +description = Lupton CDP, MI +station = ('kgov', 0.0098023570511707198) +zone = ('miz035', 0.0020853523672201947) + +[fips2649740] +centroid = (0.7686216921081358, -1.4954504804395941) +description = Luther village, MI +station = ('kcad', 0.0054164868900624993) +zone = ('miz038', 0.0017159733580435687) + +[fips2649900] +centroid = (0.75026009533886961, -1.4825538062642947) +description = Lyons village, MI +station = ('ky70', 0.0016904312243767464) +zone = ('miz058', 0.001818512994386747) + +[fips2649980] +centroid = (0.77136648415628473, -1.4872888147117853) +description = McBain city, MI +station = ('kcad', 0.0029421510609584736) +zone = ('miz033', 0.0028901125471219162) + +[fips2650000] +centroid = (0.75663548639043221, -1.4843012299113916) +description = McBride village, MI +station = ('kamn', 0.0045548249422197951) +zone = ('miz051', 0.0015490666041735356) + +[fips2650280] +centroid = (0.80034186443924149, -1.4769227457788305) +description = Mackinac Island city, MI +station = ('kmcd', 0.00024561755823059381) +zone = ('miz016', 0.0067150601257620676) + +[fips2650320] +centroid = (0.79907828096738265, -1.4792606143118769) +description = Mackinaw City village, MI +station = ('kmcd', 0.0020182712681372813) +zone = ('miz016', 0.0048823464603305871) + +[fips2650560] +centroid = (0.74189183498750266, -1.4504271467503997) +description = Madison Heights city, MI +station = ('kvll', 0.0011403751417474054) +zone = ('miz070', 0.0039546051817214113) + +[fips2650620] +centroid = (0.78369501875347469, -1.4845992448811696) +description = Mancelona village, MI +station = ('kacb', 0.0022617042230618596) +zone = ('miz021', 0.001951862945473963) + +[fips2650660] +centroid = (0.73562646949198585, -1.46668103155508) +description = Manchester village, MI +station = ('karb', 0.0038697751112753008) +zone = ('miz075', 0.003129842570827292) + +[fips2650720] +centroid = (0.77223057921565463, -1.5066948165054448) +description = Manistee city, MI +station = ('kmbl', 0.0010336350545936783) +zone = ('miz037', 0.0044728171258610486) + +[fips2650755] +centroid = (0.78162701302937165, -1.4837308388585473) +description = Manistee Lake CDP, MI +station = ('kgov', 0.0039436612386128424) +zone = ('miz027', 0.001989263946381617) + +[fips2650760] +centroid = (0.80211140140796089, -1.5053365489216655) +description = Manistique city, MI +station = ('kisq', 0.000986395907563271) +zone = ('miz014', 0.001790110071991905) + +[fips2650830] +centroid = (0.73247916961174198, -1.4713022794419257) +description = Manitou Beach-Devils Lake CDP, MI +station = ('kadg', 0.0033167358085066014) +zone = ('miz082', 0.0032818918377361225) + +[fips2650880] +centroid = (0.77512419548912104, -1.4905203092751456) +description = Manton city, MI +station = ('kcad', 0.0022432922693024437) +zone = ('miz032', 0.0025594190989056105) + +[fips2650920] +centroid = (0.78287853627609916, -1.4984918039276567) +description = Maple City CDP, MI +station = ('ktvc', 0.0041844900538606303) +zone = ('miz020', 0.0015200961036196999) + +[fips2650970] +centroid = (0.78032011048547822, -1.4984304381511566) +description = Maple Grove CDP, MI +station = ('kfks', 0.0045480351537418116) +zone = ('miz025', 0.0023492727165865231) + +[fips2651200] +centroid = (0.75238625543364912, -1.4780490416517276) +description = Maple Rapids village, MI +station = ('kamn', 0.0037243843154086196) +zone = ('miz059', 0.0030741682551623309) + +[fips2651460] +centroid = (0.73349599843395386, -1.4976918148117124) +description = Marcellus village, MI +station = ('khai', 0.0030960460201010544) +zone = ('miz078', 0.0030556012300015723) + +[fips2651540] +centroid = (0.80937403058477475, -1.5657700752551258) +description = Marenisco CDP, MI +station = ('kd25', 0.0048508586103299823) +zone = ('miz009', 0.00064966578362524294) + +[fips2651600] +centroid = (0.74550519013790639, -1.439956654768298) +description = Marine City city, MI +station = ('kphn', 0.0035526234512118747) +zone = ('miz063', 0.0045920408326909218) + +[fips2651660] +centroid = (0.76968644767160754, -1.485989801056111) +description = Marion village, MI +station = ('kcad', 0.0047083102170782975) +zone = ('miz039', 0.0030035737303532382) + +[fips2651820] +centroid = (0.75620484385079501, -1.4500288277085096) +description = Marlette city, MI +station = ('kd95', 0.0051609936586266107) +zone = ('miz062', 0.0045138763985989551) + +[fips2651900] +centroid = (0.81246294920153928, -1.5253450383731133) +description = Marquette city, MI +station = ('ksaw', 0.0034398216026542048) +zone = ('miz005', 0.0036123762660109139) + +[fips2651940] +centroid = (0.73761329995257863, -1.4828041039323232) +description = Marshall city, MI +station = ('krmy', 0.00019581882714682144) +zone = ('miz073', 0.00066588874227075832) + +[fips2651980] +centroid = (0.7424115591321615, -1.4946811043987298) +description = Martin village, MI +station = ('kazo', 0.005423364490011043) +zone = ('miz064', 0.0033438608217062427) + +[fips2652080] +centroid = (0.74889657431404166, -1.4395545658152236) +description = Marysville city, MI +station = ('kphn', 0.00069106257195851678) +zone = ('miz063', 0.0026434446792155553) + +[fips2652180] +centroid = (0.74317329063090176, -1.473795866250835) +description = Mason city, MI +station = ('ktew', 0.00035578421378922682) +zone = ('miz067', 0.00092784347330591185) + +[fips2652380] +centroid = (0.73685736294695492, -1.4973196058954321) +description = Mattawan village, MI +station = ('kazo', 0.0031133340615072435) +zone = ('miz072', 0.0033776785551634012) + +[fips2652440] +centroid = (0.73315393135385554, -1.4576229123635696) +description = Maybee village, MI +station = ('kttf', 0.0015667378240108209) +zone = ('miz083', 0.0013802586929367562) + +[fips2652540] +centroid = (0.75635508179280675, -1.4547459639844595) +description = Mayville village, MI +station = ('kcfs', 0.0024532241093560047) +zone = ('miz054', 0.0023875778462347308) + +[fips2652760] +centroid = (0.76127818437378469, -1.4875427601179505) +description = Mecosta village, MI +station = ('krqb', 0.0039129826817995619) +zone = ('miz045', 0.0012597310333969283) + +[fips2652920] +centroid = (0.75374539568205479, -1.446208668495037) +description = Melvin village, MI +station = ('kd95', 0.0056253027976992612) +zone = ('miz055', 0.0041711746947091701) + +[fips2652940] +centroid = (0.73789967357624586, -1.4518100583832174) +description = Melvindale city, MI +station = ('kdtw', 0.0021010706991986751) +zone = ('miz076', 0.001345169182140864) + +[fips2652960] +centroid = (0.74866334596609763, -1.4445867863810362) +description = Memphis city, MI +station = ('kphn', 0.0030323966176762076) +zone = ('miz063', 0.0013815928163076923) + +[fips2652980] +centroid = (0.73318688317013314, -1.4914543396776425) +description = Mendon village, MI +station = ('khai', 0.0019565971382478021) +zone = ('miz079', 0.0018996816878716081) + +[fips2653020] +centroid = (0.78752900097462308, -1.5293198512116053) +description = Menominee city, MI +station = ('kmnm', 0.00023014350791829863) +zone = ('wiz073', 0.0041466366054009763) + +[fips2653180] +centroid = (0.7576311443688174, -1.4719162164596071) +description = Merrill village, MI +station = ('kmbs', 0.0038512057638817178) +zone = ('miz052', 0.0039856658220010378) + +[fips2653320] +centroid = (0.77498271909995442, -1.4960723936119569) +description = Mesick village, MI +station = ('kcad', 0.0043111551496718362) +zone = ('miz032', 0.0020826163589818016) + +[fips2653340] +centroid = (0.74953943143742863, -1.4537368669708342) +description = Metamora village, MI +station = ('kd95', 0.002130103461519337) +zone = ('miz062', 0.002683142135050485) + +[fips2653500] +centroid = (0.72891452660076128, -1.5151392953852467) +description = Michiana village, MI +station = ('kmgc', 0.001062665482313004) +zone = ('inz003', 0.0039117803462094258) + +[fips2653520] +centroid = (0.81216425355335298, -1.5368803382785645) +description = Michigamme CDP, MI +station = ('ksaw', 0.0085529309756948255) +zone = ('miz004', 0.0043304339738972223) + +[fips2653580] +centroid = (0.73698218889505751, -1.4717242302418878) +description = Michigan Center CDP, MI +station = ('kjxn', 0.0019803579678707899) +zone = ('miz074', 0.0013471492264596737) + +[fips2653730] +centroid = (0.75025964155326419, -1.468573212810337) +description = Middletown CDP, MI +station = ('krnp', 0.00011844713241522694) +zone = ('miz060', 0.00057803625763042999) + +[fips2653760] +centroid = (0.7455352272543333, -1.4917106238250055) +description = Middleville village, MI +station = ('kgrr', 0.0029839803193547104) +zone = ('miz065', 0.0029435980103083102) + +[fips2653780] +centroid = (0.76139632571085225, -1.4701254562871833) +description = Midland city, MI +station = ('kikw', 0.00070903354901322136) +zone = ('miz047', 0.0020065719044920411) + +[fips2653920] +centroid = (0.73444856423310745, -1.4605322715068889) +description = Milan city, MI +station = ('karb', 0.0025277573341420867) +zone = ('miz083', 0.0032464334076743847) + +[fips2653960] +centroid = (0.74330581348100566, -1.459124611105278) +description = Milford village, MI +station = ('kptk', 0.0027415930583220408) +zone = ('miz069', 0.003048250022319174) + +[fips2654120] +centroid = (0.79122895936251092, -1.4671359865311973) +description = Millersburg village, MI +station = ('kpzq', 0.0032951352171799683) +zone = ('miz018', 0.0017790998025461258) + +[fips2654220] +centroid = (0.75530999609000504, -1.4578105701647439) +description = Millington village, MI +station = ('kcfs', 0.0033479695509307495) +zone = ('miz054', 0.0035645659401643019) + +[fips2654560] +centroid = (0.76221830597537144, -1.4447373559356058) +description = Minden City village, MI +station = ('kbax', 0.0032420686697435912) +zone = ('miz049', 0.0041521112976299996) + +[fips2654660] +centroid = (0.77950443085955878, -1.4686245953035157) +description = Mio CDP, MI +station = ('kgov', 0.0072416682706352474) +zone = ('miz029', 0.00039416419997910816) + +[fips2655020] +centroid = (0.7315840425982717, -1.455341103806097) +description = Monroe city, MI +station = ('kttf', 0.0007643062264881637) +zone = ('miz083', 0.0019910611438385185) + +[fips2655100] +centroid = (0.75770516378239439, -1.5073408501280705) +description = Montague city, MI +station = ('kmkg', 0.0046149138469230985) +zone = ('miz050', 0.0034739486190427946) + +[fips2655220] +centroid = (0.72912946389814437, -1.4801962329639935) +description = Montgomery village, MI +station = ('kjym', 0.0038539999713425692) +zone = ('inz007', 0.0034006259992642347) + +[fips2655280] +centroid = (0.75356937922699108, -1.4642122982347192) +description = Montrose city, MI +station = ('kfnt', 0.0040896410316185782) +zone = ('miz053', 0.0034358086743209474) + +[fips2655500] +centroid = (0.72819841800866802, -1.4698610389055062) +description = Morenci city, MI +station = ('kadg', 0.0030547607355026359) +zone = ('ohz002', 0.0023939961825479267) + +[fips2655540] +centroid = (0.75905048102312422, -1.4913047998673317) +description = Morley village, MI +station = ('krqb', 0.004118454098120233) +zone = ('miz045', 0.0030399172813248025) + +[fips2655560] +centroid = (0.74763002378245436, -1.4692917997699682) +description = Morrice village, MI +station = ('krnp', 0.0027961950818691027) +zone = ('miz060', 0.0021087600181004611) + +[fips2655820] +centroid = (0.74347633214892561, -1.4465551687114353) +description = Mount Clemens city, MI +station = ('kmtc', 0.00069888490248697088) +zone = ('miz070', 0.0018226117850144693) + +[fips2655960] +centroid = (0.75253968732819199, -1.4608216994567473) +description = Mount Morris city, MI +station = ('kfnt', 0.002709403638713553) +zone = ('miz061', 0.0016723185817864791) + +[fips2656020] +centroid = (0.76090613253713713, -1.4796198379785221) +description = Mount Pleasant city, MI +station = ('kmop', 0.00064162876928708899) +zone = ('miz046', 0.0011770449085773333) + +[fips2656080] +centroid = (0.75044756115382638, -1.4823971280573431) +description = Muir village, MI +station = ('ky70', 0.0018843451482591068) +zone = ('miz058', 0.0020023567707241259) + +[fips2656140] +centroid = (0.74635528765667525, -1.4817211794913385) +description = Mulliken village, MI +station = ('kfpk', 0.0034670435194970044) +zone = ('miz066', 0.0030065537683944244) + +[fips2656200] +centroid = (0.81037686186638558, -1.5118034999457877) +description = Munising city, MI +station = ('kp53', 0.00044127714368585804) +zone = ('miz006', 0.00043020917807484239) + +[fips2656320] +centroid = (0.75447473386987807, -1.5054409894241048) +description = Muskegon city, MI +station = ('kmkg', 0.0011104048328826196) +zone = ('miz050', 0.0017518245371935975) + +[fips2656360] +centroid = (0.75401576463648112, -1.5051887544406064) +description = Muskegon Heights city, MI +station = ('kmkg', 0.0006229181139303353) +zone = ('miz050', 0.0019549439295772409) + +[fips2656620] +centroid = (0.73591279075577543, -1.4703066214635403) +description = Napoleon CDP, MI +station = ('kjxn', 0.0034020353394075267) +zone = ('miz074', 0.0027588028771441588) + +[fips2656680] +centroid = (0.74356204526849101, -1.4851684142035373) +description = Nashville village, MI +station = ('kfpk', 0.0036639109564803266) +zone = ('miz066', 0.0032844692141311966) + +[fips2656860] +centroid = (0.81151776614512183, -1.5287585358708715) +description = Negaunee city, MI +station = ('ksaw', 0.0034337942701943925) +zone = ('miz005', 0.0012865739025656423) + +[fips2656960] +centroid = (0.77703028701851662, -1.4987533415160681) +description = Nessen City CDP, MI +station = ('kfks', 0.0044704741645008724) +zone = ('miz025', 0.0027376260563078355) + +[fips2657080] +centroid = (0.75775947842871649, -1.4975355729370741) +description = Newaygo city, MI +station = ('kffx', 0.0024123718837895116) +zone = ('miz044', 0.0024047966182395848) + +[fips2657100] +centroid = (0.74500181972833868, -1.444043657371108) +description = New Baltimore city, MI +station = ('kmtc', 0.0017180228127359105) +zone = ('miz070', 0.0025026275061644249) + +[fips2657140] +centroid = (0.80902679733009053, -1.4924276225350173) +description = Newberry village, MI +station = ('kery', 0.0009783625509235676) +zone = ('miz007', 0.0020817298950797261) + +[fips2657220] +centroid = (0.72941915364739052, -1.5139303930788528) +description = New Buffalo city, MI +station = ('kmgc', 0.0018700221424982331) +zone = ('inz003', 0.0043047355462849162) + +[fips2657280] +centroid = (0.76025901681037511, -1.5070421719331768) +description = New Era village, MI +station = ('kffx', 0.0049804758949236168) +zone = ('miz043', 0.0017379908623840442) + +[fips2657380] +centroid = (0.74577503549355728, -1.4450809589054459) +description = New Haven village, MI +station = ('kmtc', 0.0020280838295979346) +zone = ('miz070', 0.0018329836065508762) + +[fips2657520] +centroid = (0.75251956368191653, -1.4655346993023701) +description = New Lothrop village, MI +station = ('krnp', 0.0030556080338784426) +zone = ('miz060', 0.0036311361840005553) + +[fips2657660] +centroid = (0.730975236848591, -1.5104491244462399) +description = New Troy CDP, MI +station = ('ksbn', 0.0043235382630034611) +zone = ('miz077', 0.0021136732677569121) + +[fips2657760] +centroid = (0.7301504466039761, -1.5053089727194837) +description = Niles city, MI +station = ('ksbn', 0.0025132232397918545) +zone = ('miz077', 0.0029925778059031218) + +[fips2657920] +centroid = (0.73252912093493405, -1.4752441928240174) +description = North Adams village, MI +station = ('kjym', 0.0011673480039810407) +zone = ('miz081', 0.0016951127617148864) + +[fips2658080] +centroid = (0.75449018003375834, -1.4519529135824933) +description = North Branch village, MI +station = ('kd95', 0.003018891548971895) +zone = ('miz062', 0.0024580060126593935) + +[fips2658640] +centroid = (0.75489265295926822, -1.5057100493815923) +description = North Muskegon city, MI +station = ('kmkg', 0.0015665799151474312) +zone = ('miz050', 0.0017019804813721161) + +[fips2658740] +centroid = (0.78767183872060631, -1.4943100823063409) +description = Northport village, MI +station = ('kacb', 0.0057326045443756796) +zone = ('miz020', 0.0041445623052576664) + +[fips2658945] +centroid = (0.75126917489920275, -1.4940728920609949) +description = Northview CDP, MI +station = ('kgrr', 0.0030271667063583945) +zone = ('miz057', 0.00073241684153542408) + +[fips2658980] +centroid = (0.74065012049117118, -1.457147205422646) +description = Northville city, MI +station = ('kyip', 0.0035865936329177684) +zone = ('miz076', 0.0037186701180451074) + +[fips2659140] +centroid = (0.75345012087920227, -1.5050913825216377) +description = Norton Shores city, MI +station = ('kmkg', 5.6103309238536662e-05) +zone = ('miz050', 0.0023964055718815208) + +[fips2659220] +centroid = (0.79946221849623633, -1.5344338579061665) +description = Norway city, MI +station = ('kimt', 0.0024414422544523041) +zone = ('miz011', 0.0035921198579895739) + +[fips2659320] +centroid = (0.78944488380112232, -1.4901788007004075) +description = Norwood CDP, MI +station = ('kcvx', 0.0018220821530233325) +zone = ('miz019', 0.0033362603900398209) + +[fips2659440] +centroid = (0.74138958158865609, -1.4571199782863149) +description = Novi city, MI +station = ('kptk', 0.0034057776584776114) +zone = ('miz069', 0.0034316102014178159) + +[fips2659740] +centroid = (0.77177953377706177, -1.5062741048892518) +description = Oak Hill CDP, MI +station = ('kmbl', 0.0010551153432235472) +zone = ('miz037', 0.0039718362806510739) + +[fips2659860] +centroid = (0.75299375218639086, -1.4690186033821535) +description = Oakley village, MI +station = ('krnp', 0.0026553249748815172) +zone = ('miz060', 0.0033219886085167475) + +[fips2659920] +centroid = (0.74115394468634443, -1.4518055379804546) +description = Oak Park city, MI +station = ('kvll', 0.0013588634857265515) +zone = ('miz076', 0.0034326104080357263) + +[fips2660180] +centroid = (0.79281692972914541, -1.4804888199597976) +description = Oden CDP, MI +station = ('kmgn', 0.0010727420805021269) +zone = ('miz016', 0.001844526103817939) + +[fips2660340] +centroid = (0.74541375233839446, -1.4733071740602763) +description = Okemos CDP, MI +station = ('ktew', 0.0025025111665001308) +zone = ('miz067', 0.0020226823515305512) + +[fips2660580] +centroid = (0.74077037367663356, -1.4823105248198594) +description = Olivet city, MI +station = ('kfpk', 0.0027560918553441657) +zone = ('miz066', 0.0029208289733221346) + +[fips2660640] +centroid = (0.7864902333637136, -1.4939749267300801) +description = Omena CDP, MI +station = ('kacb', 0.0051031045038258246) +zone = ('miz020', 0.0034338194257432187) + +[fips2660660] +centroid = (0.76879828452185262, -1.4635857773931307) +description = Omer city, MI +station = ('kikw', 0.0084710452275571398) +zone = ('miz042', 0.00055349629749583884) + +[fips2660680] +centroid = (0.79165588435084133, -1.4700421342686931) +description = Onaway city, MI +station = ('kpzq', 0.0051501237358304542) +zone = ('miz017', 0.0036795798647156685) + +[fips2660740] +centroid = (0.7743263531281569, -1.5045125615285062) +description = Onekama village, MI +station = ('kmbl', 0.0018274226899280392) +zone = ('miz031', 0.0018975869474163428) + +[fips2660840] +centroid = (0.73315679369382891, -1.4693790138726905) +description = Onsted village, MI +station = ('kadg', 0.002805497174825269) +zone = ('miz082', 0.0025182212970293466) + +[fips2660860] +centroid = (0.81797159229326888, -1.558795425404891) +description = Ontonagon village, MI +station = ('klnl', 0.01249267541057866) +zone = ('miz002', 0.0035243060097714428) + +[fips2661020] +centroid = (0.74332455831717215, -1.4551038437475812) +description = Orchard Lake Village city, MI +station = ('kptk', 0.0014696099947231595) +zone = ('miz069', 0.0012532038120709314) + +[fips2661220] +centroid = (0.74784127843511583, -1.456267995811954) +description = Ortonville village, MI +station = ('kptk', 0.0031792511283428374) +zone = ('miz069', 0.0033452227641683221) + +[fips2661320] +centroid = (0.77534700422143077, -1.4544218737956569) +description = Oscoda CDP, MI +station = ('kosc', 0.00062312350137292945) +zone = ('miz036', 0.0039712111493795986) + +[fips2661500] +centroid = (0.78379766156678454, -1.4561638520154874) +description = Ossineke CDP, MI +station = ('kapn', 0.0034775626011315495) +zone = ('miz024', 0.0032789111915394568) + +[fips2661600] +centroid = (0.7533770613967139, -1.4577915809824824) +description = Otisville village, MI +station = ('kd95', 0.0036645633351253953) +zone = ('miz061', 0.0034100768429393257) + +[fips2661620] +centroid = (0.74100754646868716, -1.4957033786482079) +description = Otsego city, MI +station = ('kazo', 0.0043364874053834638) +zone = ('miz064', 0.003399536554627533) + +[fips2661760] +centroid = (0.75421694873935852, -1.4566514271953246) +description = Otter Lake village, MI +station = ('kd95', 0.0035126731579815471) +zone = ('miz062', 0.0037191474017021914) + +[fips2661860] +centroid = (0.75054542176498573, -1.4726370374406808) +description = Ovid village, MI +station = ('krnp', 0.0030306142767624121) +zone = ('miz060', 0.0030507832732591415) + +[fips2661920] +centroid = (0.76318644011145265, -1.4532858913454114) +description = Owendale village, MI +station = ('kbax', 0.0036705898174037364) +zone = ('miz049', 0.0036294610995505584) + +[fips2661940] +centroid = (0.75040871012467703, -1.4691456458984062) +description = Owosso city, MI +station = ('krnp', 0.00047374558689551734) +zone = ('miz060', 0.00081514317965776712) + +[fips2662020] +centroid = (0.74740625511905623, -1.4530598537539856) +description = Oxford village, MI +station = ('kptk', 0.0034355155613256701) +zone = ('miz069', 0.0033028096327191547) + +[fips2662180] +centroid = (0.81059347467985066, -1.5285882091891694) +description = Palmer CDP, MI +station = ('ksaw', 0.0027383082988877059) +zone = ('miz005', 0.00075058964594736175) + +[fips2662340] +centroid = (0.73875415187143723, -1.4933968387752348) +description = Parchment city, MI +station = ('kazo', 0.0016553196789037511) +zone = ('miz072', 0.0014990871521242935) + +[fips2662500] +centroid = (0.77269253296207252, -1.5058793812256208) +description = Parkdale CDP, MI +station = ('kmbl', 0.00039286900069117629) +zone = ('miz031', 0.0029881127127767888) + +[fips2662740] +centroid = (0.73766976135388063, -1.475658673614781) +description = Parma village, MI +station = ('kjxn', 0.0010638380319016726) +zone = ('miz074', 0.0016504086571392416) + +[fips2662980] +centroid = (0.73677739196062852, -1.4991012903557457) +description = Paw Paw village, MI +station = ('kazo', 0.0044350456527534436) +zone = ('miz071', 0.0017607559681255954) + +[fips2663020] +centroid = (0.73672770243682417, -1.5057930397875245) +description = Paw Paw Lake CDP, MI +station = ('kbeh', 0.0022773094724660476) +zone = ('miz071', 0.0033895205848164145) + +[fips2663200] +centroid = (0.74401323033342415, -1.4414816711088132) +description = Pearl Beach CDP, MI +station = ('kmtc', 0.0031217710007150363) +zone = ('miz063', 0.0055979822667765492) + +[fips2663260] +centroid = (0.75500791450306981, -1.4454282445200075) +description = Peck village, MI +station = ('kd95', 0.0066900525064140983) +zone = ('miz055', 0.0028754133745285434) + +[fips2663300] +centroid = (0.79502501557901362, -1.4797489923431699) +description = Pellston village, MI +station = ('kpln', 0.0003326283835397301) +zone = ('miz016', 0.0014175557233024249) + +[fips2663540] +centroid = (0.76409851427195996, -1.5084866064221274) +description = Pentwater village, MI +station = ('kldm', 0.0032862067782794459) +zone = ('miz043', 0.0031761071182831021) + +[fips2663660] +centroid = (0.75364772705711314, -1.4779430652595462) +description = Perrinton village, MI +station = ('kamn', 0.0024648770354623673) +zone = ('miz052', 0.0021734402788318829) + +[fips2663700] +centroid = (0.74755223445769303, -1.4699437500587584) +description = Perry city, MI +station = ('krnp', 0.0030052810752172121) +zone = ('miz060', 0.0023364165752985809) + +[fips2663800] +centroid = (0.73127927320428854, -1.4610771982059465) +description = Petersburg city, MI +station = ('kduh', 0.0029506076676265726) +zone = ('miz083', 0.0023482444575181716) + +[fips2663820] +centroid = (0.7917659971733495, -1.4837166318784361) +description = Petoskey city, MI +station = ('kmgn', 0.0015958078130982073) +zone = ('miz019', 0.0018124892334619377) + +[fips2663900] +centroid = (0.75052665947552677, -1.4808643100950718) +description = Pewamo village, MI +station = ('ky70', 0.0029242642577463306) +zone = ('miz059', 0.0033000019105127345) + +[fips2664020] +centroid = (0.75607047095168411, -1.4922129121304368) +description = Pierson village, MI +station = ('krqb', 0.0070316171420371732) +zone = ('miz057', 0.0050598638921274183) + +[fips2664060] +centroid = (0.76497489644926386, -1.4533327708891199) +description = Pigeon village, MI +station = ('kbax', 0.0036814696221954143) +zone = ('miz049', 0.0031549111873358892) + +[fips2664100] +centroid = (0.77954441635272198, -1.505343250985993) +description = Pilgrim CDP, MI +station = ('kfks', 0.0009230208955879574) +zone = ('miz025', 0.0029383958504942886) + +[fips2664140] +centroid = (0.74097258752376971, -1.4651256464855802) +description = Pinckney village, MI +station = ('kozw', 0.0030917867758595472) +zone = ('miz068', 0.0026267265129238417) + +[fips2664160] +centroid = (0.76544847408849992, -1.4654612733007388) +description = Pinconning city, MI +station = ('kikw', 0.0050666162152735736) +zone = ('miz048', 0.0026365550729060996) + +[fips2664740] +centroid = (0.74092722641651032, -1.4948870881570502) +description = Plainwell city, MI +station = ('kazo', 0.0040316194653348889) +zone = ('miz064', 0.0039061754757656313) + +[fips2664900] +centroid = (0.74126761798052676, -1.4511462398555139) +description = Pleasant Ridge city, MI +station = ('kvll', 0.0013153235544678475) +zone = ('miz076', 0.0037495544667267384) + +[fips2665060] +centroid = (0.73951775087247729, -1.4567847354435919) +description = Plymouth city, MI +station = ('kyip', 0.0025521378441402554) +zone = ('miz076', 0.0027893244079311829) + +[fips2665420] +centroid = (0.79274303248861611, -1.4801406965871948) +description = Ponshewaing CDP, MI +station = ('kmgn', 0.0013196633222613567) +zone = ('miz016', 0.0020249558191208859) + +[fips2665440] +centroid = (0.74436945203375615, -1.453638709653702) +description = Pontiac city, MI +station = ('kptk', 0.001687336785296285) +zone = ('miz069', 0.0012746892970610234) + +[fips2665560] +centroid = (0.7365248428178649, -1.4938411297896224) +description = Portage city, MI +station = ('kazo', 0.00078821212701511104) +zone = ('miz072', 0.0011079791487189951) + +[fips2665680] +centroid = (0.76868754338081369, -1.4485375136758505) +description = Port Austin village, MI +station = ('kp58', 0.0024893908050141844) +zone = ('miz049', 0.0036647934318783022) + +[fips2665800] +centroid = (0.76688730607055156, -1.4436483053889464) +description = Port Hope village, MI +station = ('kp58', 0.0017202354089328009) +zone = ('miz049', 0.004252705742941636) + +[fips2665820] +centroid = (0.75038277453199242, -1.438740230092828) +description = Port Huron city, MI +station = ('cyzr', 0.0014984554455566483) +zone = ('miz063', 0.0032943630742803599) + +[fips2665860] +centroid = (0.7482041672931905, -1.4817564525955214) +description = Portland city, MI +station = ('ky70', 0.0024097221259676335) +zone = ('miz058', 0.0026155608443436504) + +[fips2665900] +centroid = (0.75797289728965045, -1.4406778422685145) +description = Port Sanilac village, MI +station = ('cyzr', 0.0080241939219983151) +zone = ('miz055', 0.0034912714532673592) + +[fips2666000] +centroid = (0.78997514973446326, -1.4608207046190735) +description = Posen village, MI +station = ('kpzq', 0.0028864768731976971) +zone = ('miz018', 0.0029870022279582715) + +[fips2666100] +centroid = (0.74399411897811485, -1.47910590832698) +description = Potterville city, MI +station = ('kfpk', 0.0012486298380318989) +zone = ('miz066', 0.0013027963209009737) + +[fips2666140] +centroid = (0.79740189222084201, -1.5276287842460554) +description = Powers village, MI +station = ('kesc', 0.0061090507989616455) +zone = ('miz012', 0.0019312753364281851) + +[fips2666300] +centroid = (0.77128942786980914, -1.4648939365740854) +description = Prescott village, MI +station = ('kosc', 0.0083790689011892482) +zone = ('miz042', 0.002249071924706626) + +[fips2666343] +centroid = (0.79101438858427087, -1.4571056316798634) +description = Presque Isle Harbor CDP, MI +station = ('kpzq', 0.0042738719457668462) +zone = ('miz018', 0.0052839446078780244) + +[fips2666400] +centroid = (0.77321881954471883, -1.4776956473847835) +description = Prudenville CDP, MI +station = ('khtl', 0.00083478669107460988) +zone = ('miz034', 0.0008928096294484473) + +[fips2666640] +centroid = (0.73204964408282613, -1.481524690324149) +description = Quincy village, MI +station = ('koeb', 0.0021802061991693916) +zone = ('miz080', 0.0023074374429331371) + +[fips2666720] +centroid = (0.79931657077015739, -1.5357861041040266) +description = Quinnesec CDP, MI +station = ('kimt', 0.001528823263758575) +zone = ('miz011', 0.0039873807236896252) + +[fips2667140] +centroid = (0.78257849672438884, -1.4885886835787931) +description = Rapid City CDP, MI +station = ('kacb', 0.0028501136525911032) +zone = ('miz021', 0.0033934982921564947) + +[fips2667280] +centroid = (0.75377271008484847, -1.4999566064089778) +description = Ravenna village, MI +station = ('kffx', 0.004441790855396568) +zone = ('miz050', 0.0031884258788605316) + +[fips2667500] +centroid = (0.73023848101144662, -1.4791286674204258) +description = Reading city, MI +station = ('kjym', 0.0025436127726240331) +zone = ('miz081', 0.0021813569303160197) + +[fips2667820] +centroid = (0.76571980297401498, -1.4923793641811998) +description = Reed City city, MI +station = ('krqb', 0.002618470798776426) +zone = ('miz039', 0.0030694505330441297) + +[fips2667900] +centroid = (0.75839460374351719, -1.4606545143676988) +description = Reese village, MI +station = ('khyx', 0.0022204875597230276) +zone = ('miz054', 0.0034596450548382623) + +[fips2667980] +centroid = (0.8099821905626321, -1.5356805291375732) +description = Republic CDP, MI +station = ('ksaw', 0.0072008465130339681) +zone = ('miz005', 0.0041881577328831939) + +[fips2668240] +centroid = (0.73952584920020659, -1.4915260378033146) +description = Richland village, MI +station = ('kazo', 0.0026904806857501276) +zone = ('miz072', 0.0023977104789273205) + +[fips2668380] +centroid = (0.7471849299166109, -1.4442981263760488) +description = Richmond city, MI +station = ('kmtc', 0.0035401743950164823) +zone = ('miz063', 0.0024718545376270005) + +[fips2668760] +centroid = (0.73782652682729477, -1.4507903148611547) +description = River Rouge city, MI +station = ('cyqg', 0.0020384696634630759) +zone = ('miz076', 0.0021030741464552415) + +[fips2668880] +centroid = (0.73605723420467051, -1.4519610817233926) +description = Riverview city, MI +station = ('konz', 0.0013551820523810061) +zone = ('miz076', 0.0022957734680387064) + +[fips2668990] +centroid = (0.75855597688615661, -1.4632297651323087) +description = Robin Glen-Indiantown CDP, MI +station = ('khyx', 0.00059717004523843762) +zone = ('miz053', 0.0035273500932195209) + +[fips2669020] +centroid = (0.74502377597032876, -1.4507120193909102) +description = Rochester city, MI +station = ('kvll', 0.0026207306951989235) +zone = ('miz070', 0.0024100272647681643) + +[fips2669035] +centroid = (0.7446182661719204, -1.4514017735112983) +description = Rochester Hills city, MI +station = ('kvll', 0.0021202022775180795) +zone = ('miz069', 0.0029050052531886966) + +[fips2669080] +centroid = (0.75285955382020497, -1.4932091809740604) +description = Rockford city, MI +station = ('kgrr', 0.0044306990987345298) +zone = ('miz057', 0.0018072830048515712) + +[fips2669180] +centroid = (0.73426602024664123, -1.4528425428088199) +description = Rockwood city, MI +station = ('konz', 0.0011551268092761381) +zone = ('miz076', 0.0037736610387989738) + +[fips2669260] +centroid = (0.79268838622973603, -1.4626688337640104) +description = Rogers City city, MI +station = ('kpzq', 0.00021190583275191468) +zone = ('miz018', 0.0019273728031158181) + +[fips2669400] +centroid = (0.74708092574648444, -1.4486692336744986) +description = Romeo village, MI +station = ('kmtc', 0.0039333118042249185) +zone = ('miz070', 0.0021054571122646765) + +[fips2669420] +centroid = (0.73694169725641123, -1.4550118125361233) +description = Romulus city, MI +station = ('kdtw', 0.00045518304926619671) +zone = ('miz076', 0.001471465562479485) + +[fips2669520] +centroid = (0.75394989591051087, -1.5057539444122798) +description = Roosevelt Park city, MI +station = ('kmkg', 0.00074912510110987818) +zone = ('miz050', 0.0022744532690821616) + +[fips2669540] +centroid = (0.77646155402846173, -1.4763754977918675) +description = Roscommon village, MI +station = ('khtl', 0.0025903625633923316) +zone = ('miz034', 0.0026728517078381453) + +[fips2669640] +centroid = (0.7627782948658739, -1.4794060875050303) +description = Rosebush village, MI +station = ('kmop', 0.0015714273748771983) +zone = ('miz046', 0.0015233988048644243) + +[fips2669680] +centroid = (0.77529364950619717, -1.4680908387116709) +description = Rose City city, MI +station = ('kgov', 0.0088707548995127262) +zone = ('miz035', 0.0015101375432714115) + +[fips2669800] +centroid = (0.74189733277464642, -1.4475164262502638) +description = Roseville city, MI +station = ('kdet', 0.0018924401052426933) +zone = ('miz070', 0.0032819461947064857) + +[fips2669880] +centroid = (0.75936443084897298, -1.5070157476483017) +description = Rothbury village, MI +station = ('kffx', 0.0046598185366689476) +zone = ('miz043', 0.0025129551147012393) + +[fips2670040] +centroid = (0.7419013470319259, -1.45130918379448) +description = Royal Oak city, MI +station = ('kvll', 0.00068318629231717254) +zone = ('miz069', 0.0039938054228536111) + +[fips2670520] +centroid = (0.75778143467070658, -1.4652862167767637) +description = Saginaw city, MI +station = ('khyx', 0.0012004201158888842) +zone = ('miz053', 0.0019087156500474684) + +[fips2670640] +centroid = (0.75569850638149905, -1.4686535154092215) +description = St. Charles village, MI +station = ('kmbs', 0.0041817557655315259) +zone = ('miz053', 0.001359393253228863) + +[fips2670680] +centroid = (0.74746395570412716, -1.4397645638308236) +description = St. Clair city, MI +station = ('kphn', 0.0016578902128024829) +zone = ('miz063', 0.0031581514454951834) + +[fips2670760] +centroid = (0.7416435095415288, -1.4467191423946602) +description = St. Clair Shores city, MI +station = ('kdet', 0.0020975579742175689) +zone = ('miz070', 0.0035748871338714128) + +[fips2670800] +centroid = (0.77419576759352271, -1.4733331969194237) +description = St. Helen CDP, MI +station = ('khtl', 0.0031342895483130865) +zone = ('miz034', 0.0024756312228862718) + +[fips2670840] +centroid = (0.80088220092236639, -1.4788473377982971) +description = St. Ignace city, MI +station = ('kmcd', 0.0012116002059307331) +zone = ('miz015', 0.0055290545476773473) + +[fips2670900] +centroid = (0.79836021760652709, -1.4927812262414712) +description = St. James CDP, MI +station = ('ksjx', 0.00098550182862808884) +zone = ('miz015', 0.007949478040069265) + +[fips2670940] +centroid = (0.75050665800229899, -1.4757750347160115) +description = St. Johns city, MI +station = ('klan', 0.0038130559697777421) +zone = ('miz059', 0.0011581273395523351) + +[fips2670960] +centroid = (0.73476837836524289, -1.5095187941417569) +description = St. Joseph city, MI +station = ('kbeh', 0.0011111981205244792) +zone = ('miz077', 0.0027116685782692476) + +[fips2671000] +centroid = (0.75762173704414904, -1.4767445476622019) +description = St. Louis city, MI +station = ('kamn', 0.0017963826421448384) +zone = ('miz052', 0.0020232264073685251) + +[fips2671140] +centroid = (0.73607467004389793, -1.4621838940313439) +description = Saline city, MI +station = ('karb', 0.00082270674755587851) +zone = ('miz075', 0.0015982745229795843) + +[fips2671340] +centroid = (0.77368112235698705, -1.4602614662201496) +description = Sand Lake CDP, MI +station = ('kosc', 0.004301038024260016) +zone = ('miz036', 0.00061152854299976187) + +[fips2671360] +centroid = (0.75552842404589216, -1.4926759130744058) +description = Sand Lake village, MI +station = ('kgrr', 0.007073685848215671) +zone = ('miz057', 0.0044863083728820287) + +[fips2671540] +centroid = (0.75782517262176152, -1.4457093297960415) +description = Sandusky city, MI +station = ('kbax', 0.0065830558767128039) +zone = ('miz055', 0.00017398084314824476) + +[fips2671560] +centroid = (0.7623279475589817, -1.4728055664332533) +description = Sanford village, MI +station = ('kikw', 0.0016163665196765194) +zone = ('miz047', 0.00054838768351046069) + +[fips2671660] +centroid = (0.74922298579074964, -1.487187096922979) +description = Saranac village, MI +station = ('ky70', 0.0019237008712030567) +zone = ('miz058', 0.0017520009145026642) + +[fips2671700] +centroid = (0.74450577970162934, -1.5045565263723641) +description = Saugatuck city, MI +station = ('kbiv', 0.0021064396711082752) +zone = ('miz064', 0.0042214417792696326) + +[fips2671740] +centroid = (0.81117969586901051, -1.4725411490515763) +description = Sault Ste. Marie city, MI +station = ('kanj', 0.00026763784508963264) +zone = ('miz008', 0.0039651000848382684) + +[fips2671860] +centroid = (0.73507960547745843, -1.4945903996375036) +description = Schoolcraft village, MI +station = ('kazo', 0.0023017637868675807) +zone = ('miz072', 0.0026045045503233629) + +[fips2672080] +centroid = (0.76710065511831538, -1.5058609854553044) +description = Scottville city, MI +station = ('kldm', 0.0015367392158098197) +zone = ('miz037', 0.00085058458344348204) + +[fips2672180] +centroid = (0.76326248410696207, -1.4564932480052164) +description = Sebewaing village, MI +station = ('kcfs', 0.0047671646240263037) +zone = ('miz054', 0.0046908115921896467) + +[fips2672840] +centroid = (0.76117400567073312, -1.5073447422123025) +description = Shelby village, MI +station = ('kldm', 0.0062052368196700855) +zone = ('miz043', 0.00132574802014905) + +[fips2672960] +centroid = (0.75962809773907181, -1.4781654551128356) +description = Shepherd village, MI +station = ('kmop', 0.0017058044018827072) +zone = ('miz046', 0.0028234550230188224) + +[fips2673100] +centroid = (0.75411201954472873, -1.4848281622658612) +description = Sheridan village, MI +station = ('ky70', 0.00467124128013477) +zone = ('miz051', 0.0020616547640028462) + +[fips2673420] +centroid = (0.73303058893561712, -1.487708601303475) +description = Sherwood village, MI +station = ('koeb', 0.0026870479586856106) +zone = ('miz080', 0.0027577843272434343) + +[fips2673560] +centroid = (0.75777532601832454, -1.4673507318423626) +description = Shields CDP, MI +station = ('kmbs', 0.0020288972282209695) +zone = ('miz053', 0.0014586931175112183) + +[fips2673660] +centroid = (0.73409312793093873, -1.5099092941085981) +description = Shoreham village, MI +station = ('kbeh', 0.0017677010012558654) +zone = ('miz077', 0.0022505518321095101) + +[fips2673730] +centroid = (0.73096560263112009, -1.5117712811677957) +description = Shorewood-Tower Hills-Harbert CDP, MI +station = ('kmgc', 0.0040770390599590587) +zone = ('miz077', 0.0029637213475673251) + +[fips2674200] +centroid = (0.77133796547630717, -1.4668899998264213) +description = Skidway Lake CDP, MI +station = ('kikw', 0.0097052597223425616) +zone = ('miz035', 0.0026480200185407402) + +[fips2674380] +centroid = (0.75866917894144092, -1.4480312285664318) +description = Snover CDP, MI +station = ('kbax', 0.0054560641004472582) +zone = ('miz055', 0.0020098768664057322) + +[fips2674740] +centroid = (0.77904038271803844, -1.4885463244378474) +description = South Boardman CDP, MI +station = ('ktvc', 0.0038612917032209777) +zone = ('miz026', 0.0034272837200477295) + +[fips2674900] +centroid = (0.74132231659928427, -1.4531525656438513) +description = Southfield city, MI +station = ('kvll', 0.0015874668743049174) +zone = ('miz076', 0.003345443393611881) + +[fips2674960] +centroid = (0.73661577447189375, -1.4522275760468797) +description = Southgate city, MI +station = ('konz', 0.0019471291544980735) +zone = ('miz076', 0.0017234897312400255) + +[fips2674975] +centroid = (0.73978314563853553, -1.4906210845861554) +description = South Gull Lake CDP, MI +station = ('kbtl', 0.0025183254537632046) +zone = ('miz072', 0.0029426164833176094) + +[fips2674980] +centroid = (0.740046568182539, -1.5056452453064655) +description = South Haven city, MI +station = ('klwa', 0.00089639084161305187) +zone = ('miz071', 0.0041394256624886329) + +[fips2675100] +centroid = (0.74108451548870014, -1.4600232287772525) +description = South Lyon city, MI +station = ('kyip', 0.0042638629618777487) +zone = ('miz068', 0.0041448583914830755) + +[fips2675140] +centroid = (0.73117116751041999, -1.455917114819133) +description = South Monroe CDP, MI +station = ('kttf', 0.00084850908293828168) +zone = ('miz083', 0.0016743632548952994) + +[fips2675220] +centroid = (0.82153241303318769, -1.5471283531409143) +description = South Range village, MI +station = ('kcmx', 0.0025424931103580611) +zone = ('miz003', 0.00040839397978896237) + +[fips2675280] +centroid = (0.73410794577628813, -1.4531437691844216) +description = South Rockwood village, MI +station = ('konz', 0.001425652329075827) +zone = ('miz076', 0.003903311340389222) + +[fips2675420] +centroid = (0.75324493997233788, -1.4959079137832492) +description = Sparta village, MI +station = ('kgrr', 0.0053829728585686985) +zone = ('miz057', 0.0029934577686144522) + +[fips2675620] +centroid = (0.73664554978893282, -1.4757745983836985) +description = Spring Arbor CDP, MI +station = ('kjxn', 0.001555123487527384) +zone = ('miz074', 0.0018597561261927446) + +[fips2675700] +centroid = (0.73869351913322301, -1.4876800651702051) +description = Springfield city, MI +station = ('kbtl', 0.00044788962663954682) +zone = ('miz073', 0.003289646825884424) + +[fips2675820] +centroid = (0.75177359250632159, -1.5043716960045779) +description = Spring Lake village, MI +station = ('kmkg', 0.0017017317332788679) +zone = ('miz056', 0.0032317266472412804) + +[fips2675860] +centroid = (0.7396414772631511, -1.478232371036357) +description = Springport village, MI +station = ('kfpk', 0.0037287291752211502) +zone = ('miz066', 0.0042168757559268421) + +[fips2676120] +centroid = (0.76755585444052798, -1.4654480611583012) +description = Standish city, MI +station = ('kikw', 0.0066815995795362721) +zone = ('miz042', 0.0017626753098925077) + +[fips2676220] +centroid = (0.7556080459663681, -1.4849187274007472) +description = Stanton city, MI +station = ('ky70', 0.006168708921356428) +zone = ('miz051', 0.00097602571019040024) + +[fips2676240] +centroid = (0.76062216746783762, -1.4913527789684693) +description = Stanwood village, MI +station = ('krqb', 0.0025781116874449049) +zone = ('miz045', 0.0018862271769481296) + +[fips2676380] +centroid = (0.79261949808415988, -1.5290658534455626) +description = Stephenson city, MI +station = ('kmnm', 0.0049033307821593902) +zone = ('miz012', 0.0029561229672580625) + +[fips2676420] +centroid = (0.76851714688594142, -1.4664017265148834) +description = Sterling village, MI +station = ('kikw', 0.0071807869221936034) +zone = ('miz042', 0.0016555722530422017) + +[fips2676460] +centroid = (0.74318224416996459, -1.4491523931713282) +description = Sterling Heights city, MI +station = ('kvll', 0.0020107959079539335) +zone = ('miz070', 0.0023607601093175432) + +[fips2676500] +centroid = (0.733282108334122, -1.5101532387781493) +description = Stevensville village, MI +station = ('kbeh', 0.0025148919127009747) +zone = ('miz077', 0.0017963759614436857) + +[fips2676560] +centroid = (0.7408499257839396, -1.4691404797238203) +description = Stockbridge village, MI +station = ('kozw', 0.0040166089886914478) +zone = ('miz067', 0.0036470342885048649) + +[fips2676720] +centroid = (0.73211502411660601, -1.453359596599723) +description = Stony Point CDP, MI +station = ('kttf', 0.0021242150093068973) +zone = ('miz083', 0.0034666420029762519) + +[fips2676820] +centroid = (0.77166477837874314, -1.5057497730753675) +description = Stronach CDP, MI +station = ('kmbl', 0.00097795899232680809) +zone = ('miz031', 0.0034173218673128939) + +[fips2676960] +centroid = (0.72955179867054198, -1.4908280806354419) +description = Sturgis city, MI +station = ('kirs', 0.00035014440968090789) +zone = ('miz079', 0.0024512038553574189) + +[fips2677420] +centroid = (0.74632779872095634, -1.4834443081552473) +description = Sunfield village, MI +station = ('ky70', 0.0032253271094842008) +zone = ('miz058', 0.0033631201722735832) + +[fips2677600] +centroid = (0.7850420115102863, -1.4948872103300979) +description = Suttons Bay village, MI +station = ('ktvc', 0.0044220991612703249) +zone = ('miz020', 0.0021312831033921489) + +[fips2677700] +centroid = (0.74984636503968438, -1.4630231006955803) +description = Swartz Creek city, MI +station = ('kfnt', 0.00096060996779079246) +zone = ('miz061', 0.001825146860820059) + +[fips2677860] +centroid = (0.74380284834538879, -1.4544433413454565) +description = Sylvan Lake city, MI +station = ('kptk', 0.0013782733292577109) +zone = ('miz069', 0.0010131014093957471) + +[fips2678140] +centroid = (0.77260758778737793, -1.4577510893438361) +description = Tawas City city, MI +station = ('kosc', 0.0037402147647434174) +zone = ('miz036', 0.0020955220896488546) + +[fips2679000] +centroid = (0.73696984941724586, -1.453306154618027) +description = Taylor city, MI +station = ('kdtw', 0.00085206657428308242) +zone = ('miz076', 0.0010517604433985051) + +[fips2679120] +centroid = (0.7331449952680853, -1.4651069191027064) +description = Tecumseh city, MI +station = ('kadg', 0.0030290540740624656) +zone = ('miz082', 0.0025020350158078447) + +[fips2679160] +centroid = (0.7347061573774093, -1.4833206166711586) +description = Tekonsha village, MI +station = ('krmy', 0.0027471108331568574) +zone = ('miz073', 0.0026457998084464971) + +[fips2679240] +centroid = (0.72898104109855477, -1.4586008552500471) +description = Temperance CDP, MI +station = ('kduh', 0.0012211604428286407) +zone = ('ohz003', 0.0028131966072808697) + +[fips2679600] +centroid = (0.77701991976275975, -1.4999005289801115) +description = Thompsonville village, MI +station = ('kfks', 0.0037442486204828816) +zone = ('miz025', 0.0022997661222049644) + +[fips2679720] +centroid = (0.72952858579149049, -1.511671291254949) +description = Three Oaks village, MI +station = ('kmgc', 0.0031890784668574001) +zone = ('miz077', 0.0037609559153098339) + +[fips2679760] +centroid = (0.73208476010737633, -1.4945346887277799) +description = Three Rivers city, MI +station = ('khai', 0.00058479406870298137) +zone = ('miz079', 0.0014385895206584409) + +[fips2680340] +centroid = (0.78111004650493088, -1.4940543915709235) +description = Traverse City city, MI +station = ('ktvc', 0.00058052593776737279) +zone = ('miz026', 0.0015547406595397576) + +[fips2680420] +centroid = (0.73548275908137672, -1.4519902636284858) +description = Trenton city, MI +station = ('konz', 0.00083234497254412005) +zone = ('miz076', 0.0027883764816077437) + +[fips2680660] +centroid = (0.81255768567333753, -1.5261375400265664) +description = Trowbridge Park CDP, MI +station = ('ksaw', 0.0035774958408301334) +zone = ('miz005', 0.0032447864564278052) + +[fips2680700] +centroid = (0.74322896663404048, -1.4511633091755984) +description = Troy city, MI +station = ('kvll', 0.00082855654956834562) +zone = ('miz069', 0.0033587490019643148) + +[fips2680820] +centroid = (0.77041507027443756, -1.4623784109764786) +description = Turner village, MI +station = ('kosc', 0.0075300795705401415) +zone = ('miz042', 0.0018826104594598405) + +[fips2680960] +centroid = (0.76970283631328373, -1.4915370508308945) +description = Tustin village, MI +station = ('kcad', 0.0032304084120633879) +zone = ('miz039', 0.002559199170051837) + +[fips2681020] +centroid = (0.76995536800275477, -1.4627993494854745) +description = Twining village, MI +station = ('kosc', 0.0080709495614335984) +zone = ('miz042', 0.0013492953578074925) + +[fips2681040] +centroid = (0.75700889958389639, -1.5041651886474818) +description = Twin Lake CDP, MI +station = ('kffx', 0.0027012847624908478) +zone = ('miz050', 0.0014992333951316943) + +[fips2681200] +centroid = (0.76283041039733845, -1.4474857782685988) +description = Ubly village, MI +station = ('kbax', 0.0014392322070772335) +zone = ('miz049', 0.0024485722801170185) + +[fips2681360] +centroid = (0.7342026647947939, -1.4860286171786754) +description = Union City village, MI +station = ('koeb', 0.0026081072559521285) +zone = ('miz080', 0.00284643910191124) + +[fips2681420] +centroid = (0.7618977064450726, -1.4567756946380666) +description = Unionville village, MI +station = ('kcfs', 0.0034130323571470176) +zone = ('miz054', 0.0033669460665565454) + +[fips2681540] +centroid = (0.74401195624307015, -1.4490304644697838) +description = Utica city, MI +station = ('kvll', 0.0024880185315236396) +zone = ('miz070', 0.0016521184944225786) + +[fips2681680] +centroid = (0.73169071712215361, -1.4995084582169431) +description = Vandalia village, MI +station = ('kekm', 0.0037616558777272915) +zone = ('miz078', 0.001022582322188407) + +[fips2681700] +centroid = (0.78790613171939405, -1.4776675824904115) +description = Vanderbilt village, MI +station = ('kglr', 0.0022296939723128665) +zone = ('miz022', 0.0022811961934434194) + +[fips2681740] +centroid = (0.73637928235824857, -1.4728045890488721) +description = Vandercook Lake CDP, MI +station = ('kjxn', 0.0016808338795702761) +zone = ('miz074', 0.001109586699645919) + +[fips2681840] +centroid = (0.75697359157312849, -1.4586847008673127) +description = Vassar city, MI +station = ('kcfs', 0.0022547679822300182) +zone = ('miz054', 0.0025924886770253286) + +[fips2681960] +centroid = (0.74397586283413897, -1.4840117670549482) +description = Vermontville village, MI +station = ('kfpk', 0.002923612378502831) +zone = ('miz066', 0.0024883107352380845) + +[fips2682020] +centroid = (0.74944296708967106, -1.4666017237938695) +description = Vernon village, MI +station = ('krnp', 0.0016679138573049764) +zone = ('miz060', 0.0015090638120632974) + +[fips2682300] +centroid = (0.73518783334437465, -1.4929196308511545) +description = Vicksburg village, MI +station = ('kazo', 0.0019291473088851551) +zone = ('miz072', 0.0021352990000146487) + +[fips2682450] +centroid = (0.74581029114444763, -1.4560135268070131) +description = Village of Clarkston city, MI +station = ('kptk', 0.0011397832342174348) +zone = ('miz069', 0.00133748719291079) + +[fips2682453] +centroid = (0.74091185006580018, -1.4463593951292391) +description = Village of Grosse Pointe Shores city, MI +station = ('kdet', 0.0019791386329926393) +zone = ('miz070', 0.0043405082431538216) + +[fips2682490] +centroid = (0.73464440762847372, -1.4698643026712075) +description = Vineyard Lake CDP, MI +station = ('kadg', 0.0042987063461890785) +zone = ('miz074', 0.0038181762961649714) + +[fips2682680] +centroid = (0.74729633428276565, -1.4781333934144762) +description = Wacousta CDP, MI +station = ('klan', 0.001495959747262887) +zone = ('miz059', 0.002488473428926568) + +[fips2682780] +centroid = (0.81116164916454492, -1.569636380974021) +description = Wakefield city, MI +station = ('kiwd', 0.0025994281848254479) +zone = ('miz009', 0.0031062851400074395) + +[fips2682880] +centroid = (0.72822424888159754, -1.47338670871429) +description = Waldron village, MI +station = ('kjym', 0.004070004823460067) +zone = ('ohz001', 0.0036138763893225827) + +[fips2682960] +centroid = (0.75043141685824544, -1.4967309412453196) +description = Walker city, MI +station = ('kgrr', 0.0036447953843638573) +zone = ('miz057', 0.002715976989117234) + +[fips2683020] +centroid = (0.76296469602998684, -1.5031803342571666) +description = Walkerville village, MI +station = ('kffx', 0.005092284265936867) +zone = ('miz043', 0.002202817875216308) + +[fips2683060] +centroid = (0.74241299030214813, -1.4568940454146442) +description = Walled Lake city, MI +station = ('kptk', 0.0023773034175337032) +zone = ('miz069', 0.0024326987988173947) + +[fips2683140] +centroid = (0.79014312022167521, -1.4825032789824495) +description = Walloon Lake CDP, MI +station = ('kmgn', 0.0027040498905085723) +zone = ('miz019', 0.0023571294432290857) + +[fips2684000] +centroid = (0.74164108353386859, -1.4490596289215847) +description = Warren city, MI +station = ('kdet', 0.0013349136950319251) +zone = ('miz070', 0.0037332442701510232) + +[fips2684360] +centroid = (0.80800564009133358, -1.5569404545692866) +description = Watersmeet CDP, MI +station = ('klnl', 0.0024693191333563813) +zone = ('wiz005', 0.005640797009389454) + +[fips2684500] +centroid = (0.73633915723874521, -1.5054944663123857) +description = Watervliet city, MI +station = ('kbeh', 0.0022663930946364699) +zone = ('miz071', 0.0032812657227355925) + +[fips2684800] +centroid = (0.74592584939422202, -1.4771411737347175) +description = Waverly CDP, MI +station = ('klan', 0.0010177012236424472) +zone = ('miz059', 0.0036053671392475969) + +[fips2684880] +centroid = (0.74478576542023445, -1.4947301132441257) +description = Wayland city, MI +station = ('kgrr', 0.0040040732317950176) +zone = ('miz064', 0.0034741962348595417) + +[fips2684940] +centroid = (0.73787132942919342, -1.4553977397403246) +description = Wayne city, MI +station = ('kdtw', 0.0010392017478320417) +zone = ('miz076', 0.0013183960957504235) + +[fips2685080] +centroid = (0.74461517693914447, -1.4691508818861623) +description = Webberville village, MI +station = ('kozw', 0.0025344425711700249) +zone = ('miz067', 0.0027864301314642864) + +[fips2685110] +centroid = (0.77133604561412994, -1.4920790802833941) +description = Wedgewood CDP, MI +station = ('kcad', 0.0018032532559975961) +zone = ('miz032', 0.002748341420031998) + +[fips2685140] +centroid = (0.76278016236817348, -1.4831457521334013) +description = Weidman CDP, MI +station = ('kmop', 0.0034454096816623103) +zone = ('miz046', 0.0019936744151145512) + +[fips2685300] +centroid = (0.77174998535282557, -1.500320490104726) +description = Wellston CDP, MI +station = ('kmbl', 0.0036993557762399266) +zone = ('miz031', 0.0023351131607585044) + +[fips2685580] +centroid = (0.77273209957621514, -1.4701821445812882) +description = West Branch city, MI +station = ('khtl', 0.0055476871377754568) +zone = ('miz035', 0.0017204982922115785) + +[fips2685700] +centroid = (0.81137641192900278, -1.5309518213286826) +description = West Ishpeming CDP, MI +station = ('ksaw', 0.0045308070528170584) +zone = ('miz005', 0.0013479266760627669) + +[fips2686000] +centroid = (0.73860890557108627, -1.4552691089744525) +description = Westland city, MI +station = ('kdtw', 0.001618626407323153) +zone = ('miz076', 0.0013630672747915269) + +[fips2686050] +centroid = (0.7315379135461415, -1.456156190020071) +description = West Monroe CDP, MI +station = ('kttf', 0.00045498004610378871) +zone = ('miz083', 0.0013978848729882872) + +[fips2686120] +centroid = (0.74928799930538648, -1.4800022221643419) +description = Westphalia village, MI +station = ('ky70', 0.0033529823890757877) +zone = ('miz059', 0.0025188235126755885) + +[fips2686380] +centroid = (0.73832720942981434, -1.4945018590845498) +description = Westwood CDP, MI +station = ('kazo', 0.0015848276987113497) +zone = ('miz072', 0.0016110825471305999) + +[fips2686680] +centroid = (0.76022212054998795, -1.4970439485933722) +description = White Cloud city, MI +station = ('kffx', 0.0034153388860797859) +zone = ('miz044', 0.00034139918839604279) + +[fips2686780] +centroid = (0.75748191871777182, -1.5069102774016037) +description = Whitehall city, MI +station = ('kmkg', 0.0042989775419975968) +zone = ('miz050', 0.0030899843784355134) + +[fips2686920] +centroid = (0.72952060963680887, -1.494846264905846) +description = White Pigeon village, MI +station = ('kirs', 0.0027333236342436985) +zone = ('miz079', 0.002561134519861862) + +[fips2686960] +centroid = (0.81576902168383703, -1.5634879350850956) +description = White Pine CDP, MI +station = ('kiwd', 0.00753632540969984) +zone = ('miz002', 0.0034501025201420865) + +[fips2687060] +centroid = (0.74040535551687159, -1.4617623272038172) +description = Whitmore Lake CDP, MI +station = ('karb', 0.0035857066005408281) +zone = ('miz075', 0.0031450933086609244) + +[fips2687140] +centroid = (0.77202344354002794, -1.4626418858803596) +description = Whittemore city, MI +station = ('kosc', 0.0066291293030629854) +zone = ('miz036', 0.0029854646696654734) + +[fips2687420] +centroid = (0.74496495837453669, -1.4710255923956068) +description = Williamston city, MI +station = ('ktew', 0.0027255824207587562) +zone = ('miz067', 0.0018980031888982873) + +[fips2688140] +centroid = (0.74218313043966044, -1.4579516974880604) +description = Wixom city, MI +station = ('kptk', 0.0029145749631170445) +zone = ('miz069', 0.0030553019845370698) + +[fips2688220] +centroid = (0.75475758192845632, -1.5029438770501065) +description = Wolf Lake CDP, MI +station = ('kmkg', 0.0020520764061442605) +zone = ('miz050', 0.00093435967183406207) + +[fips2688240] +centroid = (0.7901732620578571, -1.4766453082409332) +description = Wolverine village, MI +station = ('kglr', 0.0045853152077734898) +zone = ('miz017', 0.0032889530799303374) + +[fips2688260] +centroid = (0.74273797060886948, -1.4571001687993048) +description = Wolverine Lake village, MI +station = ('kptk', 0.0021292153822275416) +zone = ('miz069', 0.0022343620296509845) + +[fips2688380] +centroid = (0.73538627728032635, -1.4527272289051405) +description = Woodhaven city, MI +station = ('konz', 0.0011452278304991035) +zone = ('miz076', 0.0026919144518377704) + +[fips2688420] +centroid = (0.74572906352105972, -1.4858898809564345) +description = Woodland village, MI +station = ('ky70', 0.0038380244266274146) +zone = ('miz065', 0.0032082336164742488) + +[fips2688480] +centroid = (0.73202107304297115, -1.454103857352651) +description = Woodland Beach CDP, MI +station = ('kttf', 0.0015673657253302685) +zone = ('miz083', 0.002907247537464251) + +[fips2688900] +centroid = (0.73672367072625211, -1.4513557666322159) +description = Wyandotte city, MI +station = ('konz', 0.0019651787533823931) +zone = ('miz076', 0.0021058652542497972) + +[fips2688940] +centroid = (0.74861815939176346, -1.4958992394968667) +description = Wyoming city, MI +station = ('kgrr', 0.0024612346478272078) +zone = ('miz057', 0.0031752236091799322) + +[fips2689000] +centroid = (0.75272996312324447, -1.4450901044307263) +description = Yale city, MI +station = ('kphn', 0.0050004236875093328) +zone = ('miz063', 0.0035614183126550865) + +[fips2689140] +centroid = (0.73728320583114892, -1.4594789129434329) +description = Ypsilanti city, MI +station = ('kyip', 0.0011583999624114546) +zone = ('miz075', 0.002802964358927058) + +[fips2689240] +centroid = (0.81664550858089602, -1.5430124129791065) +description = Zeba CDP, MI +station = ('kcmx', 0.0066289380636950709) +zone = ('miz004', 0.0022878133344846571) + +[fips2689260] +centroid = (0.74724952455222715, -1.5012319533999954) +description = Zeeland city, MI +station = ('kbiv', 0.0015696038657564326) +zone = ('miz056', 0.0025589407819928628) + +[fips2689320] +centroid = (0.75893258403215202, -1.4647587433702258) +description = Zilwaukee city, MI +station = ('khyx', 0.0011779531675697905) +zone = ('miz053', 0.0030647465812946605) + +[fips27001] +centroid = (0.81336612218286131, -1.6304823984228978) +description = Aitkin County, MN +station = ('khzx', 0.0013491397796223153) +zone = ('mnz036', 0.0033686412103850331) + +[fips2700100460] +centroid = (0.81209463236949098, -1.6354759773990715) +description = Aitkin city, MN +station = ('kait', 0.00044725844632354287) +zone = ('mnz034', 0.0044616847571582264) + +[fips2700100478] +centroid = (0.81252024836088232, -1.6365996727313827) +description = Aitkin township, MN +station = ('kait', 0.0010455817100668801) +zone = ('mnz034', 0.0038207901845940307) + +[fips2700103358] +centroid = (0.8200438042608692, -1.6275104692258946) +description = Ball Bluff township, MN +station = ('kgpz', 0.005139849840606575) +zone = ('mnz035', 0.0034303986624009534) + +[fips2700103412] +centroid = (0.81705566095511473, -1.6249168052376759) +description = Balsam township, MN +station = ('khzx', 0.0042256246309342396) +zone = ('mnz035', 0.0037993801382480265) + +[fips2700104384] +centroid = (0.81092780995136271, -1.6251940333360626) +description = Beaver township, MN +station = ('khzx', 0.0035731149123759327) +zone = ('mnz036', 0.0036777475515766983) + +[fips2700111620] +centroid = (0.81390806436889807, -1.6249209940278804) +description = Clark township, MN +station = ('khzx', 0.0025138628145355024) +zone = ('mnz035', 0.0050700086006579851) + +[fips2700113330] +centroid = (0.81844562371811047, -1.6280797432680176) +description = Cornish township, MN +station = ('khzx', 0.0048087250775847171) +zone = ('mnz035', 0.002009238032463397) + +[fips2700114903] +centroid = (0.8124202060881579, -1.6292209791593115) +description = Davidson UT, MN +station = ('khzx', 0.0013089371242928668) +zone = ('mnz036', 0.002544939652253182) + +[fips2700120654] +centroid = (0.81088906364196844, -1.6363293037769564) +description = Farm Island township, MN +station = ('kait', 0.0017819124284562558) +zone = ('mnz034', 0.0038192153455982856) + +[fips2700121230] +centroid = (0.81397740630007986, -1.6319843066041166) +description = Fleming township, MN +station = ('khzx', 0.0023732270015904737) +zone = ('mnz035', 0.0034522704604653242) + +[fips2700123930] +centroid = (0.81073447983011926, -1.6317498041658187) +description = Glen township, MN +station = ('kait', 0.0028650724714585213) +zone = ('mnz036', 0.001209343794610349) + +[fips2700127602] +centroid = (0.81552073114444834, -1.6255535886152659) +description = Haugen township, MN +station = ('khzx', 0.0027869468164962363) +zone = ('mnz035', 0.0037874940861327522) + +[fips2700128052] +centroid = (0.80857411128200063, -1.636582114719108) +description = Hazelton township, MN +station = ('kait', 0.0040120129296113693) +zone = ('mnz034', 0.0045224347281918919) + +[fips2700129096] +centroid = (0.81998006483658636, -1.6335171420196806) +description = Hill City city, MN +station = ('kgpz', 0.004206831454350992) +zone = ('mnz035', 0.0034230906601598388) + +[fips2700129114] +centroid = (0.82015665725030318, -1.6342516289287974) +description = Hill Lake township, MN +station = ('kgpz', 0.0041764148141085018) +zone = ('mnz035', 0.0038798497660207901) + +[fips2700130788] +centroid = (0.80606617786663992, -1.6296124739638265) +description = Idun township, MN +station = ('kjmr', 0.005336918347152525) +zone = ('mnz036', 0.003965942990330925) + +[fips2700131958] +centroid = (0.81403950511486578, -1.6298629985246575) +description = Jevne township, MN +station = ('khzx', 0.00097539928379042394) +zone = ('mnz035', 0.003254232941203005) + +[fips2700131966] +centroid = (0.80900049521826289, -1.6297203004050147) +description = Jewett UT, MN +station = ('khzx', 0.0047157053951507773) +zone = ('mnz036', 0.0010905780929809971) + +[fips2700133218] +centroid = (0.8125621013563451, -1.6318148176804552) +description = Kimberly township, MN +station = ('khzx', 0.0024854587937065873) +zone = ('mnz036', 0.0027529402797433124) + +[fips2700134982] +centroid = (0.80766304941245959, -1.6320757269503359) +description = Lakeside township, MN +station = ('kait', 0.0052172834769391467) +zone = ('mnz036', 0.0026195044189234336) + +[fips2700136152] +centroid = (0.81085211502170373, -1.629185007923428) +description = Lee township, MN +station = ('khzx', 0.0028288039688181927) +zone = ('mnz036', 0.0011753407062697352) + +[fips2700136908] +centroid = (0.8170284861786612, -1.6300304279598012) +description = Libby township, MN +station = ('khzx', 0.0035270011455268697) +zone = ('mnz035', 0.00037931820301029685) + +[fips2700137844] +centroid = (0.81579237418922868, -1.6319362751431017) +description = Logan township, MN +station = ('khzx', 0.0031554434134441751) +zone = ('mnz035', 0.0017884151943401976) + +[fips2700138996] +centroid = (0.8070778405142659, -1.6279530672709077) +description = McGrath city, MN +station = ('k04w', 0.0060580746380017566) +zone = ('mnz036', 0.0033596827307833953) + +[fips2700139014] +centroid = (0.81346581538973528, -1.6285012228290816) +description = McGregor city, MN +station = ('khzx', 0.00018713821745513373) +zone = ('mnz036', 0.0036951028225012694) + +[fips2700139032] +centroid = (0.81397946578859726, -1.6276088359825369) +description = McGregor township, MN +station = ('khzx', 0.00073351705652513011) +zone = ('mnz035', 0.0038254050541108781) + +[fips2700139212] +centroid = (0.8185839759679161, -1.6342060234754425) +description = Macville township, MN +station = ('kgpz', 0.0056738246760550991) +zone = ('mnz035', 0.0028793925483599383) + +[fips2700139590] +centroid = (0.80931114637182544, -1.6319628216010245) +description = Malmo township, MN +station = ('kait', 0.0038047143812445696) +zone = ('mnz036', 0.0013033451034853737) + +[fips2700142300] +centroid = (0.80829117595695987, -1.6246051243398545) +description = Millward township, MN +station = ('kmzh', 0.0038700104039034351) +zone = ('mnz036', 0.0043213715755721065) + +[fips2700144278] +centroid = (0.81426461768178804, -1.6342563936776553) +description = Morrison township, MN +station = ('kait', 0.0019006061316232826) +zone = ('mnz035', 0.0039732816685970375) + +[fips2700146546] +centroid = (0.81085871236627616, -1.6338981299420983) +description = Nordland township, MN +station = ('kait', 0.0017886655823190027) +zone = ('mnz036', 0.0025873592077264198) + +[fips2700146890] +centroid = (0.81937365018798092, -1.6256926040901873) +description = Northeast Aitkin UT, MN +station = ('khzx', 0.0060531371540908339) +zone = ('mnz035', 0.0038797394604493706) + +[fips2700147342] +centroid = (0.81702208082030636, -1.6326494166754666) +description = Northwest Aitkin UT, MN +station = ('khzx', 0.0043859724168032362) +zone = ('mnz035', 0.0015179837294394946) + +[fips2700149498] +centroid = (0.81528383760507517, -1.631687146845672) +description = Palisade city, MN +station = ('khzx', 0.0026972244438003821) +zone = ('mnz035', 0.0021546258248789198) + +[fips2700151694] +centroid = (0.80817521628145739, -1.627177565124369) +description = Pliny township, MN +station = ('khzx', 0.0055554881879445002) +zone = ('mnz036', 0.0028532408641735521) + +[fips2700154106] +centroid = (0.81092023522240908, -1.6273830950970838) +description = Rice River township, MN +station = ('khzx', 0.0028459657671284608) +zone = ('mnz036', 0.0022474815514646656) + +[fips2700158270] +centroid = (0.81265334716963944, -1.6250474082256023) +description = Salo township, MN +station = ('khzx', 0.0026120823260416745) +zone = ('mnz036', 0.0045183161887617177) + +[fips2700159134] +centroid = (0.80790364304984696, -1.6295783353236573) +description = Seavey township, MN +station = ('khzx', 0.0057871378111751361) +zone = ('mnz036', 0.0021628597548210529) + +[fips2700159368] +centroid = (0.81547537003718906, -1.627573196359211) +description = Shamrock township, MN +station = ('khzx', 0.0019489988613631056) +zone = ('mnz035', 0.0026689012934689913) + +[fips2700161546] +centroid = (0.81243853204530392, -1.6271937443265352) +description = Spalding township, MN +station = ('khzx', 0.0015321901637887253) +zone = ('mnz036', 0.0032710091114323821) + +[fips2700161654] +centroid = (0.81249052540372091, -1.6341301540128585) +description = Spencer township, MN +station = ('kait', 0.0006562235524234459) +zone = ('mnz036', 0.0035998291919988523) + +[fips2700164156] +centroid = (0.81424576812586646, -1.6253427877482101) +description = Tamarack city, MN +station = ('khzx', 0.0022896739767791718) +zone = ('mnz035', 0.0046296314094743584) + +[fips2700165722] +centroid = (0.81724469756639828, -1.6272933153603613) +description = Turner township, MN +station = ('khzx', 0.003700092177054767) +zone = ('mnz035', 0.0021671259567633263) + +[fips2700166748] +centroid = (0.81846365296928369, -1.6297530951416594) +description = Verdon township, MN +station = ('khzx', 0.0048840619172843521) +zone = ('mnz035', 0.0012898825307323036) + +[fips2700167540] +centroid = (0.8063513472131234, -1.6253648138033701) +description = Wagner township, MN +station = ('k04w', 0.0042567132549404503) +zone = ('mnz045', 0.0048918140888481133) + +[fips2700168692] +centroid = (0.81584124340828457, -1.6345309165157016) +description = Waukenabo township, MN +station = ('kait', 0.0034115648159130573) +zone = ('mnz035', 0.0031311168541926127) + +[fips2700168872] +centroid = (0.80924988531508035, -1.6335806545511606) +description = Wealthwood township, MN +station = ('kait', 0.0033639555441444271) +zone = ('mnz036', 0.0023459600125416698) + +[fips2700170132] +centroid = (0.80926124740851091, -1.6270296833768476) +description = White Pine township, MN +station = ('khzx', 0.0045120402321099295) +zone = ('mnz036', 0.0024108872904572073) + +[fips2700170384] +centroid = (0.80636134794973724, -1.6274112472579185) +description = Williams township, MN +station = ('k04w', 0.005321332933195878) +zone = ('mnz036', 0.0041679439772100181) + +[fips2700171716] +centroid = (0.81561977857949908, -1.6295855086268829) +description = Workman township, MN +station = ('khzx', 0.0020928909795452184) +zone = ('mnz035', 0.0017536243828488512) + +[fips2700172] +centroid = (0.82552457444444438, -1.6845330811488899) +description = Ada city, MN +station = ('kfar', 0.0073106792239581676) +zone = ('mnz002', 0.00087141385139435674) + +[fips2700190] +centroid = (0.76035891945675926, -1.6182517244368673) +description = Adams city, MN +station = ('kaum', 0.0032344476047261321) +zone = ('mnz094', 0.0018986025163748583) + +[fips2700262] +centroid = (0.76154935617966701, -1.6743552634290551) +description = Adrian city, MN +station = ('kotg', 0.0044319099668156834) +zone = ('mnz089', 0.0023821776438656228) + +[fips27003] +centroid = (0.79018228541008995, -1.6273925198750447) +description = Anoka County, MN +station = ('kane', 0.0021896924077979001) +zone = ('mnz061', 4.7873240510216432e-05) + +[fips2700301486] +centroid = (0.78988556198395843, -1.629006530554119) +description = Andover city, MN +station = ('kane', 0.0023705253615198289) +zone = ('mnz061', 0.0011263879487186756) + +[fips2700301720] +centroid = (0.78914494896916709, -1.6299495319489714) +description = Anoka city, MN +station = ('kmic', 0.0026279897240778739) +zone = ('mnz061', 0.0020307697725822208) + +[fips2700305554] +centroid = (0.79244103816814337, -1.6279546729738197) +description = Bethel city, MN +station = ('kcbg', 0.0028491199829584549) +zone = ('mnz061', 0.0023014107859731041) + +[fips2700306382] +centroid = (0.78837389741222097, -1.6267528217976037) +description = Blaine city, MN +station = ('kane', 0.00038076472161796803) +zone = ('mnz061', 0.0018598055214471257) + +[fips2700310648] +centroid = (0.78825203852384673, -1.6241038483253891) +description = Centerville city, MN +station = ('kane', 0.0020122546377827444) +zone = ('mnz062', 0.002615160774879598) + +[fips2700311494] +centroid = (0.78798325781903966, -1.6256427051268727) +description = Circle Pines city, MN +station = ('kane', 0.00091394264856677965) +zone = ('mnz062', 0.0023474253287252477) + +[fips2700312700] +centroid = (0.78625518987334764, -1.6274627868307299) +description = Columbia Heights city, MN +station = ('kmic', 0.0013093529860238309) +zone = ('mnz062', 0.0019013335290260596) + +[fips2700312718] +centroid = (0.78986187786600881, -1.6251262796545001) +description = Columbus city, MN +station = ('kane', 0.0022440538720865824) +zone = ('mnz061', 0.0016682583280451392) + +[fips2700313114] +centroid = (0.78847711618418403, -1.6285921021232328) +description = Coon Rapids city, MN +station = ('kane', 0.0012542430746578103) +zone = ('mnz061', 0.0018690117473965542) + +[fips2700316] +centroid = (0.78363147131540956, -1.6199990433642089) +description = Afton city, MN +station = ('k21d', 0.0018074313644401766) +zone = ('mnz063', 0.0025632136863473582) + +[fips2700317486] +centroid = (0.79156360879328835, -1.6269557686830256) +description = East Bethel city, MN +station = ('kane', 0.0035474741947471374) +zone = ('mnz061', 0.0014409289831191397) + +[fips2700322814] +centroid = (0.78686853347908348, -1.6276949330745378) +description = Fridley city, MN +station = ('kmic', 0.0011503134143706201) +zone = ('mnz062', 0.0023015831744407494) + +[fips2700326738] +centroid = (0.78984442457348891, -1.6265574670944281) +description = Ham Lake city, MN +station = ('kane', 0.0018477982531347268) +zone = ('mnz061', 0.00071010603421653136) + +[fips2700329258] +centroid = (0.78633303155798662, -1.6275217789594474) +description = Hilltop city, MN +station = ('kmic', 0.0012523053521954774) +zone = ('mnz062', 0.0019649666875913418) + +[fips2700336836] +centroid = (0.78780884706688792, -1.6261469831076514) +description = Lexington city, MN +station = ('kane', 0.00059503130036950888) +zone = ('mnz062', 0.0022908638360774739) + +[fips2700337322] +centroid = (0.78832813487923381, -1.6246389662740508) +description = Lino Lakes city, MN +station = ('kane', 0.001650719942810575) +zone = ('mnz062', 0.0026375313895069617) + +[fips2700337376] +centroid = (0.79195903058862016, -1.6245253627930385) +description = Linwood township, MN +station = ('kcbg', 0.0040486358495807296) +zone = ('mnz061', 0.0027315180914269316) + +[fips2700347536] +centroid = (0.79132399254028207, -1.6312210392156343) +description = Nowthen city, MN +station = ('kpnm', 0.0040430978576403908) +zone = ('mnz061', 0.0028895293984263458) + +[fips2700347690] +centroid = (0.79136921402120119, -1.6287750649887196) +description = Oak Grove city, MN +station = ('kane', 0.0035939320021079507) +zone = ('mnz061', 0.0015187067418167008) + +[fips2700353026] +centroid = (0.78998279427658702, -1.6309820687344514) +description = Ramsey city, MN +station = ('kmic', 0.0036290084644293908) +zone = ('mnz061', 0.0024879142904193552) + +[fips2700356950] +centroid = (0.79227540642212912, -1.6300348960026865) +description = St. Francis city, MN +station = ('kcbg', 0.00339272297928253) +zone = ('mnz061', 0.0027807813522617163) + +[fips2700361996] +centroid = (0.7874215235992853, -1.6274351233620858) +description = Spring Lake Park city, MN +station = ('kane', 0.00069043805482431201) +zone = ('mnz062', 0.0024907665498667634) + +[fips2700460] +centroid = (0.81209463236949098, -1.6354759773990715) +description = Aitkin city, MN +station = ('kait', 0.00044725844632354287) +zone = ('mnz034', 0.0044616847571582264) + +[fips2700496] +centroid = (0.82031204391360824, -1.6533192462870805) +description = Akeley city, MN +station = ('kpkd', 0.0043967895771680485) +zone = ('mnz024', 0.0029307979190153362) + +[fips27005] +centroid = (0.81921616912957351, -1.6710088912943288) +description = Becker County, MN +station = ('kdtl', 0.0024830568649328341) +zone = ('mnz027', 0.0021589544393904331) + +[fips2700502674] +centroid = (0.82068379904428301, -1.6777458273004415) +description = Atlanta township, MN +station = ('kdtl', 0.0043929393462747894) +zone = ('mnz027', 0.0028634303793405899) + +[fips2700502728] +centroid = (0.81791043595627899, -1.6751862670458071) +description = Audubon city, MN +station = ('kdtl', 0.0012754729366964168) +zone = ('mnz027', 0.001450645218938967) + +[fips2700502746] +centroid = (0.81761744753474674, -1.6752222382816906) +description = Audubon township, MN +station = ('kdtl', 0.0012122793255319364) +zone = ('mnz027', 0.0017238106593420385) + +[fips2700508686] +centroid = (0.8161527846797656, -1.671021824184086) +description = Burlington township, MN +station = ('kdtl', 0.0020920758777360359) +zone = ('mnz027', 0.0037184563475874568) + +[fips2700509280] +centroid = (0.81997716759002814, -1.6740767612403142) +description = Callaway city, MN +station = ('kdtl', 0.0026133134440298393) +zone = ('mnz027', 0.00079549385728131363) + +[fips2700509298] +centroid = (0.82091461883785921, -1.6732016007934867) +description = Callaway township, MN +station = ('kdtl', 0.0035238788834587699) +zone = ('mnz027', 0.0018522972434949925) + +[fips2700510126] +centroid = (0.8192630835798671, -1.6642076399052796) +description = Carsonville township, MN +station = ('kpkd', 0.0034743119127980194) +zone = ('mnz028', 0.00075132080783501501) + +[fips2700513294] +centroid = (0.81593243686170125, -1.6773078718312386) +description = Cormorant township, MN +station = ('kdtl', 0.0030017618556482761) +zone = ('mnz027', 0.0038961082454926051) + +[fips2700514230] +centroid = (0.8191584510912101, -1.6774298179860756) +description = Cuba township, MN +station = ('kdtl', 0.0032241503053738224) +zone = ('mnz027', 0.0022257444650714505) + +[fips2700515814] +centroid = (0.81778908321338784, -1.6731300248408623) +description = Detroit township, MN +station = ('kdtl', 0.00046029980194828556) +zone = ('mnz027', 0.0015658594796215564) + +[fips2700515832] +centroid = (0.81689041318153588, -1.6727539762002277) +description = Detroit Lakes city, MN +station = ('kdtl', 0.00070867773101271358) +zone = ('mnz027', 0.0024898610152868268) + +[fips2700517455] +centroid = (0.82231863150133355, -1.6691750563959658) +description = Eagle View township, MN +station = ('kdtl', 0.0057324645338539737) +zone = ('mnz028', 0.0041339260052907518) + +[fips2700519646] +centroid = (0.81772576266812547, -1.6712342831139313) +description = Erie township, MN +station = ('kdtl', 0.0015710111491979064) +zone = ('mnz027', 0.0024805010749959079) + +[fips2700520006] +centroid = (0.81599980657082838, -1.666589211482796) +description = Evergreen township, MN +station = ('kadc', 0.0062504172329385342) +zone = ('mnz028', 0.0032650976450058818) + +[fips2700521671] +centroid = (0.82230575097145386, -1.6643116964352835) +description = Forest township, MN +station = ('kpkd', 0.0051049055950505833) +zone = ('mnz028', 0.0032334445364122001) + +[fips2700522472] +centroid = (0.81557394623334167, -1.6703496455292655) +description = Frazee city, MN +station = ('kdtl', 0.0028132046627604369) +zone = ('mnz027', 0.0044572290536032825) + +[fips2700525820] +centroid = (0.81758905102781676, -1.6621451668749054) +description = Green Valley township, MN +station = ('kpkd', 0.0022188269953756817) +zone = ('mnz028', 0.0026538231758759315) + +[fips2700526684] +centroid = (0.81908050468681604, -1.6752177353322204) +description = Hamden township, MN +station = ('kdtl', 0.0020613079033550172) +zone = ('mnz027', 0.00072264129281401728) + +[fips2700528250] +centroid = (0.81825616822780645, -1.6682821983105229) +description = Height of Land township, MN +station = ('kdtl', 0.0036568455234487294) +zone = ('mnz028', 0.0022256972690995703) + +[fips2700529816] +centroid = (0.81921616912957351, -1.6710088912943288) +description = Holmesville township, MN +station = ('kdtl', 0.0024830568649328341) +zone = ('mnz027', 0.0021589544393904331) + +[fips2700534298] +centroid = (0.81604286384347491, -1.6750884413412328) +description = Lake Eunice township, MN +station = ('kdtl', 0.0017445295649162272) +zone = ('mnz027', 0.0032035177945486807) + +[fips2700534784] +centroid = (0.81827712963212296, -1.677237552515676) +description = Lake Park city, MN +station = ('kdtl', 0.0027164339803747522) +zone = ('mnz027', 0.0022832291790001531) + +[fips2700534802] +centroid = (0.81748735069230305, -1.6776327997780827) +description = Lake Park township, MN +station = ('kdtl', 0.0028424510768208212) +zone = ('mnz027', 0.0029118498740821558) + +[fips2700535144] +centroid = (0.81605480189555857, -1.6731599746908266) +description = Lake View township, MN +station = ('kdtl', 0.0013588285307250694) +zone = ('mnz027', 0.0032048498021085199) + +[fips2700540130] +centroid = (0.82197056048860839, -1.6710932256037849) +description = Maple Grove township, MN +station = ('kdtl', 0.004855995423009493) +zone = ('mnz027', 0.0034878770292135768) + +[fips2700548130] +centroid = (0.82208353565108994, -1.6740391843015188) +description = Ogema city, MN +station = ('kdtl', 0.0047031826152131627) +zone = ('mnz027', 0.0029006690547962082) + +[fips2700548778] +centroid = (0.81904292774802057, -1.66182763912409) +description = Osage township, MN +station = ('kpkd', 0.0018415456819487366) +zone = ('mnz028', 0.0023689977651274738) + +[fips2700551244] +centroid = (0.8206662584853005, -1.6645370184417161) +description = Pine Point township, MN +station = ('kpkd', 0.004192393285206257) +zone = ('mnz028', 0.0016089757329441283) + +[fips2700554142] +centroid = (0.82054911198590663, -1.6754711396863176) +description = Riceville township, MN +station = ('kdtl', 0.0034340226149493498) +zone = ('mnz027', 0.0016280373379652516) + +[fips2700554376] +centroid = (0.81892403591937468, -1.6732934225654341) +description = Richwood township, MN +station = ('kdtl', 0.0015334746498913536) +zone = ('mnz027', 0.00065300586166798383) + +[fips2700556050] +centroid = (0.82142130537300573, -1.6662885785191399) +description = Round Lake township, MN +station = ('kdtl', 0.0063485255747498127) +zone = ('mnz028', 0.0023778136970100472) + +[fips2700556248] +centroid = (0.81602787146520039, -1.6622568330404479) +description = Runeberg township, MN +station = ('kpkd', 0.003272297936526693) +zone = ('mnz028', 0.0037436109600489423) + +[fips2700558756] +centroid = (0.82232791665295413, -1.6626787663871176) +description = Savannah township, MN +station = ('kpkd', 0.0044433977675231266) +zone = ('mnz028', 0.0036503761079830681) + +[fips2700559512] +centroid = (0.81917751008664186, -1.6661607506047238) +description = Shell Lake township, MN +station = ('kdtl', 0.0053102099867891267) +zone = ('mnz028', 0.00059310305177149333) + +[fips2700560430] +centroid = (0.81607724682973926, -1.6686292744855744) +description = Silver Leaf township, MN +station = ('kdtl', 0.0035729534560146031) +zone = ('mnz028', 0.0038209706673273422) + +[fips2700561762] +centroid = (0.82195663276117736, -1.6758109901982658) +description = Spring Creek township, MN +station = ('kdtl', 0.0048302709533638169) +zone = ('mnz027', 0.0029895228787578127) + +[fips2700562212] +centroid = (0.81618095429389281, -1.6642341689099098) +description = Spruce Grove township, MN +station = ('kpkd', 0.0041707269424521637) +zone = ('mnz028', 0.0030487726417128169) + +[fips2700563256] +centroid = (0.82033864273140866, -1.6698097802850385) +description = Sugar Bush township, MN +station = ('kdtl', 0.0038657718430384889) +zone = ('mnz028', 0.0033058673583321527) + +[fips2700565002] +centroid = (0.81775281527153143, -1.666062872540272) +description = Toad Lake township, MN +station = ('kdtl', 0.0050857040887140039) +zone = ('mnz028', 0.0014856361583430731) + +[fips2700566010] +centroid = (0.82065877102280937, -1.6621215351168335) +description = Two Inlets township, MN +station = ('kpkd', 0.0028830199537071073) +zone = ('mnz028', 0.0026427013524826727) + +[fips2700567954] +centroid = (0.82230180652734441, -1.6775906151700617) +description = Walworth township, MN +station = ('kdtl', 0.0056511602694063016) +zone = ('mnz027', 0.0038929256334002101) + +[fips2700570024] +centroid = (0.82231081242628468, -1.6729928245083632) +description = White Earth township, MN +station = ('kdtl', 0.0049261680156193165) +zone = ('mnz027', 0.0032279729320991162) + +[fips2700571338] +centroid = (0.8169870346089263, -1.6641867134075483) +description = Wolf Lake city, MN +station = ('kpkd', 0.0037388461166482758) +zone = ('mnz028', 0.0022843202281019907) + +[fips2700571356] +centroid = (0.81775386246908255, -1.6644015634384688) +description = Wolf Lake township, MN +station = ('kpkd', 0.0036281704860584621) +zone = ('mnz028', 0.0015164370888739243) + +[fips2700622] +centroid = (0.79633558331433618, -1.6504427342402832) +description = Albany city, MN +station = ('kpex', 0.0049731959098467289) +zone = ('mnz049', 0.0014339459101693325) + +[fips2700676] +centroid = (0.79543476652750422, -1.676399096343018) +description = Alberta city, MN +station = ('kmox', 0.0010357914695191509) +zone = ('mnz047', 0.00064389555910135019) + +[fips2700694] +centroid = (0.76191114548031302, -1.6295117859192787) +description = Albert Lea city, MN +station = ('kael', 0.00050784586798559512) +zone = ('mnz093', 0.00039112241264124673) + +[fips27007] +centroid = (0.83564313823617409, -1.6578306256975128) +description = Beltrami County, MN +station = ('kbji', 0.0066414026859096271) +zone = ('mnz017', 0.0048321985859639165) + +[fips2700700586] +centroid = (0.83380281071299367, -1.6593368797485688) +description = Alaska township, MN +station = ('kbji', 0.0050462238557658955) +zone = ('mnz016', 0.0037272601973679952) + +[fips2700703952] +centroid = (0.83702212287817479, -1.6528602770536835) +description = Battle township, MN +station = ('kvwu', 0.0040494710282243784) +zone = ('mnz009', 0.0050893595703229797) + +[fips2700705068] +centroid = (0.82870151001538706, -1.6560032310640898) +description = Bemidji city, MN +station = ('kbji', 0.00068948043887546496) +zone = ('mnz017', 0.0027848988006187441) + +[fips2700705086] +centroid = (0.8278138704644078, -1.6561659655635455) +description = Bemidji township, MN +station = ('kbji', 0.0013145733749308226) +zone = ('mnz017', 0.0036629272248297684) + +[fips2700705284] +centroid = (0.84340875385012015, -1.6672942197808465) +description = Benville township, MN +station = ('ktvf', 0.0088374599619294499) +zone = ('mnz009', 0.0066292175376026401) + +[fips2700705914] +centroid = (0.83112119958376696, -1.6486838263267085) +description = Birch township, MN +station = ('kbji', 0.0059247086983760348) +zone = ('mnz017', 0.0039995311744632266) + +[fips2700706256] +centroid = (0.83288742042690767, -1.6501272834312779) +description = Blackduck city, MN +station = ('kbji', 0.0059759457864663832) +zone = ('mnz017', 0.0033999522712570922) + +[fips2700707918] +centroid = (0.82827730774068986, -1.6489549457727135) +description = Brook Lake UT, MN +station = ('kbji', 0.0054219799619542978) +zone = ('mnz017', 0.004883716671097678) + +[fips2700709082] +centroid = (0.83141980796549064, -1.6600521680359139) +description = Buzzle township, MN +station = ('kbji', 0.003198431287025428) +zone = ('mnz016', 0.0038058933064181095) + +[fips2700713258] +centroid = (0.8358298535595523, -1.6513022739903056) +description = Cormant township, MN +station = ('kvwu', 0.004752102663847413) +zone = ('mnz017', 0.0050256719486997331) + +[fips2700717234] +centroid = (0.8325420895811082, -1.65541278617814) +description = Durand township, MN +station = ('kbji', 0.0036509712583381844) +zone = ('mnz017', 0.0013334360862563065) + +[fips2700717954] +centroid = (0.82982745682243364, -1.65811263599805) +description = Eckles township, MN +station = ('kbji', 0.0011424266487012585) +zone = ('mnz017', 0.0027956617927018313) + +[fips2700722886] +centroid = (0.82837066540237903, -1.6533832824173358) +description = Frohn township, MN +station = ('kbji', 0.0024663510784971397) +zone = ('mnz017', 0.0030663588704233063) + +[fips2700722976] +centroid = (0.83400853267192632, -1.6480594696933926) +description = Funkley city, MN +station = ('kvwu', 0.0065257019587775392) +zone = ('mnz017', 0.0051618386899585159) + +[fips2700725352] +centroid = (0.82819353193659417, -1.6583099629232805) +description = Grant Valley township, MN +station = ('kbji', 0.0012693274828736471) +zone = ('mnz017', 0.0040037755870929517) + +[fips2700726468] +centroid = (0.83315572989281672, -1.6537188045127393) +description = Hagali township, MN +station = ('kbji', 0.0046482373157398192) +zone = ('mnz017', 0.0019285350846397784) + +[fips2700726900] +centroid = (0.84196718170114282, -1.6648614751496618) +description = Hamre township, MN +station = ('ktvf', 0.0097314935816368592) +zone = ('mnz009', 0.0045959046997168431) + +[fips2700729348] +centroid = (0.83264356302381903, -1.6513317351480792) +description = Hines township, MN +station = ('kbji', 0.0052095736790305899) +zone = ('mnz017', 0.0025727422540089105) + +[fips2700730] +centroid = (0.78951797819019587, -1.6347219428023323) +description = Albertville city, MN +station = ('kcfe', 0.0025952758813311458) +zone = ('mnz059', 0.0038492039497329306) + +[fips2700730194] +centroid = (0.83465392052272869, -1.6488505925367365) +description = Hornet township, MN +station = ('kvwu', 0.0058183805691952098) +zone = ('mnz017', 0.0051094794025464485) + +[fips2700732120] +centroid = (0.82848493210850715, -1.659501499203617) +description = Jones township, MN +station = ('kbji', 0.0018415345224997339) +zone = ('mnz017', 0.0043534131890477726) + +[fips2700732606] +centroid = (0.83677547294828292, -1.6483606262558244) +description = Kelliher city, MN +station = ('kvwu', 0.0037703073346025654) +zone = ('mnz017', 0.0068820314457116137) + +[fips2700732624] +centroid = (0.83767114101382145, -1.6488794428292721) +description = Kelliher township, MN +station = ('kvwu', 0.0028227480774667421) +zone = ('mnz009', 0.0069284524149390552) + +[fips2700735324] +centroid = (0.82990782923448803, -1.660027471626998) +description = Lammers township, MN +station = ('kbji', 0.0022869943081691361) +zone = ('mnz016', 0.0047930915173180688) + +[fips2700735540] +centroid = (0.83409707322487991, -1.6518280544274688) +description = Langor township, MN +station = ('kbji', 0.0061101434407247242) +zone = ('mnz017', 0.0033467497983811906) + +[fips2700736170] +centroid = (0.84191595628759675, -1.6671111172890198) +description = Lee township, MN +station = ('ktvf', 0.0083009567879770985) +zone = ('mnz009', 0.0060324871961045176) + +[fips2700736926] +centroid = (0.8315105476333019, -1.6578735957036967) +description = Liberty township, MN +station = ('kbji', 0.002564827893753101) +zone = ('mnz017', 0.0022067340991693048) + +[fips2700738335] +centroid = (0.83564313823617409, -1.6578306256975128) +description = Lower Red Lake UT, MN +station = ('kbji', 0.0066414026859096271) +zone = ('mnz017', 0.0048321985859639165) + +[fips2700740274] +centroid = (0.83296857823712533, -1.6586897814750994) +description = Maple Ridge township, MN +station = ('kbji', 0.0041180616469631412) +zone = ('mnz017', 0.0032017598892071283) + +[fips2700743360] +centroid = (0.84339927671228176, -1.6627955638206611) +description = Minnie township, MN +station = ('krox', 0.010442294051627787) +zone = ('mnz009', 0.004110417126094416) + +[fips2700743936] +centroid = (0.82979680884076867, -1.6489322215858524) +description = Moose Lake township, MN +station = ('kbji', 0.0054343538628005691) +zone = ('mnz017', 0.0041227012568135837) + +[fips2700745088] +centroid = (0.83319946784387178, -1.6558860322048183) +description = Nebish township, MN +station = ('kbji', 0.0042236542178972743) +zone = ('mnz017', 0.0020635916061500855) + +[fips2700746770] +centroid = (0.84571894146122983, -1.665238815333943) +description = North Beltrami UT, MN +station = ('krox', 0.0076386111854351195) +zone = ('mnz009', 0.0069031529540277674) + +[fips2700746906] +centroid = (0.82985065224819266, -1.6554808714722604) +description = Northern township, MN +station = ('kbji', 0.0012603861591036966) +zone = ('mnz017', 0.0015850577259297462) + +[fips2700748040] +centroid = (0.83396404422929293, -1.6540692317199548) +description = O'Brien township, MN +station = ('kbji', 0.0052883621917786915) +zone = ('mnz017', 0.002666032514301538) + +[fips2700752162] +centroid = (0.83125995325930058, -1.6534085896914898) +description = Port Hope township, MN +station = ('kbji', 0.0032425705481810259) +zone = ('mnz017', 0.0008124637630185608) + +[fips2700752828] +centroid = (0.83593994892876822, -1.6531422873542205) +description = Quiring township, MN +station = ('kvwu', 0.0050834424040496025) +zone = ('mnz017', 0.0047212442282008483) + +[fips2700755402] +centroid = (0.83262216528718958, -1.6606628412878941) +description = Roosevelt township, MN +station = ('kbji', 0.004396971576379324) +zone = ('mnz016', 0.0029324089728993692) + +[fips2700759926] +centroid = (0.83577979751660514, -1.6490593164619827) +description = Shooks township, MN +station = ('kvwu', 0.0046846392299981802) +zone = ('mnz017', 0.0058128470584186661) + +[fips2700760070] +centroid = (0.83883647990208554, -1.6510919094555627) +description = Shotley township, MN +station = ('kvwu', 0.0018841109951320677) +zone = ('mnz009', 0.0051117489765122124) + +[fips2700760079] +centroid = (0.83884789435539353, -1.6491305258954641) +description = Shotley Brook UT, MN +station = ('kvwu', 0.0016354904791391217) +zone = ('mnz009', 0.006353964770082903) + +[fips2700761114] +centroid = (0.82939817563961316, -1.6603351033609546) +description = Solway city, MN +station = ('kbji', 0.0023495774321722735) +zone = ('mnz023', 0.0044283916110396046) + +[fips2700762230] +centroid = (0.84340344804919409, -1.6650430242984542) +description = Spruce Grove township, MN +station = ('krox', 0.0098211345159944681) +zone = ('mnz009', 0.0053068603314801411) + +[fips2700762680] +centroid = (0.84194248529222704, -1.6629807432542978) +description = Steenerson township, MN +station = ('ktvf', 0.010923479815407776) +zone = ('mnz009', 0.003410016391060713) + +[fips2700763274] +centroid = (0.82953520143918724, -1.6512491461678749) +description = Sugar Bush township, MN +station = ('kbji', 0.00384920634655636) +zone = ('mnz017', 0.0028874885248842438) + +[fips2700763328] +centroid = (0.83259490324427343, -1.6488609772457858) +description = Summit township, MN +station = ('kbji', 0.0064865073244699464) +zone = ('mnz017', 0.0040754620483116483) + +[fips2700764291] +centroid = (0.83116313984569246, -1.6508206329299251) +description = Taylor township, MN +station = ('kbji', 0.0046227247363099444) +zone = ('mnz017', 0.0025592274968470451) + +[fips2700764390] +centroid = (0.82836391097817386, -1.6510924854142159) +description = Ten Lake township, MN +station = ('kbji', 0.0039807693044313936) +zone = ('mnz017', 0.0037941020689032556) + +[fips2700764444] +centroid = (0.8318148981482647, -1.6525469380930728) +description = Tenstrike city, MN +station = ('kbji', 0.0040456613596784657) +zone = ('mnz017', 0.0014747266783988241) + +[fips2700765758] +centroid = (0.83110404299721996, -1.6556876231754516) +description = Turtle Lake township, MN +station = ('kbji', 0.0022280900578291697) +zone = ('mnz017', 0.00075824577243198388) + +[fips2700765794] +centroid = (0.83057049584488518, -1.653841047373549) +description = Turtle River city, MN +station = ('kbji', 0.0025749475532869858) +zone = ('mnz017', 0.0009140015115068743) + +[fips2700765812] +centroid = (0.82955705296142224, -1.6534524323622999) +description = Turtle River township, MN +station = ('kbji', 0.0023865680403402966) +zone = ('mnz017', 0.0019310296845372814) + +[fips2700766307] +centroid = (0.84155633119522344, -1.6593286417944997) +description = Upper Red Lake UT, MN +station = ('kvwu', 0.0065591588076392843) +zone = ('mnz009', 0.0011867813853837614) + +[fips2700768440] +centroid = (0.84094342392180055, -1.6492326451099981) +description = Waskish township, MN +station = ('kvwu', 0.00056177721086138408) +zone = ('mnz009', 0.0060429399488026196) + +[fips2700770708] +centroid = (0.82913531160097032, -1.6579923653592952) +description = Wilton city, MN +station = ('kbji', 0.00074574097122807089) +zone = ('mnz017', 0.0031610749517256022) + +[fips2700771590] +centroid = (0.83734596872088241, -1.6512876306778814) +description = Woodrow township, MN +station = ('kvwu', 0.0032941852761256738) +zone = ('mnz009', 0.0056921757211695519) + +[fips2700838] +centroid = (0.76214271576546755, -1.633144758570475) +description = Alden city, MN +station = ('kael', 0.0026103561513078849) +zone = ('mnz093', 0.0028224001354393204) + +[fips2700892] +centroid = (0.80938757433977015, -1.6570052769475372) +description = Aldrich city, MN +station = ('ksaz', 0.0016021852706059919) +zone = ('mnz032', 0.0037055922578605569) + +[fips27009] +centroid = (0.79763688335133065, -1.6406346296158985) +description = Benton County, MN +station = ('kstc', 0.0027051417530041754) +zone = ('mnz050', 4.8339941095852159e-05) + +[fips2700900668] +centroid = (0.79901248205458242, -1.639677264161302) +description = Alberta township, MN +station = ('kstc', 0.0042084792900891413) +zone = ('mnz050', 0.0015497867894437131) + +[fips2700921536] +centroid = (0.79698086644538346, -1.6390362570869219) +description = Foley city, MN +station = ('kstc', 0.0026194863131018538) +zone = ('mnz050', 0.0012497334977886897) + +[fips2700923804] +centroid = (0.7982322675190634, -1.6397387521108497) +description = Gilman city, MN +station = ('kstc', 0.0034568091960309488) +zone = ('mnz050', 0.00086807530559900503) + +[fips2700923822] +centroid = (0.79749689049202821, -1.6397127990648726) +description = Gilmanton township, MN +station = ('kstc', 0.0027889850939954038) +zone = ('mnz050', 0.00062147390337276146) + +[fips2700924020] +centroid = (0.79606531907966471, -1.6373636906114435) +description = Glendorado township, MN +station = ('kstc', 0.003073974358758994) +zone = ('mnz050', 0.0027278139074261958) + +[fips2700924812] +centroid = (0.79899815290142351, -1.6418201794169007) +description = Graham township, MN +station = ('kstc', 0.0040076466835129027) +zone = ('mnz050', 0.0016408210660110176) + +[fips2700925298] +centroid = (0.79890284047097215, -1.6373678794016482) +description = Granite Ledge township, MN +station = ('kpnm', 0.0046992528123672864) +zone = ('mnz050', 0.0025993369429466247) + +[fips2700928] +centroid = (0.8006571232620292, -1.6646703790498607) +description = Alexandria city, MN +station = ('kaxn', 0.00029213539152693425) +zone = ('mnz041', 0.0013796823644782069) + +[fips2700935522] +centroid = (0.79902506587848932, -1.6442419459270905) +description = Langola township, MN +station = ('klxl', 0.0034201870623619848) +zone = ('mnz050', 0.0029200286065571169) + +[fips2700941192] +centroid = (0.79751795661609959, -1.6419754962670357) +description = Mayhew Lake township, MN +station = ('kstc', 0.0025439885499502889) +zone = ('mnz050', 0.0009709516965834288) + +[fips2700941264] +centroid = (0.79747317146749352, -1.6375173668520815) +description = Maywood township, MN +station = ('kstc', 0.0037173257908048509) +zone = ('mnz050', 0.0021500853272071433) + +[fips2700942434] +centroid = (0.7960979043767995, -1.641713243093631) +description = Minden township, MN +station = ('kstc', 0.0011122516785215593) +zone = ('mnz050', 0.0016945898805957296) + +[fips2700953998] +centroid = (0.79862576945221808, -1.6448480464164306) +description = Rice city, MN +station = ('klxl', 0.0035971203266360391) +zone = ('mnz050', 0.0031442684127518821) + +[fips2700956176] +centroid = (0.79969895495597687, -1.6457949748021001) +description = Royalton city, MN +station = ('klxl', 0.0023686749921229579) +zone = ('mnz043', 0.003390377641881871) + +[fips2700956896] +centroid = (0.7953763852640251, -1.6423592418096715) +description = St. Cloud city, MN +station = ('kstc', 0.00072158070425675771) +zone = ('mnz050', 0.002544263089978252) + +[fips2700956986] +centroid = (0.79581413129371781, -1.6398252855351636) +description = St. George township, MN +station = ('kstc', 0.0014184765322713048) +zone = ('mnz050', 0.0018639942741059362) + +[fips2700958612] +centroid = (0.79624416296811662, -1.6439418889220876) +description = Sartell city, MN +station = ('kstc', 0.00212544452336379) +zone = ('mnz050', 0.002706433176843057) + +[fips2700958684] +centroid = (0.79578650273165874, -1.6433089452688519) +description = Sauk Rapids city, MN +station = ('kstc', 0.0015025931639127397) +zone = ('mnz050', 0.0026267743958213975) + +[fips2700958702] +centroid = (0.79644356683515705, -1.6434777884206897) +description = Sauk Rapids township, MN +station = ('kstc', 0.0020103082334906783) +zone = ('mnz050', 0.002325656066731633) + +[fips2700968476] +centroid = (0.79750106182894032, -1.6436269268052728) +description = Watab township, MN +station = ('kstc', 0.0029185686637180483) +zone = ('mnz050', 0.0021232639611987844) + +[fips27011] +centroid = (0.7927272372588855, -1.6825362499516832) +description = Big Stone County, MN +station = ('kvvv', 0.002014632720036632) +zone = ('mnz046', 0.00015220814147323875) + +[fips2701100532] +centroid = (0.79001475125519105, -1.6784525111145743) +description = Akron township, MN +station = ('kaqp', 0.0021171834905865301) +zone = ('mnz046', 0.0041013660461099791) + +[fips2701101126] +centroid = (0.79299484859309377, -1.6825373320558192) +description = Almond township, MN +station = ('kvvv', 0.0022799775286121253) +zone = ('mnz046', 0.00019218281749274193) + +[fips2701102350] +centroid = (0.79170510263574756, -1.6784646760594606) +description = Artichoke township, MN +station = ('kaqp', 0.0030904982705194052) +zone = ('mnz046', 0.0031746054539390743) + +[fips2701103718] +centroid = (0.79514032948269286, -1.6852954235128685) +description = Barry city, MN +station = ('keth', 0.0036535454072335822) +zone = ('mnz046', 0.0029414062100064321) + +[fips2701105788] +centroid = (0.79195478943853781, -1.6827395633562481) +description = Big Stone township, MN +station = ('kvvv', 0.0012305260794346535) +zone = ('mnz046', 0.00088092673151313303) + +[fips2701108182] +centroid = (0.79497654778568561, -1.6878212640063546) +description = Browns Valley township, MN +station = ('keth', 0.0043411954565875568) +zone = ('sdz008', 0.0032646078880187272) + +[fips2701111980] +centroid = (0.79354925242998975, -1.683241066263516) +description = Clinton city, MN +station = ('kvvv', 0.0028269208530560756) +zone = ('mnz046', 0.0008123695729578633) + +[fips2701113384] +centroid = (0.78944764142134038, -1.6783545806902447) +description = Correll city, MN +station = ('kaqp', 0.0019494364633122153) +zone = ('mnz054', 0.0041301867826699567) + +[fips2701122058] +centroid = (0.79351232126301752, -1.6872242392291248) +description = Foster township, MN +station = ('kvvv', 0.0041056832708069296) +zone = ('mnz046', 0.0032528899666330381) + +[fips2701124758] +centroid = (0.79532362396073719, -1.6831277245818914) +description = Graceville city, MN +station = ('keth', 0.0036531831009836311) +zone = ('mnz046', 0.0025075078028735163) + +[fips2701124776] +centroid = (0.79474595488491229, -1.6828735173763385) +description = Graceville township, MN +station = ('kvvv', 0.0040149975705230734) +zone = ('mnz046', 0.0019152997219727744) + +[fips2701139608] +centroid = (0.79321880924270971, -1.6809607935957853) +description = Malta township, MN +station = ('kvvv', 0.0028443687977454234) +zone = ('mnz046', 0.0012722110294021499) + +[fips2701143828] +centroid = (0.7949840701547618, -1.6809793115391489) +description = Moonshine township, MN +station = ('kmox', 0.0042435584222964918) +zone = ('mnz046', 0.0024608409420006751) + +[fips2701148058] +centroid = (0.7899717987022995, -1.6812912716896504) +description = Odessa city, MN +station = ('kvvv', 0.0013770665393499002) +zone = ('mnz046', 0.0030271448863391608) + +[fips2701148076] +centroid = (0.79034929596621328, -1.6808062621438138) +description = Odessa township, MN +station = ('kvvv', 0.0015379219095306069) +zone = ('mnz046', 0.002816005828047106) + +[fips2701148724] +centroid = (0.79047553563101003, -1.68278078803318) +description = Ortonville township, MN +station = ('kvvv', 0.00027472400875943367) +zone = ('mnz046', 0.0023603496744138649) + +[fips2701149120] +centroid = (0.7917290485530849, -1.6807237429767796) +description = Otrey township, MN +station = ('kvvv', 0.0018407284891978353) +zone = ('mnz046', 0.00176873696375099) + +[fips2701152576] +centroid = (0.79301450100047122, -1.6850666632078095) +description = Prior township, MN +station = ('kvvv', 0.0027348778432297674) +zone = ('mnz046', 0.0016779173947686918) + +[fips2701162] +centroid = (0.76165075980920782, -1.655827616034754) +description = Alpha city, MN +station = ('kmjq', 0.0014191208849828306) +zone = ('mnz090', 0.0036141625253494907) + +[fips2701165200] +centroid = (0.79476489170729636, -1.6853736317166503) +description = Toqua township, MN +station = ('keth', 0.004032440211753769) +zone = ('mnz046', 0.0026956425833418556) + +[fips2701234] +centroid = (0.76906655908117671, -1.6047186159498283) +description = Altura city, MN +station = ('kona', 0.0030726739572827398) +zone = ('mnz088', 0.0024668312701644677) + +[fips2701252] +centroid = (0.84112444947181741, -1.6929412048203725) +description = Alvarado city, MN +station = ('kgfk', 0.0047562603799905651) +zone = ('mnz007', 0.003966326764693235) + +[fips27013] +centroid = (0.76861202298407982, -1.6417277467797151) +description = Blue Earth County, MN +station = ('kmkt', 0.0036207171228189979) +zone = ('mnz083', 7.3805591305507951e-05) + +[fips2701301324] +centroid = (0.76598764120102603, -1.6433692289412156) +description = Amboy city, MN +station = ('kfrm', 0.0052775779037576168) +zone = ('mnz083', 0.0028047986071965975) + +[fips2701304330] +centroid = (0.76756716417408088, -1.6397072140112663) +description = Beauford township, MN +station = ('kmkt', 0.0041781130792462413) +zone = ('mnz083', 0.001785368493468069) + +[fips2701309046] +centroid = (0.77050959730672564, -1.6458777034086445) +description = Butternut Valley township, MN +station = ('kulm', 0.003862001745285643) +zone = ('mnz075', 0.0036087049037516858) + +[fips2701309352] +centroid = (0.77182290520897379, -1.6461489973875747) +description = Cambria township, MN +station = ('kulm', 0.0028155157099395128) +zone = ('mnz075', 0.0023959018925647792) + +[fips2701310756] +centroid = (0.76755068826594208, -1.6459251589110062) +description = Ceresco township, MN +station = ('kjyg', 0.003187355245928533) +zone = ('mnz082', 0.0038876432927002678) + +[fips2701314752] +centroid = (0.76609058072030867, -1.6378341441113187) +description = Danville township, MN +station = ('kacq', 0.0047851728791884537) +zone = ('mnz083', 0.0037565158303122189) + +[fips2701315130] +centroid = (0.76920978079959534, -1.6397037582593472) +description = Decoria township, MN +station = ('kmkt', 0.0025472518503920375) +zone = ('mnz083', 0.0016324385060710223) + +[fips2701317378] +centroid = (0.77077380524889261, -1.6385779336253483) +description = Eagle Lake city, MN +station = ('kmkt', 0.0010386129714208307) +zone = ('mnz083', 0.0032001257676850842) + +[fips2701323102] +centroid = (0.7690814990995738, -1.6439903567154155) +description = Garden City township, MN +station = ('kmkt', 0.0043630421615766194) +zone = ('mnz083', 0.0016751893747161434) + +[fips2701324] +centroid = (0.76598764120102603, -1.6433692289412156) +description = Amboy city, MN +station = ('kfrm', 0.0052775779037576168) +zone = ('mnz083', 0.0028047986071965975) + +[fips2701324506] +centroid = (0.7680618602972662, -1.641834491116767) +description = Good Thunder city, MN +station = ('kmkt', 0.0041388333296117977) +zone = ('mnz083', 0.00048843351690790768) + +[fips2701331688] +centroid = (0.77177321568516943, -1.637614826037513) +description = Jamestown township, MN +station = ('kmkt', 0.0011048610371795068) +zone = ('mnz076', 0.0029247655793217023) + +[fips2701332210] +centroid = (0.77059735246151584, -1.6439465838577756) +description = Judson township, MN +station = ('kmkt', 0.0036167589860504525) +zone = ('mnz083', 0.002572293531461814) + +[fips2701334190] +centroid = (0.76978453517556955, -1.6444342288507825) +description = Lake Crystal city, MN +station = ('kulm', 0.0050931994629380209) +zone = ('mnz083', 0.0022720621611560595) + +[fips2701336584] +centroid = (0.77056982861921197, -1.6375014145427185) +description = Le Ray township, MN +station = ('kmkt', 0.0016564793773412221) +zone = ('mnz076', 0.0040246795117996606) + +[fips2701337052] +centroid = (0.77175445339571069, -1.639795056432519) +description = Lime township, MN +station = ('kmkt', 0.00045954315134357447) +zone = ('mnz083', 0.0035082492517048191) + +[fips2701337124] +centroid = (0.76893201164914049, -1.6458975303489471) +description = Lincoln township, MN +station = ('kjyg', 0.003427518063603213) +zone = ('mnz083', 0.0029839009915545388) + +[fips2701338870] +centroid = (0.7672043800357613, -1.6417389692468054) +description = Lyra township, MN +station = ('kmkt', 0.0048880940480988044) +zone = ('mnz083', 0.0013447085092998512) + +[fips2701339176] +centroid = (0.76919635921764751, -1.6376336406868495) +description = McPherson township, MN +station = ('kmkt', 0.0027555605448851602) +zone = ('mnz084', 0.0031592711359804465) + +[fips2701339320] +centroid = (0.77151914810595668, -1.6374019656819396) +description = Madison Lake city, MN +station = ('kmkt', 0.0012735595092266644) +zone = ('mnz076', 0.003100995114797684) + +[fips2701339878] +centroid = (0.77092193134250919, -1.6402519836306912) +description = Mankato city, MN +station = ('kmkt', 0.0011250580263469187) +zone = ('mnz083', 0.0026147488687777148) + +[fips2701339896] +centroid = (0.77044208797125846, -1.6397246149439086) +description = Mankato township, MN +station = ('kmkt', 0.0013477180844714064) +zone = ('mnz083', 0.0024011419830985122) + +[fips2701340310] +centroid = (0.76665248947298825, -1.6398073435504532) +description = Mapleton city, MN +station = ('kmkt', 0.0050955254522918134) +zone = ('mnz083', 0.0023689661525570275) + +[fips2701340328] +centroid = (0.76605441749820735, -1.6393729660062168) +description = Mapleton township, MN +station = ('kmkt', 0.0056741616949397685) +zone = ('mnz083', 0.003037263930897414) + +[fips2701341498] +centroid = (0.76755021702704396, -1.6378318577299982) +description = Medo township, MN +station = ('kacq', 0.0039810262727849235) +zone = ('mnz084', 0.003277587457952516) + +[fips2701343198] +centroid = (0.76532082070700913, -1.6377443818278885) +description = Minnesota Lake city, MN +station = ('kacq', 0.0052784475877741604) +zone = ('mnz092', 0.003377065394008102) + +[fips2701347068] +centroid = (0.77115755079152848, -1.6408797611093411) +description = North Mankato city, MN +station = ('kmkt', 0.0013610371105103253) +zone = ('mnz083', 0.0026877864066803645) + +[fips2701350200] +centroid = (0.76809317150404688, -1.636830754324347) +description = Pemberton city, MN +station = ('kacq', 0.003104693779191591) +zone = ('mnz084', 0.0024739683728989179) + +[fips2701351604] +centroid = (0.76595098928673411, -1.6461067778729688) +description = Pleasant Mound township, MN +station = ('kjyg', 0.003524025311787889) +zone = ('mnz082', 0.0040920537944574998) + +[fips2701353206] +centroid = (0.76892887005648691, -1.6417127893080254) +description = Rapidan township, MN +station = ('kmkt', 0.0033460184692322417) +zone = ('mnz083', 0.00038322870646117601) + +[fips2701356824] +centroid = (0.7693814513848215, -1.638147849591072) +description = St. Clair city, MN +station = ('kmkt', 0.002453804087972954) +zone = ('mnz084', 0.0035659765949342197) + +[fips2701359458] +centroid = (0.76595807532349725, -1.6437476861362181) +description = Shelby township, MN +station = ('kfrm', 0.00508940421536577) +zone = ('mnz083', 0.0029523715558179855) + +[fips2701360754] +centroid = (0.77040390016722482, -1.6411962416626054) +description = Skyline city, MN +station = ('kmkt', 0.0019728101766628256) +zone = ('mnz083', 0.0019020371134002261) + +[fips2701361240] +centroid = (0.77039964156384999, -1.6422537192030959) +description = South Bend township, MN +station = ('kmkt', 0.0025882059970559709) +zone = ('mnz083', 0.0018818236306778226) + +[fips2701362716] +centroid = (0.76610435136810684, -1.6418478603388373) +description = Sterling township, MN +station = ('kmkt', 0.0059458124941300632) +zone = ('mnz083', 0.0024448826043342638) + +[fips2701366910] +centroid = (0.76728801621351694, -1.6435221197836904) +description = Vernon Center city, MN +station = ('kmkt', 0.005434884592101898) +zone = ('mnz083', 0.0017773257349602586) + +[fips2701366928] +centroid = (0.76770748864594118, -1.643953984053804) +description = Vernon Center township, MN +station = ('kjyg', 0.0046015309968084487) +zone = ('mnz083', 0.0017751221320544553) + +[fips2701486] +centroid = (0.78988556198395843, -1.629006530554119) +description = Andover city, MN +station = ('kane', 0.0023705253615198289) +zone = ('mnz061', 0.0011263879487186756) + +[fips27015] +centroid = (0.77224784052195683, -1.6534140525720487) +description = Brown County, MN +station = ('kulm', 0.0031656109270820788) +zone = ('mnz074', 0.00010742096732912344) + +[fips2701500748] +centroid = (0.77063946725636656, -1.6523290162826689) +description = Albin township, MN +station = ('kjyg', 0.0032589157815402885) +zone = ('mnz074', 0.0016847484212552679) + +[fips2701503826] +centroid = (0.77061026789798059, -1.6565694158734365) +description = Bashaw township, MN +station = ('kmwm', 0.0048418267116741801) +zone = ('mnz074', 0.0028095486061151063) + +[fips2701508776] +centroid = (0.77204189167022153, -1.6567988568569039) +description = Burnstown township, MN +station = ('kulm', 0.0055312203447269101) +zone = ('mnz074', 0.0025026785830246589) + +[fips2701512394] +centroid = (0.77287584489340955, -1.6553842500448699) +description = Cobden city, MN +station = ('kulm', 0.0043694376785476143) +zone = ('mnz074', 0.0016443453652699796) + +[fips2701512772] +centroid = (0.76988775394753262, -1.6563754225270775) +description = Comfrey city, MN +station = ('kmwm', 0.0043167859398329823) +zone = ('mnz074', 0.0031690165624057806) + +[fips2701513546] +centroid = (0.77208964387855616, -1.6483343415972891) +description = Cottonwood township, MN +station = ('kulm', 0.0015571361701618982) +zone = ('mnz075', 0.0031310311574629149) + +[fips2701518026] +centroid = (0.77527390983235711, -1.6548419238863978) +description = Eden township, MN +station = ('kulm', 0.0043288286725194436) +zone = ('mnz074', 0.0032913066489360637) + +[fips2701519880] +centroid = (0.77413668819834269, -1.655202177297302) +description = Evan city, MN +station = ('kulm', 0.0042480836042555212) +zone = ('mnz074', 0.0023874949567969607) + +[fips2701527008] +centroid = (0.77054144956557447, -1.6492397136934687) +description = Hanska city, MN +station = ('kulm', 0.0029311117247675482) +zone = ('mnz082', 0.0033321594874073605) + +[fips2701529960] +centroid = (0.77411141583077381, -1.652623645313698) +description = Home township, MN +station = ('kulm', 0.0024368909276273817) +zone = ('mnz074', 0.0020023426928619894) + +[fips2701534442] +centroid = (0.77086599353998297, -1.6502118969934148) +description = Lake Hanska township, MN +station = ('kulm', 0.0026802176717274852) +zone = ('mnz074', 0.0025757316198575038) + +[fips2701536116] +centroid = (0.77218343787255828, -1.6544970293729111) +description = Leavenworth township, MN +station = ('kulm', 0.0039130384669657532) +zone = ('mnz074', 0.00085029677146500934) + +[fips2701537214] +centroid = (0.77054155428532956, -1.6481650621131383) +description = Linden township, MN +station = ('kulm', 0.0030479673818915483) +zone = ('mnz082', 0.0037439621330164858) + +[fips2701542182] +centroid = (0.77368442102927337, -1.6505280633874133) +description = Milford township, MN +station = ('kulm', 0.00087883907292718932) +zone = ('mnz074', 0.0025018679959823648) + +[fips2701544746] +centroid = (0.77048114843991822, -1.6547280935125828) +description = Mulligan township, MN +station = ('kjyg', 0.0041944173124177486) +zone = ('mnz074', 0.0019714690851375407) + +[fips2701546042] +centroid = (0.77338598718047491, -1.6487531857111828) +description = New Ulm city, MN +station = ('kulm', 0.00042584227752949841) +zone = ('mnz074', 0.0034818606665641544) + +[fips2701547248] +centroid = (0.77217471122629822, -1.6591379122138417) +description = North Star township, MN +station = ('krwf', 0.0053763064035963074) +zone = ('mnz073', 0.0037007421866187117) + +[fips2701552342] +centroid = (0.77350706067068564, -1.6545437867435722) +description = Prairieville township, MN +station = ('kulm', 0.0037261155937828609) +zone = ('mnz074', 0.0016021232890963621) + +[fips2701558] +centroid = (0.86130413826959351, -1.6593057605280059) +description = Angle Inlet CDP, MN +station = ('kfgn', 0.0020279313908602328) +zone = ('mnz006', 0.010251465147609993) + +[fips2701560160] +centroid = (0.77241336754821599, -1.6503533559292889) +description = Sigel township, MN +station = ('kulm', 0.00128468447757203) +zone = ('mnz074', 0.0021319679366491083) + +[fips2701560844] +centroid = (0.77316186945122634, -1.6532642160557649) +description = Sleepy Eye city, MN +station = ('kulm', 0.0028279482790598202) +zone = ('mnz074', 0.00099210438590010804) + +[fips2701561816] +centroid = (0.77208428571775245, -1.6577378439944768) +description = Springfield city, MN +station = ('krwf', 0.005605984803780259) +zone = ('mnz074', 0.0031732124626312427) + +[fips2701562518] +centroid = (0.77195087274972995, -1.6524493218280087) +description = Stark township, MN +station = ('kulm', 0.0026985068904604487) +zone = ('mnz074', 0.00065470924328384149) + +[fips2701562590] +centroid = (0.7707243600711835, -1.6586024102927446) +description = Stately township, MN +station = ('kmwm', 0.0044037449357157178) +zone = ('mnz081', 0.0032560647952619192) + +[fips2701684] +centroid = (0.78993628125202142, -1.6427103322420027) +description = Annandale city, MN +station = ('kmgg', 0.0017082876821245573) +zone = ('mnz059', 0.0024499664990416236) + +[fips27017] +centroid = (0.81339006810019865, -1.6174148390605358) +description = Carlton County, MN +station = ('kcoq', 0.0026489913392888785) +zone = ('mnz037', 0.0027997644396901195) + +[fips2701702656] +centroid = (0.81365977382950938, -1.6166238034836546) +description = Atkinson township, MN +station = ('kcoq', 0.0020623318758694136) +zone = ('mnz037', 0.0023732891807562158) + +[fips2701703016] +centroid = (0.81272581324018223, -1.623584351073533) +description = Automba township, MN +station = ('kmzh', 0.0037483569163053411) +zone = ('mnz035', 0.0065476390962830354) + +[fips2701703628] +centroid = (0.81167055226784135, -1.6177218075693767) +description = Barnum city, MN +station = ('kmzh', 0.0020458820384606797) +zone = ('mnz037', 0.0044913029939446028) + +[fips2701703646] +centroid = (0.81133450657366246, -1.6165530652890714) +description = Barnum township, MN +station = ('kmzh', 0.0024626450614793995) +zone = ('mnz037', 0.0046615542028917833) + +[fips2701705518] +centroid = (0.81521337866317212, -1.6236134282588714) +description = Beseman township, MN +station = ('khzx', 0.0037393353636236658) +zone = ('mnz035', 0.0051201978594755107) + +[fips2701706328] +centroid = (0.81226033392867525, -1.6142173260577124) +description = Blackhoof township, MN +station = ('kcoq', 0.0028122072246146968) +zone = ('mnz037', 0.0038702478028238398) + +[fips2701710018] +centroid = (0.81430017003865118, -1.6130081968585155) +description = Carlton city, MN +station = ('kcoq', 0.001241665342138158) +zone = ('mnz037', 0.0025542806651940248) + +[fips2701711750] +centroid = (0.81092129987325268, -1.6142692845095443) +description = Clear Creek UT, MN +station = ('kcoq', 0.0041489235172594762) +zone = ('mnz037', 0.005160315631765092) + +[fips2701712160] +centroid = (0.81550615764519419, -1.6144530327731941) +description = Cloquet city, MN +station = ('kcoq', 0.00043769301229097391) +zone = ('mnz037', 0.0010497298355612171) + +[fips2701713780] +centroid = (0.81470819311118237, -1.6209001917635986) +description = Cromwell city, MN +station = ('kcoq', 0.0044531454671265149) +zone = ('mnz037', 0.0036995002530525309) + +[fips2701717332] +centroid = (0.8140902941960988, -1.6210981644606521) +description = Eagle township, MN +station = ('kmzh', 0.0040872459280844667) +zone = ('mnz037', 0.0040740345756639556) + +[fips2701720] +centroid = (0.78914494896916709, -1.6299495319489714) +description = Anoka city, MN +station = ('kmic', 0.0026279897240778739) +zone = ('mnz061', 0.0020307697725822208) + +[fips2701729942] +centroid = (0.81087103439079533, -1.6113972405056325) +description = Holyoke township, MN +station = ('kcoq', 0.004686678913270393) +zone = ('mnz037', 0.0059377525627654151) + +[fips2701732264] +centroid = (0.81243287717852741, -1.6208098011616379) +description = Kalevala township, MN +station = ('kmzh', 0.0024399318437141743) +zone = ('mnz037', 0.0049196887194764526) + +[fips2701732966] +centroid = (0.8113357283041388, -1.6210207940149115) +description = Kettle River city, MN +station = ('kmzh', 0.001530015890543064) +zone = ('mnz037', 0.0058475243779878994) + +[fips2701735162] +centroid = (0.8137901324713408, -1.6227651284292322) +description = Lakeview township, MN +station = ('kmzh', 0.0042416569175090001) +zone = ('mnz035', 0.0063182253472633225) + +[fips2701739464] +centroid = (0.8125342109948982, -1.6167269175358625) +description = Mahtowa township, MN +station = ('kcoq', 0.0029854711129425442) +zone = ('mnz037', 0.0034901681001620628) + +[fips2701743954] +centroid = (0.81071796901539539, -1.6189605724592722) +description = Moose Lake city, MN +station = ('kmzh', 0.0007676358576215169) +zone = ('mnz037', 0.0056754435566744137) + +[fips2701743972] +centroid = (0.810594696410327, -1.6179003547518558) +description = Moose Lake township, MN +station = ('kmzh', 0.0013046378819433157) +zone = ('mnz037', 0.0055601592716459855) + +[fips2701746820] +centroid = (0.8152043204043542, -1.6192468762697694) +description = North Carlton UT, MN +station = ('kcoq', 0.0033063460088593503) +zone = ('mnz037', 0.0024654338135282486) + +[fips2701750446] +centroid = (0.81552191796833962, -1.6166392671008274) +description = Perch Lake township, MN +station = ('kcoq', 0.0015814115321710238) +zone = ('mnz037', 0.0007138922851344378) + +[fips2701758936] +centroid = (0.81518185801688114, -1.6132062044621545) +description = Scanlon city, MN +station = ('kcoq', 0.00084653691390057734) +zone = ('mnz037', 0.0019618036341638558) + +[fips2701760232] +centroid = (0.81108466269123936, -1.620822158092742) +description = Silver township, MN +station = ('kmzh', 0.0012484769090629173) +zone = ('mnz037', 0.0059692295451962826) + +[fips2701760268] +centroid = (0.81351316617234193, -1.6117648417526875) +description = Silver Brook township, MN +station = ('kcoq', 0.0024010792462589837) +zone = ('mnz037', 0.0037150552087775435) + +[fips2701760664] +centroid = (0.81240144379869905, -1.6190705805620256) +description = Skelton township, MN +station = ('kmzh', 0.0023143322814558479) +zone = ('mnz037', 0.0042054619824986404) + +[fips2701761708] +centroid = (0.81092960764049216, -1.623008252794035) +description = Split Rock township, MN +station = ('kmzh', 0.0024404366893378982) +zone = ('mnz036', 0.0051496324110864604) + +[fips2701764750] +centroid = (0.81452254243864775, -1.6127112116329962) +description = Thomson city, MN +station = ('kcoq', 0.0012992147352363047) +zone = ('mnz037', 0.0025805781333063556) + +[fips2701764768] +centroid = (0.81531015717019517, -1.6119999201496387) +description = Thomson township, MN +station = ('kcoq', 0.0016834736664656546) +zone = ('mnz037', 0.0027050275670659749) + +[fips2701765902] +centroid = (0.81368874629509247, -1.6141922456763611) +description = Twin Lakes township, MN +station = ('kcoq', 0.0013895924180511486) +zone = ('mnz037', 0.0025415802431489856) + +[fips2701771788] +centroid = (0.81370206315728522, -1.6124060233599926) +description = Wrenshall city, MN +station = ('kcoq', 0.0019484813248722842) +zone = ('mnz037', 0.0032633776725311042) + +[fips2701771806] +centroid = (0.81245067953689787, -1.612162602289217) +description = Wrenshall township, MN +station = ('kcoq', 0.0030460157910581001) +zone = ('mnz037', 0.0043255300823552357) + +[fips2701771824] +centroid = (0.81458287847088928, -1.6232813444620946) +description = Wright city, MN +station = ('kmzh', 0.0051058134158209652) +zone = ('mnz035', 0.0056041233670493752) + +[fips2701864] +centroid = (0.78888414441904153, -1.6759230054296588) +description = Appleton city, MN +station = ('kaqp', 0.00053880214836839104) +zone = ('mnz054', 0.0040161538378172337) + +[fips27019] +centroid = (0.78228067374082855, -1.6371288740138801) +description = Carver County, MN +station = ('kgyl', 0.0036568929321675113) +zone = ('mnz068', 2.589885260474378e-05) + +[fips2701900] +centroid = (0.78095284469920379, -1.6266351342461416) +description = Apple Valley city, MN +station = ('klvn', 0.0020819293224777833) +zone = ('mnz070', 0.0020969454883310993) + +[fips2701905266] +centroid = (0.78109154601485975, -1.6377992375262784) +description = Benton township, MN +station = ('kgyl', 0.0030013548399120482) +zone = ('mnz068', 0.0012626375955500121) + +[fips2701909406] +centroid = (0.78281523318412938, -1.6397238644523304) +description = Camden township, MN +station = ('kgyl', 0.0023382594135478042) +zone = ('mnz068', 0.0018962584094294795) + +[fips2701910144] +centroid = (0.78109768957382686, -1.6343027670758807) +description = Carver city, MN +station = ('kfcm', 0.0024964016377387868) +zone = ('mnz069', 0.0022366111852598403) + +[fips2701910918] +centroid = (0.78285495687790474, -1.6329716568152621) +description = Chanhassen city, MN +station = ('kfcm', 0.0012031070267545382) +zone = ('mnz060', 0.0028269956428811018) + +[fips2701910972] +centroid = (0.78214680698720052, -1.6337929913079583) +description = Chaska city, MN +station = ('kfcm', 0.0017528165476305428) +zone = ('mnz069', 0.0030266374293761601) + +[fips2701912664] +centroid = (0.78138134048386088, -1.6369684957089143) +description = Cologne city, MN +station = ('kgyl', 0.0035983572567381216) +zone = ('mnz068', 0.00089978426913861389) + +[fips2701914482] +centroid = (0.78119881395068735, -1.6352659270235939) +description = Dahlgren township, MN +station = ('kfcm', 0.0030466383676186386) +zone = ('mnz068', 0.0017205229623175108) + +[fips2701926666] +centroid = (0.78072925056873088, -1.6399646675292279) +description = Hamburg city, MN +station = ('kgyl', 0.0015204260220189833) +zone = ('mnz068', 0.0025164080389196665) + +[fips2701926918] +centroid = (0.78029131255282036, -1.6375943009655094) +description = Hancock township, MN +station = ('kgyl', 0.0032605128730020133) +zone = ('mnz068', 0.0020028282532974719) + +[fips2701929726] +centroid = (0.78421397495326262, -1.6396645930709324) +description = Hollywood township, MN +station = ('kgyl', 0.0034987679777051849) +zone = ('mnz068', 0.0026307344220725909) + +[fips2701935108] +centroid = (0.78284113387022902, -1.6358399658145748) +description = Laketown township, MN +station = ('kfcm', 0.0031952223575414719) +zone = ('mnz068', 0.0010977553513650258) + +[fips2701941138] +centroid = (0.78346083047444204, -1.6387713161064692) +description = Mayer city, MN +station = ('kgyl', 0.0032719720678179836) +zone = ('mnz068', 0.0016484998473342643) + +[fips2701945556] +centroid = (0.78343105515740308, -1.6401242953426154) +description = New Germany city, MN +station = ('kgyl', 0.0026570540584192619) +zone = ('mnz068', 0.0023990318073514789) + +[fips2701947520] +centroid = (0.78143493954518972, -1.6392308962051045) +description = Norwood Young America city, MN +station = ('kgyl', 0.0020055249639610458) +zone = ('mnz068', 0.0016889567498040022) + +[fips2701958486] +centroid = (0.78010124619727816, -1.6354373707160172) +description = San Francisco township, MN +station = ('kfcm', 0.0037382411894689724) +zone = ('mnz069', 0.0022474018361561352) + +[fips2701967036] +centroid = (0.78302181035439533, -1.6346088105602181) +description = Victoria city, MN +station = ('kfcm', 0.002365715918426096) +zone = ('mnz068', 0.001960345405944819) + +[fips2701967432] +centroid = (0.78262185070300849, -1.6370230547013316) +description = Waconia city, MN +station = ('kgyl', 0.003845763420613491) +zone = ('mnz068', 0.00036496544466566044) + +[fips2701967450] +centroid = (0.78300980248914176, -1.6378751768020328) +description = Waconia township, MN +station = ('kgyl', 0.0034869631637538608) +zone = ('mnz068', 0.00089548536083656203) + +[fips2701968548] +centroid = (0.78470376670124986, -1.6378854044314495) +description = Watertown city, MN +station = ('kcfe', 0.0034675473673571656) +zone = ('mnz068', 0.0024865515433272474) + +[fips2701968566] +centroid = (0.78412222299448531, -1.6374073762026207) +description = Watertown township, MN +station = ('kcfe', 0.0040622645912016964) +zone = ('mnz068', 0.0018598052566370521) + +[fips2701972] +centroid = (0.77458364956648595, -1.6786660521485557) +description = Arco city, MN +station = ('kcnb', 0.0059665074300641547) +zone = ('mnz071', 0.0012178662157019922) + +[fips2701972130] +centroid = (0.78116933533962118, -1.6398002051538125) +description = Young America township, MN +station = ('kgyl', 0.0015801814473963708) +zone = ('mnz068', 0.0021718760120557987) + +[fips2702026] +centroid = (0.78664015714645996, -1.6260447940799472) +description = Arden Hills city, MN +station = ('kane', 0.0015134474753421732) +zone = ('mnz062', 0.0012469146539852364) + +[fips27021] +centroid = (0.81945698965976377, -1.6464349346789287) +description = Cass County, MN +station = ('kxvg', 0.00168896032784852) +zone = ('mnz025', 0.0029119457997086712) + +[fips2702101738] +centroid = (0.81452793550603642, -1.653124537355728) +description = Ansel township, MN +station = ('ksaz', 0.0051435018142814565) +zone = ('mnz033', 0.0026883038312759183) + +[fips2702103124] +centroid = (0.81717792126921707, -1.6495928287077322) +description = Backus city, MN +station = ('kpwc', 0.0022921731823066348) +zone = ('mnz033', 0.0044948027848089609) + +[fips2702103538] +centroid = (0.81624841126948233, -1.64713814528785) +description = Barclay township, MN +station = ('kpwc', 0.000752036482987353) +zone = ('mnz033', 0.0041356737480679985) + +[fips2702104600] +centroid = (0.81008685795787427, -1.6531382032837709) +description = Becker township, MN +station = ('ksaz', 0.0012204671949808058) +zone = ('mnz033', 0.0032892954285633695) + +[fips2702105104] +centroid = (0.82623820466899989, -1.6442117691843234) +description = Bena city, MN +station = ('kxvg', 0.0061032134699488009) +zone = ('mnz025', 0.0041334106760155922) + +[fips2702105572] +centroid = (0.81789952764845408, -1.6380437407011905) +description = Beulah township, MN +station = ('kxvg', 0.004742469319005866) +zone = ('mnz025', 0.0061984372780387832) + +[fips2702106040] +centroid = (0.81954914304426896, -1.6484395325913068) +description = Birch Lake township, MN +station = ('kpwc', 0.0041178674854740775) +zone = ('mnz025', 0.0036186711406391344) + +[fips2702106454] +centroid = (0.81766539172929897, -1.6440440604964994) +description = Blind Lake township, MN +station = ('kxvg', 0.0024711230286120003) +zone = ('mnz025', 0.0044752261535724114) + +[fips2702107156] +centroid = (0.82239015509408031, -1.644589022102142) +description = Boy Lake township, MN +station = ('kxvg', 0.0022732584010404866) +zone = ('mnz025', 0.00028240092268189587) + +[fips2702107174] +centroid = (0.82324109037089011, -1.642777370338572) +description = Boy River city, MN +station = ('kxvg', 0.0032471902049865148) +zone = ('mnz025', 0.0017241082948678038) + +[fips2702107192] +centroid = (0.82407752196161588, -1.6421779021003893) +description = Boy River township, MN +station = ('kxvg', 0.0041686944996552813) +zone = ('mnz025', 0.002604100586560788) + +[fips2702108560] +centroid = (0.81622559981615872, -1.6511567833438594) +description = Bull Moose township, MN +station = ('kpwc', 0.0027361142591820192) +zone = ('mnz033', 0.0035749314546034286) + +[fips2702108596] +centroid = (0.81441586791476583, -1.6509202912302141) +description = Bungo township, MN +station = ('kpwc', 0.0027085375515093265) +zone = ('mnz033', 0.0017716766681194244) + +[fips2702109136] +centroid = (0.81161653432749215, -1.653095041291369) +description = Byron township, MN +station = ('ksaz', 0.0023859588031338716) +zone = ('mnz033', 0.0022414650987801579) + +[fips2702110252] +centroid = (0.8269173995474135, -1.6510625181109591) +description = Cass Lake city, MN +station = ('kbji', 0.0044781538404585633) +zone = ('mnz017', 0.0050153638549549524) + +[fips2702111296] +centroid = (0.81583593760735851, -1.6472579097811217) +description = Chickamaw Beach city, MN +station = ('kpwc', 0.00033240010808891922) +zone = ('mnz033', 0.0037428833333293505) + +[fips2702113834] +centroid = (0.81729372386508681, -1.6403612586951586) +description = Crooked Lake township, MN +station = ('kxvg', 0.0038518168976267725) +zone = ('mnz025', 0.0056607588606390905) + +[fips2702115220] +centroid = (0.81765584477829067, -1.6508993647324828) +description = Deerfield township, MN +station = ('kpwc', 0.0032685797200146883) +zone = ('mnz033', 0.004970419306731302) + +[fips2702117495] +centroid = (0.82195441619302734, -1.637975411060975) +description = East Cass UT, MN +station = ('kxvg', 0.00459547775713323) +zone = ('mnz026', 0.0052991218122501061) + +[fips2702117630] +centroid = (0.80990721121796649, -1.6468370934451733) +description = East Gull Lake city, MN +station = ('kbrd', 0.0026907785624427612) +zone = ('mnz033', 0.0036529657416777489) + +[fips2702120366] +centroid = (0.8101438778645369, -1.6482379819692865) +description = Fairview township, MN +station = ('ksaz', 0.0044950515199687156) +zone = ('mnz033', 0.0029113236364416558) + +[fips2702120798] +centroid = (0.82449737836647563, -1.6443092632763399) +description = Federal Dam city, MN +station = ('kxvg', 0.0043633733980891105) +zone = ('mnz025', 0.0023940556168748394) + +[fips2702124686] +centroid = (0.82380975354777497, -1.6441563200739877) +description = Gould township, MN +station = ('kxvg', 0.0036746985447603654) +zone = ('mnz025', 0.0017316217704444617) + +[fips2702126378] +centroid = (0.81902906983375978, -1.6495981868685357) +description = Hackensack city, MN +station = ('kpwc', 0.0038575593090725774) +zone = ('mnz025', 0.0045489245644515655) + +[fips2702129366] +centroid = (0.8192042834373674, -1.6515411397517337) +description = Hiram township, MN +station = ('kpwc', 0.0046993863791272399) +zone = ('mnz024', 0.0045730562893293502) + +[fips2702129978] +centroid = (0.81151596845599228, -1.6485719681749482) +description = Home Brook township, MN +station = ('kpwc', 0.0040829991903050984) +zone = ('mnz033', 0.001656340690457196) + +[fips2702130986] +centroid = (0.82056022973324183, -1.6418850533051972) +description = Inguadona township, MN +station = ('kxvg', 0.001613923004912072) +zone = ('mnz025', 0.0024710208997704413) + +[fips2702132588] +centroid = (0.82080968964322931, -1.644646897220138) +description = Kego township, MN +station = ('kxvg', 0.00074949384773226172) +zone = ('mnz025', 0.0013089661265356647) + +[fips2702134] +centroid = (0.84356792787790191, -1.6897616512555518) +description = Argyle city, MN +station = ('khco', 0.007473693317236324) +zone = ('mnz007', 0.00074451295452001133) + +[fips2702134928] +centroid = (0.81149224943145759, -1.6469154412752955) +description = Lake Shore city, MN +station = ('kbrd', 0.0032046270831008468) +zone = ('mnz033', 0.0025935010036211128) + +[fips2702136224] +centroid = (0.82354701168217981, -1.6510048000725956) +description = Leech Lake township, MN +station = ('kbji', 0.0067846363821157793) +zone = ('mnz024', 0.0040407224767135064) + +[fips2702137034] +centroid = (0.82041871843749004, -1.6371369723416094) +description = Lima township, MN +station = ('kxvg', 0.0048036893328666707) +zone = ('mnz035', 0.0055431216747143675) + +[fips2702138114] +centroid = (0.82008427844622289, -1.644309298182925) +description = Longville city, MN +station = ('kxvg', 0.00010892845664635156) +zone = ('mnz025', 0.0020512661935003168) + +[fips2702138168] +centroid = (0.81318340366347008, -1.6469767546919181) +description = Loon Lake township, MN +station = ('kpwc', 0.0023325794223642729) +zone = ('mnz033', 0.0022982054636295521) + +[fips2702139104] +centroid = (0.81624382105354953, -1.6536905999920273) +description = McKinley township, MN +station = ('kpwc', 0.0044376854619004877) +zone = ('mnz032', 0.0041197567376946818) + +[fips2702140076] +centroid = (0.81327641225930891, -1.6488038002594907) +description = Maple township, MN +station = ('kpwc', 0.0024546779366617999) +zone = ('mnz033', 0.0011445934262652435) + +[fips2702141102] +centroid = (0.80967717682255358, -1.6509283022914807) +description = May township, MN +station = ('ksaz', 0.0025999267716192657) +zone = ('mnz033', 0.0030645132325564203) + +[fips2702141354] +centroid = (0.81139534875138686, -1.6504704675220976) +description = Meadow Brook township, MN +station = ('ksaz', 0.0034712145167410985) +zone = ('mnz033', 0.0013192095636923285) + +[fips2702143990] +centroid = (0.81331781146916615, -1.6514166628694811) +description = Moose Lake township, MN +station = ('kpwc', 0.0035703957366566477) +zone = ('mnz033', 0.0010103915950789005) + +[fips2702144422] +centroid = (0.80882458348295438, -1.6516776244992395) +description = Motley city, MN +station = ('ksaz', 0.0021842917675063155) +zone = ('mnz033', 0.0040041647591667904) + +[fips2702146825] +centroid = (0.82648131158051008, -1.6448335427303464) +description = North Cass UT, MN +station = ('kxvg', 0.0063623532761570784) +zone = ('mnz025', 0.004364100624886162) + +[fips2702146826] +centroid = (0.82227400343236012, -1.6471026278375718) +description = North Central Cass UT, MN +station = ('kxvg', 0.0029279503250114742) +zone = ('mnz025', 0.0016423006565991331) + +[fips2702149250] +centroid = (0.82548347194056004, -1.6477540545275859) +description = Otter Tail Peninsula township, MN +station = ('kxvg', 0.0058783118749869837) +zone = ('mnz025', 0.0039534340073970348) + +[fips2702150848] +centroid = (0.8265619457919523, -1.6513226768892615) +description = Pike Bay township, MN +station = ('kbji', 0.0045089027348499166) +zone = ('mnz017', 0.0052538149554467294) + +[fips2702150902] +centroid = (0.8084935992436062, -1.6489179098859861) +description = Pillager city, MN +station = ('ksaz', 0.0041077450631629249) +zone = ('mnz033', 0.0043104312512067993) + +[fips2702151172] +centroid = (0.82065442515297193, -1.6466641836761782) +description = Pine Lake township, MN +station = ('kxvg', 0.0017796770482681982) +zone = ('mnz025', 0.0019828669684555638) + +[fips2702151280] +centroid = (0.81547523041084891, -1.6475314552347866) +description = Pine River city, MN +station = ('kpwc', 0.00015823615145221722) +zone = ('mnz033', 0.0033387237498739533) + +[fips2702151298] +centroid = (0.81607311039941199, -1.6487475133911138) +description = Pine River township, MN +station = ('kpwc', 0.001140251111481643) +zone = ('mnz033', 0.0035213057712279346) + +[fips2702151928] +centroid = (0.81762338165420356, -1.6466000079195824) +description = Ponto Lake township, MN +station = ('kpwc', 0.0021725616054091498) +zone = ('mnz025', 0.004677882585735804) + +[fips2702151964] +centroid = (0.81320316079060262, -1.6529384154442952) +description = Poplar township, MN +station = ('ksaz', 0.0038959297934336445) +zone = ('mnz033', 0.0019155702158465853) + +[fips2702152] +centroid = (0.77856437907114207, -1.6419427538902682) +description = Arlington city, MN +station = ('kgyl', 0.0025777860637982274) +zone = ('mnz067', 0.0020001262248682396) + +[fips2702152252] +centroid = (0.81767650947663417, -1.6488048649103344) +description = Powers township, MN +station = ('kpwc', 0.0024020903033677484) +zone = ('mnz033', 0.0050683638541820335) + +[fips2702153782] +centroid = (0.82129731718294408, -1.6390809898756509) +description = Remer city, MN +station = ('kxvg', 0.0036574033652741656) +zone = ('mnz025', 0.0039137995457628741) + +[fips2702153800] +centroid = (0.82064437205648044, -1.6403022840197339) +description = Remer township, MN +station = ('kxvg', 0.0026849388140653182) +zone = ('mnz025', 0.003338993329199751) + +[fips2702155168] +centroid = (0.82199614701544266, -1.6422870898983943) +description = Rogers township, MN +station = ('kxvg', 0.0022597595894298327) +zone = ('mnz025', 0.0016474025320130678) + +[fips2702158216] +centroid = (0.8239267429675361, -1.6405393171854472) +description = Salem township, MN +station = ('kxvg', 0.0045253330786200882) +zone = ('mnz025', 0.0033582809082164642) + +[fips2702159872] +centroid = (0.82141163624894975, -1.6510917698292225) +description = Shingobee township, MN +station = ('kpwc', 0.0064485696150977326) +zone = ('mnz024', 0.0038376900371898059) + +[fips2702160790] +centroid = (0.82229789698981992, -1.6400477975615004) +description = Slater township, MN +station = ('kxvg', 0.0035437889682257526) +zone = ('mnz025', 0.0031717823805295729) + +[fips2702160970] +centroid = (0.81894812146305229, -1.6378036532092861) +description = Smoky Hollow township, MN +station = ('kxvg', 0.0045032782164681128) +zone = ('mnz035', 0.0052936005845627496) + +[fips2702163958] +centroid = (0.80885168844623789, -1.6475652797156906) +description = Sylvan township, MN +station = ('kbrd', 0.0033409643229653941) +zone = ('mnz033', 0.0042739190023598017) + +[fips2702164876] +centroid = (0.81898730410475939, -1.6406271421534075) +description = Thunder Lake township, MN +station = ('kxvg', 0.0026754977147474828) +zone = ('mnz025', 0.0041851676120204908) + +[fips2702165254] +centroid = (0.82403561660627556, -1.6383191012972775) +description = Torrey township, MN +station = ('kxvg', 0.0055736197948287741) +zone = ('mnz026', 0.0047437076269734816) + +[fips2702165434] +centroid = (0.81812772944815237, -1.6424349541926231) +description = Trelipe township, MN +station = ('kxvg', 0.0023302189578232584) +zone = ('mnz025', 0.0042792252559882239) + +[fips2702165776] +centroid = (0.82155356642372179, -1.6489611242382656) +description = Turtle Lake township, MN +station = ('kxvg', 0.0035616514925805457) +zone = ('mnz025', 0.0029553585024678021) + +[fips2702167414] +centroid = (0.81933195427215078, -1.6444163392259497) +description = Wabedo township, MN +station = ('kxvg', 0.00082079120120250254) +zone = ('mnz025', 0.002792919253858538) + +[fips2702167595] +centroid = (0.82519640018519191, -1.638056149992172) +description = Wahnena UT, MN +station = ('kgpz', 0.0041445328793909379) +zone = ('mnz026', 0.0045088606047127564) + +[fips2702167684] +centroid = (0.81448784529311813, -1.6488337850160397) +description = Walden township, MN +station = ('kpwc', 0.0014610178813814734) +zone = ('mnz033', 0.0020295381475713948) + +[fips2702167792] +centroid = (0.82184915538583958, -1.6507614662682826) +description = Walker city, MN +station = ('kxvg', 0.004809227713496911) +zone = ('mnz024', 0.0039950099327010222) + +[fips2702170348] +centroid = (0.82512119394772343, -1.6512951355936647) +description = Wilkinson township, MN +station = ('kbji', 0.005448404724427887) +zone = ('mnz024', 0.0046424530216326431) + +[fips2702170654] +centroid = (0.81483493892146219, -1.6474206442805777) +description = Wilson township, MN +station = ('kpwc', 0.00067484811881428504) +zone = ('mnz033', 0.0028813726204723138) + +[fips2702171608] +centroid = (0.81900227902974154, -1.6465902515290636) +description = Woodrow township, MN +station = ('kxvg', 0.0020041086364879818) +zone = ('mnz025', 0.0033717424139615387) + +[fips2702260] +centroid = (0.81808353771149178, -1.6075620714605925) +description = Arnold CDP, MN +station = ('kdlh', 0.0015200167496922413) +zone = ('mnz037', 0.0060389975562459841) + +[fips27023] +centroid = (0.78589776389583166, -1.6679083313314533) +description = Chippewa County, MN +station = ('kmve', 0.0021712945852552594) +zone = ('mnz056', 0.00011459239247469204) + +[fips2702305608] +centroid = (0.78708413400158228, -1.6718889212097694) +description = Big Bend township, MN +station = ('kmve', 0.0024515703998143437) +zone = ('mnz056', 0.0030685278150754942) + +[fips2702311548] +centroid = (0.78466283873029063, -1.6644650759699486) +description = Clara City city, MN +station = ('kbdh', 0.0040666942225640098) +zone = ('mnz056', 0.0027102365482880668) + +[fips2702313672] +centroid = (0.78569422359846408, -1.6654479057783318) +description = Crate township, MN +station = ('kgdb', 0.0048896234897225031) +zone = ('mnz056', 0.0017723806460769589) + +[fips2702324722] +centroid = (0.78716023035696936, -1.6675450585009433) +description = Grace township, MN +station = ('kmve', 0.0031727426253248259) +zone = ('mnz056', 0.0014026018683042465) + +[fips2702325262] +centroid = (0.78280593057921621, -1.6672135681161118) +description = Granite Falls township, MN +station = ('kgdb', 0.0017615862240037855) +zone = ('mnz056', 0.0030268965919850129) + +[fips2702325280] +centroid = (0.78207566736688927, -1.6672155926980441) +description = Granite Falls city, MN +station = ('kgdb', 0.0010614261009345019) +zone = ('mnz056', 0.0037481412236938859) + +[fips2702327656] +centroid = (0.78576068573638014, -1.6677132558809578) +description = Havelock township, MN +station = ('kmve', 0.0022306710097115762) +zone = ('mnz056', 0.00017072888391570537) + +[fips2702333668] +centroid = (0.78690616277775638, -1.6746313396101353) +description = Kragero township, MN +station = ('kaqp', 0.0025535029052553958) +zone = ('mnz054', 0.0031877108921550177) + +[fips2702336278] +centroid = (0.78412967555039137, -1.6675654788531915) +description = Leenthrop township, MN +station = ('kmve', 0.0022352746198453098) +zone = ('mnz056', 0.0016800756310427246) + +[fips2702337952] +centroid = (0.78588825185140831, -1.6635685177864918) +description = Lone Tree township, MN +station = ('kbdh', 0.0027926139532672327) +zone = ('mnz056', 0.0030997439749796238) + +[fips2702338312] +centroid = (0.78714049068312919, -1.6654568244108094) +description = Louriston township, MN +station = ('kbbb', 0.0046978378965480483) +zone = ('mnz056', 0.0022218927357372906) + +[fips2702339752] +centroid = (0.78713525469537315, -1.6697798653416593) +description = Mandt township, MN +station = ('kmve', 0.0023853130716152229) +zone = ('mnz056', 0.001866574429546336) + +[fips2702341210] +centroid = (0.78372550965550702, -1.6662407564976354) +description = Maynard city, MN +station = ('kgdb', 0.0028499997804129398) +zone = ('mnz056', 0.0023910311047616014) + +[fips2702342146] +centroid = (0.78736579523626915, -1.6740586098160934) +description = Milan city, MN +station = ('kaqp', 0.0022750320923611632) +zone = ('mnz054', 0.0037720255784992746) + +[fips2702343720] +centroid = (0.78452837856471691, -1.6705485607041153) +description = Montevideo city, MN +station = ('kmve', 0.00028844510339297866) +zone = ('mnz056', 0.0022267015709968099) + +[fips2702353962] +centroid = (0.78413021660245941, -1.6632952515855071) +description = Rheiderland township, MN +station = ('kbdh', 0.0039614344733325292) +zone = ('mnz056', 0.0036874799694871802) + +[fips2702355870] +centroid = (0.78564662846976219, -1.6696825108759832) +description = Rosewood township, MN +station = ('kmve', 0.0010412123595581854) +zone = ('mnz056', 0.0012314586479038282) + +[fips2702361582] +centroid = (0.78436618511732903, -1.6700329380831984) +description = Sparta township, MN +station = ('kmve', 0.0005896279468904325) +zone = ('mnz056', 0.0020461372609410829) + +[fips2702362950] +centroid = (0.78412560893323413, -1.6658732250637505) +description = Stoneham township, MN +station = ('kgdb', 0.0033201439354088344) +zone = ('mnz056', 0.0022189300383537642) + +[fips2702365704] +centroid = (0.78580555815144881, -1.6719514039969907) +description = Tunsberg township, MN +station = ('kmve', 0.0013897508070308746) +zone = ('mnz056', 0.0028270603563114263) + +[fips2702368656] +centroid = (0.7855767978463899, -1.6720208331946349) +description = Watson city, MN +station = ('kmve', 0.0012765899175772207) +zone = ('mnz056', 0.0028841027772462191) + +[fips2702371626] +centroid = (0.78723993954390781, -1.6633749956790307) +description = Woods township, MN +station = ('kbdh', 0.0021624889049415988) +zone = ('mnz056', 0.0035440447083078322) + +[fips2702422] +centroid = (0.80447644471746094, -1.6722985848917973) +description = Ashby city, MN +station = ('ky63', 0.0027924773861627669) +zone = ('mnz040', 0.0036580326922995847) + +[fips27025] +centroid = (0.7942198253818985, -1.6214780528256414) +description = Chisago County, MN +station = ('kros', 0.0034149819479273869) +zone = ('mnz053', 7.4863405678358763e-05) + +[fips2702501306] +centroid = (0.79426276048149769, -1.6190684861669229) +description = Amador township, MN +station = ('koeo', 0.0036001557802299174) +zone = ('mnz053', 0.0017457258911892305) + +[fips2702510576] +centroid = (0.79227041478046856, -1.6199153897331606) +description = Center City city, MN +station = ('koeo', 0.0021291001360761617) +zone = ('mnz053', 0.0022196475095815718) + +[fips2702511350] +centroid = (0.79143040526477615, -1.6216035070922747) +description = Chisago City city, MN +station = ('koeo', 0.0027881344832928028) +zone = ('mnz053', 0.0027382428871404537) + +[fips2702511368] +centroid = (0.79280209443050353, -1.6195254133650954) +description = Chisago Lake township, MN +station = ('koeo', 0.0023736841980283082) +zone = ('mnz053', 0.0019734941165083049) + +[fips2702521194] +centroid = (0.7961528997015298, -1.6243996816336024) +description = Fish Lake township, MN +station = ('kros', 0.0020297253147221329) +zone = ('mnz053', 0.0028112483179110149) + +[fips2702522310] +centroid = (0.79136984233973195, -1.6189358935036491) +description = Franconia township, MN +station = ('koeo', 0.0010212476954067815) +zone = ('mnz053', 0.0033486350409779723) + +[fips2702527278] +centroid = (0.79581116423398934, -1.6229591741354688) +description = Harris city, MN +station = ('kros', 0.0018230347485710832) +zone = ('mnz053', 0.0019142776360337723) + +[fips2702536440] +centroid = (0.79287730066797191, -1.6224133049586151) +description = Lent township, MN +station = ('kcbg', 0.0044860465716512138) +zone = ('mnz053', 0.0014243539667360458) + +[fips2702537304] +centroid = (0.79246000989711263, -1.6208014584878132) +description = Lindstrom city, MN +station = ('koeo', 0.0027236518579270589) +zone = ('mnz053', 0.00178849316799105) + +[fips2702545250] +centroid = (0.7972427705529378, -1.6242311351877372) +description = Nessel township, MN +station = ('kros', 0.0013659338303383009) +zone = ('mnz052', 0.003508919489124017) + +[fips2702546798] +centroid = (0.79431573122429566, -1.6221838116152705) +description = North Branch city, MN +station = ('kros', 0.0032675549937773627) +zone = ('mnz053', 0.00046415934277334938) + +[fips2702548] +centroid = (0.8061436355788435, -1.6193569541856927) +description = Askov city, MN +station = ('k04w', 0.0032186802477376856) +zone = ('mnz038', 0.0012830347532315871) + +[fips2702556266] +centroid = (0.79739628971394305, -1.6225506274641621) +description = Rush City city, MN +station = ('kros', 0.00023792497997415552) +zone = ('mnz053', 0.0033020628173625233) + +[fips2702556392] +centroid = (0.79743367466652093, -1.6219682285460639) +description = Rushseba township, MN +station = ('kros', 0.00029692435030509228) +zone = ('mnz053', 0.0032779632095225851) + +[fips2702559314] +centroid = (0.79219643027347653, -1.6188059711941305) +description = Shafer city, MN +station = ('koeo', 0.0015965470661605955) +zone = ('mnz053', 0.0027587277180530856) + +[fips2702559332] +centroid = (0.79290545282880653, -1.6181648943065805) +description = Shafer township, MN +station = ('koeo', 0.0021413586232640418) +zone = ('mnz053', 0.0026926701393921882) + +[fips2702562320] +centroid = (0.79194098388415457, -1.6232639784360372) +description = Stacy city, MN +station = ('kcbg', 0.0046227819792375629) +zone = ('mnz053', 0.0025294807897685667) + +[fips2702563616] +centroid = (0.79511219477515072, -1.6212175973413663) +description = Sunrise township, MN +station = ('kros', 0.0025904228922328603) +zone = ('mnz053', 0.00097302635594917193) + +[fips2702564318] +centroid = (0.79248067459545624, -1.6174554703255224) +description = Taylors Falls city, MN +station = ('koeo', 0.0017084458050441401) +zone = ('mnz053', 0.0033348745944239886) + +[fips2702572022] +centroid = (0.79133158472252818, -1.6226024462896538) +description = Wyoming city, MN +station = ('koeo', 0.0034583117119888385) +zone = ('mnz053', 0.0029304450300818058) + +[fips2702692] +centroid = (0.78776294490756049, -1.6541685584076857) +description = Atwater city, MN +station = ('kljf', 0.0033876350208650978) +zone = ('mnz058', 0.0030795281586918845) + +[fips27027] +centroid = (0.81853109249158074, -1.6841537338359689) +description = Clay County, MN +station = ('kjkj', 0.002256963109301274) +zone = ('mnz003', 0.00011624774250484197) + +[fips2702701054] +centroid = (0.81461694729788814, -1.686171596250662) +description = Alliance township, MN +station = ('kjkj', 0.0029484357334062152) +zone = ('mnz003', 0.0040704668827393929) + +[fips2702703574] +centroid = (0.8142009829772604, -1.682784680117412) +description = Barnesville city, MN +station = ('kjkj', 0.0044233732907805233) +zone = ('mnz003', 0.0043177279769660406) + +[fips2702703592] +centroid = (0.81462724474047488, -1.6839840005662123) +description = Barnesville township, MN +station = ('kjkj', 0.0035725644746611072) +zone = ('mnz003', 0.0038000823547113356) + +[fips2702712862] +centroid = (0.81436106457625324, -1.6885428354790066) +description = Comstock city, MN +station = ('kjkj', 0.003291083336978686) +zone = ('mnz003', 0.0050869456538993564) + +[fips2702713798] +centroid = (0.81891194078765839, -1.6816933955493099) +description = Cromwell township, MN +station = ('kjkj', 0.0039496699550093202) +zone = ('mnz003', 0.0017002907828087364) + +[fips2702715976] +centroid = (0.81820050967796043, -1.6877042745865933) +description = Dilworth city, MN +station = ('kjkj', 0.00081927888790820551) +zone = ('mnz003', 0.002488241110395742) + +[fips2702718314] +centroid = (0.81783474102662002, -1.6798885156632377) +description = Eglon township, MN +station = ('kdtl', 0.0044051913842154556) +zone = ('mnz003', 0.002924874864327054) + +[fips2702718710] +centroid = (0.81608684614062532, -1.6839926748525949) +description = Elkton township, MN +station = ('kjkj', 0.0025459896706688844) +zone = ('mnz003', 0.0023406676521638852) + +[fips2702719052] +centroid = (0.81613302755263306, -1.6861591520530954) +description = Elmwood township, MN +station = ('kjkj', 0.0015056789292639309) +zone = ('mnz003', 0.0026995506659686181) + +[fips2702720834] +centroid = (0.82161205240695623, -1.6843407807719051) +description = Felton city, MN +station = ('kfar', 0.0044509658538931804) +zone = ('mnz003', 0.0031902934709519539) + +[fips2702720852] +centroid = (0.82220120574925948, -1.6842446654899978) +description = Felton township, MN +station = ('kfar', 0.0048528602153082223) +zone = ('mnz003', 0.0037761289849437604) + +[fips2702721482] +centroid = (0.82077860532925129, -1.6844669855301169) +description = Flowing township, MN +station = ('kjkj', 0.003737533211330058) +zone = ('mnz003', 0.0023667174589294105) + +[fips2702723498] +centroid = (0.82167258042541536, -1.6894075239503223) +description = Georgetown city, MN +station = ('kfar', 0.0025433981285268351) +zone = ('mnz003', 0.0048734326036053467) + +[fips2702723516] +centroid = (0.82230690288876007, -1.6888573438102159) +description = Georgetown township, MN +station = ('kfar', 0.0032262108120300944) +zone = ('mnz003', 0.005067081868973514) + +[fips2702724182] +centroid = (0.81806571789982896, -1.6856326385776461) +description = Glyndon city, MN +station = ('kjkj', 0.0011462815105944806) +zone = ('mnz003', 0.0011218331173198468) + +[fips2702724200] +centroid = (0.81753056504458244, -1.6862364003257886) +description = Glyndon township, MN +station = ('kjkj', 0.00058385218096979248) +zone = ('mnz003', 0.0017261269830513314) + +[fips2702724542] +centroid = (0.82080176584842535, -1.6800177922009329) +description = Goose Prairie township, MN +station = ('kdtl', 0.0056154118826472485) +zone = ('mnz003', 0.0036499464864028597) + +[fips2702726504] +centroid = (0.82205864725595645, -1.6820603510245418) +description = Hagen township, MN +station = ('kjkj', 0.005707482834978554) +zone = ('mnz003', 0.0038840011337229275) + +[fips2702727746] +centroid = (0.81814052271156945, -1.6810528946204131) +description = Hawley city, MN +station = ('kjkj', 0.0041770496188640802) +zone = ('mnz003', 0.0020877568094726721) + +[fips2702727764] +centroid = (0.81753658643050187, -1.6818386767562459) +description = Hawley township, MN +station = ('kjkj', 0.0035913262847692647) +zone = ('mnz003', 0.001771394272747584) + +[fips2702728] +centroid = (0.81791043595627899, -1.6751862670458071) +description = Audubon city, MN +station = ('kdtl', 0.0012754729366964168) +zone = ('mnz027', 0.001450645218938967) + +[fips2702728988] +centroid = (0.81905219544634866, -1.6794801958847334) +description = Highland Grove township, MN +station = ('kdtl', 0.0044231615221155202) +zone = ('mnz003', 0.0032030609204849177) + +[fips2702729402] +centroid = (0.81993067201875491, -1.6800278452974242) +description = Hitterdal city, MN +station = ('kdtl', 0.0051417853195492198) +zone = ('mnz003', 0.0031483943484395096) + +[fips2702729906] +centroid = (0.81460015723048385, -1.6883033239457552) +description = Holy Cross township, MN +station = ('kjkj', 0.0030146668530972756) +zone = ('mnz003', 0.0047970646078806011) + +[fips2702730428] +centroid = (0.81463450531016324, -1.6816452768218326) +description = Humboldt township, MN +station = ('kjkj', 0.0047015299500779281) +zone = ('mnz003', 0.0041421918963294941) + +[fips2702732552] +centroid = (0.82056002029373154, -1.6820510833262137) +description = Keene township, MN +station = ('kjkj', 0.0046057916477517426) +zone = ('mnz003', 0.0025428770172067987) + +[fips2702733704] +centroid = (0.82065847431683647, -1.688727334234235) +description = Kragnes township, MN +station = ('kfar', 0.0016756632037185407) +zone = ('mnz003', 0.0038792032432655213) + +[fips2702733812] +centroid = (0.81614578590946518, -1.688265345581232) +description = Kurtz township, MN +station = ('kjkj', 0.00157369225759109) +zone = ('mnz003', 0.0036617561787995086) + +[fips2702743576] +centroid = (0.81903957671585681, -1.6859934330406185) +description = Moland township, MN +station = ('kjkj', 0.0017139827433979484) +zone = ('mnz003', 0.0014444943565345878) + +[fips2702743864] +centroid = (0.81783892981682482, -1.6884745756519612) +description = Moorhead city, MN +station = ('kjkj', 0.0010074681061075807) +zone = ('mnz003', 0.0030619346564695984) + +[fips2702743882] +centroid = (0.81725621673946147, -1.6878200771824632) +description = Moorhead township, MN +station = ('kjkj', 0.00055564768037570634) +zone = ('mnz003', 0.0028134398135755494) + +[fips2702744170] +centroid = (0.82066807362772254, -1.6864527164332808) +description = Morken township, MN +station = ('kfar', 0.0027299984455012387) +zone = ('mnz003', 0.0027657102524950156) + +[fips2702747932] +centroid = (0.8192758593899917, -1.6882408586118267) +description = Oakport township, MN +station = ('kfar', 0.0010524775134221334) +zone = ('mnz003', 0.0029671115954802286) + +[fips2702749678] +centroid = (0.81623120232305779, -1.6795191341803457) +description = Parke township, MN +station = ('kjkj', 0.0053338957220471286) +zone = ('mnz003', 0.0038146835496832734) + +[fips2702754718] +centroid = (0.81738900138895321, -1.6836968939042594) +description = Riverton township, MN +station = ('kjkj', 0.0023227588569725535) +zone = ('mnz003', 0.0010700994125072754) + +[fips2702756554] +centroid = (0.81645552949181655, -1.6869282837478641) +description = Sabin city, MN +station = ('kjkj', 0.0010479070294669801) +zone = ('mnz003', 0.0027723518628234895) + +[fips2702760718] +centroid = (0.81625551475953795, -1.6818030022263353) +description = Skree township, MN +station = ('kjkj', 0.0038252829669059405) +zone = ('mnz003', 0.002671774537056526) + +[fips2702762032] +centroid = (0.81916127852459819, -1.6839605957009431) +description = Spring Prairie township, MN +station = ('kjkj', 0.0027088267084000913) +zone = ('mnz003', 0.00073891939863866515) + +[fips2702764192] +centroid = (0.8148703341986927, -1.6798200987565592) +description = Tansem township, MN +station = ('kjkj', 0.0056296391843255267) +zone = ('mnz003', 0.0045988642147672615) + +[fips2702766136] +centroid = (0.82167223135956491, -1.6800303062116695) +description = Ulen city, MN +station = ('kjkj', 0.0063745205465283849) +zone = ('mnz003', 0.0042614688025805342) + +[fips2702766154] +centroid = (0.82220050761755858, -1.6800251400370836) +description = Ulen township, MN +station = ('kdtl', 0.0065598878780181481) +zone = ('mnz002', 0.0044610341952533413) + +[fips2702767054] +centroid = (0.82218788888706662, -1.6864592788712682) +description = Viding township, MN +station = ('kfar', 0.0037914784786292001) +zone = ('mnz003', 0.0040965772223140488) + +[fips2702872] +centroid = (0.82957642611611926, -1.6099080906812457) +description = Aurora city, MN +station = ('kevm', 0.0036521323048992454) +zone = ('mnz019', 0.002730664879421568) + +[fips27029] +centroid = (0.83035562836067223, -1.6645400029547368) +description = Clearwater County, MN +station = ('kfse', 0.0047441982966979516) +zone = ('mnz016', 0.0030812550783908556) + +[fips2702903196] +centroid = (0.82945695832882027, -1.6651188064945757) +description = Bagley city, MN +station = ('kfse', 0.0045076770648569279) +zone = ('mnz023', 0.0035498199901990751) + +[fips2702904186] +centroid = (0.82679580245842699, -1.6624121498905831) +description = Bear Creek township, MN +station = ('kbji', 0.0043477985460438542) +zone = ('mnz023', 0.0016085122119458145) + +[fips2702908] +centroid = (0.76221465823723478, -1.6226966242560914) +description = Austin city, MN +station = ('kaum', 0.00051668254538066605) +zone = ('mnz094', 0.0027920603887928003) + +[fips2702911746] +centroid = (0.83245552125020916, -1.6655404954951503) +description = Clearbrook city, MN +station = ('kfse', 0.0044389906033017951) +zone = ('mnz016', 0.0010780657194479201) + +[fips2702912214] +centroid = (0.83378584611266426, -1.6629332877519361) +description = Clover township, MN +station = ('kbji', 0.0062559297652952919) +zone = ('mnz016', 0.0013392728145244521) + +[fips2702913150] +centroid = (0.82976155318987832, -1.6642218468853907) +description = Copley township, MN +station = ('kfse', 0.0050304188915681891) +zone = ('mnz016', 0.0036927011959152602) + +[fips2702916462] +centroid = (0.8311786034628651, -1.6624112074127868) +description = Dudley township, MN +station = ('kbji', 0.0042947534665540455) +zone = ('mnz016', 0.0027876371514157722) + +[fips2702918008] +centroid = (0.83121787337103492, -1.6664277510736938) +description = Eddy township, MN +station = ('kfse', 0.0035062713034983177) +zone = ('mnz016', 0.0024524128453862425) + +[fips2702920438] +centroid = (0.82852069390488048, -1.6665399408380122) +description = Falk township, MN +station = ('kfse', 0.004003144050046108) +zone = ('mnz023', 0.002953666091187477) + +[fips2702924344] +centroid = (0.8332060826417369, -1.6670013186257768) +description = Gonvick city, MN +station = ('kfse', 0.0039944098721807226) +zone = ('mnz016', 0.001461198733476295) + +[fips2702925910] +centroid = (0.83412543482522483, -1.6649951673703645) +description = Greenwood township, MN +station = ('kfse', 0.0056214079405364267) +zone = ('mnz016', 0.00070226119787842667) + +[fips2702926954] +centroid = (0.8356525804674273, -1.6673635791653207) +description = Hangaard township, MN +station = ('kfse', 0.005743198192688613) +zone = ('mnz016', 0.0027895917247874077) + +[fips2702929834] +centroid = (0.8311080921610845, -1.6641812679802819) +description = Holst township, MN +station = ('kfse', 0.0049959168564094195) +zone = ('mnz016', 0.0023652764346650474) + +[fips2702931508] +centroid = (0.82541683526971876, -1.6622965567342234) +description = Itasca township, MN +station = ('kbji', 0.0051394041251710872) +zone = ('mnz023', 0.001532120332157091) + +[fips2702935630] +centroid = (0.8249530140210013, -1.6662306859478513) +description = La Prairie township, MN +station = ('kfse', 0.0067424810395321014) +zone = ('mnz023', 0.0015741495564418088) + +[fips2702936458] +centroid = (0.83288052637636234, -1.6647489886793705) +description = Leon township, MN +station = ('kfse', 0.0051009036338650364) +zone = ('mnz016', 0.00055360973678642705) + +[fips2702936494] +centroid = (0.83167076885863489, -1.6627197118113695) +description = Leonard city, MN +station = ('kbji', 0.0047312087361403082) +zone = ('mnz016', 0.0022707784885571836) + +[fips2702938042] +centroid = (0.82372365645577406, -1.6641321369618383) +description = Long Lost Lake township, MN +station = ('kpkd', 0.0061516776433723558) +zone = ('mnz023', 0.0022236750769700068) + +[fips2702942452] +centroid = (0.82667034819179364, -1.6644685142685751) +description = Minerva township, MN +station = ('kfse', 0.006230126461696843) +zone = ('mnz023', 0.00073238421806786052) + +[fips2702943918] +centroid = (0.82826409559825231, -1.6623901238354228) +description = Moose Creek township, MN +station = ('kbji', 0.0037896312380909592) +zone = ('mnz023', 0.0027014928671728112) + +[fips2702946438] +centroid = (0.82839277872400185, -1.6641804127689486) +description = Nora township, MN +station = ('kfse', 0.0054705910476290504) +zone = ('mnz023', 0.0024595070546505936) + +[fips2702946830] +centroid = (0.83584568369586798, -1.6655644588657799) +description = North Clearwater UT, MN +station = ('kfse', 0.0065760017144643364) +zone = ('mnz016', 0.0024627201288416316) + +[fips2702951190] +centroid = (0.83244218693472394, -1.666866788647033) +description = Pine Lake township, MN +station = ('kfse', 0.0036342259426963828) +zone = ('mnz016', 0.0016758983606130079) + +[fips2702952018] +centroid = (0.82975610776261211, -1.6665688958503027) +description = Popple township, MN +station = ('kfse', 0.0034844145881032917) +zone = ('mnz016', 0.0038509351329801779) + +[fips2702954016] +centroid = (0.82510705678078233, -1.6643664125073334) +description = Rice township, MN +station = ('kfse', 0.0073762844964647082) +zone = ('mnz023', 0.00083243877064445267) + +[fips2702959782] +centroid = (0.82955982803493278, -1.6625936117729128) +description = Shevlin city, MN +station = ('kbji', 0.0038820852969702032) +zone = ('mnz023', 0.0038263855468230056) + +[fips2702959800] +centroid = (0.82988870042588614, -1.6622505673084333) +description = Shevlin township, MN +station = ('kbji', 0.0037139152697867267) +zone = ('mnz016', 0.0039514094363987985) + +[fips2702960502] +centroid = (0.83252690521661565, -1.6624551373500593) +description = Sinclair township, MN +station = ('kbji', 0.0051238292170382466) +zone = ('mnz016', 0.0018489161293725519) + +[fips2702961303] +centroid = (0.82331884478906647, -1.6617873220183688) +description = South Clearwater UT, MN +station = ('kpkd', 0.0050693698733488687) +zone = ('mnz023', 0.0031717242622822184) + +[fips2702971068] +centroid = (0.83446657688081971, -1.6668810828936069) +description = Winsor township, MN +station = ('kfse', 0.0049473512788038403) +zone = ('mnz016', 0.0017119773685230885) + +[fips2703052] +centroid = (0.76705045944902805, -1.6693502525462809) +description = Avoca city, MN +station = ('kdvp', 0.0018294346846566816) +zone = ('mnz080', 0.0019437627334866136) + +[fips2703070] +centroid = (0.79596981466299566, -1.6484762368654764) +description = Avon city, MN +station = ('kstc', 0.0049910534326415056) +zone = ('mnz049', 0.0021912733884702613) + +[fips27031] +centroid = (0.82970458564309324, -1.5758610977512588) +description = Cook County, MN +station = ('kgna', 0.0052596858411625459) +zone = ('mnz021', 0.0048360564914639954) + +[fips2703100000] +centroid = (0.82970458564309324, -1.5758610977512588) +description = County subdivisions not defined, MN +station = ('kgna', 0.0052596858411625459) +zone = ('mnz021', 0.0048360564914639954) + +[fips2703106] +centroid = (0.83154630942967533, -1.6046282951610378) +description = Babbitt city, MN +station = ('kelo', 0.0032548546219884921) +zone = ('mnz019', 0.0067965672386741949) + +[fips2703117531] +centroid = (0.83724027158138159, -1.5737879782124475) +description = East Cook UT, MN +station = ('kckc', 0.003382271212752158) +zone = ('mnz021', 0.0040507383681541156) + +[fips2703124] +centroid = (0.81717792126921707, -1.6495928287077322) +description = Backus city, MN +station = ('kpwc', 0.0022921731823066348) +zone = ('mnz033', 0.0044948027848089609) + +[fips2703124992] +centroid = (0.83354673600514106, -1.5768064204340166) +description = Grand Marais city, MN +station = ('kgna', 0.0013802832018568719) +zone = ('mnz021', 0.0011088369235815109) + +[fips2703125071] +centroid = (0.83693489132216015, -1.5648624167776259) +description = Grand Portage UT, MN +station = ('cztb', 0.0082323463725652492) +zone = ('mnz021', 0.0091781931620933555) + +[fips2703138550] +centroid = (0.83405588345453285, -1.5831100435467371) +description = Lutsen township, MN +station = ('kckc', 0.003880793894243709) +zone = ('mnz021', 0.0034554989291609361) + +[fips2703158999] +centroid = (0.83243927223487302, -1.5876245994564082) +description = Schroeder township, MN +station = ('kbfw', 0.010058588213192117) +zone = ('mnz012', 0.0035447498499487748) + +[fips2703160] +centroid = (0.85131430996349089, -1.6758863360620744) +description = Badger city, MN +station = ('krox', 0.003907069560729841) +zone = ('mnz005', 0.0024214579490604662) + +[fips2703165065] +centroid = (0.83370823132082816, -1.5854888225974504) +description = Tofte township, MN +station = ('kckc', 0.005516533742956858) +zone = ('mnz012', 0.0042894543141079279) + +[fips2703169307] +centroid = (0.83720023372834085, -1.5823926783175823) +description = West Cook UT, MN +station = ('kckc', 0.0039953442244334688) +zone = ('mnz021', 0.0041251141799904644) + +[fips2703196] +centroid = (0.82945695832882027, -1.6651188064945757) +description = Bagley city, MN +station = ('kfse', 0.0045076770648569279) +zone = ('mnz023', 0.0035498199901990751) + +[fips2703214] +centroid = (0.81525182826659359, -1.6852539719431336) +description = Baker CDP, MN +station = ('kjkj', 0.0025734299196508229) +zone = ('mnz003', 0.0032752934639956235) + +[fips2703250] +centroid = (0.77201056301014825, -1.6732658463632526) +description = Balaton city, MN +station = ('ktkc', 0.0033108119227165766) +zone = ('mnz072', 0.0031765858666175811) + +[fips27033] +centroid = (0.76813181309368617, -1.6612590108537904) +description = Cottonwood County, MN +station = ('kmwm', 0.0019353119341019448) +zone = ('mnz081', 6.7520089918012913e-05) + +[fips2703301342] +centroid = (0.76907699615010372, -1.6608525062177084) +description = Amboy township, MN +station = ('kmwm', 0.0027193971751263949) +zone = ('mnz081', 0.0010432241351066654) + +[fips2703301441] +centroid = (0.76742275563177087, -1.6628181134745967) +description = Amo township, MN +station = ('kmwm', 0.002275531042322811) +zone = ('mnz081', 0.0013155300919736647) + +[fips2703301666] +centroid = (0.77060145398525814, -1.6650816658880934) +description = Ann township, MN +station = ('ktkc', 0.0030709951400081808) +zone = ('mnz081', 0.0037535166455167821) + +[fips2703305896] +centroid = (0.76636489411884468, -1.6588662866223536) +description = Bingham Lake city, MN +station = ('kmwm', 0.00080009896336177908) +zone = ('mnz081', 0.00240560734722301) + +[fips2703310108] +centroid = (0.76743177898400372, -1.6589215786530569) +description = Carson township, MN +station = ('kmwm', 0.0012538571423689365) +zone = ('mnz081', 0.0017756827861330211) + +[fips2703312772] +centroid = (0.76982027951865051, -1.656407868197872) +description = Comfrey city, MN +station = ('kmwm', 0.004248894494462893) +zone = ('mnz074', 0.0032339481784111599) + +[fips2703314608] +centroid = (0.76751150562423476, -1.6609463700248805) +description = Dale township, MN +station = ('kmwm', 0.0012868611061086651) +zone = ('mnz081', 0.0005923201565831397) + +[fips2703315652] +centroid = (0.76895026779311637, -1.6589331501859976) +description = Delton township, MN +station = ('kmwm', 0.0026268116343768771) +zone = ('mnz081', 0.0018688914755166624) + +[fips2703323570] +centroid = (0.77059843456565214, -1.6606975209801311) +description = Germantown township, MN +station = ('kmwm', 0.0041986228100558609) +zone = ('mnz081', 0.0025579031722716516) + +[fips2703325514] +centroid = (0.76623959693184396, -1.6613117721570783) +description = Great Bend township, MN +station = ('kmwm', 0.00098361106419137261) +zone = ('mnz081', 0.0018302506177036064) + +[fips2703329060] +centroid = (0.77045870350573753, -1.6630292983140882) +description = Highwater township, MN +station = ('ktkc', 0.0044329369801003292) +zone = ('mnz081', 0.0027187023187673705) + +[fips2703331796] +centroid = (0.76891977689108404, -1.661472290088384) +description = Jeffers city, MN +station = ('kmwm', 0.002711385307383287) +zone = ('mnz081', 0.00086931373712379324) + +[fips2703335000] +centroid = (0.76592494897429442, -1.6589188559394237) +description = Lakeside township, MN +station = ('kmwm', 0.00091338343470958889) +zone = ('mnz081', 0.00271179236134968) + +[fips2703342002] +centroid = (0.76767921431205899, -1.6564679424307256) +description = Midway township, MN +station = ('kmwm', 0.0028147387429090895) +zone = ('mnz082', 0.0037005553934362071) + +[fips2703344566] +centroid = (0.76692978738454509, -1.6567592727894687) +description = Mountain Lake city, MN +station = ('kmwm', 0.0023674199453614982) +zone = ('mnz082', 0.0039613160601904189) + +[fips2703344584] +centroid = (0.76591021839540763, -1.6564973163220367) +description = Mountain Lake township, MN +station = ('kmwm', 0.0025582717187897608) +zone = ('mnz082', 0.0040747759442050476) + +[fips2703355672] +centroid = (0.76760559632420988, -1.6651000092985317) +description = Rose Hill township, MN +station = ('kmwm', 0.0038733806876357591) +zone = ('mnz081', 0.0028257245897417055) + +[fips2703359224] +centroid = (0.76906893272895949, -1.6566605569669757) +description = Selma township, MN +station = ('kmwm', 0.0035541031574446219) +zone = ('mnz074', 0.0039238563898379491) + +[fips2703361294] +centroid = (0.76591473879817029, -1.6652716275238804) +description = Southbrook township, MN +station = ('kotg', 0.0046088516182447459) +zone = ('mnz081', 0.0036231871494888635) + +[fips2703361834] +centroid = (0.76598247502644012, -1.6630599986556309) +description = Springfield township, MN +station = ('kmwm', 0.0022693734660487954) +zone = ('mnz081', 0.0024693207090499764) + +[fips2703363022] +centroid = (0.76863558492898176, -1.6636355035231833) +description = Storden city, MN +station = ('kmwm', 0.0034353129595100875) +zone = ('mnz081', 0.0018233854003450063) + +[fips2703363040] +centroid = (0.76919740641519874, -1.6628612580137063) +description = Storden township, MN +station = ('kmwm', 0.0034588823855181694) +zone = ('mnz081', 0.001629960815676605) + +[fips2703369250] +centroid = (0.76869255247576684, -1.6656819369777316) +description = Westbrook city, MN +station = ('ktkc', 0.0041835526864674507) +zone = ('mnz081', 0.0032646113778408339) + +[fips2703369268] +centroid = (0.76921117706299691, -1.664891459906211) +description = Westbrook township, MN +station = ('ktkc', 0.0040968112307887957) +zone = ('mnz081', 0.002872369922365186) + +[fips2703370798] +centroid = (0.76573793694494319, -1.6601421048522691) +description = Windom city, MN +station = ('kmwm', 0.00070493395877565244) +zone = ('mnz081', 0.0024578957876937972) + +[fips2703376] +centroid = (0.82608360340385822, -1.6396680313695589) +description = Ball Club CDP, MN +station = ('kxvg', 0.0066893240890470466) +zone = ('mnz025', 0.0052353293813858729) + +[fips27035] +centroid = (0.8114230122200311, -1.6418523981948925) +description = Crow Wing County, MN +station = ('kbrd', 0.0017569761164755026) +zone = ('mnz034', 0.00015213449544449861) + +[fips2703504042] +centroid = (0.80874003973398767, -1.6455460733974729) +description = Baxter city, MN +station = ('kbrd', 0.0021062125475730833) +zone = ('mnz034', 0.0035931305845222964) + +[fips2703504096] +centroid = (0.80932968176848152, -1.6383758070446748) +description = Bay Lake township, MN +station = ('kbrd', 0.0031860141699257458) +zone = ('mnz034', 0.0030810488605797887) + +[fips2703507300] +centroid = (0.8090520696976593, -1.644071741418436) +description = Brainerd city, MN +station = ('kbrd', 0.0011058017176120941) +zone = ('mnz034', 0.0026973448706336263) + +[fips2703507516] +centroid = (0.81348038888898944, -1.6442097271490985) +description = Breezy Point city, MN +station = ('kpwc', 0.0029343698061094605) +zone = ('mnz034', 0.0027427331097691254) + +[fips2703510567] +centroid = (0.81151530523087656, -1.6425726606706055) +description = Center township, MN +station = ('kbrd', 0.0017011158929806723) +zone = ('mnz034', 0.00055621571871816906) + +[fips2703513924] +centroid = (0.81146305007307185, -1.6396651690295856) +description = Crosby city, MN +station = ('kbrd', 0.0027818734684937093) +zone = ('mnz034', 0.0015143992745179837) + +[fips2703513978] +centroid = (0.81467536346795244, -1.642380639546301) +description = Crosslake city, MN +station = ('kbrd', 0.0048576673740282081) +zone = ('mnz034', 0.0034241459644864555) + +[fips2703514122] +centroid = (0.80771910938803371, -1.6448129303918804) +description = Crow Wing township, MN +station = ('kbrd', 0.0024790320167106111) +zone = ('mnz034', 0.0040990279932464312) + +[fips2703514428] +centroid = (0.81169139149911018, -1.6392017143000113) +description = Cuyuna city, MN +station = ('kbrd', 0.0031741906600755562) +zone = ('mnz034', 0.0018689471877451694) + +[fips2703514464] +centroid = (0.80640154288241062, -1.6428402021916437) +description = Daggett Brook township, MN +station = ('kbrd', 0.0034318763158773667) +zone = ('mnz043', 0.0037395342325613192) + +[fips2703515346] +centroid = (0.8110031907217562, -1.6388396457466849) +description = Deerwood city, MN +station = ('kbrd', 0.0030565686225959778) +zone = ('mnz034', 0.0020882768782523489) + +[fips2703515364] +centroid = (0.81094775906471295, -1.6383469567521396) +description = Deerwood township, MN +station = ('kait', 0.0027031162897796141) +zone = ('mnz034', 0.0024319823326087249) + +[fips2703519286] +centroid = (0.81627216520060197, -1.6402672901682314) +description = Emily city, MN +station = ('kxvg', 0.0046937214868861734) +zone = ('mnz034', 0.0051175461227651814) + +[fips2703520240] +centroid = (0.81457315698695565, -1.6399914583332462) +description = Fairfield township, MN +station = ('kait', 0.0039844396623562517) +zone = ('mnz034', 0.0035399746770210989) + +[fips2703521032] +centroid = (0.81622448280543758, -1.6426913430597412) +description = Fifty Lakes city, MN +station = ('kpwc', 0.003242119588757396) +zone = ('mnz034', 0.0049873889656984376) + +[fips2703521149] +centroid = (0.81007884689660759, -1.6446705813380877) +description = First Assessment UT, MN +station = ('kbrd', 0.0012206908074055168) +zone = ('mnz034', 0.0022816854847865237) + +[fips2703521932] +centroid = (0.80580493698420141, -1.6469415339476126) +description = Fort Ripley city, MN +station = ('klxl', 0.0038292843274186825) +zone = ('mnz043', 0.0029627650133833014) + +[fips2703521950] +centroid = (0.80681422598404473, -1.6465630592993179) +description = Fort Ripley township, MN +station = ('kbrd', 0.0039224744894368387) +zone = ('mnz043', 0.0038448434874737247) + +[fips2703523012] +centroid = (0.81599835794754916, -1.6460058280290333) +description = Gail Lake township, MN +station = ('kpwc', 0.001017721647614659) +zone = ('mnz033', 0.0043950411370844208) + +[fips2703523192] +centroid = (0.8080872342338643, -1.637539270734194) +description = Garrison city, MN +station = ('kbrd', 0.0041141630281868813) +zone = ('mnz034', 0.0043547044456386215) + +[fips2703523210] +centroid = (0.80786192968072434, -1.6384329491243852) +description = Garrison township, MN +station = ('kbrd', 0.0036810603230562843) +zone = ('mnz034', 0.0041433428549039362) + +[fips2703530734] +centroid = (0.81470316656293673, -1.643996657354015) +description = Ideal township, MN +station = ('kpwc', 0.0024062417856622639) +zone = ('mnz034', 0.0037367764379821768) + +[fips2703531202] +centroid = (0.81088292008300134, -1.640634681975776) +description = Irondale township, MN +station = ('kbrd', 0.0019026361239012086) +zone = ('mnz034', 0.00092065540260297541) + +[fips2703531274] +centroid = (0.81126141218458891, -1.6406786293663413) +description = Ironton city, MN +station = ('kbrd', 0.0021123595642144393) +zone = ('mnz034', 0.00080452926623099798) + +[fips2703531832] +centroid = (0.81421517250407904, -1.6463371787875245) +description = Jenkins city, MN +station = ('kpwc', 0.0014506712692632158) +zone = ('mnz033', 0.0030812656471187177) + +[fips2703531850] +centroid = (0.81476369458139586, -1.6462153722590278) +description = Jenkins township, MN +station = ('kpwc', 0.0010525204532061926) +zone = ('mnz033', 0.003450109259098914) + +[fips2703534207] +centroid = (0.81144968085100144, -1.6442977615565693) +description = Lake Edward township, MN +station = ('kbrd', 0.001869229240092107) +zone = ('mnz034', 0.0016968662230059152) + +[fips2703537646] +centroid = (0.81646441321770913, -1.6382307352772492) +description = Little Pine township, MN +station = ('kait', 0.0045581580935005689) +zone = ('mnz034', 0.0057566156204700439) + +[fips2703537988] +centroid = (0.80773017477549136, -1.6428416333616305) +description = Long Lake township, MN +station = ('kbrd', 0.0021036201475597041) +zone = ('mnz034', 0.0036066297852828714) + +[fips2703539806] +centroid = (0.81568990590884416, -1.6431161911062617) +description = Manhattan Beach city, MN +station = ('kpwc', 0.0028769358670506567) +zone = ('mnz034', 0.0045041849163508637) + +[fips2703540148] +centroid = (0.80803169785706586, -1.6408501603252272) +description = Maple Grove township, MN +station = ('kbrd', 0.0023060957262048222) +zone = ('mnz034', 0.003311386168927536) + +[fips2703543468] +centroid = (0.81306639679041637, -1.6421068846531259) +description = Mission township, MN +station = ('kbrd', 0.0032836886935232461) +zone = ('mnz034', 0.0018043559500875062) + +[fips2703546348] +centroid = (0.81159398467355637, -1.64580813458466) +description = Nisswa city, MN +station = ('kbrd', 0.0026487840159505785) +zone = ('mnz033', 0.0032498334378932383) + +[fips2703546384] +centroid = (0.80941933933215648, -1.6404259231439449) +description = Nokay Lake township, MN +station = ('kbrd', 0.0017804552279120632) +zone = ('mnz034', 0.0020946716332286438) + +[fips2703547824] +centroid = (0.80935490177617286, -1.6428714610385469) +description = Oak Lawn township, MN +station = ('kbrd', 0.00047997907317503331) +zone = ('mnz034', 0.002042015381635575) + +[fips2703550092] +centroid = (0.81306959074294749, -1.6438967721609234) +description = Pelican township, MN +station = ('kbrd', 0.003303625687289027) +zone = ('mnz034', 0.0022855362633349683) + +[fips2703550416] +centroid = (0.81311564998190766, -1.6456363767329714) +description = Pequot Lakes city, MN +station = ('kpwc', 0.0026496746455428226) +zone = ('mnz033', 0.003195840989925214) + +[fips2703550542] +centroid = (0.81293600324199988, -1.6402862095373227) +description = Perry Lake township, MN +station = ('kbrd', 0.0035999801559683663) +zone = ('mnz034', 0.0019812621570090101) + +[fips2703551496] +centroid = (0.80616690081777254, -1.6407146180555174) +description = Platte Lake township, MN +station = ('kbrd', 0.0039743757627694228) +zone = ('mnz043', 0.0044344673970126702) + +[fips2703552855] +centroid = (0.81230351337436957, -1.6383076868439697) +description = Rabbit Lake township, MN +station = ('kait', 0.0022230008720033221) +zone = ('mnz034', 0.002645556920037474) + +[fips2703554736] +centroid = (0.81083382397114268, -1.6415832858775277) +description = Riverton city, MN +station = ('kbrd', 0.0013682788049462151) +zone = ('mnz034', 0.00047331773436188208) + +[fips2703555420] +centroid = (0.80647467217806923, -1.6382217991914789) +description = Roosevelt township, MN +station = ('kbrd', 0.0046782267791371998) +zone = ('mnz034', 0.0054098431874603772) + +[fips2703555978] +centroid = (0.81456582660409715, -1.6378036706625785) +description = Ross Lake township, MN +station = ('kait', 0.0028226771121484494) +zone = ('mnz034', 0.0043105298094209049) + +[fips2703557328] +centroid = (0.80607565500447831, -1.6449559077642038) +description = St. Mathias township, MN +station = ('kbrd', 0.0040078396286408746) +zone = ('mnz043', 0.0030134187985777585) + +[fips2703559161] +centroid = (0.8133648655457999, -1.6379705241390694) +description = Second Assessment UT, MN +station = ('kait', 0.0021854638053370838) +zone = ('mnz034', 0.0033902124433273437) + +[fips2703564930] +centroid = (0.81604640686185648, -1.6441449928871421) +description = Timothy township, MN +station = ('kpwc', 0.0022320430231698432) +zone = ('mnz034', 0.0050295706836964594) + +[fips2703565506] +centroid = (0.81167985487275451, -1.6408128626391121) +description = Trommald city, MN +station = ('kbrd', 0.0023563788210623046) +zone = ('mnz034', 0.00082097835754097815) + +[fips2703571374] +centroid = (0.81224237449067227, -1.6407610089070352) +description = Wolford township, MN +station = ('kbrd', 0.0028375120971197722) +zone = ('mnz034', 0.0012256691999619665) + +[fips2703574] +centroid = (0.8142009829772604, -1.682784680117412) +description = Barnesville city, MN +station = ('kjkj', 0.0044233732907805233) +zone = ('mnz003', 0.0043177279769660406) + +[fips2703628] +centroid = (0.81167055226784135, -1.6177218075693767) +description = Barnum city, MN +station = ('kmzh', 0.0020458820384606797) +zone = ('mnz037', 0.0044913029939446028) + +[fips2703682] +centroid = (0.80133542802252422, -1.6738545284666577) +description = Barrett city, MN +station = ('ky63', 0.0015521731274470106) +zone = ('mnz040', 0.0013526372287910476) + +[fips27037] +centroid = (0.77965416265608734, -1.624246703524665) +description = Dakota County, MN +station = ('klvn', 0.0021892693768505436) +zone = ('mnz070', 4.1824329083534618e-05) + +[fips2703701900] +centroid = (0.78095284469920379, -1.6266351342461416) +description = Apple Valley city, MN +station = ('klvn', 0.0020819293224777833) +zone = ('mnz070', 0.0020969454883310993) + +[fips2703708794] +centroid = (0.78128632475938231, -1.628032165592608) +description = Burnsville city, MN +station = ('kmsp', 0.001946278180707992) +zone = ('mnz070', 0.0031050413401491738) + +[fips2703710306] +centroid = (0.77815811878115526, -1.624475673269234) +description = Castle Rock township, MN +station = ('klvn', 0.0020350783296877711) +zone = ('mnz070', 0.0015169678298688984) + +[fips2703712376] +centroid = (0.78044031131106306, -1.6237168739236372) +description = Coates city, MN +station = ('ksgs', 0.002465923063831049) +zone = ('mnz070', 0.00087515604530774452) + +[fips2703716228] +centroid = (0.77805051923276991, -1.6207457301247972) +description = Douglas township, MN +station = ('ksyn', 0.0026382150967231865) +zone = ('mnz078', 0.0034239032939613633) + +[fips2703717288] +centroid = (0.78217803092751881, -1.6259906190599653) +description = Eagan city, MN +station = ('kmsp', 0.0011173693829337381) +zone = ('mnz070', 0.0027803222611821597) + +[fips2703718] +centroid = (0.79514032948269286, -1.6852954235128685) +description = Barry city, MN +station = ('keth', 0.0036535454072335822) +zone = ('mnz046', 0.0029414062100064321) + +[fips2703719376] +centroid = (0.77981122483547438, -1.6247661135100586) +description = Empire township, MN +station = ('klvn', 0.0019159013219309908) +zone = ('mnz070', 0.00035954088554620737) + +[fips2703719871] +centroid = (0.77808123702760501, -1.6268792534486181) +description = Eureka township, MN +station = ('klvn', 0.00084062199280147889) +zone = ('mnz070', 0.0024271025423738156) + +[fips2703720618] +centroid = (0.77940566267718836, -1.6260859838502941) +description = Farmington city, MN +station = ('klvn', 0.00090151430810983351) +zone = ('mnz070', 0.0012966772841365663) + +[fips2703725802] +centroid = (0.77689050359872436, -1.6269214031500536) +description = Greenvale township, MN +station = ('klvn', 0.002016986891783834) +zone = ('mnz077', 0.0029433569126704482) + +[fips2703726864] +centroid = (0.77855898600375339, -1.6231905175278205) +description = Hampton city, MN +station = ('ksyn', 0.0023256193176994264) +zone = ('mnz070', 0.0013633883972488557) + +[fips2703726882] +centroid = (0.77813380634467499, -1.622608467675573) +description = Hampton township, MN +station = ('ksyn', 0.0019838297336198015) +zone = ('mnz070', 0.0019521910970165968) + +[fips2703727530] +centroid = (0.78068151581368872, -1.6206133643543257) +description = Hastings city, MN +station = ('ksgs', 0.0031361821553118749) +zone = ('mnz070', 0.0028096334993197932) + +[fips2703731076] +centroid = (0.78232055451423665, -1.6241695599717267) +description = Inver Grove Heights city, MN +station = ('ksgs', 0.00066401023481463186) +zone = ('mnz070', 0.0026522085789348134) + +[fips2703735180] +centroid = (0.77981899155064571, -1.6274148077295927) +description = Lakeville city, MN +station = ('klvn', 0.00093844836264368736) +zone = ('mnz070', 0.0022191150664744529) + +[fips2703737016] +centroid = (0.78380616132024172, -1.6254383096181715) +description = Lilydale city, MN +station = ('kstp', 0.0010860787488688429) +zone = ('mnz062', 0.001929701447257604) + +[fips2703740724] +centroid = (0.7795697410801683, -1.6204201389528377) +description = Marshan township, MN +station = ('ksyn', 0.0039632150714234175) +zone = ('mnz070', 0.0027619129802784696) + +[fips2703741678] +centroid = (0.78341918691848944, -1.625966777862383) +description = Mendota city, MN +station = ('kmsp', 0.00077111492998708196) +zone = ('mnz062', 0.0024012978361942234) + +[fips2703741696] +centroid = (0.78328514563193641, -1.6254937063686299) +description = Mendota Heights city, MN +station = ('kstp', 0.0014063686805121183) +zone = ('mnz062', 0.0024488982332761117) + +[fips2703742092] +centroid = (0.77839998650889675, -1.6200000032952975) +description = Miesville city, MN +station = ('ksyn', 0.003266292585864737) +zone = ('mnz078', 0.0035134621147205549) + +[fips2703746024] +centroid = (0.77848803836965985, -1.6219846695476177) +description = New Trier city, MN +station = ('ksyn', 0.002475012841921545) +zone = ('mnz070', 0.0020282851794871742) + +[fips2703746330] +centroid = (0.78097460895497617, -1.6217894544707823) +description = Nininger township, MN +station = ('ksgs', 0.0023714239369444735) +zone = ('mnz070', 0.0022109555735634334) + +[fips2703746924] +centroid = (0.77621061058860996, -1.6264676175445352) +description = Northfield city, MN +station = ('klvn', 0.0027329423371049489) +zone = ('mnz077', 0.0024747859067797921) + +[fips2703753098] +centroid = (0.77711057216410839, -1.6234936288590145) +description = Randolph city, MN +station = ('ksyn', 0.00087146264148431644) +zone = ('mnz070', 0.0026232118002604832) + +[fips2703753116] +centroid = (0.77727444112757815, -1.6226199519420512) +description = Randolph township, MN +station = ('ksyn', 0.0011873842972482044) +zone = ('mnz070', 0.0026779538793078729) + +[fips2703753260] +centroid = (0.77996036322005724, -1.6191462056785144) +description = Ravenna township, MN +station = ('ksgs', 0.0043885083577819544) +zone = ('mnz078', 0.0048975236161031676) + +[fips2703755726] +centroid = (0.78096691205297486, -1.6243738333073805) +description = Rosemount city, MN +station = ('ksgs', 0.0019926686650249309) +zone = ('mnz070', 0.0012979478197134677) + +[fips2703759008] +centroid = (0.77676321673637649, -1.6241337283621835) +description = Sciota township, MN +station = ('ksyn', 0.00072143878796023376) +zone = ('mnz070', 0.0029092201111961449) + +[fips2703761492] +centroid = (0.78344386587411274, -1.6238630103419067) +description = South St. Paul city, MN +station = ('ksgs', 0.00054605659584101894) +zone = ('mnz062', 0.0023673183359313207) + +[fips2703763544] +centroid = (0.78317588802076143, -1.6246739950321383) +description = Sunfish Lake city, MN +station = ('ksgs', 0.00072250436393671183) +zone = ('mnz062', 0.0025254043669926079) + +[fips2703766802] +centroid = (0.77963464987505005, -1.6225179723538572) +description = Vermillion city, MN +station = ('ksgs', 0.0033825507652150721) +zone = ('mnz070', 0.0012686065325227284) + +[fips2703766820] +centroid = (0.77935508303546552, -1.6232519182109058) +description = Vermillion township, MN +station = ('ksyn', 0.0031178517339627925) +zone = ('mnz070', 0.00080998814547636054) + +[fips2703768530] +centroid = (0.7768790542388313, -1.6253040239855234) +description = Waterford township, MN +station = ('ksyn', 0.0014769197582509012) +zone = ('mnz070', 0.0028808660212467068) + +[fips2703769700] +centroid = (0.78369496639359715, -1.6246454414455758) +description = West St. Paul city, MN +station = ('kstp', 0.00069414805596456535) +zone = ('mnz062', 0.0020091796614291808) + +[fips27039] +centroid = (0.76830625875242287, -1.6208759840468736) +description = Dodge County, MN +station = ('ktob', 0.00047871818365963399) +zone = ('mnz086', 9.7449432541081316e-05) + +[fips2703902512] +centroid = (0.76747694810504541, -1.6208565061724212) +description = Ashland township, MN +station = ('ktob', 0.00090951688220971389) +zone = ('mnz086', 0.00086417708142734083) + +[fips2703906580] +centroid = (0.76563206527251726, -1.6239104309376835) +description = Blooming Prairie city, MN +station = ('ktob', 0.0037406206386773008) +zone = ('mnz086', 0.0035363093279350945) + +[fips2703909640] +centroid = (0.76747176447716692, -1.6187445181511679) +description = Canisteo township, MN +station = ('ktob', 0.0013183016773794867) +zone = ('mnz086', 0.001681090677133348) + +[fips2703911566] +centroid = (0.76873454509756989, -1.6231265163041502) +description = Claremont city, MN +station = ('ktob', 0.0021475001312605542) +zone = ('mnz086', 0.0017557037276362056) + +[fips2703911584] +centroid = (0.76927378202326602, -1.6228714015273862) +description = Claremont township, MN +station = ('ktob', 0.0021628121605379745) +zone = ('mnz086', 0.0017906635538569369) + +[fips2703912934] +centroid = (0.77073628066997468, -1.6209830599964834) +description = Concord township, MN +station = ('ktob', 0.0025372393708798418) +zone = ('mnz086', 0.0024046623061773531) + +[fips2703915994] +centroid = (0.76844492516149399, -1.6205519636712407) +description = Dodge Center city, MN +station = ('ktob', 0.00030572653384620496) +zone = ('mnz086', 0.00017698256778843574) + +[fips2703918764] +centroid = (0.77043151127599141, -1.6228195128887244) +description = Ellington township, MN +station = ('ktob', 0.0028671264570530441) +zone = ('mnz086', 0.0025689731976270094) + +[fips2703927872] +centroid = (0.76603045412757753, -1.6204868105302637) +description = Hayfield city, MN +station = ('ktob', 0.0022382177504557581) +zone = ('mnz086', 0.0023147442576942124) + +[fips2703927890] +centroid = (0.76604122280906228, -1.6207360435474485) +description = Hayfield township, MN +station = ('ktob', 0.0022504533777302667) +zone = ('mnz086', 0.002296362349600331) + +[fips2703932498] +centroid = (0.76851562844949217, -1.6187671201649814) +description = Kasson city, MN +station = ('ktob', 0.0010708691502394816) +zone = ('mnz086', 0.0014350999351757673) + +[fips2703939986] +centroid = (0.76909568862639244, -1.6188567951819488) +description = Mantorville city, MN +station = ('ktob', 0.0012842543576515534) +zone = ('mnz086', 0.0015562905303148559) + +[fips2703940004] +centroid = (0.76907703105668868, -1.6184291720619177) +description = Mantorville township, MN +station = ('ktob', 0.0015206891626836014) +zone = ('mnz086', 0.0018232317393078847) + +[fips2703942380] +centroid = (0.77051560123935248, -1.6184484754034445) +description = Milton township, MN +station = ('ktob', 0.0025874796512222681) +zone = ('mnz086', 0.0027333737584005809) + +[fips2703954502] +centroid = (0.76760063958913416, -1.6228795696682854) +description = Ripley township, MN +station = ('ktob', 0.0020280950169632946) +zone = ('mnz086', 0.0017014131628584504) + +[fips2703966892] +centroid = (0.7660592520602354, -1.6186030592152938) +description = Vernon township, MN +station = ('ktob', 0.0024873978638112054) +zone = ('mnz086', 0.0027520991944308395) + +[fips2703968404] +centroid = (0.76914223655754321, -1.6207797116853335) +description = Wasioja township, MN +station = ('ktob', 0.00097162681165705001) +zone = ('mnz086', 0.00080499654120965054) + +[fips2703969304] +centroid = (0.77061206558711026, -1.6214109274626096) +description = West Concord city, MN +station = ('ktob', 0.0025044267577084686) +zone = ('mnz086', 0.0023238551103246016) + +[fips2703969448] +centroid = (0.76606209694691607, -1.6228950158321656) +description = Westfield township, MN +station = ('ktob', 0.0029253132823652576) +zone = ('mnz086', 0.002750865385107474) + +[fips2703970] +centroid = (0.80784526178636784, -1.6706582022877254) +description = Battle Lake city, MN +station = ('ky63', 0.0061598393582260706) +zone = ('mnz030', 0.0041338216399843851) + +[fips2704024] +centroid = (0.8501894452605806, -1.6509384775610199) +description = Baudette city, MN +station = ('kbde', 0.00046595714914138736) +zone = ('mnz006', 0.0037530657529398913) + +[fips2704042] +centroid = (0.80874003973398767, -1.6455460733974729) +description = Baxter city, MN +station = ('kbrd', 0.0021062125475730833) +zone = ('mnz034', 0.0035931305845222964) + +[fips27041] +centroid = (0.80174193265860627, -1.6661019504622241) +description = Douglas County, MN +station = ('kaxn', 0.0014228206411180644) +zone = ('mnz041', 9.8574226848849908e-05) + +[fips2704100928] +centroid = (0.8006571232620292, -1.6646703790498607) +description = Alexandria city, MN +station = ('kaxn', 0.00029213539152693425) +zone = ('mnz041', 0.0013796823644782069) + +[fips2704100946] +centroid = (0.80096990371727916, -1.6634945507327923) +description = Alexandria township, MN +station = ('kaxn', 0.0011671461442910476) +zone = ('mnz041', 0.0018734764005653272) + +[fips2704104924] +centroid = (0.80219371113548499, -1.6618216177381708) +description = Belle River township, MN +station = ('kaxn', 0.0027952207088634703) +zone = ('mnz041', 0.0029327121287568256) + +[fips2704107336] +centroid = (0.80227394392119922, -1.6684295739125614) +description = Brandon city, MN +station = ('kaxn', 0.0029340078833133931) +zone = ('mnz041', 0.0018004891043118182) + +[fips2704107354] +centroid = (0.80245247365038563, -1.6681920520546576) +description = Brandon township, MN +station = ('kaxn', 0.0029177067522669466) +zone = ('mnz041', 0.0017159292576251013) + +[fips2704109964] +centroid = (0.80238859459976275, -1.6631648754903829) +description = Carlos city, MN +station = ('kaxn', 0.002276940658957941) +zone = ('mnz041', 0.0020752835078187782) + +[fips2704109982] +centroid = (0.80242732345586443, -1.6639550209493459) +description = Carlos township, MN +station = ('kaxn', 0.0020482415088150623) +zone = ('mnz041', 0.0015859016486717064) + +[fips2704114] +centroid = (0.78569228628299437, -1.619376798579288) +description = Bayport city, MN +station = ('k21d', 0.00087220906000011218) +zone = ('mnz063', 0.0012943306470926323) + +[fips2704119898] +centroid = (0.80295621057909639, -1.6700702881291911) +description = Evansville city, MN +station = ('kaxn', 0.0042582142007492061) +zone = ('mnz041', 0.0031117446456595775) + +[fips2704119916] +centroid = (0.8023438792643266, -1.670622737197325) +description = Evansville township, MN +station = ('kaxn', 0.004286284844566295) +zone = ('mnz041', 0.0032940648316968938) + +[fips2704121608] +centroid = (0.79916420352645834, -1.6642909270171848) +description = Forada city, MN +station = ('kaxn', 0.0014578904877024334) +zone = ('mnz041', 0.0027895335551077188) + +[fips2704123120] +centroid = (0.80176481392509991, -1.6667639363942131) +description = Garfield city, MN +station = ('kaxn', 0.0017236848562108198) +zone = ('mnz041', 0.00055121874752039749) + +[fips2704129798] +centroid = (0.7995058342742436, -1.6677392961933977) +description = Holmes City township, MN +station = ('kaxn', 0.0021361726218641808) +zone = ('mnz041', 0.0025086978443831938) + +[fips2704130374] +centroid = (0.79945909435687534, -1.6637441328158276) +description = Hudson township, MN +station = ('kaxn', 0.0013982406024573447) +zone = ('mnz041', 0.0027230850686008048) + +[fips2704130716] +centroid = (0.8026421734867849, -1.6659593570623361) +description = Ida township, MN +station = ('kaxn', 0.0022114386444659845) +zone = ('mnz041', 0.00094795810520055892) + +[fips2704132768] +centroid = (0.79898071706219609, -1.6702269488828503) +description = Kensington city, MN +station = ('kaxn', 0.0039278713820058864) +zone = ('mnz041', 0.0040151238400513703) + +[fips2704133992] +centroid = (0.80098349983215222, -1.6660311250011783) +description = La Grand township, MN +station = ('kaxn', 0.0008264162534409135) +zone = ('mnz041', 0.00071176828788257574) + +[fips2704134730] +centroid = (0.79921715681596384, -1.666085404740915) +description = Lake Mary township, MN +station = ('kaxn', 0.0014950635355554639) +zone = ('mnz041', 0.0024782777088768406) + +[fips2704136062] +centroid = (0.80402597523752117, -1.6658209873592382) +description = Leaf Valley township, MN +station = ('kaxn', 0.0035430162626695701) +zone = ('mnz041', 0.0023342175700654371) + +[fips2704138510] +centroid = (0.80384997623575016, -1.6705477229460741) +description = Lund township, MN +station = ('ky63', 0.0034946258682019221) +zone = ('mnz041', 0.0038374442908296605) + +[fips2704142254] +centroid = (0.80405726899100949, -1.667784255874929) +description = Millerville city, MN +station = ('kaxn', 0.0040135887199952746) +zone = ('mnz041', 0.0026754672518675155) + +[fips2704142272] +centroid = (0.80399047524053557, -1.6683388516980426) +description = Millerville township, MN +station = ('kaxn', 0.0041543582985281045) +zone = ('mnz041', 0.00282176012988323) + +[fips2704142398] +centroid = (0.80365875796290165, -1.6631801296680453) +description = Miltona city, MN +station = ('kaxn', 0.0033917136412481229) +zone = ('mnz041', 0.0027636033216636756) + +[fips2704142416] +centroid = (0.80400339067700033, -1.6639339897318592) +description = Miltona township, MN +station = ('kaxn', 0.003563582269721666) +zone = ('mnz041', 0.0027106637053641077) + +[fips2704143558] +centroid = (0.80081395854861337, -1.6679064812824462) +description = Moe township, MN +station = ('kaxn', 0.0020137943668291818) +zone = ('mnz041', 0.0016049398292101421) + +[fips2704145106] +centroid = (0.80087190347977966, -1.6626861665831461) +description = Nelson city, MN +station = ('kaxn', 0.0016779987779738229) +zone = ('mnz041', 0.002433487902611883) + +[fips2704148472] +centroid = (0.79949661893579316, -1.6614061770163184) +description = Orange township, MN +station = ('kaxn', 0.0027349828281962572) +zone = ('mnz041', 0.0038681184409476996) + +[fips2704148796] +centroid = (0.80040822185740235, -1.6608212473708051) +description = Osakis city, MN +station = ('kaxn', 0.0029429723306802903) +zone = ('mnz041', 0.0038122353162518448) + +[fips2704148814] +centroid = (0.80089892117660055, -1.661771509335346) +description = Osakis township, MN +station = ('kaxn', 0.0023089535577831251) +zone = ('mnz041', 0.0030328297409430941) + +[fips2704161078] +centroid = (0.79956983549791427, -1.6704167883455896) +description = Solem township, MN +station = ('kaxn', 0.0038627892732663815) +zone = ('mnz041', 0.0037503688710824861) + +[fips2704162248] +centroid = (0.80388928105050494, -1.661817394041381) +description = Spruce Hill township, MN +station = ('kaxn', 0.0040439584787804539) +zone = ('mnz041', 0.0036292733015065325) + +[fips2704166406] +centroid = (0.80092728277694536, -1.6702083785796089) +description = Urness township, MN +station = ('kaxn', 0.0036177994206890093) +zone = ('mnz041', 0.0030417461956708238) + +[fips2704204] +centroid = (0.79513416847043328, -1.6879791115839049) +description = Beardsley city, MN +station = ('keth', 0.0042597751362626439) +zone = ('sdz008', 0.0030981282481750512) + +[fips27043] +centroid = (0.76229911471973877, -1.6396885564415624) +description = Faribault County, MN +station = ('kfrm', 0.0059450439495687098) +zone = ('mnz092', 4.652837653877344e-05) + +[fips2704303520] +centroid = (0.76306854312048056, -1.6396911046222702) +description = Barber township, MN +station = ('kfrm', 0.0060498144759224461) +zone = ('mnz092', 0.0008152173422352148) + +[fips2704306688] +centroid = (0.7616699060711023, -1.6423604809934407) +description = Blue Earth city, MN +station = ('kfrm', 0.0039987632371250321) +zone = ('mnz092', 0.0020111718065724863) + +[fips2704306706] +centroid = (0.76139869935863491, -1.6417976123096722) +description = Blue Earth City township, MN +station = ('kfrm', 0.0044248622404454707) +zone = ('mnz092', 0.0017417524531773748) + +[fips2704307678] +centroid = (0.76027952442908608, -1.6373466911045291) +description = Bricelyn city, MN +station = ('kfxy', 0.0062713462638749476) +zone = ('mnz092', 0.0026075005757019601) + +[fips2704308380] +centroid = (0.76136698672612613, -1.6374324042240944) +description = Brush Creek township, MN +station = ('kfxy', 0.0073056168298525365) +zone = ('mnz092', 0.0018650228709725023) + +[fips2704311638] +centroid = (0.76296818668849087, -1.6354588557191094) +description = Clark township, MN +station = ('kael', 0.0043031346450399435) +zone = ('mnz092', 0.0031488369527568169) + +[fips2704315472] +centroid = (0.76389050593170726, -1.6409224169562597) +description = Delavan city, MN +station = ('kfrm', 0.00543386305917435) +zone = ('mnz092', 0.0018602537742695038) + +[fips2704315490] +centroid = (0.76452226276105162, -1.6421690532810818) +description = Delavan township, MN +station = ('kfrm', 0.0049251206198711699) +zone = ('mnz092', 0.0028861277271402504) + +[fips2704317108] +centroid = (0.76455947318070405, -1.6354654705169744) +description = Dunbar township, MN +station = ('kacq', 0.0050422675392426354) +zone = ('mnz092', 0.0038312923705868442) + +[fips2704317738] +centroid = (0.76386223159782485, -1.6388622128539132) +description = Easton city, MN +station = ('kfrm', 0.0068274366558949487) +zone = ('mnz092', 0.0017190896885826209) + +[fips2704318998] +centroid = (0.75933816364373041, -1.6421594016103183) +description = Elmore city, MN +station = ('kfrm', 0.0048399048529481504) +zone = ('mnz092', 0.003416274199796373) + +[fips2704319016] +centroid = (0.76010068054063429, -1.6417505582330385) +description = Elmore township, MN +station = ('kfrm', 0.0047671245969724673) +zone = ('mnz092', 0.0026149194108097112) + +[fips2704319268] +centroid = (0.76155776866666158, -1.6397510392287837) +description = Emerald township, MN +station = ('kfrm', 0.0058904604686060768) +zone = ('mnz092', 0.00069655616498090825) + +[fips2704322076] +centroid = (0.76163267819815728, -1.6357150875065947) +description = Foster township, MN +station = ('kael', 0.004524579842149698) +zone = ('mnz092', 0.0029492484073355275) + +[fips2704322940] +centroid = (0.76069664066702025, -1.6393195589311058) +description = Frost city, MN +station = ('kfrm', 0.0063025451991297237) +zone = ('mnz092', 0.0015809021205952538) + +[fips2704331976] +centroid = (0.76144142501872381, -1.643780376153108) +description = Jo Daviess township, MN +station = ('kfrm', 0.0029942937935873506) +zone = ('mnz092', 0.0030618859272700176) + +[fips2704333056] +centroid = (0.75985593301962706, -1.635568305316502) +description = Kiester city, MN +station = ('kfxy', 0.0054736330495286757) +zone = ('iaz006', 0.0027910412422443229) + +[fips2704333074] +centroid = (0.76005552887288519, -1.6357014913917214) +description = Kiester township, MN +station = ('kfxy', 0.0056893884942424838) +zone = ('iaz006', 0.0029817280845855312) + +[fips2704338528] +centroid = (0.76458497244107582, -1.6397123627325598) +description = Lura township, MN +station = ('kfrm', 0.0065118965418787967) +zone = ('mnz092', 0.0023316368663527489) + +[fips2704343198] +centroid = (0.76519971231021322, -1.6376075131079471) +description = Minnesota Lake city, MN +station = ('kacq', 0.0053040906416116397) +zone = ('mnz092', 0.0033114249727600837) + +[fips2704343216] +centroid = (0.76452879029245413, -1.6376941512520162) +description = Minnesota Lake township, MN +station = ('kacq', 0.0058674744138537543) +zone = ('mnz092', 0.0026978180975540966) + +[fips2704348] +centroid = (0.82615580767501329, -1.6723134725503168) +description = Beaulieu CDP, MN +station = ('kfse', 0.0045236358065939928) +zone = ('mnz022', 0.00019644770738356498) + +[fips2704350974] +centroid = (0.76010476461108389, -1.6440633463847338) +description = Pilot Grove township, MN +station = ('kfrm', 0.003262491543510937) +zone = ('mnz092', 0.0038204580671666512) + +[fips2704352432] +centroid = (0.76306885727974583, -1.6418797998641488) +description = Prescott township, MN +station = ('kfrm', 0.0045118792020201557) +zone = ('mnz092', 0.001774372812908523) + +[fips2704355348] +centroid = (0.75986392662760116, -1.6398540311079441) +description = Rome township, MN +station = ('kfrm', 0.0061394534219030997) +zone = ('mnz092', 0.0023920211959041178) + +[fips2704359206] +centroid = (0.75984683985422419, -1.6374417940954702) +description = Seely township, MN +station = ('kfxy', 0.0059047764358195554) +zone = ('mnz092', 0.0029095676730496595) + +[fips2704366946] +centroid = (0.76290579116773194, -1.6440502389620515) +description = Verona township, MN +station = ('kfrm', 0.0029701776160689394) +zone = ('mnz092', 0.0032122919338828447) + +[fips2704367864] +centroid = (0.76307637964882191, -1.6374307810678901) +description = Walnut Lake township, MN +station = ('kacq', 0.0069924882372360145) +zone = ('mnz092', 0.0018356196992783292) + +[fips2704367900] +centroid = (0.76104917972263053, -1.6349247326081215) +description = Walters city, MN +station = ('kael', 0.0041192892981419971) +zone = ('iaz006', 0.0040408328368369707) + +[fips2704369106] +centroid = (0.76345843222208354, -1.6358582394118431) +description = Wells city, MN +station = ('kacq', 0.00617067800564201) +zone = ('mnz092', 0.003027389569783219) + +[fips2704370924] +centroid = (0.7638225951705121, -1.6435875172707626) +description = Winnebago city, MN +station = ('kfrm', 0.0036853374476661163) +zone = ('mnz092', 0.0032180720714341487) + +[fips2704370978] +centroid = (0.76452561379321538, -1.6436988518237474) +description = Winnebago City township, MN +station = ('kfrm', 0.0040459274049291904) +zone = ('mnz092', 0.0036755451655794292) + +[fips2704456] +centroid = (0.82478289677880945, -1.5934711033847389) +description = Beaver Bay city, MN +station = ('kbfw', 0.0015502635257741979) +zone = ('mnz020', 0.0018164392989775053) + +[fips2704492] +centroid = (0.76118379696783689, -1.6818389734622188) +description = Beaver Creek city, MN +station = ('klyv', 0.0018598091539260733) +zone = ('mnz098', 0.0017526670237708491) + +[fips27045] +centroid = (0.76231216978254368, -1.6073379537313441) +description = Fillmore County, MN +station = ('kfka', 0.0010861496193573154) +zone = ('mnz095', 7.2805516686398953e-05) + +[fips2704501396] +centroid = (0.76149680431588951, -1.6041329881726143) +description = Amherst township, MN +station = ('kfka', 0.0034992119108922786) +zone = ('mnz095', 0.0023968203974105949) + +[fips2704502098] +centroid = (0.76452975022354264, -1.6041133183119443) +description = Arendahl township, MN +station = ('kfka', 0.0040773123703781141) +zone = ('mnz095', 0.0032239029777091227) + +[fips2704504402] +centroid = (0.75998742612547232, -1.6124990145025389) +description = Beaver township, MN +station = ('kfka', 0.0035179071096276839) +zone = ('iaz009', 0.0033940803726893272) + +[fips2704506544] +centroid = (0.76162190951667241, -1.6122645993307034) +description = Bloomfield township, MN +station = ('kfka', 0.0025694279844725352) +zone = ('iaz009', 0.0049591095681708868) + +[fips2704507804] +centroid = (0.759986274208166, -1.6083109398827458) +description = Bristol township, MN +station = ('kfka', 0.0023467988260548246) +zone = ('mnz095', 0.0023894968460592258) + +[fips2704509802] +centroid = (0.75973524350185162, -1.6044805530398565) +description = Canton city, MN +station = ('kfka', 0.0040682092717039004) +zone = ('mnz095', 0.0032320174390709513) + +[fips2704509820] +centroid = (0.75999433762931023, -1.604119479324204) +description = Canton township, MN +station = ('kfka', 0.0041235582111676591) +zone = ('mnz095', 0.0032144648322770001) + +[fips2704509910] +centroid = (0.76149301695141269, -1.6083178164799987) +description = Carimona township, MN +station = ('kfka', 0.0008924272226749244) +zone = ('mnz095', 0.0010721832669099082) + +[fips2704510090] +centroid = (0.76313626189545791, -1.6060530248827332) +description = Carrolton township, MN +station = ('kfka', 0.0021806651532523084) +zone = ('mnz095', 0.0012480102823675) + +[fips2704511008] +centroid = (0.76514691610034036, -1.6088605440641988) +description = Chatfield city, MN +station = ('kfka', 0.0028453164669106157) +zone = ('mnz095', 0.0031102032878793841) + +[fips2704511026] +centroid = (0.76449079447463808, -1.6082776390006177) +description = Chatfield township, MN +station = ('kfka', 0.0022264945112073393) +zone = ('mnz095', 0.0023500302958699105) + +[fips2704521068] +centroid = (0.7633925460428207, -1.6098793451084656) +description = Fillmore township, MN +station = ('kfka', 0.0013247344269767011) +zone = ('mnz095', 0.0021992999489163119) + +[fips2704521860] +centroid = (0.76150046950731876, -1.6104049859192886) +description = Forestville township, MN +station = ('kfka', 0.0013872830532176029) +zone = ('mnz095', 0.0023867802921576269) + +[fips2704522094] +centroid = (0.76343090837977956, -1.6080452484107148) +description = Fountain city, MN +station = ('kfka', 0.0012668877069238519) +zone = ('mnz095', 0.0013008399038215842) + +[fips2704522112] +centroid = (0.76300887031335485, -1.6083281313758779) +description = Fountain township, MN +station = ('kfka', 0.0007980933064466539) +zone = ('mnz095', 0.00107119459187144) + +[fips2704527188] +centroid = (0.76015958540288897, -1.6058352776052542) +description = Harmony city, MN +station = ('kfka', 0.0030528007038947732) +zone = ('mnz095', 0.0023405934091409657) + +[fips2704527206] +centroid = (0.75998077642102224, -1.6062323225567905) +description = Harmony township, MN +station = ('kfka', 0.0029917106438577647) +zone = ('mnz095', 0.0023964569776343102) + +[fips2704529852] +centroid = (0.7627390773175815, -1.6039045943866983) +description = Holt township, MN +station = ('kfka', 0.0035952395944836373) +zone = ('mnz095', 0.0024850967305208634) + +[fips2704532156] +centroid = (0.76452919171818201, -1.6104015999805397) +description = Jordan township, MN +station = ('kfka', 0.0024970849984572341) +zone = ('mnz095', 0.0032051335341450244) + +[fips2704535450] +centroid = (0.76302435138381997, -1.6052127012077755) +description = Lanesboro city, MN +station = ('kfka', 0.0027200520198582654) +zone = ('mnz095', 0.0016781021228506046) + +[fips2704538888] +centroid = (0.75956627817696609, -1.6016555282059934) +description = Mabel city, MN +station = ('kdeh', 0.0041530693065184423) +zone = ('iaz010', 0.0041159531525367726) + +[fips2704545466] +centroid = (0.7599927144731059, -1.6020470579170933) +description = Newburg township, MN +station = ('kdeh', 0.0046133938819029408) +zone = ('iaz010', 0.0044801969258176332) + +[fips2704547392] +centroid = (0.76261105741694768, -1.6018229925477223) +description = Norway township, MN +station = ('kona', 0.0068582431689538335) +zone = ('mnz096', 0.003618225899690024) + +[fips2704549030] +centroid = (0.76120645134152776, -1.6131480500914779) +description = Ostrander city, MN +station = ('kfka', 0.0033044333160753472) +zone = ('iaz009', 0.004696416533616383) + +[fips2704550596] +centroid = (0.76423951942222856, -1.6027682279640174) +description = Peterson city, MN +station = ('kona', 0.0054193915865247506) +zone = ('mnz088', 0.0035394749103738444) + +[fips2704551010] +centroid = (0.76445510249143489, -1.6062039085965683) +description = Pilot Mound township, MN +station = ('kfka', 0.0028747008315403539) +zone = ('mnz095', 0.0023322579237365876) + +[fips2704552396] +centroid = (0.76149741518112779, -1.6020439861376097) +description = Preble township, MN +station = ('kfka', 0.0049821771149972183) +zone = ('mnz096', 0.0038246270020642877) + +[fips2704552450] +centroid = (0.76222612505042031, -1.6071446759699781) +description = Preston city, MN +station = ('kfka', 0.0012282595989089973) +zone = ('mnz095', 9.8927752046337595e-05) + +[fips2704552468] +centroid = (0.76147402776915096, -1.6061930526486208) +description = Preston township, MN +station = ('kfka', 0.0020860999165292229) +zone = ('mnz095', 0.001106086427781967) + +[fips2704556284] +centroid = (0.76468873226510681, -1.6014063999085637) +description = Rushford city, MN +station = ('kona', 0.0047588928217713357) +zone = ('mnz088', 0.0030441366760826706) + +[fips2704556302] +centroid = (0.76453428807959789, -1.6019605419460718) +description = Rushford Village city, MN +station = ('kona', 0.0049824697202686553) +zone = ('mnz088', 0.0031829875429704464) + +[fips2704562104] +centroid = (0.76247635290527882, -1.6125113539803504) +description = Spring Valley city, MN +station = ('kfka', 0.0026610689763003517) +zone = ('mnz095', 0.0037930816108858278) + +[fips2704562122] +centroid = (0.76307990521391089, -1.612397244353855) +description = Spring Valley township, MN +station = ('krst', 0.0034471710045501014) +zone = ('mnz095', 0.003793776951567544) + +[fips2704563418] +centroid = (0.7645001494394289, -1.6125220703019578) +description = Sumner township, MN +station = ('krst', 0.0021863469770598718) +zone = ('mnz087', 0.0035103251604308122) + +[fips2704569808] +centroid = (0.76330618715143206, -1.6043569488222302) +description = Whalan city, MN +station = ('kfka', 0.0033926843124206002) +zone = ('mnz095', 0.0023571601572426586) + +[fips2704571950] +centroid = (0.76286083148620065, -1.6103534463464773) +description = Wykoff city, MN +station = ('kfka', 0.0012291231013800848) +zone = ('mnz095', 0.0023065656136630609) + +[fips2704572076] +centroid = (0.75991689737039914, -1.6105170709638517) +description = York township, MN +station = ('kfka', 0.0026762227175853286) +zone = ('iaz009', 0.0032406593725650234) + +[fips2704618] +centroid = (0.79208282679246422, -1.6385951949316506) +description = Becker city, MN +station = ('kmgg', 0.0028475762953821195) +zone = ('mnz051', 0.0017172463240623123) + +[fips2704672] +centroid = (0.82803723770207804, -1.6750290826933725) +description = Bejou city, MN +station = ('kfse', 0.0035098571535339437) +zone = ('mnz022', 0.002818624447127876) + +[fips27047] +centroid = (0.76225862308109249, -1.629269900738245) +description = Freeborn County, MN +station = ('kael', 0.00026102934206681186) +zone = ('mnz093', 1.8885874194318002e-05) + +[fips2704700694] +centroid = (0.76191114548031302, -1.6295117859192787) +description = Albert Lea city, MN +station = ('kael', 0.00050784586798559512) +zone = ('mnz093', 0.00039112241264124673) + +[fips2704700712] +centroid = (0.76097371168577432, -1.6297606000574432) +description = Albert Lea township, MN +station = ('kael', 0.0014518716003036843) +zone = ('mnz093', 0.0013311285848779683) + +[fips2704700838] +centroid = (0.76214271576546755, -1.633144758570475) +description = Alden city, MN +station = ('kael', 0.0026103561513078849) +zone = ('mnz093', 0.0028224001354393204) + +[fips2704700856] +centroid = (0.76135555481952555, -1.6337671255284438) +description = Alden township, MN +station = ('kael', 0.003226990899104696) +zone = ('mnz093', 0.0033921840283859693) + +[fips2704703466] +centroid = (0.7630577744389957, -1.6292001050214575) +description = Bancroft township, MN +station = ('kael', 0.00068950909830697198) +zone = ('mnz093', 0.00080684006461737695) + +[fips2704703934] +centroid = (0.76474458280117064, -1.6291021396905432) +description = Bath township, MN +station = ('kael', 0.0023495483500896117) +zone = ('mnz093', 0.0024951310080349311) + +[fips2704710000] +centroid = (0.76299042218316115, -1.6335761516016905) +description = Carlston township, MN +station = ('kael', 0.0029624640393874435) +zone = ('mnz093', 0.0032170517775464394) + +[fips2704711674] +centroid = (0.76380306493618233, -1.628881495166506) +description = Clarks Grove city, MN +station = ('kael', 0.0014682827020316305) +zone = ('mnz093', 0.001573624845348395) + +[fips2704712952] +centroid = (0.7612178134349582, -1.6323793793335979) +description = Conger city, MN +station = ('kael', 0.0023695614780087229) +zone = ('mnz093', 0.0024922124259287122) + +[fips2704719340] +centroid = (0.7592966248075329, -1.6315739447903879) +description = Emmons city, MN +station = ('kael', 0.0034466545835085847) +zone = ('mnz093', 0.0034023228892297963) + +[fips2704722526] +centroid = (0.76386176035892694, -1.6330050100572679) +description = Freeborn city, MN +station = ('kael', 0.0028806067973206379) +zone = ('mnz093', 0.0031582572196675292) + +[fips2704722544] +centroid = (0.76455638394792802, -1.6335962403413808) +description = Freeborn township, MN +station = ('kael', 0.0036184370744351334) +zone = ('mnz084', 0.0037766783528735094) + +[fips2704722634] +centroid = (0.75996047824182145, -1.6292401079679133) +description = Freeman township, MN +station = ('kael', 0.0024681191937707884) +zone = ('mnz093', 0.0022911321401384911) + +[fips2704723354] +centroid = (0.76480406362207864, -1.6278860291743387) +description = Geneva city, MN +station = ('kael', 0.0026735778931236275) +zone = ('mnz093', 0.0027349123069323974) + +[fips2704723372] +centroid = (0.76465274357593072, -1.6269860850521327) +description = Geneva township, MN +station = ('kael', 0.0029051658545412038) +zone = ('mnz093', 0.0029034979631628035) + +[fips2704724056] +centroid = (0.76051303202971043, -1.6280617314701369) +description = Glenville city, MN +station = ('kael', 0.0021905066539759134) +zone = ('mnz093', 0.0019383324001598281) + +[fips2704727404] +centroid = (0.76453236821742065, -1.6316220286112801) +description = Hartland city, MN +station = ('kael', 0.0025882244639377871) +zone = ('mnz093', 0.002854762172997309) + +[fips2704727422] +centroid = (0.76451592721586692, -1.6312673428006899) +description = Hartland township, MN +station = ('kael', 0.0024352268084684233) +zone = ('mnz093', 0.0026945678274673938) + +[fips2704727944] +centroid = (0.76183586942967441, -1.6274500110206054) +description = Hayward city, MN +station = ('kael', 0.001630667709773028) +zone = ('mnz093', 0.001363923374915546) + +[fips2704727962] +centroid = (0.76150952776613656, -1.6272984291750696) +description = Hayward township, MN +station = ('kael', 0.0018688002196034727) +zone = ('mnz093', 0.0015923786664790354) + +[fips2704729636] +centroid = (0.76375220604177918, -1.6267444442171941) +description = Hollandale city, MN +station = ('kael', 0.0024306609049534809) +zone = ('mnz093', 0.0023494458938866326) + +[fips2704737916] +centroid = (0.75994407214685267, -1.6249593389115469) +description = London township, MN +station = ('kaum', 0.0030627739664631031) +zone = ('iaz007', 0.003492492285377507) + +[fips2704739716] +centroid = (0.76315244109762381, -1.6310304841679015) +description = Manchester city, MN +station = ('kael', 0.0012946049309688935) +zone = ('mnz093', 0.0015737152865071527) + +[fips2704739734] +centroid = (0.76298483712955489, -1.6314625578775255) +description = Manchester township, MN +station = ('kael', 0.0014905612988054119) +zone = ('mnz093', 0.0017626300139214131) + +[fips2704739950] +centroid = (0.75989553454035474, -1.6332962531495483) +description = Mansfield township, MN +station = ('kael', 0.0037010170065331699) +zone = ('iaz006', 0.0034196530920132893) + +[fips2704744404] +centroid = (0.76303953574831229, -1.6251390205580396) +description = Moscow township, MN +station = ('kaum', 0.0024511472326368437) +zone = ('mnz093', 0.0030719111918854733) + +[fips2704744890] +centroid = (0.7603200858809025, -1.6260036043096002) +description = Myrtle city, MN +station = ('kaum', 0.003420225748713064) +zone = ('mnz093', 0.0030396653248192227) + +[fips2704745934] +centroid = (0.76459682322669686, -1.6251560549715391) +description = Newry township, MN +station = ('kaum', 0.0033650402523515521) +zone = ('mnz093', 0.0037722458464970235) + +[fips2704747608] +centroid = (0.75992606034897225, -1.6313814175206003) +description = Nunda township, MN +station = ('kael', 0.0028208138038821281) +zone = ('mnz093', 0.0027928012450849976) + +[fips2704747788] +centroid = (0.76155427800815767, -1.6251041663328774) +description = Oakland township, MN +station = ('kaum', 0.0023231186636822163) +zone = ('mnz093', 0.0030765366574597021) + +[fips2704750722] +centroid = (0.76136595698186749, -1.6314839905207399) +description = Pickerel Lake township, MN +station = ('kael', 0.0017473451988934247) +zone = ('mnz093', 0.001845963866280611) + +[fips2704754088] +centroid = (0.7629341178614919, -1.6272115466849053) +description = Riceland township, MN +station = ('kael', 0.0017716759893305397) +zone = ('mnz093', 0.0016214043198811668) + +[fips2704759548] +centroid = (0.75984759034580251, -1.6269840081103228) +description = Shell Rock township, MN +station = ('kael', 0.0031740054903946118) +zone = ('iaz007', 0.0028188077121754085) + +[fips2704762] +centroid = (0.79326287880632251, -1.6580590369367214) +description = Belgrade city, MN +station = ('kpex', 0.0033928198563403867) +zone = ('mnz057', 0.0052051977246561996) + +[fips2704765920] +centroid = (0.76028123485175303, -1.6305483718686233) +description = Twin Lakes city, MN +station = ('kael', 0.0022543475794308504) +zone = ('mnz093', 0.0021844526694284601) + +[fips2704798] +centroid = (0.77442227642384653, -1.6146268850199854) +description = Bellechester city, MN +station = ('krgk', 0.0038377312969023482) +zone = ('mnz078', 0.0027195306919641565) + +[fips2704834] +centroid = (0.7787278815154689, -1.6364764699394845) +description = Belle Plaine city, MN +station = ('kgyl', 0.0046246780982636074) +zone = ('mnz069', 0.0028754762744062664) + +[fips27049] +centroid = (0.77503401432667052, -1.6181994692790624) +description = Goodhue County, MN +station = ('ksyn', 0.003929400312011869) +zone = ('mnz078', 0.00010386507853639791) + +[fips2704904798] +centroid = (0.77443662303029792, -1.6146271293660805) +description = Bellechester city, MN +station = ('krgk', 0.0038234470216807264) +zone = ('mnz078', 0.0027158091169063188) + +[fips2704904816] +centroid = (0.77503401432667052, -1.6181994692790624) +description = Belle Creek township, MN +station = ('ksyn', 0.003929400312011869) +zone = ('mnz078', 0.00010386507853639791) + +[fips2704905032] +centroid = (0.77544980411437314, -1.6143182235417701) +description = Belvidere township, MN +station = ('krgk', 0.0027989186723500273) +zone = ('mnz078', 0.0028746125798529637) + +[fips2704909730] +centroid = (0.77690172606581476, -1.6214416627107373) +description = Cannon Falls city, MN +station = ('ksyn', 0.001569863125167766) +zone = ('mnz078', 0.0028699166760165007) + +[fips2704909748] +centroid = (0.77659269806845654, -1.6204806669712968) +description = Cannon Falls township, MN +station = ('ksyn', 0.0021386939756861414) +zone = ('mnz078', 0.0021507354205584921) + +[fips2704911188] +centroid = (0.7720709688555597, -1.6205518589514856) +description = Cherry Grove township, MN +station = ('ktob', 0.0038187055597268624) +zone = ('mnz078', 0.0034255600951738699) + +[fips2704915706] +centroid = (0.77508171417512761, -1.6236779530813177) +description = Dennison city, MN +station = ('ksyn', 0.001170982331202879) +zone = ('mnz078', 0.0038325930173209416) + +[fips2704920780] +centroid = (0.7771047078578216, -1.6162036852794073) +description = Featherstone township, MN +station = ('krgk', 0.0018357027444551293) +zone = ('mnz078', 0.0025077362352943144) + +[fips2704921392] +centroid = (0.77670921624931977, -1.612189759612378) +description = Florence township, MN +station = ('krgk', 0.0020956279957002315) +zone = ('wiz024', 0.0038470336078443353) + +[fips2704924398] +centroid = (0.77493494943832741, -1.6166217789017221) +description = Goodhue city, MN +station = ('krgk', 0.0037398722549240597) +zone = ('mnz078', 0.0012192471768413856) + +[fips2704924416] +centroid = (0.77527036681397554, -1.6163722840851498) +description = Goodhue township, MN +station = ('krgk', 0.0033600523628540256) +zone = ('mnz078', 0.0013967326254903433) + +[fips2704927818] +centroid = (0.77667113316504122, -1.6144181960013242) +description = Hay Creek township, MN +station = ('krgk', 0.0015846072783096991) +zone = ('mnz078', 0.0031938039430900777) + +[fips2704929546] +centroid = (0.7736493922711859, -1.6228227766544254) +description = Holden township, MN +station = ('ksyn', 0.0026275931937877689) +zone = ('mnz078', 0.0035348119729412104) + +[fips2704932840] +centroid = (0.77270178320710803, -1.6229188395764553) +description = Kenyon city, MN +station = ('ksyn', 0.0035576114762082291) +zone = ('mnz078', 0.0040740234972997686) + +[fips2704932858] +centroid = (0.77209882431042154, -1.622809739044913) +description = Kenyon township, MN +station = ('kowa', 0.0039867636189453567) +zone = ('mnz086', 0.0040419881486765414) + +[fips2704934172] +centroid = (0.77607374186866862, -1.6106841862397301) +description = Lake City city, MN +station = ('krgk', 0.003310619429108169) +zone = ('mnz079', 0.0032423622148476895) + +[fips2704936476] +centroid = (0.77519318835445239, -1.6206859525979163) +description = Leon township, MN +station = ('ksyn', 0.002225846203207928) +zone = ('mnz078', 0.0016977208389819167) + +[fips2704943072] +centroid = (0.77364546528036882, -1.6184176703421471) +description = Minneola township, MN +station = ('ksyn', 0.0044265107256471065) +zone = ('mnz078', 0.001455437959640301) + +[fips2704951136] +centroid = (0.77151811836169804, -1.6169680871319032) +description = Pine Island city, MN +station = ('k9mn', 0.0037669219437940753) +zone = ('mnz078', 0.0037079210415966917) + +[fips2704951154] +centroid = (0.77211886069023439, -1.6162752786853238) +description = Pine Island township, MN +station = ('k9mn', 0.0040905671736317503) +zone = ('mnz078', 0.003317529802651304) + +[fips2704953620] +centroid = (0.77810041819608444, -1.6161785874447634) +description = Red Wing city, MN +station = ('krgk', 0.001425865312641582) +zone = ('wiz024', 0.0032638495841523481) + +[fips2704955492] +centroid = (0.77202909840680445, -1.6185895678201758) +description = Roscoe township, MN +station = ('ktob', 0.0039452128075329268) +zone = ('mnz078', 0.0030762508016410266) + +[fips2704960] +centroid = (0.78777636648950822, -1.6804731835093631) +description = Bellingham city, MN +station = ('kdxx', 0.0029296968364160383) +zone = ('mnz054', 0.0028092236775220797) + +[fips2704962428] +centroid = (0.77649024724136462, -1.6228593063956698) +description = Stanton township, MN +station = ('ksyn', 0.00048241030901583035) +zone = ('mnz070', 0.0033414717711773454) + +[fips2704966640] +centroid = (0.77681006137350006, -1.6184712694034755) +description = Vasa township, MN +station = ('ksyn', 0.0035881677113595968) +zone = ('mnz078', 0.0017148147603367916) + +[fips2704967486] +centroid = (0.77762732924903877, -1.6131534257055742) +description = Wacouta township, MN +station = ('krgk', 0.00096252722722448307) +zone = ('wiz024', 0.0028774696004006668) + +[fips2704967972] +centroid = (0.77322880282804018, -1.6194431385441561) +description = Wanamingo city, MN +station = ('ksyn', 0.0041490532343500157) +zone = ('mnz078', 0.0020373012394543613) + +[fips2704967990] +centroid = (0.77361527108430939, -1.6205945671582818) +description = Wanamingo township, MN +station = ('ksyn', 0.0033188576671889392) +zone = ('mnz078', 0.0022049528944608266) + +[fips2704968242] +centroid = (0.77517161608489782, -1.622652170720043) +description = Warsaw township, MN +station = ('ksyn', 0.0012065570088756602) +zone = ('mnz078', 0.0031004941140061323) + +[fips2704969052] +centroid = (0.77867374140207202, -1.6184732590788229) +description = Welch township, MN +station = ('krgk', 0.0030813583953667703) +zone = ('mnz078', 0.0035765940730943598) + +[fips2704972328] +centroid = (0.77308493533779843, -1.6174491347803377) +description = Zumbrota city, MN +station = ('ktob', 0.0052166097486928079) +zone = ('mnz078', 0.0021066207421999092) + +[fips2704972346] +centroid = (0.77366738661577394, -1.6164640534972197) +description = Zumbrota township, MN +station = ('krgk', 0.0048595682583832166) +zone = ('mnz078', 0.0019483942983317926) + +[fips2705014] +centroid = (0.82977370068147216, -1.6847150666299953) +description = Beltrami city, MN +station = ('kckn', 0.0054686010593969258) +zone = ('mnz002', 0.0038649857388083826) + +[fips2705050] +centroid = (0.77853346929008926, -1.6638027060655245) +description = Belview city, MN +station = ('kgdb', 0.0038025932375119497) +zone = ('mnz073', 0.0036635577780497761) + +[fips2705068] +centroid = (0.82870151001538706, -1.6560032310640898) +description = Bemidji city, MN +station = ('kbji', 0.00068948043887546496) +zone = ('mnz017', 0.0027848988006187441) + +[fips27051] +centroid = (0.80164269323733783, -1.6757028146912272) +description = Grant County, MN +station = ('ky63', 0.00097608641930431537) +zone = ('mnz040', 5.9334812873894394e-05) + +[fips2705102422] +centroid = (0.80447644471746094, -1.6722985848917973) +description = Ashby city, MN +station = ('ky63', 0.0027924773861627669) +zone = ('mnz040', 0.0036580326922995847) + +[fips2705103682] +centroid = (0.80133542802252422, -1.6738545284666577) +description = Barrett city, MN +station = ('ky63', 0.0015521731274470106) +zone = ('mnz040', 0.0013526372287910476) + +[fips2705104] +centroid = (0.82623820466899989, -1.6442117691843234) +description = Bena city, MN +station = ('kxvg', 0.0061032134699488009) +zone = ('mnz025', 0.0041334106760155922) + +[fips2705115508] +centroid = (0.8009681060281495, -1.6766515582193187) +description = Delaware township, MN +station = ('ky63', 0.0018761396042664715) +zone = ('mnz040', 0.00097392973238159982) + +[fips2705118458] +centroid = (0.80268823272574508, -1.6752346301193797) +description = Elbow Lake city, MN +station = ('ky63', 0.00012783327279015512) +zone = ('mnz040', 0.0010463202358783274) + +[fips2705118476] +centroid = (0.80234051077887025, -1.6767341122929382) +description = Elbow Lake township, MN +station = ('ky63', 0.0010714591228446427) +zone = ('mnz040', 0.00094914018432433413) + +[fips2705118620] +centroid = (0.80088642461915616, -1.6722196087431447) +description = Elk Lake township, MN +station = ('ky63', 0.0026780721089630891) +zone = ('mnz040', 0.002572440595977677) + +[fips2705119538] +centroid = (0.8025819072677135, -1.6723984002717189) +description = Erdahl township, MN +station = ('ky63', 0.0019643410225177846) +zone = ('mnz040', 0.0024766410579268074) + +[fips2705124650] +centroid = (0.80096108980455649, -1.6788685277950797) +description = Gorton township, MN +station = ('ky63', 0.0029963485185605871) +zone = ('mnz040', 0.0023069200108809815) + +[fips2705128646] +centroid = (0.79954175315024967, -1.6779760362287799) +description = Herman city, MN +station = ('ky63', 0.0035746841507917335) +zone = ('mnz040', 0.0026659984990746008) + +[fips2705129474] +centroid = (0.79995509947699961, -1.6718080950121095) +description = Hoffman city, MN +station = ('ky63', 0.0035272616568202985) +zone = ('mnz040', 0.0032382180060890825) + +[fips2705135396] +centroid = (0.79928789501054709, -1.6725612394909299) +description = Land township, MN +station = ('ky63', 0.0037614536166555427) +zone = ('mnz040', 0.003267504624611282) + +[fips2705135882] +centroid = (0.80411055389307284, -1.6790176487263699) +description = Lawrence township, MN +station = ('ky63', 0.0030554658245814238) +zone = ('mnz040', 0.0033221659818937093) + +[fips2705136998] +centroid = (0.80087572575084154, -1.6744315866772446) +description = Lien township, MN +station = ('ky63', 0.0017729414744451874) +zone = ('mnz040', 0.0012212249038966042) + +[fips2705137862] +centroid = (0.79929164746843895, -1.6790570757141725) +description = Logan township, MN +station = ('ky63', 0.0042189457492576923) +zone = ('mnz039', 0.0032971999631482649) + +[fips2705139194] +centroid = (0.79943420596174186, -1.6766283453402673) +description = Macsville township, MN +station = ('ky63', 0.0032753388194449763) +zone = ('mnz040', 0.0023506144666005607) + +[fips2705146492] +centroid = (0.80056051928793126, -1.6789461076803309) +description = Norcross city, MN +station = ('ky63', 0.003270939970147145) +zone = ('mnz040', 0.0025129383177089301) + +[fips2705147140] +centroid = (0.80246854813279644, -1.6790797999010336) +description = North Ottawa township, MN +station = ('ky63', 0.0026801477413087153) +zone = ('mnz040', 0.0024543034365781015) + +[fips2705150128] +centroid = (0.8037792380411668, -1.6727364007346603) +description = Pelican Lake township, MN +station = ('ky63', 0.0021147443491034957) +zone = ('mnz040', 0.0029398452781291395) + +[fips2705151838] +centroid = (0.80411715123764538, -1.6746271159133457) +description = Pomme de Terre township, MN +station = ('ky63', 0.0016110197698097255) +zone = ('mnz040', 0.0025355131075914948) + +[fips2705155816] +centroid = (0.79948052700008976, -1.6746369072104494) +description = Roseville township, MN +station = ('ky63', 0.0031071345284845692) +zone = ('mnz040', 0.0023452920683536978) + +[fips2705158468] +centroid = (0.8024125230638075, -1.6746826522901439) +description = Sanford township, MN +station = ('ky63', 0.00040504789992531863) +zone = ('mnz040', 0.0010177339408983035) + +[fips2705162986] +centroid = (0.80394038429100334, -1.6770225454051229) +description = Stony Brook township, MN +station = ('ky63', 0.0018605026046632218) +zone = ('mnz040', 0.0024147541933914455) + +[fips2705169142] +centroid = (0.80347808147873512, -1.6772746931221585) +description = Wendell city, MN +station = ('ky63', 0.0016935327076801571) +zone = ('mnz040', 0.0020782978923276347) + +[fips2705212] +centroid = (0.79089341981381511, -1.6686589799894436) +description = Benson city, MN +station = ('kbbb', 0.00052725803926276173) +zone = ('mnz055', 0.0010708063429321073) + +[fips27053] +centroid = (0.78550400016328925, -1.6314497471608156) +description = Hennepin County, MN +station = ('kmic', 0.0018715248137389198) +zone = ('mnz060', 3.3798014817608123e-05) + +[fips2705306616] +centroid = (0.78242527426935637, -1.6286577788629855) +description = Bloomington city, MN +station = ('kmsp', 0.0013798998753577279) +zone = ('mnz060', 0.0036468277813200118) + +[fips2705307948] +centroid = (0.78660600105299838, -1.6286475337802762) +description = Brooklyn Center city, MN +station = ('kmic', 0.00043823863925938835) +zone = ('mnz062', 0.002805689089721391) + +[fips2705307966] +centroid = (0.78733383825766512, -1.6292489393339284) +description = Brooklyn Park city, MN +station = ('kmic', 0.00077220380172359404) +zone = ('mnz060', 0.0024347797827337578) + +[fips2705310846] +centroid = (0.78841023516724762, -1.6299149918830744) +description = Champlin city, MN +station = ('kmic', 0.0019045937618465904) +zone = ('mnz061', 0.0024662162666464075) + +[fips2705310918] +centroid = (0.78299681723950676, -1.6321643373164596) +description = Chanhassen city, MN +station = ('kfcm', 0.00077430611753668231) +zone = ('mnz060', 0.0025270448654408618) + +[fips2705313168] +centroid = (0.78726194814577544, -1.6332425144618794) +description = Corcoran city, MN +station = ('kcfe', 0.0033890188373118715) +zone = ('mnz060', 0.0021773712044453543) + +[fips2705314158] +centroid = (0.78604934574136731, -1.6294302790432105) +description = Crystal city, MN +station = ('kmic', 0.00052552921772843061) +zone = ('mnz060', 0.0015565458311524122) + +[fips2705315022] +centroid = (0.78869887771894243, -1.6313876134394447) +description = Dayton city, MN +station = ('kmic', 0.0026096829682418646) +zone = ('mnz061', 0.0031332629217312954) + +[fips2705315148] +centroid = (0.78416665907724104, -1.6322884302262768) +description = Deephaven city, MN +station = ('kfcm', 0.0018187906155233554) +zone = ('mnz060', 0.001430051054252944) + +[fips2705318116] +centroid = (0.78274388412430784, -1.631160301757665) +description = Eden Prairie city, MN +station = ('kfcm', 0.00030976805112063803) +zone = ('mnz060', 0.0027420567421038455) + +[fips2705318188] +centroid = (0.78349790126775443, -1.6294350612453612) +description = Edina city, MN +station = ('kmsp', 0.0018203448968515099) +zone = ('mnz060', 0.0024507387440897269) + +[fips2705320078] +centroid = (0.78365456202141337, -1.6330551533666775) +description = Excelsior city, MN +station = ('kfcm', 0.0016852182776438804) +zone = ('mnz060', 0.0021368383526855503) + +[fips2705321965] +centroid = (0.78329553034098565, -1.6270711000399973) +description = Fort Snelling UT, MN +station = ('kmsp', 0.0002435535111169618) +zone = ('mnz062', 0.0028540798939804138) + +[fips2705324308] +centroid = (0.7852276970894061, -1.6294173287001608) +description = Golden Valley city, MN +station = ('kmic', 0.0013383644393112392) +zone = ('mnz060', 0.0014782578820685796) + +[fips2705325622] +centroid = (0.78703988990504425, -1.6352125548550678) +description = Greenfield city, MN +station = ('kcfe', 0.0021900438523932307) +zone = ('mnz059', 0.0036298169556529545) + +[fips2705325918] +centroid = (0.78374490026349675, -1.6327610828410093) +description = Greenwood city, MN +station = ('kfcm', 0.0016142815245438079) +zone = ('mnz060', 0.0019554212149936654) + +[fips2705326990] +centroid = (0.78816044364470217, -1.6343443931785409) +description = Hanover city, MN +station = ('kcfe', 0.0024863054011335091) +zone = ('mnz060', 0.0033614095208630095) + +[fips2705327476] +centroid = (0.78847290994068664, -1.6337368091593365) +description = Hassan township, MN +station = ('kcfe', 0.0029298255468339618) +zone = ('mnz060', 0.0033941802699486959) + +[fips2705330140] +centroid = (0.7840901438428336, -1.6302210877272891) +description = Hopkins city, MN +station = ('kfcm', 0.001811417047026253) +zone = ('mnz060', 0.001647224628398773) + +[fips2705330842] +centroid = (0.78571363165974628, -1.6357123647929614) +description = Independence city, MN +station = ('kcfe', 0.0028915855416924291) +zone = ('mnz068', 0.003592949085783937) + +[fips2705338006] +centroid = (0.78511604837715587, -1.6330704599042176) +description = Long Lake city, MN +station = ('kfcm', 0.0029090656600172121) +zone = ('mnz060', 0.0011825391679685911) + +[fips2705338222] +centroid = (0.78635366134974516, -1.634237177602591) +description = Loretto city, MN +station = ('kcfe', 0.0031430829348488899) +zone = ('mnz060', 0.0021381835993404823) + +[fips2705340166] +centroid = (0.78736626647516716, -1.6312366424591471) +description = Maple Grove city, MN +station = ('kmic', 0.0016078501150662628) +zone = ('mnz060', 0.0018972349784643597) + +[fips2705340256] +centroid = (0.78558041067794149, -1.6346875598160679) +description = Maple Plain city, MN +station = ('kcfe', 0.0034296689759914832) +zone = ('mnz060', 0.0022716201136761629) + +[fips2705341462] +centroid = (0.78544062725814934, -1.630541914150391) +description = Medicine Lake city, MN +station = ('kmic', 0.0014391992489528179) +zone = ('mnz060', 0.00066280860271625112) + +[fips2705341480] +centroid = (0.78599712549014766, -1.6332031572872467) +description = Medina city, MN +station = ('kmic', 0.0028390480799446896) +zone = ('mnz060', 0.0013259065095213127) + +[fips2705343000] +centroid = (0.7847580464409869, -1.6278386434851468) +description = Minneapolis city, MN +station = ('kmsp', 0.0018035903639927182) +zone = ('mnz062', 0.0022861564157256463) + +[fips2705343252] +centroid = (0.7842214973223387, -1.6311244876014139) +description = Minnetonka city, MN +station = ('kfcm', 0.0017598174335195032) +zone = ('mnz060', 0.0012798721213812467) + +[fips2705343270] +centroid = (0.78428223478030812, -1.6333353310715002) +description = Minnetonka Beach city, MN +station = ('kfcm', 0.0022880841389838129) +zone = ('mnz060', 0.0017758110099156234) + +[fips2705343306] +centroid = (0.78432244716627419, -1.6355823028571028) +description = Minnetrista city, MN +station = ('kcfe', 0.0041745248987055152) +zone = ('mnz068', 0.0023375334586033351) + +[fips2705344476] +centroid = (0.78421062392109886, -1.6346457417271902) +description = Mound city, MN +station = ('kfcm', 0.0029046340958669157) +zone = ('mnz068', 0.0026352565517468699) + +[fips2705345628] +centroid = (0.7860360114258822, -1.6299095988156858) +description = New Hope city, MN +station = ('kmic', 0.00069558412925764144) +zone = ('mnz060', 0.0012416852918626315) + +[fips2705348580] +centroid = (0.78471713592332004, -1.6334139930608877) +description = Orono city, MN +station = ('kfcm', 0.0026755803047737899) +zone = ('mnz060', 0.0015659606881870897) + +[fips2705349012] +centroid = (0.78745334095154917, -1.6301280442248653) +description = Osseo city, MN +station = ('kmic', 0.0010799730207475616) +zone = ('mnz060', 0.0021945963110208441) + +[fips2705351730] +centroid = (0.78578292123105042, -1.6312296785954317) +description = Plymouth city, MN +station = ('kmic', 0.00159178980273721) +zone = ('mnz060', 0.00035294564138903988) + +[fips2705354214] +centroid = (0.78320707705449455, -1.6280872656370935) +description = Richfield city, MN +station = ('kmsp', 0.00082594080434747605) +zone = ('mnz062', 0.0033638240593483839) + +[fips2705354808] +centroid = (0.78582608322345227, -1.6289267864605954) +description = Robbinsdale city, MN +station = ('kmic', 0.00077344083327728313) +zone = ('mnz060', 0.0018370070040578381) + +[fips2705355006] +centroid = (0.78694489163385828, -1.6357425066291433) +description = Rockford city, MN +station = ('kcfe', 0.0019385671278688275) +zone = ('mnz059', 0.0033292402541357695) + +[fips2705355186] +centroid = (0.78879712230253718, -1.6329352317937733) +description = Rogers city, MN +station = ('kcfe', 0.0035346753300969096) +zone = ('mnz060', 0.0034761105299263668) + +[fips2705356680] +centroid = (0.78579491164301163, -1.6269175983322846) +description = St. Anthony city, MN +station = ('kmic', 0.0018271564740602693) +zone = ('mnz062', 0.0014358481435349235) + +[fips2705356770] +centroid = (0.78374114780560489, -1.6362143389391275) +description = St. Bonifacius city, MN +station = ('kcfe', 0.0045821164373565917) +zone = ('mnz068', 0.0016168904761874195) + +[fips2705357220] +centroid = (0.78450247787861738, -1.629527266989744) +description = St. Louis Park city, MN +station = ('kmic', 0.0020675789938415863) +zone = ('mnz060', 0.001689147743561272) + +[fips2705360016] +centroid = (0.78401001577687457, -1.6330286418153397) +description = Shorewood city, MN +station = ('kfcm', 0.0019399276965593999) +zone = ('mnz060', 0.0018316912043985405) + +[fips2705362014] +centroid = (0.78429757622443319, -1.6341639784937623) +description = Spring Park city, MN +station = ('kfcm', 0.0026973852896789371) +zone = ('mnz060', 0.0022363902946495999) + +[fips2705365164] +centroid = (0.78392400595133638, -1.6334433320456139) +description = Tonka Bay city, MN +station = ('kfcm', 0.0020701628355034489) +zone = ('mnz060', 0.0020844559732073544) + +[fips2705368818] +centroid = (0.78489793458053425, -1.6321212625905206) +description = Wayzata city, MN +station = ('kfcm', 0.0024865711940556044) +zone = ('mnz060', 0.00073620381513770283) + +[fips2705371500] +centroid = (0.78458319935652199, -1.6321342303868629) +description = Woodland city, MN +station = ('kfcm', 0.002182599756140774) +zone = ('mnz060', 0.0010069111201609169) + +[fips2705482] +centroid = (0.80750232204164352, -1.6591599731755868) +description = Bertha city, MN +station = ('kadc', 0.0036698421914973436) +zone = ('mnz042', 0.0039594815962663557) + +[fips27055] +centroid = (0.76213274993543867, -1.5970034228979724) +description = Houston County, MN +station = ('klse', 0.0049302644028229948) +zone = ('mnz096', 0.00013469824041326085) + +[fips2705506292] +centroid = (0.76165721752744031, -1.6002188080723367) +description = Black Hammer township, MN +station = ('kdeh', 0.0062496362855252183) +zone = ('mnz096', 0.0024987528852075942) + +[fips2705508218] +centroid = (0.76272809919658646, -1.5932754345222977) +description = Brownsville city, MN +station = ('klse', 0.0032163055489873335) +zone = ('mnz096', 0.0026367783031099015) + +[fips2705508236] +centroid = (0.7623527137810675, -1.5938991977436678) +description = Brownsville township, MN +station = ('klse', 0.003675201355195671) +zone = ('mnz096', 0.0021394237827211445) + +[fips2705509226] +centroid = (0.76155918238335574, -1.5969832294385271) +description = Caledonia city, MN +station = ('klse', 0.0053741213971322888) +zone = ('mnz096', 0.000657576095899058) + +[fips2705509244] +centroid = (0.76145191444752813, -1.5980289609131519) +description = Caledonia township, MN +station = ('klse', 0.0059300837426871774) +zone = ('mnz096', 0.0011407209887325141) + +[fips2705513816] +centroid = (0.76094629256322543, -1.5939463041801794) +description = Crooked Creek township, MN +station = ('klse', 0.0050549968247778649) +zone = ('mnz096', 0.0024524601604029605) + +[fips2705518368] +centroid = (0.75936408178312242, -1.596365452696491) +description = Eitzen city, MN +station = ('kdeh', 0.0051965941361404892) +zone = ('mnz096', 0.0028672505771848923) + +[fips2705529510] +centroid = (0.76375716277685479, -1.5943483931332538) +description = Hokah city, MN +station = ('klse', 0.0024893221576733487) +zone = ('mnz096', 0.0023802092480916096) + +[fips2705529528] +centroid = (0.76358737714722091, -1.5936641542533019) +description = Hokah township, MN +station = ('klse', 0.0024420603059767568) +zone = ('mnz096', 0.0026838466062153081) + +[fips2705530230] +centroid = (0.76376712860688367, -1.5982093406913456) +description = Houston city, MN +station = ('klse', 0.0045705230430260046) +zone = ('mnz096', 0.0018411865689380834) + +[fips2705530248] +centroid = (0.76470960640296071, -1.5978507802498159) +description = Houston township, MN +station = ('kona', 0.0050538041596564862) +zone = ('mnz096', 0.0026022209541612124) + +[fips2705531814] +centroid = (0.75987790671490962, -1.5936549738214363) +description = Jefferson township, MN +station = ('ky51', 0.005240827045398324) +zone = ('mnz096', 0.0032851127334910706) + +[fips2705533866] +centroid = (0.76497096945844678, -1.5935045438932069) +description = La Crescent city, MN +station = ('klse', 0.001136921013663621) +zone = ('wiz041', 0.0026966009642192057) + +[fips2705533884] +centroid = (0.76475800438311847, -1.5942658041530493) +description = La Crescent township, MN +station = ('klse', 0.0016567346848454544) +zone = ('mnz096', 0.0031592256554114411) + +[fips2705541228] +centroid = (0.76153087314288848, -1.5959229419179406) +description = Mayville township, MN +station = ('klse', 0.0049880264522439884) +zone = ('mnz096', 0.00095464525058683574) + +[fips2705543648] +centroid = (0.76454132175648337, -1.5999886165972912) +description = Money Creek township, MN +station = ('kona', 0.0048701818763026809) +zone = ('mnz096', 0.0032521867963164965) + +[fips2705544512] +centroid = (0.76433903809617731, -1.5959048428535973) +description = Mound Prairie township, MN +station = ('klse', 0.0028463369865691234) +zone = ('mnz096', 0.0022362942045292752) + +[fips2705554] +centroid = (0.79244103816814337, -1.6279546729738197) +description = Bethel city, MN +station = ('kcbg', 0.0028491199829584549) +zone = ('mnz061', 0.0023014107859731041) + +[fips2705559494] +centroid = (0.76287802297933283, -1.5978506406234758) +description = Sheldon township, MN +station = ('klse', 0.0048453556331830494) +zone = ('mnz096', 0.00098464056190950824) + +[fips2705561852] +centroid = (0.76027858195129006, -1.5993667906913906) +description = Spring Grove city, MN +station = ('kdeh', 0.0049936261389286864) +zone = ('mnz096', 0.0026547604629519909) + +[fips2705561870] +centroid = (0.7599197597103724, -1.6001946003556116) +description = Spring Grove township, MN +station = ('kdeh', 0.0045258120372628809) +zone = ('mnz096', 0.0033327257656177471) + +[fips2705566208] +centroid = (0.76269830642625491, -1.5956376503984095) +description = Union township, MN +station = ('klse', 0.0038824830711976757) +zone = ('mnz096', 0.001004035862815542) + +[fips2705570564] +centroid = (0.75982060755556668, -1.5979725169651424) +description = Wilmington township, MN +station = ('kdeh', 0.0049206611015411936) +zone = ('mnz096', 0.0025234653518807592) + +[fips2705570960] +centroid = (0.7599099160533912, -1.5959130982609593) +description = Winnebago township, MN +station = ('kdeh', 0.0058247589710580258) +zone = ('mnz096', 0.002397901575571413) + +[fips2705572166] +centroid = (0.76302984917096373, -1.6001622419512795) +description = Yucatan township, MN +station = ('kona', 0.0063732449430153734) +zone = ('mnz096', 0.002530970774588432) + +[fips2705644] +centroid = (0.75931618994844774, -1.6700908132011947) +description = Bigelow city, MN +station = ('kotg', 0.0028532025158809404) +zone = ('iaz002', 0.0023680865861757639) + +[fips2705680] +centroid = (0.84089214614837693, -1.6372807700186813) +description = Big Falls city, MN +station = ('kfoz', 0.0071701419451799964) +zone = ('mnz010', 0.0011223087960351625) + +[fips2705698] +centroid = (0.83331277461891129, -1.6345489632201671) +description = Bigfork city, MN +station = ('kfoz', 0.00065466978877890447) +zone = ('mnz018', 0.0016771181483750425) + +[fips27057] +centroid = (0.82197242799090797, -1.6565494144002089) +description = Hubbard County, MN +station = ('kpkd', 0.0038706494342377945) +zone = ('mnz024', 0.0002328380708001523) + +[fips2705700496] +centroid = (0.82031204391360824, -1.6533192462870805) +description = Akeley city, MN +station = ('kpkd', 0.0043967895771680485) +zone = ('mnz024', 0.0029307979190153362) + +[fips2705700514] +centroid = (0.82072781624801827, -1.6535005161831924) +description = Akeley township, MN +station = ('kpkd', 0.0044690688531223745) +zone = ('mnz024', 0.0025789306214476703) + +[fips2705701918] +centroid = (0.82069573709636667, -1.6599175856972925) +description = Arago township, MN +station = ('kpkd', 0.0021877888289705033) +zone = ('mnz024', 0.0027116845434969495) + +[fips2705703178] +centroid = (0.81745783717465181, -1.6535011095951382) +description = Badoura township, MN +station = ('kpwc', 0.0046709507586995581) +zone = ('mnz032', 0.0051798242326649311) + +[fips2705711682] +centroid = (0.82235053612006004, -1.6572027609524003) +description = Clay township, MN +station = ('kpkd', 0.0040344221151231456) +zone = ('mnz024', 0.00043170896601273583) + +[fips2705712232] +centroid = (0.82208320403853208, -1.6593073487776253) +description = Clover township, MN +station = ('kpkd', 0.0035242178885952118) +zone = ('mnz024', 0.0018417049972124374) + +[fips2705714140] +centroid = (0.81757414591600475, -1.6556037251983082) +description = Crow Wing Lake township, MN +station = ('kpkd', 0.0026653363455563222) +zone = ('mnz024', 0.0046781476864793774) + +[fips2705720528] +centroid = (0.82666903919485457, -1.6534524323622999) +description = Farden township, MN +station = ('kbji', 0.0033192159487324354) +zone = ('mnz017', 0.0047192851123063345) + +[fips2705720942] +centroid = (0.82655618620542071, -1.6599630340710143) +description = Fern township, MN +station = ('kbji', 0.0032284033108278157) +zone = ('mnz023', 0.0030833795680367377) + +[fips2705726360] +centroid = (0.82524052210868226, -1.6551578808408862) +description = Guthrie township, MN +station = ('kbji', 0.0039699435375251928) +zone = ('mnz024', 0.0031942000717850127) + +[fips2705727386] +centroid = (0.82489999091832578, -1.6531342413863688) +description = Hart Lake township, MN +station = ('kbji', 0.0048546365760955782) +zone = ('mnz024', 0.0035847596894027231) + +[fips2705728340] +centroid = (0.82709196737919799, -1.6557647318218047) +description = Helga township, MN +station = ('kbji', 0.002085685091260094) +zone = ('mnz017', 0.0043022714914099404) + +[fips2705728466] +centroid = (0.82367564244805169, -1.6558715983319043) +description = Hendrickson township, MN +station = ('kbji', 0.005400823537360616) +zone = ('mnz024', 0.001556310945276726) + +[fips2705728556] +centroid = (0.81895524240640039, -1.6573819713599951) +description = Henrietta township, MN +station = ('kpkd', 0.001320656579794303) +zone = ('mnz024', 0.0032893721115752599) + +[fips2705730338] +centroid = (0.81778559255488381, -1.6574255696847098) +description = Hubbard township, MN +station = ('kpkd', 0.0014539580570465049) +zone = ('mnz024', 0.0044514809321196938) + +[fips2705734046] +centroid = (0.82374465276667552, -1.6602274514526916) +description = Lake Alice township, MN +station = ('kpkd', 0.0052299091535687467) +zone = ('mnz023', 0.0035935754854114015) + +[fips2705734262] +centroid = (0.82070137450985059, -1.6575952156880036) +description = Lake Emma township, MN +station = ('kpkd', 0.0024139699688719971) +zone = ('mnz024', 0.0016445600598459053) + +[fips2705734388] +centroid = (0.82364710631478155, -1.6577339868168299) +description = Lake George township, MN +station = ('kpkd', 0.0051883196191801952) +zone = ('mnz024', 0.0016357868712650128) + +[fips2705734460] +centroid = (0.82553094489621415, -1.6599019650004871) +description = Lake Hattie township, MN +station = ('kbji', 0.0040477308999250644) +zone = ('mnz023', 0.0030910064127029524) + +[fips2705734838] +centroid = (0.82360029658424305, -1.652949760084433) +description = Lakeport township, MN +station = ('kbji', 0.0060546170244821828) +zone = ('mnz024', 0.0028535285874784974) + +[fips2705735612] +centroid = (0.82405392511012898, -1.6538284286430571) +description = Laporte city, MN +station = ('kbji', 0.0053946772448855646) +zone = ('mnz024', 0.0026456760293778595) + +[fips2705740022] +centroid = (0.82066341359861972, -1.6556410577910083) +description = Mantrap township, MN +station = ('kpkd', 0.0032271455526822496) +zone = ('mnz024', 0.0016733501732933919) + +[fips2705744] +centroid = (0.81508813383604906, -1.6165430296458723) +description = Big Lake CDP, MN +station = ('kcoq', 0.0014495720002589826) +zone = ('mnz037', 0.0010085000105809678) + +[fips2705745340] +centroid = (0.81969093359270095, -1.6553223432163018) +description = Nevis city, MN +station = ('kpkd', 0.0028960784037064735) +zone = ('mnz024', 0.0026592916813040633) + +[fips2705745358] +centroid = (0.81893642775706388, -1.655589291325394) +description = Nevis township, MN +station = ('kpkd', 0.0025130405704493243) +zone = ('mnz024', 0.0033384261328273527) + +[fips2705749768] +centroid = (0.81886349044762308, -1.6591159559718516) +description = Park Rapids city, MN +station = ('kpkd', 0.00031328304902174817) +zone = ('mnz024', 0.0037511493908175889) + +[fips2705752] +centroid = (0.79137455472871232, -1.6361246290155751) +description = Big Lake city, MN +station = ('kcfe', 0.0034309185336079749) +zone = ('mnz051', 0.0018126219100917963) + +[fips2705755132] +centroid = (0.82663507508761092, -1.6577121003880098) +description = Rockwood township, MN +station = ('kbji', 0.0024586003297844554) +zone = ('mnz024', 0.0044961848338351852) + +[fips2705758972] +centroid = (0.82538372637380852, -1.6575997884506439) +description = Schoolcraft township, MN +station = ('kbji', 0.003678365740019663) +zone = ('mnz024', 0.0032524945709797026) + +[fips2705762618] +centroid = (0.82235030922725727, -1.6535939262047592) +description = Steamboat River township, MN +station = ('kpkd', 0.0053964406107853864) +zone = ('mnz024', 0.0020560502560029062) + +[fips2705763076] +centroid = (0.81753330521150813, -1.6600513826377505) +description = Straight River township, MN +station = ('kpkd', 0.0011709175990067178) +zone = ('mnz032', 0.0047815136009262014) + +[fips2705764804] +centroid = (0.82231458233746901, -1.6556761563622662) +description = Thorpe township, MN +station = ('kpkd', 0.0044678702280610003) +zone = ('mnz024', 0.00064356627657078996) + +[fips2705765038] +centroid = (0.81931553072388963, -1.660016022267105) +description = Todd township, MN +station = ('kpkd', 0.00092876402759047862) +zone = ('mnz028', 0.0036076664004992438) + +[fips2705770114] +centroid = (0.81903610351064526, -1.653326349777136) +description = White Oak township, MN +station = ('kpwc', 0.0054261152464467489) +zone = ('mnz024', 0.0038762767199304548) + +[fips2705896] +centroid = (0.76636489411884468, -1.6588662866223536) +description = Bingham Lake city, MN +station = ('kmwm', 0.00080009896336177908) +zone = ('mnz081', 0.00240560734722301) + +[fips27059] +centroid = (0.79521443616273246, -1.6283282956067939) +description = Isanti County, MN +station = ('kcbg', 0.00037003032316377485) +zone = ('mnz052', 2.1395047597354285e-05) + +[fips2705902602] +centroid = (0.79289351477672299, -1.6270506273278715) +description = Athens township, MN +station = ('kcbg', 0.002453347977414345) +zone = ('mnz052', 0.0024675594385406181) + +[fips2705907246] +centroid = (0.79435210388590716, -1.628926978446813) +description = Bradford township, MN +station = ('kcbg', 0.0012199140283799983) +zone = ('mnz052', 0.00095056761702973073) + +[fips2705907282] +centroid = (0.79798022452178297, -1.6261518002163868) +description = Braham city, MN +station = ('kcbg', 0.0029309916867937859) +zone = ('mnz052', 0.0031643604095780947) + +[fips2705909370] +centroid = (0.79518500991154384, -1.6271301096220074) +description = Cambridge city, MN +station = ('kcbg', 0.0004873774620337627) +zone = ('mnz052', 0.00082509424912744346) + +[fips2705909388] +centroid = (0.79601554228939797, -1.6265173943348021) +description = Cambridge township, MN +station = ('kcbg', 0.0011608618418067723) +zone = ('mnz052', 0.0014963969792694037) + +[fips2705914572] +centroid = (0.7974381950692836, -1.631109041437534) +description = Dalbo township, MN +station = ('kpnm', 0.0030102297340767309) +zone = ('mnz052', 0.0029755224246088424) + +[fips2705931328] +centroid = (0.79397626468478277, -1.6273908618122552) +description = Isanti city, MN +station = ('kcbg', 0.0013446144357536459) +zone = ('mnz052', 0.0013806924023644436) + +[fips2705931346] +centroid = (0.79434657119217833, -1.6264374058951834) +description = Isanti township, MN +station = ('kcbg', 0.0013460284711832241) +zone = ('mnz052', 0.0015629378830583998) + +[fips2705940292] +centroid = (0.79750374963598847, -1.6286435544295816) +description = Maple Ridge township, MN +station = ('kcbg', 0.0022907130869347643) +zone = ('mnz052', 0.002317444060780249) + +[fips2705946816] +centroid = (0.79440135707739845, -1.6243711105937473) +description = North Branch township, MN +station = ('kcbg', 0.0025669918759340655) +zone = ('mnz053', 0.0019866995744866368) + +[fips2705949354] +centroid = (0.79303621289636594, -1.6243039852307155) +description = Oxford township, MN +station = ('kcbg', 0.0033334579034435961) +zone = ('mnz053', 0.0022352657003858085) + +[fips2705956950] +centroid = (0.79268020063554434, -1.6286751797956278) +description = St. Francis city, MN +station = ('kcbg', 0.0026776846995624853) +zone = ('mnz052', 0.0025310797723389219) + +[fips2705961672] +centroid = (0.79431222311249916, -1.6310066080637342) +description = Spencer Brook township, MN +station = ('kcbg', 0.002442257961273786) +zone = ('mnz052', 0.0020873265349275892) + +[fips2705962086] +centroid = (0.79578693906397169, -1.6289619548450229) +description = Springvale township, MN +station = ('kcbg', 0.00094771052853613201) +zone = ('mnz052', 0.00074556954633305948) + +[fips2705962347] +centroid = (0.79727432610581372, -1.6269869053568811) +description = Stanchfield township, MN +station = ('kcbg', 0.0020677900270252487) +zone = ('mnz052', 0.0022725802889994582) + +[fips2705962374] +centroid = (0.79321015240961978, -1.6302424331040413) +description = Stanford township, MN +station = ('kcbg', 0.0026877420927813355) +zone = ('mnz052', 0.0024061490726383842) + +[fips2705971896] +centroid = (0.7959994154471095, -1.6308535426883344) +description = Wyanett township, MN +station = ('kcbg', 0.002245223715763839) +zone = ('mnz052', 0.0019531327652741667) + +[fips2706058] +centroid = (0.78644502933608706, -1.6227726682516008) +description = Birchwood Village city, MN +station = ('k21d', 0.0018946541212641931) +zone = ('mnz063', 0.0012207607337171916) + +[fips2706076] +centroid = (0.78129129894775051, -1.6562304903859917) +description = Bird Island city, MN +station = ('kovl', 0.0017241109360531233) +zone = ('mnz065', 0.00092511856898797962) + +[fips27061] +centroid = (0.82887157489770136, -1.6338573066908944) +description = Itasca County, MN +station = ('kgpz', 0.0049193274751737166) +zone = ('mnz018', 0.0033260600240290019) + +[fips2706101288] +centroid = (0.83264134645566901, -1.6440533805547051) +description = Alvwood township, MN +station = ('kfoz', 0.0065555663090526356) +zone = ('mnz018', 0.0055428328927082937) + +[fips2706101936] +centroid = (0.8258738671876461, -1.6318569848351836) +description = Arbo township, MN +station = ('kgpz', 0.0018004480134810701) +zone = ('mnz026', 0.0010774184557319425) + +[fips2706102044] +centroid = (0.83398901989088892, -1.6441153571964435) +description = Ardenhurst township, MN +station = ('kfoz', 0.0064570946138725587) +zone = ('mnz018', 0.00591186926033166) + +[fips2706103430] +centroid = (0.82885347583335822, -1.6303377280812001) +description = Balsam township, MN +station = ('kgpz', 0.0049267810370246315) +zone = ('mnz026', 0.0040856869168825636) + +[fips2706104276] +centroid = (0.83291360036568762, -1.6257820347610594) +description = Bearville township, MN +station = ('kfoz', 0.005959002626050665) +zone = ('mnz018', 0.0068810199888223516) + +[fips2706105698] +centroid = (0.83331277461891129, -1.6345489632201671) +description = Bigfork city, MN +station = ('kfoz', 0.00065466978877890447) +zone = ('mnz018', 0.0016771181483750425) + +[fips2706105716] +centroid = (0.83400177824772104, -1.6357071986183758) +description = Bigfork township, MN +station = ('kfoz', 0.00080808569394327399) +zone = ('mnz018', 0.0021048012910781584) + +[fips2706106220] +centroid = (0.82300583744101385, -1.6299340857850915) +description = Blackberry township, MN +station = ('kgpz', 0.0018666130176510541) +zone = ('mnz026', 0.0020938975475931869) + +[fips2706107048] +centroid = (0.82550609140766573, -1.6302272138329639) +description = Bovey city, MN +station = ('kgpz', 0.0019393752720617702) +zone = ('mnz026', 0.0010574635526137916) + +[fips2706107102] +centroid = (0.82978230515468465, -1.6377394076395202) +description = Bowstring township, MN +station = ('kfoz', 0.0047173194018627846) +zone = ('mnz018', 0.0024569336303999633) + +[fips2706107105] +centroid = (0.82942919014042116, -1.6442583694753516) +description = Bowstring Lake UT, MN +station = ('kfoz', 0.0079843099495582395) +zone = ('mnz018', 0.0061587217573863297) + +[fips2706110072] +centroid = (0.83512954019718966, -1.6275785894265997) +description = Carpenter township, MN +station = ('kfoz', 0.0047947508034954277) +zone = ('mnz018', 0.006455483370191248) + +[fips2706112] +centroid = (0.78236444954492423, -1.6453961496147267) +description = Biscay city, MN +station = ('khcd', 0.0015235455110225369) +zone = ('mnz066', 5.2123120193922478e-05) + +[fips2706112412] +centroid = (0.82453640392855021, -1.6347504614823101) +description = Cohasset city, MN +station = ('kgpz', 0.0018067216852992475) +zone = ('mnz026', 0.0022719426999619984) + +[fips2706112502] +centroid = (0.82497477827677368, -1.6310510790530752) +description = Coleraine city, MN +station = ('kgpz', 0.001170604034452385) +zone = ('mnz026', 0.00029390999827074235) + +[fips2706115277] +centroid = (0.82616025826460582, -1.6348881330537073) +description = Deer Lake UT, MN +station = ('kgpz', 0.0027736077844010458) +zone = ('mnz026', 0.002691995573229643) + +[fips2706115310] +centroid = (0.82625630373334302, -1.6370534059770239) +description = Deer River city, MN +station = ('kgpz', 0.0039583375448271479) +zone = ('mnz026', 0.0040679497639941522) + +[fips2706115328] +centroid = (0.82709392214796007, -1.6362346720249132) +description = Deer River township, MN +station = ('kgpz', 0.0040779012900195987) +zone = ('mnz026', 0.0039617660867186247) + +[fips2706118260] +centroid = (0.83498692934400931, -1.6342839873331292) +description = Effie city, MN +station = ('kfoz', 0.001030939437379093) +zone = ('mnz018', 0.0032704544364332085) + +[fips2706118265] +centroid = (0.83537924445327261, -1.6338893334826685) +description = Effie UT, MN +station = ('kfoz', 0.0014718237208873938) +zone = ('mnz018', 0.003730312842432595) + +[fips2706120816] +centroid = (0.82337848268960723, -1.6275230006899237) +description = Feeley township, MN +station = ('kgpz', 0.0032384157544563196) +zone = ('mnz026', 0.0030289434071533441) + +[fips2706124362] +centroid = (0.83137507517676212, -1.6443120383498506) +description = Good Hope township, MN +station = ('kfoz', 0.0070894105891196532) +zone = ('mnz018', 0.0056955040143553655) + +[fips2706124452] +centroid = (0.82387033392611164, -1.6255426104942707) +description = Goodland township, MN +station = ('kgpz', 0.0045097419046725784) +zone = ('mnz026', 0.0041142979275722649) + +[fips2706125118] +centroid = (0.82444957379826356, -1.6324448989937177) +description = Grand Rapids city, MN +station = ('kgpz', 0.00040728388285712235) +zone = ('mnz026', 0.00078821039874269741) + +[fips2706125460] +centroid = (0.83394275121241856, -1.6421780940866071) +description = Grattan township, MN +station = ('kfoz', 0.005155535705775512) +zone = ('mnz018', 0.0046950047442051081) + +[fips2706125892] +centroid = (0.82601042174832207, -1.6275408903147566) +description = Greenway township, MN +station = ('kgpz', 0.0036856140240652023) +zone = ('mnz026', 0.0028891419576989956) + +[fips2706127296] +centroid = (0.8230482140352523, -1.6321866077177152) +description = Harris township, MN +station = ('kgpz', 0.0010381179556671477) +zone = ('mnz026', 0.0018593639485093585) + +[fips2706131256] +centroid = (0.82606253727978662, -1.6296297701767135) +description = Iron Range township, MN +station = ('kgpz', 0.0026239111076268883) +zone = ('mnz026', 0.001732139476780271) + +[fips2706132570] +centroid = (0.82730475792160107, -1.6245938320595941) +description = Keewatin city, MN +station = ('khib', 0.0029587229179255234) +zone = ('mnz026', 0.0052517181860708678) + +[fips2706133272] +centroid = (0.83260626533770388, -1.642177221421981) +description = Kinghurst township, MN +station = ('kfoz', 0.0053350819314598522) +zone = ('mnz018', 0.0042886234101094838) + +[fips2706134568] +centroid = (0.83133086598680905, -1.6377667394956064) +description = Lake Jessie township, MN +station = ('kfoz', 0.0034298103923209268) +zone = ('mnz018', 0.0013845917542016409) + +[fips2706135648] +centroid = (0.82431975620850029, -1.6317320890739109) +description = La Prairie city, MN +station = ('kgpz', 0.00038009189246187777) +zone = ('mnz026', 0.0005544972974466509) + +[fips2706135900] +centroid = (0.82758179403377019, -1.6298885326916144) +description = Lawrence township, MN +station = ('kgpz', 0.003823434519419066) +zone = ('mnz026', 0.0029387531352208182) + +[fips2706136944] +centroid = (0.83344351723317811, -1.6375924160099173) +description = Liberty township, MN +station = ('kfoz', 0.0021396738954273633) +zone = ('mnz018', 0.001920147755769721) + +[fips2706137691] +centroid = (0.82429717164797944, -1.6280260918468112) +description = Little Sand Lake UT, MN +station = ('kgpz', 0.0028247574917541264) +zone = ('mnz026', 0.0023744222981373349) + +[fips2706137934] +centroid = (0.82597497411121412, -1.6253386862244676) +description = Lone Pine township, MN +station = ('kgpz', 0.0050076338573911746) +zone = ('mnz026', 0.0042873786939859639) + +[fips2706140472] +centroid = (0.83060545478980263, -1.6348737864472558) +description = Marcell township, MN +station = ('kfoz', 0.0033704644423656221) +zone = ('mnz018', 0.0014663232434530776) + +[fips2706141066] +centroid = (0.83152559237145407, -1.6422800387682162) +description = Max township, MN +station = ('kfoz', 0.0057725309716486544) +zone = ('mnz018', 0.0043182811149194795) + +[fips2706144008] +centroid = (0.83259851607582502, -1.6462684302682886) +description = Moose Park township, MN +station = ('kfoz', 0.0080272960696270192) +zone = ('mnz018', 0.0070192227396473888) + +[fips2706144332] +centroid = (0.82640554683768108, -1.6380683149370585) +description = Morse township, MN +station = ('kgpz', 0.0046226397950101632) +zone = ('mnz018', 0.0056881321123228318) + +[fips2706144998] +centroid = (0.82759654206594946, -1.6266969014483699) +description = Nashwauk township, MN +station = ('kgpz', 0.0051095813179463604) +zone = ('mnz026', 0.0042333745513748987) + +[fips2706146582] +centroid = (0.83391948597348953, -1.647302869462653) +description = Nore township, MN +station = ('kvwu', 0.0067129040935167226) +zone = ('mnz017', 0.0055609746533711044) + +[fips2706146894] +centroid = (0.83165457220317651, -1.6291711325558744) +description = Northeast Itasca UT, MN +station = ('kfoz', 0.0042694130870807746) +zone = ('mnz018', 0.0045346969490166521) + +[fips2706148] +centroid = (0.82973624591572448, -1.611675201642305) +description = Biwabik city, MN +station = ('kevm', 0.0028509657110442252) +zone = ('mnz019', 0.0019776491920377583) + +[fips2706149048] +centroid = (0.82818885445419876, -1.6377167532658294) +description = Oteneagen township, MN +station = ('kgpz', 0.0055626481018046592) +zone = ('mnz018', 0.003910450089274437) + +[fips2706151856] +centroid = (0.83469139274176907, -1.6396172771949111) +description = Pomroy township, MN +station = ('kfoz', 0.0035089495937500087) +zone = ('mnz018', 0.0037493407280291421) + +[fips2706156644] +centroid = (0.82173478395995647, -1.6278034751007191) +description = Sago township, MN +station = ('kgpz', 0.0037899072457225486) +zone = ('mnz026', 0.0039625481341032803) + +[fips2706158360] +centroid = (0.83134289130535532, -1.639830364443287) +description = Sand Lake township, MN +station = ('kfoz', 0.0044410659485062268) +zone = ('mnz018', 0.0027101289367018654) + +[fips2706161564] +centroid = (0.82152626947422069, -1.6346904570626264) +description = Spang township, MN +station = ('kgpz', 0.0030796008820287032) +zone = ('mnz026', 0.0039822252926318196) + +[fips2706161700] +centroid = (0.82168052167351191, -1.6292843171578661) +description = Splithand township, MN +station = ('kgpz', 0.0031063568470786874) +zone = ('mnz026', 0.0034767179321144614) + +[fips2706162284] +centroid = (0.83113181118561907, -1.6430086788243388) +description = Squaw Lake city, MN +station = ('kfoz', 0.0063861815145943267) +zone = ('mnz018', 0.004855082774994704) + +[fips2706162914] +centroid = (0.83215193868011739, -1.6348492122113878) +description = Stokes township, MN +station = ('kfoz', 0.001829508471891403) +zone = ('mnz018', 0.00074680403453650668) + +[fips2706164606] +centroid = (0.83130534927314492, -1.6467633532842767) +description = Third River township, MN +station = ('kfoz', 0.0086672271069691675) +zone = ('mnz018', 0.0073469962746411134) + +[fips2706165596] +centroid = (0.82449196784579448, -1.6298279872198627) +description = Trout Lake township, MN +station = ('kgpz', 0.0016437947086761938) +zone = ('mnz026', 0.0011421154773979367) + +[fips2706167360] +centroid = (0.82752018391117477, -1.6321685261066645) +description = Wabana township, MN +station = ('kgpz', 0.0034338905797640135) +zone = ('mnz026', 0.002730499576397428) + +[fips2706168080] +centroid = (0.82267195595510723, -1.6278699895985127) +description = Warba city, MN +station = ('kgpz', 0.0032494082133137643) +zone = ('mnz026', 0.0032466988056114687) + +[fips2706168800] +centroid = (0.82183533237816386, -1.6256500878696085) +description = Wawina township, MN +station = ('kgpz', 0.004974804584185164) +zone = ('mnz035', 0.0056250765428538085) + +[fips2706170306] +centroid = (0.8218849346355056, -1.6322890759980997) +description = Wildwood township, MN +station = ('kgpz', 0.0022027573386412197) +zone = ('mnz026', 0.0030075824170565598) + +[fips2706171194] +centroid = (0.8327701692077587, -1.640025823866218) +description = Wirt township, MN +station = ('kfoz', 0.0038997839849793303) +zone = ('mnz018', 0.0029143134429448704) + +[fips2706172184] +centroid = (0.8258838155643824, -1.6368568120900793) +description = Zemple city, MN +station = ('kgpz', 0.0036509402493735527) +zone = ('mnz026', 0.003825629724353134) + +[fips2706256] +centroid = (0.83288742042690767, -1.6501272834312779) +description = Blackduck city, MN +station = ('kbji', 0.0059759457864663832) +zone = ('mnz017', 0.0033999522712570922) + +[fips27063] +centroid = (0.76223808055579656, -1.6606756170980186) +description = Jackson County, MN +station = ('kmjq', 0.0021387315733614101) +zone = ('mnz090', 5.8579802259764727e-05) + +[fips2706300604] +centroid = (0.76306135236396222, -1.6648193603548112) +description = Alba township, MN +station = ('kotg', 0.0027629048833496019) +zone = ('mnz090', 0.0030485303469937057) + +[fips2706301162] +centroid = (0.76165075980920782, -1.655827616034754) +description = Alpha city, MN +station = ('kmjq', 0.0014191208849828306) +zone = ('mnz090', 0.0036141625253494907) + +[fips2706304978] +centroid = (0.7629754647114716, -1.6586229179114558) +description = Belmont township, MN +station = ('kmjq', 0.0012948522537160653) +zone = ('mnz090', 0.0016990902322623876) + +[fips2706311476] +centroid = (0.76448772269515464, -1.658864174773959) +description = Christiania township, MN +station = ('kmwm', 0.00210247394363214) +zone = ('mnz090', 0.002614939725871557) + +[fips2706315436] +centroid = (0.76442522245464073, -1.6605759762510224) +description = Delafield township, MN +station = ('kmwm', 0.0020535931676834555) +zone = ('mnz090', 0.0021721207068143992) + +[fips2706315769] +centroid = (0.76156309192088034, -1.6591471100989996) +description = Des Moines township, MN +station = ('kmjq', 0.0010319881952208488) +zone = ('mnz090', 0.0013528398862584275) + +[fips2706319484] +centroid = (0.76289486540661455, -1.6563996826036802) +description = Enterprise township, MN +station = ('kmjq', 0.0014510615081747172) +zone = ('mnz090', 0.0032112486917959112) + +[fips2706320042] +centroid = (0.76149526842614779, -1.6649499109828603) +description = Ewington township, MN +station = ('kotg', 0.0024080603042702332) +zone = ('mnz090', 0.00313114645024455) + +[fips2706328700] +centroid = (0.7644108234883118, -1.6636650868540046) +description = Heron Lake city, MN +station = ('kmwm', 0.0033428018763409749) +zone = ('mnz090', 0.0030114450906731202) + +[fips2706328718] +centroid = (0.7631494216780178, -1.6609348683051099) +description = Heron Lake township, MN +station = ('kmjq', 0.0026373758524910018) +zone = ('mnz090', 0.00090228087783555315) + +[fips2706330482] +centroid = (0.76140695476599685, -1.6608251918149146) +description = Hunter township, MN +station = ('kmjq', 0.0022510292516787519) +zone = ('mnz090', 0.00085152118803196884) + +[fips2706331562] +centroid = (0.76145828489929801, -1.6578366121768473) +description = Jackson city, MN +station = ('kmjq', 0.00038082407889856968) +zone = ('mnz090', 0.0022557677031261876) + +[fips2706333146] +centroid = (0.76440755972261054, -1.6567450483560648) +description = Kimball township, MN +station = ('kmjq', 0.0026762826538345558) +zone = ('mnz090', 0.0036067984314585386) + +[fips2706333902] +centroid = (0.76441494246534647, -1.6649426504131719) +description = La Crosse township, MN +station = ('kotg', 0.0035130469657914474) +zone = ('mnz090', 0.0037180608235789616) + +[fips2706334316] +centroid = (0.76232098369526624, -1.6610236182975737) +description = Lakefield city, MN +station = ('kmjq', 0.0024017307293404473) +zone = ('mnz090', 0.00020642081192079841) + +[fips2706341948] +centroid = (0.75999163236896961, -1.6585125781961447) +description = Middletown township, MN +station = ('kmjq', 0.0019209959995079326) +zone = ('mnz090', 0.0027858872093840066) + +[fips2706343108] +centroid = (0.7598729499798339, -1.6609377131917906) +description = Minneota township, MN +station = ('kmjq', 0.0030185234264838235) +zone = ('mnz090', 0.0023876687934187711) + +[fips2706348184] +centroid = (0.76339570508876675, -1.6635898282566586) +description = Okabena city, MN +station = ('kotg', 0.0037088217948055497) +zone = ('mnz090', 0.0023461331878676366) + +[fips2706350578] +centroid = (0.76005069431085703, -1.6567707570559467) +description = Petersburg township, MN +station = ('kmjq', 0.0019271071025714081) +zone = ('mnz090', 0.0036301209644400245) + +[fips2706355996] +centroid = (0.76150696213213609, -1.6628676982786459) +description = Rost township, MN +station = ('kotg', 0.0039045560387397085) +zone = ('mnz090', 0.00170436998161374) + +[fips2706356068] +centroid = (0.75984900406249667, -1.6651240250290391) +description = Round Lake township, MN +station = ('kotg', 0.0030090970364258294) +zone = ('iaz002', 0.0039094151580562186) + +[fips2706360574] +centroid = (0.76022114316560685, -1.6631378228869771) +description = Sioux Valley township, MN +station = ('kotg', 0.0040347788416914589) +zone = ('mnz090', 0.0026695980053897039) + +[fips2706369016] +centroid = (0.76462396309656522, -1.6627744278834196) +description = Weimer township, MN +station = ('kmwm', 0.0027110758746885528) +zone = ('mnz090', 0.0027816223802545914) + +[fips2706369484] +centroid = (0.76288746521058604, -1.6630665960002033) +description = West Heron Lake township, MN +station = ('kotg', 0.0038890191780018186) +zone = ('mnz090', 0.0017882333174326242) + +[fips2706370258] +centroid = (0.76497842201435284, -1.6616915907088972) +description = Wilder city, MN +station = ('kmwm', 0.0019101378583094362) +zone = ('mnz090', 0.0028048698426176538) + +[fips2706371212] +centroid = (0.76150806168956486, -1.6565672167585792) +description = Wisconsin township, MN +station = ('kmjq', 0.00093152505135017855) +zone = ('mnz090', 0.0031193001083671414) + +[fips2706382] +centroid = (0.78837389741222097, -1.6267528217976037) +description = Blaine city, MN +station = ('kane', 0.00038076472161796803) +zone = ('mnz061', 0.0018598055214471257) + +[fips2706490] +centroid = (0.7843994685461646, -1.6584709520934846) +description = Blomkest city, MN +station = ('kovl', 0.002867624975482274) +zone = ('mnz057', 0.0036657480491827554) + +[fips27065] +centroid = (0.80193969591614978, -1.6283535854276554) +description = Kanabec County, MN +station = ('kjmr', 0.0011217498252002833) +zone = ('mnz045', 6.7464085348386022e-05) + +[fips2706501702] +centroid = (0.80207001965139624, -1.6310721975370244) +description = Ann Lake township, MN +station = ('kjmr', 0.0025163511960745611) +zone = ('mnz045', 0.0019499504846107584) + +[fips2706502296] +centroid = (0.80045367023112424, -1.6287244678937043) +description = Arthur township, MN +station = ('kjmr', 0.00070675163599454309) +zone = ('mnz045', 0.001476045602358259) + +[fips2706507282] +centroid = (0.79819053669664819, -1.6261462151627808) +description = Braham city, MN +station = ('kjmr', 0.0029387728200445224) +zone = ('mnz052', 0.0033524466716402649) + +[fips2706508344] +centroid = (0.79869668217972656, -1.6288061143961126) +description = Brunswick township, MN +station = ('kjmr', 0.0022576113318887865) +zone = ('mnz045', 0.003221089679649479) + +[fips2706512754] +centroid = (0.80040270661696589, -1.6267650914622451) +description = Comfort township, MN +station = ('kjmr', 0.00091344076055633184) +zone = ('mnz045', 0.0018280285386250517) + +[fips2706521644] +centroid = (0.80492551793399902, -1.6272795272592706) +description = Ford township, MN +station = ('kjmr', 0.0040844309571292387) +zone = ('mnz045', 0.0031071861734631137) + +[fips2706525406] +centroid = (0.79885330802680055, -1.6265897731388825) +description = Grass Lake township, MN +station = ('kjmr', 0.0022073365313897957) +zone = ('mnz045', 0.0032628511087919258) + +[fips2706525424] +centroid = (0.79932194638425347, -1.6258610981761747) +description = Grasston city, MN +station = ('kjmr', 0.0020952232672106692) +zone = ('mnz045', 0.0030762437971766886) + +[fips2706527782] +centroid = (0.80445497716766146, -1.6294600543602495) +description = Hay Brook township, MN +station = ('kjmr', 0.0037517330648256372) +zone = ('mnz045', 0.002686523960048572) + +[fips2706529132] +centroid = (0.80337856280478637, -1.62924368589288) +description = Hillman township, MN +station = ('kjmr', 0.0026832823979664969) +zone = ('mnz045', 0.00162642026094601) + +[fips2706532300] +centroid = (0.80072239857605376, -1.6310788821480595) +description = Kanabec township, MN +station = ('kjmr', 0.0022190570023627731) +zone = ('mnz045', 0.0022748118589732019) + +[fips2706533560] +centroid = (0.80179928417782675, -1.6288688240761366) +description = Knife Lake township, MN +station = ('kjmr', 0.0011540426167995358) +zone = ('mnz045', 0.00042174784848617757) + +[fips2706533776] +centroid = (0.80509567008277594, -1.6255301313901191) +description = Kroschel township, MN +station = ('k04w', 0.0035304783310914079) +zone = ('mnz045', 0.003724748012472441) + +[fips2706544044] +centroid = (0.80069246617938217, -1.6282483769803451) +description = Mora city, MN +station = ('kjmr', 0.0002982113493905131) +zone = ('mnz045', 0.0012044799893313398) + +[fips2706548166] +centroid = (0.79988682219666152, -1.6305388249176149) +description = Ogilvie city, MN +station = ('kjmr', 0.0020827110135170079) +zone = ('mnz045', 0.0025523910548278196) + +[fips2706550002] +centroid = (0.80332056551374265, -1.6273871791675336) +description = Peace township, MN +station = ('kjmr', 0.0024823471266114503) +zone = ('mnz045', 0.0015527353961468692) + +[fips2706551874] +centroid = (0.80335013139127132, -1.6252481385428745) +description = Pomroy township, MN +station = ('k04w', 0.0027896182074303366) +zone = ('mnz045', 0.0025585924237655914) + +[fips2706552756] +centroid = (0.80137057895365937, -1.6262142131904382) +description = Quamba city, MN +station = ('kjmr', 0.0012764789192851733) +zone = ('mnz045', 0.0015293219691512152) + +[fips2706561348] +centroid = (0.7988265346760749, -1.6311241036289785) +description = South Fork township, MN +station = ('kjmr', 0.0030339153772096145) +zone = ('mnz044', 0.0036210675643577376) + +[fips2706569988] +centroid = (0.80181972198336759, -1.6269135142618347) +description = Whited township, MN +station = ('kjmr', 0.0011759222266221282) +zone = ('mnz045', 0.00095246505005547278) + +[fips2706580] +centroid = (0.76564716237054697, -1.6241164496025888) +description = Blooming Prairie city, MN +station = ('kaum', 0.0038396663221606959) +zone = ('mnz085', 0.0034403665698738567) + +[fips2706616] +centroid = (0.78242527426935637, -1.6286577788629855) +description = Bloomington city, MN +station = ('kmsp', 0.0013798998753577279) +zone = ('mnz060', 0.0036468277813200118) + +[fips2706688] +centroid = (0.7616699060711023, -1.6423604809934407) +description = Blue Earth city, MN +station = ('kfrm', 0.0039987632371250321) +zone = ('mnz092', 0.0020111718065724863) + +[fips27067] +centroid = (0.78806352551133896, -1.658149724244655) +description = Kandiyohi County, MN +station = ('kbdh', 0.0016417121936453621) +zone = ('mnz057', 5.9158548292754914e-06) + +[fips2706701990] +centroid = (0.79035221066606409, -1.6615359596994967) +description = Arctander township, MN +station = ('kbdh', 0.0029828840799243595) +zone = ('mnz057', 0.0033111094814169098) + +[fips2706702692] +centroid = (0.78776294490756049, -1.6541685584076857) +description = Atwater city, MN +station = ('kljf', 0.0033876350208650978) +zone = ('mnz058', 0.0030795281586918845) + +[fips2706706490] +centroid = (0.7843994685461646, -1.6584709520934846) +description = Blomkest city, MN +station = ('kovl', 0.002867624975482274) +zone = ('mnz057', 0.0036657480491827554) + +[fips2706708614] +centroid = (0.79166539639526456, -1.6569752747376956) +description = Burbank township, MN +station = ('kpex', 0.0023569741890858745) +zone = ('mnz057', 0.0037003806404127945) + +[fips2706712538] +centroid = (0.79180549397432232, -1.6593735840227384) +description = Colfax township, MN +station = ('kbdh', 0.004365377075177976) +zone = ('mnz057', 0.0038456899125839106) + +[fips2706716336] +centroid = (0.78884735287840957, -1.6593092686398023) +description = Dovre township, MN +station = ('kbdh', 0.0015346890890618134) +zone = ('mnz057', 0.0011379001607545118) + +[fips2706717702] +centroid = (0.78418536900682245, -1.6547789000471083) +description = East Lake Lillian township, MN +station = ('kovl', 0.0038079753048392926) +zone = ('mnz065', 0.0039304234606755703) + +[fips2706718242] +centroid = (0.78581606503354584, -1.6611924090895342) +description = Edwards township, MN +station = ('kbdh', 0.0017832819506709517) +zone = ('mnz057', 0.0031065690661958626) + +[fips2706720150] +centroid = (0.78591441433689568, -1.6569414502567916) +description = Fahlun township, MN +station = ('kbdh', 0.002867487392415382) +zone = ('mnz057', 0.0023062950128254936) + +[fips2706723390] +centroid = (0.78718927263572247, -1.6549877810519869) +description = Gennessee township, MN +station = ('kljf', 0.003901495972224243) +zone = ('mnz057', 0.0023919689177482528) + +[fips2706725694] +centroid = (0.78871076341114854, -1.6569848216887038) +description = Green Lake township, MN +station = ('kbdh', 0.0026560477571638437) +zone = ('mnz057', 0.0010472987157080069) + +[fips2706727314] +centroid = (0.78876392614016422, -1.654756908898533) +description = Harrison township, MN +station = ('kpex', 0.0032284777457926746) +zone = ('mnz057', 0.0024916927414895067) + +[fips2706729600] +centroid = (0.78467147811008797, -1.660700365866812) +description = Holland township, MN +station = ('kbdh', 0.0028330817646874504) +zone = ('mnz057', 0.0038371171486252628) + +[fips2706731292] +centroid = (0.79028969297225771, -1.6549803459493735) +description = Irving township, MN +station = ('kpex', 0.0018624438801478648) +zone = ('mnz057', 0.0031551327581727422) + +[fips2706732372] +centroid = (0.78769910076352245, -1.6568797703210263) +description = Kandiyohi city, MN +station = ('kbdh', 0.002444266533392699) +zone = ('mnz057', 0.00096293570197226335) + +[fips2706732390] +centroid = (0.78729517921473346, -1.6570078600348299) +description = Kandiyohi township, MN +station = ('kbdh', 0.0023539161799539664) +zone = ('mnz057', 0.0011078513899282281) + +[fips2706734064] +centroid = (0.79019691126922165, -1.6593675975434039) +description = Lake Andrew township, MN +station = ('kbdh', 0.0027883835210164454) +zone = ('mnz057', 0.0023053517965356709) + +[fips2706734226] +centroid = (0.78555656948035935, -1.6547273953808819) +description = Lake Elizabeth township, MN +station = ('kovl', 0.0048828157306316233) +zone = ('mnz057', 0.0034765288492445618) + +[fips2706734676] +centroid = (0.7844539751787043, -1.6559694938496488) +description = Lake Lillian city, MN +station = ('kovl', 0.0034776829036400592) +zone = ('mnz065', 0.0039132849787834011) + +[fips2706734694] +centroid = (0.78428773256745199, -1.6570916881988036) +description = Lake Lillian township, MN +station = ('kovl', 0.0029628659859282694) +zone = ('mnz065', 0.0036579775920493364) + +[fips2706739662] +centroid = (0.78880422579259279, -1.661095927288484) +description = Mamre township, MN +station = ('kbdh', 0.0014180525732078401) +zone = ('mnz057', 0.0022090198344251405) + +[fips2706745682] +centroid = (0.79057960961430651, -1.6571470151360916) +description = New London city, MN +station = ('kpex', 0.002796332773157815) +zone = ('mnz057', 0.0026179990818708285) + +[fips2706745700] +centroid = (0.7902939864822176, -1.6571914337655549) +description = New London township, MN +station = ('kpex', 0.0029680247080800079) +zone = ('mnz057', 0.0023349784481511986) + +[fips2706747464] +centroid = (0.79199638063461286, -1.6612006644968962) +description = Norway Lake township, MN +station = ('kbdh', 0.0045451803083671949) +zone = ('mnz057', 0.0044867632488605601) + +[fips2706750344] +centroid = (0.78794384828452968, -1.6611120192241873) +description = Pennock city, MN +station = ('kbdh', 0.00071181830017744098) +zone = ('mnz057', 0.0020945427973535174) + +[fips2706752558] +centroid = (0.78426073232392357, -1.6613251064725632) +description = Prinsburg city, MN +station = ('kbdh', 0.0033072099145088668) +zone = ('mnz057', 0.0044117377580330059) + +[fips2706753296] +centroid = (0.78571111838562335, -1.6621834070388164) +description = Raymond city, MN +station = ('kbdh', 0.002209926907300745) +zone = ('mnz057', 0.0036921359803305832) + +[fips2706753710] +centroid = (0.79247329185272031, -1.6552649044306185) +description = Regal city, MN +station = ('kpex', 0.0012817017732494873) +zone = ('mnz049', 0.0037766501841767666) + +[fips2706755708] +centroid = (0.78414515662085649, -1.6593661489201248) +description = Roseland township, MN +station = ('kovl', 0.0026619270077454142) +zone = ('mnz065', 0.0038531582817098249) + +[fips2706755834] +centroid = (0.79179037942300001, -1.6549109865648992) +description = Roseville township, MN +station = ('kpex', 0.00090146617932195612) +zone = ('mnz049', 0.0041132240549587367) + +[fips2706757076] +centroid = (0.78711214653607686, -1.6615093434284038) +description = St. Johns township, MN +station = ('kbdh', 0.00091404264950498311) +zone = ('mnz057', 0.0025542373102047035) + +[fips2706761690] +centroid = (0.78949158881190573, -1.6570234632783429) +description = Spicer city, MN +station = ('kbdh', 0.0030715670098533151) +zone = ('mnz057', 0.0016375184610692584) + +[fips2706763454] +centroid = (0.79145967443633203, -1.6622510560006238) +description = Sunburg city, MN +station = ('kbdh', 0.0041910507887572669) +zone = ('mnz057', 0.0044632950158633349) + +[fips2706770078] +centroid = (0.78567954537945484, -1.6591850361036455) +description = Whitefield township, MN +station = ('kbdh', 0.0019856719048285012) +zone = ('mnz057', 0.0024889526306559038) + +[fips2706770420] +centroid = (0.78753926351062487, -1.6590378175812397) +description = Willmar city, MN +station = ('kbdh', 0.00091417953650355598) +zone = ('mnz057', 0.00081510305912095332) + +[fips2706770438] +centroid = (0.7868846952279569, -1.6596935028746289) +description = Willmar township, MN +station = ('kbdh', 0.00075658928559241495) +zone = ('mnz057', 0.0016025905022675382) + +[fips2706778] +centroid = (0.81104404887954551, -1.6621457253802661) +description = Bluffton city, MN +station = ('kadc', 0.00043421504448585538) +zone = ('mnz032', 0.003770604565402522) + +[fips2706814] +centroid = (0.79908402310062177, -1.6328032849023222) +description = Bock city, MN +station = ('kpnm', 0.0041270066222170885) +zone = ('mnz044', 0.0028452004393595578) + +[fips27069] +centroid = (0.85130249408445502, -1.6891357412792016) +description = Kittson County, MN +station = ('khco', 0.0019153745661656021) +zone = ('mnz004', 2.7673811375108479e-05) + +[fips2706902386] +centroid = (0.84795444643364681, -1.6836725291079015) +description = Arveson township, MN +station = ('khco', 0.0062227960442650674) +zone = ('mnz007', 0.0052290290503229156) + +[fips2706909676] +centroid = (0.85233705545186711, -1.6856686796266998) +description = Cannon township, MN +station = ('khco', 0.0043973839904042737) +zone = ('mnz004', 0.0025264889811013715) + +[fips2706909874] +centroid = (0.85421660052333981, -1.6835442474078799) +description = Caribou township, MN +station = ('khco', 0.0064657757566309341) +zone = ('mnz004', 0.0047072805292942286) + +[fips2706912340] +centroid = (0.85415586306537039, -1.692821579953441) +description = Clow township, MN +station = ('khco', 0.0033065861171580487) +zone = ('mnz004', 0.0037204831318478544) + +[fips2706914950] +centroid = (0.84813028835578519, -1.6900801912973333) +description = Davis township, MN +station = ('khco', 0.0030361653848969316) +zone = ('mnz004', 0.0032376065696430832) + +[fips2706915382] +centroid = (0.84812922370494148, -1.6859048401277872) +description = Deerwood township, MN +station = ('khco', 0.0048711231321436465) +zone = ('mnz004', 0.0038461457259719228) + +[fips2706916030] +centroid = (0.84778366596633914, -1.691181843121192) +description = Donaldson city, MN +station = ('khco', 0.0031566542948713067) +zone = ('mnz004', 0.0037692216929159595) + +[fips2706925370] +centroid = (0.85239718204459836, -1.6908042934974008) +description = Granville township, MN +station = ('khco', 0.0016874034568683308) +zone = ('mnz004', 0.0015259094554105177) + +[fips2706926576] +centroid = (0.8511246450336768, -1.6919941542616554) +description = Hallock city, MN +station = ('khco', 0.00022848426071212473) +zone = ('mnz004', 0.0018674422109298736) + +[fips2706926594] +centroid = (0.85116215215930213, -1.6930216121390118) +description = Hallock township, MN +station = ('khco', 0.00073900440029142102) +zone = ('mnz004', 0.0025395427275157734) + +[fips2706926612] +centroid = (0.84928513781524484, -1.6859466931232501) +description = Halma city, MN +station = ('khco', 0.0042924247291972924) +zone = ('mnz004', 0.0029403769116079664) + +[fips2706926846] +centroid = (0.85255872972016289, -1.6928762262123207) +description = Hampden township, MN +station = ('khco', 0.0017649441188234386) +zone = ('mnz004', 0.0027375706536593579) + +[fips2706928070] +centroid = (0.85114478613324474, -1.688514788037927) +description = Hazelton township, MN +station = ('khco', 0.0022948322158509657) +zone = ('mnz004', 0.0004662565710137684) + +[fips2706929078] +centroid = (0.85267619037882225, -1.695015633356123) +description = Hill township, MN +station = ('khco', 0.0026789407275138702) +zone = ('ndz008', 0.0052221020118472482) + +[fips2706930446] +centroid = (0.853840482069535, -1.6946180997123961) +description = Humboldt city, MN +station = ('khco', 0.0034194210706792461) +zone = ('mnz004', 0.0043841782191755517) + +[fips2706932228] +centroid = (0.8494101906561502, -1.6878254877031442) +description = Jupiter township, MN +station = ('khco', 0.00311580880911881) +zone = ('mnz004', 0.0021001297566363535) + +[fips2706932444] +centroid = (0.84784579968771012, -1.6845239530769018) +description = Karlstad city, MN +station = ('khco', 0.0057902446230895851) +zone = ('mnz004', 0.0046312001634973253) + +[fips2706932732] +centroid = (0.84892572216238171, -1.6914003408902492) +description = Kennedy city, MN +station = ('khco', 0.0020070020852435548) +zone = ('mnz004', 0.0028021417231953666) + +[fips2706933495] +centroid = (0.85107081907954518, -1.68379594133931) +description = Klondike UT, MN +station = ('khco', 0.00539513638640655) +zone = ('mnz004', 0.0035534990378010161) + +[fips2706934136] +centroid = (0.85054137345095271, -1.6871212648032572) +description = Lake Bronson city, MN +station = ('khco', 0.0032207306382608914) +zone = ('mnz004', 0.0015580900668349354) + +[fips2706935378] +centroid = (0.85272649076786466, -1.6895065888386653) +description = Lancaster city, MN +station = ('khco', 0.0024480670734270821) +zone = ('mnz004', 0.0014309752339066151) + +[fips2706939112] +centroid = (0.85408510741749455, -1.6862656869506372) +description = McKinley UT, MN +station = ('khco', 0.0049282258444691366) +zone = ('mnz004', 0.003369395958253303) + +[fips2706947176] +centroid = (0.85115904547323351, -1.6950108686072649) +description = North Red River UT, MN +station = ('khco', 0.0020180946412755659) +zone = ('ndz008', 0.0050010393230799964) + +[fips2706947410] +centroid = (0.84944619679861888, -1.6854483841685133) +description = Norway township, MN +station = ('khco', 0.0045445708017625161) +zone = ('mnz004', 0.0030864603492948817) + +[fips2706950062] +centroid = (0.8522164357472618, -1.6835504084201396) +description = Peatland UT, MN +station = ('khco', 0.005705338656554754) +zone = ('mnz004', 0.0038134297090382315) + +[fips2706950074] +centroid = (0.84948909699163289, -1.6837266866745908) +description = Pelan township, MN +station = ('khco', 0.0056218912441643376) +zone = ('mnz004', 0.0040301364517824293) + +[fips2706950452] +centroid = (0.85120224237222042, -1.686031411405142) +description = Percy township, MN +station = ('khco', 0.0039302218189360433) +zone = ('mnz004', 0.0020746824768329564) + +[fips2706952072] +centroid = (0.85242004585779951, -1.6881192964294252) +description = Poppleton township, MN +station = ('khco', 0.0029620861387210547) +zone = ('mnz004', 0.0013078958924416025) + +[fips2706954196] +centroid = (0.85422489083728681, -1.6908188844499472) +description = Richardville township, MN +station = ('khco', 0.0034143149885596143) +zone = ('mnz004', 0.0031069272276671861) + +[fips2706957112] +centroid = (0.85415593287854041, -1.6883256816134735) +description = St. Joseph township, MN +station = ('khco', 0.0040488263385258317) +zone = ('mnz004', 0.0028980503255370922) + +[fips2706958144] +centroid = (0.85467246307066824, -1.6969197003035861) +description = St. Vincent city, MN +station = ('khco', 0.0049837869475525369) +zone = ('ndz008', 0.0051355027746460332) + +[fips2706958162] +centroid = (0.85425194344069277, -1.695413777865088) +description = St. Vincent township, MN +station = ('khco', 0.0040469910031855939) +zone = ('ndz008', 0.0056549622404761853) + +[fips2706960646] +centroid = (0.8494509440941842, -1.6927025310451622) +description = Skane township, MN +station = ('khco', 0.0015230718170158913) +zone = ('mnz004', 0.0029799026767054209) + +[fips2706961456] +centroid = (0.84954660559048611, -1.6942761373520527) +description = South Red River township, MN +station = ('khco', 0.0020313783887841463) +zone = ('mnz004', 0.003800099768709981) + +[fips2706961744] +centroid = (0.8479877124091898, -1.6878073886388012) +description = Spring Brook township, MN +station = ('khco', 0.0040047420675680271) +zone = ('mnz004', 0.0034450016833963027) + +[fips2706963652] +centroid = (0.84797265021774504, -1.6923738331871343) +description = Svea township, MN +station = ('khco', 0.0029356512815438829) +zone = ('mnz004', 0.0039514094289250104) + +[fips2706964336] +centroid = (0.84962498832719313, -1.6900623365790854) +description = Tegner township, MN +station = ('khco', 0.0017916704516346702) +zone = ('mnz004', 0.0017859124402245126) + +[fips2706964354] +centroid = (0.84796997986398959, -1.694628135355595) +description = Teien township, MN +station = ('khco', 0.0034107670519213885) +zone = ('mnz004', 0.0049126264005923369) + +[fips2706964642] +centroid = (0.85110474828020399, -1.6904037229807753) +description = Thompson township, MN +station = ('khco', 0.0010568896456532423) +zone = ('mnz004', 0.00083596809111897963) + +[fips2707030] +centroid = (0.82345112329307513, -1.6843431195131027) +description = Borup city, MN +station = ('kfar', 0.0056782533504098256) +zone = ('mnz002', 0.0026217176926843348) + +[fips2707048] +centroid = (0.82550609140766573, -1.6302272138329639) +description = Bovey city, MN +station = ('kgpz', 0.0019393752720617702) +zone = ('mnz026', 0.0010574635526137916) + +[fips2707066] +centroid = (0.79969354443529572, -1.6477222895351999) +description = Bowlus city, MN +station = ('klxl', 0.0023897567866672412) +zone = ('mnz043', 0.0037767481779941684) + +[fips27071] +centroid = (0.84204264973799903, -1.6368193747776241) +description = Koochiching County, MN +station = ('kinl', 0.0071482888023554131) +zone = ('mnz010', 7.8127770100567238e-05) + +[fips2707105680] +centroid = (0.84089214614837693, -1.6372807700186813) +description = Big Falls city, MN +station = ('kfoz', 0.0071701419451799964) +zone = ('mnz010', 0.0011223087960351625) + +[fips2707117660] +centroid = (0.84255750441404487, -1.6294708754016121) +description = East Koochiching UT, MN +station = ('kinl', 0.0051099241626861346) +zone = ('mnz010', 0.0049783669928988097) + +[fips2707131040] +centroid = (0.84799183138622458, -1.6302726796599782) +description = International Falls city, MN +station = ('kinl', 0.0003550373768722116) +zone = ('mnz010', 0.0074446143294660989) + +[fips2707137592] +centroid = (0.8446771020708369, -1.6328871130662956) +description = Littlefork city, MN +station = ('kinl', 0.0034856147298203853) +zone = ('mnz010', 0.0037898755212715878) + +[fips2707138] +centroid = (0.78280065968487522, -1.6737899687376265) +description = Boyd city, MN +station = ('kmve', 0.0030431160893896149) +zone = ('mnz064', 0.002390527365418213) + +[fips2707143540] +centroid = (0.8363767524806649, -1.6443307657327244) +description = Mizpah city, MN +station = ('kvwu', 0.0053986118029604397) +zone = ('mnz018', 0.0072224066625301338) + +[fips2707145277] +centroid = (0.83928092799610576, -1.6262166391980983) +description = Nett Lake UT, MN +station = ('korb', 0.0038062338175440264) +zone = ('mnz018', 0.0098283295350922919) + +[fips2707147122] +centroid = (0.83566231940465352, -1.6454836429701294) +description = Northome city, MN +station = ('kvwu', 0.0055325757652239013) +zone = ('mnz018', 0.0074626233491884688) + +[fips2707147131] +centroid = (0.83696288640336214, -1.6442624884523864) +description = Northome UT, MN +station = ('kvwu', 0.0050032414853808382) +zone = ('mnz010', 0.0070290998961775051) + +[fips2707147352] +centroid = (0.84476574734354559, -1.643214592769489) +description = Northwest Koochiching UT, MN +station = ('kvwu', 0.0060725775424143357) +zone = ('mnz010', 0.0050366275114728347) + +[fips2707152990] +centroid = (0.8462871159459241, -1.6299336494527783) +description = Rainy Lake UT, MN +station = ('kinl', 0.0013678041154125717) +zone = ('mnz010', 0.0063182627962009444) + +[fips2707153134] +centroid = (0.84844073006983745, -1.6292181691792158) +description = Ranier city, MN +station = ('kinl', 0.00099891629523025981) +zone = ('mnz010', 0.0082249442953491059) + +[fips2707161433] +centroid = (0.83827270364710627, -1.6343821446502613) +description = South Koochiching UT, MN +station = ('kfoz', 0.0043067020794376352) +zone = ('mnz010', 0.0040747928475084235) + +[fips2707174] +centroid = (0.82324109037089011, -1.642777370338572) +description = Boy River city, MN +station = ('kxvg', 0.0032471902049865148) +zone = ('mnz025', 0.0017241082948678038) + +[fips2707282] +centroid = (0.79800551434264422, -1.6261616089667832) +description = Braham city, MN +station = ('kcbg', 0.0029515444300029581) +zone = ('mnz052', 0.0031833691689122745) + +[fips27073] +centroid = (0.78539563267003287, -1.6786024523506129) +description = Lac qui Parle County, MN +station = ('kdxx', 0.00024015759886640925) +zone = ('mnz054', 8.6443892705832134e-05) + +[fips2707300] +centroid = (0.8090520696976593, -1.644071741418436) +description = Brainerd city, MN +station = ('kbrd', 0.0011058017176120941) +zone = ('mnz034', 0.0026973448706336263) + +[fips2707300352] +centroid = (0.78899001609146757, -1.6807191353075541) +description = Agassiz township, MN +station = ('kvvv', 0.0023324913248888384) +zone = ('mnz054', 0.0039785136990997524) + +[fips2707302062] +centroid = (0.78573307462761344, -1.6806203147653063) +description = Arena township, MN +station = ('kdxx', 0.0015283853978355886) +zone = ('mnz054', 0.0015249447670513626) + +[fips2707302800] +centroid = (0.78570172851424769, -1.6825443831859974) +description = Augusta township, MN +station = ('kdxx', 0.0028288440924493703) +zone = ('mnz054', 0.0028539127882857666) + +[fips2707304060] +centroid = (0.78417208705121488, -1.6740421688145395) +description = Baxter township, MN +station = ('kdxx', 0.0033846947968980278) +zone = ('mnz054', 0.0033858998237591979) + +[fips2707304960] +centroid = (0.78777636648950822, -1.6804731835093631) +description = Bellingham city, MN +station = ('kdxx', 0.0029296968364160383) +zone = ('mnz054', 0.0028092236775220797) + +[fips2707307138] +centroid = (0.78280065968487522, -1.6737899687376265) +description = Boyd city, MN +station = ('kmve', 0.0030431160893896149) +zone = ('mnz064', 0.002390527365418213) + +[fips2707309550] +centroid = (0.7841389083421344, -1.6721836026006758) +description = Camp Release township, MN +station = ('kmve', 0.0013272689307168755) +zone = ('mnz056', 0.003417481312813192) + +[fips2707310774] +centroid = (0.78567174375769844, -1.6764350675789015) +description = Cerro Gordo township, MN +station = ('kdxx', 0.0016280991386809916) +zone = ('mnz054', 0.0015322641686304316) + +[fips2707314968] +centroid = (0.78415433705272197, -1.6763700715175571) +description = Dawson city, MN +station = ('kdxx', 0.0018802097809609438) +zone = ('mnz054', 0.0019298951032272341) + +[fips2707322616] +centroid = (0.78276018549952142, -1.6803469438445664) +description = Freeland township, MN +station = ('kcnb', 0.0023105261973363554) +zone = ('mnz054', 0.0028600743836000378) + +[fips2707323138] +centroid = (0.78403595136955928, -1.6807260119048071) +description = Garfield township, MN +station = ('kdxx', 0.0018648075004672321) +zone = ('mnz054', 0.0020078176774718116) + +[fips2707326774] +centroid = (0.78417936507419561, -1.6786536254042814) +description = Hamlin township, MN +station = ('kdxx', 0.00097670082474861906) +zone = ('mnz054', 0.0011428828026881774) + +[fips2707327044] +centroid = (0.78721414357756336, -1.6764043148774814) +description = Hantho township, MN +station = ('kaqp', 0.0022300436078815295) +zone = ('mnz054', 0.0024238067609979454) + +[fips2707333848] +centroid = (0.78566062601036313, -1.6742994827061612) +description = Lac qui Parle township, MN +station = ('kdxx', 0.0030956962769163139) +zone = ('mnz054', 0.0030205215789169551) + +[fips2707334946] +centroid = (0.78772788124288784, -1.6783924019751355) +description = Lake Shore township, MN +station = ('kdxx', 0.0025770952837265047) +zone = ('mnz054', 0.0024106440204414241) + +[fips2707336] +centroid = (0.80227394392119922, -1.6684295739125614) +description = Brandon city, MN +station = ('kaxn', 0.0029340078833133931) +zone = ('mnz041', 0.0018004891043118182) + +[fips2707338258] +centroid = (0.78825518011650031, -1.6785014501468001) +description = Louisburg city, MN +station = ('kaqp', 0.0023351468826370782) +zone = ('mnz054', 0.0029357119421207106) + +[fips2707339266] +centroid = (0.78562102448963544, -1.6788095531196547) +description = Madison city, MN +station = ('kdxx', 0.00048440779946103943) +zone = ('mnz054', 0.00035501562187726775) + +[fips2707339284] +centroid = (0.78567547876229771, -1.6780468442365333) +description = Madison township, MN +station = ('kdxx', 0.00065857673749602813) +zone = ('mnz054', 0.00050030361081004806) + +[fips2707339788] +centroid = (0.78278481209526707, -1.6822974190968403) +description = Manfred township, MN +station = ('kcnb', 0.0027778547673683067) +zone = ('mnz054', 0.00367252375217611) + +[fips2707340526] +centroid = (0.78557707709907021, -1.6828247179704527) +description = Marietta city, MN +station = ('kdxx', 0.0030037580119306709) +zone = ('mnz054', 0.0030375404593359781) + +[fips2707341084] +centroid = (0.78280832168029146, -1.6761471406121999) +description = Maxwell township, MN +station = ('kdxx', 0.0029281166636485399) +zone = ('mnz054', 0.0030310577656813085) + +[fips2707341516] +centroid = (0.78445853048805203, -1.6825675960650488) +description = Mehurin township, MN +station = ('kdxx', 0.0028794921572570542) +zone = ('mnz054', 0.0029737954380748819) + +[fips2707345016] +centroid = (0.78657980366092606, -1.6832261436984115) +description = Nassau city, MN +station = ('kdxx', 0.0035540569608646213) +zone = ('sdz021', 0.0044087569706732152) + +[fips2707350524] +centroid = (0.78742543313680979, -1.6807268671161406) +description = Perry township, MN +station = ('kdxx', 0.0027146356732979859) +zone = ('mnz054', 0.0026099318942134756) + +[fips2707352702] +centroid = (0.78267181947949305, -1.678141301455651) +description = Providence township, MN +station = ('kdxx', 0.0025068559786900623) +zone = ('mnz054', 0.0026631314319796708) + +[fips2707354646] +centroid = (0.78449835890158259, -1.6760997374697157) +description = Riverside township, MN +station = ('kdxx', 0.0018996994760261024) +zone = ('mnz054', 0.0019144619889653238) + +[fips2707364408] +centroid = (0.78279144434642467, -1.674057492805372) +description = Ten Mile Lake township, MN +station = ('kmve', 0.0031933740881537956) +zone = ('mnz064', 0.0024210856700708073) + +[fips2707367882] +centroid = (0.78731881097280543, -1.6825427251232079) +description = Walter township, MN +station = ('kvvv', 0.0034228616956540176) +zone = ('mnz054', 0.0034606354064312702) + +[fips2707372058] +centroid = (0.78895725626140767, -1.6825843686791606) +description = Yellow Bank township, MN +station = ('kvvv', 0.0017899006874860998) +zone = ('mnz046', 0.0038784582012651469) + +[fips2707462] +centroid = (0.80749333359599573, -1.6857275844889548) +description = Breckenridge city, MN +station = ('kbwp', 0.00046884843136725367) +zone = ('mnz029', 0.0021220953419720731) + +[fips27075] +centroid = (0.82933003798561533, -1.5954352096584705) +description = Lake County, MN +station = ('kbfw', 0.0055363605928661274) +zone = ('mnz020', 0.004125681058561724) + +[fips2707500000] +centroid = (0.82266804641758284, -1.5932830790644215) +description = County subdivisions not defined, MN +station = ('kbfw', 0.0017391392621413514) +zone = ('mnz020', 0.0031815997483657489) + +[fips2707504456] +centroid = (0.82478289677880945, -1.5934711033847389) +description = Beaver Bay city, MN +station = ('kbfw', 0.0015502635257741979) +zone = ('mnz020', 0.0018164392989775053) + +[fips2707504474] +centroid = (0.82683203549369844, -1.593852038947279) +description = Beaver Bay township, MN +station = ('kbfw', 0.0031774165071473824) +zone = ('mnz020', 0.0021980213432465181) + +[fips2707514194] +centroid = (0.83113195081195934, -1.5915123203652255) +description = Crystal Bay township, MN +station = ('kbfw', 0.0077561456068604004) +zone = ('mnz012', 0.0035532373042175148) + +[fips2707516] +centroid = (0.81348038888898944, -1.6442097271490985) +description = Breezy Point city, MN +station = ('kpwc', 0.0029343698061094605) +zone = ('mnz034', 0.0027427331097691254) + +[fips2707520456] +centroid = (0.83757287897693411, -1.5955336462282832) +description = Fall Lake township, MN +station = ('kelo', 0.0057252105125250932) +zone = ('mnz012', 0.0038642382589938943) + +[fips2707534770] +centroid = (0.83182990797983181, -1.5897782833934917) +description = Lake No. 1 UT, MN +station = ('kbfw', 0.0088407599086300741) +zone = ('mnz012', 0.0031338857345905818) + +[fips2707534773] +centroid = (0.82592762332860747, -1.6006520336992667) +description = Lake No. 2 UT, MN +station = ('kbfw', 0.0042522814014585167) +zone = ('mnz020', 0.003187347289694325) + +[fips2707560250] +centroid = (0.82542399111965203, -1.593080917577163) +description = Silver Bay city, MN +station = ('kbfw', 0.0021868930969644071) +zone = ('mnz020', 0.0020350762371999739) + +[fips2707560304] +centroid = (0.82460782280154177, -1.598649530181991) +description = Silver Creek township, MN +station = ('kbfw', 0.0024597509781645491) +zone = ('mnz020', 0.0018586046441857117) + +[fips2707562995] +centroid = (0.83197733594174783, -1.5969956212762162) +description = Stony River township, MN +station = ('kelo', 0.0046759959919777348) +zone = ('mnz012', 0.0044682151608258589) + +[fips2707565956] +centroid = (0.82083157607204937, -1.6000301205269034) +description = Two Harbors city, MN +station = ('ktwm', 0.00095705472741143777) +zone = ('mnz020', 0.0051554668453445392) + +[fips2707660] +centroid = (0.76266027570185402, -1.6661702975557324) +description = Brewster city, MN +station = ('kotg', 0.0017112678019355137) +zone = ('mnz090', 0.0039386546390689989) + +[fips2707678] +centroid = (0.76027952442908608, -1.6373466911045291) +description = Bricelyn city, MN +station = ('kfxy', 0.0062713462638749476) +zone = ('mnz092', 0.0026075005757019601) + +[fips27077] +centroid = (0.85116391494184662, -1.6563983387001562) +description = Lake of the Woods County, MN +station = ('kbde', 0.003368905151833833) +zone = ('mnz006', 6.653878898750019e-05) + +[fips2707701550] +centroid = (0.85475632614122665, -1.6585747991839781) +description = Angle township, MN +station = ('krrt', 0.0036995998432441755) +zone = ('mnz006', 0.0038035866197775031) + +[fips2707704024] +centroid = (0.8501894452605806, -1.6509384775610199) +description = Baudette city, MN +station = ('kbde', 0.00046595714914138736) +zone = ('mnz006', 0.0037530657529398913) + +[fips2707704027] +centroid = (0.85060122079100364, -1.6521429292778211) +description = Baudette township, MN +station = ('kbde', 0.00051013658406048976) +zone = ('mnz006', 0.0028804500044015678) + +[fips2707706966] +centroid = (0.84818558038648839, -1.651091787282515) +description = Boone township, MN +station = ('kbde', 0.0023787703895311635) +zone = ('mnz006', 0.0046455709708011364) + +[fips2707711322] +centroid = (0.85286583785534387, -1.6588884173972689) +description = Chilgren township, MN +station = ('krrt', 0.003698134334391449) +zone = ('mnz006', 0.0023121115098898694) + +[fips2707721690] +centroid = (0.84710995142177681, -1.658838169368104) +description = Forest Area township, MN +station = ('kbde', 0.0060187750490241863) +zone = ('mnz006', 0.004422357186596706) + +[fips2707726250] +centroid = (0.84928138535735298, -1.6493110452999979) +description = Gudrid township, MN +station = ('kbde', 0.0018651063999967864) +zone = ('mnz006', 0.0050709332475361987) + +[fips2707733048] +centroid = (0.84512312096118403, -1.6515668135450303) +description = Kiel township, MN +station = ('kvwu', 0.0048484289242772391) +zone = ('mnz009', 0.0063579951089172883) + +[fips2707735208] +centroid = (0.85359561237548032, -1.6579685067084202) +description = Lakewood township, MN +station = ('krrt', 0.0040996276735432461) +zone = ('mnz006', 0.0025791371739107079) + +[fips2707738988] +centroid = (0.85094142036880238, -1.6561088932970056) +description = McDougald township, MN +station = ('kbde', 0.0031469160758987561) +zone = ('mnz006', 0.00034912992546834524) + +[fips2707744887] +centroid = (0.85083366374078429, -1.6584411418698604) +description = Myhre township, MN +station = ('krrt', 0.0050329948024422028) +zone = ('mnz006', 0.0013986688878655841) + +[fips2707752208] +centroid = (0.84951018056899696, -1.6560261123305833) +description = Potamo township, MN +station = ('kbde', 0.0032448164819641112) +zone = ('mnz006', 0.0017382632210118125) + +[fips2707752672] +centroid = (0.8536131703877553, -1.6569248347223127) +description = Prosper township, MN +station = ('krrt', 0.0047770037230010247) +zone = ('mnz006', 0.0024072315525936437) + +[fips2707753212] +centroid = (0.84828167821510325, -1.6487465360067326) +description = Rapid River township, MN +station = ('kbde', 0.00286092586240418) +zone = ('mnz006', 0.0058536654484373429) + +[fips2707755438] +centroid = (0.85167787949997387, -1.6595970559801638) +description = Roosevelt city, MN +station = ('krrt', 0.0039040249718075575) +zone = ('mnz006', 0.0021493745603868037) + +[fips2707756238] +centroid = (0.84802514972164511, -1.6533176929440461) +description = Rulien township, MN +station = ('kbde', 0.0028393493769162657) +zone = ('mnz006', 0.0037989135930975079) + +[fips2707761726] +centroid = (0.84925148786726634, -1.6517245214962404) +description = Spooner township, MN +station = ('kbde', 0.0013261643030304173) +zone = ('mnz006', 0.003668561153746492) + +[fips2707763945] +centroid = (0.84644023368120158, -1.6513204254145264) +description = Swiftwater township, MN +station = ('kbde', 0.0041170316304876024) +zone = ('mnz006', 0.0058516125051936083) + +[fips2707765298] +centroid = (0.84492938941421269, -1.6492334305081615) +description = Township 157-30, MN +station = ('kvwu', 0.0044884710496483644) +zone = ('mnz009', 0.0074156973341436708) + +[fips2707765300] +centroid = (0.84644133323863024, -1.6490553545645807) +description = Township 158-30, MN +station = ('kbde', 0.0043915941782185046) +zone = ('mnz006', 0.0068215743200601107) + +[fips2707767044] +centroid = (0.84617475164868061, -1.6534452939656594) +description = Victory township, MN +station = ('kbde', 0.0045917122397459587) +zone = ('mnz006', 0.0054211231258754254) + +[fips2707767368] +centroid = (0.85126790165868038, -1.6545121264709408) +description = Wabanica township, MN +station = ('kbde', 0.0021886678687442502) +zone = ('mnz006', 0.0012490253499039675) + +[fips2707767782] +centroid = (0.84949887083544406, -1.6537461538221181) +description = Walhalla township, MN +station = ('kbde', 0.0018905481211234161) +zone = ('mnz006', 0.0024653150489795019) + +[fips2707769849] +centroid = (0.85211494485125827, -1.6540591960767559) +description = Wheeler township, MN +station = ('kbde', 0.0023583293515683432) +zone = ('mnz006', 0.001781424596291079) + +[fips2707770402] +centroid = (0.85116131440126108, -1.6572476682740542) +description = Williams city, MN +station = ('krrt', 0.005453700744154414) +zone = ('mnz006', 0.00055868698525944702) + +[fips2707772264] +centroid = (0.85229195614399555, -1.6564218308318881) +description = Zippel township, MN +station = ('kbde', 0.0037522794430829396) +zone = ('mnz006', 0.0010617668845379431) + +[fips27079] +centroid = (0.77446187794457422, -1.6359002494869388) +description = Le Sueur County, MN +station = ('kmkt', 0.0035930408878342554) +zone = ('mnz076', 3.492649411140622e-05) + +[fips2707911872] +centroid = (0.77359259925732593, -1.6377352363026081) +description = Cleveland city, MN +station = ('kmkt', 0.0021251478629512955) +zone = ('mnz076', 0.0015569509500661925) + +[fips2707911890] +centroid = (0.77345136721425467, -1.6376974848308872) +description = Cleveland township, MN +station = ('kmkt', 0.0020161639743267561) +zone = ('mnz076', 0.0016154636491945702) + +[fips2707913204] +centroid = (0.77370217102776617, -1.6352873247602231) +description = Cordova township, MN +station = ('kmkt', 0.0034019084649475166) +zone = ('mnz076', 0.00084589773955614264) + +[fips2707915760] +centroid = (0.77664535465198925, -1.6353600177235688) +description = Derrynane township, MN +station = ('kmkt', 0.0056176958263489934) +zone = ('mnz076', 0.0022512373208282374) + +[fips2707919160] +centroid = (0.77156039023618139, -1.6350270612621658) +description = Elysian city, MN +station = ('kacq', 0.0028265068280265235) +zone = ('mnz076', 0.0029335074635582579) + +[fips2707919178] +centroid = (0.77229620359552964, -1.6356541580624075) +description = Elysian township, MN +station = ('kmkt', 0.0025723235389243176) +zone = ('mnz076', 0.0021379001499384422) + +[fips2707928214] +centroid = (0.77655056582031345, -1.6340899590801852) +description = Heidelberg city, MN +station = ('kfbl', 0.0047633030596804108) +zone = ('mnz076', 0.0024848906590788007) + +[fips2707932462] +centroid = (0.77300971164703747, -1.640063627697816) +description = Kasota city, MN +station = ('kmkt', 0.0014388710792533246) +zone = ('mnz076', 0.0033002191783793829) + +[fips2707932480] +centroid = (0.77306009930254249, -1.6395994922898331) +description = Kasota township, MN +station = ('kmkt', 0.0013711444936474891) +zone = ('mnz076', 0.0029802755033682209) + +[fips2707933110] +centroid = (0.77345573053738448, -1.6331750749395821) +description = Kilkenny city, MN +station = ('kfbl', 0.0032281644349500677) +zone = ('mnz076', 0.0021755507496370586) + +[fips2707933128] +centroid = (0.77372267864647704, -1.6334717983657139) +description = Kilkenny township, MN +station = ('kfbl', 0.003425602662313041) +zone = ('mnz076', 0.0018718342327306481) + +[fips2707935468] +centroid = (0.776650381200235, -1.6333565891817896) +description = Lanesburgh township, MN +station = ('kfbl', 0.0044138948668580652) +zone = ('mnz069', 0.0026805934557966433) + +[fips2707936134] +centroid = (0.77468358711945506, -1.6359350513522235) +description = Le Center city, MN +station = ('kmkt', 0.0037490612524323464) +zone = ('mnz076', 0.00025799271376434328) + +[fips2707936746] +centroid = (0.77613079668191631, -1.6388723183102825) +description = Le Sueur city, MN +station = ('kmkt', 0.0044090182561376803) +zone = ('mnz076', 0.0027236635652145682) + +[fips2707936872] +centroid = (0.77524287787825674, -1.6353837192948111) +description = Lexington township, MN +station = ('kmkt', 0.0044324236115101737) +zone = ('mnz076', 0.00089453106231628847) + +[fips2707939878] +centroid = (0.77214256226147659, -1.6393346560291355) +description = Mankato city, MN +station = ('kmkt', 0.00043559010211181539) +zone = ('mnz076', 0.0033571187339850365) + +[fips2707943738] +centroid = (0.77571863717905787, -1.6332801786671374) +description = Montgomery city, MN +station = ('kfbl', 0.0038233218685559097) +zone = ('mnz076', 0.0022722517250120268) + +[fips2707943756] +centroid = (0.77505511535732718, -1.6334937546077037) +description = Montgomery township, MN +station = ('kfbl', 0.0036737013292524917) +zone = ('mnz076', 0.001828688983753937) + +[fips2707945808] +centroid = (0.77733376486885342, -1.6331366427894534) +description = New Prague city, MN +station = ('kfbl', 0.0047817759537886334) +zone = ('mnz069', 0.0019794481182799552) + +[fips2707948] +centroid = (0.78660600105299838, -1.6286475337802762) +description = Brooklyn Center city, MN +station = ('kmic', 0.00043823863925938835) +zone = ('mnz062', 0.002805689089721391) + +[fips2707949174] +centroid = (0.77504150178916165, -1.6392221171989669) +description = Ottawa township, MN +station = ('kmkt', 0.003315431476822553) +zone = ('mnz076', 0.0024542435314155162) + +[fips2707959386] +centroid = (0.77514561067904297, -1.637439036475252) +description = Sharon township, MN +station = ('kmkt', 0.0036329682896791425) +zone = ('mnz076', 0.0013154341516752376) + +[fips2707966] +centroid = (0.78733383825766512, -1.6292489393339284) +description = Brooklyn Park city, MN +station = ('kmic', 0.00077220380172359404) +zone = ('mnz060', 0.0024347797827337578) + +[fips2707966100] +centroid = (0.77688664642107752, -1.6378190644665813) +description = Tyrone township, MN +station = ('kgyl', 0.0052021382070057652) +zone = ('mnz076', 0.0028165013363469706) + +[fips2707968350] +centroid = (0.77250124487605387, -1.6376163444739622) +description = Washington township, MN +station = ('kmkt', 0.0013474501887708761) +zone = ('mnz076', 0.0022851215118151929) + +[fips2707968584] +centroid = (0.77181695363622449, -1.6331466086194821) +description = Waterville city, MN +station = ('kacq', 0.0026034800701932488) +zone = ('mnz076', 0.0032692418460500651) + +[fips2707968602] +centroid = (0.77238092187742147, -1.6335548236782311) +description = Waterville township, MN +station = ('kacq', 0.0032011873063815433) +zone = ('mnz076', 0.0026448957209223235) + +[fips2707984] +centroid = (0.80194910324081803, -1.6244253554268993) +description = Brook Park city, MN +station = ('k04w', 0.0025448570501476406) +zone = ('mnz045', 0.0026798727916967149) + +[fips2708038] +centroid = (0.83455735145521592, -1.6755757023618045) +description = Brooks city, MN +station = ('kfse', 0.0047502539562553955) +zone = ('mnz014', 0.0014431873280558879) + +[fips2708056] +centroid = (0.81795516874500751, -1.6162154487985654) +description = Brookston city, MN +station = ('kcoq', 0.0031347853251342764) +zone = ('mnz037', 0.0020034855056719003) + +[fips2708092] +centroid = (0.79412578704180103, -1.660084805692926) +description = Brooten city, MN +station = ('kghw', 0.0035871301458447226) +zone = ('mnz048', 0.0042882237251482816) + +[fips27081] +centroid = (0.77506996810926154, -1.6802639359853415) +description = Lincoln County, MN +station = ('kcnb', 0.0053835091860947341) +zone = ('mnz071', 9.7862466053097569e-05) + +[fips2708101180] +centroid = (0.77825604920548475, -1.6780010642502534) +description = Alta Vista township, MN +station = ('kcnb', 0.0026847875497629653) +zone = ('mnz071', 0.0034759459523779805) + +[fips2708101972] +centroid = (0.77458364956648595, -1.6786660521485557) +description = Arco city, MN +station = ('kcnb', 0.0059665074300641547) +zone = ('mnz071', 0.0012178662157019922) + +[fips2708102476] +centroid = (0.77532440220761734, -1.6802614401645113) +description = Ash Lake township, MN +station = ('kcnb', 0.0051290726716425204) +zone = ('mnz071', 0.00018803197715981719) + +[fips2708110] +centroid = (0.80426049512911157, -1.6556992994281474) +description = Browerville city, MN +station = ('k14y', 0.0031544697547255993) +zone = ('mnz042', 0.00043713069218738996) + +[fips2708115940] +centroid = (0.77381469240464218, -1.680249990804618) +description = Diamond Lake township, MN +station = ('kpqn', 0.0061869183085626672) +zone = ('mnz071', 0.0013324049699321371) + +[fips2708116372] +centroid = (0.77379648862054395, -1.6823739517845402) +description = Drammen township, MN +station = ('kpqn', 0.0062162794926282003) +zone = ('mnz071', 0.0020701592034232785) + +[fips2708127026] +centroid = (0.77807153299696397, -1.6823028819773991) +description = Hansonville township, MN +station = ('kcnb', 0.0028237486869573474) +zone = ('mnz071', 0.0032948005044850892) + +[fips2708128430] +centroid = (0.77682243575789667, -1.6829585498174957) +description = Hendricks city, MN +station = ('kcnb', 0.0041377754702073546) +zone = ('mnz071', 0.0025978863123544095) + +[fips2708128448] +centroid = (0.77667458891696017, -1.6822522150692136) +description = Hendricks township, MN +station = ('kcnb', 0.0040587785388560092) +zone = ('mnz071', 0.0021280468972073615) + +[fips2708130104] +centroid = (0.77201670656911525, -1.6780370180328446) +description = Hope township, MN +station = ('kpqn', 0.0048674187154550295) +zone = ('mnz071', 0.003484083699372286) + +[fips2708131526] +centroid = (0.7760452755485685, -1.6799294087276118) +description = Ivanhoe city, MN +station = ('kcnb', 0.0044111251411403547) +zone = ('mnz071', 0.00091650746332139741) + +[fips2708134100] +centroid = (0.77254074167702647, -1.6806169986397275) +description = Lake Benton city, MN +station = ('kpqn', 0.0048963158898363513) +zone = ('mnz071', 0.0026242217059999416) + +[fips2708134118] +centroid = (0.77206194550332696, -1.6798489141425099) +description = Lake Benton township, MN +station = ('kpqn', 0.0044905628499134626) +zone = ('mnz071', 0.0030931185622749095) + +[fips2708135054] +centroid = (0.77531977708509958, -1.6777897048778367) +description = Lake Stay township, MN +station = ('kcnb', 0.0054061795293040621) +zone = ('mnz071', 0.0017145751560079497) + +[fips2708137106] +centroid = (0.77660350165652636, -1.6777864411121357) +description = Limestone township, MN +station = ('kcnb', 0.0042070807668574241) +zone = ('mnz071', 0.0022445292819793634) + +[fips2708140436] +centroid = (0.77821112443053841, -1.6804147498860063) +description = Marble township, MN +station = ('kcnb', 0.0022486739042034717) +zone = ('mnz071', 0.003069678664802249) + +[fips2708140760] +centroid = (0.77378306703859612, -1.6781512672856802) +description = Marshfield township, MN +station = ('kmml', 0.0046311781663423857) +zone = ('mnz071', 0.0019890420981534805) + +[fips2708156158] +centroid = (0.77666205745293082, -1.680230111504438) +description = Royal township, MN +station = ('kcnb', 0.0037912455846879) +zone = ('mnz071', 0.0015164168715111005) + +[fips2708159377] +centroid = (0.7750698284829215, -1.6824022261184224) +description = Shaokatan township, MN +station = ('kcnb', 0.0056131988915524515) +zone = ('mnz071', 0.001590797801170463) + +[fips2708164] +centroid = (0.76340968517607533, -1.6208497866548011) +description = Brownsdale city, MN +station = ('kaum', 0.0015256555175126982) +zone = ('mnz094', 0.0018862862956110329) + +[fips2708166046] +centroid = (0.77281648624554911, -1.6778718749790209) +description = Tyler city, MN +station = ('kmml', 0.0049667753800690809) +zone = ('mnz071', 0.0028542199479444806) + +[fips2708166730] +centroid = (0.77217622966274746, -1.6823067391550459) +description = Verdi township, MN +station = ('kpqn', 0.0046123756053168367) +zone = ('mnz071', 0.0033375708141981783) + +[fips2708200] +centroid = (0.79577709540699049, -1.6900517424305257) +description = Browns Valley city, MN +station = ('k8d3', 0.0022255295202401231) +zone = ('sdz008', 0.001511291315524872) + +[fips2708218] +centroid = (0.76272809919658646, -1.5932754345222977) +description = Brownsville city, MN +station = ('klse', 0.0032163055489873335) +zone = ('mnz096', 0.0026367783031099015) + +[fips2708254] +centroid = (0.78073101335127526, -1.6467375747712245) +description = Brownton city, MN +station = ('khcd', 0.0023738223569968785) +zone = ('mnz066', 0.0018623677895285831) + +[fips2708290] +centroid = (0.80775560422269299, -1.6173625489961463) +description = Bruno city, MN +station = ('kmzh', 0.0028521521950518689) +zone = ('mnz038', 0.0029328483584898759) + +[fips27083] +centroid = (0.77508667091020311, -1.6728504056414004) +description = Lyon County, MN +station = ('kmml', 0.00080788023526122508) +zone = ('mnz072', 0.00012755862863711594) + +[fips2708301432] +centroid = (0.77364623322523973, -1.6694829150227251) +description = Amiret township, MN +station = ('ktkc', 0.0014795080736516573) +zone = ('mnz072', 0.0027578312992092924) + +[fips2708303250] +centroid = (0.77201056301014825, -1.6732658463632526) +description = Balaton city, MN +station = ('ktkc', 0.0033108119227165766) +zone = ('mnz072', 0.0031765858666175811) + +[fips2708311926] +centroid = (0.77504603964521679, -1.6693136878984516) +description = Clifton township, MN +station = ('ktkc', 0.002796512487443655) +zone = ('mnz072', 0.0024261282081600123) + +[fips2708313078] +centroid = (0.77374032392521475, -1.6757097611016503) +description = Coon Creek township, MN +station = ('kmml', 0.0031808274019275284) +zone = ('mnz072', 0.0025749468758422818) + +[fips2708313564] +centroid = (0.77860804720902688, -1.6697926586050764) +description = Cottonwood city, MN +station = ('kgdb', 0.0028691033491272146) +zone = ('mnz064', 0.0030508474866345822) + +[fips2708314392] +centroid = (0.77200429727813358, -1.67168162845451) +description = Custer township, MN +station = ('ktkc', 0.0021827744228053395) +zone = ('mnz072', 0.003241456492273392) + +[fips2708318332] +centroid = (0.77831439556237891, -1.6759125509074395) +description = Eidsvold township, MN +station = ('kmml', 0.0035919749357375065) +zone = ('mnz064', 0.0028661004699691234) + +[fips2708320384] +centroid = (0.77672333596296839, -1.6715928086488758) +description = Fairview township, MN +station = ('kmml', 0.0010588580825035771) +zone = ('mnz072', 0.0017520846825018191) + +[fips2708321410] +centroid = (0.77207699024147913, -1.6764463249525767) +description = Florence city, MN +station = ('kmml', 0.0047514396961500184) +zone = ('mnz071', 0.0040676373989709672) + +[fips2708323228] +centroid = (0.77165467292237411, -1.6713295780910902) +description = Garvin city, MN +station = ('ktkc', 0.0020146655251203831) +zone = ('mnz080', 0.0033243067020298995) + +[fips2708323660] +centroid = (0.77686947238123782, -1.6736461012473847) +description = Ghent city, MN +station = ('kmml', 0.0014305328010932334) +zone = ('mnz072', 0.0018347230947114888) + +[fips2708325154] +centroid = (0.77657093381268416, -1.6735552568598182) +description = Grandview township, MN +station = ('kmml', 0.0011737731570969486) +zone = ('mnz072', 0.0015339628239572352) + +[fips2708331400] +centroid = (0.77521376578633339, -1.6756665991092483) +description = Island Lake township, MN +station = ('kmml', 0.0024628356618463291) +zone = ('mnz072', 0.0021152903488833633) + +[fips2708334712] +centroid = (0.77498147991618549, -1.6715139895798559) +description = Lake Marshall township, MN +station = ('kmml', 0.00099819844313155126) +zone = ('mnz072', 0.00087049297731220518) + +[fips2708338438] +centroid = (0.77806008363707091, -1.6695799378758434) +description = Lucas township, MN +station = ('kmml', 0.0029867101814708874) +zone = ('mnz064', 0.0035191771133981681) + +[fips2708338708] +centroid = (0.77494529924079159, -1.6733060762025109) +description = Lynd city, MN +station = ('kmml', 0.0011082379033884782) +zone = ('mnz072', 0.00048019147801145668) + +[fips2708338726] +centroid = (0.77521853053519141, -1.6737591985829139) +description = Lynd township, MN +station = ('kmml', 0.0011825068961667255) +zone = ('mnz072', 0.00075434998678327301) + +[fips2708338834] +centroid = (0.77374774157453574, -1.6735044677785853) +description = Lyons township, MN +station = ('kmml', 0.0022198898034472172) +zone = ('mnz072', 0.0015248772042268583) + +[fips2708340688] +centroid = (0.77575890192490127, -1.6718291262295959) +description = Marshall city, MN +station = ('kmml', 0.00035007691011141147) +zone = ('mnz072', 0.00086527886401818266) + +[fips2708343126] +centroid = (0.77776330785106174, -1.6752129182234849) +description = Minneota city, MN +station = ('kmml', 0.0028507085901639489) +zone = ('mnz064', 0.0030342996229121922) + +[fips2708343666] +centroid = (0.77221949637490439, -1.6696141637824748) +description = Monroe township, MN +station = ('ktkc', 0.00068642812524005498) +zone = ('mnz072', 0.003680914721536198) + +[fips2708346564] +centroid = (0.77668891807011897, -1.6758494223483946) +description = Nordland township, MN +station = ('kmml', 0.002673558083421164) +zone = ('mnz072', 0.0027140161024188586) + +[fips2708355042] +centroid = (0.77219945999509154, -1.6735663047939833) +description = Rock Lake township, MN +station = ('ktkc', 0.0035151639216882105) +zone = ('mnz072', 0.0030255817358427967) + +[fips2708356428] +centroid = (0.77353760393259563, -1.6745344738366497) +description = Russell city, MN +station = ('kmml', 0.0027615488657553723) +zone = ('mnz072', 0.0020848113811308996) + +[fips2708359440] +centroid = (0.7721939447546553, -1.6760461384083871) +description = Shelburne township, MN +station = ('kmml', 0.0044843877163558143) +zone = ('mnz072', 0.0038100983524091575) + +[fips2708361042] +centroid = (0.7736562165085612, -1.6716150790501312) +description = Sodus township, MN +station = ('kmml', 0.002200454239735263) +zone = ('mnz072', 0.0016955967306027506) + +[fips2708362392] +centroid = (0.7765647553471321, -1.669493055385679) +description = Stanley township, MN +station = ('kmml', 0.0021553306738283169) +zone = ('mnz072', 0.0026885907512517308) + +[fips2708364264] +centroid = (0.77831690883650173, -1.6766145921457616) +description = Taunton city, MN +station = ('kcnb', 0.0033106907685829514) +zone = ('mnz064', 0.0032199424701016711) + +[fips2708365308] +centroid = (0.772103065460504, -1.6688182412836881) +description = Tracy city, MN +station = ('ktkc', 0.00021729311067746751) +zone = ('mnz072', 0.0041341784588883558) + +[fips2708366496] +centroid = (0.77818733559283371, -1.6718205566629687) +description = Vallers township, MN +station = ('kmml', 0.0024144985663717036) +zone = ('mnz064', 0.0024666275036348407) + +[fips2708369412] +centroid = (0.77829804182728768, -1.6741135527809463) +description = Westerheim township, MN +station = ('kmml', 0.0028085495445313953) +zone = ('mnz064', 0.0022395066646158576) + +[fips2708416] +centroid = (0.80105821737742999, -1.6422450972765912) +description = Buckman city, MN +station = ('klxl', 0.0032448511679212112) +zone = ('mnz043', 0.0029232946312305655) + +[fips2708452] +centroid = (0.78851919607244958, -1.6382571595621245) +description = Buffalo city, MN +station = ('kcfe', 0.00044206625192184961) +zone = ('mnz059', 0.0012060671429139486) + +[fips2708488] +centroid = (0.78081105415077179, -1.6513970279153964) +description = Buffalo Lake city, MN +station = ('khcd', 0.0036822209119064002) +zone = ('mnz067', 0.0055258532722082185) + +[fips27085] +centroid = (0.78228526395676123, -1.6453623774937005) +description = McLeod County, MN +station = ('khcd', 0.0015826334824784781) +zone = ('mnz066', 3.2408446379104177e-05) + +[fips2708500136] +centroid = (0.78418261138660439, -1.6483482518714276) +description = Acoma township, MN +station = ('khcd', 0.0013367841476767338) +zone = ('mnz066', 0.0028197046901565536) + +[fips2708505338] +centroid = (0.78267813757138527, -1.6417293350293343) +description = Bergen township, MN +station = ('kgyl', 0.0015509082991030025) +zone = ('mnz068', 0.0032642352913014689) + +[fips2708506112] +centroid = (0.78236444954492423, -1.6453961496147267) +description = Biscay city, MN +station = ('khcd', 0.0015235455110225369) +zone = ('mnz066', 5.2123120193922478e-05) + +[fips2708508254] +centroid = (0.78073101335127526, -1.6467375747712245) +description = Brownton city, MN +station = ('khcd', 0.0023738223569968785) +zone = ('mnz066', 0.0018623677895285831) + +[fips2708512610] +centroid = (0.7812377696995918, -1.6482220122066309) +description = Collins township, MN +station = ('khcd', 0.0019464902389815678) +zone = ('mnz066', 0.002297932725205936) + +[fips2708523948] +centroid = (0.78139404648081545, -1.6431988848062209) +description = Glencoe city, MN +station = ('kgyl', 0.00087080053622419322) +zone = ('mnz066', 0.0017924925711965433) + +[fips2708523966] +centroid = (0.78129924019584707, -1.643935658096658) +description = Glencoe township, MN +station = ('kgyl', 0.0013657034819696502) +zone = ('mnz066', 0.0014367502481342502) + +[fips2708524] +centroid = (0.82900366141549231, -1.6193412287691322) +description = Buhl city, MN +station = ('khib', 0.0020998993456019413) +zone = ('mnz019', 0.0041853004620920741) + +[fips2708526540] +centroid = (0.78419325789504157, -1.6440997888595155) +description = Hale township, MN +station = ('khcd', 0.0025293975776595227) +zone = ('mnz066', 0.0020784919861418449) + +[fips2708527494] +centroid = (0.78270721475672345, -1.6461140733492421) +description = Hassan Valley township, MN +station = ('khcd', 0.00091598733479593538) +zone = ('mnz066', 0.00065943480743454693) + +[fips2708528304] +centroid = (0.78108084714654513, -1.6418142627507364) +description = Helen township, MN +station = ('kgyl', 0.00016157553172508696) +zone = ('mnz068', 0.0035093403063297317) + +[fips2708530644] +centroid = (0.7833972830363769, -1.6471872239464158) +description = Hutchinson city, MN +station = ('khcd', 0.00033585901414128573) +zone = ('mnz066', 0.0016841983007082316) + +[fips2708530662] +centroid = (0.78418604968523076, -1.6460343292557187) +description = Hutchinson township, MN +station = ('khcd', 0.0014307020183134539) +zone = ('mnz066', 0.0019278686088054452) + +[fips2708536728] +centroid = (0.78336181794597637, -1.64125507671169) +description = Lester Prairie city, MN +station = ('kgyl', 0.0022865233490615895) +zone = ('mnz068', 0.0030998141454003517) + +[fips2708538798] +centroid = (0.78269695222072178, -1.6484134399189894) +description = Lynn township, MN +station = ('khcd', 0.00087351541699431804) +zone = ('mnz066', 0.0021956731684899047) + +[fips2708550308] +centroid = (0.77972156727179931, -1.646100913566682) +description = Penn township, MN +station = ('khcd', 0.0034559588731524244) +zone = ('mnz067', 0.0019531985147873171) + +[fips2708551460] +centroid = (0.7814249213552833, -1.6412960570425268) +description = Plato city, MN +station = ('kgyl', 0.00059017437695356478) +zone = ('mnz068', 0.0030527004431724217) + +[fips2708554322] +centroid = (0.78289117245988371, -1.6441176959376409) +description = Rich Valley township, MN +station = ('khcd', 0.0022627695240001943) +zone = ('mnz066', 0.0010533813958490622) + +[fips2708556032] +centroid = (0.77974663019985802, -1.6480676901941695) +description = Round Grove township, MN +station = ('khcd', 0.0033688128487508831) +zone = ('mnz067', 0.0029543364621617474) + +[fips2708560376] +centroid = (0.78372125105213208, -1.6440592099544067) +description = Silver Lake city, MN +station = ('khcd', 0.0023863975003168198) +zone = ('mnz066', 0.0016807934227266107) + +[fips2708562788] +centroid = (0.78057707531124931, -1.6491021817484115) +description = Stewart city, MN +station = ('khcd', 0.0028027874020642167) +zone = ('mnz066', 0.0031737479676127423) + +[fips2708563436] +centroid = (0.78135224584523011, -1.6461311950292044) +description = Sumter township, MN +station = ('khcd', 0.0019083059938451738) +zone = ('mnz066', 0.0011084156732518095) + +[fips2708571086] +centroid = (0.78469128759709805, -1.6415071371622629) +description = Winsted city, MN +station = ('kgyl', 0.0035687298329449163) +zone = ('mnz066', 0.0036192666833858691) + +[fips2708571104] +centroid = (0.78424301723201595, -1.6419153173144267) +description = Winsted township, MN +station = ('kgyl', 0.0031024954741413076) +zone = ('mnz066', 0.0031109663180779539) + +[fips27087] +centroid = (0.8259917641786183, -1.6722122260004086) +description = Mahnomen County, MN +station = ('kfse', 0.0046797313126947298) +zone = ('mnz022', 2.3053440033815854e-05) + +[fips2708704366] +centroid = (0.8267793090969956, -1.6708448477979339) +description = Beaulieu township, MN +station = ('kfse', 0.0039014162655354591) +zone = ('mnz022', 0.0012080622827987347) + +[fips2708704672] +centroid = (0.82803723770207804, -1.6750290826933725) +description = Bejou city, MN +station = ('kfse', 0.0035098571535339437) +zone = ('mnz022', 0.002818624447127876) + +[fips2708704690] +centroid = (0.82832764303631734, -1.6754211185499552) +description = Bejou township, MN +station = ('kfse', 0.0034920036654185423) +zone = ('mnz022', 0.0032117988562230825) + +[fips2708711314] +centroid = (0.82681442512154579, -1.6735625872426767) +description = Chief township, MN +station = ('kfse', 0.0040679709168456651) +zone = ('mnz022', 0.0012528556009544585) + +[fips2708712250] +centroid = (0.8266348831013931, -1.6683640891590266) +description = Clover township, MN +station = ('kfse', 0.0045598595553082589) +zone = ('mnz023', 0.0027610810222110363) + +[fips2708725946] +centroid = (0.82837865901035312, -1.6730379412695271) +description = Gregory township, MN +station = ('kfse', 0.0024815228644948337) +zone = ('mnz022', 0.0024670286536408429) + +[fips2708728232] +centroid = (0.82843611524932881, -1.6704171025048549) +description = Heier township, MN +station = ('kfse', 0.0023451617519289311) +zone = ('mnz022', 0.0027309185883387082) + +[fips2708731418] +centroid = (0.82823720007447899, -1.66882663631739) +description = Island Lake township, MN +station = ('kfse', 0.0030383928921828428) +zone = ('mnz022', 0.0032022088504768654) + +[fips2708733956] +centroid = (0.82541447907522858, -1.6709961678440817) +description = La Garde township, MN +station = ('kfse', 0.0052500605818914864) +zone = ('mnz022', 0.00098360895641411454) + +[fips2708734424] +centroid = (0.82356165499460399, -1.6735031238750611) +description = Lake Grove township, MN +station = ('kdtl', 0.006165809041416264) +zone = ('mnz022', 0.0025796352892659101) + +[fips2708737530] +centroid = (0.82348093351669915, -1.6683774060212193) +description = Little Elbow township, MN +station = ('kdtl', 0.0070095559214995475) +zone = ('mnz023', 0.0036403603600642857) + +[fips2708739392] +centroid = (0.82579274428401339, -1.6749441375186778) +description = Mahnomen city, MN +station = ('kfse', 0.0053698947584206172) +zone = ('mnz022', 0.0018815239861217235) + +[fips2708740742] +centroid = (0.82682458293779237, -1.6755818284674788) +description = Marsh Creek township, MN +station = ('kfse', 0.0046932200905883698) +zone = ('mnz022', 0.0024529139124519544) + +[fips2708747806] +centroid = (0.82363649471292943, -1.6710810606588986) +description = Oakland township, MN +station = ('kdtl', 0.006451404556160791) +zone = ('mnz022', 0.0024603785162064539) + +[fips2708750218] +centroid = (0.82496982154169796, -1.6756617470939279) +description = Pembina township, MN +station = ('kfse', 0.0063222956900152822) +zone = ('mnz022', 0.0025670092068465797) + +[fips2708752054] +centroid = (0.82383788825531701, -1.6758374144831409) +description = Popple Grove township, MN +station = ('kdtl', 0.0066395061248688053) +zone = ('mnz022', 0.0032776452827186333) + +[fips2708755618] +centroid = (0.82518229792483577, -1.6733625026972281) +description = Rosedale township, MN +station = ('kfse', 0.0056026449264628417) +zone = ('mnz022', 0.0011302784919828219) + +[fips2708765929] +centroid = (0.82530647810111513, -1.6679685277373544) +description = Twin Lakes township, MN +station = ('kfse', 0.0058703596123459044) +zone = ('mnz023', 0.0024872447143109589) + +[fips2708768674] +centroid = (0.82351500234369812, -1.6744712231045575) +description = Waubun city, MN +station = ('kdtl', 0.0061563616802720765) +zone = ('mnz022', 0.0029141335075487779) + +[fips2708794] +centroid = (0.78128632475938231, -1.628032165592608) +description = Burnsville city, MN +station = ('kmsp', 0.001946278180707992) +zone = ('mnz070', 0.0031050413401491738) + +[fips27089] +centroid = (0.84408883884645214, -1.6817601892997838) +description = Marshall County, MN +station = ('ktvf', 0.0055511675709497294) +zone = ('mnz008', 0.0041952661905312483) + +[fips2708900388] +centroid = (0.84175086559365064, -1.6758685860635816) +description = Agder township, MN +station = ('ktvf', 0.0034078945527082111) +zone = ('mnz008', 0.0022571573962602842) + +[fips2708901072] +centroid = (0.8435731115057804, -1.6874845376337675) +description = Alma township, MN +station = ('ktvf', 0.0074696595112059058) +zone = ('mnz007', 0.0010327278035632684) + +[fips2708901252] +centroid = (0.84112444947181741, -1.6929412048203725) +description = Alvarado city, MN +station = ('kgfk', 0.0047562603799905651) +zone = ('mnz007', 0.003966326764693235) + +[fips2708902] +centroid = (0.80051030616535146, -1.6526063316475184) +description = Burtrum city, MN +station = ('k14y', 0.0022584369230269326) +zone = ('mnz042', 0.004390103111067651) + +[fips2708902134] +centroid = (0.84356792787790191, -1.6897616512555518) +description = Argyle city, MN +station = ('khco', 0.007473693317236324) +zone = ('mnz007', 0.00074451295452001133) + +[fips2708902764] +centroid = (0.84648643254650191, -1.6879929694981657) +description = Augsburg township, MN +station = ('khco', 0.0051359197114061259) +zone = ('mnz007', 0.0025286339791688209) + +[fips2708905842] +centroid = (0.84356866091618776, -1.6942970114899067) +description = Big Woods township, MN +station = ('kgaf', 0.0036402273220842432) +zone = ('mnz007', 0.0036293509391458669) + +[fips2708906535] +centroid = (0.84344952474144663, -1.6922182894441964) +description = Bloomer township, MN +station = ('kgfk', 0.0070738497691442154) +zone = ('mnz007', 0.0022928120427513714) + +[fips2708907120] +centroid = (0.84096613065536896, -1.690016940565241) +description = Boxville township, MN +station = ('kgfk', 0.0057926757814259497) +zone = ('mnz007', 0.0031532735638613793) + +[fips2708910360] +centroid = (0.84508636432713702, -1.6767200623924596) +description = Cedar township, MN +station = ('ktvf', 0.0063064227273259815) +zone = ('mnz008', 0.0013835658496547123) + +[fips2708912808] +centroid = (0.84648990575171323, -1.6765539594075474) +description = Como township, MN +station = ('krox', 0.0073766150576486042) +zone = ('mnz008', 0.0026048047304958336) + +[fips2708912880] +centroid = (0.84174135354922719, -1.6853942964149937) +description = Comstock township, MN +station = ('ktvf', 0.0052731927660370501) +zone = ('mnz007', 0.003256335196350602) + +[fips2708916066] +centroid = (0.8464868165189372, -1.6925629221582954) +description = Donnelly township, MN +station = ('khco', 0.0044267348227628898) +zone = ('mnz007', 0.0034671510998339162) + +[fips2708917414] +centroid = (0.84661823981161244, -1.6946459377139653) +description = Eagle Point township, MN +station = ('kgaf', 0.0036527606526760526) +zone = ('mnz007', 0.0046204198920675333) + +[fips2708917756] +centroid = (0.84645210192011511, -1.6810018786463772) +description = East Park township, MN +station = ('ktvf', 0.0076826250102354256) +zone = ('mnz008', 0.0044317847117997591) + +[fips2708917864] +centroid = (0.84322856605814411, -1.6761500029521732) +description = East Valley township, MN +station = ('ktvf', 0.0046342186415305499) +zone = ('mnz008', 0.00089358075556015605) + +[fips2708917972] +centroid = (0.84341189544277373, -1.6718012882280266) +description = Eckvoll township, MN +station = ('ktvf', 0.0064348544930780708) +zone = ('mnz008', 0.0024921112850611249) + +[fips2708919736] +centroid = (0.84172498236084359, -1.66954867902894) +description = Espelie township, MN +station = ('ktvf', 0.0067283571050505558) +zone = ('mnz008', 0.0045319727033253541) + +[fips2708920060] +centroid = (0.84175652046042704, -1.6785334420319893) +description = Excel township, MN +station = ('ktvf', 0.0028375379305546522) +zone = ('mnz008', 0.0030339961159493866) + +[fips2708921500] +centroid = (0.84344996107375969, -1.6853901425313742) +description = Foldahl township, MN +station = ('ktvf', 0.0063481504286063738) +zone = ('mnz007', 0.002390421181338912) + +[fips2708921878] +centroid = (0.84491223282766559, -1.694550258764371) +description = Fork township, MN +station = ('kgaf', 0.0032483052641120898) +zone = ('mnz007', 0.003868317110293723) + +[fips2708925046] +centroid = (0.84176460133486386, -1.6738840419843091) +description = Grand Plain township, MN +station = ('ktvf', 0.0042983318664466487) +zone = ('mnz008', 0.0024572013670845446) + +[fips2708926216] +centroid = (0.84298603510528713, -1.6689488617249073) +description = Grygla city, MN +station = ('ktvf', 0.0076764240888146278) +zone = ('mnz008', 0.0044362673033531445) + +[fips2708929870] +centroid = (0.84287016269624715, -1.6789136445562436) +description = Holt city, MN +station = ('ktvf', 0.0039507708709983396) +zone = ('mnz008', 0.0025622763342508198) + +[fips2708929888] +centroid = (0.84348958004777985, -1.6785037714347053) +description = Holt township, MN +station = ('ktvf', 0.0045701731350052078) +zone = ('mnz008', 0.0020919645521781816) + +[fips2708930572] +centroid = (0.84615895641895023, -1.6789906484828416) +description = Huntly township, MN +station = ('ktvf', 0.0072396731976392247) +zone = ('mnz008', 0.0031983830698266605) + +[fips2708937142] +centroid = (0.8464920874132783, -1.6834249541535062) +description = Lincoln township, MN +station = ('ktvf', 0.008193404925002595) +zone = ('mnz007', 0.0043791914048481456) + +[fips2708937340] +centroid = (0.84641480423399995, -1.6696898063522563) +description = Linsell township, MN +station = ('krox', 0.0061908190773852824) +zone = ('mnz008', 0.0045251429262740152) + +[fips2708938942] +centroid = (0.84173875300864176, -1.6876630673629538) +description = McCrea township, MN +station = ('kckn', 0.0066632856880371235) +zone = ('mnz007', 0.0024275238219514197) + +[fips2708940778] +centroid = (0.84358002300961832, -1.6832246078086697) +description = Marsh Grove township, MN +station = ('ktvf', 0.0055436678706633422) +zone = ('mnz008', 0.005184905354351216) + +[fips2708941912] +centroid = (0.84534840806103151, -1.6783381745952761) +description = Middle River city, MN +station = ('ktvf', 0.0064317326743589141) +zone = ('mnz008', 0.0023507837426062599) + +[fips2708941930] +centroid = (0.84344434111356825, -1.6899537596463188) +description = Middle River township, MN +station = ('khco', 0.0075714191694720772) +zone = ('mnz007', 0.00092146920322475523) + +[fips2708944026] +centroid = (0.84637042051112177, -1.6719580711547333) +description = Moose River township, MN +station = ('krox', 0.0063208041357899671) +zone = ('mnz008', 0.003320681837365089) + +[fips2708944692] +centroid = (0.84172595974522468, -1.6719590485391145) +description = Moylan township, MN +station = ('ktvf', 0.0053093318673419045) +zone = ('mnz008', 0.0032430168225126175) + +[fips2708944718] +centroid = (0.84353462699577386, -1.6741471154624621) +description = Mud Lake UT, MN +station = ('ktvf', 0.0055275426471638727) +zone = ('mnz008', 0.00097751846839652179) + +[fips2708945142] +centroid = (0.84636377080667158, -1.6860907351464172) +description = Nelson Park township, MN +station = ('khco', 0.0059730017516442307) +zone = ('mnz007', 0.0029808234067827495) + +[fips2708945520] +centroid = (0.84396818423526176, -1.6812704324583818) +description = Newfolden city, MN +station = ('ktvf', 0.0053259737463031047) +zone = ('mnz008', 0.0038690258813726969) + +[fips2708945538] +centroid = (0.84345010070009974, -1.6808110792525492) +description = New Folden township, MN +station = ('ktvf', 0.0047389817444660658) +zone = ('mnz008', 0.0036055067462476462) + +[fips2708945718] +centroid = (0.84497054427797469, -1.6811226554306153) +description = New Maine township, MN +station = ('ktvf', 0.0062577350169827203) +zone = ('mnz008', 0.0038939564920763541) + +[fips2708945970] +centroid = (0.84176852832568083, -1.6808119868237603) +description = New Solum township, MN +station = ('ktvf', 0.0031719049139559406) +zone = ('mnz008', 0.0042039848080020212) + +[fips2708947878] +centroid = (0.84179655831346778, -1.694282315817605) +description = Oak Park township, MN +station = ('kgfk', 0.0050703140021443596) +zone = ('mnz007', 0.004230052656207078) + +[fips2708948976] +centroid = (0.84115457385470671, -1.695290662339652) +description = Oslo city, MN +station = ('kgfk', 0.0043093628663052391) +zone = ('ndz027', 0.0060777566395585972) + +[fips2708949696] +centroid = (0.84497029993187944, -1.6925635853834109) +description = Parker township, MN +station = ('kgaf', 0.0045681229507624817) +zone = ('mnz007', 0.002621723242661452) + +[fips2708955330] +centroid = (0.84491940613089123, -1.6719627835437136) +description = Rollis township, MN +station = ('ktvf', 0.0074968816766871251) +zone = ('mnz008', 0.0024940696302979517) + +[fips2708960520] +centroid = (0.84648306406104545, -1.6902799442302239) +description = Sinnott township, MN +station = ('khco', 0.0045534959755240152) +zone = ('mnz007', 0.0026255973264846383) + +[fips2708962266] +centroid = (0.84483227929463167, -1.678769375640274) +description = Spruce Valley township, MN +station = ('ktvf', 0.0059107930109822031) +zone = ('mnz008', 0.0023610655453486879) + +[fips2708962698] +centroid = (0.84564748768165321, -1.6908152890716883) +description = Stephen city, MN +station = ('khco', 0.0053047786945724998) +zone = ('mnz007', 0.0020677484266236673) + +[fips2708963112] +centroid = (0.84629867002557224, -1.683332137543885) +description = Strandquist city, MN +station = ('ktvf', 0.0079912171621047204) +zone = ('mnz007', 0.0043259507827821987) + +[fips2708964138] +centroid = (0.84495450470214883, -1.6902631541628197) +description = Tamarac township, MN +station = ('khco', 0.0060490002634452427) +zone = ('mnz007', 0.0013051674984786738) + +[fips2708964552] +centroid = (0.84604098961480789, -1.6737991317161993) +description = Thief Lake township, MN +station = ('krox', 0.0069523816671838096) +zone = ('mnz008', 0.0023241661863139169) + +[fips2708966514] +centroid = (0.84341671255150918, -1.6695493248007633) +description = Valley township, MN +station = ('ktvf', 0.0075856313058223742) +zone = ('mnz008', 0.0039626358463317026) + +[fips2708966676] +centroid = (0.84173501800404249, -1.6921997889541252) +description = Vega township, MN +station = ('kgfk', 0.0055271208889526866) +zone = ('mnz007', 0.003183166919325867) + +[fips2708966694] +centroid = (0.84477409001737014, -1.6695301261789914) +description = Veldt township, MN +station = ('krox', 0.0078349463169720569) +zone = ('mnz008', 0.0040079405046637533) + +[fips2708967090] +centroid = (0.84156643665159236, -1.6826149119410705) +description = Viking city, MN +station = ('ktvf', 0.0037100365994864764) +zone = ('mnz008', 0.0053495687384548024) + +[fips2708967108] +centroid = (0.84174988820926955, -1.6831148964118892) +description = Viking township, MN +station = ('ktvf', 0.0040760296473553439) +zone = ('mnz008', 0.0055713933375431809) + +[fips2708968044] +centroid = (0.84485341523187329, -1.6877949095346494) +description = Wanger township, MN +station = ('khco', 0.0066459203391396457) +zone = ('mnz007', 0.0010963329687386316) + +[fips2708968170] +centroid = (0.84114226928348024, -1.6889368610109368) +description = Warren city, MN +station = ('kckn', 0.0062599496623799589) +zone = ('mnz007', 0.0028852419395662353) + +[fips2708968206] +centroid = (0.84193361901962704, -1.6899511591057332) +description = Warrenton township, MN +station = ('kgfk', 0.006536973538584641) +zone = ('mnz007', 0.0022115719254383235) + +[fips2708969772] +centroid = (0.84497494250768967, -1.6834217252943899) +description = West Valley township, MN +station = ('ktvf', 0.0068165864541815304) +zone = ('mnz008', 0.0053861843021152135) + +[fips2708970096] +centroid = (0.8446725293081967, -1.6747729905322273) +description = Whiteford township, MN +station = ('ktvf', 0.006322287151662177) +zone = ('mnz008', 0.00081611805456425904) + +[fips2708971842] +centroid = (0.84495323061179484, -1.6857084556803528) +description = Wright township, MN +station = ('khco', 0.0072464225275501067) +zone = ('mnz007', 0.002300856739686062) + +[fips2708992] +centroid = (0.76721486946456585, -1.6544596444203334) +description = Butterfield city, MN +station = ('kjyg', 0.0029987493736703479) +zone = ('mnz082', 0.002281439247243403) + +[fips27091] +centroid = (0.76230951688208071, -1.6499853707097982) +description = Martin County, MN +station = ('kfrm', 0.0015937090244053228) +zone = ('mnz091', 0.0001827294683097952) + +[fips2709110378] +centroid = (0.76441651326167326, -1.6546490650040522) +description = Cedar township, MN +station = ('kmjq', 0.0034279857847711944) +zone = ('mnz082', 0.0039560495264483022) + +[fips2709110594] +centroid = (0.76298719332404508, -1.6458390792722979) +description = Center Creek township, MN +station = ('kfrm', 0.0018726367999898858) +zone = ('mnz091', 0.0032558804943540239) + +[fips2709110792] +centroid = (0.75977969703789994, -1.6516324204716128) +description = Ceylon city, MN +station = ('kest', 0.0027517270887109464) +zone = ('mnz091', 0.0026793943903941036) + +[fips2709117180] +centroid = (0.76028069379968499, -1.6541294106725637) +description = Dunnell city, MN +station = ('kest', 0.0028250766611526723) +zone = ('iaz004', 0.0034182445371928618) + +[fips2709117522] +centroid = (0.75997515646083069, -1.6459912370764869) +description = East Chain township, MN +station = ('kfrm', 0.0023104060754401668) +zone = ('mnz091', 0.0038242422295374384) + +[fips2709118854] +centroid = (0.76287470685375403, -1.6546081893929705) +description = Elm Creek township, MN +station = ('kmjq', 0.0025126768217742339) +zone = ('mnz091', 0.0032265288336838162) + +[fips2709120330] +centroid = (0.76174687509111527, -1.6487648096040011) +description = Fairmont city, MN +station = ('kfrm', 0.00064523261881242028) +zone = ('mnz091', 0.0011757519095013439) + +[fips2709120348] +centroid = (0.76143081341687169, -1.6477199857005871) +description = Fairmont township, MN +station = ('kfrm', 0.00042196046759389896) +zone = ('mnz091', 0.0019945911455597396) + +[fips2709122256] +centroid = (0.76298893865329698, -1.652293638458731) +description = Fox Lake township, MN +station = ('kfrm', 0.0033924333386031904) +zone = ('mnz091', 0.0016625191845784553) + +[fips2709122436] +centroid = (0.76307032335631753, -1.6504212841437764) +description = Fraser township, MN +station = ('kfrm', 0.0022126186898519542) +zone = ('mnz091', 0.00082367536209945779) + +[fips2709123030] +centroid = (0.7645525965834512, -1.652356243419) +description = Galena township, MN +station = ('kjyg', 0.0034703757758312729) +zone = ('mnz091', 0.0027616566745265604) + +[fips2709124884] +centroid = (0.76258993893299865, -1.646708480132594) +description = Granada city, MN +station = ('kfrm', 0.0011349981860649088) +zone = ('mnz091', 0.002566671286537921) + +[fips2709131778] +centroid = (0.76138641224070092, -1.6546370047789212) +description = Jay township, MN +station = ('kmjq', 0.0023129612951000005) +zone = ('mnz091', 0.0033073309236426852) + +[fips2709134082] +centroid = (0.76009738186834797, -1.6524249046717734) +description = Lake Belt township, MN +station = ('kest', 0.0027826954202222537) +zone = ('mnz091', 0.0026834379506761293) + +[fips2709134334] +centroid = (0.75999086442409869, -1.6544800298659967) +description = Lake Fremont township, MN +station = ('kest', 0.002580900391955754) +zone = ('iaz004', 0.0032562157480550899) + +[fips2709140058] +centroid = (0.7614412155792134, -1.6522050979057772) +description = Manyaska township, MN +station = ('kfrm', 0.0031537016027008073) +zone = ('mnz091', 0.0016475910364081388) + +[fips2709144962] +centroid = (0.76452810961404583, -1.6459798749830563) +description = Nashville township, MN +station = ('kfrm', 0.0030224285048054667) +zone = ('mnz091', 0.0038171979500186116) + +[fips2709147212] +centroid = (0.7633365733337093, -1.6482253981453796) +description = Northrop city, MN +station = ('kfrm', 0.0015207964478997319) +zone = ('mnz091', 0.0018049593344641739) + +[fips2709148562] +centroid = (0.76527734455534191, -1.6527782814854246) +description = Ormsby city, MN +station = ('kjyg', 0.0029943224919812754) +zone = ('mnz082', 0.0025161033223896241) + +[fips2709151622] +centroid = (0.76160848793472469, -1.6461337257566195) +description = Pleasant Prairie township, MN +station = ('kfrm', 0.0012852564591147927) +zone = ('mnz091', 0.003032719331007737) + +[fips2709154] +centroid = (0.76860713606217423, -1.6169008570491161) +description = Byron city, MN +station = ('ktob', 0.0024068728178147053) +zone = ('mnz087', 0.0030686506854333039) + +[fips2709155258] +centroid = (0.76143837069253273, -1.6504264677716549) +description = Rolling Green township, MN +station = ('kfrm', 0.0018841474237634393) +zone = ('mnz091', 0.00083269284949932896) + +[fips2709156500] +centroid = (0.76286728920443303, -1.6481796530656849) +description = Rutland township, MN +station = ('kfrm', 0.0010533467608464324) +zone = ('mnz091', 0.0016013024699016436) + +[fips2709159620] +centroid = (0.76192011647266822, -1.6533028052855265) +description = Sherburn city, MN +station = ('kfrm', 0.0039232843410419499) +zone = ('mnz091', 0.0022498990969799641) + +[fips2709160412] +centroid = (0.75998339441490015, -1.6481690414638328) +description = Silver Lake township, MN +station = ('kfrm', 0.0018644731243563496) +zone = ('mnz091', 0.0027201194161102821) + +[fips2709164372] +centroid = (0.75997908345164777, -1.6507003971977552) +description = Tenhassen township, MN +station = ('kfrm', 0.002759704008406211) +zone = ('mnz091', 0.0023050236464383896) + +[fips2709165470] +centroid = (0.76377547128070822, -1.6531026334736154) +description = Trimont city, MN +station = ('kfrm', 0.004243270692480065) +zone = ('mnz091', 0.0025724608086610222) + +[fips2709165668] +centroid = (0.76494061818275461, -1.6482306864930132) +description = Truman city, MN +station = ('kfrm', 0.0031146222863202193) +zone = ('mnz091', 0.0030454649050727345) + +[fips2709168746] +centroid = (0.76463837951618685, -1.6504276720488387) +description = Waverly township, MN +station = ('kjyg', 0.0030694508232733736) +zone = ('mnz091', 0.0023841591296181967) + +[fips2709169070] +centroid = (0.76207749281132053, -1.6513624703962069) +description = Welcome city, MN +station = ('kfrm', 0.0025298199684910803) +zone = ('mnz091', 0.00084034897608895325) + +[fips2709169466] +centroid = (0.76439241026470317, -1.6482589084670178) +description = Westford township, MN +station = ('kfrm', 0.0025706863157554383) +zone = ('mnz091', 0.0025646485914238974) + +[fips2709226] +centroid = (0.76155918238335574, -1.5969832294385271) +description = Caledonia city, MN +station = ('klse', 0.0053741213971322888) +zone = ('mnz096', 0.000657576095899058) + +[fips2709280] +centroid = (0.81997716759002814, -1.6740767612403142) +description = Callaway city, MN +station = ('kdtl', 0.0026133134440298393) +zone = ('mnz027', 0.00079549385728131363) + +[fips27093] +centroid = (0.78754764109103448, -1.6498134208718918) +description = Meeker County, MN +station = ('kljf', 0.00051605853775700213) +zone = ('mnz058', 1.1821796578349664e-06) + +[fips2709300154] +centroid = (0.78741621779835924, -1.6529231612666329) +description = Acton township, MN +station = ('kljf', 0.002463750435941844) +zone = ('mnz058', 0.0021975423479358063) + +[fips2709310468] +centroid = (0.78440791593974435, -1.6496786989069303) +description = Cedar Mills city, MN +station = ('khcd', 0.0021507799241298458) +zone = ('mnz058', 0.0031402116609645352) + +[fips2709310486] +centroid = (0.78416601330541791, -1.6506066381103381) +description = Cedar Mills township, MN +station = ('kljf', 0.0030386836432429987) +zone = ('mnz058', 0.0034267124161104787) + +[fips2709312628] +centroid = (0.78592102913476081, -1.6459681638237755) +description = Collinwood township, MN +station = ('kljf', 0.0027329113818145064) +zone = ('mnz058', 0.0031653661721682096) + +[fips2709313420] +centroid = (0.78426909245104059, -1.6527396224424928) +description = Cosmos city, MN +station = ('kljf', 0.0036542464975289585) +zone = ('mnz058', 0.0038751342121347379) + +[fips2709313438] +centroid = (0.78389447498039266, -1.6533030496316219) +description = Cosmos township, MN +station = ('kljf', 0.0041973874572247974) +zone = ('mnz065', 0.0042508086027589062) + +[fips2709314698] +centroid = (0.78591806207503245, -1.6526759004715028) +description = Danielson township, MN +station = ('kljf', 0.0025568946165131839) +zone = ('mnz058', 0.0025953055049142506) + +[fips2709314842] +centroid = (0.78707388891887309, -1.6478402737926348) +description = Darwin city, MN +station = ('kljf', 0.0011451304413396869) +zone = ('mnz058', 0.0014712507553771336) + +[fips2709314860] +centroid = (0.78742354818121763, -1.648402514157872) +description = Darwin township, MN +station = ('kljf', 0.00081688920886947923) +zone = ('mnz058', 0.001003820943440074) + +[fips2709314878] +centroid = (0.78686809714677042, -1.6461448435039547) +description = Dassel city, MN +station = ('kljf', 0.0023529708791649147) +zone = ('mnz058', 0.0026774566249471656) + +[fips2709314896] +centroid = (0.78738200934502023, -1.6460461102281694) +description = Dassel township, MN +station = ('kljf', 0.00242810734876278) +zone = ('mnz058', 0.0026641384287192016) + +[fips2709316] +centroid = (0.82589664373438454, -1.6278940402356052) +description = Calumet city, MN +station = ('kgpz', 0.003422108769178291) +zone = ('mnz026', 0.0026241941318041438) + +[fips2709318134] +centroid = (0.79098091316921748, -1.6501354166655922) +description = Eden Valley city, MN +station = ('kpex', 0.0026247852662734301) +zone = ('mnz058', 0.003441686844712067) + +[fips2709318818] +centroid = (0.7857536869660795, -1.6480826651191516) +description = Ellsworth township, MN +station = ('kljf', 0.0016579349378842477) +zone = ('mnz058', 0.002170345289175413) + +[fips2709321734] +centroid = (0.7888069485062259, -1.6481257398450908) +description = Forest City township, MN +station = ('kljf', 0.0019542835781922669) +zone = ('mnz058', 0.0017338161383628297) + +[fips2709321842] +centroid = (0.79039106169521345, -1.6483836296953656) +description = Forest Prairie township, MN +station = ('kljf', 0.003382559141378944) +zone = ('mnz058', 0.0030177454001340614) + +[fips2709325730] +centroid = (0.78566500678678575, -1.6506115599388289) +description = Greenleaf township, MN +station = ('kljf', 0.0016444255975871355) +zone = ('mnz058', 0.001964084030592202) + +[fips2709326126] +centroid = (0.78798680083742134, -1.6525095705937878) +description = Grove City city, MN +station = ('kljf', 0.0023277965992821127) +zone = ('mnz058', 0.0019515595935095816) + +[fips2709327440] +centroid = (0.78885007559204268, -1.6505319729249379) +description = Harvey township, MN +station = ('kljf', 0.0019103708224949803) +zone = ('mnz058', 0.001398185304602402) + +[fips2709333344] +centroid = (0.78879628454449624, -1.6460265974471322) +description = Kingston city, MN +station = ('kljf', 0.0029607292433312155) +zone = ('mnz058', 0.0029487862781647054) + +[fips2709333362] +centroid = (0.78917327566292705, -1.6462418139971957) +description = Kingston township, MN +station = ('kljf', 0.0030783477255617447) +zone = ('mnz058', 0.0029982678700336304) + +[fips2709337448] +centroid = (0.78752694148610569, -1.6497882008642006) +description = Litchfield city, MN +station = ('kljf', 0.00048938779789360176) +zone = ('mnz058', 2.7013696973805442e-05) + +[fips2709337466] +centroid = (0.78721358507220274, -1.6508945825303323) +description = Litchfield township, MN +station = ('kljf', 0.001017999997908762) +zone = ('mnz058', 0.00083190466658522718) + +[fips2709339698] +centroid = (0.79023106736268323, -1.6505943858989891) +description = Manannah township, MN +station = ('kpex', 0.0027096465127904577) +zone = ('mnz058', 0.0027400941566758977) + +[fips2709363832] +centroid = (0.78863562698685019, -1.6526809444730408) +description = Swede Grove township, MN +station = ('kljf', 0.0027437392352755554) +zone = ('mnz058', 0.0022961604385086975) + +[fips2709366226] +centroid = (0.79034055186666075, -1.6527123603995768) +description = Union Grove township, MN +station = ('kpex', 0.0016844437561199569) +zone = ('mnz058', 0.0034605225476573328) + +[fips2709368620] +centroid = (0.79088764277399093, -1.6477904097359051) +description = Watkins city, MN +station = ('kljf', 0.0039713268438606774) +zone = ('mnz058', 0.0036324486687909947) + +[fips2709370] +centroid = (0.79518500991154384, -1.6271301096220074) +description = Cambridge city, MN +station = ('kcbg', 0.0004873774620337627) +zone = ('mnz052', 0.00082509424912744346) + +[fips2709496] +centroid = (0.80455372789673918, -1.6825930255122505) +description = Campbell city, MN +station = ('kbwp', 0.0035313823367763963) +zone = ('mnz029', 0.0045918368767192234) + +[fips27095] +centroid = (0.80161302264005396, -1.6342040687066806) +description = Mille Lacs County, MN +station = ('kjmr', 0.004451607112156997) +zone = ('mnz044', 0.00016023285512041803) + +[fips2709506814] +centroid = (0.79908402310062177, -1.6328032849023222) +description = Bock city, MN +station = ('kpnm', 0.0041270066222170885) +zone = ('mnz044', 0.0028452004393595578) + +[fips2709506850] +centroid = (0.79757625061311632, -1.6332459353072131) +description = Bogus Brook township, MN +station = ('kpnm', 0.002592595574746922) +zone = ('mnz044', 0.0042405420488076219) + +[fips2709507012] +centroid = (0.79872808065296996, -1.6331358050314122) +description = Borgholm township, MN +station = ('kpnm', 0.0037464464024793711) +zone = ('mnz044', 0.0031227912397462062) + +[fips2709507210] +centroid = (0.80344760802999526, -1.635898713597197) +description = Bradbury township, MN +station = ('kjmr', 0.0061328636725140832) +zone = ('mnz044', 0.0020705020936250891) + +[fips2709514500] +centroid = (0.80211670720888695, -1.6359900117703687) +description = Dailey township, MN +station = ('kpnm', 0.0073074727995765011) +zone = ('mnz044', 0.0013233324320805933) + +[fips2709517810] +centroid = (0.80636651412432314, -1.6317848678304914) +description = East Side township, MN +station = ('kjmr', 0.0061286677014256823) +zone = ('mnz036', 0.0037635446943277764) + +[fips2709521824] +centroid = (0.79808792878992341, -1.6355295066472302) +description = Foreston city, MN +station = ('kpnm', 0.0033642443541594962) +zone = ('mnz044', 0.0038042118628905373) + +[fips2709525586] +centroid = (0.79578350076534532, -1.635478351046854) +description = Greenbush township, MN +station = ('kpnm', 0.0015149920615056261) +zone = ('mnz051', 0.0027676101213228825) + +[fips2709527908] +centroid = (0.80038434575323503, -1.6330371415687972) +description = Hayland township, MN +station = ('kjmr', 0.0036103588276151714) +zone = ('mnz044', 0.0015880361457445457) + +[fips2709531472] +centroid = (0.80534724184115847, -1.6311692378434353) +description = Isle city, MN +station = ('kjmr', 0.0050263292709679308) +zone = ('mnz045', 0.003991371682248712) + +[fips2709531490] +centroid = (0.80479912118956964, -1.6318562343436052) +description = Isle Harbor township, MN +station = ('kjmr', 0.0048009664856827764) +zone = ('mnz044', 0.0034240165534964446) + +[fips2709532516] +centroid = (0.80600650505951421, -1.6357897875985798) +description = Kathio township, MN +station = ('kbrd', 0.0062472943246362003) +zone = ('mnz044', 0.0043866441015591564) + +[fips2709536782] +centroid = (0.80318069482748777, -1.6321377384986595) +description = Lewis township, MN +station = ('kjmr', 0.0037494767213205782) +zone = ('mnz044', 0.0019885186810503505) + +[fips2709542110] +centroid = (0.79862836999280351, -1.6345281588954834) +description = Milaca city, MN +station = ('kpnm', 0.0036849882285041112) +zone = ('mnz044', 0.0031518034566036281) + +[fips2709542128] +centroid = (0.79903679449106269, -1.6354627303500486) +description = Milaca township, MN +station = ('kpnm', 0.0042378986513184214) +zone = ('mnz044', 0.0028806532093960972) + +[fips2709542326] +centroid = (0.79735508249030351, -1.635394295990078) +description = Milo township, MN +station = ('kpnm', 0.0026616311326772718) +zone = ('mnz051', 0.004303658436983368) + +[fips2709544710] +centroid = (0.80168967750080167, -1.6336151248038877) +description = Mudgett township, MN +station = ('kjmr', 0.0040629775653112776) +zone = ('mnz044', 0.00038282062866409466) + +[fips2709548310] +centroid = (0.80408383290222485, -1.6347538648743511) +description = Onamia city, MN +station = ('kjmr', 0.0057506607373643956) +zone = ('mnz044', 0.0023517463758382568) + +[fips2709548328] +centroid = (0.80316140893925325, -1.6343289819212456) +description = Onamia township, MN +station = ('kjmr', 0.0050272297512428329) +zone = ('mnz044', 0.0013973870425969511) + +[fips2709549480] +centroid = (0.80036748587266071, -1.6355624584635076) +description = Page township, MN +station = ('kpnm', 0.0055373067900028362) +zone = ('mnz044', 0.001710752351723505) + +[fips2709550056] +centroid = (0.79765154411704731, -1.6345147547668279) +description = Pease city, MN +station = ('kpnm', 0.0027255285127318453) +zone = ('mnz044', 0.0041254958618442512) + +[fips2709552522] +centroid = (0.79541935527020913, -1.6335715439324652) +description = Princeton city, MN +station = ('kpnm', 0.00042374038716362904) +zone = ('mnz051', 0.0031457947068546386) + +[fips2709552540] +centroid = (0.79613928613336427, -1.6330892396469689) +description = Princeton township, MN +station = ('kpnm', 0.0012025010240872588) +zone = ('mnz052', 0.0034754939812712726) + +[fips2709561384] +centroid = (0.80517616466787789, -1.6334365776214086) +description = South Harbor township, MN +station = ('kjmr', 0.0057789473629661428) +zone = ('mnz044', 0.0034429769858920828) + +[fips2709567558] +centroid = (0.80514268925282473, -1.6323254312064188) +description = Wahkon city, MN +station = ('kjmr', 0.0052694322720997187) +zone = ('mnz044', 0.0036041678289380394) + +[fips2709604] +centroid = (0.78041753476432452, -1.6802185748780825) +description = Canby city, MN +station = ('kcnb', 4.9390711944239951e-05) +zone = ('sdz023', 0.0050043886558821683) + +[fips27097] +centroid = (0.80320896916137019, -1.6452628762730446) +description = Morrison County, MN +station = ('klxl', 0.0015924309838247907) +zone = ('mnz043', 0.00013928467936122314) + +[fips2709700406] +centroid = (0.80196318804788158, -1.6435271463319363) +description = Agram township, MN +station = ('klxl', 0.0022187314474221283) +zone = ('mnz043', 0.0016539189192478366) + +[fips2709704888] +centroid = (0.80320896916137019, -1.6452628762730446) +description = Belle Prairie township, MN +station = ('klxl', 0.0015924309838247907) +zone = ('mnz043', 0.00013928467936122314) + +[fips2709704942] +centroid = (0.80044312844244214, -1.6453301238091238) +description = Bellevue township, MN +station = ('klxl', 0.0018141407810737045) +zone = ('mnz043', 0.0026283592851819018) + +[fips2709707066] +centroid = (0.79969354443529572, -1.6477222895351999) +description = Bowlus city, MN +station = ('klxl', 0.0023897567866672412) +zone = ('mnz043', 0.0037767481779941684) + +[fips2709708416] +centroid = (0.80105821737742999, -1.6422450972765912) +description = Buckman city, MN +station = ('klxl', 0.0032448511679212112) +zone = ('mnz043', 0.0029232946312305655) + +[fips2709708434] +centroid = (0.80043480322191018, -1.6424017056703728) +description = Buckman township, MN +station = ('klxl', 0.0033771636933344132) +zone = ('mnz050', 0.0031037688704021278) + +[fips2709708506] +centroid = (0.80319973636962716, -1.6429732486405233) +description = Buh township, MN +station = ('klxl', 0.0028743337037479733) +zone = ('mnz043', 0.0016167317817886487) + +[fips2709714248] +centroid = (0.80254078731053657, -1.6508664827293751) +description = Culdrum township, MN +station = ('k14y', 0.0036774218116321011) +zone = ('mnz043', 0.0039073694983712513) + +[fips2709714356] +centroid = (0.80538687826847122, -1.6499537278904597) +description = Cushing township, MN +station = ('klxl', 0.0040814384078133705) +zone = ('mnz043', 0.0039761147571929891) + +[fips2709714806] +centroid = (0.80384186045472827, -1.6483215308805796) +description = Darling township, MN +station = ('klxl', 0.0021705828106912098) +zone = ('mnz043', 0.0022385836492358454) + +[fips2709718872] +centroid = (0.79995502966382936, -1.6492347918649781) +description = Elmdale city, MN +station = ('klxl', 0.0026765205654694173) +zone = ('mnz043', 0.0041504674820615119) + +[fips2709718890] +centroid = (0.79954180551012732, -1.6501040880055189) +description = Elmdale township, MN +station = ('klxl', 0.0033904399875880975) +zone = ('mnz049', 0.0045838122336904685) + +[fips2709721266] +centroid = (0.80195971484267015, -1.6499022057709407) +description = Flensburg city, MN +station = ('klxl', 0.0022139329673605489) +zone = ('mnz043', 0.0033897325992760332) + +[fips2709723444] +centroid = (0.80224661206511294, -1.6425761338758169) +description = Genola city, MN +station = ('klxl', 0.0028919130791161185) +zone = ('mnz043', 0.0020605914707763876) + +[fips2709725244] +centroid = (0.80332915253366244, -1.6406023584780289) +description = Granite township, MN +station = ('klxl', 0.0044586538463901029) +zone = ('mnz043', 0.0032680646464376844) + +[fips2709725784] +centroid = (0.8038397835129184, -1.6468642158617492) +description = Green Prairie township, MN +station = ('klxl', 0.001863755947376877) +zone = ('mnz043', 0.001333716328913228) + +[fips2709727098] +centroid = (0.80493473327244958, -1.641269283691801) +description = Harding city, MN +station = ('kbrd', 0.0050318642473907282) +zone = ('mnz043', 0.0033570577210295339) + +[fips2709729150] +centroid = (0.80298617788235305, -1.6386633674922335) +description = Hillman city, MN +station = ('kbrd', 0.007458043647471939) +zone = ('mnz044', 0.003362249230168523) + +[fips2709729168] +centroid = (0.80175010079950559, -1.6395995970095882) +description = Hillman township, MN +station = ('kstc', 0.0068792427465320227) +zone = ('mnz043', 0.0041721772323096186) + +[fips2709730] +centroid = (0.77690172606581476, -1.6214416627107373) +description = Cannon Falls city, MN +station = ('ksyn', 0.001569863125167766) +zone = ('mnz078', 0.0028699166760165007) + +[fips2709735252] +centroid = (0.80051768890808739, -1.6376005492442316) +description = Lakin township, MN +station = ('kstc', 0.0061497922598044178) +zone = ('mnz044', 0.0027056589448129038) + +[fips2709735720] +centroid = (0.80354686490455629, -1.6416875867536267) +description = Lastrup city, MN +station = ('klxl', 0.0038305037456807679) +zone = ('mnz043', 0.0025487567847972356) + +[fips2709736350] +centroid = (0.80360412915731416, -1.6380645624791668) +description = Leigh township, MN +station = ('kbrd', 0.0070822524949932944) +zone = ('mnz044', 0.0032787357777515867) + +[fips2709737556] +centroid = (0.80253909434116222, -1.6468948987499994) +description = Little Falls city, MN +station = ('klxl', 0.0005736140342350632) +zone = ('mnz043', 0.0012329681663018313) + +[fips2709737574] +centroid = (0.80188822615650845, -1.6460220421377845) +description = Little Falls township, MN +station = ('klxl', 0.00049241609176504735) +zone = ('mnz043', 0.0012867871582354087) + +[fips2709744224] +centroid = (0.8004672663459973, -1.6397768177418359) +description = Morrill township, MN +station = ('kstc', 0.0055979319707646679) +zone = ('mnz050', 0.0029230880535281874) + +[fips2709744422] +centroid = (0.80867835979822233, -1.6518570617996369) +description = Motley city, MN +station = ('ksaz', 0.0021191626062001781) +zone = ('mnz033', 0.0041771796080133259) + +[fips2709744440] +centroid = (0.80819596824626361, -1.6509159977202541) +description = Motley township, MN +station = ('ksaz', 0.0029117301633370717) +zone = ('mnz033', 0.0045331094717936367) + +[fips2709744602] +centroid = (0.80205719148139409, -1.6370708941761287) +description = Mount Morris township, MN +station = ('kpnm', 0.0074572147896585098) +zone = ('mnz044', 0.0020488629003888679) + +[fips2709749714] +centroid = (0.80397251580253248, -1.6507585515684318) +description = Parker township, MN +station = ('klxl', 0.0034424490546264229) +zone = ('mnz043', 0.0038989529050563868) + +[fips2709750776] +centroid = (0.80246797217414345, -1.6423804824666686) +description = Pierz city, MN +station = ('klxl', 0.0030545791384248939) +zone = ('mnz043', 0.0021120689649002304) + +[fips2709750794] +centroid = (0.80191166592836272, -1.6418482617645653) +description = Pierz township, MN +station = ('klxl', 0.0033867448759058094) +zone = ('mnz043', 0.0026605290700609874) + +[fips2709750866] +centroid = (0.80249722389240674, -1.6484378919818099) +description = Pike Creek township, MN +station = ('klxl', 0.0013029715607672577) +zone = ('mnz043', 0.0022583124883070373) + +[fips2709751478] +centroid = (0.80483196828609216, -1.6427357093293269) +description = Platte township, MN +station = ('klxl', 0.0039730310964958722) +zone = ('mnz043', 0.0025001275094188066) + +[fips2709752720] +centroid = (0.80458125173904327, -1.640221562541829) +description = Pulaski township, MN +station = ('kbrd', 0.0055770465684851752) +zone = ('mnz043', 0.0038301832094700364) + +[fips2709753080] +centroid = (0.80439612466528421, -1.649345724992235) +description = Randall city, MN +station = ('klxl', 0.0030286590769884663) +zone = ('mnz043', 0.0031084440910960618) + +[fips2709754178] +centroid = (0.80490677309783265, -1.638184815664629) +description = Richardson township, MN +station = ('kbrd', 0.0059210777576014697) +zone = ('mnz044', 0.0042044680854753406) + +[fips2709754520] +centroid = (0.80492841518055736, -1.6455637186762109) +description = Ripley township, MN +station = ('klxl', 0.0030565628785369009) +zone = ('mnz043', 0.0018664559446923805) + +[fips2709755906] +centroid = (0.808069396968909, -1.6483665603752811) +description = Rosing township, MN +station = ('ksaz', 0.0045924550053636319) +zone = ('mnz033', 0.0048139683305371229) + +[fips2709756176] +centroid = (0.79992319485827301, -1.6457034148295404) +description = Royalton city, MN +station = ('klxl', 0.0021735470935612751) +zone = ('mnz043', 0.0031610311423761477) + +[fips2709758918] +centroid = (0.8073081716156516, -1.6492975713581723) +description = Scandia Valley township, MN +station = ('ksaz', 0.0043196126910149081) +zone = ('mnz043', 0.0050643608153272427) + +[fips2709761006] +centroid = (0.80149116375167972, -1.6490377092858428) +description = Sobieski city, MN +station = ('klxl', 0.0016852527647347618) +zone = ('mnz043', 0.0030443846602703599) + +[fips2709763760] +centroid = (0.80082322624694158, -1.6483220195727701) +description = Swan River township, MN +station = ('klxl', 0.00160635337223611) +zone = ('mnz043', 0.0030800951332890488) + +[fips2709763778] +centroid = (0.80140967432890409, -1.6517409974043793) +description = Swanville city, MN +station = ('k14y', 0.0027960428144692077) +zone = ('mnz042', 0.0041321527859873187) + +[fips2709763796] +centroid = (0.80104317263927793, -1.6506509171134613) +description = Swanville township, MN +station = ('k14y', 0.0035392270631709566) +zone = ('mnz043', 0.0042407606411580395) + +[fips2709766028] +centroid = (0.79955095103540774, -1.6472358662726689) +description = Two Rivers township, MN +station = ('klxl', 0.0024544460453955514) +zone = ('mnz043', 0.0037707856341174942) + +[fips2709766334] +centroid = (0.79958557836776734, -1.6504481447609647) +description = Upsala city, MN +station = ('klxl', 0.0035312719730590625) +zone = ('mnz049', 0.0045892270723626762) + +[fips2709802] +centroid = (0.75973524350185162, -1.6044805530398565) +description = Canton city, MN +station = ('kfka', 0.0040682092717039004) +zone = ('mnz095', 0.0032320174390709513) + +[fips27099] +centroid = (0.76211981704568144, -1.6189589318497752) +description = Mower County, MN +station = ('kaum', 0.0021945179916073683) +zone = ('mnz094', 0.0001261880076543438) + +[fips2709900190] +centroid = (0.76035891945675926, -1.6182517244368673) +description = Adams city, MN +station = ('kaum', 0.0032344476047261321) +zone = ('mnz094', 0.0018986025163748583) + +[fips2709900208] +centroid = (0.75996506845775424, -1.6187853937622496) +description = Adams township, MN +station = ('kaum', 0.0031730189388054666) +zone = ('mnz094', 0.0022449556842377241) + +[fips2709902908] +centroid = (0.76221465823723478, -1.6226966242560914) +description = Austin city, MN +station = ('kaum', 0.00051668254538066605) +zone = ('mnz094', 0.0027920603887928003) + +[fips2709902926] +centroid = (0.76136096534020681, -1.6230141694601992) +description = Austin township, MN +station = ('kaum', 0.0010646106181944463) +zone = ('mnz094', 0.0031398617323646219) + +[fips2709905176] +centroid = (0.76149896852416199, -1.6145940204701703) +description = Bennington township, MN +station = ('krst', 0.0047020733715605716) +zone = ('mnz094', 0.0031508948632858434) + +[fips2709908164] +centroid = (0.76340968517607533, -1.6208497866548011) +description = Brownsdale city, MN +station = ('kaum', 0.0015256555175126982) +zone = ('mnz094', 0.0018862862956110329) + +[fips2709911728] +centroid = (0.76149348819031082, -1.6166864608038012) +description = Clayton township, MN +station = ('kaum', 0.0038914225776141226) +zone = ('mnz094', 0.0017126471347724058) + +[fips2709915886] +centroid = (0.76305550551096801, -1.6179680211669556) +description = Dexter city, MN +station = ('kaum', 0.003054509902845357) +zone = ('mnz094', 0.0010534043741681791) + +[fips2709915904] +centroid = (0.76301377468855291, -1.6188153610655063) +description = Dexter township, MN +station = ('kaum', 0.0024625462058208095) +zone = ('mnz094', 0.00080420118593972449) + +[fips2709918728] +centroid = (0.76201539399653462, -1.6180334186540277) +description = Elkton city, MN +station = ('kaum', 0.0028663157545344067) +zone = ('mnz094', 0.00061258185922955031) + +[fips2709922328] +centroid = (0.76294022651387383, -1.6144529629600239) +description = Frankford township, MN +station = ('krst', 0.003259358878087979) +zone = ('mnz094', 0.0032526606165335622) + +[fips2709925010] +centroid = (0.76281098488276367, -1.6156576939295058) +description = Grand Meadow city, MN +station = ('krst', 0.003502567158373882) +zone = ('mnz094', 0.0023759558602837799) + +[fips2709925028] +centroid = (0.76301586908365526, -1.616700283811477) +description = Grand Meadow township, MN +station = ('krst', 0.0035806463362342573) +zone = ('mnz094', 0.0017422865492528106) + +[fips2709935576] +centroid = (0.76310550919403763, -1.6231588223486046) +description = Lansing township, MN +station = ('kaum', 0.0012915958918467817) +zone = ('mnz094', 0.0032508927326412099) + +[fips2709936620] +centroid = (0.75944956800988517, -1.6145629187028998) +description = Le Roy city, MN +station = ('kfka', 0.0050314058944349377) +zone = ('iaz009', 0.0036444432652696364) + +[fips2709936638] +centroid = (0.76004779706429881, -1.6144167473780453) +description = Le Roy township, MN +station = ('kfka', 0.0046243791635830053) +zone = ('iaz009', 0.0040500407234753235) + +[fips2709937808] +centroid = (0.75997562769972882, -1.6166770709324254) +description = Lodi township, MN +station = ('kaum', 0.004409555431926491) +zone = ('mnz094', 0.0027269129629412608) + +[fips2709938654] +centroid = (0.75931983768658451, -1.6221311026718601) +description = Lyle city, MN +station = ('kaum', 0.0028090597116442375) +zone = ('iaz008', 0.0032435833310420045) + +[fips2709938672] +centroid = (0.75998911909484668, -1.6229891588920182) +description = Lyle township, MN +station = ('kaum', 0.0022564716951093359) +zone = ('mnz094', 0.0037379306236445787) + +[fips2709940346] +centroid = (0.7625329364796285, -1.6227041466251673) +description = Mapleview city, MN +station = ('kaum', 0.00065535026088564638) +zone = ('mnz094', 0.0028156848091483765) + +[fips2709940706] +centroid = (0.76147472590085186, -1.6188031088541572) +description = Marshall township, MN +station = ('kaum', 0.0023983659145102891) +zone = ('mnz094', 0.00073539039590554071) + +[fips2709945322] +centroid = (0.75997573241948391, -1.6208708876854576) +description = Nevada township, MN +station = ('kaum', 0.0022996112937869856) +zone = ('mnz094', 0.0026759263867987626) + +[fips2709951640] +centroid = (0.76441012535661101, -1.6166889566246314) +description = Pleasant Valley township, MN +station = ('krst', 0.0024201228679101303) +zone = ('mnz094', 0.0026925126754618989) + +[fips2709952882] +centroid = (0.76403737538826255, -1.6140889570912282) +description = Racine city, MN +station = ('krst', 0.0021760788713569182) +zone = ('mnz094', 0.0038873955163228812) + +[fips2709952900] +centroid = (0.76429111135491745, -1.6146019617182668) +description = Racine township, MN +station = ('krst', 0.0019124765163101459) +zone = ('mnz094', 0.0037006627123175617) + +[fips2709953584] +centroid = (0.76302246642822791, -1.6208645695935655) +description = Red Rock township, MN +station = ('kaum', 0.001211192587802327) +zone = ('mnz094', 0.0016765237523253494) + +[fips2709955600] +centroid = (0.76104884811007256, -1.6201869629647712) +description = Rose Creek city, MN +station = ('kaum', 0.0016942551096549414) +zone = ('mnz094', 0.0015175004069802745) + +[fips2709958576] +centroid = (0.76455181118528781, -1.6196766286914879) +description = Sargeant city, MN +station = ('kaum', 0.0029460907354735715) +zone = ('mnz094', 0.0024194681267747584) + +[fips2709958594] +centroid = (0.76453936698772118, -1.6187578699199459) +description = Sargeant township, MN +station = ('kaum', 0.0033588244650115972) +zone = ('mnz094', 0.0023303408766514417) + +[fips2709964] +centroid = (0.80238859459976275, -1.6631648754903829) +description = Carlos city, MN +station = ('kaxn', 0.002276940658957941) +zone = ('mnz041', 0.0020752835078187782) + +[fips2709964210] +centroid = (0.76022196347035531, -1.6168806461363783) +description = Taopi city, MN +station = ('kaum', 0.0041627658359610553) +zone = ('mnz094', 0.002440563674221072) + +[fips2709966118] +centroid = (0.76460017425886062, -1.6229508140083517) +description = Udolpho township, MN +station = ('kaum', 0.0025681360320870127) +zone = ('mnz094', 0.0038144664779164472) + +[fips2709967918] +centroid = (0.76480736229436486, -1.6209721167820732) +description = Waltham city, MN +station = ('kaum', 0.0027798107682535235) +zone = ('mnz094', 0.0030212491387655504) + +[fips2709967936] +centroid = (0.7645383721500475, -1.6208791430928196) +description = Waltham township, MN +station = ('kaum', 0.0025419481533044716) +zone = ('mnz094', 0.0027569275903196588) + +[fips2709970816] +centroid = (0.76150493755020388, -1.6208836460422897) +description = Windom township, MN +station = ('kaum', 0.0010153982885640833) +zone = ('mnz094', 0.0016403375411905949) + +[fips2710018] +centroid = (0.81430017003865118, -1.6130081968585155) +description = Carlton city, MN +station = ('kcoq', 0.001241665342138158) +zone = ('mnz037', 0.0025542806651940248) + +[fips27101] +centroid = (0.76821703752106096, -1.671354885365244) +description = Murray County, MN +station = ('kdvp', 0.00056910054969504177) +zone = ('mnz080', 0.00011535490040534499) + +[fips2710103052] +centroid = (0.76705045944902805, -1.6693502525462809) +description = Avoca city, MN +station = ('kdvp', 0.0018294346846566816) +zone = ('mnz080', 0.0019437627334866136) + +[fips2710104708] +centroid = (0.76592295929894705, -1.6670078985170569) +description = Belfast township, MN +station = ('kotg', 0.0041830765889927035) +zone = ('mnz080', 0.003964557864177232) + +[fips2710106922] +centroid = (0.76618592805734509, -1.6694562987516319) +description = Bondin township, MN +station = ('kdvp', 0.0022329466224868914) +zone = ('mnz080', 0.0025540678514243162) + +[fips2710109460] +centroid = (0.76913146787605846, -1.6756010969024209) +description = Cameron township, MN +station = ('kdvp', 0.0031307478269133856) +zone = ('mnz097', 0.0032784930889349045) + +[fips2710110882] +centroid = (0.76733615239428687, -1.6757521900557661) +description = Chanarambie township, MN +station = ('kpqn', 0.0038207527782100716) +zone = ('mnz097', 0.0032387082662051429) + +[fips2710110900] +centroid = (0.76673406616222639, -1.6746651466377465) +description = Chandler city, MN +station = ('kdvp', 0.0023347915007980204) +zone = ('mnz080', 0.0028507990781218109) + +[fips2710114320] +centroid = (0.76917476949480035, -1.6697084813752527) +description = Currie city, MN +station = ('kdvp', 0.0020569145294206436) +zone = ('mnz080', 0.0014702240619364289) + +[fips2710115778] +centroid = (0.76751590385394985, -1.667143545506522) +description = Des Moines River township, MN +station = ('kdvp', 0.0032989123563974014) +zone = ('mnz080', 0.0031567113043338463) + +[fips2710116300] +centroid = (0.76889590078691672, -1.6676238252100857) +description = Dovray city, MN +station = ('ktkc', 0.0034735237826410983) +zone = ('mnz080', 0.0027609731852923838) + +[fips2710116318] +centroid = (0.76893314611315422, -1.6670478840102201) +description = Dovray township, MN +station = ('ktkc', 0.0035495996152811542) +zone = ('mnz081', 0.0042744494821390644) + +[fips2710118782] +centroid = (0.77049872390548568, -1.6755596627859788) +description = Ellsborough township, MN +station = ('kdvp', 0.0039213028820117247) +zone = ('mnz097', 0.0038654609072937391) + +[fips2710120888] +centroid = (0.76597259646287386, -1.6734612708795984) +description = Fenton township, MN +station = ('kdvp', 0.0021443782624903161) +zone = ('mnz080', 0.002792528352828207) + +[fips2710122958] +centroid = (0.76563335681616362, -1.6686344755667455) +description = Fulda city, MN +station = ('kdvp', 0.0030430000340803997) +zone = ('mnz080', 0.0033454057401532656) + +[fips2710126450] +centroid = (0.76797623444416341, -1.672994796730418) +description = Hadley city, MN +station = ('kdvp', 0.00095436983680554906) +zone = ('mnz080', 0.0012120498965293128) + +[fips2710129690] +centroid = (0.77060115727928524, -1.667180145060936) +description = Holly township, MN +station = ('ktkc', 0.0019937207620147235) +zone = ('mnz080', 0.0037774928736181495) + +[fips2710131094] +centroid = (0.76645891500564955, -1.671776731445451) +description = Iona city, MN +station = ('kdvp', 0.0012539108774553649) +zone = ('mnz080', 0.0018929888250151863) + +[fips2710131112] +centroid = (0.76594163432194351, -1.6712284013543519) +description = Iona township, MN +station = ('kdvp', 0.0018055689247818969) +zone = ('mnz080', 0.002391550182769936) + +[fips2710134892] +centroid = (0.77049170768189279, -1.6714708275874541) +description = Lake Sarah township, MN +station = ('ktkc', 0.0026996696230445747) +zone = ('mnz080', 0.0021620367148293914) + +[fips2710135198] +centroid = (0.76786385269362745, -1.6747234929946406) +description = Lake Wilson city, MN +station = ('kdvp', 0.0021661833778116707) +zone = ('mnz080', 0.0024474099443825051) + +[fips2710136260] +centroid = (0.7674849417130194, -1.6736299918583888) +description = Leeds township, MN +station = ('kdvp', 0.0013930546094709951) +zone = ('mnz080', 0.0018241610536076853) + +[fips2710137088] +centroid = (0.76769589965970797, -1.669457834641374) +description = Lime Lake township, MN +station = ('kdvp', 0.001627718424979395) +zone = ('mnz080', 0.0015233725275796831) + +[fips2710138402] +centroid = (0.76896875082989491, -1.6733113296435596) +description = Lowville township, MN +station = ('kdvp', 0.0016995253698870096) +zone = ('mnz080', 0.0015259297015404482) + +[fips2710140958] +centroid = (0.76901144158339874, -1.6712965564616424) +description = Mason township, MN +station = ('kdvp', 0.0013344789481025323) +zone = ('mnz080', 0.00068369193182856477) + +[fips2710144] +centroid = (0.78109768957382686, -1.6343027670758807) +description = Carver city, MN +station = ('kfcm', 0.0024964016377387868) +zone = ('mnz069', 0.0022366111852598403) + +[fips2710144458] +centroid = (0.76605125845226119, -1.6756022139131423) +description = Moulton township, MN +station = ('kdvp', 0.0032516797946805474) +zone = ('mnz097', 0.0039273740071346245) + +[fips2710144854] +centroid = (0.76904835529707849, -1.6690627968184772) +description = Murray township, MN +station = ('kdvp', 0.0023314992234469627) +zone = ('mnz080', 0.001815800722813857) + +[fips2710159764] +centroid = (0.77049048595141634, -1.6691998749779291) +description = Shetek township, MN +station = ('ktkc', 0.0018393750771054261) +zone = ('mnz080', 0.0026692086422868194) + +[fips2710160628] +centroid = (0.77048760615815048, -1.6733080833311509) +description = Skandia township, MN +station = ('kdvp', 0.0030008686899223292) +zone = ('mnz080', 0.0025621585238033329) + +[fips2710160808] +centroid = (0.76777531214067374, -1.6712872364034368) +description = Slayton city, MN +station = ('kdvp', 0.0003176978171444994) +zone = ('mnz080', 0.00055954487413683955) + +[fips2710160826] +centroid = (0.7674432108906043, -1.6715521599305969) +description = Slayton township, MN +station = ('kdvp', 0.00029482068409846201) +zone = ('mnz080', 0.00089566896824143361) + +[fips2710252] +centroid = (0.8269173995474135, -1.6510625181109591) +description = Cass Lake city, MN +station = ('kbji', 0.0044781538404585633) +zone = ('mnz017', 0.0050153638549549524) + +[fips27103] +centroid = (0.77420746129951112, -1.644897509047432) +description = Nicollet County, MN +station = ('kulm', 0.0032587885113468584) +zone = ('mnz075', 0.00015541875280842331) + +[fips2710304744] +centroid = (0.77187954114320101, -1.6417831958900511) +description = Belgrade township, MN +station = ('kmkt', 0.0018896819538275268) +zone = ('mnz075', 0.003129252066295636) + +[fips2710305410] +centroid = (0.77515587321504476, -1.6460402110152976) +description = Bernadotte township, MN +station = ('kulm', 0.0028962492482884211) +zone = ('mnz075', 0.0013592892408785531) + +[fips2710307732] +centroid = (0.77390314569113328, -1.6463463068595126) +description = Brighton township, MN +station = ('kulm', 0.0021818197567687698) +zone = ('mnz075', 0.0010257636260004445) + +[fips2710313582] +centroid = (0.77265706787167199, -1.6466571150927076) +description = Courtland city, MN +station = ('kulm', 0.0020834606648615765) +zone = ('mnz075', 0.0018660112504719263) + +[fips2710313600] +centroid = (0.77299433529632733, -1.6461251736432847) +description = Courtland township, MN +station = ('kulm', 0.0023470184730600674) +zone = ('mnz075', 0.0013624216575044931) + +[fips2710324902] +centroid = (0.7737544087322783, -1.6440455265730711) +description = Granby township, MN +station = ('kulm', 0.0037953964504134812) +zone = ('mnz075', 0.00069806553766129796) + +[fips2710333920] +centroid = (0.7757493200673079, -1.6474736499299607) +description = Lafayette city, MN +station = ('kulm', 0.0026380286480876636) +zone = ('mnz075', 0.0024870381848992287) + +[fips2710333938] +centroid = (0.7745937375695624, -1.6481936855128709) +description = Lafayette township, MN +station = ('kulm', 0.0013879123071350999) +zone = ('mnz075', 0.0023966937880943668) + +[fips2710334856] +centroid = (0.77522577365158707, -1.6413409818174731) +description = Lake Prairie township, MN +station = ('kmkt', 0.003832959748219537) +zone = ('mnz075', 0.0028184896207429241) + +[fips2710336746] +centroid = (0.77588100515937086, -1.6393675205789504) +description = Le Sueur city, MN +station = ('kmkt', 0.0041573659590879103) +zone = ('mnz076', 0.0028739009013751767) + +[fips2710339878] +centroid = (0.7713474077075605, -1.6408677532440874) +description = Mankato city, MN +station = ('kmkt', 0.0012849003482411981) +zone = ('mnz083', 0.0028743670616199488) + +[fips2710345988] +centroid = (0.77520961190271365, -1.6441045187017884) +description = New Sweden township, MN +station = ('kulm', 0.0041240405366678654) +zone = ('mnz075', 0.0012970860832337177) + +[fips2710346150] +centroid = (0.77273314677376648, -1.6438971735866517) +description = Nicollet city, MN +station = ('kulm', 0.0039623735407556251) +zone = ('mnz075', 0.0015122370807157501) + +[fips2710346168] +centroid = (0.77215607110988704, -1.6438229272802718) +description = Nicollet township, MN +station = ('kulm', 0.0041606747298072186) +zone = ('mnz075', 0.0020555523528581897) + +[fips2710347068] +centroid = (0.77109820959696074, -1.6412517954926962) +description = North Mankato city, MN +station = ('kmkt', 0.0016291965546135917) +zone = ('mnz083', 0.0025775760051707144) + +[fips2710348922] +centroid = (0.77319642697041568, -1.6416583350353633) +description = Oshawa township, MN +station = ('kmkt', 0.0023184446849666227) +zone = ('mnz075', 0.0024907725384110827) + +[fips2710354430] +centroid = (0.77542580583715826, -1.6522978796088132) +description = Ridgely township, MN +station = ('kulm', 0.0028810275890328359) +zone = ('mnz074', 0.0033350524222031898) + +[fips2710358036] +centroid = (0.77367834728347651, -1.6399918946655589) +description = St. Peter city, MN +station = ('kmkt', 0.0020418297152171153) +zone = ('mnz076', 0.0030223111719393883) + +[fips2710365416] +centroid = (0.77400369410934067, -1.6416817573539251) +description = Traverse township, MN +station = ('kmkt', 0.0029082809499531063) +zone = ('mnz075', 0.0023215243037027077) + +[fips2710369556] +centroid = (0.77505040296834671, -1.6503982632509426) +description = West Newton township, MN +station = ('kulm', 0.0017517896411529069) +zone = ('mnz074', 0.003554533633598163) + +[fips2710468] +centroid = (0.78440791593974435, -1.6496786989069303) +description = Cedar Mills city, MN +station = ('khcd', 0.0021507799241298458) +zone = ('mnz058', 0.0031402116609645352) + +[fips27105] +centroid = (0.76231943035223204, -1.6713819554219425) +description = Nobles County, MN +station = ('kotg', 0.0023209534725395732) +zone = ('mnz089', 0.00013709007246569136) + +[fips2710500262] +centroid = (0.76154935617966701, -1.6743552634290551) +description = Adrian city, MN +station = ('kotg', 0.0044319099668156834) +zone = ('mnz089', 0.0023821776438656228) + +[fips2710505644] +centroid = (0.75931618994844774, -1.6700908132011947) +description = Bigelow city, MN +station = ('kotg', 0.0028532025158809404) +zone = ('iaz002', 0.0023680865861757639) + +[fips2710505662] +centroid = (0.76017948215636177, -1.6688749644843777) +description = Bigelow township, MN +station = ('kotg', 0.0017186102337249996) +zone = ('mnz089', 0.0026806339466804345) + +[fips2710506508] +centroid = (0.76441581512997248, -1.671025855894658) +description = Bloom township, MN +station = ('kotg', 0.0032705243495703288) +zone = ('mnz089', 0.0021614200234685724) + +[fips2710507660] +centroid = (0.76266027570185402, -1.6661702975557324) +description = Brewster city, MN +station = ('kotg', 0.0017112678019355137) +zone = ('mnz090', 0.0039386546390689989) + +[fips2710515850] +centroid = (0.76146945500651075, -1.671253481735703) +description = Dewald township, MN +station = ('kotg', 0.0022087038136666907) +zone = ('mnz089', 0.00078970099893522767) + +[fips2710517144] +centroid = (0.76522418182632612, -1.6662095500106096) +description = Dundee city, MN +station = ('kotg', 0.0036929664710382048) +zone = ('mnz090', 0.0049335978535143057) + +[fips2710518602] +centroid = (0.76297841431790747, -1.6692160890866801) +description = Elk township, MN +station = ('kotg', 0.0013412429917322921) +zone = ('mnz089', 0.0016127314990114362) + +[fips2710518836] +centroid = (0.75957407979872249, -1.6758340459976848) +description = Ellsworth city, MN +station = ('klyv', 0.003052429801721367) +zone = ('iaz001', 0.003447366892581212) + +[fips2710524848] +centroid = (0.76460273989286098, -1.6670076367176689) +description = Graham Lakes township, MN +station = ('kotg', 0.0029071752032851493) +zone = ('mnz089', 0.0038369240811154661) + +[fips2710525100] +centroid = (0.76011665030329001, -1.6752562722021045) +description = Grand Prairie township, MN +station = ('klyv', 0.0031566055829950015) +zone = ('mnz089', 0.0036278590470207473) + +[fips2710528736] +centroid = (0.76314825230741912, -1.6671924496321626) +description = Hersey township, MN +station = ('kotg', 0.0015164087333578561) +zone = ('mnz089', 0.003039219578700003) + +[fips2710530878] +centroid = (0.75990867686962238, -1.6671371401481669) +description = Indian Lake township, MN +station = ('kotg', 0.0020875529954789136) +zone = ('iaz002', 0.0031038266672347961) + +[fips2710533236] +centroid = (0.76485223470943364, -1.6663693174503371) +description = Kinbrae city, MN +station = ('kotg', 0.003306176994796853) +zone = ('mnz090', 0.0048166552403221263) + +[fips2710535666] +centroid = (0.76298996839755573, -1.6733727128733522) +description = Larkin township, MN +station = ('kotg', 0.0038843284404760092) +zone = ('mnz089', 0.0017249108961000519) + +[fips2710536566] +centroid = (0.76454126939660583, -1.6753555116233727) +description = Leota township, MN +station = ('kdvp', 0.0041131104524276046) +zone = ('mnz098', 0.004014850165993602) + +[fips2710537412] +centroid = (0.76356624120997918, -1.6746136768781053) +description = Lismore city, MN +station = ('klyv', 0.0040459807387526791) +zone = ('mnz089', 0.0027848522201357581) + +[fips2710537430] +centroid = (0.76296520217546993, -1.6756326699085897) +description = Lismore township, MN +station = ('klyv', 0.003101814792168105) +zone = ('mnz098', 0.0031882217859619689) + +[fips2710537682] +centroid = (0.76004235163703249, -1.6734029070694116) +description = Little Rock township, MN +station = ('kotg', 0.0041444486762677027) +zone = ('mnz089', 0.0027254086692360792) + +[fips2710538204] +centroid = (0.76147266641233446, -1.6668563166715211) +description = Lorain township, MN +station = ('kotg', 0.0010679553175598567) +zone = ('mnz089', 0.0032481382602147458) + +[fips2710548274] +centroid = (0.76146865215505488, -1.6732382352544861) +description = Olney township, MN +station = ('kotg', 0.0036330403189318316) +zone = ('mnz089', 0.0016652895029448619) + +[fips2710553152] +centroid = (0.76011427665550735, -1.6713875230222563) +description = Ransom township, MN +station = ('kotg', 0.0028543995534057579) +zone = ('mnz089', 0.0021480696617129959) + +[fips2710556086] +centroid = (0.75986745219269014, -1.6662994519203798) +description = Round Lake city, MN +station = ('kotg', 0.0024205782605549488) +zone = ('iaz002', 0.0033725256429709147) + +[fips2710556338] +centroid = (0.76130720919924533, -1.6720071498132993) +description = Rushmore city, MN +station = ('kotg', 0.0027745749453065506) +zone = ('mnz089', 0.0011117984224173142) + +[fips2710559260] +centroid = (0.76444827825405959, -1.6690778415566296) +description = Seward township, MN +station = ('kotg', 0.0026806860896934734) +zone = ('mnz089', 0.0026781804789538627) + +[fips2710563400] +centroid = (0.76307206868556954, -1.671061565331154) +description = Summit Lake township, MN +station = ('kotg', 0.0023830871041819373) +zone = ('mnz089', 0.00082072884901844393) + +[fips2710569718] +centroid = (0.76138690093289152, -1.6754869523693405) +description = Westside township, MN +station = ('klyv', 0.0027450536957528203) +zone = ('mnz098', 0.0033369231201546504) + +[fips2710570582] +centroid = (0.76384596512919634, -1.6725139061616159) +description = Wilmont city, MN +station = ('kotg', 0.0036833117488239225) +zone = ('mnz089', 0.0018452564762829631) + +[fips2710570600] +centroid = (0.76466654913031396, -1.6734685838091643) +description = Wilmont township, MN +station = ('kdvp', 0.0032959443832083777) +zone = ('mnz089', 0.0029078831332692398) + +[fips2710571734] +centroid = (0.76147177629441598, -1.6685148332465214) +description = Worthington city, MN +station = ('kotg', 0.00041384710083324411) +zone = ('mnz089', 0.0021042433513520972) + +[fips2710571752] +centroid = (0.76156401694538389, -1.6692362127329556) +description = Worthington township, MN +station = ('kotg', 0.00076797559507905174) +zone = ('mnz089', 0.0015893885061256034) + +[fips2710576] +centroid = (0.79227041478046856, -1.6199153897331606) +description = Center City city, MN +station = ('koeo', 0.0021291001360761617) +zone = ('mnz053', 0.0022196475095815718) + +[fips2710648] +centroid = (0.78825203852384673, -1.6241038483253891) +description = Centerville city, MN +station = ('kane', 0.0020122546377827444) +zone = ('mnz062', 0.002615160774879598) + +[fips27107] +centroid = (0.82605508472388056, -1.6836110411583538) +description = Norman County, MN +station = ('kfar', 0.0080842966879561967) +zone = ('mnz002', 0.00011531053873766862) + +[fips2710700172] +centroid = (0.82552457444444438, -1.6845330811488899) +description = Ada city, MN +station = ('kfar', 0.0073106792239581676) +zone = ('mnz002', 0.00087141385139435674) + +[fips2710701774] +centroid = (0.82673471593460712, -1.6865874558515348) +description = Anthony township, MN +station = ('kfar', 0.0078958665359626749) +zone = ('mnz002', 0.0022422981324105671) + +[fips2710704222] +centroid = (0.82834577700724565, -1.6777819032560806) +description = Bear Park township, MN +station = ('kfse', 0.0047920257318858775) +zone = ('mnz015', 0.0042478250245535816) + +[fips2710707030] +centroid = (0.82345112329307513, -1.6843431195131027) +description = Borup city, MN +station = ('kfar', 0.0056782533504098256) +zone = ('mnz002', 0.0026217176926843348) + +[fips2710721320] +centroid = (0.82370229362572966, -1.6779829128260326) +description = Flom township, MN +station = ('kdtl', 0.0070140869583291653) +zone = ('mnz002', 0.0043711066765534431) + +[fips2710722022] +centroid = (0.8251668692142482, -1.677876412835076) +description = Fossum township, MN +station = ('kfse', 0.0069517172115231441) +zone = ('mnz002', 0.0038770407621095543) + +[fips2710723246] +centroid = (0.82680714709856495, -1.6801501056115267) +description = Gary city, MN +station = ('kfse', 0.0069623237851837196) +zone = ('mnz002', 0.0023816790969688082) + +[fips2710724380] +centroid = (0.82825481044663174, -1.6867618316971016) +description = Good Hope township, MN +station = ('kckn', 0.0068929159607101793) +zone = ('mnz002', 0.0031731591275135584) + +[fips2710725766] +centroid = (0.82686771002360915, -1.6824532420924583) +description = Green Meadow township, MN +station = ('kfse', 0.0082766337483990617) +zone = ('mnz002', 0.0011007602154385527) + +[fips2710726630] +centroid = (0.82643149988365816, -1.689908625431862) +description = Halstad city, MN +station = ('kfar', 0.0072909174914107776) +zone = ('mnz002', 0.004391543179228634) + +[fips2710726648] +centroid = (0.82679512178001868, -1.6891725851797113) +description = Halstad township, MN +station = ('kfar', 0.0076646865295537233) +zone = ('mnz002', 0.0039512263037865553) + +[fips2710728178] +centroid = (0.8252090887288539, -1.6863814546399218) +description = Hegne township, MN +station = ('kfar', 0.0064913193493077023) +zone = ('mnz002', 0.0021349049439115526) + +[fips2710728484] +centroid = (0.82491327287393335, -1.6896604047056436) +description = Hendrum city, MN +station = ('kfar', 0.0057725559175655378) +zone = ('mnz002', 0.0043448047463559968) + +[fips2710728502] +centroid = (0.82533738788216793, -1.6888086316707929) +description = Hendrum township, MN +station = ('kfar', 0.0062306127975016818) +zone = ('mnz002', 0.0036879499375505262) + +[fips2710729996] +centroid = (0.82372007853080742, -1.6796343259109772) +description = Home Lake township, MN +station = ('kdtl', 0.0075896904940872803) +zone = ('mnz002', 0.0034569495917522739) + +[fips2710734532] +centroid = (0.82527610937213047, -1.6821692246632811) +description = Lake Ida township, MN +station = ('kfar', 0.0080246582714921313) +zone = ('mnz002', 0.0011374138463374499) + +[fips2710736188] +centroid = (0.82382495536555977, -1.6888887422834595) +description = Lee township, MN +station = ('kfar', 0.004722032057231095) +zone = ('mnz002', 0.0042803962281843834) + +[fips2710737790] +centroid = (0.82812958307280105, -1.684707142835191) +description = Lockhart township, MN +station = ('kckn', 0.0070899787330604216) +zone = ('mnz002', 0.0022880785659836768) + +[fips2710738978] +centroid = (0.82515793312847796, -1.6841100307914989) +description = McDonaldsville township, MN +station = ('kfar', 0.0071442409032758114) +zone = ('mnz002', 0.00095363553189857714) + +[fips2710740868] +centroid = (0.82359329781394264, -1.6862643255938206) +description = Mary township, MN +station = ('kfar', 0.0050520379580532284) +zone = ('mnz002', 0.003071291544835006) + +[fips2710750506] +centroid = (0.82337982659313114, -1.6895087879535229) +description = Perley city, MN +station = ('kfar', 0.004242354011093373) +zone = ('mnz002', 0.0048729008718041995) + +[fips2710751658] +centroid = (0.82668989587941599, -1.6846682918060418) +description = Pleasant View township, MN +station = ('kfar', 0.0083077605710861271) +zone = ('mnz002', 0.0010690082918847173) + +[fips2710755114] +centroid = (0.82402015298910281, -1.6821883360185907) +description = Rockwell township, MN +station = ('kfar', 0.0071037972734840872) +zone = ('mnz002', 0.0021624420127507133) + +[fips2710759566] +centroid = (0.8283033131465446, -1.6898219174746232) +description = Shelly city, MN +station = ('kckn', 0.007241305038628288) +zone = ('mnz002', 0.00488309155128359) + +[fips2710759584] +centroid = (0.828187353471042, -1.6891328440326432) +description = Shelly township, MN +station = ('kckn', 0.007213595727970745) +zone = ('mnz002', 0.0044187495814837115) + +[fips2710761780] +centroid = (0.82814478489058596, -1.6822718325700059) +description = Spring Creek township, MN +station = ('kckn', 0.0074980360502801069) +zone = ('mnz002', 0.0022874164185934633) + +[fips2710763094] +centroid = (0.8266194892973906, -1.679935081047681) +description = Strand township, MN +station = ('kfse', 0.006949256522325432) +zone = ('mnz002', 0.0024660700218775929) + +[fips2710763508] +centroid = (0.82814557028874936, -1.6798741516034938) +description = Sundal township, MN +station = ('kfse', 0.0061481969124232965) +zone = ('mnz002', 0.0032373412874218384) + +[fips2710765938] +centroid = (0.82482162563491113, -1.6800353502132077) +description = Twin Valley city, MN +station = ('kfse', 0.0081765180660603089) +zone = ('mnz002', 0.0026055001636947775) + +[fips2710768728] +centroid = (0.82674408835269042, -1.6777898794107622) +description = Waukon township, MN +station = ('kfse', 0.005743565706399909) +zone = ('mnz002', 0.0039119356277452074) + +[fips2710770276] +centroid = (0.82543819809976327, -1.6798280225513635) +description = Wild Rice township, MN +station = ('kfse', 0.0076444604771922983) +zone = ('mnz002', 0.0025259634272807273) + +[fips2710770762] +centroid = (0.82370451019387969, -1.6840667640793421) +description = Winchester township, MN +station = ('kfar', 0.0059928539243093324) +zone = ('mnz002', 0.0023354410070523051) + +[fips2710792] +centroid = (0.75977969703789994, -1.6516324204716128) +description = Ceylon city, MN +station = ('kest', 0.0027517270887109464) +zone = ('mnz091', 0.0026793943903941036) + +[fips2710846] +centroid = (0.78841023516724762, -1.6299149918830744) +description = Champlin city, MN +station = ('kmic', 0.0019045937618465904) +zone = ('mnz061', 0.0024662162666464075) + +[fips27109] +centroid = (0.76800473567084848, -1.6128015498750796) +description = Olmsted County, MN +station = ('k9mn', 0.0010846035337424343) +zone = ('mnz087', 6.186249329736373e-05) + +[fips2710900] +centroid = (0.76673406616222639, -1.6746651466377465) +description = Chandler city, MN +station = ('kdvp', 0.0023347915007980204) +zone = ('mnz080', 0.0028507990781218109) + +[fips2710909154] +centroid = (0.76860713606217423, -1.6169008570491161) +description = Byron city, MN +station = ('ktob', 0.0024068728178147053) +zone = ('mnz087', 0.0030686506854333039) + +[fips2710910180] +centroid = (0.76953217801902385, -1.6137929667033823) +description = Cascade township, MN +station = ('k9mn', 0.0012819942877734893) +zone = ('mnz087', 0.0017098629311456119) + +[fips2710911008] +centroid = (0.76537996991535917, -1.6089404626906476) +description = Chatfield city, MN +station = ('kfka', 0.0030791910121274147) +zone = ('mnz095', 0.0033482471839067214) + +[fips2710916264] +centroid = (0.7674174672841374, -1.6080422464444013) +description = Dover city, MN +station = ('k9mn', 0.0045546073880087905) +zone = ('mnz087', 0.0034139239424636199) + +[fips2710916282] +centroid = (0.76754936181571054, -1.6081313804093005) +description = Dover township, MN +station = ('k9mn', 0.0044675597947340549) +zone = ('mnz087', 0.003329867071108915) + +[fips2710918] +centroid = (0.78285495687790474, -1.6329716568152621) +description = Chanhassen city, MN +station = ('kfcm', 0.0012031070267545382) +zone = ('mnz060', 0.0028269956428811018) + +[fips2710918962] +centroid = (0.76605031597446516, -1.6081068934398952) +description = Elmira township, MN +station = ('kfka', 0.0037858203201038363) +zone = ('mnz095', 0.0038423964021153346) + +[fips2710920114] +centroid = (0.76774099896757952, -1.609754187547805) +description = Eyota city, MN +station = ('k9mn', 0.0032842837089861981) +zone = ('mnz087', 0.0021470677719101355) + +[fips2710920132] +centroid = (0.76754360222917906, -1.6102416754611795) +description = Eyota township, MN +station = ('k9mn', 0.0029829458177688872) +zone = ('mnz087', 0.001839425731817917) + +[fips2710920636] +centroid = (0.77058522242321448, -1.6123209909188354) +description = Farmington township, MN +station = ('k9mn', 0.0026795360851592583) +zone = ('mnz087', 0.0025930659188836231) + +[fips2710927692] +centroid = (0.76910766158506116, -1.6122251199830233) +description = Haverhill township, MN +station = ('k9mn', 0.0016706866341030956) +zone = ('mnz087', 0.0011551051963129058) + +[fips2710928880] +centroid = (0.76586829558677461, -1.6146246335452503) +description = High Forest township, MN +station = ('krst', 0.00035984422192357279) +zone = ('mnz087', 0.0025429189816982885) + +[fips2710932282] +centroid = (0.76911954727726728, -1.6164589920423886) +description = Kalmar township, MN +station = ('k9mn', 0.0017864573194279528) +zone = ('mnz087', 0.0029117636721565365) + +[fips2710940616] +centroid = (0.76747715754455559, -1.6121650108435845) +description = Marion township, MN +station = ('k9mn', 0.0017110492597187076) +zone = ('mnz087', 0.00066213979201050531) + +[fips2710945610] +centroid = (0.77067421676177372, -1.6164459544328764) +description = New Haven township, MN +station = ('k9mn', 0.0028534524804881673) +zone = ('mnz087', 0.0037803813134691306) + +[fips2710948526] +centroid = (0.7660392505870075, -1.6102148846571613) +description = Orion township, MN +station = ('k9mn', 0.0036800110463957132) +zone = ('mnz087', 0.0026676928995230443) + +[fips2710948598] +centroid = (0.77075734679404628, -1.6151411811906704) +description = Oronoco city, MN +station = ('k9mn', 0.002544304771016451) +zone = ('mnz087', 0.0032552043640090679) + +[fips2710948616] +centroid = (0.77054576052882695, -1.6144814990932943) +description = Oronoco township, MN +station = ('k9mn', 0.0022576924064721445) +zone = ('mnz087', 0.0028374489326387061) + +[fips2710951136] +centroid = (0.77119828677627011, -1.61575773620223) +description = Pine Island city, MN +station = ('k9mn', 0.0030983309949937808) +zone = ('mnz087', 0.0038669262597657932) + +[fips2710951550] +centroid = (0.76604953057630176, -1.6123073773506698) +description = Pleasant Grove township, MN +station = ('krst', 0.0015365899353935305) +zone = ('mnz087', 0.0019801112121414712) + +[fips2710952792] +centroid = (0.76905758808882152, -1.6081297048932186) +description = Quincy township, MN +station = ('k9mn', 0.0044688035019917168) +zone = ('mnz079', 0.0040135057623452161) + +[fips2710954880] +centroid = (0.76821438462059799, -1.6140318150115178) +description = Rochester city, MN +station = ('k9mn', 0.00017914775914817149) +zone = ('mnz087', 0.00096892206345563429) + +[fips2710954898] +centroid = (0.76744249530561093, -1.6145534939249391) +description = Rochester township, MN +station = ('k9mn', 0.00087809771365946919) +zone = ('mnz087', 0.0014380491903100417) + +[fips2710954988] +centroid = (0.76605551705563613, -1.6164950330914425) +description = Rock Dell township, MN +station = ('krst', 0.00149533539404346) +zone = ('mnz087', 0.0033489085606349077) + +[fips2710958234] +centroid = (0.76752850513114923, -1.6164078713485979) +description = Salem township, MN +station = ('k9mn', 0.0017275094789930038) +zone = ('mnz087', 0.0026992938256513916) + +[fips2710962806] +centroid = (0.76552662993240428, -1.6142693194161293) +description = Stewartville city, MN +station = ('krst', 0.00068275165679977862) +zone = ('mnz087', 0.0027216971140776999) + +[fips2710967270] +centroid = (0.76906558169679551, -1.610222860811843) +description = Viola township, MN +station = ('k9mn', 0.0029993943698076206) +zone = ('mnz087', 0.0020810692090809505) + +[fips2710972] +centroid = (0.78214680698720052, -1.6337929913079583) +description = Chaska city, MN +station = ('kfcm', 0.0017528165476305428) +zone = ('mnz069', 0.0030266374293761601) + +[fips2711008] +centroid = (0.7652288942153066, -1.6088886613184483) +description = Chatfield city, MN +station = ('kfka', 0.0029274685456239006) +zone = ('mnz095', 0.0031939041796371407) + +[fips27111] +centroid = (0.80993269302504556, -1.6705345282569293) +description = Otter Tail County, MN +station = ('kffm', 0.0056643416963108404) +zone = ('mnz030', 0.0036456176003226591) + +[fips2711100100] +centroid = (0.80578217789075546, -1.6767830164185791) +description = Aastad township, MN +station = ('kffm', 0.0022206669334219674) +zone = ('mnz040', 0.0041478673639598306) + +[fips2711101468] +centroid = (0.80993269302504556, -1.6705345282569293) +description = Amor township, MN +station = ('kffm', 0.0056643416963108404) +zone = ('mnz030', 0.0036456176003226591) + +[fips2711102836] +centroid = (0.80880491362228435, -1.675030740756162) +description = Aurdal township, MN +station = ('kffm', 0.0023688892642653209) +zone = ('mnz030', 0.0012587166300350625) + +[fips2711103970] +centroid = (0.80784526178636784, -1.6706582022877254) +description = Battle Lake city, MN +station = ('ky63', 0.0061598393582260706) +zone = ('mnz030', 0.0041338216399843851) + +[fips2711106652] +centroid = (0.81296211336760971, -1.6619800412743742) +description = Blowers township, MN +station = ('kadc', 0.0022577519807101846) +zone = ('mnz032', 0.003061535691376906) + +[fips2711106778] +centroid = (0.81104404887954551, -1.6621457253802661) +description = Bluffton city, MN +station = ('kadc', 0.00043421504448585538) +zone = ('mnz032', 0.003770604565402522) + +[fips2711106796] +centroid = (0.81163206775783492, -1.6616819041315485) +description = Bluffton township, MN +station = ('kadc', 0.00092272692089337383) +zone = ('mnz032', 0.0032005469400438196) + +[fips2711108938] +centroid = (0.80676155194721955, -1.6771385748937953) +description = Buse township, MN +station = ('kffm', 0.0012430066675061962) +zone = ('mnz030', 0.0033053304824301006) + +[fips2711108974] +centroid = (0.81459453727029252, -1.6642073082927216) +description = Butler township, MN +station = ('kadc', 0.004237862649970882) +zone = ('mnz028', 0.0046082180107144552) + +[fips2711109622] +centroid = (0.81465464640973129, -1.6730819584732624) +description = Candor township, MN +station = ('kdtl', 0.0027547422772800341) +zone = ('mnz027', 0.0045904624307719589) + +[fips2711109946] +centroid = (0.80860926221313589, -1.6794276614742487) +description = Carlisle township, MN +station = ('kffm', 0.0012079017183142596) +zone = ('mnz030', 0.0028214539428807564) + +[fips2711112088] +centroid = (0.80762809046754225, -1.6691160468139556) +description = Clitherall city, MN +station = ('ky63', 0.0066034482749549499) +zone = ('mnz031', 0.0031584794112026514) + +[fips2711112106] +centroid = (0.80677582874050091, -1.6702528495689497) +description = Clitherall township, MN +station = ('ky63', 0.0054455599298973267) +zone = ('mnz031', 0.0043173758497113811) + +[fips2711112844] +centroid = (0.80993403692856969, -1.6618253003828924) +description = Compton township, MN +station = ('kadc', 0.00077834266036052799) +zone = ('mnz031', 0.00297168256739453) + +[fips2711113240] +centroid = (0.81469063509890727, -1.6662656972526464) +description = Corliss township, MN +station = ('kadc', 0.0050511738554196274) +zone = ('mnz028', 0.0045011649073577022) + +[fips2711114626] +centroid = (0.80588637404709951, -1.674040702737968) +description = Dalton city, MN +station = ('ky63', 0.0034257975026657449) +zone = ('mnz030', 0.0042355597257306421) + +[fips2711114644] +centroid = (0.80701167508232285, -1.6746987442258474) +description = Dane Prairie township, MN +station = ('kffm', 0.0025014326085952168) +zone = ('mnz030', 0.00302850593342276) + +[fips2711115076] +centroid = (0.81141109162123992, -1.6708377966677557) +description = Dead Lake township, MN +station = ('kdtl', 0.006253430023419557) +zone = ('mnz030', 0.0037359743317196552) + +[fips2711115184] +centroid = (0.809667891670933, -1.6636905512077911) +description = Deer Creek city, MN +station = ('kadc', 0.0016999849086277129) +zone = ('mnz031', 0.0017214967497058843) + +[fips2711115202] +centroid = (0.81016293685996865, -1.6639397318650986) +description = Deer Creek township, MN +station = ('kadc', 0.001610161629225353) +zone = ('mnz031', 0.001518698883420094) + +[fips2711115724] +centroid = (0.81249904261047057, -1.6705962954591573) +description = Dent city, MN +station = ('kdtl', 0.0052811716214705437) +zone = ('mnz030', 0.0044158052603015903) + +[fips2711116120] +centroid = (0.81295254896330882, -1.6724688592136219) +description = Dora township, MN +station = ('kdtl', 0.0044970784592324861) +zone = ('mnz030', 0.0037957238896680072) + +[fips2711117162] +centroid = (0.8146409630283955, -1.6751614484638435) +description = Dunn township, MN +station = ('kdtl', 0.0029861043723321641) +zone = ('mnz027', 0.004593642543856212) + +[fips2711117396] +centroid = (0.80545014645385604, -1.6702300904755039) +description = Eagle Lake township, MN +station = ('ky63', 0.0045123146125927664) +zone = ('mnz041', 0.0047768727798007593) + +[fips2711117576] +centroid = (0.8056440525337526, -1.6619888726403893) +description = Eastern township, MN +station = ('kadc', 0.0050690906205334424) +zone = ('mnz041', 0.0048234648938433964) + +[fips2711118224] +centroid = (0.81317815022242157, -1.6705205132630356) +description = Edna township, MN +station = ('kdtl', 0.0046804249051422553) +zone = ('mnz031', 0.0043674948289252127) + +[fips2711118278] +centroid = (0.80559307146630188, -1.666167365402589) +description = Effington township, MN +station = ('kaxn', 0.0051284019711138207) +zone = ('mnz041', 0.0039009870418833786) + +[fips2711118566] +centroid = (0.80947651631845174, -1.6778020269023561) +description = Elizabeth city, MN +station = ('kffm', 0.0016955339544799551) +zone = ('mnz030', 0.0014422239603365673) + +[fips2711118584] +centroid = (0.8099845293038298, -1.6768069274293314) +description = Elizabeth township, MN +station = ('kffm', 0.0023720301361539174) +zone = ('mnz030', 0.00068097565485469294) + +[fips2711118980] +centroid = (0.80705426111607148, -1.6640972303767985) +description = Elmo township, MN +station = ('kadc', 0.0040010820492796875) +zone = ('mnz031', 0.0032848393141319703) + +[fips2711119556] +centroid = (0.81125811351230259, -1.677194652322662) +description = Erhard city, MN +station = ('kffm', 0.0035216976584112884) +zone = ('mnz030', 0.0016231728229266838) + +[fips2711119574] +centroid = (0.81179738534458379, -1.6772164689383118) +description = Erhards Grove township, MN +station = ('kffm', 0.0040505682170523952) +zone = ('mnz030', 0.0020919173772663709) + +[fips2711120024] +centroid = (0.80860336300026414, -1.6704218672537128) +description = Everts township, MN +station = ('ky63', 0.0068982345578349124) +zone = ('mnz030', 0.0039581366274564428) + +[fips2711120906] +centroid = (0.80782567919216042, -1.6768450628734874) +description = Fergus Falls city, MN +station = ('kffm', 0.00089128974914065128) +zone = ('mnz030', 0.0022285334529648622) + +[fips2711120924] +centroid = (0.80866329760677758, -1.6773038924805443) +description = Fergus Falls township, MN +station = ('kffm', 0.001039285199752328) +zone = ('mnz030', 0.001635310261811105) + +[fips2711121518] +centroid = (0.80694441009295104, -1.6659646628632623) +description = Folden township, MN +station = ('kadc', 0.0047620884157915516) +zone = ('mnz031', 0.0030808028809559871) + +[fips2711122796] +centroid = (0.81003441081385175, -1.6749926751251758) +description = Friberg township, MN +station = ('kffm', 0.0031161181733981918) +zone = ('mnz030', 0.0005793619357058737) + +[fips2711123840] +centroid = (0.80865101048884358, -1.6683504755908609) +description = Girard township, MN +station = ('kadc', 0.00500131671911352) +zone = ('mnz031', 0.0020549739390570117) + +[fips2711124632] +centroid = (0.81470512133169881, -1.6684674999172073) +description = Gorman township, MN +station = ('kdtl', 0.0043626073458066768) +zone = ('mnz028', 0.0049404689598750266) + +[fips2711128520] +centroid = (0.80848883449474818, -1.6657764814633123) +description = Henning city, MN +station = ('kadc', 0.0035605556903325832) +zone = ('mnz031', 0.0015537994461891783) + +[fips2711128538] +centroid = (0.80871438339398349, -1.6664487124780105) +description = Henning township, MN +station = ('kadc', 0.0038104326558687294) +zone = ('mnz031', 0.0013266140157983559) + +[fips2711129420] +centroid = (0.81464237674508966, -1.6711476973297397) +description = Hobart township, MN +station = ('kdtl', 0.0031835130985350441) +zone = ('mnz027', 0.0049909173835792206) + +[fips2711130050] +centroid = (0.81320668635569171, -1.6641423994978402) +description = Homestead township, MN +station = ('kadc', 0.0029931268277108214) +zone = ('mnz031', 0.003466054669564731) + +[fips2711131004] +centroid = (0.80823200929531736, -1.6640298781209639) +description = Inman township, MN +station = ('kadc', 0.0029380161069116183) +zone = ('mnz031', 0.0023053678990613193) + +[fips2711135990] +centroid = (0.81003941990880501, -1.6662756805359675) +description = Leaf Lake township, MN +station = ('kadc', 0.0031955835244848537) +zone = ('mnz031', 9.9602955152995148e-05) + +[fips2711136008] +centroid = (0.80546121184131358, -1.6682106223578987) +description = Leaf Mountain township, MN +station = ('kaxn', 0.0054045896037509802) +zone = ('mnz041', 0.004073279050933915) + +[fips2711136980] +centroid = (0.81272103103803173, -1.6749631441542319) +description = Lida township, MN +station = ('kdtl', 0.0047842364386870458) +zone = ('mnz030', 0.0028438834744320169) + +[fips2711139500] +centroid = (0.80993756249365867, -1.6729277935404339) +description = Maine township, MN +station = ('kffm', 0.0041833793063290291) +zone = ('mnz030', 0.0019953455307039495) + +[fips2711140364] +centroid = (0.8118529566279673, -1.6748202191417862) +description = Maplewood township, MN +station = ('kffm', 0.0046558610897017459) +zone = ('mnz030', 0.0020342225971152019) + +[fips2711146006] +centroid = (0.81152797632124585, -1.664232598113583) +description = Newton township, MN +station = ('kadc', 0.0018998516676314594) +zone = ('mnz031', 0.0019948455291193376) + +[fips2711146060] +centroid = (0.81192071030952973, -1.6645690277801977) +description = New York Mills city, MN +station = ('kadc', 0.0022918810739144847) +zone = ('mnz031', 0.0021822037980373556) + +[fips2711146240] +centroid = (0.80706197547136527, -1.6680772792030463) +description = Nidaros township, MN +station = ('kadc', 0.005694944444756155) +zone = ('mnz031', 0.0032511594428771321) + +[fips2711147482] +centroid = (0.81286376406425986, -1.6789818520234114) +description = Norwegian Grove township, MN +station = ('kffm', 0.0051007891824917774) +zone = ('mnz030', 0.0036451481660400862) + +[fips2711148004] +centroid = (0.80846988021907151, -1.6617905508774851) +description = Oak Valley township, MN +station = ('kadc', 0.0022406503785785147) +zone = ('mnz031', 0.0033751890404945255) + +[fips2711148742] +centroid = (0.80689681496424914, -1.6789101713510322) +description = Orwell township, MN +station = ('kffm', 0.0010476063918432711) +zone = ('mnz030', 0.0037157360198133752) + +[fips2711148850] +centroid = (0.81016937712490855, -1.6794955024222735) +description = Oscar township, MN +station = ('kffm', 0.0025521215103177196) +zone = ('mnz030', 0.0025434966540489588) + +[fips2711149210] +centroid = (0.81018719693657137, -1.6679654908644561) +description = Ottertail city, MN +station = ('kadc', 0.0043204807718709324) +zone = ('mnz031', 0.0012738525531901951) + +[fips2711149228] +centroid = (0.80985092434958972, -1.6686645301364647) +description = Otter Tail township, MN +station = ('kadc', 0.0048480712700403432) +zone = ('mnz031', 0.0017539318976003678) + +[fips2711149264] +centroid = (0.81144254245436087, -1.666092141711828) +description = Otto township, MN +station = ('kadc', 0.0030838571713930184) +zone = ('mnz031', 0.0014198103550259868) + +[fips2711149408] +centroid = (0.81461670295179278, -1.6617529913919822) +description = Paddock township, MN +station = ('kadc', 0.0039064238917679911) +zone = ('mnz032', 0.0032847945590587391) + +[fips2711149732] +centroid = (0.80551866808028927, -1.6638191645203706) +description = Parkers Prairie city, MN +station = ('kaxn', 0.0050662616862055618) +zone = ('mnz041', 0.0041074208105882125) + +[fips2711149750] +centroid = (0.80495243091106472, -1.6644624754293633) +description = Parkers Prairie township, MN +station = ('kaxn', 0.0044464794609085654) +zone = ('mnz041', 0.0034238038595101748) + +[fips2711150110] +centroid = (0.81320136310147317, -1.6772917449889504) +description = Pelican township, MN +station = ('kdtl', 0.0049421471291309542) +zone = ('mnz030', 0.0034155083962094262) + +[fips2711150164] +centroid = (0.81280473702895739, -1.6770144994372711) +description = Pelican Rapids city, MN +station = ('kffm', 0.0050672874045889337) +zone = ('mnz030', 0.0029808957410480544) + +[fips2711150470] +centroid = (0.81330170208017016, -1.6680855346104084) +description = Perham city, MN +station = ('kadc', 0.0050756492154464435) +zone = ('mnz031', 0.0035433807121558847) + +[fips2711150488] +centroid = (0.81307939949334374, -1.6686339868745548) +description = Perham township, MN +station = ('kadc', 0.0053010311915308115) +zone = ('mnz031', 0.0035078461417527309) + +[fips2711151208] +centroid = (0.81299113819307045, -1.6663716561915347) +description = Pine Lake township, MN +station = ('kadc', 0.0039179207311440681) +zone = ('mnz031', 0.002972660567534004) + +[fips2711154340] +centroid = (0.81168098933676835, -1.6689862990373625) +description = Richville city, MN +station = ('kadc', 0.005081857743477268) +zone = ('mnz031', 0.002571357142640588) + +[fips2711156014] +centroid = (0.81114592374798433, -1.6803487415336962) +description = Rothsay city, MN +station = ('kffm', 0.0036813860847646537) +zone = ('mnz029', 0.0030933189174420406) + +[fips2711156320] +centroid = (0.81158574671948702, -1.6683858359615062) +description = Rush Lake township, MN +station = ('kadc', 0.004658030015908015) +zone = ('mnz031', 0.0022023778601756709) + +[fips2711157382] +centroid = (0.80551575338043846, -1.6724044914708083) +description = St. Olaf township, MN +station = ('ky63', 0.0035444347352611562) +zone = ('mnz040', 0.0044590222774594738) + +[fips2711158864] +centroid = (0.81446934480304689, -1.677307505312096) +description = Scambler township, MN +station = ('kdtl', 0.0039297382332718804) +zone = ('mnz030', 0.0046440047266322268) + +[fips2711162554] +centroid = (0.81165983594623414, -1.67261831175747) +description = Star Lake township, MN +station = ('kffm', 0.0054218769246767379) +zone = ('mnz030', 0.0027982467711485741) + +[fips2711163688] +centroid = (0.80854307932790026, -1.6727307807744687) +description = Sverdrup township, MN +station = ('kffm', 0.0038066354807085715) +zone = ('mnz030', 0.002549096791302591) + +[fips2711165218] +centroid = (0.80695931520476305, -1.6723217279576787) +description = Tordenskjold township, MN +station = ('ky63', 0.004837440007333208) +zone = ('mnz030', 0.0038369166791385983) + +[fips2711165524] +centroid = (0.8116889305848648, -1.679159805793945) +description = Trondhjem township, MN +station = ('kffm', 0.0039561394060147895) +zone = ('mnz030', 0.0028897045024363411) + +[fips2711165686] +centroid = (0.80546005992400738, -1.6746250738781208) +description = Tumuli township, MN +station = ('ky63', 0.0029292362469996512) +zone = ('mnz040', 0.0038375577459189027) + +[fips2711166172] +centroid = (0.80784655333001432, -1.6733362878518632) +description = Underwood city, MN +station = ('kffm', 0.0033160047441949001) +zone = ('mnz030', 0.00270600097162301) + +[fips2711166388] +centroid = (0.80503100563398955, -1.6669780359335553) +description = Urbank city, MN +station = ('kaxn', 0.0047026570750449814) +zone = ('mnz041', 0.003408195480609208) + +[fips2711166766] +centroid = (0.8142809365102941, -1.6720865622942651) +description = Vergas city, MN +station = ('kdtl', 0.0032579707168339453) +zone = ('mnz030', 0.0050450748612398512) + +[fips2711167216] +centroid = (0.80733443882089417, -1.6673408898850448) +description = Vining city, MN +station = ('kadc', 0.0051309801514224027) +zone = ('mnz031', 0.0028149169930741349) + +[fips2711167504] +centroid = (0.81034094299037962, -1.6609335767614635) +description = Wadena city, MN +station = ('kadc', 0.00066871249139296355) +zone = ('mnz032', 0.0036013827565384545) + +[fips2711169430] +centroid = (0.80542504861921227, -1.6790493089990011) +description = Western township, MN +station = ('kffm', 0.0024546092025873483) +zone = ('mnz040', 0.0043814340144299191) + +[fips2711171644] +centroid = (0.80719907108410949, -1.6615268490808013) +description = Woodside township, MN +station = ('kadc', 0.0035143691674464454) +zone = ('mnz031', 0.0042534042967433683) + +[fips2711296] +centroid = (0.81583593760735851, -1.6472579097811217) +description = Chickamaw Beach city, MN +station = ('kpwc', 0.00033240010808891922) +zone = ('mnz033', 0.0037428833333293505) + +[fips27113] +centroid = (0.83896662910440667, -1.6761745073748711) +description = Pennington County, MN +station = ('ktvf', 0.0016988471966481612) +zone = ('mnz013', 5.4507323333602702e-05) + +[fips2711306364] +centroid = (0.83761556973043783, -1.6805380050377823) +description = Black River township, MN +station = ('ktvf', 0.0017862257724293516) +zone = ('mnz014', 0.0030757896627075796) + +[fips2711307444] +centroid = (0.83912800224704609, -1.6831574126324678) +description = Bray township, MN +station = ('ktvf', 0.0029749681730129843) +zone = ('mnz001', 0.0051104265681326212) + +[fips2711312304] +centroid = (0.84025072019497649, -1.6739749561850452) +description = Cloverleaf township, MN +station = ('ktvf', 0.0034335193982642401) +zone = ('mnz013', 0.0019775551105019303) + +[fips2711315292] +centroid = (0.83762564028022179, -1.6715777639107237) +description = Deer Park township, MN +station = ('ktvf', 0.0049463594471757183) +zone = ('mnz014', 0.0043040577296535156) + +[fips2711324470] +centroid = (0.8402734269285449, -1.6720940497567562) +description = Goodridge city, MN +station = ('ktvf', 0.0046238119555862571) +zone = ('mnz013', 0.0030346408838380751) + +[fips2711324488] +centroid = (0.84019809851802885, -1.6718065416690751) +description = Goodridge township, MN +station = ('ktvf', 0.0047872896286749334) +zone = ('mnz013', 0.0031763284148011279) + +[fips2711328808] +centroid = (0.83737872855094231, -1.6695444029722728) +description = Hickory township, MN +station = ('ktvf', 0.0063252636691109336) +zone = ('mnz016', 0.0050495116686240862) + +[fips2711329024] +centroid = (0.83887245113796904, -1.6716193900133838) +description = Highlanding township, MN +station = ('ktvf', 0.0047426994274695957) +zone = ('mnz013', 0.0030324449976090297) + +[fips2711333740] +centroid = (0.83877582971057874, -1.6741544109387354) +description = Kratka township, MN +station = ('ktvf', 0.0030519823725099408) +zone = ('mnz013', 0.0013451782784415281) + +[fips2711341156] +centroid = (0.83762132931696953, -1.6738292735523814) +description = Mayfield township, MN +station = ('ktvf', 0.0035170730794471298) +zone = ('mnz013', 0.0020228697237172572) + +[fips2711346510] +centroid = (0.84021785564516149, -1.6808383063888803) +description = Norden township, MN +station = ('ktvf', 0.0019207142860176868) +zone = ('mnz013', 0.0033875701314073211) + +[fips2711346762] +centroid = (0.84024054492543743, -1.6785648230519399) +description = North township, MN +station = ('ktvf', 0.0013228013853189982) +zone = ('mnz013', 0.0020850214934210122) + +[fips2711347590] +centroid = (0.84022825780750332, -1.6831069900703777) +description = Numedal township, MN +station = ('ktvf', 0.0032102655441978195) +zone = ('mnz007', 0.0054046181755862096) + +[fips2711350] +centroid = (0.79143040526477615, -1.6216035070922747) +description = Chisago City city, MN +station = ('koeo', 0.0027881344832928028) +zone = ('mnz053', 0.0027382428871404537) + +[fips2711351802] +centroid = (0.83760059480545579, -1.6827962341970604) +description = Polk Centre township, MN +station = ('ktvf', 0.0030317128165366311) +zone = ('mnz001', 0.0042038832395843648) + +[fips2711353746] +centroid = (0.84020574306015261, -1.6695457817823818) +description = Reiner township, MN +station = ('ktvf', 0.0062568427464327649) +zone = ('mnz008', 0.0054563999397386088) + +[fips2711354574] +centroid = (0.83758769682228351, -1.6781004956577394) +description = River Falls township, MN +station = ('ktvf', 0.001395935268891662) +zone = ('mnz013', 0.001856773594290585) + +[fips2711355060] +centroid = (0.83887023456981902, -1.6786997544564117) +description = Rocksbury township, MN +station = ('ktvf', 5.2473820821297085e-05) +zone = ('mnz013', 0.0017000957842190848) + +[fips2711357022] +centroid = (0.8379877262868406, -1.6792435815980407) +description = St. Hilaire city, MN +station = ('ktvf', 0.00099830315847760417) +zone = ('mnz014', 0.002829788055266607) + +[fips2711358342] +centroid = (0.83887904848254158, -1.6808605244302581) +description = Sanders township, MN +station = ('ktvf', 0.0014338754979558107) +zone = ('mnz014', 0.0041672619261764647) + +[fips2711360448] +centroid = (0.84018820250116999, -1.6763160710305003) +description = Silverton township, MN +station = ('ktvf', 0.0020426682873807018) +zone = ('mnz013', 0.0012791931809584885) + +[fips2711360898] +centroid = (0.83886299145342325, -1.6763347286002042) +description = Smiley township, MN +station = ('ktvf', 0.0015923530878429566) +zone = ('mnz013', 0.00012928278376027571) + +[fips2711362482] +centroid = (0.83887705880719432, -1.6697258823078951) +description = Star township, MN +station = ('ktvf', 0.0060079892044569757) +zone = ('mnz016', 0.0063513774573924755) + +[fips2711364570] +centroid = (0.83974944418051123, -1.6785845278191951) +description = Thief River Falls city, MN +station = ('ktvf', 0.00083248477827064409) +zone = ('mnz013', 0.0018245419609310759) + +[fips2711371878] +centroid = (0.83761262012400195, -1.6760611831465393) +description = Wyandotte township, MN +station = ('ktvf', 0.0022057096637648093) +zone = ('mnz013', 0.0013023935107665115) + +[fips2711386] +centroid = (0.82881375213958286, -1.621051354730114) +description = Chisholm city, MN +station = ('khib', 0.001898157662725947) +zone = ('mnz019', 0.005290644050273902) + +[fips2711440] +centroid = (0.79540214632378448, -1.6785643343597494) +description = Chokio city, MN +station = ('kmox', 0.0025437045082196217) +zone = ('mnz047', 0.0021417517708033807) + +[fips2711494] +centroid = (0.78798325781903966, -1.6256427051268727) +description = Circle Pines city, MN +station = ('kane', 0.00091394264856677965) +zone = ('mnz062', 0.0023474253287252477) + +[fips27115] +centroid = (0.80461319126435471, -1.6190214146369968) +description = Pine County, MN +station = ('k04w', 0.0020875353441178455) +zone = ('mnz038', 0.00043479790265266524) + +[fips2711502188] +centroid = (0.80347242661195861, -1.6187238709061169) +description = Arlone township, MN +station = ('k04w', 0.0017654958993591928) +zone = ('mnz038', 0.0014884502469772487) + +[fips2711502224] +centroid = (0.80473477090004863, -1.6119889245753511) +description = Arna township, MN +station = ('krzn', 0.0049786767785579885) +zone = ('wiz006', 0.0042806025428038423) + +[fips2711502548] +centroid = (0.8061436355788435, -1.6193569541856927) +description = Askov city, MN +station = ('k04w', 0.0032186802477376856) +zone = ('mnz038', 0.0012830347532315871) + +[fips2711503736] +centroid = (0.80327202790724461, -1.6209544889566281) +description = Barry township, MN +station = ('k04w', 0.00020836738164933146) +zone = ('mnz038', 0.0023282194747623148) + +[fips2711505986] +centroid = (0.80953299517304633, -1.6233597795586789) +description = Birch Creek township, MN +station = ('kmzh', 0.0026152032927035211) +zone = ('mnz036', 0.0048484587014082283) + +[fips2711507552] +centroid = (0.80803262288156941, -1.6231633252980744) +description = Bremen township, MN +station = ('kmzh', 0.0031937526172081173) +zone = ('mnz038', 0.0043850598116265526) + +[fips2711507984] +centroid = (0.80194910324081803, -1.6244253554268993) +description = Brook Park city, MN +station = ('k04w', 0.0025448570501476406) +zone = ('mnz045', 0.0026798727916967149) + +[fips2711508002] +centroid = (0.8015181116353306, -1.6251156855059403) +description = Brook Park township, MN +station = ('kjmr', 0.002043470514909137) +zone = ('mnz045', 0.0022321969622671163) + +[fips2711508290] +centroid = (0.80775560422269299, -1.6173625489961463) +description = Bruno city, MN +station = ('kmzh', 0.0028521521950518689) +zone = ('mnz038', 0.0029328483584898759) + +[fips2711508308] +centroid = (0.80799261993511373, -1.6164908093946526) +description = Bruno township, MN +station = ('kmzh', 0.0030565378576470482) +zone = ('mnz038', 0.0033787302204898316) + +[fips2711511098] +centroid = (0.80062973904606549, -1.620081998863556) +description = Chengwatana township, MN +station = ('k04w', 0.0026931712757447424) +zone = ('mnz038', 0.0044440053601394591) + +[fips2711512268] +centroid = (0.80341580813102398, -1.6163500834970643) +description = Clover township, MN +station = ('k04w', 0.003399496857259631) +zone = ('mnz038', 0.0022166284452022496) + +[fips2711513942] +centroid = (0.80207883356411869, -1.6170776938089282) +description = Crosby township, MN +station = ('k04w', 0.0030995533291345401) +zone = ('mnz038', 0.0030790285014215889) + +[fips2711514680] +centroid = (0.80467534243901817, -1.6161531579975619) +description = Danforth township, MN +station = ('k04w', 0.0038230247697347472) +zone = ('mnz038', 0.0017492007618537429) + +[fips2711515598] +centroid = (0.80501386650073503, -1.6227369762683976) +description = Dell Grove township, MN +station = ('k04w', 0.0020909442865262081) +zone = ('mnz038', 0.0028382839652974822) + +[fips2711515670] +centroid = (0.80916469579429051, -1.6221366004590039) +description = Denham city, MN +station = ('kmzh', 0.0019556782421985999) +zone = ('mnz038', 0.0048497431737433974) + +[fips2711521122] +centroid = (0.80650973584274177, -1.6218691287511358) +description = Finlayson city, MN +station = ('k04w', 0.0033381607959285177) +zone = ('mnz038', 0.0027194253718675928) + +[fips2711521140] +centroid = (0.80656333490407051, -1.6206306431139206) +description = Finlayson township, MN +station = ('k04w', 0.0033889232704506543) +zone = ('mnz038', 0.0021134395836155569) + +[fips2711521248] +centroid = (0.80659794478313762, -1.6160610395196415) +description = Fleming township, MN +station = ('kmzh', 0.0043160909674274496) +zone = ('mnz038', 0.0024249455888771332) + +[fips2711528574] +centroid = (0.80060385581325844, -1.6252436704999893) +description = Henriette city, MN +station = ('kjmr', 0.0018658545843074385) +zone = ('mnz045', 0.0024761743252464849) + +[fips2711529294] +centroid = (0.80307979734343005, -1.621814918824569) +description = Hinckley city, MN +station = ('k04w', 0.00041953777904343696) +zone = ('mnz038', 0.0028945362941045459) + +[fips2711529312] +centroid = (0.80330424668523648, -1.6233720841299057) +description = Hinckley township, MN +station = ('k04w', 0.0014866177843837177) +zone = ('mnz038', 0.0036749309002428346) + +[fips2711532912] +centroid = (0.80876918673249609, -1.6159158979390458) +description = Kerrick city, MN +station = ('kmzh', 0.0029200235109378223) +zone = ('mnz038', 0.0042508448589908465) + +[fips2711532930] +centroid = (0.80946262349760589, -1.6165415984758855) +description = Kerrick township, MN +station = ('kmzh', 0.0022535559325579258) +zone = ('mnz038', 0.0047314369150334816) + +[fips2711532984] +centroid = (0.80805028561359959, -1.6211127030533214) +description = Kettle River township, MN +station = ('kmzh', 0.0023013961723714342) +zone = ('mnz038', 0.0035316475712045365) + +[fips2711543486] +centroid = (0.8019002689283472, -1.6224423995972459) +description = Mission Creek township, MN +station = ('k04w', 0.0015469324255221479) +zone = ('mnz038', 0.0040396854811026832) + +[fips2711544764] +centroid = (0.80205167624095763, -1.6205186976956978) +description = Munch township, MN +station = ('k04w', 0.0012523904580226295) +zone = ('mnz038', 0.0031863895519664482) + +[fips2711545484] +centroid = (0.80677839437450127, -1.6133123553872608) +description = New Dosey township, MN +station = ('kmzh', 0.0055174323312480672) +zone = ('mnz038', 0.0041149051177931878) + +[fips2711546132] +centroid = (0.8092503216473933, -1.6126838099637399) +description = Nickerson township, MN +station = ('kcoq', 0.0059410868696940953) +zone = ('mnz038', 0.0059491549361764722) + +[fips2711546618] +centroid = (0.80800644294278945, -1.6184594186178547) +description = Norman township, MN +station = ('kmzh', 0.0022749872044146931) +zone = ('mnz038', 0.0030492708119911043) + +[fips2711548] +centroid = (0.78466283873029063, -1.6644650759699486) +description = Clara City city, MN +station = ('kbdh', 0.0040666942225640098) +zone = ('mnz056', 0.0027102365482880668) + +[fips2711548148] +centroid = (0.80344149937761333, -1.6140119531646302) +description = Ogema township, MN +station = ('krzn', 0.0038918579835011857) +zone = ('wiz006', 0.0032636295588470664) + +[fips2711549660] +centroid = (0.80776804842025962, -1.614789514799686) +description = Park township, MN +station = ('kmzh', 0.0041081700301250842) +zone = ('mnz038', 0.0038728276315304457) + +[fips2711549876] +centroid = (0.80647798830364803, -1.6185850997772908) +description = Partridge township, MN +station = ('kmzh', 0.0037212744032001986) +zone = ('mnz038', 0.0015187002147821476) + +[fips2711551064] +centroid = (0.79993829195630273, -1.6226303366511006) +description = Pine City city, MN +station = ('kros', 0.0023656356667597065) +zone = ('mnz045', 0.0043923527203009842) + +[fips2711551082] +centroid = (0.79958529911508691, -1.6212480184302287) +description = Pine City township, MN +station = ('kros', 0.0021429541465991502) +zone = ('mnz053', 0.0054211243820166972) + +[fips2711551226] +centroid = (0.80623828478417914, -1.6231391524879344) +description = Pine Lake township, MN +station = ('k04w', 0.0033118579345939128) +zone = ('mnz038', 0.00336672644269604) + +[fips2711551784] +centroid = (0.80058551240281983, -1.62390313546141) +description = Pokegama township, MN +station = ('kros', 0.0031963925816834446) +zone = ('mnz045', 0.0033149756355197952) + +[fips2711554934] +centroid = (0.79874497544012923, -1.6214712460415586) +description = Rock Creek city, MN +station = ('kros', 0.0013109882439847887) +zone = ('mnz053', 0.0045769138759497755) + +[fips2711556194] +centroid = (0.79880094814924074, -1.6244126319766523) +description = Royalton township, MN +station = ('kros', 0.0018937410129789751) +zone = ('mnz045', 0.0041029273288225093) + +[fips2711556518] +centroid = (0.80731754403373479, -1.6210310914574984) +description = Rutledge city, MN +station = ('kmzh', 0.0029602658794711193) +zone = ('mnz038', 0.0028796918223459901) + +[fips2711558396] +centroid = (0.80510355897099495, -1.6207922082427777) +description = Sandstone city, MN +station = ('k04w', 0.0019278172949572375) +zone = ('mnz038', 0.0014966605315310281) + +[fips2711558414] +centroid = (0.80486905653269702, -1.6194322302363311) +description = Sandstone township, MN +station = ('k04w', 0.002085850338642707) +zone = ('mnz038', 0.00055469848260546878) + +[fips2711563220] +centroid = (0.80967408758977766, -1.6200463243336454) +description = Sturgeon Lake city, MN +station = ('kmzh', 0.00052063567026305673) +zone = ('mnz038', 0.0048131248535171452) + +[fips2711563238] +centroid = (0.80948138578706486, -1.6212462032878063) +description = Sturgeon Lake township, MN +station = ('kmzh', 0.0012652299134064545) +zone = ('mnz038', 0.0048667882357785949) + +[fips2711566] +centroid = (0.76873454509756989, -1.6231265163041502) +description = Claremont city, MN +station = ('ktob', 0.0021475001312605542) +zone = ('mnz086', 0.0017557037276362056) + +[fips2711570492] +centroid = (0.80862151442448482, -1.6200988936507155) +description = Willow River city, MN +station = ('kmzh', 0.0015316133265731923) +zone = ('mnz038', 0.0037977405194415306) + +[fips2711570528] +centroid = (0.80485633308244997, -1.614058605815536) +description = Wilma township, MN +station = ('k04w', 0.0052480448076693666) +zone = ('mnz038', 0.0031793314297786962) + +[fips2711570780] +centroid = (0.80942317905651084, -1.6184336750113877) +description = Windemere township, MN +station = ('kmzh', 0.0011011143925882443) +zone = ('mnz038', 0.0044657072217105017) + +[fips2711602] +centroid = (0.80509340115474837, -1.6571769649860559) +description = Clarissa city, MN +station = ('k14y', 0.0041109894540909573) +zone = ('mnz042', 0.001187537899965388) + +[fips2711656] +centroid = (0.78174676006935095, -1.6721621699574614) +description = Clarkfield city, MN +station = ('kgdb', 0.0031910933502442827) +zone = ('mnz064', 0.0015021399323688219) + +[fips2711674] +centroid = (0.76380306493618233, -1.628881495166506) +description = Clarks Grove city, MN +station = ('kael', 0.0014682827020316305) +zone = ('mnz093', 0.001573624845348395) + +[fips27117] +centroid = (0.76821297090390384, -1.6800018398915695) +description = Pipestone County, MN +station = ('kpqn', 0.00093453608253481169) +zone = ('mnz097', 0.00013480161026752574) + +[fips2711700298] +centroid = (0.77051793998055018, -1.6778821724216075) +description = Aetna township, MN +station = ('kpqn', 0.0036551959631035179) +zone = ('mnz097', 0.0026636729199685603) + +[fips2711701216] +centroid = (0.77052219858392501, -1.6822705061197745) +description = Altona township, MN +station = ('kpqn', 0.0030007783448752308) +zone = ('mnz097', 0.0027066123355655261) + +[fips2711708650] +centroid = (0.76772892128915582, -1.6775442592251291) +description = Burke township, MN +station = ('kpqn', 0.0025184835615468981) +zone = ('mnz097', 0.0018911835340136305) + +[fips2711718062] +centroid = (0.76612423066828717, -1.6820508040735336) +description = Eden township, MN +station = ('kpqn', 0.0016931668856474378) +zone = ('mnz097', 0.0026560483277319178) + +[fips2711718152] +centroid = (0.76576896889904367, -1.6777932478962183) +description = Edgerton city, MN +station = ('kpqn', 0.0030051410811352888) +zone = ('mnz097', 0.0030388696692051072) + +[fips2711718908] +centroid = (0.76640674711430745, -1.679216302101832) +description = Elmer township, MN +station = ('kpqn', 0.0018125133476245682) +zone = ('mnz097', 0.0020259355913716508) + +[fips2711722130] +centroid = (0.77050947513367796, -1.6799815766189539) +description = Fountain Prairie township, MN +station = ('kpqn', 0.0029555842853529425) +zone = ('mnz097', 0.0021634524506752776) + +[fips2711725208] +centroid = (0.7689809506813664, -1.6799651181641078) +description = Grange township, MN +station = ('kpqn', 0.0015367343335298805) +zone = ('mnz097', 0.0006363394391273999) + +[fips2711725478] +centroid = (0.76769876199968135, -1.6798370982634738) +description = Gray township, MN +station = ('kpqn', 0.00086880243202254286) +zone = ('mnz097', 0.00066215861795631897) + +[fips2711727566] +centroid = (0.76713638200810363, -1.6788129216051111) +description = Hatfield city, MN +station = ('kpqn', 0.0016864018492293291) +zone = ('mnz097', 0.0014933373500110375) + +[fips2711729618] +centroid = (0.76951983854121209, -1.6789873323572628) +description = Holland city, MN +station = ('kpqn', 0.0023801759769955773) +zone = ('mnz097', 0.0013921711279199719) + +[fips2711730806] +centroid = (0.76637266083401601, -1.6820111327396357) +description = Ihlen city, MN +station = ('kpqn', 0.0014586624125575852) +zone = ('mnz097', 0.002435052928862232) + +[fips2711731760] +centroid = (0.76538644508688414, -1.6824639235074805) +description = Jasper city, MN +station = ('kpqn', 0.0024878514408294733) +zone = ('mnz097', 0.0034400166008063393) + +[fips2711746] +centroid = (0.83245552125020916, -1.6655404954951503) +description = Clearbrook city, MN +station = ('kfse', 0.0044389906033017951) +zone = ('mnz016', 0.0010780657194479201) + +[fips2711748832] +centroid = (0.76613430121807113, -1.6777562643693686) +description = Osborne township, MN +station = ('kpqn', 0.002812551099459765) +zone = ('mnz097', 0.0027514612288572935) + +[fips2711751388] +centroid = (0.76786413194630776, -1.6809454521516605) +description = Pipestone city, MN +station = ('kpqn', 0.00022154924736994389) +zone = ('mnz097', 0.00081637555335061461) + +[fips2711754916] +centroid = (0.7689671974868606, -1.6775560751041649) +description = Rock township, MN +station = ('kpqn', 0.0028304449604992562) +zone = ('mnz097', 0.0018833063215315852) + +[fips2711756482] +centroid = (0.77104223688784934, -1.6773490441482932) +description = Ruthton city, MN +station = ('kpqn', 0.0043036846731154777) +zone = ('mnz097', 0.0033126012335841764) + +[fips2711763886] +centroid = (0.76756629150945499, -1.6822177448164866) +description = Sweet township, MN +station = ('kpqn', 0.00084988021639280538) +zone = ('mnz097', 0.0017567324931227067) + +[fips2711764] +centroid = (0.79324975393034758, -1.6406461313356691) +description = Clear Lake city, MN +station = ('kstc', 0.0018433396237254891) +zone = ('mnz051', 0.0027888254512724565) + +[fips2711765542] +centroid = (0.765991568191843, -1.6799253072038696) +description = Trosky city, MN +station = ('kpqn', 0.0018469950708542905) +zone = ('mnz097', 0.0023559227872704844) + +[fips2711765614] +centroid = (0.76912473090514577, -1.6821840599619231) +description = Troy township, MN +station = ('kpqn', 0.0016841318217112192) +zone = ('mnz097', 0.0017333065884340164) + +[fips2711771680] +centroid = (0.76814031284714335, -1.6772033266090443) +description = Woodstock city, MN +station = ('kpqn', 0.0028046134906969411) +zone = ('mnz097', 0.0020428066804035238) + +[fips2711800] +centroid = (0.79257853520661559, -1.6413853306337665) +description = Clearwater city, MN +station = ('kstc', 0.0024198916701686662) +zone = ('mnz059', 0.0042641766768872161) + +[fips2711836] +centroid = (0.77457782016678423, -1.6590181826271546) +description = Clements city, MN +station = ('krwf', 0.0029876663787865325) +zone = ('mnz073', 0.0025179422852788721) + +[fips2711872] +centroid = (0.77359259925732593, -1.6377352363026081) +description = Cleveland city, MN +station = ('kmkt', 0.0021251478629512955) +zone = ('mnz076', 0.0015569509500661925) + +[fips27119] +centroid = (0.83381802998407106, -1.6824978701614317) +description = Polk County, MN +station = ('kckn', 0.0028627655384019816) +zone = ('mnz001', 0.0037889430008657635) + +[fips2711901504] +centroid = (0.83280353990305678, -1.6873055192123902) +description = Andover township, MN +station = ('kckn', 0.0024362024566902409) +zone = ('mnz001', 0.0023029733522178211) + +[fips2711901648] +centroid = (0.83888861288684258, -1.6876503439127066) +description = Angus township, MN +station = ('kckn', 0.0038594304783662555) +zone = ('mnz001', 0.0038095454922696761) + +[fips2711903142] +centroid = (0.83263235801002122, -1.6758347441293855) +description = Badger township, MN +station = ('kfse', 0.0034957041517932907) +zone = ('mnz015', 0.0014518690303504213) + +[fips2711904726] +centroid = (0.83724955673300216, -1.6848795988185807) +description = Belgium township, MN +station = ('kckn', 0.0023086397765183036) +zone = ('mnz001', 0.0029293711653655781) + +[fips2711905014] +centroid = (0.82977370068147216, -1.6847150666299953) +description = Beltrami city, MN +station = ('kckn', 0.0054686010593969258) +zone = ('mnz002', 0.0038649857388083826) + +[fips2711907390] +centroid = (0.83187509455416586, -1.6712944969731252) +description = Brandsvold township, MN +station = ('kfse', 0.0012374277889066205) +zone = ('mnz015', 0.0018816299542448517) + +[fips2711907408] +centroid = (0.8388932729159454, -1.6853889731607752) +description = Brandt township, MN +station = ('kckn', 0.0038002520729965078) +zone = ('mnz001', 0.0041448847595161459) + +[fips2711907768] +centroid = (0.84021708770029058, -1.6876553879142451) +description = Brislet township, MN +station = ('kckn', 0.0051599185830902639) +zone = ('mnz007', 0.0038964679844076724) + +[fips2711909118] +centroid = (0.83440498421151676, -1.6916001461830175) +description = Bygland township, MN +station = ('kgfk', 0.003942462184741799) +zone = ('mnz001', 0.0026281272701185452) + +[fips2711911224] +centroid = (0.83444303238921014, -1.6716499332752937) +description = Chester township, MN +station = ('kfse', 0.0037928429132665846) +zone = ('mnz015', 0.0031230916110728171) + +[fips2711911962] +centroid = (0.83092568780095866, -1.6896906512615808) +description = Climax city, MN +station = ('kckn', 0.0047986493809063693) +zone = ('mnz001', 0.0043419241246660115) + +[fips2711912682] +centroid = (0.82985986758664321, -1.6688493430509586) +description = Columbia township, MN +station = ('kfse', 0.0019924993419501904) +zone = ('mnz016', 0.0044707742680655388) + +[fips2711913870] +centroid = (0.83382541272680699, -1.6860963376533162) +description = Crookston city, MN +station = ('kckn', 0.0013203416898111928) +zone = ('mnz001', 0.001706267465205987) + +[fips2711913888] +centroid = (0.83458520691007765, -1.6848691617496538) +description = Crookston township, MN +station = ('kckn', 0.0010970154288099574) +zone = ('mnz001', 0.002040085217938521) + +[fips2711917612] +centroid = (0.83650677950993846, -1.6932094793796966) +description = East Grand Forks city, MN +station = ('kgfk', 0.0020185591261927278) +zone = ('ndz027', 0.0051851373995684697) + +[fips2711918080] +centroid = (0.83295201506252403, -1.6691129226745947) +description = Eden township, MN +station = ('kfse', 0.0028306886723047748) +zone = ('mnz016', 0.0029038368624757891) + +[fips2711919700] +centroid = (0.83187912626473803, -1.6758072551936667) +description = Erskine city, MN +station = ('kfse', 0.0031148721954663084) +zone = ('mnz015', 0.001163949828580229) + +[fips2711919790] +centroid = (0.83900872644596469, -1.6938771899916321) +description = Esther township, MN +station = ('kgfk', 0.0026190847372918858) +zone = ('ndz027', 0.0054040800560051592) + +[fips2711919862] +centroid = (0.8373727769781929, -1.6873248400072098) +description = Euclid township, MN +station = ('kckn', 0.0023401905132694784) +zone = ('mnz001', 0.0023157032816232478) + +[fips2711920204] +centroid = (0.83281371517259595, -1.6850426998371795) +description = Fairfax township, MN +station = ('kckn', 0.0024701911260271471) +zone = ('mnz001', 0.0029351207744820365) + +[fips2711920510] +centroid = (0.83585395655652239, -1.6873223267330868) +description = Fanny township, MN +station = ('kckn', 0.00099977001656529133) +zone = ('mnz001', 0.00084149165540218173) + +[fips2711920564] +centroid = (0.84021347486873899, -1.6899205285773609) +description = Farley township, MN +station = ('kgfk', 0.0053410990412932763) +zone = ('mnz007', 0.0038762078849059662) + +[fips2711920978] +centroid = (0.82958222060923592, -1.6804529725966253) +description = Fertile city, MN +station = ('kfse', 0.0060952502616094814) +zone = ('mnz002', 0.0041163941283337028) + +[fips2711921158] +centroid = (0.83425335000610357, -1.6894690991663324) +description = Fisher city, MN +station = ('kckn', 0.0023181599005994685) +zone = ('mnz001', 0.0013837386299494915) + +[fips2711921176] +centroid = (0.834340005603465, -1.6895466790515836) +description = Fisher township, MN +station = ('kckn', 0.0023351834957585382) +zone = ('mnz001', 0.0013773108704660203) + +[fips2711921986] +centroid = (0.83051740292903953, -1.6711996208749866) +description = Fosston city, MN +station = ('kfse', 0.0002771959721780015) +zone = ('mnz015', 0.0023207333677609759) + +[fips2711923066] +centroid = (0.82968280393402838, -1.6776678110828775) +description = Garden township, MN +station = ('kfse', 0.0042333819750387178) +zone = ('mnz015', 0.0032017945480418658) + +[fips2711923156] +centroid = (0.82984121001693945, -1.6798045653262166) +description = Garfield township, MN +station = ('kfse', 0.0056211379679285134) +zone = ('mnz002', 0.004565127548060992) + +[fips2711923480] +centroid = (0.83428309041655746, -1.6826807806670407) +description = Gentilly township, MN +station = ('kckn', 0.0025632692734122104) +zone = ('mnz001', 0.0035396698283963217) + +[fips2711924254] +centroid = (0.83137308550141475, -1.6801449394369405) +description = Godfrey township, MN +station = ('kckn', 0.0055861363786909963) +zone = ('mnz014', 0.0046002332026067053) + +[fips2711924938] +centroid = (0.83750226295539842, -1.6935163955286596) +description = Grand Forks township, MN +station = ('kgfk', 0.0018802255822205492) +zone = ('ndz027', 0.0050972512085302379) + +[fips2711926190] +centroid = (0.83286675572856406, -1.6796490390365715) +description = Grove Park-Tilden township, MN +station = ('ktvf', 0.0060870828875955116) +zone = ('mnz014', 0.0031282124041972126) + +[fips2711926270] +centroid = (0.83371535226417626, -1.6689322112838432) +description = Gully city, MN +station = ('kfse', 0.0035386864289291874) +zone = ('mnz016', 0.0027564554738138051) + +[fips2711926288] +centroid = (0.83447303459905198, -1.6691221903729228) +description = Gully township, MN +station = ('kfse', 0.0041595703510283353) +zone = ('mnz016', 0.0030520176968999468) + +[fips2711926810] +centroid = (0.83129496456409557, -1.6867420222100913) +description = Hammond township, MN +station = ('kckn', 0.003857672899666955) +zone = ('mnz001', 0.0038541718236635597) + +[fips2711928358] +centroid = (0.84022199207548864, -1.6853924114594017) +description = Helgeland township, MN +station = ('ktvf', 0.0046442499375953863) +zone = ('mnz007', 0.0044579596762733924) + +[fips2711928844] +centroid = (0.84027316512915717, -1.6942707791912492) +description = Higdem township, MN +station = ('kgfk', 0.0036176938500655943) +zone = ('mnz007', 0.0051939760441450638) + +[fips2711929186] +centroid = (0.83269899468086239, -1.6714530950422537) +description = Hill River township, MN +station = ('kfse', 0.0020495879146231193) +zone = ('mnz015', 0.0019942077725659249) + +[fips2711930356] +centroid = (0.82989866625591513, -1.689182812809128) +description = Hubbard township, MN +station = ('kckn', 0.0055938800839202777) +zone = ('mnz001', 0.0052629203268575843) + +[fips2711930590] +centroid = (0.83583379800366198, -1.6917837897269123) +description = Huntsville township, MN +station = ('kgfk', 0.0031213962349884248) +zone = ('mnz001', 0.0027654811154780743) + +[fips2711932030] +centroid = (0.83585908782452334, -1.6693293435018421) +description = Johnson township, MN +station = ('kfse', 0.0054201220131418785) +zone = ('mnz016', 0.0038642480097198541) + +[fips2711932948] +centroid = (0.83281477982343965, -1.6827911901955219) +description = Kertsonville township, MN +station = ('kckn', 0.0033013727864438214) +zone = ('mnz001', 0.004066955657746135) + +[fips2711933002] +centroid = (0.83737057786333546, -1.6895658951266481) +description = Keystone township, MN +station = ('kckn', 0.0031350851133204014) +zone = ('mnz001', 0.0025724263632468641) + +[fips2711933254] +centroid = (0.83128637754417578, -1.6733093399682124) +description = King township, MN +station = ('kfse', 0.0013397578807603154) +zone = ('mnz015', 0.00072142324535091115) + +[fips2711933614] +centroid = (0.83116657814431882, -1.675606402703347) +description = Knute township, MN +station = ('kfse', 0.0027764545972980763) +zone = ('mnz015', 0.0011966157630417975) + +[fips2711936404] +centroid = (0.82928907510807093, -1.6691249828997259) +description = Lengby city, MN +station = ('kfse', 0.0021341682645195864) +zone = ('mnz022', 0.0039020630339639192) + +[fips2711936692] +centroid = (0.83276224541295474, -1.6736195547894617) +description = Lessor township, MN +station = ('kfse', 0.002526552476089045) +zone = ('mnz015', 0.0010273942926920313) + +[fips2711936962] +centroid = (0.82965503574562915, -1.6822303286403935) +description = Liberty township, MN +station = ('kckn', 0.006124676368500585) +zone = ('mnz002', 0.0037451929135300698) + +[fips2711938330] +centroid = (0.83435768578878777, -1.687341490448274) +description = Lowell township, MN +station = ('kckn', 0.0010587554894328887) +zone = ('mnz001', 0.00079041033628593472) + +[fips2711939050] +centroid = (0.83142897094406365, -1.6735440343927281) +description = McIntosh city, MN +station = ('kfse', 0.0015474255907220766) +zone = ('mnz015', 0.00050859024959960277) + +[fips2711941714] +centroid = (0.8324620313283192, -1.6780318518582586) +description = Mentor city, MN +station = ('kfse', 0.0047215247751088282) +zone = ('mnz014', 0.0031099565243715576) + +[fips2711945214] +centroid = (0.83585596368516224, -1.6895580411450142) +description = Nesbit township, MN +station = ('kckn', 0.0023132165847756726) +zone = ('mnz001', 0.0014017351064042473) + +[fips2711946258] +centroid = (0.82952673659231513, -1.6897821414209702) +description = Nielsville city, MN +station = ('kckn', 0.0060885312650300677) +zone = ('mnz001', 0.0057093153199270314) + +[fips2711947032] +centroid = (0.83888262640750821, -1.6921774312864071) +description = Northland township, MN +station = ('kgfk', 0.0033348338819058909) +zone = ('mnz001', 0.0047939078163629807) + +[fips2711948418] +centroid = (0.83120249702032489, -1.6820422519601985) +description = Onstad township, MN +station = ('kckn', 0.0048603321970925265) +zone = ('mnz002', 0.0052867049970649607) + +[fips2711949840] +centroid = (0.83585523064687639, -1.6850693161082726) +description = Parnell township, MN +station = ('kckn', 0.0010816219419532125) +zone = ('mnz001', 0.001999446916866366) + +[fips2711952774] +centroid = (0.83138582640495429, -1.6689910986928056) +description = Queen township, MN +station = ('kfse', 0.0018813402621104048) +zone = ('mnz016', 0.0034542694452512281) + +[fips2711953764] +centroid = (0.82977457334609817, -1.6845023459007622) +description = Reis township, MN +station = ('kckn', 0.0054971021207203957) +zone = ('mnz002', 0.0038367829844682547) + +[fips2711953980] +centroid = (0.83576918591475302, -1.693136856229521) +description = Rhinehart township, MN +station = ('kgfk', 0.0023185753581758959) +zone = ('ndz027', 0.0052720007864992553) + +[fips2711955384] +centroid = (0.83281928277290984, -1.6895353693180308) +description = Roome township, MN +station = ('kckn', 0.0031896269206658835) +zone = ('mnz001', 0.002539101767397519) + +[fips2711955564] +centroid = (0.8295969686414153, -1.6709079589036857) +description = Rosebud township, MN +station = ('kfse', 0.0011418763295877436) +zone = ('mnz015', 0.0030613940011364133) + +[fips2711956446] +centroid = (0.83129400463300696, -1.6845027647797826) +description = Russia township, MN +station = ('kckn', 0.0040272587948720516) +zone = ('mnz001', 0.0043940318618487092) + +[fips2711958432] +centroid = (0.84021185171253465, -1.6921886886600825) +description = Sandsville township, MN +station = ('kgfk', 0.0042599161371514151) +zone = ('mnz007', 0.0044058173404248994) + +[fips2711958882] +centroid = (0.82977275820367613, -1.6867558103111822) +description = Scandia township, MN +station = ('kckn', 0.0053768767366486553) +zone = ('mnz002', 0.0043797444797924086) + +[fips2711960880] +centroid = (0.82972264980085142, -1.6733823994507007) +description = Sletten township, MN +station = ('kfse', 0.0015405327950981358) +zone = ('mnz015', 0.0021148668245091007) + +[fips2711962] +centroid = (0.83092568780095866, -1.6896906512615808) +description = Climax city, MN +station = ('kckn', 0.0047986493809063693) +zone = ('mnz001', 0.0043419241246660115) + +[fips2711963310] +centroid = (0.83725198274066237, -1.6916313526700433) +description = Sullivan township, MN +station = ('kgfk', 0.0030607328880734061) +zone = ('mnz001', 0.003354272015846268) + +[fips2711964030] +centroid = (0.83888519204150858, -1.6899132331010873) +description = Tabor township, MN +station = ('kckn', 0.0044664954340436526) +zone = ('mnz001', 0.0040551970184260948) + +[fips2711965344] +centroid = (0.83397568557540369, -1.6702452399334111) +description = Trail city, MN +station = ('kfse', 0.0034407892888838822) +zone = ('mnz016', 0.0036646614131567077) + +[fips2711966064] +centroid = (0.83292538133813854, -1.6911351555637013) +description = Tynsid township, MN +station = ('kckn', 0.003943471840084996) +zone = ('mnz001', 0.003100919047127438) + +[fips2711967198] +centroid = (0.83133917375404864, -1.6893197513422393) +description = Vineland township, MN +station = ('kckn', 0.0043160365373465176) +zone = ('mnz001', 0.0038755851151534028) + +[fips2711970870] +centroid = (0.82968625968594734, -1.6752808115313875) +description = Winger city, MN +station = ('kfse', 0.0026894805041090793) +zone = ('mnz015', 0.0022472033502463789) + +[fips2711970888] +centroid = (0.82977324689586673, -1.6755798736987166) +description = Winger township, MN +station = ('kfse', 0.0028506767045127046) +zone = ('mnz015', 0.002249091122838701) + +[fips2711971662] +centroid = (0.83134465408789981, -1.6782032431908045) +description = Woodside township, MN +station = ('kfse', 0.0045319149702025526) +zone = ('mnz015', 0.0028091379469130794) + +[fips2711980] +centroid = (0.79354925242998975, -1.683241066263516) +description = Clinton city, MN +station = ('kvvv', 0.0028269208530560756) +zone = ('mnz046', 0.0008123695729578633) + +[fips2712088] +centroid = (0.80762809046754225, -1.6691160468139556) +description = Clitherall city, MN +station = ('ky63', 0.0066034482749549499) +zone = ('mnz031', 0.0031584794112026514) + +[fips27121] +centroid = (0.7956890260929349, -1.6658592624297341) +description = Pope County, MN +station = ('kghw', 0.0019053246852488797) +zone = ('mnz048', 6.872978030074913e-05) + +[fips2712103502] +centroid = (0.79474201044080262, -1.6612857143913458) +description = Bangor township, MN +station = ('kghw', 0.0025695055126574501) +zone = ('mnz048', 0.0032959386962694514) + +[fips2712103754] +centroid = (0.79492197133997577, -1.6655443526727971) +description = Barsness township, MN +station = ('kghw', 0.002277271278903017) +zone = ('mnz048', 0.00072994215921333807) + +[fips2712105302] +centroid = (0.79776532213098483, -1.6680674180927726) +description = Ben Wade township, MN +station = ('kaxn', 0.0034722895901591147) +zone = ('mnz048', 0.0026541024435836999) + +[fips2712106760] +centroid = (0.79483997577171717, -1.667601816608218) +description = Blue Mounds township, MN +station = ('kghw', 0.0033914783910182662) +zone = ('mnz048', 0.0014738936850883367) + +[fips2712108092] +centroid = (0.79428555448152871, -1.6603785271527443) +description = Brooten city, MN +station = ('kghw', 0.0033300842711951957) +zone = ('mnz048', 0.0040400742913499783) + +[fips2712111332] +centroid = (0.79487893152062161, -1.663726958775988) +description = Chippewa Falls township, MN +station = ('kghw', 0.0018663459909073253) +zone = ('mnz048', 0.0016451873747114587) + +[fips2712114446] +centroid = (0.79612682448250516, -1.6709413994121538) +description = Cyrus city, MN +station = ('kmox', 0.0029172429022112493) +zone = ('mnz047', 0.0032430410631324657) + +[fips2712120690] +centroid = (0.79853591990232542, -1.6688588725486746) +description = Farwell city, MN +station = ('kaxn', 0.0033203063383511382) +zone = ('mnz048', 0.0036022232768399319) + +[fips2712123750] +centroid = (0.79314835030080666, -1.6639049125465211) +description = Gilchrist township, MN +station = ('kghw', 0.0036012269384765308) +zone = ('mnz048', 0.0028177996789769074) + +[fips2712124] +centroid = (0.79201137301288749, -1.6699215511703362) +description = Clontarf city, MN +station = ('kbbb', 0.0011448479705341388) +zone = ('mnz055', 0.0016793330514460443) + +[fips2712124074] +centroid = (0.79694794953569092, -1.6647745228463273) +description = Glenwood city, MN +station = ('kghw', 0.00085320529153560555) +zone = ('mnz048', 0.0015111269005927464) + +[fips2712124092] +centroid = (0.79632406414127299, -1.6639934007395973) +description = Glenwood township, MN +station = ('kghw', 0.00050500384057423258) +zone = ('mnz048', 0.0014566810163285471) + +[fips2712126162] +centroid = (0.79637956561148637, -1.6612921197497008) +description = Grove Lake township, MN +station = ('kghw', 0.0016469297144718503) +zone = ('mnz048', 0.0032565420486820487) + +[fips2712129456] +centroid = (0.79340850907910898, -1.6699006072193123) +description = Hoff township, MN +station = ('kbbb', 0.0025075062228839054) +zone = ('mnz055', 0.0030765412534036838) + +[fips2712134586] +centroid = (0.79331529104375986, -1.6611922869164863) +description = Lake Johanna township, MN +station = ('kghw', 0.0038165681161298937) +zone = ('mnz048', 0.0039818975208420386) + +[fips2712135504] +centroid = (0.79332009069920295, -1.6680505058523207) +description = Langhei township, MN +station = ('kbbb', 0.0025776945367859756) +zone = ('mnz048', 0.0027851366451023319) + +[fips2712136764] +centroid = (0.79781593667929274, -1.6639728233077165) +description = Leven township, MN +station = ('kghw', 0.0011060179049431668) +zone = ('mnz048', 0.0025427410940764179) + +[fips2712137970] +centroid = (0.79672350019388438, -1.6655408445610005) +description = Long Beach city, MN +station = ('kghw', 0.0013641014309854979) +zone = ('mnz048', 0.001115032918612262) + +[fips2712138366] +centroid = (0.79770496864545093, -1.6670954616856293) +description = Lowry city, MN +station = ('kaxn', 0.0031615223028323013) +zone = ('mnz048', 0.002262095182356638) + +[fips2712143342] +centroid = (0.79662049086143172, -1.6661774359523729) +description = Minnewaska township, MN +station = ('kghw', 0.001813197089574438) +zone = ('mnz048', 0.0010255059698597384) + +[fips2712145844] +centroid = (0.7965029952961874, -1.6700434798718804) +description = New Prairie township, MN +station = ('kmox', 0.0036310217123068289) +zone = ('mnz047', 0.0039306102524064041) + +[fips2712146456] +centroid = (0.79789318495198602, -1.6702267045367547) +description = Nora township, MN +station = ('kaxn', 0.0044700950514045832) +zone = ('mnz048', 0.0038244748518123043) + +[fips2712153854] +centroid = (0.79808332112069824, -1.6659775259398495) +description = Reno township, MN +station = ('kghw', 0.002139958684308984) +zone = ('mnz048', 0.0024599692813135725) + +[fips2712155240] +centroid = (0.79346741394136378, -1.6656348305412205) +description = Rolling Forks township, MN +station = ('kghw', 0.0035747616273000471) +zone = ('mnz048', 0.0021623069260091592) + +[fips2712159188] +centroid = (0.79549133264856142, -1.6623336275275358) +description = Sedan city, MN +station = ('kghw', 0.0015290798698691464) +zone = ('mnz048', 0.0024443079147686564) + +[fips2712160] +centroid = (0.81550615764519419, -1.6144530327731941) +description = Cloquet city, MN +station = ('kcoq', 0.00043769301229097391) +zone = ('mnz037', 0.0010497298355612171) + +[fips2712162500] +centroid = (0.79608022419147684, -1.6673708571883017) +description = Starbuck city, MN +station = ('kghw', 0.002725850733974149) +zone = ('mnz048', 0.0011759090263853084) + +[fips2712167144] +centroid = (0.79786632433479776, -1.6627717575296637) +description = Villard city, MN +station = ('kghw', 0.0012604844835178491) +zone = ('mnz048', 0.0030923692470649303) + +[fips2712167702] +centroid = (0.79480192759402357, -1.6701134326683003) +description = Walden township, MN +station = ('kbbb', 0.0039084217319188177) +zone = ('mnz047', 0.0038751972398087999) + +[fips2712169628] +centroid = (0.79786292094275635, -1.6609950123511334) +description = Westport city, MN +station = ('kghw', 0.00213087663284716) +zone = ('mnz048', 0.004047778447359862) + +[fips2712169646] +centroid = (0.79793826680656488, -1.6615433249889402) +description = Westport township, MN +station = ('kghw', 0.0018635668702921433) +zone = ('mnz048', 0.0037798870608967052) + +[fips2712169952] +centroid = (0.79648665901438875, -1.6679600454371899) +description = White Bear Lake township, MN +station = ('kghw', 0.0030661852932046332) +zone = ('mnz048', 0.0017264268883963611) + +[fips27123] +centroid = (0.78566432610837744, -1.624903994520966) +description = Ramsey County, MN +station = ('kstp', 0.0015579962306093561) +zone = ('mnz062', 3.3557944354354763e-05) + +[fips2712302026] +centroid = (0.78664015714645996, -1.6260447940799472) +description = Arden Hills city, MN +station = ('kane', 0.0015134474753421732) +zone = ('mnz062', 0.0012469146539852364) + +[fips2712306382] +centroid = (0.78751273450599457, -1.6265611497391497) +description = Blaine city, MN +station = ('kane', 0.00056922153269680135) +zone = ('mnz062', 0.0021655302832145383) + +[fips2712320420] +centroid = (0.78518956164524989, -1.6262056087172259) +description = Falcon Heights city, MN +station = ('kstp', 0.0018122580087505851) +zone = ('mnz062', 0.001058792733677345) + +[fips2712323318] +centroid = (0.78646400106505621, -1.6238205988410832) +description = Gem Lake city, MN +station = ('kstp', 0.0022342498339753057) +zone = ('mnz062', 0.0010775181315708714) + +[fips2712335738] +centroid = (0.78530054713238429, -1.6267015614774727) +description = Lauderdale city, MN +station = ('kstp', 0.0021707983301908007) +zone = ('mnz062', 0.0013399607812937038) + +[fips2712337502] +centroid = (0.78580084576246845, -1.6246202039845918) +description = Little Canada city, MN +station = ('kstp', 0.0016211305092794545) +zone = ('mnz062', 0.0002179915775002317) + +[fips2712340382] +centroid = (0.78573003775471506, -1.6236983036203958) +description = Maplewood city, MN +station = ('kstp', 0.001513599885840954) +zone = ('mnz062', 0.0008438036034391635) + +[fips2712344530] +centroid = (0.78726107548114954, -1.6267661386597965) +description = Mounds View city, MN +station = ('kane', 0.00076472736299160822) +zone = ('mnz062', 0.0020498032087551774) + +[fips2712345430] +centroid = (0.78653077736223753, -1.6268086723336677) +description = New Brighton city, MN +station = ('kane', 0.0014881709899926244) +zone = ('mnz062', 0.0015911665107371448) + +[fips2712347104] +centroid = (0.78714022888374136, -1.6249737378778757) +description = North Oaks city, MN +station = ('kane', 0.0016393640661203847) +zone = ('mnz062', 0.0014447950088152504) + +[fips2712347221] +centroid = (0.78563601686791007, -1.6231678282475446) +description = North St. Paul city, MN +station = ('kstp', 0.0015280635138846157) +zone = ('mnz063', 0.0015033837922932068) + +[fips2712355852] +centroid = (0.78566732807469086, -1.6258616566815354) +description = Roseville city, MN +station = ('kstp', 0.001932287669460971) +zone = ('mnz062', 0.00068674427643770355) + +[fips2712356680] +centroid = (0.78611573806611323, -1.6270100833293477) +description = St. Anthony city, MN +station = ('kmic', 0.0016541207786880557) +zone = ('mnz062', 0.0015551556888997197) + +[fips2712358000] +centroid = (0.78450577655090359, -1.6249688160493851) +description = St. Paul city, MN +station = ('kstp', 0.00071846323719806135) +zone = ('mnz062', 0.001192107446956977) + +[fips2712359998] +centroid = (0.78687547988950635, -1.625499849927597) +description = Shoreview city, MN +station = ('kane', 0.0015266599382032951) +zone = ('mnz062', 0.0012548727314267243) + +[fips2712361996] +centroid = (0.78737207842157642, -1.6270983969894985) +description = Spring Lake Park city, MN +station = ('kane', 0.00065397390829226494) +zone = ('mnz062', 0.0022886250774879222) + +[fips2712366460] +centroid = (0.78636455220427759, -1.6244189849751294) +description = Vadnais Heights city, MN +station = ('kstp', 0.0021477340451336474) +zone = ('mnz062', 0.00074661083458986996) + +[fips2712369916] +centroid = (0.78716694987458935, -1.623588679490078) +description = White Bear township, MN +station = ('kstp', 0.0029488028617992057) +zone = ('mnz062', 0.0017344253381773591) + +[fips2712369970] +centroid = (0.78653636241584379, -1.6233808456827508) +description = White Bear Lake city, MN +station = ('kstp', 0.0023469200325990109) +zone = ('mnz062', 0.001357907815234586) + +[fips2712376] +centroid = (0.78044031131106306, -1.6237168739236372) +description = Coates city, MN +station = ('ksgs', 0.002465923063831049) +zone = ('mnz070', 0.00087515604530774452) + +[fips2712394] +centroid = (0.77287584489340955, -1.6553842500448699) +description = Cobden city, MN +station = ('kulm', 0.0043694376785476143) +zone = ('mnz074', 0.0016443453652699796) + +[fips2712412] +centroid = (0.82453640392855021, -1.6347504614823101) +description = Cohasset city, MN +station = ('kgpz', 0.0018067216852992475) +zone = ('mnz026', 0.0022719426999619984) + +[fips2712430] +centroid = (0.78673719745287085, -1.6438828269802002) +description = Cokato city, MN +station = ('kmgg', 0.003730852362004303) +zone = ('mnz059', 0.0032438879176799047) + +[fips2712484] +centroid = (0.79338175318167581, -1.648110171508163) +description = Cold Spring city, MN +station = ('kstc', 0.0049182883686848628) +zone = ('mnz049', 0.0027857148942277113) + +[fips27125] +centroid = (0.83541034622054311, -1.6770376599564452) +description = Red Lake County, MN +station = ('ktvf', 0.0036866628580516465) +zone = ('mnz014', 0.00014421213557171933) + +[fips2712502] +centroid = (0.82497477827677368, -1.6310510790530752) +description = Coleraine city, MN +station = ('kgpz', 0.001170604034452385) +zone = ('mnz026', 0.00029390999827074235) + +[fips2712508038] +centroid = (0.83455735145521592, -1.6755757023618045) +description = Brooks city, MN +station = ('kfse', 0.0047502539562553955) +zone = ('mnz014', 0.0014431873280558879) + +[fips2712508146] +centroid = (0.83685985961761689, -1.6805411989903134) +description = Browns Creek township, MN +station = ('ktvf', 0.0023962704656422858) +zone = ('mnz014', 0.0026222784195451304) + +[fips2712519196] +centroid = (0.83610095555226471, -1.6760600835891106) +description = Emardville township, MN +station = ('ktvf', 0.0033340138664884286) +zone = ('mnz014', 0.00094988789566711042) + +[fips2712519502] +centroid = (0.83600124489209826, -1.6713877324617665) +description = Equality township, MN +station = ('kfse', 0.0053518262492358651) +zone = ('mnz015', 0.0045904412922214569) + +[fips2712523174] +centroid = (0.8361212537314654, -1.6738092546258612) +description = Garnes township, MN +station = ('ktvf', 0.0043158578599013708) +zone = ('mnz014', 0.0023388315777495877) + +[fips2712523588] +centroid = (0.83584540444318767, -1.678310580939802) +description = Gervais township, MN +station = ('ktvf', 0.0030881288980775311) +zone = ('mnz014', 0.00082598580559956807) + +[fips2712534820] +centroid = (0.83433028411953136, -1.6805417749489666) +description = Lake Pleasant township, MN +station = ('ktvf', 0.0047514854995103356) +zone = ('mnz014', 0.0025507563795744257) + +[fips2712535270] +centroid = (0.83433447290973617, -1.6738155029045831) +description = Lambert township, MN +station = ('kfse', 0.0039843175962802988) +zone = ('mnz014', 0.0025496845391666861) + +[fips2712538276] +centroid = (0.83587502268059399, -1.6828555928449205) +description = Louisville township, MN +station = ('kckn', 0.0024111389260092807) +zone = ('mnz001', 0.0034218050995600854) + +[fips2712548202] +centroid = (0.8349479212352271, -1.6729119808574109) +description = Oklee city, MN +station = ('kfse', 0.0043924654178494936) +zone = ('mnz014', 0.0029197935992255498) + +[fips2712551712] +centroid = (0.83627845553719249, -1.676260569560287) +description = Plummer city, MN +station = ('ktvf', 0.0031122749174041274) +zone = ('mnz014', 0.00097808367323518487) + +[fips2712552000] +centroid = (0.83432832935076917, -1.67607275467948) +description = Poplar River township, MN +station = ('kfse', 0.0047696935310116489) +zone = ('mnz014', 0.0014031894591529841) + +[fips2712553476] +centroid = (0.83573298778606664, -1.6802813892778616) +description = Red Lake Falls city, MN +station = ('ktvf', 0.0033564284859176176) +zone = ('mnz014', 0.0020915564703408132) + +[fips2712553494] +centroid = (0.83635952608094766, -1.6811433026756666) +description = Red Lake Falls township, MN +station = ('ktvf', 0.0030336713740346578) +zone = ('mnz014', 0.0027875432047318894) + +[fips2712554538] +centroid = (0.83686125588101856, -1.6783106507529721) +description = River township, MN +station = ('ktvf', 0.002078096086230928) +zone = ('mnz014', 0.0015418259641974139) + +[fips2712564498] +centroid = (0.83432501322519037, -1.6783022557192702) +description = Terrebonne township, MN +station = ('ktvf', 0.0046049251833698585) +zone = ('mnz014', 0.0014117972510526919) + +[fips2712571986] +centroid = (0.83686638714901929, -1.682804524511007) +description = Wylie township, MN +station = ('ktvf', 0.0034214767002952993) +zone = ('mnz001', 0.0038056907102511028) + +[fips2712664] +centroid = (0.78138134048386088, -1.6369684957089143) +description = Cologne city, MN +station = ('kgyl', 0.0035983572567381216) +zone = ('mnz068', 0.00089978426913861389) + +[fips27127] +centroid = (0.77498790272783291, -1.6625001493914686) +description = Redwood County, MN +station = ('krwf', 0.0033263651812279046) +zone = ('mnz073', 5.1359960062402513e-06) + +[fips2712700] +centroid = (0.78625518987334764, -1.6274627868307299) +description = Columbia Heights city, MN +station = ('kmic', 0.0013093529860238309) +zone = ('mnz062', 0.0019013335290260596) + +[fips2712705050] +centroid = (0.77853346929008926, -1.6638027060655245) +description = Belview city, MN +station = ('kgdb', 0.0038025932375119497) +zone = ('mnz073', 0.0036635577780497761) + +[fips2712708074] +centroid = (0.77350412851754236, -1.656761035572013) +description = Brookville township, MN +station = ('krwf', 0.0044939200874261481) +zone = ('mnz074', 0.0028075877865893204) + +[fips2712710936] +centroid = (0.77223115517430785, -1.6612800071646916) +description = Charlestown township, MN +station = ('ktkc', 0.0052874447695593161) +zone = ('mnz073', 0.002893082859451091) + +[fips2712711836] +centroid = (0.77457782016678423, -1.6590181826271546) +description = Clements city, MN +station = ('krwf', 0.0029876663787865325) +zone = ('mnz073', 0.0025179422852788721) + +[fips2712715544] +centroid = (0.77838054354102948, -1.6617846516646133) +description = Delhi city, MN +station = ('krwf', 0.001818880674821422) +zone = ('mnz073', 0.0034273457004284445) + +[fips2712715562] +centroid = (0.77820903003543607, -1.6613314594710404) +description = Delhi township, MN +station = ('krwf', 0.0014534414244124633) +zone = ('mnz073', 0.0033234140468180696) + +[fips2712718] +centroid = (0.78986187786600881, -1.6251262796545001) +description = Columbus city, MN +station = ('kane', 0.0022440538720865824) +zone = ('mnz061', 0.0016682583280451392) + +[fips2712723048] +centroid = (0.77374446035554201, -1.6673568247411157) +description = Gales township, MN +station = ('ktkc', 0.0017292167906841007) +zone = ('mnz072', 0.004077915276161085) + +[fips2712725316] +centroid = (0.77552181639931039, -1.6657742648951621) +description = Granite Rock township, MN +station = ('ktkc', 0.0038359108279983592) +zone = ('mnz073', 0.0024022069709940213) + +[fips2712730068] +centroid = (0.7778044976214088, -1.6591993478035116) +description = Honner township, MN +station = ('krwf', 0.00034506446597098751) +zone = ('mnz065', 0.0031823072921188756) + +[fips2712732048] +centroid = (0.77351650290193907, -1.6654049706787328) +description = Johnsonville township, MN +station = ('ktkc', 0.0026343798178156139) +zone = ('mnz073', 0.0025503354616882592) + +[fips2712733434] +centroid = (0.77812225226502685, -1.6632654239085904) +description = Kintire township, MN +station = ('krwf', 0.0027321993512490011) +zone = ('mnz073', 0.0031794462231551626) + +[fips2712735288] +centroid = (0.77196953031943383, -1.6627319814760111) +description = Lamberton city, MN +station = ('ktkc', 0.0042595557055620896) +zone = ('mnz073', 0.0030260217937632598) + +[fips2712735306] +centroid = (0.77205438822766581, -1.6630333125713677) +description = Lamberton township, MN +station = ('ktkc', 0.0040383349454432352) +zone = ('mnz073', 0.0029616029065566442) + +[fips2712738420] +centroid = (0.77510391476321294, -1.665270039274261) +description = Lucan city, MN +station = ('ktkc', 0.0037159195127242648) +zone = ('mnz073', 0.0019862651899034698) + +[fips2712742362] +centroid = (0.775234029058949, -1.6677224886727009) +description = Milroy city, MN +station = ('ktkc', 0.003020734779915402) +zone = ('mnz072', 0.0035604385829928089) + +[fips2712744116] +centroid = (0.77520301455814111, -1.6567524136455083) +description = Morgan city, MN +station = ('krwf', 0.0030613957009284157) +zone = ('mnz074', 0.0039064339813793736) + +[fips2712744134] +centroid = (0.77477539143811003, -1.6571219696613255) +description = Morgan township, MN +station = ('krwf', 0.0032538944506715741) +zone = ('mnz074', 0.0037715029796071505) + +[fips2712745412] +centroid = (0.77521790221666065, -1.6608194496816755) +description = New Avon township, MN +station = ('krwf', 0.0025049456308250274) +zone = ('mnz073', 0.0012177117180420501) + +[fips2712746996] +centroid = (0.77225803324478859, -1.6654100670401486) +description = North Hero township, MN +station = ('ktkc', 0.0023287997784761979) +zone = ('mnz073', 0.0034378924863982339) + +[fips2712749894] +centroid = (0.7768048428390365, -1.6587109348656337) +description = Paxton township, MN +station = ('krwf', 0.00093649576091564166) +zone = ('mnz073', 0.0032531998599009556) + +[fips2712753656] +centroid = (0.77747194258573382, -1.6598872169683079) +description = Redwood Falls city, MN +station = ('krwf', 0.00027339265908313596) +zone = ('mnz073', 0.0031010739423156051) + +[fips2712753674] +centroid = (0.7766315490976059, -1.6612746664571807) +description = Redwood Falls township, MN +station = ('krwf', 0.00155011428272633) +zone = ('mnz073', 0.0018574271640736145) + +[fips2712753908] +centroid = (0.77181224124724412, -1.6643671629989119) +description = Revere city, MN +station = ('ktkc', 0.003113016640968449) +zone = ('mnz073', 0.0034495101930002983) + +[fips2712758306] +centroid = (0.77159604731279963, -1.6603282965768718) +description = Sanborn city, MN +station = ('kmwm', 0.0051701046025989838) +zone = ('mnz081', 0.0035855824887537175) + +[fips2712759098] +centroid = (0.77626686255040178, -1.6638196706658539) +description = Seaforth city, MN +station = ('krwf', 0.0033232857019089815) +zone = ('mnz073', 0.0015887257267340896) + +[fips2712759656] +centroid = (0.77649677477276691, -1.6629636390276281) +description = Sheridan township, MN +station = ('krwf', 0.0026712217504229387) +zone = ('mnz073', 0.0015428507637934017) + +[fips2712759692] +centroid = (0.7764877165139491, -1.6569525156442493) +description = Sherman township, MN +station = ('krwf', 0.002111902299558883) +zone = ('mnz065', 0.0041443861759172546) + +[fips2712761798] +centroid = (0.77213228227218234, -1.6674089053659951) +description = Springdale township, MN +station = ('ktkc', 0.00091038739810953657) +zone = ('mnz080', 0.0047528545343540514) + +[fips2712763526] +centroid = (0.77350589130008696, -1.6590565624174061) +description = Sundown township, MN +station = ('krwf', 0.0040516653238948045) +zone = ('mnz073', 0.0028714457311190566) + +[fips2712763868] +centroid = (0.77928982517473355, -1.6635885890728896) +description = Swedes Forest township, MN +station = ('krwf', 0.0033839256905688797) +zone = ('mnz073', 0.0043692870784766032) + +[fips2712764822] +centroid = (0.77527855240816745, -1.6588065789086428) +description = Three Lakes township, MN +station = ('krwf', 0.0023216647169590236) +zone = ('mnz073', 0.0026498258916207123) + +[fips2712766190] +centroid = (0.77673750803649444, -1.6675501025024815) +description = Underwood township, MN +station = ('kgdb', 0.0043533218269284574) +zone = ('mnz072', 0.0040032660162826446) + +[fips2712766478] +centroid = (0.77503760970492963, -1.6633023725288552) +description = Vail township, MN +station = ('krwf', 0.0036846994469655293) +zone = ('mnz073', 0.00057927865406866416) + +[fips2712766982] +centroid = (0.77678539987116935, -1.6652881208853119) +description = Vesta city, MN +station = ('kgdb', 0.0046495356902389135) +zone = ('mnz073', 0.0026829075037378735) + +[fips2712767000] +centroid = (0.77657864816797795, -1.6649783074897901) +description = Vesta township, MN +station = ('kgdb', 0.0049261029151195625) +zone = ('mnz073', 0.0023803640623673819) + +[fips2712767396] +centroid = (0.77496941969105415, -1.662520848996397) +description = Wabasso city, MN +station = ('krwf', 0.0033500323341984204) +zone = ('mnz073', 2.8611921345903075e-05) + +[fips2712767846] +centroid = (0.77187008145865521, -1.6662534799478823) +description = Walnut Grove city, MN +station = ('ktkc', 0.0017748624098412854) +zone = ('mnz073', 0.0041199419881288116) + +[fips2712768008] +centroid = (0.77341157370730906, -1.661789643306274) +description = Wanda city, MN +station = ('krwf', 0.0044397734140357329) +zone = ('mnz073', 0.0016575852294098406) + +[fips2712768494] +centroid = (0.77348102035824595, -1.6632520023266426) +description = Waterbury township, MN +station = ('ktkc', 0.0040515474566880398) +zone = ('mnz073', 0.001604021764826178) + +[fips2712769538] +centroid = (0.77530117187527325, -1.6673558822633194) +description = Westline township, MN +station = ('ktkc', 0.0031536576033708618) +zone = ('mnz072', 0.0038239808339324351) + +[fips2712770474] +centroid = (0.77365616414868355, -1.6608880934811565) +description = Willow Lake township, MN +station = ('krwf', 0.0040093292206286333) +zone = ('mnz073', 0.0017605343718311997) + +[fips2712772] +centroid = (0.76988342553098765, -1.6563774994688873) +description = Comfrey city, MN +station = ('kmwm', 0.0043124293337320607) +zone = ('mnz074', 0.0031731712940770954) + +[fips2712862] +centroid = (0.81436106457625324, -1.6885428354790066) +description = Comstock city, MN +station = ('kjkj', 0.003291083336978686) +zone = ('mnz003', 0.0050869456538993564) + +[fips27129] +centroid = (0.78057576631431047, -1.6572881599127005) +description = Renville County, MN +station = ('kovl', 0.0013539873920142555) +zone = ('mnz065', 0.00011758815144384936) + +[fips2712903484] +centroid = (0.77817208141517136, -1.6547938575187977) +description = Bandon township, MN +station = ('kovl', 0.0043315460243882513) +zone = ('mnz065', 0.0029713914963822897) + +[fips2712904546] +centroid = (0.77829816400033547, -1.6589496435474291) +description = Beaver Falls township, MN +station = ('krwf', 0.00085555553840520966) +zone = ('mnz065', 0.0026630133773604637) + +[fips2712905968] +centroid = (0.77773728499191452, -1.6569895864375617) +description = Birch Cooley township, MN +station = ('krwf', 0.001811446983186435) +zone = ('mnz065', 0.0028946510020413404) + +[fips2712906076] +centroid = (0.78129129894775051, -1.6562304903859917) +description = Bird Island city, MN +station = ('kovl', 0.0017241109360531233) +zone = ('mnz065', 0.00092511856898797962) + +[fips2712906094] +centroid = (0.78119853469800704, -1.6569224436212375) +description = Bird Island township, MN +station = ('kovl', 0.0012612271181077805) +zone = ('mnz065', 0.00058946778568424855) + +[fips2712906976] +centroid = (0.78263623221604472, -1.6504172175266194) +description = Boon Lake township, MN +station = ('khcd', 0.0022522325530527909) +zone = ('mnz058', 0.0049289110370130222) + +[fips2712907912] +centroid = (0.78299796915681319, -1.6525050676443176) +description = Brookfield township, MN +station = ('kovl', 0.0045877557974336458) +zone = ('mnz065', 0.004053611634738343) + +[fips2712908488] +centroid = (0.78081105415077179, -1.6513970279153964) +description = Buffalo Lake city, MN +station = ('khcd', 0.0036822209119064002) +zone = ('mnz067', 0.0055258532722082185) + +[fips2712909208] +centroid = (0.77639275314934819, -1.6524004700622454) +description = Cairo township, MN +station = ('kulm', 0.0036504220781546476) +zone = ('mnz074', 0.0042722424941669087) + +[fips2712909478] +centroid = (0.7767775458895354, -1.6545630726318066) +description = Camp township, MN +station = ('krwf', 0.0036141001524844138) +zone = ('mnz065', 0.0042671781348789847) + +[fips2712913852] +centroid = (0.78273723441985776, -1.6611812215290289) +description = Crooks township, MN +station = ('kovl', 0.0021703457828650308) +zone = ('mnz065', 0.0035583744968833617) + +[fips2712914716] +centroid = (0.78175112339248098, -1.6598680532531207) +description = Danube city, MN +station = ('kovl', 0.00090174194983153543) +zone = ('mnz065', 0.0022374279257593751) + +[fips2712919322] +centroid = (0.78119209443306725, -1.6611565774799908) +description = Emmet township, MN +station = ('kovl', 0.0018226897817473788) +zone = ('mnz065', 0.0029068503808797018) + +[fips2712919628] +centroid = (0.78277680103400038, -1.6631847024306856) +description = Ericson township, MN +station = ('kovl', 0.0034585636741926999) +zone = ('mnz056', 0.0045223426718847539) + +[fips2712920222] +centroid = (0.77716603872773671, -1.6532318576514329) +description = Fairfax city, MN +station = ('kulm', 0.0046248251834874535) +zone = ('mnz065', 0.0044429160604536931) + +[fips2712921374] +centroid = (0.77958656605415755, -1.6610725747830923) +description = Flora township, MN +station = ('krwf', 0.0023232323331930315) +zone = ('mnz065', 0.0029829480124277251) + +[fips2712922364] +centroid = (0.77721300553790784, -1.6560572664577313) +description = Franklin city, MN +station = ('krwf', 0.0024882425180303186) +zone = ('mnz065', 0.0035029209177534961) + +[fips2712927728] +centroid = (0.78134994201061747, -1.6652604748699602) +description = Hawk Creek township, MN +station = ('kgdb', 0.0017967502323983898) +zone = ('mnz056', 0.0048296679846695787) + +[fips2712928124] +centroid = (0.78089552808656826, -1.6530614786098534) +description = Hector city, MN +station = ('kovl', 0.0040086361471057715) +zone = ('mnz065', 0.0029103235850742918) + +[fips2712928142] +centroid = (0.78123413941474762, -1.6526502266782057) +description = Hector township, MN +station = ('kovl', 0.0042593129347579172) +zone = ('mnz065', 0.0032465080640604405) + +[fips2712928610] +centroid = (0.77968118035290812, -1.6590391440314713) +description = Henryville township, MN +station = ('kovl', 0.0018751473283299424) +zone = ('mnz065', 0.001649238387257157) + +[fips2712933290] +centroid = (0.78274466952247124, -1.656928028674844) +description = Kingman township, MN +station = ('kovl', 0.0017121290915496799) +zone = ('mnz065', 0.002120153451979241) + +[fips2712940832] +centroid = (0.77969423541571314, -1.6526634911805209) +description = Martinsburg township, MN +station = ('kovl', 0.0046243569463577106) +zone = ('mnz065', 0.003317479767632526) + +[fips2712941624] +centroid = (0.7812217824836436, -1.6548028459644457) +description = Melville township, MN +station = ('kovl', 0.0027383999881586013) +zone = ('mnz065', 0.0017631875502708623) + +[fips2712944368] +centroid = (0.77762205835469778, -1.6577952304202823) +description = Morton city, MN +station = ('krwf', 0.0012295850876587813) +zone = ('mnz065', 0.0030436455735817392) + +[fips2712946600] +centroid = (0.77969182686134542, -1.6569210124512508) +description = Norfolk township, MN +station = ('kovl', 0.0022084019556089145) +zone = ('mnz065', 0.00095106969405712137) + +[fips2712948256] +centroid = (0.78150880187913396, -1.6580211283853681) +description = Olivia city, MN +station = ('kovl', 0.00043639926647912232) +zone = ('mnz065', 0.001078362527183992) + +[fips2712948868] +centroid = (0.78274981824376466, -1.654804643653575) +description = Osceola township, MN +station = ('kovl', 0.0029767109858666657) +zone = ('mnz065', 0.002691481222820616) + +[fips2712949606] +centroid = (0.77969838929933277, -1.6548016416872615) +description = Palmyra township, MN +station = ('kovl', 0.0032843967558424019) +zone = ('mnz065', 0.0019061220118413151) + +[fips2712952] +centroid = (0.7612178134349582, -1.6323793793335979) +description = Conger city, MN +station = ('kael', 0.0023695614780087229) +zone = ('mnz093', 0.0024922124259287122) + +[fips2712952486] +centroid = (0.7811715693610638, -1.6505038556706884) +description = Preston Lake township, MN +station = ('khcd', 0.002962139191947643) +zone = ('mnz066', 0.0038236429976623281) + +[fips2712953656] +centroid = (0.77789289854802235, -1.6595061417794272) +description = Redwood Falls city, MN +station = ('krwf', 0.00034880627763912443) +zone = ('mnz065', 0.0032127812863580177) + +[fips2712953890] +centroid = (0.78169282939546436, -1.6618044611516236) +description = Renville city, MN +station = ('kovl', 0.0022552912365674787) +zone = ('mnz065', 0.0034777330741373701) + +[fips2712956572] +centroid = (0.78158795256071201, -1.6641849157184188) +description = Sacred Heart city, MN +station = ('kgdb', 0.0025896697034064231) +zone = ('mnz056', 0.004975354269694132) + +[fips2712956590] +centroid = (0.78086084839433123, -1.6631684185087645) +description = Sacred Heart township, MN +station = ('kovl', 0.00328880798759126) +zone = ('mnz073', 0.0058897004157204697) + +[fips2712965632] +centroid = (0.78107486066721077, -1.6591322922536502) +description = Troy township, MN +station = ('kovl', 0.00057941233834703731) +zone = ('mnz065', 0.0014825997726132657) + +[fips2712968026] +centroid = (0.78273091632796554, -1.665431098257635) +description = Wang township, MN +station = ('kgdb', 0.0023320819383912) +zone = ('mnz056', 0.0035392341465995962) + +[fips2712969088] +centroid = (0.7782810597736658, -1.6528232586202487) +description = Wellington township, MN +station = ('kovl', 0.0052588664623315906) +zone = ('mnz065', 0.0038665858496958788) + +[fips2712970852] +centroid = (0.78261274008431292, -1.6591353465798411) +description = Winfield township, MN +station = ('kovl', 0.0011354838582334861) +zone = ('mnz065', 0.0024361393095574009) + +[fips2713006] +centroid = (0.83496841140064559, -1.6177020329889518) +description = Cook city, MN +station = ('kcqm', 0.00031884197166544097) +zone = ('mnz011', 0.0055329261525949225) + +[fips27131] +centroid = (0.7740699817143315, -1.628366064531807) +description = Rice County, MN +station = ('kfbl', 0.00038192314447953158) +zone = ('mnz077', 6.0000435476506392e-05) + +[fips2713107714] +centroid = (0.77532513524590319, -1.6271915626649702) +description = Bridgewater township, MN +station = ('kfbl', 0.0018915240202452871) +zone = ('mnz077', 0.0014509646710926202) + +[fips2713109712] +centroid = (0.7738224765731061, -1.6268046755296803) +description = Cannon City township, MN +station = ('kfbl', 0.0013448898190085723) +zone = ('mnz077', 0.0011339784069517612) + +[fips2713114] +centroid = (0.78847711618418403, -1.6285921021232328) +description = Coon Rapids city, MN +station = ('kane', 0.0012542430746578103) +zone = ('mnz061', 0.0018690117473965542) + +[fips2713115706] +centroid = (0.77507405217971137, -1.6238655759759071) +description = Dennison city, MN +station = ('ksyn', 0.0012053903376637732) +zone = ('mnz078', 0.003966676967939081) + +[fips2713117126] +centroid = (0.7754077242261076, -1.6267096947117869) +description = Dundas city, MN +station = ('kfbl', 0.0021669210662702094) +zone = ('mnz077', 0.0017293055196551678) + +[fips2713119682] +centroid = (0.7750333511015548, -1.6313751866951705) +description = Erin township, MN +station = ('kfbl', 0.002306111713674357) +zone = ('mnz077', 0.0023564770152680677) + +[fips2713120546] +centroid = (0.77315612731798722, -1.6280245908636544) +description = Faribault city, MN +station = ('kfbl', 0.00076800523782837027) +zone = ('mnz077', 0.0009937313389267947) + +[fips2713121680] +centroid = (0.77515814214307244, -1.6290759597517634) +description = Forest township, MN +station = ('kfbl', 0.0014234835005105175) +zone = ('mnz077', 0.0011615758476777025) + +[fips2713138150] +centroid = (0.77627941146772361, -1.6304910901625729) +description = Lonsdale city, MN +station = ('kfbl', 0.0028288741727507177) +zone = ('mnz077', 0.0026490790954664376) + +[fips2713144296] +centroid = (0.7718654039762598, -1.6309269163300883) +description = Morristown city, MN +station = ('kfbl', 0.0024860076872336699) +zone = ('mnz077', 0.0029247525770081848) + +[fips2713144314] +centroid = (0.77223124244077035, -1.631357279617045) +description = Morristown township, MN +station = ('kfbl', 0.0024514295314128362) +zone = ('mnz077', 0.0028761036128877948) + +[fips2713145196] +centroid = (0.77393056481368216, -1.6242698465905465) +description = Nerstrand city, MN +station = ('ksyn', 0.0023848008914469981) +zone = ('mnz077', 0.0029119612949853476) + +[fips2713146924] +centroid = (0.77581901106434004, -1.6260199056848137) +description = Northfield city, MN +station = ('ksyn', 0.0018906122926185944) +zone = ('mnz077', 0.0023664369641195442) + +[fips2713146942] +centroid = (0.77525357674657136, -1.6248402376433906) +description = Northfield township, MN +station = ('ksyn', 0.0014057274786271441) +zone = ('mnz077', 0.0027392132277677043) + +[fips2713154250] +centroid = (0.77213662814201978, -1.6249278182652558) +description = Richland township, MN +station = ('kowa', 0.0028462479526691212) +zone = ('mnz077', 0.0031453580173299474) + +[fips2713159854] +centroid = (0.77352557861404936, -1.6317134838640845) +description = Shieldsville township, MN +station = ('kfbl', 0.0021807793004873809) +zone = ('mnz076', 0.0031247153029793401) + +[fips2713167666] +centroid = (0.77204517288921526, -1.6269111580673445) +description = Walcott township, MN +station = ('kowa', 0.0021096977992565318) +zone = ('mnz077', 0.0023154933346849764) + +[fips2713168] +centroid = (0.78726194814577544, -1.6332425144618794) +description = Corcoran city, MN +station = ('kcfe', 0.0033890188373118715) +zone = ('mnz060', 0.0021773712044453543) + +[fips2713168278] +centroid = (0.77208898065344034, -1.6291863169203669) +description = Warsaw township, MN +station = ('kfbl', 0.0017119873603787179) +zone = ('mnz077', 0.0021257613517543985) + +[fips2713168962] +centroid = (0.77666331408999223, -1.6291110234164357) +description = Webster township, MN +station = ('klvn', 0.0026437097969842223) +zone = ('mnz077', 0.0025983564916019983) + +[fips2713169124] +centroid = (0.77378065848422839, -1.6291677815237107) +description = Wells township, MN +station = ('kfbl', 0.00034716524052422838) +zone = ('mnz077', 0.00068931839479860577) + +[fips2713169826] +centroid = (0.7766845023871114, -1.6315275015789921) +description = Wheatland township, MN +station = ('kfbl', 0.0035587886090988415) +zone = ('mnz069', 0.0026696684753952666) + +[fips2713169862] +centroid = (0.77364225387454522, -1.6249436833081563) +description = Wheeling township, MN +station = ('kfbl', 0.0026776033880369773) +zone = ('mnz077', 0.0024715576432544056) + +[fips27133] +centroid = (0.76217807613611299, -1.6801104517309213) +description = Rock County, MN +station = ('klyv', 0.0010385009113014802) +zone = ('mnz098', 0.0001549886260060557) + +[fips2713303988] +centroid = (0.76472487803391564, -1.6772871024131402) +description = Battle Plain township, MN +station = ('klyv', 0.0036854436213670121) +zone = ('mnz098', 0.0031144037089717836) + +[fips2713304492] +centroid = (0.76118379696783689, -1.6818389734622188) +description = Beaver Creek city, MN +station = ('klyv', 0.0018598091539260733) +zone = ('mnz098', 0.0017526670237708491) + +[fips2713304510] +centroid = (0.76156174801735621, -1.6821928215147681) +description = Beaver Creek township, MN +station = ('klyv', 0.0021221604147480728) +zone = ('mnz098', 0.0017792606070462706) + +[fips2713311998] +centroid = (0.75998857804277853, -1.6795725587087489) +description = Clinton township, MN +station = ('klyv', 0.0013602464696317708) +zone = ('mnz098', 0.0022938193416127284) + +[fips2713315742] +centroid = (0.76456921211793027, -1.67959742965059) +description = Denver township, MN +station = ('klyv', 0.0032454107994767931) +zone = ('mnz098', 0.0023148006232414442) + +[fips2713327116] +centroid = (0.76400194520444709, -1.6789628802944423) +description = Hardwick city, MN +station = ('klyv', 0.0026796503933532237) +zone = ('mnz098', 0.0018715615017661422) + +[fips2713329204] +centroid = (0.75966029906377097, -1.681762877106832) +description = Hills city, MN +station = ('klyv', 0.0024566256299421497) +zone = ('mnz098', 0.0029237323104001046) + +[fips2713331760] +centroid = (0.76526997926589846, -1.6825402991155476) +description = Jasper city, MN +station = ('kpqn', 0.0026166640559132062) +zone = ('mnz098', 0.0035434229656175057) + +[fips2713332336] +centroid = (0.75994220464455309, -1.677461041926394) +description = Kanaranzi township, MN +station = ('klyv', 0.0019142606053693897) +zone = ('mnz098', 0.002935243942903044) + +[fips2713332750] +centroid = (0.76365692851791289, -1.6767837669101573) +description = Kenneth city, MN +station = ('klyv', 0.0029425980145315776) +zone = ('mnz098', 0.0026682801189971818) + +[fips2713338564] +centroid = (0.76189803805763057, -1.6792543153729405) +description = Luverne city, MN +station = ('klyv', 0.00056629047247169155) +zone = ('mnz098', 0.00061563958099701489) + +[fips2713338582] +centroid = (0.76143563052560714, -1.6797296557947212) +description = Luverne township, MN +station = ('klyv', 0.00034280953533181617) +zone = ('mnz098', 0.00084488423986371327) + +[fips2713339338] +centroid = (0.76173457051988869, -1.6768292327371719) +description = Magnolia city, MN +station = ('klyv', 0.0018176740519240757) +zone = ('mnz098', 0.0023093597647946573) + +[fips2713339356] +centroid = (0.76149497172017488, -1.6775071360719391) +description = Magnolia township, MN +station = ('klyv', 0.0012923464463791357) +zone = ('mnz098', 0.0019191129301002099) + +[fips2713340796] +centroid = (0.76011199027418708, -1.6821809707291473) +description = Martin township, MN +station = ('klyv', 0.0024308883302623543) +zone = ('mnz098', 0.0026998295090329446) + +[fips2713344494] +centroid = (0.76296672061191917, -1.6795658217378364) +description = Mound township, MN +station = ('klyv', 0.0016478914413474112) +zone = ('mnz098', 0.00074867700492253829) + +[fips2713355654] +centroid = (0.76451411207344477, -1.6820445208882262) +description = Rose Dell township, MN +station = ('kpqn', 0.0032217572333277235) +zone = ('mnz098', 0.0027148615854162682) + +[fips2713362140] +centroid = (0.76302962227816096, -1.682022320300141) +description = Springwater township, MN +station = ('klyv', 0.002611826544181026) +zone = ('mnz098', 0.0016905890242568742) + +[fips2713362662] +centroid = (0.75946675950301734, -1.6801061582209613) +description = Steen city, MN +station = ('klyv', 0.0019593425972024292) +zone = ('iaz001', 0.0024278156790735212) + +[fips2713367072] +centroid = (0.76294684131173895, -1.6776586830108895) +description = Vienna township, MN +station = ('klyv', 0.0019950268700193821) +zone = ('mnz098', 0.001780793918006601) + +[fips2713384] +centroid = (0.78944764142134038, -1.6783545806902447) +description = Correll city, MN +station = ('kaqp', 0.0019494364633122153) +zone = ('mnz054', 0.0041301867826699567) + +[fips2713420] +centroid = (0.78426909245104059, -1.6527396224424928) +description = Cosmos city, MN +station = ('kljf', 0.0036542464975289585) +zone = ('mnz058', 0.0038751342121347379) + +[fips2713456] +centroid = (0.7821400002031178, -1.6216608760647877) +description = Cottage Grove city, MN +station = ('ksgs', 0.0016542281775921541) +zone = ('mnz070', 0.0031012493767579026) + +[fips27135] +centroid = (0.85104114848226131, -1.6724011927985221) +description = Roseau County, MN +station = ('krox', 0.0020882718488761201) +zone = ('mnz005', 0.00027480277963833879) + +[fips2713503160] +centroid = (0.85131430996349089, -1.6758863360620744) +description = Badger city, MN +station = ('krox', 0.003907069560729841) +zone = ('mnz005', 0.0024214579490604662) + +[fips2713503610] +centroid = (0.84951635903454903, -1.676592147211581) +description = Barnett township, MN +station = ('krox', 0.0051749718308296893) +zone = ('mnz005', 0.0033882867038156554) + +[fips2713503808] +centroid = (0.85104298107797594, -1.6791136941951073) +description = Barto township, MN +station = ('krox', 0.0060209642569238738) +zone = ('mnz005', 0.004555332548933773) + +[fips2713504420] +centroid = (0.84948942860419074, -1.6677250717599938) +description = Beaver township, MN +station = ('krox', 0.0035314335645340962) +zone = ('mnz005', 0.0034626842434691486) + +[fips2713510414] +centroid = (0.85247155052402579, -1.665356642511745) +description = Cedarbend township, MN +station = ('krrt', 0.0018933787386565344) +zone = ('mnz005', 0.0046678836442041877) + +[fips2713515166] +centroid = (0.84803972322089927, -1.6788870282851507) +description = Deer township, MN +station = ('krox', 0.0072786734152812272) +zone = ('mnz008', 0.0046468833363682007) + +[fips2713515868] +centroid = (0.84953314910195321, -1.6811592898916146) +description = Dewey township, MN +station = ('ktvf', 0.010734978212944999) +zone = ('mnz008', 0.0067106091626948743) + +[fips2713515958] +centroid = (0.85426424801191925, -1.6745090094828632) +description = Dieter township, MN +station = ('krox', 0.0032435923354466271) +zone = ('mnz005', 0.0033395787275746426) + +[fips2713519466] +centroid = (0.85263489588871999, -1.6677924414691208) +description = Enstrom township, MN +station = ('krox', 0.0016374448225583982) +zone = ('mnz005', 0.0032077860362370266) + +[fips2713520492] +centroid = (0.85095370748673649, -1.6676338433999922) +description = Falun township, MN +station = ('krox', 0.002392962949979417) +zone = ('mnz005', 0.0030360145573651003) + +[fips2713524326] +centroid = (0.8479369931411268, -1.669724835110344) +description = Golden Valley township, MN +station = ('krox', 0.0046707359370574296) +zone = ('mnz005', 0.0037301021639024805) + +[fips2713525604] +centroid = (0.84998028500302159, -1.6787228277091231) +description = Greenbush city, MN +station = ('krox', 0.0061469336486754044) +zone = ('mnz008', 0.0063702040601189662) + +[fips2713526036] +centroid = (0.84949984821982516, -1.6720175345223487) +description = Grimstad township, MN +station = ('krox', 0.0032987011296162871) +zone = ('mnz005', 0.0017908487726796846) + +[fips2713528628] +centroid = (0.84951723169917503, -1.678898250752241) +description = Hereim township, MN +station = ('krox', 0.0064603397353267481) +zone = ('mnz008', 0.0059805495012341461) + +[fips2713530626] +centroid = (0.84800499116878458, -1.6767400464123949) +description = Huss township, MN +station = ('krox', 0.0062623843440184285) +zone = ('mnz008', 0.0041047529749641317) + +[fips2713531634] +centroid = (0.85292387005297265, -1.6721410514735122) +description = Jadis township, MN +station = ('krox', 0.0012681703448763535) +zone = ('mnz005', 0.0016384513539566697) + +[fips2713534010] +centroid = (0.85411769271462934, -1.6653777086358166) +description = Lake township, MN +station = ('krrt', 0.00081452519662969991) +zone = ('mnz005', 0.0053139969856629476) + +[fips2713535594] +centroid = (0.85259899446600651, -1.6606943619341852) +description = Laona township, MN +station = ('krrt', 0.0027684947712654194) +zone = ('mnz006', 0.0031380114118586249) + +[fips2713537196] +centroid = (0.84802647617187654, -1.6811590106389345) +description = Lind township, MN +station = ('ktvf', 0.0092486447358053597) +zone = ('mnz008', 0.0055338800283137582) + +[fips2713539644] +centroid = (0.85104987512852137, -1.6699240644444591) +description = Malung township, MN +station = ('krox', 0.0015611746198353966) +zone = ('mnz005', 0.0015264913019051374) + +[fips2713541894] +centroid = (0.84949609576193341, -1.6697474196708646) +description = Mickinock township, MN +station = ('krox', 0.0031170846529495148) +zone = ('mnz005', 0.0024182332667868692) + +[fips2713543900] +centroid = (0.85245109526519247, -1.6769604989502143) +description = Moose township, MN +station = ('krox', 0.0043985778584491432) +zone = ('mnz005', 0.0033371022699774768) + +[fips2713544080] +centroid = (0.85246985755465143, -1.6630768934427902) +description = Moranville township, MN +station = ('krrt', 0.0018558099685168192) +zone = ('mnz005', 0.0061315731038234641) + +[fips2713545178] +centroid = (0.84951124521984067, -1.6742877715468805) +description = Nereson township, MN +station = ('krox', 0.0040593765176536629) +zone = ('mnz005', 0.0022416236070948925) + +[fips2713547216] +centroid = (0.85419989772239824, -1.6701382512502638) +description = North Roseau UT, MN +station = ('krox', 0.0016092621984871085) +zone = ('mnz005', 0.0032174635736171805) + +[fips2713547357] +centroid = (0.85381023551359791, -1.6802860842135494) +description = Northwest Roseau UT, MN +station = ('krox', 0.0066912496435520231) +zone = ('mnz005', 0.005882256926062571) + +[fips2713549588] +centroid = (0.84821444813231639, -1.6722618108044578) +description = Palmville township, MN +station = ('krox', 0.0045698692823779403) +zone = ('mnz005', 0.0030718146453658107) + +[fips2713551748] +centroid = (0.85410727309899492, -1.6769850382794973) +description = Pohlitz township, MN +station = ('krox', 0.0046609647890857777) +zone = ('mnz005', 0.0042214582313275188) + +[fips2713551820] +centroid = (0.85116571263097618, -1.6812442525196016) +description = Polonia township, MN +station = ('krox', 0.0073604199964647406) +zone = ('mnz004', 0.0052288388386297034) + +[fips2713551982] +centroid = (0.84796092160517167, -1.6744522688288808) +description = Poplar Grove township, MN +station = ('krox', 0.0053885582811054626) +zone = ('mnz005', 0.0036392767717092441) + +[fips2713553728] +centroid = (0.8481619835350015, -1.6677824232792144) +description = Reine township, MN +station = ('krox', 0.0047277741641129096) +zone = ('mnz005', 0.0042793181069237613) + +[fips2713555438] +centroid = (0.85184625141291381, -1.6598298305425021) +description = Roosevelt city, MN +station = ('krrt', 0.0036784112156444445) +zone = ('mnz006', 0.0023380118044523577) + +[fips2713555546] +centroid = (0.85249490302941755, -1.6713675390023208) +description = Roseau city, MN +station = ('krox', 0.00072235295143133161) +zone = ('mnz005', 0.0013306543484600032) + +[fips2713555942] +centroid = (0.8525567749514007, -1.6745051523052161) +description = Ross township, MN +station = ('krox', 0.0027805234302918048) +zone = ('mnz005', 0.0019735214812917992) + +[fips2713560610] +centroid = (0.85089584982203281, -1.6769000232916329) +description = Skagen township, MN +station = ('krox', 0.0046791169248240685) +zone = ('mnz005', 0.003114599751217246) + +[fips2713561096] +centroid = (0.85257740474315924, -1.6791224906545372) +description = Soler township, MN +station = ('krox', 0.0058186493076665836) +zone = ('mnz005', 0.0047303174307996706) + +[fips2713561330] +centroid = (0.85053303077712816, -1.6655930124523426) +description = Southeast Roseau UT, MN +station = ('krrt', 0.003777996636549881) +zone = ('mnz005', 0.0044285024574846794) + +[fips2713562158] +centroid = (0.85244172284710917, -1.6697493046264569) +description = Spruce township, MN +station = ('krox', 0.00038079272307787825) +zone = ('mnz005', 0.0019915760362568557) + +[fips2713562338] +centroid = (0.85104249238578533, -1.6722165718702462) +description = Stafford township, MN +station = ('krox', 0.0020079241908267571) +zone = ('mnz005', 0.000243612852442178) + +[fips2713562932] +centroid = (0.8510388271943562, -1.6745077004859241) +description = Stokes township, MN +station = ('krox', 0.0031889254612835322) +zone = ('mnz005', 0.0015330740713393924) + +[fips2713563130] +centroid = (0.84742445975298619, -1.6784344818634012) +description = Strathcona city, MN +station = ('krox', 0.0074618798091880224) +zone = ('mnz008', 0.0039641129814122012) + +[fips2713564] +centroid = (0.77860804720902688, -1.6697926586050764) +description = Cottonwood city, MN +station = ('kgdb', 0.0028691033491272146) +zone = ('mnz064', 0.0030508474866345822) + +[fips2713568224] +centroid = (0.85377820872182386, -1.6638178380701392) +description = Warroad city, MN +station = ('krrt', 0.00046226895140906991) +zone = ('mnz005', 0.0060602421247405924) + +[fips2713582] +centroid = (0.77265706787167199, -1.6466571150927076) +description = Courtland city, MN +station = ('kulm', 0.0020834606648615765) +zone = ('mnz075', 0.0018660112504719263) + +[fips27137] +centroid = (0.83049488818168882, -1.6137950436451922) +description = St. Louis County, MN +station = ('kevm', 0.0029492539668699606) +zone = ('mnz019', 0.0024274952153727353) + +[fips2713700000] +centroid = (0.81700513367326955, -1.6042713229691272) +description = County subdivisions not defined, MN +station = ('kdyt', 0.0021584526413372281) +zone = ('wiz001', 0.0066331702547083437) + +[fips2713700568] +centroid = (0.83358508088880745, -1.6189832617395481) +description = Alango township, MN +station = ('kcqm', 0.0013553770166260899) +zone = ('mnz019', 0.0066992411741937131) + +[fips2713700820] +centroid = (0.82030926884009758, -1.6162174035673278) +description = Alborn township, MN +station = ('kdlh', 0.005261069059557328) +zone = ('mnz037', 0.0043480920170782091) + +[fips2713700874] +centroid = (0.82180946659864929, -1.6036138574399013) +description = Alden township, MN +station = ('ktwm', 0.0016730530420740631) +zone = ('mnz020', 0.0061632238833340411) + +[fips2713701612] +centroid = (0.83357527213841121, -1.6169004556233881) +description = Angora township, MN +station = ('kcqm', 0.0012128355910901755) +zone = ('mnz019', 0.0059982476553161477) + +[fips2713702278] +centroid = (0.81787568645087172, -1.61865435444201) +description = Arrowhead township, MN +station = ('kcoq', 0.0040310014428849694) +zone = ('mnz037', 0.0027161992877411919) + +[fips2713702818] +centroid = (0.82416007603523522, -1.6049866810696423) +description = Ault township, MN +station = ('ktwm', 0.0038796401984699551) +zone = ('mnz019', 0.0068689486057386248) + +[fips2713703106] +centroid = (0.83154630942967533, -1.6046282951610378) +description = Babbitt city, MN +station = ('kelo', 0.0032548546219884921) +zone = ('mnz019', 0.0067965672386741949) + +[fips2713703322] +centroid = (0.82974766036903247, -1.620750966112553) +description = Balkan township, MN +station = ('khib', 0.0027734643611595591) +zone = ('mnz019', 0.0053009931954657039) + +[fips2713703880] +centroid = (0.82861939227408077, -1.6045166289954951) +description = Bassett township, MN +station = ('kelo', 0.006051203453841354) +zone = ('mnz019', 0.0059608661111409077) + +[fips2713704294] +centroid = (0.83733298347124741, -1.6163867354113564) +description = Beatty township, MN +station = ('kcqm', 0.0028310110934218922) +zone = ('mnz011', 0.0030100083173310575) + +[fips2713706042] +centroid = (0.83359026451668583, -1.6053750517347962) +description = Birch Lake UT, MN +station = ('kelo', 0.00198598054720505) +zone = ('mnz019', 0.0076672909888737852) + +[fips2713706148] +centroid = (0.82973624591572448, -1.611675201642305) +description = Biwabik city, MN +station = ('kevm', 0.0028509657110442252) +zone = ('mnz019', 0.0019776491920377583) + +[fips2713706166] +centroid = (0.82888183743370314, -1.612407978128755) +description = Biwabik township, MN +station = ('kevm', 0.0018897843373687649) +zone = ('mnz019', 0.00099419004299269691) + +[fips2713707534] +centroid = (0.83514294432584502, -1.6102373121380493) +description = Breitung township, MN +station = ('kelo', 0.005030674009630213) +zone = ('mnz011', 0.0059437205508199387) + +[fips2713707606] +centroid = (0.81696219857367047, -1.6145546109356603) +description = Brevator township, MN +station = ('kcoq', 0.0018953753316147063) +zone = ('mnz037', 0.0013212286248317933) + +[fips2713708056] +centroid = (0.81795516874500751, -1.6162154487985654) +description = Brookston city, MN +station = ('kcoq', 0.0031347853251342764) +zone = ('mnz037', 0.0020034855056719003) + +[fips2713708524] +centroid = (0.82900366141549231, -1.6193412287691322) +description = Buhl city, MN +station = ('khib', 0.0020998993456019413) +zone = ('mnz019', 0.0041853004620920741) + +[fips2713709482] +centroid = (0.84080446080675664, -1.6194931247739333) +description = Camp 5 township, MN +station = ('korb', 0.0028963979925975139) +zone = ('mnz011', 0.003098324155721574) + +[fips2713709784] +centroid = (0.81840263625863385, -1.6101935392804094) +description = Canosia township, MN +station = ('kdlh', 0.00092049330393483095) +zone = ('mnz037', 0.0045589056794868941) + +[fips2713710540] +centroid = (0.8223443402012155, -1.6231694339504568) +description = Cedar Valley township, MN +station = ('khib', 0.0050561482208855198) +zone = ('mnz035', 0.0071078632822769014) + +[fips2713711134] +centroid = (0.8274177679906678, -1.6186974989811191) +description = Cherry township, MN +station = ('khib', 0.0011310412371355299) +zone = ('mnz019', 0.0037139971097122325) + +[fips2713711386] +centroid = (0.82881375213958286, -1.621051354730114) +description = Chisholm city, MN +station = ('khib', 0.001898157662725947) +zone = ('mnz019', 0.005290644050273902) + +[fips2713712016] +centroid = (0.82741354429387792, -1.6166928138022785) +description = Clinton township, MN +station = ('kevm', 0.0015402872812729893) +zone = ('mnz019', 0.0023940578417223171) + +[fips2713712736] +centroid = (0.8259572415660138, -1.6096912335216855) +description = Colvin township, MN +station = ('kevm', 0.0035946574372415735) +zone = ('mnz019', 0.0032429787500206455) + +[fips2713713006] +centroid = (0.83496841140064559, -1.6177020329889518) +description = Cook city, MN +station = ('kcqm', 0.00031884197166544097) +zone = ('mnz011', 0.0055329261525949225) + +[fips2713713528] +centroid = (0.82268213122464651, -1.6133407518941907) +description = Cotton township, MN +station = ('kevm', 0.0049502504159425111) +zone = ('mnz019', 0.00540860662649887) + +[fips2713713656] +centroid = (0.8438737444694363, -1.6149646411368312) +description = Crane Lake township, MN +station = ('kcdd', 0.0015647457556208332) +zone = ('mnz011', 0.0036897248236980634) + +[fips2713714284] +centroid = (0.81873641302478539, -1.6161744859210212) +description = Culver township, MN +station = ('kcoq', 0.0038572260337367383) +zone = ('mnz037', 0.0027772230096145926) + +[fips2713717000] +centroid = (0.81652138076449421, -1.6077747921898256) +description = Duluth city, MN +station = ('kdyt', 0.0013987626981821866) +zone = ('mnz037', 0.0055433880421473739) + +[fips2713717018] +centroid = (0.8196110149662521, -1.6034283289404141) +description = Duluth township, MN +station = ('ktwm', 0.0021171823855975964) +zone = ('mnz020', 0.0075249468171925075) + +[fips2713717440] +centroid = (0.83496821941442789, -1.6075276884743284) +description = Eagles Nest township, MN +station = ('kelo', 0.0032042871773983917) +zone = ('mnz011', 0.0071994431538669459) + +[fips2713718800] +centroid = (0.82408476507801176, -1.613347069986083) +description = Ellsburg township, MN +station = ('kevm', 0.003568464959967614) +zone = ('mnz019', 0.0040060319333332338) + +[fips2713718944] +centroid = (0.82111292314747075, -1.6211438048205919) +description = Elmer township, MN +station = ('khib', 0.0059136885921588023) +zone = ('mnz037', 0.0062969336167900333) + +[fips2713719142] +centroid = (0.83610170604384304, -1.6031375047271543) +description = Ely city, MN +station = ('kelo', 0.0015605445636872619) +zone = ('mnz012', 0.0077986428176694197) + +[fips2713719232] +centroid = (0.83230823291463329, -1.6100568799999784) +description = Embarrass township, MN +station = ('kelo', 0.005376537539441467) +zone = ('mnz019', 0.0047510021241951314) + +[fips2713719934] +centroid = (0.82856568849299694, -1.6152825179534971) +description = Eveleth city, MN +station = ('kevm', 0.0011447086672670887) +zone = ('mnz019', 0.0014229829112736635) + +[fips2713720186] +centroid = (0.82584653533155983, -1.6044612147917443) +description = Fairbanks township, MN +station = ('ktwm', 0.0051285374534229379) +zone = ('mnz019', 0.0063908207598203041) + +[fips2713720762] +centroid = (0.82748246734603914, -1.6143103521068438) +description = Fayal township, MN +station = ('kevm', 0.00012423651715520368) +zone = ('mnz019', 0.00091564055208239272) + +[fips2713720996] +centroid = (0.83548272502462317, -1.6191717922053486) +description = Field township, MN +station = ('kcqm', 0.0012733153694549006) +zone = ('mnz011', 0.0054871611716971816) + +[fips2713721086] +centroid = (0.81727988340411839, -1.6211326347133792) +description = Fine Lakes township, MN +station = ('kcoq', 0.0050963383218433755) +zone = ('mnz037', 0.0038614875400540651) + +[fips2713721338] +centroid = (0.81905926402981921, -1.6216145550264398) +description = Floodwood city, MN +station = ('kcoq', 0.0063326439844114124) +zone = ('mnz037', 0.0050216827381138448) + +[fips2713721356] +centroid = (0.81874650102786184, -1.6208179343959521) +description = Floodwood township, MN +station = ('kcoq', 0.0057136877332950257) +zone = ('mnz037', 0.004401025599103576) + +[fips2713722508] +centroid = (0.81998749993919984, -1.6097195078555679) +description = Fredenberg township, MN +station = ('kdlh', 0.0024272708670304947) +zone = ('mnz037', 0.0057952503834630817) + +[fips2713722724] +centroid = (0.83198972777943692, -1.6230797065736116) +description = French township, MN +station = ('kcqm', 0.0044710604800701024) +zone = ('mnz018', 0.0086298145345083607) + +[fips2713723632] +centroid = (0.83700196432531426, -1.6186975164344117) +description = Gheen UT, MN +station = ('korb', 0.0017696148116717119) +zone = ('mnz011', 0.0040529549624179224) + +[fips2713723714] +centroid = (0.82887468158376998, -1.6137535920754573) +description = Gilbert city, MN +station = ('kevm', 0.0013758696701706406) +zone = ('mnz019', 0.00084219554592620421) + +[fips2713724218] +centroid = (0.82069563237661158, -1.6076712418053047) +description = Gnesen township, MN +station = ('kdlh', 0.0034135388827928122) +zone = ('mnz037', 0.0073082705037913163) + +[fips2713724956] +centroid = (0.81911495748625029, -1.6120534668510897) +description = Grand Lake township, MN +station = ('kdlh', 0.0022617403973432069) +zone = ('mnz037', 0.004069298643500514) + +[fips2713725550] +centroid = (0.83002892017799135, -1.6186922106334856) +description = Great Scott township, MN +station = ('khib', 0.003210707410947946) +zone = ('mnz019', 0.0041272087395775791) + +[fips2713725928] +centroid = (0.83491889640976646, -1.6118447952857213) +description = Greenwood township, MN +station = ('kcqm', 0.0039640782843279711) +zone = ('mnz011', 0.0056586778660292526) + +[fips2713726522] +centroid = (0.81849669205202391, -1.6230728299763586) +description = Halden township, MN +station = ('khzx', 0.0061358273872164906) +zone = ('mnz035', 0.0051986966711975316) + +[fips2713727899] +centroid = (0.83082423181154019, -1.6129294126960805) +description = Hay Lake UT, MN +station = ('kevm', 0.0034017026285974479) +zone = ('mnz019', 0.0027449133851943359) + +[fips2713728682] +centroid = (0.81693071283396457, -1.6099197320273566) +description = Hermantown city, MN +station = ('kdlh', 0.00065660339332229288) +zone = ('mnz037', 0.004158407255363079) + +[fips2713728790] +centroid = (0.82724539927374074, -1.6222281953381485) +description = Hibbing city, MN +station = ('khib', 0.001364191331116722) +zone = ('mnz019', 0.0061005574980463025) + +[fips2713730302] +centroid = (0.8302138552655326, -1.6074396017069801) +description = Hoyt Lakes city, MN +station = ('kelo', 0.0053527529388713241) +zone = ('mnz019', 0.0044912891247127166) + +[fips2713730932] +centroid = (0.81843677489880284, -1.6142632805769173) +description = Industrial township, MN +station = ('kdlh', 0.0032738941340973277) +zone = ('mnz037', 0.0026895914178996128) + +[fips2713731238] +centroid = (0.82761727657746309, -1.6163213553775764) +description = Iron Junction city, MN +station = ('kevm', 0.0012807137387873095) +zone = ('mnz019', 0.0020988578570799617) + +[fips2713731733] +centroid = (0.82411148606885976, -1.6229569750206114) +description = Janette Lake UT, MN +station = ('khib', 0.0034193948142749375) +zone = ('mnz026', 0.0057998148485698606) + +[fips2713732252] +centroid = (0.8459771978306474, -1.6233227436719517) +description = Kabetogama township, MN +station = ('kinl', 0.0048133058707139622) +zone = ('mnz011', 0.0080393382793820731) + +[fips2713732696] +centroid = (0.82286081803346556, -1.6166982941361296) +description = Kelsey township, MN +station = ('khib', 0.0047846945871245815) +zone = ('mnz019', 0.0057155492315621352) + +[fips2713733794] +centroid = (0.83334937417332555, -1.6101135333874979) +description = Kugler township, MN +station = ('kelo', 0.0050647443649296988) +zone = ('mnz019', 0.0056804168666822787) + +[fips2713735234] +centroid = (0.81863637075206097, -1.6054886552158083) +description = Lakewood township, MN +station = ('kdyt', 0.003253141621640426) +zone = ('mnz037', 0.0075598344878070036) + +[fips2713735774] +centroid = (0.82478944176350444, -1.619102118661609) +description = Lavell township, MN +station = ('khib', 0.0023383677646686479) +zone = ('mnz019', 0.0051339742975005116) + +[fips2713736332] +centroid = (0.83889252242436707, -1.6204138383142377) +description = Leiding township, MN +station = ('korb', 0.00088810778172552954) +zone = ('mnz011', 0.0038752203953499528) + +[fips2713736530] +centroid = (0.82848339621876532, -1.6156036410825714) +description = Leonidas city, MN +station = ('kevm', 0.0012050632814660425) +zone = ('mnz019', 0.0016072586049479072) + +[fips2713737250] +centroid = (0.83514791851421322, -1.621250479344474) +description = Linden Grove township, MN +station = ('kcqm', 0.0024110042947292636) +zone = ('mnz011', 0.0065712001653307397) + +[fips2713738938] +centroid = (0.83051443586931117, -1.622684092792062) +description = McCormack UT, MN +station = ('khib', 0.003885481995843858) +zone = ('mnz026', 0.0082027028317220602) + +[fips2713738960] +centroid = (0.82488519052626874, -1.6163842395905257) +description = McDavitt township, MN +station = ('kevm', 0.0030000222190647761) +zone = ('mnz019', 0.0038268624977152556) + +[fips2713739140] +centroid = (0.8291811614004202, -1.6127901703283565) +description = McKinley city, MN +station = ('kevm', 0.0019498472660849885) +zone = ('mnz019', 0.0011433584727601601) + +[fips2713739538] +centroid = (0.82663212548117504, -1.6124096187382517) +description = Makinen UT, MN +station = ('kevm', 0.0016621689394084192) +zone = ('mnz019', 0.0015777631161471772) + +[fips2713741372] +centroid = (0.82158063648042035, -1.6184666093743729) +description = Meadowlands city, MN +station = ('khib', 0.0055479286062758131) +zone = ('mnz037', 0.0058937663397100404) + +[fips2713741390] +centroid = (0.82118558120423146, -1.6169824686449394) +description = Meadowlands township, MN +station = ('kdlh', 0.006180749394993048) +zone = ('mnz037', 0.0052755789038432966) + +[fips2713742056] +centroid = (0.81543431989318216, -1.6104125955548274) +description = Midway township, MN +station = ('ksuw', 0.0021656571581909266) +zone = ('mnz037', 0.0037495570011243807) + +[fips2713744098] +centroid = (0.83362269273418788, -1.6234757915940592) +description = Morcom township, MN +station = ('kcqm', 0.0039906939508915079) +zone = ('mnz018', 0.0085307195743603761) + +[fips2713744350] +centroid = (0.83505309477595235, -1.6052579052354021) +description = Morse township, MN +station = ('kelo', 0.0017264824393595861) +zone = ('mnz019', 0.0088215696739150206) + +[fips2713744548] +centroid = (0.82982195903528988, -1.6166153735433675) +description = Mountain Iron city, MN +station = ('kevm', 0.0026874361668997059) +zone = ('mnz019', 0.0028318444954184012) + +[fips2713745232] +centroid = (0.81989152428363266, -1.6184139353375477) +description = Ness township, MN +station = ('kcoq', 0.0055396435448609935) +zone = ('mnz037', 0.0043023963443611646) + +[fips2713745281] +centroid = (0.83923492111702336, -1.6242128441371764) +description = Nett Lake UT, MN +station = ('korb', 0.0025540091330104441) +zone = ('mnz011', 0.0062618277337482724) + +[fips2713745664] +centroid = (0.81993327255934034, -1.6145258828161726) +description = New Independence township, MN +station = ('kdlh', 0.0040898802959553702) +zone = ('mnz037', 0.0040626032293016442) + +[fips2713746708] +centroid = (0.82017835169290554, -1.6050252353928189) +description = Normanna township, MN +station = ('ktwm', 0.0027039362732054657) +zone = ('mnz037', 0.0085000005822740057) + +[fips2713746898] +centroid = (0.83834546642362184, -1.6083712410084021) +description = Northeast St. Louis UT, MN +station = ('kelo', 0.0053207249805565064) +zone = ('mnz011', 0.0047592632530039907) + +[fips2713747050] +centroid = (0.82138873752916353, -1.6140845588615131) +description = Northland township, MN +station = ('kdlh', 0.0048805483471039534) +zone = ('mnz037', 0.0055486703409838266) + +[fips2713747255] +centroid = (0.82131225720134116, -1.6056427154288819) +description = North Star township, MN +station = ('ktwm', 0.0029348636820936036) +zone = ('mnz019', 0.0085411426798513053) + +[fips2713747362] +centroid = (0.84341053408595712, -1.6195197584983188) +description = Northwest St. Louis UT, MN +station = ('kcdd', 0.0037147814159595284) +zone = ('mnz011', 0.0044391358464684807) + +[fips2713748634] +centroid = (0.83876458979019586, -1.6200760298375145) +description = Orr city, MN +station = ('korb', 0.00087505477064307529) +zone = ('mnz011', 0.003710560334485379) + +[fips2713749336] +centroid = (0.83470102695924009, -1.6168647461868926) +description = Owens township, MN +station = ('kcqm', 0.00058715504356125683) +zone = ('mnz011', 0.005631939719517645) + +[fips2713750389] +centroid = (0.82304608473356478, -1.6025419111199113) +description = Pequaywan township, MN +station = ('ktwm', 0.0020400239638505781) +zone = ('mnz020', 0.0049086213704797278) + +[fips2713750830] +centroid = (0.83226885828670838, -1.6121499661054326) +description = Pike township, MN +station = ('kevm', 0.0049377271605060401) +zone = ('mnz019', 0.0042494679793398703) + +[fips2713752090] +centroid = (0.83985610125110055, -1.6168651650659129) +description = Portage township, MN +station = ('kcdd', 0.003130628324817049) +zone = ('mnz011', 0.0013244004948366273) + +[fips2713752224] +centroid = (0.81974521333243811, -1.6226642134918818) +description = Potshot Lake UT, MN +station = ('khzx', 0.0073127232457143336) +zone = ('mnz035', 0.0058750746535155638) + +[fips2713752306] +centroid = (0.81713505598278802, -1.623517679496107) +description = Prairie Lake township, MN +station = ('khzx', 0.004910903429956928) +zone = ('mnz035', 0.0047525145720876067) + +[fips2713752630] +centroid = (0.81580850103151725, -1.6096737278692881) +description = Proctor city, MN +station = ('kdlh', 0.0017522818150336609) +zone = ('mnz037', 0.0042198042676950811) + +[fips2713754060] +centroid = (0.81852945188208381, -1.6076955891483702) +description = Rice Lake township, MN +station = ('kdlh', 0.0016499798360111553) +zone = ('mnz037', 0.0061248359750612821) + +[fips2713758369] +centroid = (0.83212081945955418, -1.6189408502387246) +description = Sand Lake UT, MN +station = ('kcqm', 0.0026561235867180802) +zone = ('mnz019', 0.005544209519032171) + +[fips2713758450] +centroid = (0.83221503233257688, -1.6142068540822003) +description = Sandy township, MN +station = ('kcqm', 0.0034001439390910189) +zone = ('mnz019', 0.0041696560580787578) + +[fips2713761132] +centroid = (0.81692858353227704, -1.6121269801191838) +description = Solway township, MN +station = ('kdlh', 0.0018093269985661154) +zone = ('mnz037', 0.0027096763157148447) + +[fips2713762968] +centroid = (0.81731599426634227, -1.6163717255797891) +description = Stoney Brook township, MN +station = ('kcoq', 0.0026115090815873906) +zone = ('mnz037', 0.0013972321777891428) + +[fips2713763202] +centroid = (0.83362642773878703, -1.6212337416369471) +description = Sturgeon township, MN +station = ('kcqm', 0.0025632533931502044) +zone = ('mnz011', 0.0077946036590974864) + +[fips2713765146] +centroid = (0.82267816932724447, -1.6197319032688988) +description = Toivola township, MN +station = ('khib', 0.0043311567228417718) +zone = ('mnz019', 0.0069523705631492272) + +[fips2713765272] +centroid = (0.83454499452411168, -1.6105005077892502) +description = Tower city, MN +station = ('kelo', 0.0051749869778965705) +zone = ('mnz011', 0.0063750825890041629) + +[fips2713766586] +centroid = (0.8202767708094254, -1.6209834963287963) +description = Van Buren township, MN +station = ('khib', 0.0067370063034670417) +zone = ('mnz037', 0.0055656310627171697) + +[fips2713766784] +centroid = (0.8337921642045566, -1.6116523901889814) +description = Vermilion Lake township, MN +station = ('kelo', 0.0060000470608575079) +zone = ('mnz019', 0.0058085142571660132) + +[fips2713767288] +centroid = (0.82927591532551093, -1.6147634919405389) +description = Virginia city, MN +station = ('kevm', 0.0017138945041513544) +zone = ('mnz019', 0.0015443538986545777) + +[fips2713767342] +centroid = (0.83209582634466561, -1.6075904679675226) +description = Waasa township, MN +station = ('kelo', 0.0040577766214658102) +zone = ('mnz019', 0.0055568140172780039) + +[fips2713769898] +centroid = (0.8290216208534954, -1.6101085766524224) +description = White township, MN +station = ('kevm', 0.0032592131499156354) +zone = ('mnz019', 0.0023486419693172331) + +[fips2713770069] +centroid = (0.82415630612405089, -1.6083792695229615) +description = Whiteface Reservoir UT, MN +station = ('kevm', 0.0053407819570356141) +zone = ('mnz019', 0.0051569819007712238) + +[fips2713770510] +centroid = (0.83651081122051052, -1.6218832310114919) +description = Willow Valley township, MN +station = ('korb', 0.0016922932706698406) +zone = ('mnz011', 0.0059188037063607488) + +[fips2713771140] +centroid = (0.83652178934150556, -1.6022349600643628) +description = Winton city, MN +station = ('kelo', 0.0019990094587189738) +zone = ('mnz012', 0.0072968734344817255) + +[fips2713771869] +centroid = (0.83072724386500674, -1.614063841803292) +description = Wuori township, MN +station = ('kevm', 0.0031599616820392903) +zone = ('mnz019', 0.0026867509985481109) + +[fips2713780] +centroid = (0.81470819311118237, -1.6209001917635986) +description = Cromwell city, MN +station = ('kcoq', 0.0044531454671265149) +zone = ('mnz037', 0.0036995002530525309) + +[fips2713870] +centroid = (0.83382541272680699, -1.6860963376533162) +description = Crookston city, MN +station = ('kckn', 0.0013203416898111928) +zone = ('mnz001', 0.001706267465205987) + +[fips27139] +centroid = (0.77932323077661669, -1.6324859142311399) +description = Scott County, MN +station = ('kfcm', 0.0032459748985480107) +zone = ('mnz069', 6.3268754673053261e-05) + +[fips2713904834] +centroid = (0.7787278815154689, -1.6364764699394845) +description = Belle Plaine city, MN +station = ('kgyl', 0.0046246780982636074) +zone = ('mnz069', 0.0028754762744062664) + +[fips2713904852] +centroid = (0.77812877979642925, -1.6355619523180247) +description = Belle Plaine township, MN +station = ('kfcm', 0.0052674469622342743) +zone = ('mnz069', 0.0024526457211836526) + +[fips2713906418] +centroid = (0.77800262739809523, -1.6382300895054258) +description = Blakeley township, MN +station = ('kgyl', 0.0041397645071656365) +zone = ('mnz076', 0.003944149014472262) + +[fips2713910450] +centroid = (0.77831579182578048, -1.6311936026397931) +description = Cedar Lake township, MN +station = ('klvn', 0.0029470198037169063) +zone = ('mnz069', 0.0013292908261753886) + +[fips2713913726] +centroid = (0.7796553669332712, -1.6294559004766298) +description = Credit River township, MN +station = ('klvn', 0.0018140410239107924) +zone = ('mnz069', 0.002204918384370843) + +[fips2713918662] +centroid = (0.77784387224933382, -1.6290611593597064) +description = Elko New Market city, MN +station = ('klvn', 0.0017311979048925707) +zone = ('mnz069', 0.0028327312830304686) + +[fips2713924] +centroid = (0.81146305007307185, -1.6396651690295856) +description = Crosby city, MN +station = ('kbrd', 0.0027818734684937093) +zone = ('mnz034', 0.0015143992745179837) + +[fips2713928322] +centroid = (0.77820131568014217, -1.6335447880350322) +description = Helena township, MN +station = ('kfcm', 0.0045411975985582085) +zone = ('mnz069', 0.0012926626596334795) + +[fips2713931580] +centroid = (0.78139160301986255, -1.6328089223158064) +description = Jackson township, MN +station = ('kfcm', 0.0014878486697862436) +zone = ('mnz069', 0.0021408737237519682) + +[fips2713932174] +centroid = (0.77954480032515738, -1.634330570170865) +description = Jordan city, MN +station = ('kfcm', 0.0036048216937433599) +zone = ('mnz069', 0.0013284648714825553) + +[fips2713938294] +centroid = (0.78095167532860499, -1.633173451783378) +description = Louisville township, MN +station = ('kfcm', 0.0019884463808128791) +zone = ('mnz069', 0.0017554346750638288) + +[fips2713945754] +centroid = (0.77823255707375294, -1.6292159002511881) +description = New Market township, MN +station = ('klvn', 0.0016245413862529636) +zone = ('mnz069', 0.0025579377118662974) + +[fips2713945808] +centroid = (0.77756933195799505, -1.6332513632811869) +description = New Prague city, MN +station = ('kfbl', 0.0050128412147985319) +zone = ('mnz069', 0.0017735375886834403) + +[fips2713952594] +centroid = (0.78060887521022071, -1.6308509596010414) +description = Prior Lake city, MN +station = ('kfcm', 0.0018963237783350267) +zone = ('mnz069', 0.0017887478824322083) + +[fips2713957184] +centroid = (0.77934822389150527, -1.6352778301690925) +description = St. Lawrence township, MN +station = ('kfcm', 0.0041799717627081737) +zone = ('mnz069', 0.00197383568555879) + +[fips2713958324] +centroid = (0.77958063193470084, -1.6334680459078219) +description = Sand Creek township, MN +station = ('kfcm', 0.0032527602925513828) +zone = ('mnz069', 0.0007550850962856399) + +[fips2713958738] +centroid = (0.78116223184956557, -1.6295610565640628) +description = Savage city, MN +station = ('kfcm', 0.0018295063344692221) +zone = ('mnz069', 0.0028272909047105423) + +[fips2713959350] +centroid = (0.78138645429856923, -1.6314447729724477) +description = Shakopee city, MN +station = ('kfcm', 0.0010849455691248418) +zone = ('mnz069', 0.0022547305063545481) + +[fips2713961978] +centroid = (0.77960583448909959, -1.6312411279553249) +description = Spring Lake township, MN +station = ('kfcm', 0.0028653854647022999) +zone = ('mnz069', 0.00096328319461956656) + +[fips2713978] +centroid = (0.81467536346795244, -1.642380639546301) +description = Crosslake city, MN +station = ('kbrd', 0.0048576673740282081) +zone = ('mnz034', 0.0034241459644864555) + +[fips27141] +centroid = (0.79313295649680404, -1.6366841117605944) +description = Sherburne County, MN +station = ('kpnm', 0.0028398669081780596) +zone = ('mnz051', 1.4643725244733912e-05) + +[fips2714103286] +centroid = (0.79441610510957772, -1.6331209871860628) +description = Baldwin township, MN +station = ('kpnm', 0.00068133534630865117) +zone = ('mnz052', 0.0034603686112957906) + +[fips2714104618] +centroid = (0.79208282679246422, -1.6385951949316506) +description = Becker city, MN +station = ('kmgg', 0.0028475762953821195) +zone = ('mnz051', 0.0017172463240623123) + +[fips2714104636] +centroid = (0.79261864287282635, -1.6377352188493155) +description = Becker township, MN +station = ('kstc', 0.0035440859492239683) +zone = ('mnz051', 0.00091250385188520881) + +[fips2714105752] +centroid = (0.79137455472871232, -1.6361246290155751) +description = Big Lake city, MN +station = ('kcfe', 0.0034309185336079749) +zone = ('mnz051', 0.0018126219100917963) + +[fips2714105770] +centroid = (0.79136512995075148, -1.6356237369735451) +description = Big Lake township, MN +station = ('kcfe', 0.0035639895911130323) +zone = ('mnz051', 0.0019271979024668912) + +[fips2714106742] +centroid = (0.79445998268697293, -1.6353808744081302) +description = Blue Hill township, MN +station = ('kpnm', 0.0013402256126218654) +zone = ('mnz051', 0.0015966039624757526) + +[fips2714111764] +centroid = (0.79324975393034758, -1.6406461313356691) +description = Clear Lake city, MN +station = ('kstc', 0.0018433396237254891) +zone = ('mnz051', 0.0027888254512724565) + +[fips2714111782] +centroid = (0.79276034615479585, -1.6404452264854721) +description = Clear Lake township, MN +station = ('kstc', 0.0023522840168636403) +zone = ('mnz051', 0.0026744961018873945) + +[fips2714118674] +centroid = (0.79119637406537624, -1.633043983259465) +description = Elk River city, MN +station = ('kpnm', 0.0038231371282979763) +zone = ('mnz051', 0.0032090900363960242) + +[fips2714127674] +centroid = (0.79444190107592227, -1.6419061892424391) +description = Haven township, MN +station = ('kstc', 0.0006299884389500272) +zone = ('mnz050', 0.0032892952611163627) + +[fips2714137754] +centroid = (0.79297221167269538, -1.6329850958505026) +description = Livonia township, MN +station = ('kpnm', 0.0020748291429421436) +zone = ('mnz051', 0.002594041062920464) + +[fips2714148670] +centroid = (0.79277909099096222, -1.6353816772595862) +description = Orrock township, MN +station = ('kpnm', 0.0025362362822624052) +zone = ('mnz051', 0.00097802001688810335) + +[fips2714149534] +centroid = (0.79442001464710221, -1.63971257217207) +description = Palmer township, MN +station = ('kstc', 0.0013674898709748228) +zone = ('mnz051', 0.0024826664330964364) + +[fips2714152522] +centroid = (0.79507357063880413, -1.6334647995954132) +description = Princeton city, MN +station = ('kpnm', 0.00013740442759547041) +zone = ('mnz051', 0.0029624023051197088) + +[fips2714156896] +centroid = (0.79478246717286394, -1.6426889170520809) +description = St. Cloud city, MN +station = ('kstc', 0.00087208702734140259) +zone = ('mnz050', 0.0031767441666073685) + +[fips2714158] +centroid = (0.78604934574136731, -1.6294302790432105) +description = Crystal city, MN +station = ('kmic', 0.00052552921772843061) +zone = ('mnz060', 0.0015565458311524122) + +[fips2714158522] +centroid = (0.79446141385695956, -1.6378238292154392) +description = Santiago township, MN +station = ('kstc', 0.0026180483172008537) +zone = ('mnz051', 0.0015431610471115973) + +[fips2714172238] +centroid = (0.79308742085661954, -1.6335599723995244) +description = Zimmerman city, MN +station = ('kpnm', 0.0019106517228913769) +zone = ('mnz051', 0.0021855105336174713) + +[fips27143] +centroid = (0.77799332479318195, -1.6446259009092368) +description = Sibley County, MN +station = ('kgyl', 0.0036513522830684858) +zone = ('mnz067', 7.0174031320893778e-05) + +[fips2714300982] +centroid = (0.77671977549129423, -1.6458764991314607) +description = Alfsborg township, MN +station = ('kulm', 0.0040813645687458842) +zone = ('mnz067', 0.001595290196807371) + +[fips2714302152] +centroid = (0.77856437907114207, -1.6419427538902682) +description = Arlington city, MN +station = ('kgyl', 0.0025777860637982274) +zone = ('mnz067', 0.0020001262248682396) + +[fips2714302170] +centroid = (0.77816763082557872, -1.6418610550279824) +description = Arlington township, MN +station = ('kgyl', 0.0029761572929937526) +zone = ('mnz067', 0.0019967611990788494) + +[fips2714306130] +centroid = (0.77824423332644876, -1.6483416021669774) +description = Bismarck township, MN +station = ('kulm', 0.0048249989737306409) +zone = ('mnz067', 0.0026283237079610089) + +[fips2714313348] +centroid = (0.7766103957070718, -1.6479525159168305) +description = Cornish township, MN +station = ('kulm', 0.0032906157630049277) +zone = ('mnz067', 0.0027577138386470951) + +[fips2714316426] +centroid = (0.77838707107243199, -1.6437430435604079) +description = Dryden township, MN +station = ('kgyl', 0.003013149713454804) +zone = ('mnz067', 0.00073103368844815153) + +[fips2714320] +centroid = (0.76917476949480035, -1.6697084813752527) +description = Currie city, MN +station = ('kdvp', 0.0020569145294206436) +zone = ('mnz080', 0.0014702240619364289) + +[fips2714320726] +centroid = (0.77918754888056663, -1.6378364130393461) +description = Faxon township, MN +station = ('kgyl', 0.0035612498480340226) +zone = ('mnz068', 0.0031199378024926545) + +[fips2714323300] +centroid = (0.77764097772378937, -1.6443157384478646) +description = Gaylord city, MN +station = ('kgyl', 0.0038611588213756888) +zone = ('mnz067', 0.00048485277934084297) + +[fips2714323678] +centroid = (0.77728882264061461, -1.6497486866099351) +description = Gibbon city, MN +station = ('kulm', 0.0038284289402822705) +zone = ('mnz075', 0.0047239175475159937) + +[fips2714324794] +centroid = (0.77981886937759803, -1.6505406821179052) +description = Grafton township, MN +station = ('khcd', 0.0039836512838757922) +zone = ('mnz067', 0.0045397212353469243) + +[fips2714325658] +centroid = (0.77986058274672077, -1.6406800605363279) +description = Green Isle city, MN +station = ('kgyl', 0.0015982000249135911) +zone = ('mnz068', 0.0034710475957028778) + +[fips2714325676] +centroid = (0.77992093623225467, -1.6416875867536267) +description = Green Isle township, MN +station = ('kgyl', 0.001243906800388238) +zone = ('mnz067', 0.0028181657356734771) + +[fips2714328394] +centroid = (0.77713800873994965, -1.6390336565463366) +description = Henderson city, MN +station = ('kgyl', 0.0045341417492882124) +zone = ('mnz076', 0.0035161039317605051) + +[fips2714328412] +centroid = (0.77666221453256357, -1.6403021967532712) +description = Henderson township, MN +station = ('kgyl', 0.0046440881597883616) +zone = ('mnz076', 0.003858711159913911) + +[fips2714331922] +centroid = (0.77831172520862335, -1.6397027110617961) +description = Jessenland township, MN +station = ('kgyl', 0.0032764419080507927) +zone = ('mnz068', 0.004351035155241813) + +[fips2714332714] +centroid = (0.77667106335187119, -1.6418239144214999) +description = Kelso township, MN +station = ('kgyl', 0.0044727294318223729) +zone = ('mnz067', 0.0024523428210010828) + +[fips2714336746] +centroid = (0.77637189646478677, -1.6390003905707935) +description = Le Sueur city, MN +station = ('kmkt', 0.0046467952420277594) +zone = ('mnz076', 0.0029485570144792469) + +[fips2714343612] +centroid = (0.77817304134625986, -1.650442524800773) +description = Moltke township, MN +station = ('kulm', 0.0047671717514476252) +zone = ('mnz066', 0.0054961366197844317) + +[fips2714345376] +centroid = (0.77968697484602478, -1.6446638094605899) +description = New Auburn city, MN +station = ('kgyl', 0.0023730976274627833) +zone = ('mnz067', 0.0016279227552883407) + +[fips2714345394] +centroid = (0.77965929392408828, -1.6439135273217427) +description = New Auburn township, MN +station = ('kgyl', 0.0019994328692677981) +zone = ('mnz067', 0.0016862174748292734) + +[fips2714359242] +centroid = (0.77675698591094677, -1.6502837347454267) +description = Severance township, MN +station = ('kulm', 0.0033542499208749632) +zone = ('mnz074', 0.0050712529391903332) + +[fips2714360124] +centroid = (0.77657842127517529, -1.6438504511225756) +description = Sibley township, MN +station = ('kgyl', 0.0047443976306185739) +zone = ('mnz067', 0.0015892093317335695) + +[fips2714365380] +centroid = (0.77820484124523126, -1.6460894816600815) +description = Transit township, MN +station = ('kgyl', 0.0041204227118664628) +zone = ('mnz067', 0.0010282126918545003) + +[fips2714368368] +centroid = (0.77955298591934918, -1.6394865694872292) +description = Washington Lake township, MN +station = ('kgyl', 0.0024037727496478566) +zone = ('mnz068', 0.0031796234255384746) + +[fips2714371122] +centroid = (0.77742806500833861, -1.6469139926520162) +description = Winthrop city, MN +station = ('kulm', 0.0043178935556544831) +zone = ('mnz067', 0.0017252089439625748) + +[fips2714428] +centroid = (0.81169139149911018, -1.6392017143000113) +description = Cuyuna city, MN +station = ('kbrd', 0.0031741906600755562) +zone = ('mnz034', 0.0018689471877451694) + +[fips2714446] +centroid = (0.79612682448250516, -1.6709413994121538) +description = Cyrus city, MN +station = ('kmox', 0.0029172429022112493) +zone = ('mnz047', 0.0032430410631324657) + +[fips27145] +centroid = (0.79508884226975907, -1.6512644177988298) +description = Stearns County, MN +station = ('kpex', 0.0036014519837261091) +zone = ('mnz049', 6.1261098556945179e-05) + +[fips2714500622] +centroid = (0.79633558331433618, -1.6504427342402832) +description = Albany city, MN +station = ('kpex', 0.0049731959098467289) +zone = ('mnz049', 0.0014339459101693325) + +[fips2714500640] +centroid = (0.79593715955269084, -1.651423033321251) +description = Albany township, MN +station = ('kd39', 0.00421591623120626) +zone = ('mnz049', 0.00090485460342323821) + +[fips2714502530] +centroid = (0.79800279162901122, -1.6593905660763604) +description = Ashley township, MN +station = ('kd39', 0.0017927750476710326) +zone = ('mnz041', 0.0058903623886460456) + +[fips2714503070] +centroid = (0.79596981466299566, -1.6484762368654764) +description = Avon city, MN +station = ('kstc', 0.0049910534326415056) +zone = ('mnz049', 0.0021912733884702613) + +[fips2714503088] +centroid = (0.79646854249675314, -1.6484677022054341) +description = Avon township, MN +station = ('kstc', 0.005104760740314046) +zone = ('mnz049', 0.0024502408980830166) + +[fips2714504762] +centroid = (0.79326287880632251, -1.6580590369367214) +description = Belgrade city, MN +station = ('kpex', 0.0033928198563403867) +zone = ('mnz057', 0.0052051977246561996) + +[fips2714507840] +centroid = (0.79795416675605058, -1.6460126697197013) +description = Brockway township, MN +station = ('klxl', 0.004054528619461162) +zone = ('mnz043', 0.0051416150601006853) + +[fips2714508092] +centroid = (0.79412433841852181, -1.6600821004325854) +description = Brooten city, MN +station = ('kghw', 0.003589483336868129) +zone = ('mnz048', 0.0042905082733976588) + +[fips2714511800] +centroid = (0.79280961679957962, -1.6416062369571911) +description = Clearwater city, MN +station = ('kstc', 0.0021895859848334066) +zone = ('mnz059', 0.0045262622873999637) + +[fips2714512484] +centroid = (0.79338175318167581, -1.648110171508163) +description = Cold Spring city, MN +station = ('kstc', 0.0049182883686848628) +zone = ('mnz049', 0.0027857148942277113) + +[fips2714512592] +centroid = (0.79501215250242641, -1.6483924959679657) +description = Collegeville township, MN +station = ('kstc', 0.0048391955650793671) +zone = ('mnz049', 0.0020420262023471882) + +[fips2714514032] +centroid = (0.79313793068517224, -1.659438929149933) +description = Crow Lake township, MN +station = ('kghw', 0.0046308725977318313) +zone = ('mnz057', 0.0051605859327573667) + +[fips2714514086] +centroid = (0.79335929079420275, -1.6569685901266604) +description = Crow River township, MN +station = ('kpex', 0.0027597948064197867) +zone = ('mnz057', 0.0053655980373163679) + +[fips2714518] +centroid = (0.76648095851410225, -1.5945336249267679) +description = Dakota city, MN +station = ('klse', 0.0014976205860539474) +zone = ('wiz041', 0.0030831859099463123) + +[fips2714518098] +centroid = (0.79182765965582258, -1.6506325911563153) +description = Eden Lake township, MN +station = ('kpex', 0.0021113334419400609) +zone = ('mnz049', 0.0032430370543887741) + +[fips2714518134] +centroid = (0.7911749588754543, -1.6501071423317097) +description = Eden Valley city, MN +station = ('kpex', 0.0025825398261943022) +zone = ('mnz058', 0.0036341499331189746) + +[fips2714519088] +centroid = (0.79522202834497868, -1.6571367700533826) +description = Elrosa city, MN +station = ('kd39', 0.0025762832133207269) +zone = ('mnz049', 0.0040852472209701512) + +[fips2714520294] +centroid = (0.79165495932633778, -1.6440208127108626) +description = Fair Haven township, MN +station = ('kmgg', 0.003347036079361819) +zone = ('mnz059', 0.0043049531545660442) + +[fips2714520600] +centroid = (0.79493998313785641, -1.6505854149066339) +description = Farming township, MN +station = ('kpex', 0.0037220517281239813) +zone = ('mnz049', 0.00051527786824867182) + +[fips2714522652] +centroid = (0.79697062136267427, -1.6526410462463403) +description = Freeport city, MN +station = ('kd39', 0.0030463226593001164) +zone = ('mnz049', 0.0021476595434018072) + +[fips2714523606] +centroid = (0.79631179447663136, -1.6573966670322968) +description = Getty township, MN +station = ('kd39', 0.0015283481201318343) +zone = ('mnz049', 0.0044475593894401115) + +[fips2714525874] +centroid = (0.79589302017590802, -1.6556084026807036) +description = Greenwald city, MN +station = ('kd39', 0.0020834755405965844) +zone = ('mnz049', 0.0031294950675942301) + +[fips2714526090] +centroid = (0.79627673081195893, -1.654979089312312) +description = Grove township, MN +station = ('kd39', 0.0019957745213912185) +zone = ('mnz049', 0.0028528269524827348) + +[fips2714529564] +centroid = (0.79801408390927164, -1.6484370542237692) +description = Holding township, MN +station = ('klxl', 0.0041416285806247441) +zone = ('mnz049', 0.0035916878974396158) + +[fips2714529582] +centroid = (0.79813344697681543, -1.6488408361462179) +description = Holdingford city, MN +station = ('klxl', 0.0041198937694524968) +zone = ('mnz049', 0.0035455898393071811) + +[fips2714533164] +centroid = (0.79088432664841224, -1.645859255278451) +description = Kimball city, MN +station = ('kljf', 0.0045610131460861354) +zone = ('mnz058', 0.0043476069401219191) + +[fips2714533722] +centroid = (0.79786922158135609, -1.6508232683770958) +description = Krain township, MN +station = ('k14y', 0.0047120538343241635) +zone = ('mnz049', 0.0028535820605512367) + +[fips2714534406] +centroid = (0.79496090963558785, -1.6569739482874639) +description = Lake George township, MN +station = ('kd39', 0.0028306173121621773) +zone = ('mnz049', 0.003968233432340847) + +[fips2714534478] +centroid = (0.79346409781578497, -1.6545110792733897) +description = Lake Henry city, MN +station = ('kpex', 0.0016852418941121223) +zone = ('mnz049', 0.0027401392609440974) + +[fips2714534496] +centroid = (0.79325912634843077, -1.6549196259446963) +description = Lake Henry township, MN +station = ('kpex', 0.0016349960584685322) +zone = ('mnz049', 0.0030924616470400473) + +[fips2714536656] +centroid = (0.79667567817237983, -1.6449342656814792) +description = Le Sauk township, MN +station = ('kstc', 0.0029411707785044652) +zone = ('mnz050', 0.0031729226719397429) + +[fips2714538618] +centroid = (0.79180113065119229, -1.6484249590920528) +description = Luxemburg township, MN +station = ('kljf', 0.004762470711725462) +zone = ('mnz049', 0.0038149533896280055) + +[fips2714538780] +centroid = (0.79227928105306855, -1.6425874959692475) +description = Lynden township, MN +station = ('kstc', 0.0028265505283606024) +zone = ('mnz059', 0.0042660961777835739) + +[fips2714539518] +centroid = (0.79149297531846008, -1.6461478629235606) +description = Maine Prairie township, MN +station = ('kstc', 0.004795313257733815) +zone = ('mnz058', 0.0047158818368452458) + +[fips2714541534] +centroid = (0.79631582618720353, -1.6557717480453977) +description = Meire Grove city, MN +station = ('kd39', 0.0016527488993961282) +zone = ('mnz049', 0.0033755633595468591) + +[fips2714541570] +centroid = (0.79721418205979011, -1.6548299858343141) +description = Melrose city, MN +station = ('kd39', 0.0015181653179754155) +zone = ('mnz049', 0.0032882985428324034) + +[fips2714541588] +centroid = (0.79810834914217177, -1.6552875064444317) +description = Melrose township, MN +station = ('kd39', 0.0011304065477795494) +zone = ('mnz049', 0.0041448717904343487) + +[fips2714542308] +centroid = (0.79783059744500939, -1.6528269063583851) +description = Millwood township, MN +station = ('k14y', 0.0038523415848931344) +zone = ('mnz049', 0.0029896536597348025) + +[fips2714544800] +centroid = (0.79328616149854414, -1.6507404699573811) +description = Munson township, MN +station = ('kpex', 0.0024635866925317679) +zone = ('mnz049', 0.0017944112108397548) + +[fips2714545772] +centroid = (0.79640827627768174, -1.653743902347383) +description = New Munich city, MN +station = ('kd39', 0.0025677067420080391) +zone = ('mnz049', 0.0021881904310831484) + +[fips2714546960] +centroid = (0.79487592955430819, -1.6592597885555085) +description = North Fork township, MN +station = ('kd39', 0.0033694159853360152) +zone = ('mnz048', 0.0046541857992209862) + +[fips2714547644] +centroid = (0.79633111527145106, -1.6529286241471914) +description = Oak township, MN +station = ('kd39', 0.00309893668498062) +zone = ('mnz049', 0.0017214167047984062) + +[fips2714549966] +centroid = (0.79200475821502236, -1.6532031469852377) +description = Paynesville city, MN +station = ('kpex', 0.00032366926010378476) +zone = ('mnz049', 0.0033096196573110946) + +[fips2714549984] +centroid = (0.79171103675520427, -1.6526945231346213) +description = Paynesville township, MN +station = ('kpex', 0.00068676193484643608) +zone = ('mnz049', 0.0034640895189112912) + +[fips2714553314] +centroid = (0.79632455283346348, -1.6595907204349789) +description = Raymond township, MN +station = ('kd39', 0.0024165495088892658) +zone = ('mnz048', 0.0044141293326481748) + +[fips2714554268] +centroid = (0.79334864428576557, -1.6495986232008488) +description = Richmond city, MN +station = ('kpex', 0.0031856327707883159) +zone = ('mnz049', 0.002069453380267405) + +[fips2714555078] +centroid = (0.7935327241619734, -1.6461755089389125) +description = Rockville city, MN +station = ('kstc', 0.0036005449132858708) +zone = ('mnz049', 0.0038985164498222058) + +[fips2714555510] +centroid = (0.79294611900037804, -1.6517191633354369) +description = Roscoe city, MN +station = ('kpex', 0.0017081317964329399) +zone = ('mnz049', 0.0021095006620891719) + +[fips2714556698] +centroid = (0.7974230630646687, -1.6512827263026832) +description = St. Anthony city, MN +station = ('k14y', 0.0048170944446846164) +zone = ('mnz049', 0.0023872588870862931) + +[fips2714556724] +centroid = (0.79326040043878476, -1.6440341993862255) +description = St. Augusta city, MN +station = ('kstc', 0.0024933933291525589) +zone = ('mnz050', 0.0049639958690296856) + +[fips2714556896] +centroid = (0.79458681576371537, -1.6438981684243252) +description = St. Cloud city, MN +station = ('kstc', 0.0017413655523141726) +zone = ('mnz050', 0.0037989209378139557) + +[fips2714557130] +centroid = (0.79517068075838504, -1.6459902247855207) +description = St. Joseph city, MN +station = ('kstc', 0.0031614044485769911) +zone = ('mnz050', 0.0044899482650928701) + +[fips2714557148] +centroid = (0.79474958516975636, -1.6463658720004273) +description = St. Joseph township, MN +station = ('kstc', 0.0034293980709356664) +zone = ('mnz049', 0.0034733478104911194) + +[fips2714557238] +centroid = (0.79417343453038047, -1.6522581384617452) +description = St. Martin city, MN +station = ('kpex', 0.0024755067683655983) +zone = ('mnz049', 0.0010892785022859576) + +[fips2714557256] +centroid = (0.79491519946247802, -1.652811250754995) +description = St. Martin township, MN +station = ('kpex', 0.0030754892511299205) +zone = ('mnz049', 0.0010593693381387951) + +[fips2714558072] +centroid = (0.79808283242850775, -1.6530623163678941) +description = St. Rosa city, MN +station = ('k14y', 0.0035513795248593894) +zone = ('mnz049', 0.0032844794535990588) + +[fips2714558090] +centroid = (0.7976310714049214, -1.6453941599393795) +description = St. Stephen city, MN +station = ('kstc', 0.0037974508541367916) +zone = ('mnz050', 0.0033552350599460349) + +[fips2714558198] +centroid = (0.79650828364382098, -1.6464144096069255) +description = St. Wendel township, MN +station = ('kstc', 0.0037675160305851141) +zone = ('mnz050', 0.0042137978991157185) + +[fips2714558612] +centroid = (0.79617237757598214, -1.6445090336625232) +description = Sartell city, MN +station = ('kstc', 0.0024224052524863073) +zone = ('mnz050', 0.0030885686357397472) + +[fips2714558648] +centroid = (0.79827431250074399, -1.6572382784026785) +description = Sauk Centre city, MN +station = ('kd39', 0.00055808241106775308) +zone = ('mnz042', 0.0058478433970828251) + +[fips2714558666] +centroid = (0.79762946570200965, -1.6576618349055525) +description = Sauk Centre township, MN +station = ('kd39', 0.00059524370711835949) +zone = ('mnz049', 0.0051447630081816863) + +[fips2714561888] +centroid = (0.79453014492290308, -1.6551245275988806) +description = Spring Hill city, MN +station = ('kpex', 0.0028347206384032081) +zone = ('mnz049', 0.002720411320972573) + +[fips2714561906] +centroid = (0.79486687129549027, -1.6549420883321697) +description = Spring Hill township, MN +station = ('kpex', 0.0031101041898274032) +zone = ('mnz049', 0.0025503719288021646) + +[fips2714567612] +centroid = (0.79447110043430813, -1.6448565985297654) +description = Waite Park city, MN +station = ('kstc', 0.0024216061188524979) +zone = ('mnz050', 0.0043238335261541255) + +[fips2714567630] +centroid = (0.79354150316811101, -1.6486627078427594) +description = Wakefield township, MN +station = ('kpex', 0.0038600492995158921) +zone = ('mnz049', 0.0023813144632732048) + +[fips2714572256] +centroid = (0.79322901941883384, -1.6526800718084149) +description = Zion township, MN +station = ('kpex', 0.0014937420710367862) +zone = ('mnz049', 0.0020467216596553378) + +[fips2714626] +centroid = (0.80588637404709951, -1.674040702737968) +description = Dalton city, MN +station = ('ky63', 0.0034257975026657449) +zone = ('mnz030', 0.0042355597257306421) + +[fips27147] +centroid = (0.76821122557465193, -1.6270038350506257) +description = Steele County, MN +station = ('kowa', 0.001808236149772094) +zone = ('mnz085', 0.00014120885225280753) + +[fips2714702890] +centroid = (0.76747621506675956, -1.6250512304966642) +description = Aurora township, MN +station = ('kowa', 0.0030695550328963578) +zone = ('mnz085', 0.0017057094853302887) + +[fips2714705374] +centroid = (0.76609321616747927, -1.629211728914276) +description = Berlin township, MN +station = ('kael', 0.0036836023044301077) +zone = ('mnz085', 0.0027075483727757696) + +[fips2714706580] +centroid = (0.76564793031541789, -1.6241269913912708) +description = Blooming Prairie city, MN +station = ('kaum', 0.0038434167240472055) +zone = ('mnz085', 0.0034350303559965256) + +[fips2714706598] +centroid = (0.76607701951202067, -1.6250776547815395) +description = Blooming Prairie township, MN +station = ('kowa', 0.0042809643329345132) +zone = ('mnz085', 0.0026860759033582259) + +[fips2714712052] +centroid = (0.77027778267547575, -1.627026716317119) +description = Clinton Falls township, MN +station = ('kowa', 0.00046169966303309537) +zone = ('mnz085', 0.0019444288958813613) + +[fips2714715256] +centroid = (0.770557611314448, -1.6290217498251964) +description = Deerfield township, MN +station = ('kowa', 0.0012226406069077329) +zone = ('mnz085', 0.0026169200757772586) + +[fips2714716] +centroid = (0.78175112339248098, -1.6598680532531207) +description = Danube city, MN +station = ('kovl', 0.00090174194983153543) +zone = ('mnz065', 0.0022374279257593751) + +[fips2714718746] +centroid = (0.76571852888366099, -1.6283361844950131) +description = Ellendale city, MN +station = ('kael', 0.0034159772512944069) +zone = ('mnz085', 0.0027626827734695144) + +[fips2714727638] +centroid = (0.76898835087739481, -1.6248243551471977) +description = Havana township, MN +station = ('kowa', 0.0021755636893377511) +zone = ('mnz085', 0.0017622521097061454) + +[fips2714734] +centroid = (0.79030089798605552, -1.6712532548429004) +description = Danvers city, MN +station = ('kbbb', 0.0014405973209762348) +zone = ('mnz055', 0.00091368952031499159) + +[fips2714736386] +centroid = (0.76754318335015848, -1.6291368019294878) +description = Lemond township, MN +station = ('kowa', 0.0027008648859486186) +zone = ('mnz085', 0.0016645862006256847) + +[fips2714741426] +centroid = (0.77088620445272094, -1.6274860869762442) +description = Medford city, MN +station = ('kowa', 0.00090543417564958645) +zone = ('mnz085', 0.0025670935276204741) + +[fips2714741444] +centroid = (0.77101317715580353, -1.6270397888332166) +description = Medford township, MN +station = ('kowa', 0.0010879847541797334) +zone = ('mnz085', 0.0026794543274203959) + +[fips2714741750] +centroid = (0.7689715957165757, -1.6290290278481772) +description = Meriden township, MN +station = ('kowa', 0.0014814329991955349) +zone = ('mnz085', 0.0015257812706879462) + +[fips2714741840] +centroid = (0.77047886205859806, -1.6246506076201614) +description = Merton township, MN +station = ('kowa', 0.0021184789834008469) +zone = ('mnz085', 0.0027744215324780812) + +[fips2714749300] +centroid = (0.76956066179241633, -1.627174667877811) +description = Owatonna city, MN +station = ('kowa', 0.00048793521387035675) +zone = ('mnz085', 0.0012277353787814686) + +[fips2714749318] +centroid = (0.7689098634209327, -1.6269502359892969) +description = Owatonna township, MN +station = ('kowa', 0.0011466204417287078) +zone = ('mnz085', 0.00058584876897539836) + +[fips2714761150] +centroid = (0.76751450759054818, -1.626924998528313) +description = Somerset township, MN +station = ('kowa', 0.0025033251482762023) +zone = ('mnz085', 0.00082925463212241493) + +[fips2714763364] +centroid = (0.765995861701803, -1.6270582020568252) +description = Summit township, MN +station = ('kowa', 0.003999018100118215) +zone = ('mnz085', 0.0023384172489900302) + +[fips2714770] +centroid = (0.76888410236117333, -1.6551948992743211) +description = Darfur city, MN +station = ('kjyg', 0.0036777301704532506) +zone = ('mnz082', 0.0030776560538939186) + +[fips2714842] +centroid = (0.78707388891887309, -1.6478402737926348) +description = Darwin city, MN +station = ('kljf', 0.0011451304413396869) +zone = ('mnz058', 0.0014712507553771336) + +[fips2714878] +centroid = (0.78686809714677042, -1.6461448435039547) +description = Dassel city, MN +station = ('kljf', 0.0023529708791649147) +zone = ('mnz058', 0.0026774566249471656) + +[fips27149] +centroid = (0.7957560118296263, -1.6753819533615406) +description = Stevens County, MN +station = ('kmox', 0.0005629046094430425) +zone = ('mnz047', 0.00016129727794479906) + +[fips2714900676] +centroid = (0.79543476652750422, -1.676399096343018) +description = Alberta city, MN +station = ('kmox', 0.0010357914695191509) +zone = ('mnz047', 0.00064389555910135019) + +[fips2714903232] +centroid = (0.79473368522027066, -1.678466002509692) +description = Baker township, MN +station = ('kmox', 0.0025346029628510679) +zone = ('mnz047', 0.0022471613647563294) + +[fips2714911440] +centroid = (0.79540214632378448, -1.6785643343597494) +description = Chokio city, MN +station = ('kmox', 0.0025437045082196217) +zone = ('mnz047', 0.0021417517708033807) + +[fips2714914824] +centroid = (0.79476892341786842, -1.6745371267371127) +description = Darnen township, MN +station = ('kmox', 0.00058921414136042457) +zone = ('mnz047', 0.0011009283256048226) + +[fips2714916084] +centroid = (0.79742812451949963, -1.6757661875963672) +description = Donnelly city, MN +station = ('kmox', 0.0022174333880941996) +zone = ('mnz047', 0.0018087079796958979) + +[fips2714916102] +centroid = (0.79803666846979238, -1.676881400628514) +description = Donnelly township, MN +station = ('kmox', 0.0030669314923951084) +zone = ('mnz047', 0.002589917105797953) + +[fips2714918494] +centroid = (0.79779560359350699, -1.6786644638989365) +description = Eldorado township, MN +station = ('kmox', 0.0036177668304579152) +zone = ('mnz047', 0.0030868141423650861) + +[fips2714919970] +centroid = (0.79625233110901605, -1.6786886192557842) +description = Everglade township, MN +station = ('kmox', 0.0027982996516746511) +zone = ('mnz047', 0.00230228524359444) + +[fips2714922274] +centroid = (0.7964542482501793, -1.6722644811582135) +description = Framnas township, MN +station = ('kmox', 0.0022019584947318366) +zone = ('mnz047', 0.0024236460277931625) + +[fips2714926936] +centroid = (0.79407887259150745, -1.6719402164364854) +description = Hancock city, MN +station = ('kmox', 0.0024211384262492397) +zone = ('mnz047', 0.0029477539405198213) + +[fips2714929438] +centroid = (0.795104515326442, -1.6725125797113842) +description = Hodges township, MN +station = ('kmox', 0.0017054958535513509) +zone = ('mnz047', 0.0021701556012781228) + +[fips2714930212] +centroid = (0.79322552876032992, -1.6741574478116339) +description = Horton township, MN +station = ('kmox', 0.0021334691073959973) +zone = ('mnz047', 0.002585135369167703) + +[fips2714943846] +centroid = (0.79333818976354609, -1.6721910377032894) +description = Moore township, MN +station = ('kmox', 0.0027384008993176514) +zone = ('mnz047', 0.0032689044070090783) + +[fips2714944242] +centroid = (0.79559816425207608, -1.6737176422934239) +description = Morris city, MN +station = ('kmox', 0.00090622474209306795) +zone = ('mnz047', 0.0012626388549549805) + +[fips2714944260] +centroid = (0.79646149136657496, -1.6746840660068383) +description = Morris township, MN +station = ('kmox', 0.0011861219322959078) +zone = ('mnz047', 0.0010190735127528353) + +[fips2714950380] +centroid = (0.79625137117792733, -1.676872639075669) +description = Pepperton township, MN +station = ('kmox', 0.0016634266626921474) +zone = ('mnz047', 0.0011326756923902546) + +[fips2714953818] +centroid = (0.79802033218799373, -1.674355560135028) +description = Rendsville township, MN +station = ('kmox', 0.0027617677663876925) +zone = ('mnz047', 0.0025277324629614287) + +[fips2714959044] +centroid = (0.79473982877923766, -1.6763121789462685) +description = Scott township, MN +station = ('kmox', 0.0011099106373186694) +zone = ('mnz047', 0.0010462496580689326) + +[fips2714962752] +centroid = (0.79330982816320117, -1.678630307805475) +description = Stevens township, MN +station = ('kmox', 0.0032593277805179556) +zone = ('mnz047', 0.0031807245710378539) + +[fips2714963724] +centroid = (0.79772547626416179, -1.6725583073377868) +description = Swan Lake township, MN +station = ('kmox', 0.0029494902954018565) +zone = ('mnz047', 0.0029482270929662401) + +[fips2714963976] +centroid = (0.7933495867635616, -1.676312458198949) +description = Synnes township, MN +station = ('kmox', 0.0021660009333477601) +zone = ('mnz047', 0.0023444240283539432) + +[fips2714968] +centroid = (0.78415433705272197, -1.6763700715175571) +description = Dawson city, MN +station = ('kdxx', 0.0018802097809609438) +zone = ('mnz054', 0.0019298951032272341) + +[fips2715022] +centroid = (0.78869887771894243, -1.6313876134394447) +description = Dayton city, MN +station = ('kmic', 0.0026096829682418646) +zone = ('mnz061', 0.0031332629217312954) + +[fips27151] +centroid = (0.79020567282206666, -1.6701125076437968) +description = Swift County, MN +station = ('kbbb', 0.00087377742857394213) +zone = ('mnz055', 0.00016799657639159866) + +[fips2715101864] +centroid = (0.78888414441904153, -1.6759230054296588) +description = Appleton city, MN +station = ('kaqp', 0.00053880214836839104) +zone = ('mnz054', 0.0040161538378172337) + +[fips2715101882] +centroid = (0.78883576389217624, -1.6765121936785472) +description = Appleton township, MN +station = ('kaqp', 0.00084099943864355522) +zone = ('mnz054', 0.0037974834886224293) + +[fips2715105212] +centroid = (0.79089341981381511, -1.6686589799894436) +description = Benson city, MN +station = ('kbbb', 0.00052725803926276173) +zone = ('mnz055', 0.0010708063429321073) + +[fips2715105230] +centroid = (0.79184855124696896, -1.667776838225608) +description = Benson township, MN +station = ('kbbb', 0.0014718577776585483) +zone = ('mnz055', 0.0021553367985336401) + +[fips2715109532] +centroid = (0.79186511442157037, -1.6658607459595984) +description = Camp Lake township, MN +station = ('kbbb', 0.0026641668469586065) +zone = ('mnz055', 0.0032615277015649569) + +[fips2715110216] +centroid = (0.7886428351966609, -1.6674274756692362) +description = Cashel township, MN +station = ('kbbb', 0.0026742041430985256) +zone = ('mnz055', 0.0024542222202108138) + +[fips2715112124] +centroid = (0.79201137301288749, -1.6699215511703362) +description = Clontarf city, MN +station = ('kbbb', 0.0011448479705341388) +zone = ('mnz055', 0.0016793330514460443) + +[fips2715112142] +centroid = (0.79160893499396268, -1.6699386379437131) +description = Clontarf township, MN +station = ('kbbb', 0.00077919725280376471) +zone = ('mnz055', 0.0012767806129610007) + +[fips2715114734] +centroid = (0.79030089798605552, -1.6712532548429004) +description = Danvers city, MN +station = ('kbbb', 0.0014405973209762348) +zone = ('mnz055', 0.00091368952031499159) + +[fips2715115418] +centroid = (0.78993231935461938, -1.666239971099472) +description = De Graff city, MN +station = ('kbbb', 0.0024395525101194686) +zone = ('mnz055', 0.0026451832740033506) + +[fips2715116444] +centroid = (0.78869290869290054, -1.6654031206297255) +description = Dublin township, MN +station = ('kbbb', 0.0035956792555342692) +zone = ('mnz056', 0.0034173258613731466) + +[fips2715118206] +centroid = (0.78868093573423192, -1.6739259822462345) +description = Edison township, MN +station = ('kaqp', 0.0013585286122306205) +zone = ('mnz055', 0.0032472195945515863) + +[fips2715120258] +centroid = (0.79180963040464947, -1.6744457063908933) +description = Fairfield township, MN +station = ('kaqp', 0.0025698766841979657) +zone = ('mnz047', 0.0038916912669067268) + +[fips2715127854] +centroid = (0.79045286380402668, -1.663771517031791) +description = Hayes township, MN +station = ('kbdh', 0.0038258598289659081) +zone = ('mnz048', 0.0053690616314471147) + +[fips2715128160] +centroid = (0.79179097283494571, -1.6763334894164355) +description = Hegbert township, MN +station = ('kaqp', 0.002478182038293092) +zone = ('mnz047', 0.0038786029802096483) + +[fips2715129672] +centroid = (0.78964468909389063, -1.6738858047668537) +description = Holloway city, MN +station = ('kaqp', 0.0012305726571403249) +zone = ('mnz055', 0.0028505373837133291) + +[fips2715132876] +centroid = (0.78874099251379304, -1.6636124477237644) +description = Kerkhoven city, MN +station = ('kbdh', 0.0026288623258049256) +zone = ('mnz056', 0.0042548560803090524) + +[fips2715132894] +centroid = (0.79185532312446671, -1.6635281134143083) +description = Kerkhoven township, MN +station = ('kbbb', 0.004235736028944676) +zone = ('mnz048', 0.0040988700433183048) + +[fips2715133092] +centroid = (0.79037048426333245, -1.6655340203236253) +description = Kildare township, MN +station = ('kbbb', 0.0027803624760672834) +zone = ('mnz055', 0.0031111421308363) + +[fips2715140904] +centroid = (0.79026693387881164, -1.6722647080510162) +description = Marysland township, MN +station = ('kbbb', 0.0021148727235992511) +zone = ('mnz055', 0.0016261703227837291) + +[fips2715144674] +centroid = (0.79045989748091217, -1.6745190102194769) +description = Moyer township, MN +station = ('kaqp', 0.001325738162118269) +zone = ('mnz055', 0.0032132838424630572) + +[fips2715144818] +centroid = (0.78929256891730071, -1.6649300142293875) +description = Murdock city, MN +station = ('kbbb', 0.0035488212618216531) +zone = ('mnz056', 0.0041027428237394937) + +[fips2715148] +centroid = (0.78416665907724104, -1.6322884302262768) +description = Deephaven city, MN +station = ('kfcm', 0.0018187906155233554) +zone = ('mnz060', 0.001430051054252944) + +[fips2715150920] +centroid = (0.78879249718001943, -1.6632749708595989) +description = Pillsbury township, MN +station = ('kbdh', 0.0024489657740431017) +zone = ('mnz056', 0.0044638367980757258) + +[fips2715159818] +centroid = (0.79007491275450725, -1.676495037092) +description = Shible township, MN +station = ('kaqp', 0.00095167814291987067) +zone = ('mnz054', 0.0049701807405048556) + +[fips2715160592] +centroid = (0.79020567282206666, -1.6701125076437968) +description = Six Mile Grove township, MN +station = ('kbbb', 0.00087377742857394213) +zone = ('mnz055', 0.00016799657639159866) + +[fips2715163904] +centroid = (0.78869467147544514, -1.6700901150694938) +description = Swenoda township, MN +station = ('kbbb', 0.0022815595990577781) +zone = ('mnz055', 0.0016402806939064165) + +[fips2715164228] +centroid = (0.79169758026667147, -1.6720222992712066) +description = Tara township, MN +station = ('kbbb', 0.0019937801311717611) +zone = ('mnz055', 0.0019940284832192499) + +[fips2715165236] +centroid = (0.79018507793689319, -1.6676942143388185) +description = Torning township, MN +station = ('kbbb', 0.0014141993652430915) +zone = ('mnz055', 0.0015979415434014762) + +[fips2715169214] +centroid = (0.78868166877251777, -1.6717906591728819) +description = West Bank township, MN +station = ('kbbb', 0.0028013528336291891) +zone = ('mnz055', 0.0020962863781873089) + +[fips2715184] +centroid = (0.809667891670933, -1.6636905512077911) +description = Deer Creek city, MN +station = ('kadc', 0.0016999849086277129) +zone = ('mnz031', 0.0017214967497058843) + +[fips27153] +centroid = (0.80401330414715166, -1.6563275132391102) +description = Todd County, MN +station = ('k14y', 0.0029361201662175922) +zone = ('mnz042', 7.9046477606171261e-05) + +[fips2715303790] +centroid = (0.80852918650705441, -1.6574879302988836) +description = Bartlett township, MN +station = ('ksaz', 0.0021616022889313852) +zone = ('mnz042', 0.0045240357216930049) + +[fips2715305482] +centroid = (0.80750232204164352, -1.6591599731755868) +description = Bertha city, MN +station = ('kadc', 0.0036698421914973436) +zone = ('mnz042', 0.0039594815962663557) + +[fips2715305500] +centroid = (0.80699025989240081, -1.6595326009708877) +description = Bertha township, MN +station = ('kadc', 0.0040206927160082199) +zone = ('mnz042', 0.0036795181162994897) + +[fips2715306022] +centroid = (0.79965746847965691, -1.6551487876754833) +description = Birchdale township, MN +station = ('k14y', 0.0015052154683553661) +zone = ('mnz042', 0.0044950043523951395) + +[fips2715308110] +centroid = (0.80426049512911157, -1.6556992994281474) +description = Browerville city, MN +station = ('k14y', 0.0031544697547255993) +zone = ('mnz042', 0.00043713069218738996) + +[fips2715308272] +centroid = (0.80263986965217227, -1.6531854318933297) +description = Bruce township, MN +station = ('k14y', 0.0023445952517100578) +zone = ('mnz042', 0.0025860215257337955) + +[fips2715308668] +centroid = (0.80401641083322029, -1.6596450001747161) +description = Burleene township, MN +station = ('k14y', 0.0039810622522675537) +zone = ('mnz042', 0.002338661032589515) + +[fips2715308722] +centroid = (0.80105549466379689, -1.652798771650843) +description = Burnhamville township, MN +station = ('k14y', 0.0020445147498774595) +zone = ('mnz042', 0.0038737959522022903) + +[fips2715308902] +centroid = (0.80051030616535146, -1.6526063316475184) +description = Burtrum city, MN +station = ('k14y', 0.0022584369230269326) +zone = ('mnz042', 0.004390103111067651) + +[fips2715310] +centroid = (0.82625630373334302, -1.6370534059770239) +description = Deer River city, MN +station = ('kgpz', 0.0039583375448271479) +zone = ('mnz026', 0.0040679497639941522) + +[fips2715311602] +centroid = (0.80509340115474837, -1.6571769649860559) +description = Clarissa city, MN +station = ('k14y', 0.0041109894540909573) +zone = ('mnz042', 0.001187537899965388) + +[fips2715317342] +centroid = (0.80571643133783277, -1.6586585400814888) +description = Eagle Bend city, MN +station = ('ksaz', 0.0046725638602157392) +zone = ('mnz042', 0.0023226058931161433) + +[fips2715317450] +centroid = (0.80548964325482864, -1.6573439406355943) +description = Eagle Valley township, MN +station = ('ksaz', 0.0044089548032566509) +zone = ('mnz042', 0.0015891425089175942) + +[fips2715320708] +centroid = (0.8069556500133338, -1.653030917894651) +description = Fawn Lake township, MN +station = ('ksaz', 0.0027885272661494907) +zone = ('mnz042', 0.0036469757819857069) + +[fips2715323552] +centroid = (0.80700514755092034, -1.657332927608014) +description = Germania township, MN +station = ('ksaz', 0.003090684924399859) +zone = ('mnz042', 0.003011906400733292) + +[fips2715324578] +centroid = (0.80081575623774304, -1.6592534704636159) +description = Gordon township, MN +station = ('k14y', 0.0024655968551559999) +zone = ('mnz042', 0.0038680646150420586) + +[fips2715326000] +centroid = (0.79978568036650854, -1.6536848054989106) +description = Grey Eagle city, MN +station = ('k14y', 0.0019450822091985718) +zone = ('mnz042', 0.0046602205025732934) + +[fips2715326018] +centroid = (0.79971721109995275, -1.6529531809297668) +description = Grey Eagle township, MN +station = ('k14y', 0.0023841186322697818) +zone = ('mnz049', 0.0048202941846092967) + +[fips2715327368] +centroid = (0.80395968763253045, -1.6549895263812389) +description = Hartford township, MN +station = ('k14y', 0.0029002839333896581) +zone = ('mnz042', 0.00090085020812016923) + +[fips2715328754] +centroid = (0.80850571182861508, -1.659636308435041) +description = Hewitt city, MN +station = ('kadc', 0.0026402386130672645) +zone = ('mnz032', 0.0047950012545539657) + +[fips2715331130] +centroid = (0.80408104037542161, -1.6575218944061274) +description = Iona township, MN +station = ('k14y', 0.0032234343287318038) +zone = ('mnz042', 0.00086466787130251696) + +[fips2715332408] +centroid = (0.79972354664513745, -1.6573865441226352) +description = Kandota township, MN +station = ('k14y', 0.0017981315617805853) +zone = ('mnz042', 0.0044280166239748014) + +[fips2715336674] +centroid = (0.80238426618321779, -1.6595464065252707) +description = Leslie township, MN +station = ('k14y', 0.0029422939056871888) +zone = ('mnz042', 0.0028366056054379609) + +[fips2715337538] +centroid = (0.803982464179269, -1.6528247945099901) +description = Little Elk township, MN +station = ('k14y', 0.0035163456444707889) +zone = ('mnz042', 0.0023963138880875889) + +[fips2715337718] +centroid = (0.80082683907849306, -1.6572323442832217) +description = Little Sauk township, MN +station = ('k14y', 0.0010784853016239232) +zone = ('mnz042', 0.0033239983988616524) + +[fips2715338060] +centroid = (0.80248048618488022, -1.6556754233239801) +description = Long Prairie city, MN +station = ('k14y', 0.0013749982619945429) +zone = ('mnz042', 0.001656445056207952) + +[fips2715338078] +centroid = (0.80236803462117423, -1.6550778749479746) +description = Long Prairie township, MN +station = ('k14y', 0.0013422738053473827) +zone = ('mnz042', 0.0019065768993342554) + +[fips2715344062] +centroid = (0.80696175866571584, -1.6553119236006673) +description = Moran township, MN +station = ('ksaz', 0.0025727925378623302) +zone = ('mnz042', 0.0029545027259171171) + +[fips2715346] +centroid = (0.8110031907217562, -1.6388396457466849) +description = Deerwood city, MN +station = ('kbrd', 0.0030565686225959778) +zone = ('mnz034', 0.0020882768782523489) + +[fips2715348796] +centroid = (0.80053439170902896, -1.6603708651573279) +description = Osakis city, MN +station = ('kaxn', 0.0032541173896182348) +zone = ('mnz041', 0.0040706925346306365) + +[fips2715353926] +centroid = (0.80252041931816576, -1.6574005591165288) +description = Reynolds township, MN +station = ('k14y', 0.0018277407501923163) +zone = ('mnz042', 0.0017475294809526512) + +[fips2715356122] +centroid = (0.80090335431290061, -1.6549670814470583) +description = Round Prairie township, MN +station = ('k14y', 0.00057207802505700026) +zone = ('mnz042', 0.0033077395476972067) + +[fips2715362446] +centroid = (0.80913207559057077, -1.6545978919503836) +description = Staples city, MN +station = ('ksaz', 0.00037147304510040153) +zone = ('mnz032', 0.0044300658060663868) + +[fips2715362464] +centroid = (0.8083173908023249, -1.6554342188213547) +description = Staples township, MN +station = ('ksaz', 0.0012881851951792077) +zone = ('mnz042', 0.004273605585158935) + +[fips2715363058] +centroid = (0.80875948270185494, -1.6603158523793051) +description = Stowe Prairie township, MN +station = ('kadc', 0.0021849057889569683) +zone = ('mnz032', 0.0047238440321249612) + +[fips2715363778] +centroid = (0.8013135066871192, -1.6518584231564535) +description = Swanville city, MN +station = ('k14y', 0.0027059041165097288) +zone = ('mnz042', 0.0041342260894507909) + +[fips2715365740] +centroid = (0.80561696502376157, -1.6532327128627664) +description = Turtle Creek township, MN +station = ('ksaz', 0.0040096222298037091) +zone = ('mnz042', 0.0026077688801622589) + +[fips2715367162] +centroid = (0.80854894363418695, -1.6534841449948086) +description = Villard township, MN +station = ('ksaz', 0.0012618040646852748) +zone = ('mnz033', 0.0047172333640886389) + +[fips2715368098] +centroid = (0.80560560293033112, -1.6553264621933363) +description = Ward township, MN +station = ('ksaz', 0.0039175508281328337) +zone = ('mnz042', 0.0016580731776519079) + +[fips2715369736] +centroid = (0.79941293039816008, -1.6595225304211034) +description = West Union city, MN +station = ('kd39', 0.0024767146493183366) +zone = ('mnz041', 0.0050407103296431551) + +[fips2715369754] +centroid = (0.79956578633404973, -1.6594116147471392) +description = West Union township, MN +station = ('kd39', 0.0025237964524857438) +zone = ('mnz042', 0.0050166712829558145) + +[fips2715371932] +centroid = (0.80559008695328094, -1.6594465213321794) +description = Wykeham township, MN +station = ('ksaz', 0.0051080262784847291) +zone = ('mnz042', 0.0026648404777437681) + +[fips2715418] +centroid = (0.78993231935461938, -1.666239971099472) +description = De Graff city, MN +station = ('kbbb', 0.0024395525101194686) +zone = ('mnz055', 0.0026451832740033506) + +[fips2715454] +centroid = (0.78605756624214429, -1.6369761227977455) +description = Delano city, MN +station = ('kcfe', 0.0022059609429078628) +zone = ('mnz059', 0.0031765473846148504) + +[fips2715472] +centroid = (0.76389050593170726, -1.6409224169562597) +description = Delavan city, MN +station = ('kfrm', 0.00543386305917435) +zone = ('mnz092', 0.0018602537742695038) + +[fips27155] +centroid = (0.79883440611100143, -1.6838072510728628) +description = Traverse County, MN +station = ('keth', 0.00071175577341889035) +zone = ('mnz039', 5.761001678005096e-05) + +[fips2715502314] +centroid = (0.79650976717368516, -1.6878060447352772) +description = Arthur township, MN +station = ('keth', 0.0030798443746647489) +zone = ('mnz039', 0.0036910766581352097) + +[fips2715508200] +centroid = (0.79577709540699049, -1.6900517424305257) +description = Browns Valley city, MN +station = ('k8d3', 0.0022255295202401231) +zone = ('sdz008', 0.001511291315524872) + +[fips2715511944] +centroid = (0.79941081854976515, -1.6811035615285985) +description = Clifton township, MN +station = ('keth', 0.0026706288161768722) +zone = ('mnz039', 0.0019199813325278471) + +[fips2715513762] +centroid = (0.79788908342824372, -1.6833496431962824) +description = Croke township, MN +station = ('keth', 0.0013606841434926143) +zone = ('mnz039', 0.0010230757064568635) + +[fips2715516012] +centroid = (0.79789374345734654, -1.6811010657077683) +description = Dollymount township, MN +station = ('keth', 0.0027452419993690058) +zone = ('mnz039', 0.0020905336643524328) + +[fips2715517090] +centroid = (0.79791625820469725, -1.6829044446106838) +description = Dumont city, MN +station = ('keth', 0.0015937187514722553) +zone = ('mnz039', 0.0011237224707869326) + +[fips2715521554] +centroid = (0.79625973130504435, -1.6893426151554405) +description = Folsom township, MN +station = ('k8d3', 0.0024572068025290506) +zone = ('sdz008', 0.001882734431042923) + +[fips2715535126] +centroid = (0.79929564427242594, -1.6846119002179099) +description = Lake Valley township, MN +station = ('keth', 0.00053747883232406815) +zone = ('mnz039', 0.00073597086396722628) + +[fips2715536512] +centroid = (0.79637513247518632, -1.6810936306051547) +description = Leonardsville township, MN +station = ('keth', 0.0035452596680961186) +zone = ('mnz039', 0.0031109227527361359) + +[fips2715543684] +centroid = (0.80081270191155196, -1.6838947967881428) +description = Monson township, MN +station = ('keth', 0.0021343834520906567) +zone = ('mnz039', 0.0019415826501203203) + +[fips2715544] +centroid = (0.77838054354102948, -1.6617846516646133) +description = Delhi city, MN +station = ('krwf', 0.001818880674821422) +zone = ('mnz073', 0.0034273457004284445) + +[fips2715549858] +centroid = (0.79644126300054441, -1.6857002177262834) +description = Parnell township, MN +station = ('keth', 0.0024164404320498375) +zone = ('mnz039', 0.0027889313439159098) + +[fips2715553548] +centroid = (0.80094103597145105, -1.6811073663463678) +description = Redpath township, MN +station = ('keth', 0.003373878896728627) +zone = ('mnz039', 0.0027669732406999624) + +[fips2715564246] +centroid = (0.79602683456965828, -1.6835512112715953) +description = Tara township, MN +station = ('keth', 0.0028923528094495473) +zone = ('mnz039', 0.00285030087136952) + +[fips2715564300] +centroid = (0.80248443062898978, -1.6838982001801843) +description = Taylor township, MN +station = ('keth', 0.0037611181168531907) +zone = ('mnz039', 0.0036121132160090229) + +[fips2715564948] +centroid = (0.80303981185026685, -1.6811020779987342) +description = Tintah city, MN +station = ('keth', 0.0049867449725970441) +zone = ('mnz039', 0.0045545947582975761) + +[fips2715564966] +centroid = (0.80245750019863149, -1.6812464341811668) +description = Tintah township, MN +station = ('keth', 0.0044427068226221503) +zone = ('mnz039', 0.0039841720980156288) + +[fips2715567828] +centroid = (0.79802464315124622, -1.6856952958977927) +description = Walls township, MN +station = ('keth', 0.00096869258246769024) +zone = ('mnz039', 0.0016029481445330917) + +[fips2715569844] +centroid = (0.79946178216392327, -1.6842085371744815) +description = Wheaton city, MN +station = ('keth', 0.00080663804020902625) +zone = ('mnz039', 0.0006702346754601169) + +[fips2715570834] +centroid = (0.797579968164423, -1.6875505285327852) +description = Windsor township, MN +station = ('keth', 0.0022490792861967583) +zone = ('mnz039', 0.002953263335707299) + +[fips2715616] +centroid = (0.78712199019305806, -1.6225900544519645) +description = Dellwood city, MN +station = ('k21d', 0.0022523275751743796) +zone = ('mnz063', 0.0014755693460773299) + +[fips2715670] +centroid = (0.80916469579429051, -1.6221366004590039) +description = Denham city, MN +station = ('kmzh', 0.0019556782421985999) +zone = ('mnz038', 0.0048497431737433974) + +[fips27157] +centroid = (0.77300096754748493, -1.6097754805646791) +description = Wabasha County, MN +station = ('k9mn', 0.005699576057885113) +zone = ('mnz079', 0.00010312513299674122) + +[fips2715704798] +centroid = (0.77435855445285617, -1.6146257680092639) +description = Bellechester city, MN +station = ('krgk', 0.0039011802190304754) +zone = ('mnz078', 0.0027369302655782541) + +[fips2715706] +centroid = (0.77508155709549487, -1.6236820196984747) +description = Dennison city, MN +station = ('ksyn', 0.0011715670179631324) +zone = ('mnz078', 0.0038354990078013056) + +[fips2715711242] +centroid = (0.7735750761516359, -1.6140900915552419) +description = Chester township, MN +station = ('krgk', 0.0046725990704918089) +zone = ('mnz078', 0.0033816573345552504) + +[fips2715718530] +centroid = (0.77007331735360462, -1.6099978878712609) +description = Elgin city, MN +station = ('k9mn', 0.0035385867558450908) +zone = ('mnz079', 0.0028386571594927698) + +[fips2715718548] +centroid = (0.77070385245247264, -1.6098841273106159) +description = Elgin township, MN +station = ('k9mn', 0.003957744608992131) +zone = ('mnz079', 0.0022042931634508574) + +[fips2715723786] +centroid = (0.77367506606448277, -1.6121710322295042) +description = Gillford township, MN +station = ('krgk', 0.004793200185827377) +zone = ('mnz079', 0.0019139825669833306) + +[fips2715723894] +centroid = (0.77366921921148857, -1.6080208138011869) +description = Glasgow township, MN +station = ('krgk', 0.0063504468493952798) +zone = ('mnz079', 0.001437585582049175) + +[fips2715724] +centroid = (0.81249904261047057, -1.6705962954591573) +description = Dent city, MN +station = ('kdtl', 0.0052811716214705437) +zone = ('mnz030', 0.0044158052603015903) + +[fips2715725640] +centroid = (0.7735727374104383, -1.6052971576902797) +description = Greenfield township, MN +station = ('kona', 0.00542287054788901) +zone = ('mnz079', 0.003236546143922043) + +[fips2715726828] +centroid = (0.77181508613392491, -1.6122228510549959) +description = Hammond city, MN +station = ('k9mn', 0.0038113915330019814) +zone = ('mnz079', 0.0020966028651062639) + +[fips2715728952] +centroid = (0.77216306988018746, -1.6078755325942509) +description = Highland township, MN +station = ('k9mn', 0.005994689201289977) +zone = ('mnz079', 0.0015165572488787492) + +[fips2715730680] +centroid = (0.77240310501221421, -1.6119258309228914) +description = Hyde Park township, MN +station = ('k9mn', 0.0044361532250116638) +zone = ('mnz079', 0.0016557186838565669) + +[fips2715732642] +centroid = (0.77331587730442219, -1.6056806414335276) +description = Kellogg city, MN +station = ('kona', 0.0054140961691134222) +zone = ('mnz079', 0.0029218779957785293) + +[fips2715734028] +centroid = (0.77472137349776071, -1.6101310215866029) +description = Lake township, MN +station = ('krgk', 0.0045611272280407849) +zone = ('mnz079', 0.0018396411290962328) + +[fips2715734172] +centroid = (0.77563510572105743, -1.6105303878260444) +description = Lake City city, MN +station = ('krgk', 0.0036907801108073362) +zone = ('mnz079', 0.0027904535775215913) + +[fips2715741282] +centroid = (0.77272117381509775, -1.6151340777006149) +description = Mazeppa city, MN +station = ('k9mn', 0.0044719455690004342) +zone = ('mnz078', 0.0032897586119562368) + +[fips2715741300] +centroid = (0.77208236585557521, -1.614495653713528) +description = Mazeppa township, MN +station = ('k9mn', 0.0037923642655556316) +zone = ('mnz078', 0.0040691139816376462) + +[fips2715742290] +centroid = (0.77220907675927009, -1.6108815829781307) +description = Millville city, MN +station = ('k9mn', 0.0046033347191390111) +zone = ('mnz079', 0.0010833017755719002) + +[fips2715743036] +centroid = (0.77138866729107769, -1.6036197042928952) +description = Minneiska city, MN +station = ('kona', 0.0030127491208536317) +zone = ('wiz032', 0.0035551020096675095) + +[fips2715743054] +centroid = (0.77203421222151269, -1.6044563802297163) +description = Minneiska township, MN +station = ('kona', 0.0038902684298141445) +zone = ('wiz032', 0.0033443407053297767) + +[fips2715744620] +centroid = (0.77532164458739916, -1.6115850204798543) +description = Mount Pleasant township, MN +station = ('krgk', 0.003464462896990813) +zone = ('mnz079', 0.0027592600397784153) + +[fips2715748022] +centroid = (0.77204690076517468, -1.6100889766049225) +description = Oakwood township, MN +station = ('k9mn', 0.0047986377521990059) +zone = ('mnz079', 0.00089745397956426183) + +[fips2715750362] +centroid = (0.77491688528056923, -1.6078755325942509) +description = Pepin township, MN +station = ('krgk', 0.00560000764411613) +zone = ('mnz079', 0.002406644707599295) + +[fips2715751424] +centroid = (0.77081920126273695, -1.6086558343962325) +description = Plainview city, MN +station = ('k9mn', 0.0047485726408790464) +zone = ('mnz079', 0.0022215178202955616) + +[fips2715751442] +centroid = (0.77044508993757188, -1.6080206916281392) +description = Plainview township, MN +station = ('k9mn', 0.004968272740735147) +zone = ('mnz079', 0.0027457747225266426) + +[fips2715767378] +centroid = (0.7744183145264445, -1.6064956403810389) +description = Wabasha city, MN +station = ('kona', 0.0066221700276371193) +zone = ('mnz079', 0.0027600754441246757) + +[fips2715768638] +centroid = (0.7720774091204996, -1.6055387461653405) +description = Watopa township, MN +station = ('kona', 0.0045178419429673326) +zone = ('mnz079', 0.0031084471807430627) + +[fips2715769178] +centroid = (0.77384404884266078, -1.6099895801040216) +description = West Albany township, MN +station = ('krgk', 0.0053255910127993425) +zone = ('mnz079', 0.00095821746661555536) + +[fips2715772292] +centroid = (0.77181595879855092, -1.61269239698366) +description = Zumbro township, MN +station = ('k9mn', 0.0036963491561496451) +zone = ('mnz079', 0.00238990245473494) + +[fips2715772310] +centroid = (0.77296834734376518, -1.6131592551052758) +description = Zumbro Falls city, MN +station = ('k9mn', 0.0047400627260801541) +zone = ('mnz079', 0.0024611268251015423) + +[fips2715832] +centroid = (0.81689041318153588, -1.6727539762002277) +description = Detroit Lakes city, MN +station = ('kdtl', 0.00070867773101271358) +zone = ('mnz027', 0.0024898610152868268) + +[fips2715886] +centroid = (0.76305550551096801, -1.6179680211669556) +description = Dexter city, MN +station = ('kaum', 0.003054509902845357) +zone = ('mnz094', 0.0010534043741681791) + +[fips27159] +centroid = (0.81309276871541403, -1.6578591269241978) +description = Wadena County, MN +station = ('kadc', 0.0035800967727774402) +zone = ('mnz032', 0.00022772535042932439) + +[fips2715900892] +centroid = (0.80938757433977015, -1.6570052769475372) +description = Aldrich city, MN +station = ('ksaz', 0.0016021852706059919) +zone = ('mnz032', 0.0037055922578605569) + +[fips2715900910] +centroid = (0.81006275496090419, -1.6574794305454266) +description = Aldrich township, MN +station = ('ksaz', 0.0020058663755836413) +zone = ('mnz032', 0.0030130307419776819) + +[fips2715906670] +centroid = (0.81652403366495729, -1.6599104996605294) +description = Blueberry township, MN +station = ('kpkd', 0.0020884909510871575) +zone = ('mnz032', 0.0038159485942541034) + +[fips2715908542] +centroid = (0.81187095097255535, -1.6556556138369698) +description = Bullard township, MN +station = ('ksaz', 0.0024644935917025042) +zone = ('mnz032', 0.0017636549953572839) + +[fips2715930536] +centroid = (0.81610454377924047, -1.655278814704757) +description = Huntersville township, MN +station = ('kpkd', 0.0036497387912162878) +zone = ('mnz032', 0.0033996868345296024) + +[fips2715936026] +centroid = (0.81157288364289981, -1.6596848984014165) +description = Leaf River township, MN +station = ('kadc', 0.0016589283704247142) +zone = ('mnz032', 0.0021112962734973115) + +[fips2715938852] +centroid = (0.81309648626672071, -1.6552368395362467) +description = Lyons township, MN +station = ('ksaz', 0.0036179903803487284) +zone = ('mnz032', 0.0015752551348975289) + +[fips2715941336] +centroid = (0.81457696180472494, -1.6577920713743362) +description = Meadow township, MN +station = ('kpkd', 0.0041017615937813069) +zone = ('mnz032', 0.0015122202220402827) + +[fips2715941660] +centroid = (0.81600595012979538, -1.6598581048763845) +description = Menahga city, MN +station = ('kpkd', 0.0025897970059964009) +zone = ('mnz032', 0.0033379567319015515) + +[fips2715946294] +centroid = (0.81393707174106633, -1.6559790931605345) +description = Nimrod city, MN +station = ('ksaz', 0.0045268237790594473) +zone = ('mnz032', 0.0013694342538342443) + +[fips2715946978] +centroid = (0.81300084222371138, -1.6573753914687153) +description = North Germany township, MN +station = ('ksaz', 0.003961225289489158) +zone = ('mnz032', 0.00012920168321498148) + +[fips2715948688] +centroid = (0.81474400726743335, -1.6552759698180761) +description = Orton township, MN +station = ('kpkd', 0.0046768191297681281) +zone = ('mnz032', 0.0022751750694752527) + +[fips2715953422] +centroid = (0.81473165033632911, -1.6596647223952636) +description = Red Eye township, MN +station = ('kpkd', 0.0038395183732098121) +zone = ('mnz032', 0.0022121907081674602) + +[fips2715955150] +centroid = (0.81306034049791198, -1.6596911292268464) +description = Rockwood township, MN +station = ('kadc', 0.0027414328879775424) +zone = ('mnz032', 0.0014862447596229063) + +[fips2715959152] +centroid = (0.81383043212376949, -1.6595953630107894) +description = Sebeka city, MN +station = ('kadc', 0.0034520470828740771) +zone = ('mnz032', 0.0016079578088973761) + +[fips2715959530] +centroid = (0.81626727827869638, -1.6576357073266501) +description = Shell River township, MN +station = ('kpkd', 0.0025373254246831957) +zone = ('mnz032', 0.0031925276199727915) + +[fips2715962446] +centroid = (0.80944785801213415, -1.6546460630377389) +description = Staples city, MN +station = ('ksaz', 5.8275656213965911e-05) +zone = ('mnz032', 0.0041352729211036401) + +[fips2715964624] +centroid = (0.81005200373271191, -1.6555049570159379) +description = Thomastown township, MN +station = ('ksaz', 0.00078975311142048289) +zone = ('mnz032', 0.0033290818008994134) + +[fips2715966874] +centroid = (0.80978102391304729, -1.6582569398206048) +description = Verndale city, MN +station = ('ksaz', 0.0024775634724687212) +zone = ('mnz032', 0.0033324991899021999) + +[fips2715967504] +centroid = (0.81062234242567865, -1.6602949258815738) +description = Wadena city, MN +station = ('kadc', 0.0010012881119890705) +zone = ('mnz032', 0.0031051705523207382) + +[fips2715967522] +centroid = (0.80992887075398379, -1.6596715466326388) +description = Wadena township, MN +station = ('kadc', 0.0016273420488052684) +zone = ('mnz032', 0.0034753289343112206) + +[fips2715970906] +centroid = (0.81169793648380517, -1.6571691982708845) +description = Wing River township, MN +station = ('ksaz', 0.0027857784270405982) +zone = ('mnz032', 0.0013996723848727602) + +[fips2715976] +centroid = (0.81820050967796043, -1.6877042745865933) +description = Dilworth city, MN +station = ('kjkj', 0.00081927888790820551) +zone = ('mnz003', 0.002488241110395742) + +[fips2715994] +centroid = (0.76844492516149399, -1.6205519636712407) +description = Dodge Center city, MN +station = ('ktob', 0.00030572653384620496) +zone = ('mnz086', 0.00017698256778843574) + +[fips2716030] +centroid = (0.84778366596633914, -1.691181843121192) +description = Donaldson city, MN +station = ('khco', 0.0031566542948713067) +zone = ('mnz004', 0.0037692216929159595) + +[fips2716084] +centroid = (0.79742812451949963, -1.6757661875963672) +description = Donnelly city, MN +station = ('kmox', 0.0022174333880941996) +zone = ('mnz047', 0.0018087079796958979) + +[fips27161] +centroid = (0.76826705865742306, -1.6334509242278599) +description = Waseca County, MN +station = ('kacq', 0.0010631204529033191) +zone = ('mnz084', 7.1102008268712847e-05) + +[fips2716101198] +centroid = (0.7687728550746511, -1.635514461909078) +description = Alton township, MN +station = ('kacq', 0.0019961071247000623) +zone = ('mnz084', 0.0015786524564865229) + +[fips2716106562] +centroid = (0.77073507639279071, -1.6311307882400137) +description = Blooming Grove township, MN +station = ('kacq', 0.0019319272113590183) +zone = ('mnz084', 0.0029074374642026383) + +[fips2716109172] +centroid = (0.76581551683019433, -1.6331928074847826) +description = Byron township, MN +station = ('kacq', 0.0034204410639163455) +zone = ('mnz084', 0.0025197738279856335) + +[fips2716119160] +centroid = (0.77135772260343982, -1.6349511917995818) +description = Elysian city, MN +station = ('kacq', 0.0026293715835194872) +zone = ('mnz076', 0.0031431154998984791) + +[fips2716122598] +centroid = (0.76763039745288075, -1.6355678689841888) +description = Freedom township, MN +station = ('kacq', 0.002545056848649716) +zone = ('mnz084', 0.001705087600498235) + +[fips2716131166] +centroid = (0.77045704544294813, -1.6333056081143389) +description = Iosco township, MN +station = ('kacq', 0.0012828507161981293) +zone = ('mnz084', 0.0021276920331804641) + +[fips2716131706] +centroid = (0.77006089060933047, -1.6355982551664663) +description = Janesville city, MN +station = ('kacq', 0.0021707267599691419) +zone = ('mnz084', 0.0023395736119061639) + +[fips2716131724] +centroid = (0.77067041194400443, -1.6352486657172915) +description = Janesville township, MN +station = ('kacq', 0.0022711612439637596) +zone = ('mnz084', 0.0026880204727702784) + +[fips2716145862] +centroid = (0.76608876557788663, -1.6317742213220539) +description = New Richland city, MN +station = ('kacq', 0.0032231643508883355) +zone = ('mnz084', 0.0025310913967960566) + +[fips2716145880] +centroid = (0.76592624051794089, -1.6311823976259954) +description = New Richland township, MN +station = ('kacq', 0.0035000218812394298) +zone = ('mnz084', 0.0028887033675558493) + +[fips2716149084] +centroid = (0.76759657297197703, -1.6313921163889149) +description = Otisco township, MN +station = ('kacq', 0.001920599612546427) +zone = ('mnz084', 0.0016243237716359596) + +[fips2716156] +centroid = (0.80608195564307794, -1.6839912960424859) +description = Doran city, MN +station = ('kbwp', 0.0017918392569685106) +zone = ('mnz029', 0.003007488095612985) + +[fips2716157274] +centroid = (0.76892358170885333, -1.633451395466758) +description = St. Mary township, MN +station = ('kacq', 0.00055126583372162364) +zone = ('mnz084', 0.00059386977274217506) + +[fips2716167324] +centroid = (0.76592358761747781, -1.6355933856978531) +description = Vivian township, MN +station = ('kacq', 0.0038617166585205986) +zone = ('mnz084', 0.0028761419653782123) + +[fips2716167756] +centroid = (0.76677762958035622, -1.6353282701844751) +description = Waldorf city, MN +station = ('kacq', 0.0030451092698850681) +zone = ('mnz084', 0.0020794523872956936) + +[fips2716168296] +centroid = (0.76938064853336563, -1.6318798486483845) +description = Waseca city, MN +station = ('kacq', 0.00068534712783690284) +zone = ('mnz084', 0.001518730343956538) + +[fips2716170744] +centroid = (0.76755119441142516, -1.6334407664116133) +description = Wilton township, MN +station = ('kacq', 0.0017341680853209241) +zone = ('mnz084', 0.0007797833913836612) + +[fips2716171698] +centroid = (0.76896805269819424, -1.6311180298831818) +description = Woodville township, MN +station = ('kacq', 0.001241745430852232) +zone = ('mnz084', 0.0017642734047189309) + +[fips2716264] +centroid = (0.7674174672841374, -1.6080422464444013) +description = Dover city, MN +station = ('k9mn', 0.0045546073880087905) +zone = ('mnz087', 0.0034139239424636199) + +[fips27163] +centroid = (0.78606014932943724, -1.6212383842127576) +description = Washington County, MN +station = ('k21d', 0.00082654987559858506) +zone = ('mnz063', 7.6947990579063417e-05) + +[fips2716300] +centroid = (0.76889590078691672, -1.6676238252100857) +description = Dovray city, MN +station = ('ktkc', 0.0034735237826410983) +zone = ('mnz080', 0.0027609731852923838) + +[fips2716300316] +centroid = (0.78363147131540956, -1.6199990433642089) +description = Afton city, MN +station = ('k21d', 0.0018074313644401766) +zone = ('mnz063', 0.0025632136863473582) + +[fips2716304114] +centroid = (0.78569228628299437, -1.619376798579288) +description = Bayport city, MN +station = ('k21d', 0.00087220906000011218) +zone = ('mnz063', 0.0012943306470926323) + +[fips2716304132] +centroid = (0.78561236765654552, -1.6198991058112397) +description = Baytown township, MN +station = ('k21d', 0.00050006709396434822) +zone = ('mnz063', 0.00098136620351648189) + +[fips2716306058] +centroid = (0.78644502933608706, -1.6227726682516008) +description = Birchwood Village city, MN +station = ('k21d', 0.0018946541212641931) +zone = ('mnz063', 0.0012207607337171916) + +[fips2716313456] +centroid = (0.7821400002031178, -1.6216608760647877) +description = Cottage Grove city, MN +station = ('ksgs', 0.0016542281775921541) +zone = ('mnz070', 0.0031012493767579026) + +[fips2716315616] +centroid = (0.78712199019305806, -1.6225900544519645) +description = Dellwood city, MN +station = ('k21d', 0.0022523275751743796) +zone = ('mnz063', 0.0014755693460773299) + +[fips2716315688] +centroid = (0.78200117671441416, -1.6200857338681554) +description = Denmark township, MN +station = ('k21d', 0.0034120717184300429) +zone = ('mnz070', 0.0037947722021077126) + +[fips2716321770] +centroid = (0.78977323259330001, -1.6225769819358671) +description = Forest Lake city, MN +station = ('koeo', 0.0035467355707961687) +zone = ('mnz063', 0.0038445694202715102) + +[fips2716325334] +centroid = (0.78683067728760769, -1.6216019537492405) +description = Grant city, MN +station = ('k21d', 0.0016177329898162717) +zone = ('mnz063', 0.00083364903588665487) + +[fips2716325982] +centroid = (0.78195981241114187, -1.6230438924173607) +description = Grey Cloud Island township, MN +station = ('ksgs', 0.0010636138361512332) +zone = ('mnz070', 0.0024578147135214442) + +[fips2716327530] +centroid = (0.7810537596365541, -1.6205870447892059) +description = Hastings city, MN +station = ('ksgs', 0.0028981075485083885) +zone = ('mnz070', 0.0029801891127917515) + +[fips2716330392] +centroid = (0.78826443036153604, -1.6224599052496433) +description = Hugo city, MN +station = ('k21d', 0.0031712212055923805) +zone = ('mnz063', 0.0023899184381940405) + +[fips2716334244] +centroid = (0.78518568701431046, -1.6215782870845834) +description = Lake Elmo city, MN +station = ('k21d', 0.00076559831512403704) +zone = ('mnz063', 0.00093623754788229869) + +[fips2716334622] +centroid = (0.7847949950612515, -1.6191877968745894) +description = Lakeland city, MN +station = ('k21d', 0.0011296770707432003) +zone = ('mnz063', 0.001871564793113824) + +[fips2716334658] +centroid = (0.7845166848587285, -1.6190096336645456) +description = Lakeland Shores city, MN +station = ('k21d', 0.0013951011939004753) +zone = ('mnz063', 0.0021565030894448558) + +[fips2716334865] +centroid = (0.78407930534817882, -1.6190579618315335) +description = Lake St. Croix Beach city, MN +station = ('k21d', 0.0016841611394134274) +zone = ('mnz063', 0.0024692603456798862) + +[fips2716335414] +centroid = (0.78452535914511101, -1.6227620217431635) +description = Landfall city, MN +station = ('kstp', 0.00094266627140048563) +zone = ('mnz063', 0.0019255435463094151) + +[fips2716339428] +centroid = (0.78661258094427844, -1.6224609524471947) +description = Mahtomedi city, MN +station = ('k21d', 0.0018223699719785076) +zone = ('mnz063', 0.0010873274936753154) + +[fips2716340562] +centroid = (0.78872917663475695, -1.6192902302483891) +description = Marine on St. Croix city, MN +station = ('koeo', 0.0023251954216262465) +zone = ('mnz063', 0.0029621887487030099) + +[fips2716341120] +centroid = (0.78826765922065212, -1.620263390932716) +description = May township, MN +station = ('k21d', 0.0028760494964786675) +zone = ('mnz063', 0.0022844308280860919) + +[fips2716345790] +centroid = (0.78320704214790948, -1.6231333754481105) +description = Newport city, MN +station = ('ksgs', 0.00051795791582199613) +zone = ('mnz062', 0.0027830957807044826) + +[fips2716347680] +centroid = (0.78518080009240498, -1.6225200842022522) +description = Oakdale city, MN +station = ('kstp', 0.0014265558917629017) +zone = ('mnz063', 0.0013230973291564509) + +[fips2716347914] +centroid = (0.78598750872596923, -1.6198909900302179) +description = Oak Park Heights city, MN +station = ('k21d', 0.00074609088245005772) +zone = ('mnz063', 0.00087904184562061433) + +[fips2716351316] +centroid = (0.7860523826142658, -1.622334014650697) +description = Pine Springs city, MN +station = ('k21d', 0.0014280769420890044) +zone = ('mnz063', 0.0008510096993409917) + +[fips2716357292] +centroid = (0.78384073629272377, -1.6191200606463194) +description = St. Marys Point city, MN +station = ('k21d', 0.0018527597979215002) +zone = ('mnz063', 0.0026412215250372416) + +[fips2716358018] +centroid = (0.78253023837057123, -1.6230537186210494) +description = St. Paul Park city, MN +station = ('ksgs', 0.00060836009915198367) +zone = ('mnz070', 0.0029942813868872524) + +[fips2716358900] +centroid = (0.78978829478474477, -1.6202486429005367) +description = Scandia city, MN +station = ('koeo', 0.0020233856461162286) +zone = ('mnz063', 0.0037732148846863068) + +[fips2716362824] +centroid = (0.78642103105887207, -1.6201962655696844) +description = Stillwater city, MN +station = ('k21d', 0.001051028825470918) +zone = ('mnz063', 0.00074878708994773123) + +[fips2716362842] +centroid = (0.78713911187302021, -1.6200629747747095) +description = Stillwater township, MN +station = ('k21d', 0.0017730283048780025) +zone = ('mnz063', 0.0013107241912961656) + +[fips2716369520] +centroid = (0.78499546357913574, -1.619929457086932) +description = West Lakeland township, MN +station = ('k21d', 0.00058951852563434196) +zone = ('mnz063', 0.0013666374849130095) + +[fips2716369970] +centroid = (0.78636011906797743, -1.6228711048214133) +description = White Bear Lake city, MN +station = ('kstp', 0.0022777465608825754) +zone = ('mnz063', 0.0012647546081850755) + +[fips2716370366] +centroid = (0.78632899984741444, -1.6224150677411597) +description = Willernie city, MN +station = ('k21d', 0.0016205285699127919) +zone = ('mnz063', 0.00094518646644654327) + +[fips2716371428] +centroid = (0.78376251063564928, -1.6218245704953325) +description = Woodbury city, MN +station = ('kstp', 0.0016306882415941647) +zone = ('mnz063', 0.002355944209214699) + +[fips27165] +centroid = (0.76756728634712856, -1.6513280525033573) +description = Watonwan County, MN +station = ('kjyg', 0.00071797693133318424) +zone = ('mnz082', 1.2044157936426817e-06) + +[fips2716500280] +centroid = (0.76902226262476103, -1.6543842811032323) +description = Adrian township, MN +station = ('kjyg', 0.0031853502184410322) +zone = ('mnz082', 0.002636635098348676) + +[fips2716501810] +centroid = (0.76592430320247118, -1.6479245557422135) +description = Antrim township, MN +station = ('kjyg', 0.0024956558471863851) +zone = ('mnz082', 0.0029498802506064169) + +[fips2716508992] +centroid = (0.76721486946456585, -1.6544596444203334) +description = Butterfield city, MN +station = ('kjyg', 0.0029987493736703479) +zone = ('mnz082', 0.002281439247243403) + +[fips2716509010] +centroid = (0.76761358993218398, -1.6545158963821252) +description = Butterfield township, MN +station = ('kjyg', 0.0029994106374692043) +zone = ('mnz082', 0.002294770913704823) + +[fips2716514770] +centroid = (0.76888410236117333, -1.6551948992743211) +description = Darfur city, MN +station = ('kjyg', 0.0036777301704532506) +zone = ('mnz082', 0.0030776560538939186) + +[fips2716521014] +centroid = (0.76770984484043148, -1.6479658502323156) +description = Fieldon township, MN +station = ('kjyg', 0.0017149777646111196) +zone = ('mnz082', 0.0024231955552698938) + +[fips2716535702] +centroid = (0.76918450843202657, -1.6505756934227003) +description = La Salle city, MN +station = ('kjyg', 0.0014861292636280552) +zone = ('mnz082', 0.0017062854421877594) + +[fips2716536818] +centroid = (0.76661472054797508, -1.6482043494746006) +description = Lewisville city, MN +station = ('kjyg', 0.0018916340042761017) +zone = ('mnz082', 0.0024415079695224817) + +[fips2716538024] +centroid = (0.76617358857953355, -1.6521821293728209) +description = Long Lake township, MN +station = ('kjyg', 0.002023297161560576) +zone = ('mnz082', 0.0015224495546796695) + +[fips2716539230] +centroid = (0.76878325723699303, -1.6479411887299849) +description = Madelia city, MN +station = ('kjyg', 0.0020388389632025991) +zone = ('mnz082', 0.0027226131166743646) + +[fips2716539248] +centroid = (0.76911802884081804, -1.6481915213045983) +description = Madelia township, MN +station = ('kjyg', 0.00209700377218758) +zone = ('mnz082', 0.0027374187944991832) + +[fips2716545124] +centroid = (0.76906580858959839, -1.6522968149579695) +description = Nelson township, MN +station = ('kjyg', 0.0019509533184534284) +zone = ('mnz082', 0.001653720296584685) + +[fips2716548094] +centroid = (0.76562780666914232, -1.6535730869734904) +description = Odin city, MN +station = ('kjyg', 0.0031168904050005806) +zone = ('mnz082', 0.0025244956583242548) + +[fips2716548112] +centroid = (0.76605734965135064, -1.6545613447558469) +description = Odin township, MN +station = ('kjyg', 0.0034526786073530574) +zone = ('mnz082', 0.0027747819176884752) + +[fips2716548562] +centroid = (0.76535481972083796, -1.6528126470183966) +description = Ormsby city, MN +station = ('kjyg', 0.002946599474001119) +zone = ('mnz082', 0.0024565022894886268) + +[fips2716554556] +centroid = (0.76906746665238779, -1.6503420112891507) +description = Riverdale township, MN +station = ('kjyg', 0.0013601648646364508) +zone = ('mnz082', 0.0016601936895737051) + +[fips2716555780] +centroid = (0.76757023595356444, -1.6502757585907453) +description = Rosendale township, MN +station = ('kjyg', 0.00014696255641671595) +zone = ('mnz082', 0.00075689162322704038) + +[fips2716557040] +centroid = (0.76765448299655814, -1.6515246463903022) +description = St. James city, MN +station = ('kjyg', 0.00084726290068784906) +zone = ('mnz082', 0.00016708381960710153) + +[fips2716557058] +centroid = (0.76751052823985366, -1.6528537146156959) +description = St. James township, MN +station = ('kjyg', 0.0018127472441184728) +zone = ('mnz082', 0.0010996586791907814) + +[fips2716561276] +centroid = (0.76605331794077858, -1.6502846946765153) +description = South Branch township, MN +station = ('kjyg', 0.0016546504382341041) +zone = ('mnz082', 0.0016889680268764313) + +[fips27167] +centroid = (0.80917539466260524, -1.683835315967235) +description = Wilkin County, MN +station = ('kbwp', 0.0025984619310442719) +zone = ('mnz029', 0.00013624074810312877) + +[fips2716700550] +centroid = (0.81018784270839461, -1.6813289533482012) +description = Akron township, MN +station = ('kffm', 0.003252863842354391) +zone = ('mnz029', 0.0019690566301897375) + +[fips2716701522] +centroid = (0.80853901271074313, -1.6814792785566754) +description = Andrea township, MN +station = ('kffm', 0.0024272859721222455) +zone = ('mnz029', 0.0016207840794598156) + +[fips2716702620] +centroid = (0.81309798724987747, -1.6836656176040634) +description = Atherton township, MN +station = ('kjkj', 0.0049865282962110674) +zone = ('mnz029', 0.0040157445660126681) + +[fips2716707264] +centroid = (0.80550084826862645, -1.6812223311841967) +description = Bradford township, MN +station = ('kffm', 0.0031362891386782026) +zone = ('mnz029', 0.003967481653797289) + +[fips2716707372] +centroid = (0.8056354655138328, -1.6839334383777822) +description = Brandrup township, MN +station = ('kbwp', 0.0021087114794965749) +zone = ('mnz029', 0.0034508824669180413) + +[fips2716707462] +centroid = (0.80749333359599573, -1.6857275844889548) +description = Breckenridge city, MN +station = ('kbwp', 0.00046884843136725367) +zone = ('mnz029', 0.0021220953419720731) + +[fips2716707480] +centroid = (0.8068879661449414, -1.6850311457575315) +description = Breckenridge township, MN +station = ('kbwp', 0.00078073536529770263) +zone = ('mnz029', 0.0023816380132550647) + +[fips2716709496] +centroid = (0.80455372789673918, -1.6825930255122505) +description = Campbell city, MN +station = ('kbwp', 0.0035313823367763963) +zone = ('mnz029', 0.0045918368767192234) + +[fips2716709514] +centroid = (0.80397160823132152, -1.6838363980713713) +description = Campbell township, MN +station = ('kbwp', 0.0035110132943971697) +zone = ('mnz039', 0.0050981365764867746) + +[fips2716710828] +centroid = (0.8040390128470335, -1.6812719508948308) +description = Champion township, MN +station = ('kffm', 0.0043405352348875135) +zone = ('mnz029', 0.0053138593987156705) + +[fips2716712970] +centroid = (0.80863334775681328, -1.6855233635131788) +description = Connelly township, MN +station = ('kbwp', 0.0015789140945191597) +zone = ('mnz029', 0.0013420970030432802) + +[fips2716715274] +centroid = (0.81309817923609518, -1.6858645055687738) +description = Deerhorn township, MN +station = ('kjkj', 0.0044788377869760341) +zone = ('mnz029', 0.0042857607910059886) + +[fips2716716156] +centroid = (0.80608195564307794, -1.6839912960424859) +description = Doran city, MN +station = ('kbwp', 0.0017918392569685106) +zone = ('mnz029', 0.003007488095612985) + +[fips2716722202] +centroid = (0.80768474385506195, -1.6809668149817047) +description = Foxhome city, MN +station = ('kffm', 0.0019609896726445349) +zone = ('mnz029', 0.0023438667955323843) + +[fips2716722220] +centroid = (0.8068928530668471, -1.681056315465747) +description = Foxhome township, MN +station = ('kffm', 0.0022133833142221515) +zone = ('mnz029', 0.0028474781729030496) + +[fips2716732786] +centroid = (0.81048837095229553, -1.6874403458971068) +description = Kent city, MN +station = ('kbwp', 0.0035020567452029123) +zone = ('mnz029', 0.0029432056493081298) + +[fips2716738924] +centroid = (0.81028849584635709, -1.6873552261894871) +description = McCauleyville township, MN +station = ('kbwp', 0.0032937965387229329) +zone = ('mnz029', 0.0028002760521711897) + +[fips2716739968] +centroid = (0.8115791319216219, -1.6836613415473962) +description = Manston township, MN +station = ('kbwp', 0.0047805813001514097) +zone = ('mnz029', 0.0024969354122558515) + +[fips2716741408] +centroid = (0.81005928175569275, -1.6836565418919531) +description = Meadows township, MN +station = ('kbwp', 0.0034042887267686436) +zone = ('mnz029', 0.00097729294605571038) + +[fips2716743522] +centroid = (0.81158161028915965, -1.6858653607801071) +description = Mitchell township, MN +station = ('kbwp', 0.004476781377564281) +zone = ('mnz029', 0.0029141561630054141) + +[fips2716744944] +centroid = (0.80350965448490363, -1.680854642670679) +description = Nashua city, MN +station = ('kffm', 0.0046827729159668562) +zone = ('mnz039', 0.0050538660296548278) + +[fips2716746276] +centroid = (0.80853871600477023, -1.6836460001032711) +description = Nilsen township, MN +station = ('kbwp', 0.0022261679238882964) +zone = ('mnz029', 0.0005444604300824282) + +[fips2716746528] +centroid = (0.81006221390883604, -1.6858528642226629) +description = Nordick township, MN +station = ('kbwp', 0.0029595967618580516) +zone = ('mnz029', 0.0017843031537757841) + +[fips2716752324] +centroid = (0.81308549069243319, -1.6814884415352482) +description = Prairie View township, MN +station = ('kffm', 0.0057720884884861065) +zone = ('mnz029', 0.0042810251463678596) + +[fips2716754826] +centroid = (0.81162386471035053, -1.6876573950428848) +description = Roberts township, MN +station = ('kbwp', 0.00463958450633276) +zone = ('mnz029', 0.0037326350164613555) + +[fips2716756014] +centroid = (0.81111119169586965, -1.6805020512551911) +description = Rothsay city, MN +station = ('kffm', 0.0036953511786110686) +zone = ('mnz029', 0.0029917747913060211) + +[fips2716763562] +centroid = (0.80702150128601158, -1.6833705173341362) +description = Sunnyside township, MN +station = ('kbwp', 0.0018995022973862976) +zone = ('mnz029', 0.0020726566244599139) + +[fips2716764174] +centroid = (0.81159477007171976, -1.6815102057910207) +description = Tanberg township, MN +station = ('kffm', 0.0044551868913380172) +zone = ('mnz029', 0.0029278635383307894) + +[fips2716764426] +centroid = (0.80362660899807981, -1.6834401210647059) +description = Tenney city, MN +station = ('kbwp', 0.0039437625388693172) +zone = ('mnz039', 0.0047575543568220665) + +[fips2716771392] +centroid = (0.8126863513457947, -1.6883704493087872) +description = Wolverton city, MN +station = ('kjkj', 0.0048909789660143447) +zone = ('mnz029', 0.0048351983875254568) + +[fips2716771410] +centroid = (0.81315708409834997, -1.6878950914337141) +description = Wolverton township, MN +station = ('kjkj', 0.004375673360622224) +zone = ('mnz029', 0.004998592563964635) + +[fips27169] +centroid = (0.76763538909454132, -1.60180573124142) +description = Winona County, MN +station = ('kona', 0.0020094468306838678) +zone = ('mnz088', 8.6244056617308426e-05) + +[fips2716901234] +centroid = (0.76906655908117671, -1.6047186159498283) +description = Altura city, MN +station = ('kona', 0.0030726739572827398) +zone = ('mnz088', 0.0024668312701644677) + +[fips2716914518] +centroid = (0.76648095851410225, -1.5945336249267679) +description = Dakota city, MN +station = ('klse', 0.0014976205860539474) +zone = ('wiz041', 0.0030831859099463123) + +[fips2716916408] +centroid = (0.76560387820509745, -1.5942919666385367) +description = Dresbach township, MN +station = ('klse', 0.0012481215937207167) +zone = ('wiz041', 0.0029910124151557721) + +[fips2716918386] +centroid = (0.76945271317818043, -1.6060218882088777) +description = Elba city, MN +station = ('kona', 0.0039905418119160953) +zone = ('mnz088', 0.0034671498717545766) + +[fips2716918404] +centroid = (0.76911246124050425, -1.6057936515025943) +description = Elba township, MN +station = ('kona', 0.0038376060902349475) +zone = ('mnz088', 0.0031622786776894759) + +[fips2716922688] +centroid = (0.76603047158087001, -1.6039469186210591) +description = Fremont township, MN +station = ('kona', 0.0041974214549657463) +zone = ('mnz088', 0.0022643415447716237) + +[fips2716924524] +centroid = (0.76914581448250985, -1.6007224926411696) +description = Goodview city, MN +station = ('kona', 0.00031300425063855985) +zone = ('mnz088', 0.0016425500404270994) + +[fips2716927350] +centroid = (0.76602750452114166, -1.6018575675202043) +description = Hart township, MN +station = ('kona', 0.0035171322522555008) +zone = ('mnz088', 0.0016887438480984326) + +[fips2716929222] +centroid = (0.76868874765799744, -1.6017985928447793) +description = Hillsdale township, MN +station = ('kona', 0.0011918760450168478) +zone = ('mnz088', 0.0009731501919949708) + +[fips2716930032] +centroid = (0.76767755624926959, -1.5977653812895158) +description = Homer township, MN +station = ('kona', 0.0025955017377000543) +zone = ('mnz088', 0.0029373724655864086) + +[fips2716933866] +centroid = (0.76531883103166176, -1.5936764413712361) +description = La Crescent city, MN +station = ('klse', 0.00096735529802285914) +zone = ('wiz041', 0.0026555675816368348) + +[fips2716936800] +centroid = (0.76765675192458571, -1.6034031263860153) +description = Lewiston city, MN +station = ('kona', 0.0027372552126692868) +zone = ('mnz088', 0.001120897129115294) + +[fips2716943036] +centroid = (0.77124190255427749, -1.6033300669035269) +description = Minneiska city, MN +station = ('kona', 0.0027599834305496933) +zone = ('wiz032', 0.0036035327049337442) + +[fips2716943144] +centroid = (0.76955556543100057, -1.6013380179084706) +description = Minnesota City city, MN +station = ('kona', 0.00064490003120375649) +zone = ('mnz088', 0.0018754386147454823) + +[fips2716944656] +centroid = (0.7707192986163528, -1.603937074964078) +description = Mount Vernon township, MN +station = ('kona', 0.002819222010878935) +zone = ('mnz088', 0.003357415709022705) + +[fips2716945592] +centroid = (0.76597210777068325, -1.5954883723874864) +description = New Hartford township, MN +station = ('klse', 0.0020733817652802541) +zone = ('wiz041', 0.003782732569038545) + +[fips2716947374] +centroid = (0.76905106055741901, -1.6038763724126937) +description = Norton township, MN +station = ('kona', 0.0024741488052716192) +zone = ('mnz088', 0.0019773699888777857) + +[fips2716951568] +centroid = (0.76603160604488374, -1.5976820069111479) +description = Pleasant Hill township, MN +station = ('kona', 0.0039187272576239034) +zone = ('mnz096', 0.0038687387790399793) + +[fips2716954286] +centroid = (0.76717511086420542, -1.5957733322944596) +description = Richmond township, MN +station = ('klse', 0.0026050402828567956) +zone = ('wiz041', 0.0040629028080954588) + +[fips2716955276] +centroid = (0.76968163056287198, -1.6025415795073534) +description = Rollingstone city, MN +station = ('kona', 0.0015165896304019212) +zone = ('mnz088', 0.0020277375181365982) + +[fips2716955294] +centroid = (0.77000366126315745, -1.6022041200964801) +description = Rollingstone township, MN +station = ('kona', 0.0013861908940226422) +zone = ('mnz088', 0.0023017446684763434) + +[fips2716956788] +centroid = (0.7673993333132092, -1.606733092425773) +description = St. Charles city, MN +station = ('kfka', 0.0053194383530601299) +zone = ('mnz088', 0.0035299809131184752) + +[fips2716956806] +centroid = (0.76756156166718192, -1.6059519354124578) +description = St. Charles township, MN +station = ('kona', 0.0043507291090920013) +zone = ('mnz088', 0.0029574170958109373) + +[fips2716958558] +centroid = (0.76603190275085653, -1.6060380325044585) +description = Saratoga township, MN +station = ('kfka', 0.0042433464520040352) +zone = ('mnz095', 0.00388103015782611) + +[fips2716962896] +centroid = (0.76841167663924348, -1.6016751806133709) +description = Stockton city, MN +station = ('kona', 0.0013150810294202953) +zone = ('mnz088', 0.00070639943324799035) + +[fips2716966424] +centroid = (0.76755051373301686, -1.6048212936697235) +description = Utica city, MN +station = ('kona', 0.0036358102979522672) +zone = ('mnz088', 0.0021462333414831183) + +[fips2716966442] +centroid = (0.76754026865030767, -1.6039366037251799) +description = Utica township, MN +station = ('kona', 0.0031111294981642388) +zone = ('mnz088', 0.0015135132356071609) + +[fips2716968188] +centroid = (0.76753740631033451, -1.601856049083755) +description = Warren township, MN +station = ('kona', 0.0021128625447509857) +zone = ('mnz088', 0.00017893271821287744) + +[fips2716970168] +centroid = (0.77042266245668378, -1.6064655683580271) +description = Whitewater township, MN +station = ('k9mn', 0.0059868382532590764) +zone = ('mnz079', 0.0034075827308831393) + +[fips2716970690] +centroid = (0.76744626521679526, -1.5996551365371126) +description = Wilson township, MN +station = ('kona', 0.0020384001374330633) +zone = ('mnz088', 0.001600525638866005) + +[fips2716971032] +centroid = (0.76883746716355994, -1.5999611974747423) +description = Winona city, MN +station = ('kona', 0.00066911298384779308) +zone = ('mnz088', 0.0017598586167644945) + +[fips2716971230] +centroid = (0.76602753942772661, -1.59976877492471) +description = Wiscoy township, MN +station = ('kona', 0.003408984146951996) +zone = ('mnz088', 0.0022565954607796208) + +[fips2717000] +centroid = (0.81652138076449421, -1.6077747921898256) +description = Duluth city, MN +station = ('kdyt', 0.0013987626981821866) +zone = ('mnz037', 0.0055433880421473739) + +[fips2717090] +centroid = (0.79791625820469725, -1.6829044446106838) +description = Dumont city, MN +station = ('keth', 0.0015937187514722553) +zone = ('mnz039', 0.0011237224707869326) + +[fips27171] +centroid = (0.78845407783805777, -1.640023013886122) +description = Wright County, MN +station = ('kmgg', 0.0010907486649099755) +zone = ('mnz059', 4.6679456618024301e-05) + +[fips2717100730] +centroid = (0.78951797819019587, -1.6347219428023323) +description = Albertville city, MN +station = ('kcfe', 0.0025952758813311458) +zone = ('mnz059', 0.0038492039497329306) + +[fips2717100766] +centroid = (0.78877527078030218, -1.6419847639653637) +description = Albion township, MN +station = ('kmgg', 0.0013665612494312962) +zone = ('mnz059', 0.0014649755285377213) + +[fips2717101684] +centroid = (0.78993628125202142, -1.6427103322420027) +description = Annandale city, MN +station = ('kmgg', 0.0017082876821245573) +zone = ('mnz059', 0.0024499664990416236) + +[fips2717108452] +centroid = (0.78851919607244958, -1.6382571595621245) +description = Buffalo city, MN +station = ('kcfe', 0.00044206625192184961) +zone = ('mnz059', 0.0012060671429139486) + +[fips2717108470] +centroid = (0.78878663287373263, -1.6374115649928256) +description = Buffalo township, MN +station = ('kcfe', 0.00069513151010713989) +zone = ('mnz059', 0.0018332184793140999) + +[fips2717111062] +centroid = (0.78842749647354982, -1.6397960163636076) +description = Chatham township, MN +station = ('kmgg', 0.0011610337918506388) +zone = ('mnz059', 0.00011836973175286427) + +[fips2717111800] +centroid = (0.79255190148223009, -1.6413872155893585) +description = Clearwater city, MN +station = ('kstc', 0.002446478728992306) +zone = ('mnz059', 0.0042386066804541824) + +[fips2717111818] +centroid = (0.79177894751639943, -1.6413964483811017) +description = Clearwater township, MN +station = ('kmgg', 0.0023751105271595822) +zone = ('mnz059', 0.0034942950681580744) + +[fips2717112430] +centroid = (0.78673719745287085, -1.6438828269802002) +description = Cokato city, MN +station = ('kmgg', 0.003730852362004303) +zone = ('mnz059', 0.0032438879176799047) + +[fips2717112448] +centroid = (0.78741983062991094, -1.6441761295609978) +description = Cokato township, MN +station = ('kmgg', 0.0034137099187909331) +zone = ('mnz058', 0.0039805303244655641) + +[fips2717113222] +centroid = (0.79036406145168525, -1.6419099940602082) +description = Corinna township, MN +station = ('kmgg', 0.0013814215792069975) +zone = ('mnz059', 0.002367847101960004) + +[fips2717115022] +centroid = (0.78960388329597897, -1.6322022633211055) +description = Dayton city, MN +station = ('kmic', 0.0036804592619600874) +zone = ('mnz060', 0.0041587036897666749) + +[fips2717115454] +centroid = (0.78605756624214429, -1.6369761227977455) +description = Delano city, MN +station = ('kcfe', 0.0022059609429078628) +zone = ('mnz059', 0.0031765473846148504) + +[fips2717122400] +centroid = (0.78588708248080952, -1.6378503582200696) +description = Franklin township, MN +station = ('kcfe', 0.0022842585524743531) +zone = ('mnz059', 0.0029510103935330486) + +[fips2717122760] +centroid = (0.78881925307745238, -1.6440915858120313) +description = French Lake township, MN +station = ('kmgg', 0.0027219963527977931) +zone = ('mnz059', 0.0029348889910989677) + +[fips2717126] +centroid = (0.7754077242261076, -1.6267096947117869) +description = Dundas city, MN +station = ('kfbl', 0.0021669210662702094) +zone = ('mnz077', 0.0017293055196551678) + +[fips2717126990] +centroid = (0.78815224059721778, -1.6349451355070772) +description = Hanover city, MN +station = ('kcfe', 0.0020627668688557115) +zone = ('mnz059', 0.0035495341277007966) + +[fips2717130284] +centroid = (0.78647449049386076, -1.6417642416143743) +description = Howard Lake city, MN +station = ('kmgg', 0.0032021847894429488) +zone = ('mnz059', 0.0023347724903235302) + +[fips2717140220] +centroid = (0.78945830538307027, -1.6407755824062897) +description = Maple Lake city, MN +station = ('kmgg', 0.00030069758238373135) +zone = ('mnz059', 0.0011738280712199896) + +[fips2717140238] +centroid = (0.78956424686866622, -1.6399937621678586) +description = Maple Lake township, MN +station = ('kmgg', 0.0002600118483312492) +zone = ('mnz059', 0.0011311538876915953) + +[fips2717140940] +centroid = (0.78733108063744695, -1.6400273597559596) +description = Marysville township, MN +station = ('kcfe', 0.0017382374895057457) +zone = ('mnz059', 0.0011031238544478681) + +[fips2717141966] +centroid = (0.78742241371720378, -1.6417134176265562) +description = Middleville township, MN +station = ('kmgg', 0.0023042910615406081) +zone = ('mnz059', 0.0015952553812805079) + +[fips2717143774] +centroid = (0.79059423547343821, -1.6370831463874778) +description = Monticello city, MN +station = ('kcfe', 0.0024855508967055644) +zone = ('mnz051', 0.0025676009926432221) + +[fips2717143792] +centroid = (0.79003279795965664, -1.6377253577390416) +description = Monticello township, MN +station = ('kcfe', 0.0018642986979320265) +zone = ('mnz059', 0.0022459631329682156) + +[fips2717143810] +centroid = (0.78656660897178088, -1.6391719738895572) +description = Montrose city, MN +station = ('kcfe', 0.0018490169751113035) +zone = ('mnz059', 0.0019484913922247608) + +[fips2717144] +centroid = (0.76522418182632612, -1.6662095500106096) +description = Dundee city, MN +station = ('kotg', 0.0036929664710382048) +zone = ('mnz090', 0.0049335978535143057) + +[fips2717149138] +centroid = (0.79001082426437397, -1.6339901960601413) +description = Otsego city, MN +station = ('kcfe', 0.0032948216550971708) +zone = ('mnz051', 0.0036583618587153347) + +[fips2717155006] +centroid = (0.78701063818678085, -1.6361971125394106) +description = Rockford city, MN +station = ('kcfe', 0.0016555265559824364) +zone = ('mnz059', 0.0030140750392113999) + +[fips2717155024] +centroid = (0.78752097246006403, -1.6371850561625017) +description = Rockford township, MN +station = ('kcfe', 0.00081027935059112678) +zone = ('mnz059', 0.0021616917011508976) + +[fips2717157346] +centroid = (0.78887552249253678, -1.635190703332833) +description = St. Michael city, MN +station = ('kcfe', 0.0020158395537307793) +zone = ('mnz059', 0.0033929696396855858) + +[fips2717160340] +centroid = (0.79114045371614228, -1.6397832405534831) +description = Silver Creek township, MN +station = ('kmgg', 0.0016709440031959396) +zone = ('mnz059', 0.0027101428892693934) + +[fips2717161402] +centroid = (0.79050778931558696, -1.6444040172014307) +description = South Haven city, MN +station = ('kmgg', 0.0030148871230583725) +zone = ('mnz059', 0.0037525094812912814) + +[fips2717161510] +centroid = (0.79019448526156133, -1.6440624911734003) +description = Southside township, MN +station = ('kmgg', 0.0026942225507809027) +zone = ('mnz059', 0.0033817080831707847) + +[fips2717162878] +centroid = (0.78583161591718109, -1.6439297065239087) +description = Stockholm township, MN +station = ('khcd', 0.0036483705104263728) +zone = ('mnz066', 0.0036577175101887706) + +[fips2717167018] +centroid = (0.78552967395658602, -1.642029723646895) +description = Victor township, MN +station = ('kcfe', 0.0039501173845545526) +zone = ('mnz059', 0.0032493695240581781) + +[fips2717168764] +centroid = (0.78653569919072819, -1.6400173066594681) +description = Waverly city, MN +station = ('kcfe', 0.0022295708488928785) +zone = ('mnz059', 0.0018979684009659905) + +[fips2717171554] +centroid = (0.78560685241610928, -1.6399527120238517) +description = Woodland township, MN +station = ('kcfe', 0.0029560327775531099) +zone = ('mnz059', 0.0028264492435944089) + +[fips2717180] +centroid = (0.76028069379968499, -1.6541294106725637) +description = Dunnell city, MN +station = ('kest', 0.0028250766611526723) +zone = ('iaz004', 0.0034182445371928618) + +[fips2717288] +centroid = (0.78217803092751881, -1.6259906190599653) +description = Eagan city, MN +station = ('kmsp', 0.0011173693829337381) +zone = ('mnz070', 0.0027803222611821597) + +[fips27173] +centroid = (0.78043682065255915, -1.6731207222359494) +description = Yellow Medicine County, MN +station = ('kgdb', 0.0038606954751569363) +zone = ('mnz064', 6.9233998948746631e-05) + +[fips2717308884] +centroid = (0.7795892538612057, -1.6762257676950023) +description = Burton township, MN +station = ('kcnb', 0.0029341885395698457) +zone = ('mnz064', 0.0023034200918192571) + +[fips2717309604] +centroid = (0.78041753476432452, -1.6802185748780825) +description = Canby city, MN +station = ('kcnb', 4.9390711944239951e-05) +zone = ('sdz023', 0.0050043886558821683) + +[fips2717311656] +centroid = (0.78174676006935095, -1.6721621699574614) +description = Clarkfield city, MN +station = ('kgdb', 0.0031910933502442827) +zone = ('mnz064', 0.0015021399323688219) + +[fips2717317900] +centroid = (0.77879621115568443, -1.6652440862282838) +description = Echo city, MN +station = ('kgdb', 0.0029090322906397889) +zone = ('mnz073', 0.0042809696180264685) + +[fips2717317918] +centroid = (0.77804085010871382, -1.665578927645279) +description = Echo township, MN +station = ('kgdb', 0.0034206835427755115) +zone = ('mnz073', 0.0037610307393078383) + +[fips2717321464] +centroid = (0.78123876453726548, -1.682412610827472) +description = Florida township, MN +station = ('kcnb', 0.0017760087045776522) +zone = ('sdz023', 0.0033815865144303349) + +[fips2717321914] +centroid = (0.77966655449377642, -1.6822935095593157) +description = Fortier township, MN +station = ('kcnb', 0.0017019650173150031) +zone = ('sdz023', 0.0037963603731498152) + +[fips2717322832] +centroid = (0.78119570726461873, -1.6717576724500194) +description = Friendship township, MN +station = ('kgdb', 0.0028380468892240255) +zone = ('mnz064', 0.0012802195432703373) + +[fips2717325280] +centroid = (0.78217127650331353, -1.6676916137982332) +description = Granite Falls city, MN +station = ('kgdb', 0.0010843216037799757) +zone = ('mnz056', 0.0036207866802505403) + +[fips2717326792] +centroid = (0.78125274462457395, -1.6803595625750585) +description = Hammer township, MN +station = ('kcnb', 0.00081090295177024883) +zone = ('mnz054', 0.0042654629925603102) + +[fips2717326972] +centroid = (0.78002221768874791, -1.6688743012592622) +description = Hanley Falls city, MN +station = ('kgdb', 0.0013261628098553378) +zone = ('mnz064', 0.0031157186488202514) + +[fips2717328016] +centroid = (0.78100784002393409, -1.6705691381359962) +description = Hazel Run city, MN +station = ('kgdb', 0.0019938237246463295) +zone = ('mnz064', 0.0019638001166406836) + +[fips2717328034] +centroid = (0.78123223700586308, -1.6696603451944827) +description = Hazel Run township, MN +station = ('kgdb', 0.0013543365909204853) +zone = ('mnz064', 0.0026465398997014967) + +[fips2717337394] +centroid = (0.78280840894675408, -1.6717302009675929) +description = Lisbon township, MN +station = ('kmve', 0.0021693316144940663) +zone = ('mnz064', 0.0025885187910307229) + +[fips2717342] +centroid = (0.80571643133783277, -1.6586585400814888) +description = Eagle Bend city, MN +station = ('ksaz', 0.0046725638602157392) +zone = ('mnz042', 0.0023226058931161433) + +[fips2717343180] +centroid = (0.78109090024303651, -1.6677378126635334) +description = Minnesota Falls township, MN +station = ('kgdb', 1.8733811916574098e-05) +zone = ('mnz056', 0.0046989185419084763) + +[fips2717346636] +centroid = (0.77958927131449818, -1.6805222621679292) +description = Norman township, MN +station = ('kcnb', 0.00089930233415269427) +zone = ('mnz071', 0.0044499479448499388) + +[fips2717346690] +centroid = (0.77962323542174194, -1.6715546732047197) +description = Normania township, MN +station = ('kgdb', 0.0030664996352907947) +zone = ('mnz064', 0.0014396052129204257) + +[fips2717348292] +centroid = (0.78135257745778808, -1.6762393987164603) +description = Omro township, MN +station = ('kcnb', 0.0029333503721083757) +zone = ('mnz064', 0.0023304324346416273) + +[fips2717348940] +centroid = (0.78123581493082972, -1.6782170836517729) +description = Oshkosh township, MN +station = ('kcnb', 0.0015929798430092939) +zone = ('mnz054', 0.0040903828058931422) + +[fips2717352144] +centroid = (0.77913939524650411, -1.6784808552616266) +description = Porter city, MN +station = ('kcnb', 0.001780116088067702) +zone = ('mnz071', 0.0041725392145526181) + +[fips2717352180] +centroid = (0.77803898260641424, -1.6673812244440585) +description = Posen township, MN +station = ('kgdb', 0.0030613103659324712) +zone = ('mnz072', 0.0047649431701431806) + +[fips2717357202] +centroid = (0.78046492045351623, -1.6764330604502615) +description = St. Leo city, MN +station = ('kcnb', 0.0026556684394567769) +zone = ('mnz064', 0.002285055373934813) + +[fips2717358378] +centroid = (0.77958014324251024, -1.6700332522424637) +description = Sandnes township, MN +station = ('kgdb', 0.0022079797865144882) +zone = ('mnz064', 0.0024232422479115736) + +[fips2717360538] +centroid = (0.77980900826732436, -1.6656007966208064) +description = Sioux Agency township, MN +station = ('kgdb', 0.0019997359002038172) +zone = ('mnz073', 0.0053026549405202151) + +[fips2717363004] +centroid = (0.78263914691589564, -1.6694926365066587) +description = Stony Run township, MN +station = ('kgdb', 0.0019774572416787969) +zone = ('mnz056', 0.0033318432199300647) + +[fips2717363850] +centroid = (0.7798626945951157, -1.6737911730148103) +description = Swede Prairie township, MN +station = ('kmml', 0.0041974843166703406) +zone = ('mnz064', 0.00071082427832231559) + +[fips2717366082] +centroid = (0.78135833704431967, -1.6737678379627112) +description = Tyro township, MN +station = ('kmve', 0.0041342043675050939) +zone = ('mnz064', 0.00099354898587860545) + +[fips2717369160] +centroid = (0.77975314027796794, -1.6781953019427078) +description = Wergeland township, MN +station = ('kcnb', 0.0015687068534595374) +zone = ('mnz071', 0.0048188497997240683) + +[fips2717371446] +centroid = (0.77931235737537674, -1.6674056590535864) +description = Wood Lake city, MN +station = ('kgdb', 0.0017939757511143315) +zone = ('mnz073', 0.005562041495150368) + +[fips2717371464] +centroid = (0.77975008595177697, -1.6673461258728008) +description = Wood Lake township, MN +station = ('kgdb', 0.0013706237914860454) +zone = ('mnz064', 0.0042310648522304716) + +[fips2717378] +centroid = (0.77077380524889261, -1.6385779336253483) +description = Eagle Lake city, MN +station = ('kmkt', 0.0010386129714208307) +zone = ('mnz083', 0.0032001257676850842) + +[fips2717486] +centroid = (0.79156360879328835, -1.6269557686830256) +description = East Bethel city, MN +station = ('kane', 0.0035474741947471374) +zone = ('mnz061', 0.0014409289831191397) + +[fips2717612] +centroid = (0.83650677950993846, -1.6932094793796966) +description = East Grand Forks city, MN +station = ('kgfk', 0.0020185591261927278) +zone = ('ndz027', 0.0051851373995684697) + +[fips2717630] +centroid = (0.80990721121796649, -1.6468370934451733) +description = East Gull Lake city, MN +station = ('kbrd', 0.0026907785624427612) +zone = ('mnz033', 0.0036529657416777489) + +[fips2717738] +centroid = (0.76386223159782485, -1.6388622128539132) +description = Easton city, MN +station = ('kfrm', 0.0068274366558949487) +zone = ('mnz092', 0.0017190896885826209) + +[fips2717882] +centroid = (0.82893051466654122, -1.6675063994580115) +description = Ebro CDP, MN +station = ('kfse', 0.003232072324986401) +zone = ('mnz023', 0.0036484497032690227) + +[fips2717900] +centroid = (0.77879621115568443, -1.6652440862282838) +description = Echo city, MN +station = ('kgdb', 0.0029090322906397889) +zone = ('mnz073', 0.0042809696180264685) + +[fips2718116] +centroid = (0.78274388412430784, -1.631160301757665) +description = Eden Prairie city, MN +station = ('kfcm', 0.00030976805112063803) +zone = ('mnz060', 0.0027420567421038455) + +[fips2718134] +centroid = (0.79109832146799919, -1.6501372143547217) +description = Eden Valley city, MN +station = ('kpex', 0.0025849145891410955) +zone = ('mnz058', 0.0035589296115243457) + +[fips2718152] +centroid = (0.76576896889904367, -1.6777932478962183) +description = Edgerton city, MN +station = ('kpqn', 0.0030051410811352888) +zone = ('mnz097', 0.0030388696692051072) + +[fips2718188] +centroid = (0.78349790126775443, -1.6294350612453612) +description = Edina city, MN +station = ('kmsp', 0.0018203448968515099) +zone = ('mnz060', 0.0024507387440897269) + +[fips2718260] +centroid = (0.83498692934400931, -1.6342839873331292) +description = Effie city, MN +station = ('kfoz', 0.001030939437379093) +zone = ('mnz018', 0.0032704544364332085) + +[fips2718368] +centroid = (0.75936408178312242, -1.596365452696491) +description = Eitzen city, MN +station = ('kdeh', 0.0051965941361404892) +zone = ('mnz096', 0.0028672505771848923) + +[fips2718386] +centroid = (0.76945271317818043, -1.6060218882088777) +description = Elba city, MN +station = ('kona', 0.0039905418119160953) +zone = ('mnz088', 0.0034671498717545766) + +[fips2718440] +centroid = (0.8228654606092759, -1.6675586895224013) +description = Elbow Lake CDP, MN +station = ('kdtl', 0.0067992395210761062) +zone = ('mnz023', 0.0037394486944332971) + +[fips2718458] +centroid = (0.80268823272574508, -1.6752346301193797) +description = Elbow Lake city, MN +station = ('ky63', 0.00012783327279015512) +zone = ('mnz040', 0.0010463202358783274) + +[fips2718530] +centroid = (0.77007331735360462, -1.6099978878712609) +description = Elgin city, MN +station = ('k9mn', 0.0035385867558450908) +zone = ('mnz079', 0.0028386571594927698) + +[fips2718566] +centroid = (0.80947651631845174, -1.6778020269023561) +description = Elizabeth city, MN +station = ('kffm', 0.0016955339544799551) +zone = ('mnz030', 0.0014422239603365673) + +[fips2718662] +centroid = (0.77784387224933382, -1.6290611593597064) +description = Elko New Market city, MN +station = ('klvn', 0.0017311979048925707) +zone = ('mnz069', 0.0028327312830304686) + +[fips2718674] +centroid = (0.79119637406537624, -1.633043983259465) +description = Elk River city, MN +station = ('kpnm', 0.0038231371282979763) +zone = ('mnz051', 0.0032090900363960242) + +[fips2718728] +centroid = (0.76201539399653462, -1.6180334186540277) +description = Elkton city, MN +station = ('kaum', 0.0028663157545344067) +zone = ('mnz094', 0.00061258185922955031) + +[fips2718746] +centroid = (0.76571852888366099, -1.6283361844950131) +description = Ellendale city, MN +station = ('kael', 0.0034159772512944069) +zone = ('mnz085', 0.0027626827734695144) + +[fips2718836] +centroid = (0.75957407979872249, -1.6758340459976848) +description = Ellsworth city, MN +station = ('klyv', 0.003052429801721367) +zone = ('iaz001', 0.003447366892581212) + +[fips2718872] +centroid = (0.79995502966382936, -1.6492347918649781) +description = Elmdale city, MN +station = ('klxl', 0.0026765205654694173) +zone = ('mnz043', 0.0041504674820615119) + +[fips2718998] +centroid = (0.75933816364373041, -1.6421594016103183) +description = Elmore city, MN +station = ('kfrm', 0.0048399048529481504) +zone = ('mnz092', 0.003416274199796373) + +[fips2719088] +centroid = (0.79522202834497868, -1.6571367700533826) +description = Elrosa city, MN +station = ('kd39', 0.0025762832133207269) +zone = ('mnz049', 0.0040852472209701512) + +[fips2719142] +centroid = (0.83610170604384304, -1.6031375047271543) +description = Ely city, MN +station = ('kelo', 0.0015605445636872619) +zone = ('mnz012', 0.0077986428176694197) + +[fips2719160] +centroid = (0.77156039023618139, -1.6350270612621658) +description = Elysian city, MN +station = ('kacq', 0.0028265068280265235) +zone = ('mnz076', 0.0029335074635582579) + +[fips2719286] +centroid = (0.81627216520060197, -1.6402672901682314) +description = Emily city, MN +station = ('kxvg', 0.0046937214868861734) +zone = ('mnz034', 0.0051175461227651814) + +[fips2719340] +centroid = (0.7592966248075329, -1.6315739447903879) +description = Emmons city, MN +station = ('kael', 0.0034466545835085847) +zone = ('mnz093', 0.0034023228892297963) + +[fips2719556] +centroid = (0.81125811351230259, -1.677194652322662) +description = Erhard city, MN +station = ('kffm', 0.0035216976584112884) +zone = ('mnz030', 0.0016231728229266838) + +[fips2719700] +centroid = (0.83187912626473803, -1.6758072551936667) +description = Erskine city, MN +station = ('kfse', 0.0031148721954663084) +zone = ('mnz015', 0.001163949828580229) + +[fips2719718] +centroid = (0.8152439219250821, -1.6121971947149916) +description = Esko CDP, MN +station = ('kcoq', 0.0015408417516474446) +zone = ('mnz037', 0.0025919392914933751) + +[fips2719880] +centroid = (0.77413668819834269, -1.655202177297302) +description = Evan city, MN +station = ('kulm', 0.0042480836042555212) +zone = ('mnz074', 0.0023874949567969607) + +[fips2719898] +centroid = (0.80295621057909639, -1.6700702881291911) +description = Evansville city, MN +station = ('kaxn', 0.0042582142007492061) +zone = ('mnz041', 0.0031117446456595775) + +[fips2719934] +centroid = (0.82856568849299694, -1.6152825179534971) +description = Eveleth city, MN +station = ('kevm', 0.0011447086672670887) +zone = ('mnz019', 0.0014229829112736635) + +[fips2720078] +centroid = (0.78365456202141337, -1.6330551533666775) +description = Excelsior city, MN +station = ('kfcm', 0.0016852182776438804) +zone = ('mnz060', 0.0021368383526855503) + +[fips2720114] +centroid = (0.76774099896757952, -1.609754187547805) +description = Eyota city, MN +station = ('k9mn', 0.0032842837089861981) +zone = ('mnz087', 0.0021470677719101355) + +[fips2720222] +centroid = (0.77716603872773671, -1.6532318576514329) +description = Fairfax city, MN +station = ('kulm', 0.0046248251834874535) +zone = ('mnz065', 0.0044429160604536931) + +[fips2720276] +centroid = (0.79105289054756966, -1.6441956947019125) +description = Fairhaven CDP, MN +station = ('kmgg', 0.0031059352114544653) +zone = ('mnz059', 0.0039672715413058765) + +[fips2720330] +centroid = (0.76174687509111527, -1.6487648096040011) +description = Fairmont city, MN +station = ('kfrm', 0.00064523261881242028) +zone = ('mnz091', 0.0011757519095013439) + +[fips2720420] +centroid = (0.78518956164524989, -1.6262056087172259) +description = Falcon Heights city, MN +station = ('kstp', 0.0018122580087505851) +zone = ('mnz062', 0.001058792733677345) + +[fips2720546] +centroid = (0.77315612731798722, -1.6280245908636544) +description = Faribault city, MN +station = ('kfbl', 0.00076800523782837027) +zone = ('mnz077', 0.0009937313389267947) + +[fips2720618] +centroid = (0.77940566267718836, -1.6260859838502941) +description = Farmington city, MN +station = ('klvn', 0.00090151430810983351) +zone = ('mnz070', 0.0012966772841365663) + +[fips2720690] +centroid = (0.79853591990232542, -1.6688588725486746) +description = Farwell city, MN +station = ('kaxn', 0.0033203063383511382) +zone = ('mnz048', 0.0036022232768399319) + +[fips2720798] +centroid = (0.82449737836647563, -1.6443092632763399) +description = Federal Dam city, MN +station = ('kxvg', 0.0043633733980891105) +zone = ('mnz025', 0.0023940556168748394) + +[fips2720834] +centroid = (0.82161205240695623, -1.6843407807719051) +description = Felton city, MN +station = ('kfar', 0.0044509658538931804) +zone = ('mnz003', 0.0031902934709519539) + +[fips2720906] +centroid = (0.80782567919216042, -1.6768450628734874) +description = Fergus Falls city, MN +station = ('kffm', 0.00089128974914065128) +zone = ('mnz030', 0.0022285334529648622) + +[fips2720978] +centroid = (0.82958222060923592, -1.6804529725966253) +description = Fertile city, MN +station = ('kfse', 0.0060952502616094814) +zone = ('mnz002', 0.0041163941283337028) + +[fips2721032] +centroid = (0.81622448280543758, -1.6426913430597412) +description = Fifty Lakes city, MN +station = ('kpwc', 0.003242119588757396) +zone = ('mnz034', 0.0049873889656984376) + +[fips2721104] +centroid = (0.82785896977227935, -1.5927410321586295) +description = Finland CDP, MN +station = ('kbfw', 0.00440022318026891) +zone = ('mnz020', 0.0034649272699390442) + +[fips2721122] +centroid = (0.80650973584274177, -1.6218691287511358) +description = Finlayson city, MN +station = ('k04w', 0.0033381607959285177) +zone = ('mnz038', 0.0027194253718675928) + +[fips2721158] +centroid = (0.83425335000610357, -1.6894690991663324) +description = Fisher city, MN +station = ('kckn', 0.0023181599005994685) +zone = ('mnz001', 0.0013837386299494915) + +[fips2721190] +centroid = (0.76512811890429633, -1.6588839319010915) +description = Fish Lake CDP, MN +station = ('kmwm', 0.0015221726763218072) +zone = ('mnz090', 0.0031726091402646422) + +[fips2721266] +centroid = (0.80195971484267015, -1.6499022057709407) +description = Flensburg city, MN +station = ('klxl', 0.0022139329673605489) +zone = ('mnz043', 0.0033897325992760332) + +[fips2721338] +centroid = (0.81905926402981921, -1.6216145550264398) +description = Floodwood city, MN +station = ('kcoq', 0.0063326439844114124) +zone = ('mnz037', 0.0050216827381138448) + +[fips2721410] +centroid = (0.77207699024147913, -1.6764463249525767) +description = Florence city, MN +station = ('kmml', 0.0047514396961500184) +zone = ('mnz071', 0.0040676373989709672) + +[fips2721536] +centroid = (0.79698086644538346, -1.6390362570869219) +description = Foley city, MN +station = ('kstc', 0.0026194863131018538) +zone = ('mnz050', 0.0012497334977886897) + +[fips2721608] +centroid = (0.79916420352645834, -1.6642909270171848) +description = Forada city, MN +station = ('kaxn', 0.0014578904877024334) +zone = ('mnz041', 0.0027895335551077188) + +[fips2721770] +centroid = (0.78977323259330001, -1.6225769819358671) +description = Forest Lake city, MN +station = ('koeo', 0.0035467355707961687) +zone = ('mnz063', 0.0038445694202715102) + +[fips2721824] +centroid = (0.79808792878992341, -1.6355295066472302) +description = Foreston city, MN +station = ('kpnm', 0.0033642443541594962) +zone = ('mnz044', 0.0038042118628905373) + +[fips2721932] +centroid = (0.80580493698420141, -1.6469415339476126) +description = Fort Ripley city, MN +station = ('klxl', 0.0038292843274186825) +zone = ('mnz043', 0.0029627650133833014) + +[fips2721986] +centroid = (0.83051740292903953, -1.6711996208749866) +description = Fosston city, MN +station = ('kfse', 0.0002771959721780015) +zone = ('mnz015', 0.0023207333677609759) + +[fips2722094] +centroid = (0.76343090837977956, -1.6080452484107148) +description = Fountain city, MN +station = ('kfka', 0.0012668877069238519) +zone = ('mnz095', 0.0013008399038215842) + +[fips2722202] +centroid = (0.80768474385506195, -1.6809668149817047) +description = Foxhome city, MN +station = ('kffm', 0.0019609896726445349) +zone = ('mnz029', 0.0023438667955323843) + +[fips2722364] +centroid = (0.77721300553790784, -1.6560572664577313) +description = Franklin city, MN +station = ('krwf', 0.0024882425180303186) +zone = ('mnz065', 0.0035029209177534961) + +[fips2722472] +centroid = (0.81557394623334167, -1.6703496455292655) +description = Frazee city, MN +station = ('kdtl', 0.0028132046627604369) +zone = ('mnz027', 0.0044572290536032825) + +[fips2722526] +centroid = (0.76386176035892694, -1.6330050100572679) +description = Freeborn city, MN +station = ('kael', 0.0028806067973206379) +zone = ('mnz093', 0.0031582572196675292) + +[fips2722652] +centroid = (0.79697062136267427, -1.6526410462463403) +description = Freeport city, MN +station = ('kd39', 0.0030463226593001164) +zone = ('mnz049', 0.0021476595434018072) + +[fips2722814] +centroid = (0.78686853347908348, -1.6276949330745378) +description = Fridley city, MN +station = ('kmic', 0.0011503134143706201) +zone = ('mnz062', 0.0023015831744407494) + +[fips2722904] +centroid = (0.77673757784966468, -1.6118562620989068) +description = Frontenac CDP, MN +station = ('krgk', 0.0022446187436903028) +zone = ('wiz024', 0.0038653389101526857) + +[fips2722940] +centroid = (0.76069664066702025, -1.6393195589311058) +description = Frost city, MN +station = ('kfrm', 0.0063025451991297237) +zone = ('mnz092', 0.0015809021205952538) + +[fips2722958] +centroid = (0.76563335681616362, -1.6686344755667455) +description = Fulda city, MN +station = ('kdvp', 0.0030430000340803997) +zone = ('mnz080', 0.0033454057401532656) + +[fips2722976] +centroid = (0.83400853267192632, -1.6480594696933926) +description = Funkley city, MN +station = ('kvwu', 0.0065257019587775392) +zone = ('mnz017', 0.0051618386899585159) + +[fips2723084] +centroid = (0.76878297798431272, -1.643592962698029) +description = Garden City CDP, MN +station = ('kmkt', 0.0043369937206138168) +zone = ('mnz083', 0.0013236748719149961) + +[fips2723120] +centroid = (0.80176481392509991, -1.6667639363942131) +description = Garfield city, MN +station = ('kaxn', 0.0017236848562108198) +zone = ('mnz041', 0.00055121874752039749) + +[fips2723192] +centroid = (0.8080872342338643, -1.637539270734194) +description = Garrison city, MN +station = ('kbrd', 0.0041141630281868813) +zone = ('mnz034', 0.0043547044456386215) + +[fips2723228] +centroid = (0.77165467292237411, -1.6713295780910902) +description = Garvin city, MN +station = ('ktkc', 0.0020146655251203831) +zone = ('mnz080', 0.0033243067020298995) + +[fips2723246] +centroid = (0.82680714709856495, -1.6801501056115267) +description = Gary city, MN +station = ('kfse', 0.0069623237851837196) +zone = ('mnz002', 0.0023816790969688082) + +[fips2723300] +centroid = (0.77764097772378937, -1.6443157384478646) +description = Gaylord city, MN +station = ('kgyl', 0.0038611588213756888) +zone = ('mnz067', 0.00048485277934084297) + +[fips2723318] +centroid = (0.78646400106505621, -1.6238205988410832) +description = Gem Lake city, MN +station = ('kstp', 0.0022342498339753057) +zone = ('mnz062', 0.0010775181315708714) + +[fips2723354] +centroid = (0.76480406362207864, -1.6278860291743387) +description = Geneva city, MN +station = ('kael', 0.0026735778931236275) +zone = ('mnz093', 0.0027349123069323974) + +[fips2723444] +centroid = (0.80224661206511294, -1.6425761338758169) +description = Genola city, MN +station = ('klxl', 0.0028919130791161185) +zone = ('mnz043', 0.0020605914707763876) + +[fips2723498] +centroid = (0.82167258042541536, -1.6894075239503223) +description = Georgetown city, MN +station = ('kfar', 0.0025433981285268351) +zone = ('mnz003', 0.0048734326036053467) + +[fips2723660] +centroid = (0.77686947238123782, -1.6736461012473847) +description = Ghent city, MN +station = ('kmml', 0.0014305328010932334) +zone = ('mnz072', 0.0018347230947114888) + +[fips2723678] +centroid = (0.77728882264061461, -1.6497486866099351) +description = Gibbon city, MN +station = ('kulm', 0.0038284289402822705) +zone = ('mnz075', 0.0047239175475159937) + +[fips2723714] +centroid = (0.82887468158376998, -1.6137535920754573) +description = Gilbert city, MN +station = ('kevm', 0.0013758696701706406) +zone = ('mnz019', 0.00084219554592620421) + +[fips2723804] +centroid = (0.7982322675190634, -1.6397387521108497) +description = Gilman city, MN +station = ('kstc', 0.0034568091960309488) +zone = ('mnz050', 0.00086807530559900503) + +[fips2723948] +centroid = (0.78139404648081545, -1.6431988848062209) +description = Glencoe city, MN +station = ('kgyl', 0.00087080053622419322) +zone = ('mnz066', 0.0017924925711965433) + +[fips2724056] +centroid = (0.76051303202971043, -1.6280617314701369) +description = Glenville city, MN +station = ('kael', 0.0021905066539759134) +zone = ('mnz093', 0.0019383324001598281) + +[fips2724074] +centroid = (0.79694794953569092, -1.6647745228463273) +description = Glenwood city, MN +station = ('kghw', 0.00085320529153560555) +zone = ('mnz048', 0.0015111269005927464) + +[fips2724182] +centroid = (0.81806571789982896, -1.6856326385776461) +description = Glyndon city, MN +station = ('kjkj', 0.0011462815105944806) +zone = ('mnz003', 0.0011218331173198468) + +[fips2724308] +centroid = (0.7852276970894061, -1.6294173287001608) +description = Golden Valley city, MN +station = ('kmic', 0.0013383644393112392) +zone = ('mnz060', 0.0014782578820685796) + +[fips2724344] +centroid = (0.8332060826417369, -1.6670013186257768) +description = Gonvick city, MN +station = ('kfse', 0.0039944098721807226) +zone = ('mnz016', 0.001461198733476295) + +[fips2724398] +centroid = (0.77493494943832741, -1.6166217789017221) +description = Goodhue city, MN +station = ('krgk', 0.0037398722549240597) +zone = ('mnz078', 0.0012192471768413856) + +[fips2724470] +centroid = (0.8402734269285449, -1.6720940497567562) +description = Goodridge city, MN +station = ('ktvf', 0.0046238119555862571) +zone = ('mnz013', 0.0030346408838380751) + +[fips2724506] +centroid = (0.7680618602972662, -1.641834491116767) +description = Good Thunder city, MN +station = ('kmkt', 0.0041388333296117977) +zone = ('mnz083', 0.00048843351690790768) + +[fips2724524] +centroid = (0.76914581448250985, -1.6007224926411696) +description = Goodview city, MN +station = ('kona', 0.00031300425063855985) +zone = ('mnz088', 0.0016425500404270994) + +[fips2724758] +centroid = (0.79532362396073719, -1.6831277245818914) +description = Graceville city, MN +station = ('keth', 0.0036531831009836311) +zone = ('mnz046', 0.0025075078028735163) + +[fips2724884] +centroid = (0.76258993893299865, -1.646708480132594) +description = Granada city, MN +station = ('kfrm', 0.0011349981860649088) +zone = ('mnz091', 0.002566671286537921) + +[fips2724992] +centroid = (0.83354673600514106, -1.5768064204340166) +description = Grand Marais city, MN +station = ('kgna', 0.0013802832018568719) +zone = ('mnz021', 0.0011088369235815109) + +[fips2725010] +centroid = (0.76281098488276367, -1.6156576939295058) +description = Grand Meadow city, MN +station = ('krst', 0.003502567158373882) +zone = ('mnz094', 0.0023759558602837799) + +[fips2725118] +centroid = (0.82444957379826356, -1.6324448989937177) +description = Grand Rapids city, MN +station = ('kgpz', 0.00040728388285712235) +zone = ('mnz026', 0.00078821039874269741) + +[fips2725280] +centroid = (0.78209643678498808, -1.6674717023124819) +description = Granite Falls city, MN +station = ('kgdb', 0.001029378609439605) +zone = ('mnz056', 0.0037065611385207345) + +[fips2725334] +centroid = (0.78683067728760769, -1.6216019537492405) +description = Grant city, MN +station = ('k21d', 0.0016177329898162717) +zone = ('mnz063', 0.00083364903588665487) + +[fips2725424] +centroid = (0.79932194638425347, -1.6258610981761747) +description = Grasston city, MN +station = ('kjmr', 0.0020952232672106692) +zone = ('mnz045', 0.0030762437971766886) + +[fips2725604] +centroid = (0.84998028500302159, -1.6787228277091231) +description = Greenbush city, MN +station = ('krox', 0.0061469336486754044) +zone = ('mnz008', 0.0063702040601189662) + +[fips2725622] +centroid = (0.78703988990504425, -1.6352125548550678) +description = Greenfield city, MN +station = ('kcfe', 0.0021900438523932307) +zone = ('mnz059', 0.0036298169556529545) + +[fips2725658] +centroid = (0.77986058274672077, -1.6406800605363279) +description = Green Isle city, MN +station = ('kgyl', 0.0015982000249135911) +zone = ('mnz068', 0.0034710475957028778) + +[fips2725874] +centroid = (0.79589302017590802, -1.6556084026807036) +description = Greenwald city, MN +station = ('kd39', 0.0020834755405965844) +zone = ('mnz049', 0.0031294950675942301) + +[fips2725918] +centroid = (0.78374490026349675, -1.6327610828410093) +description = Greenwood city, MN +station = ('kfcm', 0.0016142815245438079) +zone = ('mnz060', 0.0019554212149936654) + +[fips2726000] +centroid = (0.79978568036650854, -1.6536848054989106) +description = Grey Eagle city, MN +station = ('k14y', 0.0019450822091985718) +zone = ('mnz042', 0.0046602205025732934) + +[fips2726126] +centroid = (0.78798680083742134, -1.6525095705937878) +description = Grove City city, MN +station = ('kljf', 0.0023277965992821127) +zone = ('mnz058', 0.0019515595935095816) + +[fips2726216] +centroid = (0.84298603510528713, -1.6689488617249073) +description = Grygla city, MN +station = ('ktvf', 0.0076764240888146278) +zone = ('mnz008', 0.0044362673033531445) + +[fips2726270] +centroid = (0.83371535226417626, -1.6689322112838432) +description = Gully city, MN +station = ('kfse', 0.0035386864289291874) +zone = ('mnz016', 0.0027564554738138051) + +[fips2726378] +centroid = (0.81902906983375978, -1.6495981868685357) +description = Hackensack city, MN +station = ('kpwc', 0.0038575593090725774) +zone = ('mnz025', 0.0045489245644515655) + +[fips2726450] +centroid = (0.76797623444416341, -1.672994796730418) +description = Hadley city, MN +station = ('kdvp', 0.00095436983680554906) +zone = ('mnz080', 0.0012120498965293128) + +[fips2726576] +centroid = (0.8511246450336768, -1.6919941542616554) +description = Hallock city, MN +station = ('khco', 0.00022848426071212473) +zone = ('mnz004', 0.0018674422109298736) + +[fips2726612] +centroid = (0.84928513781524484, -1.6859466931232501) +description = Halma city, MN +station = ('khco', 0.0042924247291972924) +zone = ('mnz004', 0.0029403769116079664) + +[fips2726630] +centroid = (0.82643149988365816, -1.689908625431862) +description = Halstad city, MN +station = ('kfar', 0.0072909174914107776) +zone = ('mnz002', 0.004391543179228634) + +[fips2726666] +centroid = (0.78072925056873088, -1.6399646675292279) +description = Hamburg city, MN +station = ('kgyl', 0.0015204260220189833) +zone = ('mnz068', 0.0025164080389196665) + +[fips2726738] +centroid = (0.78984442457348891, -1.6265574670944281) +description = Ham Lake city, MN +station = ('kane', 0.0018477982531347268) +zone = ('mnz061', 0.00071010603421653136) + +[fips2726828] +centroid = (0.77181508613392491, -1.6122228510549959) +description = Hammond city, MN +station = ('k9mn', 0.0038113915330019814) +zone = ('mnz079', 0.0020966028651062639) + +[fips2726864] +centroid = (0.77855898600375339, -1.6231905175278205) +description = Hampton city, MN +station = ('ksyn', 0.0023256193176994264) +zone = ('mnz070', 0.0013633883972488557) + +[fips2726936] +centroid = (0.79407887259150745, -1.6719402164364854) +description = Hancock city, MN +station = ('kmox', 0.0024211384262492397) +zone = ('mnz047', 0.0029477539405198213) + +[fips2726972] +centroid = (0.78002221768874791, -1.6688743012592622) +description = Hanley Falls city, MN +station = ('kgdb', 0.0013261628098553378) +zone = ('mnz064', 0.0031157186488202514) + +[fips2726990] +centroid = (0.78815513784377611, -1.6347259745129044) +description = Hanover city, MN +station = ('kcfe', 0.0022172757631578159) +zone = ('mnz060', 0.003526176821519554) + +[fips2727008] +centroid = (0.77054144956557447, -1.6492397136934687) +description = Hanska city, MN +station = ('kulm', 0.0029311117247675482) +zone = ('mnz082', 0.0033321594874073605) + +[fips2727098] +centroid = (0.80493473327244958, -1.641269283691801) +description = Harding city, MN +station = ('kbrd', 0.0050318642473907282) +zone = ('mnz043', 0.0033570577210295339) + +[fips2727116] +centroid = (0.76400194520444709, -1.6789628802944423) +description = Hardwick city, MN +station = ('klyv', 0.0026796503933532237) +zone = ('mnz098', 0.0018715615017661422) + +[fips2727188] +centroid = (0.76015958540288897, -1.6058352776052542) +description = Harmony city, MN +station = ('kfka', 0.0030528007038947732) +zone = ('mnz095', 0.0023405934091409657) + +[fips2727278] +centroid = (0.79581116423398934, -1.6229591741354688) +description = Harris city, MN +station = ('kros', 0.0018230347485710832) +zone = ('mnz053', 0.0019142776360337723) + +[fips2727404] +centroid = (0.76453236821742065, -1.6316220286112801) +description = Hartland city, MN +station = ('kael', 0.0025882244639377871) +zone = ('mnz093', 0.002854762172997309) + +[fips2727530] +centroid = (0.7807168412777491, -1.620616959732585) +description = Hastings city, MN +station = ('ksgs', 0.0031093833267186364) +zone = ('mnz070', 0.0028201281096549621) + +[fips2727566] +centroid = (0.76713638200810363, -1.6788129216051111) +description = Hatfield city, MN +station = ('kpqn', 0.0016864018492293291) +zone = ('mnz097', 0.0014933373500110375) + +[fips2727746] +centroid = (0.81814052271156945, -1.6810528946204131) +description = Hawley city, MN +station = ('kjkj', 0.0041770496188640802) +zone = ('mnz003', 0.0020877568094726721) + +[fips2727872] +centroid = (0.76603045412757753, -1.6204868105302637) +description = Hayfield city, MN +station = ('ktob', 0.0022382177504557581) +zone = ('mnz086', 0.0023147442576942124) + +[fips2727944] +centroid = (0.76183586942967441, -1.6274500110206054) +description = Hayward city, MN +station = ('kael', 0.001630667709773028) +zone = ('mnz093', 0.001363923374915546) + +[fips2728016] +centroid = (0.78100784002393409, -1.6705691381359962) +description = Hazel Run city, MN +station = ('kgdb', 0.0019938237246463295) +zone = ('mnz064', 0.0019638001166406836) + +[fips2728124] +centroid = (0.78089552808656826, -1.6530614786098534) +description = Hector city, MN +station = ('kovl', 0.0040086361471057715) +zone = ('mnz065', 0.0029103235850742918) + +[fips2728214] +centroid = (0.77655056582031345, -1.6340899590801852) +description = Heidelberg city, MN +station = ('kfbl', 0.0047633030596804108) +zone = ('mnz076', 0.0024848906590788007) + +[fips2728394] +centroid = (0.77713800873994965, -1.6390336565463366) +description = Henderson city, MN +station = ('kgyl', 0.0045341417492882124) +zone = ('mnz076', 0.0035161039317605051) + +[fips2728430] +centroid = (0.77682243575789667, -1.6829585498174957) +description = Hendricks city, MN +station = ('kcnb', 0.0041377754702073546) +zone = ('mnz071', 0.0025978863123544095) + +[fips2728484] +centroid = (0.82491327287393335, -1.6896604047056436) +description = Hendrum city, MN +station = ('kfar', 0.0057725559175655378) +zone = ('mnz002', 0.0043448047463559968) + +[fips2728520] +centroid = (0.80848883449474818, -1.6657764814633123) +description = Henning city, MN +station = ('kadc', 0.0035605556903325832) +zone = ('mnz031', 0.0015537994461891783) + +[fips2728574] +centroid = (0.80060385581325844, -1.6252436704999893) +description = Henriette city, MN +station = ('kjmr', 0.0018658545843074385) +zone = ('mnz045', 0.0024761743252464849) + +[fips2728646] +centroid = (0.79954175315024967, -1.6779760362287799) +description = Herman city, MN +station = ('ky63', 0.0035746841507917335) +zone = ('mnz040', 0.0026659984990746008) + +[fips2728682] +centroid = (0.81693071283396457, -1.6099197320273566) +description = Hermantown city, MN +station = ('kdlh', 0.00065660339332229288) +zone = ('mnz037', 0.004158407255363079) + +[fips2728700] +centroid = (0.7644108234883118, -1.6636650868540046) +description = Heron Lake city, MN +station = ('kmwm', 0.0033428018763409749) +zone = ('mnz090', 0.0030114450906731202) + +[fips2728754] +centroid = (0.80850571182861508, -1.659636308435041) +description = Hewitt city, MN +station = ('kadc', 0.0026402386130672645) +zone = ('mnz032', 0.0047950012545539657) + +[fips2728790] +centroid = (0.82724539927374074, -1.6222281953381485) +description = Hibbing city, MN +station = ('khib', 0.001364191331116722) +zone = ('mnz019', 0.0061005574980463025) + +[fips2729096] +centroid = (0.81998006483658636, -1.6335171420196806) +description = Hill City city, MN +station = ('kgpz', 0.004206831454350992) +zone = ('mnz035', 0.0034230906601598388) + +[fips2729150] +centroid = (0.80298617788235305, -1.6386633674922335) +description = Hillman city, MN +station = ('kbrd', 0.007458043647471939) +zone = ('mnz044', 0.003362249230168523) + +[fips2729204] +centroid = (0.75966029906377097, -1.681762877106832) +description = Hills city, MN +station = ('klyv', 0.0024566256299421497) +zone = ('mnz098', 0.0029237323104001046) + +[fips2729258] +centroid = (0.78633303155798662, -1.6275217789594474) +description = Hilltop city, MN +station = ('kmic', 0.0012523053521954774) +zone = ('mnz062', 0.0019649666875913418) + +[fips2729294] +centroid = (0.80307979734343005, -1.621814918824569) +description = Hinckley city, MN +station = ('k04w', 0.00041953777904343696) +zone = ('mnz038', 0.0028945362941045459) + +[fips2729402] +centroid = (0.81993067201875491, -1.6800278452974242) +description = Hitterdal city, MN +station = ('kdtl', 0.0051417853195492198) +zone = ('mnz003', 0.0031483943484395096) + +[fips2729474] +centroid = (0.79995509947699961, -1.6718080950121095) +description = Hoffman city, MN +station = ('ky63', 0.0035272616568202985) +zone = ('mnz040', 0.0032382180060890825) + +[fips2729510] +centroid = (0.76375716277685479, -1.5943483931332538) +description = Hokah city, MN +station = ('klse', 0.0024893221576733487) +zone = ('mnz096', 0.0023802092480916096) + +[fips2729582] +centroid = (0.79813344697681543, -1.6488408361462179) +description = Holdingford city, MN +station = ('klxl', 0.0041198937694524968) +zone = ('mnz049', 0.0035455898393071811) + +[fips2729618] +centroid = (0.76951983854121209, -1.6789873323572628) +description = Holland city, MN +station = ('kpqn', 0.0023801759769955773) +zone = ('mnz097', 0.0013921711279199719) + +[fips2729636] +centroid = (0.76375220604177918, -1.6267444442171941) +description = Hollandale city, MN +station = ('kael', 0.0024306609049534809) +zone = ('mnz093', 0.0023494458938866326) + +[fips2729672] +centroid = (0.78964468909389063, -1.6738858047668537) +description = Holloway city, MN +station = ('kaqp', 0.0012305726571403249) +zone = ('mnz055', 0.0028505373837133291) + +[fips2729870] +centroid = (0.84287016269624715, -1.6789136445562436) +description = Holt city, MN +station = ('ktvf', 0.0039507708709983396) +zone = ('mnz008', 0.0025622763342508198) + +[fips2730014] +centroid = (0.76807069166328135, -1.5980385602240379) +description = Homer CDP, MN +station = ('kona', 0.0021936154003227041) +zone = ('mnz088', 0.0027628741421634202) + +[fips2730140] +centroid = (0.7840901438428336, -1.6302210877272891) +description = Hopkins city, MN +station = ('kfcm', 0.001811417047026253) +zone = ('mnz060', 0.001647224628398773) + +[fips2730230] +centroid = (0.76376712860688367, -1.5982093406913456) +description = Houston city, MN +station = ('klse', 0.0045705230430260046) +zone = ('mnz096', 0.0018411865689380834) + +[fips2730284] +centroid = (0.78647449049386076, -1.6417642416143743) +description = Howard Lake city, MN +station = ('kmgg', 0.0032021847894429488) +zone = ('mnz059', 0.0023347724903235302) + +[fips2730302] +centroid = (0.8302138552655326, -1.6074396017069801) +description = Hoyt Lakes city, MN +station = ('kelo', 0.0053527529388713241) +zone = ('mnz019', 0.0044912891247127166) + +[fips2730392] +centroid = (0.78826443036153604, -1.6224599052496433) +description = Hugo city, MN +station = ('k21d', 0.0031712212055923805) +zone = ('mnz063', 0.0023899184381940405) + +[fips2730446] +centroid = (0.853840482069535, -1.6946180997123961) +description = Humboldt city, MN +station = ('khco', 0.0034194210706792461) +zone = ('mnz004', 0.0043841782191755517) + +[fips2730644] +centroid = (0.7833972830363769, -1.6471872239464158) +description = Hutchinson city, MN +station = ('khcd', 0.00033585901414128573) +zone = ('mnz066', 0.0016841983007082316) + +[fips2730806] +centroid = (0.76637266083401601, -1.6820111327396357) +description = Ihlen city, MN +station = ('kpqn', 0.0014586624125575852) +zone = ('mnz097', 0.002435052928862232) + +[fips2730842] +centroid = (0.78571363165974628, -1.6357123647929614) +description = Independence city, MN +station = ('kcfe', 0.0028915855416924291) +zone = ('mnz068', 0.003592949085783937) + +[fips2730950] +centroid = (0.83013611830064893, -1.6402133769476372) +description = Inger CDP, MN +station = ('kfoz', 0.0054263413791769402) +zone = ('mnz018', 0.0034049730681005347) + +[fips2731040] +centroid = (0.84799183138622458, -1.6302726796599782) +description = International Falls city, MN +station = ('kinl', 0.0003550373768722116) +zone = ('mnz010', 0.0074446143294660989) + +[fips2731076] +centroid = (0.78232055451423665, -1.6241695599717267) +description = Inver Grove Heights city, MN +station = ('ksgs', 0.00066401023481463186) +zone = ('mnz070', 0.0026522085789348134) + +[fips2731094] +centroid = (0.76645891500564955, -1.671776731445451) +description = Iona city, MN +station = ('kdvp', 0.0012539108774553649) +zone = ('mnz080', 0.0018929888250151863) + +[fips2731238] +centroid = (0.82761727657746309, -1.6163213553775764) +description = Iron Junction city, MN +station = ('kevm', 0.0012807137387873095) +zone = ('mnz019', 0.0020988578570799617) + +[fips2731274] +centroid = (0.81126141218458891, -1.6406786293663413) +description = Ironton city, MN +station = ('kbrd', 0.0021123595642144393) +zone = ('mnz034', 0.00080452926623099798) + +[fips2731328] +centroid = (0.79397626468478277, -1.6273908618122552) +description = Isanti city, MN +station = ('kcbg', 0.0013446144357536459) +zone = ('mnz052', 0.0013806924023644436) + +[fips2731472] +centroid = (0.80534724184115847, -1.6311692378434353) +description = Isle city, MN +station = ('kjmr', 0.0050263292709679308) +zone = ('mnz045', 0.003991371682248712) + +[fips2731526] +centroid = (0.7760452755485685, -1.6799294087276118) +description = Ivanhoe city, MN +station = ('kcnb', 0.0044111251411403547) +zone = ('mnz071', 0.00091650746332139741) + +[fips2731562] +centroid = (0.76145828489929801, -1.6578366121768473) +description = Jackson city, MN +station = ('kmjq', 0.00038082407889856968) +zone = ('mnz090', 0.0022557677031261876) + +[fips2731706] +centroid = (0.77006089060933047, -1.6355982551664663) +description = Janesville city, MN +station = ('kacq', 0.0021707267599691419) +zone = ('mnz084', 0.0023395736119061639) + +[fips2731760] +centroid = (0.76532876195510569, -1.68248116736049) +description = Jasper city, MN +station = ('kpqn', 0.0025455787305145509) +zone = ('mnz097', 0.0034960506032989231) + +[fips2731796] +centroid = (0.76891977689108404, -1.661472290088384) +description = Jeffers city, MN +station = ('kmwm', 0.002711385307383287) +zone = ('mnz081', 0.00086931373712379324) + +[fips2731832] +centroid = (0.81421517250407904, -1.6463371787875245) +description = Jenkins city, MN +station = ('kpwc', 0.0014506712692632158) +zone = ('mnz033', 0.0030812656471187177) + +[fips2732012] +centroid = (0.79538647326710166, -1.6806523241037878) +description = Johnson city, MN +station = ('kmox', 0.0040040631807054744) +zone = ('mnz046', 0.0029238005841112375) + +[fips2732174] +centroid = (0.77954480032515738, -1.634330570170865) +description = Jordan city, MN +station = ('kfcm', 0.0036048216937433599) +zone = ('mnz069', 0.0013284648714825553) + +[fips2732372] +centroid = (0.78769910076352245, -1.6568797703210263) +description = Kandiyohi city, MN +station = ('kbdh', 0.002444266533392699) +zone = ('mnz057', 0.00096293570197226335) + +[fips2732444] +centroid = (0.84784579968771012, -1.6845239530769018) +description = Karlstad city, MN +station = ('khco', 0.0057902446230895851) +zone = ('mnz004', 0.0046312001634973253) + +[fips2732462] +centroid = (0.77300971164703747, -1.640063627697816) +description = Kasota city, MN +station = ('kmkt', 0.0014388710792533246) +zone = ('mnz076', 0.0033002191783793829) + +[fips2732498] +centroid = (0.76851562844949217, -1.6187671201649814) +description = Kasson city, MN +station = ('ktob', 0.0010708691502394816) +zone = ('mnz086', 0.0014350999351757673) + +[fips2732570] +centroid = (0.82730475792160107, -1.6245938320595941) +description = Keewatin city, MN +station = ('khib', 0.0029587229179255234) +zone = ('mnz026', 0.0052517181860708678) + +[fips2732606] +centroid = (0.83677547294828292, -1.6483606262558244) +description = Kelliher city, MN +station = ('kvwu', 0.0037703073346025654) +zone = ('mnz017', 0.0068820314457116137) + +[fips2732642] +centroid = (0.77331587730442219, -1.6056806414335276) +description = Kellogg city, MN +station = ('kona', 0.0054140961691134222) +zone = ('mnz079', 0.0029218779957785293) + +[fips2732732] +centroid = (0.84892572216238171, -1.6914003408902492) +description = Kennedy city, MN +station = ('khco', 0.0020070020852435548) +zone = ('mnz004', 0.0028021417231953666) + +[fips2732750] +centroid = (0.76365692851791289, -1.6767837669101573) +description = Kenneth city, MN +station = ('klyv', 0.0029425980145315776) +zone = ('mnz098', 0.0026682801189971818) + +[fips2732768] +centroid = (0.79898071706219609, -1.6702269488828503) +description = Kensington city, MN +station = ('kaxn', 0.0039278713820058864) +zone = ('mnz041', 0.0040151238400513703) + +[fips2732786] +centroid = (0.81048837095229553, -1.6874403458971068) +description = Kent city, MN +station = ('kbwp', 0.0035020567452029123) +zone = ('mnz029', 0.0029432056493081298) + +[fips2732840] +centroid = (0.77270178320710803, -1.6229188395764553) +description = Kenyon city, MN +station = ('ksyn', 0.0035576114762082291) +zone = ('mnz078', 0.0040740234972997686) + +[fips2732876] +centroid = (0.78874099251379304, -1.6636124477237644) +description = Kerkhoven city, MN +station = ('kbdh', 0.0026288623258049256) +zone = ('mnz056', 0.0042548560803090524) + +[fips2732912] +centroid = (0.80876918673249609, -1.6159158979390458) +description = Kerrick city, MN +station = ('kmzh', 0.0029200235109378223) +zone = ('mnz038', 0.0042508448589908465) + +[fips2732966] +centroid = (0.8113357283041388, -1.6210207940149115) +description = Kettle River city, MN +station = ('kmzh', 0.001530015890543064) +zone = ('mnz037', 0.0058475243779878994) + +[fips2733056] +centroid = (0.75985593301962706, -1.635568305316502) +description = Kiester city, MN +station = ('kfxy', 0.0054736330495286757) +zone = ('iaz006', 0.0027910412422443229) + +[fips2733110] +centroid = (0.77345573053738448, -1.6331750749395821) +description = Kilkenny city, MN +station = ('kfbl', 0.0032281644349500677) +zone = ('mnz076', 0.0021755507496370586) + +[fips2733164] +centroid = (0.79088432664841224, -1.645859255278451) +description = Kimball city, MN +station = ('kljf', 0.0045610131460861354) +zone = ('mnz058', 0.0043476069401219191) + +[fips2733236] +centroid = (0.76485223470943364, -1.6663693174503371) +description = Kinbrae city, MN +station = ('kotg', 0.003306176994796853) +zone = ('mnz090', 0.0048166552403221263) + +[fips2733344] +centroid = (0.78879628454449624, -1.6460265974471322) +description = Kingston city, MN +station = ('kljf', 0.0029607292433312155) +zone = ('mnz058', 0.0029487862781647054) + +[fips2733416] +centroid = (0.82931939147717804, -1.6182610968549505) +description = Kinney city, MN +station = ('khib', 0.002684405037407799) +zone = ('mnz019', 0.0035718139860513184) + +[fips2733866] +centroid = (0.76496849109090892, -1.5935211768809785) +description = La Crescent city, MN +station = ('klse', 0.0011457792335178086) +zone = ('wiz041', 0.0027082403738439595) + +[fips2733920] +centroid = (0.7757493200673079, -1.6474736499299607) +description = Lafayette city, MN +station = ('kulm', 0.0026380286480876636) +zone = ('mnz075', 0.0024870381848992287) + +[fips2734100] +centroid = (0.77254074167702647, -1.6806169986397275) +description = Lake Benton city, MN +station = ('kpqn', 0.0048963158898363513) +zone = ('mnz071', 0.0026242217059999416) + +[fips2734136] +centroid = (0.85054137345095271, -1.6871212648032572) +description = Lake Bronson city, MN +station = ('khco', 0.0032207306382608914) +zone = ('mnz004', 0.0015580900668349354) + +[fips2734172] +centroid = (0.77572389062010627, -1.6106059780359483) +description = Lake City city, MN +station = ('krgk', 0.0035898698648725788) +zone = ('mnz079', 0.0028887023931557557) + +[fips2734190] +centroid = (0.76978453517556955, -1.6444342288507825) +description = Lake Crystal city, MN +station = ('kulm', 0.0050931994629380209) +zone = ('mnz083', 0.0022720621611560595) + +[fips2734244] +centroid = (0.78518568701431046, -1.6215782870845834) +description = Lake Elmo city, MN +station = ('k21d', 0.00076559831512403704) +zone = ('mnz063', 0.00093623754788229869) + +[fips2734316] +centroid = (0.76232098369526624, -1.6610236182975737) +description = Lakefield city, MN +station = ('kmjq', 0.0024017307293404473) +zone = ('mnz090', 0.00020642081192079841) + +[fips2734370] +centroid = (0.82364710631478155, -1.6577339868168299) +description = Lake George CDP, MN +station = ('kpkd', 0.0051883196191801952) +zone = ('mnz024', 0.0016357868712650128) + +[fips2734478] +centroid = (0.79346409781578497, -1.6545110792733897) +description = Lake Henry city, MN +station = ('kpex', 0.0016852418941121223) +zone = ('mnz049', 0.0027401392609440974) + +[fips2734622] +centroid = (0.7847949950612515, -1.6191877968745894) +description = Lakeland city, MN +station = ('k21d', 0.0011296770707432003) +zone = ('mnz063', 0.001871564793113824) + +[fips2734658] +centroid = (0.7845166848587285, -1.6190096336645456) +description = Lakeland Shores city, MN +station = ('k21d', 0.0013951011939004753) +zone = ('mnz063', 0.0021565030894448558) + +[fips2734676] +centroid = (0.7844539751787043, -1.6559694938496488) +description = Lake Lillian city, MN +station = ('kovl', 0.0034776829036400592) +zone = ('mnz065', 0.0039132849787834011) + +[fips2734784] +centroid = (0.81827712963212296, -1.677237552515676) +description = Lake Park city, MN +station = ('kdtl', 0.0027164339803747522) +zone = ('mnz027', 0.0022832291790001531) + +[fips2734865] +centroid = (0.78407930534817882, -1.6190579618315335) +description = Lake St. Croix Beach city, MN +station = ('k21d', 0.0016841611394134274) +zone = ('mnz063', 0.0024692603456798862) + +[fips2734928] +centroid = (0.81149224943145759, -1.6469154412752955) +description = Lake Shore city, MN +station = ('kbrd', 0.0032046270831008468) +zone = ('mnz033', 0.0025935010036211128) + +[fips2735180] +centroid = (0.77981899155064571, -1.6274148077295927) +description = Lakeville city, MN +station = ('klvn', 0.00093844836264368736) +zone = ('mnz070', 0.0022191150664744529) + +[fips2735198] +centroid = (0.76786385269362745, -1.6747234929946406) +description = Lake Wilson city, MN +station = ('kdvp', 0.0021661833778116707) +zone = ('mnz080', 0.0024474099443825051) + +[fips2735288] +centroid = (0.77196953031943383, -1.6627319814760111) +description = Lamberton city, MN +station = ('ktkc', 0.0042595557055620896) +zone = ('mnz073', 0.0030260217937632598) + +[fips2735378] +centroid = (0.85272649076786466, -1.6895065888386653) +description = Lancaster city, MN +station = ('khco', 0.0024480670734270821) +zone = ('mnz004', 0.0014309752339066151) + +[fips2735414] +centroid = (0.78452535914511101, -1.6227620217431635) +description = Landfall city, MN +station = ('kstp', 0.00094266627140048563) +zone = ('mnz063', 0.0019255435463094151) + +[fips2735450] +centroid = (0.76302435138381997, -1.6052127012077755) +description = Lanesboro city, MN +station = ('kfka', 0.0027200520198582654) +zone = ('mnz095', 0.0016781021228506046) + +[fips2735558] +centroid = (0.76354182405374371, -1.622558114926653) +description = Lansing CDP, MN +station = ('kaum', 0.0014725867624690177) +zone = ('mnz094', 0.0030019140000376297) + +[fips2735612] +centroid = (0.82405392511012898, -1.6538284286430571) +description = Laporte city, MN +station = ('kbji', 0.0053946772448855646) +zone = ('mnz024', 0.0026456760293778595) + +[fips2735648] +centroid = (0.82431975620850029, -1.6317320890739109) +description = La Prairie city, MN +station = ('kgpz', 0.00038009189246187777) +zone = ('mnz026', 0.0005544972974466509) + +[fips2735702] +centroid = (0.76918450843202657, -1.6505756934227003) +description = La Salle city, MN +station = ('kjyg', 0.0014861292636280552) +zone = ('mnz082', 0.0017062854421877594) + +[fips2735720] +centroid = (0.80354686490455629, -1.6416875867536267) +description = Lastrup city, MN +station = ('klxl', 0.0038305037456807679) +zone = ('mnz043', 0.0025487567847972356) + +[fips2735738] +centroid = (0.78530054713238429, -1.6267015614774727) +description = Lauderdale city, MN +station = ('kstp', 0.0021707983301908007) +zone = ('mnz062', 0.0013399607812937038) + +[fips2736134] +centroid = (0.77468358711945506, -1.6359350513522235) +description = Le Center city, MN +station = ('kmkt', 0.0037490612524323464) +zone = ('mnz076', 0.00025799271376434328) + +[fips2736404] +centroid = (0.82928907510807093, -1.6691249828997259) +description = Lengby city, MN +station = ('kfse', 0.0021341682645195864) +zone = ('mnz022', 0.0039020630339639192) + +[fips2736494] +centroid = (0.83167076885863489, -1.6627197118113695) +description = Leonard city, MN +station = ('kbji', 0.0047312087361403082) +zone = ('mnz016', 0.0022707784885571836) + +[fips2736530] +centroid = (0.82848339621876532, -1.6156036410825714) +description = Leonidas city, MN +station = ('kevm', 0.0012050632814660425) +zone = ('mnz019', 0.0016072586049479072) + +[fips2736548] +centroid = (0.76491470004336248, -1.6759390100988996) +description = Leota CDP, MN +station = ('kdvp', 0.0041310343346588055) +zone = ('mnz098', 0.0039168563084007449) + +[fips2736620] +centroid = (0.75944956800988517, -1.6145629187028998) +description = Le Roy city, MN +station = ('kfka', 0.0050314058944349377) +zone = ('iaz009', 0.0036444432652696364) + +[fips2736728] +centroid = (0.78336181794597637, -1.64125507671169) +description = Lester Prairie city, MN +station = ('kgyl', 0.0022865233490615895) +zone = ('mnz068', 0.0030998141454003517) + +[fips2736746] +centroid = (0.77611957421482591, -1.6389086560653086) +description = Le Sueur city, MN +station = ('kmkt', 0.0043966894349062079) +zone = ('mnz076', 0.0027370153032046543) + +[fips2736800] +centroid = (0.76765675192458571, -1.6034031263860153) +description = Lewiston city, MN +station = ('kona', 0.0027372552126692868) +zone = ('mnz088', 0.001120897129115294) + +[fips2736818] +centroid = (0.76661472054797508, -1.6482043494746006) +description = Lewisville city, MN +station = ('kjyg', 0.0018916340042761017) +zone = ('mnz082', 0.0024415079695224817) + +[fips2736836] +centroid = (0.78780884706688792, -1.6261469831076514) +description = Lexington city, MN +station = ('kane', 0.00059503130036950888) +zone = ('mnz062', 0.0022908638360774739) + +[fips2737016] +centroid = (0.78380616132024172, -1.6254383096181715) +description = Lilydale city, MN +station = ('kstp', 0.0010860787488688429) +zone = ('mnz062', 0.001929701447257604) + +[fips2737304] +centroid = (0.79246000989711263, -1.6208014584878132) +description = Lindstrom city, MN +station = ('koeo', 0.0027236518579270589) +zone = ('mnz053', 0.00178849316799105) + +[fips2737322] +centroid = (0.78832813487923381, -1.6246389662740508) +description = Lino Lakes city, MN +station = ('kane', 0.001650719942810575) +zone = ('mnz062', 0.0026375313895069617) + +[fips2737412] +centroid = (0.76356624120997918, -1.6746136768781053) +description = Lismore city, MN +station = ('klyv', 0.0040459807387526791) +zone = ('mnz089', 0.0027848522201357581) + +[fips2737448] +centroid = (0.78752694148610569, -1.6497882008642006) +description = Litchfield city, MN +station = ('kljf', 0.00048938779789360176) +zone = ('mnz058', 2.7013696973805442e-05) + +[fips2737502] +centroid = (0.78580084576246845, -1.6246202039845918) +description = Little Canada city, MN +station = ('kstp', 0.0016211305092794545) +zone = ('mnz062', 0.0002179915775002317) + +[fips2737556] +centroid = (0.80253909434116222, -1.6468948987499994) +description = Little Falls city, MN +station = ('klxl', 0.0005736140342350632) +zone = ('mnz043', 0.0012329681663018313) + +[fips2737592] +centroid = (0.8446771020708369, -1.6328871130662956) +description = Littlefork city, MN +station = ('kinl', 0.0034856147298203853) +zone = ('mnz010', 0.0037898755212715878) + +[fips2737656] +centroid = (0.83539465571056759, -1.659810823906948) +description = Little Rock CDP, MN +station = ('kbji', 0.0066583341650878446) +zone = ('mnz016', 0.0039157260708128638) + +[fips2737970] +centroid = (0.79672350019388438, -1.6655408445610005) +description = Long Beach city, MN +station = ('kghw', 0.0013641014309854979) +zone = ('mnz048', 0.001115032918612262) + +[fips2738006] +centroid = (0.78511604837715587, -1.6330704599042176) +description = Long Lake city, MN +station = ('kfcm', 0.0029090656600172121) +zone = ('mnz060', 0.0011825391679685911) + +[fips2738060] +centroid = (0.80248048618488022, -1.6556754233239801) +description = Long Prairie city, MN +station = ('k14y', 0.0013749982619945429) +zone = ('mnz042', 0.001656445056207952) + +[fips2738114] +centroid = (0.82008427844622289, -1.644309298182925) +description = Longville city, MN +station = ('kxvg', 0.00010892845664635156) +zone = ('mnz025', 0.0020512661935003168) + +[fips2738150] +centroid = (0.77627941146772361, -1.6304910901625729) +description = Lonsdale city, MN +station = ('kfbl', 0.0028288741727507177) +zone = ('mnz077', 0.0026490790954664376) + +[fips2738222] +centroid = (0.78635366134974516, -1.634237177602591) +description = Loretto city, MN +station = ('kcfe', 0.0031430829348488899) +zone = ('mnz060', 0.0021381835993404823) + +[fips2738258] +centroid = (0.78825518011650031, -1.6785014501468001) +description = Louisburg city, MN +station = ('kaqp', 0.0023351468826370782) +zone = ('mnz054', 0.0029357119421207106) + +[fips2738366] +centroid = (0.79770496864545093, -1.6670954616856293) +description = Lowry city, MN +station = ('kaxn', 0.0031615223028323013) +zone = ('mnz048', 0.002262095182356638) + +[fips2738420] +centroid = (0.77510391476321294, -1.665270039274261) +description = Lucan city, MN +station = ('ktkc', 0.0037159195127242648) +zone = ('mnz073', 0.0019862651899034698) + +[fips2738546] +centroid = (0.83207509183315198, -1.5828881249323459) +description = Lutsen CDP, MN +station = ('kckc', 0.0046256764202017289) +zone = ('mnz021', 0.0039935976734308499) + +[fips2738564] +centroid = (0.76189803805763057, -1.6792543153729405) +description = Luverne city, MN +station = ('klyv', 0.00056629047247169155) +zone = ('mnz098', 0.00061563958099701489) + +[fips2738654] +centroid = (0.75931983768658451, -1.6221311026718601) +description = Lyle city, MN +station = ('kaum', 0.0028090597116442375) +zone = ('iaz008', 0.0032435833310420045) + +[fips2738708] +centroid = (0.77494529924079159, -1.6733060762025109) +description = Lynd city, MN +station = ('kmml', 0.0011082379033884782) +zone = ('mnz072', 0.00048019147801145668) + +[fips2738888] +centroid = (0.75956627817696609, -1.6016555282059934) +description = Mabel city, MN +station = ('kdeh', 0.0041530693065184423) +zone = ('iaz010', 0.0041159531525367726) + +[fips2738996] +centroid = (0.8070778405142659, -1.6279530672709077) +description = McGrath city, MN +station = ('k04w', 0.0060580746380017566) +zone = ('mnz036', 0.0033596827307833953) + +[fips2739014] +centroid = (0.81346581538973528, -1.6285012228290816) +description = McGregor city, MN +station = ('khzx', 0.00018713821745513373) +zone = ('mnz036', 0.0036951028225012694) + +[fips2739050] +centroid = (0.83142897094406365, -1.6735440343927281) +description = McIntosh city, MN +station = ('kfse', 0.0015474255907220766) +zone = ('mnz015', 0.00050859024959960277) + +[fips2739140] +centroid = (0.8291811614004202, -1.6127901703283565) +description = McKinley city, MN +station = ('kevm', 0.0019498472660849885) +zone = ('mnz019', 0.0011433584727601601) + +[fips2739230] +centroid = (0.76878325723699303, -1.6479411887299849) +description = Madelia city, MN +station = ('kjyg', 0.0020388389632025991) +zone = ('mnz082', 0.0027226131166743646) + +[fips2739266] +centroid = (0.78562102448963544, -1.6788095531196547) +description = Madison city, MN +station = ('kdxx', 0.00048440779946103943) +zone = ('mnz054', 0.00035501562187726775) + +[fips2739320] +centroid = (0.77151914810595668, -1.6374019656819396) +description = Madison Lake city, MN +station = ('kmkt', 0.0012735595092266644) +zone = ('mnz076', 0.003100995114797684) + +[fips2739338] +centroid = (0.76173457051988869, -1.6768292327371719) +description = Magnolia city, MN +station = ('klyv', 0.0018176740519240757) +zone = ('mnz098', 0.0023093597647946573) + +[fips2739392] +centroid = (0.82579274428401339, -1.6749441375186778) +description = Mahnomen city, MN +station = ('kfse', 0.0053698947584206172) +zone = ('mnz022', 0.0018815239861217235) + +[fips2739394] +centroid = (0.8163448930705326, -1.6151588788292857) +description = Mahnomen CDP, MN +station = ('kcoq', 0.0013705314718197637) +zone = ('mnz037', 0.00059233349552592466) + +[fips2739428] +centroid = (0.78661258094427844, -1.6224609524471947) +description = Mahtomedi city, MN +station = ('k21d', 0.0018223699719785076) +zone = ('mnz063', 0.0010873274936753154) + +[fips2739446] +centroid = (0.8125342109948982, -1.6167269175358625) +description = Mahtowa CDP, MN +station = ('kcoq', 0.0029854711129425442) +zone = ('mnz037', 0.0034901681001620628) + +[fips2739716] +centroid = (0.76315244109762381, -1.6310304841679015) +description = Manchester city, MN +station = ('kael', 0.0012946049309688935) +zone = ('mnz093', 0.0015737152865071527) + +[fips2739806] +centroid = (0.81568990590884416, -1.6431161911062617) +description = Manhattan Beach city, MN +station = ('kpwc', 0.0028769358670506567) +zone = ('mnz034', 0.0045041849163508637) + +[fips2739878] +centroid = (0.77092193134250919, -1.6402519836306912) +description = Mankato city, MN +station = ('kmkt', 0.0011250580263469187) +zone = ('mnz083', 0.0026147488687777148) + +[fips2739986] +centroid = (0.76909568862639244, -1.6188567951819488) +description = Mantorville city, MN +station = ('ktob', 0.0012842543576515534) +zone = ('mnz086', 0.0015562905303148559) + +[fips2740166] +centroid = (0.78736626647516716, -1.6312366424591471) +description = Maple Grove city, MN +station = ('kmic', 0.0016078501150662628) +zone = ('mnz060', 0.0018972349784643597) + +[fips2740220] +centroid = (0.78945830538307027, -1.6407755824062897) +description = Maple Lake city, MN +station = ('kmgg', 0.00030069758238373135) +zone = ('mnz059', 0.0011738280712199896) + +[fips2740256] +centroid = (0.78558041067794149, -1.6346875598160679) +description = Maple Plain city, MN +station = ('kcfe', 0.0034296689759914832) +zone = ('mnz060', 0.0022716201136761629) + +[fips2740310] +centroid = (0.76665248947298825, -1.6398073435504532) +description = Mapleton city, MN +station = ('kmkt', 0.0050955254522918134) +zone = ('mnz083', 0.0023689661525570275) + +[fips2740346] +centroid = (0.7625329364796285, -1.6227041466251673) +description = Mapleview city, MN +station = ('kaum', 0.00065535026088564638) +zone = ('mnz094', 0.0028156848091483765) + +[fips2740382] +centroid = (0.78573003775471506, -1.6236983036203958) +description = Maplewood city, MN +station = ('kstp', 0.001513599885840954) +zone = ('mnz062', 0.0008438036034391635) + +[fips2740418] +centroid = (0.82603099918020317, -1.6283163051948328) +description = Marble city, MN +station = ('kgpz', 0.0032607108643570547) +zone = ('mnz026', 0.002428180643167935) + +[fips2740526] +centroid = (0.78557707709907021, -1.6828247179704527) +description = Marietta city, MN +station = ('kdxx', 0.0030037580119306709) +zone = ('mnz054', 0.0030375404593359781) + +[fips2740562] +centroid = (0.78872917663475695, -1.6192902302483891) +description = Marine on St. Croix city, MN +station = ('koeo', 0.0023251954216262465) +zone = ('mnz063', 0.0029621887487030099) + +[fips2740688] +centroid = (0.77575890192490127, -1.6718291262295959) +description = Marshall city, MN +station = ('kmml', 0.00035007691011141147) +zone = ('mnz072', 0.00086527886401818266) + +[fips2740814] +centroid = (0.7920904538812954, -1.6247252902588543) +description = Martin Lake CDP, MN +station = ('kcbg', 0.0038609180604854826) +zone = ('mnz061', 0.002718364187147008) + +[fips2741138] +centroid = (0.78346083047444204, -1.6387713161064692) +description = Mayer city, MN +station = ('kgyl', 0.0032719720678179836) +zone = ('mnz068', 0.0016484998473342643) + +[fips2741210] +centroid = (0.78372550965550702, -1.6662407564976354) +description = Maynard city, MN +station = ('kgdb', 0.0028499997804129398) +zone = ('mnz056', 0.0023910311047616014) + +[fips2741282] +centroid = (0.77272117381509775, -1.6151340777006149) +description = Mazeppa city, MN +station = ('k9mn', 0.0044719455690004342) +zone = ('mnz078', 0.0032897586119562368) + +[fips2741372] +centroid = (0.82158063648042035, -1.6184666093743729) +description = Meadowlands city, MN +station = ('khib', 0.0055479286062758131) +zone = ('mnz037', 0.0058937663397100404) + +[fips2741426] +centroid = (0.77088620445272094, -1.6274860869762442) +description = Medford city, MN +station = ('kowa', 0.00090543417564958645) +zone = ('mnz085', 0.0025670935276204741) + +[fips2741462] +centroid = (0.78544062725814934, -1.630541914150391) +description = Medicine Lake city, MN +station = ('kmic', 0.0014391992489528179) +zone = ('mnz060', 0.00066280860271625112) + +[fips2741480] +centroid = (0.78599712549014766, -1.6332031572872467) +description = Medina city, MN +station = ('kmic', 0.0028390480799446896) +zone = ('mnz060', 0.0013259065095213127) + +[fips2741534] +centroid = (0.79631582618720353, -1.6557717480453977) +description = Meire Grove city, MN +station = ('kd39', 0.0016527488993961282) +zone = ('mnz049', 0.0033755633595468591) + +[fips2741570] +centroid = (0.79721418205979011, -1.6548299858343141) +description = Melrose city, MN +station = ('kd39', 0.0015181653179754155) +zone = ('mnz049', 0.0032882985428324034) + +[fips2741660] +centroid = (0.81600595012979538, -1.6598581048763845) +description = Menahga city, MN +station = ('kpkd', 0.0025897970059964009) +zone = ('mnz032', 0.0033379567319015515) + +[fips2741678] +centroid = (0.78341918691848944, -1.625966777862383) +description = Mendota city, MN +station = ('kmsp', 0.00077111492998708196) +zone = ('mnz062', 0.0024012978361942234) + +[fips2741696] +centroid = (0.78328514563193641, -1.6254937063686299) +description = Mendota Heights city, MN +station = ('kstp', 0.0014063686805121183) +zone = ('mnz062', 0.0024488982332761117) + +[fips2741714] +centroid = (0.8324620313283192, -1.6780318518582586) +description = Mentor city, MN +station = ('kfse', 0.0047215247751088282) +zone = ('mnz014', 0.0031099565243715576) + +[fips2741804] +centroid = (0.81100933428072342, -1.64365731298755) +description = Merrifield CDP, MN +station = ('kbrd', 0.001277112451133123) +zone = ('mnz034', 0.0012739040441492105) + +[fips2741912] +centroid = (0.84534840806103151, -1.6783381745952761) +description = Middle River city, MN +station = ('ktvf', 0.0064317326743589141) +zone = ('mnz008', 0.0023507837426062599) + +[fips2742010] +centroid = (0.82581899403596326, -1.6716654492523439) +description = Midway CDP, MN +station = ('kfse', 0.0048322044145752583) +zone = ('mnz022', 0.00038595277991553326) + +[fips2742092] +centroid = (0.77839998650889675, -1.6200000032952975) +description = Miesville city, MN +station = ('ksyn', 0.003266292585864737) +zone = ('mnz078', 0.0035134621147205549) + +[fips2742110] +centroid = (0.79862836999280351, -1.6345281588954834) +description = Milaca city, MN +station = ('kpnm', 0.0036849882285041112) +zone = ('mnz044', 0.0031518034566036281) + +[fips2742146] +centroid = (0.78736579523626915, -1.6740586098160934) +description = Milan city, MN +station = ('kaqp', 0.0022750320923611632) +zone = ('mnz054', 0.0037720255784992746) + +[fips2742254] +centroid = (0.80405726899100949, -1.667784255874929) +description = Millerville city, MN +station = ('kaxn', 0.0040135887199952746) +zone = ('mnz041', 0.0026754672518675155) + +[fips2742290] +centroid = (0.77220907675927009, -1.6108815829781307) +description = Millville city, MN +station = ('k9mn', 0.0046033347191390111) +zone = ('mnz079', 0.0010833017755719002) + +[fips2742362] +centroid = (0.775234029058949, -1.6677224886727009) +description = Milroy city, MN +station = ('ktkc', 0.003020734779915402) +zone = ('mnz072', 0.0035604385829928089) + +[fips2742398] +centroid = (0.80365875796290165, -1.6631801296680453) +description = Miltona city, MN +station = ('kaxn', 0.0033917136412481229) +zone = ('mnz041', 0.0027636033216636756) + +[fips2743000] +centroid = (0.7847580464409869, -1.6278386434851468) +description = Minneapolis city, MN +station = ('kmsp', 0.0018035903639927182) +zone = ('mnz062', 0.0022861564157256463) + +[fips2743036] +centroid = (0.77136896252382259, -1.6034913353264109) +description = Minneiska city, MN +station = ('kona', 0.0029309318040343919) +zone = ('wiz032', 0.0035332111765051582) + +[fips2743126] +centroid = (0.77776330785106174, -1.6752129182234849) +description = Minneota city, MN +station = ('kmml', 0.0028507085901639489) +zone = ('mnz064', 0.0030342996229121922) + +[fips2743144] +centroid = (0.76955556543100057, -1.6013380179084706) +description = Minnesota City city, MN +station = ('kona', 0.00064490003120375649) +zone = ('mnz088', 0.0018754386147454823) + +[fips2743198] +centroid = (0.76519971231021322, -1.6376075131079471) +description = Minnesota Lake city, MN +station = ('kacq', 0.0053040906416116397) +zone = ('mnz092', 0.0033114249727600837) + +[fips2743252] +centroid = (0.7842214973223387, -1.6311244876014139) +description = Minnetonka city, MN +station = ('kfcm', 0.0017598174335195032) +zone = ('mnz060', 0.0012798721213812467) + +[fips2743270] +centroid = (0.78428223478030812, -1.6333353310715002) +description = Minnetonka Beach city, MN +station = ('kfcm', 0.0022880841389838129) +zone = ('mnz060', 0.0017758110099156234) + +[fips2743306] +centroid = (0.78432244716627419, -1.6355823028571028) +description = Minnetrista city, MN +station = ('kcfe', 0.0041745248987055152) +zone = ('mnz068', 0.0023375334586033351) + +[fips2743540] +centroid = (0.8363767524806649, -1.6443307657327244) +description = Mizpah city, MN +station = ('kvwu', 0.0053986118029604397) +zone = ('mnz018', 0.0072224066625301338) + +[fips2743720] +centroid = (0.78452837856471691, -1.6705485607041153) +description = Montevideo city, MN +station = ('kmve', 0.00028844510339297866) +zone = ('mnz056', 0.0022267015709968099) + +[fips2743738] +centroid = (0.77571863717905787, -1.6332801786671374) +description = Montgomery city, MN +station = ('kfbl', 0.0038233218685559097) +zone = ('mnz076', 0.0022722517250120268) + +[fips2743774] +centroid = (0.79059423547343821, -1.6370831463874778) +description = Monticello city, MN +station = ('kcfe', 0.0024855508967055644) +zone = ('mnz051', 0.0025676009926432221) + +[fips2743810] +centroid = (0.78656660897178088, -1.6391719738895572) +description = Montrose city, MN +station = ('kcfe', 0.0018490169751113035) +zone = ('mnz059', 0.0019484913922247608) + +[fips2743864] +centroid = (0.81783892981682482, -1.6884745756519612) +description = Moorhead city, MN +station = ('kjkj', 0.0010074681061075807) +zone = ('mnz003', 0.0030619346564695984) + +[fips2743954] +centroid = (0.81071796901539539, -1.6189605724592722) +description = Moose Lake city, MN +station = ('kmzh', 0.0007676358576215169) +zone = ('mnz037', 0.0056754435566744137) + +[fips2744044] +centroid = (0.80069246617938217, -1.6282483769803451) +description = Mora city, MN +station = ('kjmr', 0.0002982113493905131) +zone = ('mnz045', 0.0012044799893313398) + +[fips2744116] +centroid = (0.77520301455814111, -1.6567524136455083) +description = Morgan city, MN +station = ('krwf', 0.0030613957009284157) +zone = ('mnz074', 0.0039064339813793736) + +[fips2744242] +centroid = (0.79559816425207608, -1.6737176422934239) +description = Morris city, MN +station = ('kmox', 0.00090622474209306795) +zone = ('mnz047', 0.0012626388549549805) + +[fips2744296] +centroid = (0.7718654039762598, -1.6309269163300883) +description = Morristown city, MN +station = ('kfbl', 0.0024860076872336699) +zone = ('mnz077', 0.0029247525770081848) + +[fips2744368] +centroid = (0.77762205835469778, -1.6577952304202823) +description = Morton city, MN +station = ('krwf', 0.0012295850876587813) +zone = ('mnz065', 0.0030436455735817392) + +[fips2744422] +centroid = (0.80869392813515018, -1.6518274784688156) +description = Motley city, MN +station = ('ksaz', 0.002132067713799994) +zone = ('mnz033', 0.0041567844670053391) + +[fips2744476] +centroid = (0.78421062392109886, -1.6346457417271902) +description = Mound city, MN +station = ('kfcm', 0.0029046340958669157) +zone = ('mnz068', 0.0026352565517468699) + +[fips2744530] +centroid = (0.78726107548114954, -1.6267661386597965) +description = Mounds View city, MN +station = ('kane', 0.00076472736299160822) +zone = ('mnz062', 0.0020498032087551774) + +[fips2744548] +centroid = (0.82982195903528988, -1.6166153735433675) +description = Mountain Iron city, MN +station = ('kevm', 0.0026874361668997059) +zone = ('mnz019', 0.0028318444954184012) + +[fips2744566] +centroid = (0.76692978738454509, -1.6567592727894687) +description = Mountain Lake city, MN +station = ('kmwm', 0.0023674199453614982) +zone = ('mnz082', 0.0039613160601904189) + +[fips2744818] +centroid = (0.78929256891730071, -1.6649300142293875) +description = Murdock city, MN +station = ('kbbb', 0.0035488212618216531) +zone = ('mnz056', 0.0041027428237394937) + +[fips2744890] +centroid = (0.7603200858809025, -1.6260036043096002) +description = Myrtle city, MN +station = ('kaum', 0.003420225748713064) +zone = ('mnz093', 0.0030396653248192227) + +[fips2744944] +centroid = (0.80350965448490363, -1.680854642670679) +description = Nashua city, MN +station = ('kffm', 0.0046827729159668562) +zone = ('mnz039', 0.0050538660296548278) + +[fips2744980] +centroid = (0.82694944379248003, -1.6260395057323136) +description = Nashwauk city, MN +station = ('kgpz', 0.0050501393629966132) +zone = ('mnz026', 0.0042230557926190068) + +[fips2745016] +centroid = (0.78657980366092606, -1.6832261436984115) +description = Nassau city, MN +station = ('kdxx', 0.0035540569608646213) +zone = ('sdz021', 0.0044087569706732152) + +[fips2745052] +centroid = (0.82510302507021016, -1.6690177149638985) +description = Naytahwaush CDP, MN +station = ('kfse', 0.0058080761562795628) +zone = ('mnz022', 0.0023186984237315586) + +[fips2745106] +centroid = (0.80087190347977966, -1.6626861665831461) +description = Nelson city, MN +station = ('kaxn', 0.0016779987779738229) +zone = ('mnz041', 0.002433487902611883) + +[fips2745196] +centroid = (0.77393056481368216, -1.6242698465905465) +description = Nerstrand city, MN +station = ('ksyn', 0.0023848008914469981) +zone = ('mnz077', 0.0029119612949853476) + +[fips2745268] +centroid = (0.83975851989262151, -1.6245711253260258) +description = Nett Lake CDP, MN +station = ('korb', 0.0030292365924805315) +zone = ('mnz011', 0.0064408899704216857) + +[fips2745340] +centroid = (0.81969093359270095, -1.6553223432163018) +description = Nevis city, MN +station = ('kpkd', 0.0028960784037064735) +zone = ('mnz024', 0.0026592916813040633) + +[fips2745376] +centroid = (0.77968697484602478, -1.6446638094605899) +description = New Auburn city, MN +station = ('kgyl', 0.0023730976274627833) +zone = ('mnz067', 0.0016279227552883407) + +[fips2745430] +centroid = (0.78653077736223753, -1.6268086723336677) +description = New Brighton city, MN +station = ('kane', 0.0014881709899926244) +zone = ('mnz062', 0.0015911665107371448) + +[fips2745520] +centroid = (0.84396818423526176, -1.6812704324583818) +description = Newfolden city, MN +station = ('ktvf', 0.0053259737463031047) +zone = ('mnz008', 0.0038690258813726969) + +[fips2745556] +centroid = (0.78343105515740308, -1.6401242953426154) +description = New Germany city, MN +station = ('kgyl', 0.0026570540584192619) +zone = ('mnz068', 0.0023990318073514789) + +[fips2745628] +centroid = (0.7860360114258822, -1.6299095988156858) +description = New Hope city, MN +station = ('kmic', 0.00069558412925764144) +zone = ('mnz060', 0.0012416852918626315) + +[fips2745682] +centroid = (0.79057960961430651, -1.6571470151360916) +description = New London city, MN +station = ('kpex', 0.002796332773157815) +zone = ('mnz057', 0.0026179990818708285) + +[fips2745772] +centroid = (0.79640827627768174, -1.653743902347383) +description = New Munich city, MN +station = ('kd39', 0.0025677067420080391) +zone = ('mnz049', 0.0021881904310831484) + +[fips2745790] +centroid = (0.78320704214790948, -1.6231333754481105) +description = Newport city, MN +station = ('ksgs', 0.00051795791582199613) +zone = ('mnz062', 0.0027830957807044826) + +[fips2745808] +centroid = (0.77747368791498572, -1.6332047804434511) +description = New Prague city, MN +station = ('kfbl', 0.0049188099301821775) +zone = ('mnz069', 0.0018558571250695023) + +[fips2745862] +centroid = (0.76608876557788663, -1.6317742213220539) +description = New Richland city, MN +station = ('kacq', 0.0032231643508883355) +zone = ('mnz084', 0.0025310913967960566) + +[fips2746024] +centroid = (0.77848803836965985, -1.6219846695476177) +description = New Trier city, MN +station = ('ksyn', 0.002475012841921545) +zone = ('mnz070', 0.0020282851794871742) + +[fips2746042] +centroid = (0.77338598718047491, -1.6487531857111828) +description = New Ulm city, MN +station = ('kulm', 0.00042584227752949841) +zone = ('mnz074', 0.0034818606665641544) + +[fips2746060] +centroid = (0.81192071030952973, -1.6645690277801977) +description = New York Mills city, MN +station = ('kadc', 0.0022918810739144847) +zone = ('mnz031', 0.0021822037980373556) + +[fips2746150] +centroid = (0.77273314677376648, -1.6438971735866517) +description = Nicollet city, MN +station = ('kulm', 0.0039623735407556251) +zone = ('mnz075', 0.0015122370807157501) + +[fips2746258] +centroid = (0.82952673659231513, -1.6897821414209702) +description = Nielsville city, MN +station = ('kckn', 0.0060885312650300677) +zone = ('mnz001', 0.0057093153199270314) + +[fips2746294] +centroid = (0.81393707174106633, -1.6559790931605345) +description = Nimrod city, MN +station = ('ksaz', 0.0045268237790594473) +zone = ('mnz032', 0.0013694342538342443) + +[fips2746348] +centroid = (0.81159398467355637, -1.64580813458466) +description = Nisswa city, MN +station = ('kbrd', 0.0026487840159505785) +zone = ('mnz033', 0.0032498334378932383) + +[fips2746492] +centroid = (0.80056051928793126, -1.6789461076803309) +description = Norcross city, MN +station = ('ky63', 0.003270939970147145) +zone = ('mnz040', 0.0025129383177089301) + +[fips2746798] +centroid = (0.79431573122429566, -1.6221838116152705) +description = North Branch city, MN +station = ('kros', 0.0032675549937773627) +zone = ('mnz053', 0.00046415934277334938) + +[fips2746924] +centroid = (0.77589737634775446, -1.6261286920570905) +description = Northfield city, MN +station = ('ksyn', 0.0019510301905327268) +zone = ('mnz077', 0.002370789451324848) + +[fips2747068] +centroid = (0.77109820959696074, -1.6412517954926962) +description = North Mankato city, MN +station = ('kmkt', 0.0016291965546135917) +zone = ('mnz083', 0.0025775760051707144) + +[fips2747104] +centroid = (0.78714022888374136, -1.6249737378778757) +description = North Oaks city, MN +station = ('kane', 0.0016393640661203847) +zone = ('mnz062', 0.0014447950088152504) + +[fips2747122] +centroid = (0.83566231940465352, -1.6454836429701294) +description = Northome city, MN +station = ('kvwu', 0.0055325757652239013) +zone = ('mnz018', 0.0074626233491884688) + +[fips2747212] +centroid = (0.7633365733337093, -1.6482253981453796) +description = Northrop city, MN +station = ('kfrm', 0.0015207964478997319) +zone = ('mnz091', 0.0018049593344641739) + +[fips2747221] +centroid = (0.78563601686791007, -1.6231678282475446) +description = North St. Paul city, MN +station = ('kstp', 0.0015280635138846157) +zone = ('mnz063', 0.0015033837922932068) + +[fips2747520] +centroid = (0.78143493954518972, -1.6392308962051045) +description = Norwood Young America city, MN +station = ('kgyl', 0.0020055249639610458) +zone = ('mnz068', 0.0016889567498040022) + +[fips2747536] +centroid = (0.79132399254028207, -1.6312210392156343) +description = Nowthen city, MN +station = ('kpnm', 0.0040430978576403908) +zone = ('mnz061', 0.0028895293984263458) + +[fips2747680] +centroid = (0.78518080009240498, -1.6225200842022522) +description = Oakdale city, MN +station = ('kstp', 0.0014265558917629017) +zone = ('mnz063', 0.0013230973291564509) + +[fips2747690] +centroid = (0.79136921402120119, -1.6287750649887196) +description = Oak Grove city, MN +station = ('kane', 0.0035939320021079507) +zone = ('mnz061', 0.0015187067418167008) + +[fips2747914] +centroid = (0.78598750872596923, -1.6198909900302179) +description = Oak Park Heights city, MN +station = ('k21d', 0.00074609088245005772) +zone = ('mnz063', 0.00087904184562061433) + +[fips2747923] +centroid = (0.81918864528726953, -1.6889612432605874) +description = Oakport CDP, MN +station = ('kfar', 0.00055401000917553866) +zone = ('mnz003', 0.0034211594306791204) + +[fips2748058] +centroid = (0.7899717987022995, -1.6812912716896504) +description = Odessa city, MN +station = ('kvvv', 0.0013770665393499002) +zone = ('mnz046', 0.0030271448863391608) + +[fips2748094] +centroid = (0.76562780666914232, -1.6535730869734904) +description = Odin city, MN +station = ('kjyg', 0.0031168904050005806) +zone = ('mnz082', 0.0025244956583242548) + +[fips2748130] +centroid = (0.82208353565108994, -1.6740391843015188) +description = Ogema city, MN +station = ('kdtl', 0.0047031826152131627) +zone = ('mnz027', 0.0029006690547962082) + +[fips2748166] +centroid = (0.79988682219666152, -1.6305388249176149) +description = Ogilvie city, MN +station = ('kjmr', 0.0020827110135170079) +zone = ('mnz045', 0.0025523910548278196) + +[fips2748184] +centroid = (0.76339570508876675, -1.6635898282566586) +description = Okabena city, MN +station = ('kotg', 0.0037088217948055497) +zone = ('mnz090', 0.0023461331878676366) + +[fips2748202] +centroid = (0.8349479212352271, -1.6729119808574109) +description = Oklee city, MN +station = ('kfse', 0.0043924654178494936) +zone = ('mnz014', 0.0029197935992255498) + +[fips2748256] +centroid = (0.78150880187913396, -1.6580211283853681) +description = Olivia city, MN +station = ('kovl', 0.00043639926647912232) +zone = ('mnz065', 0.001078362527183992) + +[fips2748310] +centroid = (0.80408383290222485, -1.6347538648743511) +description = Onamia city, MN +station = ('kjmr', 0.0057506607373643956) +zone = ('mnz044', 0.0023517463758382568) + +[fips2748562] +centroid = (0.76533300310518804, -1.6528029604410479) +description = Ormsby city, MN +station = ('kjyg', 0.0029598859767561063) +zone = ('mnz082', 0.0024731576142379662) + +[fips2748580] +centroid = (0.78471713592332004, -1.6334139930608877) +description = Orono city, MN +station = ('kfcm', 0.0026755803047737899) +zone = ('mnz060', 0.0015659606881870897) + +[fips2748598] +centroid = (0.77075734679404628, -1.6151411811906704) +description = Oronoco city, MN +station = ('k9mn', 0.002544304771016451) +zone = ('mnz087', 0.0032552043640090679) + +[fips2748634] +centroid = (0.83876458979019586, -1.6200760298375145) +description = Orr city, MN +station = ('korb', 0.00087505477064307529) +zone = ('mnz011', 0.003710560334485379) + +[fips2748706] +centroid = (0.79069783821783657, -1.6832164396677702) +description = Ortonville city, MN +station = ('kvvv', 0.00020833383580015565) +zone = ('mnz046', 0.0021690165995461247) + +[fips2748760] +centroid = (0.81905418512169592, -1.6626544539506372) +description = Osage CDP, MN +station = ('kpkd', 0.0023934160492984306) +zone = ('mnz028', 0.0018044363954476403) + +[fips2748796] +centroid = (0.80048136860635344, -1.6607137699954673) +description = Osakis city, MN +station = ('kaxn', 0.0030157170680102088) +zone = ('mnz041', 0.0038589889591522262) + +[fips2748976] +centroid = (0.84115457385470671, -1.695290662339652) +description = Oslo city, MN +station = ('kgfk', 0.0043093628663052391) +zone = ('ndz027', 0.0060777566395585972) + +[fips2749012] +centroid = (0.78745334095154917, -1.6301280442248653) +description = Osseo city, MN +station = ('kmic', 0.0010799730207475616) +zone = ('mnz060', 0.0021945963110208441) + +[fips2749030] +centroid = (0.76120645134152776, -1.6131480500914779) +description = Ostrander city, MN +station = ('kfka', 0.0033044333160753472) +zone = ('iaz009', 0.004696416533616383) + +[fips2749138] +centroid = (0.79001082426437397, -1.6339901960601413) +description = Otsego city, MN +station = ('kcfe', 0.0032948216550971708) +zone = ('mnz051', 0.0036583618587153347) + +[fips2749210] +centroid = (0.81018719693657137, -1.6679654908644561) +description = Ottertail city, MN +station = ('kadc', 0.0043204807718709324) +zone = ('mnz031', 0.0012738525531901951) + +[fips2749300] +centroid = (0.76956066179241633, -1.627174667877811) +description = Owatonna city, MN +station = ('kowa', 0.00048793521387035675) +zone = ('mnz085', 0.0012277353787814686) + +[fips2749498] +centroid = (0.81528383760507517, -1.631687146845672) +description = Palisade city, MN +station = ('khzx', 0.0026972244438003821) +zone = ('mnz035', 0.0021546258248789198) + +[fips2749732] +centroid = (0.80551866808028927, -1.6638191645203706) +description = Parkers Prairie city, MN +station = ('kaxn', 0.0050662616862055618) +zone = ('mnz041', 0.0041074208105882125) + +[fips2749768] +centroid = (0.81886349044762308, -1.6591159559718516) +description = Park Rapids city, MN +station = ('kpkd', 0.00031328304902174817) +zone = ('mnz024', 0.0037511493908175889) + +[fips2749966] +centroid = (0.79200475821502236, -1.6532031469852377) +description = Paynesville city, MN +station = ('kpex', 0.00032366926010378476) +zone = ('mnz049', 0.0033096196573110946) + +[fips2750056] +centroid = (0.79765154411704731, -1.6345147547668279) +description = Pease city, MN +station = ('kpnm', 0.0027255285127318453) +zone = ('mnz044', 0.0041254958618442512) + +[fips2750164] +centroid = (0.81280473702895739, -1.6770144994372711) +description = Pelican Rapids city, MN +station = ('kffm', 0.0050672874045889337) +zone = ('mnz030', 0.0029808957410480544) + +[fips2750200] +centroid = (0.76809317150404688, -1.636830754324347) +description = Pemberton city, MN +station = ('kacq', 0.003104693779191591) +zone = ('mnz084', 0.0024739683728989179) + +[fips2750344] +centroid = (0.78794384828452968, -1.6611120192241873) +description = Pennock city, MN +station = ('kbdh', 0.00071181830017744098) +zone = ('mnz057', 0.0020945427973535174) + +[fips2750416] +centroid = (0.81311564998190766, -1.6456363767329714) +description = Pequot Lakes city, MN +station = ('kpwc', 0.0026496746455428226) +zone = ('mnz033', 0.003195840989925214) + +[fips2750470] +centroid = (0.81330170208017016, -1.6680855346104084) +description = Perham city, MN +station = ('kadc', 0.0050756492154464435) +zone = ('mnz031', 0.0035433807121558847) + +[fips2750506] +centroid = (0.82337982659313114, -1.6895087879535229) +description = Perley city, MN +station = ('kfar', 0.004242354011093373) +zone = ('mnz002', 0.0048729008718041995) + +[fips2750596] +centroid = (0.76423951942222856, -1.6027682279640174) +description = Peterson city, MN +station = ('kona', 0.0054193915865247506) +zone = ('mnz088', 0.0035394749103738444) + +[fips2750776] +centroid = (0.80246797217414345, -1.6423804824666686) +description = Pierz city, MN +station = ('klxl', 0.0030545791384248939) +zone = ('mnz043', 0.0021120689649002304) + +[fips2750902] +centroid = (0.8084935992436062, -1.6489179098859861) +description = Pillager city, MN +station = ('ksaz', 0.0041077450631629249) +zone = ('mnz033', 0.0043104312512067993) + +[fips2751028] +centroid = (0.82760460548709369, -1.6684795775956311) +description = Pine Bend CDP, MN +station = ('kfse', 0.003688982734249465) +zone = ('mnz023', 0.0032141144855667024) + +[fips2751064] +centroid = (0.79993829195630273, -1.6226303366511006) +description = Pine City city, MN +station = ('kros', 0.0023656356667597065) +zone = ('mnz045', 0.0043923527203009842) + +[fips2751136] +centroid = (0.77140254265863095, -1.6166717302249145) +description = Pine Island city, MN +station = ('k9mn', 0.0035601203131920833) +zone = ('mnz078', 0.0038785396662423615) + +[fips2751234] +centroid = (0.82006644118126759, -1.6650810375695626) +description = Pine Point CDP, MN +station = ('kpkd', 0.0042717894985683721) +zone = ('mnz028', 0.00093541016452661175) + +[fips2751280] +centroid = (0.81547523041084891, -1.6475314552347866) +description = Pine River city, MN +station = ('kpwc', 0.00015823615145221722) +zone = ('mnz033', 0.0033387237498739533) + +[fips2751316] +centroid = (0.7860523826142658, -1.622334014650697) +description = Pine Springs city, MN +station = ('k21d', 0.0014280769420890044) +zone = ('mnz063', 0.0008510096993409917) + +[fips2751388] +centroid = (0.76786413194630776, -1.6809454521516605) +description = Pipestone city, MN +station = ('kpqn', 0.00022154924736994389) +zone = ('mnz097', 0.00081637555335061461) + +[fips2751424] +centroid = (0.77081920126273695, -1.6086558343962325) +description = Plainview city, MN +station = ('k9mn', 0.0047485726408790464) +zone = ('mnz079', 0.0022215178202955616) + +[fips2751460] +centroid = (0.7814249213552833, -1.6412960570425268) +description = Plato city, MN +station = ('kgyl', 0.00059017437695356478) +zone = ('mnz068', 0.0030527004431724217) + +[fips2751712] +centroid = (0.83627845553719249, -1.676260569560287) +description = Plummer city, MN +station = ('ktvf', 0.0031122749174041274) +zone = ('mnz014', 0.00097808367323518487) + +[fips2751730] +centroid = (0.78578292123105042, -1.6312296785954317) +description = Plymouth city, MN +station = ('kmic', 0.00159178980273721) +zone = ('mnz060', 0.00035294564138903988) + +[fips2751892] +centroid = (0.83836606130879554, -1.6562877197321648) +description = Ponemah CDP, MN +station = ('kvwu', 0.0049091425602947412) +zone = ('mnz009', 0.002597904451876052) + +[fips2752144] +centroid = (0.77913939524650411, -1.6784808552616266) +description = Porter city, MN +station = ('kcnb', 0.001780116088067702) +zone = ('mnz071', 0.0041725392145526181) + +[fips2752450] +centroid = (0.76222612505042031, -1.6071446759699781) +description = Preston city, MN +station = ('kfka', 0.0012282595989089973) +zone = ('mnz095', 9.8927752046337595e-05) + +[fips2752522] +centroid = (0.79530564706944173, -1.6334892691115261) +description = Princeton city, MN +station = ('kpnm', 0.0003231568864474821) +zone = ('mnz051', 0.0031058790760806962) + +[fips2752558] +centroid = (0.78426073232392357, -1.6613251064725632) +description = Prinsburg city, MN +station = ('kbdh', 0.0033072099145088668) +zone = ('mnz057', 0.0044117377580330059) + +[fips2752594] +centroid = (0.78060887521022071, -1.6308509596010414) +description = Prior Lake city, MN +station = ('kfcm', 0.0018963237783350267) +zone = ('mnz069', 0.0017887478824322083) + +[fips2752630] +centroid = (0.81580850103151725, -1.6096737278692881) +description = Proctor city, MN +station = ('kdlh', 0.0017522818150336609) +zone = ('mnz037', 0.0042198042676950811) + +[fips2752756] +centroid = (0.80137057895365937, -1.6262142131904382) +description = Quamba city, MN +station = ('kjmr', 0.0012764789192851733) +zone = ('mnz045', 0.0015293219691512152) + +[fips2752882] +centroid = (0.76403737538826255, -1.6140889570912282) +description = Racine city, MN +station = ('krst', 0.0021760788713569182) +zone = ('mnz094', 0.0038873955163228812) + +[fips2753026] +centroid = (0.78998279427658702, -1.6309820687344514) +description = Ramsey city, MN +station = ('kmic', 0.0036290084644293908) +zone = ('mnz061', 0.0024879142904193552) + +[fips2753080] +centroid = (0.80439612466528421, -1.649345724992235) +description = Randall city, MN +station = ('klxl', 0.0030286590769884663) +zone = ('mnz043', 0.0031084440910960618) + +[fips2753098] +centroid = (0.77711057216410839, -1.6234936288590145) +description = Randolph city, MN +station = ('ksyn', 0.00087146264148431644) +zone = ('mnz070', 0.0026232118002604832) + +[fips2753134] +centroid = (0.84844073006983745, -1.6292181691792158) +description = Ranier city, MN +station = ('kinl', 0.00099891629523025981) +zone = ('mnz010', 0.0082249442953491059) + +[fips2753296] +centroid = (0.78571111838562335, -1.6621834070388164) +description = Raymond city, MN +station = ('kbdh', 0.002209926907300745) +zone = ('mnz057', 0.0036921359803305832) + +[fips2753386] +centroid = (0.83552539832483452, -1.6567637408323537) +description = Redby CDP, MN +station = ('kbji', 0.0064946441863557502) +zone = ('mnz017', 0.0044447583048424864) + +[fips2753458] +centroid = (0.83544410088827659, -1.6581173134804454) +description = Red Lake CDP, MN +station = ('kbji', 0.0064649246609722617) +zone = ('mnz017', 0.0047479373088319876) + +[fips2753476] +centroid = (0.83573298778606664, -1.6802813892778616) +description = Red Lake Falls city, MN +station = ('ktvf', 0.0033564284859176176) +zone = ('mnz014', 0.0020915564703408132) + +[fips2753620] +centroid = (0.77810041819608444, -1.6161785874447634) +description = Red Wing city, MN +station = ('krgk', 0.001425865312641582) +zone = ('wiz024', 0.0032638495841523481) + +[fips2753656] +centroid = (0.77747194258573382, -1.6598872169683079) +description = Redwood Falls city, MN +station = ('krwf', 0.00027339265908313596) +zone = ('mnz073', 0.0031010739423156051) + +[fips2753710] +centroid = (0.79247329185272031, -1.6552649044306185) +description = Regal city, MN +station = ('kpex', 0.0012817017732494873) +zone = ('mnz049', 0.0037766501841767666) + +[fips2753782] +centroid = (0.82129731718294408, -1.6390809898756509) +description = Remer city, MN +station = ('kxvg', 0.0036574033652741656) +zone = ('mnz025', 0.0039137995457628741) + +[fips2753890] +centroid = (0.78169282939546436, -1.6618044611516236) +description = Renville city, MN +station = ('kovl', 0.0022552912365674787) +zone = ('mnz065', 0.0034777330741373701) + +[fips2753908] +centroid = (0.77181224124724412, -1.6643671629989119) +description = Revere city, MN +station = ('ktkc', 0.003113016640968449) +zone = ('mnz073', 0.0034495101930002983) + +[fips2753998] +centroid = (0.79862576945221808, -1.6448480464164306) +description = Rice city, MN +station = ('klxl', 0.0035971203266360391) +zone = ('mnz050', 0.0031442684127518821) + +[fips2754056] +centroid = (0.82708184446953636, -1.6672147200334182) +description = Rice Lake CDP, MN +station = ('kfse', 0.004621419048648258) +zone = ('mnz023', 0.0022110412482147061) + +[fips2754214] +centroid = (0.78320707705449455, -1.6280872656370935) +description = Richfield city, MN +station = ('kmsp', 0.00082594080434747605) +zone = ('mnz062', 0.0033638240593483839) + +[fips2754268] +centroid = (0.79334864428576557, -1.6495986232008488) +description = Richmond city, MN +station = ('kpex', 0.0031856327707883159) +zone = ('mnz049', 0.002069453380267405) + +[fips2754340] +centroid = (0.81168098933676835, -1.6689862990373625) +description = Richville city, MN +station = ('kadc', 0.005081857743477268) +zone = ('mnz031', 0.002571357142640588) + +[fips2754596] +centroid = (0.82592147976964048, -1.6746627555366713) +description = Riverland CDP, MN +station = ('kfse', 0.0051736238035207409) +zone = ('mnz022', 0.0016822966869314111) + +[fips2754736] +centroid = (0.81083382397114268, -1.6415832858775277) +description = Riverton city, MN +station = ('kbrd', 0.0013682788049462151) +zone = ('mnz034', 0.00047331773436188208) + +[fips2754808] +centroid = (0.78582608322345227, -1.6289267864605954) +description = Robbinsdale city, MN +station = ('kmic', 0.00077344083327728313) +zone = ('mnz060', 0.0018370070040578381) + +[fips2754880] +centroid = (0.76821438462059799, -1.6140318150115178) +description = Rochester city, MN +station = ('k9mn', 0.00017914775914817149) +zone = ('mnz087', 0.00096892206345563429) + +[fips2754934] +centroid = (0.79874497544012923, -1.6214712460415586) +description = Rock Creek city, MN +station = ('kros', 0.0013109882439847887) +zone = ('mnz053', 0.0045769138759497755) + +[fips2755006] +centroid = (0.78699913646701014, -1.6361455555133064) +description = Rockford city, MN +station = ('kcfe', 0.0016896230708823728) +zone = ('mnz059', 0.0030515906698611352) + +[fips2755078] +centroid = (0.7935327241619734, -1.6461755089389125) +description = Rockville city, MN +station = ('kstc', 0.0036005449132858708) +zone = ('mnz049', 0.0038985164498222058) + +[fips2755186] +centroid = (0.78879712230253718, -1.6329352317937733) +description = Rogers city, MN +station = ('kcfe', 0.0035346753300969096) +zone = ('mnz060', 0.0034761105299263668) + +[fips2755276] +centroid = (0.76968163056287198, -1.6025415795073534) +description = Rollingstone city, MN +station = ('kona', 0.0015165896304019212) +zone = ('mnz088', 0.0020277375181365982) + +[fips2755366] +centroid = (0.79735970761282138, -1.6381679557840549) +description = Ronneby CDP, MN +station = ('kstc', 0.0033096390475671812) +zone = ('mnz050', 0.0017089796181605148) + +[fips2755438] +centroid = (0.85183899084322545, -1.6598198123525956) +description = Roosevelt city, MN +station = ('krrt', 0.0036881243401251178) +zone = ('mnz006', 0.0023297467288938552) + +[fips2755510] +centroid = (0.79294611900037804, -1.6517191633354369) +description = Roscoe city, MN +station = ('kpex', 0.0017081317964329399) +zone = ('mnz049', 0.0021095006620891719) + +[fips2755546] +centroid = (0.85249490302941755, -1.6713675390023208) +description = Roseau city, MN +station = ('krox', 0.00072235295143133161) +zone = ('mnz005', 0.0013306543484600032) + +[fips2755600] +centroid = (0.76104884811007256, -1.6201869629647712) +description = Rose Creek city, MN +station = ('kaum', 0.0016942551096549414) +zone = ('mnz094', 0.0015175004069802745) + +[fips2755726] +centroid = (0.78096691205297486, -1.6243738333073805) +description = Rosemount city, MN +station = ('ksgs', 0.0019926686650249309) +zone = ('mnz070', 0.0012979478197134677) + +[fips2755852] +centroid = (0.78566732807469086, -1.6258616566815354) +description = Roseville city, MN +station = ('kstp', 0.001932287669460971) +zone = ('mnz062', 0.00068674427643770355) + +[fips2756014] +centroid = (0.81111864425177571, -1.6804692041586686) +description = Rothsay city, MN +station = ('kffm', 0.0036920907356984803) +zone = ('mnz029', 0.0030134811972257172) + +[fips2756086] +centroid = (0.75986745219269014, -1.6662994519203798) +description = Round Lake city, MN +station = ('kotg', 0.0024205782605549488) +zone = ('iaz002', 0.0033725256429709147) + +[fips2756176] +centroid = (0.79988823591335556, -1.6457176916228216) +description = Royalton city, MN +station = ('klxl', 0.0022034817211025797) +zone = ('mnz043', 0.0031967503561928668) + +[fips2756212] +centroid = (0.82583452746630615, -1.6674654191271747) +description = Roy Lake CDP, MN +station = ('kfse', 0.0055552272402176533) +zone = ('mnz023', 0.002066437681756786) + +[fips2756266] +centroid = (0.79739628971394305, -1.6225506274641621) +description = Rush City city, MN +station = ('kros', 0.00023792497997415552) +zone = ('mnz053', 0.0033020628173625233) + +[fips2756284] +centroid = (0.76468873226510681, -1.6014063999085637) +description = Rushford city, MN +station = ('kona', 0.0047588928217713357) +zone = ('mnz088', 0.0030441366760826706) + +[fips2756302] +centroid = (0.76453428807959789, -1.6019605419460718) +description = Rushford Village city, MN +station = ('kona', 0.0049824697202686553) +zone = ('mnz088', 0.0031829875429704464) + +[fips2756338] +centroid = (0.76130720919924533, -1.6720071498132993) +description = Rushmore city, MN +station = ('kotg', 0.0027745749453065506) +zone = ('mnz089', 0.0011117984224173142) + +[fips2756428] +centroid = (0.77353760393259563, -1.6745344738366497) +description = Russell city, MN +station = ('kmml', 0.0027615488657553723) +zone = ('mnz072', 0.0020848113811308996) + +[fips2756482] +centroid = (0.77104223688784934, -1.6773490441482932) +description = Ruthton city, MN +station = ('kpqn', 0.0043036846731154777) +zone = ('mnz097', 0.0033126012335841764) + +[fips2756518] +centroid = (0.80731754403373479, -1.6210310914574984) +description = Rutledge city, MN +station = ('kmzh', 0.0029602658794711193) +zone = ('mnz038', 0.0028796918223459901) + +[fips2756554] +centroid = (0.81645552949181655, -1.6869282837478641) +description = Sabin city, MN +station = ('kjkj', 0.0010479070294669801) +zone = ('mnz003', 0.0027723518628234895) + +[fips2756572] +centroid = (0.78158795256071201, -1.6641849157184188) +description = Sacred Heart city, MN +station = ('kgdb', 0.0025896697034064231) +zone = ('mnz056', 0.004975354269694132) + +[fips2756680] +centroid = (0.78587505716226325, -1.6269179648514274) +description = St. Anthony city, MN +station = ('kmic', 0.0017946957030296913) +zone = ('mnz062', 0.0014437510110189313) + +[fips2756698] +centroid = (0.7974230630646687, -1.6512827263026832) +description = St. Anthony city, MN +station = ('k14y', 0.0048170944446846164) +zone = ('mnz049', 0.0023872588870862931) + +[fips2756724] +centroid = (0.79326040043878476, -1.6440341993862255) +description = St. Augusta city, MN +station = ('kstc', 0.0024933933291525589) +zone = ('mnz050', 0.0049639958690296856) + +[fips2756770] +centroid = (0.78374114780560489, -1.6362143389391275) +description = St. Bonifacius city, MN +station = ('kcfe', 0.0045821164373565917) +zone = ('mnz068', 0.0016168904761874195) + +[fips2756788] +centroid = (0.7673993333132092, -1.606733092425773) +description = St. Charles city, MN +station = ('kfka', 0.0053194383530601299) +zone = ('mnz088', 0.0035299809131184752) + +[fips2756824] +centroid = (0.7693814513848215, -1.638147849591072) +description = St. Clair city, MN +station = ('kmkt', 0.002453804087972954) +zone = ('mnz084', 0.0035659765949342197) + +[fips2756896] +centroid = (0.79459048095514462, -1.6435949872799611) +description = St. Cloud city, MN +station = ('kstc', 0.0015348350603616235) +zone = ('mnz050', 0.003670593648848842) + +[fips2756950] +centroid = (0.79230760774682851, -1.6298904874603766) +description = St. Francis city, MN +station = ('kcbg', 0.0033184182212739033) +zone = ('mnz061', 0.0027407735240749936) + +[fips2757022] +centroid = (0.8379877262868406, -1.6792435815980407) +description = St. Hilaire city, MN +station = ('ktvf', 0.00099830315847760417) +zone = ('mnz014', 0.002829788055266607) + +[fips2757040] +centroid = (0.76765448299655814, -1.6515246463903022) +description = St. James city, MN +station = ('kjyg', 0.00084726290068784906) +zone = ('mnz082', 0.00016708381960710153) + +[fips2757130] +centroid = (0.79517068075838504, -1.6459902247855207) +description = St. Joseph city, MN +station = ('kstc', 0.0031614044485769911) +zone = ('mnz050', 0.0044899482650928701) + +[fips2757202] +centroid = (0.78046492045351623, -1.6764330604502615) +description = St. Leo city, MN +station = ('kcnb', 0.0026556684394567769) +zone = ('mnz064', 0.002285055373934813) + +[fips2757220] +centroid = (0.78450247787861738, -1.629527266989744) +description = St. Louis Park city, MN +station = ('kmic', 0.0020675789938415863) +zone = ('mnz060', 0.001689147743561272) + +[fips2757238] +centroid = (0.79417343453038047, -1.6522581384617452) +description = St. Martin city, MN +station = ('kpex', 0.0024755067683655983) +zone = ('mnz049', 0.0010892785022859576) + +[fips2757292] +centroid = (0.78384073629272377, -1.6191200606463194) +description = St. Marys Point city, MN +station = ('k21d', 0.0018527597979215002) +zone = ('mnz063', 0.0026412215250372416) + +[fips2757346] +centroid = (0.78887552249253678, -1.635190703332833) +description = St. Michael city, MN +station = ('kcfe', 0.0020158395537307793) +zone = ('mnz059', 0.0033929696396855858) + +[fips2758000] +centroid = (0.78450577655090359, -1.6249688160493851) +description = St. Paul city, MN +station = ('kstp', 0.00071846323719806135) +zone = ('mnz062', 0.001192107446956977) + +[fips2758018] +centroid = (0.78253023837057123, -1.6230537186210494) +description = St. Paul Park city, MN +station = ('ksgs', 0.00060836009915198367) +zone = ('mnz070', 0.0029942813868872524) + +[fips2758036] +centroid = (0.77367834728347651, -1.6399918946655589) +description = St. Peter city, MN +station = ('kmkt', 0.0020418297152171153) +zone = ('mnz076', 0.0030223111719393883) + +[fips2758072] +centroid = (0.79808283242850775, -1.6530623163678941) +description = St. Rosa city, MN +station = ('k14y', 0.0035513795248593894) +zone = ('mnz049', 0.0032844794535990588) + +[fips2758090] +centroid = (0.7976310714049214, -1.6453941599393795) +description = St. Stephen city, MN +station = ('kstc', 0.0037974508541367916) +zone = ('mnz050', 0.0033552350599460349) + +[fips2758144] +centroid = (0.85467246307066824, -1.6969197003035861) +description = St. Vincent city, MN +station = ('khco', 0.0049837869475525369) +zone = ('ndz008', 0.0051355027746460332) + +[fips2758306] +centroid = (0.77159604731279963, -1.6603282965768718) +description = Sanborn city, MN +station = ('kmwm', 0.0051701046025989838) +zone = ('mnz081', 0.0035855824887537175) + +[fips2758396] +centroid = (0.80510355897099495, -1.6207922082427777) +description = Sandstone city, MN +station = ('k04w', 0.0019278172949572375) +zone = ('mnz038', 0.0014966605315310281) + +[fips2758576] +centroid = (0.76455181118528781, -1.6196766286914879) +description = Sargeant city, MN +station = ('kaum', 0.0029460907354735715) +zone = ('mnz094', 0.0024194681267747584) + +[fips2758612] +centroid = (0.79618557226512721, -1.644319839971607) +description = Sartell city, MN +station = ('kstc', 0.0023142401738104911) +zone = ('mnz050', 0.0029656012908520243) + +[fips2758648] +centroid = (0.79827431250074399, -1.6572382784026785) +description = Sauk Centre city, MN +station = ('kd39', 0.00055808241106775308) +zone = ('mnz042', 0.0058478433970828251) + +[fips2758684] +centroid = (0.79578650273165874, -1.6433089452688519) +description = Sauk Rapids city, MN +station = ('kstc', 0.0015025931639127397) +zone = ('mnz050', 0.0026267743958213975) + +[fips2758738] +centroid = (0.78116223184956557, -1.6295610565640628) +description = Savage city, MN +station = ('kfcm', 0.0018295063344692221) +zone = ('mnz069', 0.0028272909047105423) + +[fips2758900] +centroid = (0.78978829478474477, -1.6202486429005367) +description = Scandia city, MN +station = ('koeo', 0.0020233856461162286) +zone = ('mnz063', 0.0037732148846863068) + +[fips2758936] +centroid = (0.81518185801688114, -1.6132062044621545) +description = Scanlon city, MN +station = ('kcoq', 0.00084653691390057734) +zone = ('mnz037', 0.0019618036341638558) + +[fips2759098] +centroid = (0.77626686255040178, -1.6638196706658539) +description = Seaforth city, MN +station = ('krwf', 0.0033232857019089815) +zone = ('mnz073', 0.0015887257267340896) + +[fips2759116] +centroid = (0.77197223557977435, -1.6482213315282226) +description = Searles CDP, MN +station = ('kulm', 0.0016987313838114858) +zone = ('mnz075', 0.0031449908081071579) + +[fips2759152] +centroid = (0.81383043212376949, -1.6595953630107894) +description = Sebeka city, MN +station = ('kadc', 0.0034520470828740771) +zone = ('mnz032', 0.0016079578088973761) + +[fips2759188] +centroid = (0.79549133264856142, -1.6623336275275358) +description = Sedan city, MN +station = ('kghw', 0.0015290798698691464) +zone = ('mnz048', 0.0024443079147686564) + +[fips2759314] +centroid = (0.79219643027347653, -1.6188059711941305) +description = Shafer city, MN +station = ('koeo', 0.0015965470661605955) +zone = ('mnz053', 0.0027587277180530856) + +[fips2759350] +centroid = (0.78138645429856923, -1.6314447729724477) +description = Shakopee city, MN +station = ('kfcm', 0.0010849455691248418) +zone = ('mnz069', 0.0022547305063545481) + +[fips2759566] +centroid = (0.8283033131465446, -1.6898219174746232) +description = Shelly city, MN +station = ('kckn', 0.007241305038628288) +zone = ('mnz002', 0.00488309155128359) + +[fips2759620] +centroid = (0.76192011647266822, -1.6533028052855265) +description = Sherburn city, MN +station = ('kfrm', 0.0039232843410419499) +zone = ('mnz091', 0.0022498990969799641) + +[fips2759782] +centroid = (0.82955982803493278, -1.6625936117729128) +description = Shevlin city, MN +station = ('kbji', 0.0038820852969702032) +zone = ('mnz023', 0.0038263855468230056) + +[fips2759998] +centroid = (0.78687547988950635, -1.625499849927597) +description = Shoreview city, MN +station = ('kane', 0.0015266599382032951) +zone = ('mnz062', 0.0012548727314267243) + +[fips2760016] +centroid = (0.78401001577687457, -1.6330286418153397) +description = Shorewood city, MN +station = ('kfcm', 0.0019399276965593999) +zone = ('mnz060', 0.0018316912043985405) + +[fips2760250] +centroid = (0.82542399111965203, -1.593080917577163) +description = Silver Bay city, MN +station = ('kbfw', 0.0021868930969644071) +zone = ('mnz020', 0.0020350762371999739) + +[fips2760322] +centroid = (0.7907860646115249, -1.6404077193598467) +description = Silver Creek CDP, MN +station = ('kmgg', 0.0012674798185464873) +zone = ('mnz059', 0.002373452949456541) + +[fips2760376] +centroid = (0.78372125105213208, -1.6440592099544067) +description = Silver Lake city, MN +station = ('khcd', 0.0023863975003168198) +zone = ('mnz066', 0.0016807934227266107) + +[fips2760754] +centroid = (0.77040390016722482, -1.6411962416626054) +description = Skyline city, MN +station = ('kmkt', 0.0019728101766628256) +zone = ('mnz083', 0.0019020371134002261) + +[fips2760808] +centroid = (0.76777531214067374, -1.6712872364034368) +description = Slayton city, MN +station = ('kdvp', 0.0003176978171444994) +zone = ('mnz080', 0.00055954487413683955) + +[fips2760844] +centroid = (0.77316186945122634, -1.6532642160557649) +description = Sleepy Eye city, MN +station = ('kulm', 0.0028279482790598202) +zone = ('mnz074', 0.00099210438590010804) + +[fips2761006] +centroid = (0.80149116375167972, -1.6490377092858428) +description = Sobieski city, MN +station = ('klxl', 0.0016852527647347618) +zone = ('mnz043', 0.0030443846602703599) + +[fips2761114] +centroid = (0.82939817563961316, -1.6603351033609546) +description = Solway city, MN +station = ('kbji', 0.0023495774321722735) +zone = ('mnz023', 0.0044283916110396046) + +[fips2761204] +centroid = (0.83449444978897391, -1.609815047178822) +description = Soudan CDP, MN +station = ('kelo', 0.0047152414197248809) +zone = ('mnz011', 0.0066448845617786733) + +[fips2761308] +centroid = (0.82594380253077337, -1.6664191291471893) +description = South End CDP, MN +station = ('kfse', 0.0058511900474178188) +zone = ('mnz023', 0.0013544558015709787) + +[fips2761402] +centroid = (0.79050778931558696, -1.6444040172014307) +description = South Haven city, MN +station = ('kmgg', 0.0030148871230583725) +zone = ('mnz059', 0.0037525094812912814) + +[fips2761492] +centroid = (0.78344386587411274, -1.6238630103419067) +description = South St. Paul city, MN +station = ('ksgs', 0.00054605659584101894) +zone = ('mnz062', 0.0023673183359313207) + +[fips2761690] +centroid = (0.78949158881190573, -1.6570234632783429) +description = Spicer city, MN +station = ('kbdh', 0.0030715670098533151) +zone = ('mnz057', 0.0016375184610692584) + +[fips2761816] +centroid = (0.77208428571775245, -1.6577378439944768) +description = Springfield city, MN +station = ('krwf', 0.005605984803780259) +zone = ('mnz074', 0.0031732124626312427) + +[fips2761852] +centroid = (0.76027858195129006, -1.5993667906913906) +description = Spring Grove city, MN +station = ('kdeh', 0.0049936261389286864) +zone = ('mnz096', 0.0026547604629519909) + +[fips2761888] +centroid = (0.79453014492290308, -1.6551245275988806) +description = Spring Hill city, MN +station = ('kpex', 0.0028347206384032081) +zone = ('mnz049', 0.002720411320972573) + +[fips2761996] +centroid = (0.7874215235992853, -1.6274351233620858) +description = Spring Lake Park city, MN +station = ('kane', 0.00069043805482431201) +zone = ('mnz062', 0.0024907665498667634) + +[fips2762014] +centroid = (0.78429757622443319, -1.6341639784937623) +description = Spring Park city, MN +station = ('kfcm', 0.0026973852896789371) +zone = ('mnz060', 0.0022363902946495999) + +[fips2762104] +centroid = (0.76247635290527882, -1.6125113539803504) +description = Spring Valley city, MN +station = ('kfka', 0.0026610689763003517) +zone = ('mnz095', 0.0037930816108858278) + +[fips2762284] +centroid = (0.83113181118561907, -1.6430086788243388) +description = Squaw Lake city, MN +station = ('kfoz', 0.0063861815145943267) +zone = ('mnz018', 0.004855082774994704) + +[fips2762320] +centroid = (0.79194098388415457, -1.6232639784360372) +description = Stacy city, MN +station = ('kcbg', 0.0046227819792375629) +zone = ('mnz053', 0.0025294807897685667) + +[fips2762356] +centroid = (0.79696133621105358, -1.6263303299455736) +description = Stanchfield CDP, MN +station = ('kcbg', 0.0019674018880194858) +zone = ('mnz052', 0.0022412748662380294) + +[fips2762446] +centroid = (0.80934664636881093, -1.654833511399403) +description = Staples city, MN +station = ('ksaz', 0.00018164574684749148) +zone = ('mnz032', 0.0041652950011501783) + +[fips2762500] +centroid = (0.79608022419147684, -1.6673708571883017) +description = Starbuck city, MN +station = ('kghw', 0.002725850733974149) +zone = ('mnz048', 0.0011759090263853084) + +[fips2762662] +centroid = (0.75946675950301734, -1.6801061582209613) +description = Steen city, MN +station = ('klyv', 0.0019593425972024292) +zone = ('iaz001', 0.0024278156790735212) + +[fips2762698] +centroid = (0.84564748768165321, -1.6908152890716883) +description = Stephen city, MN +station = ('khco', 0.0053047786945724998) +zone = ('mnz007', 0.0020677484266236673) + +[fips2762788] +centroid = (0.78057707531124931, -1.6491021817484115) +description = Stewart city, MN +station = ('khcd', 0.0028027874020642167) +zone = ('mnz066', 0.0031737479676127423) + +[fips2762806] +centroid = (0.76552662993240428, -1.6142693194161293) +description = Stewartville city, MN +station = ('krst', 0.00068275165679977862) +zone = ('mnz087', 0.0027216971140776999) + +[fips2762824] +centroid = (0.78642103105887207, -1.6201962655696844) +description = Stillwater city, MN +station = ('k21d', 0.001051028825470918) +zone = ('mnz063', 0.00074878708994773123) + +[fips2762896] +centroid = (0.76841167663924348, -1.6016751806133709) +description = Stockton city, MN +station = ('kona', 0.0013150810294202953) +zone = ('mnz088', 0.00070639943324799035) + +[fips2763022] +centroid = (0.76863558492898176, -1.6636355035231833) +description = Storden city, MN +station = ('kmwm', 0.0034353129595100875) +zone = ('mnz081', 0.0018233854003450063) + +[fips2763112] +centroid = (0.84629867002557224, -1.683332137543885) +description = Strandquist city, MN +station = ('ktvf', 0.0079912171621047204) +zone = ('mnz007', 0.0043259507827821987) + +[fips2763130] +centroid = (0.84742445975298619, -1.6784344818634012) +description = Strathcona city, MN +station = ('krox', 0.0074618798091880224) +zone = ('mnz008', 0.0039641129814122012) + +[fips2763220] +centroid = (0.80967408758977766, -1.6200463243336454) +description = Sturgeon Lake city, MN +station = ('kmzh', 0.00052063567026305673) +zone = ('mnz038', 0.0048131248535171452) + +[fips2763454] +centroid = (0.79145967443633203, -1.6622510560006238) +description = Sunburg city, MN +station = ('kbdh', 0.0041910507887572669) +zone = ('mnz057', 0.0044632950158633349) + +[fips2763544] +centroid = (0.78317588802076143, -1.6246739950321383) +description = Sunfish Lake city, MN +station = ('ksgs', 0.00072250436393671183) +zone = ('mnz062', 0.0025254043669926079) + +[fips2763778] +centroid = (0.80155308803354053, -1.6516754428376745) +description = Swanville city, MN +station = ('k14y', 0.0028600615394225428) +zone = ('mnz042', 0.0040762472182145236) + +[fips2764048] +centroid = (0.82606906481118914, -1.6294583090309978) +description = Taconite city, MN +station = ('kgpz', 0.0027066356628686469) +zone = ('mnz026', 0.0018205086025444351) + +[fips2764156] +centroid = (0.81424576812586646, -1.6253427877482101) +description = Tamarack city, MN +station = ('khzx', 0.0022896739767791718) +zone = ('mnz035', 0.0046296314094743584) + +[fips2764210] +centroid = (0.76022196347035531, -1.6168806461363783) +description = Taopi city, MN +station = ('kaum', 0.0041627658359610553) +zone = ('mnz094', 0.002440563674221072) + +[fips2764264] +centroid = (0.77831690883650173, -1.6766145921457616) +description = Taunton city, MN +station = ('kcnb', 0.0033106907685829514) +zone = ('mnz064', 0.0032199424701016711) + +[fips2764318] +centroid = (0.79248067459545624, -1.6174554703255224) +description = Taylors Falls city, MN +station = ('koeo', 0.0017084458050441401) +zone = ('mnz053', 0.0033348745944239886) + +[fips2764426] +centroid = (0.80362660899807981, -1.6834401210647059) +description = Tenney city, MN +station = ('kbwp', 0.0039437625388693172) +zone = ('mnz039', 0.0047575543568220665) + +[fips2764444] +centroid = (0.8318148981482647, -1.6525469380930728) +description = Tenstrike city, MN +station = ('kbji', 0.0040456613596784657) +zone = ('mnz017', 0.0014747266783988241) + +[fips2764543] +centroid = (0.76977519766407143, -1.6697607539863499) +description = The Lakes CDP, MN +station = ('kdvp', 0.0024978676501319652) +zone = ('mnz080', 0.0018563354897610938) + +[fips2764547] +centroid = (0.82588584014631472, -1.6701955155030217) +description = The Ranch CDP, MN +station = ('kfse', 0.0048533300088037974) +zone = ('mnz022', 0.0013502478238189165) + +[fips2764570] +centroid = (0.83974944418051123, -1.6785845278191951) +description = Thief River Falls city, MN +station = ('ktvf', 0.00083248477827064409) +zone = ('mnz013', 0.0018245419609310759) + +[fips2764750] +centroid = (0.81452254243864775, -1.6127112116329962) +description = Thomson city, MN +station = ('kcoq', 0.0012992147352363047) +zone = ('mnz037', 0.0025805781333063556) + +[fips2764948] +centroid = (0.80303981185026685, -1.6811020779987342) +description = Tintah city, MN +station = ('keth', 0.0049867449725970441) +zone = ('mnz039', 0.0045545947582975761) + +[fips2765164] +centroid = (0.78392400595133638, -1.6334433320456139) +description = Tonka Bay city, MN +station = ('kfcm', 0.0020701628355034489) +zone = ('mnz060', 0.0020844559732073544) + +[fips2765272] +centroid = (0.83454499452411168, -1.6105005077892502) +description = Tower city, MN +station = ('kelo', 0.0051749869778965705) +zone = ('mnz011', 0.0063750825890041629) + +[fips2765308] +centroid = (0.772103065460504, -1.6688182412836881) +description = Tracy city, MN +station = ('ktkc', 0.00021729311067746751) +zone = ('mnz072', 0.0041341784588883558) + +[fips2765344] +centroid = (0.83397568557540369, -1.6702452399334111) +description = Trail city, MN +station = ('kfse', 0.0034407892888838822) +zone = ('mnz016', 0.0036646614131567077) + +[fips2765470] +centroid = (0.76377547128070822, -1.6531026334736154) +description = Trimont city, MN +station = ('kfrm', 0.004243270692480065) +zone = ('mnz091', 0.0025724608086610222) + +[fips2765506] +centroid = (0.81167985487275451, -1.6408128626391121) +description = Trommald city, MN +station = ('kbrd', 0.0023563788210623046) +zone = ('mnz034', 0.00082097835754097815) + +[fips2765542] +centroid = (0.765991568191843, -1.6799253072038696) +description = Trosky city, MN +station = ('kpqn', 0.0018469950708542905) +zone = ('mnz097', 0.0023559227872704844) + +[fips2765668] +centroid = (0.76494061818275461, -1.6482306864930132) +description = Truman city, MN +station = ('kfrm', 0.0031146222863202193) +zone = ('mnz091', 0.0030454649050727345) + +[fips2765794] +centroid = (0.83057049584488518, -1.653841047373549) +description = Turtle River city, MN +station = ('kbji', 0.0025749475532869858) +zone = ('mnz017', 0.0009140015115068743) + +[fips2765920] +centroid = (0.76028123485175303, -1.6305483718686233) +description = Twin Lakes city, MN +station = ('kael', 0.0022543475794308504) +zone = ('mnz093', 0.0021844526694284601) + +[fips2765927] +centroid = (0.82412874737516195, -1.6693279297851478) +description = Twin Lakes CDP, MN +station = ('kfse', 0.0066945933541415056) +zone = ('mnz022', 0.0026796808019256477) + +[fips2765938] +centroid = (0.82482162563491113, -1.6800353502132077) +description = Twin Valley city, MN +station = ('kfse', 0.0081765180660603089) +zone = ('mnz002', 0.0026055001636947775) + +[fips2765956] +centroid = (0.82083157607204937, -1.6000301205269034) +description = Two Harbors city, MN +station = ('ktwm', 0.00095705472741143777) +zone = ('mnz020', 0.0051554668453445392) + +[fips2766046] +centroid = (0.77281648624554911, -1.6778718749790209) +description = Tyler city, MN +station = ('kmml', 0.0049667753800690809) +zone = ('mnz071', 0.0028542199479444806) + +[fips2766136] +centroid = (0.82167223135956491, -1.6800303062116695) +description = Ulen city, MN +station = ('kjkj', 0.0063745205465283849) +zone = ('mnz003', 0.0042614688025805342) + +[fips2766172] +centroid = (0.80784655333001432, -1.6733362878518632) +description = Underwood city, MN +station = ('kffm', 0.0033160047441949001) +zone = ('mnz030', 0.00270600097162301) + +[fips2766334] +centroid = (0.79958557836776734, -1.6504481447609647) +description = Upsala city, MN +station = ('klxl', 0.0035312719730590625) +zone = ('mnz049', 0.0045892270723626762) + +[fips2766388] +centroid = (0.80503100563398955, -1.6669780359335553) +description = Urbank city, MN +station = ('kaxn', 0.0047026570750449814) +zone = ('mnz041', 0.003408195480609208) + +[fips2766424] +centroid = (0.76755051373301686, -1.6048212936697235) +description = Utica city, MN +station = ('kona', 0.0036358102979522672) +zone = ('mnz088', 0.0021462333414831183) + +[fips2766460] +centroid = (0.78636455220427759, -1.6244189849751294) +description = Vadnais Heights city, MN +station = ('kstp', 0.0021477340451336474) +zone = ('mnz062', 0.00074661083458986996) + +[fips2766766] +centroid = (0.8142809365102941, -1.6720865622942651) +description = Vergas city, MN +station = ('kdtl', 0.0032579707168339453) +zone = ('mnz030', 0.0050450748612398512) + +[fips2766802] +centroid = (0.77963464987505005, -1.6225179723538572) +description = Vermillion city, MN +station = ('ksgs', 0.0033825507652150721) +zone = ('mnz070', 0.0012686065325227284) + +[fips2766874] +centroid = (0.80978102391304729, -1.6582569398206048) +description = Verndale city, MN +station = ('ksaz', 0.0024775634724687212) +zone = ('mnz032', 0.0033324991899021999) + +[fips2766910] +centroid = (0.76728801621351694, -1.6435221197836904) +description = Vernon Center city, MN +station = ('kmkt', 0.005434884592101898) +zone = ('mnz083', 0.0017773257349602586) + +[fips2766982] +centroid = (0.77678539987116935, -1.6652881208853119) +description = Vesta city, MN +station = ('kgdb', 0.0046495356902389135) +zone = ('mnz073', 0.0026829075037378735) + +[fips2767036] +centroid = (0.78302181035439533, -1.6346088105602181) +description = Victoria city, MN +station = ('kfcm', 0.002365715918426096) +zone = ('mnz068', 0.001960345405944819) + +[fips2767090] +centroid = (0.84156643665159236, -1.6826149119410705) +description = Viking city, MN +station = ('ktvf', 0.0037100365994864764) +zone = ('mnz008', 0.0053495687384548024) + +[fips2767144] +centroid = (0.79786632433479776, -1.6627717575296637) +description = Villard city, MN +station = ('kghw', 0.0012604844835178491) +zone = ('mnz048', 0.0030923692470649303) + +[fips2767180] +centroid = (0.80591742345449247, -1.6369051751636519) +description = Vineland CDP, MN +station = ('kbrd', 0.0057185228753114763) +zone = ('mnz044', 0.0045664690459545822) + +[fips2767216] +centroid = (0.80733443882089417, -1.6673408898850448) +description = Vining city, MN +station = ('kadc', 0.0051309801514224027) +zone = ('mnz031', 0.0028149169930741349) + +[fips2767288] +centroid = (0.82927591532551093, -1.6147634919405389) +description = Virginia city, MN +station = ('kevm', 0.0017138945041513544) +zone = ('mnz019', 0.0015443538986545777) + +[fips2767378] +centroid = (0.7744183145264445, -1.6064956403810389) +description = Wabasha city, MN +station = ('kona', 0.0066221700276371193) +zone = ('mnz079', 0.0027600754441246757) + +[fips2767396] +centroid = (0.77496941969105415, -1.662520848996397) +description = Wabasso city, MN +station = ('krwf', 0.0033500323341984204) +zone = ('mnz073', 2.8611921345903075e-05) + +[fips2767432] +centroid = (0.78262185070300849, -1.6370230547013316) +description = Waconia city, MN +station = ('kgyl', 0.003845763420613491) +zone = ('mnz068', 0.00036496544466566044) + +[fips2767504] +centroid = (0.81065646361255517, -1.660274086650305) +description = Wadena city, MN +station = ('kadc', 0.0010131895629253316) +zone = ('mnz032', 0.0030694157045035352) + +[fips2767558] +centroid = (0.80514268925282473, -1.6323254312064188) +description = Wahkon city, MN +station = ('kjmr', 0.0052694322720997187) +zone = ('mnz044', 0.0036041678289380394) + +[fips2767612] +centroid = (0.79447110043430813, -1.6448565985297654) +description = Waite Park city, MN +station = ('kstc', 0.0024216061188524979) +zone = ('mnz050', 0.0043238335261541255) + +[fips2767756] +centroid = (0.76677762958035622, -1.6353282701844751) +description = Waldorf city, MN +station = ('kacq', 0.0030451092698850681) +zone = ('mnz084', 0.0020794523872956936) + +[fips2767792] +centroid = (0.82184915538583958, -1.6507614662682826) +description = Walker city, MN +station = ('kxvg', 0.004809227713496911) +zone = ('mnz024', 0.0039950099327010222) + +[fips2767846] +centroid = (0.77187008145865521, -1.6662534799478823) +description = Walnut Grove city, MN +station = ('ktkc', 0.0017748624098412854) +zone = ('mnz073', 0.0041199419881288116) + +[fips2767900] +centroid = (0.76104917972263053, -1.6349247326081215) +description = Walters city, MN +station = ('kael', 0.0041192892981419971) +zone = ('iaz006', 0.0040408328368369707) + +[fips2767918] +centroid = (0.76480736229436486, -1.6209721167820732) +description = Waltham city, MN +station = ('kaum', 0.0027798107682535235) +zone = ('mnz094', 0.0030212491387655504) + +[fips2767972] +centroid = (0.77322880282804018, -1.6194431385441561) +description = Wanamingo city, MN +station = ('ksyn', 0.0041490532343500157) +zone = ('mnz078', 0.0020373012394543613) + +[fips2768008] +centroid = (0.77341157370730906, -1.661789643306274) +description = Wanda city, MN +station = ('krwf', 0.0044397734140357329) +zone = ('mnz073', 0.0016575852294098406) + +[fips2768080] +centroid = (0.82267195595510723, -1.6278699895985127) +description = Warba city, MN +station = ('kgpz', 0.0032494082133137643) +zone = ('mnz026', 0.0032466988056114687) + +[fips2768170] +centroid = (0.84114226928348024, -1.6889368610109368) +description = Warren city, MN +station = ('kckn', 0.0062599496623799589) +zone = ('mnz007', 0.0028852419395662353) + +[fips2768224] +centroid = (0.85377820872182386, -1.6638178380701392) +description = Warroad city, MN +station = ('krrt', 0.00046226895140906991) +zone = ('mnz005', 0.0060602421247405924) + +[fips2768260] +centroid = (0.77233318712237942, -1.6299656238846749) +description = Warsaw CDP, MN +station = ('kfbl', 0.0016988504511539341) +zone = ('mnz077', 0.0021392282264262224) + +[fips2768296] +centroid = (0.76938064853336563, -1.6318798486483845) +description = Waseca city, MN +station = ('kacq', 0.00068534712783690284) +zone = ('mnz084', 0.001518730343956538) + +[fips2768548] +centroid = (0.78470376670124986, -1.6378854044314495) +description = Watertown city, MN +station = ('kcfe', 0.0034675473673571656) +zone = ('mnz068', 0.0024865515433272474) + +[fips2768584] +centroid = (0.77181695363622449, -1.6331466086194821) +description = Waterville city, MN +station = ('kacq', 0.0026034800701932488) +zone = ('mnz076', 0.0032692418460500651) + +[fips2768620] +centroid = (0.79088764277399093, -1.6477904097359051) +description = Watkins city, MN +station = ('kljf', 0.0039713268438606774) +zone = ('mnz058', 0.0036324486687909947) + +[fips2768656] +centroid = (0.7855767978463899, -1.6720208331946349) +description = Watson city, MN +station = ('kmve', 0.0012765899175772207) +zone = ('mnz056', 0.0028841027772462191) + +[fips2768674] +centroid = (0.82351500234369812, -1.6744712231045575) +description = Waubun city, MN +station = ('kdtl', 0.0061563616802720765) +zone = ('mnz022', 0.0029141335075487779) + +[fips2768764] +centroid = (0.78653569919072819, -1.6400173066594681) +description = Waverly city, MN +station = ('kcfe', 0.0022295708488928785) +zone = ('mnz059', 0.0018979684009659905) + +[fips2768818] +centroid = (0.78489793458053425, -1.6321212625905206) +description = Wayzata city, MN +station = ('kfcm', 0.0024865711940556044) +zone = ('mnz060', 0.00073620381513770283) + +[fips2769070] +centroid = (0.76207749281132053, -1.6513624703962069) +description = Welcome city, MN +station = ('kfrm', 0.0025298199684910803) +zone = ('mnz091', 0.00084034897608895325) + +[fips2769106] +centroid = (0.76345843222208354, -1.6358582394118431) +description = Wells city, MN +station = ('kacq', 0.00617067800564201) +zone = ('mnz092', 0.003027389569783219) + +[fips2769142] +centroid = (0.80347808147873512, -1.6772746931221585) +description = Wendell city, MN +station = ('ky63', 0.0016935327076801571) +zone = ('mnz040', 0.0020782978923276347) + +[fips2769250] +centroid = (0.76869255247576684, -1.6656819369777316) +description = Westbrook city, MN +station = ('ktkc', 0.0041835526864674507) +zone = ('mnz081', 0.0032646113778408339) + +[fips2769304] +centroid = (0.77061206558711026, -1.6214109274626096) +description = West Concord city, MN +station = ('ktob', 0.0025044267577084686) +zone = ('mnz086', 0.0023238551103246016) + +[fips2769628] +centroid = (0.79786292094275635, -1.6609950123511334) +description = Westport city, MN +station = ('kghw', 0.00213087663284716) +zone = ('mnz048', 0.004047778447359862) + +[fips2769690] +centroid = (0.82574230426863071, -1.6684552127992733) +description = West Roy Lake CDP, MN +station = ('kfse', 0.0053385235826622713) +zone = ('mnz023', 0.0027419748622698726) + +[fips2769700] +centroid = (0.78369496639359715, -1.6246454414455758) +description = West St. Paul city, MN +station = ('kstp', 0.00069414805596456535) +zone = ('mnz062', 0.0020091796614291808) + +[fips2769736] +centroid = (0.79941293039816008, -1.6595225304211034) +description = West Union city, MN +station = ('kd39', 0.0024767146493183366) +zone = ('mnz041', 0.0050407103296431551) + +[fips2769808] +centroid = (0.76330618715143206, -1.6043569488222302) +description = Whalan city, MN +station = ('kfka', 0.0033926843124206002) +zone = ('mnz095', 0.0023571601572426586) + +[fips2769844] +centroid = (0.79946178216392327, -1.6842085371744815) +description = Wheaton city, MN +station = ('keth', 0.00080663804020902625) +zone = ('mnz039', 0.0006702346754601169) + +[fips2769880] +centroid = (0.82096238849948633, -1.647214782695305) +description = Whipholt CDP, MN +station = ('kxvg', 0.0022360216957755252) +zone = ('mnz025', 0.002065959742787653) + +[fips2769970] +centroid = (0.78653636241584379, -1.6233808456827508) +description = White Bear Lake city, MN +station = ('kstp', 0.0023469200325990109) +zone = ('mnz062', 0.001357907815234586) + +[fips2770006] +centroid = (0.82204269494659321, -1.6728726411360706) +description = White Earth CDP, MN +station = ('kdtl', 0.0046652684543417198) +zone = ('mnz027', 0.0029922551687231362) + +[fips2770258] +centroid = (0.76497842201435284, -1.6616915907088972) +description = Wilder city, MN +station = ('kmwm', 0.0019101378583094362) +zone = ('mnz090', 0.0028048698426176538) + +[fips2770366] +centroid = (0.78632899984741444, -1.6224150677411597) +description = Willernie city, MN +station = ('k21d', 0.0016205285699127919) +zone = ('mnz063', 0.00094518646644654327) + +[fips2770402] +centroid = (0.85116131440126108, -1.6572476682740542) +description = Williams city, MN +station = ('krrt', 0.005453700744154414) +zone = ('mnz006', 0.00055868698525944702) + +[fips2770420] +centroid = (0.78753926351062487, -1.6590378175812397) +description = Willmar city, MN +station = ('kbdh', 0.00091417953650355598) +zone = ('mnz057', 0.00081510305912095332) + +[fips2770492] +centroid = (0.80862151442448482, -1.6200988936507155) +description = Willow River city, MN +station = ('kmzh', 0.0015316133265731923) +zone = ('mnz038', 0.0037977405194415306) + +[fips2770582] +centroid = (0.76384596512919634, -1.6725139061616159) +description = Wilmont city, MN +station = ('kotg', 0.0036833117488239225) +zone = ('mnz089', 0.0018452564762829631) + +[fips2770708] +centroid = (0.82913531160097032, -1.6579923653592952) +description = Wilton city, MN +station = ('kbji', 0.00074574097122807089) +zone = ('mnz017', 0.0031610749517256022) + +[fips2770798] +centroid = (0.76573793694494319, -1.6601421048522691) +description = Windom city, MN +station = ('kmwm', 0.00070493395877565244) +zone = ('mnz081', 0.0024578957876937972) + +[fips2770870] +centroid = (0.82968625968594734, -1.6752808115313875) +description = Winger city, MN +station = ('kfse', 0.0026894805041090793) +zone = ('mnz015', 0.0022472033502463789) + +[fips2770924] +centroid = (0.7638225951705121, -1.6435875172707626) +description = Winnebago city, MN +station = ('kfrm', 0.0036853374476661163) +zone = ('mnz092', 0.0032180720714341487) + +[fips2771032] +centroid = (0.76883746716355994, -1.5999611974747423) +description = Winona city, MN +station = ('kona', 0.00066911298384779308) +zone = ('mnz088', 0.0017598586167644945) + +[fips2771086] +centroid = (0.78469128759709805, -1.6415071371622629) +description = Winsted city, MN +station = ('kgyl', 0.0035687298329449163) +zone = ('mnz066', 0.0036192666833858691) + +[fips2771122] +centroid = (0.77742806500833861, -1.6469139926520162) +description = Winthrop city, MN +station = ('kulm', 0.0043178935556544831) +zone = ('mnz067', 0.0017252089439625748) + +[fips2771140] +centroid = (0.83652178934150556, -1.6022349600643628) +description = Winton city, MN +station = ('kelo', 0.0019990094587189738) +zone = ('mnz012', 0.0072968734344817255) + +[fips2771338] +centroid = (0.8169870346089263, -1.6641867134075483) +description = Wolf Lake city, MN +station = ('kpkd', 0.0037388461166482758) +zone = ('mnz028', 0.0022843202281019907) + +[fips2771392] +centroid = (0.8126863513457947, -1.6883704493087872) +description = Wolverton city, MN +station = ('kjkj', 0.0048909789660143447) +zone = ('mnz029', 0.0048351983875254568) + +[fips2771428] +centroid = (0.78376251063564928, -1.6218245704953325) +description = Woodbury city, MN +station = ('kstp', 0.0016306882415941647) +zone = ('mnz063', 0.002355944209214699) + +[fips2771446] +centroid = (0.77931235737537674, -1.6674056590535864) +description = Wood Lake city, MN +station = ('kgdb', 0.0017939757511143315) +zone = ('mnz073', 0.005562041495150368) + +[fips2771500] +centroid = (0.78458319935652199, -1.6321342303868629) +description = Woodland city, MN +station = ('kfcm', 0.002182599756140774) +zone = ('mnz060', 0.0010069111201609169) + +[fips2771680] +centroid = (0.76814031284714335, -1.6772033266090443) +description = Woodstock city, MN +station = ('kpqn', 0.0028046134906969411) +zone = ('mnz097', 0.0020428066804035238) + +[fips2771734] +centroid = (0.76147177629441598, -1.6685148332465214) +description = Worthington city, MN +station = ('kotg', 0.00041384710083324411) +zone = ('mnz089', 0.0021042433513520972) + +[fips2771788] +centroid = (0.81370206315728522, -1.6124060233599926) +description = Wrenshall city, MN +station = ('kcoq', 0.0019484813248722842) +zone = ('mnz037', 0.0032633776725311042) + +[fips2771824] +centroid = (0.81458287847088928, -1.6232813444620946) +description = Wright city, MN +station = ('kmzh', 0.0051058134158209652) +zone = ('mnz035', 0.0056041233670493752) + +[fips2771950] +centroid = (0.76286083148620065, -1.6103534463464773) +description = Wykoff city, MN +station = ('kfka', 0.0012291231013800848) +zone = ('mnz095', 0.0023065656136630609) + +[fips2772022] +centroid = (0.79133158472252818, -1.6226024462896538) +description = Wyoming city, MN +station = ('koeo', 0.0034583117119888385) +zone = ('mnz053', 0.0029304450300818058) + +[fips2772184] +centroid = (0.8258838155643824, -1.6368568120900793) +description = Zemple city, MN +station = ('kgpz', 0.0036509402493735527) +zone = ('mnz026', 0.003825629724353134) + +[fips2772238] +centroid = (0.79308742085661954, -1.6335599723995244) +description = Zimmerman city, MN +station = ('kpnm', 0.0019106517228913769) +zone = ('mnz051', 0.0021855105336174713) + +[fips2772310] +centroid = (0.77296834734376518, -1.6131592551052758) +description = Zumbro Falls city, MN +station = ('k9mn', 0.0047400627260801541) +zone = ('mnz079', 0.0024611268251015423) + +[fips2772328] +centroid = (0.77308493533779843, -1.6174491347803377) +description = Zumbrota city, MN +station = ('ktob', 0.0052166097486928079) +zone = ('mnz078', 0.0021066207421999092) + +[fips28001] +centroid = (0.54953817310070396, -1.594389356010798) +description = Adams County, MS +station = ('khez', 0.002403488777534588) +zone = ('msz060', 5.6213518197419869e-05) + +[fips2800100] +centroid = (0.60219779350627134, -1.5621136104721975) +description = Abbeville town, MS +station = ('kuox', 0.0021297936172401271) +zone = ('msz013', 0.0025710517526554059) + +[fips2800180] +centroid = (0.59041519789910524, -1.545571798700816) +description = Aberdeen city, MS +station = ('km40', 0.00123246236808558) +zone = ('msz024', 0.0015519744108971015) + +[fips2800190009] +centroid = (0.54934224243887508, -1.5959758777541535) +description = District 1, MS +station = ('khez', 0.0032585562930492725) +zone = ('msz060', 0.0013410749939580058) + +[fips2800190747] +centroid = (0.54865864933074648, -1.594089019753115) +description = District 2, MS +station = ('khez', 0.0031979171530724876) +zone = ('msz060', 0.0008716425832099087) + +[fips2800191485] +centroid = (0.54936955684166877, -1.5923847057385425) +description = District 3, MS +station = ('khez', 0.0026191764849331114) +zone = ('msz060', 0.001733128232666539) + +[fips2800192223] +centroid = (0.55242974733894556, -1.5949667632872353) +description = District 4, MS +station = ('khez', 0.0014029649973169348) +zone = ('msz060', 0.0029818974405581237) + +[fips2800192961] +centroid = (0.55166538039303459, -1.5928356813639653) +description = District 5, MS +station = ('khez', 0.00057333407480159233) +zone = ('msz060', 0.0025607426728401716) + +[fips28003] +centroid = (0.60888687258429475, -1.5460303490551923) +description = Alcorn County, MS +station = ('kcrx', 0.0006424151018559768) +zone = ('msz005', 0.00010257749076512144) + +[fips2800300] +centroid = (0.58138050102615657, -1.5563144049665962) +description = Ackerman town, MS +station = ('kstf', 0.0052450045692769018) +zone = ('msz032', 0.0013069327651423648) + +[fips2800390018] +centroid = (0.61038714015601658, -1.5447969772326855) +description = District 1, MS +station = ('kcrx', 0.0015773685080884008) +zone = ('msz005', 0.0018893089338106197) + +[fips2800390756] +centroid = (0.60817563346081449, -1.5432607907849576) +description = District 2, MS +station = ('kcrx', 0.0028536705360249826) +zone = ('msz005', 0.0023428292778249014) + +[fips2800391494] +centroid = (0.60746027536029956, -1.5461351386234821) +description = District 3, MS +station = ('kcrx', 0.0020172846453176342) +zone = ('msz005', 0.0013280214747087781) + +[fips2800392232] +centroid = (0.60874740332376776, -1.5464203428765504) +description = District 4, MS +station = ('kcrx', 0.00072317169273102293) +zone = ('msz005', 0.00033226790684977141) + +[fips2800392970] +centroid = (0.60941150110415176, -1.5488280594862616) +description = District 5, MS +station = ('kcrx', 0.002023139432629468) +zone = ('msz005', 0.0023884852627852988) + +[fips28005] +centroid = (0.5446113704217117, -1.5846811540327972) +description = Amite County, MS +station = ('kmcb', 0.0049232283796021995) +zone = ('msz069', 0.00053251799851497961) + +[fips2800590027] +centroid = (0.54554456306616816, -1.5851530037960739) +description = District 1, MS +station = ('kmcb', 0.0054672404352907687) +zone = ('msz069', 0.0014735553432528518) + +[fips2800590765] +centroid = (0.54248444238206139, -1.5877195802743018) +description = District 2, MS +station = ('kmcb', 0.0077191019906919381) +zone = ('msz069', 0.0029467654448869368) + +[fips2800591503] +centroid = (0.54581397208950588, -1.5878690153648576) +description = District 3, MS +station = ('khez', 0.0076793431897812766) +zone = ('msz069', 0.0031100220461746904) + +[fips2800592241] +centroid = (0.54529208373657456, -1.5820980318332607) +description = District 4, MS +station = ('kmcb', 0.002893337217342324) +zone = ('msz069', 0.0026307004128949948) + +[fips2800592979] +centroid = (0.54242716067601093, -1.5830747704425543) +description = District 5, MS +station = ('kmcb', 0.0039810675773609789) +zone = ('msz069', 0.002249817641283197) + +[fips2800680] +centroid = (0.55639644439641567, -1.5907041805616746) +description = Alcorn State University CDP, MS +station = ('khez', 0.0051560276562909804) +zone = ('msz059', 0.002959741963804594) + +[fips28007] +centroid = (0.57753765253240807, -1.5636164262246273) +description = Attala County, MS +station = ('knmm', 0.010059674165102431) +zone = ('msz037', 0.00012466902882068702) + +[fips2800790036] +centroid = (0.57576436310579671, -1.5626572107210239) +description = District 1, MS +station = ('knmm', 0.0088818999162594871) +zone = ('msz037', 0.0018400332144162669) + +[fips2800790774] +centroid = (0.57958632000839894, -1.5614421997622481) +description = District 2, MS +station = ('knmm', 0.0092784561317674607) +zone = ('msz037', 0.0027306408767420538) + +[fips2800791512] +centroid = (0.57887546485735419, -1.5649282156904263) +description = District 3, MS +station = ('kgwo', 0.0084369679359777312) +zone = ('msz037', 0.0018518033068277353) + +[fips2800792250] +centroid = (0.57566672938744023, -1.5666305400296516) +description = District 4, MS +station = ('kgwo', 0.010170033867670705) +zone = ('msz037', 0.0031843983869857305) + +[fips2800792988] +centroid = (0.57693287849329944, -1.5603195690807801) +description = District 5, MS +station = ('knmm', 0.0072469808996770803) +zone = ('msz037', 0.0027141559555781307) + +[fips2800820] +centroid = (0.59654318852919752, -1.5540158237950121) +description = Algoma town, MS +station = ('ktup', 0.0042088162303458654) +zone = ('msz015', 0.00080290030944966202) + +[fips28009] +centroid = (0.60756260401434403, -1.556834198924425) +description = Benton County, MS +station = ('kcrx', 0.0088015623197716802) +zone = ('msz003', 0.0002006717671803775) + +[fips2800940] +centroid = (0.59497928625294794, -1.5834088788212635) +description = Alligator town, MS +station = ('kckm', 0.0047835712893995654) +zone = ('msz010', 0.0029866492945627744) + +[fips2800990045] +centroid = (0.60981571935891354, -1.5557784667131862) +description = District 1, MS +station = ('kcrx', 0.0077281222216583328) +zone = ('msz003', 0.002251129938526861) + +[fips2800990783] +centroid = (0.60953545438762835, -1.5583602275559063) +description = District 2, MS +station = ('kolv', 0.0072096356895838872) +zone = ('msz003', 0.002337485573921323) + +[fips2800991521] +centroid = (0.6070728122663569, -1.5556241621540174) +description = District 3, MS +station = ('kcrx', 0.0079698329412384757) +zone = ('msz003', 0.0010250340040843604) + +[fips2800992259] +centroid = (0.60654992907575189, -1.5573076020307359) +description = District 4, MS +station = ('kuox', 0.0078081086037773278) +zone = ('msz003', 0.001255468005968355) + +[fips2800992997] +centroid = (0.6047924697854562, -1.556245551727605) +description = District 5, MS +station = ('kuox', 0.0070719308738752254) +zone = ('msz003', 0.0029015730346459252) + +[fips28011] +centroid = (0.58990868589688406, -1.5862333451497661) +description = Bolivar County, MS +station = ('kglh', 0.0056982910468501872) +zone = ('msz018', 8.8559561727254437e-05) + +[fips2801190054] +centroid = (0.58936285162661528, -1.5875746306799237) +description = District 1, MS +station = ('kglh', 0.0049787238335455503) +zone = ('msz018', 0.0012682534108987883) + +[fips2801190792] +centroid = (0.58945837349657693, -1.5842645090337613) +description = District 2, MS +station = ('kglh', 0.0059249750894210191) +zone = ('msz018', 0.0016234024372006868) + +[fips2801191530] +centroid = (0.59268831471690275, -1.5836510781615629) +description = District 3, MS +station = ('kckm', 0.0067990662804782989) +zone = ('msz018', 0.0035275706060245923) + +[fips2801192268] +centroid = (0.58958145411542762, -1.5831575165023912) +description = District 4, MS +station = ('kglh', 0.0065487209042285532) +zone = ('msz018', 0.0025108321423641332) + +[fips2801193006] +centroid = (0.58738286285669028, -1.5842552936953107) +description = District 5, MS +station = ('kglh', 0.0042956808676736678) +zone = ('msz019', 0.0028038241021927242) + +[fips2801260] +centroid = (0.59309509860566489, -1.5443128228981824) +description = Amory city, MS +station = ('km40', 0.0018893994140058068) +zone = ('msz024', 0.0015631992336859919) + +[fips28013] +centroid = (0.59230600034425329, -1.5592267835295215) +description = Calhoun County, MS +station = ('kuox', 0.0083246312661467217) +zone = ('msz022', 1.1116316187594406e-05) + +[fips2801390063] +centroid = (0.5918257206406895, -1.5605721531301286) +description = District 1, MS +station = ('kuox', 0.0084792172649778754) +zone = ('msz022', 0.0012232131777534857) + +[fips2801390801] +centroid = (0.59371229938904779, -1.5576298072639467) +description = District 2, MS +station = ('kuox', 0.0076549489773596758) +zone = ('msz022', 0.0019276216304422113) + +[fips2801391539] +centroid = (0.59465423613305668, -1.5605692558835706) +description = District 3, MS +station = ('kuox', 0.0057418773227181875) +zone = ('msz022', 0.0026067370086247836) + +[fips2801392277] +centroid = (0.58958063381067916, -1.5597649732576664) +description = District 4, MS +station = ('kstf', 0.0098140323306666923) +zone = ('msz022', 0.0027594336095776184) + +[fips2801393015] +centroid = (0.59124721380682355, -1.5570558557394283) +description = District 5, MS +station = ('ktup', 0.0093853691849946005) +zone = ('msz022', 0.002078844430741853) + +[fips28015] +centroid = (0.58365197723445716, -1.5693806378787265) +description = Carroll County, MS +station = ('kgwo', 0.0026076511618441192) +zone = ('msz027', 0.00013583029401515007) + +[fips2801500] +centroid = (0.57546767458625014, -1.5852521734041725) +description = Anguilla town, MS +station = ('kglh', 0.0092093653492584127) +zone = ('msz041', 0.0016237095441801071) + +[fips2801590072] +centroid = (0.58613936812452194, -1.5681958734758876) +description = District 1, MS +station = ('kgwo', 0.0036792141637212467) +zone = ('msz027', 0.0025592991933813796) + +[fips2801590810] +centroid = (0.58602962182115659, -1.5709264061840478) +description = District 2, MS +station = ('kgwo', 0.0017394659776047623) +zone = ('msz027', 0.0025775818639601935) + +[fips2801591548] +centroid = (0.58245051003067672, -1.5715987593717935) +description = District 3, MS +station = ('kgwo', 0.0023000718966757487) +zone = ('msz027', 0.0022677319077687168) + +[fips2801592286] +centroid = (0.58311961690601388, -1.5684582662756326) +description = District 4, MS +station = ('kgwo', 0.0035303264362423832) +zone = ('msz027', 0.0010329776990584821) + +[fips2801593024] +centroid = (0.58130073947934047, -1.5667528701569238) +description = District 5, MS +station = ('kgwo', 0.0057027156976942554) +zone = ('msz027', 0.0033284138410293153) + +[fips28017] +centroid = (0.59204455002230449, -1.5523972054467126) +description = Chickasaw County, MS +station = ('ktup', 0.0065546657248991402) +zone = ('msz023', 3.3765919475084788e-05) + +[fips2801790081] +centroid = (0.59162497287012505, -1.5506272495989726) +description = District 1, MS +station = ('km40', 0.0051564862798807133) +zone = ('msz023', 0.0015528832067736786) + +[fips2801790819] +centroid = (0.59057501769871046, -1.5547618647837771) +description = District 2, MS +station = ('kstf', 0.0079288784070109253) +zone = ('msz023', 0.0024190700207347713) + +[fips2801791557] +centroid = (0.59404494169118538, -1.5506956141457733) +description = District 3, MS +station = ('ktup', 0.0041905691398984625) +zone = ('msz023', 0.0024776631347615133) + +[fips2801792295] +centroid = (0.59342151008237298, -1.5523459625798739) +description = District 4, MS +station = ('ktup', 0.0052964767116357213) +zone = ('msz023', 0.0013937670014012476) + +[fips2801793033] +centroid = (0.59072302161927959, -1.5522743866272497) +description = District 5, MS +station = ('kstf', 0.0073999660301667493) +zone = ('msz023', 0.0013133013559146992) + +[fips2801820] +centroid = (0.58068046691647413, -1.5861552591190318) +description = Arcola town, MS +station = ('kglh', 0.0040076782585284337) +zone = ('msz034', 0.0010095031796224637) + +[fips28019] +centroid = (0.58199686405149842, -1.5577296051905758) +description = Choctaw County, MS +station = ('kstf', 0.0061711095191453146) +zone = ('msz032', 4.8693905478753334e-05) + +[fips2801990090] +centroid = (0.5823592642173826, -1.5579906191802115) +description = District 1, MS +station = ('kstf', 0.0063088738054665706) +zone = ('msz032', 0.00042775166040492305) + +[fips2801990828] +centroid = (0.58412906298548983, -1.5567256219916585) +description = District 2, MS +station = ('kstf', 0.0051951663739126085) +zone = ('msz032', 0.0022538879024528741) + +[fips2801991566] +centroid = (0.58236114917297466, -1.5603449112615191) +description = District 3, MS +station = ('kstf', 0.0082509545430173459) +zone = ('msz032', 0.0022531519918268326) + +[fips2801992304] +centroid = (0.57944962582138282, -1.5578962666808487) +description = District 4, MS +station = ('knmm', 0.0068857680980775361) +zone = ('msz032', 0.0025769993981290644) + +[fips2801993042] +centroid = (0.58118847990185218, -1.5558975854346349) +description = District 5, MS +station = ('kstf', 0.0050119249289151332) +zone = ('msz032', 0.0017047001362909915) + +[fips2802060] +centroid = (0.54693593954585795, -1.5599247930572715) +description = Arnold Line CDP, MS +station = ('khbg', 0.0022594409033002295) +zone = ('msz073', 0.003016417455611192) + +[fips28021] +centroid = (0.55803080561456819, -1.5867734896466732) +description = Claiborne County, MS +station = ('ktvr', 0.006764525419070239) +zone = ('msz053', 5.5858562502651635e-05) + +[fips2802100] +centroid = (0.58323184157691699, -1.5470997297411817) +description = Artesia town, MS +station = ('kgtr', 0.0010366257560152289) +zone = ('msz031', 0.0030592567503291796) + +[fips2802140] +centroid = (0.6079700685815147, -1.5564452173940331) +description = Ashland town, MS +station = ('kcrx', 0.0084069985659369455) +zone = ('msz003', 0.00033155205160328023) + +[fips2802190099] +centroid = (0.55660038611951124, -1.5894281877988341) +description = District 1, MS +station = ('khez', 0.0058994641741722323) +zone = ('msz053', 0.0027223925627639584) + +[fips2802190837] +centroid = (0.55894682421918496, -1.5892955951355601) +description = District 2, MS +station = ('ktvr', 0.0056505729454779984) +zone = ('msz053', 0.0023702340051096468) + +[fips2802191575] +centroid = (0.55996040672898806, -1.5856686962301607) +description = District 3, MS +station = ('ktvr', 0.0053141503339292516) +zone = ('msz053', 0.0021079253804802333) + +[fips2802192313] +centroid = (0.55755621568436586, -1.585329666022961) +description = District 4, MS +station = ('ktvr', 0.0076049541040044914) +zone = ('msz053', 0.0012697168708760487) + +[fips2802193051] +centroid = (0.55617592204542621, -1.5851491117118421) +description = District 5, MS +station = ('k1r7', 0.0075704475042542461) +zone = ('msz053', 0.0022922152359852173) + +[fips28023] +centroid = (0.55935093775419165, -1.5478620721051604) +description = Clarke County, MS +station = ('kmei', 0.005061347696144582) +zone = ('msz058', 0.00013309981442598837) + +[fips2802390108] +centroid = (0.55845668340534738, -1.549174821502048) +description = District 1, MS +station = ('kmei', 0.0058687659486662165) +zone = ('msz058', 0.0013126584508270046) + +[fips2802390846] +centroid = (0.55713852348777859, -1.5503030721437072) +description = District 2, MS +station = ('kmei', 0.0072714837546422502) +zone = ('msz058', 0.0029059469376876931) + +[fips2802391584] +centroid = (0.5611926964473587, -1.5503528314806816) +description = District 3, MS +station = ('kmei', 0.0033389149593993765) +zone = ('msz058', 0.0028461787818167832) + +[fips2802392322] +centroid = (0.56113133067085863, -1.54567391791535) +description = District 4, MS +station = ('kmei', 0.0042432809692948487) +zone = ('msz058', 0.0026926081081666527) + +[fips2802393060] +centroid = (0.55773252884540236, -1.5458891693719985) +description = District 5, MS +station = ('kmei', 0.00709108468774239) +zone = ('msz058', 0.0022821901240473183) + +[fips28025] +centroid = (0.58750809023052097, -1.5495613595714872) +description = Clay County, MS +station = ('kstf', 0.0041276850853740948) +zone = ('msz030', 0.00010860266224422631) + +[fips2802590117] +centroid = (0.58720070284265968, -1.5462368564122881) +description = District 1, MS +station = ('kcbm', 0.0020779833583530966) +zone = ('msz030', 0.002748354513487255) + +[fips2802590855] +centroid = (0.58549125756008635, -1.5456707588694041) +description = District 2, MS +station = ('kgtr', 0.001711454582959598) +zone = ('msz031', 0.0021307667211253548) + +[fips2802591593] +centroid = (0.58759980728271322, -1.5501880025861232) +description = District 3, MS +station = ('kstf', 0.0041472572547444258) +zone = ('msz030', 0.00058243724912558647) + +[fips2802592331] +centroid = (0.58889430053562486, -1.5499680911003719) +description = District 4, MS +station = ('kstf', 0.0054523620354525503) +zone = ('msz030', 0.0015355117227708666) + +[fips2802593069] +centroid = (0.58686661191724288, -1.5517529346066314) +description = District 5, MS +station = ('kstf', 0.0035475965988519408) +zone = ('msz030', 0.0019271735026541842) + +[fips28027] +centroid = (0.59740299007860753, -1.5813235419776883) +description = Coahoma County, MS +station = ('kckm', 0.001831878166884082) +zone = ('msz010', 1.142771402391913e-05) + +[fips2802700] +centroid = (0.60223563224445464, -1.5471077582557411) +description = Baldwyn city, MS +station = ('ktup', 0.0045354523909266241) +zone = ('msz009', 0.002641811691817114) + +[fips2802790126] +centroid = (0.59992996503610752, -1.5795267255127601) +description = District 1, MS +station = ('kckm', 0.0012897641595512664) +zone = ('msz010', 0.0029192967247978958) + +[fips2802790864] +centroid = (0.59824697894499435, -1.5829342539844762) +description = District 2, MS +station = ('kckm', 0.0027041281675364657) +zone = ('msz010', 0.0015770810311706621) + +[fips2802791602] +centroid = (0.59656322490901037, -1.5791962997787725) +description = District 3, MS +station = ('kckm', 0.002125485104271629) +zone = ('msz010', 0.0019474052420226659) + +[fips2802792340] +centroid = (0.5943884748478554, -1.5799872131826063) +description = District 4, MS +station = ('kckm', 0.0042661962871040609) +zone = ('msz010', 0.0032173882323454886) + +[fips2802793078] +centroid = (0.59577765221268775, -1.5834406089070647) +description = District 5, MS +station = ('kckm', 0.0042212233823712931) +zone = ('msz010', 0.0024005557658676258) + +[fips28029] +centroid = (0.55618258920316876, -1.5786286314395612) +description = Copiah County, MS +station = ('k1r7', 0.0046780635171237428) +zone = ('msz054', 3.9885632290573478e-05) + +[fips2802990135] +centroid = (0.55697685363916638, -1.576749871766252) +description = District 1, MS +station = ('k1r7', 0.0055770701712600634) +zone = ('msz054', 0.0017651223929058049) + +[fips2802990873] +centroid = (0.55478110726710983, -1.5758736641218731) +description = District 2, MS +station = ('k1r7', 0.0037793589191313761) +zone = ('msz054', 0.0027494373666150725) + +[fips2802991611] +centroid = (0.55486884496860767, -1.5806588158787735) +description = District 3, MS +station = ('k1r7', 0.0039786056151099505) +zone = ('msz054', 0.002192106306451007) + +[fips2802992349] +centroid = (0.55745861687259435, -1.5813644001354774) +description = District 4, MS +station = ('k1r7', 0.006541851252105815) +zone = ('msz054', 0.0026304088956165604) + +[fips2802993087] +centroid = (0.55870617822191992, -1.5779437816943713) +description = District 5, MS +station = ('kjvw', 0.0051132465129256057) +zone = ('msz054', 0.0025509371095636716) + +[fips28031] +centroid = (0.55210577932319038, -1.5629230941792724) +description = Covington County, MS +station = ('kpib', 0.0043290704781522842) +zone = ('msz065', 5.507453051141819e-05) + +[fips2803190144] +centroid = (0.55110200556378341, -1.5628043245236742) +description = District 1, MS +station = ('kpib', 0.0036436182990249198) +zone = ('msz065', 0.0010135950507664524) + +[fips2803190882] +centroid = (0.54995719174752278, -1.5618773627046476) +description = District 2, MS +station = ('kpib', 0.0024381001885886711) +zone = ('msz065', 0.0023455374306790206) + +[fips2803191620] +centroid = (0.5526709692948637, -1.5633354980282264) +description = District 3, MS +station = ('kpib', 0.0049720287365764429) +zone = ('msz065', 0.00064005921562292176) + +[fips2803192358] +centroid = (0.55312550539196059, -1.5652268938853202) +description = District 4, MS +station = ('kpib', 0.0064915178654973479) +zone = ('msz065', 0.0021626120006142092) + +[fips2803193096] +centroid = (0.55357754566822714, -1.5617157626692055) +description = District 5, MS +station = ('kpib', 0.0048914265658795151) +zone = ('msz065', 0.0018288261268146447) + +[fips28033] +centroid = (0.60867076591631275, -1.5706783425374617) +description = DeSoto County, MS +station = ('kmem', 0.0027798632736065121) +zone = ('msz001', 2.8580885544912804e-05) + +[fips2803390153] +centroid = (0.6091492479307471, -1.5672961911530696) +description = District 1, MS +station = ('kolv', 0.0013593714435982983) +zone = ('msz001', 0.0027915905771689182) + +[fips2803390891] +centroid = (0.60982071100057433, -1.5695364957809297) +description = District 2, MS +station = ('kmem', 0.0018097085706094474) +zone = ('msz001', 0.0014546181643525456) + +[fips2803391629] +centroid = (0.60992871197468768, -1.5738319256030129) +description = District 3, MS +station = ('kmem', 0.0031196400416495162) +zone = ('msz001', 0.0028857973161717492) + +[fips2803392367] +centroid = (0.60819315656650463, -1.5723823772993539) +description = District 4, MS +station = ('kmem', 0.0035992979997114555) +zone = ('msz001', 0.0015035107303975315) + +[fips2803393105] +centroid = (0.60777478369150895, -1.5698412826282053) +description = District 5, MS +station = ('kolv', 0.0035420374659667626) +zone = ('msz001', 0.001132527587096291) + +[fips28035] +centroid = (0.5443434100216531, -1.5578712386593749) +description = Forrest County, MS +station = ('khbg', 0.0013701430326978951) +zone = ('msz074', 2.3763432636573281e-05) + +[fips2803580] +centroid = (0.54970736531839226, -1.5663558077520949) +description = Bassfield town, MS +station = ('kpib', 0.0061571711123184648) +zone = ('msz064', 0.0017264392911643461) + +[fips2803590162] +centroid = (0.54418528319142234, -1.5583026491438829) +description = District 1, MS +station = ('khbg', 0.00160419764341602) +zone = ('msz074', 0.00042497258458691861) + +[fips2803590900] +centroid = (0.54775465604467599, -1.5596321187950046) +description = District 2, MS +station = ('kpib', 0.0014973081152545879) +zone = ('msz074', 0.0037326891384793642) + +[fips2803591638] +centroid = (0.54701959317690607, -1.5570023613978548) +description = District 3, MS +station = ('khbg', 0.0014445085488570357) +zone = ('msz074', 0.0027658518951099572) + +[fips2803592376] +centroid = (0.54450467844453732, -1.5570814248129701) +description = District 4, MS +station = ('khbg', 0.0013150621484618382) +zone = ('msz074', 0.00067084407284685038) + +[fips2803593114] +centroid = (0.54174231093082093, -1.5577615447158872) +description = District 5, MS +station = ('khbg', 0.0039642498676851195) +zone = ('msz074', 0.0026076453897724843) + +[fips2803620] +centroid = (0.59901724510377696, -1.5694946602387592) +description = Batesville city, MS +station = ('kuox', 0.0057251332968493527) +zone = ('msz012', 0.00082889925843614241) + +[fips28037] +centroid = (0.54939121637768606, -1.5864324523108333) +description = Franklin County, MS +station = ('khez', 0.0064810176585945421) +zone = ('msz061', 3.0369374441740397e-05) + +[fips2803790171] +centroid = (0.54915756915072156, -1.5899362705973821) +description = District 1, MS +station = ('khez', 0.0040264315045906328) +zone = ('msz061', 0.0029683109527350419) + +[fips2803790909] +centroid = (0.55056978486168018, -1.5872013745660922) +description = District 2, MS +station = ('khez', 0.0054964323842850785) +zone = ('msz061', 0.0013442080803952997) + +[fips2803791647] +centroid = (0.54833611248497793, -1.5873904460839605) +description = District 3, MS +station = ('khez', 0.0062530687162400227) +zone = ('msz061', 0.0013089934452369112) + +[fips2803792385] +centroid = (0.55020951399748352, -1.5836249680359531) +description = District 4, MS +station = ('k1r7', 0.0048658321960591833) +zone = ('msz061', 0.0025601080976961452) + +[fips2803793123] +centroid = (0.54813009382007249, -1.58428527845186) +description = District 5, MS +station = ('kmcb', 0.0059911880773892128) +zone = ('msz061', 0.0022417550909328782) + +[fips28039] +centroid = (0.53852886307192649, -1.547099433035209) +description = George County, MS +station = ('kpql', 0.0069795356549965937) +zone = ('msz079', 0.00012778521872529864) + +[fips2803980] +centroid = (0.52920440663656176, -1.5595289698362118) +description = Bay St. Louis city, MS +station = ('khsa', 0.0017156762103309534) +zone = ('msz080', 0.0026172892398207402) + +[fips2803990180] +centroid = (0.53978019433243629, -1.5444100028309333) +description = District 1, MS +station = ('kmob', 0.0057183613195901407) +zone = ('msz079', 0.0025912976261491688) + +[fips2803990918] +centroid = (0.53767386117795957, -1.5446618014821185) +description = District 2, MS +station = ('kmob', 0.0045750522621661295) +zone = ('msz079', 0.0023347243170052526) + +[fips2803991656] +centroid = (0.53771021638627858, -1.5472526031303639) +description = District 3, MS +station = ('kpql', 0.0062229056040604396) +zone = ('msz079', 0.00094965465407521865) + +[fips2803992394] +centroid = (0.54013945290566689, -1.5479307682645187) +description = District 4, MS +station = ('kmob', 0.0082538450112777245) +zone = ('msz079', 0.0016367901111143872) + +[fips2803993132] +centroid = (0.53804444693803544, -1.5496240692515113) +description = District 5, MS +station = ('kpql', 0.0073619712639859834) +zone = ('msz079', 0.0022266430264104502) + +[fips2804060] +centroid = (0.55811658854730373, -1.5582433079493152) +description = Bay Springs city, MS +station = ('kpib', 0.0089537265966741358) +zone = ('msz057', 0.0025037227234939452) + +[fips28041] +centroid = (0.54476693161794199, -1.5469692838328877) +description = Greene County, MS +station = ('khbg', 0.0092281680293182251) +zone = ('msz076', 6.9645543862779005e-05) + +[fips2804190189] +centroid = (0.54408136628775861, -1.5454706045107851) +description = District 1, MS +station = ('kmob', 0.0097742097515096625) +zone = ('msz076', 0.0015227570244435952) + +[fips2804190927] +centroid = (0.54666963720858863, -1.5453997965030319) +description = District 2, MS +station = ('kpib', 0.012015205465647721) +zone = ('msz076', 0.0023474552611740659) + +[fips2804191665] +centroid = (0.54686684196077151, -1.5487188367816718) +description = District 3, MS +station = ('khbg', 0.0077666656283282929) +zone = ('msz076', 0.0025210015707663389) + +[fips2804192403] +centroid = (0.54191050831083565, -1.5465172086500361) +description = District 4, MS +station = ('kmob', 0.0085106351432089229) +zone = ('msz076', 0.0029153915147322831) + +[fips2804193141] +centroid = (0.54367594375581285, -1.5488325275291468) +description = District 5, MS +station = ('khbg', 0.0078565439330434226) +zone = ('msz076', 0.0018917546040297128) + +[fips28043] +centroid = (0.58939822945055331, -1.5673534903124127) +description = Grenada County, MS +station = ('kgwo', 0.0062319124281715876) +zone = ('msz026', 1.0749914983246603e-05) + +[fips2804390198] +centroid = (0.58845185957024437, -1.5683280472601411) +description = District 1, MS +station = ('kgwo', 0.0049860151551461606) +zone = ('msz026', 0.0012525302766583234) + +[fips2804390936] +centroid = (0.58877664789074791, -1.5648614742998301) +description = District 2, MS +station = ('kgwo', 0.0073894629884607528) +zone = ('msz026', 0.0021527693624827501) + +[fips2804391674] +centroid = (0.59027660130320436, -1.5636382602935697) +description = District 3, MS +station = ('kgwo', 0.0090912088300169006) +zone = ('msz026', 0.0031998136287402753) + +[fips2804392412] +centroid = (0.59059217428525745, -1.5684005656905617) +description = District 4, MS +station = ('kgwo', 0.0067200360046135478) +zone = ('msz026', 0.0014841130959772748) + +[fips2804393150] +centroid = (0.58899381920957361, -1.571250740718946) +description = District 5, MS +station = ('kgwo', 0.0043882523445169666) +zone = ('msz026', 0.0032758548953732681) + +[fips28045] +centroid = (0.5304306400624279, -1.561717996690648) +description = Hancock County, MS +station = ('khsa', 0.0005600511342958559) +zone = ('msz080', 0.00045559884898805579) + +[fips2804500] +centroid = (0.54397622765361853, -1.5520926454922395) +description = Beaumont town, MS +station = ('khbg', 0.005103106263706211) +zone = ('msz075', 0.00095819755690804999) + +[fips2804540] +centroid = (0.55357991931600981, -1.5775801947045958) +description = Beauregard village, MS +station = ('k1r7', 0.0021078480763063582) +zone = ('msz054', 0.0027889570060997083) + +[fips2804590207] +centroid = (0.52764453607088435, -1.5613982523716827) +description = District 1, MS +station = ('khsa', 0.0023753889443237038) +zone = ('msz080', 0.0032476887527776218) + +[fips2804590945] +centroid = (0.53392021646228027, -1.5614767223748525) +description = District 2, MS +station = ('khsa', 0.0039062097924446103) +zone = ('msz080', 0.0030728650376858637) + +[fips2804591683] +centroid = (0.53105220416894072, -1.5595852741578811) +description = District 3, MS +station = ('khsa', 0.0017903923224914671) +zone = ('msz080', 0.0019810281184771813) + +[fips2804592421] +centroid = (0.53026931927966603, -1.5615654025541463) +description = District 4, MS +station = ('khsa', 0.00035238618977930929) +zone = ('msz080', 0.00065311474613700884) + +[fips2804593159] +centroid = (0.53116613926251088, -1.5604605044178788) +description = District 5, MS +station = ('khsa', 0.0013482578487554742) +zone = ('msz080', 0.001253888818371706) + +[fips28047] +centroid = (0.53086870025138599, -1.5547982199920962) +description = Harrison County, MS +station = ('kgpt', 2.3692377703631384e-06) +zone = ('msz081', 0.0017932585862034749) + +[fips2804705] +centroid = (0.56436724091722612, -1.5848691259932373) +description = Beechwood CDP, MS +station = ('ktvr', 0.0033053103738538911) +zone = ('msz047', 0.00077274874457575963) + +[fips2804790216] +centroid = (0.53112908592249097, -1.5517475240859502) +description = District 1, MS +station = ('kbix', 0.00028533406422174288) +zone = ('msz081', 0.0034724953376242093) + +[fips2804790954] +centroid = (0.53289691246854354, -1.5565637950634135) +description = District 2, MS +station = ('kgpt', 0.0025341309393345115) +zone = ('msz081', 0.0010453511232598534) + +[fips2804791692] +centroid = (0.52963855728799525, -1.5573496993722939) +description = District 3, MS +station = ('kgpt', 0.0025232044827222526) +zone = ('msz081', 0.0033886270384027497) + +[fips2804792430] +centroid = (0.52971027286695971, -1.5549134989891902) +description = District 4, MS +station = ('kgpt', 0.0011650153409991802) +zone = ('msz081', 0.0029046676862420134) + +[fips2804793168] +centroid = (0.53299117770144377, -1.5530983565671161) +description = District 5, MS +station = ('kbix', 0.0023626824503332963) +zone = ('msz081', 0.0020291312873036193) + +[fips28049] +centroid = (0.56318151658329874, -1.5789278157799382) +description = Hinds County, MS +station = ('kjvw', 0.0010365335307049128) +zone = ('msz048', 0.00034304956468446499) + +[fips2804990225] +centroid = (0.56492588590420445, -1.5734538523804458) +description = District 1, MS +station = ('khks', 0.0011247166720351096) +zone = ('msz049', 0.0035444758376094389) + +[fips2804990963] +centroid = (0.56618569946487896, -1.5808272576048836) +description = District 2, MS +station = ('kjvw', 0.0033849752922061444) +zone = ('msz048', 0.003597682579509238) + +[fips2804991701] +centroid = (0.56376690001441765, -1.5753939952835476) +description = District 3, MS +station = ('khks', 0.0008860461485172208) +zone = ('msz048', 0.0027139016726313385) + +[fips2804992439] +centroid = (0.56293486665340686, -1.5782162624971925) +description = District 4, MS +station = ('kjvw', 0.00091040554198752591) +zone = ('msz048', 0.00034349941825311718) + +[fips2804993177] +centroid = (0.56034385556565125, -1.5778534259989956) +description = District 5, MS +station = ('kjvw', 0.0034767477977762241) +zone = ('msz048', 0.0028727269623566895) + +[fips28051] +centroid = (0.57815675572467551, -1.5723880147128377) +description = Holmes County, MS +station = ('kgwo', 0.0065295510999530395) +zone = ('msz036', 4.4617913726213259e-05) + +[fips2805100] +centroid = (0.60222646926588164, -1.5395253673066691) +description = Belmont town, MS +station = ('kcrx', 0.0091669826670534391) +zone = ('msz006', 0.0041319431244896381) + +[fips2805140] +centroid = (0.57910893755139348, -1.5792836186012498) +description = Belzoni city, MS +station = ('kgwo', 0.0081003595367718888) +zone = ('msz035', 0.0010782271693924896) + +[fips2805190234] +centroid = (0.5790562460612757, -1.5712849491722849) +description = District 1, MS +station = ('kgwo', 0.005686588826857201) +zone = ('msz036', 0.0013285415668796443) + +[fips2805190972] +centroid = (0.57839120580309589, -1.5685101200077092) +description = District 2, MS +station = ('kgwo', 0.0070275089524473328) +zone = ('msz036', 0.0032723707443069877) + +[fips2805191710] +centroid = (0.57535047572697873, -1.5720645353892733) +description = District 3, MS +station = ('kgwo', 0.0093361233221493801) +zone = ('msz036', 0.0027782505318652497) + +[fips2805192448] +centroid = (0.57698750729888681, -1.5741587908653263) +description = District 4, MS +station = ('kgwo', 0.0078613208746098721) +zone = ('msz036', 0.0018523597652131017) + +[fips2805193186] +centroid = (0.58006042124641066, -1.5747524646103921) +description = District 5, MS +station = ('kgwo', 0.0050749112736293766) +zone = ('msz036', 0.0027662718682871716) + +[fips2805220] +centroid = (0.58733113129766124, -1.5884021785447566) +description = Benoit town, MS +station = ('kglh', 0.0029598736465731293) +zone = ('msz018', 0.0031271621136298843) + +[fips28053] +centroid = (0.57827955709084577, -1.5799402987323126) +description = Humphreys County, MS +station = ('kglh', 0.0090718046287267973) +zone = ('msz035', 8.3706522001159028e-05) + +[fips2805380] +centroid = (0.56973826479743583, -1.5772399602202118) +description = Bentonia town, MS +station = ('khks', 0.0058622388384489662) +zone = ('msz042', 0.0024210859423205691) + +[fips2805390243] +centroid = (0.58084384718775339, -1.5797033877396469) +description = District 1, MS +station = ('kgwo', 0.0073127551024435231) +zone = ('msz035', 0.0026494902619400478) + +[fips2805390981] +centroid = (0.57965286941277749, -1.5817850768450856) +description = District 2, MS +station = ('kglh', 0.0070056065049068717) +zone = ('msz035', 0.0020894300319853456) + +[fips2805391719] +centroid = (0.57666898471039785, -1.5794137154436934) +description = District 3, MS +station = ('kgwo', 0.010006372112046132) +zone = ('msz035', 0.0016088861783630261) + +[fips2805392457] +centroid = (0.57878928049889067, -1.5777943989636931) +description = District 4, MS +station = ('kgwo', 0.0074977355275910752) +zone = ('msz035', 0.0019253924784761167) + +[fips2805393195] +centroid = (0.57672487015304674, -1.5812893160710566) +description = District 5, MS +station = ('kglh', 0.0094826539945136734) +zone = ('msz035', 0.0018395193457406709) + +[fips28055] +centroid = (0.57168219506501461, -1.5880498140220716) +description = Issaquena County, MS +station = ('ktvr', 0.0071282467592383349) +zone = ('msz040', 0.00023715419201002157) + +[fips2805590252] +centroid = (0.56912649198802678, -1.5867312003188971) +description = District 1, MS +station = ('ktvr', 0.0048618268149895972) +zone = ('msz040', 0.0025748281970425545) + +[fips2805590990] +centroid = (0.57281079477252428, -1.58932177507434) +description = District 2, MS +station = ('ktvr', 0.0082436867867305922) +zone = ('msz040', 0.0017286226569703435) + +[fips2805591728] +centroid = (0.57458029683465872, -1.5879362279943519) +description = District 3, MS +station = ('kglh', 0.0098141324373723117) +zone = ('msz041', 0.0025772384826113397) + +[fips2805592466] +centroid = (0.57572628002151816, -1.5892407917970477) +description = District 4, MS +station = ('kglh', 0.0087342099676579413) +zone = ('msz041', 0.0040272977834149874) + +[fips2805593204] +centroid = (0.57547481298289094, -1.5881242348613767) +description = District 5, MS +station = ('kglh', 0.0089206725572461131) +zone = ('msz041', 0.0030878382754561517) + +[fips28057] +centroid = (0.5983176298731151, -1.5422275035078996) +description = Itawamba County, MS +station = ('ktup', 0.0058255252646857159) +zone = ('msz017', 3.2345674334703124e-05) + +[fips2805790261] +centroid = (0.60054767196497338, -1.540870108588746) +description = District 1, MS +station = ('ktup', 0.0073670169462416845) +zone = ('msz017', 0.0025009749099094347) + +[fips2805790999] +centroid = (0.60007037677443043, -1.5442385416852176) +description = District 2, MS +station = ('ktup', 0.0046138265054432304) +zone = ('msz017', 0.0024462917721843383) + +[fips2805791737] +centroid = (0.59638497443250416, -1.5441539455763733) +description = District 3, MS +station = ('ktup', 0.0045527288756937742) +zone = ('msz017', 0.0025069570011679873) + +[fips2805792475] +centroid = (0.59671789598732217, -1.5407610080572038) +description = District 4, MS +station = ('km40', 0.0062951947490884732) +zone = ('msz017', 0.0019764058648893941) + +[fips2805793213] +centroid = (0.59866896465154162, -1.5414154018069466) +description = District 5, MS +station = ('ktup', 0.0065183339231620861) +zone = ('msz017', 0.0007432958495840053) + +[fips2805820] +centroid = (0.58975497474966077, -1.5879029620188088) +description = Beulah town, MS +station = ('kglh', 0.0053607646216742855) +zone = ('msz018', 0.0014493203430560209) + +[fips28059] +centroid = (0.53160095313906019, -1.5467106260377421) +description = Jackson County, MS +station = ('kpql', 0.0013114678914368835) +zone = ('msz082', 0.0015481357419331533) + +[fips2805990270] +centroid = (0.53285083577629089, -1.5449205639970192) +description = District 1, MS +station = ('kpql', 0.0011327327692381849) +zone = ('msz082', 0.0018056353623270818) + +[fips2805991008] +centroid = (0.53046383622480087, -1.5451157441672696) +description = District 2, MS +station = ('kpql', 0.0012817808361520122) +zone = ('msz082', 0.0031181815715218045) + +[fips2805991746] +centroid = (0.52748588564187804, -1.5448545730980014) +description = District 3, MS +station = ('kpql', 0.0042680724340854103) +zone = ('msz082', 0.0059376191146018253) + +[fips2805992484] +centroid = (0.53348255769905029, -1.5504508666247658) +description = District 4, MS +station = ('kbix', 0.0028905353050619541) +zone = ('msz082', 0.0029995144195863713) + +[fips2805993222] +centroid = (0.53154197846363527, -1.5485537286344333) +description = District 5, MS +station = ('kpql', 0.0028994353345757357) +zone = ('msz082', 0.0020816047539784438) + +[fips2806060] +centroid = (0.5907309977739611, -1.5606017713675353) +description = Big Creek village, MS +station = ('kuox', 0.0095486207832067103) +zone = ('msz022', 0.0019478795338008644) + +[fips28061] +centroid = (0.55880187462480679, -1.5554274810006101) +description = Jasper County, MS +station = ('kmei', 0.007763300633698492) +zone = ('msz057', 3.8005130458121336e-05) + +[fips2806180] +centroid = (0.53390600948216915, -1.5443469440850588) +description = Big Point CDP, MS +station = ('kpql', 0.0022832936740724394) +zone = ('msz082', 0.0024058474361610045) + +[fips2806190279] +centroid = (0.55790334421929499, -1.5561696997183132) +description = District 1, MS +station = ('kmei', 0.0088470845407924194) +zone = ('msz057', 0.0011327004627738619) + +[fips2806191017] +centroid = (0.5599782090873584, -1.5528803823968345) +description = District 2, MS +station = ('kmei', 0.0054562707494730193) +zone = ('msz057', 0.0024328758821744968) + +[fips2806191755] +centroid = (0.56053137374048545, -1.5576091600188957) +description = District 3, MS +station = ('kmei', 0.0082261788513365228) +zone = ('msz057', 0.0025135025334141756) + +[fips2806192493] +centroid = (0.55638661819272694, -1.5580040931220369) +description = District 4, MS +station = ('kpib', 0.0072567617566931851) +zone = ('msz057', 0.0032914465831125235) + +[fips2806193231] +centroid = (0.5564796966017358, -1.5534855578616713) +description = District 5, MS +station = ('kmei', 0.0087227255879657357) +zone = ('msz057', 0.0028721570014083519) + +[fips2806220] +centroid = (0.531168460550416, -1.5525298679231565) +description = Biloxi city, MS +station = ('kbix', 0.00062790524643604887) +zone = ('msz081', 0.0028543943271301967) + +[fips28063] +centroid = (0.55385637946952571, -1.58901543488403) +description = Jefferson County, MS +station = ('khez', 0.0043174202747336739) +zone = ('msz059', 0.00010109829401083736) + +[fips2806390288] +centroid = (0.55341877306617315, -1.5852308105741277) +description = District 1, MS +station = ('k1r7', 0.0063371020538638828) +zone = ('msz059', 0.0031505743389296957) + +[fips2806391026] +centroid = (0.55390961201171152, -1.5878361857216274) +description = District 2, MS +station = ('khez', 0.0052442899493607394) +zone = ('msz059', 0.00090336372081521407) + +[fips2806391764] +centroid = (0.55323860272748981, -1.5900623706358388) +description = District 3, MS +station = ('khez', 0.0032430585360181475) +zone = ('msz059', 0.0011732398292197885) + +[fips2806392502] +centroid = (0.55338501839843957, -1.5924268205333929) +description = District 4, MS +station = ('khez', 0.0018103403269204056) +zone = ('msz059', 0.0030407584425179478) + +[fips2806393240] +centroid = (0.55517850128449642, -1.5922577155821673) +description = District 5, MS +station = ('khez', 0.0035220301685800382) +zone = ('msz059', 0.0031439463566677) + +[fips28065] +centroid = (0.55090853581619981, -1.567770379657544) +description = Jefferson Davis County, MS +station = ('kpib', 0.0075365635181943317) +zone = ('msz064', 0.0001005992059707237) + +[fips2806590297] +centroid = (0.55072953484811527, -1.5686437947751195) +description = District 1, MS +station = ('kpib', 0.0082286430918672195) +zone = ('msz064', 0.00084064442037795498) + +[fips2806591035] +centroid = (0.54945687566414614, -1.5682156655096051) +description = District 2, MS +station = ('kpib', 0.0077270462722796602) +zone = ('msz064', 0.0015965691217054319) + +[fips2806591773] +centroid = (0.54961992432286733, -1.5650289910014366) +description = District 3, MS +station = ('kpib', 0.0050224331444674924) +zone = ('msz064', 0.0026640971735818857) + +[fips2806592511] +centroid = (0.5526303031232922, -1.5673413079142338) +description = District 4, MS +station = ('kpib', 0.0077698884788748469) +zone = ('msz064', 0.0016662150905167909) + +[fips2806593249] +centroid = (0.55264690120447868, -1.5697206105637225) +description = District 5, MS +station = ('k1r7', 0.0072447644872447262) +zone = ('msz064', 0.002381993265472677) + +[fips28067] +centroid = (0.5518913307179979, -1.556262306888424) +description = Jones County, MS +station = ('kpib', 0.0036553635545339262) +zone = ('msz066', 3.5496392593524957e-05) + +[fips2806790306] +centroid = (0.55444926781642823, -1.5556579691816286) +description = District 1, MS +station = ('kpib', 0.0060402520569510561) +zone = ('msz066', 0.0025871339838752414) + +[fips2806791044] +centroid = (0.55359091489029744, -1.5584175092619568) +description = District 2, MS +station = ('kpib', 0.0044393564384021299) +zone = ('msz066', 0.002465401589429381) + +[fips2806791782] +centroid = (0.55198046468289719, -1.5538837372772212) +description = District 3, MS +station = ('kpib', 0.005288930285203438) +zone = ('msz066', 0.0020491557651486567) + +[fips2806792520] +centroid = (0.55039553118916107, -1.5575729444369166) +description = District 4, MS +station = ('kpib', 0.0018081882208777146) +zone = ('msz066', 0.0018749807578354999) + +[fips2806793258] +centroid = (0.55264644741887314, -1.5560044519447345) +description = District 5, MS +station = ('kpib', 0.0043739746109678996) +zone = ('msz066', 0.00076724765032239054) + +[fips28069] +centroid = (0.57159770367592555, -1.5468090626075546) +description = Kemper County, MS +station = ('knmm', 0.0053675304211410514) +zone = ('msz046', 0.00024144571475406032) + +[fips2806990315] +centroid = (0.57314626450805006, -1.5443875229901676) +description = District 1, MS +station = ('knmm', 0.0066833299496059494) +zone = ('msz046', 0.0026996857635628816) + +[fips2806991053] +centroid = (0.57036345918879283, -1.5449241768285709) +description = District 2, MS +station = ('kmei', 0.0069414013909000422) +zone = ('msz046', 0.0022392079625228579) + +[fips2806991791] +centroid = (0.57018936259590636, -1.5501900969812255) +description = District 3, MS +station = ('knmm', 0.0046275954803876394) +zone = ('msz046', 0.0030088598219537503) + +[fips2806992529] +centroid = (0.57328470402431841, -1.5497495235181447) +description = District 4, MS +station = ('knmm', 0.0023772880375425502) +zone = ('msz046', 0.0027606587077133424) + +[fips2806993267] +centroid = (0.57161627397916681, -1.5476362963131225) +description = District 5, MS +station = ('knmm', 0.0047867143233840054) +zone = ('msz046', 0.00047093845415386627) + +[fips2807060] +centroid = (0.60517345770787401, -1.5538000312862954) +description = Blue Mountain town, MS +station = ('kcrx', 0.0074673477564811261) +zone = ('msz004', 0.0023562578848549038) + +[fips28071] +centroid = (0.59950834584870316, -1.5618236414702711) +description = Lafayette County, MS +station = ('kuox', 0.00094232580710075183) +zone = ('msz013', 0.00013172978801376993) + +[fips2807100] +centroid = (0.60041687699082891, -1.5511101996562919) +description = Blue Springs village, MS +station = ('ktup', 0.0027988338061961087) +zone = ('msz014', 0.0024527037517354461) + +[fips2807190324] +centroid = (0.59943137682869019, -1.5596486994228986) +description = District 1, MS +station = ('kuox', 0.0026038694240852114) +zone = ('msz013', 0.0017932673298052381) + +[fips2807191062] +centroid = (0.60114028105919548, -1.5597768938564576) +description = District 2, MS +station = ('kuox', 0.0026103538987097405) +zone = ('msz013', 0.0022486616173085449) + +[fips2807191800] +centroid = (0.60087952886894747, -1.5636283119168335) +description = District 3, MS +station = ('kuox', 0.0010831494219414252) +zone = ('msz013', 0.0019491403615861649) + +[fips2807192538] +centroid = (0.59813107162936952, -1.5649571881560094) +description = District 4, MS +station = ('kuox', 0.0027327013047932906) +zone = ('msz013', 0.0030080750752041118) + +[fips2807193276] +centroid = (0.59729957932042688, -1.5604260167118591) +description = District 5, MS +station = ('kuox', 0.0033857208970867439) +zone = ('msz013', 0.0026027632329870629) + +[fips28073] +centroid = (0.54449272293916118, -1.562330642164683) +description = Lamar County, MS +station = ('khbg', 0.0041361481850969708) +zone = ('msz073', 0.00017920257037656808) + +[fips2807330] +centroid = (0.57304971289382978, -1.5519117246619778) +description = Bogue Chitto CDP, MS +station = ('knmm', 0.0014717804819785025) +zone = ('msz045', 0.0032431387721343591) + +[fips2807340] +centroid = (0.54854680863227867, -1.5788577408104705) +description = Bogue Chitto CDP, MS +station = ('k1r7', 0.003041762053713655) +zone = ('msz062', 0.0018012200687280084) + +[fips2807390333] +centroid = (0.54490954247112244, -1.5613870473578848) +description = District 1, MS +station = ('khbg', 0.0032461640722509112) +zone = ('msz073', 0.00076088865938924702) + +[fips2807391071] +centroid = (0.54244555644632697, -1.56090357370179) +description = District 2, MS +station = ('khbg', 0.0042562393308423823) +zone = ('msz073', 0.0024724556676964512) + +[fips2807391809] +centroid = (0.54315871543198435, -1.5630092087245659) +description = District 3, MS +station = ('khbg', 0.0052025863780510613) +zone = ('msz073', 0.0016326135127294266) + +[fips2807392547] +centroid = (0.5459702837773146, -1.5622385760466404) +description = District 4, MS +station = ('kpib', 0.0041612988693549863) +zone = ('msz073', 0.0013246629562465729) + +[fips2807393285] +centroid = (0.54750165311630694, -1.5628005197059052) +description = District 5, MS +station = ('kpib', 0.0035386104703630629) +zone = ('msz073', 0.0028984963855279676) + +[fips28075] +centroid = (0.56555645590965753, -1.547416751346514) +description = Lauderdale County, MS +station = ('kmei', 0.0018065965868072345) +zone = ('msz052', 3.2131599545947808e-05) + +[fips2807540] +centroid = (0.56469449015197504, -1.5788001449451547) +description = Bolton town, MS +station = ('kjvw', 0.0011260934089051976) +zone = ('msz048', 0.0015521252734039123) + +[fips2807590342] +centroid = (0.56685140294817471, -1.5472333172421295) +description = District 1, MS +station = ('kmei', 0.0029267979456017359) +zone = ('msz052', 0.001303089963504023) + +[fips2807591080] +centroid = (0.56642419870716409, -1.5452981659806881) +description = District 2, MS +station = ('kmei', 0.003752097037754427) +zone = ('msz052', 0.0020139188247201892) + +[fips2807591818] +centroid = (0.56711238203122549, -1.550096756772829) +description = District 3, MS +station = ('kmei', 0.0029443557620644949) +zone = ('msz052', 0.0027160607647756948) + +[fips2807592556] +centroid = (0.56421702042850708, -1.5488659680376149) +description = District 4, MS +station = ('kmei', 0.00014316207476387278) +zone = ('msz052', 0.0017972133935906373) + +[fips2807593294] +centroid = (0.5639323397742142, -1.5474635610770526) +description = District 5, MS +station = ('kmei', 0.0013395017015891174) +zone = ('msz052', 0.0016294058366692554) + +[fips28077] +centroid = (0.55065153608384365, -1.572673079339566) +description = Lawrence County, MS +station = ('k1r7', 0.0047274613920869181) +zone = ('msz063', 8.558781292401472e-06) + +[fips2807780] +centroid = (0.60500796558819991, -1.5458089016796992) +description = Booneville city, MS +station = ('kcrx', 0.0044840502374743942) +zone = ('msz009', 0.0010616042942848168) + +[fips2807790351] +centroid = (0.55010372959152021, -1.573252895170371) +description = District 1, MS +station = ('k1r7', 0.0043891285883347359) +zone = ('msz063', 0.00074554418201484482) + +[fips2807791089] +centroid = (0.55200231620513218, -1.5738803061298781) +description = District 2, MS +station = ('k1r7', 0.0036477335180793262) +zone = ('msz063', 0.0016998194353698853) + +[fips2807791827] +centroid = (0.54815999131015913, -1.5731591186296616) +description = District 3, MS +station = ('k1r7', 0.0054088301108017548) +zone = ('msz063', 0.0025303832499359406) + +[fips2807792565] +centroid = (0.55288400418336214, -1.5715965777102285) +description = District 4, MS +station = ('k1r7', 0.0057234756922201454) +zone = ('msz063', 0.0024072980107142346) + +[fips2807793303] +centroid = (0.54996499336927918, -1.5708854956663811) +description = District 5, MS +station = ('k1r7', 0.0063643976834528888) +zone = ('msz063', 0.0016653925036591857) + +[fips28079] +centroid = (0.5716523673880981, -1.5624635664405151) +description = Leake County, MS +station = ('knmm', 0.009099482103000614) +zone = ('msz044', 2.2848869360368059e-05) + +[fips2807990360] +centroid = (0.57301423035013677, -1.5604544481253744) +description = District 1, MS +station = ('knmm', 0.0071077839323530493) +zone = ('msz044', 0.0021846312534292939) + +[fips2807991098] +centroid = (0.57316602163518271, -1.5628945580460025) +description = District 2, MS +station = ('knmm', 0.0090977332966781614) +zone = ('msz044', 0.0015473787857643222) + +[fips2807991836] +centroid = (0.57236739387605506, -1.5649799472494554) +description = District 3, MS +station = ('kjan', 0.010251796826726481) +zone = ('msz044', 0.0022107685832673781) + +[fips2807992574] +centroid = (0.56963134592745879, -1.5631034390508811) +description = District 4, MS +station = ('kjan', 0.0094330922579964512) +zone = ('msz044', 0.0020897730639049977) + +[fips2807993312] +centroid = (0.57002193316076266, -1.560053004944123) +description = District 5, MS +station = ('knmm', 0.0079939357934724967) +zone = ('msz044', 0.0026225108358929475) + +[fips28081] +centroid = (0.59845533635109738, -1.5477734617390366) +description = Lee County, MS +station = ('ktup', 0.0012968809038172424) +zone = ('msz016', 1.7765696570452083e-05) + +[fips2808180] +centroid = (0.58827849601564375, -1.5833971502086901) +description = Boyle town, MS +station = ('kglh', 0.0054335621449012137) +zone = ('msz019', 0.0026489248674434695) + +[fips2808190369] +centroid = (0.60004880450487574, -1.5467177644343828) +description = District 1, MS +station = ('ktup', 0.0028941025024311084) +zone = ('msz016', 0.0017986527528044112) + +[fips2808191107] +centroid = (0.60034472507955139, -1.5487806563437776) +description = District 2, MS +station = ('ktup', 0.0023142089284505412) +zone = ('msz016', 0.0020522395660748181) + +[fips2808191845] +centroid = (0.59838405710444598, -1.5495685328747129) +description = District 3, MS +station = ('ktup', 0.00040208410264546042) +zone = ('msz016', 0.0014927229054192037) + +[fips2808192583] +centroid = (0.59622107056244944, -1.5492398524699773) +description = District 4, MS +station = ('ktup', 0.0018452616356614538) +zone = ('msz016', 0.0025597409737092235) + +[fips2808193321] +centroid = (0.59645965707119708, -1.5468611606857265) +description = District 5, MS +station = ('ktup', 0.0025593252720088971) +zone = ('msz016', 0.0021462733076702792) + +[fips28083] +centroid = (0.58555429885266841, -1.5759438961709735) +description = Leflore County, MS +station = ('kgwo', 0.0031990509621320218) +zone = ('msz025', 8.9099636486323833e-05) + +[fips2808300] +centroid = (0.56335782974433513, -1.570641795342925) +description = Brandon city, MS +station = ('kjan', 0.0014671670664530533) +zone = ('msz049', 0.0007133451556772365) + +[fips2808390378] +centroid = (0.58877905644511574, -1.5765168528578184) +description = District 1, MS +station = ('kgwo', 0.0054203110535712157) +zone = ('msz025', 0.0032358152211950601) + +[fips2808391116] +centroid = (0.58669307382971714, -1.5740546645221523) +description = District 2, MS +station = ('kgwo', 0.0025081661571716217) +zone = ('msz025', 0.002007809954673939) + +[fips2808391854] +centroid = (0.58623611172496004, -1.5770298574848571) +description = District 3, MS +station = ('kgwo', 0.0042744162246411595) +zone = ('msz025', 0.0010559355404934695) + +[fips2808392592] +centroid = (0.58404418762396537, -1.5765955672070833) +description = District 4, MS +station = ('kgwo', 0.0036801084180202817) +zone = ('msz025', 0.0015890657080734293) + +[fips2808393330] +centroid = (0.58255390333556489, -1.5760754067301113) +description = District 5, MS +station = ('kgwo', 0.0038378238233530274) +zone = ('msz025', 0.0030128632764669892) + +[fips2808460] +centroid = (0.55896597048107921, -1.5702994315568539) +description = Braxton village, MS +station = ('kjan', 0.0053536060162695303) +zone = ('msz055', 0.0021204425723873738) + +[fips28085] +centroid = (0.55039334952759611, -1.5787125468699972) +description = Lincoln County, MS +station = ('k1r7', 0.0012359678898373676) +zone = ('msz062', 4.9570703268122307e-05) + +[fips2808590387] +centroid = (0.55055606657375955, -1.577701285648099) +description = District 1, MS +station = ('k1r7', 0.0010336109934903279) +zone = ('msz062', 0.00089381555687869014) + +[fips2808591125] +centroid = (0.55210096221445482, -1.5770219511433454) +description = District 2, MS +station = ('k1r7', 0.0011035907028860465) +zone = ('msz062', 0.0022757399351037212) + +[fips2808591863] +centroid = (0.54859581747767461, -1.5774105487013019) +description = District 3, MS +station = ('k1r7', 0.0029911946367327542) +zone = ('msz062', 0.002074632310938471) + +[fips2808592601] +centroid = (0.54897071420100307, -1.5802841809548331) +description = District 4, MS +station = ('k1r7', 0.0031466608856815818) +zone = ('msz062', 0.0019144620344305953) + +[fips2808593339] +centroid = (0.55196103916832251, -1.5810539060615476) +description = District 5, MS +station = ('k1r7', 0.0025308494869502448) +zone = ('msz062', 0.0025626367220123467) + +[fips2808655] +centroid = (0.60894078580488875, -1.5691352620391885) +description = Bridgetown CDP, MS +station = ('kolv', 0.0022948080982026181) +zone = ('msz001', 0.0012701049013107855) + +[fips28087] +centroid = (0.58418655413105047, -1.5435643559017571) +description = Lowndes County, MS +station = ('kgtr', 0.002124229057763093) +zone = ('msz031', 5.8099938977864809e-05) + +[fips2808790396] +centroid = (0.58698875005829743, -1.5415791136907835) +description = District 1, MS +station = ('kcbm', 0.0018293366302756945) +zone = ('msz031', 0.0032589406751791831) + +[fips2808791134] +centroid = (0.58625356501747994, -1.5435961383474357) +description = District 2, MS +station = ('kcbm', 0.0010568980312542415) +zone = ('msz031', 0.0020414096934835563) + +[fips2808791872] +centroid = (0.58369695436928104, -1.5415378017473889) +description = District 3, MS +station = ('kgtr', 0.0037841212386148741) +zone = ('msz031', 0.001817417402042755) + +[fips2808792610] +centroid = (0.58219977603033535, -1.5446762702616177) +description = District 4, MS +station = ('kgtr', 0.001989135324100535) +zone = ('msz031', 0.0021949257819360896) + +[fips2808793348] +centroid = (0.58386035209385279, -1.545493555590449) +description = District 5, MS +station = ('kgtr', 0.00048400834455860123) +zone = ('msz031', 0.0015966176598679444) + +[fips2808820] +centroid = (0.55118487379666803, -1.5785348723521442) +description = Brookhaven city, MS +station = ('k1r7', 0.00048571304080334532) +zone = ('msz062', 0.00085536483290208937) + +[fips28089] +centroid = (0.56957720581406179, -1.5713925312673778) +description = Madison County, MS +station = ('kjan', 0.0055285901317478521) +zone = ('msz043', 7.8211083577977984e-06) + +[fips2808980] +centroid = (0.58008984749759929, -1.5459801882924902) +description = Brooksville town, MS +station = ('kgtr', 0.0037235572811312586) +zone = ('msz039', 0.002212943325517316) + +[fips2808990405] +centroid = (0.5667723220797668, -1.5720944852392373) +description = District 1, MS +station = ('kjan', 0.0026871496179490043) +zone = ('msz043', 0.0028733391446086705) + +[fips2808991143] +centroid = (0.56633101557840004, -1.5726836909414181) +description = District 2, MS +station = ('kjan', 0.0022904058854395673) +zone = ('msz043', 0.0034309556561615932) + +[fips2808991881] +centroid = (0.56676359543350685, -1.574104633298637) +description = District 3, MS +station = ('khks', 0.0024729620536353592) +zone = ('msz043', 0.0036330200260857406) + +[fips2808992619] +centroid = (0.56849218697797455, -1.5745273171368848) +description = District 4, MS +station = ('khks', 0.0041692804318238658) +zone = ('msz043', 0.00286210330859798) + +[fips2808993357] +centroid = (0.57109017938273821, -1.5688885422961267) +description = District 5, MS +station = ('kjan', 0.0075247949925244606) +zone = ('msz043', 0.0025868202820655368) + +[fips28091] +centroid = (0.54506852451268661, -1.5676850330571215) +description = Marion County, MS +station = ('kpib', 0.0083689889298656835) +zone = ('msz072', 1.5381174628762928e-05) + +[fips2809180] +centroid = (0.59325322543589576, -1.559372518522063) +description = Bruce town, MS +station = ('kuox', 0.0073965305044762916) +zone = ('msz022', 0.00096031474504100587) + +[fips2809190414] +centroid = (0.54661638721311034, -1.5658203581908758) +description = District 1, MS +station = ('kpib', 0.0062430060268453538) +zone = ('msz072', 0.0022206288058061177) + +[fips2809191152] +centroid = (0.5471416615047906, -1.5678824821553996) +description = District 2, MS +station = ('kpib', 0.007722300247381143) +zone = ('msz072', 0.002067483147015302) + +[fips2809191890] +centroid = (0.54588160359802074, -1.5700267587678147) +description = District 3, MS +station = ('kmcb', 0.0077949415213744459) +zone = ('msz072', 0.0021471141525856046) + +[fips2809192628] +centroid = (0.5431637419802301, -1.5686159218669651) +description = District 4, MS +station = ('kpib', 0.01008354680938992) +zone = ('msz072', 0.0020716631044322875) + +[fips2809193366] +centroid = (0.54343821245839874, -1.5659679083258393) +description = District 5, MS +station = ('kpib', 0.0081848594992192814) +zone = ('msz072', 0.0022098995423713258) + +[fips28093] +centroid = (0.60678448387392747, -1.5621435254155769) +description = Marshall County, MS +station = ('kolv', 0.0054926408948447339) +zone = ('msz002', 6.9803064149077864e-05) + +[fips2809380] +centroid = (0.55072545077766566, -1.5452181426344842) +description = Buckatunna CDP, MS +station = ('kpib', 0.011984582862075642) +zone = ('msz067', 0.002834337575007079) + +[fips2809390423] +centroid = (0.60725434396185685, -1.5610620670511635) +description = District 1, MS +station = ('kolv', 0.0059045902755127701) +zone = ('msz002', 0.0010245371226848079) + +[fips2809391161] +centroid = (0.60931985386512955, -1.5614964620486924) +description = District 2, MS +station = ('kolv', 0.0047239850887070165) +zone = ('msz002', 0.0026536949954513106) + +[fips2809391899] +centroid = (0.60942158910722821, -1.564982687416381) +description = District 3, MS +station = ('kolv', 0.0020261251265277858) +zone = ('msz002', 0.0035808993928362343) + +[fips2809392637] +centroid = (0.60574362186791553, -1.5639129053046636) +description = District 4, MS +station = ('kolv', 0.005416597233021193) +zone = ('msz002', 0.0017630810260386173) + +[fips2809393375] +centroid = (0.60442266942354361, -1.5603516307791392) +description = District 5, MS +station = ('kuox', 0.0047129175287765222) +zone = ('msz002', 0.0027175354309579964) + +[fips2809460] +centroid = (0.54912329088421241, -1.5856714189437937) +description = Bude town, MS +station = ('kmcb', 0.0075356044363481534) +zone = ('msz061', 0.00072489144904212463) + +[fips28095] +centroid = (0.5914926070996539, -1.5443552518522983) +description = Monroe County, MS +station = ('km40', 0.00029194856974955346) +zone = ('msz024', 7.8005415538146802e-05) + +[fips2809590432] +centroid = (0.59392721923313829, -1.5429047959774285) +description = District 1, MS +station = ('km40', 0.0030008291065138069) +zone = ('msz024', 0.0026507072661050603) + +[fips2809591170] +centroid = (0.59234729483435555, -1.5421747945644892) +description = District 2, MS +station = ('km40', 0.0021952262790466597) +zone = ('msz024', 0.0019235227154423577) + +[fips2809591908] +centroid = (0.58973366427949403, -1.5427953463800359) +description = District 3, MS +station = ('km40', 0.0020081127814976191) +zone = ('msz024', 0.0021780269185546802) + +[fips2809592646] +centroid = (0.58950748706172806, -1.5466629785491628) +description = District 4, MS +station = ('km40', 0.0025131374988649055) +zone = ('msz024', 0.0028348615360024232) + +[fips2809593384] +centroid = (0.59308782058268417, -1.5467877172308029) +description = District 5, MS +station = ('km40', 0.002709148224598436) +zone = ('msz024', 0.00260157427188548) + +[fips28097] +centroid = (0.58469776106895965, -1.564506596503022) +description = Montgomery County, MS +station = ('kgwo', 0.0064577351553228527) +zone = ('msz028', 0.00035719521625872153) + +[fips2809790441] +centroid = (0.58531525855831523, -1.5649845898252657) +description = District 1, MS +station = ('kgwo', 0.0060905615916573182) +zone = ('msz028', 0.0010390361754461471) + +[fips2809791179] +centroid = (0.58557374182053568, -1.5665557526712037) +description = District 2, MS +station = ('kgwo', 0.0048300074590261208) +zone = ('msz028', 0.0022737714433331705) + +[fips2809791917] +centroid = (0.58556923887106549, -1.5637715336352522) +description = District 3, MS +station = ('kgwo', 0.0071236913984057456) +zone = ('msz028', 0.0010244765749071107) + +[fips2809792655] +centroid = (0.58306034552461616, -1.562674297494401) +description = District 4, MS +station = ('kgwo', 0.0081535261853727167) +zone = ('msz028', 0.0019323369299167384) + +[fips2809793393] +centroid = (0.58234353880082212, -1.5643523966636084) +description = District 5, MS +station = ('kgwo', 0.0069950556770002528) +zone = ('msz028', 0.0022485765752506539) + +[fips2809820] +centroid = (0.60793376573307323, -1.5414520886278233) +description = Burnsville town, MS +station = ('kcrx', 0.0043104702648635671) +zone = ('msz006', 0.0019630074059702809) + +[fips28099] +centroid = (0.57163927741870812, -1.5554247582869771) +description = Neshoba County, MS +station = ('knmm', 0.0039551646281260752) +zone = ('msz045', 2.9958568715446068e-05) + +[fips2809990450] +centroid = (0.57259702684573999, -1.5573082128959741) +description = District 1, MS +station = ('knmm', 0.0047113112493559805) +zone = ('msz045', 0.0018629740426267206) + +[fips2809991188] +centroid = (0.57319838003951462, -1.5533791625904696) +description = District 2, MS +station = ('knmm', 0.0016493263521910634) +zone = ('msz045', 0.002291394487706004) + +[fips2809991926] +centroid = (0.57001076305354981, -1.5533412714924089) +description = District 3, MS +station = ('knmm', 0.0045983706616395436) +zone = ('msz045', 0.0023866542006494252) + +[fips2809992664] +centroid = (0.57000332795093633, -1.5568909221251148) +description = District 4, MS +station = ('knmm', 0.0059955012877459376) +zone = ('msz045', 0.0020774986408410713) + +[fips2809993402] +centroid = (0.57380697634968503, -1.5559582705327268) +description = District 5, MS +station = ('knmm', 0.0032485696486465442) +zone = ('msz045', 0.0022019470560037369) + +[fips2810060] +centroid = (0.60858213809689654, -1.5653856839406666) +description = Byhalia town, MS +station = ('kolv', 0.0023644669805197851) +zone = ('msz002', 0.0032637263238909772) + +[fips28101] +centroid = (0.56552106063242702, -1.555409713548825) +description = Newton County, MS +station = ('kmei', 0.0055615197558067592) +zone = ('msz051', 3.1416984335879874e-05) + +[fips2810140] +centroid = (0.56182078808527391, -1.5757803064601841) +description = Byram city, MS +station = ('khks', 0.0027010315136406821) +zone = ('msz048', 0.0026788963304924082) + +[fips2810190459] +centroid = (0.56592037451199084, -1.5553438971827322) +description = District 1, MS +station = ('kmei', 0.0056070142700284844) +zone = ('msz051', 0.00043454872183478231) + +[fips2810191197] +centroid = (0.56704776994231654, -1.5534064420866782) +description = District 2, MS +station = ('kmei', 0.0046249203602117027) +zone = ('msz051', 0.002302939435847215) + +[fips2810191935] +centroid = (0.5669292271795211, -1.5571386017992654) +description = District 3, MS +station = ('kmei', 0.0073646799627971665) +zone = ('msz051', 0.002045276177457974) + +[fips2810192673] +centroid = (0.5636229103511281, -1.5573157352650504) +description = District 4, MS +station = ('kmei', 0.0070797965705415248) +zone = ('msz051', 0.0024619473479003486) + +[fips2810193411] +centroid = (0.56388268515699491, -1.5536795512080304) +description = District 5, MS +station = ('kmei', 0.003996032678422445) +zone = ('msz051', 0.002176448995775643) + +[fips28103] +centroid = (0.57781341455422319, -1.5457645877699913) +description = Noxubee County, MS +station = ('kgtr', 0.0060046807342222629) +zone = ('msz039', 8.8940341537150529e-05) + +[fips2810390468] +centroid = (0.57928732765423985, -1.5432433723990229) +description = District 1, MS +station = ('kgtr', 0.0051049516513817766) +zone = ('msz039', 0.0025858371167369575) + +[fips2810391206] +centroid = (0.57659423225853501, -1.5436377819033884) +description = District 2, MS +station = ('kgtr', 0.0074997358096429738) +zone = ('msz039', 0.002245612522955044) + +[fips2810391944] +centroid = (0.5777270905694194, -1.5462015658548129) +description = District 3, MS +station = ('knmm', 0.0059596098199739961) +zone = ('msz039', 0.00034342092106811662) + +[fips2810392682] +centroid = (0.57640320597190431, -1.5476109890389684) +description = District 4, MS +station = ('knmm', 0.0042773674384832426) +zone = ('msz039', 0.0020970758847005584) + +[fips2810393420] +centroid = (0.5803190964948487, -1.5472723777107891) +description = District 5, MS +station = ('kgtr', 0.0036348586278581591) +zone = ('msz039', 0.0027195456836408734) + +[fips2810460] +centroid = (0.5878898460978097, -1.5415799339955321) +description = Caledonia town, MS +station = ('kcbm', 0.0018939831067380241) +zone = ('alz012', 0.0037207722709193297) + +[fips28105] +centroid = (0.58332940548210366, -1.5511814614496506) +description = Oktibbeha County, MS +station = ('kstf', 0.00054341413972231096) +zone = ('msz033', 6.5600957077377835e-05) + +[fips2810580] +centroid = (0.590957140085142, -1.5588341717142853) +description = Calhoun City town, MS +station = ('kuox', 0.0097046669874711732) +zone = ('msz022', 0.0013812989059589762) + +[fips2810590477] +centroid = (0.58394547180147249, -1.5527911437121802) +description = District 1, MS +station = ('kstf', 0.0019307534735409596) +zone = ('msz033', 0.0014167009841827196) + +[fips2810591215] +centroid = (0.58423322423524882, -1.5486645744952274) +description = District 2, MS +station = ('kstf', 0.0017516690745519733) +zone = ('msz033', 0.0023106488085140524) + +[fips2810591953] +centroid = (0.58513405847537314, -1.5520950365933148) +description = District 3, MS +station = ('kstf', 0.0021095559291804452) +zone = ('msz033', 0.0018980607304489186) + +[fips2810592691] +centroid = (0.58226014696916173, -1.5532416306454124) +description = District 4, MS +station = ('kstf', 0.0025487852064775478) +zone = ('msz033', 0.0020121322712150689) + +[fips2810593429] +centroid = (0.58226227627084914, -1.5496485038610393) +description = District 5, MS +station = ('kstf', 0.0014178238342009702) +zone = ('msz033', 0.0017316854118042972) + +[fips28107] +centroid = (0.59978597537281797, -1.5701516894356724) +description = Panola County, MS +station = ('kuox', 0.006167535858573164) +zone = ('msz012', 0.00018245176877907231) + +[fips2810790486] +centroid = (0.60186794373093699, -1.5687660376359291) +description = District 1, MS +station = ('kuox', 0.0053066719790168726) +zone = ('msz012', 0.0023142114454173732) + +[fips2810791224] +centroid = (0.60088390964536997, -1.572071778505669) +description = District 2, MS +station = ('kuta', 0.0059067412138730461) +zone = ('msz012', 0.0020910186173879958) + +[fips2810791962] +centroid = (0.59742937945689767, -1.570934975750675) +description = District 3, MS +station = ('kuox', 0.0073232440799220616) +zone = ('msz012', 0.0024764357902358242) + +[fips2810792700] +centroid = (0.59826059251315999, -1.5673491269892827) +description = District 4, MS +station = ('kuox', 0.0042738084881887408) +zone = ('msz012', 0.0026095282149821938) + +[fips2810793438] +centroid = (0.59902743782660872, -1.5708747269848962) +description = District 5, MS +station = ('kuox', 0.0068449489885124611) +zone = ('msz012', 0.0010708558234652924) + +[fips28109] +centroid = (0.53710397627059825, -1.5635851848310167) +description = Pearl River County, MS +station = ('khsa', 0.0073591024918782813) +zone = ('msz077', 0.0001009424875273537) + +[fips2810990495] +centroid = (0.53687240598544372, -1.5633264397694084) +description = District 1, MS +station = ('khsa', 0.0070776826359902571) +zone = ('msz077', 0.00030179295577323101) + +[fips2810991233] +centroid = (0.53822952165191695, -1.5652256547015513) +description = District 2, MS +station = ('kasd', 0.0087630548767378622) +zone = ('msz077', 0.0018278445988555831) + +[fips2810991971] +centroid = (0.53732795437350678, -1.5615315955265352) +description = District 3, MS +station = ('khsa', 0.0073134685276049338) +zone = ('msz077', 0.001836017377518411) + +[fips2810992709] +centroid = (0.533959783076423, -1.5666752728183801) +description = District 4, MS +station = ('kasd', 0.0043258540322657114) +zone = ('laz040', 0.0036704463342945928) + +[fips2810993447] +centroid = (0.53401776291417424, -1.5642729318227651) +description = District 5, MS +station = ('khsa', 0.0047597831122023508) +zone = ('msz077', 0.0030451299954535904) + +[fips28111] +centroid = (0.54400703271491624, -1.5531467720005665) +description = Perry County, MS +station = ('khbg', 0.0042535244016135339) +zone = ('msz075', 7.1964267458752483e-05) + +[fips2811100] +centroid = (0.56894974249467745, -1.5713581831876986) +description = Canton city, MS +station = ('kjan', 0.0049097263432487095) +zone = ('msz043', 0.00063366398771180722) + +[fips2811190504] +centroid = (0.54481508525200451, -1.5536886094668483) +description = District 1, MS +station = ('khbg', 0.0035488628349638644) +zone = ('msz075', 0.00086319998672056326) + +[fips2811191242] +centroid = (0.54722966100567616, -1.5544933458783576) +description = District 2, MS +station = ('khbg', 0.0031394556959770809) +zone = ('msz075', 0.0033584915210392147) + +[fips2811191980] +centroid = (0.54757001766310753, -1.5518040902070072) +description = District 3, MS +station = ('khbg', 0.0053755900236968747) +zone = ('msz075', 0.0037136258365149245) + +[fips2811192718] +centroid = (0.54541121991131569, -1.5521058052747996) +description = District 4, MS +station = ('khbg', 0.0047966439223682935) +zone = ('msz075', 0.0016513271035054182) + +[fips2811193456] +centroid = (0.54183551151287734, -1.5532788236117723) +description = District 5, MS +station = ('khbg', 0.0054165247504415993) +zone = ('msz075', 0.0022210811690665843) + +[fips28113] +centroid = (0.544150324246505, -1.577737937562391) +description = Pike County, MS +station = ('kmcb', 0.0010344307973182208) +zone = ('msz070', 0.00010693459193468801) + +[fips2811390513] +centroid = (0.54557592663282639, -1.578742322187036) +description = District 1, MS +station = ('kmcb', 0.001334965930942451) +zone = ('msz070', 0.0016570389412486855) + +[fips2811391251] +centroid = (0.54378760992135544, -1.5785053413812005) +description = District 2, MS +station = ('kmcb', 0.00059547220097538184) +zone = ('msz070', 0.00064347073560592301) + +[fips2811391989] +centroid = (0.54501384334722169, -1.5766015536864175) +description = District 3, MS +station = ('kmcb', 0.002141308678751357) +zone = ('msz070', 0.0014031048030123704) + +[fips2811392727] +centroid = (0.54634263231993496, -1.5789552174491945) +description = District 4, MS +station = ('kmcb', 0.0020908282705866636) +zone = ('msz070', 0.0024289941913270001) + +[fips2811393465] +centroid = (0.54245691853975742, -1.5782515356013755) +description = District 5, MS +station = ('kmcb', 0.0018895060734155354) +zone = ('msz070', 0.0016830338603626511) + +[fips28115] +centroid = (0.59737525679679326, -1.5539929774351036) +description = Pontotoc County, MS +station = ('ktup', 0.0039642827176630353) +zone = ('msz015', 2.9430838308290167e-05) + +[fips2811580] +centroid = (0.58479214847490746, -1.5694313571467893) +description = Carrollton town, MS +station = ('kgwo', 0.0023534100441931875) +zone = ('msz027', 0.0010059609676024023) + +[fips2811590522] +centroid = (0.59914290880992072, -1.5526433492311214) +description = District 1, MS +station = ('ktup', 0.0029871203714287838) +zone = ('msz015', 0.0021161529826189338) + +[fips2811591260] +centroid = (0.59869722153213134, -1.5559003081482681) +description = District 2, MS +station = ('kuox', 0.0057843905877372221) +zone = ('msz015', 0.0020744819592521378) + +[fips2811591998] +centroid = (0.59616539455931084, -1.5560267223459898) +description = District 3, MS +station = ('ktup', 0.0059015208372173921) +zone = ('msz015', 0.0020532284312905929) + +[fips2811592736] +centroid = (0.59745091681986728, -1.551829048415311) +description = District 4, MS +station = ('ktup', 0.0022024869110528499) +zone = ('msz015', 0.0017945379551942678) + +[fips2811593474] +centroid = (0.59566835969492793, -1.5527250829999923) +description = District 5, MS +station = ('ktup', 0.0037300187954077712) +zone = ('msz015', 0.0019797329391443852) + +[fips28117] +centroid = (0.60424810159175912, -1.545004549240625) +description = Prentiss County, MS +station = ('kcrx', 0.0053385739294180487) +zone = ('msz009', 5.4318213472505024e-05) + +[fips2811780] +centroid = (0.5714945896237178, -1.5626535280763021) +description = Carthage city, MS +station = ('knmm', 0.009301459880299184) +zone = ('msz044', 0.00021221081404805884) + +[fips2811790531] +centroid = (0.60530290877849446, -1.5449854204320235) +description = District 1, MS +station = ('kcrx', 0.0043166316908881787) +zone = ('msz009', 0.0010996944988627929) + +[fips2811791269] +centroid = (0.60535390729923777, -1.5473091867047135) +description = District 2, MS +station = ('kcrx', 0.0041879652368952943) +zone = ('msz009', 0.002244011044184255) + +[fips2811792007] +centroid = (0.60299624673247376, -1.5468023779965194) +description = District 3, MS +station = ('ktup', 0.0053340948688913922) +zone = ('msz009', 0.0019338641488351497) + +[fips2811792745] +centroid = (0.60272081632321639, -1.5432757831632322) +description = District 4, MS +station = ('ktup', 0.0067921002790729962) +zone = ('msz009', 0.0020340448347354908) + +[fips2811793483] +centroid = (0.60487036382997272, -1.5429320231137595) +description = District 5, MS +station = ('kcrx', 0.0053926744774077228) +zone = ('msz009', 0.0018024455416680088) + +[fips2811820] +centroid = (0.57256646613053763, -1.5869338504983463) +description = Cary town, MS +station = ('ktvr', 0.0081354062910914023) +zone = ('msz040', 0.00146817872810057) + +[fips28119] +centroid = (0.59782134550031052, -1.5758669446042533) +description = Quitman County, MS +station = ('kckm', 0.0032714588512667265) +zone = ('msz011', 2.9849514254827454e-05) + +[fips2811990540] +centroid = (0.60082161884436636, -1.5752074195865093) +description = District 1, MS +station = ('kckm', 0.0042968632634192471) +zone = ('msz011', 0.0030670181341495616) + +[fips2811991278] +centroid = (0.59893214284944984, -1.5771236689321517) +description = District 2, MS +station = ('kckm', 0.0021449485573209848) +zone = ('msz011', 0.0015504018023647635) + +[fips2811992016] +centroid = (0.59818358858656195, -1.5747685041862178) +description = District 3, MS +station = ('kckm', 0.0040988701893126594) +zone = ('msz011', 0.00096675601244787805) + +[fips2811992754] +centroid = (0.5960397308531673, -1.5771886300869109) +description = District 4, MS +station = ('kckm', 0.0033325565095528062) +zone = ('msz011', 0.0020827446291230064) + +[fips2811993492] +centroid = (0.59591963474733756, -1.5746174808460429) +description = District 5, MS +station = ('kckm', 0.0050087710497843689) +zone = ('msz011', 0.0021355458211323804) + +[fips28121] +centroid = (0.56307911811608424, -1.5698634832162905) +description = Rankin County, MS +station = ('kjan', 0.0021784465889019963) +zone = ('msz049', 3.7809270427621983e-05) + +[fips2812190549] +centroid = (0.56076149540236098, -1.5734592803544194) +description = District 1, MS +station = ('kjan', 0.0035040247389221749) +zone = ('msz049', 0.0038566289296734844) + +[fips2812191287] +centroid = (0.56571074301553381, -1.5707676684885787) +description = District 2, MS +station = ('kjan', 0.0020005945083706751) +zone = ('msz049', 0.0027096162122840143) + +[fips2812192025] +centroid = (0.5611125334748146, -1.5693537772615382) +description = District 3, MS +station = ('kjan', 0.0037985690621049149) +zone = ('msz049', 0.0020455507276904766) + +[fips2812192763] +centroid = (0.5652532049521235, -1.5681704440286861) +description = District 4, MS +station = ('kjan', 0.0035579621201510918) +zone = ('msz049', 0.0025659060355186034) + +[fips2812193501] +centroid = (0.56353859349496427, -1.5723195279929896) +description = District 5, MS +station = ('kjan', 0.00056565381489866282) +zone = ('msz049', 0.0021316737263458495) + +[fips28123] +centroid = (0.56596013311235127, -1.5626492869262196) +description = Scott County, MS +station = ('kjan', 0.0082392662295408883) +zone = ('msz050', 0.00036749380344446703) + +[fips2812390558] +centroid = (0.56671537198627431, -1.5622707599180472) +description = District 1, MS +station = ('kjan', 0.0087456354242240672) +zone = ('msz050', 0.0011812031630896399) + +[fips2812391296] +centroid = (0.56353691797888228, -1.5608595215914696) +description = District 2, MS +station = ('kjan', 0.0095578524264524015) +zone = ('msz050', 0.0025953488563373994) + +[fips2812392034] +centroid = (0.56403758312810937, -1.5644914994049923) +description = District 3, MS +station = ('kjan', 0.0064714193572880481) +zone = ('msz050', 0.0021587557248761609) + +[fips2812392772] +centroid = (0.56700642309233684, -1.5648945308358628) +description = District 4, MS +station = ('kjan', 0.0067856836919423661) +zone = ('msz050', 0.0023090541225626706) + +[fips2812393510] +centroid = (0.56689199930657608, -1.560229195932112) +description = District 5, MS +station = ('kmei', 0.0098387866362660975) +zone = ('msz050', 0.002472464125204684) + +[fips28125] +centroid = (0.57408224967930965, -1.5852369715863874) +description = Sharkey County, MS +station = ('ktvr', 0.0099580262512692658) +zone = ('msz041', 0.00030507683556048906) + +[fips2812590567] +centroid = (0.57271094448601778, -1.5848096975322068) +description = District 1, MS +station = ('ktvr', 0.0087900540127254078) +zone = ('msz041', 0.0011579553674108507) + +[fips2812591305] +centroid = (0.57144687232196834, -1.5861762728832258) +description = District 2, MS +station = ('ktvr', 0.0072073037440399503) +zone = ('msz040', 0.001585386092120077) + +[fips2812592043] +centroid = (0.57464925479340501, -1.58451072263134) +description = District 3, MS +station = ('kglh', 0.010163234670522443) +zone = ('msz041', 0.00088653869760668767) + +[fips2812592781] +centroid = (0.57599054032356267, -1.5837981570576285) +description = District 4, MS +station = ('kglh', 0.0090957885646704168) +zone = ('msz041', 0.0023543018106375146) + +[fips2812593519] +centroid = (0.5767063871162682, -1.5851154268572787) +description = District 5, MS +station = ('kglh', 0.008047233357235067) +zone = ('msz041', 0.002849329540965357) + +[fips28127] +centroid = (0.55680371697736852, -1.5693600429935528) +description = Simpson County, MS +station = ('kjan', 0.0076554266306156542) +zone = ('msz055', 0.00018857838406883228) + +[fips2812740] +centroid = (0.5425708361800351, -1.5893917627773448) +description = Centreville town, MS +station = ('khzr', 0.0089279212440119791) +zone = ('laz036', 0.0042328154203909972) + +[fips2812790576] +centroid = (0.55710853873122934, -1.5669007344511527) +description = District 1, MS +station = ('kjan', 0.0082726066165609985) +zone = ('msz055', 0.0021173671637503863) + +[fips2812791314] +centroid = (0.55529842285740094, -1.5669198632597545) +description = District 2, MS +station = ('kpib', 0.0089923590616757341) +zone = ('msz055', 0.0026960520000388977) + +[fips2812792052] +centroid = (0.55824310746478079, -1.5665847949499567) +description = District 3, MS +station = ('kjan', 0.0075050646697242254) +zone = ('msz055', 0.0026907836454641955) + +[fips2812792790] +centroid = (0.55562696363579644, -1.5704858850808443) +description = District 4, MS +station = ('k1r7', 0.0076863167842075569) +zone = ('msz055', 0.0016501430081016068) + +[fips2812793528] +centroid = (0.55776291502767961, -1.5716447138909986) +description = District 5, MS +station = ('kjan', 0.0063370515872395042) +zone = ('msz055', 0.0020624545464223635) + +[fips28129] +centroid = (0.55883756660800998, -1.5619819428334272) +description = Smith County, MS +station = ('kpib', 0.0099346641839058222) +zone = ('msz056', 0.00017509414554678048) + +[fips2812900] +centroid = (0.59354551572572711, -1.5717591551300518) +description = Charleston city, MS +station = ('kckm', 0.0083180172549520287) +zone = ('msz020', 0.0019782139413673789) + +[fips2812990585] +centroid = (0.55761117610251121, -1.561738539215944) +description = District 1, MS +station = ('kpib', 0.0086953170384766292) +zone = ('msz056', 0.00126171118071226) + +[fips2812991323] +centroid = (0.55725053871917163, -1.5598037370203532) +description = District 2, MS +station = ('kpib', 0.0080721576212825549) +zone = ('msz056', 0.0025556470179397906) + +[fips2812992061] +centroid = (0.55529072595539974, -1.562546748832665) +description = District 3, MS +station = ('kpib', 0.0067411968804675258) +zone = ('msz065', 0.0032092280104165072) + +[fips2812992799] +centroid = (0.55956053434406361, -1.5643736024140202) +description = District 4, MS +station = ('kjan', 0.0079858816461489002) +zone = ('msz056', 0.0019984370199598723) + +[fips2812993537] +centroid = (0.56067429875293129, -1.5613410579320948) +description = District 5, MS +station = ('kjan', 0.0097589621269598397) +zone = ('msz056', 0.001993252408394148) + +[fips28131] +centroid = (0.53739008809487776, -1.5553029866650654) +description = Stone County, MS +station = ('kgpt', 0.0065336107862951206) +zone = ('msz078', 8.1072015787284321e-05) + +[fips2813190594] +centroid = (0.53899470890257628, -1.5558201451757236) +description = District 1, MS +station = ('khbg', 0.0069032686065785354) +zone = ('msz078', 0.0016483182133624887) + +[fips2813191332] +centroid = (0.53872358945657151, -1.5571781684134081) +description = District 2, MS +station = ('khbg', 0.0069973316714245634) +zone = ('msz078', 0.0020311135303189348) + +[fips2813192070] +centroid = (0.5368117732472294, -1.5578322130973004) +description = District 3, MS +station = ('kgpt', 0.0064898403085414244) +zone = ('msz078', 0.002169686984048833) + +[fips2813192808] +centroid = (0.53637519658813559, -1.5540591254137539) +description = District 4, MS +station = ('kgpt', 0.0055408031764379454) +zone = ('msz078', 0.0015315841497664838) + +[fips2813193546] +centroid = (0.53834736628301161, -1.5533161562044724) +description = District 5, MS +station = ('kbix', 0.0075766234536123467) +zone = ('msz078', 0.0020290184626356273) + +[fips28133] +centroid = (0.5865271279244374, -1.5811826066405896) +description = Sunflower County, MS +station = ('kglh', 0.0060368815203724604) +zone = ('msz019', 0.00010864791323074305) + +[fips2813390603] +centroid = (0.58242810000308121, -1.5808163318437662) +description = District 1, MS +station = ('kglh', 0.0062768932487924228) +zone = ('msz019', 0.0040482504384270522) + +[fips2813391341] +centroid = (0.58248567841510446, -1.5832594786372927) +description = District 2, MS +station = ('kglh', 0.0043616832205735116) +zone = ('msz034', 0.003750182063349147) + +[fips2813392079] +centroid = (0.58480661725440652, -1.5810153866449561) +description = District 3, MS +station = ('kglh', 0.0058049315624422292) +zone = ('msz019', 0.0016648010784864463) + +[fips2813392817] +centroid = (0.58672078965823882, -1.5812137433144453) +description = District 4, MS +station = ('kglh', 0.0060836652040091657) +zone = ('msz019', 0.00027681404793148442) + +[fips2813393555] +centroid = (0.59088127062255791, -1.58063364823096) +description = District 5, MS +station = ('kckm', 0.0078052720036500016) +zone = ('msz019', 0.0044254780589608632) + +[fips28135] +centroid = (0.59264209839830984, -1.5738128317009958) +description = Tallahatchie County, MS +station = ('kckm', 0.0077329809714241568) +zone = ('msz020', 9.4240595988515733e-05) + +[fips2813580] +centroid = (0.56422110449895668, -1.5521243057648706) +description = Chunky town, MS +station = ('kmei', 0.0026590710875118401) +zone = ('msz051', 0.0030566848010837953) + +[fips2813590612] +centroid = (0.5949765984458999, -1.5710483697921771) +description = District 1, MS +station = ('kuox', 0.0086149776353883246) +zone = ('msz020', 0.0033425235444852087) + +[fips2813591350] +centroid = (0.59372523227880503, -1.5745897126576436) +description = District 2, MS +station = ('kckm', 0.0064882302049886409) +zone = ('msz020', 0.001339408375045493) + +[fips2813592088] +centroid = (0.59179833642472579, -1.5713531042795754) +description = District 3, MS +station = ('kgwo', 0.0071521306931714252) +zone = ('msz020', 0.0021792284083368045) + +[fips2813592826] +centroid = (0.59070143189643232, -1.5754658330355598) +description = District 4, MS +station = ('kgwo', 0.0065842908716798746) +zone = ('msz020', 0.002297346491424187) + +[fips2813593564] +centroid = (0.59294397054573489, -1.5773031760457192) +description = District 5, MS +station = ('kckm', 0.0060384324031128303) +zone = ('msz020', 0.0029166157623996538) + +[fips28137] +centroid = (0.60474878419427869, -1.5698033217169745) +description = Tate County, MS +station = ('kolv', 0.006168191100044098) +zone = ('msz008', 2.7608751466023882e-05) + +[fips2813700] +centroid = (0.55122960658539666, -1.5479606133947279) +description = Clara CDP, MS +station = ('kpib', 0.0097611541416831159) +zone = ('msz067', 0.0010084562409666755) + +[fips2813790621] +centroid = (0.60394881253162713, -1.5722235872440076) +description = District 1, MS +station = ('kuta', 0.0040309436618505001) +zone = ('msz008', 0.0021285974008554893) + +[fips2813791359] +centroid = (0.6054423256791438, -1.5727691946214735) +description = District 2, MS +station = ('kuta', 0.0033522488392534228) +zone = ('msz008', 0.0025089816925856117) + +[fips2813792097] +centroid = (0.60596873443483779, -1.5696945353446976) +description = District 3, MS +station = ('kolv', 0.0050114554631404042) +zone = ('msz008', 0.0012122640486381252) + +[fips2813792835] +centroid = (0.60398696542907582, -1.5677462766605739) +description = District 4, MS +station = ('kuox', 0.0056836620827349716) +zone = ('msz008', 0.0018837422998891861) + +[fips2813793573] +centroid = (0.60532755282753259, -1.5669405628646833) +description = District 5, MS +station = ('kolv', 0.0051704543846336779) +zone = ('msz008', 0.0024452278052721726) + +[fips2813820] +centroid = (0.59685748742089662, -1.5808021248636548) +description = Clarksdale city, MS +station = ('kckm', 0.0020098290167895969) +zone = ('msz010', 0.0006985194377806869) + +[fips28139] +centroid = (0.6067395940055661, -1.5519261585348918) +description = Tippah County, MS +station = ('kcrx', 0.0053203580926793944) +zone = ('msz004', 0.00016489704308664211) + +[fips2813990630] +centroid = (0.60973583563904987, -1.5519425820831529) +description = District 1, MS +station = ('kcrx', 0.0045833889697635697) +zone = ('msz004', 0.0029169301410464595) + +[fips2813991368] +centroid = (0.60725554823904071, -1.5529202806235354) +description = District 2, MS +station = ('kcrx', 0.0058192444713235552) +zone = ('msz004', 0.001051741591208793) + +[fips2813992106] +centroid = (0.60455281862586485, -1.5532710394433085) +description = District 3, MS +station = ('ktup', 0.0072772522589196129) +zone = ('msz014', 0.0025825460188857565) + +[fips2813992844] +centroid = (0.6048207441193385, -1.5502436262293842) +description = District 4, MS +station = ('kcrx', 0.0056365065717623513) +zone = ('msz004', 0.0023555909034675385) + +[fips2813993582] +centroid = (0.60725951013644275, -1.5503369664377809) +description = District 5, MS +station = ('kcrx', 0.0039398643945372782) +zone = ('msz004', 0.0012422717788028851) + +[fips28141] +centroid = (0.60628722211674169, -1.5400098881603155) +description = Tishomingo County, MS +station = ('kcrx', 0.0061081080250451952) +zone = ('msz006', 6.612391582209335e-05) + +[fips2814140] +centroid = (0.56137318094530742, -1.573972075541948) +description = Cleary CDP, MS +station = ('khks', 0.0029941054871926161) +zone = ('msz049', 0.0038992528295654239) + +[fips2814190639] +centroid = (0.60881150926719363, -1.5390749501866072) +description = District 1, MS +station = ('kcrx', 0.0060122229555677762) +zone = ('msz006', 0.002607442893145206) + +[fips2814191377] +centroid = (0.60876778876943105, -1.5412778000487193) +description = District 2, MS +station = ('kcrx', 0.004228134061329397) +zone = ('msz006', 0.0026288708922387405) + +[fips2814192115] +centroid = (0.60663614834080037, -1.5394308053677963) +description = District 3, MS +station = ('kcrx', 0.0063549444052501212) +zone = ('msz006', 0.0006031052334692094) + +[fips2814192853] +centroid = (0.60472656615290088, -1.540174350535731) +description = District 4, MS +station = ('kcrx', 0.0069508459768616868) +zone = ('msz006', 0.0016102491842099949) + +[fips2814193591] +centroid = (0.60223653981566561, -1.5408126174431853) +description = District 5, MS +station = ('ktup', 0.0081309005460018617) +zone = ('msz017', 0.0040997149266031032) + +[fips2814260] +centroid = (0.58892852644225646, -1.5835199864814455) +description = Cleveland city, MS +station = ('kglh', 0.0058500151604837965) +zone = ('msz018', 0.0023790970980002908) + +[fips28143] +centroid = (0.60479500051287149, -1.5772849373550359) +description = Tunica County, MS +station = ('kuta', 0.0006184456762682439) +zone = ('msz007', 5.3667965149307791e-05) + +[fips2814390648] +centroid = (0.60753862319042162, -1.5768596180696175) +description = District 1, MS +station = ('kuta', 0.002243941134061686) +zone = ('msz007', 0.0027765398669794489) + +[fips2814391386] +centroid = (0.60617834847800234, -1.5757316990405161) +description = District 2, MS +station = ('kuta', 0.0012703712784819872) +zone = ('msz007', 0.0019219713572605072) + +[fips2814392124] +centroid = (0.60459442727523238, -1.5765390185393184) +description = District 3, MS +station = ('kuta', 0.00074331032364902008) +zone = ('msz007', 0.00069570088755615384) + +[fips2814392862] +centroid = (0.60580102574701367, -1.5781913741020592) +description = District 4, MS +station = ('kuta', 0.001219542408820359) +zone = ('msz007', 0.0012238570456886133) + +[fips2814393600] +centroid = (0.60313463388886435, -1.5778847197524839) +description = District 5, MS +station = ('kuta', 0.0023243105659800736) +zone = ('msz007', 0.0017143106078886694) + +[fips2814420] +centroid = (0.56469119147968883, -1.5767689133083911) +description = Clinton city, MS +station = ('kjvw', 0.0013324134258694341) +zone = ('msz048', 0.0021311027996166565) + +[fips28145] +centroid = (0.60194836850286881, -1.5533831768477493) +description = Union County, MS +station = ('ktup', 0.0051567809672615622) +zone = ('msz014', 3.2585531402250566e-05) + +[fips2814540] +centroid = (0.54970757475790255, -1.5954961216493653) +description = Cloverdale CDP, MS +station = ('khez', 0.0027158881361763827) +zone = ('msz060', 0.00095045572098778565) + +[fips2814580] +centroid = (0.59980496455507959, -1.5799072771028648) +description = Coahoma town, MS +station = ('kckm', 0.0011699261800985216) +zone = ('msz010', 0.0026605255723373307) + +[fips2814590657] +centroid = (0.6029288246634692, -1.5556968551173629) +description = District 1, MS +station = ('kuox', 0.0064128492898491091) +zone = ('msz014', 0.0021133894896135097) + +[fips2814591395] +centroid = (0.601251912318153, -1.5558218905049757) +description = District 2, MS +station = ('kuox', 0.005777635958754225) +zone = ('msz014', 0.002115557511936505) + +[fips2814592133] +centroid = (0.60292922608919708, -1.5534151687329381) +description = District 3, MS +station = ('ktup', 0.0059449415572197396) +zone = ('msz014', 0.00095645241834756633) + +[fips2814592871] +centroid = (0.60112214708826717, -1.5510361802427148) +description = District 4, MS +station = ('ktup', 0.0033858045757930106) +zone = ('msz014', 0.0021335027269242606) + +[fips2814593609] +centroid = (0.60287669167871216, -1.5506098486663302) +description = District 5, MS +station = ('ktup', 0.0049358083976515201) +zone = ('msz014', 0.0024774749073805721) + +[fips28147] +centroid = (0.54392299511143261, -1.5726015382935268) +description = Walthall County, MS +station = ('kmcb', 0.0054341683499188548) +zone = ('msz071', 0.00028194539166265513) + +[fips2814740] +centroid = (0.5930016885840983, -1.5652894988455892) +description = Coffeeville town, MS +station = ('kuox', 0.0074376897164653635) +zone = ('msz021', 0.00096243693077348899) + +[fips2814790666] +centroid = (0.54212075067253085, -1.573858751313616) +description = District 1, MS +station = ('kmcb', 0.0048447828964970985) +zone = ('msz071', 0.0018423912255855429) + +[fips2814791404] +centroid = (0.5435861814723828, -1.5718364732159151) +description = District 2, MS +station = ('kmcb', 0.0061157511953469513) +zone = ('msz071', 0.00069703669679820664) + +[fips2814792142] +centroid = (0.54194937679327748, -1.5704022838096738) +description = District 3, MS +station = ('kmcb', 0.0076642665778115836) +zone = ('msz071', 0.0025630877712786663) + +[fips2814792880] +centroid = (0.5456440817401168, -1.5729211080795671) +description = District 4, MS +station = ('kmcb', 0.0053330376088023129) +zone = ('msz071', 0.0020137814743072017) + +[fips2814793618] +centroid = (0.54525686299226939, -1.5743848110034597) +description = District 5, MS +station = ('kmcb', 0.0040243830816053218) +zone = ('msz071', 0.0021928681453748807) + +[fips28149] +centroid = (0.56473627333426779, -1.5856628842837517) +description = Warren County, MS +station = ('ktvr', 0.0026321598689341098) +zone = ('msz047', 8.2632817113099941e-06) + +[fips2814900] +centroid = (0.60546127995482046, -1.5703690178341307) +description = Coldwater town, MS +station = ('kolv', 0.0057143676955592818) +zone = ('msz008', 0.00082683252219076253) + +[fips2814990675] +centroid = (0.5659512319331661, -1.5829104476934788) +description = District 1, MS +station = ('kjvw', 0.0046924335024446191) +zone = ('msz047', 0.0026234229934597466) + +[fips2814991413] +centroid = (0.5680752452729656, -1.5843822489451009) +description = District 2, MS +station = ('ktvr', 0.0050937648671667852) +zone = ('msz047', 0.0035043381105286345) + +[fips2814992151] +centroid = (0.5643858810336374, -1.5859282790498099) +description = District 3, MS +station = ('ktvr', 0.0024114221720940325) +zone = ('msz047', 0.00041940658829349713) + +[fips2814992889] +centroid = (0.56145447838186524, -1.5878841648227648) +description = District 4, MS +station = ('ktvr', 0.0032147477424981832) +zone = ('msz053', 0.0035503492275797926) + +[fips2814993627] +centroid = (0.5630246463901295, -1.5845529246926533) +description = District 5, MS +station = ('ktvr', 0.0038914858667084165) +zone = ('msz047', 0.0019600917316828594) + +[fips28151] +centroid = (0.58072568839739336, -1.5872797398495067) +description = Washington County, MS +station = ('kglh', 0.0037122784260625466) +zone = ('msz034', 0.00018778726320830893) + +[fips2815140] +centroid = (0.55236654896673076, -1.5632492089500079) +description = Collins city, MS +station = ('kpib', 0.0047099108538885487) +zone = ('msz065', 0.00034461078908747822) + +[fips2815180] +centroid = (0.56705384368811351, -1.5506307402574764) +description = Collinsville CDP, MS +station = ('kmei', 0.0030658748886323935) +zone = ('msz052', 0.0030678711448409719) + +[fips2815190684] +centroid = (0.57838853544934021, -1.589009500764573) +description = District 1, MS +station = ('kglh', 0.0060697319640779877) +zone = ('msz034', 0.0028845327040314312) + +[fips2815191422] +centroid = (0.58072568839739336, -1.5872797398495067) +description = District 2, MS +station = ('kglh', 0.0037122784260625466) +zone = ('msz034', 0.00018778726320830893) + +[fips2815192160] +centroid = (0.58397652120886545, -1.5897203559156179) +description = District 3, MS +station = ('kglh', 0.0015277442763705906) +zone = ('msz034', 0.0036596488896674783) + +[fips2815192898] +centroid = (0.58379425647507965, -1.5859972893684338) +description = District 4, MS +station = ('kglh', 0.0017428497700568998) +zone = ('msz034', 0.0030935288507378494) + +[fips2815193636] +centroid = (0.57960504739127283, -1.5851579081712721) +description = District 5, MS +station = ('kglh', 0.0053303116222707348) +zone = ('msz034', 0.0022368403508711216) + +[fips28153] +centroid = (0.55230525300340083, -1.5477938820912849) +description = Wayne County, MS +station = ('kpib', 0.01017260564384077) +zone = ('msz067', 0.00021558125517843365) + +[fips2815340] +centroid = (0.5455421719650928, -1.5677592270036236) +description = Columbia city, MS +station = ('kpib', 0.0082014953303982847) +zone = ('msz072', 0.00046497495033360754) + +[fips2815380] +centroid = (0.5848242974397293, -1.5431075857832175) +description = Columbus city, MS +station = ('kcbm', 0.0025350149195792998) +zone = ('msz031', 0.00074967515405783311) + +[fips2815390693] +centroid = (0.54980590660795992, -1.545683080893923) +description = District 1, MS +station = ('kpib', 0.011509692791380569) +zone = ('msz067', 0.0031491256575336239) + +[fips2815391431] +centroid = (0.55299287782210149, -1.5452122085150275) +description = District 2, MS +station = ('kmei', 0.011772021217543201) +zone = ('msz067', 0.0025179671508680202) + +[fips2815392169] +centroid = (0.55482838823654645, -1.5472571409864191) +description = District 3, MS +station = ('kmei', 0.009606306957908553) +zone = ('msz067', 0.0026751071553327071) + +[fips2815392907] +centroid = (0.55373743528100228, -1.5506716333218509) +description = District 4, MS +station = ('kpib', 0.0085380859005167002) +zone = ('msz067', 0.0027005074874500048) + +[fips2815393645] +centroid = (0.55061036376678907, -1.5498699337832398) +description = District 5, MS +station = ('kpib', 0.0080462642341364889) +zone = ('msz067', 0.0022559546604506405) + +[fips2815420] +centroid = (0.58691003570903255, -1.5436645901606989) +description = Columbus AFB CDP, MS +station = ('kcbm', 0.00039873798960344951) +zone = ('msz031', 0.002697904484570429) + +[fips28155] +centroid = (0.58664090593837503, -1.5582969070106438) +description = Webster County, MS +station = ('kstf', 0.0071973363716202419) +zone = ('msz029', 2.3096597963761416e-05) + +[fips2815500] +centroid = (0.60237527603790675, -1.5697482042191966) +description = Como town, MS +station = ('kuox', 0.0062412368283128721) +zone = ('msz008', 0.0023875643920682082) + +[fips2815540] +centroid = (0.56655745459555384, -1.5580910105187862) +description = Conehatta CDP, MS +station = ('kmei', 0.0080110317299668388) +zone = ('msz051', 0.0024969943064090268) + +[fips2815590702] +centroid = (0.58633154632845907, -1.5600936885689871) +description = District 1, MS +station = ('kstf', 0.0084578836992691749) +zone = ('msz029', 0.0015182905685028486) + +[fips2815591440] +centroid = (0.58756193363794496, -1.5608996292576807) +description = District 2, MS +station = ('kstf', 0.0095494083009778925) +zone = ('msz029', 0.0023344544540134593) + +[fips2815592178] +centroid = (0.58463374239199639, -1.5600455174816319) +description = District 3, MS +station = ('kstf', 0.008007046755358278) +zone = ('msz029', 0.0024870766638804727) + +[fips2815592916] +centroid = (0.58587339739981048, -1.555562761470932) +description = District 4, MS +station = ('kstf', 0.0048246331452857921) +zone = ('msz029', 0.0024225982613592582) + +[fips2815593654] +centroid = (0.58764940954005496, -1.5554904699333147) +description = District 5, MS +station = ('kstf', 0.0058711823136110225) +zone = ('msz029', 0.0025504649823664921) + +[fips28157] +centroid = (0.54384894079127055, -1.5939318354006804) +description = Wilkinson County, MS +station = ('khez', 0.0079750934719146436) +zone = ('msz068', 0.00021944539093315501) + +[fips2815700] +centroid = (0.6099546301140798, -1.5448542763920285) +description = Corinth city, MS +station = ('kcrx', 0.001327822042015464) +zone = ('msz005', 0.0015096131579931005) + +[fips2815790711] +centroid = (0.54175519146070061, -1.5922898470936966) +description = District 1, MS +station = ('khzr', 0.0067297101552009275) +zone = ('msz068', 0.002418116695492955) + +[fips2815791449] +centroid = (0.54280622873625162, -1.5970631655182685) +description = District 2, MS +station = ('khzr', 0.0066822818326018572) +zone = ('msz068', 0.0030857581581640401) + +[fips2815792187] +centroid = (0.54349797253198695, -1.5911019410982041) +description = District 3, MS +station = ('khez', 0.0085623116789778804) +zone = ('msz068', 0.0022326617864376385) + +[fips2815792925] +centroid = (0.54534992394798565, -1.5943883262665393) +description = District 4, MS +station = ('khez', 0.0065107311842263881) +zone = ('msz068', 0.0016078397511522756) + +[fips2815793663] +centroid = (0.54547234134172051, -1.5914136569026103) +description = District 5, MS +station = ('khez', 0.0065843560944313243) +zone = ('msz068', 0.0025172787229288977) + +[fips28159] +centroid = (0.5773326461584688, -1.5539956303355664) +description = Winston County, MS +station = ('knmm', 0.0032124981676752195) +zone = ('msz038', 0.00017614050339009914) + +[fips2815980] +centroid = (0.59761614714015354, -1.5698063411365806) +description = Courtland town, MS +station = ('kuox', 0.0063894855957617796) +zone = ('msz012', 0.0021495750527961888) + +[fips2815990720] +centroid = (0.57957001863318536, -1.5541430932040674) +description = District 1, MS +station = ('kstf', 0.0049165184229171136) +zone = ('msz038', 0.0020734990997386855) + +[fips2815991458] +centroid = (0.5763501654159362, -1.5520653485427383) +description = District 2, MS +station = ('knmm', 0.0018484350696645168) +zone = ('msz038', 0.0019512649214782976) + +[fips2815992196] +centroid = (0.57908689404294078, -1.5516765939051491) +description = District 3, MS +station = ('kstf', 0.0044767205881659274) +zone = ('msz038', 0.0024720776036294295) + +[fips2815992934] +centroid = (0.57768923437794384, -1.5564973503787902) +description = District 4, MS +station = ('knmm', 0.004822403691417434) +zone = ('msz038', 0.0021476853788603566) + +[fips2815993672] +centroid = (0.57575629968465247, -1.5558570937959886) +description = District 5, MS +station = ('knmm', 0.0033302984326084224) +zone = ('msz038', 0.002371808214600017) + +[fips28161] +centroid = (0.5939472207063663, -1.5656265393774418) +description = Yalobusha County, MS +station = ('kuox', 0.0066348922922996167) +zone = ('msz021', 6.9922852236412489e-05) + +[fips2816190729] +centroid = (0.59349701302581426, -1.5636497096534629) +description = District 1, MS +station = ('kuox', 0.0066721190457597734) +zone = ('msz021', 0.0017418656936085319) + +[fips2816191467] +centroid = (0.59536814561029239, -1.5633619048598091) +description = District 2, MS +station = ('kuox', 0.0047859339078566588) +zone = ('msz021', 0.0024232068119069243) + +[fips2816192205] +centroid = (0.59583112910096891, -1.5656650937006182) +description = District 3, MS +station = ('kuox', 0.0049451476683086719) +zone = ('msz021', 0.0019271390180534279) + +[fips2816192943] +centroid = (0.59439207022611451, -1.567978265824749) +description = District 4, MS +station = ('kuox', 0.0072075405149873142) +zone = ('msz021', 0.0019554976297218802) + +[fips2816193681] +centroid = (0.59226767291387949, -1.5657007682305291) +description = District 5, MS +station = ('kuox', 0.0082396917455441771) +zone = ('msz021', 0.0016364683432728594) + +[fips28163] +centroid = (0.57186891038839305, -1.5775669476555731) +description = Yazoo County, MS +station = ('khks', 0.0079553158136486495) +zone = ('msz042', 0.0002861350005253761) + +[fips2816390738] +centroid = (0.57022547345813013, -1.5783495009322899) +description = District 1, MS +station = ('kjvw', 0.006414429962399759) +zone = ('msz042', 0.0019736230180138498) + +[fips2816391476] +centroid = (0.57271138081833062, -1.5738893992952809) +description = District 2, MS +station = ('khks', 0.008408295915133179) +zone = ('msz042', 0.0032699232066534141) + +[fips2816392214] +centroid = (0.57297185375589832, -1.5781327833990697) +description = District 3, MS +station = ('khks', 0.0091527727665281847) +zone = ('msz042', 0.00091543100021931488) + +[fips2816392952] +centroid = (0.5748049032560979, -1.5755729613450471) +description = District 4, MS +station = ('kgwo', 0.010263863573812549) +zone = ('msz042', 0.0032279147692636798) + +[fips2816393690] +centroid = (0.57256266131276834, -1.5808869478653016) +description = District 5, MS +station = ('kjvw', 0.0090843303348139646) +zone = ('msz042', 0.0027006858821358492) + +[fips2816420] +centroid = (0.58123513255275805, -1.5468027270623701) +description = Crawford town, MS +station = ('kgtr', 0.0026489756205267563) +zone = ('msz039', 0.0034512730575501915) + +[fips2816460] +centroid = (0.60221994173447913, -1.5741933832911008) +description = Crenshaw town, MS +station = ('kuta', 0.0037693663586141108) +zone = ('msz007', 0.0036562064609403518) + +[fips2816620] +centroid = (0.54583872085829921, -1.5893227175521361) +description = Crosby town, MS +station = ('khez', 0.0069518541763370781) +zone = ('msz061', 0.004300610704579288) + +[fips2816940] +centroid = (0.59642977703440292, -1.5731994357353825) +description = Crowder town, MS +station = ('kckm', 0.0058120258808558693) +zone = ('msz011', 0.0025792423475008031) + +[fips2816980] +centroid = (0.58159603173548535, -1.5749069611557787) +description = Cruger town, MS +station = ('kgwo', 0.0038025841715371577) +zone = ('msz036', 0.0040630674731232819) + +[fips2817060] +centroid = (0.55833353297332666, -1.5769924201724015) +description = Crystal Springs city, MS +station = ('kjvw', 0.0055468763373124983) +zone = ('msz054', 0.0025271841180642541) + +[fips2817700] +centroid = (0.59967992916746682, -1.5756031206345216) +description = Darling CDP, MS +station = ('kckm', 0.0035351582082700558) +zone = ('msz011', 0.0018905581716392277) + +[fips2818180] +centroid = (0.56607942636672515, -1.5552844861749944) +description = Decatur town, MS +station = ('kmei', 0.0056064528355721293) +zone = ('msz051', 0.00059970126799491078) + +[fips2818340] +centroid = (0.57199858835181627, -1.5473408120707597) +description = De Kalb town, MS +station = ('knmm', 0.0047753243025400434) +zone = ('msz046', 0.00039002624631546983) + +[fips2818420] +centroid = (0.53027282739146253, -1.5581527951743066) +description = DeLisle CDP, MS +station = ('kgpt', 0.0029551911874140793) +zone = ('msz080', 0.0032627134291878025) + +[fips2818940] +centroid = (0.590948849771195, -1.5583653937304922) +description = Derma town, MS +station = ('kuox', 0.0098468711460065906) +zone = ('msz022', 0.001525551292607545) + +[fips2819100] +centroid = (0.53027766195349058, -1.5597854285164998) +description = Diamondhead CDP, MS +station = ('khsa', 0.0013148797478228981) +zone = ('msz080', 0.0018939077719631911) + +[fips2819180] +centroid = (0.53154843618186765, -1.5515671443077568) +description = D'Iberville city, MS +station = ('kbix', 0.00073195545519085165) +zone = ('msz081', 0.0034663999745368867) + +[fips2819340] +centroid = (0.55827701921214701, -1.569070632496987) +description = D'Lo town, MS +station = ('kjan', 0.0063664286882610423) +zone = ('msz055', 0.0013150666985505093) + +[fips2819420] +centroid = (0.58747545257350864, -1.5798971541932034) +description = Doddsville town, MS +station = ('kglh', 0.0073897896126833857) +zone = ('msz019', 0.0014017004119867172) + +[fips2820020] +centroid = (0.59009672767049381, -1.5800535182408895) +description = Drew city, MS +station = ('kgwo', 0.0084538347572711732) +zone = ('msz019', 0.0037234563313816877) + +[fips2820260] +centroid = (0.58698300792505842, -1.5658290499305507) +description = Duck Hill town, MS +station = ('kgwo', 0.0058233648967800028) +zone = ('msz026', 0.0027224996994378971) + +[fips2820340] +centroid = (0.60454821095663958, -1.5506044555989416) +description = Dumas town, MS +station = ('kcrx', 0.0060297373096154438) +zone = ('msz004', 0.002463037284743454) + +[fips2820380] +centroid = (0.59414166783833089, -1.5838146678723521) +description = Duncan town, MS +station = ('kckm', 0.0056488878642772956) +zone = ('msz010', 0.0038698791845882142) + +[fips2820500] +centroid = (0.57738891557355299, -1.5683063528175389) +description = Durant city, MS +station = ('kgwo', 0.0080067503605272382) +zone = ('msz037', 0.0040314877487573134) + +[fips2821340] +centroid = (0.59959559485801039, -1.5537468161974022) +description = Ecru town, MS +station = ('ktup', 0.0040011800780241765) +zone = ('msz015', 0.0022590615472609281) + +[fips2821420] +centroid = (0.57567433902297893, -1.5764504430797797) +description = Eden village, MS +station = ('kgwo', 0.009671327152179764) +zone = ('msz042', 0.0037043066819185998) + +[fips2821580] +centroid = (0.56431053516982876, -1.5813653426132734) +description = Edwards town, MS +station = ('kjvw', 0.0029182677726270648) +zone = ('msz048', 0.0026638219910528819) + +[fips2821940] +centroid = (0.58802331142570963, -1.5664758165914623) +description = Elliott CDP, MS +station = ('kgwo', 0.0058550376869775499) +zone = ('msz026', 0.0015511723091816503) + +[fips2822020] +centroid = (0.55148983517686911, -1.5570023613978548) +description = Ellisville city, MS +station = ('kpib', 0.0029397264573895977) +zone = ('msz066', 0.00074341826808901163) + +[fips2822580] +centroid = (0.56151678663616156, -1.5501284519520451) +description = Enterprise town, MS +station = ('kmei', 0.0029697351077369277) +zone = ('msz058', 0.0029549739560729995) + +[fips2822900] +centroid = (0.53216174488101842, -1.545385502256458) +description = Escatawpa CDP, MS +station = ('kpql', 0.00044818926581677618) +zone = ('msz082', 0.0016888850300129676) + +[fips2823220] +centroid = (0.57808949073530358, -1.561459216722455) +description = Ethel town, MS +station = ('knmm', 0.0085671953354171191) +zone = ('msz037', 0.0018166073271665688) + +[fips2823420] +centroid = (0.58547186695209674, -1.5581234910961657) +description = Eupora city, MS +station = ('kstf', 0.0066275129990743392) +zone = ('msz029', 0.0011979310398453392) + +[fips2824180] +centroid = (0.60023857415444515, -1.5752580515881098) +description = Falcon town, MS +station = ('kckm', 0.0039956897679688155) +zone = ('msz011', 0.002486109329213559) + +[fips2824220] +centroid = (0.6080476833733508, -1.5523470621373028) +description = Falkner town, MS +station = ('kcrx', 0.0051116934330312537) +zone = ('msz004', 0.0013181894915980123) + +[fips2824420] +centroid = (0.60951405665099889, -1.5436767725588778) +description = Farmington town, MS +station = ('kcrx', 0.0022019527566946133) +zone = ('msz005', 0.0020538553683419111) + +[fips2824460] +centroid = (0.59797959450358884, -1.5825780148308515) +description = Farrell CDP, MS +station = ('kckm', 0.0024721799656795295) +zone = ('msz010', 0.0011879388373709884) + +[fips2824500] +centroid = (0.5534824077707009, -1.5893327881019201) +description = Fayette city, MS +station = ('khez', 0.0039081954324071567) +zone = ('msz059', 0.00053354707145712938) + +[fips2824940] +centroid = (0.56800091170012323, -1.5762716864577906) +description = Flora town, MS +station = ('khks', 0.0039458382500868819) +zone = ('msz042', 0.004300605620512858) + +[fips2824980] +centroid = (0.56121875421309086, -1.5729352103399232) +description = Florence town, MS +station = ('kjan', 0.0029429402853418381) +zone = ('msz049', 0.0032272623614694068) + +[fips2825100] +centroid = (0.56436561776102179, -1.5720612367169871) +description = Flowood city, MS +station = ('kjan', 0.00028969514402411465) +zone = ('msz049', 0.0022499849552289545) + +[fips2825340] +centroid = (0.56478573596526938, -1.5616491958115346) +description = Forest city, MS +station = ('kjan', 0.0088987258864735765) +zone = ('msz050', 0.001219500590964571) + +[fips2825740] +centroid = (0.5452155859554596, -1.5687513245103348) +description = Foxworth CDP, MS +station = ('kpib', 0.0091065409469286481) +zone = ('msz072', 0.0009119166455969905) + +[fips2826020] +centroid = (0.58106084397365376, -1.5603117849123163) +description = French Camp town, MS +station = ('kstf', 0.0084994914380160502) +zone = ('msz032', 0.0024005039667073682) + +[fips2826060] +centroid = (0.59981271381695855, -1.5819135330780323) +description = Friars Point town, MS +station = ('kckm', 0.0021691820407190826) +zone = ('msz010', 0.0024507987393595164) + +[fips2826300] +centroid = (0.59800006721571475, -1.5429047087109657) +description = Fulton city, MS +station = ('ktup', 0.0052614682633271136) +zone = ('msz017', 0.00065776375902422109) + +[fips2826780] +centroid = (0.59140216413781554, -1.5400187369796232) +description = Gattman village, MS +station = ('km40', 0.0036724190386985263) +zone = ('alz012', 0.0027387178289421479) + +[fips2826860] +centroid = (0.53068854736599513, -1.5473974305516944) +description = Gautier city, MS +station = ('kpql', 0.0021699684850926214) +zone = ('msz082', 0.0024663749803194579) + +[fips2826980] +centroid = (0.55623742744826643, -1.5736722803363328) +description = Georgetown town, MS +station = ('k1r7', 0.0060471686179541274) +zone = ('msz055', 0.0037119062630633351) + +[fips2827540] +centroid = (0.60839071038453785, -1.5431776432993924) +description = Glen town, MS +station = ('kcrx', 0.0028255964833603883) +zone = ('msz005', 0.0023633850839498848) + +[fips2827620] +centroid = (0.54747524628472422, -1.5587297137585534) +description = Glendale CDP, MS +station = ('kpib', 0.0017605570969282541) +zone = ('msz074', 0.0032165438282366139) + +[fips2827660] +centroid = (0.59040378344579714, -1.575904835702314) +description = Glendora village, MS +station = ('kgwo', 0.0064769191212823681) +zone = ('msz020', 0.002755916293228342) + +[fips2827820] +centroid = (0.54445661207693741, -1.5885581760733001) +description = Gloster town, MS +station = ('kmcb', 0.0082294989819057893) +zone = ('msz069', 0.0032034164955965583) + +[fips2827940] +centroid = (0.60190546830985481, -1.5391416043107409) +description = Golden town, MS +station = ('kcrx', 0.0096145262941157959) +zone = ('msz017', 0.0044000012159262627) + +[fips2828220] +centroid = (0.57540206765966784, -1.5692715024405992) +description = Goodman town, MS +station = ('kgwo', 0.0096118789744996259) +zone = ('msz036', 0.0037747805319818047) + +[fips2829180] +centroid = (0.58265131016111871, -1.5891626708597282) +description = Greenville city, MS +station = ('kglh', 0.0020119301728462997) +zone = ('msz034', 0.0023190866769112069) + +[fips2829340] +centroid = (0.58490276744289882, -1.5742688862345422) +description = Greenwood city, MS +station = ('kgwo', 0.0016967529346487093) +zone = ('msz025', 0.0016262129451541103) + +[fips2829460] +centroid = (0.58959747623796088, -1.5675080741242617) +description = Grenada city, MS +station = ('kgwo', 0.0063023369035535882) +zone = ('msz026', 0.00024351555097580152) + +[fips2829620] +centroid = (0.53106651586880693, -1.5500579406502646) +description = Gulf Hills CDP, MS +station = ('kbix', 0.0015906666204554222) +zone = ('msz082', 0.0033525364356772687) + +[fips2829660] +centroid = (0.53021935050318147, -1.5491175921558751) +description = Gulf Park Estates CDP, MS +station = ('kbix', 0.002477313172776773) +zone = ('msz082', 0.0034394092722959831) + +[fips2829700] +centroid = (0.53086035757756145, -1.5545969660760486) +description = Gulfport city, MS +station = ('kgpt', 0.00017323900203326738) +zone = ('msz081', 0.0018591143973791899) + +[fips2829900] +centroid = (0.59241909767978262, -1.5873183814391458) +description = Gunnison town, MS +station = ('kglh', 0.008042345153195905) +zone = ('msz018', 0.0027493911941337814) + +[fips2829940] +centroid = (0.60118136610978745, -1.5474761623542519) +description = Guntown town, MS +station = ('ktup', 0.0034495001147000505) +zone = ('msz016', 0.0027201765762500927) + +[fips2830220] +centroid = (0.58899252766592713, -1.5430066708458672) +description = Hamilton CDP, MS +station = ('kcbm', 0.0017970902508483481) +zone = ('msz024', 0.0027493954902370198) + +[fips2830980] +centroid = (0.5930161224570123, -1.5431920597190141) +description = Hatley town, MS +station = ('km40', 0.0020816046093872619) +zone = ('msz024', 0.001734412919160284) + +[fips2831020] +centroid = (0.54641539509645065, -1.5588829187602937) +description = Hattiesburg city, MS +station = ('khbg', 0.0012303653537840721) +zone = ('msz074', 0.0022491218203367584) + +[fips2831220] +centroid = (0.55612923448793539, -1.5776518579236827) +description = Hazlehurst city, MS +station = ('k1r7', 0.0046228663408207134) +zone = ('msz054', 0.00083539613447302882) + +[fips2831420] +centroid = (0.55658471306282831, -1.5531273290326992) +description = Heidelberg town, MS +station = ('kmei', 0.0084985103777278238) +zone = ('msz057', 0.0029753951138994177) + +[fips2831460] +centroid = (0.53211730879826269, -1.5447135504944403) +description = Helena CDP, MS +station = ('kpql', 0.00056041027059110129) +zone = ('msz082', 0.0022085188584277074) + +[fips2831540] +centroid = (0.52907839386456779, -1.5583375557289227) +description = Henderson Point CDP, MS +station = ('khsa', 0.0027071302777707889) +zone = ('msz080', 0.0035354101461352741) + +[fips2831780] +centroid = (0.60823977431082532, -1.570663245439432) +description = Hernando city, MS +station = ('kmem', 0.0032098480345167683) +zone = ('msz001', 0.00045085884313435736) + +[fips2831980] +centroid = (0.56403288819242159, -1.5537223815878745) +description = Hickory town, MS +station = ('kmei', 0.004018185935269477) +zone = ('msz051', 0.0020424327257302162) + +[fips2832020] +centroid = (0.60416188232671064, -1.5566833850237602) +description = Hickory Flat town, MS +station = ('kuox', 0.0063897464529356265) +zone = ('msz014', 0.0034732100164535807) + +[fips2832110] +centroid = (0.53369271279428288, -1.564493401813877) +description = Hide-A-Way Lake CDP, MS +station = ('khsa', 0.0046020232549864332) +zone = ('msz077', 0.0034013782916051498) + +[fips2832460] +centroid = (0.56637152467033891, -1.5618335200338376) +description = Hillsboro CDP, MS +station = ('kjan', 0.009005971501625) +zone = ('msz050', 0.0010794120548047292) + +[fips2832820] +centroid = (0.58929665128808717, -1.5703282469428042) +description = Holcomb CDP, MS +station = ('kgwo', 0.0048812738528434549) +zone = ('msz026', 0.0024857168695615237) + +[fips2832900] +centroid = (0.57903226523735341, -1.585682205078571) +description = Hollandale city, MS +station = ('kglh', 0.0056895105491750518) +zone = ('msz034', 0.0023288149775513608) + +[fips2833100] +centroid = (0.60699067707175802, -1.5611295065734607) +description = Holly Springs city, MS +station = ('kolv', 0.0060087445820690751) +zone = ('msz002', 0.00086150979763948397) + +[fips2833700] +centroid = (0.61002889387375214, -1.5716551858665107) +description = Horn Lake city, MS +station = ('kmem', 0.0017024232661778805) +zone = ('msz001', 0.0015704225326477342) + +[fips2833900] +centroid = (0.59160006702169909, -1.553403946265848) +description = Houston city, MS +station = ('ktup', 0.0073164174906434638) +zone = ('msz023', 0.00091264373270886177) + +[fips2834340] +centroid = (0.53516533435065305, -1.5445935067484879) +description = Hurley CDP, MS +station = ('kpql', 0.003461072736145408) +zone = ('msz082', 0.002898867858269752) + +[fips2834740] +centroid = (0.58379453572776008, -1.5820325645330184) +description = Indianola city, MS +station = ('kglh', 0.0049799376196005933) +zone = ('msz019', 0.0027936870223220422) + +[fips2835020] +centroid = (0.58214111551417569, -1.581114573706347) +description = Inverness town, MS +station = ('kglh', 0.0061409291936679765) +zone = ('msz035', 0.0040479153707003212) + +[fips2835220] +centroid = (0.58055592022105196, -1.5811346449927448) +description = Isola town, MS +station = ('kglh', 0.0068709841221240358) +zone = ('msz035', 0.0025400875119259724) + +[fips2835260] +centroid = (0.58470360792195386, -1.5764594315254277) +description = Itta Bena city, MS +station = ('kgwo', 0.0035095706803532625) +zone = ('msz025', 0.00092819265335469358) + +[fips2835300] +centroid = (0.60750335008623879, -1.5393257016402411) +description = Iuka city, MS +station = ('kcrx', 0.0060985971554283836) +zone = ('msz006', 0.0013178068554555594) + +[fips2836000] +centroid = (0.56401765146805172, -1.5745107888688685) +description = Jackson city, MS +station = ('khks', 0.00031068886694872499) +zone = ('msz048', 0.0034983309455789919) + +[fips2836800] +centroid = (0.59903459367654177, -1.5787249038011013) +description = Jonestown town, MS +station = ('kckm', 0.00089156706418740302) +zone = ('msz011', 0.0026829617723961364) + +[fips2837040] +centroid = (0.60578276960303779, -1.5474133828610577) +description = Jumpertown town, MS +station = ('kcrx', 0.0037859750142045252) +zone = ('msz009', 0.0025578930993416264) + +[fips2837190] +centroid = (0.56880357116982283, -1.5763185485482067) +description = Kearney Park CDP, MS +station = ('khks', 0.0047150246921259728) +zone = ('msz042', 0.0035245426923362568) + +[fips2837560] +centroid = (0.58362719355907877, -1.5632388591475435) +description = Kilmichael town, MS +station = ('kgwo', 0.0075916248012008391) +zone = ('msz028', 0.0011957515232330891) + +[fips2837600] +centroid = (0.53090966312893029, -1.5608351044352342) +description = Kiln CDP, MS +station = ('khsa', 0.00097081202048523941) +zone = ('msz080', 0.00089561931299461477) + +[fips2838320] +centroid = (0.57697389373072128, -1.5636293765676772) +description = Kosciusko city, MS +station = ('knmm', 0.0099164951802213023) +zone = ('msz037', 0.00050361116250938675) + +[fips2838360] +centroid = (0.6085852971428426, -1.5471166943415113) +description = Kossuth village, MS +station = ('kcrx', 0.0010790455374262054) +zone = ('msz005', 0.00092327522833112363) + +[fips2838600] +centroid = (0.56445136578717214, -1.5590930389489412) +description = Lake town, MS +station = ('kmei', 0.0085458695644707108) +zone = ('msz051', 0.0032743817733741575) + +[fips2839080] +centroid = (0.59691305870428013, -1.575762242302426) +description = Lambert town, MS +station = ('kckm', 0.0036865605187760674) +zone = ('msz011', 0.00088909826109833594) + +[fips2839520] +centroid = (0.53226641227626059, -1.5508129700846771) +description = Latimer CDP, MS +station = ('kbix', 0.0016753896757898022) +zone = ('msz082', 0.0034031253403420014) + +[fips2839600] +centroid = (0.56741343387390197, -1.5450765615255624) +description = Lauderdale CDP, MS +station = ('kmei', 0.004517222378719328) +zone = ('msz052', 0.0027302184100807653) + +[fips2839640] +centroid = (0.55318345032312677, -1.5558729762921817) +description = Laurel city, MS +station = ('kpib', 0.0048720947142002558) +zone = ('msz066', 0.0013136274685780543) + +[fips2839840] +centroid = (0.54374266769311663, -1.5456333739168262) +description = Leakesville town, MS +station = ('kmob', 0.0095497526673800643) +zone = ('msz076', 0.0015994845827720734) + +[fips2839880] +centroid = (0.56194578856630173, -1.5803609056287509) +description = Learned town, MS +station = ('kjvw', 0.002761986537522658) +zone = ('msz048', 0.0019728072990305564) + +[fips2840280] +centroid = (0.58302433938214748, -1.5863459014332271) +description = Leland city, MS +station = ('kglh', 0.0019204765967663804) +zone = ('msz034', 0.0022705030255456751) + +[fips2840360] +centroid = (0.56887212770284123, -1.5637244970119109) +description = Lena town, MS +station = ('kjan', 0.0085698304625409193) +zone = ('msz044', 0.0029717937967501645) + +[fips2840600] +centroid = (0.57800225917928882, -1.5716623417164437) +description = Lexington city, MS +station = ('kgwo', 0.0067011085140152443) +zone = ('msz036', 0.00063096654361564214) + +[fips2840640] +centroid = (0.54387773872392842, -1.5847298487189281) +description = Liberty town, MS +station = ('kmcb', 0.0049669450397791404) +zone = ('msz069', 0.00023683077237554343) + +[fips2841680] +centroid = (0.52988522467117971, -1.5561951117122221) +description = Long Beach city, MS +station = ('kgpt', 0.0015573190048012858) +zone = ('msz081', 0.0027829489904249312) + +[fips2842200] +centroid = (0.55981802276861037, -1.5581113610578645) +description = Louin town, MS +station = ('kmei', 0.0089441985320700274) +zone = ('msz057', 0.0024852849885462448) + +[fips2842240] +centroid = (0.57563445824957082, -1.5811012219375693) +description = Louise town, MS +station = ('kglh', 0.010470812117150867) +zone = ('msz035', 0.0027352578585837809) + +[fips2842280] +centroid = (0.57810425622077544, -1.5543008535151552) +description = Louisville city, MS +station = ('knmm', 0.0040154950295430338) +zone = ('msz038', 0.0006714365982627105) + +[fips2842440] +centroid = (0.53985150848567276, -1.5462900889544742) +description = Lucedale city, MS +station = ('kmob', 0.0069466713047678704) +zone = ('msz079', 0.0013975271943477711) + +[fips2842600] +centroid = (0.60134464166131141, -1.579136941130912) +description = Lula town, MS +station = ('kckm', 0.0027361076156753811) +zone = ('msz007', 0.0037478864081243665) + +[fips2842640] +centroid = (0.54116518290706395, -1.5613836090592585) +description = Lumberton city, MS +station = ('khbg', 0.0055252378323893238) +zone = ('msz073', 0.0035536902849354576) + +[fips2842800] +centroid = (0.53246307597637532, -1.5556200431769827) +description = Lyman CDP, MS +station = ('kgpt', 0.001742836949803351) +zone = ('msz081', 0.00022035929518796109) + +[fips2842840] +centroid = (0.61020152439006703, -1.5726652951711022) +description = Lynchburg CDP, MS +station = ('kmem', 0.00216371739568169) +zone = ('msz001', 0.0022371835497336898) + +[fips2842960] +centroid = (0.59719815823759348, -1.5802682111921773) +description = Lyon town, MS +station = ('kckm', 0.0015245789576219197) +zone = ('msz010', 0.00089196624032265067) + +[fips2842980] +centroid = (0.58563079663378326, -1.5547574840073546) +description = Maben town, MS +station = ('kstf', 0.0041238503916880874) +zone = ('msz029', 0.0031360741002609922) + +[fips2843280] +centroid = (0.54531894435376282, -1.5790271773742541) +description = McComb city, MS +station = ('kmcb', 0.0010696365464937349) +zone = ('msz070', 0.0015768806828211459) + +[fips2843400] +centroid = (0.57942932764218213, -1.5592885158251644) +description = McCool town, MS +station = ('knmm', 0.0077302703197991577) +zone = ('msz032', 0.0029196920273509828) + +[fips2843840] +centroid = (0.54286438310692797, -1.5502738727853214) +description = McLain town, MS +station = ('khbg', 0.0069646565408290131) +zone = ('msz075', 0.0027801582465225381) + +[fips2844240] +centroid = (0.57808908930957559, -1.5456062165936653) +description = Macon city, MS +station = ('kgtr', 0.0057367079166026382) +zone = ('msz039', 0.00028321135220910808) + +[fips2844520] +centroid = (0.56677862271836654, -1.5730819576234307) +description = Madison city, MS +station = ('khks', 0.0027612709301413577) +zone = ('msz043', 0.0031475675249120075) + +[fips2844600] +centroid = (0.55628006584189271, -1.5661474677992844) +description = Magee city, MS +station = ('kpib', 0.0092481694581684343) +zone = ('msz055', 0.0028442974285445128) + +[fips2844680] +centroid = (0.54389798454325156, -1.5789978907494058) +description = Magnolia city, MS +station = ('kmcb', 0.00035716322990408836) +zone = ('msz070', 0.0010028999895044374) + +[fips2844920] +centroid = (0.59902101501496141, -1.5446606670181049) +description = Mantachie town, MS +station = ('ktup', 0.003926401759211896) +zone = ('msz017', 0.0021606127820558989) + +[fips2844960] +centroid = (0.5884918101568225, -1.5543774385627329) +description = Mantee village, MS +station = ('kstf', 0.0059539593264696872) +zone = ('msz029', 0.0037538256891049247) + +[fips2845120] +centroid = (0.60213808579256067, -1.5441377838274997) +description = Marietta town, MS +station = ('ktup', 0.0058757317212181377) +zone = ('msz009', 0.0021752574649040045) + +[fips2845160] +centroid = (0.56596632903119581, -1.5472371395131914) +description = Marion town, MS +station = ('kmei', 0.0022058530113046354) +zone = ('msz052', 0.00044419366079411323) + +[fips2845240] +centroid = (0.59783661713126546, -1.5755474969912606) +description = Marks city, MS +station = ('kckm', 0.0035239292183308606) +zone = ('msz011', 0.00024626919206699395) + +[fips2845720] +centroid = (0.5853591710422954, -1.5555951722351415) +description = Mathiston town, MS +station = ('kstf', 0.0046147382975703557) +zone = ('msz029', 0.0026115858141855129) + +[fips2846000] +centroid = (0.57415064913269531, -1.5890642691965009) +description = Mayersville town, MS +station = ('ktvr', 0.00957371189498318) +zone = ('msz040', 0.002833722649260571) + +[fips2846200] +centroid = (0.54929206422288024, -1.5863811221775324) +description = Meadville town, MS +station = ('khez', 0.0065592731282138805) +zone = ('msz061', 0.00011444400590598156) + +[fips2846600] +centroid = (0.55781944624215163, -1.5685183754150711) +description = Mendenhall city, MS +station = ('kjan', 0.006979601325018678) +zone = ('msz055', 0.001111804804044805) + +[fips2846640] +centroid = (0.56521075854471503, -1.5479227397499598) +description = Meridian city, MS +station = ('kmei', 0.0012589888603264003) +zone = ('msz052', 0.00052880675820043206) + +[fips2846680] +centroid = (0.56808103976608226, -1.546491115977719) +description = Meridian Station CDP, MS +station = ('kmei', 0.0043049858873425674) +zone = ('msz052', 0.0026471062107652483) + +[fips2846720] +centroid = (0.59060446140319156, -1.5834742763083358) +description = Merigold town, MS +station = ('kglh', 0.0072454461507047967) +zone = ('msz018', 0.0023595081365343153) + +[fips2846880] +centroid = (0.58382293223468995, -1.5882815762934439) +description = Metcalfe town, MS +station = ('kglh', 0.00063176007430019781) +zone = ('msz034', 0.0030205876200862136) + +[fips2848030] +centroid = (0.58384080440623043, -1.5496952088718225) +description = Mississippi State CDP, MS +station = ('kstf', 0.00080727113030199871) +zone = ('msz033', 0.0013674220307724142) + +[fips2848120] +centroid = (0.58498692721943013, -1.5768078865105883) +description = Mississippi Valley State University CDP, MS +station = ('kgwo', 0.0038116892331952687) +zone = ('msz025', 0.00085759533385695896) + +[fips2848240] +centroid = (0.55618854077591817, -1.5630141480063491) +description = Mize town, MS +station = ('kpib', 0.0077225933897209506) +zone = ('msz056', 0.0027180226373153924) + +[fips2848560] +centroid = (0.55070211572556649, -1.5727854785433943) +description = Monticello town, MS +station = ('k1r7', 0.004624053785069286) +zone = ('msz063', 0.00011392464286357284) + +[fips2848640] +centroid = (0.56069862864270414, -1.5574338416955327) +description = Montrose town, MS +station = ('kmei', 0.0080175318567002173) +zone = ('msz057', 0.0025261686679994826) + +[fips2848720] +centroid = (0.59803525305343497, -1.5459579877044047) +description = Mooresville CDP, MS +station = ('ktup', 0.0027378312442084569) +zone = ('msz016', 0.0015556070948610778) + +[fips2848760] +centroid = (0.58380244206927157, -1.5796324051989683) +description = Moorhead city, MS +station = ('kglh', 0.0069710744982751476) +zone = ('msz019', 0.0029254702277468699) + +[fips2848800] +centroid = (0.5825673598240978, -1.5768380108934779) +description = Morgan City town, MS +station = ('kgwo', 0.0043747672372445624) +zone = ('msz025', 0.003070568006520751) + +[fips2848880] +centroid = (0.55108840944891035, -1.5943953773967174) +description = Morgantown CDP, MS +station = ('khez', 0.0010622244708647442) +zone = ('msz060', 0.001602975876675647) + +[fips2849080] +centroid = (0.56461998204620734, -1.5647695478081274) +description = Morton city, MS +station = ('kjan', 0.0062579772211477491) +zone = ('msz050', 0.0019839343774780637) + +[fips2849240] +centroid = (0.53101645982585977, -1.54512904357617) +description = Moss Point city, MS +station = ('kpql', 0.00072962308675590497) +zone = ('msz082', 0.0026540315739060462) + +[fips2849320] +centroid = (0.59133018675946325, -1.5835000199148026) +description = Mound Bayou city, MS +station = ('kglh', 0.0078657848472059918) +zone = ('msz018', 0.002664975881286715) + +[fips2849520] +centroid = (0.55420848219282304, -1.5647914342369476) +description = Mount Olive town, MS +station = ('kpib', 0.006936119482425113) +zone = ('msz065', 0.0026050636640972203) + +[fips2850280] +centroid = (0.60319484774805809, -1.5554001665978163) +description = Myrtle town, MS +station = ('kuox', 0.006750029521951942) +zone = ('msz014', 0.0020453882154219849) + +[fips2850440] +centroid = (0.55064268726453602, -1.5950342377161173) +description = Natchez city, MS +station = ('khez', 0.0017648164886126707) +zone = ('msz060', 0.0012728405568031671) + +[fips2850720] +centroid = (0.56543716265528365, -1.5495478856296618) +description = Nellieburg CDP, MS +station = ('kmei', 0.001213010311429394) +zone = ('msz052', 0.0017720474569075939) + +[fips2850880] +centroid = (0.59486179068770373, -1.5468207039536654) +description = Nettleton city, MS +station = ('ktup', 0.0037915874131205117) +zone = ('msz016', 0.0036934051229836288) + +[fips2851000] +centroid = (0.6020026133360209, -1.5537207409783775) +description = New Albany city, MS +station = ('ktup', 0.0053837633694142351) +zone = ('msz014', 0.00025837396195481366) + +[fips2851040] +centroid = (0.54460501742323453, -1.5538392313812952) +description = New Augusta town, MS +station = ('khbg', 0.0034851393856873496) +zone = ('msz075', 0.00076985045354104531) + +[fips2851240] +centroid = (0.58895067467046436, -1.5436078320534243) +description = New Hamilton CDP, MS +station = ('kcbm', 0.0016512564108307631) +zone = ('msz024', 0.0026402652407703964) + +[fips2851360] +centroid = (0.55384915380642241, -1.5705053105954192) +description = New Hebron town, MS +station = ('k1r7', 0.0068908175685173734) +zone = ('msz055', 0.0032807651727838208) + +[fips2851400] +centroid = (0.58393941550896811, -1.5418793626820042) +description = New Hope CDP, MS +station = ('kgtr', 0.0034993720114387863) +zone = ('msz031', 0.0014830637028778345) + +[fips2851420] +centroid = (0.59404464498521248, -1.5537109322279812) +description = New Houlka town, MS +station = ('ktup', 0.0054475119654075928) +zone = ('msz023', 0.0022763947635873437) + +[fips2851720] +centroid = (0.56426737317742703, -1.5559162604576311) +description = Newton city, MS +station = ('kmei', 0.0058614082104628392) +zone = ('msz051', 0.0012936101779550471) + +[fips2851840] +centroid = (0.53210819817956734, -1.5655283471537245) +description = Nicholson CDP, MS +station = ('kasd', 0.0029907561882534656) +zone = ('msz080', 0.0033874269768017101) + +[fips2852400] +centroid = (0.58501052407091703, -1.5693895914177891) +description = North Carrollton town, MS +station = ('kgwo', 0.0024077036050698408) +zone = ('msz027', 0.0012241246121440824) + +[fips2852680] +centroid = (0.60568471700566073, -1.5774218409815624) +description = North Tunica CDP, MS +station = ('kuta', 0.00061597579627077604) +zone = ('msz007', 0.00089517422398456537) + +[fips2852880] +centroid = (0.57584665538002833, -1.5544518768553302) +description = Noxapater town, MS +station = ('knmm', 0.0023319274371262689) +zone = ('msz038', 0.0017105661203434903) + +[fips2853200] +centroid = (0.59438500164264385, -1.5693152578449467) +description = Oakland town, MS +station = ('kuox', 0.0079322123651256425) +zone = ('msz021', 0.0030397920260266499) + +[fips2853520] +centroid = (0.53065603188203048, -1.5496812811443919) +description = Ocean Springs city, MS +station = ('kbix', 0.0019157289025016572) +zone = ('msz082', 0.0033902002303495419) + +[fips2853680] +centroid = (0.59351439650516413, -1.5489938308586162) +description = Okolona city, MS +station = ('km40', 0.0044289002230183845) +zone = ('msz023', 0.0032162458812039075) + +[fips2854040] +centroid = (0.61009657774214454, -1.5680269256042945) +description = Olive Branch city, MS +station = ('kolv', 0.00087470434612731531) +zone = ('msz001', 0.0025718915430049997) + +[fips2854640] +centroid = (0.5411797564063181, -1.57901911395311) +description = Osyka town, MS +station = ('kmcb', 0.0030728064673625705) +zone = ('msz070', 0.0030912306897310456) + +[fips2854840] +centroid = (0.59972190433597716, -1.5625577967668303) +description = Oxford city, MS +station = ('kuox', 0.0004145365101865502) +zone = ('msz013', 0.0006259848089235783) + +[fips2854920] +centroid = (0.5897859543438837, -1.5857911485304805) +description = Pace town, MS +station = ('kglh', 0.0056855450557628728) +zone = ('msz018', 0.00031355098294439266) + +[fips2854960] +centroid = (0.55927519046465513, -1.5513253114866004) +description = Pachuta town, MS +station = ('kmei', 0.0054242191183947247) +zone = ('msz058', 0.0028851767492164108) + +[fips2855000] +centroid = (0.60493593584997019, -1.5404364640827954) +description = Paden village, MS +station = ('kcrx', 0.0066503563288130372) +zone = ('msz006', 0.0014311559325998462) + +[fips2855360] +centroid = (0.52988313027607725, -1.5455994796227523) +description = Pascagoula city, MS +station = ('kpql', 0.0018924313970388313) +zone = ('msz082', 0.0034616215024301819) + +[fips2855400] +centroid = (0.5291529717835054, -1.5575055398212048) +description = Pass Christian city, MS +station = ('kgpt', 0.0029001518794184466) +zone = ('msz081', 0.0038792061849940032) + +[fips2855760] +centroid = (0.56333386637370542, -1.5725028399243266) +description = Pearl city, MS +station = ('kjan', 0.00080903095240678785) +zone = ('msz049', 0.0022549183549231844) + +[fips2855920] +centroid = (0.5279429873729754, -1.5638936019631364) +description = Pearlington CDP, MS +station = ('khsa', 0.0030656028504378627) +zone = ('msz080', 0.0034042716914004451) + +[fips2855930] +centroid = (0.57227328572278757, -1.557467858162654) +description = Pearl River CDP, MS +station = ('knmm', 0.0049712810506490424) +zone = ('msz045', 0.0018484534965091835) + +[fips2856200] +centroid = (0.56410195087092296, -1.5674434445820604) +description = Pelahatchie town, MS +station = ('kjan', 0.0039765363826870575) +zone = ('msz049', 0.002260151878198103) + +[fips2856800] +centroid = (0.54712663421993091, -1.5574652052621911) +description = Petal city, MS +station = ('khbg', 0.0014352210621658172) +zone = ('msz074', 0.0027964691783442627) + +[fips2856960] +centroid = (0.57203351239014866, -1.5554731213605497) +description = Philadelphia city, MS +station = ('knmm', 0.0037096030994807094) +zone = ('msz045', 0.00038269722724093466) + +[fips2857160] +centroid = (0.5328296649324642, -1.5651852677826601) +description = Picayune city, MS +station = ('kasd', 0.0037510400469208493) +zone = ('msz080', 0.0034651041062001191) + +[fips2857200] +centroid = (0.57406198640669392, -1.5702516444419341) +description = Pickens town, MS +station = ('kjan', 0.010103636351375822) +zone = ('msz036', 0.0044358894963169625) + +[fips2858360] +centroid = (0.592364800486753, -1.5592298727622973) +description = Pittsboro village, MS +station = ('kuox', 0.0082685449745869815) +zone = ('msz022', 6.4194053699182419e-05) + +[fips2858440] +centroid = (0.59704518012865604, -1.5475037734630186) +description = Plantersville town, MS +station = ('ktup', 0.0017821101091866579) +zone = ('msz016', 0.001442720727838279) + +[fips2858960] +centroid = (0.56183782249877334, -1.5654901069898133) +description = Polkville town, MS +station = ('kjan', 0.00606326640969603) +zone = ('msz049', 0.003901888014468649) + +[fips2859160] +centroid = (0.5977906451587679, -1.5534887343609098) +description = Pontotoc city, MS +station = ('ktup', 0.0034971722231975197) +zone = ('msz015', 0.00061114446779299031) + +[fips2859240] +centroid = (0.59715428066019827, -1.5698923335088262) +description = Pope village, MS +station = ('kuox', 0.0066486468800822417) +zone = ('msz012', 0.0026091280536264523) + +[fips2859480] +centroid = (0.53825570159069691, -1.5625831040409841) +description = Poplarville city, MS +station = ('khsa', 0.0083140588346195688) +zone = ('msz077', 0.0015371286947465283) + +[fips2859560] +centroid = (0.55773397746868147, -1.587960470617662) +description = Port Gibson city, MS +station = ('ktvr', 0.0068805922477205078) +zone = ('msz053', 0.0011057024074615375) + +[fips2859720] +centroid = (0.60474232647604642, -1.5586911419820846) +description = Potts Camp town, MS +station = ('kuox', 0.0056751379459538736) +zone = ('msz003', 0.003386800354666895) + +[fips2859920] +centroid = (0.55146997332998138, -1.568552775854628) +description = Prentiss town, MS +station = ('kpib', 0.0083216938284256803) +zone = ('msz064', 0.000863751013503228) + +[fips2860360] +centroid = (0.55997122777035047, -1.567005000420667) +description = Puckett village, MS +station = ('kjan', 0.0059894605995581924) +zone = ('msz055', 0.0036028931539711945) + +[fips2860480] +centroid = (0.54354136141719156, -1.5604099945893259) +description = Purvis city, MS +station = ('khbg', 0.0031677173797469687) +zone = ('msz073', 0.0019031227966355912) + +[fips2860720] +centroid = (0.55923002134361344, -1.5484651531748945) +description = Quitman city, MS +station = ('kmei', 0.0051116867111843821) +zone = ('msz058', 0.00046038110374880522) + +[fips2860840] +centroid = (0.55911139131435539, -1.5625187537514631) +description = Raleigh town, MS +station = ('kjan', 0.0095489062822980177) +zone = ('msz056', 0.0004093457953174757) + +[fips2861080] +centroid = (0.54774348593746325, -1.5600880162489181) +description = Rawls Springs CDP, MS +station = ('kpib', 0.001654855255421056) +zone = ('msz073', 0.0035944335578155062) + +[fips2861160] +centroid = (0.56305913409614883, -1.5779220697984766) +description = Raymond city, MS +station = ('kjvw', 0.00076099525886065653) +zone = ('msz048', 0.00051800674115483282) + +[fips2861400] +centroid = (0.5723422087749489, -1.5630009882237892) +description = Redwater CDP, MS +station = ('knmm', 0.009344133908283047) +zone = ('msz044', 0.00080912871540464405) + +[fips2861890] +centroid = (0.58958051163763159, -1.5834184606788571) +description = Renova town, MS +station = ('kglh', 0.0064176423323961222) +zone = ('msz018', 0.002295357985749257) + +[fips2862400] +centroid = (0.56252665159465798, -1.573583669970209) +description = Richland city, MS +station = ('kjan', 0.0019752680591681531) +zone = ('msz049', 0.0032132179525275746) + +[fips2862480] +centroid = (0.54715164478811196, -1.5523087347069289) +description = Richton town, MS +station = ('khbg', 0.00483284450685211) +zone = ('msz075', 0.0031900051301866025) + +[fips2862520] +centroid = (0.56591808813067068, -1.5733387130096916) +description = Ridgeland city, MS +station = ('khks', 0.001907635020479866) +zone = ('msz043', 0.0040176014967820703) + +[fips2862560] +centroid = (0.60673434056451758, -1.5452093287217616) +description = Rienzi town, MS +station = ('kcrx', 0.0028935737667677244) +zone = ('msz005', 0.002155225535851347) + +[fips2862600] +centroid = (0.60619374228200484, -1.552289134659429) +description = Ripley city, MS +station = ('kcrx', 0.0058653713271032415) +zone = ('msz004', 0.00076815177056886849) + +[fips2862900] +centroid = (0.56200293064601192, -1.5702261277282701) +description = Robinhood CDP, MS +station = ('kjan', 0.0026422105742768473) +zone = ('msz049', 0.0011567949063068059) + +[fips2863560] +centroid = (0.57434080275470012, -1.5861012411786826) +description = Rolling Fork city, MS +station = ('ktvr', 0.010016767165799528) +zone = ('msz041', 0.0010506163702461383) + +[fips2863720] +centroid = (0.59098419268854796, -1.5889885044536716) +description = Rosedale city, MS +station = ('kglh', 0.0066452739890446163) +zone = ('msz018', 0.0026105996648301899) + +[fips2864080] +centroid = (0.54985961038904374, -1.5894279085461538) +description = Roxie town, MS +station = ('khez', 0.0039721087947045923) +zone = ('msz061', 0.0025707657627740536) + +[fips2864200] +centroid = (0.58861071943876087, -1.5804011703745944) +description = Ruleville city, MS +station = ('kglh', 0.0075761761832196361) +zone = ('msz019', 0.0022113937856533222) + +[fips2864680] +centroid = (0.53124551683689158, -1.5509365743023036) +description = St. Martin CDP, MS +station = ('kbix', 0.0009023038259235196) +zone = ('msz082', 0.0038866518697223697) + +[fips2864800] +centroid = (0.57633480651851854, -1.5666901953834846) +description = Sallis town, MS +station = ('kgwo', 0.0095577052973821706) +zone = ('msz037', 0.0029062663998104051) + +[fips2864840] +centroid = (0.60001733621846232, -1.547996061031836) +description = Saltillo city, MS +station = ('ktup', 0.002217000069339661) +zone = ('msz016', 0.0015574167763439861) + +[fips2864920] +centroid = (0.55479878745243261, -1.5539725570828551) +description = Sandersville town, MS +station = ('kpib', 0.0071341755334386027) +zone = ('msz066', 0.0034900521798864933) + +[fips2865560] +centroid = (0.60101294183696996, -1.5692493018525138) +description = Sardis town, MS +station = ('kuox', 0.0054842116299163033) +zone = ('msz012', 0.0013709602730864439) + +[fips2865680] +centroid = (0.57023325762659405, -1.5803000285444411) +description = Satartia village, MS +station = ('kjvw', 0.006710353085064652) +zone = ('msz042', 0.0028819636391827536) + +[fips2865720] +centroid = (0.53443507113832611, -1.5558261316550581) +description = Saucier CDP, MS +station = ('kgpt', 0.0036726010596820641) +zone = ('msz081', 0.0018863490665976541) + +[fips2866080] +centroid = (0.5871236465561841, -1.5768938265229566) +description = Schlater town, MS +station = ('kgwo', 0.0045729631413451485) +zone = ('msz025', 0.0017083397857850021) + +[fips2866160] +centroid = (0.57299471756909948, -1.5442170217755404) +description = Scooba town, MS +station = ('knmm', 0.0068556839704089212) +zone = ('msz046', 0.0027451021135912138) + +[fips2866280] +centroid = (0.56841787085842466, -1.5591642134758374) +description = Sebastopol town, MS +station = ('knmm', 0.0084592070711922082) +zone = ('msz050', 0.0041201465793776638) + +[fips2866400] +centroid = (0.55078269757713105, -1.562051756003507) +description = Seminary town, MS +station = ('kpib', 0.002930702795156261) +zone = ('msz065', 0.0015427487304406527) + +[fips2866440] +centroid = (0.60403517142301588, -1.5704649760364056) +description = Senatobia city, MS +station = ('kuta', 0.0053953709752410034) +zone = ('msz008', 0.00089359971292737991) + +[fips2866720] +centroid = (0.59540886414174132, -1.5479871423993583) +description = Shannon town, MS +station = ('ktup', 0.0028615181733475125) +zone = ('msz016', 0.0030682984362169498) + +[fips2866840] +centroid = (0.5548981665000412, -1.5549690353659888) +description = Sharon CDP, MS +station = ('kpib', 0.0067262405002913332) +zone = ('msz066', 0.0031843008688299101) + +[fips2867000] +centroid = (0.58645666898253446, -1.58427004172749) +description = Shaw city, MS +station = ('kglh', 0.0037020351468945874) +zone = ('msz019', 0.0026644614760465276) + +[fips2867040] +centroid = (0.59254849639052543, -1.5841496838222724) +description = Shelby city, MS +station = ('kckm', 0.0071264618090795141) +zone = ('msz018', 0.0031801155402829766) + +[fips2867200] +centroid = (0.59971555133749999, -1.5505285861363574) +description = Sherman town, MS +station = ('ktup', 0.0019493903589322778) +zone = ('msz016', 0.0025992901541973153) + +[fips2867520] +centroid = (0.55609743458896399, -1.5481428432219286) +description = Shubuta town, MS +station = ('kmei', 0.0082561843176764075) +zone = ('msz058', 0.003136093424348234) + +[fips2867640] +centroid = (0.5755970383904081, -1.5458258837333212) +description = Shuqualak town, MS +station = ('knmm', 0.0054425566805574874) +zone = ('msz039', 0.0022832340391289964) + +[fips2867840] +centroid = (0.58307839222908175, -1.5744279555425689) +description = Sidon town, MS +station = ('kgwo', 0.0024252397240318371) +zone = ('msz025', 0.0028322266594522469) + +[fips2867920] +centroid = (0.57759388704090719, -1.5795059386413688) +description = Silver City town, MS +station = ('kgwo', 0.0093306792330046153) +zone = ('msz035', 0.00073121061478031025) + +[fips2867960] +centroid = (0.55160767980796366, -1.5708367486203727) +description = Silver Creek town, MS +station = ('k1r7', 0.0062094559179176204) +zone = ('msz063', 0.0018250186600760386) + +[fips2868320] +centroid = (0.58890398711297343, -1.5598909511230754) +description = Slate Springs village, MS +station = ('kstf', 0.0094944008023754786) +zone = ('msz029', 0.0026002833419907032) + +[fips2868400] +centroid = (0.60096381081852634, -1.5746587229762676) +description = Sledge town, MS +station = ('kuta', 0.0046893236855675468) +zone = ('msz011', 0.0033115325792848734) + +[fips2868720] +centroid = (0.5945981237976049, -1.5428388399849955) +description = Smithville town, MS +station = ('km40', 0.0036392745343121857) +zone = ('msz024', 0.0032888622844686665) + +[fips2868960] +centroid = (0.60774551451995307, -1.5574991868227273) +description = Snow Lake Shores town, MS +station = ('kuox', 0.0087394574160585548) +zone = ('msz003', 0.00071445775995034641) + +[fips2869160] +centroid = (0.55413421843315069, -1.5582044394668733) +description = Soso town, MS +station = ('kpib', 0.0050040106552640216) +zone = ('msz066', 0.0027505794387577341) + +[fips2869280] +centroid = (0.61000726924432003, -1.5704120227469001) +description = Southaven city, MS +station = ('kmem', 0.001441777876550398) +zone = ('msz001', 0.0013314822252309094) + +[fips2870120] +centroid = (0.57021699115796554, -1.5612334583837095) +description = Standing Pine CDP, MS +station = ('knmm', 0.0087354008781920667) +zone = ('msz044', 0.001786130121711145) + +[fips2870240] +centroid = (0.58396573507408822, -1.5504218592525978) +description = Starkville city, MS +station = ('kstf', 0.00051351159553823258) +zone = ('msz033', 0.00089968524480829137) + +[fips2870320] +centroid = (0.54866294284070627, -1.5441563715840334) +description = State Line town, MS +station = ('kpib', 0.012811127442961081) +zone = ('msz076', 0.0045921533724818508) + +[fips2870760] +centroid = (0.56086314337799714, -1.549813751634618) +description = Stonewall town, MS +station = ('kmei', 0.0035311743092718249) +zone = ('msz058', 0.002289678447202145) + +[fips2871320] +centroid = (0.58198290141748243, -1.554141941286761) +description = Sturgis town, MS +station = ('kstf', 0.0033443604482679889) +zone = ('msz033', 0.0027977565972998443) + +[fips2871480] +centroid = (0.54595167856748827, -1.5789596331322022) +description = Summit town, MS +station = ('kmcb', 0.0016999132538285124) +zone = ('msz070', 0.0020761306583884777) + +[fips2871520] +centroid = (0.59287642630368254, -1.5772413913901986) +description = Sumner town, MS +station = ('kckm', 0.006119090220797793) +zone = ('msz020', 0.0028573689361519627) + +[fips2871560] +centroid = (0.548330579791249, -1.5627988267365305) +description = Sumrall town, MS +station = ('kpib', 0.0032224988634066689) +zone = ('msz073', 0.003717740976561901) + +[fips2871600] +centroid = (0.58545820102405355, -1.5801741030389098) +description = Sunflower town, MS +station = ('kglh', 0.0065770498210683381) +zone = ('msz019', 0.0012584987934876081) + +[fips2872040] +centroid = (0.55875628662474475, -1.5600066315458974) +description = Sylvarena village, MS +station = ('kpib', 0.0095863743713468733) +zone = ('msz056', 0.001849319131674207) + +[fips2872360] +centroid = (0.59811955245630621, -1.5635267861142448) +description = Taylor village, MS +station = ('kuox', 0.0021180484381009296) +zone = ('msz013', 0.0020807178071782489) + +[fips2872400] +centroid = (0.55557624436773345, -1.5609172919897105) +description = Taylorsville town, MS +station = ('kpib', 0.0065522005181755131) +zone = ('msz056', 0.0034125557352600129) + +[fips2872440] +centroid = (0.57915576473522445, -1.5746857581263809) +description = Tchula town, MS +station = ('kgwo', 0.0058918373042022515) +zone = ('msz036', 0.0021760050476870517) + +[fips2872680] +centroid = (0.56035355959629229, -1.5759004200193065) +description = Terry town, MS +station = ('kjvw', 0.0038798420839260108) +zone = ('msz048', 0.003578122125352118) + +[fips2872760] +centroid = (0.59869863524882549, -1.5563404103724507) +description = Thaxton town, MS +station = ('kuox', 0.0054325686631064947) +zone = ('msz015', 0.0023631722605379937) + +[fips2873440] +centroid = (0.59315166472672209, -1.5689822315703739) +description = Tillatoba town, MS +station = ('kuox', 0.0086990375492991961) +zone = ('msz021', 0.0028286167183086122) + +[fips2873720] +centroid = (0.60447756002851893, -1.5398807163423753) +description = Tishomingo town, MS +station = ('kcrx', 0.00729740566366104) +zone = ('msz006', 0.0018630645265279586) + +[fips2873760] +centroid = (0.59786696840695763, -1.557205692255712) +description = Toccopola town, MS +station = ('kuox', 0.005059873338458175) +zone = ('msz015', 0.0027042512850396412) + +[fips2873880] +centroid = (0.56601521570354429, -1.544740096952363) +description = Toomsuba CDP, MS +station = ('kmei', 0.003960054932710815) +zone = ('msz052', 0.0023356795389119552) + +[fips2874400] +centroid = (0.59749126883217329, -1.5402344945817545) +description = Tremont town, MS +station = ('km40', 0.0071826949947364129) +zone = ('msz017', 0.0018109575648957085) + +[fips2874675] +centroid = (0.57087557369791309, -1.5542006018029209) +description = Tucker CDP, MS +station = ('knmm', 0.004006544444183289) +zone = ('msz045', 0.0012728511038938865) + +[fips2874760] +centroid = (0.60542220203286823, -1.5774449316875663) +description = Tunica town, MS +station = ('kuta', 0.00051195186893281065) +zone = ('msz007', 0.00063551991623476197) + +[fips2874820] +centroid = (0.6078896089029977, -1.5764197078316524) +description = Tunica Resorts CDP, MS +station = ('kuta', 0.0026179670717517444) +zone = ('msz007', 0.0031910448965001884) + +[fips2874840] +centroid = (0.59801390767668305, -1.5486673844753231) +description = Tupelo city, MS +station = ('ktup', 0.00050125194256886798) +zone = ('msz016', 0.00087498271375457655) + +[fips2875040] +centroid = (0.59362342722353623, -1.5783028133747992) +description = Tutwiler town, MS +station = ('kckm', 0.0051553523852866578) +zone = ('msz020', 0.0038702817868912997) + +[fips2875160] +centroid = (0.54309759400157953, -1.5733244536697029) +description = Tylertown town, MS +station = ('kmcb', 0.0049435211763120893) +zone = ('msz071', 0.00079597740401277019) + +[fips2875360] +centroid = (0.56847342468851569, -1.5553537059331282) +description = Union town, MS +station = ('knmm', 0.0065953268668295442) +zone = ('msz051', 0.0029837263611729482) + +[fips2875520] +centroid = (0.59978306067296705, -1.5627398346078132) +description = University CDP, MS +station = ('kuox', 0.00034117064410237068) +zone = ('msz013', 0.00078406292308546319) + +[fips2875760] +centroid = (0.56037729607411946, -1.581656358812751) +description = Utica town, MS +station = ('kjvw', 0.0046500332920793325) +zone = ('msz048', 0.003844062083978507) + +[fips2875880] +centroid = (0.58176227434673788, -1.56647843458534) +description = Vaiden town, MS +station = ('kgwo', 0.0056354484639256752) +zone = ('msz027', 0.0031720832707610898) + +[fips2876200] +centroid = (0.53311822021769639, -1.5476542732044181) +description = Vancleave CDP, MS +station = ('kpql', 0.0025233771110496979) +zone = ('msz082', 0.00057067572974126902) + +[fips2876320] +centroid = (0.59135586055276013, -1.5564461598718291) +description = Vardaman town, MS +station = ('ktup', 0.0089640392278153933) +zone = ('msz022', 0.0024845266752744166) + +[fips2876560] +centroid = (0.59673377848351539, -1.5485057495332959) +description = Verona city, MS +station = ('ktup', 0.0014748338931779) +zone = ('msz016', 0.0018426199044545202) + +[fips2876720] +centroid = (0.56405268022613919, -1.5862724056184256) +description = Vicksburg city, MS +station = ('ktvr', 0.0021778937386038623) +zone = ('msz047', 0.00085867099204791492) + +[fips2877080] +centroid = (0.53466664142348075, -1.5456264100531107) +description = Wade CDP, MS +station = ('kpql', 0.0029461698793818106) +zone = ('msz082', 0.0019345959480705258) + +[fips2877400] +centroid = (0.60969876484573748, -1.5735891153974753) +description = Walls town, MS +station = ('kmem', 0.0030724030395635022) +zone = ('msz001', 0.0026103258067596362) + +[fips2877480] +centroid = (0.60998683143877919, -1.5520245252915341) +description = Walnut town, MS +station = ('kcrx', 0.0046711837818785495) +zone = ('msz004', 0.0031716090446365927) + +[fips2877520] +centroid = (0.56885813016224018, -1.5613336053761888) +description = Walnut Grove town, MS +station = ('knmm', 0.0095470122558673626) +zone = ('msz044', 0.0029628416162127977) + +[fips2877640] +centroid = (0.58654751337010069, -1.558213427912521) +description = Walthall village, MS +station = ('kstf', 0.0070940379423616064) +zone = ('msz029', 0.00013952440485987615) + +[fips2878000] +centroid = (0.59623920453337775, -1.56434070295762) +description = Water Valley city, MS +station = ('kuox', 0.0041151485712644532) +zone = ('msz021', 0.0025897122452890409) + +[fips2878200] +centroid = (0.52873377860376147, -1.5601877618156694) +description = Waveland city, MS +station = ('khsa', 0.0015925783323953429) +zone = ('msz080', 0.0025809134688129188) + +[fips2878360] +centroid = (0.55287758137171472, -1.5469523192325583) +description = Waynesboro city, MS +station = ('kpib', 0.011033390155299817) +zone = ('msz067', 0.0011219423422567439) + +[fips2878480] +centroid = (0.59249994133073491, -1.5768409604999136) +description = Webb town, MS +station = ('kckm', 0.0065870847786683381) +zone = ('msz020', 0.0025070822206784671) + +[fips2878520] +centroid = (0.58050523585957403, -1.5584927678593026) +description = Weir town, MS +station = ('kstf', 0.0072644029379385624) +zone = ('msz032', 0.0016608050159311611) + +[fips2878640] +centroid = (0.55326815115172601, -1.57769111037856) +description = Wesson town, MS +station = ('k1r7', 0.0017830908120630234) +zone = ('msz062', 0.0030524346595762388) + +[fips2878680] +centroid = (0.5794103384599204, -1.5669933590745559) +description = West town, MS +station = ('kgwo', 0.0068638380261649926) +zone = ('msz037', 0.0035159996969386484) + +[fips2878890] +centroid = (0.54646183830784623, -1.5599255610021423) +description = West Hattiesburg CDP, MS +station = ('khbg', 0.0020414219048174834) +zone = ('msz073', 0.0026740362541657322) + +[fips2879120] +centroid = (0.58653878672384085, -1.5473671839957572) +description = West Point city, MS +station = ('kgtr', 0.0029325297583838819) +zone = ('msz030', 0.0019969628278114189) + +[fips2879620] +centroid = (0.60464956222630284, -1.5768951180666029) +description = White Oak CDP, MS +station = ('kuta', 0.0006466470321511501) +zone = ('msz007', 0.00040025429270591783) + +[fips2880160] +centroid = (0.53853964920670383, -1.5557687103226676) +description = Wiggins city, MS +station = ('khbg', 0.0073563279058659007) +zone = ('msz078', 0.001196085642242144) + +[fips2880760] +centroid = (0.58451371609933689, -1.5660705860457342) +description = Winona city, MS +station = ('kgwo', 0.0051567114883525654) +zone = ('msz028', 0.0016437881420594978) + +[fips2880800] +centroid = (0.59188115229773286, -1.5839366314804815) +description = Winstonville town, MS +station = ('kckm', 0.0076229447372294151) +zone = ('msz018', 0.0027515681132626434) + +[fips2881000] +centroid = (0.58956654900361549, -1.5542277416727892) +description = Woodland village, MS +station = ('kstf', 0.0068283431907663122) +zone = ('msz023', 0.0028786683040505222) + +[fips2881120] +centroid = (0.54284787229220421, -1.5934726392744805) +description = Woodville town, MS +station = ('khzr', 0.0072299698289307428) +zone = ('msz068', 0.0010289843235849127) + +[fips2881520] +centroid = (0.57355392106143854, -1.5779172003298634) +description = Yazoo City city, MS +station = ('khks', 0.0096499789456150828) +zone = ('msz042', 0.0014379310548567161) + +[fips29001] +centroid = (0.70145945026933931, -1.6162375795734809) +description = Adair County, MO +station = ('kirk', 0.0017364546953868973) +zone = ('moz017', 3.8575074348511359e-05) + +[fips2900104546] +centroid = (0.70147124869508282, -1.6160884062823129) +description = Benton township, MO +station = ('kirk', 0.0017037287090582453) +zone = ('moz017', 7.6499589424723752e-05) + +[fips2900114248] +centroid = (0.70282473407671198, -1.6131210847545348) +description = Clay township, MO +station = ('kirk', 0.0033860887114767909) +zone = ('moz017', 0.002710428321802016) + +[fips2900141924] +centroid = (0.70124714841912672, -1.6191613551364217) +description = Liberty township, MO +station = ('kirk', 0.0032528555212124506) +zone = ('moz017', 0.0022820274671057727) + +[fips2900150096] +centroid = (0.70273046884381163, -1.6195764467924234) +description = Morrow township, MO +station = ('kirk', 0.0043365500623898327) +zone = ('moz017', 0.0028835351668340249) + +[fips2900152526] +centroid = (0.70301309000958712, -1.6177708338680652) +description = Nineveh township, MO +station = ('kirk', 0.0036593846148858761) +zone = ('moz017', 0.0019695437842858041) + +[fips2900157224] +centroid = (0.69933107360640978, -1.616195761484603) +description = Pettis township, MO +station = ('kirk', 0.0008748928626516625) +zone = ('moz017', 0.0021272350430125747) + +[fips2900158682] +centroid = (0.70348349114958464, -1.615935916865566) +description = Polk township, MO +station = ('kirk', 0.0036387919136670285) +zone = ('moz017', 0.0020342472429834995) + +[fips2900165540] +centroid = (0.70104805871135178, -1.6130226830913073) +description = Salt River township, MO +station = ('kirk', 0.0020996876976772153) +zone = ('moz017', 0.0024522837806945658) + +[fips2900176786] +centroid = (0.69953990225141094, -1.6195987695535563) +description = Walnut township, MO +station = ('kirk', 0.003304229409018217) +zone = ('moz017', 0.0032378079714815342) + +[fips2900180134] +centroid = (0.6994649578133304, -1.6131010832813069) +description = Wilson township, MO +station = ('kirk', 0.0017336746420003684) +zone = ('moz017', 0.0030887171369372922) + +[fips2900244] +centroid = (0.67013450774734784, -1.6467136463071799) +description = Adrian city, MO +station = ('kojc', 0.0092551676231063564) +zone = ('moz053', 0.0024223350927825267) + +[fips2900262] +centroid = (0.64758241035062825, -1.5692511693548135) +description = Advance city, MO +station = ('kcgi', 0.0050934227072018043) +zone = ('moz086', 0.0041313175113593141) + +[fips2900280] +centroid = (0.67282130250445304, -1.5764892592023443) +description = Affton CDP, MO +station = ('kcps', 0.0024224329076834236) +zone = ('moz064', 0.0018650058986707) + +[fips2900298] +centroid = (0.69236720989095246, -1.65392278114242) +description = Agency village, MO +station = ('kstj', 0.0026702597793445844) +zone = ('moz020', 0.0006083177385377631) + +[fips29003] +centroid = (0.69793732347893722, -1.6546341075323627) +description = Andrew County, MO +station = ('kstj', 0.0041634995679159653) +zone = ('moz012', 9.7577186399805141e-05) + +[fips2900304564] +centroid = (0.6992663044378683, -1.6551093781409734) +description = Benton township, MO +station = ('kstj', 0.0053324509057500755) +zone = ('moz012', 0.0014753605735924899) + +[fips2900314266] +centroid = (0.69973384323789256, -1.6574850679589104) +description = Clay township, MO +station = ('kstj', 0.0057142640886639583) +zone = ('moz012', 0.0029042211640616026) + +[fips2900322330] +centroid = (0.69805661673331099, -1.6524230895293512) +description = Empire township, MO +station = ('kstj', 0.0051277251634075137) +zone = ('moz012', 0.001686967641302822) + +[fips2900335576] +centroid = (0.6983979158685385, -1.6568953386579541) +description = Jackson township, MO +station = ('kstj', 0.0043442341880064591) +zone = ('moz012', 0.001839002136714738) + +[fips2900336710] +centroid = (0.6956848888127759, -1.6549179329753221) +description = Jefferson township, MO +station = ('kstj', 0.0020805452244155179) +zone = ('moz012', 0.0021702248647866248) + +[fips2900342572] +centroid = (0.69658359375121282, -1.6567408595658601) +description = Lincoln township, MO +station = ('kstj', 0.0025263776339017633) +zone = ('moz012', 0.002063872575665484) + +[fips2900349286] +centroid = (0.69545298691506352, -1.6523940647038906) +description = Monroe township, MO +station = ('kstj', 0.0035247065911410539) +zone = ('moz012', 0.0029305706709154018) + +[fips2900352688] +centroid = (0.69754739947074906, -1.6549624912311256) +description = Nodaway township, MO +station = ('kstj', 0.003709837665358913) +zone = ('moz012', 0.00040121498870490695) + +[fips2900358106] +centroid = (0.69941547772903623, -1.6528630172206089) +description = Platte township, MO +station = ('kstj', 0.006077818304060234) +zone = ('moz012', 0.0020638083827702086) + +[fips2900362534] +centroid = (0.69690147056787854, -1.6527829764211126) +description = Rochester township, MO +station = ('kstj', 0.0040869999889149838) +zone = ('moz012', 0.0016850876158627057) + +[fips2900424] +centroid = (0.64822479623511742, -1.649618764300417) +description = Airport Drive village, MO +station = ('kjln', 0.00027925376422313674) +zone = ('moz088', 0.0026778185884531506) + +[fips2900496] +centroid = (0.64991095882546912, -1.6478981838172158) +description = Alba city, MO +station = ('kjln', 0.0019042017877134163) +zone = ('moz088', 0.0012209098199029067) + +[fips29005] +centroid = (0.70566883535929925, -1.6656995648031769) +description = Atchison County, MO +station = ('ksda', 0.0055597317654322567) +zone = ('moz001', 0.00014164432483758436) + +[fips2900504582] +centroid = (0.70383795006737215, -1.6681555746732906) +description = Benton township, MO +station = ('kfnb', 0.0042523430335051227) +zone = ('moz001', 0.0027063804909548874) + +[fips2900509244] +centroid = (0.70798272306842325, -1.6695582608865336) +description = Buchanan township, MO +station = ('kafk', 0.0026114097288498072) +zone = ('iaz090', 0.0032418120663837615) + +[fips2900513996] +centroid = (0.70374665189420038, -1.6657125849593966) +description = Clark township, MO +station = ('kfnb', 0.0045877605682246685) +zone = ('moz001', 0.0019081074299704274) + +[fips2900514] +centroid = (0.70245824984037808, -1.6464293845319076) +description = Albany city, MO +station = ('klwd', 0.0088547274190976539) +zone = ('moz004', 0.0011949229694317696) + +[fips2900514284] +centroid = (0.70492378920820797, -1.667294132514384) +description = Clay township, MO +station = ('kfnb', 0.0053866625718081863) +zone = ('moz001', 0.0015362710616123058) + +[fips2900515454] +centroid = (0.70561326407591585, -1.6623158949823353) +description = Colfax township, MO +station = ('kicl', 0.0057483610945172981) +zone = ('moz001', 0.002435688749986553) + +[fips2900518028] +centroid = (0.70386746358502339, -1.6626851019323023) +description = Dale township, MO +station = ('kfnb', 0.0060293442011572418) +zone = ('moz001', 0.0027967062639187444) + +[fips2900542590] +centroid = (0.70733478703691288, -1.6636538818402069) +description = Lincoln township, MO +station = ('ksda', 0.0040908702663098326) +zone = ('moz001', 0.0022016448531827705) + +[fips2900552598] +centroid = (0.70652950957333516, -1.66933646444519) +description = Nishnabotna township, MO +station = ('kafk', 0.0034099942827027769) +zone = ('nez091', 0.0031442888520374756) + +[fips2900558700] +centroid = (0.70713142127247042, -1.6669063552611758) +description = Polk township, MO +station = ('ksda', 0.0042605390748264435) +zone = ('moz001', 0.0018214710896209984) + +[fips2900568] +centroid = (0.65534444803960779, -1.6327646258593906) +description = Aldrich village, MO +station = ('ksgf', 0.005968829371313304) +zone = ('moz079', 0.0023906867740097746) + +[fips2900572358] +centroid = (0.70576369400414507, -1.6648154508172865) +description = Tarkio township, MO +station = ('ksda', 0.0054722155178543374) +zone = ('moz001', 0.0005449689674220838) + +[fips2900572646] +centroid = (0.70512207606452704, -1.668673972367718) +description = Templeton township, MO +station = ('kafk', 0.0047369440995703119) +zone = ('moz001', 0.0024618716249436524) + +[fips2900604] +centroid = (0.70441291388285665, -1.5962676269919167) +description = Alexandria city, MO +station = ('keok', 0.0018955701019762173) +zone = ('ilz034', 0.0039919161409112686) + +[fips29007] +centroid = (0.68442179045746598, -1.6029699880255477) +description = Audrain County, MO +station = ('kcou', 0.0085922416375016717) +zone = ('moz042', 3.366204635816802e-05) + +[fips2900712] +centroid = (0.70660248178936114, -1.6456479133593269) +description = Allendale village, MO +station = ('klwd', 0.0057648648974090826) +zone = ('moz003', 0.0017758345153075731) + +[fips2900717686] +centroid = (0.68482030148557382, -1.5972198437252199) +description = Cuivre township, MO +station = ('kppq', 0.012142635406445897) +zone = ('moz035', 0.0050676258805840728) + +[fips2900743148] +centroid = (0.68391533081512224, -1.599903584156134) +description = Linn township, MO +station = ('kcou', 0.009842135072231176) +zone = ('moz042', 0.0024105949336514689) + +[fips2900744210] +centroid = (0.68261116843815461, -1.6007223355615372) +description = Loutre township, MO +station = ('kcou', 0.0085298655532563394) +zone = ('moz042', 0.0025128397648569783) + +[fips2900748] +centroid = (0.64964350457089348, -1.5665284033618248) +description = Allenville village, MO +station = ('kcgi', 0.0024005344078327521) +zone = ('moz087', 0.0029953069816558982) + +[fips2900759474] +centroid = (0.6857719073536388, -1.6013911282776088) +description = Prairie township, MO +station = ('kcou', 0.010405632709964229) +zone = ('moz042', 0.0017878722641238986) + +[fips2900765432] +centroid = (0.68586212342267427, -1.6094537989302442) +description = Saling township, MO +station = ('kcou', 0.0083835192449061187) +zone = ('moz034', 0.0045110055065766212) + +[fips2900765558] +centroid = (0.68423376613714859, -1.6042525083197909) +description = Salt River township, MO +station = ('kcou', 0.0078841017691380893) +zone = ('moz042', 0.0010399327257783106) + +[fips2900768744] +centroid = (0.68343564452350414, -1.6028302744189256) +description = South Fork township, MO +station = ('kcou', 0.0078890616327956121) +zone = ('moz042', 0.0010126523921808314) + +[fips2900780152] +centroid = (0.68424004932245586, -1.6063054169458642) +description = Wilson township, MO +station = ('kcou', 0.0071985127523831512) +zone = ('moz042', 0.002616975581946982) + +[fips2900802] +centroid = (0.68236106275634378, -1.6327171179971514) +description = Alma city, MO +station = ('kszl', 0.0063369362439429887) +zone = ('moz038', 0.0032649927060868999) + +[fips29009] +centroid = (0.64052497953397158, -1.6377179400897208) +description = Barry County, MO +station = ('khfj', 0.0043582081868609951) +zone = ('moz102', 0.00019766740386787992) + +[fips2900902116] +centroid = (0.63836988188019395, -1.6413015373763782) +description = Ash township, MO +station = ('krog', 0.0037487517494642787) +zone = ('moz102', 0.0037634686038119855) + +[fips2900910] +centroid = (0.69617750799415135, -1.642128474375973) +description = Altamont village, MO +station = ('kcdj', 0.0068629445519398976) +zone = ('moz014', 0.0018588526424808108) + +[fips2900910162] +centroid = (0.64135299863770268, -1.6392893821883388) +description = Butterfield township, MO +station = ('khfj', 0.0029887938657478779) +zone = ('moz102', 0.0014802013996437656) + +[fips2900911332] +centroid = (0.64383532807293664, -1.6409464675933523) +description = Capps Creek township, MO +station = ('khfj', 0.00019141048296702774) +zone = ('moz102', 0.0041039602973132229) + +[fips2900916534] +centroid = (0.64210579405067292, -1.6403546788038785) +description = Corsicana township, MO +station = ('khfj', 0.0019805637602761318) +zone = ('moz102', 0.0025941717684475228) + +[fips2900917092] +centroid = (0.6435934254386102, -1.6345143882476849) +description = Crane Creek township, MO +station = ('khfj', 0.0051723037887838703) +zone = ('moz103', 0.003525392974049274) + +[fips2900923140] +centroid = (0.64003384388246043, -1.6394988915117483) +description = Exeter township, MO +station = ('khfj', 0.0041602724574279363) +zone = ('moz102', 0.0016459170510477019) + +[fips2900924436] +centroid = (0.63998118729892772, -1.6379423196183571) +description = Flat Creek township, MO +station = ('khfj', 0.0047116978700576708) +zone = ('moz102', 0.00077019905672334938) + +[fips2900928] +centroid = (0.65677509442746751, -1.5635688660025107) +description = Altenburg city, MO +station = ('kmdh', 0.0053509709757434149) +zone = ('moz076', 0.0035562651988350581) + +[fips2900937142] +centroid = (0.6419353451959231, -1.6352750550955819) +description = Jenkins township, MO +station = ('khfj', 0.005006239851748512) +zone = ('moz102', 0.0022485205694266408) + +[fips2900938837] +centroid = (0.64359024893937167, -1.6382139103032598) +description = Kings Prairie township, MO +station = ('khfj', 0.0022381423129372727) +zone = ('moz102', 0.0029197388025544542) + +[fips2900941942] +centroid = (0.64038566735307734, -1.64092054945396) +description = Liberty township, MO +station = ('khfj', 0.0036409538817566123) +zone = ('moz102', 0.0026605561314762302) + +[fips2900944912] +centroid = (0.64185996442552939, -1.6374951313574111) +description = McDonald township, MO +station = ('khfj', 0.0035181374512666306) +zone = ('moz102', 0.0011561605593627487) + +[fips2900944966] +centroid = (0.64289243139783925, -1.6369077233443599) +description = McDowell township, MO +station = ('khfj', 0.0034334672853851785) +zone = ('moz102', 0.0022584778937430991) + +[fips2900948674] +centroid = (0.64025515163161317, -1.6360376243523631) +description = Mineral township, MO +station = ('khfj', 0.0054545924389686395) +zone = ('moz102', 0.0013524465460151745) + +[fips2900949214] +centroid = (0.6439958809108276, -1.6395316338885155) +description = Monett township, MO +station = ('khfj', 0.0011415167410183781) +zone = ('moz102', 0.0036238656915430485) + +[fips2900950366] +centroid = (0.64153489685234555, -1.6338625077720652) +description = Mountain township, MO +station = ('kbbg', 0.0070177670785668772) +zone = ('moz103', 0.0022102480942724771) + +[fips2900955730] +centroid = (0.64361717936972984, -1.6355896681465463) +description = Ozark township, MO +station = ('khfj', 0.0043135442897800627) +zone = ('moz102', 0.0033347831257592364) + +[fips2900957962] +centroid = (0.64295233109776773, -1.6412640127974603) +description = Pioneer township, MO +station = ('khfj', 0.0011016073619224886) +zone = ('moz102', 0.0036772969755764083) + +[fips2900958484] +centroid = (0.64391186076063656, -1.6370205065206236) +description = Pleasant Ridge township, MO +station = ('khfj', 0.0031514234975431195) +zone = ('moz102', 0.003239807848407575) + +[fips2900960194] +centroid = (0.64266471829033156, -1.6395328381656995) +description = Purdy township, MO +station = ('khfj', 0.001776417121383696) +zone = ('moz102', 0.0024815141393567204) + +[fips2900962318] +centroid = (0.63808588190430937, -1.6363328817019231) +description = Roaring River township, MO +station = ('krog', 0.0058989431245655118) +zone = ('moz102', 0.0028207699760225318) + +[fips2900964] +centroid = (0.64038542300698198, -1.595095952558468) +description = Alton city, MO +station = ('kuno', 0.0078479467730380535) +zone = ('moz106', 0.00017471536984274048) + +[fips2900967250] +centroid = (0.63954670503493616, -1.6341581141874755) +description = Shell Knob township, MO +station = ('kbbg', 0.0063472481294289109) +zone = ('moz103', 0.0030378908502229967) + +[fips2900971332] +centroid = (0.63760572437379326, -1.6388136228875376) +description = Sugar Creek township, MO +station = ('krog', 0.0040561509238766077) +zone = ('moz102', 0.0032458318107094369) + +[fips2900977218] +centroid = (0.63862752738437345, -1.639664977043368) +description = Washburn township, MO +station = ('krog', 0.004467857106410858) +zone = ('moz102', 0.0026467106229364446) + +[fips2900979144] +centroid = (0.64188518443322085, -1.6412324746978768) +description = Wheaton township, MO +station = ('khfj', 0.0021525017051574947) +zone = ('moz102', 0.0031197244972597559) + +[fips2900979522] +centroid = (0.63785982685959108, -1.6342937611769406) +description = White River township, MO +station = ('krog', 0.0072046576323412173) +zone = ('arz002', 0.0038541919689030675) + +[fips2901018] +centroid = (0.69620145391148858, -1.6561826509111945) +description = Amazonia village, MO +station = ('kstj', 0.0021669905557656207) +zone = ('moz012', 0.0020373634712697285) + +[fips2901054] +centroid = (0.69583371303809349, -1.6481964431330893) +description = Amity town, MO +station = ('kstj', 0.0067003077499969508) +zone = ('moz013', 0.0005914203754495258) + +[fips2901072] +centroid = (0.6676721448787567, -1.6508596584919997) +description = Amoret city, MO +station = ('kojc', 0.010292297554723238) +zone = ('ksz060', 0.003581893993396452) + +[fips2901090] +centroid = (0.66932509385344297, -1.6508906206329304) +description = Amsterdam city, MO +station = ('kojc', 0.0086707364960860039) +zone = ('ksz060', 0.004222383726054566) + +[fips29011] +centroid = (0.654512414678597, -1.6466149828445644) +description = Barton County, MO +station = ('kpts', 0.0054183523394339623) +zone = ('moz077', 4.9238913724394173e-05) + +[fips2901103502] +centroid = (0.656329162803583, -1.6483945380031906) +description = Barton City township, MO +station = ('kpts', 0.0047702619338861624) +zone = ('moz077', 0.0022540217724338336) + +[fips2901112736] +centroid = (0.65481767276477088, -1.6479038386839924) +description = Central township, MO +station = ('kpts', 0.0044832923271229102) +zone = ('moz077', 0.0010196219673964443) + +[fips2901113897] +centroid = (0.65439231857276725, -1.6454689822044126) +description = City township, MO +station = ('kpts', 0.0063018806354784712) +zone = ('moz077', 0.00096208731784660573) + +[fips2901120026] +centroid = (0.65631977293220733, -1.6444241233944137) +description = Doylesport township, MO +station = ('kpts', 0.0075743715117023366) +zone = ('moz077', 0.0025170929801682281) + +[fips2901127694] +centroid = (0.65290960901332062, -1.6428227139925387) +description = Golden City township, MO +station = ('kjln', 0.0068766605852306917) +zone = ('moz077', 0.0034596291894996032) + +[fips2901140394] +centroid = (0.65463406412746106, -1.6450420048562047) +description = Lamar township, MO +station = ('kpts', 0.0066699954485800426) +zone = ('moz077', 0.0012930604143642087) + +[fips2901141618] +centroid = (0.65628493616033734, -1.6503185715172966) +description = Leroy township, MO +station = ('kpts', 0.0035850292496909506) +zone = ('moz077', 0.0033805249397058207) + +[fips2901148116] +centroid = (0.65616169846185401, -1.6426210062908857) +description = Milford township, MO +station = ('kpts', 0.008879413965226202) +zone = ('moz077', 0.003595430800059328) + +[fips2901151248] +centroid = (0.65304113702575073, -1.6483853401180324) +description = Nashville township, MO +station = ('kpts', 0.0039856803874884815) +zone = ('moz077', 0.0020252768244378096) + +[fips2901152238] +centroid = (0.65472115605713554, -1.6427377164579666) +description = Newport township, MO +station = ('kjln', 0.0082227272431922242) +zone = ('moz077', 0.0031227592277727348) + +[fips2901153048] +centroid = (0.65289140522922218, -1.6466176531983201) +description = Northfork township, MO +station = ('kjln', 0.0049943205090600597) +zone = ('moz077', 0.0016476827166770102) + +[fips2901155748] +centroid = (0.65494742054136412, -1.6504316339462406) +description = Ozark township, MO +station = ('kpts', 0.0026665467958372656) +zone = ('moz077', 0.0030135570517466404) + +[fips2901161454] +centroid = (0.65279125823674278, -1.6447968908160546) +description = Richland township, MO +station = ('kjln', 0.0056937842363253789) +zone = ('moz077', 0.0022931547151700381) + +[fips2901169194] +centroid = (0.65321385480852823, -1.6506246150016337) +description = South West township, MO +station = ('kpts', 0.0022031554942855626) +zone = ('moz077', 0.003408809467289815) + +[fips2901174482] +centroid = (0.65642894327691947, -1.6460409091469987) +description = Union township, MO +station = ('kpts', 0.0064388413413787376) +zone = ('moz077', 0.0019545131731506377) + +[fips2901198] +centroid = (0.63970275492335704, -1.6483468730613187) +description = Anderson city, MO +station = ('kgmj', 0.0042165591602234239) +zone = ('moz101', 0.0013914768616407496) + +[fips2901252] +centroid = (0.68525628473272204, -1.5852603240917791) +description = Annada village, MO +station = ('kppq', 0.0066078308120960444) +zone = ('ilz098', 0.0027189965324382116) + +[fips2901270] +centroid = (0.65207607466915307, -1.5829871374608115) +description = Annapolis city, MO +station = ('kfam', 0.0079708460719013184) +zone = ('moz084', 0.0035417442921839887) + +[fips2901288] +centroid = (0.64270596042055617, -1.5590442395430555) +description = Anniston town, MO +station = ('kcir', 0.0044494761680005978) +zone = ('moz112', 0.00050104362910799232) + +[fips29013] +centroid = (0.66771439929994747, -1.6465304565488905) +description = Bates County, MO +station = ('kojc', 0.011403671559860291) +zone = ('moz053', 1.0434601300316669e-05) + +[fips2901313384] +centroid = (0.66779168247922582, -1.6485501166527132) +description = Charlotte township, MO +station = ('kojc', 0.010676853852395491) +zone = ('moz053', 0.0015773571822611078) + +[fips2901318712] +centroid = (0.66768366405181989, -1.6428561894075919) +description = Deepwater township, MO +station = ('kgly', 0.0064106587131867532) +zone = ('moz053', 0.0028957228814983586) + +[fips2901318766] +centroid = (0.67087356741910487, -1.6466314587527033) +description = Deer Creek township, MO +station = ('kojc', 0.0086935821974921598) +zone = ('moz053', 0.0031584708970800205) + +[fips2901320800] +centroid = (0.67084120901477284, -1.6485299930064379) +description = East Boone township, MO +station = ('kojc', 0.0079072161646762899) +zone = ('moz053', 0.0034921035145339739) + +[fips2901321664] +centroid = (0.66961757612949224, -1.6484063538822264) +description = Elkhart township, MO +station = ('kojc', 0.0090408551180801485) +zone = ('moz053', 0.0023985053805890824) + +[fips2901328234] +centroid = (0.67051809621035119, -1.644583349782073) +description = Grand River township, MO +station = ('krcm', 0.0086012872143445222) +zone = ('moz053', 0.0031963609947841419) + +[fips2901332788] +centroid = (0.6678034983582618, -1.6504491745052232) +description = Homer township, MO +station = ('kojc', 0.010231254019929008) +zone = ('moz053', 0.0030679384686726628) + +[fips2901333310] +centroid = (0.66461422330950759, -1.6497999643833587) +description = Howard township, MO +station = ('kpts', 0.011341201686817192) +zone = ('moz053', 0.004021732842518686) + +[fips2901333562] +centroid = (0.66608160887812173, -1.6425862916920637) +description = Hudson township, MO +station = ('kgly', 0.0068553433691301083) +zone = ('moz053', 0.0035127428637390513) + +[fips2901343796] +centroid = (0.66633445472685815, -1.6461821935499477) +description = Lone Oak township, MO +station = ('kgly', 0.0093172761465791995) +zone = ('moz053', 0.0014102761941839064) + +[fips2901348746] +centroid = (0.6706873756945021, -1.6425864138651112) +description = Mingo township, MO +station = ('krcm', 0.0074896731511136794) +zone = ('moz053', 0.0042968497771411077) + +[fips2901350294] +centroid = (0.66931158500503252, -1.6466520361845842) +description = Mound township, MO +station = ('kojc', 0.0099712376669990558) +zone = ('moz053', 0.0015980036743241388) + +[fips2901350546] +centroid = (0.66790151604905379, -1.646677430725201) +description = Mount Pleasant township, MO +station = ('kojc', 0.011184281784669115) +zone = ('moz053', 0.00021333549707916677) + +[fips2901351950] +centroid = (0.66611408945550132, -1.6482507054195337) +description = New Home township, MO +station = ('kojc', 0.012334626041078187) +zone = ('moz053', 0.0020892011225740249) + +[fips2901355028] +centroid = (0.66484251237566838, -1.6468973422109521) +description = Osage township, MO +station = ('kgly', 0.01042890756230146) +zone = ('moz053', 0.0028867597460538043) + +[fips2901358340] +centroid = (0.66612377603284989, -1.6444720152290884) +description = Pleasant Gap township, MO +station = ('kgly', 0.0081536204959481943) +zone = ('moz053', 0.002276876199891462) + +[fips2901359492] +centroid = (0.66463884990525313, -1.6445756179734867) +description = Prairie township, MO +station = ('kgly', 0.0089452348242806106) +zone = ('moz053', 0.0034440965790797605) + +[fips2901362804] +centroid = (0.66451266260033393, -1.6424956218374225) +description = Rockville township, MO +station = ('kgly', 0.0077079208005418334) +zone = ('moz053', 0.0045154871990850162) + +[fips2901367052] +centroid = (0.66949103975872259, -1.6445881319842235) +description = Shawnee township, MO +station = ('krcm', 0.0093857139418604303) +zone = ('moz053', 0.0023464497899167891) + +[fips2901370198] +centroid = (0.66919944760059191, -1.6428241800691104) +description = Spruce township, MO +station = ('kgly', 0.0061245174517788404) +zone = ('moz053', 0.0032743294633478534) + +[fips2901371530] +centroid = (0.66793668443348153, -1.6446434763748041) +description = Summit township, MO +station = ('kgly', 0.0077091164757763109) +zone = ('moz053', 0.0015081877751541954) + +[fips2901376804] +centroid = (0.66612447416455067, -1.650229193206302) +description = Walnut township, MO +station = ('kojc', 0.011907908311051414) +zone = ('moz053', 0.0033043191970628253) + +[fips2901378604] +centroid = (0.67085934298570116, -1.6501341949351158) +description = West Boone township, MO +station = ('kojc', 0.0073683489551442391) +zone = ('moz053', 0.004220328861061765) + +[fips2901378946] +centroid = (0.66953690701146495, -1.6503762197424898) +description = West Point township, MO +station = ('kojc', 0.0085669427122169271) +zone = ('moz053', 0.0035157307215358188) + +[fips29015] +centroid = (0.66847918512487892, -1.628181740309504) +description = Benton County, MO +station = ('kgly', 0.0054654894649296881) +zone = ('moz055', 0.00010884025209782936) + +[fips2901500586] +centroid = (0.66552174216066706, -1.6305174969941556) +description = Alexander township, MO +station = ('kgly', 0.0053311598835778474) +zone = ('moz055', 0.0033889159373525933) + +[fips2901515418] +centroid = (0.66849810449397051, -1.6261653963312601) +description = Cole township, MO +station = ('kdmo', 0.0072356299955525323) +zone = ('moz055', 0.00158698815454217) + +[fips2901522] +centroid = (0.66656115554339979, -1.6411622077421912) +description = Appleton City city, MO +station = ('kgly', 0.0056482308503400048) +zone = ('moz067', 0.0044219891640656581) + +[fips2901526074] +centroid = (0.66615796703289643, -1.6282008865713984) +description = Fristoe township, MO +station = ('kgly', 0.0063189175116708969) +zone = ('moz055', 0.0022124344683053486) + +[fips2901553142] +centroid = (0.66899733847321086, -1.6300285255509168) +description = North Lindsey township, MO +station = ('kgly', 0.0039513998289689408) +zone = ('moz055', 0.0015794164217995377) + +[fips2901568933] +centroid = (0.66781978228018291, -1.6294183235378346) +description = South Lindsey township, MO +station = ('kgly', 0.0047117832165407738) +zone = ('moz055', 0.0011164851047719801) + +[fips2901573564] +centroid = (0.66762564930748358, -1.6310329625354396) +description = Tom township, MO +station = ('kgly', 0.0036544188351409503) +zone = ('moz055', 0.0023595630984063641) + +[fips2901574500] +centroid = (0.66602582815522804, -1.6259727468884249) +description = Union township, MO +station = ('kgly', 0.0079147441379622194) +zone = ('moz055', 0.002916505986870327) + +[fips2901576] +centroid = (0.70621493142895575, -1.6059746770526111) +description = Arbela town, MO +station = ('keok', 0.007731491463669536) +zone = ('moz009', 0.0017563454881970942) + +[fips2901579252] +centroid = (0.67092116254780676, -1.6301590063657958) +description = White township, MO +station = ('kgly', 0.0040663277855257189) +zone = ('moz055', 0.0029852543886104733) + +[fips2901579936] +centroid = (0.67103403299053321, -1.6262826475504089) +description = Williams township, MO +station = ('kdmo', 0.0047023522270718213) +zone = ('moz055', 0.0030512846469209114) + +[fips2901630] +centroid = (0.62925147901631973, -1.5749836509231112) +description = Arbyrd city, MO +station = ('kbyh', 0.0043643778221680854) +zone = ('moz113', 0.0043525744936642619) + +[fips2901648] +centroid = (0.65599734080619376, -1.5817831046230308) +description = Arcadia city, MO +station = ('kfam', 0.0041592048908744399) +zone = ('moz084', 0.0020627908963944809) + +[fips29017] +centroid = (0.65132806145833333, -1.5712256952441799) +description = Bollinger County, MO +station = ('kcgi', 0.0063054295741595294) +zone = ('moz086', 6.9588917365765449e-05) + +[fips2901702] +centroid = (0.67164081415828147, -1.6467292320974001) +description = Archie city, MO +station = ('kojc', 0.0080477222104205371) +zone = ('moz043', 0.0028771433521203294) + +[fips2901717380] +centroid = (0.65309606253731112, -1.5719386447903267) +description = Crooked Creek township, MO +station = ('kfam', 0.0079098584012591688) +zone = ('moz086', 0.0017870703701230492) + +[fips2901720] +centroid = (0.65535830595386857, -1.6384460565470675) +description = Arcola village, MO +station = ('ksgf', 0.0087797850273358072) +zone = ('moz089', 0.0020774791159208794) + +[fips2901724210] +centroid = (0.649993966684694, -1.573838610214048) +description = Filmore township, MO +station = ('kpof', 0.0085285934756586176) +zone = ('moz086', 0.00249223210289718) + +[fips2901741960] +centroid = (0.64914411351202039, -1.5703380905997855) +description = Liberty township, MO +station = ('kcgi', 0.0054715517961416524) +zone = ('moz086', 0.0023648752195014307) + +[fips2901744084] +centroid = (0.65114118905532237, -1.5704954320318527) +description = Lorance township, MO +station = ('kcgi', 0.0056972441516609639) +zone = ('moz086', 0.00065049657920299945) + +[fips2901766314] +centroid = (0.65335145656675542, -1.5695827819126924) +description = Scopus township, MO +station = ('kcgi', 0.0059587817275763583) +zone = ('moz086', 0.002361870224027585) + +[fips2901774518] +centroid = (0.6553168369308412, -1.571989538591315) +description = Union township, MO +station = ('kfam', 0.0063359921544883921) +zone = ('moz086', 0.003965478119977636) + +[fips2901777956] +centroid = (0.64781057724374158, -1.5723347996239445) +description = Wayne township, MO +station = ('kpof', 0.0068926116326163221) +zone = ('moz086', 0.0036876195374815602) + +[fips2901779594] +centroid = (0.65537654464455197, -1.5696260311715569) +description = Whitewater township, MO +station = ('kcgi', 0.007355872822391165) +zone = ('moz076', 0.0031208466932008839) + +[fips2901828] +centroid = (0.66838057402214124, -1.6061485467526948) +description = Argyle town, MO +station = ('kvih', 0.0045388350473233759) +zone = ('moz058', 0.002712172700883449) + +[fips2901864] +centroid = (0.70266294205505209, -1.6550791839449139) +description = Arkoe town, MO +station = ('kicl', 0.0084252297567645289) +zone = ('moz002', 0.0019066878886648739) + +[fips29019] +centroid = (0.6804978888732548, -1.6111270286308386) +description = Boone County, MO +station = ('kcou', 0.0032786927038019539) +zone = ('moz041', 2.4231844807748909e-05) + +[fips2901907498] +centroid = (0.68392707688098819, -1.6113563648945508) +description = Bourbon township, MO +station = ('kver', 0.0064606239222540236) +zone = ('moz041', 0.0034164953009393657) + +[fips2901912142] +centroid = (0.67570919409797292, -1.6103473551473879) +description = Cedar township, MO +station = ('kcou', 0.0018930407582108491) +zone = ('moz048', 0.0036675306412746545) + +[fips2901912916] +centroid = (0.68404544511085841, -1.6084766065353453) +description = Centralia township, MO +station = ('kcou', 0.0066133458869817923) +zone = ('moz041', 0.0040770675813953166) + +[fips2901915688] +centroid = (0.67985223922306448, -1.6097806292859727) +description = Columbia township, MO +station = ('kcou', 0.0023847709898004326) +zone = ('moz041', 0.0012260451699868606) + +[fips2901938045] +centroid = (0.68027139749622345, -1.6139666618705408) +description = Katy township, MO +station = ('kver', 0.0028750432330822777) +zone = ('moz041', 0.0022367380521347317) + +[fips2901948944] +centroid = (0.67991601355393239, -1.6121751861131239) +description = Missouri township, MO +station = ('kcou', 0.0032136373776557475) +zone = ('moz041', 0.0010249128187225093) + +[fips2901954] +centroid = (0.68537648555830688, -1.6179930491884291) +description = Armstrong city, MO +station = ('kver', 0.0057545953093691947) +zone = ('moz040', 0.0022103949196193217) + +[fips2901957026] +centroid = (0.68221414093991084, -1.6130505036395839) +description = Perche township, MO +station = ('kver', 0.0043599552209643401) +zone = ('moz041', 0.0022723075308916413) + +[fips2901962592] +centroid = (0.67834238979374917, -1.6124527109174835) +description = Rock Bridge township, MO +station = ('kcou', 0.0024680094297858161) +zone = ('moz041', 0.0024128438644410955) + +[fips2901962840] +centroid = (0.6821927257499889, -1.6096015061448403) +description = Rocky Fork township, MO +station = ('kcou', 0.0047149664903858701) +zone = ('moz041', 0.0020438871966904646) + +[fips2901972] +centroid = (0.67066030563780377, -1.5772420371620217) +description = Arnold city, MO +station = ('kcps', 0.0038731896562358443) +zone = ('ilz102', 0.003677958730820581) + +[fips2901973129] +centroid = (0.67749998917698162, -1.6102713984183408) +description = Three Creeks township, MO +station = ('kcou', 0.00061351502073057321) +zone = ('moz041', 0.0030853143291150963) + +[fips2902034] +centroid = (0.63781444829903922, -1.6340186798335337) +description = Arrow Point village, MO +station = ('kbbg', 0.005928137791043224) +zone = ('arz002', 0.0037361885569375934) + +[fips2902044] +centroid = (0.68190013875418454, -1.6222354908144221) +description = Arrow Rock town, MO +station = ('kver', 0.0042761964061336123) +zone = ('moz039', 0.0036434599794944083) + +[fips2902098] +centroid = (0.65053554235158784, -1.6511714266562836) +description = Asbury city, MO +station = ('kjln', 0.0025962500471848268) +zone = ('moz088', 0.0038706245306075293) + +[fips29021] +centroid = (0.69220403905918348, -1.6547147766503898) +description = Buchanan County, MO +station = ('kstj', 0.0023587346122631659) +zone = ('moz020', 2.8315060874089287e-05) + +[fips2902100316] +centroid = (0.69232715458461913, -1.6535606253226312) +description = Agency township, MO +station = ('kstj', 0.0029148107599417301) +zone = ('moz020', 0.00087217329637419522) + +[fips2902106418] +centroid = (0.69076257162996135, -1.6570481247806736) +description = Bloomington township, MO +station = ('kstj', 0.0033140269826650846) +zone = ('moz020', 0.002318599737889687) + +[fips2902112484] +centroid = (0.69232959804557193, -1.6549935929983959) +description = Center township, MO +station = ('kstj', 0.0021294416761157712) +zone = ('moz020', 0.00027660793580932793) + +[fips2902117110] +centroid = (0.69069637129143324, -1.654821119561714) +description = Crawford township, MO +station = ('kstj', 0.0036333952497858393) +zone = ('moz020', 0.001501640335190889) + +[fips2902135594] +centroid = (0.69063563383346382, -1.6533430874846624) +description = Jackson township, MO +station = ('kstj', 0.0042471852698748027) +zone = ('moz020', 0.0018681510723640856) + +[fips2902139800] +centroid = (0.69192112118743521, -1.6584230951653949) +description = Lake township, MO +station = ('kstj', 0.0025536075282463085) +zone = ('moz020', 0.0028945749150243341) + +[fips2902145938] +centroid = (0.69399218123772921, -1.6520892254967374) +description = Marion township, MO +station = ('kstj', 0.0034743934207838952) +zone = ('moz020', 0.0026844509425805324) + +[fips2902152] +centroid = (0.69020396154956809, -1.5912509224031544) +description = Ashburn town, MO +station = ('kppq', 0.0055379236189319458) +zone = ('moz036', 0.0035251194415286168) + +[fips2902158124] +centroid = (0.69073127787647304, -1.6519069956695367) +description = Platte township, MO +station = ('kstj', 0.0049163603866055625) +zone = ('moz020', 0.00258916929341699) + +[fips2902163542] +centroid = (0.69052782484556807, -1.6589633443820571) +description = Rush township, MO +station = ('kstj', 0.0039695651862806823) +zone = ('moz020', 0.0036963986204954966) + +[fips2902173798] +centroid = (0.69203446286905979, -1.6520832041108178) +description = Tremont township, MO +station = ('kstj', 0.0040272333414010514) +zone = ('moz020', 0.0020058933644926964) + +[fips2902177236] +centroid = (0.69391332726212407, -1.6548603022034214) +description = Washington township, MO +station = ('kstj', 0.0013516290816902004) +zone = ('moz020', 0.0017248017429560539) + +[fips2902177974] +centroid = (0.69217264058594008, -1.6569310306411573) +description = Wayne township, MO +station = ('kstj', 0.0019028849627019564) +zone = ('moz020', 0.0017328356711638271) + +[fips2902188] +centroid = (0.6513174673097738, -1.6332994471020792) +description = Ash Grove city, MO +station = ('ksgf', 0.0031175595342639991) +zone = ('moz090', 0.0034803285407549222) + +[fips2902242] +centroid = (0.67671406741480866, -1.6103208261427575) +description = Ashland city, MO +station = ('kcou', 0.0010047341616318893) +zone = ('moz041', 0.0038508966930745612) + +[fips2902260] +centroid = (0.68509882112760701, -1.5921508141654828) +description = Ashley CDP, MO +station = ('kppq', 0.0090165741766000031) +zone = ('moz036', 0.0017297618624059496) + +[fips29023] +centroid = (0.64080077646237166, -1.5778322726084615) +description = Butler County, MO +station = ('kpof', 0.0015066146177687609) +zone = ('moz109', 5.1733977539048922e-05) + +[fips2902302224] +centroid = (0.64022673767139082, -1.5750769387716304) +description = Ash Hill township, MO +station = ('kpof', 0.0017794696503884468) +zone = ('moz109', 0.0023335544540459287) + +[fips2902303826] +centroid = (0.64072059603653508, -1.5803004299701691) +description = Beaver Dam township, MO +station = ('kpof', 0.0033341462486928567) +zone = ('moz109', 0.0019340744269389805) + +[fips2902306076] +centroid = (0.64371917641121645, -1.5783753841650969) +description = Black River township, MO +station = ('kpof', 0.0026034724516014549) +zone = ('moz109', 0.0029229456474000473) + +[fips2902311044] +centroid = (0.64389456454774929, -1.5811646995624642) +description = Cane Creek township, MO +station = ('kpof', 0.0044537929751549549) +zone = ('moz109', 0.0040386301983644877) + +[fips2902316264] +centroid = (0.63791326884128718, -1.5780861831080413) +description = Coon Island township, MO +station = ('kpof', 0.0040416445125515755) +zone = ('moz109', 0.0029130106671691322) + +[fips2902322492] +centroid = (0.6425518653008977, -1.5805642888464857) +description = Epps township, MO +station = ('kpof', 0.0035017152165457556) +zone = ('moz109', 0.0027528280817836395) + +[fips2902327046] +centroid = (0.63778947263744323, -1.5756608561261776) +description = Gillis Bluff township, MO +station = ('kpof', 0.0039458573229055613) +zone = ('moz109', 0.0035213589317821072) + +[fips2902351392] +centroid = (0.63819054929955155, -1.5799272785760927) +description = Neely township, MO +station = ('k4m9', 0.00339472157083851) +zone = ('moz109', 0.0030974595869713846) + +[fips2902359114] +centroid = (0.64102368991443648, -1.5776721735561758) +description = Poplar Bluff township, MO +station = ('kpof', 0.0012747257369415282) +zone = ('moz109', 0.00026728450547925715) + +[fips2902364262] +centroid = (0.64340428410757167, -1.5758827572872762) +description = St. Francois township, MO +station = ('kpof', 0.0017409771192907) +zone = ('moz109', 0.0030421336121222303) + +[fips2902422] +centroid = (0.69635537449822205, -1.6140853442596765) +description = Atlanta city, MO +station = ('kirk', 0.0036429442350165322) +zone = ('moz025', 0.00163120432642274) + +[fips29025] +centroid = (0.69218009314184603, -1.6402461018711121) +description = Caldwell County, MO +station = ('kcdj', 0.005983101695717195) +zone = ('moz022', 7.5369472338032175e-05) + +[fips2902508146] +centroid = (0.69363664021580551, -1.6373423103281064) +description = Breckenridge township, MO +station = ('kcdj', 0.0033393505806364357) +zone = ('moz022', 0.0027393132703281359) + +[fips2902512] +centroid = (0.67314596865190901, -1.5861667259322172) +description = Augusta town, MO +station = ('kfyg', 0.0015796081874968719) +zone = ('moz062', 0.0038181565781304273) + +[fips2902518370] +centroid = (0.69067808024087229, -1.6373991382485513) +description = Davis township, MO +station = ('kcdj', 0.0052785822820384598) +zone = ('moz022', 0.0026668988915175482) + +[fips2902523464] +centroid = (0.69225570080504251, -1.6373474241428148) +description = Fairview township, MO +station = ('kcdj', 0.0040829895459264451) +zone = ('moz022', 0.0022840874405934924) + +[fips2902527784] +centroid = (0.69357661834282935, -1.6394467585269912) +description = Gomer township, MO +station = ('kcdj', 0.0048870046907131962) +zone = ('moz022', 0.0015983795089763537) + +[fips2902528396] +centroid = (0.69066787006474806, -1.641408386433185) +description = Grant township, MO +station = ('kcdj', 0.0075333192569570061) +zone = ('moz022', 0.0016831291087756497) + +[fips2902530] +centroid = (0.68098375363042485, -1.6349874771947306) +description = Aullville village, MO +station = ('krcm', 0.0044646422868570863) +zone = ('moz038', 0.0016831950640832103) + +[fips2902530052] +centroid = (0.6936411431652757, -1.6412777136320884) +description = Hamilton township, MO +station = ('kcdj', 0.0062373121424824781) +zone = ('moz022', 0.0016915558067571927) + +[fips2902538540] +centroid = (0.69353399740249566, -1.6432244015198851) +description = Kidder township, MO +station = ('kcdj', 0.0077261904438425729) +zone = ('moz022', 0.0026501497063748571) + +[fips2902538864] +centroid = (0.69217351325056609, -1.6412695978510665) +description = Kingston township, MO +station = ('kcdj', 0.0066944798546096735) +zone = ('moz022', 0.00074106665236458257) + +[fips2902542626] +centroid = (0.69072209744460755, -1.6394600404825987) +description = Lincoln township, MO +station = ('kcdj', 0.0063179990940913106) +zone = ('moz022', 0.0015457099629621151) + +[fips2902548] +centroid = (0.64521267210544042, -1.6357148606137919) +description = Aurora city, MO +station = ('khfj', 0.004356049648713581) +zone = ('moz094', 0.0028864208369612631) + +[fips2902548872] +centroid = (0.6920969456562811, -1.6432351003882) +description = Mirabile township, MO +station = ('kcdj', 0.0081222591866319839) +zone = ('moz022', 0.0022527225304552201) + +[fips2902552400] +centroid = (0.69210382225353395, -1.6393495785942402) +description = New York township, MO +station = ('kcdj', 0.0054198260270278556) +zone = ('moz022', 0.00073912574300370325) + +[fips2902562624] +centroid = (0.69073695019654213, -1.6432022183850923) +description = Rockford township, MO +station = ('kcdj', 0.008672510431902692) +zone = ('moz022', 0.0026241416598854076) + +[fips2902638] +centroid = (0.6809836140040848, -1.6038809800819189) +description = Auxvasse city, MO +station = ('kcou', 0.00559399751422982) +zone = ('moz050', 0.0032029608584676979) + +[fips2902674] +centroid = (0.6450094808739234, -1.6173227380359083) +description = Ava city, MO +station = ('kbbg', 0.010544615219230172) +zone = ('moz096', 0.0023655326136598313) + +[fips29027] +centroid = (0.6778154748925721, -1.6043780149463016) +description = Callaway County, MO +station = ('kcou', 0.0039924082717405036) +zone = ('moz050', 2.7223724147622126e-05) + +[fips2902702656] +centroid = (0.67640795411730137, -1.6015014854462124) +description = Auxvasse township, MO +station = ('kjef', 0.005974189846234117) +zone = ('moz050', 0.0026649164430074443) + +[fips2902707516] +centroid = (0.67913990054215556, -1.607303518385202) +description = Bourbon township, MO +station = ('kcou', 0.0023756102010139817) +zone = ('moz050', 0.0026163999177527698) + +[fips2902710414] +centroid = (0.6757595293936004, -1.6055407009341029) +description = Caldwell township, MO +station = ('kjef', 0.0029944738282602452) +zone = ('moz050', 0.0022290513592056415) + +[fips2902710666] +centroid = (0.67914531106283671, -1.602826958293347) +description = Calwood township, MO +station = ('kcou', 0.0054450896723898081) +zone = ('moz050', 0.0018198102635097683) + +[fips2902712160] +centroid = (0.67553096107475918, -1.6076557258282544) +description = Cedar township, MO +station = ('kjef', 0.0019060242164183191) +zone = ('moz050', 0.0034029830827987852) + +[fips2902714752] +centroid = (0.68062428561768418, -1.6077954917947543) +description = Cleveland township, MO +station = ('kcou', 0.0034091762076774545) +zone = ('moz041', 0.0025755971676306813) + +[fips2902716642] +centroid = (0.67422156271003542, -1.605517610228099) +description = Cote Sans Dessein township, MO +station = ('kjef', 0.0022522893857432869) +zone = ('moz049', 0.0034351565359129217) + +[fips2902720854] +centroid = (0.6778154748925721, -1.6043780149463016) +description = East Fulton township, MO +station = ('kcou', 0.0039924082717405036) +zone = ('moz050', 2.7223724147622126e-05) + +[fips2902729800] +centroid = (0.6765784727852211, -1.6076360559675846) +description = Guthrie township, MO +station = ('kcou', 0.0016988100228225336) +zone = ('moz050', 0.0027974706569588478) + +[fips2902735612] +centroid = (0.68079424578024339, -1.6029797618693591) +description = Jackson township, MO +station = ('kcou', 0.006050699880204507) +zone = ('moz050', 0.0031878142688967553) + +[fips2902741996] +centroid = (0.68125614716678373, -1.6056973093278843) +description = Liberty township, MO +station = ('kcou', 0.0047906329912532257) +zone = ('moz050', 0.0035909384655468698) + +[fips2902744876] +centroid = (0.67998277239782123, -1.6049229765519446) +description = McCredie township, MO +station = ('kcou', 0.0043447515044301678) +zone = ('moz050', 0.0022115687663580848) + +[fips2902746] +centroid = (0.64915444586119209, -1.6428756672820441) +description = Avilla town, MO +station = ('khfj', 0.005351369163250832) +zone = ('moz088', 0.0029349008452043872) + +[fips2902752508] +centroid = (0.67855479636371696, -1.6005030000344389) +description = Nine Mile Prairie township, MO +station = ('kjef', 0.00779631177436034) +zone = ('moz051', 0.0033364397129763907) + +[fips2902763362] +centroid = (0.67764575907610825, -1.6071007983925831) +description = Round Prairie township, MO +station = ('kcou', 0.0018646216755329535) +zone = ('moz050', 0.0021012883244265063) + +[fips2902764010] +centroid = (0.67584068720381818, -1.6034625723003384) +description = St. Aubert township, MO +station = ('kjef', 0.0043573675612299913) +zone = ('moz050', 0.0021011448399590404) + +[fips2902766962] +centroid = (0.68081916908196194, -1.6002043567461302) +description = Shamrock township, MO +station = ('kcou', 0.0079561617752629543) +zone = ('moz051', 0.0031369960803720415) + +[fips2902771548] +centroid = (0.6740626330283489, -1.6079658882896266) +description = Summit township, MO +station = ('kjef', 0.00045888853834832671) +zone = ('moz048', 0.002891253885385507) + +[fips2902778766] +centroid = (0.6785728954280601, -1.6057220406433852) +description = West Fulton township, MO +station = ('kcou', 0.0031278703359205345) +zone = ('moz050', 0.0012758386402419066) + +[fips2902800] +centroid = (0.68337625096905874, -1.6501271787115228) +description = Avondale city, MO +station = ('kmkc', 0.00099279739589989524) +zone = ('moz029', 0.0031999984175046705) + +[fips29029] +centroid = (0.66378353385202082, -1.6190570891669074) +description = Camden County, MO +station = ('kh21', 0.0014962118944486869) +zone = ('moz069', 8.6251859900011613e-05) + +[fips2902900190] +centroid = (0.66568871781020533, -1.6222580404683575) +description = Adair township, MO +station = ('kh21', 0.004641958346150183) +zone = ('moz069', 0.0032016932473449681) + +[fips2902902476] +centroid = (0.66154312450440578, -1.6146547753814322) +description = Auglaize township, MO +station = ('kh21', 0.0026989947802662138) +zone = ('moz081', 0.0044128931716878646) + +[fips2902935630] +centroid = (0.66353534803238723, -1.6151956529166251) +description = Jackson township, MO +station = ('kaiz', 0.0014375480279679594) +zone = ('moz057', 0.0037820671739980873) + +[fips2902936476] +centroid = (0.66594275048283313, -1.6195041901613909) +description = Jasper township, MO +station = ('kh21', 0.003524559928313787) +zone = ('moz069', 0.0022702605685627) + +[fips2902938585] +centroid = (0.66351897684400352, -1.6177498026505788) +description = Kiheka township, MO +station = ('kh21', 0.00081746630680384783) +zone = ('moz069', 0.0010569871751513746) + +[fips2902952410] +centroid = (0.66377323640943409, -1.6195722405489261) +description = Niangua township, MO +station = ('kh21', 0.0017945083702975068) +zone = ('moz069', 0.00040103370341160942) + +[fips2902955046] +centroid = (0.66499903350298728, -1.617994951597314) +description = Osage township, MO +station = ('kh21', 0.0023058897449156719) +zone = ('moz069', 0.0015529574960436699) + +[fips2902955378] +centroid = (0.66404262797947944, -1.6189793172954388) +description = Osceola township, MO +station = ('kh21', 0.0016563127287993252) +zone = ('moz069', 0.00035219834587524247) + +[fips2902956596] +centroid = (0.66645310220940879, -1.6181958389942184) +description = Pawhuska township, MO +station = ('kaiz', 0.0027161312388056906) +zone = ('moz069', 0.0028399803543607454) + +[fips2902962] +centroid = (0.66723647579087386, -1.6162485227878909) +description = Bagnell town, MO +station = ('kaiz', 0.0023850477060501436) +zone = ('moz057', 0.0024255715876194206) + +[fips2902963668] +centroid = (0.66291919444655567, -1.6223197029508307) +description = Russell township, MO +station = ('kh21', 0.0036121077862752101) +zone = ('moz069', 0.0026748696490092524) + +[fips2902977038] +centroid = (0.66224354258652363, -1.6184560326791058) +description = Warren township, MO +station = ('kh21', 0.00072349371747356252) +zone = ('moz069', 0.0015334717348793822) + +[fips2903034] +centroid = (0.64181938552042062, -1.5666318664798828) +description = Baker village, MO +station = ('kpof', 0.007764101484525862) +zone = ('moz110', 0.0029299981533426425) + +[fips2903052] +centroid = (0.6375110926217501, -1.6082858944079796) +description = Bakersfield village, MO +station = ('kbpk', 0.0052742707355022487) +zone = ('arz005', 0.0049518495512598168) + +[fips29031] +centroid = (0.65247182807704285, -1.5652969339482026) +description = Cape Girardeau County, MO +station = ('kcgi', 0.0029820127950843109) +zone = ('moz087', 5.6669098388311411e-06) + +[fips2903101450] +centroid = (0.65497209949698731, -1.566754964552026) +description = Apple Creek township, MO +station = ('kcgi', 0.0057346118748230939) +zone = ('moz087', 0.0027572681512725802) + +[fips2903110234] +centroid = (0.6526959632595839, -1.5655126740970418) +description = Byrd township, MO +station = ('kcgi', 0.0032608951640889492) +zone = ('moz087', 0.00028539195970357916) + +[fips2903111260] +centroid = (0.65095045947466446, -1.5634348421692499) +description = Cape Girardeau township, MO +station = ('kcgi', 0.0011084808500544353) +zone = ('moz087', 0.0021190845923495963) + +[fips2903124] +centroid = (0.67710280459910532, -1.6449351383461048) +description = Baldwin Park village, MO +station = ('klxt', 0.0034013799721962011) +zone = ('moz043', 0.0029674285950707013) + +[fips2903133454] +centroid = (0.65071810379134631, -1.565804789853948) +description = Hubble township, MO +station = ('kcgi', 0.0020145992698098452) +zone = ('moz087', 0.0018011979433860494) + +[fips2903138702] +centroid = (0.6519955102708811, -1.5676539836497285) +description = Kinder township, MO +station = ('kcgi', 0.0039270632221717824) +zone = ('moz087', 0.0019383902302007813) + +[fips2903142014] +centroid = (0.65030271542937179, -1.5678477501032848) +description = Liberty township, MO +station = ('kcgi', 0.0034721770949363204) +zone = ('moz086', 0.0029177079611176285) + +[fips2903160] +centroid = (0.6736103484059871, -1.5803957424006205) +description = Ballwin city, MO +station = ('ksus', 0.0016672121606233631) +zone = ('moz063', 0.0016627230579870419) + +[fips2903160572] +centroid = (0.65270177520599304, -1.5624834282874027) +description = Randol township, MO +station = ('kcgi', 0.0029749707530896288) +zone = ('moz087', 0.0022415094760428939) + +[fips2903167070] +centroid = (0.65468864057317089, -1.563724305025693) +description = Shawnee township, MO +station = ('kcgi', 0.0048469938899419222) +zone = ('moz087', 0.0025411812797405263) + +[fips2903178280] +centroid = (0.64914243799593851, -1.5667305997556682) +description = Welch township, MO +station = ('kcgi', 0.0026482944389658045) +zone = ('moz087', 0.0035214898773069337) + +[fips2903179630] +centroid = (0.65369603692097666, -1.5672858588038978) +description = Whitewater township, MO +station = ('kcgi', 0.0048764735739256502) +zone = ('moz087', 0.0020027607939368522) + +[fips29033] +centroid = (0.68813750916849925, -1.6318868125121) +description = Carroll County, MO +station = ('kcdj', 0.0068856671318500125) +zone = ('moz031', 6.6457483323369639e-05) + +[fips2903311584] +centroid = (0.68763394677271383, -1.6314921935682241) +description = Carrollton township, MO +station = ('kcdj', 0.0074351360673516973) +zone = ('moz031', 0.00061717485170859467) + +[fips2903313510] +centroid = (0.68483330418850119, -1.6354854021770322) +description = Cherry Valley township, MO +station = ('krcm', 0.0080947476311616362) +zone = ('moz038', 0.0031946351789144136) + +[fips2903315742] +centroid = (0.68757436123205073, -1.6294587977231882) +description = Combs township, MO +station = ('kcdj', 0.0079412152097347293) +zone = ('moz031', 0.0020188703768347976) + +[fips2903319360] +centroid = (0.68768616702393359, -1.6271339144397767) +description = De Witt township, MO +station = ('kcdj', 0.0086799247431842939) +zone = ('moz032', 0.0040829168154661857) + +[fips2903321412] +centroid = (0.68616568853947357, -1.6355663854543245) +description = Egypt township, MO +station = ('kcdj', 0.0089330756812478675) +zone = ('moz031', 0.0034015000308613725) + +[fips2903322] +centroid = (0.70240480785868198, -1.6092962306053742) +description = Baring city, MO +station = ('kirk', 0.0052393251349053547) +zone = ('moz018', 0.0021765132513382221) + +[fips2903322780] +centroid = (0.68607131858681836, -1.6293611814581241) +description = Eugene township, MO +station = ('kcdj', 0.0093758332370657161) +zone = ('moz031', 0.0028811904485356696) + +[fips2903323302] +centroid = (0.68910751080688015, -1.6354799916563509) +description = Fairfield township, MO +station = ('kcdj', 0.0060535650938215325) +zone = ('moz031', 0.0028805567185761012) + +[fips2903332176] +centroid = (0.69052426437389414, -1.6336015635955994) +description = Hill township, MO +station = ('kcdj', 0.0044123548564314885) +zone = ('moz031', 0.0027066881311945509) + +[fips2903334012] +centroid = (0.69054934475524521, -1.6290998707625157) +description = Hurricane township, MO +station = ('kcdj', 0.0054625172685076962) +zone = ('moz031', 0.0032828474769486487) + +[fips2903340] +centroid = (0.70119094881721256, -1.654973015566515) +description = Barnard city, MO +station = ('kstj', 0.0072409644590366012) +zone = ('moz002', 0.0033347218104179512) + +[fips2903341672] +centroid = (0.68908499605952944, -1.6333487701067406) +description = Leslie township, MO +station = ('kcdj', 0.0058469411224398044) +zone = ('moz031', 0.0014307857516699719) + +[fips2903350276] +centroid = (0.68608929547811381, -1.633421724869474) +description = Moss Creek township, MO +station = ('kcdj', 0.0088428745874570454) +zone = ('moz031', 0.0023260494052971367) + +[fips2903359510] +centroid = (0.68749535017681307, -1.6355213734129157) +description = Prairie township, MO +station = ('kcdj', 0.0076245931814499807) +zone = ('moz031', 0.0028143911364266485) + +[fips2903361832] +centroid = (0.68904802998597214, -1.6296861443115531) +description = Ridge township, MO +station = ('kcdj', 0.0065210147193786264) +zone = ('moz031', 0.0019905549372190657) + +[fips2903362642] +centroid = (0.6889929823013643, -1.6280334396829619) +description = Rockford township, MO +station = ('kcdj', 0.007207601335235553) +zone = ('moz031', 0.0031618638067101319) + +[fips2903370882] +centroid = (0.69062294528980184, -1.6315073779327167) +description = Stokes Mound township, MO +station = ('kcdj', 0.0045332122864397174) +zone = ('moz031', 0.0025210794275438153) + +[fips2903371422] +centroid = (0.68486611637843875, -1.6329135897110483) +description = Sugartree township, MO +station = ('krcm', 0.0086670012696280843) +zone = ('moz031', 0.003341708250493086) + +[fips2903373906] +centroid = (0.68746005961933765, -1.6335398487532489) +description = Trotter township, MO +station = ('kcdj', 0.0074735005898657527) +zone = ('moz031', 0.0013831770689976758) + +[fips2903375742] +centroid = (0.68927019294645853, -1.6316156057996329) +description = Van Horn township, MO +station = ('kcdj', 0.0058148351799624971) +zone = ('moz031', 0.0011753568097431796) + +[fips2903376] +centroid = (0.66981212798121204, -1.6174765713561792) +description = Barnett city, MO +station = ('kaiz', 0.0051340549370548546) +zone = ('moz056', 0.0030047746721819923) + +[fips2903376552] +centroid = (0.68622394762990513, -1.6313689733230334) +description = Wakenda township, MO +station = ('kcdj', 0.0088391866958310202) +zone = ('moz031', 0.00195975011332882) + +[fips2903377254] +centroid = (0.69053632459902525, -1.6356047477912836) +description = Washington township, MO +station = ('kcdj', 0.0047292399739818046) +zone = ('moz031', 0.0036961546435914116) + +[fips2903394] +centroid = (0.66910769564181449, -1.5778745095763598) +description = Barnhart CDP, MO +station = ('kcps', 0.0053161443578376771) +zone = ('moz065', 0.002245656468875683) + +[fips29035] +centroid = (0.6448081047848282, -1.5873006139873607) +description = Carter County, MO +station = ('kpof', 0.0093174332716498779) +zone = ('moz107', 0.00024040267533289989) + +[fips2903511620] +centroid = (0.64588792253974459, -1.5886819548238513) +description = Carter township, MO +station = ('kpof', 0.010735589819651035) +zone = ('moz107', 0.0014351822849975253) + +[fips2903535666] +centroid = (0.64559898328207688, -1.5846805955274366) +description = Jackson township, MO +station = ('kpof', 0.0077393872182655475) +zone = ('moz107', 0.0024769267892012655) + +[fips2903537376] +centroid = (0.6434927024874777, -1.5846204514814128) +description = Johnson township, MO +station = ('kpof', 0.0068801183639792575) +zone = ('moz107', 0.0026867565667074845) + +[fips2903538162] +centroid = (0.64305914524798968, -1.5880577378168756) +description = Kelly township, MO +station = ('k4m9', 0.0090970689190876235) +zone = ('moz107', 0.0017288369149331812) + +[fips2903556] +centroid = (0.68076316146626525, -1.6416626809052008) +description = Bates City city, MO +station = ('klxt', 0.0042088454930935713) +zone = ('moz037', 0.0038760925384617798) + +[fips2903557530] +centroid = (0.64552686627738454, -1.5909090996691513) +description = Pike township, MO +station = ('kpof', 0.012279428370908271) +zone = ('moz107', 0.0027629676761264737) + +[fips2903592] +centroid = (0.64784611214731214, -1.6295846359622572) +description = Battlefield city, MO +station = ('ksgf', 0.0020090211456439133) +zone = ('moz090', 0.0024578076547902136) + +[fips29037] +centroid = (0.67452017109175921, -1.6467921861235195) +description = Cass County, MO +station = ('klxt', 0.0055790205331559262) +zone = ('moz043', 8.0966114450348423e-06) + +[fips2903702620] +centroid = (0.67222359704881496, -1.6462041497919375) +description = Austin township, MO +station = ('klxt', 0.0078980251225985801) +zone = ('moz043', 0.0023409140113117358) + +[fips2903705374] +centroid = (0.67694678961726951, -1.6467393899136469) +description = Big Creek township, MO +station = ('klxt', 0.0031568295606733657) +zone = ('moz043', 0.0024298835389135209) + +[fips2903710936] +centroid = (0.67432546216040679, -1.6447153490334014) +description = Camp Branch township, MO +station = ('klxt', 0.0060416569481936801) +zone = ('moz043', 0.0016410213523736813) + +[fips2903715382] +centroid = (0.67240313906896754, -1.6503313996872986) +description = Coldwater township, MO +station = ('kojc', 0.0058795130986109773) +zone = ('moz043', 0.0034758422538920261) + +[fips2903718604] +centroid = (0.67204925610983335, -1.6441803881643728) +description = Dayton township, MO +station = ('krcm', 0.007304699184107007) +zone = ('moz043', 0.0032081145700686127) + +[fips2903719738] +centroid = (0.67395733731457608, -1.649289473030443) +description = Dolan township, MO +station = ('kojc', 0.004985970708747906) +zone = ('moz043', 0.0020223281330946992) + +[fips2903722942] +centroid = (0.67233208671511901, -1.6486070143863283) +description = Everett township, MO +station = ('kojc', 0.0066042865882462555) +zone = ('moz043', 0.0026012601310230481) + +[fips2903728252] +centroid = (0.67390988181221434, -1.6471388608728432) +description = Grand River township, MO +station = ('klxt', 0.0061875775345597373) +zone = ('moz043', 0.00066208376572646796) + +[fips2903735072] +centroid = (0.67409294939745601, -1.6434558147254072) +description = Index township, MO +station = ('krcm', 0.0056565640930086886) +zone = ('moz043', 0.0026480215409364675) + +[fips2903750564] +centroid = (0.67707835253628479, -1.650394214087078) +description = Mount Pleasant township, MO +station = ('kojc', 0.0024483468149224621) +zone = ('moz043', 0.0037965503975942198) + +[fips2903756774] +centroid = (0.67546409751111536, -1.64678609492443) +description = Peculiar township, MO +station = ('klxt', 0.004635788367830667) +zone = ('moz043', 0.00094678215872329695) + +[fips2903758412] +centroid = (0.6767168424883192, -1.6452152811443426) +description = Pleasant Hill township, MO +station = ('klxt', 0.0036569634644144531) +zone = ('moz043', 0.0025239719140976017) + +[fips2903758718] +centroid = (0.67660039412062623, -1.6438270462573064) +description = Polk township, MO +station = ('klxt', 0.0042850688701845177) +zone = ('moz043', 0.0031189891240739624) + +[fips2903760770] +centroid = (0.67712514481353081, -1.6486084804629) +description = Raymore township, MO +station = ('klxt', 0.0032217935575477807) +zone = ('moz043', 0.0029642765549299419) + +[fips2903767394] +centroid = (0.67208123054172986, -1.6424784827041679) +description = Sherman township, MO +station = ('krcm', 0.0063369431152784676) +zone = ('moz043', 0.0041663911214219326) + +[fips2903774536] +centroid = (0.67575171031855141, -1.6504799097533509) +description = Union township, MO +station = ('kojc', 0.0030470648139439261) +zone = ('moz043', 0.0031251958430069593) + +[fips2903778694] +centroid = (0.67407275593801053, -1.650515758816187) +description = West Dolan township, MO +station = ('kojc', 0.0043311821401895321) +zone = ('moz043', 0.0029349272460220022) + +[fips2903778892] +centroid = (0.67560222286811811, -1.6486698113328151) +description = West Peculiar township, MO +station = ('kojc', 0.0042833605453992014) +zone = ('moz043', 0.001817471172722694) + +[fips29039] +centroid = (0.65857651856162092, -1.6379917473427736) +description = Cedar County, MO +station = ('ksgf', 0.010864016548152243) +zone = ('moz078', 0.00019455096696306947) + +[fips2903904600] +centroid = (0.65747980601954525, -1.6407177072882935) +description = Benton township, MO +station = ('kjln', 0.011379365879283182) +zone = ('moz078', 0.0022634747053661202) + +[fips2903907696] +centroid = (0.66026938321630035, -1.6406402495760899) +description = Box township, MO +station = ('kgly', 0.010241566095003209) +zone = ('moz078', 0.0027363850840198332) + +[fips2903912178] +centroid = (0.66046231191181581, -1.6383259778945305) +description = Cedar township, MO +station = ('kgly', 0.0094116798487423638) +zone = ('moz078', 0.0020650806766028267) + +[fips2903936728] +centroid = (0.65828347778021101, -1.6349185541425695) +description = Jefferson township, MO +station = ('ksgf', 0.0093499795836700598) +zone = ('moz078', 0.0025247424513951651) + +[fips2903943166] +centroid = (0.65753820473631697, -1.63830152583171) +description = Linn township, MO +station = ('ksgf', 0.01021005878871749) +zone = ('moz078', 0.00087992058437759478) + +[fips2903945344] +centroid = (0.65670385008740106, -1.6352211418749878) +description = Madison township, MO +station = ('ksgf', 0.0080789015430133039) +zone = ('moz078', 0.0028475234546109021) + +[fips2903977272] +centroid = (0.6596561443303196, -1.6365185498277504) +description = Washington township, MO +station = ('kgly', 0.0099221078809189397) +zone = ('moz078', 0.0017728556523813055) + +[fips29041] +centroid = (0.68971867275105103, -1.6224863644411034) +description = Chariton County, MO +station = ('kver', 0.010782075531919209) +zone = ('moz032', 6.1963747850336728e-05) + +[fips2904103952] +centroid = (0.69223627529046783, -1.6193001960784179) +description = Bee Branch township, MO +station = ('kirk', 0.0082336693649248654) +zone = ('moz032', 0.0035694046381144983) + +[fips2904107624] +centroid = (0.68713940772916127, -1.6230494949242595) +description = Bowling Green township, MO +station = ('kver', 0.0086266631651526968) +zone = ('moz032', 0.0025537757108357166) + +[fips2904109064] +centroid = (0.68850514532213936, -1.62470406705515) +description = Brunswick township, MO +station = ('kcdj', 0.0092471984427767526) +zone = ('moz032', 0.0020528698600277826) + +[fips2904113204] +centroid = (0.68581508679933312, -1.6210005656488808) +description = Chariton township, MO +station = ('kver', 0.0067319964927671583) +zone = ('moz040', 0.0036015730912808564) + +[fips2904114] +centroid = (0.67271368550277499, -1.5757785262243471) +description = Bella Villa city, MO +station = ('kcps', 0.0018919495866397103) +zone = ('moz064', 0.0017003109784458484) + +[fips2904114014] +centroid = (0.69224933035327274, -1.6217127996100347) +description = Clark township, MO +station = ('kirk', 0.0090763934017293203) +zone = ('moz032', 0.0026618766497492107) + +[fips2904115238] +centroid = (0.69066956303412264, -1.6197848391051117) +description = Cockrell township, MO +station = ('kirk', 0.0098298154705764203) +zone = ('moz032', 0.0023276684837388096) + +[fips2904117776] +centroid = (0.69193131391026685, -1.6267385973642001) +description = Cunningham township, MO +station = ('kcdj', 0.0058955001368266426) +zone = ('moz024', 0.004149067856797869) + +[fips2904132] +centroid = (0.64619084188472076, -1.5676432324215361) +description = Bell City city, MO +station = ('kcgi', 0.0049125022417883081) +zone = ('moz110', 0.0034195118264317955) + +[fips2904138504] +centroid = (0.68856061188576778, -1.6220022101066003) +description = Keytesville township, MO +station = ('kver', 0.009566949566636505) +zone = ('moz032', 0.0011637026743951666) + +[fips2904147306] +centroid = (0.69073014341245931, -1.625683161858934) +description = Mendon township, MO +station = ('kcdj', 0.0072346267781207693) +zone = ('moz032', 0.0026760521079310291) + +[fips2904150] +centroid = (0.66820171268039685, -1.6008415764560333) +description = Belle city, MO +station = ('kvih', 0.002721040185340199) +zone = ('moz058', 0.0035255482977081072) + +[fips2904150924] +centroid = (0.69067010408619067, -1.6217181577708384) +description = Musselfork township, MO +station = ('kirk', 0.0104421686402838) +zone = ('moz032', 0.0011793281477799637) + +[fips2904165468] +centroid = (0.68784361317575593, -1.6194247602271326) +description = Salisbury township, MO +station = ('kver', 0.0083371664475928881) +zone = ('moz032', 0.0029903153683955913) + +[fips2904165486] +centroid = (0.69074958638032646, -1.6235534587457729) +description = Salt Creek township, MO +station = ('kcdj', 0.0086117740043580859) +zone = ('moz032', 0.001358992633189613) + +[fips2904173888] +centroid = (0.68952282935568476, -1.626725071062497) +description = Triplett township, MO +station = ('kcdj', 0.007427577201727255) +zone = ('moz032', 0.0032598156644303906) + +[fips2904177902] +centroid = (0.68983105450158699, -1.6189487565802363) +description = Wayland township, MO +station = ('kver', 0.010255507781665113) +zone = ('moz032', 0.0027475685700139789) + +[fips2904181286] +centroid = (0.6921271747589256, -1.6239366108764632) +description = Yellow Creek township, MO +station = ('kcdj', 0.0077540876222547137) +zone = ('moz032', 0.00270483314925366) + +[fips2904222] +centroid = (0.67635822968691195, -1.5747714188860689) +description = Bellefontaine Neighbors city, MO +station = ('kstl', 0.0018912490324204481) +zone = ('moz064', 0.0020498144150995984) + +[fips2904240] +centroid = (0.67565671204736533, -1.5762439182693913) +description = Bellerive village, MO +station = ('kstl', 0.00099243105702056427) +zone = ('moz064', 0.0016180931897551455) + +[fips29043] +centroid = (0.64524366915295583, -1.6264306863775631) +description = Christian County, MO +station = ('ksgf', 0.0053467750464513018) +zone = ('moz095', 1.8095832971319902e-05) + +[fips2904309010] +centroid = (0.64574850563909525, -1.6226062685607157) +description = Bruner township, MO +station = ('ksgf', 0.0070787866166479464) +zone = ('moz095', 0.0031144687745044124) + +[fips2904311878] +centroid = (0.64677652202181246, -1.627278026276114) +description = Cassidy township, MO +station = ('ksgf', 0.0036882307699576881) +zone = ('moz095', 0.0016706078909382929) + +[fips2904312970] +centroid = (0.64425033246247587, -1.6238233564613012) +description = Chadwick township, MO +station = ('kbbg', 0.0070544430964249198) +zone = ('moz095', 0.0023237240912638586) + +[fips2904320746] +centroid = (0.64692084329765998, -1.6222353686413742) +description = East Benton township, MO +station = ('ksgf', 0.0067342721598133365) +zone = ('moz095', 0.0037632757646233689) + +[fips2904320846] +centroid = (0.64547194076582426, -1.626807886935504) +description = East Finley township, MO +station = ('ksgf', 0.0049989983217793212) +zone = ('moz095', 0.00036543411016816483) + +[fips2904321041] +centroid = (0.6465104640306385, -1.6323246109016705) +description = East Polk township, MO +station = ('ksgf', 0.0038751012034167654) +zone = ('moz090', 0.0045481929753902412) + +[fips2904326441] +centroid = (0.64610345324907348, -1.6281746542727409) +description = Garden Grove township, MO +station = ('ksgf', 0.0039712372347776668) +zone = ('moz095', 0.0016229463751969602) + +[fips2904326542] +centroid = (0.64320535147942937, -1.6234192080197094) +description = Garrison township, MO +station = ('kbbg', 0.0062023717614642206) +zone = ('moz095', 0.0031669333365412665) + +[fips2904330] +centroid = (0.68074677282458917, -1.5943873139755733) +description = Bellflower city, MO +station = ('kfyg', 0.0087462247784993452) +zone = ('moz051', 0.0019426131428197848) + +[fips2904341006] +centroid = (0.64464081497602455, -1.6220483915186081) +description = Lead Hill township, MO +station = ('kbbg', 0.0079746843816015326) +zone = ('moz095', 0.0035708239860263512) + +[fips2904342644] +centroid = (0.64646599304129759, -1.6305369050554377) +description = Lincoln township, MO +station = ('ksgf', 0.0034227893490052057) +zone = ('moz095', 0.0034836370092257117) + +[fips2904342968] +centroid = (0.64677566681047893, -1.6249474183127557) +description = Linden township, MO +station = ('ksgf', 0.0049665606521941529) +zone = ('moz095', 0.0019493547126965681) + +[fips2904344858] +centroid = (0.64573262314290214, -1.6256819750350426) +description = McCracken township, MO +station = ('ksgf', 0.0052853023436766431) +zone = ('moz095', 0.00078798249120434489) + +[fips2904348] +centroid = (0.67547250999810993, -1.5763463690964834) +description = Bel-Nor village, MO +station = ('kstl', 0.0010719840440936094) +zone = ('moz064', 0.0015209436730413335) + +[fips2904353066] +centroid = (0.64474363232225951, -1.6279257528681139) +description = North Galloway township, MO +station = ('ksgf', 0.0053258220074573846) +zone = ('moz095', 0.0012776632516004866) + +[fips2904353147] +centroid = (0.64425108295405431, -1.6259474047076861) +description = North Linn township, MO +station = ('ksgf', 0.0064001770803187585) +zone = ('moz095', 0.0010694846302629851) + +[fips2904353341] +centroid = (0.64697330789497487, -1.6280041879646987) +description = Northview township, MO +station = ('ksgf', 0.0032247297620213128) +zone = ('moz095', 0.0021292535436519553) + +[fips2904354308] +centroid = (0.64523141694160691, -1.6235274882465032) +description = Oldfield township, MO +station = ('ksgf', 0.0068322356749763629) +zone = ('moz095', 0.002337485299343983) + +[fips2904362116] +centroid = (0.6468992535748127, -1.6266582074988529) +description = Riverside township, MO +station = ('ksgf', 0.0038899502665020588) +zone = ('moz095', 0.0016660764566521773) + +[fips2904363133] +centroid = (0.64604933058896907, -1.6288874990991329) +description = Rosedale township, MO +station = ('ksgf', 0.0038712146079749109) +zone = ('moz095', 0.0021055953609619331) + +[fips2904366] +centroid = (0.67566927841797975, -1.5765300475469635) +description = Bel-Ridge village, MO +station = ('kstl', 0.00082875789739624776) +zone = ('moz064', 0.0017636464467051542) + +[fips2904366656] +centroid = (0.64319599651463855, -1.6220467683624038) +description = Seneca township, MO +station = ('kbbg', 0.0067284294353192522) +zone = ('moz104', 0.0037478152539892062) + +[fips2904368816] +centroid = (0.64325715285162843, -1.6278784020855073) +description = South Galloway township, MO +station = ('kbbg', 0.0057734565172651723) +zone = ('moz095', 0.0022880663906864641) + +[fips2904368948] +centroid = (0.64327526936926416, -1.6252733760038582) +description = South Linn township, MO +station = ('kbbg', 0.0058117957705409815) +zone = ('moz095', 0.0021805519138611024) + +[fips2904369320] +centroid = (0.64555936430805672, -1.6247861149832865) +description = Sparta township, MO +station = ('ksgf', 0.0058861275700359287) +zone = ('moz095', 0.0013691805020676917) + +[fips2904375104] +centroid = (0.6470315844386989, -1.6292487124411257) +description = Union Chapel township, MO +station = ('ksgf', 0.0028527604443680105) +zone = ('moz095', 0.0028613468023928413) + +[fips2904378550] +centroid = (0.64686378848441217, -1.6237680295240131) +description = West Benton township, MO +station = ('ksgf', 0.005688442240232571) +zone = ('moz095', 0.0026887229598416525) + +[fips2904378752] +centroid = (0.64567371828064735, -1.6273943699240518) +description = West Finley township, MO +station = ('ksgf', 0.0046062432306611572) +zone = ('moz095', 0.00086738985393879629) + +[fips2904378954] +centroid = (0.64678493450880714, -1.6331812708584268) +description = West Polk township, MO +station = ('ksgf', 0.0040527356101902135) +zone = ('moz094', 0.0036969771388328924) + +[fips2904384] +centroid = (0.67751489428879375, -1.649852568607014) +description = Belton city, MO +station = ('kojc', 0.002781997192995355) +zone = ('moz043', 0.0038272771429264528) + +[fips29045] +centroid = (0.70523999050879171, -1.600981307515948) +description = Clark County, MO +station = ('keok', 0.0040681949788809024) +zone = ('moz010', 0.00012986604099111582) + +[fips2904514302] +centroid = (0.70375000292636414, -1.5976261389217916) +description = Clay township, MO +station = ('keok', 0.002879411012608293) +zone = ('moz010', 0.0030880959085604438) + +[fips2904519234] +centroid = (0.70546286905427147, -1.5981171524002553) +description = Des Moines township, MO +station = ('keok', 0.0019333605240588873) +zone = ('moz010', 0.0023055922488847418) + +[fips2904524922] +centroid = (0.70755363387182046, -1.6038632300834259) +description = Folker township, MO +station = ('keok', 0.0062531507463462572) +zone = ('moz010', 0.0030678505066067605) + +[fips2904525] +centroid = (0.65857754830587956, -1.6206476251675426) +description = Bennett Springs CDP, MO +station = ('kh21', 0.0047177839147301334) +zone = ('moz080', 0.0024908604713894211) + +[fips2904528414] +centroid = (0.70832356841804522, -1.6012890090630745) +description = Grant township, MO +station = ('keok', 0.0046387184490369864) +zone = ('moz010', 0.0030329814722782063) + +[fips2904535684] +centroid = (0.70366856586346616, -1.6001032498225622) +description = Jackson township, MO +station = ('keok', 0.0041809296013761163) +zone = ('moz010', 0.0018051769901078676) + +[fips2904536746] +centroid = (0.70732031825741382, -1.6018666432323145) +description = Jefferson township, MO +station = ('keok', 0.0047205135986295244) +zone = ('moz010', 0.0021021166851292379) + +[fips2904542662] +centroid = (0.70564443565635637, -1.601695391526109) +description = Lincoln township, MO +station = ('keok', 0.0045210601984978964) +zone = ('moz010', 0.00055162411017419997) + +[fips2904545362] +centroid = (0.70556059003909055, -1.5996996075264533) +description = Madison township, MO +station = ('keok', 0.0030434061695776148) +zone = ('moz010', 0.0011267252615509615) + +[fips2904571872] +centroid = (0.70703939006101291, -1.5999190652265991) +description = Sweet Home township, MO +station = ('keok', 0.0032148402236349453) +zone = ('moz010', 0.0019772526222281905) + +[fips2904574554] +centroid = (0.70372188567211447, -1.6018440237652087) +description = Union township, MO +station = ('keok', 0.0052561174216629088) +zone = ('moz010', 0.0016606696949802277) + +[fips2904575868] +centroid = (0.70409207000646257, -1.5966078091164229) +description = Vernon township, MO +station = ('keok', 0.0022668532992674299) +zone = ('ilz034', 0.0043164196153837788) + +[fips2904577290] +centroid = (0.70369275612689874, -1.6038609087955209) +description = Washington township, MO +station = ('keok', 0.0066519855323309103) +zone = ('moz010', 0.0026205336466165671) + +[fips2904581160] +centroid = (0.70570456224908751, -1.6037735376131661) +description = Wyaconda township, MO +station = ('keok', 0.0060848814411247282) +zone = ('moz010', 0.0020488707536330595) + +[fips29047] +centroid = (0.68618581218574914, -1.6479660945784109) +description = Clay County, MO +station = ('kmkc', 0.0042278861177106617) +zone = ('moz029', 8.8664781629083157e-05) + +[fips2904713780] +centroid = (0.68440142246509517, -1.649376477693655) +description = Chouteau township, MO +station = ('kmkc', 0.002143080142945513) +zone = ('moz029', 0.0020224957115043836) + +[fips2904724292] +centroid = (0.68554785943756014, -1.6455837376027311) +description = Fishing River township, MO +station = ('kmkc', 0.0051166025080009768) +zone = ('moz029', 0.001914846645631154) + +[fips2904726290] +centroid = (0.68390932688249539, -1.6505831110720213) +description = Gallatin township, MO +station = ('kmkc', 0.0012556558101487233) +zone = ('moz029', 0.0029890940642054546) + +[fips2904738090] +centroid = (0.6874979507173985, -1.6474148846940462) +description = Kearney township, MO +station = ('kmkc', 0.0055624965689974023) +zone = ('moz029', 0.0014609995568011446) + +[fips2904742050] +centroid = (0.68521745115686505, -1.6480319982109664) +description = Liberty township, MO +station = ('kmkc', 0.0034424644656490294) +zone = ('moz029', 0.00088228071196227184) + +[fips2904758142] +centroid = (0.6873235923251243, -1.6498643495794649) +description = Platte township, MO +station = ('kmci', 0.0030821047008773549) +zone = ('moz029', 0.0019198483418360636) + +[fips2904777308] +centroid = (0.68769454460434309, -1.6453344173190838) +description = Washington township, MO +station = ('kmkc', 0.0066783922585658857) +zone = ('moz029', 0.00257919410637667) + +[fips2904798] +centroid = (0.64751568641332458, -1.563191176752379) +description = Benton city, MO +station = ('kcgi', 0.0023436381516279779) +zone = ('moz111', 0.00082106883988479582) + +[fips2904834] +centroid = (0.68302673133305436, -1.6015990318981064) +description = Benton City village, MO +station = ('kcou', 0.0082680598749870233) +zone = ('moz042', 0.0017575345685240109) + +[fips2904888] +centroid = (0.67486663640157252, -1.5942030072065627) +description = Berger city, MO +station = ('kfyg', 0.0049341199665758253) +zone = ('moz060', 0.0029894402212312125) + +[fips29049] +centroid = (0.69130262886040594, -1.6475175624139409) +description = Clinton County, MO +station = ('kmci', 0.007051451252884396) +zone = ('moz021', 0.00016909440391469748) + +[fips2904902332] +centroid = (0.69099674245570142, -1.6502086332277133) +description = Atchison township, MO +station = ('kmci', 0.0056512367702940512) +zone = ('moz021', 0.001964040067008043) + +[fips2904906] +centroid = (0.67620010285668131, -1.5766584514200326) +description = Berkeley city, MO +station = ('kstl', 0.00043462707980964287) +zone = ('moz064', 0.0022494900720577177) + +[fips2904914950] +centroid = (0.6892323891148604, -1.6478089276792689) +description = Clinton township, MO +station = ('kmci', 0.0054529733549838928) +zone = ('moz021', 0.0019523056794793373) + +[fips2904915976] +centroid = (0.69083043003127886, -1.6480014200424713) +description = Concord township, MO +station = ('kmci', 0.0064501900797082701) +zone = ('moz021', 0.0004338834799812071) + +[fips2904930304] +centroid = (0.6894469249865155, -1.6499827003560428) +description = Hardin township, MO +station = ('kmci', 0.0044143678044006309) +zone = ('moz021', 0.0024872798839051025) + +[fips2904935702] +centroid = (0.68924179643952854, -1.6456691714696161) +description = Jackson township, MO +station = ('kmci', 0.0068441646665283332) +zone = ('moz021', 0.0024792431780452616) + +[fips2904939674] +centroid = (0.69282555080581865, -1.6499833810344509) +description = Lafayette township, MO +station = ('kstj', 0.005242169634497109) +zone = ('moz021', 0.002423156563073479) + +[fips2904940844] +centroid = (0.69103150941440117, -1.645355675429373) +description = Lathrop township, MO +station = ('kmci', 0.008053282782378603) +zone = ('moz021', 0.0017904477561597422) + +[fips2904958160] +centroid = (0.69276814692672062, -1.6478969969933244) +description = Platte township, MO +station = ('kmci', 0.0080661319789848192) +zone = ('moz021', 0.0015958546555704114) + +[fips2904960] +centroid = (0.64004223891616252, -1.5702847707911372) +description = Bernie city, MO +station = ('kpof', 0.0051160734341963825) +zone = ('moz110', 0.0032285775008778603) + +[fips2904967592] +centroid = (0.69268988636306106, -1.6453333526682401) +description = Shoal township, MO +station = ('kmci', 0.0092053902550232915) +zone = ('moz021', 0.0023483312329236135) + +[fips2904996] +centroid = (0.64416133812391663, -1.5612432496808131) +description = Bertrand city, MO +station = ('kcir', 0.0042487442222671956) +zone = ('moz112', 0.0026494493165509746) + +[fips2905068] +centroid = (0.70280921809966168, -1.6411094813454887) +description = Bethany city, MO +station = ('klwd', 0.0066011867570896238) +zone = ('moz005', 0.0015894190513789067) + +[fips29051] +centroid = (0.67207126471170098, -1.6104398052378659) +description = Cole County, MO +station = ('kjef', 0.00232143983133388) +zone = ('moz048', 0.00014122666783352255) + +[fips2905104] +centroid = (0.69599841975960419, -1.6060984907097478) +description = Bethel village, MO +station = ('kirk', 0.0080478913913282959) +zone = ('moz026', 0.0015718323713503821) + +[fips2905114032] +centroid = (0.67052338455798477, -1.6114429855853269) +description = Clark township, MO +station = ('kjef', 0.0040051124922286154) +zone = ('moz048', 0.0016556698131985619) + +[fips2905136764] +centroid = (0.67320984770253189, -1.6097520233395326) +description = Jefferson township, MO +station = ('kjef', 0.0012201712930673583) +zone = ('moz048', 0.0013449958429121855) + +[fips2905142068] +centroid = (0.67228388072117895, -1.6070088369942956) +description = Liberty township, MO +station = ('kjef', 0.0017463711603220911) +zone = ('moz049', 0.0030847894370514346) + +[fips2905145974] +centroid = (0.67428144495667153, -1.6121845236246219) +description = Marion township, MO +station = ('kjef', 0.003074828412900864) +zone = ('moz048', 0.0025475364058228801) + +[fips2905149844] +centroid = (0.67210620620332584, -1.6128581683560141) +description = Moreau township, MO +station = ('kjef', 0.0038885373984574785) +zone = ('moz048', 0.0017541619380675385) + +[fips2905155082] +centroid = (0.67081469746343514, -1.6093282923037333) +description = Osage township, MO +station = ('kjef', 0.0029882183975979827) +zone = ('moz048', 0.0015936285603624313) + +[fips2905248] +centroid = (0.6754051577422755, -1.5758587066501837) +description = Beverly Hills city, MO +station = ('kstl', 0.0013842897154468686) +zone = ('moz064', 0.0012451291194338614) + +[fips2905266] +centroid = (0.69377603966316226, -1.6155691882831371) +description = Bevier city, MO +station = ('kirk', 0.006104424476633584) +zone = ('moz025', 0.0014025950984355509) + +[fips29053] +centroid = (0.67797988490811001, -1.6198806227744611) +description = Cooper County, MO +station = ('kver', 0.0024408885655736096) +zone = ('moz046', 3.7800592435316032e-05) + +[fips2905306166] +centroid = (0.67968213943416511, -1.6232553739628246) +description = Blackwater township, MO +station = ('kdmo', 0.0045148742137248723) +zone = ('moz046', 0.0031671577354942955) + +[fips2905307336] +centroid = (0.67969845826267117, -1.6188759763504281) +description = Boonville township, MO +station = ('kver', 0.0010170972380764295) +zone = ('moz046', 0.0019006577377573724) + +[fips2905314122] +centroid = (0.67803453116698997, -1.6177865592846257) +description = Clark Fork township, MO +station = ('kver', 0.0016054573758525037) +zone = ('moz046', 0.0016054488656423224) + +[fips2905314626] +centroid = (0.67797389842877565, -1.6228951554585058) +description = Clear Creek township, MO +station = ('kdmo', 0.0033356592944302978) +zone = ('moz046', 0.0023754560291906557) + +[fips2905320] +centroid = (0.65635810036258102, -1.5679635526991547) +description = Biehle CDP, MO +station = ('kcgi', 0.0074068448067185046) +zone = ('moz076', 0.0017645332041686759) + +[fips2905338198] +centroid = (0.67625703549688132, -1.619768974062211) +description = Kelly township, MO +station = ('kver', 0.0037835599922584951) +zone = ('moz046', 0.0016979566110056853) + +[fips2905340502] +centroid = (0.68056611379371523, -1.6219569886256813) +description = Lamine township, MO +station = ('kver', 0.0035358701702335764) +zone = ('moz046', 0.0030858909078355372) + +[fips2905341150] +centroid = (0.67610013039712713, -1.6220397346855182) +description = Lebanon township, MO +station = ('kdmo', 0.0031616636880850094) +zone = ('moz046', 0.0025223329634336674) + +[fips2905353156] +centroid = (0.67661219254636973, -1.6171894123343484) +description = North Moniteau township, MO +station = ('kver', 0.003033619257491633) +zone = ('moz046', 0.0024665588228972584) + +[fips2905355496] +centroid = (0.67612494897909048, -1.6234618987732132) +description = Otterville township, MO +station = ('kdmo', 0.0020682330911982257) +zone = ('moz046', 0.0033602531685002655) + +[fips2905356000] +centroid = (0.67802400683160047, -1.6201878879892746) +description = Palestine township, MO +station = ('kver', 0.0025944107506436086) +zone = ('moz046', 0.00027585266906087868) + +[fips2905357620] +centroid = (0.67908041972124755, -1.6213503470842729) +description = Pilot Grove township, MO +station = ('kver', 0.0029912758755531398) +zone = ('moz046', 0.0016253476964829781) + +[fips2905359744] +centroid = (0.67768771679132611, -1.6161423369561994) +description = Prairie Home township, MO +station = ('kver', 0.0022392361493994628) +zone = ('moz046', 0.0028966616737957146) + +[fips2905365306] +centroid = (0.67927217904616422, -1.6159279058042995) +description = Saline township, MO +station = ('kver', 0.0013277714073276535) +zone = ('moz046', 0.003322208928002343) + +[fips2905368978] +centroid = (0.67551200679908252, -1.6171935836712608) +description = South Moniteau township, MO +station = ('kver', 0.0041296938913624251) +zone = ('moz047', 0.0016124569570914202) + +[fips2905464] +centroid = (0.70004999217859876, -1.6631142783953676) +description = Bigelow village, MO +station = ('kfnb', 0.0039512533343063006) +zone = ('moz011', 0.0010289262568190681) + +[fips2905495] +centroid = (0.69940093913636714, -1.6641806745683361) +description = Big Lake village, MO +station = ('kfnb', 0.003114544113609482) +zone = ('moz011', 0.00184964342381382) + +[fips29055] +centroid = (0.66264149510927084, -1.5937287837955034) +description = Crawford County, MO +station = ('kvih', 0.0068695077086726461) +zone = ('moz072', 0.00021946803079735109) + +[fips2905504618] +centroid = (0.66471150796201361, -1.5944659585116683) +description = Benton township, MO +station = ('kvih', 0.0056996365625150633) +zone = ('moz072', 0.0020292604911989641) + +[fips2905507156] +centroid = (0.66606005406185964, -1.5918261305647343) +description = Boone township, MO +station = ('kfyg', 0.0079627380499762736) +zone = ('moz072', 0.0035207060402780025) + +[fips2905516930] +centroid = (0.66218420139195577, -1.5915346954862362) +description = Courtois township, MO +station = ('kvih', 0.008635444230377343) +zone = ('moz072', 0.0017129292103819605) + +[fips2905539242] +centroid = (0.6642999069645158, -1.5970274211751876) +description = Knobview township, MO +station = ('kvih', 0.0038327914225113817) +zone = ('moz072', 0.0031131839214592156) + +[fips2905542086] +centroid = (0.66417066533340563, -1.5915018483897136) +description = Liberty township, MO +station = ('kfyg', 0.0096757946954781366) +zone = ('moz072', 0.0021119327064766319) + +[fips2905547360] +centroid = (0.66278665414315918, -1.5950786737988734) +description = Meramec township, MO +station = ('kvih', 0.0058535786939632409) +zone = ('moz072', 0.0012010325691003546) + +[fips2905553696] +centroid = (0.66624233624893792, -1.5954398696875733) +description = Oak Hill township, MO +station = ('kvih', 0.0049167332843185673) +zone = ('moz072', 0.0037362388205374165) + +[fips2905555100] +centroid = (0.65967537785867658, -1.5918585762355286) +description = Osage township, MO +station = ('kvih', 0.0096896258049344632) +zone = ('moz072', 0.0034116694052650316) + +[fips2905574572] +centroid = (0.66038337066974795, -1.5955186887565935) +description = Union township, MO +station = ('kvih', 0.0070655160739537901) +zone = ('moz072', 0.0028816111357170496) + +[fips2905608] +centroid = (0.67709959319328172, -1.5966783902313737) +description = Big Spring CDP, MO +station = ('kfyg', 0.007582707936351317) +zone = ('moz051', 0.0025636432517364776) + +[fips2905626] +centroid = (0.64685637083509118, -1.6328233910953054) +description = Billings city, MO +station = ('ksgf', 0.003815395890355421) +zone = ('moz094', 0.0039608268581493508) + +[fips29057] +centroid = (0.65331775425889937, -1.6380766401575906) +description = Dade County, MO +station = ('ksgf', 0.0074086097086689326) +zone = ('moz089', 6.3740786042774337e-05) + +[fips2905712196] +centroid = (0.65494726346173138, -1.6407970499560891) +description = Cedar township, MO +station = ('kjln', 0.0094388985367486675) +zone = ('moz089', 0.0027592939623203262) + +[fips2905712502] +centroid = (0.65341153079960901, -1.63782459716031) +description = Center township, MO +station = ('ksgf', 0.0072775121242135482) +zone = ('moz089', 0.00016929487376419984) + +[fips2905722564] +centroid = (0.65437985692190803, -1.6396131582178763) +description = Ernest township, MO +station = ('ksgf', 0.0089903926943158269) +zone = ('moz089', 0.0016695059419483127) + +[fips2905728432] +centroid = (0.65149793435443004, -1.6409252618429404) +description = Grant township, MO +station = ('khfj', 0.0074714875598443685) +zone = ('moz089', 0.0029503979861481905) + +[fips2905734] +centroid = (0.64571389576002824, -1.5968308796481203) +description = Birch Tree city, MO +station = ('kuno', 0.0060298757708837428) +zone = ('moz098', 0.0030789788908038452) + +[fips2905743508] +centroid = (0.65271133961029393, -1.6396159856512647) +description = Lockwood township, MO +station = ('khfj', 0.0087505255366690949) +zone = ('moz089', 0.001419301907206479) + +[fips2905745992] +centroid = (0.65323907481621946, -1.6412006573456128) +description = Marion township, MO +station = ('kjln', 0.0080875496092538204) +zone = ('moz089', 0.0025452573929743479) + +[fips2905752868] +centroid = (0.65512450164727143, -1.6387440191569682) +description = North township, MO +station = ('ksgf', 0.0088238711933276634) +zone = ('moz089', 0.0019073745492087977) + +[fips2905753192] +centroid = (0.65527484430903826, -1.6348865971639652) +description = North Morgan township, MO +station = ('ksgf', 0.0067473308388505022) +zone = ('moz089', 0.0031534626012915874) + +[fips2905757584] +centroid = (0.65211644413475178, -1.6365092297695445) +description = Pilgrim township, MO +station = ('ksgf', 0.005766547803746822) +zone = ('moz089', 0.0016807742776596879) + +[fips2905758754] +centroid = (0.65303131082206201, -1.635254687103211) +description = Polk township, MO +station = ('ksgf', 0.005352757207731749) +zone = ('moz089', 0.0021955990755106996) + +[fips2905762732] +centroid = (0.65146067157489984, -1.6349729211487691) +description = Rock Prairie township, MO +station = ('ksgf', 0.004387532006948758) +zone = ('moz089', 0.0030331062703843458) + +[fips2905763812] +centroid = (0.65484781460095276, -1.6368741257562589) +description = Sac township, MO +station = ('ksgf', 0.0074981176525927241) +zone = ('moz089', 0.0017758221570617486) + +[fips2905768312] +centroid = (0.65139804916133837, -1.6388859144251553) +description = Smith township, MO +station = ('khfj', 0.0075545854315451459) +zone = ('moz089', 0.0020398820955345566) + +[fips2905768618] +centroid = (0.65115876452088994, -1.6370209777595217) +description = South township, MO +station = ('ksgf', 0.0058585700080595491) +zone = ('moz089', 0.0022882839803066352) + +[fips2905768996] +centroid = (0.65426059857411922, -1.6349522040905478) +description = South Morgan township, MO +station = ('ksgf', 0.0059976870388804403) +zone = ('moz089', 0.002596344294992687) + +[fips2905777326] +centroid = (0.65202858426020627, -1.637963298475966) +description = Washington township, MO +station = ('ksgf', 0.0068163968296128322) +zone = ('moz089', 0.0012833363706994958) + +[fips2905824] +centroid = (0.68360314377181797, -1.6484648747720458) +description = Birmingham village, MO +station = ('kmkc', 0.0022153726676194035) +zone = ('moz029', 0.0025257173123363961) + +[fips2905878] +centroid = (0.65916441526686265, -1.5816608094023437) +description = Bismarck city, MO +station = ('kfam', 0.002609800034143064) +zone = ('moz074', 0.0021958808568616297) + +[fips29059] +centroid = (0.65770259729856229, -1.6237463350814108) +description = Dallas County, MO +station = ('kh21', 0.0068886885327382385) +zone = ('moz080', 0.00015160191178776407) + +[fips2905928450] +centroid = (0.65909966355161376, -1.6251484976958779) +description = Grant township, MO +station = ('kh21', 0.0068648674555901968) +zone = ('moz080', 0.0019164527648085382) + +[fips2905935720] +centroid = (0.65513507834253859, -1.6248252627184085) +description = Jackson township, MO +station = ('ksgf', 0.0066265824278990935) +zone = ('moz080', 0.0027021896172141741) + +[fips2905936494] +centroid = (0.65824342247387779, -1.6219924362627893) +description = Jasper township, MO +station = ('kh21', 0.005578678786412823) +zone = ('moz080', 0.0013820432831171761) + +[fips2905942680] +centroid = (0.66076795397042498, -1.6254046771234858) +description = Lincoln township, MO +station = ('kh21', 0.0063442135241294989) +zone = ('moz068', 0.0030017126119113139) + +[fips2905948188] +centroid = (0.66024109142912546, -1.6219556272688647) +description = Miller township, MO +station = ('kh21', 0.0041339446552071061) +zone = ('moz080', 0.0028904006449868469) + +[fips2905950] +centroid = (0.68250871761106247, -1.6316335826909283) +description = Blackburn city, MO +station = ('kszl', 0.0065430082735361394) +zone = ('moz039', 0.0038787370628164033) + +[fips2905952886] +centroid = (0.65767720275794583, -1.6247831653768505) +description = North Benton township, MO +station = ('kh21', 0.0074928685513331898) +zone = ('moz080', 0.00096210241920129602) + +[fips2905967304] +centroid = (0.6537105406070608, -1.6254748917192936) +description = Sheridan township, MO +station = ('ksgf', 0.005198811440272128) +zone = ('moz080', 0.0042166736166971107) + +[fips2905967412] +centroid = (0.66022283528514958, -1.6234964039325253) +description = Sherman township, MO +station = ('kh21', 0.0051706887255967412) +zone = ('moz080', 0.0025764155291499104) + +[fips2905968636] +centroid = (0.65631375154628779, -1.6245765707532918) +description = South Benton township, MO +station = ('ksgf', 0.0077053986742849981) +zone = ('moz080', 0.0015541372325611025) + +[fips2905977344] +centroid = (0.65519010857385385, -1.6217917233988097) +description = Washington township, MO +station = ('kh21', 0.008164215732464928) +zone = ('moz080', 0.0028313928882327576) + +[fips2905980170] +centroid = (0.65652062542252676, -1.6219863625169924) +description = Wilson township, MO +station = ('kh21', 0.0070308805324710644) +zone = ('moz080', 0.0016844240789176831) + +[fips2906004] +centroid = (0.67716998232201464, -1.5753942919895207) +description = Black Jack city, MO +station = ('kstl', 0.0016442558113221775) +zone = ('moz064', 0.0028591166750685632) + +[fips29061] +centroid = (0.6974831189943983, -1.640086823123575) +description = Daviess County, MO +station = ('kcdj', 0.0057730610230261594) +zone = ('moz014', 0.00020998717556108045) + +[fips2906104636] +centroid = (0.69957988774457402, -1.6432388004862142) +description = Benton township, MO +station = ('kcdj', 0.0089005447521331906) +zone = ('moz014', 0.0030702853499232539) + +[fips2906115472] +centroid = (0.69505636084254774, -1.6433691067681679) +description = Colfax township, MO +station = ('kcdj', 0.0077060017417797623) +zone = ('moz014', 0.0033245022390719545) + +[fips2906128270] +centroid = (0.69832948150856788, -1.6399740399473111) +description = Grand River township, MO +station = ('kcdj', 0.0061201170767431878) +zone = ('moz014', 0.00093099743054338266) + +[fips2906130502] +centroid = (0.69493467648709861, -1.6376276193009298) +description = Harrison township, MO +station = ('kcdj', 0.0032953853746850014) +zone = ('moz014', 0.0032694968759590139) + +[fips2906135738] +centroid = (0.69643366996846656, -1.6372236453922633) +description = Jackson township, MO +station = ('kcdj', 0.0033398896726841462) +zone = ('moz014', 0.0026067534652303138) + +[fips2906136350] +centroid = (0.69818557911174095, -1.6373344563464725) +description = Jamesport township, MO +station = ('kcdj', 0.0044706622204794856) +zone = ('moz014', 0.0024308805242986955) + +[fips2906136782] +centroid = (0.69679690789239157, -1.6431273263068893) +description = Jefferson township, MO +station = ('kcdj', 0.0077418246520701076) +zone = ('moz014', 0.0022213184853996722) + +[fips2906142104] +centroid = (0.69679362667339784, -1.641202036155722) +description = Liberty township, MO +station = ('kcdj', 0.0063167630546210555) +zone = ('moz014', 0.00091958633212125814) + +[fips2906142698] +centroid = (0.69957451213047794, -1.637643798503096) +description = Lincoln township, MO +station = ('kcdj', 0.005696734062515447) +zone = ('moz014', 0.0029743527546922765) + +[fips2906146010] +centroid = (0.69801041786801077, -1.6425461840258526) +description = Marion township, MO +station = ('kcdj', 0.0077058619890093567) +zone = ('moz014', 0.0017704698910145252) + +[fips2906148] +centroid = (0.68031529252691103, -1.6230160020559139) +description = Blackwater city, MO +station = ('kdmo', 0.0051607744882736142) +zone = ('moz046', 0.0034150887551982908) + +[fips2906149304] +centroid = (0.69505449334024816, -1.6393101166998525) +description = Monroe township, MO +station = ('kcdj', 0.0045891104963398091) +zone = ('moz014', 0.0025224473258642346) + +[fips2906165198] +centroid = (0.69979390001745356, -1.6412928979965808) +description = Salem township, MO +station = ('kcdj', 0.0077991941262291909) +zone = ('moz014', 0.0024551680389790541) + +[fips2906167322] +centroid = (0.69509894687629636, -1.6412874874758996) +description = Sheridan township, MO +station = ('kcdj', 0.0061083758326877331) +zone = ('moz014', 0.0024531504790111752) + +[fips2906174590] +centroid = (0.69662713971605006, -1.6393945731823565) +description = Union township, MO +station = ('kcdj', 0.0049486977826284535) +zone = ('moz014', 0.0011018550383889432) + +[fips2906177362] +centroid = (0.69960456670019733, -1.6394308585775055) +description = Washington township, MO +station = ('kcdj', 0.006607165800599799) +zone = ('moz014', 0.002272160932426041) + +[fips2906238] +centroid = (0.6729627439870346, -1.6398728981171582) +description = Blairstown city, MO +station = ('krcm', 0.0044324502875366482) +zone = ('moz054', 0.0037652670263596528) + +[fips2906247] +centroid = (0.70816549394769213, -1.6617455388360762) +description = Blanchard CDP, MO +station = ('kicl', 0.0034144728710616837) +zone = ('iaz091', 0.0029768726685581721) + +[fips2906256] +centroid = (0.66846890513558466, -1.5992986355841001) +description = Bland city, MO +station = ('kvih', 0.003444344802698614) +zone = ('moz059', 0.0029903870990864632) + +[fips29063] +centroid = (0.69629325823014365, -1.6477163030558655) +description = DeKalb County, MO +station = ('kstj', 0.0071846940857384581) +zone = ('moz013', 4.2018212322620311e-05) + +[fips2906300208] +centroid = (0.69609556478577028, -1.6453100176161408) +description = Adams township, MO +station = ('kstj', 0.0089128721450480522) +zone = ('moz013', 0.0018211408143159005) + +[fips2906310720] +centroid = (0.69616235853624409, -1.6473601686219961) +description = Camden township, MO +station = ('kstj', 0.0074072586909309235) +zone = ('moz013', 0.00026201245621454081) + +[fips2906315490] +centroid = (0.69451822347428027, -1.6473028171027755) +description = Colfax township, MO +station = ('kstj', 0.0071660858705982619) +zone = ('moz013', 0.0017723846297416016) + +[fips2906318046] +centroid = (0.69787997195971663, -1.6451673544030829) +description = Dallas township, MO +station = ('kstj', 0.0095754314817626009) +zone = ('moz013', 0.0025079409156856924) + +[fips2906328288] +centroid = (0.69456669126760828, -1.645305217960698) +description = Grand River township, MO +station = ('kmci', 0.01067260172123515) +zone = ('moz013', 0.0024895586266791879) + +[fips2906328468] +centroid = (0.69785421089995725, -1.6473115437490355) +description = Grant township, MO +station = ('kstj', 0.0080812045952885578) +zone = ('moz013', 0.0016105252979628293) + +[fips2906346] +centroid = (0.64585465656420149, -1.5625296096994106) +description = Blodgett village, MO +station = ('kcgi', 0.0040676503262674323) +zone = ('moz111', 0.0010275264840442207) + +[fips2906358772] +centroid = (0.69786026719246164, -1.6499005128015662) +description = Polk township, MO +station = ('kstj', 0.0063990514682394318) +zone = ('moz013', 0.0023353025408937526) + +[fips2906367430] +centroid = (0.6961402103080363, -1.6496806711289851) +description = Sherman township, MO +station = ('kstj', 0.0057128587451373211) +zone = ('moz013', 0.001545834843210426) + +[fips2906377380] +centroid = (0.69454546806390405, -1.6497977129086239) +description = Washington township, MO +station = ('kstj', 0.0052565048865318431) +zone = ('moz013', 0.0023722782403144934) + +[fips2906382] +centroid = (0.64381173122144975, -1.5696014394823963) +description = Bloomfield city, MO +station = ('kpof', 0.0057802076535164561) +zone = ('moz110', 0.00058990816483123058) + +[fips2906454] +centroid = (0.66348101593277264, -1.5746631561125677) +description = Bloomsdale city, MO +station = ('kfam', 0.0052195330972767051) +zone = ('moz075', 0.0021369488157461738) + +[fips29065] +centroid = (0.65630052195055777, -1.5969049863281599) +description = Dent County, MO +station = ('kvih', 0.0099754524912316379) +zone = ('moz083', 0.00017571727875566152) + +[fips2906517830] +centroid = (0.65397035031951256, -1.6000357579403877) +description = Current township, MO +station = ('ktbn', 0.0078281411987000497) +zone = ('moz083', 0.0033275548795386155) + +[fips2906525570] +centroid = (0.65523386397820138, -1.597075976234978) +description = Franklin township, MO +station = ('kvih', 0.010927306150515652) +zone = ('moz083', 0.0011255331417089468) + +[fips2906526] +centroid = (0.63738268874868087, -1.6297662898308047) +description = Blue Eye town, MO +station = ('kbbg', 0.0025136707449783424) +zone = ('arz002', 0.0038344442263627287) + +[fips2906527172] +centroid = (0.65388076256900773, -1.5970695534233308) +description = Gladden township, MO +station = ('ktbn', 0.0098695650497754861) +zone = ('moz083', 0.0024784801791275517) + +[fips2906543202] +centroid = (0.65528826589098599, -1.5943525819234585) +description = Linn township, MO +station = ('kvih', 0.011763625042612144) +zone = ('moz083', 0.0024365367541561034) + +[fips2906547378] +centroid = (0.65719435742038157, -1.5948334375856754) +description = Meramec township, MO +station = ('kvih', 0.0099309912787603118) +zone = ('moz083', 0.0019900605551037868) + +[fips2906552778] +centroid = (0.65875119111316049, -1.5984081685997327) +description = Norman township, MO +station = ('kvih', 0.0072603276916651397) +zone = ('moz083', 0.0026022329511319266) + +[fips2906555118] +centroid = (0.6569223478564582, -1.5922559004397454) +description = Osage township, MO +station = ('kfam', 0.011218706965080601) +zone = ('moz083', 0.0038889801256836638) + +[fips2906567664] +centroid = (0.65881520979012376, -1.5954281759815849) +description = Short Bend township, MO +station = ('kvih', 0.0083254646376218298) +zone = ('moz083', 0.0027952849604206157) + +[fips2906568050] +centroid = (0.65387154723055729, -1.5936063314951834) +description = Sinkin township, MO +station = ('kuno', 0.013067678347679107) +zone = ('moz083', 0.0037315901554385573) + +[fips2906569775] +centroid = (0.6569912010954494, -1.5966348791731215) +description = Spring Creek East township, MO +station = ('kvih', 0.0094252197265166978) +zone = ('moz083', 0.00073741486034649916) + +[fips2906569825] +centroid = (0.65707715856111015, -1.5986788866200097) +description = Spring Creek West township, MO +station = ('kvih', 0.0087893389649884232) +zone = ('moz083', 0.0014323289048223356) + +[fips2906572808] +centroid = (0.65555208986071745, -1.6002316013357538) +description = Texas township, MO +station = ('ktbn', 0.0068731471243629527) +zone = ('moz083', 0.0025989101734598097) + +[fips2906577830] +centroid = (0.65782169856671846, -1.6009849203474997) +description = Watkins township, MO +station = ('ktbn', 0.0056234804088352366) +zone = ('moz071', 0.0033713091687384449) + +[fips2906652] +centroid = (0.68088786524132028, -1.6452802073925168) +description = Blue Springs city, MO +station = ('klxt', 0.0015594003732284035) +zone = ('moz037', 0.00106619017463582) + +[fips29067] +centroid = (0.64483836879405776, -1.6147069258194817) +description = Douglas County, MO +station = ('kbpk', 0.010143739344839347) +zone = ('moz096', 0.00034036566368785421) + +[fips2906704654] +centroid = (0.64467315592706398, -1.6178695845971431) +description = Benton township, MO +station = ('kbbg', 0.0099976722793306046) +zone = ('moz096', 0.0027675114180986575) + +[fips2906707174] +centroid = (0.64485877169301353, -1.615770930891375) +description = Boone township, MO +station = ('kbpk', 0.010257385598937395) +zone = ('moz096', 0.0011202331455126813) + +[fips2906708830] +centroid = (0.64308989794940985, -1.613952838862865) +description = Brown township, MO +station = ('kbpk', 0.0083722514011552469) +zone = ('moz096', 0.0015490742060276755) + +[fips2906709082] +centroid = (0.64283672048811558, -1.6101412317627271) +description = Brush Creek township, MO +station = ('kuno', 0.0050287039085485288) +zone = ('moz096', 0.0038398157390754921) + +[fips2906709190] +centroid = (0.64446430982877045, -1.6102099977352557) +description = Bryan township, MO +station = ('kuno', 0.005052506713572812) +zone = ('moz096', 0.0033588606430571665) + +[fips2906709262] +centroid = (0.64375666608354931, -1.6210704835387157) +description = Buchanan township, MO +station = ('kbbg', 0.0076338655725803964) +zone = ('moz095', 0.0045517947823724061) + +[fips2906710846] +centroid = (0.64325589621456714, -1.6195242963543739) +description = Campbell township, MO +station = ('kbbg', 0.0080598485035175554) +zone = ('moz096', 0.0043049627594983946) + +[fips2906711800] +centroid = (0.64591701717837535, -1.6120084897162659) +description = Cass township, MO +station = ('kuno', 0.0067940331558022553) +zone = ('moz096', 0.0023288521777198074) + +[fips2906713114] +centroid = (0.64439997699254192, -1.6120624552967375) +description = Champion township, MO +station = ('kuno', 0.0065150975315399415) +zone = ('moz096', 0.0018856841596675521) + +[fips2906714320] +centroid = (0.64610950954157786, -1.61390238139419) +description = Clay township, MO +station = ('kuno', 0.0082943060867736486) +zone = ('moz096', 0.0015671214831729416) + +[fips2906714968] +centroid = (0.64604346628268228, -1.6081644020387482) +description = Clinton township, MO +station = ('kuno', 0.0040778540432544943) +zone = ('moz097', 0.0055134084020458801) + +[fips2906724220] +centroid = (0.64617619857229658, -1.6175301355109228) +description = Findley township, MO +station = ('kbbg', 0.011287604678495555) +zone = ('moz096', 0.002952481479591978) + +[fips2906735756] +centroid = (0.64284940903177756, -1.6122073874378233) +description = Jackson township, MO +station = ('kbpk', 0.0082372913375668346) +zone = ('moz096', 0.0024796686697168037) + +[fips2906742] +centroid = (0.70642501671101832, -1.6393440459005111) +description = Blythedale village, MO +station = ('klwd', 0.0027844110724406824) +zone = ('moz005', 0.0022711411872526864) + +[fips2906742716] +centroid = (0.64623466710223831, -1.6193886319116162) +description = Lincoln township, MO +station = ('kbbg', 0.010435244641993874) +zone = ('moz096', 0.0043027568722469609) + +[fips2906745128] +centroid = (0.64452818887939334, -1.608453131856906) +description = McKinley township, MO +station = ('kuno', 0.0036810751511860505) +zone = ('moz097', 0.0046504860211524892) + +[fips2906745272] +centroid = (0.64468865445082169, -1.6137970682271248) +description = McMurtrey township, MO +station = ('kuno', 0.0079248922241364813) +zone = ('moz096', 0.00049762023874489424) + +[fips2906748206] +centroid = (0.64615115309753046, -1.6157966919511346) +description = Miller township, MO +station = ('kbpk', 0.011539382139418811) +zone = ('moz096', 0.0019104466929542375) + +[fips2906761472] +centroid = (0.6429818097088339, -1.6083865300926499) +description = Richland township, MO +station = ('kuno', 0.0036228234340021474) +zone = ('moz097', 0.0039090704231839997) + +[fips2906769374] +centroid = (0.64594431412787656, -1.621090502465236) +description = Spencer township, MO +station = ('ksgf', 0.0079971375183194773) +zone = ('moz095', 0.004340679033692404) + +[fips2906769626] +centroid = (0.6433240862284425, -1.6176603545264141) +description = Spring Creek township, MO +station = ('kbpk', 0.0091339270753793729) +zone = ('moz096', 0.0028946503881415531) + +[fips2906776732] +centroid = (0.6430570857594724, -1.6157366700781586) +description = Walls township, MO +station = ('kbpk', 0.0084757514533348906) +zone = ('moz096', 0.0018694565248000465) + +[fips2906777398] +centroid = (0.64470849884441694, -1.6195841960543023) +description = Washington township, MO +station = ('kbbg', 0.0091111082515337293) +zone = ('moz096', 0.0041384310152130111) + +[fips2906780710] +centroid = (0.64612917940224768, -1.6100758691822401) +description = Wood township, MO +station = ('kuno', 0.0054438108522011563) +zone = ('moz096', 0.0037859214594524143) + +[fips2906832] +centroid = (0.68867075961486113, -1.6322993036275164) +description = Bogard city, MO +station = ('kcdj', 0.0063119901092461806) +zone = ('moz031', 0.00059925249666420942) + +[fips29069] +centroid = (0.63098932080582293, -1.5718828640674332) +description = Dunklin County, MO +station = ('kbyh', 0.0036176900204129901) +zone = ('moz113', 0.0021136112342937737) + +[fips2906909532] +centroid = (0.62915984923058998, -1.5759254131341949) +description = Buffalo township, MO +station = ('kbyh', 0.0050593259158200491) +zone = ('arz018', 0.0039327535104468113) + +[fips2906914338] +centroid = (0.62958642515306995, -1.5719031447933414) +description = Clay township, MO +station = ('kbyh', 0.0024463433593632572) +zone = ('moz113', 0.0034991474054824356) + +[fips2906916696] +centroid = (0.63809162403754849, -1.5706895300979671) +description = Cotton Hill township, MO +station = ('kpof', 0.0057825701757598042) +zone = ('moz110', 0.0052044553266857446) + +[fips2906922] +centroid = (0.70014261680200218, -1.6549422628650949) +description = Bolckow city, MO +station = ('kstj', 0.0062160188407716591) +zone = ('moz012', 0.0023149075749120574) + +[fips2906925804] +centroid = (0.63607217337323596, -1.570569486352015) +description = Freeborn township, MO +station = ('kpof', 0.0072800562914977452) +zone = ('moz113', 0.0033438300644267325) + +[fips2906932554] +centroid = (0.63516891312545143, -1.5717401659477901) +description = Holcomb township, MO +station = ('kpof', 0.0074961118409872848) +zone = ('moz113', 0.0021675702081237159) + +[fips2906934390] +centroid = (0.63244166163628501, -1.5714681738371592) +description = Independence township, MO +station = ('kbyh', 0.0048675935134074371) +zone = ('moz113', 0.00096510773561972181) + +[fips2906965252] +centroid = (0.63020830341884793, -1.574033441318448) +description = Salem township, MO +station = ('kbyh', 0.0041416013978200642) +zone = ('moz113', 0.0031512019749154901) + +[fips2906974608] +centroid = (0.63768689963730363, -1.5727439746137821) +description = Union township, MO +station = ('kpof', 0.0049341434737898704) +zone = ('moz113', 0.0046319476346731864) + +[fips2906976] +centroid = (0.65636068344987397, -1.6304291484274194) +description = Bolivar city, MO +station = ('ksgf', 0.0065328269261348106) +zone = ('moz079', 0.00028195040315902412) + +[fips29071] +centroid = (0.6703515219865408, -1.5895308655187288) +description = Franklin County, MO +station = ('kfyg', 0.0033124134884256829) +zone = ('moz062', 5.4879566658931042e-05) + +[fips2907102] +centroid = (0.66184808588460675, -1.5802678795796194) +description = Bonne Terre city, MO +station = ('kfam', 0.0030881226559418989) +zone = ('moz074', 0.0021581196828891419) + +[fips2907106796] +centroid = (0.67388649440023762, -1.5929401742262821) +description = Boeuf township, MO +station = ('kfyg', 0.0037722211687561662) +zone = ('moz060', 0.0030606295039921684) + +[fips2907106958] +centroid = (0.67202194170703955, -1.5851128612232781) +description = Boles township, MO +station = ('kfyg', 0.0027817150651827573) +zone = ('moz062', 0.0038398114740403199) + +[fips2907107192] +centroid = (0.66865396239617358, -1.5932562882604033) +description = Boone township, MO +station = ('kfyg', 0.0062721371322184702) +zone = ('moz062', 0.0033855316646212636) + +[fips2907110630] +centroid = (0.66977495246814456, -1.5846496508397987) +description = Calvey township, MO +station = ('kfyg', 0.0046045582858749243) +zone = ('moz062', 0.0038982296609910228) + +[fips2907112754] +centroid = (0.66935043603418187, -1.5879865283833943) +description = Central township, MO +station = ('kfyg', 0.0041317250345296276) +zone = ('moz062', 0.0016199694469638246) + +[fips2907144714] +centroid = (0.67192999776204454, -1.5925192008107012) +description = Lyon township, MO +station = ('kfyg', 0.0037586172915213623) +zone = ('moz062', 0.0027767146005434834) + +[fips2907147396] +centroid = (0.66789903768151593, -1.5901394443756067) +description = Meramec township, MO +station = ('kfyg', 0.0057966465777954642) +zone = ('moz062', 0.0025439955789920378) + +[fips2907151932] +centroid = (0.67378446245216606, -1.5920505100933706) +description = New Haven township, MO +station = ('kfyg', 0.0030702189146110071) +zone = ('moz060', 0.0028919409920254639) + +[fips2907159528] +centroid = (0.66793188477803844, -1.5858482731568986) +description = Prairie township, MO +station = ('kfyg', 0.005832075443531929) +zone = ('moz062', 0.0038170763468592618) + +[fips2907164496] +centroid = (0.67256679859292712, -1.589102038121514) +description = St. Johns township, MO +station = ('kfyg', 0.0011826866928367388) +zone = ('moz062', 0.0021942009484213331) + +[fips2907174644] +centroid = (0.67070280440508978, -1.5892303721814129) +description = Union township, MO +station = ('kfyg', 0.0029053271402837565) +zone = ('moz062', 0.00039582217020292835) + +[fips2907177434] +centroid = (0.67285791951215979, -1.5885199882692662) +description = Washington township, MO +station = ('kfyg', 0.00068921833225404048) +zone = ('moz062', 0.0025870888215794477) + +[fips29073] +centroid = (0.67092521171167141, -1.5970771456055768) +description = Gasconade County, MO +station = ('kvih', 0.0064530783644873736) +zone = ('moz059', 2.9398850581287951e-05) + +[fips2907306814] +centroid = (0.67211056952645587, -1.5957789522546508) +description = Boeuf township, MO +station = ('kfyg', 0.0061281630343809354) +zone = ('moz059', 0.0015841248762956731) + +[fips2907307462] +centroid = (0.67194696236237383, -1.5980383333312351) +description = Boulware township, MO +station = ('kvih', 0.0069882713117220578) +zone = ('moz059', 0.0012560459902663235) + +[fips2907307480] +centroid = (0.66669168871815632, -1.5985223305861056) +description = Bourbois township, MO +station = ('kvih', 0.0026963025888319808) +zone = ('moz059', 0.0043705281891495747) + +[fips2907309100] +centroid = (0.66777342633524994, -1.5962541181435064) +description = Brush Creek township, MO +station = ('kvih', 0.0047734931764105322) +zone = ('moz059', 0.0032183120291294286) + +[fips2907311008] +centroid = (0.66967862774672693, -1.5959077051935706) +description = Canaan township, MO +station = ('kvih', 0.0061011479239963104) +zone = ('moz059', 0.0015606031496234322) + +[fips2907314356] +centroid = (0.66841361310488145, -1.5984957841281828) +description = Clay township, MO +station = ('kvih', 0.0037753721373929659) +zone = ('moz059', 0.0027307059199295322) + +[fips2907318] +centroid = (0.67991878862744304, -1.6188116435141997) +description = Boonville city, MO +station = ('kver', 0.0010066981929488124) +zone = ('moz046', 0.0021231404423340361) + +[fips2907361490] +centroid = (0.67399601381080032, -1.5987458549034086) +description = Richland township, MO +station = ('kfyg', 0.00830325394387358) +zone = ('moz059', 0.0033301000455233307) + +[fips2907362336] +centroid = (0.67448837119278782, -1.5960753789748097) +description = Roark township, MO +station = ('kfyg', 0.0062804715312355852) +zone = ('moz059', 0.0036594288924867136) + +[fips2907372934] +centroid = (0.67006886591418047, -1.5984157433286863) +description = Third Creek township, MO +station = ('kvih', 0.0051741028402153885) +zone = ('moz059', 0.0013285049322394333) + +[fips2907426] +centroid = (0.6888798675125426, -1.6290127962861338) +description = Bosworth city, MO +station = ('kcdj', 0.0069076941524050684) +zone = ('moz031', 0.0024056694438309577) + +[fips29075] +centroid = (0.70178605373226499, -1.6476625469149042) +description = Gentry County, MO +station = ('klwd', 0.009980776908024229) +zone = ('moz004', 9.0614496671601142e-05) + +[fips2907502386] +centroid = (0.70212021447085182, -1.6456742503777395) +description = Athens township, MO +station = ('klwd', 0.0087629055745281469) +zone = ('moz004', 0.0016209110268619795) + +[fips2907506868] +centroid = (0.70413626174312305, -1.6477721884985144) +description = Bogle township, MO +station = ('klwd', 0.0084494109871435692) +zone = ('moz004', 0.0023027269208307595) + +[fips2907516282] +centroid = (0.70174580643971407, -1.6495070981348743) +description = Cooper township, MO +station = ('kstj', 0.0094173245941864357) +zone = ('moz004', 0.001334375027008399) + +[fips2907533328] +centroid = (0.7040841287583659, -1.6454582658828054) +description = Howard township, MO +station = ('klwd', 0.0071536712707750433) +zone = ('moz004', 0.0028563192913743591) + +[fips2907533598] +centroid = (0.70276251308887827, -1.648245678871288) +description = Huggins township, MO +station = ('klwd', 0.0096031659280524165) +zone = ('moz004', 0.00099920275709087483) + +[fips2907534] +centroid = (0.66585328490537576, -1.5926003062610412) +description = Bourbon city, MO +station = ('kfyg', 0.0083900646724837102) +zone = ('moz072', 0.0031316914239664746) + +[fips2907535774] +centroid = (0.69989420408956571, -1.6498320958948882) +description = Jackson township, MO +station = ('kstj', 0.0078130655222001331) +zone = ('moz004', 0.0025020681801205336) + +[fips2907548224] +centroid = (0.69992940738057852, -1.6463014518977364) +description = Miller township, MO +station = ('kstj', 0.0098446079571951044) +zone = ('moz004', 0.0022078278171387342) + +[fips2907580188] +centroid = (0.70389291048551739, -1.6500747141142078) +description = Wilson township, MO +station = ('kicl', 0.0093785497566318959) +zone = ('moz004', 0.0027111706443914952) + +[fips2907660] +centroid = (0.68669584975305942, -1.5917837016106182) +description = Bowling Green city, MO +station = ('kppq', 0.0076803486375914909) +zone = ('moz036', 0.00041995482032313001) + +[fips29077] +centroid = (0.65027819355338112, -1.6291015113720126) +description = Greene County, MO +station = ('ksgf', 0.00073493464042353822) +zone = ('moz090', 1.8952554891886526e-05) + +[fips2907703598] +centroid = (0.64773776210734835, -1.6296246738152977) +description = Battlefield A township, MO +station = ('ksgf', 0.0021139075720087879) +zone = ('moz090', 0.002569748008452148) + +[fips2907703600] +centroid = (0.64792180707697111, -1.6293861047598428) +description = Battlefield B township, MO +station = ('ksgf', 0.0019571550456237373) +zone = ('moz090', 0.0023638639557825129) + +[fips2907707270] +centroid = (0.65175252553241836, -1.63310517450304) +description = Boone No. 1 township, MO +station = ('ksgf', 0.0032190861646359831) +zone = ('moz090', 0.0034930877214533165) + +[fips2907707272] +centroid = (0.65079180904565814, -1.6332946125400514) +description = Boone No. 2 township, MO +station = ('ksgf', 0.0029032006500836552) +zone = ('moz090', 0.0033576047085414739) + +[fips2907708704] +centroid = (0.64829453959202699, -1.6304834456204491) +description = Brookline township, MO +station = ('ksgf', 0.0016306426673388323) +zone = ('moz090', 0.0022580114091956265) + +[fips2907710908] +centroid = (0.64914385171263245, -1.6264794683301564) +description = Campbell No. 1 township, MO +station = ('ksgf', 0.0027715367276646636) +zone = ('moz090', 0.0023918961854839317) + +[fips2907710910] +centroid = (0.64893973545661177, -1.6292540706019294) +description = Campbell No. 2 township, MO +station = ('ksgf', 0.0010202429225169604) +zone = ('moz090', 0.0013407140051202753) + +[fips2907710912] +centroid = (0.64843372959987355, -1.6294221283556038) +description = Campbell No. 2A township, MO +station = ('ksgf', 0.0014504980579610818) +zone = ('moz090', 0.0018578987972252747) + +[fips2907710914] +centroid = (0.64903944611677822, -1.6296233822716513) +description = Campbell No. 2B township, MO +station = ('ksgf', 0.00082421835498347115) +zone = ('moz090', 0.0012991138992864333) + +[fips2907710916] +centroid = (0.64868236920511269, -1.6292851898224923) +description = Campbell No. 2C township, MO +station = ('ksgf', 0.0012449816062971419) +zone = ('moz090', 0.0015992307774654324) + +[fips2907711818] +centroid = (0.6523510512928048, -1.6311231960577675) +description = Cass township, MO +station = ('ksgf', 0.0027046353506333404) +zone = ('moz090', 0.0026131348029776137) + +[fips2907712648] +centroid = (0.64985945415924273, -1.6306235082929217) +description = Center No. 1 township, MO +station = ('ksgf', 0.00061871398946871661) +zone = ('moz090', 0.0012635105779865111) + +[fips2907712652] +centroid = (0.64989413385147987, -1.632268271673416) +description = Center No. 3 township, MO +station = ('ksgf', 0.0019286637069122045) +zone = ('moz090', 0.0025310134457568914) + +[fips2907713465] +centroid = (0.64771606766474599, -1.628110548329315) +description = Cherokee township, MO +station = ('ksgf', 0.0025382767295980273) +zone = ('moz090', 0.0026850318632005072) + +[fips2907714542] +centroid = (0.64794339679981838, -1.626523398267429) +description = Clay B township, MO +station = ('ksgf', 0.0032594619680448526) +zone = ('moz095', 0.0027027355895299899) + +[fips2907714544] +centroid = (0.64872626423580038, -1.6266743867010192) +description = Clay C township, MO +station = ('ksgf', 0.0027630326723898061) +zone = ('moz090', 0.0024925630959472559) + +[fips2907720809] +centroid = (0.6476261483016833, -1.6274123119087625) +description = East Clay A township, MO +station = ('ksgf', 0.0029466547382714591) +zone = ('moz095', 0.0025047948110000699) + +[fips2907721088] +centroid = (0.64764435208578153, -1.6312283346919076) +description = East Republic township, MO +station = ('ksgf', 0.002460037574806279) +zone = ('moz090', 0.0031202284974728169) + +[fips2907725700] +centroid = (0.65211572854975841, -1.6266569159552067) +description = Franklin No. 1 township, MO +station = ('ksgf', 0.0034055707531805281) +zone = ('moz090', 0.0026901364219635853) + +[fips2907725704] +centroid = (0.65125988889775044, -1.6276122917344558) +description = Franklin No. 2 township, MO +station = ('ksgf', 0.0022727093768839298) +zone = ('moz090', 0.00155433748835984) + +[fips2907736213] +centroid = (0.65228643920389595, -1.6254283437881427) +description = Jackson No. 1 township, MO +station = ('ksgf', 0.0042796938433634565) +zone = ('moz090', 0.0035615059215442944) + +[fips2907736216] +centroid = (0.65080727266283078, -1.6252196373161893) +description = Jackson No. 2 township, MO +station = ('ksgf', 0.0038063976358429738) +zone = ('moz091', 0.0033676681771702441) + +[fips2907750852] +centroid = (0.6510928783416271, -1.6310942584987695) +description = Murray township, MO +station = ('ksgf', 0.0015952503829349525) +zone = ('moz090', 0.0017666287132613926) + +[fips2907752942] +centroid = (0.64998033566323588, -1.6265183891724759) +description = North Campbell No. 1 township, MO +station = ('ksgf', 0.0026532291356511006) +zone = ('moz090', 0.0020960923137604125) + +[fips2907752944] +centroid = (0.65042239265618096, -1.6276928386794354) +description = North Campbell No. 2 township, MO +station = ('ksgf', 0.0018092813764759791) +zone = ('moz090', 0.0011492959716052453) + +[fips2907752947] +centroid = (0.65037682210941139, -1.6287621495522546) +description = North Campbell No. 3A township, MO +station = ('ksgf', 0.0010143247344198668) +zone = ('moz090', 0.00030588418565945463) + +[fips2907752949] +centroid = (0.65026108932671167, -1.6295958409760549) +description = North Campbell No. 3B township, MO +station = ('ksgf', 0.00046217505964038529) +zone = ('moz090', 0.00037488650998479094) + +[fips2907759024] +centroid = (0.64833482179116309, -1.6329276221582345) +description = Pond Creek township, MO +station = ('ksgf', 0.0028814199275665306) +zone = ('moz090', 0.0035975976066121044) + +[fips2907761265] +centroid = (0.64847233628292766, -1.6312020325800802) +description = Republic North township, MO +station = ('ksgf', 0.0017458306156151373) +zone = ('moz090', 0.0024476719619659771) + +[fips2907762359] +centroid = (0.65265845613395856, -1.6297563240007757) +description = Robberson No. 1A township, MO +station = ('ksgf', 0.0028151144012464324) +zone = ('moz090', 0.0024342297626842109) + +[fips2907762360] +centroid = (0.65267535092111795, -1.6282163850951561) +description = Robberson No. 1B township, MO +station = ('ksgf', 0.0031138685038176149) +zone = ('moz090', 0.002505334350443888) + +[fips2907762362] +centroid = (0.65138534316438379, -1.6291805747871277) +description = Robberson No. 2 township, MO +station = ('ksgf', 0.0016296725479808386) +zone = ('moz090', 0.0011096990061572325) + +[fips2907770009] +centroid = (0.64916041488723397, -1.6282404357322484) +description = Springfield township, MO +station = ('ksgf', 0.0014504721533240522) +zone = ('moz090', 0.0013198623115542884) + +[fips2907772466] +centroid = (0.64931613316309689, -1.6252086068353166) +description = Taylor township, MO +station = ('ksgf', 0.0037310015924577264) +zone = ('moz090', 0.0032629773070605799) + +[fips2907776858] +centroid = (0.65260660240188184, -1.6328648950249178) +description = Walnut Grove township, MO +station = ('ksgf', 0.0036596680802802751) +zone = ('moz090', 0.0037779476605436764) + +[fips2907777452] +centroid = (0.64799127118120048, -1.6252136682901475) +description = Washington township, MO +station = ('ksgf', 0.0041302475943019524) +zone = ('moz095', 0.0029225444313562272) + +[fips2907778992] +centroid = (0.64839613520778572, -1.6318418528305689) +description = West Republic township, MO +station = ('ksgf', 0.0021501922130249236) +zone = ('moz090', 0.0028666439878222267) + +[fips2907780251] +centroid = (0.64826610817851216, -1.6290113825694394) +description = Wilson A township, MO +station = ('ksgf', 0.001712694731740278) +zone = ('moz090', 0.0020124540058156773) + +[fips2907780255] +centroid = (0.64770243664328797, -1.6285925210022534) +description = Wilson C township, MO +station = ('ksgf', 0.0023634754099543264) +zone = ('moz090', 0.0026088342131765315) + +[fips2907780263] +centroid = (0.64786307674764154, -1.6289340644835761) +description = Wilson CW township, MO +station = ('ksgf', 0.0021103965742523332) +zone = ('moz090', 0.0024182414210370839) + +[fips2907876] +centroid = (0.63299835185450115, -1.5692482546549629) +description = Bragg City town, MO +station = ('kbyh', 0.0052898098352794475) +zone = ('moz115', 0.0020278249555019004) + +[fips29079] +centroid = (0.70009591179121877, -1.6330182571062906) +description = Grundy County, MO +station = ('kcdj', 0.0051697672093056054) +zone = ('moz015', 2.5675180718391536e-05) + +[fips2907925606] +centroid = (0.70227704975743599, -1.6332848561495328) +description = Franklin township, MO +station = ('kcdj', 0.0073452289978151643) +zone = ('moz015', 0.0021649703623558216) + +[fips2907930520] +centroid = (0.70121725092904008, -1.6353924808476561) +description = Harrison township, MO +station = ('kcdj', 0.0064795133907273811) +zone = ('moz015', 0.0021172708068005874) + +[fips2907935810] +centroid = (0.69829108426502395, -1.6330973379746985) +description = Jackson township, MO +station = ('kcdj', 0.0033641920428472663) +zone = ('moz015', 0.0018311866747966247) + +[fips2907936800] +centroid = (0.69802279225240738, -1.6351363886865109) +description = Jefferson township, MO +station = ('kcdj', 0.0033849809708558546) +zone = ('moz015', 0.002649910364204605) + +[fips2907942122] +centroid = (0.70086959879533528, -1.6307134451092768) +description = Liberty township, MO +station = ('kcdj', 0.0062687689764731212) +zone = ('moz015', 0.0019173800416704082) + +[fips2907942734] +centroid = (0.70096639475565092, -1.6331888106807955) +description = Lincoln township, MO +station = ('kcdj', 0.00603553644187631) +zone = ('moz015', 0.00085452442199752748) + +[fips2907945380] +centroid = (0.69918519898752807, -1.6355275518784678) +description = Madison township, MO +station = ('kcdj', 0.0045727982636159835) +zone = ('moz015', 0.0021329229046475259) + +[fips2907946028] +centroid = (0.69943605516091722, -1.63077531703126) +description = Marion township, MO +station = ('kcdj', 0.0049137550058942379) +zone = ('moz015', 0.0018506665273125146) + +[fips2907948] +centroid = (0.63967608629238648, -1.6004050870634019) +description = Brandsville city, MO +station = ('kuno', 0.0049576555134650552) +zone = ('moz097', 0.0034202532724492999) + +[fips2907950978] +centroid = (0.70211585114772179, -1.6307172150204614) +description = Myers township, MO +station = ('kcdj', 0.0074588497967760662) +zone = ('moz015', 0.0026610157065733758) + +[fips2907966] +centroid = (0.63957930778536343, -1.627765706175706) +description = Branson city, MO +station = ('kbbg', 0.0022021147505031542) +zone = ('moz103', 0.0032179226017749574) + +[fips2907972484] +centroid = (0.70120178731186733, -1.6362812548626491) +description = Taylor township, MO +station = ('kcdj', 0.0066631495202314935) +zone = ('moz015', 0.0027152146090411943) + +[fips2907973834] +centroid = (0.69939606966775403, -1.6332296339319994) +description = Trenton township, MO +station = ('kcdj', 0.0044649021149707948) +zone = ('moz015', 0.00074240542898445724) + +[fips2907977470] +centroid = (0.70235909768557236, -1.6353454616776071) +description = Washington township, MO +station = ('klwd', 0.0073328975683657283) +zone = ('moz015', 0.0028561020339703449) + +[fips2907980224] +centroid = (0.69807164401817068, -1.6305074788042491) +description = Wilson township, MO +station = ('kcdj', 0.0038170448815783198) +zone = ('moz015', 0.0028120085381401461) + +[fips2907989] +centroid = (0.64033725191962709, -1.6300169191113909) +description = Branson West city, MO +station = ('kbbg', 0.0038707396477617802) +zone = ('moz103', 0.0013441567566304577) + +[fips2908002] +centroid = (0.70072070475684767, -1.6123149520796236) +description = Brashear city, MO +station = ('kirk', 0.0024350409051159005) +zone = ('moz018', 0.0030987624300167437) + +[fips2908038] +centroid = (0.69097993493500476, -1.6370533012572688) +description = Braymer city, MO +station = ('kcdj', 0.0048776885717577954) +zone = ('moz022', 0.0027559714093402438) + +[fips29081] +centroid = (0.70416390775847459, -1.6404800283507568) +description = Harrison County, MO +station = ('klwd', 0.0051697297664738337) +zone = ('moz005', 0.0001586055253666193) + +[fips2908100226] +centroid = (0.70110059312183681, -1.6393083190107229) +description = Adams township, MO +station = ('kcdj', 0.0076797367889167431) +zone = ('moz005', 0.0033418481466774693) + +[fips2908105086] +centroid = (0.70250493739786901, -1.6413663239982121) +description = Bethany township, MO +station = ('klwd', 0.0069466250849428918) +zone = ('moz005', 0.0019413131964274653) + +[fips2908110072] +centroid = (0.70115536155376434, -1.6433483198967769) +description = Butler township, MO +station = ('klwd', 0.0087259523319193778) +zone = ('moz004', 0.003440245791218822) + +[fips2908114392] +centroid = (0.70723879392805311, -1.6377102257344269) +description = Clay township, MO +station = ('klwd', 0.0021348635572020725) +zone = ('moz005', 0.003594804451910052) + +[fips2908115508] +centroid = (0.70694627674541888, -1.6396551508396793) +description = Colfax township, MO +station = ('klwd', 0.0023183887596547634) +zone = ('moz005', 0.002696491858565533) + +[fips2908117956] +centroid = (0.70120560958292921, -1.6412663166320729) +description = Cypress township, MO +station = ('klwd', 0.0081868072101985139) +zone = ('moz005', 0.0031752172565120374) + +[fips2908118064] +centroid = (0.70403607984405858, -1.6433426650300005) +description = Dallas township, MO +station = ('klwd', 0.006173987640966625) +zone = ('moz005', 0.0022068011219485155) + +[fips2908125455] +centroid = (0.70248244010381078, -1.6375092161644746) +description = Fox Creek township, MO +station = ('klwd', 0.0067818705358774801) +zone = ('moz005', 0.0029137004791609544) + +[fips2908128] +centroid = (0.69396825277368435, -1.637208757733744) +description = Breckenridge city, MO +station = ('kcdj', 0.0031270498581174619) +zone = ('moz022', 0.0030159809072015696) + +[fips2908128486] +centroid = (0.70391196948094925, -1.6394131434855979) +description = Grant township, MO +station = ('klwd', 0.0052899883127371693) +zone = ('moz005', 0.00090514382638029705) + +[fips2908130070] +centroid = (0.70730162578112499, -1.6418344387568895) +description = Hamilton township, MO +station = ('klwd', 0.0029390563425200481) +zone = ('moz005', 0.0031546339041158425) + +[fips2908136818] +centroid = (0.70403656853624907, -1.6413397426337042) +description = Jefferson township, MO +station = ('klwd', 0.005482341440935447) +zone = ('moz005', 0.00072073120068171415) + +[fips2908142752] +centroid = (0.70747497188243313, -1.6437906212358173) +description = Lincoln township, MO +station = ('klwd', 0.0041138463625791984) +zone = ('moz003', 0.0033317918627104618) + +[fips2908145398] +centroid = (0.70559024318308194, -1.6374625809668613) +description = Madison township, MO +station = ('klwd', 0.0037497168250810128) +zone = ('moz005', 0.0026191249213942261) + +[fips2908146046] +centroid = (0.70559115075429291, -1.6393095407411993) +description = Marion township, MO +station = ('klwd', 0.0036102071964242985) +zone = ('moz005', 0.0015469778364143845) + +[fips2908164] +centroid = (0.67571697826643673, -1.5772255088940055) +description = Breckenridge Hills city, MO +station = ('kstl', 0.00059855366608073423) +zone = ('moz063', 0.0016580148778669128) + +[fips2908167448] +centroid = (0.70237471838237775, -1.6393486535697364) +description = Sherman township, MO +station = ('klwd', 0.0068207091686419271) +zone = ('moz005', 0.0021276573624968149) + +[fips2908171350] +centroid = (0.70109109853070595, -1.6374842230495863) +description = Sugar Creek township, MO +station = ('kcdj', 0.006930289911944356) +zone = ('moz005', 0.0039544995836640262) + +[fips2908173744] +centroid = (0.70401319857756484, -1.6375841780558478) +description = Trail Creek township, MO +station = ('klwd', 0.0052630752419527138) +zone = ('moz005', 0.0022222756294229336) + +[fips2908174662] +centroid = (0.70578491720784942, -1.6413447342753649) +description = Union township, MO +station = ('klwd', 0.0038881502981470955) +zone = ('moz005', 0.0016065983510002058) + +[fips2908177488] +centroid = (0.7057055570867613, -1.6430319789698529) +description = Washington township, MO +station = ('klwd', 0.0047056955396176719) +zone = ('moz005', 0.002390728719186433) + +[fips2908179486] +centroid = (0.70247257899353699, -1.6432280143514368) +description = White Oak township, MO +station = ('klwd', 0.0074895242971553897) +zone = ('moz005', 0.0028001551067691303) + +[fips2908236] +centroid = (0.67403584222433077, -1.576863230901169) +description = Brentwood city, MO +station = ('kstl', 0.0022939853987466231) +zone = ('moz063', 0.0013526552534218791) + +[fips2908272] +centroid = (0.65944783928409401, -1.5693650695417987) +description = Brewer CDP, MO +station = ('ksar', 0.0070543624657778345) +zone = ('moz076', 0.0018574642356897915) + +[fips29083] +centroid = (0.66997065623717067, -1.6369901726982239) +description = Henry County, MO +station = ('kgly', 0.0016089620505031887) +zone = ('moz054', 2.2553723398484265e-05) + +[fips2908303736] +centroid = (0.66752712547120852, -1.6388477789809992) +description = Bear Creek township, MO +station = ('kgly', 0.0035954165859080245) +zone = ('moz054', 0.0028253542084524749) + +[fips2908305140] +centroid = (0.6688418645434433, -1.6350706072270031) +description = Bethlehem township, MO +station = ('kgly', 0.00066741939759842124) +zone = ('moz054', 0.0018688924394294896) + +[fips2908305392] +centroid = (0.67215975290477703, -1.6388128025827893) +description = Big Creek township, MO +station = ('kgly', 0.0039794281546191189) +zone = ('moz054', 0.0026317347433876233) + +[fips2908306850] +centroid = (0.67221457369658222, -1.6408779459669192) +description = Bogard township, MO +station = ('krcm', 0.0054773805176271785) +zone = ('moz054', 0.003794869699004375) + +[fips2908315004] +centroid = (0.6691038908240452, -1.6368935687241262) +description = Clinton township, MO +station = ('kgly', 0.0015206283943534173) +zone = ('moz054', 0.0008477132960554133) + +[fips2908318388] +centroid = (0.6692129215424174, -1.639037531177276) +description = Davis township, MO +station = ('kgly', 0.0031609684255193894) +zone = ('moz054', 0.0017647488158934351) + +[fips2908318748] +centroid = (0.66777888921580864, -1.6409197815090895) +description = Deepwater township, MO +station = ('kgly', 0.0049385588273861093) +zone = ('moz054', 0.0037687742627239094) + +[fips2908318784] +centroid = (0.67042016578602182, -1.6352714248107376) +description = Deer Creek township, MO +station = ('kgly', 0.00093218896923255785) +zone = ('moz054', 0.0014282414024991928) + +[fips2908323482] +centroid = (0.66733761762102695, -1.6372663361457673) +description = Fairview township, MO +station = ('kgly', 0.0027941873838017613) +zone = ('moz054', 0.0026194034077998756) + +[fips2908324148] +centroid = (0.6705203127785011, -1.6369756341055548) +description = Fields Creek township, MO +station = ('kgly', 0.0018338850281199113) +zone = ('moz054', 0.0005723226185902811) + +[fips2908332860] +centroid = (0.67057190471119021, -1.638837202285732) +description = Honey Creek township, MO +station = ('kgly', 0.0031720575427454335) +zone = ('moz054', 0.0015752284994035928) + +[fips2908341384] +centroid = (0.66891022909024389, -1.6335349443780509) +description = Leesville township, MO +station = ('kgly', 0.0013124241402546416) +zone = ('moz054', 0.002902411285852119) + +[fips2908355136] +centroid = (0.66736587450161677, -1.6340663622286982) +description = Osage township, MO +station = ('kgly', 0.002270536271441876) +zone = ('moz054', 0.0034548228076068141) + +[fips2908367088] +centroid = (0.67206290458458395, -1.6366865901281322) +description = Shawnee township, MO +station = ('kgly', 0.002867270573504927) +zone = ('moz054', 0.0021282147077681061) + +[fips2908370018] +centroid = (0.67050570437266199, -1.6331390338905285) +description = Springfield township, MO +station = ('kgly', 0.0017829061261130459) +zone = ('moz054', 0.0030701045904111229) + +[fips2908372592] +centroid = (0.67205103634567032, -1.6348780450506306) +description = Tebo township, MO +station = ('kgly', 0.0025453200193549376) +zone = ('moz054', 0.0026761794152022548) + +[fips2908376624] +centroid = (0.66928533525308254, -1.640924877870505) +description = Walker township, MO +station = ('kgly', 0.0046324640481442778) +zone = ('moz054', 0.0031544726741737799) + +[fips2908379504] +centroid = (0.67064527835294407, -1.6407376564016438) +description = White Oak township, MO +station = ('kgly', 0.0046199556272318136) +zone = ('moz054', 0.0030173261867583578) + +[fips2908380368] +centroid = (0.67213830280827003, -1.6327861981289455) +description = Windsor township, MO +station = ('kgly', 0.0031608154738721685) +zone = ('moz054', 0.0039551883066865964) + +[fips2908398] +centroid = (0.67672204356949017, -1.5780742974158353) +description = Bridgeton city, MO +station = ('kstl', 0.00079673593205816613) +zone = ('moz063', 0.0023415408318530413) + +[fips2908470] +centroid = (0.70066146828203502, -1.6360436631915751) +description = Brimson village, MO +station = ('kcdj', 0.0060932867688942858) +zone = ('moz015', 0.0023722125881656133) + +[fips29085] +centroid = (0.66212032234133289, -1.6287907380454023) +description = Hickory County, MO +station = ('kgly', 0.0088664633446387912) +zone = ('moz068', 7.7358074871342674e-05) + +[fips2908512538] +centroid = (0.66202485283124868, -1.6282264381916476) +description = Center township, MO +station = ('kgly', 0.0091969524001312818) +zone = ('moz068', 0.00044797587071037032) + +[fips2908517542] +centroid = (0.66368720913060331, -1.6275592860850727) +description = Cross Timbers township, MO +station = ('kgly', 0.0082648362290892469) +zone = ('moz068', 0.0017669029807416618) + +[fips2908528954] +centroid = (0.66057130772360284, -1.6278163556305991) +description = Green township, MO +station = ('kh21', 0.0082262193627916542) +zone = ('moz068', 0.0017813339710379711) + +[fips2908531785] +centroid = (0.66219964755583605, -1.6291426138758969) +description = Hermitage township, MO +station = ('kgly', 0.0086493081106737094) +zone = ('moz068', 0.00030699011851365856) + +[fips2908537646] +centroid = (0.66371663538179193, -1.6254594630087058) +description = Jordan township, MO +station = ('kh21', 0.0061627895049916302) +zone = ('moz068', 0.0030108917327202164) + +[fips2908549502] +centroid = (0.66342835934923994, -1.631076281607474) +description = Montgomery township, MO +station = ('kgly', 0.0068261289270223121) +zone = ('moz068', 0.0022093891826379781) + +[fips2908570378] +centroid = (0.66220746663088492, -1.6259756964948608) +description = Stark township, MO +station = ('kh21', 0.0065080140428554678) +zone = ('moz068', 0.0021907272495435967) + +[fips2908574320] +centroid = (0.66079488440078327, -1.6302027966767283) +description = Tyler township, MO +station = ('kgly', 0.0095034811486432186) +zone = ('moz068', 0.0018054016259681429) + +[fips2908578082] +centroid = (0.66094472091706702, -1.6323082048067017) +description = Weaubleau township, MO +station = ('kgly', 0.0088262058342746166) +zone = ('moz068', 0.0030695656354339613) + +[fips2908579108] +centroid = (0.66299989847116791, -1.6299980870087618) +description = Wheatland township, MO +station = ('kgly', 0.0076139965883732083) +zone = ('moz068', 0.0012711186683156356) + +[fips2908614] +centroid = (0.65788643282867487, -1.6487865913130659) +description = Bronaugh city, MO +station = ('kpts', 0.0055890196406455069) +zone = ('moz066', 0.0032382580268258349) + +[fips2908650] +centroid = (0.694384985039183, -1.6245169852126289) +description = Brookfield city, MO +station = ('kcdj', 0.0067984256111480535) +zone = ('moz024', 0.001532225745534019) + +[fips29087] +centroid = (0.69980239977091085, -1.6618863170935421) +description = Holt County, MO +station = ('kfnb', 0.0048685836591165913) +zone = ('moz011', 5.779777226037408e-05) + +[fips2908704672] +centroid = (0.70006407698566242, -1.6616430531023991) +description = Benton township, MO +station = ('kfnb', 0.0050718966383877526) +zone = ('moz011', 0.00031060297247585629) + +[fips2908705482] +centroid = (0.69997880019840997, -1.663747745647379) +description = Bigelow township, MO +station = ('kfnb', 0.0034618003581994073) +zone = ('moz011', 0.0014911444516536136) + +[fips2908714410] +centroid = (0.70158499180243528, -1.6600307702992843) +description = Clay township, MO +station = ('kfnb', 0.0065891178743830046) +zone = ('moz011', 0.0022602230624578267) + +[fips2908724976] +centroid = (0.69659052270834321, -1.6592357553717083) +description = Forbes township, MO +station = ('kstj', 0.0032368703173989554) +zone = ('ksz102', 0.002401350483163216) + +[fips2908725048] +centroid = (0.69772130407741795, -1.6619392703830476) +description = Forest township, MO +station = ('kfnb', 0.0051751570447573295) +zone = ('moz011', 0.0020636640472232182) + +[fips2908731852] +centroid = (0.69942291283164981, -1.6596831356188722) +description = Hickory township, MO +station = ('kstj', 0.0058591493139290313) +zone = ('moz011', 0.0016704973636749397) + +[fips2908741798] +centroid = (0.69778499114182313, -1.6605610013260401) +description = Lewis township, MO +station = ('kstj', 0.0048044979130267753) +zone = ('moz011', 0.002216598786287475) + +[fips2908742140] +centroid = (0.70195049865438797, -1.6622206872716392) +description = Liberty township, MO +station = ('kfnb', 0.0051754383475161453) +zone = ('moz011', 0.0021897521140867913) + +[fips2908742770] +centroid = (0.70233961981112003, -1.6656600156423267) +description = Lincoln township, MO +station = ('kfnb', 0.0033883394596053522) +zone = ('moz001', 0.0033110510023414185) + +[fips2908748836] +centroid = (0.69861414470956806, -1.663688264826471) +description = Minton township, MO +station = ('kfnb', 0.0036199008504048855) +zone = ('moz011', 0.0018495187710022341) + +[fips2908752706] +centroid = (0.69823132419143563, -1.6590767558768518) +description = Nodaway township, MO +station = ('kstj', 0.0045818674160265846) +zone = ('moz011', 0.0026079384584717343) + +[fips2908774680] +centroid = (0.70134781901038168, -1.6646862440927614) +description = Union township, MO +station = ('kfnb', 0.0032406269398400338) +zone = ('moz011', 0.002695652458505613) + +[fips2908776] +centroid = (0.64872862043029056, -1.6473383520063463) +description = Brooklyn Heights town, MO +station = ('kjln', 0.0016277982676300637) +zone = ('moz088', 0.00086275134845749282) + +[fips2908884] +centroid = (0.69874162355813374, -1.6259547874504219) +description = Browning city, MO +station = ('kcdj', 0.0068239126464847361) +zone = ('moz024', 0.0029619779356430116) + +[fips29089] +centroid = (0.68318059955991028, -1.6178491118850173) +description = Howard County, MO +station = ('kver', 0.0035559484009835994) +zone = ('moz040', 1.1731104178496962e-05) + +[fips2908902] +centroid = (0.66749874641757112, -1.635769716312182) +description = Brownington town, MO +station = ('kgly', 0.0020929315969996252) +zone = ('moz054', 0.0026302682853633014) + +[fips2908907084] +centroid = (0.68441566435179146, -1.6147454452360734) +description = Bonne Femme township, MO +station = ('kver', 0.0052633461709897123) +zone = ('moz040', 0.0027082059550097978) + +[fips2908907300] +centroid = (0.68192228698239232, -1.6209181686548941) +description = Boonslick township, MO +station = ('kver', 0.003466089194803363) +zone = ('moz040', 0.0026895945827655277) + +[fips2908909964] +centroid = (0.68501495805704882, -1.6164811402705965) +description = Burton township, MO +station = ('kver', 0.005449806586688353) +zone = ('moz040', 0.0021278938979353702) + +[fips2908913222] +centroid = (0.68435655005002649, -1.6200746335741127) +description = Chariton township, MO +station = ('kver', 0.0051094023161190614) +zone = ('moz040', 0.0020958491403041566) + +[fips2908925642] +centroid = (0.68117268552195331, -1.6187689004008183) +description = Franklin township, MO +station = ('kver', 0.0018008246795475817) +zone = ('moz040', 0.0021207078076348031) + +[fips2908949232] +centroid = (0.68187244037895545, -1.6158252804442823) +description = Moniteau township, MO +station = ('kver', 0.0026198825405946823) +zone = ('moz040', 0.0020352016353717634) + +[fips2908959546] +centroid = (0.68512552466516263, -1.6180747655040075) +description = Prairie township, MO +station = ('kver', 0.0055081977658529178) +zone = ('moz040', 0.0019644833588850757) + +[fips2908961652] +centroid = (0.68311940831633533, -1.6176336858954437) +description = Richmond township, MO +station = ('kver', 0.0034885357398907464) +zone = ('moz040', 0.00017265054871855987) + +[fips2908974] +centroid = (0.66476112767264783, -1.6141591891403284) +description = Brumley town, MO +station = ('kaiz', 0.00092359863132146633) +zone = ('moz057', 0.0023381764398228526) + +[fips2909046] +centroid = (0.68813417558962797, -1.6253760013638754) +description = Brunswick city, MO +station = ('kcdj', 0.0091550263891492355) +zone = ('moz032', 0.002690641707865708) + +[fips29091] +centroid = (0.64183381939333461, -1.6037371125916768) +description = Howell County, MO +station = ('kuno', 0.0019099563706235472) +zone = ('moz097', 1.3737852391285276e-05) + +[fips2909104690] +centroid = (0.63855022675180251, -1.6061326817097943) +description = Benton township, MO +station = ('kuno', 0.0054705316071391738) +zone = ('moz097', 0.0038049416337975731) + +[fips2909113168] +centroid = (0.64426193890200167, -1.6007336627483826) +description = Chapel township, MO +station = ('kuno', 0.0026313493743417606) +zone = ('moz097', 0.003412644981042975) + +[fips2909120188] +centroid = (0.6430014970227963, -1.6041825380700785) +description = Dry Creek township, MO +station = ('kuno', 0.00075585003862042627) +zone = ('moz097', 0.0012306651636818068) + +[fips2909127748] +centroid = (0.64599182199011584, -1.6009951479769162) +description = Goldsberry township, MO +station = ('kuno', 0.0032704237137403812) +zone = ('moz097', 0.0047008916142390793) + +[fips2909133382] +centroid = (0.64067661373938489, -1.6024266844826947) +description = Howell township, MO +station = ('kuno', 0.0032954934255038496) +zone = ('moz097', 0.0015497221252287977) + +[fips2909134120] +centroid = (0.64506590736864022, -1.6030664698265982) +description = Hutton Valley township, MO +station = ('kuno', 0.0015090488914822411) +zone = ('moz097', 0.003280712837736518) + +[fips2909150960] +centroid = (0.63795337650749806, -1.6012193878792125) +description = Myatt township, MO +station = ('kuno', 0.0061848023314122645) +zone = ('arz006', 0.0031546754875911476) + +[fips2909167844] +centroid = (0.64264544985538952, -1.6065071944606872) +description = Siloam Springs township, MO +station = ('kuno', 0.0023131600219069804) +zone = ('moz097', 0.0023755970722465704) + +[fips2909168078] +centroid = (0.64296723620957974, -1.6016086312089923) +description = Sisson township, MO +station = ('kuno', 0.0020303768171382754) +zone = ('moz097', 0.0020401847875390583) + +[fips2909168780] +centroid = (0.63833816924768527, -1.6036321135838771) +description = South Fork township, MO +station = ('kuno', 0.0054037363283544158) +zone = ('arz006', 0.0034723555205422216) + +[fips2909169644] +centroid = (0.64074654908251216, -1.606443612116037) +description = Spring Creek township, MO +station = ('kuno', 0.0035912872176943902) +zone = ('moz097', 0.0024340593406310682) + +[fips2909180116] +centroid = (0.64524202854345902, -1.6055802850015382) +description = Willow Springs township, MO +station = ('kuno', 0.0019879727076456415) +zone = ('moz097', 0.0037242265983509801) + +[fips29093] +centroid = (0.65669688622368561, -1.5830071214807471) +description = Iron County, MO +station = ('kfam', 0.0044221373482544951) +zone = ('moz084', 0.001602803955313675) + +[fips2909301666] +centroid = (0.65579610434343882, -1.5823188683435156) +description = Arcadia township, MO +station = ('kfam', 0.0045922622478140572) +zone = ('moz084', 0.0016027899604308656) + +[fips2909319108] +centroid = (0.65720854694720032, -1.5894715068708687) +description = Dent township, MO +station = ('kfam', 0.0090032334863784924) +zone = ('moz084', 0.0044564114476947905) + +[fips2909335360] +centroid = (0.65782545102461021, -1.5836470813575758) +description = Iron township, MO +station = ('kfam', 0.0043876551081708575) +zone = ('moz084', 0.002418873337848394) + +[fips2909338018] +centroid = (0.65693686899583492, -1.5861800951542875) +description = Kaolin township, MO +station = ('kfam', 0.006572407740351025) +zone = ('moz084', 0.0020983205889345859) + +[fips2909342158] +centroid = (0.65389449831022095, -1.5823373164737091) +description = Liberty township, MO +station = ('kfam', 0.0061300087084881815) +zone = ('moz084', 0.0022072270639068381) + +[fips2909374698] +centroid = (0.65167438714180659, -1.58223308541078) +description = Union township, MO +station = ('kfam', 0.0080843027851924803) +zone = ('moz084', 0.004126583772845009) + +[fips2909388] +centroid = (0.69436220849244457, -1.6212037394271055) +description = Bucklin city, MO +station = ('kirk', 0.007133416333253261) +zone = ('moz024', 0.0032991319936447102) + +[fips2909424] +centroid = (0.68299063792412307, -1.6440444968288124) +description = Buckner city, MO +station = ('klxt', 0.0036980651662629248) +zone = ('moz037', 0.0029621754716898019) + +[fips29095] +centroid = (0.68080464794258522, -1.6465873717357979) +description = Jackson County, MO +station = ('klxt', 0.00078019928174707606) +zone = ('moz037', 5.3511955806729977e-05) + +[fips2909506490] +centroid = (0.68260734616709262, -1.6475696255855279) +description = Blue township, MO +station = ('klxt', 0.0025481910315666772) +zone = ('moz037', 0.0019184120369963643) + +[fips2909508686] +centroid = (0.6805054810555009, -1.6488890595934507) +description = Brooking township, MO +station = ('klxt', 0.0015176078581450065) +zone = ('moz037', 0.0017694421032468082) + +[fips2909514] +centroid = (0.65703251303884413, -1.6248415640936222) +description = Buffalo city, MO +station = ('kh21', 0.0079729273916354995) +zone = ('moz080', 0.0011806397854575673) + +[fips2909525282] +centroid = (0.68317363569619471, -1.6442526098888202) +description = Fort Osage township, MO +station = ('klxt', 0.0037482823916866366) +zone = ('moz037', 0.0029953030212816751) + +[fips2909538054] +centroid = (0.6792829128210639, -1.6508398839115745) +description = Kaw township, MO +station = ('kojc', 0.0025078347219761564) +zone = ('moz037', 0.0036050341320666354) + +[fips2909559564] +centroid = (0.67917660481632491, -1.6467738776196661) +description = Prairie township, MO +station = ('klxt', 0.0009380324862468543) +zone = ('moz037', 0.0016529616948823536) + +[fips2909568438] +centroid = (0.68124824082527213, -1.6444174387833785) +description = Sni-A-Bar township, MO +station = ('klxt', 0.0023200515995838869) +zone = ('moz037', 0.0017850568497174547) + +[fips2909575598] +centroid = (0.67888054461530922, -1.6439433549986593) +description = Van Buren township, MO +station = ('klxt', 0.0026769429723471276) +zone = ('moz037', 0.0028667867259090218) + +[fips2909577506] +centroid = (0.6789939735633963, -1.649605046012496) +description = Washington township, MO +station = ('klxt', 0.0023007686778105437) +zone = ('moz037', 0.0029392677322527799) + +[fips2909642] +centroid = (0.64079794902898346, -1.62668388129215) +description = Bull Creek village, MO +station = ('kbbg', 0.003229309949021509) +zone = ('moz104', 0.0024887346713956442) + +[fips2909658] +centroid = (0.67700768415487156, -1.6196426471309515) +description = Bunceton city, MO +station = ('kver', 0.003079677987947619) +zone = ('moz046', 0.00095935036024260558) + +[fips2909694] +centroid = (0.65375834517527287, -1.5919434865036381) +description = Bunker city, MO +station = ('kfam', 0.012037083118550776) +zone = ('moz099', 0.0037513015430816034) + +[fips29097] +centroid = (0.64927757883992032, -1.6465238766576105) +description = Jasper County, MO +station = ('kjln', 0.0024102340747608774) +zone = ('moz088', 5.1904652482797931e-05) + +[fips2909720602] +centroid = (0.65113085670615045, -1.6486293720540461) +description = Duval township, MO +station = ('kjln', 0.0027982113466983654) +zone = ('moz088', 0.0024484239426772049) + +[fips2909726236] +centroid = (0.6477031871348663, -1.6503653987011275) +description = Galena township, MO +station = ('kjln', 0.0010699658106547716) +zone = ('moz088', 0.0034427203993432085) + +[fips2909735828] +centroid = (0.64756000032303274, -1.6466753014235134) +description = Jackson township, MO +station = ('kjln', 0.0022780248942052112) +zone = ('moz088', 0.0017662121535612864) + +[fips2909736530] +centroid = (0.65121452779049116, -1.6504695599508867) +description = Jasper township, MO +station = ('kjln', 0.002965361628372111) +zone = ('moz088', 0.0036452299172818454) + +[fips2909737610] +centroid = (0.64767119524967731, -1.6486950313405064) +description = Joplin township, MO +station = ('kjln', 0.00088186357481735201) +zone = ('moz088', 0.0023752569064761919) + +[fips2909742788] +centroid = (0.6510244265283639, -1.6427781382834428) +description = Lincoln township, MO +station = ('kjln', 0.0058488593680496173) +zone = ('moz088', 0.0034534605702954365) + +[fips2909744930] +centroid = (0.64936720149701033, -1.6426723189708943) +description = McDonald township, MO +station = ('khfj', 0.005513055463022833) +zone = ('moz088', 0.0030920580015361618) + +[fips2909745416] +centroid = (0.64928878385371813, -1.6446608424008615) +description = Madison township, MO +station = ('kjln', 0.0038321455667179533) +zone = ('moz088', 0.0015083780390470619) + +[fips2909746064] +centroid = (0.64937927917543403, -1.6469104496336346) +description = Marion township, MO +station = ('kjln', 0.0021712508813177015) +zone = ('moz088', 0.00028924910357875212) + +[fips2909748692] +centroid = (0.64940676811115294, -1.6484046434595596) +description = Mineral township, MO +station = ('kjln', 0.0012589714365120197) +zone = ('moz088', 0.001476253952853003) + +[fips2909759906] +centroid = (0.65109694495878423, -1.6467034361310557) +description = Preston township, MO +station = ('kjln', 0.0034238657164995991) +zone = ('moz088', 0.0017773564647618847) + +[fips2909766008] +centroid = (0.64752875892942197, -1.6426955667565311) +description = Sarcoxie township, MO +station = ('khfj', 0.0037669952330499873) +zone = ('moz088', 0.0035607973714664484) + +[fips2909767340] +centroid = (0.65104627805059889, -1.6447795771498748) +description = Sheridan township, MO +station = ('kjln', 0.0044967195615197098) +zone = ('moz088', 0.0022277283151814708) + +[fips2909774266] +centroid = (0.6494122658982967, -1.6502835427592091) +description = Twin Groves township, MO +station = ('kjln', 0.0012708986862723282) +zone = ('moz088', 0.0029717076524159525) + +[fips2909774716] +centroid = (0.64761930661101552, -1.6447173910686264) +description = Union township, MO +station = ('kjln', 0.0037622286521630864) +zone = ('moz088', 0.0022466416942227654) + +[fips2909802] +centroid = (0.65547749448848736, -1.651346134114408) +description = Burgess town, MO +station = ('kpts', 0.0024406835755830044) +zone = ('ksz097', 0.0033841251849135163) + +[fips2909838] +centroid = (0.70593370652658183, -1.6592474839842817) +description = Burlington Junction city, MO +station = ('kicl', 0.0047284111586221346) +zone = ('moz002', 0.0028777203350395229) + +[fips29099] +centroid = (0.66771783759857384, -1.5802758731875934) +description = Jefferson County, MO +station = ('ksus', 0.0070058575390498628) +zone = ('moz065', 9.6275105194538256e-05) + +[fips2909901975] +centroid = (0.67066030563780377, -1.5772420371620217) +description = Arnold township, MO +station = ('kcps', 0.0038731896562358443) +zone = ('ilz102', 0.003677958730820581) + +[fips2909905554] +centroid = (0.66736166825811938, -1.5831606406417522) +description = Big River township, MO +station = ('ksus', 0.0072521948425034758) +zone = ('moz065', 0.002375848291492468) + +[fips2909912790] +centroid = (0.66742696102543664, -1.580699342424005) +description = Central township, MO +station = ('ksus', 0.0072314818278036656) +zone = ('moz065', 0.0005380923227897332) + +[fips2909932144] +centroid = (0.67080164240063023, -1.5806300179461157) +description = High Ridge township, MO +station = ('ksus', 0.0039490888625097155) +zone = ('moz065', 0.0030415161095719719) + +[fips2909934358] +centroid = (0.66967520690139304, -1.5787355154029534) +description = Imperial township, MO +station = ('kcps', 0.0054029568630797791) +zone = ('moz065', 0.0022089631703179039) + +[fips2909937340] +centroid = (0.66777478769206655, -1.5786829635391759) +description = Joachim township, MO +station = ('kcps', 0.0067500591060213012) +zone = ('moz065', 0.0011776121254808295) + +[fips2909947414] +centroid = (0.67009867613780438, -1.5820017769250132) +description = Meramec township, MO +station = ('ksus', 0.0044724057216327922) +zone = ('moz065', 0.002722256414580914) + +[fips2909958232] +centroid = (0.66537471562447892, -1.5776502173141858) +description = Plattin township, MO +station = ('kfam', 0.0062471199038635706) +zone = ('moz065', 0.0031223531796214345) + +[fips2909962179] +centroid = (0.66710164910615732, -1.5777251792055591) +description = River View township, MO +station = ('kcps', 0.0068977802083221513) +zone = ('moz065', 0.0020460362355641491) + +[fips2909962552] +centroid = (0.67137599535087644, -1.5789728103680547) +description = Rock township, MO +station = ('ksus', 0.004041985852901879) +zone = ('moz063', 0.0030513251690220291) + +[fips2909975400] +centroid = (0.66483481547366718, -1.5807637450734036) +description = Valle township, MO +station = ('kfam', 0.0059902561006299447) +zone = ('moz065', 0.0029808127158696611) + +[fips2909980370] +centroid = (0.67022070955910384, -1.5778024449315446) +description = Windsor township, MO +station = ('kcps', 0.0044919524607240418) +zone = ('moz065', 0.0030726755841708488) + +[fips2910054] +centroid = (0.66775183661240278, -1.6465354307372586) +description = Butler city, MO +station = ('kojc', 0.011368797460648804) +zone = ('moz053', 3.6558160973276177e-05) + +[fips29101] +centroid = (0.67624317758262054, -1.6372235406725082) +description = Johnson County, MO +station = ('krcm', 0.00060107656540989564) +zone = ('moz044', 3.1335891346855121e-05) + +[fips2910112700] +centroid = (0.67627419208342843, -1.6382185703323628) +description = Centerview township, MO +station = ('krcm', 0.0010266222832072322) +zone = ('moz044', 0.00077444796063300114) + +[fips2910113672] +centroid = (0.67412382427192385, -1.6383310044427761) +description = Chilhowee township, MO +station = ('krcm', 0.0028749509381100261) +zone = ('moz044', 0.0022585850083411286) + +[fips2910115724] +centroid = (0.67820986694364527, -1.638783393784893) +description = Columbus township, MO +station = ('krcm', 0.0018873505121255808) +zone = ('moz044', 0.0023364176900286977) + +[fips2910129620] +centroid = (0.67853608643413554, -1.6327868089941837) +description = Grover township, MO +station = ('kszl', 0.0025120078703194902) +zone = ('moz044', 0.004169095874294761) + +[fips2910131240] +centroid = (0.67849393673269998, -1.636772757033303) +description = Hazel Hill township, MO +station = ('krcm', 0.001677066380248043) +zone = ('moz044', 0.0023093311483280538) + +[fips2910135846] +centroid = (0.67822431826985186, -1.6411990690959934) +description = Jackson township, MO +station = ('krcm', 0.0034678539610741065) +zone = ('moz044', 0.0036908647931156464) + +[fips2910136836] +centroid = (0.67412363228570615, -1.6332476631831727) +description = Jefferson township, MO +station = ('kszl', 0.0019390090153756047) +zone = ('moz044', 0.0037442482798761673) + +[fips2910138936] +centroid = (0.67611138777080249, -1.6421780068201444) +description = Kingsville township, MO +station = ('krcm', 0.0040115391469534951) +zone = ('moz044', 0.0038616014208528596) + +[fips2910144] +centroid = (0.64133809352589066, -1.638932462356306) +description = Butterfield village, MO +station = ('khfj', 0.0031397406694595831) +zone = ('moz102', 0.0012212478943431286) + +[fips2910145434] +centroid = (0.67593266605539815, -1.6401328474559502) +description = Madison township, MO +station = ('krcm', 0.0025190198117515253) +zone = ('moz044', 0.0022824380429816472) + +[fips2910149700] +centroid = (0.67648530710974975, -1.6342313656561815) +description = Montserrat township, MO +station = ('kszl', 0.0012399738856830635) +zone = ('moz044', 0.0023534947488075232) + +[fips2910159312] +centroid = (0.67409282722440844, -1.6358355501315671) +description = Post Oak township, MO +station = ('krcm', 0.0029227942518347009) +zone = ('moz044', 0.0023820572783001611) + +[fips2910163146] +centroid = (0.67408787048933283, -1.6413579813243875) +description = Rose Hill township, MO +station = ('krcm', 0.0043025343701407785) +zone = ('moz044', 0.0038603147551553025) + +[fips2910168006] +centroid = (0.67861780274971395, -1.634619788681213) +description = Simpson township, MO +station = ('krcm', 0.0026372571777358894) +zone = ('moz044', 0.0031496243269173081) + +[fips2910177110] +centroid = (0.67637378057054731, -1.6360441867903506) +description = Warrensburg township, MO +station = ('krcm', 0.00095824070227229095) +zone = ('moz044', 0.00093791201245927173) + +[fips2910177524] +centroid = (0.67602005469104565, -1.6328107025516434) +description = Washington township, MO +station = ('kszl', 4.3248668798676823e-05) +zone = ('moz044', 0.0034514977417547574) + +[fips2910240] +centroid = (0.67090920704243062, -1.5808179899065553) +description = Byrnes Mill city, MO +station = ('ksus', 0.0038039804407623266) +zone = ('moz065', 0.0031681990954312445) + +[fips2910288] +centroid = (0.64797936803570189, -1.6075043883288143) +description = Cabool city, MO +station = ('kuno', 0.0051021659874721662) +zone = ('moz082', 0.003843975253799575) + +[fips29103] +centroid = (0.70051889233543951, -1.6082652122563437) +description = Knox County, MO +station = ('kirk', 0.0054194443732530099) +zone = ('moz018', 0.0001506675398978741) + +[fips2910303988] +centroid = (0.69946610973063661, -1.6077624701653066) +description = Bee Ridge township, MO +station = ('kirk', 0.0057829279544409379) +zone = ('moz018', 0.00098844438566934737) + +[fips2910304708] +centroid = (0.70266599638124305, -1.6077674967135522) +description = Benton township, MO +station = ('kirk', 0.0063967016746629777) +zone = ('moz018', 0.0023309096040212058) + +[fips2910307552] +centroid = (0.69810552085895194, -1.6076818185005719) +description = Bourbon township, MO +station = ('kirk', 0.0060964077572659781) +zone = ('moz018', 0.0023107037417917863) + +[fips2910312556] +centroid = (0.70106408083388505, -1.6087222092676858) +description = Center township, MO +station = ('kirk', 0.0051688248141836318) +zone = ('moz018', 0.00077014895805155889) + +[fips2910315652] +centroid = (0.70258689805954255, -1.6058984934307616) +description = Colony township, MO +station = ('keok', 0.0085249601510593263) +zone = ('moz018', 0.0028721414249012578) + +[fips2910323158] +centroid = (0.69823266809495976, -1.6057401746143132) +description = Fabius township, MO +station = ('kirk', 0.0075017018604306429) +zone = ('moz018', 0.0028923861618703178) + +[fips2910329386] +centroid = (0.70264850818213809, -1.6102354620890424) +description = Greensburg township, MO +station = ('kirk', 0.0047609694109430022) +zone = ('moz018', 0.0027218996115748973) + +[fips2910336660] +centroid = (0.69960430490080949, -1.6057002938409051) +description = Jeddo township, MO +station = ('kirk', 0.0073506135425763066) +zone = ('moz018', 0.0021216920171470534) + +[fips2910342] +centroid = (0.70580769375458796, -1.6366768337376136) +description = Cainsville city, MO +station = ('klwd', 0.0037646606965012152) +zone = ('moz005', 0.0032493351578987495) + +[fips2910342176] +centroid = (0.70113563933321688, -1.6077267956353958) +description = Liberty township, MO +station = ('kirk', 0.0059267097210058744) +zone = ('moz018', 0.00087820790701764338) + +[fips2910344732] +centroid = (0.70115281337305646, -1.6102585353417538) +description = Lyon township, MO +station = ('kirk', 0.0040615223635749442) +zone = ('moz018', 0.0016979993639283917) + +[fips2910351032] +centroid = (0.70112424233320136, -1.6057029991012459) +description = Myrtle township, MO +station = ('keok', 0.009132948989928228) +zone = ('moz018', 0.0021150349517370529) + +[fips2910360] +centroid = (0.68960100265288149, -1.6134004421546089) +description = Cairo village, MO +station = ('kirk', 0.010379362459342709) +zone = ('moz033', 0.001451627228464724) + +[fips2910365576] +centroid = (0.69783014280957223, -1.610050457188331) +description = Salt River township, MO +station = ('kirk', 0.0045116874234495822) +zone = ('moz018', 0.0028752852544647158) + +[fips2910367286] +centroid = (0.69951963897879532, -1.6102576277705427) +description = Shelton township, MO +station = ('kirk', 0.0038758102682326526) +zone = ('moz018', 0.0017297344978932103) + +[fips2910432] +centroid = (0.65911959521167152, -1.584276447085845) +description = Caledonia village, MO +station = ('kfam', 0.0046776519072113699) +zone = ('moz084', 0.0036577382394406299) + +[fips2910450] +centroid = (0.67139474018704293, -1.6340459942363272) +description = Calhoun city, MO +station = ('kgly', 0.0020362740786305992) +zone = ('moz054', 0.0027234351691894977) + +[fips2910468] +centroid = (0.674243431685563, -1.6155640221085512) +description = California city, MO +station = ('kver', 0.0056103432068564081) +zone = ('moz047', 0.00024797738799577708) + +[fips2910486] +centroid = (0.69398308807232634, -1.6165885827393496) +description = Callao city, MO +station = ('kirk', 0.0059759126320270174) +zone = ('moz025', 0.0014343650383227334) + +[fips29105] +centroid = (0.65728558578038332, -1.6160846887310061) +description = Laclede County, MO +station = ('kh21', 0.0055726218517627747) +zone = ('moz081', 6.7154281367618916e-05) + +[fips2910502494] +centroid = (0.65963909246352759, -1.6169439317750556) +description = Auglaize township, MO +station = ('kh21', 0.0031271203179489295) +zone = ('moz081', 0.0024909024375872604) + +[fips2910521556] +centroid = (0.66035811575547165, -1.6191432909786636) +description = Eldridge township, MO +station = ('kh21', 0.0025899162599427416) +zone = ('moz069', 0.0033404557555277584) + +[fips2910525660] +centroid = (0.65496921970372146, -1.6144371677302933) +description = Franklin township, MO +station = ('ktbn', 0.0062225512957344532) +zone = ('moz081', 0.0026073396968702739) + +[fips2910526596] +centroid = (0.6560638203974023, -1.6115506549468828) +description = Gasconade township, MO +station = ('ktbn', 0.0037487520417137203) +zone = ('moz081', 0.0037261295637811779) + +[fips2910541186] +centroid = (0.65760060025707578, -1.6168179713629391) +description = Lebanon township, MO +station = ('kh21', 0.0051532847184976071) +zone = ('moz081', 0.00072706480625387327) + +[fips2910546937] +centroid = (0.65928503497146806, -1.6140970728722501) +description = May/Smith township, MO +station = ('kh21', 0.0044685111271400811) +zone = ('moz081', 0.0025248145890551963) + +[fips2910555154] +centroid = (0.65718723647703348, -1.6141922107697761) +description = Osage township, MO +station = ('ktbn', 0.0050686016811795336) +zone = ('moz081', 0.001437546812207246) + +[fips2910557386] +centroid = (0.65578121668491929, -1.6191977976112033) +description = Phillipsburg township, MO +station = ('kh21', 0.0070148459621779419) +zone = ('moz081', 0.0029299482856895201) + +[fips2910570072] +centroid = (0.65806724893918145, -1.6191491203783652) +description = Spring Hollow township, MO +station = ('kh21', 0.0047649685549258245) +zone = ('moz081', 0.0026151391738709526) + +[fips2910574734] +centroid = (0.65448356438606159, -1.6181265843294992) +description = Union township, MO +station = ('kh21', 0.0082234717210881419) +zone = ('moz081', 0.0032467601059082991) + +[fips2910577542] +centroid = (0.65556017073515427, -1.6164131247896465) +description = Washington township, MO +station = ('kh21', 0.007218622341240123) +zone = ('moz081', 0.0017315184794002311) + +[fips2910612] +centroid = (0.67658695508538591, -1.5762146141912503) +description = Calverton Park village, MO +station = ('kstl', 0.00081204350296240168) +zone = ('moz064', 0.0024341367631922116) + +[fips29107] +centroid = (0.68187753674037122, -1.6371648976096411) +description = Lafayette County, MO +station = ('krcm', 0.0050389802248362973) +zone = ('moz038', 0.0002384872129184549) + +[fips2910714428] +centroid = (0.68212355835173244, -1.6408907392303362) +description = Clay township, MO +station = ('klxt', 0.0051672814498653326) +zone = ('moz038', 0.0031390969200409584) + +[fips2910718406] +centroid = (0.68150014419621252, -1.6344420443501899) +description = Davis township, MO +station = ('krcm', 0.0051056087302123873) +zone = ('moz038', 0.0019096332751184588) + +[fips2910719936] +centroid = (0.68345906684206592, -1.6347379300182805) +description = Dover township, MO +station = ('krcm', 0.006874301961883874) +zone = ('moz038', 0.0023240936387103096) + +[fips2910725858] +centroid = (0.68020320748234797, -1.6339771060907511) +description = Freedom township, MO +station = ('krcm', 0.0041595859831575731) +zone = ('moz038', 0.0027679823852807986) + +[fips2910738] +centroid = (0.68417074229785912, -1.6409514941415979) +description = Camden city, MO +station = ('klxt', 0.0062215321868977092) +zone = ('moz030', 0.002688311827321157) + +[fips2910741888] +centroid = (0.6831625354021521, -1.6379429130303027) +description = Lexington township, MO +station = ('krcm', 0.006356232332911535) +zone = ('moz038', 0.0015786418658644561) + +[fips2910747882] +centroid = (0.68341176841933682, -1.6324754248023352) +description = Middleton township, MO +station = ('kszl', 0.007390782512796676) +zone = ('moz038', 0.0037586973766887844) + +[fips2910768456] +centroid = (0.67994283926453558, -1.6411268473715459) +description = Sni-A-Bar township, MO +station = ('krcm', 0.0044015576251582398) +zone = ('moz038', 0.0038076979511821817) + +[fips2910777560] +centroid = (0.6807033490327995, -1.6382181165467571) +description = Washington township, MO +station = ('krcm', 0.0039582464698233229) +zone = ('moz038', 0.0015355418778081021) + +[fips2910792] +centroid = (0.68860490834218335, -1.6536736528449902) +description = Camden Point city, MO +station = ('kmci', 0.0026983032083229179) +zone = ('moz028', 0.0013309408007058392) + +[fips2910810] +centroid = (0.6634559006448365, -1.6188150643595336) +description = Camdenton city, MO +station = ('kh21', 0.0011310934909854484) +zone = ('moz069', 0.00031571190047439724) + +[fips2910828] +centroid = (0.69372570436753467, -1.6447485277424818) +description = Cameron city, MO +station = ('kmci', 0.010278055130571249) +zone = ('moz013', 0.0033921033665485416) + +[fips2910864] +centroid = (0.63692377187516147, -1.5721240511167662) +description = Campbell city, MO +station = ('kpof', 0.0058448541286100063) +zone = ('moz113', 0.0038653096021048854) + +[fips29109] +centroid = (0.64762422843950618, -1.6376993697864795) +description = Lawrence County, MO +station = ('khfj', 0.0044405236808698432) +zone = ('moz094', 6.8396816844612577e-06) + +[fips2910902566] +centroid = (0.64561329498194331, -1.6357638345526029) +description = Aurora township, MO +station = ('khfj', 0.0044445770166978297) +zone = ('moz094', 0.0025363987557544976) + +[fips2910909442] +centroid = (0.64571508258391963, -1.634419320163329) +description = Buck Prairie township, MO +station = ('khfj', 0.0054920408840711697) +zone = ('moz094', 0.0032386635159602855) + +[fips2910925930] +centroid = (0.64611870742673583, -1.6386625297341926) +description = Freistatt township, MO +station = ('khfj', 0.0027826835322335691) +zone = ('moz094', 0.0016967684070796941) + +[fips2910928972] +centroid = (0.6497287115449758, -1.6391221621927052) +description = Green township, MO +station = ('khfj', 0.0058874987841712918) +zone = ('moz094', 0.0023887954520887215) + +[fips2910932428] +centroid = (0.64683239001116888, -1.638157955047441) +description = Hoberg township, MO +station = ('khfj', 0.0035886338300097566) +zone = ('moz094', 0.00087858179961045068) + +[fips2910942806] +centroid = (0.64986191507348801, -1.6371575846800754) +description = Lincoln township, MO +station = ('khfj', 0.0065765203991780099) +zone = ('moz094', 0.0022734603049418111) + +[fips2910950582] +centroid = (0.64626611793535926, -1.6405709774580783) +description = Mount Pleasant township, MO +station = ('khfj', 0.0022609334908281101) +zone = ('moz094', 0.0026702784730561467) + +[fips2910950690] +centroid = (0.64792187689014125, -1.6370535281500713) +description = Mount Vernon township, MO +station = ('khfj', 0.0049897183207566207) +zone = ('moz094', 0.00058816342918329887) + +[fips2910955784] +centroid = (0.64967855078227343, -1.6350510420860882) +description = Ozark township, MO +station = ('ksgf', 0.0041472071343311755) +zone = ('moz094', 0.0029383689595019863) + +[fips2910957440] +centroid = (0.6450181551603057, -1.6401223754804382) +description = Pierce township, MO +station = ('khfj', 0.001195909662408191) +zone = ('moz094', 0.0032521945184822189) + +[fips2910961040] +centroid = (0.64992064540281769, -1.6406956812331333) +description = Red Oak township, MO +station = ('khfj', 0.0058978825226933861) +zone = ('moz094', 0.0033131087774369164) + +[fips2910970090] +centroid = (0.64513671537639372, -1.637479248861218) +description = Spring River township, MO +station = ('khfj', 0.0029945994275231889) +zone = ('moz094', 0.002497975498196883) + +[fips2910974104] +centroid = (0.64784201062357005, -1.6346308191620857) +description = Turnback township, MO +station = ('ksgf', 0.0043058112232973603) +zone = ('moz094', 0.0024512692627622051) + +[fips2910976228] +centroid = (0.64802835942780534, -1.6403758321944126) +description = Vineyard township, MO +station = ('khfj', 0.004028824889015536) +zone = ('moz094', 0.0021762226646753506) + +[fips2911026] +centroid = (0.64147864489055373, -1.5653248243096494) +description = Canalou city, MO +station = ('kcir', 0.0084757745658108861) +zone = ('moz114', 0.0028318416941416785) + +[fips29111] +centroid = (0.69960753375992568, -1.6009696312632522) +description = Lewis County, MO +station = ('keok', 0.0077431039096854263) +zone = ('moz019', 0.00023273660959166969) + +[fips2911111152] +centroid = (0.70143627229687278, -1.5981565270281801) +description = Canton township, MO +station = ('keok', 0.0051595701569120437) +zone = ('moz019', 0.0026184237684147788) + +[fips2911119468] +centroid = (0.69956648361591878, -1.6004050696101095) +description = Dickerson township, MO +station = ('keok', 0.0075697766127633239) +zone = ('moz019', 0.00042886243442519413) + +[fips2911132014] +centroid = (0.697974307005787, -1.6005313092749063) +description = Highland township, MO +station = ('kuin', 0.0068127499305054235) +zone = ('moz019', 0.001865090162119859) + +[fips2911134] +centroid = (0.70039816791107923, -1.5974273110134043) +description = Canton city, MO +station = ('kuin', 0.0055431633243453911) +zone = ('moz019', 0.0026833126178770479) + +[fips2911139530] +centroid = (0.69990074907426081, -1.603416879580521) +description = La Belle township, MO +station = ('keok', 0.0086197618447914019) +zone = ('moz019', 0.0019616744781038586) + +[fips2911144750] +centroid = (0.70164684627112595, -1.6004364855366455) +description = Lyon township, MO +station = ('keok', 0.0058187000801895022) +zone = ('moz019', 0.0018516817673795158) + +[fips2911160950] +centroid = (0.70154931727252456, -1.6031420076766245) +description = Reddish township, MO +station = ('keok', 0.007318735042543989) +zone = ('moz019', 0.0024572809268758266) + +[fips2911165270] +centroid = (0.69816004494478423, -1.6033990772221505) +description = Salem township, MO +station = ('keok', 0.0099709076163861272) +zone = ('moz019', 0.0025611776189061182) + +[fips2911174752] +centroid = (0.69841032515952017, -1.5977112760827039) +description = Union township, MO +station = ('kuin', 0.0047976354699504689) +zone = ('moz019', 0.0027898334126039248) + +[fips2911242] +centroid = (0.65115902632027767, -1.563103596130514) +description = Cape Girardeau city, MO +station = ('kcgi', 0.0013566882751136257) +zone = ('moz087', 0.0021782882026234619) + +[fips29113] +centroid = (0.68170061271409654, -1.5875125842250151) +description = Lincoln County, MO +station = ('kfyg', 0.0082348238266205225) +zone = ('moz052', 3.3917412840191206e-05) + +[fips2911303880] +centroid = (0.68068172440336738, -1.5884136628112349) +description = Bedford township, MO +station = ('kfyg', 0.0072044687704600424) +zone = ('moz052', 0.001210994842907435) + +[fips2911309928] +centroid = (0.68189860286444282, -1.5841437846094009) +description = Burr Oak township, MO +station = ('kset', 0.0050881190170085581) +zone = ('ilz098', 0.0021764956750990909) + +[fips2911314050] +centroid = (0.67914098264629175, -1.5878222405409042) +description = Clark township, MO +station = ('kfyg', 0.0056660771491453092) +zone = ('moz052', 0.0025599055085055683) + +[fips2911331042] +centroid = (0.68039964428966004, -1.5902364846820176) +description = Hawk Point township, MO +station = ('kfyg', 0.0071093571268740765) +zone = ('moz052', 0.0024518307894931808) + +[fips2911334030] +centroid = (0.68369201593732953, -1.585198417263211) +description = Hurricane township, MO +station = ('kset', 0.0067567985538050795) +zone = ('moz052', 0.0027094896388509715) + +[fips2911348458] +centroid = (0.68232229899365704, -1.5899789438975933) +description = Millwood township, MO +station = ('kfyg', 0.0089569937309723589) +zone = ('moz052', 0.0019843598920561015) + +[fips2911349322] +centroid = (0.68003125764444161, -1.5849459030270323) +description = Monroe township, MO +station = ('kset', 0.0051483693599057171) +zone = ('moz052', 0.0026209939873457883) + +[fips2911350] +centroid = (0.62914721304680554, -1.5758735768554106) +description = Cardwell city, MO +station = ('kbyh', 0.005015553433776989) +zone = ('arz018', 0.0039765174178443673) + +[fips2911352544] +centroid = (0.68221065028140693, -1.5919457554316658) +description = Nineveh township, MO +station = ('kfyg', 0.0092194458896932875) +zone = ('moz051', 0.0043359811296354604) + +[fips2911359582] +centroid = (0.68108856065200718, -1.592143134716774) +description = Prairie township, MO +station = ('kfyg', 0.0082224429297676413) +zone = ('moz051', 0.0036453639766720189) + +[fips2911368] +centroid = (0.64863489624945847, -1.6500704729641256) +description = Carl Junction city, MO +station = ('kjln', 0.00063449163765441912) +zone = ('moz088', 0.0028849108328037154) + +[fips2911368492] +centroid = (0.68164668204020995, -1.5864187863827903) +description = Snow Hill township, MO +station = ('kset', 0.0066166256566600355) +zone = ('moz052', 0.00088346380415259675) + +[fips2911374770] +centroid = (0.68322655407911514, -1.5883613552935525) +description = Union township, MO +station = ('kppq', 0.0091360409759951369) +zone = ('moz052', 0.001656827414364801) + +[fips2911377884] +centroid = (0.68393557663444537, -1.5906041033823652) +description = Waverly township, MO +station = ('kppq', 0.0092425769538926183) +zone = ('moz036', 0.0027872540404660774) + +[fips29115] +centroid = (0.6957657324637283, -1.6250414915594382) +description = Linn County, MO +station = ('kcdj', 0.006424098936793108) +zone = ('moz024', 0.00010112785879753747) + +[fips2911503016] +centroid = (0.69666295387230104, -1.6218393708873893) +description = Baker township, MO +station = ('kirk', 0.0059499480424060822) +zone = ('moz024', 0.0025723214492280469) + +[fips2911504726] +centroid = (0.69792295941919325, -1.6261322699820573) +description = Benton township, MO +station = ('kcdj', 0.0062846352777574943) +zone = ('moz024', 0.0022244338943460547) + +[fips2911508668] +centroid = (0.69415151234514372, -1.6244024043472356) +description = Brookfield township, MO +station = ('kcdj', 0.0069093011360323907) +zone = ('moz024', 0.0017806311442974446) + +[fips2911509406] +centroid = (0.69479517231998678, -1.6215996324613353) +description = Bucklin township, MO +station = ('kirk', 0.0070091410210774679) +zone = ('moz024', 0.0028414343179011588) + +[fips2911514446] +centroid = (0.69592317861555064, -1.6282481675408349) +description = Clay township, MO +station = ('kcdj', 0.0040310989342517709) +zone = ('moz024', 0.0024726862802958208) + +[fips2911522438] +centroid = (0.69818521259259791, -1.6242959392628638) +description = Enterprise township, MO +station = ('kirk', 0.0070892047906574041) +zone = ('moz024', 0.0023857712423606689) + +[fips2911528612] +centroid = (0.69694262543164065, -1.6242955901970133) +description = Grantsville township, MO +station = ('kirk', 0.0074867253571932278) +zone = ('moz024', 0.0012139037192235508) + +[fips2911535864] +centroid = (0.69771620771600207, -1.6283521542576689) +description = Jackson township, MO +station = ('kcdj', 0.0047307397167929473) +zone = ('moz024', 0.0031503040157176867) + +[fips2911536854] +centroid = (0.69417331150750117, -1.6262586667264864) +description = Jefferson township, MO +station = ('kcdj', 0.0054914388917526955) +zone = ('moz024', 0.0019392419014819082) + +[fips2911543526] +centroid = (0.69604027275506697, -1.6256529153029968) +description = Locust Creek township, MO +station = ('kcdj', 0.0060028216884775816) +zone = ('moz024', 0.0005107582542697507) + +[fips2911545884] +centroid = (0.69335815548035717, -1.6221634436228995) +description = Marceline township, MO +station = ('kirk', 0.0083780123787966267) +zone = ('moz024', 0.0033364049395778104) + +[fips2911553300] +centroid = (0.69808424529537016, -1.6220540289320922) +description = North Salem township, MO +station = ('kirk', 0.0054705921255910816) +zone = ('moz024', 0.0031807023301581965) + +[fips2911556378] +centroid = (0.69412042803116569, -1.6283176840049418) +description = Parson Creek township, MO +station = ('kcdj', 0.0039412967133169198) +zone = ('moz024', 0.0030716609255646522) + +[fips2911566] +centroid = (0.68702515847632573, -1.6317966313496495) +description = Carrollton city, MO +station = ('kcdj', 0.0079954128370023827) +zone = ('moz031', 0.0011106016422496982) + +[fips2911581304] +centroid = (0.69489870525121511, -1.6230066994510006) +description = Yellow Creek township, MO +station = ('kirk', 0.0077239994942254241) +zone = ('moz024', 0.0018283525081422948) + +[fips2911638] +centroid = (0.64833066790754335, -1.6482679143659582) +description = Carterville city, MO +station = ('kjln', 0.00085351054250243309) +zone = ('moz088', 0.0016883771876383612) + +[fips2911656] +centroid = (0.64840196460748734, -1.6463243331642301) +description = Carthage city, MO +station = ('kjln', 0.0024006042593298009) +zone = ('moz088', 0.00093960902626445686) + +[fips2911692] +centroid = (0.63148213197341607, -1.5649827048696736) +description = Caruthersville city, MO +station = ('kdyr', 0.0049171815604468544) +zone = ('moz115', 0.0017537373150359398) + +[fips29117] +centroid = (0.69426731494101368, -1.632724116767452) +description = Livingston County, MO +station = ('kcdj', 0.00081465143596400297) +zone = ('moz023', 6.1327792238284379e-05) + +[fips2911706580] +centroid = (0.69221812386624715, -1.6335890844914476) +description = Blue Mound township, MO +station = ('kcdj', 0.0027207048881906369) +zone = ('moz023', 0.002212483283488277) + +[fips2911713708] +centroid = (0.69440957672834369, -1.6324486863581946) +description = Chillicothe township, MO +station = ('kcdj', 0.0008595991750137632) +zone = ('moz023', 0.0002278486014927387) + +[fips2911717146] +centroid = (0.69684787150654981, -1.6323155526428526) +description = Cream Ridge township, MO +station = ('kcdj', 0.0020702049538142875) +zone = ('moz023', 0.0025388566396887589) + +[fips2911723500] +centroid = (0.69241370546222558, -1.6315739796969728) +description = Fairview township, MO +station = ('kcdj', 0.0028600158198686305) +zone = ('moz023', 0.002109914192678078) + +[fips2911728] +centroid = (0.65033760456111911, -1.6464460000663865) +description = Carytown city, MO +station = ('kjln', 0.0030154026039761321) +zone = ('moz088', 0.0010176815077130343) + +[fips2911728306] +centroid = (0.6922803797606657, -1.62938823406153) +description = Grand River township, MO +station = ('kcdj', 0.0040313399531028199) +zone = ('moz023', 0.0032840881283631874) + +[fips2911728990] +centroid = (0.69350336687412317, -1.6336085449126077) +description = Green township, MO +station = ('kcdj', 0.0014436949012953217) +zone = ('moz023', 0.0010684186931878272) + +[fips2911735882] +centroid = (0.69625126560834061, -1.6348780974105082) +description = Jackson township, MO +station = ('kcdj', 0.0017719337502353813) +zone = ('moz023', 0.0025353046761404409) + +[fips2911747090] +centroid = (0.69686497573321937, -1.630483742326422) +description = Medicine township, MO +station = ('kcdj', 0.0029211157963456732) +zone = ('moz023', 0.0030652201228731474) + +[fips2911749340] +centroid = (0.69211816885998534, -1.635423163735906) +description = Monroe township, MO +station = ('kcdj', 0.003238851941332087) +zone = ('moz023', 0.0030316197240896868) + +[fips2911749808] +centroid = (0.69358318078081693, -1.6356596907561363) +description = Mooresville township, MO +station = ('kcdj', 0.0022371287728149432) +zone = ('moz023', 0.0023753149444341298) + +[fips2911761436] +centroid = (0.69530051495160916, -1.6314340566508405) +description = Rich Hill township, MO +station = ('kcdj', 0.001507401854493286) +zone = ('moz023', 0.0013889759374616946) + +[fips2911765774] +centroid = (0.69510765606926384, -1.6352667298750498) +description = Sampsel township, MO +station = ('kcdj', 0.0014922702029384637) +zone = ('moz023', 0.0021017056530685308) + +[fips2911779198] +centroid = (0.69463022125238083, -1.6300177219628469) +description = Wheeling township, MO +station = ('kcdj', 0.0025678587961033891) +zone = ('moz023', 0.0021026279621377568) + +[fips2911890] +centroid = (0.64016671579841466, -1.6383016829113428) +description = Cassville city, MO +station = ('khfj', 0.0044073974397544416) +zone = ('moz102', 0.00076587339601887452) + +[fips29119] +centroid = (0.63931790982329229, -1.6466126615566594) +description = McDonald County, MO +station = ('kvbt', 0.0052066603008201163) +zone = ('moz101', 6.764864110308246e-05) + +[fips2911901236] +centroid = (0.63977747246863481, -1.6479342946794395) +description = Anderson East township, MO +station = ('kgmj', 0.0045557566222977266) +zone = ('moz101', 0.0011102582892787386) + +[fips2911901237] +centroid = (0.64001155602791238, -1.6487453317295488) +description = Anderson West township, MO +station = ('kgmj', 0.0039793211726442106) +zone = ('moz101', 0.0017992252611551899) + +[fips2911908] +centroid = (0.67644767781107662, -1.5751347789830414) +description = Castle Point CDP, MO +station = ('kstl', 0.0016127849106270884) +zone = ('moz064', 0.0021263163860675339) + +[fips2911909613] +centroid = (0.6412569182623804, -1.6508458354843241) +description = Buffalo Hart township, MO +station = ('kgmj', 0.0031892579820780426) +zone = ('moz101', 0.0038689611052559955) + +[fips2911909617] +centroid = (0.64112950922698475, -1.6494032510443806) +description = Buffalo May township, MO +station = ('kgmj', 0.0039811733337391337) +zone = ('moz101', 0.0028482525844099123) + +[fips2911912574] +centroid = (0.63900265100050457, -1.6434755369459548) +description = Center township, MO +station = ('krog', 0.0043782926509235119) +zone = ('moz101', 0.0025962318436767873) + +[fips2911921700] +centroid = (0.64040622733166586, -1.6447706759706895) +description = Elk Horn township, MO +station = ('khfj', 0.0047354861159523021) +zone = ('moz101', 0.0019010246243952799) + +[fips2911921792] +centroid = (0.63767791119165584, -1.6486704745579308) +description = Elk River East township, MO +station = ('kvbt', 0.0047348201459022389) +zone = ('moz101', 0.0022653791866181915) + +[fips2911921794] +centroid = (0.63756989276424991, -1.6496148896694773) +description = Elk River West township, MO +station = ('kgmj', 0.0033857417071312891) +zone = ('moz101', 0.0029119681558141858) + +[fips2911922550] +centroid = (0.64101669114413584, -1.6475177718534511) +description = Erie Goodman township, MO +station = ('kgmj', 0.005252155727831451) +zone = ('moz101', 0.0018485313091828231) + +[fips2911922554] +centroid = (0.64068617814368567, -1.6464423697815422) +description = Erie McNatt township, MO +station = ('khfj', 0.0055169603694174589) +zone = ('moz101', 0.0014088596106050413) + +[fips2911945240] +centroid = (0.63954473281288149, -1.6501636386395968) +description = McMillen Coy township, MO +station = ('kgmj', 0.0027588332637653152) +zone = ('moz101', 0.0027987049857448347) + +[fips2911945246] +centroid = (0.63996205849032584, -1.6508984920678567) +description = McMillen Tiff township, MO +station = ('kgmj', 0.0023506154270473605) +zone = ('moz101', 0.0034423307763667373) + +[fips2911950384] +centroid = (0.63763436522681849, -1.6429413963816744) +description = Mountain township, MO +station = ('krog', 0.0029542148458078848) +zone = ('moz101', 0.0034362847477989482) + +[fips2911957840] +centroid = (0.63877519969238461, -1.6485920045547611) +description = Pineville Lanagan township, MO +station = ('kgmj', 0.0039421306351584574) +zone = ('moz101', 0.0016114289298425424) + +[fips2911957843] +centroid = (0.63929035107440324, -1.6469264368495831) +description = Pineville North township, MO +station = ('kvbt', 0.0052730778829828268) +zone = ('moz101', 0.00018956830710292874) + +[fips2911957846] +centroid = (0.63809007069451429, -1.6470233898895312) +description = Pineville South township, MO +station = ('kvbt', 0.0042307828601620906) +zone = ('moz101', 0.0012307645649495878) + +[fips2911959600] +centroid = (0.63808132659496175, -1.6507907005332536) +description = Prairie township, MO +station = ('kgmj', 0.0023189655901778017) +zone = ('moz101', 0.0035075367258551701) + +[fips2911961760] +centroid = (0.64024101446467196, -1.6430626094982252) +description = Richwood township, MO +station = ('khfj', 0.0041435423007016086) +zone = ('moz101', 0.0030612089451851746) + +[fips2911979540] +centroid = (0.63789958545995162, -1.6450226491547999) +description = White Rock township, MO +station = ('kvbt', 0.0035093722865568435) +zone = ('moz101', 0.0019313164513540223) + +[fips2912052] +centroid = (0.63898319057934483, -1.5656656347526865) +description = Catron town, MO +station = ('kpof', 0.0089674520099542292) +zone = ('moz114', 0.00081735189668934183) + +[fips2912079] +centroid = (0.68108974747589845, -1.5889853977676032) +description = Cave town, MO +station = ('kfyg', 0.0076377322175257209) +zone = ('moz052', 0.0012639505648249535) + +[fips29121] +centroid = (0.69516106314437487, -1.615552502935488) +description = Macon County, MO +station = ('kirk', 0.0047198665447174383) +zone = ('moz025', 1.788338014469622e-05) + +[fips2912105284] +centroid = (0.69360696961852153, -1.6155902544072085) +description = Bevier township, MO +station = ('kirk', 0.0062739505159282467) +zone = ('moz025', 0.0015718413109897492) + +[fips2912110504] +centroid = (0.69359941234286038, -1.6172439887800583) +description = Callao township, MO +station = ('kirk', 0.0064518391355914565) +zone = ('moz025', 0.0020431119402610047) + +[fips2912113240] +centroid = (0.69215920155069977, -1.6158690533019222) +description = Chariton township, MO +station = ('kirk', 0.0077300767859848282) +zone = ('moz025', 0.0030289181449133945) + +[fips2912120062] +centroid = (0.69813931043327049, -1.6194693010296437) +description = Drake township, MO +station = ('kirk', 0.0036324366645656557) +zone = ('moz017', 0.0041616961513831234) + +[fips2912120638] +centroid = (0.69520136279680345, -1.6138675620756127) +description = Eagle township, MO +station = ('kirk', 0.0048032165853426154) +zone = ('moz025', 0.0012976043536737382) + +[fips2912120710] +centroid = (0.69801612509466471, -1.6174193071034211) +description = Easley township, MO +station = ('kirk', 0.0024676993057722342) +zone = ('moz025', 0.0031767733608545059) + +[fips2912133580] +centroid = (0.69354518496300099, -1.6137208322453975) +description = Hudson township, MO +station = ('kirk', 0.0064469583400059002) +zone = ('moz025', 0.0021585033099829698) + +[fips2912135018] +centroid = (0.69665605982175571, -1.6155637079492857) +description = Independence township, MO +station = ('kirk', 0.0032271913236603385) +zone = ('moz025', 0.0014774649787760575) + +[fips2912135900] +centroid = (0.69657406425349688, -1.6117698683009332) +description = Jackson township, MO +station = ('kirk', 0.0042697212832372867) +zone = ('moz025', 0.0032242476644742807) + +[fips2912137520] +centroid = (0.69805687853269882, -1.6120887748618575) +description = Johnston township, MO +station = ('kirk', 0.0030600881524017031) +zone = ('moz018', 0.0037161568182261322) + +[fips2912140700] +centroid = (0.69797762313136569, -1.6136325011319539) +description = La Plata township, MO +station = ('kirk', 0.0022894558802727199) +zone = ('moz025', 0.003164439990600342) + +[fips2912142194] +centroid = (0.6951317765195264, -1.6157105774058411) +description = Liberty township, MO +station = ('kirk', 0.0047555639515033657) +zone = ('moz025', 0.00012686741886592669) + +[fips2912143112] +centroid = (0.69348954386644734, -1.6195424477785947) +description = Lingo township, MO +station = ('kirk', 0.0071677269767312325) +zone = ('moz025', 0.0034975814602370473) + +[fips2912144642] +centroid = (0.69659293126271105, -1.6138063359254526) +description = Lyda township, MO +station = ('kirk', 0.0034782461691466242) +zone = ('moz025', 0.0019508189378024069) + +[fips2912147810] +centroid = (0.69190673967439875, -1.6119972847024682) +description = Middle Fork township, MO +station = ('kirk', 0.0083641591367119468) +zone = ('moz033', 0.0039928743830254035) + +[fips2912150114] +centroid = (0.69223875365800569, -1.6171831291490413) +description = Morrow township, MO +station = ('kirk', 0.007773450250258618) +zone = ('moz025', 0.0031946645860354522) + +[fips2912151176] +centroid = (0.69209506070068894, -1.6138474384293371) +description = Narrows township, MO +station = ('kirk', 0.0078616442745574507) +zone = ('moz025', 0.0033520582877141275) + +[fips2912161508] +centroid = (0.69814257419897174, -1.6155302150809401) +description = Richland township, MO +station = ('kirk', 0.0017432141393313133) +zone = ('moz025', 0.0029640419075468373) + +[fips2912163326] +centroid = (0.69360468323720137, -1.6118998953302068) +description = Round Grove township, MO +station = ('kirk', 0.00679345944030717) +zone = ('moz025', 0.0032210324478630569) + +[fips2912163686] +centroid = (0.69504793090226058, -1.6196068329747009) +description = Russell township, MO +station = ('kirk', 0.0058485889669202783) +zone = ('moz025', 0.0031129071121862636) + +[fips2912172718] +centroid = (0.69505250366490079, -1.6118172016302474) +description = Ten Mile township, MO +station = ('kirk', 0.0055146334314639328) +zone = ('moz026', 0.0036972706997169631) + +[fips2912175436] +centroid = (0.69505000784407045, -1.6177367999476515) +description = Valley township, MO +station = ('kirk', 0.0051751546261850929) +zone = ('moz025', 0.0016789444139998591) + +[fips2912176822] +centroid = (0.69668939561046872, -1.6175691087131199) +description = Walnut Creek township, MO +station = ('kirk', 0.0036298475608755772) +zone = ('moz025', 0.0021603143006878735) + +[fips2912179270] +centroid = (0.69653135604670069, -1.6196255603575747) +description = White township, MO +station = ('kirk', 0.0047075084697505674) +zone = ('moz025', 0.0034030338535988641) + +[fips29123] +centroid = (0.65403133212357734, -1.5768256190557888) +description = Madison County, MO +station = ('kfam', 0.0052634739899952692) +zone = ('moz085', 8.5141786157682834e-05) + +[fips2912305410] +centroid = (0.65178792080964876, -1.5751917116232415) +description = Big Creek township, MO +station = ('kfam', 0.0077811258993552837) +zone = ('moz085', 0.0026625381971903724) + +[fips2912311962] +centroid = (0.6553110773443096, -1.5739223162049736) +description = Castor township, MO +station = ('kfam', 0.0052055350442880132) +zone = ('moz085', 0.002588904566554221) + +[fips2912312808] +centroid = (0.65338276777353621, -1.5773151140978028) +description = Central township, MO +station = ('kfam', 0.0058289317441911973) +zone = ('moz085', 0.00083299758827508905) + +[fips2912342212] +centroid = (0.65277890130563876, -1.5796983437381087) +description = Liberty township, MO +station = ('kfam', 0.0064614909770079471) +zone = ('moz085', 0.0026494831321647425) + +[fips2912346262] +centroid = (0.65322347157270677, -1.5747543146593992) +description = Marquand township, MO +station = ('kfam', 0.0065813777395720644) +zone = ('moz085', 0.0018655366720831002) + +[fips2912348620] +centroid = (0.65653998112393142, -1.5757740058215846) +description = Mine La Motte township, MO +station = ('kfam', 0.0033183974831927005) +zone = ('moz085', 0.0025611064579560299) + +[fips2912358] +centroid = (0.66946540087201079, -1.5819831542618943) +description = Cedar Hill CDP, MO +station = ('ksus', 0.0051058488148651038) +zone = ('moz065', 0.0021988755633466717) + +[fips2912358790] +centroid = (0.65603437669292108, -1.5785983150704543) +description = Polk township, MO +station = ('kfam', 0.0031240311722718138) +zone = ('moz085', 0.0023818147524251694) + +[fips2912364280] +centroid = (0.65463662976146153, -1.5779121737816175) +description = St. Francois township, MO +station = ('kfam', 0.0045299176418207325) +zone = ('moz085', 0.0010123631751712172) + +[fips2912365072] +centroid = (0.6552832917026179, -1.575913370362356) +description = St. Michael township, MO +station = ('kfam', 0.0043269259419716289) +zone = ('moz085', 0.0013698898077203769) + +[fips2912374248] +centroid = (0.65207542889732983, -1.5775281838928863) +description = Twelvemile township, MO +station = ('kfam', 0.0071078574915547227) +zone = ('moz085', 0.0021173827321841225) + +[fips2912376] +centroid = (0.66900887509956664, -1.5822565775425117) +description = Cedar Hill Lakes village, MO +station = ('ksus', 0.0055616169876925702) +zone = ('moz065', 0.0020391667660908854) + +[fips29125] +centroid = (0.66606328292097583, -1.6043694977395522) +description = Maries County, MO +station = ('kvih', 0.0022138124206989283) +zone = ('moz058', 2.5131522919153261e-05) + +[fips2912507228] +centroid = (0.66735758418766977, -1.6075915326183663) +description = Boone township, MO +station = ('kvih', 0.0050212733880689257) +zone = ('moz058', 0.0028360066800472094) + +[fips2912520206] +centroid = (0.66421958691233907, -1.6057068039190152) +description = Dry Creek township, MO +station = ('kvih', 0.0034737988970095996) +zone = ('moz058', 0.0020986160548818215) + +[fips2912535918] +centroid = (0.66693802448878281, -1.6044714075145761) +description = Jackson township, MO +station = ('kvih', 0.002628399555711603) +zone = ('moz058', 0.00089462716786549499) + +[fips2912536872] +centroid = (0.66711166729606386, -1.6010370533322567) +description = Jefferson township, MO +station = ('kvih', 0.0016277227210815272) +zone = ('moz058', 0.0028442821990183787) + +[fips2912537394] +centroid = (0.6649741451078538, -1.6008097940103545) +description = Johnson township, MO +station = ('kvih', 0.00086664265600121173) +zone = ('moz058', 0.003014717960720976) + +[fips2912548260] +centroid = (0.6648777854798511, -1.6078501555069269) +description = Miller township, MO +station = ('kvih', 0.0049397982502725835) +zone = ('moz058', 0.002960234868268791) + +[fips2912569662] +centroid = (0.66505336560260186, -1.6030811829521923) +description = Spring Creek township, MO +station = ('kvih', 0.0012455738529569523) +zone = ('moz058', 0.0014310217959951914) + +[fips2912592] +centroid = (0.68957185565437329, -1.597484994145183) +description = Center city, MO +station = ('kuin', 0.0086156221436149809) +zone = ('moz035', 0.0003292873083033968) + +[fips2912664] +centroid = (0.67401116326870758, -1.6128404707173991) +description = Centertown town, MO +station = ('kjef', 0.0035456261944709295) +zone = ('moz047', 0.0023883871606075759) + +[fips2912682] +centroid = (0.67623476509562597, -1.637907168687222) +description = Centerview city, MO +station = ('krcm', 0.00086172533851000088) +zone = ('moz044', 0.00052957749064211205) + +[fips29127] +centroid = (0.69477260521275852, -1.5993390748628689) +description = Marion County, MO +station = ('kuin', 0.0062316182466354625) +zone = ('moz027', 0.00017607744013465909) + +[fips2912718] +centroid = (0.65339011560968707, -1.5875553273383967) +description = Centerville city, MO +station = ('kfam', 0.0092891095231566346) +zone = ('moz099', 0.0013008045327853016) + +[fips2912723176] +centroid = (0.69617029978434053, -1.5974997247240696) +description = Fabius township, MO +station = ('kuin', 0.0044892360220274144) +zone = ('moz027', 0.0018874850825081595) + +[fips2912742230] +centroid = (0.69468940536731594, -1.5966297828117055) +description = Liberty township, MO +station = ('kuin', 0.0043904659121844223) +zone = ('moz027', 0.0019081785906740365) + +[fips2912746658] +centroid = (0.69287037086100989, -1.5947524717616754) +description = Mason township, MO +station = ('kuin', 0.0047058345565957676) +zone = ('moz035', 0.0035969052830653507) + +[fips2912748278] +centroid = (0.69353591726467279, -1.596057698789487) +description = Miller township, MO +station = ('kuin', 0.00477194674005804) +zone = ('moz027', 0.0026413400088136619) + +[fips2912763344] +centroid = (0.69643520585820828, -1.600590249043746) +description = Round Grove township, MO +station = ('kuin', 0.0068084802777488322) +zone = ('moz027', 0.0020349618822199491) + +[fips2912769050] +centroid = (0.69318555987062758, -1.5982024815473852) +description = South River township, MO +station = ('kuin', 0.0062401306184402356) +zone = ('moz027', 0.0017098674190101223) + +[fips2912774788] +centroid = (0.69513448177986692, -1.6011105316937655) +description = Union township, MO +station = ('kuin', 0.0074206521859413411) +zone = ('moz027', 0.0015831004412542734) + +[fips2912777074] +centroid = (0.69342728797202879, -1.6013288898364826) +description = Warren township, MO +station = ('kuin', 0.0081704551409969104) +zone = ('moz027', 0.002154183253797618) + +[fips2912898] +centroid = (0.68435442074833897, -1.608046400328021) +description = Centralia city, MO +station = ('kcou', 0.0069659801788281321) +zone = ('moz041', 0.0045135387083250307) + +[fips29129] +centroid = (0.70548676261173116, -1.6330632342411144) +description = Mercer County, MO +station = ('klwd', 0.0057551562252962192) +zone = ('moz006', 1.9298792952891127e-05) + +[fips2912930538] +centroid = (0.70549819451833173, -1.6352847591262227) +description = Harrison township, MO +station = ('klwd', 0.0045823508262656009) +zone = ('moz006', 0.0016796770073881017) + +[fips2912943058] +centroid = (0.70729928703992728, -1.6353488650696486) +description = Lindley township, MO +station = ('klwd', 0.0032689369912221977) +zone = ('moz006', 0.002492482230047186) + +[fips2912945452] +centroid = (0.70359842108082848, -1.6357961580503497) +description = Madison township, MO +station = ('klwd', 0.0060548977580617254) +zone = ('moz006', 0.0028128508427189801) + +[fips2912946082] +centroid = (0.7073087292711806, -1.6330327258857895) +description = Marion township, MO +station = ('klwd', 0.0048102062407110874) +zone = ('moz006', 0.0018068371448948465) + +[fips2912947108] +centroid = (0.70373223547457886, -1.630678032378754) +description = Medicine township, MO +station = ('klwd', 0.0082771724244759658) +zone = ('moz006', 0.0025450280798392684) + +[fips2912949952] +centroid = (0.70574412886323035, -1.6332905808294793) +description = Morgan township, MO +station = ('klwd', 0.0054576797113590897) +zone = ('moz006', 0.00029086639639150472) + +[fips2912960662] +centroid = (0.70564279504685956, -1.6308208003115672) +description = Ravanna township, MO +station = ('klwd', 0.0070656138206660656) +zone = ('moz006', 0.0017243160968973827) + +[fips2912968564] +centroid = (0.70724675262944225, -1.6307931892028005) +description = Somerset township, MO +station = ('klwd', 0.0064293491275715896) +zone = ('moz006', 0.0024628088085760298) + +[fips2912977578] +centroid = (0.70359789748205281, -1.6332681708018837) +description = Washington township, MO +station = ('klwd', 0.0070243870513858817) +zone = ('moz006', 0.0019098096996959363) + +[fips2912988] +centroid = (0.64893467400178106, -1.5648838843274258) +description = Chaffee city, MO +station = ('kcgi', 0.0014142858834389153) +zone = ('moz111', 0.0025826792818993177) + +[fips2913006] +centroid = (0.67919498313334847, -1.5847989113974295) +description = Chain of Rocks village, MO +station = ('ksus', 0.005068102390480258) +zone = ('moz061', 0.0028950281944538593) + +[fips2913015] +centroid = (0.63764202722223473, -1.6357955122785266) +description = Chain-O-Lakes village, MO +station = ('krog', 0.0060321557687728232) +zone = ('moz102', 0.0034005971188165603) + +[fips2913060] +centroid = (0.67502261647682338, -1.6017199483086846) +description = Chamois city, MO +station = ('kjef', 0.0053237063050840701) +zone = ('moz050', 0.0034870854891895938) + +[fips2913078] +centroid = (0.67622485162547463, -1.5787108189940378) +description = Champ village, MO +station = ('kstl', 0.0011849705477328318) +zone = ('moz063', 0.0018229961171349334) + +[fips29131] +centroid = (0.66700759331276738, -1.6132055761436239) +description = Miller County, MO +station = ('kaiz', 0.00262066250894448) +zone = ('moz057', 4.3682603455470049e-05) + +[fips2913122528] +centroid = (0.66705016189322341, -1.6143556783075179) +description = Equality township, MO +station = ('kaiz', 0.0022088790111316646) +zone = ('moz057', 0.00092734994204115488) + +[fips2913125678] +centroid = (0.66833886065301862, -1.6166572788987079) +description = Franklin township, MO +station = ('kaiz', 0.0035327467808770846) +zone = ('moz057', 0.003055104539822683) + +[fips2913127244] +centroid = (0.66553834024185343, -1.6148956133649148) +description = Glaze township, MO +station = ('kaiz', 0.00065180018743039218) +zone = ('moz057', 0.0019661110373339007) + +[fips2913137322] +centroid = (0.66826058263606658, -1.6125683215271356) +description = Jim Henry township, MO +station = ('kaiz', 0.0039295776173207207) +zone = ('moz057', 0.0013781308931817787) + +[fips2913155172] +centroid = (0.66743877690447251, -1.6108008440469335) +description = Osage township, MO +station = ('kaiz', 0.0043146471225960388) +zone = ('moz057', 0.0019270573345814971) + +[fips2913161778] +centroid = (0.66479514413976926, -1.6108329755584627) +description = Richwoods township, MO +station = ('kaiz', 0.0035216135048115969) +zone = ('moz057', 0.0028515021132745032) + +[fips2913165342] +centroid = (0.66969218895501492, -1.6146584580261538) +description = Saline township, MO +station = ('kaiz', 0.0047487428178465902) +zone = ('moz057', 0.0029602778928736963) + +[fips29133] +centroid = (0.64273955800865712, -1.5585079696770876) +description = Mississippi County, MO +station = ('kcir', 0.0042917514454706889) +zone = ('moz112', 7.4686828899362068e-05) + +[fips2913330] +centroid = (0.67549402990778695, -1.5767779192073315) +description = Charlack city, MO +station = ('kstl', 0.00088342851613164438) +zone = ('moz063', 0.0017458203590108704) + +[fips2913336278] +centroid = (0.63928651135004888, -1.558324064333805) +description = James Bayou township, MO +station = ('kcir', 0.0076656178675915919) +zone = ('kyz001', 0.0018899807832730758) + +[fips2913343886] +centroid = (0.64373390699010324, -1.5613737304956923) +description = Long Prairie township, MO +station = ('kcir', 0.0046113971341931624) +zone = ('moz112', 0.0025490908282807998) + +[fips2913348926] +centroid = (0.64267136799478164, -1.5569427758571917) +description = Mississippi township, MO +station = ('kcir', 0.0042292297388755971) +zone = ('moz112', 0.0011896519732493935) + +[fips2913354128] +centroid = (0.64458599418421947, -1.5565678093206932) +description = Ohio township, MO +station = ('kcir', 0.0023606187569445592) +zone = ('moz112', 0.0023443060474367) + +[fips2913364406] +centroid = (0.64208329675661469, -1.5599003584477438) +description = St. James township, MO +station = ('kcir', 0.0052840443496516721) +zone = ('moz112', 0.0013680523185464527) + +[fips2913366] +centroid = (0.64432190841510006, -1.559170845726995) +description = Charleston city, MO +station = ('kcir', 0.0030290646242527425) +zone = ('moz112', 0.0016615358501555094) + +[fips2913374392] +centroid = (0.64465434127772747, -1.5589384551370919) +description = Tywappity township, MO +station = ('kcir', 0.0026486795771904913) +zone = ('moz112', 0.0019272371180325833) + +[fips2913380674] +centroid = (0.64110212501102104, -1.5578257379257754) +description = Wolf Island township, MO +station = ('kcir', 0.0058179258037544543) +zone = ('moz112', 0.0017368128642821048) + +[fips2913474] +centroid = (0.65428798279008304, -1.5759279438616103) +description = Cherokee Pass CDP, MO +station = ('kfam', 0.0052319870077423532) +zone = ('moz085', 0.00072664827096513823) + +[fips29135] +centroid = (0.67427369569479256, -1.615889386387708) +description = Moniteau County, MO +station = ('kver', 0.0055155636188660515) +zone = ('moz047', 9.4445976529945731e-06) + +[fips2913509910] +centroid = (0.6720114697315277, -1.6147334199175269) +description = Burris Fork township, MO +station = ('kjef', 0.0052905861630113743) +zone = ('moz047', 0.0024278903994385437) + +[fips2913530556] +centroid = (0.67162292453344863, -1.6161843121247099) +description = Harrison township, MO +station = ('kjef', 0.0064908144697170388) +zone = ('moz047', 0.002655578333731313) + +[fips2913543220] +centroid = (0.67695202560502543, -1.6142275013272513) +description = Linn township, MO +station = ('kver', 0.0037358168451442344) +zone = ('moz047', 0.0029778547277195806) + +[fips2913549862] +centroid = (0.67415414064103096, -1.6174849489365886) +description = Moreau township, MO +station = ('kver', 0.0054774822709908735) +zone = ('moz047', 0.0012589851999908841) + +[fips2913557638] +centroid = (0.6727821373160382, -1.6167872012082263) +description = Pilot Grove township, MO +station = ('kver', 0.0068763118871542081) +zone = ('moz047', 0.0016462472146449773) + +[fips2913576642] +centroid = (0.67469625735999295, -1.6145878769112034) +description = Walker township, MO +station = ('kcou', 0.0048567888298364885) +zone = ('moz047', 0.0010963154994384312) + +[fips2913580080] +centroid = (0.67400046440039285, -1.619287472628171) +description = Willow Fork township, MO +station = ('kdmo', 0.0055683775638784086) +zone = ('moz047', 0.0026755278345275764) + +[fips2913582] +centroid = (0.64777561829882413, -1.6350033945975089) +description = Chesapeake CDP, MO +station = ('ksgf', 0.0046002725722755185) +zone = ('moz094', 0.0021499419749771835) + +[fips2913600] +centroid = (0.67470540288527336, -1.5809358170843577) +description = Chesterfield city, MO +station = ('ksus', 0.00095086688512394807) +zone = ('moz063', 0.0019038221113186911) + +[fips2913654] +centroid = (0.67349815864166895, -1.6380991898115265) +description = Chilhowee town, MO +station = ('krcm', 0.0034270594582381142) +zone = ('moz044', 0.0027977481950774426) + +[fips2913690] +centroid = (0.69454937760142843, -1.6327446243861627) +description = Chillicothe city, MO +station = ('kcdj', 0.00059467943048042721) +zone = ('moz023', 0.00022122041177703635) + +[fips29137] +centroid = (0.68937486034170059, -1.6058156251978768) +description = Monroe County, MO +station = ('kcou', 0.012231641803690347) +zone = ('moz034', 9.1384357007346731e-05) + +[fips2913714464] +centroid = (0.69097071959655421, -1.6071557588107284) +description = Clay township, MO +station = ('kirk', 0.010883146333603119) +zone = ('moz034', 0.0019843397928279798) + +[fips2913735126] +centroid = (0.69076217020423336, -1.6022285721593006) +description = Indian Creek township, MO +station = ('kuin', 0.010174886363369863) +zone = ('moz034', 0.0030481559950228357) + +[fips2913735936] +centroid = (0.68863360155508613, -1.6059449540954498) +description = Jackson township, MO +station = ('kcou', 0.01148783000178037) +zone = ('moz034', 0.00071526195202874557) + +[fips2913736890] +centroid = (0.68923547834763643, -1.6025163594996621) +description = Jefferson township, MO +station = ('kuin', 0.011336307902894726) +zone = ('moz034', 0.0024701793646012275) + +[fips2913746100] +centroid = (0.68922299924348474, -1.6094265194340356) +description = Marion township, MO +station = ('kver', 0.011481350054155393) +zone = ('moz034', 0.0028659769290962029) + +[fips2913749358] +centroid = (0.69126028717275256, -1.6015644918322092) +description = Monroe township, MO +station = ('kuin', 0.0094656234086285523) +zone = ('moz027', 0.0039631883818076023) + +[fips2913768798] +centroid = (0.68735380397447632, -1.6029061264282174) +description = South Fork township, MO +station = ('kcou', 0.011116676982531671) +zone = ('moz042', 0.0029090817840846089) + +[fips2913774806] +centroid = (0.68760694652918553, -1.6096555764450673) +description = Union township, MO +station = ('kver', 0.010063448603252223) +zone = ('moz034', 0.0034951569681302137) + +[fips2913777596] +centroid = (0.69177568290086644, -1.6046908477614292) +description = Washington township, MO +station = ('kirk', 0.011487520480358724) +zone = ('moz034', 0.0025733078471331565) + +[fips2913780854] +centroid = (0.69112427366414464, -1.60939101943705) +description = Woodlawn township, MO +station = ('kirk', 0.0098593005276931892) +zone = ('moz034', 0.0033565236177224905) + +[fips2913852] +centroid = (0.69676936659679523, -1.6314913732634757) +description = Chula city, MO +station = ('kcdj', 0.0023202098531008406) +zone = ('moz023', 0.0026182720841841554) + +[fips29139] +centroid = (0.67954677169738043, -1.5963730274254446) +description = Montgomery County, MO +station = ('kfyg', 0.008831718154240345) +zone = ('moz051', 0.00012813090365050017) + +[fips2913903754] +centroid = (0.67953417042018105, -1.5941467552447708) +description = Bear Creek township, MO +station = ('kfyg', 0.0076534723573237831) +zone = ('moz051', 0.0018005360873150249) + +[fips2913918208] +centroid = (0.67855614026724098, -1.5977744570016261) +description = Danville township, MO +station = ('kfyg', 0.0090680042803994391) +zone = ('moz051', 0.0015050069736942241) + +[fips2913944228] +centroid = (0.67655182160754324, -1.5975419965985531) +description = Loutre township, MO +station = ('kfyg', 0.0079557163638164091) +zone = ('moz051', 0.0032186357736580041) + +[fips2913949520] +centroid = (0.68070050414611882, -1.5971219482074754) +description = Montgomery township, MO +station = ('kfyg', 0.010055859267336547) +zone = ('moz051', 0.0011644836306983349) + +[fips2913959618] +centroid = (0.68235319132141725, -1.5946505968932365) +description = Prairie township, MO +station = ('kfyg', 0.010219060770393364) +zone = ('moz051', 0.0030389505766954812) + +[fips2913975256] +centroid = (0.68229334398136632, -1.5979116224275403) +description = Upper Loutre township, MO +station = ('kcou', 0.010206492809992347) +zone = ('moz051', 0.0028682815719701061) + +[fips2913978] +centroid = (0.69364938111934493, -1.6102431415377512) +description = Clarence city, MO +station = ('kirk', 0.0073373895571623472) +zone = ('moz026', 0.0026402017272584557) + +[fips2914068] +centroid = (0.68556046071475962, -1.6119789936519071) +description = Clark city, MO +station = ('kver', 0.0073473931687823932) +zone = ('moz033', 0.0033597856028981595) + +[fips29141] +centroid = (0.6705695834232851, -1.6209716629964679) +description = Morgan County, MO +station = ('kdmo', 0.0065209691603055307) +zone = ('moz056', 0.00016322089624809725) + +[fips2914109568] +centroid = (0.66818736607394535, -1.6223005741422287) +description = Buffalo township, MO +station = ('kh21', 0.0065523150480242386) +zone = ('moz056', 0.0025929725852958515) + +[fips2914130988] +centroid = (0.67091112690460775, -1.6223946299356189) +description = Haw Creek township, MO +station = ('kdmo', 0.005611311431518988) +zone = ('moz056', 0.0010027748969960761) + +[fips2914140] +centroid = (0.67476732716713417, -1.6173354614861553) +description = Clarksburg city, MO +station = ('kver', 0.0048673505509629587) +zone = ('moz047', 0.001241689557731236) + +[fips2914148170] +centroid = (0.67362528842438418, -1.6210449493717591) +description = Mill Creek township, MO +station = ('kdmo', 0.0044510866903926215) +zone = ('moz056', 0.00300327277462637) + +[fips2914149880] +centroid = (0.67067077761331573, -1.6188141218817373) +description = Moreau township, MO +station = ('kaiz', 0.0063322393206118642) +zone = ('moz056', 0.0018448932197019637) + +[fips2914155190] +centroid = (0.66808596244440455, -1.6194632272838467) +description = Osage township, MO +station = ('kaiz', 0.0045168766418579526) +zone = ('moz056', 0.0028683380456788949) + +[fips2914158] +centroid = (0.69488275294185187, -1.650222211889294) +description = Clarksdale city, MO +station = ('kstj', 0.0049756723715326827) +zone = ('moz013', 0.0023975679320693529) + +[fips2914161526] +centroid = (0.67385811534660023, -1.6231254691065988) +description = Richland township, MO +station = ('kdmo', 0.0029639497953674108) +zone = ('moz056', 0.0035787395791538976) + +[fips2914176] +centroid = (0.67413392972829278, -1.5811446282760662) +description = Clarkson Valley city, MO +station = ('ksus', 0.00089197557210253899) +zone = ('moz063', 0.0020621249196923742) + +[fips2914194] +centroid = (0.68714502768935282, -1.5865847671946551) +description = Clarksville city, MO +station = ('kppq', 0.0049832203352861079) +zone = ('moz036', 0.0036303782977704742) + +[fips2914212] +centroid = (0.63620820433513636, -1.5702393573240001) +description = Clarkton city, MO +station = ('kpof', 0.0073486536118442091) +zone = ('moz113', 0.0035867770495779687) + +[fips29143] +centroid = (0.63869034178415274, -1.5647915040501177) +description = New Madrid County, MO +station = ('kpof', 0.0097253671822949122) +zone = ('moz114', 6.0951210377670654e-05) + +[fips2914301234] +centroid = (0.6360764319766109, -1.5691582829320225) +description = Anderson township, MO +station = ('kpof', 0.0080435990949741694) +zone = ('moz113', 0.00397714561016131) + +[fips2914305518] +centroid = (0.64198255635218959, -1.5630794407736663) +description = Big Prairie township, MO +station = ('kcir', 0.0068148917980373003) +zone = ('moz114', 0.0035450106806019332) + +[fips2914315832] +centroid = (0.6381590984664306, -1.5679262375597469) +description = Como township, MO +station = ('kpof', 0.0076092527616456644) +zone = ('moz114', 0.0026322039123946529) + +[fips2914333166] +centroid = (0.64083081357879845, -1.5612930439243724) +description = Hough township, MO +station = ('kcir', 0.0069029826874379956) +zone = ('moz112', 0.0030082113048791829) + +[fips2914339710] +centroid = (0.63706238592435493, -1.5647761800592852) +description = La Font township, MO +station = ('kdyr', 0.0094521859854430259) +zone = ('moz114', 0.001627618990775902) + +[fips2914341654] +centroid = (0.63600656644665343, -1.5634753687144811) +description = Le Sieur township, MO +station = ('kdyr', 0.0080974082950553677) +zone = ('tnz001', 0.0022074140024903963) + +[fips2914341816] +centroid = (0.63869034178415274, -1.5647915040501177) +description = Lewis township, MO +station = ('kpof', 0.0097253671822949122) +zone = ('moz114', 6.0951210377670654e-05) + +[fips2914352094] +centroid = (0.63958051206254729, -1.5630994247936016) +description = New Madrid township, MO +station = ('kcir', 0.0087184576333318928) +zone = ('moz114', 0.0015738256765931474) + +[fips2914359132] +centroid = (0.6361752176122738, -1.5668635938446702) +description = Portage township, MO +station = ('kbyh', 0.0087922673059199676) +zone = ('moz114', 0.0030496239018846737) + +[fips2914364460] +centroid = (0.63865878623127659, -1.5607086902375122) +description = St. John township, MO +station = ('kcir', 0.0087103620771696259) +zone = ('kyz001', 0.0033574098668879204) + +[fips2914378478] +centroid = (0.64194232651293104, -1.5650091466078413) +description = West township, MO +station = ('kcir', 0.007986801410232048) +zone = ('moz114', 0.0032615551594647576) + +[fips29145] +centroid = (0.64416641703204003, -1.6464518294660879) +description = Newton County, MO +station = ('khfj', 0.0043948763573984587) +zone = ('moz093', 7.6173020581343464e-05) + +[fips2914504744] +centroid = (0.64212193834625386, -1.6451626769206877) +description = Benton township, MO +station = ('khfj', 0.0038660429628794529) +zone = ('moz093', 0.0022800864239889448) + +[fips2914505032] +centroid = (0.64422357656504281, -1.6425158327501606) +description = Berwick township, MO +station = ('khfj', 0.0012607323878740338) +zone = ('moz093', 0.0032110287068566473) + +[fips2914509586] +centroid = (0.64230751920561835, -1.6495093845161943) +description = Buffalo township, MO +station = ('kgmj', 0.0046872004882281392) +zone = ('moz093', 0.0029964930293598941) + +[fips2914518622] +centroid = (0.64376345541433955, -1.6495642576678771) +description = Dayton township, MO +station = ('kjln', 0.0046299456661194546) +zone = ('moz093', 0.0024532918250472434) + +[fips2914524346] +centroid = (0.64514994497212375, -1.6502778180792625) +description = Five Mile township, MO +station = ('kjln', 0.0033258842378766367) +zone = ('moz093', 0.003167260796220101) + +[fips2914525696] +centroid = (0.64230943906779558, -1.6427768467397963) +description = Franklin township, MO +station = ('khfj', 0.0022506162648720934) +zone = ('moz093', 0.0035077722357817758) + +[fips2914528126] +centroid = (0.64403637254947388, -1.6452027845868984) +description = Granby township, MO +station = ('khfj', 0.0033940399809020694) +zone = ('moz093', 0.0010645234999962854) + +[fips2914546118] +centroid = (0.64583708109863402, -1.6462895312989452) +description = Marion township, MO +station = ('kjln', 0.0035248559002958178) +zone = ('moz093', 0.0017252977425641553) + +[fips2914551590] +centroid = (0.64398652594603689, -1.6475625220954724) +description = Neosho township, MO +station = ('kjln', 0.0046253768925286565) +zone = ('moz093', 0.00083706721379885312) + +[fips2914552310] +centroid = (0.64349551246757342, -1.643339593250517) +description = Newtonia township, MO +station = ('khfj', 0.0019770892765028046) +zone = ('moz093', 0.002627363174656333) + +[fips2914554] +centroid = (0.68415070591804628, -1.6489781237451799) +description = Claycomo village, MO +station = ('kmkc', 0.0021730957410374461) +zone = ('moz029', 0.0021023052911160324) + +[fips2914566692] +centroid = (0.64355899009246831, -1.6508887007707529) +description = Seneca township, MO +station = ('kjln', 0.0049873673131596123) +zone = ('moz093', 0.0035315933623996359) + +[fips2914567610] +centroid = (0.64616321332266158, -1.6495005531501794) +description = Shoal Creek township, MO +station = ('kjln', 0.0022304631747734915) +zone = ('moz093', 0.0031304049591937199) + +[fips2914572] +centroid = (0.67447011504881205, -1.5765581473479204) +description = Clayton city, MO +station = ('kstl', 0.0019109253379677638) +zone = ('moz064', 0.0011699306983193854) + +[fips2914575616] +centroid = (0.64552419592362897, -1.6431051082655115) +description = Van Buren township, MO +station = ('khfj', 0.0022773606837993912) +zone = ('moz093', 0.0030749791920633295) + +[fips2914578568] +centroid = (0.64203400865853844, -1.6470462187961472) +description = West Benton township, MO +station = ('khfj', 0.005263536448456169) +zone = ('moz093', 0.0021289968529834098) + +[fips2914662] +centroid = (0.70699689129372678, -1.6586353446557298) +description = Clearmont city, MO +station = ('kicl', 0.0036430092019686202) +zone = ('moz002', 0.0032470232524010722) + +[fips29147] +centroid = (0.70442333349849107, -1.6560256585449777) +description = Nodaway County, MO +station = ('kicl', 0.0065273901976056576) +zone = ('moz002', 4.0886244785354224e-06) + +[fips2914702350] +centroid = (0.70733579932787904, -1.6576412051137939) +description = Atchison township, MO +station = ('kicl', 0.0033907271213781728) +zone = ('moz002', 0.0031572588855792805) + +[fips2914728504] +centroid = (0.70149002843783437, -1.6544095011109237) +description = Grant township, MO +station = ('kstj', 0.007619392631041993) +zone = ('moz002', 0.0031860090029034813) + +[fips2914729008] +centroid = (0.70433128483374086, -1.6596558561226633) +description = Green township, MO +station = ('kicl', 0.0063552540648220005) +zone = ('moz002', 0.0027663369689623074) + +[fips2914733022] +centroid = (0.70752001883042703, -1.6548166689721213) +description = Hopkins township, MO +station = ('kicl', 0.004263089046244407) +zone = ('moz002', 0.0032273001118485181) + +[fips2914733634] +centroid = (0.70153362676254905, -1.6580524570454414) +description = Hughes township, MO +station = ('kstj', 0.0075558277896301098) +zone = ('moz002', 0.0032799838107566968) + +[fips2914735036] +centroid = (0.70680602208672871, -1.652456914010255) +description = Independence township, MO +station = ('kicl', 0.0060635094455388991) +zone = ('moz002', 0.0036121445164875136) + +[fips2914735954] +centroid = (0.70467111789239678, -1.6524411711404019) +description = Jackson township, MO +station = ('kicl', 0.0076057056607174408) +zone = ('moz002', 0.0027434891391355642) + +[fips2914736908] +centroid = (0.70272125350536119, -1.6524384658800615) +description = Jefferson township, MO +station = ('kicl', 0.009218549392615084) +zone = ('moz002', 0.0032250226121180417) + +[fips2914742824] +centroid = (0.70699359262144046, -1.6604387061053529) +description = Lincoln township, MO +station = ('kicl', 0.0038923673046840808) +zone = ('iaz091', 0.0040421362041891378) + +[fips2914749376] +centroid = (0.7031832770649491, -1.6593704598833772) +description = Monroe township, MO +station = ('kicl', 0.0074770165156357688) +zone = ('moz002', 0.0028357829725121019) + +[fips2914752724] +centroid = (0.70583511287713674, -1.6583355669034074) +description = Nodaway township, MO +station = ('kicl', 0.0048105090554746458) +zone = ('moz002', 0.0022519340005646578) + +[fips2914758808] +centroid = (0.70427690037424873, -1.6556762087221435) +description = Polk township, MO +station = ('kicl', 0.0067510859274822052) +zone = ('moz002', 0.00030711178238380384) + +[fips2914770] +centroid = (0.6750549748811554, -1.6510815072932208) +description = Cleveland city, MO +station = ('kojc', 0.0032652620056314065) +zone = ('ksz057', 0.0038097397326762885) + +[fips2914774824] +centroid = (0.70633328220553349, -1.6551423997704209) +description = Union township, MO +station = ('kicl', 0.0050615280481960618) +zone = ('moz002', 0.0020218504070481187) + +[fips2914777614] +centroid = (0.70119463146193428, -1.6524917856887098) +description = Washington township, MO +station = ('kstj', 0.0078016729368285322) +zone = ('moz012', 0.0037228751727674814) + +[fips2914779342] +centroid = (0.70169370836154199, -1.6559270125356551) +description = White Cloud township, MO +station = ('kstj', 0.0076522701992348917) +zone = ('moz002', 0.00273447482889111) + +[fips2914788] +centroid = (0.64632193356483802, -1.6314542675635784) +description = Clever city, MO +station = ('ksgf', 0.0037482602538262502) +zone = ('moz095', 0.0041376751639493076) + +[fips2914806] +centroid = (0.64621063391843836, -1.6496362524995218) +description = Cliff Village village, MO +station = ('kjln', 0.0021922938914389237) +zone = ('moz093', 0.003243689796706277) + +[fips2914896] +centroid = (0.68833406814885889, -1.6172871856790452) +description = Clifton Hill city, MO +station = ('kver', 0.0087056399120230832) +zone = ('moz033', 0.0022461911606879862) + +[fips29149] +centroid = (0.64027171480621459, -1.5952815857777101) +description = Oregon County, MO +station = ('kuno', 0.0077640925542449011) +zone = ('moz106', 3.2473233949301316e-05) + +[fips2914905338] +centroid = (0.63906413895005232, -1.5992037943925468) +description = Big Apple township, MO +station = ('kuno', 0.0060275302346288282) +zone = ('moz106', 0.0033768875263840126) + +[fips2914905698] +centroid = (0.63821056822607192, -1.592022427745706) +description = Billmore township, MO +station = ('k4m9', 0.0084613690819188379) +zone = ('moz106', 0.0033543683982817777) + +[fips2914906058] +centroid = (0.64337602722698173, -1.5979281506955567) +description = Black Pond township, MO +station = ('kuno', 0.0048367295402217698) +zone = ('moz106', 0.003729544815945006) + +[fips2914912232] +centroid = (0.63801238608950794, -1.5909973260628396) +description = Cedar Bluff township, MO +station = ('k4m9', 0.0076203998747505098) +zone = ('arz008', 0.0041535059938193428) + +[fips2914914] +centroid = (0.66499859717067422, -1.6241008987189534) +description = Climax Springs village, MO +station = ('kh21', 0.0055074368893831636) +zone = ('moz068', 0.0046164336224563318) + +[fips2914916768] +centroid = (0.63849568521267774, -1.5949001615229794) +description = Couch township, MO +station = ('kuno', 0.0089525222239972887) +zone = ('moz106', 0.001834684466911101) + +[fips2914923608] +centroid = (0.64284049039929991, -1.5931671542955042) +description = Falling Spring township, MO +station = ('kuno', 0.0086799833420957914) +zone = ('moz106', 0.0030534820094599842) + +[fips2914927640] +centroid = (0.64097989960350388, -1.5928541993073289) +description = Goebel township, MO +station = ('k4m9', 0.010310525297961537) +zone = ('moz106', 0.0020654572278429395) + +[fips2914932032] +centroid = (0.64077665601210909, -1.598534286091482) +description = Highland township, MO +station = ('kuno', 0.0052549255876475666) +zone = ('moz106', 0.0026449850178367467) + +[fips2914936692] +centroid = (0.63751697438132937, -1.594939937576632) +description = Jeff township, MO +station = ('karg', 0.0095009845961689671) +zone = ('moz106', 0.002800746919334505) + +[fips2914937358] +centroid = (0.6387337655759423, -1.5927528131310806) +description = Jobe township, MO +station = ('k4m9', 0.0091957725187298001) +zone = ('moz106', 0.002569899349571178) + +[fips2914937412] +centroid = (0.63979136528948077, -1.5925112246560196) +description = Johnson township, MO +station = ('k4m9', 0.0094664673677614056) +zone = ('moz106', 0.0022857470210154223) + +[fips2914938756] +centroid = (0.64191269082223223, -1.5915291976990924) +description = King township, MO +station = ('k4m9', 0.01002753449495992) +zone = ('moz106', 0.0034155709212333827) + +[fips2914949754] +centroid = (0.64217366990528291, -1.5977357455988168) +description = Moore township, MO +station = ('kuno', 0.0052187268590774844) +zone = ('moz106', 0.0027097276009397076) + +[fips2914951068] +centroid = (0.6375645346034462, -1.5929582558373327) +description = Myrtle township, MO +station = ('karg', 0.0085159839436054728) +zone = ('moz106', 0.003316949376741016) + +[fips2914955802] +centroid = (0.64014502135581242, -1.590883443329147) +description = Ozark township, MO +station = ('k4m9', 0.0085331348786572871) +zone = ('moz108', 0.0040413453128619811) + +[fips2914957854] +centroid = (0.6401649355625777, -1.5955726368837726) +description = Piney township, MO +station = ('kuno', 0.0076059693874991913) +zone = ('moz106', 0.00026677372843347444) + +[fips2914972844] +centroid = (0.63812017762411122, -1.597539378604675) +description = Thayer township, MO +station = ('kuno', 0.0076156573519137061) +zone = ('moz106', 0.0028339139142676711) + +[fips2914980944] +centroid = (0.64251086751676822, -1.5950244987788913) +description = Woodside township, MO +station = ('kuno', 0.0072526395521880713) +zone = ('moz106', 0.0022172766255897014) + +[fips2914986] +centroid = (0.66970328924905764, -1.6365628113775808) +description = Clinton city, MO +station = ('kgly', 0.001221841677799548) +zone = ('moz054', 0.00041574558347742048) + +[fips29151] +centroid = (0.67132787662339888, -1.6032507940489011) +description = Osage County, MO +station = ('kjef', 0.0046198931761348636) +zone = ('moz049', 7.422355896151661e-05) + +[fips2915104762] +centroid = (0.67429203910523106, -1.6011428551915126) +description = Benton township, MO +station = ('kjef', 0.0056399239982031094) +zone = ('moz049', 0.0034658003366256451) + +[fips2915117128] +centroid = (0.67153279573087554, -1.6016289119349005) +description = Crawford township, MO +station = ('kjef', 0.0056642315737568845) +zone = ('moz049', 0.0013293955841575599) + +[fips2915130] +centroid = (0.70276549760189921, -1.6522920676624042) +description = Clyde village, MO +station = ('kicl', 0.009238258172099811) +zone = ('moz002', 0.0032977276776347728) + +[fips2915135972] +centroid = (0.66990717861227567, -1.6073956019565374) +description = Jackson township, MO +station = ('kjef', 0.0038584912270344432) +zone = ('moz048', 0.0033092015428773229) + +[fips2915136926] +centroid = (0.66937288096836256, -1.6009699628758098) +description = Jefferson township, MO +station = ('kvih', 0.0038557171601847203) +zone = ('moz049', 0.0026213087374113925) + +[fips2915143256] +centroid = (0.6727094967125703, -1.6044279662694938) +description = Linn township, MO +station = ('kjef', 0.0031998285849652469) +zone = ('moz049', 0.0017003392307142081) + +[fips2915177632] +centroid = (0.66971348197188918, -1.6045693728454904) +description = Washington township, MO +station = ('kvih', 0.0047584024673219798) +zone = ('moz049', 0.0018431170410376297) + +[fips2915220] +centroid = (0.65528594460308087, -1.5758041825643514) +description = Cobalt village, MO +station = ('kfam', 0.0043639463137151134) +zone = ('moz085', 0.0014193515180754841) + +[fips2915274] +centroid = (0.69997386091662672, -1.6407236239544578) +description = Coffey city, MO +station = ('kcdj', 0.0075811048800803159) +zone = ('moz014', 0.0025436604899727335) + +[fips29153] +centroid = (0.63965694003049212, -1.6137066427185787) +description = Ozark County, MO +station = ('kbpk', 0.0049401714166941134) +zone = ('moz105', 0.00019585090903402483) + +[fips2915303412] +centroid = (0.64103955495733711, -1.6144855308038664) +description = Barren Fork township, MO +station = ('kbpk', 0.006342211612467741) +zone = ('moz105', 0.0016127642803696063) + +[fips2915303647] +centroid = (0.63773510563124358, -1.6092646575992056) +description = Bayou I township, MO +station = ('kbpk', 0.0047636173640782879) +zone = ('moz105', 0.0038769154344907059) + +[fips2915303648] +centroid = (0.63904038501893268, -1.6087357355693885) +description = Bayou II township, MO +station = ('kbpk', 0.0059643310784813089) +zone = ('moz105', 0.003842103952902303) + +[fips2915305428] +centroid = (0.63805176071743297, -1.6180517969710513) +description = Big Creek township, MO +station = ('kbpk', 0.0047481714422866897) +zone = ('moz105', 0.0040162020613438753) + +[fips2915308380] +centroid = (0.6383367729842836, -1.6129645461739233) +description = Bridges township, MO +station = ('kbpk', 0.003687747189217272) +zone = ('moz105', 0.0013736551994502702) + +[fips2915318568] +centroid = (0.6386799396218108, -1.6104813964339408) +description = Dawt township, MO +station = ('kbpk', 0.0047982348005844852) +zone = ('moz105', 0.0025822535847015962) + +[fips2915335990] +centroid = (0.64164843052018783, -1.612687841674312) +description = Jackson township, MO +station = ('kbpk', 0.0069926977959638235) +zone = ('moz105', 0.0020918320726313376) + +[fips2915336548] +centroid = (0.63846678256026468, -1.6162367592687323) +description = Jasper township, MO +station = ('kbpk', 0.0042122696510167043) +zone = ('moz105', 0.0025219607415919803) + +[fips2915342446] +centroid = (0.63784150090244518, -1.6114019528946129) +description = Lick Creek township, MO +station = ('kbpk', 0.0036913026750268118) +zone = ('moz105', 0.0024517757216702607) + +[fips2915343922] +centroid = (0.63970160300605072, -1.6187796516290105) +description = Longrun township, MO +station = ('kbpk', 0.0063678143526179395) +zone = ('moz105', 0.0042660744859916999) + +[fips2915352652] +centroid = (0.64157463799941339, -1.6159827615026896) +description = Noble township, MO +station = ('kbpk', 0.0070677492234567426) +zone = ('moz105', 0.0027897638349480467) + +[fips2915353498] +centroid = (0.63982491051770407, -1.6155483315985757) +description = Nottinghill township, MO +station = ('kbpk', 0.0052865731244092322) +zone = ('moz105', 0.0016822643788741043) + +[fips2915357764] +centroid = (0.64029611450915747, -1.6117578604356795) +description = Pine Creek township, MO +station = ('kbpk', 0.0058253762343284388) +zone = ('moz105', 0.0015119826602202275) + +[fips2915359078] +centroid = (0.63734776471034849, -1.6153583874160813) +description = Pontiac township, MO +station = ('kbpk', 0.0028969024868977871) +zone = ('moz105', 0.0027607901673454955) + +[fips2915361544] +centroid = (0.64120242908313319, -1.6098769540073901) +description = Richland township, MO +station = ('kuno', 0.0053736922114525822) +zone = ('moz105', 0.0032670445347258788) + +[fips2915369680] +centroid = (0.64060184383422936, -1.6084132859900828) +description = Spring Creek township, MO +station = ('kuno', 0.0047488861962093447) +zone = ('moz097', 0.0039541935163743165) + +[fips2915373114] +centroid = (0.64077211815605395, -1.6175702606304261) +description = Thornfield township, MO +station = ('kbpk', 0.0067524980955714804) +zone = ('moz105', 0.0034797461980613392) + +[fips2915378634] +centroid = (0.63867297575809534, -1.6144654420641757) +description = West Bridges township, MO +station = ('kbpk', 0.0039859652056427851) +zone = ('moz105', 0.0012665734586434121) + +[fips2915436] +centroid = (0.67124739949158951, -1.6266834973197146) +description = Cole Camp city, MO +station = ('kdmo', 0.0045118773561691047) +zone = ('moz055', 0.0031073477690398113) + +[fips29155] +centroid = (0.63198225607057501, -1.5670603099046627) +description = Pemiscot County, MO +station = ('kbyh', 0.0048351232266921392) +zone = ('moz115', 2.0761226991584352e-05) + +[fips2915507858] +centroid = (0.6315826454850384, -1.5688064594614053) +description = Braggadocio township, MO +station = ('kbyh', 0.0039504687201153054) +zone = ('moz115', 0.0014723473897041487) + +[fips2915510090] +centroid = (0.63455665162385178, -1.5637730520717013) +description = Butler township, MO +station = ('kdyr', 0.0068310459577654928) +zone = ('tnz001', 0.0015138623504853011) + +[fips2915516012] +centroid = (0.63335457355483316, -1.5651227849954388) +description = Concord township, MO +station = ('kdyr', 0.006354249463380833) +zone = ('moz115', 0.0020644999007283283) + +[fips2915516354] +centroid = (0.62927331308526213, -1.5675253354305638) +description = Cooter township, MO +station = ('khka', 0.0021384990445906687) +zone = ('moz115', 0.0027555987850178803) + +[fips2915527622] +centroid = (0.63482393134550208, -1.5658315632046735) +description = Godair township, MO +station = ('kbyh', 0.0078192495974676555) +zone = ('moz115', 0.0029891482567219363) + +[fips2915531150] +centroid = (0.63224220540936704, -1.5664881211626887) +description = Hayti township, MO +station = ('khka', 0.0052114204157912361) +zone = ('moz115', 0.00051818453648745156) + +[fips2915532608] +centroid = (0.62893684851206266, -1.5690549943468892) +description = Holland township, MO +station = ('kbyh', 0.0013907172032181681) +zone = ('moz115', 0.0034645689734058164) + +[fips2915543382] +centroid = (0.63107775663902155, -1.5656307630742317) +description = Little Prairie township, MO +station = ('khka', 0.0043263696372459635) +zone = ('moz115', 0.0014773639423691558) + +[fips2915543400] +centroid = (0.63450197045838674, -1.568310419434696) +description = Little River township, MO +station = ('kbyh', 0.0068894547210275854) +zone = ('moz115', 0.0026953260154863995) + +[fips2915556450] +centroid = (0.63320456250562429, -1.5686443532804801) +description = Pascola township, MO +station = ('kbyh', 0.0055645985004686765) +zone = ('moz115', 0.0017553066144429695) + +[fips2915556846] +centroid = (0.62928027694897759, -1.566218816859106) +description = Pemiscot township, MO +station = ('khka', 0.0025178406952105358) +zone = ('moz115', 0.0028057032230721138) + +[fips2915562] +centroid = (0.6612881842605669, -1.6340090630693553) +description = Collins village, MO +station = ('kgly', 0.0082588342859739212) +zone = ('moz067', 0.0033436844758259619) + +[fips2915576372] +centroid = (0.63018608537747012, -1.5691034097803396) +description = Virginia township, MO +station = ('kbyh', 0.002537552591249844) +zone = ('moz115', 0.0024553106628726791) + +[fips2915670] +centroid = (0.67976977241590775, -1.6113943781656592) +description = Columbia city, MO +station = ('kcou', 0.0027312499131472885) +zone = ('moz041', 0.00077917034272649544) + +[fips29157] +centroid = (0.65818338314760916, -1.5673427565375129) +description = Perry County, MO +station = ('ksar', 0.007772088993805765) +zone = ('moz076', 0.00031550786503529055) + +[fips2915706886] +centroid = (0.66003849360955391, -1.567071130946025) +description = Bois Brule township, MO +station = ('ksar', 0.0059103855237682204) +zone = ('moz076', 0.0019949730568327175) + +[fips2915708092] +centroid = (0.65697730827460354, -1.5633352885887162) +description = Brazeau township, MO +station = ('kmdh', 0.0050903274401997252) +zone = ('ilz084', 0.0036271190890863622) + +[fips2915712826] +centroid = (0.65850701955080648, -1.5684162038406595) +description = Central township, MO +station = ('ksar', 0.0076611617624299079) +zone = ('moz076', 0.00066973269723538751) + +[fips2915713870] +centroid = (0.65689238055320154, -1.5683977731637584) +description = Cinque Hommes township, MO +station = ('kcgi', 0.0080406346517814982) +zone = ('moz076', 0.001329706455559497) + +[fips2915760] +centroid = (0.64856428022792278, -1.5611462268276948) +description = Commerce village, MO +station = ('kcgi', 0.0022860748433027878) +zone = ('ilz092', 0.0016188651818189923) + +[fips2915765036] +centroid = (0.65761300954805746, -1.5711490229301395) +description = St. Marys township, MO +station = ('kfam', 0.0059074649875244323) +zone = ('moz076', 0.0027501064082667464) + +[fips2915765288] +centroid = (0.65841968327503675, -1.5656279880007209) +description = Salem township, MO +station = ('ksar', 0.0074043884888987631) +zone = ('moz076', 0.0016920309828498822) + +[fips2915765360] +centroid = (0.66007317330179105, -1.5697397742789094) +description = Saline township, MO +station = ('ksar', 0.0066367415945456937) +zone = ('moz076', 0.0025224223740696926) + +[fips2915774842] +centroid = (0.65692873576152055, -1.5660525742478535) +description = Union township, MO +station = ('kcgi', 0.0073634571504335731) +zone = ('moz076', 0.0017800532477848545) + +[fips2915886] +centroid = (0.70229745265639187, -1.6524443127330555) +description = Conception CDP, MO +station = ('kstj', 0.0088341267490200225) +zone = ('moz002', 0.0034647591010440767) + +[fips29159] +centroid = (0.67592006477819888, -1.628134005554462) +description = Pettis County, MO +station = ('kdmo', 0.0016249179267143186) +zone = ('moz045', 1.6348971152264597e-05) + +[fips2915906184] +centroid = (0.67853036175418902, -1.6308471024233946) +description = Blackwater township, MO +station = ('kszl', 0.002914206058861126) +zone = ('moz045', 0.0033474607014858859) + +[fips2915907642] +centroid = (0.67645647427050681, -1.625019832023421) +description = Bowling Green township, MO +station = ('kdmo', 0.0010898246806813315) +zone = ('moz045', 0.0024825673474489158) + +[fips2915912214] +centroid = (0.67655354948350266, -1.6270748350445965) +description = Cedar township, MO +station = ('kdmo', 0.001137146354188672) +zone = ('moz045', 0.0010300174224591042) + +[fips2915920098] +centroid = (0.67650178301788855, -1.6289922712141303) +description = Dresden township, MO +station = ('kdmo', 0.0024090828178031168) +zone = ('moz045', 0.00087736193215289643) + +[fips2915921646] +centroid = (0.67486421039391231, -1.6308689539456296) +description = Elk Fork township, MO +station = ('kszl', 0.0018743843439399659) +zone = ('moz045', 0.0023899436890413117) + +[fips2915922] +centroid = (0.70281586780411176, -1.6526760575511352) +description = Conception Junction town, MO +station = ('kicl', 0.0090453024751047679) +zone = ('moz002', 0.0030211775558624467) + +[fips2915924454] +centroid = (0.6737958245455965, -1.627109654363174) +description = Flat Creek township, MO +station = ('kdmo', 0.0021021744852842022) +zone = ('moz045', 0.0022845565758669493) + +[fips2915929350] +centroid = (0.6732548946505259, -1.6310943632185246) +description = Green Ridge township, MO +station = ('kszl', 0.0030580846447679638) +zone = ('moz045', 0.0035414549691717297) + +[fips2915931362] +centroid = (0.67830348640472227, -1.6251513251292662) +description = Heath Creek township, MO +station = ('kdmo', 0.002667035448835911) +zone = ('moz045', 0.0033167049137307432) + +[fips2915933274] +centroid = (0.67893004215289565, -1.6291491065007144) +description = Houstonia township, MO +station = ('kdmo', 0.0039993167304380999) +zone = ('moz045', 0.0030967896064513392) + +[fips2915933670] +centroid = (0.67784036328770558, -1.6282558120829587) +description = Hughesville township, MO +station = ('kdmo', 0.0027122833740303746) +zone = ('moz045', 0.0019064537402072239) + +[fips2915939926] +centroid = (0.67331163530450822, -1.625194050789355) +description = Lake Creek township, MO +station = ('kdmo', 0.0025154099187601627) +zone = ('moz045', 0.0034862196128519255) + +[fips2915940538] +centroid = (0.67664961240553245, -1.6308497029639801) +description = La Monte township, MO +station = ('kszl', 0.001612511782490675) +zone = ('moz045', 0.0022362251361142493) + +[fips2915944012] +centroid = (0.67852732488129064, -1.6268557264103014) +description = Longwood township, MO +station = ('kdmo', 0.0028611594029797267) +zone = ('moz045', 0.0027753603982468623) + +[fips2915959636] +centroid = (0.67494587434961317, -1.6290949663873175) +description = Prairie township, MO +station = ('kdmo', 0.002492459458893705) +zone = ('moz045', 0.001243251082255448) + +[fips2915966458] +centroid = (0.67530422535163259, -1.6271704267277283) +description = Sedalia township, MO +station = ('kdmo', 0.00096341644032874637) +zone = ('moz045', 0.00098119455095573059) + +[fips2915968402] +centroid = (0.6748756248472203, -1.6251635424340301) +description = Smithton township, MO +station = ('kdmo', 0.001109402167307524) +zone = ('moz045', 0.0025481219724106494) + +[fips2915977650] +centroid = (0.67313844628283281, -1.6291698759188131) +description = Washington township, MO +station = ('kdmo', 0.0035516257001378931) +zone = ('moz045', 0.0029129223767345625) + +[fips2916030] +centroid = (0.67215608771334789, -1.5770328769044628) +description = Concord CDP, MO +station = ('kcps', 0.0029884958850049507) +zone = ('moz063', 0.0025367419651455701) + +[fips29161] +centroid = (0.66089206433353431, -1.6020438116046847) +description = Phelps County, MO +station = ('kvih', 0.0046715257155900049) +zone = ('moz071', 0.00019015307662290261) + +[fips2916101918] +centroid = (0.66191795141456411, -1.6048617154951994) +description = Arlington township, MO +station = ('ktbn', 0.0041791155388632359) +zone = ('moz071', 0.0023497346567203292) + +[fips2916102] +centroid = (0.68045991050873145, -1.6330793261768177) +description = Concordia city, MO +station = ('kszl', 0.0044428742058941545) +zone = ('moz038', 0.0032421345547704707) + +[fips2916115] +centroid = (0.63867199837371413, -1.6300876398526818) +description = Coney Island village, MO +station = ('kbbg', 0.0029757482939163091) +zone = ('moz103', 0.0028056819225892133) + +[fips2916115346] +centroid = (0.66043600979998818, -1.601515500440106) +description = Cold Spring township, MO +station = ('kvih', 0.0051170140878422036) +zone = ('moz071', 0.00078308496207482429) + +[fips2916118514] +centroid = (0.66501680095477256, -1.5983325609365362) +description = Dawson township, MO +station = ('kvih', 0.0026492743181361382) +zone = ('moz072', 0.004360214136782197) + +[fips2916119558] +centroid = (0.66254928936488799, -1.6004168505825604) +description = Dillon township, MO +station = ('kvih', 0.0031513529244762348) +zone = ('moz071', 0.0019695407426367907) + +[fips2916142248] +centroid = (0.66013045500784151, -1.6049094851568264) +description = Liberty township, MO +station = ('ktbn', 0.0029181346197268165) +zone = ('moz071', 0.002427953828924476) + +[fips2916147432] +centroid = (0.66109755939966419, -1.5981727236836387) +description = Meramec township, MO +station = ('kvih', 0.0052217873798299196) +zone = ('moz071', 0.0030838471586582656) + +[fips2916148296] +centroid = (0.66344925094038631, -1.6029858181618635) +description = Miller township, MO +station = ('kvih', 0.0023581525383461859) +zone = ('moz071', 0.0024745817665516642) + +[fips2916162930] +centroid = (0.66188444109292577, -1.6023418963876326) +description = Rolla township, MO +station = ('kvih', 0.0037103434671735287) +zone = ('moz071', 0.00083053602013224894) + +[fips2916164442] +centroid = (0.66332212115767109, -1.5983644830085553) +description = St. James township, MO +station = ('kvih', 0.0034035867836591108) +zone = ('moz071', 0.0036892990618705348) + +[fips2916169716] +centroid = (0.65785740800321424, -1.6043795333827511) +description = Spring Creek township, MO +station = ('ktbn', 0.0029746815341202054) +zone = ('moz071', 0.0036999601745102803) + +[fips2916192] +centroid = (0.65461701226066904, -1.6202066502787336) +description = Conway city, MO +station = ('kh21', 0.0083154506336461913) +zone = ('moz091', 0.0039914089940983246) + +[fips2916228] +centroid = (0.67588247038611082, -1.5761316761451958) +description = Cool Valley city, MO +station = ('kstl', 0.00093605842722037402) +zone = ('moz064', 0.0017661064993536751) + +[fips29163] +centroid = (0.68668544759071759, -1.591234865374036) +description = Pike County, MO +station = ('kppq', 0.0073780056490077607) +zone = ('moz036', 8.1776834087895554e-06) + +[fips2916302278] +centroid = (0.68507775500353552, -1.5919943453980414) +description = Ashley township, MO +station = ('kppq', 0.0089525329801196062) +zone = ('moz036', 0.0017039002607286014) + +[fips2916309604] +centroid = (0.68792349689561971, -1.5898862669143126) +description = Buffalo township, MO +station = ('kppq', 0.0057694516953736034) +zone = ('moz036', 0.0016266113357581314) + +[fips2916310594] +centroid = (0.68601949976132659, -1.5864429242863454) +description = Calumet township, MO +station = ('kppq', 0.0060237499293795396) +zone = ('moz036', 0.0037698174290170189) + +[fips2916317704] +centroid = (0.68657831928123014, -1.5915549762121444) +description = Cuivre township, MO +station = ('kppq', 0.0076305667386284857) +zone = ('moz036', 0.00026273167763419045) + +[fips2916330682] +centroid = (0.6838671946343523, -1.593574531596212) +description = Hartford township, MO +station = ('kppq', 0.010669902121374511) +zone = ('moz036', 0.0033420575905051737) + +[fips2916335090] +centroid = (0.68541043221225806, -1.5947406035227618) +description = Indian township, MO +station = ('kppq', 0.010255897791935592) +zone = ('moz036', 0.0029901216926790145) + +[fips2916336] +centroid = (0.62913349475888491, -1.5674657149833158) +description = Cooter city, MO +station = ('khka', 0.0020077267359580406) +zone = ('moz115', 0.0028882761430554242) + +[fips2916356972] +centroid = (0.68927233970143853, -1.5932181353629546) +description = Peno township, MO +station = ('kppq', 0.0072766215519251666) +zone = ('moz036', 0.0030097962008706529) + +[fips2916359780] +centroid = (0.68532157750003908, -1.5887079078698285) +description = Prairieville township, MO +station = ('kppq', 0.0073151561076474636) +zone = ('moz036', 0.0023841999085612319) + +[fips2916365594] +centroid = (0.68995354170849199, -1.5912421433970168) +description = Salt River township, MO +station = ('kppq', 0.0056106552986092467) +zone = ('moz036', 0.0032746915588935028) + +[fips2916369392] +centroid = (0.68755851364244269, -1.5947280371521475) +description = Spencer township, MO +station = ('kppq', 0.0090528627720181023) +zone = ('moz035', 0.0030904108552604181) + +[fips2916408] +centroid = (0.68240958290954923, -1.6343071827588882) +description = Corder city, MO +station = ('krcm', 0.005984776112710222) +zone = ('moz038', 0.0020707891198913086) + +[fips2916462] +centroid = (0.70247146198281563, -1.6659965500286962) +description = Corning town, MO +station = ('kfnb', 0.0033577358900217396) +zone = ('moz001', 0.0031984718779626987) + +[fips29165] +centroid = (0.68728790034192089, -1.653899690436416) +description = Platte County, MO +station = ('kmci', 0.0014250557634589462) +zone = ('moz028', 0.00016629619135620225) + +[fips2916511512] +centroid = (0.68668159041307075, -1.6530538340677294) +description = Carroll township, MO +station = ('kmci', 0.00081479964031681634) +zone = ('moz028', 0.0010358965508229514) + +[fips2916523230] +centroid = (0.68754921103752953, -1.6546756987284377) +description = Fair township, MO +station = ('kmci', 0.0019059928786601746) +zone = ('moz028', 0.0004938234667413165) + +[fips2916525450] +centroid = (0.68439170098116153, -1.651977506971317) +description = Fox township, MO +station = ('kmkc', 0.0018152754221760958) +zone = ('ksz104', 0.0022999941461984436) + +[fips2916529026] +centroid = (0.6892694424548802, -1.653643127036373) +description = Green township, MO +station = ('kmci', 0.0033599388975015941) +zone = ('moz028', 0.0019850211269095276) + +[fips2916538513] +centroid = (0.68534482528567575, -1.6537751437409935) +description = Kickapoo township, MO +station = ('kmci', 0.0006363278939763192) +zone = ('moz028', 0.0019898865839104271) + +[fips2916541240] +centroid = (0.68609802212437387, -1.6555904956025782) +description = Lee township, MO +station = ('kmci', 0.0016982849176388731) +zone = ('moz028', 0.0016720952875585564) + +[fips2916546298] +centroid = (0.68938199873834138, -1.657262468666111) +description = Marshall township, MO +station = ('kmci', 0.0045708939833561503) +zone = ('moz028', 0.0031912214685409796) + +[fips2916546874] +centroid = (0.68554632354781841, -1.6519027894260392) +description = May township, MO +station = ('kmci', 0.0012221579308628922) +zone = ('moz028', 0.0024609051427945303) + +[fips2916556598] +centroid = (0.6843847196641536, -1.6514215846979721) +description = Pawnee township, MO +station = ('kmkc', 0.001690784440633095) +zone = ('ksz104', 0.0026025293112781423) + +[fips2916557242] +centroid = (0.68368381288984514, -1.6516492978054798) +description = Pettis township, MO +station = ('kmkc', 0.0010645464485838604) +zone = ('ksz104', 0.0020517892188504821) + +[fips2916559924] +centroid = (0.68869543857048432, -1.6518376362850624) +description = Preston township, MO +station = ('kmci', 0.0030345763961577067) +zone = ('moz028', 0.0022323899029265157) + +[fips2916568073] +centroid = (0.68419168624888305, -1.6528471172711234) +description = Sioux township, MO +station = ('kmci', 0.0017767297680496806) +zone = ('ksz104', 0.0017412303156612715) + +[fips2916576606] +centroid = (0.68458208149596911, -1.6541980544720445) +description = Waldron township, MO +station = ('kmci', 0.0014658453376205089) +zone = ('ksz104', 0.0019146216779773414) + +[fips2916578874] +centroid = (0.68827312125137918, -1.6562307696386722) +description = Weston township, MO +station = ('kmci', 0.0032130820623986764) +zone = ('moz028', 0.0018959227666659657) + +[fips2916588] +centroid = (0.6957511066045966, -1.6524738437039992) +description = Cosby village, MO +station = ('kstj', 0.0035983111983872106) +zone = ('moz012', 0.0026548194168901822) + +[fips2916678] +centroid = (0.67633602909882662, -1.5822852183955372) +description = Cottleville city, MO +station = ('ksus', 0.0017698572436367424) +zone = ('moz061', 0.00058327510066967395) + +[fips29167] +centroid = (0.65653633338579465, -1.6301517807026926) +description = Polk County, MO +station = ('ksgf', 0.0066964614041283288) +zone = ('moz079', 6.3211842835026907e-06) + +[fips2916710900] +centroid = (0.6581250367907151, -1.632957013502838) +description = Campbell township, MO +station = ('ksgf', 0.0086409026499424148) +zone = ('moz079', 0.0027366851793226357) + +[fips2916715058] +centroid = (0.65810323762835765, -1.6315056849633423) +description = Cliquot township, MO +station = ('ksgf', 0.0083632846077580664) +zone = ('moz079', 0.001904636574659909) + +[fips2916720972] +centroid = (0.65410772518493709, -1.6294570000340587) +description = East Looney township, MO +station = ('ksgf', 0.0042747015666875204) +zone = ('moz079', 0.0024848871390863929) + +[fips2916720995] +centroid = (0.65672896537533731, -1.632601769186887) +description = East Madison township, MO +station = ('ksgf', 0.0072239690328258577) +zone = ('moz079', 0.0019548750094321552) + +[fips2916724598] +centroid = (0.65928698974023037, -1.6316797466496438) +description = Flemington township, MO +station = ('ksgf', 0.009554052860423521) +zone = ('moz079', 0.00301057545053743) + +[fips2916736008] +centroid = (0.65394183163953512, -1.632743786628122) +description = Jackson township, MO +station = ('ksgf', 0.0047004407270431325) +zone = ('moz079', 0.0033090419222759795) + +[fips2916736944] +centroid = (0.6592556436268644, -1.630657891279186) +description = Jefferson township, MO +station = ('ksgf', 0.0094333649695421823) +zone = ('moz079', 0.0027537883093833441) + +[fips2916737430] +centroid = (0.65936336534829754, -1.6334030498464778) +description = Johnson township, MO +station = ('ksgf', 0.0099283825280355627) +zone = ('moz079', 0.0038286416531065123) + +[fips2916745164] +centroid = (0.65889565201534805, -1.6289110435907423) +description = McKinley township, MO +station = ('ksgf', 0.009081782239611022) +zone = ('moz079', 0.002558019777606719) + +[fips2916749736] +centroid = (0.65420790708400145, -1.6274667138215468) +description = Mooney township, MO +station = ('ksgf', 0.0047560402432718198) +zone = ('moz079', 0.0031485591566038579) + +[fips2916752894] +centroid = (0.65711164626712959, -1.6276259402092064) +description = North Benton township, MO +station = ('ksgf', 0.0074782130360776635) +zone = ('moz079', 0.0020784517346017542) + +[fips2916753018] +centroid = (0.65749214549735691, -1.6293149302329464) +description = Northeast Marion township, MO +station = ('ksgf', 0.0076595263638189071) +zone = ('moz079', 0.0011643043635169085) + +[fips2916753073] +centroid = (0.65916253031127059, -1.6272832622638698) +description = North Green township, MO +station = ('kh21', 0.0083193955384501823) +zone = ('moz068', 0.0032441524944157711) + +[fips2916753366] +centroid = (0.65685494324074623, -1.6310358946885828) +description = Northwest Marion township, MO +station = ('ksgf', 0.0070739992362236302) +zone = ('moz079', 0.00077518787228010523) + +[fips2916768640] +centroid = (0.65566483813039633, -1.6272543596114568) +description = South Benton township, MO +station = ('ksgf', 0.006174138763563806) +zone = ('moz079', 0.0024499830560525833) + +[fips2916768696] +centroid = (0.65582591456706285, -1.6295155907370482) +description = Southeast Marion township, MO +station = ('ksgf', 0.005987433943148178) +zone = ('moz079', 0.00086483037424437694) + +[fips2916768874] +centroid = (0.65806391536031017, -1.6272994938259133) +description = South Green township, MO +station = ('ksgf', 0.008464612751551184) +zone = ('moz079', 0.0027251150052911293) + +[fips2916769236] +centroid = (0.65572878699418946, -1.6309194463208898) +description = Southwest Marion township, MO +station = ('ksgf', 0.0059459213942163278) +zone = ('moz079', 0.0010100174890143555) + +[fips2916774860] +centroid = (0.65532523196454329, -1.6329454768764824) +description = Union township, MO +station = ('ksgf', 0.0060085677416058169) +zone = ('moz079', 0.0025252279239375442) + +[fips2916778842] +centroid = (0.65376082354281062, -1.6309104229686568) +description = West Looney township, MO +station = ('ksgf', 0.0040068313074202418) +zone = ('moz079', 0.0028364370242496125) + +[fips2916778846] +centroid = (0.65666234615778873, -1.6335676343949408) +description = West Madison township, MO +station = ('ksgf', 0.0074308535399778292) +zone = ('moz079', 0.0027131344594576268) + +[fips2916780602] +centroid = (0.65488778264082348, -1.6312262228435128) +description = Wishart township, MO +station = ('ksgf', 0.0051612968346330737) +zone = ('moz079', 0.001853500594464908) + +[fips2916802] +centroid = (0.69545750731782618, -1.6549894042081912) +description = Country Club village, MO +station = ('kstj', 0.001871318871431132) +zone = ('moz012', 0.0024024364680861705) + +[fips2916822] +centroid = (0.67580513484695504, -1.5755932071643703) +description = Country Club Hills city, MO +station = ('kstl', 0.001350152967257283) +zone = ('moz064', 0.0015379350350324412) + +[fips2916876] +centroid = (0.67408923184614922, -1.5787399485392535) +description = Country Life Acres village, MO +station = ('kstl', 0.0025312290414093662) +zone = ('moz063', 0.00035865687843519969) + +[fips29169] +centroid = (0.66016790977358941, -1.6093161273588468) +description = Pulaski County, MO +station = ('ktbn', 0.0018930731137188355) +zone = ('moz070', 8.962029596895596e-06) + +[fips2916917740] +centroid = (0.65984682155109997, -1.6083621827495844) +description = Cullen township, MO +station = ('ktbn', 0.0013026538225107721) +zone = ('moz070', 0.000824910431684056) + +[fips2916942266] +centroid = (0.66005051892810018, -1.6118514100835863) +description = Liberty township, MO +station = ('ktbn', 0.0033634176284403172) +zone = ('moz070', 0.0019979326082228961) + +[fips2916957872] +centroid = (0.65731433135316375, -1.6072666395781074) +description = Piney township, MO +station = ('ktbn', 0.0013942098385431663) +zone = ('moz070', 0.0032820696067111603) + +[fips2916963254] +centroid = (0.65764411131532796, -1.6096129205981486) +description = Roubidoux township, MO +station = ('ktbn', 0.0015579599903537296) +zone = ('moz070', 0.0025298734673812099) + +[fips2916972448] +centroid = (0.66263371094080703, -1.6109043246182841) +description = Tavern township, MO +station = ('kaiz', 0.0041784919355776938) +zone = ('moz070', 0.0027660960372072373) + +[fips2916974878] +centroid = (0.66232209985615587, -1.6076631260242831) +description = Union township, MO +station = ('ktbn', 0.0037623685023441124) +zone = ('moz070', 0.0025260705429344687) + +[fips2916984] +centroid = (0.69046598783016988, -1.6393222467381541) +description = Cowgill city, MO +station = ('kcdj', 0.006415280255936487) +zone = ('moz022', 0.0018227503436067014) + +[fips2917056] +centroid = (0.70149557858485556, -1.6645909840221875) +description = Craig city, MO +station = ('kfnb', 0.0033829907350498775) +zone = ('moz011', 0.002726892800637665) + +[fips2917074] +centroid = (0.64404865966740787, -1.633072048153837) +description = Crane city, MO +station = ('khfj', 0.0063067052908981035) +zone = ('moz103', 0.0031173446205301509) + +[fips29171] +centroid = (0.70648495131753175, -1.6234098181483338) +description = Putnam County, MO +station = ('ktvk', 0.0038288505876964678) +zone = ('moz007', 2.1452435378034528e-05) + +[fips2917121952] +centroid = (0.70521194306771218, -1.6191767489404243) +description = Elm township, MO +station = ('ktvk', 0.005080086106672794) +zone = ('moz007', 0.0034852797431398695) + +[fips2917128522] +centroid = (0.70734283300476464, -1.6182615331872634) +description = Grant township, MO +station = ('ktvk', 0.0035745490239815297) +zone = ('moz008', 0.002821426151932867) + +[fips2917136026] +centroid = (0.70572397031036971, -1.6256623400809578) +description = Jackson township, MO +station = ('ktvk', 0.0053588419761155396) +zone = ('moz007', 0.0018583573002489181) + +[fips2917142284] +centroid = (0.70738601245045896, -1.6197503863056772) +description = Liberty township, MO +station = ('ktvk', 0.0029020490873225722) +zone = ('moz007', 0.0029429743028464264) + +[fips2917142842] +centroid = (0.70750965157467027, -1.6216595670678489) +description = Lincoln township, MO +station = ('ktvk', 0.0024974347768842134) +zone = ('moz007', 0.0016929966306276215) + +[fips2917147126] +centroid = (0.70557987592732507, -1.628049514165373) +description = Medicine township, MO +station = ('ktvk', 0.0067066499416872658) +zone = ('moz006', 0.0038290803444466052) + +[fips2917161580] +centroid = (0.70591937737342303, -1.6217155048703753) +description = Richland township, MO +station = ('ktvk', 0.0040871195170937447) +zone = ('moz007', 0.0014288434120303425) + +[fips2917164] +centroid = (0.67189167033167074, -1.64186768727914) +description = Creighton city, MO +station = ('krcm', 0.006183208964468701) +zone = ('moz043', 0.004666522317852112) + +[fips2917167466] +centroid = (0.7074943973970077, -1.6257834833843385) +description = Sherman township, MO +station = ('ktvk', 0.0041590117290079475) +zone = ('moz007', 0.0020471992163306825) + +[fips2917174896] +centroid = (0.707502495724737, -1.623897061715613) +description = Union township, MO +station = ('ktvk', 0.0031304460762255162) +zone = ('moz007', 0.0010710870535758318) + +[fips2917180242] +centroid = (0.70549376138203179, -1.6236206364686823) +description = Wilson township, MO +station = ('ktvk', 0.0048088254855870368) +zone = ('moz007', 0.0010060519968215107) + +[fips2917181340] +centroid = (0.70730330129720698, -1.6282836326312353) +description = York township, MO +station = ('ktvk', 0.00587367413867175) +zone = ('iaz095', 0.0037615608983360398) + +[fips2917218] +centroid = (0.67294490672207918, -1.5773983139432455) +description = Crestwood city, MO +station = ('kcps', 0.0031198859211817014) +zone = ('moz063', 0.0017084148135640801) + +[fips2917272] +centroid = (0.67478233699870127, -1.578529252391953) +description = Creve Coeur city, MO +station = ('kstl', 0.0018525684056045512) +zone = ('moz063', 0.00037489773831008799) + +[fips29173] +centroid = (0.69033802028941371, -1.5974088803365034) +description = Ralls County, MO +station = ('kuin', 0.0079345081850287092) +zone = ('moz035', 0.00045281132299394871) + +[fips2917312610] +centroid = (0.68972802771584163, -1.5980032871198551) +description = Center township, MO +station = ('kuin', 0.0086960893832277193) +zone = ('moz035', 0.00052080833325218886) + +[fips2917314482] +centroid = (0.69175213840925709, -1.596674236347754) +description = Clay township, MO +station = ('kuin', 0.0064484584552385888) +zone = ('moz035', 0.001938855059109508) + +[fips2917336566] +centroid = (0.68772822945890666, -1.5974564405586202) +description = Jasper township, MO +station = ('kuin', 0.010234048685979142) +zone = ('moz035', 0.0021598132573068898) + +[fips2917344] +centroid = (0.66229785723284562, -1.6103789630601413) +description = Crocker city, MO +station = ('ktbn', 0.0041630848832038148) +zone = ('moz070', 0.0022900884208503195) + +[fips2917365378] +centroid = (0.69139696390647631, -1.5995817279887736) +description = Saline township, MO +station = ('kuin', 0.008207285435233351) +zone = ('moz035', 0.0022832074113057483) + +[fips2917365612] +centroid = (0.68808678990043637, -1.5999228002311985) +description = Salt River township, MO +station = ('kuin', 0.010887461163895423) +zone = ('moz035', 0.0026744086214584382) + +[fips2917366080] +centroid = (0.69145632255433653, -1.5933444622942139) +description = Saverton township, MO +station = ('kuin', 0.0056480325106792141) +zone = ('moz035', 0.0034706207442690949) + +[fips2917369410] +centroid = (0.69031732068448515, -1.5954934338423172) +description = Spencer township, MO +station = ('kuin', 0.0072499473492860025) +zone = ('moz035', 0.001502648455392448) + +[fips29175] +centroid = (0.68838579970788794, -1.6143025853916722) +description = Randolph County, MO +station = ('kver', 0.0091137398022824185) +zone = ('moz033', 6.3838485878252191e-05) + +[fips2917510378] +centroid = (0.68971439669438361, -1.6134899775452363) +description = Cairo township, MO +station = ('kirk', 0.010257539428703149) +zone = ('moz033', 0.0015170863535098886) + +[fips2917513276] +centroid = (0.69034859698468076, -1.6165065522645057) +description = Chariton township, MO +station = ('kirk', 0.0095732158524408657) +zone = ('moz033', 0.0025777137427259443) + +[fips2917514824] +centroid = (0.68872095528414856, -1.6172185418795642) +description = Clifton township, MO +station = ('kver', 0.0090938506995585731) +zone = ('moz033', 0.0022219561651074375) + +[fips2917524] +centroid = (0.66364875952718183, -1.6271592566205157) +description = Cross Timbers city, MO +station = ('kgly', 0.0085173795092501007) +zone = ('moz068', 0.0019239124114295934) + +[fips2917536044] +centroid = (0.69081892831150826, -1.6138648568152723) +description = Jackson township, MO +station = ('kirk', 0.0091250881133570234) +zone = ('moz033', 0.0024893796515523107) + +[fips2917549250] +centroid = (0.68630393606952411, -1.6147954838257279) +description = Moniteau township, MO +station = ('kver', 0.0070114923371317273) +zone = ('moz033', 0.0020824507778846087) + +[fips2917553318] +centroid = (0.6884225039820574, -1.613706311106021) +description = North Sugar Creek township, MO +station = ('kver', 0.0092875713760394874) +zone = ('moz033', 0.00052304056585145955) + +[fips2917559654] +centroid = (0.68629925858712881, -1.612721770874971) +description = Prairie township, MO +station = ('kver', 0.0076559117702245305) +zone = ('moz033', 0.0024275322116272821) + +[fips2917565630] +centroid = (0.69051389711813727, -1.6117840752810446) +description = Salt River township, MO +station = ('kirk', 0.0097451114109961962) +zone = ('moz033', 0.0029397806143818426) + +[fips2917565684] +centroid = (0.68831027931115429, -1.615461431655119) +description = Salt Springs township, MO +station = ('kver', 0.0088317604789558014) +zone = ('moz033', 0.00083756848670061797) + +[fips2917567898] +centroid = (0.68677784532131814, -1.6168066965359711) +description = Silver Creek township, MO +station = ('kver', 0.0071711841914349093) +zone = ('moz033', 0.0024550758043291911) + +[fips2917569122] +centroid = (0.68766859155836602, -1.6127159414752692) +description = South Sugar Creek township, MO +station = ('kver', 0.0088751212752866439) +zone = ('moz033', 0.0014595614731168572) + +[fips2917574914] +centroid = (0.68860867825336769, -1.6117659587634088) +description = Union township, MO +station = ('kver', 0.010041634849341485) +zone = ('moz033', 0.0020328732605221543) + +[fips2917632] +centroid = (0.66709079315820996, -1.5774401320321232) +description = Crystal City city, MO +station = ('kcps', 0.0068007674973991229) +zone = ('moz065', 0.0022617523771293621) + +[fips2917650] +centroid = (0.67406753740354708, -1.5783346481803555) +description = Crystal Lake Park city, MO +station = ('kstl', 0.0024169495100709927) +zone = ('moz063', 0.00037199458026734432) + +[fips2917660] +centroid = (0.68696086054668226, -1.6439271583432009) +description = Crystal Lakes city, MO +station = ('kmkc', 0.0069810385985070401) +zone = ('moz029', 0.0032318508721515984) + +[fips2917668] +centroid = (0.66439612696617822, -1.5953315196476094) +description = Cuba city, MO +station = ('kvih', 0.005089885355283718) +zone = ('moz072', 0.002112646866795641) + +[fips29177] +centroid = (0.68606102114423162, -1.64053525056829) +description = Ray County, MO +station = ('klxt', 0.0077965997497887679) +zone = ('moz030', 0.00077197229181163161) + +[fips2917710756] +centroid = (0.68435202964726383, -1.640007637535412) +description = Camden township, MO +station = ('klxt', 0.0069021558494742966) +zone = ('moz030', 0.0024987284870211313) + +[fips2917717398] +centroid = (0.68561393760304068, -1.6377086549381001) +description = Crooked River township, MO +station = ('krcm', 0.0087872062111493208) +zone = ('moz030', 0.0024329545222768587) + +[fips2917724310] +centroid = (0.68638345327024497, -1.6433697350866989) +description = Fishing River township, MO +station = ('klxt', 0.0068912947808302833) +zone = ('moz030', 0.0023143881504678731) + +[fips2917728666] +centroid = (0.6884420167630948, -1.6377194759794624) +description = Grape Grove township, MO +station = ('kcdj', 0.0073150317625494026) +zone = ('moz030', 0.0026456699313695837) + +[fips2917739314] +centroid = (0.68861609590268869, -1.6408643323987535) +description = Knoxville township, MO +station = ('kcdj', 0.0085726886557299757) +zone = ('moz030', 0.0018179284182289919) + +[fips2917754956] +centroid = (0.68451605569036622, -1.6431373794033808) +description = Orrick township, MO +station = ('klxt', 0.0053442043542510425) +zone = ('moz030', 0.0031193150445616821) + +[fips2917758844] +centroid = (0.68886873231191481, -1.6430166026191428) +description = Polk township, MO +station = ('kmkc', 0.0087652430685805291) +zone = ('moz030', 0.0028538673170432657) + +[fips2917761688] +centroid = (0.68606102114423162, -1.64053525056829) +description = Richmond township, MO +station = ('klxt', 0.0077965997497887679) +zone = ('moz030', 0.00077197229181163161) + +[fips29179] +centroid = (0.65206996601677114, -1.5877175731456619) +description = Reynolds County, MO +station = ('kfam', 0.010256239649436822) +zone = ('moz099', 2.5837801410642045e-05) + +[fips2917902] +centroid = (0.68671276199351128, -1.5942101456032034) +description = Curryville city, MO +station = ('kppq', 0.0091495819372724475) +zone = ('moz036', 0.0022963362169879848) + +[fips2917906094] +centroid = (0.65545660289734087, -1.5877568779604168) +description = Black River township, MO +station = ('kfam', 0.0083069644203624567) +zone = ('moz084', 0.0027433225953881831) + +[fips2917911530] +centroid = (0.65419897099823143, -1.5899873389312955) +description = Carroll township, MO +station = ('kfam', 0.010457312514247891) +zone = ('moz099', 0.0027742049721543182) + +[fips2917936062] +centroid = (0.65153858307270884, -1.5899494652865271) +description = Jackson township, MO +station = ('kfam', 0.011933612174426221) +zone = ('moz099', 0.0018650687145241357) + +[fips2917941726] +centroid = (0.65420235693698026, -1.5848013374050898) +description = Lesterville township, MO +station = ('kfam', 0.0071089768754237928) +zone = ('moz084', 0.0013216614398203273) + +[fips2917943598] +centroid = (0.64987854806125955, -1.5876380035850635) +description = Logan township, MO +station = ('kfam', 0.011840358433958895) +zone = ('moz099', 0.0022173492619909307) + +[fips2917978100] +centroid = (0.64907899527762847, -1.584985399828005) +description = Webb township, MO +station = ('kpof', 0.010116489867213365) +zone = ('moz099', 0.0037146558963038266) + +[fips2917992] +centroid = (0.65413776230136389, -1.6349191650078077) +description = Dadeville village, MO +station = ('ksgf', 0.0058899444725264184) +zone = ('moz089', 0.0025789477945550232) + +[fips29181] +centroid = (0.63964400714073488, -1.5859293786072386) +description = Ripley County, MO +station = ('k4m9', 0.0053047074109305878) +zone = ('moz108', 8.1156487409554212e-05) + +[fips2918117866] +centroid = (0.63741047439037268, -1.5855398385714861) +description = Current River township, MO +station = ('k4m9', 0.003453593435135658) +zone = ('moz108', 0.0023171740667385183) + +[fips2918118] +centroid = (0.68761794210347316, -1.6230176775719958) +description = Dalton town, MO +station = ('kver', 0.0090342779562180738) +zone = ('moz032', 0.002078460130870814) + +[fips2918119810] +centroid = (0.63940123184178244, -1.5848003251141234) +description = Doniphan township, MO +station = ('k4m9', 0.0046248475502994576) +zone = ('moz108', 0.00091599802090068061) + +[fips2918124544] +centroid = (0.63985562831253917, -1.5829854619447297) +description = Flatwoods township, MO +station = ('k4m9', 0.0046060409147680205) +zone = ('moz108', 0.0023218822256138643) + +[fips2918126704] +centroid = (0.63814546744497258, -1.5895481093717387) +description = Gatewood township, MO +station = ('k4m9', 0.006600593062307418) +zone = ('moz108', 0.003339409435286047) + +[fips2918130448] +centroid = (0.63767140111354581, -1.5840484721789494) +description = Harris township, MO +station = ('k4m9', 0.0028244301179198264) +zone = ('moz108', 0.0025125555447681755) + +[fips2918137448] +centroid = (0.64130510680302799, -1.5829330148007072) +description = Johnson township, MO +station = ('kpof', 0.0053104200697364377) +zone = ('moz108', 0.0028459007317245214) + +[fips2918137664] +centroid = (0.64160704876362296, -1.5854791883799793) +description = Jordan township, MO +station = ('k4m9', 0.0068532197581795086) +zone = ('moz108', 0.0019212907955294398) + +[fips2918138144] +centroid = (0.6413692651063313, -1.5877478197015991) +description = Kelley township, MO +station = ('k4m9', 0.0075573063640621378) +zone = ('moz108', 0.0022367357325509766) + +[fips2918157728] +centroid = (0.64114416999270163, -1.5895612342477135) +description = Pine township, MO +station = ('k4m9', 0.0083470365649113958) +zone = ('moz108', 0.0032850013748873695) + +[fips2918159456] +centroid = (0.63759542693120652, -1.5865346587918303) +description = Poynor township, MO +station = ('k4m9', 0.0042136687663812964) +zone = ('moz108', 0.0021820236712061739) + +[fips2918167570] +centroid = (0.63954515169190185, -1.5873402155080882) +description = Shirley township, MO +station = ('k4m9', 0.0059565579966899514) +zone = ('moz108', 0.0011879696610852825) + +[fips2918172970] +centroid = (0.6379040011429592, -1.5816998524177106) +description = Thomas township, MO +station = ('k4m9', 0.0026281996586618242) +zone = ('moz108', 0.0038078397773344433) + +[fips2918174950] +centroid = (0.63796939863003133, -1.587706298318694) +description = Union township, MO +station = ('k4m9', 0.0052108415559879275) +zone = ('moz108', 0.0022803390582279174) + +[fips2918175778] +centroid = (0.63851397626323858, -1.582805343965924) +description = Varner township, MO +station = ('k4m9', 0.0032582056958952829) +zone = ('moz108', 0.0027390729514519484) + +[fips2918177668] +centroid = (0.63943992579129916, -1.58165538142837) +description = Washington township, MO +station = ('k4m9', 0.0041584298560443586) +zone = ('moz109', 0.0033203675374769591) + +[fips2918178712] +centroid = (0.63866782703680192, -1.5862112492814358) +description = West Doniphan township, MO +station = ('k4m9', 0.004695712266431144) +zone = ('moz108', 0.001078677183054486) + +[fips2918190] +centroid = (0.6791460964610001, -1.5974961293458105) +description = Danville CDP, MO +station = ('kfyg', 0.0092371331759094101) +zone = ('moz051', 0.00095706595956329709) + +[fips2918253] +centroid = (0.67640195018467442, -1.583551123155301) +description = Dardenne Prairie city, MO +station = ('ksus', 0.0021372913192173469) +zone = ('moz061', 0.00089060244752004456) + +[fips29183] +centroid = (0.67685791745175794, -1.5825758157159941) +description = St. Charles County, MO +station = ('ksus', 0.0023131806092146043) +zone = ('moz061', 1.4457428815963177e-05) + +[fips2918307232] +centroid = (0.67472781291286898, -1.585400090058279) +description = Boone township, MO +station = ('kfyg', 0.0024785675027371675) +zone = ('moz061', 0.003071688850925965) + +[fips2918316] +centroid = (0.70158752252985057, -1.6475852637356256) +description = Darlington village, MO +station = ('klwd', 0.010090394510165962) +zone = ('moz004', 0.00028120815932127045) + +[fips2918316681] +centroid = (0.67573879488208666, -1.5817778337286899) +description = Cottleville township, MO +station = ('ksus', 0.0012029151564672054) +zone = ('moz061', 0.0012945855669940721) + +[fips2918318244] +centroid = (0.6765564292767684, -1.5826508299672448) +description = Dardenne township, MO +station = ('ksus', 0.0020261230967947952) +zone = ('moz061', 0.00032010774707989635) + +[fips2918326120] +centroid = (0.67636786390438308, -1.5799131414091516) +description = Frontier township, MO +station = ('kstl', 0.0021197718602707226) +zone = ('moz063', 0.0022386846014033558) + +[fips2918330812] +centroid = (0.67573291312250749, -1.580726464840581) +description = Harvester township, MO +station = ('ksus', 0.0016037901814005) +zone = ('moz061', 0.0018408109174834772) + +[fips2918340047] +centroid = (0.67696488868161264, -1.584128390805398) +description = Lake St. Louis township, MO +station = ('ksus', 0.0028532698173509897) +zone = ('moz061', 0.0012099480431920007) + +[fips2918343026] +centroid = (0.67714179525459484, -1.5798672043432391) +description = Lindenwood township, MO +station = ('kset', 0.0026475794650670328) +zone = ('moz061', 0.0021322647891534909) + +[fips2918354080] +centroid = (0.6772108753863888, -1.5822706274429903) +description = O'Fallon township, MO +station = ('ksus', 0.0026430558859045325) +zone = ('moz061', 0.00041639459592936288) + +[fips2918362112] +centroid = (0.67845044312774017, -1.5788048398808427) +description = Rivers township, MO +station = ('kset', 0.0011194313497611755) +zone = ('moz061', 0.0033384270502256714) + +[fips2918365130] +centroid = (0.67657817607924831, -1.5813984340558913) +description = St. Peters township, MO +station = ('ksus', 0.0020903337631819462) +zone = ('moz061', 0.00096744621139135088) + +[fips2918369434] +centroid = (0.67673160797379117, -1.5809312443217174) +description = Spencer Creek township, MO +station = ('ksus', 0.0023589486742537158) +zone = ('moz061', 0.0012935763962996086) + +[fips2918378316] +centroid = (0.6763046480788758, -1.5831608500812626) +description = Weldon Spring township, MO +station = ('ksus', 0.0019087662590384648) +zone = ('moz061', 0.00072544496484997769) + +[fips2918378448] +centroid = (0.67793187090038765, -1.5850180025784322) +description = Wentzville township, MO +station = ('ksus', 0.0040421232008434754) +zone = ('moz061', 0.0021748972331825773) + +[fips2918381555] +centroid = (0.67685008092341659, -1.5803496308017828) +description = Zumbehl township, MO +station = ('ksus', 0.0026745995346322518) +zone = ('moz061', 0.0017394197915530491) + +[fips2918496] +centroid = (0.69239483845301142, -1.6342236338475955) +description = Dawn CDP, MO +station = ('kcdj', 0.002627032540275779) +zone = ('moz023', 0.0022508967696970249) + +[fips29185] +centroid = (0.66390699844330681, -1.6366489433761666) +description = St. Clair County, MO +station = ('kgly', 0.0057449429913806584) +zone = ('moz067', 5.2871942679657718e-05) + +[fips2918501504] +centroid = (0.66589913470482576, -1.640725351830417) +description = Appleton township, MO +station = ('kgly', 0.005750309878824857) +zone = ('moz067', 0.0037606501997482283) + +[fips2918510108] +centroid = (0.66575127041059667, -1.6352234108030153) +description = Butler township, MO +station = ('kgly', 0.0037602782518136361) +zone = ('moz067', 0.0022090124034676501) + +[fips2918512628] +centroid = (0.66399567862260078, -1.6372675055163661) +description = Center township, MO +station = ('kgly', 0.0057875736543136274) +zone = ('moz067', 0.00046361136158273517) + +[fips2918513024] +centroid = (0.66577607153926754, -1.6369012481728349) +description = Chalk Level township, MO +station = ('kgly', 0.0040126908156917209) +zone = ('moz067', 0.0019100197088753425) + +[fips2918515580] +centroid = (0.66098317052048849, -1.6342917540483006) +description = Collins township, MO +station = ('kgly', 0.008544597395944686) +zone = ('moz067', 0.0034575575230095584) + +[fips2918518100] +centroid = (0.66251516817801148, -1.6330296017464285) +description = Dallas township, MO +station = ('kgly', 0.0071668793102212724) +zone = ('moz068', 0.0033873882721013365) + +[fips2918520008] +centroid = (0.66251012417647326, -1.6351121984230783) +description = Doyal township, MO +station = ('kgly', 0.0069985170493678285) +zone = ('moz067', 0.001849849953573234) + +[fips2918536080] +centroid = (0.66579486873531157, -1.6330966398429976) +description = Jackson township, MO +station = ('kgly', 0.0040101555945194853) +zone = ('moz067', 0.003425960906517111) + +[fips2918549142] +centroid = (0.66582940880120856, -1.6385813021108047) +description = Monegaw township, MO +station = ('kgly', 0.0046190410577569944) +zone = ('moz067', 0.0024538223486139086) + +[fips2918555208] +centroid = (0.66409142738536509, -1.6387650503744549) +description = Osage township, MO +station = ('kgly', 0.0061629906873268709) +zone = ('moz067', 0.0016410023254717985) + +[fips2918555406] +centroid = (0.66409451661814112, -1.6351792365196471) +description = Osceola township, MO +station = ('kgly', 0.0054151507392723218) +zone = ('moz067', 0.0012180160216000806) + +[fips2918558862] +centroid = (0.66383509087812465, -1.6330802162947362) +description = Polk township, MO +station = ('kgly', 0.0058753627657474102) +zone = ('moz067', 0.0028512412812378906) + +[fips2918563092] +centroid = (0.66220551186212262, -1.6375177508245169) +description = Roscoe township, MO +station = ('kgly', 0.007561418555406675) +zone = ('moz067', 0.0017873726780370152) + +[fips2918569356] +centroid = (0.66208112224633309, -1.6404340040183818) +description = Speedwell township, MO +station = ('kgly', 0.0085592709626112675) +zone = ('moz067', 0.0034454277532234372) + +[fips2918572124] +centroid = (0.6641742083517872, -1.6403083054056531) +description = Taber township, MO +station = ('kgly', 0.006759518989895576) +zone = ('moz067', 0.0028575983983596827) + +[fips2918577686] +centroid = (0.66093836791858984, -1.636041010291112) +description = Washington township, MO +station = ('kgly', 0.0086071740233225544) +zone = ('moz067', 0.0029799136881262806) + +[fips29186] +centroid = (0.66130839517330509, -1.5739583398007346) +description = Ste. Genevieve County, MO +station = ('kfam', 0.0040903582474188646) +zone = ('moz075', 0.00020442153986823243) + +[fips2918603790] +centroid = (0.6601523065300765, -1.5720722497445669) +description = Beauvais township, MO +station = ('kfam', 0.0050677194312688315) +zone = ('moz075', 0.0020798454001724038) + +[fips2918636098] +centroid = (0.66380433817670459, -1.5755154352929015) +description = Jackson township, MO +station = ('kfam', 0.0051646953491453814) +zone = ('moz075', 0.0026403929511533042) + +[fips2918658] +centroid = (0.68985486079258418, -1.6541343848609316) +description = Dearborn city, MO +station = ('kmci', 0.0039801637785069491) +zone = ('moz020', 0.0023767611448954487) + +[fips2918664185] +centroid = (0.66228907822670813, -1.5726618743257683) +description = Ste. Genevieve township, MO +station = ('kfam', 0.0054839221386092114) +zone = ('moz075', 0.0015211352030806802) + +[fips2918665396] +centroid = (0.65912435996052954, -1.5742731099313321) +description = Saline township, MO +station = ('kfam', 0.0032304338264050529) +zone = ('moz075', 0.0022513838425794546) + +[fips2918674968] +centroid = (0.66110536102142048, -1.5765249686388401) +description = Union township, MO +station = ('kfam', 0.0024316095651317686) +zone = ('moz074', 0.0023217458612054625) + +[fips29187] +centroid = (0.65992132965686756, -1.579066883614737) +description = St. Francois County, MO +station = ('kfam', 0.0009504757244152641) +zone = ('moz074', 1.4382916960125999e-05) + +[fips2918705590] +centroid = (0.66321218286808803, -1.5806657099293189) +description = Big River township, MO +station = ('kfam', 0.0044489273150060699) +zone = ('moz074', 0.0035341566621438936) + +[fips2918730] +centroid = (0.6677487997395043, -1.6366848622521728) +description = Deepwater city, MO +station = ('kgly', 0.0021893728494514694) +zone = ('moz054', 0.0022124361667843575) + +[fips2918735378] +centroid = (0.65816777990409636, -1.5812505174017846) +description = Iron township, MO +station = ('kfam', 0.0024894323130857164) +zone = ('moz074', 0.002466313189209876) + +[fips2918742302] +centroid = (0.65762735615450885, -1.5759955753701251) +description = Liberty township, MO +station = ('kfam', 0.0024130018642737161) +zone = ('moz074', 0.0033273471416411082) + +[fips2918746154] +centroid = (0.66266348625784599, -1.5782894441527286) +description = Marion township, MO +station = ('kfam', 0.0035112399986540676) +zone = ('moz074', 0.0028123128823147698) + +[fips2918756864] +centroid = (0.65812453064523191, -1.5793880765569817) +description = Pendleton township, MO +station = ('kfam', 0.0013110514736761165) +zone = ('moz074', 0.0018112713823520206) + +[fips2918757098] +centroid = (0.6616193604861329, -1.5801689717709089) +description = Perry township, MO +station = ('kfam', 0.0028507615772917997) +zone = ('moz074', 0.0019188633756106164) + +[fips2918760608] +centroid = (0.66035216418272236, -1.5810563320692079) +description = Randolph township, MO +station = ('kfam', 0.0024453425487417613) +zone = ('moz074', 0.0016437614760917822) + +[fips2918764316] +centroid = (0.65970068513283053, -1.5785339473276405) +description = St. Francois township, MO +station = ('kfam', 0.00056509747255818418) +zone = ('moz074', 0.00046107644553455048) + +[fips2918802] +centroid = (0.66040906191633753, -1.6494705683936299) +description = Deerfield village, MO +station = ('kpts', 0.0074465013582675826) +zone = ('moz066', 0.0022877932950142971) + +[fips29189] +centroid = (0.67440747518195787, -1.5785796924073354) +description = St. Louis County, MO +station = ('kstl', 0.0021921407852666486) +zone = ('moz063', 4.0270029038542356e-05) + +[fips2918900406] +centroid = (0.6763055207435017, -1.5771319592460986) +description = Airport township, MO +station = ('kstl', 5.0750554970921588e-05) +zone = ('moz063', 0.0021886388218229011) + +[fips2918907066] +centroid = (0.6728880438950493, -1.5783960488634405) +description = Bonhomme township, MO +station = ('kstl', 0.0035529029591221646) +zone = ('moz063', 0.0015228993005787109) + +[fips2918910] +centroid = (0.67426866914654682, -1.5844901102928739) +description = Defiance CDP, MO +station = ('ksus', 0.0018593837881996506) +zone = ('moz061', 0.0029994065990079613) + +[fips2918913605] +centroid = (0.67412947913870036, -1.5819692265344634) +description = Chesterfield township, MO +station = ('ksus', 0.00046026024585167174) +zone = ('moz063', 0.0027023887878587591) + +[fips2918914590] +centroid = (0.67424695725065198, -1.5772845882891857) +description = Clayton township, MO +station = ('kstl', 0.0020692869495021428) +zone = ('moz063', 0.00098453615684562985) + +[fips2918916048] +centroid = (0.67252756359134236, -1.5767789140450053) +description = Concord township, MO +station = ('kcps', 0.0026961780109359419) +zone = ('moz064', 0.002235891080643421) + +[fips2918917290] +centroid = (0.67500432542626254, -1.5781170405292166) +description = Creve Coeur township, MO +station = ('kstl', 0.0014949062378798964) +zone = ('moz063', 0.0006777357976573609) + +[fips2918924004] +centroid = (0.67657229431966903, -1.5757533062166558) +description = Ferguson township, MO +station = ('kstl', 0.001153945438761567) +zone = ('moz064', 0.0023122684867469068) + +[fips2918924796] +centroid = (0.67710404378287414, -1.57633034697395) +description = Florissant township, MO +station = ('kstl', 0.0010381715320826232) +zone = ('moz064', 0.0029501926521035937) + +[fips2918928792] +centroid = (0.67292176365619771, -1.5771190612629264) +description = Gravois township, MO +station = ('kcps', 0.0029033563320424545) +zone = ('moz063', 0.0018493196795460914) + +[fips2918929818] +centroid = (0.67427493487856149, -1.5763720777963655) +description = Hadley township, MO +station = ('kstl', 0.0021390755379383864) +zone = ('moz064', 0.0010163365230730042) + +[fips2918936962] +centroid = (0.67348847206432039, -1.5770251101892914) +description = Jefferson township, MO +station = ('kstl', 0.0028297555007803054) +zone = ('moz063', 0.0014912210746335817) + +[fips2918939682] +centroid = (0.67399744498078695, -1.5802880555857723) +description = Lafayette township, MO +station = ('ksus', 0.0015564494228082445) +zone = ('moz063', 0.0014346888599112994) + +[fips2918941456] +centroid = (0.67225958573799116, -1.5759375257192036) +description = Lemay township, MO +station = ('kcps', 0.0021510627031288009) +zone = ('moz064', 0.0021704059581398229) + +[fips2918941825] +centroid = (0.67796321701375351, -1.5763894089158377) +description = Lewis and Clark township, MO +station = ('kstl', 0.0017639121718768559) +zone = ('moz064', 0.0037834283649208402) + +[fips2918946] +centroid = (0.69094501089667237, -1.656728101209028) +description = De Kalb town, MO +station = ('kstj', 0.0031156185546852119) +zone = ('moz020', 0.0020119660889043054) + +[fips2918946590] +centroid = (0.67547531997820554, -1.5792828855629639) +description = Maryland Heights township, MO +station = ('kstl', 0.0018319878636576749) +zone = ('moz063', 0.0012196728248336009) + +[fips2918947450] +centroid = (0.67229735466300433, -1.5814977083837447) +description = Meramec township, MO +station = ('ksus', 0.00232736771806523) +zone = ('moz063', 0.0031371081168675855) + +[fips2918947918] +centroid = (0.67549148172707907, -1.5773298970365672) +description = Midland township, MO +station = ('kstl', 0.00083021433539090354) +zone = ('moz063', 0.0014318959881280044) + +[fips2918948989] +centroid = (0.67404537172204659, -1.5789876456666967) +description = Missouri River township, MO +station = ('kstl', 0.0026660501909143508) +zone = ('moz063', 0.00050985236365645942) + +[fips2918952814] +centroid = (0.67560189125556025, -1.5759589409091257) +description = Normandy township, MO +station = ('kstl', 0.0011998943466678561) +zone = ('moz064', 0.0014551348953447121) + +[fips2918953360] +centroid = (0.67685495039202959, -1.578226106154174) +description = Northwest township, MO +station = ('kstl', 0.00096785033588050117) +zone = ('moz063', 0.0024588309018754701) + +[fips2918953448] +centroid = (0.67603434893761949, -1.5758233986394159) +description = Norwood township, MO +station = ('kstl', 0.001106687192559584) +zone = ('moz064', 0.0018099977640206354) + +[fips2918953880] +centroid = (0.67107731715598262, -1.5763143073981243) +description = Oakville township, MO +station = ('kcps', 0.0030501009002707018) +zone = ('moz064', 0.0033868838881049071) + +[fips2918960363] +centroid = (0.67315528871011454, -1.5794954841191493) +description = Queeny township, MO +station = ('ksus', 0.002504822817201941) +zone = ('moz063', 0.0014626505747158485) + +[fips2918964208] +centroid = (0.6769663023983068, -1.5741388592052685) +description = St. Ferdinand township, MO +station = ('kaln', 0.0027511376520204535) +zone = ('moz064', 0.0027428774108178271) + +[fips2918969284] +centroid = (0.6774793419319306, -1.5750809006690323) +description = Spanish Lake township, MO +station = ('kstl', 0.0020183083169481642) +zone = ('moz064', 0.0031574297815393283) + +[fips2918972794] +centroid = (0.67181958823356336, -1.5775422512466573) +description = Tesson Ferry township, MO +station = ('kcps', 0.0034794829434907568) +zone = ('moz063', 0.0027002190636887615) + +[fips2918975210] +centroid = (0.67499624455182572, -1.5764035111761938) +description = University township, MO +station = ('kstl', 0.0014565720453041399) +zone = ('moz064', 0.0012390655825209426) + +[fips2918979801] +centroid = (0.67331458491094409, -1.5812533971950506) +description = Wildhorse township, MO +station = ('ksus', 0.0014340228329214656) +zone = ('moz063', 0.0023936155237786038) + +[fips2919018] +centroid = (0.67642345264105896, -1.575626525499791) +description = Dellwood city, MO +station = ('kstl', 0.0012286405076557087) +zone = ('moz064', 0.0021455753153588868) + +[fips2919072] +centroid = (0.6492181154723049, -1.5662438099739946) +description = Delta city, MO +station = ('kcgi', 0.0022545623743607307) +zone = ('moz087', 0.003341366379939275) + +[fips2919090] +centroid = (0.64658071353303126, -1.649411017759552) +description = Dennis Acres village, MO +station = ('kjln', 0.0018100890248526802) +zone = ('moz093', 0.0033677229255795315) + +[fips2919162] +centroid = (0.70509465694197815, -1.6462520939864898) +description = Denver village, MO +station = ('klwd', 0.006948320678154752) +zone = ('moz003', 0.0019191184491818617) + +[fips2919198] +centroid = (0.65071436878674704, -1.5818975109554989) +description = Des Arc village, MO +station = ('kfam', 0.0088926216195074782) +zone = ('moz100', 0.0038418607162894682) + +[fips2919216] +centroid = (0.66104465847003624, -1.5798570639802851) +description = Desloge city, MO +station = ('kfam', 0.0022314015887787779) +zone = ('moz074', 0.0012962033999152983) + +[fips2919252] +centroid = (0.66568596018998716, -1.5805846568388564) +description = De Soto city, MO +station = ('kfam', 0.0067647895089045281) +zone = ('moz065', 0.0021181494839315825) + +[fips2919270] +centroid = (0.6736488678225786, -1.5786173915191786) +description = Des Peres city, MO +station = ('kstl', 0.0028879734011628883) +zone = ('moz063', 0.00076177124053706819) + +[fips2919378] +centroid = (0.68739583150286432, -1.6269944102726648) +description = De Witt city, MO +station = ('kcdj', 0.0089820557346471912) +zone = ('moz039', 0.0043399095846024267) + +[fips2919396] +centroid = (0.64215586754691267, -1.5701500139195905) +description = Dexter city, MO +station = ('kpof', 0.0049653971252034195) +zone = ('moz110', 0.0011242952788426104) + +[fips2919432] +centroid = (0.645720667637526, -1.6461138464564393) +description = Diamond town, MO +station = ('kjln', 0.003705958448057389) +zone = ('moz093', 0.0016323597458584313) + +[fips2919486] +centroid = (0.64506150913892535, -1.5608888605761957) +description = Diehlstadt village, MO +station = ('kcir', 0.0034887285241230323) +zone = ('moz111', 0.002506169969289707) + +[fips29195] +centroid = (0.68304926353369766, -1.6267195383687683) +description = Saline County, MO +station = ('kdmo', 0.0073336490959191192) +zone = ('moz039', 2.9712982678175624e-05) + +[fips2919502062] +centroid = (0.68192040202680015, -1.6234752330886986) +description = Arrow Rock township, MO +station = ('kver', 0.0051273610052455336) +zone = ('moz039', 0.0027403453935588703) + +[fips2919504] +centroid = (0.64880340778873846, -1.6205640064430795) +description = Diggins village, MO +station = ('ksgf', 0.0074664401465687879) +zone = ('moz091', 0.0019015778850564253) + +[fips2919506202] +centroid = (0.6800615914668412, -1.6255272690501459) +description = Blackwater township, MO +station = ('kdmo', 0.0043485066083017981) +zone = ('moz039', 0.0031327830648503027) + +[fips2919510702] +centroid = (0.68528658364853667, -1.6234884801377212) +description = Cambridge township, MO +station = ('kver', 0.0072848769482657116) +zone = ('moz039', 0.0033291902757950262) + +[fips2919514500] +centroid = (0.68361740311180674, -1.6233322382630826) +description = Clay township, MO +station = ('kver', 0.0059920186030217723) +zone = ('moz039', 0.00265870747122967) + +[fips2919522096] +centroid = (0.68216551606695031, -1.6300612504743917) +description = Elmwood township, MO +station = ('kszl', 0.006489310608633737) +zone = ('moz039', 0.0027688466132839932) + +[fips2919528216] +centroid = (0.68435593918478821, -1.6297519606776458) +description = Grand Pass township, MO +station = ('kszl', 0.0086527818388962025) +zone = ('moz039', 0.0027064745160441717) + +[fips2919542320] +centroid = (0.68063135420115473, -1.6282599485132858) +description = Liberty township, MO +station = ('kdmo', 0.0051876869630436678) +zone = ('moz039', 0.0027212798854587411) + +[fips2919546334] +centroid = (0.68282545996371435, -1.6266468803120078) +description = Marshall township, MO +station = ('kdmo', 0.0071065813926738264) +zone = ('moz039', 0.00023893019296771577) + +[fips2919547702] +centroid = (0.68567743268122827, -1.6267642537042044) +description = Miami township, MO +station = ('kver', 0.0093506679624983848) +zone = ('moz039', 0.0026156208490440138) + +[fips2919565504] +centroid = (0.68109447731817152, -1.6255440591175501) +description = Salt Fork township, MO +station = ('kdmo', 0.0053764936583214655) +zone = ('moz039', 0.0021582387322703514) + +[fips2919565522] +centroid = (0.68048748671091286, -1.6305575523004887) +description = Salt Pond township, MO +station = ('kszl', 0.0047801797163293516) +zone = ('moz039', 0.0039586406213817328) + +[fips2919630] +centroid = (0.6631426838572736, -1.6073762811617178) +description = Dixon city, MO +station = ('ktbn', 0.0046008182156924392) +zone = ('moz070', 0.0033526908805863753) + +[fips2919684] +centroid = (0.6587836716905402, -1.5795215942447591) +description = Doe Run CDP, MO +station = ('kfam', 0.00099017194941544728) +zone = ('moz074', 0.0011920768682579074) + +[fips29197] +centroid = (0.70632359562818492, -1.614761449905314) +description = Schuyler County, MO +station = ('ktvk', 0.0062469378708957064) +zone = ('moz008', 2.8985750093030712e-05) + +[fips2919713294] +centroid = (0.70789317022450349, -1.6166082176934342) +description = Chariton township, MO +station = ('ktvk', 0.0042104326357719204) +zone = ('moz008', 0.0020783198060002335) + +[fips2919723194] +centroid = (0.70751755791618176, -1.6127813913222191) +description = Fabius township, MO +station = ('ktvk', 0.007005775665053734) +zone = ('moz008', 0.0019322032329636219) + +[fips2919727532] +centroid = (0.70699404640704611, -1.6165378111114088) +description = Glenwood township, MO +station = ('ktvk', 0.0047673565337450763) +zone = ('moz008', 0.0014792830736753628) + +[fips2919735054] +centroid = (0.70531222968653173, -1.613085113518651) +description = Independence township, MO +station = ('kirk', 0.0056924799414306481) +zone = ('moz008', 0.001656772339888981) + +[fips2919742338] +centroid = (0.70767938484442661, -1.6146392594043821) +description = Liberty township, MO +station = ('ktvk', 0.0056399605891042925) +zone = ('moz008', 0.0013463184701757694) + +[fips2919759672] +centroid = (0.70562541156750969, -1.6158677966648607) +description = Prairie township, MO +station = ('kirk', 0.0057645591138878304) +zone = ('moz008', 0.0010841657162617617) + +[fips2919765648] +centroid = (0.70450604465174305, -1.6158481093508983) +description = Salt River township, MO +station = ('kirk', 0.0046477362184822665) +zone = ('moz008', 0.0020001474150367743) + +[fips2919792] +centroid = (0.63919812787672781, -1.5851404897853372) +description = Doniphan city, MO +station = ('k4m9', 0.0045835178950502679) +zone = ('moz108', 0.00078150534190521252) + +[fips2919828] +centroid = (0.66220505807651719, -1.6037058711980661) +description = Doolittle city, MO +station = ('kvih', 0.0037249703988852462) +zone = ('moz071', 0.0017064144899421574) + +[fips29199] +centroid = (0.70594529551281515, -1.6081956608856516) +description = Scotland County, MO +station = ('kirk', 0.0081376967491605841) +zone = ('moz009', 0.00010286392784141628) + +[fips2919918] +centroid = (0.68406757588577372, -1.6351949968427928) +description = Dover town, MO +station = ('krcm', 0.0073819378460225462) +zone = ('moz038', 0.0025915832695761545) + +[fips2919930574] +centroid = (0.70427588808328256, -1.6056288575146209) +description = Harrison township, MO +station = ('keok', 0.0077374491400500241) +zone = ('moz009', 0.0026695868830695414) + +[fips2919936980] +centroid = (0.70568150644966876, -1.608571465180191) +description = Jefferson township, MO +station = ('kirk', 0.0077504259526210255) +zone = ('moz009', 0.00041800213602241875) + +[fips2919937466] +centroid = (0.70777286467916345, -1.6054985512326672) +description = Johnson township, MO +station = ('kffl', 0.0086850402521841414) +zone = ('moz009', 0.0027341767800382927) + +[fips2919948314] +centroid = (0.70777427839585749, -1.611066954397985) +description = Miller township, MO +station = ('kirk', 0.0085318126423624824) +zone = ('moz009', 0.0027497062863508226) + +[fips2919950618] +centroid = (0.70408885860063897, -1.6109470502783729) +description = Mount Pleasant township, MO +station = ('kirk', 0.0053663820072007758) +zone = ('moz009', 0.0028156380077164283) + +[fips2919965828] +centroid = (0.70439228409109811, -1.6075899269154545) +description = Sand Hill township, MO +station = ('kirk', 0.0074200154718394801) +zone = ('moz009', 0.0017187193937330226) + +[fips2919973060] +centroid = (0.70615660252535406, -1.6058484024812294) +description = Thomson township, MO +station = ('keok', 0.0076363084644782732) +zone = ('moz009', 0.0018470916580446363) + +[fips2919973492] +centroid = (0.70407843898500444, -1.6092682355241723) +description = Tobin township, MO +station = ('kirk', 0.0062353344783009157) +zone = ('moz009', 0.0020953157585791981) + +[fips2919974986] +centroid = (0.70765131995005459, -1.6081733381245185) +description = Union township, MO +station = ('kffl', 0.0090510307101096133) +zone = ('moz009', 0.0016219353949032415) + +[fips2919975958] +centroid = (0.7061829046371817, -1.6110561159033301) +description = Vest township, MO +station = ('kirk', 0.0070892166594853012) +zone = ('moz009', 0.002125147882803323) + +[fips2919990] +centroid = (0.70662749235754219, -1.6121364747103146) +description = Downing city, MO +station = ('kirk', 0.0071693245216237975) +zone = ('moz008', 0.0020422857534974064) + +[fips29201] +centroid = (0.64660596844730756, -1.5632582148489482) +description = Scott County, MO +station = ('kcgi', 0.0032452197377837661) +zone = ('moz111', 9.1147919493709458e-05) + +[fips2920115778] +centroid = (0.64781115320239469, -1.5612115370483044) +description = Commerce township, MO +station = ('kcgi', 0.0027438791616848069) +zone = ('moz111', 0.0019825059200134008) + +[fips2920134] +centroid = (0.6719676794205951, -1.6511483184969871) +description = Drexel city, MO +station = ('kojc', 0.0060643111122863635) +zone = ('ksz057', 0.0033804371725750567) + +[fips2920138234] +centroid = (0.64911475707400179, -1.5631690459774636) +description = Kelso township, MO +station = ('kcgi', 0.00078239206089998072) +zone = ('moz111', 0.0024191698500375444) + +[fips2920149916] +centroid = (0.6474814430534005, -1.5630477630477424) +description = Moreland township, MO +station = ('kcgi', 0.0023931143094471155) +zone = ('moz111', 0.00080385258573450558) + +[fips2920150006] +centroid = (0.6460920038891802, -1.564456278660687) +description = Morley township, MO +station = ('kcgi', 0.0038251517724125091) +zone = ('moz111', 0.001125675559643384) + +[fips2920161598] +centroid = (0.64397996350804942, -1.5631260759712795) +description = Richland township, MO +station = ('kcgi', 0.0058728897002881799) +zone = ('moz111', 0.0027192150994717933) + +[fips2920163047] +centroid = (0.64449532432957835, -1.5645578742764454) +description = Rootwad township, MO +station = ('kcgi', 0.0054121394633947547) +zone = ('moz111', 0.0024310198900565458) + +[fips2920165864] +centroid = (0.64545157277345344, -1.5622985804663241) +description = Sandywoods township, MO +station = ('kcgi', 0.0045001047766559821) +zone = ('moz111', 0.0014658026205455249) + +[fips2920172088] +centroid = (0.64727058982646701, -1.5656524051569563) +description = Sylvania township, MO +station = ('kcgi', 0.0030823178343679799) +zone = ('moz111', 0.0019879408001371949) + +[fips2920174410] +centroid = (0.64584950784290829, -1.560380550884845) +description = Tywappity township, MO +station = ('kcir', 0.0027662791103554483) +zone = ('moz111', 0.0024551828440148855) + +[fips2920296] +centroid = (0.64210218121912133, -1.5723951007496011) +description = Dudley city, MO +station = ('kpof', 0.003171927175989167) +zone = ('moz110', 0.0023551506660781456) + +[fips29203] +centroid = (0.64842437463508296, -1.5952023827362547) +description = Shannon County, MO +station = ('kuno', 0.008417394998430118) +zone = ('moz098', 9.9153436255318428e-05) + +[fips2920303484] +centroid = (0.64522014211463896, -1.5955780474044539) +description = Bartlett township, MO +station = ('kuno', 0.0068612317399181794) +zone = ('moz098', 0.003309862073972286) + +[fips2920305752] +centroid = (0.6454299655973138, -1.5969234693649388) +description = Birch Tree township, MO +station = ('kuno', 0.0058724604358760275) +zone = ('moz098', 0.0033685338899841432) + +[fips2920314] +centroid = (0.64723830123530512, -1.6478130466563037) +description = Duenweg city, MO +station = ('kjln', 0.0016736361277128395) +zone = ('moz088', 0.0023141822237747059) + +[fips2920319000] +centroid = (0.64720170168089086, -1.5957952187232796) +description = Delaware township, MO +station = ('kuno', 0.0073842524000561306) +zone = ('moz098', 0.001389761634885783) + +[fips2920322294] +centroid = (0.64906428215203404, -1.593477421476631) +description = Eminence township, MO +station = ('kuno', 0.0099187608639632243) +zone = ('moz098', 0.0015063478099504467) + +[fips2920349628] +centroid = (0.64596469957353986, -1.598606961601535) +description = Montier township, MO +station = ('kuno', 0.0048222799648691469) +zone = ('moz098', 0.0037067907244271786) + +[fips2920349772] +centroid = (0.65178586132113148, -1.5926060833008653) +description = Moore township, MO +station = ('kuno', 0.012113863990512123) +zone = ('moz098', 0.0038816312701941027) + +[fips2920352274] +centroid = (0.65182596898734224, -1.5959562777066536) +description = Newton township, MO +station = ('kuno', 0.010303557781717709) +zone = ('moz098', 0.0033558307345601564) + +[fips2920369734] +centroid = (0.64449610972774174, -1.5985024861925106) +description = Spring Creek township, MO +station = ('kuno', 0.0044278607335327099) +zone = ('moz098', 0.0047922944976688401) + +[fips2920370144] +centroid = (0.64950756087545558, -1.598437891556894) +description = Spring Valley township, MO +station = ('kuno', 0.0072610483864232371) +zone = ('moz098', 0.0027330274739130718) + +[fips2920380530] +centroid = (0.64591912902677029, -1.5932867093492658) +description = Winona township, MO +station = ('kuno', 0.0088032741799021243) +zone = ('moz098', 0.0030309283819720161) + +[fips29205] +centroid = (0.69459795011451142, -1.6072513504938599) +description = Shelby County, MO +station = ('kirk', 0.0081216565245833573) +zone = ('moz026', 0.00016257792621510232) + +[fips2920505122] +centroid = (0.69640239366827072, -1.606390170134341) +description = Bethel township, MO +station = ('kirk', 0.0076603207639159097) +zone = ('moz026', 0.0018675824041166585) + +[fips2920505968] +centroid = (0.69503550415798643, -1.6068962632575419) +description = Black Creek township, MO +station = ('kirk', 0.0080592863564550102) +zone = ('moz026', 0.00044668799369556325) + +[fips2920512] +centroid = (0.64701208911095409, -1.6485921092745162) +description = Duquesne village, MO +station = ('kjln', 0.0015000649650477225) +zone = ('moz088', 0.0028253421257865281) + +[fips2920514518] +centroid = (0.69469521731372508, -1.6098901137899502) +description = Clay township, MO +station = ('kirk', 0.006638076029143459) +zone = ('moz026', 0.0021917641017228039) + +[fips2920536134] +centroid = (0.69340143964580681, -1.6040937182644444) +description = Jackson township, MO +station = ('kirk', 0.010762889946430126) +zone = ('moz026', 0.0025635056897461458) + +[fips2920536985] +centroid = (0.69238084091241048, -1.6098777219522611) +description = Jefferson township, MO +station = ('kirk', 0.0085742649859832411) +zone = ('moz026', 0.0031143582659419727) + +[fips2920541528] +centroid = (0.69322674964097453, -1.6082279494768135) +description = Lentner township, MO +station = ('kirk', 0.0085832100107635072) +zone = ('moz026', 0.0016514591370222808) + +[fips2920553264] +centroid = (0.6947357613122489, -1.6034476671885263) +description = North River township, MO +station = ('kirk', 0.010440907879628524) +zone = ('moz026', 0.002762945813765363) + +[fips2920565666] +centroid = (0.69314353234223947, -1.6064137146259505) +description = Salt River township, MO +station = ('kirk', 0.0095826830880532208) +zone = ('moz026', 0.0015364578264909379) + +[fips2920566] +centroid = (0.65014965005397185, -1.5647875945125931) +description = Dutchtown village, MO +station = ('kcgi', 0.0010511724322473796) +zone = ('moz087', 0.0023565859786864401) + +[fips2920572520] +centroid = (0.69645239735134035, -1.6092964051382994) +description = Taylor township, MO +station = ('kirk', 0.0057352854843611889) +zone = ('moz026', 0.0025343260064109741) + +[fips2920573222] +centroid = (0.69617487254698074, -1.6039874975261681) +description = Tiger Fork township, MO +station = ('kirk', 0.0094257990873375507) +zone = ('moz026', 0.0028221174651580907) + +[fips2920656] +centroid = (0.63791035414143638, -1.6360971226265637) +description = Eagle Rock CDP, MO +station = ('krog', 0.0059600207629218419) +zone = ('moz102', 0.0030556693398104537) + +[fips2920674] +centroid = (0.7063124953341422, -1.6403645050075673) +description = Eagleville town, MO +station = ('klwd', 0.003090869602176811) +zone = ('moz005', 0.0019917820362990797) + +[fips29207] +centroid = (0.64324856583170875, -1.569779410706222) +description = Stoddard County, MO +station = ('kpof', 0.0054633038871493783) +zone = ('moz110', 3.7238660714534541e-05) + +[fips2920711980] +centroid = (0.64377575998556613, -1.5697547317505989) +description = Castor township, MO +station = ('kpof', 0.0056529243807260706) +zone = ('moz110', 0.00052901221652430764) + +[fips2920720260] +centroid = (0.64382923687384719, -1.5732842063771519) +description = Duck Creek township, MO +station = ('kpof', 0.0032331869255065372) +zone = ('moz110', 0.002826569771816289) + +[fips2920721592] +centroid = (0.64042200510810388, -1.5676175760815318) +description = Elk township, MO +station = ('kpof', 0.0070931860065411908) +zone = ('moz114', 0.0029024025726143454) + +[fips2920742356] +centroid = (0.64085250802140081, -1.5711889386101328) +description = Liberty township, MO +station = ('kpof', 0.0042005108847322564) +zone = ('moz110', 0.0026341408386344059) + +[fips2920752040] +centroid = (0.64527979746847219, -1.5713025071845601) +description = New Lisbon township, MO +station = ('kpof', 0.0053807318878285378) +zone = ('moz110', 0.0023483162982140017) + +[fips2920757548] +centroid = (0.64631901886498722, -1.5681072980163488) +description = Pike township, MO +station = ('kcgi', 0.0050772335148969528) +zone = ('moz110', 0.003362539771478421) + +[fips2920761616] +centroid = (0.64289990140703779, -1.567091411671933) +description = Richland township, MO +station = ('kpof', 0.0074889224231848338) +zone = ('moz110', 0.0022161089608123004) + +[fips29209] +centroid = (0.64137109770204592, -1.6313205404362905) +description = Stone County, MO +station = ('kbbg', 0.0053405727455602707) +zone = ('moz103', 0.00016700705427732254) + +[fips2920900892] +centroid = (0.63915294130239386, -1.6324166246598355) +description = Alpine township, MO +station = ('kbbg', 0.004896863278440633) +zone = ('moz103', 0.0024370187959248915) + +[fips2920911836] +centroid = (0.64501813770701322, -1.6298946762505815) +description = Cass township, MO +station = ('ksgf', 0.0048262725888957555) +zone = ('moz095', 0.0027589046679070534) + +[fips2920924478] +centroid = (0.6410585790461838, -1.632412383509753) +description = Flat Creek A township, MO +station = ('kbbg', 0.0057953858457005843) +zone = ('moz103', 0.0010823725816905467) + +[fips2920924482] +centroid = (0.64012739353036718, -1.6323199508725674) +description = Flat Creek B township, MO +station = ('kbbg', 0.0052237681887839088) +zone = ('moz103', 0.0015625132206772076) + +[fips2920928558] +centroid = (0.64502405437317745, -1.6330400737219404) +description = Grant township, MO +station = ('ksgf', 0.0054518381913989935) +zone = ('moz103', 0.0039804298192968619) + +[fips2920933940] +centroid = (0.64435466824516008, -1.6313204880764129) +description = Hurley township, MO +station = ('ksgf', 0.005614117488680531) +zone = ('moz103', 0.0030048588995168859) + +[fips2920942878] +centroid = (0.64314691785607248, -1.6324306222004366) +description = Lincoln township, MO +station = ('ksgf', 0.0070077379943491828) +zone = ('moz103', 0.0020799211723429938) + +[fips2920945182] +centroid = (0.64303930085439454, -1.6299320786564515) +description = McKinley township, MO +station = ('kbbg', 0.0060718186295538332) +zone = ('moz103', 0.0019322070402474406) + +[fips2920957458] +centroid = (0.6439150372598752, -1.6329461924614757) +description = Pierce township, MO +station = ('khfj', 0.0064086007649077808) +zone = ('moz103', 0.0029512851442327548) + +[fips2920957749] +centroid = (0.63791515379687946, -1.6296514297127307) +description = Pine A township, MO +station = ('kbbg', 0.0024387192914165439) +zone = ('moz103', 0.0036336974966613002) + +[fips2920957751] +centroid = (0.63840990227994221, -1.6309825923332268) +description = Pine B township, MO +station = ('kbbg', 0.003582996522078918) +zone = ('moz103', 0.00294635481160167) + +[fips2920958988] +centroid = (0.64391955766263786, -1.629697017712793) +description = Ponce de Leon township, MO +station = ('ksgf', 0.005925903255906498) +zone = ('moz103', 0.0028044992008756718) + +[fips2920963761] +centroid = (0.64122211639709559, -1.6298104641141724) +description = Ruth A township, MO +station = ('kbbg', 0.0044487790713694589) +zone = ('moz103', 0.0010522316959777598) + +[fips2920963763] +centroid = (0.63962854352356213, -1.6305598212285162) +description = Ruth B City township, MO +station = ('kbbg', 0.0037568312549749105) +zone = ('moz103', 0.0017819665066562199) + +[fips2920963764] +centroid = (0.6394169747116355, -1.6309216977956249) +description = Ruth B Rural township, MO +station = ('kbbg', 0.0038985961281718298) +zone = ('moz103', 0.0019434936545977919) + +[fips2920963766] +centroid = (0.63960047862919012, -1.6295822623144742) +description = Ruth C township, MO +station = ('kbbg', 0.0031117558663950168) +zone = ('moz103', 0.0021407833700134065) + +[fips2920963770] +centroid = (0.63961358605187268, -1.6291662456339691) +description = Ruth C Rural township, MO +station = ('kbbg', 0.0028763492046797469) +zone = ('moz103', 0.0023382232689445658) + +[fips2920971736] +centroid = (0.63959040807940615, -1.62884564610367) +description = Sunset Cove township, MO +station = ('kbbg', 0.0026840226256549028) +zone = ('moz103', 0.0025332233461425662) + +[fips2920975004] +centroid = (0.64528018144090771, -1.6314083304976661) +description = Union township, MO +station = ('ksgf', 0.0047309792168501634) +zone = ('moz103', 0.0039328838502282323) + +[fips2920977722] +centroid = (0.64230209123164461, -1.6314238290214236) +description = Washington township, MO +station = ('kbbg', 0.0060898803077249451) +zone = ('moz103', 0.000979822858531724) + +[fips2920979954] +centroid = (0.63785685979986273, -1.6324344793780834) +description = Williams township, MO +station = ('kbbg', 0.0046590285938226872) +zone = ('arz002', 0.0035879509668261902) + +[fips2920980] +centroid = (0.67488754544601148, -1.6446359365524357) +description = East Lynne city, MO +station = ('klxt', 0.0055275076130253155) +zone = ('moz043', 0.0017314331277581026) + +[fips2921034] +centroid = (0.69329427642973429, -1.6517768813738003) +description = Easton city, MO +station = ('kstj', 0.0037928621808950088) +zone = ('moz020', 0.0024903942099037085) + +[fips2921052] +centroid = (0.64191317951442284, -1.5600465297725983) +description = East Prairie city, MO +station = ('kcir', 0.0054873996551865548) +zone = ('moz112', 0.0015573478042630279) + +[fips29211] +centroid = (0.70178968401710917, -1.6250722791674432) +description = Sullivan County, MO +station = ('ktvk', 0.0086702031666770502) +zone = ('moz016', 3.0018255155835614e-05) + +[fips2921107678] +centroid = (0.70096163000679301, -1.6280498457779307) +description = Bowman township, MO +station = ('kcdj', 0.0072641645832654967) +zone = ('moz016', 0.0024060116287167479) + +[fips2921109280] +centroid = (0.70426988415065572, -1.6218968794862425) +description = Buchanan township, MO +station = ('ktvk', 0.0057419548999419114) +zone = ('moz007', 0.002510899799880761) + +[fips2921114536] +centroid = (0.70404265973533853, -1.6281744622865233) +description = Clay township, MO +station = ('ktvk', 0.0078697344233478895) +zone = ('moz016', 0.0032377280697102185) + +[fips2921120386] +centroid = (0.69968123901423751, -1.6263559513789927) +description = Duncan township, MO +station = ('kcdj', 0.0071551799366867041) +zone = ('moz016', 0.0023336967639750973) + +[fips2921136152] +centroid = (0.70370366443472365, -1.625116401090934) +description = Jackson township, MO +station = ('ktvk', 0.006898009848672405) +zone = ('moz016', 0.0018945856906921468) + +[fips2921142374] +centroid = (0.70258613011467175, -1.6280798479877727) +description = Liberty township, MO +station = ('kcdj', 0.0086481019950645586) +zone = ('moz016', 0.0024023071573954602) + +[fips2921150024] +centroid = (0.69951361759287589, -1.6219943735782589) +description = Morris township, MO +station = ('kirk', 0.0051326302855272971) +zone = ('moz016', 0.0033035224153512397) + +[fips2921156918] +centroid = (0.70258899245464501, -1.6221943534039525) +description = Penn township, MO +station = ('kirk', 0.005923216022506019) +zone = ('moz016', 0.0023529582833820366) + +[fips2921158430] +centroid = (0.69982594426252032, -1.6242931641893532) +description = Pleasant Hill township, MO +station = ('kirk', 0.0068776915835865957) +zone = ('moz016', 0.0020773432907571013) + +[fips2921158880] +centroid = (0.70172009773983213, -1.6250062882684255) +description = Polk township, MO +station = ('ktvk', 0.0087202637519105605) +zone = ('moz016', 0.00011529786262859181) + +[fips2921172538] +centroid = (0.69928611392487838, -1.6284033971245071) +description = Taylor township, MO +station = ('kcdj', 0.0057678928284724696) +zone = ('moz016', 0.0035685468871534537) + +[fips2921175022] +centroid = (0.70110317620912976, -1.6222291727225295) +description = Union township, MO +station = ('kirk', 0.0054359226027231554) +zone = ('moz016', 0.0023054868745191717) + +[fips2921214] +centroid = (0.65807648173092459, -1.603397035186926) +description = Edgar Springs city, MO +station = ('ktbn', 0.00369797663026821) +zone = ('moz071', 0.0031789371064946063) + +[fips2921250] +centroid = (0.68944320743520882, -1.6515874956966663) +description = Edgerton city, MO +station = ('kmci', 0.0037990374516852546) +zone = ('moz028', 0.0028839396445739635) + +[fips29213] +centroid = (0.63966015143631583, -1.6239035368871377) +description = Taney County, MO +station = ('kbbg', 0.003037373301490873) +zone = ('moz104', 8.8781843718883932e-05) + +[fips2921303808] +centroid = (0.64053358400718385, -1.6215256654076358) +description = Beaver township, MO +station = ('kbbg', 0.0050682342212256667) +zone = ('moz104', 0.0020401085224974126) + +[fips2921305446] +centroid = (0.63789714199899883, -1.6206021942471132) +description = Big Creek township, MO +station = ('kbbg', 0.0048676597988393418) +zone = ('moz104', 0.0032101463402156851) + +[fips2921307984] +centroid = (0.64020837680765974, -1.627758009273705) +description = Branson township, MO +station = ('kbbg', 0.0027862386396124614) +zone = ('moz103', 0.0029235639095743947) + +[fips2921312286] +centroid = (0.63817423047104538, -1.6236950224014022) +description = Cedar Creek township, MO +station = ('kbbg', 0.0024474757633173006) +zone = ('moz104', 0.0015773659275780799) + +[fips2921322] +centroid = (0.70106408083388505, -1.6087222092676858) +description = Edina city, MO +station = ('kirk', 0.0051688248141836318) +zone = ('moz018', 0.00077014895805155889) + +[fips2921336584] +centroid = (0.64174693690317031, -1.6268104002096271) +description = Jasper township, MO +station = ('kbbg', 0.0041802207533136165) +zone = ('moz104', 0.0030913488020516567) + +[fips2921340] +centroid = (0.69954714536780671, -1.6351963232930242) +description = Edinburg CDP, MO +station = ('kcdj', 0.0048302480322163447) +zone = ('moz015', 0.0017591838137093342) + +[fips2921354632] +centroid = (0.6380693885428782, -1.6276065496012169) +description = Oliver township, MO +station = ('kbbg', 0.00091927559928151525) +zone = ('moz104', 0.0034346422258431427) + +[fips2921366350] +centroid = (0.6383857294698021, -1.6257055718865296) +description = Scott township, MO +station = ('kbbg', 0.0011131767593532756) +zone = ('moz104', 0.0020036538268097116) + +[fips2921371818] +centroid = (0.64080678039499861, -1.6243209323777523) +description = Swan township, MO +station = ('kbbg', 0.0037375671407950213) +zone = ('moz104', 0.0011210178039687624) + +[fips2921376] +centroid = (0.67605223856245233, -1.5771781755646914) +description = Edmundson city, MO +station = ('kstl', 0.0002632085494013563) +zone = ('moz063', 0.0019533831200626295) + +[fips2921484] +centroid = (0.66935354272025038, -1.615767981284939) +description = Eldon city, MO +station = ('kaiz', 0.0043983430018501302) +zone = ('moz057', 0.0031327206811491378) + +[fips29215] +centroid = (0.65125664258534166, -1.6050829359778898) +description = Texas County, MO +station = ('kuno', 0.0075744062930203993) +zone = ('moz082', 5.3807564869605228e-05) + +[fips2921502] +centroid = (0.66095091683591156, -1.6409577773269051) +description = El Dorado Springs city, MO +station = ('kgly', 0.0097478463012705321) +zone = ('moz078', 0.0033999541710744026) + +[fips2921507246] +centroid = (0.65551524596020783, -1.605705250575981) +description = Boone township, MO +station = ('ktbn', 0.0035672703321251234) +zone = ('moz082', 0.0042334249993816906) + +[fips2921509766] +centroid = (0.64784579798804687, -1.6071006238596579) +description = Burdine township, MO +station = ('kuno', 0.0048160460598845574) +zone = ('moz082', 0.0038148343597888589) + +[fips2921511548] +centroid = (0.64904379198661566, -1.6004583370588803) +description = Carroll township, MO +station = ('kuno', 0.0059982851758033934) +zone = ('moz082', 0.0043299593262440782) + +[fips2921511854] +centroid = (0.6491987074110227, -1.6053429027699742) +description = Cass township, MO +station = ('kuno', 0.0055738885583108124) +zone = ('moz082', 0.0021203363252577162) + +[fips2921515022] +centroid = (0.64803148356716644, -1.6092778348350583) +description = Clinton township, MO +station = ('kuno', 0.0060419323798187015) +zone = ('moz092', 0.0044137748162318665) + +[fips2921517848] +centroid = (0.65089984492635655, -1.6005666696455516) +description = Current township, MO +station = ('kuno', 0.0076578695055606024) +zone = ('moz082', 0.0036241940004585224) + +[fips2921518334] +centroid = (0.64733658072548494, -1.60063744274672) +description = Date township, MO +station = ('kuno', 0.0044721784660645353) +zone = ('moz082', 0.0053277250074607067) + +[fips2921536170] +centroid = (0.65218735686226026, -1.6016366961033643) +description = Jackson township, MO +station = ('ktbn', 0.0081511632969636476) +zone = ('moz082', 0.0028851866313244082) + +[fips2921544660] +centroid = (0.65361540270953455, -1.6056197294426331) +description = Lynch township, MO +station = ('ktbn', 0.0053107975647750426) +zone = ('moz082', 0.0023432168868619966) + +[fips2921550042] +centroid = (0.65062371638539862, -1.6085961790423993) +description = Morris township, MO +station = ('kuno', 0.0078192363151242204) +zone = ('moz082', 0.0028693617114543442) + +[fips2921555820] +centroid = (0.64942476245574099, -1.6023509546464505) +description = Ozark township, MO +station = ('kuno', 0.0058318827949637728) +zone = ('moz082', 0.0028841493767311622) + +[fips2921557476] +centroid = (0.64739192511606558, -1.6029583641327296) +description = Pierce township, MO +station = ('kuno', 0.0037424177930000025) +zone = ('moz082', 0.0042710825892514513) + +[fips2921557890] +centroid = (0.65138858947679257, -1.605230939898459) +description = Piney township, MO +station = ('ktbn', 0.0075175305375847065) +zone = ('moz082', 0.00013457818234769822) + +[fips2921563290] +centroid = (0.65511226688921498, -1.6085980639979913) +description = Roubidoux township, MO +station = ('ktbn', 0.0034877697889136657) +zone = ('moz082', 0.0047120536710434698) + +[fips2921566026] +centroid = (0.64720398806221091, -1.605689647332468) +description = Sargent township, MO +station = ('kuno', 0.0037341703326814442) +zone = ('moz082', 0.0041331062623831284) + +[fips2921567520] +centroid = (0.65484441120891135, -1.602883454601234) +description = Sherrill township, MO +station = ('ktbn', 0.0055228044613557514) +zone = ('moz082', 0.0039465861648101353) + +[fips2921575292] +centroid = (0.65285752838844102, -1.6086146097193001) +description = Upton township, MO +station = ('ktbn', 0.0057321341641059344) +zone = ('moz082', 0.0031979301346126438) + +[fips29217] +centroid = (0.6606105427251876, -1.6465714892396046) +description = Vernon County, MO +station = ('kpts', 0.0088087165921039573) +zone = ('moz066', 1.3121925658538381e-05) + +[fips2921702872] +centroid = (0.6631114599169553, -1.6426925298836326) +description = Bacon township, MO +station = ('kgly', 0.0087894966588144552) +zone = ('moz066', 0.0039560293674331063) + +[fips2921702926] +centroid = (0.65968291768104514, -1.6449117509341282) +description = Badger township, MO +station = ('kpts', 0.0090200065835149921) +zone = ('moz066', 0.0016191238017565226) + +[fips2921706598] +centroid = (0.66303370549877905, -1.6444715614434826) +description = Blue Mound township, MO +station = ('kgly', 0.0098526781298218739) +zone = ('moz066', 0.0029357416503893461) + +[fips2921712646] +centroid = (0.65986036530609549, -1.6466498196164343) +description = Center township, MO +station = ('kpts', 0.0081872547481079434) +zone = ('moz066', 0.00075893058778448591) + +[fips2921714644] +centroid = (0.66128963288384612, -1.6427606849909229) +description = Clear Creek township, MO +station = ('kgly', 0.010226617129468915) +zone = ('moz066', 0.003093225554569748) + +[fips2921715166] +centroid = (0.6599634269984257, -1.6504434149186915) +description = Coal township, MO +station = ('kpts', 0.006742812120622034) +zone = ('moz066', 0.0031164617986859902) + +[fips2921718820] +centroid = (0.65988427631684787, -1.6485714620294651) +description = Deerfield township, MO +station = ('kpts', 0.0073138996346116666) +zone = ('moz066', 0.0017315354165382847) + +[fips2921719972] +centroid = (0.65802010759608509, -1.6444618050529642) +description = Dover township, MO +station = ('kpts', 0.0083027873415899168) +zone = ('moz066', 0.0030926691362891329) + +[fips2921720242] +centroid = (0.65799265356695125, -1.6462737011626296) +description = Drywood township, MO +station = ('kpts', 0.0071081906745974182) +zone = ('moz066', 0.0026364846634446318) + +[fips2921730592] +centroid = (0.65800837898351183, -1.6502408170991201) +description = Harrison township, MO +station = ('kpts', 0.0050279903928059583) +zone = ('moz066', 0.0038930074569199203) + +[fips2921731672] +centroid = (0.66335196628788029, -1.650285724420774) +description = Henry township, MO +station = ('kpts', 0.010023642506924085) +zone = ('moz066', 0.0039994016802482931) + +[fips2921739818] +centroid = (0.66149989269883391, -1.6483369595911672) +description = Lake township, MO +station = ('kpts', 0.0088173982223765848) +zone = ('moz066', 0.0016400465254991852) + +[fips2921747630] +centroid = (0.66318863837647846, -1.6483924785146731) +description = Metz township, MO +station = ('kpts', 0.010335668860606856) +zone = ('moz066', 0.002939725818988733) + +[fips2921749484] +centroid = (0.65802152131277925, -1.6426165033414155) +description = Montevallo township, MO +station = ('kpts', 0.0095756252397664332) +zone = ('moz078', 0.0035881467618167776) + +[fips2921750348] +centroid = (0.65815737774175453, -1.6483483391378904) +description = Moundville township, MO +station = ('kpts', 0.0060207639758110077) +zone = ('moz066', 0.0028273504976448552) + +[fips2921755226] +centroid = (0.66299963667178019, -1.6466003569854328) +description = Osage township, MO +station = ('kpts', 0.010787859001336858) +zone = ('moz066', 0.0023820716338267705) + +[fips2921761634] +centroid = (0.66136497874765476, -1.6503977221988744) +description = Richland township, MO +station = ('kpts', 0.0080843591794353062) +zone = ('moz066', 0.0031007241418035646) + +[fips2921776318] +centroid = (0.65957845972531326, -1.6427038047106004) +description = Virgil township, MO +station = ('kpts', 0.010322130616001096) +zone = ('moz078', 0.0038194082487931014) + +[fips2921776678] +centroid = (0.66119990550700103, -1.6447547760212038) +description = Walker township, MO +station = ('kpts', 0.010181448566572548) +zone = ('moz066', 0.0015581419736130201) + +[fips2921777740] +centroid = (0.66144924324394094, -1.6465965521676635) +description = Washington township, MO +station = ('kpts', 0.0094753316953313793) +zone = ('moz066', 0.0008316951109360735) + +[fips2921844] +centroid = (0.64988488360644425, -1.5877684843999424) +description = Ellington city, MO +station = ('kfam', 0.011900042243508414) +zone = ('moz099', 0.0022107518684921766) + +[fips2921898] +centroid = (0.67351344772591637, -1.5810644478502296) +description = Ellisville city, MO +station = ('ksus', 0.0013502664841882335) +zone = ('moz063', 0.0021740761266729807) + +[fips29219] +centroid = (0.67652281423537508, -1.5910300509863144) +description = Warren County, MO +station = ('kfyg', 0.0037870691160731378) +zone = ('moz060', 5.0761738976550691e-05) + +[fips2921908362] +centroid = (0.67674380782526256, -1.5944947913509111) +description = Bridgeport township, MO +station = ('kfyg', 0.0059369679131838805) +zone = ('moz051', 0.0032896307933522988) + +[fips2921910954] +centroid = (0.67929670092215466, -1.5916892443915001) +description = Camp Branch township, MO +station = ('kfyg', 0.0064408039852600135) +zone = ('moz060', 0.0027712715015514992) + +[fips2921913402] +centroid = (0.67466969344877759, -1.5897049272050303) +description = Charrette township, MO +station = ('kfyg', 0.0017048381179966769) +zone = ('moz060', 0.0021724610418781933) + +[fips2921916] +centroid = (0.64460266207857597, -1.5838406732782071) +description = Ellsinore city, MO +station = ('kpof', 0.0066795038784560898) +zone = ('moz107', 0.0030016084818080095) + +[fips2921931888] +centroid = (0.67684964459110353, -1.5885990691376741) +description = Hickory Grove township, MO +station = ('kfyg', 0.003388144693039297) +zone = ('moz060', 0.0019345713084247657) + +[fips2921953024] +centroid = (0.67784680355264548, -1.5916429582597373) +description = North Elkhorn township, MO +station = ('kfyg', 0.0051507569461303939) +zone = ('moz060', 0.0013567926209696421) + +[fips2921957692] +centroid = (0.67570898465846274, -1.5924977332609016) +description = Pinckney township, MO +station = ('kfyg', 0.0040670056307150681) +zone = ('moz060', 0.0014172692169081736) + +[fips2921968702] +centroid = (0.67698188818852711, -1.5904398329931675) +description = South Elkhorn township, MO +station = ('kfyg', 0.0039343293262942142) +zone = ('moz060', 0.00063186586138337263) + +[fips2921988] +centroid = (0.6973970044491048, -1.6170266778348925) +description = Elmer city, MO +station = ('kirk', 0.0028096457943213556) +zone = ('moz025', 0.0024885061657949829) + +[fips2922006] +centroid = (0.68955578117196248, -1.6433085438431239) +description = Elmira village, MO +station = ('kmkc', 0.0091086833593903675) +zone = ('moz022', 0.0034541962749948282) + +[fips2922024] +centroid = (0.70718723690194929, -1.6601015608537451) +description = Elmo city, MO +station = ('kicl', 0.0036254633383993296) +zone = ('iaz091', 0.0038695471962747609) + +[fips29221] +centroid = (0.66221832257883229, -1.5864529075696669) +description = Washington County, MO +station = ('kfam', 0.0070876693583819868) +zone = ('moz073', 0.00043318129830445117) + +[fips2922104078] +centroid = (0.65969909688321127, -1.5859827682290573) +description = Belgrade township, MO +station = ('kfam', 0.0060497890624251847) +zone = ('moz073', 0.0028593175644759435) + +[fips2922104294] +centroid = (0.65910421886096149, -1.5838083323271674) +description = Bellevue township, MO +station = ('kfam', 0.0043077788957473547) +zone = ('moz084', 0.0036627681056513066) + +[fips2922108254] +centroid = (0.66182773534552852, -1.584002098780724) +description = Breton township, MO +station = ('kfam', 0.0051972669231487717) +zone = ('moz073', 0.0018150628594830731) + +[fips2922114] +centroid = (0.68361642572742565, -1.5845479330509926) +description = Elsberry city, MO +station = ('kset', 0.0063181979179874979) +zone = ('ilz098', 0.001629365243446578) + +[fips2922116066] +centroid = (0.66016551867251405, -1.5831907126647642) +description = Concord township, MO +station = ('kfam', 0.0039497603405779539) +zone = ('moz074', 0.0032805404802060466) + +[fips2922130394] +centroid = (0.65989139726019597, -1.5885242468726413) +description = Harmony township, MO +station = ('kfam', 0.008066992776242855) +zone = ('moz073', 0.003276383891228724) + +[fips2922137484] +centroid = (0.6649022724492567, -1.5886218631377051) +description = Johnson township, MO +station = ('kfyg', 0.0085863760282472272) +zone = ('moz073', 0.0030687515564456207) + +[fips2922138882] +centroid = (0.66474704286558428, -1.5836332408966074) +description = Kingston township, MO +station = ('kfam', 0.0069715170335573886) +zone = ('moz073', 0.0029332513833105916) + +[fips2922142392] +centroid = (0.66331236476715238, -1.586722735472025) +description = Liberty township, MO +station = ('kfam', 0.0078019870419167069) +zone = ('moz073', 0.00089691563360058712) + +[fips2922161814] +centroid = (0.66553053862009715, -1.5856609295149895) +description = Richwoods township, MO +station = ('kfyg', 0.0081843316793481814) +zone = ('moz073', 0.0029948230482607576) + +[fips2922175040] +centroid = (0.66374175066972807, -1.5833189070983231) +description = Union township, MO +station = ('kfam', 0.0060311987891768634) +zone = ('moz073', 0.0024983791193704374) + +[fips2922176894] +centroid = (0.66167543791499939, -1.5880187122548011) +description = Walton township, MO +station = ('kfam', 0.0080346252618840961) +zone = ('moz073', 0.0017444489870085467) + +[fips2922250] +centroid = (0.63834012401644757, -1.6348637682573492) +description = Emerald Beach village, MO +station = ('krog', 0.0070290912162669734) +zone = ('moz102', 0.0032441671226203436) + +[fips2922276] +centroid = (0.64840533309294368, -1.5945103596878389) +description = Eminence city, MO +station = ('kuno', 0.0088716191446341977) +zone = ('moz098', 0.00059226869033240741) + +[fips29223] +centroid = (0.64775844425898443, -1.5788399908119779) +description = Wayne County, MO +station = ('kpof', 0.0063842429563660012) +zone = ('moz100', 2.262613140377316e-05) + +[fips2922304816] +centroid = (0.64888575242284763, -1.5828695197225198) +description = Benton township, MO +station = ('kpof', 0.0088879956529220941) +zone = ('moz100', 0.0034042103101115597) + +[fips2922306112] +centroid = (0.64534149485753023, -1.5783387846106827) +description = Black River township, MO +station = ('kpof', 0.0039830768937898949) +zone = ('moz100', 0.0024299743502260978) + +[fips2922312] +centroid = (0.6802474690321787, -1.6318000521949836) +description = Emma city, MO +station = ('kszl', 0.0042883156391250819) +zone = ('moz039', 0.0048682301870336727) + +[fips2922312304] +centroid = (0.65069707257385978, -1.5777648505394568) +description = Cedar Creek township, MO +station = ('kfam', 0.0084687464429043409) +zone = ('moz100', 0.0030834740212259295) + +[fips2922316966] +centroid = (0.64951389642064039, -1.5758283902810766) +description = Cowan township, MO +station = ('kpof', 0.0078244959434148973) +zone = ('moz100', 0.0029920976715993976) + +[fips2922336987] +centroid = (0.64638169363842624, -1.5740780170275441) +description = Jefferson township, MO +station = ('kpof', 0.0050147288746833305) +zone = ('moz110', 0.0046213794928120517) + +[fips2922343616] +centroid = (0.64920371650597597, -1.5808105373506496) +description = Logan township, MO +station = ('kpof', 0.0083165014247749205) +zone = ('moz100', 0.0021434741590878534) + +[fips2922344120] +centroid = (0.64629678337031682, -1.5760045463624806) +description = Lost Creek township, MO +station = ('kpof', 0.0046044521210764997) +zone = ('moz100', 0.0026881693595864195) + +[fips2922348404] +centroid = (0.64664895590678417, -1.5823965529485218) +description = Mill Spring township, MO +station = ('kpof', 0.0069340463244379072) +zone = ('moz100', 0.0030319235014175773) + +[fips2922364334] +centroid = (0.64775481397414025, -1.5786751619174195) +description = St. Francois township, MO +station = ('kpof', 0.0063404994212902599) +zone = ('moz100', 0.00013997650527139774) + +[fips2922379972] +centroid = (0.64541102877492973, -1.5806650641574957) +description = Williams township, MO +station = ('kpof', 0.0050833432306277501) +zone = ('moz100', 0.0027405906992981925) + +[fips2922474] +centroid = (0.68483881942893754, -1.5884805612814639) +description = Eolia village, MO +station = ('kppq', 0.0076739452921914062) +zone = ('moz036', 0.0028196336228449204) + +[fips29225] +centroid = (0.6506727775906721, -1.6209933923456552) +description = Webster County, MO +station = ('ksgf', 0.0070950680553179633) +zone = ('moz091', 3.0092967894991369e-06) + +[fips2922504782] +centroid = (0.6485109255126893, -1.6237063146816626) +description = Benton township, MO +station = ('ksgf', 0.0050697325026458247) +zone = ('moz091', 0.0030592338943075635) + +[fips2922518150] +centroid = (0.64914184458399282, -1.6222335360456597) +description = Dallas township, MO +station = ('ksgf', 0.0061035450844580501) +zone = ('moz091', 0.0018244584252061458) + +[fips2922519495] +centroid = (0.64896928388084796, -1.620693195714312) +description = Diggins township, MO +station = ('ksgf', 0.0073424981241182307) +zone = ('moz091', 0.0017214936305590192) + +[fips2922521024] +centroid = (0.65087068047455576, -1.6205519287646557) +description = East Ozark township, MO +station = ('ksgf', 0.0074682130847245846) +zone = ('moz091', 0.00040015243489683743) + +[fips2922524256] +centroid = (0.64775038083784031, -1.6191931724886857) +description = Finley township, MO +station = ('ksgf', 0.0087432058538843074) +zone = ('moz091', 0.0032556615753260797) + +[fips2922528576] +centroid = (0.65156207520444087, -1.6234647785664791) +description = Grant township, MO +station = ('ksgf', 0.0053604696433386442) +zone = ('moz091', 0.0021591437475421693) + +[fips2922529248] +centroid = (0.64759340592491588, -1.6218410289501786) +description = Green Hill township, MO +station = ('ksgf', 0.0067647696075903933) +zone = ('moz091', 0.0031547071769666003) + +[fips2922531312] +centroid = (0.64955194459833387, -1.6183206998489059) +description = Hazelwood township, MO +station = ('ksgf', 0.0091823494899992489) +zone = ('moz091', 0.0024032607476575825) + +[fips2922532122] +centroid = (0.65098147397547235, -1.618836357376408) +description = High Prairie township, MO +station = ('ksgf', 0.0088358212381540197) +zone = ('moz091', 0.0017408864207361398) + +[fips2922536188] +centroid = (0.65343022327589795, -1.6236260644426559) +description = Jackson township, MO +station = ('ksgf', 0.0061091085104289181) +zone = ('moz091', 0.0034617187398474553) + +[fips2922546546] +centroid = (0.65180708452483582, -1.6214763598562669) +description = Marshfield township, MO +station = ('ksgf', 0.0069424937647848137) +zone = ('moz091', 0.001196798883729567) + +[fips2922552436] +centroid = (0.65255874547379222, -1.619627584939507) +description = Niangua township, MO +station = ('ksgf', 0.0085690701465409129) +zone = ('moz091', 0.0021735790190681461) + +[fips2922575058] +centroid = (0.65347507823767415, -1.6190486941332054) +description = Union township, MO +station = ('kh21', 0.0092838511530363241) +zone = ('moz091', 0.0031976498589867367) + +[fips2922577758] +centroid = (0.65312880491407843, -1.6220751823226263) +description = Washington township, MO +station = ('ksgf', 0.006998365432605444) +zone = ('moz091', 0.0026014717689836196) + +[fips2922578862] +centroid = (0.65049077465627414, -1.6228119905196481) +description = West Ozark township, MO +station = ('ksgf', 0.0056366473679799771) +zone = ('moz091', 0.0014612053306043212) + +[fips2922600] +centroid = (0.6424872008521112, -1.5683986981882621) +description = Essex city, MO +station = ('kpof', 0.006394996347257432) +zone = ('moz110', 0.0013734958505403749) + +[fips2922672] +centroid = (0.69627782951955586, -1.6186307401372304) +description = Ethel town, MO +station = ('kirk', 0.0044109242668554224) +zone = ('moz025', 0.0026028334649117538) + +[fips29227] +centroid = (0.70651769369429929, -1.647924677915261) +description = Worth County, MO +station = ('klwd', 0.0073826597165719656) +zone = ('moz003', 4.7370175046136923e-05) + +[fips2922700694] +centroid = (0.70550693861788427, -1.6455713108584569) +description = Allen township, MO +station = ('klwd', 0.0062865890015340814) +zone = ('moz003', 0.0020804444673915186) + +[fips2922724616] +centroid = (0.70714280081919345, -1.6476317244003138) +description = Fletchall township, MO +station = ('kcsq', 0.0087458052227978866) +zone = ('moz003', 0.00070067419735984719) + +[fips2922729188] +centroid = (0.70562413747715569, -1.6501038436594238) +description = Greene township, MO +station = ('kicl', 0.0082001877927521949) +zone = ('moz003', 0.0018362706161189726) + +[fips2922747828] +centroid = (0.70561033192277245, -1.6479930250087693) +description = Middlefork township, MO +station = ('klwd', 0.0078053252876512406) +zone = ('moz003', 0.00088331261145557685) + +[fips2922768348] +centroid = (0.70704752329532705, -1.6458427444637271) +description = Smith township, MO +station = ('klwd', 0.0057157342845496175) +zone = ('moz003', 0.0017158714023001612) + +[fips2922775076] +centroid = (0.70721903680092058, -1.6503261636995428) +description = Union township, MO +station = ('kicl', 0.007181271326911689) +zone = ('moz003', 0.0019271148356667619) + +[fips2922834] +centroid = (0.67193713615868511, -1.5821037914197922) +description = Eureka city, MO +station = ('ksus', 0.00263278016137727) +zone = ('moz063', 0.0037306663916265169) + +[fips29229] +centroid = (0.65044295263476948, -1.6140806667772811) +description = Wright County, MO +station = ('ktbn', 0.0094395885060568219) +zone = ('moz092', 0.000162869049218944) + +[fips2922907264] +centroid = (0.65099819422970651, -1.61639001663035) +description = Boone township, MO +station = ('ktbn', 0.010065541182008505) +zone = ('moz092', 0.002059182436926313) + +[fips2922909154] +centroid = (0.6512240398349145, -1.6138678587815853) +description = Brush Creek township, MO +station = ('ktbn', 0.0086840955699636936) +zone = ('moz092', 0.00073818411459131074) + +[fips2922914086] +centroid = (0.64748908759552415, -1.6138104199959025) +description = Clark township, MO +station = ('kuno', 0.0087190337292543472) +zone = ('moz096', 0.0029327728013298967) + +[fips2922921628] +centroid = (0.65311864709783185, -1.6138358145365188) +description = Elk Creek township, MO +station = ('ktbn', 0.0071343377327659496) +zone = ('moz092', 0.0026329598501649712) + +[fips2922926614] +centroid = (0.64937407809426317, -1.6161061737340983) +description = Gasconade township, MO +station = ('ktbn', 0.011210114178136495) +zone = ('moz092', 0.0020900129835502157) + +[fips2922930664] +centroid = (0.64909191071409322, -1.6138002447263633) +description = Hart township, MO +station = ('kuno', 0.0095089551204130054) +zone = ('moz092', 0.0013956133191793943) + +[fips2922949556] +centroid = (0.65282246472376848, -1.6114563199008123) +description = Montgomery township, MO +station = ('ktbn', 0.0063576640137466764) +zone = ('moz092', 0.0030302981631360236) + +[fips2922950420] +centroid = (0.64761649663091969, -1.6114276266879095) +description = Mountain Grove township, MO +station = ('kuno', 0.0071174115189685484) +zone = ('moz092', 0.0034728857111468825) + +[fips2922951] +centroid = (0.6554051854975772, -1.6161239411858834) +description = Evergreen village, MO +station = ('ktbn', 0.0071482570746975805) +zone = ('moz081', 0.0018585068475554221) + +[fips2922958556] +centroid = (0.64773757012113065, -1.616220841865954) +description = Pleasant Valley township, MO +station = ('kuno', 0.0105801703776806) +zone = ('moz092', 0.003319828703760797) + +[fips2922975094] +centroid = (0.65301096028298389, -1.6163745006532997) +description = Union township, MO +station = ('ktbn', 0.0086401186129070918) +zone = ('moz092', 0.0032091067301174944) + +[fips2922975634] +centroid = (0.65097028641496701, -1.6115400258917381) +description = Van Buren township, MO +station = ('ktbn', 0.0080944718468660068) +zone = ('moz092', 0.0019262677807094493) + +[fips2922980728] +centroid = (0.64929698690120252, -1.6114523754567029) +description = Wood township, MO +station = ('kuno', 0.0081679827481495135) +zone = ('moz092', 0.0022713982480775702) + +[fips2922996] +centroid = (0.65176140925831105, -1.6354207900881232) +description = Everton city, MO +station = ('ksgf', 0.004831434858396039) +zone = ('moz089', 0.0025675382601667686) + +[fips2923032] +centroid = (0.69828439965398881, -1.6007231907728705) +description = Ewing city, MO +station = ('keok', 0.0088275664023694557) +zone = ('moz019', 0.0015417992174490169) + +[fips2923050] +centroid = (0.69169853934792846, -1.6139444612824556) +description = Excello CDP, MO +station = ('kirk', 0.0082446203470376601) +zone = ('moz033', 0.0033539722302334597) + +[fips2923077] +centroid = (0.68748431969594037, -1.6442429931246416) +description = Excelsior Estates village, MO +station = ('kmkc', 0.0071267966802472721) +zone = ('moz029', 0.0031870215156410294) + +[fips2923086] +centroid = (0.68661647217867883, -1.6447684768558322) +description = Excelsior Springs city, MO +station = ('kmkc', 0.006256095068901406) +zone = ('moz029', 0.0025180968876899854) + +[fips2923122] +centroid = (0.64002464599730224, -1.6395603096481259) +description = Exeter city, MO +station = ('khfj', 0.0041555772752579923) +zone = ('moz102', 0.0016946543487184901) + +[fips2923248] +centroid = (0.63989205333402832, -1.5813466850435696) +description = Fairdealing CDP, MO +station = ('kpof', 0.0044139057397788971) +zone = ('moz109', 0.0029228857555313099) + +[fips2923266] +centroid = (0.70405714596813018, -1.6649051607408392) +description = Fairfax city, MO +station = ('kfnb', 0.0051469069056825165) +zone = ('moz001', 0.0016581593234848366) + +[fips2923338] +centroid = (0.65246180988713631, -1.6258118275313911) +description = Fair Grove city, MO +station = ('ksgf', 0.0041413386465933098) +zone = ('moz090', 0.0034232597090627899) + +[fips2923428] +centroid = (0.6568298104995175, -1.6332298957313873) +description = Fair Play city, MO +station = ('ksgf', 0.007484330954073257) +zone = ('moz079', 0.0024604363604061709) + +[fips2923518] +centroid = (0.6425826703621953, -1.6421218072182302) +description = Fairview town, MO +station = ('khfj', 0.0017178153722326992) +zone = ('moz093', 0.0038481713514462762) + +[fips2923662] +centroid = (0.68546472940528769, -1.5983150727374313) +description = Farber city, MO +station = ('kcou', 0.011790926912295416) +zone = ('moz035', 0.0044831665957609972) + +[fips2923698] +centroid = (0.68571829083901747, -1.6550682058239188) +description = Farley village, MO +station = ('kmci', 0.0012992744693025862) +zone = ('moz028', 0.001762280741584563) + +[fips2923752] +centroid = (0.6594272793055056, -1.5782939121956139) +description = Farmington city, MO +station = ('kfam', 0.00027943768292696232) +zone = ('moz074', 0.00077185670722684405) + +[fips2923842] +centroid = (0.68324917354622106, -1.6176700934636403) +description = Fayette city, MO +station = ('kver', 0.0036187788233271018) +zone = ('moz040', 0.00015885271904854005) + +[fips2923950] +centroid = (0.67245021059889398, -1.5786597506601243) +description = Fenton city, MO +station = ('ksus', 0.003449139618955978) +zone = ('moz063', 0.0019599318138640732) + +[fips2923986] +centroid = (0.67629464734226186, -1.575959481961194) +description = Ferguson city, MO +station = ('kstl', 0.00096446226347413511) +zone = ('moz064', 0.002090709018821578) + +[fips2924058] +centroid = (0.68616300073242564, -1.65222284790427) +description = Ferrelview village, MO +station = ('kmci', 0.00095055756307603479) +zone = ('moz028', 0.0018617257587789703) + +[fips2924094] +centroid = (0.66706290279676306, -1.577945247770943) +description = Festus city, MO +station = ('kcps', 0.0070173007075080354) +zone = ('moz065', 0.0018981839702615312) + +[fips2924120] +centroid = (0.64719810630263164, -1.6460124079203133) +description = Fidelity town, MO +station = ('kjln', 0.0029059945957609639) +zone = ('moz088', 0.0021688783019161435) + +[fips2924184] +centroid = (0.69857330400507145, -1.6575940986772826) +description = Fillmore city, MO +station = ('kstj', 0.0045769523733692925) +zone = ('moz012', 0.0024021092964698703) + +[fips2924328] +centroid = (0.6419718225772898, -1.5744181293388801) +description = Fisk city, MO +station = ('kpof', 0.0015500887628672362) +zone = ('moz109', 0.0030109149414387503) + +[fips2924562] +centroid = (0.68409085857799523, -1.6415180105635028) +description = Fleming city, MO +station = ('klxt', 0.0058414127318871323) +zone = ('moz030', 0.0028639737059872159) + +[fips2924580] +centroid = (0.65980208876237134, -1.631908053169097) +description = Flemington village, MO +station = ('kgly', 0.010011375672935249) +zone = ('moz068', 0.0034513772959468524) + +[fips2924688] +centroid = (0.67829982121329313, -1.5859526612994601) +description = Flint Hill city, MO +station = ('ksus', 0.0047695376186622914) +zone = ('moz061', 0.0029900109548650668) + +[fips2924706] +centroid = (0.67574500825422379, -1.5754198087031845) +description = Flordell Hills city, MO +station = ('kstl', 0.0014981402352322363) +zone = ('moz064', 0.001448705738483347) + +[fips2924760] +centroid = (0.68927684265090872, -1.6020418917425074) +description = Florida village, MO +station = ('kuin', 0.011043266067340515) +zone = ('moz035', 0.0036630857613565728) + +[fips2924778] +centroid = (0.67718295011835694, -1.576504897352442) +description = Florissant city, MO +station = ('kstl', 0.0010214575259172045) +zone = ('moz064', 0.0030716035278426095) + +[fips2924886] +centroid = (0.6814761808255827, -1.5837361978691826) +description = Foley city, MO +station = ('kset', 0.0046165074184503644) +zone = ('ilz098', 0.0023763624315898267) + +[fips2925012] +centroid = (0.64846966592917221, -1.6221427789245559) +description = Fordland city, MO +station = ('ksgf', 0.0062888987247810696) +zone = ('moz091', 0.0023881909405365415) + +[fips2925066] +centroid = (0.69783228956455212, -1.6613513911310984) +description = Forest City city, MO +station = ('kstj', 0.0052426634571243356) +zone = ('moz011', 0.0019825592056221825) + +[fips2925120] +centroid = (0.67740881317685742, -1.5876985490568152) +description = Foristell city, MO +station = ('kfyg', 0.0039436152497328856) +zone = ('moz060', 0.0027469643419583221) + +[fips2925192] +centroid = (0.64052810367333257, -1.6251829854018973) +description = Forsyth city, MO +station = ('kbbg', 0.0031840613824992126) +zone = ('moz104', 0.0013110277489793911) + +[fips2925228] +centroid = (0.69903571153709487, -1.6636067404971104) +description = Fortescue town, MO +station = ('kfnb', 0.0035911674354489093) +zone = ('moz011', 0.0015612356392579901) + +[fips2925264] +centroid = (0.6580861159483955, -1.608457338100403) +description = Fort Leonard Wood CDP, MO +station = ('ktbn', 0.0005909954494463099) +zone = ('moz070', 0.0021882865901446109) + +[fips2925372] +centroid = (0.66613452726104216, -1.6494806563967066) +description = Foster village, MO +station = ('kojc', 0.012034222165422227) +zone = ('moz053', 0.0027975183019342902) + +[fips2925411] +centroid = (0.68013571560017339, -1.5856186227339211) +description = Fountain N' Lakes village, MO +station = ('ksus', 0.0061905943980583187) +zone = ('moz052', 0.0021649607563817988) + +[fips2925516] +centroid = (0.66083336891078981, -1.5815201358646329) +description = Frankclay CDP, MO +station = ('kfam', 0.0030098982073714729) +zone = ('moz074', 0.0021557717604217619) + +[fips2925552] +centroid = (0.68928727971983561, -1.593852300746667) +description = Frankford city, MO +station = ('kppq', 0.0077312621879402667) +zone = ('moz035', 0.0027720037886959504) + +[fips2925624] +centroid = (0.68087589228265177, -1.618878018385653) +description = Franklin city, MO +station = ('kver', 0.0016066858528528171) +zone = ('moz040', 0.0024287909581225029) + +[fips2925768] +centroid = (0.65559715426200404, -1.5760935407010395) +description = Fredericktown city, MO +station = ('kfam', 0.0039823364919566468) +zone = ('moz085', 0.0015883943054983204) + +[fips2925822] +centroid = (0.66874217133656944, -1.6043473320580517) +description = Freeburg village, MO +station = ('kvih', 0.0038381181858221092) +zone = ('moz049', 0.0026510858189605505) + +[fips2925894] +centroid = (0.6740981330253345, -1.6494486819648102) +description = Freeman city, MO +station = ('kojc', 0.0047981545269577758) +zone = ('moz043', 0.0021095683018517238) + +[fips2925912] +centroid = (0.64614439867332518, -1.6388220702811174) +description = Freistatt village, MO +station = ('khfj', 0.0027202784988949145) +zone = ('moz094', 0.0017364492733947412) + +[fips2925948] +centroid = (0.64493940590445575, -1.5910827250231396) +description = Fremont CDP, MO +station = ('k4m9', 0.012014591827752037) +zone = ('moz107', 0.0027966660223199802) + +[fips2925957] +centroid = (0.64689993425322101, -1.6275712241371563) +description = Fremont Hills city, MO +station = ('ksgf', 0.0034580894635030937) +zone = ('moz095', 0.0018836809368486288) + +[fips2926092] +centroid = (0.65689929205703945, -1.5641604278991816) +description = Frohna city, MO +station = ('kmdh', 0.0057046835227406514) +zone = ('moz076', 0.0030761702406402851) + +[fips2926110] +centroid = (0.67421931123530043, -1.5781078426440587) +description = Frontenac city, MO +station = ('kstl', 0.0022133626302680231) +zone = ('moz063', 0.0003783876040961957) + +[fips2926182] +centroid = (0.67815022904310462, -1.6048442447493869) +description = Fulton city, MO +station = ('kcou', 0.0036763339453710184) +zone = ('moz050', 0.0004808708770442095) + +[fips2926218] +centroid = (0.63890007800036486, -1.6131141557974042) +description = Gainesville city, MO +station = ('kbpk', 0.0042233969551619763) +zone = ('moz105', 0.00080126840171678836) + +[fips2926254] +centroid = (0.64234771413829184, -1.6313505077395474) +description = Galena city, MO +station = ('kbbg', 0.006088749976141168) +zone = ('moz103', 0.0010113485518024382) + +[fips2926308] +centroid = (0.69656704802990399, -1.6399813703301696) +description = Gallatin city, MO +station = ('kcdj', 0.0053555302933445004) +zone = ('moz014', 0.00092459871329526996) + +[fips2926362] +centroid = (0.70035277189723477, -1.6299266332291853) +description = Galt city, MO +station = ('kcdj', 0.0060180858004804565) +zone = ('moz015', 0.0023786965746014571) + +[fips2926434] +centroid = (0.67303618744195859, -1.6440158036159096) +description = Garden City city, MO +station = ('krcm', 0.0065920156518703126) +zone = ('moz043', 0.0026333420314701172) + +[fips2926578] +centroid = (0.67492341196214001, -1.5980223286619943) +description = Gasconade city, MO +station = ('kfyg', 0.0078526647184027111) +zone = ('moz059', 0.0040656501224897289) + +[fips2926776] +centroid = (0.70393610738450441, -1.6479967425600761) +description = Gentry village, MO +station = ('klwd', 0.0087066199205271689) +zone = ('moz004', 0.0021100744537639153) + +[fips2926866] +centroid = (0.67019512303226958, -1.5940141102216192) +description = Gerald city, MO +station = ('kfyg', 0.0056497249664281277) +zone = ('moz059', 0.0025347419326161385) + +[fips2926902] +centroid = (0.66244184689613528, -1.6332228795077943) +description = Gerster town, MO +station = ('kgly', 0.0072070448232539252) +zone = ('moz067', 0.0030911823828433764) + +[fips2926920] +centroid = (0.69985987346317913, -1.6129743025644419) +description = Gibbs village, MO +station = ('kirk', 0.0017807712913685415) +zone = ('moz017', 0.0029302744474319705) + +[fips2926974] +centroid = (0.6360764319766109, -1.5691582829320225) +description = Gideon city, MO +station = ('kpof', 0.0080435990949741694) +zone = ('moz113', 0.00397714561016131) + +[fips2927028] +centroid = (0.684740452672295, -1.6232282340929562) +description = Gilliam city, MO +station = ('kver', 0.0067368507500063079) +zone = ('moz039', 0.003161584087992983) + +[fips2927064] +centroid = (0.70042179966915119, -1.6384088984872927) +description = Gilman City city, MO +station = ('kcdj', 0.0067263563499927919) +zone = ('moz014', 0.0033285721390116491) + +[fips2927100] +centroid = (0.63861445486827595, -1.648631710795244) +description = Ginger Blue village, MO +station = ('kgmj', 0.0039182116836130234) +zone = ('moz101', 0.0016991494581521378) + +[fips2927190] +centroid = (0.68439561051868603, -1.6503651194484472) +description = Gladstone city, MO +station = ('kmkc', 0.0017703648446616971) +zone = ('moz029', 0.0025263617301358745) + +[fips2927208] +centroid = (0.68466035951292115, -1.620362455821059) +description = Glasgow city, MO +station = ('kver', 0.0054760179155179953) +zone = ('moz040', 0.0024547774321020512) + +[fips2927226] +centroid = (0.67645205858749924, -1.574254417455043) +description = Glasgow Village CDP, MO +station = ('kstl', 0.0022979506368395733) +zone = ('moz064', 0.0022237446705321608) + +[fips2927262] +centroid = (0.68451336788331807, -1.6484889777690157) +description = Glenaire city, MO +station = ('kmkc', 0.0026972879980460742) +zone = ('moz029', 0.0016375667579595747) + +[fips2927280] +centroid = (0.6513043947936763, -1.57128734027336) +description = Glen Allen town, MO +station = ('kcgi', 0.0063476835647956562) +zone = ('moz086', 9.6019157376162547e-05) + +[fips2927334] +centroid = (0.67358408120074453, -1.5774731885681559) +description = Glendale city, MO +station = ('kstl', 0.0027395732065031708) +zone = ('moz063', 0.0011650469264361293) + +[fips2927370] +centroid = (0.67545713364739979, -1.5759675104757531) +description = Glen Echo Park village, MO +station = ('kstl', 0.0012862470178116898) +zone = ('moz064', 0.0013331032113513494) + +[fips2927514] +centroid = (0.70726808055290169, -1.6157543153568961) +description = Glenwood village, MO +station = ('ktvk', 0.0050899794019685684) +zone = ('moz008', 0.0011821684074452643) + +[fips2927658] +centroid = (0.63751564793109783, -1.6346738589814398) +description = Golden CDP, MO +station = ('krog', 0.0067824667779191892) +zone = ('arz002', 0.0036680394245488168) + +[fips2927676] +centroid = (0.65264114246777871, -1.6422684323286905) +description = Golden City city, MO +station = ('kjln', 0.0070502598732987178) +zone = ('moz089', 0.0034585326368554415) + +[fips2927874] +centroid = (0.64121338975083564, -1.6477508082151773) +description = Goodman town, MO +station = ('kgmj', 0.005167308057054603) +zone = ('moz101', 0.002101757642002218) + +[fips2927900] +centroid = (0.65366130486886198, -1.6271681054398233) +description = Goodnight village, MO +station = ('ksgf', 0.0043708750241345379) +zone = ('moz079', 0.0037171121145672279) + +[fips2927928] +centroid = (0.65120142036780859, -1.5651040227059798) +description = Gordonville village, MO +station = ('kcgi', 0.0018500067127242763) +zone = ('moz087', 0.0012792766398409716) + +[fips2928000] +centroid = (0.6896604834737895, -1.6047385650631789) +description = Goss town, MO +station = ('kcou', 0.012725420091593326) +zone = ('moz034', 0.00082418208213576294) + +[fips2928036] +centroid = (0.6914472817488112, -1.6509308330188961) +description = Gower city, MO +station = ('kstj', 0.0050900658655158703) +zone = ('moz020', 0.0029824563816919026) + +[fips2928072] +centroid = (0.70164122631093462, -1.6587686354507045) +description = Graham town, MO +station = ('kfnb', 0.0075291958759042595) +zone = ('moz011', 0.0029794328871575876) + +[fips2928090] +centroid = (0.68095111597341262, -1.6442408289163692) +description = Grain Valley city, MO +station = ('klxt', 0.0023150378122955961) +zone = ('moz037', 0.0018761471944559924) + +[fips2928108] +centroid = (0.6443697653431899, -1.6451905498288417) +description = Granby city, MO +station = ('khfj', 0.0034011850464942131) +zone = ('moz093', 0.0010988681084685384) + +[fips2928170] +centroid = (0.64640295174871565, -1.6500212372259269) +description = Grand Falls Plaza town, MO +station = ('kjln', 0.0020606462851907176) +zone = ('moz093', 0.0036030846561830635) + +[fips2928180] +centroid = (0.64282101252484758, -1.5851420431283716) +description = Grandin city, MO +station = ('kpof', 0.0071501447469863528) +zone = ('moz107', 0.0027476010770279983) + +[fips2928198] +centroid = (0.68425532095341079, -1.6308817123024617) +description = Grand Pass village, MO +station = ('kszl', 0.0083590542830124168) +zone = ('moz039', 0.0034651352273503333) + +[fips2928324] +centroid = (0.67860773219992998, -1.6497331008197151) +description = Grandview city, MO +station = ('klxt', 0.0025900017932305058) +zone = ('moz037', 0.0032670508284237676) + +[fips2928360] +centroid = (0.70628167281955212, -1.6052405043027598) +description = Granger village, MO +station = ('keok', 0.0071724848858938563) +zone = ('moz009', 0.0023188307670599906) + +[fips2928594] +centroid = (0.70661014378477738, -1.6478257002933805) +description = Grant City town, MO +station = ('klwd', 0.0072791226719419212) +zone = ('moz003', 0.000164488386089035) + +[fips2928630] +centroid = (0.67284069311244266, -1.5769596254357567) +description = Grantwood Village town, MO +station = ('kcps', 0.002785886066396087) +zone = ('moz063', 0.0019893496364101195) + +[fips2928828] +centroid = (0.66845281319988126, -1.6201018083505663) +description = Gravois Mills town, MO +station = ('kaiz', 0.005133547513415289) +zone = ('moz056', 0.0023262504084262136) + +[fips2928860] +centroid = (0.66207183709471251, -1.5749819405004444) +description = Grayhawk CDP, MO +station = ('kfam', 0.0039539712732071406) +zone = ('moz075', 0.00092894374900462362) + +[fips2928864] +centroid = (0.64271245304537361, -1.566990234935195) +description = Grayridge CDP, MO +station = ('kpof', 0.0075419592432388509) +zone = ('moz110', 0.0023321881203155013) + +[fips2928918] +centroid = (0.6719447632475164, -1.5852324860902096) +description = Gray Summit CDP, MO +station = ('kfyg', 0.0027449681541309306) +zone = ('moz062', 0.0037225397465745543) + +[fips2929116] +centroid = (0.70264543640265453, -1.6209896224344709) +description = Greencastle city, MO +station = ('kirk', 0.0051522794228643859) +zone = ('moz016', 0.0032490799482757823) + +[fips2929134] +centroid = (0.702753908615666, -1.6224848460046544) +description = Green City city, MO +station = ('kirk', 0.0061958668488852403) +zone = ('moz016', 0.0022101654921481413) + +[fips2929152] +centroid = (0.67533560637158352, -1.5762481768727663) +description = Greendale city, MO +station = ('kstl', 0.0012272166212999344) +zone = ('moz064', 0.0013676347808729643) + +[fips2929206] +centroid = (0.65303385900277, -1.6378673053671062) +description = Greenfield city, MO +station = ('ksgf', 0.007131198350071007) +zone = ('moz089', 0.00029619483213177332) + +[fips2929324] +centroid = (0.67237791906127631, -1.5766697262470004) +description = Green Park city, MO +station = ('kcps', 0.0026507265038115692) +zone = ('moz064', 0.002310495922506151) + +[fips2929332] +centroid = (0.67406797373586003, -1.6303095759203654) +description = Green Ridge city, MO +station = ('kszl', 0.0027336719761127263) +zone = ('moz045', 0.0025259871536106229) + +[fips2929422] +centroid = (0.70425979614757928, -1.6155834999830032) +description = Greentop city, MO +station = ('kirk', 0.004388024521266287) +zone = ('moz008', 0.0021635592664967628) + +[fips2929476] +centroid = (0.64799643735578638, -1.578621301056703) +description = Greenville city, MO +station = ('kpof', 0.0065594183223376921) +zone = ('moz100', 0.00031673158111448054) + +[fips2929494] +centroid = (0.67810860294044462, -1.6465794653942865) +description = Greenwood city, MO +station = ('klxt', 0.0020159346444357748) +zone = ('moz037', 0.0027187133484945598) + +[fips2929692] +centroid = (0.70107467498244458, -1.6534511408186534) +description = Guilford town, MO +station = ('kstj', 0.0074209750120482138) +zone = ('moz012', 0.0033515142256302552) + +[fips2929764] +centroid = (0.67484871187015461, -1.6434717321281853) +description = Gunn City village, MO +station = ('klxt', 0.0059276330195513552) +zone = ('moz043', 0.0026215838355803278) + +[fips2929908] +centroid = (0.69123913378221846, -1.6291480243965781) +description = Hale city, MO +station = ('kcdj', 0.0049012835194148447) +zone = ('moz031', 0.0037984247199907661) + +[fips2929962] +centroid = (0.65657199046241288, -1.6273540353650382) +description = Halfway village, MO +station = ('ksgf', 0.0070128903067451344) +zone = ('moz079', 0.002212081446469115) + +[fips2929998] +centroid = (0.68274685033420457, -1.609655838244455) +description = Hallsville city, MO +station = ('kcou', 0.0052698971809637509) +zone = ('moz041', 0.0024990412247486347) + +[fips2930016] +centroid = (0.64916666316595617, -1.6341359659592676) +description = Halltown village, MO +station = ('ksgf', 0.0034825067284896989) +zone = ('moz094', 0.003225386541563752) + +[fips2930034] +centroid = (0.69363875206420034, -1.6406514022300103) +description = Hamilton city, MO +station = ('kcdj', 0.0057678077433464554) +zone = ('moz022', 0.001538897516135773) + +[fips2930196] +centroid = (0.67519151198853877, -1.5764700431272798) +description = Hanley Hills village, MO +station = ('kstl', 0.0012582242754113403) +zone = ('moz064', 0.0013954536752753923) + +[fips2930214] +centroid = (0.69307239272192822, -1.5951175597346074) +description = Hannibal city, MO +station = ('kuin', 0.0046802933178887625) +zone = ('moz027', 0.0034974485804427687) + +[fips2930322] +centroid = (0.68534856029027502, -1.6376655802121609) +description = Hardin city, MO +station = ('krcm', 0.0085204700350821148) +zone = ('moz030', 0.0026032974710735297) + +[fips2930466] +centroid = (0.70347499139612746, -1.6292714715345717) +description = Harris town, MO +station = ('ktvk', 0.0088492540211573354) +zone = ('moz006', 0.0035388574983529816) + +[fips2930484] +centroid = (0.68312600566090775, -1.6137237294919557) +description = Harrisburg town, MO +station = ('kver', 0.0045982135236590999) +zone = ('moz040', 0.0031981866774933904) + +[fips2930610] +centroid = (0.67461326695406054, -1.6466657893790899) +description = Harrisonville city, MO +station = ('klxt', 0.0054898843822829713) +zone = ('moz043', 0.00014316066101892794) + +[fips2930718] +centroid = (0.67539323714348432, -1.6110633415664333) +description = Hartsburg town, MO +station = ('kcou', 0.0024217379428119654) +zone = ('moz048', 0.0033635562301626157) + +[fips2930754] +centroid = (0.65014074887478668, -1.6146623152038007) +description = Hartville city, MO +station = ('ktbn', 0.0099377644937276421) +zone = ('moz092', 0.00070965870093388673) + +[fips2930772] +centroid = (0.67075587986764285, -1.639456148398367) +description = Hartwell CDP, MO +station = ('kgly', 0.0036905655567502017) +zone = ('moz054', 0.0020934719321739096) + +[fips2930844] +centroid = (0.63977501155438954, -1.5791553718078133) +description = Harviell CDP, MO +station = ('kpof', 0.0029762463565926201) +zone = ('moz109', 0.0014574706611415074) + +[fips2930862] +centroid = (0.66246909148575883, -1.6432961520054348) +description = Harwood village, MO +station = ('kgly', 0.0095840052569532968) +zone = ('moz066', 0.0031881626730799239) + +[fips2931024] +centroid = (0.68017755114234368, -1.5905489509780022) +description = Hawk Point city, MO +station = ('kfyg', 0.0069551621749555058) +zone = ('moz052', 0.0027760458866925432) + +[fips2931132] +centroid = (0.63237690992103601, -1.566386961879243) +description = Hayti city, MO +station = ('khka', 0.0053608821130522177) +zone = ('moz115', 0.00065786076789622167) + +[fips2931168] +centroid = (0.6323531210833313, -1.5667506535887736) +description = Hayti Heights city, MO +station = ('khka', 0.0052787062872560221) +zone = ('moz115', 0.00042901256466608005) + +[fips2931186] +centroid = (0.63522958077025071, -1.5649808199140816) +description = Hayward CDP, MO +station = ('kdyr', 0.0078665514320855872) +zone = ('tnz001', 0.0026564993255863926) + +[fips2931204] +centroid = (0.64597566024124231, -1.5638199490687026) +description = Haywood City village, MO +station = ('kcgi', 0.0038757822032507764) +zone = ('moz111', 0.00084556304601774281) + +[fips2931276] +centroid = (0.67709777805085958, -1.5777049333862356) +description = Hazelwood city, MO +station = ('kstl', 0.00087756948342165213) +zone = ('moz063', 0.0027659457436554355) + +[fips2931654] +centroid = (0.68481677592048473, -1.6395367127966389) +description = Henrietta city, MO +station = ('klxt', 0.0074769386307420461) +zone = ('moz030', 0.0021284272463286285) + +[fips2931708] +centroid = (0.66772035087269688, -1.5776577396832618) +description = Herculaneum city, MO +station = ('kcps', 0.0063372754977919317) +zone = ('moz065', 0.00198355651593706) + +[fips2931762] +centroid = (0.6754014401909687, -1.595839445366525) +description = Hermann city, MO +station = ('kfyg', 0.0063119572644063952) +zone = ('moz051', 0.0042829883189819812) + +[fips2931780] +centroid = (0.66226752341044604, -1.628897569648917) +description = Hermitage city, MO +station = ('kgly', 0.0086972112892044571) +zone = ('moz068', 0.00013650999243316382) + +[fips2931924] +centroid = (0.68601946485474152, -1.6146534838377855) +description = Higbee city, MO +station = ('kver', 0.0067774033123362441) +zone = ('moz033', 0.0023514794865453397) + +[fips2931960] +centroid = (0.68178075823334816, -1.6358809810519968) +description = Higginsville city, MO +station = ('krcm', 0.0050350352139610097) +zone = ('moz038', 0.00076580949336360745) + +[fips2931996] +centroid = (0.67850271573883747, -1.5948402792763434) +description = High Hill city, MO +station = ('kfyg', 0.0072478145975305736) +zone = ('moz051', 0.0017071381549921315) + +[fips2932068] +centroid = (0.64471558488117997, -1.6280879288622092) +description = Highlandville city, MO +station = ('ksgf', 0.0053171036326521773) +zone = ('moz095', 0.0014081778353846545) + +[fips2932140] +centroid = (0.67126876232163391, -1.5801149363772673) +description = High Ridge CDP, MO +station = ('ksus', 0.0036615257190465798) +zone = ('moz063', 0.0033750993385308829) + +[fips2932248] +centroid = (0.66727913163779262, -1.5806863222677849) +description = Hillsboro city, MO +station = ('ksus', 0.0073791121219415725) +zone = ('moz065', 0.00063853553331276978) + +[fips2932266] +centroid = (0.67519280353218536, -1.5758035716991132) +description = Hillsdale village, MO +station = ('kstl', 0.0015619231073031004) +zone = ('moz064', 0.0010413590624359492) + +[fips2932410] +centroid = (0.64696210288117706, -1.6379785352003358) +description = Hoberg village, MO +station = ('khfj', 0.0037794636668799044) +zone = ('moz094', 0.00070457064754141769) + +[fips2932536] +centroid = (0.63532325259120526, -1.571229831674507) +description = Holcomb city, MO +station = ('kpof', 0.0075751029432425242) +zone = ('moz113', 0.0024426464945908285) + +[fips2932572] +centroid = (0.67567727202595396, -1.6404247014134687) +description = Holden city, MO +station = ('krcm', 0.0028278176513832813) +zone = ('moz044', 0.0025499005514733396) + +[fips2932590] +centroid = (0.62931417124305133, -1.5685366664656319) +description = Holland town, MO +station = ('kbyh', 0.001935711805322858) +zone = ('moz115', 0.0029420877157043958) + +[fips2932626] +centroid = (0.68929445302306125, -1.6079977056418904) +description = Holliday village, MO +station = ('kcou', 0.011871924221444532) +zone = ('moz034', 0.0017617210576129768) + +[fips2932662] +centroid = (0.63889665715503097, -1.6272154038625521) +description = Hollister city, MO +station = ('kbbg', 0.0014041987397409147) +zone = ('moz104', 0.0028142277189747893) + +[fips2932752] +centroid = (0.68861965637436273, -1.6466628921325319) +description = Holt city, MO +station = ('kmci', 0.0058742877036175555) +zone = ('moz021', 0.0026775549086782307) + +[fips2932770] +centroid = (0.67452079941028997, -1.6076923079293763) +description = Holts Summit city, MO +station = ('kjef', 0.00095899673502759916) +zone = ('moz048', 0.0033684641828557161) + +[fips2932806] +centroid = (0.68701784554675982, -1.6441095103434491) +description = Homestead village, MO +station = ('kmkc', 0.0069047424605555878) +zone = ('moz029', 0.003112465880314485) + +[fips2932824] +centroid = (0.63410993460180376, -1.5677286139285438) +description = Homestown city, MO +station = ('kbyh', 0.0066150608144432384) +zone = ('moz115', 0.0021753096090237384) + +[fips2933004] +centroid = (0.70775055937132292, -1.6548692033826062) +description = Hopkins city, MO +station = ('kicl', 0.00406901212454265) +zone = ('moz002', 0.0034383802061390073) + +[fips2933040] +centroid = (0.66786856423277619, -1.5783068276320784) +description = Horine CDP, MO +station = ('kcps', 0.0064979162933234847) +zone = ('moz065', 0.001475520777260812) + +[fips2933076] +centroid = (0.62902057195628092, -1.5728274886184901) +description = Hornersville city, MO +station = ('kbyh', 0.0026770607111230526) +zone = ('moz113', 0.0040594164047357915) + +[fips2933238] +centroid = (0.65137441740326629, -1.6050253575658664) +description = Houston city, MO +station = ('ktbn', 0.007580733321461551) +zone = ('moz082', 8.4518914743088872e-05) + +[fips2933256] +centroid = (0.67892185655870385, -1.6294292143923668) +description = Houstonia city, MO +station = ('kszl', 0.0038875977595171753) +zone = ('moz045', 0.0031519355818257289) + +[fips2933292] +centroid = (0.68399675042472774, -1.6514334180303003) +description = Houston Lake city, MO +station = ('kmkc', 0.0013108503180613966) +zone = ('ksz104', 0.00235875067400173) + +[fips2933364] +centroid = (0.63823985485092039, -1.5637647966643393) +description = Howardville city, MO +station = ('kcir', 0.010138347788543644) +zone = ('moz114', 0.00088595811028698642) + +[fips2933652] +centroid = (0.67783160173486057, -1.628307892707838) +description = Hughesville village, MO +station = ('kdmo', 0.0027312981066860099) +zone = ('moz045', 0.0019001985732397609) + +[fips2933706] +centroid = (0.6596493200929443, -1.6332273475506793) +description = Humansville city, MO +station = ('kgly', 0.0099599519302807499) +zone = ('moz079', 0.0039574205820609174) + +[fips2933724] +centroid = (0.6648031028411584, -1.6507885014183961) +description = Hume town, MO +station = ('kpts', 0.011359267336826755) +zone = ('ksz060', 0.0041507759433972854) + +[fips2933742] +centroid = (0.70028384884507344, -1.6287710856380249) +description = Humphreys village, MO +station = ('kcdj', 0.0063944590517999765) +zone = ('moz016', 0.0031916500150789388) + +[fips2933760] +centroid = (0.69233652700270232, -1.6032399730075388) +description = Hunnewell city, MO +station = ('kuin', 0.0099753371552791775) +zone = ('moz034', 0.0035636033370041315) + +[fips2933778] +centroid = (0.64371127006970497, -1.5855943102974408) +description = Hunter CDP, MO +station = ('kpof', 0.0076891692500747491) +zone = ('moz107', 0.0019036129584615999) + +[fips2933850] +centroid = (0.67392572940182249, -1.5779322799746007) +description = Huntleigh city, MO +station = ('kstl', 0.0024575378936713237) +zone = ('moz063', 0.0006698763420303934) + +[fips2933868] +centroid = (0.67913431548854908, -1.6139440947633126) +description = Huntsdale town, MO +station = ('kver', 0.0028651232268273623) +zone = ('moz041', 0.0026036914825103056) + +[fips2933886] +centroid = (0.68829458880117877, -1.6151973807925848) +description = Huntsville city, MO +station = ('kver', 0.0088565851648512647) +zone = ('moz033', 0.00063560228983846722) + +[fips2933904] +centroid = (0.70072152506159613, -1.6109848366566788) +description = Hurdland city, MO +station = ('kirk', 0.0034075878660714013) +zone = ('moz018', 0.0020917845314304471) + +[fips2933922] +centroid = (0.64456004113824228, -1.6318746475672137) +description = Hurley city, MO +station = ('ksgf', 0.0055263480959504467) +zone = ('moz103', 0.003263063250087875) + +[fips2934210] +centroid = (0.68900879498438738, -1.6577797318965246) +description = Iatan village, MO +station = ('kmci', 0.0045812763391850182) +zone = ('moz028', 0.0032998039537858268) + +[fips2934228] +centroid = (0.66477294355168393, -1.610872262919925) +description = Iberia city, MO +station = ('kaiz', 0.0034919490497225323) +zone = ('moz057', 0.0028486925018961933) + +[fips2934354] +centroid = (0.66937909434049969, -1.5774632750980049) +description = Imperial CDP, MO +station = ('kcps', 0.0049001531192651125) +zone = ('moz065', 0.002666358237998183) + +[fips2935000] +centroid = (0.68216644109145386, -1.6467406989105857) +description = Independence city, MO +station = ('klxt', 0.0020802803848843456) +zone = ('moz037', 0.001341527065089965) + +[fips2935186] +centroid = (0.63961358605187268, -1.6291662456339691) +description = Indian Point village, MO +station = ('kbbg', 0.0028763492046797469) +zone = ('moz103', 0.0023382232689445658) + +[fips2935240] +centroid = (0.67651796222005445, -1.5891990086147547) +description = Innsbrook village, MO +station = ('kfyg', 0.0031477810086797406) +zone = ('moz060', 0.0014476286657510572) + +[fips2935306] +centroid = (0.67201672317257621, -1.6288029378968738) +description = Ionia town, MO +station = ('kdmo', 0.0042883506671025891) +zone = ('moz055', 0.0036788081443709418) + +[fips2935324] +centroid = (0.70756092934809378, -1.6474140992958828) +description = Irena village, MO +station = ('kcsq', 0.0083206075995613752) +zone = ('moz003', 0.0011503218634425947) + +[fips2935396] +centroid = (0.66038637263606159, -1.5824925809639665) +description = Irondale city, MO +station = ('kfam', 0.0034910029253215338) +zone = ('moz074', 0.002759687863240194) + +[fips2935450] +centroid = (0.65775384016540084, -1.5815641181617832) +description = Iron Mountain Lake city, MO +station = ('kfam', 0.0028950939058609822) +zone = ('moz074', 0.0029371246572819369) + +[fips2935468] +centroid = (0.65616871468544713, -1.5817786714867308) +description = Ironton city, MO +station = ('kfam', 0.0040282623880199594) +zone = ('moz084', 0.0021169520029478512) + +[fips2935486] +centroid = (0.65604612275878704, -1.6456108949258921) +description = Irwin CDP, MO +station = ('kpts', 0.0065984759656086975) +zone = ('moz077', 0.0017246621906259157) + +[fips2935648] +centroid = (0.65240271303866382, -1.56475876167335) +description = Jackson city, MO +station = ('kcgi', 0.0027404536778107965) +zone = ('moz087', 0.00042765031547037418) + +[fips2936224] +centroid = (0.69093652859650767, -1.6139594885673152) +description = Jacksonville village, MO +station = ('kirk', 0.0089997436554244449) +zone = ('moz033', 0.0025954328302947752) + +[fips2936314] +centroid = (0.69823383746555845, -1.6403963747197088) +description = Jameson town, MO +station = ('kcdj', 0.0063419452872634811) +zone = ('moz014', 0.00078864538156743686) + +[fips2936332] +centroid = (0.69768903293954854, -1.6371639551318451) +description = Jamesport city, MO +station = ('kcdj', 0.004027520353818227) +zone = ('moz014', 0.0024587919595043025) + +[fips2936368] +centroid = (0.67665083413600879, -1.6141486298983538) +description = Jamestown town, MO +station = ('kver', 0.003998275866822441) +zone = ('moz047', 0.0027394082341749958) + +[fips2936512] +centroid = (0.65163028267160872, -1.6458942665832461) +description = Jasper city, MO +station = ('kjln', 0.0042436073167202958) +zone = ('moz088', 0.0023657225203972503) + +[fips2937000] +centroid = (0.67312917858450483, -1.6087616711620731) +description = Jefferson City city, MO +station = ('kjef', 0.00066425617530276059) +zone = ('moz048', 0.0018103465147217325) + +[fips2937178] +centroid = (0.675844474568295, -1.5754085513295095) +description = Jennings city, MO +station = ('kstl', 0.0014714500362594052) +zone = ('moz064', 0.0015450064969057724) + +[fips2937214] +centroid = (0.65657619670591028, -1.6408798483758036) +description = Jerico Springs village, MO +station = ('kjln', 0.010590729472988546) +zone = ('moz078', 0.0028567296996789178) + +[fips2937574] +centroid = (0.67813226960510165, -1.5935850559316016) +description = Jonesburg city, MO +station = ('kfyg', 0.0062990157177312137) +zone = ('moz060', 0.0025159078121206936) + +[fips2937592] +centroid = (0.64712461048783021, -1.6493756224823215) +description = Joplin city, MO +station = ('kjln', 0.0012655982581362773) +zone = ('moz088', 0.0031455267771397107) + +[fips2937700] +centroid = (0.67770319786179134, -1.5845375134353581) +description = Josephville village, MO +station = ('ksus', 0.0036486603020639951) +zone = ('moz061', 0.0017367333563913362) + +[fips2937736] +centroid = (0.65578934991923366, -1.5759144873730775) +description = Junction City village, MO +station = ('kfam', 0.0038803642116191132) +zone = ('moz085', 0.0018200035062955499) + +[fips2937790] +centroid = (0.70552526457503018, -1.6007934053686783) +description = Kahoka city, MO +station = ('keok', 0.0038641828649350089) +zone = ('moz010', 0.00035004236046443598) + +[fips2938000] +centroid = (0.68286376994079567, -1.6502286347009412) +description = Kansas City city, MO +station = ('kmkc', 0.00067824634097053075) +zone = ('moz037', 0.0034451499426067169) + +[fips2938072] +centroid = (0.686870522304599, -1.6468675843472058) +description = Kearney city, MO +station = ('kmkc', 0.0052843409112144296) +zone = ('moz029', 0.0011416021845631341) + +[fips2938216] +centroid = (0.64912660785962284, -1.5629493264779299) +description = Kelso village, MO +station = ('kcgi', 0.00085121666333426069) +zone = ('moz111', 0.002442925154147083) + +[fips2938306] +centroid = (0.63251219039135809, -1.5716234906872943) +description = Kennett city, MO +station = ('kbyh', 0.0049690001752144127) +zone = ('moz113', 0.00082432808490720034) + +[fips2938468] +centroid = (0.68820690345955859, -1.6220712204252243) +description = Keytesville city, MO +station = ('kver', 0.0092578898348115168) +zone = ('moz032', 0.0014890845147136824) + +[fips2938522] +centroid = (0.6943253122320574, -1.642396103163474) +description = Kidder city, MO +station = ('kcdj', 0.0069861840732374928) +zone = ('moz022', 0.0027255706478632852) + +[fips2938612] +centroid = (0.63962854352356213, -1.6305598212285162) +description = Kimberling City city, MO +station = ('kbbg', 0.0037568312549749105) +zone = ('moz103', 0.0017819665066562199) + +[fips2938684] +centroid = (0.66960560317082352, -1.5771611586044845) +description = Kimmswick city, MO +station = ('kcps', 0.0045743362358795) +zone = ('ilz102', 0.0029808614040986408) + +[fips2938774] +centroid = (0.69901426144058776, -1.6497753901474908) +description = King City city, MO +station = ('kstj', 0.0072127313640936129) +zone = ('moz013', 0.0031843307924202232) + +[fips2938792] +centroid = (0.67976219768695412, -1.6045949768256171) +description = Kingdom City village, MO +station = ('kcou', 0.0044386383619289026) +zone = ('moz050', 0.0019600727361552177) + +[fips2938846] +centroid = (0.69189347517208355, -1.6412794938679254) +description = Kingston city, MO +station = ('kcdj', 0.0068220940702679944) +zone = ('moz022', 0.00078134536058829113) + +[fips2938918] +centroid = (0.67620355860860015, -1.6418445093066736) +description = Kingsville city, MO +station = ('krcm', 0.0037392010532701584) +zone = ('moz044', 0.0036000433987966487) + +[fips2938972] +centroid = (0.67611269676774144, -1.5764678265591296) +description = Kinloch city, MO +station = ('kstl', 0.00060282363427283396) +zone = ('moz064', 0.0020960278996366094) + +[fips2939008] +centroid = (0.63930333632403802, -1.6259081347995161) +description = Kirbyville village, MO +station = ('kbbg', 0.0018331966489019554) +zone = ('moz104', 0.0016926153265207631) + +[fips2939026] +centroid = (0.70159043722970149, -1.6157309104916269) +description = Kirksville city, MO +station = ('kirk', 0.0017444585096000522) +zone = ('moz017', 0.00037268046139642553) + +[fips2939044] +centroid = (0.67333678549902942, -1.5781420860039828) +description = Kirkwood city, MO +station = ('kstl', 0.0030685706916042631) +zone = ('moz063', 0.0011123409509279207) + +[fips2939080] +centroid = (0.63998628366034349, -1.6240866044723796) +description = Kissee Mills CDP, MO +station = ('kbbg', 0.0031731958206505924) +zone = ('moz104', 0.00029633546331136529) + +[fips2939188] +centroid = (0.67661803939936394, -1.6329550412807832) +description = Knob Noster city, MO +station = ('kszl', 0.00061389107423755402) +zone = ('moz044', 0.0033573948822986002) + +[fips2939278] +centroid = (0.70064776744740687, -1.6058808830586091) +description = Knox City city, MO +station = ('kirk', 0.0072453445295906898) +zone = ('moz018', 0.001861044867320387) + +[fips2939440] +centroid = (0.63874519748254277, -1.599524376469553) +description = Koshkonong town, MO +station = ('kuno', 0.0061257526072280074) +zone = ('moz106', 0.0037390474988205362) + +[fips2939503] +centroid = (0.67050324345841672, -1.5826625934864031) +description = LaBarque Creek CDP, MO +station = ('ksus', 0.0040869326842096921) +zone = ('moz065', 0.0033462190731502958) + +[fips2939512] +centroid = (0.70016031444061733, -1.6042244085188337) +description = La Belle city, MO +station = ('keok', 0.0088642546982635028) +zone = ('moz019', 0.0025995397307012834) + +[fips2939566] +centroid = (0.69442032795653597, -1.6261183771612113) +description = Laclede city, MO +station = ('kcdj', 0.0055695527282240065) +zone = ('moz024', 0.0016712112799848913) + +[fips2939602] +centroid = (0.68491603279504576, -1.5994645116762098) +description = Laddonia city, MO +station = ('kcou', 0.010765668076296423) +zone = ('moz042', 0.0027318225475130311) + +[fips2939638] +centroid = (0.66867967109605542, -1.6384744181474125) +description = La Due village, MO +station = ('kgly', 0.0028301285801827863) +zone = ('moz054', 0.0017209334074494123) + +[fips2939656] +centroid = (0.67435672100730992, -1.5774539724930916) +description = Ladue city, MO +station = ('kstl', 0.0019686981172924757) +zone = ('moz063', 0.00084055263582636047) + +[fips2939764] +centroid = (0.69894940500558367, -1.5970162336146823) +description = La Grange city, MO +station = ('kuin', 0.0045016388445311677) +zone = ('moz019', 0.0030642423588663138) + +[fips2939845] +centroid = (0.67463461233081257, -1.6494380180030803) +description = Lake Annette city, MO +station = ('kojc', 0.0044066078562027076) +zone = ('moz043', 0.0020620483587092957) + +[fips2939952] +centroid = (0.67978438082174697, -1.6400632960852581) +description = Lake Lafayette city, MO +station = ('krcm', 0.0037327435739759837) +zone = ('moz038', 0.0032141989350923869) + +[fips2939980] +centroid = (0.67899385139034862, -1.6451340884275401) +description = Lake Lotawana city, MO +station = ('klxt', 0.0018284382163619506) +zone = ('moz037', 0.0021792925628455759) + +[fips2939990] +centroid = (0.67505733107564558, -1.6074711921664413) +description = Lake Mykee Town village, MO +station = ('kjef', 0.0015135257545998522) +zone = ('moz050', 0.003640871593628713) + +[fips2940034] +centroid = (0.66673088881315612, -1.6166992889738032) +description = Lake Ozark city, MO +station = ('kaiz', 0.0020751322362774632) +zone = ('moz057', 0.0027756607274379451) + +[fips2940043] +centroid = (0.67687786656510829, -1.5845251739575466) +description = Lake St. Louis city, MO +station = ('ksus', 0.0029644631202234194) +zone = ('moz061', 0.0015157253204169875) + +[fips2940088] +centroid = (0.67264854981509059, -1.5766977736880798) +description = Lakeshire city, MO +station = ('kcps', 0.0026098335830092821) +zone = ('moz064', 0.002101025912710084) + +[fips2940142] +centroid = (0.66674172730781101, -1.6166114989124281) +description = Lakeside city, MO +station = ('kaiz', 0.002048783799903709) +zone = ('moz057', 0.0027059953541956482) + +[fips2940196] +centroid = (0.68103988341916899, -1.6461868535790503) +description = Lake Tapawingo city, MO +station = ('klxt', 0.0011393252997926484) +zone = ('moz037', 0.00041828746862065366) + +[fips2940214] +centroid = (0.67094685379439611, -1.5833233402346232) +description = Lake Tekakwitha village, MO +station = ('ksus', 0.0037390590886505807) +zone = ('moz065', 0.0040115222344510003) + +[fips2940304] +centroid = (0.69696355192937198, -1.6417786405807031) +description = Lake Viking CDP, MO +station = ('kcdj', 0.0067893660373700201) +zone = ('moz014', 0.0011922101795916501) + +[fips2940322] +centroid = (0.68474006869985971, -1.651741521003155) +description = Lake Waukomis city, MO +station = ('kmci', 0.0017449457472388605) +zone = ('ksz104', 0.0026832205851607329) + +[fips2940340] +centroid = (0.67754247049097516, -1.6469238886688751) +description = Lake Winnebago city, MO +station = ('klxt', 0.0025550210064850735) +zone = ('moz043', 0.0030265701758723632) + +[fips2940376] +centroid = (0.65439231857276725, -1.6454689822044126) +description = Lamar city, MO +station = ('kpts', 0.0063018806354784712) +zone = ('moz077', 0.00096208731784660573) + +[fips2940430] +centroid = (0.65440088813939457, -1.6457298565677081) +description = Lamar Heights city, MO +station = ('kpts', 0.0060974909224744472) +zone = ('moz077', 0.0007565675577035476) + +[fips2940448] +centroid = (0.6474081915846942, -1.5630259638853852) +description = Lambert village, MO +station = ('kcgi', 0.0024682018664890591) +zone = ('moz111', 0.00073687686728393762) + +[fips2940520] +centroid = (0.67669350743622003, -1.6305547772269782) +description = La Monte city, MO +station = ('kszl', 0.0018421531006785486) +zone = ('moz045', 0.0020354461284594356) + +[fips2940592] +centroid = (0.63889763453941206, -1.6484932363723908) +description = Lanagan town, MO +station = ('kgmj', 0.004019802507774629) +zone = ('moz101', 0.0014997813132931043) + +[fips2940610] +centroid = (0.70731778752999852, -1.6149833859729978) +description = Lancaster city, MO +station = ('ktvk', 0.0055684861126629711) +zone = ('moz008', 0.00099004182781028938) + +[fips2940682] +centroid = (0.69854956752724429, -1.614271152011844) +description = La Plata city, MO +station = ('kirk', 0.0015443058386910857) +zone = ('moz017', 0.0032570073780358289) + +[fips2940736] +centroid = (0.69858744117201255, -1.6309710906134562) +description = Laredo city, MO +station = ('kcdj', 0.0040811619936256243) +zone = ('moz015', 0.0021948868286615626) + +[fips2940790] +centroid = (0.64821940316772875, -1.6416731528807127) +description = La Russell city, MO +station = ('khfj', 0.0042315492306098856) +zone = ('moz094', 0.0032279661505830127) + +[fips2940826] +centroid = (0.69030393400912227, -1.6463451549422063) +description = Lathrop city, MO +station = ('kmci', 0.0070026558241033645) +zone = ('moz021', 0.0013472697042140958) + +[fips2940880] +centroid = (0.67431917897509952, -1.6423644079842576) +description = La Tour CDP, MO +station = ('krcm', 0.0048066010233758947) +zone = ('moz044', 0.0044330227053406817) + +[fips2940916] +centroid = (0.66685515625589808, -1.6201080915358734) +description = Laurie city, MO +station = ('kh21', 0.0045508081946355437) +zone = ('moz069', 0.0032605652433270712) + +[fips2940988] +centroid = (0.68823505562039322, -1.644454649203031) +description = Lawson city, MO +station = ('kmkc', 0.0075359975886880939) +zone = ('moz029', 0.003447565246743927) + +[fips2941024] +centroid = (0.66033380331899139, -1.5791875382259273) +description = Leadington city, MO +station = ('kfam', 0.0013502619208297041) +zone = ('moz074', 0.00043172766979015267) + +[fips2941078] +centroid = (0.66081205844062285, -1.5810790213494839) +description = Leadwood city, MO +station = ('kfam', 0.0027146920373518745) +zone = ('moz074', 0.0018359933030295914) + +[fips2941114] +centroid = (0.66488049074019173, -1.5934039605684145) +description = Leasburg village, MO +station = ('kvih', 0.006507241692438652) +zone = ('moz072', 0.0020707118017933351) + +[fips2941132] +centroid = (0.64637356040411209, -1.6492639912233642) +description = Leawood village, MO +station = ('kjln', 0.0020170779569619298) +zone = ('moz093', 0.0031368462997745481) + +[fips2941168] +centroid = (0.65750272219262396, -1.6172163253114142) +description = Lebanon city, MO +station = ('kh21', 0.0052155843843395451) +zone = ('moz081', 0.00098834425675446941) + +[fips2941348] +centroid = (0.67926395854538735, -1.6472900587459434) +description = Lee's Summit city, MO +station = ('klxt', 0.00086088216810326318) +zone = ('moz037', 0.0016401123597835365) + +[fips2941402] +centroid = (0.67340471371351707, -1.6352901521936114) +description = Leeton city, MO +station = ('kszl', 0.003283162900745421) +zone = ('moz044', 0.0031894971466526712) + +[fips2941417] +centroid = (0.70004866572836721, -1.6357832949737625) +description = Leisure Lake CDP, MO +station = ('kcdj', 0.0054493726534033931) +zone = ('moz015', 0.0021126338602509369) + +[fips2941438] +centroid = (0.67250677671995107, -1.57575485955969) +description = Lemay CDP, MO +station = ('kcps', 0.0019289753948583657) +zone = ('moz064', 0.001891917738533599) + +[fips2941546] +centroid = (0.69628879018725853, -1.6088787303950045) +description = Leonard village, MO +station = ('kirk', 0.0060901913112037399) +zone = ('moz026', 0.0021991801282931775) + +[fips2941690] +centroid = (0.67051896887497719, -1.5922804746756134) +description = Leslie village, MO +station = ('kfyg', 0.0043887896718805891) +zone = ('moz062', 0.0021358830549279588) + +[fips2941762] +centroid = (0.68303847739892032, -1.6428456825254949) +description = Levasy city, MO +station = ('klxt', 0.0043712735008161266) +zone = ('moz037', 0.0036898831935079112) + +[fips2941834] +centroid = (0.69002818944059963, -1.6589957551462666) +description = Lewis and Clark Village town, MO +station = ('kstj', 0.0044303978832432676) +zone = ('moz020', 0.0039683757724127827) + +[fips2941852] +centroid = (0.69961154801720526, -1.6024522710095286) +description = Lewistown town, MO +station = ('keok', 0.0083715283441539515) +zone = ('moz019', 0.00124056061977581) + +[fips2941870] +centroid = (0.6838245736940185, -1.6383260128011157) +description = Lexington city, MO +station = ('krcm', 0.0070486357756787219) +zone = ('moz038', 0.0022996236671191639) + +[fips2941906] +centroid = (0.65552540377645452, -1.6496038591886049) +description = Liberal city, MO +station = ('kpts', 0.0035273461029088765) +zone = ('moz077', 0.0025290474426967187) + +[fips2942032] +centroid = (0.68485520807061373, -1.6479205414849338) +description = Liberty city, MO +station = ('kmkc', 0.0032536316504252188) +zone = ('moz029', 0.0012427149401417308) + +[fips2942464] +centroid = (0.65450641074597016, -1.603279452355219) +description = Licking city, MO +station = ('ktbn', 0.0055389510251531854) +zone = ('moz082', 0.0035065051865528127) + +[fips2942536] +centroid = (0.6386300057519112, -1.5640432988530801) +description = Lilbourn city, MO +station = ('kcir', 0.0099286175717740299) +zone = ('moz114', 0.00054303169954141148) + +[fips2942608] +centroid = (0.67010417392494814, -1.6289285317898474) +description = Lincoln city, MO +station = ('kdmo', 0.0060581576539637354) +zone = ('moz055', 0.0018302681966041862) + +[fips2943238] +centroid = (0.67158171730980898, -1.6029974595079741) +description = Linn city, MO +station = ('kjef', 0.0046704147860813245) +zone = ('moz049', 0.00039481648001584796) + +[fips2943274] +centroid = (0.66397953432701973, -1.6181680708058193) +description = Linn Creek city, MO +station = ('kh21', 0.0013206417023798444) +zone = ('moz069', 0.00076566870158215994) + +[fips2943292] +centroid = (0.69599358519757626, -1.6264128840191927) +description = Linneus city, MO +station = ('kcdj', 0.0054212288962477541) +zone = ('moz024', 0.0010710507669527472) + +[fips2943346] +centroid = (0.66030779791313676, -1.5687847475655103) +description = Lithium village, MO +station = ('ksar', 0.0060811508743961809) +zone = ('moz076', 0.0023473524765138935) + +[fips2943454] +centroid = (0.70671931412948952, -1.6179286639923232) +description = Livonia village, MO +station = ('ktvk', 0.0042137679071015755) +zone = ('moz008', 0.0024142994106430607) + +[fips2943468] +centroid = (0.67769499481430695, -1.6510191990389245) +description = Loch Lloyd village, MO +station = ('kojc', 0.0018628096955518672) +zone = ('ksz105', 0.0032150421409512194) + +[fips2943472] +centroid = (0.69549285023517893, -1.6367026995171281) +description = Lock Springs village, MO +station = ('kcdj', 0.0026445272996629371) +zone = ('moz023', 0.0032690036856820926) + +[fips2943490] +centroid = (0.65252809749212715, -1.6398934755490391) +description = Lockwood city, MO +station = ('khfj', 0.0085438904828129443) +zone = ('moz089', 0.0016981755358916903) + +[fips2943652] +centroid = (0.67270047336033745, -1.6120662426612145) +description = Lohman city, MO +station = ('kjef', 0.0030931735299134172) +zone = ('moz048', 0.0013077519878720654) + +[fips2943672] +centroid = (0.64556117945047875, -1.6509106046528654) +description = Loma Linda town, MO +station = ('kjln', 0.0030950647989312387) +zone = ('moz093', 0.0037852950235448372) + +[fips2943760] +centroid = (0.67845307857491066, -1.6436486212478749) +description = Lone Jack city, MO +station = ('klxt', 0.0030881820006774048) +zone = ('moz037', 0.0033293249328752647) + +[fips2943940] +centroid = (0.65747090484036008, -1.5668543435996347) +description = Longtown town, MO +station = ('kcgi', 0.0080718671713437082) +zone = ('moz076', 0.00094561996215107602) + +[fips2944156] +centroid = (0.6589738078592523, -1.6256179389047869) +description = Louisburg village, MO +station = ('kh21', 0.0072471740255934313) +zone = ('moz080', 0.0020951104398820954) + +[fips2944174] +centroid = (0.68838326898047264, -1.5893322994097294) +description = Louisiana city, MO +station = ('kppq', 0.0051434112326024673) +zone = ('moz036', 0.0022541385353729436) + +[fips2944282] +centroid = (0.66566910030941295, -1.6358486750075423) +description = Lowry City city, MO +station = ('kgly', 0.0038933836503508984) +zone = ('moz067', 0.0019173441374932257) + +[fips2944372] +centroid = (0.70622477508593695, -1.6282475741288891) +description = Lucerne village, MO +station = ('ktvk', 0.0064202767792911159) +zone = ('moz006', 0.0037468363819151058) + +[fips2944390] +centroid = (0.69209757397481175, -1.6354187131463134) +description = Ludlow town, MO +station = ('kcdj', 0.0032550822118939727) +zone = ('moz023', 0.0030443505827112017) + +[fips2944498] +centroid = (0.67799007763094166, -1.6136268113585928) +description = Lupus town, MO +station = ('kver', 0.0034810847437969773) +zone = ('moz041', 0.0031978205176040548) + +[fips2944516] +centroid = (0.70602652313620295, -1.6036803719376946) +description = Luray village, MO +station = ('keok', 0.0059914384671742081) +zone = ('moz010', 0.0020702602777734006) + +[fips2944768] +centroid = (0.67862228824589155, -1.6136707238425729) +description = McBaine town, MO +station = ('kver', 0.003198308875877178) +zone = ('moz041', 0.0027504420566004579) + +[fips2944829] +centroid = (0.64206198628644784, -1.6319362751431017) +description = McCord Bend village, MO +station = ('kbbg', 0.0061800952072413188) +zone = ('moz103', 0.00096719308920236368) + +[fips2945020] +centroid = (0.7000792089902772, -1.6444893987084381) +description = McFall city, MO +station = ('klwd', 0.010064266328115195) +zone = ('moz004', 0.0030559514599376083) + +[fips2945110] +centroid = (0.67336457114072124, -1.5763171697380975) +description = Mackenzie village, MO +station = ('kcps', 0.0022831102570776388) +zone = ('moz064', 0.0013648019778422858) + +[fips2945200] +centroid = (0.67606475257318921, -1.5960153571018336) +description = McKittrick town, MO +station = ('kfyg', 0.0066693555156699643) +zone = ('moz051', 0.0036090074586072941) + +[fips2945218] +centroid = (0.66257822692388602, -1.6225137312037747) +description = Macks Creek city, MO +station = ('kh21', 0.0037610100499032109) +zone = ('moz069', 0.0029343038526406908) + +[fips2945326] +centroid = (0.69363122969512425, -1.6139154713635799) +description = Macon city, MO +station = ('kirk', 0.0063357026573087954) +zone = ('moz025', 0.0019963950284103472) + +[fips2945470] +centroid = (0.68897664601956565, -1.609435263533588) +description = Madison city, MO +station = ('kver', 0.011272920357075319) +zone = ('moz034', 0.0028923845302265255) + +[fips2945596] +centroid = (0.70166110561111472, -1.6594229768405699) +description = Maitland city, MO +station = ('kfnb', 0.0070550720038069425) +zone = ('moz011', 0.0026214231113133096) + +[fips2945614] +centroid = (0.63863220486676875, -1.5704231754008202) +description = Malden city, MO +station = ('kpof', 0.0056389272826140617) +zone = ('moz110', 0.0046423659236594248) + +[fips2945632] +centroid = (0.68406410268056228, -1.6295004761857259) +description = Malta Bend town, MO +station = ('kszl', 0.0084288571661325518) +zone = ('moz039', 0.0024015386706516596) + +[fips2945668] +centroid = (0.67340333490340798, -1.5796353722586967) +description = Manchester city, MO +station = ('ksus', 0.0022788609695980791) +zone = ('moz063', 0.0013254325326605802) + +[fips2945740] +centroid = (0.64768894524817, -1.6158424893907068) +description = Mansfield city, MO +station = ('kuno', 0.010282451519778807) +zone = ('moz092', 0.0032030173755207849) + +[fips2945830] +centroid = (0.67390743835126155, -1.5764515949970861) +description = Maplewood city, MO +station = ('kstl', 0.0024767582854565966) +zone = ('moz064', 0.0011544909013746244) + +[fips2945848] +centroid = (0.65105039702763357, -1.5704830925540409) +description = Marble Hill city, MO +station = ('kcgi', 0.0056678565488316891) +zone = ('moz086', 0.00069957281038489382) + +[fips2945866] +centroid = (0.69319412943725478, -1.6222430306367903) +description = Marceline city, MO +station = ('kirk', 0.0085443918287478934) +zone = ('moz024', 0.0034229493525740774) + +[fips2946172] +centroid = (0.64581027284132342, -1.6342495170804023) +description = Marionville city, MO +station = ('ksgf', 0.0053478053649432845) +zone = ('moz094', 0.0032953954717855191) + +[fips2946208] +centroid = (0.67314174495511914, -1.5767226097233358) +description = Marlborough village, MO +station = ('kcps', 0.0025868032663295421) +zone = ('moz064', 0.0017481439042695023) + +[fips2946244] +centroid = (0.65325555072435837, -1.5737185664680959) +description = Marquand city, MO +station = ('kfam', 0.006949564607967116) +zone = ('moz085', 0.0026064570982182794) + +[fips2946316] +centroid = (0.68266555289764663, -1.626690356463675) +description = Marshall city, MO +station = ('kdmo', 0.0069492946366955764) +zone = ('moz039', 0.00039699482544662491) + +[fips2946388] +centroid = (0.65173041221079564, -1.6216070501106565) +description = Marshfield city, MO +station = ('ksgf', 0.0068214108850788296) +zone = ('moz091', 0.0011643509686156796) + +[fips2946406] +centroid = (0.63734497218354524, -1.5639167799356031) +description = Marston city, MO +station = ('kdyr', 0.0094798631902272869) +zone = ('moz114', 0.001489597905977014) + +[fips2946424] +centroid = (0.67423686924757553, -1.5892626433192825) +description = Marthasville city, MO +station = ('kfyg', 0.0011574932117867857) +zone = ('moz060', 0.0027200084244838217) + +[fips2946460] +centroid = (0.68244091156962239, -1.5995484096533532) +description = Martinsburg town, MO +station = ('kcou', 0.009182514364843488) +zone = ('moz042', 0.0033052832494105113) + +[fips2946586] +centroid = (0.67573757315161032, -1.5790310520051938) +description = Maryland Heights city, MO +station = ('kstl', 0.0015436625812920435) +zone = ('moz063', 0.0013868648887908515) + +[fips2946640] +centroid = (0.70412516144908044, -1.6557943500592112) +description = Maryville city, MO +station = ('kicl', 0.0068654757473879348) +zone = ('moz002', 0.00035043199375867757) + +[fips2946730] +centroid = (0.64152718249705165, -1.5632473763542931) +description = Matthews city, MO +station = ('kcir', 0.0072401279459917986) +zone = ('moz114', 0.0030725158611361854) + +[fips2946946] +centroid = (0.69613553282564078, -1.6470496047348961) +description = Maysville city, MO +station = ('kstj', 0.0076289848460043743) +zone = ('moz013', 0.00049612703774613821) + +[fips2946964] +centroid = (0.68159934871089578, -1.6376999806517176) +description = Mayview city, MO +station = ('krcm', 0.0047820896931650477) +zone = ('moz038', 0.00068539949307769895) + +[fips2947036] +centroid = (0.69441723872375993, -1.6283585421627311) +description = Meadville city, MO +station = ('kcdj', 0.0038594558146987619) +zone = ('moz024', 0.002940207100056544) + +[fips2947180] +centroid = (0.67199216639000059, -1.5762845146277926) +description = Mehlville CDP, MO +station = ('kcps', 0.0025104199795599144) +zone = ('moz064', 0.0025151357204353489) + +[fips2947270] +centroid = (0.70617414308433657, -1.6086687323794047) +description = Memphis city, MO +station = ('kirk', 0.0080785646010469031) +zone = ('moz009', 0.00033524033260677035) + +[fips2947288] +centroid = (0.69098602613409421, -1.6254936540087523) +description = Mendon city, MO +station = ('kcdj', 0.0072101336640370602) +zone = ('moz032', 0.0026606313243360117) + +[fips2947486] +centroid = (0.70704396282365312, -1.6324048611406772) +description = Mercer town, MO +station = ('klwd', 0.0053533989350263572) +zone = ('moz006', 0.0016246616787136113) + +[fips2947520] +centroid = (0.64088867124350213, -1.6262034445089535) +description = Merriam Woods village, MO +station = ('kbbg', 0.0033389141748734444) +zone = ('moz104', 0.0021917023285786055) + +[fips2947540] +centroid = (0.67027786909210674, -1.6509208497355747) +description = Merwin village, MO +station = ('kojc', 0.0077396936324281365) +zone = ('moz053', 0.0042841791196675987) + +[fips2947594] +centroid = (0.66867506342683014, -1.6085936308616913) +description = Meta city, MO +station = ('kjef', 0.0050265668384287827) +zone = ('moz048', 0.0037270308346684616) + +[fips2947612] +centroid = (0.66316891615593099, -1.6483331198668127) +description = Metz town, MO +station = ('kpts', 0.010335372125281558) +zone = ('moz066', 0.002899948672104666) + +[fips2947648] +centroid = (0.68350879127245523, -1.6034823294274709) +description = Mexico city, MO +station = ('kcou', 0.0076240985816040299) +zone = ('moz042', 0.0010266233730748286) + +[fips2947684] +centroid = (0.68630662387657226, -1.6270990253080295) +description = Miami city, MO +station = ('kcdj', 0.0098752110516432748) +zone = ('moz039', 0.0032598902355447765) + +[fips2947900] +centroid = (0.68292386162694185, -1.5954725946110484) +description = Middletown town, MO +station = ('kfyg', 0.011034863866732711) +zone = ('moz051', 0.0033546260572670673) + +[fips2948062] +centroid = (0.70167889051619259, -1.6253204824403695) +description = Milan city, MO +station = ('ktvk', 0.0088370323179158342) +zone = ('moz016', 0.00021150908017997019) + +[fips2948098] +centroid = (0.65600406032381398, -1.643370014339379) +description = Milford village, MO +station = ('kpts', 0.0082655710080164653) +zone = ('moz077', 0.0029972298247176701) + +[fips2948134] +centroid = (0.70000775521070047, -1.6152317463255565) +description = Millard village, MO +station = ('kirk', 0.00014140338664556516) +zone = ('moz017', 0.0016239876191597666) + +[fips2948242] +centroid = (0.64952667223076499, -1.637833934671808) +description = Miller city, MO +station = ('khfj', 0.0060390147646612194) +zone = ('moz094', 0.0019011369085017639) + +[fips2948386] +centroid = (0.64690775332826989, -1.5826272505690504) +description = Mill Spring village, MO +station = ('kpof', 0.0072477935208280723) +zone = ('moz100', 0.0031257178091990637) + +[fips2948476] +centroid = (0.65895624984697732, -1.6459352992739602) +description = Milo village, MO +station = ('kpts', 0.0079325524920443695) +zone = ('moz066', 0.0017389635926812865) + +[fips2948566] +centroid = (0.65412521338404206, -1.6507129112084922) +description = Mindenmines city, MO +station = ('kpts', 0.0021522047618904964) +zone = ('ksz097', 0.0038123535570209655) + +[fips2948602] +centroid = (0.65649083265219521, -1.5759710709474271) +description = Mine La Motte CDP, MO +station = ('kfam', 0.0032645654799102943) +zone = ('moz085', 0.002467647251680903) + +[fips2948656] +centroid = (0.64414617121271689, -1.5626960093902957) +description = Miner city, MO +station = ('kcir', 0.0051987929344863076) +zone = ('moz111', 0.0025911370531554057) + +[fips2948710] +centroid = (0.66227515049927721, -1.5834436457799632) +description = Mineral Point town, MO +station = ('kfam', 0.0050856807303435092) +zone = ('moz073', 0.0021210847251885343) + +[fips2948880] +centroid = (0.66739591161804346, -1.589448363804987) +description = Miramiguoa Park village, MO +station = ('kfyg', 0.0061700310828379391) +zone = ('moz062', 0.00300724213284039) + +[fips2948980] +centroid = (0.68485025133553812, -1.6458675281391055) +description = Missouri City city, MO +station = ('kmkc', 0.0045713169818687917) +zone = ('moz029', 0.0020406912855460107) + +[fips2949034] +centroid = (0.68795740864298605, -1.6133114652693421) +description = Moberly city, MO +station = ('kver', 0.0089570513467561261) +zone = ('moz033', 0.00091816611174798618) + +[fips2949070] +centroid = (0.67499631436499574, -1.6034766745606943) +description = Mokane city, MO +station = ('kjef', 0.0040007344744789871) +zone = ('moz050', 0.0029039924195672423) + +[fips2949088] +centroid = (0.67623488726867353, -1.5750375641437053) +description = Moline Acres city, MO +station = ('kstl', 0.0016851906304362688) +zone = ('moz064', 0.0019131611735169721) + +[fips2949196] +centroid = (0.64440638235089664, -1.6393168711240578) +description = Monett city, MO +station = ('khfj', 0.001366514041255511) +zone = ('moz094', 0.0034735410187633972) + +[fips2949394] +centroid = (0.69209966836991421, -1.6010340513659433) +description = Monroe City city, MO +station = ('kuin', 0.0086425660779395341) +zone = ('moz027', 0.0030307707571089332) + +[fips2949574] +centroid = (0.680241308019919, -1.5970370902992435) +description = Montgomery City city, MO +station = ('kfyg', 0.0096848655805129736) +zone = ('moz051', 0.00073825801631511527) + +[fips2949592] +centroid = (0.70020796192919676, -1.6006947593593555) +description = Monticello village, MO +station = ('keok', 0.0071199993717880336) +zone = ('moz019', 0.00040392964563914883) + +[fips2949610] +centroid = (0.64545148550699083, -1.5982827143330993) +description = Montier CDP, MO +station = ('kuno', 0.0048498523901280401) +zone = ('moz098', 0.0039121548076350406) + +[fips2949664] +centroid = (0.66773932260166602, -1.6403029123382644) +description = Montrose city, MO +station = ('kgly', 0.0045038285597978761) +zone = ('moz054', 0.0034100345868967388) + +[fips2949790] +centroid = (0.69371008367072939, -1.6357383876521088) +description = Mooresville village, MO +station = ('kcdj', 0.0022130800803517934) +zone = ('moz023', 0.0023968718954288908) + +[fips2949898] +centroid = (0.64309108477330124, -1.5654042367906154) +description = Morehouse city, MO +station = ('kcgi', 0.0069179147948502627) +zone = ('moz110', 0.0035417845301227136) + +[fips2949988] +centroid = (0.64652798713632853, -1.5640284635544381) +description = Morley city, MO +station = ('kcgi', 0.0033405536158577845) +zone = ('moz111', 0.00063078719527177656) + +[fips2950060] +centroid = (0.67491969441083333, -1.5992885475810239) +description = Morrison city, MO +station = ('kfyg', 0.008826268764189309) +zone = ('moz059', 0.004345883046692956) + +[fips2950078] +centroid = (0.65410383310070519, -1.6306690439331062) +description = Morrisville town, MO +station = ('ksgf', 0.004309446845900078) +zone = ('moz079', 0.0024630728050821309) + +[fips2950168] +centroid = (0.68620031587183317, -1.6458340352707597) +description = Mosby city, MO +station = ('kmkc', 0.0053552207341326383) +zone = ('moz029', 0.0016432866845248822) + +[fips2950204] +centroid = (0.67963035551525841, -1.5869421757188784) +description = Moscow Mills city, MO +station = ('kfyg', 0.0062206692583149552) +zone = ('moz052', 0.0021163692960532031) + +[fips2950312] +centroid = (0.70051452901230971, -1.6621464933251369) +description = Mound City city, MO +station = ('kfnb', 0.0047548495328879441) +zone = ('moz011', 0.00077435386775631426) + +[fips2950330] +centroid = (0.65911807677522227, -1.6484800067766607) +description = Moundville town, MO +station = ('kpts', 0.0067120819673567528) +zone = ('moz066', 0.0021187136887770158) + +[fips2950402] +centroid = (0.64811443906651378, -1.6103505665532114) +description = Mountain Grove city, MO +station = ('kuno', 0.0067257581140429783) +zone = ('moz092', 0.0036799034258556723) + +[fips2950438] +centroid = (0.64566024433882185, -1.6005005042136087) +description = Mountain View city, MO +station = ('kuno', 0.0033673993499707859) +zone = ('moz097', 0.0046184633913955052) + +[fips2950510] +centroid = (0.68286785401124528, -1.6300417900532318) +description = Mount Leonard town, MO +station = ('kszl', 0.0071618558537105545) +zone = ('moz039', 0.0026109435742765249) + +[fips2950528] +centroid = (0.7038782846263858, -1.6370676129571351) +description = Mount Moriah town, MO +station = ('klwd', 0.0054802663022104773) +zone = ('moz005', 0.0026322444088063509) + +[fips2950672] +centroid = (0.64761284889278314, -1.6374602073190787) +description = Mount Vernon city, MO +station = ('khfj', 0.0045461292284057356) +zone = ('moz094', 0.0001863867826025602) + +[fips2950834] +centroid = (0.67181333995484127, -1.57927717833631) +description = Murphy CDP, MO +station = ('ksus', 0.003551196227536961) +zone = ('moz063', 0.0026593911199606574) + +[fips29510] +centroid = (0.67432015635948073, -1.5750650879860093) +description = St. Louis city, MO +station = ('kcps', 0.0017652102647043937) +zone = ('moz064', 5.965119272877811e-06) + +[fips2951065000] +centroid = (0.67432015635948073, -1.5750650879860093) +description = St. Louis city, MO +station = ('kcps', 0.0017652102647043937) +zone = ('moz064', 5.965119272877811e-06) + +[fips2951140] +centroid = (0.68291780533443736, -1.642173119898239) +description = Napoleon city, MO +station = ('klxt', 0.0046972534151025576) +zone = ('moz037', 0.0040563814555115976) + +[fips2951302] +centroid = (0.63834492367189044, -1.5813656044126614) +description = Naylor city, MO +station = ('k4m9', 0.0031082299389129141) +zone = ('moz109', 0.0037293199937615761) + +[fips2951356] +centroid = (0.65022073731440566, -1.6483741351042347) +description = Neck City city, MO +station = ('kjln', 0.0019847914455043544) +zone = ('moz088', 0.0017043997270627766) + +[fips2951446] +centroid = (0.63802765772046288, -1.5797616642833709) +description = Neelyville city, MO +station = ('k4m9', 0.003331833723513344) +zone = ('moz109', 0.0031720339369816779) + +[fips2951500] +centroid = (0.68058318311379962, -1.6236943242697015) +description = Nelson city, MO +station = ('kdmo', 0.0051893786389549503) +zone = ('moz039', 0.0033970473838143005) + +[fips2951572] +centroid = (0.64309881658188761, -1.6475770606881415) +description = Neosho city, MO +station = ('khfj', 0.0053752064780653508) +zone = ('moz093', 0.0013228397701821753) + +[fips2951644] +centroid = (0.66051788319519922, -1.6467116915384177) +description = Nevada city, MO +station = ('kpts', 0.0086677793497287395) +zone = ('moz066', 0.00014096436832790381) + +[fips2951662] +centroid = (0.69803399726620519, -1.6052419354727465) +description = Newark village, MO +station = ('kirk', 0.0079187429249486102) +zone = ('moz018', 0.0032996037981812901) + +[fips2951680] +centroid = (0.67574266951302608, -1.6073026108139912) +description = New Bloomfield city, MO +station = ('kjef', 0.0021946940625393293) +zone = ('moz050', 0.003056696350260818) + +[fips2951716] +centroid = (0.66177048854606313, -1.6039559419732921) +description = Newburg city, MO +station = ('kvih', 0.0042020503822405323) +zone = ('moz071', 0.0016336907409174551) + +[fips2951734] +centroid = (0.69423401405888563, -1.6188150992661186) +description = New Cambria city, MO +station = ('kirk', 0.006252857669582371) +zone = ('moz025', 0.0026752826719185184) + +[fips2951770] +centroid = (0.67908083860026802, -1.5961871847666924) +description = New Florence city, MO +station = ('kfyg', 0.0084106358896287904) +zone = ('moz051', 0.00061335053804133862) + +[fips2951824] +centroid = (0.68094081853082578, -1.6187006056671878) +description = New Franklin city, MO +station = ('kver', 0.0015767083503021176) +zone = ('moz040', 0.0023246371395308995) + +[fips2951860] +centroid = (0.7027527392450672, -1.644014442259093) +description = New Hampton city, MO +station = ('klwd', 0.0075326168222690356) +zone = ('moz004', 0.0030059575153860299) + +[fips2951914] +centroid = (0.67378446245216606, -1.5920505100933706) +description = New Haven city, MO +station = ('kfyg', 0.0030702189146110071) +zone = ('moz060', 0.0028919409920254639) + +[fips2952058] +centroid = (0.69087465667452441, -1.5952117202477527) +description = New London city, MO +station = ('kuin', 0.0066522372601246754) +zone = ('moz035', 0.001928722351999258) + +[fips2952076] +centroid = (0.63854047036128381, -1.5629896959435288) +description = New Madrid city, MO +station = ('kcir', 0.0095657236298294819) +zone = ('moz114', 0.0013937330319515452) + +[fips2952148] +centroid = (0.67579286518231341, -1.5862484946076734) +description = New Melle city, MO +station = ('kfyg', 0.0027446332598427248) +zone = ('moz061', 0.0030570857191255128) + +[fips2952292] +centroid = (0.64366599622890819, -1.6438153700046105) +description = Newtonia town, MO +station = ('khfj', 0.0023131181196857299) +zone = ('moz093', 0.0022182643798018108) + +[fips2952328] +centroid = (0.70466715599499463, -1.628960541128329) +description = Newtown town, MO +station = ('ktvk', 0.0078338001691605121) +zone = ('moz006', 0.0032452625071091338) + +[fips2952418] +centroid = (0.65255956577854057, -1.6201915182741187) +description = Niangua city, MO +station = ('ksgf', 0.0081451543625254801) +zone = ('moz091', 0.0019892135047390319) + +[fips2952616] +centroid = (0.64660410094500798, -1.6283282432469164) +description = Nixa city, MO +station = ('ksgf', 0.0034588542158583884) +zone = ('moz095', 0.0020247146379470922) + +[fips2952742] +centroid = (0.63777825017035283, -1.6491744732860292) +description = Noel city, MO +station = ('kgmj', 0.00364564650549065) +zone = ('moz101', 0.0025037579852810856) + +[fips2952760] +centroid = (0.6859566853615473, -1.6349540541395551) +description = Norborne city, MO +station = ('kcdj', 0.0090613832575434979) +zone = ('moz031', 0.0031667243830656566) + +[fips2952796] +centroid = (0.67556525679456081, -1.5760472894758617) +description = Normandy city, MO +station = ('kstl', 0.0011683782793033527) +zone = ('moz064', 0.0014578196087291139) + +[fips2953102] +centroid = (0.6831137709028513, -1.6504659994792124) +description = North Kansas City city, MO +station = ('kmkc', 0.00062231075502026554) +zone = ('ksz104', 0.0027410850208221685) + +[fips2953138] +centroid = (0.63882216650255574, -1.5641987902361403) +description = North Lilbourn village, MO +station = ('kcir', 0.0098395717363118345) +zone = ('moz114', 0.00043567593246628442) + +[fips2953174] +centroid = (0.68389869782735069, -1.6511772560559852) +description = Northmoor city, MO +station = ('kmkc', 0.001186399641982374) +zone = ('ksz104', 0.0024760757026825817) + +[fips2953408] +centroid = (0.67550424008391119, -1.5757248049899708) +description = Northwoods city, MO +station = ('kstl', 0.001405179166860578) +zone = ('moz064', 0.0012873834942690862) + +[fips2953454] +centroid = (0.64764267656969965, -1.6130146371234555) +description = Norwood city, MO +station = ('kuno', 0.0082214250314611541) +zone = ('moz092', 0.0029262782705882801) + +[fips2953462] +centroid = (0.67569362576104508, -1.5758520918523187) +description = Norwood Court town, MO +station = ('kstl', 0.0012186228875949187) +zone = ('moz064', 0.0015007061261496949) + +[fips2953516] +centroid = (0.69834920372911535, -1.6093185359132147) +description = Novelty village, MO +station = ('kirk', 0.0048281001481250783) +zone = ('moz018', 0.0021685641416784225) + +[fips2953534] +centroid = (0.70222336342964464, -1.6180418311410225) +description = Novinger city, MO +station = ('kirk', 0.0031445303979736792) +zone = ('moz017', 0.0016097923037485347) + +[fips2953624] +centroid = (0.6808011572840813, -1.6428512152192238) +description = Oak Grove city, MO +station = ('klxt', 0.003307734538398558) +zone = ('moz037', 0.0029520597670046164) + +[fips2953650] +centroid = (0.66720033002206514, -1.5908586247471836) +description = Oak Grove Village village, MO +station = ('kfyg', 0.0066311612891351021) +zone = ('moz062', 0.0033601177055480468) + +[fips2953750] +centroid = (0.67329390275930801, -1.5775139420061901) +description = Oakland city, MO +station = ('kstl', 0.0030313737037004742) +zone = ('moz063', 0.0013667650586145893) + +[fips2953786] +centroid = (0.65447422687456336, -1.5660756300472725) +description = Oak Ridge town, MO +station = ('kcgi', 0.0050545889000855248) +zone = ('moz087', 0.0020970502129359107) + +[fips2953804] +centroid = (0.68411682907726501, -1.6505922740505943) +description = Oaks village, MO +station = ('kmkc', 0.0014526075506519054) +zone = ('moz029', 0.0028456659704926314) + +[fips2953858] +centroid = (0.68431827497953013, -1.6505650294609706) +description = Oakview village, MO +station = ('kmkc', 0.0016528862613623433) +zone = ('moz029', 0.0026933073614513704) + +[fips2953876] +centroid = (0.67107483878844487, -1.5763540834517773) +description = Oakville CDP, MO +station = ('kcps', 0.0030749744874910305) +zone = ('moz064', 0.0033983054713517735) + +[fips2953894] +centroid = (0.68417751417535688, -1.6505677521746038) +description = Oakwood village, MO +station = ('kmkc', 0.001516151932699845) +zone = ('moz029', 0.0027899197117423279) + +[fips2953948] +centroid = (0.68425146377576385, -1.6506247371746814) +description = Oakwood Park village, MO +station = ('kmkc', 0.0015771137904552774) +zone = ('moz029', 0.0027722633378543951) + +[fips2954038] +centroid = (0.68066788394239908, -1.6400231360591697) +description = Odessa city, MO +station = ('krcm', 0.0044466801378024992) +zone = ('moz038', 0.0027111587220184203) + +[fips2954074] +centroid = (0.67689984026039085, -1.5832815570523304) +description = O'Fallon city, MO +station = ('ksus', 0.002494251393013334) +zone = ('moz061', 0.00054698385762427608) + +[fips2954200] +centroid = (0.65613745583854388, -1.5657471765353397) +description = Old Appleton town, MO +station = ('kcgi', 0.0065362089224204169) +zone = ('moz076', 0.002524154112428133) + +[fips2954352] +centroid = (0.67779748054798405, -1.57577238266538) +description = Old Jamestown CDP, MO +station = ('kstl', 0.0018516127995838519) +zone = ('moz064', 0.0035181920633368374) + +[fips2954416] +centroid = (0.67961386215382713, -1.5838308994343957) +description = Old Monroe city, MO +station = ('kset', 0.0042571206966160458) +zone = ('moz061', 0.0029096774372224551) + +[fips2954560] +centroid = (0.67038719651645151, -1.6149532092302306) +description = Olean town, MO +station = ('kaiz', 0.0054236803831861019) +zone = ('moz057', 0.0036906817894535354) + +[fips2954650] +centroid = (0.67496187901885385, -1.5774000418192049) +description = Olivette city, MO +station = ('kstl', 0.0013625525051489257) +zone = ('moz063', 0.001040886506704616) + +[fips2954686] +centroid = (0.6655753412219958, -1.5787962005010454) +description = Olympian Village city, MO +station = ('kfam', 0.0064318885029651515) +zone = ('moz065', 0.0024596105238036715) + +[fips2954758] +centroid = (0.64726709916796299, -1.5647436471220277) +description = Oran city, MO +station = ('kcgi', 0.0027543338650734429) +zone = ('moz111', 0.0013089876433662823) + +[fips2954848] +centroid = (0.69788032102556707, -1.6605604602739721) +description = Oregon city, MO +station = ('kstj', 0.0048784608751393337) +zone = ('moz011', 0.0021312488097257943) + +[fips2954920] +centroid = (0.64911838735884597, -1.6487055033160183) +description = Oronogo city, MO +station = ('kjln', 0.00088506392836522514) +zone = ('moz088', 0.0017259595562707836) + +[fips2954938] +centroid = (0.68440103849265976, -1.6427981397566707) +description = Orrick city, MO +station = ('klxt', 0.0054046048541881407) +zone = ('moz030', 0.0030406484869449756) + +[fips2955244] +centroid = (0.66557251378860749, -1.6170342874704313) +description = Osage Beach city, MO +station = ('kaiz', 0.0014897783256927826) +zone = ('moz069', 0.0024670788766207262) + +[fips2955352] +centroid = (0.69376577712716048, -1.6468386118816227) +description = Osborn city, MO +station = ('kmci', 0.0093448179646839422) +zone = ('moz013', 0.0025826524068262549) + +[fips2955388] +centroid = (0.66404121426278528, -1.6353386898001094) +description = Osceola city, MO +station = ('kgly', 0.0054726609336192928) +zone = ('moz067', 0.0010852549086015275) + +[fips2955424] +centroid = (0.70157572410410718, -1.6292741244350348) +description = Osgood village, MO +station = ('kcdj', 0.0073366179295609275) +zone = ('moz016', 0.0031948101510237891) + +[fips2955478] +centroid = (0.67549347140242633, -1.6232045325217141) +description = Otterville city, MO +station = ('kdmo', 0.0022450049870697741) +zone = ('moz046', 0.0035934382136768796) + +[fips2955550] +centroid = (0.67537164742063716, -1.5772251772814476) +description = Overland city, MO +station = ('kstl', 0.00094371481073690991) +zone = ('moz063', 0.0014016532390292501) + +[fips2955640] +centroid = (0.66930650609690923, -1.5969302063358515) +description = Owensville city, MO +station = ('kvih', 0.0052652623636069932) +zone = ('moz059', 0.0016201928435837704) + +[fips2955694] +centroid = (0.6388346979665851, -1.5826469727895978) +description = Oxly CDP, MO +station = ('k4m9', 0.0035581752384934557) +zone = ('moz108', 0.0027345292049588145) + +[fips2955766] +centroid = (0.6460779714419943, -1.6269065503981193) +description = Ozark city, MO +station = ('ksgf', 0.0044362206594048218) +zone = ('moz095', 0.00091173725208112055) + +[fips2955892] +centroid = (0.66097868502431079, -1.5717544776476564) +description = Ozora CDP, MO +station = ('kfam', 0.0055278793672003728) +zone = ('moz075', 0.0019729391760872177) + +[fips2955910] +centroid = (0.67163198279226655, -1.5839672445555615) +description = Pacific city, MO +station = ('ksus', 0.0032664283910287637) +zone = ('moz062', 0.0045485837727751686) + +[fips2955964] +centroid = (0.67509448913542047, -1.5761741749124816) +description = Pagedale city, MO +station = ('kstl', 0.0014578648246155188) +zone = ('moz064', 0.0011563360369264742) + +[fips2956036] +centroid = (0.69462217528452908, -1.5974612227607707) +description = Palmyra city, MO +station = ('kuin', 0.0049784644498978847) +zone = ('moz027', 0.0012746464715146114) + +[fips2956144] +centroid = (0.68900746853415595, -1.6057706829696381) +description = Paris city, MO +station = ('kcou', 0.011883134049887289) +zone = ('moz034', 0.00032191418841548164) + +[fips2956226] +centroid = (0.67161822959776085, -1.5799953115103353) +description = Parkdale village, MO +station = ('ksus', 0.0033950130378849054) +zone = ('moz063', 0.0030159386475688888) + +[fips2956272] +centroid = (0.66011240830337592, -1.579713999341499) +description = Park Hills city, MO +station = ('kfam', 0.0014376573083154536) +zone = ('moz074', 0.00056013199170712208) + +[fips2956288] +centroid = (0.68442131921856786, -1.6529015191839078) +description = Parkville city, MO +station = ('kmci', 0.0015438362852471543) +zone = ('ksz104', 0.0019260244001454048) + +[fips2956306] +centroid = (0.66910528708744677, -1.587754870831777) +description = Parkway village, MO +station = ('kfyg', 0.0043855537647272836) +zone = ('moz062', 0.0019185623580068865) + +[fips2956342] +centroid = (0.63898341747214749, -1.5676220266711245) +description = Parma city, MO +station = ('kpof', 0.0074873524519711993) +zone = ('moz114', 0.0023517178856699871) + +[fips2956360] +centroid = (0.7057864880041762, -1.6514620937899107) +description = Parnell city, MO +station = ('kicl', 0.0073017308868032257) +zone = ('moz003', 0.0027434260031949545) + +[fips2956396] +centroid = (0.67558850458019748, -1.5758942939136318) +description = Pasadena Hills city, MO +station = ('kstl', 0.0012485596362512526) +zone = ('moz064', 0.0014198626538205437) + +[fips2956414] +centroid = (0.67563454636586506, -1.5759879308280014) +description = Pasadena Park village, MO +station = ('kstl', 0.0011623586456561256) +zone = ('moz064', 0.0014946270269410077) + +[fips2956432] +centroid = (0.63298315003671624, -1.567756050504385) +description = Pascola village, MO +station = ('kbyh', 0.0055308910521272899) +zone = ('moz115', 0.001130482417318104) + +[fips2956468] +centroid = (0.668838635684327, -1.6467004341647422) +description = Passaic town, MO +station = ('kojc', 0.010356728573987719) +zone = ('moz053', 0.0011295141520215168) + +[fips2956558] +centroid = (0.69938201976727554, -1.6424691800992546) +description = Pattonsburg city, MO +station = ('kcdj', 0.0082957225370278373) +zone = ('moz014', 0.0025233281486448569) + +[fips2956612] +centroid = (0.68525949613854564, -1.586509438784139) +description = Paynesville village, MO +station = ('kppq', 0.0067721206335936319) +zone = ('moz052', 0.0036580155414014624) + +[fips2956620] +centroid = (0.67138720036467425, -1.5802684555382727) +description = Peaceful Village village, MO +station = ('ksus', 0.0035032367821323262) +zone = ('moz063', 0.0033127129619382237) + +[fips2956756] +centroid = (0.67594888016414933, -1.6489131625904205) +description = Peculiar city, MO +station = ('kojc', 0.0039490967976129748) +zone = ('moz043', 0.0021828616394601874) + +[fips2956882] +centroid = (0.6776472600592649, -1.5922927967001324) +description = Pendleton village, MO +station = ('kfyg', 0.0052779792091413053) +zone = ('moz060', 0.0014464944306536195) + +[fips2956900] +centroid = (0.64212335206294802, -1.5678306982364929) +description = Penermon village, MO +station = ('kpof', 0.0068152877819743331) +zone = ('moz110', 0.0019544407150451065) + +[fips2957080] +centroid = (0.68824653988687134, -1.5998009937027018) +description = Perry city, MO +station = ('kuin', 0.010702697488681258) +zone = ('moz035', 0.0024978614272057626) + +[fips2957116] +centroid = (0.6584257744741262, -1.568625346644926) +description = Perryville city, MO +station = ('ksar', 0.007788823798708825) +zone = ('moz076', 0.00077312864537818187) + +[fips2957278] +centroid = (0.66824063352271634, -1.5777617264000958) +description = Pevely city, MO +station = ('kcps', 0.0059465657175797881) +zone = ('moz065', 0.0019555277983156444) + +[fips2957332] +centroid = (0.70512410064645936, -1.6684467130458158) +description = Phelps City CDP, MO +station = ('kafk', 0.004854329741137588) +zone = ('moz001', 0.0022926850657801249) + +[fips2957368] +centroid = (0.6554163032449124, -1.6194815532409925) +description = Phillipsburg village, MO +station = ('kh21', 0.0074133386621621344) +zone = ('moz081', 0.0033147151149024285) + +[fips2957404] +centroid = (0.70599023774105396, -1.6552970883020253) +description = Pickering town, MO +station = ('kicl', 0.0052992838686937551) +zone = ('moz002', 0.001659197664488159) + +[fips2957422] +centroid = (0.64839630974071083, -1.5829394027057695) +description = Piedmont city, MO +station = ('kpof', 0.0085322233229340547) +zone = ('moz100', 0.0033268342893380863) + +[fips2957494] +centroid = (0.64484475669912011, -1.6406707753847074) +description = Pierce City city, MO +station = ('khfj', 0.00084999137144989778) +zone = ('moz094', 0.003660963717915734) + +[fips2957512] +centroid = (0.67829345076152325, -1.611168968892764) +description = Pierpont village, MO +station = ('kcou', 0.0015444854315746972) +zone = ('moz041', 0.0022231739474618899) + +[fips2957602] +centroid = (0.67847276588887329, -1.6216309785747012) +description = Pilot Grove city, MO +station = ('kver', 0.003364924968288874) +zone = ('moz046', 0.0014841244129167636) + +[fips2957656] +centroid = (0.65665641203833192, -1.5820509079434568) +description = Pilot Knob city, MO +station = ('kfam', 0.0038423278026973578) +zone = ('moz084', 0.0021431382185796068) + +[fips2957800] +centroid = (0.67536018060745151, -1.5756061924140052) +description = Pine Lawn city, MO +station = ('kstl', 0.0015652577899668962) +zone = ('moz064', 0.0011187985566548744) + +[fips2957818] +centroid = (0.638341851892407, -1.6474403490478327) +description = Pineville city, MO +station = ('kvbt', 0.0046194036129134182) +zone = ('moz101', 0.0011244191508609687) + +[fips2957926] +centroid = (0.64119975872937751, -1.5580463475432276) +description = Pinhook village, MO +station = ('kcir', 0.0057394751343650841) +zone = ('moz112', 0.0016006329560555651) + +[fips2958088] +centroid = (0.65452691836468102, -1.6095146760145536) +description = Plato village, MO +station = ('ktbn', 0.0042115081867295017) +zone = ('moz082', 0.004762483575596623) + +[fips2958178] +centroid = (0.68692529073652664, -1.6540035898867873) +description = Platte City city, MO +station = ('kmci', 0.0011107391044894777) +zone = ('moz028', 0.00040109890785204231) + +[fips2958196] +centroid = (0.68467140744708621, -1.6519927786022721) +description = Platte Woods city, MO +station = ('kmci', 0.0016572827360726583) +zone = ('ksz104', 0.0025081581029892338) + +[fips2958250] +centroid = (0.6903504295803955, -1.6486965672302483) +description = Plattsburg city, MO +station = ('kmci', 0.005738104382221206) +zone = ('moz021', 0.0011471221754912853) + +[fips2958394] +centroid = (0.67729037513381718, -1.6453596896866527) +description = Pleasant Hill city, MO +station = ('klxt', 0.0030859881731313326) +zone = ('moz043', 0.0029925522469901708) + +[fips2958448] +centroid = (0.65390655853535218, -1.6279697526185568) +description = Pleasant Hope city, MO +station = ('ksgf', 0.0043276325415483249) +zone = ('moz079', 0.0031416667896786723) + +[fips2958520] +centroid = (0.68447048514359654, -1.6490044258570073) +description = Pleasant Valley city, MO +station = ('kmkc', 0.0023824933268096404) +zone = ('moz029', 0.0018191502734010104) + +[fips2958574] +centroid = (0.69779808111121311, -1.6071619198229878) +description = Plevna CDP, MO +station = ('kirk', 0.0065697375305634482) +zone = ('moz018', 0.002711700087337468) + +[fips2958628] +centroid = (0.65452656929883068, -1.5645105060405464) +description = Pocahontas town, MO +station = ('kcgi', 0.0047474828769957815) +zone = ('moz087', 0.0021455788737430545) + +[fips2958898] +centroid = (0.70438621034530113, -1.6246175685374213) +description = Pollock village, MO +station = ('ktvk', 0.0061201507903148973) +zone = ('moz007', 0.0022877588942591038) + +[fips2958916] +centroid = (0.69031089787283773, -1.641230537382407) +description = Polo city, MO +station = ('kcdj', 0.0076323335296031069) +zone = ('moz022', 0.0019457171587709736) + +[fips2958934] +centroid = (0.64347491758239983, -1.6041885245494127) +description = Pomona CDP, MO +station = ('kuno', 0.00031951038243178221) +zone = ('moz097', 0.0016893416945207918) + +[fips2959060] +centroid = (0.63742621726022575, -1.6162324483054797) +description = Pontiac CDP, MO +station = ('kbpk', 0.0033187288100668898) +zone = ('moz105', 0.0031457743669609703) + +[fips2959096] +centroid = (0.64163685898724698, -1.578019738423418) +description = Poplar Bluff city, MO +station = ('kpof', 0.0013605296952026646) +zone = ('moz109', 0.00082128572524595525) + +[fips2959150] +centroid = (0.67943644943536186, -1.5767785300725696) +description = Portage Des Sioux city, MO +station = ('kset', 0.0012322749595361769) +zone = ('ilz099', 0.0027423965340344085) + +[fips2959186] +centroid = (0.63581365520443056, -1.5655514553130208) +description = Portageville city, MO +station = ('kdyr', 0.0086001188961840752) +zone = ('moz114', 0.0029530532593820846) + +[fips2959330] +centroid = (0.66206869550205882, -1.5843232044565057) +description = Potosi city, MO +station = ('kfam', 0.0055388431609733058) +zone = ('moz073', 0.0014910031767212547) + +[fips2959420] +centroid = (0.70772771301141435, -1.6283862230846675) +description = Powersville village, MO +station = ('ktvk', 0.0057619404233028816) +zone = ('iaz095', 0.0033310193927408847) + +[fips2959726] +centroid = (0.67742504473890097, -1.6160110009299868) +description = Prairie Home city, MO +station = ('kver', 0.002518402856721167) +zone = ('moz046', 0.0030334842045341682) + +[fips2959816] +centroid = (0.68618071582433326, -1.6453874229684669) +description = Prathersville village, MO +station = ('kmkc', 0.0056103160020890335) +zone = ('moz029', 0.0019873693249391131) + +[fips2959870] +centroid = (0.66219472572734539, -1.6268686418467659) +description = Preston village, MO +station = ('kh21', 0.0072111717698700381) +zone = ('moz068', 0.0014864681864567822) + +[fips2959942] +centroid = (0.70504894676886842, -1.6334325459108365) +description = Princeton city, MO +station = ('klwd', 0.0058448186817272943) +zone = ('moz006', 0.00052742527643022581) + +[fips2960140] +centroid = (0.65001815694812659, -1.6482792590060964) +description = Purcell city, MO +station = ('kjln', 0.0018330977565707261) +zone = ('moz088', 0.0015393409954846909) + +[fips2960158] +centroid = (0.69725832058674131, -1.6260347235301633) +description = Purdin city, MO +station = ('kcdj', 0.0060673526979391056) +zone = ('moz024', 0.0015921940060636837) + +[fips2960176] +centroid = (0.64260879794109771, -1.6392232516629808) +description = Purdy city, MO +station = ('khfj', 0.0019843452920747348) +zone = ('moz102', 0.0022905140543138689) + +[fips2960284] +centroid = (0.64490769327194697, -1.5735659548783014) +description = Puxico city, MO +station = ('kpof', 0.0038936096820869222) +zone = ('moz110', 0.003419500149883254) + +[fips2960356] +centroid = (0.70531853032513148, -1.6155933087333996) +description = Queen City city, MO +station = ('kirk', 0.0054460328808280572) +zone = ('moz008', 0.0011872522420869637) + +[fips2960410] +centroid = (0.70464773048042006, -1.6594004271866341) +description = Quitman town, MO +station = ('kicl', 0.0060196283295361301) +zone = ('moz002', 0.0025791450327836349) + +[fips2960428] +centroid = (0.63870769035691755, -1.5750949854760961) +description = Qulin city, MO +station = ('kpof', 0.0031496788521788227) +zone = ('moz109', 0.0030825725165751182) + +[fips2960590] +centroid = (0.68340230873479102, -1.6492161517485668) +description = Randolph village, MO +station = ('kmkc', 0.001601942504346729) +zone = ('moz029', 0.0028672111704460814) + +[fips2960644] +centroid = (0.70612141668763395, -1.6311379440899469) +description = Ravanna CDP, MO +station = ('klwd', 0.0066225131386584311) +zone = ('moz006', 0.0016014030162451436) + +[fips2960716] +centroid = (0.70428592372648158, -1.652332245141785) +description = Ravenwood town, MO +station = ('kicl', 0.0079616677570531341) +zone = ('moz002', 0.0028196046006881375) + +[fips2960734] +centroid = (0.65170219023679088, -1.6028487574557042) +description = Raymondville town, MO +station = ('ktbn', 0.0080037037303464283) +zone = ('moz082', 0.0018278130612996207) + +[fips2960752] +centroid = (0.67724539799899319, -1.6486086899024102) +description = Raymore city, MO +station = ('klxt', 0.0031112712687028496) +zone = ('moz043', 0.0030706424853879158) + +[fips2960788] +centroid = (0.68059279987797816, -1.6487250684569332) +description = Raytown city, MO +station = ('klxt', 0.0014232533039864139) +zone = ('moz037', 0.001629411030858597) + +[fips2960824] +centroid = (0.68674807000427918, -1.6417392659527781) +description = Rayville village, MO +station = ('klxt', 0.0078063437166411009) +zone = ('moz030', 0.0010131817147676092) + +[fips2960842] +centroid = (0.69919567096304003, -1.6539515092619079) +description = Rea city, MO +station = ('kstj', 0.0055258802196509584) +zone = ('moz012', 0.001443777730475745) + +[fips2960986] +centroid = (0.64611570546042241, -1.6496286777705682) +description = Redings Mill village, MO +station = ('kjln', 0.0022860542821077894) +zone = ('moz093', 0.0031787601056913004) + +[fips2961094] +centroid = (0.6478046082176997, -1.6435458737148101) +description = Reeds town, MO +station = ('khfj', 0.0043061443901024222) +zone = ('moz088', 0.0028380933788636374) + +[fips2961112] +centroid = (0.64122211639709559, -1.6298104641141724) +description = Reeds Spring city, MO +station = ('kbbg', 0.0044487790713694589) +zone = ('moz103', 0.0010522316959777598) + +[fips2961166] +centroid = (0.68664619513584024, -1.6128747489839081) +description = Renick village, MO +station = ('kver', 0.0079042831527298997) +zone = ('moz033', 0.0020719872690736891) + +[fips2961184] +centroid = (0.69236637213291152, -1.5976555128131027) +description = Rensselaer village, MO +station = ('kuin', 0.0064674946379225124) +zone = ('moz035', 0.0024900228279472777) + +[fips2961238] +centroid = (0.64761564141958627, -1.6315018801455727) +description = Republic city, MO +station = ('ksgf', 0.0025896825779166059) +zone = ('moz090', 0.0032658388157480451) + +[fips2961292] +centroid = (0.70676008502081622, -1.6000532635927851) +description = Revere town, MO +station = ('keok', 0.0032615145156222607) +zone = ('moz010', 0.001683211170671642) + +[fips2961328] +centroid = (0.67583913386078387, -1.5972794118125904) +description = Rhineland town, MO +station = ('kfyg', 0.0075156878998614797) +zone = ('moz051', 0.0038717379214972111) + +[fips2961364] +centroid = (0.66165360384605698, -1.6503381366582115) +description = Richards town, MO +station = ('kpts', 0.0083743064801520412) +zone = ('moz066', 0.0031378932550036581) + +[fips2961418] +centroid = (0.66489839781831728, -1.6469531054805533) +description = Rich Hill city, MO +station = ('kgly', 0.010443129342533436) +zone = ('moz053', 0.0028357797250507747) + +[fips2961562] +centroid = (0.660801586465111, -1.6126797607998753) +description = Richland city, MO +station = ('ktbn', 0.0042982944517776581) +zone = ('moz070', 0.0027239962824989758) + +[fips2961670] +centroid = (0.68548844842982237, -1.6401463563043608) +description = Richmond city, MO +station = ('klxt', 0.0075774760111753936) +zone = ('moz030', 0.001358748864917704) + +[fips2961706] +centroid = (0.67423603148953459, -1.5766086920830582) +description = Richmond Heights city, MO +station = ('kstl', 0.0021289698449731679) +zone = ('moz063', 0.0015091020213679844) + +[fips2961886] +centroid = (0.68859632132226356, -1.6517839674105634) +description = Ridgely village, MO +station = ('kmci', 0.0029613804476527434) +zone = ('moz028', 0.0022063299197230359) + +[fips2961904] +centroid = (0.70472597359078681, -1.6395246874780927) +description = Ridgeway city, MO +station = ('klwd', 0.0044876696885212649) +zone = ('moz005', 0.00082669416221715702) + +[fips2961994] +centroid = (0.63794693624255827, -1.5676312420095748) +description = Risco city, MO +station = ('kpof', 0.0079182837823146696) +zone = ('moz114', 0.002456404343215121) + +[fips2962030] +centroid = (0.64479497990885326, -1.6438521789985352) +description = Ritchey town, MO +station = ('khfj', 0.0024376186395863629) +zone = ('moz093', 0.002243597579626297) + +[fips2962056] +centroid = (0.68378418677512742, -1.6474130346450391) +description = River Bend village, MO +station = ('kmkc', 0.0030393733544836861) +zone = ('moz029', 0.0023510759340086172) + +[fips2962156] +centroid = (0.68368381288984514, -1.6516492978054798) +description = Riverside city, MO +station = ('kmkc', 0.0010645464485838604) +zone = ('ksz104', 0.0020517892188504821) + +[fips2962192] +centroid = (0.676212581960833, -1.5744770167478424) +description = Riverview village, MO +station = ('kstl', 0.0021229524232635843) +zone = ('moz064', 0.0019469357339961971) + +[fips2962210] +centroid = (0.67629511858115998, -1.6497655464905097) +description = Riverview Estates village, MO +station = ('kojc', 0.0031994801547273475) +zone = ('moz043', 0.0029172092029026877) + +[fips2962228] +centroid = (0.62996720363597747, -1.5709963589804676) +description = Rives town, MO +station = ('kbyh', 0.0023932087962675154) +zone = ('moz113', 0.0032928650561926797) + +[fips2962498] +centroid = (0.68031798033395918, -1.6155358874010091) +description = Rocheport city, MO +station = ('kver', 0.0017251862355084494) +zone = ('moz040', 0.0033687285393248492) + +[fips2962570] +centroid = (0.64058878877142444, -1.6259167567260209) +description = Rockaway Beach city, MO +station = ('kbbg', 0.0030763441302881088) +zone = ('moz104', 0.0018442943611449753) + +[fips2962660] +centroid = (0.67385403127615051, -1.5772075145494175) +description = Rock Hill city, MO +station = ('kstl', 0.0024610706676070344) +zone = ('moz063', 0.0011707852718569544) + +[fips2962696] +centroid = (0.70530345068039424, -1.6673669127441919) +description = Rock Port city, MO +station = ('kafk', 0.0053458827165460306) +zone = ('moz001', 0.001451300036394062) + +[fips2962786] +centroid = (0.66448552273046546, -1.6420113627831641) +description = Rockville city, MO +station = ('kgly', 0.0074406133704380496) +zone = ('moz053', 0.0048096741845978274) + +[fips2962894] +centroid = (0.64778520015641761, -1.6244525825632303) +description = Rogersville city, MO +station = ('ksgf', 0.00476574643147867) +zone = ('moz095', 0.0030035870674413388) + +[fips2962912] +centroid = (0.66228159076421711, -1.6015351179408981) +description = Rolla city, MO +station = ('kvih', 0.0032714928426605472) +zone = ('moz071', 0.0012759723808955842) + +[fips2963074] +centroid = (0.66281744175116442, -1.6374253530939162) +description = Roscoe village, MO +station = ('kgly', 0.006952018696843568) +zone = ('moz067', 0.0012000476157743864) + +[fips2963110] +centroid = (0.66994047949440372, -1.5952826155219688) +description = Rosebud city, MO +station = ('kfyg', 0.0066163577411512027) +zone = ('moz059', 0.0017376758312752723) + +[fips2963200] +centroid = (0.69884197999012343, -1.6549777279554954) +description = Rosendale city, MO +station = ('kstj', 0.0049435883263570608) +zone = ('moz012', 0.0010395266022905204) + +[fips2963236] +centroid = (0.69210586428875875, -1.6242226877941577) +description = Rothville village, MO +station = ('kcdj', 0.007557412916381942) +zone = ('moz032', 0.002783344836235515) + +[fips2963560] +centroid = (0.68434380914648685, -1.600906083825187) +description = Rush Hill village, MO +station = ('kcou', 0.0095685632461125561) +zone = ('moz042', 0.0015778104596450855) + +[fips2963596] +centroid = (0.69093663331626276, -1.6584596074533464) +description = Rushville town, MO +station = ('kstj', 0.0034323409157351603) +zone = ('moz020', 0.0031709565005601354) + +[fips2963704] +centroid = (0.67217450093695641, -1.6133562853245336) +description = Russellville city, MO +station = ('kjef', 0.0042217638391537715) +zone = ('moz048', 0.0021466660582371818) + +[fips2963776] +centroid = (0.70361173794302123, -1.6072315933667274) +description = Rutledge town, MO +station = ('kirk', 0.0072068548239551024) +zone = ('moz009', 0.0025454130316689971) + +[fips2963857] +centroid = (0.64275367772230563, -1.6266065632062867) +description = Saddlebrooke village, MO +station = ('kbbg', 0.005185002702167936) +zone = ('moz095', 0.0024905896802457431) + +[fips2963902] +centroid = (0.64625803706092255, -1.6488949413530298) +description = Saginaw village, MO +station = ('kjln', 0.0021606370987922955) +zone = ('moz093', 0.0028516710321078989) + +[fips2963956] +centroid = (0.67590730642136676, -1.5775525312359517) +description = St. Ann city, MO +station = ('kstl', 0.00049363944589335548) +zone = ('moz063', 0.0016821353533583796) + +[fips2964082] +centroid = (0.67711273552254914, -1.5797911254411448) +description = St. Charles city, MO +station = ('kstl', 0.0021749031729743143) +zone = ('moz061', 0.002187735353239983) + +[fips2964136] +centroid = (0.66931530255633931, -1.5880297252823812) +description = St. Clair city, MO +station = ('kfyg', 0.0041659958220888905) +zone = ('moz062', 0.0016177594671045134) + +[fips2964154] +centroid = (0.6855747200547484, -1.5919469771621422) +description = St. Clement CDP, MO +station = ('kppq', 0.008558139256659875) +zone = ('moz036', 0.0012318124914350377) + +[fips2964172] +centroid = (0.66624783403608168, -1.5919629643780906) +description = St. Cloud village, MO +station = ('kfyg', 0.0078283836824347315) +zone = ('moz072', 0.003656237671200332) + +[fips2964180] +centroid = (0.66278937685679229, -1.5716653611360496) +description = Ste. Genevieve city, MO +station = ('ksar', 0.0057005163518698988) +zone = ('moz075', 0.0024508810464530396) + +[fips2964190] +centroid = (0.66769095952809321, -1.6103555581948721) +description = St. Elizabeth village, MO +station = ('kaiz', 0.0047457314561518979) +zone = ('moz057', 0.0023330232068530603) + +[fips2964244] +centroid = (0.70585101282662244, -1.598303710644001) +description = St. Francisville CDP, MO +station = ('keok', 0.0019426389732061331) +zone = ('moz010', 0.0022279803374955719) + +[fips2964370] +centroid = (0.67260074524687852, -1.5762627678253129) +description = St. George city, MO +station = ('kcps', 0.0022862692020410224) +zone = ('moz064', 0.0019565890986018323) + +[fips2964424] +centroid = (0.66326625316831478, -1.5989549802543825) +description = St. James city, MO +station = ('kvih', 0.0031084451544807251) +zone = ('moz071', 0.0032942102641932932) + +[fips2964478] +centroid = (0.67570144483609396, -1.5768397911293148) +description = St. John city, MO +station = ('kstl', 0.00067357907738963604) +zone = ('moz063', 0.0018470756992575283) + +[fips2964550] +centroid = (0.69393750007226418, -1.6549411284010809) +description = St. Joseph city, MO +station = ('kstj', 0.0012873547500580149) +zone = ('moz020', 0.0017549145595413286) + +[fips2965000] +centroid = (0.67432015635948073, -1.5750650879860093) +description = St. Louis city, MO +station = ('kcps', 0.0017652102647043937) +zone = ('moz064', 5.965119272877811e-06) + +[fips2965018] +centroid = (0.67362560258364945, -1.611486077764559) +description = St. Martins city, MO +station = ('kjef', 0.0024747497068912504) +zone = ('moz048', 0.0017177732134562613) + +[fips2965034] +centroid = (0.66102292912084881, -1.5699177105961502) +description = St. Mary city, MO +station = ('ksar', 0.0059131493638872601) +zone = ('moz076', 0.0033841056118261376) + +[fips2965108] +centroid = (0.67799664006892912, -1.583728256621086) +description = St. Paul city, MO +station = ('ksus', 0.0036436262004815208) +zone = ('moz061', 0.0014368559555775816) + +[fips2965126] +centroid = (0.67690011951307127, -1.5813568777664013) +description = St. Peters city, MO +station = ('ksus', 0.0024093304575553212) +zone = ('moz061', 0.00095449142467768334) + +[fips2965144] +centroid = (0.66014176474139452, -1.6083199981415635) +description = St. Robert city, MO +station = ('ktbn', 0.0015874927759558202) +zone = ('moz070', 0.00079511512912492667) + +[fips2965162] +centroid = (0.66963132932399794, -1.6094728579256761) +description = St. Thomas town, MO +station = ('kjef', 0.0041645575977747465) +zone = ('moz048', 0.0025774725323830304) + +[fips2965234] +centroid = (0.65693953934959037, -1.5975816504791582) +description = Salem city, MO +station = ('kvih', 0.0091863477928162216) +zone = ('moz083', 0.00068858284456831456) + +[fips2965450] +centroid = (0.68806595066916743, -1.6197096852275208) +description = Salisbury city, MO +station = ('kver', 0.008596085565812565) +zone = ('moz032', 0.0026807444300422012) + +[fips2965954] +centroid = (0.6723700301730573, -1.5773775445251468) +description = Sappington CDP, MO +station = ('kcps', 0.0031880365749036212) +zone = ('moz063', 0.0022271094055644615) + +[fips2965990] +centroid = (0.64695037426860369, -1.6427477521011655) +description = Sarcoxie city, MO +station = ('khfj', 0.0032544935126275071) +zone = ('moz088', 0.0038522608959476786) + +[fips2966044] +centroid = (0.69706308805661321, -1.6550362488453148) +description = Savannah city, MO +station = ('kstj', 0.0032372104866307825) +zone = ('moz012', 0.00084551521343617219) + +[fips2966134] +centroid = (0.66355932885630964, -1.6426475527488085) +description = Schell City city, MO +station = ('kgly', 0.008443242452403521) +zone = ('moz066', 0.0042778974838169996) + +[fips2966337] +centroid = (0.67005293105810959, -1.5811081508946996) +description = Scotsdale town, MO +station = ('ksus', 0.0045885360127808413) +zone = ('moz065', 0.002385658292919225) + +[fips2966368] +centroid = (0.64967539173632738, -1.5627432729064397) +description = Scott City city, MO +station = ('kcgi', 0.00064425894842083707) +zone = ('moz111', 0.0030076599867237454) + +[fips2966440] +centroid = (0.67551172754640232, -1.6272512703786808) +description = Sedalia city, MO +station = ('kdmo', 0.00095175328991850322) +zone = ('moz045', 0.00080788951216764521) + +[fips2966476] +centroid = (0.65475353191476005, -1.5691560489105798) +description = Sedgewickville village, MO +station = ('kcgi', 0.0066432056424639979) +zone = ('moz076', 0.0035439771349196339) + +[fips2966530] +centroid = (0.63745356656960439, -1.6395446540447356) +description = Seligman city, MO +station = ('krog', 0.0035486815489283773) +zone = ('moz102', 0.0036007185413486449) + +[fips2966638] +centroid = (0.63065735918209365, -1.5736125551693296) +description = Senath city, MO +station = ('kbyh', 0.0041743318988980201) +zone = ('moz113', 0.0026032613941501478) + +[fips2966674] +centroid = (0.64305809805043856, -1.6512428106226902) +description = Seneca city, MO +station = ('kgmj', 0.0045507926131831385) +zone = ('okz058', 0.0028155622060735599) + +[fips2966800] +centroid = (0.64836023378507213, -1.6191202351792446) +description = Seymour city, MO +station = ('ksgf', 0.0086728291994009679) +zone = ('moz091', 0.0027519864597529854) + +[fips2967178] +centroid = (0.69277388905995962, -1.6063948301634436) +description = Shelbina city, MO +station = ('kirk', 0.0098567008360496873) +zone = ('moz026', 0.0018948096876623436) + +[fips2967196] +centroid = (0.69476894002132927, -1.6063990713135261) +description = Shelbyville city, MO +station = ('kirk', 0.0085247007584949817) +zone = ('moz026', 0.00051959875943411869) + +[fips2967214] +centroid = (0.65726230308816169, -1.6457706623656199) +description = Sheldon city, MO +station = ('kpts', 0.0070237142780298929) +zone = ('moz077', 0.0028149043674293665) + +[fips2967232] +centroid = (0.63896875670643083, -1.6335421874944467) +description = Shell Knob CDP, MO +station = ('kbbg', 0.0057120456916383766) +zone = ('moz103', 0.0030799791676723539) + +[fips2967358] +centroid = (0.70715810735673357, -1.6513363253640121) +description = Sheridan town, MO +station = ('kicl', 0.0065496408606438928) +zone = ('moz003', 0.0026386027611331798) + +[fips2967628] +centroid = (0.6464185026323509, -1.6497362424123687) +description = Shoal Creek Drive village, MO +station = ('kjln', 0.0019969804847894432) +zone = ('moz093', 0.0034401770651435893) + +[fips2967632] +centroid = (0.64607446333019769, -1.6492210212171798) +description = Shoal Creek Estates village, MO +station = ('kjln', 0.0023171744814720692) +zone = ('moz093', 0.0029042911865237043) + +[fips2967700] +centroid = (0.67346335677638414, -1.5765231709497105) +description = Shrewsbury city, MO +station = ('kcps', 0.0024552141261548802) +zone = ('moz064', 0.0014220674087641841) + +[fips2967718] +centroid = (0.68374826789912135, -1.6441153571964435) +description = Sibley village, MO +station = ('klxt', 0.0042873524335562945) +zone = ('moz037', 0.0035221283306216197) + +[fips2967790] +centroid = (0.64382729955837747, -1.563586127308813) +description = Sikeston city, MO +station = ('kcgi', 0.006017162045273629) +zone = ('moz111', 0.0028808545688849456) + +[fips2967808] +centroid = (0.68286347323482277, -1.5892398144126665) +description = Silex village, MO +station = ('kfyg', 0.0094219922406808543) +zone = ('moz052', 0.0017553625109783019) + +[fips2967880] +centroid = (0.64644757981768919, -1.648803678086443) +description = Silver Creek village, MO +station = ('kjln', 0.0019881323533799144) +zone = ('moz093', 0.0029507203652484252) + +[fips2968132] +centroid = (0.70315620700825066, -1.6594506577625066) +description = Skidmore city, MO +station = ('kicl', 0.0075087450957648022) +zone = ('moz002', 0.0029026307599989863) + +[fips2968204] +centroid = (0.6845753619783489, -1.6242967246610274) +description = Slater city, MO +station = ('kver', 0.007190292455458127) +zone = ('moz039', 0.0023909739079898862) + +[fips2968384] +centroid = (0.67510606066836121, -1.6247688885835692) +description = Smithton city, MO +station = ('kdmo', 0.0011902924345999454) +zone = ('moz045', 0.0027528142240081746) + +[fips2968420] +centroid = (0.68760907583087294, -1.650570719234332) +description = Smithville city, MO +station = ('kmci', 0.0027727020579659304) +zone = ('moz029', 0.0025256462092528814) + +[fips2968762] +centroid = (0.63945326010678449, -1.604914738597875) +description = South Fork CDP, MO +station = ('kuno', 0.004350458883624635) +zone = ('moz097', 0.0025594687845129005) + +[fips2968852] +centroid = (0.69861126491630221, -1.6176575619996107) +description = South Gifford village, MO +station = ('kirk', 0.0022026255727408952) +zone = ('moz017', 0.0030611109416156961) + +[fips2968870] +centroid = (0.7043889679655192, -1.6061467490635652) +description = South Gorin town, MO +station = ('keok', 0.0080915252588906125) +zone = ('moz009', 0.0023046122394394459) + +[fips2968888] +centroid = (0.65231452155156044, -1.6378685096442902) +description = South Greenfield village, MO +station = ('ksgf', 0.0068423102410398477) +zone = ('moz089', 0.001002313507022837) + +[fips2968942] +centroid = (0.70822956498453282, -1.6323030211788232) +description = South Lineville town, MO +station = ('klwd', 0.0050721295269772941) +zone = ('moz006', 0.0027903411737934436) + +[fips2969230] +centroid = (0.63734701421877016, -1.6512118484817599) +description = Southwest City town, MO +station = ('kgmj', 0.0023954056502206271) +zone = ('okz063', 0.0033369299108759877) + +[fips2969266] +centroid = (0.6769876652283513, -1.5744230860739556) +description = Spanish Lake CDP, MO +station = ('kstl', 0.0022640724511818707) +zone = ('moz064', 0.0027134647785717805) + +[fips2969302] +centroid = (0.64580234904651923, -1.6246284768452464) +description = Sparta city, MO +station = ('ksgf', 0.0058009039917729282) +zone = ('moz095', 0.001561784265045503) + +[fips2969464] +centroid = (0.7023756434068813, -1.6334927423167378) +description = Spickard city, MO +station = ('kcdj', 0.0074446645138742246) +zone = ('moz015', 0.0022827126315882141) + +[fips2969518] +centroid = (0.64338412555471103, -1.6284896338428483) +description = Spokane CDP, MO +station = ('kbbg', 0.0060001202791697154) +zone = ('moz095', 0.002469807804379315) + +[fips2970000] +centroid = (0.64916041488723397, -1.6282404357322484) +description = Springfield city, MO +station = ('ksgf', 0.0014504721533240522) +zone = ('moz090', 0.0013198623115542884) + +[fips2970270] +centroid = (0.70191178725157866, -1.6500009914066036) +description = Stanberry city, MO +station = ('kstj', 0.0093427514562375684) +zone = ('moz004', 0.0017103384973959778) + +[fips2970414] +centroid = (0.64337351395285891, -1.6438633491057477) +description = Stark City town, MO +station = ('khfj', 0.0024134936397457916) +zone = ('moz093', 0.002260342767442899) + +[fips2970558] +centroid = (0.62997292831592411, -1.5683895526629814) +description = Steele city, MO +station = ('kbyh', 0.0025572743936538487) +zone = ('moz115', 0.002297198392541353) + +[fips2970576] +centroid = (0.66269467529157911, -1.5944382252298539) +description = Steelville city, MO +station = ('kvih', 0.0063436365713480467) +zone = ('moz072', 0.00070593995377662446) + +[fips2970648] +centroid = (0.64162956351097378, -1.6439319929052287) +description = Stella town, MO +station = ('khfj', 0.0033777806863027672) +zone = ('moz101', 0.0032184052263015002) + +[fips2970738] +centroid = (0.69388100376437722, -1.6493175204715225) +description = Stewartsville city, MO +station = ('kstj', 0.0056073818968773656) +zone = ('moz013', 0.002700322206846155) + +[fips2970828] +centroid = (0.65793483080883264, -1.637047035525254) +description = Stockton city, MO +station = ('ksgf', 0.0099055311632666489) +zone = ('moz078', 0.00096092070422063296) + +[fips2970954] +centroid = (0.66278030114468189, -1.6504690014455259) +description = Stotesbury town, MO +station = ('kpts', 0.0094340133737110948) +zone = ('moz066', 0.0037502888886202746) + +[fips2970990] +centroid = (0.64754821935058171, -1.6397068823987084) +description = Stotts City city, MO +station = ('khfj', 0.0036608463713751161) +zone = ('moz094', 0.0016081350167190822) + +[fips2971008] +centroid = (0.65996492798158246, -1.6147258800951583) +description = Stoutland city, MO +station = ('kh21', 0.0036288173646493284) +zone = ('moz081', 0.0028868157935563708) + +[fips2971026] +centroid = (0.69024117196922052, -1.6032256438543799) +description = Stoutsville village, MO +station = ('kuin', 0.011101742088602389) +zone = ('moz034', 0.0021270479841987537) + +[fips2971044] +centroid = (0.67093620728595904, -1.6229840799838948) +description = Stover city, MO +station = ('kdmo', 0.005367805694610003) +zone = ('moz056', 0.0014563418544652779) + +[fips2971062] +centroid = (0.65047763232700662, -1.6252452238430235) +description = Strafford city, MO +station = ('ksgf', 0.0037170183117989893) +zone = ('moz091', 0.0033915461295987936) + +[fips2971098] +centroid = (0.67648766330423982, -1.6434864452537798) +description = Strasburg city, MO +station = ('klxt', 0.0045329742545910674) +zone = ('moz043', 0.0032521473452422189) + +[fips2971224] +centroid = (0.68476958221751083, -1.6106331877189868) +description = Sturgeon city, MO +station = ('kcou', 0.0073453556249701343) +zone = ('moz041', 0.0042693108687593025) + +[fips2971368] +centroid = (0.68311398034236148, -1.6477400220803999) +description = Sugar Creek city, MO +station = ('kmkc', 0.0026226690964193449) +zone = ('moz037', 0.0024387189852161568) + +[fips2971440] +centroid = (0.66692866952399221, -1.5911078403110759) +description = Sullivan city, MO +station = ('kfyg', 0.0069519111472742239) +zone = ('moz062', 0.0036798195461250688) + +[fips2971512] +centroid = (0.64888805625746027, -1.5997284927255739) +description = Summersville city, MO +station = ('kuno', 0.0061600244597718838) +zone = ('moz098', 0.0035959936621761551) + +[fips2971620] +centroid = (0.69212878046183746, -1.6274048768061489) +description = Sumner town, MO +station = ('kcdj', 0.0053543766862206941) +zone = ('moz024', 0.0041604439548919726) + +[fips2971628] +centroid = (0.63819327201318465, -1.6168387233277453) +description = Sundown CDP, MO +station = ('kbpk', 0.004226422919605421) +zone = ('moz105', 0.003077258741316861) + +[fips2971728] +centroid = (0.66616721727793216, -1.619353707873284) +description = Sunrise Beach village, MO +station = ('kh21', 0.0036896725740529438) +zone = ('moz069', 0.0024790403233860081) + +[fips2971746] +centroid = (0.67249710759589509, -1.5779396976239215) +description = Sunset Hills city, MO +station = ('kcps', 0.0035927741769236402) +zone = ('moz063', 0.0019649273504843954) + +[fips2971890] +centroid = (0.6800549592156836, -1.6304255705024531) +description = Sweet Springs city, MO +station = ('kszl', 0.0044203727750470089) +zone = ('moz039', 0.0041812311046208186) + +[fips2972034] +centroid = (0.67546558104097953, -1.5768869673789963) +description = Sycamore Hills village, MO +station = ('kstl', 0.0008830247097625372) +zone = ('moz063', 0.0016617714040447148) + +[fips2972106] +centroid = (0.67491128192383854, -1.6209977382154925) +description = Syracuse city, MO +station = ('kdmo', 0.00403961318542657) +zone = ('moz046', 0.0031726069795204046) + +[fips2972196] +centroid = (0.63715094393060112, -1.5676023917170396) +description = Tallapoosa city, MO +station = ('kpof', 0.0083461889256523994) +zone = ('moz114', 0.002782898530996569) + +[fips2972232] +centroid = (0.64119928749047961, -1.6237702984520406) +description = Taneyville village, MO +station = ('kbbg', 0.0043022113052099296) +zone = ('moz104', 0.0014563614723159168) + +[fips2972304] +centroid = (0.67187976718617204, -1.6070896282853702) +description = Taos city, MO +station = ('kjef', 0.0020566890373744087) +zone = ('moz049', 0.003037613510162233) + +[fips2972340] +centroid = (0.70586329994455643, -1.6647564063286917) +description = Tarkio city, MO +station = ('ksda', 0.0053763500379463485) +zone = ('moz001', 0.00061617290628763024) + +[fips2972376] +centroid = (0.6869198627625529, -1.5914558589639236) +description = Tarrants village, MO +station = ('kppq', 0.0073420633571836527) +zone = ('moz036', 0.00029268128182049119) + +[fips2972780] +centroid = (0.66153260016901616, -1.5815678357130898) +description = Terre du Lac CDP, MO +station = ('kfam', 0.0034763348110531112) +zone = ('moz074', 0.0025623179765235167) + +[fips2972826] +centroid = (0.63743543259867619, -1.5976880282970674) +description = Thayer city, MO +station = ('kuno', 0.0080596857422693471) +zone = ('moz106', 0.0034550551299558367) + +[fips2972898] +centroid = (0.63844725232593491, -1.617270762130784) +description = Theodosia village, MO +station = ('kbpk', 0.0046349945223729825) +zone = ('moz105', 0.0032851039961224941) + +[fips2973006] +centroid = (0.64211956469847109, -1.5975687001361085) +description = Thomasville CDP, MO +station = ('kuno', 0.0053625940975913864) +zone = ('moz106', 0.0025760867680316196) + +[fips2973127] +centroid = (0.67322599199811295, -1.5881228385979749) +description = Three Creeks village, MO +station = ('kfyg', 0.00025480522288795704) +zone = ('moz062', 0.0030394584542217068) + +[fips2973240] +centroid = (0.66856168683862061, -1.6326210899817066) +description = Tightwad village, MO +station = ('kgly', 0.0021095511085786989) +zone = ('moz055', 0.0034897069011092644) + +[fips2973330] +centroid = (0.69006627252487829, -1.6308586565030427) +description = Tina village, MO +station = ('kcdj', 0.005226268315786849) +zone = ('moz031', 0.0021206501959899092) + +[fips2973348] +centroid = (0.70093955159175525, -1.6337966739526801) +description = Tindall town, MO +station = ('kcdj', 0.0060179223518624734) +zone = ('moz015', 0.0010097816672375063) + +[fips2973420] +centroid = (0.67465806955595931, -1.6193385758686691) +description = Tipton city, MO +station = ('kver', 0.0051603820515031323) +zone = ('moz046', 0.0033194888989378042) + +[fips2973618] +centroid = (0.6742509366013465, -1.5791566458981672) +description = Town and Country city, MO +station = ('kstl', 0.002569625117300705) +zone = ('moz063', 0.00051528754666789033) + +[fips2973690] +centroid = (0.68727589247666732, -1.6544336564677713) +description = Tracy city, MO +station = ('kmci', 0.0015755035952302703) +zone = ('moz028', 0.0002525943903526362) + +[fips2973816] +centroid = (0.69954986808143982, -1.6336698408759374) +description = Trenton city, MO +station = ('kcdj', 0.0046249692328187821) +zone = ('moz015', 0.00075616695559373485) + +[fips2973852] +centroid = (0.6889903468541938, -1.6504036388650385) +description = Trimble city, MO +station = ('kmci', 0.0038542262990869922) +zone = ('moz021', 0.0030402660523640465) + +[fips2973870] +centroid = (0.68937634387156477, -1.6265396996426427) +description = Triplett city, MO +station = ('kcdj', 0.0076322692070992255) +zone = ('moz032', 0.0031269020515806681) + +[fips2973942] +centroid = (0.68022825295711409, -1.5877471390231908) +description = Troy city, MO +station = ('kfyg', 0.0067548733706548842) +zone = ('moz052', 0.0014717840934539901) + +[fips2973978] +centroid = (0.67741431096400129, -1.5903919586117854) +description = Truesdale city, MO +station = ('kfyg', 0.0043081838871825784) +zone = ('moz060', 0.00098975203600002175) + +[fips2974014] +centroid = (0.68075049037589597, -1.5924043232393348) +description = Truxton village, MO +station = ('kfyg', 0.0079932783810096105) +zone = ('moz051', 0.0033343422227298824) + +[fips2974176] +centroid = (0.69180667994838185, -1.6462124924657622) +description = Turney village, MO +station = ('kmci', 0.0080980601319462636) +zone = ('moz021', 0.0012856332916361432) + +[fips2974194] +centroid = (0.66736261073591541, -1.613732124525658) +description = Tuscumbia town, MO +station = ('kaiz', 0.0026918788708328776) +zone = ('moz057', 0.00058587060694972241) + +[fips2974284] +centroid = (0.67309877494893511, -1.5795400947348301) +description = Twin Oaks village, MO +station = ('ksus', 0.0025088805256398366) +zone = ('moz063', 0.0015290582893781051) + +[fips2974473] +centroid = (0.65665224070141959, -1.6371808848255895) +description = Umber View Heights village, MO +station = ('ksgf', 0.0089593453936862438) +zone = ('moz078', 0.001899326473514163) + +[fips2974626] +centroid = (0.67090166722006195, -1.5881299769946156) +description = Union city, MO +station = ('kfyg', 0.0025787275330338747) +zone = ('moz062', 0.0012257286460998476) + +[fips2975130] +centroid = (0.69777245967779378, -1.6510508593115558) +description = Union Star town, MO +station = ('kstj', 0.0056550472434396086) +zone = ('moz013', 0.0029955063413763367) + +[fips2975166] +centroid = (0.70643437167580891, -1.6232332780944947) +description = Unionville city, MO +station = ('ktvk', 0.0038248082556884373) +zone = ('moz007', 0.00016481868871851536) + +[fips2975202] +centroid = (0.67984682870238333, -1.6475715978075827) +description = Unity Village village, MO +station = ('klxt', 0.00050374273580552746) +zone = ('moz037', 0.0012138476739123518) + +[fips2975220] +centroid = (0.6748430570033781, -1.5765820583586727) +description = University City city, MO +station = ('kstl', 0.0015479958779390463) +zone = ('moz064', 0.0012890473485279864) + +[fips2975238] +centroid = (0.67531288218472252, -1.5757325891584346) +description = Uplands Park village, MO +station = ('kstl', 0.0015191338924745545) +zone = ('moz064', 0.0011170275344661964) + +[fips2975310] +centroid = (0.66049287262701817, -1.6260807129559534) +description = Urbana city, MO +station = ('kh21', 0.0069373986136963862) +zone = ('moz068', 0.0027084316016828952) + +[fips2975346] +centroid = (0.67126090833999996, -1.6405917992360546) +description = Urich city, MO +station = ('kgly', 0.004701368726266828) +zone = ('moz054', 0.0031112250165934371) + +[fips2975364] +centroid = (0.69368983785140625, -1.6341280247111711) +description = Utica village, MO +station = ('kcdj', 0.0013827733000814936) +zone = ('moz023', 0.0012529123638741345) + +[fips2975472] +centroid = (0.67283728972040124, -1.5794013410592969) +description = Valley Park city, MO +station = ('ksus', 0.0027541939183672883) +zone = ('moz063', 0.0017120561225509657) + +[fips2975580] +centroid = (0.64591528930241593, -1.5884465971742199) +description = Van Buren town, MO +station = ('kpof', 0.010573310854562928) +zone = ('moz107', 0.0013530331786485764) + +[fips2975688] +centroid = (0.68605341150869292, -1.5967902309298414) +description = Vandalia city, MO +station = ('kppq', 0.011185540203441778) +zone = ('moz035', 0.0038585632930833117) + +[fips2975706] +centroid = (0.68349100636737736, -1.6030430475080364) +description = Vandiver village, MO +station = ('kcou', 0.0078240253376891025) +zone = ('moz042', 0.00095727072549975823) + +[fips2975724] +centroid = (0.64561538937704566, -1.5653250512024524) +description = Vanduser village, MO +station = ('kcgi', 0.0044660813205139585) +zone = ('moz111', 0.0019671240207544964) + +[fips2975796] +centroid = (0.67533890504386973, -1.5759177336854862) +description = Velda City city, MO +station = ('kstl', 0.0013954602193908872) +zone = ('moz064', 0.0012124107798583696) + +[fips2975814] +centroid = (0.67530291635469353, -1.5758148988859586) +description = Velda Village Hills village, MO +station = ('kstl', 0.0014782921357027795) +zone = ('moz064', 0.0011395145079973925) + +[fips2975886] +centroid = (0.64511221095369575, -1.6369520198007754) +description = Verona town, MO +station = ('khfj', 0.0033816909636326217) +zone = ('moz094', 0.0025852306843843873) + +[fips2975922] +centroid = (0.67078890149709069, -1.6204659189391175) +description = Versailles city, MO +station = ('kdmo', 0.0066036765049724729) +zone = ('moz056', 0.00057451740617313872) + +[fips2976012] +centroid = (0.65825195713392004, -1.5905319340177955) +description = Viburnum city, MO +station = ('kfam', 0.0096678949554783022) +zone = ('moz072', 0.0051483427789884339) + +[fips2976102] +centroid = (0.66650329787869611, -1.6048407366375905) +description = Vienna city, MO +station = ('kvih', 0.0026974019420960942) +zone = ('moz058', 0.00057781144029744197) + +[fips2976157] +centroid = (0.66667180941797621, -1.6182916750234455) +description = Village of Four Seasons village, MO +station = ('kaiz', 0.0029019871496494044) +zone = ('moz069', 0.0030364494743401532) + +[fips2976192] +centroid = (0.67139983654845869, -1.5861915096075958) +description = Villa Ridge CDP, MO +station = ('kfyg', 0.0025798789931764507) +zone = ('moz062', 0.0028198128485028206) + +[fips2976246] +centroid = (0.67525221453992312, -1.5767307778642352) +description = Vinita Park city, MO +station = ('kstl', 0.0011231068860250916) +zone = ('moz063', 0.0016380403856831004) + +[fips2976264] +centroid = (0.67517946921670002, -1.5765502584597015) +description = Vinita Terrace village, MO +station = ('kstl', 0.0012423232772521245) +zone = ('moz064', 0.0014377580313044002) + +[fips2976390] +centroid = (0.66303009266722746, -1.6347485939800104) +description = Vista village, MO +station = ('kgly', 0.006481836879335125) +zone = ('moz067', 0.001753154060142385) + +[fips2976444] +centroid = (0.65008194873228697, -1.6510863418552488) +description = Waco city, MO +station = ('kjln', 0.0021924555223383252) +zone = ('moz088', 0.0036876909769377863) + +[fips2976660] +centroid = (0.66145817932971118, -1.6446398809965452) +description = Walker city, MO +station = ('kpts', 0.010434430900883741) +zone = ('moz066', 0.001750779555118335) + +[fips2976840] +centroid = (0.65294919308075583, -1.632720189776635) +description = Walnut Grove city, MO +station = ('ksgf', 0.0038552000442647538) +zone = ('moz090', 0.0039132454571945826) + +[fips2976966] +centroid = (0.63449364523785479, -1.5675727385730482) +description = Wardell town, MO +station = ('kbyh', 0.0070184179313662063) +zone = ('moz115', 0.0025250727660867233) + +[fips2977002] +centroid = (0.67182363739742801, -1.6088314319722754) +description = Wardsville village, MO +station = ('kjef', 0.0019155306597132317) +zone = ('moz048', 0.0014158622857989966) + +[fips2977092] +centroid = (0.67652658414655942, -1.635896531935632) +description = Warrensburg city, MO +station = ('krcm', 0.001002781393626294) +zone = ('moz044', 0.0010855148287425029) + +[fips2977128] +centroid = (0.67751754718925672, -1.5906114861251011) +description = Warrenton city, MO +station = ('kfyg', 0.0044737231005759145) +zone = ('moz060', 0.0010085563610080343) + +[fips2977146] +centroid = (0.66756927517264419, -1.6295838680173862) +description = Warsaw city, MO +station = ('kgly', 0.0046890652601136156) +zone = ('moz055', 0.0013618760843318366) + +[fips2977182] +centroid = (0.67381793786721933, -1.5776234265101678) +description = Warson Woods city, MO +station = ('kstl', 0.0025193558435390707) +zone = ('moz063', 0.00092037974614381441) + +[fips2977200] +centroid = (0.63859523879321145, -1.6400108140346508) +description = Washburn city, MO +station = ('krog', 0.004311015585199772) +zone = ('moz102', 0.002850445393397526) + +[fips2977416] +centroid = (0.67285791951215979, -1.5885199882692662) +description = Washington city, MO +station = ('kfyg', 0.00068921833225404048) +zone = ('moz062', 0.0025870888215794477) + +[fips2977794] +centroid = (0.64190115419587657, -1.6156068524883951) +description = Wasola CDP, MO +station = ('kbpk', 0.007320684811732577) +zone = ('moz105', 0.0028315889189081981) + +[fips2977848] +centroid = (0.70650764059780768, -1.6689445682149473) +description = Watson village, MO +station = ('kafk', 0.0036633732769871044) +zone = ('nez091', 0.0033928334872836904) + +[fips2977866] +centroid = (0.68429136200246443, -1.6321993311679623) +description = Waverly city, MO +station = ('kszl', 0.0082784660825192778) +zone = ('moz031', 0.0038401459805521435) + +[fips2977920] +centroid = (0.70504845807667793, -1.5982929943223938) +description = Wayland city, MO +station = ('keok', 0.0022522428202097189) +zone = ('moz010', 0.002179550124270963) + +[fips2977992] +centroid = (0.6600956531425568, -1.6095414493652793) +description = Waynesville city, MO +station = ('ktbn', 0.0019370119676183632) +zone = ('moz070', 0.00018316818065965357) + +[fips2978028] +centroid = (0.69654804139434978, -1.6448361956308095) +description = Weatherby town, MO +station = ('kstj', 0.0093756835033593031) +zone = ('moz013', 0.0021941232112657472) + +[fips2978046] +centroid = (0.68476874445946989, -1.6527593446630404) +description = Weatherby Lake city, MO +station = ('kmci', 0.0012510646584768487) +zone = ('ksz104', 0.0022878614271968798) + +[fips2978064] +centroid = (0.66132631970472311, -1.6325715051776575) +description = Weaubleau city, MO +station = ('kgly', 0.0084064390166445572) +zone = ('moz068', 0.0031339886892481771) + +[fips2978118] +centroid = (0.64823559982318724, -1.6487701328582196) +description = Webb City city, MO +station = ('kjln', 0.0004767980495253747) +zone = ('moz088', 0.002074053384875916) + +[fips2978154] +centroid = (0.67346323460333657, -1.5769815816777468) +description = Webster Groves city, MO +station = ('kcps', 0.0028104130723040398) +zone = ('moz063', 0.0015335694888315991) + +[fips2978226] +centroid = (0.6612945198057516, -1.5745884385672897) +description = Weingarten CDP, MO +station = ('kfam', 0.0036686641508819431) +zone = ('moz075', 0.0003145017843399713) + +[fips2978314] +centroid = (0.6756061324056426, -1.5821852284826903) +description = Weldon Spring city, MO +station = ('ksus', 0.0010369523473447448) +zone = ('moz061', 0.0013027693037180668) + +[fips2978334] +centroid = (0.67552776712222806, -1.5827600003119571) +description = Weldon Spring Heights town, MO +station = ('ksus', 0.0010730006154443938) +zone = ('moz061', 0.0013513264748428538) + +[fips2978352] +centroid = (0.68316358259970322, -1.6403696886354457) +description = Wellington city, MO +station = ('klxt', 0.0059989992438924458) +zone = ('moz038', 0.0030314155843414836) + +[fips2978370] +centroid = (0.67500612311539199, -1.5759286594466035) +description = Wellston city, MO +station = ('kstl', 0.0016404560738901553) +zone = ('moz064', 0.00095669662335281071) + +[fips2978406] +centroid = (0.68195602419683343, -1.5981788672426058) +description = Wellsville city, MO +station = ('kcou', 0.0098672119084597977) +zone = ('moz051', 0.0026600222604737976) + +[fips2978424] +centroid = (0.64565345500803162, -1.6419269586605376) +description = Wentworth village, MO +station = ('khfj', 0.0018016609038830551) +zone = ('moz094', 0.0039141687347144247) + +[fips2978442] +centroid = (0.67746297074354689, -1.5859681598232178) +description = Wentzville city, MO +station = ('ksus', 0.0041573769705759139) +zone = ('moz061', 0.0027053202693906883) + +[fips2978514] +centroid = (0.67828603311220237, -1.5743558036312912) +description = West Alton city, MO +station = ('kaln', 0.0021893382696407714) +zone = ('moz064', 0.004003313213641938) + +[fips2978622] +centroid = (0.70747008496052743, -1.6636671463425219) +description = Westboro city, MO +station = ('ksda', 0.0039592910530908028) +zone = ('moz001', 0.0023006649108181835) + +[fips2978838] +centroid = (0.67432101157081414, -1.6508538465455906) +description = West Line village, MO +station = ('kojc', 0.0039829134490136668) +zone = ('ksz057', 0.0036497244411506529) + +[fips2978856] +centroid = (0.68766236073293641, -1.6560878271729338) +description = Weston city, MO +station = ('kmci', 0.0027106903977483243) +zone = ('moz028', 0.001565906909339831) + +[fips2978910] +centroid = (0.67092627636251501, -1.6057104865637368) +description = Westphalia city, MO +station = ('kjef', 0.0034421797393947291) +zone = ('moz049', 0.0019241749359279155) + +[fips2978928] +centroid = (0.64118911222094044, -1.6033983267305725) +description = West Plains city, MO +station = ('kuno', 0.0025855583315667068) +zone = ('moz097', 0.00068892585919050938) + +[fips2979000] +centroid = (0.66657599084204167, -1.591596427781879) +description = West Sullivan town, MO +station = ('kfyg', 0.0074164447587599259) +zone = ('moz072', 0.0040664491396094288) + +[fips2979054] +centroid = (0.67445334243470034, -1.5783584544713527) +description = Westwood village, MO +station = ('kstl', 0.0020710838939419639) +zone = ('moz063', 0.00014025544928811359) + +[fips2979090] +centroid = (0.66223814951913496, -1.6301751157547917) +description = Wheatland city, MO +station = ('kgly', 0.0082095645951490801) +zone = ('moz068', 0.0011221057976526306) + +[fips2979126] +centroid = (0.64161118519395011, -1.6416041774686738) +description = Wheaton city, MO +station = ('khfj', 0.002469970229739995) +zone = ('moz102', 0.0033128544489001589) + +[fips2979180] +centroid = (0.69439783066247773, -1.6298933672536422) +description = Wheeling city, MO +station = ('kcdj', 0.0026992263553566619) +zone = ('moz023', 0.0021777488257740422) + +[fips2979432] +centroid = (0.67602005469104565, -1.6328107025516434) +description = Whiteman AFB CDP, MO +station = ('kszl', 4.3248668798676823e-05) +zone = ('moz044', 0.0034514977417547574) + +[fips2979558] +centroid = (0.68388204738628666, -1.5885416827118686) +description = Whiteside village, MO +station = ('kppq', 0.0085726506491550936) +zone = ('moz052', 0.002319558868266874) + +[fips2979612] +centroid = (0.64990416949467888, -1.5672680040856499) +description = Whitewater town, MO +station = ('kcgi', 0.002981330580252088) +zone = ('moz087', 0.0030116460495107364) + +[fips2979756] +centroid = (0.67288137673730664, -1.5761808071636394) +description = Wilbur Park village, MO +station = ('kcps', 0.0021758833965808311) +zone = ('moz064', 0.0016809745667130443) + +[fips2979820] +centroid = (0.67329650329989343, -1.5824509025014291) +description = Wildwood city, MO +station = ('ksus', 0.0012960791052848669) +zone = ('moz063', 0.0032604456215080567) + +[fips2979882] +centroid = (0.65090940933065744, -1.6304287120951066) +description = Willard city, MO +station = ('ksgf', 0.0011615284314676186) +zone = ('moz090', 0.0012150561560768575) + +[fips2980026] +centroid = (0.64531199879317158, -1.5803577291295121) +description = Williamsville city, MO +station = ('kpof', 0.0048444179439433516) +zone = ('moz100', 0.002707508954015224) + +[fips2980098] +centroid = (0.64553955482104652, -1.6050301397680171) +description = Willow Springs city, MO +station = ('kuno', 0.0019973028320991993) +zone = ('moz097', 0.0038568373101260404) + +[fips2980260] +centroid = (0.64443823460974559, -1.557235397759581) +description = Wilson City village, MO +station = ('kcir', 0.0024588604665752257) +zone = ('moz112', 0.0019186514109841043) + +[fips2980314] +centroid = (0.67351692093112792, -1.5799779978441557) +description = Winchester city, MO +station = ('ksus', 0.0019910671233523284) +zone = ('moz063', 0.0014409684923755136) + +[fips2980350] +centroid = (0.67251489250097285, -1.6322833164115684) +description = Windsor city, MO +station = ('kszl', 0.0035286368670813207) +zone = ('moz054', 0.0044922328133975139) + +[fips2980380] +centroid = (0.67950996270345587, -1.6178264575113264) +description = Windsor Place village, MO +station = ('kver', 0.00023267675373325245) +zone = ('moz046', 0.0022114534875906661) + +[fips2980422] +centroid = (0.68058021605407137, -1.5837777890652576) +description = Winfield city, MO +station = ('kset', 0.0043456250007815689) +zone = ('moz052', 0.0031380548337517061) + +[fips2980440] +centroid = (0.69894978897801907, -1.6213806809066726) +description = Winigan CDP, MO +station = ('kirk', 0.00474287568132021) +zone = ('moz016', 0.0040339268049046631) + +[fips2980512] +centroid = (0.64584427185515225, -1.5939561827437454) +description = Winona city, MO +station = ('kuno', 0.0082668208443413826) +zone = ('moz098', 0.0028639964082593137) + +[fips2980548] +centroid = (0.69586183029234305, -1.6430833963696168) +description = Winston village, MO +station = ('kcdj', 0.0075405980552049516) +zone = ('moz014', 0.0026236575360949772) + +[fips2980767] +centroid = (0.68664266957075115, -1.6434552213134614) +description = Wood Heights city, MO +station = ('kmkc', 0.0070941849687116039) +zone = ('moz030', 0.0023443861389861927) + +[fips2980962] +centroid = (0.67594317293749517, -1.577080821099015) +description = Woodson Terrace city, MO +station = ('kstl', 0.00038258499447317514) +zone = ('moz063', 0.0019065292239344575) + +[fips2981016] +centroid = (0.67904793914386796, -1.6148028840217563) +description = Wooldridge village, MO +station = ('kver', 0.0022312624737893731) +zone = ('moz041', 0.0032279506145936011) + +[fips2981070] +centroid = (0.70519194159448428, -1.6484024967045796) +description = Worth village, MO +station = ('klwd', 0.0082779282501854873) +zone = ('moz003', 0.0013410752179771068) + +[fips2981088] +centroid = (0.66042820817823178, -1.581329336470805) +description = Wortham CDP, MO +station = ('kfam', 0.0026708541302705815) +zone = ('moz074', 0.0018718763157149732) + +[fips2981106] +centroid = (0.70527055122399407, -1.6177326460640316) +description = Worthington village, MO +station = ('ktvk', 0.0054935959645524141) +zone = ('moz008', 0.0024781219455182538) + +[fips2981124] +centroid = (0.67778985345915288, -1.5889469481641816) +description = Wright City city, MO +station = ('kfyg', 0.0043550629463152569) +zone = ('moz060', 0.002045911058931653) + +[fips2981142] +centroid = (0.70497663777795838, -1.6044133753169472) +description = Wyaconda city, MO +station = ('keok', 0.0066746689656111014) +zone = ('moz010', 0.0025148901650043584) + +[fips2981178] +centroid = (0.64507946857692822, -1.5563022051151247) +description = Wyatt city, MO +station = ('kcir', 0.0019456342457005375) +zone = ('moz112', 0.0028644108874777319) + +[fips2981430] +centroid = (0.6482723040973567, -1.5721799889192927) +description = Zalma village, MO +station = ('kpof', 0.0073596883569591659) +zone = ('moz086', 0.0032098477606828956) + +[fips30001] +centroid = (0.78773451349404544, -1.9703522660726385) +description = Beaverhead County, MT +station = ('kdln', 0.0046790909761027389) +zone = ('mtz008', 7.5345867583032181e-05) + +[fips3000175] +centroid = (0.79462872111905569, -1.9102113267349823) +description = Absarokee CDP, MT +station = ('kbil', 0.012037927284740213) +zone = ('mtz056', 0.0046862619993929943) + +[fips3000190273] +centroid = (0.79551475496712321, -1.9796217097299802) +description = Big Hole Basin CCD, MT +station = ('ksmn', 0.0098509183624557253) +zone = ('mtz008', 0.010114592884665721) + +[fips3000190651] +centroid = (0.78445839086171187, -1.97306445537036) +description = Clark Canyon-Horse Prairie CCD, MT +station = ('kdln', 0.0081121159534378196) +zone = ('mtz008', 0.0037429465099250298) + +[fips3000190924] +centroid = (0.78950516747348631, -1.9672783572874408) +description = Dillon CCD, MT +station = ('kdln', 0.0020651160920766663) +zone = ('mtz008', 0.0028665020095401624) + +[fips3000192079] +centroid = (0.77927366342586013, -1.9597603340811827) +description = Lima-Centennial Valley CCD, MT +station = ('kdln', 0.010983094311398241) +zone = ('idz019', 0.010064624148810888) + +[fips30003] +centroid = (0.79251682036426496, -1.876545950045944) +description = Big Horn County, MT +station = ('kshr', 0.013092812094106813) +zone = ('mtz038', 0.0026860436436263874) + +[fips3000390756] +centroid = (0.79171356748261967, -1.8793109006469533) +description = Crow Reservation CCD, MT +station = ('kshr', 0.013582801578396227) +zone = ('mtz038', 0.0028113758741113363) + +[fips3000390850] +centroid = (0.78747199852125305, -1.8618068015924845) +description = Decker CCD, MT +station = ('kshr', 0.0071328579818846511) +zone = ('wyz099', 0.0056672326594809919) + +[fips3000391617] +centroid = (0.80011280742820967, -1.8768357968748226) +description = Hardin CCD, MT +station = ('km46', 0.0099063869069732982) +zone = ('mtz057', 0.0021475157030817777) + +[fips3000392436] +centroid = (0.79430333938660647, -1.8657001250082008) +description = Northern Cheyenne Reservation CCD, MT +station = ('km46', 0.0063096106573403221) +zone = ('mtz058', 0.0051042056250189469) + +[fips30005] +centroid = (0.84523297198430458, -1.901844235754214) +description = Blaine County, MT +station = ('khvr', 0.0094835023787920112) +zone = ('mtz047', 0.00013009667165954868) + +[fips3000590588] +centroid = (0.84355935831127471, -1.9069194961393807) +description = Chinook CCD, MT +station = ('khvr', 0.0070036279583048878) +zone = ('mtz047', 0.0038916633109736883) + +[fips3000591176] +centroid = (0.84109837425279255, -1.8968614080062327) +description = Fort Belknap CCD, MT +station = ('khvr', 0.014045696531952477) +zone = ('mtz047', 0.0052948608283699579) + +[fips3000591638] +centroid = (0.85105675172577422, -1.8958634636465277) +description = Harlem CCD, MT +station = ('cweh', 0.012412668468458286) +zone = ('mtz047', 0.0069176326386285519) + +[fips30007] +centroid = (0.80868916338629215, -1.9459741004927273) +description = Broadwater County, MT +station = ('khln', 0.0073126800276678448) +zone = ('mtz053', 4.5750889399225004e-05) + +[fips3000700] +centroid = (0.82038217124295332, -1.9981449938011513) +description = Alberton town, MT +station = ('kmso', 0.0048382595381764671) +zone = ('mtz004', 0.0081407108603761512) + +[fips3000793570] +centroid = (0.81029538989690264, -1.9438521117348599) +description = Townsend East CCD, MT +station = ('khln', 0.0077300568203855701) +zone = ('mtz053', 0.0022010841151405098) + +[fips3000793591] +centroid = (0.80668002761785884, -1.9481847519765958) +description = Townsend West CCD, MT +station = ('khln', 0.0078269975644131833) +zone = ('mtz053', 0.0024937311199750211) + +[fips3000850] +centroid = (0.79101096773893687, -1.9566749410295072) +description = Alder CDP, MT +station = ('kdln', 0.0055550018416706806) +zone = ('mtz015', 0.0023469977101917869) + +[fips30009] +centroid = (0.78931599123586249, -1.902907193628556) +description = Carbon County, MT +station = ('kbil', 0.011877365620809148) +zone = ('mtz039', 0.003106534083741196) + +[fips3000990976] +centroid = (0.78855699990404782, -1.8961607455780198) +description = East Carbon CCD, MT +station = ('kbil', 0.011151632752810786) +zone = ('mtz039', 0.0020206025501026256) + +[fips3000991323] +centroid = (0.79096337261023497, -1.9024394104824367) +description = Fromberg-Bridger CCD, MT +station = ('kbil', 0.010293330924649905) +zone = ('mtz039', 0.0030288762612264712) + +[fips3000991827] +centroid = (0.79445682364102677, -1.9024506154962344) +description = Joliet CCD, MT +station = ('kbil', 0.0075783086881768009) +zone = ('mtz056', 0.0054366041924381403) + +[fips3000992772] +centroid = (0.787480323741785, -1.9101932800305166) +description = Red Lodge CCD, MT +station = ('kcod', 0.011784745173453607) +zone = ('mtz056', 0.0034295549087774943) + +[fips3000992793] +centroid = (0.79189358074167038, -1.9072545295425938) +description = Roberts CCD, MT +station = ('kbil', 0.011796321117511816) +zone = ('mtz056', 0.0015614460316635446) + +[fips30011] +centroid = (0.7944184613040679, -1.8241365225886501) +description = Carter County, MT +station = ('kbhk', 0.014894008280621917) +zone = ('mtz037', 0.00025530385411811105) + +[fips3001190052] +centroid = (0.7918302776497006, -1.8250455947828437) +description = Alzada-Boyes CCD, MT +station = ('kbhk', 0.017558881880608761) +zone = ('mtz037', 0.002615817649186938) + +[fips3001191050] +centroid = (0.80036266876392526, -1.823344998319578) +description = Ekalaka CCD, MT +station = ('kbhk', 0.0090001023390294602) +zone = ('mtz037', 0.0059992324076117423) + +[fips30013] +centroid = (0.82582772068222332, -1.9434340879257148) +description = Cascade County, MT +station = ('kgtf', 0.0026503204256336753) +zone = ('mtz012', 0.00015266192314478285) + +[fips3001300] +centroid = (0.78575681110544071, -1.8223469143335325) +description = Alzada CDP, MT +station = ('kspf', 0.01219753177275703) +zone = ('wyz071', 0.0041601038410124603) + +[fips3001390231] +centroid = (0.82678576681522808, -1.9361703940980575) +description = Belt CCD, MT +station = ('kgfa', 0.0036986662224497719) +zone = ('mtz012', 0.0050059427875906613) + +[fips3001390525] +centroid = (0.82207126598644842, -1.9491736206241908) +description = Cascade CCD, MT +station = ('kgtf', 0.0072782169520597077) +zone = ('mtz012', 0.0053426238592916538) + +[fips3001391029] +centroid = (0.82444548972781395, -1.9409391397599891) +description = Eden-Stockett CCD, MT +station = ('kgtf', 0.0045110847640644257) +zone = ('mtz012', 0.0020632698704603084) + +[fips3001391533] +centroid = (0.82826009879426521, -1.945284171839414) +description = Great Falls CCD, MT +station = ('kgtf', 0.00088476253168339933) +zone = ('mtz012', 0.0028854302172611978) + +[fips3001391554] +centroid = (0.83111673154088184, -1.9431962344552531) +description = Great Falls North CCD, MT +station = ('kgtf', 0.0027225377156659845) +zone = ('mtz012', 0.0054377159963422015) + +[fips3001392373] +centroid = (0.82046397482499434, -1.9339676140491153) +description = Monarch-Neihart CCD, MT +station = ('kgfa', 0.0096514545296104669) +zone = ('mtz050', 0.0064803294897644286) + +[fips3001393423] +centroid = (0.82886119018865212, -1.9516266983411614) +description = Sun River Valley CCD, MT +station = ('kgfa', 0.0075093976952103243) +zone = ('mtz049', 0.0056229883778031974) + +[fips30015] +centroid = (0.83578297401584378, -1.9274751114047439) +description = Chouteau County, MT +station = ('kfhu', 0.0045860953963750353) +zone = ('mtz013', 0.00010946997081006242) + +[fips3001525] +centroid = (0.7982832660398067, -1.9432338113940484) +description = Amsterdam CDP, MT +station = ('kbzn', 0.0024331740889612609) +zone = ('mtz055', 0.0035869346509684848) + +[fips3001590294] +centroid = (0.83863573213152109, -1.920835721850525) +description = Big Sandy CCD, MT +station = ('kfhu', 0.0079705144579485399) +zone = ('mtz013', 0.005332140931890811) + +[fips3001591197] +centroid = (0.83601686558890365, -1.9339268082512036) +description = Fort Benton CCD, MT +station = ('kfhu', 0.00724060174564309) +zone = ('mtz013', 0.0043512800678026488) + +[fips3001591386] +centroid = (0.82945168743447928, -1.9271865386662195) +description = Geraldine CCD, MT +station = ('kfhu', 0.0021607478567921821) +zone = ('mtz013', 0.0062251086605791782) + +[fips3001675] +centroid = (0.80458036162112456, -1.9746499473694565) +description = Anaconda-Deer Lodge County, MT +station = ('k3du', 0.0099074905473631996) +zone = ('mtz007', 0.0057120953124922633) + +[fips30017] +centroid = (0.8074151602987989, -1.8422038917526149) +description = Custer County, MT +station = ('kmls', 0.0050074612806307751) +zone = ('mtz032', 0.0002991787239494981) + +[fips3001792310] +centroid = (0.80924262474539199, -1.8488707527892605) +description = Miles City CCD, MT +station = ('kmls', 0.0013128142866158665) +zone = ('mtz032', 0.0047783744687349581) + +[fips3001792415] +centroid = (0.81442148787495727, -1.8486530229650742) +description = North Custer CCD, MT +station = ('kmls', 0.0040310587448554661) +zone = ('mtz032', 0.0082938544337732983) + +[fips3001793087] +centroid = (0.80957863553298604, -1.8361972538654137) +description = Shirley-Ismay CCD, MT +station = ('kbhk', 0.011534124513789034) +zone = ('mtz032', 0.004977145704429837) + +[fips3001793160] +centroid = (0.80390624565083435, -1.8435216851510408) +description = South Custer CCD, MT +station = ('kmls', 0.0072113845206528788) +zone = ('mtz032', 0.0034190632950904173) + +[fips30019] +centroid = (0.85162344268060419, -1.8420508438305077) +description = Daniels County, MT +station = ('cwaq', 0.0045105652003960186) +zone = ('mtz018', 0.00020114267657860463) + +[fips3001991218] +centroid = (0.84845038174060095, -1.8414716737715258) +description = Fort Peck Reservation CCD, MT +station = ('cwaq', 0.0076391142280934467) +zone = ('mtz018', 0.0030227789223105221) + +[fips3001992992] +centroid = (0.8520122496780711, -1.8426066613840977) +description = Scobey CCD, MT +station = ('cwaq', 0.0042011827635284335) +zone = ('mtz018', 0.00064265549748182224) + +[fips3002050] +centroid = (0.84979599568730357, -1.8230704231216541) +description = Antelope CDP, MT +station = ('kisn', 0.012838795113950779) +zone = ('mtz019', 0.00079889544824594014) + +[fips30021] +centroid = (0.82505946165208044, -1.8308683098734697) +description = Dawson County, MT +station = ('kgdv', 0.0027070997437552763) +zone = ('mtz025', 0.00010690686458390757) + +[fips3002191491] +centroid = (0.82162777782351659, -1.828352888995618) +description = Glendive CCD, MT +station = ('kgdv', 0.001127068899741538) +zone = ('mtz025', 0.0037315231655947263) + +[fips3002192782] +centroid = (0.82775039283951268, -1.8323057281388271) +description = Richey CCD, MT +station = ('kgdv', 0.0055600647457395855) +zone = ('mtz025', 0.0029672396562614406) + +[fips30023] +centroid = (0.80458036162112456, -1.9746499473694565) +description = Deer Lodge County, MT +station = ('k3du', 0.0099074905473631996) +zone = ('mtz007', 0.0057120953124922633) + +[fips3002390063] +centroid = (0.80315851169269492, -1.9753086346291595) +description = Anaconda CCD, MT +station = ('k3du', 0.011333090085649344) +zone = ('mtz007', 0.0071880546143133226) + +[fips3002393728] +centroid = (0.80637860925603955, -1.9685437908083068) +description = Warm Springs CCD, MT +station = ('kbtm', 0.0053985242123990376) +zone = ('mtz007', 0.0036091063285146972) + +[fips3002425] +centroid = (0.82323843747042702, -1.9911352279263663) +description = Arlee CDP, MT +station = ('kmso', 0.0043924393817742786) +zone = ('mtz043', 0.0059537133565303003) + +[fips30025] +centroid = (0.80840481434455724, -1.822223537008709) +description = Fallon County, MT +station = ('kbhk', 0.001956941797173838) +zone = ('mtz033', 0.00030987484589347828) + +[fips3002590168] +centroid = (0.80735025150391726, -1.8190796579737993) +description = Baker CCD, MT +station = ('kbhk', 0.0016365463230832193) +zone = ('mtz033', 0.0026684974751163115) + +[fips3002592730] +centroid = (0.80951847403366972, -1.8266590469565573) +description = Plevna CCD, MT +station = ('kbhk', 0.0049676046921047429) +zone = ('mtz033', 0.0030381980688837292) + +[fips30027] +centroid = (0.82419678030940469, -1.9063058558276722) +description = Fergus County, MT +station = ('klwt', 0.004045020183054345) +zone = ('mtz051', 0.00070875908708968604) + +[fips3002790903] +centroid = (0.82744005584521563, -1.9171064070246187) +description = Denton CCD, MT +station = ('kfhu', 0.0069911726088744573) +zone = ('mtz050', 0.0080910028846744707) + +[fips3002791512] +centroid = (0.8190371332549039, -1.901359557820935) +description = Grass Range CCD, MT +station = ('klwt', 0.0064394030748102966) +zone = ('mtz051', 0.0067718185219463843) + +[fips3002791596] +centroid = (0.82551300291150376, -1.9104416752896605) +description = Hanover CCD, MT +station = ('klwt', 0.0043372933322895794) +zone = ('mtz051', 0.0028589783430792918) + +[fips3002792037] +centroid = (0.81749839862646811, -1.9100960826444731) +description = Lewistown CCD, MT +station = ('klwt', 0.0036807760305353392) +zone = ('mtz063', 0.0045133965861990765) + +[fips3002792898] +centroid = (0.82748875053134641, -1.8963943404451067) +description = Roy CCD, MT +station = ('klwt', 0.011336572313821097) +zone = ('mtz021', 0.0070279974701738931) + +[fips3002793927] +centroid = (0.83120516737408034, -1.9064110817282749) +description = Winifred CCD, MT +station = ('klwt', 0.010361909563430661) +zone = ('mtz051', 0.0063000084752719513) + +[fips3002800] +centroid = (0.79582962981747551, -1.8552413092787949) +description = Ashland CDP, MT +station = ('km46', 0.0067745885883106326) +zone = ('mtz058', 0.0038236261265417112) + +[fips30029] +centroid = (0.8432505223001342, -1.9906233926699266) +description = Flathead County, MT +station = ('kgpi', 0.0024784065260647138) +zone = ('mtz002', 0.0029894072498923923) + +[fips3002990147] +centroid = (0.84293880649572805, -1.9916264682976326) +description = Bad Rock-Columbia Heights CCD, MT +station = ('kgpi', 0.0017990808611802122) +zone = ('mtz002', 0.0035973704847154162) + +[fips3002990672] +centroid = (0.8504096359990122, -1.9961407624079159) +description = Columbia Falls CCD, MT +station = ('kgpi', 0.007512045538640451) +zone = ('mtz002', 0.010221218281799813) + +[fips3002990735] +centroid = (0.83994251250236673, -1.9908187822796872) +description = Creston-Bigfork CCD, MT +station = ('kgpi', 0.0038451080234565564) +zone = ('mtz002', 0.0040201032254617826) + +[fips3002991118] +centroid = (0.83504721301637308, -1.9996705686470269) +description = Flathead Reservation CCD, MT +station = ('kgpi', 0.0087113728096267721) +zone = ('mtz003', 0.0034530196419040753) + +[fips3002991449] +centroid = (0.84905360243667527, -1.9879707889128679) +description = Glacier National Park CCD, MT +station = ('kgpi', 0.0073817193924953376) +zone = ('mtz002', 0.0065868574537423889) + +[fips3002991890] +centroid = (0.84196922373636773, -1.9952885355874597) +description = Kalispell CCD, MT +station = ('kgpi', 0.0012073364827511702) +zone = ('mtz003', 0.0081742406146753811) + +[fips3002991911] +centroid = (0.84246910348743143, -2.0017798688612323) +description = Kalispell Northwest CCD, MT +station = ('kgpi', 0.0049853384061179958) +zone = ('mtz001', 0.0056740349614648371) + +[fips3002991932] +centroid = (0.83831385851086837, -2.0021293710439441) +description = Kalispell Southwest CCD, MT +station = ('kgpi', 0.0069976751752390169) +zone = ('mtz003', 0.0066347733696232114) + +[fips3002991964] +centroid = (0.83863787888650099, -1.9936567923631852) +description = Lakeside-Somers CCD, MT +station = ('kgpi', 0.0043791911860069227) +zone = ('mtz003', 0.0049068213030825083) + +[fips3002993171] +centroid = (0.83912892727154975, -1.9799638640765411) +description = South Fork CCD, MT +station = ('k8s0', 0.0098862475499649737) +zone = ('mtz002', 0.0054206351151277711) + +[fips3002993801] +centroid = (0.84651058790334943, -1.999469768516585) +description = Whitefish CCD, MT +station = ('kgpi', 0.004900248482877013) +zone = ('mtz001', 0.0079864417733979832) + +[fips3003025] +centroid = (0.82884515061282615, -1.961613210521685) +description = Augusta CDP, MT +station = ('kgfa', 0.014256103562793099) +zone = ('mtz048', 0.0043955934696246696) + +[fips30031] +centroid = (0.79474543128613662, -1.9403426211282424) +description = Gallatin County, MT +station = ('kbzn', 0.0043339228246279766) +zone = ('mtz055', 0.0005714549077471022) + +[fips3003175] +centroid = (0.81382367769956421, -1.9648144061692305) +description = Avon CDP, MT +station = ('k3du', 0.00691430554521698) +zone = ('mtz007', 0.0058756651213990813) + +[fips3003190189] +centroid = (0.80216580332074561, -1.9379442245767367) +description = Belgrade CCD, MT +station = ('kbzn', 0.0033915886314729912) +zone = ('mtz055', 0.007051370059139481) + +[fips3003190305] +centroid = (0.79018848132893449, -1.9396748930630145) +description = Big Sky CCD, MT +station = ('kbzn', 0.0088832748716519156) +zone = ('mtz055', 0.0051501585840030943) + +[fips3003190420] +centroid = (0.79661986254290096, -1.9367949776241762) +description = Bozeman CCD, MT +station = ('kbzn', 0.0032871226027650692) +zone = ('mtz055', 0.0028070096651151423) + +[fips3003191344] +centroid = (0.7944259836731441, -1.9401677740437775) +description = Gallatin Gateway CCD, MT +station = ('kbzn', 0.004646813076938712) +zone = ('mtz055', 0.00089986755667463439) + +[fips3003192226] +centroid = (0.7984314968531786, -1.9437539893243128) +description = Manhattan CCD, MT +station = ('kbzn', 0.0027406016231909256) +zone = ('mtz055', 0.0039198609035102951) + +[fips3003193528] +centroid = (0.80110736584916609, -1.9453725029528575) +description = Three Forks CCD, MT +station = ('kbzn', 0.0043021200836973958) +zone = ('mtz055', 0.0067694072762941792) + +[fips3003193780] +centroid = (0.78290789271411776, -1.941132120815382) +description = West Yellowstone CCD, MT +station = ('kwys', 0.0032891709236112887) +zone = ('mtz064', 0.011268215556461103) + +[fips3003194017] +centroid = (0.7820602386563017, -1.9386696706803281) +description = Yellowstone National Park CCD, MT +station = ('kwys', 0.0022419058905550513) +zone = ('wyz001', 0.0076847743610884162) + +[fips3003212] +centroid = (0.84308169660158883, -1.9164976710881079) +description = Azure CDP, MT +station = ('khvr', 0.0043013833745511642) +zone = ('mtz011', 0.0066481276565809946) + +[fips3003250] +centroid = (0.853254993918661, -1.9800957237015293) +description = Babb CDP, MT +station = ('cwfj', 0.0057753506551338693) +zone = ('mtz009', 0.0062993837528388377) + +[fips30033] +centroid = (0.82521216050833746, -1.8671918404665879) +description = Garfield County, MT +station = ('kjdn', 0.00098694684213495578) +zone = ('mtz022', 0.00013926182494103481) + +[fips3003392478] +centroid = (0.82833809755853682, -1.8696888306675388) +description = North Garfield CCD, MT +station = ('kjdn', 0.0030326735615215086) +zone = ('mtz022', 0.0035505692229571644) + +[fips3003393192] +centroid = (0.82140598138217324, -1.8647426897404344) +description = South Garfield CCD, MT +station = ('kjdn', 0.0048876848564107858) +zone = ('mtz022', 0.0041515520430762051) + +[fips3003400] +centroid = (0.84018912752567365, -1.8189794237148571) +description = Bainville town, MT +station = ('ksdy', 0.0076705868286073365) +zone = ('mtz062', 0.0043007175524845216) + +[fips3003475] +centroid = (0.80921965621243586, -1.8199140998891776) +description = Baker city, MT +station = ('kbhk', 0.00038313534339053356) +zone = ('mtz033', 0.0018165876963616664) + +[fips30035] +centroid = (0.85007432334311916, -1.9720562833812381) +description = Glacier County, MT +station = ('k8s0', 0.0023198334524829642) +zone = ('mtz009', 0.0035031238905821479) + +[fips3003590336] +centroid = (0.84998237939812404, -1.9705340072076485) +description = Blackfeet Reservation CCD, MT +station = ('k8s0', 0.0029911605332196152) +zone = ('mtz010', 0.003380834714893212) + +[fips3003590777] +centroid = (0.85092319913141157, -1.959573199878784) +description = Cut Bank CCD, MT +station = ('kctb', 0.0029671628414843321) +zone = ('mtz010', 0.0039407859708988722) + +[fips3003591460] +centroid = (0.85050878815381803, -1.9817864241479364) +description = Glacier National Park CCD, MT +station = ('k8s0', 0.0054816497894003792) +zone = ('mtz009', 0.0048807212578222637) + +[fips3003625] +centroid = (0.80199888003108488, -1.8874483062981591) +description = Ballantine CDP, MT +station = ('kbil', 0.0054755891717283142) +zone = ('mtz035', 0.001615327292279945) + +[fips30037] +centroid = (0.8094945979295024, -1.9054559852017061) +description = Golden Valley County, MT +station = ('klwt', 0.012138753490645377) +zone = ('mtz042', 0.00097696637968472605) + +[fips3003792016] +centroid = (0.81078570524366533, -1.9041398498660695) +description = Lavina CCD, MT +station = ('klwt', 0.011206544278707629) +zone = ('mtz042', 0.0023922890140178317) + +[fips3003792940] +centroid = (0.80665479015687502, -1.9085501398062266) +description = Ryegate CCD, MT +station = ('kbil', 0.011979043173679973) +zone = ('mtz042', 0.0029360451278470042) + +[fips30039] +centroid = (0.80975175474149141, -1.9796516246733595) +description = Granite County, MT +station = ('k3du', 0.0057775077160490832) +zone = ('mtz007', 0.0061065474423340708) + +[fips3003990945] +centroid = (0.8131514990447436, -1.9797206873518609) +description = Drummond CCD, MT +station = ('k3du', 0.0036079322701513226) +zone = ('mtz007', 0.0070780513932894697) + +[fips3003992625] +centroid = (0.80741872077047294, -1.979640402206269) +description = Philipsburg CCD, MT +station = ('k3du', 0.0078034112911457062) +zone = ('mtz007', 0.0064945485114687529) + +[fips30041] +centroid = (0.84872448569962677, -1.9217187188256939) +description = Hill County, MT +station = ('khvr', 0.0041532023561356522) +zone = ('mtz011', 5.6893441334480502e-05) + +[fips3004150] +centroid = (0.80779798081693133, -1.959780544993921) +description = Basin CDP, MT +station = ('kbtm', 0.0060984619807455693) +zone = ('mtz052', 0.0033170549549584299) + +[fips3004191428] +centroid = (0.84802741864967268, -1.9238188386080335) +description = Gildford CCD, MT +station = ('khvr', 0.005355052836673058) +zone = ('mtz011', 0.001502078688710932) + +[fips3004191701] +centroid = (0.84503890882477528, -1.9138070889665262) +description = Havre CCD, MT +station = ('khvr', 0.0026649990909583675) +zone = ('mtz011', 0.0064517333313135377) + +[fips3004192814] +centroid = (0.84323481433686642, -1.9169212799508595) +description = Rocky Boy's CCD, MT +station = ('khvr', 0.0041903450605866067) +zone = ('mtz011', 0.0063713498371636527) + +[fips3004192919] +centroid = (0.8486358055203328, -1.9301396008540086) +description = Rudyard CCD, MT +station = ('cwoe', 0.0087252364760025212) +zone = ('mtz011', 0.0055098106127564085) + +[fips3004193906] +centroid = (0.85213471943168351, -1.917154822458069) +description = Wild Horse Lake CCD, MT +station = ('khvr', 0.0048616229277960539) +zone = ('mtz011', 0.0045884586701694869) + +[fips3004230] +centroid = (0.84085495318201686, -1.996782345440949) +description = Batavia CDP, MT +station = ('kgpi', 0.0026915371961692743) +zone = ('mtz003', 0.0071697600324556882) + +[fips30043] +centroid = (0.80506029225883802, -1.9557596031032987) +description = Jefferson County, MT +station = ('kbtm', 0.0060511003907563771) +zone = ('mtz052', 0.00058833452972081662) + +[fips3004300] +centroid = (0.78820117962944369, -1.9051609721982414) +description = Bearcreek town, MT +station = ('kcod', 0.011373466076026123) +zone = ('mtz056', 0.0027071773061231657) + +[fips3004390399] +centroid = (0.8080026904848977, -1.9567337586252993) +description = Boulder CCD, MT +station = ('khln', 0.0056026313558278718) +zone = ('mtz052', 0.0025695608939628211) + +[fips3004393822] +centroid = (0.80182237488383068, -1.9561757419568517) +description = Whitehall CCD, MT +station = ('kbtm', 0.0051085215610850729) +zone = ('mtz052', 0.0036243635539507024) + +[fips3004410] +centroid = (0.83604594277424182, -1.9901521014120105) +description = Bear Dance CDP, MT +station = ('kgpi', 0.0074872340426173582) +zone = ('mtz003', 0.0038861238217148359) + +[fips30045] +centroid = (0.8208729927351992, -1.9251910164659516) +description = Judith Basin County, MT +station = ('kfhu', 0.010490741957763613) +zone = ('mtz050', 0.0005183082323748908) + +[fips3004575] +centroid = (0.84724683759501063, -1.9164923129273044) +description = Beaver Creek CDP, MT +station = ('khvr', 0.00047805651939982667) +zone = ('mtz011', 0.0038112802456688544) + +[fips3004591407] +centroid = (0.82443786263898267, -1.9287498649838155) +description = Geyser CCD, MT +station = ('kfhu', 0.0072254623003989759) +zone = ('mtz050', 0.0044135724082081662) + +[fips3004591785] +centroid = (0.8183087899047542, -1.9225602991377131) +description = Hobson CCD, MT +station = ('klwt', 0.0088685931052536401) +zone = ('mtz050', 0.0030900757230344746) + +[fips3004593318] +centroid = (0.82298251984220716, -1.9220867913116468) +description = Stanford CCD, MT +station = ('kfhu', 0.0087220163076952625) +zone = ('mtz050', 0.0025022513552364302) + +[fips30047] +centroid = (0.83152548765169898, -1.9911359609646522) +description = Lake County, MT +station = ('kgpi', 0.011666136371984331) +zone = ('mtz003', 0.0033921936889998844) + +[fips3004791123] +centroid = (0.83002522007997714, -1.9925783010585003) +description = Flathead Reservation CCD, MT +station = ('kmso', 0.011202518832242332) +zone = ('mtz003', 0.0040794089443621298) + +[fips3004794000] +centroid = (0.83502260387392002, -1.9881551131351711) +description = Woods Bay-Rollins CCD, MT +station = ('kgpi', 0.0089758085662475888) +zone = ('mtz003', 0.0046768549066757755) + +[fips30049] +centroid = (0.82243637141267312, -1.9614525704173313) +description = Lewis and Clark County, MT +station = ('khln', 0.010379102042178789) +zone = ('mtz014', 0.0033314532092625746) + +[fips3004900] +centroid = (0.78777402774831062, -1.9023773989341131) +description = Belfry CDP, MT +station = ('kcod', 0.010814039685269882) +zone = ('mtz039', 0.0033246132922096715) + +[fips3004975] +centroid = (0.79906761700565299, -1.9403886803672024) +description = Belgrade city, MT +station = ('kbzn', 0.00031746481565119957) +zone = ('mtz055', 0.0037508507057936549) + +[fips3004990105] +centroid = (0.82833874333036006, -1.9651465946857625) +description = Augusta CCD, MT +station = ('k3du', 0.015344977431085342) +zone = ('mtz048', 0.0044210345736232556) + +[fips3004991722] +centroid = (0.81333753368971373, -1.9554989730860985) +description = Helena CCD, MT +station = ('khln', 0.00090155361345566423) +zone = ('mtz014', 0.0066387020176990824) + +[fips3004992100] +centroid = (0.82054661616507629, -1.9638897481848163) +description = Lincoln CCD, MT +station = ('k3du', 0.0096345189284744968) +zone = ('mtz014', 0.0033092383381011434) + +[fips3004993990] +centroid = (0.81928830358755833, -1.9536702694557364) +description = Wolf Creek CCD, MT +station = ('khln', 0.005975361843099691) +zone = ('mtz014', 0.003859141967936932) + +[fips3005050] +centroid = (0.8316025090315895, -2.0144962330715077) +description = Belknap CDP, MT +station = ('kmlp', 0.0044897675234573334) +zone = ('mtz004', 0.0076925036373379921) + +[fips30051] +centroid = (0.84752584592923452, -1.9379599150867122) +description = Liberty County, MT +station = ('cwoe', 0.011722774931407406) +zone = ('mtz045', 0.00014676565117193612) + +[fips3005190567] +centroid = (0.84695173732508355, -1.9386359858257647) +description = Chester CCD, MT +station = ('cwoe', 0.012448908916656273) +zone = ('mtz045', 0.00084850713466900324) + +[fips3005191848] +centroid = (0.84976637744989714, -1.9343897917418802) +description = Joplin CCD, MT +station = ('cwoe', 0.0085773592216510149) +zone = ('mtz045', 0.0031271557010670507) + +[fips3005275] +centroid = (0.82706625867931605, -1.9360555165266911) +description = Belt town, MT +station = ('kgfa', 0.0035998678350824456) +zone = ('mtz012', 0.0051494629723616439) + +[fips30053] +centroid = (0.84722177466695203, -2.0141857564508703) +description = Lincoln County, MT +station = ('k65s', 0.010837625060284671) +zone = ('mtz001', 0.0049624783545803358) + +[fips3005391071] +centroid = (0.85161623447079349, -2.0079139681437064) +description = Eureka CCD, MT +station = ('kgpi', 0.012458430372737965) +zone = ('mtz001', 0.0087621641354976455) + +[fips3005392058] +centroid = (0.84362239960385665, -2.0130346245427173) +description = Libby CCD, MT +station = ('kmlp', 0.015933699562758946) +zone = ('mtz001', 0.0019427372680677101) + +[fips3005393612] +centroid = (0.84910926098652129, -2.021665225333952) +description = Troy CCD, MT +station = ('k65s', 0.0055583557113822622) +zone = ('mtz001', 0.0097191301264014374) + +[fips30055] +centroid = (0.83129383010008173, -1.8458117316625826) +description = McCone County, MT +station = ('kolf', 0.0084582540168065927) +zone = ('mtz023', 0.00052383309481555821) + +[fips3005590630] +centroid = (0.82696771738974839, -1.8475140734551003) +description = Circle CCD, MT +station = ('kolf', 0.012934099087967743) +zone = ('mtz023', 0.0046510131177242139) + +[fips3005592487] +centroid = (0.83595235821974978, -1.8458970433564201) +description = North McCone CCD, MT +station = ('kolf', 0.0041193529287090833) +zone = ('mtz023', 0.0044039881360827763) + +[fips3005650] +centroid = (0.78723386579811094, -1.8380381224406623) +description = Biddle CDP, MT +station = ('kgcc', 0.013791233496367489) +zone = ('mtz036', 0.0063937915874274472) + +[fips30057] +centroid = (0.79097079025955597, -1.9533258636344404) +description = Madison County, MT +station = ('kdln', 0.0078626671011545139) +zone = ('mtz015', 0.00032473197645100239) + +[fips3005791680] +centroid = (0.79664307542195245, -1.9516504348189883) +description = Harrison CCD, MT +station = ('kdln', 0.011267715947132639) +zone = ('mtz015', 0.006116103645910565) + +[fips3005792184] +centroid = (0.7878568436213178, -1.9478005701016468) +description = Madison Valley CCD, MT +station = ('kwys', 0.0099784550214988051) +zone = ('mtz015', 0.0048190896646569973) + +[fips3005793045] +centroid = (0.79224784767324019, -1.9575942059465326) +description = Sheridan CCD, MT +station = ('kdln', 0.005372828678137485) +zone = ('mtz015', 0.00336762436172697) + +[fips3005793633] +centroid = (0.79638445253339196, -1.9613709937280932) +description = Twin Bridges CCD, MT +station = ('kbtm', 0.0060687382318726918) +zone = ('mtz015', 0.0080207590837622043) + +[fips3005793717] +centroid = (0.78656521270837942, -1.9567242989407536) +description = Virginia City CCD, MT +station = ('kdln', 0.0062664244830952622) +zone = ('mtz015', 0.004715279395825338) + +[fips3005800] +centroid = (0.83415583846079455, -1.9943882598526961) +description = Big Arm CDP, MT +station = ('kgpi', 0.0088382773726635878) +zone = ('mtz003', 0.00048422827553511188) + +[fips3005875] +centroid = (0.83929305803440724, -1.9906317877036286) +description = Bigfork CDP, MT +station = ('kgpi', 0.0044467117244259531) +zone = ('mtz002', 0.0043879092328782641) + +[fips30059] +centroid = (0.81307395406607752, -1.9359502906260884) +description = Meagher County, MT +station = ('kbzn', 0.014272969617757305) +zone = ('mtz054', 0.00048565302951604044) + +[fips3005992247] +centroid = (0.81035312538855853, -1.9318689603433472) +description = Martinsdale-Ringling CCD, MT +station = ('kbzn', 0.012592530487946991) +zone = ('mtz054', 0.0037780223857861251) + +[fips3005993843] +centroid = (0.81585150594428624, -1.9391446794895508) +description = White Sulphur Springs CCD, MT +station = ('kgtf', 0.013025351027061916) +zone = ('mtz054', 0.0036664449169126509) + +[fips30061] +centroid = (0.82301372632923286, -2.0082552498256412) +description = Mineral County, MT +station = ('kmlp', 0.0087895107718264833) +zone = ('mtz004', 0.0027511672726678021) + +[fips3006190042] +centroid = (0.81876196464503448, -2.0011686021973061) +description = Alberton CCD, MT +station = ('kmso', 0.0066593176661337234) +zone = ('mtz004', 0.0080549719089279496) + +[fips3006193444] +centroid = (0.8219579766647015, -2.0057890821392808) +description = Superior CCD, MT +station = ('kmlp', 0.010768201144055935) +zone = ('mtz004', 0.0038470869665592866) + +[fips3006193759] +centroid = (0.82631569728778842, -2.0127357194550211) +description = West End CCD, MT +station = ('kmlp', 0.0044776186561484438) +zone = ('mtz004', 0.003780449845628156) + +[fips3006250] +centroid = (0.84087752028924523, -1.9218465990999876) +description = Big Sandy town, MT +station = ('khvr', 0.0076276783040588256) +zone = ('mtz013', 0.0064153319937459655) + +[fips30063] +centroid = (0.82078057755130607, -1.9878022773735877) +description = Missoula County, MT +station = ('kmso', 0.0031340188125452925) +zone = ('mtz043', 0.004752316978325833) + +[fips3006325] +centroid = (0.78987285598700385, -1.9431098581105717) +description = Big Sky CDP, MT +station = ('kbzn', 0.0094624967239821563) +zone = ('mtz055', 0.0057787509229621755) + +[fips3006391128] +centroid = (0.82261690827049949, -1.9874632995262655) +description = Flathead Reservation CCD, MT +station = ('kmso', 0.0046330047627560081) +zone = ('mtz043', 0.0036318651252278218) + +[fips3006391304] +centroid = (0.82204887341214528, -1.9964776284068433) +description = Frenchtown-Wye CCD, MT +station = ('kmso', 0.0047033519150386878) +zone = ('mtz004', 0.0081615732488229988) + +[fips3006392142] +centroid = (0.81687156362561431, -1.9957487963645031) +description = Lolo CCD, MT +station = ('kmso', 0.0035600606729646292) +zone = ('mtz005', 0.0061970355468654904) + +[fips3006392331] +centroid = (0.81776698734505759, -1.9871017894783001) +description = Missoula CCD, MT +station = ('kmso', 0.0031442860834378617) +zone = ('mtz043', 0.0068303940209877515) + +[fips3006393003] +centroid = (0.82408813356346799, -1.9825718572179187) +description = Seeley Lake-Blackfoot Valley CCD, MT +station = ('kmso', 0.0079851834203173971) +zone = ('mtz043', 0.00030338556378024339) + +[fips3006475] +centroid = (0.79996342469753157, -1.9189561069658823) +description = Big Timber city, MT +station = ('klvm', 0.0063573339019022054) +zone = ('mtz041', 0.0024095204117415962) + +[fips30065] +centroid = (0.81167697507948877, -1.8925823668258257) +description = Musselshell County, MT +station = ('kbil', 0.012102648804263517) +zone = ('mtz029', 0.00049774095728926662) + +[fips3006550] +centroid = (0.79917785200120894, -1.8945530006309601) +description = Billings city, MT +station = ('kbil', 0.00047383547669089897) +zone = ('mtz035', 0.0042255010532705932) + +[fips3006591953] +centroid = (0.80818436180673792, -1.8940959512597402) +description = Klein CCD, MT +station = ('kbil', 0.0085386169000278948) +zone = ('mtz029', 0.0036630854766993444) + +[fips3006592289] +centroid = (0.8115308561145117, -1.8857233799451207) +description = Melstone CCD, MT +station = ('kbil', 0.013361738069499076) +zone = ('mtz029', 0.0042497312490537347) + +[fips3006592877] +centroid = (0.81311146119170286, -1.8951909882857341) +description = Roundup CCD, MT +station = ('kbil', 0.013466972957539102) +zone = ('mtz029', 0.0027695985677541751) + +[fips30067] +centroid = (0.79276179477807507, -1.9291612565418033) +description = Park County, MT +station = ('klvm', 0.00500354410451034) +zone = ('mtz064', 0.0022232295800641818) + +[fips3006791365] +centroid = (0.78722229426517021, -1.9289203312918581) +description = Gardiner-Cooke City CCD, MT +station = ('kp60', 0.0097606472547850914) +zone = ('mtz064', 0.0055683561034018557) + +[fips3006792131] +centroid = (0.79276179477807507, -1.9291612565418033) +description = Livingston CCD, MT +station = ('klvm', 0.00500354410451034) +zone = ('mtz064', 0.0022232295800641818) + +[fips3006793066] +centroid = (0.80185895698495246, -1.9294952252941724) +description = Shields Valley CCD, MT +station = ('klvm', 0.004481976111925111) +zone = ('mtz040', 0.00068441544087931251) + +[fips3006794019] +centroid = (0.78579403897838573, -1.9306323073018465) +description = Yellowstone National Park CCD, MT +station = ('kp60', 0.0086152985015950211) +zone = ('mtz064', 0.0065785187807907083) + +[fips30069] +centroid = (0.82278166735188762, -1.8889100719065821) +description = Petroleum County, MT +station = ('klwt', 0.014624497655800322) +zone = ('mtz021', 0.00050954963253386078) + +[fips3006925] +centroid = (0.7926497097335119, -1.8586597286050435) +description = Birney CDP, MT +station = ('km46', 0.0080724183575524629) +zone = ('mtz058', 0.0002317542386038886) + +[fips3006993948] +centroid = (0.82498442994753729, -1.8878574987412895) +description = Winnett North CCD, MT +station = ('klwt', 0.015703129821723897) +zone = ('mtz021', 0.002810655299522625) + +[fips3006993969] +centroid = (0.8178773619669536, -1.8890943088624226) +description = Winnett South CCD, MT +station = ('kbil', 0.0186114515312365) +zone = ('mtz021', 0.0044808093669459377) + +[fips30071] +centroid = (0.84212406934760464, -1.883713493685109) +description = Phillips County, MT +station = ('cwvn', 0.014796961632105152) +zone = ('mtz016', 0.0025202431875592487) + +[fips3007150] +centroid = (0.82952181476382436, -1.9418415098898549) +description = Black Eagle CDP, MT +station = ('kgfa', 0.0010212369030316712) +zone = ('mtz012', 0.003979167490257206) + +[fips3007191186] +centroid = (0.84102995734611441, -1.891474903055558) +description = Fort Belknap Reservation CCD, MT +station = ('cwvn', 0.017848036980010605) +zone = ('mtz016', 0.0063498577610316756) + +[fips3007192205] +centroid = (0.84329815233542116, -1.8831643607425541) +description = Malta CCD, MT +station = ('cwvn', 0.013567981999643045) +zone = ('mtz016', 0.0035298352460636485) + +[fips3007193223] +centroid = (0.83242455910927882, -1.885861418035661) +description = South Phillips CCD, MT +station = ('kggw', 0.01909177641259107) +zone = ('mtz060', 0.0055281810772237769) + +[fips3007193864] +centroid = (0.85105909046697181, -1.8797920355618507) +description = Whitewater CCD, MT +station = ('cwvn', 0.0054934537221849027) +zone = ('mtz059', 0.00053520851516567348) + +[fips30073] +centroid = (0.84177774366413127, -1.9586072299509751) +description = Pondera County, MT +station = ('kctb', 0.0067242053624708325) +zone = ('mtz046', 0.0027547602006206904) + +[fips3007390357] +centroid = (0.84516403147885077, -1.9624625226422905) +description = Blackfeet Reservation East CCD, MT +station = ('kctb', 0.0031372035161531123) +zone = ('mtz010', 0.0059499109355002902) + +[fips3007390378] +centroid = (0.84241848893912352, -1.9684062065033721) +description = Blackfeet Reservation West CCD, MT +station = ('k8s0', 0.0069929039001841902) +zone = ('mtz009', 0.0071651036129391325) + +[fips3007390714] +centroid = (0.84041410046625564, -1.9515624702246879) +description = Conrad CCD, MT +station = ('kctb', 0.010212828946696602) +zone = ('mtz046', 0.0023911305668899126) + +[fips3007393675] +centroid = (0.84259426104809187, -1.9648284560697091) +description = Valier-Dupuyer CCD, MT +station = ('kctb', 0.0060628380695982058) +zone = ('mtz010', 0.0081732755150458383) + +[fips30075] +centroid = (0.7925346401759279, -1.8422868123453773) +description = Powder River County, MT +station = ('km46', 0.016166319955266139) +zone = ('mtz036', 0.00094863534754845765) + +[fips3007590441] +centroid = (0.79606996165547506, -1.8412628625798171) +description = Broadus CCD, MT +station = ('kmls', 0.015090841220932717) +zone = ('mtz036', 0.0041156442827647239) + +[fips3007590987] +centroid = (0.79036709832458374, -1.8380823316306152) +description = East Powder River CCD, MT +station = ('kgcc', 0.016858853019748522) +zone = ('mtz036', 0.0043254862286071973) + +[fips3007592583] +centroid = (0.7922607107498274, -1.8498301777323742) +description = Otter CCD, MT +station = ('km46', 0.011979978520072918) +zone = ('mtz036', 0.0043799965422369374) + +[fips30077] +centroid = (0.81758596179504073, -1.9710195228989682) +description = Powell County, MT +station = ('k3du', 0.0040564654500435853) +zone = ('mtz007', 0.0079535908784520611) + +[fips3007790126] +centroid = (0.81310739457454573, -1.9665897027244814) +description = Avon-Elliston CCD, MT +station = ('k3du', 0.005831399615178855) +zone = ('mtz007', 0.0045240836859013452) + +[fips3007790861] +centroid = (0.80924779091997801, -1.968251448158598) +description = Deer Lodge CCD, MT +station = ('k3du', 0.0069285820110414013) +zone = ('mtz007', 0.0017998672652853867) + +[fips3007791743] +centroid = (0.82236067648301414, -1.9732370160735047) +description = Helmville CCD, MT +station = ('k3du', 0.0079495316517830313) +zone = ('mtz043', 0.0064052990276598134) + +[fips30079] +centroid = (0.81772923587333701, -1.839154801549381) +description = Prairie County, MT +station = ('kmls', 0.0095124732281654991) +zone = ('mtz026', 0.00014297526191792113) + +[fips3007993465] +centroid = (0.82046399227828681, -1.8450891478989644) +description = Terry North CCD, MT +station = ('kmls', 0.01024735901664197) +zone = ('mtz026', 0.004790317619147947) + +[fips3007993486] +centroid = (0.81512092857269403, -1.8331383549117837) +description = Terry South CCD, MT +station = ('kgdv', 0.008000211765625747) +zone = ('mtz026', 0.0049737242958780292) + +[fips30081] +centroid = (0.80423546710763805, -1.9917534235474228) +description = Ravalli County, MT +station = ('kmso', 0.014616635023204375) +zone = ('mtz006', 0.0027093772332770247) + +[fips3008162] +centroid = (0.84285155748642093, -1.9174974480435278) +description = Boneau CDP, MT +station = ('khvr', 0.0046461377676809091) +zone = ('mtz011', 0.00652862916436402) + +[fips3008190819] +centroid = (0.8030351867277491, -1.9961509202241625) +description = Darby CCD, MT +station = ('kp69', 0.015017722402872104) +zone = ('mtz006', 0.0058391126511834245) + +[fips3008191575] +centroid = (0.80671755219677677, -1.9911950229065396) +description = Hamilton CCD, MT +station = ('kmso', 0.012133746881984445) +zone = ('mtz006', 0.0015361430018754297) + +[fips3008193339] +centroid = (0.81238156449851884, -1.9909029595095109) +description = Stevensville CCD, MT +station = ('kmso', 0.0064784684769886259) +zone = ('mtz005', 0.001096086732509779) + +[fips3008193380] +centroid = (0.79837618736918281, -1.9922654682433729) +description = Sula CCD, MT +station = ('ksmn', 0.011413304719342071) +zone = ('mtz006', 0.0081492595558887073) + +[fips3008193696] +centroid = (0.81009654453522273, -1.9940747812657453) +description = Victor CCD, MT +station = ('kmso', 0.0089412363751455379) +zone = ('mtz005', 0.0021585445346053063) + +[fips30083] +centroid = (0.83401453660455316, -1.8249753801870361) +description = Richland County, MT +station = ('ksdy', 0.0045185412916374712) +zone = ('mtz024', 4.7734445919579732e-05) + +[fips3008391113] +centroid = (0.83764586864625246, -1.8256216057958794) +description = Fairview CCD, MT +station = ('ksdy', 0.0069462447810106076) +zone = ('mtz024', 0.0036185910509534077) + +[fips3008391974] +centroid = (0.83349435867428878, -1.8278700785646387) +description = Lambert CCD, MT +station = ('ksdy', 0.0062888969546860737) +zone = ('mtz024', 0.0020473885668581097) + +[fips3008392982] +centroid = (0.82916299252290693, -1.8201929162371837) +description = Savage-Crane CCD, MT +station = ('ksdy', 0.0035198592945425143) +zone = ('mtz024', 0.0058458437008536883) + +[fips3008393108] +centroid = (0.83296575080373725, -1.818221025794988) +description = Sidney CCD, MT +station = ('ksdy', 0.00052319723217201792) +zone = ('mtz024', 0.0046472465719129292) + +[fips3008462] +centroid = (0.81816216479429416, -1.9877170703995055) +description = Bonner-West Riverside CDP, MT +station = ('kmso', 0.0026226099081234559) +zone = ('mtz043', 0.0066999397485802744) + +[fips30085] +centroid = (0.84269290705741462, -1.8325114151911748) +description = Roosevelt County, MT +station = ('kolf', 0.0075501246228672891) +zone = ('mtz020', 0.0047836605966682759) + +[fips3008575] +centroid = (0.80696493516495438, -1.9568723901277854) +description = Boulder city, MT +station = ('khln', 0.0066225177623726612) +zone = ('mtz052', 0.001555807079545326) + +[fips3008591008] +centroid = (0.84155222967148113, -1.8208690218828212) +description = East Roosevelt CCD, MT +station = ('ksdy', 0.0091534706501298062) +zone = ('mtz062', 0.0025533428303035192) + +[fips3008591239] +centroid = (0.84330277745793891, -1.8379254090775685) +description = Fort Peck Reservation CCD, MT +station = ('kolf', 0.0049887927066511488) +zone = ('mtz020', 0.0011525001190251737) + +[fips30087] +centroid = (0.80567424672981214, -1.8623003981582411) +description = Rosebud County, MT +station = ('km46', 0.0054451815611968636) +zone = ('mtz031', 0.0039966472816580396) + +[fips3008725] +centroid = (0.84339632710584589, -1.9201704721528348) +description = Box Elder CDP, MT +station = ('khvr', 0.0049129190379625688) +zone = ('mtz011', 0.0054349500709628441) + +[fips3008790084] +centroid = (0.79136094116054678, -1.8578721313267885) +description = Ashland CCD, MT +station = ('km46', 0.0094729386384941779) +zone = ('mtz058', 0.001628068448377055) + +[fips3008791155] +centroid = (0.80567424672981214, -1.8623003981582411) +description = Forsyth CCD, MT +station = ('km46', 0.0054451815611968636) +zone = ('mtz031', 0.0039966472816580396) + +[fips3008792457] +centroid = (0.79505109079803837, -1.8593328671909526) +description = Northern Cheyenne Reservation CCD, MT +station = ('km46', 0.0056667841455495813) +zone = ('mtz058', 0.0022157442065986609) + +[fips3008792491] +centroid = (0.81270968639789376, -1.8663317945710827) +description = North of the Yellowstone CCD, MT +station = ('km46', 0.012738551993000712) +zone = ('mtz031', 0.0036621737332116367) + +[fips3008792856] +centroid = (0.80180197198487491, -1.8590065255274146) +description = Rosebud CCD, MT +station = ('km46', 0.0029612038970604285) +zone = ('mtz031', 0.0083925915113107104) + +[fips3008800] +centroid = (0.79335042452160254, -1.9035730192848994) +description = Boyd CDP, MT +station = ('kbil', 0.0089143443751457802) +zone = ('mtz056', 0.0040871888406155878) + +[fips30089] +centroid = (0.83350762317660387, -2.0102741594378855) +description = Sanders County, MT +station = ('kmlp', 0.0078345295267254773) +zone = ('mtz004', 0.0080945158635637067) + +[fips3008950] +centroid = (0.79732146744891019, -1.9382541775985984) +description = Bozeman city, MT +station = ('kbzn', 0.002104985172777143) +zone = ('mtz055', 0.0024828060518869576) + +[fips3008991134] +centroid = (0.82869107294646005, -1.9993964821412937) +description = Flathead Reservation CCD, MT +station = ('kmso', 0.011234217376188115) +zone = ('mtz003', 0.0059478864093907222) + +[fips3008992688] +centroid = (0.83084925983301383, -2.0068795464026343) +description = Plains CCD, MT +station = ('kmlp', 0.0084639741646677126) +zone = ('mtz004', 0.0051780822233018142) + +[fips3008993507] +centroid = (0.83477426097465379, -2.0179245833212001) +description = Thompson Falls-West End CCD, MT +station = ('kmlp', 0.0066396737355520347) +zone = ('mtz001', 0.0096814584579057346) + +[fips30091] +centroid = (0.8500717402558261, -1.8244609618433032) +description = Sheridan County, MT +station = ('cwaq', 0.012446201426514527) +zone = ('mtz019', 0.00043453499165286614) + +[fips3009191260] +centroid = (0.84751835846674339, -1.8270484299126772) +description = Fort Peck Reservation CCD, MT +station = ('kolf', 0.013175095660790604) +zone = ('mtz019', 0.0034907706745632774) + +[fips3009192268] +centroid = (0.84690600969868135, -1.8200211060256175) +description = Medicine Lake CCD, MT +station = ('kisn', 0.0094175705845785055) +zone = ('mtz019', 0.0043094724489229396) + +[fips3009192709] +centroid = (0.85210789372108031, -1.8272131366341882) +description = Plentywood CCD, MT +station = ('cwaq', 0.0099098418564988744) +zone = ('mtz019', 0.0027809123923111809) + +[fips3009193738] +centroid = (0.85263327273251566, -1.8190461127455757) +description = Westby CCD, MT +station = ('kd50', 0.010714504090619076) +zone = ('mtz019', 0.0039586728346921052) + +[fips3009250] +centroid = (0.83824519725809488, -1.9520471656112592) +description = Brady CDP, MT +station = ('kgtf', 0.011188719456140646) +zone = ('mtz049', 0.0038652465682209205) + +[fips30093] +centroid = (0.80103559791032408, -1.9662918099277511) +description = Silver Bow County, MT +station = ('kbtm', 0.0023034320525472905) +zone = ('mtz052', 0.0081588111862130313) + +[fips3009390483] +centroid = (0.80221844245098584, -1.9641049821881722) +description = Butte CCD, MT +station = ('kbtm', 0.00042679838425992411) +zone = ('mtz052', 0.0062416331898450562) + +[fips3009390485] +centroid = (0.80347172848025783, -1.9672631205630711) +description = Butte-Silver Bow Northwest CCD, MT +station = ('kbtm', 0.0028800620708401468) +zone = ('mtz007', 0.0066302333864353517) + +[fips3009390487] +centroid = (0.79942064475345387, -1.9666031417597218) +description = Butte-Silver Bow South CCD, MT +station = ('kbtm', 0.0035772647830770951) +zone = ('mtz052', 0.0093010484611404168) + +[fips3009475] +centroid = (0.79053967648102086, -1.9009548857805678) +description = Bridger town, MT +station = ('kbil', 0.010154349294965063) +zone = ('mtz039', 0.001903915993136492) + +[fips30095] +centroid = (0.79697835317126065, -1.9092462469250919) +description = Stillwater County, MT +station = ('kbil', 0.010596021026846507) +zone = ('mtz034', 0.0033197697914894176) + +[fips3009500] +centroid = (0.79943486918685747, -1.9355070293559593) +description = Bridger CDP, MT +station = ('kbzn', 0.0031078017682523865) +zone = ('mtz040', 0.0045215031624949347) + +[fips3009590021] +centroid = (0.79197191111849996, -1.9155025890683759) +description = Absarokee CCD, MT +station = ('klvm', 0.010079098306720007) +zone = ('mtz066', 0.00349534606480148) + +[fips3009590693] +centroid = (0.79599161382535311, -1.9080146553384221) +description = Columbus CCD, MT +station = ('kbil', 0.010085981865700399) +zone = ('mtz034', 0.0037586031019333365) + +[fips3009592510] +centroid = (0.80144880461073387, -1.9060799229560015) +description = North Stillwater CCD, MT +station = ('kbil', 0.0082237433835781609) +zone = ('mtz034', 0.0019189973454219859) + +[fips3009592604] +centroid = (0.79676702870542904, -1.9023493514930336) +description = Park City CCD, MT +station = ('kbil', 0.0061578858326516604) +zone = ('mtz034', 0.0038592870762478972) + +[fips30097] +centroid = (0.79958873741371339, -1.9188378783623521) +description = Sweet Grass County, MT +station = ('klvm', 0.0063080657695667418) +zone = ('mtz041', 0.0027203452323013035) + +[fips3009700] +centroid = (0.7931306526621914, -1.8397193632025233) +description = Broadus town, MT +station = ('kmls', 0.018220700285257713) +zone = ('mtz036', 0.0028453299406959297) + +[fips3009775] +centroid = (0.8045756492321442, -1.9002946975377084) +description = Broadview town, MT +station = ('kbil', 0.0063377666727629338) +zone = ('mtz042', 0.0052426700339551838) + +[fips3009792499] +centroid = (0.80260567865212573, -1.9182245347566163) +description = North of the Yellowstone CCD, MT +station = ('klvm', 0.0081230035939911967) +zone = ('mtz041', 0.00072929783173543319) + +[fips3009793213] +centroid = (0.79620747614723975, -1.9197041899898721) +description = South of the Yellowstone CCD, MT +station = ('klvm', 0.0055770587577942069) +zone = ('mtz066', 0.0024254457552545586) + +[fips30099] +centroid = (0.83459960587640658, -1.9596857910688301) +description = Teton County, MT +station = ('kctb', 0.013681544594879297) +zone = ('mtz048', 0.0037993289984973142) + +[fips3009990609] +centroid = (0.83562989118715136, -1.962110385012408) +description = Choteau CCD, MT +station = ('kctb', 0.012607587025252505) +zone = ('mtz048', 0.0033407916805477393) + +[fips3009990966] +centroid = (0.83475783742639242, -1.9486574744044984) +description = Dutton-Power CCD, MT +station = ('kgtf', 0.0070437002618798537) +zone = ('mtz049', 0.0015159297506038799) + +[fips3009991092] +centroid = (0.83108641517177473, -1.9568352495213031) +description = Fairfield CCD, MT +station = ('kgfa', 0.011203283013723487) +zone = ('mtz049', 0.0052430437238568965) + +[fips3010000] +centroid = (0.84037716929928341, -1.8310963720468278) +description = Brockton town, MT +station = ('ksdy', 0.01146521931842457) +zone = ('mtz062', 0.0049076973726500843) + +[fips30101] +centroid = (0.84901632220385259, -1.9501173376040364) +description = Toole County, MT +station = ('kctb', 0.0075382547284987599) +zone = ('mtz044', 0.00047039466708832404) + +[fips3010193014] +centroid = (0.84633842862593267, -1.9485313394594568) +description = Shelby CCD, MT +station = ('kctb', 0.0087650162741162527) +zone = ('mtz044', 0.0029200666313957987) + +[fips3010193402] +centroid = (0.85231459306439394, -1.9506070595388536) +description = Sunburst CCD, MT +station = ('cwry', 0.0061809664591981244) +zone = ('mtz044', 0.0032118534222041338) + +[fips30103] +centroid = (0.80651029434810251, -1.8723978434660216) +description = Treasure County, MT +station = ('km46', 0.0092480515753572291) +zone = ('mtz030', 0.00011108338148710781) + +[fips3010375] +centroid = (0.84746739485258527, -1.9724860358029566) +description = Browning town, MT +station = ('k8s0', 0.0013907348625204821) +zone = ('mtz009', 0.0022214315904219312) + +[fips3010392520] +centroid = (0.80877067026236027, -1.874402179579012) +description = North Treasure CCD, MT +station = ('km46', 0.011819167363905266) +zone = ('mtz030', 0.0026810013736064189) + +[fips3010393255] +centroid = (0.8043307795380894, -1.8709004382342731) +description = South Treasure CCD, MT +station = ('km46', 0.0070675383918507324) +zone = ('mtz030', 0.0024000068520109341) + +[fips30105] +centroid = (0.84414093692462422, -1.8620548303324855) +description = Valley County, MT +station = ('kggw', 0.002729641042822621) +zone = ('mtz017', 0.003205195317469261) + +[fips3010591281] +centroid = (0.84408135138396112, -1.8525926325125535) +description = Fort Peck Reservation CCD, MT +station = ('kggw', 0.0060306143821139959) +zone = ('mtz020', 0.0086410538523618019) + +[fips3010591470] +centroid = (0.84503953714330593, -1.8603800123822716) +description = Glasgow CCD, MT +station = ('kggw', 0.0035117124078294076) +zone = ('mtz017', 0.0042367402217329785) + +[fips3010591764] +centroid = (0.84866566810383448, -1.8663377810504169) +description = Hinsdale CCD, MT +station = ('kggw', 0.0080143486307335081) +zone = ('mtz061', 0.0043788211202481818) + +[fips3010592562] +centroid = (0.85207424377310192, -1.855788871425023) +description = Opheim CCD, MT +station = ('cwko', 0.0072257696710397775) +zone = ('mtz061', 0.0035712562168488241) + +[fips3010593276] +centroid = (0.83636802583440484, -1.8681347196883928) +description = South Valley CCD, MT +station = ('kggw', 0.0071197199896139533) +zone = ('mtz017', 0.0061540306242707345) + +[fips30107] +centroid = (0.81152656260455192, -1.917368921997411) +description = Wheatland County, MT +station = ('klwt', 0.01080851610217372) +zone = ('mtz028', 0.0020214344455822628) + +[fips3010791659] +centroid = (0.81094999308615545, -1.9209055350206048) +description = Harlowton CCD, MT +station = ('klwt', 0.012560247551257142) +zone = ('mtz028', 0.0030844886394790017) + +[fips3010791869] +centroid = (0.81091424874307472, -1.9130117598796847) +description = Judith Gap-Shawmut CCD, MT +station = ('klwt', 0.010434518214186204) +zone = ('mtz028', 0.0030394856101412086) + +[fips30109] +centroid = (0.81965663787289933, -1.8199327574588815) +description = Wibaux County, MT +station = ('k20u', 0.0035467602474414605) +zone = ('mtz027', 0.0003062888041871124) + +[fips3010992667] +centroid = (0.81655503071247271, -1.8199326003792489) +description = Pine Hill-St. Phillips CCD, MT +station = ('k20u', 0.0042625683009616874) +zone = ('mtz027', 0.0031587245216787422) + +[fips3010993885] +centroid = (0.82283271823250848, -1.8180673670076424) +description = Wibaux CCD, MT +station = ('k20u', 0.0044228475926896679) +zone = ('mtz027', 0.0032797251972800675) + +[fips30111] +centroid = (0.80175167159583249, -1.8897841502492734) +description = Yellowstone County, MT +station = ('kbil', 0.0039295927948629454) +zone = ('mtz035', 2.763419439503468e-05) + +[fips3011190315] +centroid = (0.7992420626643898, -1.8941399510101831) +description = Billings CCD, MT +station = ('kbil', 0.00050146275408775507) +zone = ('mtz035', 0.003960290792997043) + +[fips3011191806] +centroid = (0.80177549534012216, -1.8841799503809971) +description = Huntley Project CCD, MT +station = ('kbil', 0.0075287300670102593) +zone = ('mtz035', 0.0038700471167321324) + +[fips3011191995] +centroid = (0.79767369234525509, -1.8974299664633625) +description = Laurel CCD, MT +station = ('kbil', 0.0028170576480819952) +zone = ('mtz035', 0.0067339177562404425) + +[fips3011192426] +centroid = (0.80667812520897419, -1.8846639127292826) +description = Northeast Yellowstone CCD, MT +station = ('kbil', 0.0098258788330732073) +zone = ('mtz035', 0.0060543458474025813) + +[fips3011192541] +centroid = (0.80200069517350703, -1.897242238849018) +description = Northwest Yellowstone CCD, MT +station = ('kbil', 0.0030028860913756802) +zone = ('mtz034', 0.006711272989682761) + +[fips3011193024] +centroid = (0.80151222987575133, -1.8912026840521243) +description = Shepherd CCD, MT +station = ('kbil', 0.0029849124035151563) +zone = ('mtz035', 0.0010427713360208432) + +[fips3011193297] +centroid = (0.79650702700675946, -1.891862243976453) +description = South Yellowstone CCD, MT +station = ('kbil', 0.0036636234795306144) +zone = ('mtz035', 0.0054521145676762854) + +[fips3011200] +centroid = (0.79456985116338608, -1.8671233886533247) +description = Busby CDP, MT +station = ('km46', 0.0064802420748692052) +zone = ('mtz038', 0.0080180719337127858) + +[fips3011397] +centroid = (0.80103559791032408, -1.9662918099277511) +description = Butte-Silver Bow (balance), MT +station = ('kbtm', 0.0023034320525472905) +zone = ('mtz052', 0.0081588111862130313) + +[fips3011500] +centroid = (0.83720168235161996, -1.9602923104371905) +description = Bynum CDP, MT +station = ('kctb', 0.011055634573514625) +zone = ('mtz048', 0.00531911890295848) + +[fips3011800] +centroid = (0.83108952185784324, -2.0011245500869856) +description = Camas CDP, MT +station = ('kmlp', 0.012264660387220572) +zone = ('mtz003', 0.0050030193190836536) + +[fips3011995] +centroid = (0.81076374900167525, -1.8949770981859022) +description = Camp Three CDP, MT +station = ('kbil', 0.011115913955992162) +zone = ('mtz029', 0.0022516899699230298) + +[fips3012400] +centroid = (0.8005091891546301, -1.954115904373648) +description = Cardwell CDP, MT +station = ('kbtm', 0.0067587035725974265) +zone = ('mtz052', 0.005183735307506555) + +[fips3012435] +centroid = (0.81491349619109454, -1.9907643803669026) +description = Carlton CDP, MT +station = ('kmso', 0.0039623593675189861) +zone = ('mtz005', 0.0035728018719357922) + +[fips3012625] +centroid = (0.83388046041141484, -1.9361420499510049) +description = Carter CDP, MT +station = ('kgfa', 0.0056741649638575777) +zone = ('mtz013', 0.0060997391933973015) + +[fips3012775] +centroid = (0.82503192035648398, -1.9495916618866282) +description = Cascade town, MT +station = ('kgtf', 0.0050982841086156952) +zone = ('mtz012', 0.0042661260351472318) + +[fips3013900] +centroid = (0.82803243804663496, -1.9926803679131568) +description = Charlo CDP, MT +station = ('kmso', 0.009221963008683243) +zone = ('mtz003', 0.0059542127098320677) + +[fips3013975] +centroid = (0.80518965606299586, -1.9928421075749394) +description = Charlos Heights CDP, MT +station = ('kmso', 0.013695612444441507) +zone = ('mtz006', 0.0027934708157221488) + +[fips3014200] +centroid = (0.84668149054370478, -1.9367309938537978) +description = Chester town, MT +station = ('cwoe', 0.012026736792065989) +zone = ('mtz045', 0.0011068673569645034) + +[fips3014575] +centroid = (0.84805822371097028, -1.9064494964251113) +description = Chinook city, MT +station = ('khvr', 0.0062200730919105404) +zone = ('mtz047', 0.0041844011440237659) + +[fips3014650] +centroid = (0.83454373788705039, -1.9578448177738264) +description = Choteau city, MT +station = ('kgfa', 0.012908454000378123) +zone = ('mtz049', 0.0046836693510915427) + +[fips3014875] +centroid = (0.7984872775760723, -1.9427304584377731) +description = Churchill CDP, MT +station = ('kbzn', 0.0020362669165665545) +zone = ('mtz055', 0.0035808178657760897) + +[fips3014950] +centroid = (0.82759366227268372, -1.8428402562511845) +description = Circle town, MT +station = ('kolf', 0.011909784325778133) +zone = ('mtz023', 0.0046694178245391023) + +[fips3015100] +centroid = (0.81069246975502385, -1.9548203192597531) +description = Clancy CDP, MT +station = ('khln', 0.002666804460665769) +zone = ('mtz052', 0.0053620404777373967) + +[fips3015475] +centroid = (0.81635307866472451, -1.9848153907048949) +description = Clinton CDP, MT +station = ('kmso', 0.0051620638352585704) +zone = ('mtz005', 0.0067931211340124097) + +[fips3015550] +centroid = (0.80082840987481985, -1.9304297094822751) +description = Clyde Park town, MT +station = ('klvm', 0.003835562139501441) +zone = ('mtz040', 0.0013625094401356365) + +[fips3016525] +centroid = (0.80103697672043317, -1.8610036010707167) +description = Colstrip city, MT +station = ('km46', 0.0013802066338463757) +zone = ('mtz058', 0.0083141692777715798) + +[fips3016600] +centroid = (0.84421090717433667, -1.9930190665077989) +description = Columbia Falls city, MT +station = ('kgpi', 0.0014965806353399844) +zone = ('mtz002', 0.0047924524987519226) + +[fips3016825] +centroid = (0.79649311673262113, -1.906743305151392) +description = Columbus town, MT +station = ('kbil', 0.0090758897004649813) +zone = ('mtz034', 0.0030617260410030441) + +[fips3017050] +centroid = (0.82964224248221197, -1.9844675465849724) +description = Condon CDP, MT +station = ('kmso', 0.011779710748170516) +zone = ('mtz043', 0.0060013732389568811) + +[fips3017200] +centroid = (0.80159158999683955, -1.9919972111373412) +description = Conner CDP, MT +station = ('ksmn', 0.014482722540862825) +zone = ('mtz006', 0.0050493255537471067) + +[fips3017275] +centroid = (0.84078882265665889, -1.9538409102967038) +description = Conrad city, MT +station = ('kctb', 0.0089981722959079444) +zone = ('mtz046', 0.0011066817716808494) + +[fips3017350] +centroid = (0.78572282954490436, -1.9183234600186194) +description = Cooke City CDP, MT +station = ('kp60', 0.010295519653590931) +zone = ('mtz067', 0.00547420735985122) + +[fips3017500] +centroid = (0.84527377778221613, -1.9904924057095643) +description = Coram CDP, MT +station = ('kgpi', 0.0034199834478530235) +zone = ('mtz002', 0.0039090431772628442) + +[fips3017725] +centroid = (0.80833095201061289, -1.991625037127646) +description = Corvallis CDP, MT +station = ('kmso', 0.010520291903384627) +zone = ('mtz006', 0.0027407279118187022) + +[fips3017800] +centroid = (0.78769215435309958, -1.9338020695695637) +description = Corwin Springs CDP, MT +station = ('kwys', 0.0087529730643472366) +zone = ('mtz064', 0.0047092344619287666) + +[fips3018025] +centroid = (0.82153534518633098, -1.9542108502849567) +description = Craig CDP, MT +station = ('khln', 0.0082119299846162216) +zone = ('mtz014', 0.0040651369261514147) + +[fips3018100] +centroid = (0.83037826528107062, -1.8195206154093155) +description = Crane CDP, MT +station = ('ksdy', 0.002225637059126334) +zone = ('mtz024', 0.0051809603833498034) + +[fips3018250] +centroid = (0.79591609342861924, -1.8755158392681244) +description = Crow Agency CDP, MT +station = ('km46', 0.0099869958021305064) +zone = ('mtz057', 0.0022543936634858847) + +[fips3018475] +centroid = (0.84032830008022763, -1.8241354404845138) +description = Culbertson town, MT +station = ('ksdy', 0.0086332449747369751) +zone = ('mtz062', 0.0021605079262016092) + +[fips3018700] +centroid = (0.80510122022979724, -1.8772303809121136) +description = Custer CDP, MT +station = ('km46', 0.011260749857616789) +zone = ('mtz030', 0.0037417657671388795) + +[fips3018775] +centroid = (0.84883264375337286, -1.9605437425692329) +description = Cut Bank city, MT +station = ('kctb', 0.00085405767112814294) +zone = ('mtz010', 0.003819451973360405) + +[fips3019300] +centroid = (0.80325729732835782, -1.9928097491706072) +description = Darby town, MT +station = ('kmso', 0.015622328975475542) +zone = ('mtz006', 0.0039272707357402587) + +[fips3019525] +centroid = (0.83538277001836148, -1.9945019506001709) +description = Dayton CDP, MT +station = ('kgpi', 0.0076121299651874877) +zone = ('mtz003', 0.0016029810810133964) + +[fips3019675] +centroid = (0.82692670215232655, -2.0126891017107003) +description = De Borgia CDP, MT +station = ('kmlp', 0.0042915623017246319) +zone = ('mtz004', 0.0038990059713977063) + +[fips3019825] +centroid = (0.80979119918258646, -1.9675608737334611) +description = Deer Lodge city, MT +station = ('k3du', 0.0068649182848950861) +zone = ('mtz007', 0.0022393165263379601) + +[fips3020425] +centroid = (0.82591994387989875, -1.9189706455585513) +description = Denton town, MT +station = ('kfhu', 0.0070810234210692486) +zone = ('mtz050', 0.0061154393504744223) + +[fips3020800] +centroid = (0.78918763972267092, -1.9658389144401509) +description = Dillon city, MT +station = ('kdln', 0.0011841318986484206) +zone = ('mtz008', 0.0035718991882365656) + +[fips3020950] +centroid = (0.82585215529175127, -1.9959582882346201) +description = Dixon CDP, MT +station = ('kmso', 0.0076524821141800842) +zone = ('mtz003', 0.0079809578302360122) + +[fips3021025] +centroid = (0.84466338378291617, -1.8892660143542339) +description = Dodson town, MT +station = ('cwvn', 0.013982936501956275) +zone = ('mtz016', 0.0067743317591540007) + +[fips3021850] +centroid = (0.81447859504808262, -1.974787618940854) +description = Drummond town, MT +station = ('k3du', 3.6944693895785887e-05) +zone = ('mtz007', 0.0055677864268729449) + +[fips3022450] +centroid = (0.84094176585901115, -1.9630490754440084) +description = Dupuyer CDP, MT +station = ('kctb', 0.0073643178755593832) +zone = ('mtz048', 0.0082635222898691275) + +[fips3022600] +centroid = (0.83509700725993252, -1.9497814664427826) +description = Dutton town, MT +station = ('kgtf', 0.0077020364358335843) +zone = ('mtz049', 0.00096943901733072572) + +[fips3022985] +centroid = (0.84554074334460116, -1.9761228307252148) +description = East Glacier Park Village CDP, MT +station = ('k8s0', 0.0029862875472336883) +zone = ('mtz009', 0.002085407232421661) + +[fips3023125] +centroid = (0.81306053248412957, -1.9533667741521072) +description = East Helena city, MT +station = ('khln', 0.00062193314775764994) +zone = ('mtz053', 0.0067472346274472673) + +[fips3023200] +centroid = (0.81822963922317615, -1.9887008252323921) +description = East Missoula CDP, MT +station = ('kmso', 0.0019593449954088786) +zone = ('mtz043', 0.0070303398534091281) + +[fips3023500] +centroid = (0.79349130749882357, -1.8998833583395984) +description = Edgar CDP, MT +station = ('kbil', 0.007199240685184057) +zone = ('mtz039', 0.0039119314310655674) + +[fips3023650] +centroid = (0.80091789290556969, -1.8247641953475446) +description = Ekalaka town, MT +station = ('kbhk', 0.0088296299823450459) +zone = ('mtz037', 0.0065024687730527338) + +[fips3023865] +centroid = (0.8078136015137366, -1.9538757994284512) +description = Elkhorn CDP, MT +station = ('khln', 0.0055140010236798499) +zone = ('mtz052', 0.0029460200355803236) + +[fips3023950] +centroid = (0.81260269771474658, -1.9628651351941404) +description = Elliston CDP, MT +station = ('k3du', 0.0084389120168642875) +zone = ('mtz014', 0.0072552779162192247) + +[fips3024100] +centroid = (0.83477085758261238, -1.9957590938070899) +description = Elmo CDP, MT +station = ('kgpi', 0.0082784789627312026) +zone = ('mtz003', 0.0011378912881064235) + +[fips3024325] +centroid = (0.79200440914917203, -1.9328052771271647) +description = Emigrant CDP, MT +station = ('klvm', 0.0067589677269724018) +zone = ('mtz064', 0.00047323389076015128) + +[fips3024475] +centroid = (0.79143914936432858, -1.9500767761522202) +description = Ennis town, MT +station = ('kdln', 0.010191746507508339) +zone = ('mtz015', 0.0024520163466025917) + +[fips3024850] +centroid = (0.85305288479128016, -2.0079582471468296) +description = Eureka town, MT +station = ('kgpi', 0.01350723588750445) +zone = ('mtz001', 0.0101744411311978) + +[fips3025000] +centroid = (0.8215954019658922, -1.9901286965467413) +description = Evaro CDP, MT +station = ('kmso', 0.0028830652610207933) +zone = ('mtz043', 0.0056932493392703393) + +[fips3025075] +centroid = (0.84177585870853922, -1.9944079995265362) +description = Evergreen CDP, MT +station = ('kgpi', 0.0012192886317930823) +zone = ('mtz003', 0.0079823801570695959) + +[fips3025225] +centroid = (0.83104407348412135, -1.9544469060662888) +description = Fairfield town, MT +station = ('kgfa', 0.0096147268415021428) +zone = ('mtz049', 0.0041789515809887512) + +[fips3025300] +centroid = (0.83515889663520826, -1.8160270072988911) +description = Fairview town, MT +station = ('ksdy', 0.0031654787710186033) +zone = ('mtz024', 0.0060859831899743328) + +[fips3025375] +centroid = (0.81746073442121014, -1.8348209395771686) +description = Fallon CDP, MT +station = ('kgdv', 0.0064764861988554547) +zone = ('mtz026', 0.0030169033458139348) + +[fips3026226] +centroid = (0.83339815612591883, -1.9909843791191164) +description = Finley Point CDP, MT +station = ('kgpi', 0.0098532216505830359) +zone = ('mtz003', 0.002646920257929149) + +[fips3026800] +centroid = (0.85178855082784288, -1.8356405461939054) +description = Flaxville town, MT +station = ('cwaq', 0.0055674203979994624) +zone = ('mtz018', 0.0043149140449554634) + +[fips3026950] +centroid = (0.81392532567520037, -1.9910951202601554) +description = Florence CDP, MT +station = ('kmso', 0.004930025916286062) +zone = ('mtz005', 0.0025625887426793696) + +[fips3027595] +centroid = (0.83978197711776836, -1.9942574648785514) +description = Forest Hill Village CDP, MT +station = ('kgpi', 0.0032124109008941069) +zone = ('mtz003', 0.0059966930450358839) + +[fips3027700] +centroid = (0.80749382228818622, -1.8618872961775865) +description = Forsyth city, MT +station = ('km46', 0.0072779180532154637) +zone = ('mtz031', 0.0023874748350381984) + +[fips3027850] +centroid = (0.84527592453719613, -1.8967135786185889) +description = Fort Belknap Agency CDP, MT +station = ('cwvn', 0.016751825207279029) +zone = ('mtz047', 0.0032996478569737604) + +[fips3028000] +centroid = (0.83476679096545525, -1.9313104898892941) +description = Fort Benton city, MT +station = ('kfhu', 0.0050950049109447009) +zone = ('mtz013', 0.0027397757622832368) + +[fips3028150] +centroid = (0.85119955456517238, -2.0051393135120561) +description = Fortine CDP, MT +station = ('kgpi', 0.010888669857980735) +zone = ('mtz001', 0.0088810647937245957) + +[fips3028450] +centroid = (0.83788183716112208, -1.8579950199594215) +description = Fort Peck town, MT +station = ('kggw', 0.0041129477571565367) +zone = ('mtz017', 0.0040452871424257594) + +[fips3028600] +centroid = (0.82897702769110693, -1.9516157376734586) +description = Fort Shaw CDP, MT +station = ('kgfa', 0.007499786118839431) +zone = ('mtz049', 0.0055069559437380408) + +[fips3028650] +centroid = (0.79085631411391755, -1.8838017200787973) +description = Fort Smith CDP, MT +station = ('kbil', 0.011577248464361294) +zone = ('mtz038', 0.00535047941198241) + +[fips3028862] +centroid = (0.79708795984828584, -1.9404292767256039) +description = Four Corners CDP, MT +station = ('kbzn', 0.0020119446888113932) +zone = ('mtz055', 0.0017719833755089399) + +[fips3029087] +centroid = (0.8322725409314301, -1.8261486428701041) +description = Fox Lake CDP, MT +station = ('ksdy', 0.0050649039368109213) +zone = ('mtz024', 0.0019599494401627638) + +[fips3029275] +centroid = (0.83861162913455101, -1.8508967484382679) +description = Frazer CDP, MT +station = ('kggw', 0.0072362149374377667) +zone = ('mtz023', 0.0076450576759668513) + +[fips3029350] +centroid = (0.82078696545636831, -1.9940086507403871) +description = Frenchtown CDP, MT +station = ('kmso', 0.0026208951866044262) +zone = ('mtz005', 0.0095529526985340899) + +[fips3029500] +centroid = (0.84360862895605848, -1.8237298608729353) +description = Froid town, MT +station = ('ksdy', 0.01159890326804168) +zone = ('mtz062', 0.0012246700835160211) + +[fips3029575] +centroid = (0.79223559546189126, -1.9007765654908915) +description = Fromberg town, MT +station = ('kbil', 0.0085990912210956554) +zone = ('mtz039', 0.0029904063578524934) + +[fips3029875] +centroid = (0.79563989507449118, -1.9406999074794182) +description = Gallatin Gateway CDP, MT +station = ('kbzn', 0.0034715545113574889) +zone = ('mtz055', 0.00040586116447725688) + +[fips3029885] +centroid = (0.80115995261952877, -1.943065317308061) +description = Gallatin River Ranch CDP, MT +station = ('kbzn', 0.0030212906830729847) +zone = ('mtz055', 0.0061429983010686867) + +[fips3029950] +centroid = (0.78631559571875909, -1.9327403159724055) +description = Gardiner CDP, MT +station = ('kwys', 0.0079677237517518044) +zone = ('mtz064', 0.0059673997864255627) + +[fips3030175] +centroid = (0.8122796023636174, -1.9690238785256529) +description = Garrison CDP, MT +station = ('k3du', 0.0045651087658673886) +zone = ('mtz007', 0.0029148403887530763) + +[fips3030400] +centroid = (0.83082988667831659, -1.9245178429734575) +description = Geraldine town, MT +station = ('kfhu', 0.00094500968122197045) +zone = ('mtz013', 0.0052321467083412754) + +[fips3030550] +centroid = (0.82490060178356395, -1.9284612747919985) +description = Geyser CDP, MT +station = ('kfhu', 0.0067262281207181628) +zone = ('mtz050', 0.0046567885958348149) + +[fips3030625] +centroid = (0.82842079125849633, -1.9415579636995761) +description = Gibson Flats CDP, MT +station = ('kgfa', 0.00093242826769107093) +zone = ('mtz012', 0.0030039665993384776) + +[fips3030700] +centroid = (0.84779162466772828, -1.9245615634712199) +description = Gildford CDP, MT +station = ('khvr', 0.0058214315344721568) +zone = ('mtz011', 0.0020468410284610493) + +[fips3031075] +centroid = (0.84122789513658303, -1.861083467337288) +description = Glasgow city, MT +station = ('kggw', 0.00036043505791754932) +zone = ('mtz017', 0.0006567175181795762) + +[fips3031250] +centroid = (0.79083311868815864, -1.9339376292925661) +description = South Glastonbury CDP, MT +station = ('klvm', 0.0081750231013753474) +zone = ('mtz064', 0.0018651928871007732) + +[fips3031450] +centroid = (0.82216307030510327, -1.8275491823283669) +description = Glendive city, MT +station = ('kgdv', 0.0011578624870531393) +zone = ('mtz025', 0.0035766739823633897) + +[fips3032575] +centroid = (0.82076270537976559, -1.8989731691346832) +description = Grass Range town, MT +station = ('klwt', 0.0077052060533468218) +zone = ('mtz051', 0.0064927715561666826) + +[fips3032800] +centroid = (0.82905650998524272, -1.9425510211373758) +description = Great Falls city, MT +station = ('kgfa', 0.0013755641162715472) +zone = ('mtz012', 0.0034219248785719177) + +[fips3033250] +centroid = (0.79863833582283239, -1.9160179847964898) +description = Greycliff CDP, MT +station = ('klvm', 0.0080282504042896823) +zone = ('mtz066', 0.0032454150284339394) + +[fips3033775] +centroid = (0.80726069865999739, -1.9924700208317065) +description = Hamilton city, MT +station = ('kmso', 0.011612025162243628) +zone = ('mtz006', 0.0025562907548963105) + +[fips3034110] +centroid = (0.83891538623756812, -2.0094875919038895) +description = Happys Inn CDP, MT +station = ('kmlp', 0.012433623921925843) +zone = ('mtz001', 0.0041118883610867414) + +[fips3034225] +centroid = (0.79835260797098839, -1.8781141632854459) +description = Hardin city, MT +station = ('km46', 0.010968370611422792) +zone = ('mtz057', 0.0018182901881936473) + +[fips3034375] +centroid = (0.84704181376777887, -1.8986520460056089) +description = Harlem city, MT +station = ('cweh', 0.01589618402159244) +zone = ('mtz047', 0.0026540732788640727) + +[fips3034450] +centroid = (0.81047549042241585, -1.9169744252265826) +description = Harlowton city, MT +station = ('klwt', 0.011648301789790063) +zone = ('mtz028', 0.00094853459325602201) + +[fips3034525] +centroid = (0.79767870144020836, -1.9510224304475359) +description = Harrison CDP, MT +station = ('kbzn', 0.0078627134268805122) +zone = ('mtz015', 0.0072217880752493942) + +[fips3035050] +centroid = (0.84726448287374845, -1.9141494527525973) +description = Havre city, MT +station = ('khvr', 0.0010898373116838189) +zone = ('mtz011', 0.0052695125890735795) + +[fips3035125] +centroid = (0.84758724661231977, -1.9141274092441447) +description = Havre North CDP, MT +station = ('khvr', 0.0011240260818636844) +zone = ('mtz011', 0.0052028266218189147) + +[fips3035275] +centroid = (0.83793978209228837, -1.896487436307408) +description = Hays CDP, MT +station = ('klwt', 0.019169745063183207) +zone = ('mtz060', 0.0039566938041104231) + +[fips3035350] +centroid = (0.84281146727350265, -1.9693218760421385) +description = Heart Butte CDP, MT +station = ('k8s0', 0.0063361172654460641) +zone = ('mtz009', 0.0064633714856124338) + +[fips3035435] +centroid = (0.78137064161554626, -1.9406395016340066) +description = Hebgen Lake Estates CDP, MT +station = ('kwys', 0.0017564788733931691) +zone = ('wyz001', 0.0086571751143124671) + +[fips3035600] +centroid = (0.81324428074777955, -1.9550959416552278) +description = Helena city, MT +station = ('khln', 0.0006295537597853588) +zone = ('mtz014', 0.0068366795794633445) + +[fips3035622] +centroid = (0.84264979742489032, -1.9938092643266394) +description = Helena Flats CDP, MT +station = ('kgpi', 0.00048819814929131051) +zone = ('mtz002', 0.0050320024480367213) + +[fips3035628] +centroid = (0.81518431893112642, -1.953707951114287) +description = Helena Valley Northeast CDP, MT +station = ('khln', 0.0018897146112481879) +zone = ('mtz014', 0.0057305966953562727) + +[fips3035631] +centroid = (0.81558342337118006, -1.9557828857955204) +description = Helena Valley Northwest CDP, MT +station = ('khln', 0.0025113841734754772) +zone = ('mtz014', 0.0045515026811692467) + +[fips3035634] +centroid = (0.81365628317100536, -1.9533216922975281) +description = Helena Valley Southeast CDP, MT +station = ('khln', 0.00068127423395068873) +zone = ('mtz014', 0.007092503592635262) + +[fips3035637] +centroid = (0.81436472976768237, -1.955791699708243) +description = Helena Valley West Central CDP, MT +station = ('khln', 0.0015161276951541497) +zone = ('mtz014', 0.005619385732101299) + +[fips3035640] +centroid = (0.81341835988737343, -1.956637503717052) +description = Helena West Side CDP, MT +station = ('khln', 0.001686309561381831) +zone = ('mtz014', 0.0062944947255334487) + +[fips3035875] +centroid = (0.83887082798176471, -2.0242367061873781) +description = Heron CDP, MT +station = ('kszt', 0.0079021453582035842) +zone = ('idz001', 0.010164399767342007) + +[fips3035912] +centroid = (0.8470808044232685, -1.9158777999509695) +description = Herron CDP, MT +station = ('khvr', 0.00028262590881616561) +zone = ('mtz011', 0.0042506991786139129) + +[fips3036250] +centroid = (0.83076283112845495, -1.9332613316607108) +description = Highwood CDP, MT +station = ('kgfa', 0.0051931658816319762) +zone = ('mtz013', 0.0062731665106118446) + +[fips3036400] +centroid = (0.84745221048809294, -1.9272154936785098) +description = Hingham town, MT +station = ('cwoe', 0.0098091864284507949) +zone = ('mtz011', 0.0037974374674685767) + +[fips3036475] +centroid = (0.84482283706337846, -1.8690184147952624) +description = Hinsdale CDP, MT +station = ('kggw', 0.0063694825304738273) +zone = ('mtz017', 0.0060926204497566408) + +[fips3036700] +centroid = (0.82030188609736165, -1.9176653487175699) +description = Hobson city, MT +station = ('klwt', 0.0051215099940397739) +zone = ('mtz050', 0.0047312771804417127) + +[fips3037825] +centroid = (0.83093691026804894, -2.0013761742052458) +description = Hot Springs town, MT +station = ('kmlp', 0.012064666787427672) +zone = ('mtz003', 0.0052284819973856846) + +[fips3038125] +centroid = (0.84445675425277267, -1.9908073852796717) +description = Hungry Horse CDP, MT +station = ('kgpi', 0.0027605181191127349) +zone = ('mtz002', 0.0035716777249406658) + +[fips3038200] +centroid = (0.80111014092267685, -1.8902808535010984) +description = Huntley CDP, MT +station = ('kbil', 0.0033146902808088748) +zone = ('mtz035', 0.00074527026638022086) + +[fips3038275] +centroid = (0.82088643177043952, -1.9956241973092033) +description = Huson CDP, MT +station = ('kmso', 0.0035173832471548584) +zone = ('mtz005', 0.0099034869649934545) + +[fips3038350] +centroid = (0.80793048621374275, -1.8715277619273174) +description = Hysham town, MT +station = ('km46', 0.0098729340212004423) +zone = ('mtz030', 0.0014734796251053251) + +[fips3038480] +centroid = (0.85447468235983226, -2.0078917850089133) +description = Indian Springs CDP, MT +station = ('cwrt', 0.013405103713745018) +zone = ('mtz001', 0.011587771368625615) + +[fips3038725] +centroid = (0.84752952857395625, -1.9322553587864462) +description = Inverness CDP, MT +station = ('cwoe', 0.010112283954339362) +zone = ('mtz045', 0.0036332025153432541) + +[fips3038950] +centroid = (0.81157906210845188, -1.8289850996105679) +description = Ismay town, MT +station = ('kbhk', 0.0070394422576443164) +zone = ('mtz033', 0.0053700959191972254) + +[fips3039175] +centroid = (0.78638411734519242, -1.9306583127077013) +description = Jardine CDP, MT +station = ('kwys', 0.0089652256067532538) +zone = ('mtz064', 0.0059947234526365727) + +[fips3039400] +centroid = (0.80944785801213415, -1.9553008258561195) +description = Jefferson City CDP, MT +station = ('khln', 0.0039507163053751557) +zone = ('mtz052', 0.004076584336013561) + +[fips3039627] +centroid = (0.83281745017719533, -1.9930011943362584) +description = Jette CDP, MT +station = ('kgpi', 0.010215307742897388) +zone = ('mtz003', 0.0015983481543161645) + +[fips3039700] +centroid = (0.79385353313178242, -1.90192171091971) +description = Joliet town, MT +station = ('kbil', 0.0077548037626162004) +zone = ('mtz039', 0.0047915830771164099) + +[fips3039775] +centroid = (0.84752125571330172, -1.933352176048277) +description = Joplin CDP, MT +station = ('cwoe', 0.010342988911345859) +zone = ('mtz045', 0.002907454290900269) + +[fips3039925] +centroid = (0.82590908793195128, -1.8659323934250562) +description = Jordan town, MT +station = ('kjdn', 0.00051855434952007234) +zone = ('mtz022', 0.0012382229477657732) + +[fips3040000] +centroid = (0.81469805274822826, -1.9155685974206864) +description = Judith Gap city, MT +station = ('klwt', 0.0074257601436057523) +zone = ('mtz063', 0.0011491681992171969) + +[fips3040075] +centroid = (0.84149035774949787, -1.9953218888294653) +description = Kalispell city, MT +station = ('kgpi', 0.0016424161093867562) +zone = ('mtz003', 0.0076964988911054858) + +[fips3040355] +centroid = (0.83208629684694979, -1.9928941009333561) +description = Kerr CDP, MT +station = ('kgpi', 0.010949958666118826) +zone = ('mtz003', 0.0021711246150848068) + +[fips3040525] +centroid = (0.85077207107148134, -1.954171353483984) +description = Kevin town, MT +station = ('kctb', 0.0054426887800221443) +zone = ('mtz044', 0.0034885863554435909) + +[fips3040580] +centroid = (0.82838876446672227, -1.9907225099181471) +description = Kicking Horse CDP, MT +station = ('kmso', 0.0095502492950749248) +zone = ('mtz003', 0.0060924171791267275) + +[fips3040675] +centroid = (0.83987879053137648, -1.9979968328009494) +description = Kila CDP, MT +station = ('kgpi', 0.0039594262536288751) +zone = ('mtz003', 0.0064284168961761916) + +[fips3040685] +centroid = (0.79705595050980416, -1.9395612546754171) +description = King Arthur Park CDP, MT +station = ('kbzn', 0.0020306513451722394) +zone = ('mtz055', 0.0018242438190202092) + +[fips3040725] +centroid = (0.83366971190423667, -1.9923503959647748) +description = Kings Point CDP, MT +station = ('kgpi', 0.0094177708379155223) +zone = ('mtz003', 0.0017027482606620436) + +[fips3041050] +centroid = (0.80980242164967664, -1.8946000198010087) +description = Klein CDP, MT +station = ('kbil', 0.010150784220593024) +zone = ('mtz029', 0.0025328000818471701) + +[fips3041087] +centroid = (0.82822934609284504, -1.821238822244734) +description = Knife River CDP, MT +station = ('ksdy', 0.0046386717482257665) +zone = ('mtz024', 0.0063386165265078504) + +[fips3041725] +centroid = (0.84771736090805594, -1.9213646438803418) +description = Kremlin CDP, MT +station = ('khvr', 0.0037071634386189687) +zone = ('mtz011', 0.0010461369568499665) + +[fips3041910] +centroid = (0.83643804844399494, -1.9963018912044601) +description = Lake Mary Ronan CDP, MT +station = ('kgpi', 0.0066869282307899132) +zone = ('mtz003', 0.0028064810560163652) + +[fips3041950] +centroid = (0.83808520292556454, -1.9936818378379513) +description = Lakeside CDP, MT +station = ('kgpi', 0.0049278040375791941) +zone = ('mtz003', 0.0043597719759057704) + +[fips3042250] +centroid = (0.79617825933556141, -1.8607542807870694) +description = Lame Deer CDP, MT +station = ('km46', 0.0042581854210583005) +zone = ('mtz058', 0.0035967593932007807) + +[fips3042700] +centroid = (0.7971593787212774, -1.8984022021231859) +description = Laurel city, MT +station = ('kbil', 0.0036633207795691426) +zone = ('mtz039', 0.0074629994644629946) + +[fips3042850] +centroid = (0.80801307519394705, -1.9013403242925784) +description = Lavina town, MT +station = ('kbil', 0.0095960752917937115) +zone = ('mtz042', 0.0027667593297150883) + +[fips3043375] +centroid = (0.8212060190097723, -1.9103303581899684) +description = Lewistown city, MT +station = ('klwt', 5.4156916862312521e-05) +zone = ('mtz051', 0.0045943985410210096) + +[fips3043400] +centroid = (0.82167280731821812, -1.9106733153879851) +description = Lewistown Heights CDP, MT +station = ('klwt', 0.0005688457879219768) +zone = ('mtz051', 0.0043810289892425129) + +[fips3043450] +centroid = (0.84450263895880751, -2.0168445037668961) +description = Libby city, MT +station = ('k65s', 0.010472973941110039) +zone = ('mtz001', 0.0046227844517518967) + +[fips3043525] +centroid = (0.77909146850524436, -1.9651016873641087) +description = Lima town, MT +station = ('kdln', 0.010682644441641843) +zone = ('mtz008', 0.0094218803064590097) + +[fips3043675] +centroid = (0.81948411207633964, -1.9664891368529815) +description = Lincoln CDP, MT +station = ('k3du', 0.007591994623667336) +zone = ('mtz014', 0.0048947552026425622) + +[fips3043710] +centroid = (0.83434384532781936, -1.9937830320279819) +description = Lindisfarne CDP, MT +station = ('kgpi', 0.0086578942531415869) +zone = ('mtz003', 0.00091423484053327773) + +[fips3043830] +centroid = (0.83994319318077504, -2.0024477190995076) +description = Little Bitterroot Lake CDP, MT +station = ('kgpi', 0.006210644791290341) +zone = ('mtz001', 0.0060398193332263615) + +[fips3043835] +centroid = (0.84867060738561761, -1.9608784618131805) +description = Little Browning CDP, MT +station = ('kctb', 0.00058441060609439597) +zone = ('mtz010', 0.0037187066399444208) + +[fips3043975] +centroid = (0.79703064323565032, -1.9294886628561849) +description = Livingston city, MT +station = ('klvm', 0.0015556499841280658) +zone = ('mtz065', 0.00080124091032668832) + +[fips3044200] +centroid = (0.79992129244938837, -1.8918411429457964) +description = Lockwood CDP, MT +station = ('kbil', 0.0019102317749024726) +zone = ('mtz035', 0.0023438090247428663) + +[fips3044275] +centroid = (0.7908813421353913, -1.873913068509433) +description = Lodge Grass town, MT +station = ('kshr', 0.01075743060217783) +zone = ('mtz038', 0.0020010559074593488) + +[fips3044350] +centroid = (0.83823336392576631, -1.8945851670490743) +description = Lodge Pole CDP, MT +station = ('klwt', 0.020072639502704766) +zone = ('mtz060', 0.0037653830471022424) + +[fips3044500] +centroid = (0.80083153401418106, -1.944707078722242) +description = Logan CDP, MT +station = ('kbzn', 0.003763699209720891) +zone = ('mtz055', 0.0062982334757304614) + +[fips3044650] +centroid = (0.81632550246254287, -1.991598351043383) +description = Lolo CDP, MT +station = ('kmso', 0.0025277279427949246) +zone = ('mtz005', 0.0049429526956331071) + +[fips3044800] +centroid = (0.83690619810925737, -1.9283916012482587) +description = Loma CDP, MT +station = ('kfhu', 0.0058391505410362917) +zone = ('mtz013', 0.0013819086310838324) + +[fips3044950] +centroid = (0.83238450380294549, -2.0008389095016041) +description = Lonepine CDP, MT +station = ('kgpi', 0.011468886013942461) +zone = ('mtz003', 0.0042526628384222014) + +[fips3047275] +centroid = (0.82913196056880645, -1.9405028947134531) +description = Malmstrom AFB CDP, MT +station = ('kgfa', 0.00010091109162600494) +zone = ('mtz012', 0.0039613828766946347) + +[fips3047425] +centroid = (0.84396130763800892, -1.8827050075367215) +description = Malta city, MT +station = ('cwvn', 0.01284818475599068) +zone = ('mtz016', 0.0041425434615631794) + +[fips3047575] +centroid = (0.80032692442084441, -1.9430040737046086) +description = Manhattan town, MT +station = ('kbzn', 0.0024818526274838736) +zone = ('mtz055', 0.0053421100228385745) + +[fips3047875] +centroid = (0.83926755877403558, -2.0015370062958171) +description = Marion CDP, MT +station = ('kgpi', 0.0060803682841040242) +zone = ('mtz003', 0.0070579735620781223) + +[fips3048100] +centroid = (0.84462109445514033, -1.9902102383293945) +description = Martin City CDP, MT +station = ('kgpi', 0.0031847832351855464) +zone = ('mtz002', 0.0033399581983011854) + +[fips3048175] +centroid = (0.81078820106449567, -1.9253071506743793) +description = Martinsdale CDP, MT +station = ('klvm', 0.013254419416491206) +zone = ('mtz028', 0.0059075603460437128) + +[fips3048250] +centroid = (0.81594564900413891, -1.9600524498380891) +description = Marysville CDP, MT +station = ('khln', 0.0048033871816741845) +zone = ('mtz014', 0.003529260784445327) + +[fips3048625] +centroid = (0.81116143972503463, -1.9763301234804742) +description = Maxville CDP, MT +station = ('k3du', 0.0034797326829918906) +zone = ('mtz007', 0.0041064081489631758) + +[fips3048775] +centroid = (0.84652413165834495, -1.8238984945852632) +description = Medicine Lake town, MT +station = ('ksdy', 0.014436823075152027) +zone = ('mtz019', 0.0038213718096438108) + +[fips3049000] +centroid = (0.8133007945089592, -1.8826597511492176) +description = Melstone town, MT +station = ('kbil', 0.015939229553423005) +zone = ('mtz029', 0.0065979615533070593) + +[fips3049400] +centroid = (0.85329525866450451, -2.0080794428100881) +description = Midvale CDP, MT +station = ('kgpi', 0.0137407793098023) +zone = ('mtz001', 0.010402627641184849) + +[fips3049525] +centroid = (0.8099344034477125, -1.8472380496338974) +description = Miles City city, MT +station = ('kmls', 0.00071818235363465947) +zone = ('mtz032', 0.0041842206883499098) + +[fips3050200] +centroid = (0.81802398707741364, -1.989855919037947) +description = Missoula city, MT +station = ('kmso', 0.0013513703704319143) +zone = ('mtz005', 0.0067433112587560861) + +[fips3051175] +centroid = (0.81199614343980098, -1.9536044356363511) +description = Montana City CDP, MT +station = ('khln', 0.001386408528683346) +zone = ('mtz052', 0.0068320215456105773) + +[fips3051550] +centroid = (0.81987024872005088, -1.9145434259246499) +description = Moore town, MT +station = ('klwt', 0.0031979957071728514) +zone = ('mtz063', 0.0058801428171858742) + +[fips3052315] +centroid = (0.79551691917539569, -1.863581103310062) +description = Muddy CDP, MT +station = ('km46', 0.004764499011175957) +zone = ('mtz058', 0.0043139708227412799) + +[fips3052600] +centroid = (0.81147607022929169, -1.8866362220504989) +description = Musselshell CDP, MT +station = ('kbil', 0.013034688127517097) +zone = ('mtz029', 0.0036216772017301415) + +[fips3052900] +centroid = (0.84009299479047372, -1.8562895889341275) +description = Nashua town, MT +station = ('kggw', 0.0033447111518576495) +zone = ('mtz017', 0.0038794546596693266) + +[fips3053200] +centroid = (0.81917393216167522, -1.9327087080596519) +description = Neihart town, MT +station = ('kgfa', 0.011192991723749716) +zone = ('mtz050', 0.0059167731894013567) + +[fips3053725] +centroid = (0.83480649720593803, -1.9994091532316631) +description = Niarada CDP, MT +station = ('kgpi', 0.0088633318898927727) +zone = ('mtz003', 0.0032067707713331556) + +[fips3054510] +centroid = (0.84769688819593003, -1.9725328804400801) +description = North Browning CDP, MT +station = ('k8s0', 0.0012478891614652974) +zone = ('mtz009', 0.0021865187732481822) + +[fips3054925] +centroid = (0.83749329196304312, -2.0205779201165446) +description = Noxon CDP, MT +station = ('kmlp', 0.0094139818473467016) +zone = ('mtz001', 0.0088071533890999119) + +[fips3055260] +centroid = (0.82597909308824879, -1.9948684522897973) +description = Old Agency CDP, MT +station = ('kmso', 0.0075048942317662579) +zone = ('mtz003', 0.0078205429784665159) + +[fips3055450] +centroid = (0.84730408439447613, -1.9996650010467132) +description = Olney CDP, MT +station = ('kgpi', 0.0055779084777043061) +zone = ('mtz002', 0.010086859431108644) + +[fips3055525] +centroid = (0.85271765940184951, -1.8571739123595281) +description = Opheim town, MT +station = ('cwko', 0.0072695332459486606) +zone = ('mtz061', 0.0029227371499216167) + +[fips3055675] +centroid = (0.81782407706489035, -1.9910110302967943) +description = Orchard Homes CDP, MT +station = ('kmso', 0.0010637340699987685) +zone = ('mtz005', 0.006452398112117454) + +[fips3056050] +centroid = (0.85326948015145254, -1.8288446180590747) +description = Outlook town, MT +station = ('cwaq', 0.0084808159780576133) +zone = ('mtz019', 0.0043526467021108095) + +[fips3056125] +centroid = (0.82054689541775661, -1.9749939692183172) +description = Ovando CDP, MT +station = ('k3du', 0.0060608257189043247) +zone = ('mtz043', 0.0060100075767734315) + +[fips3056350] +centroid = (0.8308512320550685, -1.9915198810402133) +description = Pablo CDP, MT +station = ('kmso', 0.012001113505476325) +zone = ('mtz003', 0.0037146109872974505) + +[fips3056425] +centroid = (0.82702234619533588, -2.0035551654164832) +description = Paradise CDP, MT +station = ('kmlp', 0.01035369466369694) +zone = ('mtz004', 0.0028353355340930519) + +[fips3056575] +centroid = (0.7963800368503845, -1.9010381205325952) +description = Park City CDP, MT +station = ('kbil', 0.0055847412956049579) +zone = ('mtz034', 0.0047911980678738177) + +[fips3056650] +centroid = (0.84206505976559476, -1.9152241741460978) +description = Parker School CDP, MT +station = ('khvr', 0.0053055970132349058) +zone = ('mtz011', 0.007960978748100268) + +[fips3057175] +centroid = (0.80865249401870776, -1.9773843547085561) +description = Philipsburg town, MT +station = ('k3du', 0.0060916861705289952) +zone = ('mtz007', 0.0046489977117720183) + +[fips3057475] +centroid = (0.81776698734505759, -1.9871017894783001) +description = Piltzville CDP, MT +station = ('kmso', 0.0031442860834378617) +zone = ('mtz043', 0.0068303940209877515) + +[fips3057700] +centroid = (0.8086845382637744, -1.993567396598898) +description = Pinesdale town, MT +station = ('kmso', 0.010272113537069253) +zone = ('mtz005', 0.0030328222994116158) + +[fips3057950] +centroid = (0.84326989545483144, -2.0161739657215723) +description = Pioneer Junction CDP, MT +station = ('k65s', 0.011572301530441668) +zone = ('mtz001', 0.003936409678577414) + +[fips3058150] +centroid = (0.82834155331045578, -2.0051146694630178) +description = Plains town, MT +station = ('kmlp', 0.0092310985927315566) +zone = ('mtz004', 0.0030279628027094162) + +[fips3058375] +centroid = (0.85128385396804362, -1.8248548652021859) +description = Plentywood city, MT +station = ('cwaq', 0.011664755612147113) +zone = ('mtz019', 0.0011123261726184712) + +[fips3058450] +centroid = (0.81015366916164055, -1.8241936297617753) +description = Plevna town, MT +station = ('kbhk', 0.0034470264067349345) +zone = ('mtz033', 0.0019115484380057184) + +[fips3058750] +centroid = (0.83233840965740036, -1.9921873822126386) +description = Polson city, MT +station = ('kgpi', 0.010751612354297729) +zone = ('mtz003', 0.0023251825116535128) + +[fips3058840] +centroid = (0.80341250945873766, -1.9437224337714367) +description = Ponderosa Pines CDP, MT +station = ('kbzn', 0.0050802426091110129) +zone = ('mtz053', 0.0054566126318937478) + +[fips3058900] +centroid = (0.79696697362453761, -1.9527193791726649) +description = Pony CDP, MT +station = ('kbtm', 0.0091939218098439149) +zone = ('mtz015', 0.006335697126869105) + +[fips3058975] +centroid = (0.83968645524780672, -1.8360290390321066) +description = Poplar city, MT +station = ('kolf', 0.0045096292051526989) +zone = ('mtz020', 0.0042946229318267205) + +[fips3059500] +centroid = (0.83289359889245973, -1.9495384467977352) +description = Power CDP, MT +station = ('kgtf', 0.0058025423850186887) +zone = ('mtz049', 0.0018055159926793833) + +[fips3059725] +centroid = (0.79264979699997451, -1.9312391059228875) +description = Pray CDP, MT +station = ('klvm', 0.0056381657447191645) +zone = ('mtz064', 0.00080387975095421002) + +[fips3059950] +centroid = (0.79267723357581588, -1.8942270952997351) +description = Pryor CDP, MT +station = ('kbil', 0.0069782198723880159) +zone = ('mtz039', 0.0042459905739180978) + +[fips3060450] +centroid = (0.80015575998110133, -1.9602847531615295) +description = Rader Creek CDP, MT +station = ('kbtm', 0.0030756796680586201) +zone = ('mtz052', 0.0059350891282588351) + +[fips3060475] +centroid = (0.80627868915636269, -1.9483346932126346) +description = Radersburg CDP, MT +station = ('khln', 0.0081189465081024561) +zone = ('mtz053', 0.0028786636705717176) + +[fips3061075] +centroid = (0.82521523228782101, -1.9925440053386985) +description = Ravalli CDP, MT +station = ('kmso', 0.0064106947499278991) +zone = ('mtz003', 0.0087276762552365023) + +[fips3061525] +centroid = (0.78877977372977237, -1.9067683157195729) +description = Red Lodge city, MT +station = ('kcod', 0.012164216230027123) +zone = ('mtz056', 0.0016483561192018137) + +[fips3061900] +centroid = (0.79773914219220488, -1.9119610193101066) +description = Reed Point CDP, MT +station = ('kbil', 0.0122928407846086) +zone = ('mtz034', 0.0043967527548402115) + +[fips3062125] +centroid = (0.8482745049118775, -1.8233019410469313) +description = Reserve CDP, MT +station = ('kisn', 0.011970551814777642) +zone = ('mtz019', 0.0021145396866635103) + +[fips3062200] +centroid = (0.85346452069536294, -2.0101224030594249) +description = Rexford town, MT +station = ('cyxc', 0.014319752856882783) +zone = ('mtz001', 0.010470948343697335) + +[fips3062275] +centroid = (0.83154767078649172, -1.833811668030618) +description = Richey town, MT +station = ('kgdv', 0.0094681084994398899) +zone = ('mtz025', 0.0068927552826740148) + +[fips3063042] +centroid = (0.82284022314829208, -2.0042038693928643) +description = Riverbend CDP, MT +station = ('kmlp', 0.011215758406368197) +zone = ('mtz004', 0.0035062538190125817) + +[fips3063400] +centroid = (0.79139528924022595, -1.9055807064300534) +description = Roberts CDP, MT +station = ('kbil', 0.011301314692013871) +zone = ('mtz056', 0.0017184177092145407) + +[fips3063900] +centroid = (0.84231158752243895, -1.9159156561424455) +description = Rocky Boy's Agency CDP, MT +station = ('khvr', 0.0050464566338803488) +zone = ('mtz011', 0.0075070824282498783) + +[fips3063928] +centroid = (0.84294463589542978, -1.919720299378868) +description = Rocky Boy West CDP, MT +station = ('khvr', 0.0051259829475463351) +zone = ('mtz011', 0.0059405970116085298) + +[fips3063940] +centroid = (0.83308626578858735, -1.9929125316102574) +description = Rocky Point CDP, MT +station = ('kgpi', 0.009952999857196854) +zone = ('mtz003', 0.0015007733938319078) + +[fips3064075] +centroid = (0.83619682648807681, -1.9930759991479992) +description = Rollins CDP, MT +station = ('kgpi', 0.0068485510461179433) +zone = ('mtz003', 0.0026845451827270028) + +[fips3064150] +centroid = (0.82952837720181194, -1.991436716101356) +description = Ronan city, MT +station = ('kmso', 0.010678075364016187) +zone = ('mtz003', 0.0048592990583893342) + +[fips3064300] +centroid = (0.79153676562939268, -1.9110199726840165) +description = Roscoe CDP, MT +station = ('kcod', 0.015719472106860005) +zone = ('mtz056', 0.0027403989816745045) + +[fips3064375] +centroid = (0.8075602495195171, -1.8579740411018124) +description = Rosebud CDP, MT +station = ('km46', 0.0080033870100345329) +zone = ('mtz031', 0.0043713348569979571) + +[fips3064525] +centroid = (0.81067637781932034, -1.8943749072340865) +description = Roundup city, MT +station = ('kbil', 0.011025397788855158) +zone = ('mtz029', 0.0019032717017538126) + +[fips3064675] +centroid = (0.82613936667345944, -1.9017106482532662) +description = Roy CDP, MT +station = ('klwt', 0.0076416711927606643) +zone = ('mtz051', 0.0033629715016213983) + +[fips3064900] +centroid = (0.84752965074700382, -1.9294625527305751) +description = Rudyard CDP, MT +station = ('cwoe', 0.0097650039454401233) +zone = ('mtz011', 0.0052033032858625162) + +[fips3064975] +centroid = (0.80806253782494852, -1.9068305541606991) +description = Ryegate town, MT +station = ('kbil', 0.011971005856335232) +zone = ('mtz042', 0.0011690500080299082) + +[fips3065050] +centroid = (0.84573183944440211, -1.8734522666803215) +description = Saco town, MT +station = ('kggw', 0.0093903999462038486) +zone = ('mtz059', 0.0073018585719036248) + +[fips3065065] +centroid = (0.84689803354399962, -1.9137085127703732) +description = Saddle Butte CDP, MT +station = ('khvr', 0.0014525932479883125) +zone = ('mtz011', 0.0056587456342149676) + +[fips3065275] +centroid = (0.82585941586143952, -1.9913403739266458) +description = St. Ignatius town, MT +station = ('kmso', 0.0070093214798928275) +zone = ('mtz003', 0.0082911967224285846) + +[fips3065400] +centroid = (0.84482566449676655, -1.8588120609421577) +description = St. Marie CDP, MT +station = ('kggw', 0.0035450434327514201) +zone = ('mtz017', 0.0044193535706628633) + +[fips3065537] +centroid = (0.84201545750825302, -1.9166523421664199) +description = St. Pierre CDP, MT +station = ('khvr', 0.0053725095450262968) +zone = ('mtz011', 0.0075276471460789468) + +[fips3065575] +centroid = (0.82562608279374039, -2.0089422463258111) +description = St. Regis CDP, MT +station = ('kmlp', 0.0071169314853911196) +zone = ('mtz004', 0.0011563244610657566) + +[fips3065650] +centroid = (0.79323425540658976, -1.8802794885686402) +description = St. Xavier CDP, MT +station = ('kbil', 0.011866939394816185) +zone = ('mtz038', 0.0043854247803100507) + +[fips3065950] +centroid = (0.82733025718197273, -1.9403177850929865) +description = Sand Coulee CDP, MT +station = ('kgfa', 0.0017063695536545325) +zone = ('mtz012', 0.0026480859891979862) + +[fips3066212] +centroid = (0.84267391787515289, -1.9166637217131428) +description = Sangrey CDP, MT +station = ('khvr', 0.0047192203177065109) +zone = ('mtz011', 0.0069430999207110372) + +[fips3066250] +centroid = (0.84993508097539505, -1.9603067966699823) +description = Santa Rita CDP, MT +station = ('kctb', 0.0018673257460170328) +zone = ('mtz010', 0.0035510488026371458) + +[fips3066925] +centroid = (0.85155652675708282, -1.8399400600864382) +description = Scobey city, MT +station = ('cwaq', 0.0045839212589870292) +zone = ('mtz018', 0.0014732331933492826) + +[fips3067075] +centroid = (0.80221156585373299, -1.935208909666426) +description = Sedan CDP, MT +station = ('kbzn', 0.0045486790061794779) +zone = ('mtz040', 0.0033728671791254765) + +[fips3067150] +centroid = (0.82319511839839254, -1.9799956465222199) +description = Seeley Lake CDP, MT +station = ('k3du', 0.0093932463734520064) +zone = ('mtz043', 0.0017533495118544301) + +[fips3067225] +centroid = (0.80886696007719272, -1.9113476233444933) +description = Shawmut CDP, MT +station = ('klwt', 0.012332912586876117) +zone = ('mtz028', 0.0039120528458022009) + +[fips3067450] +centroid = (0.84645185757401986, -1.952288439927055) +description = Shelby city, MT +station = ('kctb', 0.0063258799619507425) +zone = ('mtz044', 0.0033202137756376681) + +[fips3067525] +centroid = (0.80192301056850068, -1.8910005051115732) +description = Shepherd CDP, MT +station = ('kbil', 0.0033587769562586009) +zone = ('mtz035', 0.0008891595320378369) + +[fips3067600] +centroid = (0.79340625760437389, -1.9581657663699756) +description = Sheridan town, MT +station = ('kdln', 0.0056816014159139427) +zone = ('mtz015', 0.0043494795843932385) + +[fips3067900] +centroid = (0.83275528154923917, -1.8180856406049108) +description = Sidney city, MT +station = ('ksdy', 0.00043600945176560459) +zone = ('mtz024', 0.0047891279173190929) + +[fips3068050] +centroid = (0.79509830195430475, -1.8995764770972203) +description = Silesia CDP, MT +station = ('kbil', 0.0057479842615996693) +zone = ('mtz039', 0.0054512331570024187) + +[fips3068425] +centroid = (0.78574195835350613, -1.9195655410340935) +description = Silver Gate CDP, MT +station = ('kp60', 0.0098011035428424813) +zone = ('mtz067', 0.0049584126708565835) + +[fips3068575] +centroid = (0.82890114077523014, -1.9539586676613361) +description = Simms CDP, MT +station = ('kgfa', 0.0090837902775251812) +zone = ('mtz049', 0.0059361804735551162) + +[fips3069475] +centroid = (0.83919640170043175, -1.9937236035669514) +description = Somers CDP, MT +station = ('kgpi', 0.0038190512032468026) +zone = ('mtz003', 0.0054517704715653361) + +[fips3069680] +centroid = (0.84728310553686714, -1.9724238846282931) +description = South Browning CDP, MT +station = ('k8s0', 0.0015339175167499283) +zone = ('mtz009', 0.0022823452634456332) + +[fips3069725] +centroid = (0.81256248532878061, -1.9547275375567168) +description = South Hills CDP, MT +station = ('khln', 0.00084681321182953533) +zone = ('mtz052', 0.0072126532869805646) + +[fips3069900] +centroid = (0.81217146176316379, -1.9502177114893187) +description = Spokane Creek CDP, MT +station = ('khln', 0.0029620799790210975) +zone = ('mtz053', 0.0045874791469569486) + +[fips3070150] +centroid = (0.79827933904898962, -1.9237646635880516) +description = Springdale CDP, MT +station = ('klvm', 0.0026405679357423668) +zone = ('mtz065', 0.0034606923960002192) + +[fips3070375] +centroid = (0.80080907162670789, -1.9387538828167368) +description = Springhill CDP, MT +station = ('kbzn', 0.0019235801186784736) +zone = ('mtz055', 0.0056039288979237208) + +[fips3070675] +centroid = (0.82295499599990329, -1.9236761753949756) +description = Stanford town, MT +station = ('kfhu', 0.0085122797170891461) +zone = ('mtz050', 0.0019402780022157249) + +[fips3070825] +centroid = (0.84831569468222456, -1.9747055361061325) +description = Starr School CDP, MT +station = ('k8s0', 0.00032503557695940473) +zone = ('mtz009', 0.0010226091176997101) + +[fips3071200] +centroid = (0.81170179366145201, -1.9912228085482313) +description = Stevensville town, MT +station = ('kmso', 0.0071498010485755801) +zone = ('mtz005', 0.00039406385837441446) + +[fips3071350] +centroid = (0.82647429535691719, -1.9402779566794559) +description = Stockett CDP, MT +station = ('kgfa', 0.0025621332519972662) +zone = ('mtz012', 0.002244355913341775) + +[fips3071575] +centroid = (0.84950216950773028, -2.0030760027236409) +description = Stryker CDP, MT +station = ('kgpi', 0.0087156061691071891) +zone = ('mtz001', 0.0080679790935392799) + +[fips3071800] +centroid = (0.80016689518172912, -1.9889332681821728) +description = Sula CDP, MT +station = ('ksmn', 0.012764803195374406) +zone = ('mtz006', 0.006055822122056017) + +[fips3072175] +centroid = (0.8530175418739272, -1.9530452146907196) +description = Sunburst town, MT +station = ('cwry', 0.004831062523835675) +zone = ('mtz044', 0.0044961700782049875) + +[fips3072380] +centroid = (0.82964917143934247, -1.945767052083563) +description = Sun Prairie CDP, MT +station = ('kgtf', 0.0016895378999950846) +zone = ('mtz012', 0.0042860556097100069) + +[fips3072475] +centroid = (0.82956443570415817, -1.9499514440586345) +description = Sun River CDP, MT +station = ('kgtf', 0.0041686858793821948) +zone = ('mtz049', 0.0049357122684900515) + +[fips3072625] +centroid = (0.82368279829798485, -2.0052917505689249) +description = Superior town, MT +station = ('kmlp', 0.010170478009766296) +zone = ('mtz004', 0.0023922158548152629) + +[fips3072850] +centroid = (0.83664282792513145, -1.9861798018476413) +description = Swan Lake CDP, MT +station = ('kgpi', 0.0083629585320527545) +zone = ('mtz002', 0.00592377672730928) + +[fips3073075] +centroid = (0.85508633299619363, -1.9541932748193891) +description = Sweet Grass CDP, MT +station = ('cwry', 0.0026292917525004176) +zone = ('mtz044', 0.0066668211071564502) + +[fips3073165] +centroid = (0.85008453351924329, -2.0223832886948072) +description = Sylvanite CDP, MT +station = ('k65s', 0.0049225699346512478) +zone = ('mtz001', 0.01070924454420346) + +[fips3073675] +centroid = (0.81667542352427525, -1.8380503222921338) +description = Terry town, MT +station = ('kgdv', 0.0085292692135629285) +zone = ('mtz026', 0.0014270630865740122) + +[fips3073760] +centroid = (0.80980196786407121, -1.9475480209588831) +description = The Silos CDP, MT +station = ('khln', 0.0057693847980516098) +zone = ('mtz053', 0.0015932657983652198) + +[fips3073825] +centroid = (0.83076328491406048, -2.0130634573819606) +description = Thompson Falls city, MT +station = ('kmlp', 0.004647858776236408) +zone = ('mtz004', 0.0064331018237187019) + +[fips3073975] +centroid = (0.80092405391782917, -1.9469627422475193) +description = Three Forks city, MT +station = ('kbzn', 0.0052365939399606461) +zone = ('mtz055', 0.0072633021926622491) + +[fips3074500] +centroid = (0.80565759628874811, -1.9451322583813202) +description = Toston CDP, MT +station = ('kbzn', 0.0075135006365583115) +zone = ('mtz053', 0.0030412090886853065) + +[fips3074575] +centroid = (0.80841553066616445, -1.9463865741548509) +description = Townsend city, MT +station = ('khln', 0.0072774449660892096) +zone = ('mtz053', 0.00037191823393564001) + +[fips3074725] +centroid = (0.84925979563450582, -2.0058907824747942) +description = Trego CDP, MT +station = ('kgpi', 0.009899106631418882) +zone = ('mtz001', 0.0069056205426585712) + +[fips3074950] +centroid = (0.83486397089820619, -2.0173155506787168) +description = Trout Creek CDP, MT +station = ('kmlp', 0.0067759023918635888) +zone = ('mtz001', 0.0093948633333405702) + +[fips3075025] +centroid = (0.84579011598812615, -2.0226769752480407) +description = Troy city, MT +station = ('k65s', 0.0066691917875004959) +zone = ('mtz001', 0.008701799906981238) + +[fips3075175] +centroid = (0.81751169803536838, -1.986624965526655) +description = Turah CDP, MT +station = ('kmso', 0.0035408828868399964) +zone = ('mtz043', 0.0069161386292850803) + +[fips3075250] +centroid = (0.85253979289777881, -1.8919460197805487) +description = Turner CDP, MT +station = ('cwvn', 0.010119996527196227) +zone = ('mtz059', 0.0076736563367214268) + +[fips3075287] +centroid = (0.83200040919445917, -1.99117119916225) +description = Turtle Lake CDP, MT +station = ('kgpi', 0.011195012885767353) +zone = ('mtz003', 0.0030741505647526811) + +[fips3075475] +centroid = (0.79487090300606256, -1.9605934495463297) +description = Twin Bridges town, MT +station = ('kdln', 0.0057559880295726534) +zone = ('mtz015', 0.0065940685495157209) + +[fips3075775] +centroid = (0.82765808237537475, -1.9464505404719368) +description = Ulm CDP, MT +station = ('kgtf', 0.001833044428292113) +zone = ('mtz012', 0.0028723145385785073) + +[fips3076225] +centroid = (0.84308471602119484, -1.9591743921447033) +description = Valier town, MT +station = ('kctb', 0.0053638078062626668) +zone = ('mtz046', 0.003378740599788353) + +[fips3076675] +centroid = (0.82994462077511999, -1.9471042186366863) +description = Vaughn CDP, MT +station = ('kgtf', 0.0025719459969507697) +zone = ('mtz012', 0.0049545303727510787) + +[fips3076900] +centroid = (0.81011415490737548, -1.9922801290090895) +description = Victor CDP, MT +station = ('kmso', 0.008756038418829843) +zone = ('mtz005', 0.0013624082921885824) + +[fips3077125] +centroid = (0.79057179053925752, -1.9536479466946035) +description = Virginia City town, MT +station = ('kdln', 0.0075874152364041108) +zone = ('mtz015', 0.00020482172211022407) + +[fips3077650] +centroid = (0.80349106672837001, -1.9641911839999284) +description = Walkerville town, MT +station = ('kbtm', 0.0013135360429176257) +zone = ('mtz052', 0.0057423003458569894) + +[fips3078775] +centroid = (0.82957291800432287, -2.0072634141183179) +description = Weeksville CDP, MT +station = ('kmlp', 0.0078988023539555887) +zone = ('mtz004', 0.0038960823197602629) + +[fips3078925] +centroid = (0.85294978819236478, -1.8161427924414684) +description = Westby town, MT +station = ('kd50', 0.0087798232051129674) +zone = ('mtz019', 0.0057644187099476574) + +[fips3079075] +centroid = (0.84637977547591248, -1.9896002283025298) +description = West Glacier CDP, MT +station = ('kgpi', 0.0046177405912286654) +zone = ('mtz002', 0.0044152341393891145) + +[fips3079086] +centroid = (0.82215731071857179, -1.8282884165330491) +description = West Glendive CDP, MT +station = ('kgdv', 0.00073074692232051976) +zone = ('mtz025', 0.0032909068841423246) + +[fips3079098] +centroid = (0.84730577736385049, -1.915163925380319) +description = West Havre CDP, MT +station = ('khvr', 0.0004174796718805119) +zone = ('mtz011', 0.0046154270740327123) + +[fips3079105] +centroid = (0.85456845890054189, -2.010955553431157) +description = West Kootenai CDP, MT +station = ('cyxc', 0.013088892475606208) +zone = ('mtz001', 0.011583288233120779) + +[fips3079525] +centroid = (0.77952130819342547, -1.9391639130179079) +description = West Yellowstone town, MT +station = ('kwys', 0.0003745878706622347) +zone = ('wyz001', 0.0071448184982098638) + +[fips3079695] +centroid = (0.80202547884888531, -1.9469937218417424) +description = Wheatland CDP, MT +station = ('kbzn', 0.0057361871448082585) +zone = ('mtz053', 0.0066572282044372313) + +[fips3079825] +centroid = (0.84552496556816314, -1.9959679922652609) +description = Whitefish city, MT +station = ('kgpi', 0.0027550361403979777) +zone = ('mtz002', 0.0071030054071928323) + +[fips3079900] +centroid = (0.80060146471218308, -1.9564688700047241) +description = Whitehall town, MT +station = ('kbtm', 0.0051650092996788736) +zone = ('mtz052', 0.0048420138850329498) + +[fips3079935] +centroid = (0.84382768523047635, -2.0161345212804771) +description = White Haven CDP, MT +station = ('k65s', 0.011251043262324942) +zone = ('mtz001', 0.0039873951184140255) + +[fips3080050] +centroid = (0.81236795093035319, -1.9356355728553689) +description = White Sulphur Springs city, MT +station = ('kbzn', 0.013627106237685279) +zone = ('mtz054', 0.00094937488206548544) + +[fips3080200] +centroid = (0.85108371706271757, -1.8785031099092531) +description = Whitewater CDP, MT +station = ('cwvn', 0.0053185213650833937) +zone = ('mtz059', 0.0013032650175337881) + +[fips3080350] +centroid = (0.82007167716902352, -1.8184588792654499) +description = Wibaux town, MT +station = ('k20u', 0.0027002839591400421) +zone = ('mtz027', 0.0007950646379748052) + +[fips3080800] +centroid = (0.79952957075207076, -1.9486411730292847) +description = Willow Creek CDP, MT +station = ('kbzn', 0.0060884585893778414) +zone = ('mtz052', 0.0080045986825006982) + +[fips3080875] +centroid = (0.80256230722021371, -1.9313772138265979) +description = Wilsall CDP, MT +station = ('klvm', 0.0056613311090838014) +zone = ('mtz040', 0.00080095965352646945) + +[fips3080975] +centroid = (0.7963593546987483, -1.9307411983938787) +description = Wineglass CDP, MT +station = ('klvm', 0.002635922485732078) +zone = ('mtz065', 0.0019041588311390649) + +[fips3081025] +centroid = (0.83011620409388354, -1.9089858438006944) +description = Winifred town, MT +station = ('klwt', 0.0089806341424572451) +zone = ('mtz051', 0.0055133993835135391) + +[fips3081100] +centroid = (0.82038759921692705, -1.8909984805296409) +description = Winnett town, MT +station = ('klwt', 0.013155167556501325) +zone = ('mtz021', 0.0022757484997662503) + +[fips3081175] +centroid = (0.81102711918580117, -1.9489258187769924) +description = Winston CDP, MT +station = ('khln', 0.0042862705666222561) +zone = ('mtz053', 0.0031394720741656692) + +[fips3081250] +centroid = (0.79604364209035505, -1.980001650454847) +description = Wisdom CDP, MT +station = ('ksmn', 0.010144667059148299) +zone = ('mtz008', 0.010692064257054988) + +[fips3081475] +centroid = (0.83938208727955144, -1.8437902215097526) +description = Wolf Point city, MT +station = ('kolf', 0.0006876208143553837) +zone = ('mtz020', 0.0047382782600257087) + +[fips3081700] +centroid = (0.83792780913361964, -1.9908087291831957) +description = Woods Bay CDP, MT +station = ('kgpi', 0.005584214300852707) +zone = ('mtz003', 0.004947854760162405) + +[fips3081925] +centroid = (0.80219350169597481, -1.8877876855712095) +description = Worden CDP, MT +station = ('kbil', 0.0053523378717562978) +zone = ('mtz035', 0.0014295328039660195) + +[fips3081980] +centroid = (0.81948646827082994, -1.9920234434359987) +description = Wye CDP, MT +station = ('kmso', 0.00075769668546832422) +zone = ('mtz005', 0.0081101072966516408) + +[fips3082075] +centroid = (0.7874112959698687, -1.8740264276443501) +description = Wyola CDP, MT +station = ('kshr', 0.0078951058998537639) +zone = ('mtz038', 0.0029199030223731608) + +[fips3082130] +centroid = (0.85227408397245519, -2.0189717459658119) +description = Yaak CDP, MT +station = ('k65s', 0.0073641154877314187) +zone = ('mtz001', 0.010921364717328418) + +[fips3082675] +centroid = (0.83630481000889767, -1.89383968456567) +description = Zortman CDP, MT +station = ('klwt', 0.018761942535098414) +zone = ('mtz060', 0.001778707345623122) + +[fips31001] +centroid = (0.70721844338897488, -1.7191500811592855) +description = Adams County, NE +station = ('khsi', 0.0016435681043378782) +zone = ('nez075', 6.9229528021463071e-05) + +[fips3100102900] +centroid = (0.70640288593610301, -1.7180108000367538) +description = Ayr township, NE +station = ('khsi', 0.002200872645469679) +zone = ('nez075', 0.0012478566760301083) + +[fips3100105210] +centroid = (0.70794834008215901, -1.7157607739249603) +description = Blaine township, NE +station = ('khsi', 0.0018124660590571203) +zone = ('nez075', 0.0026742420342525928) + +[fips3100110810] +centroid = (0.70652251080303474, -1.7220665437926606) +description = Cottonwood township, NE +station = ('khsi', 0.0037347787584164007) +zone = ('nez075', 0.0023308416352036928) + +[fips3100112805] +centroid = (0.70792976977891775, -1.7182387574903566) +description = Denver township, NE +station = ('khsi', 0.0007007647340388979) +zone = ('nez075', 0.0009568553568790188) + +[fips3100120855] +centroid = (0.70652388961314383, -1.7161914339178899) +description = Hanover township, NE +station = ('khsi', 0.0024869457871659591) +zone = ('nez075', 0.0023897856444322664) + +[fips3100121415] +centroid = (0.70853791230348262, -1.7173023185334917) +description = Hastings city, NE +station = ('khsi', 0.00052308292318478515) +zone = ('nez075', 0.0018924277297909628) + +[fips3100122360] +centroid = (0.70960258060049164, -1.7182637331519526) +description = Highland township, NE +station = ('khsi', 0.0010209390683135625) +zone = ('nez075', 0.0024167430905279808) + +[fips3100124985] +centroid = (0.70791664490294282, -1.7200103364943011) +description = Juniata township, NE +station = ('khsi', 0.001684159907736479) +zone = ('nez075', 0.00089739722693111537) + +[fips3100125195] +centroid = (0.70956456732938322, -1.7220678527895996) +description = Kenesaw township, NE +station = ('khsi', 0.0032437275789946418) +zone = ('nez075', 0.0031676215140213734) + +[fips3100128385] +centroid = (0.70500566260341901, -1.7161856219714804) +description = Little Blue township, NE +station = ('khsi', 0.0038496207247964501) +zone = ('nez075', 0.0032181934706956568) + +[fips3100128490] +centroid = (0.7051187948455333, -1.7221253962950378) +description = Logan township, NE +station = ('khsi', 0.0046960601611906096) +zone = ('nez075', 0.0031227721030097581) + +[fips3100142390] +centroid = (0.70652397687960644, -1.720082174246313) +description = Roseland township, NE +station = ('khsi', 0.002619793913671566) +zone = ('nez075', 0.0010302475797432024) + +[fips3100145470] +centroid = (0.70487931821886707, -1.7202427968973741) +description = Silver Lake township, NE +station = ('khsi', 0.0041008513695551564) +zone = ('nez075', 0.0025412432188738811) + +[fips3100150545] +centroid = (0.70964666761739714, -1.7199413261756771) +description = Verona township, NE +station = ('khsi', 0.0018139748639912218) +zone = ('nez075', 0.0024322432798710393) + +[fips3100151315] +centroid = (0.70804061563971199, -1.7220653046088916) +description = Wanda township, NE +station = ('khsi', 0.0031489758236271756) +zone = ('nez075', 0.0023257389501971696) + +[fips3100152155] +centroid = (0.70962767843513541, -1.7161113756651007) +description = West Blue township, NE +station = ('khsi', 0.0017527705857379259) +zone = ('nez075', 0.0032983527934255948) + +[fips3100154150] +centroid = (0.70494297037668729, -1.7180782395590506) +description = Zero township, NE +station = ('khsi', 0.0036613814022426199) +zone = ('nez075', 0.0024859538965910886) + +[fips3100205] +centroid = (0.7214146722720165, -1.6920882275083378) +description = Abie village, NE +station = ('kfet', 0.0060181549536427945) +zone = ('nez050', 0.0030520412802538879) + +[fips3100240] +centroid = (0.70614295405060346, -1.6843712367673522) +description = Adams village, NE +station = ('kbie', 0.0042554502515548941) +zone = ('nez090', 0.0034236035212323935) + +[fips31003] +centroid = (0.73623616535958503, -1.711435603692423) +description = Antelope County, NE +station = ('kbvn', 0.0079394226496551316) +zone = ('nez016', 0.00015728997633993405) + +[fips3100303320] +centroid = (0.74000577983791993, -1.7085412892872558) +description = Bazile township, NE +station = ('kofk', 0.0093751464379507807) +zone = ('nez011', 0.0041485098610869967) + +[fips3100305245] +centroid = (0.73689413703429429, -1.7126761488181554) +description = Blaine township, NE +station = ('konl', 0.0083372361147775256) +zone = ('nez016', 0.001114290612743196) + +[fips3100307170] +centroid = (0.73356940698229278, -1.7086916319490224) +description = Burnett township, NE +station = ('kbvn', 0.0056430058620005486) +zone = ('nez016', 0.003339011217477325) + +[fips3100308045] +centroid = (0.7322783694813001, -1.7103532552100911) +description = Cedar township, NE +station = ('kbvn', 0.0040561073774668275) +zone = ('nez016', 0.0039548826172684714) + +[fips3100309480] +centroid = (0.7353171971485325, -1.7145755906431008) +description = Clearwater township, NE +station = ('kbvn', 0.0074090816102036555) +zone = ('nez016', 0.0023586538519853322) + +[fips3100311160] +centroid = (0.73839325268870992, -1.7085536811249449) +description = Crawford township, NE +station = ('kofk', 0.0082003544253275718) +zone = ('nez016', 0.0031911669399849064) + +[fips3100311895] +centroid = (0.736871028874998, -1.7105885430465526) +description = Custer township, NE +station = ('kbvn', 0.0085950171016063084) +zone = ('nez016', 0.0010499132216840914) + +[fips3100314415] +centroid = (0.74003559006154407, -1.7105128132103085) +description = Eden township, NE +station = ('konl', 0.0088108750563810623) +zone = ('nez016', 0.0039897226550751255) + +[fips3100314765] +centroid = (0.73395819652646699, -1.7124107540520972) +description = Elgin township, NE +station = ('kbvn', 0.0057119284676861214) +zone = ('nez016', 0.0022521026325503929) + +[fips3100315185] +centroid = (0.73838567795975618, -1.7105892062716681) +description = Ellsworth township, NE +station = ('konl', 0.0091253528351572487) +zone = ('nez016', 0.0023775204908857753) + +[fips3100315255] +centroid = (0.73528094665996857, -1.7084384021278505) +description = Elm township, NE +station = ('kofk', 0.0063934864757460887) +zone = ('nez016', 0.0024822819142153937) + +[fips3100317740] +centroid = (0.73699152640655563, -1.7144928271299713) +description = Frenchtown township, NE +station = ('konl', 0.007161294668023151) +zone = ('nez016', 0.002320304217143329) + +[fips3100318055] +centroid = (0.73838363592453138, -1.7146526294762838) +description = Garfield township, NE +station = ('konl', 0.006336649712676801) +zone = ('nez016', 0.0032014685091322054) + +[fips3100319665] +centroid = (0.73239399754424472, -1.7084923677083224) +description = Grant township, NE +station = ('kbvn', 0.004631820456305542) +zone = ('nez016', 0.0043820896875790194) + +[fips3100327155] +centroid = (0.73231421854413603, -1.7145797968865981) +description = Lincoln township, NE +station = ('kbvn', 0.0046667188086179688) +zone = ('nez029', 0.0038418353479567893) + +[fips3100328525] +centroid = (0.73231578934046282, -1.712567711511729) +description = Logan township, NE +station = ('kbvn', 0.0041132677117697086) +zone = ('nez016', 0.0038789462132257178) + +[fips3100333775] +centroid = (0.73529138372889535, -1.7109328092415084) +description = Neligh city, NE +station = ('kbvn', 0.007002924127084773) +zone = ('nez016', 0.0009650266450411647) + +[fips3100333810] +centroid = (0.73535913741045789, -1.7105526241705464) +description = Neligh township, NE +station = ('kbvn', 0.0070899020328686595) +zone = ('nez016', 0.0010842105621117887) + +[fips3100335420] +centroid = (0.73398151412527368, -1.7105669184171202) +description = Oakdale township, NE +station = ('kbvn', 0.005717813717984804) +zone = ('nez016', 0.0022738085625153897) + +[fips3100337245] +centroid = (0.73546729546420397, -1.7130026126547409) +description = Ord township, NE +station = ('kbvn', 0.0072698652338449646) +zone = ('nez016', 0.0012389987272176449) + +[fips3100342530] +centroid = (0.73838190804857196, -1.7126224799436567) +description = Royal township, NE +station = ('konl', 0.0077110089773210792) +zone = ('nez016', 0.0023828594806769086) + +[fips3100344875] +centroid = (0.73990935039674732, -1.7145238241774867) +description = Sherman township, NE +station = ('konl', 0.0059146123304733159) +zone = ('nez016', 0.0043630934003185623) + +[fips3100346730] +centroid = (0.733831712515575, -1.7145787147824618) +description = Stanton township, NE +station = ('kbvn', 0.0060218216605783231) +zone = ('nez016', 0.0031920283901630641) + +[fips3100348935] +centroid = (0.73379935411124297, -1.70756938523999) +description = Tilden city, NE +station = ('kofk', 0.0053331144379819275) +zone = ('nez031', 0.0037771503764429809) + +[fips3100350440] +centroid = (0.73997411956528869, -1.7125856185898547) +description = Verdigris township, NE +station = ('konl', 0.0073069073506659334) +zone = ('nez016', 0.0039186413651447604) + +[fips3100353135] +centroid = (0.73687825453810119, -1.7085561943990677) +description = Willow township, NE +station = ('kofk', 0.0072460302213398125) +zone = ('nez016', 0.0023678873493232127) + +[fips3100415] +centroid = (0.74261026486750104, -1.7428432573676664) +description = Ainsworth city, NE +station = ('kanw', 0.0019295944748904874) +zone = ('nez008', 0.0022649342443895786) + +[fips31005] +centroid = (0.72554831007243981, -1.7749482747988368) +description = Arthur County, NE +station = ('koga', 0.0079298425853546652) +zone = ('nez035', 3.7269001702984371e-05) + +[fips3100555] +centroid = (0.72758723861120467, -1.7103933454230096) +description = Albion city, NE +station = ('kbvn', 0.0010293917784035909) +zone = ('nez030', 0.00095889093196969044) + +[fips3100590085] +centroid = (0.72554831007243981, -1.7749482747988368) +description = Arthur precinct, NE +station = ('koga', 0.0079298425853546652) +zone = ('nez035', 3.7269001702984371e-05) + +[fips3100625] +centroid = (0.71331013117062581, -1.7186174939380394) +description = Alda village, NE +station = ('kgri', 0.0026326596109976204) +zone = ('nez062', 0.0004340281833768) + +[fips31007] +centroid = (0.72500540795531443, -1.8103648101395711) +description = Banner County, NE +station = ('kbff', 0.0059382476101877482) +zone = ('nez020', 0.00023417756543441144) + +[fips3100730] +centroid = (0.70245221100116617, -1.699738407045557) +description = Alexandria village, NE +station = ('khjh', 0.0031325827564723141) +zone = ('nez087', 0.00302581031914595) + +[fips3100791850] +centroid = (0.72500540795531443, -1.8103648101395711) +description = Long Springs precinct, NE +station = ('kbff', 0.0059382476101877482) +zone = ('nez020', 0.00023417756543441144) + +[fips3100870] +centroid = (0.74027152366982862, -1.6902328552470052) +description = Allen village, NE +station = ('klcg', 0.0035030498535438435) +zone = ('nez013', 0.0014104384741741598) + +[fips31009] +centroid = (0.73173330315590224, -1.7451681755576629) +description = Blaine County, NE +station = ('kbbw', 0.0097680726332684872) +zone = ('nez026', 0.00028198467835090002) + +[fips3100905] +centroid = (0.73479359837293412, -1.7955147111055623) +description = Alliance city, NE +station = ('kaia', 0.001316660107163328) +zone = ('nez003', 0.0034251743127602886) + +[fips3100975] +centroid = (0.69989790418758002, -1.7342590125213651) +description = Alma city, NE +station = ('khde', 0.006103035939499085) +zone = ('nez083', 0.0014129695799942423) + +[fips3100990355] +centroid = (0.73226571584422306, -1.7412407658616553) +description = Brewster precinct, NE +station = ('kbbw', 0.0092794946347169276) +zone = ('nez026', 0.0028421168142701335) + +[fips3100990765] +centroid = (0.72930272273298991, -1.746666104388187) +description = Dunning precinct, NE +station = ('kbbw', 0.0084462025003631588) +zone = ('nez026', 0.0025651852250257847) + +[fips3100992690] +centroid = (0.73229428688407827, -1.7478967185904757) +description = Purdum precinct, NE +station = ('ktif', 0.005474716750466172) +zone = ('nez026', 0.0023427913744181626) + +[fips31011] +centroid = (0.72789654586124308, -1.71158844217502) +description = Boone County, NE +station = ('kbvn', 0.00042620017945023847) +zone = ('nez030', 2.5308506979593187e-05) + +[fips3101150] +centroid = (0.7133555795443477, -1.6822621983525348) +description = Alvo village, NE +station = ('klnk', 0.005064253826052325) +zone = ('nez067', 0.0033075904268875639) + +[fips3101190145] +centroid = (0.72533127837995437, -1.7090120394931037) +description = Beaver precinct, NE +station = ('kbvn', 0.0034580804226775541) +zone = ('nez041', 0.0029702059707213562) + +[fips3101190310] +centroid = (0.72638947150543853, -1.7095626559655228) +description = Boone precinct, NE +station = ('kbvn', 0.0023464070403738284) +zone = ('nez030', 0.0021577566468193175) + +[fips3101190465] +centroid = (0.72519587573658462, -1.7131112419473851) +description = Cedar precinct, NE +station = ('kbvn', 0.003356497144500697) +zone = ('nez030', 0.0029507285052982257) + +[fips3101190762] +centroid = (0.72814190424748848, -1.7146683723461369) +description = Dublin-Bonanza precinct, NE +station = ('kbvn', 0.0024500371311768931) +zone = ('nez030', 0.002303151269984535) + +[fips3101192147] +centroid = (0.7304334342888944, -1.7090287772006303) +description = North Branch-Shell Creek precinct, NE +station = ('kbvn', 0.0027695904785649517) +zone = ('nez030', 0.0031592913447022072) + +[fips3101192168] +centroid = (0.7286246972251752, -1.7106260850787629) +description = North Manchester precinct, NE +station = ('kbvn', 0.0006590933367046323) +zone = ('nez030', 0.0010102398516965169) + +[fips3101192215] +centroid = (0.73055225630437015, -1.7127340239361515) +description = Oakland precinct, NE +station = ('kbvn', 0.0024673305633062504) +zone = ('nez030', 0.0027644405088847498) + +[fips3101192987] +centroid = (0.72770380915194532, -1.7087361902048259) +description = Southeast Manchester precinct, NE +station = ('kbvn', 0.0020695742308241782) +zone = ('nez030', 0.0021471853459101233) + +[fips3101193026] +centroid = (0.72715701495058804, -1.7121123900164688) +description = Southwest Manchester precinct, NE +station = ('kbvn', 0.0012602521718187824) +zone = ('nez030', 0.00085535617148956239) + +[fips3101220] +centroid = (0.72341174781531847, -1.6864478993245453) +description = Ames CDP, NE +station = ('kfet', 0.0014350949981503198) +zone = ('nez044', 0.0022851911629887907) + +[fips3101290] +centroid = (0.71276407000755415, -1.7325797963414362) +description = Amherst village, NE +station = ('kear', 0.0040056823348389899) +zone = ('nez061', 0.0025846070483215426) + +[fips31013] +centroid = (0.73680235016893203, -1.7992218951565535) +description = Box Butte County, NE +station = ('kaia', 0.0047157417835420002) +zone = ('nez003', 7.7201289703243296e-05) + +[fips3101390857] +centroid = (0.7351884616629053, -1.7977678788100095) +description = Eleven precinct, NE +station = ('kaia', 0.0029409337790160359) +zone = ('nez003', 0.0019863769125094692) + +[fips3101390992] +centroid = (0.73852673546990233, -1.8008355393164848) +description = Fifteen precinct, NE +station = ('kaia', 0.0067448877610780389) +zone = ('nez003', 0.0020547319773420079) + +[fips3101465] +centroid = (0.74954910056148472, -1.7248832259526992) +description = Anoka village, NE +station = ('konl', 0.0085706887833056581) +zone = ('nez007', 0.0011320250568690041) + +[fips31015] +centroid = (0.74864934842549657, -1.7239144460447946) +description = Boyd County, NE +station = ('konl', 0.0075543549682471111) +zone = ('nez007', 0.00012392029458817291) + +[fips3101500] +centroid = (0.72638126845795414, -1.7429656747614013) +description = Anselmo village, NE +station = ('kbbw', 0.004425287781475158) +zone = ('nez038', 0.0043126303510133386) + +[fips3101503197] +centroid = (0.74935507230854059, -1.7305540973984015) +description = Basin township, NE +station = ('konl', 0.010155747800851491) +zone = ('sdz050', 0.004513181709703027) + +[fips3101506435] +centroid = (0.74754883106565162, -1.7208260161202205) +description = Bristow township, NE +station = ('konl', 0.0064634937953761693) +zone = ('nez007', 0.0024849017034336853) + +[fips3101507380] +centroid = (0.7476570065726903, -1.7169006135528526) +description = Bush township, NE +station = ('konl', 0.0076137078705218533) +zone = ('nez007', 0.0051719868790136986) + +[fips3101507520] +centroid = (0.74888790002765926, -1.7249277667552099) +description = Butte township, NE +station = ('konl', 0.007934477255187403) +zone = ('nez007', 0.00083859855506756913) + +[fips3101529785] +centroid = (0.74696938175398941, -1.7192011145866137) +description = Lynch township, NE +station = ('konl', 0.0062325141997718455) +zone = ('nez007', 0.0038091801783116052) + +[fips3101529995] +centroid = (0.7494588321325717, -1.7270568590031328) +description = McCulley township, NE +station = ('konl', 0.0089696949940826134) +zone = ('nez007', 0.0024902525776499501) + +[fips3101532935] +centroid = (0.74938671512787913, -1.7208109364754831) +description = Morton township, NE +station = ('konl', 0.0082810695043923858) +zone = ('nez007', 0.0022826511979292603) + +[fips3101533215] +centroid = (0.74917579208777563, -1.7192743835086124) +description = Mullen township, NE +station = ('konl', 0.0083059519078614204) +zone = ('nez007', 0.0033433942061340855) + +[fips3101535] +centroid = (0.72060981368745924, -1.7345526467147205) +description = Ansley village, NE +station = ('kbbw', 0.0041516051733543309) +zone = ('nez046', 0.0054587065637198753) + +[fips3101546310] +centroid = (0.74881943076110347, -1.7229921966147481) +description = Spencer township, NE +station = ('konl', 0.0076508940806279827) +zone = ('nez007', 0.00059735245484875989) + +[fips31017] +centroid = (0.73913629171116135, -1.7439884202497773) +description = Brown County, NE +station = ('kanw', 0.0042011737684608417) +zone = ('nez008', 0.0014092696761642644) + +[fips3101780] +centroid = (0.7034519355967086, -1.7435492779566832) +description = Arapahoe city, NE +station = ('khde', 0.0079238969231888133) +zone = ('nez082', 0.0022495390000690863) + +[fips3101790007] +centroid = (0.74261026486750104, -1.7428432573676664) +description = Ainsworth city, NE +station = ('kanw', 0.0019295944748904874) +zone = ('nez008', 0.0022649342443895786) + +[fips3101790010] +centroid = (0.73962119653724301, -1.7428731024978754) +description = Ainsworth precinct, NE +station = ('kanw', 0.0040284189143094265) +zone = ('nez008', 0.0012919907195796392) + +[fips3101791555] +centroid = (0.74047534321987651, -1.74736434080874) +description = Johnstown precinct, NE +station = ('kanw', 0.0031273998093751571) +zone = ('nez008', 0.0024113358284670165) + +[fips3101792175] +centroid = (0.74403778711599977, -1.7408496724828686) +description = North Pine precinct, NE +station = ('kanw', 0.003397102820114936) +zone = ('nez008', 0.0042361560854173152) + +[fips3101793005] +centroid = (0.73902427647976843, -1.7410501584540448) +description = South Pine precinct, NE +station = ('kanw', 0.005250120713959412) +zone = ('nez008', 0.002716170359943672) + +[fips3101850] +centroid = (0.72299955340587507, -1.7300761564360354) +description = Arcadia village, NE +station = ('kodx', 0.0040625532404665321) +zone = ('nez039', 0.0031201302193666642) + +[fips31019] +centroid = (0.71305821034639283, -1.7291846597074092) +description = Buffalo County, NE +station = ('kear', 0.0023468202826035572) +zone = ('nez061', 2.2105509767008593e-06) + +[fips3101902060] +centroid = (0.71391457359717636, -1.7343491064173531) +description = Armada township, NE +station = ('kear', 0.0057359116159927583) +zone = ('nez061', 0.0039978161303095613) + +[fips3101903425] +centroid = (0.71566595914167508, -1.7278461841573471) +description = Beaver township, NE +station = ('kear', 0.0047352306959292786) +zone = ('nez061', 0.0027990845900454) + +[fips3101908080] +centroid = (0.71412450179960629, -1.7280129852739603) +description = Cedar township, NE +station = ('kear', 0.0031954025851558205) +zone = ('nez061', 0.0013880636244550733) + +[fips3101908255] +centroid = (0.71075961172151636, -1.7279702945204565) +description = Center township, NE +station = ('kear', 0.00018549880380818432) +zone = ('nez061', 0.0024736994895233457) + +[fips3101909025] +centroid = (0.7155769997097009, -1.7241097483880927) +description = Cherry Creek township, NE +station = ('kear', 0.0054497002614853057) +zone = ('nez046', 0.0046100701808355748) + +[fips3101909970] +centroid = (0.71019545149410157, -1.7304375094043682) +description = Collins township, NE +station = ('kear', 0.0020762177859985219) +zone = ('nez061', 0.0030137295422902506) + +[fips3101913120] +centroid = (0.71254250045901357, -1.7301392151819099) +description = Divide township, NE +station = ('kear', 0.0023526053677616699) +zone = ('nez061', 0.00088593193245722142) + +[fips3101915395] +centroid = (0.71074002912730894, -1.7342175784049227) +description = Elm Creek township, NE +station = ('khde', 0.0047709621915724898) +zone = ('nez073', 0.0037496979657610572) + +[fips3101918020] +centroid = (0.71412982505382494, -1.7240190959867441) +description = Gardner township, NE +station = ('kear', 0.0043303177633473655) +zone = ('nez061', 0.0040503996013718088) + +[fips3101918090] +centroid = (0.71551753634208559, -1.7258548158406992) +description = Garfield township, NE +station = ('kear', 0.0048347308412583371) +zone = ('nez061', 0.0035199387542285423) + +[fips3101918650] +centroid = (0.7110695647433779, -1.726181489116795) +description = Gibbon township, NE +station = ('kear', 0.0012913952648203495) +zone = ('nez061', 0.0030191962445551557) + +[fips3101919700] +centroid = (0.71261473963675359, -1.7323274740914754) +description = Grant township, NE +station = ('kear', 0.003767941202909646) +zone = ('nez061', 0.0024179541106495979) + +[fips3101920] +centroid = (0.71849321799698074, -1.7128463009669324) +description = Archer CDP, NE +station = ('kgri', 0.0042016870740935715) +zone = ('nez048', 0.0013316069102713973) + +[fips3101921065] +centroid = (0.71566564498240981, -1.7344523251893158) +description = Harrison township, NE +station = ('kear', 0.0068666191187855127) +zone = ('nez061', 0.0047588916251063949) + +[fips3101925055] +centroid = (0.71035623122479541, -1.7293368000583054) +description = Kearney city, NE +station = ('kear', 0.0012474264989474208) +zone = ('nez061', 0.0027022274590567043) + +[fips3101928560] +centroid = (0.71261554248820957, -1.7343198372457971) +description = Logan township, NE +station = ('kear', 0.0051620036109687999) +zone = ('nez061', 0.0039094810427630355) + +[fips3101929330] +centroid = (0.7156037381538416, -1.730381344709039) +description = Loup township, NE +station = ('kear', 0.0050424367750999113) +zone = ('nez061', 0.0027033247184506414) + +[fips3101935805] +centroid = (0.71093355123477009, -1.7323155534926842) +description = Odessa township, NE +station = ('kear', 0.0033641197735777215) +zone = ('nez061', 0.003181503630239578) + +[fips3101939205] +centroid = (0.71008317446332092, -1.7250326610432549) +description = Platte township, NE +station = ('kear', 0.002315986659482276) +zone = ('nez074', 0.0034379345781678354) + +[fips3101940710] +centroid = (0.71599685611456076, -1.7262574283925491) +description = Ravenna city, NE +station = ('kear', 0.0052117857717798441) +zone = ('nez046', 0.0035544300160116884) + +[fips3101941550] +centroid = (0.71135752661666452, -1.7301861819920812) +description = Riverdale township, NE +station = ('kear', 0.0018015333298886098) +zone = ('nez061', 0.0018598884394138123) + +[fips3101942740] +centroid = (0.71413448508292765, -1.7301769317470457) +description = Rusco township, NE +station = ('kear', 0.0036462805495794176) +zone = ('nez061', 0.0013135926818185928) + +[fips3101943790] +centroid = (0.71576162063797699, -1.7321655075368902) +description = Sartoria township, NE +station = ('kear', 0.0058187823914871099) +zone = ('nez061', 0.0035200402631572801) + +[fips3101943965] +centroid = (0.71412856841676342, -1.7260141644014064) +description = Schneider township, NE +station = ('kear', 0.00349437581127925) +zone = ('nez061', 0.0026261735865279723) + +[fips3101944140] +centroid = (0.71412837643054572, -1.7323232853012704) +description = Scott township, NE +station = ('kear', 0.0046422057783954557) +zone = ('nez061', 0.0026037115333529897) + +[fips3101944560] +centroid = (0.71261173767044017, -1.724017211031152) +description = Sharon township, NE +station = ('kear', 0.003370892056861727) +zone = ('nez061', 0.003934620261914038) + +[fips3101944735] +centroid = (0.71122365986303659, -1.7241795091982948) +description = Shelton township, NE +station = ('kear', 0.0028159213079601295) +zone = ('nez074', 0.0047464445530366727) + +[fips3101948865] +centroid = (0.71261559484808712, -1.728007033701211) +description = Thornton township, NE +station = ('kear', 0.0016877336778177172) +zone = ('nez061', 0.00099400444947702173) + +[fips3101949985] +centroid = (0.71261154568422247, -1.7260088586004803) +description = Valley township, NE +station = ('kear', 0.0021963013620528095) +zone = ('nez061', 0.0024435178100876147) + +[fips3101990] +centroid = (0.72352371068683397, -1.6817386519368143) +description = Arlington village, NE +station = ('kfet', 0.0020965543658446641) +zone = ('nez045', 0.0022074952224596356) + +[fips3102095] +centroid = (0.72297199465698592, -1.7487075287477822) +description = Arnold village, NE +station = ('kbbw', 0.007333357270532157) +zone = ('nez037', 0.0045330516067855495) + +[fips31021] +centroid = (0.73049322926906779, -1.681410861649997) +description = Burt County, NE +station = ('ktqe', 0.0025234717035774955) +zone = ('nez034', 0.00012655484888831475) + +[fips3102101955] +centroid = (0.72891159444761799, -1.6783958751803472) +description = Arizona township, NE +station = ('ktqe', 0.00024475447677445907) +zone = ('nez034', 0.0026251214893998512) + +[fips3102103845] +centroid = (0.73090125234159908, -1.6824762106254145) +description = Bell Creek township, NE +station = ('ktqe', 0.0034056706295136937) +zone = ('nez034', 0.0010181812634456197) + +[fips3102111125] +centroid = (0.72887974218876905, -1.6824038492746267) +description = Craig township, NE +station = ('ktqe', 0.0027521953916406681) +zone = ('nez034', 0.0017862141106120735) + +[fips3102112560] +centroid = (0.73260900465479784, -1.6805104811954783) +description = Decatur township, NE +station = ('ktqe', 0.0038805210663713451) +zone = ('nez034', 0.0022320037281200276) + +[fips3102116200] +centroid = (0.73239815142786446, -1.6842362006431257) +description = Everett township, NE +station = ('ktqe', 0.0053555431390885097) +zone = ('nez034', 0.002956058660034708) + +[fips3102128595] +centroid = (0.7326028960024159, -1.6824654593972221) +description = Logan township, NE +station = ('ktqe', 0.0045852110350945753) +zone = ('nez034', 0.0023375766606182347) + +[fips3102135490] +centroid = (0.7301599062885219, -1.6836676596392883) +description = Oakland city, NE +station = ('ktqe', 0.0038797175614298097) +zone = ('nez034', 0.0018215519619072039) + +[fips3102135525] +centroid = (0.73068596597836555, -1.684361689816344) +description = Oakland township, NE +station = ('ktqe', 0.0045457946345407434) +zone = ('nez034', 0.0023277103100467753) + +[fips3102138925] +centroid = (0.72917485991198872, -1.6844552220109583) +description = Pershing township, NE +station = ('ktqe', 0.0042854849739824121) +zone = ('nez034', 0.0027042582283380479) + +[fips3102140500] +centroid = (0.73224564455782526, -1.6786086482694575) +description = Quinnebaugh township, NE +station = ('ktqe', 0.003280765323272206) +zone = ('nez034', 0.0026665489813973444) + +[fips3102141585] +centroid = (0.73069348834744163, -1.6786618808116434) +description = Riverside township, NE +station = ('ktqe', 0.0017281056336758368) +zone = ('nez034', 0.0019455793865977087) + +[fips3102145330] +centroid = (0.73072502644702519, -1.6804446124695078) +description = Silver Creek township, NE +station = ('ktqe', 0.0021805245003394423) +zone = ('nez034', 0.00066337532398220446) + +[fips3102147570] +centroid = (0.7287819862973649, -1.6806104187484474) +description = Summit township, NE +station = ('ktqe', 0.00142511485645061) +zone = ('nez034', 0.0017320330865726052) + +[fips3102148515] +centroid = (0.72912581616000782, -1.6793974672781891) +description = Tekamah city, NE +station = ('ktqe', 0.00053292989547732794) +zone = ('nez034', 0.0019122411001581906) + +[fips3102200] +centroid = (0.72556593789788504, -1.7748648131540063) +description = Arthur village, NE +station = ('koga', 0.0079550101007619216) +zone = ('nez035', 7.0250183914592811e-05) + +[fips31023] +centroid = (0.71953069406424375, -1.695273907178833) +description = Butler County, NE +station = ('kolu', 0.0047151614031039988) +zone = ('nez050', 3.7746779647877671e-05) + +[fips3102300765] +centroid = (0.72183212012250852, -1.6982701662656092) +description = Alexis township, NE +station = ('kolu', 0.0016529798790935013) +zone = ('nez050', 0.0032560248417947599) + +[fips3102305] +centroid = (0.71628914640439223, -1.6819762610611808) +description = Ashland city, NE +station = ('kmle', 0.0043434088426277497) +zone = ('nez053', 0.0036271629740076941) + +[fips3102305805] +centroid = (0.72182156088053395, -1.6941960965525564) +description = Bone Creek township, NE +station = ('kolu', 0.003804520043484695) +zone = ('nez050', 0.0024544730522633382) + +[fips3102308290] +centroid = (0.71854866710731657, -1.6942206533351318) +description = Center township, NE +station = ('kolu', 0.0059733338564380992) +zone = ('nez050', 0.0012246405933069428) + +[fips3102312315] +centroid = (0.72012059789812521, -1.6952260502507435) +description = David City city, NE +station = ('kolu', 0.0042610876764319029) +zone = ('nez050', 0.00062281083609237872) + +[fips3102317460] +centroid = (0.72014019794562512, -1.6944503910245721) +description = Franklin township, NE +station = ('kolu', 0.0046345082492728782) +zone = ('nez050', 0.00087907904842151057) + +[fips3102328280] +centroid = (0.72172966929541638, -1.6923334637215355) +description = Linwood township, NE +station = ('kfet', 0.0060952302645615767) +zone = ('nez050', 0.0031271116184333116) + +[fips3102335280] +centroid = (0.71878704417655404, -1.6922275745958171) +description = Oak Creek township, NE +station = ('kahq', 0.0047639660031161884) +zone = ('nez050', 0.0023816591663773806) + +[fips3102336120] +centroid = (0.72032932182337128, -1.6965604068237705) +description = Olive township, NE +station = ('kolu', 0.0035303228291909531) +zone = ('nez050', 0.0012898008080925241) + +[fips3102339240] +centroid = (0.72286078227704886, -1.6921260836998135) +description = Platte township, NE +station = ('kfet', 0.0057215461612148211) +zone = ('nez043', 0.003248111537840017) + +[fips3102339555] +centroid = (0.71722377021883521, -1.6943372587824577) +description = Plum Creek township, NE +station = ('klnk', 0.0061284415459271534) +zone = ('nez050', 0.0023755379431266203) + +[fips3102340815] +centroid = (0.71714945409928532, -1.6984269666456084) +description = Read township, NE +station = ('kjyr', 0.0052942629041449864) +zone = ('nez050', 0.003352863424346402) + +[fips3102340850] +centroid = (0.71869316291608931, -1.6983709415766195) +description = Reading township, NE +station = ('kolu', 0.0047560965228819014) +zone = ('nez050', 0.0024831790966835126) + +[fips3102341250] +centroid = (0.71714447991091701, -1.6923714595393515) +description = Richardson township, NE +station = ('klnk', 0.0051817523219859964) +zone = ('nez050', 0.0031987937682795703) + +[fips3102343860] +centroid = (0.72163006335500512, -1.6964071669154455) +description = Savannah township, NE +station = ('kolu', 0.0025415407202383578) +zone = ('nez050', 0.0023028881038294883) + +[fips3102345540] +centroid = (0.72010859003287153, -1.6922429683998197) +description = Skull Creek township, NE +station = ('kolu', 0.0059348019781940483) +zone = ('nez050', 0.0023411896995382559) + +[fips3102347605] +centroid = (0.72010324932536041, -1.6985921969658946) +description = Summit township, NE +station = ('kolu', 0.00333893365609349) +zone = ('nez050', 0.0025858679692500022) + +[fips3102349495] +centroid = (0.71721221613918695, -1.6962605418049854) +description = Ulysses township, NE +station = ('kolu', 0.0065098819589320123) +zone = ('nez050', 0.0024093913343415313) + +[fips3102349600] +centroid = (0.71861097536161278, -1.6964473618481188) +description = Union township, NE +station = ('kolu', 0.0051379255511500447) +zone = ('nez050', 0.0012649850558081237) + +[fips3102375] +centroid = (0.7199090116329061, -1.7243006001417982) +description = Ashton village, NE +station = ('kodx', 0.0067501584471086756) +zone = ('nez046', 0.002424774676384456) + +[fips3102480] +centroid = (0.74764208400758569, -1.7006629603102159) +description = Aten CDP, NE +station = ('kykn', 0.0015768938563497645) +zone = ('sdz069', 0.0030637841642057167) + +[fips31025] +centroid = (0.71401206768919279, -1.6779701719224931) +description = Cass County, NE +station = ('kpmv', 0.0030205786200337924) +zone = ('nez067', 2.8635829409856143e-06) + +[fips3102550] +centroid = (0.74230355815804805, -1.7274338152149784) +description = Atkinson city, NE +station = ('konl', 0.003912770193976331) +zone = ('nez010', 0.0027846656090550355) + +[fips3102590110] +centroid = (0.71242713419545678, -1.6774935574103587) +description = Avoca precinct, NE +station = ('kpmv', 0.0034464986123950501) +zone = ('nez067', 0.0016246367350443295) + +[fips3102590470] +centroid = (0.71414457308600421, -1.6786991086845884) +description = Center precinct, NE +station = ('kpmv', 0.0035347012078213824) +zone = ('nez067', 0.00056444073024036333) + +[fips3102590820] +centroid = (0.71403245313485608, -1.6729973798177109) +description = East Rock Bluff precinct, NE +station = ('kpmv', 0.0010641940294264381) +zone = ('iaz079', 0.0037519851681833147) + +[fips3102590850] +centroid = (0.7156871997986719, -1.6765918155990229) +description = Eight Mile Grove precinct, NE +station = ('kpmv', 0.0021315406982161215) +zone = ('nez067', 0.001974689759647613) + +[fips3102590890] +centroid = (0.71412853351017835, -1.680756956592445) +description = Elmwood precinct, NE +station = ('kmle', 0.0054667538915590891) +zone = ('nez067', 0.0021067592415830632) + +[fips3102591245] +centroid = (0.71403850942736047, -1.6825360579654653) +description = Greenwood precinct, NE +station = ('klnk', 0.0049991247021524679) +zone = ('nez067', 0.0034481793773034957) + +[fips3102591735] +centroid = (0.71263203584964085, -1.6737134884098042) +description = Liberty precinct, NE +station = ('kpmv', 0.002098766090313787) +zone = ('nez067', 0.0035040118217210159) + +[fips3102591865] +centroid = (0.71537119048430575, -1.6782718171771154) +description = Louisville precinct, NE +station = ('kmle', 0.0036810877646494006) +zone = ('nez067', 0.0013790153384824404) + +[fips3102592045] +centroid = (0.71397030196019262, -1.6768001904584187) +description = Mount Pleasant precinct, NE +station = ('kpmv', 0.002184290260669638) +zone = ('nez067', 0.00088765837397703851) + +[fips3102592065] +centroid = (0.7127045542800613, -1.6754718727246034) +description = Nehawka precinct, NE +station = ('kpmv', 0.0022664020300288178) +zone = ('nez067', 0.0022987817245284426) + +[fips3102592398] +centroid = (0.71568365678029044, -1.6736685461815652) +description = Plattsmouth city, NE +station = ('kpmv', 0.0010200275223801241) +zone = ('nez053', 0.0034247887368283924) + +[fips3102592400] +centroid = (0.71573435859506085, -1.6744007990692396) +description = Plattsmouth precinct, NE +station = ('kpmv', 0.0010501533170847147) +zone = ('nez053', 0.00294646252929967) + +[fips3102592850] +centroid = (0.71544014844305204, -1.6825190060986734) +description = Salt Creek precinct, NE +station = ('kahq', 0.0049121907638524885) +zone = ('nez053', 0.004357929062012926) + +[fips3102592965] +centroid = (0.71544421506020928, -1.6804832889657322) +description = South Bend precinct, NE +station = ('kmle', 0.0042196343793247625) +zone = ('nez067', 0.0023765786245390753) + +[fips3102593120] +centroid = (0.71268507640560896, -1.6804646488493209) +description = Stove Creek precinct, NE +station = ('klnk', 0.0063799692723965993) +zone = ('nez067', 0.002303426408474129) + +[fips3102593205] +centroid = (0.71249530675603967, -1.6824736798979991) +description = Tipton precinct, NE +station = ('klnk', 0.0048636710669057179) +zone = ('nez067', 0.0037253447191416371) + +[fips3102593383] +centroid = (0.71330185830997128, -1.6779606947846548) +description = Weeping Water city, NE +station = ('kpmv', 0.003253646924433301) +zone = ('nez067', 0.00070891417636683937) + +[fips3102593385] +centroid = (0.71295656237075666, -1.6784604000027932) +description = Weeping Water precinct, NE +station = ('kpmv', 0.003746992554076825) +zone = ('nez067', 0.0011165761803544425) + +[fips3102593455] +centroid = (0.71426412813976581, -1.6746063814018319) +description = West Rock Bluff precinct, NE +station = ('kpmv', 0.00059865174214461861) +zone = ('nez067', 0.0025569846190941895) + +[fips3102620] +centroid = (0.70456165084171163, -1.7361352589205514) +description = Atlanta village, NE +station = ('khde', 0.0023417939113686936) +zone = ('nez073', 0.0026097322855903296) + +[fips3102655] +centroid = (0.70492782091878003, -1.6727863520578521) +description = Auburn city, NE +station = ('kafk', 0.0036768373600247041) +zone = ('nez091', 7.0197153060694902e-05) + +[fips3102690] +centroid = (0.71320902424705768, -1.7105442640434294) +description = Aurora city, NE +station = ('kauh', 0.00054942159686417074) +zone = ('nez063', 0.00027338050775762933) + +[fips31027] +centroid = (0.74358899315214189, -1.6974517988326414) +description = Cedar County, NE +station = ('kykn', 0.0056842105686099407) +zone = ('nez012', 0.00010793338251766354) + +[fips3102791329] +centroid = (0.74387082891975398, -1.6976283563397734) +description = Hartington city, NE +station = ('kykn', 0.0053772357351188921) +zone = ('nez012', 0.00041753214971946873) + +[fips3102792470] +centroid = (0.7473654144145595, -1.6978272191547457) +description = Precinct 1, NE +station = ('kykn', 0.0021444447822701698) +zone = ('sdz069', 0.0036044521295209918) + +[fips3102792480] +centroid = (0.74738525880815476, -1.700436276946967) +description = Precinct 2, NE +station = ('kykn', 0.0017471570688404022) +zone = ('sdz069', 0.0032907466997583643) + +[fips3102792490] +centroid = (0.74601086438208675, -1.7004141810786366) +description = Precinct 3, NE +station = ('kykn', 0.0030764269909628441) +zone = ('nez012', 0.0033637275095322714) + +[fips3102792500] +centroid = (0.74600639633920163, -1.6983512368093643) +description = Precinct 4, NE +station = ('kykn', 0.0031790496701223168) +zone = ('nez012', 0.002609468561333064) + +[fips3102792510] +centroid = (0.74611718984011832, -1.6961614594633498) +description = Precinct 5, NE +station = ('kykn', 0.0038868632055783156) +zone = ('nez012', 0.0027664315510391598) + +[fips3102792520] +centroid = (0.74588989561163099, -1.6940019112199796) +description = Precinct 6, NE +station = ('kykn', 0.0052080820606772897) +zone = ('sdz070', 0.0032894915022057096) + +[fips3102792530] +centroid = (0.74447932051016918, -1.6942566245710156) +description = Precinct 7, NE +station = ('kykn', 0.0060413321289945962) +zone = ('nez012', 0.0024939846471678487) + +[fips3102792540] +centroid = (0.7444316206617122, -1.6963417868816657) +description = Precinct 8, NE +station = ('kykn', 0.0052096635667110824) +zone = ('nez012', 0.0012029533274398388) + +[fips3102792545] +centroid = (0.74438884264174587, -1.6982147520618585) +description = Precinct 9, NE +station = ('kykn', 0.0047677482365406209) +zone = ('nez012', 0.0010850253398877164) + +[fips3102792550] +centroid = (0.74490189962866205, -1.6989114176860842) +description = Precinct 9A, NE +station = ('kykn', 0.004171538278167782) +zone = ('nez012', 0.0018032844976989459) + +[fips3102792555] +centroid = (0.7444925675591918, -1.7004139367325413) +description = Precinct 10, NE +station = ('kykn', 0.0045781459800529698) +zone = ('nez012', 0.0024486068185002453) + +[fips3102792560] +centroid = (0.7429749165081202, -1.7004120168703643) +description = Precinct 11, NE +station = ('kykn', 0.0060873390296906768) +zone = ('nez012', 0.0022980267449536356) + +[fips3102792565] +centroid = (0.74297289192618787, -1.6983577992473518) +description = Precinct 12, NE +station = ('kykn', 0.0061391676995242181) +zone = ('nez012', 0.00089538391511170367) + +[fips3102792570] +centroid = (0.74282673805462585, -1.6961831539059518) +description = Precinct 13, NE +station = ('klcg', 0.0061529868819673499) +zone = ('nez012', 0.0011036465597736678) + +[fips3102792575] +centroid = (0.74284309178971708, -1.6940881304850279) +description = Precinct 14, NE +station = ('klcg', 0.0056877129780652479) +zone = ('nez012', 0.0025057301472952626) + +[fips3102792580] +centroid = (0.74152473988593059, -1.6942018561390879) +description = Precinct 15, NE +station = ('klcg', 0.0044209443168034615) +zone = ('nez012', 0.0030581358078748642) + +[fips3102792585] +centroid = (0.74155535296101061, -1.6962534732215147) +description = Precinct 16, NE +station = ('klcg', 0.0050589839430485511) +zone = ('nez012', 0.0021104952965918565) + +[fips3102792590] +centroid = (0.7413292106498296, -1.6984824681158217) +description = Precinct 17, NE +station = ('klcg', 0.0059329035768456379) +zone = ('nez012', 0.002317829814508671) + +[fips3102792595] +centroid = (0.74158816515094805, -1.7002511847797928) +description = Precinct 18, NE +station = ('kykn', 0.0074616387896507151) +zone = ('nez012', 0.0028538884067269145) + +[fips3102792600] +centroid = (0.73991006598174058, -1.6982873403054488) +description = Precinct 19, NE +station = ('klcg', 0.0049449110296839937) +zone = ('nez012', 0.0036507855978532055) + +[fips3102792605] +centroid = (0.73999839709518389, -1.6961705177221675) +description = Precinct 20, NE +station = ('klcg', 0.0037837383019978586) +zone = ('nez018', 0.0034108022089283149) + +[fips3102792610] +centroid = (0.73991113063258429, -1.694300048362805) +description = Precinct 21, NE +station = ('klcg', 0.0029235756769147719) +zone = ('nez018', 0.0032692120325501601) + +[fips3102792696] +centroid = (0.73962692121718954, -1.6992120157431554) +description = Randolph city, NE +station = ('klcg', 0.005404494040127601) +zone = ('nez017', 0.0037122221689356565) + +[fips3102795] +centroid = (0.71203333555632931, -1.6775958337045254) +description = Avoca village, NE +station = ('kpmv', 0.0037736735268497292) +zone = ('nez067', 0.001997899026651088) + +[fips3102830] +centroid = (0.7065069424661069, -1.7301239959108325) +description = Axtell village, NE +station = ('khde', 0.002765430775361748) +zone = ('nez074', 0.0024450563570790626) + +[fips3102865] +centroid = (0.70578130437629782, -1.7181162004702817) +description = Ayr village, NE +station = ('khsi', 0.0028241132836470438) +zone = ('nez075', 0.0017049171344696316) + +[fips31029] +centroid = (0.70738875261738454, -1.7748984805552774) +description = Chase County, NE +station = ('kiml', 0.0010560438911355204) +zone = ('nez069', 0.00011870765855276228) + +[fips3102990487] +centroid = (0.70654115091944603, -1.7784683421007215) +description = Champion-Lamar precinct, NE +station = ('kiml', 0.0037925352219968993) +zone = ('nez069', 0.0027659203160101523) + +[fips3102991500] +centroid = (0.7070889225051844, -1.7738535693854007) +description = Imperial East precinct, NE +station = ('kiml', 0.0002419144191110495) +zone = ('nez069', 0.00086506180743450389) + +[fips3102991505] +centroid = (0.7076407781613725, -1.7742539130092234) +description = Imperial Rural precinct, NE +station = ('kiml', 0.00072910987706985698) +zone = ('nez069', 0.00064825679190761646) + +[fips3102991510] +centroid = (0.7072135564670694, -1.774105333130001) +description = Imperial West precinct, NE +station = ('kiml', 0.00043048515036221073) +zone = ('nez069', 0.00065555769002312509) + +[fips3102993365] +centroid = (0.70767615598531053, -1.7701597371031874) +description = Wauneta precinct, NE +station = ('kiml', 0.0026266587467844368) +zone = ('nez070', 0.0048023695324281553) + +[fips3103005] +centroid = (0.73322192938151332, -1.6855214436510018) +description = Bancroft village, NE +station = ('ktqe', 0.0066168182601387543) +zone = ('nez015', 0.0026050054677224151) + +[fips3103040] +centroid = (0.70194454708163867, -1.6681473192659286) +description = Barada village, NE +station = ('kfnb', 0.002359559755069776) +zone = ('nez093', 0.0024693824915779138) + +[fips3103075] +centroid = (0.69898162378357542, -1.6855272555974108) +description = Barneston village, NE +station = ('kbie', 0.0049771085067989223) +zone = ('nez089', 0.0040284802527432188) + +[fips31031] +centroid = (0.74293404089703852, -1.7640500375236561) +description = Cherry County, NE +station = ('kvtn', 0.0085011488094227476) +zone = ('nez094', 0.0047911511421704495) + +[fips3103145] +centroid = (0.73101253453470616, -1.7200667455357255) +description = Bartlett village, NE +station = ('kodx', 0.0069670681627835331) +zone = ('nez029', 0.00062483320568328007) + +[fips3103180] +centroid = (0.70253698164293554, -1.7507349206601912) +description = Bartley village, NE +station = ('kmck', 0.0037590022360078682) +zone = ('nez081', 0.0025973521957756078) + +[fips3103190125] +centroid = (0.74468120274474736, -1.768378349348847) +description = Barley precinct, NE +station = ('kvtn', 0.010470142803337919) +zone = ('nez094', 0.0027474306243972543) + +[fips3103190530] +centroid = (0.74288850525685401, -1.7563706062681737) +description = Cleveland precinct, NE +station = ('kvtn', 0.0053813002535317775) +zone = ('nez005', 0.0016114321373314219) + +[fips3103190550] +centroid = (0.7488223280076618, -1.7686223987381533) +description = Cody precinct, NE +station = ('kvtn', 0.010055184913188768) +zone = ('nez094', 0.0065423370708717994) + +[fips3103190615] +centroid = (0.74875429507341906, -1.7591887370514914) +description = Crookston precinct, NE +station = ('kvtn', 0.0031768254494862567) +zone = ('sdz047', 0.0052030971815707769) + +[fips3103191135] +centroid = (0.74261384279246756, -1.7702855229823788) +description = Gillaspie precinct, NE +station = ('kvtn', 0.012575802041193044) +zone = ('nez094', 0.00025126044500137088) + +[fips3103191165] +centroid = (0.7380442566514811, -1.7504682343504867) +description = Goose Creek precinct, NE +station = ('kanw', 0.0064161464580624076) +zone = ('nez008', 0.0053289143055127606) + +[fips3103191575] +centroid = (0.74215421033395479, -1.7634537806912973) +description = Kennedy precinct, NE +station = ('kvtn', 0.0086823826648149693) +zone = ('nez005', 0.0068545619285211648) + +[fips3103191590] +centroid = (0.74876179998920267, -1.7619060576172139) +description = Kilgore precinct, NE +station = ('kvtn', 0.005147429186870626) +zone = ('sdz047', 0.0058968678285991815) + +[fips3103191610] +centroid = (0.73917940134368565, -1.778209247973263) +description = King precinct, NE +station = ('kien', 0.014399865975071291) +zone = ('nez004', 0.0072724483660506914) + +[fips3103191655] +centroid = (0.73796540267587596, -1.77252472805281) +description = Lackey precinct, NE +station = ('kvtn', 0.016489942131176598) +zone = ('nez094', 0.0047039705838059134) + +[fips3103191870] +centroid = (0.7361134163532923, -1.7560243503978705) +description = Loup precinct, NE +station = ('ktif', 0.0037823259165218727) +zone = ('nez025', 0.0046439484933745888) + +[fips3103191960] +centroid = (0.74686558702337336, -1.7778884913633313) +description = Merriman precinct, NE +station = ('kien', 0.0093266196119910338) +zone = ('nez094', 0.0070035464785241372) + +[fips3103192040] +centroid = (0.73624264053110999, -1.7780893438536509) +description = Mother Lake precinct, NE +station = ('kaia', 0.012174716313065336) +zone = ('nez023', 0.0050106449131785413) + +[fips3103192095] +centroid = (0.74869919502893356, -1.7638978797194671) +description = Nenzel precinct, NE +station = ('kvtn', 0.0065940348107098711) +zone = ('sdz047', 0.0067917307885156037) + +[fips3103192810] +centroid = (0.74219316608285935, -1.7783981275049137) +description = Russell precinct, NE +station = ('kien', 0.011930527013625731) +zone = ('nez004', 0.0066252772294719724) + +[fips3103193278] +centroid = (0.74828960116007548, -1.7549265382983661) +description = Valentine city, NE +station = ('kvtn', 0.00012513726891100226) +zone = ('nez005', 0.0055441925540950119) + +[fips3103193280] +centroid = (0.74799350605247472, -1.7545527062258812) +description = Valentine precinct, NE +station = ('kvtn', 0.00032423883425128944) +zone = ('nez005', 0.0052283714612654276) + +[fips3103193400] +centroid = (0.73743082577928265, -1.7641732054089694) +description = Wells precinct, NE +station = ('ktif', 0.0083255548883489072) +zone = ('nez024', 0.0059044826427907702) + +[fips3103193535] +centroid = (0.74423535838732546, -1.7507473474044657) +description = Wood Lake precinct, NE +station = ('kanw', 0.0041148444094807638) +zone = ('nez005', 0.0029253871995564111) + +[fips3103215] +centroid = (0.74320554431547869, -1.7372418325729009) +description = Bassett city, NE +station = ('kanw', 0.0059547644664475876) +zone = ('nez009', 0.0030268935095099391) + +[fips3103250] +centroid = (0.73300545619438839, -1.7034320124349673) +description = Battle Creek city, NE +station = ('kofk', 0.0021704906180920786) +zone = ('nez031', 0.0014228804555949659) + +[fips3103285] +centroid = (0.72880050424072851, -1.8033268048374889) +description = Bayard city, NE +station = ('kbff', 0.0040784300111646379) +zone = ('nez021', 0.0041331644421053453) + +[fips31033] +centroid = (0.71932411689397768, -1.7978973298806298) +description = Cheyenne County, NE +station = ('ksny', 0.0020288954964788873) +zone = ('nez055', 0.00024254487436437461) + +[fips3103355] +centroid = (0.74198198124336812, -1.7088227061758472) +description = Bazile Mills village, NE +station = ('kykn', 0.0097518847074159441) +zone = ('nez011', 0.0021825448616730816) + +[fips3103390] +centroid = (0.7029068169114332, -1.6885589448680023) +description = Beatrice city, NE +station = ('kbie', 0.00046227036984031531) +zone = ('nez089', 0.00079893376657260589) + +[fips3103391265] +centroid = (0.72069760374883463, -1.7976811883060628) +description = Gurley precinct, NE +station = ('ksny', 0.0033740051779248279) +zone = ('nez055', 0.0012777690667015228) + +[fips3103391805] +centroid = (0.71945444062922403, -1.7927256051477052) +description = Lodgepole precinct, NE +station = ('ksny', 0.0041094056311293033) +zone = ('nez055', 0.0036679544297528906) + +[fips3103392465] +centroid = (0.71956518177026318, -1.8025949708288354) +description = Potter precinct, NE +station = ('ksny', 0.0045055768720429924) +zone = ('nez055', 0.00375827137290686) + +[fips3103392946] +centroid = (0.71791816691503374, -1.7971386178014954) +description = Sidney city, NE +station = ('ksny', 0.00061953002034757614) +zone = ('nez055', 0.0015429727439631937) + +[fips3103392947] +centroid = (0.7186929709298715, -1.797050321594637) +description = Sidney 2 precinct, NE +station = ('ksny', 0.0013876119547152205) +zone = ('nez055', 0.0008381990028638413) + +[fips3103392948] +centroid = (0.7180154166609547, -1.7959979404155619) +description = Sidney 3 precinct, NE +station = ('ksny', 0.0012578425920142793) +zone = ('nez055', 0.0018530019451807273) + +[fips3103392949] +centroid = (0.71716280586806302, -1.7998312245050097) +description = Sidney 4 precinct, NE +station = ('ksny', 0.0018411772580306136) +zone = ('nez055', 0.0028138956019252794) + +[fips3103392950] +centroid = (0.71680482138518642, -1.7953374729200224) +description = Sidney 5 precinct, NE +station = ('ksny', 0.0016397609111767589) +zone = ('nez055', 0.0031230218622784272) + +[fips3103393270] +centroid = (0.72255018348336397, -1.7975197977101309) +description = Union Valley precinct, NE +station = ('ksny', 0.0052206609076683634) +zone = ('nez055', 0.0031295636348556881) + +[fips3103495] +centroid = (0.70054604965860057, -1.742320566163279) +description = Beaver City city, NE +station = ('khde', 0.0085372942603652493) +zone = ('nez082', 0.0013105322256474759) + +[fips31035] +centroid = (0.70727144903835792, -1.711313657537586) +description = Clay County, NE +station = ('khsi', 0.0052409720820353056) +zone = ('nez076', 1.2912619267140464e-05) + +[fips3103509375] +centroid = (0.70730378998939747, -1.7113816730185363) +description = Clay Center city, NE +station = ('khsi', 0.0051827414829854774) +zone = ('nez076', 5.3428225157739876e-05) + +[fips3103514485] +centroid = (0.70489705076406728, -1.7101547589142618) +description = Edgar township, NE +station = ('khjh', 0.0067030129438260472) +zone = ('nez076', 0.0025455104316149568) + +[fips3103514660] +centroid = (0.70950196236911423, -1.7102596008424291) +description = Eldorado township, NE +station = ('kauh', 0.0042313388260169556) +zone = ('nez076', 0.0023584652542765518) + +[fips3103516480] +centroid = (0.70511862031260797, -1.7122233056904328) +description = Fairfield township, NE +station = ('khsi', 0.0055987189103408556) +zone = ('nez076', 0.0022728840752850154) + +[fips3103519105] +centroid = (0.70652579202202848, -1.7142915034007535) +description = Glenvil township, NE +station = ('khsi', 0.0034927506573646633) +zone = ('nez076', 0.0023860325856137686) + +[fips3103521380] +centroid = (0.70968761304164885, -1.7122382457088299) +description = Harvard township, NE +station = ('kauh', 0.0042968193350947448) +zone = ('nez076', 0.0025032963386299846) + +[fips3103524040] +centroid = (0.7080683838281111, -1.7140610501263205) +description = Inland township, NE +station = ('khsi', 0.0030282881312708432) +zone = ('nez076', 0.0022282301149738498) + +[fips3103526525] +centroid = (0.70967796137088535, -1.7141228696884261) +description = Leicester township, NE +station = ('khsi', 0.0031222657636289551) +zone = ('nez076', 0.0032049995344063968) + +[fips3103526840] +centroid = (0.70798959966567609, -1.710188705568213) +description = Lewis township, NE +station = ('kauh', 0.0057443436069119086) +zone = ('nez076', 0.001109844052773201) + +[fips3103528630] +centroid = (0.70496878379632433, -1.7082546189576158) +description = Logan township, NE +station = ('khjh', 0.005680574460021735) +zone = ('nez076', 0.0032845106859709433) + +[fips3103528980] +centroid = (0.7063963584047005, -1.7124662206157255) +description = Lone Tree township, NE +station = ('khsi', 0.0047400921121894153) +zone = ('nez076', 0.0012461615012301125) + +[fips3103529820] +centroid = (0.70818820068126054, -1.7125403971089352) +description = Lynn township, NE +station = ('khsi', 0.0041560613081071326) +zone = ('nez076', 0.0012970533821094828) + +[fips3103530] +centroid = (0.711708896301676, -1.6978993187061455) +description = Beaver Crossing village, NE +station = ('kjyr', 0.0049486323138730375) +zone = ('nez065', 0.0025057395850221443) + +[fips3103530765] +centroid = (0.70652867181529422, -1.7103309149956656) +description = Marshall township, NE +station = ('khsi', 0.0061762579410380896) +zone = ('nez076', 0.0010640485700364496) + +[fips3103544000] +centroid = (0.70969124332649303, -1.7085195250314833) +description = School Creek township, NE +station = ('kauh', 0.0042669059750188015) +zone = ('nez076', 0.0032099735229933249) + +[fips3103544770] +centroid = (0.70652792132371589, -1.7083500535611147) +description = Sheridan township, NE +station = ('khjh', 0.0069483995709228577) +zone = ('nez076', 0.0023788611102175256) + +[fips3103546590] +centroid = (0.70500716358657567, -1.714293824688659) +description = Spring Ranch township, NE +station = ('khsi', 0.0045625553505809916) +zone = ('nez076', 0.0032120892614894477) + +[fips3103547955] +centroid = (0.7087211718749421, -1.7081114146924894) +description = Sutton city, NE +station = ('kauh', 0.0052851041290356872) +zone = ('nez076', 0.0028270473153687052) + +[fips3103547990] +centroid = (0.70798399715877725, -1.7084598347710651) +description = Sutton township, NE +station = ('kauh', 0.0059203340724556224) +zone = ('nez076', 0.0022806298440112617) + +[fips3103600] +centroid = (0.71569686892272799, -1.6939863428830517) +description = Bee village, NE +station = ('klnk', 0.004890218522398633) +zone = ('nez065', 0.0025740439204141661) + +[fips3103635] +centroid = (0.73181796907791652, -1.6896417122293546) +description = Beemer village, NE +station = ('klcg', 0.0058770970910182463) +zone = ('nez033', 0.00037172916467008568) + +[fips31037] +centroid = (0.72561496419657356, -1.6945306587168711) +description = Colfax County, NE +station = ('kolu', 0.0038592536272209206) +zone = ('nez043', 4.5272430243831762e-05) + +[fips3103775] +centroid = (0.7402241554339295, -1.6965893094761837) +description = Belden village, NE +station = ('klcg', 0.0041610702858620001) +zone = ('nez012', 0.0033244548805958694) + +[fips3103790005] +centroid = (0.7278069057508606, -1.6943352167472328) +description = Adams precinct, NE +station = ('kolu', 0.0054927641232914888) +zone = ('nez043', 0.0022221612513269205) + +[fips3103790560] +centroid = (0.724926170007274, -1.6922193890016253) +description = Colfax precinct, NE +station = ('kfet', 0.0059459442281957634) +zone = ('nez043', 0.0018181395052338837) + +[fips3103791190] +centroid = (0.72487283274533298, -1.6941771422768797) +description = Grant precinct, NE +station = ('kolu', 0.0037390156191348832) +zone = ('nez043', 0.00075030523212986269) + +[fips3103791755] +centroid = (0.72791391188730048, -1.6921731552297399) +description = Lincoln precinct, NE +station = ('kolu', 0.0066711001891853767) +zone = ('nez043', 0.0028967372436275282) + +[fips3103791920] +centroid = (0.72633116005512943, -1.6922613816234282) +description = Maple Creek precinct, NE +station = ('kfet', 0.0064675101947431158) +zone = ('nez043', 0.0018200217339672425) + +[fips3103791975] +centroid = (0.72628553714848221, -1.6943582550933591) +description = Midland precinct, NE +station = ('kolu', 0.0043697713582478001) +zone = ('nez043', 0.00070422648650149628) + +[fips3103792725] +centroid = (0.72305416475816986, -1.6962049356150168) +description = Richland precinct, NE +station = ('kolu', 0.0019736540384188146) +zone = ('nez043', 0.0028428259619410743) + +[fips3103792780] +centroid = (0.72368878392748748, -1.6925400059852165) +description = Rogers precinct, NE +station = ('kfet', 0.0060055873424398236) +zone = ('nez043', 0.0023917633526644227) + +[fips3103792868] +centroid = (0.72342831098991989, -1.6940633817162347) +description = Schuyler city, NE +station = ('kolu', 0.0035406461788631081) +zone = ('nez043', 0.0021818627522235835) + +[fips3103792870] +centroid = (0.72326866572324, -1.6944538816830759) +description = Schuyler precinct, NE +station = ('kolu', 0.0032526269368855784) +zone = ('nez043', 0.0023189090956274483) + +[fips3103792920] +centroid = (0.72462836447700618, -1.6962995324604748) +description = Shell Creek precinct, NE +station = ('kolu', 0.0022107735501632883) +zone = ('nez043', 0.0016640662536402402) + +[fips3103793070] +centroid = (0.72783125309392604, -1.6963167414068996) +description = Stanton precinct, NE +station = ('kolu', 0.0047652258150033353) +zone = ('nez043', 0.0026293735606125533) + +[fips3103793520] +centroid = (0.72636465292347518, -1.6965304220672213) +description = Wilson precinct, NE +station = ('kolu', 0.0033783593375860169) +zone = ('nez043', 0.0017173975481831485) + +[fips3103810] +centroid = (0.72380271902105775, -1.7116047959101111) +description = Belgrade village, NE +station = ('kbvn', 0.0044968976084645614) +zone = ('nez041', 0.0016191539652240972) + +[fips31039] +centroid = (0.73156985307145295, -1.6892782997725044) +description = Cuming County, NE +station = ('klcg', 0.0062110098622594704) +zone = ('nez033', 1.7252250137025544e-05) + +[fips3103903022] +centroid = (0.73405382311618383, -1.6863064752952563) +description = Bancroft township, NE +station = ('klcg', 0.0056864252585126238) +zone = ('nez015', 0.0019921579601586779) + +[fips3103903670] +centroid = (0.73223627213974196, -1.6902988635993157) +description = Beemer township, NE +station = ('klcg', 0.005313063503709828) +zone = ('nez033', 0.0010150709938549882) + +[fips3103905063] +centroid = (0.73083122973200898, -1.6922811212972682) +description = Bismark township, NE +station = ('klcg', 0.0064305988443103396) +zone = ('nez033', 0.002370800269289544) + +[fips3103905280] +centroid = (0.73373870391973628, -1.6923822107675437) +description = Blaine township, NE +station = ('klcg', 0.0035228355969719781) +zone = ('nez033', 0.003170942282662396) + +[fips3103909515] +centroid = (0.733733223585885, -1.6880819114768475) +description = Cleveland township, NE +station = ('klcg', 0.0048843676061497846) +zone = ('nez033', 0.0023249326719293538) + +[fips3103911685] +centroid = (0.72921303026272988, -1.6862597179245953) +description = Cuming township, NE +station = ('ktqe', 0.0056314953959130248) +zone = ('nez033', 0.0032541796130465196) + +[fips3103915010] +centroid = (0.73076735068138587, -1.6901862549559772) +description = Elkhorn township, NE +station = ('klcg', 0.0067406428829739993) +zone = ('nez033', 0.001065700284292842) + +[fips3103918125] +centroid = (0.73068762404115484, -1.6860522855429956) +description = Garfield township, NE +station = ('ktqe', 0.0057324450156883318) +zone = ('nez033', 0.0025480604205233748) + +[fips3103919735] +centroid = (0.73398177592466152, -1.6904200418092816) +description = Grant township, NE +station = ('klcg', 0.0036662996365195272) +zone = ('nez033', 0.0025529343423192322) + +[fips3103927190] +centroid = (0.72935103344668506, -1.6922492515851268) +description = Lincoln township, NE +station = ('kolu', 0.0076707448700597224) +zone = ('nez033', 0.0031506076896073731) + +[fips3103928665] +centroid = (0.73221279746130263, -1.6881527718444784) +description = Logan township, NE +station = ('klcg', 0.0060451586243995738) +zone = ('nez033', 0.001038477941473828) + +[fips3103932690] +centroid = (0.72924114751697955, -1.6902347576558898) +description = Monterey township, NE +station = ('kfet', 0.0071994183729035622) +zone = ('nez033', 0.0024484600432058581) + +[fips3103933845] +centroid = (0.7322950373756566, -1.6861143843577817) +description = Neligh township, NE +station = ('ktqe', 0.0064377296956283168) +zone = ('nez033', 0.0024461614119026445) + +[fips3103942985] +centroid = (0.72971959462482872, -1.6887219411668464) +description = St. Charles township, NE +station = ('kfet', 0.007017586996622676) +zone = ('nez033', 0.001902092625201617) + +[fips3103944910] +centroid = (0.72917482500540376, -1.6876562954854561) +description = Sherman township, NE +station = ('kfet', 0.0061927660906600573) +zone = ('nez033', 0.0026843993920762726) + +[fips3103950] +centroid = (0.71827791418045472, -1.6743438838823319) +description = Bellevue city, NE +station = ('koff', 0.0007858672748740236) +zone = ('nez053', 0.0024611932389836878) + +[fips3103952575] +centroid = (0.730206332046625, -1.6878366752636496) +description = West Point city, NE +station = ('ktqe', 0.0069113439456779573) +zone = ('nez033', 0.0017337767763804862) + +[fips3103953450] +centroid = (0.73282964917883497, -1.691466995014383) +description = Wisner city, NE +station = ('klcg', 0.0045118798867767171) +zone = ('nez033', 0.0020641189652795553) + +[fips3103953485] +centroid = (0.73217652951944623, -1.6924137837737121) +description = Wisner township, NE +station = ('klcg', 0.0050825206040162971) +zone = ('nez032', 0.0029897429612199349) + +[fips3104020] +centroid = (0.72155478730436662, -1.69715729197466) +description = Bellwood village, NE +station = ('kolu', 0.0022461104327078335) +zone = ('nez050', 0.0025074153140027) + +[fips3104055] +centroid = (0.72091622369093933, -1.7790948454890172) +description = Belmar CDP, NE +station = ('koga', 0.0039043226670922881) +zone = ('nez057', 0.0040408068812544436) + +[fips31041] +centroid = (0.72245972306823314, -1.7405621643951874) +description = Custer County, NE +station = ('kbbw', 0.0014045169413403858) +zone = ('nez038', 1.2290116058478953e-05) + +[fips3104100835] +centroid = (0.71948702592635883, -1.7331361724003869) +description = Algernon township, NE +station = ('kbbw', 0.0056860186813813681) +zone = ('nez046', 0.0042679900572686362) + +[fips3104101570] +centroid = (0.72051024265363306, -1.7348021589845857) +description = Ansley township, NE +station = ('kbbw', 0.0040689840818938887) +zone = ('nez046', 0.0056223438825741961) + +[fips3104102130] +centroid = (0.72379624384953278, -1.7482536558758013) +description = Arnold township, NE +station = ('kbbw', 0.0070183872168426706) +zone = ('nez037', 0.0044475028569431543) + +[fips3104104685] +centroid = (0.72143832148338105, -1.7366113498339104) +description = Berwyn township, NE +station = ('kbbw', 0.0024390512914471058) +zone = ('nez038', 0.0031289843017457651) + +[fips3104106610] +centroid = (0.72266073263818542, -1.7390437977591224) +description = Broken Bow city, NE +station = ('kbbw', 0.00049480617942111867) +zone = ('nez038', 0.0011454495669606924) + +[fips3104106645] +centroid = (0.72319946341839836, -1.7390183508586283) +description = Broken Bow township, NE +station = ('kbbw', 8.3998050541864765e-05) +zone = ('nez038', 0.0013616342270308301) + +[fips3104109620] +centroid = (0.72410773276113627, -1.7448396871391452) +description = Cliff township, NE +station = ('kbbw', 0.0045317560647888441) +zone = ('nez038', 0.003610964813589045) + +[fips3104110215] +centroid = (0.72577473163630113, -1.7320835294219241) +description = Comstock township, NE +station = ('kodx', 0.003841961700244317) +zone = ('nez039', 0.0033961995162769378) + +[fips3104110530] +centroid = (0.72776571598051365, -1.7325811227916676) +description = Corner township, NE +station = ('kodx', 0.0044019753622859866) +zone = ('nez027', 0.0044698600426474827) + +[fips3104111930] +centroid = (0.72017754799161793, -1.7419541866467005) +description = Custer township, NE +station = ('kbbw', 0.0037388834871721868) +zone = ('nez038', 0.0025208270881053904) + +[fips3104112630] +centroid = (0.72000212494849991, -1.7447694725433374) +description = Delight township, NE +station = ('kbbw', 0.0053962064466669107) +zone = ('nez038', 0.0040151804730916042) + +[fips3104113575] +centroid = (0.72515363876868633, -1.734140085786134) +description = Douglas Grove township, NE +station = ('kbbw', 0.0041102316075211634) +zone = ('nez038', 0.0055025246428478574) + +[fips3104114170] +centroid = (0.7201765880605292, -1.738948485328671) +description = East Custer township, NE +station = ('kbbw', 0.002971532105349992) +zone = ('nez038', 0.0025863751484440619) + +[fips3104114835] +centroid = (0.71997847573713536, -1.7477538110313227) +description = Elim township, NE +station = ('kbbw', 0.0073440825870049169) +zone = ('nez037', 0.0071024508467543773) + +[fips3104114940] +centroid = (0.717480927030824, -1.733559693996676) +description = Elk Creek township, NE +station = ('kbbw', 0.0069574858141627435) +zone = ('nez046', 0.0049882446137686914) + +[fips3104118160] +centroid = (0.72443257344151746, -1.7370520803766238) +description = Garfield township, NE +station = ('kbbw', 0.0019050730144241268) +zone = ('nez038', 0.0032761510838525613) + +[fips3104119770] +centroid = (0.71753440391910517, -1.7449808493690464) +description = Grant township, NE +station = ('klxn', 0.0062011180711064361) +zone = ('nez060', 0.0047203822608253348) + +[fips3104121590] +centroid = (0.72698572833779729, -1.7471577461851815) +description = Hayes township, NE +station = ('kbbw', 0.0072561750580164468) +zone = ('nez026', 0.0048265726864638548) + +[fips3104125370] +centroid = (0.72411228807048389, -1.7418137225485) +description = Kilfoil township, NE +station = ('kbbw', 0.0023666204495837112) +zone = ('nez038', 0.0018991272888046048) + +[fips3104127120] +centroid = (0.72599776726141352, -1.7371119975298448) +description = Lillian township, NE +station = ('kbbw', 0.0031580362323972815) +zone = ('nez038', 0.0043696647649211461) + +[fips3104129365] +centroid = (0.71804568067018437, -1.7374750609208449) +description = Loup township, NE +station = ('kbbw', 0.0052181682181015529) +zone = ('nez038', 0.0049883997786234462) + +[fips3104132025] +centroid = (0.72783928160848521, -1.7390011419122038) +description = Milburn township, NE +station = ('kbbw', 0.0046914992623161298) +zone = ('nez027', 0.0043953345065361462) + +[fips3104133495] +centroid = (0.72208987034644301, -1.7324913081483599) +description = Myrtle township, NE +station = ('kodx', 0.0059184046067832039) +zone = ('nez046', 0.004618667994650185) + +[fips3104142880] +centroid = (0.72193612429263476, -1.7420852608735251) +description = Ryno township, NE +station = ('kbbw', 0.0026592924573320118) +zone = ('nez038', 0.0012691734753415887) + +[fips3104143720] +centroid = (0.72733498617441394, -1.7343325083361665) +description = Sargent township, NE +station = ('kbbw', 0.0054189943167356263) +zone = ('nez027', 0.0043402972488111339) + +[fips3104146450] +centroid = (0.72391642722182514, -1.732702684974069) +description = Spring Creek township, NE +station = ('kodx', 0.0049098075877860893) +zone = ('nez039', 0.004157994327994542) + +[fips3104149180] +centroid = (0.72195942443814898, -1.7452349693081368) +description = Triumph township, NE +station = ('kbbw', 0.0048767716876158031) +zone = ('nez038', 0.0035526648961098752) + +[fips3104150685] +centroid = (0.72668294861916138, -1.7416690173002172) +description = Victoria township, NE +station = ('kbbw', 0.004086547993177426) +zone = ('nez038', 0.0042987520736899832) + +[fips3104151805] +centroid = (0.7175392384811331, -1.7479748569810876) +description = Wayne township, NE +station = ('klxn', 0.0074640497270221226) +zone = ('nez060', 0.0060818628262099567) + +[fips3104152365] +centroid = (0.72281201777774828, -1.7347262720687089) +description = Westerville township, NE +station = ('kbbw', 0.0031697608714611092) +zone = ('nez038', 0.0043808755848973053) + +[fips3104152715] +centroid = (0.72763437995430102, -1.7365972126669693) +description = West Union township, NE +station = ('kbbw', 0.0048138105248203009) +zone = ('nez027', 0.0039437037425462014) + +[fips3104153625] +centroid = (0.71792251278487107, -1.7417570517076877) +description = Wood River township, NE +station = ('kbbw', 0.0056409720427943628) +zone = ('nez060', 0.0046191786793631411) + +[fips3104160] +centroid = (0.70257591993854762, -1.7027031803926271) +description = Belvidere village, NE +station = ('khjh', 0.0018294392438004557) +zone = ('nez087', 0.0014538416599721579) + +[fips3104195] +centroid = (0.71569400658275462, -1.7035688986082014) +description = Benedict village, NE +station = ('kjyr', 0.0019233608313250113) +zone = ('nez064', 0.0023329572994343511) + +[fips3104230] +centroid = (0.69903457707308092, -1.7721269849695729) +description = Benkelman city, NE +station = ('ksyf', 0.0061473272800945805) +zone = ('nez079', 0.0029770428123251994) + +[fips31043] +centroid = (0.73985302862178537, -1.6853344141683579) +description = Dakota County, NE +station = ('ksux', 0.0023136411105439104) +zone = ('nez014', 2.8728233061943209e-05) + +[fips3104300] +centroid = (0.71003111129173391, -1.6843130998499682) +description = Bennet village, NE +station = ('klnk', 0.0043648481308575663) +zone = ('nez066', 0.0030158978636693405) + +[fips3104390590] +centroid = (0.74121899310756623, -1.6836974873162049) +description = Covington precinct, NE +station = ('ksux', 0.0018526110162923935) +zone = ('nez014', 0.0018329266723074392) + +[fips3104390640] +centroid = (0.74009950401875202, -1.6837702326394279) +description = Dakota precinct, NE +station = ('ksux', 0.0012129151631936883) +zone = ('nez014', 0.0012047420647903096) + +[fips3104390642] +centroid = (0.7403105492319032, -1.6828108426028994) +description = Dakota City city, NE +station = ('ksux', 0.00073327365968217976) +zone = ('nez014', 0.0019418404362808437) + +[fips3104390910] +centroid = (0.73858290016523165, -1.6873245782078219) +description = Emerson precinct, NE +station = ('ksux', 0.0039521833522772375) +zone = ('nez014', 0.0019307498735613865) + +[fips3104391475] +centroid = (0.73971519997075541, -1.6862622835585956) +description = Hubbard precinct, NE +station = ('ksux', 0.0029958505413012404) +zone = ('nez014', 0.00067554633543725378) + +[fips3104392235] +centroid = (0.73841086306086245, -1.6837766030911978) +description = Omadi precinct, NE +station = ('ksux', 0.0017559532761520715) +zone = ('nez014', 0.0018706936146521622) + +[fips3104392825] +centroid = (0.74103767085157657, -1.6865143614624614) +description = St. Johns precinct, NE +station = ('ksux', 0.0034389510059860324) +zone = ('nez014', 0.0014457431404612338) + +[fips3104393018] +centroid = (0.74113142993899372, -1.6827564581434074) +description = South Sioux City city, NE +station = ('ksux', 0.0014602784426943128) +zone = ('nez014', 0.0023082201961203029) + +[fips3104405] +centroid = (0.72200112035397912, -1.6783331655003229) +description = Bennington city, NE +station = ('kbta', 0.001062915041221614) +zone = ('nez052', 0.0012655060430413012) + +[fips31045] +centroid = (0.74545131182389734, -1.8000430900229092) +description = Dawes County, NE +station = ('kcdr', 0.0021777060592157635) +zone = ('nez002', 0.00014826332364733456) + +[fips3104545] +centroid = (0.73674325332045953, -1.79739214432864) +description = Berea CDP, NE +station = ('kaia', 0.0036920926260120093) +zone = ('nez003', 0.0013342002128438263) + +[fips3104592472] +centroid = (0.74753425756639758, -1.7976463515341932) +description = Precinct 01, NE +station = ('kcdr', 0.0013122043752724515) +zone = ('nez002', 0.0026196280281163007) + +[fips3104592482] +centroid = (0.74755240899061826, -1.7991298639450957) +description = Precinct 02, NE +station = ('kcdr', 0.0002254170257276929) +zone = ('nez002', 0.0020670300751073935) + +[fips3104592492] +centroid = (0.7474711290073528, -1.7976130157454799) +description = Precinct 03, NE +station = ('kcdr', 0.0013404469660976215) +zone = ('nez002', 0.002590243683774677) + +[fips3104592502] +centroid = (0.7473875626427674, -1.7976151101405824) +description = Precinct 04, NE +station = ('kcdr', 0.0013485046204921695) +zone = ('nez002', 0.0025294794915926779) + +[fips3104592512] +centroid = (0.74732209534252503, -1.7977935700565988) +description = Precinct 05, NE +station = ('kcdr', 0.0012313578458205781) +zone = ('nez002', 0.0023910252621079119) + +[fips3104592522] +centroid = (0.74724580700092036, -1.7973918650759597) +description = Precinct 06, NE +station = ('kcdr', 0.0015355494765573218) +zone = ('nez002', 0.0025544359809006557) + +[fips3104592532] +centroid = (0.74259637204665507, -1.7997190172873989) +description = Precinct 07, NE +station = ('kcdr', 0.0049907089786441101) +zone = ('nez002', 0.0030130420782924555) + +[fips3104592542] +centroid = (0.74635143047902841, -1.7986960798128051) +description = Precinct 08, NE +station = ('kcdr', 0.0013451948660967857) +zone = ('nez002', 0.0012480503646363232) + +[fips3104592547] +centroid = (0.74588247796231, -1.8017719782733499) +description = Precinct 09, NE +station = ('kcdr', 0.0024153252110609802) +zone = ('nez002', 0.0012945706445030812) + +[fips3104592557] +centroid = (0.74334934199255054, -1.8040160353591015) +description = Precinct 10, NE +station = ('kcdr', 0.005408692966728126) +zone = ('nez002', 0.0036824795085890899) + +[fips3104592562] +centroid = (0.74792775949955215, -1.8048476672943843) +description = Precinct 11, NE +station = ('kcdr', 0.0039840263604665783) +zone = ('nez002', 0.0042197650598935427) + +[fips3104615] +centroid = (0.70731735119768546, -1.7389131598646106) +description = Bertrand village, NE +station = ('khde', 0.0041870007785333712) +zone = ('nez072', 0.0026387910582919248) + +[fips3104650] +centroid = (0.72170851590488228, -1.7366132696960876) +description = Berwyn village, NE +station = ('kbbw', 0.0022566148518699167) +zone = ('nez038', 0.0030491255682782207) + +[fips31047] +centroid = (0.71327030275709524, -1.7421030806851883) +description = Dawson County, NE +station = ('klxn', 0.0014222468242300662) +zone = ('nez060', 7.2302866428630434e-05) + +[fips3104790595] +centroid = (0.71376079263678305, -1.7418032331196953) +description = Coyote precinct, NE +station = ('klxn', 0.0018420893181871512) +zone = ('nez060', 0.00052917027956916559) + +[fips3104790598] +centroid = (0.71316411692540382, -1.745091468337038) +description = Cozad city, NE +station = ('klxn', 0.0030216734695869196) +zone = ('nez060', 0.0022077099649418235) + +[fips3104790600] +centroid = (0.71279545102750508, -1.7440658430553959) +description = Cozad precinct, NE +station = ('klxn', 0.0021631726180889582) +zone = ('nez060', 0.0015185899398071591) + +[fips3104790955] +centroid = (0.71277386130465792, -1.747643488769304) +description = Fairview precinct, NE +station = ('klxn', 0.0047677804642717366) +zone = ('nez060', 0.0041684315746782089) + +[fips3104790990] +centroid = (0.71110689733607813, -1.7482359233306008) +description = Farnam precinct, NE +station = ('klxn', 0.0052130884543104949) +zone = ('nez071', 0.0047910235470333042) + +[fips3104791100] +centroid = (0.71553834066676925, -1.7473488771915675) +description = German precinct, NE +station = ('klxn', 0.0057356366775991388) +zone = ('nez060', 0.0044945512363766182) + +[fips3104791130] +centroid = (0.71519021729416654, -1.744142044130538) +description = Gillan precinct, NE +station = ('klxn', 0.0038391514001594094) +zone = ('nez060', 0.0023914744153216709) + +[fips3104791169] +centroid = (0.71427034151190283, -1.748015819858632) +description = Gothenburg city, NE +station = ('klxn', 0.0054920116941337641) +zone = ('nez060', 0.0045143993200108526) + +[fips3104791170] +centroid = (0.71428838821636853, -1.7474201215316338) +description = Gothenburg precinct, NE +station = ('klxn', 0.0050959250367924418) +zone = ('nez060', 0.0040796904381837267) + +[fips3104791195] +centroid = (0.71173764187445643, -1.7391395290685943) +description = Grant precinct, NE +station = ('klxn', 0.0017542388908731502) +zone = ('nez060', 0.0027884953519739294) + +[fips3104791570] +centroid = (0.71564295570213388, -1.7397775341766608) +description = Kennebec precinct, NE +station = ('klxn', 0.0039113881650674727) +zone = ('nez060', 0.0029518636599023132) + +[fips3104791728] +centroid = (0.71171203789432957, -1.7409019974538431) +description = Lexington city, NE +station = ('klxn', 0.00046710607362245379) +zone = ('nez060', 0.0018710991667486153) + +[fips3104791730] +centroid = (0.71195324239695523, -1.7417834585392704) +description = Lexington precinct, NE +station = ('klxn', 0.00025961787715750198) +zone = ('nez060', 0.0013935825061287522) + +[fips3104792285] +centroid = (0.71147577267348716, -1.7368212780363403) +description = Overton precinct, NE +station = ('klxn', 0.0035288691015774891) +zone = ('nez073', 0.0046102825002238791) + +[fips3104792385] +centroid = (0.71073072652239577, -1.7417824113417191) +description = Platte precinct, NE +station = ('klxn', 0.0012358231237016932) +zone = ('nez060', 0.002600973839126559) + +[fips3104792745] +centroid = (0.71126127170841702, -1.7449968540382872) +description = Ringgold precinct, NE +station = ('klxn', 0.0027768974352987809) +zone = ('nez060', 0.002960375075270953) + +[fips3104793540] +centroid = (0.71466375617859501, -1.7369772755648836) +description = Wood River precinct, NE +station = ('klxn', 0.0043379029220015465) +zone = ('nez060', 0.0041563380508597399) + +[fips3104895] +centroid = (0.71664793373872471, -1.7815355139150062) +description = Big Springs village, NE +station = ('koga', 0.0041486170997776838) +zone = ('nez056', 0.0035256725855157748) + +[fips31049] +centroid = (0.71755700593291849, -1.7860408719395193) +description = Deuel County, NE +station = ('ksny', 0.0085606333906125352) +zone = ('nez056', 2.9619063257049449e-05) + +[fips3104990250] +centroid = (0.71744842900015182, -1.7828160794404868) +description = Big Springs precinct, NE +station = ('koga', 0.0049881053821753344) +zone = ('nez056', 0.0024482416733707653) + +[fips3104990495] +centroid = (0.71848447389742831, -1.7890329771426758) +description = Chappell precinct, NE +station = ('ksny', 0.006405410945356787) +zone = ('nez056', 0.0024304470451365673) + +[fips3104993150] +centroid = (0.71728668933836948, -1.7870397762303132) +description = Swan precinct, NE +station = ('ksny', 0.0078060155341834036) +zone = ('nez056', 0.0007757122086844751) + +[fips31051] +centroid = (0.74150801963169655, -1.6904536917572601) +description = Dixon County, NE +station = ('klcg', 0.0045495870030574899) +zone = ('nez013', 0.00020571847651708748) + +[fips3105109130] +centroid = (0.7415655980437198, -1.6923033916985237) +description = Clark township, NE +station = ('klcg', 0.0043167989394432005) +zone = ('nez013', 0.0012142692728829951) + +[fips3105110285] +centroid = (0.73986582188520245, -1.692206421205283) +description = Concord township, NE +station = ('klcg', 0.0026296891842221394) +zone = ('nez013', 0.0021146478924346881) + +[fips3105111965] +centroid = (0.74285358121852152, -1.692041574857432) +description = Daily township, NE +station = ('klcg', 0.0056150975370190103) +zone = ('nez013', 0.0015791847564234943) + +[fips3105115745] +centroid = (0.73879398028496779, -1.6886929337946781) +description = Emerson township, NE +station = ('klcg', 0.0033032007046939335) +zone = ('nez014', 0.0026783691946169618) + +[fips3105117915] +centroid = (0.74143459363006514, -1.6901318006833148) +description = Galena township, NE +station = ('klcg', 0.0045723695505392129) +zone = ('nez013', 0.0004434980611014303) + +[fips3105122955] +centroid = (0.74496288143272671, -1.6923600276327508) +description = Hooker township, NE +station = ('kykn', 0.006729548538443173) +zone = ('nez013', 0.0035448608736312528) + +[fips3105128700] +centroid = (0.73843264476992743, -1.6922298784304295) +description = Logan township, NE +station = ('klcg', 0.00121583120603601) +zone = ('nez018', 0.0027202407269518178) + +[fips3105134125] +centroid = (0.74472394585812873, -1.6903885909761607) +description = Newcastle township, NE +station = ('klcg', 0.0076510190458995648) +zone = ('nez013', 0.0030841919876798871) + +[fips3105137665] +centroid = (0.74106556121302347, -1.6886503128543444) +description = Ottercreek township, NE +station = ('klcg', 0.0048192360636053382) +zone = ('nez013', 0.001592147596169158) + +[fips3105139695] +centroid = (0.7428966908510457, -1.6878991929574563) +description = Ponca city, NE +station = ('ksux', 0.0052598599043581287) +zone = ('nez013', 0.0023882724856959521) + +[fips3105139730] +centroid = (0.74322851284843494, -1.6883020847619865) +description = Ponca township, NE +station = ('ksux', 0.0056970409895876926) +zone = ('nez013', 0.0023500578515391396) + +[fips3105140] +centroid = (0.70377688099684488, -1.7208227349012266) +description = Bladen village, NE +station = ('khsi', 0.0052874351748740493) +zone = ('nez085', 0.0028672597671829184) + +[fips3105145365] +centroid = (0.74293007899963648, -1.6901052367720995) +description = Silvercreek township, NE +station = ('klcg', 0.0059757053082595555) +zone = ('nez013', 0.0013474171604101442) + +[fips3105146415] +centroid = (0.73997911120694948, -1.6903402802624654) +description = Springbank township, NE +station = ('klcg', 0.0032120529312541623) +zone = ('nez013', 0.0016837810007124391) + +[fips3105151105] +centroid = (0.73852682273636494, -1.6903554820802502) +description = Wakefield township, NE +station = ('klcg', 0.0021173181758806646) +zone = ('nez013', 0.0031275369013603472) + +[fips31053] +centroid = (0.7256556827280225, -1.6867883432484394) +description = Dodge County, NE +station = ('kfet', 0.0027864449602358417) +zone = ('nez044', 0.00010964662831606809) + +[fips3105310775] +centroid = (0.7243613465547436, -1.6881281452487327) +description = Cotterell township, NE +station = ('kfet', 0.0028466953831831057) +zone = ('nez044', 0.0015828993583768974) + +[fips3105311720] +centroid = (0.72776236494834989, -1.6860840505353822) +description = Cuming township, NE +station = ('kfet', 0.0044762728342017536) +zone = ('nez044', 0.0021888114441115428) + +[fips3105315045] +centroid = (0.72312411755458972, -1.6825079407112158) +description = Elkhorn township, NE +station = ('kfet', 0.0015508215736491258) +zone = ('nez045', 0.0029086066153710764) + +[fips3105316235] +centroid = (0.72640610449321008, -1.6862208843487383) +description = Everett township, NE +station = ('kfet', 0.0032247538170999033) +zone = ('nez044', 0.00091079958597994773) + +[fips3105317670] +centroid = (0.72329388573093134, -1.6840847235173451) +description = Fremont city, NE +station = ('kfet', 0.00036642998586513002) +zone = ('nez044', 0.0031918444075866134) + +[fips3105323060] +centroid = (0.72624288130156356, -1.6841894956323422) +description = Hooper township, NE +station = ('kfet', 0.0028157155098485261) +zone = ('nez044', 0.0021315913443673922) + +[fips3105328735] +centroid = (0.72781818057782854, -1.6841926721315807) +description = Logan township, NE +station = ('ktqe', 0.0042451301203433704) +zone = ('nez044', 0.0029701170244331699) + +[fips3105330450] +centroid = (0.72467623885838839, -1.6864417732188708) +description = Maple township, NE +station = ('kfet', 0.001890538827933889) +zone = ('nez044', 0.0010577474100077525) + +[fips3105334335] +centroid = (0.72462490872508722, -1.6843370283140133) +description = Nickerson township, NE +station = ('kfet', 0.0011950430970185028) +zone = ('nez044', 0.0022057006106564955) + +[fips3105334720] +centroid = (0.72370002384787036, -1.6891884676759044) +description = North Bend city, NE +station = ('kfet', 0.0034983176829489976) +zone = ('nez044', 0.0025925008081932226) + +[fips3105338645] +centroid = (0.72765900655004667, -1.6881337826622167) +description = Pebble township, NE +station = ('kfet', 0.0050063051816524222) +zone = ('nez044', 0.0021838310215748359) + +[fips3105339275] +centroid = (0.72344951674033164, -1.6853698792587586) +description = Platte township, NE +station = ('kfet', 0.0006268929065772371) +zone = ('nez044', 0.0025084577886532989) + +[fips3105339485] +centroid = (0.72617610500438223, -1.6904365351707129) +description = Pleasant Valley township, NE +station = ('kfet', 0.0051980884699931095) +zone = ('nez044', 0.002668352629062776) + +[fips3105341410] +centroid = (0.72628480411019636, -1.6881827391477351) +description = Ridgeley township, NE +station = ('kfet', 0.0039447319917275975) +zone = ('nez044', 0.001119295708472049) + +[fips3105344280] +centroid = (0.72716609066269844, -1.6871081224739897) +description = Scribner city, NE +station = ('kfet', 0.0041955664008075568) +zone = ('nez044', 0.0015039720455538546) + +[fips3105349670] +centroid = (0.72440470053336314, -1.690149533228515) +description = Union township, NE +station = ('kfet', 0.0043169263291128338) +zone = ('nez044', 0.0027180242415308642) + +[fips3105350] +centroid = (0.72503691114831303, -1.6778772854997019) +description = Blair city, NE +station = ('kbta', 0.002130930645883163) +zone = ('nez045', 0.001144876297534265) + +[fips3105351910] +centroid = (0.72776887502645971, -1.6903137687111278) +description = Webster township, NE +station = ('kfet', 0.0061193113034379472) +zone = ('nez044', 0.003285535766012235) + +[fips3105455] +centroid = (0.74348254552106274, -1.7042815165417908) +description = Bloomfield city, NE +station = ('kykn', 0.0065091199242744676) +zone = ('nez011', 0.0032020525183956037) + +[fips3105490] +centroid = (0.69976866255646986, -1.7285459739209343) +description = Bloomington village, NE +station = ('khde', 0.0073537518083935296) +zone = ('nez084', 0.001838776988311155) + +[fips31055] +centroid = (0.72077020944571757, -1.6782050408799341) +description = Douglas County, NE +station = ('kmle', 0.0018506203917817935) +zone = ('nez052', 3.1564173439579482e-05) + +[fips3105560] +centroid = (0.70394345522065516, -1.718247903015637) +description = Blue Hill city, NE +station = ('khsi', 0.0046644865128882204) +zone = ('nez085', 0.0028179213510268306) + +[fips3105590505] +centroid = (0.7197901372575527, -1.6795411253289207) +description = Chicago precinct, NE +station = ('kmle', 0.0017423260602741836) +zone = ('nez052', 0.0013783936443261049) + +[fips3105590735] +centroid = (0.71905423663174184, -1.6760465049275299) +description = Douglas precinct, NE +station = ('kmle', 0.001075885522350858) +zone = ('nez053', 0.0018393253053379916) + +[fips3105590875] +centroid = (0.72178330326333018, -1.6798567855774365) +description = Elkhorn precinct, NE +station = ('kbta', 0.0020302301317986961) +zone = ('nez052', 0.0016181668584180913) + +[fips3105591000] +centroid = (0.72200794459135442, -1.6751138707884343) +description = Florence precinct, NE +station = ('koma', 0.0015575540925622353) +zone = ('nez052', 0.0026492366124521416) + +[fips3105591535] +centroid = (0.72174284653126897, -1.6780832518047297) +description = Jefferson precinct, NE +station = ('kbta', 0.0012250074726687444) +zone = ('nez052', 0.0010084603655311261) + +[fips3105591880] +centroid = (0.72044627633654745, -1.6780169816530317) +description = McArdle precinct, NE +station = ('kmle', 0.0014998410292192683) +zone = ('nez052', 0.00032693123082817285) + +[fips3105591990] +centroid = (0.71925672973155819, -1.6783263238096551) +description = Millard precinct, NE +station = ('kmle', 0.00068915833569649549) +zone = ('nez052', 0.0014847601571799053) + +[fips3105592237] +centroid = (0.72020444351539104, -1.6762478461100401) +description = Omaha city, NE +station = ('kmle', 0.0015149280466786933) +zone = ('nez052', 0.0015690502110271484) + +[fips3105592395] +centroid = (0.7216946405373289, -1.6817157532170282) +description = Platte Valley precinct, NE +station = ('kfet', 0.0027405227644096033) +zone = ('nez052', 0.002800302540738501) + +[fips3105593240] +centroid = (0.72208191164505386, -1.6760892654942039) +description = Union precinct, NE +station = ('kbta', 0.0014131087035531922) +zone = ('nez052', 0.0020835984727222371) + +[fips3105593360] +centroid = (0.72000889682599767, -1.681069335621967) +description = Waterloo precinct, NE +station = ('kmle', 0.0028847021232156211) +zone = ('nez052', 0.0022689631546692467) + +[fips3105630] +centroid = (0.70052615290512787, -1.6870847350620131) +description = Blue Springs city, NE +station = ('kbie', 0.0030698155967746592) +zone = ('nez089', 0.0022049726392581784) + +[fips31057] +centroid = (0.70127617324458746, -1.7746705580082593) +description = Dundy County, NE +station = ('kiml', 0.0059353313713145861) +zone = ('nez079', 0.00011371851118968448) + +[fips3105790205] +centroid = (0.70084394245533099, -1.773201287484053) +description = Benkelman No. 1 precinct, NE +station = ('kiml', 0.0063107466461342458) +zone = ('nez079', 0.0012662007013930507) + +[fips3105790210] +centroid = (0.70028878812685669, -1.7702022707770586) +description = Benkelman No. 2 precinct, NE +station = ('kiml', 0.0073186592821589862) +zone = ('nez079', 0.0036239035147955416) + +[fips3105790215] +centroid = (0.70096002430388116, -1.7759065478246441) +description = Benkelman No. 3 precinct, NE +station = ('kiml', 0.0064455628063222262) +zone = ('nez079', 0.00088920218328033347) + +[fips3105791272] +centroid = (0.70159361372894014, -1.7794613820852287) +description = Haigler precinct, NE +station = ('k2v5', 0.0040428610249814458) +zone = ('nez079', 0.0035905496509942274) + +[fips3105792283] +centroid = (0.70328942799005534, -1.7718957113903913) +description = Ough precinct, NE +station = ('kiml', 0.0040590797436885441) +zone = ('nez079', 0.0030354411069182419) + +[fips31059] +centroid = (0.70729537750240279, -1.7033838413476123) +description = Fillmore County, NE +station = ('kjyr', 0.0064952743810858049) +zone = ('nez077', 6.5276611190930189e-06) + +[fips3105903915] +centroid = (0.70500869947631739, -1.7023830346479338) +description = Belle Prairie township, NE +station = ('khjh', 0.0042675187924783595) +zone = ('nez077', 0.0024036442069173725) + +[fips3105904335] +centroid = (0.70816952565826419, -1.7065216640900178) +description = Bennett township, NE +station = ('kjyr', 0.0059687811779079569) +zone = ('nez077', 0.0025440376307293063) + +[fips3105906925] +centroid = (0.70512657901399711, -1.7065231476198821) +description = Bryant township, NE +station = ('khjh', 0.0050194573727725981) +zone = ('nez077', 0.0032242496553907098) + +[fips3105908955] +centroid = (0.70652457029155213, -1.7023839596724375) +description = Chelsea township, NE +station = ('khjh', 0.0057708566748377607) +zone = ('nez077', 0.0010765378266189816) + +[fips3105916395] +centroid = (0.70969007395589423, -1.7012333339097676) +description = Exeter-Fairmont Consolidated township, NE +station = ('kjyr', 0.0045422903158622565) +zone = ('nez077', 0.0029018569877393135) + +[fips3105917495] +centroid = (0.70491413753744436, -1.700403517116907) +description = Franklin township, NE +station = ('khjh', 0.004649497252402825) +zone = ('nez077', 0.0032821155913263867) + +[fips3105918440] +centroid = (0.70816109571797703, -1.7042305529276325) +description = Geneva township, NE +station = ('kjyr', 0.0056282201979911779) +zone = ('nez077', 0.0010849908411600224) + +[fips3105918965] +centroid = (0.70661215091341723, -1.7005548197097622) +description = Glengary township, NE +station = ('khjh', 0.0061663831661205089) +zone = ('nez077', 0.0022525494131966405) + +[fips3105919490] +centroid = (0.70966656437086983, -1.7064591813027965) +description = Grafton township, NE +station = ('kjyr', 0.0045683168767970614) +zone = ('nez077', 0.0033341973078244548) + +[fips3105920715] +centroid = (0.70500719849316074, -1.7043683815786623) +description = Hamilton township, NE +station = ('khjh', 0.0043097578622669159) +zone = ('nez077', 0.0024028907316555282) + +[fips3105926945] +centroid = (0.70804558982808008, -1.7003993108734095) +description = Liberty township, NE +station = ('kjyr', 0.0063002997851747244) +zone = ('nez077', 0.0023880401632697334) + +[fips3105930205] +centroid = (0.70804183737018822, -1.7023851639496212) +description = Madison township, NE +station = ('kjyr', 0.0058444045269035808) +zone = ('nez077', 0.0010667103295840636) + +[fips3105932515] +centroid = (0.70652666468665437, -1.7063576031403305) +description = Momence township, NE +station = ('khjh', 0.0062188338890375658) +zone = ('nez077', 0.0023889391678663511) + +[fips3105946765] +centroid = (0.70664093139278261, -1.7044483002051114) +description = Stanton township, NE +station = ('khjh', 0.00592769413317671) +zone = ('nez077', 0.0010392406886079971) + +[fips3105952190] +centroid = (0.70962228536774663, -1.7043574034576674) +description = West Blue township, NE +station = ('kjyr', 0.0041776929742302384) +zone = ('nez077', 0.0024480047670028316) + +[fips3105980] +centroid = (0.74552479018540629, -1.6973711995277845) +description = Bow Valley CDP, NE +station = ('kykn', 0.0038929266989862501) +zone = ('nez012', 0.0020267464997005915) + +[fips3106015] +centroid = (0.72007453865916515, -1.6778461488258465) +description = Boys Town village, NE +station = ('kmle', 0.0011074209174195776) +zone = ('nez052', 0.00071873154446196121) + +[fips3106050] +centroid = (0.71355152765946905, -1.7060078217049384) +description = Bradshaw village, NE +station = ('kjyr', 0.0016556821891148272) +zone = ('nez064', 0.0019875650517087429) + +[fips3106085] +centroid = (0.71597402720794456, -1.7517444365528376) +description = Brady village, NE +station = ('klbf', 0.0042664766740045058) +zone = ('nez059', 0.0049915444006630302) + +[fips31061] +centroid = (0.70132919634726298, -1.7272141306220301) +description = Franklin County, NE +station = ('khde', 0.0067890999771139339) +zone = ('nez084', 0.00017366753045209126) + +[fips3106101605] +centroid = (0.70348640584943545, -1.7260645869634963) +description = Antelope township, NE +station = ('khde', 0.0063263433664268827) +zone = ('nez084', 0.0023987797858425631) + +[fips3106102270] +centroid = (0.7012259077621299, -1.7299464610193196) +description = Ash Grove township, NE +station = ('khde', 0.0055515585022587032) +zone = ('nez084', 0.0022128090155725988) + +[fips3106114145] +centroid = (0.69971056054567093, -1.7280303687533103) +description = East Bloomington township, NE +station = ('khde', 0.0076190156205461117) +zone = ('nez084', 0.0016750510835322364) + +[fips3106117530] +centroid = (0.6998167987372399, -1.72702816579023) +description = Franklin city, NE +station = ('khde', 0.007994895935370349) +zone = ('nez084', 0.0013920214958730967) + +[fips3106119805] +centroid = (0.70120810540375966, -1.7240873558137895) +description = Grant township, NE +station = ('khsi', 0.0087345646484551127) +zone = ('nez084', 0.0022639669276647637) + +[fips3106120] +centroid = (0.71875454614588186, -1.6930080683840163) +description = Brainard village, NE +station = ('kolu', 0.0063862480135175367) +zone = ('nez050', 0.0018425250394090505) + +[fips3106127225] +centroid = (0.70349017576061978, -1.7300209167652096) +description = Lincoln township, NE +station = ('khde', 0.0037490860242807458) +zone = ('nez084', 0.0032165856665310375) + +[fips3106130135] +centroid = (0.70196578773863538, -1.7280410850749175) +description = Macon township, NE +station = ('khde', 0.0058928573175616242) +zone = ('nez084', 0.001070390604699223) + +[fips3106130625] +centroid = (0.70121398716333894, -1.726056052303454) +description = Marion township, NE +station = ('khde', 0.0075290228269583072) +zone = ('nez084', 0.00075977513375844851) + +[fips3106134790] +centroid = (0.70349048991988505, -1.7238844089283676) +description = North Franklin township, NE +station = ('khsi', 0.0068037422712468546) +zone = ('nez084', 0.0033236899284046556) + +[fips3106143335] +centroid = (0.70348808136551733, -1.7280421846323462) +description = Salem township, NE +station = ('khde', 0.0049772541597629368) +zone = ('nez084', 0.0024017945070631498) + +[fips3106149355] +centroid = (0.69888692221836224, -1.7299162668232602) +description = Turkey Creek township, NE +station = ('khde', 0.0076619348690334663) +zone = ('nez084', 0.0031929378955243893) + +[fips3106151420] +centroid = (0.69895411739456403, -1.7250198328732527) +description = Washington township, NE +station = ('khde', 0.0096576948872765661) +zone = ('nez084', 0.0027376873760377048) + +[fips3106260] +centroid = (0.73196091154365484, -1.7429727957047494) +description = Brewster village, NE +station = ('kbbw', 0.0093157059284065882) +zone = ('nez026', 0.0015197447367521796) + +[fips3106295] +centroid = (0.72716911008230445, -1.7993726741506331) +description = Bridgeport city, NE +station = ('kbff', 0.0074508794560357505) +zone = ('nez021', 0.001444895945447813) + +[fips31063] +centroid = (0.70739847410131806, -1.7524272093562177) +description = Frontier County, NE +station = ('kmck', 0.0062355305536140613) +zone = ('nez071', 0.00016625237115961645) + +[fips3106390025] +centroid = (0.70502847405674252, -1.7559666672660919) +description = Allen precinct, NE +station = ('kmck', 0.0034238499899478221) +zone = ('nez071', 0.0037039320327885653) + +[fips3106390520] +centroid = (0.70806644651264139, -1.7460035948574224) +description = Clearwater precinct, NE +station = ('klxn', 0.0051932741870013167) +zone = ('nez072', 0.0029168902657427946) + +[fips3106390628] +centroid = (0.7091894437132521, -1.7542524572346607) +description = Curtis city, NE +station = ('kmck', 0.0076274449254420751) +zone = ('nez071', 0.0023808651090741172) + +[fips3106390630] +centroid = (0.70957753512572552, -1.7539376871040637) +description = Curtis precinct, NE +station = ('kmck', 0.0080447460301308841) +zone = ('nez071', 0.0025564433617959272) + +[fips3106390770] +centroid = (0.70655469467444154, -1.7479919437544646) +description = Earl precinct, NE +station = ('klxn', 0.0073283757514350564) +zone = ('nez071', 0.0033120537523440483) + +[fips3106390803] +centroid = (0.70965415507988816, -1.7558203214083123) +description = East Laird precinct, NE +station = ('klbf', 0.0080138957613208588) +zone = ('nez071', 0.003559927511439596) + +[fips3106390960] +centroid = (0.70958807691440762, -1.7460018146215854) +description = Fairview precinct, NE +station = ('klxn', 0.0041802770149024435) +zone = ('nez072', 0.0037009062234421349) + +[fips3106391060] +centroid = (0.70491281108721282, -1.7501033383637721) +description = Garfield precinct, NE +station = ('kmck', 0.005275907035561001) +zone = ('nez071', 0.0029449766982113982) + +[fips3106391200] +centroid = (0.70501456378260419, -1.7480022062904663) +description = Grant precinct, NE +station = ('kmck', 0.0066557618999467331) +zone = ('nez071', 0.0039822978022693604) + +[fips3106391310] +centroid = (0.70502397110727233, -1.7539932583874471) +description = Harrison precinct, NE +station = ('kmck', 0.0035930178400767477) +zone = ('nez071', 0.0027222107253850681) + +[fips3106391465] +centroid = (0.70796687547881509, -1.7501369010452881) +description = Horrell precinct, NE +station = ('kmck', 0.0075502898144717669) +zone = ('nez071', 0.0016793099789520019) + +[fips3106391650] +centroid = (0.70502459942580309, -1.7520129380049643) +description = Knowles precinct, NE +station = ('kmck', 0.0043232558443719402) +zone = ('nez071', 0.0023638195136471292) + +[fips3106391695] +centroid = (0.70800504582955626, -1.7559432274942379) +description = Laws precinct, NE +station = ('kmck', 0.0063911984670272128) +zone = ('nez071', 0.0029044826513572935) + +[fips3106391760] +centroid = (0.7065490747142501, -1.7559960935172807) +description = Lincoln precinct, NE +station = ('kmck', 0.0049406076807696521) +zone = ('nez071', 0.0029977318858246307) + +[fips3106391810] +centroid = (0.70808475501649482, -1.7479933923777438) +description = Logan precinct, NE +station = ('klxn', 0.0062886812513932282) +zone = ('nez071', 0.003279246997252256) + +[fips3106392030] +centroid = (0.70951143950695261, -1.7518275840384026) +description = Moorefield precinct, NE +station = ('klxn', 0.0082376907399108815) +zone = ('nez071', 0.0021474058907074199) + +[fips3106392050] +centroid = (0.70654532225635824, -1.7459993013474628) +description = Muddy precinct, NE +station = ('klxn', 0.0064077166437671923) +zone = ('nez072', 0.0028150408586913238) + +[fips3106392190] +centroid = (0.70656591714153172, -1.7540100135482664) +description = North Star precinct, NE +station = ('kmck', 0.0050740962079099533) +zone = ('nez071', 0.0015947436092942451) + +[fips3106392240] +centroid = (0.70659089280312781, -1.7501461861969085) +description = Orafino precinct, NE +station = ('kmck', 0.0064344441392879355) +zone = ('nez071', 0.0017576198895168731) + +[fips3106392255] +centroid = (0.70506231599093871, -1.757912150876705) +description = Osborn precinct, NE +station = ('kmck', 0.0038972905659265459) +zone = ('nez081', 0.0050481021350597625) + +[fips3106392435] +centroid = (0.70948508503524743, -1.7478223850176335) +description = Plum Creek precinct, NE +station = ('klxn', 0.0054234077930442491) +zone = ('nez071', 0.003938765863079674) + +[fips3106392815] +centroid = (0.7094113972342283, -1.7498641060832014) +description = Russell precinct, NE +station = ('klxn', 0.0068662417725040455) +zone = ('nez071', 0.0026987940614947559) + +[fips3106392930] +centroid = (0.70828080785137137, -1.754047433407429) +description = Sheridan precinct, NE +station = ('kmck', 0.0067510288592253619) +zone = ('nez071', 0.0016598569038488813) + +[fips3106392935] +centroid = (0.7065563003773534, -1.752010616717059) +description = Sherman precinct, NE +station = ('kmck', 0.0056088543193837243) +zone = ('nez071', 0.00084107400093221929) + +[fips3106393115] +centroid = (0.70848113674291524, -1.7518422273508267) +description = Stockville precinct, NE +station = ('kmck', 0.0074058536285826976) +zone = ('nez071', 0.0011323299248248832) + +[fips3106393375] +centroid = (0.70807355000269701, -1.7579858212244317) +description = Weaver precinct, NE +station = ('kmck', 0.0067211090716159062) +zone = ('nez070', 0.004532524749289204) + +[fips3106393428] +centroid = (0.70987476469734023, -1.7580817445201216) +description = West Laird precinct, NE +station = ('klbf', 0.0077923235001257276) +zone = ('nez070', 0.0050922773438126477) + +[fips3106393585] +centroid = (0.70653964993628937, -1.7579765186195189) +description = Zimmer precinct, NE +station = ('kmck', 0.0052643272144584146) +zone = ('nez070', 0.004537169206683545) + +[fips3106400] +centroid = (0.74771261276265877, -1.7206032946543737) +description = Bristow village, NE +station = ('konl', 0.0066544981854280887) +zone = ('nez007', 0.0025590392478565638) + +[fips3106470] +centroid = (0.7260210848602201, -1.7951130061249234) +description = Broadwater village, NE +station = ('kaia', 0.0079192439881441718) +zone = ('nez021', 0.0029147671210324917) + +[fips31065] +centroid = (0.70148257588192831, -1.7437525390013704) +description = Furnas County, NE +station = ('khde', 0.0088934464960373823) +zone = ('nez082', 0.00027437999781354413) + +[fips3106505] +centroid = (0.7065175715212515, -1.6748188752382622) +description = Brock village, NE +station = ('kafk', 0.0025460870552272831) +zone = ('nez091', 0.0021889577870968283) + +[fips3106590075] +centroid = (0.70272970089894082, -1.7437847228727772) +description = Arapahoe precinct, NE +station = ('khde', 0.0083505268973415644) +zone = ('nez082', 0.0015192762432253829) + +[fips3106590175] +centroid = (0.69966549614438445, -1.7418056416740633) +description = Beaver City precinct, NE +station = ('khde', 0.0088461713884902798) +zone = ('nez082', 0.0021699502775915417) + +[fips3106590177] +centroid = (0.70054604965860057, -1.742320566163279) +description = Beaver City city, NE +station = ('khde', 0.0085372942603652493) +zone = ('nez082', 0.0013105322256474759) + +[fips3106590445] +centroid = (0.70278324760039201, -1.7477338444646797) +description = Cambridge precinct, NE +station = ('kmck', 0.0060491712992338026) +zone = ('nez082', 0.0033915058399463494) + +[fips3106590845] +centroid = (0.70275401333542109, -1.7418722085317342) +description = Edison precinct, NE +station = ('khde', 0.0070202132442286659) +zone = ('nez082', 0.0021321725140701171) + +[fips3106591375] +centroid = (0.69985266525336831, -1.7449237596492135) +description = Hendley precinct, NE +station = ('khde', 0.010536808220528934) +zone = ('nez082', 0.0016073361813279462) + +[fips3106591450] +centroid = (0.70267810896625182, -1.7458961698419624) +description = Holbrook precinct, NE +station = ('kmck', 0.007415513307179069) +zone = ('nez082', 0.0021724108114657453) + +[fips3106591455] +centroid = (0.69968514855176189, -1.7398470331874751) +description = Hollinger precinct, NE +station = ('khde', 0.0078574793551196807) +zone = ('nez082', 0.0033843933727457699) + +[fips3106592100] +centroid = (0.70361344836568818, -1.7397029737110157) +description = New Era precinct, NE +station = ('khde', 0.0051556662639999796) +zone = ('nez082', 0.0039429728839915218) + +[fips3106592290] +centroid = (0.70215974617840948, -1.7397487362440029) +description = Oxford precinct, NE +station = ('khde', 0.0059948133853438643) +zone = ('nez083', 0.0037947591191258463) + +[fips3106593525] +centroid = (0.69968434570030602, -1.7477233550358753) +description = Wilsonville precinct, NE +station = ('kmck', 0.0062600689674591967) +zone = ('nez082', 0.0033664741608288363) + +[fips3106610] +centroid = (0.72266073263818542, -1.7390437977591224) +description = Broken Bow city, NE +station = ('kbbw', 0.00049480617942111867) +zone = ('nez038', 0.0011454495669606924) + +[fips3106680] +centroid = (0.73808590020743359, -1.7562232132128428) +description = Brownlee CDP, NE +station = ('ktif', 0.0057564734110220374) +zone = ('nez005', 0.0049208995680271837) + +[fips31067] +centroid = (0.7025863744607671, -1.6874445870471892) +description = Gage County, NE +station = ('kbie', 0.0011813696895671209) +zone = ('nez089', 0.00014000270847997116) + +[fips3106700275] +centroid = (0.70662749235754219, -1.6844377338118532) +description = Adams township, NE +station = ('kbie', 0.0045502372405923606) +zone = ('nez090', 0.0036610607825052449) + +[fips3106703110] +centroid = (0.69884248613560651, -1.686625661108861) +description = Barneston township, NE +station = ('kbie', 0.0047715245042962619) +zone = ('nez089', 0.0039238913786387606) + +[fips3106703390] +centroid = (0.7029068169114332, -1.6885589448680023) +description = Beatrice city, NE +station = ('kbie', 0.00046227036984031531) +zone = ('nez089', 0.00079893376657260589) + +[fips3106705420] +centroid = (0.70336206859352335, -1.6903619921583601) +description = Blakely township, NE +station = ('kbie', 0.0013392153893000086) +zone = ('nez089', 0.002246721240125267) + +[fips3106705682] +centroid = (0.70039073280846564, -1.6865619216845782) +description = Blue Springs-Wymore township, NE +station = ('kbie', 0.0033613766448346047) +zone = ('nez089', 0.0024312617851550938) + +[fips3106709305] +centroid = (0.70648945426700194, -1.690461580645479) +description = Clatonia township, NE +station = ('kbie', 0.0034267727975880484) +zone = ('nez089', 0.0043899183461684425) + +[fips3106715290] +centroid = (0.7005650388408623, -1.6903583444202235) +description = Elm township, NE +station = ('kbie', 0.0031056561126728641) +zone = ('nez089', 0.0030301219312084998) + +[fips3106716865] +centroid = (0.70332749362104141, -1.6847418225274282) +description = Filley township, NE +station = ('kbie', 0.0029474484550067038) +zone = ('nez089', 0.0022291278047893892) + +[fips3106719175] +centroid = (0.69887779414637441, -1.6907038323456558) +description = Glenwood township, NE +station = ('kbie', 0.0047674517903385323) +zone = ('nez089', 0.0045225330223409525) + +[fips3106719840] +centroid = (0.70484184599982669, -1.6903945949087875) +description = Grant township, NE +station = ('kbie', 0.0020078563966271887) +zone = ('nez089', 0.0030480181541048092) + +[fips3106720890] +centroid = (0.70499447504291368, -1.6864912358498723) +description = Hanover township, NE +station = ('kbie', 0.002290043213537657) +zone = ('nez089', 0.0024288922572068771) + +[fips3106722395] +centroid = (0.70638157546593627, -1.6883008979380951) +description = Highland township, NE +station = ('kbie', 0.0030228363079435015) +zone = ('nez089', 0.0037234721789418989) + +[fips3106722850] +centroid = (0.70494581526336808, -1.6884756577560973) +description = Holt township, NE +station = ('kbie', 0.0015812527879039903) +zone = ('nez089', 0.0023522579348902069) + +[fips3106722990] +centroid = (0.70500643054828982, -1.684567865560882) +description = Hooker township, NE +station = ('kbie', 0.0034867499387494366) +zone = ('nez089', 0.0032348044033648259) + +[fips3106724250] +centroid = (0.70033119962768009, -1.6844820826281464) +description = Island Grove township, NE +station = ('kbie', 0.0043747129879205876) +zone = ('nez089', 0.0033322536843316702) + +[fips3106727015] +centroid = (0.69903717761366646, -1.6844349063784649) +description = Liberty township, NE +station = ('kbie', 0.0053768444403684184) +zone = ('nez092', 0.0039130040475975972) + +[fips3106727260] +centroid = (0.70183359650108934, -1.6903661285886877) +description = Lincoln township, NE +station = ('kbie', 0.0020390435529046491) +zone = ('nez089', 0.0023211942516596926) + +[fips3106728805] +centroid = (0.7034184776349478, -1.68645638162471) +description = Logan township, NE +station = ('kbie', 0.0016402360604751715) +zone = ('nez089', 0.0010973006113691604) + +[fips3106731920] +centroid = (0.70359227752186149, -1.6885184532293562) +description = Midland township, NE +station = ('kbie', 0.00023431325275183277) +zone = ('nez089', 0.0011579549616555216) + +[fips3106733915] +centroid = (0.70658408601904499, -1.6864662601882763) +description = Nemaha township, NE +station = ('kbie', 0.0036057179930692965) +zone = ('nez089', 0.0039676780745421273) + +[fips3106737980] +centroid = (0.69891200259971342, -1.6886448848803706) +description = Paddock township, NE +station = ('kbie', 0.0044557847573812783) +zone = ('nez089', 0.003882542896741622) + +[fips3106741620] +centroid = (0.70187747407848444, -1.6887129876277835) +description = Riverside township, NE +station = ('kbie', 0.0014924473588442014) +zone = ('nez089', 0.0012139824287838439) + +[fips3106742040] +centroid = (0.70187005642916345, -1.6865902658316305) +description = Rockford township, NE +station = ('kbie', 0.0021469573630411936) +zone = ('nez089', 0.0011073914870437611) + +[fips3106744945] +centroid = (0.70201174225784047, -1.6845169543066012) +description = Sherman township, NE +station = ('kbie', 0.003402290876252257) +zone = ('nez089', 0.0024136411191138965) + +[fips3106745260] +centroid = (0.70036432597688303, -1.6883753885905703) +description = Sicily township, NE +station = ('kbie', 0.003008523399536799) +zone = ('nez089', 0.0024225654366816984) + +[fips3106750] +centroid = (0.70507142660963407, -1.6696009167334522) +description = Brownville village, NE +station = ('kafk', 0.0043316259436793876) +zone = ('nez091', 0.0024981065896518204) + +[fips3106785] +centroid = (0.71723780266602122, -1.7782898996379977) +description = Brule village, NE +station = ('koga', 0.0016325527449427403) +zone = ('nez057', 0.0034954337707239205) + +[fips3106820] +centroid = (0.70399160885471779, -1.7028259119456275) +description = Bruning village, NE +station = ('khjh', 0.0032167615638512251) +zone = ('nez087', 0.0028115521090163833) + +[fips3106855] +centroid = (0.72052612514982617, -1.6922870728700177) +description = Bruno village, NE +station = ('kolu', 0.005681744000704105) +zone = ('nez050', 0.0024524975946313347) + +[fips3106890] +centroid = (0.7389323499880659, -1.7099297161605096) +description = Brunswick village, NE +station = ('kofk', 0.0093153809565843706) +zone = ('nez016', 0.003062854847522385) + +[fips31069] +centroid = (0.72709336279276793, -1.7859645137847444) +description = Garden County, NE +station = ('kaia', 0.0091701857239909305) +zone = ('nez022', 0.00070404107788764553) + +[fips3106990285] +centroid = (0.72587953865788346, -1.7825028801062166) +description = Blue Creek precinct, NE +station = ('koga', 0.0094704689633134317) +zone = ('nez022', 0.0027311940466918272) + +[fips3106991790] +centroid = (0.72802969702987774, -1.7896914898694534) +description = Lisco precinct, NE +station = ('kaia', 0.0067711790983301916) +zone = ('nez022', 0.003148027703800503) + +[fips3106991860] +centroid = (0.72709336279276793, -1.7859645137847444) +description = Lost Creek precinct, NE +station = ('kaia', 0.0091701857239909305) +zone = ('nez022', 0.00070404107788764553) + +[fips3106992270] +centroid = (0.72110754668354315, -1.789034355952785) +description = Oshkosh No. 1 precinct, NE +station = ('ksny', 0.0073389706706896655) +zone = ('nez056', 0.0042158582716819697) + +[fips3107065] +centroid = (0.70073889108765341, -1.681604139411363) +description = Burchard village, NE +station = ('kbie', 0.0059574402591679064) +zone = ('nez092', 0.0015246037774391463) + +[fips31071] +centroid = (0.73139020633154517, -1.7265320210437658) +description = Garfield County, NE +station = ('kodx', 0.0050545883451900472) +zone = ('nez028', 0.00090141541582115878) + +[fips3107190400] +centroid = (0.73119314120570256, -1.7270864248806617) +description = Bryan precinct, NE +station = ('kodx', 0.0048456810082388897) +zone = ('nez028', 0.00059039548945932123) + +[fips3107190422] +centroid = (0.72919822987067295, -1.7302174757455693) +description = Burwell city, NE +station = ('kodx', 0.0037261367439071244) +zone = ('nez028', 0.0029901137637219923) + +[fips3107190755] +centroid = (0.72939096657997071, -1.7252948618567818) +description = Dry Cedar precinct, NE +station = ('kodx', 0.0032996097241248363) +zone = ('nez028', 0.0028121370703417898) + +[fips3107190930] +centroid = (0.73319808818393095, -1.7255156634604518) +description = Erina precinct, NE +station = ('kodx', 0.0069393819083929022) +zone = ('nez028', 0.002332784356643094) + +[fips3107191390] +centroid = (0.73357605668674286, -1.7304577901302762) +description = Highland precinct, NE +station = ('kodx', 0.0076729220904379067) +zone = ('nez028', 0.0028741143574330147) + +[fips3107191620] +centroid = (0.73212094078277024, -1.7299154465185118) +description = Kinkaid precinct, NE +station = ('kodx', 0.0061679872415496568) +zone = ('nez028', 0.001728586699144385) + +[fips3107191980] +centroid = (0.72947406170565821, -1.7278680880394597) +description = Midvale precinct, NE +station = ('kodx', 0.0031921757836315006) +zone = ('nez028', 0.0020711878924134309) + +[fips3107192775] +centroid = (0.72989035763884391, -1.7307350880418333) +description = Rockford precinct, NE +station = ('kodx', 0.0045064797651238001) +zone = ('nez028', 0.0027841696534699123) + +[fips3107192785] +centroid = (0.73124403500669066, -1.7243477065783097) +description = Roosevelt precinct, NE +station = ('kodx', 0.0052817535790174045) +zone = ('nez028', 0.002531830949558461) + +[fips3107193515] +centroid = (0.73022834064849262, -1.7297426065626866) +description = Willow Springs precinct, NE +station = ('kodx', 0.0043860758541413572) +zone = ('nez028', 0.0019955010773899909) + +[fips3107205] +centroid = (0.70748574056391789, -1.6807481426797224) +description = Burr village, NE +station = ('kbie', 0.0072628112220554739) +zone = ('nez090', 0.0025443749585338199) + +[fips31073] +centroid = (0.70703005254951468, -1.7422588338676361) +description = Gosper County, NE +station = ('klxn', 0.0049481950459103266) +zone = ('nez072', 0.00012337325957218213) + +[fips3107310] +centroid = (0.74895441452545275, -1.7382057255588999) +description = Burton village, NE +station = ('kanw', 0.0077624400027727245) +zone = ('nez006', 0.0016456143990798435) + +[fips3107345] +centroid = (0.72919822987067295, -1.7302174757455693) +description = Burwell city, NE +station = ('kodx', 0.0037261367439071244) +zone = ('nez028', 0.0029901137637219923) + +[fips3107390235] +centroid = (0.70968688000336311, -1.7419317417125197) +description = Bethel precinct, NE +station = ('klxn', 0.0022828060253252281) +zone = ('nez072', 0.0025921145795634181) + +[fips3107390335] +centroid = (0.70960450046266887, -1.7440722484137505) +description = Brace precinct, NE +station = ('klxn', 0.00307036483150269) +zone = ('nez072', 0.0028021227495144845) + +[fips3107390805] +centroid = (0.70654041788116018, -1.7440167643968298) +description = East Muddy precinct, NE +station = ('klxn', 0.0057417094412166338) +zone = ('nez072', 0.0013754168759854807) + +[fips3107390870] +centroid = (0.70501889219914904, -1.7440114236893187) +description = Elk Creek precinct, NE +station = ('klxn', 0.0071902811972686135) +zone = ('nez072', 0.0024397167254831759) + +[fips3107390895] +centroid = (0.7077671574525094, -1.7420156396896631) +description = Elwood 7-22 precinct, NE +station = ('klxn', 0.004194736876543574) +zone = ('nez072', 0.00070533957939185744) + +[fips3107390900] +centroid = (0.7081013530976813, -1.7441281862162772) +description = Elwood 7-23 precinct, NE +station = ('klxn', 0.0043452954558105689) +zone = ('nez072', 0.0016570422516705666) + +[fips3107391315] +centroid = (0.70806103599196024, -1.740089389607407) +description = Harrison precinct, NE +station = ('klxn', 0.0040113371108515886) +zone = ('nez072', 0.001976648699685227) + +[fips3107391395] +centroid = (0.70501519210113495, -1.7400810469335826) +description = Highland precinct, NE +station = ('khde', 0.0049584842308670832) +zone = ('nez072', 0.0027315566998411711) + +[fips3107391765] +centroid = (0.70653612437120028, -1.7400849041112296) +description = Lincoln precinct, NE +station = ('khde', 0.0048934241104267888) +zone = ('nez072', 0.0018352386264193811) + +[fips3107392755] +centroid = (0.709445326434887, -1.7401604943211333) +description = Robb precinct, NE +station = ('klxn', 0.0026760663435465106) +zone = ('nez072', 0.0028722638577561421) + +[fips3107393225] +centroid = (0.70654136035895632, -1.7420426922930692) +description = Turkey Creek precinct, NE +station = ('klxn', 0.0054171081827798263) +zone = ('nez072', 0.00062816632138208586) + +[fips3107393245] +centroid = (0.70502032336913567, -1.7420378751843337) +description = Union precinct, NE +station = ('khde', 0.006425207400707642) +zone = ('nez072', 0.0021119147929568342) + +[fips3107393435] +centroid = (0.70514226952397263, -1.7460977379172753) +description = West Muddy precinct, NE +station = ('klxn', 0.0076616247478153762) +zone = ('nez072', 0.0034531281610273006) + +[fips3107415] +centroid = (0.719646880632549, -1.813242194850994) +description = Bushnell village, NE +station = ('kibm', 0.0030707540489576563) +zone = ('nez054', 0.0023918120582290068) + +[fips3107485] +centroid = (0.74896361241061071, -1.725221383495273) +description = Butte village, NE +station = ('konl', 0.0080618113637094761) +zone = ('nez007', 0.0010642114682947316) + +[fips31075] +centroid = (0.73156988797803801, -1.7759925052903047) +description = Grant County, NE +station = ('koga', 0.013896234562425416) +zone = ('nez023', 0.0002132087391554789) + +[fips3107555] +centroid = (0.69821647143950116, -1.7063837481725252) +description = Byron village, NE +station = ('khjh', 0.0035354702745447066) +zone = ('ksz008', 0.003470455163365149) + +[fips3107590090] +centroid = (0.73099920021922093, -1.7804039471477682) +description = Ashby precinct, NE +station = ('koga', 0.013691194440331338) +zone = ('nez023', 0.003540121924042522) + +[fips3107591495] +centroid = (0.73156988797803801, -1.7759925052903047) +description = Hyannis precinct, NE +station = ('koga', 0.013896234562425416) +zone = ('nez023', 0.0002132087391554789) + +[fips3107593480] +centroid = (0.7316310443150279, -1.7717700825908327) +description = Whitman precinct, NE +station = ('ktif', 0.01230452263926325) +zone = ('nez023', 0.0029302791670321538) + +[fips3107625] +centroid = (0.7156801835750789, -1.7209348548523749) +description = Cairo village, NE +station = ('kgri', 0.0038236608741850208) +zone = ('nez062', 0.0026695575973125353) + +[fips3107660] +centroid = (0.7206716856094425, -1.7439384340200001) +description = Callaway village, NE +station = ('kbbw', 0.0045016274647412136) +zone = ('nez038', 0.003114278394928499) + +[fips31077] +centroid = (0.72549148215199488, -1.719682790553579) +description = Greeley County, NE +station = ('kodx', 0.0055414918398638694) +zone = ('nez040', 0.00012231461395895762) + +[fips3107730] +centroid = (0.7030932704354238, -1.7482155378849378) +description = Cambridge city, NE +station = ('kmck', 0.0057592709387866026) +zone = ('nez082', 0.0038621519359815365) + +[fips3107791235] +centroid = (0.72620858558176193, -1.7205277044444696) +description = Greeley precinct, NE +station = ('kodx', 0.0048434817909061463) +zone = ('nez040', 0.0010419061086690939) + +[fips3107792873] +centroid = (0.72408849923277929, -1.7219252244831265) +description = Scotia precinct, NE +station = ('kodx', 0.0044211048159603526) +zone = ('nez040', 0.0022820196765469965) + +[fips3107793028] +centroid = (0.72694781978644396, -1.7174912504250199) +description = Spalding precinct, NE +station = ('kbvn', 0.0047500197157223289) +zone = ('nez040', 0.0021036598977886463) + +[fips3107793530] +centroid = (0.7238766860747573, -1.7171656068931829) +description = Wolbach precinct, NE +station = ('kbvn', 0.0061786087610069271) +zone = ('nez040', 0.0023890276703022414) + +[fips3107870] +centroid = (0.70330379204979931, -1.723190134405217) +description = Campbell village, NE +station = ('khsi', 0.0066162033155397152) +zone = ('nez085', 0.0037290286618248975) + +[fips31079] +centroid = (0.71324665354573069, -1.7191144764425448) +description = Hall County, NE +station = ('kgri', 0.0029673935927073403) +zone = ('nez062', 0.0001258812933229186) + +[fips3107900660] +centroid = (0.71254049333037384, -1.7181111041088659) +description = Alda township, NE +station = ('kgri', 0.0029554518170728803) +zone = ('nez062', 0.0011551265218992012) + +[fips3107907800] +centroid = (0.71413184963575715, -1.7220263837665721) +description = Cameron township, NE +station = ('kear', 0.0054626030179987057) +zone = ('nez062', 0.0022804942159614012) + +[fips3107908325] +centroid = (0.71410888110280091, -1.7182415849237449) +description = Center township, NE +station = ('kgri', 0.0019487138398298898) +zone = ('nez062', 0.0010357518845521038) + +[fips3107913400] +centroid = (0.71170498676415161, -1.7161812935549356) +description = Doniphan township, NE +station = ('kgri', 0.0033028823946070103) +zone = ('nez062', 0.0028131137390208171) + +[fips3107919595] +centroid = (0.71422700498657588, -1.7166700904652492) +description = Grand Island city, NE +station = ('kgri', 0.00094801181567597968) +zone = ('nez062', 0.0020913476669827151) + +[fips3107921135] +centroid = (0.7141343454565876, -1.7200310710058146) +description = Harrison township, NE +station = ('kgri', 0.0032031798149709813) +zone = ('nez062', 0.0010032419634217313) + +[fips3107924390] +centroid = (0.7119535565562205, -1.7221755570577399) +description = Jackson township, NE +station = ('kear', 0.0044370881558505977) +zone = ('nez062', 0.002662317871354152) + +[fips3107925930] +centroid = (0.71569643259041493, -1.7162256772778137) +description = Lake township, NE +station = ('kgri', 0.00072387624813182816) +zone = ('nez062', 0.0032352505725255073) + +[fips3107930870] +centroid = (0.71091489366506622, -1.7204251838042075) +description = Martin township, NE +station = ('khsi', 0.0029606602915352789) +zone = ('nez062', 0.0026181149315500367) + +[fips3107931290] +centroid = (0.71564721430550871, -1.7200252066995279) +description = Mayfield township, NE +station = ('kgri', 0.0031433137367377299) +zone = ('nez062', 0.002373391446312852) + +[fips3107940080] +centroid = (0.71564498028406609, -1.718027363211355) +description = Prairie Creek township, NE +station = ('kgri', 0.0016947188958842704) +zone = ('nez062', 0.0024476211900909491) + +[fips3107945785] +centroid = (0.71552961402050941, -1.7218715556086277) +description = South Loup township, NE +station = ('kgri', 0.0045015180160062332) +zone = ('nez062', 0.0029697484125999567) + +[fips3107945960] +centroid = (0.71124446418772036, -1.7178395308772554) +description = South Platte township, NE +station = ('khsi', 0.0026431155618655317) +zone = ('nez062', 0.0023484877874481278) + +[fips3107951455] +centroid = (0.71384214243321864, -1.7160574798977992) +description = Washington township, NE +station = ('kgri', 0.0011639343750105802) +zone = ('nez062', 0.002415160537897879) + +[fips3107953695] +centroid = (0.71248651029660959, -1.7201036417961124) +description = Wood River township, NE +station = ('kgri', 0.004024216423904289) +zone = ('nez062', 0.0011146799984252163) + +[fips3107975] +centroid = (0.70342568584475851, -1.7048652593634126) +description = Carleton village, NE +station = ('khjh', 0.0029232217908264548) +zone = ('nez087', 0.0025003578364631053) + +[fips3108010] +centroid = (0.73785150248889075, -1.6963012428831419) +description = Carroll village, NE +station = ('klcg', 0.0027710822372317371) +zone = ('nez018', 0.0014853029955525625) + +[fips31081] +centroid = (0.71344076906513743, -1.710805644552208) +description = Hamilton County, NE +station = ('kauh', 0.00046589443942704728) +zone = ('nez063', 6.6089826616835579e-05) + +[fips3108150] +centroid = (0.7225160273899025, -1.6861583317483471) +description = Cedar Bluffs village, NE +station = ('kfet', 0.0015284063164954429) +zone = ('nez051', 0.0030066070082735287) + +[fips3108185] +centroid = (0.71638023513805382, -1.6772919195218756) +description = Cedar Creek village, NE +station = ('kmle', 0.0026263077853372098) +zone = ('nez053', 0.0011862685018282576) + +[fips3108192473] +centroid = (0.71109661734678387, -1.7093728514093685) +description = Precinct 1, NE +station = ('kauh', 0.0027332273976044103) +zone = ('nez063', 0.0025330109301882893) + +[fips3108192483] +centroid = (0.71144023776991661, -1.7132102370225584) +description = Precinct 2, NE +station = ('kauh', 0.0031655536705331748) +zone = ('nez063', 0.0026454269232210311) + +[fips3108192493] +centroid = (0.71341547924427606, -1.7082468173358591) +description = Precinct 3, NE +station = ('kauh', 0.0016034486646292292) +zone = ('nez063', 0.0019531254718763739) + +[fips3108192503] +centroid = (0.71271223372877002, -1.7112001587763288) +description = Precinct 4, NE +station = ('kauh', 0.0012162682324074129) +zone = ('nez063', 0.00072165679595067504) + +[fips3108192513] +centroid = (0.71350227446797776, -1.7141264127068077) +description = Precinct 5, NE +station = ('kgri', 0.0020372542633907051) +zone = ('nez063', 0.0024961130912262235) + +[fips3108192523] +centroid = (0.71408524934472895, -1.7111833338023397) +description = Precinct 6, NE +station = ('kauh', 0.0007377286211818244) +zone = ('nez063', 0.00075697587556368396) + +[fips3108192533] +centroid = (0.71652518473243187, -1.7083410825687595) +description = Precinct 7, NE +station = ('kauh', 0.0031688300739556902) +zone = ('nez048', 0.0028894654627669809) + +[fips3108192543] +centroid = (0.71551249234054726, -1.7104850450219093) +description = Precinct 8, NE +station = ('kauh', 0.0017835528270281125) +zone = ('nez063', 0.0021511221919522389) + +[fips3108220] +centroid = (0.72533977813341166, -1.713028460980963) +description = Cedar Rapids village, NE +station = ('kbvn', 0.0031998445150085053) +zone = ('nez030', 0.0027940739013190396) + +[fips31083] +centroid = (0.70125175608835211, -1.7349169318361968) +description = Harlan County, NE +station = ('khde', 0.0048249341224519873) +zone = ('nez083', 4.2574424724462559e-05) + +[fips3108300520] +centroid = (0.70349352679278354, -1.7359302874531972) +description = Albany township, NE +station = ('khde', 0.0030188851072973761) +zone = ('nez083', 0.0024038796896464197) + +[fips3108300975] +centroid = (0.69989790418758002, -1.7342590125213651) +description = Alma city, NE +station = ('khde', 0.006103035939499085) +zone = ('nez083', 0.0014129695799942423) + +[fips3108301010] +centroid = (0.70058058972449755, -1.7338006192466211) +description = Alma township, NE +station = ('khde', 0.0054057075898056861) +zone = ('nez083', 0.0010742300150257198) + +[fips3108301640] +centroid = (0.7034909437054907, -1.7319929642870382) +description = Antelope township, NE +station = ('khde', 0.0028111055113886618) +zone = ('nez083', 0.0032007376732342821) + +[fips3108314695] +centroid = (0.69879668869603417, -1.735794535743977) +description = Eldorado township, NE +station = ('khde', 0.0073656611978179486) +zone = ('nez083', 0.0025028661749660619) + +[fips3108315780] +centroid = (0.70193536664977318, -1.7379143952001568) +description = Emerson township, NE +station = ('khde', 0.0051726560692543092) +zone = ('nez083', 0.0023860144473089083) + +[fips3108316515] +centroid = (0.6989277280162739, -1.7378825080347229) +description = Fairfield township, NE +station = ('khde', 0.0077483002444726119) +zone = ('nez083', 0.0032080570394954679) + +[fips3108333180] +centroid = (0.70044873009950948, -1.7319903637464527) +description = Mullally township, NE +station = ('khde', 0.0056873469554382149) +zone = ('nez083', 0.0023784318286647647) + +[fips3108337455] +centroid = (0.70044592011941376, -1.7359080694118192) +description = Orleans township, NE +station = ('khde', 0.0057915249797075748) +zone = ('nez083', 0.0010664957573329162) + +[fips3108340220] +centroid = (0.69878611200076712, -1.7338946575867187) +description = Prairie Dog township, NE +station = ('khde', 0.007201203891901555) +zone = ('nez083', 0.002553858491935357) + +[fips3108341165] +centroid = (0.69886217344956902, -1.732148176417418) +description = Republican City township, NE +station = ('khde', 0.0072205272061928623) +zone = ('nez083', 0.0031739452503279702) + +[fips3108341200] +centroid = (0.70196716654874447, -1.7358466861820265) +description = Reuben township, NE +station = ('khde', 0.0043407172160168763) +zone = ('nez083', 0.0010257495325606712) + +[fips3108343580] +centroid = (0.70044817159414885, -1.737885562360914) +description = Sappa township, NE +station = ('khde', 0.0063943137995289877) +zone = ('nez083', 0.0023791927856919646) + +[fips3108343895] +centroid = (0.70349232251559979, -1.7339668618578736) +description = Scandinavia township, NE +station = ('khde', 0.002502026640596336) +zone = ('nez083', 0.0023974875881546342) + +[fips3108346555] +centroid = (0.70361554276079052, -1.7377350451662219) +description = Spring Grove township, NE +station = ('khde', 0.0038851423294718082) +zone = ('nez083', 0.0032148752064198329) + +[fips3108349390] +centroid = (0.70190948341696602, -1.7320597754908045) +description = Turkey Creek township, NE +station = ('khde', 0.0042622505720330637) +zone = ('nez083', 0.002306096653150241) + +[fips3108351490] +centroid = (0.70196983690250003, -1.7339647674627712) +description = Washington township, NE +station = ('khde', 0.0040211568779373588) +zone = ('nez083', 0.0010611812143385304) + +[fips3108360] +centroid = (0.74366683483678075, -1.7082623507662018) +description = Center village, NE +station = ('kykn', 0.00829024944445606) +zone = ('nez011', 0.00052739502038122866) + +[fips31085] +centroid = (0.70748293058382217, -1.7637525985125313) +description = Hayes County, NE +station = ('kiml', 0.0074510623314703057) +zone = ('nez070', 0.00020874188288886344) + +[fips3108535] +centroid = (0.71756274806615761, -1.7104261925195321) +description = Central City city, NE +station = ('kauh', 0.0038304937672392942) +zone = ('nez048', 0.0011015690479256194) + +[fips3108570] +centroid = (0.71659211810924595, -1.686786353573092) +description = Ceresco village, NE +station = ('kahq', 0.0030666340128239289) +zone = ('nez051', 0.0029411569619795935) + +[fips3108590050] +centroid = (0.70759557413374585, -1.767778165525671) +description = Antelope precinct, NE +station = ('kiml', 0.0044061820679851885) +zone = ('nez070', 0.0029925467352099741) + +[fips3108590255] +centroid = (0.7049936721914577, -1.7618641348085808) +description = Blackwood precinct, NE +station = ('kmck', 0.0059034037488285215) +zone = ('nez070', 0.0027545212563770509) + +[fips3108590570] +centroid = (0.70955969786077022, -1.7619051151394176) +description = Concord precinct, NE +station = ('klbf', 0.0088846931598847139) +zone = ('nez070', 0.0027115541622158338) + +[fips3108590675] +centroid = (0.70954817868770703, -1.767655137266698) +description = Deerfield precinct, NE +station = ('kiml', 0.0050759438785851979) +zone = ('nez070', 0.0036598914183709275) + +[fips3108590950] +centroid = (0.70961396014721467, -1.7640982609708886) +description = Fairfield precinct, NE +station = ('kiml', 0.0075858678075986759) +zone = ('nez070', 0.0023297391836365248) + +[fips3108591105] +centroid = (0.70803206352637704, -1.7599292104399424) +description = Germanville precinct, NE +station = ('kmck', 0.0072397410956097398) +zone = ('nez070', 0.0030783083894550208) + +[fips3108591175] +centroid = (0.70809157925387012, -1.76303394173973) +description = Government precinct, NE +station = ('kiml', 0.0080431544379622622) +zone = ('nez070', 0.0010177073392808123) + +[fips3108591290] +centroid = (0.70565635625514755, -1.7672007058893562) +description = Hamlet precinct, NE +station = ('kiml', 0.0050520322935796716) +zone = ('nez070', 0.0030208475679470896) + +[fips3108591320] +centroid = (0.70961994662654904, -1.7663028212556677) +description = Harrison precinct, NE +station = ('kiml', 0.006029563832037294) +zone = ('nez070', 0.0029767212434262131) + +[fips3108591335] +centroid = (0.70651371434360466, -1.7628492335449917) +description = Hayes Center precinct, NE +station = ('kmck', 0.0074307389138207405) +zone = ('nez070', 0.0010938514353404632) + +[fips3108591400] +centroid = (0.70498878526955222, -1.7599020880233665) +description = Highland precinct, NE +station = ('kmck', 0.0047489750922701636) +zone = ('nez070', 0.003791474186774159) + +[fips3108591440] +centroid = (0.70803770093986107, -1.7658267477956013) +description = High Ridge precinct, NE +station = ('kiml', 0.0059325283810921572) +zone = ('nez070', 0.0016697816416038111) + +[fips3108591460] +centroid = (0.70517098019016788, -1.7636280343638167) +description = Hopewell precinct, NE +station = ('kiml', 0.0078007187563279646) +zone = ('nez070', 0.0021276141477748725) + +[fips3108593160] +centroid = (0.70652708356567495, -1.7658152460758307) +description = Swan Lake precinct, NE +station = ('kiml', 0.0059109892698878865) +zone = ('nez070', 0.0016707974139097404) + +[fips3108593195] +centroid = (0.70650931611388967, -1.7599182846788251) +description = Thornburg precinct, NE +station = ('kmck', 0.0059304793451931594) +zone = ('nez070', 0.0030983519108575561) + +[fips3108593295] +centroid = (0.70933320648373888, -1.7599503638304765) +description = Valley precinct, NE +station = ('kmck', 0.0084191876666900745) +zone = ('nez070', 0.0036043431110041294) + +[fips3108605] +centroid = (0.74745517669798966, -1.7977323439064388) +description = Chadron city, NE +station = ('kcdr', 0.0012547897003258059) +zone = ('nez002', 0.0025187177536398855) + +[fips3108640] +centroid = (0.71874140381661433, -1.6778187471565902) +description = Chalco CDP, NE +station = ('kmle', 0.00036799461687094122) +zone = ('nez053', 0.001211401111431865) + +[fips3108675] +centroid = (0.73661156822839646, -1.7234883064546276) +description = Chambers village, NE +station = ('konl', 0.0046485035299735694) +zone = ('nez010', 0.0044036586993523143) + +[fips31087] +centroid = (0.70121911843133966, -1.7635542767496273) +description = Hitchcock County, NE +station = ('kmck', 0.0061581835304346045) +zone = ('nez080', 2.8838794382227794e-05) + +[fips3108745] +centroid = (0.7063496533939172, -1.775783414845916) +description = Champion CDP, NE +station = ('kiml', 0.0018804175825237034) +zone = ('nez069', 0.0011206725911548573) + +[fips3108780] +centroid = (0.71599127106095428, -1.7132044599827341) +description = Chapman village, NE +station = ('kgri', 0.0022954328044238201) +zone = ('nez048', 0.0030175425101859783) + +[fips3108790240] +centroid = (0.70354867919714659, -1.7639682513949078) +description = Beverly precinct, NE +station = ('kiml', 0.0081323772616738333) +zone = ('nez080', 0.0023649481944131392) + +[fips3108790260] +centroid = (0.70348628367638788, -1.759563406882017) +description = Blackwood precinct, NE +station = ('kmck', 0.0036114492251392983) +zone = ('nez080', 0.0037821285192778742) + +[fips3108790575] +centroid = (0.69891657536235363, -1.7615299915232867) +description = Cornell precinct, NE +station = ('kmck', 0.0053393975398116963) +zone = ('nez080', 0.0027510213853021064) + +[fips3108790625] +centroid = (0.70185759477830434, -1.7594186143672714) +description = Culbertson precinct, NE +station = ('kmck', 0.002994082590881159) +zone = ('nez080', 0.0031986564298457313) + +[fips3108790745] +centroid = (0.6989107634159446, -1.7595552212878252) +description = Driftwood precinct, NE +station = ('kmck', 0.0041133183509133942) +zone = ('nez080', 0.0038040740142284029) + +[fips3108790840] +centroid = (0.70337466987072284, -1.767619043857767) +description = Eden precinct, NE +station = ('kiml', 0.0058830802253609007) +zone = ('nez080', 0.0038061518504893762) + +[fips3108791030] +centroid = (0.69893898538994925, -1.7654773677859372) +description = Freedom precinct, NE +station = ('kmck', 0.0080799718986980379) +zone = ('nez080', 0.002719330636307902) + +[fips3108791210] +centroid = (0.70043415660025521, -1.7615249998816258) +description = Grant precinct, NE +station = ('kmck', 0.0047473757430714983) +zone = ('nez080', 0.0017096228113358393) + +[fips3108791815] +centroid = (0.70042007179319166, -1.7595589737457169) +description = Logan precinct, NE +station = ('kmck', 0.0033192937958569559) +zone = ('nez080', 0.0031278277482954626) + +[fips3108792295] +centroid = (0.70349349188619859, -1.7654794098211619) +description = Palisade precinct, NE +station = ('kiml', 0.0071471662835935028) +zone = ('nez080', 0.0027311780091678517) + +[fips3108792410] +centroid = (0.70348851769783038, -1.7615319986519264) +description = Pleasant Hill precinct, NE +station = ('kmck', 0.0049601286096730415) +zone = ('nez080', 0.0027382726013770705) + +[fips3108792425] +centroid = (0.70022768414974434, -1.7653206372191079) +description = Pleasant View precinct, NE +station = ('kiml', 0.0093398899974945007) +zone = ('nez080', 0.0016907889690255212) + +[fips3108792740] +centroid = (0.70197332756100406, -1.7634986181997809) +description = Ridnour precinct, NE +station = ('kmck', 0.006110591377466828) +zone = ('nez080', 0.00076477090628976699) + +[fips3108792750] +centroid = (0.70197177421796975, -1.7615331156626477) +description = Riverside precinct, NE +station = ('kmck', 0.0046127435752942349) +zone = ('nez080', 0.0016980183066106316) + +[fips3108793090] +centroid = (0.70202528601283598, -1.765585386213343) +description = Starkey precinct, NE +station = ('kiml', 0.0079393682644294632) +zone = ('nez080', 0.0017769789126533461) + +[fips3108793130] +centroid = (0.70035420306722129, -1.7676607397735971) +description = Stratton precinct, NE +station = ('kiml', 0.0081425835979890629) +zone = ('nez080', 0.0032789374248423215) + +[fips3108793215] +centroid = (0.70042679131081176, -1.7634133065059436) +description = Trenton precinct, NE +station = ('kmck', 0.0061564984696142059) +zone = ('nez080', 0.00078609263374242015) + +[fips3108793255] +centroid = (0.69919259918355658, -1.7675600691823419) +description = Union precinct, NE +station = ('ksyf', 0.0087265593188737521) +zone = ('nez080', 0.0036897233462053394) + +[fips3108793275] +centroid = (0.69893430790755395, -1.7635027895366935) +description = Upper Driftwood precinct, NE +station = ('kmck', 0.0066765457811449195) +zone = ('nez080', 0.0022744424577568088) + +[fips3108793380] +centroid = (0.7018563555945353, -1.7675398233630188) +description = Webster precinct, NE +station = ('kiml', 0.0069966323206945109) +zone = ('nez080', 0.0031388062456412613) + +[fips3108885] +centroid = (0.71717847892474584, -1.7884378024144532) +description = Chappell city, NE +station = ('ksny', 0.0067544031543452154) +zone = ('nez056', 0.0018238975699991981) + +[fips31089] +centroid = (0.74105435619922566, -1.7241194175121488) +description = Holt County, NE +station = ('konl', 0.0013123354474063927) +zone = ('nez010', 6.3828725233248861e-05) + +[fips3108901675] +centroid = (0.74141548227475584, -1.7188256419046322) +description = Antelope township, NE +station = ('konl', 0.0026092248909321963) +zone = ('nez010', 0.0039155438227227819) + +[fips3108902585] +centroid = (0.74328815074897558, -1.7275438756776094) +description = Atkinson township, NE +station = ('konl', 0.004368893970924344) +zone = ('nez010', 0.003421465573905201) + +[fips3108903880] +centroid = (0.7445598500018562, -1.7251504009545942) +description = Belle township, NE +station = ('konl', 0.0039571529319072686) +zone = ('nez010', 0.0036506240561675731) + +[fips3108908710] +centroid = (0.73686272110775852, -1.7238271621289023) +description = Chambers township, NE +station = ('konl', 0.0044564198667680919) +zone = ('nez010', 0.0041340452788833949) + +[fips3108909550] +centroid = (0.74665429746412704, -1.7309018018919837) +description = Cleveland township, NE +station = ('konl', 0.0083389524309770268) +zone = ('nez007', 0.0056095484674512633) + +[fips3108909830] +centroid = (0.74634225004716293, -1.7224390668682064) +description = Coleman township, NE +station = ('konl', 0.0051595193465478334) +zone = ('nez007', 0.0025982844415923614) + +[fips3108910320] +centroid = (0.73557601202331069, -1.7241669951875582) +description = Conley township, NE +station = ('konl', 0.0057660734401579015) +zone = ('nez028', 0.0048225539034065235) + +[fips3108912700] +centroid = (0.73522300172880228, -1.7171981747370253) +description = Deloit township, NE +station = ('konl', 0.0070738614907620021) +zone = ('nez029', 0.004095910298942163) + +[fips3108914030] +centroid = (0.74756445176245689, -1.7276920192245186) +description = Dustin township, NE +station = ('konl', 0.0074942661636500782) +zone = ('nez007', 0.0030853340538833612) + +[fips3108915850] +centroid = (0.74083964579464523, -1.7250384904429563) +description = Emmet township, NE +station = ('konl', 0.002013722071557322) +zone = ('nez010', 0.00070713159718548059) + +[fips3108916305] +centroid = (0.73704641701153095, -1.7168010425190263) +description = Ewing township, NE +station = ('konl', 0.0058245589310192275) +zone = ('nez016', 0.0039707343025244925) + +[fips3108916620] +centroid = (0.73835522196430881, -1.7263226338934039) +description = Fairview township, NE +station = ('konl', 0.0040756810716575959) +zone = ('nez010', 0.0031049478191533032) + +[fips3108917390] +centroid = (0.73824439355680727, -1.7290790149277859) +description = Francis township, NE +station = ('konl', 0.0057748130014184879) +zone = ('nez010', 0.0045894075649733157) + +[fips3108919280] +centroid = (0.73850713542240243, -1.7171751189376063) +description = Golden township, NE +station = ('konl', 0.0046651642742295326) +zone = ('nez016', 0.0047733350429236222) + +[fips3108919980] +centroid = (0.74073846905790708, -1.7220182505322579) +description = Grattan township, NE +station = ('konl', 0.00050727576926996637) +zone = ('nez010', 0.0015586950744032936) + +[fips3108920155] +centroid = (0.74066074954631578, -1.729936669722216) +description = Green Valley township, NE +station = ('konl', 0.0056227888631358901) +zone = ('nez009', 0.0042845678348004046) + +[fips3108922885] +centroid = (0.73855363099367566, -1.730957093922687) +description = Holt Creek township, NE +station = ('konl', 0.0068798346025148276) +zone = ('nez009', 0.003976427059841965) + +[fips3108924110] +centroid = (0.73901954663749547, -1.7202603898162341) +description = Inman township, NE +station = ('konl', 0.0026570405843717153) +zone = ('nez010', 0.0034554131182769894) + +[fips3108924145] +centroid = (0.74150576815696145, -1.7169418556830771) +description = Iowa township, NE +station = ('konl', 0.00400118710842061) +zone = ('nez016', 0.0066795502480221517) + +[fips3108924810] +centroid = (0.7356763510020079, -1.7313166841084755) +description = Josie township, NE +station = ('konl', 0.0086200263138335783) +zone = ('nez028', 0.0049195469056904952) + +[fips3108925965] +centroid = (0.73534253932927141, -1.720034579117611) +description = Lake township, NE +station = ('konl', 0.0060863258064263433) +zone = ('nez029', 0.0038025028889974175) + +[fips3108929890] +centroid = (0.73696056426562528, -1.7201279018727151) +description = McClure township, NE +station = ('konl', 0.0045304876669384417) +zone = ('nez010', 0.0049881542844485332) + +[fips3108937105] +centroid = (0.74108458530187016, -1.7217060983955388) +description = O'Neill city, NE +station = ('konl', 0.00048446602512390905) +zone = ('nez010', 0.0017704666128959116) + +[fips3108938015] +centroid = (0.74529770539642937, -1.7209566889213173) +description = Paddock township, NE +station = ('konl', 0.0042403457908414526) +zone = ('nez007', 0.0040262154659255747) + +[fips3108939520] +centroid = (0.74279354189225288, -1.7248110042282516) +description = Pleasant View township, NE +station = ('konl', 0.0024262411461489883) +zone = ('nez010', 0.0018759545068668952) + +[fips3108941935] +centroid = (0.74443868924518275, -1.7229294171215539) +description = Rock Falls township, NE +station = ('konl', 0.0032834763998636288) +zone = ('nez010', 0.0035536150252930081) + +[fips3108943440] +centroid = (0.74556474077198454, -1.727549705077311) +description = Sand Creek township, NE +station = ('konl', 0.0058186502690009897) +zone = ('nez007', 0.0042016132633968372) + +[fips3108943615] +centroid = (0.7466065452557924, -1.7248997891273004) +description = Saratoga township, NE +station = ('konl', 0.0057389796398795052) +zone = ('nez007', 0.002281573577009722) + +[fips3108944175] +centroid = (0.7450918089045715, -1.718665682478687) +description = Scott township, NE +station = ('konl', 0.0047575142316212595) +zone = ('nez007', 0.0052453844331495549) + +[fips3108944525] +centroid = (0.73833675638082275, -1.7231284544694514) +description = Shamrock township, NE +station = ('konl', 0.0029040283692293796) +zone = ('nez010', 0.0027507763389872991) + +[fips3108944805] +centroid = (0.74079531443164459, -1.72719453057453) +description = Sheridan township, NE +station = ('konl', 0.0035959513192564889) +zone = ('nez010', 0.0022899016764072588) + +[fips3108945120] +centroid = (0.74316358660026072, -1.7220828800744592) +description = Shields township, NE +station = ('konl', 0.0019901251212548193) +zone = ('nez010', 0.0026330403834629477) + +[fips3108946975] +centroid = (0.74509456652478967, -1.716840975652312) +description = Steel Creek township, NE +station = ('konl', 0.0056346479459487521) +zone = ('nez007', 0.0062750883830305932) + +[fips3108947535] +centroid = (0.74329504479952091, -1.7306362500462928) +description = Stuart township, NE +station = ('konl', 0.0064621091793165752) +zone = ('nez009', 0.0047468755553881428) + +[fips3108948025] +centroid = (0.73596063023057268, -1.7294013772406294) +description = Swan township, NE +station = ('konl', 0.0073802048353440921) +zone = ('nez028', 0.004589981899950228) + +[fips3108950475] +centroid = (0.73982217120061011, -1.7171710174138641) +description = Verdigris township, NE +station = ('konl', 0.0040571637935722668) +zone = ('nez016', 0.0055436123138273372) + +[fips3108953170] +centroid = (0.74290639488168686, -1.7179543909953292) +description = Willowdale township, NE +station = ('konl', 0.0036691207181089821) +zone = ('nez010', 0.0049199687479619461) + +[fips3108953940] +centroid = (0.73609779565648692, -1.7268889408757986) +description = Wyoming township, NE +station = ('konl', 0.0060932940008783295) +zone = ('nez028', 0.0045974606818980027) + +[fips3109095] +centroid = (0.69830998618082307, -1.7037571149147366) +description = Chester village, NE +station = ('khjh', 0.0025131538141945709) +zone = ('nez087', 0.0029153644040490752) + +[fips31091] +centroid = (0.73161933315574701, -1.7648212636135274) +description = Hooker County, NE +station = ('ktif', 0.0071532921898111506) +zone = ('nez024', 0.00024505494023678722) + +[fips3109165] +centroid = (0.71935961689096328, -1.7076212040654819) +description = Clarks village, NE +station = ('kauh', 0.0059848056545141071) +zone = ('nez048', 0.002725385259785953) + +[fips3109192055] +centroid = (0.73161933315574701, -1.7648212636135274) +description = Mullen precinct, NE +station = ('ktif', 0.0071532921898111506) +zone = ('nez024', 0.00024505494023678722) + +[fips3109200] +centroid = (0.7282111240056226, -1.6950902985415233) +description = Clarkson city, NE +station = ('kolu', 0.0055153336962522137) +zone = ('nez043', 0.0026626588895580527) + +[fips3109270] +centroid = (0.70625392208444537, -1.6903724641338722) +description = Clatonia village, NE +station = ('kbie', 0.0031844637740757668) +zone = ('nez089', 0.0041529551332273899) + +[fips31093] +centroid = (0.7194142980564282, -1.7193814943648074) +description = Howard County, NE +station = ('kgri', 0.0051134539387463779) +zone = ('nez047', 5.0924996895820182e-05) + +[fips3109375] +centroid = (0.70730378998939747, -1.7113816730185363) +description = Clay Center city, NE +station = ('khsi', 0.0051827414829854774) +zone = ('nez076', 5.3428225157739876e-05) + +[fips3109390535] +centroid = (0.71703602515119813, -1.7192934075974593) +description = Cleveland precinct, NE +station = ('kgri', 0.0032397962294675154) +zone = ('nez047', 0.0023915184510572619) + +[fips3109390580] +centroid = (0.72188856407051794, -1.7212775677042964) +description = Cotesfield precinct, NE +station = ('kodx', 0.006187173719110043) +zone = ('nez047', 0.002821486589924079) + +[fips3109390650] +centroid = (0.71765671659308494, -1.7205809893465331) +description = Dannebrog precinct, NE +station = ('kgri', 0.0043866846081384086) +zone = ('nez047', 0.0019630407595552899) + +[fips3109390655] +centroid = (0.72118620867293048, -1.7227538893586809) +description = Dannevirke precinct, NE +station = ('kodx', 0.0060647621772584297) +zone = ('nez047', 0.0030459085251762072) + +[fips3109390855] +centroid = (0.72047179305021158, -1.7207002476943218) +description = Elba precinct, NE +station = ('kgri', 0.0065354569942616906) +zone = ('nez047', 0.0014082268351649459) + +[fips3109390945] +centroid = (0.72132646333162065, -1.7189201689369202) +description = Fairdale-Logan precinct, NE +station = ('kgri', 0.0067072513410700273) +zone = ('nez047', 0.0019426434218935721) + +[fips3109391050] +centroid = (0.71904973368227165, -1.7163550061753867) +description = Gage Valley precinct, NE +station = ('kgri', 0.0040580417953749569) +zone = ('nez047', 0.0023567313027674061) + +[fips3109391565] +centroid = (0.71834592966140487, -1.7223957128895866) +description = Kelso precinct, NE +station = ('kgri', 0.0058988872357254012) +zone = ('nez047', 0.0024668401153743027) + +[fips3109391875] +centroid = (0.71716554603498861, -1.7224345813720285) +description = Loup Fork precinct, NE +station = ('kgri', 0.0053487546260150946) +zone = ('nez047', 0.0031876670172396263) + +[fips3109392460] +centroid = (0.7194994352173405, -1.7221658181205139) +description = Posen precinct, NE +station = ('kgri', 0.0064932315603214389) +zone = ('nez047', 0.0020457766939092261) + +[fips3109392830] +centroid = (0.71715598163068772, -1.7167794877027642) +description = St. Libory precinct, NE +station = ('kgri', 0.0022419620985107656) +zone = ('nez047', 0.0030304061563968475) + +[fips3109392833] +centroid = (0.71932036443608594, -1.7184463120450038) +description = St. Paul city, NE +station = ('kgri', 0.0047094297499099581) +zone = ('nez047', 0.00076050534951245757) + +[fips3109392835] +centroid = (0.71923798489539181, -1.7181866245055994) +description = St. Paul precinct, NE +station = ('kgri', 0.0045580861061314528) +zone = ('nez047', 0.00096689099269359918) + +[fips3109393050] +centroid = (0.72136587286613074, -1.7162860307633478) +description = Spring Creek precinct, NE +station = ('kgri', 0.0063676989219600237) +zone = ('nez047', 0.0030682783324355121) + +[fips3109393345] +centroid = (0.71911708593810608, -1.7201912573245626) +description = Warsaw precinct, NE +station = ('kgri', 0.005210149495544129) +zone = ('nez047', 0.00063833808289299999) + +[fips3109445] +centroid = (0.73601752796418773, -1.7137340277843742) +description = Clearwater village, NE +station = ('kbvn', 0.0079147159698373364) +zone = ('nez016', 0.0015950115850491711) + +[fips31095] +centroid = (0.70119887261201663, -1.695466992953981) +description = Jefferson County, NE +station = ('kbie', 0.0056687192237340773) +zone = ('nez088', 6.7371378100668292e-06) + +[fips3109590055] +centroid = (0.69878326711408634, -1.6967546968761025) +description = Antelope precinct, NE +station = ('khjh', 0.0053322396947695526) +zone = ('nez088', 0.0026106337723467879) + +[fips3109590405] +centroid = (0.69898303750026958, -1.6983235907940128) +description = Buckley precinct, NE +station = ('khjh', 0.0041532980840010636) +zone = ('nez088', 0.003115981431087982) + +[fips3109590620] +centroid = (0.70183521965729367, -1.6944147514012462) +description = Cub Creek precinct, NE +station = ('kbie', 0.0046903963192025354) +zone = ('nez088', 0.0010203176180558239) + +[fips3109590915] +centroid = (0.69892997949100899, -1.6945114775483918) +description = Endicott precinct, NE +station = ('kbie', 0.0063288541257830342) +zone = ('nez088', 0.0023810280090403096) + +[fips3109590935] +centroid = (0.70333915242044465, -1.6983993206302568) +description = Eureka precinct, NE +station = ('khjh', 0.0044739739411492558) +zone = ('nez088', 0.0031023063934019065) + +[fips3109590938] +centroid = (0.70063668460665662, -1.6960499154708546) +description = Fairbury city, NE +station = ('kbie', 0.0063058291924833068) +zone = ('nez088', 0.00072100046849969137) + +[fips3109590940] +centroid = (0.70037076624182282, -1.6963780722768145) +description = Fairbury precinct, NE +station = ('kbie', 0.0066487302078643146) +zone = ('nez088', 0.0010858375609552186) + +[fips3109591115] +centroid = (0.70335580286150867, -1.6942919500350759) +description = Gibson precinct, NE +station = ('kbie', 0.0043364905876312199) +zone = ('nez088', 0.0023340271405705832) + +[fips3109591540] +centroid = (0.70185010731581321, -1.6922947174121412) +description = Jefferson precinct, NE +station = ('kbie', 0.003198043939967025) +zone = ('nez088', 0.0025028450527416193) + +[fips3109591770] +centroid = (0.70042981073041788, -1.69842171320456) +description = Lincoln precinct, NE +station = ('khjh', 0.0036805861866356518) +zone = ('nez088', 0.0023918526866446147) + +[fips3109591955] +centroid = (0.70205740007107265, -1.6984919278003676) +description = Meridian precinct, NE +station = ('khjh', 0.0038236092751782842) +zone = ('nez088', 0.0024712805548928953) + +[fips3109592110] +centroid = (0.69879400088898613, -1.69252562447218) +description = Newton precinct, NE +station = ('kbie', 0.0054671137351853744) +zone = ('nez088', 0.0032880566066658744) + +[fips3109592405] +centroid = (0.7004136838881293, -1.6925061116911428) +description = Pleasant precinct, NE +station = ('kbie', 0.0041947163543340736) +zone = ('nez088', 0.0023888674853856902) + +[fips3109592450] +centroid = (0.70361816075466854, -1.6924225802331423) +description = Plymouth precinct, NE +station = ('kbie', 0.0029211937533192823) +zone = ('nez088', 0.0033503393266557996) + +[fips3109592730] +centroid = (0.70202333124407368, -1.6962765115676413) +description = Richland precinct, NE +station = ('kbie', 0.0060057408612623764) +zone = ('nez088', 0.0010350925695803029) + +[fips3109592760] +centroid = (0.70051547149010573, -1.6946727634245684) +description = Rock Creek precinct, NE +station = ('kbie', 0.005440123478901597) +zone = ('nez088', 0.00090914962043082308) + +[fips3109593350] +centroid = (0.7034791452797472, -1.6964327185356947) +description = Washington precinct, NE +station = ('kbie', 0.0059699032490087133) +zone = ('nez088', 0.0023991361026600906) + +[fips3109655] +centroid = (0.74629790123086981, -1.7863075407959315) +description = Clinton village, NE +station = ('kien', 0.0052404374529999177) +zone = ('nez004', 0.0045178758068271964) + +[fips31097] +centroid = (0.70503372749779103, -1.6802033730602974) +description = Johnson County, NE +station = ('kbie', 0.0066170867308014414) +zone = ('nez090', 6.9684274624862299e-05) + +[fips3109760] +centroid = (0.74940505853831774, -1.7671270355416295) +description = Cody village, NE +station = ('kvtn', 0.0090212655057852441) +zone = ('sdz044', 0.0069383836194032841) + +[fips3109791365] +centroid = (0.70611998551764732, -1.680470757501703) +description = Helena precinct, NE +station = ('kbie', 0.0067809514040605926) +zone = ('nez090', 0.0011637780190884878) + +[fips3109791775] +centroid = (0.70504615424206529, -1.6774380035802674) +description = Lincoln precinct, NE +station = ('kafk', 0.0049572304793333551) +zone = ('nez090', 0.0020583759351919654) + +[fips3109791930] +centroid = (0.70346701524144584, -1.6806370699261255) +description = Maple Grove precinct, NE +station = ('kbie', 0.0060782386169421993) +zone = ('nez090', 0.0015635370706217747) + +[fips3109792075] +centroid = (0.70485163729693046, -1.6790989636162206) +description = Nemaha precinct, NE +station = ('kafk', 0.0060262422300431722) +zone = ('nez090', 0.00080346374274907224) + +[fips3109793055] +centroid = (0.70640344444146375, -1.6781738692994934) +description = Spring Creek precinct, NE +station = ('kafk', 0.0045735398114460811) +zone = ('nez090', 0.0020624305170106531) + +[fips3109793095] +centroid = (0.70638063298814002, -1.6825093718812023) +description = Sterling precinct, NE +station = ('kbie', 0.0055355776520946238) +zone = ('nez090', 0.002281454616429362) + +[fips3109793177] +centroid = (0.70462057315725901, -1.6788110541028114) +description = Tecumseh city, NE +station = ('kafk', 0.006007479433860932) +zone = ('nez090', 0.0010751367274133192) + +[fips3109793210] +centroid = (0.70344183014033956, -1.6782121094634046) +description = Todd Creek precinct, NE +station = ('kafk', 0.0065571336172917756) +zone = ('nez090', 0.0021296612846089494) + +[fips3109793315] +centroid = (0.70463657782649969, -1.6819129579692107) +description = Vesta precinct, NE +station = ('kbie', 0.0052572836961439478) +zone = ('nez090', 0.0013948595813030747) + +[fips3109793420] +centroid = (0.70335391790591661, -1.6823614726803884) +description = Western precinct, NE +station = ('kbie', 0.004762586829321935) +zone = ('nez090', 0.0023504653074017971) + +[fips3109865] +centroid = (0.74187764546068391, -1.6965093384898573) +description = Coleridge village, NE +station = ('klcg', 0.0054323043169128673) +zone = ('nez012', 0.0017407803977578286) + +[fips31099] +centroid = (0.70696776174851106, -1.7269764342312008) +description = Kearney County, NE +station = ('kear', 0.0040214074354408026) +zone = ('nez074', 9.6959509735845433e-06) + +[fips3109905315] +centroid = (0.70845977391287085, -1.7301794275678759) +description = Blaine township, NE +station = ('kear', 0.003026384296554194) +zone = ('nez074', 0.0028560147436123479) + +[fips3109910670] +centroid = (0.70513228624065105, -1.7261967083878724) +description = Cosmo township, NE +station = ('khde', 0.0057705431823733989) +zone = ('nez074', 0.0019342793199646222) + +[fips3109914345] +centroid = (0.70804162793067804, -1.7240529553742328) +description = Eaton township, NE +station = ('kear', 0.0040939090532276052) +zone = ('nez074', 0.0024589284627534024) + +[fips3109919875] +centroid = (0.70500522627110596, -1.7240515067509536) +description = Grant township, NE +station = ('khsi', 0.0058502314938303126) +zone = ('nez074', 0.0029678278080997773) + +[fips3109921625] +centroid = (0.70653017279845098, -1.7280285187043032) +description = Hayes township, NE +station = ('khde', 0.0043443179757498224) +zone = ('nez074', 0.00092091587843090171) + +[fips3109927050] +centroid = (0.70791922799023566, -1.7258767720826893) +description = Liberty township, NE +station = ('kear', 0.0033719883311059662) +zone = ('nez074', 0.001256724027217742) + +[fips3109927295] +centroid = (0.70652739772494022, -1.7260408155790843) +description = Lincoln township, NE +station = ('kear', 0.0046185334284601009) +zone = ('nez074', 0.00083557528875251872) + +[fips3109928840] +centroid = (0.7080522918924077, -1.728028885223446) +description = Logan township, NE +station = ('kear', 0.0028808274252673199) +zone = ('nez074', 0.0013451808747793855) + +[fips3109929610] +centroid = (0.70935479620658615, -1.7245347884208309) +description = Lowell township, NE +station = ('kear', 0.0029836849189907324) +zone = ('nez074', 0.0030131155502529741) + +[fips3109931255] +centroid = (0.70652327874790555, -1.7240536360526411) +description = May township, NE +station = ('kear', 0.0052770168959872894) +zone = ('nez074', 0.0022622177071721637) + +[fips3109932375] +centroid = (0.70653270352586628, -1.7300156982307462) +description = Mirage township, NE +station = ('khde', 0.0028511893270818127) +zone = ('nez074', 0.0023592826335136247) + +[fips3109934055] +centroid = (0.70918218314356385, -1.7276982849565332) +description = Newark township, NE +station = ('kear', 0.0017537820284867067) +zone = ('nez074', 0.0022754791550929914) + +[fips3109937070] +centroid = (0.70501143964324309, -1.7300132896763787) +description = Oneida township, NE +station = ('khde', 0.0029664166453069736) +zone = ('nez074', 0.0030373500273061286) + +[fips3109944980] +centroid = (0.70499958885762204, -1.7280259530703026) +description = Sherman township, NE +station = ('khde', 0.0044260715543663117) +zone = ('nez074', 0.0021333157772556958) + +[fips3110005] +centroid = (0.72078804671067298, -1.686107245961141) +description = Colon village, NE +station = ('kahq', 0.0011921672766269224) +zone = ('nez051', 0.0013189094065047212) + +[fips31101] +centroid = (0.71897798319672213, -1.7740307377577709) +description = Keith County, NE +station = ('koga', 0.0020909010963727249) +zone = ('nez057', 0.0002339134724479443) + +[fips3110110] +centroid = (0.72318895653630144, -1.6991629719911743) +description = Columbus city, NE +station = ('kolu', 0.00037667159968619) +zone = ('nez042', 0.0031862532416333713) + +[fips3110180] +centroid = (0.72530993300320246, -1.7321172491830727) +description = Comstock village, NE +station = ('kodx', 0.0039632986889320682) +zone = ('nez039', 0.0034144079437517841) + +[fips3110190385] +centroid = (0.71804669296115053, -1.7789982938747972) +description = Brule precinct, NE +station = ('koga', 0.0021386961324438864) +zone = ('nez057', 0.0036598691052934073) + +[fips3110191820] +centroid = (0.71723865787735475, -1.7723482403588482) +description = Logan precinct, NE +station = ('koga', 0.0029364040536318378) +zone = ('nez057', 0.0023478700734733044) + +[fips3110191840] +centroid = (0.72088397000636262, -1.7777702103999236) +description = Lonergan precinct, NE +station = ('koga', 0.0034193385924811076) +zone = ('nez057', 0.0031713766496969816) + +[fips3110192218] +centroid = (0.71784685276179716, -1.775360731007668) +description = Ogallala city, NE +station = ('koga', 0.00065685654982951432) +zone = ('nez057', 0.0014379089880549936) + +[fips3110192325] +centroid = (0.71948636270124311, -1.769340601725349) +description = Paxton precinct, NE +station = ('koga', 0.0054735566272089984) +zone = ('nez057', 0.0037740143097950395) + +[fips3110192807] +centroid = (0.71654263802495177, -1.7745199710003974) +description = Rural Ogallala precinct, NE +station = ('koga', 0.0016996401902846048) +zone = ('nez057', 0.0025163853113243954) + +[fips3110193470] +centroid = (0.72156213514051748, -1.7736264845964238) +description = Whitetail precinct, NE +station = ('koga', 0.0043434595502410949) +zone = ('nez057', 0.0025617092379128185) + +[fips3110250] +centroid = (0.73974335213159004, -1.6927825020314886) +description = Concord village, NE +station = ('klcg', 0.0024892784466995165) +zone = ('nez013', 0.0024645369356749982) + +[fips31103] +centroid = (0.74831829437297848, -1.74041354960938) +description = Keya Paha County, NE +station = ('kanw', 0.0062480041636291473) +zone = ('nez006', 9.6727313499489983e-05) + +[fips3110390] +centroid = (0.70704291562610189, -1.6783371797576023) +description = Cook village, NE +station = ('kafk', 0.0044174156928271611) +zone = ('nez068', 0.0024333898140932934) + +[fips3110390635] +centroid = (0.74793756824994828, -1.7398990614524772) +description = Custer precinct, NE +station = ('kanw', 0.006178806355019573) +zone = ('nez006', 0.00053342836808514826) + +[fips3110391065] +centroid = (0.74794336274306494, -1.7429719404934159) +description = Garfield precinct, NE +station = ('kanw', 0.005031455147565601) +zone = ('nez006', 0.0019990941907549191) + +[fips3110391997] +centroid = (0.74870310456645806, -1.7359683530841832) +description = Mills precinct, NE +station = ('kanw', 0.008794093393445444) +zone = ('nez006', 0.0031973910594543476) + +[fips3110392130] +centroid = (0.74867596469658948, -1.746459597031091) +description = Norden precinct, NE +station = ('kanw', 0.0055193820355332992) +zone = ('nez006', 0.0045158307762547915) + +[fips3110495] +centroid = (0.71063476832012107, -1.6991059869910967) +description = Cordova village, NE +station = ('kjyr', 0.0047681914750250676) +zone = ('nez065', 0.0039064637202189311) + +[fips31105] +centroid = (0.7190609037894844, -1.8101002531315538) +description = Kimball County, NE +station = ('kibm', 0.00064567620568271064) +zone = ('nez054', 5.7107700545538036e-05) + +[fips3110590060] +centroid = (0.71906826907892785, -1.8094620211306844) +description = Antelope precinct, NE +station = ('kibm', 0.00030176185395634536) +zone = ('nez054', 0.00053238479878518438) + +[fips3110590425] +centroid = (0.71904475949390356, -1.8137722338915321) +description = Bushnell precinct, NE +station = ('kibm', 0.0033569759631000553) +zone = ('nez054', 0.0027118029252351855) + +[fips3110590724] +centroid = (0.71910706774819966, -1.8059036089451332) +description = Dix precinct, NE +station = ('kibm', 0.0025944375707145292) +zone = ('nez054', 0.0032095762591095684) + +[fips3110591595] +centroid = (0.71962234130326597, -1.8093182758134903) +description = Kimball No. 1 precinct, NE +station = ('kibm', 0.00083759145227408911) +zone = ('nez054', 0.00086785801660332082) + +[fips3110591600] +centroid = (0.71972751484399111, -1.8089786521943447) +description = Kimball No. 2 precinct, NE +station = ('kibm', 0.00097802621968792075) +zone = ('nez054', 0.0011311820935782117) + +[fips3110600] +centroid = (0.72745408744257001, -1.7028637157772255) +description = Cornlea village, NE +station = ('kolu', 0.0050422456201644683) +zone = ('nez042', 0.0020149723826190457) + +[fips3110635] +centroid = (0.70696193234880933, -1.6878400437491061) +description = Cortland village, NE +station = ('kbie', 0.0036412700566264972) +zone = ('nez089', 0.004265073902197684) + +[fips31107] +centroid = (0.74411074187873305, -1.7085263492688587) +description = Knox County, NE +station = ('kykn', 0.0081624679248411963) +zone = ('nez011', 4.4116938121722302e-05) + +[fips3110700310] +centroid = (0.74600405759800392, -1.70452821883156) +description = Addison township, NE +station = ('kykn', 0.0046847792645099791) +zone = ('nez011', 0.0034784416571972689) + +[fips3110705455] +centroid = (0.74348254552106274, -1.7042815165417908) +description = Bloomfield city, NE +station = ('kykn', 0.0065091199242744676) +zone = ('nez011', 0.0032020525183956037) + +[fips3110705735] +centroid = (0.74442359214715303, -1.7127151045670601) +description = Bohemia township, NE +station = ('konl', 0.0078009911891188683) +zone = ('nez011', 0.0030858207762718146) + +[fips3110708465] +centroid = (0.74295636365817141, -1.7065689799660395) +description = Central township, NE +station = ('kykn', 0.0079197719842197655) +zone = ('nez011', 0.0018791595793568277) + +[fips3110709585] +centroid = (0.74131196679681999, -1.7067331281821896) +description = Cleveland township, NE +station = ('kykn', 0.0093114976091043349) +zone = ('nez011', 0.0031372598552483273) + +[fips3110710075] +centroid = (0.74144510051216217, -1.7045168218315445) +description = Columbia township, NE +station = ('kykn', 0.008389303930469957) +zone = ('nez017', 0.0038711016030478001) + +[fips3110711230] +centroid = (0.7411516408517318, -1.7088023556367689) +description = Creighton city, NE +station = ('konl', 0.0099931771777884565) +zone = ('nez011', 0.0030090530434025557) + +[fips3110711265] +centroid = (0.74155407887065661, -1.7084630112703036) +description = Creighton township, NE +station = ('kykn', 0.0098918176561190781) +zone = ('nez011', 0.0026007641297775561) + +[fips3110711440] +centroid = (0.74580737644459671, -1.7016718478843311) +description = Crofton city, NE +station = ('kykn', 0.003550929595836522) +zone = ('nez012', 0.0039148345691149729) + +[fips3110713330] +centroid = (0.74448846603544971, -1.7024752752989016) +description = Dolphin township, NE +station = ('kykn', 0.0049959761419559826) +zone = ('nez011', 0.0044704325617693323) + +[fips3110713645] +centroid = (0.74296933145451372, -1.7024701963907785) +description = Dowling township, NE +station = ('kykn', 0.0064092282270544337) +zone = ('nez012', 0.0037901590371398021) + +[fips3110714205] +centroid = (0.74601191157963787, -1.7024955385715175) +description = Eastern township, NE +station = ('kykn', 0.0036710953116958155) +zone = ('nez011', 0.0048128445947158028) + +[fips3110717425] +centroid = (0.74715161158119014, -1.7024621329696343) +description = Frankfort township, NE +station = ('kykn', 0.0027882618962262167) +zone = ('sdz069', 0.0039833199077225958) + +[fips3110721170] +centroid = (0.7444731594979096, -1.7065684214606789) +description = Harrison township, NE +station = ('kykn', 0.006821784739621954) +zone = ('nez011', 0.0014819456975727213) + +[fips3110722255] +centroid = (0.74712525710948519, -1.7042740465325923) +description = Herrick township, NE +station = ('kykn', 0.0038851861949396548) +zone = ('nez011', 0.0043162499629933087) + +[fips3110722465] +centroid = (0.74649007943480683, -1.7070834855762349) +description = Hill township, NE +station = ('kykn', 0.0060095786593242894) +zone = ('nez011', 0.0025681175863280568) + +[fips3110724600] +centroid = (0.74320945385300319, -1.7124794502114558) +description = Jefferson township, NE +station = ('konl', 0.0075507283867010857) +zone = ('nez011', 0.0030522480708365476) + +[fips3110727330] +centroid = (0.74145056339272086, -1.7024660774137439) +description = Lincoln township, NE +station = ('kykn', 0.0078619017983190768) +zone = ('nez017', 0.0038685305060645) + +[fips3110728875] +centroid = (0.74135090509243196, -1.7127297478794843) +description = Logan township, NE +station = ('konl', 0.0070973232077736264) +zone = ('nez011', 0.0041715659418177934) + +[fips3110732165] +centroid = (0.74130685298211163, -1.7104977684721561) +description = Miller township, NE +station = ('konl', 0.0087427194504138533) +zone = ('nez011', 0.0031931533965217566) + +[fips3110732970] +centroid = (0.74295196542845654, -1.7045268923813286) +description = Morton township, NE +station = ('kykn', 0.0070573289587252102) +zone = ('nez011', 0.0031864843648191144) + +[fips3110734405] +centroid = (0.74585910800362576, -1.7101965944564321) +description = Niobrara township, NE +station = ('konl', 0.01009367899544435) +zone = ('nez011', 0.0020967879287648954) + +[fips3110734765] +centroid = (0.7476430439386742, -1.7025014203310964) +description = North Frankfort township, NE +station = ('kykn', 0.002505962593446944) +zone = ('sdz069', 0.0035749268229307912) + +[fips3110738855] +centroid = (0.74448103093283613, -1.7045244838269609) +description = Peoria township, NE +station = ('kykn', 0.0057882693596392719) +zone = ('nez011', 0.0029686821487107207) + +[fips3110740] +centroid = (0.72182578457732371, -1.7214811603615416) +description = Cotesfield village, NE +station = ('kodx', 0.0061286990191369633) +zone = ('nez047', 0.0028459682995307877) + +[fips3110740745] +centroid = (0.74670910080263952, -1.7136248748929546) +description = Raymond township, NE +station = ('konl', 0.0084701158868754622) +zone = ('nez011', 0.0045287343257567822) + +[fips3110746100] +centroid = (0.74446835984246673, -1.7086084670101651) +description = Spade township, NE +station = ('kykn', 0.0080002630233571171) +zone = ('nez011', 0.00031856732662618038) + +[fips3110746240] +centroid = (0.74457922315655345, -1.7106763505612201) +description = Sparta township, NE +station = ('konl', 0.0092436497229145802) +zone = ('nez011', 0.0016306306998533724) + +[fips3110749740] +centroid = (0.74619714337315202, -1.7087220704911772) +description = Union township, NE +station = ('kykn', 0.0072268573074329616) +zone = ('nez011', 0.0020474295405181922) + +[fips3110750055] +centroid = (0.74295336169185799, -1.7086148374619345) +description = Valley township, NE +station = ('kykn', 0.0089590507586326737) +zone = ('nez011', 0.0012023285611828911) + +[fips3110750405] +centroid = (0.74260851953824891, -1.7105813348367418) +description = Verdigre township, NE +station = ('konl', 0.0087913466452322411) +zone = ('nez011', 0.0021579472151626688) + +[fips3110751210] +centroid = (0.74191077180988674, -1.7146572545988017) +description = Walnut Grove township, NE +station = ('konl', 0.0057186153722439863) +zone = ('nez011', 0.0050352696798554048) + +[fips3110751525] +centroid = (0.7440160054069348, -1.714738098249754) +description = Washington township, NE +station = ('konl', 0.0062820867247007613) +zone = ('nez011', 0.0045650488013474367) + +[fips3110752260] +centroid = (0.74550513777802885, -1.7147052511532315) +description = Western township, NE +station = ('konl', 0.0070956052790168379) +zone = ('nez011', 0.0047325615447899707) + +[fips31109] +centroid = (0.71180717579185582, -1.6875354314347555) +description = Lancaster County, NE +station = ('klnk', 0.0013479717567005044) +zone = ('nez066', 1.4890301741470597e-05) + +[fips3110985] +centroid = (0.70112319513565002, -1.7182595269084555) +description = Cowles village, NE +station = ('khsi', 0.007483387058632782) +zone = ('nez085', 0.00068413179089512298) + +[fips3110990410] +centroid = (0.70808220683578693, -1.6885802553381692) +description = Buda precinct, NE +station = ('klnk', 0.0046001735917517552) +zone = ('nez066', 0.0038201303981800685) + +[fips3110990480] +centroid = (0.7094287632602857, -1.6886185653152506) +description = Centerville precinct, NE +station = ('klnk', 0.0032541903480457369) +zone = ('nez066', 0.0025289528739889716) + +[fips3110990685] +centroid = (0.71104095879693785, -1.6903792534646624) +description = Denton precinct, NE +station = ('klnk', 0.0019832682988623518) +zone = ('nez066', 0.0023001429353852686) + +[fips3110990860] +centroid = (0.71410849713036539, -1.6904074928919599) +description = Elk precinct, NE +station = ('klnk', 0.0018320338096157308) +zone = ('nez066', 0.0031655757682035948) + +[fips3110991215] +centroid = (0.71078463974299, -1.6862271151741681) +description = Grant precinct, NE +station = ('klnk', 0.002768545443810735) +zone = ('nez066', 0.001423119465400041) + +[fips3110991405] +centroid = (0.70967197489155098, -1.6903153220541618) +description = Highland precinct, NE +station = ('klnk', 0.0031905350171123762) +zone = ('nez066', 0.0030144649935792325) + +[fips3110991675] +centroid = (0.71262685222176247, -1.6858598280863784) +description = Lancaster precinct, NE +station = ('klnk', 0.0022984998281700125) +zone = ('nez066', 0.0014953463878727891) + +[fips3110991753] +centroid = (0.71225066395478753, -1.6873904992936697) +description = Lincoln city, NE +station = ('klnk', 0.0012168053894596139) +zone = ('nez066', 0.00044485182030449741) + +[fips3110991777] +centroid = (0.71220650712471212, -1.6890019966986212) +description = Lincoln precinct, NE +station = ('klnk', 0.00047628656682629291) +zone = ('nez066', 0.0011873641216761102) + +[fips3110991795] +centroid = (0.71572355500699092, -1.6883931560423555) +description = Little Salt precinct, NE +station = ('klnk', 0.003071127002877809) +zone = ('nez066', 0.0039620305802020315) + +[fips3110991965] +centroid = (0.71258295719107478, -1.6904400432825095) +description = Middle Creek precinct, NE +station = ('klnk', 0.0011712922593441085) +zone = ('nez066', 0.0023389443662501178) + +[fips3110991985] +centroid = (0.71560677502673997, -1.6844978254979996) +description = Mill precinct, NE +station = ('kahq', 0.0041473303638101342) +zone = ('nez051', 0.0042430479598428899) + +[fips3110992080] +centroid = (0.70941666812856918, -1.6844391126219624) +description = Nemaha precinct, NE +station = ('klnk', 0.0046938400570859708) +zone = ('nez066', 0.0033489514950537543) + +[fips3110992140] +centroid = (0.71421979677676517, -1.6862487921634779) +description = North Bluff precinct, NE +station = ('klnk', 0.0025282658518265277) +zone = ('nez066', 0.0025883323604663057) + +[fips3110992210] +centroid = (0.71423857651951661, -1.6885803251513394) +description = Oak precinct, NE +station = ('klnk', 0.0015806982294228745) +zone = ('nez066', 0.0025509880357870119) + +[fips3110992230] +centroid = (0.70815092044843797, -1.6903801959424587) +description = Olive Branch precinct, NE +station = ('klnk', 0.0046628019095047903) +zone = ('nez078', 0.0039329308529022205) + +[fips3110992305] +centroid = (0.70814959399820643, -1.6844341907934719) +description = Panama precinct, NE +station = ('klnk', 0.0056511216051892176) +zone = ('nez066', 0.0043504835752207803) + +[fips3110992765] +centroid = (0.71574619192738931, -1.6865213776860541) +description = Rock Creek precinct, NE +station = ('klnk', 0.0035563193057921733) +zone = ('nez051', 0.0037860291002294985) + +[fips3110992855] +centroid = (0.7094214328774272, -1.6866692245269905) +description = Saltillo precinct, NE +station = ('klnk', 0.0036663191513106141) +zone = ('nez066', 0.0024807650674846995) + +[fips3110993000] +centroid = (0.7081556677440034, -1.6863396016444592) +description = South Pass precinct, NE +station = ('klnk', 0.0049186301621564092) +zone = ('nez066', 0.003769091959035074) + +[fips3110993100] +centroid = (0.71252454102101059, -1.6845438149237897) +description = Stevens Creek precinct, NE +station = ('klnk', 0.0032973384841478736) +zone = ('nez066', 0.0023616860928542456) + +[fips3110993110] +centroid = (0.71105307138194673, -1.6845010369038231) +description = Stockton precinct, NE +station = ('klnk', 0.0037029806660683344) +zone = ('nez066', 0.0024111463019092678) + +[fips3110993370] +centroid = (0.71419052760520918, -1.6844151143447474) +description = Waverly precinct, NE +station = ('klnk', 0.0037117885976154187) +zone = ('nez066', 0.0033394148149078298) + +[fips3110993445] +centroid = (0.71563656779707152, -1.6905760044312399) +description = West Oak precinct, NE +station = ('klnk', 0.0032208847915979155) +zone = ('nez065', 0.0043014574299484925) + +[fips3110993575] +centroid = (0.71102532064683999, -1.6885642332156359) +description = Yankee Hill precinct, NE +station = ('klnk', 0.0016699006384389707) +zone = ('nez066', 0.0011187135006643044) + +[fips3111020] +centroid = (0.71316411692540382, -1.745091468337038) +description = Cozad city, NE +station = ('klxn', 0.0030216734695869196) +zone = ('nez060', 0.0022077099649418235) + +[fips3111055] +centroid = (0.7039724800461159, -1.6828889984468036) +description = Crab Orchard village, NE +station = ('kbie', 0.0044008492312840103) +zone = ('nez090', 0.0023263625547237645) + +[fips3111090] +centroid = (0.72929040070847084, -1.681841731082437) +description = Craig village, NE +station = ('ktqe', 0.0023536251085762238) +zone = ('nez034', 0.0012365369342782807) + +[fips31111] +centroid = (0.71646327790386377, -1.7583228966628692) +description = Lincoln County, NE +station = ('klbf', 0.0015455538823855694) +zone = ('nez059', 4.5023068854024132e-05) + +[fips3111190345] +centroid = (0.71538707298049897, -1.7511519147250778) +description = Brady precinct, NE +station = ('klbf', 0.0049200157093055967) +zone = ('nez059', 0.0055173842934364229) + +[fips3111191275] +centroid = (0.72070563226339379, -1.7560279981360072) +description = Hall precinct, NE +station = ('klbf', 0.0031639200689247376) +zone = ('nez059', 0.0046249235418278547) + +[fips3111191385] +centroid = (0.71832303094161876, -1.763829358093034) +description = Hershey precinct, NE +station = ('klbf', 0.0052174106687131018) +zone = ('nez059', 0.0045566192191273834) + +[fips3111191445] +centroid = (0.71850070545947176, -1.7603120658646598) +description = Hinman precinct, NE +station = ('klbf', 0.0026698045248185775) +zone = ('nez059', 0.0025594029700552541) + +[fips3111191935] +centroid = (0.71668352100217292, -1.7538548363244715) +description = Maxwell precinct, NE +station = ('klbf', 0.0025245085911829702) +zone = ('nez059', 0.0033890337048443661) + +[fips3111191945] +centroid = (0.71203038594989332, -1.7579943907910589) +description = Medicine precinct, NE +station = ('klbf', 0.0056446374009579215) +zone = ('nez059', 0.0043964339239483683) + +[fips3111192180] +centroid = (0.71780360350293271, -1.7586682798685465) +description = North Platte precinct, NE +station = ('klbf', 0.001296163915826046) +zone = ('nez059', 0.0014068885927663573) + +[fips3111192265] +centroid = (0.71684206671142392, -1.7599821637294479) +description = Osgood precinct, NE +station = ('klbf', 0.0024037621560045724) +zone = ('nez059', 0.0013116757194550741) + +[fips3111192790] +centroid = (0.72041753076376713, -1.7610346321749855) +description = Rosedale precinct, NE +station = ('klbf', 0.0041469841903098385) +zone = ('nez059', 0.0044850282709661881) + +[fips3111192900] +centroid = (0.7147511273609497, -1.7589945342656219) +description = Sellers precinct, NE +station = ('klbf', 0.003252931065746405) +zone = ('nez059', 0.0017407170241778881) + +[fips3111193145] +centroid = (0.71861383770158616, -1.7659579092888886) +description = Sutherland precinct, NE +station = ('klbf', 0.006844585721947731) +zone = ('nez057', 0.0063118152753409646) + +[fips3111193330] +centroid = (0.71296464324519349, -1.7642749057444831) +description = Wallace precinct, NE +station = ('klbf', 0.0072205516608078698) +zone = ('nez070', 0.0056821224713137506) + +[fips3111195] +centroid = (0.74498614667165586, -1.8049496468825783) +description = Crawford city, NE +station = ('kcdr', 0.0048103210824682685) +zone = ('nez002', 0.0036508797396499135) + +[fips3111230] +centroid = (0.7411516408517318, -1.7088023556367689) +description = Creighton city, NE +station = ('konl', 0.0099931771777884565) +zone = ('nez011', 0.0030090530434025557) + +[fips31113] +centroid = (0.72504740057711747, -1.7530726670201902) +description = Logan County, NE +station = ('ktif', 0.0075059249404945379) +zone = ('nez037', 0.00066466739852298997) + +[fips3111300] +centroid = (0.72794155790265203, -1.6992988982333197) +description = Creston village, NE +station = ('kolu', 0.0045188274573384575) +zone = ('nez042', 0.0031610763001898201) + +[fips3111370] +centroid = (0.70905208630112015, -1.6922239268576804) +description = Crete city, NE +station = ('klnk', 0.0044147376021537541) +zone = ('nez078', 0.0030113879801490916) + +[fips3111391055] +centroid = (0.72398562952666679, -1.7530394883111098) +description = Gandy precinct, NE +station = ('klbf', 0.0070144270520889297) +zone = ('nez037', 0.0015804003782915865) + +[fips3111391825] +centroid = (0.72412124160954672, -1.7512988889013883) +description = Logan precinct, NE +station = ('klbf', 0.0077696235832243731) +zone = ('nez037', 0.0022821408797465072) + +[fips3111393080] +centroid = (0.72654087881804907, -1.7544580221139605) +description = Stapleton No. 1 precinct, NE +station = ('ktif', 0.0058636404916617832) +zone = ('nez037', 0.0011906927103145844) + +[fips3111393085] +centroid = (0.72306512542587231, -1.7559920967132936) +description = Stapleton No. 2 precinct, NE +station = ('klbf', 0.0054927802537044646) +zone = ('nez037', 0.0029325947951911457) + +[fips3111440] +centroid = (0.74580737644459671, -1.7016718478843311) +description = Crofton city, NE +station = ('kykn', 0.003550929595836522) +zone = ('nez012', 0.0039148345691149729) + +[fips3111475] +centroid = (0.74920546268505961, -1.7584791908973854) +description = Crookston village, NE +station = ('kvtn', 0.0028017066806635045) +zone = ('sdz047', 0.0046829439340635749) + +[fips31115] +centroid = (0.73125305835892351, -1.7367730196825226) +description = Loup County, NE +station = ('kbbw', 0.0082635501350110004) +zone = ('nez027', 0.00077201136949088707) + +[fips3111591580] +centroid = (0.73100005543055435, -1.7328909536404817) +description = Kent precinct, NE +station = ('kodx', 0.0063982163742511257) +zone = ('nez027', 0.0022349720353926476) + +[fips3111591905] +centroid = (0.73272382986628659, -1.7388898073592187) +description = Madison Square precinct, NE +station = ('kbbw', 0.009575789461163756) +zone = ('nez027', 0.0025834453086645932) + +[fips3111593175] +centroid = (0.73125305835892351, -1.7367730196825226) +description = Taylor precinct, NE +station = ('kbbw', 0.0082635501350110004) +zone = ('nez027', 0.00077201136949088707) + +[fips3111615] +centroid = (0.70204472898070314, -1.7599837345257747) +description = Culbertson village, NE +station = ('kmck', 0.0034421620618873008) +zone = ('nez080', 0.0028267223740191896) + +[fips31117] +centroid = (0.72599541106692334, -1.7638338784957968) +description = McPherson County, NE +station = ('ktif', 0.00903233749718476) +zone = ('nez036', 0.00049521417150815512) + +[fips3111790585] +centroid = (0.72416061623747163, -1.7690145916743689) +description = Cottonwood precinct, NE +station = ('koga', 0.0084392826911314622) +zone = ('nez036', 0.0040999257249183588) + +[fips3111791280] +centroid = (0.72699316344041087, -1.7597845575515372) +description = Hall precinct, NE +station = ('ktif', 0.0063511549033013984) +zone = ('nez036', 0.0033787336565790182) + +[fips3111791710] +centroid = (0.72310088722224586, -1.7589780758107756) +description = Lemley precinct, NE +station = ('klbf', 0.0056847506500179437) +zone = ('nez036', 0.0043598355726971018) + +[fips3111793220] +centroid = (0.72398053316525091, -1.7639657730273699) +description = Tryon precinct, NE +station = ('klbf', 0.00825257152572954) +zone = ('nez036', 0.0015226614372408269) + +[fips3111793475] +centroid = (0.72688757102066526, -1.7685085683643382) +description = Whitewater precinct, NE +station = ('koga', 0.010872031242257713) +zone = ('nez036', 0.0037573784680562314) + +[fips3111793550] +centroid = (0.7268959136944898, -1.7631701995944333) +description = Worden precinct, NE +station = ('ktif', 0.0080494179474928252) +zone = ('nez036', 0.001482450637281344) + +[fips3111825] +centroid = (0.7091894437132521, -1.7542524572346607) +description = Curtis city, NE +station = ('kmck', 0.0076274449254420751) +zone = ('nez071', 0.0023808651090741172) + +[fips3111860] +centroid = (0.72073069519145239, -1.7168674173904797) +description = Cushing village, NE +station = ('kgri', 0.005769052939929833) +zone = ('nez047', 0.0023384504014030616) + +[fips31119] +centroid = (0.73146625032705459, -1.7035610097199823) +description = Madison County, NE +station = ('kofk', 0.0025913768469007412) +zone = ('nez031', 0.00014050910005880231) + +[fips3111990140] +centroid = (0.73235903859932716, -1.7025523664919624) +description = Battle Creek precinct, NE +station = ('kofk', 0.0015511361110490016) +zone = ('nez031', 0.0010265785557220472) + +[fips3111990905] +centroid = (0.73081861100151702, -1.7064972643870751) +description = Emerick precinct, NE +station = ('kofk', 0.0048387476758582071) +zone = ('nez031', 0.0023897844553171328) + +[fips3111990965] +centroid = (0.73086744531398784, -1.7024580488991845) +description = Fairview precinct, NE +station = ('kofk', 0.0023635728007184087) +zone = ('nez031', 0.0010308256131766869) + +[fips3111991240] +centroid = (0.72927085302084849, -1.7024889063203599) +description = Green Garden precinct, NE +station = ('kofk', 0.003769343776884124) +zone = ('nez031', 0.0024213128930101282) + +[fips3111991250] +centroid = (0.73233764086269781, -1.7065043155172532) +description = Grove precinct, NE +station = ('kofk', 0.0044587930932150311) +zone = ('nez031', 0.0023903990704914014) + +[fips3111991410] +centroid = (0.73221469987018739, -1.7046364292451839) +description = Highland precinct, NE +station = ('kofk', 0.0030975156827773563) +zone = ('nez031', 0.0010823387173658429) + +[fips3111991560] +centroid = (0.72929270454308337, -1.7045382544747589) +description = Kalamazoo precinct, NE +station = ('kofk', 0.0045638669871939782) +zone = ('nez031', 0.0024279002757833369) + +[fips3111991900] +centroid = (0.72918796733467128, -1.7000669478239523) +description = Madison precinct, NE +station = ('kofk', 0.0035762648565401413) +zone = ('nez031', 0.0034792929147938649) + +[fips3111991902] +centroid = (0.73004543014288359, -1.7009404851145755) +description = Madison city, NE +station = ('kofk', 0.0027189777092478302) +zone = ('nez031', 0.002422775365500653) + +[fips3111991942] +centroid = (0.73396788310381555, -1.7055527445557732) +description = Meadow Grove-Jefferson precinct, NE +station = ('kofk', 0.0039243311069493483) +zone = ('nez031', 0.0028495379554293538) + +[fips3111992103] +centroid = (0.72862314388214089, -1.7065259401466855) +description = Newman Grove city, NE +station = ('kbvn', 0.0036459084469638776) +zone = ('nez031', 0.0037407922398116525) + +[fips3111992133] +centroid = (0.73364021499004628, -1.7003178912638039) +description = Norfolk city, NE +station = ('kofk', 0.00090694193789171641) +zone = ('nez031', 0.0031102700103836987) + +[fips3111992135] +centroid = (0.73301406066760078, -1.6998665491192384) +description = Norfolk precinct, NE +station = ('kofk', 0.00056220902971124555) +zone = ('nez032', 0.0029771516440909194) + +[fips3111992865] +centroid = (0.73069397703963224, -1.7043090927439721) +description = Schoolcraft precinct, NE +station = ('kofk', 0.0034802437679892569) +zone = ('nez031', 0.0010925840696677969) + +[fips3111992925] +centroid = (0.72941365586024665, -1.7063771333746602) +description = Shell Creek precinct, NE +station = ('kbvn', 0.0039041491035510822) +zone = ('nez031', 0.0030726086231347744) + +[fips3111993203] +centroid = (0.73380689393361165, -1.7074476310713711) +description = Tilden city, NE +station = ('kofk', 0.0052459609758938987) +zone = ('nez031', 0.0037087560746619798) + +[fips3111993260] +centroid = (0.73095628257291434, -1.7002376759313824) +description = Union precinct, NE +station = ('kofk', 0.001804491243686403) +zone = ('nez032', 0.002958865273976687) + +[fips3111993300] +centroid = (0.73389569628595319, -1.7021414461728728) +description = Valley precinct, NE +station = ('kofk', 0.0016575788514494691) +zone = ('nez031', 0.0025107556392944337) + +[fips3111993340] +centroid = (0.73244916740190025, -1.7009890227210733) +description = Warnerville precinct, NE +station = ('kofk', 0.00045182709375036123) +zone = ('nez031', 0.0020288359105615911) + +[fips3112000] +centroid = (0.7403105492319032, -1.6828108426028994) +description = Dakota City city, NE +station = ('ksux', 0.00073327365968217976) +zone = ('nez014', 0.0019418404362808437) + +[fips3112070] +centroid = (0.72270996837638413, -1.7971790919868491) +description = Dalton village, NE +station = ('ksny', 0.0053821680523460542) +zone = ('nez055', 0.0033040360108119887) + +[fips31121] +centroid = (0.71854857984085396, -1.7109646091404798) +description = Merrick County, NE +station = ('kauh', 0.004839632144759372) +zone = ('nez048', 8.6041911262137592e-05) + +[fips3112105] +centroid = (0.69878979464548885, -1.7523997378737912) +description = Danbury village, NE +station = ('kmck', 0.0036988717094310806) +zone = ('nez081', 0.0025932418511159542) + +[fips3112108500] +centroid = (0.71850140359117265, -1.7088376636475369) +description = Central township, NE +station = ('kauh', 0.0048987411669328537) +zone = ('nez048', 0.0016878192248999389) + +[fips3112108535] +centroid = (0.71756274806615761, -1.7104261925195321) +description = Central City city, NE +station = ('kauh', 0.0038304937672392942) +zone = ('nez048', 0.0011015690479256194) + +[fips3112108815] +centroid = (0.71610658496463364, -1.7131220280821624) +description = Chapman township, NE +station = ('kgri', 0.0024023758939737266) +zone = ('nez048', 0.0028868123899047555) + +[fips3112109235] +centroid = (0.7199837989913539, -1.7079186081700215) +description = Clarksville township, NE +station = ('kauh', 0.0065088654260689943) +zone = ('nez048', 0.0027770893038110995) + +[fips3112129015] +centroid = (0.71759231394368639, -1.7109850469460206) +description = Lone Tree township, NE +station = ('kauh', 0.003891252834594597) +zone = ('nez048', 0.00095885749006859207) + +[fips3112129400] +centroid = (0.71955174273502276, -1.7142559161373054) +description = Loup township, NE +station = ('kgri', 0.0047241988993460271) +zone = ('nez048', 0.0025924428155279771) + +[fips3112131360] +centroid = (0.71982938971243005, -1.7107614528155477) +description = Mead township, NE +station = ('kauh', 0.0061052298171929359) +zone = ('nez048', 0.0013029049965298473) + +[fips3112131955] +centroid = (0.71867286473688852, -1.7124572321700779) +description = Midland township, NE +station = ('kgri', 0.0045164102316730898) +zone = ('nez048', 0.001044911373280712) + +[fips3112140] +centroid = (0.71765505853029554, -1.7199475395478141) +description = Dannebrog village, NE +station = ('kgri', 0.0040155597184366809) +zone = ('nez047', 0.0018092072038533716) + +[fips3112140150] +centroid = (0.71745104699402995, -1.7141238121662221) +description = Prairie Creek township, NE +station = ('kgri', 0.0028086202631199394) +zone = ('nez048', 0.0025422897188997024) + +[fips3112140272] +centroid = (0.71785189676333538, -1.7085359311264521) +description = Prairie Island township, NE +station = ('kauh', 0.0043346455176850448) +zone = ('nez048', 0.0020376357093688053) + +[fips3112145435] +centroid = (0.72140318800553827, -1.7045862510291889) +description = Silver Creek township, NE +station = ('kolu', 0.0048032844177788607) +zone = ('nez049', 0.0028566180450936619) + +[fips3112150720] +centroid = (0.71528462215340693, -1.7144967890273732) +description = Vieregg township, NE +station = ('kgri', 0.0011323513100973458) +zone = ('nez063', 0.0033639594349319716) + +[fips3112245] +centroid = (0.70358257349122033, -1.707132965660529) +description = Davenport village, NE +station = ('khjh', 0.0040939634055277814) +zone = ('nez087', 0.0037376958053424937) + +[fips3112280] +centroid = (0.71530153439385868, -1.6871957030958549) +description = Davey village, NE +station = ('klnk', 0.0029233401475481429) +zone = ('nez066', 0.00349334582175317) + +[fips31123] +centroid = (0.72836438136724024, -1.7975250511511796) +description = Morrill County, NE +station = ('kaia', 0.0060742667258945728) +zone = ('nez021', 0.00038366363710093702) + +[fips3112315] +centroid = (0.72012059789812521, -1.6952260502507435) +description = David City city, NE +station = ('kolu', 0.0042610876764319029) +zone = ('nez050', 0.00062281083609237872) + +[fips3112390365] +centroid = (0.72576834373123877, -1.7928895090177601) +description = Broadwater precinct, NE +station = ('kaia', 0.0082008362027573747) +zone = ('nez021', 0.004383374299623208) + +[fips3112390775] +centroid = (0.72922536974054153, -1.8021482538067872) +description = East Bayard precinct, NE +station = ('kbff', 0.0047206688286929198) +zone = ('nez021', 0.0033889614115430781) + +[fips3112390780] +centroid = (0.72493292443147928, -1.7982911808796349) +description = East Camp Clarke precinct, NE +station = ('ksny', 0.0076321241960307946) +zone = ('nez021', 0.0031641500553894935) + +[fips3112391120] +centroid = (0.73060102080367095, -1.7950193517572612) +description = Gilchrist precinct, NE +station = ('kaia', 0.0033657536991468307) +zone = ('nez021', 0.0032974184802658964) + +[fips3112391345] +centroid = (0.73152742411733707, -1.7973859135032104) +description = Haynes precinct, NE +station = ('kaia', 0.0033608479570148009) +zone = ('nez021', 0.0034648956158873519) + +[fips3112392150] +centroid = (0.72836438136724024, -1.7975250511511796) +description = North Camp Clarke precinct, NE +station = ('kaia', 0.0060742667258945728) +zone = ('nez021', 0.00038366363710093702) + +[fips3112392710] +centroid = (0.72519529977793151, -1.8022794851132447) +description = Redington precinct, NE +station = ('kbff', 0.0070501292565707356) +zone = ('nez021', 0.0043795313339534464) + +[fips3112393405] +centroid = (0.73230584096372642, -1.802592038675692) +description = West Bayard precinct, NE +station = ('kbff', 0.0044405278649287316) +zone = ('nez003', 0.0052216818954042695) + +[fips3112393415] +centroid = (0.72711704691071744, -1.8006147900726923) +description = West Camp Clarke precinct, NE +station = ('kbff', 0.0066783829703362402) +zone = ('nez021', 0.002263707353486159) + +[fips3112420] +centroid = (0.70041609244249703, -1.6725504009962751) +description = Dawson village, NE +station = ('kfnb', 0.0033967606092572145) +zone = ('nez093', 0.0015166365978063134) + +[fips3112455] +centroid = (0.70374677406724795, -1.6981761802853892) +description = Daykin village, NE +station = ('khjh', 0.0048516366546243733) +zone = ('nez088', 0.0032861012747162246) + +[fips31125] +centroid = (0.72260795388160504, -1.7102727082651117) +description = Nance County, NE +station = ('kbvn', 0.0057501958403298661) +zone = ('nez041', 8.9532314816471566e-05) + +[fips3112503460] +centroid = (0.72428521529277157, -1.7073917456287222) +description = Beaver township, NE +station = ('kbvn', 0.0050038782709277427) +zone = ('nez041', 0.0027986793120244155) + +[fips3112508115] +centroid = (0.72361256539905294, -1.7103077544764915) +description = Cedar township, NE +station = ('kbvn', 0.0047539449675320158) +zone = ('nez041', 0.0010934764915516025) + +[fips3112510845] +centroid = (0.72144643726440283, -1.7143483313211987) +description = Cottonwood township, NE +station = ('kgri', 0.0065550528548124157) +zone = ('nez048', 0.0037999080434471875) + +[fips3112510915] +centroid = (0.72278447648215172, -1.7085243246869264) +description = Council Creek township, NE +station = ('kbvn', 0.0059151966486818697) +zone = ('nez041', 0.0013493948937826953) + +[fips3112514240] +centroid = (0.72157955352645242, -1.7082964370464933) +description = East Newman township, NE +station = ('kbvn', 0.0071057485261375123) +zone = ('nez041', 0.0017655824108679301) + +[fips3112517810] +centroid = (0.72193546106751905, -1.7099382333672595) +description = Fullerton city, NE +station = ('kbvn', 0.0064537596581815595) +zone = ('nez041', 0.00064009389605845411) + +[fips3112517845] +centroid = (0.72217684010306993, -1.7105462537187766) +description = Fullerton township, NE +station = ('kbvn', 0.006152629874696028) +zone = ('nez041', 0.00039327105212434791) + +[fips3112518475] +centroid = (0.72336696266671241, -1.7057673851471835) +description = Genoa city, NE +station = ('kolu', 0.0052325871418170602) +zone = ('nez042', 0.0035334924854674285) + +[fips3112518510] +centroid = (0.72328323922249416, -1.7066197690472726) +description = Genoa township, NE +station = ('kolu', 0.0058732825532765674) +zone = ('nez041', 0.0028551073287327576) + +[fips3112525] +centroid = (0.73315946404758436, -1.6798885331165301) +description = Decatur village, NE +station = ('ktqe', 0.0042835209402029544) +zone = ('nez034', 0.002896682341757099) + +[fips3112529540] +centroid = (0.72153529197662181, -1.712429481434971) +description = Loup Ferry township, NE +station = ('kbvn', 0.0068059441494911698) +zone = ('nez041', 0.0018841946256120136) + +[fips3112540185] +centroid = (0.72184252228485046, -1.706279307670086) +description = Prairie Creek township, NE +station = ('kolu', 0.0058419489244528507) +zone = ('nez049', 0.0039322526745190715) + +[fips3112545715] +centroid = (0.72319492556234322, -1.7144761068757373) +description = South Branch township, NE +station = ('kbvn', 0.0055991121297586559) +zone = ('nez041', 0.0032124072309827512) + +[fips3112548970] +centroid = (0.72310619302317192, -1.7123907700321619) +description = Timber Creek township, NE +station = ('kbvn', 0.0052440757412368149) +zone = ('nez041', 0.0016824836659287878) + +[fips3112552470] +centroid = (0.72082934120077524, -1.7109670351481399) +description = West Newman township, NE +station = ('kgri', 0.0069301121941236967) +zone = ('nez041', 0.0017649964069586632) + +[fips31127] +centroid = (0.70489394407799877, -1.6729147384776288) +description = Nemaha County, NE +station = ('kafk', 0.0037097538414067946) +zone = ('nez091', 3.3298324319852047e-05) + +[fips3112770] +centroid = (0.71103402983980735, -1.6902810961475303) +description = Denton village, NE +station = ('klnk', 0.0019480164690765906) +zone = ('nez066', 0.0022327197353252969) + +[fips3112790102] +centroid = (0.70492782091878003, -1.6727863520578521) +description = Auburn city, NE +station = ('kafk', 0.0036768373600247041) +zone = ('nez091', 7.0197153060694902e-05) + +[fips3112790180] +centroid = (0.70348616150334009, -1.672826459724063) +description = Bedford precinct, NE +station = ('kafk', 0.0051178050475059545) +zone = ('nez091', 0.0014196178402748145) + +[fips3112790225] +centroid = (0.70363550932743335, -1.6751092282126239) +description = Benton precinct, NE +station = ('kafk', 0.0052453042473884848) +zone = ('nez091', 0.0021248545826234463) + +[fips3112790380] +centroid = (0.70536485136347937, -1.670548421077775) +description = Brownville precinct, NE +station = ('kafk', 0.0036988634107756944) +zone = ('nez091', 0.0018293756230371478) + +[fips3112790740] +centroid = (0.70536734718430971, -1.6722008115471008) +description = Douglas precinct, NE +station = ('kafk', 0.0032794649553862347) +zone = ('nez091', 0.00068993030753082898) + +[fips3112791155] +centroid = (0.70638307644909293, -1.6725376600927353) +description = Glen Rock precinct, NE +station = ('kafk', 0.0022374309761307378) +zone = ('nez091', 0.0014997214900165771) + +[fips3112791658] +centroid = (0.70637892256547308, -1.6752023415282178) +description = Lafayette precinct, NE +station = ('kafk', 0.0028313067644733388) +zone = ('nez091', 0.0023051147316838021) + +[fips3112792085] +centroid = (0.70343526770235199, -1.6699782045578559) +description = Nemaha precinct, NE +station = ('kfnb', 0.0040707311244140938) +zone = ('nez091', 0.0026515777847678089) + +[fips3112792345] +centroid = (0.70635600639239449, -1.6712208440786909) +description = Peru precinct, NE +station = ('kafk', 0.002583969998872046) +zone = ('nez091', 0.0019202481144461356) + +[fips3112793355] +centroid = (0.70486092244855114, -1.6751818862693846) +description = Washington precinct, NE +station = ('kafk', 0.004126096400369708) +zone = ('nez091', 0.0017587120212993598) + +[fips3112840] +centroid = (0.70056865167241389, -1.705595470215862) +description = Deshler city, NE +station = ('khjh', 0.0018340210775849575) +zone = ('nez087', 0.0018311956852822397) + +[fips31129] +centroid = (0.7012120673011617, -1.7112402140826621) +description = Nuckolls County, NE +station = ('khjh', 0.0061486048408745933) +zone = ('nez086', 5.036856994250375e-06) + +[fips3112945] +centroid = (0.70432292470662383, -1.7128514671415183) +description = Deweese village, NE +station = ('khsi', 0.0057946006210637304) +zone = ('nez076', 0.0031834567428197496) + +[fips3112990155] +centroid = (0.69905279831047173, -1.7133489034316292) +description = Beaver precinct, NE +station = ('khjh', 0.0079444174855634753) +zone = ('nez086', 0.0026908572092765306) + +[fips3112990865] +centroid = (0.70285868073066327, -1.7087825636030514) +description = Elk precinct, NE +station = ('khjh', 0.0047300080908922277) +zone = ('nez086', 0.0025011524575357953) + +[fips3112991305] +centroid = (0.69905025012976396, -1.7092984829299407) +description = Hardy precinct, NE +station = ('khjh', 0.0049683624425969483) +zone = ('nez086', 0.0026240837929452279) + +[fips3112992070] +centroid = (0.70166852326043572, -1.7114571585086851) +description = Nelson precinct, NE +station = ('khjh', 0.0063597534926716371) +zone = ('nez086', 0.00048551683137231118) + +[fips3112993060] +centroid = (0.70048670846403283, -1.7081836887768147) +description = Spring Creek precinct, NE +station = ('khjh', 0.0038113411384056591) +zone = ('nez086', 0.0024501952787291761) + +[fips3112993142] +centroid = (0.69853265528679254, -1.7115790697569366) +description = Superior city, NE +station = ('khjh', 0.0067860801464269078) +zone = ('nez086', 0.0026898654051036833) + +[fips3112993320] +centroid = (0.70191833223627365, -1.7140215009654702) +description = Victor precinct, NE +station = ('khsi', 0.0073352155950165143) +zone = ('nez086', 0.0022347412459122608) + +[fips3113015] +centroid = (0.70503117931708315, -1.6916116653560807) +description = De Witt village, NE +station = ('kbie', 0.0028309645419511225) +zone = ('nez078', 0.0036702753512677148) + +[fips3113085] +centroid = (0.70003000815866345, -1.6918843032385349) +description = Diller village, NE +station = ('kbie', 0.004172394233627307) +zone = ('nez088', 0.0029713530817427119) + +[fips31131] +centroid = (0.70926676179911541, -1.677802934473567) +description = Otoe County, NE +station = ('kafk', 0.003781636608098546) +zone = ('nez068', 0.00019008400482692158) + +[fips3113190] +centroid = (0.71967395068924744, -1.8061831583314252) +description = Dix village, NE +station = ('kibm', 0.0025251291142859168) +zone = ('nez054', 0.0030649292476681066) + +[fips3113190201] +centroid = (0.70949541738441935, -1.6748394177635582) +description = Belmont precinct, NE +station = ('kafk', 0.0017222673341428924) +zone = ('nez068', 0.0022988430624801314) + +[fips3113190230] +centroid = (0.7109542159331137, -1.6765005697857287) +description = Berlin precinct, NE +station = ('kafk', 0.00360438611183956) +zone = ('nez068', 0.001827135990584753) + +[fips3113190680] +centroid = (0.70965837877667792, -1.6765374311395309) +description = Delaware precinct, NE +station = ('kafk', 0.0029565236931888201) +zone = ('nez068', 0.0010312739002172689) + +[fips3113191020] +centroid = (0.70934873991408165, -1.672635258904507) +description = Four Mile precinct, NE +station = ('kafk', 0.00077130926234285694) +zone = ('iaz090', 0.0035368204238614663) + +[fips3113191380] +centroid = (0.7080713159812545, -1.6826532219181518) +description = Hendricks precinct, NE +station = ('kbie', 0.0065309743536571254) +zone = ('nez090', 0.0036315525678215989) + +[fips3113191895] +centroid = (0.70806101853866776, -1.6763990788897252) +description = McWilliams precinct, NE +station = ('kafk', 0.0027136318046951996) +zone = ('nez068', 0.0017817515258095756) + +[fips3113192063] +centroid = (0.70991918332680348, -1.6730943328576591) +description = Nebraska City city, NE +station = ('kafk', 0.0013239092032471017) +zone = ('nez068', 0.0036519860029574501) + +[fips3113192146] +centroid = (0.71091342758849463, -1.6787772994350778) +description = North Branch precinct, NE +station = ('kpmv', 0.0052013741450438553) +zone = ('nez068', 0.0016173116195087266) + +[fips3113192174] +centroid = (0.71092819307396637, -1.6827634394604152) +description = North Palmyra precinct, NE +station = ('klnk', 0.0049622338755126597) +zone = ('nez068', 0.0039947990073706981) + +[fips3113192187] +centroid = (0.71105102934672182, -1.6806202624054287) +description = North Russell precinct, NE +station = ('klnk', 0.0064739237271502102) +zone = ('nez068', 0.0026296124758594061) + +[fips3113192250] +centroid = (0.70814584154031468, -1.6784826354974638) +description = Osage precinct, NE +station = ('kafk', 0.0042656570089401593) +zone = ('nez068', 0.0013850653235010413) + +[fips3113192280] +centroid = (0.70812042954640553, -1.6726264449917845) +description = Otoe precinct, NE +station = ('kafk', 0.00052543737052187882) +zone = ('nez091', 0.0032205997670176761) + +[fips3113192770] +centroid = (0.70802038727368133, -1.674704573625549) +description = Rock Creek precinct, NE +station = ('kafk', 0.0014908009744784311) +zone = ('nez068', 0.0027955196483912077) + +[fips3113192970] +centroid = (0.70789262917243534, -1.680560484878548) +description = South Branch precinct, NE +station = ('kafk', 0.0058628815344660325) +zone = ('nez068', 0.0025694841358611521) + +[fips3113192998] +centroid = (0.70955575341666066, -1.6826201130222416) +description = South Palmyra precinct, NE +station = ('klnk', 0.0056878533600857786) +zone = ('nez068', 0.0036063091559287793) + +[fips3113193016] +centroid = (0.70966071751787563, -1.6804745623194721) +description = South Russell precinct, NE +station = ('kpmv', 0.0069956551899542554) +zone = ('nez068', 0.0019880578020693936) + +[fips3113193163] +centroid = (0.7095343556800312, -1.6786430312557219) +description = Syracuse precinct, NE +station = ('kafk', 0.0044584465951347015) +zone = ('nez068', 0.00059341761867008614) + +[fips3113193565] +centroid = (0.71119348312026953, -1.6743373214443444) +description = Wyoming precinct, NE +station = ('kafk', 0.0028104428763044724) +zone = ('nez068', 0.0031949278328792744) + +[fips3113225] +centroid = (0.74028852317674299, -1.6928791932720491) +description = Dixon village, NE +station = ('klcg', 0.0030373161115581321) +zone = ('nez013', 0.0021268804361759706) + +[fips3113295] +centroid = (0.728183041657958, -1.6908816988497266) +description = Dodge village, NE +station = ('kfet', 0.0067119774377668159) +zone = ('nez033', 0.0036050846722062361) + +[fips31133] +centroid = (0.700537637171606, -1.6797960655727595) +description = Pawnee County, NE +station = ('kbie', 0.0072981893502356687) +zone = ('nez092', 0.00015722008076880277) + +[fips3113365] +centroid = (0.71164407477325697, -1.7168949237794913) +description = Doniphan village, NE +station = ('khsi', 0.0031509071847376901) +zone = ('nez062', 0.0024400097285071742) + +[fips3113392475] +centroid = (0.69902846842069899, -1.6785158840197141) +description = "Precinct 1, Pawnee No. 1", NE +station = ('kfnb', 0.0078807881398055175) +zone = ('nez092', 0.0016451684441069314) + +[fips3113392485] +centroid = (0.70031639923562328, -1.677967117596302) +description = "Precinct 2, Pawnee No. 2", NE +station = ('kfnb', 0.0074728040914486529) +zone = ('nez092', 0.0012932316060676353) + +[fips3113392495] +centroid = (0.70174894803236765, -1.6766814557094056) +description = "Precinct 3, Table Rock", NE +station = ('kfnb', 0.0068027437132644336) +zone = ('nez092', 0.0026281100857376608) + +[fips3113392505] +centroid = (0.70201402863916063, -1.6797071061407853) +description = "Precinct 4, Steinauer", NE +station = ('kbie', 0.0069244294510641419) +zone = ('nez092', 0.0015895126222855663) + +[fips3113392515] +centroid = (0.69965572230057327, -1.6816572672337937) +description = "Precinct 5, Burchard", NE +station = ('kbie', 0.0064771040766411977) +zone = ('nez092', 0.0017154588285692542) + +[fips3113392525] +centroid = (0.69886536740210026, -1.6766749107247105) +description = "Precinct 6, South Fork", NE +station = ('kfnb', 0.0064927369559916884) +zone = ('nez092', 0.0027608468981142834) + +[fips3113392535] +centroid = (0.70188681158998267, -1.6825734778246282) +description = "Precinct 7, Turkey Creek", NE +station = ('kbie', 0.0048360504925605676) +zone = ('nez092', 0.0026679740765589706) + +[fips3113435] +centroid = (0.70943061330929269, -1.6949745133989458) +description = Dorchester village, NE +station = ('klnk', 0.0056336116709780641) +zone = ('nez078', 0.0021806088814453699) + +[fips31135] +centroid = (0.71307285365881712, -1.7738905703655432) +description = Perkins County, NE +station = ('koga', 0.0049214069841519237) +zone = ('nez058', 0.00019569075393132909) + +[fips3113505] +centroid = (0.70848480193434449, -1.6822917642300637) +description = Douglas village, NE +station = ('klnk', 0.006529402093320813) +zone = ('nez090', 0.003864669730248997) + +[fips3113590716] +centroid = (0.71300485563115945, -1.7702355542058941) +description = District 1, NE +station = ('kiml', 0.006370858021511122) +zone = ('nez058', 0.0029384586004251628) + +[fips3113590718] +centroid = (0.71297350951779348, -1.7750203568969443) +description = District 2, NE +station = ('koga', 0.0047849347896981378) +zone = ('nez058', 0.00068095382520560067) + +[fips3113590720] +centroid = (0.71298478434476142, -1.7789508558257279) +description = District 3, NE +station = ('koga', 0.0051282572585077792) +zone = ('nez058', 0.0036539702955350937) + +[fips31137] +centroid = (0.70714397018979236, -1.734971717721417) +description = Phelps County, NE +station = ('khde', 0.0015121136894335515) +zone = ('nez073', 0.00013982880079458935) + +[fips3113701360] +centroid = (0.70818579212689281, -1.7321730997191365) +description = Anderson township, NE +station = ('khde', 0.0024853513940105002) +zone = ('nez073', 0.0025034681154879673) + +[fips3113708395] +centroid = (0.70806058220635471, -1.7341716064324251) +description = Center township, NE +station = ('khde', 0.0021064710663107312) +zone = ('nez073', 0.0012353213313828595) + +[fips3113710880] +centroid = (0.70908114603316597, -1.7329258427722292) +description = Cottonwood township, NE +station = ('khde', 0.0031499907068734232) +zone = ('nez073', 0.0026212034122807129) + +[fips3113713155] +centroid = (0.70653429177548577, -1.7320930065597624) +description = Divide township, NE +station = ('khde', 0.0013356831032710983) +zone = ('nez073', 0.002352229379411739) + +[fips3113718195] +centroid = (0.70805283294447585, -1.7381235380044233) +description = Garfield township, NE +station = ('khde', 0.0039517687269621333) +zone = ('nez073', 0.0024990183284581287) + +[fips3113722640] +centroid = (0.70580160255549851, -1.734433370913639) +description = Holdrege city, NE +station = ('khde', 0.00059223015407173965) +zone = ('nez073', 0.0013523617458647498) + +[fips3113723900] +centroid = (0.70501222504140648, -1.7371289446768818) +description = Industry-Rock Falls township, NE +station = ('khde', 0.0027904925956137843) +zone = ('nez073', 0.002553507778318709) + +[fips3113725895] +centroid = (0.70640536430364087, -1.7359860332695058) +description = Laird township, NE +station = ('khde', 0.0017938562795188446) +zone = ('nez073', 0.00092829279405821214) + +[fips3113726000] +centroid = (0.7050126962803045, -1.7320907899916123) +description = Lake township, NE +station = ('khde', 0.0015607111320831649) +zone = ('nez073', 0.0030722212084247215) + +[fips3113740010] +centroid = (0.70498175159266663, -1.7341500516161628) +description = Prairie township, NE +station = ('khde', 0.0010623393743927811) +zone = ('nez073', 0.0021955033708794822) + +[fips3113744840] +centroid = (0.70657811699300332, -1.7341567187739055) +description = Sheridan township, NE +station = ('khde', 0.00068923869205309127) +zone = ('nez073', 0.00086632299995322265) + +[fips3113749775] +centroid = (0.706528095856641, -1.7381280235006009) +description = Union township, NE +station = ('khde', 0.0034169251617387924) +zone = ('nez073', 0.0023538527852192716) + +[fips3113750] +centroid = (0.69873450261478554, -1.6763306619830471) +description = Du Bois village, NE +station = ('kfnb', 0.0062477950046877836) +zone = ('nez092', 0.0030524858136887706) + +[fips3113752435] +centroid = (0.70805918594295314, -1.736153008919044) +description = Westmark township, NE +station = ('khde', 0.002792049116935058) +zone = ('nez073', 0.0012814518500582966) + +[fips3113752645] +centroid = (0.70949576645026968, -1.7382577712771943) +description = Westside township, NE +station = ('klxn', 0.0034337873277601994) +zone = ('nez073', 0.0034184381158311374) + +[fips3113753030] +centroid = (0.7093682876017039, -1.7358688344102344) +description = Williamsburg township, NE +station = ('khde', 0.0037648095012699392) +zone = ('nez073', 0.0023867768187456509) + +[fips3113855] +centroid = (0.70980235098667499, -1.676054830148062) +description = Dunbar village, NE +station = ('kafk', 0.0026787456020968968) +zone = ('nez068', 0.001420431019889078) + +[fips3113890] +centroid = (0.72239320857043965, -1.7015802879117716) +description = Duncan village, NE +station = ('kolu', 0.0023410817702988517) +zone = ('nez042', 0.003160857670148327) + +[fips31139] +centroid = (0.73777533632033387, -1.7036331965378448) +description = Pierce County, NE +station = ('kofk', 0.0055288895823436095) +zone = ('nez017', 0.0001750748864514467) + +[fips3113960] +centroid = (0.7300202450417772, -1.7471531036093713) +description = Dunning village, NE +station = ('ktif', 0.0064761638367072088) +zone = ('nez026', 0.0022335115961679029) + +[fips3113990030] +centroid = (0.73845083110073317, -1.7003519251842181) +description = Allen precinct, NE +station = ('kofk', 0.0057050040822576907) +zone = ('nez017', 0.0024366238373302587) + +[fips3113990275] +centroid = (0.73524715708564992, -1.7044863483828048) +description = Blaine precinct, NE +station = ('kofk', 0.0038558405943102973) +zone = ('nez017', 0.0025221827500938837) + +[fips3113990540] +centroid = (0.73525654695702558, -1.7026171356605038) +description = Cleveland precinct, NE +station = ('kofk', 0.0029481709636777374) +zone = ('nez017', 0.0024771662943406888) + +[fips3113990545] +centroid = (0.73689038457640255, -1.704482770457838) +description = Clover Valley precinct, NE +station = ('kofk', 0.0050749066312188252) +zone = ('nez017', 0.0010725022306586997) + +[fips3113990790] +centroid = (0.74005353204625446, -1.7005108025060269) +description = Eastern precinct, NE +station = ('kofk', 0.007306152049855053) +zone = ('nez017', 0.0032448442328807886) + +[fips3113991015] +centroid = (0.73840793090771917, -1.7044803968100553) +description = Foster precinct, NE +station = ('kofk', 0.0063725857818536123) +zone = ('nez017', 0.0010655350206751355) + +[fips3113991830] +centroid = (0.73828231956145307, -1.7023660351410193) +description = Logan precinct, NE +station = ('kofk', 0.0056994523242531658) +zone = ('nez017', 0.0010276316049660109) + +[fips3113992000] +centroid = (0.73536957447938478, -1.7065193777086978) +description = Mills precinct, NE +station = ('kofk', 0.0051608363276562418) +zone = ('nez017', 0.0032151074239050929) + +[fips3113992160] +centroid = (0.73993465767090116, -1.7065122393120571) +description = North Dry Creek precinct, NE +station = ('kofk', 0.0084431378486397798) +zone = ('nez017', 0.0032069305102983268) + +[fips3113992358] +centroid = (0.73651627325123759, -1.7021838751269887) +description = Pierce city, NE +station = ('kofk', 0.0039631047918345635) +zone = ('nez017', 0.0014800225731337719) + +[fips3113992360] +centroid = (0.73699447601299151, -1.7025980941183647) +description = Pierce precinct, NE +station = ('kofk', 0.0045151181143087771) +zone = ('nez017', 0.00091896359915680226) + +[fips3113992378] +centroid = (0.73920533693637036, -1.7067076463751103) +description = Plainview city, NE +station = ('kofk', 0.007915341978727803) +zone = ('nez017', 0.0028572484879007391) + +[fips3113992445] +centroid = (0.739891617851547, -1.7024743502743982) +description = Plum Grove precinct, NE +station = ('kofk', 0.0072876662561674396) +zone = ('nez017', 0.002355215319748743) + +[fips3113992955] +centroid = (0.73703508982468546, -1.7005778929624735) +description = Slough precinct, NE +station = ('kofk', 0.0042878246372982133) +zone = ('nez017', 0.0022240323772727347) + +[fips3113992975] +centroid = (0.73532344542725459, -1.7005658152840497) +description = South Branch precinct, NE +station = ('kofk', 0.0025761667843686464) +zone = ('nez017', 0.0031680506229682963) + +[fips3113992985] +centroid = (0.73839573105624767, -1.7065153634514183) +description = South Dry Creek precinct, NE +station = ('kofk', 0.0071820315791412985) +zone = ('nez017', 0.0023764362516065312) + +[fips3113993190] +centroid = (0.73993034670764868, -1.7044873781270633) +description = Thompson precinct, NE +station = ('kofk', 0.0077576673877122245) +zone = ('nez017', 0.0023997801811942222) + +[fips3113993500] +centroid = (0.73688675429155837, -1.7065219782492831) +description = Willow Creek precinct, NE +station = ('kofk', 0.0060731154724084982) +zone = ('nez017', 0.0023899541145934984) + +[fips3114065] +centroid = (0.71702857259529218, -1.6933022610827326) +description = Dwight village, NE +station = ('klnk', 0.0054783044168124889) +zone = ('nez050', 0.0028716259788794047) + +[fips31141] +centroid = (0.72565320436048475, -1.7019310641848375) +description = Platte County, NE +station = ('kolu', 0.0032318618113078451) +zone = ('nez042', 0.00014416148952555677) + +[fips3114100] +centroid = (0.71237569934240053, -1.6830686277334188) +description = Eagle village, NE +station = ('klnk', 0.0044205759544062809) +zone = ('nez066', 0.003416031965626704) + +[fips3114105070] +centroid = (0.7247568730698305, -1.6982783693130934) +description = Bismark township, NE +station = ('kolu', 0.0013718987169320973) +zone = ('nez043', 0.0029596561319371424) + +[fips3114107275] +centroid = (0.72636676477187012, -1.7022657834287849) +description = Burrows township, NE +station = ('kolu', 0.0039182503559005996) +zone = ('nez042', 0.00084838170250771633) + +[fips3114107450] +centroid = (0.72232639736667326, -1.7019813122140022) +description = Butler township, NE +station = ('kolu', 0.0026410918619773835) +zone = ('nez042', 0.0032090358649517941) + +[fips3114110110] +centroid = (0.72318895653630144, -1.6991629719911743) +description = Columbus city, NE +station = ('kolu', 0.00037667159968619) +zone = ('nez042', 0.0031862532416333713) + +[fips3114110145] +centroid = (0.72352625886754185, -1.698350922650099) +description = Columbus township, NE +station = ('kolu', 0.00033839641740447869) +zone = ('nez043', 0.0035551155635273209) + +[fips3114111335] +centroid = (0.72766940871238861, -1.6982273358857654) +description = Creston township, NE +station = ('kolu', 0.0042511136861425091) +zone = ('nez043', 0.0034883084746460415) + +[fips3114119630] +centroid = (0.72615256051277288, -1.7002514465791807) +description = Grand Prairie township, NE +station = ('kolu', 0.0029266480057236243) +zone = ('nez042', 0.0014744335402243757) + +[fips3114119945] +centroid = (0.72767680890841702, -1.7022710194165409) +description = Granville township, NE +station = ('kolu', 0.004975187073179824) +zone = ('nez042', 0.0021485474410372148) + +[fips3114123515] +centroid = (0.72767363240917837, -1.7002396132468522) +description = Humphrey township, NE +station = ('kolu', 0.0043718537483527949) +zone = ('nez042', 0.0025273099024752353) + +[fips3114124775] +centroid = (0.72636753271674104, -1.7042957758817794) +description = Joliet township, NE +station = ('kolu', 0.005057685334139069) +zone = ('nez042', 0.0018801433351171683) + +[fips3114129225] +centroid = (0.72470650286761795, -1.7024783819849703) +description = Lost Creek township, NE +station = ('kolu', 0.0030418318772397327) +zone = ('nez042', 0.00089076468967992509) + +[fips3114129435] +centroid = (0.72279479137803104, -1.7032624711514288) +description = Loup township, NE +station = ('kolu', 0.0034166426963520061) +zone = ('nez042', 0.0028888898244346147) + +[fips3114132620] +centroid = (0.72489574891841169, -1.7042710271129862) +description = Monroe township, NE +station = ('kolu', 0.0043583798895159148) +zone = ('nez042', 0.001786722904022464) + +[fips3114134230] +centroid = (0.72853500475491517, -1.7065056419674847) +description = Newman Grove city, NE +station = ('kbvn', 0.0036543355434044515) +zone = ('nez031', 0.0038018976689865223) + +[fips3114135630] +centroid = (0.72373763569325089, -1.703421819712136) +description = Oconee township, NE +station = ('kolu', 0.0034862065778651216) +zone = ('nez042', 0.0020733809820015874) + +[fips3114142950] +centroid = (0.72767291682418511, -1.7043102795678637) +description = St. Bernard township, NE +station = ('kofk', 0.0058027804789164581) +zone = ('nez042', 0.0027286564116105463) + +[fips3114144665] +centroid = (0.72480439838536237, -1.7005735819992212) +description = Shell Creek township, NE +station = ('kolu', 0.0019118413584501507) +zone = ('nez042', 0.001319455152655317) + +[fips3114145015] +centroid = (0.72628167997083537, -1.6983389496914303) +description = Sherman township, NE +station = ('kolu', 0.0028624358455411354) +zone = ('nez043', 0.0029664734821895494) + +[fips3114151140] +centroid = (0.72735242201364136, -1.7063709374558158) +description = Walker township, NE +station = ('kbvn', 0.0038661758656660969) +zone = ('nez030', 0.0039439523433238222) + +[fips3114153730] +centroid = (0.72562486021343242, -1.7063160119442555) +description = Woodville township, NE +station = ('kbvn', 0.0046396129978915727) +zone = ('nez042', 0.0031990114450697054) + +[fips31143] +centroid = (0.71886490331448549, -1.702929322703808) +description = Polk County, NE +station = ('kjyr', 0.0051294982884167156) +zone = ('nez049', 3.4692031475594781e-05) + +[fips3114380] +centroid = (0.71579815037922123, -1.738766744193661) +description = Eddyville village, NE +station = ('klxn', 0.0043562939799803918) +zone = ('nez060', 0.0035795212986125891) + +[fips3114390822] +centroid = (0.71729658535522844, -1.7025574628533782) +description = East Stromsburg precinct, NE +station = ('kjyr', 0.0036457228681720357) +zone = ('nez049', 0.0015705016214915223) + +[fips3114392172] +centroid = (0.72033000250177959, -1.7029197932060922) +description = North Osceola precinct, NE +station = ('kolu', 0.0043916875575536916) +zone = ('nez049', 0.0014831600606065659) + +[fips3114392977] +centroid = (0.71830573472873149, -1.7005703356868125) +description = South Canada precinct, NE +station = ('kjyr', 0.0051525827283518035) +zone = ('nez049', 0.0018279589325872563) + +[fips3114392997] +centroid = (0.71867467987931055, -1.703045631445161) +description = South Osceola precinct, NE +station = ('kjyr', 0.0049296412734455728) +zone = ('nez049', 0.00020844540385547575) + +[fips3114393452] +centroid = (0.71753574782262919, -1.7062641058523009) +description = West Pleasant Home precinct, NE +station = ('kjyr', 0.0041766179737365546) +zone = ('nez049', 0.0028592295543423485) + +[fips3114393457] +centroid = (0.71724487124949177, -1.704131749838677) +description = West Stromsburg precinct, NE +station = ('kjyr', 0.0034704307604337477) +zone = ('nez049', 0.0018551592314398051) + +[fips3114450] +centroid = (0.70455910266100363, -1.7099160502324666) +description = Edgar city, NE +station = ('khjh', 0.0063544503090231146) +zone = ('nez076', 0.0029260344653545926) + +[fips31145] +centroid = (0.70108863761646067, -1.7535074459901545) +description = Red Willow County, NE +station = ('kmck', 0.0016205578823201147) +zone = ('nez081', 0.00015629518288127944) + +[fips3114520] +centroid = (0.70297776454552674, -1.7414250551773733) +description = Edison village, NE +station = ('khde', 0.0066143579995490732) +zone = ('nez082', 0.0025312747971738881) + +[fips3114555] +centroid = (0.72056460965983271, -1.7203581631609308) +description = Elba village, NE +station = ('kgri', 0.0064774299606981381) +zone = ('nez047', 0.0013295939429793548) + +[fips3114590040] +centroid = (0.70345186578353847, -1.7516539063245364) +description = Alliance precinct, NE +station = ('kmck', 0.0034655161743552807) +zone = ('nez081', 0.002719355420053444) + +[fips3114590160] +centroid = (0.69891770982636747, -1.7516699284470698) +description = Beaver precinct, NE +station = ('kmck', 0.0039923630451920728) +zone = ('nez081', 0.0027394124491535907) + +[fips3114590305] +centroid = (0.70045326795556451, -1.7536628675600445) +description = Bondville precinct, NE +station = ('kmck', 0.0018330084757959759) +zone = ('nez081', 0.00074677692366598061) + +[fips3114590330] +centroid = (0.70350382423537039, -1.7556558241263118) +description = Box Elder precinct, NE +station = ('kmck', 0.0018847383019561196) +zone = ('nez081', 0.0027657927377006779) + +[fips3114590555] +centroid = (0.70349069935939534, -1.7576474542423477) +description = Coleman precinct, NE +station = ('kmck', 0.0024801113846077997) +zone = ('nez081', 0.0038149232767641212) + +[fips3114590645] +centroid = (0.69893165500709087, -1.7536622741480989) +description = Danbury precinct, NE +station = ('kmck', 0.0030392225710476053) +zone = ('nez081', 0.0022683510563139609) + +[fips3114590750] +centroid = (0.70042925222505714, -1.757616753900805) +description = Driftwood precinct, NE +station = ('kmck', 0.0020036414210355485) +zone = ('nez081', 0.0031275617691168879) + +[fips3114590825] +centroid = (0.70213885458726322, -1.7495420055697457) +description = East Valley precinct, NE +station = ('kmck', 0.00458676451778392) +zone = ('nez081', 0.0032757219977036685) + +[fips3114591040] +centroid = (0.70348427654774803, -1.7536694125447396) +description = Fritsch precinct, NE +station = ('kmck', 0.0023325348241983153) +zone = ('nez081', 0.0022843302484881734) + +[fips3114591110] +centroid = (0.69886287158126981, -1.7554466813220453) +description = Gerver precinct, NE +station = ('kmck', 0.0027599170380520842) +zone = ('nez081', 0.0027107782763813636) + +[fips3114591225] +centroid = (0.69891142664106021, -1.7575928254367603) +description = Grant precinct, NE +station = ('kmck', 0.0031440319061446643) +zone = ('nez081', 0.003784996884361529) + +[fips3114591520] +centroid = (0.70186527422701306, -1.7515955250610573) +description = Indianola precinct, NE +station = ('kmck', 0.0029996637126693238) +zone = ('nez081', 0.0017052034886991167) + +[fips3114591705] +centroid = (0.69891172334703311, -1.7496803054596739) +description = Lebanon precinct, NE +station = ('kmck', 0.005217443802423549) +zone = ('nez081', 0.0038024053813915308) + +[fips3114591882] +centroid = (0.70170246991438712, -1.7561742218207392) +description = McCook city, NE +station = ('kmck', 0.0005133430921559222) +zone = ('nez081', 0.0019919377924733084) + +[fips3114592010] +centroid = (0.7004300725298056, -1.7516716737763218) +description = Missouri Ridge precinct, NE +station = ('kmck', 0.0031664767978447357) +zone = ('nez081', 0.0016974662622356558) + +[fips3114592200] +centroid = (0.70333541741584538, -1.7496373180001974) +description = North Valley precinct, NE +station = ('kmck', 0.0047987195495015553) +zone = ('nez081', 0.0037346770755375186) + +[fips3114592340] +centroid = (0.70190695268955072, -1.7576731629422295) +description = Perry precinct, NE +station = ('kmck', 0.0016760953299425365) +zone = ('nez081', 0.003152593666642787) + +[fips3114592715] +centroid = (0.70187162722549024, -1.7533966699425303) +description = Red Willow precinct, NE +station = ('kmck', 0.0016333744106644165) +zone = ('nez081', 0.00069916572349276924) + +[fips3114593235] +centroid = (0.70043387734757501, -1.7496948265990504) +description = Tyrone precinct, NE +station = ('kmck', 0.0046002654228321036) +zone = ('nez081', 0.0031192938430811678) + +[fips3114593310] +centroid = (0.70046876647932232, -1.7556065709348205) +description = Valley Grange precinct, NE +station = ('kmck', 0.0011559343023581216) +zone = ('nez081', 0.0016639444466304755) + +[fips3114593505] +centroid = (0.70210829387206075, -1.7556215109532176) +description = Willow Grove precinct, NE +station = ('kmck', 0.00049329461051555838) +zone = ('nez081', 0.0017578870357263386) + +[fips31147] +centroid = (0.70029142357402707, -1.6706047777593218) +description = Richardson County, NE +station = ('kfnb', 0.0019386517054188865) +zone = ('nez093', 3.2446405120502948e-05) + +[fips3114730] +centroid = (0.73274564648193652, -1.7118649895949987) +description = Elgin city, NE +station = ('kbvn', 0.0044627480744320021) +zone = ('nez016', 0.0033864270901974671) + +[fips3114790070] +centroid = (0.70052840437986297, -1.6666578029223993) +description = Arago precinct, NE +station = ('kfnb', 0.001536007315933566) +zone = ('moz011', 0.0037776196357832349) + +[fips3114790120] +centroid = (0.70181212895128986, -1.6680589706991928) +description = Barada precinct, NE +station = ('kfnb', 0.0022304698501045073) +zone = ('nez093', 0.0024368012894778685) + +[fips3114790810] +centroid = (0.7019735719070993, -1.6703251411065672) +description = East Muddy precinct, NE +station = ('kfnb', 0.00286887428077707) +zone = ('nez093', 0.0016725873116366786) + +[fips3114790973] +centroid = (0.69925173093861404, -1.6685070141714724) +description = Falls City city, NE +station = ('kfnb', 0.00039035283392438132) +zone = ('nez093', 0.0019020223122248922) + +[fips3114790975] +centroid = (0.69891723858746946, -1.6687240633172502) +description = Falls City precinct, NE +station = ('kfnb', 0.00076320809462322649) +zone = ('nez093', 0.0019855194391722631) + +[fips3114791025] +centroid = (0.70209291752135072, -1.6746664905412707) +description = Franklin precinct, NE +station = ('kfnb', 0.0055118302430720023) +zone = ('nez091', 0.0031271114642073871) + +[fips3114791230] +centroid = (0.70052379671063769, -1.6731323810353524) +description = Grant precinct, NE +station = ('kfnb', 0.0038545450371797684) +zone = ('nez093', 0.0019693946128094678) + +[fips3114791483] +centroid = (0.7010258057633888, -1.6745442651337532) +description = Humboldt city, NE +station = ('kfnb', 0.0050280691508285359) +zone = ('nez093', 0.0031196273996864084) + +[fips3114791485] +centroid = (0.70039684146084769, -1.674718099927252) +description = Humboldt precinct, NE +station = ('kfnb', 0.0050177149496144317) +zone = ('nez093', 0.0031716433391917069) + +[fips3114791550] +centroid = (0.69883700580175523, -1.6669346994082284) +description = Jefferson precinct, NE +station = ('kfnb', 0.0012510658836521853) +zone = ('nez093', 0.0031492015669155127) + +[fips3114791750] +centroid = (0.70052503589440651, -1.6706256868037608) +description = Liberty precinct, NE +station = ('kfnb', 0.0020493494080891248) +zone = ('nez093', 0.00021739359008536292) + +[fips3114792090] +centroid = (0.69875129268218983, -1.6726925755171425) +description = Nemaha precinct, NE +station = ('kfnb', 0.0035057862161612229) +zone = ('nez093', 0.0022512988042297476) + +[fips3114792220] +centroid = (0.70042070011172231, -1.6687964944812081) +description = Ohio precinct, NE +station = ('kfnb', 0.00093548515691087091) +zone = ('nez093', 0.0013616058324422047) + +[fips3114792455] +centroid = (0.70193749595146049, -1.6727442547162941) +description = Porter precinct, NE +station = ('kfnb', 0.0041667183082183612) +zone = ('nez093', 0.0023237280055993666) + +[fips3114792805] +centroid = (0.69874563781541332, -1.6654151983081493) +description = Rulo precinct, NE +station = ('kfnb', 0.0023224385796316613) +zone = ('moz011', 0.0029438477429448427) + +[fips3114792845] +centroid = (0.69881134946175094, -1.6708430501088041) +description = Salem precinct, NE +station = ('kfnb', 0.0021348560032315679) +zone = ('nez093', 0.0015145793497071481) + +[fips3114793040] +centroid = (0.69878867763476749, -1.6746281805641894) +description = Speiser precinct, NE +station = ('kfnb', 0.0049509683511742321) +zone = ('nez093', 0.0034573396335628049) + +[fips3114793440] +centroid = (0.70194053282435898, -1.6712647740159634) +description = West Muddy precinct, NE +station = ('kfnb', 0.0032976866139750463) +zone = ('nez093', 0.0017128750869699065) + +[fips31149] +centroid = (0.74025216796842397, -1.7358788176935558) +description = Rock County, NE +station = ('kanw', 0.007573238119129749) +zone = ('nez009', 0.00017735193307367561) + +[fips3114975] +centroid = (0.70316268217977562, -1.6777316552269155) +description = Elk Creek village, NE +station = ('kafk', 0.0065677928773989853) +zone = ('nez090', 0.0025855103670806004) + +[fips3114990135] +centroid = (0.74328219917622629, -1.7372828129037376) +description = Bassett precinct, NE +station = ('kanw', 0.0059246991872531117) +zone = ('nez009', 0.0031092726599428288) + +[fips3114990280] +centroid = (0.73996411882867485, -1.7333298690407735) +description = Blaine precinct, NE +station = ('konl', 0.0081958615487601333) +zone = ('nez009', 0.0018228647039048062) + +[fips3114990360] +centroid = (0.74418298105647318, -1.7388709752565901) +description = Brinkerhoff precinct, NE +station = ('kanw', 0.0048497737907608404) +zone = ('nez006', 0.0043259540690476824) + +[fips3114990475] +centroid = (0.74334208142286218, -1.7357552309292221) +description = Center precinct, NE +station = ('kanw', 0.0070499519501360502) +zone = ('nez009', 0.0029507823456101944) + +[fips3114991185] +centroid = (0.73563727308005566, -1.7340360118028377) +description = Gracy precinct, NE +station = ('konl', 0.010269190876274549) +zone = ('nez027', 0.0043090928778620882) + +[fips3114991325] +centroid = (0.74213804858508137, -1.7389952601526244) +description = Harrison precinct, NE +station = ('kanw', 0.0047896497778555343) +zone = ('nez009', 0.0029752358817277044) + +[fips3114991625] +centroid = (0.73793819299283736, -1.733415494893876) +description = Kinkaid precinct, NE +station = ('konl', 0.0087958881287901955) +zone = ('nez009', 0.002990593117261988) + +[fips3114991645] +centroid = (0.74561987572305499, -1.733284106507786) +description = Kirkwood precinct, NE +station = ('konl', 0.009191681689785125) +zone = ('nez009', 0.005530073910587718) + +[fips3114991700] +centroid = (0.74136591492399906, -1.7336991108973252) +description = Lay precinct, NE +station = ('konl', 0.008373851372984133) +zone = ('nez009', 0.001787530150161772) + +[fips3114991845] +centroid = (0.74502155940217885, -1.7362570305424629) +description = Long Pine precinct, NE +station = ('kanw', 0.0069133063668137384) +zone = ('nez006', 0.0044846970686756322) + +[fips3114992105] +centroid = (0.74288813873771098, -1.7332255332580888) +description = Newport precinct, NE +station = ('konl', 0.0081962453150191458) +zone = ('nez009', 0.0031054857261743072) + +[fips3114992350] +centroid = (0.73595029788140087, -1.7375734800373648) +description = Pewaukee precinct, NE +station = ('kanw', 0.0092556352068656166) +zone = ('nez027', 0.0046072749488728134) + +[fips3114992895] +centroid = (0.73890962580120489, -1.7384275394535358) +description = Selden precinct, NE +station = ('kanw', 0.0066707990457605306) +zone = ('nez009', 0.0024832414745075936) + +[fips3114993200] +centroid = (0.74056248750942866, -1.7365194058889153) +description = Thurman precinct, NE +station = ('kanw', 0.0070169799613399482) +zone = ('nez009', 0.00060734862184639638) + +[fips31151] +centroid = (0.70715159727862353, -1.6952689329904647) +description = Saline County, NE +station = ('kbie', 0.0063290821088134728) +zone = ('nez078', 0.00017373484006025843) + +[fips3115190100] +centroid = (0.70639974434344943, -1.6985751625523953) +description = Atlanta precinct, NE +station = ('khjh', 0.0066328954723498213) +zone = ('nez078', 0.0025498176164493428) + +[fips3115190245] +centroid = (0.70790477666402918, -1.6925978112900426) +description = Big Blue precinct, NE +station = ('kbie', 0.0054605624007615589) +zone = ('nez078', 0.0022395522699038867) + +[fips3115190395] +centroid = (0.70656527136970859, -1.6944777054273656) +description = Brush Creek precinct, NE +station = ('kbie', 0.0054976052427463326) +zone = ('nez078', 0.0010137396596697457) + +[fips3115190608] +centroid = (0.70905208630112015, -1.6922239268576804) +description = Crete city, NE +station = ('klnk', 0.0044147376021537541) +zone = ('nez078', 0.0030113879801490916) + +[fips3115190610] +centroid = (0.70965970522690947, -1.6924008159773698) +description = Crete precinct, NE +station = ('klnk', 0.0040181154751995993) +zone = ('nez078', 0.0033100025492268249) + +[fips3115190705] +centroid = (0.70499466702913138, -1.6924640318028772) +description = De Witt precinct, NE +station = ('kbie', 0.0033604435872897956) +zone = ('nez078', 0.0032081008522605071) + +[fips3115190725] +centroid = (0.70966558698648874, -1.6942507079048512) +description = Dorchester precinct, NE +station = ('klnk', 0.0050511757548742132) +zone = ('nez078', 0.0025498716509152028) + +[fips3115191033] +centroid = (0.7094853119280502, -1.6979225315851969) +description = Friend city, NE +station = ('kjyr', 0.0062073618820653719) +zone = ('nez078', 0.0029099484513477368) + +[fips3115191035] +centroid = (0.70962102873068533, -1.6986107149092582) +description = Friend precinct, NE +station = ('kjyr', 0.0057431177871311032) +zone = ('nez078', 0.0033673499262823429) + +[fips3115191780] +centroid = (0.70960844490677843, -1.6963399368326586) +description = Lincoln precinct, NE +station = ('klnk', 0.0064193517102666443) +zone = ('nez078', 0.0024321607277324659) + +[fips3115192025] +centroid = (0.7080391321098477, -1.6964229097852985) +description = Monroe precinct, NE +station = ('klnk', 0.0073522657716254816) +zone = ('nez078', 0.0010739861377870679) + +[fips3115192165] +centroid = (0.70663754545403368, -1.6962704029152591) +description = North Fork precinct, NE +station = ('kbie', 0.0066906827351597351) +zone = ('nez078', 0.00090588135803956824) + +[fips3115192225] +centroid = (0.70511902173833596, -1.6982497982732385) +description = Olive precinct, NE +station = ('khjh', 0.0057527999265929034) +zone = ('nez078', 0.0030448381530692576) + +[fips3115192415] +centroid = (0.7080253963686346, -1.6944136867504025) +description = Pleasant Hill precinct, NE +station = ('klnk', 0.0062547376042805256) +zone = ('nez078', 0.0010735146278262125) + +[fips3115192990] +centroid = (0.70499587130631525, -1.6964267146030678) +description = South Fork precinct, NE +station = ('kbie', 0.0061788243187881923) +zone = ('nez078', 0.0024048726070175831) + +[fips3115193155] +centroid = (0.70499484156205661, -1.6944404775544206) +description = Swan Creek precinct, NE +station = ('kbie', 0.004735016282538267) +zone = ('nez078', 0.0024025982161944999) + +[fips3115193230] +centroid = (0.7080420642629911, -1.6984078378370064) +description = Turkey Creek precinct, NE +station = ('kjyr', 0.0070624333571095172) +zone = ('nez078', 0.0023908837972746121) + +[fips3115193488] +centroid = (0.70652523351666785, -1.6923561180952262) +description = Wilber city, NE +station = ('kbie', 0.004257708525799939) +zone = ('nez078', 0.0024529868710416562) + +[fips3115193490] +centroid = (0.7068850156886739, -1.6929634752216278) +description = Wilber precinct, NE +station = ('kbie', 0.0048355673927313473) +zone = ('nez078', 0.0019133978925934085) + +[fips31153] +centroid = (0.71759323896818983, -1.6774206724607952) +description = Sarpy County, NE +station = ('kmle', 0.0014102782372231815) +zone = ('nez053', 5.0064735019650816e-05) + +[fips3115360] +centroid = (0.71069953748866266, -1.7344312416119518) +description = Elm Creek village, NE +station = ('khde', 0.0047470139387146811) +zone = ('nez073', 0.0036837077049005395) + +[fips3115390190] +centroid = (0.71827791418045472, -1.6743438838823319) +description = Bellevue precinct, NE +station = ('koff', 0.0007858672748740236) +zone = ('nez053', 0.0024611932389836878) + +[fips3115390197] +centroid = (0.71804765289223915, -1.6747539315367956) +description = Bellevue Second I precinct, NE +station = ('koff', 0.00085456682597059592) +zone = ('nez053', 0.0021027855947769025) + +[fips3115390198] +centroid = (0.7181153716672164, -1.6753557734227607) +description = Bellevue Second II precinct, NE +station = ('koff', 0.0012920834066483475) +zone = ('nez053', 0.0016862681051242208) + +[fips3115390199] +centroid = (0.7174729334228499, -1.6752428506201567) +description = Bellevue Second III precinct, NE +station = ('koff', 0.0011189770437831825) +zone = ('nez053', 0.0016795568407150135) + +[fips3115390200] +centroid = (0.71764179402798034, -1.6738841292507716) +description = Bellevue Second IV precinct, NE +station = ('koff', 8.7859095152482112e-05) +zone = ('nez053', 0.0027021395056335616) + +[fips3115390970] +centroid = (0.71729534617145951, -1.6764062347396584) +description = Fairview precinct, NE +station = ('kmle', 0.0018876511898558599) +zone = ('nez053', 0.00084314275022434127) + +[fips3115391010] +centroid = (0.71812662904089186, -1.6795892266031056) +description = Forest City No. 1 precinct, NE +station = ('kmle', 0.0018169703786337498) +zone = ('nez053', 0.0016948263423412818) + +[fips3115391012] +centroid = (0.71803749507599246, -1.6798487570628771) +description = Forest City No. 2 precinct, NE +station = ('kmle', 0.0020312234370736732) +zone = ('nez053', 0.001855263137263458) + +[fips3115391140] +centroid = (0.71859247487154165, -1.67481906722448) +description = Gilmore I precinct, NE +station = ('koff', 0.0012516241954199762) +zone = ('nez053', 0.0022474115381133104) + +[fips3115391145] +centroid = (0.71860371479192453, -1.6755355074291312) +description = Gilmore II precinct, NE +station = ('kmle', 0.0015130625390174482) +zone = ('nez053', 0.0017921593662814539) + +[fips3115391431] +centroid = (0.71873067004171454, -1.674529848714132) +description = Highland I precinct, NE +station = ('koff', 0.0012480512042974982) +zone = ('nez053', 0.002504352394455346) + +[fips3115391433] +centroid = (0.71855502010579386, -1.6733193057982412) +description = Highland II precinct, NE +station = ('koff', 0.00099376991579332402) +zone = ('nez053', 0.0032800476083808014) + +[fips3115391681] +centroid = (0.71704428055856007, -1.6744285498043463) +description = LaPlatte I precinct, NE +station = ('koff', 0.0007606298832856011) +zone = ('nez053', 0.0023484014055358375) + +[fips3115391682] +centroid = (0.71729686460790876, -1.6752971478131862) +description = LaPlatte II precinct, NE +station = ('koff', 0.0011949664809557409) +zone = ('nez053', 0.0016574226356669648) + +[fips3115391685] +centroid = (0.71874648272473762, -1.6765821988348444) +description = La Vista precinct, NE +station = ('kmle', 0.00071896269327058565) +zone = ('nez053', 0.0013624412324811327) + +[fips3115391950] +centroid = (0.71769565488869691, -1.6801095616130026) +description = Melia-Forest City precinct, NE +station = ('kmle', 0.0023757563290651572) +zone = ('nez053', 0.0019939264122459011) + +[fips3115392310] +centroid = (0.71825545179298156, -1.6763061575603491) +description = Papillion precinct, NE +station = ('kmle', 0.0011543003350199335) +zone = ('nez053', 0.0011190730667177747) + +[fips3115392313] +centroid = (0.71822185420488061, -1.6768260911445183) +description = Papillion Second I precinct, NE +station = ('kmle', 0.00092111890367808068) +zone = ('nez053', 0.0008209682813637314) + +[fips3115392314] +centroid = (0.71803824556757079, -1.6757991568659374) +description = Papillion Second II precinct, NE +station = ('kmle', 0.0015879510789318766) +zone = ('nez053', 0.0013461131772633935) + +[fips3115392381] +centroid = (0.71726461092333182, -1.6781051033269649) +description = Platford-Springfield I precinct, NE +station = ('kmle', 0.0018019673708909564) +zone = ('nez053', 0.00056240899717075648) + +[fips3115392382] +centroid = (0.71624453578871117, -1.6791241661706191) +description = Platford-Springfield II precinct, NE +station = ('kmle', 0.0030253728737233703) +zone = ('nez053', 0.001812281985211922) + +[fips3115392732] +centroid = (0.71817527136714499, -1.6775731269709568) +description = Richland I precinct, NE +station = ('kmle', 0.00083096595762897517) +zone = ('nez053', 0.00062127094293945703) + +[fips3115392733] +centroid = (0.7185953546648074, -1.6777339765148207) +description = Richland II precinct, NE +station = ('kmle', 0.00045186822664057107) +zone = ('nez053', 0.0010554144056341272) + +[fips3115392734] +centroid = (0.71884476221491744, -1.6775080261898576) +description = Richland III precinct, NE +station = ('kmle', 0.0001601399488719482) +zone = ('nez053', 0.0012861354641216201) + +[fips3115392735] +centroid = (0.7188804018382432, -1.6777722515853168) +description = Richland IV precinct, NE +station = ('kmle', 0.00025522201840823456) +zone = ('nez053', 0.0013410109843064511) + +[fips3115392736] +centroid = (0.7188193502210084, -1.6777703491764322) +description = Richland V precinct, NE +station = ('kmle', 0.00028842730548747159) +zone = ('nez053', 0.0012806390446155466) + +[fips3115392737] +centroid = (0.71885357612764, -1.678025254513686) +description = Richland VI precinct, NE +station = ('kmle', 0.0004403769586421151) +zone = ('nez053', 0.0013606616224887647) + +[fips3115392738] +centroid = (0.71874615111217977, -1.6790973230067237) +description = Richland VII precinct, NE +station = ('kmle', 0.0012477853604646926) +zone = ('nez053', 0.0017066646163100109) + +[fips3115392739] +centroid = (0.71829262730604904, -1.6785140863305845) +description = Richland VIII precinct, NE +station = ('kmle', 0.0010566717122444504) +zone = ('nez053', 0.0010759714762628347) + +[fips3115393065] +centroid = (0.71708424859843078, -1.6778449620019551) +description = Springfield precinct, NE +station = ('kmle', 0.0019388342057881024) +zone = ('nez053', 0.0005527866288991374) + +[fips3115430] +centroid = (0.71283669315772968, -1.6806585723825098) +description = Elmwood village, NE +station = ('klnk', 0.0062348985357748464) +zone = ('nez067', 0.0023452531112619769) + +[fips31155] +centroid = (0.71947973045008551, -1.686702298516316) +description = Saunders County, NE +station = ('kahq', 0.00055032292986293893) +zone = ('nez051', 7.0066185322240507e-05) + +[fips3115500] +centroid = (0.71291757171526715, -1.7695745805648715) +description = Elsie village, NE +station = ('kiml', 0.006507009520655342) +zone = ('nez058', 0.0034390864039776895) + +[fips3115502340] +centroid = (0.71614348122502081, -1.6824651975978344) +description = Ashland township, NE +station = ('kahq', 0.0043569582631473643) +zone = ('nez067', 0.0040062989292756314) + +[fips3115505770] +centroid = (0.72277691920649056, -1.6902906780051237) +description = Bohemia township, NE +station = ('kfet', 0.0043668487428581027) +zone = ('nez044', 0.0038311954719299516) + +[fips3115508430] +centroid = (0.72024221244040421, -1.6863330741130564) +description = Center township, NE +station = ('kahq', 0.00069331820101706655) +zone = ('nez051', 0.00074732511589148377) + +[fips3115508850] +centroid = (0.71877983596674322, -1.6883371833332441) +description = Chapman township, NE +station = ('kahq', 0.0019480589700458099) +zone = ('nez051', 0.0014821550018890744) + +[fips3115509060] +centroid = (0.72163137235194408, -1.690341501992942) +description = Chester township, NE +station = ('kahq', 0.0038509871981639134) +zone = ('nez051', 0.0034858037642741661) + +[fips3115509410] +centroid = (0.71725368516221444, -1.6824623701644461) +description = Clear Creek township, NE +station = ('kahq', 0.0035421605575543962) +zone = ('nez051', 0.0038826241893724226) + +[fips3115513540] +centroid = (0.72162130180216011, -1.6883054881540278) +description = Douglas township, NE +station = ('kahq', 0.0026685013026764514) +zone = ('nez051', 0.0024365103420587236) + +[fips3115514870] +centroid = (0.72014522449387097, -1.690239522404748) +description = Elk township, NE +station = ('kahq', 0.003242922760692938) +zone = ('nez051', 0.002775991482581204) + +[fips3115520085] +centroid = (0.71716153177770903, -1.6845597148732754) +description = Green township, NE +station = ('kahq', 0.0026643705469112052) +zone = ('nez051', 0.0028400940400968326) + +[fips3115526665] +centroid = (0.72138383230413372, -1.683329414830252) +description = Leshara township, NE +station = ('kfet', 0.0022449402651692121) +zone = ('nez051', 0.0031013775474005296) + +[fips3115530555] +centroid = (0.71856584114715616, -1.6824133962256353) +description = Marble township, NE +station = ('kahq', 0.0028813092749176085) +zone = ('nez051', 0.0033228449315086672) + +[fips3115530590] +centroid = (0.72003989387351308, -1.6845239181703167) +description = Marietta township, NE +station = ('kahq', 0.0011858316014408754) +zone = ('nez051', 0.0016698530119206312) + +[fips3115530695] +centroid = (0.72020510674050686, -1.6882971454802034) +description = Mariposa township, NE +station = ('kahq', 0.0018388104824261383) +zone = ('nez051', 0.0014171908914155284) + +[fips3115532900] +centroid = (0.72285442927857169, -1.6884368241802403) +description = Morse Bluff township, NE +station = ('kfet', 0.0029841511816225325) +zone = ('nez044', 0.0030301417169339359) + +[fips3115534195] +centroid = (0.7187817209223355, -1.6901837940417315) +description = Newman township, NE +station = ('kahq', 0.003260763712089854) +zone = ('nez051', 0.0027702240057113059) + +[fips3115534755] +centroid = (0.72265467634568092, -1.6863160920594347) +description = North Cedar township, NE +station = ('kfet', 0.0015496207285848728) +zone = ('nez044', 0.0030484291944143111) + +[fips3115535315] +centroid = (0.71729737075339184, -1.690513277297923) +description = Oak Creek township, NE +station = ('kahq', 0.0041114855034853175) +zone = ('nez051', 0.0036738332304956894) + +[fips3115539625] +centroid = (0.72188929710880378, -1.6846616421015916) +description = Pohocco township, NE +station = ('kfet', 0.0015526500747128538) +zone = ('nez051', 0.002787120117346505) + +[fips3115541392] +centroid = (0.71718460503042036, -1.6863775625556898) +description = Richland township, NE +station = ('kahq', 0.0024323868108369413) +zone = ('nez051', 0.0023548226104056825) + +[fips3115541900] +centroid = (0.71708925769338394, -1.6883811132705167) +description = Rock Creek township, NE +station = ('kahq', 0.0030897030519639259) +zone = ('nez051', 0.0027718845989760221) + +[fips3115545750] +centroid = (0.72157155991847821, -1.6862625628112762) +description = South Cedar township, NE +station = ('kahq', 0.0019830660097997425) +zone = ('nez051', 0.0020598986524912226) + +[fips3115547255] +centroid = (0.71863050559594266, -1.6863010822278677) +description = Stocking township, NE +station = ('kahq', 0.00099696281582821542) +zone = ('nez051', 0.00093588941226266202) + +[fips3115549810] +centroid = (0.72005523531763815, -1.6827655338555176) +description = Union township, NE +station = ('kahq', 0.0024656094739431648) +zone = ('nez051', 0.0029594390243299603) + +[fips3115550965] +centroid = (0.71933718941007507, -1.6862781136949112) +description = Wahoo city, NE +station = ('kahq', 0.00034098854035356161) +zone = ('nez051', 0.00033368503200257872) + +[fips3115551000] +centroid = (0.7185367465085255, -1.6845001118793197) +description = Wahoo township, NE +station = ('kahq', 0.0015434794623314229) +zone = ('nez051', 0.0018918764825607388) + +[fips3115570] +centroid = (0.708424430995518, -1.7429147635071205) +description = Elwood village, NE +station = ('klxn', 0.0036881189899356805) +zone = ('nez072', 0.0013707085959492049) + +[fips3115605] +centroid = (0.72745408744257001, -1.7279684793780345) +description = Elyria village, NE +station = ('kodx', 0.001320570614452994) +zone = ('nez039', 0.0019913843307334893) + +[fips31157] +centroid = (0.73044802524144103, -1.8100087106122866) +description = Scotts Bluff County, NE +station = ('kbff', 0.0014010103032213563) +zone = ('nez019', 3.2741106584633179e-05) + +[fips3115710] +centroid = (0.7378938790831292, -1.6881922337388662) +description = Emerson village, NE +station = ('klcg', 0.0033563053530852138) +zone = ('nez014', 0.0028695417793624719) + +[fips3115790460] +centroid = (0.72842337349595765, -1.8064767052583182) +description = Castle Rock precinct, NE +station = ('kbff', 0.0026097380710413919) +zone = ('nez019', 0.0033333697677117697) + +[fips3115790703] +centroid = (0.73122293397603411, -1.8066002396627745) +description = Dewey Tabor precinct, NE +station = ('kbff', 0.00126979955769323) +zone = ('nez019', 0.0026853393171172245) + +[fips3115790830] +centroid = (0.73086292491122518, -1.8084782139379201) +description = East Winters Creek precinct, NE +station = ('kbff', 0.0002806887214286394) +zone = ('nez019', 0.001245051149770517) + +[fips3115790980] +centroid = (0.73226878762370662, -1.810956947994895) +description = Fanning precinct, NE +station = ('kbff', 0.0025990528579865778) +zone = ('nez019', 0.0019590676374578687) + +[fips3115791005] +centroid = (0.73259612412491815, -1.8138398304934618) +description = Ford precinct, NE +station = ('ktor', 0.0031959844844731728) +zone = ('nez019', 0.0035579713746743411) + +[fips3115791045] +centroid = (0.73244860889653962, -1.808746680483462) +description = Funston precinct, NE +station = ('kbff', 0.0017912359695345503) +zone = ('nez019', 0.0022375919481033256) + +[fips3115791093] +centroid = (0.73002785467731601, -1.809293125618969) +description = Gering city, NE +station = ('kbff', 0.0010853774366308335) +zone = ('nez019', 0.00069065465550484839) + +[fips3115791095] +centroid = (0.72894077635271137, -1.809215720266643) +description = Gering precinct, NE +station = ('kbff', 0.0019370381128483364) +zone = ('nez019', 0.0016134211006845756) + +[fips3115791425] +centroid = (0.73095368203232891, -1.8048480687201123) +description = Highland precinct, NE +station = ('kbff', 0.0024788397060415148) +zone = ('nez019', 0.003906167728628267) + +[fips3115791635] +centroid = (0.72994943703402393, -1.8144493343748433) +description = Kiowa precinct, NE +station = ('ktor', 0.0046647889981857238) +zone = ('nez019', 0.0033157687342939089) + +[fips3115792013] +centroid = (0.73203753149781736, -1.8118235912349729) +description = Mitchell city, NE +station = ('kbff', 0.003031395477385818) +zone = ('nez019', 0.0020814204042263066) + +[fips3115792015] +centroid = (0.73083185805053974, -1.81166787295911) +description = Mitchell precinct, NE +station = ('kbff', 0.0026141349966560049) +zone = ('nez019', 0.0012727049405740593) + +[fips3115792800] +centroid = (0.72866806865708722, -1.8115583360952547) +description = Roubadeau precinct, NE +station = ('kbff', 0.0032536896688358185) +zone = ('nez019', 0.0020923769478860144) + +[fips3115792883] +centroid = (0.73071855127550023, -1.809243645534675) +description = Scottsbluff city, NE +station = ('kbff', 0.0008061988496132252) +zone = ('nez019', 0.00066331370830805827) + +[fips3115793460] +centroid = (0.73113945487791121, -1.8101192074072305) +description = West Winters Creek precinct, NE +station = ('kbff', 0.0015195216856367405) +zone = ('nez019', 0.00071078104835160458) + +[fips3115815] +centroid = (0.74134079963606292, -1.7245476514974181) +description = Emmet village, NE +station = ('konl', 0.0016293452350257212) +zone = ('nez010', 0.00047920803835855614) + +[fips3115885] +centroid = (0.7060715351776119, -1.7721299520293012) +description = Enders CDP, NE +station = ('kiml', 0.0015232843907633149) +zone = ('nez069', 0.0024708445400176597) + +[fips31159] +centroid = (0.71334999449074121, -1.6954195199983269) +description = Seward County, NE +station = ('klnk', 0.0049794494878246552) +zone = ('nez065', 1.3206498259820935e-05) + +[fips3115920] +centroid = (0.69956632653628603, -1.6946341567415144) +description = Endicott village, NE +station = ('kbie', 0.005971169546935863) +zone = ('nez088', 0.0017493268420198016) + +[fips3115992614] +centroid = (0.71558200880465417, -1.6923074583156807) +description = Precinct A, NE +station = ('klnk', 0.0038840976063464405) +zone = ('nez065', 0.0032290369482640864) + +[fips3115992615] +centroid = (0.71572222855675949, -1.6942285247700584) +description = Precinct B, NE +station = ('klnk', 0.0050506167628903784) +zone = ('nez065', 0.0025271824144967037) + +[fips3115992620] +centroid = (0.71562724773886588, -1.6963936406137425) +description = Precinct C, NE +station = ('klnk', 0.0063874786762219025) +zone = ('nez065', 0.0023909004975440247) + +[fips3115992625] +centroid = (0.71555212876786012, -1.6983685853821293) +description = Precinct D, NE +station = ('kjyr', 0.0044952009658784072) +zone = ('nez065', 0.0031364782763249185) + +[fips3115992630] +centroid = (0.71426084692077207, -1.6982436372609788) +description = Precinct E, NE +station = ('kjyr', 0.0042556133499086768) +zone = ('nez065', 0.0023291805573702707) + +[fips3115992635] +centroid = (0.71418775253169853, -1.6964723026031299) +description = Precinct F, NE +station = ('klnk', 0.0059239896586862914) +zone = ('nez065', 0.0011590661829489603) + +[fips3115992640] +centroid = (0.71412856841676342, -1.6943537521438889) +description = Precinct G, NE +station = ('klnk', 0.0043742897922760381) +zone = ('nez065', 0.0011076773099791995) + +[fips3115992645] +centroid = (0.71398827885148808, -1.6922322346249197) +description = Precinct H, NE +station = ('klnk', 0.0028430227054838976) +zone = ('nez065', 0.0024797278926078328) + +[fips3115992650] +centroid = (0.71253084165961023, -1.6925368643925629) +description = Precinct I, NE +station = ('klnk', 0.0027580216300825463) +zone = ('nez065', 0.0023206347920893453) + +[fips3115992655] +centroid = (0.71263156461074284, -1.6943709785436061) +description = Precinct J, NE +station = ('klnk', 0.0041420559114384381) +zone = ('nez065', 0.0010657383409138725) + +[fips3115992660] +centroid = (0.71257896038708779, -1.6963130238555928) +description = Precinct K, NE +station = ('klnk', 0.0056121900168709582) +zone = ('nez065', 0.0010376919904406833) + +[fips3115992661] +centroid = (0.71274919980232732, -1.6984760627574671) +description = Precinct L, NE +station = ('kjyr', 0.0041848466270260239) +zone = ('nez065', 0.0024015087906396893) + +[fips3115992664] +centroid = (0.71097118053344299, -1.6985587040975489) +description = Precinct M, NE +station = ('kjyr', 0.0048853495245679314) +zone = ('nez065', 0.0033749471510363619) + +[fips3115992672] +centroid = (0.71105162275866751, -1.696378927488148) +description = Precinct N, NE +station = ('klnk', 0.0058932661060946707) +zone = ('nez065', 0.0024198251505483169) + +[fips3115992675] +centroid = (0.7110967744264165, -1.6944237398468942) +description = Precinct O, NE +station = ('klnk', 0.0044726287513593525) +zone = ('nez065', 0.0023781666246029251) + +[fips3115992680] +centroid = (0.71120458341431225, -1.6924827417324586) +description = Precinct P, NE +station = ('klnk', 0.0030879605010582351) +zone = ('nez065', 0.003085201172007352) + +[fips3115992907] +centroid = (0.71400042634308192, -1.6946465485792037) +description = Seward city, NE +station = ('klnk', 0.0045449642346418722) +zone = ('nez065', 0.00086196574232600797) + +[fips3116025] +centroid = (0.72920627583852471, -1.7222660523794562) +description = Ericson village, NE +station = ('kodx', 0.0045476910137023704) +zone = ('nez029', 0.0030530873083428182) + +[fips31161] +centroid = (0.74188839668887618, -1.7870373502226529) +description = Sheridan County, NE +station = ('kien', 0.0093278981292245176) +zone = ('nez004', 0.00025150424837543746) + +[fips3116165] +centroid = (0.7097298849161322, -1.7458450142415864) +description = Eustis village, NE +station = ('klxn', 0.0040024112193034721) +zone = ('nez072', 0.0037114702251272507) + +[fips3116190795] +centroid = (0.7463869304760139, -1.7830538980043638) +description = East Gordon precinct, NE +station = ('kien', 0.006525883760248331) +zone = ('nez004', 0.0055405487666683184) + +[fips3116191167] +centroid = (0.74711317943106137, -1.7837952266041481) +description = Gordon city, NE +station = ('kien', 0.0056266499604870979) +zone = ('nez004', 0.0058858119189431068) + +[fips3116191355] +centroid = (0.7462547915983454, -1.7921618114394335) +description = Hay Springs precinct, NE +station = ('kien', 0.005268632132919864) +zone = ('nez004', 0.0056409714889761051) + +[fips3116192005] +centroid = (0.74081351821574282, -1.7915804771721793) +description = Mirage precinct, NE +station = ('kaia', 0.0071694533683701383) +zone = ('nez004', 0.0032705499567608691) + +[fips3116192185] +centroid = (0.74810756331909256, -1.7888388267166839) +description = North Rushville precinct, NE +station = ('kien', 0.002981273319725117) +zone = ('nez004', 0.0063507780524090889) + +[fips3116192808] +centroid = (0.74548911565549558, -1.7883788975521984) +description = Rushville city, NE +station = ('kien', 0.0056208924981951888) +zone = ('nez004', 0.0037147424850412268) + +[fips3116193015] +centroid = (0.74474073592553292, -1.7875521001789436) +description = South Rushville precinct, NE +station = ('kien', 0.0064542710317181213) +zone = ('nez004', 0.0028949913172129004) + +[fips3116193017] +centroid = (0.73762810034463555, -1.7868495353418459) +description = South Sheridan precinct, NE +station = ('kaia', 0.0065951755643260399) +zone = ('nez004', 0.0042383646123878849) + +[fips3116193425] +centroid = (0.74544591875650867, -1.7843202041898556) +description = West Gordon precinct, NE +station = ('kien', 0.0066887179337884834) +zone = ('nez004', 0.0042417466590798734) + +[fips3116193555] +centroid = (0.74876649492489045, -1.7844141029036129) +description = Wounded Knee precinct, NE +station = ('kien', 0.0042262255136790976) +zone = ('nez004', 0.0072517451645032647) + +[fips3116270] +centroid = (0.73756495433229841, -1.7164221838982958) +description = Ewing village, NE +station = ('konl', 0.0056806523439088931) +zone = ('nez016', 0.0038594183861469043) + +[fips31163] +centroid = (0.71940277888336512, -1.7274020851291771) +description = Sherman County, NE +station = ('kodx', 0.0069515137609942766) +zone = ('nez046', 5.470779859718973e-05) + +[fips3116340] +centroid = (0.70938104595853602, -1.7008022899444024) +description = Exeter village, NE +station = ('kjyr', 0.0049651317377449019) +zone = ('nez077', 0.0028649433497942921) + +[fips3116390097] +centroid = (0.72081714134930364, -1.7246683061086086) +description = Ashton precinct, NE +station = ('kodx', 0.005800952274999137) +zone = ('nez046', 0.0025151474988756367) + +[fips3116390482] +centroid = (0.72098882938782249, -1.7290759082417175) +description = Central Loup City precinct, NE +station = ('kodx', 0.0055795628953783077) +zone = ('nez046', 0.0019723859900714737) + +[fips3116391327] +centroid = (0.71814523425071808, -1.729977318440495) +description = Harrison precinct, NE +station = ('kear', 0.0073870150832516558) +zone = ('nez046', 0.0022895789237243752) + +[fips3116392167] +centroid = (0.72120818236821305, -1.7265530348079594) +description = North Loup City precinct, NE +station = ('kodx', 0.0051507361448108685) +zone = ('nez046', 0.0019017741689148816) + +[fips3116392777] +centroid = (0.71778051279692889, -1.725993307716845) +description = Rockville precinct, NE +station = ('kear', 0.0069958509284304225) +zone = ('nez046', 0.0019886882920804429) + +[fips3116392992] +centroid = (0.71966189046411622, -1.7262571665931616) +description = South Loup City precinct, NE +station = ('kodx', 0.0067093325711293341) +zone = ('nez046', 0.00093474315782135378) + +[fips3116410] +centroid = (0.70063668460665662, -1.6960499154708546) +description = Fairbury city, NE +station = ('kbie', 0.0063058291924833068) +zone = ('nez088', 0.00072100046849969137) + +[fips3116445] +centroid = (0.70567695114032103, -1.7122245274209094) +description = Fairfield city, NE +station = ('khsi', 0.005267682954458887) +zone = ('nez076', 0.0017494467482784941) + +[fips31165] +centroid = (0.74148229347852213, -1.810650031845932) +description = Sioux County, NE +station = ('ktor', 0.0092201692077104533) +zone = ('nez095', 0.0040387089519392082) + +[fips3116550] +centroid = (0.70918197370405356, -1.7032301302003892) +description = Fairmont village, NE +station = ('kjyr', 0.0046225651116425584) +zone = ('nez077', 0.0018959623786092567) + +[fips3116590320] +centroid = (0.74475874772341344, -1.8113470465360082) +description = Bowen precinct, NE +station = ('ktor', 0.011837715991183394) +zone = ('nez095', 0.00075708731032972474) + +[fips3116592910] +centroid = (0.734966804847902, -1.8111012692707424) +description = Sheep Creek precinct, NE +station = ('kbff', 0.0047839432304352279) +zone = ('nez096', 0.0018581345682525555) + +[fips3116593465] +centroid = (0.73950956527828537, -1.8084548265259435) +description = Whistle Creek precinct, NE +station = ('kbff', 0.0088010821361051341) +zone = ('nez096', 0.0031662822796769698) + +[fips3116655] +centroid = (0.69925173093861404, -1.6685070141714724) +description = Falls City city, NE +station = ('kfnb', 0.00039035283392438132) +zone = ('nez093', 0.0019020223122248922) + +[fips31167] +centroid = (0.73137661021667211, -1.6960188835167542) +description = Stanton County, NE +station = ('kofk', 0.0036262644297885148) +zone = ('nez032', 0.00032550056135046172) + +[fips3116725] +centroid = (0.71046238214990165, -1.7490902969060371) +description = Farnam village, NE +station = ('klxn', 0.0059801213975657283) +zone = ('nez071', 0.0038837639188275784) + +[fips3116760] +centroid = (0.71934832461070286, -1.721384294588056) +description = Farwell village, NE +station = ('kgri', 0.0059713419970700149) +zone = ('nez047', 0.0014586791697546314) + +[fips3116790430] +centroid = (0.73090153159427929, -1.6964793362800152) +description = Butterfly precinct, NE +station = ('kofk', 0.0035354722238216986) +zone = ('nez032', 0.00069101093920804373) + +[fips3116790700] +centroid = (0.73381502716792602, -1.696119781000812) +description = Dewey precinct, NE +station = ('kofk', 0.0034479992296375505) +zone = ('nez032', 0.0022356204582268556) + +[fips3116790715] +centroid = (0.72917433631321327, -1.6982319086484055) +description = Dimick precinct, NE +station = ('kofk', 0.0039623965938893196) +zone = ('nez032', 0.0027883239078932216) + +[fips3116790880] +centroid = (0.73237904007255517, -1.6983735246639122) +description = Elkhorn precinct, NE +station = ('kofk', 0.0016468187871224137) +zone = ('nez032', 0.0016989070416995606) + +[fips3116791340] +centroid = (0.73095624766632927, -1.6944111560229871) +description = Haymow precinct, NE +station = ('kofk', 0.0048934622262814132) +zone = ('nez032', 0.0015770562030214676) + +[fips3116791615] +centroid = (0.73214392676901896, -1.6942036887348026) +description = Kingsburg precinct, NE +station = ('kofk', 0.0047442419819000731) +zone = ('nez032', 0.0016938230387019853) + +[fips3116791925] +centroid = (0.7294376890440466, -1.6944959615713415) +description = Maple Creek precinct, NE +station = ('kofk', 0.0055811075166056524) +zone = ('nez032', 0.0025554534278763) + +[fips3116792365] +centroid = (0.73366611567614581, -1.6943952386202088) +description = Pilger precinct, NE +station = ('klcg', 0.0038175517866134386) +zone = ('nez032', 0.0025388378960174902) + +[fips3116792695] +centroid = (0.72935803221698559, -1.6962880831005818) +description = Ramshorn precinct, NE +station = ('kofk', 0.0046338165230062726) +zone = ('nez032', 0.0022286735142765246) + +[fips3116793045] +centroid = (0.73380726045275457, -1.6982275278719829) +description = Spring Branch precinct, NE +station = ('kofk', 0.0020139725702610664) +zone = ('nez032', 0.0026217980468083739) + +[fips3116793068] +centroid = (0.73213083679962898, -1.6966814454073964) +description = Stanton city, NE +station = ('kofk', 0.002929037991619093) +zone = ('nez032', 0.00059678841350878288) + +[fips3116793075] +centroid = (0.73238108210777997, -1.696351665445232) +description = Stanton precinct, NE +station = ('kofk', 0.0031297774845038136) +zone = ('nez032', 0.00079491146733323172) + +[fips3116793265] +centroid = (0.73107767022239056, -1.6984105954572246) +description = Union Creek precinct, NE +station = ('kofk', 0.0022977184522338608) +zone = ('nez032', 0.0016132523054766747) + +[fips3116830] +centroid = (0.70310941473100463, -1.6848350056561923) +description = Filley village, NE +station = ('kbie', 0.0028879434227072811) +zone = ('nez089', 0.002108478885647564) + +[fips31169] +centroid = (0.70116586843586137, -1.7033761269923184) +description = Thayer County, NE +station = ('khjh', 0.00039732918243239485) +zone = ('nez087', 4.7080562495482758e-05) + +[fips3116935] +centroid = (0.70745814690844377, -1.6860859878508516) +description = Firth village, NE +station = ('kbie', 0.0045180739790630572) +zone = ('nez066', 0.0044924644869872984) + +[fips3116990018] +centroid = (0.7020326687555718, -1.7003060055715979) +description = Alexandria precinct, NE +station = ('khjh', 0.0025458553240409239) +zone = ('nez087', 0.002467103244038826) + +[fips3116990390] +centroid = (0.70334826303914011, -1.702949428896791) +description = Bruning precinct, NE +station = ('khjh', 0.0025677105101077923) +zone = ('nez087', 0.0021613518101574582) + +[fips3116990498] +centroid = (0.69880166288440237, -1.7031952759752271) +description = Chester precinct, NE +station = ('khjh', 0.0019868657278403921) +zone = ('nez087', 0.0024099829044528192) + +[fips3116990660] +centroid = (0.70286007699406472, -1.7059077270723364) +description = Davenport precinct, NE +station = ('khjh', 0.0029197274607256581) +zone = ('nez087', 0.0025571555946698674) + +[fips3116990690] +centroid = (0.70050714626957367, -1.7058252428118872) +description = Deshler precinct, NE +station = ('khjh', 0.0020162144740298645) +zone = ('nez087', 0.0020172747919481467) + +[fips3116991357] +centroid = (0.70106673373434814, -1.7032175463764823) +description = Hebron city, NE +station = ('khjh', 0.00027827125435340907) +zone = ('nez087', 0.00017462586712781012) + +[fips3116991358] +centroid = (0.70161022926341921, -1.7028901575153934) +description = Hebron North precinct, NE +station = ('khjh', 0.00085808167208717325) +zone = ('nez087', 0.00053379308505525425) + +[fips3116991359] +centroid = (0.70032062293241304, -1.7028607836240823) +description = Hebron South precinct, NE +station = ('khjh', 0.00053999444856222298) +zone = ('nez087', 0.00096378116327387579) + +[fips3117040] +centroid = (0.72497929782970472, -1.6829719713994433) +description = Fontanelle CDP, NE +station = ('kfet', 0.0019341180678681053) +zone = ('nez045', 0.0026862830724254739) + +[fips31171] +centroid = (0.73039620641594938, -1.7541765179589066) +description = Thomas County, NE +station = ('ktif', 0.0021354537599356876) +zone = ('nez025', 0.0012984044938662012) + +[fips3117110] +centroid = (0.74522447138101566, -1.6993009577218372) +description = Fordyce village, NE +station = ('kykn', 0.0038217442550426348) +zone = ('nez012', 0.0022342240524791525) + +[fips3117145] +centroid = (0.72354800567002164, -1.6759735327115042) +description = Fort Calhoun city, NE +station = ('kbta', 0.0013806392314236599) +zone = ('nez052', 0.0032725238213059671) + +[fips3117193187] +centroid = (0.73039620641594938, -1.7541765179589066) +description = Thomas precinct, NE +station = ('ktif', 0.0021354537599356876) +zone = ('nez025', 0.0012984044938662012) + +[fips31173] +centroid = (0.73572715753653339, -1.6848351452825323) +description = Thurston County, NE +station = ('ksux', 0.0044492909155100374) +zone = ('nez015', 0.00014996208225621666) + +[fips3117301377] +centroid = (0.73427732998019413, -1.6813082013833947) +description = Anderson township, NE +station = ('ksux', 0.005491817792244837) +zone = ('nez015', 0.0031411972806105006) + +[fips3117305122] +centroid = (0.73549780381952889, -1.6816528864573712) +description = Blackbird township, NE +station = ('ksux', 0.0042507033723832542) +zone = ('nez015', 0.0025089346362164753) + +[fips3117306907] +centroid = (0.73530534636291145, -1.6857284397002883) +description = Bryan township, NE +station = ('ksux', 0.0051343107187890721) +zone = ('nez015', 0.00072521855430233778) + +[fips3117312402] +centroid = (0.73398357361379107, -1.6837573521095484) +description = Dawes township, NE +station = ('ksux', 0.0058588183723799585) +zone = ('nez015', 0.0020406446965453356) + +[fips3117317022] +centroid = (0.73655172088834553, -1.6880132851306591) +description = Flournoy township, NE +station = ('klcg', 0.0035012908251685782) +zone = ('nez015', 0.0023475803847676337) + +[fips3117320] +centroid = (0.73783268783955425, -1.7045774371164664) +description = Foster village, NE +station = ('kofk', 0.0059041915924060778) +zone = ('nez017', 0.00084328213858046622) + +[fips3117331832] +centroid = (0.73697621986901574, -1.6859200244922796) +description = Merry township, NE +station = ('ksux', 0.0038883301293706519) +zone = ('nez015', 0.0013553946218041936) + +[fips3117337017] +centroid = (0.73560585715351978, -1.6838750047544253) +description = Omaha township, NE +station = ('ksux', 0.0043037840659014047) +zone = ('nez015', 0.00086515789974171253) + +[fips3117338767] +centroid = (0.73524567355578574, -1.6873375110975792) +description = Pender township, NE +station = ('klcg', 0.0044165999555916234) +zone = ('nez015', 0.0018107512460141272) + +[fips3117338907] +centroid = (0.73732823532585035, -1.6881095923987839) +description = Perry township, NE +station = ('klcg', 0.0033579630609578493) +zone = ('nez015', 0.0027570426093064173) + +[fips3117348672] +centroid = (0.73535721754828076, -1.6892506712104454) +description = Thayer township, NE +station = ('klcg', 0.0031511495185713961) +zone = ('nez033', 0.0037780317963651789) + +[fips3117353295] +centroid = (0.73713303770230731, -1.683266844776568) +description = Winnebago township, NE +station = ('ksux', 0.0027115345786531027) +zone = ('nez015', 0.0018576786373047183) + +[fips31175] +centroid = (0.72543029090841993, -1.727587700895127) +description = Valley County, NE +station = ('kodx', 0.0010163508177160445) +zone = ('nez039', 5.9656048388872356e-05) + +[fips3117501885] +centroid = (0.72322866277678433, -1.7305723186357922) +description = Arcadia township, NE +station = ('kodx', 0.0041071244049095748) +zone = ('nez039', 0.0031915564561491557) + +[fips3117512385] +centroid = (0.72322531174462046, -1.7265517607176055) +description = Davis Creek township, NE +station = ('kodx', 0.0031407893538659762) +zone = ('nez039', 0.0023837066306660777) + +[fips3117515640] +centroid = (0.72781428849359664, -1.7281473756263639) +description = Elyria township, NE +station = ('kodx', 0.0016973628534573512) +zone = ('nez039', 0.0023690656087050001) + +[fips3117515990] +centroid = (0.72474055424132433, -1.7265507135200544) +description = Enterprise township, NE +station = ('kodx', 0.0016425796007446081) +zone = ('nez039', 0.0010614654670786322) + +[fips3117516130] +centroid = (0.72775615157621265, -1.7305721964627447) +description = Eureka township, NE +station = ('kodx', 0.0030155080112403525) +zone = ('nez039', 0.003197032349569555) + +[fips3117518545] +centroid = (0.72624642431994513, -1.7305719172100642) +description = Geranium township, NE +station = ('kodx', 0.0026699666661016389) +zone = ('nez039', 0.002377452962127834) + +[fips3117523760] +centroid = (0.72322461361291956, -1.7245398498756617) +description = Independent township, NE +station = ('kodx', 0.0036270989791520312) +zone = ('nez039', 0.0031986277509746842) + +[fips3117527085] +centroid = (0.72474634873444099, -1.7304721716433129) +description = Liberty township, NE +station = ('kodx', 0.0030495654855984423) +zone = ('nez039', 0.0023016594530600037) + +[fips3117530] +centroid = (0.6998167987372399, -1.72702816579023) +description = Franklin city, NE +station = ('khde', 0.007994895935370349) +zone = ('nez084', 0.0013920214958730967) + +[fips3117531850] +centroid = (0.72624954845930612, -1.7285606870465287) +description = Michigan township, NE +station = ('kodx', 0.0011685076527107978) +zone = ('nez039', 0.0010689843224041986) + +[fips3117534475] +centroid = (0.72775838559765527, -1.725046431691053) +description = Noble township, NE +station = ('kodx', 0.0020315414803501897) +zone = ('nez039', 0.0029482658085500969) + +[fips3117534860] +centroid = (0.72489210118027503, -1.7247247675099104) +description = North Loup township, NE +station = ('kodx', 0.0022415791430886365) +zone = ('nez039', 0.0022034691161541956) + +[fips3117537315] +centroid = (0.72649186997265303, -1.7267414431007122) +description = Ord township, NE +station = ('kodx', 0.00024301738323768049) +zone = ('nez039', 0.0011773103597833023) + +[fips3117546485] +centroid = (0.7262801789876786, -1.7242353073744812) +description = Springdale township, NE +station = ('kodx', 0.0020705293669064781) +zone = ('nez039', 0.0026102914375991776) + +[fips3117550755] +centroid = (0.72473748246184089, -1.7285595700358074) +description = Vinton township, NE +station = ('kodx', 0.0019871902149123355) +zone = ('nez039', 0.0010584159287471901) + +[fips3117554010] +centroid = (0.72322344424232088, -1.7285618389638351) +description = Yale township, NE +station = ('kodx', 0.0033351690271198617) +zone = ('nez039', 0.0023839393117920057) + +[fips3117670] +centroid = (0.72329388573093134, -1.6840847235173451) +description = Fremont city, NE +station = ('kfet', 0.00036642998586513002) +zone = ('nez044', 0.0031918444075866134) + +[fips31177] +centroid = (0.72490468500418193, -1.6794356376289301) +description = Washington County, NE +station = ('kbta', 0.0024139732857399784) +zone = ('nez045', 6.1954858440418193e-05) + +[fips3117705350] +centroid = (0.72503691114831303, -1.6778772854997019) +description = Blair city, NE +station = ('kbta', 0.002130930645883163) +zone = ('nez045', 0.001144876297534265) + +[fips3117749125] +centroid = (0.72304760232018239, -1.6760099577329932) +description = Township 1, NE +station = ('kbta', 0.0012073897767518669) +zone = ('nez052', 0.0028387794169244802) + +[fips3117749126] +centroid = (0.72421503560354883, -1.6775050067702515) +description = Township 2, NE +station = ('kbta', 0.0013020609383909293) +zone = ('nez045', 0.0015476730820258551) + +[fips3117749129] +centroid = (0.72664043239858278, -1.6798056125237679) +description = Township 5, NE +station = ('ktqe', 0.0024636571209724943) +zone = ('nez045', 0.0018132076368688923) + +[fips3117749130] +centroid = (0.72501809649897653, -1.6808733875068453) +description = Township 6, NE +station = ('kfet', 0.0031638137268036825) +zone = ('nez045', 0.0011244306145214715) + +[fips3117749131] +centroid = (0.72301009519455706, -1.6800772381152558) +description = Township 7, NE +station = ('kbta', 0.001852121355147849) +zone = ('nez045', 0.0019154239580977484) + +[fips3117775] +centroid = (0.7094853119280502, -1.6979225315851969) +description = Friend city, NE +station = ('kjyr', 0.0062073618820653719) +zone = ('nez078', 0.0029099484513477368) + +[fips3117810] +centroid = (0.72193546106751905, -1.7099382333672595) +description = Fullerton city, NE +station = ('kbvn', 0.0064537596581815595) +zone = ('nez041', 0.00064009389605845411) + +[fips3117880] +centroid = (0.70621346535238405, -1.7322539084635038) +description = Funk village, NE +station = ('khde', 0.0011189825270358073) +zone = ('nez073', 0.0023287140044068069) + +[fips31179] +centroid = (0.73671649742302636, -1.6951727304420949) +description = Wayne County, NE +station = ('klcg', 0.0019483430107432767) +zone = ('nez018', 9.3723357290834462e-05) + +[fips3117950] +centroid = (0.723783660025626, -1.7533287417280428) +description = Gandy village, NE +station = ('klbf', 0.0067408478967878119) +zone = ('nez037', 0.0017186178943729166) + +[fips3117990350] +centroid = (0.73533557546555595, -1.6942096228542594) +description = Brenna precinct, NE +station = ('klcg', 0.0022435397005008836) +zone = ('nez018', 0.00149081301700987) + +[fips3117990490] +centroid = (0.73701590865620603, -1.6965071742815847) +description = Chapin precinct, NE +station = ('klcg', 0.0028699479875627862) +zone = ('nez018', 0.0011263432012337915) + +[fips3117990670] +centroid = (0.73845610199507417, -1.6963812138694681) +description = Deer Creek precinct, NE +station = ('klcg', 0.0030139652594235243) +zone = ('nez018', 0.002022190980081516) + +[fips3117991085] +centroid = (0.73695799863162492, -1.6982324671537661) +description = Garfield precinct, NE +station = ('kofk', 0.0045432452604928482) +zone = ('nez018', 0.002371055689970735) + +[fips3117991300] +centroid = (0.7352684326492317, -1.6964393856934372) +description = Hancock precinct, NE +station = ('klcg', 0.0034435322548789058) +zone = ('nez018', 0.001754293209532985) + +[fips3117991470] +centroid = (0.73538870328798667, -1.6983368552963281) +description = Hoskins precinct, NE +station = ('kofk', 0.0031038460745868982) +zone = ('nez018', 0.0027605418038983251) + +[fips3117991490] +centroid = (0.73676548881512982, -1.6924219344613189) +description = Hunter precinct, NE +station = ('klcg', 0.00051762521741485063) +zone = ('nez018', 0.0019491631301090527) + +[fips3117991725] +centroid = (0.73532292182847891, -1.6907348468464638) +description = Leslie precinct, NE +station = ('klcg', 0.0023957707308773901) +zone = ('nez033', 0.00390100538689616) + +[fips3117991835] +centroid = (0.73701620536217893, -1.6904198323697712) +description = Logan precinct, NE +station = ('klcg', 0.0016645594216312439) +zone = ('nez018', 0.0034457118388776984) + +[fips3117992440] +centroid = (0.7353352263997055, -1.6922312223339537) +description = Plum Creek precinct, NE +station = ('klcg', 0.0019451990140993811) +zone = ('nez018', 0.0024906650572018973) + +[fips3117992945] +centroid = (0.73844655504406576, -1.6983281984632381) +description = Sherman precinct, NE +station = ('klcg', 0.004370648224356519) +zone = ('nez018', 0.0029946835697543164) + +[fips3117993125] +centroid = (0.73689459081989994, -1.6943005894148733) +description = Strahan precinct, NE +station = ('klcg', 0.0012783925818546837) +zone = ('nez018', 0.00059278734460800945) + +[fips3117993495] +centroid = (0.73835220254470291, -1.6941767059445667) +description = Wilbur precinct, NE +station = ('klcg', 0.0015768983780802908) +zone = ('nez018', 0.0017843194699710618) + +[fips31181] +centroid = (0.70128456827828956, -1.7191247040719613) +description = Webster County, NE +station = ('khsi', 0.0073703353165075819) +zone = ('nez085', 7.6137768576924576e-05) + +[fips3118190717] +centroid = (0.70042502852826727, -1.7171976162316644) +description = District 1, NE +station = ('khsi', 0.008200663546656814) +zone = ('nez085', 0.0016846749474642433) + +[fips3118190719] +centroid = (0.70351026450031018, -1.7191453164104276) +description = District 2, NE +station = ('khsi', 0.0051692703767182149) +zone = ('nez085', 0.0022998035441163696) + +[fips3118190721] +centroid = (0.70025918734274284, -1.7212345627915275) +description = District 3, NE +station = ('khsi', 0.0087039411058161386) +zone = ('nez085', 0.0018573344348724724) + +[fips3118190722] +centroid = (0.70394071505372968, -1.7182377451993904) +description = District 4, NE +station = ('khsi', 0.0046669003528025657) +zone = ('nez085', 0.0028171647431954236) + +[fips3118190723] +centroid = (0.69967291379370533, -1.7195259203604101) +description = District 5, NE +station = ('khsi', 0.0090075770847180704) +zone = ('nez085', 0.0015645228132129066) + +[fips3118230] +centroid = (0.71461785401926747, -1.6927126714081164) +description = Garland village, NE +station = ('klnk', 0.003477263134667299) +zone = ('nez065', 0.0023935745741156585) + +[fips31183] +centroid = (0.73195372078713672, -1.7195383296513915) +description = Wheeler County, NE +station = ('kodx', 0.0079003822338244416) +zone = ('nez029', 0.00040970957251956265) + +[fips3118300] +centroid = (0.7186470338639589, -1.6958197239958093) +description = Garrison village, NE +station = ('kolu', 0.0052849371038068121) +zone = ('nez050', 0.00095327295204841137) + +[fips3118390130] +centroid = (0.73195372078713672, -1.7195383296513915) +description = Bartlett precinct, NE +station = ('kodx', 0.0079003822338244416) +zone = ('nez029', 0.00040970957251956265) + +[fips3118390925] +centroid = (0.73096167564030312, -1.7230205058552155) +description = Ericson precinct, NE +station = ('kodx', 0.0054878716571606619) +zone = ('nez029', 0.0025832988444182896) + +[fips3118405] +centroid = (0.7073739696786201, -1.7034252056508847) +description = Geneva city, NE +station = ('kjyr', 0.0064151848902185196) +zone = ('nez077', 9.1168172120171867e-05) + +[fips3118475] +centroid = (0.72336696266671241, -1.7057673851471835) +description = Genoa city, NE +station = ('kolu', 0.0052325871418170602) +zone = ('nez042', 0.0035334924854674285) + +[fips31185] +centroid = (0.71336940255202341, -1.7033844871194357) +description = York County, NE +station = ('kjyr', 0.00053650439974476879) +zone = ('nez064', 6.5028162092841639e-06) + +[fips3118580] +centroid = (0.73002785467731601, -1.809293125618969) +description = Gering city, NE +station = ('kbff', 0.0010853774366308335) +zone = ('nez019', 0.00069065465550484839) + +[fips3118590080] +centroid = (0.71576319143430378, -1.7062345050681873) +description = Arborville precinct, NE +station = ('kjyr', 0.0026833914915543001) +zone = ('nez064', 0.0032196372011387428) + +[fips3118590115] +centroid = (0.71261077773935166, -1.7045675760061927) +description = Baker precinct, NE +station = ('kjyr', 0.0012939278772804946) +zone = ('nez064', 0.0011666893047700181) + +[fips3118590170] +centroid = (0.71271565457410391, -1.7002079704275135) +description = Beaver precinct, NE +station = ('kjyr', 0.0029454544734187679) +zone = ('nez064', 0.0024933886664524401) + +[fips3118590340] +centroid = (0.71409195140905646, -1.7063193978830042) +description = Bradshaw precinct, NE +station = ('kjyr', 0.0019002705351913063) +zone = ('nez064', 0.002330170867084206) + +[fips3118590370] +centroid = (0.71259498250962106, -1.7063748818999251) +description = Brown precinct, NE +station = ('kjyr', 0.0022552569187677565) +zone = ('nez064', 0.0023849591230503779) + +[fips3118591350] +centroid = (0.71113943027333537, -1.7044334649064694) +description = Hays precinct, NE +station = ('kjyr', 0.0026800948930448699) +zone = ('nez064', 0.0023613042589178952) + +[fips3118591370] +centroid = (0.71096585727922446, -1.7062800581616644) +description = Henderson precinct, NE +station = ('kjyr', 0.0033676430917915241) +zone = ('nez064', 0.00324635688151434) + +[fips3118591720] +centroid = (0.71253766589698553, -1.7022261120948869) +description = Leroy precinct, NE +station = ('kjyr', 0.0017420882905141541) +zone = ('nez064', 0.0012084976404284204) + +[fips3118591800] +centroid = (0.7142199538563978, -1.7044659454838489) +description = Lockridge precinct, NE +station = ('kjyr', 0.0006456205526975369) +zone = ('nez064', 0.0011796589833215879) + +[fips3118591890] +centroid = (0.71113518912325291, -1.7024460933938084) +description = McFadden precinct, NE +station = ('kjyr', 0.0028484791050465675) +zone = ('nez064', 0.0023415761900997026) + +[fips3118592035] +centroid = (0.71566035663477623, -1.7043569845786468) +description = Morton precinct, NE +station = ('kjyr', 0.0019191842259351395) +zone = ('nez064', 0.0024086802602449244) + +[fips3118592115] +centroid = (0.71425040985184507, -1.7022338264501811) +description = New York precinct, NE +station = ('kjyr', 0.0013004958573683248) +zone = ('nez064', 0.0012444990705576977) + +[fips3118593105] +centroid = (0.71570920840053953, -1.7004324721291975) +description = Stewart precinct, NE +station = ('kjyr', 0.0032148217780132698) +zone = ('nez064', 0.0032387229331225977) + +[fips3118593180] +centroid = (0.71575149772831537, -1.7024662868532541) +description = Thayer precinct, NE +station = ('kjyr', 0.0022261188108141147) +zone = ('nez064', 0.00248662896942115) + +[fips3118593325] +centroid = (0.7142460988885927, -1.7002257204260063) +description = Waco precinct, NE +station = ('kjyr', 0.0027698641635674152) +zone = ('nez064', 0.0025494755704363664) + +[fips3118593410] +centroid = (0.71096083073097882, -1.7005486586975029) +description = West Blue precinct, NE +station = ('kjyr', 0.0037625358362640411) +zone = ('nez064', 0.0032261190602080919) + +[fips3118593582] +centroid = (0.71333985412778722, -1.7033456011837014) +description = York city, NE +station = ('kjyr', 0.0005780401898266617) +zone = ('nez064', 4.2353643101078025e-05) + +[fips3118615] +centroid = (0.71115302638820832, -1.7251849061139064) +description = Gibbon city, NE +station = ('kear', 0.0020510396835412476) +zone = ('nez061', 0.0035763208415284056) + +[fips3118720] +centroid = (0.70068150466184786, -1.7002133984014871) +description = Gilead village, NE +station = ('khjh', 0.0022956670181448558) +zone = ('nez087', 0.0024548286248683559) + +[fips3118825] +centroid = (0.71166418096623996, -1.7131094617115481) +description = Giltner village, NE +station = ('kauh', 0.0029522987519264871) +zone = ('nez063', 0.0024313206328171362) + +[fips3119070] +centroid = (0.70690513933494947, -1.7148653327522245) +description = Glenvil village, NE +station = ('khsi', 0.0029165979580415037) +zone = ('nez076', 0.0027246764329215737) + +[fips3119160] +centroid = (0.71131274146805834, -1.7292859411639026) +description = Glenwood CDP, NE +station = ('kear', 0.0011344777105131458) +zone = ('nez061', 0.0017449448090227904) + +[fips3119245] +centroid = (0.71266561598444922, -1.6968016811395663) +description = Goehner village, NE +station = ('klnk', 0.0059808740432543252) +zone = ('nez065', 0.0012627015641371213) + +[fips3119350] +centroid = (0.74711317943106137, -1.7837952266041481) +description = Gordon city, NE +station = ('kien', 0.0056266499604870979) +zone = ('nez004', 0.0058858119189431068) + +[fips3119385] +centroid = (0.71427034151190283, -1.748015819858632) +description = Gothenburg city, NE +station = ('klxn', 0.0054920116941337641) +zone = ('nez060', 0.0045143993200108526) + +[fips3119455] +centroid = (0.70912338300106414, -1.7054420034147342) +description = Grafton village, NE +station = ('kjyr', 0.0048137551237538972) +zone = ('nez077', 0.0024115431752822067) + +[fips3119595] +centroid = (0.71422700498657588, -1.7166700904652492) +description = Grand Island city, NE +station = ('kgri', 0.00094801181567597968) +zone = ('nez062', 0.0020913476669827151) + +[fips3119910] +centroid = (0.71287447953603533, -1.7754580854733442) +description = Grant city, NE +station = ('koga', 0.0048328174302787845) +zone = ('nez058', 0.0010178109752175238) + +[fips3120050] +centroid = (0.72515540155123093, -1.7196819353422457) +description = Greeley Center village, NE +station = ('kodx', 0.0056046985315196963) +zone = ('nez040', 0.00035578954917250849) + +[fips3120190] +centroid = (0.71491859170267869, -1.6832487806188097) +description = Greenwood village, NE +station = ('klnk', 0.004822438304141561) +zone = ('nez066', 0.004478205950915538) + +[fips3120225] +centroid = (0.71608105079767692, -1.699969488638521) +description = Gresham village, NE +station = ('kjyr', 0.0037182932278774978) +zone = ('nez049', 0.0035344462730808484) + +[fips3120260] +centroid = (0.71806753219241926, -1.6796107290594902) +description = Gretna city, NE +station = ('kmle', 0.001860206636664141) +zone = ('nez053', 0.0016914369852137629) + +[fips3120295] +centroid = (0.74955049682488639, -1.7203664185682928) +description = Gross village, NE +station = ('konl', 0.0084932341981708102) +zone = ('nez007', 0.0026418346839498833) + +[fips3120365] +centroid = (0.69941811317620683, -1.7161613618948777) +description = Guide Rock village, NE +station = ('khsi', 0.0092902335232152855) +zone = ('nez085', 0.0029028077300471307) + +[fips3120435] +centroid = (0.72119435936053722, -1.7972426568782067) +description = Gurley village, NE +station = ('ksny', 0.0038658090721389766) +zone = ('nez055', 0.0017935684148198525) + +[fips3120470] +centroid = (0.73490964531489933, -1.7008403206688034) +description = Hadar village, NE +station = ('kofk', 0.0021742999858474425) +zone = ('nez017', 0.0033623144223268921) + +[fips3120540] +centroid = (0.69834363612880157, -1.7791634892884982) +description = Haigler village, NE +station = ('k2v5', 0.0041844422108799559) +zone = ('nez079', 0.0044044236080898547) + +[fips3120610] +centroid = (0.70751314223317419, -1.6892449988903764) +description = Hallam village, NE +station = ('kbie', 0.0041738970108371413) +zone = ('nez066', 0.0044981212579742131) + +[fips3120680] +centroid = (0.73135053499764735, -1.7500374521845095) +description = Halsey village, NE +station = ('ktif', 0.0040165106752961654) +zone = ('nez025', 0.0037196290386316208) + +[fips3120750] +centroid = (0.70484161910702403, -1.766876196821533) +description = Hamlet village, NE +station = ('kiml', 0.005575041312802358) +zone = ('nez070', 0.0033561512072923048) + +[fips3120785] +centroid = (0.71351005863644168, -1.7084597824111876) +description = Hampton village, NE +station = ('kauh', 0.0014281392184982262) +zone = ('nez063', 0.0017965667471298791) + +[fips3120960] +centroid = (0.70147622288345091, -1.6925181893695667) +description = Harbine village, NE +station = ('kbie', 0.0035347074317909695) +zone = ('nez088', 0.0022632555943323603) + +[fips3120995] +centroid = (0.69832981312112563, -1.7090928656907634) +description = Hardy village, NE +station = ('khjh', 0.0051265173605669493) +zone = ('nez086', 0.0033184817593562097) + +[fips3121030] +centroid = (0.72519353699538691, -1.8103721579757219) +description = Harrisburg CDP, NE +station = ('kbff', 0.0057592500219665237) +zone = ('nez020', 0.00022691455435803931) + +[fips3121240] +centroid = (0.7450476346212036, -1.8130911540575263) +description = Harrison village, NE +station = ('ktor', 0.011658731250265401) +zone = ('nez095', 0.0014896746345898781) + +[fips3121275] +centroid = (0.74387082891975398, -1.6976283563397734) +description = Hartington city, NE +station = ('kykn', 0.0053772357351188921) +zone = ('nez012', 0.00041753214971946873) + +[fips3121345] +centroid = (0.70895406861032817, -1.7121003123380449) +description = Harvard city, NE +station = ('khsi', 0.0044816962866355992) +zone = ('nez076', 0.0017728814493030247) + +[fips3121415] +centroid = (0.70853791230348262, -1.7173023185334917) +description = Hastings city, NE +station = ('khsi', 0.00052308292318478515) +zone = ('nez075', 0.0018924277297909628) + +[fips3121660] +centroid = (0.70705075215444335, -1.7631385393218022) +description = Hayes Center village, NE +station = ('kiml', 0.0079124095906506452) +zone = ('nez070', 0.00059965044339007874) + +[fips3121730] +centroid = (0.74496394608357042, -1.7922715053829215) +description = Hay Springs village, NE +station = ('kien', 0.0064976582083154386) +zone = ('nez004', 0.0047646839393243184) + +[fips3121765] +centroid = (0.71718265026165817, -1.7292241216017967) +description = Hazard village, NE +station = ('kear', 0.0063343384038576376) +zone = ('nez046', 0.002612598418212239) + +[fips3121835] +centroid = (0.70807845437789518, -1.7241946586562023) +description = Heartwell village, NE +station = ('kear', 0.0039920298786577327) +zone = ('nez074', 0.002379172046159173) + +[fips3121905] +centroid = (0.70106673373434814, -1.7032175463764823) +description = Hebron city, NE +station = ('khjh', 0.00027827125435340907) +zone = ('nez087', 0.00017462586712781012) + +[fips3122045] +centroid = (0.73864538295245297, -1.7990043573185848) +description = Hemingford village, NE +station = ('kaia', 0.0059241630182481422) +zone = ('nez003', 0.0017758943974375953) + +[fips3122080] +centroid = (0.7117264543139511, -1.707132564234801) +description = Henderson city, NE +station = ('kauh', 0.0031404841878565561) +zone = ('nez064', 0.003271340970339058) + +[fips3122115] +centroid = (0.70042357990498816, -1.7448264575434151) +description = Hendley village, NE +station = ('khde', 0.010151159178271788) +zone = ('nez082', 0.0011119190656954387) + +[fips3122150] +centroid = (0.73300273348075529, -1.8159468443263471) +description = Henry village, NE +station = ('ktor', 0.001624779537349608) +zone = ('nez019', 0.0050882362046644593) + +[fips3122185] +centroid = (0.72734545814992591, -1.6792985420161859) +description = Herman village, NE +station = ('ktqe', 0.0016777452883875053) +zone = ('nez045', 0.0024919036523336322) + +[fips3122290] +centroid = (0.71838240704277168, -1.7627902414162742) +description = Hershey village, NE +station = ('klbf', 0.0044528231858072488) +zone = ('nez059', 0.003888674833497331) + +[fips3122325] +centroid = (0.70902252042359137, -1.6865258980888169) +description = Hickman city, NE +station = ('klnk', 0.0040715086554361131) +zone = ('nez066', 0.0028942375342896425) + +[fips3122430] +centroid = (0.70402798151632928, -1.7286744650604662) +description = Hildreth village, NE +station = ('khde', 0.0042948369202190423) +zone = ('nez084', 0.0030796678898134967) + +[fips3122605] +centroid = (0.70345041716025936, -1.7455035929333114) +description = Holbrook village, NE +station = ('klxn', 0.0090326395059257478) +zone = ('nez082', 0.0025906121108412428) + +[fips3122640] +centroid = (0.70580160255549851, -1.734433370913639) +description = Holdrege city, NE +station = ('khde', 0.00059223015407173965) +zone = ('nez073', 0.0013523617458647498) + +[fips3122780] +centroid = (0.70164724769685383, -1.687015183691321) +description = Holmesville CDP, NE +station = ('kbie', 0.0021057470070026609) +zone = ('nez089', 0.0011307679233445306) + +[fips3122815] +centroid = (0.70624315340296051, -1.7217814966192249) +description = Holstein village, NE +station = ('khsi', 0.0037275649600267895) +zone = ('nez075', 0.0022429167466907888) + +[fips3122920] +centroid = (0.73866646652981705, -1.6840880920028014) +description = Homer village, NE +station = ('ksux', 0.0017498221848567252) +zone = ('nez014', 0.0015272100361220717) + +[fips3123025] +centroid = (0.72625546512547046, -1.6850914294298953) +description = Hooper city, NE +station = ('kfet', 0.0028472774615076867) +zone = ('nez044', 0.0014980984725912591) + +[fips3123200] +centroid = (0.71697010406535033, -1.7085088959763386) +description = Hordville village, NE +station = ('kauh', 0.0035156299944498143) +zone = ('nez048', 0.0024978804404438707) + +[fips3123235] +centroid = (0.73500415489389481, -1.6982818948781826) +description = Hoskins village, NE +station = ('kofk', 0.0028082007551175694) +zone = ('nez018', 0.0029281760670993094) + +[fips3123270] +centroid = (0.71690116355989664, -1.7229073910663939) +description = Howard City village, NE +station = ('kgri', 0.0055820379136253696) +zone = ('nez047', 0.0036270008118390305) + +[fips3123340] +centroid = (0.72822522626597874, -1.6930504449782546) +description = Howells village, NE +station = ('kolu', 0.0064279509175597365) +zone = ('nez043', 0.0028465626866917863) + +[fips3123375] +centroid = (0.73977352887435699, -1.6858394775473) +description = Hubbard village, NE +station = ('ksux', 0.0026838148746722045) +zone = ('nez014', 0.00035827707439050938) + +[fips3123410] +centroid = (0.69828426002764865, -1.7016437655366665) +description = Hubbell village, NE +station = ('khjh', 0.002777346772551658) +zone = ('nez087', 0.0032027140037354505) + +[fips3123445] +centroid = (0.7010258057633888, -1.6745442651337532) +description = Humboldt city, NE +station = ('kfnb', 0.0050280691508285359) +zone = ('nez093', 0.0031196273996864084) + +[fips3123480] +centroid = (0.72760168993741114, -1.7014368043939649) +description = Humphrey city, NE +station = ('kolu', 0.00461063143983074) +zone = ('nez042', 0.0021154397233801737) + +[fips3123550] +centroid = (0.70180450186245869, -1.7329465249238651) +description = Huntley village, NE +station = ('khde', 0.0042198015144156815) +zone = ('nez083', 0.0016321539568881149) + +[fips3123655] +centroid = (0.73304694267070825, -1.7760859327651641) +description = Hyannis village, NE +station = ('koga', 0.015372648492437356) +zone = ('nez023', 0.0015186008734868876) + +[fips3123690] +centroid = (0.707109988629256, -1.7739368041374286) +description = Imperial city, NE +station = ('kiml', 0.0003001279487086742) +zone = ('nez069', 0.00079871111096009237) + +[fips3123725] +centroid = (0.69974204628537695, -1.7217392247447416) +description = Inavale CDP, NE +station = ('khsi', 0.0093119211869333359) +zone = ('nez085', 0.0024662194525191666) + +[fips3123830] +centroid = (0.70222674936839358, -1.7526568946857801) +description = Indianola city, NE +station = ('kmck', 0.0022611634623358793) +zone = ('nez081', 0.0012769700840677704) + +[fips3123970] +centroid = (0.72283186217134343, -1.6842765701087241) +description = Inglewood village, NE +station = ('kfet', 0.00063696590715041823) +zone = ('nez044', 0.0034646937593377438) + +[fips3124055] +centroid = (0.70852265812582016, -1.7143188527101325) +description = Inland CDP, NE +station = ('khsi', 0.0027854522872110799) +zone = ('nez076', 0.0025956403656486322) + +[fips3124075] +centroid = (0.73970396005037253, -1.7196696656776043) +description = Inman village, NE +station = ('konl', 0.0024698103480230533) +zone = ('nez010', 0.0035167774591504646) + +[fips3124285] +centroid = (0.71836598349451042, -1.6849320459626032) +description = Ithaca village, NE +station = ('kahq', 0.0014670971104373896) +zone = ('nez051', 0.0017342735852546654) + +[fips3124355] +centroid = (0.74086027558640377, -1.6854871828377851) +description = Jackson village, NE +station = ('ksux', 0.0026733152599147385) +zone = ('nez014', 0.00099974327632716469) + +[fips3124530] +centroid = (0.70138024722788372, -1.6944248219510303) +description = Jansen village, NE +station = ('kbie', 0.0048659085683232395) +zone = ('nez088', 0.00081022920836920046) + +[fips3124670] +centroid = (0.70530030908774066, -1.675498244649601) +description = Johnson village, NE +station = ('kafk', 0.0038497813967451394) +zone = ('nez091', 0.0020373979503278718) + +[fips3124740] +centroid = (0.74302336684815551, -1.7463116803769847) +description = Johnstown village, NE +station = ('kanw', 0.0007495043069506008) +zone = ('nez008', 0.0029686614312139262) + +[fips3124915] +centroid = (0.70720540577946256, -1.6732011819144663) +description = Julian village, NE +station = ('kafk', 0.0014171040722852262) +zone = ('nez091', 0.0023135451371126062) + +[fips3124950] +centroid = (0.70843677047332965, -1.7192697060262172) +description = Juniata village, NE +station = ('khsi', 0.00098911652076422423) +zone = ('nez075', 0.0011532954096368482) + +[fips3125055] +centroid = (0.71035623122479541, -1.7293368000583054) +description = Kearney city, NE +station = ('kear', 0.0012474264989474208) +zone = ('nez061', 0.0027022274590567043) + +[fips3125160] +centroid = (0.7089387271662031, -1.7219055197158717) +description = Kenesaw village, NE +station = ('khsi', 0.002994535585945199) +zone = ('nez075', 0.0026548853542910271) + +[fips3125230] +centroid = (0.72387001891701463, -1.6790712477876986) +description = Kennard village, NE +station = ('kbta', 0.0014526663626410557) +zone = ('nez045', 0.001012461112703551) + +[fips3125335] +centroid = (0.71940272652348747, -1.772977396647607) +description = Keystone CDP, NE +station = ('koga', 0.0029798453132184734) +zone = ('nez057', 0.0010714687359504157) + +[fips3125405] +centroid = (0.74942862048321957, -1.762037376190134) +description = Kilgore village, NE +station = ('kvtn', 0.0053585106667447752) +zone = ('sdz047', 0.0053832153968050847) + +[fips3125475] +centroid = (0.71966051165400713, -1.809056546238861) +description = Kimball city, NE +station = ('kibm', 0.00089867659973008672) +zone = ('nez054', 0.0010440034618259591) + +[fips3125510] +centroid = (0.72102179865739258, -1.6807800298451563) +description = King Lake CDP, NE +station = ('kbta', 0.0030404227613839941) +zone = ('nez052', 0.0019506323568763749) + +[fips3126150] +centroid = (0.72430677010903366, -1.6995582716134585) +description = Lakeview CDP, NE +station = ('kolu', 0.0010425377365510613) +zone = ('nez042', 0.0022280771549996778) + +[fips3126175] +centroid = (0.70812327443308631, -1.7798739255605227) +description = Lamar village, NE +station = ('kheq', 0.0037284923415236751) +zone = ('nez069', 0.0038253948761612223) + +[fips3126315] +centroid = (0.71684482433164221, -1.6742357258285858) +description = La Platte CDP, NE +station = ('koff', 0.00085180256796080396) +zone = ('nez053', 0.0025393158977382335) + +[fips3126350] +centroid = (0.74051618392437313, -1.6946293396327787) +description = Laurel city, NE +station = ('klcg', 0.0035749655310326422) +zone = ('nez012', 0.0036029239784999864) + +[fips3126385] +centroid = (0.71874648272473762, -1.6765821988348444) +description = La Vista city, NE +station = ('kmle', 0.00071896269327058565) +zone = ('nez053', 0.0013624412324811327) + +[fips3126420] +centroid = (0.70319607032836617, -1.7149548506895593) +description = Lawrence village, NE +station = ('khsi', 0.0058789962863170413) +zone = ('nez086', 0.0034579673514167257) + +[fips3126455] +centroid = (0.69898329929965752, -1.7501453833454528) +description = Lebanon village, NE +station = ('kmck', 0.004877851754747059) +zone = ('nez081', 0.0034787334253202603) + +[fips3126560] +centroid = (0.72785921326854297, -1.6971700328781996) +description = Leigh village, NE +station = ('kolu', 0.004582781706669768) +zone = ('nez043', 0.0030322936362086892) + +[fips3126595] +centroid = (0.72041334197356222, -1.7769782847051239) +description = Lemoyne CDP, NE +station = ('koga', 0.0028003655837372621) +zone = ('nez057', 0.002414242347939959) + +[fips3126630] +centroid = (0.72134091465782724, -1.6830070874239935) +description = Leshara village, NE +station = ('kfet', 0.002390280272262406) +zone = ('nez051', 0.0032749464360297118) + +[fips3126805] +centroid = (0.72135384754758447, -1.782743910075917) +description = Lewellen village, NE +station = ('koga', 0.0061437398333957904) +zone = ('nez056', 0.0045645400020679992) + +[fips3126875] +centroid = (0.70237059940534297, -1.6826273910452223) +description = Lewiston village, NE +station = ('kbie', 0.0046693593366340692) +zone = ('nez092', 0.0029916480905393065) + +[fips3126910] +centroid = (0.71171203789432957, -1.7409019974538431) +description = Lexington city, NE +station = ('klxn', 0.00046710607362245379) +zone = ('nez060', 0.0018710991667486153) + +[fips3126980] +centroid = (0.69962407948123462, -1.6839461792813215) +description = Liberty village, NE +station = ('kbie', 0.0051657629205941) +zone = ('nez092', 0.0033801819007986543) + +[fips3128000] +centroid = (0.71225066395478753, -1.6873904992936697) +description = Lincoln city, NE +station = ('klnk', 0.0012168053894596139) +zone = ('nez066', 0.00044485182030449741) + +[fips3128105] +centroid = (0.72781362526848081, -1.7050837571324697) +description = Lindsay village, NE +station = ('kofk', 0.0059865305058526821) +zone = ('nez042', 0.0032188811217748461) + +[fips3128140] +centroid = (0.745868044089396, -1.7060585758795863) +description = Lindy CDP, NE +station = ('kykn', 0.005662805006015994) +zone = ('nez011', 0.0025006583139711722) + +[fips3128245] +centroid = (0.72277913577464059, -1.6917874200117564) +description = Linwood village, NE +station = ('kfet', 0.0054784301914807187) +zone = ('nez043', 0.0034586466572580706) + +[fips3128315] +centroid = (0.72428888048420081, -1.7911218919112177) +description = Lisco CDP, NE +station = ('ksny', 0.0084056361416925442) +zone = ('nez022', 0.0043147257444362819) + +[fips3128350] +centroid = (0.71830852725553473, -1.7305472382544411) +description = Litchfield village, NE +station = ('kear', 0.0076486796642055042) +zone = ('nez046', 0.0025797406009648895) + +[fips3128420] +centroid = (0.71818429471937784, -1.7913821205026901) +description = Lodgepole village, NE +station = ('ksny', 0.004611594675223007) +zone = ('nez055', 0.0048416119871951468) + +[fips3129050] +centroid = (0.74238019556550305, -1.7401403532215654) +description = Long Pine city, NE +station = ('kanw', 0.0039130674062157209) +zone = ('nez008', 0.0034491636154724741) + +[fips3129085] +centroid = (0.70647933135734042, -1.736736716834081) +description = Loomis village, NE +station = ('khde', 0.002367190465793245) +zone = ('nez073', 0.0013629773074428665) + +[fips3129120] +centroid = (0.71658984918121837, -1.7991220099634617) +description = Lorenzo CDP, NE +station = ('ksny', 0.0014955636258266348) +zone = ('nez055', 0.0030540765542257206) + +[fips3129155] +centroid = (0.72890960477227074, -1.7118489674724653) +description = Loretto CDP, NE +station = ('kbvn', 0.00070115202803750518) +zone = ('nez030', 0.0010063075888653277) + +[fips3129175] +centroid = (0.70855653496660143, -1.6759360081325863) +description = Lorton village, NE +station = ('kafk', 0.0023071334517889039) +zone = ('nez068', 0.0017177470815556953) + +[fips3129260] +centroid = (0.71554193604502836, -1.6783181905753408) +description = Louisville city, NE +station = ('kmle', 0.0035188785793279732) +zone = ('nez067', 0.0015532001948721241) + +[fips3129470] +centroid = (0.72041402265197052, -1.72731268936489) +description = Loup City city, NE +station = ('kodx', 0.0059383645785082255) +zone = ('nez046', 0.00098701047066150432) + +[fips3129645] +centroid = (0.71076840818094633, -1.7055994146599716) +description = Lushton village, NE +station = ('kjyr', 0.0032945681873693729) +zone = ('nez064', 0.0030882883195783766) + +[fips3129715] +centroid = (0.73160083266567588, -1.8157945992556954) +description = Lyman village, NE +station = ('ktor', 0.002733480444896178) +zone = ('nez019', 0.0044368278314305754) + +[fips3129750] +centroid = (0.74754574183287559, -1.7185708063805485) +description = Lynch village, NE +station = ('konl', 0.0069429971533523987) +zone = ('nez007', 0.0040152352169814925) + +[fips3129855] +centroid = (0.73191918072123963, -1.6837599351968413) +description = Lyons city, NE +station = ('ktqe', 0.0047790067812532779) +zone = ('nez034', 0.0023772566952160123) + +[fips3129925] +centroid = (0.70170246991438712, -1.7561742218207392) +description = McCook city, NE +station = ('kmck', 0.0005133430921559222) +zone = ('nez081', 0.0019919377924733084) + +[fips3129960] +centroid = (0.71111447206503187, -1.7034552078607264) +description = McCool Junction village, NE +station = ('kjyr', 0.0026827738723775151) +zone = ('nez064', 0.0022509914641396368) + +[fips3130030] +centroid = (0.72863557062641504, -1.804981760940815) +description = McGrew village, NE +station = ('kbff', 0.003150297463901817) +zone = ('nez019', 0.0041804373006143281) + +[fips3130065] +centroid = (0.73978120832306582, -1.7011406220199017) +description = McLean village, NE +station = ('kofk', 0.0070482308927391187) +zone = ('nez017', 0.0027350140445176114) + +[fips3130170] +centroid = (0.73506086064129206, -1.681915383976871) +description = Macy CDP, NE +station = ('ksux', 0.0046728257283992856) +zone = ('nez015', 0.002412409784436579) + +[fips3130240] +centroid = (0.73004543014288359, -1.7009404851145755) +description = Madison city, NE +station = ('kofk', 0.0027189777092478302) +zone = ('nez031', 0.002422775365500653) + +[fips3130275] +centroid = (0.71300982981952754, -1.7719947588254419) +description = Madrid village, NE +station = ('koga', 0.0056432963233382467) +zone = ('nez058', 0.0016079263530888194) + +[fips3130310] +centroid = (0.74099908162181494, -1.7011600998943541) +description = Magnet village, NE +station = ('kykn', 0.008113356474152511) +zone = ('nez017', 0.0037543251762049462) + +[fips3130345] +centroid = (0.71399379409192443, -1.6906240533455472) +description = Malcolm village, NE +station = ('klnk', 0.0018552530161250289) +zone = ('nez066', 0.0032017435043175534) + +[fips3130380] +centroid = (0.72023551037607658, -1.688098544464619) +description = Malmo village, NE +station = ('kahq', 0.0017096000068361958) +zone = ('nez051', 0.0013039439183117659) + +[fips3130415] +centroid = (0.71417886880580583, -1.6784134680992071) +description = Manley village, NE +station = ('kpmv', 0.0033161544475871626) +zone = ('nez067', 0.00037258208887381487) + +[fips3130730] +centroid = (0.71569555992578893, -1.7105928540098048) +description = Marquette village, NE +station = ('kauh', 0.0019728998792038176) +zone = ('nez063', 0.0023252796860396222) + +[fips3130905] +centroid = (0.72009029898231069, -1.7751570161773753) +description = Martin CDP, NE +station = ('koga', 0.0025405760808185833) +zone = ('nez057', 0.0012101938386417106) + +[fips3130940] +centroid = (0.74191455917436355, -1.690037221291149) +description = Martinsburg village, NE +station = ('klcg', 0.0050409026826475798) +zone = ('nez013', 0.00053199457096591695) + +[fips3131045] +centroid = (0.74508835315265265, -1.6926360165473688) +description = Maskell village, NE +station = ('kykn', 0.0064922171404055446) +zone = ('nez013', 0.003736798175755277) + +[fips3131115] +centroid = (0.71946262622341595, -1.733090793839835) +description = Mason City village, NE +station = ('kbbw', 0.0057278387294270906) +zone = ('nez046', 0.0042336675806471605) + +[fips3131150] +centroid = (0.70012696119861173, -1.7698422093523722) +description = Max CDP, NE +station = ('kiml', 0.0075687058461097068) +zone = ('nez079', 0.0039323477402347833) + +[fips3131220] +centroid = (0.71695399467635434, -1.7545050936438871) +description = Maxwell village, NE +station = ('klbf', 0.0019700266836622745) +zone = ('nez059', 0.0029371195412000463) + +[fips3131325] +centroid = (0.70962814967403343, -1.7561892665588914) +description = Maywood village, NE +station = ('klbf', 0.008014533592754081) +zone = ('nez071', 0.0037643922023845532) + +[fips3131395] +centroid = (0.71950154706573544, -1.6840190991374702) +description = Mead village, NE +station = ('kahq', 0.0014840772099317535) +zone = ('nez051', 0.0019707633985291341) + +[fips3131465] +centroid = (0.73354455349374437, -1.7058156958608788) +description = Meadow Grove village, NE +station = ('kofk', 0.0040059360306805734) +zone = ('nez031', 0.0026321965543016821) + +[fips3131570] +centroid = (0.72923737760579521, -1.8067136686108614) +description = Melbeta village, NE +station = ('kbff', 0.001826337518090038) +zone = ('nez019', 0.0027554210648959724) + +[fips3131640] +centroid = (0.71723544647153104, -1.6830757486767671) +description = Memphis village, NE +station = ('kahq', 0.0032240867237095386) +zone = ('nez051', 0.0035309150566067496) + +[fips3131780] +centroid = (0.72405261526335829, -1.7411590146394917) +description = Merna village, NE +station = ('kbbw', 0.0018998442463024133) +zone = ('nez038', 0.0016504509705965217) + +[fips3131815] +centroid = (0.749147639926941, -1.7749951717958377) +description = Merriman village, NE +station = ('kien', 0.010607705961941105) +zone = ('sdz044', 0.0047675329790859396) + +[fips3132060] +centroid = (0.71161555609327931, -1.6939139291723864) +description = Milford city, NE +station = ('klnk', 0.0039429733240021391) +zone = ('nez065', 0.0020740114185358294) + +[fips3132130] +centroid = (0.7143215669254489, -1.7346848379522664) +description = Miller village, NE +station = ('kear', 0.0061676235617083887) +zone = ('nez061', 0.0043459912822128828) + +[fips3132200] +centroid = (0.70686216932876533, -1.6997498389521575) +description = Milligan village, NE +station = ('khjh', 0.0066228655001403756) +zone = ('nez078', 0.0033127755198565289) + +[fips3132305] +centroid = (0.72974137633389369, -1.8064486578172387) +description = Minatare city, NE +station = ('kbff', 0.0016025662988473389) +zone = ('nez019', 0.0027677167761614397) + +[fips3132340] +centroid = (0.70682457493667727, -1.7273092336129712) +description = Minden city, NE +station = ('kear', 0.0041286808337065318) +zone = ('nez074', 0.00029980525643404879) + +[fips3132410] +centroid = (0.73203753149781736, -1.8118235912349729) +description = Mitchell city, NE +station = ('kbff', 0.003031395477385818) +zone = ('nez019', 0.0020814204042263066) + +[fips3132550] +centroid = (0.74753682320039794, -1.7161745740373155) +description = Monowi village, NE +station = ('konl', 0.007809859479559548) +zone = ('nez007', 0.0057177887401466372) + +[fips3132585] +centroid = (0.7238585521038291, -1.7034398489633089) +description = Monroe village, NE +station = ('kolu', 0.003511869808636171) +zone = ('nez042', 0.0019765641635496899) + +[fips3132760] +centroid = (0.71017302401321358, -1.752316276228961) +description = Moorefield village, NE +station = ('klbf', 0.0082352512134635843) +zone = ('nez071', 0.0027905139631028229) + +[fips3132830] +centroid = (0.73240712242021966, -1.8138236687445883) +description = Morrill village, NE +station = ('ktor', 0.003289164995163866) +zone = ('nez019', 0.0034365603100343736) + +[fips3132865] +centroid = (0.72310641991597457, -1.6888942749771882) +description = Morse Bluff village, NE +station = ('kfet', 0.0032858114016526144) +zone = ('nez044', 0.0029522207727284964) + +[fips3133250] +centroid = (0.73379205863496977, -1.7635563536914372) +description = Mullen village, NE +station = ('ktif', 0.0063273748191234828) +zone = ('nez024', 0.0025156272968870075) + +[fips3133320] +centroid = (0.71429531717349892, -1.6804183452642656) +description = Murdock village, NE +station = ('kmle', 0.005204598873997027) +zone = ('nez067', 0.0018692333076170168) + +[fips3133425] +centroid = (0.71412430981338848, -1.6742382565560014) +description = Murray village, NE +station = ('kpmv', 0.00059989534842153438) +zone = ('nez067', 0.0028250279769217769) + +[fips3133530] +centroid = (0.74986619197998716, -1.7295689288488207) +description = Naper village, NE +station = ('konl', 0.010175154417642829) +zone = ('sdz050', 0.0041404381413406837) + +[fips3133565] +centroid = (0.69943603770762475, -1.7302954919631335) +description = Naponee village, NE +station = ('khde', 0.0070443084517496906) +zone = ('nez084', 0.0030494599595680245) + +[fips3133705] +centroid = (0.70991918332680348, -1.6730943328576591) +description = Nebraska City city, NE +station = ('kafk', 0.0013239092032471017) +zone = ('nez068', 0.0036519860029574501) + +[fips3133740] +centroid = (0.712611126805202, -1.6753416711624047) +description = Nehawka village, NE +station = ('kpmv', 0.0023072202663835567) +zone = ('nez067', 0.0024330400340884556) + +[fips3133775] +centroid = (0.73529138372889535, -1.7109328092415084) +description = Neligh city, NE +station = ('kbvn', 0.007002924127084773) +zone = ('nez016', 0.0009650266450411647) + +[fips3133880] +centroid = (0.70164274474738386, -1.7116204864200866) +description = Nelson city, NE +station = ('khjh', 0.0064799867458263244) +zone = ('nez086', 0.0005181772754209536) + +[fips3133950] +centroid = (0.70404489375678103, -1.6698606042728565) +description = Nemaha village, NE +station = ('kfnb', 0.0046265340714587147) +zone = ('nez091', 0.0024517388735234799) + +[fips3133985] +centroid = (0.74922366646915795, -1.7645593595059732) +description = Nenzel village, NE +station = ('kvtn', 0.0071343639254312467) +zone = ('sdz047', 0.0067427482790643409) + +[fips3134090] +centroid = (0.74442504077043226, -1.6907707831757626) +description = Newcastle village, NE +station = ('klcg', 0.0073009921964527855) +zone = ('nez013', 0.0027799818414530929) + +[fips3134230] +centroid = (0.72862071787448068, -1.7065253816413246) +description = Newman Grove city, NE +station = ('kbvn', 0.0036461111258773654) +zone = ('nez031', 0.0037424590143902503) + +[fips3134265] +centroid = (0.74351413598052385, -1.7336055263428334) +description = Newport village, NE +station = ('konl', 0.0086159584567022524) +zone = ('nez009', 0.0034934413695039313) + +[fips3134300] +centroid = (0.7249176702538167, -1.6837339646975717) +description = Nickerson village, NE +station = ('kfet', 0.0015954027167314738) +zone = ('nez044', 0.0025093524982130137) + +[fips3134370] +centroid = (0.74612738256294986, -1.7109725503885762) +description = Niobrara village, NE +station = ('konl', 0.0097238676466078651) +zone = ('nez011', 0.0026646420650994849) + +[fips3134545] +centroid = (0.70099650168524785, -1.7099651812509102) +description = Nora village, NE +station = ('khjh', 0.005164283454264406) +zone = ('nez086', 0.0010021725472958037) + +[fips3134615] +centroid = (0.73364021499004628, -1.7003178912638039) +description = Norfolk city, NE +station = ('kofk', 0.00090694193789171641) +zone = ('nez031', 0.0031102700103836987) + +[fips3134650] +centroid = (0.70649451572183275, -1.7242474548660751) +description = Norman village, NE +station = ('kear', 0.0052219851704389609) +zone = ('nez074', 0.0021243489407147993) + +[fips3134720] +centroid = (0.72370002384787036, -1.6891884676759044) +description = North Bend city, NE +station = ('kfet', 0.0034983176829489976) +zone = ('nez044', 0.0025925008081932226) + +[fips3134825] +centroid = (0.72423231436314361, -1.7239084595654601) +description = North Loup village, NE +station = ('kodx', 0.0031366932782203216) +zone = ('nez040', 0.0035180577573514934) + +[fips3135000] +centroid = (0.71780360350293271, -1.7586682798685465) +description = North Platte city, NE +station = ('klbf', 0.001296163915826046) +zone = ('nez059', 0.0014068885927663573) + +[fips3135245] +centroid = (0.70228828967781887, -1.708741024766854) +description = Oak village, NE +station = ('khjh', 0.0044806765796552113) +zone = ('nez086', 0.0021961229285411376) + +[fips3135385] +centroid = (0.73426148239058608, -1.7098494833747955) +description = Oakdale village, NE +station = ('kbvn', 0.0060742098863119784) +zone = ('nez016', 0.0022662728237055909) + +[fips3135490] +centroid = (0.7301599062885219, -1.6836676596392883) +description = Oakland city, NE +station = ('ktqe', 0.0038797175614298097) +zone = ('nez034', 0.0018215519619072039) + +[fips3135560] +centroid = (0.74507252301633708, -1.6934444879634776) +description = Obert village, NE +station = ('kykn', 0.0060425878041632086) +zone = ('nez012', 0.0032906968323372964) + +[fips3135665] +centroid = (0.71805740928275774, -1.7411742862704469) +description = Oconto village, NE +station = ('kbbw', 0.00536279481152369) +zone = ('nez038', 0.0044344098623404615) + +[fips3135700] +centroid = (0.72164922707019197, -1.6940013003547412) +description = Octavia village, NE +station = ('kolu', 0.0040113757672793956) +zone = ('nez050', 0.002346567078076929) + +[fips3135735] +centroid = (0.69901094531500896, -1.6895079152888968) +description = Odell village, NE +station = ('kbie', 0.0044109020916368114) +zone = ('nez089', 0.0039844869222785146) + +[fips3135770] +centroid = (0.71033291362598872, -1.7323157803854872) +description = Odessa CDP, NE +station = ('kear', 0.0034178575982166783) +zone = ('nez061', 0.0036105555344972374) + +[fips3135875] +centroid = (0.71768429279526635, -1.6741332400949089) +description = Offutt AFB CDP, NE +station = ('koff', 0.00028027174728915695) +zone = ('nez053', 0.0025162697665450967) + +[fips3135980] +centroid = (0.71784685276179716, -1.775360731007668) +description = Ogallala city, NE +station = ('koga', 0.00065685654982951432) +zone = ('nez057', 0.0014379089880549936) + +[fips3136015] +centroid = (0.70535109816897368, -1.7008648076382091) +description = Ohiowa village, NE +station = ('khjh', 0.0049018073685775931) +zone = ('nez077', 0.0027238245208963206) + +[fips3137000] +centroid = (0.72020444351539104, -1.6762478461100401) +description = Omaha city, NE +station = ('kmle', 0.0015149280466786933) +zone = ('nez052', 0.0015690502110271484) + +[fips3137105] +centroid = (0.74108458530187016, -1.7217060983955388) +description = O'Neill city, NE +station = ('konl', 0.00048446602512390905) +zone = ('nez010', 0.0017704666128959116) + +[fips3137140] +centroid = (0.70508390571378599, -1.7076167011160117) +description = Ong village, NE +station = ('khjh', 0.0054531023547028093) +zone = ('nez076', 0.0035727301673435046) + +[fips3137210] +centroid = (0.73891730524991373, -1.7146301321822255) +description = Orchard village, NE +station = ('konl', 0.0061337825428361284) +zone = ('nez016', 0.0035869649377657568) + +[fips3137280] +centroid = (0.7260386428724952, -1.7263915569455652) +description = Ord city, NE +station = ('kodx', 0.00055211334052882748) +zone = ('nez039', 0.0010339577709064809) + +[fips3137420] +centroid = (0.7004306659417513, -1.7358189529002124) +description = Orleans village, NE +station = ('khde', 0.0057867120101823691) +zone = ('nez083', 0.0010318052695769784) + +[fips3137525] +centroid = (0.71870012677980466, -1.7025694532653393) +description = Osceola city, NE +station = ('kjyr', 0.0050109731576190638) +zone = ('nez049', 0.00028233511289120592) + +[fips3137560] +centroid = (0.72270616355861472, -1.7862599631205223) +description = Oshkosh city, NE +station = ('ksny', 0.0099507503813295213) +zone = ('nez022', 0.0036916020663736041) + +[fips3137595] +centroid = (0.73928928727339127, -1.7034262703017284) +description = Osmond city, NE +station = ('kofk', 0.0068844860010956925) +zone = ('nez017', 0.0016365892381441508) + +[fips3137630] +centroid = (0.71076919357910973, -1.6776211235253866) +description = Otoe village, NE +station = ('kafk', 0.0041863385575904542) +zone = ('nez068', 0.0013323346918025336) + +[fips3137735] +centroid = (0.71700384127979133, -1.7100514528758362) +description = Overland CDP, NE +station = ('kauh', 0.003277381024143156) +zone = ('nez048', 0.0017277635152858804) + +[fips3137770] +centroid = (0.71105708563922621, -1.7372555334075288) +description = Overton village, NE +station = ('klxn', 0.0032904828077467687) +zone = ('nez073', 0.0043233011357156608) + +[fips3137910] +centroid = (0.70254883242855659, -1.7389179595200537) +description = Oxford village, NE +station = ('khde', 0.0052595405234999405) +zone = ('nez083', 0.0033204540154165144) + +[fips3138085] +centroid = (0.74001979483181346, -1.7177123487346628) +description = Page village, NE +station = ('konl', 0.0036145343932367136) +zone = ('nez016', 0.0059747432263960133) + +[fips3138130] +centroid = (0.70421249772485017, -1.7646581102350509) +description = Palisade village, NE +station = ('kiml', 0.0073746853528916618) +zone = ('nez080', 0.0031270104737418521) + +[fips3138160] +centroid = (0.7194667801070358, -1.714956351672716) +description = Palmer village, NE +station = ('kgri', 0.0045258853156883942) +zone = ('nez047', 0.0033785714520090013) + +[fips3138190] +centroid = (0.7104484893290558, -1.6823598495241838) +description = Palmyra village, NE +station = ('klnk', 0.0054288870923161828) +zone = ('nez068', 0.0035492933601214789) + +[fips3138225] +centroid = (0.70860029037094896, -1.6844376989052683) +description = Panama village, NE +station = ('klnk', 0.0052948773439838283) +zone = ('nez066', 0.0039761359946766201) + +[fips3138295] +centroid = (0.71825545179298156, -1.6763061575603491) +description = Papillion city, NE +station = ('kmle', 0.0011543003350199335) +zone = ('nez053', 0.0011190730667177747) + +[fips3138365] +centroid = (0.69889301341745169, -1.7754381538132864) +description = Parks CDP, NE +station = ('ksyf', 0.005008468243436111) +zone = ('nez079', 0.0023666739692346085) + +[fips3138575] +centroid = (0.70006241892287302, -1.6781858422581621) +description = Pawnee City city, NE +station = ('kfnb', 0.0076200457778073391) +zone = ('nez092', 0.0011787130897531778) + +[fips3138610] +centroid = (0.71773820601586058, -1.7689253529897144) +description = Paxton village, NE +station = ('koga', 0.00548212107520386) +zone = ('nez057', 0.004272620790695271) + +[fips3138750] +centroid = (0.73496888178971198, -1.687934361341884) +description = Pender village, NE +station = ('klcg', 0.0041732775409015757) +zone = ('nez015', 0.0023205437948267361) + +[fips3138960] +centroid = (0.70648313617510972, -1.6708278133844341) +description = Peru city, NE +station = ('kafk', 0.0026404634636458418) +zone = ('nez091', 0.0022168463935017145) + +[fips3138995] +centroid = (0.73048263512050815, -1.7118375006592796) +description = Petersburg village, NE +station = ('kbvn', 0.0022108872412955577) +zone = ('nez030', 0.0025679106750000243) + +[fips3139030] +centroid = (0.71379899789410928, -1.7141680388094678) +description = Phillips village, NE +station = ('kgri', 0.001805987794526797) +zone = ('nez063', 0.0025591328567859339) + +[fips3139065] +centroid = (0.70473461297058415, -1.68824157419682) +description = Pickrell village, NE +station = ('kbie', 0.00139487021644261) +zone = ('nez089', 0.0020998420460119219) + +[fips3139100] +centroid = (0.73651627325123759, -1.7021838751269887) +description = Pierce city, NE +station = ('kofk', 0.0039631047918345635) +zone = ('nez017', 0.0014800225731337719) + +[fips3139135] +centroid = (0.73316909826505539, -1.693927141314824) +description = Pilger village, NE +station = ('klcg', 0.0041963137308815464) +zone = ('nez032', 0.0024002086990798574) + +[fips3139170] +centroid = (0.73920533693637036, -1.7067076463751103) +description = Plainview city, NE +station = ('kofk', 0.007915341978727803) +zone = ('nez017', 0.0028572484879007391) + +[fips3139310] +centroid = (0.72496486395679072, -1.7014948714981788) +description = Platte Center village, NE +station = ('kolu', 0.0025380706277326574) +zone = ('nez042', 0.00070183749044931264) + +[fips3139345] +centroid = (0.71568365678029044, -1.6736685461815652) +description = Plattsmouth city, NE +station = ('kpmv', 0.0010200275223801241) +zone = ('nez053', 0.0034247887368283924) + +[fips3139380] +centroid = (0.71194092037243617, -1.6917994104237177) +description = Pleasant Dale village, NE +station = ('klnk', 0.0023165088965152614) +zone = ('nez065', 0.0030727710250556578) + +[fips3139450] +centroid = (0.71505804350991298, -1.7294042744871876) +description = Pleasanton village, NE +station = ('kear', 0.0042861032739605273) +zone = ('nez061', 0.0020088811137860918) + +[fips3139590] +centroid = (0.70341160103769496, -1.6927685219441801) +description = Plymouth village, NE +station = ('kbie', 0.0031748281594945627) +zone = ('nez088', 0.0030190285296405857) + +[fips3139660] +centroid = (0.71689762054151507, -1.7066488113260256) +description = Polk village, NE +station = ('kjyr', 0.0037695404548694035) +zone = ('nez049', 0.0034374914439980206) + +[fips3139695] +centroid = (0.7428966908510457, -1.6878991929574563) +description = Ponca city, NE +station = ('ksux', 0.0052598599043581287) +zone = ('nez013', 0.0023882724856959521) + +[fips3139835] +centroid = (0.71545723521642912, -1.7271844774780385) +description = Poole CDP, NE +station = ('kear', 0.004556561798452389) +zone = ('nez061', 0.0028373532631260183) + +[fips3139870] +centroid = (0.7193983981069425, -1.803163372206332) +description = Potter village, NE +station = ('ksny', 0.0048079699415362461) +zone = ('nez054', 0.0052823850281685904) + +[fips3139975] +centroid = (0.72099097614280228, -1.6896172078066567) +description = Prague village, NE +station = ('kahq', 0.0030622365660013329) +zone = ('nez051', 0.0026724050062557282) + +[fips3140325] +centroid = (0.69873535782611917, -1.6671054449689509) +description = Preston village, NE +station = ('kfnb', 0.0012178092458178633) +zone = ('nez093', 0.0030851594524142494) + +[fips3140360] +centroid = (0.72647232228503067, -1.7145659913322151) +description = Primrose village, NE +station = ('kbvn', 0.0029913108344766827) +zone = ('nez030', 0.0026489691658608708) + +[fips3140430] +centroid = (0.71012820395802223, -1.7205105827645075) +description = Prosser village, NE +station = ('khsi', 0.0024483391191722809) +zone = ('nez075', 0.0030189170236814378) + +[fips3140535] +centroid = (0.73121584793927097, -1.7113584426861923) +description = Raeville CDP, NE +station = ('kbvn', 0.0029191489427827055) +zone = ('nez030', 0.0032996741584171625) + +[fips3140570] +centroid = (0.70355567796744711, -1.7329309216803523) +description = Ragan village, NE +station = ('khde', 0.0024985127548164737) +zone = ('nez083', 0.0027996225726038201) + +[fips3140605] +centroid = (0.719075826354589, -1.6761762527041233) +description = Ralston city, NE +station = ('kmle', 0.00097973972119171689) +zone = ('nez053', 0.0018023323874809787) + +[fips3140675] +centroid = (0.73962692121718954, -1.6992120157431554) +description = Randolph city, NE +station = ('klcg', 0.005404494040127601) +zone = ('nez017', 0.0037122221689356565) + +[fips3140710] +centroid = (0.71599685611456076, -1.7262574283925491) +description = Ravenna city, NE +station = ('kear', 0.0052117857717798441) +zone = ('nez046', 0.0035544300160116884) + +[fips3140780] +centroid = (0.714831395053249, -1.6891549922608511) +description = Raymond village, NE +station = ('klnk', 0.0021640929962615705) +zone = ('nez066', 0.0032581224668466325) + +[fips3140920] +centroid = (0.69963879260682893, -1.7195376838795682) +description = Red Cloud city, NE +station = ('khsi', 0.0090425790086698654) +zone = ('nez085', 0.0015997214157099072) + +[fips3141130] +centroid = (0.69985517852749124, -1.7317550235501138) +description = Republican City village, NE +station = ('khde', 0.0063064196390283716) +zone = ('nez083', 0.002785898119054781) + +[fips3141235] +centroid = (0.69917559967664222, -1.6988327556966971) +description = Reynolds village, NE +station = ('khjh', 0.0037186040535940172) +zone = ('nez088', 0.0032787959661655071) + +[fips3141340] +centroid = (0.71751817235706161, -1.6768481870128484) +description = Richfield CDP, NE +station = ('kmle', 0.0015579018165530795) +zone = ('nez053', 0.00046959109010327813) + +[fips3141375] +centroid = (0.7232096735945226, -1.6967201568102057) +description = Richland village, NE +station = ('kolu', 0.0015663045602162017) +zone = ('nez043', 0.0029089476216203974) + +[fips3141480] +centroid = (0.71904252547246095, -1.6981551316146102) +description = Rising City village, NE +station = ('kolu', 0.0044219949738102506) +zone = ('nez050', 0.0022333563112356685) + +[fips3141515] +centroid = (0.71181310991131264, -1.730676497338844) +description = Riverdale village, NE +station = ('kear', 0.0022974934975462497) +zone = ('nez061', 0.0016789569536785824) + +[fips3141760] +centroid = (0.69969754038945109, -1.7236809209908777) +description = Riverton village, NE +station = ('khde', 0.0098948107622248774) +zone = ('nez084', 0.0029866696551039012) + +[fips3141830] +centroid = (0.7096240830568763, -1.6870596895872469) +description = Roca village, NE +station = ('klnk', 0.0033544474758174072) +zone = ('nez066', 0.0022203775820650758) + +[fips3142075] +centroid = (0.71765284196214552, -1.7249276794887474) +description = Rockville village, NE +station = ('kear', 0.0070815397930335412) +zone = ('nez046', 0.0026097809633829549) + +[fips3142145] +centroid = (0.72368806834249422, -1.6914999119240757) +description = Rogers village, NE +station = ('kfet', 0.0052268329361219714) +zone = ('nez043', 0.0029317385875642283) + +[fips3142250] +centroid = (0.73403919725705202, -1.684465449640375) +description = Rosalie village, NE +station = ('ksux', 0.0059303586826466347) +zone = ('nez015', 0.0018063681081110967) + +[fips3142285] +centroid = (0.71788207350610245, -1.772996124030481) +description = Roscoe CDP, NE +station = ('koga', 0.0024239276643856422) +zone = ('nez057', 0.0015410946653379852) + +[fips3142355] +centroid = (0.70633206047505703, -1.7201699992142734) +description = Roseland village, NE +station = ('khsi', 0.0028135347865570755) +zone = ('nez075', 0.0012197860215519534) + +[fips3142495] +centroid = (0.73884920250250086, -1.7126051488241842) +description = Royal village, NE +station = ('konl', 0.0075645254949661747) +zone = ('nez016', 0.0028258078310547498) + +[fips3142670] +centroid = (0.69903332043601962, -1.6655777059148025) +description = Rulo village, NE +station = ('kfnb', 0.0021139491809217302) +zone = ('moz011', 0.0029750676725017623) + +[fips3142775] +centroid = (0.74548911565549558, -1.7883788975521984) +description = Rushville city, NE +station = ('kien', 0.0056208924981951888) +zone = ('nez004', 0.0037147424850412268) + +[fips3142810] +centroid = (0.7006450970936513, -1.7081020771809914) +description = Ruskin village, NE +station = ('khjh', 0.0037394895624738452) +zone = ('nez086', 0.0024686876237486649) + +[fips3143055] +centroid = (0.7255586598749042, -1.7080000975927974) +description = St. Edward city, NE +station = ('kbvn', 0.0037312498057819514) +zone = ('nez041', 0.0034895170071687575) + +[fips3143090] +centroid = (0.74718688468537298, -1.6973132545966183) +description = St. Helena village, NE +station = ('kykn', 0.0025262016038192481) +zone = ('nez012', 0.0036891005062121085) + +[fips3143160] +centroid = (0.7170186067652633, -1.7166897428726267) +description = St. Libory CDP, NE +station = ('kgri', 0.0020913247071463075) +zone = ('nez047', 0.0031783891877935973) + +[fips3143265] +centroid = (0.71932036443608594, -1.7184463120450038) +description = St. Paul city, NE +station = ('kgri', 0.0047094297499099581) +zone = ('nez047', 0.00076050534951245757) + +[fips3143370] +centroid = (0.69947368445959024, -1.6707778969678271) +description = Salem village, NE +station = ('kfnb', 0.0019421511443254188) +zone = ('nez093', 0.00085266648824479634) + +[fips3143475] +centroid = (0.74767624010104716, -1.7077954402847082) +description = Santee village, NE +station = ('kykn', 0.006115202929792115) +zone = ('sdz068', 0.0026514004550665829) + +[fips3143650] +centroid = (0.71848707443801374, -1.7680953616639286) +description = Sarben CDP, NE +station = ('koga', 0.0061588320041590355) +zone = ('nez057', 0.0047223127810589096) + +[fips3143685] +centroid = (0.72675476891788093, -1.7343121403437955) +description = Sargent city, NE +station = ('kbbw', 0.0049954770192701097) +zone = ('nez027', 0.0049072954015712319) + +[fips3143755] +centroid = (0.70865326111374694, -1.7093553457569708) +description = Saronville village, NE +station = ('kauh', 0.0051326608535119823) +zone = ('nez076', 0.0020232340572184761) + +[fips3144035] +centroid = (0.72342831098991989, -1.6940633817162347) +description = Schuyler city, NE +station = ('kolu', 0.0035406461788631081) +zone = ('nez043', 0.0021818627522235835) + +[fips3144070] +centroid = (0.72374925958606917, -1.7226821214198389) +description = Scotia village, NE +station = ('kodx', 0.0041488670722716735) +zone = ('nez040', 0.0029389439846213079) + +[fips3144245] +centroid = (0.73071855127550023, -1.809243645534675) +description = Scottsbluff city, NE +station = ('kbff', 0.0008061988496132252) +zone = ('nez019', 0.00066331370830805827) + +[fips3144280] +centroid = (0.72716609066269844, -1.6871081224739897) +description = Scribner city, NE +station = ('kfet', 0.0041955664008075568) +zone = ('nez044', 0.0015039720455538546) + +[fips3144385] +centroid = (0.7337762284986542, -1.7598316465347561) +description = Seneca village, NE +station = ('ktif', 0.0036764671684578767) +zone = ('nez025', 0.0042183839267671171) + +[fips3144420] +centroid = (0.71400042634308192, -1.6946465485792037) +description = Seward city, NE +station = ('klnk', 0.0045449642346418722) +zone = ('nez065', 0.00086196574232600797) + +[fips3144595] +centroid = (0.71897524302979654, -1.7004091370770982) +description = Shelby village, NE +station = ('kolu', 0.0046269589624548099) +zone = ('nez049', 0.0018711747230059509) + +[fips3144700] +centroid = (0.71172451699848138, -1.7231746533347518) +description = Shelton village, NE +station = ('kear', 0.0036486009163008174) +zone = ('nez062', 0.0034315694437766545) + +[fips3145085] +centroid = (0.70539818715219249, -1.705605977097959) +description = Shickley village, NE +station = ('khjh', 0.004957859896195899) +zone = ('nez077', 0.002538451797504154) + +[fips3145190] +centroid = (0.73888187506609815, -1.6981114460234328) +description = Sholes village, NE +station = ('klcg', 0.0043587607771448343) +zone = ('nez018', 0.0031516709956641463) + +[fips3145225] +centroid = (0.70224919430257426, -1.6699941219606342) +description = Shubert village, NE +station = ('kfnb', 0.0029801155363755288) +zone = ('nez093', 0.0019871691615651966) + +[fips3145295] +centroid = (0.71791816691503374, -1.7971386178014954) +description = Sidney city, NE +station = ('ksny', 0.00061953002034757614) +zone = ('nez055', 0.0015429727439631937) + +[fips3145400] +centroid = (0.72107253537874805, -1.7046122389817511) +description = Silver Creek village, NE +station = ('kolu', 0.0049701836080707166) +zone = ('nez049', 0.0025748554321069301) + +[fips3145575] +centroid = (0.70813770830600031, -1.740807732220943) +description = Smithfield village, NE +station = ('klxn', 0.0038317033695172763) +zone = ('nez072', 0.001568408453910536) + +[fips3145610] +centroid = (0.72788253086734955, -1.6892430266683216) +description = Snyder village, NE +station = ('kfet', 0.0056706368426448581) +zone = ('nez044', 0.0028076285286567151) + +[fips3145680] +centroid = (0.71561918431772165, -1.6798502754993263) +description = South Bend village, NE +station = ('kmle', 0.0038281035625077719) +zone = ('nez067', 0.0021438564590603023) + +[fips3146030] +centroid = (0.74113142993899372, -1.6827564581434074) +description = South Sioux City city, NE +station = ('ksux', 0.0014602784426943128) +zone = ('nez014', 0.0023082201961203029) + +[fips3146135] +centroid = (0.72761521623911418, -1.7167503232509633) +description = Spalding village, NE +station = ('kbvn', 0.0040576146615333673) +zone = ('nez040', 0.0029667298716734617) + +[fips3146275] +centroid = (0.74830633886760223, -1.7226452600660369) +description = Spencer village, NE +station = ('konl', 0.0071265111027293722) +zone = ('nez007', 0.00095159975289066997) + +[fips3146380] +centroid = (0.70906714849256491, -1.6885131125218451) +description = Sprague village, NE +station = ('klnk', 0.003620664608197864) +zone = ('nez066', 0.0028507892195429843) + +[fips3146520] +centroid = (0.71708424859843078, -1.6778449620019551) +description = Springfield city, NE +station = ('kmle', 0.0019388342057881024) +zone = ('nez053', 0.0005527866288991374) + +[fips3146625] +centroid = (0.74743521013134684, -1.7409230112180372) +description = Springview village, NE +station = ('kanw', 0.005315810302807835) +zone = ('nez006', 0.0010445085645029561) + +[fips3146695] +centroid = (0.70042232326792675, -1.7382508772266487) +description = Stamford village, NE +station = ('khde', 0.0065600292823129059) +zone = ('nez083', 0.0026527447906477754) + +[fips3146800] +centroid = (0.73213083679962898, -1.6966814454073964) +description = Stanton city, NE +station = ('kofk', 0.002929037991619093) +zone = ('nez032', 0.00059678841350878288) + +[fips3146835] +centroid = (0.71514277924509728, -1.6959921276193213) +description = Staplehurst village, NE +station = ('klnk', 0.0059026954137985331) +zone = ('nez065', 0.0018409883483740226) + +[fips3146870] +centroid = (0.72396602947916688, -1.7542749370754265) +description = Stapleton village, NE +station = ('klbf', 0.0066588615524524929) +zone = ('nez037', 0.0015556102215401497) + +[fips3147010] +centroid = (0.69876975826567589, -1.6933706954427032) +description = Steele City village, NE +station = ('kbie', 0.0058649096893925263) +zone = ('nez088', 0.0029063398458076418) + +[fips3147080] +centroid = (0.70174957635089841, -1.6795809711957437) +description = Steinauer village, NE +station = ('kafk', 0.0085367560822230005) +zone = ('nez092', 0.0013256405979369761) + +[fips3147115] +centroid = (0.70218458221366542, -1.6715614101756326) +description = Stella village, NE +station = ('kfnb', 0.0036305124104686125) +zone = ('nez093', 0.002019890281963534) + +[fips3147150] +centroid = (0.70618145601390248, -1.6821045951210798) +description = Sterling village, NE +station = ('kbie', 0.0056960328745259111) +zone = ('nez090', 0.0019162535077447533) + +[fips3147220] +centroid = (0.71063541409194442, -1.7094341997325759) +description = Stockham village, NE +station = ('kauh', 0.0031702428928547868) +zone = ('nez063', 0.0029381375404304651) + +[fips3147290] +centroid = (0.70744526637856409, -1.7520388386910639) +description = Stockville village, NE +station = ('kmck', 0.0063954764190881433) +zone = ('nez071', 0.00014347368006461907) + +[fips3147360] +centroid = (0.7053723388259705, -1.7032160977532032) +description = Strang village, NE +station = ('khjh', 0.0045838594882529355) +zone = ('nez077', 0.001921168153230918) + +[fips3147395] +centroid = (0.70075283626837692, -1.7667607956513911) +description = Stratton village, NE +station = ('kiml', 0.0082256674330741224) +zone = ('nez080', 0.0025189519833724991) + +[fips3147465] +centroid = (0.71761683581967683, -1.7032775507961659) +description = Stromsburg city, NE +station = ('kjyr', 0.0038586721697487555) +zone = ('nez049', 0.0012643455433081891) + +[fips3147500] +centroid = (0.7435289189192883, -1.7303304683613434) +description = Stuart village, NE +station = ('konl', 0.006331842024920196) +zone = ('nez009', 0.0050681546305424889) + +[fips3147675] +centroid = (0.71469529427817846, -1.7367436981510891) +description = Sumner village, NE +station = ('klxn', 0.0044959490715805435) +zone = ('nez060', 0.0043335756421697211) + +[fips3147745] +centroid = (0.71827465041475347, -1.793548266090633) +description = Sunol CDP, NE +station = ('ksny', 0.0030498816556277703) +zone = ('nez055', 0.003258950340259826) + +[fips3147815] +centroid = (0.69853265528679254, -1.7115790697569366) +description = Superior city, NE +station = ('khjh', 0.0067860801464269078) +zone = ('nez086', 0.0026898654051036833) + +[fips3147850] +centroid = (0.71740769301541041, -1.6983626512626724) +description = Surprise village, NE +station = ('kjyr', 0.0054982264518618059) +zone = ('nez050', 0.0031408212988634082) + +[fips3147920] +centroid = (0.71836488393708153, -1.7648863818479195) +description = Sutherland village, NE +station = ('klbf', 0.0060121409785170929) +zone = ('nez059', 0.0053058689585570012) + +[fips3147955] +centroid = (0.7087211718749421, -1.7081114146924894) +description = Sutton city, NE +station = ('kauh', 0.0052851041290356872) +zone = ('nez076', 0.0028270473153687052) + +[fips3148060] +centroid = (0.70475702299817988, -1.6943625311500266) +description = Swanton village, NE +station = ('kbie', 0.0046024022659751761) +zone = ('nez078', 0.0026471284872444634) + +[fips3148235] +centroid = (0.70971250143678233, -1.6787042923124669) +description = Syracuse city, NE +station = ('kafk', 0.0045437567764738665) +zone = ('nez068', 0.0006859891138801807) + +[fips3148270] +centroid = (0.70124327378818729, -1.6770644682137557) +description = Table Rock village, NE +station = ('kfnb', 0.0069446031602193228) +zone = ('nez092', 0.0021405988359529393) + +[fips3148305] +centroid = (0.70740978383487108, -1.675932342941157) +description = Talmage village, NE +station = ('kafk', 0.0025958438291138379) +zone = ('nez068', 0.0025150585045209837) + +[fips3148340] +centroid = (0.71374344406401835, -1.6969280778839957) +description = Tamora CDP, NE +station = ('klnk', 0.0061667355969731164) +zone = ('nez065', 0.001215518606017573) + +[fips3148410] +centroid = (0.72631526010564373, -1.7017392699533356) +description = Tarnov village, NE +station = ('kolu', 0.0036272168248673142) +zone = ('nez042', 0.00081224955682970596) + +[fips3148445] +centroid = (0.72901711705419359, -1.7345323659888123) +description = Taylor village, NE +station = ('kodx', 0.0062235631554168483) +zone = ('nez027', 0.0026898140932136586) + +[fips3148480] +centroid = (0.70462057315725901, -1.6788110541028114) +description = Tecumseh city, NE +station = ('kafk', 0.006007479433860932) +zone = ('nez090', 0.0010751367274133192) + +[fips3148515] +centroid = (0.72912581616000782, -1.6793974672781891) +description = Tekamah city, NE +station = ('ktqe', 0.00053292989547732794) +zone = ('nez034', 0.0019122411001581906) + +[fips3148585] +centroid = (0.73037020101009464, -1.8093924872132849) +description = Terrytown city, NE +station = ('kbff', 0.00097848424817494517) +zone = ('nez019', 0.00049060407298850072) + +[fips3148690] +centroid = (0.71506671779629549, -1.701637464898067) +description = Thayer village, NE +station = ('kjyr', 0.0021018510697490508) +zone = ('nez064', 0.002156644754768104) + +[fips3148760] +centroid = (0.73266399997952825, -1.7553692061565493) +description = Thedford village, NE +station = ('ktif', 0.00030142044851393085) +zone = ('nez025', 0.0011631497588281724) + +[fips3148900] +centroid = (0.73612584309756646, -1.6877374532956737) +description = Thurston village, NE +station = ('klcg', 0.0038063631298828763) +zone = ('nez015', 0.0020459655547108366) + +[fips3148935] +centroid = (0.73380425848644115, -1.707490199651827) +description = Tilden city, NE +station = ('kofk', 0.0052764183185272833) +zone = ('nez031', 0.0037325601119068794) + +[fips3149005] +centroid = (0.70543593862391307, -1.6988445192158554) +description = Tobias village, NE +station = ('khjh', 0.0057189448080684942) +zone = ('nez078', 0.0031859330487512016) + +[fips3149145] +centroid = (0.70118024994889783, -1.7630194380536459) +description = Trenton village, NE +station = ('kmck', 0.0057534967185476609) +zone = ('nez080', 0.00038281733441162445) + +[fips3149285] +centroid = (0.71000063784299405, -1.7151953396071915) +description = Trumbull village, NE +station = ('khsi', 0.0025367212873187001) +zone = ('nez076', 0.0040066151641566638) + +[fips3149320] +centroid = (0.72533167980568236, -1.7619726070215922) +description = Tryon CDP, NE +station = ('klbf', 0.0085783994896894804) +zone = ('nez036', 0.00140621678509385) + +[fips3149425] +centroid = (0.72840801459853999, -1.6843412345575106) +description = Uehling village, NE +station = ('ktqe', 0.0042337217466858297) +zone = ('nez034', 0.0030751681618008996) + +[fips3149460] +centroid = (0.71684358514787316, -1.6965102635143607) +description = Ulysses village, NE +station = ('kolu', 0.0068138501299607433) +zone = ('nez050', 0.0028192850915559169) + +[fips3149530] +centroid = (0.71004708105438963, -1.6802263415932537) +description = Unadilla village, NE +station = ('kpmv', 0.0065874519357780525) +zone = ('nez068', 0.0018852613842114301) + +[fips3149635] +centroid = (0.7123449990008579, -1.6741452479601626) +description = Union village, NE +station = ('kpmv', 0.0023678274747286577) +zone = ('nez067', 0.0033402246069718614) + +[fips3149880] +centroid = (0.70370785322492857, -1.7261698826772693) +description = Upland village, NE +station = ('khde', 0.0061670622233340302) +zone = ('nez084', 0.0025879275606386044) + +[fips3149915] +centroid = (0.71375726707169418, -1.6989968515529696) +description = Utica village, NE +station = ('kjyr', 0.0036601783930619467) +zone = ('nez065', 0.0027457007557966174) + +[fips3149950] +centroid = (0.74828960116007548, -1.7549265382983661) +description = Valentine city, NE +station = ('kvtn', 0.00012513726891100226) +zone = ('nez005', 0.0055441925540950119) + +[fips3150020] +centroid = (0.72111152603423767, -1.6815598429549474) +description = Valley city, NE +station = ('kfet', 0.0032241911542544165) +zone = ('nez052', 0.0025431712768321678) + +[fips3150125] +centroid = (0.71698230391682183, -1.6900650592927184) +description = Valparaiso village, NE +station = ('kahq', 0.0040337907766472532) +zone = ('nez051', 0.0036264566879113218) + +[fips3150230] +centroid = (0.71143069081890808, -1.7809520328927719) +description = Venango village, NE +station = ('kheq', 0.0045640975827956022) +zone = ('coz051', 0.0051138597347217922) + +[fips3150265] +centroid = (0.71972660727278004, -1.6816621541556993) +description = Venice CDP, NE +station = ('kmle', 0.0032319447453956008) +zone = ('nez052', 0.0027846951687751434) + +[fips3150335] +centroid = (0.74719986993500787, -1.713796318585378) +description = Verdel village, NE +station = ('konl', 0.0087055187804305524) +zone = ('nez011', 0.0049202791060484969) + +[fips3150370] +centroid = (0.7434621949819844, -1.7110439867148606) +description = Verdigre village, NE +station = ('konl', 0.0086368193057124159) +zone = ('nez011', 0.0019711370112694541) + +[fips3150510] +centroid = (0.70073374236635999, -1.6704755012216266) +description = Verdon village, NE +station = ('kfnb', 0.0020565761031765724) +zone = ('nez093', 0.00042846624244103444) + +[fips3150790] +centroid = (0.70242276729668507, -1.6842222031025245) +description = Virginia village, NE +station = ('kbie', 0.0034756719014283374) +zone = ('nez089', 0.0025525676285367313) + +[fips3150895] +centroid = (0.71378608245764452, -1.7010237024133106) +description = Waco village, NE +station = ('kjyr', 0.0021279823767409475) +zone = ('nez064', 0.0018384276233585181) + +[fips3150965] +centroid = (0.71933718941007507, -1.6862781136949112) +description = Wahoo city, NE +station = ('kahq', 0.00034098854035356161) +zone = ('nez051', 0.00033368503200257872) + +[fips3151070] +centroid = (0.73770191031870236, -1.6905956742919097) +description = Wakefield city, NE +station = ('klcg', 0.001580659421229619) +zone = ('nez018', 0.003450786627044471) + +[fips3151175] +centroid = (0.71275021209329337, -1.7656532969745382) +description = Wallace village, NE +station = ('kiml', 0.0081972431638301351) +zone = ('nez070', 0.0056256538184137174) + +[fips3151245] +centroid = (0.73563626078908961, -1.6841182861988608) +description = Walthill village, NE +station = ('ksux', 0.0043300972277814228) +zone = ('nez015', 0.00068264355301883583) + +[fips3151280] +centroid = (0.71202380605861337, -1.6853905265038096) +description = Walton CDP, NE +station = ('klnk', 0.0027327450355309245) +zone = ('nez066', 0.00162581728183161) + +[fips3151350] +centroid = (0.71804856046345011, -1.6818337200211704) +description = Wann CDP, NE +station = ('kmle', 0.0034173170828748684) +zone = ('nez052', 0.0038294252162475715) + +[fips3151595] +centroid = (0.72252487620921013, -1.6791368372609887) +description = Washington village, NE +station = ('kbta', 0.0012095542448148054) +zone = ('nez052', 0.0019164454887543615) + +[fips3151630] +centroid = (0.74101862930943729, -1.6883544097329612) +description = Waterbury village, NE +station = ('ksux', 0.0047182250941027442) +zone = ('nez013', 0.0018128654152160526) + +[fips3151665] +centroid = (0.7205691126093029, -1.6804912302138288) +description = Waterloo village, NE +station = ('kmle', 0.0027564241199319506) +zone = ('nez052', 0.0017218005674453222) + +[fips3151700] +centroid = (0.70540125893167593, -1.7693577059520185) +description = Wauneta village, NE +station = ('kiml', 0.0036339530554165282) +zone = ('nez070', 0.0045887037245746949) + +[fips3151735] +centroid = (0.74172690137318908, -1.7023822143431855) +description = Wausa village, NE +station = ('kykn', 0.0075790177571423778) +zone = ('nez017', 0.0041515997072931847) + +[fips3151770] +centroid = (0.71403404138447535, -1.684837012784832) +description = Waverly city, NE +station = ('klnk', 0.0033569105647419367) +zone = ('nez066', 0.0030060784185391158) + +[fips3151840] +centroid = (0.73717555392288592, -1.6932355545987214) +description = Wayne city, NE +station = ('klcg', 0.00044491033197285195) +zone = ('nez018', 0.0014299439233292756) + +[fips3152015] +centroid = (0.71330185830997128, -1.6779606947846548) +description = Weeping Water city, NE +station = ('kpmv', 0.003253646924433301) +zone = ('nez067', 0.00070891417636683937) + +[fips3152085] +centroid = (0.71128994746802732, -1.7581018856196895) +description = Wellfleet village, NE +station = ('klbf', 0.0063892732876767626) +zone = ('nez059', 0.0051323501979117798) + +[fips3152295] +centroid = (0.70499222356817859, -1.6964320378572864) +description = Western village, NE +station = ('kbie', 0.0061817873990003096) +zone = ('nez078', 0.0024096162380208576) + +[fips3152330] +centroid = (0.72249991800090663, -1.7345395567453303) +description = Westerville CDP, NE +station = ('kbbw', 0.0033555502655674991) +zone = ('nez038', 0.0045080443330446094) + +[fips3152540] +centroid = (0.71895592223497695, -1.6884661631649664) +description = Weston village, NE +station = ('kahq', 0.0019721153101531024) +zone = ('nez051', 0.0014900560323754773) + +[fips3152575] +centroid = (0.730206332046625, -1.6878366752636496) +description = West Point city, NE +station = ('ktqe', 0.0069113439456779573) +zone = ('nez033', 0.0017337767763804862) + +[fips3152855] +centroid = (0.7504395500925598, -1.7899227110887577) +description = White Clay CDP, NE +station = ('kien', 0.00080076444253909937) +zone = ('sdz042', 0.0059095133236067897) + +[fips3152925] +centroid = (0.74671746092975666, -1.8021693373841514) +description = Whitney village, NE +station = ('kcdr', 0.0021849966842292946) +zone = ('nez002', 0.0019148395612437433) + +[fips3152960] +centroid = (0.70652523351666785, -1.6923561180952262) +description = Wilber city, NE +station = ('kbie', 0.004257708525799939) +zone = ('nez078', 0.0024529868710416562) + +[fips3152995] +centroid = (0.70448665404375344, -1.7308327392134824) +description = Wilcox village, NE +station = ('khde', 0.0026444347462578391) +zone = ('nez074', 0.0038528592494609594) + +[fips3153205] +centroid = (0.71366589908535227, -1.7465633917617074) +description = Willow Island CDP, NE +station = ('klxn', 0.004242499699954291) +zone = ('nez060', 0.0033336021911709907) + +[fips3153240] +centroid = (0.70008472423071344, -1.747191134333772) +description = Wilsonville village, NE +station = ('kmck', 0.0065415751849661682) +zone = ('nez082', 0.0028271339003653581) + +[fips3153275] +centroid = (0.73715654728733171, -1.6837505278721732) +description = Winnebago village, NE +station = ('ksux', 0.0028142163648070891) +zone = ('nez015', 0.001647973205459531) + +[fips3153345] +centroid = (0.74200104023879987, -1.7097269263547206) +description = Winnetoon village, NE +station = ('konl', 0.0093433412641484304) +zone = ('nez011', 0.0023249994789277229) + +[fips3153380] +centroid = (0.7361352678755273, -1.6960305423161577) +description = Winside village, NE +station = ('klcg', 0.0027470653547791166) +zone = ('nez018', 0.00091283851038211137) + +[fips3153415] +centroid = (0.72621458951438878, -1.6843217566830582) +description = Winslow village, NE +station = ('kfet', 0.002780142170142988) +zone = ('nez044', 0.0020287365481964133) + +[fips3153450] +centroid = (0.73282964917883497, -1.691466995014383) +description = Wisner city, NE +station = ('klcg', 0.0045118798867767171) +zone = ('nez033', 0.0020641189652795553) + +[fips3153520] +centroid = (0.72259646961512691, -1.7172322784706091) +description = Wolbach village, NE +station = ('kbvn', 0.0071823494685683718) +zone = ('nez040', 0.0033624977940434563) + +[fips3153555] +centroid = (0.74417949039796905, -1.7494678116232436) +description = Wood Lake village, NE +station = ('kanw', 0.00319359189718973) +zone = ('nez005', 0.0037492481683641895) + +[fips3153575] +centroid = (0.71124085135616877, -1.6828629232277788) +description = Woodland Hills CDP, NE +station = ('klnk', 0.0047884126789190405) +zone = ('nez068', 0.0041883348653766698) + +[fips3153580] +centroid = (0.73398620906096157, -1.6989863446708726) +description = Woodland Park CDP, NE +station = ('kofk', 0.0016893957393035587) +zone = ('nez032', 0.0030967621781140772) + +[fips3153660] +centroid = (0.71245664771310802, -1.7209007685720834) +description = Wood River city, NE +station = ('khsi', 0.0044415991849705919) +zone = ('nez062', 0.0015794830290346191) + +[fips3153835] +centroid = (0.70025784343921882, -1.6871078432213094) +description = Wymore city, NE +station = ('kbie', 0.0033136373339363572) +zone = ('nez089', 0.0024677446136900081) + +[fips3153905] +centroid = (0.74595024909716501, -1.6959318439469573) +description = Wynot village, NE +station = ('kykn', 0.0041235874718885852) +zone = ('nez012', 0.0026713119997768078) + +[fips3154020] +centroid = (0.7115254621972914, -1.688369105405263) +description = Yankee Hill CDP, NE +station = ('klnk', 0.0012180499975229097) +zone = ('nez066', 0.0007056220851096815) + +[fips3154045] +centroid = (0.71333985412778722, -1.7033456011837014) +description = York city, NE +station = ('kjyr', 0.0005780401898266617) +zone = ('nez064', 4.2353643101078025e-05) + +[fips3154115] +centroid = (0.71981999984105438, -1.6824316000097335) +description = Yutan city, NE +station = ('kahq', 0.0026835401474210887) +zone = ('nez051', 0.0031772494646392004) + +[fips32001] +centroid = (0.68985362160881525, -2.0642082192632594) +description = Churchill County, NV +station = ('knfl', 0.0057914114796691731) +zone = ('nvz004', 0.0090369135115906263) + +[fips3200194154] +centroid = (0.69434468538675453, -2.0690427812912837) +description = Carson Sink CCD, NV +station = ('klol', 0.004957266969565075) +zone = ('nvz004', 0.004124593177717681) + +[fips3200194238] +centroid = (0.69048389490829543, -2.0584736432998589) +description = Dixie Valley CCD, NV +station = ('knfl', 0.010234801473299566) +zone = ('nvz004', 0.010800876899434979) + +[fips3200194308] +centroid = (0.6873323538779692, -2.0729825828249804) +description = Fallon CCD, NV +station = ('knfl', 0.001514487355883744) +zone = ('nvz004', 0.011699753382330119) + +[fips32003] +centroid = (0.6320576542942612, -2.0073698268428122) +description = Clark County, NV +station = ('klsv', 0.00043195917121429517) +zone = ('nvz020', 0.0025377192706191759) + +[fips3200394182] +centroid = (0.62685830099927753, -2.0065734505584198) +description = Clark CCD, NV +station = ('kbvu', 0.0015838373785353195) +zone = ('nvz020', 0.0048918332927986065) + +[fips3200394504] +centroid = (0.63057963967050223, -2.0091507084516693) +description = Las Vegas CCD, NV +station = ('kvgt', 0.0015542797744885171) +zone = ('nvz020', 0.000817204131019492) + +[fips32005] +centroid = (0.67902259696312905, -2.0875711966304555) +description = Douglas County, NV +station = ('kcxp', 0.005282862214997585) +zone = ('caz072', 0.0049355616429233142) + +[fips3200500] +centroid = (0.65213916832161267, -2.0099717811449778) +description = Alamo CDP, NV +station = ('kins', 0.015341969329423423) +zone = ('nvz015', 0.0065165368649417292) + +[fips3200594364] +centroid = (0.67953516525785473, -2.0890004642082061) +description = Gardnerville-Minden CCD, NV +station = ('kcxp', 0.0045333257681539748) +zone = ('caz072', 0.0037730453797017857) + +[fips3200594378] +centroid = (0.68095233770388908, -2.091045501399353) +description = Genoa-Jacks Valley CCD, NV +station = ('kcxp', 0.0032465887835817133) +zone = ('caz072', 0.0024732268554621909) + +[fips3200594658] +centroid = (0.68011539996768022, -2.0858410168363686) +description = Pine Nut CCD, NV +station = ('kcxp', 0.0049443523953519196) +zone = ('nvz002', 0.0069834585731980963) + +[fips3200594826] +centroid = (0.67581293646871143, -2.0853936714957899) +description = Topaz Lake CCD, NV +station = ('kban', 0.0064942597627591896) +zone = ('caz072', 0.0076801725167922712) + +[fips3200594952] +centroid = (0.68115533694918851, -2.0929826423361413) +description = Zephyr Cove CCD, NV +station = ('ktvl', 0.0026601863850948333) +zone = ('caz072', 0.0015355813857168008) + +[fips32007] +centroid = (0.71804822885089237, -2.0132621456640076) +description = Elko County, NV +station = ('keko', 0.0078255131789811607) +zone = ('nvz031', 0.0077459851295962152) + +[fips3200794126] +centroid = (0.71009602008661554, -2.0248789873521118) +description = Carlin CCD, NV +station = ('keko', 0.004025051945088242) +zone = ('nvz038', 0.0038373659837098472) + +[fips3200794266] +centroid = (0.71215774262541132, -2.0196217938457171) +description = Elko CCD, NV +station = ('keko', 0.0010316308719196276) +zone = ('nvz038', 0.001499391667848978) + +[fips3200794476] +centroid = (0.72993257715344972, -1.9989854221958641) +description = Jackpot CCD, NV +station = ('ktwf', 0.011559653065017781) +zone = ('idz030', 0.0072879794163813565) + +[fips3200794490] +centroid = (0.72644741643660471, -2.0144911018035065) +description = Jarbidge CCD, NV +station = ('keko', 0.014565862735000136) +zone = ('nvz031', 0.002662831184771544) + +[fips3200794602] +centroid = (0.71949126707644118, -1.9962594098904667) +description = Montello CCD, NV +station = ('kenv', 0.0096858430566597615) +zone = ('nvz033', 0.010224512560641559) + +[fips3200794616] +centroid = (0.72352069126722796, -2.0326597175173799) +description = Mountain City CCD, NV +station = ('keko', 0.01404850714465989) +zone = ('nvz031', 0.011421168242746796) + +[fips3200794882] +centroid = (0.71166969620667619, -2.0072232366389371) +description = Wells CCD, NV +station = ('kenv', 0.012873220366539576) +zone = ('nvz039', 0.0036920504799666689) + +[fips3200794896] +centroid = (0.7066856990880962, -1.9951458374678166) +description = West Wendover CCD, NV +station = ('kenv', 0.0056385924343804955) +zone = ('nvz033', 0.0029576569092917824) + +[fips32009] +centroid = (0.65936734469899205, -2.0530723728637126) +description = Esmeralda County, NV +station = ('ktph', 0.0087679421870494861) +zone = ('nvz014', 0.010053727851150189) + +[fips3200994420] +centroid = (0.65549311518529263, -2.0487260492406412) +description = Goldfield CCD, NV +station = ('ktph', 0.0092865600315361983) +zone = ('nvz014', 0.0059894271491992774) + +[fips3200994770] +centroid = (0.66235304454379373, -2.056236986410136) +description = Silver Peak CCD, NV +station = ('kbih', 0.012729549042312476) +zone = ('nvz014', 0.01357205680795869) + +[fips32011] +centroid = (0.69774402826427884, -2.0293328581636909) +description = Eureka County, NV +station = ('k05u', 0.0074644598092407114) +zone = ('nvz037', 0.0086502548873724685) + +[fips3201194098] +centroid = (0.70580191671476378, -2.0306474750628785) +description = Beowawe CCD, NV +station = ('keko', 0.010153447742163629) +zone = ('nvz036', 0.0047737612616882757) + +[fips3201194294] +centroid = (0.69098080759963065, -2.0275678765043192) +description = Eureka CCD, NV +station = ('k05u', 0.0022263372120858663) +zone = ('nvz037', 0.0072531044796128293) + +[fips32013] +centroid = (0.72270443568265519, -2.0617154178525134) +description = Humboldt County, NV +station = ('kwmc', 0.0098547853346577993) +zone = ('nvz030', 0.00020502988736640723) + +[fips3201394406] +centroid = (0.71616938191112034, -2.0476428455469757) +description = Golconda CCD, NV +station = ('kwmc', 0.0067251951217106327) +zone = ('nvz030', 0.012255821249446444) + +[fips3201394546] +centroid = (0.72780004660690034, -2.0520668188684685) +description = McDermitt CCD, NV +station = ('kwmc', 0.01426932041554662) +zone = ('nvz030', 0.0086832222520976526) + +[fips3201394798] +centroid = (0.7268188748613067, -2.0724574830662257) +description = Summit Lake CCD, NV +station = ('kwmc', 0.017930131321137174) +zone = ('nvz030', 0.0092240849756583254) + +[fips3201394910] +centroid = (0.71771850124860559, -2.0630624455159099) +description = Winnemucca CCD, NV +station = ('kwmc', 0.0065926294131525669) +zone = ('nvz030', 0.0051134436405877561) + +[fips32015] +centroid = (0.69639005419045918, -2.0428597183720076) +description = Lander County, NV +station = ('k05u', 0.014906111835950104) +zone = ('nvz037', 0.0067500967695388672) + +[fips3201594042] +centroid = (0.69175852631431944, -2.0435325602519439) +description = Austin CCD, NV +station = ('k05u', 0.014524954214042526) +zone = ('nvz037', 0.0050709457610100548) + +[fips3201594070] +centroid = (0.70770905544171048, -2.0402562979932704) +description = Battle Mountain CCD, NV +station = ('kwmc', 0.013412792610381266) +zone = ('nvz036', 0.0028110718545595022) + +[fips32017] +centroid = (0.65684776993752059, -2.00473818449007) +description = Lincoln County, NV +station = ('ksgu', 0.019989375515328648) +zone = ('nvz015', 0.00041542954726551815) + +[fips3201794014] +centroid = (0.65345484987164359, -2.0145709157102005) +description = Alamo CCD, NV +station = ('kbjn', 0.012000109941548575) +zone = ('nvz015', 0.0085735609206854437) + +[fips3201794112] +centroid = (0.64947443452625286, -1.9983465793297566) +description = Caliente CCD, NV +station = ('ksgu', 0.012677233600050065) +zone = ('nvz015', 0.0093438013022133469) + +[fips3201794672] +centroid = (0.66600305160848938, -1.9983737017463326) +description = Pioche CCD, NV +station = ('kely', 0.020478752833888138) +zone = ('nvz015', 0.010145536861648976) + +[fips32019] +centroid = (0.68106611571782649, -2.0803873865226619) +description = Lyon County, NV +station = ('kcxp', 0.0078306476491380797) +zone = ('nvz003', 0.0092423027123290005) + +[fips3201994224] +centroid = (0.6847195959877338, -2.0852898767651737) +description = Dayton CCD, NV +station = ('kcxp', 0.0035052724966838072) +zone = ('nvz003', 0.0039999748884638284) + +[fips3201994322] +centroid = (0.69022967024944992, -2.0806715086715939) +description = Fernley CCD, NV +station = ('krno', 0.0075285209713714741) +zone = ('nvz003', 0.0063853332964668216) + +[fips3201994777] +centroid = (0.68466774225565696, -2.0797100940531328) +description = Silver Springs CCD, NV +station = ('knfl', 0.0073444058021537749) +zone = ('nvz003', 0.0074594943451641842) + +[fips3201994784] +centroid = (0.67530708769160586, -2.0802822304352291) +description = Smith Valley CCD, NV +station = ('kban', 0.0074436974846335095) +zone = ('nvz001', 0.0081526102136907277) + +[fips3201994924] +centroid = (0.67909291627869184, -2.0789678753354299) +description = Yerington CCD, NV +station = ('kcxp', 0.0097062556433729907) +zone = ('nvz001', 0.0087495134447455464) + +[fips32021] +centroid = (0.67224230697839638, -2.0667539565102184) +description = Mineral County, NV +station = ('kban', 0.015322672226320239) +zone = ('nvz001', 0.0029986246125600405) + +[fips3202194434] +centroid = (0.67196956437618716, -2.0717547262429101) +description = Hawthorne CCD, NV +station = ('kban', 0.011435988763586556) +zone = ('nvz001', 0.0022897048162942206) + +[fips3202194588] +centroid = (0.66846829427034649, -2.0639830368831671) +description = Mina CCD, NV +station = ('kmmh', 0.014324692909296222) +zone = ('nvz001', 0.007136236216535221) + +[fips3202194868] +centroid = (0.67850960978938279, -2.0678825038578506) +description = Walker River CCD, NV +station = ('knfl', 0.010110034628071295) +zone = ('nvz001', 0.0049827312978547355) + +[fips32023] +centroid = (0.66263831861003231, -2.0325938138848247) +description = Nye County, NV +station = ('kbjn', 0.0066603715447798766) +zone = ('nvz040', 0.0014136701196243576) + +[fips3202394028] +centroid = (0.63864370658653935, -2.032226090464722) +description = Amargosa Valley CCD, NV +station = ('kdra', 0.0057155102827030711) +zone = ('nvz017', 0.00649530762503551) + +[fips3202394084] +centroid = (0.64695751266524426, -2.040465109184979) +description = Beatty CCD, NV +station = ('kbjn', 0.013123378816981847) +zone = ('nvz014', 0.0088909270674938801) + +[fips3202394252] +centroid = (0.6729564957083124, -2.0189213583103065) +description = Duckwater CCD, NV +station = ('kely', 0.017134066140343233) +zone = ('nvz041', 0.0026411934465131971) + +[fips3202394350] +centroid = (0.67716888276458576, -2.0530563681944716) +description = Gabbs CCD, NV +station = ('ktph', 0.015320756204658531) +zone = ('nvz001', 0.013656687013895484) + +[fips3202394644] +centroid = (0.63482623518011472, -2.0254276490557688) +description = Pahrump CCD, NV +station = ('kdra', 0.004550995492921363) +zone = ('nvz017', 0.0026589053272357923) + +[fips3202394701] +centroid = (0.66601804398676412, -2.035294990154966) +description = Ralston Valley CCD, NV +station = ('ktph', 0.0068174977507410644) +zone = ('nvz040', 0.0027653413083806211) + +[fips3202394728] +centroid = (0.67752390018773401, -2.0386789566817805) +description = Round Mountain CCD, NV +station = ('ktph', 0.014225298856839244) +zone = ('nvz037', 0.013925425913265899) + +[fips3202394812] +centroid = (0.66412594999796959, -2.0439177544178593) +description = Tonopah CCD, NV +station = ('ktph', 0.00046418016858564866) +zone = ('nvz014', 0.0085727476065707662) + +[fips3202394938] +centroid = (0.65122430163430234, -2.0320996239071225) +description = Yucca Flat CCD, NV +station = ('kbjn', 0.0057989291155951823) +zone = ('nvz014', 0.0085561570546973265) + +[fips32027] +centroid = (0.70580484886790718, -2.0666352392144978) +description = Pershing County, NV +station = ('klol', 0.0068380431842498778) +zone = ('nvz004', 0.0074851632563369035) + +[fips3202794448] +centroid = (0.70770359256115178, -2.0650551228294973) +description = Imlay CCD, NV +station = ('klol', 0.0090316565083767633) +zone = ('nvz004', 0.0095812326156285866) + +[fips3202794518] +centroid = (0.70142595740099356, -2.0706769505232185) +description = Lovelock CCD, NV +station = ('klol', 0.0023505821674459815) +zone = ('nvz004', 0.0036388152550454102) + +[fips32029] +centroid = (0.68832966991914379, -2.0860986099806702) +description = Storey County, NV +station = ('krno', 0.0033542496969267343) +zone = ('nvz003', 0.0018129512262475543) + +[fips3202994196] +centroid = (0.68973492176638718, -2.0856981790903855) +description = Clark CCD, NV +station = ('krno', 0.0036219020554292772) +zone = ('nvz003', 0.002754519642986464) + +[fips3202994854] +centroid = (0.68723098515501346, -2.0862477309119609) +description = Virginia City CCD, NV +station = ('krno', 0.0036678600721820258) +zone = ('nvz003', 0.001791534223730682) + +[fips32031] +centroid = (0.71040679341322566, -2.0893391453495558) +description = Washoe County, NV +station = ('kaat', 0.017669481385218455) +zone = ('nvz005', 0.0071646010365296097) + +[fips3203194440] +centroid = (0.7163811427092649, -2.0896229707925151) +description = High Desert CCD, NV +station = ('kaat', 0.013410046915735486) +zone = ('nvz005', 0.0013959174101334311) + +[fips3203194462] +centroid = (0.68415721599615609, -2.0931849085431553) +description = Incline Village CCD, NV +station = ('kcxp', 0.0026832162440113714) +zone = ('nvz002', 0.00035101376396705055) + +[fips3203194635] +centroid = (0.69361878549755751, -2.0926131735867868) +description = North Valleys CCD, NV +station = ('krts', 0.0013105716724667235) +zone = ('nvz003', 0.0065615889737341143) + +[fips3203194686] +centroid = (0.70001541720611671, -2.0847630316771668) +description = Pyramid Lake CCD, NV +station = ('krts', 0.0095816638834397873) +zone = ('nvz003', 0.012408698752494606) + +[fips3203194703] +centroid = (0.69010154562906101, -2.0918198341752925) +description = Reno North CCD, NV +station = ('krno', 0.0015195641584663806) +zone = ('nvz003', 0.0034307772494561154) + +[fips3203194709] +centroid = (0.68865070578175569, -2.0897328916288056) +description = Reno Southeast CCD, NV +station = ('krno', 0.00064967448826334505) +zone = ('nvz003', 0.0012694065828733796) + +[fips3203194712] +centroid = (0.68845919080293427, -2.0931872298310603) +description = Reno Southwest CCD, NV +station = ('krno', 0.0023064458721742836) +zone = ('nvz002', 0.0040288066507143732) + +[fips3203194794] +centroid = (0.69010451268878936, -2.0896804619380758) +description = Sparks CCD, NV +station = ('krno', 0.0011073683193098204) +zone = ('nvz003', 0.0023992170708640481) + +[fips3203194804] +centroid = (0.69128760157554625, -2.0905427418550233) +description = Sun Valley CCD, NV +station = ('krts', 0.0016773898757734232) +zone = ('nvz003', 0.0037533343445354857) + +[fips3203194840] +centroid = (0.68993310390295104, -2.0936389734013541) +description = Verdi CCD, NV +station = ('krts', 0.0026379735409189256) +zone = ('nvz003', 0.0045257221603660176) + +[fips3203194871] +centroid = (0.69342056845440858, -2.087515520627317) +description = Warm Springs-Truckee Canyon CCD, NV +station = ('krts', 0.0037911224522571398) +zone = ('nvz003', 0.0055380893991169682) + +[fips3203194874] +centroid = (0.68569003395842765, -2.090760140066652) +description = Washoe Valley CCD, NV +station = ('kcxp', 0.0018400522448368435) +zone = ('nvz002', 0.0020841015448468704) + +[fips32033] +centroid = (0.68797046370579085, -2.0053998039029159) +description = White Pine County, NV +station = ('kely', 0.0021679603229699178) +zone = ('nvz035', 0.00036038771875099139) + +[fips3203394056] +centroid = (0.68877778320459349, -1.9948084129635286) +description = Baker CCD, NV +station = ('kely', 0.0080272209759030353) +zone = ('nvz035', 0.0081469823670430319) + +[fips3203394168] +centroid = (0.69431129723816387, -2.0134009167928335) +description = Cherry Creek CCD, NV +station = ('k05u', 0.0092323843885750521) +zone = ('nvz035', 0.0086216656725877621) + +[fips3203394280] +centroid = (0.680698566830649, -2.0036485928913423) +description = Ely CCD, NV +station = ('kely', 0.005258496060786438) +zone = ('nvz035', 0.0077417439426846722) + +[fips3203394532] +centroid = (0.68215495682497573, -2.0123432298128323) +description = Lund CCD, NV +station = ('kely', 0.0071403040066829113) +zone = ('nvz035', 0.0082148568101327035) + +[fips3203394560] +centroid = (0.68974308990728639, -2.0033707015678397) +description = McGill CCD, NV +station = ('kely', 0.0039286914023201492) +zone = ('nvz035', 0.0020784263497660035) + +[fips3203394742] +centroid = (0.68723576735716396, -2.0084575334859474) +description = Ruth CCD, NV +station = ('kely', 0.0033263236220225892) +zone = ('nvz035', 0.0026426908184224765) + +[fips3203700] +centroid = (0.68936655257446111, -2.0433283916360456) +description = Austin CDP, NV +station = ('k05u', 0.014485457826940069) +zone = ('nvz037', 0.0053042952386823574) + +[fips3204100] +centroid = (0.68100653017716339, -1.991787108401986) +description = Baker CDP, NV +station = ('kely', 0.011019014948446742) +zone = ('nvz035', 0.012801323449062567) + +[fips3204900] +centroid = (0.70925670870262403, -2.0411534844952581) +description = Battle Mountain CDP, NV +station = ('kwmc', 0.012140578338571966) +zone = ('nvz036', 0.0041833994340280851) + +[fips3205100] +centroid = (0.64450663406313125, -2.036344072661755) +description = Beatty CDP, NV +station = ('kdra', 0.010322230902034905) +zone = ('caz522', 0.010684761348662784) + +[fips3205125] +centroid = (0.65774671922205274, -1.9973873289195678) +description = Beaverdam CDP, NV +station = ('ksgu', 0.015715599844582061) +zone = ('nvz015', 0.0059464725284973895) + +[fips3205275] +centroid = (0.65836111002533981, -1.9981361449818436) +description = Bennett Springs CDP, NV +station = ('ksgu', 0.016566840374019582) +zone = ('nvz015', 0.0054463740438525452) + +[fips3205700] +centroid = (0.62901580720742289, -2.0143333763990041) +description = Blue Diamond CDP, NV +station = ('klas', 0.0024580471874371492) +zone = ('nvz020', 0.0038570502314488591) + +[fips3206500] +centroid = (0.62559155848147263, -2.005585803641301) +description = Boulder City city, NV +station = ('kbvu', 0.0018313890177786803) +zone = ('nvz021', 0.0048098457435897376) + +[fips3208100] +centroid = (0.64060858080514216, -1.99184295893805) +description = Bunkerville CDP, NV +station = ('ksgu', 0.0098655699701944276) +zone = ('nvz016', 0.0057221729430788348) + +[fips3208500] +centroid = (0.65646018467053013, -1.9987427516166667) +description = Caliente city, NV +station = ('ksgu', 0.015749049788771959) +zone = ('nvz015', 0.0049188564965171461) + +[fips3208600] +centroid = (0.61609272620054112, -2.0049952889421814) +description = Cal-Nev-Ari CDP, NV +station = ('kifp', 0.0051710257223914653) +zone = ('nvz022', 0.0046073354337270982) + +[fips3208900] +centroid = (0.71068084501237372, -2.0264676733037397) +description = Carlin city, NV +station = ('keko', 0.004732789052958512) +zone = ('nvz038', 0.0049972582219694247) + +[fips3209700] +centroid = (0.68335656365509623, -2.0899173205708639) +description = Carson City, NV +station = ('kcxp', 0.00069276038157564061) +zone = ('nvz002', 0.0025584519828118551) + +[fips3210200] +centroid = (0.67826878925919265, -2.0881315345868083) +description = Carter Springs CDP, NV +station = ('kcxp', 0.0058961623553222603) +zone = ('caz072', 0.0046912376918685633) + +[fips3214090] +centroid = (0.69276748370160479, -2.0939985286805571) +description = Cold Springs CDP, NV +station = ('krts', 0.001420265918583883) +zone = ('nvz003', 0.0064956263341109108) + +[fips3216300] +centroid = (0.70545819157187617, -2.0346230732995334) +description = Crescent Valley CDP, NV +station = ('keko', 0.012734094648971692) +zone = ('nvz036', 0.0020676747198693198) + +[fips3216700] +centroid = (0.68470371349154058, -2.0944322255463854) +description = Crystal Bay CDP, NV +station = ('ktrk', 0.0023232188408605693) +zone = ('nvz002', 0.0012093687398265168) + +[fips3217500] +centroid = (0.68541915885851812, -2.0864529292721175) +description = Dayton CDP, NV +station = ('kcxp', 0.0028895725933340707) +zone = ('nvz003', 0.0029163887780422264) + +[fips3218500] +centroid = (0.73251552482006099, -2.0701789208211618) +description = Denio CDP, NV +station = ('kreo', 0.014399259829311003) +zone = ('nvz030', 0.01179807434312475) + +[fips3219150] +centroid = (0.67681721637360148, -2.0876826359031955) +description = Double Spring CDP, NV +station = ('ktvl', 0.0053248912012006091) +zone = ('caz072', 0.0056332941236435351) + +[fips3219800] +centroid = (0.66120662502462124, -1.9949994043435744) +description = Dry Valley CDP, NV +station = ('ksgu', 0.017052671016890383) +zone = ('nvz015', 0.0087512142872645231) + +[fips3220700] +centroid = (0.65722346951230493, -2.0599771048241124) +description = Dyer CDP, NV +station = ('kbih', 0.0068926101190689227) +zone = ('caz521', 0.011271129642282201) + +[fips3221520] +centroid = (0.67969062173432981, -2.0891456232420946) +description = East Valley CDP, NV +station = ('kcxp', 0.0043660400265013444) +zone = ('caz072', 0.0036533551913392709) + +[fips3222500] +centroid = (0.71276368603511886, -2.0205265550766582) +description = Elko city, NV +station = ('keko', 0.00022492531934691258) +zone = ('nvz038', 0.0021505707919374463) + +[fips3223500] +centroid = (0.68530199490583177, -2.0048745296112358) +description = Ely city, NV +station = ('kely', 0.0006740671959721313) +zone = ('nvz035', 0.0030478117629937937) + +[fips3223700] +centroid = (0.7081833486659399, -2.0829295632979465) +description = Empire CDP, NV +station = ('klol', 0.013628504311185289) +zone = ('nvz005', 0.010305871635583339) + +[fips3223770] +centroid = (0.6286360759220665, -2.0108876077633768) +description = Enterprise CDP, NV +station = ('khnd', 0.0013907746204761371) +zone = ('nvz020', 0.002274029717720138) + +[fips3223900] +centroid = (0.68960211966360285, -2.0240015928838417) +description = Eureka CDP, NV +station = ('kp68', 0.0016116231294263288) +zone = ('nvz037', 0.010153184419874745) + +[fips3224100] +centroid = (0.68895769174388899, -2.0730615066137559) +description = Fallon city, NV +station = ('knfl', 0.0014592233510441507) +zone = ('nvz004', 0.010198228961883162) + +[fips3224500] +centroid = (0.68793791331524123, -2.0719966986904068) +description = Fallon Station CDP, NV +station = ('knfl', 0.00054232609966657532) +zone = ('nvz004', 0.010892775500420738) + +[fips3224900] +centroid = (0.69053136786394964, -2.0802496102315091) +description = Fernley city, NV +station = ('krno', 0.0078981145892262836) +zone = ('nvz003', 0.0067992060900435927) + +[fips3225000] +centroid = (0.67986819153242772, -2.0883054566467694) +description = Fish Springs CDP, NV +station = ('kcxp', 0.0043087250287715739) +zone = ('caz072', 0.0043066196729055848) + +[fips3225490] +centroid = (0.73243665339116337, -2.0531931147413656) +description = Fort McDermitt CDP, NV +station = ('kreo', 0.011175348558248584) +zone = ('nvz030', 0.011534920118396456) + +[fips3225900] +centroid = (0.6783069596099337, -2.0581970435200034) +description = Gabbs CDP, NV +station = ('knfl', 0.01427469058053364) +zone = ('nvz001', 0.010258476599322778) + +[fips3226300] +centroid = (0.67961386215382713, -2.0898028967851032) +description = Gardnerville CDP, NV +station = ('ktvl', 0.0034851357242866188) +zone = ('caz072', 0.0031453519479268076) + +[fips3226500] +centroid = (0.67871035755994724, -2.0899000592645618) +description = Gardnerville Ranchos CDP, NV +station = ('ktvl', 0.0032732415595677251) +zone = ('caz072', 0.0032456368571363004) + +[fips3227100] +centroid = (0.68112561399202709, -2.0914442742268484) +description = Genoa CDP, NV +station = ('kcxp', 0.0031987019196182374) +zone = ('caz072', 0.0023029749853693848) + +[fips3227300] +centroid = (0.7093919891729461, -2.0832484873121637) +description = Gerlach CDP, NV +station = ('klol', 0.014616767335564922) +zone = ('nvz005', 0.0091102504226525678) + +[fips3227900] +centroid = (0.6824259017380554, -2.0931259862276077) +description = Glenbrook CDP, NV +station = ('kcxp', 0.0030879079628295361) +zone = ('nvz002', 0.0020171761181198827) + +[fips3228500] +centroid = (0.71491099952043247, -2.0508976228025575) +description = Golconda CDP, NV +station = ('kwmc', 0.0039994016381089082) +zone = ('nvz030', 0.011109634030686832) + +[fips3228860] +centroid = (0.69146019718527596, -2.0913080163721456) +description = Golden Valley CDP, NV +station = ('krts', 0.0011349119983215614) +zone = ('nvz003', 0.0041942024676352198) + +[fips3228900] +centroid = (0.65820155202512243, -2.0461865602724041) +description = Goldfield CDP, NV +station = ('ktph', 0.0059959874857509502) +zone = ('nvz014', 0.0046182262008423614) + +[fips3229500] +centroid = (0.62535543288697026, -2.0146235722937331) +description = Goodsprings CDP, NV +station = ('khnd', 0.0048561271751352744) +zone = ('nvz020', 0.0065722236718432419) + +[fips3230220] +centroid = (0.71204338865282069, -2.05530428245787) +description = Grass Valley CDP, NV +station = ('kwmc', 0.0018713263988855897) +zone = ('nvz030', 0.011603570332973136) + +[fips3231300] +centroid = (0.67238751837216226, -2.0704324298950141) +description = Hawthorne CDP, NV +station = ('kban', 0.012539492104688948) +zone = ('nvz001', 0.0014625337385973847) + +[fips3231900] +centroid = (0.62853203684535519, -2.0077824750378612) +description = Henderson city, NV +station = ('khnd', 0.0015329044104780167) +zone = ('nvz020', 0.0029677949797978064) + +[fips3232900] +centroid = (0.65704998378465662, -2.0104148329755964) +description = Hiko CDP, NV +station = ('kbjn', 0.014879527539994464) +zone = ('nvz015', 0.004391653023274043) + +[fips3234100] +centroid = (0.70608317652372266, -2.064157744341292) +description = Humboldt River Ranch CDP, NV +station = ('klol', 0.0078707828796106272) +zone = ('nvz004', 0.008237942639586944) + +[fips3234700] +centroid = (0.70961661304767776, -2.0620021754486162) +description = Imlay CDP, NV +station = ('kwmc', 0.0062053430282520469) +zone = ('nvz004', 0.012127050025103725) + +[fips3235100] +centroid = (0.68528152219370586, -2.0934405120121098) +description = Incline Village CDP, NV +station = ('kcxp', 0.0031362165094184044) +zone = ('nvz002', 0.00094003845879374001) + +[fips3235275] +centroid = (0.68227634447445196, -2.090860950284247) +description = Indian Hills CDP, NV +station = ('kcxp', 0.001965025818954933) +zone = ('nvz002', 0.0026812109975269988) + +[fips3235300] +centroid = (0.63829910877902563, -2.0196986057860973) +description = Indian Springs CDP, NV +station = ('kins', 0.00077672723522016502) +zone = ('nvz017', 0.0038283516108217103) + +[fips3236500] +centroid = (0.73267970794279624, -2.001274770575705) +description = Jackpot CDP, NV +station = ('ktwf', 0.0091009611208489605) +zone = ('idz030', 0.0042980130398475504) + +[fips3237190] +centroid = (0.68180178945083469, -2.089512299464646) +description = Johnson Lane CDP, NV +station = ('kcxp', 0.0022376984694981129) +zone = ('nvz002', 0.0037260701189614346) + +[fips3238000] +centroid = (0.68052005455475506, -2.0923648306875204) +description = Kingsbury CDP, NV +station = ('ktvl', 0.0023144887401104698) +zone = ('caz072', 0.0013701828285815434) + +[fips3238100] +centroid = (0.68434588608829672, -2.043220949167293) +description = Kingston CDP, NV +station = ('k05u', 0.015867686075638369) +zone = ('nvz037', 0.0085387919427854109) + +[fips3239100] +centroid = (0.68134470517302992, -2.093396407541912) +description = Lakeridge CDP, NV +station = ('ktvl', 0.0027579874708517959) +zone = ('caz072', 0.0016097889187126479) + +[fips3239300] +centroid = (0.7107653189481703, -2.0154878767926134) +description = Lamoille CDP, NV +station = ('keko', 0.0044535753258253064) +zone = ('nvz034', 0.0033477410842890432) + +[fips3240000] +centroid = (0.6322928548642599, -2.0117370944169073) +description = Las Vegas city, NV +station = ('kvgt', 0.0012351844982672582) +zone = ('nvz020', 0.0019674329963551172) + +[fips3241000] +centroid = (0.61343066275893676, -2.0026596718838698) +description = Laughlin CDP, NV +station = ('kifp', 0.0026392817434088916) +zone = ('nvz022', 0.0078577153039697221) + +[fips3241800] +centroid = (0.69265292028950398, -2.0915192012116366) +description = Lemmon Valley CDP, NV +station = ('krts', 0.00063582772215476334) +zone = ('nvz003', 0.0053109649411842361) + +[fips3242350] +centroid = (0.68181357042328572, -2.0930746037344292) +description = Logan Creek CDP, NV +station = ('ktvl', 0.0032708357194994567) +zone = ('caz072', 0.0021262828522152903) + +[fips3243000] +centroid = (0.70125161646201184, -2.0678230753968201) +description = Lovelock city, NV +station = ('klol', 0.0022896229544936268) +zone = ('nvz004', 0.0028594725047057395) + +[fips3243400] +centroid = (0.67832895075850885, -2.0072875171152877) +description = Lund CDP, NV +station = ('kely', 0.0078857552004488376) +zone = ('nvz035', 0.010112274821237716) + +[fips3244000] +centroid = (0.73287961795531964, -2.0543240706433652) +description = McDermitt CDP, NV +station = ('kreo', 0.010550652234631121) +zone = ('nvz030', 0.011497165630469255) + +[fips3244200] +centroid = (0.68769374175288722, -2.0032375503992053) +description = McGill CDP, NV +station = ('kely', 0.0020335243936629786) +zone = ('nvz035', 0.0017459626200501972) + +[fips3246000] +centroid = (0.64242676010011468, -1.9919294050959013) +description = Mesquite city, NV +station = ('ksgu', 0.0088041596351579147) +zone = ('nvz016', 0.0064824072448720575) + +[fips3246800] +centroid = (0.67003505888656922, -2.061430143786275) +description = Mina CDP, NV +station = ('kmmh', 0.016759278802416417) +zone = ('nvz001', 0.0077118382862113007) + +[fips3247000] +centroid = (0.67995072815275448, -2.0903562359711554) +description = Minden CDP, NV +station = ('ktvl', 0.003196125600418198) +zone = ('caz072', 0.0027164555212095074) + +[fips3247840] +centroid = (0.64176959127686117, -2.0009722352031645) +description = Moapa Town CDP, NV +station = ('klsv', 0.010830296267059707) +zone = ('nvz016', 0.0035734083375362821) + +[fips3247880] +centroid = (0.63886040666646704, -1.9975159073255624) +description = Moapa Valley CDP, NV +station = ('klsv', 0.010447519883759889) +zone = ('nvz016', 0.00086828375344225755) + +[fips3248000] +centroid = (0.68968730918439269, -2.0930518446409829) +description = Mogul CDP, NV +station = ('krno', 0.0021825073764861164) +zone = ('nvz003', 0.0040108624420308308) + +[fips3248400] +centroid = (0.72024907158436458, -1.9931135411802094) +description = Montello CDP, NV +station = ('kenv', 0.009564397294132488) +zone = ('nvz033', 0.010814622329133468) + +[fips3249310] +centroid = (0.63290059596309689, -2.0178439142031728) +description = Mount Charleston CDP, NV +station = ('kins', 0.0056477753823190053) +zone = ('nvz019', 0.0010370396694674641) + +[fips3249425] +centroid = (0.66732651732698434, -1.9975350884940417) +description = Mount Wilson CDP, NV +station = ('kely', 0.019367167680336552) +zone = ('nvz015', 0.011620844859031197) + +[fips3250400] +centroid = (0.63262228576057389, -2.0081272473783001) +description = Nellis AFB CDP, NV +station = ('klsv', 0.00040808784756225726) +zone = ('nvz020', 0.0024113615820795234) + +[fips3250600] +centroid = (0.62339553285673588, -2.0041851420099905) +description = Nelson CDP, NV +station = ('kbvu', 0.0038969459717722974) +zone = ('nvz022', 0.004175574640691483) + +[fips32510] +centroid = (0.68335656365509623, -2.0899173205708639) +description = Carson City, NV +station = ('kcxp', 0.00069276038157564061) +zone = ('nvz002', 0.0025584519828118551) + +[fips3251094140] +centroid = (0.68335656365509623, -2.0899173205708639) +description = Carson City CCD, NV +station = ('kcxp', 0.00069276038157564061) +zone = ('nvz002', 0.0025584519828118551) + +[fips3251200] +centroid = (0.69513071186868258, -2.0832080131268098) +description = Nixon CDP, NV +station = ('krno', 0.0081364467708734227) +zone = ('nvz003', 0.0082373802118268051) + +[fips3251800] +centroid = (0.63325735871549715, -2.0086865730436867) +description = North Las Vegas city, NV +station = ('klsv', 0.0011705627658265497) +zone = ('nvz020', 0.0026938835776875408) + +[fips3252200] +centroid = (0.71608429711008559, -1.9979886646600502) +description = Oasis CDP, NV +station = ('kenv', 0.0077929042888100902) +zone = ('nvz033', 0.0073753091946304732) + +[fips3253000] +centroid = (0.72537564464954007, -2.0555837445776994) +description = Orovada CDP, NV +station = ('kwmc', 0.011540183695192189) +zone = ('nvz030', 0.0051486298884236758) + +[fips3253200] +centroid = (0.71455427167461738, -2.0186667147724409) +description = Osino CDP, NV +station = ('keko', 0.0024757692844953575) +zone = ('nvz038', 0.0039897131710157629) + +[fips3253600] +centroid = (0.73176423039024763, -2.0276644281185394) +description = Owyhee CDP, NV +station = ('keko', 0.019770681025218052) +zone = ('idz015', 0.0074650875948908246) + +[fips3253800] +centroid = (0.63252669407744211, -2.0249164246645672) +description = Pahrump CDP, NV +station = ('kdra', 0.0068484786919958867) +zone = ('nvz019', 0.0047884553489132243) + +[fips3254200] +centroid = (0.65954182526431404, -1.9966508348818113) +description = Panaca CDP, NV +station = ('ksgu', 0.016567493298986977) +zone = ('nvz015', 0.0068963186076554652) + +[fips3254600] +centroid = (0.62972681943810038, -2.0095169308886156) +description = Paradise CDP, NV +station = ('khnd', 0.0018837093882232486) +zone = ('nvz020', 0.001198545347616627) + +[fips3255400] +centroid = (0.72412975881629638, -2.0513240590986972) +description = Paradise Valley CDP, NV +station = ('kwmc', 0.010874483085071347) +zone = ('nvz030', 0.0077212698343062875) + +[fips3257400] +centroid = (0.66238686902469734, -1.9974150622013822) +description = Pioche CDP, NV +station = ('ksgu', 0.019135565476825836) +zone = ('nvz015', 0.0078182272266440218) + +[fips3258000] +centroid = (0.6792071480782349, -2.0082512006617765) +description = Preston CDP, NV +station = ('kely', 0.0073083311259831869) +zone = ('nvz035', 0.0093954833936881008) + +[fips3258820] +centroid = (0.6571331836300992, -2.0199414858048046) +description = Rachel CDP, NV +station = ('kbjn', 0.0073497441490432717) +zone = ('nvz015', 0.011929877191606786) + +[fips3260600] +centroid = (0.68895976868569897, -2.0904949547401039) +description = Reno city, NV +station = ('krno', 0.00020377117146148639) +zone = ('nvz003', 0.0019305117564579019) + +[fips3262170] +centroid = (0.68061707740787336, -2.0929547868812794) +description = Round Hill Village CDP, NV +station = ('ktvl', 0.0021678255360542439) +zone = ('caz072', 0.0010903059441117935) + +[fips3263450] +centroid = (0.67878088631502032, -2.0888690060089461) +description = Ruhenstroth CDP, NV +station = ('ktvl', 0.0040773508896125316) +zone = ('caz072', 0.0039940667188029019) + +[fips3263800] +centroid = (0.68555288598580588, -2.0069550493460757) +description = Ruth CDP, NV +station = ('kely', 0.001926087595054706) +zone = ('nvz035', 0.0030422900597764976) + +[fips3264600] +centroid = (0.62556324924100526, -2.0181336214057115) +description = Sandy Valley CDP, NV +station = ('klas', 0.0070263726342859332) +zone = ('nvz019', 0.0068874971131077777) + +[fips3265400] +centroid = (0.67957752439880059, -2.0733091339280287) +description = Schurz CDP, NV +station = ('knfl', 0.008787497045816231) +zone = ('nvz001', 0.0063082834356848107) + +[fips3265600] +centroid = (0.61929252558468484, -2.0056571876077078) +description = Searchlight CDP, NV +station = ('kifp', 0.0076145644453090855) +zone = ('nvz022', 0.0017730998020102421) + +[fips3267000] +centroid = (0.65899719527122913, -2.0531817701012272) +description = Silver Peak CDP, NV +station = ('ktph', 0.0090349278563108103) +zone = ('nvz014', 0.010012934915296867) + +[fips3267200] +centroid = (0.68737094310773084, -2.080687984579733) +description = Silver Springs CDP, NV +station = ('krno', 0.0076429181712579768) +zone = ('nvz003', 0.0059741063684578882) + +[fips3267600] +centroid = (0.68115533694918851, -2.0929826423361413) +description = Skyland CDP, NV +station = ('ktvl', 0.0026601863850948333) +zone = ('caz072', 0.0015355813857168008) + +[fips3268050] +centroid = (0.6769834589848539, -2.0828512329211173) +description = Smith Valley CDP, NV +station = ('kban', 0.0080263972919732435) +zone = ('nvz001', 0.01050390395751202) + +[fips3268350] +centroid = (0.69211054177115405, -2.0886148686165633) +description = Spanish Springs CDP, NV +station = ('krno', 0.0032728194866884089) +zone = ('nvz003', 0.004190992612883815) + +[fips3268400] +centroid = (0.69061582434645374, -2.0892799961412054) +description = Sparks city, NV +station = ('krno', 0.0017034634014422931) +zone = ('nvz003', 0.0027795484225298559) + +[fips3268550] +centroid = (0.71102659473719387, -2.0175438921047553) +description = Spring Creek CDP, NV +station = ('keko', 0.0029665483102329494) +zone = ('nvz038', 0.0018015324506001592) + +[fips3268585] +centroid = (0.63004153720881995, -2.0117000236235949) +description = Spring Valley CDP, NV +station = ('klas', 0.00032027960897821668) +zone = ('nvz020', 0.00149889157217529) + +[fips3268800] +centroid = (0.68705922730332469, -2.083629527594459) +description = Stagecoach CDP, NV +station = ('krno', 0.0055636021229054783) +zone = ('nvz003', 0.0037761245173175027) + +[fips3269200] +centroid = (0.68007550174097964, -2.0934230238130049) +description = Stateline CDP, NV +station = ('ktvl', 0.0015281448225461763) +zone = ('caz072', 0.00044477419232348829) + +[fips3270900] +centroid = (0.63048863820330336, -2.0129307076390539) +description = Summerlin South CDP, NV +station = ('klas', 0.00093683136574486772) +zone = ('nvz020', 0.0022972280976282428) + +[fips3271400] +centroid = (0.63143350710045554, -2.0079833798880582) +description = Sunrise Manor CDP, NV +station = ('klsv', 0.000982465660553549) +zone = ('nvz020', 0.0018272922651417216) + +[fips3271600] +centroid = (0.69133284050975796, -2.0904936631964577) +description = Sun Valley CDP, NV +station = ('krts', 0.0016794387414636365) +zone = ('nvz003', 0.0037774712023215945) + +[fips3271800] +centroid = (0.69719023529262103, -2.0879463551531718) +description = Sutcliffe CDP, NV +station = ('krts', 0.0058646393211613107) +zone = ('nvz003', 0.0092731383378124622) + +[fips3273600] +centroid = (0.66496431890416507, -2.0463676381822986) +description = Tonopah CDP, NV +station = ('ktph', 0.0025443177831374906) +zone = ('nvz014', 0.010010297283973129) + +[fips3274200] +centroid = (0.67542091806542104, -2.0864009708202857) +description = Topaz Lake CDP, NV +station = ('kban', 0.0060969472510457806) +zone = ('caz072', 0.0072486154694491878) + +[fips3274400] +centroid = (0.6760646653067266, -2.0856823140474847) +description = Topaz Ranch Estates CDP, NV +station = ('kban', 0.0067343838001472974) +zone = ('caz072', 0.0073578573407492767) + +[fips3277200] +centroid = (0.66282869912483966, -1.9936698823325751) +description = Ursine CDP, NV +station = ('ksgu', 0.017866012668254497) +zone = ('utz016', 0.010811087228470363) + +[fips3278200] +centroid = (0.71155768097528327, -2.0443394434184334) +description = Valmy CDP, NV +station = ('kwmc', 0.0091111318184244096) +zone = ('nvz036', 0.0075099552390604863) + +[fips3279400] +centroid = (0.68977920076951016, -2.0941140171171617) +description = Verdi CDP, NV +station = ('krts', 0.0029406990322986522) +zone = ('nvz002', 0.0054235915622225543) + +[fips3280000] +centroid = (0.68604475467560289, -2.0882562732684482) +description = Virginia City CDP, NV +station = ('kcxp', 0.0023112473751907186) +zone = ('nvz003', 0.0018811883506735356) + +[fips3281000] +centroid = (0.69171086137244742, -2.0819866142629717) +description = Wadsworth CDP, NV +station = ('krno', 0.0069316990357993933) +zone = ('nvz003', 0.0062218763073782456) + +[fips3281245] +centroid = (0.67451264872268313, -2.0727041853559949) +description = Walker Lake CDP, NV +station = ('kban', 0.01159464829955544) +zone = ('nvz001', 0.0022104013149646358) + +[fips3282250] +centroid = (0.68577955189576245, -2.0904986722914107) +description = Washoe Valley CDP, NV +station = ('kcxp', 0.0018458363771998) +zone = ('nvz002', 0.0023001830112942142) + +[fips3283000] +centroid = (0.7175599206327693, -2.0063177249164172) +description = Wells city, NV +station = ('kenv', 0.013827700550234967) +zone = ('nvz039', 0.00905993200979807) + +[fips3283730] +centroid = (0.71105155294549749, -1.9910477520242562) +description = West Wendover city, NV +station = ('kenv', 0.00061112357328948531) +zone = ('nvz033', 0.0025999025099456689) + +[fips3283800] +centroid = (0.63007099836659364, -2.0077927550271553) +description = Whitney CDP, NV +station = ('klsv', 0.0023209193658677331) +zone = ('nvz020', 0.0020222088348546842) + +[fips3284600] +centroid = (0.63070387220665936, -2.0093983706725274) +description = Winchester CDP, NV +station = ('kvgt', 0.0013362030985255037) +zone = ('nvz020', 0.00059218303704355988) + +[fips3284800] +centroid = (0.71496281834592412, -2.0546966984386659) +description = Winnemucca city, NV +station = ('kwmc', 0.0014925749377762473) +zone = ('nvz030', 0.009241807875536287) + +[fips3285400] +centroid = (0.68055407102187648, -2.0797892272814185) +description = Yerington city, NV +station = ('kcxp', 0.0084609190567194736) +zone = ('nvz003', 0.009933840764889448) + +[fips3286200] +centroid = (0.68091109557366436, -2.0930596811693243) +description = Zephyr Cove CDP, NV +station = ('ktvl', 0.0024099451594487599) +zone = ('caz072', 0.0012906937905749509) + +[fips33001] +centroid = (0.759551739584297, -1.2466078061420121) +description = Belknap County, NH +station = ('klci', 0.00083730242782979031) +zone = ('nhz009', 2.6698082455053348e-05) + +[fips3300101060] +centroid = (0.75907952330187733, -1.2434249364516128) +description = Alton town, NH +station = ('klci', 0.0025544402607459832) +zone = ('nhz009', 0.0023296612629014899) + +[fips3300103220] +centroid = (0.75661709062011617, -1.2437065278731294) +description = Barnstead town, NH +station = ('kcon', 0.0041035149784568485) +zone = ('nhz009', 0.0035929669953225756) + +[fips3300104740] +centroid = (0.75877484117435667, -1.247602748535404) +description = Belmont town, NH +station = ('klci', 0.0018093451194011029) +zone = ('nhz009', 0.0010745131709784539) + +[fips3300110660] +centroid = (0.76289514465929487, -1.2481803652513517) +description = Center Harbor town, NH +station = ('klci', 0.0028061356558947387) +zone = ('nhz009', 0.0035455334975796706) + +[fips3300128740] +centroid = (0.75960889911729979, -1.2455940316459915) +description = Gilford town, NH +station = ('klci', 0.00099381992435415198) +zone = ('nhz009', 0.00071172235717844906) + +[fips3300128980] +centroid = (0.75803195923153788, -1.2455711678327901) +description = Gilmanton town, NH +station = ('klci', 0.0024358943680534862) +zone = ('nhz009', 0.0016794569760715705) + +[fips3300140180] +centroid = (0.7605520575917849, -1.2475792389503797) +description = Laconia city, NH +station = ('klci', 0.00083144484270298029) +zone = ('nhz009', 0.0012428568323657513) + +[fips3300147140] +centroid = (0.76150828858236763, -1.24788571876703) +description = Meredith town, NH +station = ('klci', 0.0015300582021663121) +zone = ('nhz009', 0.0021806874830620866) + +[fips3300151540] +centroid = (0.76141199876753518, -1.2502697163522065) +description = New Hampton town, NH +station = ('k1p1', 0.003067243637384046) +zone = ('nhz009', 0.0032647754079223471) + +[fips3300167300] +centroid = (0.75964034995042073, -1.2496837918690196) +description = Sanbornton town, NH +station = ('klci', 0.0024542829686891908) +zone = ('nhz009', 0.0022585500588867798) + +[fips3300177060] +centroid = (0.75871576177917666, -1.2492448590154355) +description = Tilton town, NH +station = ('klci', 0.0026202112147943307) +zone = ('nhz009', 0.0021095585577528882) + +[fips33003] +centroid = (0.76563347898921141, -1.2427034871520084) +description = Carroll County, NH +station = ('kizg', 0.0037537545255187784) +zone = ('nhz006', 0.0020515495468669707) + +[fips3300300420] +centroid = (0.7672386059423929, -1.2439890094125647) +description = Albany town, NH +station = ('kizg', 0.0041073638130161997) +zone = ('nhz004', 0.0026980458772244181) + +[fips3300303700] +centroid = (0.76928886166800325, -1.2430409989227589) +description = Bartlett town, NH +station = ('kmwn', 0.0034547816495388512) +zone = ('nhz004', 0.00079772609058714663) + +[fips3300307940] +centroid = (0.76035209521938396, -1.240597503063382) +description = Brookfield town, NH +station = ('kdaw', 0.0053386001906670644) +zone = ('nhz006', 0.0036716337596114572) + +[fips3300311780] +centroid = (0.77016821090503562, -1.24024585412569) +description = Chatham town, NH +station = ('kizg', 0.0028730945093828225) +zone = ('nhz004', 0.0014034248894702352) + +[fips3300314660] +centroid = (0.76804583817473293, -1.2403211999894985) +description = Conway town, NH +station = ('kizg', 0.0014982261343809893) +zone = ('nhz004', 0.0018909202988676246) + +[fips3300323380] +centroid = (0.76632101654144946, -1.2400131493765219) +description = Eaton town, NH +station = ('kizg', 0.0018106902765080161) +zone = ('nhz006', 0.003470467487498644) + +[fips3300323620] +centroid = (0.76352452784085656, -1.2399152364054848) +description = Effingham town, NH +station = ('kizg', 0.0042883527759196701) +zone = ('nhz006', 0.0022186317534698885) + +[fips3300327700] +centroid = (0.76518821059044262, -1.240494895156657) +description = Freedom town, NH +station = ('kizg', 0.0029248891975821867) +zone = ('nhz006', 0.0024038732878873055) + +[fips3300332500] +centroid = (0.76861989441900636, -1.2421728721528169) +description = Hale's location, NH +station = ('kizg', 0.0029405737476845377) +zone = ('nhz004', 0.00090684119678030497) + +[fips3300334500] +centroid = (0.77040449357917051, -1.2457420530198529) +description = Hart's Location town, NH +station = ('kmwn', 0.0023905534691060844) +zone = ('nhz004', 0.0028459377866557715) + +[fips3300338260] +centroid = (0.77121689198609633, -1.2419027475444859) +description = Jackson town, NH +station = ('kmwn', 0.0022723487622810013) +zone = ('nhz004', 0.0017020433963606571) + +[fips3300345060] +centroid = (0.76635674343123783, -1.2418659909104388) +description = Madison town, NH +station = ('kizg', 0.0028694622678795568) +zone = ('nhz006', 0.0028801849373999255) + +[fips3300349380] +centroid = (0.7630666407115958, -1.2456100886751096) +description = Moultonborough town, NH +station = ('klci', 0.0027537581388278405) +zone = ('nhz006', 0.0019680784645378594) + +[fips3300358740] +centroid = (0.7633590008145974, -1.241807853993055) +description = Ossipee town, NH +station = ('klci', 0.004491598711064213) +zone = ('nhz006', 0.00088182765192874109) + +[fips3300367780] +centroid = (0.76512726369296291, -1.2469178813369215) +description = Sandwich town, NH +station = ('k1p1', 0.0040456241035300268) +zone = ('nhz006', 0.0032273310762522545) + +[fips3300376100] +centroid = (0.76557188631990847, -1.2443511303257686) +description = Tamworth town, NH +station = ('kizg', 0.0048229854665233184) +zone = ('nhz006', 0.0022117251617417826) + +[fips3300377620] +centroid = (0.76218250927241304, -1.2439984690971106) +description = Tuftonboro town, NH +station = ('klci', 0.0025313800206667463) +zone = ('nhz006', 0.001588487029082625) + +[fips3300378180] +centroid = (0.76084323087089523, -1.2393556489407105) +description = Wakefield town, NH +station = ('ksfm', 0.0050137391913653235) +zone = ('mez018', 0.0029864029270249121) + +[fips3300386420] +centroid = (0.76105869176705399, -1.242271692695065) +description = Wolfeboro town, NH +station = ('klci', 0.0031055115326651525) +zone = ('nhz006', 0.0025853357150819726) + +[fips33005] +centroid = (0.74919052266666253, -1.2609692653453399) +description = Cheshire County, NH +station = ('keen', 0.00050298847317067474) +zone = ('nhz011', 0.00011398957735940239) + +[fips3300500820] +centroid = (0.75209171366908267, -1.2620538827556993) +description = Alstead town, NH +station = ('keen', 0.003391643477141213) +zone = ('nhz011', 0.0031019247321961642) + +[fips3300512260] +centroid = (0.74853618127679733, -1.2643744201692735) +description = Chesterfield town, NH +station = ('keen', 0.0022685050083735224) +zone = ('vtz015', 0.0020214314274199343) + +[fips3300519140] +centroid = (0.7485591323564611, -1.2578561564651429) +description = Dublin town, NH +station = ('kafn', 0.0017963788564419481) +zone = ('nhz011', 0.0023769324305347585) + +[fips3300526500] +centroid = (0.74619576456304293, -1.2593104520643672) +description = Fitzwilliam town, NH +station = ('kafn', 0.0021210390719802073) +zone = ('nhz011', 0.0031481194207255677) + +[fips3300529220] +centroid = (0.7512070062712467, -1.2612121802706326) +description = Gilsum town, NH +station = ('keen', 0.0024614375947969429) +zone = ('nhz011', 0.0021284931302322481) + +[fips3300534420] +centroid = (0.74958955729354604, -1.2578336242644994) +description = Harrisville town, NH +station = ('kafn', 0.0027331295898503378) +zone = ('nhz011', 0.0023881690153563966) + +[fips3300536660] +centroid = (0.74716320056742347, -1.2654478674724201) +description = Hinsdale town, NH +station = ('keen', 0.0034338004524509286) +zone = ('vtz015', 0.0028445719591222913) + +[fips3300538500] +centroid = (0.7475114984729514, -1.2576825311111544) +description = Jaffrey town, NH +station = ('kafn', 0.00092132669129068527) +zone = ('nhz011', 0.0029080760039242644) + +[fips3300539300] +centroid = (0.74967993044221426, -1.2619930754845599) +description = Keene city, NH +station = ('keen', 0.0010657536585622141) +zone = ('nhz011', 0.00092862060498271183) + +[fips3300545460] +centroid = (0.74850584745439763, -1.2597382322640309) +description = Marlborough town, NH +station = ('keen', 0.0011629154051837178) +zone = ('nhz011', 0.0011029931114045761) + +[fips3300545700] +centroid = (0.75290962731644473, -1.2602807678620134) +description = Marlow town, NH +station = ('keen', 0.0042284214055025564) +zone = ('nhz011', 0.0038646338924364768) + +[fips3300550580] +centroid = (0.75048737211406435, -1.2587588233009817) +description = Nelson town, NH +station = ('keen', 0.002543115464820357) +zone = ('nhz011', 0.0021710816454779684) + +[fips3300564420] +centroid = (0.74653812834911426, -1.261502079459389) +description = Richmond town, NH +station = ('keen', 0.0022135250689021614) +zone = ('nhz011', 0.0025692622192743223) + +[fips3300564580] +centroid = (0.74624454651563632, -1.2568682652019292) +description = Rindge town, NH +station = ('kafn', 0.00077517667827672171) +zone = ('nhz011', 0.0041631158251537259) + +[fips3300565700] +centroid = (0.74963819961979905, -1.2601232169904357) +description = Roxbury town, NH +station = ('keen', 0.0012357618037485709) +zone = ('nhz011', 0.00086051330809726204) + +[fips3300573700] +centroid = (0.75182350892292871, -1.2586258990251498) +description = Stoddard town, NH +station = ('keen', 0.0036429208254650145) +zone = ('nhz011', 0.0032525744938707618) + +[fips3300574900] +centroid = (0.75085139543615276, -1.2603785935665877) +description = Sullivan town, NH +station = ('keen', 0.0022085653136147128) +zone = ('nhz011', 0.0018297692504590009) + +[fips3300575300] +centroid = (0.7510805222603546, -1.2626484640719762) +description = Surry town, NH +station = ('keen', 0.0025367539425783666) +zone = ('nhz011', 0.0023252769893537346) + +[fips3300575700] +centroid = (0.74801794066200267, -1.2618095192071277) +description = Swanzey town, NH +station = ('keen', 0.00082137416583363614) +zone = ('nhz011', 0.0012116320632155446) + +[fips3300577380] +centroid = (0.74750331287875971, -1.2599346865246355) +description = Troy town, NH +station = ('keen', 0.0015917238243223805) +zone = ('nhz011', 0.0017691488988667197) + +[fips3300578420] +centroid = (0.7519068833012964, -1.2636730247027745) +description = Walpole town, NH +station = ('keen', 0.0036089830825899887) +zone = ('vtz015', 0.0028018486710177266) + +[fips3300582660] +centroid = (0.74993438199386253, -1.2641569172378901) +description = Westmoreland town, NH +station = ('keen', 0.0024111124200191895) +zone = ('vtz015', 0.0016276461666291176) + +[fips3300585540] +centroid = (0.74681441396970494, -1.2635352833182072) +description = Winchester town, NH +station = ('keen', 0.002537523237972703) +zone = ('nhz011', 0.0029229029800939867) + +[fips33007] +centroid = (0.77933173053007387, -1.2442344550652726) +description = Coos County, NH +station = ('kbml', 0.0017859670520768041) +zone = ('nhz002', 0.0031848585193256698) + +[fips3300702420] +centroid = (0.78533021772966816, -1.2413150602787544) +description = Atkinson and Gilmanton Academy grant, NH +station = ('kbml', 0.007244056825366765) +zone = ('nhz001', 0.0020189256743807739) + +[fips3300704100] +centroid = (0.77182985161939677, -1.2457605011500466) +description = Beans grant, NH +station = ('kmwn', 0.0012305322252615116) +zone = ('nhz004', 0.0035674049984617353) + +[fips3300704260] +centroid = (0.77300250343722665, -1.2418392699195908) +description = Beans purchase, NH +station = ('kmwn', 0.0018910524651681653) +zone = ('nhz004', 0.0034882202272097807) + +[fips3300705140] +centroid = (0.77639769243113121, -1.2440210187510463) +description = Berlin city, NH +station = ('kbml', 0.0020855181536186809) +zone = ('nhz002', 0.00061083661815186316) + +[fips3300708420] +centroid = (0.7794518440891961, -1.2408858489091039) +description = Cambridge township, NH +station = ('kbml', 0.0017012746551950241) +zone = ('mez007', 0.0041992240682816196) + +[fips3300710100] +centroid = (0.77327377996286417, -1.247863326192727) +description = Carroll town, NH +station = ('khie', 0.0012565937499508537) +zone = ('nhz002', 0.0036261249026372411) + +[fips3300711220] +centroid = (0.772501716114952, -1.2454432701052041) +description = Chandlers purchase, NH +station = ('kmwn', 0.00073941029485292454) +zone = ('nhz002', 0.0036995124339420935) + +[fips3300713220] +centroid = (0.78571296843463045, -1.2448522841671861) +description = Clarksville town, NH +station = ('kbml', 0.0077866050269947695) +zone = ('nhz001', 0.00089393093150982145) + +[fips3300713780] +centroid = (0.78356912815452828, -1.2463313808950813) +description = Colebrook town, NH +station = ('kbml', 0.0061230439468194882) +zone = ('nhz001', 0.0021046572748363414) + +[fips3300713940] +centroid = (0.78209043285236124, -1.2480130230826703) +description = Columbia town, NH +station = ('kbml', 0.0056329514436795538) +zone = ('vtz004', 0.0034839530025828061) + +[fips3300716100] +centroid = (0.77252442284852041, -1.2461916149285817) +description = Crawfords purchase, NH +station = ('kmwn', 0.0012710664435798061) +zone = ('nhz002', 0.0037795256419703911) + +[fips3300716660] +centroid = (0.77152893940306033, -1.2450469232853685) +description = Cutts grant, NH +station = ('kmwn', 0.0011606544492504479) +zone = ('nhz004', 0.0029846061340324985) + +[fips3300716820] +centroid = (0.77483495952548054, -1.2512074643060105) +description = Dalton town, NH +station = ('khie', 0.0018008275743606611) +zone = ('nhz003', 0.0052658794294267192) + +[fips3300718340] +centroid = (0.78401373332818136, -1.2425396705484162) +description = Dixs grant, NH +station = ('kbml', 0.0058888190711714125) +zone = ('nhz001', 0.0014822312747866473) + +[fips3300718420] +centroid = (0.783123371063569, -1.2436631564412173) +description = Dixville township, NH +station = ('kbml', 0.0050794345073603125) +zone = ('nhz001', 0.0018864112253588587) + +[fips3300719300] +centroid = (0.77955148493619253, -1.2435786126922508) +description = Dummer town, NH +station = ('kbml', 0.0016599982679563869) +zone = ('nhz002', 0.0034908401181439151) + +[fips3300725140] +centroid = (0.78117888229062959, -1.241082896581654) +description = Errol town, NH +station = ('kbml', 0.0031899683803366602) +zone = ('mez007', 0.0032093482016618642) + +[fips3300725180] +centroid = (0.78192286379087717, -1.2451874397434468) +description = Ervings location, NH +station = ('kbml', 0.0042883152984442346) +zone = ('nhz001', 0.0031491776946756468) + +[fips3300730260] +centroid = (0.7748165637551645, -1.2426689121795265) +description = Gorham town, NH +station = ('kmwn', 0.0025467200238545903) +zone = ('nhz002', 0.0020487181104508925) + +[fips3300731780] +centroid = (0.7730074427190099, -1.2429919900773629) +description = Greens grant, NH +station = ('kmwn', 0.0011007675015178467) +zone = ('nhz002', 0.0034249547976291247) + +[fips3300732420] +centroid = (0.77014995476105974, -1.2449926435456315) +description = Hadleys purchase, NH +station = ('kmwn', 0.0024833297402768978) +zone = ('nhz004', 0.0022567879171182452) + +[fips3300738820] +centroid = (0.77486930760515982, -1.2472942092302364) +description = Jefferson town, NH +station = ('khie', 0.0011865088079510884) +zone = ('nhz002', 0.0021976386084444355) + +[fips3300739940] +centroid = (0.77658589128437383, -1.2459233578225501) +description = Kilkenny township, NH +station = ('kbml', 0.0029559640064605961) +zone = ('nhz002', 0.00088985742016028848) + +[fips3300740420] +centroid = (0.7761893175717357, -1.2486808558676536) +description = Lancaster town, NH +station = ('khie', 0.0018463502521625819) +zone = ('nhz002', 0.0027567706568035919) + +[fips3300743620] +centroid = (0.77369676050708502, -1.2452598360008196) +description = Low and Burbanks grant, NH +station = ('kmwn', 0.0012515624866870788) +zone = ('nhz002', 0.0024973973141494861) + +[fips3300746020] +centroid = (0.77371177033865213, -1.2427173276129766) +description = Martins location, NH +station = ('kmwn', 0.0016500562384714292) +zone = ('nhz002', 0.0028835636115822614) + +[fips3300747860] +centroid = (0.77761224960430153, -1.2429937528599075) +description = Milan town, NH +station = ('kbml', 0.00067296378123239827) +zone = ('nhz002', 0.0019390582666562832) + +[fips3300748260] +centroid = (0.78099497694734688, -1.2437490964535856) +description = Millsfield township, NH +station = ('kbml', 0.0030289478262129675) +zone = ('nhz001', 0.003995020889685964) + +[fips3300756100] +centroid = (0.77786806251276641, -1.2482468099359749) +description = Northumberland town, NH +station = ('khie', 0.0035443731244944607) +zone = ('nhz002', 0.0029744633732897855) + +[fips3300757860] +centroid = (0.78093893442506535, -1.2458595660383898) +description = Odell township, NH +station = ('kbml', 0.0037450060294572127) +zone = ('nhz001', 0.0042246344138240797) + +[fips3300761620] +centroid = (0.77242979109647736, -1.2433998735235541) +description = Pinkhams grant, NH +station = ('kmwn', 0.00074975992783577134) +zone = ('nhz004', 0.0030878199721288252) + +[fips3300761780] +centroid = (0.78793458058620147, -1.2436322117535794) +description = Pittsburg town, NH +station = ('cysc', 0.0089072636832449974) +zone = ('nhz001', 0.0029741190942316415) + +[fips3300763860] +centroid = (0.77480858760048299, -1.2446025450045184) +description = Randolph town, NH +station = ('kmwn', 0.0022133708443130445) +zone = ('nhz002', 0.0013741259241419682) + +[fips3300767860] +centroid = (0.77170102886730707, -1.2444725877884149) +description = Sargents purchase, NH +station = ('kmwn', 0.00089885057336413447) +zone = ('nhz004', 0.0028255416937554897) + +[fips3300768500] +centroid = (0.78407916572183867, -1.2413736858883289) +description = Second College grant, NH +station = ('kbml', 0.0059962451993319935) +zone = ('nhz001', 0.0021468678171767427) + +[fips3300768980] +centroid = (0.77435275995973962, -1.2407045964662842) +description = Shelburne town, NH +station = ('kmwn', 0.0031845129134128905) +zone = ('nhz002', 0.0034565123558136491) + +[fips3300773060] +centroid = (0.77833024315198707, -1.2462164509638374) +description = Stark town, NH +station = ('kbml', 0.0027372736999932575) +zone = ('nhz002', 0.0023755335969838139) + +[fips3300773380] +centroid = (0.78471172540263889, -1.2462871018919583) +description = Stewartstown town, NH +station = ('kbml', 0.0071450508483251133) +zone = ('nhz001', 0.0015521311017388103) + +[fips3300774180] +centroid = (0.78036356918385297, -1.248296255113684) +description = Stratford town, NH +station = ('kbml', 0.0047646691312896615) +zone = ('vtz004', 0.0027103574959449991) + +[fips3300774500] +centroid = (0.77690481529859079, -1.2404629207247606) +description = Success township, NH +station = ('kbml', 0.0018342990538701117) +zone = ('nhz002', 0.0031912288332206847) + +[fips3300776580] +centroid = (0.77313057569773802, -1.2440323633911843) +description = Thompson and Meserves purchase, NH +station = ('kmwn', 0.00059950213979148733) +zone = ('nhz002', 0.0030948386178954543) + +[fips3300780740] +centroid = (0.78269937822838198, -1.2408542409963501) +description = Wentworth location, NH +station = ('kbml', 0.00470076577477421) +zone = ('mez007', 0.0026832949309393314) + +[fips3300784420] +centroid = (0.77449938507019966, -1.2494733226145214) +description = Whitefield town, NH +station = ('khie', 0.00051716867571454631) +zone = ('nhz002', 0.0037229235265611267) + +[fips33009] +centroid = (0.76666184443777896, -1.2538840488869916) +description = Grafton County, NH +station = ('k1p1', 0.0028029004695724279) +zone = ('nhz003', 0.0031772965412931683) + +[fips3300900580] +centroid = (0.76135578171232832, -1.254117294688228) +description = Alexandria town, NH +station = ('k1p1', 0.0030226221640228352) +zone = ('nhz005', 0.0018907834586278449) + +[fips3300902020] +centroid = (0.76316397772397959, -1.2503976489863777) +description = Ashland town, NH +station = ('k1p1', 0.0016794498750051642) +zone = ('nhz005', 0.0034785330971308132) + +[fips3300903940] +centroid = (0.77113803801049119, -1.2564103606193757) +description = Bath town, NH +station = ('k1v4', 0.0040958239350487608) +zone = ('nhz003', 0.0033152721155854138) + +[fips3300905060] +centroid = (0.7685756852290534, -1.2539554154001054) +description = Benton town, NH +station = ('k1p1', 0.0046342115513089161) +zone = ('nhz003', 0.001588714234908925) + +[fips3300905460] +centroid = (0.77249031911493649, -1.2498163670790008) +description = Bethlehem town, NH +station = ('khie', 0.0019960685334405397) +zone = ('nhz003', 0.003371122580694063) + +[fips3300907540] +centroid = (0.76215489816364645, -1.2511809178480877) +description = Bridgewater town, NH +station = ('k1p1', 0.0021082430745616885) +zone = ('nhz005', 0.003054176324110374) + +[fips3300907700] +centroid = (0.76138805285019773, -1.2515789227307124) +description = Bristol town, NH +station = ('k1p1', 0.0027575247294062345) +zone = ('nhz005', 0.0031203542101548138) + +[fips3300908660] +centroid = (0.76492065161611189, -1.2504585784305648) +description = Campton town, NH +station = ('k1p1', 0.0015894813227940918) +zone = ('nhz005', 0.0038960634230783449) + +[fips3300908980] +centroid = (0.76249398073072394, -1.257404779413992) +description = Canaan town, NH +station = ('kleb', 0.0033688626979196047) +zone = ('nhz005', 0.0016896352235335219) + +[fips3300918740] +centroid = (0.76355493147642628, -1.2564354584540194) +description = Dorchester town, NH +station = ('k1p1', 0.0030081428053159547) +zone = ('nhz005', 0.0010081883549734483) + +[fips3300922020] +centroid = (0.76971069029491779, -1.2530609516117508) +description = Easton town, NH +station = ('khie', 0.0055557222292023549) +zone = ('nhz003', 0.00055408340015687067) + +[fips3300923860] +centroid = (0.76640309937617068, -1.2526055428500282) +description = Ellsworth town, NH +station = ('k1p1', 0.0023206076619376815) +zone = ('nhz003', 0.0032318400117978116) + +[fips3300924340] +centroid = (0.76102139408093872, -1.2587069870221976) +description = Enfield town, NH +station = ('kleb', 0.0023511940147392207) +zone = ('nhz005', 0.0032579044691759614) + +[fips3300927300] +centroid = (0.77103659947436531, -1.2499797648035729) +description = Franconia town, NH +station = ('khie', 0.0034169930007865354) +zone = ('nhz003', 0.0021804602740314828) + +[fips3300930820] +centroid = (0.76055676998076538, -1.2559833658178754) +description = Grafton town, NH +station = ('kleb', 0.0043778572428583009) +zone = ('nhz005', 0.0025784427190434396) + +[fips3300932180] +centroid = (0.76317385628754586, -1.2543591624159693) +description = Groton town, NH +station = ('k1p1', 0.0017246640627962995) +zone = ('nhz005', 0.00062255354295498444) + +[fips3300933860] +centroid = (0.76285179068067532, -1.2600412737820548) +description = Hanover town, NH +station = ('kleb', 0.0018607402333512557) +zone = ('nhz005', 0.0034994899799687743) + +[fips3300934820] +centroid = (0.76927692361591959, -1.2564989535322069) +description = Haverhill town, NH +station = ('k1v4', 0.0059480962717555243) +zone = ('nhz003', 0.0030376682074753822) + +[fips3300935220] +centroid = (0.76259686789012904, -1.2530078412426129) +description = Hebron town, NH +station = ('k1p1', 0.0015704594572897952) +zone = ('nhz005', 0.0016613363812557963) + +[fips3300936900] +centroid = (0.76350901186380626, -1.2495619329806451) +description = Holderness town, NH +station = ('k1p1', 0.0020867051234241042) +zone = ('nhz005', 0.0041038020264229265) + +[fips3300940660] +centroid = (0.77073903829019286, -1.2546334409079203) +description = Landaff town, NH +station = ('k1v4', 0.0047697559762617959) +zone = ('nhz003', 0.0020113449273439872) + +[fips3300941300] +centroid = (0.76137049483792274, -1.2610257441999346) +description = Lebanon city, NH +station = ('kleb', 0.00063773901486221672) +zone = ('nhz007', 0.0045896550720661428) + +[fips3300941860] +centroid = (0.76959802929170151, -1.250203707999896) +description = Lincoln town, NH +station = ('khie', 0.0048543097587497967) +zone = ('nhz003', 0.0015044892573534631) + +[fips3300942020] +centroid = (0.77218204160915671, -1.2540049652975698) +description = Lisbon town, NH +station = ('k1v4', 0.0036855502228389987) +zone = ('nhz003', 0.0028328674906921004) + +[fips3300942580] +centroid = (0.77393749377081267, -1.2530612134111387) +description = Littleton town, NH +station = ('k1v4', 0.0030454760102348738) +zone = ('nhz003', 0.0043446774230000169) + +[fips3300942820] +centroid = (0.76915393026353152, -1.246516630141888) +description = Livermore town, NH +station = ('kmwn', 0.0037591678814987753) +zone = ('nhz003', 0.0041799781158964955) + +[fips3300944100] +centroid = (0.77246537835992546, -1.2554391896103958) +description = Lyman town, NH +station = ('k1v4', 0.0029505344193614248) +zone = ('nhz003', 0.0036233760788119229) + +[fips3300944260] +centroid = (0.76473995767865288, -1.2582778803723023) +description = Lyme town, NH +station = ('kleb', 0.0041177422880352404) +zone = ('nhz005', 0.0027724873891375942) + +[fips3300948980] +centroid = (0.77312263444964147, -1.2562993227723638) +description = Monroe town, NH +station = ('k1v4', 0.0021421270090497204) +zone = ('vtz007', 0.0033015377453876563) + +[fips3300958340] +centroid = (0.76234030449008583, -1.2552739418368171) +description = Orange town, NH +station = ('k1p1', 0.0027510634755975572) +zone = ('nhz005', 0.0007348362615882516) + +[fips3300958500] +centroid = (0.76595835457617756, -1.2577041208340016) +description = Orford town, NH +station = ('kleb', 0.0053423588887111118) +zone = ('nhz005', 0.003400479205901931) + +[fips3300961060] +centroid = (0.76727454227169156, -1.2566618102047105) +description = Piermont town, NH +station = ('k1p1', 0.0044563610048207938) +zone = ('nhz003', 0.0039216152532307634) + +[fips3300962660] +centroid = (0.76347529210265774, -1.2518678445350875) +description = Plymouth town, NH +station = ('k1p1', 0.00070235358571213088) +zone = ('nhz005', 0.0024476916279159541) + +[fips3300965940] +centroid = (0.76504889840954826, -1.252665791615807) +description = Rumney town, NH +station = ('k1p1', 0.00098727683450730401) +zone = ('nhz005', 0.0026971289922470775) + +[fips3300974740] +centroid = (0.77175684449678583, -1.2531505917221335) +description = Sugar Hill town, NH +station = ('khie', 0.0040581475697643882) +zone = ('nhz003', 0.0022155499259471343) + +[fips3300976740] +centroid = (0.76703503073844037, -1.2502806072067389) +description = Thornton town, NH +station = ('k1p1', 0.0032965711939164748) +zone = ('nhz003', 0.002970682343159412) + +[fips3300978740] +centroid = (0.76712056932508055, -1.2545095399843211) +description = Warren town, NH +station = ('k1p1', 0.0034109510094820065) +zone = ('nhz003', 0.0029685589586080545) + +[fips3300979380] +centroid = (0.76694341840600322, -1.246998899520799) +description = Waterville Valley town, NH +station = ('k1p1', 0.0047907437326775619) +zone = ('nhz006', 0.0044284730693517228) + +[fips3300980] +centroid = (0.75845722615707878, -1.243064299068273) +description = Alton CDP, NH +station = ('klci', 0.0031231919473082288) +zone = ('nhz009', 0.0027680061335442676) + +[fips3300980500] +centroid = (0.76547910461687241, -1.2553057068292035) +description = Wentworth town, NH +station = ('k1p1', 0.0025528204745504887) +zone = ('nhz005', 0.0024064525106300876) + +[fips3300987060] +centroid = (0.76794293356203536, -1.25165322139697) +description = Woodstock town, NH +station = ('k1p1', 0.0038836999207541982) +zone = ('nhz003', 0.0017470576575095479) + +[fips33011] +centroid = (0.74894945779037703, -1.2518042621904375) +description = Hillsborough County, NH +station = ('kash', 0.0035008989263239638) +zone = ('nhz015', 0.00099043233167719793) + +[fips3301101300] +centroid = (0.74830754314478609, -1.2496645234340775) +description = Amherst town, NH +station = ('kash', 0.0019625102785571194) +zone = ('nhz012', 0.0019045129505517622) + +[fips3301101700] +centroid = (0.75141082582129459, -1.2564407991615305) +description = Antrim town, NH +station = ('kafn', 0.0044122469143340502) +zone = ('nhz015', 0.0032212028603056378) + +[fips3301104500] +centroid = (0.74936730706659704, -1.2485539355244486) +description = Bedford town, NH +station = ('kmht', 0.0013236015166698573) +zone = ('nhz012', 0.0018823602966682312) + +[fips3301104900] +centroid = (0.75084554858315866, -1.2549561871931991) +description = Bennington town, NH +station = ('kafn', 0.0040369288993566321) +zone = ('nhz015', 0.0020371155744198731) + +[fips3301108100] +centroid = (0.74612806324135816, -1.2509792275997274) +description = Brookline town, NH +station = ('kash', 0.0021370421604698514) +zone = ('maz026', 0.0019549494510890594) + +[fips3301117780] +centroid = (0.75189695237785259, -1.2541466162196615) +description = Deering town, NH +station = ('kcon', 0.0049589273977212753) +zone = ('nhz015', 0.0026479732101992058) + +[fips3301127140] +centroid = (0.75043921848000184, -1.2534568620992732) +description = Francestown town, NH +station = ('kafn', 0.0041532309712648636) +zone = ('nhz015', 0.0011060706317115845) + +[fips3301129860] +centroid = (0.75082664666735965, -1.248878112979714) +description = Goffstown town, NH +station = ('kmht', 0.002162701968064683) +zone = ('nhz012', 0.0032915871805268247) + +[fips3301131540] +centroid = (0.74942238965779007, -1.2545326132370327) +description = Greenfield town, NH +station = ('kafn', 0.0028709578089973048) +zone = ('nhz015', 0.0011063804883430992) + +[fips3301131940] +centroid = (0.74626299464582979, -1.2531405211723494) +description = Greenville town, NH +station = ('kafn', 0.0026703743754837141) +zone = ('maz026', 0.0027460761096217779) + +[fips3301133700] +centroid = (0.75009606929576733, -1.2565990307115162) +description = Hancock town, NH +station = ('kafn', 0.0030952748640329024) +zone = ('nhz011', 0.0033917781692125895) + +[fips3301136180] +centroid = (0.75305171457084952, -1.255782286434753) +description = Hillsborough town, NH +station = ('kcon', 0.0057893824077150189) +zone = ('nhz015', 0.0041894287465025475) + +[fips3301137140] +centroid = (0.74612172769617346, -1.2494009438104414) +description = Hollis town, NH +station = ('kash', 0.0010643588951204214) +zone = ('maz026', 0.0021600450812500381) + +[fips3301137940] +centroid = (0.7463116544253755, -1.2463307874831355) +description = Hudson town, NH +station = ('kash', 0.0013978444940354838) +zone = ('nhz012', 0.0015939511541588913) + +[fips3301142260] +centroid = (0.74780504539984438, -1.2473570934431859) +description = Litchfield town, NH +station = ('kash', 0.0012715753183474611) +zone = ('nhz012', 0.0001412034193154295) + +[fips3301144580] +centroid = (0.74881878498928023, -1.2526474831119534) +description = Lyndeborough town, NH +station = ('kafn', 0.0034437073326755029) +zone = ('nhz015', 0.00062462390860668169) + +[fips3301145140] +centroid = (0.75022435099578888, -1.2469311632925293) +description = Manchester city, NH +station = ('kmht', 0.00090641696357067405) +zone = ('nhz012', 0.0024476203719448978) + +[fips3301146260] +centroid = (0.74599325400993421, -1.2522903538404104) +description = Mason town, NH +station = ('kfit', 0.0033223113614369902) +zone = ('maz026', 0.0021542855535585438) + +[fips3301147540] +centroid = (0.74793915649956766, -1.2482761663739936) +description = Merrimack town, NH +station = ('kash', 0.0012607421599632762) +zone = ('nhz012', 0.00082813882116035105) + +[fips3301148020] +centroid = (0.74732633649260738, -1.2509360132474479) +description = Milford town, NH +station = ('kash', 0.0021314910976485898) +zone = ('nhz015', 0.0025601813208252547) + +[fips3301149140] +centroid = (0.74890132160960698, -1.251299827130026) +description = Mont Vernon town, NH +station = ('kash', 0.0031945095472911385) +zone = ('nhz015', 0.0013491556498813114) + +[fips3301150260] +centroid = (0.74611209347870244, -1.2477453768418771) +description = Nashua city, NH +station = ('kash', 0.0006477386494771856) +zone = ('nhz012', 0.0017238098799102273) + +[fips3301150740] +centroid = (0.7501635786312344, -1.2510087934772562) +description = New Boston town, NH +station = ('kmht', 0.0032291193105219852) +zone = ('nhz015', 0.0016691674022366525) + +[fips3301151940] +centroid = (0.74606292755367376, -1.254445521307358) +description = New Ipswich town, NH +station = ('kafn', 0.0018621850566686101) +zone = ('maz026', 0.0033334065021242815) + +[fips3301159940] +centroid = (0.74579650304335676, -1.2450668025855489) +description = Pelham town, NH +station = ('klwm', 0.0026242372478655642) +zone = ('nhz012', 0.0025141214959459373) + +[fips3301160580] +centroid = (0.7485747355999739, -1.2556072822706554) +description = Peterborough town, NH +station = ('kafn', 0.0017455555620220452) +zone = ('nhz015', 0.002057144114656257) + +[fips3301168820] +centroid = (0.7472854608815257, -1.2554904499305271) +description = Sharon town, NH +station = ('kafn', 0.00088801349145911179) +zone = ('nhz015', 0.0027671731064684998) + +[fips3301176260] +centroid = (0.74747032615589692, -1.2544605311389252) +description = Temple town, NH +station = ('kafn', 0.0016642100317983289) +zone = ('nhz015', 0.0021809359878942635) + +[fips3301179780] +centroid = (0.75185399982496093, -1.2514641149725165) +description = Weare town, NH +station = ('kcon', 0.0032919559036189024) +zone = ('nhz015', 0.0027240229333334886) + +[fips3301185220] +centroid = (0.74761705598611206, -1.2526080561241508) +description = Wilton town, NH +station = ('kash', 0.0033896440926363108) +zone = ('nhz015', 0.0017887108271935116) + +[fips3301185940] +centroid = (0.75247872297741991, -1.2569053534485339) +description = Windsor town, NH +station = ('keen', 0.0049211850442079791) +zone = ('nhz015', 0.0042024841828103062) + +[fips3301220] +centroid = (0.74811053037882103, -1.2500714993090576) +description = Amherst CDP, NH +station = ('kash', 0.0019985579170645213) +zone = ('nhz012', 0.0021543890879367673) + +[fips33013] +centroid = (0.75571857766789685, -1.2510542767575632) +description = Merrimack County, NH +station = ('kcon', 0.0029133251758574137) +zone = ('nhz008', 3.1166810802009028e-05) + +[fips3301300660] +centroid = (0.752976839945939, -1.2459066375683161) +description = Allenstown town, NH +station = ('kcon', 0.001740467406580196) +zone = ('nhz013', 0.0037776090641979485) + +[fips3301301460] +centroid = (0.75832829868523399, -1.2530350858322363) +description = Andover town, NH +station = ('kcon', 0.005779800392280942) +zone = ('nhz008', 0.0030074565651629615) + +[fips3301306260] +centroid = (0.7559315078366402, -1.250797556277887) +description = Boscawen town, NH +station = ('kcon', 0.0029138081058798036) +zone = ('nhz008', 0.00030791516018327449) + +[fips3301306500] +centroid = (0.7528159554954903, -1.2485604106959736) +description = Bow town, NH +station = ('kcon', 0.0011774215420440998) +zone = ('nhz008', 0.0033987978804607779) + +[fips3301306980] +centroid = (0.75440334990347158, -1.2560467038164302) +description = Bradford town, NH +station = ('kcon', 0.0059374036527525247) +zone = ('nhz007', 0.0040385533688946131) + +[fips3301309860] +centroid = (0.75664503334144051, -1.2484997255978816) +description = Canterbury town, NH +station = ('kcon', 0.0027763980687193148) +zone = ('nhz008', 0.0020913717324000714) + +[fips3301312420] +centroid = (0.75512122127810932, -1.2463192857633649) +description = Chichester town, NH +station = ('kcon', 0.0016937470950182055) +zone = ('nhz008', 0.0034941148526881484) + +[fips3301314200] +centroid = (0.75454934669540086, -1.2489794642493772) +description = Concord city, NH +station = ('kcon', 0.0010035438630614547) +zone = ('nhz008', 0.0018922474230236713) + +[fips3301316980] +centroid = (0.75971360141912692, -1.2543434369994089) +description = Danbury town, NH +station = ('k1p1', 0.0046115147074010402) +zone = ('nhz005', 0.0034180250578697193) + +[fips3301319460] +centroid = (0.75245427091459938, -1.249786295055989) +description = Dunbarton town, NH +station = ('kcon', 0.0019808719850241915) +zone = ('nhz008', 0.0033629069658390161) + +[fips3301324900] +centroid = (0.75406622210515628, -1.2452673409166028) +description = Epsom town, NH +station = ('kcon', 0.0019479735067274146) +zone = ('nhz013', 0.0043837149828376545) + +[fips3301327380] +centroid = (0.75831779180313696, -1.2508385191554314) +description = Franklin city, NH +station = ('klci', 0.0037899133752507634) +zone = ('nhz008', 0.0026350926555787049) + +[fips3301335540] +centroid = (0.753448532629583, -1.253690753672333) +description = Henniker town, NH +station = ('kcon', 0.0042249318785644889) +zone = ('nhz008', 0.0029493859638668137) + +[fips3301335860] +centroid = (0.75971902939310065, -1.2525997134503264) +description = Hill town, NH +station = ('k1p1', 0.0043757105480158112) +zone = ('nhz005', 0.00384994756890253) + +[fips3301337300] +centroid = (0.75193294106702868, -1.2469832613707013) +description = Hooksett town, NH +station = ('kcon', 0.0020846253832402361) +zone = ('nhz013', 0.0037886074594205422) + +[fips3301337540] +centroid = (0.75404990327665011, -1.2513646835650301) +description = Hopkinton town, NH +station = ('kcon', 0.0025084274616006133) +zone = ('nhz008', 0.0016529328319109366) + +[fips3301343380] +centroid = (0.75594908330220778, -1.246869430996886) +description = Loudon town, NH +station = ('kcon', 0.0021899607510547721) +zone = ('nhz008', 0.0030574615303783853) + +[fips3301350900] +centroid = (0.75597236599442941, -1.2570655572205744) +description = Newbury town, NH +station = ('kleb', 0.0065748908006230877) +zone = ('nhz007', 0.0026418345555222493) + +[fips3301352100] +centroid = (0.7577821851622849, -1.2564731575658625) +description = New London town, NH +station = ('kleb', 0.0054305289973499895) +zone = ('nhz007', 0.0030997698459624954) + +[fips3301354260] +centroid = (0.75765182652045349, -1.2490950574057369) +description = Northfield town, NH +station = ('klci', 0.0033344651061719146) +zone = ('nhz008', 0.0024271162863927867) + +[fips3301360020] +centroid = (0.75364474254409231, -1.2469862458837222) +description = Pembroke town, NH +station = ('kcon', 0.00073372763594949282) +zone = ('nhz008', 0.0036000699594114912) + +[fips3301361940] +centroid = (0.75552687070285784, -1.244583259116284) +description = Pittsfield town, NH +station = ('kcon', 0.0029309419403647976) +zone = ('nhz009', 0.0042712209548323972) + +[fips3301366980] +centroid = (0.7572726711937503, -1.2526218791318269) +description = Salisbury town, NH +station = ('kcon', 0.0047999779217858824) +zone = ('nhz008', 0.0019521003059202447) + +[fips3301375460] +centroid = (0.7563837051925395, -1.2554770283485794) +description = Sutton town, NH +station = ('kcon', 0.0060309375468948099) +zone = ('nhz007', 0.0036880042091923578) + +[fips3301378580] +centroid = (0.75541030016211719, -1.2536370847978342) +description = Warner town, NH +station = ('kcon', 0.0044236626400687099) +zone = ('nhz008', 0.0018994487226598796) + +[fips3301380020] +centroid = (0.75584226915198582, -1.2518493091384315) +description = Webster town, NH +station = ('kcon', 0.0034529736618799474) +zone = ('nhz008', 0.00059808602883251131) + +[fips3301384900] +centroid = (0.75839758825653814, -1.2552194875641549) +description = Wilmot town, NH +station = ('kleb', 0.0057591892818123856) +zone = ('nhz008', 0.0040627279199483097) + +[fips33015] +centroid = (0.75030587532514947, -1.2409192719642794) +description = Rockingham County, NH +station = ('kpsm', 0.0039626535857353084) +zone = ('nhz013', 0.0010488312986395834) + +[fips3301500000] +centroid = (0.74973883530446905, -1.2328173837633518) +description = County subdivisions not defined, NH +station = ('kpsm', 0.003198688269457075) +zone = ('nhz014', 0.0025899480236910807) + +[fips3301502340] +centroid = (0.74768549034608278, -1.242086600527891) +description = Atkinson town, NH +station = ('klwm', 0.0021803536765838019) +zone = ('maz006', 0.0025165326335726767) + +[fips3301502820] +centroid = (0.75044007369133525, -1.2455682531329393) +description = Auburn town, NH +station = ('kmht', 0.0014073032825594606) +zone = ('nhz013', 0.0023630818914680807) + +[fips3301507220] +centroid = (0.75020749111521456, -1.2401262118054659) +description = Brentwood town, NH +station = ('kpsm', 0.0034913970210496115) +zone = ('nhz013', 0.0016268692351740209) + +[fips3301509300] +centroid = (0.7515640133697421, -1.2447687701624783) +description = Candia town, NH +station = ('kmht', 0.0026632149019975839) +zone = ('nhz013', 0.0022121614883157084) + +[fips3301512100] +centroid = (0.75022379249042814, -1.2436380760598662) +description = Chester town, NH +station = ('kmht', 0.0024451284865905946) +zone = ('nhz013', 0.00094248536186202609) + +[fips3301517140] +centroid = (0.74923338795309158, -1.2412813928774835) +description = Danville town, NH +station = ('klwm', 0.0036907491782099157) +zone = ('nhz013', 0.0012706984853869316) + +[fips3301517460] +centroid = (0.7528708461004654, -1.2436357024120837) +description = Deerfield town, NH +station = ('kcon', 0.0032967160256824686) +zone = ('nhz013', 0.0027982679548463089) + +[fips3301517940] +centroid = (0.74861990472101547, -1.2440141945136711) +description = Derry town, NH +station = ('kmht', 0.0021229522517319738) +zone = ('nhz013', 0.0020231785781396616) + +[fips3301521380] +centroid = (0.74919767851659569, -1.239229723435179) +description = East Kingston town, NH +station = ('kpsm', 0.0036314344989623209) +zone = ('nhz013', 0.0025080974304247153) + +[fips3301524660] +centroid = (0.75133827248428919, -1.2405580062624093) +description = Epping town, NH +station = ('kpsm', 0.0033964408803996851) +zone = ('nhz013', 0.0017127357720494677) + +[fips3301525380] +centroid = (0.75030278609237344, -1.238515674331603) +description = Exeter town, NH +station = ('kpsm', 0.0024747534525130822) +zone = ('nhz014', 0.0017044698924232997) + +[fips3301527940] +centroid = (0.7504890825367313, -1.2412731723767065) +description = Fremont town, NH +station = ('kpsm', 0.0041310760165779283) +zone = ('nhz013', 0.00082745845469324615) + +[fips3301531700] +centroid = (0.75118503257596414, -1.2364893645233304) +description = Greenland town, NH +station = ('kpsm', 0.00084583234393524598) +zone = ('nhz014', 0.00071644934059659246) + +[fips3301532900] +centroid = (0.74844612228739449, -1.2421134262384941) +description = Hampstead town, NH +station = ('klwm', 0.0029331544202825387) +zone = ('nhz013', 0.0017972437646919901) + +[fips3301533060] +centroid = (0.74942919644187278, -1.2362912871065213) +description = Hampton town, NH +station = ('kpsm', 0.002526833150723648) +zone = ('nhz014', 0.0010731439396453159) + +[fips3301533460] +centroid = (0.74917928274627965, -1.2371983172654901) +description = Hampton Falls town, NH +station = ('kpsm', 0.0029057598985050424) +zone = ('nhz014', 0.0015092240040160952) + +[fips3301539780] +centroid = (0.74929337491948256, -1.2384473970512651) +description = Kensington town, NH +station = ('kpsm', 0.0032064868875780841) +zone = ('nhz014', 0.0020393198028805389) + +[fips3301540100] +centroid = (0.74898590026515866, -1.2404682439789791) +description = Kingston town, NH +station = ('klwm', 0.0035234314850998848) +zone = ('nhz013', 0.0018592994855792849) + +[fips3301543220] +centroid = (0.74821689074343745, -1.2459542326970179) +description = Londonderry town, NH +station = ('kmht', 0.0012536910302063838) +zone = ('nhz012', 0.00098926416662795222) + +[fips3301550980] +centroid = (0.75154366283066387, -1.2342768804437472) +description = New Castle town, NH +station = ('kpsm', 0.0013103499677494153) +zone = ('nhz014', 0.0017512520275257074) + +[fips3301551380] +centroid = (0.75116368719921212, -1.2386244607038799) +description = Newfields town, NH +station = ('kpsm', 0.0020817873971020625) +zone = ('nhz014', 0.0018919575967597413) + +[fips3301551620] +centroid = (0.752025565690432, -1.2361189532961794) +description = Newington town, NH +station = ('kpsm', 0.00012665730633011036) +zone = ('nhz014', 0.0015264388969234656) + +[fips3301552340] +centroid = (0.75173816232250612, -1.2383349280342664) +description = Newmarket town, NH +station = ('kpsm', 0.0017297280939247062) +zone = ('nhz014', 0.0019912515622037752) + +[fips3301552900] +centroid = (0.74822909059490883, -1.2399851368420272) +description = Newton town, NH +station = ('klwm', 0.0029068711334110991) +zone = ('nhz013', 0.0026498275047355108) + +[fips3301554580] +centroid = (0.75011313861585172, -1.2362186115964682) +description = North Hampton town, NH +station = ('kpsm', 0.0018408866982502154) +zone = ('nhz014', 0.00038738062473069447) + +[fips3301556820] +centroid = (0.75416704977604399, -1.2429532263146763) +description = Northwood town, NH +station = ('kcon', 0.0036374251458503402) +zone = ('nhz010', 0.0028163320905574989) + +[fips3301557460] +centroid = (0.75275783603139879, -1.2414851426143614) +description = Nottingham town, NH +station = ('kdaw', 0.0038302078617160834) +zone = ('nhz013', 0.0026007238769630856) + +[fips3301562500] +centroid = (0.74771132121901229, -1.240841709532321) +description = Plaistow town, NH +station = ('klwm', 0.0022198594620141364) +zone = ('maz006', 0.0022202004527928183) + +[fips3301562900] +centroid = (0.75154916061780763, -1.2353501183073834) +description = Portsmouth city, NH +station = ('kpsm', 0.00060984403314175259) +zone = ('nhz014', 0.0012194120118177193) + +[fips3301564020] +centroid = (0.75106025898773909, -1.2427293005716453) +description = Raymond town, NH +station = ('kmht', 0.0034115645490605377) +zone = ('nhz013', 0.00087065512815950657) + +[fips3301566180] +centroid = (0.75107568769832667, -1.2342832858021018) +description = Rye town, NH +station = ('kpsm', 0.0015171124685427616) +zone = ('nhz014', 0.0015156064267770502) + +[fips3301566660] +centroid = (0.74679627999877674, -1.2430535129334959) +description = Salem town, NH +station = ('klwm', 0.0016867490564566818) +zone = ('maz006', 0.0023685738511255664) + +[fips3301567620] +centroid = (0.74933997521051088, -1.2423882806890982) +description = Sandown town, NH +station = ('kmht', 0.0031911248437883899) +zone = ('nhz013', 0.00089548276035131291) + +[fips3301568260] +centroid = (0.74845168988770827, -1.2367546720229257) +description = Seabrook town, NH +station = ('kpsm', 0.003539519069683215) +zone = ('nhz014', 0.0020883251374256015) + +[fips3301571140] +centroid = (0.74856639292614946, -1.2384701212381259) +description = South Hampton town, NH +station = ('klwm', 0.0037546136481456938) +zone = ('nhz014', 0.0025493080100869809) + +[fips3301574340] +centroid = (0.75075332538548334, -1.2374835738784362) +description = Stratham town, NH +station = ('kpsm', 0.0016196876043003971) +zone = ('nhz014', 0.00097142578979016463) + +[fips3301585780] +centroid = (0.74719451177420426, -1.2444666711222507) +description = Windham town, NH +station = ('kmht', 0.0027100590201444446) +zone = ('nhz012', 0.0020658868103044033) + +[fips3301620] +centroid = (0.75126011664038495, -1.2557823213413379) +description = Antrim CDP, NH +station = ('kafn', 0.0043049411905364352) +zone = ('nhz015', 0.0027587827114349491) + +[fips33017] +centroid = (0.75560848229868116, -1.2398108133563379) +description = Strafford County, NH +station = ('kdaw', 0.0015248503701679893) +zone = ('nhz010', 0.00011304661230539851) + +[fips3301703460] +centroid = (0.75425396717279336, -1.2398640808051089) +description = Barrington town, NH +station = ('kdaw', 0.0019535956891919637) +zone = ('nhz010', 0.0014352485851677479) + +[fips3301718820] +centroid = (0.75374642542631343, -1.2371523976528704) +description = Dover city, NH +station = ('kdaw', 0.0017417304533365039) +zone = ('nhz010', 0.0026804822772927921) + +[fips3301719700] +centroid = (0.75253965242160692, -1.237759929312197) +description = Durham town, NH +station = ('kpsm', 0.0014261338111444363) +zone = ('nhz014', 0.0023358797566184176) + +[fips3301726020] +centroid = (0.75699397701879179, -1.2406369300511844) +description = Farmington town, NH +station = ('kdaw', 0.0026265618166697031) +zone = ('nhz010', 0.0014783265443758286) + +[fips3301741460] +centroid = (0.75256043929299832, -1.2392974073035714) +description = Lee town, NH +station = ('kpsm', 0.0024960905963156373) +zone = ('nhz014', 0.0030598165214886911) + +[fips3301744820] +centroid = (0.75353904540459149, -1.2381619309988088) +description = Madbury town, NH +station = ('kdaw', 0.0019236327008936484) +zone = ('nhz010', 0.0024183150515072385) + +[fips3301747700] +centroid = (0.75892164081774194, -1.2404166869528752) +description = Middleton town, NH +station = ('kdaw', 0.0039949452121103247) +zone = ('nhz010', 0.0032798900092903451) + +[fips3301748660] +centroid = (0.75838448083385568, -1.2394395120112687) +description = Milton town, NH +station = ('kdaw', 0.003199246180720683) +zone = ('nhz010', 0.002706933185272987) + +[fips3301751220] +centroid = (0.7585841814068689, -1.2418404392901896) +description = New Durham town, NH +station = ('klci', 0.0037993078434133375) +zone = ('nhz010', 0.0032928068059225155) + +[fips3301765140] +centroid = (0.75570126400171711, -1.2387824479077705) +description = Rochester city, NH +station = ('kdaw', 0.00081092506836398482) +zone = ('nhz010', 0.00066448792975406059) + +[fips3301765540] +centroid = (0.75432859745160863, -1.2364455567591053) +description = Rollinsford town, NH +station = ('kdaw', 0.0014498746491692451) +zone = ('nhz010', 0.002727195375701469) + +[fips3301769940] +centroid = (0.75491556913234681, -1.2372280227693593) +description = Somersworth city, NH +station = ('kdaw', 0.0006362374748976878) +zone = ('nhz010', 0.0019536711056576052) + +[fips3301773860] +centroid = (0.75530168832276556, -1.2421332182722118) +description = Strafford town, NH +station = ('kdaw', 0.0032089529713456872) +zone = ('nhz010', 0.0018154487655607841) + +[fips33019] +centroid = (0.75679549817625491, -1.2605131584519162) +description = Sullivan County, NH +station = ('kleb', 0.0048511885614825837) +zone = ('nhz007', 2.748850287960013e-06) + +[fips3301900260] +centroid = (0.75422523905330552, -1.261646732347794) +description = Acworth town, NH +station = ('kvsf', 0.0037621027413877587) +zone = ('nhz007', 0.0026988262990587874) + +[fips3301911380] +centroid = (0.75479615370492537, -1.2633379214863918) +description = Charlestown town, NH +station = ('kvsf', 0.0024693088397983298) +zone = ('nhz007', 0.0028657717142654047) + +[fips3301912900] +centroid = (0.75723656033152653, -1.2624759033688318) +description = Claremont city, NH +station = ('kvsf', 0.0023967816210626715) +zone = ('nhz007', 0.0014906381653689528) + +[fips3301915060] +centroid = (0.75874677627998466, -1.2620781079257173) +description = Cornish town, NH +station = ('kleb', 0.0028024971712005769) +zone = ('nhz007', 0.002256680848134207) + +[fips3301916340] +centroid = (0.75824480213381851, -1.2597498910634342) +description = Croydon town, NH +station = ('kleb', 0.0036417428438836716) +zone = ('nhz007', 0.0015525595608181671) + +[fips3301930500] +centroid = (0.7552440226442797, -1.2583908555347838) +description = Goshen town, NH +station = ('kleb', 0.0067894410298471415) +zone = ('nhz007', 0.0021910125213159735) + +[fips3301931220] +centroid = (0.75950777474043918, -1.2592392426308858) +description = Grantham town, NH +station = ('kleb', 0.0027915151941370502) +zone = ('nhz007', 0.0028663572271660966) + +[fips3301940] +centroid = (0.76271788902046234, -1.2503657792742362) +description = Ashland CDP, NH +station = ('k1p1', 0.0019779141268429739) +zone = ('nhz005', 0.0035191677943036464) + +[fips3301940900] +centroid = (0.75351881703856083, -1.263202693375947) +description = Langdon town, NH +station = ('kvsf', 0.0035613609968154249) +zone = ('nhz007', 0.0038161066350507812) + +[fips3301941700] +centroid = (0.7546203990492496, -1.2598636341707867) +description = Lempster town, NH +station = ('kvsf', 0.0046567864015999317) +zone = ('nhz007', 0.0022266629235075707) + +[fips3301952580] +centroid = (0.75695882608765652, -1.260083981988851) +description = Newport town, NH +station = ('kleb', 0.0047665542693825008) +zone = ('nhz007', 0.00035450253451136261) + +[fips3301962340] +centroid = (0.76002161712551886, -1.2615707407121624) +description = Plainfield town, NH +station = ('kleb', 0.0015393653269517931) +zone = ('nhz007', 0.0033153745397485985) + +[fips3301972740] +centroid = (0.75908388662500736, -1.2572754679697118) +description = Springfield town, NH +station = ('kleb', 0.0041421659759458595) +zone = ('nhz007', 0.0032829326170489221) + +[fips3301975060] +centroid = (0.75729989833008127, -1.2582624691150071) +description = Sunapee town, NH +station = ('kleb', 0.0049880123820109827) +zone = ('nhz007', 0.0017145018937127143) + +[fips3301977940] +centroid = (0.75571543607524327, -1.2614291770565331) +description = Unity town, NH +station = ('kvsf', 0.0031987027176037476) +zone = ('nhz007', 0.001267802798926544) + +[fips3301978980] +centroid = (0.75360048099426169, -1.2581564927228259) +description = Washington town, NH +station = ('keen', 0.0053677751622829752) +zone = ('nhz007', 0.0036281474125571208) + +[fips3303620] +centroid = (0.76922067165412789, -1.2441129976026266) +description = Bartlett CDP, NH +station = ('kmwn', 0.0033855681186242977) +zone = ('nhz004', 0.0015629912556159842) + +[fips3304660] +centroid = (0.75817043365439107, -1.247541347852319) +description = Belmont CDP, NH +station = ('klci', 0.0023472999838838647) +zone = ('nhz009', 0.0015453598813160111) + +[fips3304820] +centroid = (0.75055297904064688, -1.2552530502456709) +description = Bennington CDP, NH +station = ('kafn', 0.0036939069773535859) +zone = ('nhz015', 0.0020100226746879836) + +[fips3305140] +centroid = (0.77639769243113121, -1.2440210187510463) +description = Berlin city, NH +station = ('kbml', 0.0020855181536186809) +zone = ('nhz002', 0.00061083661815186316) + +[fips3305380] +centroid = (0.77280973182134394, -1.2512095063412354) +description = Bethlehem CDP, NH +station = ('khie', 0.0023170244329671062) +zone = ('nhz003', 0.0032767112381763609) + +[fips3306020] +centroid = (0.75704801241243347, -1.2573220508074476) +description = Blodgett Landing CDP, NH +station = ('kleb', 0.0055787043390673396) +zone = ('nhz007', 0.0023361900968093983) + +[fips3306900] +centroid = (0.7552371984069044, -1.2559768033798879) +description = Bradford CDP, NH +station = ('kcon', 0.0060133710815250228) +zone = ('nhz007', 0.0036524772925408547) + +[fips3307620] +centroid = (0.76092173578064981, -1.2522329674146049) +description = Bristol CDP, NH +station = ('k1p1', 0.0031697550746990245) +zone = ('nhz005', 0.0030442583114745395) + +[fips3308900] +centroid = (0.76184155920303598, -1.2569155461713655) +description = Canaan CDP, NH +station = ('kleb', 0.0035997952070892921) +zone = ('nhz005', 0.0017436508437602752) + +[fips3310820] +centroid = (0.76365656199876986, -1.2418257261645955) +description = Center Ossipee CDP, NH +station = ('klci', 0.0046845287045536215) +zone = ('nhz006', 0.00083993616196041568) + +[fips3310900] +centroid = (0.76466279667242221, -1.2468885772587803) +description = Center Sandwich CDP, NH +station = ('k1p1', 0.0039739838179688744) +zone = ('nhz006', 0.0030148211774918723) + +[fips3311300] +centroid = (0.75463034742598589, -1.2640236788027925) +description = Charlestown CDP, NH +station = ('kvsf', 0.0022999034977704614) +zone = ('nhz007', 0.0033469768709430397) + +[fips3312900] +centroid = (0.75723656033152653, -1.2624759033688318) +description = Claremont city, NH +station = ('kvsf', 0.0023967816210626715) +zone = ('nhz007', 0.0014906381653689528) + +[fips3313700] +centroid = (0.78356467756493564, -1.2478132526964871) +description = Colebrook CDP, NH +station = ('kbml', 0.0066674301039010547) +zone = ('nhz001', 0.0029693871869818813) + +[fips3314200] +centroid = (0.75454934669540086, -1.2489794642493772) +description = Concord city, NH +station = ('kcon', 0.0010035438630614547) +zone = ('nhz008', 0.0018922474230236713) + +[fips3314340] +centroid = (0.75451751188984451, -1.2516302703173061) +description = Contoocook CDP, NH +station = ('kcon', 0.0027667790171975954) +zone = ('nhz008', 0.0012425284571534047) + +[fips3314580] +centroid = (0.76760358919557004, -1.2414474958623956) +description = Conway CDP, NH +station = ('kizg', 0.0022573819470791357) +zone = ('nhz004', 0.001949503640482434) + +[fips3317860] +centroid = (0.74861990472101547, -1.2440141945136711) +description = Derry CDP, NH +station = ('kmht', 0.0021229522517319738) +zone = ('nhz013', 0.0020231785781396616) + +[fips3318820] +centroid = (0.75374642542631343, -1.2371523976528704) +description = Dover city, NH +station = ('kdaw', 0.0017417304533365039) +zone = ('nhz010', 0.0026804822772927921) + +[fips3319620] +centroid = (0.75293195007757774, -1.2378333204072434) +description = Durham CDP, NH +station = ('kpsm', 0.0016717333931817921) +zone = ('nhz014', 0.0027082844779892606) + +[fips3321780] +centroid = (0.74825719039586613, -1.2475797800024477) +description = East Merrimack CDP, NH +station = ('kmht', 0.0012324512721296229) +zone = ('nhz012', 0.00056268905194718538) + +[fips3324260] +centroid = (0.76184051200548475, -1.2593534918837213) +description = Enfield CDP, NH +station = ('kleb', 0.0018470637101360311) +zone = ('nhz005', 0.0032405713534108772) + +[fips3324580] +centroid = (0.75109736468763644, -1.2407706571784725) +description = Epping CDP, NH +station = ('kpsm', 0.0035988663153309619) +zone = ('nhz013', 0.0014411895824350371) + +[fips3325300] +centroid = (0.75009065877508607, -1.2382309064108477) +description = Exeter CDP, NH +station = ('kpsm', 0.0024779205179932314) +zone = ('nhz014', 0.0015403212139562404) + +[fips3325940] +centroid = (0.75747087078360675, -1.2404520996833983) +description = Farmington CDP, NH +station = ('kdaw', 0.002838861873178306) +zone = ('nhz010', 0.0018697960403333826) + +[fips3327380] +centroid = (0.75831779180313696, -1.2508385191554314) +description = Franklin city, NH +station = ('klci', 0.0037899133752507634) +zone = ('nhz008', 0.0026350926555787049) + +[fips3329780] +centroid = (0.75088836150971006, -1.2496246077540842) +description = Goffstown CDP, NH +station = ('kmht', 0.0026205651091574631) +zone = ('nhz015', 0.0029078049504050862) + +[fips3330180] +centroid = (0.77480815126816993, -1.2424425778821278) +description = Gorham CDP, NH +station = ('kmwn', 0.002623035107258326) +zone = ('nhz002', 0.0021776766080605762) + +[fips3331860] +centroid = (0.74652554452520736, -1.2531689176792793) +description = Greenville CDP, NH +station = ('kafn', 0.002589252461351436) +zone = ('nhz015', 0.0028562770323836404) + +[fips3332260] +centroid = (0.77861721018759988, -1.248216528473453) +description = Groveton CDP, NH +station = ('kbml', 0.0041823734567039018) +zone = ('vtz004', 0.0031646601927551241) + +[fips3332980] +centroid = (0.74951248355377798, -1.2361356211905361) +description = Hampton CDP, NH +station = ('kpsm', 0.0024360598880727607) +zone = ('nhz014', 0.00098897909389820591) + +[fips3333140] +centroid = (0.74898600498491374, -1.2359046617706195) +description = Hampton Beach CDP, NH +station = ('kpsm', 0.0029605830840504456) +zone = ('nhz014', 0.0015297521093148377) + +[fips3333620] +centroid = (0.75004747932939175, -1.2562889555166068) +description = Hancock CDP, NH +station = ('kafn', 0.003057217293304658) +zone = ('nhz015', 0.0024821621068293895) + +[fips3333780] +centroid = (0.76285489736674383, -1.2614748872296428) +description = Hanover CDP, NH +station = ('kleb', 0.0013408611791411807) +zone = ('vtz010', 0.0053373311605111112) + +[fips3335460] +centroid = (0.75365968256248927, -1.2534748913504465) +description = Henniker CDP, NH +station = ('kcon', 0.0040500833604372038) +zone = ('nhz008', 0.0026866693058979194) + +[fips3336020] +centroid = (0.75248303394067229, -1.2548778044564921) +description = Hillsborough CDP, NH +station = ('kcon', 0.0052629115732976623) +zone = ('nhz015', 0.0033866925882851113) + +[fips3336580] +centroid = (0.74686665167421717, -1.2651613891289979) +description = Hinsdale CDP, NH +station = ('keen', 0.0034035693855397559) +zone = ('vtz015', 0.0031856736455572192) + +[fips3337220] +centroid = (0.75216690245325857, -1.2471637633219426) +description = Hooksett CDP, NH +station = ('kcon', 0.0018208209835761284) +zone = ('nhz012', 0.0043840756974807635) + +[fips3337860] +centroid = (0.74636930265056878, -1.2467237658175148) +description = Hudson CDP, NH +station = ('kash', 0.001104554205830366) +zone = ('nhz012', 0.0014504331068576732) + +[fips3338420] +centroid = (0.7471990496302594, -1.2570461840658773) +description = Jaffrey CDP, NH +station = ('kafn', 0.00035965289246040199) +zone = ('nhz011', 0.0034696819610814406) + +[fips3339300] +centroid = (0.74967993044221426, -1.2619930754845599) +description = Keene city, NH +station = ('keen', 0.0010657536585622141) +zone = ('nhz011', 0.00092862060498271183) + +[fips3340180] +centroid = (0.7605520575917849, -1.2475792389503797) +description = Laconia city, NH +station = ('klci', 0.00083144484270298029) +zone = ('nhz009', 0.0012428568323657513) + +[fips3340340] +centroid = (0.77647342226737526, -1.2492076311424904) +description = Lancaster CDP, NH +station = ('khie', 0.0021504904436417476) +zone = ('vtz004', 0.0042245331498933451) + +[fips3341300] +centroid = (0.76137049483792274, -1.2610257441999346) +description = Lebanon city, NH +station = ('kleb', 0.00063773901486221672) +zone = ('nhz007', 0.0045896550720661428) + +[fips3341780] +centroid = (0.76899889266607691, -1.2508951550896588) +description = Lincoln CDP, NH +station = ('k1p1', 0.0050169312033732927) +zone = ('nhz003', 0.0011877997143554348) + +[fips3341940] +centroid = (0.77164046594226288, -1.2550599819238151) +description = Lisbon CDP, NH +station = ('k1v4', 0.0038181861047385406) +zone = ('nhz003', 0.0028247034644508784) + +[fips3342500] +centroid = (0.77371850730956482, -1.2525995563706938) +description = Littleton CDP, NH +station = ('k1v4', 0.0034377248872199274) +zone = ('nhz003', 0.004096837910499803) + +[fips3343140] +centroid = (0.74793289076755298, -1.2455092784575144) +description = Londonderry CDP, NH +station = ('kmht', 0.001663872165093579) +zone = ('nhz012', 0.001224514255616746) + +[fips3343300] +centroid = (0.7554266713505009, -1.2472942092302364) +description = Loudon CDP, NH +station = ('kcon', 0.0015955189520868967) +zone = ('nhz008', 0.0027501920622774664) + +[fips3345140] +centroid = (0.75022435099578888, -1.2469311632925293) +description = Manchester city, NH +station = ('kmht', 0.00090641696357067405) +zone = ('nhz012', 0.0024476203719448978) + +[fips3345380] +centroid = (0.74883330612865695, -1.2603311729708109) +description = Marlborough CDP, NH +station = ('keen', 0.00070865357218883251) +zone = ('nhz011', 0.00056382148053376571) + +[fips3346980] +centroid = (0.76253424547656745, -1.2444912453581187) +description = Melvin Village CDP, NH +station = ('klci', 0.0025798396164525192) +zone = ('nhz006', 0.0015178203424201864) + +[fips3347060] +centroid = (0.76196266759983189, -1.247968203027479) +description = Meredith CDP, NH +station = ('klci', 0.001923021014327908) +zone = ('nhz009', 0.0026194822591377068) + +[fips3347940] +centroid = (0.74755322929536672, -1.2510294581755996) +description = Milford CDP, NH +station = ('kash', 0.0022737505829908758) +zone = ('nhz015', 0.0023385921484480538) + +[fips3348580] +centroid = (0.7575249410838335, -1.2390504781209992) +description = Milton CDP, NH +station = ('kdaw', 0.0022986966119284561) +zone = ('nhz010', 0.0018997558419232737) + +[fips3348740] +centroid = (0.75933250877695402, -1.2386036738324886) +description = Milton Mills CDP, NH +station = ('ksfm', 0.0036740818709729704) +zone = ('mez018', 0.0025531785219787368) + +[fips3349600] +centroid = (0.77011921951293205, -1.2559599958591912) +description = Mountain Lakes CDP, NH +station = ('k1v4', 0.0051447576100214637) +zone = ('nhz003', 0.0026747945170922495) + +[fips3350260] +centroid = (0.74611209347870244, -1.2477453768418771) +description = Nashua city, NH +station = ('kash', 0.0006477386494771856) +zone = ('nhz012', 0.0017238098799102273) + +[fips3351300] +centroid = (0.75111076881629169, -1.2381198511105433) +description = Newfields CDP, NH +station = ('kpsm', 0.0017700188504303038) +zone = ('nhz014', 0.0015300084798242108) + +[fips3351460] +centroid = (0.7611141583306823, -1.2505374498594626) +description = New Hampton CDP, NH +station = ('k1p1', 0.0032483465091727695) +zone = ('nhz005', 0.0039066050994785743) + +[fips3352020] +centroid = (0.75771647351594729, -1.2563645282732183) +description = New London CDP, NH +station = ('kleb', 0.0055329454023137171) +zone = ('nhz007', 0.0031549954071794671) + +[fips3352260] +centroid = (0.75174301433782675, -1.2382088803556874) +description = Newmarket CDP, NH +station = ('kpsm', 0.0016377512353987372) +zone = ('nhz014', 0.0019230690733605118) + +[fips3352500] +centroid = (0.75689723341835369, -1.2597189114692111) +description = Newport CDP, NH +station = ('kleb', 0.004903708371245926) +zone = ('nhz007', 0.00058897850780788893) + +[fips3353860] +centroid = (0.76885725919727754, -1.2413645229097559) +description = North Conway CDP, NH +station = ('kizg', 0.0025038665884670823) +zone = ('nhz004', 0.0007916441650394902) + +[fips3356420] +centroid = (0.75305607789397955, -1.2644309862903305) +description = North Walpole CDP, NH +station = ('kvsf', 0.0036544997038405322) +zone = ('vtz015', 0.0034406888094633383) + +[fips3357220] +centroid = (0.7686395468263838, -1.2513240173934586) +description = North Woodstock CDP, NH +station = ('k1p1', 0.0046070857525925763) +zone = ('nhz003', 0.0012106662128106602) + +[fips3360500] +centroid = (0.7483808644266623, -1.2559425251133787) +description = Peterborough CDP, NH +station = ('kafn', 0.0014709212241003182) +zone = ('nhz015', 0.0023605703970425674) + +[fips3361220] +centroid = (0.75051367422589199, -1.2481457204656994) +description = Pinardville CDP, NH +station = ('kmht', 0.0015663742417679003) +zone = ('nhz012', 0.0028233425727299602) + +[fips3361860] +centroid = (0.75572932889608913, -1.2449698320923082) +description = Pittsfield CDP, NH +station = ('kcon', 0.0028276526312845233) +zone = ('nhz009', 0.0039904741748207307) + +[fips3362260] +centroid = (0.75982041556934898, -1.2628092088960849) +description = Plainfield CDP, NH +station = ('kleb', 0.0018534236903038025) +zone = ('nhz007', 0.0034523037988623295) + +[fips3362580] +centroid = (0.76338605341800325, -1.2514485815421734) +description = Plymouth CDP, NH +station = ('k1p1', 0.0009528401298971366) +zone = ('nhz005', 0.0027354771174415062) + +[fips3362900] +centroid = (0.75154916061780763, -1.2353501183073834) +description = Portsmouth city, NH +station = ('kpsm', 0.00060984403314175259) +zone = ('nhz014', 0.0012194120118177193) + +[fips3363940] +centroid = (0.75111295047785664, -1.2422465075939586) +description = Raymond CDP, NH +station = ('kmht', 0.003744917524480273) +zone = ('nhz013', 0.00088117830253815136) + +[fips3365140] +centroid = (0.75570126400171711, -1.2387824479077705) +description = Rochester city, NH +station = ('kdaw', 0.00081092506836398482) +zone = ('nhz010', 0.00066448792975406059) + +[fips3367460] +centroid = (0.76011780222059622, -1.2397184854389074) +description = Sanbornville CDP, NH +station = ('ksfm', 0.004775786242488954) +zone = ('mez018', 0.003193091789367004) + +[fips3368340] +centroid = (0.74839988851550909, -1.2361308913482631) +description = Seabrook Beach CDP, NH +station = ('kpsm', 0.0035477587843403147) +zone = ('nhz014', 0.0021010434704966103) + +[fips3369940] +centroid = (0.75491556913234681, -1.2372280227693593) +description = Somersworth city, NH +station = ('kdaw', 0.0006362374748976878) +zone = ('nhz010', 0.0019536711056576052) + +[fips3371220] +centroid = (0.75108790500309053, -1.2465744529000067) +description = South Hooksett CDP, NH +station = ('kmht', 0.0017643932225347258) +zone = ('nhz013', 0.0032048006881373577) + +[fips3374780] +centroid = (0.76311088480813383, -1.2455212339628907) +description = Suissevale CDP, NH +station = ('klci', 0.0028116815794646259) +zone = ('nhz006', 0.0018945305283606774) + +[fips3375140] +centroid = (0.75292919245735956, -1.2470750307827709) +description = Suncook CDP, NH +station = ('kcon', 0.0011535984539915646) +zone = ('nhz008', 0.0040027677612749016) + +[fips3377100] +centroid = (0.75821040169426179, -1.2495762272272191) +description = Tilton Northfield CDP, NH +station = ('klci', 0.003136377972777746) +zone = ('nhz008', 0.0027425824402771176) + +[fips3377300] +centroid = (0.74745196529216595, -1.2598288148522094) +description = Troy CDP, NH +station = ('keen', 0.0016805541147880167) +zone = ('nhz011', 0.0018505110327252619) + +[fips3377780] +centroid = (0.75906568284090903, -1.2395894707006001) +description = Union CDP, NH +station = ('kdaw', 0.0038726058014206732) +zone = ('mez018', 0.0033163871846853487) + +[fips3378340] +centroid = (0.75185893910674417, -1.2640512899115592) +description = Walpole CDP, NH +station = ('keen', 0.0037100944899043351) +zone = ('vtz015', 0.0025776232065929518) + +[fips3378500] +centroid = (0.75545255458330784, -1.2535656659248426) +description = Warner CDP, NH +station = ('kcon', 0.0043894885657220417) +zone = ('nhz008', 0.001842136509985641) + +[fips3383620] +centroid = (0.78523438170044124, -1.2484372253573677) +description = West Stewartstown CDP, NH +station = ('cwqh', 0.0074497910550327144) +zone = ('nhz001', 0.0030595057439073716) + +[fips3383700] +centroid = (0.74823940549078816, -1.262266044979572) +description = West Swanzey CDP, NH +station = ('keen', 0.00087579434216784305) +zone = ('nhz011', 0.0012423130735885731) + +[fips3384340] +centroid = (0.77442793129062293, -1.2498387072934265) +description = Whitefield CDP, NH +station = ('khie', 0.00075922358262670161) +zone = ('nhz002', 0.0039885974653020495) + +[fips3385140] +centroid = (0.74782201000017379, -1.2520614888155963) +description = Wilton CDP, NH +station = ('kash', 0.0030760402350238207) +zone = ('nhz015', 0.0017095113549786816) + +[fips3385460] +centroid = (0.74659986064475725, -1.2633582022122998) +description = Winchester CDP, NH +station = ('keen', 0.0026275644188622728) +zone = ('nhz011', 0.0030169277072990362) + +[fips3386340] +centroid = (0.76079785231034325, -1.2428701311889887) +description = Wolfeboro CDP, NH +station = ('klci', 0.0026308004227876482) +zone = ('nhz006', 0.0027954045387731216) + +[fips3387140] +centroid = (0.77046723816577967, -1.2571496820905206) +description = Woodsville CDP, NH +station = ('k1v4', 0.0047524898796649975) +zone = ('nhz003', 0.0035826242363015078) + +[fips34001] +centroid = (0.68887018093519403, -1.3026048102366581) +description = Atlantic County, NJ +station = ('kacy', 0.00068101812002308872) +zone = ('njz022', 0.00093656726565547333) + +[fips3400100] +centroid = (0.68807097721741328, -1.3001485560204489) +description = Absecon city, NJ +station = ('kacy', 0.0014309007611455335) +zone = ('njz025', 0.00084110620279853577) + +[fips3400100000] +centroid = (0.68726240108154935, -1.2978695574430723) +description = County subdivisions not defined, NJ +station = ('kacy', 0.0033623394206664372) +zone = ('njz025', 0.0011444653801185528) + +[fips3400100100] +centroid = (0.68807097721741328, -1.3001485560204489) +description = Absecon city, NJ +station = ('kacy', 0.0014309007611455335) +zone = ('njz025', 0.00084110620279853577) + +[fips3400102080] +centroid = (0.68726348318568553, -1.299416512572285) +description = Atlantic City city, NJ +station = ('kacy', 0.0023690344339997432) +zone = ('njz025', 0.00028687107369788841) + +[fips3400107810] +centroid = (0.68813604309192755, -1.2983437459475466) +description = Brigantine city, NJ +station = ('kacy', 0.0026997752233113808) +zone = ('njz025', 0.00095494600582238665) + +[fips3400108680] +centroid = (0.68991416708056696, -1.3080405858321169) +description = Buena borough, NJ +station = ('kmiv', 0.0033926036551474013) +zone = ('njz021', 0.0035083176320390395) + +[fips3400108710] +centroid = (0.6896334657769686, -1.3069030325855444) +description = Buena Vista township, NJ +station = ('kmiv', 0.0037470279792734475) +zone = ('njz022', 0.0024879148684429676) + +[fips3400115160] +centroid = (0.6859436302987425, -1.3038583057054405) +description = Corbin City city, NJ +station = ('kacy', 0.0033183962385042341) +zone = ('njz023', 0.0026938342635048295) + +[fips3400120290] +centroid = (0.68728083175845034, -1.3020117648101228) +description = Egg Harbor township, NJ +station = ('kacy', 0.0015583015181661931) +zone = ('njz025', 0.0021062954645458729) + +[fips3400120350] +centroid = (0.69051660237847778, -1.3019434526231999) +description = Egg Harbor City city, NJ +station = ('kacy', 0.0017017101701412957) +zone = ('njz022', 0.0018716030243826488) + +[fips3400121870] +centroid = (0.68685570445924959, -1.3050723043732502) +description = Estell Manor city, NJ +station = ('kacy', 0.0032497373126391914) +zone = ('njz022', 0.0026043006731255253) + +[fips3400123940] +centroid = (0.69105503645271804, -1.3062737366704453) +description = Folsom borough, NJ +station = ('kacy', 0.0041582244190505489) +zone = ('njz022', 0.0026780232661385004) + +[fips3400125560] +centroid = (0.68925588124659221, -1.2998141509357668) +description = Galloway township, NJ +station = ('kacy', 0.0015368394803463603) +zone = ('njz025', 0.0017624205852927127) + +[fips3400129280] +centroid = (0.68909000515448271, -1.3044133378608671) +description = Hamilton township, NJ +station = ('kacy', 0.0020924291819732202) +zone = ('njz022', 0.00055669201657248103) + +[fips3400129430] +centroid = (0.69221119490911664, -1.3049306883577434) +description = Hammonton town, NJ +station = ('kacy', 0.0041936130358035673) +zone = ('njz022', 0.0031135613780345268) + +[fips3400140530] +centroid = (0.68667741907615842, -1.3015103491693174) +description = Linwood city, NJ +station = ('kacy', 0.0021522432204898719) +zone = ('njz025', 0.0019083109340074691) + +[fips3400141370] +centroid = (0.68610243780738145, -1.3007283194913764) +description = Longport borough, NJ +station = ('kacy', 0.0028277208638656675) +zone = ('njz025', 0.0018076784931399192) + +[fips3400143890] +centroid = (0.68645392966544061, -1.3003898303362447) +description = Margate City city, NJ +station = ('kacy', 0.0025841615033874695) +zone = ('njz025', 0.0013694163083378971) + +[fips3400149410] +centroid = (0.69121473407927558, -1.3033776071228562) +description = Mullica township, NJ +station = ('kacy', 0.0027099910910995508) +zone = ('njz022', 0.001991224969644231) + +[fips3400152950] +centroid = (0.68715459209365359, -1.3012271171383039) +description = Northfield city, NJ +station = ('kacy', 0.0017123937980723003) +zone = ('njz025', 0.0015328306380462875) + +[fips3400159640] +centroid = (0.68746424840954257, -1.3005192290469874) +description = Pleasantville city, NJ +station = ('kacy', 0.0016474303536377476) +zone = ('njz025', 0.00093981510074950866) + +[fips3400160600] +centroid = (0.6900051161878884, -1.2998685353952588) +description = Port Republic city, NJ +station = ('kacy', 0.0018569219476384825) +zone = ('njz025', 0.0025053738622801153) + +[fips3400168430] +centroid = (0.68619504497749217, -1.3021337807781299) +description = Somers Point city, NJ +station = ('kacy', 0.0026471764782148295) +zone = ('njz025', 0.0025652202022893207) + +[fips3400175620] +centroid = (0.68664858623691549, -1.2999704102636978) +description = Ventnor City city, NJ +station = ('kacy', 0.002562571092419118) +zone = ('njz025', 0.0010263559641711026) + +[fips3400180330] +centroid = (0.68759567170221758, -1.3059767339916335) +description = Weymouth township, NJ +station = ('kmiv', 0.0034971593075751148) +zone = ('njz022', 0.0023972567640342841) + +[fips34003] +centroid = (0.71487097912068431, -1.2928443007409751) +description = Bergen County, NJ +station = ('kteb', 0.0016451972141236638) +zone = ('njz104', 0.0010213320202684772) + +[fips3400300700] +centroid = (0.71615517493100911, -1.2938793508005777) +description = Allendale borough, NJ +station = ('kteb', 0.0031008586044080988) +zone = ('njz103', 0.00031124075023189257) + +[fips3400301090] +centroid = (0.71502908849762237, -1.2900976411905267) +description = Alpine borough, NJ +station = ('kteb', 0.002491395294673078) +zone = ('njz104', 0.0016613805648330818) + +[fips3400305170] +centroid = (0.71422946590082115, -1.2915087573440565) +description = Bergenfield borough, NJ +station = ('kteb', 0.0011893728440932358) +zone = ('njz104', 0.00034139236242354375) + +[fips3400306490] +centroid = (0.71339088755511548, -1.2920626201288845) +description = Bogota borough, NJ +station = ('kteb', 0.00029870164104053572) +zone = ('njz104', 0.00073097251237597496) + +[fips3400310480] +centroid = (0.71255552061523353, -1.292631649824912) +description = Carlstadt borough, NJ +station = ('kteb', 0.00072100939595679946) +zone = ('njz006', 0.001504333970439123) + +[fips3400313570] +centroid = (0.71247972096581924, -1.2913313097190064) +description = Cliffside Park borough, NJ +station = ('knyc', 0.0007318145748671167) +zone = ('nyz072', 0.00080954092367463534) + +[fips3400313810] +centroid = (0.71511183455745941, -1.2908510125621497) +description = Closter borough, NJ +station = ('kteb', 0.0021991116642813232) +zone = ('njz104', 0.001289475059071041) + +[fips3400315820] +centroid = (0.7145340607618792, -1.2908207485529202) +description = Cresskill borough, NJ +station = ('kteb', 0.0017558299631634945) +zone = ('njz104', 0.00093993052702030463) + +[fips3400317530] +centroid = (0.71479219495824931, -1.2907855278086151) +description = Demarest borough, NJ +station = ('kteb', 0.0019679924954497459) +zone = ('njz104', 0.0011007080936529094) + +[fips3400318400] +centroid = (0.71462923356599051, -1.291411490144843) +description = Dumont borough, NJ +station = ('kteb', 0.001567584699922775) +zone = ('njz104', 0.00064822117955852347) + +[fips3400319510] +centroid = (0.71239273375589984, -1.2930275952190196) +description = East Rutherford borough, NJ +station = ('kteb', 0.00098099357919763873) +zone = ('njz006', 0.0013318605213157074) + +[fips3400320020] +centroid = (0.71250972317566108, -1.2910939973006126) +description = Edgewater borough, NJ +station = ('knyc', 0.00071332282449357472) +zone = ('nyz072', 0.0007954837932567379) + +[fips3400321300] +centroid = (0.71391865766762597, -1.2936295592780322) +description = Elmwood Park borough, NJ +station = ('kteb', 0.0011304607576486051) +zone = ('njz104', 0.0012959686233069588) + +[fips3400321450] +centroid = (0.71514848647175133, -1.2919494006203074) +description = Emerson borough, NJ +station = ('kteb', 0.001923235550603711) +zone = ('njz104', 0.0010331208706125165) + +[fips3400321480] +centroid = (0.71368602273162773, -1.2910639427308932) +description = Englewood city, NJ +station = ('kteb', 0.0011085315829162628) +zone = ('njz104', 0.00078576279622906311) + +[fips3400321510] +centroid = (0.71365958099346005, -1.2905321758143957) +description = Englewood Cliffs borough, NJ +station = ('kteb', 0.0014801494497453601) +zone = ('njz104', 0.0011538455177945511) + +[fips3400322470] +centroid = (0.71446506789654796, -1.2935944781600672) +description = Fair Lawn borough, NJ +station = ('kteb', 0.0015000942147747841) +zone = ('njz004', 0.0011321820324929916) + +[fips3400322560] +centroid = (0.71246179643440133, -1.2915970710042075) +description = Fairview borough, NJ +station = ('knyc', 0.00081524236492056771) +zone = ('nyz072', 0.00088451082894981247) + +[fips3400324420] +centroid = (0.71297816954689641, -1.2910376231657732) +description = Fort Lee borough, NJ +station = ('knyc', 0.0011761210496979571) +zone = ('nyz072', 0.0012587438334252278) + +[fips3400324990] +centroid = (0.71571639915705776, -1.2951329509891152) +description = Franklin Lakes borough, NJ +station = ('kcdw', 0.0023973580232166795) +zone = ('njz103', 0.00073205265362529556) + +[fips3400325770] +centroid = (0.71348705519690048, -1.2934329653910877) +description = Garfield city, NJ +station = ('kteb', 0.00080218342810744743) +zone = ('njz104', 0.0012952189687458324) + +[fips3400326640] +centroid = (0.71487762882513439, -1.2937288336058859) +description = Glen Rock borough, NJ +station = ('kteb', 0.0018993114460999507) +zone = ('njz103', 0.0011963511565686858) + +[fips3400328680] +centroid = (0.71365462425838433, -1.2923412270373802) +description = Hackensack city, NJ +station = ('kteb', 0.00040077790496614678) +zone = ('njz104', 0.00055389086757227251) + +[fips3400330150] +centroid = (0.7154397993772017, -1.291198106190494) +description = Harrington Park borough, NJ +station = ('kteb', 0.0023680864884252331) +zone = ('njz104', 0.0014364383730419796) + +[fips3400330420] +centroid = (0.71318954637260545, -1.2928558199140383) +description = Hasbrouck Heights borough, NJ +station = ('kteb', 0.0003393345753903087) +zone = ('njz104', 0.0011585568220127669) + +[fips3400330540] +centroid = (0.71491675910696406, -1.2914989136870754) +description = Haworth borough, NJ +station = ('kteb', 0.001797908891092867) +zone = ('njz104', 0.00086628862260995144) + +[fips3400331920] +centroid = (0.71570938293346464, -1.2923311215810112) +description = Hillsdale borough, NJ +station = ('kteb', 0.0024523398366251116) +zone = ('njz103', 0.0014738726678120268) + +[fips3400332310] +centroid = (0.71557600487202733, -1.2932291807476248) +description = Ho-Ho-Kus borough, NJ +station = ('kteb', 0.0023980803567225542) +zone = ('njz103', 0.0008795338844302164) + +[fips3400340020] +centroid = (0.7132007164798182, -1.2913424274663414) +description = Leonia borough, NJ +station = ('kteb', 0.00081413750385383738) +zone = ('njz104', 0.0010183804188653078) + +[fips3400340680] +centroid = (0.71286807417768061, -1.292174827346495) +description = Little Ferry borough, NJ +station = ('kteb', 0.00043048255123383006) +zone = ('njz104', 0.0012605065132280432) + +[fips3400341100] +centroid = (0.71345420810037785, -1.2929835431086991) +description = Lodi borough, NJ +station = ('kteb', 0.0004717174754596619) +zone = ('njz104', 0.0010324124200782106) + +[fips3400342090] +centroid = (0.71205949804181667, -1.2935202318536874) +description = Lyndhurst township, NJ +station = ('kteb', 0.0014607494032649459) +zone = ('njz006', 0.0011014274453014631) + +[fips3400342750] +centroid = (0.71702918346053035, -1.2948152836119597) +description = Mahwah township, NJ +station = ('kcdw', 0.0037025891294008764) +zone = ('njz103', 0.0011074106322108671) + +[fips3400344880] +centroid = (0.71389001681460074, -1.292651180059242) +description = Maywood borough, NJ +station = ('kteb', 0.00065659534766334857) +zone = ('njz104', 0.00058659083807888408) + +[fips3400346110] +centroid = (0.71551184656872402, -1.294009133483756) +description = Midland Park borough, NJ +station = ('kteb', 0.0025550796069204792) +zone = ('njz103', 0.00052781756085907737) + +[fips3400347610] +centroid = (0.71653783836950891, -1.2923691523054122) +description = Montvale borough, NJ +station = ('kteb', 0.0032801440480347563) +zone = ('njz103', 0.001509497800712852) + +[fips3400347700] +centroid = (0.71281622044560378, -1.2925499335093336) +description = Moonachie borough, NJ +station = ('kteb', 0.0004530837559822254) +zone = ('njz104', 0.0013799981784883371) + +[fips3400351660] +centroid = (0.71443588599145458, -1.2918831653751943) +description = New Milford borough, NJ +station = ('kteb', 0.0012450184417223979) +zone = ('njz104', 0.0003228077540921244) + +[fips3400352320] +centroid = (0.71185445676129233, -1.2937466010576713) +description = North Arlington borough, NJ +station = ('kteb', 0.0017271086312501311) +zone = ('njz106', 0.00091114057828037265) + +[fips3400353430] +centroid = (0.71581188612043434, -1.290637558794631) +description = Northvale borough, NJ +station = ('kteb', 0.0028858869343541499) +zone = ('njz104', 0.0019588863414597758) + +[fips3400353610] +centroid = (0.71544976520723058, -1.2906869865190476) +description = Norwood borough, NJ +station = ('kteb', 0.0025517356832034685) +zone = ('njz104', 0.0016334874678025474) + +[fips3400353850] +centroid = (0.71610824302742304, -1.2957994922304519) +description = Oakland borough, NJ +station = ('kcdw', 0.0026118616904878414) +zone = ('njz103', 0.001177888792920401) + +[fips3400354870] +centroid = (0.7161140375205397, -1.2912978866638305) +description = Old Tappan borough, NJ +station = ('kteb', 0.0029784533791388816) +zone = ('njz104', 0.0020556140063223293) + +[fips3400354990] +centroid = (0.71482841054022805, -1.2921171267614242) +description = Oradell borough, NJ +station = ('kteb', 0.0015867145849637705) +zone = ('njz104', 0.00072619546410901414) + +[fips3400355770] +centroid = (0.71291493626809666, -1.2914923687023803) +description = Palisades Park borough, NJ +station = ('kteb', 0.0007784380333334842) +zone = ('njz104', 0.0012461820931224446) + +[fips3400355950] +centroid = (0.71466536188150676, -1.2927826382585021) +description = Paramus borough, NJ +station = ('kteb', 0.0014344460099382395) +zone = ('njz104', 0.00084433918108819072) + +[fips3400356130] +centroid = (0.71621856528944161, -1.292303929351265) +description = Park Ridge borough, NJ +station = ('kteb', 0.002961894047624682) +zone = ('njz103', 0.0014781833256185361) + +[fips3400361680] +centroid = (0.71661711122413452, -1.2940906229065319) +description = Ramsey borough, NJ +station = ('kcdw', 0.0035627546858495941) +zone = ('njz103', 0.00061886382777726122) + +[fips3400362910] +centroid = (0.71265872193390389, -1.2918077846048008) +description = Ridgefield borough, NJ +station = ('kteb', 0.00075556789250294065) +zone = ('nyz072', 0.0011368562267173137) + +[fips3400362940] +centroid = (0.71304911718098996, -1.2918914207825563) +description = Ridgefield Park village, NJ +station = ('kteb', 0.00044852531584700238) +zone = ('njz104', 0.0010668084900408836) + +[fips3400363000] +centroid = (0.71526369565567549, -1.2935246998965726) +description = Ridgewood village, NJ +station = ('kteb', 0.0021736207984460482) +zone = ('njz103', 0.00092197825774144304) + +[fips3400363360] +centroid = (0.71430681889326963, -1.2921975864399411) +description = River Edge borough, NJ +station = ('kteb', 0.0010618810758109818) +zone = ('njz104', 0.00027589650819711994) + +[fips3400363690] +centroid = (0.71583284752475085, -1.2916618750793338) +description = River Vale township, NJ +station = ('kteb', 0.0026372708143206644) +zone = ('njz104', 0.0017297244374376607) + +[fips3400363990] +centroid = (0.71402630957588908, -1.2929904371592444) +description = Rochelle Park township, NJ +station = ('kteb', 0.00088252692414795371) +zone = ('njz104', 0.00080285938448281479) + +[fips3400364170] +centroid = (0.71558919956117251, -1.2903929159933789) +description = Rockleigh borough, NJ +station = ('kteb', 0.0027877732388263505) +zone = ('njz104', 0.0018781691657668144) + +[fips3400365280] +centroid = (0.71244888099793668, -1.2933944110679112) +description = Rutherford borough, NJ +station = ('kteb', 0.001096353173947149) +zone = ('njz006', 0.0014347599600488298) + +[fips3400365340] +centroid = (0.71389160506422022, -1.2933074936711619) +description = Saddle Brook township, NJ +station = ('kteb', 0.00092495812402450673) +zone = ('njz104', 0.0010614256386142511) + +[fips3400365400] +centroid = (0.71599856653722771, -1.2931590010584022) +description = Saddle River borough, NJ +station = ('kteb', 0.0027975024533452666) +zone = ('njz103', 0.00081838042423158048) + +[fips3400368970] +centroid = (0.71322504636959094, -1.2923831498460132) +description = South Hackensack township, NJ +station = ('kteb', 4.1321390186409569e-05) +zone = ('njz104', 0.00095276249664531494) + +[fips3400372360] +centroid = (0.71367066383421018, -1.2917439753673476) +description = Teaneck township, NJ +station = ('kteb', 0.00065483313695084591) +zone = ('njz104', 0.0004675167088239041) + +[fips3400372420] +centroid = (0.71415921639842839, -1.2906800750152094) +description = Tenafly borough, NJ +station = ('kteb', 0.0015921748019795874) +zone = ('njz104', 0.00094900352982344284) + +[fips3400372480] +centroid = (0.71301934186395088, -1.2925970399458451) +description = Teterboro borough, NJ +station = ('kteb', 0.00027493189869260911) +zone = ('njz104', 0.0012050836718459654) + +[fips3400375140] +centroid = (0.71668729091335714, -1.2932885568487777) +description = Upper Saddle River borough, NJ +station = ('kteb', 0.0034920789446059469) +zone = ('njz103', 0.00098936504574467592) + +[fips3400376400] +centroid = (0.71582261989533413, -1.2937413476166226) +description = Waldwick borough, NJ +station = ('kteb', 0.0027531257333522079) +zone = ('njz103', 0.0004223958272061998) + +[fips3400376490] +centroid = (0.71302082539381517, -1.2933993328964017) +description = Wallington borough, NJ +station = ('kteb', 0.00078035094223967384) +zone = ('njz104', 0.0015570641316314873) + +[fips3400377135] +centroid = (0.71538089451494691, -1.2926727523287966) +description = Washington township, NJ +station = ('kteb', 0.0021318296655551483) +zone = ('njz103', 0.0013416410048557577) + +[fips3400380270] +centroid = (0.71539356560531642, -1.2920999178149997) +description = Westwood borough, NJ +station = ('kteb', 0.0021490145118837514) +zone = ('njz104', 0.0012842234384101534) + +[fips3400382300] +centroid = (0.71603837749746568, -1.292609361970364) +description = Woodcliff Lake borough, NJ +station = ('kteb', 0.0027843106943229541) +zone = ('njz103', 0.0012333053071533629) + +[fips3400382570] +centroid = (0.71297019339221479, -1.2930632697489304) +description = Wood-Ridge borough, NJ +station = ('kteb', 0.00056762255098144086) +zone = ('njz104', 0.0014281899354016895) + +[fips3400383050] +centroid = (0.71556916318135955, -1.2944906174645037) +description = Wyckoff township, NJ +station = ('kcdw', 0.0025219243565766034) +zone = ('njz103', 0.00047778058984967743) + +[fips34005] +centroid = (0.69596375752065953, -1.3031152841362814) +description = Burlington County, NJ +station = ('kvay', 0.0024918419725349856) +zone = ('njz019', 0.0022853090709325087) + +[fips3400503370] +centroid = (0.69217040656449746, -1.2993649380928884) +description = Bass River township, NJ +station = ('kacy', 0.0038095774284847665) +zone = ('njz027', 0.0021700611160171794) + +[fips3400505740] +centroid = (0.69926286613924182, -1.3076339066631095) +description = Beverly city, NJ +station = ('kpne', 0.0013062363201575531) +zone = ('njz019', 0.0026049988250066969) + +[fips3400506670] +centroid = (0.70074662289623979, -1.3038943293012017) +description = Bordentown city, NJ +station = ('kwri', 0.0027326358476846002) +zone = ('njz015', 0.0023310333838928855) + +[fips3400506700] +centroid = (0.70040087317141975, -1.303712134380586) +description = Bordentown township, NJ +station = ('kwri', 0.0023662095549514747) +zone = ('njz019', 0.0026548433492014213) + +[fips3400508920] +centroid = (0.69949944551934973, -1.3064227528819807) +description = Burlington city, NJ +station = ('kvay', 0.0025442470001917025) +zone = ('njz019', 0.0020682679012491291) + +[fips3400508950] +centroid = (0.69921666727394161, -1.3061500102797716) +description = Burlington township, NJ +station = ('kvay', 0.0022490201415444363) +zone = ('njz019', 0.0017169708366273622) + +[fips3400512670] +centroid = (0.70023031959691484, -1.3029492160579541) +description = Chesterfield township, NJ +station = ('kwri', 0.0019437948285439815) +zone = ('njz019', 0.0027370123427293493) + +[fips3400512940] +centroid = (0.6981345282311201, -1.3088508898439402) +description = Cinnaminson township, NJ +station = ('kpne', 0.001489657035836874) +zone = ('paz071', 0.0019051057512577028) + +[fips3400517080] +centroid = (0.69901598931654729, -1.3079104017232106) +description = Delanco township, NJ +station = ('kpne', 0.0011984449341131049) +zone = ('paz071', 0.0027258040724750239) + +[fips3400517440] +centroid = (0.6983590124795116, -1.3080792972349262) +description = Delran township, NJ +station = ('kpne', 0.0015367886123054935) +zone = ('paz071', 0.0024932810865089085) + +[fips3400518790] +centroid = (0.69818425266150941, -1.3047614088735924) +description = Eastampton township, NJ +station = ('kvay', 0.0015851436457459114) +zone = ('njz019', 0.00031435548410980671) + +[fips3400520050] +centroid = (0.69906293867342595, -1.3075734135512354) +description = Edgewater Park township, NJ +station = ('kpne', 0.0014124763599346242) +zone = ('njz019', 0.0024633289804672177) + +[fips3400522110] +centroid = (0.69563024255389594, -1.3072657469106941) +description = Evesham township, NJ +station = ('kvay', 0.0016144319452235088) +zone = ('njz018', 0.0012161239396113314) + +[fips3400523250] +centroid = (0.70050766986834923, -1.304282420713675) +description = Fieldsboro borough, NJ +station = ('kwri', 0.0027122190552576106) +zone = ('njz015', 0.0025962496381176708) + +[fips3400523850] +centroid = (0.69978320114913894, -1.3052238338589082) +description = Florence township, NJ +station = ('kvay', 0.0028918215908405589) +zone = ('njz019', 0.0019460757908387855) + +[fips3400529010] +centroid = (0.69774696041742212, -1.306140428422178) +description = Hainesport township, NJ +station = ('kvay', 0.00077984643114802998) +zone = ('njz019', 0.0010654252456315952) + +[fips3400542060] +centroid = (0.6974135850769988, -1.3055495297506228) +description = Lumberton township, NJ +station = ('kvay', 0.00060734554351481087) +zone = ('njz019', 0.00075828410332926194) + +[fips3400543290] +centroid = (0.69965739781665515, -1.3039749111527663) +description = Mansfield township, NJ +station = ('kwri', 0.0019426852067227292) +zone = ('njz019', 0.001885681359384294) + +[fips3400543740] +centroid = (0.69730059246122467, -1.3089078573907253) +description = Maple Shade township, NJ +station = ('kvay', 0.0021873101503806563) +zone = ('paz071', 0.0020928048543965385) + +[fips3400545120] +centroid = (0.69576274795070736, -1.3058984734279739) +description = Medford township, NJ +station = ('kvay', 0.0012141430108123681) +zone = ('njz019', 0.0022810817369560798) + +[fips3400545210] +centroid = (0.69557739398414553, -1.3057098731490038) +description = Medford Lakes borough, NJ +station = ('kvay', 0.0014206997034724538) +zone = ('njz019', 0.0024056419180086366) + +[fips3400547880] +centroid = (0.69773156661341962, -1.3080369730005652) +description = Moorestown township, NJ +station = ('kvay', 0.001677691921221052) +zone = ('paz071', 0.002580170963536414) + +[fips3400548900] +centroid = (0.6980505604408066, -1.3052698232846982) +description = Mount Holly township, NJ +station = ('kvay', 0.0012509633634041359) +zone = ('njz019', 0.00043085990844415759) + +[fips3400549020] +centroid = (0.69724144325287452, -1.3072559207070051) +description = Mount Laurel township, NJ +station = ('kvay', 0.0009361848873853249) +zone = ('njz019', 0.0020140248160807712) + +[fips3400551510] +centroid = (0.69840283769702916, -1.3015209433178772) +description = New Hanover township, NJ +station = ('kwri', 0.00037937098347668954) +zone = ('njz019', 0.0025372997023773722) + +[fips3400553070] +centroid = (0.69970181644611851, -1.3017615718618494) +description = North Hanover township, NJ +station = ('kwri', 0.001293923552823893) +zone = ('njz019', 0.0029365737761041918) + +[fips3400555800] +centroid = (0.69817734115767149, -1.3096125689828031) +description = Palmyra borough, NJ +station = ('kpne', 0.001430568511536218) +zone = ('paz071', 0.001320077465803637) + +[fips3400557480] +centroid = (0.69762239626870737, -1.3035078435916398) +description = Pemberton borough, NJ +station = ('kwri', 0.0013954367172698578) +zone = ('njz019', 0.00099039075371978652) + +[fips3400557510] +centroid = (0.69740869815509321, -1.3020964656387222) +description = Pemberton township, NJ +station = ('kwri', 0.0010157811535052603) +zone = ('njz019', 0.0020921441782770643) + +[fips3400563510] +centroid = (0.69875438191496586, -1.308225520919658) +description = Riverside township, NJ +station = ('kpne', 0.0011631413733485009) +zone = ('paz071', 0.0024290350710959078) + +[fips3400563660] +centroid = (0.69833995348407985, -1.3092541132610285) +description = Riverton borough, NJ +station = ('kpne', 0.0012464555716534026) +zone = ('paz071', 0.0015934657086653266) + +[fips3400566810] +centroid = (0.6943783702413181, -1.3040480579017171) +description = Shamong township, NJ +station = ('kvay', 0.0030264071130178764) +zone = ('njz027', 0.0021903363757654775) + +[fips3400568610] +centroid = (0.69666974320309127, -1.3040710264346735) +description = Southampton township, NJ +station = ('kvay', 0.0015753557072815745) +zone = ('njz019', 0.0013110132396626207) + +[fips3400569990] +centroid = (0.69871752056116376, -1.3038761080638108) +description = Springfield township, NJ +station = ('kwri', 0.0014548978663058022) +zone = ('njz019', 0.0010844591835066429) + +[fips3400572060] +centroid = (0.69496001866783763, -1.302913663701091) +description = Tabernacle township, NJ +station = ('kvay', 0.0031571142196244197) +zone = ('njz027', 0.0017323895908617987) + +[fips3400577150] +centroid = (0.69261930524811044, -1.3015380824511316) +description = Washington township, NJ +station = ('kacy', 0.0037987524245231509) +zone = ('njz027', 0.0011225680566350801) + +[fips3400578200] +centroid = (0.69845312063277909, -1.305799111833658) +description = Westampton township, NJ +station = ('kvay', 0.0015013899981198178) +zone = ('njz019', 0.00098722694962317015) + +[fips3400581440] +centroid = (0.69861952032366414, -1.3070244376883131) +description = Willingboro township, NJ +station = ('kvay', 0.0018005151045409782) +zone = ('njz019', 0.0018900572593514961) + +[fips3400582420] +centroid = (0.69536167128859916, -1.3005799141450793) +description = Woodland township, NJ +station = ('kwri', 0.0032528948990550918) +zone = ('njz027', 0.0017295151379104895) + +[fips3400582960] +centroid = (0.69872734676485249, -1.3024099965855505) +description = Wrightstown borough, NJ +station = ('kwri', 0.0004290441886626517) +zone = ('njz019', 0.0019932543133026324) + +[fips3400640] +centroid = (0.71422997204630423, -1.3057254938458092) +description = Allamuchy CDP, NJ +station = ('k12n', 0.0019491275210707017) +zone = ('njz007', 0.0026846978785001526) + +[fips34007] +centroid = (0.69468209243775003, -1.3083206413638919) +description = Camden County, NJ +station = ('kvay', 0.0028569824384142638) +zone = ('njz018', 3.1094057078882932e-05) + +[fips3400700] +centroid = (0.71615517493100911, -1.2938793508005777) +description = Allendale borough, NJ +station = ('kteb', 0.0031008586044080988) +zone = ('njz103', 0.00031124075023189257) + +[fips3400702200] +centroid = (0.69621407264198054, -1.3102602606682183) +description = Audubon borough, NJ +station = ('kphl', 0.0021942778427217233) +zone = ('njz018', 0.002131198626154756) + +[fips3400702230] +centroid = (0.69633116678149687, -1.3105471229840759) +description = Audubon Park borough, NJ +station = ('kphl', 0.0020058489298855247) +zone = ('paz071', 0.0020246886014737503) + +[fips3400703250] +centroid = (0.69584415010702039, -1.3098939509648095) +description = Barrington borough, NJ +station = ('kvay', 0.0031285808511104483) +zone = ('njz018', 0.0016720891432882138) + +[fips3400704750] +centroid = (0.69579917297219662, -1.31064924219861) +description = Bellmawr borough, NJ +station = ('kphl', 0.0018575554814251861) +zone = ('njz018', 0.0021105618146445909) + +[fips3400705440] +centroid = (0.69450244569784236, -1.3078971372208956) +description = Berlin borough, NJ +station = ('kvay', 0.0028298314543100563) +zone = ('njz018', 0.00036932847503717771) + +[fips3400705470] +centroid = (0.69476523992331507, -1.3076735954503) +description = Berlin township, NJ +station = ('kvay', 0.0025166730598341408) +zone = ('njz018', 0.00048244501898726707) + +[fips3400708170] +centroid = (0.69602596105520065, -1.3110982456019782) +description = Brooklawn borough, NJ +station = ('kphl', 0.0015288868681650725) +zone = ('paz071', 0.002245559223267221) + +[fips3400710000] +centroid = (0.69702842581766866, -1.3108582279232441) +description = Camden city, NJ +station = ('kphl', 0.002091673166958706) +zone = ('paz071', 0.0012881884530569862) + +[fips3400712280] +centroid = (0.69646684867754705, -1.3089445791181873) +description = Cherry Hill township, NJ +station = ('kvay', 0.0022474386304569107) +zone = ('njz018', 0.0018283534140629048) + +[fips3400712550] +centroid = (0.69344180911140529, -1.306901269803) +description = Chesilhurst borough, NJ +station = ('kvay', 0.0035812072298836276) +zone = ('njz018', 0.00165912049535803) + +[fips3400713420] +centroid = (0.69469652631066403, -1.3087213340535648) +description = Clementon borough, NJ +station = ('kvay', 0.003040572215320315) +zone = ('njz018', 0.00032612486672505307) + +[fips3400714260] +centroid = (0.69665297058897968, -1.3103651375029703) +description = Collingswood borough, NJ +station = ('kphl', 0.0022416113708542671) +zone = ('paz071', 0.0017736801688244691) + +[fips3400726070] +centroid = (0.69521830994384026, -1.3083986924880411) +description = Gibbsboro borough, NJ +station = ('kvay', 0.002491128193844473) +zone = ('njz018', 0.00051687359757177673) + +[fips3400726760] +centroid = (0.69450466226599239, -1.3096262872707236) +description = Gloucester township, NJ +station = ('kphl', 0.0029463989338815414) +zone = ('njz018', 0.0010411739958269045) + +[fips3400726820] +centroid = (0.69623992096820264, -1.3110337382328245) +description = Gloucester City city, NJ +station = ('kphl', 0.0016216665217646813) +zone = ('paz071', 0.0020373127790828316) + +[fips3400728740] +centroid = (0.69649486121204152, -1.3100956412131701) +description = Haddon township, NJ +station = ('kphl', 0.0023839159913025868) +zone = ('paz071', 0.0020073594049988311) + +[fips3400728770] +centroid = (0.69630673217196903, -1.3095954822094262) +description = Haddonfield borough, NJ +station = ('kvay', 0.0027703238458975745) +zone = ('njz018', 0.0018845834453642169) + +[fips3400728800] +centroid = (0.69602206897096863, -1.3101474251320768) +description = Haddon Heights borough, NJ +station = ('kphl', 0.0022530237296432792) +zone = ('njz018', 0.001935707919358902) + +[fips3400730] +centroid = (0.70224971790134982, -1.2915858310838244) +description = Allenhurst borough, NJ +station = ('kblm', 0.0019718216301086097) +zone = ('njz014', 0.00049905049022497836) + +[fips3400732220] +centroid = (0.69527897758863966, -1.3093781712642603) +description = Hi-Nella borough, NJ +station = ('kvay', 0.0030375933896278728) +zone = ('njz018', 0.0010080823678913831) + +[fips3400739210] +centroid = (0.69499958528198036, -1.3090919721735181) +description = Laurel Springs borough, NJ +station = ('kvay', 0.0030314225323034311) +zone = ('njz018', 0.00067693079286558001) + +[fips3400739420] +centroid = (0.69581383373791328, -1.3094997159933692) +description = Lawnside borough, NJ +station = ('kvay', 0.0028605373287015701) +zone = ('njz018', 0.0014412249635789719) + +[fips3400740440] +centroid = (0.69494172761727679, -1.3088030329158507) +description = Lindenwold borough, NJ +station = ('kvay', 0.0029064935776428854) +zone = ('njz018', 0.00045386128263860394) + +[fips3400742630] +centroid = (0.69562163808068367, -1.3096334780272421) +description = Magnolia borough, NJ +station = ('kvay', 0.0030351602788320567) +zone = ('njz018', 0.001374475883074131) + +[fips3400745510] +centroid = (0.69726113056683703, -1.3098711744180711) +description = Merchantville borough, NJ +station = ('kpne', 0.0023675455651630188) +zone = ('paz071', 0.001503273178085511) + +[fips3400748750] +centroid = (0.696031476295637, -1.3105842810438508) +description = Mount Ephraim borough, NJ +station = ('kphl', 0.0019206701467152846) +zone = ('njz018', 0.0021994062504036762) + +[fips3400753880] +centroid = (0.69640890374638076, -1.3103901829777367) +description = Oaklyn borough, NJ +station = ('kphl', 0.0021428386884595708) +zone = ('paz071', 0.0019910031007601527) + +[fips3400757660] +centroid = (0.69758003712776151, -1.3100082176709376) +description = Pennsauken township, NJ +station = ('kpne', 0.0020805683684151444) +zone = ('paz071', 0.0012236358448358593) + +[fips3400758770] +centroid = (0.69441076355223497, -1.3087291531286136) +description = Pine Hill borough, NJ +station = ('kvay', 0.0032634802072313554) +zone = ('njz018', 0.00044518586304885635) + +[fips3400758920] +centroid = (0.69441781468241315, -1.3085703456199749) +description = Pine Valley borough, NJ +station = ('kvay', 0.003183528334725098) +zone = ('njz018', 0.00035767017648888181) + +[fips3400760] +centroid = (0.70124817816338547, -1.30184274712536) +description = Allentown borough, NJ +station = ('kwri', 0.0028286819456670637) +zone = ('njz015', 0.0023548411943841983) + +[fips3400765160] +centroid = (0.69554404074213994, -1.3103024976361166) +description = Runnemede borough, NJ +station = ('kphl', 0.0021398362595045697) +zone = ('njz018', 0.0017527116375860379) + +[fips3400768340] +centroid = (0.69543326469451594, -1.3093756928967224) +description = Somerdale borough, NJ +station = ('kvay', 0.0029528164989260468) +zone = ('njz018', 0.0011014416112415191) + +[fips3400771220] +centroid = (0.69514643728524317, -1.3092667319915203) +description = Stratford borough, NJ +station = ('kvay', 0.0030444231740862386) +zone = ('njz018', 0.00086459103584486674) + +[fips3400772240] +centroid = (0.69597590501225348, -1.3094852646671626) +description = Tavistock borough, NJ +station = ('kvay', 0.0027885387412793952) +zone = ('njz018', 0.0015625506368241063) + +[fips3400776220] +centroid = (0.6954882076593687, -1.3081853259869847) +description = Voorhees township, NJ +station = ('kvay', 0.0021862369470827831) +zone = ('njz018', 0.00078554395228441992) + +[fips3400777630] +centroid = (0.69366147625106134, -1.3059180734754741) +description = Waterford township, NJ +station = ('kvay', 0.0033092467102418658) +zone = ('njz018', 0.0021064301218339742) + +[fips3400781740] +centroid = (0.69292576761146807, -1.3073973621895869) +description = Winslow township, NJ +station = ('kvay', 0.0041655958911129476) +zone = ('njz018', 0.0019111608524100905) + +[fips3400782450] +centroid = (0.69667396689988104, -1.3106645836427353) +description = Woodlynne borough, NJ +station = ('kphl', 0.0020396551663941316) +zone = ('paz071', 0.0016706710673851475) + +[fips3400790] +centroid = (0.70049428319298646, -1.2932549418073842) +description = Allenwood CDP, NJ +station = ('kblm', 0.00096040678577221001) +zone = ('njz014', 0.0022904420958903431) + +[fips3400850] +centroid = (0.69047902543968243, -1.3150930250071129) +description = Alloway CDP, NJ +station = ('kilg', 0.0038380313056091153) +zone = ('njz016', 0.00045025812310776523) + +[fips34009] +centroid = (0.68218188725533402, -1.3063390817976401) +description = Cape May County, NJ +station = ('kwwd', 0.001530934360077912) +zone = ('njz024', 0.0010404631923724998) + +[fips3400900000] +centroid = (0.67923140815483762, -1.3088674181119568) +description = County subdivisions not defined, NJ +station = ('kwwd', 0.0020202573184835478) +zone = ('njz024', 0.0043161447247408316) + +[fips3400902320] +centroid = (0.68225848975620407, -1.3043864248838015) +description = Avalon borough, NJ +station = ('kwwd', 0.0027692562499475053) +zone = ('njz024', 0.00049391822365841339) + +[fips3400910270] +centroid = (0.67964485920134254, -1.3073074253732317) +description = Cape May city, NJ +station = ('kwwd', 0.0013369847583762401) +zone = ('njz024', 0.0032308469976432626) + +[fips3400910330] +centroid = (0.67957726259941276, -1.3083926012889515) +description = Cape May Point borough, NJ +station = ('kwwd', 0.0015409440873563386) +zone = ('njz024', 0.0038109168863771433) + +[fips3400917560] +centroid = (0.68428274007595957, -1.3058277177800983) +description = Dennis township, NJ +station = ('kwwd', 0.0035706041561102916) +zone = ('njz023', 0.00052181588978142325) + +[fips3400941610] +centroid = (0.68039510643360479, -1.3074489715755684) +description = Lower township, NJ +station = ('kwwd', 0.00057877205902531986) +zone = ('njz024', 0.0027127625221112185) + +[fips3400945810] +centroid = (0.68221346026150265, -1.3061618436121001) +description = Middle township, NJ +station = ('kwwd', 0.0016424082559520149) +zone = ('njz024', 0.00089974775489064164) + +[fips3400953490] +centroid = (0.68075394612781481, -1.3054968208072126) +description = North Wildwood city, NJ +station = ('kwwd', 0.001604075062666719) +zone = ('njz024', 0.0016297184339856498) + +[fips3400954360] +centroid = (0.68527902637287552, -1.3020959943998243) +description = Ocean City city, NJ +station = ('kacy', 0.0035558551405695587) +zone = ('njz025', 0.0031233922035757986) + +[fips3400966390] +centroid = (0.68336268976077075, -1.3036982764663252) +description = Sea Isle City city, NJ +station = ('kwwd', 0.0038251911484239501) +zone = ('njz024', 0.0014449813089653111) + +[fips3400971010] +centroid = (0.68140568697709458, -1.3049613363394084) +description = Stone Harbor borough, NJ +station = ('kwwd', 0.0020520502426773449) +zone = ('njz024', 0.00093517234663272552) + +[fips3400974810] +centroid = (0.68518331251669606, -1.3042306542480608) +description = Upper township, NJ +station = ('kacy', 0.0041234765370174375) +zone = ('njz023', 0.0019213728235408926) + +[fips3400978530] +centroid = (0.67967006175574129, -1.3079328641106838) +description = West Cape May borough, NJ +station = ('kwwd', 0.0013342033466285526) +zone = ('njz024', 0.0035029777033187674) + +[fips3400980210] +centroid = (0.68068884534671537, -1.305917706956331) +description = West Wildwood borough, NJ +station = ('kwwd', 0.0012933191005961885) +zone = ('njz024', 0.0017940604817332491) + +[fips3400981170] +centroid = (0.6804849210769125, -1.3058522745626737) +description = Wildwood city, NJ +station = ('kwwd', 0.0013999634012539701) +zone = ('njz024', 0.0019659538171677166) + +[fips3400981200] +centroid = (0.68020003098310944, -1.3061800823027834) +description = Wildwood Crest borough, NJ +station = ('kwwd', 0.0013088116636321263) +zone = ('njz024', 0.0023237052319557121) + +[fips3400981890] +centroid = (0.68466472283605107, -1.3056760312148075) +description = Woodbine borough, NJ +station = ('kwwd', 0.0039689894981053972) +zone = ('njz023', 0.00091750795535090529) + +[fips3401030] +centroid = (0.70964122219013082, -1.3117380309458819) +description = Alpha borough, NJ +station = ('kukt', 0.0049213041209174345) +zone = ('paz062', 0.0025879515178044944) + +[fips3401090] +centroid = (0.71502908849762237, -1.2900976411905267) +description = Alpine borough, NJ +station = ('kteb', 0.002491395294673078) +zone = ('njz104', 0.0016613805648330818) + +[fips34011] +centroid = (0.68640984264853511, -1.3111200273110433) +description = Cumberland County, NJ +station = ('kmiv', 0.00084482666763812265) +zone = ('njz021', 0.00080316515434447774) + +[fips3401100000] +centroid = (0.68412203015843598, -1.3121998101593744) +description = County subdivisions not defined, NJ +station = ('kmiv', 0.0032510025085792774) +zone = ('njz021', 0.0032319626131284834) + +[fips3401107600] +centroid = (0.68814000498932959, -1.3129754868388384) +description = Bridgeton city, NJ +station = ('kmiv', 0.0022209414102288849) +zone = ('njz021', 0.0018503528321839832) + +[fips3401114710] +centroid = (0.68545626455841546, -1.3097869971882474) +description = Commercial township, NJ +station = ('kmiv', 0.0017011857362326205) +zone = ('njz021', 0.0019474100340268388) + +[fips3401116900] +centroid = (0.68869022003602087, -1.3113005467155769) +description = Deerfield township, NJ +station = ('kmiv', 0.0017406409697875041) +zone = ('njz021', 0.0015224197803810576) + +[fips3401118220] +centroid = (0.68538201825203571, -1.3113237770479209) +description = Downe township, NJ +station = ('kmiv', 0.0018252943064918619) +zone = ('njz021', 0.0018425272598248459) + +[fips3401122350] +centroid = (0.68717654833564368, -1.3131634064394004) +description = Fairfield township, NJ +station = ('kmiv', 0.0020989071137890373) +zone = ('njz021', 0.0017381732866284486) + +[fips3401128170] +centroid = (0.68759467686454401, -1.3154119141147449) +description = Greenwich township, NJ +station = ('kmiv', 0.003868850272951605) +zone = ('njz016', 0.0033450404265780182) + +[fips3401133120] +centroid = (0.68832951283951116, -1.3139186976732011) +description = Hopewell township, NJ +station = ('kmiv', 0.0029571277374028709) +zone = ('njz016', 0.0027362816444844013) + +[fips3401139450] +centroid = (0.68652313197028214, -1.3122184502757857) +description = Lawrence township, NJ +station = ('kmiv', 0.0014747790853590944) +zone = ('njz021', 0.0012124859234297603) + +[fips3401144580] +centroid = (0.68583805533228925, -1.3077556957383139) +description = Maurice River township, NJ +station = ('kmiv', 0.0024258971774511534) +zone = ('njz023', 0.0025221955713413424) + +[fips3401146680] +centroid = (0.68748683297006319, -1.3099533270659625) +description = Millville city, NJ +station = ('kmiv', 0.00056160214224443901) +zone = ('njz021', 0.00079778121724529099) + +[fips3401167020] +centroid = (0.68874634982476501, -1.314102376123681) +description = Shiloh borough, NJ +station = ('kmiv', 0.0032771462916927987) +zone = ('njz016', 0.0022959940072641285) + +[fips3401171160] +centroid = (0.68864053051221652, -1.3151931370930074) +description = Stow Creek township, NJ +station = ('kmiv', 0.0039828356886577538) +zone = ('njz016', 0.0022897426740210152) + +[fips3401174870] +centroid = (0.6893164441716364, -1.3127833086349012) +description = Upper Deerfield township, NJ +station = ('kmiv', 0.0028731598068249169) +zone = ('njz016', 0.0023677922851145878) + +[fips3401176070] +centroid = (0.68879431147260983, -1.308946586246827) +description = Vineland city, NJ +station = ('kmiv', 0.0020730171755459657) +zone = ('njz021', 0.0022052657893901141) + +[fips34013] +centroid = (0.71187122937540404, -1.2958395300834928) +description = Essex County, NJ +station = ('kcdw', 0.0017479792853160106) +zone = ('njz105', 0.00049281265566044924) + +[fips3401300] +centroid = (0.71142878841002355, -1.3077672323646694) +description = Anderson CDP, NJ +station = ('ksmq', 0.0043040882401917131) +zone = ('njz007', 0.0018905541524023997) + +[fips3401304695] +centroid = (0.71201605679673452, -1.2943684618701568) +description = Belleville township, NJ +station = ('kteb', 0.0019297399892176631) +zone = ('njz106', 0.00084954265142330333) + +[fips3401306260] +centroid = (0.71225364846780848, -1.2948101174373738) +description = Bloomfield township, NJ +station = ('kcdw', 0.0018137853982346244) +zone = ('njz106', 0.0010931459469671714) + +[fips3401309250] +centroid = (0.71277927182533918, -1.2963781910505356) +description = Caldwell borough, NJ +station = ('kcdw', 0.00077403324305684216) +zone = ('njz105', 0.0006256082815472632) + +[fips3401311200] +centroid = (0.71310702720557118, -1.2955542560172542) +description = Cedar Grove township, NJ +station = ('kcdw', 0.00083336475624300871) +zone = ('njz004', 0.0011120994082835993) + +[fips3401313045] +centroid = (0.71153652758474906, -1.2956572478964143) +description = City of Orange township, NJ +station = ('kewr', 0.001737596382103768) +zone = ('njz105', 0.00082130729797503361) + +[fips3401319390] +centroid = (0.71148448186645463, -1.295241335935664) +description = East Orange city, NJ +station = ('kewr', 0.0015465723258562612) +zone = ('njz106', 0.00060505994589737943) + +[fips3401321840] +centroid = (0.71258524357239494, -1.2963641935099346) +description = Essex Fells borough, NJ +station = ('kcdw', 0.00096812670284413113) +zone = ('njz105', 0.00043161870454318685) + +[fips3401322385] +centroid = (0.71353437107292195, -1.2968598146576233) +description = Fairfield township, NJ +station = ('kcdw', 0.00028091549108633215) +zone = ('njz105', 0.0014289725608487283) + +[fips3401326610] +centroid = (0.71217807571119707, -1.2951140490733162) +description = Glen Ridge borough, NJ +station = ('kcdw', 0.0017205549612626533) +zone = ('njz105', 0.00095325226402767074) + +[fips3401330] +centroid = (0.715336423525606, -1.3045217402607086) +description = Andover borough, NJ +station = ('k12n', 0.00055611775233942705) +zone = ('njz001', 0.0027720740609515544) + +[fips3401334450] +centroid = (0.71076544112121798, -1.2956018336926636) +description = Irvington township, NJ +station = ('kewr', 0.0011222462825768713) +zone = ('njz106', 0.00089572384499452765) + +[fips3401340890] +centroid = (0.7118469867520939, -1.2972875250441172) +description = Livingston township, NJ +station = ('kmmu', 0.0011832019917898833) +zone = ('njz105', 0.00075725266696558848) + +[fips3401343800] +centroid = (0.71091923953490377, -1.2962756704102734) +description = Maplewood township, NJ +station = ('kewr', 0.0016283461259545442) +zone = ('njz105', 0.0012366341473794079) + +[fips3401346380] +centroid = (0.71107527197003206, -1.2971510752031963) +description = Millburn township, NJ +station = ('kmmu', 0.0016211289003032442) +zone = ('njz105', 0.0012288966483596454) + +[fips3401347500] +centroid = (0.71252045695056088, -1.2952498880489989) +description = Montclair township, NJ +station = ('kcdw', 0.0013912217799240166) +zone = ('njz105', 0.0009257501291277194) + +[fips3401351000] +centroid = (0.71077172430652524, -1.2945556309791406) +description = Newark city, NJ +station = ('kewr', 0.00071787466395759243) +zone = ('njz106', 0.00040631916568052034) + +[fips3401352620] +centroid = (0.71322000236805272, -1.2960813105447715) +description = North Caldwell borough, NJ +station = ('kcdw', 0.00045056309301694328) +zone = ('njz105', 0.0010889209237604854) + +[fips3401353680] +centroid = (0.71245331413423663, -1.2942677389190242) +description = Nutley township, NJ +station = ('kteb', 0.0016152458915260572) +zone = ('njz106', 0.0012933878906498102) + +[fips3401364590] +centroid = (0.71244097465642509, -1.2969570993101298) +description = Roseland borough, NJ +station = ('kcdw', 0.0011630681064517712) +zone = ('njz105', 0.00052725336132072723) + +[fips3401369274] +centroid = (0.71120091822288312, -1.2961079093625716) +description = South Orange Village township, NJ +station = ('kewr', 0.0016971330591773735) +zone = ('njz105', 0.00097367211888859436) + +[fips3401375815] +centroid = (0.71268786893241221, -1.2957826498031699) +description = Verona township, NJ +station = ('kcdw', 0.0010130932436282199) +zone = ('njz105', 0.00069637888078250953) + +[fips3401378510] +centroid = (0.71291860145952579, -1.2966823670325731) +description = West Caldwell township, NJ +station = ('kcdw', 0.00064696237510116698) +zone = ('njz105', 0.00079995217143480953) + +[fips3401379800] +centroid = (0.71184567775515484, -1.2961698161911401) +description = West Orange township, NJ +station = ('kcdw', 0.0017201075705267725) +zone = ('njz105', 0.00034426390972701354) + +[fips3401480] +centroid = (0.70942115362474689, -1.3070452594662896) +description = Annandale CDP, NJ +station = ('ksmq', 0.0029808924237010263) +zone = ('njz009', 0.0014262247871067147) + +[fips34015] +centroid = (0.69326256379722551, -1.3115051167572032) +description = Gloucester County, NJ +station = ('kphl', 0.0028118474029713981) +zone = ('njz017', 6.9298525829693616e-05) + +[fips3401513360] +centroid = (0.69226313590765598, -1.3103496564325054) +description = Clayton borough, NJ +station = ('kphl', 0.0041124693905156915) +zone = ('njz017', 0.001273299702607602) + +[fips3401517710] +centroid = (0.69488179301076325, -1.3110685226448167) +description = Deptford township, NJ +station = ('kphl', 0.001792162475619643) +zone = ('njz017', 0.0017126743829680255) + +[fips3401519180] +centroid = (0.69447556762736162, -1.3131960615497054) +description = East Greenwich township, NJ +station = ('kphl', 0.0013325838577840307) +zone = ('njz017', 0.0018403020141751526) + +[fips3401521060] +centroid = (0.69224561280196595, -1.3117366172291876) +description = Elk township, NJ +station = ('kphl', 0.0037034943741213167) +zone = ('njz017', 0.00097332419777268399) + +[fips3401524840] +centroid = (0.69113015542372391, -1.3093612590238086) +description = Franklin township, NJ +station = ('kmiv', 0.0041386330198762353) +zone = ('njz017', 0.0026304086113926616) + +[fips3401526340] +centroid = (0.69289738855783078, -1.3109416372081968) +description = Glassboro borough, NJ +station = ('kphl', 0.0033354753700443425) +zone = ('njz017', 0.00050755607123315841) + +[fips3401528185] +centroid = (0.69522005527309227, -1.3140632807484363) +description = Greenwich township, NJ +station = ('kphl', 0.00096121197664254918) +zone = ('paz070', 0.0020605312067878022) + +[fips3401530180] +centroid = (0.69334967318019258, -1.3125757366269615) +description = Harrison township, NJ +station = ('kphl', 0.0024840471017996122) +zone = ('njz017', 0.00086126923007662042) + +[fips3401541160] +centroid = (0.6945027947636927, -1.3151959819796881) +description = Logan township, NJ +station = ('kphl', 0.0020884990871840306) +zone = ('paz070', 0.0022528991413115376) + +[fips3401543440] +centroid = (0.69397802661749552, -1.3120179293980241) +description = Mantua township, NJ +station = ('kphl', 0.0019971561656571307) +zone = ('njz017', 0.00088555199491089514) + +[fips3401547250] +centroid = (0.69220269515565946, -1.3085212844147012) +description = Monroe township, NJ +station = ('kphl', 0.0050195806224207313) +zone = ('njz017', 0.002480169518696171) + +[fips3401549680] +centroid = (0.69581559652045777, -1.3122366366065916) +description = National Park borough, NJ +station = ('kphl', 0.00063924942750616571) +zone = ('paz071', 0.0025450517060001238) + +[fips3401551390] +centroid = (0.69029250210252169, -1.3091759748704166) +description = Newfield borough, NJ +station = ('kmiv', 0.0033619962589918452) +zone = ('njz021', 0.0033739461410637003) + +[fips3401557150] +centroid = (0.69533873766222798, -1.3131850310688327) +description = Paulsboro borough, NJ +station = ('kphl', 0.00047424317064956691) +zone = ('njz017', 0.002512817807959694) + +[fips3401559070] +centroid = (0.69347065940394081, -1.3112779970616413) +description = Pitman borough, NJ +station = ('kphl', 0.0027095064450665504) +zone = ('njz017', 0.00031169733179963453) + +[fips3401569030] +centroid = (0.69278394215645112, -1.3134262181181657) +description = South Harrison township, NJ +station = ('kphl', 0.0030330759923946501) +zone = ('njz017', 0.0015581807577970679) + +[fips3401571850] +centroid = (0.69369653991573388, -1.314423987944946) +description = Swedesboro borough, NJ +station = ('kphl', 0.0023509172282183298) +zone = ('njz017', 0.002323214323630576) + +[fips3401577180] +centroid = (0.69374087127873452, -1.310202821882535) +description = Washington township, NJ +station = ('kphl', 0.0030179660643486813) +zone = ('njz017', 0.0011180710608376821) + +[fips3401578110] +centroid = (0.69447628321235488, -1.3115828362687945) +description = Wenonah borough, NJ +station = ('kphl', 0.0017514789438489217) +zone = ('njz017', 0.0012813851301859396) + +[fips3401578800] +centroid = (0.69537429001909101, -1.312232727069067) +description = West Deptford township, NJ +station = ('kphl', 0.00077309642056473833) +zone = ('njz017', 0.0022534699459469598) + +[fips3401580120] +centroid = (0.69584395812080269, -1.3112935130386913) +description = Westville borough, NJ +station = ('kphl', 0.0013635868566677241) +zone = ('paz071', 0.002420569358209672) + +[fips3401582120] +centroid = (0.69530264425329669, -1.3116416364112942) +description = Woodbury city, NJ +station = ('kphl', 0.0012055413534003939) +zone = ('njz017', 0.0021089487886640943) + +[fips3401582180] +centroid = (0.69487449753448993, -1.3116257015552235) +description = Woodbury Heights borough, NJ +station = ('kphl', 0.0014470183566369086) +zone = ('njz017', 0.0016809155815344671) + +[fips3401582840] +centroid = (0.69364997453129063, -1.3146793645210979) +description = Woolwich township, NJ +station = ('kphl', 0.0024843836377475156) +zone = ('njz017', 0.0025066098146092472) + +[fips34017] +centroid = (0.71089675969413801, -1.2929159465067694) +description = Hudson County, NJ +station = ('kewr', 0.0014353033689149964) +zone = ('njz006', 0.00016849135241384834) + +[fips3401703580] +centroid = (0.70969295374915997, -1.2934674880036923) +description = Bayonne city, NJ +station = ('kewr', 0.00083156390032499653) +zone = ('njz006', 0.0014383721394142213) + +[fips3401719360] +centroid = (0.71125596590749096, -1.2943746054291236) +description = East Newark borough, NJ +station = ('kewr', 0.0011993036756457289) +zone = ('njz106', 0.00015573808468420696) + +[fips3401728650] +centroid = (0.71196839185486249, -1.2916234429292051) +description = Guttenberg town, NJ +station = ('knyc', 0.00052735681614284166) +zone = ('nyz072', 0.00056072474574209836) + +[fips3401730210] +centroid = (0.71109874664847128, -1.2942124643416135) +description = Harrison town, NJ +station = ('kewr', 0.0010564187546394058) +zone = ('njz106', 0.00026961178683987169) + +[fips3401732250] +centroid = (0.71113878450151213, -1.2920310471227157) +description = Hoboken city, NJ +station = ('knyc', 0.0010476386640328747) +zone = ('njz006', 0.00065972064163580561) + +[fips3401736000] +centroid = (0.71054826980239227, -1.2926739216993954) +description = Jersey City city, NJ +station = ('kewr', 0.0014347950387991813) +zone = ('njz006', 0.00054312269136646966) + +[fips3401736510] +centroid = (0.71128659643586345, -1.2936533132091519) +description = Kearny town, NJ +station = ('kewr', 0.0013697030896783339) +zone = ('njz106', 0.00068985279952307721) + +[fips3401752470] +centroid = (0.7119926693847578, -1.2919792806571015) +description = North Bergen township, NJ +station = ('knyc', 0.00079320579275485856) +zone = ('nyz072', 0.00081896571889937954) + +[fips3401766570] +centroid = (0.71177944251004166, -1.2927243442614855) +description = Secaucus town, NJ +station = ('knyc', 0.0013347488040248729) +zone = ('njz006', 0.00072661716747708064) + +[fips3401774630] +centroid = (0.71152640467508754, -1.2921073005577355) +description = Union City city, NJ +station = ('knyc', 0.00091057469610972969) +zone = ('njz006', 0.00075529654961214348) + +[fips3401777930] +centroid = (0.71155158977619382, -1.291812898419509) +description = Weehawken township, NJ +station = ('knyc', 0.00069192150262918303) +zone = ('nyz072', 0.00066846173986576758) + +[fips3401779610] +centroid = (0.71185054722376784, -1.2917095749277909) +description = West New York town, NJ +station = ('knyc', 0.00056809539120833386) +zone = ('nyz072', 0.00058297604508488149) + +[fips34019] +centroid = (0.70799775035328294, -1.3074605256552165) +description = Hunterdon County, NJ +station = ('ksmq', 0.0033725679808884997) +zone = ('njz009', 3.3742823248521196e-05) + +[fips3401900] +centroid = (0.71033043525845097, -1.3091335284630081) +description = Asbury CDP, NJ +station = ('ksmq', 0.0047397789928553874) +zone = ('njz009', 0.002624373050837779) + +[fips3401900550] +centroid = (0.70850824170619875, -1.3094606031648319) +description = Alexandria township, NJ +station = ('kdyl', 0.0047131583747014438) +zone = ('njz009', 0.0015880051934940107) + +[fips3401905650] +centroid = (0.70973876864202479, -1.3092052440419726) +description = Bethlehem township, NJ +station = ('kdyl', 0.0059538258985028609) +zone = ('njz009', 0.0021582913973847836) + +[fips3401906370] +centroid = (0.7095654749005943, -1.3103966406959691) +description = Bloomsbury borough, NJ +station = ('kukt', 0.0055447358379569073) +zone = ('njz009', 0.0027023420067741385) + +[fips3401909280] +centroid = (0.71068726782402114, -1.3061484394834448) +description = Califon borough, NJ +station = ('ksmq', 0.002878558980116941) +zone = ('njz009', 0.0028380554207427027) + +[fips3401913720] +centroid = (0.70924613200735687, -1.3075169870565186) +description = Clinton town, NJ +station = ('ksmq', 0.0033109755315498929) +zone = ('njz009', 0.0012155334071558921) + +[fips3401913750] +centroid = (0.70912898550796299, -1.3066791766556838) +description = Clinton township, NJ +station = ('ksmq', 0.0026668436420144389) +zone = ('njz009', 0.0012499157806398723) + +[fips3401917170] +centroid = (0.7058393540272192, -1.3082636738171067) +description = Delaware township, NJ +station = ('kdyl', 0.0028322242991585958) +zone = ('njz009', 0.0022741643399622831) + +[fips3401918820] +centroid = (0.70572376087085953, -1.3059082298184927) +description = East Amwell township, NJ +station = ('kttn', 0.0026483130494818702) +zone = ('njz009', 0.0025938213644267089) + +[fips3401923700] +centroid = (0.70700933549129352, -1.3065554502650099) +description = Flemington borough, NJ +station = ('ksmq', 0.00318323724277773) +zone = ('njz009', 0.001234253727693316) + +[fips3401924870] +centroid = (0.70806320020023272, -1.3077966237092733) +description = Franklin township, NJ +station = ('ksmq', 0.0036034836466065953) +zone = ('njz009', 0.00025296721381842699) + +[fips3401925350] +centroid = (0.70740320394359113, -1.3098934797259116) +description = Frenchtown borough, NJ +station = ('kdyl', 0.0035610183322359965) +zone = ('njz009', 0.0019482879351828816) + +[fips3401926550] +centroid = (0.7103551665739517, -1.3079428124874202) +description = Glen Gardner borough, NJ +station = ('ksmq', 0.0038977370840418504) +zone = ('njz009', 0.0023519265466690202) + +[fips3401929460] +centroid = (0.71042841804265777, -1.3085007593426976) +description = Hampton borough, NJ +station = ('ksmq', 0.0043184401338935766) +zone = ('njz009', 0.0025224744771975547) + +[fips3401931320] +centroid = (0.70981826838945317, -1.3070866412228543) +description = High Bridge borough, NJ +station = ('ksmq', 0.0031054671432187886) +zone = ('njz009', 0.0018101457369183377) + +[fips3401932460] +centroid = (0.70856945040306618, -1.3111640270614859) +description = Holland township, NJ +station = ('kukt', 0.0044464000395612793) +zone = ('paz062', 0.0036497469412105341) + +[fips3401937065] +centroid = (0.70676591442051784, -1.3093365975214779) +description = Kingwood township, NJ +station = ('kdyl', 0.0030985381583580425) +zone = ('njz009', 0.0019030880539843648) + +[fips3401938610] +centroid = (0.70456433864875967, -1.3080029565334439) +description = Lambertville city, NJ +station = ('kttn', 0.0022451448112302055) +zone = ('paz069', 0.0022452945244995745) + +[fips3401939630] +centroid = (0.70933430604116776, -1.3060876845721829) +description = Lebanon borough, NJ +station = ('ksmq', 0.0022507557805945323) +zone = ('njz009', 0.0016713953223071816) + +[fips3401939660] +centroid = (0.71080921397885799, -1.3071545868906345) +description = Lebanon township, NJ +station = ('ksmq', 0.0035717233159476562) +zone = ('njz007', 0.0026583089210915076) + +[fips3401946260] +centroid = (0.70814715053725363, -1.3105587119703093) +description = Milford borough, NJ +station = ('kdyl', 0.0042131815611229787) +zone = ('njz009', 0.0023518851577290141) + +[fips3401960] +centroid = (0.70202176044774689, -1.291722228564868) +description = Asbury Park city, NJ +station = ('kblm', 0.001780236932344707) +zone = ('njz014', 0.00062764515658692683) + +[fips3401961920] +centroid = (0.70768043204197784, -1.307180417763564) +description = Raritan township, NJ +station = ('ksmq', 0.003272419737721589) +zone = ('njz009', 0.00041257181879322732) + +[fips3401962250] +centroid = (0.70828255318062339, -1.3051197075157341) +description = Readington township, NJ +station = ('ksmq', 0.0015954604550737026) +zone = ('njz010', 0.0021643829421339718) + +[fips3401970980] +centroid = (0.70520780663738492, -1.3085462251697122) +description = Stockton borough, NJ +station = ('kdyl', 0.0022745364598734468) +zone = ('paz069', 0.0021287848779062272) + +[fips3401972510] +centroid = (0.71018951737464497, -1.3050183736993637) +description = Tewksbury township, NJ +station = ('ksmq', 0.001903638557764678) +zone = ('njz009', 0.0028477700080545517) + +[fips3401974420] +centroid = (0.70916593412822782, -1.3083854628923111) +description = Union township, NJ +station = ('ksmq', 0.0039608446957433352) +zone = ('njz009', 0.0013321705756567245) + +[fips3401978230] +centroid = (0.70474738878070875, -1.3070375451109959) +description = West Amwell township, NJ +station = ('kttn', 0.0019196214900778854) +zone = ('njz015', 0.0029887307397562578) + +[fips3401990] +centroid = (0.69597147187595332, -1.3091411904584245) +description = Ashland CDP, NJ +station = ('kvay', 0.0025453419261812155) +zone = ('njz018', 0.0014205872599465281) + +[fips3402080] +centroid = (0.68726348318568553, -1.299416512572285) +description = Atlantic City city, NJ +station = ('kacy', 0.0023690344339997432) +zone = ('njz025', 0.00028687107369788841) + +[fips34021] +centroid = (0.70306230829449334, -1.3038259473011082) +description = Mercer County, NJ +station = ('kttn', 0.0015038379038535687) +zone = ('njz015', 3.2715837909536143e-05) + +[fips3402110] +centroid = (0.70531846051196145, -1.2918898499862295) +description = Atlantic Highlands borough, NJ +station = ('kblm', 0.0042636451778639622) +zone = ('njz014', 0.0027269855479703821) + +[fips3402119780] +centroid = (0.70265112617601599, -1.3008426385573819) +description = East Windsor township, NJ +station = ('kttn', 0.0038041660679757768) +zone = ('njz015', 0.0022864933913803909) + +[fips3402122185] +centroid = (0.70271706471515627, -1.3054767320675222) +description = Ewing township, NJ +station = ('kttn', 0.00043495097232598305) +zone = ('njz015', 0.0013382155665632655) + +[fips3402129310] +centroid = (0.70174523048106086, -1.3033146880033217) +description = Hamilton township, NJ +station = ('kttn', 0.0023159257286029709) +zone = ('njz015', 0.0013789737436661401) + +[fips3402131620] +centroid = (0.70281715934775824, -1.30072065749596) +description = Hightstown borough, NJ +station = ('kttn', 0.0038817666559714946) +zone = ('njz015', 0.0023538359894469899) + +[fips3402133150] +centroid = (0.70492118866762243, -1.3048755359533803) +description = Hopewell borough, NJ +station = ('kttn', 0.0019736532873393386) +zone = ('njz015', 0.0020229258381296664) + +[fips3402133180] +centroid = (0.70435137357343136, -1.3057157549085829) +description = Hopewell township, NJ +station = ('kttn', 0.0012760838645242611) +zone = ('njz015', 0.0019463546512783882) + +[fips3402139510] +centroid = (0.7032959031615803, -1.3041116402463675) +description = Lawrence township, NJ +station = ('kttn', 0.0013042324269485121) +zone = ('njz015', 0.00033095750314300788) + +[fips3402157600] +centroid = (0.70380267696318932, -1.3053104545496848) +description = Pennington borough, NJ +station = ('kttn', 0.00081527328895150371) +zone = ('njz015', 0.001370158517556249) + +[fips3402160900] +centroid = (0.70424839914756376, -1.3030518414179713) +description = Princeton borough, NJ +station = ('kttn', 0.0023988201998878665) +zone = ('njz015', 0.0012993562735003636) + +[fips3402160915] +centroid = (0.70436453335599136, -1.3032402322574317) +description = Princeton township, NJ +station = ('kttn', 0.0023364171800631345) +zone = ('njz015', 0.0013541142197791825) + +[fips3402163850] +centroid = (0.70205385705269097, -1.3019113385649632) +description = Robbinsville township, NJ +station = ('kttn', 0.0031370813670962487) +zone = ('njz015', 0.0017591606884195163) + +[fips3402174000] +centroid = (0.70203684009248413, -1.304877979414333) +description = Trenton city, NJ +station = ('kttn', 0.0012544501771139468) +zone = ('njz015', 0.0013316941583764218) + +[fips3402180240] +centroid = (0.70319757131152294, -1.3024986069516742) +description = West Windsor township, NJ +station = ('kttn', 0.0025190964796232848) +zone = ('njz015', 0.00099037185389796284) + +[fips3402200] +centroid = (0.69621407264198054, -1.3102602606682183) +description = Audubon borough, NJ +station = ('kphl', 0.0021942778427217233) +zone = ('njz018', 0.002131198626154756) + +[fips3402230] +centroid = (0.69633116678149687, -1.3105471229840759) +description = Audubon Park borough, NJ +station = ('kphl', 0.0020058489298855247) +zone = ('paz071', 0.0020246886014737503) + +[fips34023] +centroid = (0.7058040460164513, -1.2986573467075448) +description = Middlesex County, NJ +station = ('ksmq', 0.0046221334160493691) +zone = ('njz012', 4.9463218922380404e-05) + +[fips3402310750] +centroid = (0.7083207584379495, -1.2955135374858051) +description = Carteret borough, NJ +station = ('kewr', 0.0019148746275658793) +zone = ('njz108', 0.0011531718037603937) + +[fips3402315550] +centroid = (0.703602400431523, -1.3006232681236989) +description = Cranbury township, NJ +station = ('kttn', 0.0039809121698174393) +zone = ('njz015', 0.0024697385925835803) + +[fips3402318490] +centroid = (0.70843317509507053, -1.2996698122066268) +description = Dunellen borough, NJ +station = ('ksmq', 0.0027040738272443689) +zone = ('njz107', 0.0019523380515529211) + +[fips3402319000] +centroid = (0.70557111437448006, -1.2988433813525151) +description = East Brunswick township, NJ +station = ('ksmq', 0.0046806296989892011) +zone = ('njz012', 0.00024740519065443242) + +[fips3402320] +centroid = (0.68225848975620407, -1.3043864248838015) +description = Avalon borough, NJ +station = ('kwwd', 0.0027692562499475053) +zone = ('njz024', 0.00049391822365841339) + +[fips3402320230] +centroid = (0.70692800314815052, -1.2976420188684898) +description = Edison township, NJ +station = ('kewr', 0.0039576867704539023) +zone = ('njz012', 0.0013950171988389376) + +[fips3402330840] +centroid = (0.70472948170258343, -1.2989275411290464) +description = Helmetta borough, NJ +station = ('kblm', 0.0051408846691600382) +zone = ('njz012', 0.0010825482699416814) + +[fips3402331470] +centroid = (0.70687222242525671, -1.2990121023313053) +description = Highland Park borough, NJ +station = ('ksmq', 0.0037566895726379229) +zone = ('njz012', 0.0010940072604667588) + +[fips3402334890] +centroid = (0.70422776935580511, -1.2992301637680495) +description = Jamesburg borough, NJ +station = ('kttn', 0.0051378120084961806) +zone = ('njz012', 0.0016197882782465634) + +[fips3402345690] +centroid = (0.70759915205871249, -1.2978751250433862) +description = Metuchen borough, NJ +station = ('kewr', 0.0035772931777401742) +zone = ('njz012', 0.0019103665056043203) + +[fips3402345900] +centroid = (0.70816083391858931, -1.3002399065534984) +description = Middlesex borough, NJ +station = ('ksmq', 0.0023493618501026709) +zone = ('njz010', 0.0015765526135203304) + +[fips3402346620] +centroid = (0.70598985376861867, -1.29913209371738) +description = Milltown borough, NJ +station = ('ksmq', 0.0042306517195780562) +zone = ('njz012', 0.00036483169588426187) + +[fips3402347280] +centroid = (0.70370757397224815, -1.2990276532149407) +description = Monroe township, NJ +station = ('kblm', 0.0045974565487014417) +zone = ('njz012', 0.0021059985742498404) + +[fips3402350] +centroid = (0.70833025302908037, -1.296284414509826) +description = Avenel CDP, NJ +station = ('kewr', 0.0022176909906728493) +zone = ('njz108', 0.0012371151543718998) + +[fips3402351210] +centroid = (0.70662583429475279, -1.2993001340177619) +description = New Brunswick city, NJ +station = ('ksmq', 0.0037194254265709493) +zone = ('njz012', 0.0009350053680730713) + +[fips3402352560] +centroid = (0.70599243685591151, -1.2999117148409534) +description = North Brunswick township, NJ +station = ('ksmq', 0.0038196041015666517) +zone = ('njz012', 0.00092535459823969799) + +[fips3402354705] +centroid = (0.70519386145666152, -1.2969286329900296) +description = Old Bridge township, NJ +station = ('kblm', 0.0045119755544259102) +zone = ('njz012', 0.0014941807633775824) + +[fips3402358200] +centroid = (0.70721020543490543, -1.2962792657885327) +description = Perth Amboy city, NJ +station = ('kewr', 0.0031676862700209031) +zone = ('nyz074', 0.0018573042914755505) + +[fips3402359010] +centroid = (0.70765491532831371, -1.2995864203749667) +description = Piscataway township, NJ +station = ('ksmq', 0.0029970357630404831) +zone = ('njz012', 0.0019672735144614165) + +[fips3402359280] +centroid = (0.70403529444589519, -1.3016998570194991) +description = Plainsboro township, NJ +station = ('kttn', 0.0032681064362444158) +zone = ('njz015', 0.0018582669538562255) + +[fips3402365790] +centroid = (0.70628861922997499, -1.2971173728953402) +description = Sayreville borough, NJ +station = ('kewr', 0.0042785538765505275) +zone = ('njz012', 0.0013150327074137153) + +[fips3402368550] +centroid = (0.70662654987974616, -1.2964133943415483) +description = South Amboy city, NJ +station = ('kewr', 0.0037407557000225865) +zone = ('njz012', 0.0019410448663189079) + +[fips3402368790] +centroid = (0.70485160239034539, -1.3006706014530129) +description = South Brunswick township, NJ +station = ('kttn', 0.0042920291704856266) +zone = ('njz012', 0.0017611321624133921) + +[fips3402369390] +centroid = (0.70815709891399004, -1.2987832722130763) +description = South Plainfield borough, NJ +station = ('kmmu', 0.0039373134029631589) +zone = ('njz107', 0.0017767893826902137) + +[fips3402369420] +centroid = (0.70590979551582966, -1.2981490021096092) +description = South River borough, NJ +station = ('kewr', 0.0050093964326133177) +zone = ('njz012', 0.00044966580456564336) + +[fips3402369810] +centroid = (0.70503774175507061, -1.298351983901616) +description = Spotswood borough, NJ +station = ('kblm', 0.0050418893314734189) +zone = ('njz012', 0.00081333268053942662) + +[fips3402382000] +centroid = (0.70791865203158255, -1.2966509511060373) +description = Woodbridge township, NJ +station = ('kewr', 0.0027132446019819479) +zone = ('njz108', 0.0017273507158029095) + +[fips3402440] +centroid = (0.70147257514531425, -1.2918072784593178) +description = Avon-by-the-Sea borough, NJ +station = ('kblm', 0.0015826689790873893) +zone = ('njz014', 0.0011382140408286025) + +[fips34025] +centroid = (0.70314177313533666, -1.294204331107299) +description = Monmouth County, NJ +station = ('kblm', 0.0018281252906660896) +zone = ('njz014', 0.0017262797247440773) + +[fips3402500000] +centroid = (0.70407168456079927, -1.290808880314007) +description = County subdivisions not defined, NJ +station = ('kblm', 0.0036011168299036477) +zone = ('njz014', 0.0017579609545525798) + +[fips3402500070] +centroid = (0.70564829283400332, -1.2954452951120521) +description = Aberdeen township, NJ +station = ('kewr', 0.0044738644591038887) +zone = ('nyz074', 0.0027607567511909845) + +[fips3402500730] +centroid = (0.70224971790134982, -1.2915858310838244) +description = Allenhurst borough, NJ +station = ('kblm', 0.0019718216301086097) +zone = ('njz014', 0.00049905049022497836) + +[fips3402500760] +centroid = (0.70124817816338547, -1.30184274712536) +description = Allentown borough, NJ +station = ('kwri', 0.0028286819456670637) +zone = ('njz015', 0.0023548411943841983) + +[fips3402501960] +centroid = (0.70202176044774689, -1.291722228564868) +description = Asbury Park city, NJ +station = ('kblm', 0.001780236932344707) +zone = ('njz014', 0.00062764515658692683) + +[fips3402502110] +centroid = (0.70531846051196145, -1.2918898499862295) +description = Atlantic Highlands borough, NJ +station = ('kblm', 0.0042636451778639622) +zone = ('njz014', 0.0027269855479703821) + +[fips3402502440] +centroid = (0.70147257514531425, -1.2918072784593178) +description = Avon-by-the-Sea borough, NJ +station = ('kblm', 0.0015826689790873893) +zone = ('njz014', 0.0011382140408286025) + +[fips3402504930] +centroid = (0.70126741169174234, -1.2919702049449913) +description = Belmar borough, NJ +station = ('kblm', 0.0014534387421976656) +zone = ('njz014', 0.0013288082698394536) + +[fips3402506970] +centroid = (0.70165035438292256, -1.2917540808237169) +description = Bradley Beach borough, NJ +station = ('kblm', 0.0016480298163654859) +zone = ('njz014', 0.00097234212276224195) + +[fips3402507750] +centroid = (0.69996537861646202, -1.2926389278478929) +description = Brielle borough, NJ +station = ('kblm', 0.0016591827307826366) +zone = ('njz014', 0.0026662634209025041) + +[fips3402514560] +centroid = (0.70326181688128886, -1.2944810181536179) +description = Colts Neck township, NJ +station = ('kblm', 0.0019857627521744944) +zone = ('njz013', 0.0013769338285705146) + +[fips3402516660] +centroid = (0.70248980539325423, -1.2914992802062182) +description = Deal borough, NJ +station = ('kblm', 0.0021496560550657395) +zone = ('njz014', 0.00043946665922439497) + +[fips3402519840] +centroid = (0.7032212030695949, -1.2924923550973104) +description = Eatontown borough, NJ +station = ('kblm', 0.0021629327949386355) +zone = ('njz014', 0.00070873805773754076) + +[fips3402521570] +centroid = (0.70330035375117295, -1.2978195712132952) +description = Englishtown borough, NJ +station = ('kblm', 0.0036003656976130584) +zone = ('njz013', 0.001454633003808201) + +[fips3402522440] +centroid = (0.7044487454924, -1.2922203978932647) +description = Fair Haven borough, NJ +station = ('kblm', 0.0033619839686447849) +zone = ('njz014', 0.0018583423360204138) + +[fips3402522950] +centroid = (0.70164663683161577, -1.2944729896390585) +description = Farmingdale borough, NJ +station = ('kblm', 0.00055764216382659369) +zone = ('njz013', 0.0016082089588095017) + +[fips3402525200] +centroid = (0.70267337912397898, -1.296358730629376) +description = Freehold borough, NJ +station = ('kblm', 0.0023258473035705548) +zone = ('njz013', 0.00019321422375949437) + +[fips3402525230] +centroid = (0.70204790547994167, -1.2967630710571856) +description = Freehold township, NJ +station = ('kblm', 0.0023222893535319537) +zone = ('njz013', 0.00079336442678835906) + +[fips3402530690] +centroid = (0.70556029333311765, -1.2944878423909931) +description = Hazlet township, NJ +station = ('kblm', 0.0042549270963721294) +zone = ('nyz074', 0.0027033100541208302) + +[fips3402531500] +centroid = (0.70518667070014329, -1.2913808770697628) +description = Highlands borough, NJ +station = ('kblm', 0.0042975830696538831) +zone = ('njz014', 0.0026431364254849844) + +[fips3402532640] +centroid = (0.7046760571741798, -1.2945778839271036) +description = Holmdel township, NJ +station = ('kblm', 0.0033878144533325554) +zone = ('njz013', 0.0023262768319612659) + +[fips3402533300] +centroid = (0.70130909015428, -1.295008474106863) +description = Howell township, NJ +station = ('kblm', 0.00086949738006523861) +zone = ('njz013', 0.0015918961734756275) + +[fips3402534200] +centroid = (0.70222123412795734, -1.2918218345052792) +description = Interlaken borough, NJ +station = ('kblm', 0.0018000346102144669) +zone = ('njz014', 0.00041469335929212182) + +[fips3402536480] +centroid = (0.70595564531527943, -1.2940887379509394) +description = Keansburg borough, NJ +station = ('kewr', 0.0041117696525898671) +zone = ('nyz074', 0.0023061826206875777) + +[fips3402536810] +centroid = (0.70567351284169455, -1.2950609910640554) +description = Keyport borough, NJ +station = ('kewr', 0.0044089067323834635) +zone = ('nyz074', 0.002655176816628932) + +[fips3402537560] +centroid = (0.70109895251233989, -1.2919775527811421) +description = Lake Como borough, NJ +station = ('kblm', 0.0014650842540987112) +zone = ('njz014', 0.0014968327253305075) + +[fips3402540770] +centroid = (0.70401262261891173, -1.2921463959329802) +description = Little Silver borough, NJ +station = ('kblm', 0.0029866586190028222) +zone = ('njz014', 0.0014196979509344964) + +[fips3402541010] +centroid = (0.70218603083694453, -1.2915438035554367) +description = Loch Arbour village, NJ +station = ('kblm', 0.0019718996792859891) +zone = ('njz014', 0.00056675361482711698) + +[fips3402541310] +centroid = (0.70328691471593252, -1.2913673507680599) +description = Long Branch city, NJ +station = ('kblm', 0.0027341527618172899) +zone = ('njz014', 0.00087034281621150341) + +[fips3402542990] +centroid = (0.70305969030061533, -1.297592346797978) +description = Manalapan township, NJ +station = ('kblm', 0.0033254972212579973) +zone = ('njz013', 0.001201639794339868) + +[fips3402543050] +centroid = (0.70010448135784598, -1.2921874286236945) +description = Manasquan borough, NJ +station = ('kblm', 0.0017779467182236716) +zone = ('njz014', 0.002491973149050467) + +[fips3402544070] +centroid = (0.70411697585488853, -1.2960325809520559) +description = Marlboro township, NJ +station = ('kblm', 0.0032373448187085355) +zone = ('njz013', 0.0014554759266666899) + +[fips3402544520] +centroid = (0.70530933243997351, -1.2956864647080926) +description = Matawan borough, NJ +station = ('kblm', 0.0042120256472475102) +zone = ('njz013', 0.002666001186267418) + +[fips3402545990] +centroid = (0.70524053156085986, -1.2927849420931148) +description = Middletown township, NJ +station = ('kblm', 0.0039958249471624364) +zone = ('njz014', 0.0027033486317506452) + +[fips3402546560] +centroid = (0.70183127521318422, -1.2990876750879168) +description = Millstone township, NJ +station = ('knel', 0.0034784778644605025) +zone = ('njz013', 0.0024232856097884028) + +[fips3402547130] +centroid = (0.70399417448871815, -1.2912924586898569) +description = Monmouth Beach borough, NJ +station = ('kblm', 0.0033107800658452187) +zone = ('njz014', 0.0015167257671967619) + +[fips3402549890] +centroid = (0.70183944335408355, -1.2924864209778537) +description = Neptune township, NJ +station = ('kblm', 0.0011730674870289628) +zone = ('njz014', 0.00082269843649500503) + +[fips3402549920] +centroid = (0.70162604194644229, -1.2921304261703244) +description = Neptune City borough, NJ +station = ('kblm', 0.0013616596391482047) +zone = ('njz014', 0.00097002057826745252) + +[fips3402554270] +centroid = (0.70257202785431572, -1.2921010522790133) +description = Ocean township, NJ +station = ('kblm', 0.0018344012813489182) +zone = ('njz014', 3.9484646938802832e-05) + +[fips3402554570] +centroid = (0.70364715067354411, -1.2919010724533198) +description = Oceanport borough, NJ +station = ('kblm', 0.002760864326091181) +zone = ('njz014', 0.0010594726451197405) + +[fips3402562430] +centroid = (0.70421761153955853, -1.2927038017361896) +description = Red Bank borough, NJ +station = ('kblm', 0.0030203799105366805) +zone = ('njz014', 0.0016960686865814618) + +[fips3402564410] +centroid = (0.70198437549516912, -1.2997493992205178) +description = Roosevelt borough, NJ +station = ('knel', 0.0038593211751279254) +zone = ('njz015', 0.0032693415315906502) + +[fips3402565130] +centroid = (0.70445330080174773, -1.2916252929782122) +description = Rumson borough, NJ +station = ('kblm', 0.0035610352607228016) +zone = ('njz014', 0.0018879226361942531) + +[fips3402566240] +centroid = (0.70439615872203754, -1.2910958473496197) +description = Sea Bright borough, NJ +station = ('kblm', 0.0037249143094501354) +zone = ('njz014', 0.0019454760937225497) + +[fips3402566330] +centroid = (0.70040933801829186, -1.2921343182545564) +description = Sea Girt borough, NJ +station = ('kblm', 0.0016160402854239031) +zone = ('njz014', 0.002185936659691605) + +[fips3402567350] +centroid = (0.7038225911699546, -1.2925850320805914) +description = Shrewsbury borough, NJ +station = ('kblm', 0.0026774054743190414) +zone = ('njz014', 0.0012920832089347914) + +[fips3402567365] +centroid = (0.70360213863213528, -1.2927948032033885) +description = Shrewsbury township, NJ +station = ('kblm', 0.0024146077170464743) +zone = ('njz014', 0.001153599717141003) + +[fips3402570110] +centroid = (0.70079769123015312, -1.2920178698868632) +description = Spring Lake borough, NJ +station = ('kblm', 0.0015131648257648226) +zone = ('njz014', 0.0017970846458819237) + +[fips3402570140] +centroid = (0.70074257373237514, -1.2923461663191633) +description = Spring Lake Heights borough, NJ +station = ('kblm', 0.001305426233957211) +zone = ('njz014', 0.0018649197082940758) + +[fips3402573020] +centroid = (0.7027862844732905, -1.2932670892989784) +description = Tinton Falls borough, NJ +station = ('kblm', 0.0015260784427853162) +zone = ('njz014', 0.00094199586125973957) + +[fips3402574540] +centroid = (0.70591325126774851, -1.2945268679530675) +description = Union Beach borough, NJ +station = ('kewr', 0.0041452507914142341) +zone = ('nyz074', 0.002353537439425314) + +[fips3402574900] +centroid = (0.70081355627305375, -1.3007508865986046) +description = Upper Freehold township, NJ +station = ('kwri', 0.0025793485147072802) +zone = ('njz015', 0.0032395667543164727) + +[fips3402576460] +centroid = (0.70105163663631831, -1.2932207159007527) +description = Wall township, NJ +station = ('kblm', 0.00057008260292601377) +zone = ('njz014', 0.0017799331511946822) + +[fips3402579310] +centroid = (0.70315657352739358, -1.2918930439387606) +description = West Long Branch borough, NJ +station = ('kblm', 0.0023686298823827521) +zone = ('njz014', 0.00057607144504375808) + +[fips34027] +centroid = (0.71311676614279729, -1.3010980500401188) +description = Morris County, NJ +station = ('kmmu', 0.0020068324231122753) +zone = ('njz008', 7.2560096301807589e-05) + +[fips3402706610] +centroid = (0.71390630073652195, -1.2986361235038406) +description = Boonton town, NJ +station = ('kmmu', 0.0018170586253718379) +zone = ('njz008', 0.0019627609335209615) + +[fips3402706640] +centroid = (0.71438532380302422, -1.2989600391597182) +description = Boonton township, NJ +station = ('kmmu', 0.0022935824635547455) +zone = ('njz008', 0.0019863672997504863) + +[fips3402709040] +centroid = (0.71555111647689384, -1.2976306218684743) +description = Butler borough, NJ +station = ('kcdw', 0.0021802238709685397) +zone = ('njz002', 0.0016644960654415902) + +[fips3402712100] +centroid = (0.71105911022115853, -1.2982540883838716) +description = Chatham borough, NJ +station = ('kmmu', 0.0011192366991127835) +zone = ('njz107', 0.0013400176179795239) + +[fips3402712130] +centroid = (0.7106501621241238, -1.2992019592473372) +description = Chatham township, NJ +station = ('kmmu', 0.0014734889452798635) +zone = ('njz107', 0.0013883391276095743) + +[fips3402712580] +centroid = (0.71192915685327773, -1.3035850744110407) +description = Chester borough, NJ +station = ('ksmq', 0.0030501533915469228) +zone = ('njz008', 0.0022909986617808669) + +[fips3402712610] +centroid = (0.711680901220474, -1.3035453158106802) +description = Chester township, NJ +station = ('ksmq', 0.0028001309051512808) +zone = ('njz008', 0.0024117569422029196) + +[fips3402717650] +centroid = (0.71363858468255847, -1.3000674331168163) +description = Denville township, NJ +station = ('kmmu', 0.0018113957941704004) +zone = ('njz008', 0.0008720914783459905) + +[fips3402718070] +centroid = (0.7135883366533935, -1.301302881881133) +description = Dover town, NJ +station = ('kmmu', 0.0024024803567783012) +zone = ('njz008', 0.00045351088896886723) + +[fips3402719210] +centroid = (0.712418145749809, -1.2978921420035932) +description = East Hanover township, NJ +station = ('kmmu', 0.0007704923973607358) +zone = ('njz105', 0.0011798370337930025) + +[fips3402723910] +centroid = (0.7116725236400645, -1.2984212560196278) +description = Florham Park borough, NJ +station = ('kmmu', 0.00051689747823828805) +zone = ('njz105', 0.0016237102805867097) + +[fips3402729550] +centroid = (0.71244252799945929, -1.2990134113282443) +description = Hanover township, NJ +station = ('kmmu', 0.00037894257212076732) +zone = ('njz105', 0.0020192144230097749) + +[fips3402729700] +centroid = (0.71100917635125904, -1.3001888731261699) +description = Harding township, NJ +station = ('kmmu', 0.0015029541535414709) +zone = ('njz107', 0.0022027619590476023) + +[fips3402734980] +centroid = (0.71563162851528839, -1.3013088858137598) +description = Jefferson township, NJ +station = ('k12n', 0.0023023261974635754) +zone = ('njz008', 0.0024614109781415736) + +[fips3402737110] +centroid = (0.7153023023387296, -1.2982699359734799) +description = Kinnelon borough, NJ +station = ('kcdw', 0.0022103364600778801) +zone = ('njz002', 0.0019632689077519407) + +[fips3402740290] +centroid = (0.714254197216322, -1.296853548925609) +description = Lincoln Park borough, NJ +station = ('kcdw', 0.00075739179481856302) +zone = ('njz004', 0.0013801522973287837) + +[fips3402741362] +centroid = (0.71008418675428697, -1.3001318706727998) +description = Long Hill township, NJ +station = ('kmmu', 0.0022438515671091962) +zone = ('njz107', 0.0018042300479137697) + +[fips3402742510] +centroid = (0.71136206447271966, -1.2988357542636837) +description = Madison borough, NJ +station = ('kmmu', 0.00073242541231981629) +zone = ('njz107', 0.0017819456665850563) + +[fips3402745330] +centroid = (0.71156618072874045, -1.3019949049295487) +description = Mendham borough, NJ +station = ('kmmu', 0.0024643375078493034) +zone = ('njz008', 0.0017644371099684404) + +[fips3402745360] +centroid = (0.71205696731440127, -1.3013905497694607) +description = Mendham township, NJ +station = ('kmmu', 0.0019494230886067099) +zone = ('njz008', 0.0011509624127580035) + +[fips3402746860] +centroid = (0.71345874595643299, -1.3020292355559353) +description = Mine Hill township, NJ +station = ('kmmu', 0.002787790480033889) +zone = ('njz008', 0.00079400833774347069) + +[fips3402747670] +centroid = (0.71407048385925698, -1.297737191672601) +description = Montville township, NJ +station = ('kcdw', 0.0010782790152533226) +zone = ('njz105', 0.0021768695872316961) + +[fips3402748090] +centroid = (0.71202680802492679, -1.3001621346820293) +description = Morris township, NJ +station = ('kmmu', 0.0010213938569671606) +zone = ('njz008', 0.0013318862888647329) + +[fips3402748210] +centroid = (0.71281225854820174, -1.2997969070827571) +description = Morris Plains borough, NJ +station = ('kmmu', 0.0010327669986535601) +zone = ('njz008', 0.0010138875588438197) + +[fips3402748300] +centroid = (0.71203433039400288, -1.2998744171548382) +description = Morristown town, NJ +station = ('kmmu', 0.00080359295793906303) +zone = ('njz008', 0.0014476051812264885) + +[fips3402748480] +centroid = (0.71368911196440377, -1.2992425381524462) +description = Mountain Lakes borough, NJ +station = ('kmmu', 0.0016271137510011603) +zone = ('njz008', 0.001456890008286617) + +[fips3402748690] +centroid = (0.71420358266801409, -1.3027282050147742) +description = Mount Arlington borough, NJ +station = ('k12n', 0.0020694736940463539) +zone = ('njz008', 0.0016330089040724389) + +[fips3402749080] +centroid = (0.71324218550284557, -1.304511948963605) +description = Mount Olive township, NJ +station = ('k12n', 0.0026367962374369753) +zone = ('njz007', 0.0033555419904924325) + +[fips3402750130] +centroid = (0.71380217439334792, -1.3037906916502182) +description = Netcong borough, NJ +station = ('k12n', 0.0021151983603260841) +zone = ('njz008', 0.0021662973329806732) + +[fips3402756460] +centroid = (0.7131351793664058, -1.2989324629575369) +description = Parsippany-Troy Hills township, NJ +station = ('kmmu', 0.0010445777638925027) +zone = ('njz008', 0.0015997763238392354) + +[fips3402758110] +centroid = (0.71493346190790563, -1.2968704786193532) +description = Pequannock township, NJ +station = ('kcdw', 0.001414407765180561) +zone = ('njz004', 0.0015957122365876947) + +[fips3402761890] +centroid = (0.71282198003213537, -1.3016374091388625) +description = Randolph township, NJ +station = ('kmmu', 0.0022558125814118491) +zone = ('njz008', 0.00057126677421666361) + +[fips3402763300] +centroid = (0.71550636623487274, -1.2970527433531389) +description = Riverdale borough, NJ +station = ('kcdw', 0.0020034156881922958) +zone = ('njz002', 0.0017737917095790761) + +[fips3402764050] +centroid = (0.71376611589100181, -1.3005745210776907) +description = Rockaway borough, NJ +station = ('kmmu', 0.0021365071814197618) +zone = ('njz008', 0.00068794156913407881) + +[fips3402764080] +centroid = (0.71486490537488734, -1.3002675700221424) +description = Rockaway township, NJ +station = ('kmmu', 0.0029800749880942124) +zone = ('njz008', 0.0017866075285586211) + +[fips3402764980] +centroid = (0.71363553035636751, -1.3029034535249668) +description = Roxbury township, NJ +station = ('k12n', 0.0024901359153436217) +zone = ('njz008', 0.0014763829738964108) + +[fips3402775890] +centroid = (0.71342331577261753, -1.3010295458669781) +description = Victory Gardens borough, NJ +station = ('kmmu', 0.0021380185985362694) +zone = ('njz008', 0.00024548512749995524) + +[fips3402777240] +centroid = (0.71182614752082496, -1.3054672898362689) +description = Washington township, NJ +station = ('ksmq', 0.0034063604816254255) +zone = ('njz007', 0.0029218960900234308) + +[fips3402780390] +centroid = (0.71378564612533146, -1.3015669327436672) +description = Wharton borough, NJ +station = ('kmmu', 0.0026816471264724823) +zone = ('njz008', 0.00072358159070480099) + +[fips3402880] +centroid = (0.69640806598833982, -1.3090114077752462) +description = Barclay CDP, NJ +station = ('kvay', 0.0023110221593742575) +zone = ('njz018', 0.0017869324672262663) + +[fips34029] +centroid = (0.69579034160618147, -1.2961343336474469) +description = Ocean County, NJ +station = ('knel', 0.0030099504226627364) +zone = ('njz020', 0.001121490471471252) + +[fips3402900000] +centroid = (0.69716356666165058, -1.2925150269242938) +description = County subdivisions not defined, NJ +station = ('knel', 0.0038189323603189784) +zone = ('njz026', 0.0030825930250906906) + +[fips3402903050] +centroid = (0.69409152537875274, -1.2963761141087258) +description = Barnegat township, NJ +station = ('knel', 0.004652550527280616) +zone = ('njz026', 0.0015465879616443458) + +[fips3402903130] +centroid = (0.69380340642583349, -1.293479094443218) +description = Barnegat Light borough, NJ +station = ('knel', 0.0056304171240892558) +zone = ('njz026', 0.00096843965363441621) + +[fips3402903520] +centroid = (0.69935892906127162, -1.2923842319501495) +description = Bay Head borough, NJ +station = ('kblm', 0.0022765833709430692) +zone = ('njz014', 0.0032451390149655316) + +[fips3402903940] +centroid = (0.69073204582134395, -1.2959382284526928) +description = Beach Haven borough, NJ +station = ('kacy', 0.004854628459387441) +zone = ('njz026', 0.0038967420165461732) + +[fips3402904180] +centroid = (0.69688213231976648, -1.2950725102371188) +description = Beachwood borough, NJ +station = ('knel', 0.0023869996011521817) +zone = ('njz020', 0.001450820772055942) + +[fips3402905305] +centroid = (0.69661502713104118, -1.2948675387697643) +description = Berkeley township, NJ +station = ('knel', 0.0026932620927885191) +zone = ('njz020', 0.001602497761703963) + +[fips3402907420] +centroid = (0.69920919726474307, -1.2934568764018401) +description = Brick township, NJ +station = ('kblm', 0.0021457409249596156) +zone = ('njz014', 0.0035499950196289961) + +[fips3402918670] +centroid = (0.69183174287644056, -1.2966289075975848) +description = Eagleswood township, NJ +station = ('kacy', 0.0049485782278377057) +zone = ('njz026', 0.0031212589885041878) + +[fips3402930390] +centroid = (0.69288834775230546, -1.2940134793535936) +description = Harvey Cedars borough, NJ +station = ('knel', 0.0062799440894711258) +zone = ('njz026', 0.0015914310042313791) + +[fips3402934530] +centroid = (0.69711577954673098, -1.2940536742862672) +description = Island Heights borough, NJ +station = ('knel', 0.0028098902097180222) +zone = ('njz026', 0.0026813614886659382) + +[fips3402934680] +centroid = (0.69975620090561064, -1.2977601602055571) +description = Jackson township, NJ +station = ('knel', 0.0011686956450919236) +zone = ('njz020', 0.003098863995877779) + +[fips3402937380] +centroid = (0.69560364373609562, -1.2962063284790917) +description = Lacey township, NJ +station = ('knel', 0.0031796284853726157) +zone = ('njz020', 0.001254346635559269) + +[fips3402937770] +centroid = (0.698360670542301, -1.2971349134543229) +description = Lakehurst borough, NJ +station = ('knel', 0.00035623585538783272) +zone = ('njz020', 0.0016468910786134525) + +[fips3402938550] +centroid = (0.69947631990676085, -1.2950409895908277) +description = Lakewood township, NJ +station = ('knel', 0.0017306504526275566) +zone = ('njz020', 0.0031213638807658746) + +[fips3402939390] +centroid = (0.69759892159026804, -1.2927981891421372) +description = Lavallette borough, NJ +station = ('knel', 0.0034573089357439737) +zone = ('njz026', 0.0033863229447763281) + +[fips3402940560] +centroid = (0.69171248452865175, -1.2974070975511713) +description = Little Egg Harbor township, NJ +station = ('kacy', 0.0044080847961357151) +zone = ('njz026', 0.0035742962293045287) + +[fips3402941250] +centroid = (0.6911774538464529, -1.2954944959436658) +description = Long Beach township, NJ +station = ('kacy', 0.0053507508574951873) +zone = ('njz026', 0.0033747919407610318) + +[fips3402943140] +centroid = (0.69735534343985961, -1.2980984573744714) +description = Manchester township, NJ +station = ('knel', 0.0015699350554423961) +zone = ('njz020', 0.0010845060132594338) + +[fips3402943380] +centroid = (0.69912397283736805, -1.2924144785060865) +description = Mantoloking borough, NJ +station = ('kblm', 0.0024724815197009397) +zone = ('njz014', 0.0034811817589409564) + +[fips3402954300] +centroid = (0.69438395529492436, -1.2953423904993546) +description = Ocean township, NJ +station = ('knel', 0.0045279046662882894) +zone = ('njz026', 0.00071314788024608752) + +[fips3402954450] +centroid = (0.69683748679750046, -1.2938931039950834) +description = Ocean Gate borough, NJ +station = ('knel', 0.0030736693134681735) +zone = ('njz026', 0.0024222058840936357) + +[fips3402958590] +centroid = (0.69701570236742161, -1.294507041012765) +description = Pine Beach borough, NJ +station = ('knel', 0.0025962360795960819) +zone = ('njz020', 0.0018984686197658853) + +[fips3402959790] +centroid = (0.69892959551857348, -1.3000127694046439) +description = Plumsted township, NJ +station = ('kwri', 0.0016152093665397914) +zone = ('njz020', 0.0032221678364668127) + +[fips3402959880] +centroid = (0.699481329001714, -1.2927665637760914) +description = Point Pleasant borough, NJ +station = ('kblm', 0.0020336586325958046) +zone = ('njz014', 0.003159847558825988) + +[fips3402959910] +centroid = (0.69974728227313288, -1.2923320640588074) +description = Point Pleasant Beach borough, NJ +station = ('kblm', 0.0019731647065047344) +zone = ('njz014', 0.0028548868255098185) + +[fips3402966450] +centroid = (0.69717138573669946, -1.2929186692204027) +description = Seaside Heights borough, NJ +station = ('knel', 0.0035350888346757391) +zone = ('njz026', 0.0029556301691167773) + +[fips3402966480] +centroid = (0.69683432775155429, -1.2929181630749196) +description = Seaside Park borough, NJ +station = ('knel', 0.0036953126088436262) +zone = ('njz026', 0.0026486713640029203) + +[fips3402967110] +centroid = (0.69194196041870393, -1.2947376513668309) +description = Ship Bottom borough, NJ +station = ('kacy', 0.0062246643862078734) +zone = ('njz026', 0.0025191085079436797) + +[fips3402969510] +centroid = (0.69710932182849861, -1.2952041778758892) +description = South Toms River borough, NJ +station = ('knel', 0.0021489808987220963) +zone = ('njz020', 0.0013960618368746634) + +[fips3402970320] +centroid = (0.6929940099852212, -1.2961534275494639) +description = Stafford township, NJ +station = ('knel', 0.0057626160107968095) +zone = ('njz026', 0.0019741208691259789) + +[fips3402971640] +centroid = (0.69223397145585519, -1.2945012116130634) +description = Surf City borough, NJ +station = ('knel', 0.0067731129785346539) +zone = ('njz026', 0.0022160044545406384) + +[fips3402973125] +centroid = (0.69803246137646346, -1.2944446280387136) +description = Toms River township, NJ +station = ('knel', 0.0021233189607167322) +zone = ('njz020', 0.0023277663178928143) + +[fips3402974210] +centroid = (0.69101206644653401, -1.2973645115174226) +description = Tuckerton borough, NJ +station = ('kacy', 0.0040125753731437555) +zone = ('njz025', 0.0037840510880328263) + +[fips3403040] +centroid = (0.69383649786845136, -1.2954122385760194) +description = Barnegat CDP, NJ +station = ('knel', 0.0050402038387154461) +zone = ('njz026', 0.00097926005574835886) + +[fips34031] +centroid = (0.71617426883302593, -1.2967850098458831) +description = Passaic County, NJ +station = ('kcdw', 0.0026350085472322056) +zone = ('njz002', 0.0012419920152547637) + +[fips3403106340] +centroid = (0.71619856381621383, -1.2973657332478989) +description = Bloomingdale borough, NJ +station = ('kcdw', 0.0027312981997704606) +zone = ('njz002', 0.0010444559974910432) + +[fips3403113690] +centroid = (0.71317883005099814, -1.294343032422955) +description = Clifton city, NJ +station = ('kteb', 0.0014592455211317669) +zone = ('njz004', 0.0010994364476567652) + +[fips3403129070] +centroid = (0.71448524390270096, -1.294839997474168) +description = Haledon borough, NJ +station = ('kcdw', 0.0015586981197428841) +zone = ('njz004', 0.00036835146603318838) + +[fips3403130] +centroid = (0.69380340642583349, -1.293479094443218) +description = Barnegat Light borough, NJ +station = ('knel', 0.0056304171240892558) +zone = ('njz026', 0.00096843965363441621) + +[fips3403130570] +centroid = (0.71483375124773929, -1.2943110579910586) +description = Hawthorne borough, NJ +station = ('kteb', 0.0021292412705599703) +zone = ('njz004', 0.00087687804144409066) + +[fips3403140620] +centroid = (0.71342488656894432, -1.2953639278623241) +description = Little Falls township, NJ +station = ('kcdw', 0.00085943381810098685) +zone = ('njz004', 0.00076417185625678088) + +[fips3403153040] +centroid = (0.71495000762921446, -1.2947774099671916) +description = North Haledon borough, NJ +station = ('kcdw', 0.0019066866078260457) +zone = ('njz004', 0.00082596771960940119) + +[fips3403156550] +centroid = (0.71307892740461409, -1.2937591674282856) +description = Passaic city, NJ +station = ('kteb', 0.0010312395252386295) +zone = ('njz004', 0.0014377786664088949) + +[fips3403157000] +centroid = (0.71409703031717986, -1.2943854962836561) +description = Paterson city, NJ +station = ('kteb', 0.0017088483784534157) +zone = ('njz004', 0.00049149613031377324) + +[fips3403160090] +centroid = (0.71563901125802443, -1.2965257760920843) +description = Pompton Lakes borough, NJ +station = ('kcdw', 0.0020904225429270512) +zone = ('njz103', 0.001761291421447226) + +[fips3403161170] +centroid = (0.71456432477110876, -1.2945881115565203) +description = Prospect Park borough, NJ +station = ('kcdw', 0.0017590867336679398) +zone = ('njz004', 0.00053576586587330687) + +[fips3403163150] +centroid = (0.71739948996792602, -1.2962758973030761) +description = Ringwood borough, NJ +station = ('kcdw', 0.0038540639475002072) +zone = ('njz002', 0.0010768004265374264) + +[fips3403173140] +centroid = (0.71389666651905093, -1.2954073167475288) +description = Totowa borough, NJ +station = ('kcdw', 0.00088843084670614698) +zone = ('njz004', 0.0003778882293936646) + +[fips3403176730] +centroid = (0.71634309453157141, -1.2966007030768725) +description = Wanaque borough, NJ +station = ('kcdw', 0.0027955972862281566) +zone = ('njz002', 0.001194628058421954) + +[fips3403177840] +centroid = (0.71463998479418278, -1.295821047046714) +description = Wayne township, NJ +station = ('kcdw', 0.0012022183541981059) +zone = ('njz004', 0.00077333192312056267) + +[fips3403179460] +centroid = (0.71726958511170003, -1.2985153641728953) +description = West Milford township, NJ +station = ('kfwn', 0.0035651328405508212) +zone = ('njz002', 0.00062910976317114779) + +[fips3403182423] +centroid = (0.7136635254375695, -1.2949397255876269) +description = Woodland Park borough, NJ +station = ('kcdw', 0.0011766777709881038) +zone = ('njz004', 0.00048838308217675141) + +[fips3403250] +centroid = (0.69584415010702039, -1.3098939509648095) +description = Barrington borough, NJ +station = ('kvay', 0.0031285808511104483) +zone = ('njz018', 0.0016720891432882138) + +[fips34033] +centroid = (0.69069359621792248, -1.315233977797504) +description = Salem County, NJ +station = ('kilg', 0.0036423784466232548) +zone = ('njz016', 0.00027967241490595835) + +[fips3403300880] +centroid = (0.69049258664797042, -1.3144179840123191) +description = Alloway township, NJ +station = ('kmiv', 0.0045866494074669351) +zone = ('njz016', 0.00064356698524591581) + +[fips3403310610] +centroid = (0.69280410070931164, -1.3167665165070952) +description = Carneys Point township, NJ +station = ('kilg', 0.0021367844845662657) +zone = ('njz016', 0.0023029171965920003) + +[fips3403321240] +centroid = (0.69101526039906513, -1.3120437428176612) +description = Elmer borough, NJ +station = ('kmiv', 0.0041246851097417265) +zone = ('njz017', 0.0022261072802327751) + +[fips3403321330] +centroid = (0.68998656333793962, -1.3176970213445036) +description = Elsinboro township, NJ +station = ('kilg', 0.0026982621153151046) +zone = ('dez001', 0.002188526714754304) + +[fips3403341640] +centroid = (0.68854122127777806, -1.3169860265671185) +description = Lower Alloways Creek township, NJ +station = ('kilg', 0.0042305658666094434) +zone = ('njz016', 0.0028212188207246557) + +[fips3403343200] +centroid = (0.69155615538755066, -1.3162341561786519) +description = Mannington township, NJ +station = ('kilg', 0.0026035247493124431) +zone = ('njz016', 0.0011184009573934632) + +[fips3403354810] +centroid = (0.69359183761390675, -1.3161816741280443) +description = Oldmans township, NJ +station = ('kilg', 0.0028335980265878531) +zone = ('njz016', 0.0028074827030554294) + +[fips3403357750] +centroid = (0.69337314785863191, -1.3171598090007395) +description = Penns Grove borough, NJ +station = ('kilg', 0.002068476706582062) +zone = ('njz016', 0.0029431495657893229) + +[fips3403357870] +centroid = (0.69161012096802221, -1.3177838165682052) +description = Pennsville township, NJ +station = ('kilg', 0.0014761128612881653) +zone = ('dez001', 0.002109917587941094) + +[fips3403358530] +centroid = (0.69264815554064596, -1.3155667946325669) +description = Pilesgrove township, NJ +station = ('kilg', 0.0030218610311855483) +zone = ('njz016', 0.0017693987719597357) + +[fips3403359130] +centroid = (0.6901494374637358, -1.3112641391473805) +description = Pittsgrove township, NJ +station = ('kmiv', 0.0031349425913945509) +zone = ('njz021', 0.0029645019697012946) + +[fips3403361470] +centroid = (0.68991739593968315, -1.3158428708136471) +description = Quinton township, NJ +station = ('kilg', 0.0036810053007874811) +zone = ('njz016', 0.0011866485056700167) + +[fips3403365490] +centroid = (0.69059599740615096, -1.317244544735924) +description = Salem city, NJ +station = ('kilg', 0.0024263773562134415) +zone = ('njz016', 0.001735627942051091) + +[fips3403375110] +centroid = (0.69136636828468878, -1.3126542589900088) +description = Upper Pittsgrove township, NJ +station = ('kphl', 0.0044496909601066574) +zone = ('njz017', 0.0020444297976802525) + +[fips3403382720] +centroid = (0.6920261551018202, -1.3146907789744058) +description = Woodstown borough, NJ +station = ('kilg', 0.00368974760995325) +zone = ('njz016', 0.0011305286681772774) + +[fips34035] +centroid = (0.70800192169019527, -1.3023634661076922) +description = Somerset County, NJ +station = ('ksmq', 0.001086508442750265) +zone = ('njz010', 5.7686011419819161e-05) + +[fips3403504450] +centroid = (0.70987932000668785, -1.3035222774645538) +description = Bedminster township, NJ +station = ('ksmq', 0.0010185856058178054) +zone = ('njz010', 0.0021226553450465696) + +[fips3403505560] +centroid = (0.7099401272778274, -1.3014563486822608) +description = Bernards township, NJ +station = ('ksmq', 0.0016738935839954849) +zone = ('njz010', 0.0020714967943922082) + +[fips3403505590] +centroid = (0.71087935876149566, -1.3018859614776392) +description = Bernardsville borough, NJ +station = ('ksmq', 0.0022139134997563666) +zone = ('njz008', 0.0023849564186642258) + +[fips3403506790] +centroid = (0.7080407901726371, -1.3009204278821433) +description = Bound Brook borough, NJ +station = ('ksmq', 0.001915945245495322) +zone = ('njz010', 0.0010504701751405585) + +[fips3403507180] +centroid = (0.70791390473601712, -1.3040184571176034) +description = Branchburg township, NJ +station = ('ksmq', 0.0011695772394492044) +zone = ('njz010', 0.0013066406233944435) + +[fips3403507720] +centroid = (0.708483911816426, -1.3020981935146818) +description = Bridgewater township, NJ +station = ('ksmq', 0.00091770399473306368) +zone = ('njz010', 0.00053618959928584465) + +[fips3403520] +centroid = (0.69935892906127162, -1.2923842319501495) +description = Bay Head borough, NJ +station = ('kblm', 0.0022765833709430692) +zone = ('njz014', 0.0032451390149655316) + +[fips3403522890] +centroid = (0.71018967445427761, -1.3023921069607176) +description = Far Hills borough, NJ +station = ('ksmq', 0.0014261340814343193) +zone = ('njz010', 0.0022206505980234565) + +[fips3403524900] +centroid = (0.70645468730830219, -1.3011507589835292) +description = Franklin township, NJ +station = ('ksmq', 0.002885955125166532) +zone = ('njz010', 0.0017492597038570789) + +[fips3403527510] +centroid = (0.7086705573266342, -1.2999772170477808) +description = Green Brook township, NJ +station = ('ksmq', 0.0024410812216254219) +zone = ('njz107', 0.0019886359561507297) + +[fips3403531890] +centroid = (0.70681806485856746, -1.3032461663768886) +description = Hillsborough township, NJ +station = ('ksmq', 0.0020771233407303712) +zone = ('njz010', 0.0013580420276942098) + +[fips3403543620] +centroid = (0.70757864444000151, -1.3018284005189085) +description = Manville borough, NJ +station = ('ksmq', 0.0016685834859134414) +zone = ('njz010', 0.00053076599522848024) + +[fips3403546590] +centroid = (0.70685515310517233, -1.3019436446094177) +description = Millstone borough, NJ +station = ('ksmq', 0.0022450687731604959) +zone = ('njz010', 0.0011474138339455206) + +[fips3403547580] +centroid = (0.70560753939596921, -1.3033542197108796) +description = Montgomery township, NJ +station = ('kttn', 0.003141696924557518) +zone = ('njz010', 0.0024948656466576595) + +[fips3403553280] +centroid = (0.70897464604220917, -1.2992137751263733) +description = North Plainfield borough, NJ +station = ('kmmu', 0.003134236625319304) +zone = ('njz107', 0.0013390829073980143) + +[fips3403557300] +centroid = (0.71061853675807762, -1.3030067944699775) +description = Peapack and Gladstone borough, NJ +station = ('ksmq', 0.0017289236212440415) +zone = ('njz010', 0.0027021587899718411) + +[fips3403561980] +centroid = (0.70811720068728945, -1.3028274444360424) +description = Raritan borough, NJ +station = ('ksmq', 0.00082196524721733734) +zone = ('njz010', 0.00042672914187438327) + +[fips3403564320] +centroid = (0.70511909155150609, -1.3026949390392311) +description = Rocky Hill borough, NJ +station = ('kttn', 0.0031243937006001834) +zone = ('njz015', 0.0022059751422031856) + +[fips3403568460] +centroid = (0.70807571421096949, -1.302149698180908) +description = Somerville borough, NJ +station = ('ksmq', 0.0011320864842022463) +zone = ('njz010', 0.00015558042170177064) + +[fips3403568730] +centroid = (0.70779989982927682, -1.3007494728819107) +description = South Bound Brook borough, NJ +station = ('ksmq', 0.0021454796672916855) +zone = ('njz010', 0.0011903138765989058) + +[fips3403576940] +centroid = (0.70920735079137764, -1.3006026732385252) +description = Warren township, NJ +station = ('ksmq', 0.00198037056031365) +zone = ('njz010', 0.0017865673101049274) + +[fips3403577600] +centroid = (0.70935146262771476, -1.2991573486316563) +description = Watchung borough, NJ +station = ('kmmu', 0.0027550560929126481) +zone = ('njz107', 0.001116997328977129) + +[fips3403580] +centroid = (0.70969295374915997, -1.2934674880036923) +description = Bayonne city, NJ +station = ('kewr', 0.00083156390032499653) +zone = ('njz006', 0.0014383721394142213) + +[fips34037] +centroid = (0.71798349458893584, -1.3036187941721893) +description = Sussex County, NJ +station = ('kfwn', 0.0013356589034174957) +zone = ('njz001', 4.0775513097499488e-05) + +[fips3403701330] +centroid = (0.715336423525606, -1.3045217402607086) +description = Andover borough, NJ +station = ('k12n', 0.00055611775233942705) +zone = ('njz001', 0.0027720740609515544) + +[fips3403701360] +centroid = (0.71610948221119197, -1.3042343543460753) +description = Andover township, NJ +station = ('k12n', 0.00024749586577938631) +zone = ('njz001', 0.0019693448011396885) + +[fips3403707300] +centroid = (0.71815479865501908, -1.3046167385318945) +description = Branchville borough, NJ +station = ('kfwn', 0.0017771750240037452) +zone = ('njz001', 0.0007852809019798045) + +[fips3403709160] +centroid = (0.71488858949283685, -1.3039941446811232) +description = Byram township, NJ +station = ('k12n', 0.0010217536157053242) +zone = ('njz008', 0.0028082342546535918) + +[fips3403724810] +centroid = (0.71845249946553169, -1.304420650790433) +description = Frankford township, NJ +station = ('kfwn', 0.0015070820420660512) +zone = ('njz001', 0.00076163189360948277) + +[fips3403724930] +centroid = (0.71748734984247142, -1.3018173700380358) +description = Franklin borough, NJ +station = ('kfwn', 0.0016934105464933686) +zone = ('njz001', 0.001436803685601227) + +[fips3403725140] +centroid = (0.71601565331060479, -1.305824349294642) +description = Fredon township, NJ +station = ('k12n', 0.0011265476743470514) +zone = ('njz001', 0.002616491043331053) + +[fips3403727420] +centroid = (0.71513248180251054, -1.3055513797996299) +description = Green township, NJ +station = ('k12n', 0.0011767899985266779) +zone = ('njz001', 0.0032424903259437891) + +[fips3403729220] +centroid = (0.71817579496592054, -1.3015525163240456) +description = Hamburg borough, NJ +station = ('kfwn', 0.0011951216275007614) +zone = ('njz001', 0.0015423720517287064) + +[fips3403729490] +centroid = (0.71718895090025792, -1.3053059166936296) +description = Hampton township, NJ +station = ('k12n', 0.0015005681275916589) +zone = ('njz001', 0.0015357918266969105) + +[fips3403729850] +centroid = (0.71769621339405754, -1.3013930281369985) +description = Hardyston township, NJ +station = ('kfwn', 0.0016507618837655286) +zone = ('njz001', 0.0016857222168442968) + +[fips3403732910] +centroid = (0.71475477509908647, -1.3030568854195097) +description = Hopatcong borough, NJ +station = ('k12n', 0.0014829260278082109) +zone = ('njz008', 0.0021893186548412598) + +[fips3403737440] +centroid = (0.71755838474302758, -1.3033363998992165) +description = Lafayette township, NJ +station = ('kfwn', 0.0016160710251900421) +zone = ('njz001', 0.00049768984734167865) + +[fips3403747430] +centroid = (0.7204869948679965, -1.3042920025712685) +description = Montague township, NJ +station = ('kfwn', 0.0019014784129382681) +zone = ('njz001', 0.0025248764024266112) + +[fips3403751930] +centroid = (0.71650551487176195, -1.3047171647770541) +description = Newton town, NJ +station = ('k12n', 0.000690081060910952) +zone = ('njz001', 0.0017347114019784561) + +[fips3403754660] +centroid = (0.71698284496888998, -1.3019741878713276) +description = Ogdensburg borough, NJ +station = ('k12n', 0.0021014386888782051) +zone = ('njz001', 0.0015979651361312463) + +[fips3403765700] +centroid = (0.71931301659993496, -1.3057421442868731) +description = Sandyston township, NJ +station = ('kfwn', 0.0023777846426348819) +zone = ('njz001', 0.0020739737784950881) + +[fips3403769690] +centroid = (0.71649874299426419, -1.3025022197832259) +description = Sparta township, NJ +station = ('k12n', 0.0015216412962279439) +zone = ('njz001', 0.0017262636507094338) + +[fips3403770380] +centroid = (0.71406613798941954, -1.3038118101341674) +description = Stanhope borough, NJ +station = ('k12n', 0.0018536165185782068) +zone = ('njz008', 0.0022710011074318199) + +[fips3403770890] +centroid = (0.71687871862571595, -1.306708428373947) +description = Stillwater township, NJ +station = ('k12n', 0.0020467054183933471) +zone = ('njz001', 0.0026113770791432274) + +[fips3403771670] +centroid = (0.71924772383261792, -1.3021296792543875) +description = Sussex borough, NJ +station = ('kfwn', 0.0003917103575051504) +zone = ('njz001', 0.0016493447515633756) + +[fips3403775740] +centroid = (0.71903807488286842, -1.3000011629651178) +description = Vernon township, NJ +station = ('kfwn', 0.0019538395237101644) +zone = ('njz002', 0.0025236089261086499) + +[fips3403776640] +centroid = (0.71765551231590097, -1.307147588120334) +description = Walpack township, NJ +station = ('k12n', 0.0027638661273306593) +zone = ('njz001', 0.0027041545638760889) + +[fips3403776790] +centroid = (0.71998638207864696, -1.3025885612213222) +description = Wantage township, NJ +station = ('kfwn', 0.00091075451012431622) +zone = ('njz001', 0.0021076824540727482) + +[fips34039] +centroid = (0.70964862238615933, -1.2969314080635403) +description = Union County, NJ +station = ('kewr', 0.0019242021132032125) +zone = ('njz107', 0.00066192566722536573) + +[fips3403905320] +centroid = (0.70993698568517383, -1.2989617670356779) +description = Berkeley Heights township, NJ +station = ('kmmu', 0.0021601802598395464) +zone = ('njz107', 0.00090488913036398271) + +[fips3403913150] +centroid = (0.70892568955669077, -1.2970581364205276) +description = Clark township, NJ +station = ('kewr', 0.0022782343046507969) +zone = ('njz107', 0.0010073599795443254) + +[fips3403915640] +centroid = (0.70958788492818992, -1.2968639336346581) +description = Cranford township, NJ +station = ('kewr', 0.0018884765018805964) +zone = ('njz107', 0.00072486548598883066) + +[fips3403921000] +centroid = (0.70976014892536177, -1.2949213821771883) +description = Elizabeth city, NJ +station = ('kewr', 0.0004639270889907785) +zone = ('njz108', 0.00062366393934224981) + +[fips3403922860] +centroid = (0.70933147860777945, -1.2982749625217256) +description = Fanwood borough, NJ +station = ('kmmu', 0.0027931028365592637) +zone = ('njz107', 0.00056932446284489507) + +[fips3403925800] +centroid = (0.70949814009805234, -1.2971834510608209) +description = Garwood borough, NJ +station = ('kewr', 0.0021457781444967163) +zone = ('njz107', 0.00053256770519628403) + +[fips3403931980] +centroid = (0.7102772550761427, -1.2955369598043671) +description = Hillside township, NJ +station = ('kewr', 0.00085097227255217513) +zone = ('njz108', 0.00081232529673356212) + +[fips3403936690] +centroid = (0.70995491021659174, -1.2965935995868167) +description = Kenilworth borough, NJ +station = ('kewr', 0.0016269741867801673) +zone = ('njz108', 0.00086575797790664681) + +[fips3403940] +centroid = (0.69073204582134395, -1.2959382284526928) +description = Beach Haven borough, NJ +station = ('kacy', 0.004854628459387441) +zone = ('njz026', 0.0038967420165461732) + +[fips3403940350] +centroid = (0.70904402287997603, -1.2956944408627744) +description = Linden city, NJ +station = ('kewr', 0.0013842307349296746) +zone = ('njz108', 0.00042675309769550369) + +[fips3403948510] +centroid = (0.71001254098849276, -1.2978319281443993) +description = Mountainside borough, NJ +station = ('kmmu', 0.0022112499332225025) +zone = ('njz107', 0.00024850087805392202) + +[fips3403951810] +centroid = (0.71032963240699498, -1.2986405566401407) +description = New Providence borough, NJ +station = ('kmmu', 0.0017696920668731967) +zone = ('njz107', 0.00085642320077184504) + +[fips3403959190] +centroid = (0.70887322495937577, -1.2988002891732833) +description = Plainfield city, NJ +station = ('kmmu', 0.0032211314572794802) +zone = ('njz107', 0.0011767115061918699) + +[fips3403961530] +centroid = (0.70872851971109285, -1.296439836079716) +description = Rahway city, NJ +station = ('kewr', 0.0020103587404582293) +zone = ('njz108', 0.00095362350539623659) + +[fips3403964620] +centroid = (0.70951493016545653, -1.2960842601512073) +description = Roselle borough, NJ +station = ('kewr', 0.0013516209628187858) +zone = ('njz108', 0.0003336130940722686) + +[fips3403964650] +centroid = (0.70974276544601189, -1.2961985443106279) +description = Roselle Park borough, NJ +station = ('kewr', 0.0013612562776099736) +zone = ('njz108', 0.00049876483993672126) + +[fips3403966060] +centroid = (0.7091800887484615, -1.2980520665229534) +description = Scotch Plains township, NJ +station = ('kmmu', 0.0029711889966884072) +zone = ('njz107', 0.000618747501754636) + +[fips3403970020] +centroid = (0.71031233619410772, -1.2973821218895754) +description = Springfield township, NJ +station = ('kmmu', 0.0020869266767757091) +zone = ('njz107', 0.00062782791180663222) + +[fips3403971430] +centroid = (0.71062166089743872, -1.2979085830051469) +description = Summit city, NJ +station = ('kmmu', 0.001625133558356162) +zone = ('njz107', 0.00086029257702906529) + +[fips3403974480] +centroid = (0.71026638167490264, -1.296239943520485) +description = Union township, NJ +station = ('kewr', 0.0013712262797327091) +zone = ('njz108', 0.00091452606543792681) + +[fips3403979040] +centroid = (0.70950503414859767, -1.2975379274319008) +description = Westfield town, NJ +station = ('kmmu', 0.0027644883781453604) +zone = ('njz107', 0.00032365955170142073) + +[fips3403981650] +centroid = (0.70918441716500635, -1.2966277207736934) +description = Winfield township, NJ +station = ('kewr', 0.0018671491888559157) +zone = ('njz108', 0.00079568151636382563) + +[fips34041] +centroid = (0.71302850484252389, -1.3091634783129724) +description = Warren County, NJ +station = ('k12n', 0.0046228307203156705) +zone = ('njz007', 0.00017885423766361813) + +[fips3404100670] +centroid = (0.71418930587473273, -1.3058511400986601) +description = Allamuchy township, NJ +station = ('k12n', 0.0020351328602324728) +zone = ('njz007', 0.002581464636718453) + +[fips3404101030] +centroid = (0.70964122219013082, -1.3117380309458819) +description = Alpha borough, NJ +station = ('kukt', 0.0049213041209174345) +zone = ('paz062', 0.0025879515178044944) + +[fips3404104990] +centroid = (0.71261447783736587, -1.3102769111092822) +description = Belvidere town, NJ +station = ('k12n', 0.0055444664414535496) +zone = ('njz007', 0.0011170881833081419) + +[fips3404106160] +centroid = (0.71523865018090937, -1.3089419436710168) +description = Blairstown township, NJ +station = ('k12n', 0.0035291610384068626) +zone = ('njz007', 0.0021424973020840602) + +[fips3404120] +centroid = (0.69237958427534907, -1.2956124103879307) +description = Beach Haven West CDP, NJ +station = ('kacy', 0.0059032140403998488) +zone = ('njz026', 0.0022641156070906995) + +[fips3404124960] +centroid = (0.71049760289420694, -1.309798725800821) +description = Franklin township, NJ +station = ('kukt', 0.0065267525044428263) +zone = ('njz007', 0.0026778261073846163) + +[fips3404125320] +centroid = (0.71487789062452212, -1.3071670310882013) +description = Frelinghuysen township, NJ +station = ('k12n', 0.00235394188123649) +zone = ('njz007', 0.0022314328728309618) + +[fips3404128260] +centroid = (0.70992359900981106, -1.3111175838500904) +description = Greenwich township, NJ +station = ('kukt', 0.0054350270851727233) +zone = ('paz062', 0.0028165898915269703) + +[fips3404128710] +centroid = (0.71303164643517747, -1.3059404660497771) +description = Hackettstown town, NJ +station = ('k12n', 0.0030897494123038752) +zone = ('njz007', 0.0022731095908099584) + +[fips3404129820] +centroid = (0.71628340427115322, -1.3091104726635894) +description = Hardwick township, NJ +station = ('k12n', 0.0036197270110173668) +zone = ('njz007', 0.0031897124151663405) + +[fips3404130090] +centroid = (0.71118154506818598, -1.3111398018914682) +description = Harmony township, NJ +station = ('kabe', 0.0046535425699894117) +zone = ('njz007', 0.0025351528521618057) + +[fips3404133060] +centroid = (0.71401960751156146, -1.3087485786431885) +description = Hope township, NJ +station = ('k12n', 0.0038097934350487623) +zone = ('njz007', 0.00093526743833629612) + +[fips3404133930] +centroid = (0.71349061566857441, -1.3068371464062818) +description = Independence township, NJ +station = ('k12n', 0.0030395856709900938) +zone = ('njz007', 0.0016417564198821836) + +[fips3404137320] +centroid = (0.71435036485810677, -1.3100754826603096) +description = Knowlton township, NJ +station = ('kmpo', 0.005532356222507695) +zone = ('njz007', 0.0015178507532576969) + +[fips3404140110] +centroid = (0.71331152743402726, -1.3079159518702319) +description = Liberty township, NJ +station = ('k12n', 0.0037230188407770416) +zone = ('njz007', 0.00080718310873855272) + +[fips3404141490] +centroid = (0.71059949521593835, -1.3117156209182863) +description = Lopatcong township, NJ +station = ('kabe', 0.0040530161491584352) +zone = ('paz062', 0.0021230875615976699) + +[fips3404143320] +centroid = (0.71224209438816033, -1.3074301569262319) +description = Mansfield township, NJ +station = ('k12n', 0.0043183576955978503) +zone = ('njz007', 0.0014291147716925532) + +[fips3404155530] +centroid = (0.71224530579398393, -1.3088821137842583) +description = Oxford township, NJ +station = ('k12n', 0.0049949018352536271) +zone = ('njz007', 0.00085215965179229528) + +[fips3404158350] +centroid = (0.71020892543592706, -1.3121211830765722) +description = Phillipsburg town, NJ +station = ('kabe', 0.0036613740899135105) +zone = ('paz062', 0.002016818328447158) + +[fips3404159820] +centroid = (0.70924042478070282, -1.3120496245772402) +description = Pohatcong township, NJ +station = ('kukt', 0.0044595719151498316) +zone = ('paz062', 0.0027022792126017939) + +[fips3404177270] +centroid = (0.71137045950642175, -1.3087035491484869) +description = Washington borough, NJ +station = ('ksmq', 0.0048659746864211017) +zone = ('njz007', 0.00173531089384059) + +[fips3404177300] +centroid = (0.7108716269529094, -1.3082808653102389) +description = Washington township, NJ +station = ('ksmq', 0.0043451530518879497) +zone = ('njz007', 0.002280570426098557) + +[fips3404180] +centroid = (0.69688213231976648, -1.2950725102371188) +description = Beachwood borough, NJ +station = ('knel', 0.0023869996011521817) +zone = ('njz020', 0.001450820772055942) + +[fips3404180570] +centroid = (0.71246985985554556, -1.309574834964375) +description = White township, NJ +station = ('k12n', 0.0052183899471700719) +zone = ('njz007', 0.00078714571583361423) + +[fips3404252] +centroid = (0.71243313812808362, -1.3064431034210588) +description = Beattystown CDP, NJ +station = ('k12n', 0.0037909757737815946) +zone = ('njz007', 0.0020052874228690871) + +[fips3404400] +centroid = (0.69377021026346053, -1.3153642491728728) +description = Beckett CDP, NJ +station = ('kphl', 0.0026919386551418362) +zone = ('njz016', 0.002854567946547263) + +[fips3404600] +centroid = (0.70560301899320654, -1.2929088604700063) +description = Belford CDP, NJ +station = ('kblm', 0.0043340746737879979) +zone = ('nyz074', 0.0028472208317929688) + +[fips3404630] +centroid = (0.706202888657117, -1.3033141469512537) +description = Belle Mead CDP, NJ +station = ('ksmq', 0.00269362955072835) +zone = ('njz010', 0.001928067404051845) + +[fips3404660] +centroid = (0.68522197155962772, -1.3067928324965736) +description = Belleplain CDP, NJ +station = ('kmiv', 0.003384797505575595) +zone = ('njz023', 0.0016127817279259302) + +[fips3404750] +centroid = (0.69579917297219662, -1.31064924219861) +description = Bellmawr borough, NJ +station = ('kphl', 0.0018575554814251861) +zone = ('njz018', 0.0021105618146445909) + +[fips3404930] +centroid = (0.70126741169174234, -1.2919702049449913) +description = Belmar borough, NJ +station = ('kblm', 0.0014534387421976656) +zone = ('njz014', 0.0013288082698394536) + +[fips3404990] +centroid = (0.71261447783736587, -1.3102769111092822) +description = Belvidere town, NJ +station = ('k12n', 0.0055444664414535496) +zone = ('njz007', 0.0011170881833081419) + +[fips3405170] +centroid = (0.71422946590082115, -1.2915087573440565) +description = Bergenfield borough, NJ +station = ('kteb', 0.0011893728440932358) +zone = ('njz104', 0.00034139236242354375) + +[fips3405440] +centroid = (0.69450244569784236, -1.3078971372208956) +description = Berlin borough, NJ +station = ('kvay', 0.0028298314543100563) +zone = ('njz018', 0.00036932847503717771) + +[fips3405590] +centroid = (0.71087935876149566, -1.3018859614776392) +description = Bernardsville borough, NJ +station = ('ksmq', 0.0022139134997563666) +zone = ('njz008', 0.0023849564186642258) + +[fips3405740] +centroid = (0.69926286613924182, -1.3076339066631095) +description = Beverly city, NJ +station = ('kpne', 0.0013062363201575531) +zone = ('njz019', 0.0026049988250066969) + +[fips3406025] +centroid = (0.70657179890111099, -1.30145343398241) +description = Blackwells Mills CDP, NJ +station = ('ksmq', 0.0026673394236317173) +zone = ('njz010', 0.0015393232680534401) + +[fips3406040] +centroid = (0.69462472346523696, -1.3100984337399735) +description = Blackwood CDP, NJ +station = ('kphl', 0.0025684685942014497) +zone = ('njz017', 0.0017759638050620825) + +[fips3406130] +centroid = (0.71536475021936596, -1.3082042279027839) +description = Blairstown CDP, NJ +station = ('k12n', 0.0029587055329200864) +zone = ('njz007', 0.0023365500362049658) + +[fips3406190] +centroid = (0.70515919921771686, -1.3037359232182906) +description = Blawenburg CDP, NJ +station = ('kttn', 0.0026085565141260778) +zone = ('njz015', 0.0020833462772534401) + +[fips3406340] +centroid = (0.71619856381621383, -1.2973657332478989) +description = Bloomingdale borough, NJ +station = ('kcdw', 0.0027312981997704606) +zone = ('njz002', 0.0010444559974910432) + +[fips3406370] +centroid = (0.7095654749005943, -1.3103966406959691) +description = Bloomsbury borough, NJ +station = ('kukt', 0.0055447358379569073) +zone = ('njz009', 0.0027023420067741385) + +[fips3406490] +centroid = (0.71339088755511548, -1.2920626201288845) +description = Bogota borough, NJ +station = ('kteb', 0.00029870164104053572) +zone = ('njz104', 0.00073097251237597496) + +[fips3406610] +centroid = (0.71390630073652195, -1.2986361235038406) +description = Boonton town, NJ +station = ('kmmu', 0.0018170586253718379) +zone = ('njz008', 0.0019627609335209615) + +[fips3406670] +centroid = (0.70074662289623979, -1.3038943293012017) +description = Bordentown city, NJ +station = ('kwri', 0.0027326358476846002) +zone = ('njz015', 0.0023310333838928855) + +[fips3406790] +centroid = (0.7080407901726371, -1.3009204278821433) +description = Bound Brook borough, NJ +station = ('ksmq', 0.001915945245495322) +zone = ('njz010', 0.0010504701751405585) + +[fips3406970] +centroid = (0.70165035438292256, -1.2917540808237169) +description = Bradley Beach borough, NJ +station = ('kblm', 0.0016480298163654859) +zone = ('njz014', 0.00097234212276224195) + +[fips3407000] +centroid = (0.70811664218192871, -1.3031218291209763) +description = Bradley Gardens CDP, NJ +station = ('ksmq', 0.00077914009909153467) +zone = ('njz010', 0.00064117260586430964) + +[fips3407120] +centroid = (0.7116015236460933, -1.3119628293535386) +description = Brainards CDP, NJ +station = ('kabe', 0.0042714237600046294) +zone = ('paz062', 0.0018426177473552644) + +[fips3407300] +centroid = (0.71815479865501908, -1.3046167385318945) +description = Branchville borough, NJ +station = ('kfwn', 0.0017771750240037452) +zone = ('njz001', 0.0007852809019798045) + +[fips3407360] +centroid = (0.71145074465201363, -1.3094550530178106) +description = Brass Castle CDP, NJ +station = ('k12n', 0.0058752111484135202) +zone = ('njz007', 0.0016901627777172557) + +[fips3407600] +centroid = (0.68814000498932959, -1.3129754868388384) +description = Bridgeton city, NJ +station = ('kmiv', 0.0022209414102288849) +zone = ('njz021', 0.0018503528321839832) + +[fips3407660] +centroid = (0.71274192177934637, -1.3094230960392066) +description = Bridgeville CDP, NJ +station = ('k12n', 0.0049553376061964314) +zone = ('njz007', 0.00050646583295351963) + +[fips3407750] +centroid = (0.69996537861646202, -1.2926389278478929) +description = Brielle borough, NJ +station = ('kblm', 0.0016591827307826366) +zone = ('njz014', 0.0026662634209025041) + +[fips3407810] +centroid = (0.68813604309192755, -1.2983437459475466) +description = Brigantine city, NJ +station = ('kacy', 0.0026997752233113808) +zone = ('njz025', 0.00095494600582238665) + +[fips3408020] +centroid = (0.71099582458248123, -1.3098456577044069) +description = Broadway CDP, NJ +station = ('k12n', 0.0064130811124398822) +zone = ('njz007', 0.0022083246892959157) + +[fips3408110] +centroid = (0.71270424012079581, -1.2946813470451617) +description = Brookdale CDP, NJ +station = ('kteb', 0.0018005412976388393) +zone = ('njz105', 0.0013935519134808199) + +[fips3408140] +centroid = (0.71239774285085311, -1.3100589369390006) +description = Brookfield CDP, NJ +station = ('k12n', 0.0055457626274270375) +zone = ('njz007', 0.0010947945395747068) + +[fips3408170] +centroid = (0.69602596105520065, -1.3110982456019782) +description = Brooklawn borough, NJ +station = ('kphl', 0.0015288868681650725) +zone = ('paz071', 0.002245559223267221) + +[fips3408455] +centroid = (0.6976691710926608, -1.3014831569395713) +description = Browns Mills CDP, NJ +station = ('kwri', 0.00085676034194969071) +zone = ('njz019', 0.0025184298660644619) + +[fips3408492] +centroid = (0.70510186515178885, -1.2967019670800732) +description = Brownville CDP, NJ +station = ('kblm', 0.0043450579064819566) +zone = ('njz012', 0.001689342206934097) + +[fips3408620] +centroid = (0.71337704709414718, -1.3044037210966888) +description = Budd Lake CDP, NJ +station = ('k12n', 0.0024992590946853999) +zone = ('njz008', 0.0025462282187794756) + +[fips3408680] +centroid = (0.68991416708056696, -1.3080405858321169) +description = Buena borough, NJ +station = ('kmiv', 0.0033926036551474013) +zone = ('njz021', 0.0035083176320390395) + +[fips3408890] +centroid = (0.68150719532639059, -1.3063207383872018) +description = Burleigh CDP, NJ +station = ('kwwd', 0.0010908896768651172) +zone = ('njz024', 0.0013124631546281953) + +[fips3408920] +centroid = (0.69949944551934973, -1.3064227528819807) +description = Burlington city, NJ +station = ('kvay', 0.0025442470001917025) +zone = ('njz019', 0.0020682679012491291) + +[fips3409040] +centroid = (0.71555111647689384, -1.2976306218684743) +description = Butler borough, NJ +station = ('kcdw', 0.0021802238709685397) +zone = ('njz002', 0.0016644960654415902) + +[fips3409100] +centroid = (0.71261524578223678, -1.3090698588518954) +description = Buttzville CDP, NJ +station = ('k12n', 0.0048362363295580335) +zone = ('njz007', 0.00049015772532808163) + +[fips3409170] +centroid = (0.71453587590430134, -1.3040589313029571) +description = Byram Center CDP, NJ +station = ('k12n', 0.0013570261573627263) +zone = ('njz008', 0.0026506791696552564) + +[fips3409250] +centroid = (0.71277927182533918, -1.2963781910505356) +description = Caldwell borough, NJ +station = ('kcdw', 0.00077403324305684216) +zone = ('njz105', 0.0006256082815472632) + +[fips3409280] +centroid = (0.71068726782402114, -1.3061484394834448) +description = Califon borough, NJ +station = ('ksmq', 0.002878558980116941) +zone = ('njz009', 0.0028380554207427027) + +[fips3410000] +centroid = (0.69702842581766866, -1.3108582279232441) +description = Camden city, NJ +station = ('kphl', 0.002091673166958706) +zone = ('paz071', 0.0012881884530569862) + +[fips3410270] +centroid = (0.67964485920134254, -1.3073074253732317) +description = Cape May city, NJ +station = ('kwwd', 0.0013369847583762401) +zone = ('njz024', 0.0032308469976432626) + +[fips3410300] +centroid = (0.68205582212346239, -1.3058704608934795) +description = Cape May Court House CDP, NJ +station = ('kwwd', 0.0016931449937668173) +zone = ('njz024', 0.00072288369069316088) + +[fips3410330] +centroid = (0.67957726259941276, -1.3083926012889515) +description = Cape May Point borough, NJ +station = ('kwwd', 0.0015409440873563386) +zone = ('njz024', 0.0038109168863771433) + +[fips3410480] +centroid = (0.71255552061523353, -1.292631649824912) +description = Carlstadt borough, NJ +station = ('kteb', 0.00072100939595679946) +zone = ('njz006', 0.001504333970439123) + +[fips3410600] +centroid = (0.69299116509854042, -1.3171675757159109) +description = Carneys Point CDP, NJ +station = ('kilg', 0.0018960752351826799) +zone = ('njz016', 0.0026381274287835556) + +[fips3410750] +centroid = (0.7083207584379495, -1.2955135374858051) +description = Carteret borough, NJ +station = ('kewr', 0.0019148746275658793) +zone = ('njz108', 0.0011531718037603937) + +[fips3411140] +centroid = (0.69732425912588158, -1.2985299202188569) +description = Cedar Glen Lakes CDP, NJ +station = ('knel', 0.0017832569528729524) +zone = ('njz020', 0.0013522157145214586) + +[fips3411155] +centroid = (0.69879777080017036, -1.2965309248133776) +description = Cedar Glen West CDP, NJ +station = ('knel', 0.00042165088508663124) +zone = ('njz020', 0.0021029921695160598) + +[fips3411410] +centroid = (0.68658758697955824, -1.31274077496103) +description = Cedarville CDP, NJ +station = ('kmiv', 0.0018369520370397406) +zone = ('njz021', 0.0015376908381731522) + +[fips3412100] +centroid = (0.71105911022115853, -1.2982540883838716) +description = Chatham borough, NJ +station = ('kmmu', 0.0011192366991127835) +zone = ('njz107', 0.0013400176179795239) + +[fips3412385] +centroid = (0.69706504282537551, -1.3092029751139449) +description = Cherry Hill Mall CDP, NJ +station = ('kvay', 0.0023903612509403624) +zone = ('paz071', 0.0020250456426619936) + +[fips3412550] +centroid = (0.69344180911140529, -1.306901269803) +description = Chesilhurst borough, NJ +station = ('kvay', 0.0035812072298836276) +zone = ('njz018', 0.00165912049535803) + +[fips3412580] +centroid = (0.71192915685327773, -1.3035850744110407) +description = Chester borough, NJ +station = ('ksmq', 0.0030501533915469228) +zone = ('njz008', 0.0022909986617808669) + +[fips3413360] +centroid = (0.69226313590765598, -1.3103496564325054) +description = Clayton borough, NJ +station = ('kphl', 0.0041124693905156915) +zone = ('njz017', 0.001273299702607602) + +[fips3413399] +centroid = (0.7035421342124516, -1.2996529523260527) +description = Clearbrook Park CDP, NJ +station = ('kttn', 0.0047092741193919003) +zone = ('njz012', 0.0023672373738910235) + +[fips3413420] +centroid = (0.69469652631066403, -1.3087213340535648) +description = Clementon borough, NJ +station = ('kvay', 0.003040572215320315) +zone = ('njz018', 0.00032612486672505307) + +[fips3413570] +centroid = (0.71247972096581924, -1.2913313097190064) +description = Cliffside Park borough, NJ +station = ('knyc', 0.0007318145748671167) +zone = ('nyz072', 0.00080954092367463534) + +[fips3413630] +centroid = (0.70586815195987707, -1.2953477661134507) +description = Cliffwood Beach CDP, NJ +station = ('kewr', 0.0042448021736784915) +zone = ('nyz074', 0.0025287092913419407) + +[fips3413690] +centroid = (0.71317883005099814, -1.294343032422955) +description = Clifton city, NJ +station = ('kteb', 0.0014592455211317669) +zone = ('njz004', 0.0010994364476567652) + +[fips3413720] +centroid = (0.70924613200735687, -1.3075169870565186) +description = Clinton town, NJ +station = ('ksmq', 0.0033109755315498929) +zone = ('njz009', 0.0012155334071558921) + +[fips3413810] +centroid = (0.71511183455745941, -1.2908510125621497) +description = Closter borough, NJ +station = ('kteb', 0.0021991116642813232) +zone = ('njz104', 0.001289475059071041) + +[fips3413990] +centroid = (0.70663740582769352, -1.300500484210821) +description = Clyde CDP, NJ +station = ('ksmq', 0.003039285380297354) +zone = ('njz012', 0.0015907963572072805) + +[fips3414230] +centroid = (0.69105732283403809, -1.3070530959946309) +description = Collings Lakes CDP, NJ +station = ('kmiv', 0.0047660404920528239) +zone = ('njz022', 0.0031479048765951497) + +[fips3414260] +centroid = (0.69665297058897968, -1.3103651375029703) +description = Collingswood borough, NJ +station = ('kphl', 0.0022416113708542671) +zone = ('paz071', 0.0017736801688244691) + +[fips3414380] +centroid = (0.70850127784248329, -1.2970199660697865) +description = Colonia CDP, NJ +station = ('kewr', 0.0024938786076133877) +zone = ('njz107', 0.0013933304171533079) + +[fips3414590] +centroid = (0.71429114583658671, -1.3106386305967579) +description = Columbia CDP, NJ +station = ('kmpo', 0.0052551700533904847) +zone = ('njz007', 0.0017515661850647092) + +[fips3414758] +centroid = (0.70358787929214639, -1.2993695283088214) +description = Concordia CDP, NJ +station = ('kttn', 0.0049288697430189977) +zone = ('njz012', 0.0022670850159582749) + +[fips3415160] +centroid = (0.6859436302987425, -1.3038583057054405) +description = Corbin City city, NJ +station = ('kacy', 0.0033183962385042341) +zone = ('njz023', 0.0026938342635048295) + +[fips3415250] +centroid = (0.69724137343970449, -1.3009322786677646) +description = Country Lake Estates CDP, NJ +station = ('kwri', 0.0014437216854638684) +zone = ('njz027', 0.0035243939192930998) + +[fips3415520] +centroid = (0.703602400431523, -1.3006232681236989) +description = Cranbury CDP, NJ +station = ('kttn', 0.0039809121698174393) +zone = ('njz015', 0.0024697385925835803) + +[fips3415610] +centroid = (0.71772630287036188, -1.3062135402645443) +description = Crandon Lakes CDP, NJ +station = ('k12n', 0.0023266628712348527) +zone = ('njz001', 0.001997547528579328) + +[fips3415820] +centroid = (0.7145340607618792, -1.2908207485529202) +description = Cresskill borough, NJ +station = ('kteb', 0.0017558299631634945) +zone = ('njz104', 0.00093993052702030463) + +[fips3415910] +centroid = (0.69735687932960155, -1.2977086729926233) +description = Crestwood Village CDP, NJ +station = ('knel', 0.0014420029072223289) +zone = ('njz020', 0.00086150429051369581) + +[fips3416630] +centroid = (0.70478164959392553, -1.3005033814573794) +description = Dayton CDP, NJ +station = ('kttn', 0.0043808202280059367) +zone = ('njz012', 0.0016964117016637439) + +[fips3416660] +centroid = (0.70248980539325423, -1.2914992802062182) +description = Deal borough, NJ +station = ('kblm', 0.0021496560550657395) +zone = ('njz014', 0.00043946665922439497) + +[fips3417200] +centroid = (0.7137098464759174, -1.3102064521673793) +description = Delaware CDP, NJ +station = ('k12n', 0.0049297943166657972) +zone = ('njz007', 0.0011344708955744983) + +[fips3417260] +centroid = (0.71043817443317647, -1.3122830623646946) +description = Delaware Park CDP, NJ +station = ('kabe', 0.0035952621661845623) +zone = ('paz062', 0.0017942162239471791) + +[fips3417530] +centroid = (0.71479219495824931, -1.2907855278086151) +description = Demarest borough, NJ +station = ('kteb', 0.0019679924954497459) +zone = ('njz104', 0.0011007080936529094) + +[fips3417815] +centroid = (0.67996024019717793, -1.3064140087824281) +description = Diamond Beach CDP, NJ +station = ('kwwd', 0.001337008184150882) +zone = ('njz024', 0.0026164425696403979) + +[fips3418070] +centroid = (0.7135883366533935, -1.301302881881133) +description = Dover town, NJ +station = ('kmmu', 0.0024024803567783012) +zone = ('njz008', 0.00045351088896886723) + +[fips3418148] +centroid = (0.69799087018038841, -1.2927946984836334) +description = Dover Beaches North CDP, NJ +station = ('knel', 0.0033536389835068046) +zone = ('njz026', 0.0037544820687610719) + +[fips3418151] +centroid = (0.69734879845516473, -1.2929331030933167) +description = Dover Beaches South CDP, NJ +station = ('knel', 0.0034510038454888046) +zone = ('njz026', 0.0031157030095173726) + +[fips3418400] +centroid = (0.71462923356599051, -1.291411490144843) +description = Dumont borough, NJ +station = ('kteb', 0.001567584699922775) +zone = ('njz104', 0.00064822117955852347) + +[fips3418490] +centroid = (0.70843317509507053, -1.2996698122066268) +description = Dunellen borough, NJ +station = ('ksmq', 0.0027040738272443689) +zone = ('njz107', 0.0019523380515529211) + +[fips3419130] +centroid = (0.70673420178800916, -1.2997662940076773) +description = East Franklin CDP, NJ +station = ('ksmq', 0.0033750686952379121) +zone = ('njz012', 0.0012257463529721454) + +[fips3419150] +centroid = (0.70294448111669117, -1.2957552830404988) +description = East Freehold CDP, NJ +station = ('kblm', 0.0021614481958155381) +zone = ('njz013', 0.0003886637043177431) + +[fips3419330] +centroid = (0.70679630060279508, -1.3014219656959964) +description = East Millstone CDP, NJ +station = ('ksmq', 0.0024869877750924169) +zone = ('njz010', 0.0013503117507184228) + +[fips3419360] +centroid = (0.71125596590749096, -1.2943746054291236) +description = East Newark borough, NJ +station = ('kewr', 0.0011993036756457289) +zone = ('njz106', 0.00015573808468420696) + +[fips3419390] +centroid = (0.71148448186645463, -1.295241335935664) +description = East Orange city, NJ +station = ('kewr', 0.0015465723258562612) +zone = ('njz106', 0.00060505994589737943) + +[fips3419490] +centroid = (0.70537713848141337, -1.3023280882837545) +description = East Rocky Hill CDP, NJ +station = ('kttn', 0.0035044790466384414) +zone = ('njz015', 0.0025555183514369864) + +[fips3419510] +centroid = (0.71239273375589984, -1.2930275952190196) +description = East Rutherford borough, NJ +station = ('kteb', 0.00098099357919763873) +zone = ('njz006', 0.0013318605213157074) + +[fips3419840] +centroid = (0.7032212030695949, -1.2924923550973104) +description = Eatontown borough, NJ +station = ('kblm', 0.0021629327949386355) +zone = ('njz014', 0.00070873805773754076) + +[fips3419900] +centroid = (0.69547593799472718, -1.3089489249880248) +description = Echelon CDP, NJ +station = ('kvay', 0.0026542370093935157) +zone = ('njz018', 0.00091724186857899297) + +[fips3420020] +centroid = (0.71250972317566108, -1.2910939973006126) +description = Edgewater borough, NJ +station = ('knyc', 0.00071332282449357472) +zone = ('nyz072', 0.0007954837932567379) + +[fips3420350] +centroid = (0.69051660237847778, -1.3019434526231999) +description = Egg Harbor City city, NJ +station = ('kacy', 0.0017017101701412957) +zone = ('njz022', 0.0018716030243826488) + +[fips3421000] +centroid = (0.70976014892536177, -1.2949213821771883) +description = Elizabeth city, NJ +station = ('kewr', 0.0004639270889907785) +zone = ('njz108', 0.00062366393934224981) + +[fips3421120] +centroid = (0.69673350008066659, -1.3091598829347135) +description = Ellisburg CDP, NJ +station = ('kvay', 0.0023673397717204081) +zone = ('njz018', 0.0021316326647127584) + +[fips3421240] +centroid = (0.69101526039906513, -1.3120437428176612) +description = Elmer borough, NJ +station = ('kmiv', 0.0041246851097417265) +zone = ('njz017', 0.0022261072802327751) + +[fips3421300] +centroid = (0.71391865766762597, -1.2936295592780322) +description = Elmwood Park borough, NJ +station = ('kteb', 0.0011304607576486051) +zone = ('njz104', 0.0012959686233069588) + +[fips3421420] +centroid = (0.69061587670633129, -1.3038991987698145) +description = Elwood CDP, NJ +station = ('kacy', 0.00245503501385124) +zone = ('njz022', 0.0013818853255810658) + +[fips3421450] +centroid = (0.71514848647175133, -1.2919494006203074) +description = Emerson borough, NJ +station = ('kteb', 0.001923235550603711) +zone = ('njz104', 0.0010331208706125165) + +[fips3421480] +centroid = (0.71368602273162773, -1.2910639427308932) +description = Englewood city, NJ +station = ('kteb', 0.0011085315829162628) +zone = ('njz104', 0.00078576279622906311) + +[fips3421510] +centroid = (0.71365958099346005, -1.2905321758143957) +description = Englewood Cliffs borough, NJ +station = ('kteb', 0.0014801494497453601) +zone = ('njz104', 0.0011538455177945511) + +[fips3421570] +centroid = (0.70330035375117295, -1.2978195712132952) +description = Englishtown borough, NJ +station = ('kblm', 0.0036003656976130584) +zone = ('njz013', 0.001454633003808201) + +[fips3421660] +centroid = (0.6806248441230448, -1.3070966594127607) +description = Erma CDP, NJ +station = ('kwwd', 0.00048854259597996092) +zone = ('njz024', 0.0023574582962824454) + +[fips3421840] +centroid = (0.71258524357239494, -1.2963641935099346) +description = Essex Fells borough, NJ +station = ('kcdw', 0.00096812670284413113) +zone = ('njz105', 0.00043161870454318685) + +[fips3421870] +centroid = (0.68685570445924959, -1.3050723043732502) +description = Estell Manor city, NJ +station = ('kacy', 0.0032497373126391914) +zone = ('njz022', 0.0026043006731255253) + +[fips3422440] +centroid = (0.7044487454924, -1.2922203978932647) +description = Fair Haven borough, NJ +station = ('kblm', 0.0033619839686447849) +zone = ('njz014', 0.0018583423360204138) + +[fips3422470] +centroid = (0.71446506789654796, -1.2935944781600672) +description = Fair Lawn borough, NJ +station = ('kteb', 0.0015000942147747841) +zone = ('njz004', 0.0011321820324929916) + +[fips3422530] +centroid = (0.68719462994669434, -1.3126419718720748) +description = Fairton CDP, NJ +station = ('kmiv', 0.0016974862228630227) +zone = ('njz021', 0.001334956669997439) + +[fips3422560] +centroid = (0.71246179643440133, -1.2915970710042075) +description = Fairview borough, NJ +station = ('knyc', 0.00081524236492056771) +zone = ('nyz072', 0.00088451082894981247) + +[fips3422740] +centroid = (0.70450759799477736, -1.2929501724134012) +description = Fairview CDP, NJ +station = ('kblm', 0.0032528596108282741) +zone = ('njz014', 0.0020303249326057006) + +[fips3422860] +centroid = (0.70933147860777945, -1.2982749625217256) +description = Fanwood borough, NJ +station = ('kmmu', 0.0027931028365592637) +zone = ('njz107', 0.00056932446284489507) + +[fips3422890] +centroid = (0.71018967445427761, -1.3023921069607176) +description = Far Hills borough, NJ +station = ('ksmq', 0.0014261340814343193) +zone = ('njz010', 0.0022206505980234565) + +[fips3422950] +centroid = (0.70164663683161577, -1.2944729896390585) +description = Farmingdale borough, NJ +station = ('kblm', 0.00055764216382659369) +zone = ('njz013', 0.0016082089588095017) + +[fips3423250] +centroid = (0.70050766986834923, -1.304282420713675) +description = Fieldsboro borough, NJ +station = ('kwri', 0.0027122190552576106) +zone = ('njz015', 0.0025962496381176708) + +[fips3423310] +centroid = (0.70792784991674063, -1.3015659728125786) +description = Finderne CDP, NJ +station = ('ksmq', 0.0015605475645814738) +zone = ('njz010', 0.00055932213631949878) + +[fips3423340] +centroid = (0.70879913573262865, -1.3119757273367108) +description = Finesville CDP, NJ +station = ('kukt', 0.0041584933595683439) +zone = ('paz062', 0.0030842719445619885) + +[fips3423700] +centroid = (0.70700933549129352, -1.3065554502650099) +description = Flemington borough, NJ +station = ('ksmq', 0.00318323724277773) +zone = ('njz009', 0.001234253727693316) + +[fips3423880] +centroid = (0.70021143513440831, -1.3056593982270359) +description = Florence CDP, NJ +station = ('kttn', 0.0028672967068522222) +zone = ('njz019', 0.0024408004754809002) + +[fips3423910] +centroid = (0.7116725236400645, -1.2984212560196278) +description = Florham Park borough, NJ +station = ('kmmu', 0.00051689747823828805) +zone = ('njz105', 0.0016237102805867097) + +[fips3423940] +centroid = (0.69105503645271804, -1.3062737366704453) +description = Folsom borough, NJ +station = ('kacy', 0.0041582244190505489) +zone = ('njz022', 0.0026780232661385004) + +[fips3424030] +centroid = (0.70762269655032184, -1.2970051307711445) +description = Fords CDP, NJ +station = ('kewr', 0.0031122408620821817) +zone = ('njz108', 0.0021144789767198937) + +[fips3424180] +centroid = (0.69458852533655058, -1.2933699066452131) +description = Forked River CDP, NJ +station = ('knel', 0.0050071398139165122) +zone = ('njz026', 0.00081745694843967742) + +[fips3424300] +centroid = (0.69822963122206128, -1.3022088648425505) +description = Fort Dix CDP, NJ +station = ('kwri', 0.00024318554972964192) +zone = ('njz019', 0.0019867043928093473) + +[fips3424420] +centroid = (0.71297816954689641, -1.2910376231657732) +description = Fort Lee borough, NJ +station = ('knyc', 0.0011761210496979571) +zone = ('nyz072', 0.0012587438334252278) + +[fips3424930] +centroid = (0.71748734984247142, -1.3018173700380358) +description = Franklin borough, NJ +station = ('kfwn', 0.0016934105464933686) +zone = ('njz001', 0.001436803685601227) + +[fips3424965] +centroid = (0.70740871918402737, -1.3009930335790263) +description = Franklin Center CDP, NJ +station = ('ksmq', 0.002228239622680876) +zone = ('njz010', 0.0011408881213363605) + +[fips3424990] +centroid = (0.71571639915705776, -1.2951329509891152) +description = Franklin Lakes borough, NJ +station = ('kcdw', 0.0023973580232166795) +zone = ('njz103', 0.00073205265362529556) + +[fips3425020] +centroid = (0.70588935771028882, -1.3010133143049347) +description = Franklin Park CDP, NJ +station = ('ksmq', 0.0034265401804402349) +zone = ('njz012', 0.0017459481888097241) + +[fips3425200] +centroid = (0.70267337912397898, -1.296358730629376) +description = Freehold borough, NJ +station = ('kblm', 0.0023258473035705548) +zone = ('njz013', 0.00019321422375949437) + +[fips3425350] +centroid = (0.70740320394359113, -1.3098934797259116) +description = Frenchtown borough, NJ +station = ('kdyl', 0.0035610183322359965) +zone = ('njz009', 0.0019482879351828816) + +[fips3425770] +centroid = (0.71348705519690048, -1.2934329653910877) +description = Garfield city, NJ +station = ('kteb', 0.00080218342810744743) +zone = ('njz104', 0.0012952189687458324) + +[fips3425800] +centroid = (0.70949814009805234, -1.2971834510608209) +description = Garwood borough, NJ +station = ('kewr', 0.0021457781444967163) +zone = ('njz107', 0.00053256770519628403) + +[fips3426070] +centroid = (0.69521830994384026, -1.3083986924880411) +description = Gibbsboro borough, NJ +station = ('kvay', 0.002491128193844473) +zone = ('njz018', 0.00051687359757177673) + +[fips3426100] +centroid = (0.69506934609218252, -1.313850385486278) +description = Gibbstown CDP, NJ +station = ('kphl', 0.00094876734783116154) +zone = ('paz070', 0.0022827152238945837) + +[fips3426340] +centroid = (0.69289738855783078, -1.3109416372081968) +description = Glassboro borough, NJ +station = ('kphl', 0.0033354753700443425) +zone = ('njz017', 0.00050755607123315841) + +[fips3426520] +centroid = (0.69535552772963205, -1.3101699922393051) +description = Glendora CDP, NJ +station = ('kphl', 0.0022706520680121699) +zone = ('njz018', 0.0015777579585945192) + +[fips3426550] +centroid = (0.7103551665739517, -1.3079428124874202) +description = Glen Gardner borough, NJ +station = ('ksmq', 0.0038977370840418504) +zone = ('njz009', 0.0023519265466690202) + +[fips3426610] +centroid = (0.71217807571119707, -1.2951140490733162) +description = Glen Ridge borough, NJ +station = ('kcdw', 0.0017205549612626533) +zone = ('njz105', 0.00095325226402767074) + +[fips3426640] +centroid = (0.71487762882513439, -1.2937288336058859) +description = Glen Rock borough, NJ +station = ('kteb', 0.0018993114460999507) +zone = ('njz103', 0.0011963511565686858) + +[fips3426820] +centroid = (0.69623992096820264, -1.3110337382328245) +description = Gloucester City city, NJ +station = ('kphl', 0.0016216665217646813) +zone = ('paz071', 0.0020373127790828316) + +[fips3426902] +centroid = (0.69696041033671841, -1.309690707373415) +description = Golden Triangle CDP, NJ +station = ('kpne', 0.0026438025598254393) +zone = ('paz071', 0.0018118501628108254) + +[fips3427360] +centroid = (0.7134175038262085, -1.3071919718432123) +description = Great Meadows CDP, NJ +station = ('k12n', 0.0032672874634345041) +zone = ('njz007', 0.0013637834671781414) + +[fips3427840] +centroid = (0.70868614311685452, -1.3022688867155265) +description = Green Knoll CDP, NJ +station = ('ksmq', 0.00072179132167981067) +zone = ('njz010', 0.00071641387949001657) + +[fips3427995] +centroid = (0.6963631237601009, -1.3083281288263831) +description = Greentree CDP, NJ +station = ('kvay', 0.0018215197149182058) +zone = ('njz018', 0.0016559307219221112) + +[fips3428250] +centroid = (0.71008560047098113, -1.3113325560540585) +description = Greenwich CDP, NJ +station = ('kukt', 0.0054612000207333571) +zone = ('paz062', 0.002595944987575126) + +[fips3428470] +centroid = (0.70580884567189417, -1.301986283003044) +description = Griggstown CDP, NJ +station = ('ksmq', 0.0032161721155205651) +zone = ('njz010', 0.0021744099670247116) + +[fips3428620] +centroid = (0.70109959828416313, -1.3029105919216075) +description = Groveville CDP, NJ +station = ('kwri', 0.0027631723313936768) +zone = ('njz015', 0.0020868399731824006) + +[fips3428650] +centroid = (0.71196839185486249, -1.2916234429292051) +description = Guttenberg town, NJ +station = ('knyc', 0.00052735681614284166) +zone = ('nyz072', 0.00056072474574209836) + +[fips3428680] +centroid = (0.71365462425838433, -1.2923412270373802) +description = Hackensack city, NJ +station = ('kteb', 0.00040077790496614678) +zone = ('njz104', 0.00055389086757227251) + +[fips3428710] +centroid = (0.71303164643517747, -1.3059404660497771) +description = Hackettstown town, NJ +station = ('k12n', 0.0030897494123038752) +zone = ('njz007', 0.0022731095908099584) + +[fips3428770] +centroid = (0.69630673217196903, -1.3095954822094262) +description = Haddonfield borough, NJ +station = ('kvay', 0.0027703238458975745) +zone = ('njz018', 0.0018845834453642169) + +[fips3428800] +centroid = (0.69602206897096863, -1.3101474251320768) +description = Haddon Heights borough, NJ +station = ('kphl', 0.0022530237296432792) +zone = ('njz018', 0.001935707919358902) + +[fips3428920] +centroid = (0.71481950936104299, -1.3100801077828275) +description = Hainesburg CDP, NJ +station = ('kmpo', 0.0052391133566846038) +zone = ('njz007', 0.0019252195434942445) + +[fips3429070] +centroid = (0.71448524390270096, -1.294839997474168) +description = Haledon borough, NJ +station = ('kcdw', 0.0015586981197428841) +zone = ('njz004', 0.00036835146603318838) + +[fips3429220] +centroid = (0.71817579496592054, -1.3015525163240456) +description = Hamburg borough, NJ +station = ('kfwn', 0.0011951216275007614) +zone = ('njz001', 0.0015423720517287064) + +[fips3429370] +centroid = (0.70205919776020209, -1.3028966816474692) +description = Hamilton Square CDP, NJ +station = ('kttn', 0.0024363040934763575) +zone = ('njz015', 0.0012231752459126823) + +[fips3429430] +centroid = (0.69221119490911664, -1.3049306883577434) +description = Hammonton town, NJ +station = ('kacy', 0.0041936130358035673) +zone = ('njz022', 0.0031135613780345268) + +[fips3429460] +centroid = (0.71042841804265777, -1.3085007593426976) +description = Hampton borough, NJ +station = ('ksmq', 0.0043184401338935766) +zone = ('njz009', 0.0025224744771975547) + +[fips3429520] +centroid = (0.68950314204172225, -1.3170649154493086) +description = Hancocks Bridge CDP, NJ +station = ('kilg', 0.0033664514444781322) +zone = ('njz016', 0.0021165476493430501) + +[fips3429940] +centroid = (0.70597456468437103, -1.3030367268666492) +description = Harlingen CDP, NJ +station = ('ksmq', 0.0029220062120868875) +zone = ('njz010', 0.0020726623929478252) + +[fips3430060] +centroid = (0.71122385184925418, -1.3114410282670699) +description = Harmony CDP, NJ +station = ('kabe', 0.0044581857187284933) +zone = ('njz007', 0.0026601594564759816) + +[fips3430150] +centroid = (0.7154397993772017, -1.291198106190494) +description = Harrington Park borough, NJ +station = ('kteb', 0.0023680864884252331) +zone = ('njz104', 0.0014364383730419796) + +[fips3430210] +centroid = (0.71109874664847128, -1.2942124643416135) +description = Harrison town, NJ +station = ('kewr', 0.0010564187546394058) +zone = ('njz106', 0.00026961178683987169) + +[fips3430390] +centroid = (0.69288834775230546, -1.2940134793535936) +description = Harvey Cedars borough, NJ +station = ('knel', 0.0062799440894711258) +zone = ('njz026', 0.0015914310042313791) + +[fips3430420] +centroid = (0.71318954637260545, -1.2928558199140383) +description = Hasbrouck Heights borough, NJ +station = ('kteb', 0.0003393345753903087) +zone = ('njz104', 0.0011585568220127669) + +[fips3430540] +centroid = (0.71491675910696406, -1.2914989136870754) +description = Haworth borough, NJ +station = ('kteb', 0.001797908891092867) +zone = ('njz104', 0.00086628862260995144) + +[fips3430570] +centroid = (0.71483375124773929, -1.2943110579910586) +description = Hawthorne borough, NJ +station = ('kteb', 0.0021292412705599703) +zone = ('njz004', 0.00087687804144409066) + +[fips3430738] +centroid = (0.7049373155099109, -1.3015431788125476) +description = Heathcote CDP, NJ +station = ('kttn', 0.0037384632803718482) +zone = ('njz015', 0.0025277191462924776) + +[fips3430840] +centroid = (0.70472948170258343, -1.2989275411290464) +description = Helmetta borough, NJ +station = ('kblm', 0.0051408846691600382) +zone = ('njz012', 0.0010825482699416814) + +[fips3431320] +centroid = (0.70981826838945317, -1.3070866412228543) +description = High Bridge borough, NJ +station = ('ksmq', 0.0031054671432187886) +zone = ('njz009', 0.0018101457369183377) + +[fips3431405] +centroid = (0.71862228509516579, -1.2994880885249094) +description = Highland Lake CDP, NJ +station = ('kfwn', 0.0023834701666918478) +zone = ('njz002', 0.001956270708337665) + +[fips3431470] +centroid = (0.70687222242525671, -1.2990121023313053) +description = Highland Park borough, NJ +station = ('ksmq', 0.0037566895726379229) +zone = ('njz012', 0.0010940072604667588) + +[fips3431500] +centroid = (0.70518667070014329, -1.2913808770697628) +description = Highlands borough, NJ +station = ('kblm', 0.0042975830696538831) +zone = ('njz014', 0.0026431364254849844) + +[fips3431620] +centroid = (0.70281715934775824, -1.30072065749596) +description = Hightstown borough, NJ +station = ('kttn', 0.0038817666559714946) +zone = ('njz015', 0.0023538359894469899) + +[fips3431920] +centroid = (0.71570938293346464, -1.2923311215810112) +description = Hillsdale borough, NJ +station = ('kteb', 0.0024523398366251116) +zone = ('njz103', 0.0014738726678120268) + +[fips3432220] +centroid = (0.69527897758863966, -1.3093781712642603) +description = Hi-Nella borough, NJ +station = ('kvay', 0.0030375933896278728) +zone = ('njz018', 0.0010080823678913831) + +[fips3432250] +centroid = (0.71113878450151213, -1.2920310471227157) +description = Hoboken city, NJ +station = ('knyc', 0.0010476386640328747) +zone = ('njz006', 0.00065972064163580561) + +[fips3432310] +centroid = (0.71557600487202733, -1.2932291807476248) +description = Ho-Ho-Kus borough, NJ +station = ('kteb', 0.0023980803567225542) +zone = ('njz103', 0.0008795338844302164) + +[fips3432415] +centroid = (0.69750607007406196, -1.2963924154839395) +description = Holiday City-Berkeley CDP, NJ +station = ('knel', 0.0013144126397491198) +zone = ('njz020', 0.00089592319372885487) + +[fips3432418] +centroid = (0.69733048995131131, -1.2956852080710315) +description = Holiday City South CDP, NJ +station = ('knel', 0.0017432820189825316) +zone = ('njz020', 0.0011476576433790294) + +[fips3432424] +centroid = (0.6970737345650504, -1.2960338899489947) +description = Holiday Heights CDP, NJ +station = ('knel', 0.0018219804291584134) +zone = ('njz020', 0.00078832065422885177) + +[fips3432910] +centroid = (0.71475477509908647, -1.3030568854195097) +description = Hopatcong borough, NJ +station = ('k12n', 0.0014829260278082109) +zone = ('njz008', 0.0021893186548412598) + +[fips3433030] +centroid = (0.71405152958358042, -1.3082776888110002) +description = Hope CDP, NJ +station = ('k12n', 0.0034867183446846352) +zone = ('njz007', 0.0010802535584048601) + +[fips3433150] +centroid = (0.70492118866762243, -1.3048755359533803) +description = Hopewell borough, NJ +station = ('kttn', 0.0019736532873393386) +zone = ('njz015', 0.0020229258381296664) + +[fips3433690] +centroid = (0.7117740319893604, -1.3111690885163167) +description = Hutchinson CDP, NJ +station = ('kabe', 0.0048811750143924852) +zone = ('njz007', 0.0021405603877965216) + +[fips3434200] +centroid = (0.70222123412795734, -1.2918218345052792) +description = Interlaken borough, NJ +station = ('kblm', 0.0018000346102144669) +zone = ('njz014', 0.00041469335929212182) + +[fips3434470] +centroid = (0.70806777296287293, -1.2971480034237128) +description = Iselin CDP, NJ +station = ('kewr', 0.0028542469437205916) +zone = ('njz107', 0.0017668645263367807) + +[fips3434530] +centroid = (0.69711577954673098, -1.2940536742862672) +description = Island Heights borough, NJ +station = ('knel', 0.0028098902097180222) +zone = ('njz026', 0.0026813614886659382) + +[fips3434890] +centroid = (0.70422776935580511, -1.2992301637680495) +description = Jamesburg borough, NJ +station = ('kttn', 0.0051378120084961806) +zone = ('njz012', 0.0016197882782465634) + +[fips3436000] +centroid = (0.71054826980239227, -1.2926739216993954) +description = Jersey City city, NJ +station = ('kewr', 0.0014347950387991813) +zone = ('njz006', 0.00054312269136646966) + +[fips3436150] +centroid = (0.71497538471653854, -1.3068707265410899) +description = Johnsonburg CDP, NJ +station = ('k12n', 0.0021099769590922439) +zone = ('njz007', 0.0024470017134188291) + +[fips3436300] +centroid = (0.69833782418239232, -1.3032575982834891) +description = Juliustown CDP, NJ +station = ('kwri', 0.00095497993288488155) +zone = ('njz019', 0.0012419054251670218) + +[fips3436480] +centroid = (0.70595564531527943, -1.2940887379509394) +description = Keansburg borough, NJ +station = ('kewr', 0.0041117696525898671) +zone = ('nyz074', 0.0023061826206875777) + +[fips3436510] +centroid = (0.71128659643586345, -1.2936533132091519) +description = Kearny town, NJ +station = ('kewr', 0.0013697030896783339) +zone = ('njz106', 0.00068985279952307721) + +[fips3436660] +centroid = (0.70534696173864642, -1.3013603730266936) +description = Kendall Park CDP, NJ +station = ('ksmq', 0.0038075434533673411) +zone = ('njz012', 0.0020589065012604209) + +[fips3436690] +centroid = (0.70995491021659174, -1.2965935995868167) +description = Kenilworth borough, NJ +station = ('kewr', 0.0016269741867801673) +zone = ('njz108', 0.00086575797790664681) + +[fips3436720] +centroid = (0.71331952104200147, -1.3025678267098084) +description = Kenvil CDP, NJ +station = ('k12n', 0.002886591141710115) +zone = ('njz008', 0.0011587889015766042) + +[fips3436810] +centroid = (0.70567351284169455, -1.2950609910640554) +description = Keyport borough, NJ +station = ('kewr', 0.0044089067323834635) +zone = ('nyz074', 0.002655176816628932) + +[fips3436930] +centroid = (0.70488792269207945, -1.302280912034073) +description = Kingston CDP, NJ +station = ('kttn', 0.0032348682855775387) +zone = ('njz015', 0.0021448803835440932) + +[fips3436960] +centroid = (0.69670201434096057, -1.3088256349296639) +description = Kingston Estates CDP, NJ +station = ('kvay', 0.0021161873130064093) +zone = ('njz018', 0.002035496624471072) + +[fips3437110] +centroid = (0.7153023023387296, -1.2982699359734799) +description = Kinnelon borough, NJ +station = ('kcdw', 0.0022103364600778801) +zone = ('njz002', 0.0019632689077519407) + +[fips3437560] +centroid = (0.70109895251233989, -1.2919775527811421) +description = Lake Como borough, NJ +station = ('kblm', 0.0014650842540987112) +zone = ('njz014', 0.0014968327253305075) + +[fips3437770] +centroid = (0.698360670542301, -1.2971349134543229) +description = Lakehurst borough, NJ +station = ('knel', 0.00035623585538783272) +zone = ('njz020', 0.0016468910786134525) + +[fips3438040] +centroid = (0.71579684138228217, -1.3032819979864319) +description = Lake Mohawk CDP, NJ +station = ('k12n', 0.00080426120109880494) +zone = ('njz001', 0.0022332363808038806) + +[fips3438430] +centroid = (0.71489290045608933, -1.3002253679608293) +description = Lake Telemark CDP, NJ +station = ('kmmu', 0.0029946116090152843) +zone = ('njz008', 0.0018236691958044256) + +[fips3438580] +centroid = (0.69977187396229346, -1.2952346338713365) +description = Lakewood CDP, NJ +station = ('knel', 0.0017590899293608781) +zone = ('njz013', 0.0029663690603289397) + +[fips3438610] +centroid = (0.70456433864875967, -1.3080029565334439) +description = Lambertville city, NJ +station = ('kttn', 0.0022451448112302055) +zone = ('paz069', 0.0022452945244995745) + +[fips3439120] +centroid = (0.68637329545399839, -1.3095313588127078) +description = Laurel Lake CDP, NJ +station = ('kmiv', 0.0010013666237907619) +zone = ('njz021', 0.0013504565872364772) + +[fips3439210] +centroid = (0.69499958528198036, -1.3090919721735181) +description = Laurel Springs borough, NJ +station = ('kvay', 0.0030314225323034311) +zone = ('njz018', 0.00067693079286558001) + +[fips3439360] +centroid = (0.70594705829535964, -1.2958783112994718) +description = Laurence Harbor CDP, NJ +station = ('kewr', 0.0042513451944719317) +zone = ('njz012', 0.0021692604632555317) + +[fips3439390] +centroid = (0.69759892159026804, -1.2927981891421372) +description = Lavallette borough, NJ +station = ('knel', 0.0034573089357439737) +zone = ('njz026', 0.0033863229447763281) + +[fips3439420] +centroid = (0.69581383373791328, -1.3094997159933692) +description = Lawnside borough, NJ +station = ('kvay', 0.0028605373287015701) +zone = ('njz018', 0.0014412249635789719) + +[fips3439570] +centroid = (0.70341633087996791, -1.3044242461686921) +description = Lawrenceville CDP, NJ +station = ('kttn', 0.0011008597261626719) +zone = ('njz015', 0.00059315345473419563) + +[fips3439630] +centroid = (0.70933430604116776, -1.3060876845721829) +description = Lebanon borough, NJ +station = ('ksmq', 0.0022507557805945323) +zone = ('njz009', 0.0016713953223071816) + +[fips3439883] +centroid = (0.69844681999417935, -1.2965986435883552) +description = Leisure Knoll CDP, NJ +station = ('knel', 0.00044908310889230373) +zone = ('njz020', 0.0017482435991732416) + +[fips3439885] +centroid = (0.69627152888095623, -1.3039036668126998) +description = Leisuretowne CDP, NJ +station = ('kvay', 0.0018145099007073427) +zone = ('njz019', 0.0017277608070084298) + +[fips3439900] +centroid = (0.6988955441448671, -1.2947937462489902) +description = Leisure Village CDP, NJ +station = ('knel', 0.001752609060981167) +zone = ('njz020', 0.0027331635374978668) + +[fips3439910] +centroid = (0.69879103382925767, -1.2944791506513182) +description = Leisure Village East CDP, NJ +station = ('knel', 0.0019855869375145063) +zone = ('njz020', 0.0028075270637918357) + +[fips3439920] +centroid = (0.69831019562033325, -1.2964606404043999) +description = Leisure Village West CDP, NJ +station = ('knel', 0.00061706529311026585) +zone = ('njz020', 0.0016345189736252351) + +[fips3439990] +centroid = (0.70544963945854122, -1.2925942823256269) +description = Leonardo CDP, NJ +station = ('kblm', 0.0042316683330966076) +zone = ('njz014', 0.0028841903269773367) + +[fips3440020] +centroid = (0.7132007164798182, -1.2913424274663414) +description = Leonia borough, NJ +station = ('kteb', 0.00081413750385383738) +zone = ('njz104', 0.0010183804188653078) + +[fips3440290] +centroid = (0.714254197216322, -1.296853548925609) +description = Lincoln Park borough, NJ +station = ('kcdw', 0.00075739179481856302) +zone = ('njz004', 0.0013801522973287837) + +[fips3440320] +centroid = (0.70398366760662112, -1.2938621069475682) +description = Lincroft CDP, NJ +station = ('kblm', 0.0026522047191547189) +zone = ('njz014', 0.0019550257853317237) + +[fips3440350] +centroid = (0.70904402287997603, -1.2956944408627744) +description = Linden city, NJ +station = ('kewr', 0.0013842307349296746) +zone = ('njz108', 0.00042675309769550369) + +[fips3440440] +centroid = (0.69494172761727679, -1.3088030329158507) +description = Lindenwold borough, NJ +station = ('kvay', 0.0029064935776428854) +zone = ('njz018', 0.00045386128263860394) + +[fips3440530] +centroid = (0.68667741907615842, -1.3015103491693174) +description = Linwood city, NJ +station = ('kacy', 0.0021522432204898719) +zone = ('njz025', 0.0019083109340074691) + +[fips3440680] +centroid = (0.71286807417768061, -1.292174827346495) +description = Little Ferry borough, NJ +station = ('kteb', 0.00043048255123383006) +zone = ('njz104', 0.0012605065132280432) + +[fips3440770] +centroid = (0.70401262261891173, -1.2921463959329802) +description = Little Silver borough, NJ +station = ('kblm', 0.0029866586190028222) +zone = ('njz014', 0.0014196979509344964) + +[fips3441010] +centroid = (0.70218603083694453, -1.2915438035554367) +description = Loch Arbour village, NJ +station = ('kblm', 0.0019718996792859891) +zone = ('njz014', 0.00056675361482711698) + +[fips3441100] +centroid = (0.71345420810037785, -1.2929835431086991) +description = Lodi borough, NJ +station = ('kteb', 0.0004717174754596619) +zone = ('njz104', 0.0010324124200782106) + +[fips3441310] +centroid = (0.70328691471593252, -1.2913673507680599) +description = Long Branch city, NJ +station = ('kblm', 0.0027341527618172899) +zone = ('njz014', 0.00087034281621150341) + +[fips3441370] +centroid = (0.68610243780738145, -1.3007283194913764) +description = Longport borough, NJ +station = ('kacy', 0.0028277208638656675) +zone = ('njz025', 0.0018076784931399192) + +[fips3441400] +centroid = (0.71178453887145743, -1.3051037377530785) +description = Long Valley CDP, NJ +station = ('ksmq', 0.0032374199181854262) +zone = ('njz007', 0.0031888586767844142) + +[fips3441495] +centroid = (0.71030360954784766, -1.31153293730548) +description = Lopatcong Overlook CDP, NJ +station = ('kabe', 0.0041173004380304261) +zone = ('paz062', 0.0023628723391816622) + +[fips3442390] +centroid = (0.69862018354877997, -1.3018026045525639) +description = McGuire AFB CDP, NJ +station = ('kwri', 0.00025623069426463919) +zone = ('njz019', 0.0023857742242896548) + +[fips3442510] +centroid = (0.71136206447271966, -1.2988357542636837) +description = Madison borough, NJ +station = ('kmmu', 0.00073242541231981629) +zone = ('njz107', 0.0017819456665850563) + +[fips3442540] +centroid = (0.7059109125265508, -1.2967126659483879) +description = Madison Park CDP, NJ +station = ('kewr', 0.0044885713030097928) +zone = ('njz012', 0.0015333260102322582) + +[fips3442630] +centroid = (0.69562163808068367, -1.3096334780272421) +description = Magnolia borough, NJ +station = ('kvay', 0.0030351602788320567) +zone = ('njz018', 0.001374475883074131) + +[fips3442930] +centroid = (0.69278177794817863, -1.2959109664097768) +description = Manahawkin CDP, NJ +station = ('kacy', 0.0059789502369707497) +zone = ('njz026', 0.0020241941629662681) + +[fips3443050] +centroid = (0.70010448135784598, -1.2921874286236945) +description = Manasquan borough, NJ +station = ('kblm', 0.0017779467182236716) +zone = ('njz014', 0.002491973149050467) + +[fips3443380] +centroid = (0.69912397283736805, -1.2924144785060865) +description = Mantoloking borough, NJ +station = ('kblm', 0.0024724815197009397) +zone = ('njz014', 0.0034811817589409564) + +[fips3443620] +centroid = (0.70757864444000151, -1.3018284005189085) +description = Manville borough, NJ +station = ('ksmq', 0.0016685834859134414) +zone = ('njz010', 0.00053076599522848024) + +[fips3443890] +centroid = (0.68645392966544061, -1.3003898303362447) +description = Margate City city, NJ +station = ('kacy', 0.0025841615033874695) +zone = ('njz025', 0.0013694163083378971) + +[fips3443980] +centroid = (0.7153479426986693, -1.3073278282721874) +description = Marksboro CDP, NJ +station = ('k12n', 0.0023138639384385506) +zone = ('njz007', 0.0025618179155374944) + +[fips3444100] +centroid = (0.69641927100213763, -1.3077625897888592) +description = Marlton CDP, NJ +station = ('kvay', 0.0013966838381888323) +zone = ('njz018', 0.0017603912559098699) + +[fips3444430] +centroid = (0.70865509370946156, -1.3015931475890321) +description = Martinsville CDP, NJ +station = ('ksmq', 0.0012276312243659716) +zone = ('njz010', 0.00087032151916022671) + +[fips3444520] +centroid = (0.70530933243997351, -1.2956864647080926) +description = Matawan borough, NJ +station = ('kblm', 0.0042120256472475102) +zone = ('njz013', 0.002666001186267418) + +[fips3444820] +centroid = (0.6885823412349551, -1.3041787132495215) +description = Mays Landing CDP, NJ +station = ('kacy', 0.0019099045594217962) +zone = ('njz022', 0.0007481451200745114) + +[fips3444880] +centroid = (0.71389001681460074, -1.292651180059242) +description = Maywood borough, NJ +station = ('kteb', 0.00065659534766334857) +zone = ('njz104', 0.00058659083807888408) + +[fips3445210] +centroid = (0.69557739398414553, -1.3057098731490038) +description = Medford Lakes borough, NJ +station = ('kvay', 0.0014206997034724538) +zone = ('njz019', 0.0024056419180086366) + +[fips3445330] +centroid = (0.71156618072874045, -1.3019949049295487) +description = Mendham borough, NJ +station = ('kmmu', 0.0024643375078493034) +zone = ('njz008', 0.0017644371099684404) + +[fips3445480] +centroid = (0.70224774567929515, -1.3036257580359047) +description = Mercerville CDP, NJ +station = ('kttn', 0.0018528806689667293) +zone = ('njz015', 0.00083757549475470933) + +[fips3445510] +centroid = (0.69726113056683703, -1.3098711744180711) +description = Merchantville borough, NJ +station = ('kpne', 0.0023675455651630188) +zone = ('paz071', 0.001503273178085511) + +[fips3445690] +centroid = (0.70759915205871249, -1.2978751250433862) +description = Metuchen borough, NJ +station = ('kewr', 0.0035772931777401742) +zone = ('njz012', 0.0019103665056043203) + +[fips3445870] +centroid = (0.70695776101189711, -1.3008527091071662) +description = Middlebush CDP, NJ +station = ('ksmq', 0.0026220340310572649) +zone = ('njz010', 0.001494981337627992) + +[fips3445900] +centroid = (0.70816083391858931, -1.3002399065534984) +description = Middlesex borough, NJ +station = ('ksmq', 0.0023493618501026709) +zone = ('njz010', 0.0015765526135203304) + +[fips3446110] +centroid = (0.71551184656872402, -1.294009133483756) +description = Midland Park borough, NJ +station = ('kteb', 0.0025550796069204792) +zone = ('njz103', 0.00052781756085907737) + +[fips3446260] +centroid = (0.70814715053725363, -1.3105587119703093) +description = Milford borough, NJ +station = ('kdyl', 0.0042131815611229787) +zone = ('njz009', 0.0023518851577290141) + +[fips3446590] +centroid = (0.70685515310517233, -1.3019436446094177) +description = Millstone borough, NJ +station = ('ksmq', 0.0022450687731604959) +zone = ('njz010', 0.0011474138339455206) + +[fips3446620] +centroid = (0.70598985376861867, -1.29913209371738) +description = Milltown borough, NJ +station = ('ksmq', 0.0042306517195780562) +zone = ('njz012', 0.00036483169588426187) + +[fips3446680] +centroid = (0.68748683297006319, -1.3099533270659625) +description = Millville city, NJ +station = ('kmiv', 0.00056160214224443901) +zone = ('njz021', 0.00079778121724529099) + +[fips3447130] +centroid = (0.70399417448871815, -1.2912924586898569) +description = Monmouth Beach borough, NJ +station = ('kblm', 0.0033107800658452187) +zone = ('njz014', 0.0015167257671967619) + +[fips3447190] +centroid = (0.70476997334122959, -1.3010249207444604) +description = Monmouth Junction CDP, NJ +station = ('kttn', 0.0040126455157208753) +zone = ('njz012', 0.0020338717273185656) + +[fips3447610] +centroid = (0.71653783836950891, -1.2923691523054122) +description = Montvale borough, NJ +station = ('kteb', 0.0032801440480347563) +zone = ('njz103', 0.001509497800712852) + +[fips3447700] +centroid = (0.71281622044560378, -1.2925499335093336) +description = Moonachie borough, NJ +station = ('kteb', 0.0004530837559822254) +zone = ('njz104', 0.0013799981784883371) + +[fips3447895] +centroid = (0.69754743437733424, -1.3083428943118547) +description = Moorestown-Lenola CDP, NJ +station = ('kvay', 0.0018230556361528484) +zone = ('paz071', 0.0023999458137865231) + +[fips3448030] +centroid = (0.7046823927193645, -1.2956069475073719) +description = Morganville CDP, NJ +station = ('kblm', 0.0036032059522782436) +zone = ('njz013', 0.0020553381881973512) + +[fips3448210] +centroid = (0.71281225854820174, -1.2997969070827571) +description = Morris Plains borough, NJ +station = ('kmmu', 0.0010327669986535601) +zone = ('njz008', 0.0010138875588438197) + +[fips3448300] +centroid = (0.71203433039400288, -1.2998744171548382) +description = Morristown town, NJ +station = ('kmmu', 0.00080359295793906303) +zone = ('njz008', 0.0014476051812264885) + +[fips3448450] +centroid = (0.71312615601417295, -1.3087916882757127) +description = Mountain Lake CDP, NJ +station = ('k12n', 0.0043423693833217055) +zone = ('njz007', 0.00011946468178961086) + +[fips3448480] +centroid = (0.71368911196440377, -1.2992425381524462) +description = Mountain Lakes borough, NJ +station = ('kmmu', 0.0016271137510011603) +zone = ('njz008', 0.001456890008286617) + +[fips3448510] +centroid = (0.71001254098849276, -1.2978319281443993) +description = Mountainside borough, NJ +station = ('kmmu', 0.0022112499332225025) +zone = ('njz107', 0.00024850087805392202) + +[fips3448690] +centroid = (0.71420358266801409, -1.3027282050147742) +description = Mount Arlington borough, NJ +station = ('k12n', 0.0020694736940463539) +zone = ('njz008', 0.0016330089040724389) + +[fips3448750] +centroid = (0.696031476295637, -1.3105842810438508) +description = Mount Ephraim borough, NJ +station = ('kphl', 0.0019206701467152846) +zone = ('njz018', 0.0021994062504036762) + +[fips3448840] +centroid = (0.71432394057323156, -1.3088271184595279) +description = Mount Hermon CDP, NJ +station = ('k12n', 0.0037245689112087904) +zone = ('njz007', 0.0012309933168954243) + +[fips3449440] +centroid = (0.69334948119397488, -1.312816068464961) +description = Mullica Hill CDP, NJ +station = ('kphl', 0.0024628157911694257) +zone = ('njz017', 0.001043702389083862) + +[fips3449560] +centroid = (0.69055416186398066, -1.298192635340909) +description = Mystic Island CDP, NJ +station = ('kacy', 0.0032280915567306991) +zone = ('njz025', 0.0031368099818948839) + +[fips3449680] +centroid = (0.69581559652045777, -1.3122366366065916) +description = National Park borough, NJ +station = ('kphl', 0.00063924942750616571) +zone = ('paz071', 0.0025450517060001238) + +[fips3449740] +centroid = (0.70513230369394364, -1.2922498765043309) +description = Navesink CDP, NJ +station = ('kblm', 0.0039968539491334271) +zone = ('njz014', 0.0025419854112477777) + +[fips3449920] +centroid = (0.70162604194644229, -1.2921304261703244) +description = Neptune City borough, NJ +station = ('kblm', 0.0013616596391482047) +zone = ('njz014', 0.00097002057826745252) + +[fips3450130] +centroid = (0.71380217439334792, -1.3037906916502182) +description = Netcong borough, NJ +station = ('k12n', 0.0021151983603260841) +zone = ('njz008', 0.0021662973329806732) + +[fips3451000] +centroid = (0.71077172430652524, -1.2945556309791406) +description = Newark city, NJ +station = ('kewr', 0.00071787466395759243) +zone = ('njz106', 0.00040631916568052034) + +[fips3451210] +centroid = (0.70662583429475279, -1.2993001340177619) +description = New Brunswick city, NJ +station = ('ksmq', 0.0037194254265709493) +zone = ('njz012', 0.0009350053680730713) + +[fips3451360] +centroid = (0.69926824175333802, -1.3007422297655147) +description = New Egypt CDP, NJ +station = ('kwri', 0.0012905580246687534) +zone = ('njz020', 0.0038633133630581211) + +[fips3451390] +centroid = (0.69029250210252169, -1.3091759748704166) +description = Newfield borough, NJ +station = ('kmiv', 0.0033619962589918452) +zone = ('njz021', 0.0033739461410637003) + +[fips3451660] +centroid = (0.71443588599145458, -1.2918831653751943) +description = New Milford borough, NJ +station = ('kteb', 0.0012450184417223979) +zone = ('njz104', 0.0003228077540921244) + +[fips3451810] +centroid = (0.71032963240699498, -1.2986405566401407) +description = New Providence borough, NJ +station = ('kmmu', 0.0017696920668731967) +zone = ('njz107', 0.00085642320077184504) + +[fips3451930] +centroid = (0.71650551487176195, -1.3047171647770541) +description = Newton town, NJ +station = ('k12n', 0.000690081060910952) +zone = ('njz001', 0.0017347114019784561) + +[fips3452050] +centroid = (0.71067030322369174, -1.3103451011231575) +description = New Village CDP, NJ +station = ('kukt', 0.0063837767661759611) +zone = ('njz007', 0.0026474814238466775) + +[fips3452320] +centroid = (0.71185445676129233, -1.2937466010576713) +description = North Arlington borough, NJ +station = ('kteb', 0.0017271086312501311) +zone = ('njz106', 0.00091114057828037265) + +[fips3452410] +centroid = (0.69115757454627269, -1.2952370075191191) +description = North Beach Haven CDP, NJ +station = ('kacy', 0.0055213774290182238) +zone = ('njz026', 0.0033512377385080819) + +[fips3452620] +centroid = (0.71322000236805272, -1.2960813105447715) +description = North Caldwell borough, NJ +station = ('kcdw', 0.00045056309301694328) +zone = ('njz105', 0.0010889209237604854) + +[fips3452650] +centroid = (0.68026698181321588, -1.3081505066684076) +description = North Cape May CDP, NJ +station = ('kwwd', 0.00084648378489637953) +zone = ('njz024', 0.0031988080735450325) + +[fips3452950] +centroid = (0.68715459209365359, -1.3012271171383039) +description = Northfield city, NJ +station = ('kacy', 0.0017123937980723003) +zone = ('njz025', 0.0015328306380462875) + +[fips3453040] +centroid = (0.71495000762921446, -1.2947774099671916) +description = North Haledon borough, NJ +station = ('kcdw', 0.0019066866078260457) +zone = ('njz004', 0.00082596771960940119) + +[fips3453205] +centroid = (0.70579353913435428, -1.293612263065145) +description = North Middletown CDP, NJ +station = ('kewr', 0.0043120910109049459) +zone = ('nyz074', 0.0025134512402313989) + +[fips3453280] +centroid = (0.70897464604220917, -1.2992137751263733) +description = North Plainfield borough, NJ +station = ('kmmu', 0.003134236625319304) +zone = ('njz107', 0.0013390829073980143) + +[fips3453430] +centroid = (0.71581188612043434, -1.290637558794631) +description = Northvale borough, NJ +station = ('kteb', 0.0028858869343541499) +zone = ('njz104', 0.0019588863414597758) + +[fips3453490] +centroid = (0.68075394612781481, -1.3054968208072126) +description = North Wildwood city, NJ +station = ('kwwd', 0.001604075062666719) +zone = ('njz024', 0.0016297184339856498) + +[fips3453610] +centroid = (0.71544976520723058, -1.2906869865190476) +description = Norwood borough, NJ +station = ('kteb', 0.0025517356832034685) +zone = ('njz104', 0.0016334874678025474) + +[fips3453790] +centroid = (0.7026954924456017, -1.2920070313922083) +description = Oakhurst CDP, NJ +station = ('kblm', 0.00197118563385055) +zone = ('njz014', 0.00010835939798666485) + +[fips3453850] +centroid = (0.71610824302742304, -1.2957994922304519) +description = Oakland borough, NJ +station = ('kcdw', 0.0026118616904878414) +zone = ('njz103', 0.001177888792920401) + +[fips3453880] +centroid = (0.69640890374638076, -1.3103901829777367) +description = Oaklyn borough, NJ +station = ('kphl', 0.0021428386884595708) +zone = ('paz071', 0.0019910031007601527) + +[fips3454060] +centroid = (0.6947504918911358, -1.311768783647302) +description = Oak Valley CDP, NJ +station = ('kphl', 0.001452074016020734) +zone = ('njz017', 0.0015693324615057567) + +[fips3454315] +centroid = (0.69362505122957219, -1.2964477249679351) +description = Ocean Acres CDP, NJ +station = ('knel', 0.0051108161995633726) +zone = ('njz026', 0.0017642798251346792) + +[fips3454360] +centroid = (0.68527902637287552, -1.3020959943998243) +description = Ocean City city, NJ +station = ('kacy', 0.0035558551405695587) +zone = ('njz025', 0.0031233922035757986) + +[fips3454450] +centroid = (0.69683748679750046, -1.2938931039950834) +description = Ocean Gate borough, NJ +station = ('knel', 0.0030736693134681735) +zone = ('njz026', 0.0024222058840936357) + +[fips3454480] +centroid = (0.70182865721930621, -1.2916648421390624) +description = Ocean Grove CDP, NJ +station = ('kblm', 0.0017567490980595056) +zone = ('njz014', 0.00082270922883395171) + +[fips3454570] +centroid = (0.70364715067354411, -1.2919010724533198) +description = Oceanport borough, NJ +station = ('kblm', 0.002760864326091181) +zone = ('njz014', 0.0010594726451197405) + +[fips3454660] +centroid = (0.71698284496888998, -1.3019741878713276) +description = Ogdensburg borough, NJ +station = ('k12n', 0.0021014386888782051) +zone = ('njz001', 0.0015979651361312463) + +[fips3454690] +centroid = (0.70505327518541339, -1.2973785788711938) +description = Old Bridge CDP, NJ +station = ('kblm', 0.0045837974996449232) +zone = ('njz012', 0.0012668880232822499) + +[fips3454870] +centroid = (0.7161140375205397, -1.2912978866638305) +description = Old Tappan borough, NJ +station = ('kteb', 0.0029784533791388816) +zone = ('njz104', 0.0020556140063223293) + +[fips3454960] +centroid = (0.69007004243606251, -1.3120745478789588) +description = Olivet CDP, NJ +station = ('kmiv', 0.0032439891907676366) +zone = ('njz016', 0.002437174613000438) + +[fips3454990] +centroid = (0.71482841054022805, -1.2921171267614242) +description = Oradell borough, NJ +station = ('kteb', 0.0015867145849637705) +zone = ('njz104', 0.00072619546410901414) + +[fips3455500] +centroid = (0.71219912438197619, -1.3090225429758739) +description = Oxford CDP, NJ +station = ('k12n', 0.0051016045769126236) +zone = ('njz007', 0.00089896696867315835) + +[fips3455770] +centroid = (0.71291493626809666, -1.2914923687023803) +description = Palisades Park borough, NJ +station = ('kteb', 0.0007784380333334842) +zone = ('njz104', 0.0012461820931224446) + +[fips3455800] +centroid = (0.69817734115767149, -1.3096125689828031) +description = Palmyra borough, NJ +station = ('kpne', 0.001430568511536218) +zone = ('paz071', 0.001320077465803637) + +[fips3455895] +centroid = (0.71403665937835337, -1.3062156346596465) +description = Panther Valley CDP, NJ +station = ('k12n', 0.0023201087172006448) +zone = ('njz007', 0.0022674259149844745) + +[fips3455950] +centroid = (0.71466536188150676, -1.2927826382585021) +description = Paramus borough, NJ +station = ('kteb', 0.0014344460099382395) +zone = ('njz104', 0.00084433918108819072) + +[fips3456130] +centroid = (0.71621856528944161, -1.292303929351265) +description = Park Ridge borough, NJ +station = ('kteb', 0.002961894047624682) +zone = ('njz103', 0.0014781833256185361) + +[fips3456550] +centroid = (0.71307892740461409, -1.2937591674282856) +description = Passaic city, NJ +station = ('kteb', 0.0010312395252386295) +zone = ('njz004', 0.0014377786664088949) + +[fips3457000] +centroid = (0.71409703031717986, -1.2943854962836561) +description = Paterson city, NJ +station = ('kteb', 0.0017088483784534157) +zone = ('njz004', 0.00049149613031377324) + +[fips3457150] +centroid = (0.69533873766222798, -1.3131850310688327) +description = Paulsboro borough, NJ +station = ('kphl', 0.00047424317064956691) +zone = ('njz017', 0.002512817807959694) + +[fips3457300] +centroid = (0.71061853675807762, -1.3030067944699775) +description = Peapack and Gladstone borough, NJ +station = ('ksmq', 0.0017289236212440415) +zone = ('njz010', 0.0027021587899718411) + +[fips3457360] +centroid = (0.69405513526384865, -1.3161107439472433) +description = Pedricktown CDP, NJ +station = ('kphl', 0.0029185333074577442) +zone = ('paz070', 0.0026252319006472456) + +[fips3457480] +centroid = (0.69762239626870737, -1.3035078435916398) +description = Pemberton borough, NJ +station = ('kwri', 0.0013954367172698578) +zone = ('njz019', 0.00099039075371978652) + +[fips3457540] +centroid = (0.69739726624849263, -1.3033232924765341) +description = Pemberton Heights CDP, NJ +station = ('kwri', 0.0014335725688555169) +zone = ('njz019', 0.0011976899223671146) + +[fips3457600] +centroid = (0.70380267696318932, -1.3053104545496848) +description = Pennington borough, NJ +station = ('kttn', 0.00081527328895150371) +zone = ('njz015', 0.001370158517556249) + +[fips3457750] +centroid = (0.69337314785863191, -1.3171598090007395) +description = Penns Grove borough, NJ +station = ('kilg', 0.002068476706582062) +zone = ('njz016', 0.0029431495657893229) + +[fips3457840] +centroid = (0.69205924654443796, -1.3178851329312833) +description = Pennsville CDP, NJ +station = ('kilg', 0.0012455944586642329) +zone = ('dez001', 0.0022502709968968459) + +[fips3458200] +centroid = (0.70721020543490543, -1.2962792657885327) +description = Perth Amboy city, NJ +station = ('kewr', 0.0031676862700209031) +zone = ('nyz074', 0.0018573042914755505) + +[fips3458350] +centroid = (0.71020892543592706, -1.3121211830765722) +description = Phillipsburg town, NJ +station = ('kabe', 0.0036613740899135105) +zone = ('paz062', 0.002016818328447158) + +[fips3458590] +centroid = (0.69701570236742161, -1.294507041012765) +description = Pine Beach borough, NJ +station = ('knel', 0.0025962360795960819) +zone = ('njz020', 0.0018984686197658853) + +[fips3458770] +centroid = (0.69441076355223497, -1.3087291531286136) +description = Pine Hill borough, NJ +station = ('kvay', 0.0032634802072313554) +zone = ('njz018', 0.00044518586304885635) + +[fips3458830] +centroid = (0.69815971333222626, -1.2960636478127412) +description = Pine Lake Park CDP, NJ +station = ('knel', 0.00094935249782821896) +zone = ('njz020', 0.00159299568434062) + +[fips3458852] +centroid = (0.69746074387338763, -1.2969893529947065) +description = Pine Ridge at Crestwood CDP, NJ +station = ('knel', 0.0012542756440339432) +zone = ('njz020', 0.00074155524097334596) + +[fips3458920] +centroid = (0.69441781468241315, -1.3085703456199749) +description = Pine Valley borough, NJ +station = ('kvay', 0.003183528334725098) +zone = ('njz018', 0.00035767017648888181) + +[fips3459070] +centroid = (0.69347065940394081, -1.3112779970616413) +description = Pitman borough, NJ +station = ('kphl', 0.0027095064450665504) +zone = ('njz017', 0.00031169733179963453) + +[fips3459190] +centroid = (0.70887322495937577, -1.2988002891732833) +description = Plainfield city, NJ +station = ('kmmu', 0.0032211314572794802) +zone = ('njz107', 0.0011767115061918699) + +[fips3459285] +centroid = (0.70392991146565975, -1.3018408447164751) +description = Plainsboro Center CDP, NJ +station = ('kttn', 0.0031353111978600287) +zone = ('njz015', 0.0017122039344147975) + +[fips3459500] +centroid = (0.70604015415766108, -1.3016047540285578) +description = Pleasant Plains CDP, NJ +station = ('ksmq', 0.0030950685709956525) +zone = ('njz010', 0.002001070903882352) + +[fips3459640] +centroid = (0.68746424840954257, -1.3005192290469874) +description = Pleasantville city, NJ +station = ('kacy', 0.0016474303536377476) +zone = ('njz025', 0.00093981510074950866) + +[fips3459880] +centroid = (0.699481329001714, -1.2927665637760914) +description = Point Pleasant borough, NJ +station = ('kblm', 0.0020336586325958046) +zone = ('njz014', 0.003159847558825988) + +[fips3459910] +centroid = (0.69974728227313288, -1.2923320640588074) +description = Point Pleasant Beach borough, NJ +station = ('kblm', 0.0019731647065047344) +zone = ('njz014', 0.0028548868255098185) + +[fips3460030] +centroid = (0.68885915045432133, -1.301144912130535) +description = Pomona CDP, NJ +station = ('kacy', 0.00044904764576720978) +zone = ('njz025', 0.0019396219541603847) + +[fips3460090] +centroid = (0.71563901125802443, -1.2965257760920843) +description = Pompton Lakes borough, NJ +station = ('kcdw', 0.0020904225429270512) +zone = ('njz103', 0.001761291421447226) + +[fips3460210] +centroid = (0.71154034985581094, -1.3081961993882247) +description = Port Colden CDP, NJ +station = ('ksmq', 0.0046336404599658446) +zone = ('njz007', 0.0016557011430064471) + +[fips3460360] +centroid = (0.70575308240229295, -1.2932652567032636) +description = Port Monmouth CDP, NJ +station = ('kewr', 0.0043985141759519527) +zone = ('nyz074', 0.0026169489104705367) + +[fips3460450] +centroid = (0.7119809756787695, -1.3074880494975205) +description = Port Murray CDP, NJ +station = ('ksmq', 0.0044939556161126253) +zone = ('njz007', 0.0015679236746950324) + +[fips3460510] +centroid = (0.68504991700196627, -1.3097379534362663) +description = Port Norris CDP, NJ +station = ('kmiv', 0.0021018155604747403) +zone = ('njz021', 0.0023324481185497078) + +[fips3460540] +centroid = (0.70793422036851028, -1.2958025640099353) +description = Port Reading CDP, NJ +station = ('kewr', 0.0023581653058156399) +zone = ('njz108', 0.0015395795284112292) + +[fips3460600] +centroid = (0.6900051161878884, -1.2998685353952588) +description = Port Republic city, NJ +station = ('kacy', 0.0018569219476384825) +zone = ('njz025', 0.0025053738622801153) + +[fips3460840] +centroid = (0.6966473855353732, -1.3013787338904246) +description = Presidential Lakes Estates CDP, NJ +station = ('kwri', 0.0018410912192574746) +zone = ('njz027', 0.0029176838497999721) + +[fips3460900] +centroid = (0.70424839914756376, -1.3030518414179713) +description = Princeton borough, NJ +station = ('kttn', 0.0023988201998878665) +zone = ('njz015', 0.0012993562735003636) + +[fips3460960] +centroid = (0.70377424554967427, -1.3023848812976142) +description = Princeton Junction CDP, NJ +station = ('kttn', 0.0026941555586753566) +zone = ('njz015', 0.0012770499135423892) + +[fips3460975] +centroid = (0.70395973914257637, -1.3014245313299968) +description = Princeton Meadows CDP, NJ +station = ('kttn', 0.0034493625830101511) +zone = ('njz015', 0.0020066268888580862) + +[fips3461170] +centroid = (0.71456432477110876, -1.2945881115565203) +description = Prospect Park borough, NJ +station = ('kcdw', 0.0017590867336679398) +zone = ('njz004', 0.00053576586587330687) + +[fips3461440] +centroid = (0.69023370196002198, -1.3161687586915798) +description = Quinton CDP, NJ +station = ('kilg', 0.0032851100455871807) +zone = ('njz016', 0.0011161519520248222) + +[fips3461530] +centroid = (0.70872851971109285, -1.296439836079716) +description = Rahway city, NJ +station = ('kewr', 0.0020103587404582293) +zone = ('njz108', 0.00095362350539623659) + +[fips3461650] +centroid = (0.69694580193087929, -1.3081722534708873) +description = Ramblewood CDP, NJ +station = ('kvay', 0.0015983159658434685) +zone = ('njz018', 0.0022404859189537091) + +[fips3461680] +centroid = (0.71661711122413452, -1.2940906229065319) +description = Ramsey borough, NJ +station = ('kcdw', 0.0035627546858495941) +zone = ('njz103', 0.00061886382777726122) + +[fips3461725] +centroid = (0.7001338203425721, -1.2941643979740136) +description = Ramtown CDP, NJ +station = ('kblm', 0.0012185019191761576) +zone = ('njz013', 0.0029316450582735926) + +[fips3461980] +centroid = (0.70811720068728945, -1.3028274444360424) +description = Raritan borough, NJ +station = ('ksmq', 0.00082196524721733734) +zone = ('njz010', 0.00042672914187438327) + +[fips3462430] +centroid = (0.70421761153955853, -1.2927038017361896) +description = Red Bank borough, NJ +station = ('kblm', 0.0030203799105366805) +zone = ('njz014', 0.0016960686865814618) + +[fips3462820] +centroid = (0.69317458174963253, -1.3120071432632467) +description = Richwood CDP, NJ +station = ('kphl', 0.0027537514710422222) +zone = ('njz017', 0.00041108683135511627) + +[fips3462910] +centroid = (0.71265872193390389, -1.2918077846048008) +description = Ridgefield borough, NJ +station = ('kteb', 0.00075556789250294065) +zone = ('nyz072', 0.0011368562267173137) + +[fips3462940] +centroid = (0.71304911718098996, -1.2918914207825563) +description = Ridgefield Park village, NJ +station = ('kteb', 0.00044852531584700238) +zone = ('njz104', 0.0010668084900408836) + +[fips3463000] +centroid = (0.71526369565567549, -1.2935246998965726) +description = Ridgewood village, NJ +station = ('kteb', 0.0021736207984460482) +zone = ('njz103', 0.00092197825774144304) + +[fips3463150] +centroid = (0.71739948996792602, -1.2962758973030761) +description = Ringwood borough, NJ +station = ('kcdw', 0.0038540639475002072) +zone = ('njz002', 0.0010768004265374264) + +[fips3463180] +centroid = (0.6810109109535859, -1.3068653683802864) +description = Rio Grande CDP, NJ +station = ('kwwd', 0.00052773895706682145) +zone = ('njz024', 0.0019577822284610543) + +[fips3463300] +centroid = (0.71550636623487274, -1.2970527433531389) +description = Riverdale borough, NJ +station = ('kcdw', 0.0020034156881922958) +zone = ('njz002', 0.0017737917095790761) + +[fips3463360] +centroid = (0.71430681889326963, -1.2921975864399411) +description = River Edge borough, NJ +station = ('kteb', 0.0010618810758109818) +zone = ('njz104', 0.00027589650819711994) + +[fips3463660] +centroid = (0.69833995348407985, -1.3092541132610285) +description = Riverton borough, NJ +station = ('kpne', 0.0012464555716534026) +zone = ('paz071', 0.0015934657086653266) + +[fips3463840] +centroid = (0.70197091900663633, -1.3025431477541851) +description = Robbinsville CDP, NJ +station = ('kttn', 0.0027186044495043646) +zone = ('njz015', 0.0014570846747383669) + +[fips3463900] +centroid = (0.70404416071849529, -1.2966816863541648) +description = Robertsville CDP, NJ +station = ('kblm', 0.0034583084707621209) +zone = ('njz013', 0.0014496882453421869) + +[fips3464050] +centroid = (0.71376611589100181, -1.3005745210776907) +description = Rockaway borough, NJ +station = ('kmmu', 0.0021365071814197618) +zone = ('njz008', 0.00068794156913407881) + +[fips3464170] +centroid = (0.71558919956117251, -1.2903929159933789) +description = Rockleigh borough, NJ +station = ('kteb', 0.0027877732388263505) +zone = ('njz104', 0.0018781691657668144) + +[fips3464320] +centroid = (0.70511909155150609, -1.3026949390392311) +description = Rocky Hill borough, NJ +station = ('kttn', 0.0031243937006001834) +zone = ('njz015', 0.0022059751422031856) + +[fips3464350] +centroid = (0.70017752338704198, -1.3051195853426867) +description = Roebling CDP, NJ +station = ('kttn', 0.002945105614751295) +zone = ('njz019', 0.0023240453250110331) + +[fips3464410] +centroid = (0.70198437549516912, -1.2997493992205178) +description = Roosevelt borough, NJ +station = ('knel', 0.0038593211751279254) +zone = ('njz015', 0.0032693415315906502) + +[fips3464590] +centroid = (0.71244097465642509, -1.2969570993101298) +description = Roseland borough, NJ +station = ('kcdw', 0.0011630681064517712) +zone = ('njz105', 0.00052725336132072723) + +[fips3464620] +centroid = (0.70951493016545653, -1.2960842601512073) +description = Roselle borough, NJ +station = ('kewr', 0.0013516209628187858) +zone = ('njz108', 0.0003336130940722686) + +[fips3464650] +centroid = (0.70974276544601189, -1.2961985443106279) +description = Roselle Park borough, NJ +station = ('kewr', 0.0013612562776099736) +zone = ('njz108', 0.00049876483993672126) + +[fips3464740] +centroid = (0.68903295034123491, -1.3114039225671725) +description = Rosenhayn CDP, NJ +station = ('kmiv', 0.0020888907683206579) +zone = ('njz021', 0.0018741744880957458) + +[fips3464860] +centroid = (0.71781075935286598, -1.3039940574146607) +description = Ross Corner CDP, NJ +station = ('kfwn', 0.0016448394206692632) +zone = ('njz001', 0.00036823691199626288) + +[fips3464865] +centroid = (0.70393923152386539, -1.2997889658346604) +description = Rossmoor CDP, NJ +station = ('kttn', 0.0046621798974982188) +zone = ('njz012', 0.0020310680866437512) + +[fips3465130] +centroid = (0.70445330080174773, -1.2916252929782122) +description = Rumson borough, NJ +station = ('kblm', 0.0035610352607228016) +zone = ('njz014', 0.0018879226361942531) + +[fips3465160] +centroid = (0.69554404074213994, -1.3103024976361166) +description = Runnemede borough, NJ +station = ('kphl', 0.0021398362595045697) +zone = ('njz018', 0.0017527116375860379) + +[fips3465280] +centroid = (0.71244888099793668, -1.2933944110679112) +description = Rutherford borough, NJ +station = ('kteb', 0.001096353173947149) +zone = ('njz006', 0.0014347599600488298) + +[fips3465400] +centroid = (0.71599856653722771, -1.2931590010584022) +description = Saddle River borough, NJ +station = ('kteb', 0.0027975024533452666) +zone = ('njz103', 0.00081838042423158048) + +[fips3465490] +centroid = (0.69059599740615096, -1.317244544735924) +description = Salem city, NJ +station = ('kilg', 0.0024263773562134415) +zone = ('njz016', 0.001735627942051091) + +[fips3465790] +centroid = (0.70628861922997499, -1.2971173728953402) +description = Sayreville borough, NJ +station = ('kewr', 0.0042785538765505275) +zone = ('njz012', 0.0013150327074137153) + +[fips3466240] +centroid = (0.70439615872203754, -1.2910958473496197) +description = Sea Bright borough, NJ +station = ('kblm', 0.0037249143094501354) +zone = ('njz014', 0.0019454760937225497) + +[fips3466300] +centroid = (0.68942521309062066, -1.3128428592689791) +description = Seabrook Farms CDP, NJ +station = ('kmiv', 0.0029868611372160059) +zone = ('njz016', 0.0022606090239441043) + +[fips3466330] +centroid = (0.70040933801829186, -1.2921343182545564) +description = Sea Girt borough, NJ +station = ('kblm', 0.0016160402854239031) +zone = ('njz014', 0.002185936659691605) + +[fips3466390] +centroid = (0.68336268976077075, -1.3036982764663252) +description = Sea Isle City city, NJ +station = ('kwwd', 0.0038251911484239501) +zone = ('njz024', 0.0014449813089653111) + +[fips3466450] +centroid = (0.69717138573669946, -1.2929186692204027) +description = Seaside Heights borough, NJ +station = ('knel', 0.0035350888346757391) +zone = ('njz026', 0.0029556301691167773) + +[fips3466480] +centroid = (0.69683432775155429, -1.2929181630749196) +description = Seaside Park borough, NJ +station = ('knel', 0.0036953126088436262) +zone = ('njz026', 0.0026486713640029203) + +[fips3466570] +centroid = (0.71177944251004166, -1.2927243442614855) +description = Secaucus town, NJ +station = ('knyc', 0.0013347488040248729) +zone = ('njz006', 0.00072661716747708064) + +[fips3466720] +centroid = (0.70774368277407007, -1.2960794954023493) +description = Sewaren CDP, NJ +station = ('kewr', 0.0026233216501229248) +zone = ('njz108', 0.0017564075981481222) + +[fips3466840] +centroid = (0.70150135562467975, -1.2923196373145331) +description = Shark River Hills CDP, NJ +station = ('kblm', 0.0011970576474872388) +zone = ('njz014', 0.0011111839223008921) + +[fips3467020] +centroid = (0.68874634982476501, -1.314102376123681) +description = Shiloh borough, NJ +station = ('kmiv', 0.0032771462916927987) +zone = ('njz016', 0.0022959940072641285) + +[fips3467110] +centroid = (0.69194196041870393, -1.2947376513668309) +description = Ship Bottom borough, NJ +station = ('kacy', 0.0062246643862078734) +zone = ('njz026', 0.0025191085079436797) + +[fips3467320] +centroid = (0.71103242413689549, -1.2972585874851192) +description = Short Hills CDP, NJ +station = ('kmmu', 0.0015870079578194107) +zone = ('njz105', 0.0013065369959121503) + +[fips3467350] +centroid = (0.7038225911699546, -1.2925850320805914) +description = Shrewsbury borough, NJ +station = ('kblm', 0.0026774054743190414) +zone = ('njz014', 0.0012920832089347914) + +[fips3467590] +centroid = (0.71175284369224123, -1.2947344050544223) +description = Silver Lake CDP, NJ +station = ('kewr', 0.0017081338952942445) +zone = ('njz106', 0.00059107136525308568) + +[fips3467650] +centroid = (0.71440469695772146, -1.3080387183298172) +description = Silver Lake CDP, NJ +station = ('k12n', 0.0031545429007472656) +zone = ('njz007', 0.0014768780616590403) + +[fips3467665] +centroid = (0.6974635189468984, -1.2956615414063744) +description = Silver Ridge CDP, NJ +station = ('knel', 0.001651502023885089) +zone = ('njz020', 0.0012380616057528302) + +[fips3467770] +centroid = (0.71356484452166169, -1.2957942038828183) +description = Singac CDP, NJ +station = ('kcdw', 0.00052534648889362458) +zone = ('njz004', 0.00081861613873284692) + +[fips3467820] +centroid = (0.70633324729894853, -1.3008326727273531) +description = Six Mile Run CDP, NJ +station = ('ksmq', 0.0031208870624627044) +zone = ('njz010', 0.0019808713241152099) + +[fips3467860] +centroid = (0.70560504357513887, -1.3039755045647119) +description = Skillman CDP, NJ +station = ('kttn', 0.0028842761731147273) +zone = ('njz015', 0.0025328959416750902) + +[fips3468190] +centroid = (0.68931672342431682, -1.2998973682345019) +description = Smithville CDP, NJ +station = ('kacy', 0.0014942554761548101) +zone = ('njz025', 0.0018366802677052235) + +[fips3468304] +centroid = (0.70746062527598175, -1.2995037441282995) +description = Society Hill CDP, NJ +station = ('ksmq', 0.0031384046425736441) +zone = ('njz012', 0.0017631670729556324) + +[fips3468340] +centroid = (0.69543326469451594, -1.3093756928967224) +description = Somerdale borough, NJ +station = ('kvay', 0.0029528164989260468) +zone = ('njz018', 0.0011014416112415191) + +[fips3468370] +centroid = (0.70700682221717071, -1.3002739055673271) +description = Somerset CDP, NJ +station = ('ksmq', 0.0029042987258803259) +zone = ('njz012', 0.0016876364644100713) + +[fips3468430] +centroid = (0.68619504497749217, -1.3021337807781299) +description = Somers Point city, NJ +station = ('kacy', 0.0026471764782148295) +zone = ('njz025', 0.0025652202022893207) + +[fips3468460] +centroid = (0.70807571421096949, -1.302149698180908) +description = Somerville borough, NJ +station = ('ksmq', 0.0011320864842022463) +zone = ('njz010', 0.00015558042170177064) + +[fips3468550] +centroid = (0.70662654987974616, -1.2964133943415483) +description = South Amboy city, NJ +station = ('kewr', 0.0037407557000225865) +zone = ('njz012', 0.0019410448663189079) + +[fips3468730] +centroid = (0.70779989982927682, -1.3007494728819107) +description = South Bound Brook borough, NJ +station = ('ksmq', 0.0021454796672916855) +zone = ('njz010', 0.0011903138765989058) + +[fips3469390] +centroid = (0.70815709891399004, -1.2987832722130763) +description = South Plainfield borough, NJ +station = ('kmmu', 0.0039373134029631589) +zone = ('njz107', 0.0017767893826902137) + +[fips3469420] +centroid = (0.70590979551582966, -1.2981490021096092) +description = South River borough, NJ +station = ('kewr', 0.0050093964326133177) +zone = ('njz012', 0.00044966580456564336) + +[fips3469510] +centroid = (0.69710932182849861, -1.2952041778758892) +description = South Toms River borough, NJ +station = ('knel', 0.0021489808987220963) +zone = ('njz020', 0.0013960618368746634) + +[fips3469810] +centroid = (0.70503774175507061, -1.298351983901616) +description = Spotswood borough, NJ +station = ('kblm', 0.0050418893314734189) +zone = ('njz012', 0.00081333268053942662) + +[fips3469900] +centroid = (0.69597077374425254, -1.3085107775326041) +description = Springdale CDP, NJ +station = ('kvay', 0.0021092101515145763) +zone = ('njz018', 0.0012740213859885414) + +[fips3470110] +centroid = (0.70079769123015312, -1.2920178698868632) +description = Spring Lake borough, NJ +station = ('kblm', 0.0015131648257648226) +zone = ('njz014', 0.0017970846458819237) + +[fips3470140] +centroid = (0.70074257373237514, -1.2923461663191633) +description = Spring Lake Heights borough, NJ +station = ('kblm', 0.001305426233957211) +zone = ('njz014', 0.0018649197082940758) + +[fips3470380] +centroid = (0.71406613798941954, -1.3038118101341674) +description = Stanhope borough, NJ +station = ('k12n', 0.0018536165185782068) +zone = ('njz008', 0.0022710011074318199) + +[fips3470800] +centroid = (0.71024329096889882, -1.3109419688207546) +description = Stewartsville CDP, NJ +station = ('kukt', 0.0057673099937530113) +zone = ('njz007', 0.0032290375480330726) + +[fips3470980] +centroid = (0.70520780663738492, -1.3085462251697122) +description = Stockton borough, NJ +station = ('kdyl', 0.0022745364598734468) +zone = ('paz069', 0.0021287848779062272) + +[fips3471010] +centroid = (0.68140568697709458, -1.3049613363394084) +description = Stone Harbor borough, NJ +station = ('kwwd', 0.0020520502426773449) +zone = ('njz024', 0.00093517234663272552) + +[fips3471220] +centroid = (0.69514643728524317, -1.3092667319915203) +description = Stratford borough, NJ +station = ('kvay', 0.0030444231740862386) +zone = ('njz018', 0.00086459103584486674) + +[fips3471250] +centroid = (0.68410169707265023, -1.3030525570029647) +description = Strathmere CDP, NJ +station = ('kwwd', 0.0046851628930155622) +zone = ('njz024', 0.0023276471693598022) + +[fips3471280] +centroid = (0.70514071618093832, -1.2953720087367608) +description = Strathmore CDP, NJ +station = ('kblm', 0.0039776338434311933) +zone = ('njz013', 0.002540513738143809) + +[fips3471370] +centroid = (0.71298485415793145, -1.3030314210657232) +description = Succasunna CDP, NJ +station = ('k12n', 0.0030560466330396608) +zone = ('njz008', 0.0015133428811615677) + +[fips3471430] +centroid = (0.71062166089743872, -1.2979085830051469) +description = Summit city, NJ +station = ('kmmu', 0.001625133558356162) +zone = ('njz107', 0.00086029257702906529) + +[fips3471640] +centroid = (0.69223397145585519, -1.2945012116130634) +description = Surf City borough, NJ +station = ('knel', 0.0067731129785346539) +zone = ('njz026', 0.0022160044545406384) + +[fips3471670] +centroid = (0.71924772383261792, -1.3021296792543875) +description = Sussex borough, NJ +station = ('kfwn', 0.0003917103575051504) +zone = ('njz001', 0.0016493447515633756) + +[fips3471850] +centroid = (0.69369653991573388, -1.314423987944946) +description = Swedesboro borough, NJ +station = ('kphl', 0.0023509172282183298) +zone = ('njz017', 0.002323214323630576) + +[fips3472240] +centroid = (0.69597590501225348, -1.3094852646671626) +description = Tavistock borough, NJ +station = ('kvay', 0.0027885387412793952) +zone = ('njz018', 0.0015625506368241063) + +[fips3472420] +centroid = (0.71415921639842839, -1.2906800750152094) +description = Tenafly borough, NJ +station = ('kteb', 0.0015921748019795874) +zone = ('njz104', 0.00094900352982344284) + +[fips3472435] +centroid = (0.70553427047397044, -1.3017773496382876) +description = Ten Mile Run CDP, NJ +station = ('ksmq', 0.0035252154718351399) +zone = ('njz010', 0.0024680791547947996) + +[fips3472480] +centroid = (0.71301934186395088, -1.2925970399458451) +description = Teterboro borough, NJ +station = ('kteb', 0.00027493189869260911) +zone = ('njz104', 0.0012050836718459654) + +[fips3473020] +centroid = (0.7027862844732905, -1.2932670892989784) +description = Tinton Falls borough, NJ +station = ('kblm', 0.0015260784427853162) +zone = ('njz014', 0.00094199586125973957) + +[fips3473110] +centroid = (0.69804192106100915, -1.2948205719595933) +description = Toms River CDP, NJ +station = ('knel', 0.0018494395210893958) +zone = ('njz020', 0.00210203187420789) + +[fips3473140] +centroid = (0.71389666651905093, -1.2954073167475288) +description = Totowa borough, NJ +station = ('kcdw', 0.00088843084670614698) +zone = ('njz004', 0.0003778882293936646) + +[fips3474000] +centroid = (0.70203684009248413, -1.304877979414333) +description = Trenton city, NJ +station = ('kttn', 0.0012544501771139468) +zone = ('njz015', 0.0013316941583764218) + +[fips3474210] +centroid = (0.69101206644653401, -1.2973645115174226) +description = Tuckerton borough, NJ +station = ('kacy', 0.0040125753731437555) +zone = ('njz025', 0.0037840510880328263) + +[fips3474270] +centroid = (0.69405539706323638, -1.3100790954918613) +description = Turnersville CDP, NJ +station = ('kphl', 0.0028870588994025538) +zone = ('njz017', 0.0013731137300136984) + +[fips3474330] +centroid = (0.70272530266922573, -1.3000581130586106) +description = Twin Rivers CDP, NJ +station = ('kttn', 0.0043928104641756845) +zone = ('njz015', 0.0028666883119702106) + +[fips3474540] +centroid = (0.70591325126774851, -1.2945268679530675) +description = Union Beach borough, NJ +station = ('kewr', 0.0041452507914142341) +zone = ('nyz074', 0.002353537439425314) + +[fips3474630] +centroid = (0.71152640467508754, -1.2921073005577355) +description = Union City city, NJ +station = ('knyc', 0.00091057469610972969) +zone = ('njz006', 0.00075529654961214348) + +[fips3475020] +centroid = (0.71283742619601553, -1.2950570291666534) +description = Upper Montclair CDP, NJ +station = ('kcdw', 0.0012955375973858728) +zone = ('njz105', 0.0012079597262128088) + +[fips3475120] +centroid = (0.70995576542792527, -1.3117161794236467) +description = Upper Pohatcong CDP, NJ +station = ('kabe', 0.003924335280042714) +zone = ('paz062', 0.0024124813814931098) + +[fips3475140] +centroid = (0.71668729091335714, -1.2932885568487777) +description = Upper Saddle River borough, NJ +station = ('kteb', 0.0034920789446059469) +zone = ('njz103', 0.00098936504574467592) + +[fips3475145] +centroid = (0.71039761298136017, -1.3110804956034854) +description = Upper Stewartsville CDP, NJ +station = ('kabe', 0.0044722233436479955) +zone = ('njz007', 0.0031461055654248109) + +[fips3475620] +centroid = (0.68664858623691549, -1.2999704102636978) +description = Ventnor City city, NJ +station = ('kacy', 0.002562571092419118) +zone = ('njz025', 0.0010263559641711026) + +[fips3475745] +centroid = (0.71887998295922273, -1.3003409087573112) +description = Vernon Center CDP, NJ +station = ('kfwn', 0.0017091987057453839) +zone = ('njz002', 0.0026031082818493865) + +[fips3475750] +centroid = (0.71981160480735229, -1.3000267669452448) +description = Vernon Valley CDP, NJ +station = ('kfwn', 0.0020688820102088669) +zone = ('njz002', 0.0031389032614643512) + +[fips3475890] +centroid = (0.71342331577261753, -1.3010295458669781) +description = Victory Gardens borough, NJ +station = ('kmmu', 0.0021380185985362694) +zone = ('njz008', 0.00024548512749995524) + +[fips3475920] +centroid = (0.69168372150257895, -1.3084596917453983) +description = Victory Lakes CDP, NJ +station = ('kmiv', 0.0048554182804266006) +zone = ('njz017', 0.0027700558434992444) + +[fips3475950] +centroid = (0.71335528283837479, -1.3067719758120122) +description = Vienna CDP, NJ +station = ('k12n', 0.003117746975800324) +zone = ('njz007', 0.0016633511039801413) + +[fips3476010] +centroid = (0.68096230353391796, -1.3078793872224026) +description = Villas CDP, NJ +station = ('kwwd', 0.00026184458918840814) +zone = ('njz024', 0.0026169701996154901) + +[fips3476070] +centroid = (0.68879431147260983, -1.308946586246827) +description = Vineland city, NJ +station = ('kmiv', 0.0020730171755459657) +zone = ('njz021', 0.0022052657893901141) + +[fips3476107] +centroid = (0.70089460936351633, -1.2972028067622254) +description = Vista Center CDP, NJ +station = ('knel', 0.0021834783089748943) +zone = ('njz013', 0.0019563746012732858) + +[fips3476250] +centroid = (0.70654725957182807, -1.3001394977616312) +description = Voorhees CDP, NJ +station = ('ksmq', 0.0032930950994811805) +zone = ('njz012', 0.0013115828749965192) + +[fips3476400] +centroid = (0.71582261989533413, -1.2937413476166226) +description = Waldwick borough, NJ +station = ('kteb', 0.0027531257333522079) +zone = ('njz103', 0.0004223958272061998) + +[fips3476490] +centroid = (0.71302082539381517, -1.2933993328964017) +description = Wallington borough, NJ +station = ('kteb', 0.00078035094223967384) +zone = ('njz104', 0.0015570641316314873) + +[fips3476700] +centroid = (0.70226491971913463, -1.2920474357643921) +description = Wanamassa CDP, NJ +station = ('kblm', 0.0016763652610622775) +zone = ('njz014', 0.00032969651657386185) + +[fips3476730] +centroid = (0.71634309453157141, -1.2966007030768725) +description = Wanaque borough, NJ +station = ('kcdw', 0.0027955972862281566) +zone = ('njz002', 0.001194628058421954) + +[fips3476820] +centroid = (0.69446322814954997, -1.2949169315875959) +description = Waretown CDP, NJ +station = ('knel', 0.0045599686543912306) +zone = ('njz026', 0.00038348535775182093) + +[fips3477270] +centroid = (0.71137045950642175, -1.3087035491484869) +description = Washington borough, NJ +station = ('ksmq', 0.0048659746864211017) +zone = ('njz007', 0.00173531089384059) + +[fips3477600] +centroid = (0.70935146262771476, -1.2991573486316563) +description = Watchung borough, NJ +station = ('kmmu', 0.0027550560929126481) +zone = ('njz107', 0.001116997328977129) + +[fips3478110] +centroid = (0.69447628321235488, -1.3115828362687945) +description = Wenonah borough, NJ +station = ('kphl', 0.0017514789438489217) +zone = ('njz017', 0.0012813851301859396) + +[fips3478350] +centroid = (0.70111036696564788, -1.2921995237554107) +description = West Belmar CDP, NJ +station = ('kblm', 0.0012959117968679272) +zone = ('njz014', 0.001488041766686336) + +[fips3478530] +centroid = (0.67967006175574129, -1.3079328641106838) +description = West Cape May borough, NJ +station = ('kwwd', 0.0013342033466285526) +zone = ('njz024', 0.0035029777033187674) + +[fips3479040] +centroid = (0.70950503414859767, -1.2975379274319008) +description = Westfield town, NJ +station = ('kmmu', 0.0027644883781453604) +zone = ('njz107', 0.00032365955170142073) + +[fips3479100] +centroid = (0.70216175330704933, -1.296676188567021) +description = West Freehold CDP, NJ +station = ('kblm', 0.0022978062315246071) +zone = ('njz013', 0.00066353481603090248) + +[fips3479310] +centroid = (0.70315657352739358, -1.2918930439387606) +description = West Long Branch borough, NJ +station = ('kblm', 0.0023686298823827521) +zone = ('njz014', 0.00057607144504375808) + +[fips3479610] +centroid = (0.71185054722376784, -1.2917095749277909) +description = West New York town, NJ +station = ('knyc', 0.00056809539120833386) +zone = ('nyz072', 0.00058297604508488149) + +[fips3479715] +centroid = (0.70733037135390531, -1.3014428049272653) +description = Weston CDP, NJ +station = ('ksmq', 0.0020460394011085586) +zone = ('njz010', 0.00091306065119046249) + +[fips3480120] +centroid = (0.69584395812080269, -1.3112935130386913) +description = Westville borough, NJ +station = ('kphl', 0.0013635868566677241) +zone = ('paz071', 0.002420569358209672) + +[fips3480210] +centroid = (0.68068884534671537, -1.305917706956331) +description = West Wildwood borough, NJ +station = ('kwwd', 0.0012933191005961885) +zone = ('njz024', 0.0017940604817332491) + +[fips3480270] +centroid = (0.71539356560531642, -1.2920999178149997) +description = Westwood borough, NJ +station = ('kteb', 0.0021490145118837514) +zone = ('njz104', 0.0012842234384101534) + +[fips3480390] +centroid = (0.71378564612533146, -1.3015669327436672) +description = Wharton borough, NJ +station = ('kmmu', 0.0026816471264724823) +zone = ('njz008', 0.00072358159070480099) + +[fips3480630] +centroid = (0.70147964372878491, -1.3037848971571016) +description = White Horse CDP, NJ +station = ('kttn', 0.0022159760728637326) +zone = ('njz015', 0.0015965757506176714) + +[fips3480720] +centroid = (0.7088858785964528, -1.3050157207989006) +description = White House Station CDP, NJ +station = ('ksmq', 0.0013941211106885598) +zone = ('njz010', 0.0022563815953283084) + +[fips3480750] +centroid = (0.71433668147677121, -1.3005628448249948) +description = White Meadow Lake CDP, NJ +station = ('kmmu', 0.0026026226097556368) +zone = ('njz008', 0.0012149216763803637) + +[fips3480855] +centroid = (0.68141584479334116, -1.3066954431243123) +description = Whitesboro CDP, NJ +station = ('kwwd', 0.00079522570640931883) +zone = ('njz024', 0.0015993781314045672) + +[fips3481042] +centroid = (0.70390074701385896, -1.2993208859825682) +description = Whittingham CDP, NJ +station = ('kttn', 0.0050070035640808535) +zone = ('njz012', 0.0019538944872758168) + +[fips3481170] +centroid = (0.6804849210769125, -1.3058522745626737) +description = Wildwood city, NJ +station = ('kwwd', 0.0013999634012539701) +zone = ('njz024', 0.0019659538171677166) + +[fips3481200] +centroid = (0.68020003098310944, -1.3061800823027834) +description = Wildwood Crest borough, NJ +station = ('kwwd', 0.0013088116636321263) +zone = ('njz024', 0.0023237052319557121) + +[fips3481380] +centroid = (0.69261843258348454, -1.3084527278816827) +description = Williamstown CDP, NJ +station = ('kvay', 0.0047137783033409123) +zone = ('njz018', 0.0020923585298991266) + +[fips3481890] +centroid = (0.68466472283605107, -1.3056760312148075) +description = Woodbine borough, NJ +station = ('kwwd', 0.0039689894981053972) +zone = ('njz023', 0.00091750795535090529) + +[fips3481950] +centroid = (0.70781794653374241, -1.296518079190083) +description = Woodbridge CDP, NJ +station = ('kewr', 0.0027343296272967703) +zone = ('njz108', 0.001778454155221348) + +[fips3482120] +centroid = (0.69530264425329669, -1.3116416364112942) +description = Woodbury city, NJ +station = ('kphl', 0.0012055413534003939) +zone = ('njz017', 0.0021089487886640943) + +[fips3482180] +centroid = (0.69487449753448993, -1.3116257015552235) +description = Woodbury Heights borough, NJ +station = ('kphl', 0.0014470183566369086) +zone = ('njz017', 0.0016809155815344671) + +[fips3482300] +centroid = (0.71603837749746568, -1.292609361970364) +description = Woodcliff Lake borough, NJ +station = ('kteb', 0.0027843106943229541) +zone = ('njz103', 0.0012333053071533629) + +[fips3482423] +centroid = (0.7136635254375695, -1.2949397255876269) +description = Woodland Park borough, NJ +station = ('kcdw', 0.0011766777709881038) +zone = ('njz004', 0.00048838308217675141) + +[fips3482450] +centroid = (0.69667396689988104, -1.3106645836427353) +description = Woodlynne borough, NJ +station = ('kphl', 0.0020396551663941316) +zone = ('paz071', 0.0016706710673851475) + +[fips3482570] +centroid = (0.71297019339221479, -1.2930632697489304) +description = Wood-Ridge borough, NJ +station = ('kteb', 0.00056762255098144086) +zone = ('njz104', 0.0014281899354016895) + +[fips3482720] +centroid = (0.6920261551018202, -1.3146907789744058) +description = Woodstown borough, NJ +station = ('kilg', 0.00368974760995325) +zone = ('njz016', 0.0011305286681772774) + +[fips3482960] +centroid = (0.69872734676485249, -1.3024099965855505) +description = Wrightstown borough, NJ +station = ('kwri', 0.0004290441886626517) +zone = ('njz019', 0.0019932543133026324) + +[fips3483170] +centroid = (0.70138927058011658, -1.3031165756799277) +description = Yardville CDP, NJ +station = ('kttn', 0.0026524290648321648) +zone = ('njz015', 0.0017629062236919782) + +[fips3483245] +centroid = (0.70347073279275252, -1.2974585498575202) +description = Yorketown CDP, NJ +station = ('kblm', 0.0034750593351460944) +zone = ('njz013', 0.0013106674783292052) + +[fips3483290] +centroid = (0.70746175973999548, -1.3015302633760828) +description = Zarephath CDP, NJ +station = ('ksmq', 0.0019030248351833937) +zone = ('njz010', 0.00077499605722232835) + +[fips35001] +centroid = (0.61180775090067729, -1.8617263942738453) +description = Bernalillo County, NM +station = ('kabq', 0.0010507515848598025) +zone = ('nmz519', 0.0014037269879676694) + +[fips3500190060] +centroid = (0.61225958173743356, -1.8607204563061657) +description = Albuquerque CCD, NM +station = ('kabq', 0.00082881100960346065) +zone = ('nmz519', 0.0023321402033344369) + +[fips3500191095] +centroid = (0.61177713782559728, -1.8560582979016536) +description = East Bernalillo CCD, NM +station = ('kabq', 0.0036685870833513354) +zone = ('nmz521', 0.0018223766421297341) + +[fips3500191590] +centroid = (0.60941226904902257, -1.8623945586713861) +description = Isleta Pueblo CCD, NM +station = ('kabq', 0.0025489334978888814) +zone = ('nmz519', 0.0015839060615133263) + +[fips3500193735] +centroid = (0.61268394109176361, -1.8670725646655066) +description = West Bernalillo CCD, NM +station = ('kaeg', 0.0026715453535540012) +zone = ('nmz519', 0.0037501309173888762) + +[fips3500240] +centroid = (0.60153125226493465, -1.8642517111685557) +description = Abeytas CDP, NM +station = ('ke80', 0.0032162622995674083) +zone = ('nmz519', 0.0094269138516691695) + +[fips35003] +centroid = (0.59169827669870889, -1.8917989757910683) +description = Catron County, NM +station = ('ksjn', 0.017884309712744174) +zone = ('nmz508', 0.0046724287905382852) + +[fips3500310] +centroid = (0.63189045175192016, -1.8557418871615594) +description = Abiquiu CDP, NM +station = ('klam', 0.0057279518292806617) +zone = ('nmz517', 0.0031528571564780777) + +[fips3500392460] +centroid = (0.59430586841435851, -1.8896937421940201) +description = Quemado CCD, NM +station = ('ksjn', 0.017974299107911526) +zone = ('nmz508', 0.0039656100030503278) + +[fips3500392580] +centroid = (0.58614971792698622, -1.8976852732263441) +description = Reserve CCD, NM +station = ('ksad', 0.018392635229512642) +zone = ('nmz509', 0.0031181486641782075) + +[fips35005] +centroid = (0.58226985099980277, -1.8233426246717952) +description = Chaves County, NM +station = ('krow', 0.0014189521570414495) +zone = ('nmz538', 0.0033210805468219316) + +[fips3500590960] +centroid = (0.57902980432310802, -1.8220681328921116) +description = Dexter CCD, NM +station = ('krow', 0.002942477768773189) +zone = ('nmz538', 0.0057612784341745599) + +[fips3500591410] +centroid = (0.5767246258069515, -1.819099258021299) +description = Hagerman CCD, NM +station = ('kats', 0.0048574719018651194) +zone = ('nmz538', 0.0080243125080757972) + +[fips3500592190] +centroid = (0.58797931167526685, -1.8152884014127395) +description = Northeast Chaves CCD, NM +station = ('krow', 0.010218361292622595) +zone = ('nmz538', 0.0055163047595989251) + +[fips3500592280] +centroid = (0.58825879124838876, -1.8257014720624507) +description = Northwest Chaves CCD, NM +station = ('krow', 0.007140710699830112) +zone = ('nmz538', 0.0055899435426712942) + +[fips3500592670] +centroid = (0.58286863855957705, -1.8243091705582573) +description = Roswell CCD, NM +station = ('krow', 0.0016781758449830632) +zone = ('nmz538', 0.0035930507075339038) + +[fips3500593090] +centroid = (0.58103735184192196, -1.8163383565841542) +description = Southeast Chaves CCD, NM +station = ('krow', 0.0067826459732343242) +zone = ('nmz538', 0.0050570719509310993) + +[fips3500593240] +centroid = (0.57542802070564492, -1.8336846429676579) +description = Southwest Chaves CCD, NM +station = ('kats', 0.0089528954797122116) +zone = ('nmz540', 0.0026804898581288036) + +[fips35006] +centroid = (0.60967928697128515, -1.8849600427434685) +description = Cibola County, NM +station = ('kgnt', 0.004338159129632849) +zone = ('nmz506', 0.0026516141428694052) + +[fips3500691320] +centroid = (0.6061613140645028, -1.8977216109813706) +description = Fence Lake CCD, NM +station = ('ksjn', 0.010079035655504071) +zone = ('nmz505', 0.0053056921580072703) + +[fips3500691380] +centroid = (0.61053763989741594, -1.884456951586581) +description = Grants CCD, NM +station = ('kgnt', 0.0033934971507847268) +zone = ('nmz506', 0.0020772986429792211) + +[fips3500691710] +centroid = (0.60942471324658931, -1.8741540635725484) +description = Laguna CCD, NM +station = ('kgnt', 0.0085961111383163306) +zone = ('nmz507', 0.00095994931965353951) + +[fips3500693900] +centroid = (0.60927499890335324, -1.8939636378491465) +description = Zuni-Ramah Navajo CCD, NM +station = ('kgnt', 0.009887474997163144) +zone = ('nmz505', 0.0047580453620437837) + +[fips35007] +centroid = (0.6390167532608606, -1.8263147284017238) +description = Colfax County, NM +station = ('krtn', 0.002264670198161213) +zone = ('nmz527', 0.0054270792980504658) + +[fips3500765] +centroid = (0.61206780495922453, -1.8782087077710266) +description = Acomita Lake CDP, NM +station = ('kgnt', 0.0044326988463602212) +zone = ('nmz507', 0.0041100010845279075) + +[fips3500790600] +centroid = (0.63835031673927911, -1.8340525060141006) +description = Cimarron CCD, NM +station = ('kaxx', 0.0038601770943756902) +zone = ('nmz513', 0.0048488929448074116) + +[fips3500792520] +centroid = (0.64211050643965328, -1.8229275155625011) +description = Raton CCD, NM +station = ('krtn', 0.0030778307508921754) +zone = ('nmz527', 0.0019076387114541856) + +[fips3500793270] +centroid = (0.63538025504457529, -1.8232558294480938) +description = Springer CCD, NM +station = ('krtn', 0.0064788893164244576) +zone = ('nmz528', 0.003133375716024595) + +[fips35009] +centroid = (0.6034124030393192, -1.8037289286971485) +description = Curry County, NM +station = ('kcvs', 0.003336925072624862) +zone = ('nmz535', 2.3770803879121545e-05) + +[fips3500940] +centroid = (0.60574468651875935, -1.8627980089812772) +description = Adelino CDP, NM +station = ('ke80', 0.001767758872588818) +zone = ('nmz519', 0.0051644974169185376) + +[fips3500990390] +centroid = (0.60724278988220859, -1.8015831685548691) +description = Broadview CCD, NM +station = ('kcvn', 0.0065814867915799814) +zone = ('nmz535', 0.0042024935675694132) + +[fips3500990720] +centroid = (0.60218760078343969, -1.8018576041264527) +description = Clovis CCD, NM +station = ('kcvs', 0.0023670964893577986) +zone = ('nmz535', 0.0019904576079096815) + +[fips3500992010] +centroid = (0.6021958736440941, -1.8077411613948031) +description = Melrose CCD, NM +station = ('kcvs', 0.0042789369959782709) +zone = ('nmz535', 0.0035191881156996004) + +[fips35011] +centroid = (0.59954553881506323, -1.822150390259758) +description = De Baca County, NM +station = ('k4mr', 0.0087165676408197529) +zone = ('nmz537', 0.00021819518514469736) + +[fips3501191110] +centroid = (0.59921347247157875, -1.8181766071655248) +description = East De Baca CCD, NM +station = ('k4mr', 0.0054187118586402818) +zone = ('nmz537', 0.0034366381191486477) + +[fips3501193750] +centroid = (0.5997180646116228, -1.8253007793727778) +description = West De Baca CCD, NM +station = ('k4mr', 0.011321969295337915) +zone = ('nmz537', 0.0024721544045869072) + +[fips3501220] +centroid = (0.62242544395189237, -1.850360967264491) +description = Agua Fria CDP, NM +station = ('ksaf', 0.0012238684186801911) +zone = ('nmz518', 0.0026929194439552534) + +[fips35013] +centroid = (0.56462993042294385, -1.8645733229898209) +description = Doña Ana County, NM +station = ('klru', 0.0017040324497875183) +zone = ('nmz411', 0.0042335713600311188) + +[fips3501390090] +centroid = (0.55932878952598386, -1.8585060174578203) +description = Anthony CCD, NM +station = ('kbif', 0.0037537105924109158) +zone = ('txz418', 0.0029318192228364928) + +[fips3501391050] +centroid = (0.56887238950222896, -1.863978951113054) +description = Doña Ana-Hill CCD, NM +station = ('klru', 0.0056194492173802886) +zone = ('nmz410', 0.0017950983583416976) + +[fips3501391260] +centroid = (0.56453901622220737, -1.8683933076703683) +description = Fairacres CCD, NM +station = ('klru', 0.0021425298969619099) +zone = ('nmz411', 0.0043887485311287812) + +[fips3501391440] +centroid = (0.56940146861167862, -1.8697881748085621) +description = Hatch CCD, NM +station = ('klru', 0.0066054911774151969) +zone = ('nmz410', 0.0031304700550270795) + +[fips3501391740] +centroid = (0.56412940490005692, -1.8614928517666358) +description = Las Cruces CCD, NM +station = ('klru', 0.0039692528093106848) +zone = ('nmz411', 0.0052621052502382732) + +[fips3501393060] +centroid = (0.55810929307103041, -1.8669893124601864) +description = South Doña Ana CCD, NM +station = ('k5t6', 0.0042833072183540198) +zone = ('nmz411', 0.0026005576209427034) + +[fips3501393840] +centroid = (0.56895234303526288, -1.8589490518351466) +description = White Sands CCD, NM +station = ('khmn', 0.0074489655196101718) +zone = ('nmz413', 0.0054977682413285154) + +[fips35015] +centroid = (0.56649649024478166, -1.8204913500859823) +description = Eddy County, NM +station = ('kcnm', 0.0022511360235362289) +zone = ('nmz028', 0.0010647677971368824) + +[fips3501590150] +centroid = (0.57202567586180708, -1.8254997992673827) +description = Artesia CCD, NM +station = ('kats', 0.0022930716600862468) +zone = ('nmz028', 0.0069334626257243235) + +[fips3501590480] +centroid = (0.56394165983241973, -1.822680726006269) +description = Carlsbad CCD, NM +station = ('kcnm', 0.002466882548663351) +zone = ('nmz028', 0.0042030302125503401) + +[fips3501591800] +centroid = (0.57154982929454345, -1.8164730261892383) +description = Loco Hills CCD, NM +station = ('kats', 0.0060260797607910735) +zone = ('nmz028', 0.0050528463241007113) + +[fips3501591920] +centroid = (0.5614876745442382, -1.8147272082450532) +description = Loving CCD, NM +station = ('kcnm', 0.0051400672974735917) +zone = ('nmz028', 0.0070403296486942889) + +[fips3501640] +centroid = (0.59780813335787286, -1.8660327324037536) +description = Alamillo CDP, NM +station = ('konm', 0.0041116400558390935) +zone = ('nmz520', 0.0059876706593993525) + +[fips35017] +centroid = (0.5712826891992332, -1.8916140930634044) +description = Grant County, NM +station = ('ksvc', 0.0038126198024537226) +zone = ('nmz403', 0.0052483698087612786) + +[fips3501710] +centroid = (0.6007144032684163, -1.8764468502510157) +description = Alamo CDP, NM +station = ('konm', 0.01128267699596717) +zone = ('nmz507', 0.0098538226398464726) + +[fips3501780] +centroid = (0.57392710736209984, -1.84941520824942) +description = Alamogordo city, NM +station = ('kalm', 0.00092341295844895787) +zone = ('nmz414', 0.0014025288744197795) + +[fips3501790210] +centroid = (0.57080956534560257, -1.8836783253006815) +description = Bayard-Santa Rita CCD, NM +station = ('ksvc', 0.0035093737223567787) +zone = ('nmz403', 0.0023400198135097206) + +[fips3501791560] +centroid = (0.56315081624175622, -1.8910338409002863) +description = Hurley CCD, NM +station = ('klsb', 0.0052015981453248632) +zone = ('nmz404', 0.0062239633296730136) + +[fips3501792070] +centroid = (0.57467217096648371, -1.8830877233350991) +description = Mimbres CCD, NM +station = ('ksvc', 0.0063535557447922109) +zone = ('nmz402', 0.0029838747418655144) + +[fips3501792400] +centroid = (0.57604091052577533, -1.8900342908376691) +description = Pinos Altos CCD, NM +station = ('ksvc', 0.006803679974101336) +zone = ('nmz402', 0.0040808701081960445) + +[fips3501792782] +centroid = (0.5723016298698399, -1.8877929564655507) +description = Santa Clara CCD, NM +station = ('ksvc', 0.002748721544886726) +zone = ('nmz403', 0.0034036905227087951) + +[fips3501793000] +centroid = (0.5720524841191178, -1.8895034140390901) +description = Silver City CCD, NM +station = ('ksvc', 0.0029755501906698323) +zone = ('nmz403', 0.0041226948084934672) + +[fips3501793600] +centroid = (0.57293518438831392, -1.8981400711228289) +description = Tyrone CCD, NM +station = ('klsb', 0.0086605597660850252) +zone = ('nmz401', 0.0027133950255060547) + +[fips35019] +centroid = (0.60859250535265341, -1.8288426981968977) +description = Guadalupe County, NM +station = ('kcqc', 0.012818618172136361) +zone = ('nmz533', 0.00013977327099506007) + +[fips3501990990] +centroid = (0.61249752247435796, -1.8336453730594879) +description = Dilia CCD, NM +station = ('kcqc', 0.0088188395425662872) +zone = ('nmz533', 0.0055670923487847511) + +[fips3501992910] +centroid = (0.60918272334580026, -1.8251283932025584) +description = Santa Rosa CCD, NM +station = ('ktcc', 0.014724309019233163) +zone = ('nmz533', 0.003207051148057831) + +[fips3501993660] +centroid = (0.60467204206706859, -1.8345726315844875) +description = Vaughn CCD, NM +station = ('kcqc', 0.010061007974476358) +zone = ('nmz533', 0.0059909401400915939) + +[fips3502000] +centroid = (0.61270746813008048, -1.8613480592518905) +description = Albuquerque city, NM +station = ('kabq', 0.0014307242141972361) +zone = ('nmz519', 0.0022725999783400493) + +[fips3502070] +centroid = (0.62980891972611419, -1.8510528506865664) +description = Alcalde CDP, NM +station = ('klam', 0.004671249439506666) +zone = ('nmz517', 0.0012366293805265306) + +[fips35021] +centroid = (0.62593008254318938, -1.8121741580685284) +description = Harding County, NM +station = ('ktcc', 0.012306394746969663) +zone = ('nmz531', 0.00016798108180236262) + +[fips3502192220] +centroid = (0.62810399484630342, -1.8148897856648765) +description = North Harding CCD, NM +station = ('kcao', 0.014265642603288192) +zone = ('nmz531', 0.0032565007453792122) + +[fips3502193150] +centroid = (0.62288064327410497, -1.8077159413871118) +description = South Harding CCD, NM +station = ('ktcc', 0.0088230929060068349) +zone = ('nmz531', 0.0045645219949402658) + +[fips3502210] +centroid = (0.61749537750719896, -1.8583275400885113) +description = Algodones CDP, NM +station = ('kaeg', 0.0061391473353288126) +zone = ('nmz518', 0.0057820392204519476) + +[fips35023] +centroid = (0.55675406236014924, -1.8979710185314806) +description = Hidalgo County, NM +station = ('klsb', 0.0076132890070724994) +zone = ('nmz405', 0.0030050399303720885) + +[fips3502392250] +centroid = (0.56383479332232023, -1.8993613827202043) +description = North Hidalgo CCD, NM +station = ('klsb', 0.0020314274270046406) +zone = ('nmz404', 0.0030440529146052832) + +[fips3502393180] +centroid = (0.55104430497871248, -1.8955639826001778) +description = South Hidalgo CCD, NM +station = ('klsb', 0.013339118440103685) +zone = ('nmz406', 0.0035321355468800187) + +[fips35025] +centroid = (0.5723927186035016, -1.8049020692071689) +description = Lea County, NM +station = ('khob', 0.0034893935023689341) +zone = ('nmz033', 0.00085962537737854425) + +[fips3502591230] +centroid = (0.56650256399057852, -1.80160789987037) +description = Eunice CCD, NM +station = ('khob', 0.0039309145807204871) +zone = ('nmz034', 0.004404638380717355) + +[fips3502591470] +centroid = (0.56999863301524845, -1.8030369056487325) +description = Hobbs CCD, NM +station = ('khob', 0.0013877558989199186) +zone = ('nmz033', 0.0024922004180134125) + +[fips3502591620] +centroid = (0.56247221477528819, -1.8051177569961303) +description = Jal CCD, NM +station = ('kink', 0.0084373657477949966) +zone = ('nmz034', 0.00061817654600395419) + +[fips3502591950] +centroid = (0.57428903628908601, -1.8066933180717832) +description = Lovington CCD, NM +station = ('khob', 0.0058440536340371545) +zone = ('nmz033', 0.0029294090626054703) + +[fips3502593360] +centroid = (0.58243148594183003, -1.8048226567262031) +description = Tatum CCD, NM +station = ('khob', 0.012324399533537622) +zone = ('nmz029', 0.001551629860907882) + +[fips35027] +centroid = (0.58889051317114804, -1.8404336915587798) +description = Lincoln County, NM +station = ('ksrr', 0.0049411725597133822) +zone = ('nmz526', 0.0033451029991824204) + +[fips3502790450] +centroid = (0.58834265431894694, -1.8367739804634429) +description = Capitan CCD, NM +station = ('ksrr', 0.0060194571253039952) +zone = ('nmz539', 0.0017963103518509687) + +[fips3502790510] +centroid = (0.58655028844361146, -1.8494429589845269) +description = Carrizozo CCD, NM +station = ('ksrr', 0.0067433873777004829) +zone = ('nmz525', 0.0014112241017549142) + +[fips3502790780] +centroid = (0.59494691039532355, -1.8396522727460769) +description = Corona CCD, NM +station = ('k4cr', 0.0040383053651585109) +zone = ('nmz539', 0.0062608466053342814) + +[fips3502791500] +centroid = (0.5812970044747412, -1.8347032171191218) +description = Hondo CCD, NM +station = ('ksrr', 0.0066353656600677997) +zone = ('nmz416', 0.0077685478030798151) + +[fips3502792700] +centroid = (0.58228927651437756, -1.8428774666708372) +description = Ruidoso CCD, NM +station = ('ksrr', 0.0019878521131005784) +zone = ('nmz526', 0.0039129579337042119) + +[fips35028] +centroid = (0.62605042299511449, -1.8554240627047713) +description = Los Alamos County, NM +station = ('klam', 0.00057413782478897568) +zone = ('nmz511', 0.0041449932596759236) + +[fips3502891860] +centroid = (0.62637583963414878, -1.8554876799560063) +description = Los Alamos CCD, NM +station = ('klam', 0.00062030184179285273) +zone = ('nmz511', 0.0040608387270297582) + +[fips3502893810] +centroid = (0.62512859244408869, -1.8560386280409835) +description = White Rock CCD, NM +station = ('klam', 0.0015119450965425715) +zone = ('nmz511', 0.0039055140143195149) + +[fips35029] +centroid = (0.56172517894884966, -1.8805336085077307) +description = Luna County, NM +station = ('kdmn', 0.0015011057305959056) +zone = ('nmz407', 0.00064768242222832978) + +[fips3502990900] +centroid = (0.56549676564923934, -1.8803028934339094) +description = Deming North CCD, NM +station = ('kdmn', 0.0023502158599589236) +zone = ('nmz407', 0.0037688827778584611) + +[fips3502990930] +centroid = (0.55858227729832088, -1.8800727892253264) +description = Deming South CCD, NM +station = ('kdmn', 0.0045775986463752246) +zone = ('nmz407', 0.0033994791302372276) + +[fips35031] +centroid = (0.62087875062206743, -1.8894115399072651) +description = McKinley County, NM +station = ('kgnt', 0.0087204185399617218) +zone = ('nmz506', 0.0091232070538661801) + +[fips3503190840] +centroid = (0.62314417053786353, -1.8800987946311813) +description = Crownpoint CCD, NM +station = ('k4sl', 0.0078096132930541634) +zone = ('nmz504', 0.0074781082862208758) + +[fips3503191350] +centroid = (0.61975322269404143, -1.8985692999457717) +description = Gallup CCD, NM +station = ('kgup', 0.00013789490459073476) +zone = ('nmz505', 0.0084430708686787977) + +[fips3503192170] +centroid = (0.6253895366205543, -1.8964097342491091) +description = Navajo Nation CCD, NM +station = ('kgup', 0.0057939343232380576) +zone = ('nmz502', 0.0052531279655820169) + +[fips3503192535] +centroid = (0.61881875595923108, -1.8935772044994625) +description = Red Rock CCD, NM +station = ('kgup', 0.0042475256021313051) +zone = ('nmz505', 0.0087892422396222917) + +[fips3503193870] +centroid = (0.61251324789091843, -1.8982432375349143) +description = Zuni CCD, NM +station = ('kgup', 0.0073761880258833186) +zone = ('nmz505', 0.0014235035572339181) + +[fips35033] +centroid = (0.62801904967160893, -1.8312325775416534) +description = Mora County, NM +station = ('klvs', 0.0065345912507971523) +zone = ('nmz515', 0.0054077874371961168) + +[fips3503392100] +centroid = (0.62873941686707713, -1.8391651513518452) +description = Mora CCD, NM +station = ('kaxx', 0.0070415550504816411) +zone = ('nmz514', 0.0041073050245840764) + +[fips3503393720] +centroid = (0.62838083897225494, -1.828874428282699) +description = Wagon Mound CCD, NM +station = ('klvs', 0.0078822286482257368) +zone = ('nmz528', 0.0052070706955853986) + +[fips3503400] +centroid = (0.63499369952184359, -1.8367200846961413) +description = Angel Fire village, NM +station = ('kaxx', 0.00089778118546082319) +zone = ('nmz515', 0.0029998329112293077) + +[fips35035] +centroid = (0.56878144039490763, -1.8462281148622308) +description = Otero County, NM +station = ('kalm', 0.0052000495001474425) +zone = ('nmz414', 0.0055865260891988268) + +[fips3503590030] +centroid = (0.5703574378028734, -1.85245852141283) +description = Alamogordo CCD, NM +station = ('khmn', 0.0030350532360458571) +zone = ('nmz413', 0.0050177686059315243) + +[fips3503592040] +centroid = (0.57903278883612896, -1.8427752078299628) +description = Mescalero CCD, NM +station = ('ksrr', 0.0051227077715441018) +zone = ('nmz415', 0.0034478089254610608) + +[fips3503593120] +centroid = (0.56521711154319221, -1.8430461876496276) +description = Southeast Otero CCD, NM +station = ('kalm', 0.0096600696209812337) +zone = ('nmz417', 0.0028611019398233064) + +[fips3503593570] +centroid = (0.57856802510961547, -1.8521594243389159) +description = Tularosa CCD, NM +station = ('khmn', 0.0052363255224389628) +zone = ('nmz412', 0.00223243417602563) + +[fips35037] +centroid = (0.61273305465691452, -1.8072547730388571) +description = Quay County, NM +station = ('ktcc', 0.0015242493822881314) +zone = ('nmz534', 5.2833461817259476e-05) + +[fips3503750] +centroid = (0.55754324788802356, -1.8990310093460943) +description = Animas CDP, NM +station = ('klsb', 0.0069908654536148937) +zone = ('nmz405', 0.0042008444597252904) + +[fips3503791530] +centroid = (0.60620208495582939, -1.8127239891427842) +description = House-Forrest CCD, NM +station = ('k4mr', 0.0076056376871315775) +zone = ('nmz534', 0.0078701236213906678) + +[fips3503791830] +centroid = (0.62052958005191339, -1.8019961134558911) +description = Logan-Nara Visa CCD, NM +station = ('ktcc', 0.008189221361526302) +zone = ('nmz534', 0.0089517219574959811) + +[fips3503792730] +centroid = (0.61325220284292037, -1.8023006734103639) +description = San Jon CCD, NM +station = ('ktcc', 0.0048596293687444897) +zone = ('nmz534', 0.00411462425452564) + +[fips3503793540] +centroid = (0.61169098837371882, -1.8108373056746709) +description = Tucumcari CCD, NM +station = ('ktcc', 0.0032292749119959391) +zone = ('nmz534', 0.0030740076723533645) + +[fips3503820] +centroid = (0.55873220108106714, -1.8606040428450576) +description = Anthony CDP, NM +station = ('k5t6', 0.0027408956173667126) +zone = ('txz418', 0.0020059601758368952) + +[fips3503890] +centroid = (0.61426629149820655, -1.8351071561212033) +description = Anton Chico CDP, NM +station = ('klvs', 0.0079450070003333623) +zone = ('nmz529', 0.0062187611786795266) + +[fips35039] +centroid = (0.63721393286330563, -1.8621612954168572) +description = Rio Arriba County, NM +station = ('ke33', 0.0069862846944551216) +zone = ('nmz510', 0.0044890515685465458) + +[fips3503970] +centroid = (0.61193449671095712, -1.8805139910069382) +description = Anzac Village CDP, NM +station = ('kgnt', 0.0028720683480827117) +zone = ('nmz506', 0.0044884290191641828) + +[fips3503990570] +centroid = (0.62880778141387772, -1.8455221989929693) +description = Chimayo CCD, NM +station = ('kskx', 0.0074379708692281976) +zone = ('nmz512', 0.0018474494083078454) + +[fips3503990810] +centroid = (0.6327385246887568, -1.8633955748105751) +description = Coyote CCD, NM +station = ('klam', 0.0095590180055698214) +zone = ('nmz511', 0.0065513849995554102) + +[fips3503991020] +centroid = (0.63095849829123285, -1.8472267399003444) +description = Dixon CCD, NM +station = ('kskx', 0.0057457776046423471) +zone = ('nmz512', 0.0030515577587101692) + +[fips3503991682] +centroid = (0.63932300618470805, -1.8684474652370575) +description = Jicarilla Apache CCD, NM +station = ('ke33', 0.0080905464936683325) +zone = ('nmz503', 0.0072011215250171552) + +[fips3503992295] +centroid = (0.62924784873147555, -1.8512993260835329) +description = Ohkay Owingeh CCD, NM +station = ('klam', 0.0041179962338301832) +zone = ('nmz517', 0.0015873550049172122) + +[fips3503992610] +centroid = (0.6326648892476151, -1.8541362017030172) +description = Rio Chama CCD, NM +station = ('klam', 0.0064644754826710844) +zone = ('nmz517', 0.0025559654372757467) + +[fips3503992790] +centroid = (0.62770141720103845, -1.8524969710162515) +description = Santa Clara Pueblo CCD, NM +station = ('klam', 0.0023486889836265299) +zone = ('nmz517', 0.0029982614492208405) + +[fips3503993210] +centroid = (0.63027495754298157, -1.8506214052954735) +description = South Rio Arriba CCD, NM +station = ('klam', 0.0052525091352987538) +zone = ('nmz517', 0.0012880050111343329) + +[fips3503993390] +centroid = (0.64001176546742256, -1.8587137290921003) +description = Tierra Amarilla CCD, NM +station = ('ke33', 0.0041943893942089213) +zone = ('nmz510', 0.00072344554266293723) + +[fips3503993630] +centroid = (0.64033231263784385, -1.8531287802054734) +description = Vallecitos CCD, NM +station = ('ke33', 0.0067812339786986154) +zone = ('nmz510', 0.0037678160410893899) + +[fips3503993795] +centroid = (0.63958061678230238, -1.8749651529825351) +description = West Rio Arriba CCD, NM +station = ('kdro', 0.0099999946912247301) +zone = ('nmz503', 0.0033879950410523017) + +[fips3504030] +centroid = (0.59097434903156665, -1.8956899255590016) +description = Apache Creek CDP, NM +station = ('ksjn', 0.015945287026789805) +zone = ('nmz508', 0.0079300261109735235) + +[fips35041] +centroid = (0.59378644097567246, -1.806114270185849) +description = Roosevelt County, NM +station = ('k4mr', 0.0066805315057753287) +zone = ('nmz536', 3.6628763748641542e-05) + +[fips3504191080] +centroid = (0.59042636800631798, -1.8020212985569972) +description = Dora CCD, NM +station = ('kcvs', 0.0097264399821205098) +zone = ('nmz536', 0.0047496198714399307) + +[fips3504191140] +centroid = (0.59441287455079828, -1.8098178763118735) +description = Elida CCD, NM +station = ('k4mr', 0.0044986084433994477) +zone = ('nmz536', 0.0031686180051284122) + +[fips3504192430] +centroid = (0.59697688539502558, -1.8021463339446102) +description = Portales CCD, NM +station = ('kcvs', 0.0032480209327165016) +zone = ('nmz536', 0.0045552720777077933) + +[fips35043] +centroid = (0.62282201766453049, -1.8654535972513566) +description = Sandoval County, NM +station = ('k4sl', 0.0047085421333320993) +zone = ('nmz511', 0.0055354553479573789) + +[fips3504390870] +centroid = (0.62535750982878013, -1.8698087347871506) +description = Cuba CCD, NM +station = ('k4sl', 0.00089737992892915464) +zone = ('nmz504', 0.0059452836267752428) + +[fips3504391654] +centroid = (0.62434223434960245, -1.8622937659070835) +description = Jemez-Zia CCD, NM +station = ('klam', 0.0064004497207824683) +zone = ('nmz511', 0.0027079143866782281) + +[fips3504392655] +centroid = (0.61644734219796138, -1.8591562398706507) +description = Rio Rancho CCD, NM +station = ('kaeg', 0.004947682205606492) +zone = ('nmz519', 0.0063868608995662551) + +[fips3504392944] +centroid = (0.62093001094219857, -1.8578199983420314) +description = Santo Domingo-San Felipe CCD, NM +station = ('ksaf', 0.0051834261377165635) +zone = ('nmz518', 0.0048326290058211428) + +[fips3504450] +centroid = (0.59148904662797985, -1.8940345331233626) +description = Aragon CDP, NM +station = ('ksjn', 0.016580796249082291) +zone = ('nmz508', 0.0065292617537323471) + +[fips35045] +centroid = (0.63724807150347462, -1.8906205469334141) +description = San Juan County, NM +station = ('kfmn', 0.0043522894262963034) +zone = ('nmz501', 0.0022965025117088426) + +[fips3504590180] +centroid = (0.64397369777603475, -1.884837904602414) +description = Aztec CCD, NM +station = ('kfmn', 0.0042226090075895362) +zone = ('coz022', 0.0046818181341333328) + +[fips3504590360] +centroid = (0.63921367876036317, -1.8812180568271926) +description = Bloomfield CCD, NM +station = ('kfmn', 0.0066363358335745221) +zone = ('nmz503', 0.0053080050981965474) + +[fips3504591290] +centroid = (0.64282230406849405, -1.8900609245620545) +description = Farmington CCD, NM +station = ('kfmn', 0.0016380053113781406) +zone = ('nmz501', 0.0076773492780335597) + +[fips3504592150] +centroid = (0.63345079355649569, -1.8850486880161774) +description = Napi Headquarters CCD, NM +station = ('kfmn', 0.0085762209767880904) +zone = ('nmz501', 0.0060720229165224238) + +[fips3504592160] +centroid = (0.6301136542135124, -1.897447000876862) +description = Naschitti CCD, NM +station = ('krqe', 0.009332953576641009) +zone = ('nmz502', 0.0032548015058830719) + +[fips3504592180] +centroid = (0.63667336948737785, -1.8925499386083238) +description = Nenahnezad-Burnham CCD, NM +station = ('kfmn', 0.0055147920160886314) +zone = ('nmz501', 0.0013589940179120936) + +[fips3504592970] +centroid = (0.63915765369137412, -1.8982201468289104) +description = Shiprock-Sanostee CCD, NM +station = ('kfmn', 0.0077073820819933518) +zone = ('nmz501', 0.0061542478659892576) + +[fips3504660] +centroid = (0.57206049518038438, -1.8884823091602108) +description = Arenas Valley CDP, NM +station = ('ksvc', 0.0026156481832236935) +zone = ('nmz403', 0.0035303798041530945) + +[fips35047] +centroid = (0.61918829452175572, -1.8291664044132649) +description = San Miguel County, NM +station = ('klvs', 0.0055729193964149651) +zone = ('nmz529', 0.0030134504101444965) + +[fips3504790750] +centroid = (0.61939670428773641, -1.8155607425892206) +description = Conchas Dam CCD, NM +station = ('ktcc', 0.0080538923226149191) +zone = ('nmz532', 0.0032833041991736016) + +[fips3504791770] +centroid = (0.61991826102810998, -1.8342105804844537) +description = Las Vegas CCD, NM +station = ('klvs', 0.0023636885951704243) +zone = ('nmz529', 0.0012761246074361428) + +[fips3504792310] +centroid = (0.62208630902493722, -1.8417171717841114) +description = Pecos CCD, NM +station = ('klvs', 0.00552266241200885) +zone = ('nmz514', 0.0046365336163826532) + +[fips3504793420] +centroid = (0.61962624999095883, -1.8251699494920484) +description = Trementina CCD, NM +station = ('klvs', 0.0083425758219427253) +zone = ('nmz532', 0.0047591323070875777) + +[fips3504793690] +centroid = (0.61499744482845209, -1.8417795847581626) +description = Villanueva CCD, NM +station = ('kcqc', 0.0045931068121785818) +zone = ('nmz523', 0.0066181531197721556) + +[fips3504870] +centroid = (0.57329135372876838, -1.8730934095328189) +description = Arrey CDP, NM +station = ('ktcs', 0.0067853409735691931) +zone = ('nmz408', 0.0044092381268161177) + +[fips35049] +centroid = (0.61983137853794568, -1.8494632920703127) +description = Santa Fe County, NM +station = ('ksaf', 0.0024458939616642979) +zone = ('nmz518', 0.0020578703935308601) + +[fips3504992820] +centroid = (0.62263406315738312, -1.8491115035062806) +description = Santa Fe CCD, NM +station = ('ksaf', 0.0021886664128565199) +zone = ('nmz518', 0.0034602750781931157) + +[fips3504992850] +centroid = (0.62597240677755028, -1.8490582709640948) +description = Santa Fe North CCD, NM +station = ('ksaf', 0.0047761760390025096) +zone = ('nmz514', 0.0045940787067412945) + +[fips3504992880] +centroid = (0.61741561596038275, -1.8498256049697341) +description = Santa Fe South CCD, NM +station = ('ksaf', 0.0044284375302078762) +zone = ('nmz518', 0.0031824508054004814) + +[fips3505010] +centroid = (0.63764904344582785, -1.8442301142944253) +description = Arroyo Hondo CDP, NM +station = ('kskx', 0.0014765313727019092) +zone = ('nmz516', 0.0025282692914886501) + +[fips35051] +centroid = (0.57804395509511908, -1.8707863286077775) +description = Sierra County, NM +station = ('ktcs', 0.0022943217279816409) +zone = ('nmz409', 0.0018822860269622095) + +[fips3505150] +centroid = (0.63742073692637446, -1.8428249148070597) +description = Arroyo Seco CDP, NM +station = ('kskx', 0.0016842012661828253) +zone = ('nmz516', 0.0035070941578370361) + +[fips3505193480] +centroid = (0.57891710841330679, -1.8655105124382643) +description = Truth or Consequences East CCD, NM +station = ('ktcs', 0.0056715184767528858) +zone = ('nmz409', 0.0026361479823740416) + +[fips3505193510] +centroid = (0.57737371375576818, -1.8777259671532174) +description = Truth or Consequences West CCD, NM +station = ('ktcs', 0.0053666953280799004) +zone = ('nmz408', 0.0014644405493181914) + +[fips3505220] +centroid = (0.57329395426935392, -1.8226078410567057) +description = Artesia city, NM +station = ('kats', 0.00058997889732796812) +zone = ('nmz028', 0.0065920835876138372) + +[fips35053] +centroid = (0.59326558236699978, -1.8664377011500937) +description = Socorro County, NM +station = ('konm', 0.00071389796972089149) +zone = ('nmz520', 0.0023380420021036886) + +[fips3505390630] +centroid = (0.59177430324092584, -1.8565084532223277) +description = Claunch CCD, NM +station = ('konm', 0.0079095499654573166) +zone = ('nmz524', 0.0049494087870442151) + +[fips3505391980] +centroid = (0.59470853332608609, -1.8737357081508452) +description = Magdalena CCD, NM +station = ('konm', 0.0066871809340069005) +zone = ('nmz520', 0.0084759885223815949) + +[fips3505393040] +centroid = (0.59324931589837115, -1.864252758366107) +description = Socorro CCD, NM +station = ('konm', 0.0013269036435494953) +zone = ('nmz520', 0.0012082721143576976) + +[fips3505430] +centroid = (0.57208360333968089, -1.8220133470068913) +description = Atoka CDP, NM +station = ('kats', 0.0016924571136368973) +zone = ('nmz028', 0.0052827150291648341) + +[fips35055] +centroid = (0.63838086000118899, -1.843730688328967) +description = Taos County, NM +station = ('kskx', 0.0022446934609931489) +zone = ('nmz516', 0.0023637248628561201) + +[fips3505590120] +centroid = (0.63879268789148957, -1.8417305759127665) +description = Arroyo Hondo CCD, NM +station = ('kskx', 0.0033020469111818044) +zone = ('nmz513', 0.0032418394125028559) + +[fips3505592340] +centroid = (0.62996757015512039, -1.8424290741327074) +description = Peñasco CCD, NM +station = ('kskx', 0.0063727789398364942) +zone = ('nmz512', 0.0010145218422339612) + +[fips3505592370] +centroid = (0.63181414595702301, -1.8449782496782927) +description = Picuris CCD, NM +station = ('kskx', 0.0043997235363116274) +zone = ('nmz512', 0.0021787558312381127) + +[fips3505592490] +centroid = (0.64199976529861413, -1.8411829439533685) +description = Questa CCD, NM +station = ('kskx', 0.0063200572470985487) +zone = ('nmz513', 0.0019564088752912811) + +[fips3505593300] +centroid = (0.63425498891593701, -1.8419079362713544) +description = Taos CCD, NM +station = ('kskx', 0.0026784871229216189) +zone = ('nmz512', 0.004581053341472888) + +[fips3505593330] +centroid = (0.63673180311073474, -1.8402109875462254) +description = Taos Pueblo CCD, NM +station = ('kaxx', 0.0024472175012890487) +zone = ('nmz513', 0.0045420562335604609) + +[fips3505593450] +centroid = (0.63938252191220113, -1.8473688271547493) +description = Tres Piedras CCD, NM +station = ('kskx', 0.0040814928045635494) +zone = ('nmz516', 0.00089889633581998667) + +[fips35057] +centroid = (0.60448857305609893, -1.8473757910184647) +description = Torrance County, NM +station = ('k0e0', 0.0064147926955323842) +zone = ('nmz522', 0.0035307848948740519) + +[fips3505780] +centroid = (0.6425996349625247, -1.884689778508797) +description = Aztec city, NM +station = ('kfmn', 0.0036729938878972347) +zone = ('coz022', 0.0059599274802809117) + +[fips3505791200] +centroid = (0.60781949902694499, -1.8500243630649511) +description = Estancia CCD, NM +station = ('k0e0', 0.0026967490594852908) +zone = ('nmz522', 0.00047836998806856639) + +[fips3505792135] +centroid = (0.60242686797059564, -1.8457481842245174) +description = Mountainair-Encino CCD, NM +station = ('k4cr', 0.007339796723930191) +zone = ('nmz522', 0.0059882492214850666) + +[fips35059] +centroid = (0.63683722099755513, -1.8059920622316246) +description = Union County, NM +station = ('kcao', 0.0046197714487381993) +zone = ('nmz530', 0.0009760547968386302) + +[fips3505990660] +centroid = (0.64007817524546096, -1.8073465599042198) +description = Clayton North CCD, NM +station = ('kcao', 0.0068719518077086468) +zone = ('nmz530', 0.0042836562731876646) + +[fips3505990690] +centroid = (0.63035719745733565, -1.8039851430313412) +description = Clayton South CCD, NM +station = ('kcao', 0.0065274924901917728) +zone = ('nmz530', 0.0059130930479417325) + +[fips35061] +centroid = (0.60592316388806811, -1.8641265187013103) +description = Valencia County, NM +station = ('ke80', 0.0012394106743183182) +zone = ('nmz519', 0.005061430885006591) + +[fips3506190240] +centroid = (0.60568632270857259, -1.8654525326005129) +description = Belen CCD, NM +station = ('ke80', 0.0011976614357597593) +zone = ('nmz519', 0.0055820893562119082) + +[fips3506191890] +centroid = (0.60739016548424707, -1.8618862140734505) +description = Los Lunas CCD, NM +station = ('ke80', 0.0034472078902148835) +zone = ('nmz519', 0.0036402416803702335) + +[fips3506270] +centroid = (0.57174378773431755, -1.8872873171279554) +description = Bayard city, NM +station = ('ksvc', 0.0021979178472260859) +zone = ('nmz403', 0.0027113916745148156) + +[fips3506425] +centroid = (0.64286530898126326, -1.9024756784242931) +description = Beclabito CDP, NM +station = ('kcez', 0.0096396314340664816) +zone = ('coz021', 0.010298012945476765) + +[fips3506480] +centroid = (0.60491773206587185, -1.863366340545604) +description = Belen city, NM +station = ('ke80', 0.0010018663319582627) +zone = ('nmz519', 0.0059936563415356218) + +[fips3506760] +centroid = (0.57844656764696911, -1.8478214433896689) +description = Bent CDP, NM +station = ('kalm', 0.0056359783283089406) +zone = ('nmz415', 0.0036474874181737144) + +[fips3506830] +centroid = (0.55970848590475519, -1.8609046409021288) +description = Berino CDP, NM +station = ('k5t6', 0.0035040740328642784) +zone = ('txz418', 0.0030132430918204723) + +[fips3506970] +centroid = (0.61631761187466061, -1.8597187420352761) +description = Bernalillo town, NM +station = ('kaeg', 0.0045097604609092507) +zone = ('nmz519', 0.0060550143729547071) + +[fips3507145] +centroid = (0.61402669269849275, -1.8748486173483794) +description = Bibo CDP, NM +station = ('kgnt', 0.006839529201831434) +zone = ('nmz507', 0.0038465648810156717) + +[fips3507670] +centroid = (0.61226863999625147, -1.8989224498666204) +description = Black Rock CDP, NM +station = ('kgup', 0.0076179411499317845) +zone = ('nmz505', 0.00097015384423137097) + +[fips3507810] +centroid = (0.64116687672627004, -1.8817126133240376) +description = Blanco CDP, NM +station = ('kdro', 0.0072532983636060507) +zone = ('nmz503', 0.0046112069654705582) + +[fips3507880] +centroid = (0.64101309576587684, -1.8846336138134678) +description = Bloomfield city, NM +station = ('kfmn', 0.0035436877332301166) +zone = ('coz022', 0.0074976270102022624) + +[fips3508185] +centroid = (0.61545779287195812, -1.887412684128126) +description = Bluewater Acres CDP, NM +station = ('kgnt', 0.0038239614016707829) +zone = ('nmz506', 0.0034656567122630442) + +[fips3508190] +centroid = (0.61482992812684567, -1.8846611027491869) +description = Bluewater Village CDP, NM +station = ('kgnt', 0.0015875631753330245) +zone = ('nmz506', 0.0028512460473581794) + +[fips3508440] +centroid = (0.57268542777235354, -1.8498749803342731) +description = Boles Acres CDP, NM +station = ('kalm', 0.00037734621358294823) +zone = ('nmz414', 0.0023305200984521739) + +[fips3508580] +centroid = (0.60820799186514651, -1.8622746021918966) +description = Bosque Farms village, NM +station = ('kabq', 0.0035436900539113246) +zone = ('nmz519', 0.002769332931394918) + +[fips3508860] +centroid = (0.64145670610185612, -1.8598206518103) +description = Brazos CDP, NM +station = ('ke33', 0.0025906029211971724) +zone = ('nmz510', 0.0021479569913313767) + +[fips3509035] +centroid = (0.62468590713261274, -1.8959466809452628) +description = Brimhall Nizhoni CDP, NM +station = ('kgup', 0.0052739435609594262) +zone = ('nmz502', 0.0060112159136948996) + +[fips3509630] +centroid = (0.57650804790007149, -1.897074931586922) +description = Buckhorn CDP, NM +station = ('ksvc', 0.010584180478960509) +zone = ('nmz401', 0.0013452507788257824) + +[fips3510050] +centroid = (0.57562049561555495, -1.872868646031747) +description = Caballo CDP, NM +station = ('ktcs', 0.0044507485275910559) +zone = ('nmz408', 0.003712277003632628) + +[fips3510470] +centroid = (0.62120901927642236, -1.8476012526512373) +description = Cañada de los Alamos CDP, NM +station = ('ksaf', 0.003200251333004645) +zone = ('nmz518', 0.0037341462148701202) + +[fips3510610] +centroid = (0.63677288816132671, -1.8576255861166517) +description = Canjilon CDP, NM +station = ('ke33', 0.0075482673939560796) +zone = ('nmz510', 0.0032654794931563117) + +[fips3510750] +centroid = (0.60011345150036965, -1.8032401492401273) +description = Cannon AFB CDP, NM +station = ('kcvs', 2.2797242632701845e-05) +zone = ('nmz535', 0.0033458413447357812) + +[fips3510770] +centroid = (0.62258966198121246, -1.863185803687778) +description = Cañon CDP, NM +station = ('k4sl', 0.0064986738814178709) +zone = ('nmz511', 0.0045867009268060711) + +[fips3511310] +centroid = (0.6313977453040821, -1.8573679057058874) +description = Cañones CDP, NM +station = ('klam', 0.0055955000149065211) +zone = ('nmz517', 0.0042864275198332474) + +[fips3511520] +centroid = (0.63124787388121339, -1.8498535651443511) +description = Canova CDP, NM +station = ('klam', 0.006399128788908191) +zone = ('nmz517', 0.0019245807552310168) + +[fips3511800] +centroid = (0.58536856091367107, -1.8430434125761166) +description = Capitan village, NM +station = ('ksrr', 0.0015820267009251997) +zone = ('nmz526', 0.00085305408599112655) + +[fips3512008] +centroid = (0.63233387010168174, -1.8641620012450033) +description = Gallina CDP, NM +station = ('k4sl', 0.0091828057312136023) +zone = ('nmz511', 0.0064365009728007232) + +[fips3512010] +centroid = (0.64134826879542983, -1.8151810113038644) +description = Capulin CDP, NM +station = ('ktad', 0.010886273214579783) +zone = ('nmz527', 0.0043444263408798506) + +[fips3512150] +centroid = (0.56561892124358648, -1.8194213934413397) +description = Carlsbad city, NM +station = ('kcnm', 0.0013339911899260077) +zone = ('nmz028', 0.001605453687083739) + +[fips3512430] +centroid = (0.61190941632960594, -1.8580314973407881) +description = Carnuel CDP, NM +station = ('kabq', 0.0020899014788859868) +zone = ('nmz521', 0.0028108813360815639) + +[fips3512500] +centroid = (0.58718705436790908, -1.847276237437931) +description = Carrizozo town, NM +station = ('ksrr', 0.0054360349703554628) +zone = ('nmz525', 0.0029013688385954293) + +[fips3512786] +centroid = (0.60296086890853584, -1.8630012874792568) +description = Casa Colorada CDP, NM +station = ('ke80', 0.002193339067555923) +zone = ('nmz519', 0.0079445738423729231) + +[fips3512850] +centroid = (0.59030880262790375, -1.7989994354900942) +description = Causey village, NM +station = ('kcvs', 0.010397312468844898) +zone = ('txz033', 0.0052254452438298639) + +[fips3513200] +centroid = (0.61286756718236579, -1.85668314322716) +description = Cedar Crest CDP, NM +station = ('kabq', 0.0034472285999023714) +zone = ('nmz521', 0.0030145371780838787) + +[fips3513270] +centroid = (0.61371904351124373, -1.8528634727058779) +description = Cedar Grove CDP, NM +station = ('k0e0', 0.003945156666558541) +zone = ('nmz521', 0.0042873552751595476) + +[fips3513340] +centroid = (0.64454414118875658, -1.8830184512170873) +description = Cedar Hill CDP, NM +station = ('kdro', 0.0042064578479533024) +zone = ('coz022', 0.0038280919120476319) + +[fips3513450] +centroid = (0.61118217253688489, -1.8561698069875634) +description = Cedro CDP, NM +station = ('kabq', 0.0035729806767361228) +zone = ('nmz521', 0.001291812226481976) + +[fips3513970] +centroid = (0.64389423293519155, -1.8602641923331094) +description = Chama village, NM +station = ('ke33', 0.00013504288309130176) +zone = ('nmz510', 0.0043302254142949838) + +[fips3514040] +centroid = (0.55914015434042841, -1.8618758642709858) +description = Chamberino CDP, NM +station = ('k5t6', 0.0027441302079204881) +zone = ('txz418', 0.0027846977713691231) + +[fips3514110] +centroid = (0.63132985199617964, -1.845615137775638) +description = Chamisal CDP, NM +station = ('kskx', 0.0049693995740828206) +zone = ('nmz512', 0.0021148762470237026) + +[fips3514180] +centroid = (0.62956003577477981, -1.8517447515619345) +description = Chamita CDP, NM +station = ('klam', 0.0041307488020110878) +zone = ('nmz517', 0.0011680550403436424) + +[fips3514200] +centroid = (0.59722152819627772, -1.8660207594450848) +description = Chamizal CDP, NM +station = ('konm', 0.0035254649216903164) +zone = ('nmz520', 0.0054236387952330224) + +[fips3514250] +centroid = (0.55927747684597517, -1.8571331414682015) +description = Chaparral CDP, NM +station = ('kbif', 0.0034065306942966779) +zone = ('txz418', 0.0036031419071953378) + +[fips3514670] +centroid = (0.60852478657767595, -1.8616937740701254) +description = Chical CDP, NM +station = ('kabq', 0.0030762778091473842) +zone = ('nmz519', 0.0026238054864209373) + +[fips3514810] +centroid = (0.63015198164388619, -1.8527167952355401) +description = Chili CDP, NM +station = ('klam', 0.0042619137742640825) +zone = ('nmz517', 0.0007118695953078763) + +[fips3514880] +centroid = (0.60907407659986368, -1.8541179455590411) +description = Chilili CDP, NM +station = ('k0e0', 0.0036339633636760897) +zone = ('nmz521', 0.0014706277919755144) + +[fips3514950] +centroid = (0.62826899827378713, -1.848905205588695) +description = Chimayo CDP, NM +station = ('klam', 0.0051547181820703432) +zone = ('nmz517', 0.0035560269165749465) + +[fips3515300] +centroid = (0.62507919962625713, -1.8486482582162163) +description = Chupadero CDP, NM +station = ('ksaf', 0.0041574169993689111) +zone = ('nmz514', 0.0044670963665040114) + +[fips3515370] +centroid = (0.62012513490434873, -1.8957439085927659) +description = Church Rock CDP, NM +station = ('kgup', 0.0023592359793934967) +zone = ('nmz505', 0.0092410681578787516) + +[fips3515440] +centroid = (0.63719658429054071, -1.8310502429946975) +description = Cimarron village, NM +station = ('kaxx', 0.0053996522484483873) +zone = ('nmz515', 0.006224763460605142) + +[fips3515560] +centroid = (0.55583193510315065, -1.8788494530460187) +description = City of the Sun CDP, NM +station = ('kdmn', 0.0073934108210860728) +zone = ('nmz407', 0.0063370373854646353) + +[fips3515720] +centroid = (0.63602229186321391, -1.800327037638916) +description = Clayton town, NM +station = ('kcao', 0.00015107222155271425) +zone = ('nmz530', 0.0038169889200507937) + +[fips3515860] +centroid = (0.57536449072087237, -1.8957346583477301) +description = Cliff CDP, NM +station = ('ksvc', 0.0089867116582088812) +zone = ('nmz401', 0.00062960987316759936) + +[fips3516280] +centroid = (0.57513990175272567, -1.8454102535747463) +description = Cloudcroft village, NM +station = ('kalm', 0.0042068060683961659) +zone = ('nmz415', 0.0010438007174331364) + +[fips3516420] +centroid = (0.60106179360273326, -1.8009889188511501) +description = Clovis city, NM +station = ('kcvn', 0.0015244401863146039) +zone = ('nmz535', 0.0032821333710984992) + +[fips3516490] +centroid = (0.57212622428001447, -1.8868864673586496) +description = Cobre CDP, NM +station = ('ksvc', 0.0026314152854184912) +zone = ('nmz403', 0.002938023542532274) + +[fips3516560] +centroid = (0.62150223459075737, -1.8561332074331489) +description = Cochiti CDP, NM +station = ('ksaf', 0.0037659491751446898) +zone = ('nmz518', 0.0036723773325441282) + +[fips3516585] +centroid = (0.62217209195767287, -1.856027405573893) +description = Cochiti Lake CDP, NM +station = ('ksaf', 0.003716971868704668) +zone = ('nmz518', 0.0039075464335942703) + +[fips3517050] +centroid = (0.55545220381779425, -1.8786719007012134) +description = Columbus village, NM +station = ('kdmn', 0.0077904349901712078) +zone = ('nmz407', 0.0067452232952936132) + +[fips3517260] +centroid = (0.61703804888329883, -1.8185763748306942) +description = Conchas Dam CDP, NM +station = ('ktcc', 0.0090083203420942594) +zone = ('nmz532', 0.0017103821540687405) + +[fips3517610] +centroid = (0.62854083330478516, -1.8475471998043032) +description = Cordova CDP, NM +station = ('klam', 0.0062739282169121903) +zone = ('nmz512', 0.0034090191057733685) + +[fips3517680] +centroid = (0.5977752339014728, -1.8430167613984387) +description = Corona village, NM +station = ('k4cr', 0.002899104306756104) +zone = ('nmz524', 0.0084441544789142682) + +[fips3517960] +centroid = (0.61504675037982093, -1.8609935828808102) +description = Corrales village, NM +station = ('kaeg', 0.0029088884505546397) +zone = ('nmz519', 0.0044666879849631245) + +[fips3518240] +centroid = (0.64539907326955348, -1.8419379210279034) +description = Costilla CDP, NM +station = ('kals', 0.0091760237224011859) +zone = ('nmz513', 0.0048533771083648326) + +[fips3518310] +centroid = (0.56042632237280787, -1.90032255299257) +description = Cotton City CDP, NM +station = ('klsb', 0.0047924642964293556) +zone = ('nmz404', 0.0064441816579328178) + +[fips3518660] +centroid = (0.63095221510592558, -1.8606534182095968) +description = Coyote CDP, NM +station = ('klam', 0.0067250120648402519) +zone = ('nmz511', 0.0043321286186041273) + +[fips3518940] +centroid = (0.62287299873198132, -1.8875629569767227) +description = Crownpoint CDP, NM +station = ('kgnt', 0.0097657127449393335) +zone = ('nmz506', 0.010756402328339932) + +[fips3519010] +centroid = (0.5901130290457075, -1.8966088937700543) +description = Cruzville CDP, NM +station = ('ksjn', 0.016078054195225705) +zone = ('nmz509', 0.006854095017419984) + +[fips3519080] +centroid = (0.62884228657318963, -1.9022206509139916) +description = Crystal CDP, NM +station = ('krqe', 0.006722326774304373) +zone = ('nmz502', 0.00083084519518206938) + +[fips3519110] +centroid = (0.62819337315729817, -1.850392156298224) +description = Cuartelez CDP, NM +station = ('klam', 0.0040408831557475142) +zone = ('nmz517', 0.0028616963680847211) + +[fips3519150] +centroid = (0.62853119908731414, -1.8669719638874218) +description = Cuba village, NM +station = ('k4sl', 0.0047794252001634036) +zone = ('nmz511', 0.0055823781956333782) + +[fips3519220] +centroid = (0.61244181156463429, -1.8766893113907028) +description = Cubero CDP, NM +station = ('kgnt', 0.0054971398887880161) +zone = ('nmz507', 0.0032656194988550935) + +[fips3519500] +centroid = (0.62755599636776238, -1.8482510561850474) +description = Cundiyo CDP, NM +station = ('ksaf', 0.0064885089311758175) +zone = ('nmz514', 0.0040437262469790042) + +[fips3519640] +centroid = (0.62595837433036428, -1.8502170997742489) +description = Cuyamungue CDP, NM +station = ('ksaf', 0.0044543659200546367) +zone = ('nmz517', 0.0049744490423956718) + +[fips3519645] +centroid = (0.62563765262701787, -1.8499599778688451) +description = Cuyamungue Grant CDP, NM +station = ('ksaf', 0.0042007531857150698) +zone = ('nmz517', 0.0053449790764061875) + +[fips3519920] +centroid = (0.59581997644704865, -1.8821330456875507) +description = Datil CDP, NM +station = ('konm', 0.013728192012124293) +zone = ('nmz508', 0.0053663997047434086) + +[fips3520270] +centroid = (0.56309887524321678, -1.8806161102214725) +description = Deming city, NM +station = ('kdmn', 0.0005156879243860237) +zone = ('nmz407', 0.0013989616913999182) + +[fips3520480] +centroid = (0.64162668371770792, -1.8122750904591713) +description = Des Moines village, NM +station = ('kcao', 0.011047510097840215) +zone = ('nmz527', 0.0066440935880647777) + +[fips3520620] +centroid = (0.57935867671406127, -1.8215810289511725) +description = Dexter town, NM +station = ('krow', 0.003021761173566566) +zone = ('nmz538', 0.0053618559204936566) + +[fips3520830] +centroid = (0.63145289770844515, -1.8481472963610164) +description = Dixon CDP, NM +station = ('kskx', 0.0056772911102108223) +zone = ('nmz517', 0.0033082950110620802) + +[fips3521110] +centroid = (0.56538096305336949, -1.8643207738470573) +description = Doña Ana CDP, NM +station = ('klru', 0.0023851098787323502) +zone = ('nmz410', 0.0038988592966120372) + +[fips3521180] +centroid = (0.5921178887574734, -1.8035972436050853) +description = Dora village, NM +station = ('kcvs', 0.0079907159452037128) +zone = ('nmz536', 0.0026421119859044492) + +[fips3521390] +centroid = (0.64496548112348062, -1.8675083035665594) +description = Dulce CDP, NM +station = ('kpso', 0.0057350539509476699) +zone = ('coz023', 0.0042586137172077659) + +[fips3521810] +centroid = (0.60150365860946076, -1.8392404448557762) +description = Duran CDP, NM +station = ('k4cr', 0.0077020846528797603) +zone = ('nmz523', 0.0074318672268028647) + +[fips3522020] +centroid = (0.6378636142240679, -1.8371450549157096) +description = Eagle Nest village, NM +station = ('kaxx', 0.002231271063636334) +zone = ('nmz513', 0.0036123781143801372) + +[fips3522230] +centroid = (0.62092760238783085, -1.8439400580260363) +description = East Pecos CDP, NM +station = ('ksaf', 0.0061898196985812172) +zone = ('nmz514', 0.0055982648850913547) + +[fips3522380] +centroid = (0.61327192506346784, -1.8538056712492745) +description = Edgewood town, NM +station = ('k0e0', 0.0041291830463032753) +zone = ('nmz521', 0.0035407215974877812) + +[fips3522390] +centroid = (0.61456034457058262, -1.8602568270436659) +description = Edith Endave CDP, NM +station = ('kabq', 0.003120817977032374) +zone = ('nmz519', 0.0043059180958793051) + +[fips3522580] +centroid = (0.60706160725255909, -1.8621723084444373) +description = El Cerro CDP, NM +station = ('ke80', 0.003044487790876732) +zone = ('nmz519', 0.0039090315288072596) + +[fips3522582] +centroid = (0.60682893740997568, -1.8612994169256372) +description = El Cerro Mission CDP, NM +station = ('ke80', 0.0034027825363087552) +zone = ('nmz519', 0.0043191192853547743) + +[fips3522625] +centroid = (0.6200678357450059, -1.8488977006729113) +description = Eldorado at Santa Fe CDP, NM +station = ('ksaf', 0.0026318454851135147) +zone = ('nmz518', 0.0025036993139500112) + +[fips3522650] +centroid = (0.62951418597532982, -1.8523202040696094) +description = El Duende CDP, NM +station = ('klam', 0.0038357564109533374) +zone = ('nmz517', 0.0011807465369547696) + +[fips3522720] +centroid = (0.57913235986995526, -1.8714391690144863) +description = Elephant Butte city, NM +station = ('ktcs', 0.0010807151961085486) +zone = ('nmz409', 0.0025828485742057723) + +[fips3523000] +centroid = (0.59243934349910565, -1.8091271273538119) +description = Elida town, NM +station = ('k4mr', 0.0065509290938928714) +zone = ('nmz536', 0.0028692521582137157) + +[fips3523840] +centroid = (0.62644678726824243, -1.851543392926132) +description = El Rancho CDP, NM +station = ('klam', 0.002605337368591136) +zone = ('nmz517', 0.0042651510093051044) + +[fips3524120] +centroid = (0.63417871802762482, -1.8531390776480603) +description = El Rito CDP, NM +station = ('kskx', 0.0074425380941430894) +zone = ('nmz517', 0.0035865444112718188) + +[fips3524347] +centroid = (0.62749223949018695, -1.8505050616475354) +description = El Valle de Arroyo Seco CDP, NM +station = ('klam', 0.003663583624152365) +zone = ('nmz517', 0.0034536143610702941) + +[fips3524540] +centroid = (0.61314701184890263, -1.8751248157025078) +description = Encinal CDP, NM +station = ('kgnt', 0.0066408218915340583) +zone = ('nmz507', 0.003082414520865418) + +[fips3524610] +centroid = (0.60478840316829907, -1.8405994978377194) +description = Encino village, NM +station = ('kcqc', 0.0067687374316160002) +zone = ('nmz523', 0.0039694356052360387) + +[fips3524960] +centroid = (0.64107557855309816, -1.8594181614314975) +description = Ensenada CDP, NM +station = ('ke33', 0.0030216572726934942) +zone = ('nmz510', 0.0016555395412141752) + +[fips3525100] +centroid = (0.59518012128997499, -1.8657111903956585) +description = Escondida CDP, NM +station = ('konm', 0.0014777741791921488) +zone = ('nmz520', 0.0034224916746721755) + +[fips3525135] +centroid = (0.59533297722586465, -1.9028062961444983) +description = Escudilla Bonita CDP, NM +station = ('ksjn', 0.0087964436993027591) +zone = ('azz017', 0.0095954123489441177) + +[fips3525170] +centroid = (0.62838132766444532, -1.8511975210282641) +description = Espanola city, NM +station = ('klam', 0.0035960999887717348) +zone = ('nmz517', 0.0024247662742371912) + +[fips3525380] +centroid = (0.60672465398716913, -1.8504584613565072) +description = Estancia town, NM +station = ('k0e0', 0.0038063711341123139) +zone = ('nmz522', 0.00078807250405373789) + +[fips3525450] +centroid = (0.56622818077887249, -1.8010340530656066) +description = Eunice city, NM +station = ('khob', 0.0042196725482778171) +zone = ('nmz034', 0.0044876071065673402) + +[fips3525590] +centroid = (0.56382381520132518, -1.8646510599547046) +description = Fairacres CDP, NM +station = ('klru', 0.0012865088378039356) +zone = ('nmz411', 0.0034510832677022009) + +[fips3525800] +centroid = (0.64152964341129703, -1.8880377563464354) +description = Farmington city, NM +station = ('kfmn', 0.00080261736602471384) +zone = ('nmz501', 0.0070377466755143303) + +[fips3525870] +centroid = (0.56940785651674086, -1.8827782764587204) +description = Faywood CDP, NM +station = ('ksvc', 0.0040413422578984897) +zone = ('nmz403', 0.002570113314398412) + +[fips3526010] +centroid = (0.60508851253317952, -1.8968262919816827) +description = Fence Lake CDP, NM +station = ('ksjn', 0.010447266179454569) +zone = ('nmz505', 0.0065352756030247093) + +[fips3526360] +centroid = (0.64237483655486771, -1.8864584777194755) +description = Flora Vista CDP, NM +station = ('kfmn', 0.0022736874680889087) +zone = ('coz022', 0.0066624759368704711) + +[fips3526570] +centroid = (0.59740340895762789, -1.8077441633611164) +description = Floyd village, NM +station = ('k4mr', 0.0034609336123152621) +zone = ('nmz536', 0.0038758917312036911) + +[fips3526780] +centroid = (0.64312396677640882, -1.8137217589695644) +description = Folsom village, NM +station = ('ktad', 0.010233210322752815) +zone = ('nmz527', 0.0056173487856196972) + +[fips3527340] +centroid = (0.60191340955795147, -1.8189259293732836) +description = Fort Sumner village, NM +station = ('k4mr', 0.0068332213138259587) +zone = ('nmz537', 0.0037787455347433) + +[fips3527970] +centroid = (0.61775988215533861, -1.8492975905111282) +description = Galisteo CDP, NM +station = ('ksaf', 0.0042646950403642777) +zone = ('nmz518', 0.0031789686056729275) + +[fips3528460] +centroid = (0.61983324604024526, -1.8979367751715566) +description = Gallup city, NM +station = ('kgup', 0.00056426885181495693) +zone = ('nmz505', 0.008569794810379644) + +[fips3528670] +centroid = (0.5717142044034963, -1.872152816692334) +description = Garfield CDP, NM +station = ('ktcs', 0.0083168842531243705) +zone = ('nmz410', 0.0057788446890662658) + +[fips3529160] +centroid = (0.5749236729116961, -1.8949132016819865) +description = Gila CDP, NM +station = ('ksvc', 0.0081762648120364961) +zone = ('nmz401', 0.0013529769068630112) + +[fips3529540] +centroid = (0.56504509189211571, -1.8974522892244956) +description = Glen Acres CDP, NM +station = ('klsb', 0.00080373211570839299) +zone = ('nmz404', 0.001317228334517765) + +[fips3529790] +centroid = (0.58150312785940172, -1.9002293000506361) +description = Glenwood CDP, NM +station = ('ksad', 0.013768233938805228) +zone = ('nmz509', 0.0025554134311747433) + +[fips3529860] +centroid = (0.62105724544466889, -1.8459104125784904) +description = Glorieta CDP, NM +station = ('ksaf', 0.0045833704339739946) +zone = ('nmz518', 0.005030225692630657) + +[fips3530000] +centroid = (0.61546781106186454, -1.8539450008834613) +description = Golden CDP, NM +station = ('k0e0', 0.0058884138715154461) +zone = ('nmz518', 0.0048779565005045399) + +[fips3530210] +centroid = (0.60774095921060522, -1.8031867770716015) +description = Grady village, NM +station = ('ktcc', 0.0075230316993431376) +zone = ('nmz535', 0.0043314483636094419) + +[fips3530490] +centroid = (0.61354400444056123, -1.8820678750932813) +description = Grants city, NM +station = ('kgnt', 0.00096188628782871671) +zone = ('nmz506', 0.0034800985695023169) + +[fips3530770] +centroid = (0.63866948509959132, -1.808395258438573) +description = Grenville village, NM +station = ('kcao', 0.00696299927053668) +zone = ('nmz530', 0.0036367236176656735) + +[fips3531190] +centroid = (0.55702828849222263, -1.8906310887220961) +description = Hachita CDP, NM +station = ('klsb', 0.0090886516795882725) +zone = ('nmz405', 0.0047098548667120236) + +[fips3531330] +centroid = (0.57798152466777519, -1.8209425526042078) +description = Hagerman town, NM +station = ('krow', 0.0043520522499946616) +zone = ('nmz538', 0.0066795361689943626) + +[fips3531540] +centroid = (0.57272677462233335, -1.8865209954132822) +description = Hanover CDP, NM +station = ('ksvc', 0.0032891092982157777) +zone = ('nmz403', 0.0034499605562642688) + +[fips3531680] +centroid = (0.56597547455647634, -1.8202011890978382) +description = Happy Valley CDP, NM +station = ('kcnm', 0.0016873010620680063) +zone = ('nmz028', 0.0013551262004877916) + +[fips3531820] +centroid = (0.57009069913329125, -1.8703713067649459) +description = Hatch village, NM +station = ('klru', 0.0074451051812117102) +zone = ('nmz410', 0.0037605966104235482) + +[fips3532100] +centroid = (0.62931087257076501, -1.8521049875195461) +description = Hernandez CDP, NM +station = ('klam', 0.0037589450666658565) +zone = ('nmz517', 0.0013745100693244971) + +[fips3532148] +centroid = (0.60981184472797412, -1.8704093549426395) +description = Highland Meadows CDP, NM +station = ('kaeg', 0.0064059288237429219) +zone = ('nmz507', 0.0027228267179307299) + +[fips3532160] +centroid = (0.57480221544904975, -1.8466047569148112) +description = High Rolls CDP, NM +station = ('kalm', 0.0031754655297772704) +zone = ('nmz414', 0.0011490184516338251) + +[fips3532380] +centroid = (0.57459432928184473, -1.8775758339309609) +description = Hillsboro CDP, NM +station = ('ktcs', 0.0070837230319194611) +zone = ('nmz408', 0.0013873024782667066) + +[fips3532520] +centroid = (0.57125108128647961, -1.8004902084706851) +description = Hobbs city, NM +station = ('khob', 0.0011627135307600066) +zone = ('nmz033', 0.0040642303451022916) + +[fips3532940] +centroid = (0.57335230062624809, -1.85165107974098) +description = Holloman AFB CDP, NM +station = ('khmn', 0.00012091024044234787) +zone = ('nmz414', 0.0033631588658926824) + +[fips3533130] +centroid = (0.59594661753757339, -1.8828211068385643) +description = Homestead CDP, NM +station = ('konm', 0.014310256557522579) +zone = ('nmz508', 0.0051365886436183922) + +[fips3533290] +centroid = (0.57277119325179648, -1.828004329290702) +description = Hope village, NM +station = ('kats', 0.0039984870251539234) +zone = ('nmz540', 0.0052637896331056179) + +[fips3533640] +centroid = (0.5795308708980631, -1.8711672816236105) +description = Hot Springs Landing CDP, NM +station = ('ktcs', 0.00096700196007591839) +zone = ('nmz409', 0.0025495673020126401) + +[fips3533710] +centroid = (0.60474700395844172, -1.8134625426690583) +description = House village, NM +station = ('k4mr', 0.0062790911013309155) +zone = ('nmz537', 0.0090646556032956977) + +[fips3533850] +centroid = (0.57069744539445444, -1.8872588333545628) +description = Hurley town, NM +station = ('ksvc', 0.0011687643348678176) +zone = ('nmz403', 0.0018249180204200873) + +[fips3534430] +centroid = (0.61057160400465982, -1.8524881396502364) +description = Indian Hills CDP, NM +station = ('k0e0', 0.0019992383222456628) +zone = ('nmz521', 0.0025288107841128474) + +[fips3534760] +centroid = (0.60923482142397234, -1.8621531796358353) +description = Isleta Village Proper CDP, NM +station = ('kabq', 0.002585096702458062) +zone = ('nmz519', 0.0018216661528627554) + +[fips3534900] +centroid = (0.62637608398024403, -1.8507231928974497) +description = Jacona CDP, NM +station = ('klam', 0.0032637488895314363) +zone = ('nmz517', 0.0044574425390457193) + +[fips3534925] +centroid = (0.62632241510574516, -1.8511155952731755) +description = Jaconita CDP, NM +station = ('klam', 0.0029439188638725189) +zone = ('nmz517', 0.0044397161200953198) + +[fips3535040] +centroid = (0.56052118101765391, -1.8009916241114905) +description = Jal city, NM +station = ('kink', 0.0057995651885802274) +zone = ('nmz034', 0.0038276229817834663) + +[fips3535110] +centroid = (0.60415401089178422, -1.8633278385823053) +description = Jarales CDP, NM +station = ('ke80', 0.001172695810661912) +zone = ('nmz519', 0.0067555195963115754) + +[fips3535250] +centroid = (0.62145277195975579, -1.8628286918695272) +description = Jemez Pueblo CDP, NM +station = ('k4sl', 0.0072297257261725693) +zone = ('nmz511', 0.0055063278965188645) + +[fips3535320] +centroid = (0.62436349245989187, -1.8621046594826298) +description = Jemez Springs village, NM +station = ('klam', 0.0062476352553509978) +zone = ('nmz511', 0.0026099379117791918) + +[fips3535595] +centroid = (0.5640217529917938, -1.8807707463931991) +description = Keeler Farm CDP, NM +station = ('kdmn', 0.0010753542826195653) +zone = ('nmz407', 0.0022437265565094103) + +[fips3536090] +centroid = (0.5745158592786751, -1.8798864404210911) +description = Kingston CDP, NM +station = ('ksvc', 0.0081451813342127994) +zone = ('nmz408', 0.0026227173344288974) + +[fips3536230] +centroid = (0.64139111662856618, -1.8909780078175151) +description = Kirtland CDP, NM +station = ('kfmn', 0.001562536256685787) +zone = ('nmz501', 0.006130099282950557) + +[fips3536720] +centroid = (0.62106553575861589, -1.8519520268639014) +description = La Cienega CDP, NM +station = ('ksaf', 0.00067045796642645596) +zone = ('nmz518', 0.00099210303821659573) + +[fips3536880] +centroid = (0.62604002083277255, -1.8613675196730501) +description = La Cueva CDP, NM +station = ('klam', 0.0053677291061550898) +zone = ('nmz511', 0.00091800026052213813) + +[fips3537070] +centroid = (0.61189594238778056, -1.8747872690251719) +description = Laguna CDP, NM +station = ('kgnt', 0.0071415714656873075) +zone = ('nmz507', 0.0018354097858892906) + +[fips3537407] +centroid = (0.56210059927095368, -1.8801571060814903) +description = La Hacienda CDP, NM +station = ('kdmn', 0.001066209454433081) +zone = ('nmz407', 0.00099879881130610255) + +[fips3537420] +centroid = (0.5663403356366058, -1.8190359549293293) +description = La Huerta CDP, NM +station = ('kcnm', 0.0021170075352289915) +zone = ('nmz028', 0.00098625873806889273) + +[fips3537490] +centroid = (0.63015974835905753, -1.8664898166815582) +description = La Jara CDP, NM +station = ('k4sl', 0.0063289599757846635) +zone = ('nmz511', 0.0060052611338532571) + +[fips3537700] +centroid = (0.59943212732026863, -1.8648263782780674) +description = La Joya CDP, NM +station = ('ke80', 0.0053094601846796598) +zone = ('nmz520', 0.0074060226733538848) + +[fips3537840] +centroid = (0.57594917602029039, -1.8214967819081787) +description = Lake Arthur town, NM +station = ('kats', 0.0029789591081690026) +zone = ('nmz538', 0.008738986031840883) + +[fips3537860] +centroid = (0.57650583133192146, -1.887902266436603) +description = Lake Roberts CDP, NM +station = ('ksvc', 0.0069522064670544384) +zone = ('nmz402', 0.0022340835403519849) + +[fips3537862] +centroid = (0.57643125341298385, -1.8873667296089212) +description = Lake Roberts Heights CDP, NM +station = ('ksvc', 0.0068743386632666064) +zone = ('nmz402', 0.0018215457155658049) + +[fips3537875] +centroid = (0.60465814924622274, -1.8219500788215066) +description = Lake Sumner CDP, NM +station = ('k4mr', 0.01040197531005177) +zone = ('nmz537', 0.0052796462086192762) + +[fips3537910] +centroid = (0.62989028697584215, -1.8878206373874871) +description = Lake Valley CDP, NM +station = ('kfmn', 0.011559115642438738) +zone = ('nmz501', 0.0065011304755293389) + +[fips3538330] +centroid = (0.57546355560921547, -1.8489958405367508) +description = La Luz CDP, NM +station = ('kalm', 0.0024971910555517734) +zone = ('nmz414', 0.0016137603886818461) + +[fips3538470] +centroid = (0.634892871850956, -1.8508025181119527) +description = La Madera CDP, NM +station = ('kskx', 0.0054408858842485653) +zone = ('nmz517', 0.0043422877594164085) + +[fips3538680] +centroid = (0.56067656768095886, -1.8624230773513639) +description = La Mesa CDP, NM +station = ('k5t6', 0.0042515252464500036) +zone = ('nmz411', 0.0031201017779941627) + +[fips3538820] +centroid = (0.62738242337365147, -1.8512588693514718) +description = La Mesilla CDP, NM +station = ('klam', 0.0030550279305972656) +zone = ('nmz517', 0.0033775474556849883) + +[fips3538890] +centroid = (0.61933839283742731, -1.8480644281281315) +description = Lamy CDP, NM +station = ('ksaf', 0.0036154445570154067) +zone = ('nmz518', 0.0032664818897555708) + +[fips3539030] +centroid = (0.64445024247499927, -1.8883907666409436) +description = La Plata CDP, NM +station = ('kfmn', 0.0030842054886408201) +zone = ('coz022', 0.00592853767915426) + +[fips3539170] +centroid = (0.62812568928890578, -1.8500279584432104) +description = La Puebla CDP, NM +station = ('klam', 0.0042700320594285194) +zone = ('nmz517', 0.0030735256776599604) + +[fips3539380] +centroid = (0.56420288326156587, -1.8638317849505259) +description = Las Cruces city, NM +station = ('klru', 0.0020549538947082619) +zone = ('nmz411', 0.0040846246221377964) + +[fips3539430] +centroid = (0.60622737477669086, -1.8617171440288096) +description = Las Maravillas CDP, NM +station = ('ke80', 0.0027750816191254276) +zone = ('nmz519', 0.0048021704742027905) + +[fips3539450] +centroid = (0.60161211336917964, -1.8635021969745793) +description = Las Nutrias CDP, NM +station = ('ke80', 0.0032451864177237676) +zone = ('nmz519', 0.0093010430427565433) + +[fips3539520] +centroid = (0.57698672190072342, -1.8727072379825227) +description = Las Palomas CDP, NM +station = ('ktcs', 0.0030790890560861151) +zone = ('nmz409', 0.0036976565419791574) + +[fips3539940] +centroid = (0.62136199738535958, -1.8364605018764921) +description = Las Vegas city, NM +station = ('klvs', 0.0015103385488601602) +zone = ('nmz529', 0.0033090815038288551) + +[fips3540220] +centroid = (0.55764585579474835, -1.8616055825830222) +description = La Union CDP, NM +station = ('k5t6', 0.0013737380835619447) +zone = ('txz418', 0.0015050918460516134) + +[fips3540360] +centroid = (0.63008515298682721, -1.8510187294996898) +description = La Villita CDP, NM +station = ('klam', 0.0049034708516619606) +zone = ('nmz517', 0.0010817330752805583) + +[fips3540525] +centroid = (0.64082365772886529, -1.8861338988384821) +description = Lee Acres CDP, NM +station = ('kfmn', 0.0023920345738555468) +zone = ('nmz501', 0.0073411259756038863) + +[fips3540570] +centroid = (0.59611779943060894, -1.8659706161356748) +description = Lemitar CDP, NM +station = ('konm', 0.0024214389755386886) +zone = ('nmz520', 0.0043700548742347549) + +[fips3541420] +centroid = (0.56532417003950963, -1.8186883027956244) +description = Livingston Wheeler CDP, NM +station = ('kcnm', 0.001370598193857679) +zone = ('nmz028', 0.0020349103722205144) + +[fips3541620] +centroid = (0.61414827233418678, -1.8346258815799659) +description = Llano del Medio CDP, NM +station = ('klvs', 0.0080652369859554544) +zone = ('nmz529', 0.0062187229473289196) + +[fips3541970] +centroid = (0.57281128346471477, -1.8147646106509234) +description = Loco Hills CDP, NM +station = ('kats', 0.0071960363286699379) +zone = ('nmz028', 0.0068991521432234205) + +[fips3542040] +centroid = (0.61707304273480124, -1.8055214341988242) +description = Logan village, NM +station = ('ktcc', 0.0037003939104201119) +zone = ('nmz534', 0.0046174104246001525) + +[fips3542180] +centroid = (0.5645061342190999, -1.8972153607785371) +description = Lordsburg city, NM +station = ('klsb', 0.00023985904850466825) +zone = ('nmz404', 0.0018565600776699325) + +[fips3542320] +centroid = (0.62646736470012332, -1.855129730379715) +description = Los Alamos CDP, NM +station = ('klam', 0.00039719756317771986) +zone = ('nmz517', 0.0048647612768731516) + +[fips3542600] +centroid = (0.61832060408412681, -1.8521633338764405) +description = Los Cerrillos CDP, NM +station = ('ksaf', 0.0033508196810792031) +zone = ('nmz518', 0.0017597511977892972) + +[fips3542740] +centroid = (0.60620946769856532, -1.8633761492960002) +description = Los Chaves CDP, NM +station = ('ke80', 0.0017669302648787592) +zone = ('nmz519', 0.0047040297102898688) + +[fips3543300] +centroid = (0.63031537936845783, -1.850698095062806) +description = Los Luceros CDP, NM +station = ('klam', 0.0052447791136843004) +zone = ('nmz517', 0.0012165364332375364) + +[fips3543370] +centroid = (0.60749717162068673, -1.8633890472791725) +description = Los Lunas village, NM +station = ('ke80', 0.0029241218037669042) +zone = ('nmz519', 0.0034202441413812967) + +[fips3543510] +centroid = (0.64120883444148791, -1.8598511601656249) +description = Los Ojos CDP, NM +station = ('ke33', 0.002833941643830446) +zone = ('nmz510', 0.00201250290997245) + +[fips3543930] +centroid = (0.61369265413295371, -1.8613235897357774) +description = Los Ranchos de Albuquerque village, NM +station = ('kabq', 0.0023396824457754999) +zone = ('nmz519', 0.003120991980706369) + +[fips3544420] +centroid = (0.56350621763733977, -1.8168318135235706) +description = Loving village, NM +station = ('kcnm', 0.0026355722221312965) +zone = ('nmz028', 0.0043723312212771374) + +[fips3544490] +centroid = (0.5750072567295742, -1.8038031750035282) +description = Lovington city, NM +station = ('khob', 0.0049777287966293864) +zone = ('nmz033', 0.003630898833433979) + +[fips3544595] +centroid = (0.58735626403888996, -1.8987010723042974) +description = Lower Frisco CDP, NM +station = ('ksjn', 0.017359819456092912) +zone = ('nmz509', 0.0036124344606818016) + +[fips3545190] +centroid = (0.59324556344047952, -1.8655434817078342) +description = Luis Lopez CDP, NM +station = ('konm', 0.00049032554047551569) +zone = ('nmz520', 0.0017322291587508031) + +[fips3545260] +centroid = (0.64459845583507869, -1.8663742235251986) +description = Lumberton CDP, NM +station = ('ke33', 0.0049454935536770769) +zone = ('coz023', 0.0051480537797171152) + +[fips3545330] +centroid = (0.59022759245780831, -1.9013834862849801) +description = Luna CDP, NM +station = ('ksjn', 0.013771039186887487) +zone = ('nmz509', 0.0062243066613059299) + +[fips3545400] +centroid = (0.63100056072620581, -1.8503048898356242) +description = Lyden CDP, NM +station = ('klam', 0.0059807322209960235) +zone = ('nmz517', 0.001509508643663642) + +[fips3545690] +centroid = (0.61197477891009322, -1.8794315901647287) +description = McCartys Village CDP, NM +station = ('kgnt', 0.0035765304325997053) +zone = ('nmz506', 0.0053712349701375848) + +[fips3546030] +centroid = (0.60877763242641247, -1.8510561493588527) +description = McIntosh CDP, NM +station = ('k0e0', 0.0019246585958502976) +zone = ('nmz522', 0.0017174382900669643) + +[fips3546100] +centroid = (0.61790345293960769, -1.8527331140640464) +description = Madrid CDP, NM +station = ('ksaf', 0.0038568043507209806) +zone = ('nmz518', 0.0022564734335547378) + +[fips3546170] +centroid = (0.60352115450501098, -1.8627662265355984) +description = Madrone CDP, NM +station = ('ke80', 0.0019153732515463737) +zone = ('nmz519', 0.0073876356291480358) + +[fips3546310] +centroid = (0.59532175475877425, -1.8715455293791028) +description = Magdalena village, NM +station = ('konm', 0.0050612675706058017) +zone = ('nmz520', 0.0070369133565175166) + +[fips3546380] +centroid = (0.56236096748876618, -1.8162938506882285) +description = Malaga CDP, NM +station = ('kcnm', 0.0035525522966675586) +zone = ('nmz028', 0.0055895864734094372) + +[fips3546730] +centroid = (0.60464652535340446, -1.8564553079466046) +description = Manzano CDP, NM +station = ('ke80', 0.006671717660197936) +zone = ('nmz521', 0.0054242675112547659) + +[fips3546770] +centroid = (0.61019101750797, -1.8541109991486184) +description = Manzano Springs CDP, NM +station = ('k0e0', 0.0033444237044586208) +zone = ('nmz521', 0.0011504848240380665) + +[fips3547080] +centroid = (0.6377622978609897, -1.8246203802171803) +description = Maxwell village, NM +station = ('krtn', 0.0038562699157481594) +zone = ('nmz528', 0.0050190700309014685) + +[fips3547150] +centroid = (0.57404257834541184, -1.8414012322829154) +description = Mayhill CDP, NM +station = ('kalm', 0.0070894883850521843) +zone = ('nmz416', 0.001407910482421879) + +[fips3547220] +centroid = (0.60743559640467648, -1.8600281190984844) +description = Meadow Lake CDP, NM +station = ('kabq', 0.0040317240025078763) +zone = ('nmz519', 0.0042589656285410022) + +[fips3547570] +centroid = (0.60090775084295234, -1.8086736210009737) +description = Melrose village, NM +station = ('k4mr', 0.0033391923945030161) +zone = ('nmz535', 0.0047851960394692909) + +[fips3547920] +centroid = (0.57830650497449654, -1.8465567080005036) +description = Mescalero CDP, NM +station = ('kalm', 0.0059029384475202517) +zone = ('nmz415', 0.0028454442242638691) + +[fips3548060] +centroid = (0.56320109917750616, -1.8642638935667346) +description = Mesilla town, NM +station = ('klru', 0.0016256060293303731) +zone = ('nmz411', 0.003032682156298528) + +[fips3548200] +centroid = (0.61110577947552513, -1.8732727246601686) +description = Mesita CDP, NM +station = ('kaeg', 0.007985710784212138) +zone = ('nmz507', 0.00086989268649088794) + +[fips3548270] +centroid = (0.56141986850279824, -1.8620656513738478) +description = Mesquite CDP, NM +station = ('klru', 0.0040554695999436988) +zone = ('nmz411', 0.0035179942235835323) + +[fips3548425] +centroid = (0.58814517031408386, -1.8982633262746047) +description = Middle Frisco CDP, NM +station = ('ksjn', 0.016868191574008099) +zone = ('nmz509', 0.0044812962356730662) + +[fips3548480] +centroid = (0.5811465396399268, -1.823016736793863) +description = Midway CDP, NM +station = ('krow', 0.0011996216399815678) +zone = ('nmz538', 0.0040579304847903602) + +[fips3548620] +centroid = (0.61430027305874291, -1.8830760296291107) +description = Milan village, NM +station = ('kgnt', 0.00053746964109539221) +zone = ('nmz506', 0.003180074116339103) + +[fips3548830] +centroid = (0.57303735596272565, -1.8841566676887753) +description = Mimbres CDP, NM +station = ('ksvc', 0.0045121854980840143) +zone = ('nmz403', 0.0039684632053255215) + +[fips3549515] +centroid = (0.60652196890113486, -1.8614471415935261) +description = Monterey Park CDP, NM +station = ('ke80', 0.0031230177931151821) +zone = ('nmz519', 0.0045739278946876948) + +[fips3549950] +centroid = (0.56940094501290295, -1.8025349838624443) +description = Monument CDP, NM +station = ('khob', 0.001365866552794799) +zone = ('nmz033', 0.003205804767217141) + +[fips3550020] +centroid = (0.61400780823598622, -1.8739623915140944) +description = Moquino CDP, NM +station = ('kgnt', 0.0075629308141538423) +zone = ('nmz507', 0.0037136495447743644) + +[fips3550090] +centroid = (0.62767797742918419, -1.838375494585073) +description = Mora CDP, NM +station = ('klvs', 0.0061433412673569431) +zone = ('nmz515', 0.005009835502454687) + +[fips3550160] +centroid = (0.61097816100061941, -1.8508919138762399) +description = Moriarty city, NM +station = ('k0e0', 0.00083081855539202944) +zone = ('nmz522', 0.0037160341228683852) + +[fips3550195] +centroid = (0.57353411157442824, -1.8220721995092686) +description = Morningside CDP, NM +station = ('kats', 0.0010437393964221448) +zone = ('nmz028', 0.0066576048646124894) + +[fips3550300] +centroid = (0.62437949712913265, -1.8143467788279961) +description = Mosquero village, NM +station = ('ktcc', 0.011478731073257108) +zone = ('nmz531', 0.0023995375360024974) + +[fips3550370] +centroid = (0.6024835562647004, -1.8542933162422817) +description = Mountainair town, NM +station = ('ke80', 0.0087511827544016259) +zone = ('nmz522', 0.0060740093031648301) + +[fips3550515] +centroid = (0.56250054146904815, -1.8805264526577974) +description = Mountain View CDP, NM +station = ('kdmn', 0.00079040626864749629) +zone = ('nmz407', 0.00093750930106817852) + +[fips3550720] +centroid = (0.56935694526246017, -1.7996446488079714) +description = Nadine CDP, NM +station = ('khob', 0.0018758943911008875) +zone = ('nmz033', 0.0052658538842979656) + +[fips3550790] +centroid = (0.63261643890757968, -1.8806126370162608) +description = Nageezi CDP, NM +station = ('kfmn', 0.011093411592696362) +zone = ('nmz504', 0.0054387786078177449) + +[fips3550860] +centroid = (0.6245245688965585, -1.8989860845711481) +description = Nakaibito CDP, NM +station = ('krqe', 0.0043845187958399716) +zone = ('nmz502', 0.0047588711901642381) + +[fips3550930] +centroid = (0.62654557290390522, -1.8494674110473472) +description = Nambe CDP, NM +station = ('ksaf', 0.0051876196288221724) +zone = ('nmz517', 0.0046674128766454595) + +[fips3551035] +centroid = (0.63972905703518457, -1.8887715625771437) +description = Napi Headquarters CDP, NM +station = ('kfmn', 0.0016919838622030915) +zone = ('nmz501', 0.0051860038864299128) + +[fips3551140] +centroid = (0.62145703056313073, -1.7995094032442343) +description = Nara Visa CDP, NM +station = ('ktcc', 0.010216725945568729) +zone = ('txz006', 0.0081871391000505125) + +[fips3551280] +centroid = (0.62941046105788379, -1.89682384852073) +description = Naschitti CDP, NM +station = ('krqe', 0.0090424088106115675) +zone = ('nmz502', 0.0035697658630798931) + +[fips3551420] +centroid = (0.62661547334044765, -1.9029690131906618) +description = Navajo CDP, NM +station = ('krqe', 0.0044327121994196051) +zone = ('nmz502', 0.0027242801391067733) + +[fips3551490] +centroid = (0.64226859836329897, -1.8798343423429191) +description = Navajo Dam CDP, NM +station = ('kdro', 0.006178299900835532) +zone = ('nmz503', 0.0028587412605752529) + +[fips3551715] +centroid = (0.64115853405244549, -1.8923783378362675) +description = Nenahnezad CDP, NM +station = ('kfmn', 0.0026963110847877097) +zone = ('nmz501', 0.0058183199461774001) + +[fips3551770] +centroid = (0.63326521269713099, -1.8973156823039419) +description = Newcomb CDP, NM +station = ('kfmn', 0.010520297265890002) +zone = ('nmz501', 0.0046051366781337229) + +[fips3551840] +centroid = (0.61197381897900449, -1.8198809211800973) +description = Newkirk CDP, NM +station = ('ktcc', 0.0098112365133541934) +zone = ('nmz532', 0.0066213744295114101) + +[fips3552190] +centroid = (0.58537505353848862, -1.8449968025282415) +description = Nogal CDP, NM +station = ('ksrr', 0.0028752720440728932) +zone = ('nmz526', 0.0019896259311419718) + +[fips3552300] +centroid = (0.61201602104031783, -1.8774051756367007) +description = North Acomita Village CDP, NM +station = ('kgnt', 0.0050634914930570742) +zone = ('nmz507', 0.0035015629299960604) + +[fips3552500] +centroid = (0.57200129361215679, -1.7998428658511205) +description = North Hobbs CDP, NM +station = ('khob', 0.0020829300394153059) +zone = ('nmz033', 0.0046097148687142195) + +[fips3552540] +centroid = (0.57106925288500687, -1.8871982180696412) +description = North Hurley CDP, NM +station = ('ksvc', 0.0015428395326443974) +zone = ('nmz403', 0.0020898462592882977) + +[fips3552560] +centroid = (0.64359359997153542, -1.8857553543770174) +description = North Light Plant CDP, NM +station = ('kfmn', 0.0034116827048908272) +zone = ('coz022', 0.0053203602598155125) + +[fips3552680] +centroid = (0.61914930386626632, -1.8424750461052049) +description = North San Ysidro CDP, NM +station = ('klvs', 0.0068637401748151347) +zone = ('nmz514', 0.0074015820297060565) + +[fips3552750] +centroid = (0.61388676965236044, -1.8609189526019949) +description = North Valley CDP, NM +station = ('kabq', 0.0024613839278229822) +zone = ('nmz519', 0.0034495689863389056) + +[fips3553010] +centroid = (0.57469679756222936, -1.8730248180932156) +description = Oasis CDP, NM +station = ('ktcs', 0.0053836784429743432) +zone = ('nmz408', 0.003783543291300174) + +[fips3553150] +centroid = (0.62905430917072191, -1.8510332855456515) +description = Ohkay Owingeh CDP, NM +station = ('klam', 0.004131865883043661) +zone = ('nmz517', 0.0018572706121322885) + +[fips3553485] +centroid = (0.64043352428116707, -1.8914195935715623) +description = Ojo Amarillo CDP, NM +station = ('kfmn', 0.0021506441694996441) +zone = ('nmz501', 0.0051314944580950692) + +[fips3554430] +centroid = (0.56592442367585549, -1.8605630276076357) +description = Organ CDP, NM +station = ('klru', 0.0052723427997155483) +zone = ('nmz410', 0.0055829256663411687) + +[fips3554500] +centroid = (0.56528734359229249, -1.8520010531625899) +description = Orogrande CDP, NM +station = ('km63', 0.0055887169075475194) +zone = ('nmz413', 0.00160633613691632) + +[fips3554710] +centroid = (0.6132686438444741, -1.8738760500759981) +description = Paguate CDP, NM +station = ('kgnt', 0.0076486035819570046) +zone = ('nmz507', 0.0029716055994359484) + +[fips3554940] +centroid = (0.61050690464928836, -1.8639756698940604) +description = Pajarito Mesa CDP, NM +station = ('kaeg', 0.0028893660423414584) +zone = ('nmz519', 0.00086429508787791572) + +[fips3555270] +centroid = (0.61432236892707315, -1.8623043775089356) +description = Paradise Hills CDP, NM +station = ('kaeg', 0.001616113833399727) +zone = ('nmz519', 0.003469514193012605) + +[fips3555340] +centroid = (0.61163995494639056, -1.8756733377798243) +description = Paraje CDP, NM +station = ('kgnt', 0.0065248045762915947) +zone = ('nmz507', 0.0021129501024198132) + +[fips3555550] +centroid = (0.60711466526181967, -1.8315854831164065) +description = Pastura CDP, NM +station = ('kcqc', 0.011029613058534908) +zone = ('nmz533', 0.0025629928748061273) + +[fips3555595] +centroid = (0.62467379454760397, -1.8490579393515369) +description = Peak Place CDP, NM +station = ('ksaf', 0.0036359145021744796) +zone = ('nmz518', 0.0051745288432544553) + +[fips3555605] +centroid = (0.56322485310862569, -1.8792656966193266) +description = Pecan Park CDP, NM +station = ('kdmn', 0.00063314052797532169) +zone = ('nmz407', 0.0022142387437684447) + +[fips3555620] +centroid = (0.62090890991154191, -1.8444406533620932) +description = Pecos village, NM +station = ('ksaf', 0.0057878983958074967) +zone = ('nmz514', 0.0056615405879232401) + +[fips3555830] +centroid = (0.62082961960362382, -1.8558427671923245) +description = Peña Blanca CDP, NM +station = ('ksaf', 0.0036177926150345111) +zone = ('nmz518', 0.0032371260994471305) + +[fips3555900] +centroid = (0.63129117549995528, -1.844651244789639) +description = Peñasco CDP, NM +station = ('kskx', 0.0048930558367486889) +zone = ('nmz512', 0.0015934238861042129) + +[fips3556180] +centroid = (0.60786636111736103, -1.8620278475422496) +description = Peralta town, NM +station = ('ke80', 0.0037598307763352435) +zone = ('nmz519', 0.003150204792115187) + +[fips3556810] +centroid = (0.63181173740265517, -1.8452232415453951) +description = Picuris Pueblo CDP, NM +station = ('kskx', 0.0044334086597789847) +zone = ('nmz512', 0.0022783929441497156) + +[fips3556950] +centroid = (0.59935287191893549, -1.8880367440554691) +description = Pie Town CDP, NM +station = ('kgnt', 0.014956499301763918) +zone = ('nmz508', 0.0078810945564583793) + +[fips3557190] +centroid = (0.61091890707251417, -1.8920798690808842) +description = Pinehill CDP, NM +station = ('kgnt', 0.0077994090251533189) +zone = ('nmz505', 0.0058478257803126479) + +[fips3557440] +centroid = (0.56930851237571733, -1.8391322868020301) +description = Pinon CDP, NM +station = ('kalm', 0.0096904411809058209) +zone = ('nmz540', 0.0053748717966759741) + +[fips3557510] +centroid = (0.57362811500794075, -1.8888306943322013) +description = Pinos Altos CDP, NM +station = ('ksvc', 0.0042041187835169178) +zone = ('nmz402', 0.0044901329207386927) + +[fips3557990] +centroid = (0.57012302263103809, -1.8704635474159139) +description = Placitas CDP, NM +station = ('klru', 0.0075109470610334765) +zone = ('nmz410', 0.0038443362463788729) + +[fips3558070] +centroid = (0.61649615905713961, -1.8577920381674145) +description = Placitas CDP, NM +station = ('kabq', 0.0055198889502984022) +zone = ('nmz518', 0.0059391853298021548) + +[fips3558210] +centroid = (0.55697957635279949, -1.8943178000609613) +description = Playas CDP, NM +station = ('klsb', 0.0076962497723713193) +zone = ('nmz405', 0.0024986038211576279) + +[fips3558420] +centroid = (0.58084196223216122, -1.9003297262957959) +description = Pleasanton CDP, NM +station = ('ksad', 0.01331921403207831) +zone = ('nmz509', 0.0032114163760674644) + +[fips3558630] +centroid = (0.62650684404780344, -1.8502317605399656) +description = Pojoaque CDP, NM +station = ('klam', 0.0036692521474255618) +zone = ('nmz517', 0.0044523429324668743) + +[fips3558910] +centroid = (0.59693819144550886, -1.8660572019198665) +description = Polvadera CDP, NM +station = ('konm', 0.003244893155238801) +zone = ('nmz520', 0.005164310721648733) + +[fips3558980] +centroid = (0.62230573181849802, -1.8614714714832989) +description = Ponderosa CDP, NM +station = ('klam', 0.006714700140265136) +zone = ('nmz511', 0.004388973765209859) + +[fips3559120] +centroid = (0.61035677142703182, -1.8559761627070546) +description = Ponderosa Pine CDP, NM +station = ('kabq', 0.0038791598246208183) +zone = ('nmz521', 0.00052099609421612104) + +[fips3559260] +centroid = (0.5965067286011233, -1.8038862875825081) +description = Portales city, NM +station = ('kcvs', 0.0036380512197994848) +zone = ('nmz536', 0.0032688349085680021) + +[fips3559750] +centroid = (0.62958769924342395, -1.8514645913104044) +description = Pueblito CDP, NM +station = ('klam', 0.0042897089573386013) +zone = ('nmz517', 0.0012231446191927559) + +[fips3559820] +centroid = (0.60409617068037302, -1.8636861895843244) +description = Pueblitos CDP, NM +station = ('ke80', 0.00096592260295591959) +zone = ('nmz519', 0.0068298819657371069) + +[fips3559860] +centroid = (0.61657726450747974, -1.8401933073609025) +description = Pueblo CDP, NM +station = ('kcqc', 0.0065972820140636594) +zone = ('nmz529', 0.0070993671520992157) + +[fips3559950] +centroid = (0.61529380173544068, -1.8600074194935561) +description = Pueblo of Sandia Village CDP, NM +station = ('kabq', 0.0038696415999184357) +zone = ('nmz519', 0.0050406154302543044) + +[fips3560000] +centroid = (0.62758016917790249, -1.8788567485222918) +description = Pueblo Pintado CDP, NM +station = ('k4sl', 0.007157698035512099) +zone = ('nmz504', 0.0035427408884857177) + +[fips3560170] +centroid = (0.60789261086931112, -1.8260012498147731) +description = Puerto de Luna CDP, NM +station = ('k4mr', 0.015003082620420291) +zone = ('nmz533', 0.0024843260996163818) + +[fips3560205] +centroid = (0.56230827599864841, -1.8809904833460251) +description = Pulpotio Bareas CDP, NM +station = ('kdmn', 0.0011881666499346001) +zone = ('nmz407', 0.00054896909707265727) + +[fips3560730] +centroid = (0.59935704325584782, -1.8937873595946952) +description = Quemado CDP, NM +station = ('ksjn', 0.01299806651036497) +zone = ('nmz508', 0.0099776178839906648) + +[fips3560870] +centroid = (0.64084683570133183, -1.8428418270475113) +description = Questa village, NM +station = ('kskx', 0.0048056252933342597) +zone = ('nmz516', 0.0030331160427491594) + +[fips3561010] +centroid = (0.56685262467865105, -1.8658112850282602) +description = Radium Springs CDP, NM +station = ('klru', 0.0033071742410247774) +zone = ('nmz410', 0.0021391919737294737) + +[fips3561220] +centroid = (0.61326590367754852, -1.8934362517090715) +description = Ramah CDP, NM +station = ('kgup', 0.0078561997290308334) +zone = ('nmz505', 0.0051020517698564336) + +[fips3561675] +centroid = (0.58786181611002264, -1.8999332747562054) +description = Rancho Grande CDP, NM +station = ('ksjn', 0.016426314197782881) +zone = ('nmz509', 0.0038345404014350458) + +[fips3561710] +centroid = (0.6346388391783282, -1.843088302444478) +description = Ranchos de Taos CDP, NM +station = ('kskx', 0.0017883850225067328) +zone = ('nmz512', 0.0047597096407042171) + +[fips3562060] +centroid = (0.64376410118616278, -1.8228144007736793) +description = Raton city, NM +station = ('krtn', 0.0039404623019404532) +zone = ('nmz527', 0.0026083608315804535) + +[fips3562200] +centroid = (0.64070862307786636, -1.8398865657448644) +description = Red River town, NM +station = ('kaxx', 0.0054155885655659472) +zone = ('nmz513', 0.00086109665012501925) + +[fips3562340] +centroid = (0.63172157369349724, -1.8665566976984944) +description = Regina CDP, NM +station = ('k4sl', 0.0076662156255060329) +zone = ('nmz511', 0.0070748538347905421) + +[fips3562620] +centroid = (0.58833314227452371, -1.8982451050372138) +description = Reserve village, NM +station = ('ksjn', 0.016717112808595783) +zone = ('nmz509', 0.0046595518447137222) + +[fips3562760] +centroid = (0.61732225829869358, -1.8403465821758127) +description = Ribera CDP, NM +station = ('klvs', 0.0065864343621603091) +zone = ('nmz529', 0.0068662271686204413) + +[fips3562900] +centroid = (0.57024910521620209, -1.8688338287735715) +description = Rincon CDP, NM +station = ('klru', 0.0070672954785329168) +zone = ('nmz410', 0.0026256549900875487) + +[fips3563145] +centroid = (0.60459524757998084, -1.8623613625090132) +description = Rio Communities CDP, NM +station = ('ke80', 0.001817912477822323) +zone = ('nmz519', 0.0063346423710265148) + +[fips3563168] +centroid = (0.62521550984083785, -1.8483195079983106) +description = Rio en Medio CDP, NM +station = ('ksaf', 0.0044217274746086921) +zone = ('nmz514', 0.0041710631869353535) + +[fips3563250] +centroid = (0.6316726521145638, -1.8451626611670584) +description = Rio Lucio CDP, NM +station = ('kskx', 0.0045620083060406661) +zone = ('nmz512', 0.0021354898977184286) + +[fips3563460] +centroid = (0.61584110208228116, -1.8622465722041095) +description = Rio Rancho city, NM +station = ('kaeg', 0.0028031509932880143) +zone = ('nmz519', 0.0049781260620658553) + +[fips3563660] +centroid = (0.58773266174537508, -1.8985580600253891) +description = Rivers CDP, NM +station = ('ksjn', 0.017093644908547041) +zone = ('nmz509', 0.0040050483039371513) + +[fips3564230] +centroid = (0.62149088995061941, -1.8994303406789508) +description = Rock Springs CDP, NM +station = ('kgup', 0.0017357261211565951) +zone = ('azz011', 0.0073210921745203907) + +[fips3564370] +centroid = (0.55570669027602748, -1.9028738403865506) +description = Rodeo CDP, NM +station = ('klsb', 0.0099401602565698331) +zone = ('azz512', 0.0048978651574350116) + +[fips3564440] +centroid = (0.56991674216674482, -1.8698723171318006) +description = Rodey CDP, NM +station = ('klru', 0.0070964632412595166) +zone = ('nmz410', 0.0033081417645788656) + +[fips3564900] +centroid = (0.57193821741298978, -1.8891849787170638) +description = Rosedale CDP, NM +station = ('ksvc', 0.0027383980971600269) +zone = ('nmz403', 0.0038472747708153884) + +[fips3564930] +centroid = (0.58247644562336132, -1.8243820729611131) +description = Roswell city, NM +station = ('krow', 0.0012830917643258471) +zone = ('nmz538', 0.0038535459032997318) + +[fips3565000] +centroid = (0.61945667380083491, -1.844316804798372) +description = Rowe CDP, NM +station = ('ksaf', 0.0062369826098011743) +zone = ('nmz518', 0.0062636065652141347) + +[fips3565070] +centroid = (0.6273602576921512, -1.8185682939562573) +description = Roy village, NM +station = ('krtn', 0.01534638462987648) +zone = ('nmz531', 0.0055340872439835504) + +[fips3565210] +centroid = (0.58199468238993335, -1.8442570098181985) +description = Ruidoso village, NM +station = ('ksrr', 0.0028818548176843079) +zone = ('nmz526', 0.0043735934221251112) + +[fips3565280] +centroid = (0.5817390440143938, -1.8430109494520297) +description = Ruidoso Downs city, NM +station = ('ksrr', 0.0025386204001371392) +zone = ('nmz526', 0.0044656393716775) + +[fips3565560] +centroid = (0.57219722427398567, -1.8424586051036509) +description = Sacramento CDP, NM +station = ('kalm', 0.0061940606998793259) +zone = ('nmz416', 0.0034217371350546192) + +[fips3565840] +centroid = (0.57093554321101159, -1.8710693511992809) +description = Salem CDP, NM +station = ('klru', 0.0084690363524832172) +zone = ('nmz410', 0.0046148011560079513) + +[fips3565910] +centroid = (0.59786159279286144, -1.8657958388643801) +description = San Acacia CDP, NM +station = ('konm', 0.0041588833431661799) +zone = ('nmz520', 0.0059880092235277821) + +[fips3566120] +centroid = (0.59194874889966254, -1.8652337555787755) +description = San Antonio CDP, NM +station = ('konm', 0.0018069628137441477) +zone = ('nmz520', 0.0010082563920209057) + +[fips3566330] +centroid = (0.61361442847587921, -1.8561142706107649) +description = San Antonito CDP, NM +station = ('kabq', 0.0042068601214343051) +zone = ('nmz521', 0.0036360864641381829) + +[fips3566400] +centroid = (0.59152360414716931, -1.8654069620537435) +description = San Antonito CDP, NM +station = ('konm', 0.0021984839171542252) +zone = ('nmz520', 0.0012639640806692172) + +[fips3566540] +centroid = (0.63896725572327406, -1.8436227222614388) +description = San Cristobal CDP, NM +station = ('kskx', 0.0028371967171548977) +zone = ('nmz516', 0.0022120102235664548) + +[fips3566765] +centroid = (0.61390893533386082, -1.858575324482417) +description = Sandia Heights CDP, NM +station = ('kabq', 0.0029316827233641404) +zone = ('nmz521', 0.004638882011233708) + +[fips3566890] +centroid = (0.61366355949432283, -1.8552616947244582) +description = Sandia Knolls CDP, NM +station = ('kabq', 0.0048403817481847524) +zone = ('nmz521', 0.0036551608431151304) + +[fips3566960] +centroid = (0.613741034659819, -1.8564324441334035) +description = Sandia Park CDP, NM +station = ('kabq', 0.0040561115311495083) +zone = ('nmz521', 0.003805201961902877) + +[fips3567450] +centroid = (0.61851548754840457, -1.8572608821161551) +description = San Felipe Pueblo CDP, NM +station = ('ksaf', 0.0056252338589718497) +zone = ('nmz518', 0.0045782479344140519) + +[fips3567520] +centroid = (0.61265535259861592, -1.8779312178732519) +description = San Fidel CDP, NM +station = ('kgnt', 0.0044598164459564724) +zone = ('nmz507', 0.0042039039802931376) + +[fips3568010] +centroid = (0.6265256063372624, -1.8521980484752625) +description = San Ildefonso Pueblo CDP, NM +station = ('klam', 0.002087533006862373) +zone = ('nmz517', 0.0041599243033871259) + +[fips3568150] +centroid = (0.61285781079184709, -1.8035427369725456) +description = San Jon village, NM +station = ('ktcc', 0.0039645202338956503) +zone = ('nmz534', 0.0030647563935431148) + +[fips3568430] +centroid = (0.6289595377923386, -1.8518020507212776) +description = San Jose CDP, NM +station = ('klam', 0.0036319105715341385) +zone = ('nmz517', 0.0017462531434158338) + +[fips3568500] +centroid = (0.61776894041415642, -1.8409015096114842) +description = San Jose CDP, NM +station = ('klvs', 0.0065878225345934443) +zone = ('nmz529', 0.0071171226815488669) + +[fips3568920] +centroid = (0.57256140467570682, -1.8835629415838322) +description = San Lorenzo CDP, NM +station = ('ksvc', 0.0045165722419160574) +zone = ('nmz403', 0.0037547480785945935) + +[fips3569060] +centroid = (0.62309847781804639, -1.8682541874756919) +description = San Luis CDP, NM +station = ('k4sl', 0.0026339107630434962) +zone = ('nmz511', 0.0072149606090340266) + +[fips3569270] +centroid = (0.61668709807730782, -1.8788490865268757) +description = San Mateo CDP, NM +station = ('kgnt', 0.0046010632733704572) +zone = ('nmz506', 0.0073638777803474859) + +[fips3569410] +centroid = (0.56118372545500339, -1.8627349327821101) +description = San Miguel CDP, NM +station = ('klru', 0.0037324372134431546) +zone = ('nmz411', 0.0029137060556927762) + +[fips3569620] +centroid = (0.63583229532084184, -1.9000141882203279) +description = Sanostee CDP, NM +station = ('kfmn', 0.010435670654652281) +zone = ('nmz502', 0.0069653252747169892) + +[fips3569645] +centroid = (0.56288015058135688, -1.8633588705364055) +description = San Pablo CDP, NM +station = ('klru', 0.0024470407613459283) +zone = ('nmz411', 0.0032566631629287425) + +[fips3569825] +centroid = (0.6148444318129298, -1.8532728745885181) +description = San Pedro CDP, NM +station = ('k0e0', 0.005068538833454774) +zone = ('nmz521', 0.0051626066333417629) + +[fips3569875] +centroid = (0.61208400161468302, -1.883042746200275) +description = San Rafael CDP, NM +station = ('kgnt', 0.0016956640072691288) +zone = ('nmz506', 0.0024136160673804397) + +[fips3570250] +centroid = (0.61701380625998858, -1.8590440501063326) +description = Santa Ana Pueblo CDP, NM +station = ('kaeg', 0.0053826820791764794) +zone = ('nmz519', 0.0069266164540539906) + +[fips3570270] +centroid = (0.57208396985882382, -1.8876747278620205) +description = Santa Clara village, NM +station = ('ksvc', 0.0025262912451953848) +zone = ('nmz403', 0.0031652178748207858) + +[fips3570390] +centroid = (0.62780828371113806, -1.8518307962940579) +description = Santa Clara Pueblo CDP, NM +station = ('klam', 0.0028462230624885189) +zone = ('nmz517', 0.0028872646518257926) + +[fips3570460] +centroid = (0.62816618092755205, -1.8506032364179601) +description = Santa Cruz CDP, NM +station = ('klam', 0.0038789651630705296) +zone = ('nmz517', 0.0028061542538845474) + +[fips3570500] +centroid = (0.62248981169470585, -1.8495903520398578) +description = Santa Fe city, NM +station = ('ksaf', 0.0017775675222519135) +zone = ('nmz518', 0.0030976017326186994) + +[fips3570670] +centroid = (0.60973885505865577, -1.8269405511116117) +description = Santa Rosa city, NM +station = ('klvs', 0.014070287696003549) +zone = ('nmz533', 0.0020694986153714356) + +[fips3570700] +centroid = (0.55624446112515202, -1.8617442489920932) +description = Santa Teresa CDP, NM +station = ('k5t6', 0.00054431547770786325) +zone = ('txz418', 0.0014311709392288235) + +[fips3570810] +centroid = (0.61989759632976638, -1.8564540338562505) +description = Santo Domingo Pueblo CDP, NM +station = ('ksaf', 0.0043830574456964503) +zone = ('nmz518', 0.0036503990530254069) + +[fips3571015] +centroid = (0.56473185765126022, -1.8642366489771112) +description = San Ysidro CDP, NM +station = ('klru', 0.0019917206180983553) +zone = ('nmz411', 0.0044243006576959133) + +[fips3571020] +centroid = (0.6206475643093482, -1.8635447131951579) +description = San Ysidro village, NM +station = ('k4sl', 0.0071606705122983349) +zone = ('nmz511', 0.0064682529796727117) + +[fips3571145] +centroid = (0.60529289058858804, -1.863308430521023) +description = Sausal CDP, NM +station = ('ke80', 0.0011729546564712039) +zone = ('nmz519', 0.0056168288245069869) + +[fips3571440] +centroid = (0.61167685120677773, -1.8767086321855224) +description = Seama CDP, NM +station = ('kgnt', 0.0057174241272395943) +zone = ('nmz507', 0.0028384016101625628) + +[fips3571510] +centroid = (0.61479247336109788, -1.8747292368275432) +description = Seboyeta CDP, NM +station = ('kgnt', 0.0070049914447887322) +zone = ('nmz507', 0.004572709626323836) + +[fips3571700] +centroid = (0.61245429066878609, -1.8550601790090231) +description = Sedillo CDP, NM +station = ('kabq', 0.0045819133283030713) +zone = ('nmz521', 0.0024669590617196154) + +[fips3571790] +centroid = (0.61616484320523357, -1.839426304967821) +description = Sena CDP, NM +station = ('kcqc', 0.0065969741545618098) +zone = ('nmz529', 0.0068017240736388549) + +[fips3572600] +centroid = (0.63104646288553323, -1.8970082600094955) +description = Sheep Springs CDP, NM +station = ('krqe', 0.010312889578505267) +zone = ('nmz502', 0.0039919880680642904) + +[fips3572770] +centroid = (0.64211520137534117, -1.8971681321689782) +description = Shiprock CDP, NM +station = ('kfmn', 0.006558746539659514) +zone = ('nmz501', 0.0078554592131228392) + +[fips3573260] +centroid = (0.57209416258165546, -1.8896576662383813) +description = Silver City town, NM +station = ('ksvc', 0.0030824980251083251) +zone = ('nmz403', 0.0042479504245642426) + +[fips3573440] +centroid = (0.61143754911303683, -1.8782180976424021) +description = Skyline-Ganipa CDP, NM +station = ('kgnt', 0.0047054720586176555) +zone = ('nmz507', 0.0038892321768924849) + +[fips3573540] +centroid = (0.59436616954001498, -1.8658646397434939) +description = Socorro city, NM +station = ('konm', 0.00066930948738416567) +zone = ('nmz520', 0.0027681792620740595) + +[fips3573680] +centroid = (0.61814093989092656, -1.8412961285553602) +description = Soham CDP, NM +station = ('klvs', 0.006592069878878698) +zone = ('nmz514', 0.0085466747139778636) + +[fips3573890] +centroid = (0.62797309515240385, -1.8506646371010453) +description = Sombrillo CDP, NM +station = ('klam', 0.0037419560349578893) +zone = ('nmz517', 0.0029604842803936924) + +[fips3573925] +centroid = (0.6117963364473693, -1.8772930033256749) +description = South Acomita Village CDP, NM +station = ('kgnt', 0.0052290622040897395) +zone = ('nmz507', 0.0033173375215467503) + +[fips3574520] +centroid = (0.61099166984902986, -1.8619829925804734) +description = South Valley CDP, NM +station = ('kabq', 0.0012809735984664345) +zone = ('nmz519', 0.00086967515952682218) + +[fips3574660] +centroid = (0.64261548255213286, -1.8859341982654692) +description = Spencerville CDP, NM +station = ('kfmn', 0.0027561598931223974) +zone = ('coz022', 0.006268928210454724) + +[fips3574800] +centroid = (0.6347088443346256, -1.8254943538401165) +description = Springer town, NM +station = ('krtn', 0.0066214024568519263) +zone = ('nmz528', 0.0019228047670167454) + +[fips3575640] +centroid = (0.555008261869257, -1.8601535908184106) +description = Sunland Park city, NM +station = ('k5t6', 0.0023422521033919733) +zone = ('txz418', 0.0017518386804061712) + +[fips3575710] +centroid = (0.56085096097981824, -1.8811821554044792) +description = Sunshine CDP, NM +station = ('kdmn', 0.0025124990457303462) +zone = ('nmz407', 0.00097484158405799126) + +[fips3576060] +centroid = (0.60667711121834478, -1.8553027797750501) +description = Tajique CDP, NM +station = ('k0e0', 0.0057722108955043502) +zone = ('nmz521', 0.00334024703446143) + +[fips3576130] +centroid = (0.63425521580873978, -1.8429315544243565) +description = Talpa CDP, NM +station = ('kskx', 0.0021841503010194643) +zone = ('nmz512', 0.0043938464214215321) + +[fips3576200] +centroid = (0.63507002277003333, -1.8427230224853282) +description = Taos town, NM +station = ('kskx', 0.0016396574560136729) +zone = ('nmz512', 0.0052243128824279702) + +[fips3576410] +centroid = (0.63644408558354348, -1.8424303133164761) +description = Taos Pueblo CDP, NM +station = ('kskx', 0.0014737170924115945) +zone = ('nmz516', 0.0043953167918656241) + +[fips3576480] +centroid = (0.63863012792495888, -1.8402332230408955) +description = Taos Ski Valley village, NM +station = ('kaxx', 0.0037115779708399434) +zone = ('nmz513', 0.0027276604643521924) + +[fips3576620] +centroid = (0.58041611934796722, -1.8031139968417933) +description = Tatum town, NM +station = ('khob', 0.010079078288659213) +zone = ('nmz029', 0.0014603346599046294) + +[fips3576760] +centroid = (0.61890106568675518, -1.8375560974078466) +description = Tecolote CDP, NM +station = ('klvs', 0.0039417956757471298) +zone = ('nmz529', 0.0041716179697344922) + +[fips3576830] +centroid = (0.61489314395235284, -1.8354408456208922) +description = Tecolotito CDP, NM +station = ('klvs', 0.007328896383702291) +zone = ('nmz529', 0.0057298507228738006) + +[fips3577040] +centroid = (0.62393075552515231, -1.8486700399252811) +description = Tesuque CDP, NM +station = ('ksaf', 0.0032556026490690596) +zone = ('nmz518', 0.0046998162697822546) + +[fips3577100] +centroid = (0.62498554525859507, -1.8496157814870593) +description = Tesuque Pueblo CDP, NM +station = ('ksaf', 0.0036907420239660343) +zone = ('nmz518', 0.005272377939404522) + +[fips3577250] +centroid = (0.60020504637951422, -1.7985737845921177) +description = Texico city, NM +station = ('kcvn', 0.00090214137217507653) +zone = ('txz021', 0.0045518879982138208) + +[fips3577530] +centroid = (0.61822775256792073, -1.8889015546998325) +description = Thoreau CDP, NM +station = ('kgnt', 0.0064352684205812982) +zone = ('nmz506', 0.0064862238485398419) + +[fips3577670] +centroid = (0.64063879245449418, -1.8599123863157847) +description = Tierra Amarilla CDP, NM +station = ('ke33', 0.0033972393625985682) +zone = ('nmz510', 0.0017890935175016085) + +[fips3577880] +centroid = (0.61241451461513308, -1.8566086874812699) +description = Tijeras village, NM +station = ('kabq', 0.0033453302511933492) +zone = ('nmz521', 0.0025675414839398196) + +[fips3577950] +centroid = (0.56961099538838045, -1.8447300987652442) +description = Timberon CDP, NM +station = ('kalm', 0.0054510221419022589) +zone = ('nmz414', 0.005268654951538148) + +[fips3578440] +centroid = (0.62553038469119027, -1.8980809568210637) +description = Tohatchi CDP, NM +station = ('krqe', 0.0055579392359411247) +zone = ('nmz502', 0.0042369593904625245) + +[fips3578650] +centroid = (0.60632190180897882, -1.8626678074190786) +description = Tome CDP, NM +station = ('ke80', 0.0022232369835769668) +zone = ('nmz519', 0.004593611985824436) + +[fips3579070] +centroid = (0.6247083695200859, -1.8712094138717537) +description = Torreon CDP, NM +station = ('k4sl', 0.00042850684834311607) +zone = ('nmz504', 0.0057087337167505336) + +[fips3579140] +centroid = (0.60605046820370867, -1.8552994287428863) +description = Torreon CDP, NM +station = ('k0e0', 0.0062053952068239753) +zone = ('nmz521', 0.0039663967190908013) + +[fips3579680] +centroid = (0.57659088122637114, -1.8882588372027853) +description = Trout Valley CDP, NM +station = ('ksvc', 0.0070553017573785739) +zone = ('nmz402', 0.0025107606692580668) + +[fips3579700] +centroid = (0.62895840332832476, -1.8467788709609902) +description = Truchas CDP, NM +station = ('kskx', 0.0075010063893999439) +zone = ('nmz512', 0.002675744257890092) + +[fips3579840] +centroid = (0.57998860094769111, -1.8722026632957711) +description = Truth or Consequences city, NM +station = ('ktcs', 5.740609254932807e-05) +zone = ('nmz409', 0.0035284017848496714) + +[fips3579885] +centroid = (0.62225305778167284, -1.9030403971570682) +description = Tse Bonito CDP, NM +station = ('krqe', 0.00043447624794262947) +zone = ('azz011', 0.0047118971095862971) + +[fips3579910] +centroid = (0.61383662634295066, -1.8099750955708933) +description = Tucumcari city, NM +station = ('ktcc', 0.0015002021532832131) +zone = ('nmz534', 0.0024841131422747229) + +[fips3579980] +centroid = (0.57726766755041703, -1.8503509490745844) +description = Tularosa village, NM +station = ('khmn', 0.0041095023022600435) +zone = ('nmz412', 0.0031220224248862606) + +[fips3580470] +centroid = (0.57488742242313218, -1.843872304344474) +description = Twin Forks CDP, NM +station = ('kalm', 0.0052731876860789709) +zone = ('nmz415', 0.0012492894710099604) + +[fips3580540] +centroid = (0.62279198054810359, -1.8984104226239629) +description = Twin Lakes CDP, NM +station = ('kgup', 0.002914549404574153) +zone = ('nmz502', 0.006543680992021874) + +[fips3580820] +centroid = (0.57089609876991643, -1.890239314664901) +description = Tyrone CDP, NM +station = ('ksvc', 0.0026120586567156467) +zone = ('nmz403', 0.0040315434061298731) + +[fips3581030] +centroid = (0.56333580368917502, -1.8630749229203987) +description = University Park CDP, NM +station = ('klru', 0.0026006865284306114) +zone = ('nmz411', 0.0037503242206313441) + +[fips3581177] +centroid = (0.64088881086984228, -1.8905210806193429) +description = Upper Fruitland CDP, NM +station = ('kfmn', 0.0013045310585664321) +zone = ('nmz501', 0.0057110549668466966) + +[fips3581450] +centroid = (0.63786003629910148, -1.8344073838109087) +description = Ute Park CDP, NM +station = ('kaxx', 0.0033170438060816788) +zone = ('nmz513', 0.0049344421793176257) + +[fips3581520] +centroid = (0.63168568972407613, -1.8443824117249541) +description = Vadito CDP, NM +station = ('kskx', 0.004488475453899742) +zone = ('nmz512', 0.0018699834470458224) + +[fips3581590] +centroid = (0.56073734004551334, -1.8615171642031161) +description = Vado CDP, NM +station = ('k5t6', 0.0043691129670173018) +zone = ('txz418', 0.0041376428031793021) + +[fips3581800] +centroid = (0.60747416818114552, -1.8620043030506404) +description = Valencia CDP, NM +station = ('ke80', 0.0034522318054408061) +zone = ('nmz519', 0.0035346811001821313) + +[fips3582570] +centroid = (0.60400961980276668, -1.8363059355179356) +description = Vaughn town, NM +station = ('kcqc', 0.0094523841305176222) +zone = ('nmz523', 0.0067754934627977815) + +[fips3582640] +centroid = (0.60239491099199149, -1.8634516522394415) +description = Veguita CDP, NM +station = ('ke80', 0.002515054181541665) +zone = ('nmz519', 0.0085172034215164668) + +[fips3582710] +centroid = (0.63109870059004547, -1.8493291635172966) +description = Velarde CDP, NM +station = ('kskx', 0.0065285296236672176) +zone = ('nmz517', 0.0023014972930362216) + +[fips3582800] +centroid = (0.56276012428869726, -1.8794264414434356) +description = Ventura CDP, NM +station = ('kdmn', 0.00063522855542557917) +zone = ('nmz407', 0.0018351829492606101) + +[fips3583130] +centroid = (0.61550669699759908, -1.8388829141585052) +description = Villanueva CDP, NM +station = ('kcqc', 0.0063776637819357293) +zone = ('nmz529', 0.0068765094509805665) + +[fips3583200] +centroid = (0.57052938764077998, -1.9024351169724767) +description = Virden village, NM +station = ('klsb', 0.0076990307332974028) +zone = ('nmz404', 0.0059810262102110113) + +[fips3583340] +centroid = (0.62839832717135991, -1.8275204891154642) +description = Wagon Mound village, NM +station = ('klvs', 0.0086207281054162376) +zone = ('nmz528', 0.0046995139704869553) + +[fips3583760] +centroid = (0.6415000426271833, -1.893154468301337) +description = Waterflow CDP, NM +station = ('kfmn', 0.0033074799850571169) +zone = ('nmz501', 0.0062045731506758673) + +[fips3583830] +centroid = (0.62464593909274202, -1.8322861979044973) +description = Watrous CDP, NM +station = ('klvs', 0.003242940850242989) +zone = ('nmz529', 0.0044976886512929411) + +[fips3583970] +centroid = (0.57241566968316526, -1.8418629591365303) +description = Weed CDP, NM +station = ('kalm', 0.0066655000615785361) +zone = ('nmz416', 0.0029847845742009041) + +[fips3584200] +centroid = (0.64028190752904635, -1.8856756277367863) +description = West Hammond CDP, NM +station = ('kfmn', 0.0029138515333994711) +zone = ('nmz501', 0.0072102148081639823) + +[fips3584740] +centroid = (0.62470295899940476, -1.8535965808048855) +description = White Rock CDP, NM +station = ('klam', 0.0017801233689608009) +zone = ('nmz518', 0.0048133941892747169) + +[fips3584845] +centroid = (0.56520004222310782, -1.8586494311624566) +description = White Sands CDP, NM +station = ('km63', 0.0074541755736166684) +zone = ('nmz413', 0.0040301621707169539) + +[fips3584950] +centroid = (0.56158965413243223, -1.8216722747644667) +description = Whites City CDP, NM +station = ('kcnm', 0.0031603592548436247) +zone = ('nmz028', 0.0059049262790006217) + +[fips3584975] +centroid = (0.56841408349394784, -1.8910472799355267) +description = White Signal CDP, NM +station = ('ksvc', 0.0031424401083434339) +zone = ('nmz403', 0.0044907258871265746) + +[fips3585160] +centroid = (0.60379417635990051, -1.8506029222586948) +description = Willard village, NM +station = ('k0e0', 0.0067373716699177912) +zone = ('nmz522', 0.0036100319624622406) + +[fips3585300] +centroid = (0.57797710898476762, -1.8726711620268839) +description = Williamsburg village, NM +station = ('ktcs', 0.0020986639149546868) +zone = ('nmz409', 0.0034609733945842654) + +[fips3585485] +centroid = (0.55810168343549171, -1.8959774161933902) +description = Windmill CDP, NM +station = ('klsb', 0.0062870387565323368) +zone = ('nmz405', 0.0034676258923076312) + +[fips3585720] +centroid = (0.58199682914491335, -1.8788247217305178) +description = Winston CDP, NM +station = ('ktcs', 0.0059104625657623745) +zone = ('nmz408', 0.0061757330231160708) + +[fips3585860] +centroid = (0.62171434445475227, -1.8987764530746911) +description = Yah-ta-hey CDP, NM +station = ('kgup', 0.0018355835691394931) +zone = ('nmz502', 0.0074810645210170819) + +[fips3586175] +centroid = (0.64565675368031794, -1.8761081342030812) +description = Young Place CDP, NM +station = ('kdro', 0.0046888129785553614) +zone = ('nmz503', 0.0028728489078266002) + +[fips3586210] +centroid = (0.63175997093704106, -1.8599551643357513) +description = Youngsville CDP, NM +station = ('klam', 0.0069596165706296747) +zone = ('nmz511', 0.0051561536680044956) + +[fips3586420] +centroid = (0.62011904370525928, -1.8625616739472646) +description = Zia Pueblo CDP, NM +station = ('kaeg', 0.0068143596920970956) +zone = ('nmz511', 0.0067167668237473194) + +[fips3586595] +centroid = (0.61209995392404615, -1.8997621103164621) +description = Zuni Pueblo CDP, NM +station = ('kgup', 0.0078377361282186888) +zone = ('nmz505', 0.00089928974930467229) + +[fips36001] +centroid = (0.74330555168161794, -1.2910901052163806) +description = Albany County, NY +station = ('kalb', 0.0035992382168139564) +zone = ('nyz052', 0.0013504728436988221) + +[fips3600101000] +centroid = (0.74465772806630803, -1.2880242423990349) +description = Albany city, NY +station = ('kalb', 0.0014706788592688679) +zone = ('nyz052', 0.0012895529226354683) + +[fips3600106211] +centroid = (0.74357862589638501, -1.2938188227821186) +description = Berne town, NY +station = ('kalb', 0.0049466558795377945) +zone = ('nyz051', 0.00068965676614364177) + +[fips3600106354] +centroid = (0.74326486805675396, -1.2885378753446042) +description = Bethlehem town, NY +station = ('kalb', 0.0028854986892761668) +zone = ('nyz052', 0.00091969933142445879) + +[fips3600116694] +centroid = (0.74161277429340111, -1.2893637651466479) +description = Coeymans town, NY +station = ('kalb', 0.0046173476140426561) +zone = ('nyz052', 0.0022874265466106369) + +[fips3600116749] +centroid = (0.7465273596676294, -1.2864430788164831) +description = Cohoes city, NY +station = ('kalb', 0.0012475366584885994) +zone = ('nyz053', 0.0016664887477281806) + +[fips3600117343] +centroid = (0.74601187667305291, -1.2878016605595282) +description = Colonie town, NY +station = ('kalb', 0.00021819330606042146) +zone = ('nyz052', 0.0024324466968464031) + +[fips3600130532] +centroid = (0.74609107971450839, -1.2861784170887107) +description = Green Island town, NY +station = ('kalb', 0.0013770650439657796) +zone = ('nyz053', 0.0012324564444775557) + +[fips3600131104] +centroid = (0.74537177716988401, -1.2908853082819518) +description = Guilderland town, NY +station = ('kalb', 0.0022138206556925684) +zone = ('nyz052', 0.0018148432936562885) + +[fips3600140002] +centroid = (0.7449999522260391, -1.2933872901245629) +description = Knox town, NY +station = ('ksch', 0.0036237196976737591) +zone = ('nyz048', 0.0019376230639452821) + +[fips3600150672] +centroid = (0.74357117334047895, -1.2904827480899792) +description = New Scotland town, NY +station = ('kalb', 0.0031192391629336659) +zone = ('nyz052', 0.00083314318287228465) + +[fips3600155] +centroid = (0.72957640781299504, -1.2955639775011878) +description = Accord CDP, NY +station = ('kmgj', 0.0049963745552069764) +zone = ('nyz063', 0.0028533592252428064) + +[fips3600161181] +centroid = (0.74140673817520331, -1.2946609441462058) +description = Rensselaerville town, NY +station = ('kalb', 0.0067779626549251404) +zone = ('nyz051', 0.0016379119081769626) + +[fips3600178674] +centroid = (0.7456898808793524, -1.2864300237536781) +description = Watervliet city, NY +station = ('kalb', 0.0012700728154791373) +zone = ('nyz053', 0.0012173337070549891) + +[fips3600179851] +centroid = (0.74177076149729171, -1.2924213900099244) +description = Westerlo town, NY +station = ('kalb', 0.0054147216747566524) +zone = ('nyz051', 0.0014769354137701412) + +[fips3600199] +centroid = (0.76463035100162757, -1.3268501388072) +description = Adams village, NY +station = ('kart', 0.0030264704459703534) +zone = ('nyz007', 0.0042702683272381192) + +[fips3600232] +centroid = (0.76567540179784421, -1.3262514734204733) +description = Adams Center CDP, NY +station = ('kart', 0.0020568931251183915) +zone = ('nyz007', 0.0031417713752846959) + +[fips3600276] +centroid = (0.73489393735163133, -1.3479525133673353) +description = Addison village, NY +station = ('kelm', 0.0044239678364524594) +zone = ('nyz022', 0.0034347181332064227) + +[fips36003] +centroid = (0.73736485233355731, -1.3618136739405793) +description = Allegany County, NY +station = ('kelz', 0.0026033484129157039) +zone = ('nyz021', 0.00016692777087653129) + +[fips3600301209] +centroid = (0.73710966774362308, -1.3577803576655605) +description = Alfred town, NY +station = ('kelz', 0.0035266899889098186) +zone = ('nyz021', 0.0030335210714292041) + +[fips3600301319] +centroid = (0.73997422428504378, -1.3614326511115762) +description = Allen town, NY +station = ('kdsv', 0.0047369780289260787) +zone = ('nyz021', 0.0024618168339446658) + +[fips3600301429] +centroid = (0.73387024938545908, -1.3616399787734206) +description = Alma town, NY +station = ('kelz', 0.00093723803645684423) +zone = ('nyz021', 0.0036634722587310549) + +[fips3600301451] +centroid = (0.73898867176302774, -1.3575455585212897) +description = Almond town, NY +station = ('kdsv', 0.0040276518064564244) +zone = ('nyz021', 0.0034939562520427269) + +[fips3600302011] +centroid = (0.73699086318143991, -1.3614161752034373) +description = Amity town, NY +station = ('kelz', 0.0022076865776041498) +zone = ('nyz021', 0.0006239041708507398) + +[fips3600302154] +centroid = (0.73566879372634675, -1.3580599768650223) +description = Andover town, NY +station = ('kelz', 0.0026004856032712433) +zone = ('nyz021', 0.0033617334280570425) + +[fips3600302187] +centroid = (0.73834457545587173, -1.3616273949495137) +description = Angelica town, NY +station = ('kelz', 0.0035665970486235517) +zone = ('nyz021', 0.00082866826721519546) + +[fips3600305573] +centroid = (0.73823976843428951, -1.3637234306614039) +description = Belfast town, NY +station = ('kelz', 0.0038754078769759749) +zone = ('nyz021', 0.0015645032866417772) + +[fips3600306717] +centroid = (0.73997385776590097, -1.3594229044779047) +description = Birdsall town, NY +station = ('kdsv', 0.0036961328255339689) +zone = ('nyz021', 0.0030262379481008597) + +[fips3600307201] +centroid = (0.73364527644487709, -1.3637462072081423) +description = Bolivar town, NY +station = ('kelz', 0.0021076323752599554) +zone = ('nyz021', 0.0041349234503347846) + +[fips3600311253] +centroid = (0.74064755485717082, -1.3575491015396712) +description = Burns town, NY +station = ('kdsv', 0.0024301866523560268) +zone = ('nyz021', 0.0044457587710475081) + +[fips3600312243] +centroid = (0.73991097355295166, -1.3636450828312818) +description = Caneadea town, NY +station = ('kole', 0.0041332834935378883) +zone = ('nyz021', 0.002729347096047116) + +[fips3600313475] +centroid = (0.74132798891935325, -1.3660289407901181) +description = Centerville town, NY +station = ('kole', 0.0044062371687883569) +zone = ('nyz012', 0.0040063743158773243) + +[fips3600315990] +centroid = (0.73548427751782586, -1.3656791942613111) +description = Clarksville town, NY +station = ('kole', 0.0022392248480962995) +zone = ('nyz021', 0.0035047787906763968) + +[fips3600319367] +centroid = (0.73667529019938682, -1.3656091192918436) +description = Cuba town, NY +station = ('kole', 0.0016486974067449654) +zone = ('nyz021', 0.0029199438813825957) + +[fips3600327705] +centroid = (0.73678976634502513, -1.3636353613473482) +description = Friendship town, NY +station = ('kelz', 0.0026225313956420105) +zone = ('nyz021', 0.0015227876031693544) + +[fips3600328563] +centroid = (0.73382668596732925, -1.3656904865415715) +description = Genesee town, NY +station = ('kelz', 0.0033561800253092255) +zone = ('nyz021', 0.0046771196554619603) + +[fips3600329905] +centroid = (0.74141143311089108, -1.3615496754379224) +description = Granger town, NY +station = ('kdsv', 0.0040792737381392091) +zone = ('nyz021', 0.0038865334203493371) + +[fips3600330994] +centroid = (0.7414075235733667, -1.3595041844611699) +description = Grove town, NY +station = ('kdsv', 0.0027400558338720694) +zone = ('nyz021', 0.0042430834901468302) + +[fips3600336112] +centroid = (0.74145361771891183, -1.3634820167192678) +description = Hume town, NY +station = ('kole', 0.0053700120952767244) +zone = ('nyz012', 0.0040625524553248625) + +[fips3600337297] +centroid = (0.73379928429807295, -1.3577695540774906) +description = Independence town, NY +station = ('kelz', 0.0028389518297737243) +zone = ('nyz021', 0.0047983557116581844) + +[fips3600342] +centroid = (0.7370385630298969, -1.3181555542455874) +description = Afton village, NY +station = ('kbgm', 0.005949731865619306) +zone = ('nyz056', 0.003998244915110344) + +[fips3600350375] +centroid = (0.73801788472648344, -1.3657726217361703) +description = New Hudson town, NY +station = ('kole', 0.0017258325009605973) +zone = ('nyz021', 0.0029515751032541497) + +[fips3600354523] +centroid = (0.73707521494418882, -1.3666419876898812) +description = Oil Springs Reservation, NY +station = ('kole', 0.00082587125251360046) +zone = ('nyz021', 0.0035849865234493712) + +[fips3600364166] +centroid = (0.73989870388831014, -1.3657314494191157) +description = Rushford town, NY +station = ('kole', 0.0031646426898248653) +zone = ('nyz021', 0.0037270628623231271) + +[fips3600365772] +centroid = (0.73562081462520934, -1.3612216058984252) +description = Scio town, NY +station = ('kelz', 0.00084318453431069386) +zone = ('nyz021', 0.0019638614585085925) + +[fips3600378201] +centroid = (0.73696578280008873, -1.359642414537928) +description = Ward town, NY +station = ('kelz', 0.0025252249157415238) +zone = ('nyz021', 0.0017211978705516872) + +[fips3600379103] +centroid = (0.7351051920042927, -1.3600526367253167) +description = Wellsville town, NY +station = ('kelz', 0.0010195708036299627) +zone = ('nyz021', 0.002763038407752359) + +[fips3600379202] +centroid = (0.73846556167961996, -1.3597243577463094) +description = West Almond town, NY +station = ('kelz', 0.0038754299665628867) +zone = ('nyz021', 0.0018221555549181488) + +[fips3600382095] +centroid = (0.73366567934383287, -1.3594958243340529) +description = Willing town, NY +station = ('kelz', 0.0017771733196620526) +zone = ('nyz021', 0.0042374346937280151) + +[fips3600382623] +centroid = (0.73521122075635126, -1.3636970761896985) +description = Wirt town, NY +station = ('kelz', 0.0017879658126473915) +zone = ('nyz021', 0.0026974904820635274) + +[fips3600408] +centroid = (0.71731559199078265, -1.2932526030661866) +description = Airmont village, NY +station = ('kteb', 0.0041065227568703793) +zone = ('nyz069', 0.0013496833967197193) + +[fips3600441] +centroid = (0.75080774475156054, -1.3700411560344803) +description = Akron village, NY +station = ('kbuf', 0.0033545177786669074) +zone = ('nyz010', 0.0028569402672258431) + +[fips36005] +centroid = (0.71294450214562544, -1.2889769478245285) +description = Bronx County, NY +station = ('klga', 0.0012096237501430316) +zone = ('nyz073', 0.0001964135835249396) + +[fips3600508510] +centroid = (0.71294450214562544, -1.2889769478245285) +description = Bronx borough, NY +station = ('klga', 0.0012096237501430316) +zone = ('nyz073', 0.0001964135835249396) + +[fips36007] +centroid = (0.73586531780012132, -1.3234882506954235) +description = Broome County, NY +station = ('kbgm', 0.0020876390094850708) +zone = ('nyz056', 0.00014174873536906431) + +[fips3600704429] +centroid = (0.73766349562186606, -1.3249022640955117) +description = Barker town, NY +station = ('kbgm', 0.0014674947005400684) +zone = ('nyz056', 0.0021797600142948541) + +[fips3600706607] +centroid = (0.73480684542195684, -1.3248684221613154) +description = Binghamton city, NY +station = ('kbgm', 0.0019701777458287638) +zone = ('nyz056', 0.0015510536589871764) + +[fips3600706618] +centroid = (0.73365007610031996, -1.3248017854904743) +description = Binghamton town, NY +station = ('kbgm', 0.0030499052625605526) +zone = ('nyz056', 0.0024514973088112036) + +[fips3600715110] +centroid = (0.73680201855637406, -1.3247442419850362) +description = Chenango town, NY +station = ('kbgm', 0.0010831706384221754) +zone = ('nyz056', 0.0014418638430823544) + +[fips3600717046] +centroid = (0.73617132637787341, -1.3203490840494938) +description = Colesville town, NY +station = ('kbgm', 0.0043197900756798855) +zone = ('nyz056', 0.0022141231239964456) + +[fips3600717772] +centroid = (0.73374900136232302, -1.3235711014750156) +description = Conklin town, NY +station = ('kbgm', 0.0033784154796825685) +zone = ('nyz056', 0.0020948632171814106) + +[fips3600720588] +centroid = (0.73531712733536225, -1.3250200040068512) +description = Dickinson town, NY +station = ('kbgm', 0.0014770462946578752) +zone = ('nyz056', 0.0013750258526201893) + +[fips3600725604] +centroid = (0.7365549846540469, -1.3230173434099428) +description = Fenton town, NY +station = ('kbgm', 0.0023277257145542392) +zone = ('nyz056', 0.00075084605539873681) + +[fips3600739837] +centroid = (0.73463657110013225, -1.3229484029044889) +description = Kirkwood town, NY +station = ('kbgm', 0.003041199109599308) +zone = ('nyz056', 0.0012260530434729719) + +[fips3600742653] +centroid = (0.73965838950360296, -1.3274275635369297) +description = Lisle town, NY +station = ('kbgm', 0.0032670454570121223) +zone = ('nyz044', 0.0037690409395426667) + +[fips3600744611] +centroid = (0.7364611732067522, -1.3267406193966373) +description = Maine town, NY +station = ('kbgm', 0.00043592546654455357) +zone = ('nyz056', 0.0026244443722323947) + +[fips3600749396] +centroid = (0.73801137464837352, -1.3269142447506255) +description = Nanticoke town, NY +station = ('kbgm', 0.0015842733899681055) +zone = ('nyz056', 0.0034491549662549518) + +[fips3600765112] +centroid = (0.73462887419813083, -1.3176571405710955) +description = Sanford town, NY +station = ('kbgm', 0.0065840104888075174) +zone = ('nyz056', 0.0043564862472178379) + +[fips3600775319] +centroid = (0.73924348983381882, -1.3252006106778476) +description = Triangle town, NY +station = ('kbgm', 0.0028056988512655833) +zone = ('nyz056', 0.0036875297438659729) + +[fips3600776056] +centroid = (0.73524820428320103, -1.3270304138656384) +description = Union town, NY +station = ('kbgm', 0.0014342878300279891) +zone = ('nyz055', 0.0036146856794775262) + +[fips3600777255] +centroid = (0.73390039122164097, -1.3267573047442864) +description = Vestal town, NY +station = ('kbgm', 0.002665705055880672) +zone = ('nyz056', 0.0032114080531804039) + +[fips3600782535] +centroid = (0.73415225968599629, -1.3207328470454223) +description = Windsor town, NY +station = ('kbgm', 0.0046737130313282606) +zone = ('nyz056', 0.0025417923940874122) + +[fips36009] +centroid = (0.73731177687100402, -1.3732426134814135) +description = Cattaraugus County, NY +station = ('kole', 0.004066699298944214) +zone = ('nyz020', 7.0832051804236331e-05) + +[fips3600901297] +centroid = (0.73463152709859392, -1.3706394549020642) +description = Allegany town, NY +station = ('kole', 0.0032731523644447423) +zone = ('nyz020', 0.0033401465595263293) + +[fips3600901308] +centroid = (0.73520455359860881, -1.3730577831136275) +description = Allegany Reservation, NY +station = ('kole', 0.0043666548152215172) +zone = ('nyz020', 0.002175389356328238) + +[fips3600902759] +centroid = (0.74072494275620415, -1.3726368969645089) +description = Ashford town, NY +station = ('kole', 0.0051066550826877992) +zone = ('nyz020', 0.0033740764864205754) + +[fips3600912661] +centroid = (0.73402200576391996, -1.3724910223456273) +description = Carrollton town, NY +station = ('kbfd', 0.0044747787759625074) +zone = ('nyz020', 0.0033967636299217512) + +[fips3600913035] +centroid = (0.74229230078437269, -1.3793544598159249) +description = Cattaraugus Reservation, NY +station = ('kdkk', 0.0032863766625276626) +zone = ('nyz085', 0.0038464530885418732) + +[fips3600916903] +centroid = (0.73401010261842137, -1.3760957381162335) +description = Coldspring town, NY +station = ('kbfd', 0.0052374285184268437) +zone = ('nyz020', 0.0039908999289304395) + +[fips3600917684] +centroid = (0.73697271175721912, -1.3789237125565326) +description = Conewango town, NY +station = ('kjhw', 0.0036127383003758009) +zone = ('nyz020', 0.0042526068267518154) + +[fips3600919840] +centroid = (0.73961526241778619, -1.3787305046083369) +description = Dayton town, NY +station = ('kdkk', 0.0042862738231918621) +zone = ('nyz085', 0.0052755175098069445) + +[fips3600922678] +centroid = (0.74016580907703533, -1.3743348056207265) +description = East Otto town, NY +station = ('kole', 0.0057438737954025086) +zone = ('nyz020', 0.0029108564778057735) + +[fips3600924031] +centroid = (0.73840960642380105, -1.3725907330057936) +description = Ellicottville town, NY +station = ('kole', 0.0038058316434328335) +zone = ('nyz020', 0.0011282961814098802) + +[fips3600925340] +centroid = (0.73974418988963098, -1.3684413523355172) +description = Farmersville town, NY +station = ('kole', 0.002681748583348781) +zone = ('nyz020', 0.0042443684333707465) + +[fips3600927342] +centroid = (0.73835148695970954, -1.3700483467909987) +description = Franklinville town, NY +station = ('kole', 0.0021014598329321529) +zone = ('nyz020', 0.0025312860295473448) + +[fips3600927441] +centroid = (0.74126205038021298, -1.3679465165859919) +description = Freedom town, NY +station = ('kole', 0.0041537075606786315) +zone = ('nyz012', 0.0044876601703373953) + +[fips3600930257] +centroid = (0.73653482610118626, -1.3724834650699662) +description = Great Valley town, NY +station = ('kole', 0.0035479789970402796) +zone = ('nyz020', 0.00099785543502438996) + +[fips3600934946] +centroid = (0.73594862236531899, -1.367855515118793) +description = Hinsdale town, NY +station = ('kole', 0.0011644176876014626) +zone = ('nyz021', 0.004729065220709339) + +[fips3600936123] +centroid = (0.73707137521983446, -1.3700356582473365) +description = Humphrey town, NY +station = ('kole', 0.001688114272357799) +zone = ('nyz020', 0.0023668538180501796) + +[fips3600937825] +centroid = (0.73718995288921485, -1.3680681834881485) +description = Ischua town, NY +station = ('kole', 0.00024408952484571822) +zone = ('nyz021', 0.004624050303476037) + +[fips3600941982] +centroid = (0.73828266862730341, -1.3788338630066401) +description = Leon town, NY +station = ('kjhw', 0.004319166237642837) +zone = ('nyz020', 0.0042616367683341004) + +[fips3600942840] +centroid = (0.73695604386286262, -1.3746078449289085) +description = Little Valley town, NY +station = ('kole', 0.0050756443130646409) +zone = ('nyz020', 0.0011201748153908499) + +[fips3600943896] +centroid = (0.73846008134576868, -1.3679066532658761) +description = Lyndon town, NY +station = ('kole', 0.0013539358717624783) +zone = ('nyz021', 0.0045844881770485723) + +[fips3600944237] +centroid = (0.73998099616254154, -1.3702039603471066) +description = Machias town, NY +station = ('kole', 0.0033932467388276661) +zone = ('nyz020', 0.0034213972365603595) + +[fips3600945161] +centroid = (0.73835471581882584, -1.3747420607483869) +description = Mansfield town, NY +station = ('kole', 0.005316958216774045) +zone = ('nyz020', 0.0014991836167925529) + +[fips3600949462] +centroid = (0.73675238139244748, -1.3767954580666508) +description = Napoli town, NY +station = ('kjhw', 0.0050618728809997413) +zone = ('nyz020', 0.0027303476194049628) + +[fips3600949880] +centroid = (0.73839295598273702, -1.3768847840177678) +description = New Albion town, NY +station = ('kjhw', 0.0055879599556439494) +zone = ('nyz020', 0.0029053670626293898) + +[fips3600954523] +centroid = (0.73707079926118124, -1.3668373074864719) +description = Oil Springs Reservation, NY +station = ('kole', 0.00068165926882451195) +zone = ('nyz021', 0.0037290011310195993) + +[fips3600954716] +centroid = (0.73450336757161994, -1.3689510757435623) +description = Olean city, NY +station = ('kole', 0.0027536581745358207) +zone = ('nyz020', 0.0042666381408789748) + +[fips3600954727] +centroid = (0.73410850428164875, -1.3687651458183472) +description = Olean town, NY +station = ('kole', 0.0030939801955104191) +zone = ('nyz020', 0.0046391496909326153) + +[fips3600955783] +centroid = (0.74001038750714521, -1.3760836080779324) +description = Otto town, NY +station = ('kole', 0.0068060669125568386) +zone = ('nyz020', 0.0033853721979533223) + +[fips3600957298] +centroid = (0.74143649603894968, -1.3791135171126871) +description = Perrysburg town, NY +station = ('kdkk', 0.003438449249749548) +zone = ('nyz085', 0.0041421100561014872) + +[fips3600957331] +centroid = (0.74036269966995272, -1.377374139433442) +description = Persia town, NY +station = ('kdkk', 0.0049120336048634732) +zone = ('nyz085', 0.0041087039035231981) + +[fips3600959509] +centroid = (0.73406797773641752, -1.3674641250340331) +description = Portville town, NY +station = ('kole', 0.0030504477377218107) +zone = ('paz005', 0.005226118039862066) + +[fips3600960587] +centroid = (0.73538098893269288, -1.3787994974736681) +description = Randolph town, NY +station = ('kjhw', 0.003469822653589041) +zone = ('nyz020', 0.004600045354951553) + +[fips3600960950] +centroid = (0.73425905638292577, -1.3741894546006206) +description = Red House town, NY +station = ('kbfd', 0.0048937438086579374) +zone = ('nyz020', 0.0032022302910835786) + +[fips3600964749] +centroid = (0.73591343652759877, -1.3742942965287879) +description = Salamanca city, NY +station = ('kole', 0.0049891942026078374) +zone = ('nyz020', 0.0016710908278320829) + +[fips3600964760] +centroid = (0.73608234949260665, -1.3754232453021478) +description = Salamanca town, NY +station = ('kole', 0.005771665087103057) +zone = ('nyz020', 0.0020913849673670744) + +[fips3600969870] +centroid = (0.73382822185707097, -1.3788573900449568) +description = South Valley town, NY +station = ('kjhw', 0.0038764612523689837) +zone = ('paz004', 0.0053488904717199585) + +[fips3600984055] +centroid = (0.74140136256110711, -1.3704338027563014) +description = Yorkshire town, NY +station = ('kole', 0.0047248548063064432) +zone = ('nyz085', 0.0040038826691053495) + +[fips3601000] +centroid = (0.74465772806630803, -1.2880242423990349) +description = Albany city, NY +station = ('kalb', 0.0014706788592688679) +zone = ('nyz052', 0.0012895529226354683) + +[fips3601011] +centroid = (0.7115983122402697, -1.2854027927691245) +description = Albertson CDP, NY +station = ('kjfk', 0.0028776320661910242) +zone = ('nyz177', 0.0012704460002682114) + +[fips3601033] +centroid = (0.75478550719648818, -1.3646764327928704) +description = Albion village, NY +station = ('kroc', 0.0068344507709646035) +zone = ('nyz002', 0.00053224823745015701) + +[fips3601088] +centroid = (0.74872668396465258, -1.3699893372089886) +description = Alden village, NY +station = ('kbuf', 0.003110075003928812) +zone = ('nyz010', 0.002615177882816368) + +[fips36011] +centroid = (0.7506407341954372, -1.3364786665048469) +description = Cayuga County, NY +station = ('kfzy', 0.0064374306172420692) +zone = ('nyz005', 0.0029801279519056784) + +[fips3601100000] +centroid = (0.75986362992162837, -1.3384412368888372) +description = County subdivisions not defined, NY +station = ('kfzy', 0.0050458552664796015) +zone = ('nyz005', 0.0063529493963560522) + +[fips3601103078] +centroid = (0.74933459959641457, -1.33635221740054) +description = Auburn city, NY +station = ('kfzy', 0.0076341741406860788) +zone = ('nyz017', 0.0023610351672381218) + +[fips3601103166] +centroid = (0.74925516966215633, -1.3381168325407691) +description = Aurelius town, NY +station = ('kpeo', 0.0069008139359137237) +zone = ('nyz017', 0.002848742035139868) + +[fips3601110297] +centroid = (0.75128858296048495, -1.3359729573540819) +description = Brutus town, NY +station = ('kfzy', 0.0056988306015299806) +zone = ('nyz005', 0.0024360615156317064) + +[fips3601112969] +centroid = (0.7525897957310167, -1.3358184084488176) +description = Cato town, NY +station = ('kfzy', 0.0044597607578802136) +zone = ('nyz005', 0.001353411037718963) + +[fips3601117849] +centroid = (0.75254211333585219, -1.3379155786247214) +description = Conquest town, NY +station = ('kfzy', 0.0053451448323610503) +zone = ('nyz005', 0.0012160463984100809) + +[fips3601126231] +centroid = (0.74830031748168291, -1.3365315325278901) +description = Fleming town, NY +station = ('kith', 0.0068680572664847166) +zone = ('nyz017', 0.0014151664351879766) + +[fips3601128673] +centroid = (0.74445966810279185, -1.3364381399596159) +description = Genoa town, NY +station = ('kith', 0.0032083945000026567) +zone = ('nyz017', 0.0026183400026334996) + +[fips3601137660] +centroid = (0.75414387180357756, -1.3357165859402564) +description = Ira town, NY +station = ('kfzy', 0.0030903889028132013) +zone = ('nyz005', 0.0011310018189721167) + +[fips3601141740] +centroid = (0.74604699269760311, -1.3382145709788806) +description = Ledyard town, NY +station = ('kpeo', 0.005101440290900542) +zone = ('nyz016', 0.0020160486073972812) + +[fips3601143071] +centroid = (0.74446256534935007, -1.3337683098028401) +description = Locke town, NY +station = ('kith', 0.0029013380045150683) +zone = ('nyz017', 0.0029277662376758829) + +[fips3601146602] +centroid = (0.75119916974290524, -1.3375093008814423) +description = Mentz town, NY +station = ('kfzy', 0.0062701374730701051) +zone = ('nyz005', 0.0024119022024598853) + +[fips3601148131] +centroid = (0.75073311447274516, -1.3386276205996575) +description = Montezuma town, NY +station = ('kfzy', 0.0071014733818889238) +zone = ('nyz005', 0.0030748643315318975) + +[fips3601148307] +centroid = (0.74585324369733907, -1.3336447579450914) +description = Moravia town, NY +station = ('kith', 0.0042893994966400582) +zone = ('nyz017', 0.0019107282023487712) + +[fips3601151198] +centroid = (0.74730146555076649, -1.3335089538759939) +description = Niles town, NY +station = ('kith', 0.0057383806072966942) +zone = ('nyz017', 0.0016344006538323802) + +[fips3601154] +centroid = (0.74878152220975014, -1.3658792089935896) +description = Alexander village, NY +station = ('kroc', 0.0082482647401389171) +zone = ('nyz011', 0.0019195611656070925) + +[fips3601155871] +centroid = (0.74863742782670561, -1.3350596440098057) +description = Owasco town, NY +station = ('ksyr', 0.0063507207054390481) +zone = ('nyz017', 0.0016832127356720733) + +[fips3601165816] +centroid = (0.74682876057615633, -1.3364256783087565) +description = Scipio town, NY +station = ('kith', 0.0054222867398766861) +zone = ('nyz017', 0.00056368587901762992) + +[fips3601166278] +centroid = (0.74596714388432428, -1.332160983734801) +description = Sempronius town, NY +station = ('kith', 0.0046760562525156348) +zone = ('nyz017', 0.0028065368658517151) + +[fips3601166443] +centroid = (0.75010024063267955, -1.335497407492791) +description = Sennett town, NY +station = ('kfzy', 0.0067234546254317344) +zone = ('nyz017', 0.0030820946762536707) + +[fips3601170376] +centroid = (0.74792013241072086, -1.3381845513157462) +description = Springport town, NY +station = ('kpeo', 0.0059950019146175707) +zone = ('nyz016', 0.0023065628294441326) + +[fips3601171146] +centroid = (0.75599043015218759, -1.3379468898315023) +description = Sterling town, NY +station = ('kfzy', 0.0035487542439981072) +zone = ('nyz005', 0.0024846279587066415) + +[fips3601172037] +centroid = (0.74443013713184791, -1.3320536634390958) +description = Summerhill town, NY +station = ('kith', 0.0033309324001271337) +zone = ('nyz017', 0.003729269880224333) + +[fips3601173770] +centroid = (0.75020569342608512, -1.3372517426437256) +description = Throop town, NY +station = ('kfzy', 0.0070626390853215952) +zone = ('nyz017', 0.0033797356353676058) + +[fips3601177024] +centroid = (0.7456442405194128, -1.335928451458156) +description = Venice town, NY +station = ('kith', 0.0041833689355721933) +zone = ('nyz017', 0.0013874469727029651) + +[fips3601177420] +centroid = (0.75416233738706362, -1.3377616056781105) +description = Victory town, NY +station = ('kfzy', 0.0041545675602263094) +zone = ('nyz005', 0.00076367428072718184) + +[fips3601187] +centroid = (0.77395758251050306, -1.3250985961830684) +description = Alexandria Bay village, NY +station = ('kgtb', 0.0056591811529323735) +zone = ('nyz007', 0.0053011278108921669) + +[fips3601198] +centroid = (0.73747723408409316, -1.357685446660837) +description = Alfred village, NY +station = ('kelz', 0.0038285827831730577) +zone = ('nyz021', 0.0030743647879246756) + +[fips3601286] +centroid = (0.734675334862819, -1.3699579387357452) +description = Allegany village, NY +station = ('kole', 0.0029315759943401103) +zone = ('nyz020', 0.0036186164652288696) + +[fips36013] +centroid = (0.73834785667486547, -1.3859239838401867) +description = Chautauqua County, NY +station = ('kjhw', 0.0032499057846267785) +zone = ('nyz019', 0.0014294443031132834) + +[fips3601300000] +centroid = (0.74172007713581378, -1.3876861206128777) +description = County subdivisions not defined, NY +station = ('kdkk', 0.0028985781122897836) +zone = ('nyz019', 0.0050439115815450524) + +[fips3601302605] +centroid = (0.73978670611020969, -1.3830421659924637) +description = Arkwright town, NY +station = ('kdkk', 0.0020470099796486316) +zone = ('nyz019', 0.0031948151603256899) + +[fips3601311451] +centroid = (0.73393405862291194, -1.3845046995457573) +description = Busti town, NY +station = ('kjhw', 0.0018873044231304669) +zone = ('nyz019', 0.0031304376513049364) + +[fips3601312639] +centroid = (0.73373376463795315, -1.3805330806597966) +description = Carroll town, NY +station = ('kjhw', 0.002902937218096448) +zone = ('paz004', 0.0045417874064961478) + +[fips3601313035] +centroid = (0.74252446448147291, -1.3803040760086425) +description = Cattaraugus Reservation, NY +station = ('kdkk', 0.0026545364442143371) +zone = ('nyz085', 0.0044077834442661327) + +[fips3601313860] +centroid = (0.73835958528743884, -1.3829529622143943) +description = Charlotte town, NY +station = ('kjhw', 0.0027296955868442879) +zone = ('nyz019', 0.0021374951392842175) + +[fips3601314069] +centroid = (0.73725775893065482, -1.3876535353157431) +description = Chautauqua town, NY +station = ('kjhw', 0.0034924211868777063) +zone = ('nyz019', 0.0018282631934232263) + +[fips3601314072] +centroid = (0.7359972821448646, -1.3858589179656724) +description = Chautauqua Lake UT, NY +station = ('kjhw', 0.0018075155041050782) +zone = ('nyz019', 0.0011326686486165703) + +[fips3601315198] +centroid = (0.73831111749411094, -1.3809436693663282) +description = Cherry Creek town, NY +station = ('kjhw', 0.0032453237415188707) +zone = ('nyz019', 0.0034071922216072164) + +[fips3601316595] +centroid = (0.73389356698426567, -1.388975569864251) +description = Clymer town, NY +station = ('kjhw', 0.0044529827708208831) +zone = ('nyz019', 0.0041951236577558266) + +[fips3601321105] +centroid = (0.74142548301136968, -1.3846202752488244) +description = Dunkirk city, NY +station = ('kdkk', 0.00072258798274960545) +zone = ('nyz019', 0.0044255014005926858) + +[fips3601321116] +centroid = (0.74123243214280654, -1.3843968905578616) +description = Dunkirk town, NY +station = ('kdkk', 0.00071238099352531907) +zone = ('nyz019', 0.0042534430718634674) + +[fips3601323976] +centroid = (0.7363531198727612, -1.3849807730058239) +description = Ellery town, NY +station = ('kjhw', 0.0013224228177306898) +zone = ('nyz019', 0.00068834347281670994) + +[fips3601323998] +centroid = (0.73536014970142394, -1.3828506510136422) +description = Ellicott town, NY +station = ('kjhw', 0.00054290417726852341) +zone = ('nyz019', 0.0024088640896316308) + +[fips3601324053] +centroid = (0.73688256550135367, -1.3809147667139152) +description = Ellington town, NY +station = ('kjhw', 0.0022522701114549848) +zone = ('nyz019', 0.0031800212217236988) + +[fips3601327606] +centroid = (0.73376641974825796, -1.3912279347172423) +description = French Creek town, NY +station = ('keri', 0.0061569382730913003) +zone = ('paz002', 0.004118146305043445) + +[fips3601328838] +centroid = (0.7368496660449535, -1.3829992483461571) +description = Gerry town, NY +station = ('kjhw', 0.0012421471333665703) +zone = ('nyz019', 0.0016423995976622904) + +[fips3601332050] +centroid = (0.74155589401307864, -1.3809167738425552) +description = Hanover town, NY +station = ('kdkk', 0.002103327067008073) +zone = ('nyz085', 0.0052057401904081757) + +[fips3601332248] +centroid = (0.73390314884185925, -1.386805444925614) +description = Harmony town, NY +station = ('kjhw', 0.0030362989174974406) +zone = ('nyz019', 0.0033361953912672991) + +[fips3601338264] +centroid = (0.73474177954744246, -1.3829314423047172) +description = Jamestown city, NY +station = ('kjhw', 0.00099625329257025069) +zone = ('nyz019', 0.0028346919951289539) + +[fips3601339507] +centroid = (0.73351074646613335, -1.3821802700479513) +description = Kiantone town, NY +station = ('kjhw', 0.0023476248932760724) +zone = ('paz004', 0.0038529413332014325) + +[fips3601347592] +centroid = (0.73521282645926322, -1.3910270473203377) +description = Mina town, NY +station = ('keri', 0.0063002882737156554) +zone = ('nyz019', 0.00467822618337424) + +[fips3601352155] +centroid = (0.73522966888654495, -1.3868970048981735) +description = North Harmony town, NY +station = ('kjhw', 0.0025809522039579717) +zone = ('nyz019', 0.0021866878618294933) + +[fips3601358926] +centroid = (0.73530847050227244, -1.3809193918364331) +description = Poland town, NY +station = ('kjhw', 0.0019188673542395855) +zone = ('nyz019', 0.0036082067169003339) + +[fips3601358981] +centroid = (0.74016640248898102, -1.3845889640420437) +description = Pomfret town, NY +station = ('kdkk', 0.0017128097369449411) +zone = ('nyz019', 0.0031780874037500091) + +[fips3601359421] +centroid = (0.73949945982191645, -1.3868427251584363) +description = Portland town, NY +station = ('kdkk', 0.0032132393927865334) +zone = ('nyz019', 0.0027585237352321067) + +[fips3601361885] +centroid = (0.73703077886143298, -1.3910262444688819) +description = Ripley town, NY +station = ('keri', 0.0067498006381965349) +zone = ('nyz019', 0.0043104721200269078) + +[fips3601366916] +centroid = (0.7415839240008657, -1.3827451982202368) +description = Sheridan town, NY +station = ('kdkk', 0.0007664013872118676) +zone = ('nyz019', 0.0049115075719377071) + +[fips3601366960] +centroid = (0.7354114798347251, -1.3889305752761345) +description = Sherman town, NY +station = ('kjhw', 0.0040604621359187311) +zone = ('nyz019', 0.0031956953350111912) + +[fips3601371476] +centroid = (0.73826476154917808, -1.3850362570227446) +description = Stockton town, NY +station = ('kjhw', 0.0028564258412650252) +zone = ('nyz019', 0.001249888151676071) + +[fips3601377530] +centroid = (0.739891617851547, -1.3808615341717294) +description = Villenova town, NY +station = ('kdkk', 0.0028405424428395477) +zone = ('nyz019', 0.0043077604217303988) + +[fips3601379950] +centroid = (0.73772178961888257, -1.3892784717559348) +description = Westfield town, NY +station = ('kjhw', 0.0047762370281958736) +zone = ('nyz019', 0.0030956772683821457) + +[fips3601440] +centroid = (0.73861155847154925, -1.3567946829704964) +description = Almond village, NY +station = ('kdsv', 0.0043261670913236506) +zone = ('nyz021', 0.0038846496306974227) + +[fips36015] +centroid = (0.73574845055340776, -1.3394909651674491) +description = Chemung County, NY +station = ('kelm', 0.0019870768903630827) +zone = ('nyz024', 0.00029507177237103518) + +[fips3601502781] +centroid = (0.73337841560224715, -1.3395466760771728) +description = Ashland town, NY +station = ('kelm', 0.0032177505600265973) +zone = ('nyz024', 0.0021296763646276532) + +[fips3601504132] +centroid = (0.73481546734846159, -1.337918720217375) +description = Baldwin town, NY +station = ('kelm', 0.0033413724215409029) +zone = ('nyz024', 0.0014997629816816916) + +[fips3601506475] +centroid = (0.73545539231870527, -1.3423982822755438) +description = Big Flats town, NY +station = ('kelm', 0.00052299537240933281) +zone = ('nyz024', 0.0019904789251592183) + +[fips3601512947] +centroid = (0.73707427246639268, -1.3420805276319256) +description = Catlin town, NY +station = ('kelm', 0.0011285721817931825) +zone = ('nyz024', 0.0023531453345107659) + +[fips3601515077] +centroid = (0.73400922995379536, -1.3370220573141631) +description = Chemung town, NY +station = ('kelm', 0.0042747337446542716) +zone = ('nyz024', 0.0024954837146216905) + +[fips3601517] +centroid = (0.74534887845009778, -1.2921306530631271) +description = Altamont village, NY +station = ('ksch', 0.0028328621772716776) +zone = ('nyz048', 0.0021556423082860336) + +[fips3601524229] +centroid = (0.73466821391947079, -1.3405805916727618) +description = Elmira city, NY +station = ('kelm', 0.0017333772485200309) +zone = ('nyz024', 0.0010544088160929826) + +[fips3601524240] +centroid = (0.73461730266519021, -1.3399873717133015) +description = Elmira town, NY +station = ('kelm', 0.0020881932223608631) +zone = ('nyz024', 0.00090989378630642573) + +[fips3601524636] +centroid = (0.73625105301810456, -1.3381737128210915) +description = Erin town, NY +station = ('kelm', 0.0029684672758869754) +zone = ('nyz024', 0.0013646302281428153) + +[fips3601535705] +centroid = (0.73579086205423117, -1.3400441647271613) +description = Horseheads town, NY +station = ('kelm', 0.0015747960722101626) +zone = ('nyz024', 0.00037642058377190579) + +[fips3601550] +centroid = (0.75944393059640125, -1.3265507624806052) +description = Altmar village, NY +station = ('kfzy', 0.0055667018964309575) +zone = ('nyz006', 0.0022902382992215134) + +[fips3601569617] +centroid = (0.73391049667801, -1.3417641692517093) +description = Southport town, NY +station = ('kelm', 0.0020575422465451149) +zone = ('nyz024', 0.0022030159567137542) + +[fips3601572] +centroid = (0.78347999418962888, -1.2856019522900695) +description = Altona CDP, NY +station = ('kpbg', 0.0048242133916292862) +zone = ('nyz028', 0.0023700123529471246) + +[fips3601576892] +centroid = (0.73712534080030612, -1.336553890195608) +description = Van Etten town, NY +station = ('kelm', 0.0043156000268970707) +zone = ('nyz024', 0.0028482262223798282) + +[fips3601577310] +centroid = (0.73735214633660273, -1.3402988606249049) +description = Veteran town, NY +station = ('kelm', 0.0019674317024132785) +zone = ('nyz024', 0.001897713655357112) + +[fips3601594] +centroid = (0.71540738861299213, -1.2589008756488016) +description = Amagansett CDP, NY +station = ('khto', 0.0016957761088631181) +zone = ('nyz081', 0.0045565980338771921) + +[fips3601682] +centroid = (0.73038896329955361, -1.2837871065739681) +description = Amenia CDP, NY +station = ('kpou', 0.0056817643491002779) +zone = ('nyz066', 0.0017885623690758884) + +[fips36017] +centroid = (0.74158572168999526, -1.3195545229075234) +description = Chenango County, NY +station = ('kbgm', 0.0070286037128364847) +zone = ('nyz045', 0.00010844959167419275) + +[fips3601700353] +centroid = (0.7369880532013442, -1.318191996720369) +description = Afton town, NY +station = ('kbgm', 0.0059188438400921061) +zone = ('nyz056', 0.0039575717593776892) + +[fips3601704044] +centroid = (0.7382143215337954, -1.3173166268340313) +description = Bainbridge town, NY +station = ('kbgm', 0.0067591973748507509) +zone = ('nyz045', 0.0038530202607349479) + +[fips3601717486] +centroid = (0.7451081975462478, -1.3154490896278124) +description = Columbus town, NY +station = ('krme', 0.0094637416099085606) +zone = ('nyz045', 0.0046465897405785564) + +[fips3601718619] +centroid = (0.73811991667455501, -1.3199773114655267) +description = Coventry town, NY +station = ('kbgm', 0.004845032058847786) +zone = ('nyz056', 0.0033591566935863297) + +[fips3601728739] +centroid = (0.7418307484636828, -1.3233823441164125) +description = German town, NY +station = ('kbgm', 0.0056851445960978035) +zone = ('nyz044', 0.0035408998687921443) + +[fips3601730422] +centroid = (0.73841676227373421, -1.3221562677701788) +description = Greene town, NY +station = ('kbgm', 0.0035132546485226518) +zone = ('nyz056', 0.0027181396547404798) + +[fips3601731148] +centroid = (0.74005531228209154, -1.316862911041683) +description = Guilford town, NY +station = ('kbgm', 0.0077273428964800654) +zone = ('nyz045', 0.0026158374577683174) + +[fips3601737] +centroid = (0.74765485981771029, -1.3020449609724958) +description = Ames village, NY +station = ('ksch', 0.0085555832473638484) +zone = ('nyz040', 0.0023608222130608843) + +[fips3601742411] +centroid = (0.74486016880624684, -1.323723381452252) +description = Lincklaen town, NY +station = ('ksyr', 0.0083382216057136475) +zone = ('nyz044', 0.0032432302023640137) + +[fips3601744127] +centroid = (0.74179477722779918, -1.321703616628674) +description = McDonough town, NY +station = ('kbgm', 0.0062106598026176671) +zone = ('nyz045', 0.0015063353993468884) + +[fips3601749957] +centroid = (0.74337110624832292, -1.3157445913234675) +description = New Berlin town, NY +station = ('kbgm', 0.010294197320409633) +zone = ('nyz045', 0.0033636178423819591) + +[fips3601753297] +centroid = (0.74333726431412672, -1.3178645380461098) +description = North Norwich town, NY +station = ('kbgm', 0.00915851365507773) +zone = ('nyz045', 0.0021458707533317306) + +[fips3601753979] +centroid = (0.7423465107109396, -1.3181207872868876) +description = Norwich city, NY +station = ('kbgm', 0.0083137563336080269) +zone = ('nyz045', 0.0013356896948582009) + +[fips3601753990] +centroid = (0.74195473665374445, -1.317477668364113) +description = Norwich town, NY +station = ('kbgm', 0.0084022868038481618) +zone = ('nyz045', 0.0016439094374373266) + +[fips3601755717] +centroid = (0.74495672042046723, -1.3218690040285932) +description = Otselic town, NY +station = ('ksyr', 0.0088768965097123266) +zone = ('nyz045', 0.0036789994937407051) + +[fips3601755959] +centroid = (0.73996853451168243, -1.3194030806883279) +description = Oxford town, NY +station = ('kbgm', 0.0060665673559073463) +zone = ('nyz045', 0.0016961395815892817) + +[fips3601757507] +centroid = (0.74346872251338691, -1.3218055438569907) +description = Pharsalia town, NY +station = ('kbgm', 0.0076483685442897973) +zone = ('nyz045', 0.0024025541302123113) + +[fips3601758288] +centroid = (0.7432954462252489, -1.3234265533063654) +description = Pitcher town, NY +station = ('kbgm', 0.0070610757013972814) +zone = ('nyz044', 0.0031306350794734522) + +[fips3601758772] +centroid = (0.7436013500832459, -1.3195560064373877) +description = Plymouth town, NY +station = ('kbgm', 0.0085903761224550793) +zone = ('nyz045', 0.0019499164598751708) + +[fips3601759817] +centroid = (0.74182298174851136, -1.319649678258342) +description = Preston town, NY +station = ('kbgm', 0.0071533479540317121) +zone = ('nyz045', 0.00017038675040648485) + +[fips3601766894] +centroid = (0.7451504170608535, -1.317395707702439) +description = Sherburne town, NY +station = ('krme', 0.0094705700660465963) +zone = ('nyz045', 0.0038771833243848347) + +[fips3601768055] +centroid = (0.74022963576778067, -1.3222179826125293) +description = Smithville town, NY +station = ('kbgm', 0.004710793001536615) +zone = ('nyz045', 0.0023583902450815919) + +[fips3601768110] +centroid = (0.7450456798524413, -1.3197444670900178) +description = Smyrna town, NY +station = ('ksyr', 0.0097110396903199413) +zone = ('nyz045', 0.0033928962202849347) + +[fips36019] +centroid = (0.7810821386901915, -1.2864062349159735) +description = Clinton County, NY +station = ('kpbg', 0.0034645121486443775) +zone = ('nyz031', 0.0013472479263437189) + +[fips3601901583] +centroid = (0.78263583079031684, -1.2857925596976796) +description = Altona town, NY +station = ('kpbg', 0.0041930033812814186) +zone = ('nyz028', 0.0020646122160828629) + +[fips3601903221] +centroid = (0.77673461078993633, -1.2834010921033048) +description = Au Sable town, NY +station = ('kpbg', 0.002686480466151415) +zone = ('nyz035', 0.0046138612744814293) + +[fips3601905485] +centroid = (0.78170143386867663, -1.2828680860030381) +description = Beekmantown town, NY +station = ('kpbg', 0.0024534857474362471) +zone = ('nyz028', 0.00028125057433459023) + +[fips3601906761] +centroid = (0.77709783126056875, -1.288358647483717) +description = Black Brook town, NY +station = ('kslk', 0.0052360695341491905) +zone = ('nyz031', 0.0031991820792572258) + +[fips3601913750] +centroid = (0.78480963837367579, -1.2817156101913614) +description = Champlain town, NY +station = ('cwit', 0.0046325304526757269) +zone = ('nyz028', 0.0030081724507480903) + +[fips3601914113] +centroid = (0.78289393008010177, -1.2821318014047918) +description = Chazy town, NY +station = ('kpbg', 0.0036051672538319696) +zone = ('nyz028', 0.0011426293330916236) + +[fips3601916397] +centroid = (0.78431010768846243, -1.2901511006255153) +description = Clinton town, NY +station = ('cwit', 0.0049503779100844468) +zone = ('nyz031', 0.0043240033296913748) + +[fips3601919653] +centroid = (0.78098909518776771, -1.2882793746290915) +description = Dannemora town, NY +station = ('kpbg', 0.004620230791964555) +zone = ('nyz031', 0.00074822697199249132) + +[fips3601923921] +centroid = (0.78211348865177999, -1.2891859335491622) +description = Ellenburg town, NY +station = ('cwit', 0.0065866352767284184) +zone = ('nyz031', 0.0020357333839488979) + +[fips3601948252] +centroid = (0.78463644935200039, -1.285582160256352) +description = Mooers town, NY +station = ('cwit', 0.003683410890949678) +zone = ('nyz028', 0.0032298642072591519) + +[fips3601957375] +centroid = (0.77808647301536105, -1.2839281291775295) +description = Peru town, NY +station = ('kpbg', 0.0017027901157653364) +zone = ('nyz028', 0.0039169773295012998) + +[fips3601958574] +centroid = (0.78004785657545961, -1.2820482175869137) +description = Plattsburgh city, NY +station = ('kpbg', 0.00076991818386730275) +zone = ('nyz028', 0.0020324679470583359) + +[fips3601958585] +centroid = (0.7800275933028441, -1.2831041592376629) +description = Plattsburgh town, NY +station = ('kpbg', 0.00096261278466334358) +zone = ('nyz028', 0.0019257387171741224) + +[fips3601965211] +centroid = (0.77936405402782083, -1.2882261246336131) +description = Saranac town, NY +station = ('kpbg', 0.0042624967012693622) +zone = ('nyz031', 0.00094196778892514737) + +[fips3601965717] +centroid = (0.77945959335107495, -1.2842904246236584) +description = Schuyler Falls town, NY +station = ('kpbg', 0.0014718339044496413) +zone = ('nyz028', 0.002645469773638436) + +[fips3602044] +centroid = (0.70982268407246063, -1.2813472060928501) +description = Amityville village, NY +station = ('kfrg', 0.0011081590349512379) +zone = ('nyz179', 0.002249666146230274) + +[fips3602066] +centroid = (0.74947216644805681, -1.294868900126581) +description = Amsterdam city, NY +station = ('ksch', 0.003656428063490653) +zone = ('nyz048', 0.0026821742483314035) + +[fips36021] +centroid = (0.73736197254029145, -1.2850301649738236) +description = Columbia County, NY +station = ('kpsf', 0.0054888620339430772) +zone = ('nyz061', 0.0011795820170842632) + +[fips3602102099] +centroid = (0.73366588878334305, -1.2842158292514281) +description = Ancram town, NY +station = ('kpsf', 0.0079254139011051879) +zone = ('nyz061', 0.003861984137566974) + +[fips3602103287] +centroid = (0.73853802775016275, -1.2831384200508795) +description = Austerlitz town, NY +station = ('kpsf', 0.0036667398760953157) +zone = ('nyz061', 0.0010768505602605444) + +[fips3602112056] +centroid = (0.74015748385650326, -1.2821496386697473) +description = Canaan town, NY +station = ('kpsf', 0.0023413936514494441) +zone = ('nyz061', 0.0028385884432251852) + +[fips3602114014] +centroid = (0.74046609297484089, -1.2842495141059915) +description = Chatham town, NY +station = ('kpsf', 0.0038509178772457749) +zone = ('nyz061', 0.0030394021166309355) + +[fips3602116045] +centroid = (0.73685797381219298, -1.2861319215174376) +description = Claverack town, NY +station = ('kpsf', 0.0064451265643483725) +zone = ('nyz060', 0.00072086569492197403) + +[fips3602116177] +centroid = (0.73453830906324502, -1.2890073863666831) +description = Clermont town, NY +station = ('kpou', 0.0079083376678790122) +zone = ('nyz060', 0.0031928069207470713) + +[fips3602118102] +centroid = (0.73530162881160466, -1.2836729794941801) +description = Copake town, NY +station = ('kpsf', 0.0063134349502856563) +zone = ('nyz061', 0.0021902603910886644) + +[fips3602121] +centroid = (0.73631180792936646, -1.3051663427133475) +description = Andes CDP, NY +station = ('kmsv', 0.0085132653937757177) +zone = ('nyz057', 0.0024120169159409883) + +[fips3602128068] +centroid = (0.7340960775373746, -1.2865371346098731) +description = Gallatin town, NY +station = ('kpou', 0.0077786623403077572) +zone = ('nyz060', 0.003230239464971126) + +[fips3602128772] +centroid = (0.7354255297352037, -1.2892832531082536) +description = Germantown town, NY +station = ('kpou', 0.0087883693154609151) +zone = ('nyz060', 0.0025952247459538674) + +[fips3602128871] +centroid = (0.73853584608859779, -1.2854180469467869) +description = Ghent town, NY +station = ('kpsf', 0.0051477648618559564) +zone = ('nyz060', 0.0016320447855017368) + +[fips3602130565] +centroid = (0.73705386956743679, -1.2879754778997341) +description = Greenport town, NY +station = ('kpsf', 0.0075008851107873442) +zone = ('nyz060', 0.00084983931032893629) + +[fips3602134748] +centroid = (0.73704001165317601, -1.2831919318457456) +description = Hillsdale town, NY +station = ('kpsf', 0.0047037195845786002) +zone = ('nyz061', 0.00048326538831123178) + +[fips3602135969] +centroid = (0.73743485748985471, -1.2878091305687265) +description = Hudson city, NY +station = ('kalb', 0.0086952565897569761) +zone = ('nyz060', 0.00069531673239777705) + +[fips3602139573] +centroid = (0.7402166330648533, -1.2860049488143548) +description = Kinderhook town, NY +station = ('kalb', 0.0061009334404900934) +zone = ('nyz060', 0.0029723965273092223) + +[fips3602142917] +centroid = (0.73546331611350946, -1.2880026875827726) +description = Livingston town, NY +station = ('kpou', 0.0088953897962369115) +zone = ('nyz060', 0.002029826928906213) + +[fips3602143] +centroid = (0.73577838295007947, -1.3577980553041755) +description = Andover village, NY +station = ('kelz', 0.0028205689617326851) +zone = ('nyz021', 0.0034681451151236413) + +[fips3602150452] +centroid = (0.74125093263287778, -1.2818537879082417) +description = New Lebanon town, NY +station = ('kpsf', 0.0021785770889097742) +zone = ('nyz061', 0.003944902797040184) + +[fips3602171443] +centroid = (0.73856879790487551, -1.2872731574087317) +description = Stockport town, NY +station = ('kalb', 0.0075812667150107708) +zone = ('nyz060', 0.0012854350996320326) + +[fips3602171850] +centroid = (0.73996897084399538, -1.2872323690641125) +description = Stuyvesant town, NY +station = ('kalb', 0.0061888587380028769) +zone = ('nyz060', 0.0026653856185952771) + +[fips3602173077] +centroid = (0.7353799068285567, -1.2859198814666126) +description = Taghkanic town, NY +station = ('kpsf', 0.0072941571085968883) +zone = ('nyz060', 0.0020636554657795059) + +[fips3602176] +centroid = (0.73837037142221618, -1.3617171397796513) +description = Angelica village, NY +station = ('kelz', 0.0035966742499557395) +zone = ('nyz021', 0.00084439760383814766) + +[fips3602198] +centroid = (0.74417147933670236, -1.379325260457539) +description = Angola village, NY +station = ('kdkk', 0.004054050945457177) +zone = ('nyz085', 0.0034582091148690837) + +[fips3602220] +centroid = (0.74446958157294307, -1.3797218516234697) +description = Angola on the Lake CDP, NY +station = ('kdkk', 0.0040169756876888259) +zone = ('nyz085', 0.0037789131577736211) + +[fips3602286] +centroid = (0.77144661222224375, -1.3195940197084961) +description = Antwerp village, NY +station = ('kgtb', 0.0030676460424466979) +zone = ('nyz007', 0.0047103920209210746) + +[fips36023] +centroid = (0.74340246981498115, -1.327781306869724) +description = Cortland County, NY +station = ('kith', 0.0052315896025152998) +zone = ('nyz044', 8.0583716287965313e-05) + +[fips3602308] +centroid = (0.73426987742428829, -1.3292887651979641) +description = Apalachin CDP, NY +station = ('kbgm', 0.0032386494630116617) +zone = ('nyz055', 0.0025473602177913412) + +[fips3602315748] +centroid = (0.74230022457917677, -1.3249452166484033) +description = Cincinnatus town, NY +station = ('kbgm', 0.005840582894164917) +zone = ('nyz044', 0.0023031278716600006) + +[fips3602318388] +centroid = (0.74352537590090673, -1.3295765874449101) +description = Cortland city, NY +station = ('kith', 0.0040715283225050579) +zone = ('nyz044', 0.0014032060648204339) + +[fips3602318421] +centroid = (0.74357113843389389, -1.3285034368477364) +description = Cortlandville town, NY +station = ('kith', 0.0048017137422512891) +zone = ('nyz044', 0.00062722996419816172) + +[fips3602319499] +centroid = (0.74571518815350635, -1.3253375841175441) +description = Cuyler town, NY +station = ('ksyr', 0.007126824345538422) +zone = ('nyz044', 0.0028652867309764229) + +[fips3602327496] +centroid = (0.74211865797709164, -1.326855444608126) +description = Freetown town, NY +station = ('kbgm', 0.005613329555520406) +zone = ('nyz044', 0.0014374037885693288) + +[fips3602332160] +centroid = (0.74066797520941907, -1.3300496065787857) +description = Harford town, NY +station = ('kith', 0.0033784508008215036) +zone = ('nyz044', 0.0032638145358044853) + +[fips3602335287] +centroid = (0.74459323815044687, -1.3294202059439317) +description = Homer town, NY +station = ('kith', 0.0047588066457287439) +zone = ('nyz044', 0.0017370678472924243) + +[fips3602341300] +centroid = (0.74099684760037243, -1.3284086829226458) +description = Lapeer town, NY +station = ('kbgm', 0.0047673386517966066) +zone = ('nyz044', 0.0024855972620012917) + +[fips3602345403] +centroid = (0.74051665516327125, -1.3265021201543521) +description = Marathon town, NY +station = ('kbgm', 0.0039957583617217926) +zone = ('nyz044', 0.003032305445387096) + +[fips3602359773] +centroid = (0.74601285405743412, -1.3287495980854378) +description = Preble town, NY +station = ('kith', 0.0060847838886642133) +zone = ('nyz044', 0.0027076092938831532) + +[fips3602365915] +centroid = (0.74591284669129476, -1.3305665556499342) +description = Scott town, NY +station = ('kith', 0.0051695599558992354) +zone = ('nyz044', 0.0032739360007375813) + +[fips3602368264] +centroid = (0.74376328173124595, -1.3268204682099161) +description = Solon town, NY +station = ('kbgm', 0.0072507881602615152) +zone = ('nyz044', 0.00071541465067324471) + +[fips3602373220] +centroid = (0.74343346686249656, -1.3250326925505131) +description = Taylor town, NY +station = ('kbgm', 0.0069544707166840341) +zone = ('nyz044', 0.0019455026672764645) + +[fips3602374] +centroid = (0.71460741695034058, -1.2673790742897517) +description = Aquebogue CDP, NY +station = ('kfok', 0.0016404932232674467) +zone = ('nyz079', 0.00095659622985738929) + +[fips3602375550] +centroid = (0.74543551659416685, -1.3268754460813537) +description = Truxton town, NY +station = ('kith', 0.0067643993177687609) +zone = ('nyz044', 0.0020967688608658146) + +[fips3602377596] +centroid = (0.74212096181170439, -1.3293202683909624) +description = Virgil town, NY +station = ('kith', 0.003816486145604518) +zone = ('nyz044', 0.0017785332994931489) + +[fips3602381963] +centroid = (0.74095646068148113, -1.325057388959429) +description = Willet town, NY +station = ('kbgm', 0.0045018463462627965) +zone = ('nyz044', 0.0031315659621223716) + +[fips3602407] +centroid = (0.74229889812894523, -1.3690678382705208) +description = Arcade village, NY +station = ('kole', 0.0052778452799504341) +zone = ('nyz012', 0.0040952702801724502) + +[fips36025] +centroid = (0.73642399769368461, -1.3084162330470237) +description = Delaware County, NY +station = ('kmsv', 0.0088891996191202399) +zone = ('nyz057', 7.3589797570531676e-05) + +[fips3602502132] +centroid = (0.73527962020973703, -1.3052858454072316) +description = Andes town, NY +station = ('kmsv', 0.0074791211745416242) +zone = ('nyz057', 0.0026179472992157999) + +[fips3602506] +centroid = (0.7158214854313204, -1.2887403160845432) +description = Ardsley village, NY +station = ('khpn', 0.0020557356631627048) +zone = ('nyz071', 0.00094479393268700682) + +[fips3602507597] +centroid = (0.7378172416756742, -1.3047556667403533) +description = Bovina town, NY +station = ('kmsv', 0.010030472150956267) +zone = ('nyz057', 0.0030118032913487021) + +[fips3602516793] +centroid = (0.73373411370380348, -1.308182481100304) +description = Colchester town, NY +station = ('kmsv', 0.006257627755578009) +zone = ('nyz057', 0.0027686655146313341) + +[fips3602519763] +centroid = (0.74096544912712892, -1.3073014738004822) +description = Davenport town, NY +station = ('kmsv', 0.013230417077520594) +zone = ('nyz046', 0.003551045913119564) + +[fips3602520137] +centroid = (0.73779175986859502, -1.3073833122891083) +description = Delhi town, NY +station = ('kmsv', 0.010086421585450195) +zone = ('nyz057', 0.0015017998145826152) + +[fips3602520357] +centroid = (0.73471111411248491, -1.3154513934624248) +description = Deposit town, NY +station = ('kmsv', 0.01012560350941301) +zone = ('paz040', 0.0056558958356106711) + +[fips3602527232] +centroid = (0.73880476641974513, -1.3109264528437043) +description = Franklin town, NY +station = ('kmsv', 0.011716251388983783) +zone = ('nyz057', 0.0029640005940390051) + +[fips3602531698] +centroid = (0.73655304733857707, -1.3086664434485895) +description = Hamden town, NY +station = ('kmsv', 0.0090608661329384093) +zone = ('nyz057', 0.00019631947212683673) + +[fips3602531951] +centroid = (0.73227678123168083, -1.3121763005743501) +description = Hancock town, NY +station = ('kmsv', 0.0066875431115631517) +zone = ('paz040', 0.0034241706471791551) + +[fips3602532281] +centroid = (0.74086474362928889, -1.3038262963669589) +description = Harpersfield town, NY +station = ('kalb', 0.012748083103632298) +zone = ('nyz047', 0.0041569531734336014) + +[fips3602540068] +centroid = (0.74006712816112752, -1.3051806718665064) +description = Kortright town, NY +station = ('kmsv', 0.012267212862828551) +zone = ('nyz057', 0.0042959152733879668) + +[fips3602545964] +centroid = (0.7370367129808898, -1.3149736793928617) +description = Masonville town, NY +station = ('kbgm', 0.0083000099782312656) +zone = ('nyz057', 0.0048895002293097654) + +[fips3602546624] +centroid = (0.73941114616176551, -1.307932235792153) +description = Meredith town, NY +station = ('kmsv', 0.011747855911515384) +zone = ('nyz057', 0.0029351817886012891) + +[fips3602547031] +centroid = (0.73583789867757243, -1.3025058849746551) +description = Middletown town, NY +station = ('kmsv', 0.0083398667502946108) +zone = ('nyz063', 0.0052682465792946234) + +[fips3602550] +centroid = (0.75462130662046056, -1.2826565870042814) +description = Argyle village, NY +station = ('kgfl', 0.0023251668653555589) +zone = ('nyz084', 0.0015641026708249342) + +[fips3602564001] +centroid = (0.73842718188936862, -1.3007736282387583) +description = Roxbury town, NY +station = ('kmsv', 0.011191767327435587) +zone = ('nyz058', 0.0038676115680990318) + +[fips3602567345] +centroid = (0.7383913153732401, -1.313814501516857) +description = Sidney town, NY +station = ('kmsv', 0.012257358451300564) +zone = ('nyz057', 0.0044244645555866022) + +[fips3602570629] +centroid = (0.73895551050723984, -1.3031638915559494) +description = Stamford town, NY +station = ('kmsv', 0.011288150239376104) +zone = ('nyz057', 0.0045962406246780035) + +[fips3602574111] +centroid = (0.73506204746518333, -1.3137702050604414) +description = Tompkins town, NY +station = ('kmsv', 0.0095146119445066735) +zone = ('nyz057', 0.0042233269355109347) + +[fips3602578047] +centroid = (0.73606674624909396, -1.3112126344811539) +description = Walton town, NY +station = ('kmsv', 0.009290832131505616) +zone = ('nyz057', 0.002119243560952964) + +[fips3602583] +centroid = (0.73989037866777807, -1.3560419748239889) +description = Arkport village, NY +station = ('kdsv', 0.003050319659888813) +zone = ('nyz021', 0.0048922559318834869) + +[fips3602616] +centroid = (0.72773019853023557, -1.2897787869894797) +description = Arlington CDP, NY +station = ('kpou', 0.0011101192400593139) +zone = ('nyz065', 0.0014922485847978382) + +[fips3602649] +centroid = (0.7179202438568435, -1.2866216434522546) +description = Armonk CDP, NY +station = ('khpn', 0.0011953485490114925) +zone = ('nyz070', 0.0015888144601239763) + +[fips36027] +centroid = (0.728762386249865, -1.2870049352092852) +description = Dutchess County, NY +station = ('kpou', 0.002828712054577822) +zone = ('nyz065', 0.0014068125799214558) + +[fips3602701693] +centroid = (0.73007014400509174, -1.2834107612273606) +description = Amenia town, NY +station = ('kpou', 0.0056986631000750425) +zone = ('nyz066', 0.0016835178460222317) + +[fips3602705100] +centroid = (0.72436818824541138, -1.290928156115088) +description = Beacon city, NY +station = ('kswf', 0.0017690089992379481) +zone = ('nyz068', 0.0031159076210587043) + +[fips3602705452] +centroid = (0.72610704232588075, -1.2862792098530134) +description = Beekman town, NY +station = ('kpou', 0.0024712553359946023) +zone = ('nyz066', 0.0028873098205889364) + +[fips3602716408] +centroid = (0.73066966460315186, -1.2883947932525259) +description = Clinton town, NY +station = ('kpou', 0.0041155051689217856) +zone = ('nyz065', 0.0016529925671131575) + +[fips3602720819] +centroid = (0.72743823985296197, -1.2840171409693812) +description = Dover town, NY +station = ('kpou', 0.0041792296761942382) +zone = ('nyz066', 0.001516271248809671) + +[fips3602721996] +centroid = (0.7253875128884536, -1.2878366544110305) +description = East Fishkill town, NY +station = ('kpou', 0.0017682501492985957) +zone = ('nyz068', 0.0024073038996544919) + +[fips3602725978] +centroid = (0.72458237505121614, -1.2902130423606684) +description = Fishkill town, NY +station = ('kpou', 0.0021230402535748964) +zone = ('nyz068', 0.0027561171431305744) + +[fips3602737] +centroid = (0.71452505486293894, -1.280810447534692) +description = Asharoken village, NY +station = ('utff', 0.0036044378099354354) +zone = ('nyz177', 0.0033577782057195383) + +[fips3602737209] +centroid = (0.7297799830169478, -1.2897191316356467) +description = Hyde Park town, NY +station = ('kpou', 0.0031452092395065664) +zone = ('nyz065', 0.00097434005485597076) + +[fips3602740299] +centroid = (0.7275392246034823, -1.2879788114786055) +description = La Grange town, NY +station = ('kpou', 0.0014543518246175849) +zone = ('nyz065', 0.0016467133679191521) + +[fips3602747207] +centroid = (0.73265595401167649, -1.287756543798364) +description = Milan town, NY +station = ('kpou', 0.0061571209907774985) +zone = ('nyz065', 0.0036949230420084498) + +[fips3602751891] +centroid = (0.73209306787461592, -1.2836308472460372) +description = North East town, NY +station = ('kpou', 0.0069962517154629426) +zone = ('nyz066', 0.0034219502570568029) + +[fips3602756825] +centroid = (0.72550797551342627, -1.2844931620695699) +description = Pawling town, NY +station = ('kdxr', 0.0038193220268601586) +zone = ('nyz068', 0.0031864311297611085) + +[fips3602758156] +centroid = (0.73254776105134545, -1.285379108651175) +description = Pine Plains town, NY +station = ('kpou', 0.0066623564915176299) +zone = ('nyz066', 0.0037606669155785004) + +[fips3602758695] +centroid = (0.729033680228795, -1.2881317546809576) +description = Pleasant Valley town, NY +station = ('kpou', 0.0026058868143592016) +zone = ('nyz065', 0.00053643762961850107) + +[fips3602759641] +centroid = (0.72770796303556518, -1.2901450966928885) +description = Poughkeepsie city, NY +station = ('kpou', 0.001170537714270108) +zone = ('nyz065', 0.001655145397491966) + +[fips3602759652] +centroid = (0.727254090163584, -1.289967509441498) +description = Poughkeepsie town, NY +station = ('kpou', 0.00070486233021724851) +zone = ('nyz065', 0.0019817438770663811) + +[fips3602760905] +centroid = (0.73334017543833585, -1.2895753688651597) +description = Red Hook town, NY +station = ('kpou', 0.006701621424885138) +zone = ('nyz064', 0.0039250969377783319) + +[fips3602761357] +centroid = (0.73175573063679045, -1.2898314959328898) +description = Rhinebeck town, NY +station = ('kpou', 0.0051226886002920993) +zone = ('nyz064', 0.0026337179133508718) + +[fips3602770662] +centroid = (0.73127204754118524, -1.2858387411096877) +description = Stanford town, NY +station = ('kpou', 0.0053809982834608673) +zone = ('nyz066', 0.0025653148461116876) + +[fips3602776166] +centroid = (0.72778433864363246, -1.2862157671347032) +description = Union Vale town, NY +station = ('kpou', 0.0027127349215373101) +zone = ('nyz066', 0.0014161286911024398) + +[fips3602778157] +centroid = (0.72583691771754966, -1.2896424069617289) +description = Wappinger town, NY +station = ('kpou', 0.000808153598903539) +zone = ('nyz065', 0.0032689731589033927) + +[fips3602778388] +centroid = (0.72939899509452988, -1.2859089557054952) +description = Washington town, NY +station = ('kpou', 0.0038516023468093568) +zone = ('nyz066', 0.00095968065527216875) + +[fips36029] +centroid = (0.74617640886163838, -1.3749388291682569) +description = Erie County, NY +station = ('kbuf', 0.0032034718486641644) +zone = ('nyz085', 0.0022461605472999073) + +[fips3602900000] +centroid = (0.74552026978264363, -1.3802039115628704) +description = County subdivisions not defined, NY +station = ('kdkk', 0.0045754105851452016) +zone = ('nyz085', 0.0043883301489304576) + +[fips3602901099] +centroid = (0.74887289019609204, -1.3704432275342622) +description = Alden town, NY +station = ('kbuf', 0.0027566264006875954) +zone = ('nyz010', 0.0022568682324206938) + +[fips3602902] +centroid = (0.73776865170929873, -1.2883310712815355) +description = Athens village, NY +station = ('kalb', 0.0083621164209645247) +zone = ('nyz060', 0.0011629643438355343) + +[fips3602902000] +centroid = (0.75069471722920134, -1.3745715420804672) +description = Amherst town, NY +station = ('kbuf', 0.0014001194968163481) +zone = ('nyz010', 0.0015362621336692873) + +[fips3602903199] +centroid = (0.74593188823343393, -1.3725021051863773) +description = Aurora town, NY +station = ('kbuf', 0.0036061693168267161) +zone = ('nyz085', 0.0025340375236003344) + +[fips3602907454] +centroid = (0.74443233624670546, -1.3745421332825711) +description = Boston town, NY +station = ('kbuf', 0.0049038864397552822) +zone = ('nyz085', 0.00049573725135660046) + +[fips3602907894] +centroid = (0.74341980093445348, -1.3792412054007628) +description = Brant town, NY +station = ('kdkk', 0.0037145445747519554) +zone = ('nyz085', 0.0034297625775447553) + +[fips3602911000] +centroid = (0.74861520978532758, -1.376361167788877) +description = Buffalo city, NY +station = ('kbuf', 0.0017654197476458893) +zone = ('nyz010', 0.0022792043334766213) + +[fips3602913035] +centroid = (0.74260949692263012, -1.3789449183069442) +description = Cattaraugus Reservation, NY +station = ('kdkk', 0.0036443561678239766) +zone = ('nyz085', 0.0034411835964891788) + +[fips3602915011] +centroid = (0.74892114854990977, -1.3743040354660139) +description = Cheektowaga town, NY +station = ('kbuf', 0.00042108975479752204) +zone = ('nyz010', 0.00079408603714006278) + +[fips3602915825] +centroid = (0.75092279685585195, -1.3726259537500989) +description = Clarence town, NY +station = ('kbuf', 0.001948372220507952) +zone = ('nyz010', 0.0016343395731680849) + +[fips3602916870] +centroid = (0.74434988689284132, -1.3726385201207132) +description = Colden town, NY +station = ('kbuf', 0.0051011532490401398) +zone = ('nyz085', 0.001524701070549823) + +[fips3602917200] +centroid = (0.74162181509892644, -1.3765152803618281) +description = Collins town, NY +station = ('kdkk', 0.005340097829649771) +zone = ('nyz085', 0.0027014651321838087) + +[fips3602917585] +centroid = (0.74255780027018603, -1.3736245264283349) +description = Concord town, NY +station = ('kbuf', 0.0067814640366463657) +zone = ('nyz085', 0.0015710037470599751) + +[fips3602923415] +centroid = (0.74447040187769153, -1.3767158885060524) +description = Eden town, NY +station = ('kbuf', 0.0052081967936624066) +zone = ('nyz085', 0.001619403166358631) + +[fips3602924130] +centroid = (0.74749507492469025, -1.3726596386046623) +description = Elma town, NY +station = ('kbuf', 0.0021358445852973675) +zone = ('nyz010', 0.0019895540533899931) + +[fips3602924801] +centroid = (0.74446523570310563, -1.3788971137387322) +description = Evans town, NY +station = ('kdkk', 0.00448206214858172) +zone = ('nyz085', 0.0031785897061477695) + +[fips3602929828] +centroid = (0.75080400974696127, -1.378158350772948) +description = Grand Island town, NY +station = ('kiag', 0.0017638690504846401) +zone = ('nyz010', 0.0037265312440445861) + +[fips3602931654] +centroid = (0.74593906153665968, -1.3763166269863663) +description = Hamburg town, NY +station = ('kbuf', 0.0037410679369540415) +zone = ('nyz085', 0.0023491544871532236) + +[fips3602935122] +centroid = (0.74474005524712461, -1.3705064259064772) +description = Holland town, NY +station = ('kbuf', 0.005312174872715493) +zone = ('nyz085', 0.0031401867624990414) + +[fips3602940189] +centroid = (0.74732247931496054, -1.3758913775141177) +description = Lackawanna city, NY +station = ('kbuf', 0.0023748085688839516) +zone = ('nyz010', 0.0027471597572098772) + +[fips3602941146] +centroid = (0.74893673434012997, -1.3723910324327806) +description = Lancaster town, NY +station = ('kbuf', 0.001350312222659871) +zone = ('nyz010', 0.00089721884326849721) + +[fips3602945601] +centroid = (0.74742836844067906, -1.370577932045931) +description = Marilla town, NY +station = ('kbuf', 0.0032377609872545326) +zone = ('nyz010', 0.0028788600405750355) + +[fips3602950716] +centroid = (0.75078535217725739, -1.3704561778773121) +description = Newstead town, NY +station = ('kbuf', 0.0030742649129216299) +zone = ('nyz010', 0.0025849430486876435) + +[fips3602951803] +centroid = (0.74304506129075787, -1.3763574327842778) +description = North Collins town, NY +station = ('kbuf', 0.00648759131952663) +zone = ('nyz085', 0.0015525416708921363) + +[fips3602955277] +centroid = (0.7461771768065093, -1.3742669646727017) +description = Orchard Park town, NY +station = ('kbuf', 0.0031519009340567786) +zone = ('nyz085', 0.0022521505402612321) + +[fips3602965277] +centroid = (0.74276247503156745, -1.3706341665544306) +description = Sardinia town, NY +station = ('kole', 0.0060381421649451893) +zone = ('nyz085', 0.0031727807754891304) + +[fips3602968] +centroid = (0.70839446369226122, -1.2868200873882063) +description = Atlantic Beach village, NY +station = ('kjfk', 0.00093273631964094781) +zone = ('nyz178', 0.0015762633022486645) + +[fips3602974166] +centroid = (0.75069988340378724, -1.3767758056592734) +description = Tonawanda city, NY +station = ('kiag', 0.0019354489587996388) +zone = ('nyz010', 0.0027650529861045852) + +[fips3602975000] +centroid = (0.75020133010295509, -1.3766401586698083) +description = Tonawanda town, NY +station = ('kbuf', 0.0020169688517430598) +zone = ('nyz010', 0.0024751973579615594) + +[fips3602975011] +centroid = (0.7518008894558228, -1.3696942369390614) +description = Tonawanda Reservation, NY +station = ('kbuf', 0.0040940310532459777) +zone = ('nyz010', 0.0036418120704589411) + +[fips3602977871] +centroid = (0.74594328523344955, -1.3703904836842669) +description = Wales town, NY +station = ('kbuf', 0.004368124201866979) +zone = ('nyz085', 0.0037074250750756626) + +[fips3602980918] +centroid = (0.74766025288509896, -1.3744683058552116) +description = West Seneca town, NY +station = ('kbuf', 0.0016834082880646643) +zone = ('nyz010', 0.0018966480403498508) + +[fips3603001] +centroid = (0.74811964099751638, -1.3662404223355824) +description = Attica village, NY +station = ('kbuf', 0.0059231101393102991) +zone = ('nyz011', 0.0026311196327383464) + +[fips3603078] +centroid = (0.74933459959641457, -1.33635221740054) +description = Auburn city, NY +station = ('kfzy', 0.0076341741406860788) +zone = ('nyz017', 0.0023610351672381218) + +[fips36031] +centroid = (0.76984677361669573, -1.2876615629804704) +description = Essex County, NY +station = ('kslk', 0.0073270744381981551) +zone = ('nyz034', 0.0010572934806826048) + +[fips3603115330] +centroid = (0.77585875221140788, -1.2819219779221169) +description = Chesterfield town, NY +station = ('kpbg', 0.0034380132279842913) +zone = ('nyz035', 0.0035741649107869362) + +[fips3603119246] +centroid = (0.767313899446324, -1.284270876936036) +description = Crown Point town, NY +station = ('kbtv', 0.010314734234462761) +zone = ('nyz034', 0.004014138322654408) + +[fips3603123833] +centroid = (0.77128230692646105, -1.2854388861780557) +description = Elizabethtown town, NY +station = ('kslk', 0.0077746597241800967) +zone = ('nyz034', 0.0031647881747767855) + +[fips3603124768] +centroid = (0.77283188004955172, -1.2810207073496798) +description = Essex town, NY +station = ('kbtv', 0.0044849992605456674) +zone = ('nyz035', 0.00071656835922860574) + +[fips3603138396] +centroid = (0.77453567046534866, -1.2862461184103955) +description = Jay town, NY +station = ('kpbg', 0.0055478892828020009) +zone = ('nyz035', 0.0039687628350372779) + +[fips3603139067] +centroid = (0.77008740216066818, -1.2895106346032033) +description = Keene town, NY +station = ('kslk', 0.0062499969371741983) +zone = ('nyz034', 0.00074754613631271283) + +[fips3603142114] +centroid = (0.77350145816378679, -1.2842350104199074) +description = Lewis town, NY +station = ('kpbg', 0.0059613008399353714) +zone = ('nyz035', 0.0021981687897588498) + +[fips3603147669] +centroid = (0.76542000776839991, -1.293611146054424) +description = Minerva town, NY +station = ('kslk', 0.0095609075277673407) +zone = ('nyz034', 0.0051985203041415963) + +[fips3603148428] +centroid = (0.76890422600744868, -1.2833863091645401) +description = Moriah town, NY +station = ('kbtv', 0.0086315729559226159) +zone = ('nyz035', 0.0036008869753784934) + +[fips3603150144] +centroid = (0.768070045891458, -1.2932875794643965) +description = Newcomb town, NY +station = ('kslk', 0.0069695472281255458) +zone = ('nyz034', 0.0033589674936042812) + +[fips3603151935] +centroid = (0.77154222135866812, -1.2923514023069191) +description = North Elba town, NY +station = ('kslk', 0.0038907255513615062) +zone = ('nyz034', 0.0031927674415011928) + +[fips3603153077] +centroid = (0.76841628430846864, -1.2873208747104812) +description = North Hudson town, NY +station = ('kslk', 0.0085406948296279529) +zone = ('nyz034', 0.0015841823035556669) + +[fips3603164529] +centroid = (0.77442693645294935, -1.2917776078620338) +description = St. Armand town, NY +station = ('kslk', 0.0023803345725669028) +zone = ('nyz030', 0.0041088791947795919) + +[fips3603165629] +centroid = (0.76542170073777427, -1.2873832876845324) +description = Schroon town, NY +station = ('kgfl', 0.0092947613536510099) +zone = ('nyz034', 0.0041768579889291946) + +[fips3603173891] +centroid = (0.76509340430547423, -1.2837386213273478) +description = Ticonderoga town, NY +station = ('kgfl', 0.0088210859378468499) +zone = ('vtz009', 0.0050922389816520303) + +[fips3603180775] +centroid = (0.77116159995539313, -1.28188293490675) +description = Westport town, NY +station = ('kbtv', 0.0061635882677234374) +zone = ('nyz035', 0.0011373148376536786) + +[fips3603182271] +centroid = (0.77467308023735804, -1.2810490340434395) +description = Willsboro town, NY +station = ('kbtv', 0.0034082855325407381) +zone = ('nyz035', 0.0024256305932399361) + +[fips3603182315] +centroid = (0.77445142342235485, -1.2896594413752283) +description = Wilmington town, NY +station = ('kslk', 0.0038703130244946565) +zone = ('nyz034', 0.0050424882005483656) + +[fips3603188] +centroid = (0.74616651284477964, -1.3386402916900271) +description = Aurora village, NY +station = ('kpeo', 0.0048492005026226194) +zone = ('nyz016', 0.0016818718384682399) + +[fips3603254] +centroid = (0.77588100515937086, -1.2857994013883476) +description = Au Sable Forks CDP, NY +station = ('kpbg', 0.004250742461611297) +zone = ('nyz035', 0.0046481485919329622) + +[fips36033] +centroid = (0.77831865416575385, -1.2969658608629746) +description = Franklin County, NY +station = ('kslk', 0.0036615589510182928) +zone = ('nyz030', 0.0014409784653854607) + +[fips3603304319] +centroid = (0.78256209062942006, -1.2990509882670398) +description = Bangor town, NY +station = ('cwbz', 0.0051984953041120828) +zone = ('nyz027', 0.0011199555386379805) + +[fips3603305716] +centroid = (0.7812252033289776, -1.2938384053763259) +description = Bellmont town, NY +station = ('kslk', 0.0063563469146572116) +zone = ('nyz030', 0.0046203171448397111) + +[fips3603307278] +centroid = (0.78390726824380963, -1.3017806308572812) +description = Bombay town, NY +station = ('kmss', 0.0032722245901021518) +zone = ('nyz027', 0.00199974671834671) + +[fips3603307839] +centroid = (0.7807803189026441, -1.2987823471885729) +description = Brandon town, NY +station = ('kslk', 0.0064343346151881885) +zone = ('nyz027', 0.0029036667095701284) + +[fips3603308213] +centroid = (0.77614526546141527, -1.2958682058431028) +description = Brighton town, NY +station = ('kslk', 0.001356725131286707) +zone = ('nyz030', 0.000869610847770339) + +[fips3603311165] +centroid = (0.78410956935740839, -1.2947213499916175) +description = Burke town, NY +station = ('cwbz', 0.0035517660746790781) +zone = ('nyz027', 0.0030428501328296064) + +[fips3603313992] +centroid = (0.78418531664694491, -1.2928750708956878) +description = Chateaugay town, NY +station = ('cwbz', 0.0041328367521918903) +zone = ('nyz031', 0.0052461984736124553) + +[fips3603317871] +centroid = (0.78482756290509381, -1.2964442866693087) +description = Constable town, NY +station = ('cwbz', 0.0026070072317321996) +zone = ('nyz027', 0.0021272971779185855) + +[fips3603320] +centroid = (0.7441879203382562, -1.2837012712813551) +description = Averill Park CDP, NY +station = ('kalb', 0.0037409652908938339) +zone = ('nyz053', 0.0014306566178464472) + +[fips3603320610] +centroid = (0.78065338110614657, -1.3009631884488171) +description = Dickinson town, NY +station = ('kmss', 0.0052513789246752896) +zone = ('nyz027', 0.0033397177588851577) + +[fips3603320973] +centroid = (0.77842932549362276, -1.2956055512439704) +description = Duane town, NY +station = ('kslk', 0.0035267519197985696) +zone = ('nyz030', 0.0015593669837302498) + +[fips3603326737] +centroid = (0.78452727900728814, -1.300089284639051) +description = Fort Covington town, NY +station = ('cwbz', 0.003863367047647948) +zone = ('nyz027', 0.0011570343731294589) + +[fips3603327243] +centroid = (0.77702245049017515, -1.2927613626949204) +description = Franklin town, NY +station = ('kslk', 0.0026506846527943645) +zone = ('nyz030', 0.0025350292992005227) + +[fips3603331] +centroid = (0.74027936019817009, -1.3513182935633439) +description = Avoca village, NY +station = ('kdsv', 0.0045960853243172959) +zone = ('nyz022', 0.00262109675772936) + +[fips3603332314] +centroid = (0.77175049149830854, -1.2951488509386009) +description = Harrietstown town, NY +station = ('kslk', 0.0031767540239953031) +zone = ('nyz034', 0.0049754571875675248) + +[fips3603344721] +centroid = (0.78182713248140523, -1.2965547485576674) +description = Malone town, NY +station = ('cwbz', 0.0056074428972182882) +zone = ('nyz027', 0.0025260353945269643) + +[fips3603347933] +centroid = (0.78242373837961443, -1.3012966685089959) +description = Moira town, NY +station = ('kmss', 0.0040308111729049521) +zone = ('nyz027', 0.0020705589080429526) + +[fips3603353] +centroid = (0.74896731250862503, -1.3569327559676219) +description = Avon village, NY +station = ('kroc', 0.0036506503765398068) +zone = ('nyz013', 0.0032424315280632468) + +[fips3603364727] +centroid = (0.7850274903709098, -1.3027664102721002) +description = St. Regis Mohawk Reservation, NY +station = ('kmss', 0.0026765404189084746) +zone = ('nyz027', 0.0030025152038648186) + +[fips3603365178] +centroid = (0.77665552992152842, -1.2978942713052806) +description = Santa Clara town, NY +station = ('kslk', 0.0026756119599066542) +zone = ('nyz030', 0.0011649528396260153) + +[fips3603375676] +centroid = (0.77218746958313034, -1.2997955457259405) +description = Tupper Lake town, NY +station = ('kslk', 0.0043707730410331384) +zone = ('nyz030', 0.0053767239837257327) + +[fips3603378795] +centroid = (0.77712388902630114, -1.3010604556480307) +description = Waverly town, NY +station = ('kslk', 0.0048298488748053734) +zone = ('nyz030', 0.0033874552563255391) + +[fips3603381215] +centroid = (0.78435962267934167, -1.2982366001847667) +description = Westville town, NY +station = ('cwbz', 0.0033136242973899749) +zone = ('nyz027', 0.0008569802394477737) + +[fips3603408] +centroid = (0.71023868329967366, -1.2797801273173619) +description = Babylon village, NY +station = ('utff', 0.001395290548104166) +zone = ('nyz080', 0.0021364764739079246) + +[fips36035] +centroid = (0.75250933605249981, -1.2989382225440682) +description = Fulton County, NY +station = ('ksch', 0.0077901911049793543) +zone = ('nyz082', 0.00080102709813039774) + +[fips3603506882] +centroid = (0.75351804909368991, -1.2982069994006529) +description = Bleecker town, NY +station = ('ksch', 0.0080382828402772513) +zone = ('nyz082', 0.00056196321815886365) + +[fips3603508433] +centroid = (0.75182384053548645, -1.2942029522971901) +description = Broadalbin town, NY +station = ('ksch', 0.0048405265085251694) +zone = ('nyz082', 0.0037522430371116407) + +[fips3603512573] +centroid = (0.7526559262563749, -1.3007078467792506) +description = Caroga town, NY +station = ('ksch', 0.0089412382115153337) +zone = ('nyz082', 0.0014575350758346502) + +[fips3603524603] +centroid = (0.75114489000316831, -1.3013431117203915) +description = Ephratah town, NY +station = ('ksch', 0.0086662865997315496) +zone = ('nyz039', 0.0017887950206427433) + +[fips3603529443] +centroid = (0.75135563851034648, -1.2976021031884966) +description = Gloversville city, NY +station = ('ksch', 0.0063299319279231069) +zone = ('nyz039', 0.00095938717886776665) + +[fips3603538781] +centroid = (0.75061959825819546, -1.2980897656347965) +description = Johnstown city, NY +station = ('ksch', 0.0062774923845639865) +zone = ('nyz039', 0.00082526610509010433) + +[fips3603538792] +centroid = (0.75126514318863069, -1.2984958513918579) +description = Johnstown town, NY +station = ('ksch', 0.0068405470776301209) +zone = ('nyz039', 0.00030086397699056886) + +[fips3603546217] +centroid = (0.75266992379697573, -1.2961327279445352) +description = Mayfield town, NY +station = ('ksch', 0.0063806427390664311) +zone = ('nyz082', 0.0021341763385872522) + +[fips3603551407] +centroid = (0.75324275831077292, -1.2945336223772728) +description = Northampton town, NY +station = ('ksch', 0.0061688255186838105) +zone = ('nyz082', 0.0032024750739530453) + +[fips3603555101] +centroid = (0.75192583757697307, -1.3032718401701853) +description = Oppenheim town, NY +station = ('krme', 0.0096370851547445905) +zone = ('nyz082', 0.0034630714578468965) + +[fips3603557353] +centroid = (0.75058594831021697, -1.2951053224270563) +description = Perth town, NY +station = ('ksch', 0.0043963201141670148) +zone = ('nyz039', 0.002838305096294633) + +[fips3603571784] +centroid = (0.75415067858766038, -1.3021910624841802) +description = Stratford town, NY +station = ('ksch', 0.010674415726381106) +zone = ('nyz082', 0.002526800047208276) + +[fips36037] +centroid = (0.75050746085375486, -1.3647214273809867) +description = Genesee County, NY +station = ('kroc', 0.0068034797486362783) +zone = ('nyz011', 1.060920819001781e-05) + +[fips3603700474] +centroid = (0.7520632997088601, -1.3677530991982858) +description = Alabama town, NY +station = ('kbuf', 0.0054222754577801773) +zone = ('nyz011', 0.0026978126310326909) + +[fips3603701165] +centroid = (0.74910554258538298, -1.3657212916028691) +description = Alexander town, NY +station = ('kroc', 0.0080007226372886715) +zone = ('nyz011', 0.0015779550019958451) + +[fips3603704715] +centroid = (0.75046641070974796, -1.3645124765629379) +description = Batavia city, NY +station = ('kroc', 0.006670537971384948) +zone = ('nyz011', 0.00016878002173438561) + +[fips3603704726] +centroid = (0.75043902649378413, -1.3653359752639063) +description = Batavia town, NY +station = ('kroc', 0.0072530971887622376) +zone = ('nyz011', 0.00044451366923958612) + +[fips3603706057] +centroid = (0.75217060255127277, -1.3605798832390517) +description = Bergen town, NY +station = ('kroc', 0.0034862099772890046) +zone = ('nyz011', 0.0034618346928107615) + +[fips3603706266] +centroid = (0.74908810674615556, -1.3635699289536909) +description = Bethany town, NY +station = ('kroc', 0.0066223515631464282) +zone = ('nyz011', 0.0016573986638616083) + +[fips3603711572] +centroid = (0.75197093688484462, -1.362525576289175) +description = Byron town, NY +station = ('kroc', 0.004920451173441801) +zone = ('nyz011', 0.0021786196824831387) + +[fips3603719719] +centroid = (0.74889840690975629, -1.3680252134819642) +description = Darien town, NY +station = ('kbuf', 0.0045099634148804526) +zone = ('nyz011', 0.0028965862374460576) + +[fips3603723756] +centroid = (0.75212066868137317, -1.3643455183666922) +description = Elba town, NY +station = ('kroc', 0.0062305524273673293) +zone = ('nyz011', 0.0016366766424388785) + +[fips3603742037] +centroid = (0.7503633839240027, -1.3607668778151105) +description = Le Roy town, NY +station = ('kroc', 0.0042069258158053948) +zone = ('nyz011', 0.0029064674970646171) + +[fips3603754166] +centroid = (0.7519736945050628, -1.3661496477611861) +description = Oakfield town, NY +station = ('kroc', 0.0075552934972188089) +zone = ('nyz011', 0.0017924797658992967) + +[fips3603756792] +centroid = (0.74887053400160186, -1.3615577214057741) +description = Pavilion town, NY +station = ('kroc', 0.0055602770189851665) +zone = ('nyz011', 0.0028451759122002655) + +[fips3603757078] +centroid = (0.75051826444182468, -1.3680830187867905) +description = Pembroke town, NY +station = ('kbuf', 0.0046004106068707222) +zone = ('nyz011', 0.0024479863721701797) + +[fips3603770607] +centroid = (0.75038387408942109, -1.3628219681027487) +description = Stafford town, NY +station = ('kroc', 0.0055406364772974497) +zone = ('nyz011', 0.0014053121941926285) + +[fips3603775011] +centroid = (0.75164000500537398, -1.3689547409349914) +description = Tonawanda Reservation, NY +station = ('kbuf', 0.0044513995570349615) +zone = ('nyz010', 0.0039715009278204596) + +[fips36039] +centroid = (0.73804652557950867, -1.2941528264410729) +description = Greene County, NY +station = ('kalb', 0.0092481050293997721) +zone = ('nyz058', 0.0012521863993436981) + +[fips3603902803] +centroid = (0.73864524332611281, -1.2974098726246821) +description = Ashland town, NY +station = ('kalb', 0.010175029927658369) +zone = ('nyz058', 0.0016956904153883252) + +[fips3603902913] +centroid = (0.73786434811218549, -1.2890868861141116) +description = Athens town, NY +station = ('kalb', 0.0082989732986597457) +zone = ('nyz059', 0.00094673306080926957) + +[fips3603911649] +centroid = (0.73825353908208768, -1.2918170348498363) +description = Cairo town, NY +station = ('kalb', 0.0083490380057283566) +zone = ('nyz059', 0.0013234023985116449) + +[fips3603913013] +centroid = (0.7366805785470204, -1.2904770408633253) +description = Catskill town, NY +station = ('kalb', 0.0096153368032175814) +zone = ('nyz059', 0.0018300034217871744) + +[fips3603918729] +centroid = (0.73907153999591246, -1.2891578686547902) +description = Coxsackie town, NY +station = ('kalb', 0.0071035050140302322) +zone = ('nyz059', 0.00088617921853044815) + +[fips3603921204] +centroid = (0.73955885337636174, -1.2942165833186481) +description = Durham town, NY +station = ('kalb', 0.0079853865058581389) +zone = ('nyz058', 0.002308560598980111) + +[fips3603930620] +centroid = (0.73996745240754613, -1.2917999131698743) +description = Greenville town, NY +station = ('kalb', 0.0067504807817103602) +zone = ('nyz059', 0.0019658210793840059) + +[fips3603931379] +centroid = (0.73688267022110876, -1.2998583601257199) +description = Halcott town, NY +station = ('kmsv', 0.010004572626520287) +zone = ('nyz058', 0.0031515431731942824) + +[fips3603936178] +centroid = (0.73592705009576431, -1.2942028650307273) +description = Hunter town, NY +station = ('kpou', 0.0099240422495088711) +zone = ('nyz058', 0.0019400272958847561) + +[fips3603938638] +centroid = (0.73718920239763652, -1.295575636300591) +description = Jewett town, NY +station = ('kalb', 0.010520126745443633) +zone = ('nyz058', 0.00034522364860968232) + +[fips3603942202] +centroid = (0.73668684427903497, -1.2973634817731639) +description = Lexington town, NY +station = ('kmsv', 0.010751955800962019) +zone = ('nyz058', 0.0014949127369792571) + +[fips3603949935] +centroid = (0.74036950645403554, -1.2891453546440534) +description = New Baltimore town, NY +station = ('kalb', 0.0058146409413828998) +zone = ('nyz059', 0.0020019517145524754) + +[fips3603959751] +centroid = (0.73861763221734622, -1.2987657491073865) +description = Prattsville town, NY +station = ('kalb', 0.010895935080098611) +zone = ('nyz058', 0.0025242492160303161) + +[fips3603982480] +centroid = (0.73858968949602177, -1.2953552884825268) +description = Windham town, NY +station = ('kalb', 0.0092619327745149926) +zone = ('nyz058', 0.0010943818685142776) + +[fips3604033] +centroid = (0.73830488666868144, -1.3173654611465022) +description = Bainbridge village, NY +station = ('kbgm', 0.0067472069605358752) +zone = ('nyz045', 0.0037559017126617745) + +[fips3604055] +centroid = (0.71496754818819719, -1.2695579956878189) +description = Baiting Hollow CDP, NY +station = ('kfok', 0.0025811564351548256) +zone = ('nyz079', 0.0021571475384835411) + +[fips36041] +centroid = (0.76197373298728954, -1.3003131580222045) +description = Hamilton County, NY +station = ('kgfl', 0.012564253711699711) +zone = ('nyz033', 8.6016153746864345e-05) + +[fips3604102572] +centroid = (0.75922143602335701, -1.3016593653808528) +description = Arietta town, NY +station = ('kgfl', 0.012549994200657106) +zone = ('nyz033', 0.0029950216693436621) + +[fips3604105958] +centroid = (0.75555730924501263, -1.2979360370342807) +description = Benson town, NY +station = ('ksch', 0.0094607993862528533) +zone = ('nyz082', 0.0023592798297673583) + +[fips3604135496] +centroid = (0.75613513540047039, -1.2956410686942483) +description = Hope town, NY +station = ('kgfl', 0.0078493587280326661) +zone = ('nyz082', 0.003700695400000635) + +[fips3604137374] +centroid = (0.76456554692650103, -1.2988332758961461) +description = Indian Lake town, NY +station = ('kslk', 0.010713756225415887) +zone = ('nyz033', 0.002727238602779688) + +[fips3604137495] +centroid = (0.76308919036553158, -1.3040198882875902) +description = Inlet town, NY +station = ('krme', 0.012164531454675064) +zone = ('nyz032', 0.0032154022804882746) + +[fips3604140794] +centroid = (0.76059537666381949, -1.2989444184629129) +description = Lake Pleasant town, NY +station = ('kgfl', 0.011090422416942712) +zone = ('nyz033', 0.0017073285823148566) + +[fips3604143] +centroid = (0.70970984853631924, -1.2847503014282664) +description = Baldwin CDP, NY +station = ('kjfk', 0.0021299751158053624) +zone = ('nyz179', 0.00059169849845933217) + +[fips3604143412] +centroid = (0.76723895500824335, -1.3028736433013428) +description = Long Lake town, NY +station = ('kslk', 0.009523661820990667) +zone = ('nyz033', 0.0055490568092388575) + +[fips3604148340] +centroid = (0.75829888988733785, -1.3036670176194218) +description = Morehouse town, NY +station = ('krme', 0.0097015313049339212) +zone = ('nyz033', 0.0044888723391334198) + +[fips3604154] +centroid = (0.70912694347273819, -1.2845970789732337) +description = Baldwin Harbor CDP, NY +station = ('kjfk', 0.002181996897636694) +zone = ('nyz179', 0.0010805571977089156) + +[fips3604179059] +centroid = (0.75879290533211485, -1.2965249906939209) +description = Wells town, NY +station = ('kgfl', 0.0088359693598992796) +zone = ('nyz033', 0.0042021758073802736) + +[fips3604198] +centroid = (0.75322223323876947, -1.3322218433658182) +description = Baldwinsville village, NY +station = ('kfzy', 0.0034436462810320816) +zone = ('nyz018', 0.0031501527128010233) + +[fips3604253] +centroid = (0.75059001492737421, -1.2890034593758661) +description = Ballston Spa village, NY +station = ('ksch', 0.0028974183204885031) +zone = ('nyz050', 0.0011586224043499626) + +[fips3604286] +centroid = (0.72479867370541573, -1.2919734687106925) +description = Balmville CDP, NY +station = ('kswf', 0.0010988695132353307) +zone = ('nyz068', 0.0040078785502724043) + +[fips36043] +centroid = (0.75854862905000575, -1.3071590025736419) +description = Herkimer County, NY +station = ('krme', 0.0075503976936620353) +zone = ('nyz032', 0.004454970249284174) + +[fips3604317431] +centroid = (0.74925321489339414, -1.3098042934011347) +description = Columbia town, NY +station = ('krme', 0.0069669848167232158) +zone = ('nyz038', 0.0030786255139163845) + +[fips3604319686] +centroid = (0.75016139696966944, -1.3054758594028963) +description = Danube town, NY +station = ('krme', 0.0088415933063262162) +zone = ('nyz038', 0.0027858687511536991) + +[fips3604324933] +centroid = (0.75278005407277671, -1.307914538153538) +description = Fairfield town, NY +station = ('krme', 0.0061445686199120423) +zone = ('nyz038', 0.00071099618817384649) + +[fips3604327199] +centroid = (0.75120248586848404, -1.3113869928734281) +description = Frankfort town, NY +station = ('krme', 0.0047460076932513279) +zone = ('nyz038', 0.002489524948586451) + +[fips3604328750] +centroid = (0.75027363909386513, -1.3087120838085291) +description = German Flatts town, NY +station = ('krme', 0.0068224395704583902) +zone = ('nyz038', 0.0018653595420539118) + +[fips3604334132] +centroid = (0.75155902172808142, -1.3090077251305245) +description = Herkimer town, NY +station = ('krme', 0.0059071221781971609) +zone = ('nyz038', 0.0007969248564616753) + +[fips3604342664] +centroid = (0.74992822098160306, -1.3118560850164867) +description = Litchfield town, NY +station = ('krme', 0.0055271664398466782) +zone = ('nyz038', 0.0034397729386151637) + +[fips3604342741] +centroid = (0.7512740967276933, -1.3064956727381292) +description = Little Falls city, NY +station = ('krme', 0.0076616817310546812) +zone = ('nyz038', 0.0015014527455559311) + +[fips3604342752] +centroid = (0.75081235242078581, -1.3071597530652206) +description = Little Falls town, NY +station = ('krme', 0.0074498029794271125) +zone = ('nyz038', 0.0015010707811009142) + +[fips3604344974] +centroid = (0.75151292758253618, -1.3055006256249821) +description = Manheim town, NY +station = ('krme', 0.0082309823095587722) +zone = ('nyz038', 0.0020648898785220432) + +[fips3604350584] +centroid = (0.75360315134801725, -1.3096251353534176) +description = Newport town, NY +station = ('krme', 0.00472941690748709) +zone = ('nyz038', 0.0018217144838355475) + +[fips3604353968] +centroid = (0.75452168322675672, -1.3081395110941199) +description = Norway town, NY +station = ('krme', 0.0057113399911850318) +zone = ('nyz038', 0.0024197091407853442) + +[fips3604354507] +centroid = (0.75854862905000575, -1.3071590025736419) +description = Ohio town, NY +station = ('krme', 0.0075503976936620353) +zone = ('nyz032', 0.004454970249284174) + +[fips3604364254] +centroid = (0.75579795524227755, -1.3102035200142359) +description = Russia town, NY +station = ('krme', 0.0043821713507737111) +zone = ('nyz038', 0.0039709750271630104) + +[fips3604364837] +centroid = (0.75436619184369658, -1.3055213775897883) +description = Salisbury town, NY +station = ('krme', 0.0076218302438934857) +zone = ('nyz038', 0.0029950488430981605) + +[fips3604365695] +centroid = (0.75245523084568811, -1.3106796458341798) +description = Schuyler town, NY +station = ('krme', 0.0044021851744923523) +zone = ('nyz038', 0.0018374905687308766) + +[fips3604370794] +centroid = (0.74923380683211194, -1.3059264510558835) +description = Stark town, NY +station = ('krme', 0.0090725966563551912) +zone = ('nyz038', 0.0033192239885170673) + +[fips3604378278] +centroid = (0.7487270504837954, -1.3079209958717704) +description = Warren town, NY +station = ('krme', 0.0082896893561529069) +zone = ('nyz038', 0.0033820694574836292) + +[fips3604378927] +centroid = (0.76483767866347196, -1.3096932206475378) +description = Webb town, NY +station = ('kgtb', 0.0095810678361024568) +zone = ('nyz032', 0.002129829788768738) + +[fips3604382568] +centroid = (0.74869558219738197, -1.3118930161834588) +description = Winfield town, NY +station = ('krme', 0.0065837766799482552) +zone = ('nyz038', 0.0043433453691551207) + +[fips3604396] +centroid = (0.71757383090690763, -1.2911823109607634) +description = Bardonia CDP, NY +station = ('khpn', 0.0037654524899824082) +zone = ('nyz069', 0.00089942087448520187) + +[fips3604440] +centroid = (0.75622198298404963, -1.3710178248306037) +description = Barker village, NY +station = ('kiag', 0.0060810535785242592) +zone = ('nyz001', 0.0032708799012135465) + +[fips36045] +centroid = (0.76786407958643021, -1.3273843666379428) +description = Jefferson County, NY +station = ('kart', 0.00032925461806746403) +zone = ('nyz007', 0.0019665317707943698) + +[fips3604500000] +centroid = (0.76492328706328228, -1.3343192927944021) +description = County subdivisions not defined, NY +station = ('kart', 0.0059180563304507506) +zone = ('nyz007', 0.0077544841162664703) + +[fips3604500210] +centroid = (0.76523364151087203, -1.3273977533133057) +description = Adams town, NY +station = ('kart', 0.0024346397977012707) +zone = ('nyz007', 0.0038742656026435969) + +[fips3604501176] +centroid = (0.77352823151451233, -1.3243281554913608) +description = Alexandria town, NY +station = ('kgtb', 0.0050485327923905452) +zone = ('nyz007', 0.0048857466507759486) + +[fips3604502297] +centroid = (0.77180892512166521, -1.3194995973959633) +description = Antwerp town, NY +station = ('kgtb', 0.0034153655020483144) +zone = ('nyz007', 0.0049853082755815193) + +[fips3604510242] +centroid = (0.76841403283373366, -1.327905504499296) +description = Brownville town, NY +station = ('kart', 0.00098611379540923506) +zone = ('nyz007', 0.0021867501070407594) + +[fips3604512364] +centroid = (0.76994791544684882, -1.331528808026436) +description = Cape Vincent town, NY +station = ('kart', 0.0039633648992187156) +zone = ('nyz007', 0.0049453637064314814) + +[fips3604513717] +centroid = (0.76747631978651465, -1.3213211102698073) +description = Champion town, NY +station = ('kgtb', 0.0013840228696201302) +zone = ('nyz007', 0.0028215471852328046) + +[fips3604516100] +centroid = (0.77151103232493501, -1.3278415556355028) +description = Clayton town, NY +station = ('kart', 0.003900625273081795) +zone = ('nyz007', 0.0035561911059428645) + +[fips3604524086] +centroid = (0.76353486019002825, -1.3284250890176146) +description = Ellisburg town, NY +station = ('kart', 0.004239802421024585) +zone = ('nyz006', 0.0056193781294767656) + +[fips3604528] +centroid = (0.755270150223182, -1.3122961174274996) +description = Barneveld village, NY +station = ('krme', 0.0027732125241277782) +zone = ('nyz037', 0.0038577491242468499) + +[fips3604534055] +centroid = (0.76541782610683484, -1.3295952624679068) +description = Henderson town, NY +station = ('kart', 0.0028999013118383471) +zone = ('nyz007', 0.0046919028193764378) + +[fips3604535782] +centroid = (0.76635450940979521, -1.3318110452197762) +description = Hounsfield town, NY +station = ('kart', 0.0036780728434036847) +zone = ('nyz007', 0.0054924732811747366) + +[fips3604542015] +centroid = (0.76931895114430771, -1.322886530982506) +description = Le Ray town, NY +station = ('kgtb', 0.00093029070136922763) +zone = ('nyz007', 0.0015792727564129016) + +[fips3604543544] +centroid = (0.76352400424208089, -1.3260685978214493) +description = Lorraine town, NY +station = ('kart', 0.0041879804170847105) +zone = ('nyz007', 0.0052053094825934496) + +[fips3604543863] +centroid = (0.76837772998529208, -1.3304413282761034) +description = Lyme town, NY +station = ('kart', 0.0025568615365060064) +zone = ('nyz007', 0.004006029145013316) + +[fips3604550] +centroid = (0.70871448726390696, -1.2853648667644786) +description = Barnum Island CDP, NY +station = ('kjfk', 0.0016667360171744477) +zone = ('nyz179', 0.0016820442825310885) + +[fips3604555398] +centroid = (0.77185540323964597, -1.3256596671777072) +description = Orleans town, NY +station = ('kgtb', 0.0041130646331034512) +zone = ('nyz007', 0.0032449407355327245) + +[fips3604556209] +centroid = (0.76891586735355943, -1.3248673051505944) +description = Pamelia town, NY +station = ('kart', 0.0020038703218824838) +zone = ('nyz007', 0.00025740178963537487) + +[fips3604557562] +centroid = (0.77050059140778526, -1.3213224367200385) +description = Philadelphia town, NY +station = ('kgtb', 0.0017170751643030432) +zone = ('nyz007', 0.0031514370184189343) + +[fips3604563341] +centroid = (0.76521013192584764, -1.3247378889865586) +description = Rodman town, NY +station = ('kart', 0.002950201000473478) +zone = ('nyz007', 0.0034501595010443097) + +[fips3604564265] +centroid = (0.76696691053773502, -1.3227192935335796) +description = Rutland town, NY +station = ('kgtb', 0.0019662015972279913) +zone = ('nyz007', 0.0022989437625824962) + +[fips3604573528] +centroid = (0.7725205307642885, -1.3225108314077214) +description = Theresa town, NY +station = ('kgtb', 0.0037383385519422609) +zone = ('nyz007', 0.0042202334072152558) + +[fips3604578608] +centroid = (0.76747872834088238, -1.3248801158673038) +description = Watertown city, NY +station = ('kart', 0.0015583929259091807) +zone = ('nyz007', 0.0011799839314288667) + +[fips3604578619] +centroid = (0.76677223651296766, -1.3250369686071806) +description = Watertown town, NY +station = ('kart', 0.0016852092658144998) +zone = ('nyz007', 0.0018897270546404852) + +[fips3604582348] +centroid = (0.76892419257409161, -1.3192786736192459) +description = Wilna town, NY +station = ('kgtb', 0.001812348396648735) +zone = ('nyz007', 0.0040368011005028938) + +[fips3604583162] +centroid = (0.7634696721424663, -1.3237396828274657) +description = Worth town, NY +station = ('kart', 0.0048107256321945208) +zone = ('nyz007', 0.0052540345749864919) + +[fips36047] +centroid = (0.70921686283580099, -1.2906845430580947) +description = Kings County, NY +station = ('knyc', 0.0025951124820650013) +zone = ('nyz075', 0.00017214661343607697) + +[fips3604710022] +centroid = (0.70921686283580099, -1.2906845430580947) +description = Brooklyn borough, NY +station = ('knyc', 0.0025951124820650013) +zone = ('nyz075', 0.00017214661343607697) + +[fips3604715] +centroid = (0.75046641070974796, -1.3645124765629379) +description = Batavia city, NY +station = ('kroc', 0.006670537971384948) +zone = ('nyz011', 0.00016878002173438561) + +[fips3604759] +centroid = (0.73890411056076855, -1.3494336346771627) +description = Bath village, NY +station = ('kelm', 0.0061436780595052103) +zone = ('nyz022', 0.0014721805775512159) + +[fips3604803] +centroid = (0.71268374995537742, -1.286216186013724) +description = Baxter Estates village, NY +station = ('klga', 0.0026420971146138049) +zone = ('nyz177', 0.001283028122340768) + +[fips3604891] +centroid = (0.7091183564528184, -1.2857458895934815) +description = Bay Park CDP, NY +station = ('kjfk', 0.0013110896302784584) +zone = ('nyz179', 0.0015393604323739036) + +[fips36049] +centroid = (0.76421679523536756, -1.3167220629710468) +description = Lewis County, NY +station = ('kgtb', 0.0058758153090324805) +zone = ('nyz008', 8.3346790289081475e-05) + +[fips3604913] +centroid = (0.71115157776492921, -1.2750745102144752) +description = Bayport CDP, NY +station = ('kisp', 0.001105021356723791) +zone = ('nyz080', 0.001673162995615599) + +[fips3604919081] +centroid = (0.76740528488595849, -1.3152033123625464) +description = Croghan town, NY +station = ('kgtb', 0.004947473568196992) +zone = ('nyz008', 0.0034250673429490142) + +[fips3604920214] +centroid = (0.76616850967141015, -1.3200141379127435) +description = Denmark town, NY +station = ('kgtb', 0.0029430808255439594) +zone = ('nyz008', 0.0030331613023053925) + +[fips3604920555] +centroid = (0.76983260154316957, -1.3154995820030726) +description = Diana town, NY +station = ('kgtb', 0.0046357304437598746) +zone = ('nyz008', 0.0057261088871935085) + +[fips3604930796] +centroid = (0.76265786714748618, -1.3123951125026725) +description = Greig town, NY +station = ('krme', 0.0085013848116573549) +zone = ('nyz032', 0.0028544623055381732) + +[fips3604932358] +centroid = (0.76509384063778718, -1.3206162590513892) +description = Harrisburg town, NY +station = ('kgtb', 0.0038193561628777164) +zone = ('nyz008', 0.0028788009236715554) + +[fips3604935] +centroid = (0.71087806721784919, -1.2784418088469327) +description = Bay Shore CDP, NY +station = ('utff', 0.0022179368174803792) +zone = ('nyz080', 0.00094629963000563138) + +[fips3604942125] +centroid = (0.75905959164181958, -1.3187516889048985) +description = Lewis town, NY +station = ('krme', 0.0049270607837420648) +zone = ('nyz009', 0.0022253932549109161) + +[fips3604942213] +centroid = (0.75982015376996126, -1.3156704322835502) +description = Leyden town, NY +station = ('krme', 0.0052608992977772259) +zone = ('nyz009', 0.00289112851326281) + +[fips3604943731] +centroid = (0.7646978079772172, -1.3180412351795816) +description = Lowville town, NY +station = ('kgtb', 0.0049278856760032975) +zone = ('nyz008', 0.0010124492681536331) + +[fips3604943995] +centroid = (0.76078060845733364, -1.3132279138085543) +description = Lyonsdale town, NY +station = ('krme', 0.0065297641325394876) +zone = ('nyz032', 0.0040495791909882142) + +[fips3604945854] +centroid = (0.76316453622934011, -1.3184241255108842) +description = Martinsburg town, NY +station = ('kgtb', 0.006153192086229632) +zone = ('nyz008', 0.0015400112292636486) + +[fips3604948032] +centroid = (0.76297747184011144, -1.3215091345901244) +description = Montague town, NY +station = ('kgtb', 0.0058437230740328652) +zone = ('nyz008', 0.003590003693088888) + +[fips3604950001] +centroid = (0.76536150433187311, -1.3154250040841349) +description = New Bremen town, NY +station = ('kgtb', 0.0057429904968402589) +zone = ('nyz008', 0.0015513597159748139) + +[fips3604955497] +centroid = (0.76035998410760297, -1.3210193428421373) +description = Osceola town, NY +station = ('krme', 0.0068563083680256501) +zone = ('nyz009', 0.0042502754543694583) + +[fips3604957925] +centroid = (0.76505472780924999, -1.3227671504616694) +description = Pinckney town, NY +station = ('kgtb', 0.003827227982694682) +zone = ('nyz007', 0.0039127888013093838) + +[fips3604975693] +centroid = (0.76203590161524559, -1.3164545389033013) +description = Turin town, NY +station = ('krme', 0.0074798850292751131) +zone = ('nyz008', 0.0021683179576206511) + +[fips3604978729] +centroid = (0.7649767115916859, -1.313121727976863) +description = Watson town, NY +station = ('kgtb', 0.007332466435789318) +zone = ('nyz008', 0.0027901751135454402) + +[fips3604981094] +centroid = (0.76084694842220191, -1.3178542406035232) +description = West Turin town, NY +station = ('krme', 0.0064290216904947795) +zone = ('nyz008', 0.0034213564368550408) + +[fips3605034] +centroid = (0.71396632260949799, -1.283884548306107) +description = Bayville village, NY +station = ('khpn', 0.003329623119949146) +zone = ('nyz177', 0.0013741802509988211) + +[fips3605039] +centroid = (0.7112806099565292, -1.2791523672920047) +description = Baywood CDP, NY +station = ('utff', 0.0017113520028847842) +zone = ('nyz080', 0.0014187993153426902) + +[fips36051] +centroid = (0.74573529434648933, -1.3573387195516358) +description = Livingston County, NY +station = ('kdsv', 0.0028884415900896424) +zone = ('nyz013', 7.284877637784834e-05) + +[fips3605100] +centroid = (0.72436818824541138, -1.290928156115088) +description = Beacon city, NY +station = ('kswf', 0.0017690089992379481) +zone = ('nyz068', 0.0031159076210587043) + +[fips3605103364] +centroid = (0.74870087054501544, -1.3565986650422051) +description = Avon town, NY +station = ('kroc', 0.0038679920856247892) +zone = ('nyz013', 0.0030181326639007362) + +[fips3605111715] +centroid = (0.74966762587098768, -1.3582205122496207) +description = Caledonia town, NY +station = ('kroc', 0.0033516933024261473) +zone = ('nyz003', 0.0037330827365159524) + +[fips3605117618] +centroid = (0.74531665967210603, -1.3550919048456658) +description = Conesus town, NY +station = ('kdsv', 0.0025780119278327168) +zone = ('nyz013', 0.0017755612693022749) + +[fips3605128629] +centroid = (0.74711668754285776, -1.3575095523788208) +description = Geneseo town, NY +station = ('kdsv', 0.0042652395524045523) +zone = ('nyz013', 0.0013716993796591996) + +[fips3605131016] +centroid = (0.74542387524805609, -1.3573203586879046) +description = Groveland town, NY +station = ('kdsv', 0.0025833664849419253) +zone = ('nyz013', 0.00033331950212191691) + +[fips3605141883] +centroid = (0.74630781470102114, -1.3596900620265073) +description = Leicester town, NY +station = ('kdsv', 0.0041510745624488482) +zone = ('nyz013', 0.0017475325066156357) + +[fips3605142334] +centroid = (0.74867449862001778, -1.3545268719536252) +description = Lima town, NY +station = ('kroc', 0.0039693735459598442) +zone = ('nyz013', 0.0036239257345330681) + +[fips3605142961] +centroid = (0.74715941320294665, -1.3553119035978796) +description = Livonia town, NY +station = ('kdsv', 0.0043074707621804402) +zone = ('nyz013', 0.0021049779460796036) + +[fips3605148956] +centroid = (0.74464247388864557, -1.3596906030785756) +description = Mount Morris town, NY +station = ('kdsv', 0.0029597572915272792) +zone = ('nyz013', 0.0019903839682241364) + +[fips3605151869] +centroid = (0.74278317463649601, -1.3559725630796373) +description = North Dansville town, NY +station = ('kdsv', 0.00035459529501903272) +zone = ('nyz013', 0.0031525536034107309) + +[fips3605154089] +centroid = (0.74302519944387013, -1.3593129661883216) +description = Nunda town, NY +station = ('kdsv', 0.0021388356934630972) +zone = ('nyz013', 0.0030507527038381504) + +[fips3605155508] +centroid = (0.74201762086669376, -1.3573494184199504) +description = Ossian town, NY +station = ('kdsv', 0.0011432463411260769) +zone = ('nyz013', 0.0037289617473791905) + +[fips3605159179] +centroid = (0.74280455491983299, -1.3612677698571405) +description = Portage town, NY +station = ('kdsv', 0.003578786376873074) +zone = ('nyz012', 0.0038598510773619416) + +[fips3605170101] +centroid = (0.74399539306846862, -1.3560787140047434) +description = Sparta town, NY +station = ('kdsv', 0.0010947069700729855) +zone = ('nyz013', 0.00201534070851112) + +[fips3605170475] +centroid = (0.74391393855227816, -1.3539207540109925) +description = Springwater town, NY +station = ('kdsv', 0.0020817593981238311) +zone = ('nyz013', 0.0031684122470137335) + +[fips3605181006] +centroid = (0.74369263080312531, -1.3576775403193253) +description = West Sparta town, NY +station = ('kdsv', 0.0012051683542320967) +zone = ('nyz013', 0.0020610122756026805) + +[fips3605184022] +centroid = (0.74816741065914349, -1.3594162547734545) +description = York town, NY +station = ('kroc', 0.005088632386803303) +zone = ('nyz013', 0.0028235915889027277) + +[fips3605193] +centroid = (0.72338783680456609, -1.2935660467465524) +description = Beaver Dam Lake CDP, NY +station = ('kswf', 0.00094684147307586084) +zone = ('nyz067', 0.0026034941718810489) + +[fips36053] +centroid = (0.74892123581637238, -1.3205785075796683) +description = Madison County, NY +station = ('krme', 0.0065676227322018499) +zone = ('nyz036', 9.2985257756834612e-05) + +[fips3605308587] +centroid = (0.74714038911409997, -1.314988567051381) +description = Brookfield town, NY +station = ('krme', 0.0074588028164695097) +zone = ('nyz036', 0.004559641781262236) + +[fips3605309] +centroid = (0.71900538486597843, -1.2853626501963284) +description = Bedford CDP, NY +station = ('khpn', 0.0023664228087069594) +zone = ('nyz070', 0.0014091328035141081) + +[fips3605313156] +centroid = (0.74902424514882504, -1.3240410313761151) +description = Cazenovia town, NY +station = ('ksyr', 0.0046370237199052323) +zone = ('nyz036', 0.0024581302556278338) + +[fips3605320401] +centroid = (0.74647171857107575, -1.3237813438367108) +description = DeRuyter town, NY +station = ('ksyr', 0.0068642184762053348) +zone = ('nyz036', 0.0033766205670659058) + +[fips3605323305] +centroid = (0.74857520683887191, -1.3199938571868355) +description = Eaton town, NY +station = ('krme', 0.0066688306043090374) +zone = ('nyz036', 0.0006431082364023984) + +[fips3605325593] +centroid = (0.75005395450091672, -1.3224943380462901) +description = Fenner town, NY +station = ('ksyr', 0.0048455720901601339) +zone = ('nyz036', 0.0017103705885392442) + +[fips3605328695] +centroid = (0.74676779622538414, -1.3219769177362439) +description = Georgetown town, NY +station = ('ksyr', 0.0073412847709432719) +zone = ('nyz036', 0.002398413907509089) + +[fips3605331720] +centroid = (0.74687047394527906, -1.3175379171298915) +description = Hamilton town, NY +station = ('krme', 0.0077776018666751746) +zone = ('nyz036', 0.0031206005325654243) + +[fips3605341674] +centroid = (0.74665408802461675, -1.3199264525711234) +description = Lebanon town, NY +station = ('krme', 0.0084203769394880119) +zone = ('nyz036', 0.002383181746866529) + +[fips3605341905] +centroid = (0.75243885965730428, -1.322208941807004) +description = Lenox town, NY +station = ('krme', 0.0050164109162592627) +zone = ('nyz036', 0.0036420234657907544) + +[fips3605342] +centroid = (0.71978369699261291, -1.2860995631131058) +description = Bedford Hills CDP, NY +station = ('khpn', 0.0030391924580296065) +zone = ('nyz070', 0.00084274064370615882) + +[fips3605342422] +centroid = (0.7510542026952346, -1.3218042523133442) +description = Lincoln town, NY +station = ('krme', 0.005513180371425285) +zone = ('nyz036', 0.0022379107208814852) + +[fips3605344435] +centroid = (0.74861344700278321, -1.3177325562480739) +description = Madison town, NY +station = ('krme', 0.0060870335579838323) +zone = ('nyz036', 0.0021924161677620291) + +[fips3605349770] +centroid = (0.74849724298118536, -1.3220022424636904) +description = Nelson town, NY +station = ('ksyr', 0.0060630727501044552) +zone = ('nyz036', 0.0010748798499688255) + +[fips3605354837] +centroid = (0.75172111045571421, -1.3207528136120652) +description = Oneida city, NY +station = ('krme', 0.0044961158603159515) +zone = ('nyz036', 0.0027501558523981462) + +[fips3605367785] +centroid = (0.74987814748536319, -1.3205907248844326) +description = Smithfield town, NY +station = ('krme', 0.0057706159481054993) +zone = ('nyz036', 0.00090939648763427305) + +[fips3605371399] +centroid = (0.75024740679520774, -1.3193225686499335) +description = Stockbridge town, NY +station = ('krme', 0.0049592341005164318) +zone = ('nyz036', 0.0016196553186210553) + +[fips3605371993] +centroid = (0.75207373677778711, -1.324415404500668) +description = Sullivan town, NY +station = ('ksyr', 0.0027970624303605579) +zone = ('nyz036', 0.0041310711143353364) + +[fips36055] +centroid = (0.75859819640076243, -1.355503959628769) +description = Monroe County, NY +station = ('kroc', 0.006075036041362402) +zone = ('nyz003', 0.0055656207123796582) + +[fips3605500000] +centroid = (0.75859819640076243, -1.355503959628769) +description = County subdivisions not defined, NY +station = ('kroc', 0.006075036041362402) +zone = ('nyz003', 0.0055656207123796582) + +[fips3605508246] +centroid = (0.75255132867430286, -1.3540625620127171) +description = Brighton town, NY +station = ('kroc', 0.0012903221554823529) +zone = ('nyz003', 0.00153216028342583) + +[fips3605515462] +centroid = (0.75198573727690154, -1.3569104506597813) +description = Chili town, NY +station = ('kroc', 0.0009572056751871328) +zone = ('nyz003', 0.0012332525898658632) + +[fips3605515957] +centroid = (0.754768717129084, -1.3601778640991473) +description = Clarkson town, NY +station = ('kroc', 0.003882490938943254) +zone = ('nyz003', 0.0034675988539560939) + +[fips3605522870] +centroid = (0.75245001231122455, -1.3524063492723297) +description = East Rochester town, NY +station = ('kroc', 0.0025003972522620369) +zone = ('nyz003', 0.0027247935919336337) + +[fips3605528442] +centroid = (0.75312294145762337, -1.3563570242072664) +description = Gates town, NY +station = ('kroc', 0.00070862526417081614) +zone = ('nyz003', 0.00023711006252678541) + +[fips3605530290] +centroid = (0.75486095778005191, -1.3561298696051194) +description = Greece town, NY +station = ('kroc', 0.0023433893077014862) +zone = ('nyz003', 0.0018151685931929254) + +[fips3605531797] +centroid = (0.75611687925649451, -1.3599560502045114) +description = Hamlin town, NY +station = ('kroc', 0.0046821562701757271) +zone = ('nyz003', 0.0041865545912586882) + +[fips3605534099] +centroid = (0.75143962375395246, -1.3550753765776495) +description = Henrietta town, NY +station = ('kroc', 0.0012197592694671913) +zone = ('nyz003', 0.0017574075700567131) + +[fips3605537726] +centroid = (0.75415347111446351, -1.3538877847414226) +description = Irondequoit town, NY +station = ('kroc', 0.0021563024206983561) +zone = ('nyz003', 0.0019259601453732915) + +[fips3605546558] +centroid = (0.75018565704627216, -1.3536009224255647) +description = Mendon town, NY +station = ('kroc', 0.0028528713800400288) +zone = ('nyz003', 0.0033742171968898058) + +[fips3605554474] +centroid = (0.75346310612883716, -1.3581171189447327) +description = Ogden town, NY +station = ('kroc', 0.0019130557856031289) +zone = ('nyz003', 0.0015648350469276218) + +[fips3605556561] +centroid = (0.75517998651402396, -1.3578617423685808) +description = Parma town, NY +station = ('kroc', 0.0030378207580945044) +zone = ('nyz003', 0.0025091769890931881) + +[fips3605557144] +centroid = (0.75313512385580239, -1.3516596974183264) +description = Penfield town, NY +station = ('kroc', 0.0031032674598619825) +zone = ('nyz003', 0.0032037560648677976) + +[fips3605557221] +centroid = (0.75185714141761462, -1.3514028198590178) +description = Perinton town, NY +station = ('kroc', 0.0033014845538330831) +zone = ('nyz014', 0.0042684315973115236) + +[fips3605558365] +centroid = (0.75176659373602117, -1.3530860852028115) +description = Pittsford town, NY +station = ('kroc', 0.002143350513626849) +zone = ('nyz003', 0.0025136577003540225) + +[fips3605561808] +centroid = (0.75184042116338046, -1.3591325340502505) +description = Riga town, NY +station = ('kroc', 0.0025075976203581675) +zone = ('nyz003', 0.0025537259263755871) + +[fips3605562] +centroid = (0.73890599551636071, -1.3633966352122604) +description = Belfast CDP, NY +station = ('kole', 0.0036913385497921152) +zone = ('nyz021', 0.0017942912534363363) + +[fips3605563000] +centroid = (0.75345736399559815, -1.3546703031115541) +description = Rochester city, NY +station = ('kroc', 0.0012569898625099864) +zone = ('nyz003', 0.0010864953888368573) + +[fips3605564144] +centroid = (0.74999117500772239, -1.3556520857223859) +description = Rush town, NY +station = ('kroc', 0.0025399488830237338) +zone = ('nyz003', 0.0030693155362871492) + +[fips3605572455] +centroid = (0.75357356801719599, -1.3600582217789232) +description = Sweden town, NY +station = ('kroc', 0.0032574111271188176) +zone = ('nyz003', 0.0029713198974817734) + +[fips3605578971] +centroid = (0.75451018150698612, -1.3516844810937048) +description = Webster town, NY +station = ('kroc', 0.0036152068349410119) +zone = ('nyz003', 0.0035027611816030313) + +[fips3605581402] +centroid = (0.75065181703618722, -1.3581442413613087) +description = Wheatland town, NY +station = ('kroc', 0.0025255149958857783) +zone = ('nyz003', 0.0028420481382119157) + +[fips3605639] +centroid = (0.71077257951785866, -1.286598622559421) +description = Bellerose village, NY +station = ('kjfk', 0.0017195593680564948) +zone = ('nyz178', 0.0014390862725936391) + +[fips3605661] +centroid = (0.71073554363113134, -1.2867465392135273) +description = Bellerose Terrace CDP, NY +station = ('kjfk', 0.0016446344801843919) +zone = ('nyz178', 0.0013358418250392248) + +[fips3605672] +centroid = (0.71489904401505633, -1.2752645067568471) +description = Belle Terre village, NY +station = ('kisp', 0.0028377616408601465) +zone = ('nyz078', 0.0019956895233518694) + +[fips3605683] +centroid = (0.76417831072536102, -1.3284907832106598) +description = Belleville CDP, NY +station = ('kart', 0.0036312190176286943) +zone = ('nyz007', 0.0051796955049997241) + +[fips36057] +centroid = (0.74876179998920267, -1.2991420770007012) +description = Montgomery County, NY +station = ('kalb', 0.0085487772582058513) +zone = ('nyz040', 6.0715429981532893e-05) + +[fips3605702066] +centroid = (0.74947216644805681, -1.294868900126581) +description = Amsterdam city, NY +station = ('ksch', 0.003656428063490653) +zone = ('nyz048', 0.0026821742483314035) + +[fips3605702077] +centroid = (0.74971609366431557, -1.2944422194843461) +description = Amsterdam town, NY +station = ('ksch', 0.0034998151190419628) +zone = ('nyz048', 0.0028925226575831384) + +[fips3605712122] +centroid = (0.74814177177243169, -1.3022753618870515) +description = Canajoharie town, NY +station = ('ksch', 0.0087238717515910075) +zone = ('nyz040', 0.0023312339099095399) + +[fips3605713816] +centroid = (0.74743318554941451, -1.2977530392622092) +description = Charleston town, NY +station = ('kalb', 0.0072372697798937305) +zone = ('nyz040', 0.0017274114298999109) + +[fips3605726308] +centroid = (0.74865882556333496, -1.2950521946046254) +description = Florida town, NY +station = ('ksch', 0.0035129256148789876) +zone = ('nyz048', 0.0019205097041542869) + +[fips3605729047] +centroid = (0.74876193961554283, -1.2976734871549032) +description = Glen town, NY +station = ('ksch', 0.0054181672242719402) +zone = ('nyz040', 0.0011315535980476611) + +[fips3605738] +centroid = (0.7096281671273259, -1.2832892164982519) +description = Bellmore CDP, NY +station = ('kfrg', 0.001957192338569723) +zone = ('nyz179', 0.00092973655388275348) + +[fips3605747614] +centroid = (0.74929503298227196, -1.3036998647159443) +description = Minden town, NY +station = ('krme', 0.010401076005840401) +zone = ('nyz038', 0.0043309205048428162) + +[fips3605747834] +centroid = (0.74972489012374566, -1.2985569728222626) +description = Mohawk town, NY +station = ('ksch', 0.0062691904458213148) +zone = ('nyz040', 0.0010559057348575236) + +[fips3605756099] +centroid = (0.74964010202868381, -1.3009115790628358) +description = Palatine town, NY +station = ('kalb', 0.010059857237834756) +zone = ('nyz040', 0.0015056151436990269) + +[fips3605763561] +centroid = (0.74775095764632504, -1.3000294372990002) +description = Root town, NY +station = ('kalb', 0.0089365107394949322) +zone = ('nyz040', 0.0011941047787608198) + +[fips3605764650] +centroid = (0.75056537087833597, -1.3034233347492583) +description = St. Johnsville town, NY +station = ('krme', 0.0099986466498714344) +zone = ('nyz040', 0.0035551387667821775) + +[fips3605771] +centroid = (0.71123825081558334, -1.2730662820172529) +description = Bellport village, NY +station = ('khwv', 0.0015129391616353727) +zone = ('nyz080', 0.0031927723792458994) + +[fips3605815] +centroid = (0.73687984278772045, -1.3618942732454362) +description = Belmont village, NY +station = ('kelz', 0.0021337512769681656) +zone = ('nyz021', 0.00065222763259606441) + +[fips3605848] +centroid = (0.73589093923354054, -1.3856058277708405) +description = Bemus Point village, NY +station = ('kjhw', 0.0016047737921974165) +zone = ('nyz019', 0.0011685499005829553) + +[fips36059] +centroid = (0.71086714145673169, -1.2843770453144348) +description = Nassau County, NY +station = ('utff', 0.0022819614409225033) +zone = ('nyz179', 0.0006916787722454677) + +[fips3605929113] +centroid = (0.71354751340218936, -1.2853454761564889) +description = Glen Cove city, NY +station = ('khpn', 0.0032824275010656136) +zone = ('nyz177', 0.0010694172995849109) + +[fips3605934000] +centroid = (0.70919637267038249, -1.2847211544297581) +description = Hempstead town, NY +station = ('kjfk', 0.0020870164408458161) +zone = ('nyz179', 0.0010396766495362824) + +[fips3605943335] +centroid = (0.70835645042115281, -1.2857038271585084) +description = Long Beach city, NY +station = ('kjfk', 0.0015771774296717382) +zone = ('nyz179', 0.0021208640294917468) + +[fips3605953000] +centroid = (0.71215292551667586, -1.2859307025079751) +description = North Hempstead town, NY +station = ('klga', 0.0027302941584609239) +zone = ('nyz177', 0.0011898857323189092) + +[fips3605956000] +centroid = (0.71205681023476852, -1.2830094576724496) +description = Oyster Bay town, NY +station = ('utff', 0.0016679593433214536) +zone = ('nyz177', 0.0013018533653300457) + +[fips3606046] +centroid = (0.75193323777300147, -1.3603525191973944) +description = Bergen village, NY +station = ('kroc', 0.0033553319196468236) +zone = ('nyz011', 0.0035058436673679398) + +[fips36061] +centroid = (0.71168517727714142, -1.2910230845731041) +description = New York County, NY +station = ('knyc', 0.00012702850917000732) +zone = ('nyz072', 6.0243310433646758e-05) + +[fips3606144919] +centroid = (0.71168517727714142, -1.2910230845731041) +description = Manhattan borough, NY +station = ('knyc', 0.00012702850917000732) +zone = ('nyz072', 6.0243310433646758e-05) + +[fips36063] +centroid = (0.75846303810348792, -1.3751823200522024) +description = Niagara County, NY +station = ('kiag', 0.0062003847167047934) +zone = ('nyz001', 0.0045058996817638874) + +[fips3606300000] +centroid = (0.75846303810348792, -1.3751823200522024) +description = County subdivisions not defined, NY +station = ('kiag', 0.0062003847167047934) +zone = ('nyz001', 0.0045058996817638874) + +[fips3606311803] +centroid = (0.75357363783036602, -1.375672897198353) +description = Cambria town, NY +station = ('kiag', 0.0017797094205454517) +zone = ('nyz001', 0.0010779246675311268) + +[fips3606332490] +centroid = (0.75499695383536736, -1.3710377564906615) +description = Hartland town, NY +station = ('kbuf', 0.0061090919436494265) +zone = ('nyz001', 0.0025876539980113221) + +[fips3606342158] +centroid = (0.7537055847218167, -1.3779621583117314) +description = Lewiston town, NY +station = ('kiag', 0.0012000842322576176) +zone = ('nyz001', 0.0026747506893874447) + +[fips3606343082] +centroid = (0.75344896896189606, -1.3735013934496065) +description = Lockport city, NY +station = ('kiag', 0.0031616808640117329) +zone = ('nyz001', 0.00081112035101023219) + +[fips3606343093] +centroid = (0.75309646481287063, -1.3733794298414774) +description = Lockport town, NY +station = ('kbuf', 0.0038109289169692417) +zone = ('nyz001', 0.0011337364726925997) + +[fips3606350232] +centroid = (0.75555622714087645, -1.3734488764924142) +description = Newfane town, NY +station = ('kiag', 0.0043050866248063252) +zone = ('nyz001', 0.0016781633126990944) + +[fips3606351033] +centroid = (0.75250649116581902, -1.3784781474517911) +description = Niagara town, NY +station = ('kiag', 0.00060741100844091439) +zone = ('nyz001', 0.0033843095660789726) + +[fips3606351055] +centroid = (0.75211195948840581, -1.3790674229671418) +description = Niagara Falls city, NY +station = ('kiag', 0.001117623657536861) +zone = ('nyz001', 0.0039482038995336879) + +[fips3606353682] +centroid = (0.75134952985796455, -1.3765625438779721) +description = North Tonawanda city, NY +station = ('kiag', 0.0014195563138963022) +zone = ('nyz010', 0.0030024970646237662) + +[fips3606357111] +centroid = (0.75230897225437088, -1.3746977293853861) +description = Pendleton town, NY +station = ('kiag', 0.0021638489853774696) +zone = ('nyz001', 0.0017152351744541912) + +[fips3606359267] +centroid = (0.7549925206990673, -1.3782906467302491) +description = Porter town, NY +station = ('kiag', 0.0025090657539927979) +zone = ('nyz001', 0.0030609624511789822) + +[fips3606364034] +centroid = (0.75314133722793952, -1.3710313162257219) +description = Royalton town, NY +station = ('kbuf', 0.0044447840306560587) +zone = ('nyz001', 0.002545013481447843) + +[fips3606368330] +centroid = (0.75635127697503735, -1.3709230709055131) +description = Somerset town, NY +station = ('kiag', 0.0062145060240241089) +zone = ('nyz001', 0.0034095479686305457) + +[fips3606375011] +centroid = (0.75204293171648939, -1.3696859815316995) +description = Tonawanda Reservation, NY +station = ('kbuf', 0.0042489724374413333) +zone = ('nyz010', 0.0038098102746974894) + +[fips3606375748] +centroid = (0.75333442300308762, -1.3779525415475529) +description = Tuscarora Nation Reservation, NY +station = ('kiag', 0.00083695792411767804) +zone = ('nyz001', 0.0027343904227164141) + +[fips3606381380] +centroid = (0.75215655265079429, -1.3768095254204218) +description = Wheatfield town, NY +station = ('kiag', 0.00071503468448272487) +zone = ('nyz001', 0.0025910489996782645) + +[fips3606382370] +centroid = (0.75525060253555965, -1.3755453485366174) +description = Wilson town, NY +station = ('kiag', 0.0031241366782895222) +zone = ('nyz001', 0.0015371049977194664) + +[fips3606387] +centroid = (0.71121325770069466, -1.2825645557928238) +description = Bethpage CDP, NY +station = ('utff', 0.0009457781563754345) +zone = ('nyz179', 0.0016585905470084354) + +[fips3606464] +centroid = (0.73589394119985396, -1.3423107191069712) +description = Big Flats CDP, NY +station = ('kelm', 0.00012495627968857318) +zone = ('nyz024', 0.0019635834614832397) + +[fips36065] +centroid = (0.75472796369105, -1.3165765897778932) +description = Oneida County, NY +station = ('krme', 0.00046570787689165379) +zone = ('nyz037', 0.0021703576554759499) + +[fips3606502253] +centroid = (0.75651717052043943, -1.3197254604544637) +description = Annsville town, NY +station = ('krme', 0.0033547843825606437) +zone = ('nyz009', 0.0019505290640678785) + +[fips3606503155] +centroid = (0.75009217721153532, -1.3177636231087597) +description = Augusta town, NY +station = ('krme', 0.0046579405712019375) +zone = ('nyz036', 0.0024146397496351037) + +[fips3606503309] +centroid = (0.7577224076354041, -1.3166981694135871) +description = Ava town, NY +station = ('krme', 0.0032015223251385541) +zone = ('nyz009', 0.0006762402396561126) + +[fips3606507366] +centroid = (0.75850534488455634, -1.3139723490944075) +description = Boonville town, NY +station = ('krme', 0.0042026168116895196) +zone = ('nyz009', 0.0027009015764838415) + +[fips3606508180] +centroid = (0.74881904678866806, -1.3136243653481448) +description = Bridgewater town, NY +station = ('krme', 0.0059968017161990336) +zone = ('nyz037', 0.0041783341548620413) + +[fips3606511858] +centroid = (0.75651460488643907, -1.3225118436986878) +description = Camden town, NY +station = ('krme', 0.0051402799547494021) +zone = ('nyz009', 0.003923179330690911) + +[fips3606519928] +centroid = (0.753721973363493, -1.3116347249074563) +description = Deerfield town, NY +station = ('krme', 0.0032758872315427059) +zone = ('nyz038', 0.0029780022409379042) + +[fips3606526297] +centroid = (0.7578030593001388, -1.32190783760445) +description = Florence town, NY +station = ('krme', 0.0053942472012745886) +zone = ('nyz009', 0.0034929985495967446) + +[fips3606526385] +centroid = (0.75467953080430716, -1.3146532543954881) +description = Floyd town, NY +station = ('krme', 0.00097219169022021168) +zone = ('nyz037', 0.0023433425316440899) + +[fips3606526627] +centroid = (0.75914968553780759, -1.3115768672427526) +description = Forestport town, NY +station = ('krme', 0.005591693509871396) +zone = ('nyz032', 0.0043789143291578609) + +[fips3606539804] +centroid = (0.75113265524511175, -1.3157077997828355) +description = Kirkland town, NY +station = ('krme', 0.0034370292881504912) +zone = ('nyz037', 0.0014808521710738009) + +[fips3606541762] +centroid = (0.75616670840663902, -1.3180478499774468) +description = Lee town, NY +station = ('krme', 0.0021997269969219269) +zone = ('nyz009', 0.0011630719146797622) + +[fips3606545535] +centroid = (0.75350422608601419, -1.3136698486284517) +description = Marcy town, NY +station = ('krme', 0.0019886027857057781) +zone = ('nyz037', 0.0019947481164576367) + +[fips3606545755] +centroid = (0.74991781881926112, -1.3157374703801195) +description = Marshall town, NY +station = ('krme', 0.0046495196080770492) +zone = ('nyz037', 0.0026810569785114878) + +[fips3606550309] +centroid = (0.75150109425020784, -1.3139153291877448) +description = New Hartford town, NY +station = ('krme', 0.0034127614588022486) +zone = ('nyz037', 0.0019275118215122151) + +[fips3606556330] +centroid = (0.75000508528186083, -1.3136778596897185) +description = Paris town, NY +station = ('krme', 0.0048584792993099039) +zone = ('nyz037', 0.0031283157807204432) + +[fips3606561126] +centroid = (0.75688272973226967, -1.3115426413361211) +description = Remsen town, NY +station = ('krme', 0.0039745765631062982) +zone = ('nyz038', 0.0053616596607754148) + +[fips3606563418] +centroid = (0.754457542376746, -1.3175789323673137) +description = Rome city, NY +station = ('krme', 0.0011711133895531596) +zone = ('nyz037', 0.0021612230029398362) + +[fips3606565134] +centroid = (0.74859976362144753, -1.3156330298776799) +description = Sangerfield town, NY +station = ('krme', 0.0059695804727422121) +zone = ('nyz036', 0.0037195593512723188) + +[fips3606566993] +centroid = (0.75172097082937395, -1.3194552311263774) +description = Sherrill city, NY +station = ('krme', 0.0038101482190456616) +zone = ('nyz036', 0.0028930654168232632) + +[fips3606571212] +centroid = (0.7566483669203119, -1.3136042242485766) +description = Steuben town, NY +station = ('krme', 0.0027074615223467019) +zone = ('nyz009', 0.0026510830850731315) + +[fips3606574] +centroid = (0.74673966151784199, -1.3722922118905325) +description = Billington Heights CDP, NY +station = ('kbuf', 0.0029267634642287915) +zone = ('nyz010', 0.0027908574485874375) + +[fips3606575280] +centroid = (0.75503229675272032, -1.3125989145994281) +description = Trenton town, NY +station = ('krme', 0.0025056920956234635) +zone = ('nyz037', 0.0035339552354914038) + +[fips3606576540] +centroid = (0.75217376159721883, -1.3129410863992814) +description = Utica city, NY +station = ('krme', 0.0032589478735391615) +zone = ('nyz037', 0.0023405599149614385) + +[fips3606577123] +centroid = (0.75164229138669403, -1.3182418084172209) +description = Vernon town, NY +station = ('krme', 0.0033561346689176823) +zone = ('nyz037', 0.0018285998752626607) + +[fips3606577178] +centroid = (0.75327792669520066, -1.3199499097962704) +description = Verona town, NY +station = ('krme', 0.0031681572963787427) +zone = ('nyz037', 0.0028953622951771161) + +[fips3606577486] +centroid = (0.75454131818084169, -1.3224434442453019) +description = Vienna town, NY +station = ('krme', 0.0047104448939375033) +zone = ('nyz009', 0.0046285717308258379) + +[fips3606579862] +centroid = (0.75660078924490248, -1.3161652680330755) +description = Western town, NY +station = ('krme', 0.002041319476581629) +zone = ('nyz009', 0.00092113878558451742) + +[fips3606580533] +centroid = (0.75264999213691808, -1.3167789781579544) +description = Westmoreland town, NY +station = ('krme', 0.0020011056668336243) +zone = ('nyz037', 0.0005019215199676037) + +[fips3606581754] +centroid = (0.75286068828421882, -1.3148596919394138) +description = Whitestown town, NY +station = ('krme', 0.0018885249544103259) +zone = ('nyz037', 0.0009438431585951305) + +[fips3606607] +centroid = (0.73480684542195684, -1.3248684221613154) +description = Binghamton city, NY +station = ('kbgm', 0.0019701777458287638) +zone = ('nyz056', 0.0015510536589871764) + +[fips3606644] +centroid = (0.7345940897861386, -1.3258996848564415) +description = Binghamton University CDP, NY +station = ('kbgm', 0.0019444094006383966) +zone = ('nyz056', 0.0022915410822123548) + +[fips36067] +centroid = (0.75060554835771687, -1.3298731188848243) +description = Onondaga County, NY +station = ('ksyr', 0.0022797521952009321) +zone = ('nyz018', 2.3177830584801188e-05) + +[fips3606711913] +centroid = (0.75165389782621983, -1.3319212278554544) +description = Camillus town, NY +station = ('ksyr', 0.002857616690169742) +zone = ('nyz018', 0.0018507469826303834) + +[fips3606715704] +centroid = (0.75349602303852981, -1.3274319617666446) +description = Cicero town, NY +station = ('ksyr', 0.0011170838188864181) +zone = ('nyz018', 0.0033968108414370009) + +[fips3606716067] +centroid = (0.75361044682429046, -1.3298032533548669) +description = Clay town, NY +station = ('ksyr', 0.0015962368784208502) +zone = ('nyz018', 0.0030178057095386489) + +[fips3606720478] +centroid = (0.75143215374475392, -1.3277032906521598) +description = De Witt town, NY +station = ('ksyr', 0.0011531212579536196) +zone = ('nyz018', 0.0017774479117454263) + +[fips3606723800] +centroid = (0.75141030222251903, -1.3340830973867297) +description = Elbridge town, NY +station = ('kfzy', 0.005235199367495804) +zone = ('nyz005', 0.0030821053068333924) + +[fips3606724878] +centroid = (0.74734560492754942, -1.3261912770145721) +description = Fabius town, NY +station = ('ksyr', 0.0053857215088865895) +zone = ('nyz044', 0.0040714002805056059) + +[fips3606728519] +centroid = (0.75182966993518818, -1.3303692636312885) +description = Geddes town, NY +station = ('ksyr', 0.0017339887016606023) +zone = ('nyz018', 0.001294498202062672) + +[fips3606740266] +centroid = (0.74887978424663748, -1.3282536453251912) +description = LaFayette town, NY +station = ('ksyr', 0.0036482588019177541) +zone = ('nyz018', 0.0020721213788802931) + +[fips3606744039] +centroid = (0.75370602105412976, -1.3329764539212103) +description = Lysander town, NY +station = ('kfzy', 0.0028966785390579781) +zone = ('nyz018', 0.0038620457928631993) + +[fips3606745029] +centroid = (0.75141456082589386, -1.3261139589287088) +description = Manlius town, NY +station = ('ksyr', 0.0018842923000041245) +zone = ('nyz018', 0.0028496619553474425) + +[fips3606745491] +centroid = (0.74949110327044111, -1.3320932998664086) +description = Marcellus town, NY +station = ('ksyr', 0.0041640957736282479) +zone = ('nyz018', 0.0019788371763984204) + +[fips3606754958] +centroid = (0.7501563529681311, -1.3303490527185506) +description = Onondaga town, NY +station = ('ksyr', 0.0028461051105861022) +zone = ('nyz018', 0.00057055582468293982) + +[fips3606754980] +centroid = (0.74920890098368598, -1.3291244948087662) +description = Onondaga Nation Reservation, NY +station = ('ksyr', 0.0033876678320166088) +zone = ('nyz018', 0.0014813647760119101) + +[fips3606755651] +centroid = (0.74808904537572884, -1.3304214664292158) +description = Otisco town, NY +station = ('ksyr', 0.0047279522223451992) +zone = ('nyz018', 0.0025388854731381596) + +[fips3606759036] +centroid = (0.74909737444448365, -1.3262347531662393) +description = Pompey town, NY +station = ('ksyr', 0.0037179340899878778) +zone = ('nyz018', 0.0030368747907358199) + +[fips3606764815] +centroid = (0.75232005509512112, -1.3294407659225203) +description = Salina town, NY +station = ('ksyr', 0.00093247775970787584) +zone = ('nyz018', 0.0017525236785494855) + +[fips3606767521] +centroid = (0.74856545044835321, -1.3336375846418658) +description = Skaneateles town, NY +station = ('ksyr', 0.0056159784807622804) +zone = ('nyz017', 0.0021628785713541485) + +[fips3606770057] +centroid = (0.74751928264141543, -1.3314982124046486) +description = Spafford town, NY +station = ('ksyr', 0.0055609746341651178) +zone = ('nyz018', 0.0033029433904601876) + +[fips3606773000] +centroid = (0.75120712844429438, -1.3289557214700982) +description = Syracuse city, NY +station = ('ksyr', 0.0014326357859012781) +zone = ('nyz018', 0.00089533289765222131) + +[fips3606775638] +centroid = (0.74714684683233223, -1.3288419260028683) +description = Tully town, NY +station = ('ksyr', 0.0054016986607193819) +zone = ('nyz018', 0.0035236644177580032) + +[fips3606776760] +centroid = (0.75258482154264861, -1.3326428167813991) +description = Van Buren town, NY +station = ('kfzy', 0.004031757030801479) +zone = ('nyz018', 0.0028533401496973333) + +[fips3606794] +centroid = (0.76811111348875738, -1.3228978407160588) +description = Black River village, NY +station = ('kgtb', 0.0010614094768387743) +zone = ('nyz007', 0.0015287813308094251) + +[fips3606849] +centroid = (0.74694028711535876, -1.3758849721557629) +description = Blasdell village, NY +station = ('kbuf', 0.0027032288082939563) +zone = ('nyz010', 0.0030439854574616457) + +[fips3606860] +centroid = (0.71677632015850146, -1.2907578119800935) +description = Blauvelt CDP, NY +station = ('khpn', 0.0033552471219811435) +zone = ('nyz069', 0.001734541862124579) + +[fips36069] +centroid = (0.74799043427299128, -1.3491967062312045) +description = Ontario County, NY +station = ('kpeo', 0.0048528343004860617) +zone = ('nyz014', 7.9788482961965941e-05) + +[fips3606904] +centroid = (0.7431636040535532, -1.3657855022660499) +description = Bliss CDP, NY +station = ('kole', 0.0062253573070419569) +zone = ('nyz012', 0.0021649371793371181) + +[fips3606908378] +centroid = (0.74714246605590973, -1.3513315755189514) +description = Bristol town, NY +station = ('kdsv', 0.0056304539160033674) +zone = ('nyz014', 0.0017898844850019566) + +[fips3606912100] +centroid = (0.74557901756526579, -1.3536526888911788) +description = Canadice town, NY +station = ('kdsv', 0.0033383048390502991) +zone = ('nyz013', 0.0027849705772568915) + +[fips3606912144] +centroid = (0.7485542454345554, -1.3487960484481167) +description = Canandaigua city, NY +station = ('kpeo', 0.0051095919807332621) +zone = ('nyz014', 0.00067752498924551069) + +[fips3606912155] +centroid = (0.74807661863145469, -1.3493871391058898) +description = Canandaigua town, NY +station = ('kpeo', 0.0050105532628994011) +zone = ('nyz014', 0.00023899365302129641) + +[fips3606921699] +centroid = (0.74873657998151133, -1.3512753410104523) +description = East Bloomfield town, NY +station = ('kroc', 0.0050463914657764035) +zone = ('nyz014', 0.0017657290278806374) + +[fips3606925406] +centroid = (0.75030753338793887, -1.3492909889173972) +description = Farmington town, NY +station = ('kroc', 0.0052688000639460096) +zone = ('nyz014', 0.0023860345162411635) + +[fips3606928640] +centroid = (0.74816606675561936, -1.3436691961302611) +description = Geneva city, NY +station = ('kpeo', 0.0038694653451505313) +zone = ('nyz016', 0.0025665816267107901) + +[fips3606928651] +centroid = (0.74758255082680014, -1.3439992727983983) +description = Geneva town, NY +station = ('kpeo', 0.0032501021168467024) +zone = ('nyz016', 0.0025004230679330918) + +[fips3606929531] +centroid = (0.74695091617050335, -1.3473446850020359) +description = Gorham town, NY +station = ('kpeo', 0.0031866896056389994) +zone = ('nyz014', 0.0016350582937126323) + +[fips3606935551] +centroid = (0.74863268053114007, -1.347322362240903) +description = Hopewell town, NY +station = ('kpeo', 0.0046426033818306178) +zone = ('nyz014', 0.0015061914861897448) + +[fips3606937] +centroid = (0.7429258553028466, -1.328769302852693) +description = Blodgett Mills CDP, NY +station = ('kith', 0.0043895335684454827) +zone = ('nyz044', 0.00094650031552256074) + +[fips3606944864] +centroid = (0.75026547095296592, -1.3472920458717956) +description = Manchester town, NY +station = ('kpeo', 0.006165210943220813) +zone = ('nyz014', 0.0027027773030588618) + +[fips3606945] +centroid = (0.74873111710095253, -1.3513063555112601) +description = Bloomfield village, NY +station = ('kroc', 0.0050355751167508395) +zone = ('nyz014', 0.0017834647895004889) + +[fips3606949440] +centroid = (0.74393880949411917, -1.3514520905038019) +description = Naples town, NY +station = ('kpeo', 0.0049312064268461752) +zone = ('nyz014', 0.0043332309600949796) + +[fips3606957529] +centroid = (0.749742692482116, -1.344765786499289) +description = Phelps town, NY +station = ('kpeo', 0.0053597719401622885) +zone = ('nyz004', 0.0034915910567075653) + +[fips3606959] +centroid = (0.72527935483470762, -1.299266100097348) +description = Bloomingburg village, NY +station = ('kmgj', 0.0023943501931151467) +zone = ('nyz067', 0.0032181559714514951) + +[fips3606961544] +centroid = (0.7468645747324073, -1.3530564146055275) +description = Richmond town, NY +station = ('kdsv', 0.0046451340789556324) +zone = ('nyz013', 0.0034050547076292844) + +[fips3606966289] +centroid = (0.74757893799524855, -1.3451886274171698) +description = Seneca town, NY +station = ('kpeo', 0.0032103338717823656) +zone = ('nyz014', 0.0029148259734422858) + +[fips3606968660] +centroid = (0.74517144827834014, -1.3509756505245922) +description = South Bristol town, NY +station = ('kpeo', 0.0046257841698845873) +zone = ('nyz014', 0.0030661208332821155) + +[fips3606977387] +centroid = (0.75030282099895851, -1.3513756450825645) +description = Victor town, NY +station = ('kroc', 0.0039426627436690009) +zone = ('nyz014', 0.0028892276076410931) + +[fips3606979356] +centroid = (0.74860657040553036, -1.3526528246692964) +description = West Bloomfield town, NY +station = ('kroc', 0.0045578850745635457) +zone = ('nyz014', 0.0026661606990905778) + +[fips3607025] +centroid = (0.73887459704311731, -1.3059038141354853) +description = Bloomville CDP, NY +station = ('kmsv', 0.011076237178113336) +zone = ('nyz057', 0.0030160148008473043) + +[fips3607069] +centroid = (0.71124812937914961, -1.2747158974130679) +description = Blue Point CDP, NY +station = ('kisp', 0.0011979718798312607) +zone = ('nyz080', 0.0019431815208896738) + +[fips36071] +centroid = (0.72260837276062551, -1.2968887522166215) +description = Orange County, NY +station = ('kmgj', 0.0020602772400015968) +zone = ('nyz067', 9.289257679418356e-06) + +[fips3607107003] +centroid = (0.72249056303611592, -1.2947600613944266) +description = Blooming Grove town, NY +station = ('kswf', 0.0021288938329322889) +zone = ('nyz067', 0.0015923410487269341) + +[fips3607115308] +centroid = (0.7213487511861687, -1.2963768995068892) +description = Chester town, NY +station = ('kmgj', 0.0032565450852337545) +zone = ('nyz067', 0.001310917955017281) + +[fips3607118300] +centroid = (0.72281378056029266, -1.2926136031204465) +description = Cornwall town, NY +station = ('kswf', 0.0015810688159692884) +zone = ('nyz067', 0.0032047237270740321) + +[fips3607118916] +centroid = (0.72555691454565219, -1.2970534240315472) +description = Crawford town, NY +station = ('kmgj', 0.0011493025890926079) +zone = ('nyz067', 0.0029551512220933542) + +[fips3607119961] +centroid = (0.72330603322252518, -1.303007422788508) +description = Deerpark town, NY +station = ('kfwn', 0.0042415741436529295) +zone = ('nyz062', 0.0049982791953981582) + +[fips3607129553] +centroid = (0.7222347850342361, -1.2976954259436007) +description = Goshen town, NY +station = ('kmgj', 0.0026203444798678804) +zone = ('nyz067', 0.00071657710237473232) + +[fips3607130631] +centroid = (0.72210056921475774, -1.3019989540934134) +description = Greenville town, NY +station = ('kfwn', 0.0030581593098503411) +zone = ('njz001', 0.0042541731721456215) + +[fips3607131907] +centroid = (0.72342736851212375, -1.2958153223667674) +description = Hamptonburgh town, NY +station = ('kmgj', 0.0012095973869757626) +zone = ('nyz067', 0.0011449575837973658) + +[fips3607134550] +centroid = (0.72204035535556388, -1.2916463591022838) +description = Highlands town, NY +station = ('kswf', 0.0025836560483868875) +zone = ('nyz069', 0.0037942868519916296) + +[fips3607147042] +centroid = (0.72335034713223334, -1.2989363899483539) +description = Middletown city, NY +station = ('kmgj', 0.0024035828813311682) +zone = ('nyz067', 0.0017145560267685439) + +[fips3607147713] +centroid = (0.7212406978521777, -1.300989228761257) +description = Minisink town, NY +station = ('kfwn', 0.0024796719594618213) +zone = ('njz001', 0.0037697746261770399) + +[fips3607147999] +centroid = (0.72089363913041871, -1.2949496390577784) +description = Monroe town, NY +station = ('kswf', 0.003637904064367951) +zone = ('nyz067', 0.0022409201216699285) + +[fips3607148153] +centroid = (0.72500683912530106, -1.295202188200542) +description = Montgomery town, NY +station = ('kmgj', 0.00084797966220011224) +zone = ('nyz067', 0.0027103064830413422) + +[fips3607148857] +centroid = (0.72356561604217429, -1.3007373602969017) +description = Mount Hope town, NY +station = ('kmgj', 0.0035551449229001423) +zone = ('nyz067', 0.0030494461783340423) + +[fips3607150034] +centroid = (0.72436834532504402, -1.2918864291408956) +description = Newburgh city, NY +station = ('kswf', 0.0010519483874590169) +zone = ('nyz067', 0.0041356260827425263) + +[fips3607150045] +centroid = (0.72531347602158402, -1.292542725299523) +description = Newburgh town, NY +station = ('kswf', 0.0011470736745872766) +zone = ('nyz067', 0.0042288849381243668) + +[fips3607150848] +centroid = (0.72386741837642909, -1.293479600588701) +description = New Windsor town, NY +station = ('kswf', 0.00046660865587653004) +zone = ('nyz067', 0.0028430029311583335) + +[fips3607157] +centroid = (0.71168762073809422, -1.2764440526252225) +description = Bohemia CDP, NY +station = ('kisp', 0.0006144762778637372) +zone = ('nyz080', 0.00078353500788690567) + +[fips3607159388] +centroid = (0.72217788730062105, -1.3036681346301431) +description = Port Jervis city, NY +station = ('kfwn', 0.003204863894869717) +zone = ('njz001', 0.0041603206270304635) + +[fips3607175781] +centroid = (0.71980879482725657, -1.2945401673619679) +description = Tuxedo town, NY +station = ('kswf', 0.0045996994945590548) +zone = ('nyz069', 0.0024850176296062326) + +[fips3607177992] +centroid = (0.72412598890511204, -1.298533550503701) +description = Wallkill town, NY +station = ('kmgj', 0.001812997637311765) +zone = ('nyz067', 0.0019635359579043945) + +[fips3607178366] +centroid = (0.72011611240194762, -1.2979134350204675) +description = Warwick town, NY +station = ('kfwn', 0.0036731195781145197) +zone = ('nyz067', 0.0026073682915473766) + +[fips3607178839] +centroid = (0.72226840007562954, -1.2997062895879936) +description = Wawayanda town, NY +station = ('kmgj', 0.0035161682672690828) +zone = ('nyz067', 0.0021487260238972289) + +[fips3607182755] +centroid = (0.72130588589973965, -1.2933219799039533) +description = Woodbury town, NY +station = ('kswf', 0.0030058555866466579) +zone = ('nyz067', 0.0029676858793498289) + +[fips3607190] +centroid = (0.73423224812561527, -1.3642579726514121) +description = Bolivar village, NY +station = ('kelz', 0.0022225989336093995) +zone = ('nyz021', 0.0037545215682900776) + +[fips3607245] +centroid = (0.76030357506617852, -1.2855576907402391) +description = Bolton Landing CDP, NY +station = ('kgfl', 0.0040268439206901504) +zone = ('nyz042', 0.002696194479869692) + +[fips36073] +centroid = (0.75925814029752647, -1.3653662916330136) +description = Orleans County, NY +station = ('cwnc', 0.0078544375465134306) +zone = ('nyz002', 0.0043648816192774255) + +[fips3607300000] +centroid = (0.75925814029752647, -1.3653662916330136) +description = County subdivisions not defined, NY +station = ('cwnc', 0.0078544375465134306) +zone = ('nyz002', 0.0043648816192774255) + +[fips3607301044] +centroid = (0.75444200894640323, -1.3650113091164506) +description = Albion town, NY +station = ('kroc', 0.0069642775241467465) +zone = ('nyz002', 0.00052970110300666292) + +[fips3607304572] +centroid = (0.7536161715042371, -1.3650463029679529) +description = Barre town, NY +station = ('kroc', 0.0068116796632657177) +zone = ('nyz002', 0.0013017423348814867) + +[fips3607312496] +centroid = (0.75642405720484551, -1.3649957058729376) +description = Carlton town, NY +station = ('kroc', 0.0077319006149860793) +zone = ('nyz002', 0.0015576974141554313) + +[fips3607315880] +centroid = (0.75353546747962485, -1.3623401001495656) +description = Clarendon town, NY +station = ('kroc', 0.0048556413553043788) +zone = ('nyz002', 0.0026059672889141056) + +[fips3607327958] +centroid = (0.7553044808495688, -1.3648134411391517) +description = Gaines town, NY +station = ('kroc', 0.0071133964845650401) +zone = ('nyz002', 0.00058871274386042326) + +[fips3607339188] +centroid = (0.75623570127197026, -1.3622584885537423) +description = Kendall town, NY +station = ('kroc', 0.0059743216897058049) +zone = ('nyz002', 0.0026465648604398037) + +[fips3607349286] +centroid = (0.75500273087519154, -1.3623540802368741) +description = Murray town, NY +station = ('kroc', 0.0053621786855665311) +zone = ('nyz002', 0.0022152558747485585) + +[fips3607355] +centroid = (0.75888420350528674, -1.3147501725288511) +description = Boonville village, NY +station = ('krme', 0.0044115026570203013) +zone = ('nyz009', 0.0024796414001612313) + +[fips3607361742] +centroid = (0.75507114778186968, -1.3679322223394181) +description = Ridgeway town, NY +station = ('kbuf', 0.0073236095985474712) +zone = ('nyz002', 0.001858518505989247) + +[fips3607366751] +centroid = (0.75351696698955373, -1.3681079420885087) +description = Shelby town, NY +station = ('kbuf', 0.0060891527475496442) +zone = ('nyz002', 0.0024108808127639701) + +[fips3607383448] +centroid = (0.75641632539625925, -1.3681336682416831) +description = Yates town, NY +station = ('kbuf', 0.0083400296336019093) +zone = ('nyz002', 0.0025102526338717486) + +[fips36075] +centroid = (0.758545278017842, -1.3301024726018289) +description = Oswego County, NY +station = ('kfzy', 0.0029419731497460572) +zone = ('nyz006', 0.0010613412937020197) + +[fips3607500000] +centroid = (0.76088925520327022, -1.3341870142903935) +description = County subdivisions not defined, NY +station = ('kfzy', 0.0043557231012642189) +zone = ('nyz006', 0.0048371400588265411) + +[fips3607501055] +centroid = (0.75903133476122975, -1.3269898175072372) +description = Albion town, NY +station = ('kfzy', 0.0050862192028524019) +zone = ('nyz006', 0.0017811255585847374) + +[fips3607501649] +centroid = (0.75707379092548555, -1.3250267060711787) +description = Amboy town, NY +station = ('ksyr', 0.0050984224998350241) +zone = ('nyz006', 0.0029507460861097757) + +[fips3607507674] +centroid = (0.76197446602557539, -1.3256381123614449) +description = Boylston town, NY +station = ('kart', 0.0057678725356187519) +zone = ('nyz006', 0.0046931242582032373) + +[fips3607517904] +centroid = (0.75500918859342381, -1.3258172704091622) +description = Constantia town, NY +station = ('ksyr', 0.0030272467423731186) +zone = ('nyz006', 0.003685916053790368) + +[fips3607527815] +centroid = (0.7557940107981681, -1.3334183189279376) +description = Fulton city, NY +station = ('kfzy', 0.00083113638656178432) +zone = ('nyz005', 0.0034542273537703947) + +[fips3607529729] +centroid = (0.75554968215618146, -1.3341592461019942) +description = Granby town, NY +station = ('kfzy', 0.0012856191156788784) +zone = ('nyz005', 0.0028871734362047445) + +[fips3607532028] +centroid = (0.75591810370798496, -1.3360468022347336) +description = Hannibal town, NY +station = ('kfzy', 0.0022212799006930141) +zone = ('nyz005', 0.0024446802118606417) + +[fips3607532688] +centroid = (0.75608338638814876, -1.3291835218440686) +description = Hastings town, NY +station = ('kfzy', 0.0029242658164758194) +zone = ('nyz006', 0.0018536278665501247) + +[fips3607546822] +centroid = (0.75843390855827209, -1.3300216638574613) +description = Mexico town, NY +station = ('kfzy', 0.002915051824824634) +zone = ('nyz006', 0.00095045984096899666) + +[fips3607547691] +centroid = (0.75745074713733118, -1.3348507280983419) +description = Minetto town, NY +station = ('kfzy', 0.0015061441260615421) +zone = ('nyz005', 0.0041851868587882909) + +[fips3607550342] +centroid = (0.75872262092313703, -1.3319927339949087) +description = New Haven town, NY +station = ('kfzy', 0.00228033713169066) +zone = ('nyz006', 0.0023721820288882555) + +[fips3607555453] +centroid = (0.76031484989314646, -1.3256394213583838) +description = Orwell town, NY +station = ('kfzy', 0.0065914849680486689) +zone = ('nyz006', 0.0033687689327163263) + +[fips3607555574] +centroid = (0.75848609390290678, -1.335241262971768) +description = Oswego city, NY +station = ('kfzy', 0.0024260235338661035) +zone = ('nyz006', 0.0046275108241710522) + +[fips3607555585] +centroid = (0.75751553375916525, -1.3361374546360822) +description = Oswego town, NY +station = ('kfzy', 0.0023627412658339159) +zone = ('nyz005', 0.0039840973494529195) + +[fips3607556154] +centroid = (0.75690311517793296, -1.3309792911114455) +description = Palermo town, NY +station = ('kfzy', 0.0016003894026068144) +zone = ('nyz006', 0.0018161250239335776) + +[fips3607556352] +centroid = (0.75753333611753559, -1.3274283489350933) +description = Parish town, NY +station = ('kfzy', 0.0042555707140158241) +zone = ('nyz006', 0.0011490580591004024) + +[fips3607560873] +centroid = (0.76074172252159922, -1.3234633099404125) +description = Redfield town, NY +station = ('kart', 0.0073767850912290749) +zone = ('nyz006', 0.0048535629729219978) + +[fips3607561533] +centroid = (0.76004776215771364, -1.3290810884702693) +description = Richland town, NY +station = ('kfzy', 0.0045355776772164329) +zone = ('nyz006', 0.0021245163995006521) + +[fips3607565079] +centroid = (0.76149945721635248, -1.3286069348723799) +description = Sandy Creek town, NY +station = ('kfzy', 0.0059009316824388423) +zone = ('nyz006', 0.0035797347422713301) + +[fips3607565618] +centroid = (0.75498737197777388, -1.3312747753538083) +description = Schroeppel town, NY +station = ('kfzy', 0.0021083365907950341) +zone = ('nyz006', 0.0034037885293011646) + +[fips3607565992] +centroid = (0.75847207890901325, -1.3337756052791134) +description = Scriba town, NY +station = ('kfzy', 0.0019278536743571428) +zone = ('nyz006', 0.0035713189355838205) + +[fips3607577662] +centroid = (0.75678209404759966, -1.3329020854417828) +description = Volney town, NY +station = ('kfzy', 0.0002513290553907591) +zone = ('nyz006', 0.0031153813133022313) + +[fips3607580500] +centroid = (0.75582575833726184, -1.3280058783845781) +description = West Monroe town, NY +station = ('ksyr', 0.0033008588297775824) +zone = ('nyz006', 0.0022023482273765024) + +[fips3607582073] +centroid = (0.75843493830253084, -1.3244942933828581) +description = Williamstown town, NY +station = ('ksyr', 0.0064925756323153073) +zone = ('nyz006', 0.0032495510606506402) + +[fips36077] +centroid = (0.7440299505876582, -1.3095003094053148) +description = Otsego County, NY +station = ('krme', 0.011552541485958667) +zone = ('nyz046', 8.5219605404579087e-05) + +[fips3607711209] +centroid = (0.74555788162802417, -1.3115211039731514) +description = Burlington town, NY +station = ('krme', 0.0095783440241650544) +zone = ('nyz046', 0.0020472371611674925) + +[fips3607711528] +centroid = (0.74123464871095657, -1.3145977180186896) +description = Butternuts town, NY +station = ('kbgm', 0.009756399740698184) +zone = ('nyz046', 0.004685225381139543) + +[fips3607715253] +centroid = (0.74715665558272848, -1.3041456567134888) +description = Cherry Valley town, NY +station = ('krme', 0.01138878041063456) +zone = ('nyz040', 0.0039630292751687028) + +[fips3607719895] +centroid = (0.74450677453930314, -1.3038606618999307) +description = Decatur town, NY +station = ('krme', 0.013409873067062903) +zone = ('nyz047', 0.0035926918343190083) + +[fips3607723613] +centroid = (0.74565551534638075, -1.313539507439913) +description = Edmeston town, NY +station = ('krme', 0.0090854119022672729) +zone = ('nyz046', 0.0033095096538198576) + +[fips3607724845] +centroid = (0.74698241936350196, -1.3103499531384781) +description = Exeter town, NY +station = ('krme', 0.0086264195670603967) +zone = ('nyz046', 0.0029392378607136557) + +[fips3607732589] +centroid = (0.74426881634908615, -1.3092896481645993) +description = Hartwick town, NY +station = ('krme', 0.011400322688320435) +zone = ('nyz046', 0.00026408599681990977) + +[fips3607741531] +centroid = (0.74238810190701465, -1.3110578063232095) +description = Laurens town, NY +station = ('krme', 0.012698454410379123) +zone = ('nyz046', 0.0020341582431829628) + +[fips3607745920] +centroid = (0.74265442169757645, -1.3066574473064962) +description = Maryland town, NY +station = ('krme', 0.013728372883050226) +zone = ('nyz046', 0.0025835751721579887) + +[fips3607746910] +centroid = (0.74520326563060391, -1.3064834030734875) +description = Middlefield town, NY +station = ('krme', 0.011657499577334165) +zone = ('nyz046', 0.0025208078221405378) + +[fips3607747240] +centroid = (0.74256937180312677, -1.3086326189676858) +description = Milford town, NY +station = ('krme', 0.013146667984292475) +zone = ('nyz046', 0.0016779449658333131) + +[fips3607748494] +centroid = (0.74251263114914434, -1.3136059346712436) +description = Morris town, NY +station = ('krme', 0.012176078580099824) +zone = ('nyz046', 0.0033715547774235666) + +[fips3607750485] +centroid = (0.7439384778815612, -1.3113270059070372) +description = New Lisbon town, NY +station = ('krme', 0.011157956360633688) +zone = ('nyz046', 0.0013057771039657762) + +[fips3607754881] +centroid = (0.74097635743495405, -1.3101642850126511) +description = Oneonta city, NY +station = ('kmsv', 0.013620152635295233) +zone = ('nyz046', 0.0031547793675151172) + +[fips3607754892] +centroid = (0.74045809936686668, -1.3107401214927616) +description = Oneonta town, NY +station = ('kmsv', 0.013238847047849688) +zone = ('nyz046', 0.0037434641033915355) + +[fips3607755629] +centroid = (0.74099691741354246, -1.3123468716021474) +description = Otego town, NY +station = ('kbgm', 0.011146209799080074) +zone = ('nyz046', 0.0037186125268898686) + +[fips3607755695] +centroid = (0.746291565685685, -1.3083554606824692) +description = Otsego town, NY +station = ('krme', 0.009975798283414836) +zone = ('nyz046', 0.0023650794909013473) + +[fips3607758343] +centroid = (0.74374951108344778, -1.3137351937556465) +description = Pittsfield town, NY +station = ('krme', 0.010938519533156669) +zone = ('nyz046', 0.0030877985871164146) + +[fips3607758420] +centroid = (0.74749675044077213, -1.3123949379697475) +description = Plainfield town, NY +station = ('krme', 0.007537049963118137) +zone = ('nyz046', 0.0039818259627052346) + +[fips3607761467] +centroid = (0.74789660537240399, -1.3098292865160233) +description = Richfield town, NY +station = ('krme', 0.0080405109436856321) +zone = ('nyz046', 0.0038013467938462961) + +[fips3607763638] +centroid = (0.745715641939112, -1.3039548224130757) +description = Roseboom town, NY +station = ('krme', 0.012476607145160339) +zone = ('nyz040', 0.0046372423562125106) + +[fips3607770310] +centroid = (0.74758368529081398, -1.306669420265165) +description = Springfield town, NY +station = ('krme', 0.0097479932783706823) +zone = ('nyz046', 0.0040818054987991348) + +[fips3607776012] +centroid = (0.7394691783593943, -1.314783770116952) +description = Unadilla town, NY +station = ('kbgm', 0.0089146351725148277) +zone = ('nyz045', 0.0042160114771954112) + +[fips3607779972] +centroid = (0.74426417377327592, -1.3057985533282974) +description = Westford town, NY +station = ('krme', 0.01271312541450368) +zone = ('nyz046', 0.0027762777353560896) + +[fips3607783129] +centroid = (0.74320694057888037, -1.3041805109386513) +description = Worcester town, NY +station = ('ksch', 0.011161759274351615) +zone = ('nyz047', 0.0036243145043121047) + +[fips36079] +centroid = (0.72305332700012892, -1.287073544102181) +description = Putnam County, NY +station = ('kpou', 0.0040218069979890926) +zone = ('nyz068', 7.6463618256134117e-05) + +[fips3607912529] +centroid = (0.72234112794556016, -1.2867045116851394) +description = Carmel town, NY +station = ('kdxr', 0.0031555904449892106) +zone = ('nyz068', 0.00077489812685065682) + +[fips3607939331] +centroid = (0.72360022592124129, -1.2867465741201125) +description = Kent town, NY +station = ('kpou', 0.0036745201779037747) +zone = ('nyz068', 0.00065117804413657328) + +[fips3607956748] +centroid = (0.72404053758493447, -1.2843539022485535) +description = Patterson town, NY +station = ('kdxr', 0.0024709180255153488) +zone = ('nyz068', 0.0023401085283680347) + +[fips3607957584] +centroid = (0.72278225991400169, -1.2901711544586205) +description = Philipstown town, NY +station = ('kswf', 0.0027926892109906465) +zone = ('nyz068', 0.0022631808920487496) + +[fips3607960] +centroid = (0.78215148446959604, -1.3053133867028281) +description = Brasher Falls CDP, NY +station = ('kmss', 0.0022157672609158102) +zone = ('nyz026', 0.0016661326681535267) + +[fips3607960147] +centroid = (0.7225254870744483, -1.2887359353081205) +description = Putnam Valley town, NY +station = ('kpou', 0.0041536250622391533) +zone = ('nyz068', 0.00127800194378987) + +[fips3607968924] +centroid = (0.72270925279139075, -1.2845759953958698) +description = Southeast town, NY +station = ('kdxr', 0.0017001379067976387) +zone = ('nyz068', 0.0019730937757879356) + +[fips3608004] +centroid = (0.73625093084505699, -1.339354637499576) +description = Breesport CDP, NY +station = ('kelm', 0.00209978510117091) +zone = ('nyz024', 0.00079277986670592802) + +[fips3608026] +centroid = (0.71181354624362558, -1.2784911143983015) +description = Brentwood CDP, NY +station = ('utff', 0.0023452985550327736) +zone = ('nyz080', 0.0010882933887302179) + +[fips3608059] +centroid = (0.75454596075665192, -1.3289802782526738) +description = Brewerton CDP, NY +station = ('ksyr', 0.0020977336311769784) +zone = ('nyz006', 0.0033810574037990079) + +[fips3608070] +centroid = (0.72254274838075061, -1.2848136743334062) +description = Brewster village, NY +station = ('kdxr', 0.0018048754287175611) +zone = ('nyz068', 0.0018348747353890771) + +[fips3608092] +centroid = (0.72293813526949724, -1.2846821288676835) +description = Brewster Hill CDP, NY +station = ('kdxr', 0.0018775896694793069) +zone = ('nyz068', 0.0018690615567918826) + +[fips36081] +centroid = (0.70962568875978815, -1.2887149739038042) +description = Queens County, NY +station = ('kjfk', 0.0010413377672484556) +zone = ('nyz178', 0.00061776441401974831) + +[fips3608103] +centroid = (0.71803426621687627, -1.288882106632975) +description = Briarcliff Manor village, NY +station = ('khpn', 0.0023272967202383056) +zone = ('nyz070', 0.0019405574654697191) + +[fips3608136] +centroid = (0.71472458090302693, -1.2621057713943611) +description = Bridgehampton CDP, NY +station = ('khto', 0.00082344483956966509) +zone = ('nyz081', 0.0020449917830293852) + +[fips3608147] +centroid = (0.75309974603186447, -1.3261940171814977) +description = Bridgeport CDP, NY +station = ('ksyr', 0.0015686495215484694) +zone = ('nyz018', 0.0036609918146156793) + +[fips3608160323] +centroid = (0.70962568875978815, -1.2887149739038042) +description = Queens borough, NY +station = ('kjfk', 0.0010413377672484556) +zone = ('nyz178', 0.00061776441401974831) + +[fips3608169] +centroid = (0.74835473684775999, -1.3133768253003346) +description = Bridgewater village, NY +station = ('krme', 0.0064937118916451085) +zone = ('nyz037', 0.004675582284385812) + +[fips3608257] +centroid = (0.75255132867430286, -1.3540625620127171) +description = Brighton CDP, NY +station = ('kroc', 0.0012903221554823529) +zone = ('nyz003', 0.00153216028342583) + +[fips36083] +centroid = (0.74543747136292904, -1.2830586410507709) +description = Rensselaer County, NY +station = ('kalb', 0.0037330991026509816) +zone = ('nyz054', 0.0013898829432579714) + +[fips3608306189] +centroid = (0.7445714564413819, -1.2807229192727045) +description = Berlin town, NY +station = ('kaqw', 0.0028216453283272276) +zone = ('nyz054', 0.0010301474867697386) + +[fips3608310275] +centroid = (0.7461282203209908, -1.2842628135148919) +description = Brunswick town, NY +station = ('kalb', 0.0027832096959285349) +zone = ('nyz053', 0.00088784438843768734) + +[fips3608322117] +centroid = (0.74359923823485108, -1.2863132437734273) +description = East Greenbush town, NY +station = ('kalb', 0.0028340483729484838) +zone = ('nyz053', 0.0020573529143246708) + +[fips3608323] +centroid = (0.71063551881169951, -1.2786543201366556) +description = Brightwaters village, NY +station = ('utff', 0.0020793075942742395) +zone = ('nyz080', 0.0011970630977872791) + +[fips3608329674] +centroid = (0.74638134542240764, -1.2820559843020851) +description = Grafton town, NY +station = ('kddh', 0.0033589004217653472) +zone = ('nyz054', 0.0010567261699725044) + +[fips3608334] +centroid = (0.72521811123125512, -1.2892908452904996) +description = Brinckerhoff CDP, NY +station = ('kpou', 0.0014298385610155503) +zone = ('nyz068', 0.0027014474104720527) + +[fips3608335463] +centroid = (0.7483413676256897, -1.2802256226089335) +description = Hoosick town, NY +station = ('kddh', 0.0013034398189290071) +zone = ('nyz054', 0.0028794600232860046) + +[fips3608349517] +centroid = (0.74260166039428865, -1.2835948585568611) +description = Nassau town, NY +station = ('kpsf', 0.0039120938249688269) +zone = ('nyz053', 0.0028951696546272053) + +[fips3608352100] +centroid = (0.74479217077858917, -1.2857558205169253) +description = North Greenbush town, NY +station = ('kalb', 0.0021527044371336436) +zone = ('nyz053', 0.00087313354258503745) + +[fips3608357441] +centroid = (0.74662785572595924, -1.2798050680723729) +description = Petersburgh town, NY +station = ('kddh', 0.0020789354701763827) +zone = ('nyz054', 0.0014754907875761849) + +[fips3608358398] +centroid = (0.74815803824106031, -1.2831071262973912) +description = Pittstown town, NY +station = ('kalb', 0.0041575988977378027) +zone = ('nyz054', 0.0029718480372948161) + +[fips3608358805] +centroid = (0.74525908126008278, -1.283209472404728) +description = Poestenkill town, NY +station = ('kalb', 0.003662751062768194) +zone = ('nyz054', 0.0015239596505917657) + +[fips3608361148] +centroid = (0.74430848768298408, -1.2868756063117124) +description = Rensselaer city, NY +station = ('kalb', 0.0020150199346684232) +zone = ('nyz052', 0.0019320722325712812) + +[fips3608365013] +centroid = (0.74404000368414969, -1.2835662002505432) +description = Sand Lake town, NY +station = ('kalb', 0.0039034724964861845) +zone = ('nyz053', 0.0016087658708784714) + +[fips3608365486] +centroid = (0.74846685679890812, -1.2847497080163206) +description = Schaghticoke town, NY +station = ('kalb', 0.0033675232884211766) +zone = ('nyz053', 0.0031194648989863244) + +[fips3608365541] +centroid = (0.74231385560063479, -1.2860137976336625) +description = Schodack town, NY +station = ('kalb', 0.0040987578942298696) +zone = ('nyz052', 0.0029812574468993272) + +[fips3608371102] +centroid = (0.74271568275432143, -1.2812609693745094) +description = Stephentown town, NY +station = ('kpsf', 0.0026763965326357469) +zone = ('nyz054', 0.0028321190356744253) + +[fips3608375484] +centroid = (0.74588062791330301, -1.2858769289137211) +description = Troy city, NY +station = ('kalb', 0.0016171829867287558) +zone = ('nyz053', 0.0009295794983963494) + +[fips3608422] +centroid = (0.75156926681079061, -1.294965172488121) +description = Broadalbin village, NY +station = ('ksch', 0.0049918814614035691) +zone = ('nyz082', 0.0033732481122191534) + +[fips3608466] +centroid = (0.75421431329218802, -1.3603240005174171) +description = Brockport village, NY +station = ('kroc', 0.0036863269566748177) +zone = ('nyz003', 0.0033286610565698878) + +[fips3608488] +centroid = (0.73984231230017816, -1.386538793522494) +description = Brocton village, NY +station = ('kdkk', 0.0028134870704500602) +zone = ('nyz019', 0.0029886490338975184) + +[fips36085] +centroid = (0.70797282705156439, -1.2939358471084648) +description = Richmond County, NY +station = ('kewr', 0.0021218452362176238) +zone = ('nyz074', 0.00037739666871348699) + +[fips3608532] +centroid = (0.71452809173583742, -1.2885145577457977) +description = Bronxville village, NY +station = ('khpn', 0.0027756571540438809) +zone = ('nyz071', 0.00098093423258481917) + +[fips3608570915] +centroid = (0.70797282705156439, -1.2939358471084648) +description = Staten Island borough, NY +station = ('kewr', 0.0021218452362176238) +zone = ('nyz074', 0.00037739666871348699) + +[fips36087] +centroid = (0.71828650120037452, -1.2919759994381079) +description = Rockland County, NY +station = ('khpn', 0.0045392326782256985) +zone = ('nyz069', 3.4064074046273302e-05) + +[fips3608715968] +centroid = (0.71792694592117112, -1.290945574501023) +description = Clarkstown town, NY +station = ('khpn', 0.0036882548610785958) +zone = ('nyz069', 0.00083379407439544706) + +[fips3608732765] +centroid = (0.71912624891667909, -1.2922252150020002) +description = Haverstraw town, NY +station = ('khpn', 0.0050514646996698198) +zone = ('nyz069', 0.00089447629149019933) + +[fips3608755211] +centroid = (0.71652200823319323, -1.2906376460610935) +description = Orangetown town, NY +station = ('khpn', 0.0032727462703449118) +zone = ('nyz069', 0.0019994266131494348) + +[fips3608760510] +centroid = (0.71804192821229251, -1.2933758233113772) +description = Ramapo town, NY +station = ('kteb', 0.0048385306962915433) +zone = ('nyz069', 0.0010838068374836771) + +[fips3608771674] +centroid = (0.71997700966056366, -1.291616095093054) +description = Stony Point town, NY +station = ('kswf', 0.0045127396228645186) +zone = ('nyz069', 0.0017432038535755664) + +[fips36089] +centroid = (0.77646404984929207, -1.3102939106161966) +description = St. Lawrence County, NY +station = ('kmss', 0.0082536243428352491) +zone = ('nyz087', 0.0029299300361355957) + +[fips3608907938] +centroid = (0.78344665840091587, -1.3041747164455346) +description = Brasher town, NY +station = ('kmss', 0.0017486414928254675) +zone = ('nyz026', 0.0024793061693676988) + +[fips3608912342] +centroid = (0.77797028644705568, -1.3126769308169921) +description = Canton town, NY +station = ('kmss', 0.0076970230155138002) +zone = ('nyz087', 0.0015483727103377518) + +[fips3608915792] +centroid = (0.77416864517694672, -1.3092262927127518) +description = Clare town, NY +station = ('kmss', 0.010267787118577553) +zone = ('nyz029', 0.0020651515717776368) + +[fips3608916287] +centroid = (0.7714599290844365, -1.3070029003253436) +description = Clifton town, NY +station = ('kgtb', 0.010942485746005376) +zone = ('nyz029', 0.0021162646649439364) + +[fips3608917409] +centroid = (0.7743688693487355, -1.3057610462026723) +description = Colton town, NY +station = ('kslk', 0.0076862679975357468) +zone = ('nyz029', 0.00097166375593731784) + +[fips3608920038] +centroid = (0.7762505437218955, -1.3153752098405753) +description = De Kalb town, NY +station = ('kgtb', 0.0087403027379421259) +zone = ('nyz087', 0.0010336790353091783) + +[fips3608920335] +centroid = (0.7772887179208593, -1.3170024501153796) +description = De Peyster town, NY +station = ('cxke', 0.0083826902789339384) +zone = ('nyz087', 0.0019245656880292265) + +[fips3608923646] +centroid = (0.77294918362857834, -1.3138976315491295) +description = Edwards town, NY +station = ('kgtb', 0.0070119828858061272) +zone = ('nyz087', 0.0040366329077832991) + +[fips3608925791] +centroid = (0.77063742522114165, -1.31049382062872) +description = Fine town, NY +station = ('kgtb', 0.0083176251271520341) +zone = ('nyz029', 0.0040899855959244027) + +[fips3608927100] +centroid = (0.77275491102953886, -1.3160347523116116) +description = Fowler town, NY +station = ('kgtb', 0.0057082270289895891) +zone = ('nyz087', 0.0043890246966169231) + +[fips3608929608] +centroid = (0.77414239542499674, -1.3175457362049408) +description = Gouverneur town, NY +station = ('kgtb', 0.006134973325718906) +zone = ('nyz087', 0.0036409319224878708) + +[fips3608931841] +centroid = (0.77560262514367784, -1.3216759357067376) +description = Hammond town, NY +station = ('kgtb', 0.0067856349452094199) +zone = ('nyz087', 0.0054112725573396015) + +[fips3608934176] +centroid = (0.77488864585327188, -1.314044204299712) +description = Hermon town, NY +station = ('kgtb', 0.0082290399760976529) +zone = ('nyz087', 0.0020954328712508492) + +[fips3608935595] +centroid = (0.77731144210772041, -1.3030825592128064) +description = Hopkinton town, NY +station = ('kslk', 0.006219125120029984) +zone = ('nyz029', 0.004480676079385246) + +[fips3608941564] +centroid = (0.78095815050012984, -1.3033480936052049) +description = Lawrence town, NY +station = ('kmss', 0.0039184103988057955) +zone = ('nyz026', 0.0034466125583209068) + +[fips3608942631] +centroid = (0.7801014032769108, -1.3143327072250668) +description = Lisbon town, NY +station = ('cxke', 0.0066450760378639956) +zone = ('nyz087', 0.0031279477992122375) + +[fips3608943588] +centroid = (0.78378760847029294, -1.3092099913375381) +description = Louisville town, NY +station = ('kmss', 0.002053859194717927) +zone = ('nyz026', 0.0016024331352571493) + +[fips3608944391] +centroid = (0.77560175247905183, -1.318968109732146) +description = Macomb town, NY +station = ('kgtb', 0.0070802213403032745) +zone = ('nyz087', 0.0035762075827834167) + +[fips3608944490] +centroid = (0.78139708335371394, -1.3112404724827234) +description = Madrid town, NY +station = ('kmss', 0.0044642774224691361) +zone = ('nyz026', 0.0029534082998970016) + +[fips3608946030] +centroid = (0.78473528734754094, -1.3061110370775744) +description = Massena town, NY +station = ('kmss', 0.00053537850579859169) +zone = ('nyz026', 0.0022466572959206703) + +[fips3608948582] +centroid = (0.77721136492841103, -1.3200711752726988) +description = Morristown town, NY +station = ('cxke', 0.0081869889633705336) +zone = ('nyz087', 0.0040934223108209378) + +[fips3608951330] +centroid = (0.78251868429092297, -1.3078441839313901) +description = Norfolk town, NY +station = ('kmss', 0.0020055433788024398) +zone = ('nyz026', 0.00030705566669108665) + +[fips3608954485] +centroid = (0.7803223968667985, -1.3170825432747539) +description = Ogdensburg city, NY +station = ('cxke', 0.0054789434520742053) +zone = ('nyz087', 0.0038766741033266824) + +[fips3608955563] +centroid = (0.77894356930443032, -1.3175613743550385) +description = Oswegatchie town, NY +station = ('cxke', 0.0066810205894362205) +zone = ('nyz087', 0.0030247546040000003) + +[fips3608956374] +centroid = (0.77755369380789718, -1.3052424216154419) +description = Parishville town, NY +station = ('kmss', 0.0067295096113361846) +zone = ('nyz029', 0.0041069522314450121) + +[fips3608957716] +centroid = (0.77183882261175196, -1.3020881404181903) +description = Piercefield town, NY +station = ('kslk', 0.005916738338990187) +zone = ('nyz029', 0.0035732054313047804) + +[fips3608957771] +centroid = (0.77716287968179065, -1.3092298008245482) +description = Pierrepont town, NY +station = ('kmss', 0.0073560309523955361) +zone = ('nyz087', 0.0036479164900385976) + +[fips3608958266] +centroid = (0.7718158715320883, -1.3137036382027703) +description = Pitcairn town, NY +station = ('kgtb', 0.0065361028539526276) +zone = ('nyz087', 0.0051775714510460613) + +[fips3608959575] +centroid = (0.77984305964103073, -1.309644857573965) +description = Potsdam town, NY +station = ('kmss', 0.0049653404707077379) +zone = ('nyz026', 0.0032506689209212667) + +[fips3608963858] +centroid = (0.77362052452535779, -1.3198847042954158) +description = Rossie town, NY +station = ('kgtb', 0.0049947016799827583) +zone = ('nyz087', 0.0051892131877660274) + +[fips3608964221] +centroid = (0.7749613911764951, -1.3114533153850039) +description = Russell town, NY +station = ('kgtb', 0.0096268739640004639) +zone = ('nyz087', 0.0028795272241957329) + +[fips3608971410] +centroid = (0.78095827267317741, -1.3064815181178955) +description = Stockholm town, NY +station = ('kmss', 0.0032771451044790205) +zone = ('nyz026', 0.0019121257563101306) + +[fips3608977739] +centroid = (0.78245372313616379, -1.3123488089176172) +description = Waddington town, NY +station = ('kmss', 0.0045895919643490733) +zone = ('nyz026', 0.0034343256608668151) + +[fips3609000] +centroid = (0.71168716695248868, -1.2724817363441749) +description = Brookhaven CDP, NY +station = ('khwv', 0.00088494651248265793) +zone = ('nyz080', 0.0036638996091611204) + +[fips36091] +centroid = (0.75234398355916587, -1.2890196734846171) +description = Saratoga County, NY +station = ('ksch', 0.0045798570693833703) +zone = ('nyz041', 0.0013036423627632676) + +[fips3609104220] +centroid = (0.74964151574537785, -1.2895743565741937) +description = Ballston town, NY +station = ('ksch', 0.0018638543359870113) +zone = ('nyz050', 0.00021903533627580093) + +[fips3609113926] +centroid = (0.7497563409568665, -1.2914036361632089) +description = Charlton town, NY +station = ('ksch', 0.0020265445450750844) +zone = ('nyz050', 0.0014995637910218845) + +[fips3609116353] +centroid = (0.74803054193920204, -1.2884539599141684) +description = Clifton Park town, NY +station = ('kalb', 0.0019248996579793571) +zone = ('nyz050', 0.0015928601135737474) + +[fips3609118223] +centroid = (0.75447988259117149, -1.2901860595704326) +description = Corinth town, NY +station = ('kgfl', 0.0042917662906943278) +zone = ('nyz041', 0.0011647873989619687) + +[fips3609119807] +centroid = (0.75609527208035476, -1.2920257238684971) +description = Day town, NY +station = ('kgfl', 0.005222003090968875) +zone = ('nyz041', 0.003260660993020424) + +[fips3609123591] +centroid = (0.7543856697181488, -1.292763666529533) +description = Edinburg town, NY +station = ('kgfl', 0.0060718442798481939) +zone = ('nyz041', 0.0027927966235870468) + +[fips3609128112] +centroid = (0.75105343475036379, -1.2921035306465511) +description = Galway town, NY +station = ('ksch', 0.0034209944171182862) +zone = ('nyz050', 0.0025390587278267315) + +[fips3609130444] +centroid = (0.75290011527202139, -1.2893148435677146) +description = Greenfield town, NY +station = ('kgfl', 0.0047104593868325072) +zone = ('nyz041', 0.00076828153942805886) + +[fips3609131269] +centroid = (0.75638164570402211, -1.2899022515807659) +description = Hadley town, NY +station = ('kgfl', 0.0036731187663734568) +zone = ('nyz083', 0.0021431547253354701) + +[fips3609131489] +centroid = (0.74806059650892143, -1.2868439634923736) +description = Halfmoon town, NY +station = ('kalb', 0.0021262049215601932) +zone = ('nyz050', 0.0023379215146936763) + +[fips3609144743] +centroid = (0.75018221874764568, -1.2878617522456743) +description = Malta town, NY +station = ('ksch', 0.0029548715764083026) +zone = ('nyz050', 0.0013295842287792856) + +[fips3609146360] +centroid = (0.74881927368147083, -1.2861161786475848) +description = Mechanicville city, NY +station = ('kalb', 0.0030429126900649445) +zone = ('nyz050', 0.002485713964335899) + +[fips3609147537] +centroid = (0.75129095660826761, -1.289765801739845) +description = Milton town, NY +station = ('ksch', 0.0034468264475224358) +zone = ('nyz050', 0.0018441138133648714) + +[fips3609148318] +centroid = (0.75480992435272365, -1.2857090107863869) +description = Moreau town, NY +station = ('kgfl', 0.0016236642965835489) +zone = ('nyz083', 0.0019602266736850425) + +[fips3609153737] +centroid = (0.75332450953293628, -1.2850568336047941) +description = Northumberland town, NY +station = ('kgfl', 0.0029885154809440526) +zone = ('nyz084', 0.0024508381694148275) + +[fips3609159949] +centroid = (0.75253579524396008, -1.2923211557509824) +description = Providence town, NY +station = ('ksch', 0.0048736584380642059) +zone = ('nyz041', 0.002620225084324196) + +[fips3609165244] +centroid = (0.75141763260537731, -1.2854413819988861) +description = Saratoga town, NY +station = ('kgfl', 0.0049104679085108897) +zone = ('nyz084', 0.003273349354889969) + +[fips3609165255] +centroid = (0.75167508612333911, -1.2876626625378993) +description = Saratoga Springs city, NY +station = ('ksch', 0.0042902740693511422) +zone = ('nyz041', 0.0022231099938075142) + +[fips3609171333] +centroid = (0.7499471927105722, -1.286085111786899) +description = Stillwater town, NY +station = ('kalb', 0.0040822894981157008) +zone = ('nyz050', 0.0024684411641490668) + +[fips3609178531] +centroid = (0.74707338592411587, -1.2860858797317698) +description = Waterford town, NY +station = ('kalb', 0.0017256896800028063) +zone = ('nyz053', 0.0019528766469407456) + +[fips3609182403] +centroid = (0.75315502060927508, -1.2867783216592061) +description = Wilton town, NY +station = ('kgfl', 0.0034520038939199272) +zone = ('nyz041', 0.0017415502754151262) + +[fips36093] +centroid = (0.74730708551095792, -1.2923043133237004) +description = Schenectady County, NY +station = ('ksch', 0.0015205545074939702) +zone = ('nyz049', 0.0009677095078341625) + +[fips3609321006] +centroid = (0.74661691251154916, -1.2945578650005831) +description = Duanesburg town, NY +station = ('ksch', 0.0033123053566641329) +zone = ('nyz048', 0.00029850276162764888) + +[fips3609329366] +centroid = (0.74854120782504308, -1.2913464242703283) +description = Glenville town, NY +station = ('ksch', 0.00097330099289100181) +zone = ('nyz049', 0.00082223473150633481) + +[fips3609351264] +centroid = (0.74705471090111952, -1.2893361191312964) +description = Niskayuna town, NY +station = ('ksch', 0.0011210705437346539) +zone = ('nyz049', 0.0014758506582508029) + +[fips3609359861] +centroid = (0.74717658724278635, -1.2929119497027826) +description = Princetown town, NY +station = ('ksch', 0.0019833045332244628) +zone = ('nyz048', 0.0010548779668521997) + +[fips3609363935] +centroid = (0.74721227922598954, -1.291753749211159) +description = Rotterdam town, NY +station = ('ksch', 0.001205052356471683) +zone = ('nyz049', 0.00069938510957806002) + +[fips3609365508] +centroid = (0.74703303391180975, -1.2902747048431413) +description = Schenectady city, NY +station = ('ksch', 0.00084409697101094235) +zone = ('nyz049', 0.00093771217225788682) + +[fips36095] +centroid = (0.74335831298490573, -1.2991911905658524) +description = Schoharie County, NY +station = ('kalb', 0.0086452274982876387) +zone = ('nyz047', 7.3915713754293421e-05) + +[fips3609506893] +centroid = (0.7415619852121681, -1.3006644055341683) +description = Blenheim town, NY +station = ('ksch', 0.0098497114056592446) +zone = ('nyz047', 0.0020265498973630726) + +[fips3609510154] +centroid = (0.74183497216047256, -1.2966686836512376) +description = Broome town, NY +station = ('ksch', 0.0076052195674488005) +zone = ('nyz051', 0.0024129399264106975) + +[fips3609512452] +centroid = (0.74595777146624109, -1.2991627940589223) +description = Carlisle town, NY +station = ('kalb', 0.0081605851212657732) +zone = ('nyz047', 0.002654416548753976) + +[fips3609516639] +centroid = (0.74503752916483457, -1.2992607419365443) +description = Cobleskill town, NY +station = ('kalb', 0.0083061584860812231) +zone = ('nyz047', 0.0017332168214826706) + +[fips3609517651] +centroid = (0.73998600525749481, -1.297447973162253) +description = Conesville town, NY +station = ('kalb', 0.009251605979630444) +zone = ('nyz058', 0.0027840009209512875) + +[fips3609524724] +centroid = (0.746160788164833, -1.2970619761448818) +description = Esperance town, NY +station = ('kalb', 0.0066154730119245015) +zone = ('nyz048', 0.0021562115627931683) + +[fips3609527826] +centroid = (0.7433206138730627, -1.2994232844497826) +description = Fulton town, NY +station = ('kalb', 0.0088191162977130731) +zone = ('nyz047', 0.00012149978844762607) + +[fips3609528981] +centroid = (0.74056285402857147, -1.2994734103058998) +description = Gilboa town, NY +station = ('ksch', 0.0099091569632689634) +zone = ('nyz047', 0.0027459792811181868) + +[fips3609538440] +centroid = (0.74158456977268894, -1.3021440782207165) +description = Jefferson town, NY +station = ('kalb', 0.011320866306788089) +zone = ('nyz047', 0.0027338802188813303) + +[fips3609546855] +centroid = (0.74388147542819105, -1.2969977654817011) +description = Middleburgh town, NY +station = ('ksch', 0.0062898745611082926) +zone = ('nyz047', 0.0017621142771117536) + +[fips3609561599] +centroid = (0.74418614010241924, -1.3011266210799741) +description = Richmondville town, NY +station = ('kalb', 0.0098031425084895655) +zone = ('nyz047', 0.0016325532776287044) + +[fips3609565596] +centroid = (0.74489989250002231, -1.297004676985539) +description = Schoharie town, NY +station = ('ksch', 0.0057004892927357562) +zone = ('nyz047', 0.0023018056897331934) + +[fips3609566542] +centroid = (0.74539875996011973, -1.3017151111971614) +description = Seward town, NY +station = ('kalb', 0.010062228286202655) +zone = ('nyz047', 0.0027655553137917576) + +[fips3609566641] +centroid = (0.74659825494184551, -1.3022451851442847) +description = Sharon town, NY +station = ('ksch', 0.0087967890472961663) +zone = ('nyz040', 0.0031169729162108749) + +[fips3609572070] +centroid = (0.74305815126014774, -1.3019945558636983) +description = Summit town, NY +station = ('kalb', 0.010701890999442024) +zone = ('nyz047', 0.0020286834575206111) + +[fips3609583195] +centroid = (0.74479295617675256, -1.2951675608681823) +description = Wright town, NY +station = ('ksch', 0.0046738203647639009) +zone = ('nyz048', 0.0021380702839393921) + +[fips36097] +centroid = (0.74036475915847011, -1.3428319616880793) +description = Schuyler County, NY +station = ('kpeo', 0.004265922632630632) +zone = ('nyz023', 0.00093444187652131196) + +[fips3609712914] +centroid = (0.73893645151180809, -1.3392556947842804) +description = Catharine town, NY +station = ('kelm', 0.003681228807837114) +zone = ('nyz023', 0.0020688465356136949) + +[fips3609713112] +centroid = (0.73778545922999539, -1.3384037472165045) +description = Cayuta town, NY +station = ('kelm', 0.0033332066865190942) +zone = ('nyz024', 0.0024791262329955845) + +[fips3609720676] +centroid = (0.738875190455063, -1.3421444241358411) +description = Dix town, NY +station = ('kelm', 0.0029280402732181463) +zone = ('nyz023', 0.0010814771216835564) + +[fips3609733073] +centroid = (0.74112846287926526, -1.3401327925465776) +description = Hector town, NY +station = ('kpeo', 0.0047212660671005014) +zone = ('nyz023', 0.0016920561365085115) + +[fips3609748186] +centroid = (0.73897137555014047, -1.340874714558308) +description = Montour town, NY +station = ('kelm', 0.0031699116538825524) +zone = ('nyz023', 0.0011307658882029185) + +[fips3609755156] +centroid = (0.73901638759154942, -1.3445262400594529) +description = Orange town, NY +station = ('kelm', 0.0035344315270420144) +zone = ('nyz023', 0.0022546311018834721) + +[fips3609760763] +centroid = (0.74036475915847011, -1.3428319616880793) +description = Reading town, NY +station = ('kpeo', 0.004265922632630632) +zone = ('nyz023', 0.00093444187652131196) + +[fips3609775924] +centroid = (0.74075353124935184, -1.3446762685619542) +description = Tyrone town, NY +station = ('kpeo', 0.0036301412043427093) +zone = ('nyz023', 0.002335603301394415) + +[fips36099] +centroid = (0.74669189185621498, -1.3408856403194254) +description = Seneca County, NY +station = ('kpeo', 0.0036745335858372279) +zone = ('nyz016', 4.8924304296402076e-05) + +[fips3609918663] +centroid = (0.74323807725273583, -1.3386083521647156) +description = Covert town, NY +station = ('kith', 0.0034722959310187849) +zone = ('nyz025', 0.003682802993983548) + +[fips3609925505] +centroid = (0.74774921231707314, -1.3414347558086877) +description = Fayette town, NY +station = ('kpeo', 0.004165710567494315) +zone = ('nyz016', 0.0011684570819187334) + +[fips3609928640] +centroid = (0.74808429808016352, -1.3435743723919999) +description = Geneva city, NY +station = ('kpeo', 0.0038051075403612539) +zone = ('nyz016', 0.0024625975154796138) + +[fips3609938858] +centroid = (0.75000026817312537, -1.3423124993428082) +description = Junius town, NY +station = ('kpeo', 0.0059009375267394864) +zone = ('nyz016', 0.0035044468725426783) + +[fips3609943225] +centroid = (0.74336923874602323, -1.3409613876089619) +description = Lodi town, NY +station = ('kpeo', 0.0029845389858767588) +zone = ('nyz016', 0.0033015575669985593) + +[fips3609955827] +centroid = (0.74438350193423475, -1.3403438028531436) +description = Ovid town, NY +station = ('kpeo', 0.0032600448547129937) +zone = ('nyz016', 0.0023131555988804313) + +[fips3609963440] +centroid = (0.74549114023742791, -1.3409395186334343) +description = Romulus town, NY +station = ('kpeo', 0.003030361272800599) +zone = ('nyz016', 0.0011810863115097423) + +[fips3609966333] +centroid = (0.74894690960966914, -1.3402462040413723) +description = Seneca Falls town, NY +station = ('kpeo', 0.0056466176303101596) +zone = ('nyz016', 0.0023170013688983159) + +[fips3609975902] +centroid = (0.75026768752111594, -1.3402009651071605) +description = Tyre town, NY +station = ('kpeo', 0.0067744243347579204) +zone = ('nyz016', 0.0036274549414938829) + +[fips3609976958] +centroid = (0.7466985939205425, -1.3412234138895638) +description = Varick town, NY +station = ('kpeo', 0.0034894074013732831) +zone = ('nyz016', 0.00029277522220134316) + +[fips3609978564] +centroid = (0.74908463354094401, -1.3423780888160981) +description = Waterloo town, NY +station = ('kpeo', 0.00502031943348814) +zone = ('nyz016', 0.0026697833151522006) + +[fips36101] +centroid = (0.73769351528500027, -1.3506322046343848) +description = Steuben County, NY +station = ('kelm', 0.006514356558191132) +zone = ('nyz022', 2.9127371864653505e-05) + +[fips3610100287] +centroid = (0.7353449827902242, -1.3479949597747438) +description = Addison town, NY +station = ('kelm', 0.0043690575292954625) +zone = ('nyz022', 0.0030552098965830961) + +[fips3610103342] +centroid = (0.74044403201309572, -1.351735776320421) +description = Avoca town, NY +station = ('kdsv', 0.004249612230125252) +zone = ('nyz022', 0.0028573660906204162) + +[fips3610104770] +centroid = (0.73866557641189856, -1.3494287826618423) +description = Bath town, NY +station = ('kelm', 0.006029812008922452) +zone = ('nyz022', 0.0012891886839857274) + +[fips3610107740] +centroid = (0.73881082271224952, -1.3462403977310065) +description = Bradford town, NY +station = ('kelm', 0.0041631312675342843) +zone = ('nyz023', 0.0035130078115819764) + +[fips3610111880] +centroid = (0.7369941793070186, -1.3512636298511713) +description = Cameron town, NY +station = ('kelm', 0.0068264636761543231) +zone = ('nyz022', 0.00086917822426066274) + +[fips3610111946] +centroid = (0.73705327615549121, -1.3468082231498504) +description = Campbell town, NY +station = ('kelm', 0.003618075119057873) +zone = ('nyz022', 0.0028846259101806076) + +[fips3610112265] +centroid = (0.73719019723531021, -1.3532483310100769) +description = Canisteo town, NY +station = ('kdsv', 0.0061955210648239056) +zone = ('nyz022', 0.0020270861753222107) + +[fips3610112991] +centroid = (0.73366218868532884, -1.3443186855048057) +description = Caton town, NY +station = ('kelm', 0.002791189591892521) +zone = ('nyz024', 0.003881659122791438) + +[fips3610116738] +centroid = (0.74211342198933583, -1.3523084363012927) +description = Cohocton town, NY +station = ('kdsv', 0.0031311038919678669) +zone = ('nyz022', 0.0045780029243805212) + +[fips3610118256] +centroid = (0.73563121678755128, -1.3449298998088541) +description = Corning city, NY +station = ('kelm', 0.0020788185555699499) +zone = ('nyz024', 0.003868859915346857) + +[fips3610118267] +centroid = (0.73564460346291405, -1.3441514480558796) +description = Corning town, NY +station = ('kelm', 0.0015082519150001064) +zone = ('nyz024', 0.0032925648534765837) + +[fips3610119675] +centroid = (0.74114764404774469, -1.3554515997512093) +description = Dansville town, NY +station = ('kdsv', 0.0019163054805937266) +zone = ('nyz013', 0.0048250165559756896) + +[fips3610124647] +centroid = (0.73539137364174223, -1.3465686418034291) +description = Erwin town, NY +station = ('kelm', 0.0033167234656938847) +zone = ('nyz022', 0.0037834329907747316) + +[fips3610127551] +centroid = (0.73992703058206999, -1.3545524759337519) +description = Fremont town, NY +station = ('kdsv', 0.0032998351110957963) +zone = ('nyz022', 0.0036651994841494732) + +[fips3610130741] +centroid = (0.73560578734034965, -1.3554579527496866) +description = Greenwood town, NY +station = ('kelz', 0.0044517649685720615) +zone = ('nyz022', 0.0041682555071755082) + +[fips3610132] +centroid = (0.71227714059954028, -1.2841052451900219) +description = Brookville village, NY +station = ('utff', 0.0024642841474034408) +zone = ('nyz177', 0.0005101246802936113) + +[fips3610132567] +centroid = (0.73691940940186329, -1.3554260306776675) +description = Hartsville town, NY +station = ('kelz', 0.0048875956313485505) +zone = ('nyz021', 0.0047866055651055893) + +[fips3610135661] +centroid = (0.73721906498113821, -1.3443690033471405) +description = Hornby town, NY +station = ('kelm', 0.0020735888795220458) +zone = ('nyz023', 0.0033271448659142481) + +[fips3610135672] +centroid = (0.73872334681013951, -1.3554304812672602) +description = Hornell city, NY +station = ('kdsv', 0.0042670193436555124) +zone = ('nyz022', 0.003711763388829259) + +[fips3610135683] +centroid = (0.73887545225445084, -1.3557209389613771) +description = Hornellsville town, NY +station = ('kdsv', 0.004084955840142063) +zone = ('nyz021', 0.0047206187167224368) + +[fips3610135837] +centroid = (0.73894797068487117, -1.3528828939712942) +description = Howard town, NY +station = ('kdsv', 0.0047564342949098799) +zone = ('nyz022', 0.0020910378785290481) + +[fips3610138319] +centroid = (0.73555623744288556, -1.3531867383407741) +description = Jasper town, NY +station = ('kelz', 0.0061089314693709663) +zone = ('nyz022', 0.0028833888802789575) + +[fips3610142576] +centroid = (0.73369901513254598, -1.3464957394005732) +description = Lindley town, NY +station = ('kelm', 0.0039257136631488387) +zone = ('paz037', 0.0048375651666901828) + +[fips3610159718] +centroid = (0.74240937747059643, -1.3497041781645145) +description = Prattsburgh town, NY +station = ('kpeo', 0.0041299188450775685) +zone = ('nyz015', 0.0033673723994511479) + +[fips3610159982] +centroid = (0.74220791411503884, -1.3474462108046243) +description = Pulteney town, NY +station = ('kpeo', 0.0029317189367396731) +zone = ('nyz015', 0.0022650284886713912) + +[fips3610160653] +centroid = (0.73529227384681395, -1.3499147870453525) +description = Rathbone town, NY +station = ('kelm', 0.0057880161165371705) +zone = ('nyz022', 0.0024729894845665706) + +[fips3610173836] +centroid = (0.73696868004664706, -1.3487718058248066) +description = Thurston town, NY +station = ('kelm', 0.0050050562560245045) +zone = ('nyz022', 0.0015455306209125627) + +[fips3610175440] +centroid = (0.7342832117397734, -1.3531859354893179) +description = Troupsburg town, NY +station = ('kelz', 0.0060845708004967419) +zone = ('nyz022', 0.0039275768133585961) + +[fips3610175737] +centroid = (0.73389293866573502, -1.3483846743434216) +description = Tuscarora town, NY +station = ('kelm', 0.0050554911178699626) +zone = ('nyz022', 0.0041580381203205809) + +[fips3610176496] +centroid = (0.7401962650724826, -1.3478573580165167) +description = Urbana town, NY +station = ('kpeo', 0.0047627357968143954) +zone = ('nyz022', 0.003207237112103471) + +[fips3610178861] +centroid = (0.74219342788224718, -1.3543391268859881) +description = Wayland town, NY +station = ('kdsv', 0.0016946712885322469) +zone = ('nyz013', 0.0042208808727592223) + +[fips3610178883] +centroid = (0.74056995751862709, -1.3463403527372682) +description = Wayne town, NY +station = ('kpeo', 0.0039833291400197743) +zone = ('nyz023', 0.0034703422080121053) + +[fips3610181105] +centroid = (0.73381371817098695, -1.3559093472541299) +description = West Union town, NY +station = ('kelz', 0.0041583498703827793) +zone = ('nyz022', 0.005538763730401023) + +[fips3610181457] +centroid = (0.74066434492457489, -1.3498240648308342) +description = Wheeler town, NY +station = ('kpeo', 0.0052592254301747588) +zone = ('nyz022', 0.003007540692030233) + +[fips3610182843] +centroid = (0.7339158722921062, -1.3507870153390369) +description = Woodhull town, NY +station = ('kelm', 0.0067160603131821471) +zone = ('nyz022', 0.003798879174519276) + +[fips3610231] +centroid = (0.76803749550090838, -1.3261547472733277) +description = Brownville village, NY +station = ('kart', 0.00073849883186026392) +zone = ('nyz007', 0.0011055525653909338) + +[fips3610286] +centroid = (0.782442989361264, -1.3004781265431031) +description = Brushton village, NY +station = ('kmss', 0.0045487799176219795) +zone = ('nyz027', 0.0016329902188628401) + +[fips36103] +centroid = (0.71459982476809436, -1.2687185446774873) +description = Suffolk County, NY +station = ('kfok', 0.0019130059754924452) +zone = ('nyz079', 0.001696398571038959) + +[fips3610304000] +centroid = (0.71001138907118633, -1.2796086487183536) +description = Babylon town, NY +station = ('utff', 0.0016277983555450159) +zone = ('nyz080', 0.0021425655268669484) + +[fips3610310000] +centroid = (0.71309699156237216, -1.2733894297282597) +description = Brookhaven town, NY +station = ('khwv', 0.0014213763653502551) +zone = ('nyz080', 0.0034890823717679256) + +[fips3610322194] +centroid = (0.71719581004421817, -1.2584814206696697) +description = East Hampton town, NY +station = ('kmtp', 0.0025265349894706369) +zone = ('ctz012', 0.0046986433378010265) + +[fips3610337000] +centroid = (0.71356196472839606, -1.280666073898967) +description = Huntington town, NY +station = ('utff', 0.0026699330647596393) +zone = ('nyz177', 0.0030459304276536656) + +[fips3610338000] +centroid = (0.710568533075008, -1.2775028915225302) +description = Islip town, NY +station = ('kisp', 0.001980652449391412) +zone = ('nyz080', 0.00067953995234188325) + +[fips3610341] +centroid = (0.72014140222280909, -1.2906421664638561) +description = Buchanan village, NY +station = ('kswf', 0.00461898668160387) +zone = ('nyz069', 0.0021338106527260406) + +[fips3610359106] +centroid = (0.71189749658064649, -1.2711668052857223) +description = Poospatuck Reservation, NY +station = ('khwv', 0.00066461774168809077) +zone = ('nyz080', 0.0046787042701175088) + +[fips3610361984] +centroid = (0.71518583651774403, -1.269012754829496) +description = Riverhead town, NY +station = ('kfok', 0.0025315490607775658) +zone = ('nyz079', 0.0017114328326304864) + +[fips3610366839] +centroid = (0.7167172756699064, -1.2622093043255895) +description = Shelter Island town, NY +station = ('khto', 0.0020425664020307602) +zone = ('nyz081', 0.0032589437429157097) + +[fips3610367059] +centroid = (0.71338170712325, -1.2641589069132373) +description = Shinnecock Reservation, NY +station = ('kfok', 0.0024859801630747638) +zone = ('nyz081', 0.00074758589468156987) + +[fips3610368000] +centroid = (0.71417506398803654, -1.2772165702587404) +description = Smithtown town, NY +station = ('kisp', 0.0023281265805235904) +zone = ('nyz078', 0.00072981766629654345) + +[fips3610368473] +centroid = (0.71349867908971865, -1.2646491000869524) +description = Southampton town, NY +station = ('kfok', 0.0021471806807302702) +zone = ('nyz081', 0.000531229261398079) + +[fips3610369463] +centroid = (0.71801023303307632, -1.2621991988692205) +description = Southold town, NY +station = ('khto', 0.0032538978731328919) +zone = ('ctz011', 0.0036149628783159735) + +[fips36105] +centroid = (0.72815443571151783, -1.3048898301999541) +description = Sullivan County, NY +station = ('kmsv', 0.00057946406589036838) +zone = ('nyz062', 7.9551110346506019e-05) + +[fips3610506310] +centroid = (0.72761137651475982, -1.3064479728896721) +description = Bethel town, NY +station = ('kmsv', 0.00072862174455508646) +zone = ('nyz062', 0.0012162600113278725) + +[fips3610511759] +centroid = (0.73017313588425203, -1.3076727925988441) +description = Callicoon town, NY +station = ('kmsv', 0.0028691411983156594) +zone = ('nyz062', 0.0029103406299218195) + +[fips3610516661] +centroid = (0.7274539129096449, -1.3088955353662064) +description = Cochecton town, NY +station = ('kmsv', 0.0025548044099803595) +zone = ('nyz062', 0.0030138974978906733) + +[fips3610520104] +centroid = (0.72876109470621853, -1.3090032745409317) +description = Delaware town, NY +station = ('kmsv', 0.0027804185172779464) +zone = ('paz040', 0.0037880219747180475) + +[fips3610525241] +centroid = (0.72844793027853316, -1.3020811765544749) +description = Fallsburg town, NY +station = ('kmsv', 0.002636840332884641) +zone = ('nyz062', 0.0021706847863854632) + +[fips3610526528] +centroid = (0.72539028796196425, -1.3039288170072212) +description = Forestburgh town, NY +station = ('kmsv', 0.0026847664580487529) +zone = ('nyz062', 0.0028039990292383896) + +[fips3610527573] +centroid = (0.73083412697856731, -1.3095820780807708) +description = Fremont town, NY +station = ('kmsv', 0.0042927467829633045) +zone = ('paz040', 0.0037337234289417545) + +[fips3610534473] +centroid = (0.72548739808154528, -1.3070163219072917) +description = Highland town, NY +station = ('kmsv', 0.0025753708884288266) +zone = ('nyz062', 0.0030251475385553359) + +[fips3610542235] +centroid = (0.72975396015780047, -1.3051535494499305) +description = Liberty town, NY +station = ('kmsv', 0.0019693206826303647) +zone = ('nyz062', 0.0016723667651748419) + +[fips3610543786] +centroid = (0.72417941343351566, -1.3057195597263522) +description = Lumberland town, NY +station = ('kmsv', 0.0036263939476607822) +zone = ('nyz062', 0.0039512968109970082) + +[fips3610544809] +centroid = (0.72584756422598684, -1.3002055061139417) +description = Mamakating town, NY +station = ('kmgj', 0.0032472839346053802) +zone = ('nyz067', 0.0040902586554314854) + +[fips3610549847] +centroid = (0.73069898613458539, -1.3018490652172521) +description = Neversink town, NY +station = ('kmsv', 0.0039784168235676969) +zone = ('nyz063', 0.0029076508567429148) + +[fips3610563176] +centroid = (0.73238890118282884, -1.3053157778039033) +description = Rockland town, NY +station = ('kmsv', 0.0045887990188522073) +zone = ('nyz062', 0.0043090173581788) + +[fips3610573627] +centroid = (0.72689292918146886, -1.3033593858854653) +description = Thompson town, NY +station = ('kmsv', 0.0018435000282990242) +zone = ('nyz062', 0.0016851774475596544) + +[fips3610575759] +centroid = (0.72553878057472398, -1.3089150481472436) +description = Tusten town, NY +station = ('kmsv', 0.0034079579076066492) +zone = ('nyz062', 0.0039093574168513161) + +[fips36107] +centroid = (0.73614596674384203, -1.3316417133757477) +description = Tioga County, NY +station = ('kbgm', 0.0040800815685983873) +zone = ('nyz055', 0.00017729392218584028) + +[fips3610704671] +centroid = (0.73443186143216588, -1.3351657774816195) +description = Barton town, NY +station = ('kelm', 0.0054031296072610414) +zone = ('nyz055', 0.0029560488441147076) + +[fips3610706145] +centroid = (0.73821556071756433, -1.3293415265012518) +description = Berkshire town, NY +station = ('kbgm', 0.0028971347729364627) +zone = ('nyz055', 0.0028574564786030348) + +[fips3610712221] +centroid = (0.73706907138522171, -1.3322526135205308) +description = Candor town, NY +station = ('kbgm', 0.0045450219811330851) +zone = ('nyz055', 0.0011111847303014511) + +[fips3610749913] +centroid = (0.7371385180361586, -1.3293135139667571) +description = Newark Valley town, NY +station = ('kbgm', 0.0024142021185752992) +zone = ('nyz055', 0.0021574274341720737) + +[fips3610751121] +centroid = (0.73363930741883521, -1.3325271712651621) +description = Nichols town, NY +station = ('kbgm', 0.0055372632849522967) +zone = ('nyz055', 0.0024325082371964642) + +[fips3610755893] +centroid = (0.7345355863496118, -1.3298570618557057) +description = Owego town, NY +station = ('kbgm', 0.0033897961098139019) +zone = ('nyz055', 0.0020600611525234485) + +[fips3610761511] +centroid = (0.73958203134882827, -1.3298364320639471) +description = Richford town, NY +station = ('kbgm', 0.0040891283607582332) +zone = ('nyz025', 0.0038467875586362726) + +[fips3610770178] +centroid = (0.73691174740644694, -1.334640398470184) +description = Spencer town, NY +station = ('kith', 0.0046953123022225188) +zone = ('nyz055', 0.0022917570518127773) + +[fips3610773968] +centroid = (0.73489165097031117, -1.3328888034861752) +description = Tioga town, NY +station = ('kbgm', 0.0052507075694419227) +zone = ('nyz055', 0.0013814678365886952) + +[fips36109] +centroid = (0.74094953172435074, -1.334718065621898) +description = Tompkins County, NY +station = ('kith', 0.00068466101678823783) +zone = ('nyz025', 2.2358207960076299e-05) + +[fips3610912606] +centroid = (0.73927914691043706, -1.3322967179907286) +description = Caroline town, NY +station = ('kith', 0.002816912680651971) +zone = ('nyz025', 0.0024314805218558287) + +[fips3610919620] +centroid = (0.73883967300478492, -1.3346960744733227) +description = Danby town, NY +station = ('kith', 0.0027712490741594923) +zone = ('nyz025', 0.0020875630353462244) + +[fips3610920962] +centroid = (0.74139396236507871, -1.3327743797004143) +description = Dryden town, NY +station = ('kith', 0.001253330063905814) +zone = ('nyz025', 0.0015077510627770324) + +[fips3610924548] +centroid = (0.74074803346220808, -1.337280732562601) +description = Enfield town, NY +station = ('kith', 0.0022573791570358087) +zone = ('nyz025', 0.0018996208831413746) + +[fips3610930972] +centroid = (0.74322106029252888, -1.3327309733619173) +description = Groton town, NY +station = ('kith', 0.0020531890765875653) +zone = ('nyz025', 0.0027215030128691455) + +[fips3610938077] +centroid = (0.74078644815904449, -1.3352301975843106) +description = Ithaca city, NY +station = ('kith', 0.0010007253759103957) +zone = ('nyz025', 0.00040339434727954373) + +[fips3610938088] +centroid = (0.74026216870503792, -1.3358782557888687) +description = Ithaca town, NY +station = ('kith', 0.0017070789563291954) +zone = ('nyz025', 0.0010843173103043855) + +[fips3610941234] +centroid = (0.74292604728906431, -1.3357351038836198) +description = Lansing town, NY +station = ('kith', 0.0016256333839609126) +zone = ('nyz025', 0.002134904532460351) + +[fips3610950254] +centroid = (0.73892248887779211, -1.3371010160095234) +description = Newfield town, NY +station = ('kith', 0.0033207313726891924) +zone = ('nyz025', 0.0026676565403197195) + +[fips3610975990] +centroid = (0.74199236595241735, -1.3372246725870269) +description = Ulysses town, NY +station = ('kith', 0.0020822515661424851) +zone = ('nyz025', 0.0021336483631562968) + +[fips3611000] +centroid = (0.74861520978532758, -1.376361167788877) +description = Buffalo city, NY +station = ('kbuf', 0.0017654197476458893) +zone = ('nyz010', 0.0022792043334766213) + +[fips36111] +centroid = (0.73211731049792605, -1.2961765706153452) +description = Ulster County, NY +station = ('kpou', 0.0073986197634481384) +zone = ('nyz063', 0.001546927511179343) + +[fips3611120247] +centroid = (0.7322613874276781, -1.2999614741779275) +description = Denning town, NY +station = ('kmsv', 0.0060790258066187866) +zone = ('nyz063', 0.0014598844075966945) + +[fips3611124691] +centroid = (0.73012932812002695, -1.2912884444325772) +description = Esopus town, NY +station = ('kpou', 0.0037350540193498444) +zone = ('nyz064', 0.00099121844615318914) + +[fips3611128255] +centroid = (0.72765483521313434, -1.2948283212214722) +description = Gardiner town, NY +station = ('kmgj', 0.0032195186812967983) +zone = ('nyz064', 0.0029770574774486179) + +[fips3611132] +centroid = (0.74031400498382216, -1.3411800599109442) +description = Burdett village, NY +station = ('kelm', 0.0044263746707452877) +zone = ('nyz023', 0.0005693998550054337) + +[fips3611132116] +centroid = (0.73389414294291888, -1.302384706764689) +description = Hardenburgh town, NY +station = ('kmsv', 0.0065202085140682875) +zone = ('nyz063', 0.0038438283709056409) + +[fips3611137143] +centroid = (0.73232025738334794, -1.2936863697451848) +description = Hurley town, NY +station = ('kpou', 0.0064796420945833974) +zone = ('nyz064', 0.0023261500793977231) + +[fips3611139727] +centroid = (0.73181871956949485, -1.2914874817804747) +description = Kingston city, NY +station = ('kpou', 0.0053862953005536221) +zone = ('nyz064', 0.0018834813548153726) + +[fips3611139738] +centroid = (0.7326568266763025, -1.2922184256712099) +description = Kingston town, NY +station = ('kpou', 0.0063482991107667143) +zone = ('nyz064', 0.0025403026986804658) + +[fips3611142994] +centroid = (0.72804503847400281, -1.2914576191969729) +description = Lloyd town, NY +station = ('kpou', 0.0020247435041734958) +zone = ('nyz065', 0.0021903631326032078) + +[fips3611145458] +centroid = (0.73083719875805087, -1.2944086568028301) +description = Marbletown town, NY +station = ('kpou', 0.005567417010570762) +zone = ('nyz064', 0.0015072573984284661) + +[fips3611145722] +centroid = (0.72669041862835992, -1.2913184990022966) +description = Marlborough town, NY +station = ('kpou', 0.0013545697044158034) +zone = ('nyz065', 0.0029952784018163498) + +[fips3611150562] +centroid = (0.72892000693461256, -1.2931056288898761) +description = New Paltz town, NY +station = ('kpou', 0.0035244864743432308) +zone = ('nyz064', 0.0012671431222143923) + +[fips3611154] +centroid = (0.78370816108274222, -1.2945107585640716) +description = Burke village, NY +station = ('cwbz', 0.0039799804474549933) +zone = ('nyz027', 0.0031623693392220397) + +[fips3611154749] +centroid = (0.73211731049792605, -1.2961765706153452) +description = Olive town, NY +station = ('kpou', 0.0073986197634481384) +zone = ('nyz063', 0.001546927511179343) + +[fips3611158552] +centroid = (0.7270048396931067, -1.2928381222754231) +description = Plattekill town, NY +station = ('kpou', 0.0025157729957432685) +zone = ('nyz064', 0.0031334953708556357) + +[fips3611163011] +centroid = (0.72978872711650022, -1.2962821804883833) +description = Rochester town, NY +station = ('kmgj', 0.0051865818728030946) +zone = ('nyz063', 0.0023472207243350582) + +[fips3611163737] +centroid = (0.73036950287839386, -1.2929319686293026) +description = Rosendale town, NY +station = ('kpou', 0.004521951362310519) +zone = ('nyz064', 0.00033148118776034997) + +[fips3611165299] +centroid = (0.73464299391177956, -1.2913692182703596) +description = Saugerties town, NY +station = ('kpou', 0.0081234546142457242) +zone = ('nyz059', 0.0039622075664728943) + +[fips3611166597] +centroid = (0.73352148024103303, -1.297825941665065) +description = Shandaken town, NY +station = ('kmsv', 0.0080885590623769078) +zone = ('nyz063', 0.001868830692757449) + +[fips3611166674] +centroid = (0.72661908702183098, -1.2961836391988157) +description = Shawangunk town, NY +station = ('kmgj', 0.0020165872887070412) +zone = ('nyz067', 0.0040478459205570156) + +[fips3611175935] +centroid = (0.73252379768071552, -1.2916328851604582) +description = Ulster town, NY +station = ('kpou', 0.0060946067946517088) +zone = ('nyz064', 0.0024998579890605959) + +[fips3611178828] +centroid = (0.72862052588826287, -1.2988668734842468) +description = Wawarsing town, NY +station = ('kmgj', 0.0044859695649676276) +zone = ('nyz063', 0.0030936645559100986) + +[fips3611183052] +centroid = (0.73404773191709438, -1.2944521329544973) +description = Woodstock town, NY +station = ('kpou', 0.0082741336793889196) +zone = ('nyz058', 0.0035952361017818793) + +[fips36113] +centroid = (0.76017998830184474, -1.2887186390952332) +description = Warren County, NY +station = ('kgfl', 0.0047810159222932153) +zone = ('nyz042', 0.00081365066712499583) + +[fips3611307234] +centroid = (0.76060426038971207, -1.2855681801690433) +description = Bolton town, NY +station = ('kgfl', 0.0043261609484829726) +zone = ('nyz042', 0.0026356004544359829) + +[fips3611315319] +centroid = (0.7625175252223334, -1.2893407442538143) +description = Chester town, NY +station = ('kgfl', 0.0070095212055820257) +zone = ('nyz042', 0.0016000683048690808) + +[fips3611329333] +centroid = (0.75592234485806731, -1.2853527367261772) +description = Glens Falls city, NY +station = ('kgfl', 0.00053087584190926083) +zone = ('nyz083', 0.0013268458655702814) + +[fips3611331335] +centroid = (0.76254412404013372, -1.2836852317055294) +description = Hague town, NY +station = ('kgfl', 0.0062920586060607239) +zone = ('nyz043', 0.0033812268874984504) + +[fips3611335639] +centroid = (0.76302468299637782, -1.2864137398317572) +description = Horicon town, NY +station = ('kgfl', 0.0068099947070707446) +zone = ('nyz042', 0.0029033294097710639) + +[fips3611338715] +centroid = (0.7619721098310851, -1.2926787562614235) +description = Johnsburg town, NY +station = ('kgfl', 0.0080183106442972638) +zone = ('nyz042', 0.002741428773057658) + +[fips3611340519] +centroid = (0.75808379551032201, -1.2866728514125081) +description = Lake George town, NY +station = ('kgfl', 0.0022130392654968298) +zone = ('nyz083', 0.0015538766359837661) + +[fips3611340662] +centroid = (0.75652961471800617, -1.2878735506714178) +description = Lake Luzerne town, NY +station = ('kgfl', 0.0022076981788480775) +zone = ('nyz083', 0.00066167671901551589) + +[fips3611360356] +centroid = (0.75690705962204241, -1.2858560896824525) +description = Queensbury town, NY +station = ('kgfl', 0.00094291110104346683) +zone = ('nyz083', 0.00088336283393163062) + +[fips3611371641] +centroid = (0.75773513108565116, -1.2920227393554764) +description = Stony Creek town, NY +station = ('kgfl', 0.005402926936173673) +zone = ('nyz042', 0.00379522653935927) + +[fips3611373814] +centroid = (0.75907803977201316, -1.2912982706362659) +description = Thurman town, NY +station = ('kgfl', 0.0054392251292986298) +zone = ('nyz042', 0.0023990325955583493) + +[fips3611378300] +centroid = (0.75962055791670313, -1.2881674990240386) +description = Warrensburg town, NY +station = ('kgfl', 0.0040935978819840119) +zone = ('nyz042', 0.001493890872484272) + +[fips3611440] +centroid = (0.73377699644352501, -1.3836778672659176) +description = Busti CDP, NY +station = ('kjhw', 0.001885951737512727) +zone = ('nyz019', 0.0034361097556557976) + +[fips36115] +centroid = (0.75594358551506402, -1.2817598193813142) +description = Washington County, NY +station = ('kgfl', 0.0022799729862859048) +zone = ('nyz084', 0.0027226611607697369) + +[fips3611502561] +centroid = (0.75454309841667877, -1.2824485263041512) +description = Argyle town, NY +station = ('kgfl', 0.002486784100015565) +zone = ('nyz084', 0.0014300426829770352) + +[fips3611511836] +centroid = (0.75062815037153019, -1.2818754823508438) +description = Cambridge town, NY +station = ('kddh', 0.0033158486118281313) +zone = ('nyz084', 0.0025962888006816017) + +[fips3611520885] +centroid = (0.76080420530882065, -1.2822680418062025) +description = Dresden town, NY +station = ('kgfl', 0.0048707939976516765) +zone = ('nyz043', 0.0013660847831954571) + +[fips3611522656] +centroid = (0.75100926046699568, -1.2834430149119374) +description = Easton town, NY +station = ('kddh', 0.0044560301757473235) +zone = ('nyz084', 0.0025520796194495408) + +[fips3611526715] +centroid = (0.75853630702548669, -1.2833381380771853) +description = Fort Ann town, NY +station = ('kgfl', 0.0024842071063687255) +zone = ('nyz043', 0.0016878010183427228) + +[fips3611526781] +centroid = (0.75451637742583066, -1.2838499907869174) +description = Fort Edward town, NY +station = ('kgfl', 0.0019360052860195572) +zone = ('nyz084', 0.0020332716813360623) + +[fips3611530037] +centroid = (0.75785688525427031, -1.2794313930795211) +description = Granville town, NY +station = ('kgfl', 0.0042337760503057967) +zone = ('nyz043', 0.00226518068937984) + +[fips3611530686] +centroid = (0.75306623571022624, -1.2823961315200063) +description = Greenwich town, NY +station = ('kgfl', 0.0037042755523096107) +zone = ('nyz084', 0.00053100244819390802) + +[fips3611531885] +centroid = (0.76010951190664933, -1.2791663299260205) +description = Hampton town, NY +station = ('kgfl', 0.0056116312472798725) +zone = ('vtz011', 0.002002767829248883) + +[fips3611532457] +centroid = (0.75670036027872878, -1.2813012864802302) +description = Hartford town, NY +station = ('kgfl', 0.0026125313920781095) +zone = ('nyz043', 0.0028631883247758009) + +[fips3611533040] +centroid = (0.75500264360872882, -1.2801832285614028) +description = Hebron town, NY +station = ('kgfl', 0.0036414425553075802) +zone = ('nyz084', 0.0020965423139583344) + +[fips3611538143] +centroid = (0.75189581791383886, -1.2807797820997342) +description = Jackson town, NY +station = ('kddh', 0.0038382990131396039) +zone = ('nyz084', 0.0014859376057955009) + +[fips3611539650] +centroid = (0.75634193946353923, -1.2837145532369629) +description = Kingsbury town, NY +station = ('kgfl', 0.0008288629656746779) +zone = ('nyz083', 0.0023718472060955411) + +[fips3611550] +centroid = (0.743228949180748, -1.3577182064908968) +description = Byersville CDP, NY +station = ('kdsv', 0.0010079114725164403) +zone = ('nyz013', 0.0025255722239989806) + +[fips3611560092] +centroid = (0.7635272156479046, -1.281377574821835) +description = Putnam town, NY +station = ('kgfl', 0.007644952575609318) +zone = ('nyz043', 0.0039677232991514981) + +[fips3611564782] +centroid = (0.75328686278097079, -1.2797238753555704) +description = Salem town, NY +station = ('kgfl', 0.0048057254135387998) +zone = ('nyz084', 0.0014430011510556426) + +[fips3611581578] +centroid = (0.75037130771880667, -1.2797143109512692) +description = White Creek town, NY +station = ('kddh', 0.0021266376654565096) +zone = ('nyz084', 0.0031978348585389223) + +[fips3611581633] +centroid = (0.75990131158017893, -1.2808115994519982) +description = Whitehall town, NY +station = ('kgfl', 0.0046384414631238189) +zone = ('nyz043', 0.00059778938010923504) + +[fips3611638] +centroid = (0.73836934167795754, -1.2917600847563437) +description = Cairo CDP, NY +station = ('kalb', 0.0082258211847453157) +zone = ('nyz059', 0.0012662230537438782) + +[fips3611671] +centroid = (0.76885102837184793, -1.3238033873451636) +description = Calcium CDP, NY +station = ('kgtb', 0.0014431268967813899) +zone = ('nyz007', 0.00079942502505614475) + +[fips36117] +centroid = (0.75849841592742595, -1.3450059438043636) +description = Wayne County, NY +station = ('cwqp', 0.0066289203179954563) +zone = ('nyz004', 0.0052912637934692374) + +[fips3611700000] +centroid = (0.75849841592742595, -1.3450059438043636) +description = County subdivisions not defined, NY +station = ('cwqp', 0.0066289203179954563) +zone = ('nyz004', 0.0052912637934692374) + +[fips3611702440] +centroid = (0.75220339728791785, -1.3453466844342303) +description = Arcadia town, NY +station = ('kroc', 0.0076604116393892297) +zone = ('nyz004', 0.001227756626955767) + +[fips3611704] +centroid = (0.75006350145192502, -1.3588629679472799) +description = Caledonia village, NY +station = ('kroc', 0.0033144891008779031) +zone = ('nyz003', 0.0036229651327823842) + +[fips3611711473] +centroid = (0.75358288807540152, -1.3398020352000319) +description = Butler town, NY +station = ('kfzy', 0.0057127233110297005) +zone = ('nyz005', 0.0019931836212071178) + +[fips3611728013] +centroid = (0.75162771788743987, -1.341814783800017) +description = Galen town, NY +station = ('kpeo', 0.0075630364512679956) +zone = ('nyz004', 0.0024796739614868558) + +[fips3611737165] +centroid = (0.75479484470798641, -1.3420725165706588) +description = Huron town, NY +station = ('kfzy', 0.0067465796976107382) +zone = ('nyz004', 0.0023186868498236645) + +[fips3611743973] +centroid = (0.75211606101214801, -1.3439708937447608) +description = Lyons town, NY +station = ('kpeo', 0.0077556231189976786) +zone = ('nyz004', 0.0011547376169393638) + +[fips3611744160] +centroid = (0.75186841624458245, -1.3493231204289264) +description = Macedon town, NY +station = ('kroc', 0.0047967395653022785) +zone = ('nyz014', 0.0039465927301150817) + +[fips3611745645] +centroid = (0.75338906926196747, -1.3472432115593249) +description = Marion town, NY +station = ('kroc', 0.0063243809107509331) +zone = ('nyz004', 0.0020708545984938712) + +[fips3611748] +centroid = (0.72896919031293372, -1.3100795143708817) +description = Callicoon CDP, NY +station = ('kmsv', 0.0036067520482314232) +zone = ('paz040', 0.0029704429840342428) + +[fips3611755013] +centroid = (0.75477683291010589, -1.3494180314336499) +description = Ontario town, NY +station = ('kroc', 0.0051883201275682248) +zone = ('nyz004', 0.0039647460130000619) + +[fips3611756198] +centroid = (0.75189082627217807, -1.3472046572361485) +description = Palmyra town, NY +station = ('kroc', 0.0063301387003309936) +zone = ('nyz004', 0.0024354337099055114) + +[fips3611763605] +centroid = (0.75327667005813914, -1.3421610396703203) +description = Rose town, NY +station = ('kfzy', 0.0073624917657719655) +zone = ('nyz004', 0.0016436721482193828) + +[fips3611765343] +centroid = (0.7518762702262165, -1.3396191770543007) +description = Savannah town, NY +station = ('kfzy', 0.0066789352902464818) +zone = ('nyz005', 0.0025297768635637449) + +[fips3611768220] +centroid = (0.75429838580225661, -1.3447657515927041) +description = Sodus town, NY +station = ('kroc', 0.0082616934550718141) +zone = ('nyz004', 0.0011039722078739884) + +[fips3611778102] +centroid = (0.75319771136277891, -1.3493578350277489) +description = Walworth town, NY +station = ('kroc', 0.0047701896393106515) +zone = ('nyz004', 0.0036072212170174724) + +[fips3611781] +centroid = (0.71423985060987061, -1.270050771948827) +description = Calverton CDP, NY +station = ('khwv', 0.0022619890169811663) +zone = ('nyz079', 0.0027546173494962501) + +[fips3611782040] +centroid = (0.75477746122863654, -1.3472889217324346) +description = Williamson town, NY +station = ('kroc', 0.006621901206312549) +zone = ('nyz004', 0.0026087064913327528) + +[fips3611782689] +centroid = (0.75526725297662367, -1.3398106745798295) +description = Wolcott town, NY +station = ('kfzy', 0.0050330316659641531) +zone = ('nyz005', 0.002608888092262414) + +[fips3611825] +centroid = (0.7509786299386233, -1.2807424669603269) +description = Cambridge village, NY +station = ('kddh', 0.0030286828111059142) +zone = ('nyz084', 0.0023491232632507882) + +[fips3611847] +centroid = (0.75636420986479469, -1.3220472894116844) +description = Camden village, NY +station = ('krme', 0.004770655189586798) +zone = ('nyz009', 0.0036200080754874501) + +[fips36119] +centroid = (0.71825133281594677, -1.2871089742859967) +description = Westchester County, NY +station = ('khpn', 0.0016195322994083958) +zone = ('nyz070', 0.0012101945987932669) + +[fips3611902] +centroid = (0.75116654953918549, -1.3318520080973204) +description = Camillus village, NY +station = ('ksyr', 0.0029976681417358047) +zone = ('nyz018', 0.0015743668945735275) + +[fips3611905320] +centroid = (0.71952427125259644, -1.2856958160972418) +description = Bedford town, NY +station = ('khpn', 0.0028137037396598849) +zone = ('nyz070', 0.0010842524169882265) + +[fips3611918410] +centroid = (0.72014185600841452, -1.2898390183019661) +description = Cortlandt town, NY +station = ('khpn', 0.0043107099783372786) +zone = ('nyz070', 0.0021441397078723582) + +[fips3611921820] +centroid = (0.7147658579398366, -1.2882853960150107) +description = Eastchester town, NY +station = ('khpn', 0.0024815900468517817) +zone = ('nyz071', 0.00068728422410664592) + +[fips3611930367] +centroid = (0.71610113953736743, -1.2887989591474103) +description = Greenburgh town, NY +station = ('khpn', 0.0019872480759408678) +zone = ('nyz071', 0.0011564097820954819) + +[fips3611932413] +centroid = (0.71604652818507242, -1.2867214239255913) +description = Harrison town, NY +station = ('khpn', 0.00076824839494558852) +zone = ('nyz071', 0.0010558441869288242) + +[fips3611935] +centroid = (0.7371405600713834, -1.3472841220769916) +description = Campbell CDP, NY +station = ('kelm', 0.0039803695204723476) +zone = ('nyz022', 0.002521636021760624) + +[fips3611942136] +centroid = (0.72023036165478316, -1.2843572707340096) +description = Lewisboro town, NY +station = ('kdxr', 0.0022290518115529105) +zone = ('nyz070', 0.0022256241343937668) + +[fips3611944842] +centroid = (0.71421119230355279, -1.2870780121450662) +description = Mamaroneck town, NY +station = ('khpn', 0.0026031219103480846) +zone = ('nyz071', 0.0011805346050957474) + +[fips3611948895] +centroid = (0.71910525260577762, -1.2868008538598494) +description = Mount Kisco town, NY +station = ('khpn', 0.0023858013044401995) +zone = ('nyz070', 0.00043587350605746273) + +[fips3611949011] +centroid = (0.71729911608264374, -1.2884426850872004) +description = Mount Pleasant town, NY +station = ('khpn', 0.0017008815973891052) +zone = ('nyz071', 0.0020819101468612464) + +[fips3611949121] +centroid = (0.71406838946415463, -1.2885646661486225) +description = Mount Vernon city, NY +station = ('klga', 0.0023745622139915031) +zone = ('nyz073', 0.0011666640942904326) + +[fips3611950078] +centroid = (0.71877081261451037, -1.2875790787200212) +description = New Castle town, NY +station = ('khpn', 0.0022375924569246548) +zone = ('nyz070', 0.00076715878335317149) + +[fips3611950617] +centroid = (0.71424533094372178, -1.2876924727615231) +description = New Rochelle city, NY +station = ('khpn', 0.0027126653764012764) +zone = ('nyz071', 0.0010482180102898066) + +[fips3611951693] +centroid = (0.71796434832704148, -1.2861418873474664) +description = North Castle town, NY +station = ('khpn', 0.001222202530731328) +zone = ('nyz070', 0.0016732368695427493) + +[fips3611953517] +centroid = (0.72152831065961387, -1.2845205986454116) +description = North Salem town, NY +station = ('kdxr', 0.0015651230029593306) +zone = ('nyz068', 0.0024936554447062857) + +[fips3611955541] +centroid = (0.7183360510978386, -1.2890215933467946) +description = Ossining town, NY +station = ('khpn', 0.0025886568279059686) +zone = ('nyz070', 0.0018116472974959298) + +[fips3611956979] +centroid = (0.72060099977473679, -1.2902101625674027) +description = Peekskill city, NY +station = ('kswf', 0.0043707468082229105) +zone = ('nyz070', 0.0025775277332900437) + +[fips3611957012] +centroid = (0.71384765767365488, -1.2881775695738225) +description = Pelham town, NY +station = ('klga', 0.0022783672088898207) +zone = ('nyz073', 0.0011487771730548555) + +[fips3611959685] +centroid = (0.71929175848964566, -1.2842803191672894) +description = Pound Ridge town, NY +station = ('khpn', 0.0029663227590296577) +zone = ('ctz009', 0.0024261526488371142) + +[fips3611964309] +centroid = (0.71461932009583917, -1.286069875062529) +description = Rye city, NY +station = ('khpn', 0.0021367739823324717) +zone = ('nyz071', 0.0014049268640104948) + +[fips3611964320] +centroid = (0.71568676346635896, -1.2860929134086556) +description = Rye town, NY +station = ('khpn', 0.0010740672074997805) +zone = ('nyz071', 0.0012766970850023596) + +[fips3611965442] +centroid = (0.71544620473555642, -1.2877149002424115) +description = Scarsdale town, NY +station = ('khpn', 0.0016801953091739002) +zone = ('nyz071', 0.00015298318066861826) + +[fips3611968308] +centroid = (0.72089749630806554, -1.28670514000367) +description = Somers town, NY +station = ('khpn', 0.0041597199307428978) +zone = ('nyz070', 0.0014720189662969748) + +[fips3611981677] +centroid = (0.71602718993696046, -1.2872176210319333) +description = White Plains city, NY +station = ('khpn', 0.00099565649359268467) +zone = ('nyz071', 0.00081974679594225535) + +[fips3611984000] +centroid = (0.71464010696723035, -1.2892301427391153) +description = Yonkers city, NY +station = ('klga', 0.0028444008114068059) +zone = ('nyz071', 0.001325965327408634) + +[fips3611984077] +centroid = (0.7202948864772295, -1.288364825949269) +description = Yorktown town, NY +station = ('khpn', 0.0038697110190783002) +zone = ('nyz070', 0.0012449404620061464) + +[fips36121] +centroid = (0.74527937943928346, -1.3653460632669829) +description = Wyoming County, NY +station = ('kbuf', 0.0076257177276889167) +zone = ('nyz012', 5.4667965849743795e-05) + +[fips3612102418] +centroid = (0.74301025942547305, -1.3678142555352757) +description = Arcade town, NY +station = ('kole', 0.0058996935805885747) +zone = ('nyz012', 0.0029517302274097851) + +[fips3612103012] +centroid = (0.74736115581118467, -1.365642839052992) +description = Attica town, NY +station = ('kbuf', 0.006541208008901624) +zone = ('nyz012', 0.0020829959972090456) + +[fips3612105936] +centroid = (0.74730280945429062, -1.3681210844177762) +description = Bennington town, NY +station = ('kbuf', 0.0048641764253936392) +zone = ('nyz012', 0.0028973410572596696) + +[fips3612111] +centroid = (0.74872994773035373, -1.301454638259594) +description = Canajoharie village, NY +station = ('kalb', 0.010167738583458154) +zone = ('nyz040', 0.0016394902157360848) + +[fips3612112782] +centroid = (0.74463402649506594, -1.36173790919775) +description = Castile town, NY +station = ('kdsv', 0.0042746044257045996) +zone = ('nyz012', 0.0026830907552861517) + +[fips3612118696] +centroid = (0.74757113637349204, -1.361615352177675) +description = Covington town, NY +station = ('kdsv', 0.0060148961192391338) +zone = ('nyz012', 0.0035207388217523812) + +[fips3612121369] +centroid = (0.74289152467645991, -1.365790930240024) +description = Eagle town, NY +station = ('kole', 0.0059602221493255773) +zone = ('nyz012', 0.0024339776671629537) + +[fips3612127980] +centroid = (0.74439500365400535, -1.3635410437545703) +description = Gainesville town, NY +station = ('kdsv', 0.0054482238423223771) +zone = ('nyz012', 0.0015609481471348836) + +[fips3612128596] +centroid = (0.74303123828308193, -1.3624640708863347) +description = Genesee Falls town, NY +station = ('kdsv', 0.004458473420678644) +zone = ('nyz012', 0.0030666391204630938) + +[fips3612138341] +centroid = (0.74441490040747804, -1.3681053590012158) +description = Java town, NY +station = ('kbuf', 0.0066220969472653548) +zone = ('nyz012', 0.0022595382921333017) + +[fips3612144] +centroid = (0.7485542454345554, -1.3487960484481167) +description = Canandaigua city, NY +station = ('kpeo', 0.0051095919807332621) +zone = ('nyz014', 0.00067752498924551069) + +[fips3612146877] +centroid = (0.7474203224728273, -1.3636827121299546) +description = Middlebury town, NY +station = ('kdsv', 0.0069809950881236779) +zone = ('nyz012', 0.0024249923055084687) + +[fips3612155222] +centroid = (0.74601629235606048, -1.3657626733594339) +description = Orangeville town, NY +station = ('kbuf', 0.0069889620728985609) +zone = ('nyz012', 0.00080468466839066211) + +[fips3612157254] +centroid = (0.74619325128892011, -1.3615498325175552) +description = Perry town, NY +station = ('kdsv', 0.0049935629804338001) +zone = ('nyz012', 0.0028799281622656366) + +[fips3612157826] +centroid = (0.74293788062139288, -1.363736223924821) +description = Pike town, NY +station = ('kole', 0.0065397811284729343) +zone = ('nyz012', 0.002615559808214808) + +[fips3612166773] +centroid = (0.74605976850772771, -1.3679293599994449) +description = Sheldon town, NY +station = ('kbuf', 0.0056148636026252278) +zone = ('nyz012', 0.002094252009894743) + +[fips3612177] +centroid = (0.74109755309821246, -1.3574694447126101) +description = Canaseraga village, NY +station = ('kdsv', 0.0019900207521078269) +zone = ('nyz013', 0.004648537114761422) + +[fips3612178344] +centroid = (0.74592251581535074, -1.3636560085923992) +description = Warsaw town, NY +station = ('kdsv', 0.0061116118073182603) +zone = ('nyz012', 0.0013445245178405852) + +[fips3612181325] +centroid = (0.74434046211488059, -1.3656253334005946) +description = Wethersfield town, NY +station = ('kole', 0.0073988075404166926) +zone = ('nyz012', 0.00098937051759295054) + +[fips3612188] +centroid = (0.75196025546982237, -1.3221828142281016) +description = Canastota village, NY +station = ('krme', 0.0052214966925850943) +zone = ('nyz036', 0.0031831820122554966) + +[fips3612210] +centroid = (0.73702526362099674, -1.3323257951760668) +description = Candor village, NY +station = ('kbgm', 0.0045939934146256621) +zone = ('nyz055', 0.0010878958429705358) + +[fips3612254] +centroid = (0.73775685328355511, -1.3544742502766776) +description = Canisteo village, NY +station = ('kdsv', 0.0053657754151340614) +zone = ('nyz022', 0.0028657164067407578) + +[fips36123] +centroid = (0.74417762289566936, -1.3457243213244845) +description = Yates County, NY +station = ('kpeo', 0.00072701348784623941) +zone = ('nyz015', 8.4043821295440058e-05) + +[fips3612304594] +centroid = (0.74216656726505903, -1.3448281296601703) +description = Barrington town, NY +station = ('kpeo', 0.0022166886056200134) +zone = ('nyz015', 0.0020431126435271119) + +[fips3612306002] +centroid = (0.7456386903723915, -1.3447702894487592) +description = Benton town, NY +station = ('kpeo', 0.001255771884011729) +zone = ('nyz015', 0.0017019041923390685) + +[fips3612331] +centroid = (0.77840829427613623, -1.3119757098834184) +description = Canton village, NY +station = ('kmss', 0.0070523293330596089) +zone = ('nyz087', 0.0022125334956276587) + +[fips3612338044] +centroid = (0.74383993659199366, -1.3493515518424417) +description = Italy town, NY +station = ('kpeo', 0.0034095621422601378) +zone = ('nyz015', 0.0026659925576570233) + +[fips3612338583] +centroid = (0.74373589751528213, -1.3466601494161112) +description = Jerusalem town, NY +station = ('kpeo', 0.0015296588704750312) +zone = ('nyz015', 0.00076322971434490054) + +[fips3612347020] +centroid = (0.74557050035851613, -1.3489520285233676) +description = Middlesex town, NY +station = ('kpeo', 0.0032913871059966696) +zone = ('nyz014', 0.0023575689153076127) + +[fips3612347504] +centroid = (0.74369306713543837, -1.3440414399531264) +description = Milo town, NY +station = ('kpeo', 0.0008764337221338148) +zone = ('nyz015', 0.0013162802092175382) + +[fips3612353] +centroid = (0.77009354571963518, -1.3322221575250834) +description = Cape Vincent village, NY +station = ('kart', 0.0044570506387709421) +zone = ('nyz007', 0.0054638541893540582) + +[fips3612359597] +centroid = (0.74550086172136143, -1.3470567231287494) +description = Potter town, NY +station = ('kpeo', 0.0020150370801378229) +zone = ('nyz015', 0.0017049645115998859) + +[fips3612370816] +centroid = (0.74217780718544191, -1.3429398055825601) +description = Starkey town, NY +station = ('kpeo', 0.0025866123570905653) +zone = ('nyz023', 0.0024370911026404566) + +[fips3612375055] +centroid = (0.74472981016441542, -1.34311032425048) +description = Torrey town, NY +station = ('kpeo', 0.001273222207201223) +zone = ('nyz015', 0.0020390084751262822) + +[fips3612419] +centroid = (0.71122212397329476, -1.2847739157330458) +description = Carle Place CDP, NY +station = ('utff', 0.0025957631658134936) +zone = ('nyz179', 0.0011085960883305142) + +[fips3612532] +centroid = (0.72292750621435264, -1.2860881312065049) +description = Carmel Hamlet CDP, NY +station = ('kdxr', 0.0028336695698620139) +zone = ('nyz068', 0.00081915546897292041) + +[fips3612584] +centroid = (0.75282981340975108, -1.2999500597246196) +description = Caroga Lake CDP, NY +station = ('ksch', 0.0085768800583570816) +zone = ('nyz082', 0.00089020635878385814) + +[fips3612683] +centroid = (0.76768923250196541, -1.31952956469922) +description = Carthage village, NY +station = ('kgtb', 0.0019823038755828796) +zone = ('nyz007', 0.003970217301056355) + +[fips3612749] +centroid = (0.73899970224390032, -1.3843432042300705) +description = Cassadaga village, NY +station = ('kdkk', 0.0027990905391789929) +zone = ('nyz019', 0.0020787597961286854) + +[fips3612771] +centroid = (0.7440545248235263, -1.3622740045307924) +description = Castile village, NY +station = ('kdsv', 0.0044597800416189331) +zone = ('nyz012', 0.002531834985261691) + +[fips3612870] +centroid = (0.74235478357159412, -1.2871994172478347) +description = Castleton-on-Hudson village, NY +station = ('kalb', 0.0038253536229322267) +zone = ('nyz052', 0.0022613345431013714) + +[fips3612881] +centroid = (0.76595702812594602, -1.3180104999314544) +description = Castorland village, NY +station = ('kgtb', 0.0039503928694899406) +zone = ('nyz008', 0.0019640542630596316) + +[fips3612958] +centroid = (0.75338128509350366, -1.3363550797405133) +description = Cato village, NY +station = ('kfzy', 0.0039801794341658208) +zone = ('nyz005', 0.00056064591249433045) + +[fips3613002] +centroid = (0.73674892564052841, -1.2890986321799776) +description = Catskill village, NY +station = ('kalb', 0.0094109774368390711) +zone = ('nyz060', 0.0017354375768127133) + +[fips3613024] +centroid = (0.73879375339216491, -1.3764978794291858) +description = Cattaraugus village, NY +station = ('kole', 0.0066827879163288886) +zone = ('nyz020', 0.0028173354479343825) + +[fips3613068] +centroid = (0.74908742606774725, -1.3391560015774064) +description = Cayuga village, NY +station = ('kpeo', 0.0062566326231829486) +zone = ('nyz016', 0.002710571283569301) + +[fips3613079] +centroid = (0.74120075441688293, -1.3349747162884036) +description = Cayuga Heights village, NY +station = ('kith', 0.00055975499883178766) +zone = ('nyz025', 0.00033280021212013896) + +[fips3613145] +centroid = (0.74923961877852119, -1.3238353966836451) +description = Cazenovia village, NY +station = ('ksyr', 0.0045796525535720858) +zone = ('nyz036', 0.0023222719774706065) + +[fips3613233] +centroid = (0.70904356909437039, -1.2867934362105284) +description = Cedarhurst village, NY +station = ('kjfk', 0.00053359911682848184) +zone = ('nyz178', 0.0010952967661934084) + +[fips3613288] +centroid = (0.73487850864104376, -1.3836374105338562) +description = Celoron village, NY +station = ('kjhw', 0.00078829394799730145) +zone = ('nyz019', 0.0024373727934016909) + +[fips3613376] +centroid = (0.71330791460247567, -1.2755002309256216) +description = Centereach CDP, NY +station = ('kisp', 0.0012398353410028931) +zone = ('nyz078', 0.0012059293377655073) + +[fips3613420] +centroid = (0.71213004425018223, -1.2705153436891232) +description = Center Moriches CDP, NY +station = ('khwv', 0.00097838773685873489) +zone = ('nyz079', 0.0043598656979947983) + +[fips3613442] +centroid = (0.71385291111470339, -1.2805907803950358) +description = Centerport CDP, NY +station = ('utff', 0.0029663875613265751) +zone = ('nyz177', 0.0031951765466487815) + +[fips3613530] +centroid = (0.74537608813313638, -1.2976120690185255) +description = Central Bridge CDP, NY +station = ('kalb', 0.0070620455862558124) +zone = ('nyz047', 0.0024002113437722769) + +[fips3613552] +centroid = (0.71181101551621018, -1.2774846528318466) +description = Central Islip CDP, NY +station = ('kisp', 0.0012801594973188065) +zone = ('nyz080', 0.00060416634297520125) + +[fips3613585] +centroid = (0.75548297567217026, -1.3289264872051276) +description = Central Square village, NY +station = ('ksyr', 0.0030028277708934311) +zone = ('nyz006', 0.0024437204905547079) + +[fips3613618] +centroid = (0.7138142869783568, -1.2831995589345768) +description = Centre Island village, NY +station = ('utff', 0.0031864618742218419) +zone = ('nyz177', 0.0015121654809817371) + +[fips3613662] +centroid = (0.75100112723268142, -1.3137266416423117) +description = Chadwicks CDP, NY +station = ('krme', 0.0039235527151892805) +zone = ('nyz037', 0.0023472424023599724) + +[fips3613739] +centroid = (0.78518415112456874, -1.2816900411178194) +description = Champlain village, NY +station = ('cwit', 0.0043689243858433787) +zone = ('nyz028', 0.00337094521635624) + +[fips3613805] +centroid = (0.71838102823266259, -1.2874786524748614) +description = Chappaqua CDP, NY +station = ('khpn', 0.0018556239300663298) +zone = ('nyz070', 0.0011108712998961991) + +[fips3613981] +centroid = (0.78411689974026677, -1.2929468562878224) +description = Chateaugay village, NY +station = ('cwbz', 0.0041561292901663213) +zone = ('nyz031', 0.0052300816589648204) + +[fips3614003] +centroid = (0.73935330595035431, -1.2845270563636437) +description = Chatham village, NY +station = ('kpsf', 0.0042431610986457657) +zone = ('nyz061', 0.0020320183808203826) + +[fips3614036] +centroid = (0.76913787323441318, -1.3287671386444204) +description = Chaumont village, NY +station = ('kart', 0.0019386716149923939) +zone = ('nyz007', 0.0028323199483541272) + +[fips3614058] +centroid = (0.73670457682423518, -1.3869958952535915) +description = Chautauqua CDP, NY +station = ('kjhw', 0.0028191817352595425) +zone = ('nyz019', 0.0013635574567240542) + +[fips3614102] +centroid = (0.78349315397218899, -1.2815813071054201) +description = Chazy CDP, NY +station = ('kpbg', 0.0042291996525605216) +zone = ('nyz028', 0.0018574987257070404) + +[fips3615000] +centroid = (0.74890338109812438, -1.3744601377143122) +description = Cheektowaga CDP, NY +station = ('kbuf', 0.0004795407136162835) +zone = ('nyz010', 0.00089760558722829311) + +[fips3615121] +centroid = (0.73603026886772727, -1.3239669596026604) +description = Chenango Bridge CDP, NY +station = ('kbgm', 0.0016993118557998236) +zone = ('nyz056', 0.00053063653938471985) + +[fips3615187] +centroid = (0.73820177261647346, -1.3805704132524967) +description = Cherry Creek village, NY +station = ('kjhw', 0.0033274843906886207) +zone = ('nyz019', 0.0036274579515494184) + +[fips3615242] +centroid = (0.74696913740789417, -1.3046715244171148) +description = Cherry Valley village, NY +station = ('krme', 0.011226109845750511) +zone = ('nyz040', 0.0043918689924759115) + +[fips3615297] +centroid = (0.72181480645632867, -1.2963768122404267) +description = Chester village, NY +station = ('kmgj', 0.002790947686016686) +zone = ('nyz067', 0.00087465109518308976) + +[fips3615363] +centroid = (0.76171600021664754, -1.2877653926176718) +description = Chestertown CDP, NY +station = ('kgfl', 0.0058048214710292555) +zone = ('nyz042', 0.0012962979886659602) + +[fips3615400] +centroid = (0.71706691747895845, -1.2923826437005299) +description = Chestnut Ridge village, NY +station = ('kteb', 0.0038091146406012805) +zone = ('nyz069', 0.0012278264389440575) + +[fips3615561] +centroid = (0.75130636786556271, -1.3242666326352277) +description = Chittenango village, NY +station = ('ksyr', 0.0031187432558580312) +zone = ('nyz036', 0.0035094855678007631) + +[fips3615638] +centroid = (0.752276282237481, -1.3592901023751205) +description = Churchville village, NY +station = ('kroc', 0.0025385788223956608) +zone = ('nyz003', 0.002487706964103875) + +[fips3615814] +centroid = (0.75006800440139521, -1.3717471979250124) +description = Clarence CDP, NY +station = ('kbuf', 0.0019119192827987972) +zone = ('nyz010', 0.0014069980999212059) + +[fips3615836] +centroid = (0.75063862234704226, -1.372366615276545) +description = Clarence Center CDP, NY +station = ('kbuf', 0.001852489069623296) +zone = ('nyz010', 0.0014658885864894161) + +[fips3615902] +centroid = (0.75206480069201687, -1.3155638799327161) +description = Clark Mills CDP, NY +station = ('krme', 0.0025174237600308598) +zone = ('nyz037', 0.00065045178346426332) + +[fips3615946] +centroid = (0.75467710479664685, -1.3598943179088685) +description = Clarkson CDP, NY +station = ('kroc', 0.0036611442526286184) +zone = ('nyz003', 0.0032428703103213083) + +[fips3616050] +centroid = (0.7370435372182651, -1.2866738287968893) +description = Claverack-Red Mills CDP, NY +station = ('kpsf', 0.0066741262934104355) +zone = ('nyz060', 0.00031370100886805771) + +[fips3616089] +centroid = (0.7720898009581888, -1.3278942122190356) +description = Clayton village, NY +station = ('kart', 0.0044788078678218522) +zone = ('nyz007', 0.0040549351403785135) + +[fips3616111] +centroid = (0.75007348473524649, -1.3133464914779347) +description = Clayville village, NY +station = ('krme', 0.0048843487164377652) +zone = ('nyz037', 0.0032175451418969591) + +[fips3616188] +centroid = (0.75468040346893306, -1.324429175148466) +description = Cleveland village, NY +station = ('ksyr', 0.0034895918307949708) +zone = ('nyz006', 0.0046024983725023874) + +[fips3616375] +centroid = (0.749806571532739, -1.3462676946805077) +description = Clifton Springs village, NY +station = ('kpeo', 0.0055329324704046041) +zone = ('nyz014', 0.0028208628332378059) + +[fips3616419] +centroid = (0.75134445094984115, -1.31560234698943) +description = Clinton village, NY +station = ('krme', 0.003231225232694921) +zone = ('nyz037', 0.001293004526970506) + +[fips3616452] +centroid = (0.72767279465113743, -1.292386500878177) +description = Clintondale CDP, NY +station = ('kpou', 0.0023865175723616293) +zone = ('nyz064', 0.0024673533747779646) + +[fips3616573] +centroid = (0.75196034273628498, -1.3416417169513892) +description = Clyde village, NY +station = ('kfzy', 0.0077401264310711154) +zone = ('nyz004', 0.0023855821937451525) + +[fips3616628] +centroid = (0.74488910636524486, -1.3000125774184261) +description = Cobleskill village, NY +station = ('kalb', 0.008874138520873362) +zone = ('nyz047', 0.0016787880288342783) + +[fips3616727] +centroid = (0.74176371036711364, -1.3526302750153605) +description = Cohocton village, NY +station = ('kdsv', 0.003020132180851569) +zone = ('nyz022', 0.0043195382266410457) + +[fips3616749] +centroid = (0.7465273596676294, -1.2864430788164831) +description = Cohoes city, NY +station = ('kalb', 0.0012475366584885994) +zone = ('nyz053', 0.0016664887477281806) + +[fips3616815] +centroid = (0.75467818690078303, -1.3096753310227049) +description = Cold Brook village, NY +station = ('krme', 0.0045932927913434193) +zone = ('nyz038', 0.0027886678093599015) + +[fips3616936] +centroid = (0.72290207676715112, -1.2907537802695215) +description = Cold Spring village, NY +station = ('kswf', 0.0023657151990401802) +zone = ('nyz068', 0.002689240470314659) + +[fips3616958] +centroid = (0.71308044584106323, -1.2819948454183878) +description = Cold Spring Harbor CDP, NY +station = ('utff', 0.0021873137445161477) +zone = ('nyz177', 0.0019522828182886515) + +[fips3617332] +centroid = (0.74561989317634747, -1.2886068856632282) +description = Colonie village, NY +station = ('kalb', 0.00065111193936062976) +zone = ('nyz052', 0.0018267782937194986) + +[fips3617398] +centroid = (0.77780739486796702, -1.3080643746698215) +description = Colton CDP, NY +station = ('kmss', 0.0065377253121742937) +zone = ('nyz029', 0.0044136258291969941) + +[fips3617530] +centroid = (0.71286611940891831, -1.2790363028967473) +description = Commack CDP, NY +station = ('utff', 0.0026085145009764597) +zone = ('nyz078', 0.0015888748178861222) + +[fips3617620] +centroid = (0.74571518815350635, -1.3555915751572192) +description = Conesus Hamlet CDP, NY +station = ('kdsv', 0.0028512503463293914) +zone = ('nyz013', 0.0013558439806880588) + +[fips3617622] +centroid = (0.74704690927936312, -1.3561374268807806) +description = Conesus Lake CDP, NY +station = ('kdsv', 0.0041233570559889464) +zone = ('nyz013', 0.0016131549703670342) + +[fips3617739] +centroid = (0.718195918612196, -1.2905798058496827) +description = Congers CDP, NY +station = ('khpn', 0.0035293650326904975) +zone = ('nyz069', 0.0010440623088219471) + +[fips3617882] +centroid = (0.76035055932964224, -1.3164679081253714) +description = Constableville village, NY +station = ('krme', 0.0057974726469462402) +zone = ('nyz009', 0.0032461448548153781) + +[fips3617893] +centroid = (0.75499744252755796, -1.3266178703903444) +description = Constantia CDP, NY +station = ('ksyr', 0.0027244077296787596) +zone = ('nyz006', 0.0033720251601827948) + +[fips3618036] +centroid = (0.73616849894448511, -1.346303822996024) +description = Coopers Plains CDP, NY +station = ('kelm', 0.0030803728145935086) +zone = ('nyz022', 0.0035376101759076076) + +[fips3618047] +centroid = (0.74523595564749379, -1.3077867102391219) +description = Cooperstown village, NY +station = ('krme', 0.011087935605082195) +zone = ('nyz046', 0.0017325005695733133) + +[fips3618124] +centroid = (0.73548811724218033, -1.2845046986959257) +description = Copake Lake CDP, NY +station = ('kpsf', 0.0065204276396448177) +zone = ('nyz061', 0.0021459321678802502) + +[fips3618135] +centroid = (0.76608497821340982, -1.3207363377039263) +description = Copenhagen village, NY +station = ('kgtb', 0.0028369843416608995) +zone = ('nyz008', 0.0033971416977092287) + +[fips3618146] +centroid = (0.70986008647833099, -1.2809645077477656) +description = Copiague CDP, NY +station = ('kfrg', 0.0011124075603754513) +zone = ('nyz179', 0.0025315961167079433) + +[fips3618157] +centroid = (0.71351220539142168, -1.2741930316757553) +description = Coram CDP, NY +station = ('kisp', 0.0018853921690356781) +zone = ('nyz078', 0.0021863408982452856) + +[fips3618201] +centroid = (0.74981374483596464, -1.3683836866570314) +description = Corfu village, NY +station = ('kbuf', 0.0042529750123104408) +zone = ('nyz011', 0.0027578197184090834) + +[fips3618212] +centroid = (0.75477918910459607, -1.2885826604932105) +description = Corinth village, NY +station = ('kgfl', 0.0031162021155842446) +zone = ('nyz041', 0.001186197642506418) + +[fips3618256] +centroid = (0.73563121678755128, -1.3449298998088541) +description = Corning city, NY +station = ('kelm', 0.0020788185555699499) +zone = ('nyz024', 0.003868859915346857) + +[fips3618333] +centroid = (0.72315136214421338, -1.2918079765910184) +description = Cornwall-on-Hudson village, NY +station = ('kswf', 0.0016055643360875329) +zone = ('nyz067', 0.0038406655782007638) + +[fips3618388] +centroid = (0.74352537590090673, -1.3295765874449101) +description = Cortland city, NY +station = ('kith', 0.0040715283225050579) +zone = ('nyz044', 0.0014032060648204339) + +[fips3618443] +centroid = (0.74340880536016596, -1.3303921099911973) +description = Cortland West CDP, NY +station = ('kith', 0.0034915657231533066) +zone = ('nyz044', 0.0019999471173066117) + +[fips3618542] +centroid = (0.74893626310123207, -1.2881749864865295) +description = Country Knolls CDP, NY +station = ('ksch', 0.0019339722685890709) +zone = ('nyz050', 0.0010381284595065579) + +[fips3618597] +centroid = (0.71358817957376086, -1.2827789694914313) +description = Cove Neck village, NY +station = ('utff', 0.002850631917079593) +zone = ('nyz177', 0.0016004153205016641) + +[fips3618718] +centroid = (0.73928024646786594, -1.2881925619520973) +description = Coxsackie village, NY +station = ('kalb', 0.0068487805469755877) +zone = ('nyz059', 0.0015904956664861696) + +[fips3618762] +centroid = (0.72719953117116665, -1.2983719679215513) +description = Cragsmoor CDP, NY +station = ('kmgj', 0.0030640436765337485) +zone = ('nyz063', 0.0044730232556527243) + +[fips3618817] +centroid = (0.77110190969497505, -1.3066979913050203) +description = Cranberry Lake CDP, NY +station = ('kgtb', 0.011077498247256866) +zone = ('nyz029', 0.0024454569018401181) + +[fips3619070] +centroid = (0.76610464807407974, -1.3158251731750319) +description = Croghan village, NY +station = ('kgtb', 0.0050817844710186978) +zone = ('nyz008', 0.0020498661986176813) + +[fips3619092] +centroid = (0.72073833973357615, -1.2887504739007896) +description = Crompond CDP, NY +station = ('khpn', 0.0043930268655489628) +zone = ('nyz070', 0.0017622597371324111) + +[fips3619213] +centroid = (0.71924411100106622, -1.2898184234167924) +description = Croton-on-Hudson village, NY +station = ('khpn', 0.0036357679586545583) +zone = ('nyz070', 0.0020302571330289856) + +[fips3619229] +centroid = (0.72678393336968183, -1.2902985984006012) +description = Crown Heights CDP, NY +station = ('kpou', 0.0006088552773879743) +zone = ('nyz065', 0.0025124714113033846) + +[fips3619290] +centroid = (0.7196226031026538, -1.2902487867037493) +description = Crugers CDP, NY +station = ('khpn', 0.0041312541569541875) +zone = ('nyz069', 0.0018816523387229145) + +[fips3619308] +centroid = (0.74717142106820045, -1.3484115873204874) +description = Crystal Beach CDP, NY +station = ('kpeo', 0.0038609370072567035) +zone = ('nyz014', 0.00092136954646295356) + +[fips3619356] +centroid = (0.7368481999683818, -1.3661601546432831) +description = Cuba village, NY +station = ('kole', 0.0012107930029508504) +zone = ('nyz021', 0.0032715574714781586) + +[fips3619408] +centroid = (0.78045851509516151, -1.2810184209683597) +description = Cumberland Head CDP, NY +station = ('kpbg', 0.0014543224065472126) +zone = ('vtz001', 0.001882438586393228) + +[fips3619411] +centroid = (0.7429960698986543, -1.3564513243467518) +description = Cumminsville CDP, NY +station = ('kdsv', 7.3611068172233345e-05) +zone = ('nyz013', 0.002843880619389204) + +[fips3619466] +centroid = (0.71595540454482587, -1.2651360818548438) +description = Cutchogue CDP, NY +station = ('kfok', 0.0034431647194686143) +zone = ('nyz079', 0.0013351955839241462) + +[fips3619510] +centroid = (0.74661157180403814, -1.3591534780012742) +description = Cuylerville CDP, NY +station = ('kdsv', 0.0041986681354402667) +zone = ('nyz013', 0.0015290860933177544) + +[fips3619587] +centroid = (0.74250193228082961, -1.3605179764104836) +description = Dalton CDP, NY +station = ('kdsv', 0.0030547410821589226) +zone = ('nyz013', 0.0039575672072648194) + +[fips3619642] +centroid = (0.78051190471697995, -1.2866340701965286) +description = Dannemora village, NY +station = ('kpbg', 0.0033579058028726629) +zone = ('nyz031', 0.00095081492802650419) + +[fips3619664] +centroid = (0.74285546617411369, -1.3560671948316803) +description = Dansville village, NY +station = ('kdsv', 0.00026404303243590134) +zone = ('nyz013', 0.0030610896621225403) + +[fips3619774] +centroid = (0.74082767283597661, -1.3072662530561772) +description = Davenport Center CDP, NY +station = ('kmsv', 0.013090722328439122) +zone = ('nyz046', 0.0036851476304227107) + +[fips3619972] +centroid = (0.71142135330740996, -1.279705706478057) +description = Deer Park CDP, NY +station = ('utff', 0.0013458751343610228) +zone = ('nyz080', 0.0018471131748734216) + +[fips3619994] +centroid = (0.76858013581864582, -1.3208990198435047) +description = Deferiet village, NY +station = ('kgtb', 0.00068709339251572473) +zone = ('nyz007', 0.0028649914778975088) + +[fips3620049] +centroid = (0.77687634897849067, -1.3141404766612519) +description = DeKalb Junction CDP, NY +station = ('kmss', 0.0091954232231422316) +zone = ('nyz087', 0.00017189894192170624) + +[fips3620082] +centroid = (0.74609582701007382, -1.2947266906991284) +description = Delanson village, NY +station = ('ksch', 0.0036512854957779927) +zone = ('nyz048', 0.00080439306460184528) + +[fips3620115] +centroid = (0.74161287901315631, -1.3697274680080194) +description = Delevan village, NY +station = ('kole', 0.0047318777022136785) +zone = ('nyz085', 0.0043000524867046284) + +[fips3620126] +centroid = (0.73789569422555135, -1.3075033036751831) +description = Delhi village, NY +station = ('kmsv', 0.010201951668430806) +zone = ('nyz057', 0.0015516843833519344) + +[fips3620302] +centroid = (0.77043105749038587, -1.327238282579551) +description = Depauville CDP, NY +station = ('kart', 0.0027810276736558687) +zone = ('nyz007', 0.0024501015209952904) + +[fips3620313] +centroid = (0.74895160454535703, -1.3736500780485841) +description = Depew village, NY +station = ('kbuf', 0.00052809868638162857) +zone = ('nyz010', 0.00047481962864038998) + +[fips3620346] +centroid = (0.73415836833837833, -1.3163782680149889) +description = Deposit village, NY +station = ('kbgm', 0.0076311706456879324) +zone = ('paz040', 0.0052969703388707481) + +[fips3620379] +centroid = (0.71719378546228596, -1.2625943588651645) +description = Dering Harbor village, NY +station = ('khto', 0.0025984328111752055) +zone = ('nyz081', 0.0035242984136651442) + +[fips3620390] +centroid = (0.74627706199960098, -1.3244735239647591) +description = DeRuyter village, NY +station = ('ksyr', 0.0068188415191314826) +zone = ('nyz044', 0.0036996101491279607) + +[fips3620500] +centroid = (0.76814334972004183, -1.327199885336007) +description = Dexter village, NY +station = ('kart', 0.00050404821734029008) +zone = ('nyz007', 0.0017438390802859667) + +[fips3620687] +centroid = (0.71215624164225477, -1.2799730385595849) +description = Dix Hills CDP, NY +station = ('utff', 0.0016066979248236639) +zone = ('nyz080', 0.0022405336978183386) + +[fips3620698] +centroid = (0.71575942152311944, -1.2892505979979487) +description = Dobbs Ferry village, NY +station = ('khpn', 0.0024301756822863929) +zone = ('nyz071', 0.0012581117878362686) + +[fips3620731] +centroid = (0.75235375740297705, -1.3051567608557539) +description = Dolgeville village, NY +station = ('krme', 0.0081960314226532903) +zone = ('nyz038', 0.0022433416492240801) + +[fips3620841] +centroid = (0.72848772378547866, -1.2840913349158833) +description = Dover Plains CDP, NY +station = ('kpou', 0.004447300237048959) +zone = ('nyz066', 0.00068071107005437882) + +[fips3620852] +centroid = (0.73445942018105481, -1.3089410186465134) +description = Downsville CDP, NY +station = ('kmsv', 0.0071312594109106406) +zone = ('nyz057', 0.00207547950189049) + +[fips3620896] +centroid = (0.7449750812841982, -1.3431538353087322) +description = Dresden village, NY +station = ('kpeo', 0.001331810218563241) +zone = ('nyz015', 0.0020988871606236791) + +[fips3620951] +centroid = (0.74160488540518221, -1.3317104269883988) +description = Dryden village, NY +station = ('kith', 0.0020198682101648202) +zone = ('nyz025', 0.0023195357845024515) + +[fips3620989] +centroid = (0.7461673331495281, -1.2934168560020918) +description = Duane Lake CDP, NY +station = ('ksch', 0.0028063890117466239) +zone = ('nyz048', 0.0009081988072149735) + +[fips3620995] +centroid = (0.74636040147138361, -1.2938707986872431) +description = Duanesburg CDP, NY +station = ('ksch', 0.0029745970218937627) +zone = ('nyz048', 0.00054971634117061336) + +[fips3621050] +centroid = (0.7421790638225032, -1.3435074390151862) +description = Dundee village, NY +station = ('kpeo', 0.0023936555435252142) +zone = ('nyz015', 0.002526837282415444) + +[fips3621105] +centroid = (0.74142548301136968, -1.3846202752488244) +description = Dunkirk city, NY +station = ('kdkk', 0.00072258798274960545) +zone = ('nyz019', 0.0044255014005926858) + +[fips3621226] +centroid = (0.75263068879539108, -1.3206033785215097) +description = Durhamville CDP, NY +station = ('krme', 0.0038875978521312423) +zone = ('nyz036', 0.0036597836858909645) + +[fips3621523] +centroid = (0.74595511856577801, -1.3184846360760509) +description = Earlville village, NY +station = ('krme', 0.0088019611433041104) +zone = ('nyz036', 0.0034209916667983327) + +[fips3621578] +centroid = (0.70835203473814534, -1.2865206587017342) +description = East Atlantic Beach CDP, NY +station = ('kjfk', 0.0011024194440838592) +zone = ('nyz178', 0.0017403903627819337) + +[fips3621589] +centroid = (0.74642209886044164, -1.372126196172083) +description = East Aurora village, NY +station = ('kbuf', 0.0032647643839883657) +zone = ('nyz085', 0.0030910733490197269) + +[fips3621600] +centroid = (0.74896956398336012, -1.3562486567140102) +description = East Avon CDP, NY +station = ('kroc', 0.0035713785889670713) +zone = ('nyz013', 0.0033392636192736856) + +[fips3621809] +centroid = (0.71485802877763449, -1.2881837131327896) +description = Eastchester CDP, NY +station = ('khpn', 0.0023617786543831025) +zone = ('nyz071', 0.00056731523808186703) + +[fips3621985] +centroid = (0.71087743889931843, -1.2813342557498006) +description = East Farmingdale CDP, NY +station = ('kfrg', 5.7493314593983507e-05) +zone = ('nyz179', 0.0023365722991183827) + +[fips3622065] +centroid = (0.71090339194529562, -1.284519813247248) +description = East Garden City CDP, NY +station = ('utff', 0.0023891376455083759) +zone = ('nyz179', 0.00074689121672555543) + +[fips3622084] +centroid = (0.74808736985964697, -1.2901410824356088) +description = East Glenville CDP, NY +station = ('ksch', 0.00027641075923450046) +zone = ('nyz049', 0.00080002650686084107) + +[fips3622106] +centroid = (0.74338103717176673, -1.2863488310368754) +description = East Greenbush CDP, NY +station = ('kalb', 0.0030194674625344917) +zone = ('nyz053', 0.0022585770651051495) + +[fips3622183] +centroid = (0.71473917185557356, -1.2600596695523707) +description = East Hampton village, NY +station = ('khto', 0.00074889891952720754) +zone = ('nyz081', 0.0035409579642474947) + +[fips3622200] +centroid = (0.71510534193264208, -1.2599317194649071) +description = East Hampton North CDP, NY +station = ('khto', 0.00086327484418256427) +zone = ('nyz081', 0.003723962625371191) + +[fips3622260] +centroid = (0.71202141495753812, -1.2850723670351367) +description = East Hills village, NY +station = ('klga', 0.0033649129588941562) +zone = ('nyz177', 0.00077905603015334139) + +[fips3622315] +centroid = (0.71083193816571899, -1.277347976098123) +description = East Islip CDP, NY +station = ('kisp', 0.0017045924994396147) +zone = ('nyz080', 0.00039823257567253307) + +[fips3622326] +centroid = (0.74047394695647484, -1.3345603053108102) +description = East Ithaca CDP, NY +station = ('kith', 0.0011339388141031659) +zone = ('nyz025', 0.00046790379479115578) + +[fips3622370] +centroid = (0.73218063104318842, -1.2911002455793346) +description = East Kingston CDP, NY +station = ('kpou', 0.0056676951050667838) +zone = ('nyz064', 0.0023380005101131542) + +[fips3622447] +centroid = (0.71787160153059049, -1.2626612049755159) +description = East Marion CDP, NY +station = ('khto', 0.0032360667652933223) +zone = ('ctz011', 0.0035907656893313477) + +[fips3622480] +centroid = (0.70993864374796323, -1.2816993262694401) +description = East Massapequa CDP, NY +station = ('kfrg', 0.0010244580209623206) +zone = ('nyz179', 0.0019688376293212602) + +[fips3622502] +centroid = (0.71070007854073081, -1.2838443184668484) +description = East Meadow CDP, NY +station = ('utff', 0.0018930260534315035) +zone = ('nyz179', 0.00061475427471865008) + +[fips3622546] +centroid = (0.71226253219370117, -1.2698970258950188) +description = East Moriches CDP, NY +station = ('khwv', 0.0014177598021786343) +zone = ('nyz079', 0.0039648517387524708) + +[fips3622557] +centroid = (0.7424451916268473, -1.2829038477994115) +description = East Nassau village, NY +station = ('kpsf', 0.0033967029208409128) +zone = ('nyz053', 0.0032336093550498725) + +[fips3622612] +centroid = (0.7134758152765176, -1.2797320958563474) +description = East Northport CDP, NY +station = ('utff', 0.0028169970336841339) +zone = ('nyz078', 0.0020026698552931574) + +[fips3622623] +centroid = (0.71295918036463468, -1.2833207720511279) +description = East Norwich CDP, NY +station = ('utff', 0.0024985299589450334) +zone = ('nyz177', 0.00094983315689957967) + +[fips3622733] +centroid = (0.71157127709015633, -1.2737722153398072) +description = East Patchogue CDP, NY +station = ('khwv', 0.0017250324120993441) +zone = ('nyz080', 0.0026798048360380539) + +[fips3622810] +centroid = (0.7128100594333443, -1.2693021129661843) +description = Eastport CDP, NY +station = ('kfok', 0.0014474921147352802) +zone = ('nyz079', 0.0032571334652351466) + +[fips3622832] +centroid = (0.71295420617626648, -1.2667407375691273) +description = East Quogue CDP, NY +station = ('kfok', 0.00049879251923919132) +zone = ('nyz081', 0.001911045762943346) + +[fips3622843] +centroid = (0.73597146872522756, -1.3780631954221294) +description = East Randolph village, NY +station = ('kjhw', 0.0040161564153992817) +zone = ('nyz020', 0.0038627215118356411) + +[fips3622865] +centroid = (0.75245001231122455, -1.3524063492723297) +description = East Rochester village, NY +station = ('kroc', 0.0025003972522620369) +zone = ('nyz003', 0.0027247935919336337) + +[fips3622876] +centroid = (0.70936820033524139, -1.2857339689946903) +description = East Rockaway village, NY +station = ('kjfk', 0.0013308835399314007) +zone = ('nyz179', 0.0013716275794717469) + +[fips3622980] +centroid = (0.71464300421378868, -1.2720163442991308) +description = East Shoreham CDP, NY +station = ('khwv', 0.0022658758850162388) +zone = ('nyz078', 0.0040102816603980185) + +[fips3623052] +centroid = (0.75160375451681005, -1.3276669005372557) +description = East Syracuse village, NY +station = ('ksyr', 0.0010014499479364578) +zone = ('nyz018', 0.0018869260732402846) + +[fips3623217] +centroid = (0.71141103841153064, -1.2851488822695443) +description = East Williston village, NY +station = ('kjfk', 0.0028378411271534187) +zone = ('nyz177', 0.0013542940840209758) + +[fips3623316] +centroid = (0.71441694916907039, -1.2809808265762717) +description = Eatons Neck CDP, NY +station = ('utff', 0.0034839161660570406) +zone = ('nyz177', 0.0031909140339247185) + +[fips3623404] +centroid = (0.74442383649324828, -1.3770875040103869) +description = Eden CDP, NY +station = ('kbuf', 0.0053552719663149768) +zone = ('nyz085', 0.0018673637436754749) + +[fips3623602] +centroid = (0.74523560658164345, -1.3134003523386513) +description = Edmeston CDP, NY +station = ('krme', 0.0095172254652451885) +zone = ('nyz046', 0.0030395428487431037) + +[fips3623635] +centroid = (0.77353125093411834, -1.3133485858730372) +description = Edwards village, NY +station = ('kgtb', 0.007675492103150397) +zone = ('nyz087', 0.0035142001584649043) + +[fips3623701] +centroid = (0.74990645672583067, -1.375444904838165) +description = Eggertsville CDP, NY +station = ('kbuf', 0.0011066855212351419) +zone = ('nyz010', 0.0015523205011982381) + +[fips3623745] +centroid = (0.75183206103626343, -1.3646539005922269) +description = Elba village, NY +station = ('kroc', 0.0064807094553259569) +zone = ('nyz011', 0.0013243819835589005) + +[fips3623789] +centroid = (0.7511312415284177, -1.334186961930516) +description = Elbridge village, NY +station = ('kfzy', 0.0055219297687919347) +zone = ('nyz018', 0.003218567700962691) + +[fips3623822] +centroid = (0.7718934863239244, -1.2843686153741478) +description = Elizabethtown CDP, NY +station = ('kpbg', 0.0075512548839823043) +zone = ('nyz035', 0.0019707964150090396) + +[fips3623965] +centroid = (0.72789146695311979, -1.2978657526253028) +description = Ellenville village, NY +station = ('kmgj', 0.0035174166647352189) +zone = ('nyz063', 0.0037851533252545185) + +[fips3624020] +centroid = (0.73783535819330992, -1.373090368410762) +description = Ellicottville village, NY +station = ('kole', 0.004014023118610776) +zone = ('nyz020', 0.00046608762505517603) + +[fips3624075] +centroid = (0.7633190153214342, -1.3287992527026573) +description = Ellisburg village, NY +station = ('kart', 0.0045183713781681281) +zone = ('nyz006', 0.0053929821150450865) + +[fips3624141] +centroid = (0.74749495275164257, -1.3724271956548819) +description = Elma Center CDP, NY +station = ('kbuf', 0.0022281808799868288) +zone = ('nyz010', 0.0020451198457765944) + +[fips3624229] +centroid = (0.73466821391947079, -1.3405805916727618) +description = Elmira city, NY +station = ('kelm', 0.0017333772485200309) +zone = ('nyz024', 0.0010544088160929826) + +[fips3624251] +centroid = (0.73524944346697008, -1.3408590764082098) +description = Elmira Heights village, NY +station = ('kelm', 0.0011893621234340488) +zone = ('nyz024', 0.00088610141899388671) + +[fips3624273] +centroid = (0.71033462404865566, -1.2864152757214988) +description = Elmont CDP, NY +station = ('kjfk', 0.0014007533555698505) +zone = ('nyz178', 0.0012847550311063166) + +[fips3624295] +centroid = (0.71652980985494974, -1.2883031809200887) +description = Elmsford village, NY +station = ('khpn', 0.0015204746697221126) +zone = ('nyz071', 0.0013168240131201296) + +[fips3624405] +centroid = (0.71290064202152281, -1.2800048384585563) +description = Elwood CDP, NY +station = ('utff', 0.0022107562627260479) +zone = ('nyz080', 0.0026558899121772402) + +[fips3624515] +centroid = (0.73473978987209521, -1.3275563513824344) +description = Endicott village, NY +station = ('kbgm', 0.0020673288955216783) +zone = ('nyz055', 0.0033912639824391962) + +[fips3624526] +centroid = (0.73518266716978875, -1.3268616405269706) +description = Endwell CDP, NY +station = ('kbgm', 0.0014434223761692121) +zone = ('nyz056', 0.0027189321525437301) + +[fips3624625] +centroid = (0.73625105301810456, -1.3381737128210915) +description = Erin CDP, NY +station = ('kelm', 0.0029684672758869754) +zone = ('nyz024', 0.0013646302281428153) + +[fips3624713] +centroid = (0.74638364925702028, -1.2960359843440969) +description = Esperance village, NY +station = ('ksch', 0.0044087909472634874) +zone = ('nyz048', 0.0013710713288027977) + +[fips3624823] +centroid = (0.76946800226242795, -1.3230956039736022) +description = Evans Mills village, NY +station = ('kgtb', 0.0011379872771996992) +zone = ('nyz007', 0.0015180200432822) + +[fips3624867] +centroid = (0.7476057986124367, -1.3261829867006252) +description = Fabius village, NY +station = ('ksyr', 0.0051375340958178337) +zone = ('nyz018', 0.004014993617699367) + +[fips3624988] +centroid = (0.75611223668068428, -1.3387579617881966) +description = Fair Haven village, NY +station = ('kfzy', 0.0041147333200015302) +zone = ('nyz005', 0.0028067275314870919) + +[fips3625043] +centroid = (0.75121409230800984, -1.3307883520912773) +description = Fairmount CDP, NY +station = ('ksyr', 0.002304846554316889) +zone = ('nyz018', 0.00092734555237788832) + +[fips3625076] +centroid = (0.75222502191734997, -1.3516356467812338) +description = Fairport village, NY +station = ('kroc', 0.0030770465465393046) +zone = ('nyz003', 0.0033246056263821701) + +[fips3625109] +centroid = (0.72836274075774343, -1.2900145809714241) +description = Fairview CDP, NY +station = ('kpou', 0.0017651119208900012) +zone = ('nyz065', 0.0011086383978339033) + +[fips3625120] +centroid = (0.71635625431413141, -1.2879823370436945) +description = Fairview CDP, NY +station = ('khpn', 0.0013223608016673868) +zone = ('nyz071', 0.0010835521186401669) + +[fips3625164] +centroid = (0.73511494839481129, -1.3822531549975146) +description = Falconer village, NY +station = ('kjhw', 0.0010486861005364035) +zone = ('nyz019', 0.0029016075420994973) + +[fips3625384] +centroid = (0.71092081033123056, -1.2818827429205322) +description = Farmingdale village, NY +station = ('utff', 0.00039127233122202568) +zone = ('nyz179', 0.0019597036362287001) + +[fips3625417] +centroid = (0.7127726221208891, -1.2747912083702913) +description = Farmingville CDP, NY +station = ('kisp', 0.0010415634364988235) +zone = ('nyz078', 0.001862225412309036) + +[fips3625428] +centroid = (0.74342411189770596, -1.3802213823086831) +description = Farnham village, NY +station = ('kdkk', 0.00308718468281775) +zone = ('nyz085', 0.0041436678459481477) + +[fips3625527] +centroid = (0.7510624930091816, -1.3264125847637249) +description = Fayetteville village, NY +station = ('ksyr', 0.0019604480215074998) +zone = ('nyz018', 0.0025542774511982656) + +[fips3625571] +centroid = (0.76829306406327791, -1.3222516500138004) +description = Felts Mills CDP, NY +station = ('kgtb', 0.00061835705556243946) +zone = ('nyz007', 0.0019268220910398305) + +[fips3625747] +centroid = (0.74118811823309849, -1.3632889658507048) +description = Fillmore CDP, NY +station = ('kole', 0.0052464844704572184) +zone = ('nyz021', 0.003811147368952481) + +[fips3625839] +centroid = (0.70927238175930696, -1.2776320284338849) +description = Fire Island CDP, NY +station = ('kisp', 0.0031332157031133331) +zone = ('nyz080', 0.0019725809235813007) + +[fips3625857] +centroid = (0.72330018636953097, -1.2921208617660236) +description = Firthcliffe CDP, NY +station = ('kswf', 0.0013375769459462528) +zone = ('nyz067', 0.0036338689095381719) + +[fips3625923] +centroid = (0.72035979527211114, -1.2560958871947514) +description = Fishers Island CDP, NY +station = ('kgon', 0.001488572394344657) +zone = ('ctz012', 0.0023364685512642395) + +[fips3625934] +centroid = (0.7727508618656741, -1.3265010904100936) +description = Fishers Landing CDP, NY +station = ('kart', 0.0051111051317554151) +zone = ('nyz007', 0.0042536327797085653) + +[fips3625967] +centroid = (0.72490405668565117, -1.2896718506662099) +description = Fishkill village, NY +station = ('kpou', 0.0017390427803984558) +zone = ('nyz068', 0.0026480378159801816) + +[fips3626121] +centroid = (0.71359158296580238, -1.2672419088638376) +description = Flanders CDP, NY +station = ('kfok', 0.00063591167885499345) +zone = ('nyz079', 0.0018891516244174281) + +[fips3626209] +centroid = (0.73574138196993721, -1.3008753983874422) +description = Fleischmanns village, NY +station = ('kmsv', 0.0086544313213721691) +zone = ('nyz063', 0.004541174720975056) + +[fips3626264] +centroid = (0.71073214023908993, -1.2863569468178973) +description = Floral Park village, NY +station = ('kjfk', 0.0017624824004644993) +zone = ('nyz178', 0.0015451849815383595) + +[fips3626319] +centroid = (0.72135576740976171, -1.2977256375929529) +description = Florida village, NY +station = ('kmgj', 0.0034429375966571339) +zone = ('nyz067', 0.0014018339259309143) + +[fips3626352] +centroid = (0.71222588027940936, -1.285881920555382) +description = Flower Hill village, NY +station = ('klga', 0.0027769981134408818) +zone = ('nyz177', 0.0011255589518887835) + +[fips3626462] +centroid = (0.74967822001954731, -1.2980518570834432) +description = Fonda village, NY +station = ('ksch', 0.0059023804894952677) +zone = ('nyz040', 0.0012346112203565371) + +[fips3626561] +centroid = (0.74094701845022792, -1.3346813962543134) +description = Forest Home CDP, NY +station = ('kith', 0.00067976714872161213) +zone = ('nyz025', 3.3428861306938246e-05) + +[fips3626649] +centroid = (0.74121450761138863, -1.3818739298576412) +description = Forestville village, NY +station = ('kdkk', 0.0014925726496760959) +zone = ('nyz019', 0.004862632874179605) + +[fips3626704] +centroid = (0.75774542852823801, -1.2826393256979791) +description = Fort Ann village, NY +station = ('kgfl', 0.0021568447541021551) +zone = ('nyz043', 0.0019977552644634662) + +[fips3626752] +centroid = (0.78490559657595049, -1.3004024839733217) +description = Fort Covington Hamlet CDP, NY +station = ('cwbz', 0.0037472094659308374) +zone = ('nyz027', 0.0015877539725363851) + +[fips3626759] +centroid = (0.76872519013277907, -1.3227459970711353) +description = Fort Drum CDP, NY +station = ('kgtb', 0.00068902677114426577) +zone = ('nyz007', 0.0015375062708583912) + +[fips3626770] +centroid = (0.7551798468876838, -1.2842589388839523) +description = Fort Edward village, NY +station = ('kgfl', 0.0012094670339851611) +zone = ('nyz084', 0.0027044912300918916) + +[fips3626880] +centroid = (0.74975871460464927, -1.2956680514844843) +description = Fort Johnson village, NY +station = ('ksch', 0.0043077772261724788) +zone = ('nyz039', 0.0027647137981134428) + +[fips3626902] +centroid = (0.72156911645752553, -1.2913198952656981) +description = Fort Montgomery CDP, NY +station = ('kswf', 0.0031147398000213795) +zone = ('nyz069', 0.0033507254110032732) + +[fips3626924] +centroid = (0.74931623873268371, -1.3024833527740118) +description = Fort Plain village, NY +station = ('krme', 0.011166128522886872) +zone = ('nyz039', 0.0032279641365760511) + +[fips3626946] +centroid = (0.71390274026484779, -1.2793694164377829) +description = Fort Salonga CDP, NY +station = ('utff', 0.0033215207298664903) +zone = ('nyz078', 0.0017857585964933176) + +[fips3627133] +centroid = (0.74864079631216185, -1.3587049109302192) +description = Fowlerville CDP, NY +station = ('kroc', 0.0044191617832225341) +zone = ('nyz013', 0.0030405758005962041) + +[fips3627188] +centroid = (0.75115050996335964, -1.3102462980342022) +description = Frankfort village, NY +station = ('krme', 0.005398886895869085) +zone = ('nyz038', 0.0017663364155583647) + +[fips3627221] +centroid = (0.73904555204335021, -1.3119020395356917) +description = Franklin village, NY +station = ('kmsv', 0.012205940872849859) +zone = ('nyz057', 0.0036277900331333902) + +[fips3627309] +centroid = (0.71035216460763828, -1.2859147327453193) +description = Franklin Square CDP, NY +station = ('kjfk', 0.0016598352108782878) +zone = ('nyz179', 0.0012543080098700672) + +[fips3627331] +centroid = (0.73888070569549935, -1.3692939805817017) +description = Franklinville village, NY +station = ('kole', 0.0021040184007506315) +zone = ('nyz020', 0.0032610209190976841) + +[fips3627419] +centroid = (0.74072948061225929, -1.3846044276592164) +description = Fredonia village, NY +station = ('kdkk', 0.0012101839718568199) +zone = ('nyz019', 0.0037348334485908961) + +[fips3627452] +centroid = (0.72723920250506457, -1.2880179766670203) +description = Freedom Plains CDP, NY +station = ('kpou', 0.0012645858715138341) +zone = ('nyz065', 0.0019163259965342793) + +[fips3627485] +centroid = (0.70951835101079042, -1.2843004079069797) +description = Freeport village, NY +station = ('utff', 0.0026422960519669517) +zone = ('nyz179', 0.00066161463639032904) + +[fips3627529] +centroid = (0.74194885489416518, -1.3324890009144208) +description = Freeville village, NY +station = ('kith', 0.0014858789699024387) +zone = ('nyz025', 0.0019354152268915078) + +[fips3627672] +centroid = (0.73401725846835464, -1.3811303846897067) +description = Frewsburg CDP, NY +station = ('kjhw', 0.0023843169672306866) +zone = ('nyz019', 0.0042604183786876049) + +[fips3627694] +centroid = (0.73662584502167772, -1.3638318854211229) +description = Friendship CDP, NY +station = ('kelz', 0.0026001364118679207) +zone = ('nyz021', 0.0017312750911876798) + +[fips3627815] +centroid = (0.7557940107981681, -1.3334183189279376) +description = Fulton city, NY +station = ('kfzy', 0.00083113638656178432) +zone = ('nyz005', 0.0034542273537703947) + +[fips3627859] +centroid = (0.7495548776013089, -1.2979968268521276) +description = Fultonville village, NY +station = ('ksch', 0.0058275431083395389) +zone = ('nyz040', 0.0011789807124228363) + +[fips3627969] +centroid = (0.74423446826940698, -1.3637070594730201) +description = Gainesville village, NY +station = ('kdsv', 0.0055262559897959222) +zone = ('nyz012', 0.0015669786723294136) + +[fips3628035] +centroid = (0.75201652488490667, -1.3296055075506159) +description = Galeville CDP, NY +station = ('ksyr', 0.0011494248292682218) +zone = ('nyz018', 0.0014345818677668569) + +[fips3628101] +centroid = (0.75081474352186095, -1.2920993244030536) +description = Galway village, NY +station = ('ksch', 0.0031991817502689899) +zone = ('nyz050', 0.0023948219447060162) + +[fips3628145] +centroid = (0.73583740998538194, -1.3461309830401988) +description = Gang Mills CDP, NY +station = ('kelm', 0.002946802063814554) +zone = ('nyz022', 0.0038053952766502843) + +[fips3628178] +centroid = (0.71079853256383574, -1.2853546740416468) +description = Garden City village, NY +station = ('kjfk', 0.0022756120474359174) +zone = ('nyz179', 0.0010253912781094314) + +[fips3628189] +centroid = (0.71109829286286574, -1.2856672450573867) +description = Garden City Park CDP, NY +station = ('kjfk', 0.0023516133686598073) +zone = ('nyz179', 0.0013984233925097879) + +[fips3628200] +centroid = (0.71056045220057118, -1.2856173635473647) +description = Garden City South CDP, NY +station = ('kjfk', 0.0019666148757195839) +zone = ('nyz179', 0.0010857878014901327) + +[fips3628244] +centroid = (0.72744480229094932, -1.2941249186263335) +description = Gardiner CDP, NY +station = ('kswf', 0.0031949338291965834) +zone = ('nyz064', 0.002914528816840946) + +[fips3628310] +centroid = (0.72500233617583099, -1.2925423762336725) +description = Gardnertown CDP, NY +station = ('kswf', 0.00088856159893830331) +zone = ('nyz067', 0.0040372353039068052) + +[fips3628431] +centroid = (0.75390504094873467, -1.371423264815842) +description = Gasport CDP, NY +station = ('kbuf', 0.0049934707678412817) +zone = ('nyz001', 0.0021108894449460435) + +[fips3628453] +centroid = (0.75316809312537258, -1.356199508242274) +description = Gates CDP, NY +station = ('kroc', 0.00069477574372678666) +zone = ('nyz003', 0.00016352537978564876) + +[fips3628618] +centroid = (0.74698334438800551, -1.358032976621494) +description = Geneseo village, NY +station = ('kdsv', 0.0042263820696103746) +zone = ('nyz013', 0.0013124479602525888) + +[fips3628640] +centroid = (0.74810208298524139, -1.34360248964625) +description = Geneva city, NY +station = ('kpeo', 0.003817694982926694) +zone = ('nyz016', 0.0024896832283167226) + +[fips3628761] +centroid = (0.73541062462339168, -1.2895889998866179) +description = Germantown CDP, NY +station = ('kpou', 0.0087720895854529451) +zone = ('nyz060', 0.002765618807638271) + +[fips3628860] +centroid = (0.73872369587598996, -1.2848725268357835) +description = Ghent CDP, NY +station = ('kpsf', 0.004702921453662647) +zone = ('nyz061', 0.001627287669294638) + +[fips3628959] +centroid = (0.74122965706929589, -1.3146275282423134) +description = Gilbertsville village, NY +station = ('kbgm', 0.0097347076559731391) +zone = ('nyz046', 0.004705668607429863) + +[fips3628990] +centroid = (0.70923463028758627, -1.2807884912927019) +description = Gilgo CDP, NY +station = ('kfrg', 0.0017511236756080463) +zone = ('nyz179', 0.0028092714385771758) + +[fips3629014] +centroid = (0.73383773390149443, -1.2906739140029502) +description = Glasco CDP, NY +station = ('kpou', 0.0072512532275492633) +zone = ('nyz064', 0.0039761896192982244) + +[fips3629058] +centroid = (0.73761597030633419, -1.3264553278771063) +description = Glen Aubrey CDP, NY +station = ('kbgm', 0.0011088985253942607) +zone = ('nyz056', 0.0029377659202267448) + +[fips3629113] +centroid = (0.71354751340218936, -1.2853454761564889) +description = Glen Cove city, NY +station = ('khpn', 0.0032824275010656136) +zone = ('nyz177', 0.0010694172995849109) + +[fips3629245] +centroid = (0.71287838907355994, -1.2848769076122062) +description = Glen Head CDP, NY +station = ('utff', 0.0032858593842584206) +zone = ('nyz177', 0.00033537621750774854) + +[fips3629322] +centroid = (0.76799845248554122, -1.3257241221869833) +description = Glen Park village, NY +station = ('kart', 0.0010019948570642477) +zone = ('nyz007', 0.00089544545523350576) + +[fips3629333] +centroid = (0.75592234485806731, -1.2853527367261772) +description = Glens Falls city, NY +station = ('kgfl', 0.00053087584190926083) +zone = ('nyz083', 0.0013268458655702814) + +[fips3629338] +centroid = (0.75629558351860626, -1.285953863027149) +description = Glens Falls North CDP, NY +station = ('kgfl', 0.00080070381767736803) +zone = ('nyz083', 0.00077558755335842115) + +[fips3629421] +centroid = (0.71260824701193615, -1.2852207898347263) +description = Glenwood Landing CDP, NY +station = ('klga', 0.0033429722602350675) +zone = ('nyz177', 0.00053461395826146863) + +[fips3629443] +centroid = (0.75135563851034648, -1.2976021031884966) +description = Gloversville city, NY +station = ('ksch', 0.0063299319279231069) +zone = ('nyz039', 0.00095938717886776665) + +[fips3629476] +centroid = (0.72054956492168054, -1.2858209212980247) +description = Golden's Bridge CDP, NY +station = ('kdxr', 0.0028602970887971757) +zone = ('nyz070', 0.0014697233629121129) + +[fips3629509] +centroid = (0.7131968069422937, -1.2734286647298443) +description = Gordon Heights CDP, NY +station = ('khwv', 0.0014987164550446907) +zone = ('nyz080', 0.0035188311206804514) + +[fips3629520] +centroid = (0.74699472393472843, -1.3462536796866142) +description = Gorham CDP, NY +station = ('kpeo', 0.0028283510295700628) +zone = ('nyz014', 0.0023092760258131505) + +[fips3629542] +centroid = (0.72259578893671861, -1.2972476093641241) +description = Goshen village, NY +station = ('kmgj', 0.0021554389703016229) +zone = ('nyz067', 0.00027785350606620402) + +[fips3629597] +centroid = (0.77381917790081989, -1.3171307841752791) +description = Gouverneur village, NY +station = ('kgtb', 0.0060170540337621554) +zone = ('nyz087', 0.0037313991076672283) + +[fips3629630] +centroid = (0.74107427040599083, -1.3776672325747295) +description = Gowanda village, NY +station = ('kdkk', 0.0045427530155827218) +zone = ('nyz085', 0.0036346024780531112) + +[fips3629872] +centroid = (0.71674188481235956, -1.2901709101125252) +description = Grand View-on-Hudson village, NY +station = ('khpn', 0.0029126971032820445) +zone = ('nyz069', 0.0020275761125695159) + +[fips3629894] +centroid = (0.75026211992080205, -1.3780075194189907) +description = Grandyle Village CDP, NY +station = ('kiag', 0.0022809781642985642) +zone = ('nyz010', 0.0034519211530040003) + +[fips3630026] +centroid = (0.75770717091103423, -1.2788135814309003) +description = Granville village, NY +station = ('kgfl', 0.0046073328635224389) +zone = ('nyz043', 0.0026840235869172611) + +[fips3630136] +centroid = (0.76823859233732317, -1.3212171410062656) +description = Great Bend CDP, NY +station = ('kgtb', 0.00071300619386979757) +zone = ('nyz007', 0.0026689338633572035) + +[fips3630169] +centroid = (0.71213566421037366, -1.2868853452489384) +description = Great Neck village, NY +station = ('klga', 0.0020127249683041578) +zone = ('nyz177', 0.0018703988690389089) + +[fips3630191] +centroid = (0.71186257254231411, -1.287038602610556) +description = Great Neck Estates village, NY +station = ('klga', 0.001870245516635699) +zone = ('nyz176', 0.001507235413189627) + +[fips3630202] +centroid = (0.71204146879064356, -1.286703796100146) +description = Great Neck Gardens CDP, NY +station = ('klga', 0.0021359543295434414) +zone = ('nyz177', 0.0017711372019018233) + +[fips3630213] +centroid = (0.71186543488228737, -1.2867651444233537) +description = Great Neck Plaza village, NY +station = ('klga', 0.0020772863251849252) +zone = ('nyz177', 0.0018837229666426331) + +[fips3630235] +centroid = (0.71061918252990086, -1.2769170019459282) +description = Great River CDP, NY +station = ('kisp', 0.0016872924521437874) +zone = ('nyz080', 0.0006673300902941188) + +[fips3630279] +centroid = (0.75414835729975527, -1.3561670451181869) +description = Greece CDP, NY +station = ('kroc', 0.0016391095123178313) +zone = ('nyz003', 0.0011049597684468298) + +[fips3630411] +centroid = (0.73879905919309097, -1.3223955873172124) +description = Greene village, NY +station = ('kbgm', 0.0035932581314607839) +zone = ('nyz056', 0.0030396825987740279) + +[fips3630521] +centroid = (0.74609107971450839, -1.2861784170887107) +description = Green Island village, NY +station = ('kalb', 0.0013770650439657796) +zone = ('nyz053', 0.0012324564444775557) + +[fips3630543] +centroid = (0.71321300359775219, -1.2804333516965061) +description = Greenlawn CDP, NY +station = ('utff', 0.0023753512052971906) +zone = ('nyz177', 0.0031374058626361312) + +[fips3630576] +centroid = (0.71737269916390789, -1.2630382833604092) +description = Greenport village, NY +station = ('khto', 0.0029176907027280126) +zone = ('nyz079', 0.0034114051020516611) + +[fips3630581] +centroid = (0.717171602327493, -1.2634058147942941) +description = Greenport West CDP, NY +station = ('khto', 0.0029095243885217158) +zone = ('nyz079', 0.0030692916811142319) + +[fips3630598] +centroid = (0.7123028667527147, -1.2850228694975503) +description = Greenvale CDP, NY +station = ('klga', 0.003431446584695165) +zone = ('nyz177', 0.00053483395259408019) + +[fips3630609] +centroid = (0.74026026629615327, -1.2918983671929791) +description = Greenville CDP, NY +station = ('kalb', 0.0065153668217265035) +zone = ('nyz059', 0.0022386507479858235) + +[fips3630642] +centroid = (0.7155613091997256, -1.2883842165572588) +description = Greenville CDP, NY +station = ('khpn', 0.0019655040668831412) +zone = ('nyz071', 0.00058029399215958491) + +[fips3630675] +centroid = (0.75200123580065925, -1.2827606784408705) +description = Greenwich village, NY +station = ('kgfl', 0.0045701034026465756) +zone = ('nyz084', 0.0014449507211683815) + +[fips3630752] +centroid = (0.71946063654806858, -1.2966119080906702) +description = Greenwood Lake village, NY +station = ('kfwn', 0.0045192380331380384) +zone = ('njz002', 0.0023861026409083127) + +[fips3630807] +centroid = (0.74753706754649318, -1.3596364280585935) +description = Greigsville CDP, NY +station = ('kdsv', 0.0051822387087059781) +zone = ('nyz013', 0.0024112891165579543) + +[fips3630961] +centroid = (0.74322106029252888, -1.3327309733619173) +description = Groton village, NY +station = ('kith', 0.0020531890765875653) +zone = ('nyz025', 0.0027215030128691455) + +[fips3631022] +centroid = (0.74461643357620588, -1.3572844398118988) +description = Groveland Station CDP, NY +station = ('kdsv', 0.0018060067041352427) +zone = ('nyz013', 0.0011351318783372438) + +[fips3631137] +centroid = (0.74014765765281454, -1.3174690638909003) +description = Guilford CDP, NY +station = ('kbgm', 0.0073759101317534938) +zone = ('nyz045', 0.0022143133778662065) + +[fips3631258] +centroid = (0.75565057964023918, -1.2885754697366922) +description = Hadley CDP, NY +station = ('kgfl', 0.0027872751169151799) +zone = ('nyz083', 0.001474282235732481) + +[fips3631291] +centroid = (0.74998075539208797, -1.2943325604474432) +description = Hagaman village, NY +station = ('ksch', 0.0035805578513280647) +zone = ('nyz048', 0.0031547220438528671) + +[fips3631346] +centroid = (0.77338247906867841, -1.3165557679999167) +description = Hailesboro CDP, NY +station = ('kgtb', 0.0059128080314149551) +zone = ('nyz087', 0.0039244731711982695) + +[fips3631445] +centroid = (0.71361451659217345, -1.2813281645507111) +description = Halesite CDP, NY +station = ('utff', 0.0026693495703010695) +zone = ('nyz177', 0.0025892458586182243) + +[fips3631533] +centroid = (0.74693993804950842, -1.3450897021551667) +description = Hall CDP, NY +station = ('kpeo', 0.0025673639477057923) +zone = ('nyz015', 0.0028854257426617195) + +[fips3631643] +centroid = (0.74566391038008273, -1.3759279945218246) +description = Hamburg village, NY +station = ('kbuf', 0.0038877766976539887) +zone = ('nyz085', 0.001967360009482378) + +[fips3631709] +centroid = (0.74749758819881307, -1.3186488715586637) +description = Hamilton village, NY +station = ('krme', 0.0073311199875665907) +zone = ('nyz036', 0.0020975808882144494) + +[fips3631786] +centroid = (0.75576816247194611, -1.3599918643607625) +description = Hamlin CDP, NY +station = ('kroc', 0.004438659294421431) +zone = ('nyz003', 0.0039572150912310271) + +[fips3631830] +centroid = (0.77573575885901991, -1.3211007799050354) +description = Hammond village, NY +station = ('kgtb', 0.0069361251271890393) +zone = ('nyz087', 0.0049803059165897815) + +[fips3631852] +centroid = (0.74017214462222003, -1.3477931299000434) +description = Hammondsport village, NY +station = ('kpeo', 0.0047616818631590115) +zone = ('nyz022', 0.0032190233508741718) + +[fips3631896] +centroid = (0.71332077767906288, -1.2657425139567418) +description = Hampton Bays CDP, NY +station = ('kfok', 0.0013024814926655057) +zone = ('nyz081', 0.0010876376987912109) + +[fips3631918] +centroid = (0.74390706195502532, -1.2867249843972652) +description = Hampton Manor CDP, NY +station = ('kalb', 0.0024262382923404178) +zone = ('nyz052', 0.0019994771965384309) + +[fips3631940] +centroid = (0.7322097082285266, -1.3139432370024839) +description = Hancock village, NY +station = ('kmsv', 0.0076779513631051836) +zone = ('paz040', 0.0030594010617082555) + +[fips3632006] +centroid = (0.7784669373390033, -1.308543066123766) +description = Hannawa Falls CDP, NY +station = ('kmss', 0.0059688100471357169) +zone = ('nyz026', 0.0043172205980286813) + +[fips3632017] +centroid = (0.75606680576025487, -1.3365337316427475) +description = Hannibal village, NY +station = ('kfzy', 0.0025249626416314853) +zone = ('nyz005', 0.0025077401086458285) + +[fips3632094] +centroid = (0.71189515783944879, -1.2871632016658561) +description = Harbor Hills CDP, NY +station = ('klga', 0.0017773113945291578) +zone = ('nyz176', 0.0014392549394320884) + +[fips3632105] +centroid = (0.7086474491673378, -1.2856919065597172) +description = Harbor Isle CDP, NY +station = ('kjfk', 0.0014538235600250432) +zone = ('nyz179', 0.0018713112685990122) + +[fips3632325] +centroid = (0.72097830505243288, -1.2940574965573288) +description = Harriman village, NY +station = ('kswf', 0.0033828089641532257) +zone = ('nyz067', 0.0026693537153135165) + +[fips3632391] +centroid = (0.75001978095416266, -1.3732123669254763) +description = Harris Hill CDP, NY +station = ('kbuf', 0.00097745955014797727) +zone = ('nyz010', 0.00064100922290262268) + +[fips3632402] +centroid = (0.71604652818507242, -1.2867214239255913) +description = Harrison village, NY +station = ('khpn', 0.00076824839494558852) +zone = ('nyz071', 0.0010558441869288242) + +[fips3632424] +centroid = (0.77061213540028028, -1.3145915220998448) +description = Harrisville village, NY +station = ('kgtb', 0.0054760211806650569) +zone = ('nyz087', 0.0063638794207771521) + +[fips3632523] +centroid = (0.71585314570395153, -1.28811403958905) +description = Hartsdale CDP, NY +station = ('khpn', 0.0016303360589171975) +zone = ('nyz071', 0.00064015518718161255) + +[fips3632578] +centroid = (0.74453318137088575, -1.3100634922483485) +description = Hartwick CDP, NY +station = ('krme', 0.010925306184506404) +zone = ('nyz046', 0.00056695535830382211) + +[fips3632710] +centroid = (0.71537626939242915, -1.2894708236429653) +description = Hastings-on-Hudson village, NY +station = ('khpn', 0.0027527204900780391) +zone = ('nyz071', 0.0013376665281275195) + +[fips3632732] +centroid = (0.7124811346825134, -1.2777642022181386) +description = Hauppauge CDP, NY +station = ('kisp', 0.0015100165261195699) +zone = ('nyz078', 0.0010990990716898193) + +[fips3632754] +centroid = (0.71869595544289233, -1.2905545858419911) +description = Haverstraw village, NY +station = ('khpn', 0.0037453285841788342) +zone = ('nyz069', 0.0011497289830515744) + +[fips3632776] +centroid = (0.72900446341711655, -1.2897976016388162) +description = Haviland CDP, NY +station = ('kpou', 0.0023756177533533732) +zone = ('nyz065', 0.00070788698574175571) + +[fips3632842] +centroid = (0.71739015245642779, -1.2879999823224322) +description = Hawthorne CDP, NY +station = ('khpn', 0.0014278376277534145) +zone = ('nyz071', 0.0021086257879685271) + +[fips3632963] +centroid = (0.71379882336118416, -1.276909723922947) +description = Head of the Harbor village, NY +station = ('kisp', 0.0018882128377831415) +zone = ('nyz078', 0.00037070838744389145) + +[fips3633128] +centroid = (0.74689250000043916, -1.3545053345906555) +description = Hemlock CDP, NY +station = ('kdsv', 0.004204466239678354) +zone = ('nyz013', 0.0024385741245847659) + +[fips3633139] +centroid = (0.71042534626317433, -1.2849017087408767) +description = Hempstead village, NY +station = ('kjfk', 0.002309912607311948) +zone = ('nyz179', 0.00053414911523321363) + +[fips3634044] +centroid = (0.76529137700252792, -1.3296831572490371) +description = Henderson CDP, NY +station = ('kart', 0.0030379569112730263) +zone = ('nyz007', 0.0048253917646320695) + +[fips3634118] +centroid = (0.72150026321853433, -1.2862709718989438) +description = Heritage Hills CDP, NY +station = ('kdxr', 0.0028525074364863148) +zone = ('nyz068', 0.0016744585243720913) + +[fips3634121] +centroid = (0.75098163190493672, -1.3088801066556188) +description = Herkimer village, NY +station = ('krme', 0.0062982363764648719) +zone = ('nyz038', 0.0012232100776532139) + +[fips3634165] +centroid = (0.77609589009687641, -1.313031634080875) +description = Hermon village, NY +station = ('kmss', 0.0094127028341813614) +zone = ('nyz087', 0.0012807810353186019) + +[fips3634198] +centroid = (0.71133818836855245, -1.2856708927955234) +description = Herricks CDP, NY +station = ('kjfk', 0.0025490104923711473) +zone = ('nyz179', 0.0015682708633723657) + +[fips3634220] +centroid = (0.76835127079383192, -1.3204850451982242) +description = Herrings village, NY +station = ('kgtb', 0.0010514856004370818) +zone = ('nyz007', 0.0031767692542993601) + +[fips3634264] +centroid = (0.77871503589217428, -1.3160510536868253) +description = Heuvelton village, NY +station = ('cxke', 0.007244552159709418) +zone = ('nyz087', 0.0021260554423603354) + +[fips3634286] +centroid = (0.70933664478236536, -1.2862097981086615) +description = Hewlett CDP, NY +station = ('kjfk', 0.00096908199369419691) +zone = ('nyz179', 0.0016917785930489989) + +[fips3634297] +centroid = (0.70921663594299822, -1.2862347737702575) +description = Hewlett Bay Park village, NY +station = ('kjfk', 0.0009388288909441899) +zone = ('nyz178', 0.0013748705601098338) + +[fips3634308] +centroid = (0.70917408481583466, -1.2860432064315588) +description = Hewlett Harbor village, NY +station = ('kjfk', 0.0010837673517671632) +zone = ('nyz179', 0.0016757594411700028) + +[fips3634319] +centroid = (0.70903587219236919, -1.2862567300122476) +description = Hewlett Neck village, NY +station = ('kjfk', 0.00093377854009548669) +zone = ('nyz178', 0.0014381630923684433) + +[fips3634374] +centroid = (0.71146840738404371, -1.283249946590082) +description = Hicksville CDP, NY +station = ('utff', 0.0015190680801140089) +zone = ('nyz179', 0.0015051476033815267) + +[fips3634451] +centroid = (0.73002841318267664, -1.2936114776669816) +description = High Falls CDP, NY +station = ('kpou', 0.004568422703281597) +zone = ('nyz064', 0.00074719327099555288) + +[fips3634484] +centroid = (0.72810432730869312, -1.2909277721426526) +description = Highland CDP, NY +station = ('kpou', 0.0018092584572452714) +zone = ('nyz065', 0.0018165736914805605) + +[fips3634495] +centroid = (0.72194785290520824, -1.2910012679574541) +description = Highland Falls village, NY +station = ('kswf', 0.0029205020797622326) +zone = ('nyz069', 0.0037645132635933318) + +[fips3634660] +centroid = (0.71781175419053955, -1.2945165181506033) +description = Hillburn village, NY +station = ('kcdw', 0.0045153202570005352) +zone = ('njz103', 0.0018143421927107411) + +[fips3634693] +centroid = (0.7178510066454169, -1.2921549654996074) +description = Hillcrest CDP, NY +station = ('khpn', 0.0045422513293032069) +zone = ('nyz069', 0.00042744197181441326) + +[fips3634786] +centroid = (0.73162544180812894, -1.2921315780876308) +description = Hillside CDP, NY +station = ('kpou', 0.0053569425685917648) +zone = ('nyz064', 0.0015348673997125303) + +[fips3634803] +centroid = (0.72633210253292546, -1.2880001044954799) +description = Hillside Lake CDP, NY +station = ('kpou', 0.0011677264551887387) +zone = ('nyz065', 0.0027930115416455897) + +[fips3634847] +centroid = (0.75555200344408657, -1.3577369164204782) +description = Hilton village, NY +station = ('kroc', 0.0033283728596192729) +zone = ('nyz003', 0.0027908657391651891) + +[fips3634979] +centroid = (0.7395336333686704, -1.3032118881103794) +description = Hobart village, NY +station = ('kmsv', 0.011854453389337129) +zone = ('nyz047', 0.0047658927726536666) + +[fips3635056] +centroid = (0.71199540955168339, -1.2753242319238505) +description = Holbrook CDP, NY +station = ('kisp', 0.00039962055651658357) +zone = ('nyz080', 0.0016691781934367934) + +[fips3635111] +centroid = (0.74416435839335426, -1.3709871070357689) +description = Holland CDP, NY +station = ('kbuf', 0.0056631932300878832) +zone = ('nyz085', 0.0026933174942372819) + +[fips3635144] +centroid = (0.75470035258228352, -1.3134749477108814) +description = Holland Patent village, NY +station = ('krme', 0.0018288080183424627) +zone = ('nyz037', 0.0028506445521890773) + +[fips3635155] +centroid = (0.75441258269521461, -1.3618663479774042) +description = Holley village, NY +station = ('kroc', 0.0047889548006519534) +zone = ('nyz002', 0.0026130807582308404) + +[fips3635254] +centroid = (0.71230960372362739, -1.2748701147057739) +description = Holtsville CDP, NY +station = ('kisp', 0.00076190610962378663) +zone = ('nyz080', 0.002122339763407382) + +[fips3635276] +centroid = (0.74416009978997943, -1.3296856705231601) +description = Homer village, NY +station = ('kith', 0.0043405446751150802) +zone = ('nyz044', 0.001652800127382927) + +[fips3635353] +centroid = (0.74682874312286385, -1.3528883568518528) +description = Honeoye CDP, NY +station = ('kdsv', 0.0046820375860617339) +zone = ('nyz013', 0.0035106656290749072) + +[fips3635364] +centroid = (0.74970049042080267, -1.3542203397770975) +description = Honeoye Falls village, NY +station = ('kroc', 0.0030623216174556099) +zone = ('nyz003', 0.0036032762622200203) + +[fips3635474] +centroid = (0.74876207924188287, -1.2801984478324802) +description = Hoosick Falls village, NY +station = ('kddh', 0.0013145655932212804) +zone = ('nyz054', 0.0032935392836914712) + +[fips3635573] +centroid = (0.7256978149761657, -1.2881213874252007) +description = Hopewell Junction CDP, NY +station = ('kpou', 0.001399795105263334) +zone = ('nyz068', 0.0027587807448260209) + +[fips3635672] +centroid = (0.73872334681013951, -1.3554304812672602) +description = Hornell city, NY +station = ('kdsv', 0.0042670193436555124) +zone = ('nyz022', 0.003711763388829259) + +[fips3635694] +centroid = (0.73598146946184151, -1.3409305127344942) +description = Horseheads village, NY +station = ('kelm', 0.00091058425319357167) +zone = ('nyz024', 0.0010197527252671656) + +[fips3635710] +centroid = (0.73647030127874014, -1.3404942676879581) +description = Horseheads North CDP, NY +station = ('kelm', 0.0013393893464773666) +zone = ('nyz024', 0.0011254815773791605) + +[fips3635738] +centroid = (0.72895660648902694, -1.3093815921095944) +description = Hortonville CDP, NY +station = ('kmsv', 0.0031138231642554321) +zone = ('paz040', 0.003490818161322851) + +[fips3635771] +centroid = (0.74051276307903924, -1.3643685741661109) +description = Houghton CDP, NY +station = ('kole', 0.0042244890099911152) +zone = ('nyz021', 0.0035198461668089864) + +[fips3635969] +centroid = (0.73743485748985471, -1.2878091305687265) +description = Hudson city, NY +station = ('kalb', 0.0086952565897569761) +zone = ('nyz060', 0.00069531673239777705) + +[fips3635980] +centroid = (0.75581020745362659, -1.2842409619926569) +description = Hudson Falls village, NY +station = ('kgfl', 0.00066899604639107234) +zone = ('nyz083', 0.0021125204021437316) + +[fips3636156] +centroid = (0.74259511540959378, -1.3612032973945716) +description = Hunt CDP, NY +station = ('kdsv', 0.0035452021004757465) +zone = ('nyz012', 0.0040335463777634722) + +[fips3636167] +centroid = (0.73671276241842709, -1.2953036441899604) +description = Hunter village, NY +station = ('kalb', 0.010828006601378415) +zone = ('nyz058', 0.00086012579959518032) + +[fips3636233] +centroid = (0.71345789074509958, -1.2812054679042959) +description = Huntington CDP, NY +station = ('utff', 0.0025155464239845987) +zone = ('nyz177', 0.002625495513929483) + +[fips3637022] +centroid = (0.71390172797388174, -1.2812833270422272) +description = Huntington Bay village, NY +station = ('utff', 0.0029570803138187791) +zone = ('nyz177', 0.0027363222837890658) + +[fips3637044] +centroid = (0.71287079689131372, -1.281155656207444) +description = Huntington Station CDP, NY +station = ('utff', 0.0019321270512349352) +zone = ('nyz177', 0.0025528420418098694) + +[fips3637132] +centroid = (0.73147113724896018, -1.2926300615752928) +description = Hurley CDP, NY +station = ('kpou', 0.0053642914882065414) +zone = ('nyz064', 0.0013371057266941765) + +[fips3637198] +centroid = (0.72924397495036775, -1.290400002030142) +description = Hyde Park CDP, NY +station = ('kpou', 0.002689096246872978) +zone = ('nyz065', 0.0011712990923656462) + +[fips3637275] +centroid = (0.75068822460438389, -1.3096888747777002) +description = Ilion village, NY +station = ('krme', 0.0060079265199825824) +zone = ('nyz038', 0.0017799973051599624) + +[fips3637528] +centroid = (0.74383276328876791, -1.3390982311791655) +description = Interlaken village, NY +station = ('kpeo', 0.0042133016644887201) +zone = ('nyz016', 0.0031079314009583993) + +[fips3637583] +centroid = (0.70898082450776123, -1.2871712999935851) +description = Inwood CDP, NY +station = ('kjfk', 0.00030607819636276317) +zone = ('nyz178', 0.00094089898900007651) + +[fips3637737] +centroid = (0.75415347111446351, -1.3538877847414226) +description = Irondequoit CDP, NY +station = ('kroc', 0.0021563024206983561) +zone = ('nyz003', 0.0019259601453732915) + +[fips3637803] +centroid = (0.71618290821282338, -1.289222847262842) +description = Irvington village, NY +station = ('khpn', 0.0022700358445564279) +zone = ('nyz071', 0.0014518223604527093) + +[fips3637840] +centroid = (0.71221380260098555, -1.2770758443611518) +description = Islandia village, NY +station = ('kisp', 0.00094631880665717132) +zone = ('nyz080', 0.00099902725567307536) + +[fips3637847] +centroid = (0.70869677217199911, -1.2855299400051321) +description = Island Park village, NY +station = ('kjfk', 0.0015524449722645092) +zone = ('nyz179', 0.0017618520793642733) + +[fips3637869] +centroid = (0.71096802148749694, -1.2778671591907138) +description = Islip CDP, NY +station = ('kisp', 0.0019067672873470133) +zone = ('nyz080', 0.00051417030895722178) + +[fips3638022] +centroid = (0.71123208980332364, -1.2773571565299884) +description = Islip Terrace CDP, NY +station = ('kisp', 0.0014390886925638141) +zone = ('nyz080', 5.8064496538005433e-05) + +[fips3638077] +centroid = (0.74078644815904449, -1.3352301975843106) +description = Ithaca city, NY +station = ('kith', 0.0010007253759103957) +zone = ('nyz025', 0.00040339434727954373) + +[fips3638253] +centroid = (0.71491218634432374, -1.2668189457729091) +description = Jamesport CDP, NY +station = ('kfok', 0.0019941309648571011) +zone = ('nyz079', 0.00053608947245925142) + +[fips3638264] +centroid = (0.73474177954744246, -1.3829314423047172) +description = Jamestown city, NY +station = ('kjhw', 0.00099625329257025069) +zone = ('nyz019', 0.0028346919951289539) + +[fips3638275] +centroid = (0.73458304185197354, -1.3837161772429989) +description = Jamestown West CDP, NY +station = ('kjhw', 0.0010893756553611799) +zone = ('nyz019', 0.0026762476040892102) + +[fips3638451] +centroid = (0.73715103204689547, -1.28948588583441) +description = Jefferson Heights CDP, NY +station = ('kalb', 0.0090391834753719043) +zone = ('nyz059', 0.0013976042086909571) + +[fips3638500] +centroid = (0.72116891246004322, -1.2880725007528526) +description = Jefferson Valley-Yorktown CDP, NY +station = ('khpn', 0.0046155487895760527) +zone = ('nyz070', 0.0018472290432974836) + +[fips3638506] +centroid = (0.72915529477107399, -1.3077028297152711) +description = Jeffersonville village, NY +station = ('kmsv', 0.0021253342864754853) +zone = ('nyz062', 0.0023146956745050437) + +[fips3638539] +centroid = (0.71185077411657072, -1.2835370008921574) +description = Jericho CDP, NY +station = ('utff', 0.0018762915113347434) +zone = ('nyz177', 0.0011135746046896809) + +[fips3638748] +centroid = (0.73522497395085706, -1.3258115631825083) +description = Johnson City village, NY +station = ('kbgm', 0.0013292080750997352) +zone = ('nyz056', 0.0019582458250862527) + +[fips3638781] +centroid = (0.75061959825819546, -1.2980897656347965) +description = Johnstown city, NY +station = ('ksch', 0.0062774923845639865) +zone = ('nyz039', 0.00082526610509010433) + +[fips3638825] +centroid = (0.75166250229943221, -1.3347033350430111) +description = Jordan village, NY +station = ('kfzy', 0.0050673889567460183) +zone = ('nyz005', 0.0025873642515677835) + +[fips3638934] +centroid = (0.71770090832974531, -1.2927406456366992) +description = Kaser village, NY +station = ('kteb', 0.0044497595337870486) +zone = ('nyz069', 0.00080458954820731784) + +[fips3638946] +centroid = (0.72003678718744446, -1.2860490881911379) +description = Katonah CDP, NY +station = ('khpn', 0.0032939983084526881) +zone = ('nyz070', 0.00099891501553163497) + +[fips3639089] +centroid = (0.77675424574402119, -1.2825044815599702) +description = Keeseville village, NY +station = ('kpbg', 0.0025425094984381567) +zone = ('nyz035', 0.0045045500186069575) + +[fips3639232] +centroid = (0.74987432521430131, -1.3765636259821084) +description = Kenmore village, NY +station = ('kbuf', 0.0018450917301859255) +zone = ('nyz010', 0.0023350190558412698) + +[fips3639243] +centroid = (0.73581152675257477, -1.3805252441314551) +description = Kennedy CDP, NY +station = ('kjhw', 0.0021843735862721219) +zone = ('nyz019', 0.0036720764271090372) + +[fips3639309] +centroid = (0.71197350566957085, -1.2866958548520493) +description = Kensington village, NY +station = ('klga', 0.0021355075919574705) +zone = ('nyz177', 0.0017912394556451393) + +[fips3639397] +centroid = (0.72918793242808622, -1.2967030317309167) +description = Kerhonkson CDP, NY +station = ('kmgj', 0.0046009163406985848) +zone = ('nyz063', 0.0027110606848181023) + +[fips3639463] +centroid = (0.74373352386749947, -1.3455033626411816) +description = Keuka Park CDP, NY +station = ('kpeo', 0.00084139703662634401) +zone = ('nyz015', 0.00040274056618927251) + +[fips3639562] +centroid = (0.73992155024821871, -1.2863734227260359) +description = Kinderhook village, NY +station = ('kalb', 0.0063287461847507456) +zone = ('nyz060', 0.0026326302888152698) + +[fips3639672] +centroid = (0.71361041506843137, -1.2783790642603234) +description = Kings Park CDP, NY +station = ('kisp', 0.0024495975688287198) +zone = ('nyz078', 0.00099214363588953115) + +[fips3639694] +centroid = (0.71240660912345333, -1.2869939221817051) +description = Kings Point village, NY +station = ('klga', 0.0019960087454885334) +zone = ('nyz176', 0.0018424150661274482) + +[fips3639727] +centroid = (0.73181871956949485, -1.2914874817804747) +description = Kingston city, NY +station = ('kpou', 0.0053862953005536221) +zone = ('nyz064', 0.0018834813548153726) + +[fips3639853] +centroid = (0.72153075412056666, -1.2944631285287849) +description = Kiryas Joel village, NY +station = ('kswf', 0.0029169416477477705) +zone = ('nyz067', 0.0021061342841326683) + +[fips3640175] +centroid = (0.74443149848866452, -1.3577773382459544) +description = Kysorville CDP, NY +station = ('kdsv', 0.0018080986032187709) +zone = ('nyz013', 0.0013381472806566681) + +[fips3640189] +centroid = (0.74732247931496054, -1.3758913775141177) +description = Lackawanna city, NY +station = ('kbuf', 0.0023748085688839516) +zone = ('nyz010', 0.0027471597572098772) + +[fips3640200] +centroid = (0.76170800660867333, -1.3276033007393131) +description = Lacona village, NY +station = ('kart', 0.0059602497262253393) +zone = ('nyz006', 0.0038989985609364152) + +[fips3640233] +centroid = (0.77134990352839072, -1.3258169737031893) +description = La Fargeville CDP, NY +station = ('kart', 0.0037975578341635356) +zone = ('nyz007', 0.0027734760708607903) + +[fips3640398] +centroid = (0.72363405040214501, -1.2857470066042027) +description = Lake Carmel CDP, NY +station = ('kdxr', 0.0029249943161966606) +zone = ('nyz068', 0.0012257450300287604) + +[fips3640486] +centroid = (0.74393235177588668, -1.38018146662869) +description = Lake Erie Beach CDP, NY +station = ('kdkk', 0.0034097334488798247) +zone = ('nyz085', 0.0040809364160836895) + +[fips3640508] +centroid = (0.7579253545208261, -1.2865723902607635) +description = Lake George village, NY +station = ('kgfl', 0.0020427460519066511) +zone = ('nyz083', 0.001409980702312439) + +[fips3640530] +centroid = (0.71310308276146162, -1.2761292126814552) +description = Lake Grove village, NY +station = ('kisp', 0.0010329096836997334) +zone = ('nyz078', 0.00080172807250913642) + +[fips3640585] +centroid = (0.7327802912675887, -1.2913649073071072) +description = Lake Katrine CDP, NY +station = ('kpou', 0.0062956668423201313) +zone = ('nyz064', 0.0028059354688939916) + +[fips3640607] +centroid = (0.7520775415955564, -1.330684574813954) +description = Lakeland CDP, NY +station = ('ksyr', 0.0018722196859264329) +zone = ('nyz018', 0.0016060507137502958) + +[fips3640648] +centroid = (0.75616056484767202, -1.2887111690860347) +description = Lake Luzerne CDP, NY +station = ('kgfl', 0.0028103091787584568) +zone = ('nyz083', 0.0013275575654158064) + +[fips3640689] +centroid = (0.72102593508771984, -1.2888813735946894) +description = Lake Mohegan CDP, NY +station = ('kswf', 0.0046609803976692555) +zone = ('nyz070', 0.0020423101796412028) + +[fips3640761] +centroid = (0.77290562021044851, -1.291306962375941) +description = Lake Placid village, NY +station = ('kslk', 0.0033449561683829669) +zone = ('nyz034', 0.0038446052183119207) + +[fips3640838] +centroid = (0.71262557813140848, -1.2760407593949643) +description = Lake Ronkonkoma CDP, NY +station = ('kisp', 0.0005534513366496056) +zone = ('nyz078', 0.0011425731264717387) + +[fips3640937] +centroid = (0.71146381716811102, -1.286501145920697) +description = Lake Success village, NY +station = ('klga', 0.0023018393052974396) +zone = ('nyz177', 0.0019300146420838363) + +[fips3641003] +centroid = (0.70996037309715065, -1.2854300722653329) +description = Lakeview CDP, NY +station = ('kjfk', 0.001731566656661389) +zone = ('nyz179', 0.0009021484599713289) + +[fips3641036] +centroid = (0.74764252033989875, -1.356175876484202) +description = Lakeville CDP, NY +station = ('kdsv', 0.0047172204428619262) +zone = ('nyz013', 0.0021102441500852821) + +[fips3641069] +centroid = (0.73476830855207276, -1.3843963145992084) +description = Lakewood village, NY +station = ('kjhw', 0.0011253080432774322) +zone = ('nyz019', 0.0023312001824340321) + +[fips3641135] +centroid = (0.74875623238888878, -1.3730271700385472) +description = Lancaster village, NY +station = ('kbuf', 0.0010051060309117592) +zone = ('nyz010', 0.00071181421999011668) + +[fips3641223] +centroid = (0.74158804297790049, -1.3349595668304963) +description = Lansing village, NY +station = ('kith', 0.00037638242575880086) +zone = ('nyz025', 0.00068449636002879328) + +[fips3641333] +centroid = (0.71429276899279104, -1.287214531799157) +description = Larchmont village, NY +station = ('khpn', 0.0025493786981979371) +zone = ('nyz071', 0.0010663686012561465) + +[fips3641432] +centroid = (0.71374611441777391, -1.2844810669378537) +description = Lattingtown village, NY +station = ('khpn', 0.0033039517178942279) +zone = ('nyz177', 0.0010675097007061566) + +[fips3641465] +centroid = (0.71508890093108823, -1.2663405161183525) +description = Laurel CDP, NY +station = ('kfok', 0.0022679218092377606) +zone = ('nyz079', 0.00048426354435854589) + +[fips3641487] +centroid = (0.71308393649956714, -1.2824250341724193) +description = Laurel Hollow village, NY +station = ('utff', 0.0022835749982866079) +zone = ('nyz177', 0.0016360345705599736) + +[fips3641520] +centroid = (0.74231155176602226, -1.3105453252949466) +description = Laurens village, NY +station = ('krme', 0.012882950298516683) +zone = ('nyz046', 0.0019285345329632521) + +[fips3641553] +centroid = (0.70867528716890715, -1.2865314797430967) +description = Lawrence village, NY +station = ('kjfk', 0.00087697334312555398) +zone = ('nyz178', 0.0014906317939859391) + +[fips3641784] +centroid = (0.73740068394310065, -1.289674870085816) +description = Leeds CDP, NY +station = ('kalb', 0.0088091062038676213) +zone = ('nyz059', 0.0011189275566717454) + +[fips3641872] +centroid = (0.74649390170586871, -1.3595557240339815) +description = Leicester village, NY +station = ('kdsv', 0.0042492708540345916) +zone = ('nyz013', 0.0017263803028330364) + +[fips3642026] +centroid = (0.75010781536163318, -1.3611976425277952) +description = Le Roy village, NY +station = ('kroc', 0.0046090719057693286) +zone = ('nyz011', 0.0026189814925281999) + +[fips3642081] +centroid = (0.71076771004924555, -1.2830388141104683) +description = Levittown CDP, NY +station = ('utff', 0.0012789971676041639) +zone = ('nyz179', 0.0011069998152471964) + +[fips3642147] +centroid = (0.75349125828967189, -1.3795005787809018) +description = Lewiston village, NY +station = ('cysn', 0.0016903990413174455) +zone = ('nyz001', 0.0038145836529794061) + +[fips3642224] +centroid = (0.72948816396601435, -1.3045148462101632) +description = Liberty village, NY +station = ('kmsv', 0.0018409995702934033) +zone = ('nyz062', 0.0014367022413344895) + +[fips3642279] +centroid = (0.70841340051464541, -1.2846376927849277) +description = Lido Beach CDP, NY +station = ('kjfk', 0.0022854041693442101) +zone = ('nyz179', 0.001787493410977161) + +[fips3642323] +centroid = (0.74886751458199596, -1.3545895292737717) +description = Lima village, NY +station = ('kroc', 0.0037709830992961883) +zone = ('nyz013', 0.0037557511927782537) + +[fips3642345] +centroid = (0.74059563131192385, -1.3698159212945107) +description = Lime Lake CDP, NY +station = ('kole', 0.0038029784315317034) +zone = ('nyz020', 0.0040788304426836643) + +[fips3642378] +centroid = (0.73333965183956018, -1.3723755513623153) +description = Limestone village, NY +station = ('kbfd', 0.0037921140516622188) +zone = ('paz005', 0.0037444398295099009) + +[fips3642455] +centroid = (0.72140524749405566, -1.2867400814952952) +description = Lincolndale CDP, NY +station = ('kdxr', 0.0032159742244989849) +zone = ('nyz068', 0.0016589691365625262) + +[fips3642488] +centroid = (0.7323059631367741, -1.2916276317194098) +description = Lincoln Park CDP, NY +station = ('kpou', 0.0058835229563671725) +zone = ('nyz064', 0.002293788613949274) + +[fips3642554] +centroid = (0.71010031359657555, -1.2805758927365165) +description = Lindenhurst village, NY +station = ('kfrg', 0.001022383159656742) +zone = ('nyz179', 0.0028068773857921054) + +[fips3642609] +centroid = (0.74868874050671408, -1.3604422989341172) +description = Linwood CDP, NY +station = ('kroc', 0.0051102571903275749) +zone = ('nyz011', 0.0036317715537594652) + +[fips3642642] +centroid = (0.73913042740487478, -1.3265466085969855) +description = Lisle village, NY +station = ('kbgm', 0.0026172169315037) +zone = ('nyz056', 0.0040783617751743188) + +[fips3642741] +centroid = (0.7512740967276933, -1.3064956727381292) +description = Little Falls city, NY +station = ('krme', 0.0076616817310546812) +zone = ('nyz038', 0.0015014527455559311) + +[fips3642829] +centroid = (0.73739052612685407, -1.3752976514091741) +description = Little Valley village, NY +station = ('kole', 0.0055899693939247541) +zone = ('nyz020', 0.0015484666670024041) + +[fips3642884] +centroid = (0.75234515292976478, -1.3301047066232712) +description = Liverpool village, NY +station = ('ksyr', 0.0014056422344773322) +zone = ('nyz018', 0.0017624616595837352) + +[fips3642928] +centroid = (0.73106892612283803, -1.3059189286868076) +description = Livingston Manor CDP, NY +station = ('kmsv', 0.003281083217064832) +zone = ('nyz062', 0.0030667525212421157) + +[fips3642950] +centroid = (0.74738421161060353, -1.3555772285507679) +description = Livonia village, NY +station = ('kdsv', 0.0044977412655042752) +zone = ('nyz013', 0.0021323251326680849) + +[fips3642972] +centroid = (0.74736848619404306, -1.3551087298196549) +description = Livonia Center CDP, NY +station = ('kdsv', 0.0045421090629463165) +zone = ('nyz013', 0.0023564046708475441) + +[fips3643005] +centroid = (0.71421484004168945, -1.2818288995131082) +description = Lloyd Harbor village, NY +station = ('utff', 0.0032881037732298952) +zone = ('nyz177', 0.0025495852110768449) + +[fips3643082] +centroid = (0.75344896896189606, -1.3735013934496065) +description = Lockport city, NY +station = ('kiag', 0.0031616808640117329) +zone = ('nyz001', 0.00081112035101023219) + +[fips3643192] +centroid = (0.71345771621217435, -1.2843673761903789) +description = Locust Valley CDP, NY +station = ('utff', 0.0033865029024585241) +zone = ('nyz177', 0.0007872552497438719) + +[fips3643214] +centroid = (0.74374413546935159, -1.3407964539946484) +description = Lodi village, NY +station = ('kpeo', 0.0029968509269548663) +zone = ('nyz016', 0.002925255222387544) + +[fips3643335] +centroid = (0.70835645042115281, -1.2857038271585084) +description = Long Beach city, NY +station = ('kjfk', 0.0015771774296717382) +zone = ('nyz179', 0.0021208640294917468) + +[fips3643401] +centroid = (0.76719315756867101, -1.2993368557452238) +description = Long Lake CDP, NY +station = ('kslk', 0.008325919611589119) +zone = ('nyz033', 0.0052026731802889015) + +[fips3643511] +centroid = (0.73774161655918524, -1.2876374599835003) +description = Lorenz Park CDP, NY +station = ('kalb', 0.0083922305162497154) +zone = ('nyz060', 0.00070169479442509948) + +[fips3643533] +centroid = (0.76385306861925195, -1.3256172905834687) +description = Lorraine CDP, NY +station = ('kart', 0.0039353478311852132) +zone = ('nyz007', 0.0048346829028912243) + +[fips3643720] +centroid = (0.76422150762434793, -1.3175039704759401) +description = Lowville village, NY +station = ('kgtb', 0.005539128159403185) +zone = ('nyz008', 0.00048778805962831131) + +[fips3643874] +centroid = (0.70961387288075206, -1.2858572765063436) +description = Lynbrook village, NY +station = ('kjfk', 0.0012973570345042827) +zone = ('nyz179', 0.0013260028427747768) + +[fips3643885] +centroid = (0.75192330684955766, -1.3286540238555986) +description = Lyncourt CDP, NY +station = ('ksyr', 0.00069099094477579118) +zone = ('nyz018', 0.0015905717737818505) + +[fips3643918] +centroid = (0.75610010664238292, -1.3681438609645149) +description = Lyndonville village, NY +station = ('kbuf', 0.0080692994395453604) +zone = ('nyz002', 0.0023385895063266571) + +[fips3643951] +centroid = (0.78059798435568828, -1.2894904062371726) +description = Lyon Mountain CDP, NY +station = ('kslk', 0.0069116700526293956) +zone = ('nyz031', 0.0011510599645530037) + +[fips3643962] +centroid = (0.75159759350455047, -1.3437880530523219) +description = Lyons village, NY +station = ('kpeo', 0.007250939030976367) +zone = ('nyz004', 0.0016899537300907911) + +[fips3644006] +centroid = (0.76126039946870683, -1.315308660436197) +description = Lyons Falls village, NY +station = ('krme', 0.0067140212392677989) +zone = ('nyz008', 0.0031266091184604357) + +[fips3644149] +centroid = (0.75169259177573655, -1.3491831973827941) +description = Macedon village, NY +station = ('kroc', 0.0049251058400056995) +zone = ('nyz014', 0.003768550893603844) + +[fips3644193] +centroid = (0.74340144007072251, -1.3281519624429701) +description = McGraw village, NY +station = ('kith', 0.0049756402919946072) +zone = ('nyz044', 0.0003514507019031214) + +[fips3644226] +centroid = (0.74025733414300987, -1.3698574775840007) +description = Machias CDP, NY +station = ('kole', 0.0035091952528424498) +zone = ('nyz020', 0.0037977122452062121) + +[fips3644424] +centroid = (0.7487031569263356, -1.317935538040081) +description = Madison village, NY +station = ('krme', 0.0060327725298500818) +zone = ('nyz036', 0.0020320102933451718) + +[fips3644479] +centroid = (0.78098913009435267, -1.3112545398364943) +description = Madrid CDP, NY +station = ('kmss', 0.0047418388654014987) +zone = ('nyz026', 0.0031664087727007032) + +[fips3644534] +centroid = (0.72199193992211363, -1.2870325812246366) +description = Mahopac CDP, NY +station = ('kdxr', 0.003382081502632351) +zone = ('nyz068', 0.0010455866152552084) + +[fips3644677] +centroid = (0.73466538648608271, -1.2904349260684744) +description = Malden-on-Hudson CDP, NY +station = ('kpou', 0.0080563073150435784) +zone = ('nyz060', 0.0037355320549485181) + +[fips3644710] +centroid = (0.78274912011206388, -1.2965977709237291) +description = Malone village, NY +station = ('cwbz', 0.0046858953329614325) +zone = ('nyz027', 0.0019252309591800355) + +[fips3644787] +centroid = (0.70990464473413439, -1.2858207467650995) +description = Malverne village, NY +station = ('kjfk', 0.0014439835819097559) +zone = ('nyz179', 0.0012032245726800073) + +[fips3644792] +centroid = (0.71002880745712127, -1.2856865658522061) +description = Malverne Park Oaks CDP, NY +station = ('kjfk', 0.0015950532484887577) +zone = ('nyz179', 0.0010801438055810101) + +[fips3644831] +centroid = (0.71444066819360508, -1.2867726842457221) +description = Mamaroneck village, NY +station = ('khpn', 0.0023344101627085457) +zone = ('nyz071', 0.0011045695321843182) + +[fips3644853] +centroid = (0.74993919910259799, -1.3479385158267345) +description = Manchester village, NY +station = ('kpeo', 0.0060211532470845156) +zone = ('nyz014', 0.0021976080306277119) + +[fips3644897] +centroid = (0.71183213400015932, -1.2862182978621188) +description = Manhasset CDP, NY +station = ('klga', 0.0024906150104147639) +zone = ('nyz177', 0.0015390489604635185) + +[fips3644908] +centroid = (0.71138115837473659, -1.2859737772339144) +description = Manhasset Hills CDP, NY +station = ('kjfk', 0.0024718564319454262) +zone = ('nyz177', 0.0017014547111056579) + +[fips3645018] +centroid = (0.75051002648775533, -1.3261296668919766) +description = Manlius village, NY +station = ('ksyr', 0.0025198872759877281) +zone = ('nyz018', 0.002719531449333071) + +[fips3645073] +centroid = (0.7630198309810573, -1.3276167397745533) +description = Mannsville village, NY +station = ('kart', 0.0046532970738662228) +zone = ('nyz006', 0.0051792284390195535) + +[fips3645106] +centroid = (0.71278220397848246, -1.2865013553602074) +description = Manorhaven village, NY +station = ('klga', 0.0024767854235019787) +zone = ('nyz177', 0.0015022657661499233) + +[fips3645139] +centroid = (0.71317914421026352, -1.2703786844086917) +description = Manorville CDP, NY +station = ('khwv', 0.0013143577847736815) +zone = ('nyz079', 0.0035452151480658547) + +[fips3645392] +centroid = (0.7408016499768294, -1.3270827039300281) +description = Marathon village, NY +station = ('kbgm', 0.004326903580050669) +zone = ('nyz044', 0.002657501422158105) + +[fips3645480] +centroid = (0.7502081368870378, -1.3323877892710976) +description = Marcellus village, NY +station = ('ksyr', 0.0038426289740681784) +zone = ('nyz018', 0.0018980240067887194) + +[fips3645557] +centroid = (0.73557367328211298, -1.3029006435448711) +description = Margaretville village, NY +station = ('kmsv', 0.0080095464789356925) +zone = ('nyz063', 0.0052535613421005262) + +[fips3645573] +centroid = (0.74743498323854396, -1.2938164142277508) +description = Mariaville Lake CDP, NY +station = ('ksch', 0.0025576913882010208) +zone = ('nyz048', 0.00069296596659866995) + +[fips3645634] +centroid = (0.752969823722346, -1.3472901085563258) +description = Marion CDP, NY +station = ('kroc', 0.0062481217819562529) +zone = ('nyz004', 0.002114372710420297) + +[fips3645700] +centroid = (0.72612348332743459, -1.2911448736483082) +description = Marlboro CDP, NY +station = ('kpou', 0.0013281482819498475) +zone = ('nyz065', 0.0033928435873775264) + +[fips3645986] +centroid = (0.70979577109539493, -1.2823198431784015) +description = Massapequa CDP, NY +station = ('kfrg', 0.0013472005998048306) +zone = ('nyz179', 0.0015324379913844441) + +[fips3645997] +centroid = (0.7100158047541939, -1.2819389076158614) +description = Massapequa Park village, NY +station = ('kfrg', 0.0010139365657626338) +zone = ('nyz179', 0.0017798479661089162) + +[fips3646019] +centroid = (0.78415939850755279, -1.3071289654572151) +description = Massena village, NY +station = ('kmss', 0.00053628144521549294) +zone = ('nyz026', 0.0014633428284298044) + +[fips3646074] +centroid = (0.71227597122894148, -1.2714301580165559) +description = Mastic CDP, NY +station = ('khwv', 0.00027475166474053182) +zone = ('nyz080', 0.0045527401099037098) + +[fips3646085] +centroid = (0.71152870850970018, -1.2712552236656285) +description = Mastic Beach CDP, NY +station = ('khwv', 0.00093890780825448699) +zone = ('nyz080', 0.0045741278137798819) + +[fips3646107] +centroid = (0.71311423541538177, -1.2842771077614656) +description = Matinecock village, NY +station = ('utff', 0.0030913223550653743) +zone = ('nyz177', 0.00047254196959576207) + +[fips3646140] +centroid = (0.71559199208797553, -1.26608236446869) +description = Mattituck CDP, NY +station = ('kfok', 0.0028074207556954968) +zone = ('nyz079', 0.00054042831427143171) + +[fips3646151] +centroid = (0.75222252609651963, -1.3288732721162342) +description = Mattydale CDP, NY +station = ('ksyr', 0.00058137090229633541) +zone = ('nyz018', 0.0017781694533365302) + +[fips3646162] +centroid = (0.72410265385301298, -1.2952519126309312) +description = Maybrook village, NY +station = ('kmgj', 0.00086704599950757446) +zone = ('nyz067', 0.0019309093151246464) + +[fips3646206] +centroid = (0.75227064482399708, -1.296186466632204) +description = Mayfield village, NY +station = ('ksch', 0.0061139991512612919) +zone = ('nyz082', 0.0022514161354313545) + +[fips3646239] +centroid = (0.73745569672112354, -1.3875701434840826) +description = Mayville village, NY +station = ('kjhw', 0.0035339553669357037) +zone = ('nyz019', 0.0018041059124696986) + +[fips3646349] +centroid = (0.7234440014998953, -1.298344129919982) +description = Mechanicstown CDP, NY +station = ('kmgj', 0.0019817761635039441) +zone = ('nyz067', 0.0013834537149171704) + +[fips3646360] +centroid = (0.74881927368147083, -1.2861161786475848) +description = Mechanicville city, NY +station = ('kalb', 0.0030429126900649445) +zone = ('nyz050', 0.002485713964335899) + +[fips3646404] +centroid = (0.71247815016949245, -1.2738451002893703) +description = Medford CDP, NY +station = ('khwv', 0.0015782307292605479) +zone = ('nyz080', 0.0028866403347439958) + +[fips3646415] +centroid = (0.75432679976247907, -1.3681264949384575) +description = Medina village, NY +station = ('kbuf', 0.0066621260440392167) +zone = ('nyz002', 0.002071152023387539) + +[fips3646503] +centroid = (0.74884480784842755, -1.3354220790822748) +description = Melrose Park CDP, NY +station = ('ksyr', 0.0064410247697994768) +zone = ('nyz017', 0.0018346197445745539) + +[fips3646514] +centroid = (0.71179799535999033, -1.2811697410145075) +description = Melville CDP, NY +station = ('utff', 0.00086570807786336785) +zone = ('nyz179', 0.0028563833516132395) + +[fips3646536] +centroid = (0.74510165256155292, -1.2867647255443331) +description = Menands village, NY +station = ('kalb', 0.0013963087437896861) +zone = ('nyz053', 0.0014359737940555835) + +[fips3646646] +centroid = (0.75333581926648918, -1.3358432793906587) +description = Meridian village, NY +station = ('kfzy', 0.003811898820709367) +zone = ('nyz005', 0.00092912532720299044) + +[fips3646668] +centroid = (0.7095049119755501, -1.2837232973365154) +description = Merrick CDP, NY +station = ('utff', 0.0022946883587525056) +zone = ('nyz179', 0.00079444597394401481) + +[fips3646750] +centroid = (0.72498310264747401, -1.2893169554161097) +description = Merritt Park CDP, NY +station = ('kpou', 0.0016617608794215822) +zone = ('nyz068', 0.0025275882334517769) + +[fips3646811] +centroid = (0.75861116419710473, -1.3305094135702238) +description = Mexico village, NY +station = ('kfzy', 0.0027745086941363332) +zone = ('nyz006', 0.0013450421449283313) + +[fips3646866] +centroid = (0.74347498824540159, -1.2973002310410717) +description = Middleburgh village, NY +station = ('ksch', 0.0067224930125639772) +zone = ('nyz047', 0.0014526155721547667) + +[fips3646976] +centroid = (0.71359088483410149, -1.2731389051674284) +description = Middle Island CDP, NY +station = ('khwv', 0.0015926043270055262) +zone = ('nyz080', 0.0039260419770554651) + +[fips3646998] +centroid = (0.75418682435646922, -1.3696598364995047) +description = Middleport village, NY +station = ('kbuf', 0.0058646947146253348) +zone = ('nyz002', 0.0031887203138185371) + +[fips3647042] +centroid = (0.72335034713223334, -1.2989363899483539) +description = Middletown city, NY +station = ('kmgj', 0.0024035828813311682) +zone = ('nyz067', 0.0017145560267685439) + +[fips3647108] +centroid = (0.75291648646040499, -1.3084774417438911) +description = Middleville village, NY +station = ('krme', 0.0057118574964797357) +zone = ('nyz038', 0.00083708863075534676) + +[fips3647229] +centroid = (0.74334394892516187, -1.3080695582977) +description = Milford village, NY +station = ('krme', 0.012626944316933184) +zone = ('nyz046', 0.0013359046405562131) + +[fips3647273] +centroid = (0.72927846265638729, -1.2862091872434231) +description = Millbrook village, NY +station = ('kpou', 0.0036098157862780593) +zone = ('nyz066', 0.0010860830731013378) + +[fips3647306] +centroid = (0.71449081150301486, -1.273851976886623) +description = Miller Place CDP, NY +station = ('khwv', 0.0026320632925827636) +zone = ('nyz078', 0.0026540120785439069) + +[fips3647361] +centroid = (0.73219588522085088, -1.2829941162283247) +description = Millerton village, NY +station = ('kpou', 0.0073799128580402263) +zone = ('ctz001', 0.0035706319458072748) + +[fips3647405] +centroid = (0.71352875111273051, -1.2838457147302502) +description = Mill Neck village, NY +station = ('utff', 0.0031926206196416771) +zone = ('nyz177', 0.00099119560945388086) + +[fips3647427] +centroid = (0.7377174786556302, -1.3410454426657379) +description = Millport village, NY +station = ('kelm', 0.0019527285077689462) +zone = ('nyz023', 0.002250755411433335) + +[fips3647548] +centroid = (0.751143336660134, -1.2889936506254702) +description = Milton CDP, NY +station = ('ksch', 0.0034236408824221886) +zone = ('nyz050', 0.001701579539301774) + +[fips3647554] +centroid = (0.72703819293511229, -1.2910135027155105) +description = Milton CDP, NY +station = ('kpou', 0.0011942413173664167) +zone = ('nyz065', 0.0025810876674771466) + +[fips3647636] +centroid = (0.71116880416464645, -1.2852462367352204) +description = Mineola village, NY +station = ('kjfk', 0.0026038270900114579) +zone = ('nyz179', 0.0012324624003348379) + +[fips3647680] +centroid = (0.75751478326758692, -1.3348654935838138) +description = Minetto CDP, NY +station = ('kfzy', 0.0015518377385518247) +zone = ('nyz005', 0.0042402425144605418) + +[fips3647702] +centroid = (0.76956725913698887, -1.2831930488564669) +description = Mineville CDP, NY +station = ('kbtv', 0.0080060367259439432) +zone = ('nyz035', 0.0029317712684624074) + +[fips3647757] +centroid = (0.75179509496270613, -1.3266003996445321) +description = Minoa village, NY +station = ('ksyr', 0.0013760921297489689) +zone = ('nyz018', 0.0026598312027993148) + +[fips3647823] +centroid = (0.75065523788152122, -1.309121538051047) +description = Mohawk village, NY +station = ('krme', 0.0063502825722207192) +zone = ('nyz038', 0.0015932708756847623) + +[fips3647988] +centroid = (0.72117694097460228, -1.2947379480728038) +description = Monroe village, NY +station = ('kswf', 0.003317723855411652) +zone = ('nyz067', 0.00214871711599915) + +[fips3648010] +centroid = (0.71749572742288092, -1.2928870613076489) +description = Monsey CDP, NY +station = ('kteb', 0.0042527114503086907) +zone = ('nyz069', 0.0010283331320594265) + +[fips3648054] +centroid = (0.71640969629582751, -1.2556822267087362) +description = Montauk CDP, NY +station = ('kmtp', 0.00050670104466598535) +zone = ('riz008', 0.005335770684322544) + +[fips3648090] +centroid = (0.71786779671282108, -1.2934648700098141) +description = Montebello village, NY +station = ('kteb', 0.0046773420519751058) +zone = ('nyz069', 0.0011941175557391441) + +[fips3648142] +centroid = (0.72468280129637586, -1.295709066721906) +description = Montgomery village, NY +station = ('kmgj', 0.00037467587665470948) +zone = ('nyz067', 0.0022549986302707265) + +[fips3648175] +centroid = (0.72695961821218757, -1.3035553863604643) +description = Monticello village, NY +station = ('kmsv', 0.0016832766284889072) +zone = ('nyz062', 0.0015357358636977081) + +[fips3648197] +centroid = (0.73912765233136402, -1.3412412511545193) +description = Montour Falls village, NY +station = ('kelm', 0.0032520842114669335) +zone = ('nyz023', 0.00086148864023347788) + +[fips3648208] +centroid = (0.71985804801874775, -1.290467371739269) +description = Montrose CDP, NY +station = ('khpn', 0.0044133945632733795) +zone = ('nyz069', 0.0019603107464829274) + +[fips3648241] +centroid = (0.78476338714849803, -1.2844831438796636) +description = Mooers CDP, NY +station = ('cwit', 0.0037055148522431953) +zone = ('nyz028', 0.0029893736530285315) + +[fips3648296] +centroid = (0.74546818915776414, -1.3338191163373656) +description = Moravia village, NY +station = ('kith', 0.0038910256127393209) +zone = ('nyz017', 0.002080670675813372) + +[fips3648450] +centroid = (0.71218851278012407, -1.2710686305152978) +description = Moriches CDP, NY +station = ('khwv', 0.00056133057549194237) +zone = ('nyz079', 0.0046005394864198522) + +[fips3648483] +centroid = (0.74260474962706469, -1.3132780920245493) +description = Morris village, NY +station = ('krme', 0.012121774786530906) +zone = ('nyz046', 0.0031153094162710677) + +[fips3648538] +centroid = (0.77999174424000806, -1.2837180264421744) +description = Morrisonville CDP, NY +station = ('kpbg', 0.0012669419468633056) +zone = ('nyz028', 0.0020184450759405492) + +[fips3648571] +centroid = (0.77813782060195458, -1.3202623411856698) +description = Morristown village, NY +station = ('cxke', 0.0072628675272820489) +zone = ('nyz087', 0.0043785252745848994) + +[fips3648593] +centroid = (0.74870828819433644, -1.3202510139988244) +description = Morrisville village, NY +station = ('krme', 0.0066357776905895897) +zone = ('nyz036', 0.00041287758502884511) + +[fips3648750] +centroid = (0.72232765400373466, -1.2939660063979392) +description = Mountain Lodge Park CDP, NY +station = ('kswf', 0.0020478685623532629) +zone = ('nyz067', 0.0022015429792161443) + +[fips3648879] +centroid = (0.71894761446773747, -1.2920599672284214) +description = Mount Ivy CDP, NY +station = ('khpn', 0.0048588842203680102) +zone = ('nyz069', 0.00069774097032286044) + +[fips3648890] +centroid = (0.71910525260577762, -1.2868008538598494) +description = Mount Kisco village, NY +station = ('khpn', 0.0023858013044401995) +zone = ('nyz070', 0.00043587350605746273) + +[fips3648945] +centroid = (0.74566914636783876, -1.3591787678221359) +description = Mount Morris village, NY +station = ('kdsv', 0.0034137699983541165) +zone = ('nyz013', 0.0012819656731822666) + +[fips3649066] +centroid = (0.71459476331326355, -1.2744732268338705) +description = Mount Sinai CDP, NY +station = ('kisp', 0.0027043620800516451) +zone = ('nyz078', 0.0022797262622719799) + +[fips3649121] +centroid = (0.71406838946415463, -1.2885646661486225) +description = Mount Vernon city, NY +station = ('klga', 0.0023745622139915031) +zone = ('nyz073', 0.0011666640942904326) + +[fips3649220] +centroid = (0.75008289205991474, -1.3192386183129126) +description = Munnsville village, NY +station = ('krme', 0.0050741224275382951) +zone = ('nyz036', 0.0015352668432508415) + +[fips3649231] +centroid = (0.71207681170799653, -1.2859575980317484) +description = Munsey Park village, NY +station = ('klga', 0.0027014284071365182) +zone = ('nyz177', 0.001243240109379295) + +[fips3649242] +centroid = (0.74305310725860951, -1.329977576840556) +description = Munsons Corners CDP, NY +station = ('kith', 0.0035996126532527339) +zone = ('nyz044', 0.0017349001466547536) + +[fips3649330] +centroid = (0.71253749136406042, -1.2834511655995442) +description = Muttontown village, NY +station = ('utff', 0.0022415791834049644) +zone = ('nyz177', 0.00082136268781522281) + +[fips3649363] +centroid = (0.72602413918641107, -1.289329661413064) +description = Myers Corner CDP, NY +station = ('kpou', 0.00062881119218188776) +zone = ('nyz065', 0.0030488782382516347) + +[fips3649407] +centroid = (0.71725276013771089, -1.2918123573674409) +description = Nanuet CDP, NY +station = ('kteb', 0.0040208067387336264) +zone = ('nyz069', 0.0010073624469489489) + +[fips3649418] +centroid = (0.72874479333100495, -1.2980310353054669) +description = Napanoch CDP, NY +station = ('kmgj', 0.0043629711263723728) +zone = ('nyz063', 0.002926912249130509) + +[fips3649424] +centroid = (0.71548844170345471, -1.257940892200327) +description = Napeague CDP, NY +station = ('kmtp', 0.0024325482578351943) +zone = ('ctz012', 0.0064169987195651637) + +[fips3649429] +centroid = (0.74381813742963621, -1.3509215104111956) +description = Naples village, NY +station = ('kpeo', 0.0045562348403695918) +zone = ('nyz014', 0.0043104058691551001) + +[fips3649473] +centroid = (0.72598952930734406, -1.3099589819327389) +description = Narrowsburg CDP, NY +station = ('kmsv', 0.003789015765845461) +zone = ('paz040', 0.0043993074525533792) + +[fips3649506] +centroid = (0.74200863242104598, -1.284749952362416) +description = Nassau village, NY +station = ('kalb', 0.0047829570250655061) +zone = ('nyz053', 0.0033401158020147444) + +[fips3649605] +centroid = (0.76919588797874949, -1.3177200771439221) +description = Natural Bridge CDP, NY +station = ('kgtb', 0.0029533147116345589) +zone = ('nyz008', 0.0050495682246004363) + +[fips3649726] +centroid = (0.75010797244126581, -1.3289234677855215) +description = Nedrow CDP, NY +station = ('ksyr', 0.0024776021460531724) +zone = ('nyz018', 0.0008312854671887539) + +[fips3649748] +centroid = (0.74931622127939113, -1.3021478132253159) +description = Nelliston village, NY +station = ('krme', 0.011383031470136907) +zone = ('nyz040', 0.0022101543838806128) + +[fips3649781] +centroid = (0.72308126972145337, -1.2906758338651272) +description = Nelsonville village, NY +station = ('kswf', 0.0023126445499522461) +zone = ('nyz068', 0.0026278856047055074) + +[fips3649825] +centroid = (0.71291212628800094, -1.276743394045232) +description = Nesconset CDP, NY +station = ('kisp', 0.0010679890997876238) +zone = ('nyz078', 0.00059822861822696389) + +[fips3649891] +centroid = (0.75122477372303198, -1.345544552411529) +description = Newark village, NY +station = ('kpeo', 0.0068650012175093976) +zone = ('nyz004', 0.0021638892557464392) + +[fips3649902] +centroid = (0.73692871200677634, -1.3297100876793952) +description = Newark Valley village, NY +station = ('kbgm', 0.0026601404869419525) +zone = ('nyz055', 0.0017976173828053519) + +[fips3649946] +centroid = (0.74392884366409018, -1.314849324683657) +description = New Berlin village, NY +station = ('krme', 0.010667243657540812) +zone = ('nyz046', 0.0038910697932506544) + +[fips3650034] +centroid = (0.72436834532504402, -1.2918864291408956) +description = Newburgh city, NY +station = ('kswf', 0.0010519483874590169) +zone = ('nyz067', 0.0041356260827425263) + +[fips3650067] +centroid = (0.71139705832422229, -1.2839495618207439) +description = New Cassel CDP, NY +station = ('utff', 0.0020077184587819507) +zone = ('nyz179', 0.001242247197587483) + +[fips3650100] +centroid = (0.7182566735234579, -1.2913735292336119) +description = New City CDP, NY +station = ('khpn', 0.0041040229538541013) +zone = ('nyz069', 0.00044481250956946252) + +[fips3650221] +centroid = (0.75547768732453668, -1.3734684416333292) +description = Newfane CDP, NY +station = ('kiag', 0.0042400292984225629) +zone = ('nyz001', 0.0016001263967628024) + +[fips3650257] +centroid = (0.73927802989971592, -1.3368141711469581) +description = Newfield Hamlet CDP, NY +station = ('kith', 0.0029087790767250163) +zone = ('nyz025', 0.0022617964559935267) + +[fips3650298] +centroid = (0.75173109373903557, -1.3140343955493157) +description = New Hartford village, NY +station = ('krme', 0.0031680438960100276) +zone = ('nyz037', 0.0017318082926697212) + +[fips3650353] +centroid = (0.71812809511746345, -1.2924343578062667) +description = New Hempstead village, NY +station = ('khpn', 0.0048181386137213294) +zone = ('nyz069', 0.00037556584896242923) + +[fips3650397] +centroid = (0.71091431770641311, -1.2860588620349491) +description = New Hyde Park village, NY +station = ('kjfk', 0.0020337330290972309) +zone = ('nyz179', 0.0015381114820269409) + +[fips3650551] +centroid = (0.72867395041666638, -1.2929353371147592) +description = New Paltz village, NY +station = ('kpou', 0.0032702167763525841) +zone = ('nyz064', 0.0014790609677459976) + +[fips3650573] +centroid = (0.75375263879845045, -1.3092765931017942) +description = Newport village, NY +station = ('krme', 0.0049514204593676843) +zone = ('nyz038', 0.0018245154273988956) + +[fips3650617] +centroid = (0.71424533094372178, -1.2876924727615231) +description = New Rochelle city, NY +station = ('khpn', 0.0027126653764012764) +zone = ('nyz071', 0.0010482180102898066) + +[fips3650705] +centroid = (0.7180429230499662, -1.2920543647215226) +description = New Square village, NY +station = ('khpn', 0.0045195722829532341) +zone = ('nyz069', 0.00022133274532664236) + +[fips3650727] +centroid = (0.71552833993015541, -1.2649705199219998) +description = New Suffolk CDP, NY +station = ('kfok', 0.0031511868250332174) +zone = ('nyz079', 0.00136227515894501) + +[fips3650837] +centroid = (0.72378507374232015, -1.2920992196832985) +description = New Windsor CDP, NY +station = ('kswf', 0.001035207855376347) +zone = ('nyz067', 0.0037716187909791771) + +[fips3651000] +centroid = (0.70972546923312463, -1.2904702689858274) +description = New York city, NY +station = ('knyc', 0.0021111123955739703) +zone = ('nyz075', 0.00037870346899145866) + +[fips3651011] +centroid = (0.75224922963407514, -1.3141127084728528) +description = New York Mills village, NY +station = ('krme', 0.0026850730030528983) +zone = ('nyz037', 0.0014871906683512032) + +[fips3651055] +centroid = (0.75211195948840581, -1.3790674229671418) +description = Niagara Falls city, NY +station = ('kiag', 0.001117623657536861) +zone = ('nyz001', 0.0039482038995336879) + +[fips3651110] +centroid = (0.73338764839399018, -1.3329149659716624) +description = Nichols village, NY +station = ('kbgm', 0.0059148067626221745) +zone = ('nyz055', 0.0027511769363025205) + +[fips3651275] +centroid = (0.74729671825520094, -1.2897587855162518) +description = Niskayuna CDP, NY +station = ('ksch', 0.00073509817203532826) +zone = ('nyz049', 0.0010914005995749847) + +[fips3651286] +centroid = (0.71395124296476076, -1.2773813991532987) +description = Nissequogue village, NY +station = ('kisp', 0.0021943208809491088) +zone = ('nyz078', 0.00054747039161215838) + +[fips3651297] +centroid = (0.74087875862318253, -1.2854136138104868) +description = Niverville CDP, NY +station = ('kalb', 0.0055974851603475956) +zone = ('nyz061', 0.0036920003093636354) + +[fips3651319] +centroid = (0.7817091831305556, -1.3087879707244059) +description = Norfolk CDP, NY +station = ('kmss', 0.003048534007947109) +zone = ('nyz026', 0.0013547889268448797) + +[fips3651396] +centroid = (0.71035645811759807, -1.2812772882030155) +description = North Amityville CDP, NY +station = ('kfrg', 0.00057794895513930467) +zone = ('nyz179', 0.0022805163497503075) + +[fips3651418] +centroid = (0.713417591092671, -1.2685856902148256) +description = Northampton CDP, NY +station = ('kfok', 0.0010036054408527899) +zone = ('nyz079', 0.002448664373304061) + +[fips3651440] +centroid = (0.71087185384571205, -1.2797838448686687) +description = North Babylon CDP, NY +station = ('utff', 0.0012022166533334397) +zone = ('nyz080', 0.0019294378334464152) + +[fips3651467] +centroid = (0.75083638560458577, -1.2889316914370244) +description = North Ballston Spa CDP, NY +station = ('ksch', 0.0031468508581630186) +zone = ('nyz050', 0.0014103617143226086) + +[fips3651495] +centroid = (0.71139688379129695, -1.278659137245391) +description = North Bay Shore CDP, NY +station = ('utff', 0.0021008746664183523) +zone = ('nyz080', 0.0010578325402088233) + +[fips3651517] +centroid = (0.7101805114757046, -1.2834979578767904) +description = North Bellmore CDP, NY +station = ('utff', 0.0017869024807331733) +zone = ('nyz179', 0.00059001906094084298) + +[fips3651528] +centroid = (0.71186559196192001, -1.2731402316176599) +description = North Bellport CDP, NY +station = ('khwv', 0.0011646855065889305) +zone = ('nyz080', 0.0032002628040025396) + +[fips3651583] +centroid = (0.74485974992722648, -1.3749639793627781) +description = North Boston CDP, NY +station = ('kbuf', 0.0045074350504721748) +zone = ('nyz085', 0.00094967887689035592) + +[fips3651792] +centroid = (0.74341987074762361, -1.3777095219025053) +description = North Collins village, NY +station = ('kdkk', 0.0047514836031805011) +zone = ('nyz085', 0.0023219036844794312) + +[fips3651847] +centroid = (0.76255672531733321, -1.2912910100665775) +description = North Creek CDP, NY +station = ('kgfl', 0.0077992130650874096) +zone = ('nyz042', 0.0022373984070462043) + +[fips3651915] +centroid = (0.74121637511368821, -1.3345381047227247) +description = Northeast Ithaca CDP, NY +station = ('kith', 0.00039400583885353184) +zone = ('nyz025', 0.00031815543482648908) + +[fips3652040] +centroid = (0.75348492274448708, -1.3562404362132332) +description = North Gates CDP, NY +station = ('kroc', 0.0010028956440266482) +zone = ('nyz003', 0.00045983631136227969) + +[fips3652078] +centroid = (0.71132982824143542, -1.2769369859658632) +description = North Great River CDP, NY +station = ('kisp', 0.0011313497970993718) +zone = ('nyz080', 0.00028005847192775726) + +[fips3652188] +centroid = (0.71598837381439595, -1.2621177618063224) +description = North Haven village, NY +station = ('khto', 0.0013796978129245992) +zone = ('nyz081', 0.0027379247892836711) + +[fips3653022] +centroid = (0.71168330977484173, -1.2859208239444089) +description = North Hills village, NY +station = ('klga', 0.0027185198408230765) +zone = ('nyz177', 0.0014543195068622489) + +[fips3653055] +centroid = (0.73906902672178953, -1.3554340766455193) +description = North Hornell village, NY +station = ('kdsv', 0.0039262814569389218) +zone = ('nyz022', 0.0038223914819102297) + +[fips3653198] +centroid = (0.71047435510857038, -1.280826801269783) +description = North Lindenhurst CDP, NY +station = ('kfrg', 0.0006109046127277571) +zone = ('nyz179', 0.0026316240945397995) + +[fips3653231] +centroid = (0.70980032640474267, -1.2858466823577841) +description = North Lynbrook CDP, NY +station = ('kjfk', 0.0013773777891562156) +zone = ('nyz179', 0.0012500441775356989) + +[fips3653253] +centroid = (0.7104014876122996, -1.2822780774494014) +description = North Massapequa CDP, NY +station = ('utff', 0.00087873509649802654) +zone = ('nyz179', 0.0015309906410838233) + +[fips3653264] +centroid = (0.71014600631639269, -1.2838742683168127) +description = North Merrick CDP, NY +station = ('utff', 0.0020614953768890048) +zone = ('nyz179', 0.00030654601636577054) + +[fips3653275] +centroid = (0.71114799983996257, -1.2860943445786421) +description = North New Hyde Park CDP, NY +station = ('kjfk', 0.0022229608027620144) +zone = ('nyz179', 0.0016842674951171555) + +[fips3653319] +centroid = (0.711815675545313, -1.2745072956608694) +description = North Patchogue CDP, NY +station = ('kisp', 0.001043595180851327) +zone = ('nyz080', 0.0021815317604597937) + +[fips3653396] +centroid = (0.71391026263392399, -1.2801111813698802) +description = Northport village, NY +station = ('utff', 0.0031136148353355267) +zone = ('nyz078', 0.0023341140766639356) + +[fips3653462] +centroid = (0.75375918378314555, -1.3419208474586608) +description = North Rose CDP, NY +station = ('kfzy', 0.0069960946835132673) +zone = ('nyz004', 0.0018945895413992049) + +[fips3653561] +centroid = (0.71438284543548647, -1.2637239708636401) +description = North Sea CDP, NY +station = ('khto', 0.0020908615481250651) +zone = ('nyz081', 0.0007847817967031915) + +[fips3653660] +centroid = (0.75282775392123369, -1.328729125373312) +description = North Syracuse village, NY +station = ('ksyr', 0.00049155773923547318) +zone = ('nyz018', 0.0023793792747074721) + +[fips3653682] +centroid = (0.75134952985796455, -1.3765625438779721) +description = North Tonawanda city, NY +station = ('kiag', 0.0014195563138963022) +zone = ('nyz010', 0.0030024970646237662) + +[fips3653748] +centroid = (0.71007511104217658, -1.2864478610186336) +description = North Valley Stream CDP, NY +station = ('kjfk', 0.0011807452023314758) +zone = ('nyz178', 0.0011624460549318168) + +[fips3653770] +centroid = (0.7543933840734427, -1.294503585260846) +description = Northville village, NY +station = ('ksch', 0.0071827159687289401) +zone = ('nyz082', 0.0033991113983160453) + +[fips3653775] +centroid = (0.71515864428799791, -1.2676369292334415) +description = Northville CDP, NY +station = ('kfok', 0.0021989511040609901) +zone = ('nyz079', 0.0007136849645388801) + +[fips3653792] +centroid = (0.71024215650488498, -1.2831025360814585) +description = North Wantagh CDP, NY +station = ('utff', 0.0014913682986175548) +zone = ('nyz179', 0.00089200991424819151) + +[fips3653852] +centroid = (0.71561515260714958, -1.2605283253631163) +description = Northwest Harbor CDP, NY +station = ('khto', 0.00083098948964658995) +zone = ('nyz081', 0.0034942325443807162) + +[fips3653853] +centroid = (0.74126198056704296, -1.3359218715668759) +description = Northwest Ithaca CDP, NY +station = ('kith', 0.0011386386580455295) +zone = ('nyz025', 0.00094924321106029067) + +[fips3653979] +centroid = (0.7423465107109396, -1.3181207872868876) +description = Norwich city, NY +station = ('kbgm', 0.0083137563336080269) +zone = ('nyz045', 0.0013356896948582009) + +[fips3654012] +centroid = (0.78100516967017852, -1.3089388893448257) +description = Norwood village, NY +station = ('kmss', 0.003704610674868946) +zone = ('nyz026', 0.0019906421981028587) + +[fips3654056] +centroid = (0.71520948572910847, -1.2626761624472054) +description = Noyack CDP, NY +station = ('khto', 0.0012834654950979584) +zone = ('nyz081', 0.0019020771854927627) + +[fips3654078] +centroid = (0.74316339461404302, -1.3602734732355717) +description = Nunda village, NY +station = ('kdsv', 0.002853525702595176) +zone = ('nyz013', 0.0033200021088145609) + +[fips3654100] +centroid = (0.71715311929071446, -1.2900597675457584) +description = Nyack village, NY +station = ('khpn', 0.002857175507613695) +zone = ('nyz069', 0.0018081525488487719) + +[fips3654112] +centroid = (0.70949023375654086, -1.2788466205136404) +description = Oak Beach-Captree CDP, NY +station = ('utff', 0.0024021645982842182) +zone = ('nyz080', 0.0021036135605271159) + +[fips3654144] +centroid = (0.71101198633135465, -1.2764364255363914) +description = Oakdale CDP, NY +station = ('kisp', 0.0011740856385851455) +zone = ('nyz080', 0.00067487315334627859) + +[fips3654155] +centroid = (0.75162530933307214, -1.366086972987747) +description = Oakfield village, NY +station = ('kroc', 0.0075445780570387632) +zone = ('nyz011', 0.0014904948791244535) + +[fips3654430] +centroid = (0.70941151940727598, -1.2768221956609598) +description = Ocean Beach village, NY +station = ('kisp', 0.0027850451559059217) +zone = ('nyz080', 0.0018483851068694537) + +[fips3654441] +centroid = (0.70917998402870641, -1.285220336049121) +description = Oceanside CDP, NY +station = ('kjfk', 0.001708185314575829) +zone = ('nyz179', 0.0012298358529804537) + +[fips3654452] +centroid = (0.73888512137850693, -1.3402054156967529) +description = Odessa village, NY +station = ('kelm', 0.0032742830358698728) +zone = ('nyz023', 0.0015213337126972501) + +[fips3654485] +centroid = (0.7803223968667985, -1.3170825432747539) +description = Ogdensburg city, NY +station = ('cxke', 0.0054789434520742053) +zone = ('nyz087', 0.0038766741033266824) + +[fips3654540] +centroid = (0.7562628760484239, -1.3736573386182724) +description = Olcott CDP, NY +station = ('kiag', 0.0047329452056682261) +zone = ('nyz001', 0.002311725212579671) + +[fips3654551] +centroid = (0.71123612151389581, -1.2820907163541999) +description = Old Bethpage CDP, NY +station = ('utff', 0.00062039161508301477) +zone = ('nyz179', 0.0019645188947840487) + +[fips3654562] +centroid = (0.71273085639188871, -1.2846514808860185) +description = Old Brookville village, NY +station = ('utff', 0.0030612390484984053) +zone = ('nyz177', 0.00011187714724152514) + +[fips3654617] +centroid = (0.71497395354655191, -1.2766376969057311) +description = Old Field village, NY +station = ('kisp', 0.002942767747649937) +zone = ('nyz078', 0.0015586045999241467) + +[fips3654639] +centroid = (0.76282079363315991, -1.3084596393855208) +description = Old Forge CDP, NY +station = ('krme', 0.0098968417343782197) +zone = ('nyz032', 8.1828062989849952e-05) + +[fips3654705] +centroid = (0.71186047814721165, -1.2845210000711393) +description = Old Westbury village, NY +station = ('utff', 0.0025579876930846165) +zone = ('nyz177', 0.00081854207494942482) + +[fips3654716] +centroid = (0.73450336757161994, -1.3689510757435623) +description = Olean city, NY +station = ('kole', 0.0027536581745358207) +zone = ('nyz020', 0.0042666381408789748) + +[fips3654837] +centroid = (0.75172111045571421, -1.3207528136120652) +description = Oneida city, NY +station = ('krme', 0.0044961158603159515) +zone = ('nyz036', 0.0027501558523981462) + +[fips3654848] +centroid = (0.75191290468721572, -1.3200493062971712) +description = Oneida Castle village, NY +station = ('krme', 0.0039809179049917556) +zone = ('nyz036', 0.002978072416994017) + +[fips3654881] +centroid = (0.74097635743495405, -1.3101642850126511) +description = Oneonta city, NY +station = ('kmsv', 0.013620152635295233) +zone = ('nyz046', 0.0031547793675151172) + +[fips3655002] +centroid = (0.75429002567513959, -1.3487788220483996) +description = Ontario CDP, NY +station = ('kroc', 0.0054363480215620019) +zone = ('nyz004', 0.0033566221687751003) + +[fips3655167] +centroid = (0.71643559698192705, -1.2905110224238616) +description = Orangeburg CDP, NY +station = ('khpn', 0.0031849513051419847) +zone = ('nyz069', 0.0021223540424653814) + +[fips3655189] +centroid = (0.724939329789834, -1.2931889160017813) +description = Orange Lake CDP, NY +station = ('kswf', 0.00063214549912370393) +zone = ('nyz067', 0.0036178842836120705) + +[fips3655266] +centroid = (0.74634322743154402, -1.374302359949932) +description = Orchard Park village, NY +station = ('kbuf', 0.0029867290149092006) +zone = ('nyz085', 0.0024143018904479226) + +[fips3655321] +centroid = (0.71811221262127034, -1.2610937073210073) +description = Orient CDP, NY +station = ('khto', 0.0032353572373808939) +zone = ('ctz011', 0.0039977887334492384) + +[fips3655365] +centroid = (0.75322764375945062, -1.3148179262104136) +description = Oriskany village, NY +station = ('krme', 0.0015815976967663962) +zone = ('nyz037', 0.001132603634895575) + +[fips3655376] +centroid = (0.74940929968839998, -1.3170884599409181) +description = Oriskany Falls village, NY +station = ('krme', 0.0052180929550757378) +zone = ('nyz036', 0.0026699860383989872) + +[fips3655530] +centroid = (0.71834540606262942, -1.2892818044849743) +description = Ossining village, NY +station = ('khpn', 0.0027515574151638004) +zone = ('nyz070', 0.0019635296795767706) + +[fips3655574] +centroid = (0.75848609390290678, -1.335241262971768) +description = Oswego city, NY +station = ('kfzy', 0.0024260235338661035) +zone = ('nyz006', 0.0046275108241710522) + +[fips3655618] +centroid = (0.73989392168615953, -1.3121397708331057) +description = Otego village, NY +station = ('kmsv', 0.01305650228560588) +zone = ('nyz057', 0.0043746456848089525) + +[fips3655673] +centroid = (0.72381313863669217, -1.3009633455284499) +description = Otisville village, NY +station = ('kmgj', 0.0036557102591946956) +zone = ('nyz067', 0.0032929422261031185) + +[fips3655816] +centroid = (0.7448305680221331, -1.3408124935704742) +description = Ovid village, NY +station = ('kpeo', 0.002948893945410118) +zone = ('nyz016', 0.0018387680945551308) + +[fips3655882] +centroid = (0.73486320210350364, -1.3310269560533174) +description = Owego village, NY +station = ('kbgm', 0.0039745676272973079) +zone = ('nyz055', 0.0012813435071754307) + +[fips3655937] +centroid = (0.77295237758110946, -1.3198624164408679) +description = Oxbow CDP, NY +station = ('kgtb', 0.0043612583755859727) +zone = ('nyz007', 0.0056041062376827469) + +[fips3655948] +centroid = (0.74073852141778473, -1.3193987348184903) +description = Oxford village, NY +station = ('kbgm', 0.0065351031382093576) +zone = ('nyz045', 0.00093628227947184874) + +[fips3655992] +centroid = (0.71328215354271629, -1.2833589773084539) +description = Oyster Bay CDP, NY +station = ('utff', 0.0027809271217938015) +zone = ('nyz177', 0.0010656544915351688) + +[fips3656011] +centroid = (0.71315018919797291, -1.2829108814762971) +description = Oyster Bay Cove village, NY +station = ('utff', 0.0024953316203385634) +zone = ('nyz177', 0.0013055523214969889) + +[fips3656088] +centroid = (0.73589647192726937, -1.3455159290117962) +description = Painted Post village, NY +station = ('kelm', 0.0024893095852329969) +zone = ('nyz024', 0.0043186072006601199) + +[fips3656110] +centroid = (0.74899597081494274, -1.3016563983211245) +description = Palatine Bridge village, NY +station = ('kalb', 0.010379990923591792) +zone = ('nyz040', 0.0017983476091840752) + +[fips3656132] +centroid = (0.73627985095076243, -1.2920492858133992) +description = Palenville CDP, NY +station = ('kpou', 0.0098249258016676888) +zone = ('nyz059', 0.0026526458596798602) + +[fips3656187] +centroid = (0.75155385555349552, -1.3479128769400226) +description = Palmyra village, NY +station = ('kroc', 0.0058632500232665696) +zone = ('nyz004', 0.0030528567628798926) + +[fips3656212] +centroid = (0.76865935631339388, -1.3247333685837961) +description = Pamelia Center CDP, NY +station = ('kgtb', 0.0021172483583829929) +zone = ('nyz007', 0.00010751021032030264) + +[fips3656231] +centroid = (0.73423505810571099, -1.3873131612050189) +description = Panama village, NY +station = ('kjhw', 0.0031894769969722822) +zone = ('nyz019', 0.0031945559387513518) + +[fips3656291] +centroid = (0.77953089005101894, -1.2819958751626463) +description = Parc CDP, NY +station = ('kpbg', 0.00029538238218101992) +zone = ('nyz028', 0.0025342027295744028) + +[fips3656341] +centroid = (0.75757365322325676, -1.3286536747897484) +description = Parish village, NY +station = ('kfzy', 0.0034034902348605649) +zone = ('nyz006', 0.00040070060089449127) + +[fips3656363] +centroid = (0.77893548842999361, -1.305379412508431) +description = Parishville CDP, NY +station = ('kmss', 0.0053464037381755515) +zone = ('nyz026', 0.0040810341895683687) + +[fips3656660] +centroid = (0.71144767287252997, -1.2744313912917005) +description = Patchogue village, NY +station = ('kisp', 0.0012445322746037857) +zone = ('nyz080', 0.0021696697351104577) + +[fips3656770] +centroid = (0.77549144767032574, -1.2958954155261413) +description = Paul Smiths CDP, NY +station = ('kslk', 0.00083536174977993829) +zone = ('nyz030', 0.0014931922346691233) + +[fips3656781] +centroid = (0.74838669382636402, -1.3617414696694241) +description = Pavilion CDP, NY +station = ('kroc', 0.0059867979692056024) +zone = ('nyz011', 0.0030511123400423792) + +[fips3656814] +centroid = (0.72542182606154781, -1.2845507928414708) +description = Pawling village, NY +station = ('kdxr', 0.0037572466842739571) +zone = ('nyz068', 0.0030924398266915587) + +[fips3656869] +centroid = (0.72198953136774591, -1.2841522294534855) +description = Peach Lake CDP, NY +station = ('kdxr', 0.0012204016039564264) +zone = ('ctz005', 0.0028087685928363478) + +[fips3656902] +centroid = (0.71665943545849531, -1.2916803406628199) +description = Pearl River CDP, NY +station = ('kteb', 0.0034466477078871766) +zone = ('nyz069', 0.0016084572263361755) + +[fips3656968] +centroid = (0.71626684109655181, -1.2647427020947368) +description = Peconic CDP, NY +station = ('khto', 0.0031247993710065169) +zone = ('nyz079', 0.0017369129411641062) + +[fips3656979] +centroid = (0.72060099977473679, -1.2902101625674027) +description = Peekskill city, NY +station = ('kswf', 0.0043707468082229105) +zone = ('nyz070', 0.0025775277332900437) + +[fips3657001] +centroid = (0.71403304654680178, -1.2881874481373889) +description = Pelham village, NY +station = ('klga', 0.0024429762157624998) +zone = ('nyz073', 0.0012852770959124722) + +[fips3657023] +centroid = (0.71371867784193255, -1.2881564510898733) +description = Pelham Manor village, NY +station = ('klga', 0.0021708955335410745) +zone = ('nyz073', 0.0010706870377617656) + +[fips3657177] +centroid = (0.74456992055164017, -1.3448297877229598) +description = Penn Yan village, NY +station = ('kpeo', 0.00019110424445149604) +zone = ('nyz015', 0.00082377992861744007) + +[fips3657243] +centroid = (0.74555615375206474, -1.3614860756399798) +description = Perry village, NY +station = ('kdsv', 0.0045648318039241426) +zone = ('nyz012', 0.002796309479742071) + +[fips3657287] +centroid = (0.74103927655448842, -1.3788287317386392) +description = Perrysburg village, NY +station = ('kdkk', 0.0037051401655673849) +zone = ('nyz085', 0.0042388874738968681) + +[fips3657364] +centroid = (0.7780494545819262, -1.2834123669302724) +description = Peru CDP, NY +station = ('kpbg', 0.0014966281983260343) +zone = ('nyz028', 0.0039121256846622945) + +[fips3657518] +centroid = (0.74976080899975162, -1.3449875131274622) +description = Phelps village, NY +station = ('kpeo', 0.0053801175201752304) +zone = ('nyz004', 0.0034892836236078994) + +[fips3657551] +centroid = (0.77063643038346807, -1.3213812717691233) +description = Philadelphia village, NY +station = ('kgtb', 0.0018431174317898146) +zone = ('nyz007', 0.0031992578287313353) + +[fips3657639] +centroid = (0.73739150351123517, -1.2853712372162485) +description = Philmont village, NY +station = ('kpsf', 0.0056775235389917083) +zone = ('nyz061', 0.0014286399434755739) + +[fips3657650] +centroid = (0.73448959692382176, -1.2970297050070128) +description = Phoenicia CDP, NY +station = ('kmsv', 0.0091943473238742489) +zone = ('nyz063', 0.0029436205732632633) + +[fips3657661] +centroid = (0.75452149124053902, -1.3316130027095523) +description = Phoenix village, NY +station = ('kfzy', 0.0023574596836274894) +zone = ('nyz006', 0.003930419045359579) + +[fips3657749] +centroid = (0.71631052668772921, -1.2899974069315845) +description = Piermont village, NY +station = ('khpn', 0.0028166664949099999) +zone = ('nyz071', 0.002008429852402105) + +[fips3657782] +centroid = (0.76338687372275182, -1.3275492129857938) +description = Pierrepont Manor CDP, NY +station = ('kart', 0.0042833730176977218) +zone = ('nyz006', 0.0055490535145393234) + +[fips3657804] +centroid = (0.74755687703350326, -1.3588853779748755) +description = Piffard CDP, NY +station = ('kdsv', 0.0049726188550782407) +zone = ('nyz013', 0.0020998987003193878) + +[fips3657815] +centroid = (0.74270730517391192, -1.3639322243998198) +description = Pike CDP, NY +station = ('kole', 0.0062688109778622414) +zone = ('nyz012', 0.0027705870967070813) + +[fips3657980] +centroid = (0.72622356050674386, -1.2967189665869876) +description = Pine Bush CDP, NY +station = ('kmgj', 0.00166726552096409) +zone = ('nyz067', 0.0036207967666509644) + +[fips3658057] +centroid = (0.73535707792194049, -1.2998130339250453) +description = Pine Hill CDP, NY +station = ('kmsv', 0.0086615222742391172) +zone = ('nyz063', 0.0038845401372971607) + +[fips3658145] +centroid = (0.73264892033479101, -1.2855781110924871) +description = Pine Plains CDP, NY +station = ('kpou', 0.0066858746566842119) +zone = ('nyz066', 0.0038779036639645923) + +[fips3658189] +centroid = (0.73705744749240343, -1.341251251891133) +description = Pine Valley CDP, NY +station = ('kelm', 0.0012977473706722472) +zone = ('nyz024', 0.0019256326667011481) + +[fips3658354] +centroid = (0.75207097915756893, -1.3529193888059534) +description = Pittsford village, NY +station = ('kroc', 0.0021735962926074546) +zone = ('nyz003', 0.0024842812513724438) + +[fips3658409] +centroid = (0.710768059115096, -1.2824154697681185) +description = Plainedge CDP, NY +station = ('utff', 0.00081377423169271077) +zone = ('nyz179', 0.0015282449747422088) + +[fips3658442] +centroid = (0.71177495701386395, -1.2823463721830319) +description = Plainview CDP, NY +station = ('utff', 0.0011127304199212847) +zone = ('nyz179', 0.0021639871100021316) + +[fips3658475] +centroid = (0.7122091600251752, -1.2863361075866282) +description = Plandome village, NY +station = ('klga', 0.0024348954069057477) +zone = ('nyz177', 0.0014521504101564437) + +[fips3658486] +centroid = (0.71211950246150024, -1.2863954313279036) +description = Plandome Heights village, NY +station = ('klga', 0.0023771410590102161) +zone = ('nyz177', 0.001525311807644958) + +[fips3658497] +centroid = (0.71233143779256991, -1.286264496727419) +description = Plandome Manor village, NY +station = ('klga', 0.0025110766193222143) +zone = ('nyz177', 0.0013647759453016012) + +[fips3658541] +centroid = (0.72640205532934532, -1.2925677184144115) +description = Plattekill CDP, NY +station = ('kswf', 0.00215895875778021) +zone = ('nyz064', 0.0037321971158194248) + +[fips3658574] +centroid = (0.78004785657545961, -1.2820482175869137) +description = Plattsburgh city, NY +station = ('kpbg', 0.00076991818386730275) +zone = ('nyz028', 0.0020324679470583359) + +[fips3658601] +centroid = (0.77986719754458567, -1.2828611744992002) +description = Plattsburgh West CDP, NY +station = ('kpbg', 0.00072932096755545708) +zone = ('nyz028', 0.0020897970855632288) + +[fips3658684] +centroid = (0.72860979211336308, -1.2885119048453346) +description = Pleasant Valley CDP, NY +station = ('kpou', 0.0021065825083884542) +zone = ('nyz065', 0.00050925506974315322) + +[fips3658728] +centroid = (0.71792741716006925, -1.287771414003591) +description = Pleasantville village, NY +station = ('khpn', 0.0016144350426305562) +zone = ('nyz070', 0.0016070151153274469) + +[fips3658739] +centroid = (0.77271899215353268, -1.3239629278920884) +description = Plessis CDP, NY +station = ('kgtb', 0.0041997358309269726) +zone = ('nyz007', 0.0041135788179483355) + +[fips3658794] +centroid = (0.74519771548358249, -1.2835162663806436) +description = Poestenkill CDP, NY +station = ('kalb', 0.0034603145259479557) +zone = ('nyz053', 0.00098425111241288912) + +[fips3658849] +centroid = (0.70843483315785982, -1.2842037690262966) +description = Point Lookout CDP, NY +station = ('kjfk', 0.0025915228433392085) +zone = ('nyz179', 0.0017457383691934752) + +[fips3658937] +centroid = (0.75443748854364057, -1.3100691296618323) +description = Poland village, NY +station = ('krme', 0.0043073254519950767) +zone = ('nyz038', 0.0027003044233620426) + +[fips3658992] +centroid = (0.71888607415831218, -1.2924904701417181) +description = Pomona village, NY +station = ('khpn', 0.0051242670294936905) +zone = ('nyz069', 0.00074626601322959612) + +[fips3659157] +centroid = (0.71476545651410861, -1.2756764568201955) +description = Poquott village, NY +station = ('kisp', 0.0026738335686432089) +zone = ('nyz078', 0.00168977337028912) + +[fips3659212] +centroid = (0.75113899079029656, -1.337363845141581) +description = Port Byron village, NY +station = ('kfzy', 0.0062693414857405826) +zone = ('nyz005', 0.0024599949646854319) + +[fips3659223] +centroid = (0.71566704124581126, -1.2857347543928537) +description = Port Chester village, NY +station = ('khpn', 0.0011646457380314322) +zone = ('nyz071', 0.0015312231232674116) + +[fips3659245] +centroid = (0.73542977088528616, -1.3246004617612566) +description = Port Dickinson village, NY +station = ('kbgm', 0.0015947210791831662) +zone = ('nyz056', 0.0010444635584608349) + +[fips3659311] +centroid = (0.73136559718909211, -1.2911464618979276) +description = Port Ewen CDP, NY +station = ('kpou', 0.0048823679573500164) +zone = ('nyz064', 0.0016488655732909811) + +[fips3659322] +centroid = (0.75109148292805716, -1.3466405493686111) +description = Port Gibson CDP, NY +station = ('kpeo', 0.0068464159399814709) +zone = ('nyz004', 0.0026825931975772779) + +[fips3659333] +centroid = (0.76876117882195527, -1.2821381544032691) +description = Port Henry village, NY +station = ('kbtv', 0.008296467278991625) +zone = ('nyz035', 0.0035435157311915714) + +[fips3659355] +centroid = (0.71457579158429441, -1.275011870347621) +description = Port Jefferson village, NY +station = ('kisp', 0.002558456294994009) +zone = ('nyz078', 0.0019271266329702272) + +[fips3659377] +centroid = (0.7142926119131584, -1.2752254986480651) +description = Port Jefferson Station CDP, NY +station = ('kisp', 0.0022461911777897207) +zone = ('nyz078', 0.0016366584597008109) + +[fips3659388] +centroid = (0.72217788730062105, -1.3036681346301431) +description = Port Jervis city, NY +station = ('kfwn', 0.003204863894869717) +zone = ('njz001', 0.0041603206270304635) + +[fips3659454] +centroid = (0.76070873579873655, -1.3149557025015661) +description = Port Leyden village, NY +station = ('krme', 0.0061894611645060627) +zone = ('nyz008', 0.0037331744406091018) + +[fips3659498] +centroid = (0.73367892639285548, -1.3672430441776831) +description = Portville village, NY +station = ('kole', 0.0034528409490089075) +zone = ('paz005', 0.0050018156802711716) + +[fips3659520] +centroid = (0.71257346259994392, -1.2859587324957622) +description = Port Washington CDP, NY +station = ('klga', 0.0027943158363313279) +zone = ('nyz177', 0.0010933863221629454) + +[fips3659531] +centroid = (0.71283704222358013, -1.2862933819265394) +description = Port Washington North village, NY +station = ('klga', 0.0026430252941285815) +zone = ('nyz177', 0.0013506140000531441) + +[fips3659564] +centroid = (0.7796253298168444, -1.3087507603047535) +description = Potsdam village, NY +station = ('kmss', 0.0049069045553868772) +zone = ('nyz026', 0.0032181075959155274) + +[fips3659619] +centroid = (0.76337188134447709, -1.2884285304669669) +description = Pottersville CDP, NY +station = ('kgfl', 0.0075231200121628847) +zone = ('nyz042', 0.0025098613094716804) + +[fips3659641] +centroid = (0.72770796303556518, -1.2901450966928885) +description = Poughkeepsie city, NY +station = ('kpou', 0.001170537714270108) +zone = ('nyz065', 0.001655145397491966) + +[fips3659708] +centroid = (0.74219768648562201, -1.3489355875218136) +description = Prattsburgh CDP, NY +station = ('kpeo', 0.0037620715073498402) +zone = ('nyz015', 0.0030198757678803864) + +[fips3659740] +centroid = (0.73909881949212108, -1.2990262394982464) +description = Prattsville CDP, NY +station = ('kalb', 0.010712765773083074) +zone = ('nyz058', 0.0029269960636772777) + +[fips3659831] +centroid = (0.74059624217716213, -1.295536226766081) +description = Preston-Potter Hollow CDP, NY +station = ('kalb', 0.0078072692228488474) +zone = ('nyz051', 0.0026561432128348363) + +[fips3659883] +centroid = (0.7558143962438314, -1.3116274992443531) +description = Prospect village, NY +station = ('krme', 0.0034057991169494962) +zone = ('nyz038', 0.0044704990802683885) + +[fips3659960] +centroid = (0.76037371984881619, -1.3286236900331989) +description = Pulaski village, NY +station = ('kfzy', 0.0049989477914688185) +zone = ('nyz006', 0.0024561239689959258) + +[fips3659993] +centroid = (0.75526885867953564, -1.3469119829738814) +description = Pultneyville CDP, NY +station = ('kroc', 0.0070556152153205785) +zone = ('nyz004', 0.0027376564215992635) + +[fips3660103] +centroid = (0.72387237511150482, -1.2836706058463976) +description = Putnam Lake CDP, NY +station = ('kdxr', 0.0020737625119535957) +zone = ('ctz005', 0.0032325060077592863) + +[fips3660411] +centroid = (0.71243809486315923, -1.2676003471323198) +description = Quiogue CDP, NY +station = ('kfok', 0.00055021301743374187) +zone = ('nyz081', 0.0027398290645569341) + +[fips3660422] +centroid = (0.71246793999336844, -1.2670898906859891) +description = Quogue village, NY +station = ('kfok', 0.00055143685457705515) +zone = ('nyz081', 0.0024165645257574445) + +[fips3660576] +centroid = (0.73587078068068001, -1.3784556327044404) +description = Randolph village, NY +station = ('kjhw', 0.003719221880737237) +zone = ('nyz020', 0.0041702952477059409) + +[fips3660598] +centroid = (0.75466024491607264, -1.377263363385818) +description = Ransomville CDP, NY +station = ('kiag', 0.0021506799617005165) +zone = ('nyz001', 0.002246678866702055) + +[fips3660609] +centroid = (0.75219547349311366, -1.3725978714024343) +description = Rapids CDP, NY +station = ('kbuf', 0.0030854478371449188) +zone = ('nyz001', 0.0021983068959639989) + +[fips3660675] +centroid = (0.74133814673559983, -1.2882487091941339) +description = Ravena village, NY +station = ('kalb', 0.0047922736595072957) +zone = ('nyz052', 0.0027080503214201878) + +[fips3660829] +centroid = (0.75481830193313326, -1.3390663789203165) +description = Red Creek village, NY +station = ('kfzy', 0.0046662816854726764) +zone = ('nyz005', 0.0019050942175421796) + +[fips3660884] +centroid = (0.77853010080463292, -1.2882091076734059) +description = Redford CDP, NY +station = ('kpbg', 0.0043187803364703996) +zone = ('nyz031', 0.0017635086159394091) + +[fips3660895] +centroid = (0.73296740801669491, -1.289395652312082) +description = Red Hook village, NY +station = ('kpou', 0.0063292110540139144) +zone = ('nyz064', 0.0037121976135221905) + +[fips3660983] +centroid = (0.72694637116316485, -1.2893348275876499) +description = Red Oaks Mill CDP, NY +station = ('kpou', 0.00033357348433775581) +zone = ('nyz065', 0.0021363856567437676) + +[fips3661016] +centroid = (0.77314923326744189, -1.3230971049567588) +description = Redwood CDP, NY +station = ('kgtb', 0.0044310731557852898) +zone = ('nyz007', 0.0046696444695272874) + +[fips3661115] +centroid = (0.75622004566857992, -1.3122605825239289) +description = Remsen village, NY +station = ('krme', 0.0031729245195831896) +zone = ('nyz037', 0.0045848817968949579) + +[fips3661142] +centroid = (0.71237765411116261, -1.2689549844312551) +description = Remsenburg-Speonk CDP, NY +station = ('kfok', 0.0013159328191757261) +zone = ('nyz079', 0.0034847248553999074) + +[fips3661148] +centroid = (0.74430848768298408, -1.2868756063117124) +description = Rensselaer city, NY +station = ('kalb', 0.0020150199346684232) +zone = ('nyz052', 0.0019320722325712812) + +[fips3661159] +centroid = (0.77825575249951184, -1.3145784146771624) +description = Rensselaer Falls village, NY +station = ('cxke', 0.0081101589996064299) +zone = ('nyz087', 0.001293555944946302) + +[fips3661236] +centroid = (0.74756703484974996, -1.3591882100533892) +description = Retsof CDP, NY +station = ('kdsv', 0.0050675198912753221) +zone = ('nyz013', 0.0022290104534744798) + +[fips3661346] +centroid = (0.73179566377007599, -1.2899778766972547) +description = Rhinebeck village, NY +station = ('kpou', 0.0051688370178976494) +zone = ('nyz064', 0.0025742906113082886) + +[fips3661368] +centroid = (0.73171827587104254, -1.2905149145080934) +description = Rhinecliff CDP, NY +station = ('kpou', 0.005134791624851134) +zone = ('nyz064', 0.0022278856071796067) + +[fips3661434] +centroid = (0.73458752734815125, -1.3640884662744586) +description = Richburg village, NY +station = ('kelz', 0.0020364598328690359) +zone = ('nyz021', 0.0033827655905775316) + +[fips3661489] +centroid = (0.74793821402177163, -1.3087565547978699) +description = Richfield Springs village, NY +station = ('krme', 0.0084709362494158266) +zone = ('nyz046', 0.0038837849541405352) + +[fips3661588] +centroid = (0.74409416125083905, -1.3013667260251709) +description = Richmondville village, NY +station = ('kalb', 0.0099948959998603128) +zone = ('nyz047', 0.0017402420355994948) + +[fips3661621] +centroid = (0.77518920900375787, -1.315846553458369) +description = Richville village, NY +station = ('kgtb', 0.0076661662724068482) +zone = ('nyz087', 0.0020833812578524295) + +[fips3661665] +centroid = (0.71386579164458308, -1.2720902938995378) +description = Ridge CDP, NY +station = ('khwv', 0.0015010883165243725) +zone = ('nyz080', 0.0047318318674293893) + +[fips3661797] +centroid = (0.73004893825467998, -1.2922077791627726) +description = Rifton CDP, NY +station = ('kpou', 0.0039611209293932918) +zone = ('nyz064', 0.00031784395272358351) + +[fips3661874] +centroid = (0.73767539876736454, -1.3912421242440609) +description = Ripley CDP, NY +station = ('cwps', 0.0068211778404416602) +zone = ('nyz019', 0.0045166447918288544) + +[fips3661973] +centroid = (0.71470318316639747, -1.268422030690866) +description = Riverhead CDP, NY +station = ('kfok', 0.0019003131891598441) +zone = ('nyz079', 0.0014509332596173742) + +[fips3662061] +centroid = (0.73574679249061836, -1.3452992638384538) +description = Riverside village, NY +station = ('kelm', 0.0023369624221280215) +zone = ('nyz024', 0.0041475169573084265) + +[fips3662066] +centroid = (0.71395487324960494, -1.2684023608301962) +description = Riverside CDP, NY +station = ('kfok', 0.0012451393828543909) +zone = ('nyz079', 0.0019346206564966099) + +[fips3663000] +centroid = (0.75345736399559815, -1.3546703031115541) +description = Rochester city, NY +station = ('kroc', 0.0012569898625099864) +zone = ('nyz003', 0.0010864953888368573) + +[fips3663132] +centroid = (0.72620961532602046, -1.3017419892676423) +description = Rock Hill CDP, NY +station = ('kmsv', 0.0032321980678517554) +zone = ('nyz062', 0.0030450575351937915) + +[fips3663264] +centroid = (0.7097211059099946, -1.2852263923416254) +description = Rockville Centre village, NY +station = ('kjfk', 0.0017854307281875063) +zone = ('nyz179', 0.000854239058920196) + +[fips3663319] +centroid = (0.71446354946009871, -1.2729801674719594) +description = Rocky Point CDP, NY +station = ('khwv', 0.0022729064218070813) +zone = ('nyz078', 0.0032620087108744394) + +[fips3663330] +centroid = (0.76534862380199342, -1.3254127554484274) +description = Rodman CDP, NY +station = ('kart', 0.0025836411818201182) +zone = ('nyz007', 0.0033319957906662425) + +[fips3663418] +centroid = (0.754457542376746, -1.3175789323673137) +description = Rome city, NY +station = ('krme', 0.0011711133895531596) +zone = ('nyz037', 0.0021612230029398362) + +[fips3663429] +centroid = (0.74615965370081927, -1.3410249350470271) +description = Romulus CDP, NY +station = ('kpeo', 0.0032797496256415453) +zone = ('nyz016', 0.00053006289486404862) + +[fips3663473] +centroid = (0.71215186086583226, -1.2762916504749384) +description = Ronkonkoma CDP, NY +station = ('kisp', 0.00034991739577288185) +zone = ('nyz080', 0.0011902202985949969) + +[fips3663506] +centroid = (0.70998985170821682, -1.284272116119805) +description = Roosevelt CDP, NY +station = ('utff', 0.0024003090056121125) +zone = ('nyz179', 0.00018988089530432508) + +[fips3663583] +centroid = (0.73188272079316552, -1.3075325903000314) +description = Roscoe CDP, NY +station = ('kmsv', 0.0043509128642203127) +zone = ('nyz062', 0.0042545207448963654) + +[fips3663742] +centroid = (0.73047567125679269, -1.2927901606275782) +description = Rosendale Hamlet CDP, NY +station = ('kpou', 0.0045520715609917483) +zone = ('nyz064', 0.00036469470677524883) + +[fips3663770] +centroid = (0.71207007473708372, -1.2854212234460254) +description = Roslyn village, NY +station = ('klga', 0.0031051256212878495) +zone = ('nyz177', 0.0009140896787499127) + +[fips3663792] +centroid = (0.71198362857923247, -1.2856305931430947) +description = Roslyn Estates village, NY +station = ('klga', 0.0029407784702834179) +zone = ('nyz177', 0.0010906500828923406) + +[fips3663803] +centroid = (0.71229077162099852, -1.2852707062513333) +description = Roslyn Harbor village, NY +station = ('klga', 0.0032441191320804765) +zone = ('nyz177', 0.00068781013211483976) + +[fips3663814] +centroid = (0.71172346980093015, -1.2852534274917387) +description = Roslyn Heights CDP, NY +station = ('kjfk', 0.0030443464380792385) +zone = ('nyz177', 0.0011049418863250692) + +[fips3663924] +centroid = (0.74662558679793167, -1.2907407252067165) +description = Rotterdam CDP, NY +station = ('ksch', 0.0012757281644479666) +zone = ('nyz049', 0.0011446824908422336) + +[fips3663957] +centroid = (0.74940369718150113, -1.2879773977619113) +description = Round Lake village, NY +station = ('ksch', 0.0023323240428481389) +zone = ('nyz050', 0.0010385537731056528) + +[fips3663979] +centroid = (0.78524541218131372, -1.2804376626597584) +description = Rouses Point village, NY +station = ('kfso', 0.0034272970767036054) +zone = ('vtz001', 0.0034989652601070498) + +[fips3664155] +centroid = (0.73982801805360432, -1.3657603520715287) +description = Rushford CDP, NY +station = ('kole', 0.0030923145616862952) +zone = ('nyz021', 0.0036993564888586918) + +[fips3664199] +centroid = (0.74631477856473649, -1.3478722980349138) +description = Rushville village, NY +station = ('kpeo', 0.0029847096116538225) +zone = ('nyz014', 0.0018573644610413039) + +[fips3664232] +centroid = (0.71176083730021544, -1.2867518624677461) +description = Russell Gardens village, NY +station = ('klga', 0.0020869470086375278) +zone = ('nyz176', 0.0016664720518083636) + +[fips3664309] +centroid = (0.71461932009583917, -1.286069875062529) +description = Rye city, NY +station = ('khpn', 0.0021367739823324717) +zone = ('nyz071', 0.0014049268640104948) + +[fips3664325] +centroid = (0.71610864445315103, -1.2860695085433864) +description = Rye Brook village, NY +station = ('khpn', 0.00066462860699560266) +zone = ('nyz071', 0.0014772977632222318) + +[fips3664408] +centroid = (0.76686719987756857, -1.3284208304142398) +description = Sackets Harbor village, NY +station = ('kart', 0.0012721703553286994) +zone = ('nyz007', 0.0031126475938203996) + +[fips3664430] +centroid = (0.71199624730972433, -1.2871677220686186) +description = Saddle Rock village, NY +station = ('klga', 0.001781904860729312) +zone = ('nyz176', 0.0014886884995185736) + +[fips3664441] +centroid = (0.71198898674003608, -1.2870317958264732) +description = Saddle Rock Estates CDP, NY +station = ('klga', 0.0018835230902169403) +zone = ('nyz176', 0.0015723614684866093) + +[fips3664452] +centroid = (0.71437888353808443, -1.261327092748584) +description = Sagaponack village, NY +station = ('khto', 0.00054514959125629304) +zone = ('nyz081', 0.0025361803015278139) + +[fips3664485] +centroid = (0.71552502380457661, -1.2616923378011489) +description = Sag Harbor village, NY +station = ('khto', 0.00081639930357076682) +zone = ('nyz081', 0.0026889449571925678) + +[fips3664551] +centroid = (0.73442547352710341, -1.3696341627062076) +description = St. Bonaventure CDP, NY +station = ('kole', 0.0030246225028723191) +zone = ('nyz020', 0.0039650241708784695) + +[fips3664584] +centroid = (0.71342781872208771, -1.2767450346547289) +description = St. James CDP, NY +station = ('kisp', 0.0015004976279871338) +zone = ('nyz078', 0.00025714808780610149) + +[fips3664639] +centroid = (0.75050213759953632, -1.3033422991120882) +description = St. Johnsville village, NY +station = ('krme', 0.010078456699460716) +zone = ('nyz040', 0.0034723139062957493) + +[fips3664716] +centroid = (0.77975001613860695, -1.3008104895925603) +description = St. Regis Falls CDP, NY +station = ('kmss', 0.0059766979809432108) +zone = ('nyz027', 0.0041409146659457004) + +[fips3664749] +centroid = (0.73591343652759877, -1.3742942965287879) +description = Salamanca city, NY +station = ('kole', 0.0049891942026078374) +zone = ('nyz020', 0.0016710908278320829) + +[fips3664771] +centroid = (0.7535052907368579, -1.2797879812989958) +description = Salem village, NY +station = ('kgfl', 0.0046338728153425971) +zone = ('nyz084', 0.001423230644692445) + +[fips3664842] +centroid = (0.7111487503315409, -1.2838699573535604) +description = Salisbury CDP, NY +station = ('utff', 0.0019070153522387082) +zone = ('nyz179', 0.0010167582152392671) + +[fips3664859] +centroid = (0.72313045309977453, -1.2933984776850682) +description = Salisbury Mills CDP, NY +station = ('kswf', 0.0011840331534204017) +zone = ('nyz067', 0.0026613113935015156) + +[fips3664881] +centroid = (0.70926815806251708, -1.2774888241687588) +description = Saltaire village, NY +station = ('kisp', 0.0030914627480944038) +zone = ('nyz080', 0.0019650870790585227) + +[fips3664892] +centroid = (0.72968386773504046, -1.2878440022471815) +description = Salt Point CDP, NY +station = ('kpou', 0.0032885086509668172) +zone = ('nyz065', 0.0009811176103563721) + +[fips3664958] +centroid = (0.75302324825074962, -1.3766764091583721) +description = Sanborn CDP, NY +station = ('kiag', 0.00086414576960394717) +zone = ('nyz001', 0.0019800082150242949) + +[fips3665024] +centroid = (0.75500667531930099, -1.3306988167006502) +description = Sand Ridge CDP, NY +station = ('kfzy', 0.0023868544610796414) +zone = ('nyz006', 0.003195328501599393) + +[fips3665035] +centroid = (0.71302597411510849, -1.2863694782819266) +description = Sands Point village, NY +station = ('klga', 0.0026709616480872964) +zone = ('nyz177', 0.0014411817711977263) + +[fips3665068] +centroid = (0.76172045080624007, -1.3279567299128419) +description = Sandy Creek village, NY +station = ('kart', 0.0059709342564238351) +zone = ('nyz006', 0.0038568039191013113) + +[fips3665233] +centroid = (0.77360991292350567, -1.2938187529689484) +description = Saranac Lake village, NY +station = ('kslk', 0.0015772782822474978) +zone = ('nyz030', 0.0037900215916048035) + +[fips3665255] +centroid = (0.75167508612333911, -1.2876626625378993) +description = Saratoga Springs city, NY +station = ('ksch', 0.0042902740693511422) +zone = ('nyz041', 0.0022231099938075142) + +[fips3665288] +centroid = (0.73435161119315917, -1.2905824936567305) +description = Saugerties village, NY +station = ('kpou', 0.0077543213558598943) +zone = ('nyz060', 0.0040380632790480205) + +[fips3665310] +centroid = (0.73404860458172039, -1.2906501251652454) +description = Saugerties South CDP, NY +station = ('kpou', 0.007458593952715047) +zone = ('nyz064', 0.004179431548558708) + +[fips3665332] +centroid = (0.75165590495485957, -1.3397067925827508) +description = Savannah CDP, NY +station = ('kfzy', 0.0068811698366806097) +zone = ('nyz005', 0.0027287933253989805) + +[fips3665354] +centroid = (0.73797885916440886, -1.3478069529077192) +description = Savona village, NY +station = ('kelm', 0.0046502727911811063) +zone = ('nyz022', 0.0020852919105763001) + +[fips3665409] +centroid = (0.71118042805746462, -1.2755795735934172) +description = Sayville CDP, NY +station = ('kisp', 0.00093426025058371449) +zone = ('nyz080', 0.001289659258989981) + +[fips3665431] +centroid = (0.71544620473555642, -1.2877149002424115) +description = Scarsdale village, NY +station = ('khpn', 0.0016801953091739002) +zone = ('nyz071', 0.00015298318066861826) + +[fips3665475] +centroid = (0.74877099787436063, -1.2843809199453744) +description = Schaghticoke village, NY +station = ('kalb', 0.0037732375682113517) +zone = ('nyz053', 0.0034394252075987471) + +[fips3665508] +centroid = (0.74703303391180975, -1.2902747048431413) +description = Schenectady city, NY +station = ('ksch', 0.00084409697101094235) +zone = ('nyz049', 0.00093771217225788682) + +[fips3665519] +centroid = (0.74263188949693315, -1.3059763325659055) +description = Schenevus CDP, NY +station = ('krme', 0.014002515287834295) +zone = ('nyz046', 0.0030231413588276386) + +[fips3665585] +centroid = (0.7446731742301882, -1.2970118328354723) +description = Schoharie village, NY +station = ('ksch', 0.0058267870324284713) +zone = ('nyz047', 0.0021469390434398533) + +[fips3665640] +centroid = (0.76506617716914305, -1.2874756156019629) +description = Schroon Lake CDP, NY +station = ('kgfl', 0.0089604919049714061) +zone = ('nyz042', 0.0043238093181602114) + +[fips3665750] +centroid = (0.75225395947634799, -1.2842349580600301) +description = Schuylerville village, NY +station = ('kgfl', 0.0040803357253505184) +zone = ('nyz084', 0.002087691699698874) + +[fips3665761] +centroid = (0.7360649485599644, -1.3610017467725515) +description = Scio CDP, NY +station = ('kelz', 0.0013081065149416892) +zone = ('nyz021', 0.0015914427720904341) + +[fips3665882] +centroid = (0.72387357938868879, -1.2979678194799595) +description = Scotchtown CDP, NY +station = ('kmgj', 0.0015129012606586399) +zone = ('nyz067', 0.0015094018489903607) + +[fips3665893] +centroid = (0.74755966956030651, -1.2908525309985992) +description = Scotia village, NY +station = ('ksch', 0.00046748641610290515) +zone = ('nyz049', 0.00026424231364706967) + +[fips3665926] +centroid = (0.74462418283808474, -1.356335626470637) +description = Scottsburg CDP, NY +station = ('kdsv', 0.0016966222245146396) +zone = ('nyz013', 0.0013833096741676764) + +[fips3665948] +centroid = (0.71888151884896445, -1.2837955888741328) +description = Scotts Corners CDP, NY +station = ('khpn', 0.0028513155308350136) +zone = ('ctz009', 0.0018929495930717847) + +[fips3665959] +centroid = (0.75088036790173596, -1.3570524681010161) +description = Scottsville village, NY +station = ('kroc', 0.0018739330226170516) +zone = ('nyz003', 0.0022869183570092323) + +[fips3666047] +centroid = (0.71289999624969957, -1.2854416612515662) +description = Sea Cliff village, NY +station = ('klga', 0.0032666262985255922) +zone = ('nyz177', 0.0007311333444197512) + +[fips3666058] +centroid = (0.70978683500962469, -1.2826744242692369) +description = Seaford CDP, NY +station = ('kfrg', 0.0015158387163143798) +zone = ('nyz179', 0.0012766196494656469) + +[fips3666102] +centroid = (0.71157824095387168, -1.2856153389654321) +description = Searingtown CDP, NY +station = ('kjfk', 0.0027757830312744058) +zone = ('nyz177', 0.0013779100764992835) + +[fips3666212] +centroid = (0.71331644926251792, -1.2748964866307717) +description = Selden CDP, NY +station = ('kisp', 0.0014136847397493732) +zone = ('nyz078', 0.0016593464008846268) + +[fips3666322] +centroid = (0.74890647033090041, -1.3403945570277918) +description = Seneca Falls village, NY +station = ('kpeo', 0.0055502254131803231) +zone = ('nyz016', 0.0022594689973666655) + +[fips3666366] +centroid = (0.75258534514142428, -1.331464859162643) +description = Seneca Knolls CDP, NY +station = ('ksyr', 0.0023870974827861916) +zone = ('nyz018', 0.0023168909183515357) + +[fips3666481] +centroid = (0.71434504160388823, -1.275887519486639) +description = Setauket-East Setauket CDP, NY +station = ('kisp', 0.0022510481611655525) +zone = ('nyz078', 0.0012705901640137371) + +[fips3666663] +centroid = (0.74687886897898115, -1.3022396349972634) +description = Sharon Springs village, NY +station = ('ksch', 0.0087553396095437531) +zone = ('nyz040', 0.0029235070382827339) + +[fips3666828] +centroid = (0.71655715916432849, -1.2621693362857187) +description = Shelter Island CDP, NY +station = ('khto', 0.00188573188654227) +zone = ('nyz081', 0.003146173304842455) + +[fips3666850] +centroid = (0.7167516062962932, -1.2630771692961436) +description = Shelter Island Heights CDP, NY +station = ('khto', 0.0024268482068443339) +zone = ('nyz081', 0.0029698594867318675) + +[fips3666872] +centroid = (0.72135035688908056, -1.2870156515308924) +description = Shenorock CDP, NY +station = ('kdxr', 0.0034294652918056509) +zone = ('nyz068', 0.0016860218324239091) + +[fips3666883] +centroid = (0.7449178344847327, -1.3176624812786064) +description = Sherburne village, NY +station = ('krme', 0.0097246126024109567) +zone = ('nyz045', 0.003583490225301049) + +[fips3666949] +centroid = (0.73581444145242558, -1.3891849046547353) +description = Sherman village, NY +station = ('kjhw', 0.004243828856936643) +zone = ('nyz019', 0.0031859870358391094) + +[fips3666993] +centroid = (0.75172097082937395, -1.3194552311263774) +description = Sherrill city, NY +station = ('krme', 0.0038101482190456616) +zone = ('nyz036', 0.0028930654168232632) + +[fips3667048] +centroid = (0.71363123684640761, -1.2645903173977451) +description = Shinnecock Hills CDP, NY +station = ('kfok', 0.0022260569236089039) +zone = ('nyz081', 0.00040135125972173889) + +[fips3667070] +centroid = (0.71201584735722423, -1.271883664369394) +description = Shirley CDP, NY +station = ('khwv', 0.00038045496339535602) +zone = ('nyz080', 0.0041627277444570877) + +[fips3667081] +centroid = (0.73270518974987531, -1.2952605520107285) +description = Shokan CDP, NY +station = ('kpou', 0.0074290901106570358) +zone = ('nyz063', 0.0023967974984294579) + +[fips3667191] +centroid = (0.71483563620333135, -1.272469047800513) +description = Shoreham village, NY +station = ('khwv', 0.0025078355810398134) +zone = ('nyz078', 0.0037514069121012063) + +[fips3667257] +centroid = (0.74971445305481876, -1.3478047537928615) +description = Shortsville village, NY +station = ('kpeo', 0.0057760406311623816) +zone = ('nyz014', 0.0020386060762531836) + +[fips3667279] +centroid = (0.72131888860266702, -1.2885663940245817) +description = Shrub Oak CDP, NY +station = ('kswf', 0.0046368132203966177) +zone = ('nyz068', 0.0020077903879078462) + +[fips3667334] +centroid = (0.73832572589995016, -1.3160360264019655) +description = Sidney village, NY +station = ('kbgm', 0.0077056805887632269) +zone = ('nyz045', 0.004274634617668133) + +[fips3667411] +centroid = (0.74250840745235458, -1.3817360663000262) +description = Silver Creek village, NY +station = ('kdkk', 0.001663543539543483) +zone = ('nyz085', 0.0054210473358188059) + +[fips3667466] +centroid = (0.74455901224381527, -1.3628309740016891) +description = Silver Springs village, NY +station = ('kdsv', 0.0049976454195209685) +zone = ('nyz012', 0.0019419268954160463) + +[fips3667488] +centroid = (0.73766967408741801, -1.3833315415824443) +description = Sinclairville village, NY +station = ('kjhw', 0.0020157950903060208) +zone = ('nyz019', 0.0015309881736295546) + +[fips3667510] +centroid = (0.74957147568249538, -1.333928757920976) +description = Skaneateles village, NY +station = ('ksyr', 0.005128612650632627) +zone = ('nyz017', 0.0028623442208234404) + +[fips3667638] +centroid = (0.71728693368446483, -1.2892684527161966) +description = Sleepy Hollow village, NY +station = ('khpn', 0.002295775734452749) +zone = ('nyz071', 0.0023171730701511319) + +[fips3667686] +centroid = (0.74861065447597996, -1.3751717433569355) +description = Sloan village, NY +station = ('kbuf', 0.0010335141356809102) +zone = ('nyz010', 0.0014944083289566438) + +[fips3667708] +centroid = (0.71841322955736175, -1.2948750087789629) +description = Sloatsburg village, NY +station = ('kcdw', 0.0050144956308888116) +zone = ('njz103', 0.0024507522648618977) + +[fips3667730] +centroid = (0.7271421447453611, -1.3058869891614961) +description = Smallwood CDP, NY +station = ('kmsv', 0.00071878294893466018) +zone = ('nyz062', 0.0011771754169277537) + +[fips3667851] +centroid = (0.71320104809237606, -1.2780076407422067) +description = Smithtown CDP, NY +station = ('kisp', 0.0019812864744352004) +zone = ('nyz078', 0.00074251978413697787) + +[fips3668088] +centroid = (0.73992053795725243, -1.323144298659733) +description = Smithville Flats CDP, NY +station = ('kbgm', 0.0040591045645962231) +zone = ('nyz045', 0.0030946372322508465) + +[fips3668099] +centroid = (0.74502738880188046, -1.3189224344656214) +description = Smyrna village, NY +station = ('krme', 0.009776989292556203) +zone = ('nyz045', 0.0034187046380338803) + +[fips3668209] +centroid = (0.75462978892062527, -1.3449987705011377) +description = Sodus village, NY +station = ('kroc', 0.0081734616260892255) +zone = ('nyz004', 0.0014684516404713413) + +[fips3668242] +centroid = (0.75510797422908671, -1.3438330476404383) +description = Sodus Point village, NY +station = ('kroc', 0.0091193004367428766) +zone = ('nyz004', 0.0019300905668911371) + +[fips3668286] +centroid = (0.75149151239261425, -1.3301582184181375) +description = Solvay village, NY +station = ('ksyr', 0.0017687319472223567) +zone = ('nyz018', 0.00092711545038696454) + +[fips3668374] +centroid = (0.71484977337027256, -1.2736100218924193) +description = Sound Beach CDP, NY +station = ('khwv', 0.0028325367552663413) +zone = ('nyz078', 0.0029736834366825677) + +[fips3668462] +centroid = (0.71343024472974792, -1.2636182737241395) +description = Southampton village, NY +station = ('khto', 0.0024302383214604645) +zone = ('nyz081', 0.00098476010123761172) + +[fips3668610] +centroid = (0.72210894679516735, -1.2944567406237226) +description = South Blooming Grove village, NY +station = ('kswf', 0.0023702905745557144) +zone = ('nyz067', 0.0018825296326396524) + +[fips3668847] +centroid = (0.73524057719436986, -1.344524163117643) +description = South Corning village, NY +station = ('kelm', 0.0018911653593734294) +zone = ('nyz024', 0.003576326279153841) + +[fips3668891] +centroid = (0.73937081160275198, -1.3797001048209898) +description = South Dayton village, NY +station = ('kdkk', 0.0038327433788854452) +zone = ('nyz019', 0.0047011876002540833) + +[fips3668968] +centroid = (0.72825189489694919, -1.3026297335383767) +description = South Fallsburg CDP, NY +station = ('kmsv', 0.0021938719207604223) +zone = ('nyz062', 0.0017391629168503082) + +[fips3669001] +centroid = (0.71063916654983617, -1.2819079454749309) +description = South Farmingdale CDP, NY +station = ('utff', 0.00051142022399747905) +zone = ('nyz179', 0.001853143278723523) + +[fips3669023] +centroid = (0.71058467737058895, -1.2863145702236587) +description = South Floral Park village, NY +station = ('kjfk', 0.0016514775258764589) +zone = ('nyz179', 0.0015975733375390619) + +[fips3669078] +centroid = (0.75563000220835819, -1.2851493884150273) +description = South Glens Falls village, NY +station = ('kgfl', 0.0007127002963593994) +zone = ('nyz083', 0.0016058540234587255) + +[fips3669188] +centroid = (0.71002334457656258, -1.2849696020487793) +description = South Hempstead CDP, NY +station = ('kjfk', 0.0020745103151545139) +zone = ('nyz179', 0.00054863712323676794) + +[fips3669199] +centroid = (0.74021991428384704, -1.3350679866836304) +description = South Hill CDP, NY +station = ('kith', 0.0014582378195983814) +zone = ('nyz025', 0.00075299390031549791) + +[fips3669254] +centroid = (0.71248722588160285, -1.28093565745523) +description = South Huntington CDP, NY +station = ('utff', 0.0015761730210308975) +zone = ('nyz179', 0.0034245176347833879) + +[fips3669364] +centroid = (0.74800357660225869, -1.3557021592186256) +description = South Lima CDP, NY +station = ('kroc', 0.0045251847115884798) +zone = ('nyz013', 0.0025916840704269012) + +[fips3669386] +centroid = (0.75288936404382911, -1.3732734534492963) +description = South Lockport CDP, NY +station = ('kbuf', 0.0036192768579806898) +zone = ('nyz001', 0.0013471206615516729) + +[fips3669441] +centroid = (0.71693364413727623, -1.2900880593329331) +description = South Nyack village, NY +station = ('khpn', 0.0028559906748147237) +zone = ('nyz069', 0.0019339917925769268) + +[fips3669452] +centroid = (0.71663065497912992, -1.2640945391704237) +description = Southold CDP, NY +station = ('khto', 0.0028995331430785964) +zone = ('nyz079', 0.0023412331236353197) + +[fips3669606] +centroid = (0.73416719970439337, -1.3408049537481055) +description = Southport CDP, NY +station = ('kelm', 0.002043513725029414) +zone = ('nyz024', 0.0015628453084346704) + +[fips3669892] +centroid = (0.70957713369999764, -1.2866316616421611) +description = South Valley Stream CDP, NY +station = ('kjfk', 0.0007478033516418489) +zone = ('nyz178', 0.00098495649731773641) + +[fips3670035] +centroid = (0.72699960370535077, -1.2899967087998836) +description = Spackenkill CDP, NY +station = ('kpou', 0.00051371939380308719) +zone = ('nyz065', 0.0022235367148046464) + +[fips3670068] +centroid = (0.71608953309784162, -1.2903793198785061) +description = Sparkill CDP, NY +station = ('khpn', 0.003140612191688917) +zone = ('njz104', 0.0022969596863065492) + +[fips3670123] +centroid = (0.7607540270928258, -1.2978042472224627) +description = Speculator village, NY +station = ('kgfl', 0.010398211676969558) +zone = ('nyz033', 0.0021665591514071565) + +[fips3670167] +centroid = (0.73677856133122732, -1.3351540139624609) +description = Spencer village, NY +station = ('kith', 0.0048543706303736658) +zone = ('nyz055', 0.0026036447326988378) + +[fips3670189] +centroid = (0.75377944705576116, -1.3579959058281816) +description = Spencerport village, NY +station = ('kroc', 0.0020158123103089245) +zone = ('nyz003', 0.0015977091831070075) + +[fips3670387] +centroid = (0.71600429121717424, -1.2595358787905546) +description = Springs CDP, NY +station = ('khto', 0.0015967601821390647) +zone = ('nyz081', 0.0043381320140665281) + +[fips3670420] +centroid = (0.71758456468180742, -1.2923938312610352) +description = Spring Valley village, NY +station = ('kteb', 0.0043267103056274627) +zone = ('nyz069', 0.00074315898960669493) + +[fips3670442] +centroid = (0.7419057278083484, -1.3730393698900187) +description = Springville village, NY +station = ('kole', 0.0061827249140370783) +zone = ('nyz085', 0.0023505965332132261) + +[fips3670477] +centroid = (0.74412095205485729, -1.3543130691202558) +description = Springwater Hamlet CDP, NY +station = ('kdsv', 0.0019514985494086367) +zone = ('nyz013', 0.0028132096109267173) + +[fips3670552] +centroid = (0.73047718969324194, -1.290186513356038) +description = Staatsburg CDP, NY +station = ('kpou', 0.0038717422713396097) +zone = ('nyz065', 0.0017385932060505064) + +[fips3670618] +centroid = (0.74017848016740484, -1.3023128864659694) +description = Stamford village, NY +station = ('ksch', 0.011674457486940439) +zone = ('nyz047', 0.0038520225983577783) + +[fips3670717] +centroid = (0.73433194133248914, -1.3598257962824352) +description = Stannards CDP, NY +station = ('kelz', 0.0012226963332552681) +zone = ('nyz021', 0.0035295985901990009) + +[fips3670849] +centroid = (0.77090376246499592, -1.3096759069813579) +description = Star Lake CDP, NY +station = ('kgtb', 0.0089488775840139232) +zone = ('nyz029', 0.0034955846813382149) + +[fips3671267] +centroid = (0.71070107337840438, -1.2860510953197777) +description = Stewart Manor village, NY +station = ('kjfk', 0.0018593185473219677) +zone = ('nyz179', 0.0014430569194636843) + +[fips3671322] +centroid = (0.74951297224596847, -1.2853338871702555) +description = Stillwater village, NY +station = ('kalb', 0.0039281824865320088) +zone = ('nyz050', 0.0029720652923394156) + +[fips3671597] +centroid = (0.73036308006674655, -1.2942410353814686) +description = Stone Ridge CDP, NY +station = ('kpou', 0.0051328621586252321) +zone = ('nyz064', 0.0012301098597919853) + +[fips3671608] +centroid = (0.71394363332922206, -1.2763134496372959) +description = Stony Brook CDP, NY +station = ('kisp', 0.0018842767697074415) +zone = ('nyz078', 0.00076187137117725301) + +[fips3671620] +centroid = (0.71401161390358725, -1.2762100737857001) +description = Stony Brook University CDP, NY +station = ('kisp', 0.0019380785169629863) +zone = ('nyz078', 0.00086542370151463451) + +[fips3671663] +centroid = (0.71958841210260727, -1.291502561425212) +description = Stony Point CDP, NY +station = ('khpn', 0.0048339593852940732) +zone = ('nyz069', 0.0013792882259883743) + +[fips3671718] +centroid = (0.73816457965011351, -1.2873691156110063) +description = Stottville CDP, NY +station = ('kalb', 0.0079796094823789097) +zone = ('nyz060', 0.0009214168214266874) + +[fips3671817] +centroid = (0.74539540892795597, -1.3691824191359141) +description = Strykersville CDP, NY +station = ('kbuf', 0.0053640550782017241) +zone = ('nyz012', 0.0028730503029628244) + +[fips3671894] +centroid = (0.71753948282722846, -1.2940109660794707) +description = Suffern village, NY +station = ('kcdw', 0.0044071408605639139) +zone = ('njz103', 0.0015403980896472188) + +[fips3672246] +centroid = (0.74283726239001535, -1.3810746563266905) +description = Sunset Bay CDP, NY +station = ('kdkk', 0.0022476331635829828) +zone = ('nyz085', 0.0048674046778659254) + +[fips3672327] +centroid = (0.75845471288295596, -1.3359077343999348) +description = SUNY Oswego CDP, NY +station = ('kfzy', 0.0027350932410559045) +zone = ('nyz005', 0.0049379708964022752) + +[fips3672521] +centroid = (0.75409833616339295, -1.3215882852717022) +description = Sylvan Beach village, NY +station = ('krme', 0.0041146290579643753) +zone = ('nyz009', 0.0044224476495584274) + +[fips3672554] +centroid = (0.71236800244039922, -1.2828523954930626) +description = Syosset CDP, NY +station = ('utff', 0.0018134561210971464) +zone = ('nyz177', 0.0012999878187123651) + +[fips3673000] +centroid = (0.75120712844429438, -1.3289557214700982) +description = Syracuse city, NY +station = ('ksyr', 0.0014326357859012781) +zone = ('nyz018', 0.00089533289765222131) + +[fips3673143] +centroid = (0.73643899007195923, -1.2939104002079707) +description = Tannersville village, NY +station = ('kpou', 0.010333425450399633) +zone = ('nyz058', 0.0017071692621252249) + +[fips3673154] +centroid = (0.71603076786192699, -1.2906953466461646) +description = Tappan CDP, NY +station = ('kteb', 0.0030624458514467729) +zone = ('njz104', 0.002131678647332554) + +[fips3673176] +centroid = (0.71672256401754009, -1.2892067553271387) +description = Tarrytown village, NY +station = ('khpn', 0.002185940279092957) +zone = ('nyz071', 0.0018249968034847837) + +[fips3673352] +centroid = (0.71399665643189758, -1.2749478691239504) +description = Terryville CDP, NY +station = ('kisp', 0.0020173657484272908) +zone = ('nyz078', 0.0017037895901006708) + +[fips3673517] +centroid = (0.77170677100054608, -1.3228887126440709) +description = Theresa village, NY +station = ('kgtb', 0.002993783190317444) +zone = ('nyz007', 0.003367433738888185) + +[fips3673583] +centroid = (0.71915420909129602, -1.2917638721208207) +description = Thiells CDP, NY +station = ('khpn', 0.0047617356491937123) +zone = ('nyz069', 0.00091315053044703639) + +[fips3673605] +centroid = (0.7118767271625478, -1.2865712907033344) +description = Thomaston village, NY +station = ('klga', 0.0022243369916854) +zone = ('nyz177', 0.0017473156267192092) + +[fips3673715] +centroid = (0.7176564722469897, -1.2876929614537138) +description = Thornwood CDP, NY +station = ('khpn', 0.0013835923260258588) +zone = ('nyz070', 0.0018531314559876097) + +[fips3673726] +centroid = (0.77298225761790351, -1.3268994792651538) +description = Thousand Island Park CDP, NY +station = ('kart', 0.0053291238115065996) +zone = ('nyz007', 0.0045591185432380006) + +[fips3673737] +centroid = (0.76939693245528673, -1.3299039239461219) +description = Three Mile Bay CDP, NY +station = ('kart', 0.0027020283559856151) +zone = ('nyz007', 0.0036827702297909308) + +[fips3673880] +centroid = (0.76516792986453441, -1.2814684017561087) +description = Ticonderoga CDP, NY +station = ('krut', 0.0080256272603518933) +zone = ('vtz009', 0.0039046561036382359) + +[fips3673902] +centroid = (0.73008459533129832, -1.2928078233596085) +description = Tillson CDP, NY +station = ('kpou', 0.0042355744338014763) +zone = ('nyz064', 0.0001492961805226218) + +[fips3674017] +centroid = (0.72720619832890931, -1.2892306837911833) +description = Titusville CDP, NY +station = ('kpou', 0.00060395801580203192) +zone = ('nyz065', 0.0018674310939886993) + +[fips3674023] +centroid = (0.73398584254181864, -1.2901006955167176) +description = Tivoli village, NY +station = ('kpou', 0.0073603782065419223) +zone = ('nyz060', 0.0040962572396533838) + +[fips3674166] +centroid = (0.75069988340378724, -1.3767758056592734) +description = Tonawanda city, NY +station = ('kiag', 0.0019354489587996388) +zone = ('nyz010', 0.0027650529861045852) + +[fips3674183] +centroid = (0.75023176864510988, -1.37664162474638) +description = Tonawanda CDP, NY +station = ('kbuf', 0.0020312712388770699) +zone = ('nyz010', 0.0024861892252308337) + +[fips3675121] +centroid = (0.74851539440540604, -1.3712570920177598) +description = Town Line CDP, NY +station = ('kbuf', 0.0022733558507877917) +zone = ('nyz010', 0.0018273613058472739) + +[fips3675341] +centroid = (0.74960325812817419, -1.2967608021291579) +description = Tribes Hill CDP, NY +station = ('ksch', 0.0049839386806838698) +zone = ('nyz039', 0.002231509151953331) + +[fips3675484] +centroid = (0.74588062791330301, -1.2858769289137211) +description = Troy city, NY +station = ('kalb', 0.0016171829867287558) +zone = ('nyz053', 0.0009295794983963494) + +[fips3675506] +centroid = (0.7424684045058989, -1.3380319571792445) +description = Trumansburg village, NY +station = ('kith', 0.0027780841326709993) +zone = ('nyz025', 0.0028890100931602465) + +[fips3675572] +centroid = (0.71390132654815375, -1.264238790633101) +description = Tuckahoe CDP, NY +station = ('kfok', 0.002566318196048393) +zone = ('nyz081', 0.00033745526962449798) + +[fips3675583] +centroid = (0.71476646880507488, -1.2884546056859916) +description = Tuckahoe village, NY +station = ('khpn', 0.0025599377891765132) +zone = ('nyz071', 0.00077496359001448414) + +[fips3675627] +centroid = (0.74696517551049224, -1.3283719437418913) +description = Tully village, NY +station = ('ksyr', 0.0055641179200255388) +zone = ('nyz044', 0.0035789767384049511) + +[fips3675671] +centroid = (0.77195609128419351, -1.2996044321728473) +description = Tupper Lake village, NY +station = ('kslk', 0.0044174853732657478) +zone = ('nyz030', 0.0055234918253297136) + +[fips3675682] +centroid = (0.7614728234919671, -1.3161645175414973) +description = Turin village, NY +station = ('krme', 0.006910134180536996) +zone = ('nyz008', 0.0027566506761871274) + +[fips3675726] +centroid = (0.74411243484810741, -1.3590776958051527) +description = Tuscarora CDP, NY +station = ('kdsv', 0.0022918882514959852) +zone = ('nyz013', 0.0020306964174918122) + +[fips3675803] +centroid = (0.71902371082312444, -1.2952156621423674) +description = Tuxedo Park village, NY +station = ('kswf', 0.0054821683206233533) +zone = ('njz002', 0.0025932948150643237) + +[fips3676001] +centroid = (0.73875277306132814, -1.3144927888240594) +description = Unadilla village, NY +station = ('kbgm', 0.0089156865913011182) +zone = ('nyz057', 0.0050335022618973454) + +[fips3676089] +centroid = (0.7103830394821059, -1.2844035917723577) +description = Uniondale CDP, NY +station = ('utff', 0.0023689180252528773) +zone = ('nyz179', 0.00022513895594295806) + +[fips3676155] +centroid = (0.74781420837841739, -1.3384623902793715) +description = Union Springs village, NY +station = ('kpeo', 0.0057680711134927487) +zone = ('nyz016', 0.0020780701696855798) + +[fips3676210] +centroid = (0.72084670722683253, -1.3013563587694139) +description = Unionville village, NY +station = ('kfwn', 0.0020018050276680928) +zone = ('njz001', 0.0032900127919249893) + +[fips3676280] +centroid = (0.7504633389302644, -1.3751746755100787) +description = University at Buffalo CDP, NY +station = ('kbuf', 0.0013582001806057059) +zone = ('nyz010', 0.0016555303127721603) + +[fips3676287] +centroid = (0.7116610219202939, -1.2867957051385561) +description = University Gardens CDP, NY +station = ('klga', 0.0020583361477806475) +zone = ('nyz176', 0.001603088555863009) + +[fips3676331] +centroid = (0.71292514644422078, -1.2839105886185469) +description = Upper Brookville village, NY +station = ('utff', 0.0027617026590290054) +zone = ('nyz177', 0.0005229184339786496) + +[fips3676386] +centroid = (0.71769476477077832, -1.2899873363818006) +description = Upper Nyack village, NY +station = ('khpn', 0.0029301180718947612) +zone = ('nyz069', 0.001590329014884023) + +[fips3676540] +centroid = (0.75217376159721883, -1.3129410863992814) +description = Utica city, NY +station = ('krme', 0.0032589478735391615) +zone = ('nyz037', 0.0023405599149614385) + +[fips3676584] +centroid = (0.72358907326732103, -1.2924808010176623) +description = Vails Gate CDP, NY +station = ('kswf', 0.00094271345174149499) +zone = ('nyz067', 0.0034402102208955379) + +[fips3676617] +centroid = (0.74024776973870887, -1.2859379805309561) +description = Valatie village, NY +station = ('kalb', 0.006083198611665991) +zone = ('nyz060', 0.0030138840879605049) + +[fips3676639] +centroid = (0.71694071272074678, -1.287669975467465) +description = Valhalla CDP, NY +station = ('khpn', 0.0010448502791754678) +zone = ('nyz071', 0.001647368493125726) + +[fips3676661] +centroid = (0.71760063916421835, -1.2905580066873252) +description = Valley Cottage CDP, NY +station = ('khpn', 0.0033147325581754355) +zone = ('nyz069', 0.0012442564299659069) + +[fips3676672] +centroid = (0.74875722722656246, -1.2839080927977164) +description = Valley Falls village, NY +station = ('kalb', 0.0040190795726242675) +zone = ('nyz053', 0.0034769993609770908) + +[fips3676705] +centroid = (0.70973372464048656, -1.2863932147597537) +description = Valley Stream village, NY +station = ('kjfk', 0.00098465636901396997) +zone = ('nyz178', 0.001153085106233635) + +[fips3676881] +centroid = (0.73649494532777815, -1.3361282742042169) +description = Van Etten village, NY +station = ('kelm', 0.0045016882928737021) +zone = ('nyz024', 0.0028366906264653707) + +[fips3677112] +centroid = (0.75187379185867864, -1.3183966016685804) +description = Vernon village, NY +station = ('krme', 0.0032170714617302172) +zone = ('nyz037', 0.0018239263759104341) + +[fips3677167] +centroid = (0.75287831610966394, -1.3189748816096436) +description = Verona CDP, NY +station = ('krme', 0.0027596582076839168) +zone = ('nyz037', 0.0021206383484744223) + +[fips3677211] +centroid = (0.72005753915225079, -1.2908311507152621) +description = Verplanck CDP, NY +station = ('kswf', 0.0046366642270078105) +zone = ('nyz069', 0.0019952379318090925) + +[fips3677376] +centroid = (0.75017775070476067, -1.3510562498294494) +description = Victor village, NY +station = ('kroc', 0.0042061828225820486) +zone = ('nyz014', 0.0026563198571590493) + +[fips3677431] +centroid = (0.75209478544856612, -1.2844184968841696) +description = Victory village, NY +station = ('kgfl', 0.0042264492926405665) +zone = ('nyz084', 0.002281644019807798) + +[fips3677513] +centroid = (0.75281510028415666, -1.3319221528799581) +description = Village Green CDP, NY +station = ('ksyr', 0.0027350414071516871) +zone = ('nyz018', 0.0026902583576251049) + +[fips3677519] +centroid = (0.71302578212889089, -1.2772708674517699) +description = Village of the Branch village, NY +station = ('kisp', 0.0014307232899964115) +zone = ('nyz078', 0.00044932251864206267) + +[fips3677574] +centroid = (0.71788039799002057, -1.2929694408483432) +description = Viola CDP, NY +station = ('kteb', 0.0046413222344573197) +zone = ('nyz069', 0.00084397164493374866) + +[fips3677684] +centroid = (0.74444683993278948, -1.2903964066518829) +description = Voorheesville village, NY +station = ('kalb', 0.0024068642591661311) +zone = ('nyz052', 0.00089010680836581026) + +[fips3677728] +centroid = (0.78298383198987198, -1.3124653445517729) +description = Waddington village, NY +station = ('kmss', 0.0044891878703856797) +zone = ('nyz026', 0.0035152182416017699) + +[fips3677772] +centroid = (0.71466633926588785, -1.2710109822901043) +description = Wading River CDP, NY +station = ('khwv', 0.0023509521207765441) +zone = ('nyz079', 0.0032943847867589111) + +[fips3677783] +centroid = (0.74737524061824823, -1.3595046033401907) +description = Wadsworth CDP, NY +station = ('kdsv', 0.0049941120576200279) +zone = ('nyz013', 0.0022266826788245081) + +[fips3677805] +centroid = (0.71485453811913047, -1.2610716638125548) +description = Wainscott CDP, NY +station = ('khto', 3.6155806097121713e-05) +zone = ('nyz081', 0.0028274298224682842) + +[fips3677849] +centroid = (0.72535799937080248, -1.294829089166343) +description = Walden village, NY +station = ('kmgj', 0.0012729572740030281) +zone = ('nyz067', 0.0031520418277319055) + +[fips3677948] +centroid = (0.72681449408488419, -1.2981894588416703) +description = Walker Valley CDP, NY +station = ('kmgj', 0.0026668754012236966) +zone = ('nyz067', 0.0043228816773152288) + +[fips3678003] +centroid = (0.72620437933826454, -1.2944168947568995) +description = Wallkill CDP, NY +station = ('kswf', 0.0020724115797834566) +zone = ('nyz067', 0.004043876468848526) + +[fips3678036] +centroid = (0.73600204689372251, -1.3112742096971644) +description = Walton village, NY +station = ('kmsv', 0.0092545325882151704) +zone = ('nyz057', 0.0021777999160978484) + +[fips3678063] +centroid = (0.72100855160836996, -1.2954762572529825) +description = Walton Park CDP, NY +station = ('kmgj', 0.0036344909926275745) +zone = ('nyz067', 0.001911485550011542) + +[fips3678113] +centroid = (0.75184933979585811, -1.3213889337645395) +description = Wampsville village, NY +station = ('krme', 0.0047904994781479138) +zone = ('nyz036', 0.0029235822244238078) + +[fips3678124] +centroid = (0.74601716502068638, -1.3771083606949484) +description = Wanakah CDP, NY +station = ('kbuf', 0.0039558617752617087) +zone = ('nyz085', 0.0027593421715683747) + +[fips3678146] +centroid = (0.70981407959924836, -1.2829959837306242) +description = Wantagh CDP, NY +station = ('kfrg', 0.001667478772740115) +zone = ('nyz179', 0.0010373614379325111) + +[fips3678168] +centroid = (0.72602480241152689, -1.2900944472379954) +description = Wappingers Falls village, NY +station = ('kpou', 0.00075467037975824333) +zone = ('nyz065', 0.0031664704433715797) + +[fips3678289] +centroid = (0.75957341657360666, -1.2875744710507959) +description = Warrensburg CDP, NY +station = ('kgfl', 0.0038157563789961431) +zone = ('nyz042', 0.0017810768993331975) + +[fips3678333] +centroid = (0.74600452883690205, -1.3638228446155976) +description = Warsaw village, NY +station = ('kdsv', 0.0062585909079349248) +zone = ('nyz012', 0.0012808691641560755) + +[fips3678355] +centroid = (0.72003984151363543, -1.2977347133050632) +description = Warwick village, NY +station = ('kfwn', 0.0037821750234792776) +zone = ('nyz067', 0.0026444323932536622) + +[fips3678421] +centroid = (0.72378041371321722, -1.2988289125730161) +description = Washington Heights CDP, NY +station = ('kmgj', 0.002135354120672831) +zone = ('nyz067', 0.0018769223919748224) + +[fips3678454] +centroid = (0.75132811466804261, -1.3139021694051847) +description = Washington Mills CDP, NY +station = ('krme', 0.0035729364258952788) +zone = ('nyz037', 0.0020375668463863848) + +[fips3678465] +centroid = (0.7230595927321436, -1.29430795130499) +description = Washingtonville village, NY +station = ('kswf', 0.0014665234080101415) +zone = ('nyz067', 0.0019798640309972521) + +[fips3678487] +centroid = (0.72670378785043011, -1.2961387144238694) +description = Watchtower CDP, NY +station = ('kmgj', 0.0021017257938373752) +zone = ('nyz067', 0.0041362213550218147) + +[fips3678520] +centroid = (0.74686248033730485, -1.2859381201572961) +description = Waterford village, NY +station = ('kalb', 0.0017173358292478858) +zone = ('nyz053', 0.0017157589732619029) + +[fips3678553] +centroid = (0.74882628990506384, -1.3414430112160496) +description = Waterloo village, NY +station = ('kpeo', 0.0050723809158219222) +zone = ('nyz016', 0.0022038393573488033) + +[fips3678575] +centroid = (0.7142304956450799, -1.2627580009358315) +description = Water Mill CDP, NY +station = ('khto', 0.0014537870019776977) +zone = ('nyz081', 0.0014449243218338384) + +[fips3678608] +centroid = (0.76747872834088238, -1.3248801158673038) +description = Watertown city, NY +station = ('kart', 0.0015583929259091807) +zone = ('nyz007', 0.0011799839314288667) + +[fips3678663] +centroid = (0.74928012787045983, -1.3156327157184147) +description = Waterville village, NY +station = ('krme', 0.0052899090268571326) +zone = ('nyz037', 0.0033232194437816552) + +[fips3678674] +centroid = (0.7456898808793524, -1.2864300237536781) +description = Watervliet city, NY +station = ('kalb', 0.0012700728154791373) +zone = ('nyz053', 0.0012173337070549891) + +[fips3678696] +centroid = (0.73968011885279039, -1.3415820092376785) +description = Watkins Glen village, NY +station = ('kelm', 0.003757218456236971) +zone = ('nyz023', 0.00025435589186452017) + +[fips3678806] +centroid = (0.73326036153164209, -1.3358751316495074) +description = Waverly village, NY +station = ('kelm', 0.0053813613311548842) +zone = ('nyz024', 0.0036273853801371985) + +[fips3678850] +centroid = (0.74286164463966575, -1.3543032952764447) +description = Wayland village, NY +station = ('kdsv', 0.0015543184706876807) +zone = ('nyz013', 0.0036921738664205143) + +[fips3678960] +centroid = (0.75426824396607461, -1.3512678360946686) +description = Webster village, NY +station = ('kroc', 0.0037551427726482262) +zone = ('nyz003', 0.003694358227327272) + +[fips3678982] +centroid = (0.7446638018121049, -1.3550176410859935) +description = Websters Crossing CDP, NY +station = ('kdsv', 0.0020158882886849765) +zone = ('nyz013', 0.0020814336975623453) + +[fips3679015] +centroid = (0.75133150060679144, -1.3362870468062706) +description = Weedsport village, NY +station = ('kfzy', 0.0057463302811583666) +zone = ('nyz005', 0.0023290400427933072) + +[fips3679081] +centroid = (0.73327071133410648, -1.3391973484273862) +description = Wellsburg village, NY +station = ('kelm', 0.003462830923853103) +zone = ('nyz024', 0.0022664953218642422) + +[fips3679092] +centroid = (0.73514498551123819, -1.3604096263705197) +description = Wellsville village, NY +station = ('kelz', 0.00079015453704400014) +zone = ('nyz021', 0.0026101382328778473) + +[fips3679174] +centroid = (0.71833523079309025, -1.2929226660243898) +description = Wesley Hills village, NY +station = ('kteb', 0.0050916989290101461) +zone = ('nyz069', 0.0007262061173166235) + +[fips3679246] +centroid = (0.71053846105199614, -1.2803456489015932) +description = West Babylon CDP, NY +station = ('utff', 0.00087474638513877171) +zone = ('nyz179', 0.0030012982122948049) + +[fips3679301] +centroid = (0.71050088411320067, -1.278836131084836) +description = West Bay Shore CDP, NY +station = ('utff', 0.0019692341985194325) +zone = ('nyz080', 0.0013842840360346218) + +[fips3679444] +centroid = (0.71139677907154186, -1.2843713555410732) +description = Westbury village, NY +station = ('utff', 0.0023201352409242763) +zone = ('nyz179', 0.0012192096819999393) + +[fips3679499] +centroid = (0.76748450538070656, -1.3198452249477357) +description = West Carthage village, NY +station = ('kgtb', 0.0019353014388439756) +zone = ('nyz007', 0.0038088825900524674) + +[fips3679543] +centroid = (0.78221895889847803, -1.2830217098837986) +description = West Chazy CDP, NY +station = ('kpbg', 0.0029822502746224811) +zone = ('nyz028', 0.00026661643644314547) + +[fips3679785] +centroid = (0.73456939337722305, -1.3411682789384933) +description = West Elmira CDP, NY +station = ('kelm', 0.0015611792070064242) +zone = ('nyz024', 0.0014272085475502865) + +[fips3679796] +centroid = (0.74135099235889457, -1.3106089599994741) +description = West End CDP, NY +station = ('krme', 0.013786810653294951) +zone = ('nyz046', 0.00285453757405689) + +[fips3679939] +centroid = (0.73865599455430508, -1.3888414762178203) +description = Westfield village, NY +station = ('kjhw', 0.0049847597947652493) +zone = ('nyz019', 0.0031484532878721543) + +[fips3680082] +centroid = (0.75576217599261175, -1.2860985508221394) +description = West Glens Falls CDP, NY +station = ('kgfl', 0.0010584559838504222) +zone = ('nyz083', 0.0010040653306796464) + +[fips3680170] +centroid = (0.71289718626960374, -1.2681039618879826) +description = Westhampton CDP, NY +station = ('kfok', 0.00053712308467164396) +zone = ('nyz079', 0.0027413194562694618) + +[fips3680181] +centroid = (0.71221601916913557, -1.2678956917483422) +description = Westhampton Beach village, NY +station = ('kfok', 0.00083946124287752127) +zone = ('nyz081', 0.0030512583736488521) + +[fips3680186] +centroid = (0.71172551183615507, -1.2689657356594473) +description = West Hampton Dunes village, NY +station = ('kfok', 0.0017162871057987961) +zone = ('nyz079', 0.004074367536258853) + +[fips3680203] +centroid = (0.71919874989380694, -1.2913400538185589) +description = West Haverstraw village, NY +station = ('khpn', 0.004513127230773367) +zone = ('nyz069', 0.001055476204461064) + +[fips3680225] +centroid = (0.7102759809857887, -1.2854429353419201) +description = West Hempstead CDP, NY +station = ('kjfk', 0.0018858167410968187) +zone = ('nyz179', 0.00088993617929352092) + +[fips3680258] +centroid = (0.7124409572031325, -1.2816635819263593) +description = West Hills CDP, NY +station = ('utff', 0.0015123486389141789) +zone = ('nyz177', 0.0021748275989036774) + +[fips3680291] +centroid = (0.73318489349478599, -1.2934526352517577) +description = West Hurley CDP, NY +station = ('kpou', 0.0071760802094038654) +zone = ('nyz064', 0.0031132871675509906) + +[fips3680302] +centroid = (0.71054390647926235, -1.2792036276121359) +description = West Islip CDP, NY +station = ('utff', 0.0016882892172874232) +zone = ('nyz080', 0.0016092112959846434) + +[fips3680423] +centroid = (0.7450501653486189, -1.2893365554636094) +description = Westmere CDP, NY +station = ('kalb', 0.0014323295599516271) +zone = ('nyz052', 0.001153319090657201) + +[fips3680522] +centroid = (0.7525008712056277, -1.3160233204050109) +description = Westmoreland CDP, NY +station = ('krme', 0.0020634038097677512) +zone = ('nyz037', 0.00010064854290304818) + +[fips3680599] +centroid = (0.71717568639794282, -1.2909996797078349) +description = West Nyack CDP, NY +station = ('khpn', 0.0035625682746037958) +zone = ('nyz069', 0.0012999624424498925) + +[fips3680632] +centroid = (0.7343512795806012, -1.3678596515491201) +description = Weston Mills CDP, NY +station = ('kole', 0.0027605034930037026) +zone = ('nyz020', 0.0049860200863118291) + +[fips3680747] +centroid = (0.72188090207510169, -1.2918883315497802) +description = West Point CDP, NY +station = ('kswf', 0.0026478846367415832) +zone = ('nyz069', 0.0036277495427102487) + +[fips3680764] +centroid = (0.77114870197222085, -1.2817484398345913) +description = Westport CDP, NY +station = ('kbtv', 0.0061167147422450368) +zone = ('nyz035', 0.0011415472337127041) + +[fips3680863] +centroid = (0.74417317230607694, -1.2844640848842317) +description = West Sand Lake CDP, NY +station = ('kalb', 0.0032833347668518595) +zone = ('nyz053', 0.0012069651049111431) + +[fips3680885] +centroid = (0.71086804902794276, -1.2759264403289585) +description = West Sayville CDP, NY +station = ('kisp', 0.0012282108459382127) +zone = ('nyz080', 0.0010871185275739474) + +[fips3680907] +centroid = (0.74766025288509896, -1.3744683058552116) +description = West Seneca CDP, NY +station = ('kbuf', 0.0016834082880646643) +zone = ('nyz010', 0.0018966480403498508) + +[fips3681127] +centroid = (0.75118932608592393, -1.3302492896985065) +description = Westvale CDP, NY +station = ('ksyr', 0.0020104124586866833) +zone = ('nyz018', 0.00066519694715054089) + +[fips3681138] +centroid = (0.74006239831885456, -1.3719357458441053) +description = West Valley CDP, NY +station = ('kole', 0.0042734637867438835) +zone = ('nyz020', 0.0028446806817098015) + +[fips3681292] +centroid = (0.74846320906077146, -1.3123370803050438) +description = West Winfield village, NY +station = ('krme', 0.0066556526557627459) +zone = ('nyz038', 0.0047285770621503269) + +[fips3681419] +centroid = (0.71143997597052866, -1.2805552280381729) +description = Wheatley Heights CDP, NY +station = ('utff', 0.00078946300995409203) +zone = ('nyz179', 0.0030886133335073056) + +[fips3681622] +centroid = (0.76026817978894812, -1.2813612908999139) +description = Whitehall village, NY +station = ('kgfl', 0.0047010140029984859) +zone = ('nyz043', 0.00071388017259826604) + +[fips3681677] +centroid = (0.71602718993696046, -1.2872176210319333) +description = White Plains city, NY +station = ('khpn', 0.00099565649359268467) +zone = ('nyz071', 0.00081974679594225535) + +[fips3681710] +centroid = (0.75265552483064679, -1.3141751214469042) +description = Whitesboro village, NY +station = ('krme', 0.0023175972369873432) +zone = ('nyz037', 0.0014044572131439045) + +[fips3681831] +centroid = (0.73880834434471165, -1.3259571760020021) +description = Whitney Point village, NY +station = ('kbgm', 0.0022843047019644788) +zone = ('nyz056', 0.0035650109949485185) + +[fips3682029] +centroid = (0.75439062645322452, -1.347122609308012) +description = Williamson CDP, NY +station = ('kroc', 0.006618056671808481) +zone = ('nyz004', 0.0022938057662969993) + +[fips3682084] +centroid = (0.74982772492327321, -1.3743135824170223) +description = Williamsville village, NY +station = ('kbuf', 0.0005128563242987014) +zone = ('nyz010', 0.00076903814684102219) + +[fips3682117] +centroid = (0.71137440395053131, -1.2853753736465756) +description = Williston Park village, NY +station = ('kjfk', 0.0027049014451529566) +zone = ('nyz177', 0.0014563355195827178) + +[fips3682260] +centroid = (0.77428919506838201, -1.2809523602561714) +description = Willsboro CDP, NY +station = ('kbtv', 0.0035258518918804944) +zone = ('nyz035', 0.002065755307359308) + +[fips3682304] +centroid = (0.77469716578103565, -1.2883526784576751) +description = Wilmington CDP, NY +station = ('kslk', 0.0047798603459103372) +zone = ('nyz034', 0.0052883315078648963) + +[fips3682359] +centroid = (0.7559875852655068, -1.37581479246654) +description = Wilson village, NY +station = ('kiag', 0.0037084006629681766) +zone = ('nyz001', 0.0022663661980630531) + +[fips3682469] +centroid = (0.73853549702274746, -1.2958761470911995) +description = Windham CDP, NY +station = ('kalb', 0.0095332430762405228) +zone = ('nyz058', 0.0010209896517838217) + +[fips3682524] +centroid = (0.73438648287161401, -1.3201760346541584) +description = Windsor village, NY +station = ('kbgm', 0.004926964170104433) +zone = ('nyz056', 0.0027333857143396422) + +[fips3682612] +centroid = (0.78197101742493969, -1.3056799582056244) +description = Winthrop CDP, NY +station = ('kmss', 0.0023171677298728) +zone = ('nyz026', 0.0015062427195231486) + +[fips3682656] +centroid = (0.76940606052727467, -1.2834638192366212) +description = Witherbee CDP, NY +station = ('kbtv', 0.0082502514993987013) +zone = ('nyz035', 0.0031559454612367804) + +[fips3682678] +centroid = (0.75437991013161732, -1.3406246263297896) +description = Wolcott village, NY +station = ('kfzy', 0.005882918787514557) +zone = ('nyz005', 0.0027098903998627813) + +[fips3682744] +centroid = (0.71244949186317474, -1.2823296519287979) +description = Woodbury CDP, NY +station = ('utff', 0.0016713633983032026) +zone = ('nyz177', 0.0016735584919430023) + +[fips3682750] +centroid = (0.72130588589973965, -1.2933219799039533) +description = Woodbury village, NY +station = ('kswf', 0.0030058555866466579) +zone = ('nyz067', 0.0029676858793498289) + +[fips3682942] +centroid = (0.70925569641165787, -1.2866774241751484) +description = Woodmere CDP, NY +station = ('kjfk', 0.00060646291444023056) +zone = ('nyz178', 0.0010529325534330421) + +[fips3682953] +centroid = (0.72819847036854557, -1.3017454275662685) +description = Woodridge village, NY +station = ('kmsv', 0.0028353145377099701) +zone = ('nyz062', 0.0023940957847085795) + +[fips3682986] +centroid = (0.70897363375124312, -1.2864161309328324) +description = Woodsburgh village, NY +station = ('kjfk', 0.00082830719693117733) +zone = ('nyz178', 0.0013674085897017192) + +[fips3683041] +centroid = (0.73384190523840676, -1.2934539966085743) +description = Woodstock CDP, NY +station = ('kpou', 0.0077801313106116944) +zone = ('nyz064', 0.0037595372862305313) + +[fips3683063] +centroid = (0.74314416108568604, -1.3567114133118841) +description = Woodsville CDP, NY +station = ('kdsv', 0.00030858619516310894) +zone = ('nyz013', 0.0026559997733298069) + +[fips3683118] +centroid = (0.74375644004057817, -1.3044563602269288) +description = Worcester CDP, NY +station = ('krme', 0.013710738417243082) +zone = ('nyz047', 0.0038517667716254072) + +[fips3683272] +centroid = (0.72564377958252402, -1.3000232588334482) +description = Wurtsboro village, NY +station = ('kmgj', 0.0030464661618329818) +zone = ('nyz067', 0.00384566366707767) + +[fips3683294] +centroid = (0.71116588946479553, -1.2806635955314292) +description = Wyandanch CDP, NY +station = ('utff', 0.00057706573247974979) +zone = ('nyz179', 0.0029101849845770814) + +[fips3683349] +centroid = (0.74500757931487027, -1.2853014589527536) +description = Wynantskill CDP, NY +station = ('kalb', 0.0023114065461118903) +zone = ('nyz053', 0.00048068555999588133) + +[fips3683371] +centroid = (0.74742093333806547, -1.3628251271486949) +description = Wyoming village, NY +station = ('kdsv', 0.006511568166759271) +zone = ('nyz012', 0.0027841868817821908) + +[fips3683426] +centroid = (0.71264676642852764, -1.2727597149341401) +description = Yaphank CDP, NY +station = ('khwv', 0.00079811644293273853) +zone = ('nyz080', 0.0037057177410582723) + +[fips3684000] +centroid = (0.71464010696723035, -1.2892301427391153) +description = Yonkers city, NY +station = ('klga', 0.0028444008114068059) +zone = ('nyz071', 0.001325965327408634) + +[fips3684035] +centroid = (0.74821495342796784, -1.3593885738515179) +description = York Hamlet CDP, NY +station = ('kroc', 0.0050374314506296293) +zone = ('nyz013', 0.0028542055008922321) + +[fips3684044] +centroid = (0.74217274573061109, -1.369656223667953) +description = Yorkshire CDP, NY +station = ('kole', 0.005252975853234732) +zone = ('nyz085', 0.0040708594549495238) + +[fips3684088] +centroid = (0.7203030720714213, -1.2876046827001479) +description = Yorktown Heights CDP, NY +station = ('khpn', 0.0036861835410084082) +zone = ('nyz070', 0.0009128005837179394) + +[fips3684099] +centroid = (0.75245416619484429, -1.3137785128276811) +description = Yorkville village, NY +station = ('krme', 0.0026504883078713281) +zone = ('nyz037', 0.0016975030809168819) + +[fips3684143] +centroid = (0.75484708241249865, -1.3795471267120525) +description = Youngstown village, NY +station = ('cysn', 0.0018034716280012745) +zone = ('nyz001', 0.0039045005347591293) + +[fips3684187] +centroid = (0.73340442100810177, -1.2930359727994292) +description = Zena CDP, NY +station = ('kpou', 0.0072586259267210561) +zone = ('nyz064', 0.0032850601571185753) + +[fips37001] +centroid = (0.62905111521819079, -1.3857902916194837) +description = Alamance County, NC +station = ('kbuy', 0.00095379951479980594) +zone = ('ncz023', 3.5889294384180513e-05) + +[fips3700160] +centroid = (0.6132070162685862, -1.3863332460964868) +description = Aberdeen town, NC +station = ('ksop', 0.0017864139957800467) +zone = ('ncz075', 0.0031631869639561498) + +[fips3700193292] +centroid = (0.62658718155327275, -1.3873155872126794) +description = "Township 1, Patterson", NC +station = ('kbuy', 0.0023314656619051089) +zone = ('ncz023', 0.0027902460177930545) + +[fips3700193328] +centroid = (0.62830908848670541, -1.3873402661683025) +description = "Township 2, Coble", NC +station = ('kbuy', 0.00066832508540223064) +zone = ('ncz023', 0.0014803047323738998) + +[fips3700193368] +centroid = (0.63002574197908945, -1.38769458545975) +description = "Township 3, Boone Station", NC +station = ('kbuy', 0.0012743765803636675) +zone = ('ncz023', 0.0018084100335110987) + +[fips3700193444] +centroid = (0.63184777845170881, -1.3872748861345228) +description = "Township 4, Morton", NC +station = ('kbuy', 0.0029587784043048375) +zone = ('ncz023', 0.0030129023122406336) + +[fips3700193476] +centroid = (0.63146989721535962, -1.385851657395984) +description = "Township 5, Faucette", NC +station = ('kbuy', 0.0027198115621639048) +zone = ('ncz023', 0.0023840725862689129) + +[fips3700193520] +centroid = (0.62933518500724539, -1.3857534128123894) +description = "Township 6, Graham", NC +station = ('kbuy', 0.001064412942449567) +zone = ('ncz023', 0.00024983398996547004) + +[fips3700193556] +centroid = (0.62802311628876606, -1.3856606136560607) +description = "Township 7, Albright", NC +station = ('kbuy', 0.0013659380575941761) +zone = ('ncz023', 0.0010679349501543705) + +[fips3700193608] +centroid = (0.6265043482269731, -1.3849802668603406) +description = "Township 8, Newlin", NC +station = ('kbuy', 0.0028801299113564304) +zone = ('ncz023', 0.0026625435459502033) + +[fips3700193656] +centroid = (0.62800995650620606, -1.384332959147361) +description = "Township 9, Thompson", NC +station = ('kbuy', 0.0023003406772048938) +zone = ('ncz023', 0.0015918683900309398) + +[fips3700193684] +centroid = (0.62971449741358121, -1.3840893984502454) +description = "Township 10, Melville", NC +station = ('kbuy', 0.0024555465238399101) +zone = ('ncz023', 0.0015060249209245516) + +[fips3700193704] +centroid = (0.63154944932266555, -1.3842343131380384) +description = "Township 11, Pleasant Grove", NC +station = ('kbuy', 0.0034422672713889002) +zone = ('ncz023', 0.0027624010731536557) + +[fips3700193712] +centroid = (0.62982546544742302, -1.3866333903679522) +description = "Township 12, Burlington", NC +station = ('kbuy', 0.00096099109109584811) +zone = ('ncz023', 0.001009442560575773) + +[fips3700193732] +centroid = (0.63024259913864977, -1.3848224192827905) +description = "Township 13, Haw River", NC +station = ('kbuy', 0.002184698053278276) +zone = ('ncz023', 0.0013924753653527259) + +[fips37003] +centroid = (0.62693886539754973, -1.4168140775790437) +description = Alexander County, NC +station = ('ksvh', 0.0041401493610234933) +zone = ('ncz035', 4.5830700897581009e-06) + +[fips3700391020] +centroid = (0.62681625601759694, -1.4188253775557493) +description = Ellendale township, NC +station = ('khky', 0.0031352980347055105) +zone = ('ncz035', 0.0016374442664447051) + +[fips3700391364] +centroid = (0.62776110746145675, -1.4144684597841186) +description = Gwaltneys township, NC +station = ('ksvh', 0.0037443123412364068) +zone = ('ncz035', 0.002064851511515824) + +[fips3700391848] +centroid = (0.62808148009895282, -1.4181673535211625) +description = Little River township, NC +station = ('khky', 0.0045078225434986158) +zone = ('ncz035', 0.0015836521311653582) + +[fips3700392068] +centroid = (0.6253795882438179, -1.4156427347581528) +description = Millers township, NC +station = ('ksvh', 0.0024644629025296736) +zone = ('ncz035', 0.0018256879459667879) + +[fips3700392908] +centroid = (0.62670888336201436, -1.4151438672980552) +description = Sharpes township, NC +station = ('ksvh', 0.0030526483404010357) +zone = ('ncz035', 0.0013688231329114142) + +[fips3700393168] +centroid = (0.62853331093570908, -1.4166551304440647) +description = Sugar Loaf township, NC +station = ('kukf', 0.0037628469958643543) +zone = ('ncz035', 0.0015967353872175392) + +[fips3700393228] +centroid = (0.62656313091618032, -1.4167041916493381) +description = Taylorsville township, NC +station = ('ksvh', 0.0038332981773765724) +zone = ('ncz035', 0.00038781556505590811) + +[fips3700394086] +centroid = (0.6255488677279688, -1.4185443271863007) +description = Wittenburg township, NC +station = ('khky', 0.002196054908037749) +zone = ('ncz035', 0.0019787047755614609) + +[fips3700440] +centroid = (0.62750073924364425, -1.403038909378046) +description = Advance CDP, NC +station = ('kexx', 0.0032307143786445215) +zone = ('ncz037', 0.0022490688817318207) + +[fips37005] +centroid = (0.63685940413234798, -1.4160257472625031) +description = Alleghany County, NC +station = ('kgev', 0.0041096649271036992) +zone = ('ncz002', 6.3985836033389929e-05) + +[fips3700500] +centroid = (0.63328118245978682, -1.3437315392911422) +description = Ahoskie town, NC +station = ('kasj', 0.0025522197198775778) +zone = ('ncz013', 0.00130613235791028) + +[fips3700590640] +centroid = (0.63593345460428752, -1.4140507152276536) +description = Cherry Lane township, NC +station = ('kukf', 0.0039382221334531503) +zone = ('ncz002', 0.0018135035481619587) + +[fips3700590808] +centroid = (0.63563187916283537, -1.4176587122172537) +description = Cranberry township, NC +station = ('kgev', 0.0026911567733537505) +zone = ('ncz002', 0.0018612572414176845) + +[fips3700591204] +centroid = (0.63785473049817543, -1.4156019464135337) +description = Gap Civil township, NC +station = ('kgev', 0.0047591873945996965) +zone = ('ncz002', 0.0010004684102557584) + +[fips3700591232] +centroid = (0.6373958310779485, -1.4133252865773547) +description = Glade Creek township, NC +station = ('khlx', 0.0048577874128454502) +zone = ('ncz002', 0.0021766986946910294) + +[fips3700592508] +centroid = (0.63794677916292553, -1.4185096998539413) +description = Piney Creek township, NC +station = ('kgev', 0.0028700813179646672) +zone = ('vaz015', 0.0019590867639492104) + +[fips3700592564] +centroid = (0.63681311800058515, -1.4179749484244226) +description = Prathers Creek township, NC +station = ('kgev', 0.0025968493131023275) +zone = ('ncz002', 0.0016211656619359535) + +[fips3700593960] +centroid = (0.6363466438514046, -1.4160099345794799) +description = Whitehead township, NC +station = ('kgev', 0.0040320344917758747) +zone = ('ncz002', 0.00055157471264150103) + +[fips3700640] +centroid = (0.62880296430514215, -1.3873444200519223) +description = Alamance village, NC +station = ('kbuy', 0.00032964276598616583) +zone = ('ncz023', 0.0012943156997895166) + +[fips3700680] +centroid = (0.61714910418360325, -1.3996167899537828) +description = Albemarle city, NC +station = ('kvuj', 0.0011498565804476106) +zone = ('ncz073', 0.001182487740382384) + +[fips37007] +centroid = (0.61042883607184661, -1.3981825481876642) +description = Anson County, NC +station = ('kafp', 0.00092470954756981145) +zone = ('ncz083', 0.00010589148051463838) + +[fips3700790064] +centroid = (0.61260376066592681, -1.3980936585688601) +description = Ansonville township, NC +station = ('kafp', 0.0014362654511167112) +zone = ('ncz083', 0.0021960168875346446) + +[fips3700790452] +centroid = (0.61306238083347342, -1.4004851087099426) +description = Burnsville township, NC +station = ('kafp', 0.0029884053344233605) +zone = ('ncz073', 0.0032507148690561071) + +[fips3700791356] +centroid = (0.60852023126832822, -1.3981725823576352) +description = Gulledge township, NC +station = ('kafp', 0.0027433219910891157) +zone = ('ncz083', 0.0018901554773105339) + +[fips3700791732] +centroid = (0.6107086298042339, -1.4004628034021021) +description = Lanesboro township, NC +station = ('kafp', 0.0023958037883252416) +zone = ('ncz083', 0.0019948689928591416) + +[fips3700791808] +centroid = (0.61074673034180493, -1.3951703891514022) +description = Lilesville township, NC +station = ('kafp', 0.0020515308203585682) +zone = ('ncz084', 0.0027165337031086444) + +[fips3700792140] +centroid = (0.60839306657902803, -1.3958843509885155) +description = Morven township, NC +station = ('kcqw', 0.0024763102813097301) +zone = ('ncz083', 0.0026889379092406664) + +[fips3700793876] +centroid = (0.61062045577042323, -1.3978796637492732) +description = Wadesboro township, NC +station = ('kafp', 0.0006437329158760813) +zone = ('ncz083', 0.0002568933864736955) + +[fips3700793996] +centroid = (0.60841603511198417, -1.4005568591954922) +description = White Store township, NC +station = ('kafp', 0.0037060415079389333) +zone = ('ncz083', 0.0028589314921076917) + +[fips37009] +centroid = (0.63593348951087247, -1.4224218728255789) +description = Ashe County, NC +station = ('kgev', 0.001154040527653969) +zone = ('ncz001', 4.3197507664346067e-05) + +[fips3700990648] +centroid = (0.63697363593189105, -1.4197694959613234) +description = Chestnut Hill township, NC +station = ('kgev', 0.0014677227163532698) +zone = ('ncz001', 0.0024143883570011096) + +[fips3700990696] +centroid = (0.63658900027133658, -1.4235718877230106) +description = Clifton township, NC +station = ('kgev', 0.0021947179982779561) +zone = ('ncz001', 0.0011261756660288188) + +[fips3700990820] +centroid = (0.63493263045131632, -1.4246465218500486) +description = Creston township, NC +station = ('kgev', 0.0030929492675208651) +zone = ('ncz001', 0.0020093678591102506) + +[fips3700991004] +centroid = (0.63382490488166054, -1.423837718821382) +description = Elk township, NC +station = ('ktnb', 0.0022442474476144282) +zone = ('ncz018', 0.0022067791156904133) + +[fips3700991282] +centroid = (0.63771234653779763, -1.4205283302135052) +description = Grassy Creek township, NC +station = ('kgev', 0.0018677971513917271) +zone = ('ncz001', 0.002384336128871171) + +[fips3700991448] +centroid = (0.63799938338658058, -1.4220243740884373) +description = Helton township, NC +station = ('kgev', 0.002275490376212397) +zone = ('ncz001', 0.0021248169395202384) + +[fips3700991540] +centroid = (0.63737509656643476, -1.4239746049946158) +description = Horse Creek township, NC +station = ('kgev', 0.0028274356448950259) +zone = ('ncz001', 0.001909612137805896) + +[fips3700991568] +centroid = (0.63825448071005209, -1.4242368407147281) +description = Hurricane township, NC +station = ('kgev', 0.0035280165991512591) +zone = ('ncz001', 0.0027503105335119457) + +[fips3700991652] +centroid = (0.63556103624849691, -1.4211697910734908) +description = Jefferson township, NC +station = ('kgev', 0.00035208292437717418) +zone = ('ncz001', 0.0010938563136675672) + +[fips3700991740] +centroid = (0.63686359292255279, -1.4249731078596819) +description = Laurel township, NC +station = ('kgev', 0.0033514122948173856) +zone = ('ncz001', 0.0022369331634428638) + +[fips3700992316] +centroid = (0.63569989464378562, -1.4257982995300245) +description = North Fork township, NC +station = ('kgev', 0.0038739184429952122) +zone = ('tnz018', 0.0023090646794684199) + +[fips3700992364] +centroid = (0.63405397934598484, -1.4205982306500478) +description = Obids township, NC +station = ('kgev', 0.0018545108863646798) +zone = ('ncz001', 0.0023812060557969468) + +[fips3700992376] +centroid = (0.63444912188863634, -1.4229585266639821) +description = Old Fields township, NC +station = ('kgev', 0.0021367885133098336) +zone = ('ncz001', 0.0015087799141842338) + +[fips3700992456] +centroid = (0.63582164881240466, -1.4191643728563643) +description = Peak Creek township, NC +station = ('kgev', 0.0014691769999293049) +zone = ('ncz001', 0.0026534367110061402) + +[fips3700992504] +centroid = (0.63353956100225206, -1.4220749188235753) +description = Pine Swamp township, NC +station = ('kgev', 0.0025000052945685263) +zone = ('ncz001', 0.0023845020489107571) + +[fips3700992512] +centroid = (0.6374186599845646, -1.4227363287969108) +description = Piney Creek township, NC +station = ('kgev', 0.0020824903747567883) +zone = ('ncz001', 0.0015310434001869365) + +[fips3700992544] +centroid = (0.63775325705546437, -1.4251540635965287) +description = Pond Mountain township, NC +station = ('kgev', 0.0038362988631717178) +zone = ('ncz001', 0.0028477153780451839) + +[fips3700993892] +centroid = (0.63679622321342588, -1.4212907249373614) +description = Walnut Hill township, NC +station = ('kgev', 0.00094626616291173138) +zone = ('ncz001', 0.0012969652024181905) + +[fips3700993956] +centroid = (0.63552719431430083, -1.422699641976034) +description = West Jefferson township, NC +station = ('kgev', 0.0014214516701531179) +zone = ('ncz001', 0.00042274912051530025) + +[fips3701000] +centroid = (0.61336994275425993, -1.3405605378396561) +description = Alliance town, NC +station = ('kewn', 0.0036581554192313863) +zone = ('ncz094', 0.00085431851118127576) + +[fips37011] +centroid = (0.62959077102290739, -1.4297800587789393) +description = Avery County, NC +station = ('ktnb', 0.0044095813029906977) +zone = ('ncz033', 7.0777529116024964e-05) + +[fips3701140] +centroid = (0.63157936426604477, -1.3876582651580158) +description = Altamahaw CDP, NC +station = ('kbuy', 0.0027386437713022155) +zone = ('ncz023', 0.0029172147854385397) + +[fips3701190052] +centroid = (0.62832467427692562, -1.4301327025543049) +description = Altamont township, NC +station = ('ktnb', 0.0053788619079038506) +zone = ('ncz033', 0.0013552551050927432) + +[fips3701190148] +centroid = (0.63113430530678616, -1.4290374386355085) +description = Banner Elk township, NC +station = ('ktnb', 0.0032795417770555974) +zone = ('ncz033', 0.0016069059673832074) + +[fips3701190212] +centroid = (0.6324281178812895, -1.4299445211543549) +description = Beech Mountain township, NC +station = ('ktnb', 0.0039879651395582369) +zone = ('tnz047', 0.0023838638205630198) + +[fips3701190510] +centroid = (0.62891464792397722, -1.4278506845573224) +description = Carey's Flat township, NC +station = ('ktnb', 0.0036681896973537824) +zone = ('ncz033', 0.0017527855107300201) + +[fips3701190812] +centroid = (0.63067578985899475, -1.4304758517385396) +description = Cranberry township, NC +station = ('ktnb', 0.0045156610493635061) +zone = ('ncz033', 0.0011513613554581118) + +[fips3701191018] +centroid = (0.63132356881087237, -1.4308034674924315) +description = Elk Park township, NC +station = ('k0a9', 0.0043754183491112935) +zone = ('ncz033', 0.0018491356603268707) + +[fips3701191154] +centroid = (0.62961168006734625, -1.4312891053567989) +description = Frank township, NC +station = ('ktnb', 0.0054887059131933907) +zone = ('ncz033', 0.0011917460080336914) + +[fips3701191442] +centroid = (0.63123085692100644, -1.4300877079661884) +description = Heaton township, NC +station = ('ktnb', 0.0040979551259571435) +zone = ('ncz033', 0.0015906620194191059) + +[fips3701191558] +centroid = (0.62933752374844298, -1.4306112020220318) +description = Hughes township, NC +station = ('ktnb', 0.0051188400124133502) +zone = ('ncz033', 0.00071739141254938718) + +[fips3701191582] +centroid = (0.62762903839695827, -1.431204491794662) +description = Ingalls township, NC +station = ('ktnb', 0.0064902498203056038) +zone = ('ncz033', 0.0023169593692039126) + +[fips3701191826] +centroid = (0.63010117510936059, -1.4283979849041628) +description = Linville township, NC +station = ('ktnb', 0.0031900097676443783) +zone = ('ncz033', 0.0012292386496772667) + +[fips3701192090] +centroid = (0.63021329506050872, -1.4312285424317546) +description = Minneapolis township, NC +station = ('k0a9', 0.0051306552524684051) +zone = ('ncz033', 0.0012707330307537964) + +[fips3701192110] +centroid = (0.62988972847048152, -1.4293882847217443) +description = Montezuma township, NC +station = ('ktnb', 0.0039866333922619398) +zone = ('ncz033', 0.00041731376883378309) + +[fips3701192262] +centroid = (0.63021781546327138, -1.4300798539845545) +description = Newland No. 1 township, NC +station = ('ktnb', 0.0043533884543406967) +zone = ('ncz033', 0.000601535284650399) + +[fips3701192263] +centroid = (0.6296474244104272, -1.4302392549051393) +description = Newland No. 2 township, NC +station = ('ktnb', 0.0047074025838599) +zone = ('ncz033', 0.00034249690574615204) + +[fips3701192502] +centroid = (0.6286340164335491, -1.4292475762774486) +description = Pineola township, NC +station = ('ktnb', 0.0046389619333424342) +zone = ('ncz033', 0.0011199396942180408) + +[fips3701192538] +centroid = (0.62874006263890037, -1.4315020704321271) +description = Plumtree township, NC +station = ('ktnb', 0.0060409649967059767) +zone = ('ncz033', 0.0016422779887741157) + +[fips3701192586] +centroid = (0.62867675954693047, -1.4306326172119537) +description = Pyatte township, NC +station = ('ktnb', 0.0054836689850483759) +zone = ('ncz033', 0.0011807565950048967) + +[fips3701192708] +centroid = (0.62976738088991668, -1.4319651062826813) +description = Roaring Creek township, NC +station = ('k0a9', 0.005306459436785255) +zone = ('ncz033', 0.0017408184645741956) + +[fips37013] +centroid = (0.61928318807318672, -1.341146148163578) +description = Beaufort County, NC +station = ('kocw', 0.0033281465150653672) +zone = ('ncz080', 0.00036950262786033725) + +[fips3701380] +centroid = (0.61434785073415232, -1.4630332759651192) +description = Andrews town, NC +station = ('krhp', 0.00054743373583259207) +zone = ('ncz058', 0.0026319192712524735) + +[fips3701390168] +centroid = (0.61891822227330218, -1.3389686579354974) +description = Bath township, NC +station = ('kocw', 0.0050928510480128236) +zone = ('ncz080', 0.002152831428669023) + +[fips3701390664] +centroid = (0.61838144626185132, -1.3446444861162756) +description = Chocowinity township, NC +station = ('kocw', 0.0024440478290345519) +zone = ('ncz080', 0.0027839467380587971) + +[fips3701391896] +centroid = (0.62135033858595634, -1.3422318825846586) +description = Long Acre township, NC +station = ('kocw', 0.0021313914724307831) +zone = ('ncz080', 0.0019408872758008885) + +[fips3701392436] +centroid = (0.62116376288891817, -1.3386311287114541) +description = Pantego township, NC +station = ('kocw', 0.0050054278977055859) +zone = ('ncz080', 0.0028763433127063005) + +[fips3701392664] +centroid = (0.61632284786241653, -1.3399610870547662) +description = Richland township, NC +station = ('kewn', 0.0057869710579453136) +zone = ('ncz094', 0.0030237206718798444) + +[fips3701393904] +centroid = (0.62209664137410914, -1.3452764698384225) +description = Washington township, NC +station = ('kocw', 0.0013379206863399268) +zone = ('ncz029', 0.0034806759694261127) + +[fips3701400] +centroid = (0.61970854226519034, -1.374275778585424) +description = Angier town, NC +station = ('khrj', 0.0022372573090800184) +zone = ('ncz077', 0.0030281766132457611) + +[fips3701420] +centroid = (0.61268355711932809, -1.3981778881585611) +description = Ansonville town, NC +station = ('kafp', 0.0015327009387716007) +zone = ('ncz083', 0.0022777876762218483) + +[fips37015] +centroid = (0.62938894114820676, -1.3432467042782308) +description = Bertie County, NC +station = ('kasj', 0.0050611649784934078) +zone = ('ncz030', 0.00025091402498113037) + +[fips3701520] +centroid = (0.62357544139603127, -1.3764100893678104) +description = Apex town, NC +station = ('krdu', 0.0032902621203666511) +zone = ('ncz041', 0.0031919499938976989) + +[fips3701560] +centroid = (0.61478165231973547, -1.4001643521000111) +description = Aquadale CDP, NC +station = ('kvuj', 0.0035117551474726926) +zone = ('ncz073', 0.0015773471648896206) + +[fips3701590712] +centroid = (0.63169050683281158, -1.341036349500335) +description = Colerain township, NC +station = ('kede', 0.0047611788346629417) +zone = ('ncz030', 0.0029997026978481585) + +[fips3701591580] +centroid = (0.62786195258563693, -1.344964509687921) +description = Indian Woods township, NC +station = ('kasj', 0.0058580239529549445) +zone = ('ncz030', 0.0019819942277207649) + +[fips3701592044] +centroid = (0.62752182282100821, -1.3395754740098307) +description = Merry Hill township, NC +station = ('kede', 0.0029073353544903802) +zone = ('ncz045', 0.0033882995579506995) + +[fips3701592096] +centroid = (0.63157287164122722, -1.3442033017879564) +description = Mitchell township, NC +station = ('kasj', 0.002904189289564246) +zone = ('ncz030', 0.00216648155745319) + +[fips3701592768] +centroid = (0.63151543285554412, -1.3473011215839059) +description = Roxobel township, NC +station = ('kasj', 0.00202346284289058) +zone = ('ncz030', 0.0036610413256576292) + +[fips3701593008] +centroid = (0.62992747994220211, -1.3449186947950562) +description = Snakebite township, NC +station = ('kasj', 0.0039190763138200876) +zone = ('ncz030', 0.0012039688940941205) + +[fips3701593988] +centroid = (0.62958726291111089, -1.3402364476508535) +description = Whites township, NC +station = ('kede', 0.0032384080641951526) +zone = ('ncz030', 0.002671668352764603) + +[fips3701594064] +centroid = (0.62776803641858714, -1.3424710974119369) +description = Windsor township, NC +station = ('kede', 0.0050591500698087761) +zone = ('ncz030', 0.0019120242980970388) + +[fips3701594104] +centroid = (0.6289800105044645, -1.3470148352267013) +description = Woodville township, NC +station = ('kasj', 0.0045320845497158523) +zone = ('ncz030', 0.0028534285719747621) + +[fips3701640] +centroid = (0.61123983821537087, -1.3408659006455852) +description = Arapahoe town, NC +station = ('knkt', 0.0022969961121059898) +zone = ('ncz094', 0.0023555180785079389) + +[fips37017] +centroid = (0.60374340473195998, -1.3707730947628891) +description = Bladen County, NC +station = ('keyf', 0.00064506328597714732) +zone = ('ncz096', 0.00051765894949530014) + +[fips3701720] +centroid = (0.62665243941400484, -1.3956632177722876) +description = Archdale city, NC +station = ('kgso', 0.0034185350355416715) +zone = ('ncz022', 0.0039413317030108346) + +[fips3701760] +centroid = (0.62278974652666108, -1.3678687272612304) +description = Archer Lodge town, NC +station = ('kjnx', 0.0024971028910230494) +zone = ('ncz042', 0.0028925935967633772) + +[fips3701790004] +centroid = (0.60233506365194067, -1.373953660618676) +description = Abbotts township, NC +station = ('keyf', 0.0025213690947212572) +zone = ('ncz096', 0.0029029530253850944) + +[fips3701790244] +centroid = (0.60484556270130185, -1.374501484564292) +description = Bethel township, NC +station = ('keyf', 0.0026213788970944696) +zone = ('ncz096', 0.0028189487784537849) + +[fips3701790296] +centroid = (0.60290245273847154, -1.3752189021533243) +description = Bladenboro township, NC +station = ('keyf', 0.0031859330220926994) +zone = ('ncz096', 0.0035409292526918748) + +[fips3701790392] +centroid = (0.60242353439172425, -1.3722089771385049) +description = Brown Marsh township, NC +station = ('keyf', 0.001561462703917747) +zone = ('ncz096', 0.0019060231576415541) + +[fips3701790528] +centroid = (0.60063352471087894, -1.3682026785603072) +description = Carvers Creek township, NC +station = ('keyf', 0.0042566264806423136) +zone = ('ncz096', 0.0042772357937083151) + +[fips3701790604] +centroid = (0.60522801670029136, -1.372019521648201) +description = Central township, NC +station = ('keyf', 0.0014012884457809181) +zone = ('ncz096', 0.0012913564594081574) + +[fips3701790724] +centroid = (0.60494721067693802, -1.3700040328812904) +description = Colly township, NC +station = ('keyf', 0.0016503137181481124) +zone = ('ncz096', 0.0012683269960850456) + +[fips3701790860] +centroid = (0.60686216847893359, -1.369427428456309) +description = Cypress Creek township, NC +station = ('keyf', 0.0034469758500193519) +zone = ('ncz096', 0.003088290939254652) + +[fips3701791000] +centroid = (0.60377216775803288, -1.3720153154047037) +description = Elizabethtown township, NC +station = ('keyf', 0.00040857059553400441) +zone = ('ncz096', 0.00077197280883156997) + +[fips3701791180] +centroid = (0.60168887294968232, -1.3665732740772301) +description = Frenches Creek township, NC +station = ('keyf', 0.004641499723585546) +zone = ('ncz096', 0.004518318168969488) + +[fips3701791508] +centroid = (0.606755197249079, -1.3757181535858574) +description = Hollow township, NC +station = ('kfay', 0.0039161364253775307) +zone = ('ncz096', 0.0045560258186538088) + +[fips3701791720] +centroid = (0.60389589414870681, -1.3672706727397419) +description = Lake Creek township, NC +station = ('keyf', 0.0035125181676063781) +zone = ('ncz096', 0.0032317241178294823) + +[fips3701793784] +centroid = (0.60730357970005555, -1.3716149543275888) +description = Turnbull township, NC +station = ('keyf', 0.0034202452108541732) +zone = ('ncz096', 0.0031895835981575115) + +[fips3701793964] +centroid = (0.60710445508569555, -1.3737314103917271) +description = White Oak township, NC +station = ('keyf', 0.0036911533355445132) +zone = ('ncz096', 0.0036337609450308988) + +[fips3701793992] +centroid = (0.60175278690689027, -1.3703517897347501) +description = Whites Creek township, NC +station = ('keyf', 0.0023444318505003933) +zone = ('ncz096', 0.0024780060929910589) + +[fips37019] +centroid = (0.59408752772493401, -1.3653307218228579) +description = Brunswick County, NC +station = ('ksut', 0.0029250414825763944) +zone = ('ncz109', 0.0012250719412915557) + +[fips3701991884] +centroid = (0.59355256685590529, -1.3661014417672459) +description = Lockwoods Folly township, NC +station = ('ksut', 0.003168181417668585) +zone = ('ncz109', 0.0017507971195711701) + +[fips3701992324] +centroid = (0.59833169722688617, -1.3629806010784624) +description = Northwest township, NC +station = ('kilm', 0.0027967056312584713) +zone = ('ncz107', 0.0028083398929026207) + +[fips3701992900] +centroid = (0.59212563801935214, -1.3699758981737482) +description = Shallotte township, NC +station = ('kcre', 0.0037534445589201423) +zone = ('ncz109', 0.0047357725856097509) + +[fips3701992992] +centroid = (0.59157805841983147, -1.3616650591547719) +description = Smithville township, NC +station = ('ksut', 0.0010199209435923298) +zone = ('ncz110', 0.0012151391031035269) + +[fips3701993252] +centroid = (0.59577232895846921, -1.3627508284824374) +description = Town Creek township, NC +station = ('kilm', 0.0034645687134557991) +zone = ('ncz109', 0.002497142566404278) + +[fips3701993868] +centroid = (0.59509056844605523, -1.3692250051696626) +description = Waccamaw township, NC +station = ('kcpc', 0.0049039885873726347) +zone = ('ncz109', 0.0029194258803060891) + +[fips3702080] +centroid = (0.62338513069439394, -1.3930224822541428) +description = Asheboro city, NC +station = ('khbi', 0.0015920911802646336) +zone = ('ncz039', 0.00017014384043215607) + +[fips37021] +centroid = (0.62150076851418579, -1.4404276667735338) +description = Buncombe County, NC +station = ('kavl', 0.0030727144477736101) +zone = ('ncz053', 3.2082743354582562e-05) + +[fips3702140] +centroid = (0.62083066680117494, -1.4408170846362387) +description = Asheville city, NC +station = ('kavl', 0.0024181050668648793) +zone = ('ncz053', 0.00077146602766946671) + +[fips3702190086] +centroid = (0.62083066680117494, -1.4408170846362387) +description = Asheville city, NC +station = ('kavl', 0.0024181050668648793) +zone = ('ncz053', 0.00077146602766946671) + +[fips3702190088] +centroid = (0.62031097756310116, -1.439417225856384) +description = Asheville township, NC +station = ('kavl', 0.0020714631910254367) +zone = ('ncz053', 0.0014706228551673651) + +[fips3702190108] +centroid = (0.61910476306375539, -1.4421387177590188) +description = Avery Creek township, NC +station = ('kavl', 0.0015122024799628692) +zone = ('ncz053', 0.0028003918205820946) + +[fips3702190284] +centroid = (0.62227155827174396, -1.4370024930230798) +description = Black Mountain township, NC +station = ('kavl', 0.0047717349628495481) +zone = ('ncz505', 0.0033807917032290949) + +[fips3702190380] +centroid = (0.62007626568529295, -1.4360962133556892) +description = Broad River township, NC +station = ('kavl', 0.0039306113462185266) +zone = ('ncz507', 0.0016757068071329968) + +[fips3702191056] +centroid = (0.61994449332676749, -1.4380922766080251) +description = Fairview township, NC +station = ('kavl', 0.0024646649344793811) +zone = ('ncz053', 0.0024736869901882501) + +[fips3702191116] +centroid = (0.62397143915001629, -1.4407354381338304) +description = Flat Creek township, NC +station = ('kavl', 0.0055470466299271121) +zone = ('ncz053', 0.002451857336223997) + +[fips3702191176] +centroid = (0.62329440847987527, -1.4422186887453452) +description = French Broad township, NC +station = ('kavl', 0.0050677753073842605) +zone = ('ncz053', 0.0022870223342567691) + +[fips3702191604] +centroid = (0.62433418838175092, -1.437826951655137) +description = Ivy township, NC +station = ('kavl', 0.0062870287234379676) +zone = ('ncz049', 0.0024532552745521966) + +[fips3702191776] +centroid = (0.62212308311227682, -1.4435824366629759) +description = Leicester township, NC +station = ('kavl', 0.0044755840404100368) +zone = ('ncz053', 0.0026344568705715765) + +[fips3702191816] +centroid = (0.61944944813773173, -1.440139460554152) +description = Limestone township, NC +station = ('kavl', 0.0010577781527697915) +zone = ('ncz053', 0.0020960406568321199) + +[fips3702191932] +centroid = (0.62038105253256881, -1.4423858738343938) +description = Lower Hominy township, NC +station = ('kavl', 0.0024950447178649898) +zone = ('ncz053', 0.0019680046192937038) + +[fips3702192648] +centroid = (0.6233457735197615, -1.439754074402019) +description = Reems Creek township, NC +station = ('kavl', 0.0049526081246770914) +zone = ('ncz053', 0.0018929533108036412) + +[fips3702192832] +centroid = (0.62240984070837946, -1.4453275390221676) +description = Sandy Mush township, NC +station = ('kavl', 0.0056052385935713555) +zone = ('ncz052', 0.0030448496884398235) + +[fips3702193180] +centroid = (0.62177118982848967, -1.4387296708508535) +description = Swannanoa township, NC +station = ('kavl', 0.003633191174514102) +zone = ('ncz053', 0.0013976238877905075) + +[fips3702193840] +centroid = (0.61974878955774126, -1.4442040705826589) +description = Upper Hominy township, NC +station = ('kavl', 0.0033090807808750073) +zone = ('ncz052', 0.0034430859348474935) + +[fips3702240] +centroid = (0.61243709917565392, -1.3853339927398425) +description = Ashley Heights CDP, NC +station = ('khff', 0.0020569892810207318) +zone = ('ncz086', 0.0023285978859447511) + +[fips37023] +centroid = (0.62388857091713168, -1.4260418602271405) +description = Burke County, NC +station = ('khky', 0.0045735992844509457) +zone = ('ncz504', 0.00079818749397841731) + +[fips3702320] +centroid = (0.630271239991675, -1.3428762755977874) +description = Askewville town, NC +station = ('kasj', 0.0045781159720457909) +zone = ('ncz030', 0.00096035733910966755) + +[fips3702390912] +centroid = (0.62403383467077522, -1.4241824213486509) +description = Drexel township, NC +station = ('khky', 0.0030648553750635948) +zone = ('ncz504', 0.0011588208285053339) + +[fips3702391572] +centroid = (0.62330601491940096, -1.4222263086828932) +description = Icard township, NC +station = ('khky', 0.0016131452571938724) +zone = ('ncz504', 0.0025175200565058916) + +[fips3702391676] +centroid = (0.62750250202618874, -1.4291813235790429) +description = Jonas Ridge township, NC +station = ('ktnb', 0.0054438715873467531) +zone = ('ncz503', 0.0011783954064245167) + +[fips3702391832] +centroid = (0.62433122132202246, -1.4289079526583031) +description = Linville township, NC +station = ('kfqd', 0.0060599124819990576) +zone = ('ncz503', 0.0020464633248295483) + +[fips3702391912] +centroid = (0.62381168916358132, -1.4231521534911984) +description = Lovelady township, NC +station = ('khky', 0.0022325280607382583) +zone = ('ncz504', 0.0018269393638236746) + +[fips3702391920] +centroid = (0.62539445844904484, -1.4256696862174452) +description = Lower Creek township, NC +station = ('khky', 0.0045048430498660042) +zone = ('ncz504', 0.0020723832592371458) + +[fips3702391928] +centroid = (0.62154202809770287, -1.4238458346024039) +description = Lower Fork township, NC +station = ('khky', 0.0036912516967927671) +zone = ('ncz504', 0.002164061800906841) + +[fips3702392136] +centroid = (0.62320911423933023, -1.4257268632037405) +description = Morganton township, NC +station = ('khky', 0.0043824958631082742) +zone = ('ncz504', 0.0003506684484739232) + +[fips3702392592] +centroid = (0.62458310723967025, -1.4267017343107344) +description = Quaker Meadows township, NC +station = ('khky', 0.0051458370047357833) +zone = ('ncz504', 0.0016699251648885688) + +[fips3702392952] +centroid = (0.62262629644221179, -1.4276824522707225) +description = Silver Creek township, NC +station = ('kfqd', 0.0046934334816758783) +zone = ('ncz504', 0.0020423446573813657) + +[fips3702392996] +centroid = (0.62488993612217092, -1.4243800100732691) +description = Smoky Creek township, NC +station = ('khky', 0.0033560053758445786) +zone = ('ncz504', 0.0017290836631351867) + +[fips3702393832] +centroid = (0.62600731336259019, -1.4281429399405687) +description = Upper Creek township, NC +station = ('ktnb', 0.0063144116498926031) +zone = ('ncz503', 0.00062110803978672566) + +[fips3702393836] +centroid = (0.62193514605842204, -1.4253897703120104) +description = Upper Fork township, NC +station = ('khky', 0.0045228981859633983) +zone = ('ncz504', 0.0014066412572703779) + +[fips3702460] +centroid = (0.60261782444405632, -1.3643187973758442) +description = Atkinson town, NC +station = ('kilm', 0.0059836966477065092) +zone = ('ncz105', 0.0035801551423745902) + +[fips3702480] +centroid = (0.60880737283686637, -1.3324609185667562) +description = Atlantic CDP, NC +station = ('knbt', 0.0029285992380989885) +zone = ('ncz095', 0.0047522233312189957) + +[fips37025] +centroid = (0.61763441043541267, -1.4059127685243797) +description = Cabarrus County, NC +station = ('kjqf', 0.0022323336716375429) +zone = ('ncz072', 2.2855224028447181e-05) + +[fips3702500] +centroid = (0.60564115358753101, -1.3393820217155397) +description = Atlantic Beach town, NC +station = ('kmrh', 0.0014236328481946085) +zone = ('ncz095', 0.0025145978173645401) + +[fips3702580] +centroid = (0.63229803849213839, -1.3458862006126067) +description = Aulander town, NC +station = ('kasj', 0.0014559340196656561) +zone = ('ncz013', 0.002925883382723008) + +[fips3702593284] +centroid = (0.61606560378396513, -1.4069874201047101) +description = "Township 1, Harrisburg", NC +station = ('kjqf', 0.0020402715239772745) +zone = ('ncz072', 0.0017880286447575014) + +[fips3702593356] +centroid = (0.6175214701795162, -1.4080247739989256) +description = "Township 2, Poplar Tent", NC +station = ('kjqf', 0.00051459387186426637) +zone = ('ncz072', 0.0017382497445157844) + +[fips3702593380] +centroid = (0.61903135451541647, -1.4091329009943092) +description = "Township 3, Odell", NC +station = ('kjqf', 0.0014944005942646257) +zone = ('ncz072', 0.0029933553435463334) + +[fips3702593436] +centroid = (0.61898218859038778, -1.4074026513870521) +description = "Township 4, Kannapolis", NC +station = ('kjqf', 0.0017242596888635527) +zone = ('ncz072', 0.0018367215637489272) + +[fips3702593488] +centroid = (0.61894290122892537, -1.4057397540356296) +description = "Township 5, New Gilead", NC +station = ('kjqf', 0.0027307514558903567) +zone = ('ncz072', 0.0013328149248848105) + +[fips3702593532] +centroid = (0.61896131445253388, -1.4042299569661918) +description = "Township 6, Rimertown", NC +station = ('kruq', 0.0033591978687999464) +zone = ('ncz072', 0.0019110825705903509) + +[fips3702593572] +centroid = (0.61888457232532379, -1.4025407575029416) +description = "Township 7, Gold Hill", NC +station = ('kvuj', 0.0030621322103603511) +zone = ('ncz073', 0.0030048350121392609) + +[fips3702593604] +centroid = (0.61788503971599917, -1.4038183210621089) +description = "Township 8, Mount Pleasant", NC +station = ('kjqf', 0.0039501225923396282) +zone = ('ncz072', 0.00171479575645973) + +[fips3702593644] +centroid = (0.6167333318491931, -1.4042526636997603) +description = "Township 9, Georgeville", NC +station = ('kjqf', 0.003687254743967942) +zone = ('ncz072', 0.0016047370486454166) + +[fips3702593688] +centroid = (0.61542096642474098, -1.4053147838160613) +description = "Township 10, Midland", NC +station = ('kjqf', 0.0034799043860813533) +zone = ('ncz072', 0.0022458195948782313) + +[fips3702593696] +centroid = (0.61733702378416544, -1.4059491935458688) +description = "Township 11, Central Cabarrus", NC +station = ('kjqf', 0.002216856537581816) +zone = ('ncz072', 0.00028251294220370553) + +[fips3702593716] +centroid = (0.61814860188634291, -1.4064160691207772) +description = "Township 12, Concord", NC +station = ('kjqf', 0.0019050859209792589) +zone = ('ncz072', 0.0006806397688764802) + +[fips3702620] +centroid = (0.61615191031547623, -1.3402269530597226) +description = Aurora town, NC +station = ('kewn', 0.0055146387730328206) +zone = ('ncz094', 0.0028897087028154234) + +[fips37027] +centroid = (0.62758299661129058, -1.4229682656012084) +description = Caldwell County, NC +station = ('khky', 0.0041797067331681894) +zone = ('ncz502', 0.0011902550559161368) + +[fips3702700] +centroid = (0.61080198746592307, -1.3725488974636235) +description = Autryville town, NC +station = ('kctz', 0.0039709571707974437) +zone = ('ncz088', 0.0028103953542475985) + +[fips3702760] +centroid = (0.61898210132392528, -1.4411507741359273) +description = Avery Creek CDP, NC +station = ('kavl', 0.00077888862806891658) +zone = ('ncz065', 0.0026018772705410803) + +[fips3702780] +centroid = (0.61689582200255377, -1.3178275370659676) +description = Avon CDP, NC +station = ('khse', 0.0025143401713532197) +zone = ('ncz104', 0.0069313573440525113) + +[fips3702791244] +centroid = (0.62944664173327769, -1.4261668258015834) +description = Globe township, NC +station = ('ktnb', 0.0025256337523089758) +zone = ('ncz501', 0.0011879339504447233) + +[fips3702791556] +centroid = (0.6256826646684267, -1.4222015424608074) +description = Hudson township, NC +station = ('khky', 0.0022588249590773601) +zone = ('ncz502', 0.00091243245687226357) + +[fips3702791672] +centroid = (0.62718195485576744, -1.4258061535116586) +description = Johns River township, NC +station = ('ktnb', 0.0046662369513763551) +zone = ('ncz501', 0.0018162423537780451) + +[fips3702791700] +centroid = (0.62848690263089857, -1.4209168055984143) +description = Kings Creek township, NC +station = ('khky', 0.00455047282694009) +zone = ('ncz502', 0.0021399093478110609) + +[fips3702791780] +centroid = (0.62632276417159571, -1.4240418874372802) +description = Lenoir township, NC +station = ('khky', 0.0037805115021004947) +zone = ('ncz502', 0.0015563761303994973) + +[fips3702791852] +centroid = (0.62705082826906511, -1.4203782144445414) +description = Little River township, NC +station = ('khky', 0.0030957093869316476) +zone = ('ncz502', 0.0015059757111284969) + +[fips3702791916] +centroid = (0.62505083802591233, -1.42088699537479) +description = Lovelady township, NC +station = ('khky', 0.0011627378152479005) +zone = ('ncz502', 0.0018519847804497674) + +[fips3702791924] +centroid = (0.62731393665380331, -1.4223452005115389) +description = Lower Creek township, NC +station = ('khky', 0.003707972883285175) +zone = ('ncz502', 0.00073692315209217588) + +[fips3702792180] +centroid = (0.62845637682228106, -1.4247484490783651) +description = Mulberry township, NC +station = ('ktnb', 0.0033623290024276083) +zone = ('ncz501', 0.00040661021224351423) + +[fips3702792304] +centroid = (0.62501743242402918, -1.423163882103772) +description = North Catawba township, NC +station = ('khky', 0.0024758968055222544) +zone = ('ncz502', 0.0017779533180578969) + +[fips3702792452] +centroid = (0.62913757882933452, -1.4240158296715479) +description = Patterson township, NC +station = ('ktnb', 0.0028019081528648368) +zone = ('ncz501', 0.00077350667238922175) + +[fips3702794052] +centroid = (0.62791504550148269, -1.4270720757247153) +description = Wilson Creek township, NC +station = ('ktnb', 0.0042195543638842755) +zone = ('ncz501', 0.0019870058002537877) + +[fips3702794116] +centroid = (0.62928516387088307, -1.4226102113051617) +description = Yadkin Valley township, NC +station = ('ktnb', 0.003207840988678495) +zone = ('ncz501', 0.001903937229898723) + +[fips3702840] +centroid = (0.6190657375016807, -1.3512113572400741) +description = Ayden town, NC +station = ('kpgv', 0.002865592592790974) +zone = ('ncz044', 0.0022463352823055612) + +[fips37029] +centroid = (0.63429356069240606, -1.329286182110671) +description = Camden County, NC +station = ('kecg', 0.0016127783761494413) +zone = ('ncz016', 0.0010702288603471743) + +[fips3702960] +centroid = (0.61797139860738781, -1.3983288416855664) +description = Badin town, NC +station = ('kvuj', 0.00049111072018085062) +zone = ('ncz073', 0.0025114492734958269) + +[fips3702990784] +centroid = (0.63462461474492438, -1.3291793505071565) +description = Courthouse township, NC +station = ('kecg', 0.0019481544968847832) +zone = ('ncz016', 0.00090793871360331517) + +[fips3702992920] +centroid = (0.6325600647727404, -1.3262670592106935) +description = Shiloh township, NC +station = ('konx', 0.0027459984058020776) +zone = ('ncz017', 0.0028307428426992717) + +[fips3702993044] +centroid = (0.63669977631896058, -1.3323900931057102) +description = South Mills township, NC +station = ('kcpk', 0.0032467416844368718) +zone = ('ncz016', 0.0024107777601393983) + +[fips3703020] +centroid = (0.62448952268517832, -1.3633277121600993) +description = Bailey town, NC +station = ('krwi', 0.0032477406716013625) +zone = ('ncz043', 0.0030555637030559878) + +[fips37031] +centroid = (0.60839233354074218, -1.3356475407150474) +description = Carteret County, NC +station = ('kmrh', 0.0028049177657577524) +zone = ('ncz095', 0.0021067817442195218) + +[fips3703100] +centroid = (0.62858650857130993, -1.4339321621628489) +description = Bakersville town, NC +station = ('k0a9', 0.0061919484805357536) +zone = ('ncz050', 8.0923373252887092e-05) + +[fips3703150] +centroid = (0.59103583698111439, -1.3611625614098302) +description = Bald Head Island village, NC +station = ('ksut', 0.0016870450879548525) +zone = ('ncz110', 0.0015749948410658595) + +[fips3703190092] +centroid = (0.60896703555683884, -1.3321517858496428) +description = Atlantic township, NC +station = ('knbt', 0.0029668857112474917) +zone = ('ncz095', 0.0050316008967590791) + +[fips3703190180] +centroid = (0.60720411338598446, -1.3376445289918868) +description = Beaufort township, NC +station = ('kmrh', 0.0010007376298060936) +zone = ('ncz095', 0.00085194702739791763) + +[fips3703190588] +centroid = (0.61134865949423278, -1.3323818202450557) +description = Cedar Island township, NC +station = ('knbt', 0.0018227191163218894) +zone = ('ncz095', 0.0058304689369432358) + +[fips3703190888] +centroid = (0.60971808564055696, -1.3347245058868376) +description = Davis township, NC +station = ('knbt', 0.0014419446580842426) +zone = ('ncz095', 0.0033267398245618819) + +[fips3703191396] +centroid = (0.60398843150564752, -1.335957493736909) +description = Harkers Island township, NC +station = ('kmrh', 0.0026876533749698689) +zone = ('ncz095', 0.0043500303646477369) + +[fips3703191400] +centroid = (0.60761859417674802, -1.3390833086140608) +description = Harlowe township, NC +station = ('kmrh', 0.0017610571745917114) +zone = ('ncz095', 0.00082827276297641991) + +[fips3703192000] +centroid = (0.60615899277659768, -1.3353236250591698) +description = Marshallberg township, NC +station = ('kmrh', 0.0020316047862396014) +zone = ('ncz095', 0.0029331331316997428) + +[fips3703192040] +centroid = (0.60966523707080655, -1.3363874206915529) +description = Merrimon township, NC +station = ('knbt', 0.0020927685699844135) +zone = ('ncz095', 0.002250205941756405) + +[fips3703192120] +centroid = (0.60565659975141106, -1.3405268180785077) +description = Morehead township, NC +station = ('kmrh', 0.0023130102200408205) +zone = ('ncz095', 0.0030051112014215574) + +[fips3703192272] +centroid = (0.60728459051779382, -1.3415179207475454) +description = Newport township, NC +station = ('knkt', 0.0018139725815733989) +zone = ('ncz095', 0.0028380299838397407) + +[fips3703192560] +centroid = (0.61033443121260622, -1.3293738325457061) +description = Portsmouth township, NC +station = ('knbt', 0.0043555803402557727) +zone = ('ncz104', 0.0045721285322436684) + +[fips3703192884] +centroid = (0.60864837334200972, -1.3329715844525971) +description = Sea Level township, NC +station = ('knbt', 0.0028389893442538031) +zone = ('ncz095', 0.0043122735948871007) + +[fips3703193000] +centroid = (0.60585912775781259, -1.334684502940382) +description = Smyrna township, NC +station = ('kmrh', 0.0025805579828695755) +zone = ('ncz095', 0.0035332976275146218) + +[fips3703193088] +centroid = (0.60784622001779309, -1.3337174683617294) +description = Stacy township, NC +station = ('knbt', 0.003387226669720131) +zone = ('ncz095', 0.0036448491111452865) + +[fips3703193156] +centroid = (0.60715133462940407, -1.3364616146380552) +description = Straits township, NC +station = ('kmrh', 0.0014435812690510525) +zone = ('ncz095', 0.0016019071085938586) + +[fips3703193968] +centroid = (0.60578660932739214, -1.3445300448772222) +description = White Oak township, NC +station = ('knjm', 0.00016160107626079218) +zone = ('ncz095', 0.0056633141663628402) + +[fips3703220] +centroid = (0.61702005453871078, -1.4396999168353297) +description = Balfour CDP, NC +station = ('kavl', 0.0015446664284212523) +zone = ('ncz065', 0.00031333536368894835) + +[fips37033] +centroid = (0.63517936764767069, -1.3846141316898573) +description = Caswell County, NC +station = ('kdan', 0.0030293823147287948) +zone = ('ncz006', 1.7053544072067903e-05) + +[fips3703390056] +centroid = (0.63336057748746, -1.3844453758044821) +description = Anderson township, NC +station = ('kdan', 0.0048503754920275277) +zone = ('ncz006', 0.0018304136589138203) + +[fips3703390880] +centroid = (0.63693152113704044, -1.3846152661538711) +description = Dan River township, NC +station = ('kdan', 0.0012772488500288081) +zone = ('ncz006', 0.0017469320536748088) + +[fips3703391492] +centroid = (0.63360975814476728, -1.3825211677574507) +description = Hightowers township, NC +station = ('ktdf', 0.0032294033944037176) +zone = ('ncz006', 0.0023188265522060677) + +[fips3703391756] +centroid = (0.63488683301174409, -1.3825222673148798) +description = Leasburg township, NC +station = ('kdan', 0.0037285404512864837) +zone = ('ncz006', 0.0017261575057664449) + +[fips3703391888] +centroid = (0.6353277904472604, -1.3867575879975242) +description = Locust Hill township, NC +station = ('kdan', 0.0033514030380709207) +zone = ('ncz006', 0.001715081266933952) + +[fips3703392080] +centroid = (0.63690696435446481, -1.3823470188046869) +description = Milton township, NC +station = ('kdan', 0.0022480416658576642) +zone = ('ncz006', 0.0025202941851607064) + +[fips3703392468] +centroid = (0.63709004939299907, -1.3865507490278703) +description = Pelham township, NC +station = ('kdan', 0.0019074980557812862) +zone = ('ncz006', 0.0024509331791366874) + +[fips3703393140] +centroid = (0.63354043366687807, -1.3868005405504158) +description = Stoney Creek township, NC +station = ('kbuy', 0.0046418012763403517) +zone = ('ncz006', 0.0023974695766164956) + +[fips3703394120] +centroid = (0.63524926808421311, -1.3843404989697297) +description = Yanceyville township, NC +station = ('kdan', 0.0029684681544270048) +zone = ('ncz006', 0.00024513942596471523) + +[fips37035] +centroid = (0.62243994763797639, -1.4174543341618453) +description = Catawba County, NC +station = ('khky', 0.0028363771826171416) +zone = ('ncz056', 1.0753983342063396e-05) + +[fips3703500] +centroid = (0.63108906637257445, -1.4288611254744719) +description = Banner Elk town, NC +station = ('ktnb', 0.0031504926770068091) +zone = ('ncz033', 0.0016278058542842119) + +[fips3703590140] +centroid = (0.62152050818802573, -1.4214614704980841) +description = Bandy's township, NC +station = ('khky', 0.0025809364811056161) +zone = ('ncz069', 0.0038016679826410786) + +[fips3703590476] +centroid = (0.62131202860887502, -1.4160714225290276) +description = Caldwell township, NC +station = ('kipj', 0.0020506392844990076) +zone = ('ncz056', 0.0015876890220899898) + +[fips3703590556] +centroid = (0.6228179161407883, -1.4149683744417672) +description = Catawba township, NC +station = ('ksvh', 0.0021513736341524782) +zone = ('ncz056', 0.0020598981297979368) + +[fips3703590700] +centroid = (0.62416717782562747, -1.417100451202711) +description = Clines township, NC +station = ('khky', 0.0026917625965753966) +zone = ('ncz056', 0.0017615675947420565) + +[fips3703591468] +centroid = (0.62336629859176496, -1.4195200185980432) +description = Hickory township, NC +station = ('khky', 0.00093024868265333832) +zone = ('ncz056', 0.0019183317710567858) + +[fips3703591636] +centroid = (0.62124755614630633, -1.4191253647475823) +description = Jacobs Fork township, NC +station = ('kipj', 0.0028733650920096539) +zone = ('ncz056', 0.001798020245567455) + +[fips3703592152] +centroid = (0.621325118578265, -1.4139395377543014) +description = Mountain Creek township, NC +station = ('kipj', 0.0029277373922931625) +zone = ('ncz056', 0.0030662138839402191) + +[fips3703592284] +centroid = (0.62220328099140598, -1.4175746746137703) +description = Newton township, NC +station = ('khky', 0.002891386596400296) +zone = ('ncz056', 0.00024533476125741512) + +[fips3703640] +centroid = (0.61627312343202723, -1.4388662079582371) +description = Barker Heights CDP, NC +station = ('kavl', 0.0025245054920630906) +zone = ('ncz065', 0.00072040928616006546) + +[fips3703665] +centroid = (0.60532411452890611, -1.378615504863923) +description = Barker Ten Mile CDP, NC +station = ('klbt', 0.0018228337747672682) +zone = ('ncz087', 0.0018047270610392382) + +[fips37037] +centroid = (0.62316970470482025, -1.38319880929283) +description = Chatham County, NC +station = ('ktta', 0.0030167897491448241) +zone = ('ncz040', 6.6614710737732431e-05) + +[fips3703790024] +centroid = (0.62485965465964877, -1.386673969273061) +description = Albright township, NC +station = ('k5w8', 0.0018603111829165037) +zone = ('ncz040', 0.0032613524284536973) + +[fips3703790136] +centroid = (0.62526294788990711, -1.3816043986612558) +description = Baldwin township, NC +station = ('kigx', 0.002307735631327806) +zone = ('ncz040', 0.0025221323795690392) + +[fips3703790172] +centroid = (0.62118493373274486, -1.3871872880593652) +description = Bear Creek township, NC +station = ('k5w8', 0.002004761166235406) +zone = ('ncz040', 0.0037340407213405967) + +[fips3703790504] +centroid = (0.62136747771921086, -1.3791637302352671) +description = Cape Fear township, NC +station = ('ktta', 0.0011993605431427398) +zone = ('ncz076', 0.0030842024235215384) + +[fips3703790592] +centroid = (0.62345356505436456, -1.3820260353019524) +description = Center township, NC +station = ('ktta', 0.0026918946222057221) +zone = ('ncz040', 0.0010570372745244011) + +[fips3703791352] +centroid = (0.62118001190425409, -1.3844604554492193) +description = Gulf township, NC +station = ('k5w8', 0.0032342691877971941) +zone = ('ncz040', 0.0021794984588620545) + +[fips3703791368] +centroid = (0.62487450741158324, -1.3837164564956792) +description = Hadley township, NC +station = ('k5w8', 0.0035926609517285186) +zone = ('ncz040', 0.0017810273214139011) + +[fips3703791428] +centroid = (0.62216730975552237, -1.3807067583736627) +description = Haw River township, NC +station = ('ktta', 0.001140218434017435) +zone = ('ncz040', 0.0022915857674066123) + +[fips3703791472] +centroid = (0.6232196734813048, -1.3843439023617712) +description = Hickory Mountain township, NC +station = ('k5w8', 0.0026504532958986872) +zone = ('ncz040', 0.00087977976972329727) + +[fips3703792012] +centroid = (0.62330231482138676, -1.386909204749645) +description = Matthews township, NC +station = ('k5w8', 0.00058418245246958322) +zone = ('ncz040', 0.0029632858381534442) + +[fips3703792240] +centroid = (0.62374327225690307, -1.3791411805813312) +description = New Hope township, NC +station = ('ktta', 0.0029526583688009268) +zone = ('ncz040', 0.0034042275434551126) + +[fips3703792352] +centroid = (0.62163233143320107, -1.3822750588796271) +description = Oakland township, NC +station = ('ktta', 0.0015036545873616269) +zone = ('ncz040', 0.0017015859354836075) + +[fips3703794016] +centroid = (0.6252737689312694, -1.3790397769517904) +description = Williams township, NC +station = ('kigx', 0.0020276869951289509) +zone = ('ncz025', 0.0041489935651520841) + +[fips3703840] +centroid = (0.61909827043893795, -1.3406050088289971) +description = Bath town, NC +station = ('kocw', 0.0038045387780666611) +zone = ('ncz080', 0.00084199615223964105) + +[fips37039] +centroid = (0.61324295259788475, -1.4671465981330494) +description = Cherokee County, NC +station = ('krhp', 0.0030014117832069856) +zone = ('ncz060', 5.1350508460565747e-05) + +[fips3703960] +centroid = (0.61347122421075317, -1.339878428261392) +description = Bayboro town, NC +station = ('knkt', 0.0046701816926536781) +zone = ('ncz094', 0.00033119279989964615) + +[fips3703990188] +centroid = (0.61481395836418984, -1.4684774989541578) +description = Beaverdam township, NC +station = ('krhp', 0.0039444319299780798) +zone = ('ncz060', 0.0019271540268832839) + +[fips3703991544] +centroid = (0.61142938097213739, -1.470693910024558) +description = Hothouse township, NC +station = ('krhp', 0.0063897158371869446) +zone = ('tnz102', 0.0022927519313584764) + +[fips3703992192] +centroid = (0.61293177784554664, -1.4662980539573149) +description = Murphy township, NC +station = ('krhp', 0.0025124642462113424) +zone = ('ncz060', 0.00077408796201507428) + +[fips3703992336] +centroid = (0.61112042278794942, -1.46833940850374) +description = Notla township, NC +station = ('krhp', 0.0049336646399966788) +zone = ('ncz060', 0.0022862117607428409) + +[fips3703992932] +centroid = (0.61254180147748116, -1.4701390174954714) +description = Shoal Creek township, NC +station = ('krhp', 0.005544080439655868) +zone = ('ncz060', 0.0025051253700721617) + +[fips3703993852] +centroid = (0.61428114425014113, -1.4632035328336515) +description = Valleytown township, NC +station = ('krhp', 0.00040274603676478002) +zone = ('ncz058', 0.0026963710535311751) + +[fips3704015] +centroid = (0.59845074613516469, -1.3579359537683757) +description = Bayshore CDP, NC +station = ('kilm', 0.001436945595966846) +zone = ('ncz107', 0.0013653641871708563) + +[fips3704040] +centroid = (0.61857587594052355, -1.3402974643615031) +description = Bayview CDP, NC +station = ('kocw', 0.0042795916799467284) +zone = ('ncz080', 0.0013545491970436865) + +[fips37041] +centroid = (0.63054012541623716, -1.3369583353431727) +description = Chowan County, NC +station = ('kede', 0.0018050058241894595) +zone = ('ncz031', 0.00041707755710891051) + +[fips3704180] +centroid = (0.62423529802633282, -1.3461567091933733) +description = Bear Grass town, NC +station = ('kocw', 0.0035928207474640187) +zone = ('ncz029', 0.0013548975491629756) + +[fips3704193276] +centroid = (0.62966095071213002, -1.3375463193148769) +description = "Township 1, Edenton", NC +station = ('kede', 0.0012925809299015269) +zone = ('ncz031', 0.0013459542929408861) + +[fips3704193348] +centroid = (0.63156857813126732, -1.3377623387163964) +description = "Township 2, Middle", NC +station = ('kede', 0.0029913684433250233) +zone = ('ncz031', 0.00083904462034473104) + +[fips3704193400] +centroid = (0.6332045450523317, -1.3376242308126862) +description = "Township 3, Upper", NC +station = ('kede', 0.0045198344526101259) +zone = ('ncz031', 0.0023009847570241767) + +[fips3704193456] +centroid = (0.6291988398860795, -1.3352339500422024) +description = "Township 4, Yeopim", NC +station = ('kede', 0.00098540732270376908) +zone = ('ncz031', 0.0022898451065429303) + +[fips3704260] +centroid = (0.60611193869996394, -1.3378423795158929) +description = Beaufort town, NC +station = ('kmrh', 0.00010650300347561255) +zone = ('ncz095', 0.0018513889297884928) + +[fips37043] +centroid = (0.61179021034169478, -1.4617527627995162) +description = Clay County, NC +station = ('krhp', 0.0029443301067586828) +zone = ('ncz061', 7.9061538236338861e-05) + +[fips3704390360] +centroid = (0.61128516441604519, -1.4647111133349389) +description = Brasstown township, NC +station = ('krhp', 0.0030968491987420545) +zone = ('ncz061', 0.0025189348110489025) + +[fips3704391436] +centroid = (0.61162079123120372, -1.4631375593879261) +description = Hayesville township, NC +station = ('krhp', 0.0026869688753837499) +zone = ('ncz061', 0.0011882187673982832) + +[fips3704391500] +centroid = (0.61119808993966307, -1.4617165821241223) +description = Hiawassee township, NC +station = ('krhp', 0.0034714222692875532) +zone = ('ncz061', 0.000665476602783621) + +[fips3704392944] +centroid = (0.61166627451151068, -1.4594613025712804) +description = Shooting Creek township, NC +station = ('k1a5', 0.0041698869163180824) +zone = ('ncz061', 0.0018568914987183182) + +[fips3704393192] +centroid = (0.61200773072637082, -1.464027974012416) +description = Sweetwater township, NC +station = ('krhp', 0.0022771298113320373) +zone = ('ncz061', 0.0018973174348926377) + +[fips3704393792] +centroid = (0.61291088625440038, -1.4617172977091155) +description = Tusquittee township, NC +station = ('krhp', 0.0021121021513112685) +zone = ('ncz061', 0.0010473198239675961) + +[fips37045] +centroid = (0.6167056334739639, -1.423440185177655) +description = Cleveland County, NC +station = ('keho', 0.0015984274935309753) +zone = ('ncz068', 2.67800359072001e-05) + +[fips3704510] +centroid = (0.63201351491747826, -1.4292706320768676) +description = Beech Mountain town, NC +station = ('ktnb', 0.0034026217643081335) +zone = ('ncz033', 0.0023987778813017767) + +[fips3704590686] +centroid = (0.6167056334739639, -1.423440185177655) +description = Cleveland, NC +station = ('keho', 0.0015984274935309753) +zone = ('ncz068', 2.67800359072001e-05) + +[fips3704640] +centroid = (0.62034169535793626, -1.3373255700710847) +description = Belhaven town, NC +station = ('kocw', 0.0060765422732589761) +zone = ('ncz080', 0.0035117162426546991) + +[fips3704680] +centroid = (0.62118320585678533, -1.3528519143770712) +description = Bell Arthur CDP, NC +station = ('kpgv', 0.0017603314976523867) +zone = ('ncz044', 0.0019576566552204711) + +[fips37047] +centroid = (0.59795802223403427, -1.3724637079428335) +description = Columbus County, NC +station = ('kcpc', 0.0011541953320844793) +zone = ('ncz099', 0.00028258955373837446) + +[fips3704790316] +centroid = (0.59819119822210065, -1.3714607719414675) +description = Bogue township, NC +station = ('kcpc', 0.0019628156866902621) +zone = ('ncz099', 0.0011070050474260395) + +[fips3704790320] +centroid = (0.59807680934292495, -1.368416429033799) +description = Bolton township, NC +station = ('kcpc', 0.0044796570092180696) +zone = ('ncz109', 0.0035903540078521291) + +[fips3704790436] +centroid = (0.5940387806789259, -1.372970499197735) +description = Bug Hill township, NC +station = ('kcre', 0.0038979231997816506) +zone = ('ncz099', 0.004009836904567958) + +[fips3704790608] +centroid = (0.5981609167595785, -1.3774656994060017) +description = Cerro Gordo township, NC +station = ('kcpc', 0.0029995607359737672) +zone = ('ncz099', 0.0038667897787205267) + +[fips3704790612] +centroid = (0.59873237246326649, -1.3756317597878835) +description = Chadbourn township, NC +station = ('kcpc', 0.0015857425164037306) +zone = ('ncz099', 0.0024473224275355279) + +[fips3704791044] +centroid = (0.59870723972203788, -1.3789048630006113) +description = Fair Bluff township, NC +station = ('kcpc', 0.0042219972957973032) +zone = ('ncz087', 0.0060436030712915463) + +[fips3704791764] +centroid = (0.59672433625226196, -1.3728108015711777) +description = Lees township, NC +station = ('kcpc', 0.0016782192267903483) +zone = ('ncz099', 0.0013215846686605922) + +[fips3704792624] +centroid = (0.59872804404672153, -1.3662161448056871) +description = Ransom township, NC +station = ('kilm', 0.005497020160059719) +zone = ('ncz109', 0.0034812200638712977) + +[fips3704793072] +centroid = (0.5958716905527851, -1.3755096391001214) +description = South Williams township, NC +station = ('kcpc', 0.0026853586423917354) +zone = ('ncz099', 0.0031290114568914697) + +[fips3704793216] +centroid = (0.60030971377475639, -1.3762895918362528) +description = Tatums township, NC +station = ('kcpc', 0.0029447618997962906) +zone = ('ncz099', 0.0036719601204684548) + +[fips3704793872] +centroid = (0.5994412204856715, -1.3703059922951779) +description = Waccamaw township, NC +station = ('kcpc', 0.0031796934252657071) +zone = ('ncz099', 0.002480560367661712) + +[fips3704793928] +centroid = (0.60051700653001572, -1.3726809839814142) +description = Welches Creek township, NC +station = ('kcpc', 0.0025307414708206533) +zone = ('ncz099', 0.0024728125504033631) + +[fips3704793944] +centroid = (0.60123384816039493, -1.3742071173326507) +description = Western Prong township, NC +station = ('kcpc', 0.0030763311251580166) +zone = ('ncz099', 0.0033962892516466547) + +[fips3704794000] +centroid = (0.59973476741256437, -1.3741773769221968) +description = Whiteville township, NC +station = ('kcpc', 0.0015872069747444443) +zone = ('ncz099', 0.0020416118093273461) + +[fips3704794020] +centroid = (0.59678414868572782, -1.3750807244364438) +description = Williams township, NC +station = ('kcpc', 0.0017284519110932844) +zone = ('ncz099', 0.0022765785808858889) + +[fips3704840] +centroid = (0.61489851956644903, -1.4143790640198315) +description = Belmont city, NC +station = ('kclt', 0.0012789948926375107) +zone = ('ncz070', 0.0023083419269796807) + +[fips37049] +centroid = (0.61292785085472967, -1.3453441362535226) +description = Craven County, NC +station = ('kewn', 0.0010182151476661886) +zone = ('ncz093', 0.00024822508195228738) + +[fips3704950] +centroid = (0.59724029048573646, -1.3613322597730015) +description = Belville town, NC +station = ('kilm', 0.0016448513413384771) +zone = ('ncz107', 0.0018104615398033164) + +[fips3704955] +centroid = (0.62327583817663401, -1.3521053846961157) +description = Belvoir CDP, NC +station = ('kpgv', 0.0016805253860797073) +zone = ('ncz044', 0.0024558569200847469) + +[fips3704960] +centroid = (0.61931865316358725, -1.4229222761754183) +description = Belwood town, NC +station = ('keho', 0.0042184477648827077) +zone = ('ncz068', 0.002653984836450914) + +[fips3704993256] +centroid = (0.61627385647031308, -1.3464759822734407) +description = Township 1, NC +station = ('kewn', 0.0044652826590723367) +zone = ('ncz093', 0.003285852175824677) + +[fips3704993308] +centroid = (0.61407495105231047, -1.3437066508960087) +description = Township 2, NC +station = ('kewn', 0.0021965600415700583) +zone = ('ncz093', 0.0018431715394150664) + +[fips3704993360] +centroid = (0.61495592344554706, -1.3500206238111934) +description = Township 3, NC +station = ('kiso', 0.0041670874785818997) +zone = ('ncz092', 0.0037039142749257662) + +[fips3704993460] +centroid = (0.60923089443315537, -1.3399052539719951) +description = Township 5, NC +station = ('knkt', 0.0015804679300390697) +zone = ('ncz095', 0.0019266915510896816) + +[fips3704993508] +centroid = (0.60927222382984259, -1.3437720658363737) +description = Township 6, NC +station = ('knkt', 0.0016093009630677372) +zone = ('ncz093', 0.004078600467487003) + +[fips3704993552] +centroid = (0.61154261793400688, -1.3443320896334612) +description = Township 7, NC +station = ('kewn', 0.00059632503575234377) +zone = ('ncz093', 0.0018422676996167513) + +[fips3704993592] +centroid = (0.61295846392980979, -1.346017327199309) +description = Township 8, NC +station = ('kewn', 0.0013967362225985819) +zone = ('ncz093', 0.00036252942414105794) + +[fips3704993628] +centroid = (0.61417176446591859, -1.3475719966838156) +description = Township 9, NC +station = ('kewn', 0.0031530307940137677) +zone = ('ncz093', 0.0019575066754406417) + +[fips3705020] +centroid = (0.62090576831888833, -1.3881408486961921) +description = Bennett CDP, NC +station = ('k5w8', 0.0022960321269460504) +zone = ('ncz075', 0.0046795979819491997) + +[fips3705040] +centroid = (0.61762144263907037, -1.370796447268281) +description = Benson town, NC +station = ('khrj', 0.002746916252393124) +zone = ('ncz042', 0.0033747024019132161) + +[fips3705049] +centroid = (0.61977247367569088, -1.4419190157127779) +description = Bent Creek CDP, NC +station = ('kavl', 0.0017841491890138125) +zone = ('ncz053', 0.0021396354200131158) + +[fips37051] +centroid = (0.61174125385617639, -1.375820691679412) +description = Cumberland County, NC +station = ('kfay', 0.0014039543267096702) +zone = ('ncz088', 3.582116728964347e-05) + +[fips3705135] +centroid = (0.6283847659630718, -1.40365736679849) +description = Bermuda Run town, NC +station = ('kint', 0.0035099672755189728) +zone = ('ncz037', 0.002148130460642942) + +[fips3705190192] +centroid = (0.60867326173714309, -1.3716327915925439) +description = Beaver Dam township, NC +station = ('kctz', 0.0036600052190929652) +zone = ('ncz089', 0.0037239656843344902) + +[fips3705190288] +centroid = (0.61405133674753098, -1.3731854015885332) +description = Black River township, NC +station = ('khrj', 0.0035133209116941328) +zone = ('ncz088', 0.0031675997799948314) + +[fips3705190532] +centroid = (0.61438057565762716, -1.3758048266365113) +description = Carvers Creek township, NC +station = ('kfbg', 0.0019179722596815269) +zone = ('ncz088', 0.0026688627021699473) + +[fips3705190572] +centroid = (0.61039235869048003, -1.3741996124168672) +description = Cedar Creek township, NC +station = ('kfay', 0.0021171262086940091) +zone = ('ncz088', 0.001857458466829676) + +[fips3705190832] +centroid = (0.61206489025937361, -1.3770777301665758) +description = Cross Creek township, NC +station = ('kfbg', 0.0012197250436045248) +zone = ('ncz088', 0.0011070827280813473) + +[fips3705190968] +centroid = (0.61271645657572826, -1.3747420083885094) +description = Eastover township, NC +station = ('kfay', 0.002712174107978325) +zone = ('ncz088', 0.0013241599506206793) + +[fips3705191296] +centroid = (0.60915026022171315, -1.3763138344595629) +description = Grays Creek township, NC +station = ('kfay', 0.001473177525628874) +zone = ('ncz088', 0.0025963792137793595) + +[fips3705191964] +centroid = (0.6138593156232266, -1.3791082462183462) +description = Manchester township, NC +station = ('kpob', 0.0002470191650910306) +zone = ('ncz088', 0.0034574990823874759) + +[fips3705192460] +centroid = (0.61099325809864913, -1.3771199845877666) +description = Pearces Mill township, NC +station = ('kfay', 0.00050583296161822472) +zone = ('ncz088', 0.0013006760711989356) + +[fips3705192724] +centroid = (0.61023793195826359, -1.3779253667710993) +description = Rockfish township, NC +station = ('kfay', 0.0010017174604383019) +zone = ('ncz088', 0.0022834841296107671) + +[fips3705192892] +centroid = (0.61220261419064848, -1.3793484384300054) +description = Seventy-First township, NC +station = ('kpob', 0.0015719078421320334) +zone = ('ncz086', 0.0031231491177205039) + +[fips3705220] +centroid = (0.61583466181734114, -1.4186917551482168) +description = Bessemer City city, NC +station = ('kakh', 0.0024274680431922392) +zone = ('ncz070', 0.0015048281103647917) + +[fips37053] +centroid = (0.63481419240827608, -1.3254243967945383) +description = Currituck County, NC +station = ('konx', 0.0011508927239695149) +zone = ('ncz017', 0.0013985248377647401) + +[fips3705340] +centroid = (0.63145560296878578, -1.4021081951011272) +description = Bethania town, NC +station = ('kint', 0.0016443400171873824) +zone = ('ncz021', 0.0014028257009750054) + +[fips3705390816] +centroid = (0.63541043178734236, -1.3274339863485771) +description = Crawford township, NC +station = ('konx', 0.00058021520014119997) +zone = ('ncz017', 0.00032670739142701615) + +[fips3705391188] +centroid = (0.63731963000280645, -1.3246524376663813) +description = Fruitville township, NC +station = ('konx', 0.0026370898771835051) +zone = ('ncz102', 0.0021507836484803882) + +[fips3705392176] +centroid = (0.63723674431662913, -1.3288997662142794) +description = Moyock township, NC +station = ('konx', 0.002620835501590564) +zone = ('ncz016', 0.0023242888039048896) + +[fips3705392552] +centroid = (0.63276086490318229, -1.3238985252426896) +description = Poplar Branch township, NC +station = ('konx', 0.0033996118066564273) +zone = ('ncz102', 0.0025444607427811991) + +[fips3705460] +centroid = (0.6249538151727938, -1.3504685102038405) +description = Bethel town, NC +station = ('kpgv', 0.003053590215625603) +zone = ('ncz044', 0.0037300966500678555) + +[fips37055] +centroid = (0.62144662840078879, -1.3223929693233345) +description = Dare County, NC +station = ('k2dp', 0.0021544749092254271) +zone = ('ncz047', 0.0032151020233115051) + +[fips3705530] +centroid = (0.6251338458851371, -1.4189658940138277) +description = Bethlehem CDP, NC +station = ('khky', 0.0016601627230119261) +zone = ('ncz035', 0.0025142172290219993) + +[fips3705590096] +centroid = (0.63000867265900484, -1.3213867171963893) +description = Atlantic township, NC +station = ('kffa', 0.0015263420173200276) +zone = ('ncz102', 0.0056194869352273131) + +[fips3705590824] +centroid = (0.62144662840078879, -1.3223929693233345) +description = Croatan township, NC +station = ('k2dp', 0.0021544749092254271) +zone = ('ncz047', 0.0032151020233115051) + +[fips3705590964] +centroid = (0.62512911604286414, -1.3251894056640499) +description = East Lake township, NC +station = ('k2dp', 0.0026576054000237211) +zone = ('ncz047', 0.0012328761369358658) + +[fips3705591424] +centroid = (0.6149282948834881, -1.3183916449335045) +description = Hatteras township, NC +station = ('khse', 0.0011175671673456717) +zone = ('ncz104', 0.0056506624291468932) + +[fips3705591702] +centroid = (0.62066449400309265, -1.3172995924205317) +description = Kinnakeet township, NC +station = ('khse', 0.0060678069522854643) +zone = ('ncz103', 0.00402321849532502) + +[fips3705592196] +centroid = (0.62640238609207166, -1.319674479387013) +description = Nags Head township, NC +station = ('kmqi', 0.0013299343524140474) +zone = ('ncz103', 0.0022869255011342985) + +[fips3705660] +centroid = (0.60951787892206066, -1.3573654230891912) +description = Beulaville town, NC +station = ('koaj', 0.0027094418861836008) +zone = ('ncz090', 0.0023302405724683912) + +[fips37057] +centroid = (0.62474275250635014, -1.3998679428331449) +description = Davidson County, NC +station = ('kexx', 0.0013999884863894398) +zone = ('ncz038', 9.3639598874248304e-05) + +[fips3705790008] +centroid = (0.62814942576673283, -1.3981996698676262) +description = Abbotts Creek township, NC +station = ('kgso', 0.0029704002659996648) +zone = ('ncz021', 0.0031912899589540186) + +[fips3705790032] +centroid = (0.61992913442934983, -1.3984244333686979) +description = Alleghany township, NC +station = ('kvuj', 0.0018323818054380504) +zone = ('ncz073', 0.0040435696511714834) + +[fips3705790076] +centroid = (0.62771653175236075, -1.4013841801675224) +description = Arcadia township, NC +station = ('kint', 0.0030492739467031897) +zone = ('ncz021', 0.0029251373398929046) + +[fips3705790328] +centroid = (0.62418808687006644, -1.4032886310874213) +description = Boone township, NC +station = ('kexx', 0.0014306419812666711) +zone = ('ncz038', 0.0027377695293977124) + +[fips3705790756] +centroid = (0.62475898406839381, -1.3986998637779553) +description = Conrad Hill township, NC +station = ('kexx', 0.0023405516630224804) +zone = ('ncz038', 0.0010360655521787731) + +[fips3705790780] +centroid = (0.62327948591477067, -1.4012393701994845) +description = Cotton Grove township, NC +station = ('kexx', 0.0012474303055186897) +zone = ('ncz038', 0.0017594722142604518) + +[fips3705791028] +centroid = (0.62287175954821228, -1.3981465594984879) +description = Emmons township, NC +station = ('khbi', 0.0030764921855965868) +zone = ('ncz038', 0.0023622872269709453) + +[fips3705791392] +centroid = (0.62760846096507727, -1.4024516584446274) +description = Hampton township, NC +station = ('kexx', 0.0031917612270900711) +zone = ('ncz037', 0.0027362080234729757) + +[fips3705791440] +centroid = (0.62142660947426853, -1.4002427697433033) +description = Healing Spring township, NC +station = ('kexx', 0.0032545004288119538) +zone = ('ncz038', 0.0032897365990270993) + +[fips3705791628] +centroid = (0.62104605788416356, -1.3982678249749165) +description = Jackson Hill township, NC +station = ('kvuj', 0.0029532227844526796) +zone = ('ncz038', 0.0039169796103945068) + +[fips3705791796] +centroid = (0.62581365162878888, -1.4007210074116423) +description = Lexington township, NC +station = ('kexx', 0.0014836755286028588) +zone = ('ncz038', 0.0012589682594688581) + +[fips3705792064] +centroid = (0.62761270211515963, -1.399816315993871) +description = Midway township, NC +station = ('kint', 0.0030618841719104979) +zone = ('ncz038', 0.0029063836413901925) + +[fips3705792644] +centroid = (0.62671860484594788, -1.4019901410305224) +description = Reedy Creek township, NC +station = ('kexx', 0.0022467099905072257) +zone = ('ncz038', 0.0025891548050609729) + +[fips3705792956] +centroid = (0.6235332916945957, -1.3998712415054313) +description = Silver Hill township, NC +station = ('kexx', 0.0016809184924980269) +zone = ('ncz038', 0.0011789503615717849) + +[fips3705793232] +centroid = (0.62631061668000176, -1.3982014675567556) +description = Thomasville township, NC +station = ('kexx', 0.003275800682194986) +zone = ('ncz038', 0.0021525182307827948) + +[fips3705793796] +centroid = (0.62513227508881031, -1.4027420463255742) +description = Tyro township, NC +station = ('kexx', 0.0011445272702443833) +zone = ('ncz038', 0.0022830635660339963) + +[fips3705794112] +centroid = (0.62615803999679243, -1.4029539118434735) +description = Yadkin College township, NC +station = ('kexx', 0.0020047493574396119) +zone = ('ncz037', 0.0024602560593843699) + +[fips3705880] +centroid = (0.62020178976509643, -1.4405588282668211) +description = Biltmore Forest town, NC +station = ('kavl', 0.0017746666821669718) +zone = ('ncz053', 0.0013354299587872551) + +[fips37059] +centroid = (0.62708556032117979, -1.4057325458258187) +description = Davie County, NC +station = ('kexx', 0.0042534127785749673) +zone = ('ncz037', 2.9212182590079772e-05) + +[fips3705990472] +centroid = (0.62665390549057653, -1.4077716314442164) +description = Calahaln township, NC +station = ('kruq', 0.0048818588870536599) +zone = ('ncz037', 0.0016780480170909245) + +[fips3705990668] +centroid = (0.6284044707303269, -1.4072601627069192) +description = Clarksville township, NC +station = ('kexx', 0.0060438747127199719) +zone = ('ncz037', 0.0017900608591830567) + +[fips3705991080] +centroid = (0.62820630604705541, -1.4052611673014401) +description = Farmington township, NC +station = ('kexx', 0.0047651075062216915) +zone = ('ncz037', 0.0011961540013841981) + +[fips3705991192] +centroid = (0.62612414570271868, -1.4035783906498371) +description = Fulton township, NC +station = ('kexx', 0.0023027168766462489) +zone = ('ncz037', 0.0020164842373228847) + +[fips3705991660] +centroid = (0.62527474631565061, -1.4052492990625265) +description = Jerusalem township, NC +station = ('kruq', 0.0030649755592127353) +zone = ('ncz037', 0.0018563818917316087) + +[fips3705992100] +centroid = (0.62669240745387556, -1.405994449933373) +description = Mocksville township, NC +station = ('kexx', 0.0042063764637143945) +zone = ('ncz037', 0.00043119656475091) + +[fips3705992896] +centroid = (0.6272539496874121, -1.4039474579734639) +description = Shady Grove township, NC +station = ('kexx', 0.0033638236907501816) +zone = ('ncz037', 0.0014843510626860602) + +[fips3706000] +centroid = (0.61713741047761483, -1.3924668566867704) +description = Biscoe town, NC +station = ('kvuj', 0.0053358492343361617) +zone = ('ncz074', 0.0018121963824615991) + +[fips3706080] +centroid = (0.62198001847349094, -1.3601806915325356) +description = Black Creek town, NC +station = ('kgww', 0.0031107545940261597) +zone = ('ncz043', 0.001203058634594921) + +[fips37061] +centroid = (0.60972035456858464, -1.3601969230945792) +description = Duplin County, NC +station = ('kdpl', 0.0013358548925881926) +zone = ('ncz090', 3.6764332613409697e-05) + +[fips3706140] +centroid = (0.6216023641299443, -1.4368919438682586) +description = Black Mountain town, NC +station = ('kavl', 0.0043121370369684853) +zone = ('ncz507', 0.003246355705612125) + +[fips3706190020] +centroid = (0.61309971342617353, -1.3578661231450033) +description = Albertson township, NC +station = ('kdpl', 0.0034246566008704041) +zone = ('ncz091', 0.002979447062770855) + +[fips3706190864] +centroid = (0.60707481939499675, -1.3572725715729852) +description = Cypress Creek township, NC +station = ('koaj', 0.0023143226268477982) +zone = ('ncz090', 0.0035965508895135579) + +[fips3706191060] +centroid = (0.61259164808091815, -1.3628524066449035) +description = Faison township, NC +station = ('kdpl', 0.0022780813533829296) +zone = ('ncz090', 0.0035749465008210637) + +[fips3706191240] +centroid = (0.61249310679135038, -1.3591691685112497) +description = Glisson township, NC +station = ('kdpl', 0.0022333606777469751) +zone = ('ncz090', 0.0028616797720654812) + +[fips3706191600] +centroid = (0.60713056521130537, -1.3600438926257643) +description = Island Creek township, NC +station = ('kdpl', 0.0038224452031413491) +zone = ('ncz090', 0.0026292249847501563) + +[fips3706191688] +centroid = (0.6101589209030257, -1.3603140870472656) +description = Kenansville township, NC +station = ('kdpl', 0.00092172322962003951) +zone = ('ncz090', 0.00041410144299733142) + +[fips3706191820] +centroid = (0.60926349718358253, -1.3572494459603961) +description = Limestone township, NC +station = ('koaj', 0.0024899499168529247) +zone = ('ncz090', 0.0024631768327712197) + +[fips3706191960] +centroid = (0.60876134850449126, -1.3630088754123448) +description = Magnolia township, NC +station = ('kdpl', 0.0026532433245862221) +zone = ('ncz090', 0.002514942405771345) + +[fips3706192728] +centroid = (0.60676833957834642, -1.3633480103392999) +description = Rockfish township, NC +station = ('kdpl', 0.0045143157872752889) +zone = ('ncz090', 0.0039543356195740724) + +[fips3706192752] +centroid = (0.60780586800548697, -1.3618930340616671) +description = Rose Hill township, NC +station = ('kdpl', 0.0031389002702714983) +zone = ('ncz090', 0.0023984192707468175) + +[fips3706192972] +centroid = (0.61067824362195666, -1.3578091730515107) +description = Smith township, NC +station = ('kdpl', 0.0026507262458075067) +zone = ('ncz090', 0.0021597024872073781) + +[fips3706193900] +centroid = (0.61077357350570061, -1.3629430939528371) +description = Warsaw township, NC +station = ('kdpl', 0.0015642503162995227) +zone = ('ncz090', 0.0024726122172564679) + +[fips3706194092] +centroid = (0.61300169573538166, -1.3609713082303967) +description = Wolfscrape township, NC +station = ('kdpl', 0.0021371307977385442) +zone = ('ncz090', 0.0033067900049644412) + +[fips3706240] +centroid = (0.60285190800333377, -1.375226249989475) +description = Bladenboro town, NC +station = ('keyf', 0.0032076431638455478) +zone = ('ncz096', 0.0035645159429091096) + +[fips37063] +centroid = (0.62895712923797087, -1.3766793936713932) +description = Durham County, NC +station = ('krdu', 0.0028553054168910979) +zone = ('ncz025', 2.4580778635014316e-05) + +[fips3706390516] +centroid = (0.62778896291631858, -1.3745769526011482) +description = Carr township, NC +station = ('krdu', 0.0012227063075480066) +zone = ('ncz025', 0.0020388858588115673) + +[fips3706390932] +centroid = (0.62870484189459508, -1.3774037751241408) +description = Durham township, NC +station = ('kigx', 0.0025936650434126851) +zone = ('ncz025', 0.0006530639159237475) + +[fips3706391760] +centroid = (0.63013543592257726, -1.3774812677429293) +description = Lebanon township, NC +station = ('ktdf', 0.003269539207370433) +zone = ('ncz025', 0.0013657346295723406) + +[fips3706391972] +centroid = (0.63150497833332464, -1.3767123280343783) +description = Mangum township, NC +station = ('ktdf', 0.0023139886156258419) +zone = ('ncz025', 0.0025603248842992403) + +[fips3706392344] +centroid = (0.62853770916542406, -1.3756251624433109) +description = Oak Grove township, NC +station = ('krdu', 0.002091739857674392) +zone = ('ncz025', 0.00092565789249233468) + +[fips3706393764] +centroid = (0.62695181574059944, -1.3775291944841892) +description = Triangle township, NC +station = ('kigx', 0.0019898303225834362) +zone = ('ncz025', 0.0021156748170322232) + +[fips37065] +centroid = (0.62687086736989195, -1.3544218380392401) +description = Edgecombe County, NC +station = ('ketc', 0.00091391354348916592) +zone = ('ncz028', 0.000106885412305947) + +[fips3706500] +centroid = (0.63057492728152198, -1.4254198946948999) +description = Blowing Rock town, NC +station = ('ktnb', 0.0012677531697336461) +zone = ('ncz501', 0.0017811720133542723) + +[fips3706510] +centroid = (0.59862744326863659, -1.359463134317163) +description = Blue Clay Farms CDP, NC +station = ('kilm', 0.00057451539990560315) +zone = ('ncz107', 0.00031457745001150014) + +[fips3706593300] +centroid = (0.62654007511676146, -1.3533757051388873) +description = "Township 1, Tarboro", NC +station = ('ketc', 0.00055804729847437661) +zone = ('ncz028', 0.00081104393159123428) + +[fips3706593344] +centroid = (0.62524558186384971, -1.3522811044452065) +description = "Township 2, Lower Conetoe", NC +station = ('ketc', 0.0020364173964542019) +zone = ('ncz028', 0.0022702660265145566) + +[fips3706593404] +centroid = (0.62675208026100127, -1.3510551677253131) +description = "Township 3, Upper Conetoe", NC +station = ('ketc', 0.0018728629726777045) +zone = ('ncz028', 0.0026486235333309707) + +[fips3706593424] +centroid = (0.62784451674640951, -1.3526809768301309) +description = "Township 4, Deep Creek", NC +station = ('ketc', 0.00091305878667252119) +zone = ('ncz028', 0.0016928657548707891) + +[fips3706593484] +centroid = (0.62844590484676921, -1.3537308272817905) +description = "Township 5, Lower Fishing Creek", NC +station = ('ketc', 0.0013878815824613184) +zone = ('ncz028', 0.0017162904922518266) + +[fips3706593544] +centroid = (0.62969364072902001, -1.3550298932973426) +description = "Township 6, Upper Fishing Creek", NC +station = ('ketc', 0.0029391221144758396) +zone = ('ncz028', 0.0029509427283593145) + +[fips3706593588] +centroid = (0.62821126278213102, -1.3559468892863402) +description = "Township 7, Swift Creek", NC +station = ('ketc', 0.0023946443500689578) +zone = ('ncz028', 0.0019288092702191546) + +[fips3706593620] +centroid = (0.62462340689209883, -1.3542349132763516) +description = "Township 8, Sparta", NC +station = ('ketc', 0.0025802254803525531) +zone = ('ncz028', 0.0021761643206584815) + +[fips3706593652] +centroid = (0.62362254783254267, -1.355445909977848) +description = "Township 9, Otter Creek", NC +station = ('ketc', 0.00387530864823707) +zone = ('ncz028', 0.0033033226758559329) + +[fips3706593680] +centroid = (0.62471857969621003, -1.355827980004402) +description = "Township 10, Lower Town Creek", NC +station = ('ketc', 0.0031240785877411506) +zone = ('ncz028', 0.0024103241283826619) + +[fips3706593708] +centroid = (0.62640428850095631, -1.3549094655789549) +description = "Township 11, Walnut Creek", NC +station = ('ketc', 0.0014558918296439191) +zone = ('ncz028', 0.00061604343988223256) + +[fips3706593724] +centroid = (0.62703096642217737, -1.3566965256533643) +description = "Township 12, Rocky Mount", NC +station = ('krwi', 0.0027105662948746756) +zone = ('ncz028', 0.0019346878655560091) + +[fips3706593728] +centroid = (0.62560861034826454, -1.35630988286417) +description = "Township 13, Cokey", NC +station = ('krwi', 0.0026777923107922817) +zone = ('ncz028', 0.002000575527320051) + +[fips3706593744] +centroid = (0.6260298281099409, -1.3576892514786061) +description = "Township 14, Upper Town Creek", NC +station = ('krwi', 0.0015923095379987186) +zone = ('ncz027', 0.0032665634263367473) + +[fips3706660] +centroid = (0.60091731524725311, -1.3778069461813514) +description = Boardman town, NC +station = ('klbt', 0.0034623882027045106) +zone = ('ncz087', 0.0043358813774543922) + +[fips37067] +centroid = (0.63061655338418199, -1.4007539417746273) +description = Forsyth County, NC +station = ('kint', 0.00033893509492214464) +zone = ('ncz021', 2.6141215425012057e-05) + +[fips3706740] +centroid = (0.60548739008043018, -1.3443980630791863) +description = Bogue town, NC +station = ('knjm', 0.0001589618442903737) +zone = ('ncz095', 0.0056865142411905972) + +[fips3706760] +centroid = (0.5941664166071241, -1.3626580991392789) +description = Boiling Spring Lakes city, NC +station = ('ksut', 0.0019907472345170457) +zone = ('ncz110', 0.0021730473494884226) + +[fips3706790012] +centroid = (0.62925224696119053, -1.3976312684901291) +description = Abbotts Creek township, NC +station = ('kgso', 0.0019844236536499761) +zone = ('ncz021', 0.0028457967518771853) + +[fips3706790216] +centroid = (0.63196052672138781, -1.3977931652315441) +description = Belews Creek township, NC +station = ('kint', 0.0024376379416216737) +zone = ('ncz021', 0.0027409176356369548) + +[fips3706790236] +centroid = (0.63230383298525505, -1.4013525722547688) +description = Bethania township, NC +station = ('kint', 0.0018501644556660805) +zone = ('ncz021', 0.0017802144252898188) + +[fips3706790376] +centroid = (0.62885799453645763, -1.3996132120288163) +description = Broadbay township, NC +station = ('kint', 0.0018806185892295709) +zone = ('ncz021', 0.0019595051264477926) + +[fips3706790684] +centroid = (0.62853474210569571, -1.4030431330748356) +description = Clemmonsville township, NC +station = ('kint', 0.0030404261806178854) +zone = ('ncz037', 0.0026406327388874325) + +[fips3706791696] +centroid = (0.63072938892032337, -1.3978668879391485) +description = Kernersville township, NC +station = ('kint', 0.001995735827293765) +zone = ('ncz021', 0.0023216767136698025) + +[fips3706791792] +centroid = (0.62968610090665134, -1.4040964916382916) +description = Lewisville township, NC +station = ('kint', 0.0031862587139125085) +zone = ('ncz037', 0.0029336796352664473) + +[fips3706792061] +centroid = (0.63133713001916036, -1.3997193804072152) +description = Middle Fork I township, NC +station = ('kint', 0.0008520103635642714) +zone = ('ncz021', 0.0011073982788463398) + +[fips3706792062] +centroid = (0.63085252189905161, -1.3991440500725878) +description = Middle Fork II township, NC +station = ('kint', 0.00098445420471817736) +zone = ('ncz021', 0.0013118468849238564) + +[fips3706792388] +centroid = (0.63225444016742349, -1.4031464914731389) +description = Old Richmond township, NC +station = ('kint', 0.0027812170486967076) +zone = ('ncz021', 0.0025572017938331102) + +[fips3706792396] +centroid = (0.6313691917175196, -1.4021659305927832) +description = Old Town township, NC +station = ('kint', 0.001645317091020958) +zone = ('ncz021', 0.0013899864605567169) + +[fips3706792808] +centroid = (0.63199122706293032, -1.3997102348819348) +description = Salem Chapel township, NC +station = ('kint', 0.0014372391206338543) +zone = ('ncz021', 0.0016240733939366595) + +[fips3706793036] +centroid = (0.62839909511623071, -1.4019685164010902) +description = South Fork township, NC +station = ('kint', 0.0026054901483921387) +zone = ('ncz021', 0.0024106018882847765) + +[fips3706793864] +centroid = (0.63082976280560565, -1.4033228395407602) +description = Vienna township, NC +station = ('kint', 0.0024192983105007725) +zone = ('ncz021', 0.0021018170502168734) + +[fips3706794068] +centroid = (0.63012079261015308, -1.4008113456537254) +description = Winston township, NC +station = ('kint', 0.00065038981505925373) +zone = ('ncz021', 0.00047747241125778493) + +[fips3706800] +centroid = (0.61526669677215717, -1.4252987164849338) +description = Boiling Springs town, NC +station = ('keho', 0.0009072999652754676) +zone = ('ncz068', 0.0021011568327917772) + +[fips3706820] +centroid = (0.59463238461082168, -1.3639288210077785) +description = Bolivia town, NC +station = ('ksut', 0.0026721273135404725) +zone = ('ncz109', 0.0016051097145100635) + +[fips3706860] +centroid = (0.59894781590613277, -1.3682617928620719) +description = Bolton town, NC +station = ('kcpc', 0.0046698089143580711) +zone = ('ncz109', 0.0042396518053558936) + +[fips37069] +centroid = (0.62985862670321091, -1.3662976691350479) +description = Franklin County, NC +station = ('klhz', 0.0013140286303203292) +zone = ('ncz026', 0.0001034784336120411) + +[fips3706980] +centroid = (0.61096166763918802, -1.3683735637473697) +description = Bonnetsville CDP, NC +station = ('kctz', 0.00074710335809889184) +zone = ('ncz089', 0.00050418916793771554) + +[fips3706990590] +centroid = (0.62994372895753814, -1.363790974903456) +description = Cedar Rock township, NC +station = ('klhz', 0.00295493999747001) +zone = ('ncz026', 0.0020705049761268945) + +[fips3706990866] +centroid = (0.6283590223566049, -1.3648421343520545) +description = Cypress Creek township, NC +station = ('klhz', 0.0018796707242495247) +zone = ('ncz026', 0.0018550757698123652) + +[fips3706990926] +centroid = (0.6268239005597207, -1.3659189152340725) +description = Dunn township, NC +station = ('klhz', 0.0021363602700551522) +zone = ('ncz026', 0.00295800373093668) + +[fips3706991170] +centroid = (0.63055583337950516, -1.3688308574646848) +description = Franklinton township, NC +station = ('klhz', 0.0022931212175684246) +zone = ('ncz026', 0.0021609665863773337) + +[fips3706991258] +centroid = (0.63135706167921823, -1.3627880738086748) +description = Gold Mine township, NC +station = ('klhz', 0.004379748384213838) +zone = ('ncz026', 0.0032847989713693294) + +[fips3706991414] +centroid = (0.62812893560131444, -1.3672771130046819) +description = Harris township, NC +station = ('klhz', 0.00061001124201887601) +zone = ('ncz026', 0.0017991503525169033) + +[fips3706991438] +centroid = (0.63211046795742654, -1.3672307396064565) +description = Hayesville township, NC +station = ('klhz', 0.0033858490583238165) +zone = ('ncz026', 0.0024554574908091341) + +[fips3706991906] +centroid = (0.63013468543099893, -1.3662570902299389) +description = Louisburg township, NC +station = ('klhz', 0.0015725809496023172) +zone = ('ncz026', 0.00037920925784647408) + +[fips3706992822] +centroid = (0.63200018060199303, -1.3650109949571849) +description = Sandy Creek township, NC +station = ('klhz', 0.0036915729460117314) +zone = ('ncz026', 0.0024833707109805985) + +[fips3706994150] +centroid = (0.62894761719354741, -1.3694780953644945) +description = Youngsville township, NC +station = ('klhz', 0.0019188755959028815) +zone = ('ncz026', 0.0026618660486380772) + +[fips3707080] +centroid = (0.63203309751168568, -1.4253918123472353) +description = Boone town, NC +station = ('ktnb', 0.00034819955713222625) +zone = ('ncz018', 0.0005088897051934349) + +[fips37071] +centroid = (0.61598505683898552, -1.416810394934322) +description = Gaston County, NC +station = ('kakh', 0.001674841295646336) +zone = ('ncz070', 4.5259681310462584e-05) + +[fips3707140] +centroid = (0.63239923268216902, -1.4086502476429628) +description = Boonville town, NC +station = ('kmwk', 0.0045162887440590707) +zone = ('ncz020', 0.0014241864042253563) + +[fips3707190644] +centroid = (0.61741158424981069, -1.4194026102992614) +description = Cherryville township, NC +station = ('kipj', 0.0030028745575558769) +zone = ('ncz069', 0.0024208681468903641) + +[fips3707190844] +centroid = (0.61513181772756309, -1.4188089365541956) +description = Crowders Mountain township, NC +station = ('kakh', 0.0021650794287275859) +zone = ('ncz070', 0.001815127439304997) + +[fips3707190872] +centroid = (0.61703783944378865, -1.4168398386388033) +description = Dallas township, NC +station = ('kipj', 0.0022720690695109463) +zone = ('ncz070', 0.0010327380293962355) + +[fips3707191216] +centroid = (0.6150164514640063, -1.4168574664642481) +description = Gastonia township, NC +station = ('kakh', 0.00078659723231637305) +zone = ('ncz070', 0.00098878359998906973) + +[fips3707192692] +centroid = (0.61698881314510012, -1.4143754686415722) +description = Riverbend township, NC +station = ('kclt', 0.0026547851035939431) +zone = ('ncz070', 0.0022531924334110885) + +[fips3707193048] +centroid = (0.61456509186614805, -1.4149275686438556) +description = South Point township, NC +station = ('kakh', 0.0011686121557061074) +zone = ('ncz070', 0.0021364221555725542) + +[fips3707220] +centroid = (0.61719130624491636, -1.4283074372225693) +description = Bostic town, NC +station = ('kfqd', 0.0018183384933787054) +zone = ('ncz508', 0.0009486705069848523) + +[fips37073] +centroid = (0.63603524220626373, -1.3387086387835352) +description = Gates County, NC +station = ('ksfq', 0.0044204200380543708) +zone = ('ncz014', 4.0587294761230225e-05) + +[fips3707391220] +centroid = (0.6357811397204659, -1.339047023218912) +description = Gatesville township, NC +station = ('ksfq', 0.004751187726779421) +zone = ('ncz014', 0.00040672650453073105) + +[fips3707391376] +centroid = (0.63568907360242322, -1.3414526977933983) +description = Hall township, NC +station = ('kfkn', 0.0048797760585766754) +zone = ('ncz013', 0.0020655823505074033) + +[fips3707391420] +centroid = (0.6373944697211319, -1.3387642798800889) +description = Haslett township, NC +station = ('ksfq', 0.0031815293266045943) +zone = ('ncz014', 0.0013207972636691829) + +[fips3707391520] +centroid = (0.63673182056402722, -1.3357178425773177) +description = Holly Grove township, NC +station = ('ksfq', 0.0036324823258592964) +zone = ('ncz014', 0.0024845717520298022) + +[fips3707391560] +centroid = (0.63530122653604504, -1.3366937434285704) +description = Hunters Mill township, NC +station = ('ksfq', 0.0049288389198135401) +zone = ('ncz014', 0.0017880954981406767) + +[fips3707392092] +centroid = (0.63440201545212493, -1.3378359916108304) +description = Mintonsville township, NC +station = ('kede', 0.0057256636686523338) +zone = ('ncz014', 0.0018107103803384737) + +[fips3707392660] +centroid = (0.63720312927523581, -1.3410200481251213) +description = Reynoldson township, NC +station = ('kfkn', 0.0034556797064583533) +zone = ('ncz014', 0.0021821629069711497) + +[fips3707400] +centroid = (0.60974555712298351, -1.3840453812465101) +description = Bowmore CDP, NC +station = ('kmeb', 0.0028281114293038888) +zone = ('ncz086', 0.0016834726556086393) + +[fips37075] +centroid = (0.61694092131042533, -1.4631253769897472) +description = Graham County, NC +station = ('krhp', 0.0027126146873391083) +zone = ('ncz058', 5.1863225563022573e-05) + +[fips3707590636] +centroid = (0.61574277023222379, -1.4634924197314416) +description = Cheoah township, NC +station = ('krhp', 0.0014835006788339168) +zone = ('ncz058', 0.0012622298813296056) + +[fips3707593108] +centroid = (0.61767689174940632, -1.4607434912529653) +description = Stecoah township, NC +station = ('krhp', 0.0041742368949005508) +zone = ('ncz058', 0.0020991140227153552) + +[fips3707594124] +centroid = (0.61780777399001341, -1.4652137856128058) +description = Yellow Creek township, NC +station = ('krhp', 0.0037496436148235029) +zone = ('ncz058', 0.0018614761162631093) + +[fips37077] +centroid = (0.63355249389200929, -1.3728346951286374) +description = Granville County, NC +station = ('khnz', 0.0021036991497581405) +zone = ('ncz008', 9.7000955862253267e-05) + +[fips3707720] +centroid = (0.61511666826965583, -1.443845876660272) +description = Brevard city, NC +station = ('kavl', 0.0043026918846182814) +zone = ('ncz064', 0.0012555445968441645) + +[fips3707765] +centroid = (0.61151025952967486, -1.3453333152121598) +description = Brices Creek CDP, NC +station = ('kewn', 0.00072798072647018645) +zone = ('ncz093', 0.0015722081918402209) + +[fips3707790356] +centroid = (0.63037697203776066, -1.3717828550016307) +description = Brassfield township, NC +station = ('khnz', 0.0043608276825063156) +zone = ('ncz008', 0.0033405218439043717) + +[fips3707790936] +centroid = (0.63055633952498824, -1.3741450534244499) +description = Dutchville township, NC +station = ('krdu', 0.0040118784505040863) +zone = ('ncz025', 0.0025891783675724726) + +[fips3707791108] +centroid = (0.632754511904705, -1.3714556232201742) +description = Fishing Creek township, NC +station = ('khnz', 0.0020010592588404993) +zone = ('ncz008', 0.0013608136632381842) + +[fips3707792348] +centroid = (0.63666652779671007, -1.3738136328527886) +description = Oak Hill township, NC +station = ('khnz', 0.0032958409132313711) +zone = ('ncz008', 0.003159556628240029) + +[fips3707792424] +centroid = (0.63455515064069501, -1.372048930446097) +description = Oxford township, NC +station = ('khnz', 0.001175306045567259) +zone = ('ncz008', 0.0010903640336122733) + +[fips3707792800] +centroid = (0.63517905348840542, -1.3708123123111815) +description = Salem township, NC +station = ('khnz', 0.00057610116970421279) +zone = ('ncz009', 0.0019392211334450708) + +[fips3707792844] +centroid = (0.63687087094553352, -1.3715543215893742) +description = Sassafras Fork township, NC +station = ('khnz', 0.0023699801067423882) +zone = ('ncz009', 0.0032989084149746212) + +[fips3707793212] +centroid = (0.6324003322395978, -1.3738854880580931) +description = Tally Ho township, NC +station = ('khnz', 0.0034667820407508951) +zone = ('ncz008', 0.0015266514766399274) + +[fips3707793884] +centroid = (0.63478832662876139, -1.3741195192574931) +description = Walnut Grove township, NC +station = ('khnz', 0.0028444615318728469) +zone = ('ncz008', 0.0016016156003833429) + +[fips3707860] +centroid = (0.61310542065282758, -1.3441127191997777) +description = Bridgeton town, NC +station = ('kewn', 0.0011752446900159198) +zone = ('ncz093', 0.0012126979695222641) + +[fips37079] +centroid = (0.61927655582202912, -1.355800857587826) +description = Greene County, NC +station = ('kiso', 0.0027534517434817073) +zone = ('ncz079', 0.00010337205211427225) + +[fips3707990440] +centroid = (0.61988658330218627, -1.3576011647112582) +description = Bull Head township, NC +station = ('kgww', 0.0027428297239917489) +zone = ('ncz079', 0.0016474332079906787) + +[fips3707990520] +centroid = (0.62081712304617953, -1.3556359239735125) +description = Carrs township, NC +station = ('kiso', 0.0042088854617529405) +zone = ('ncz079', 0.001484325328349683) + +[fips3707991532] +centroid = (0.61787009969760209, -1.3548279936094718) +description = Hookerton township, NC +station = ('kiso', 0.0011943896990178615) +zone = ('ncz079', 0.0016250057965796164) + +[fips3707991648] +centroid = (0.61776068500679449, -1.3566977648371334) +description = Jason township, NC +station = ('kiso', 0.0019762621742542047) +zone = ('ncz079', 0.0017724203542240269) + +[fips3707992392] +centroid = (0.61971754816413049, -1.3546577716475248) +description = Olds township, NC +station = ('kiso', 0.0030345539160622579) +zone = ('ncz079', 0.00092763692629194063) + +[fips3707992416] +centroid = (0.61897567851227786, -1.3533035532276099) +description = Ormonds township, NC +station = ('kiso', 0.0025476374541775061) +zone = ('ncz079', 0.0019801079768594024) + +[fips3707992928] +centroid = (0.61860404555465076, -1.3574113601551039) +description = Shine township, NC +station = ('kiso', 0.00294928256119323) +zone = ('ncz079', 0.0015768675526235303) + +[fips3707993020] +centroid = (0.61907474340062107, -1.3562668954046935) +description = Snow Hill township, NC +station = ('kiso', 0.0027244033550921838) +zone = ('ncz079', 0.00053283301665297438) + +[fips3707993076] +centroid = (0.62092184280129914, -1.3566503442413567) +description = Speights Bridge township, NC +station = ('kgww', 0.00389696665220384) +zone = ('ncz079', 0.0017683554206566648) + +[fips3708040] +centroid = (0.60624894704624543, -1.3425494277887664) +description = Broad Creek CDP, NC +station = ('knjm', 0.0017076355725283148) +zone = ('ncz095', 0.0039870938447287545) + +[fips3708080] +centroid = (0.6188632094952794, -1.3797666193187834) +description = Broadway town, NC +station = ('ktta', 0.0022672944410823039) +zone = ('ncz076', 0.0016857850669856416) + +[fips37081] +centroid = (0.62969847529104794, -1.3925749100207614) +description = Guilford County, NC +station = ('kgso', 0.0023046117593372726) +zone = ('ncz022', 7.5176912030891066e-06) + +[fips3708110] +centroid = (0.61602409985435269, -1.3618695070233504) +description = Brogden CDP, NC +station = ('kgsb', 0.0011098365150730889) +zone = ('ncz078', 0.0012442618699978259) + +[fips3708140] +centroid = (0.62313729394061068, -1.4197291963088947) +description = Brookford town, NC +station = ('khky', 0.00098583329742257982) +zone = ('ncz056', 0.0019752976046523074) + +[fips3708190396] +centroid = (0.63186137456658187, -1.3947359767005809) +description = Bruce township, NC +station = ('kgso', 0.0018736527251492258) +zone = ('ncz022', 0.0027716692703184192) + +[fips3708190600] +centroid = (0.63194762873821553, -1.3930754180903557) +description = Center Grove township, NC +station = ('kgso', 0.0026539581820798253) +zone = ('ncz022', 0.0022785942620175406) + +[fips3708190672] +centroid = (0.62766288033115447, -1.3904378939780346) +description = Clay township, NC +station = ('kbuy', 0.0030775461508432285) +zone = ('ncz022', 0.0026779281883662701) + +[fips3708190896] +centroid = (0.62979869209669748, -1.3962844502662426) +description = Deep River township, NC +station = ('kgso', 0.00076932407933060691) +zone = ('ncz022', 0.002994714939216742) + +[fips3708191096] +centroid = (0.62769954969873876, -1.391910655160745) +description = Fentress township, NC +station = ('kgso', 0.0036756217403436935) +zone = ('ncz022', 0.0020767394203458434) + +[fips3708191184] +centroid = (0.62930101146049122, -1.395043800420755) +description = Friendship township, NC +station = ('kgso', 0.00081274936636723742) +zone = ('ncz022', 0.0020313676288598458) + +[fips3708191228] +centroid = (0.63013512176331199, -1.3919093112572209) +description = Gilmer township, NC +station = ('kgso', 0.0028137857038357051) +zone = ('ncz022', 0.00069280552075578323) + +[fips3708191304] +centroid = (0.62760250939232798, -1.3889126681980093) +description = Greene township, NC +station = ('kbuy', 0.0020476711732266314) +zone = ('ncz023', 0.0029349506354422973) + +[fips3708191484] +centroid = (0.62783966473108899, -1.3961677924590394) +description = High Point township, NC +station = ('kgso', 0.0023112512883682293) +zone = ('ncz022', 0.0034485988159502884) + +[fips3708191640] +centroid = (0.62785184712926789, -1.3949444562797315) +description = Jamestown township, NC +station = ('kgso', 0.0022412576114146697) +zone = ('ncz022', 0.0026619553174651515) + +[fips3708191656] +centroid = (0.62962468277027372, -1.3906106990272744) +description = Jefferson township, NC +station = ('kbuy', 0.0030429845722554985) +zone = ('ncz022', 0.0015942405600403923) + +[fips3708191952] +centroid = (0.631710490852747, -1.3902830658200902) +description = Madison township, NC +station = ('kbuy', 0.0038891666254296047) +zone = ('ncz022', 0.0027327838134506982) + +[fips3708192104] +centroid = (0.63209336373075697, -1.3922045686067808) +description = Monroe township, NC +station = ('kgso', 0.0032766689404305116) +zone = ('ncz022', 0.0024082766641549519) + +[fips3708192124] +centroid = (0.62987182139235598, -1.393908341569285) +description = Morehead township, NC +station = ('kgso', 0.0012131404669079215) +zone = ('ncz022', 0.0010858868995649354) + +[fips3708192360] +centroid = (0.63180349944858583, -1.3961699392140194) +description = Oak Ridge township, NC +station = ('kgso', 0.0018499250614700861) +zone = ('ncz022', 0.0035788548451968793) + +[fips3708192716] +centroid = (0.62953221522650293, -1.3889377485793604) +description = Rock Creek township, NC +station = ('kbuy', 0.001723098504653434) +zone = ('ncz023', 0.0025893040348811667) + +[fips3708193176] +centroid = (0.62754121342899793, -1.3934322506559262) +description = Sumner township, NC +station = ('kgso', 0.0029786664244516648) +zone = ('ncz022', 0.0022701046107781852) + +[fips3708193908] +centroid = (0.63159866760757177, -1.38888053668648) +description = Washington township, NC +station = ('kbuy', 0.0031146589742698412) +zone = ('ncz023', 0.0035459366177746066) + +[fips37083] +centroid = (0.63270695168258817, -1.3551581400907791) +description = Halifax County, NC +station = ('kixa', 0.0013728564464968707) +zone = ('ncz011', 0.00014512673055730267) + +[fips3708390368] +centroid = (0.6324319226990589, -1.3590834030318069) +description = Brinkleyville township, NC +station = ('kixa', 0.0036273549862335009) +zone = ('ncz011', 0.0030898569537664263) + +[fips3708390468] +centroid = (0.63451717227617166, -1.3587502022243085) +description = Butterwood township, NC +station = ('kixa', 0.0029938033065007763) +zone = ('ncz011', 0.0032740670758954183) + +[fips3708390752] +centroid = (0.63231374645540639, -1.3522742627545388) +description = Conoconnara township, NC +station = ('kixa', 0.0028645460407067127) +zone = ('ncz011', 0.0024760446119601481) + +[fips3708391036] +centroid = (0.63152232690608945, -1.3551538116742341) +description = Enfield township, NC +station = ('kixa', 0.0025566080266537896) +zone = ('ncz011', 0.001294520549765997) + +[fips3708391088] +centroid = (0.63403261651594045, -1.356587180775727) +description = Faucett township, NC +station = ('kixa', 0.0012202120338640936) +zone = ('ncz011', 0.0016111734068481175) + +[fips3708391372] +centroid = (0.6335222647893648, -1.3537520679387873) +description = Halifax township, NC +station = ('kixa', 0.0012012364199676473) +zone = ('ncz011', 0.0014224121702442044) + +[fips3708391876] +centroid = (0.63609941796285951, -1.3585310761367209) +description = Littleton township, NC +station = ('kixa', 0.0034398336711165137) +zone = ('ncz010', 0.003871601385422121) + +[fips3708392432] +centroid = (0.63014051483070055, -1.3501407199170232) +description = Palmyra township, NC +station = ('ketc', 0.003988926402053985) +zone = ('ncz028', 0.0047566965938409048) + +[fips3708392704] +centroid = (0.63613373113595384, -1.3561977803663146) +description = Roanoke Rapids township, NC +station = ('kixa', 0.0022459924673919334) +zone = ('ncz011', 0.0034020111379696075) + +[fips3708392756] +centroid = (0.62967500061260862, -1.3522889409735479) +description = Roseneath township, NC +station = ('ketc', 0.0027118432238512537) +zone = ('ncz028', 0.0033148792817175011) + +[fips3708392864] +centroid = (0.6312201755059843, -1.3512078665815703) +description = Scotland Neck township, NC +station = ('kixa', 0.0042293306954969013) +zone = ('ncz011', 0.003652146012287312) + +[fips3708393932] +centroid = (0.63534098513640547, -1.3549474090368931) +description = Weldon township, NC +station = ('kixa', 0.0012669514272725152) +zone = ('ncz011', 0.0025425028878495633) + +[fips3708420] +centroid = (0.59837639510902974, -1.3736251547468656) +description = Brunswick town, NC +station = ('kcpc', 0.00026790923313405252) +zone = ('ncz099', 0.00076617691728701808) + +[fips3708480] +centroid = (0.61831098731994827, -1.4564295260342259) +description = Bryson City town, NC +station = ('k1a5', 0.003690019466615057) +zone = ('ncz051', 0.0012317246381548207) + +[fips37085] +centroid = (0.61729913268610459, -1.376569280848885) +description = Harnett County, NC +station = ('khrj', 0.001971609022365792) +zone = ('ncz077', 3.2895932511895917e-05) + +[fips3708590060] +centroid = (0.61562412274967315, -1.3777519334033286) +description = Anderson Creek township, NC +station = ('kpob', 0.0022841734495071919) +zone = ('ncz077', 0.0019506862171407866) + +[fips3708590104] +centroid = (0.61645474239398979, -1.3717900806647336) +description = Averasboro township, NC +station = ('khrj', 0.0021854489657846215) +zone = ('ncz077', 0.0039568463124493259) + +[fips3708590152] +centroid = (0.6167646256026813, -1.3795333211576692) +description = Barbecue township, NC +station = ('kpob', 0.00299273487469671) +zone = ('ncz077', 0.0025082127820913371) + +[fips3708590292] +centroid = (0.61947915364160067, -1.3744702780772664) +description = Black River township, NC +station = ('khrj', 0.0020216966120772564) +zone = ('ncz077', 0.0027497929560187768) + +[fips3708590416] +centroid = (0.62004170816610349, -1.3775899493954513) +description = Buckhorn township, NC +station = ('ktta', 0.0026261260301660254) +zone = ('ncz077', 0.0028744681721213391) + +[fips3708590920] +centroid = (0.6160933196124867, -1.3730864414199453) +description = Duke township, NC +station = ('khrj', 0.0016346879864237677) +zone = ('ncz077', 0.0030567552660244572) + +[fips3708591348] +centroid = (0.61791999866091651, -1.372846196848408) +description = Grove township, NC +station = ('khrj', 0.0011610326875878237) +zone = ('ncz077', 0.003065721548172271) + +[fips3708591444] +centroid = (0.61951418239968814, -1.3759504918158827) +description = Hectors Creek township, NC +station = ('khrj', 0.0025083374682807577) +zone = ('ncz077', 0.0022635331800030891) + +[fips3708591668] +centroid = (0.61541983196072725, -1.3808374660813443) +description = Johnsonville township, NC +station = ('kpob', 0.0020256456142945575) +zone = ('ncz076', 0.0038181420946130644) + +[fips3708591812] +centroid = (0.61734222486533641, -1.3751307455728059) +description = Lillington township, NC +station = ('khrj', 0.00080169944732932951) +zone = ('ncz077', 0.0011409235499180504) + +[fips3708592220] +centroid = (0.61826351436429405, -1.3745909850483344) +description = Neills Creek township, NC +station = ('khrj', 0.00086458455919485064) +zone = ('ncz077', 0.001850277503919288) + +[fips3708593124] +centroid = (0.61606281125716189, -1.3750607753230937) +description = Stewarts Creek township, NC +station = ('khrj', 0.0015900894418157275) +zone = ('ncz077', 0.0017221801648730716) + +[fips3708593844] +centroid = (0.61809200085870064, -1.3779984088002952) +description = Upper Little River township, NC +station = ('ktta', 0.0036136669724291886) +zone = ('ncz077', 0.0014359104554996108) + +[fips37087] +centroid = (0.62058841510099816, -1.4481486717717988) +description = Haywood County, NC +station = ('kavl', 0.006607876357580836) +zone = ('ncz052', 0.00013450135781972012) + +[fips3708760] +centroid = (0.61803327052937096, -1.3741528201396211) +description = Buies Creek CDP, NC +station = ('khrj', 0.00056005912612400557) +zone = ('ncz077', 0.0020711544762056239) + +[fips3708790196] +centroid = (0.62047119878843426, -1.4456539854054604) +description = Beaverdam township, NC +station = ('kavl', 0.0046830119094655618) +zone = ('ncz052', 0.0021652940953573582) + +[fips3708790552] +centroid = (0.62226761382763451, -1.451062725850806) +description = Cataloochee township, NC +station = ('k1a5', 0.0085779701382938597) +zone = ('ncz052', 0.0028067944175484694) + +[fips3708790568] +centroid = (0.61715727232450246, -1.4468848788604296) +description = Cecil township, NC +station = ('kavl', 0.0053747440163496394) +zone = ('ncz064', 0.0031225000195779081) + +[fips3708790704] +centroid = (0.62016674355371626, -1.4471072861670111) +description = Clyde township, NC +station = ('kavl', 0.0056708300364617303) +zone = ('ncz052', 0.0010607847596123721) + +[fips3708790800] +centroid = (0.62156311167506695, -1.447077807555945) +description = Crabtree township, NC +station = ('kavl', 0.0062189813369726175) +zone = ('ncz052', 0.0014116308893096809) + +[fips3708790956] +centroid = (0.61786364197936972, -1.445539736152625) +description = East Fork township, NC +station = ('kavl', 0.0041632228363955711) +zone = ('ncz064', 0.0034876133263207439) + +[fips3708791104] +centroid = (0.6231552184720287, -1.4483739588716462) +description = Fines Creek township, NC +station = ('kavl', 0.0079743463593149131) +zone = ('ncz052', 0.0025846853302329575) + +[fips3708791592] +centroid = (0.62107553649522973, -1.4481570668055008) +description = Iron Duff township, NC +station = ('kavl', 0.0067880466685839537) +zone = ('ncz052', 0.00052014411371576396) + +[fips3708791608] +centroid = (0.61992365409549854, -1.4502346543871973) +description = Ivy Hill township, NC +station = ('k1a5', 0.0070109879852513334) +zone = ('ncz052', 0.0016927127186839197) + +[fips3708791680] +centroid = (0.62106180075401662, -1.4492760672021245) +description = Jonathan Creek township, NC +station = ('k1a5', 0.0083824272173144351) +zone = ('ncz052', 0.0009246754630696445) + +[fips3708792488] +centroid = (0.61908050298715267, -1.4464756515107144) +description = Pigeon township, NC +station = ('kavl', 0.0049286987152650967) +zone = ('ncz052', 0.0021112524542235738) + +[fips3708793920] +centroid = (0.61889787173422395, -1.4487374585949588) +description = Waynesville township, NC +station = ('k1a5', 0.0072226942776666692) +zone = ('ncz052', 0.0017085113364139638) + +[fips3708793972] +centroid = (0.6223288574310869, -1.4491825001009251) +description = White Oak township, NC +station = ('kavl', 0.0080852197327961478) +zone = ('ncz052', 0.0018947865984088206) + +[fips3708860] +centroid = (0.62760397546889968, -1.365753178768303) +description = Bunn town, NC +station = ('klhz', 0.001575975309676662) +zone = ('ncz026', 0.002210082142109607) + +[fips3708880] +centroid = (0.61621458508891536, -1.3746050524021054) +description = Bunnlevel CDP, NC +station = ('khrj', 0.0013098036003052085) +zone = ('ncz077', 0.0019083676244708702) + +[fips37089] +centroid = (0.6167369446807448, -1.4395411791398607) +description = Henderson County, NC +station = ('kavl', 0.0018559759777028674) +zone = ('ncz065', 5.4431475935022539e-06) + +[fips3708960] +centroid = (0.60306553630377779, -1.3598956618123923) +description = Burgaw town, NC +station = ('kilm', 0.00500487353331936) +zone = ('ncz105', 0.0003603779625557442) + +[fips3708990304] +centroid = (0.61646072887332404, -1.4374679199747091) +description = Blue Ridge township, NC +station = ('kavl', 0.0031458996172603225) +zone = ('ncz509', 0.0011432314781197809) + +[fips3708990680] +centroid = (0.61780698859185001, -1.438456683902549) +description = Clear Creek township, NC +station = ('kavl', 0.0017609109321058412) +zone = ('ncz065', 0.001393623481457309) + +[fips3708990796] +centroid = (0.61518594038766738, -1.4409701849182235) +description = Crab Creek township, NC +station = ('kavl', 0.0032671128829751834) +zone = ('ncz065', 0.0019352322648643748) + +[fips3708990972] +centroid = (0.61818216456785868, -1.4367760016460485) +description = Edneyville township, NC +station = ('kavl', 0.0030269770076402453) +zone = ('ncz507', 0.0019902770356185111) + +[fips3708991316] +centroid = (0.61448999034843477, -1.439212027496227) +description = Green River township, NC +station = ('kavl', 0.004071633044159112) +zone = ('scz003', 0.0019435194198703847) + +[fips3708991456] +centroid = (0.61632174830498787, -1.439572437986764) +description = Hendersonville township, NC +station = ('kavl', 0.0022323562556831322) +zone = ('ncz065', 0.00041185974192895663) + +[fips3708991536] +centroid = (0.61826815694010451, -1.4393118777827338) +description = Hoopers Creek township, NC +station = ('kavl', 0.00096393419777234023) +zone = ('ncz065', 0.0015469263301385945) + +[fips3708992076] +centroid = (0.61764446353190428, -1.4421182275936002) +description = Mills River township, NC +station = ('kavl', 0.0015493968365789239) +zone = ('ncz065', 0.0022872573032900632) + +[fips3709060] +centroid = (0.62975949200169767, -1.3868342254049792) +description = Burlington city, NC +station = ('kbuy', 0.00086471281972902371) +zone = ('ncz023', 0.0010841972545336909) + +[fips37091] +centroid = (0.63466309925493092, -1.3435826627059471) +description = Hertford County, NC +station = ('kasj', 0.0028992930941890318) +zone = ('ncz013', 8.4601745250305585e-05) + +[fips3709140] +centroid = (0.62685875478488318, -1.4363610321630944) +description = Burnsville town, NC +station = ('k0a9', 0.0081186315179251345) +zone = ('ncz049', 0.00033699178054623065) + +[fips3709190016] +centroid = (0.63319670852399024, -1.3431519328998474) +description = Ahoskie township, NC +station = ('kasj', 0.003025487360223413) +zone = ('ncz013', 0.0014380586157380201) + +[fips3709191412] +centroid = (0.63340698579227062, -1.3404697283586751) +description = Harrellsville township, NC +station = ('kede', 0.0056794523927355973) +zone = ('ncz014', 0.0030255935321754205) + +[fips3709191968] +centroid = (0.63704037732248731, -1.3442264972137155) +description = Maneys Neck township, NC +station = ('kfkn', 0.0038698046697874405) +zone = ('ncz013', 0.0025039991417041222) + +[fips3709192188] +centroid = (0.63557281722094794, -1.3451138575120141) +description = Murfreesboro township, NC +station = ('kasj', 0.0025072713685944836) +zone = ('ncz013', 0.0015562640527786828) + +[fips3709192784] +centroid = (0.6336610359181909, -1.3458381342450068) +description = St. Johns township, NC +station = ('kasj', 0.00085703801357621715) +zone = ('ncz013', 0.0020107584600588218) + +[fips3709194076] +centroid = (0.63476802844956082, -1.3428958930985799) +description = Winton township, NC +station = ('kasj', 0.0034507943436265401) +zone = ('ncz013', 0.00061196857494793459) + +[fips37093] +centroid = (0.61116601078801147, -1.3830331775468159) +description = Hoke County, NC +station = ('khff', 0.0036986636596045425) +zone = ('ncz086', 6.9586473166869788e-05) + +[fips3709360] +centroid = (0.63058276380986344, -1.3743611251858465) +description = Butner town, NC +station = ('krdu', 0.0040211139085569907) +zone = ('ncz025', 0.0024723027340203475) + +[fips3709380] +centroid = (0.60318718575264185, -1.3760850217946263) +description = Butters CDP, NC +station = ('keyf', 0.0038080769751597395) +zone = ('ncz087', 0.0039829283878563054) + +[fips3709390036] +centroid = (0.60855840161906949, -1.3839375897119068) +description = Allendale township, NC +station = ('kmeb', 0.0018069806430349173) +zone = ('ncz085', 0.002714595802543652) + +[fips3709390068] +centroid = (0.60891137700699272, -1.3824585977037667) +description = Antioch township, NC +station = ('kmeb', 0.0029050301013542243) +zone = ('ncz086', 0.0022929488902462265) + +[fips3709390312] +centroid = (0.60972665520718439, -1.3840511059264564) +description = Blue Springs township, NC +station = ('kmeb', 0.0028087366369788026) +zone = ('ncz086', 0.0017019731014810983) + +[fips3709391148] +centroid = (0.61294760798186232, -1.3828431984577363) +description = Fort Bragg Military Reservation township, NC +station = ('kpob', 0.0029407375008313869) +zone = ('ncz086', 0.0017807608127476584) + +[fips3709391948] +centroid = (0.6107964024123167, -1.3807525034533572) +description = McLauchlin township, NC +station = ('kpob', 0.0031790813374911794) +zone = ('ncz086', 0.0018367052101474378) + +[fips3709392600] +centroid = (0.61154909310553174, -1.3852909180139032) +description = Quewhiffle township, NC +station = ('khff', 0.0018416976607112951) +zone = ('ncz086', 0.0019556167064366933) + +[fips3709392604] +centroid = (0.61089283185348942, -1.3827455821926724) +description = Raeford township, NC +station = ('khff', 0.0039628019351934151) +zone = ('ncz086', 0.00032216761910864585) + +[fips3709393136] +centroid = (0.609737755501227, -1.3811477856223491) +description = Stonewall township, NC +station = ('kfay', 0.0036809899432609238) +zone = ('ncz086', 0.0020554268315775537) + +[fips3709400] +centroid = (0.61543749469275744, -1.3183816267435982) +description = Buxton CDP, NC +station = ('khse', 0.0012314993084642501) +zone = ('ncz104', 0.0058408147533681115) + +[fips37095] +centroid = (0.61798892171307784, -1.3291325756832031) +description = Hyde County, NC +station = ('k2dp', 0.0057739057225189459) +zone = ('ncz081', 0.0026639857785151011) + +[fips3709530] +centroid = (0.62571076446938378, -1.4230747132322876) +description = Cajah's Mountain town, NC +station = ('khky', 0.0027862242809725073) +zone = ('ncz502', 0.0011582905080453471) + +[fips3709540] +centroid = (0.59158140945199533, -1.3710696611093882) +description = Calabash town, NC +station = ('kcre', 0.0026951014428572904) +zone = ('scz054', 0.0051788342213331942) + +[fips3709590856] +centroid = (0.62073905446873778, -1.3345319262571727) +description = Currituck township, NC +station = ('kede', 0.0081980236015051968) +zone = ('ncz081', 0.0030202513462759509) + +[fips3709591048] +centroid = (0.62111601068058353, -1.3305715996514722) +description = Fairfield township, NC +station = ('k2dp', 0.0049655941183870938) +zone = ('ncz081', 0.00090274144843825439) + +[fips3709591724] +centroid = (0.61714571824485431, -1.3284626135965325) +description = Lake Landing township, NC +station = ('k2dp', 0.0061670224214903993) +zone = ('ncz081', 0.0036685544100611782) + +[fips3709591728] +centroid = (0.62040124599201441, -1.3291946221381112) +description = Lake Mattamuskeet UT, NC +station = ('k2dp', 0.0042110136929668389) +zone = ('ncz081', 0.0013715256755640836) + +[fips3709592372] +centroid = (0.61313069302039647, -1.3249685866070875) +description = Ocracoke township, NC +station = ('khse', 0.0046249030456933108) +zone = ('ncz104', 2.999389439404539e-05) + +[fips3709593184] +centroid = (0.61699251324311433, -1.3313445012574256) +description = Swan Quarter township, NC +station = ('knbt', 0.00641261415658783) +zone = ('ncz081', 0.0032768088458921818) + +[fips37097] +centroid = (0.6249388053412267, -1.4115270913023175) +description = Iredell County, NC +station = ('ksvh', 0.0013659753491960238) +zone = ('ncz036', 1.9897441923891313e-05) + +[fips3709760] +centroid = (0.61356442479280959, -1.3631819946208501) +description = Calypso town, NC +station = ('kdpl', 0.0032198672487600694) +zone = ('ncz078', 0.00392164568913894) + +[fips3709780] +centroid = (0.63399421927239652, -1.3294031366238472) +description = Camden CDP, NC +station = ('kecg', 0.001312845076519722) +zone = ('ncz016', 0.0012719858120170526) + +[fips3709790160] +centroid = (0.62254088002861918, -1.4106676911786356) +description = Barringer township, NC +station = ('ksvh', 0.0025081275070766669) +zone = ('ncz036', 0.002507790876755951) + +[fips3709790240] +centroid = (0.62579625069614642, -1.4115204415978673) +description = Bethany township, NC +station = ('ksvh', 0.0019601840310038018) +zone = ('ncz036', 0.00084275256447482452) + +[fips3709790616] +centroid = (0.624056384324711, -1.4101975169314407) +description = Chambersburg township, NC +station = ('ksvh', 0.0022480725570545403) +zone = ('ncz036', 0.0013927016888768936) + +[fips3709790708] +centroid = (0.62080078676438089, -1.4101533251947802) +description = Coddle Creek township, NC +station = ('kjqf', 0.0034365160558152441) +zone = ('ncz036', 0.0042965760753002442) + +[fips3709790744] +centroid = (0.62559848743860302, -1.4136065812928986) +description = Concord township, NC +station = ('ksvh', 0.0014730144546094899) +zone = ('ncz036', 0.001817694353734089) + +[fips3709790770] +centroid = (0.62563847293176622, -1.4097316536474984) +description = Cool Springs township, NC +station = ('ksvh', 0.0029771488922748892) +zone = ('ncz036', 0.0015967191324240781) + +[fips3709790884] +centroid = (0.62073853086996222, -1.4119422702247817) +description = Davidson township, NC +station = ('ksvh', 0.0035801851967012356) +zone = ('ncz036', 0.0042295622642360047) + +[fips3709790944] +centroid = (0.62846093213162879, -1.4094431681754362) +description = Eagle Mills township, NC +station = ('ksvh', 0.0051078164111947729) +zone = ('ncz020', 0.0029454074763637333) + +[fips3709791076] +centroid = (0.62280255724337064, -1.4125251578350704) +description = Fallstown township, NC +station = ('ksvh', 0.001462617351220291) +zone = ('ncz036', 0.0023032055207854564) + +[fips3709792244] +centroid = (0.62859474652537917, -1.4130913251911248) +description = New Hope township, NC +station = ('kukf', 0.0038871754496822165) +zone = ('ncz035', 0.0034334569571534859) + +[fips3709792400] +centroid = (0.62698871200098649, -1.4113261515455353) +description = Olin township, NC +station = ('ksvh', 0.0030676354683079332) +zone = ('ncz036', 0.0020406577963239451) + +[fips3709792912] +centroid = (0.6269743828478278, -1.4131269124545729) +description = Sharpesburg township, NC +station = ('ksvh', 0.0027558358206554411) +zone = ('ncz036', 0.0024082258801596526) + +[fips3709792924] +centroid = (0.6242906075103285, -1.4140235229979075) +description = Shiloh township, NC +station = ('ksvh', 0.00086536377443163022) +zone = ('ncz036', 0.002143532419621349) + +[fips3709793104] +centroid = (0.62436371935269463, -1.4118669243609732) +description = Statesville township, NC +station = ('ksvh', 0.00089847872020131674) +zone = ('ncz036', 0.00065683100541341177) + +[fips3709793788] +centroid = (0.62706650132574793, -1.4096367600960675) +description = Turnersburg township, NC +station = ('ksvh', 0.0039179184065361479) +zone = ('ncz036', 0.0026020143268709649) + +[fips3709793824] +centroid = (0.62846997293715412, -1.4111749711257275) +description = Union Grove township, NC +station = ('ksvh', 0.0044876331456171438) +zone = ('ncz036', 0.0035269290452948818) + +[fips3709800] +centroid = (0.61655352802965269, -1.3832456015700763) +description = Cameron town, NC +station = ('ksop', 0.002632522370423935) +zone = ('ncz076', 0.0028546894849248643) + +[fips37099] +centroid = (0.61586496073315578, -1.4509033947433914) +description = Jackson County, NC +station = ('k1a5', 0.0042547816677085647) +zone = ('ncz059', 0.0015076083740597117) + +[fips3709990156] +centroid = (0.61774345860707736, -1.453591481044143) +description = Barkers Creek township, NC +station = ('k1a5', 0.003622810121532673) +zone = ('ncz059', 0.0016099093582862287) + +[fips3709990484] +centroid = (0.61522158001099325, -1.4486163676514556) +description = Canada township, NC +station = ('k1a5', 0.0059733805461159159) +zone = ('ncz063', 0.0019185750887525817) + +[fips3709990500] +centroid = (0.61656096313226616, -1.4495637847293157) +description = Caney Fork township, NC +station = ('k1a5', 0.0055123753174275581) +zone = ('ncz059', 0.0018813214231986986) + +[fips3709990540] +centroid = (0.61172640110424181, -1.4502533817700711) +description = Cashiers township, NC +station = ('k1a5', 0.0054607294777928202) +zone = ('ncz063', 0.0019652717120721857) + +[fips3709990848] +centroid = (0.61606766327248241, -1.4517347648792864) +description = Cullowhee township, NC +station = ('k1a5', 0.0036826541736067675) +zone = ('ncz059', 0.0011471026834493797) + +[fips3709990900] +centroid = (0.61734468577958168, -1.4531129990297089) +description = Dillsboro township, NC +station = ('k1a5', 0.0035265246183787164) +zone = ('ncz059', 0.0011380918565951029) + +[fips3709991320] +centroid = (0.61658269248145348, -1.4537024316246925) +description = Greens Creek township, NC +station = ('k1a5', 0.0026369382080039749) +zone = ('ncz059', 0.0017312430672811253) + +[fips3709991384] +centroid = (0.61381997590188664, -1.4507172902852514) +description = Hamburg township, NC +station = ('k1a5', 0.0043117150655319252) +zone = ('ncz063', 0.00058819463564298161) + +[fips3709992148] +centroid = (0.61446943036984625, -1.4518649315349001) +description = Mountain township, NC +station = ('k1a5', 0.0032978474815277686) +zone = ('ncz063', 0.0017026006446821975) + +[fips3709992596] +centroid = (0.61886361092100728, -1.4530783018841791) +description = Qualla township, NC +station = ('k1a5', 0.0048024018944108626) +zone = ('ncz059', 0.0019830865776530233) + +[fips3709992684] +centroid = (0.61537785679221668, -1.4506650874873241) +description = River township, NC +station = ('k1a5', 0.0043341132532200019) +zone = ('ncz063', 0.0017762182427701052) + +[fips3709992856] +centroid = (0.61566346247101311, -1.4533447263944959) +description = Savannah township, NC +station = ('k1a5', 0.0023180163741594569) +zone = ('ncz059', 0.0020371391956926529) + +[fips3709992868] +centroid = (0.6180195871480354, -1.4505311509205261) +description = Scott Creek township, NC +station = ('k1a5', 0.0055259950126650163) +zone = ('ncz059', 0.0012638908130551295) + +[fips3709993204] +centroid = (0.61766806038339117, -1.4520347520711192) +description = Sylva township, NC +station = ('k1a5', 0.0043652482542760381) +zone = ('ncz059', 0.00051833840625068318) + +[fips3709993924] +centroid = (0.61666943534527752, -1.4525342129431624) +description = Webster township, NC +station = ('k1a5', 0.0034090031714399224) +zone = ('ncz059', 0.00085523361499763295) + +[fips37101] +centroid = (0.61982584584421685, -1.3677668349394991) +description = Johnston County, NC +station = ('kjnx', 0.000579653745514331) +zone = ('ncz042', 7.6525980747988101e-05) + +[fips3710120] +centroid = (0.61600758903962882, -1.3916792419552229) +description = Candor town, NC +station = ('khff', 0.0056804267994448989) +zone = ('ncz074', 0.0024824954406261076) + +[fips3710190144] +centroid = (0.617429892753664, -1.3705220291499898) +description = Banner township, NC +station = ('kjnx', 0.0034552697889966726) +zone = ('ncz042', 0.0033518973760155745) + +[fips3710190232] +centroid = (0.61671233553829163, -1.3664236470004567) +description = Bentonville township, NC +station = ('kjnx', 0.0038632794482769801) +zone = ('ncz042', 0.0033622753310702568) + +[fips3710190256] +centroid = (0.62122268520446544, -1.3639593293631034) +description = Beulah township, NC +station = ('kgww', 0.0034954285120178583) +zone = ('ncz042', 0.0033481010428410194) + +[fips3710190336] +centroid = (0.61860814707839284, -1.3647677658726269) +description = Boon Hill township, NC +station = ('kjnx', 0.0032471765485203) +zone = ('ncz042', 0.0027427008195893849) + +[fips3710190676] +centroid = (0.62180951725886346, -1.3693395860350563) +description = Clayton township, NC +station = ('kjnx', 0.0017810229977742729) +zone = ('ncz042', 0.0023116485705723662) + +[fips3710190688] +centroid = (0.62100514736649681, -1.3707402476663668) +description = Cleveland township, NC +station = ('kjnx', 0.0022063371365469236) +zone = ('ncz042', 0.0026803324955833856) + +[fips3710190992] +centroid = (0.61896401971287451, -1.3704237322065176) +description = Elevation township, NC +station = ('kjnx', 0.0022733158526853053) +zone = ('ncz042', 0.0023771566335865513) + +[fips3710191584] +centroid = (0.61795909403616123, -1.3682924408437371) +description = Ingrams township, NC +station = ('kjnx', 0.0023476391538516952) +zone = ('ncz042', 0.0019915625012519624) + +[fips3710192024] +centroid = (0.61611648013166076, -1.3690188992382946) +description = Meadow township, NC +station = ('kjnx', 0.0042450358499499597) +zone = ('ncz042', 0.003923682770788116) + +[fips3710192048] +centroid = (0.62080354438459906, -1.3648766744179515) +description = Micro township, NC +station = ('kjnx', 0.0027241333662728451) +zone = ('ncz042', 0.0024988338452374887) + +[fips3710192408] +centroid = (0.62322878410000027, -1.3655001758399341) +description = O'Neals township, NC +station = ('kjnx', 0.0036407737507692592) +zone = ('ncz042', 0.0037948937033293784) + +[fips3710192500] +centroid = (0.61982317549046129, -1.3654108498888171) +description = Pine Level township, NC +station = ('kjnx', 0.0022952950357162604) +zone = ('ncz042', 0.0018969327463304762) + +[fips3710192528] +centroid = (0.61969056537389478, -1.3720135875287442) +description = Pleasant Grove township, NC +station = ('khrj', 0.0028242728248568565) +zone = ('ncz042', 0.003485349871312438) + +[fips3710192888] +centroid = (0.62089222456389281, -1.3664768271827652) +description = Selma township, NC +station = ('kjnx', 0.0014964078661781988) +zone = ('ncz042', 0.0014289295686361881) + +[fips3710192980] +centroid = (0.61953678441350146, -1.367727791924132) +description = Smithfield township, NC +station = ('kjnx', 0.00084741856724611733) +zone = ('ncz042', 0.00036240303345614857) + +[fips3710194008] +centroid = (0.62290139523891119, -1.3675686877095201) +description = Wilders township, NC +station = ('kjnx', 0.0026422107704204543) +zone = ('ncz042', 0.0030055427432509607) + +[fips3710194056] +centroid = (0.62094781330056881, -1.3675670471000232) +description = Wilson Mills township, NC +station = ('kjnx', 0.00080816990616356602) +zone = ('ncz042', 0.0010580940238543394) + +[fips3710240] +centroid = (0.62026819954313483, -1.4459667658607105) +description = Canton town, NC +station = ('kavl', 0.0048328501852252558) +zone = ('ncz052', 0.0019325321239128954) + +[fips3710260] +centroid = (0.60553941834543223, -1.3449290096909357) +description = Cape Carteret town, NC +station = ('knjm', 0.00037570193832270414) +zone = ('ncz095', 0.006061842335368061) + +[fips37103] +centroid = (0.61142653608545672, -1.3501246279813199) +description = Jones County, NC +station = ('kewn', 0.0044610489272595422) +zone = ('ncz092', 0.00017435646948607282) + +[fips3710393304] +centroid = (0.60891642100853094, -1.3473678455212099) +description = "Township 1, White Oak", NC +station = ('kewn', 0.0038022715390120532) +zone = ('ncz092', 0.0032407673239665661) + +[fips3710393352] +centroid = (0.61103411625643833, -1.3474906643406728) +description = "Township 2, Pollocksville", NC +station = ('kewn', 0.0024771220718054808) +zone = ('ncz092', 0.0021548320441221788) + +[fips3710393396] +centroid = (0.61174678654990511, -1.3503241540214079) +description = "Township 3, Trenton", NC +station = ('kewn', 0.0045906189908247741) +zone = ('ncz092', 0.00052478049816137779) + +[fips3710393420] +centroid = (0.61113257027954337, -1.3525204938054103) +description = "Township 4, Cypress Creek", NC +station = ('koaj', 0.0036309709574928158) +zone = ('ncz092', 0.0019792561350628801) + +[fips3710393496] +centroid = (0.61136962089854918, -1.354470131299643) +description = "Township 5, Tuckahoe", NC +station = ('koaj', 0.0034170550134292946) +zone = ('ncz092', 0.003573905960334084) + +[fips3710393512] +centroid = (0.61259381228919052, -1.3524737538880418) +description = "Township 6, Chinquapin", NC +station = ('kiso', 0.0044643444857377793) +zone = ('ncz092', 0.0023554142369662978) + +[fips3710393560] +centroid = (0.61386591296779913, -1.3515912281517708) +description = "Township 7, Beaver Creek", NC +station = ('kiso', 0.00377388591044126) +zone = ('ncz092', 0.0028811857553783589) + +[fips3710460] +centroid = (0.61577114928586107, -1.4275288109366695) +description = Caroleen CDP, NC +station = ('kfqd', 0.0032839284291509363) +zone = ('ncz508', 0.0024303115113527623) + +[fips37105] +centroid = (0.61917431443444737, -1.3818159151133049) +description = Lee County, NC +station = ('ktta', 0.0021124304203044139) +zone = ('ncz076', 2.0728709636062229e-05) + +[fips3710500] +centroid = (0.5941233244278924, -1.3595873843066126) +description = Carolina Beach town, NC +station = ('ksut', 0.0032075742583011504) +zone = ('ncz108', 0.0017679761431147383) + +[fips3710550] +centroid = (0.59180535264831879, -1.3713594730316818) +description = Carolina Shores town, NC +station = ('kcre', 0.0026204728939733615) +zone = ('scz054', 0.0051024035729352862) + +[fips3710593280] +centroid = (0.61732929197557906, -1.3822224197493869) +description = "Township 1, Greenwood", NC +station = ('ksop', 0.0037687989116887846) +zone = ('ncz076', 0.0018576542179191593) + +[fips3710593336] +centroid = (0.61847166233088702, -1.3813401558125038) +description = "Township 2, Jonesboro", NC +station = ('ktta', 0.0026338991441310694) +zone = ('ncz076', 0.00078175234323401297) + +[fips3710593372] +centroid = (0.61974674752251646, -1.3795560453445301) +description = "Township 3, Cape Fear", NC +station = ('ktta', 0.0015313402983742816) +zone = ('ncz076', 0.0019242380557003987) + +[fips3710593428] +centroid = (0.62107592046766524, -1.3808280238500912) +description = "Township 4, Deep River", NC +station = ('ktta', 0.00020673727370786521) +zone = ('ncz076', 0.0020784798802669356) + +[fips3710593472] +centroid = (0.61964202776739685, -1.3812962607818162) +description = "Township 5, East Sanford", NC +station = ('ktta', 0.0015071114646345463) +zone = ('ncz076', 0.00063898989621662355) + +[fips3710593548] +centroid = (0.61988242941856642, -1.3824646190896863) +description = "Township 6, West Sanford", NC +station = ('ktta', 0.0019164999592537167) +zone = ('ncz076', 0.00090370009267313437) + +[fips3710593580] +centroid = (0.61914935622614387, -1.3839337848941375) +description = "Township 7, Pocket", NC +station = ('ktta', 0.0033158028077487586) +zone = ('ncz076', 0.0017335542231298859) + +[fips3710620] +centroid = (0.62703100132876233, -1.3803284582582929) +description = Carrboro town, NC +station = ('kigx', 0.00031290041762113349) +zone = ('ncz024', 0.0024061365495832345) + +[fips3710680] +centroid = (0.6166794186285991, -1.3860951831865149) +description = Carthage town, NC +station = ('ksop', 0.0017593069722698625) +zone = ('ncz075', 0.00099053367230400331) + +[fips37107] +centroid = (0.61502020392189805, -1.3550565793816054) +description = Lenoir County, NC +station = ('kiso', 0.0016930283235714288) +zone = ('ncz091', 4.2618706907427036e-05) + +[fips3710740] +centroid = (0.62451584225029844, -1.3755651929302126) +description = Cary town, NC +station = ('krdu', 0.0021639617935715729) +zone = ('ncz041', 0.0023215947315631219) + +[fips3710760] +centroid = (0.61981368089933053, -1.4244826528865788) +description = Casar town, NC +station = ('keho', 0.0045913802072088073) +zone = ('ncz068', 0.0032391528396685772) + +[fips3710790760] +centroid = (0.61714200069354752, -1.3525717017656635) +description = Contentnea Neck township, NC +station = ('kiso', 0.0017691490726343964) +zone = ('ncz091', 0.0029451440512098487) + +[fips3710791072] +centroid = (0.61550226386129891, -1.3558049067516906) +description = Falling Creek township, NC +station = ('kiso', 0.0015025126518659509) +zone = ('ncz091', 0.00073614850155379421) + +[fips3710791588] +centroid = (0.61673631636221404, -1.3563577397922597) +description = Institute township, NC +station = ('kiso', 0.0013808106324407303) +zone = ('ncz091', 0.0019805897919257824) + +[fips3710791704] +centroid = (0.61580150056155325, -1.3537229383935716) +description = Kinston township, NC +station = ('kiso', 0.0011703858501166376) +zone = ('ncz091', 0.0013580465762732074) + +[fips3710792144] +centroid = (0.61598310207022344, -1.3575488397402833) +description = Moseley Hall township, NC +station = ('kgsb', 0.0027240399985977342) +zone = ('ncz091', 0.0022087641701744598) + +[fips3710792224] +centroid = (0.6145646555338351, -1.3551953330571391) +description = Neuse township, NC +station = ('kiso', 0.0021619151734883759) +zone = ('ncz091', 0.0004832656956946966) + +[fips3710792520] +centroid = (0.61202310707708096, -1.3560958356847055) +description = Pink Hill township, NC +station = ('kdpl', 0.0042082155007528276) +zone = ('ncz091', 0.0031262512845642229) + +[fips3710792820] +centroid = (0.61543356770194046, -1.3520471779655616) +description = Sand Hill township, NC +station = ('kiso', 0.0024760549879082349) +zone = ('ncz091', 0.002524893170655062) + +[fips3710793060] +centroid = (0.61438837727938367, -1.3533581820331972) +description = Southwest township, NC +station = ('kiso', 0.0025310368402427382) +zone = ('ncz091', 0.0015669723131362617) + +[fips3710793760] +centroid = (0.6136796863366113, -1.3570249268054198) +description = Trent township, NC +station = ('kiso', 0.0035679034820163009) +zone = ('ncz091', 0.0020797882863505292) + +[fips3710793856] +centroid = (0.61681503071147903, -1.3542254710450983) +description = Vance township, NC +station = ('kiso', 0.00038314978482869091) +zone = ('ncz091', 0.0019119797418823898) + +[fips3710794096] +centroid = (0.61340652485538172, -1.354499540097539) +description = Woodington township, NC +station = ('kiso', 0.0032793101478108201) +zone = ('ncz091', 0.0017076901437681541) + +[fips3710800] +centroid = (0.61281267657739058, -1.4503249228161106) +description = Cashiers CDP, NC +station = ('k1a5', 0.0049094322333717421) +zone = ('ncz063', 0.00090507057296342096) + +[fips3710860] +centroid = (0.62975457017320702, -1.3623620738448483) +description = Castalia town, NC +station = ('klhz', 0.0039828401109265436) +zone = ('ncz027', 0.0022452760916845857) + +[fips3710880] +centroid = (0.59965149775395177, -1.3597987262257367) +description = Castle Hayne CDP, NC +station = ('kilm', 0.0015928664614885736) +zone = ('ncz107', 0.0013350339254319455) + +[fips37109] +centroid = (0.61937939062155667, -1.4176467567118778) +description = Lincoln County, NC +station = ('kipj', 0.00091032899285929995) +zone = ('ncz069', 3.366315781461046e-05) + +[fips3710960] +centroid = (0.59176904979987732, -1.3622060239564273) +description = Caswell Beach town, NC +station = ('ksut', 0.00055485947645512925) +zone = ('ncz110', 0.0013899436468705513) + +[fips3710980] +centroid = (0.62319054393608897, -1.4148909341828562) +description = Catawba town, NC +station = ('ksvh', 0.0018759778858409573) +zone = ('ncz056', 0.0022200466096208584) + +[fips3710990560] +centroid = (0.61900522693651405, -1.4140533332215317) +description = Catawba Springs township, NC +station = ('kipj', 0.0020405903974604345) +zone = ('ncz069', 0.0029286752544987172) + +[fips3710991552] +centroid = (0.61943579966298112, -1.4198696604070951) +description = Howards Creek township, NC +station = ('kipj', 0.0027200756796541101) +zone = ('ncz069', 0.0018300540688482604) + +[fips3710991596] +centroid = (0.61913720873454992, -1.416255554765113) +description = Ironton township, NC +station = ('kipj', 0.00027654547669026138) +zone = ('ncz069', 0.0011350660813869331) + +[fips3710991824] +centroid = (0.61938994986353124, -1.4180319159712078) +description = Lincolnton township, NC +station = ('kipj', 0.0012237317558986757) +zone = ('ncz069', 0.00033402249044687691) + +[fips3710992300] +centroid = (0.61952116371669619, -1.4214928340647424) +description = North Brook township, NC +station = ('khky', 0.0045210194641661944) +zone = ('ncz069', 0.0031542229482161405) + +[fips37111] +centroid = (0.62277243286048123, -1.4320082508217906) +description = McDowell County, NC +station = ('kfqd', 0.0047130441547359424) +zone = ('ncz505', 0.0009309707184266819) + +[fips3711190348] +centroid = (0.62077558420998213, -1.4303202032758469) +description = Brackett township, NC +station = ('kfqd', 0.0024455264392890803) +zone = ('ncz506', 0.0011350497360174115) + +[fips3711190828] +centroid = (0.62090637918412661, -1.4342315559427361) +description = Crooked Creek township, NC +station = ('kfqd', 0.0042719692872676632) +zone = ('ncz507', 0.0019414974178039546) + +[fips3711190940] +centroid = (0.62144343444825767, -1.4289785512265463) +description = Dysartsville township, NC +station = ('kfqd', 0.0032194457792382911) +zone = ('ncz506', 0.0011139147924703516) + +[fips3711191236] +centroid = (0.62154476826462846, -1.4309913521864086) +description = Glenwood township, NC +station = ('kfqd', 0.0032968068259646528) +zone = ('ncz506', 0.00072176874821055484) + +[fips3711191476] +centroid = (0.6222053055733382, -1.4300003891437112) +description = Higgins township, NC +station = ('kfqd', 0.0038643461651249374) +zone = ('ncz506', 0.0003485076627461716) + +[fips3711191984] +centroid = (0.6233108669347216, -1.4321867980042697) +description = Marion township, NC +station = ('kfqd', 0.0052688581438266125) +zone = ('ncz505', 0.00067347710678495004) + +[fips3711192112] +centroid = (0.62068358790510947, -1.4327830897432134) +description = Montford Cove township, NC +station = ('kfqd', 0.0032390451877453152) +zone = ('ncz507', 0.0022226829052242091) + +[fips3711192216] +centroid = (0.62359916042056596, -1.4299635626964942) +description = Nebo township, NC +station = ('kfqd', 0.0052584209644553877) +zone = ('ncz506', 0.0017044051906914661) + +[fips3711192312] +centroid = (0.62539581980586145, -1.4315064512085498) +description = North Cove township, NC +station = ('kfqd', 0.007155341162782383) +zone = ('ncz503', 0.0024303340329810698) + +[fips3711192384] +centroid = (0.62271693139026785, -1.4350321384706257) +description = Old Fort township, NC +station = ('kfqd', 0.0059727027510826959) +zone = ('ncz505', 0.0017196048384346804) + +[fips37113] +centroid = (0.6135348763685734, -1.4559868407227503) +description = Macon County, NC +station = ('k1a5', 0.0011144126329108378) +zone = ('ncz062', 4.4753166251102386e-05) + +[fips3711340] +centroid = (0.60540158969440228, -1.3453838948538828) +description = Cedar Point town, NC +station = ('knjm', 0.00077311221864578849) +zone = ('ncz098', 0.0050893003974682846) + +[fips3711352] +centroid = (0.62733465371202435, -1.4217090803590646) +description = Cedar Rock village, NC +station = ('khky', 0.0035403972447254125) +zone = ('ncz502', 0.00082214244316229103) + +[fips3711390448] +centroid = (0.61514537893585119, -1.457735067221303) +description = Burningtown township, NC +station = ('k1a5', 0.0015831932095312202) +zone = ('ncz062', 0.0021845703790711914) + +[fips3711390524] +centroid = (0.61287280317012183, -1.4578103083653562) +description = Cartoogechaye township, NC +station = ('k1a5', 0.0023658652802433892) +zone = ('ncz062', 0.0016114029485683151) + +[fips3711390792] +centroid = (0.61575971737926061, -1.4554959843239192) +description = Cowee township, NC +station = ('k1a5', 0.0011597674073916698) +zone = ('ncz062', 0.0023051578834669324) + +[fips3711391024] +centroid = (0.61378318436125456, -1.4537197801974571) +description = Ellijay township, NC +station = ('k1a5', 0.0019766738047025376) +zone = ('ncz062', 0.0018792726736797222) + +[fips3711391124] +centroid = (0.61124154863803781, -1.4541282221490088) +description = Flats township, NC +station = ('k1a5', 0.0036993556387280527) +zone = ('ncz062', 0.0027162932736933534) + +[fips3711391156] +centroid = (0.61369946091703642, -1.455689122458945) +description = Franklin township, NC +station = ('k1a5', 0.0009622189655520613) +zone = ('ncz062', 0.0003231457275743256) + +[fips3711391480] +centroid = (0.61172071133088035, -1.452257264097456) +description = Highlands township, NC +station = ('k1a5', 0.0041731221186915527) +zone = ('ncz063', 0.0026840326741159374) + +[fips3711392072] +centroid = (0.61478362454179025, -1.4540371508686398) +description = Millshoal township, NC +station = ('k1a5', 0.0015242973034383005) +zone = ('ncz062', 0.002054499730861783) + +[fips3711392204] +centroid = (0.61478905251576399, -1.459716714054017) +description = Nantahala township, NC +station = ('k1a5', 0.003124940231614783) +zone = ('ncz062', 0.0033108735995694065) + +[fips3711392974] +centroid = (0.61168620617156844, -1.4561350889894147) +description = Smithbridge township, NC +station = ('k1a5', 0.0029670566369889798) +zone = ('ncz062', 0.0018078916832602416) + +[fips3711393164] +centroid = (0.61290868713954283, -1.45272230707665) +description = Sugarfork township, NC +station = ('k1a5', 0.0031224714478247369) +zone = ('ncz063', 0.0023429938335021842) + +[fips37115] +centroid = (0.62594627919864798, -1.443609489266382) +description = Madison County, NC +station = ('kavl', 0.0079368184747579968) +zone = ('ncz048', 0.00014416662385458281) + +[fips3711560] +centroid = (0.63155517400261207, -1.3632563980068628) +description = Centerville town, NC +station = ('klhz', 0.0042137912675218846) +zone = ('ncz026', 0.0030709954490350743) + +[fips3711593290] +centroid = (0.62512295503060467, -1.4426883743003494) +description = "Township 1, North Marshall", NC +station = ('kavl', 0.006931440023526146) +zone = ('ncz048', 0.00096738012486069264) + +[fips3711593298] +centroid = (0.62408458884542317, -1.4442097952626052) +description = "Township 1, South Marshall", NC +station = ('kavl', 0.0064186724677303747) +zone = ('ncz048', 0.0018525625722372017) + +[fips3711593340] +centroid = (0.62798498084460996, -1.4431470119211884) +description = "Township 2, Laurel", NC +station = ('ktri', 0.0093874996687758928) +zone = ('tnz043', 0.0016724490517080841) + +[fips3711593376] +centroid = (0.62502516423261545, -1.4412334678358869) +description = "Township 3, Mars Hill", NC +station = ('kavl', 0.006625323193505837) +zone = ('ncz048', 0.0020010462020431628) + +[fips3711593416] +centroid = (0.62575399627495576, -1.4396191080909622) +description = "Township 4, Beech Glenn", NC +station = ('kavl', 0.0073588728379850492) +zone = ('ncz049', 0.0026211502781843129) + +[fips3711593500] +centroid = (0.62536812143063225, -1.4444307015860303) +description = "Township 5, Walnut", NC +station = ('kavl', 0.0076471940282399793) +zone = ('ncz048', 0.00089996482152903995) + +[fips3711593528] +centroid = (0.62639575384091406, -1.4457898418344357) +description = "Township 6, Hot Springs", NC +station = ('kavl', 0.0090610299322071639) +zone = ('tnz043', 0.0022147318600321108) + +[fips3711593568] +centroid = (0.62711418372091243, -1.4409630465215828) +description = "Township 7, Ebbs Chapel", NC +station = ('kavl', 0.008694767827731641) +zone = ('ncz048', 0.0024080123807502874) + +[fips3711593624] +centroid = (0.62443681374176818, -1.4465880158079578) +description = "Township 8, Spring Creek", NC +station = ('kavl', 0.0077959330271891612) +zone = ('tnz041', 0.0029246495270426128) + +[fips3711593654] +centroid = (0.62341125827329624, -1.4446694800809958) +description = "Township 9, Sandy Mush", NC +station = ('kavl', 0.0060373237983781611) +zone = ('ncz048', 0.002613137095919722) + +[fips3711593660] +centroid = (0.62590252379430045, -1.4417580614491587) +description = "Township 10, Grapevine", NC +station = ('kavl', 0.0075461820094999991) +zone = ('ncz048', 0.0014023508904215853) + +[fips3711593706] +centroid = (0.62663653946451925, -1.4433810605738808) +description = "Township 11, Revere-Rice Cove", NC +station = ('kavl', 0.0085402199437717551) +zone = ('ncz048', 0.00079923397566378327) + +[fips3711620] +centroid = (0.59904679352801338, -1.3775630538716779) +description = Cerro Gordo town, NC +station = ('kcpc', 0.0032006925133740982) +zone = ('ncz099', 0.0040693737972502782) + +[fips3711640] +centroid = (0.59907780802882127, -1.375763392520069) +description = Chadbourn town, NC +station = ('kcpc', 0.0018315150708345441) +zone = ('ncz099', 0.0026654121484445598) + +[fips37117] +centroid = (0.62554448695154641, -1.3458734248024822) +description = Martin County, NC +station = ('kocw', 0.0048052447526363319) +zone = ('ncz029', 8.213814853237911e-05) + +[fips3711790176] +centroid = (0.6241739846097103, -1.345829372692162) +description = Beargrass township, NC +station = ('kocw', 0.0034591722281186003) +zone = ('ncz029', 0.0013807079239399566) + +[fips3711790836] +centroid = (0.62481755731809063, -1.346943590886635) +description = Cross Roads township, NC +station = ('kpgv', 0.0043175754858852233) +zone = ('ncz029', 0.0012014721359782817) + +[fips3711791268] +centroid = (0.62810671755993663, -1.349409741119703) +description = Goose Nest township, NC +station = ('ketc', 0.0033287306033676824) +zone = ('ncz029', 0.0038978157541782834) + +[fips3711791332] +centroid = (0.623415883395814, -1.3435058856721518) +description = Griffins township, NC +station = ('kocw', 0.0027890795786544411) +zone = ('ncz029', 0.0028201628340323967) + +[fips3711791388] +centroid = (0.62687557975887231, -1.3471979377185281) +description = Hamilton township, NC +station = ('kpgv', 0.0057892366232914052) +zone = ('ncz029', 0.0017550475220512601) + +[fips3711791644] +centroid = (0.62463108634080766, -1.3414357506463614) +description = Jamesville township, NC +station = ('kocw', 0.0046733659462787494) +zone = ('ncz029', 0.0036359898183453542) + +[fips3711792556] +centroid = (0.62621444903821677, -1.3468036154806251) +description = Poplar Point township, NC +station = ('kpgv', 0.005424014703601006) +zone = ('ncz029', 0.0010650121560365241) + +[fips3711792712] +centroid = (0.62539784438779378, -1.3485549661185388) +description = Robersonville township, NC +station = ('kpgv', 0.0039597119353043291) +zone = ('ncz029', 0.0022608761802357007) + +[fips3711794024] +centroid = (0.62549882913831412, -1.3434934589278777) +description = Williams township, NC +station = ('kocw', 0.0047892858883464258) +zone = ('ncz029', 0.0018485575511522131) + +[fips3711794040] +centroid = (0.62558178463766145, -1.3453894973607816) +description = Williamston township, NC +station = ('kocw', 0.0047848744671688684) +zone = ('ncz029', 0.00031194013096882208) + +[fips3711800] +centroid = (0.62702597478051669, -1.3794780640335509) +description = Chapel Hill town, NC +station = ('kigx', 0.0004215295166627032) +zone = ('ncz024', 0.0026339501934855712) + +[fips37119] +centroid = (0.61517379289607355, -1.4108165154039529) +description = Mecklenburg County, NC +station = ('kclt', 0.0017379544448166218) +zone = ('ncz071', 1.4749500249224217e-05) + +[fips3711993268] +centroid = (0.61450786251997513, -1.4107625323701887) +description = "Township 1, Charlotte", NC +station = ('kclt', 0.0017062837296314595) +zone = ('ncz071', 0.00066549727586052564) + +[fips3711993320] +centroid = (0.61461656162578926, -1.4134337936969512) +description = "Township 2, Berryhill", NC +station = ('kclt', 0.00048277600456412005) +zone = ('ncz071', 0.0022232783511298405) + +[fips3711993392] +centroid = (0.61283798385154453, -1.4139005645521046) +description = "Township 3, Steele Creek", NC +station = ('kclt', 0.0020044364743852633) +zone = ('ncz071', 0.0034466647717890952) + +[fips3711993492] +centroid = (0.61277337176263569, -1.4092231345166373) +description = "Township 5, Providence", NC +station = ('keqy', 0.0024184589538331605) +zone = ('ncz071', 0.0027230266904245265) + +[fips3711993516] +centroid = (0.61437513023036094, -1.4071942765276566) +description = "Township 6, Clear Creek", NC +station = ('keqy', 0.0032219367233253839) +zone = ('ncz071', 0.0030504219977551851) + +[fips3711993564] +centroid = (0.61483547827386698, -1.407998943125996) +description = "Township 7, Crab Orchard", NC +station = ('kjqf', 0.0028049665847396494) +zone = ('ncz071', 0.0023113338782902912) + +[fips3711993600] +centroid = (0.6177631110144548, -1.4102414468687134) +description = "Township 8, Mallard Creek", NC +station = ('kjqf', 0.0013086239660790109) +zone = ('ncz071', 0.0026299731201545832) + +[fips3711993636] +centroid = (0.61922492898275516, -1.4107144310960038) +description = "Township 9, Deweese", NC +station = ('kjqf', 0.0023457811046416776) +zone = ('ncz071', 0.004052798158248448) + +[fips3711993668] +centroid = (0.61879929553807134, -1.4124142770676911) +description = "Township 10, Lemley", NC +station = ('kjqf', 0.0032972125890214188) +zone = ('ncz071', 0.0038586117995986205) + +[fips3711993700] +centroid = (0.61719622807340702, -1.4119608056214381) +description = "Township 11, Long Creek", NC +station = ('kclt', 0.0026494133334553842) +zone = ('ncz071', 0.0022348051748718898) + +[fips3711993720] +centroid = (0.61599996195079765, -1.4131162484928435) +description = "Township 12, Paw Creek", NC +station = ('kclt', 0.0013713136507932523) +zone = ('ncz071', 0.0020652112763043964) + +[fips3711993736] +centroid = (0.61328868022428695, -1.4083778192000187) +description = "Township 13, Morning Star", NC +station = ('keqy', 0.0024023293892523668) +zone = ('ncz071', 0.0027318382495072962) + +[fips3711993740] +centroid = (0.61247835875917112, -1.4118350721021242) +description = "Township 14, Pineville", NC +station = ('kclt', 0.0023200373703260156) +zone = ('ncz071', 0.0028244508622403508) + +[fips3711993748] +centroid = (0.61825843545617087, -1.4107942799092827) +description = "Township 15, Huntersville", NC +station = ('kjqf', 0.0018710708974425734) +zone = ('ncz071', 0.0030857265879092061) + +[fips3712000] +centroid = (0.61450786251997513, -1.4107625323701887) +description = Charlotte city, NC +station = ('kclt', 0.0017062837296314595) +zone = ('ncz071', 0.00066549727586052564) + +[fips37121] +centroid = (0.62854720375655504, -1.4340245424401572) +description = Mitchell County, NC +station = ('k0a9', 0.0062297068847820191) +zone = ('ncz050', 4.0827550124658122e-06) + +[fips3712140] +centroid = (0.61934687513759201, -1.4538776626815924) +description = Cherokee CDP, NC +station = ('k1a5', 0.0049799007297498541) +zone = ('ncz051', 0.0027235906432418887) + +[fips3712190128] +centroid = (0.62850838763399053, -1.4339518669301041) +description = Bakersville township, NC +station = ('k0a9', 0.0062696427970606473) +zone = ('ncz050', 7.0653332159237956e-05) + +[fips3712190352] +centroid = (0.62991142291308377, -1.4359333566831856) +description = Bradshaw township, NC +station = ('k0a9', 0.0050760294695643433) +zone = ('ncz050', 0.002059119545229646) + +[fips3712190488] +centroid = (0.62871224209062349, -1.4327109901918134) +description = Cane Creek township, NC +station = ('k0a9', 0.0061722417083711874) +zone = ('ncz050', 0.0010725121439282572) + +[fips3712191140] +centroid = (0.62954876094781187, -1.4334527202173262) +description = Fork Mountain-Little Rock Creek township, NC +station = ('k0a9', 0.0052565599645751299) +zone = ('ncz050', 0.0010990839773454279) + +[fips3712191285] +centroid = (0.62657438828985557, -1.4325601762911486) +description = Grassy Creek township, NC +station = ('ktnb', 0.0080100489239228589) +zone = ('ncz050', 0.0023033762593849968) + +[fips3712191408] +centroid = (0.63019163552449142, -1.4349748393112829) +description = Harrell township, NC +station = ('k0a9', 0.0046341440856857638) +zone = ('ncz050', 0.0018128165464542968) + +[fips3712192548] +centroid = (0.63001727713221722, -1.4373031957999058) +description = Poplar township, NC +station = ('k0a9', 0.0054009229032662498) +zone = ('tnz045', 0.0011646716960803812) + +[fips3712192632] +centroid = (0.6288288649912418, -1.4353196291050143) +description = Red Hill township, NC +station = ('k0a9', 0.0060234592363766527) +zone = ('ncz050', 0.0010858816163429555) + +[fips3712193012] +centroid = (0.6274844902283081, -1.4333411413182462) +description = Snow Creek township, NC +station = ('k0a9', 0.0073200172848851153) +zone = ('ncz050', 0.0012000539478499996) + +[fips37123] +centroid = (0.61676569025352512, -1.3945913063588831) +description = Montgomery County, NC +station = ('kvuj', 0.0037683510300577927) +zone = ('ncz074', 0.00010045118240986079) + +[fips3712340] +centroid = (0.61757718108923987, -1.4203304796894991) +description = Cherryville city, NC +station = ('kipj', 0.0035392325369574132) +zone = ('ncz069', 0.0028297539854082914) + +[fips3712390272] +centroid = (0.61657354695617295, -1.392348820069458) +description = Biscoe township, NC +station = ('khbi', 0.005950761815671694) +zone = ('ncz074', 0.0018489970481433177) + +[fips3712390628] +centroid = (0.61477158176995139, -1.3941497555114208) +description = Cheek Creek township, NC +station = ('kafp', 0.004536357644931069) +zone = ('ncz074', 0.0019323862405951063) + +[fips3712390988] +centroid = (0.61878683388721212, -1.3974573987900454) +description = Eldorado township, NC +station = ('kvuj', 0.0013399563925445663) +zone = ('ncz074', 0.0031423018317828667) + +[fips3712391856] +centroid = (0.61895658461026104, -1.3935835008889039) +description = Little River township, NC +station = ('khbi', 0.0033919444156658264) +zone = ('ncz074', 0.0024386122821919375) + +[fips3712392160] +centroid = (0.61479561495375146, -1.3959186118017322) +description = Mount Gilead township, NC +station = ('kafp', 0.0038290983079091057) +zone = ('ncz074', 0.0021536479959585) + +[fips3712392412] +centroid = (0.61889192016147476, -1.3952713913552151) +description = Ophir township, NC +station = ('kvuj', 0.0030479229443831322) +zone = ('ncz074', 0.0022891459063200093) + +[fips3712392464] +centroid = (0.61552477860864974, -1.3970660261585781) +description = Pee Dee township, NC +station = ('kvuj', 0.0030090089702606245) +zone = ('ncz074', 0.0023052757223968085) + +[fips3712392748] +centroid = (0.61450596011109049, -1.3919229771852639) +description = Rocky Springs township, NC +station = ('khff', 0.0047147048551709229) +zone = ('ncz074', 0.0030805566011936785) + +[fips3712393100] +centroid = (0.61823415792627556, -1.3924943805290746) +description = Star township, NC +station = ('khbi', 0.0043397651230127786) +zone = ('ncz074', 0.0023321638060538928) + +[fips3712393772] +centroid = (0.61705750930445857, -1.3944015541626062) +description = Troy township, NC +station = ('kvuj', 0.0038199765365336215) +zone = ('ncz074', 0.00042694141624913088) + +[fips3712393848] +centroid = (0.61718861843786832, -1.3961677575524543) +description = Uwharrie township, NC +station = ('kvuj', 0.0024180405169441023) +zone = ('ncz074', 0.0013718617636600452) + +[fips3712460] +centroid = (0.61872255341086102, -1.4356505435311924) +description = Chimney Rock Village village, NC +station = ('kfqd', 0.0045906062099727784) +zone = ('ncz507', 0.0009419855151030841) + +[fips3712480] +centroid = (0.62082609403853473, -1.4063622431666458) +description = China Grove town, NC +station = ('kruq', 0.0016394119770782574) +zone = ('ncz057', 0.0014251039837185353) + +[fips37125] +centroid = (0.61627860376587862, -1.3871992784713265) +description = Moore County, NC +station = ('ksop', 0.001766131362161577) +zone = ('ncz075', 1.303431749901468e-05) + +[fips3712580] +centroid = (0.61984872711071048, -1.3456779828328438) +description = Chocowinity town, NC +station = ('kocw', 0.0012223110213597694) +zone = ('ncz080', 0.0034075811979132759) + +[fips3712593264] +centroid = (0.61699246088323678, -1.3864939211074254) +description = "Township 1, Carthage", NC +station = ('ksop', 0.0021332899714681976) +zone = ('ncz075', 0.00091539308733638337) + +[fips3712593316] +centroid = (0.61671622762252354, -1.3898437664473631) +description = "Township 2, Bensalem", NC +station = ('ksop', 0.0037557301237870844) +zone = ('ncz075', 0.0021908594356631695) + +[fips3712593388] +centroid = (0.61890858805583127, -1.3904457130530834) +description = "Township 3, Sheffield", NC +station = ('khbi', 0.0046756655028356645) +zone = ('ncz075', 0.003718189063224144) + +[fips3712593448] +centroid = (0.61902158067160529, -1.3875577690996861) +description = "Township 4, Ritter", NC +station = ('k5w8', 0.0041390682902255459) +zone = ('ncz075', 0.0027482356279641493) + +[fips3712593468] +centroid = (0.61905692358895825, -1.3858139757374335) +description = "Township 5, Deep River", NC +station = ('ksop', 0.0041192915281404608) +zone = ('ncz075', 0.0029938260181199363) + +[fips3712593524] +centroid = (0.61667465387974107, -1.3837096497115964) +description = "Township 6, Greenwood", NC +station = ('ksop', 0.0024300125947626862) +zone = ('ncz075', 0.0028823617051045819) + +[fips3712593578] +centroid = (0.61500137181926906, -1.3850195367685105) +description = "Township 7, McNeill", NC +station = ('ksop', 0.00063368193915759694) +zone = ('ncz075', 0.0022032843224835193) + +[fips3712593616] +centroid = (0.61294455365567124, -1.3872845378052865) +description = "Township 8, Sandhills", NC +station = ('khff', 0.0015116973917529244) +zone = ('ncz075', 0.0033439714480526989) + +[fips3712593648] +centroid = (0.6148376075755545, -1.3882382031618685) +description = "Township 9, Mineral Springs", NC +station = ('ksop', 0.002001124421989923) +zone = ('ncz075', 0.0016756395825752754) + +[fips3712593672] +centroid = (0.61457428975130612, -1.3822935244631132) +description = "Township 10, Little River", NC +station = ('kpob', 0.0025027251557565152) +zone = ('ncz086', 0.0034472257850694885) + +[fips37127] +centroid = (0.62772415884119193, -1.3611396103301663) +description = Nash County, NC +station = ('krwi', 0.0023721281294891753) +zone = ('ncz027', 2.6492957157985896e-05) + +[fips3712720] +centroid = (0.62318920003256506, -1.4164144669935073) +description = Claremont city, NC +station = ('khky', 0.0033305143816379909) +zone = ('ncz056', 0.0011384506605927028) + +[fips3712780] +centroid = (0.60194044470806474, -1.3728035410014894) +description = Clarkton town, NC +station = ('keyf', 0.0022054217357292713) +zone = ('ncz096', 0.0025657808159137516) + +[fips3712790124] +centroid = (0.62478738057532368, -1.363215452582611) +description = Bailey township, NC +station = ('krwi', 0.0030615221528188423) +zone = ('ncz043', 0.0031174226475859153) + +[fips3712790544] +centroid = (0.62939559085265695, -1.3622643179534442) +description = Castalia township, NC +station = ('klhz', 0.0039839318586184433) +zone = ('ncz027', 0.0018910028391886183) + +[fips3712790776] +centroid = (0.62620193502748012, -1.360763107903926) +description = Coopers township, NC +station = ('krwi', 0.0010594397005677277) +zone = ('ncz027', 0.0015711207557382065) + +[fips3712790916] +centroid = (0.62468726848942935, -1.3649476569586303) +description = Dry Wells township, NC +station = ('klhz', 0.0044055635128925751) +zone = ('ncz027', 0.0043552987133590381) + +[fips3712791100] +centroid = (0.62632838413178704, -1.3643135090282106) +description = Ferrells township, NC +station = ('klhz', 0.0033035082853288575) +zone = ('ncz027', 0.0029482575460186553) + +[fips3712791336] +centroid = (0.63043016967336152, -1.3607157222147346) +description = Griffins township, NC +station = ('krwi', 0.0048132921571791536) +zone = ('ncz027', 0.0027040557049488635) + +[fips3712791616] +centroid = (0.62571151496096211, -1.3618851626267408) +description = Jackson township, NC +station = ('krwi', 0.0018429596933329528) +zone = ('ncz027', 0.0021265619515340077) + +[fips3712791976] +centroid = (0.62752707626205673, -1.3629575627323363) +description = Mannings township, NC +station = ('krwi', 0.0032683944840931293) +zone = ('ncz027', 0.0015024315020020374) + +[fips3712792212] +centroid = (0.62803264578648199, -1.361162125077517) +description = Nashville township, NC +station = ('krwi', 0.0026487355216986675) +zone = ('ncz027', 0.00028849073112988328) + +[fips3712792328] +centroid = (0.63034646368243585, -1.3579566533733043) +description = North Whitakers township, NC +station = ('kixa', 0.0043971077310997458) +zone = ('ncz011', 0.0032779448679282281) + +[fips3712792356] +centroid = (0.62731175499223824, -1.3596425018043905) +description = Oak Level township, NC +station = ('krwi', 0.0016114140256661262) +zone = ('ncz027', 0.0012733316725997202) + +[fips3712792636] +centroid = (0.62909387578486453, -1.3597352835074268) +description = Red Oak township, NC +station = ('krwi', 0.0033948185908126058) +zone = ('ncz027', 0.0017531587583186419) + +[fips3712792740] +centroid = (0.62642598294355856, -1.3587327140252035) +description = Rocky Mount township, NC +station = ('krwi', 0.0010165463090278015) +zone = ('ncz027', 0.0023416162803655931) + +[fips3712793068] +centroid = (0.6291372123101916, -1.3579548033242972) +description = South Whitakers township, NC +station = ('krwi', 0.003689098324251868) +zone = ('ncz027', 0.0029148333190641752) + +[fips3712793144] +centroid = (0.62792529058419178, -1.3584671796328052) +description = Stony Creek township, NC +station = ('krwi', 0.0024100709568624138) +zone = ('ncz027', 0.0021553627305972321) + +[fips3712860] +centroid = (0.62249248204846142, -1.3691154857591001) +description = Clayton town, NC +station = ('kjnx', 0.0023194619915931588) +zone = ('ncz042', 0.0028245088771019903) + +[fips37129] +centroid = (0.59650931168841637, -1.359111939165077) +description = New Hanover County, NC +station = ('kilm', 0.0016107093242507032) +zone = ('ncz108', 0.00071798306247149732) + +[fips3712960] +centroid = (0.62889838145534871, -1.4030125723596332) +description = Clemmons village, NC +station = ('kint', 0.0027807344946349666) +zone = ('ncz021', 0.0025019436602089725) + +[fips3712990508] +centroid = (0.59898815046514631, -1.3598674572916802) +description = Cape Fear township, NC +station = ('kilm', 0.00094593502699603514) +zone = ('ncz107', 0.00070054842042901447) + +[fips3712991092] +centroid = (0.59353598622801129, -1.3596496751076164) +description = Federal Point township, NC +station = ('ksut', 0.0028438539223574282) +zone = ('ncz110', 0.0013757499960797405) + +[fips3712991404] +centroid = (0.59780495685863422, -1.3573875015042289) +description = Harnett township, NC +station = ('kilm', 0.0018565888019781783) +zone = ('ncz107', 0.0018875104398707228) + +[fips3712992008] +centroid = (0.59596298872595699, -1.3586062125610192) +description = Masonboro township, NC +station = ('kilm', 0.0022615279867667353) +zone = ('ncz108', 0.00031338799979809093) + +[fips3712994044] +centroid = (0.59706361080555725, -1.3593630745911465) +description = Wilmington township, NC +station = ('kilm', 0.0010233638660915871) +zone = ('ncz107', 0.0012777859885646453) + +[fips3713000] +centroid = (0.62364574325830169, -1.4081757624325155) +description = Cleveland town, NC +station = ('kruq', 0.0027548839738539693) +zone = ('ncz057', 0.0027607529423527189) + +[fips37131] +centroid = (0.63567987571726514, -1.3508560780175383) +description = Northampton County, NC +station = ('kixa', 0.0037545488166295751) +zone = ('ncz012', 7.4794310562547266e-05) + +[fips3713100] +centroid = (0.61519356747649878, -1.4270733672683618) +description = Cliffside CDP, NC +station = ('keho', 0.0023560527171462707) +zone = ('ncz508', 0.0031168724396898628) + +[fips3713191212] +centroid = (0.63742143505807525, -1.3567268943823489) +description = Gaston township, NC +station = ('kixa', 0.0035982440627315465) +zone = ('vaz087', 0.003654695513648931) + +[fips3713191620] +centroid = (0.63495214323235361, -1.351355224730316) +description = Jackson township, NC +station = ('kixa', 0.0031195933423470027) +zone = ('ncz012', 0.00078215249313629616) + +[fips3713191708] +centroid = (0.63636671513780252, -1.3470344701807864) +description = Kirby township, NC +station = ('kasj', 0.002858359873558986) +zone = ('ncz012', 0.003143961119556104) + +[fips3713192368] +centroid = (0.63501247926459514, -1.3530549310756632) +description = Oconeechee township, NC +station = ('kixa', 0.0018751188860040304) +zone = ('ncz012', 0.0018895878763294388) + +[fips3713192536] +centroid = (0.63728329224777991, -1.3535983567915644) +description = Pleasant Hill township, NC +station = ('kemv', 0.0031915846514467697) +zone = ('ncz012', 0.0027875645101151534) + +[fips3713192676] +centroid = (0.6329489590366697, -1.3488070265691119) +description = Rich Square township, NC +station = ('kasj', 0.0016480393931896679) +zone = ('ncz012', 0.0031181164765755414) + +[fips3713192696] +centroid = (0.63406602211782359, -1.3499874625554058) +description = Roanoke township, NC +station = ('kasj', 0.0025607267129163806) +zone = ('ncz012', 0.0016844211533162214) + +[fips3713192880] +centroid = (0.63682542257181163, -1.3516488763769641) +description = Seaboard township, NC +station = ('kemv', 0.0035251812207442394) +zone = ('ncz012', 0.0013845580830167416) + +[fips3713194004] +centroid = (0.63640635156511527, -1.3494733234643532) +description = Wiccacanee township, NC +station = ('kasj', 0.0035673120205329963) +zone = ('ncz012', 0.0013499921356217885) + +[fips3713240] +centroid = (0.61087274311379891, -1.3671432811576392) +description = Clinton city, NC +station = ('kctz', 0.00064311937810054289) +zone = ('ncz089', 0.00058807267363847858) + +[fips3713280] +centroid = (0.6201675987650499, -1.4470752244686522) +description = Clyde town, NC +station = ('kavl', 0.0056462471588120565) +zone = ('ncz052', 0.0010846303252651187) + +[fips37133] +centroid = (0.60673683638534803, -1.3526877138010438) +description = Onslow County, NC +station = ('knca', 0.0013457947221401523) +zone = ('ncz098', 0.0010902793614022558) + +[fips3713360] +centroid = (0.61796988017093857, -1.3730250407368598) +description = Coats town, NC +station = ('khrj', 0.0010506181484128414) +zone = ('ncz077', 0.0029340065364030989) + +[fips3713390482] +centroid = (0.60417095803882104, -1.350889466166129) +description = Camp Lejeune UT, NC +station = ('knca', 0.0016237093225742912) +zone = ('ncz098', 0.0021665071746101677) + +[fips3713391502] +centroid = (0.60871427697456504, -1.3505044290798462) +description = Hofmann Forest UT, NC +station = ('knca', 0.0032521453871761541) +zone = ('ncz092', 0.0025591191911582467) + +[fips3713391632] +centroid = (0.60673683638534803, -1.3526877138010438) +description = Jacksonville township, NC +station = ('knca', 0.0013457947221401523) +zone = ('ncz098', 0.0010902793614022558) + +[fips3713392672] +centroid = (0.60868506016288659, -1.3539695708701709) +description = Richlands township, NC +station = ('koaj', 0.00092627260693198266) +zone = ('ncz098', 0.0031539484986902121) + +[fips3713393160] +centroid = (0.60280132836161104, -1.3524327910104974) +description = Stump Sound township, NC +station = ('knca', 0.0028820084789119419) +zone = ('ncz106', 0.0035531619053403465) + +[fips3713393188] +centroid = (0.60508509168784552, -1.3467247440517274) +description = Swansboro township, NC +station = ('knjm', 0.0019202085565022343) +zone = ('ncz098', 0.0040898504839913469) + +[fips3713393976] +centroid = (0.60743926159610551, -1.348407677782963) +description = White Oak township, NC +station = ('knca', 0.0032941411288360352) +zone = ('ncz098', 0.0027777178841489362) + +[fips3713460] +centroid = (0.63454392817360472, -1.3423417510610716) +description = Cofield village, NC +station = ('kasj', 0.0038033444914140932) +zone = ('ncz013', 0.0010308305649948998) + +[fips37135] +centroid = (0.62940934404716264, -1.3808932468042381) +description = Orange County, NC +station = ('kigx', 0.0023739569554267733) +zone = ('ncz024', 2.5077711328629307e-05) + +[fips3713500] +centroid = (0.6344692455349118, -1.3256084941240387) +description = Coinjock CDP, NC +station = ('konx', 0.0012147005721529131) +zone = ('ncz017', 0.0014353681918769024) + +[fips3713560] +centroid = (0.63183666070437372, -1.3398264349029751) +description = Colerain town, NC +station = ('kede', 0.0041337055150441979) +zone = ('ncz031', 0.0024017602501932469) + +[fips3713590268] +centroid = (0.62753388304613955, -1.3822997029286652) +description = Bingham township, NC +station = ('kigx', 0.0019208789051804991) +zone = ('ncz024', 0.002168796061166984) + +[fips3713590580] +centroid = (0.63159458353712206, -1.3816727806613489) +description = Cedar Grove township, NC +station = ('ktdf', 0.0030486218996997544) +zone = ('ncz024', 0.0022882029739702717) + +[fips3713590620] +centroid = (0.627417888464052, -1.3800792077878157) +description = Chapel Hill township, NC +station = ('kigx', 0.00027644906461236831) +zone = ('ncz024', 0.0020844859983491187) + +[fips3713590632] +centroid = (0.62991555934341104, -1.3823984012978656) +description = Cheeks township, NC +station = ('kigx', 0.0033863967325444117) +zone = ('ncz024', 0.0013103094421692987) + +[fips3713591040] +centroid = (0.63000752074169863, -1.3791470623409103) +description = Eno township, NC +station = ('kigx', 0.0029298520762579914) +zone = ('ncz024', 0.001555209122935142) + +[fips3713591496] +centroid = (0.62977752125287079, -1.3805973960427327) +description = Hillsborough township, NC +station = ('kigx', 0.0026706387747707028) +zone = ('ncz024', 0.00046391237838313632) + +[fips3713591860] +centroid = (0.63163933377914327, -1.378937378484576) +description = Little River township, NC +station = ('ktdf', 0.0016851294555495792) +zone = ('ncz024', 0.0027578619866655499) + +[fips37137] +centroid = (0.61343893561959117, -1.3380578753186367) +description = Pamlico County, NC +station = ('knbt', 0.0036388197986551496) +zone = ('ncz094', 0.0011993756169957172) + +[fips3713793260] +centroid = (0.61336863375732087, -1.342128977971961) +description = Township 1, NC +station = ('kewn', 0.0025052583101903801) +zone = ('ncz094', 0.002136000243194232) + +[fips3713793312] +centroid = (0.61261452934741167, -1.3376614586856312) +description = Township 2, NC +station = ('knbt', 0.0029029506205597343) +zone = ('ncz094', 0.0016744418170162203) + +[fips3713793364] +centroid = (0.61390380406585998, -1.3403376418408841) +description = Township 3, NC +station = ('kewn', 0.0040441654672075536) +zone = ('ncz094', 0.00088845391572821514) + +[fips3713793412] +centroid = (0.6149234079615824, -1.3356501063490478) +description = Township 4, NC +station = ('knbt', 0.0038648402291681897) +zone = ('ncz094', 0.003543771918882381) + +[fips3713793464] +centroid = (0.61105343705125792, -1.3405739594216042) +description = Township 5, NC +station = ('knkt', 0.0022224226879025703) +zone = ('ncz094', 0.002426721487658396) + +[fips37139] +centroid = (0.6329484703444791, -1.3309942834897204) +description = Pasquotank County, NC +station = ('kecg', 0.001345230530653901) +zone = ('ncz015', 0.0006721155157921755) + +[fips3713940] +centroid = (0.62699724666102885, -1.330640068918028) +description = Columbia town, NC +station = ('kede', 0.0049613521420784311) +zone = ('ncz046', 0.0019302112188724389) + +[fips3713980] +centroid = (0.61525029067718839, -1.4348141992069294) +description = Columbus town, NC +station = ('kfqd', 0.0049747697957960692) +zone = ('ncz510', 0.0011400283881660624) + +[fips3713990996] +centroid = (0.63351339851676458, -1.3304322874705781) +description = Elizabeth City township, NC +station = ('kecg', 0.0012000093703227793) +zone = ('ncz015', 0.00082353710531535621) + +[fips3713992164] +centroid = (0.63307785160192942, -1.3318389879411003) +description = Mount Hermon township, NC +station = ('kecg', 0.0020384251608310286) +zone = ('ncz015', 0.0005312912425196228) + +[fips3713992260] +centroid = (0.63538847554535227, -1.3335993444779546) +description = Newland township, NC +station = ('kecg', 0.004358396282010746) +zone = ('ncz015', 0.0025528687174039577) + +[fips3713992292] +centroid = (0.63251765327191678, -1.329996042424042) +description = Nixonton township, NC +station = ('kecg', 0.00053928439920703777) +zone = ('ncz015', 0.0015378429769318655) + +[fips3713992576] +centroid = (0.63428547981796934, -1.3317992642473251) +description = Providence township, NC +station = ('kecg', 0.0025376126789153951) +zone = ('ncz015', 0.00082465248516178178) + +[fips3713992804] +centroid = (0.63107817551804202, -1.3287391086566334) +description = Salem township, NC +station = ('kecg', 0.001679904038214644) +zone = ('ncz015', 0.0032720242568374663) + +[fips3714060] +centroid = (0.63701828145415695, -1.3438979215287348) +description = Como town, NC +station = ('kfkn', 0.003784698572291413) +zone = ('ncz013', 0.0024442115346161252) + +[fips37141] +centroid = (0.60235817181123708, -1.3594025539388266) +description = Pender County, NC +station = ('kilm', 0.0042954764413170145) +zone = ('ncz105', 0.000588725350246021) + +[fips3714100] +centroid = (0.61770776662387417, -1.4073557194834658) +description = Concord city, NC +station = ('kjqf', 0.0010620649198624828) +zone = ('ncz072', 0.0011936363867136326) + +[fips3714190444] +centroid = (0.60291728803711342, -1.3599748823071405) +description = Burgaw township, NC +station = ('kilm', 0.004860387322838073) +zone = ('ncz105', 0.00020622832604549741) + +[fips3714190496] +centroid = (0.60025075655262405, -1.364064188744563) +description = Canetuck township, NC +station = ('kilm', 0.0042770817342141255) +zone = ('ncz105', 0.0041740844734337486) + +[fips3714190548] +centroid = (0.60211379080937288, -1.3645891837835631) +description = Caswell township, NC +station = ('kilm', 0.0057670684776634446) +zone = ('ncz105', 0.0038489749853409623) + +[fips3714190728] +centroid = (0.6037652213476099, -1.363378867760475) +description = Columbia township, NC +station = ('kilm', 0.0064911653640751929) +zone = ('ncz105', 0.0029951342403052314) + +[fips3714191272] +centroid = (0.60082133959168593, -1.3623180566411131) +description = Grady township, NC +station = ('kilm', 0.0035475072074119362) +zone = ('ncz105', 0.0027024344659346538) + +[fips3714191516] +centroid = (0.60376303968604494, -1.3572587485653094) +description = Holly township, NC +station = ('koaj', 0.00470370597246683) +zone = ('ncz105', 0.0024715057037573819) + +[fips3714191900] +centroid = (0.60129027465511187, -1.3612045365783405) +description = Long Creek township, NC +station = ('kilm', 0.0034820097212574434) +zone = ('ncz105', 0.0017453931707853176) + +[fips3714192744] +centroid = (0.60083160212768771, -1.3594867835285276) +description = Rocky Point township, NC +station = ('kilm', 0.0027673611376266157) +zone = ('ncz105', 0.0019219805493577516) + +[fips3714193248] +centroid = (0.6004839674472755, -1.3554744635644105) +description = Topsail township, NC +station = ('kilm', 0.0041851764692723281) +zone = ('ncz106', 0.00047826952364601118) + +[fips3714193804] +centroid = (0.60513521754396282, -1.3613924910854878) +description = Union township, NC +station = ('kdpl', 0.0057374516158866587) +zone = ('ncz105', 0.0026905000084688174) + +[fips3714200] +centroid = (0.62513552140121909, -1.3518819825518604) +description = Conetoe town, NC +station = ('ketc', 0.0022847579438557901) +zone = ('ncz028', 0.0025853987767391856) + +[fips3714280] +centroid = (0.62404231697093981, -1.4223918008025671) +description = Connelly Springs town, NC +station = ('khky', 0.0016130161861637351) +zone = ('ncz502', 0.0025593403151311419) + +[fips37143] +centroid = (0.63142977209585627, -1.3335060566294354) +description = Perquimans County, NC +station = ('kede', 0.0034897592359145815) +zone = ('ncz032', 0.00072855841175668173) + +[fips3714340] +centroid = (0.6233481122609591, -1.417501021719336) +description = Conover city, NC +station = ('khky', 0.0024358965727359883) +zone = ('ncz056', 0.00091896613561239426) + +[fips3714390220] +centroid = (0.63369712932712208, -1.335251630227525) +description = Belvidere township, NC +station = ('kede', 0.0049734848107665409) +zone = ('ncz032', 0.0019735548491848554) + +[fips3714390248] +centroid = (0.62997114808008703, -1.3328216083099733) +description = Bethel township, NC +station = ('kede', 0.0030822105610516615) +zone = ('ncz032', 0.0022379660881526463) + +[fips3714391464] +centroid = (0.63132643115084564, -1.335839265133379) +description = Hertford township, NC +station = ('kede', 0.0025566279097155344) +zone = ('ncz031', 0.0010568416836910666) + +[fips3714392248] +centroid = (0.63110688618423738, -1.331394435127325) +description = New Hope township, NC +station = ('kecg', 0.0022754649183873441) +zone = ('ncz015', 0.0024027356691144397) + +[fips3714392448] +centroid = (0.63237022531000087, -1.3339876627832308) +description = Parkville township, NC +station = ('kede', 0.0040451880948364225) +zone = ('ncz032', 0.0004627191959595685) + +[fips3714400] +centroid = (0.63597823975289358, -1.3478950920349448) +description = Conway town, NC +station = ('kasj', 0.0025979235858016058) +zone = ('ncz012', 0.0023879677155495488) + +[fips3714460] +centroid = (0.6250241344883567, -1.405983541625548) +description = Cooleemee town, NC +station = ('kruq', 0.002871470386892856) +zone = ('ncz037', 0.0020660673726914211) + +[fips37145] +centroid = (0.635062256054862, -1.378207464338099) +description = Person County, NC +station = ('ktdf', 0.0017889532308825414) +zone = ('ncz007', 0.00010889930808700323) + +[fips3714590040] +centroid = (0.63525247949003683, -1.3764181876955397) +description = Allensville township, NC +station = ('ktdf', 0.0025970422575644315) +zone = ('ncz007', 0.0015329461076663167) + +[fips3714590464] +centroid = (0.63339131273558769, -1.3804101047607011) +description = Bushy Fork township, NC +station = ('ktdf', 0.0015156411917691809) +zone = ('ncz007', 0.0024202688266662183) + +[fips3714590852] +centroid = (0.63706179251240924, -1.3801124912166509) +description = Cunningham township, NC +station = ('kdan', 0.0038051043722066957) +zone = ('ncz007', 0.0024147853234113975) + +[fips3714591120] +centroid = (0.63349723676789116, -1.3784103065037658) +description = Flat River township, NC +station = ('ktdf', 0.00022744194222155319) +zone = ('ncz007', 0.0016315858211042643) + +[fips3714591512] +centroid = (0.63683678466524207, -1.3764621350861048) +description = Holloway township, NC +station = ('ktdf', 0.003916850824014404) +zone = ('ncz007', 0.0022688995462564962) + +[fips3714592168] +centroid = (0.63318110528047744, -1.3762273708484192) +description = Mount Tirzah township, NC +station = ('ktdf', 0.0018625691411943951) +zone = ('ncz007', 0.0025725825709016856) + +[fips3714592404] +centroid = (0.63519221327096553, -1.3804617665065602) +description = Olive Hill township, NC +station = ('ktdf', 0.0024535739559899115) +zone = ('ncz007', 0.001728375383929842) + +[fips3714592764] +centroid = (0.63517249105041784, -1.3784062747931938) +description = Roxboro township, NC +station = ('ktdf', 0.0018825751778485612) +zone = ('ncz007', 8.5578646625474641e-05) + +[fips3714594100] +centroid = (0.63698601031628765, -1.3783613500182477) +description = Woodsdale township, NC +station = ('ktdf', 0.0036958981832314925) +zone = ('ncz007', 0.001859305274224206) + +[fips3714600] +centroid = (0.60931758493710197, -1.3930134589019101) +description = Cordova CDP, NC +station = ('krcz', 0.00085523452759793145) +zone = ('ncz084', 0.0019000618717670927) + +[fips37147] +centroid = (0.62118126854131561, -1.3504031999832307) +description = Pitt County, NC +station = ('kpgv', 0.00083519740708305442) +zone = ('ncz044', 5.4429093553854466e-05) + +[fips3714700] +centroid = (0.61912738253086119, -1.4116954283086725) +description = Cornelius town, NC +station = ('kjqf', 0.0029190867521772437) +zone = ('ncz071', 0.004021750254366482) + +[fips3714790080] +centroid = (0.62111215350293669, -1.3525375282189096) +description = Arthur township, NC +station = ('kpgv', 0.0015672668615699535) +zone = ('ncz044', 0.0017052842070774763) + +[fips3714790112] +centroid = (0.61903826601925438, -1.3514926519556181) +description = Ayden township, NC +station = ('kpgv', 0.0029228609543255984) +zone = ('ncz044', 0.0023459082319608601) + +[fips3714790224] +centroid = (0.6235289109181732, -1.3514953921225439) +description = Belvoir township, NC +station = ('kpgv', 0.0016845793093680653) +zone = ('ncz044', 0.0024580518560659652) + +[fips3714790252] +centroid = (0.6244364995825028, -1.3503733897596066) +description = Bethel township, NC +station = ('kpgv', 0.0025515364589882559) +zone = ('ncz044', 0.0032132590029588584) + +[fips3714790512] +centroid = (0.62359971892592669, -1.3490459970502948) +description = Carolina township, NC +station = ('kpgv', 0.002248513524088181) +zone = ('ncz044', 0.0026338491929892081) + +[fips3714790652] +centroid = (0.61913881443746177, -1.3483469752315786) +description = Chicod township, NC +station = ('kocw', 0.0033625316108738912) +zone = ('ncz044', 0.0026948105762563657) + +[fips3714791064] +centroid = (0.62265741566277488, -1.3526876439878737) +description = Falkland township, NC +station = ('kpgv', 0.0016404547589112261) +zone = ('ncz044', 0.0023189555305823816) + +[fips3714791084] +centroid = (0.62125068028566743, -1.3542152608689741) +description = Farmville township, NC +station = ('kpgv', 0.002788748738181023) +zone = ('ncz079', 0.0022638523113927256) + +[fips3714791152] +centroid = (0.62248253367172501, -1.3546214338924982) +description = Fountain township, NC +station = ('kpgv', 0.0030882001540663588) +zone = ('ncz079', 0.0032677733546346505) + +[fips3714791328] +centroid = (0.62145792068104921, -1.3504707442252828) +description = Greenville township, NC +station = ('kpgv', 0.00057087348642503497) +zone = ('ncz044', 0.00023508585781080281) + +[fips3714791340] +centroid = (0.61755981506318258, -1.3506618752316688) +description = Grifton township, NC +station = ('kiso', 0.0033815241864294811) +zone = ('ncz044', 0.0036682044149813496) + +[fips3714791344] +centroid = (0.6205997771944286, -1.3476729639810436) +description = Grimesland township, NC +station = ('kocw', 0.0023709293521609136) +zone = ('ncz044', 0.0023393992772013511) + +[fips3714792428] +centroid = (0.62191580781030997, -1.3479160359859688) +description = Pactolus township, NC +station = ('kocw', 0.0027805139261874653) +zone = ('ncz044', 0.0021693204686309541) + +[fips3714793196] +centroid = (0.61830664145011094, -1.3492729945728092) +description = Swift Creek township, NC +station = ('kpgv', 0.0038431398291796266) +zone = ('ncz044', 0.0030691729502425489) + +[fips3714794072] +centroid = (0.62020648470078432, -1.3509349668997284) +description = Winterville township, NC +station = ('kpgv', 0.0017129905577306223) +zone = ('ncz044', 0.0010925703853679302) + +[fips37149] +centroid = (0.61573345017401815, -1.4340963278322916) +description = Polk County, NC +station = ('kfqd', 0.0042153093188613665) +zone = ('ncz510', 0.00045748176745287445) + +[fips3714990740] +centroid = (0.6151897277521442, -1.4339649045396166) +description = Columbus township, NC +station = ('kfqd', 0.0044950571697814296) +zone = ('ncz510', 0.0006270867961024896) + +[fips3714990772] +centroid = (0.61706319907782003, -1.4347776694656851) +description = Cooper Gap township, NC +station = ('kfqd', 0.0040715773345812488) +zone = ('ncz510', 0.0016899233650950962) + +[fips3714991302] +centroid = (0.6149927498927642, -1.431865535248855) +description = Green Creek township, NC +station = ('kfqd', 0.0036660728938977352) +zone = ('ncz510', 0.0015417302041542094) + +[fips3714992816] +centroid = (0.61542334007252364, -1.436370387127885) +description = Saluda township, NC +station = ('kavl', 0.0045008322883693776) +zone = ('ncz509', 0.00043237609094065821) + +[fips3714993776] +centroid = (0.61472260783114052, -1.43570080901365) +description = Tryon township, NC +station = ('kavl', 0.0053782638490186526) +zone = ('ncz509', 0.0012236964393737804) + +[fips3714993980] +centroid = (0.61633265661281278, -1.4339142725380161) +description = White Oak township, NC +station = ('kfqd', 0.0037466162404799206) +zone = ('ncz510', 0.00069451694858251934) + +[fips3715020] +centroid = (0.61416335197892402, -1.3494977231672962) +description = Cove City town, NC +station = ('kewn', 0.0044400542330941999) +zone = ('ncz092', 0.0029531829682840475) + +[fips3715040] +centroid = (0.63330813034343758, -1.4274581425552564) +description = Cove Creek CDP, NC +station = ('ktnb', 0.0024461342534947542) +zone = ('ncz018', 0.0015896966425502951) + +[fips37151] +centroid = (0.62325559235731087, -1.3928812153044863) +description = Randolph County, NC +station = ('khbi', 0.0015938797287313184) +zone = ('ncz039', 7.3780462973600754e-06) + +[fips3715190084] +centroid = (0.62326754786268701, -1.392815032419251) +description = Asheboro township, NC +station = ('khbi', 0.0016438311519258648) +zone = ('ncz039', 5.0961770863160578e-05) + +[fips3715190116] +centroid = (0.62426180957767063, -1.3942486284135465) +description = Back Creek township, NC +station = ('khbi', 0.0019895639702762731) +zone = ('ncz039', 0.0014958838965592276) + +[fips3715190388] +centroid = (0.62049228236579834, -1.389893037092147) +description = Brower township, NC +station = ('k5w8', 0.0032513755345049342) +zone = ('ncz039', 0.0036819932030084908) + +[fips3715190584] +centroid = (0.62231449337134304, -1.3940815305909606) +description = Cedar Grove township, NC +station = ('khbi', 0.00028616929283269734) +zone = ('ncz039', 0.0013619337946239294) + +[fips3715190716] +centroid = (0.62237641765320384, -1.3896201199570124) +description = Coleridge township, NC +station = ('k5w8', 0.0018133587344838168) +zone = ('ncz039', 0.0027901106035354067) + +[fips3715190732] +centroid = (0.62412933908744428, -1.3894329683013211) +description = Columbia township, NC +station = ('k5w8', 0.0017707361748620636) +zone = ('ncz039', 0.0029273296910105042) + +[fips3715190748] +centroid = (0.62229566126871405, -1.3963571432295883) +description = Concord township, NC +station = ('khbi', 0.0015653432991323793) +zone = ('ncz039', 0.0029871370389853305) + +[fips3715191172] +centroid = (0.62417752762809187, -1.3915377481127638) +description = Franklinville township, NC +station = ('khbi', 0.0030212069857121185) +zone = ('ncz039', 0.0014213348224515697) + +[fips3715191276] +centroid = (0.62214587711230784, -1.3915805086794377) +description = Grant township, NC +station = ('khbi', 0.0023198778104156379) +zone = ('ncz039', 0.0015350354054921174) + +[fips3715191784] +centroid = (0.62616348542405864, -1.3928810756781462) +description = Level Cross township, NC +station = ('khbi', 0.0040841368660904306) +zone = ('ncz039', 0.0029011750291550783) + +[fips3715191800] +centroid = (0.62578056018617112, -1.3893114061189198) +description = Liberty township, NC +station = ('k5w8', 0.00296254461470899) +zone = ('ncz039', 0.0038354470915959366) + +[fips3715192252] +centroid = (0.62059742099993853, -1.396329340134604) +description = New Hope township, NC +station = ('khbi', 0.0022817049656405834) +zone = ('ncz039', 0.0038694498898175938) + +[fips3715192268] +centroid = (0.62585454469316315, -1.3942208253185622) +description = New Market township, NC +station = ('khbi', 0.0035808491513113203) +zone = ('ncz039', 0.0028119842895745809) + +[fips3715192532] +centroid = (0.62082365057758193, -1.3887048169373892) +description = Pleasant Grove township, NC +station = ('k5w8', 0.0025013084442205651) +zone = ('ncz039', 0.0041768864243228185) + +[fips3715192580] +centroid = (0.62580763024286945, -1.3913219206974623) +description = Providence township, NC +station = ('k5w8', 0.0040112199296655632) +zone = ('ncz039', 0.0028409613150408393) + +[fips3715192620] +centroid = (0.62507618020665123, -1.3928163239628972) +description = Randleman township, NC +station = ('khbi', 0.0030900963082207918) +zone = ('ncz039', 0.0018145466603150407) + +[fips3715192668] +centroid = (0.62041768699356803, -1.3919720558438302) +description = Richland township, NC +station = ('khbi', 0.0027306822880810203) +zone = ('ncz039', 0.0029382768782285984) + +[fips3715193208] +centroid = (0.62420204950408231, -1.3961394308586945) +description = Tabernacle township, NC +station = ('khbi', 0.0023722915663640506) +zone = ('ncz038', 0.0031533549699135442) + +[fips3715193768] +centroid = (0.62597212752486997, -1.3960557248677687) +description = Trinity township, NC +station = ('khbi', 0.0039226341720099102) +zone = ('ncz038', 0.0034199238789522413) + +[fips3715193808] +centroid = (0.62069934822825501, -1.3942761697091428) +description = Union township, NC +station = ('khbi', 0.0015834030007905542) +zone = ('ncz039', 0.0028037503828409987) + +[fips3715260] +centroid = (0.61497257388661108, -1.4150124963652575) +description = Cramerton town, NC +station = ('kakh', 0.001243822636933469) +zone = ('ncz070', 0.001828099122819145) + +[fips37153] +centroid = (0.61089939429147677, -1.3918618383015666) +description = Richmond County, NC +station = ('krcz', 0.0019617863550814981) +zone = ('ncz084', 6.8872483567742354e-05) + +[fips3715320] +centroid = (0.6305033338756052, -1.373193988608453) +description = Creedmoor city, NC +station = ('krdu', 0.0041237250529238675) +zone = ('ncz008', 0.0031411379753589742) + +[fips3715390200] +centroid = (0.6117434878776189, -1.3895970292510087) +description = Beaverdam township, NC +station = ('khff', 0.001712670153198611) +zone = ('ncz084', 0.0020126277598368171) + +[fips3715390280] +centroid = (0.61163466659875709, -1.3934740512915114) +description = Black Jack township, NC +station = ('krcz', 0.0029236052693425137) +zone = ('ncz084', 0.0014764837572563887) + +[fips3715391988] +centroid = (0.6089159846762181, -1.3904744760791563) +description = Marks Creek township, NC +station = ('krcz', 0.0013128561869506982) +zone = ('ncz084', 0.0023475673241197944) + +[fips3715392084] +centroid = (0.61277091084839042, -1.3916893648648845) +description = Mineral Springs township, NC +station = ('khff', 0.0036474015257438063) +zone = ('ncz084', 0.0018084333953832746) + +[fips3715392736] +centroid = (0.61033963229377719, -1.3924269235534847) +description = Rockingham township, NC +station = ('krcz', 0.0014238614522863199) +zone = ('ncz084', 0.00077905270954950359) + +[fips3715393116] +centroid = (0.61298118811667068, -1.3946723245427606) +description = Steeles township, NC +station = ('kafp', 0.0029755716742244759) +zone = ('ncz084', 0.0030547465638218097) + +[fips3715394088] +centroid = (0.60826204471208078, -1.3931252123339153) +description = Wolf Pit township, NC +station = ('krcz', 0.0010999640647523785) +zone = ('ncz084', 0.0028966482983463211) + +[fips3715420] +centroid = (0.62607440381903678, -1.3334163117992976) +description = Creswell town, NC +station = ('kede', 0.003617711577017119) +zone = ('ncz045', 0.002654245483224071) + +[fips3715440] +centroid = (0.63126204595473956, -1.4170893160020832) +description = Cricket CDP, NC +station = ('kukf', 0.0017603201204712871) +zone = ('ncz019', 0.00077994967546684451) + +[fips37155] +centroid = (0.60456826478974501, -1.3805708146782247) +description = Robeson County, NC +station = ('klbt', 0.00084250924189229587) +zone = ('ncz087', 4.0689420829810699e-05) + +[fips3715580] +centroid = (0.62870595890531644, -1.429962951831256) +description = Crossnore town, NC +station = ('ktnb', 0.005030982622727425) +zone = ('ncz033', 0.00095693782103404104) + +[fips3715590028] +centroid = (0.60415545951506333, -1.3848219480438924) +description = Alfordsville township, NC +station = ('kmeb', 0.002945529330506113) +zone = ('ncz087', 0.0034868847712571007) + +[fips3715590120] +centroid = (0.60356061639939862, -1.3808680791564245) +description = Back Swamp township, NC +station = ('klbt', 0.00080416265734856304) +zone = ('ncz087', 0.0010439181874207343) + +[fips3715590372] +centroid = (0.60256165974872711, -1.3783516983474842) +description = Britts township, NC +station = ('klbt', 0.0018794905169514206) +zone = ('ncz087', 0.0027506366516364066) + +[fips3715590460] +centroid = (0.60563956533791163, -1.3808684980354449) +description = Burnt Swamp township, NC +station = ('klbt', 0.0019037245758858315) +zone = ('ncz087', 0.0010759133292321886) + +[fips3715590960] +centroid = (0.60512532152710397, -1.3765750404354162) +description = East Howellsville township, NC +station = ('klbt', 0.0030594990272614828) +zone = ('ncz087', 0.0033682786097410447) + +[fips3715591052] +centroid = (0.60175571906003367, -1.3810525255517752) +description = Fairmont township, NC +station = ('klbt', 0.0023063037751394851) +zone = ('ncz087', 0.0028507821776745353) + +[fips3715591200] +centroid = (0.60112755760894843, -1.3824924570912556) +description = Gaddys township, NC +station = ('klbt', 0.0034502644337615351) +zone = ('scz024', 0.0025737589676461158) + +[fips3715591936] +centroid = (0.60876974353819335, -1.3799463533251537) +description = Lumber Bridge township, NC +station = ('kfay', 0.0031656385783604187) +zone = ('ncz086', 0.0034366435126223695) + +[fips3715591940] +centroid = (0.60453478937469174, -1.3790133701202076) +description = Lumberton township, NC +station = ('klbt', 0.0010237976767179043) +zone = ('ncz087', 0.0013199099709930954) + +[fips3715592016] +centroid = (0.60550140507432382, -1.3851732130091488) +description = Maxton township, NC +station = ('kmeb', 0.0015825696933773111) +zone = ('ncz085', 0.0030778268061285095) + +[fips3715592420] +centroid = (0.60139082307331915, -1.3791410584082835) +description = Orrum township, NC +station = ('klbt', 0.0025857386771501734) +zone = ('ncz087', 0.0034164229839737815) + +[fips3715592444] +centroid = (0.60912589542535533, -1.3785830068332507) +description = Parkton township, NC +station = ('kfay', 0.0020729900545873514) +zone = ('ncz088', 0.0034499334320798299) + +[fips3715592472] +centroid = (0.60517389404018707, -1.3822609915258561) +description = Pembroke township, NC +station = ('klbt', 0.0022816111081174506) +zone = ('ncz087', 0.0014757996688105342) + +[fips3715592484] +centroid = (0.60655301830852781, -1.3815088767912942) +description = Philadelphus township, NC +station = ('klbt', 0.00295263452014004) +zone = ('ncz087', 0.0021014525940056461) + +[fips3715592608] +centroid = (0.60484940242565621, -1.3805301485066532) +description = Raft Swamp township, NC +station = ('klbt', 0.00106856780464362) +zone = ('ncz087', 0.00027494531277793177) + +[fips3715592640] +centroid = (0.60759436900673036, -1.3818836164349897) +description = Red Springs township, NC +station = ('kmeb', 0.0027785688116169398) +zone = ('ncz087', 0.0031856001571593756) + +[fips3715592656] +centroid = (0.60745149635416207, -1.3802449617068775) +description = Rennert township, NC +station = ('klbt', 0.0035745405250944455) +zone = ('ncz087', 0.0028839138856705856) + +[fips3715592760] +centroid = (0.60267044612100396, -1.3838904134622254) +description = Rowland township, NC +station = ('klbt', 0.0034460880420465255) +zone = ('scz024', 0.002735020359401858) + +[fips3715592780] +centroid = (0.60612525556215668, -1.3793472516061143) +description = Saddletree township, NC +station = ('klbt', 0.0022997898518167595) +zone = ('ncz087', 0.0018615718492913942) + +[fips3715592796] +centroid = (0.60751385696833582, -1.3782744675280831) +description = St. Pauls township, NC +station = ('kfay', 0.0032986963455532196) +zone = ('ncz087', 0.003505804538702998) + +[fips3715592904] +centroid = (0.60824549899077185, -1.3810447937431889) +description = Shannon township, NC +station = ('kmeb', 0.003611267708263372) +zone = ('ncz086', 0.0033138520043833066) + +[fips3715592984] +centroid = (0.60699800745461641, -1.3835515403346583) +description = Smiths township, NC +station = ('kmeb', 0.0013645636530741454) +zone = ('ncz085', 0.0031862934844604741) + +[fips3715593004] +centroid = (0.60295903631282111, -1.3794292122677878) +description = Smyrna township, NC +station = ('klbt', 0.0010278055232557776) +zone = ('ncz087', 0.0018960890474417028) + +[fips3715593120] +centroid = (0.60008769044061017, -1.3799121448718146) +description = Sterlings township, NC +station = ('klbt', 0.0037965693333038572) +zone = ('ncz087', 0.0045334170748574975) + +[fips3715593236] +centroid = (0.60271542325582783, -1.3820102924320996) +description = Thompson township, NC +station = ('klbt', 0.0020440281031417749) +zone = ('ncz087', 0.0021925913397812628) + +[fips3715593812] +centroid = (0.6039700008287463, -1.3831353316679351) +description = Union township, NC +station = ('klbt', 0.0026038309737064762) +zone = ('ncz087', 0.0021617301268138686) + +[fips3715593952] +centroid = (0.60601472386062782, -1.3775914329253154) +description = West Howellsville township, NC +station = ('klbt', 0.0028947862834555684) +zone = ('ncz087', 0.0028698160839833063) + +[fips3715593962] +centroid = (0.6001460717040894, -1.3810036214261343) +description = Whitehouse township, NC +station = ('klbt', 0.0038330312766460526) +zone = ('scz024', 0.0036484540819696596) + +[fips3715594080] +centroid = (0.60319268353978561, -1.3774759968485886) +description = Wisharts township, NC +station = ('klbt', 0.0021694760644796929) +zone = ('ncz087', 0.0029356104988799022) + +[fips37157] +centroid = (0.63496696107770312, -1.3924740998031662) +description = Rockingham County, NC +station = ('ksif', 0.0013969933737913317) +zone = ('ncz005', 0.00028654027288945708) + +[fips3715791564] +centroid = (0.63374404377741567, -1.3958376110711472) +description = Huntsville township, NC +station = ('ksif', 0.00286279907310672) +zone = ('ncz005', 0.0031869402810395168) + +[fips3715791752] +centroid = (0.63726889328145098, -1.3917583751835085) +description = Leaksville township, NC +station = ('ksif', 0.0019792980529030071) +zone = ('ncz005', 0.0020898083578427037) + +[fips3715791956] +centroid = (0.63615368024930408, -1.3961636211221271) +description = Madison township, NC +station = ('ksif', 0.0020317088353877123) +zone = ('ncz005', 0.0032132873313967599) + +[fips3715792020] +centroid = (0.63630500029545201, -1.3943435743248549) +description = Mayo township, NC +station = ('ksif', 0.000640041336710944) +zone = ('ncz005', 0.0019379052426242655) + +[fips3715792232] +centroid = (0.63376245700102429, -1.3940183671253308) +description = New Bethel township, NC +station = ('ksif', 0.0022556001052628076) +zone = ('ncz005', 0.0019975073459230532) + +[fips3715792568] +centroid = (0.63733142842854995, -1.3945017884215483) +description = Price township, NC +station = ('ksif', 0.0015007523938298645) +zone = ('ncz005', 0.0027270737262695679) + +[fips3715792652] +centroid = (0.63451132542317745, -1.3899233011013765) +description = Reidsville township, NC +station = ('ksif', 0.0033445702614735241) +zone = ('ncz005', 0.0020735032927252949) + +[fips3715792772] +centroid = (0.63639909099542702, -1.3890308618949543) +description = Ruffin township, NC +station = ('ksif', 0.0037333658438681912) +zone = ('ncz005', 0.0029057832423726049) + +[fips3715792960] +centroid = (0.63345201528697204, -1.3917694754775511) +description = Simpsonville township, NC +station = ('ksif', 0.0029603613435002451) +zone = ('ncz005', 0.0018377628271272991) + +[fips3715793936] +centroid = (0.63553724741079221, -1.3923158158933029) +description = Wentworth township, NC +station = ('ksif', 0.0011648044938673593) +zone = ('ncz005', 0.00030599624719889493) + +[fips3715794032] +centroid = (0.63359912908962268, -1.3893008643302378) +description = Williamsburg township, NC +station = ('ksif', 0.0042416718339076164) +zone = ('ncz005', 0.0029410678521356749) + +[fips3715880] +centroid = (0.61629570799254807, -1.4517827265271313) +description = Cullowhee CDP, NC +station = ('k1a5', 0.0037410678494671171) +zone = ('ncz059', 0.00092018291911247197) + +[fips37159] +centroid = (0.62202169693602849, -1.4054323841010607) +description = Rowan County, NC +station = ('kruq', 0.00022485419370924607) +zone = ('ncz057', 1.1308999672596012e-05) + +[fips3715990100] +centroid = (0.62098271988560882, -1.408031912395566) +description = Atwell township, NC +station = ('kruq', 0.0025509658706629082) +zone = ('ncz057', 0.0023661441976247427) + +[fips3715990660] +centroid = (0.62044898074705634, -1.4064366814592433) +description = China Grove township, NC +station = ('kruq', 0.0019959649404757925) +zone = ('ncz057', 0.0017822414086507937) + +[fips3715990692] +centroid = (0.62387665031834061, -1.4082733263377021) +description = Cleveland township, NC +station = ('kruq', 0.0029468120945049816) +zone = ('ncz036', 0.0028386151952148825) + +[fips3715991160] +centroid = (0.62356599916477806, -1.4050546075844665) +description = Franklin township, NC +station = ('kruq', 0.0013685228186575424) +zone = ('ncz057', 0.0015661923193992405) + +[fips3715991256] +centroid = (0.6202905572108528, -1.4034211539375252) +description = Gold Hill township, NC +station = ('kruq', 0.0024435211899400248) +zone = ('ncz057', 0.0023801574307419871) + +[fips3715991840] +centroid = (0.62079788951782255, -1.4049253485000637) +description = Litaker township, NC +station = ('kruq', 0.001441279895376329) +zone = ('ncz057', 0.0012948224774731794) + +[fips3715991880] +centroid = (0.6223006878169598, -1.4059653378414498) +description = Locke township, NC +station = ('kruq', 0.00056348700030258738) +zone = ('ncz057', 0.0005193462655326066) + +[fips3715992128] +centroid = (0.62057597090343153, -1.4010641915024618) +description = Morgan township, NC +station = ('kvuj', 0.003010550464790145) +zone = ('ncz038', 0.0042267394088328124) + +[fips3715992172] +centroid = (0.62246754129345039, -1.4091016246941133) +description = Mount Ulla township, NC +station = ('kruq', 0.0031150498259623419) +zone = ('ncz036', 0.0031628736360499341) + +[fips3715992584] +centroid = (0.62194296513347092, -1.402670243480147) +description = Providence township, NC +station = ('kruq', 0.0021383555968704448) +zone = ('ncz057', 0.0022373507564411818) + +[fips3715992812] +centroid = (0.62264036379598287, -1.4039373525170948) +description = Salisbury township, NC +station = ('kruq', 0.0011734333780679682) +zone = ('ncz057', 0.0013520501058411395) + +[fips3715992860] +centroid = (0.62493990489865547, -1.4079216424934251) +description = Scotch Irish township, NC +station = ('kruq', 0.0034711023999199763) +zone = ('ncz037', 0.0027634648692447627) + +[fips3715993112] +centroid = (0.62272977701356258, -1.4078587408271834) +description = Steele township, NC +station = ('kruq', 0.002157879742999524) +zone = ('ncz057', 0.0021010680522397739) + +[fips3715993828] +centroid = (0.62425097108301575, -1.406382698425479) +description = Unity township, NC +station = ('kruq', 0.002228546181827341) +zone = ('ncz057', 0.0023557752742799335) + +[fips37161] +centroid = (0.61789449940054486, -1.4297664452107739) +description = Rutherford County, NC +station = ('kfqd', 0.00049750292913221098) +zone = ('ncz508', 0.00045187816543395198) + +[fips3716180] +centroid = (0.61641425075534351, -1.4169138405990878) +description = Dallas town, NC +station = ('kakh', 0.0021119808148487586) +zone = ('ncz070', 0.00041136831909206718) + +[fips3716190480] +centroid = (0.61982478119337303, -1.4298877630470801) +description = Camp Creek township, NC +station = ('kfqd', 0.0014885880077126384) +zone = ('ncz506', 0.0021010327179015183) + +[fips3716190656] +centroid = (0.61865326383955699, -1.4343713917224057) +description = Chimney Rock township, NC +station = ('kfqd', 0.0035464200554929707) +zone = ('ncz507', 0.0003548890153638796) + +[fips3716190720] +centroid = (0.61699942474695224, -1.4268740506677839) +description = Colfax township, NC +station = ('keho', 0.0028176504381884331) +zone = ('ncz508', 0.0020718139690763023) + +[fips3716190768] +centroid = (0.61666329178631052, -1.4287378005095261) +description = Cool Spring township, NC +station = ('kfqd', 0.0019835400345950141) +zone = ('ncz508', 0.0011721957389931013) + +[fips3716190924] +centroid = (0.61885004971271929, -1.4265588092982886) +description = Duncans Creek township, NC +station = ('kfqd', 0.0028778240565853759) +zone = ('ncz508', 0.0024375895928092158) + +[fips3716191224] +centroid = (0.6184355863752482, -1.431016100955202) +description = Gilkey township, NC +station = ('kfqd', 0.00080456033846650966) +zone = ('ncz508', 0.0015990495568984971) + +[fips3716191252] +centroid = (0.62070826686073266, -1.426680703093248) +description = Golden Valley township, NC +station = ('kfqd', 0.0036143961575223434) +zone = ('ncz504', 0.0028533338812298608) + +[fips3716191308] +centroid = (0.61787060584308517, -1.4322449000150685) +description = Green Hill township, NC +station = ('kfqd', 0.0018610391223259437) +zone = ('ncz507', 0.0021737920019548082) + +[fips3716191488] +centroid = (0.61485188436883575, -1.4277880272371759) +description = High Shoals township, NC +station = ('keho', 0.0029638094089871024) +zone = ('ncz508', 0.0031416131274437258) + +[fips3716191892] +centroid = (0.61885912542482968, -1.4287479757790651) +description = Logan Store township, NC +station = ('kfqd', 0.0011699096097547465) +zone = ('ncz508', 0.0011662853437615593) + +[fips3716192132] +centroid = (0.61951421730627332, -1.4321173339000401) +description = Morgan township, NC +station = ('kfqd', 0.0020619096320849749) +zone = ('ncz507', 0.0020423975903214511) + +[fips3716192776] +centroid = (0.61726508131239821, -1.4302941629634069) +description = Rutherfordton township, NC +station = ('kfqd', 0.0010964447682610691) +zone = ('ncz508', 0.00099589118330679948) + +[fips3716193172] +centroid = (0.61490396499371536, -1.4295446836760155) +description = Sulphur Springs township, NC +station = ('kfqd', 0.0034603486416328781) +zone = ('ncz508', 0.002869878087177171) + +[fips3716193816] +centroid = (0.61620091916087227, -1.4308489158661535) +description = Union township, NC +station = ('kfqd', 0.0022405755501845818) +zone = ('ncz508', 0.0020419854560540574) + +[fips3716220] +centroid = (0.61646072887332404, -1.4374679199747091) +description = Dana CDP, NC +station = ('kavl', 0.0031458996172603225) +zone = ('ncz509', 0.0011432314781197809) + +[fips3716240] +centroid = (0.63552504755932082, -1.4000079356924473) +description = Danbury town, NC +station = ('kmtv', 0.0047438463910193752) +zone = ('ncz004', 0.00040052182395833882) + +[fips37163] +centroid = (0.61070074091601489, -1.3678386552382187) +description = Sampson County, NC +station = ('kctz', 0.00027890181022684603) +zone = ('ncz089', 1.6352678499007147e-05) + +[fips3716390228] +centroid = (0.61134564007462677, -1.3685220040002519) +description = Belvoir township, NC +station = ('kctz', 0.0011187945680554208) +zone = ('ncz089', 0.00084351498044402248) + +[fips3716390904] +centroid = (0.61256586956786607, -1.3717518754074076) +description = Dismal township, NC +station = ('kctz', 0.0039256071879155913) +zone = ('ncz089', 0.003701297550259869) + +[fips3716391164] +centroid = (0.60524737240169602, -1.3656460853654007) +description = Franklin township, NC +station = ('kctz', 0.0054638737330938193) +zone = ('ncz096', 0.0046921132308557672) + +[fips3716391380] +centroid = (0.612817825298684, -1.3668551796580124) +description = Halls township, NC +station = ('kctz', 0.002482908287280562) +zone = ('ncz089', 0.0022489920446116338) + +[fips3716391460] +centroid = (0.61305480610451979, -1.3688666192610581) +description = Herring township, NC +station = ('kctz', 0.0027788338830804266) +zone = ('ncz089', 0.002485619673257685) + +[fips3716391528] +centroid = (0.61151181287270906, -1.3699641521078822) +description = Honeycutt township, NC +station = ('kctz', 0.0021268119706568463) +zone = ('ncz089', 0.0019160801140684128) + +[fips3716391836] +centroid = (0.60785299189529085, -1.3668187720898157) +description = Lisbon township, NC +station = ('kctz', 0.0026897270408970096) +zone = ('ncz089', 0.0029827899524423785) + +[fips3716391844] +centroid = (0.61044021561856965, -1.370721188670935) +description = Little Coharie township, NC +station = ('kctz', 0.0024571797732957411) +zone = ('ncz089', 0.0023804421099831215) + +[fips3716391944] +centroid = (0.60881215503901687, -1.3690312736226913) +description = McDaniels township, NC +station = ('kctz', 0.0019485456392291304) +zone = ('ncz089', 0.0021421879131543697) + +[fips3716392088] +centroid = (0.61399665558206606, -1.3711638914357032) +description = Mingo township, NC +station = ('khrj', 0.0042511111270744067) +zone = ('ncz089', 0.0042632160472753661) + +[fips3716392288] +centroid = (0.61501578823889047, -1.3670911132662971) +description = Newton Grove township, NC +station = ('kctz', 0.0046062309393749253) +zone = ('ncz089', 0.0043418102662784435) + +[fips3716392308] +centroid = (0.61133598840386327, -1.3664875260510798) +description = North Clinton township, NC +station = ('kctz', 0.0013522337597136054) +zone = ('ncz089', 0.0012657894202777208) + +[fips3716392516] +centroid = (0.61383519517296403, -1.3654635413789347) +description = Piney Grove township, NC +station = ('kctz', 0.003867116062894028) +zone = ('ncz089', 0.0036730841750836998) + +[fips3716392524] +centroid = (0.61502467196478317, -1.3705149605665192) +description = Plain View township, NC +station = ('khrj', 0.0038531854330250983) +zone = ('ncz089', 0.0048333286734692253) + +[fips3716393032] +centroid = (0.60998536536220749, -1.3667187821769691) +description = South Clinton township, NC +station = ('kctz', 0.00093911818731591871) +zone = ('ncz089', 0.0011715291631303492) + +[fips3716393052] +centroid = (0.60689356695217711, -1.3677378275673309) +description = South River township, NC +station = ('kctz', 0.0035450577420209697) +zone = ('ncz089', 0.0038241573613081691) + +[fips3716393224] +centroid = (0.60799263568874284, -1.3652339084092497) +description = Taylors Bridge township, NC +station = ('kctz', 0.003185545139111368) +zone = ('ncz089', 0.0034601500037934481) + +[fips3716393780] +centroid = (0.61053146143186399, -1.3646673745340523) +description = Turkey township, NC +station = ('kctz', 0.0025049343902118419) +zone = ('ncz089', 0.0026022113527561955) + +[fips3716393939] +centroid = (0.61462740012044426, -1.3689049815980172) +description = Westbrook township, NC +station = ('kctz', 0.0042990937425144166) +zone = ('ncz089', 0.004007206844576592) + +[fips3716400] +centroid = (0.61934214529531917, -1.4106951975676469) +description = Davidson town, NC +station = ('kjqf', 0.002418078526674969) +zone = ('ncz071', 0.004170285471340348) + +[fips3716480] +centroid = (0.60721636559733339, -1.3346281811654201) +description = Davis CDP, NC +station = ('kmrh', 0.0027890150577546732) +zone = ('ncz095', 0.0029868889849119697) + +[fips37165] +centroid = (0.60807311282055243, -1.3871412113671127) +description = Scotland County, NC +station = ('kmeb', 0.0018692125013347978) +zone = ('ncz085', 4.9053470653060693e-05) + +[fips3716591748] +centroid = (0.60903775629812973, -1.3877151803449232) +description = Laurel Hill township, NC +station = ('khff', 0.0024136913996249442) +zone = ('ncz085', 0.0010372011185057959) + +[fips3716593080] +centroid = (0.60962284302327563, -1.3861979656261647) +description = Spring Hill township, NC +station = ('khff', 0.0021285787675479097) +zone = ('ncz085', 0.0017362509353700591) + +[fips3716593132] +centroid = (0.60635651168804594, -1.3866667610632504) +description = Stewartsville township, NC +station = ('kmeb', 0.0014006136594945776) +zone = ('ncz085', 0.0017890800047682621) + +[fips3716594036] +centroid = (0.60728680708594385, -1.3889373820602176) +description = Williamson township, NC +station = ('krcz', 0.0030627546985033151) +zone = ('ncz085', 0.0016404363754901926) + +[fips37167] +centroid = (0.61628488695118577, -1.4007027338143738) +description = Stanly County, NC +station = ('kvuj', 0.0023670588422244243) +zone = ('ncz073', 5.8088896834950057e-05) + +[fips3716730] +centroid = (0.61011692828122277, -1.3863689729862751) +description = Deercroft CDP, NC +station = ('khff', 0.0016383842352227808) +zone = ('ncz085', 0.0021357073566940911) + +[fips3716780] +centroid = (0.59897631713281774, -1.3653136350494808) +description = Delco CDP, NC +station = ('kilm', 0.0047980558021025414) +zone = ('ncz109', 0.0037180482620295875) + +[fips3716790048] +centroid = (0.61691618999492459, -1.4020030739202796) +description = Almond township, NC +station = ('kvuj', 0.0028122940137721092) +zone = ('ncz073', 0.0012669808650127002) + +[fips3716790264] +centroid = (0.61491986494320094, -1.4019214448711639) +description = Big Lick township, NC +station = ('kvuj', 0.0040553907549601559) +zone = ('ncz073', 0.0017408784367902502) + +[fips3716790596] +centroid = (0.61479130399049908, -1.3983840639030993) +description = Center township, NC +station = ('kvuj', 0.0033721036938085184) +zone = ('ncz073', 0.0023869993172008063) + +[fips3716791032] +centroid = (0.61603830683446392, -1.4009887583721905) +description = Endy township, NC +station = ('kvuj', 0.0027054857170983621) +zone = ('ncz073', 0.00039456308184985422) + +[fips3716791196] +centroid = (0.61499683396321381, -1.4035588429622148) +description = Furr township, NC +station = ('keqy', 0.0047742612849736308) +zone = ('ncz073', 0.0027218801818620591) + +[fips3716791416] +centroid = (0.61884268442327584, -1.3997541997257923) +description = Harris township, NC +station = ('kvuj', 0.00099314916879868296) +zone = ('ncz073', 0.0026327583548379674) + +[fips3716792296] +centroid = (0.6174218991456899, -1.3988452497046464) +description = North Albemarle township, NC +station = ('kvuj', 0.00071673636758589569) +zone = ('ncz073', 0.0018372587363451247) + +[fips3716792680] +centroid = (0.61826140251589923, -1.4014687762763667) +description = Ridenhour township, NC +station = ('kvuj', 0.002100325378607092) +zone = ('ncz073', 0.0020647722474330045) + +[fips3716793028] +centroid = (0.61633944594360301, -1.3993158428308616) +description = South Albemarle township, NC +station = ('kvuj', 0.0018303136175512934) +zone = ('ncz073', 0.001080043338979469) + +[fips3716793800] +centroid = (0.61473733841002731, -1.4000234342162052) +description = Tyson township, NC +station = ('kvuj', 0.003522365598167538) +zone = ('ncz073', 0.0016516381700983796) + +[fips3716820] +centroid = (0.61761184332818453, -1.4209197901114352) +description = Dellview town, NC +station = ('keho', 0.0035769064786227017) +zone = ('ncz068', 0.0022285440330631588) + +[fips3716860] +centroid = (0.60764924215841298, -1.3650345918086721) +description = Delway CDP, NC +station = ('kctz', 0.0035553531798116493) +zone = ('ncz089', 0.0038323449736180843) + +[fips37169] +centroid = (0.63537306428805718, -1.400439468350003) +description = Stokes County, NC +station = ('kint', 0.0047281662058532908) +zone = ('ncz004', 4.1924233637071536e-05) + +[fips3716980] +centroid = (0.62200026429281396, -1.3982108574281316) +description = Denton town, NC +station = ('khbi', 0.0030843046887400194) +zone = ('ncz038', 0.003064567015204577) + +[fips3716990208] +centroid = (0.63512473884208331, -1.3976178294548887) +description = Beaver Island township, NC +station = ('ksif', 0.0033138834992475839) +zone = ('ncz004', 0.0022838140020799919) + +[fips3716990260] +centroid = (0.63709142820310816, -1.4026233115765609) +description = Big Creek township, NC +station = ('kmwk', 0.0027514982948086165) +zone = ('ncz004', 0.0024844447557212795) + +[fips3716990876] +centroid = (0.63543530272918325, -1.4000425455715144) +description = Danbury township, NC +station = ('kint', 0.004795499665879212) +zone = ('ncz004', 0.00033903556299333105) + +[fips3716992028] +centroid = (0.63410597270440172, -1.4000463503892837) +description = Meadows township, NC +station = ('kint', 0.0034682059856480287) +zone = ('ncz004', 0.0012663301648746168) + +[fips3716992480] +centroid = (0.6363876067289489, -1.4005419191770951) +description = Peters Creek township, NC +station = ('kmtv', 0.0043784347706114632) +zone = ('ncz004', 0.0010593088720358889) + +[fips3716992588] +centroid = (0.63580805269753171, -1.4026730185536578) +description = Quaker Gap township, NC +station = ('kmwk', 0.0026629171562182327) +zone = ('ncz004', 0.0018564667581401331) + +[fips3716992852] +centroid = (0.63358815096862753, -1.3982919803317642) +description = Sauratown township, NC +station = ('kint', 0.0033730383143498271) +zone = ('ncz004', 0.0024578438701768988) + +[fips3716993016] +centroid = (0.63673789430982419, -1.3983043547161609) +description = Snow Creek township, NC +station = ('kmtv', 0.0029859890903544276) +zone = ('ncz004', 0.0022225755286595737) + +[fips3716994108] +centroid = (0.63398755211465385, -1.4026991286792676) +description = Yadkin township, NC +station = ('kmwk', 0.0035000021246895151) +zone = ('ncz004', 0.0022594167445176951) + +[fips3717000] +centroid = (0.62034598886789627, -1.4143821357993149) +description = Denver CDP, NC +station = ('kipj', 0.0020417297970754282) +zone = ('ncz069', 0.0028204842410071303) + +[fips37171] +centroid = (0.63556890768342345, -1.4082444411385815) +description = Surry County, NC +station = ('kmwk', 0.0020265444499151402) +zone = ('ncz003', 2.6660613592960193e-05) + +[fips3717180] +centroid = (0.61733330623285865, -1.453032137925464) +description = Dillsboro town, NC +station = ('k1a5', 0.0035607972493378261) +zone = ('ncz059', 0.0010712960604478987) + +[fips3717190412] +centroid = (0.63534677962952213, -1.4116526502887059) +description = Bryan township, NC +station = ('kukf', 0.00431044651593601) +zone = ('ncz003', 0.0027267438167137698) + +[fips3717190908] +centroid = (0.63523802816383035, -1.4089159216617013) +description = Dobson township, NC +station = ('kmwk', 0.0026542775270642464) +zone = ('ncz003', 0.00060726501327870621) + +[fips3717190984] +centroid = (0.63517912330157544, -1.406713298692392) +description = Eldora township, NC +station = ('kmwk', 0.0013282502128321807) +zone = ('ncz003', 0.0013126588987532725) + +[fips3717191016] +centroid = (0.63331308707851319, -1.4108147875279935) +description = Elkin township, NC +station = ('kukf', 0.0037166084463548963) +zone = ('ncz003', 0.0030373425748082324) + +[fips3717191168] +centroid = (0.63682753442020656, -1.4115188184416629) +description = Franklin township, NC +station = ('khlx', 0.0049377588902029092) +zone = ('ncz003', 0.0029017765494526787) + +[fips3717191904] +centroid = (0.63549352691302974, -1.405711811314305) +description = Long Hill township, NC +station = ('kmwk', 0.00086442965049710106) +zone = ('ncz003', 0.0020635678520445019) + +[fips3717191996] +centroid = (0.63360363203909276, -1.4093587989593948) +description = Marsh township, NC +station = ('kmwk', 0.0038964296022863847) +zone = ('ncz003', 0.002140629562177648) + +[fips3717192156] +centroid = (0.63702868361649889, -1.4067205592620804) +description = Mount Airy township, NC +station = ('kmwk', 0.00094325436736010667) +zone = ('ncz003', 0.0019300435618825333) + +[fips3717192496] +centroid = (0.63498512995521639, -1.4047648131154653) +description = Pilot township, NC +station = ('kmwk', 0.0016431035647323494) +zone = ('ncz004', 0.0034957668215435376) + +[fips3717192732] +centroid = (0.63373880778965963, -1.4075924908497914) +description = Rockford township, NC +station = ('kmwk', 0.0029324240453138537) +zone = ('ncz003', 0.0019004965321088359) + +[fips3717192936] +centroid = (0.63363841645108498, -1.4048191626683724) +description = Shoals township, NC +station = ('kmwk', 0.0028443358292152697) +zone = ('ncz003', 0.003380755329344082) + +[fips3717192948] +centroid = (0.63385022960910709, -1.4062541898326548) +description = Siloam township, NC +station = ('kmwk', 0.0025067912788905404) +zone = ('ncz003', 0.0023588820147435359) + +[fips3717193064] +centroid = (0.63644446955597889, -1.4051948098832792) +description = South Westfield township, NC +station = ('kmwk', 0.00058899409313908544) +zone = ('ncz003', 0.0026314983562406814) + +[fips3717193128] +centroid = (0.63728385075314053, -1.4093678223116275) +description = Stewarts Creek township, NC +station = ('kmwk', 0.0029306175770712284) +zone = ('ncz003', 0.0019366956745415418) + +[fips3717193948] +centroid = (0.63713703365646268, -1.404628782153565) +description = Westfield township, NC +station = ('kmwk', 0.0013049917536159103) +zone = ('ncz003', 0.003330397530278412) + +[fips37173] +centroid = (0.62079352619469252, -1.4567497764986745) +description = Swain County, NC +station = ('k1a5', 0.0061860670144767999) +zone = ('ncz051', 0.001484491960443291) + +[fips3717325] +centroid = (0.60924017958477594, -1.3909104069664271) +description = Dobbins Heights town, NC +station = ('krcz', 0.00099931642530179518) +zone = ('ncz084', 0.0018969518250837735) + +[fips3717340] +centroid = (0.63516723760936933, -1.4089491876372444) +description = Dobson town, NC +station = ('kmwk', 0.002708646806823172) +zone = ('ncz003', 0.00066893236646129307) + +[fips3717390624] +centroid = (0.62043063733661785, -1.4546689600578617) +description = Charleston township, NC +station = ('k1a5', 0.005869661601129483) +zone = ('ncz051', 0.0023380971749871735) + +[fips3717391144] +centroid = (0.61965745647798443, -1.4609061210326661) +description = Forneys Creek UT, NC +station = ('krhp', 0.005849613774505413) +zone = ('tnz072', 0.0023036059012537104) + +[fips3717392208] +centroid = (0.61690940066413436, -1.4583982050705981) +description = Nantahala township, NC +station = ('k1a5', 0.0030485083570354274) +zone = ('ncz051', 0.002631020970318719) + +[fips37175] +centroid = (0.6145320876899929, -1.4454240208232176) +description = Transylvania County, NC +station = ('kavl', 0.0056092444179050762) +zone = ('ncz064', 0.00029632780610040164) + +[fips3717520] +centroid = (0.62851557839050887, -1.3588553757650337) +description = Dortches town, NC +station = ('krwi', 0.002880850872160706) +zone = ('ncz027', 0.0019882860509240529) + +[fips3717590344] +centroid = (0.61712170251434684, -1.4435236539737688) +description = Boyd township, NC +station = ('kavl', 0.0028052691030953495) +zone = ('ncz064', 0.003016767211731611) + +[fips3717590364] +centroid = (0.61569240003001113, -1.4444106128463399) +description = Brevard township, NC +station = ('kavl', 0.004215494674999167) +zone = ('ncz064', 0.0014159203125980555) + +[fips3717590564] +centroid = (0.6145320876899929, -1.4454240208232176) +description = Catheys Creek township, NC +station = ('kavl', 0.0056092444179050762) +zone = ('ncz064', 0.00029632780610040164) + +[fips3717590928] +centroid = (0.6139613126647131, -1.4432055851708854) +description = Dunns Rock township, NC +station = ('kavl', 0.0049907460792673539) +zone = ('ncz064', 0.0016099331940195433) + +[fips3717590948] +centroid = (0.61296687641680436, -1.4452369389806965) +description = Eastatoe township, NC +station = ('klqk', 0.0056258118842085663) +zone = ('ncz064', 0.0014316144445630059) + +[fips3717591248] +centroid = (0.6145940992383162, -1.4471563299189922) +description = Gloucester township, NC +station = ('kavl', 0.0066624000439394777) +zone = ('ncz064', 0.0016896007378442521) + +[fips3717591504] +centroid = (0.61228630272828166, -1.4476282669487315) +description = Hogback township, NC +station = ('klqk', 0.0058758505498421425) +zone = ('ncz063', 0.0024017738920658147) + +[fips3717591864] +centroid = (0.61433774527778329, -1.4421731007452832) +description = Little River township, NC +station = ('kavl', 0.004317996730686913) +zone = ('ncz064', 0.0023947617825766008) + +[fips3717660] +centroid = (0.61462647509594071, -1.3514739071194517) +description = Dover town, NC +station = ('kiso', 0.0033199753448758373) +zone = ('ncz092', 0.0035539136726006493) + +[fips37177] +centroid = (0.62605693307322441, -1.3293360461674004) +description = Tyrrell County, NC +station = ('k2dp', 0.0051735995349137922) +zone = ('ncz046', 0.0011536012454296872) + +[fips3717790044] +centroid = (0.62767743637711604, -1.3273255490421505) +description = Alligator township, NC +station = ('kmqi', 0.0050143119977676823) +zone = ('ncz046', 0.0034382794291874848) + +[fips3717790736] +centroid = (0.62743542902303451, -1.3309711753304239) +description = Columbia township, NC +station = ('kede', 0.0045621947946703463) +zone = ('ncz046', 0.0024205279398624591) + +[fips3717791360] +centroid = (0.62376946964897562, -1.3296235542550816) +description = Gum Neck township, NC +station = ('k2dp', 0.0041908552254116046) +zone = ('ncz046', 0.001405071096910148) + +[fips3717792872] +centroid = (0.6268768713025189, -1.3321389925862257) +description = Scuppernong township, NC +station = ('kede', 0.0039148661601474044) +zone = ('ncz046', 0.0023941866273548577) + +[fips3717793040] +centroid = (0.62427428868182244, -1.3328294622916073) +description = South Fork township, NC +station = ('kede', 0.0053521920303845408) +zone = ('ncz046', 0.0023305511548570492) + +[fips3717860] +centroid = (0.62407151632932578, -1.4243385759568266) +description = Drexel town, NC +station = ('khky', 0.0031926499873843757) +zone = ('ncz504', 0.0010849440929133352) + +[fips37179] +centroid = (0.61071690266488832, -1.4055159330123537) +description = Union County, NC +station = ('keqy', 0.0013127863828743117) +zone = ('ncz082', 5.4730758117397038e-05) + +[fips3717990432] +centroid = (0.60847752306153202, -1.4057370662285813) +description = Buford township, NC +station = ('keqy', 0.0028795473113083212) +zone = ('ncz082', 0.0021921070885332701) + +[fips3717991264] +centroid = (0.61295689313348301, -1.4053663059355801) +description = Goose Creek township, NC +station = ('keqy', 0.0022557966243495881) +zone = ('ncz082', 0.0022978284322617455) + +[fips3717991624] +centroid = (0.60865566881828304, -1.4089526957490406) +description = Jackson township, NC +station = ('keqy', 0.0029573362157164665) +zone = ('scz015', 0.0032715466458112718) + +[fips3717991736] +centroid = (0.60848574356230878, -1.4028281783241598) +description = Lanes Creek township, NC +station = ('keqy', 0.0043559209324986504) +zone = ('ncz082', 0.0031034798559270993) + +[fips3717992004] +centroid = (0.61054209048700858, -1.4026682712580922) +description = Marshville township, NC +station = ('keqy', 0.0036223223106866846) +zone = ('ncz082', 0.0023443419653242582) + +[fips3717992108] +centroid = (0.61076842478440718, -1.4057069069391068) +description = Monroe township, NC +station = ('keqy', 0.0011481225259929301) +zone = ('ncz082', 0.00018209567751275853) + +[fips3717992280] +centroid = (0.61290116477046674, -1.4024910330725524) +description = New Salem township, NC +station = ('keqy', 0.0041017318649236812) +zone = ('ncz082', 0.0033440331230729361) + +[fips3717992836] +centroid = (0.61071021805385317, -1.409038740481164) +description = Sandy Ridge township, NC +station = ('keqy', 0.0017076896256130851) +zone = ('ncz082', 0.0028783305545040092) + +[fips3717993860] +centroid = (0.61227260189365351, -1.407644030422603) +description = Vance township, NC +station = ('keqy', 0.0012256805916461451) +zone = ('ncz082', 0.0023663384018985383) + +[fips3718040] +centroid = (0.60486565144099236, -1.3739771876569931) +description = Dublin town, NC +station = ('keyf', 0.0022344074518046877) +zone = ('ncz096', 0.0024100329975989109) + +[fips3718060] +centroid = (0.63153630699339802, -1.3221648722433914) +description = Duck town, NC +station = ('kffa', 0.003178004064055683) +zone = ('ncz102', 0.0039703562516520789) + +[fips37181] +centroid = (0.63469737752144006, -1.3684329747551078) +description = Vance County, NC +station = ('khnz', 0.00174029035719669) +zone = ('ncz009', 4.199676505181935e-05) + +[fips3718190868] +centroid = (0.63435408871086529, -1.3697164549804393) +description = Dabney township, NC +station = ('khnz', 0.00075787983204978144) +zone = ('ncz009', 0.0010471964163375545) + +[fips3718191452] +centroid = (0.63416424924812587, -1.3685580101427206) +description = Henderson township, NC +station = ('khnz', 0.0017037752677562328) +zone = ('ncz009', 0.00052473240255603416) + +[fips3718191712] +centroid = (0.63236333125945543, -1.3689708154174023) +description = Kittrell township, NC +station = ('khnz', 0.0026172052019988678) +zone = ('ncz009', 0.0023552072867374053) + +[fips3718192050] +centroid = (0.63574200943863624, -1.3672022383797715) +description = Middleburg township, NC +station = ('khnz', 0.0029465988121463835) +zone = ('ncz009', 0.0014761655737262499) + +[fips3718192824] +centroid = (0.63355586237746564, -1.3671738767794264) +description = Sandy Creek township, NC +station = ('khnz', 0.0029564333249400667) +zone = ('ncz009', 0.0015454059983411963) + +[fips3718193752] +centroid = (0.63739363196309096, -1.3687496822011747) +description = Townsville township, NC +station = ('khnz', 0.0031354484360817405) +zone = ('ncz009', 0.0027166245690072449) + +[fips3718193916] +centroid = (0.63318796442443781, -1.3700500048537878) +description = Watkins township, NC +station = ('khnz', 0.0015075991897747741) +zone = ('ncz009', 0.0019587241208503438) + +[fips3718194028] +centroid = (0.63590776335769816, -1.3691432364942069) +description = Williamsboro township, NC +station = ('khnz', 0.0017295796565978286) +zone = ('ncz009', 0.0013328015383960803) + +[fips37183] +centroid = (0.62465065148172239, -1.3727123475480725) +description = Wake County, NC +station = ('krdu', 0.0025281426681746997) +zone = ('ncz041', 5.4506687831740739e-06) + +[fips3718300] +centroid = (0.60955041185931802, -1.3815583219690031) +description = Dundarrach CDP, NC +station = ('kmeb', 0.0038810598734862912) +zone = ('ncz086', 0.0019791140392076507) + +[fips3718320] +centroid = (0.61629869250556901, -1.3720793515349594) +description = Dunn city, NC +station = ('khrj', 0.002064453752489748) +zone = ('ncz077', 0.0037653499616472365) + +[fips3718390164] +centroid = (0.62736905415158117, -1.3726242956873096) +description = Bartons Creek township, NC +station = ('krdu', 0.0018874262452116676) +zone = ('ncz041', 0.0027148259640968021) + +[fips3718390420] +centroid = (0.6224032608170994, -1.3776212256956468) +description = Buckhorn township, NC +station = ('ktta', 0.0027684528218288166) +zone = ('ncz076', 0.0047042310683287356) + +[fips3718390536] +centroid = (0.62464916795185821, -1.3750082758191937) +description = Cary township, NC +station = ('krdu', 0.001936496800214988) +zone = ('ncz041', 0.0018655608815272133) + +[fips3718390576] +centroid = (0.62575383919532301, -1.3756533669640232) +description = Cedar Fork township, NC +station = ('krdu', 0.0011053835337107515) +zone = ('ncz041', 0.0026285380976774214) + +[fips3718391524] +centroid = (0.62200309172620216, -1.376209777929559) +description = Holly Springs township, NC +station = ('ktta', 0.0036830955997751535) +zone = ('ncz041', 0.0038878013120794402) + +[fips3718391548] +centroid = (0.62593722093983006, -1.3733558329899904) +description = House Creek township, NC +station = ('krdu', 0.0012876295026511407) +zone = ('ncz041', 0.0013854222350914869) + +[fips3718391772] +centroid = (0.62676441973881281, -1.3739567498514522) +description = Leesville township, NC +station = ('krdu', 0.00066080859953015255) +zone = ('ncz041', 0.0023394584184681599) + +[fips3718391868] +centroid = (0.62589562974375512, -1.3674510350646432) +description = Little River township, NC +station = ('klhz', 0.0028427107517448092) +zone = ('ncz026', 0.0039688788048126604) + +[fips3718391992] +centroid = (0.62459893737598593, -1.36851790247651) +description = Marks Creek township, NC +station = ('klhz', 0.0042790834682215556) +zone = ('ncz041', 0.003399746872800057) + +[fips3718392036] +centroid = (0.62508570970436717, -1.3737487066046143) +description = Meredith township, NC +station = ('krdu', 0.0016897015530263427) +zone = ('ncz041', 0.00094724062708422777) + +[fips3718392056] +centroid = (0.62112388211551006, -1.3744688469072799) +description = Middle Creek township, NC +station = ('khrj', 0.0036592439512320918) +zone = ('ncz041', 0.0038096858168380127) + +[fips3718392228] +centroid = (0.62617121723264491, -1.371458171400882) +description = Neuse township, NC +station = ('krdu', 0.002687157252650345) +zone = ('ncz041', 0.0018237539809940915) + +[fips3718392264] +centroid = (0.62859472907208669, -1.3727190670656928) +description = New Light township, NC +station = ('krdu', 0.0025993060230738449) +zone = ('ncz025', 0.0032007136117898241) + +[fips3718392440] +centroid = (0.62169144573496615, -1.3727163618053522) +description = Panther Branch township, NC +station = ('kjnx', 0.003950269320949145) +zone = ('ncz041', 0.0029636458679068636) + +[fips3718392612] +centroid = (0.62469458141899525, -1.3726963777854169) +description = Raleigh township, NC +station = ('krdu', 0.002503418886854826) +zone = ('ncz041', 4.0690274850716492e-05) + +[fips3718392788] +centroid = (0.62303009581795321, -1.3713027323776994) +description = St. Marys township, NC +station = ('kjnx', 0.003730985544239522) +zone = ('ncz041', 0.0019855229300072899) + +[fips3718392792] +centroid = (0.62481090761364055, -1.3704150404668425) +description = St. Matthews township, NC +station = ('krdu', 0.0039219760758202934) +zone = ('ncz041', 0.0018667338197594196) + +[fips3718393200] +centroid = (0.62325611595608643, -1.3739361375129859) +description = Swift Creek township, NC +station = ('krdu', 0.0033801817941176704) +zone = ('ncz041', 0.0017175166466990356) + +[fips3718393880] +centroid = (0.62720480121567601, -1.3698691712899889) +description = Wake Forest township, NC +station = ('klhz', 0.0026940912821430451) +zone = ('ncz041', 0.003434475639643597) + +[fips3718393984] +centroid = (0.62408090620070145, -1.3766306640786776) +description = White Oak township, NC +station = ('krdu', 0.0029269592133454592) +zone = ('ncz041', 0.0032336150377555478) + +[fips37185] +centroid = (0.63526457462175312, -1.36310081935734) +description = Warren County, NC +station = ('kavc', 0.0051129045537686236) +zone = ('ncz010', 0.00010091472331824429) + +[fips3718591112] +centroid = (0.63353921193640161, -1.3615764487886481) +description = Fishing Creek township, NC +station = ('kixa', 0.0052674623663478441) +zone = ('ncz010', 0.0021569108103499544) + +[fips3718591132] +centroid = (0.6326331068019363, -1.3628412016311056) +description = Fork township, NC +station = ('klhz', 0.0052168826610489074) +zone = ('ncz010', 0.0026254426918760464) + +[fips3718591432] +centroid = (0.63693841518758576, -1.3640516398272413) +description = Hawtree township, NC +station = ('kavc', 0.0036774720737989971) +zone = ('ncz010', 0.0018241924203512428) + +[fips3718591684] +centroid = (0.63539901733403426, -1.3613086803748071) +description = Judkins township, NC +station = ('kavc', 0.0050021341010870702) +zone = ('ncz010', 0.0015485918087994679) + +[fips3718592340] +centroid = (0.63643832599701178, -1.3661842401869606) +description = Nutbush township, NC +station = ('khnz', 0.0039815129459013898) +zone = ('ncz009', 0.0025484392158116663) + +[fips3718592688] +centroid = (0.63641748676574306, -1.3606199734519699) +description = River township, NC +station = ('kavc', 0.0041458528260975543) +zone = ('ncz010', 0.0024021058713369877) + +[fips3718592700] +centroid = (0.63761818602465259, -1.3605037170704948) +description = Roanoke township, NC +station = ('kavc', 0.0030783799833367757) +zone = ('ncz010', 0.0032302364919871186) + +[fips3718592828] +centroid = (0.63402181292787063, -1.3658383508358003) +description = Sandy Creek township, NC +station = ('khnz', 0.0038774648689472646) +zone = ('ncz010', 0.0024335955548213852) + +[fips3718592940] +centroid = (0.63366923896567517, -1.3644797690927557) +description = Shocco township, NC +station = ('khnz', 0.0050172818976861296) +zone = ('ncz010', 0.0018692555384683454) + +[fips3718592964] +centroid = (0.63691919911252126, -1.3623682872169853) +description = Sixpound township, NC +station = ('kavc', 0.0034182745909930815) +zone = ('ncz010', 0.001813910616491874) + +[fips3718592976] +centroid = (0.63686439577400877, -1.3652054595424423) +description = Smith Creek township, NC +station = ('kavc', 0.0041825211880978843) +zone = ('ncz010', 0.0022762784245386816) + +[fips3718593896] +centroid = (0.6350829207532056, -1.3642410080510827) +description = Warrenton township, NC +station = ('khnz', 0.0051339028070937409) +zone = ('ncz010', 0.00083482337237115198) + +[fips37187] +centroid = (0.62560609707414172, -1.3364393442367997) +description = Washington County, NC +station = ('kede', 0.0031980632559251918) +zone = ('ncz045', 0.00039712153338625005) + +[fips3718791768] +centroid = (0.62551040067125485, -1.3377825845357196) +description = Lees Mill township, NC +station = ('kede', 0.0034912390570299053) +zone = ('ncz045', 0.0010706333508159601) + +[fips3718792540] +centroid = (0.62465147178647085, -1.339449600864177) +description = Plymouth township, NC +station = ('kede', 0.0048518288584298973) +zone = ('ncz045', 0.0024463974552618663) + +[fips3718792876] +centroid = (0.62503350690644, -1.3342451512077775) +description = Scuppernong township, NC +station = ('kede', 0.0041373469052191992) +zone = ('ncz045', 0.0018484195870665265) + +[fips3718792968] +centroid = (0.62664774447831706, -1.3349088650157259) +description = Skinnersville township, NC +station = ('kede', 0.0024509894534859192) +zone = ('ncz045', 0.0019361138865274282) + +[fips37189] +centroid = (0.63242652963167023, -1.4261071180878726) +description = Watauga County, NC +station = ('ktnb', 0.0010454495250730536) +zone = ('ncz018', 0.00019657335925021146) + +[fips3718990132] +centroid = (0.63363766595950666, -1.4244837175374225) +description = Bald Mountain township, NC +station = ('ktnb', 0.0018868752551505557) +zone = ('ncz018', 0.0017062122153374667) + +[fips3718990204] +centroid = (0.63380872567949464, -1.4283345072792679) +description = Beaverdam township, NC +station = ('ktnb', 0.0033112686326305161) +zone = ('ncz018', 0.0024552164151865935) + +[fips3718990300] +centroid = (0.63086753173061882, -1.4257009625176411) +description = Blowing Rock township, NC +station = ('ktnb', 0.0010739264199213926) +zone = ('ncz018', 0.0014949369700306466) + +[fips3718990308] +centroid = (0.63082000641508695, -1.423897775600943) +description = Blue Ridge township, NC +station = ('ktnb', 0.0013640892604834906) +zone = ('ncz501', 0.0021359009786208367) + +[fips3718990332] +centroid = (0.63207779539382924, -1.4255870274240707) +description = Boone township, NC +station = ('ktnb', 0.00050206673552660719) +zone = ('ncz018', 0.00036459081353177377) + +[fips3718990404] +centroid = (0.63228718254419103, -1.4266723953260083) +description = Brushy Fork township, NC +station = ('ktnb', 0.0013849361646714451) +zone = ('ncz018', 0.0006429152325594207) + +[fips3718990788] +centroid = (0.6335889538200834, -1.4269486809465992) +description = Cove Creek township, NC +station = ('ktnb', 0.0023418174889464701) +zone = ('ncz018', 0.0015046760194426154) + +[fips3718991008] +centroid = (0.63154510345282799, -1.4231765531941414) +description = Elk township, NC +station = ('ktnb', 0.0015438449661636471) +zone = ('ncz018', 0.0023269321152134242) + +[fips3718991744] +centroid = (0.63256418374977497, -1.4285095288966576) +description = Laurel Creek township, NC +station = ('ktnb', 0.0028824214437882427) +zone = ('ncz018', 0.0021312437173511534) + +[fips3718992032] +centroid = (0.63324756741839339, -1.425234540728338) +description = Meat Camp township, NC +station = ('ktnb', 0.0014451460547101618) +zone = ('ncz018', 0.0010327809469905275) + +[fips3718992276] +centroid = (0.63215795836637334, -1.4252098617727149) +description = New River township, NC +station = ('ktnb', 0.00036878403515318878) +zone = ('ncz018', 0.00057547105489447875) + +[fips3718992320] +centroid = (0.63446849504333347, -1.4258110753401494) +description = North Fork township, NC +station = ('ktnb', 0.0027271290453879057) +zone = ('ncz018', 0.0021137456855214159) + +[fips3718992916] +centroid = (0.63154524307916815, -1.4281655245010896) +description = Shawneehaw township, NC +station = ('ktnb', 0.0025190661106606177) +zone = ('ncz018', 0.0020143574955280834) + +[fips3718993152] +centroid = (0.63236368032530588, -1.4228134898031415) +description = Stony Fork township, NC +station = ('ktnb', 0.0018964267989400863) +zone = ('ncz018', 0.0024734823375699298) + +[fips3718993912] +centroid = (0.63147104913266583, -1.427148398972905) +description = Watauga township, NC +station = ('ktnb', 0.0017179921703112343) +zone = ('ncz018', 0.0013527300876587786) + +[fips3719000] +centroid = (0.62798628984154903, -1.3771633385663862) +description = Durham city, NC +station = ('kigx', 0.0024219719175800469) +zone = ('ncz025', 0.0010439494475033939) + +[fips37191] +centroid = (0.61719626297999208, -1.3614410461452782) +description = Wayne County, NC +station = ('kgsb', 0.00074735193710137354) +zone = ('ncz078', 2.1905239133334195e-05) + +[fips3719140] +centroid = (0.61427603043543277, -1.4230369268539818) +description = Earl town, NC +station = ('keho', 0.001338867188389504) +zone = ('ncz068', 0.0024377399461175306) + +[fips3719190384] +centroid = (0.61567574958894711, -1.3624381876535279) +description = Brogden township, NC +station = ('kgsb', 0.0016901988989498663) +zone = ('ncz078', 0.0017463516661349885) + +[fips3719190428] +centroid = (0.61933469273941311, -1.3621927070942348) +description = Buck Swamp township, NC +station = ('kgww', 0.0012546638750779624) +zone = ('ncz078', 0.0022099491834380327) + +[fips3719191136] +centroid = (0.61791738066703861, -1.3629792222683534) +description = Fork township, NC +station = ('kgsb', 0.0021804334511218489) +zone = ('ncz078', 0.0014477496820816324) + +[fips3719191260] +centroid = (0.61745757367560072, -1.3611606240943603) +description = Goldsboro township, NC +station = ('kgsb', 0.00083597504193665486) +zone = ('ncz078', 0.00032559792085740526) + +[fips3719191280] +centroid = (0.61566553941282298, -1.3648175252096015) +description = Grantham township, NC +station = ('kgsb', 0.0034523871159511344) +zone = ('ncz078', 0.0031709726808942986) + +[fips3719191300] +centroid = (0.62044501884965442, -1.361980475057192) +description = Great Swamp township, NC +station = ('kgww', 0.0018402265097785711) +zone = ('ncz043', 0.0031892735882975121) + +[fips3719191576] +centroid = (0.61465515085555089, -1.3602119503794388) +description = Indian Springs township, NC +station = ('kgsb', 0.0020793039761923134) +zone = ('ncz078', 0.0027449086042390537) + +[fips3719192200] +centroid = (0.62036389594602159, -1.3595160352467912) +description = Nahunta township, NC +station = ('kgww', 0.0017707157090390137) +zone = ('ncz043', 0.0028229780762483083) + +[fips3719192256] +centroid = (0.61646540635571956, -1.3595698612009226) +description = New Hope township, NC +station = ('kgsb', 0.0010070515323746586) +zone = ('ncz078', 0.0016898161012172471) + +[fips3719192492] +centroid = (0.61940747296922127, -1.3600051986762476) +description = Pikeville township, NC +station = ('kgww', 0.00078609523214504505) +zone = ('ncz078', 0.0024798444707343293) + +[fips3719192848] +centroid = (0.61811872184954864, -1.3587873951906686) +description = Saulston township, NC +station = ('kgww', 0.0017782339663068509) +zone = ('ncz078', 0.0023337743874658353) + +[fips3719193138] +centroid = (0.61837408097240798, -1.3605868645560597) +description = Stoney Creek township, NC +station = ('kgww', 0.00054500227173389358) +zone = ('ncz078', 0.0013463484628610004) + +[fips37193] +centroid = (0.63197155720226028, -1.4166026658467494) +description = Wilkes County, NC +station = ('kukf', 0.0011621252105763762) +zone = ('ncz019', 5.3593399188543542e-05) + +[fips3719300] +centroid = (0.60007421649878478, -1.3670030788588265) +description = East Arcadia town, NC +station = ('keyf', 0.0053370437712551688) +zone = ('ncz109', 0.0049199747951937378) + +[fips3719320] +centroid = (0.63211413314885578, -1.4051453647055703) +description = East Bend town, NC +station = ('kint', 0.0041507655271562707) +zone = ('ncz020', 0.0024170822985228684) + +[fips3719390072] +centroid = (0.63132332446477712, -1.4138630574264792) +description = Antioch township, NC +station = ('kukf', 0.0013106201835155157) +zone = ('ncz019', 0.0022697188914523429) + +[fips3719390184] +centroid = (0.62950476119736909, -1.4194731914142122) +description = Beaver Creek township, NC +station = ('kukf', 0.0043365107144614839) +zone = ('ncz035', 0.0033489265661511966) + +[fips3719390324] +centroid = (0.62928659504086981, -1.4184995594909873) +description = Boomer township, NC +station = ('kukf', 0.003891213223105045) +zone = ('ncz035', 0.0027147448174135616) + +[fips3719390408] +centroid = (0.62946948809318626, -1.415265202587654) +description = Brushy Mountain township, NC +station = ('kukf', 0.0026316859651319561) +zone = ('ncz019', 0.0026716722265627312) + +[fips3719390976] +centroid = (0.63297604654666062, -1.4128412195093141) +description = Edwards township, NC +station = ('kukf', 0.0020732849258474745) +zone = ('ncz019', 0.0031909318273873636) + +[fips3719391012] +centroid = (0.63048807969794263, -1.4213151944534745) +description = Elk township, NC +station = ('ktnb', 0.0033003943048111454) +zone = ('ncz501', 0.0033318887150653501) + +[fips3719391664] +centroid = (0.63226204980296219, -1.4209202962569181) +description = Jobs Cabin township, NC +station = ('kgev', 0.0036199962657013289) +zone = ('ncz019', 0.0035217095021267139) + +[fips3719391788] +centroid = (0.63091695945503534, -1.4198239502339856) +description = Lewis Fork township, NC +station = ('kukf', 0.0039374177619794877) +zone = ('ncz019', 0.0028083262188757733) + +[fips3719391908] +centroid = (0.63005878106182966, -1.4143100013413301) +description = Lovelace township, NC +station = ('kukf', 0.0021564538630216403) +zone = ('ncz019', 0.0026115663288820649) + +[fips3719392116] +centroid = (0.62973650601544884, -1.4170126087814578) +description = Moravian Falls township, NC +station = ('kukf', 0.0027924058199746897) +zone = ('ncz019', 0.0022144376678165374) + +[fips3719392184] +centroid = (0.63322890984868951, -1.4170937316850907) +description = Mulberry township, NC +station = ('kukf', 0.0019178823385721771) +zone = ('ncz019', 0.0013714997650608118) + +[fips3719392236] +centroid = (0.63123267206342848, -1.4119044663931837) +description = New Castle township, NC +station = ('kukf', 0.0027753769481543926) +zone = ('ncz019', 0.0038326274266665514) + +[fips3719392332] +centroid = (0.6314779082766262, -1.4161625810758594) +description = North Wilkesboro township, NC +station = ('kukf', 0.0010135113817931769) +zone = ('ncz019', 0.00055574439174513465) + +[fips3719392628] +centroid = (0.63139118286609464, -1.4179964508808072) +description = Reddies River township, NC +station = ('kukf', 0.0023876846208573496) +zone = ('ncz019', 0.0012639078239272835) + +[fips3719392720] +centroid = (0.63249594137602205, -1.4151054875078037) +description = Rock Creek township, NC +station = ('kukf', 0.00039939029854969528) +zone = ('ncz019', 0.0013172348455872279) + +[fips3719393024] +centroid = (0.62985452517946872, -1.4126837209976142) +description = Somers township, NC +station = ('kukf', 0.0030127122575089359) +zone = ('ncz019', 0.0037620985159737184) + +[fips3719393092] +centroid = (0.63209889642448591, -1.4195591488798729) +description = Stanton township, NC +station = ('kgev', 0.0039542275357992603) +zone = ('ncz019', 0.0024137398427444634) + +[fips3719393756] +centroid = (0.63441126569716066, -1.413820384126268) +description = Traphill township, NC +station = ('kukf', 0.0025548343179724992) +zone = ('ncz002', 0.0030241668523229757) + +[fips3719393820] +centroid = (0.63366299068695309, -1.4191059741395926) +description = Union township, NC +station = ('kgev', 0.0026871963982710058) +zone = ('ncz019', 0.0026818680003224574) + +[fips3719393888] +centroid = (0.63409454079780125, -1.4158503067660924) +description = Walnut Grove township, NC +station = ('kukf', 0.0020682582035395068) +zone = ('ncz019', 0.0022492382647706839) + +[fips3719394012] +centroid = (0.63075558631239592, -1.415796847331104) +description = Wilkesboro township, NC +station = ('kukf', 0.0014362269005015937) +zone = ('ncz019', 0.0013255689682700094) + +[fips3719420] +centroid = (0.61577237101633753, -1.438456317383406) +description = East Flat Rock CDP, NC +station = ('kavl', 0.0031263037450624692) +zone = ('ncz065', 0.0013089524539941339) + +[fips37195] +centroid = (0.6231545377936204, -1.3599427857021962) +description = Wilson County, NC +station = ('krwi', 0.0025601473882626872) +zone = ('ncz043', 1.3618275485705927e-05) + +[fips3719590276] +centroid = (0.62194282550713076, -1.3602697731375575) +description = Black Creek township, NC +station = ('kgww', 0.0030639703357754587) +zone = ('ncz043', 0.0012534667638011568) + +[fips3719590840] +centroid = (0.62208597741237948, -1.3615992602419715) +description = Cross Roads township, NC +station = ('kgww', 0.0032573702777165341) +zone = ('ncz043', 0.0017309862907332392) + +[fips3719591208] +centroid = (0.62361170933788779, -1.357932742362552) +description = Gardners township, NC +station = ('krwi', 0.002493497266982325) +zone = ('ncz043', 0.0016850610994257156) + +[fips3719592380] +centroid = (0.62363897138080393, -1.362542558342797) +description = Old Fields township, NC +station = ('krwi', 0.0031468749100610847) +zone = ('ncz043', 0.0021696845972846513) + +[fips3719592840] +centroid = (0.6224275383469946, -1.3569356532141801) +description = Saratoga township, NC +station = ('krwi', 0.003927820910652885) +zone = ('ncz043', 0.0025452861203721575) + +[fips3719593084] +centroid = (0.62234610128409673, -1.3630597692133331) +description = Springhill township, NC +station = ('kgww', 0.0039236458970439364) +zone = ('ncz043', 0.0026678902053824949) + +[fips3719593096] +centroid = (0.6219461067261246, -1.3590479728479912) +description = Stantonsburg township, NC +station = ('kgww', 0.0033416139882727733) +zone = ('ncz043', 0.0014168507272531285) + +[fips3719593220] +centroid = (0.62464077291815612, -1.3607564931060612) +description = Taylors township, NC +station = ('krwi', 0.0014089378931254203) +zone = ('ncz043', 0.0016184000167284354) + +[fips3719593244] +centroid = (0.62506560351138407, -1.3583446575193152) +description = Toisnot township, NC +station = ('krwi', 0.0012074805671824093) +zone = ('ncz043', 0.002295961538845437) + +[fips3719594048] +centroid = (0.6235910271862517, -1.3597373604492367) +description = Wilson township, NC +station = ('krwi', 0.0021119792400191876) +zone = ('ncz043', 0.00045383191783201864) + +[fips3719620] +centroid = (0.6068348715294325, -1.3865769813265278) +description = East Laurinburg town, NC +station = ('kmeb', 0.001150339639279811) +zone = ('ncz085', 0.0013560372141141238) + +[fips37197] +centroid = (0.63108950270488751, -1.4078727034611993) +description = Yadkin County, NC +station = ('kmwk', 0.005484240937324642) +zone = ('ncz020', 3.0342042855566116e-05) + +[fips3719740] +centroid = (0.61252797846980522, -1.3750792059999948) +description = Eastover town, NC +station = ('kfay', 0.0023962313325802814) +zone = ('ncz088', 0.001005164784293305) + +[fips3719790340] +centroid = (0.63217199081355935, -1.4086897793505204) +description = Boonville township, NC +station = ('kmwk', 0.0047310256822853175) +zone = ('ncz020', 0.0012407495124958862) + +[fips3719790892] +centroid = (0.63018338011712949, -1.4089266554366009) +description = Deep Creek township, NC +station = ('kukf', 0.0053935591608678087) +zone = ('ncz020', 0.0012641849098693073) + +[fips3719790952] +centroid = (0.63218399867881303, -1.4050368924925589) +description = East Bend township, NC +station = ('kint', 0.0040946292167052048) +zone = ('ncz020', 0.0025257162436147763) + +[fips3719791128] +centroid = (0.6307519036676742, -1.405277817742504) +description = Forbush township, NC +station = ('kint', 0.0039926343318691191) +zone = ('ncz020', 0.0021292449391467319) + +[fips3719792302] +centroid = (0.63044324218945902, -1.4107073625125333) +description = North Buck Shoals township, NC +station = ('kukf', 0.003966147816944831) +zone = ('ncz020', 0.002385217924505642) + +[fips3719792314] +centroid = (0.63274086342995439, -1.4065064946293231) +description = North Fall Creek township, NC +station = ('kmwk', 0.0036325914292749135) +zone = ('ncz020', 0.0019614693634831381) + +[fips3719792321] +centroid = (0.63211933423002675, -1.4103939886453378) +description = North Knobs township, NC +station = ('kukf', 0.0038541664147622545) +zone = ('ncz020', 0.0022653827066370672) + +[fips3719792322] +centroid = (0.63074514924346892, -1.4076498249157194) +description = North Liberty township, NC +station = ('kmwk', 0.0057688320454596619) +zone = ('ncz020', 0.00041645395314171427) + +[fips3719793030] +centroid = (0.62960874791420285, -1.4105255515643531) +description = South Buck Shoals township, NC +station = ('kukf', 0.0045033147055655951) +zone = ('ncz020', 0.002620588155392616) + +[fips3719793034] +centroid = (0.6316322826489652, -1.4068781974001203) +description = South Fall Creek township, NC +station = ('kmwk', 0.004773279612960547) +zone = ('ncz020', 0.00095404004172168759) + +[fips3719793041] +centroid = (0.63130444000227059, -1.4106169544572802) +description = South Knobs township, NC +station = ('kukf', 0.0037604633324772483) +zone = ('ncz020', 0.0022212411399787674) + +[fips3719793042] +centroid = (0.62980621446577356, -1.4066399075973457) +description = South Liberty township, NC +station = ('kint', 0.0051617327564149806) +zone = ('ncz020', 0.0016495144739885597) + +[fips3719800] +centroid = (0.60932200062010944, -1.392176451352531) +description = East Rockingham CDP, NC +station = ('krcz', 0.00038577487236296509) +zone = ('ncz084', 0.0016658622202835361) + +[fips3719860] +centroid = (0.62276902946843993, -1.4037241605489639) +description = East Spencer town, NC +station = ('kruq', 0.001382857087626112) +zone = ('ncz057', 0.0015651164964125583) + +[fips37199] +centroid = (0.62639001170767505, -1.4364754384955625) +description = Yancey County, NC +station = ('k0a9', 0.0085962804741251241) +zone = ('ncz049', 0.00017179285349250203) + +[fips3719990400] +centroid = (0.62798002410953424, -1.4349498636496869) +description = Brush Creek township, NC +station = ('k0a9', 0.0068278224055436029) +zone = ('ncz050', 0.00094304372503052234) + +[fips3719990456] +centroid = (0.62639001170767505, -1.4364754384955625) +description = Burnsville township, NC +station = ('k0a9', 0.0085962804741251241) +zone = ('ncz049', 0.00017179285349250203) + +[fips3719990492] +centroid = (0.6270462555064249, -1.4386902264097585) +description = Cane River township, NC +station = ('k0a9', 0.0085598108458035463) +zone = ('ncz049', 0.0018107965118235767) + +[fips3719990804] +centroid = (0.62670069776782256, -1.4348035876050773) +description = Crabtree township, NC +station = ('k0a9', 0.0080934716110205689) +zone = ('ncz049', 0.0014130281259792212) + +[fips3719990980] +centroid = (0.62788239039117777, -1.4386798067941238) +description = Egypt township, NC +station = ('k0a9', 0.0078085124940679906) +zone = ('ncz049', 0.0021840609513791168) + +[fips3719991312] +centroid = (0.6282703770838961, -1.43600707939079) +description = Green Mountain township, NC +station = ('k0a9', 0.006678660755177473) +zone = ('ncz049', 0.0017694929514798633) + +[fips3719991612] +centroid = (0.62762251086555587, -1.4367515670365205) +description = Jacks Creek township, NC +station = ('k0a9', 0.0074586330997632108) +zone = ('ncz049', 0.0010823318415506074) + +[fips3719992476] +centroid = (0.62492159639480216, -1.4364181044296347) +description = Pensacola township, NC +station = ('kavl', 0.0072839961273029078) +zone = ('ncz049', 0.0016353263952765247) + +[fips3719992572] +centroid = (0.6260189023488234, -1.437820075057884) +description = Price Creek township, NC +station = ('kavl', 0.0078919471012755538) +zone = ('ncz049', 0.0011680286945870456) + +[fips3719992616] +centroid = (0.62861603954225365, -1.4381805379082984) +description = Ramseytown township, NC +station = ('k0a9', 0.0069711267367326326) +zone = ('tnz045', 0.0016924001592925602) + +[fips3719993056] +centroid = (0.62479507747732499, -1.4348414263432605) +description = South Toe township, NC +station = ('kfqd', 0.007544473244342615) +zone = ('ncz505', 0.0021617464673128611) + +[fips3720080] +centroid = (0.63709826989377594, -1.3917258946061288) +description = Eden city, NC +station = ('ksif', 0.0018955951228266899) +zone = ('ncz005', 0.0019303709766777999) + +[fips3720120] +centroid = (0.62932947778059134, -1.3369375484717816) +description = Edenton town, NC +station = ('kede', 0.00070881466098858537) +zone = ('ncz031', 0.0016223746617228553) + +[fips3720280] +centroid = (0.61790795588907776, -1.4369858949418932) +description = Edneyville CDP, NC +station = ('kavl', 0.0028933738715473272) +zone = ('ncz509', 0.0021362520367658928) + +[fips3720420] +centroid = (0.6297215310904668, -1.3818005562158875) +description = Efland CDP, NC +station = ('kigx', 0.0029616316686895908) +zone = ('ncz024', 0.00079006509697162025) + +[fips3720580] +centroid = (0.63344969399906681, -1.3305591729071982) +description = Elizabeth City city, NC +station = ('kecg', 0.0012351727443655322) +zone = ('ncz015', 0.00072372470292868555) + +[fips3720600] +centroid = (0.60430365542185016, -1.3720037787783481) +description = Elizabethtown town, NC +station = ('keyf', 0.00056849807688575033) +zone = ('ncz096', 0.0006937570702490875) + +[fips3720620] +centroid = (0.63290469748683909, -1.411038224578834) +description = Elkin town, NC +station = ('kukf', 0.0034291361925793892) +zone = ('ncz020', 0.0031143867313182076) + +[fips3720700] +centroid = (0.63108046189936218, -1.43083511031177) +description = Elk Park town, NC +station = ('k0a9', 0.0045548777045548985) +zone = ('ncz033', 0.0016458751917649548) + +[fips3720780] +centroid = (0.61664014872042916, -1.4270034319252343) +description = Ellenboro town, NC +station = ('keho', 0.0026964983756129148) +zone = ('ncz508', 0.0021390628130251396) + +[fips3720840] +centroid = (0.61214049792257008, -1.3920821163064607) +description = Ellerbe town, NC +station = ('krcz', 0.0031951278186790216) +zone = ('ncz084', 0.001185665778794741) + +[fips3720980] +centroid = (0.62498128665522035, -1.358950984901458) +description = Elm City town, NC +station = ('krwi', 0.00089671241505671765) +zone = ('ncz043', 0.001982662512759613) + +[fips3721095] +centroid = (0.63008408833598362, -1.3876892971121164) +description = Elon town, NC +station = ('kbuy', 0.00132425898867661) +zone = ('ncz023', 0.0018357730467052466) + +[fips3721120] +centroid = (0.60401033538775994, -1.3828376308574226) +description = Elrod CDP, NC +station = ('klbt', 0.0023607210430071322) +zone = ('ncz087', 0.0019156032891039217) + +[fips3721130] +centroid = (0.61663861283068744, -1.3600044307313768) +description = Elroy CDP, NC +station = ('kgsb', 0.00063023920150221671) +zone = ('ncz078', 0.0012952227054032731) + +[fips3721160] +centroid = (0.60500836701392791, -1.3444509989153994) +description = Emerald Isle town, NC +station = ('knjm', 0.0006215238197376891) +zone = ('ncz095', 0.0059478962853506089) + +[fips3721360] +centroid = (0.63146429470846066, -1.3555569129182745) +description = Enfield town, NC +station = ('kixa', 0.0026427155221547308) +zone = ('ncz011', 0.0013666652326303123) + +[fips3721380] +centroid = (0.61975313542757882, -1.3266165962999905) +description = Engelhard CDP, NC +station = ('k2dp', 0.003156954069397087) +zone = ('ncz081', 0.0034962375861115895) + +[fips3721500] +centroid = (0.61994407444774691, -1.4078835070492692) +description = Enochville CDP, NC +station = ('kjqf', 0.0024359351890408448) +zone = ('ncz072', 0.0028355971256716428) + +[fips3721740] +centroid = (0.61648898575391398, -1.3731121326665345) +description = Erwin town, NC +station = ('khrj', 0.00130394622348454) +zone = ('ncz077', 0.0029027139844911482) + +[fips3721880] +centroid = (0.61617868366620177, -1.4414460314854873) +description = Etowah CDP, NC +station = ('kavl', 0.0023840090989785514) +zone = ('ncz065', 0.0016465658291255475) + +[fips3721960] +centroid = (0.62031567249878894, -1.3591982631498805) +description = Eureka town, NC +station = ('kgww', 0.0018925978552123272) +zone = ('ncz043', 0.0029127678440056797) + +[fips3722040] +centroid = (0.6254333269314869, -1.3469106041637722) +description = Everetts town, NC +station = ('kpgv', 0.0047705170969410265) +zone = ('ncz029', 0.00093026219668471675) + +[fips3722080] +centroid = (0.6006518855746098, -1.3772642709570289) +description = Evergreen CDP, NC +station = ('kcpc', 0.0037627787222364378) +zone = ('ncz099', 0.0045219696292610918) + +[fips3722240] +centroid = (0.59883920406678104, -1.37940928060773) +description = Fair Bluff town, NC +station = ('kcpc', 0.0046525575533074535) +zone = ('ncz087', 0.0058301634089978575) + +[fips3722280] +centroid = (0.62042836840859028, -1.3303943440126398) +description = Fairfield CDP, NC +station = ('k2dp', 0.0050686877660046847) +zone = ('ncz081', 0.00042724556039734006) + +[fips3722305] +centroid = (0.61204021130375041, -1.3432004530530528) +description = Fairfield Harbour CDP, NC +station = ('kewn', 0.0012500257900877076) +zone = ('ncz093', 0.0022121457835523927) + +[fips3722360] +centroid = (0.60204713668523913, -1.380785856695363) +description = Fairmont town, NC +station = ('klbt', 0.0019548141416738268) +zone = ('ncz087', 0.0025404910208493264) + +[fips3722380] +centroid = (0.63168570717736872, -1.4163614438908314) +description = Fairplains CDP, NC +station = ('kukf', 0.0010460454730934598) +zone = ('ncz019', 0.00029323151597182361) + +[fips3722440] +centroid = (0.61998486279236609, -1.4381739754703109) +description = Fairview CDP, NC +station = ('kavl', 0.0024381099227126992) +zone = ('ncz053', 0.0023968253191193308) + +[fips3722500] +centroid = (0.61372443657863252, -1.40543618891883) +description = Fairview town, NC +station = ('keqy', 0.0028790647903674223) +zone = ('ncz082', 0.0030625360281019355) + +[fips3722560] +centroid = (0.61289821516403087, -1.3637451251040063) +description = Faison town, NC +station = ('kdpl', 0.0030079417149278097) +zone = ('ncz089', 0.0039962518462594099) + +[fips3722600] +centroid = (0.62116484499305447, -1.4042588596186047) +description = Faith town, NC +station = ('kruq', 0.0013350633665677161) +zone = ('ncz057', 0.0012800239261259604) + +[fips3722620] +centroid = (0.61423035516890812, -1.3726715242968686) +description = Falcon town, NC +station = ('khrj', 0.0034632495452389623) +zone = ('ncz088', 0.0035881037026641075) + +[fips3722640] +centroid = (0.62305718332794413, -1.3528614264214947) +description = Falkland town, NC +station = ('kpgv', 0.0019682981996063413) +zone = ('ncz044', 0.0026865114443711969) + +[fips3722720] +centroid = (0.61835992635217429, -1.4224813536464871) +description = Fallston town, NC +station = ('keho', 0.0034271144878893411) +zone = ('ncz068', 0.0018294135952980118) + +[fips3722820] +centroid = (0.62125603844647104, -1.3542249998062001) +description = Farmville town, NC +station = ('kpgv', 0.0027951552596739188) +zone = ('ncz079', 0.0022641939533395035) + +[fips3722920] +centroid = (0.61235068792438774, -1.3784656334410541) +description = Fayetteville city, NC +station = ('kfbg', 0.0010758040217552437) +zone = ('ncz088', 0.0022766159108592249) + +[fips3722982] +centroid = (0.62480406592297277, -1.3801717276914636) +description = Fearrington Village CDP, NC +station = ('kigx', 0.0023563850746248028) +zone = ('ncz040', 0.0030172281267514434) + +[fips3723520] +centroid = (0.61113405380940755, -1.3849408747791234) +description = Five Points CDP, NC +station = ('khff', 0.0021487009453026477) +zone = ('ncz086', 0.0016322794351452329) + +[fips3723600] +centroid = (0.61546042831912862, -1.4391311489386898) +description = Flat Rock village, NC +station = ('kavl', 0.0031648086236503916) +zone = ('ncz065', 0.0013168385288107464) + +[fips3723640] +centroid = (0.63719447244214578, -1.4063829078649892) +description = Flat Rock CDP, NC +station = ('kmwk', 0.000931276520340014) +zone = ('ncz003', 0.0022344077183787669) + +[fips3723760] +centroid = (0.61842050673051097, -1.4400274627760514) +description = Fletcher town, NC +station = ('kavl', 0.00036751135330436872) +zone = ('ncz065', 0.0017325568821273804) + +[fips3724080] +centroid = (0.61668451499001475, -1.4289236780748635) +description = Forest City town, NC +station = ('kfqd', 0.0018883640840630504) +zone = ('ncz508', 0.0011079669999962208) + +[fips3724170] +centroid = (0.6160272065404212, -1.4520340539394185) +description = Forest Hills village, NC +station = ('k1a5', 0.0034420912169650535) +zone = ('ncz059', 0.0012137620034862291) + +[fips3724198] +centroid = (0.62811841126592494, -1.3911675288718308) +description = Forest Oaks CDP, NC +station = ('kbuy', 0.0034961069595542352) +zone = ('ncz022', 0.0019547837155748059) + +[fips3724380] +centroid = (0.6309586379175729, -1.4272142153389977) +description = Foscoe CDP, NC +station = ('ktnb', 0.0019348101610000175) +zone = ('ncz018', 0.0017637451085349989) + +[fips3724440] +centroid = (0.62259388567800222, -1.3549127642512411) +description = Fountain town, NC +station = ('kpgv', 0.0033418085369143632) +zone = ('ncz079', 0.0033217986289543894) + +[fips3724520] +centroid = (0.6187265851214333, -1.3686577382561795) +description = Four Oaks town, NC +station = ('kjnx', 0.0016274817947275594) +zone = ('ncz042', 0.0013906030249604185) + +[fips3724570] +centroid = (0.61397000440438798, -1.3886188594717284) +description = Foxfire village, NC +station = ('khff', 0.002673792375276185) +zone = ('ncz075', 0.002587700286710353) + +[fips3724640] +centroid = (0.61402777480262904, -1.4552865971735576) +description = Franklin town, NC +station = ('k1a5', 0.0007941883082167357) +zone = ('ncz062', 0.0007873499825006336) + +[fips3724720] +centroid = (0.63008550205267766, -1.3692472057577481) +description = Franklinton town, NC +station = ('klhz', 0.0021914274823612127) +zone = ('ncz026', 0.002368833732756833) + +[fips3724740] +centroid = (0.62383214442241475, -1.3909084521976647) +description = Franklinville town, NC +station = ('k5w8', 0.0027630542008421658) +zone = ('ncz039', 0.0016969989624069069) + +[fips3724900] +centroid = (0.62035324943758441, -1.3609289316361579) +description = Fremont town, NC +station = ('kgww', 0.0014574331054805459) +zone = ('ncz043', 0.0029269300305375654) + +[fips3725020] +centroid = (0.61494765058489265, -1.3199438884103507) +description = Frisco CDP, NC +station = ('khse', 0.00015069306583991425) +zone = ('ncz104', 0.0044756876941135582) + +[fips3725160] +centroid = (0.61780698859185001, -1.438456683902549) +description = Fruitland CDP, NC +station = ('kavl', 0.0017609109321058412) +zone = ('ncz065', 0.001393623481457309) + +[fips3725300] +centroid = (0.62123663038518884, -1.3750130405680516) +description = Fuquay-Varina town, NC +station = ('khrj', 0.0038268333774578302) +zone = ('ncz041', 0.0038973236746846006) + +[fips3725380] +centroid = (0.62594018799955853, -1.4241525936717341) +description = Gamewell town, NC +station = ('khky', 0.0036286175894936134) +zone = ('ncz502', 0.0017492794337233344) + +[fips3725460] +centroid = (0.60712852317608057, -1.3682494184776757) +description = Garland town, NC +station = ('kctz', 0.0033381915845236247) +zone = ('ncz089', 0.0036043902823446219) + +[fips3725480] +centroid = (0.62298848716858568, -1.3722258370190792) +description = Garner town, NC +station = ('krdu', 0.0041232117591095763) +zone = ('ncz041', 0.0017120102247747599) + +[fips3725540] +centroid = (0.63613500522630773, -1.3536840524578371) +description = Garysburg town, NC +station = ('kixa', 0.0023413892653988688) +zone = ('ncz012', 0.0023579275414668788) + +[fips3725560] +centroid = (0.63696192477261016, -1.3551856115732055) +description = Gaston town, NC +station = ('kixa', 0.002885215243878525) +zone = ('vaz087', 0.0033894121541965735) + +[fips3725580] +centroid = (0.6152150001197132, -1.4169095819957129) +description = Gastonia city, NC +station = ('kakh', 0.00097908647976648641) +zone = ('ncz070', 0.00079126749783898164) + +[fips3725680] +centroid = (0.63542821669242022, -1.3396552530099393) +description = Gatesville town, NC +station = ('ksfq', 0.0052646525397912836) +zone = ('ncz014', 0.001006118519378413) + +[fips3725880] +centroid = (0.6328211136689611, -1.4003733901845223) +description = Germanton CDP, NC +station = ('kint', 0.0021756883637041257) +zone = ('ncz021', 0.0022458920928059038) + +[fips3725900] +centroid = (0.61917345922311384, -1.4372865453588419) +description = Gerton CDP, NC +station = ('kavl', 0.0027046757822320618) +zone = ('ncz507', 0.0022463280507537225) + +[fips3725940] +centroid = (0.60666728501465605, -1.3894025123058737) +description = Gibson town, NC +station = ('kbbp', 0.0030077671294761825) +zone = ('ncz085', 0.002304601400311091) + +[fips3725980] +centroid = (0.63003418937266908, -1.3882700554207175) +description = Gibsonville town, NC +station = ('kbuy', 0.0015542595062106456) +zone = ('ncz023', 0.0022226683760012984) + +[fips3726200] +centroid = (0.62361903972074617, -1.4273752219624942) +description = Glen Alpine town, NC +station = ('khky', 0.0056657898307435504) +zone = ('ncz504', 0.001686262173341111) + +[fips3726460] +centroid = (0.63050860476994608, -1.3869216838537968) +description = Glen Raven CDP, NC +station = ('kbuy', 0.0016085227328989102) +zone = ('ncz023', 0.0016940217605850164) + +[fips3726520] +centroid = (0.6138544287013209, -1.4508308937662635) +description = Glenville CDP, NC +station = ('k1a5', 0.0042139739613251898) +zone = ('ncz063', 0.00068664371702345202) + +[fips3726680] +centroid = (0.60618876809363675, -1.3358516569710681) +description = Gloucester CDP, NC +station = ('kmrh', 0.0015971258769432162) +zone = ('ncz095', 0.0025822235080566742) + +[fips3726740] +centroid = (0.61458177721379703, -1.373165120862625) +description = Godwin town, NC +station = ('khrj', 0.0030034879831491545) +zone = ('ncz088', 0.0035869906983115045) + +[fips3726880] +centroid = (0.61749663414426026, -1.360889888620791) +description = Goldsboro city, NC +station = ('kgsb', 0.00081900554068617989) +zone = ('ncz078', 0.00052058784687420334) + +[fips3726920] +centroid = (0.62124745142655124, -1.3845803246622461) +description = Goldston town, NC +station = ('k5w8', 0.0031159228790126467) +zone = ('ncz040', 0.0021656638926569414) + +[fips3727120] +centroid = (0.62904568724421706, -1.375440541515035) +description = Gorman CDP, NC +station = ('krdu', 0.0025370783563964604) +zone = ('ncz025', 0.00098546810966060978) + +[fips3727280] +centroid = (0.62930118599341656, -1.3856059673971808) +description = Graham city, NC +station = ('kbuy', 0.0011620865473730129) +zone = ('ncz023', 0.00025791007608616967) + +[fips3727320] +centroid = (0.6299422105210889, -1.4286183501755196) +description = Grandfather village, NC +station = ('ktnb', 0.0034257674603199811) +zone = ('ncz033', 0.0010091607619022358) + +[fips3727420] +centroid = (0.62477991056612514, -1.4211227195435645) +description = Granite Falls town, NC +station = ('khky', 0.0010085714628296429) +zone = ('ncz502', 0.0019962368194771977) + +[fips3727440] +centroid = (0.62156438576542095, -1.4040990398189996) +description = Granite Quarry town, NC +station = ('kruq', 0.001157348535632038) +zone = ('ncz057', 0.0011705339034895697) + +[fips3727520] +centroid = (0.61339366177879451, -1.3411927135480213) +description = Grantsboro town, NC +station = ('kewn', 0.0031916550050953381) +zone = ('ncz094', 0.0013717764649252072) + +[fips3727780] +centroid = (0.60784726721534432, -1.3600402972475052) +description = Greenevers town, NC +station = ('kdpl', 0.0031266488076895859) +zone = ('ncz090', 0.0019137739280604418) + +[fips3727870] +centroid = (0.63044599980967719, -1.3848648831434915) +description = Green Level town, NC +station = ('kbuy', 0.0022897061162476732) +zone = ('ncz023', 0.0015487074526542661) + +[fips3728000] +centroid = (0.63000249419345278, -1.3932458669451055) +description = Greensboro city, NC +station = ('kgso', 0.0017341580405988771) +zone = ('ncz022', 0.00061465139018461532) + +[fips3728080] +centroid = (0.62127806450163126, -1.3504511790843681) +description = Greenville city, NC +station = ('kpgv', 0.00073148721475431509) +zone = ('ncz044', 5.4527822237748626e-05) + +[fips3728200] +centroid = (0.61749820494058705, -1.3516040563217731) +description = Grifton town, NC +station = ('kiso', 0.0026272072090887219) +zone = ('ncz091', 0.0037656003171346627) + +[fips3728240] +centroid = (0.62076334945192568, -1.3473627317065016) +description = Grimesland town, NC +station = ('kocw', 0.0021087347595618992) +zone = ('ncz044', 0.0025487562632164236) + +[fips3728400] +centroid = (0.61385020500453114, -1.4216043082440672) +description = Grover town, NC +station = ('keho', 0.0025215865281553412) +zone = ('ncz068', 0.0032040166079324037) + +[fips3728600] +centroid = (0.62059763043944871, -1.3837097544313515) +description = Gulf CDP, NC +station = ('ktta', 0.0025827687673689085) +zone = ('ncz076', 0.0021173129773257417) + +[fips3728900] +centroid = (0.60789493215721624, -1.3519177268949414) +description = Half Moon CDP, NC +station = ('knca', 0.002269501672047322) +zone = ('ncz098', 0.0016521981458650469) + +[fips3728920] +centroid = (0.63399935054039747, -1.3542027468582374) +description = Halifax town, NC +station = ('kixa', 0.00070602810842959802) +zone = ('ncz011', 0.0014709808539134311) + +[fips3729000] +centroid = (0.59897725961061388, -1.3717131465513059) +description = Hallsboro CDP, NC +station = ('kcpc', 0.0019294087254972611) +zone = ('ncz099', 0.0012873470718560134) + +[fips3729120] +centroid = (0.62734669648386321, -1.3475109625198736) +description = Hamilton town, NC +station = ('ketc', 0.0047166961805461191) +zone = ('ncz029', 0.0022796599278802187) + +[fips3729160] +centroid = (0.60893146574668322, -1.3912126281797021) +description = Hamlet city, NC +station = ('krcz', 0.00070718345534921873) +zone = ('ncz084', 0.0021058083375295371) + +[fips3729180] +centroid = (0.59974372095162709, -1.3570886138698248) +description = Hampstead CDP, NC +station = ('kilm', 0.0026751336307298977) +zone = ('ncz106', 0.0016027840010008447) + +[fips3729560] +centroid = (0.60560724184016479, -1.336197197256378) +description = Harkers Island CDP, NC +station = ('kmrh', 0.0014454127791401965) +zone = ('ncz095', 0.0028383547863655954) + +[fips3729640] +centroid = (0.6275862080171144, -1.4097793360426629) +description = Harmony town, NC +station = ('ksvh', 0.0042385243626535934) +zone = ('ncz036', 0.0029830408046065066) + +[fips3729680] +centroid = (0.60611556898480801, -1.3648735851851757) +description = Harrells town, NC +station = ('kctz', 0.004914685926030722) +zone = ('ncz089', 0.0052037391493916993) + +[fips3729720] +centroid = (0.63358373528561995, -1.3402693471072535) +description = Harrellsville town, NC +station = ('kede', 0.0057326680377063005) +zone = ('ncz014', 0.002794214423969136) + +[fips3729800] +centroid = (0.61639102042299942, -1.4076253379463142) +description = Harrisburg town, NC +station = ('kjqf', 0.0014613672933798413) +zone = ('ncz072', 0.0018683485457128605) + +[fips3730040] +centroid = (0.62671958223032898, -1.3487262701846221) +description = Hassell town, NC +station = ('ketc', 0.0037459732749475986) +zone = ('ncz029', 0.0026619935394112484) + +[fips3730100] +centroid = (0.61464211324603857, -1.3210071080840806) +description = Hatteras CDP, NC +station = ('khse', 0.0010609182812289313) +zone = ('ncz104', 0.0035589572536430438) + +[fips3730120] +centroid = (0.60927505126323078, -1.3421491190715289) +description = Havelock city, NC +station = ('knkt', 0.00032991761689627304) +zone = ('ncz095', 0.0035355915457014392) + +[fips3730260] +centroid = (0.62997394060689016, -1.3851275202893314) +description = Haw River town, NC +station = ('kbuy', 0.0018261801231512663) +zone = ('ncz023', 0.0010334666790254023) + +[fips3730280] +centroid = (0.61167583891581156, -1.4629185031135084) +description = Hayesville town, NC +station = ('krhp', 0.0026696698385204895) +zone = ('ncz061', 0.0010015542714508319) + +[fips3730340] +centroid = (0.63262760901479254, -1.4157092143493613) +description = Hays CDP, NC +station = ('kukf', 0.00068313507252835103) +zone = ('ncz019', 0.00099266576756395185) + +[fips3730620] +centroid = (0.61269308661704402, -1.4072297939779346) +description = Hemby Bridge town, NC +station = ('keqy', 0.0015459628996342283) +zone = ('ncz082', 0.0024633556008713236) + +[fips3730660] +centroid = (0.63399732595846503, -1.3686103002071104) +description = Henderson city, NC +station = ('khnz', 0.0017177111823288513) +zone = ('ncz009', 0.00069576323000677671) + +[fips3730720] +centroid = (0.61650769568349528, -1.4391525641286116) +description = Hendersonville city, NC +station = ('kavl', 0.0022039632861521612) +zone = ('ncz065', 0.00039206186759979596) + +[fips3730800] +centroid = (0.61536516824855469, -1.4277562796980821) +description = Henrietta CDP, NC +station = ('kfqd', 0.0035089206894222827) +zone = ('ncz508', 0.0026844611800133779) + +[fips3730900] +centroid = (0.63140514550011062, -1.3345931000474549) +description = Hertford town, NC +station = ('kede', 0.0029638963190949902) +zone = ('ncz032', 0.00062900258202660934) + +[fips3731060] +centroid = (0.62380626118960769, -1.419367546634589) +description = Hickory city, NC +station = ('khky', 0.00085678428404829051) +zone = ('ncz056', 0.0020730516104435813) + +[fips3731260] +centroid = (0.62670888336201436, -1.4151438672980552) +description = Hiddenite CDP, NC +station = ('ksvh', 0.0030526483404010357) +zone = ('ncz035', 0.0013688231329114142) + +[fips3731360] +centroid = (0.61180501073375171, -1.4520716832380915) +description = Highlands town, NC +station = ('k1a5', 0.0042254397842180986) +zone = ('ncz063', 0.002519326420588293) + +[fips3731400] +centroid = (0.62806493437764388, -1.3960931098203466) +description = High Point city, NC +station = ('kgso', 0.0020780376150060565) +zone = ('ncz022', 0.0032795375107218228) + +[fips3731440] +centroid = (0.6176893883068505, -1.4172539005505465) +description = High Shoals town, NC +station = ('kipj', 0.0017106204729640977) +zone = ('ncz069', 0.0016888491873492126) + +[fips3731490] +centroid = (0.59810476951754188, -1.3602726180242384) +description = Hightsville CDP, NC +station = ('kilm', 0.00054773112377620508) +zone = ('ncz107', 0.0006131296803744108) + +[fips3731500] +centroid = (0.62339897115536225, -1.4210609523413364) +description = Hildebran town, NC +station = ('khky', 0.00076881785390332466) +zone = ('ncz502', 0.003315014681204135) + +[fips3731620] +centroid = (0.62967819456513974, -1.3805201652233319) +description = Hillsborough town, NC +station = ('kigx', 0.0025616544753470803) +zone = ('ncz024', 0.00042884203086578624) + +[fips3731660] +centroid = (0.62851802185146155, -1.4038240108354703) +description = Hillsdale CDP, NC +station = ('kint', 0.0035321026208819501) +zone = ('ncz037', 0.0021298466783807321) + +[fips3731860] +centroid = (0.62878517940006429, -1.3507798943956886) +description = Hobgood town, NC +station = ('ketc', 0.0026652542334640139) +zone = ('ncz028', 0.0034898368353859918) + +[fips3731880] +centroid = (0.61525924421625122, -1.3364526960055774) +description = Hobucken CDP, NC +station = ('knbt', 0.0043753161840569717) +zone = ('ncz094', 0.0031669704692020768) + +[fips3731920] +centroid = (0.61141194513290997, -1.3883943054101668) +description = Hoffman town, NC +station = ('khff', 0.00070306144072955501) +zone = ('ncz085', 0.0034622232552774844) + +[fips3731960] +centroid = (0.59187582904351432, -1.3669552917439067) +description = Holden Beach town, NC +station = ('ksut', 0.0035760748957854001) +zone = ('ncz109', 0.0035509577164057368) + +[fips3732100] +centroid = (0.63282640201659468, -1.3602344651267895) +description = Hollister CDP, NC +station = ('kixa', 0.0043438267418983148) +zone = ('ncz010', 0.0034092877347294643) + +[fips3732180] +centroid = (0.60202483137739871, -1.3537323457182397) +description = Holly Ridge town, NC +station = ('knca', 0.0039540474103776438) +zone = ('ncz106', 0.0022948187160485001) + +[fips3732260] +centroid = (0.6222812797556776, -1.3759909660012366) +description = Holly Springs town, NC +station = ('ktta', 0.0039339384176034333) +zone = ('ncz041', 0.0035688775263351879) + +[fips3732540] +centroid = (0.61824911539796512, -1.3541882431721532) +description = Hookerton town, NC +station = ('kiso', 0.0016139071566350848) +zone = ('ncz079', 0.0016378150227287116) + +[fips3732580] +centroid = (0.61863052219940351, -1.4387730597360582) +description = Hoopers Creek CDP, NC +station = ('kavl', 0.0014040375139972455) +zone = ('ncz065', 0.001999330753239807) + +[fips3732640] +centroid = (0.61030987443003071, -1.3780005031953979) +description = Hope Mills town, NC +station = ('kfay', 0.0010392935265651567) +zone = ('ncz088', 0.0022859857487168276) + +[fips3732740] +centroid = (0.61667975024115684, -1.4409706387038292) +description = Horse Shoe CDP, NC +station = ('kavl', 0.0017940426609904538) +zone = ('ncz065', 0.0011635689126345097) + +[fips3732840] +centroid = (0.62644629857605183, -1.4456426931252) +description = Hot Springs town, NC +station = ('kavl', 0.0090494229098993934) +zone = ('tnz043', 0.0021381507243808987) + +[fips3732980] +centroid = (0.62565590877099364, -1.4222072671407537) +description = Hudson town, NC +station = ('khky', 0.0022414603762750305) +zone = ('ncz502', 0.00093937847693019091) + +[fips3733120] +centroid = (0.61792444925050916, -1.4115694329899708) +description = Huntersville town, NC +station = ('kjqf', 0.0024029871531177347) +zone = ('ncz071', 0.0028227090114267025) + +[fips3733320] +centroid = (0.62352707832245868, -1.4217184876837328) +description = Icard CDP, NC +station = ('khky', 0.0011473069639621083) +zone = ('ncz502', 0.0030869757038769628) + +[fips3733460] +centroid = (0.60539682494554425, -1.3421858233456985) +description = Indian Beach town, NC +station = ('knjm', 0.001904886290637532) +zone = ('ncz095', 0.0041778742097182279) + +[fips3733560] +centroid = (0.61202352595610132, -1.4075646877548071) +description = Indian Trail town, NC +station = ('keqy', 0.00097298996284118802) +zone = ('ncz082', 0.0021538378382428337) + +[fips3733640] +centroid = (0.60788163274831608, -1.3675281960708738) +description = Ingold CDP, NC +station = ('kctz', 0.0025619261220451092) +zone = ('ncz089', 0.0028464282590183122) + +[fips3733820] +centroid = (0.61878920753499478, -1.4164146240731397) +description = Iron Station CDP, NC +station = ('kipj', 0.00051609704055622578) +zone = ('ncz069', 0.0011342515152367994) + +[fips3733940] +centroid = (0.60355527569188749, -1.3657575944513105) +description = Ivanhoe CDP, NC +station = ('keyf', 0.0047698553933633965) +zone = ('ncz096', 0.0045061118023193344) + +[fips3733993] +centroid = (0.60846746996504042, -1.4093520619884823) +description = JAARS CDP, NC +station = ('klkr', 0.0028728716950086586) +zone = ('scz015', 0.003134289765980638) + +[fips3734000] +centroid = (0.63512697286352593, -1.3512224051742394) +description = Jackson town, NC +station = ('kixa', 0.0032739735484963268) +zone = ('ncz012', 0.00057730635049297067) + +[fips3734038] +centroid = (0.61476877178985578, -1.3549539365682959) +description = Jackson Heights CDP, NC +station = ('kiso', 0.0019285700307780532) +zone = ('ncz091', 0.00029847952845204914) + +[fips3734200] +centroid = (0.6062726835240726, -1.3507568385962698) +description = Jacksonville city, NC +station = ('knca', 0.0010442831868097541) +zone = ('ncz098', 0.0005957816912981101) + +[fips3734260] +centroid = (0.61187082709984442, -1.3440739030772133) +description = James City CDP, NC +station = ('kewn', 0.00056227245258249692) +zone = ('ncz093', 0.0017266689203876793) + +[fips3734300] +centroid = (0.62828941862603538, -1.3951356221927025) +description = Jamestown town, NC +station = ('kgso', 0.0017863892800274565) +zone = ('ncz022', 0.0025039837755548681) + +[fips3734320] +centroid = (0.62503661359250851, -1.3421613363762932) +description = Jamesville town, NC +station = ('kocw', 0.0047164965675503719) +zone = ('ncz029', 0.0029734625621340286) + +[fips3734440] +centroid = (0.63565853034051334, -1.4218893903240881) +description = Jefferson town, NC +station = ('kgev', 0.00075811674892742602) +zone = ('ncz001', 0.00052105569212026743) + +[fips3734840] +centroid = (0.63243785681851572, -1.4108727324591597) +description = Jonesville town, NC +station = ('kukf', 0.0034838851519029316) +zone = ('ncz020', 0.0027548283388321264) + +[fips3735200] +centroid = (0.61918312834716993, -1.4074090741986993) +description = Kannapolis city, NC +station = ('kjqf', 0.0018874155961469564) +zone = ('ncz072', 0.0019938804129573792) + +[fips3735340] +centroid = (0.61297893664193559, -1.3665645299776776) +description = Keener CDP, NC +station = ('kctz', 0.0027114322311022395) +zone = ('ncz089', 0.0024898339583136735) + +[fips3735360] +centroid = (0.6314819050806133, -1.3478183499077347) +description = Kelford town, NC +station = ('kasj', 0.0021640952316442775) +zone = ('ncz030', 0.0039976966189464785) + +[fips3735440] +centroid = (0.60150962763550253, -1.3667841098508713) +description = Kelly CDP, NC +station = ('keyf', 0.0045797426166651776) +zone = ('ncz096', 0.0044761248564072677) + +[fips3735460] +centroid = (0.61016091057837307, -1.3607654117385388) +description = Kenansville town, NC +station = ('kdpl', 0.00073860484869719316) +zone = ('ncz090', 0.00061932576749585799) + +[fips3735540] +centroid = (0.62132068544196495, -1.3635846595325778) +description = Kenly town, NC +station = ('kgww', 0.0033436431128277522) +zone = ('ncz043', 0.0034934569948133565) + +[fips3735600] +centroid = (0.63019167043107649, -1.3977550646939731) +description = Kernersville town, NC +station = ('kint', 0.0021335532334080093) +zone = ('ncz021', 0.0024419811331197784) + +[fips3735720] +centroid = (0.62862577847947965, -1.320732131460429) +description = Kill Devil Hills town, NC +station = ('kffa', 8.2255704206486816e-05) +zone = ('ncz103', 0.0045644641485416641) + +[fips3735760] +centroid = (0.63311574269999016, -1.4024904047540214) +description = King city, NC +station = ('kint', 0.0030205979363868308) +zone = ('ncz004', 0.0027617603309468544) + +[fips3735870] +centroid = (0.59809286637204329, -1.3590365060348057) +description = Kings Grant CDP, NC +station = ('kilm', 0.00047592521269343777) +zone = ('ncz107', 0.00050852202961134362) + +[fips3735880] +centroid = (0.61496869925567177, -1.4197829000899784) +description = Kings Mountain city, NC +station = ('kakh', 0.0028829606588129811) +zone = ('ncz070', 0.0026018798969712777) + +[fips3735890] +centroid = (0.61718518013924184, -1.4245386255956904) +description = Kingstown town, NC +station = ('keho', 0.0019773515730817579) +zone = ('ncz068', 0.0010429260199029979) + +[fips3735920] +centroid = (0.61566662151695917, -1.3542597493116075) +description = Kinston city, NC +station = ('kiso', 0.0010691857532191759) +zone = ('ncz091', 0.00092892308506313385) + +[fips3736020] +centroid = (0.63218981062522228, -1.3690588323715804) +description = Kittrell town, NC +station = ('khnz', 0.0027361595642154363) +zone = ('ncz009', 0.0025384708581378847) + +[fips3736060] +centroid = (0.62954235558945715, -1.3215147196437307) +description = Kitty Hawk town, NC +station = ('kffa', 0.0011744186335800276) +zone = ('ncz047', 0.0055153863627458184) + +[fips3736080] +centroid = (0.62468346367165994, -1.3700216258001507) +description = Knightdale town, NC +station = ('kjnx', 0.0046304995536515245) +zone = ('ncz041', 0.0021796099435055969) + +[fips3736220] +centroid = (0.59340035669183877, -1.3597437832608839) +description = Kure Beach town, NC +station = ('ksut', 0.0027117691523859634) +zone = ('ncz110', 0.0012266733147234656) + +[fips3736400] +centroid = (0.61621500396793583, -1.3576899845168922) +description = La Grange town, NC +station = ('kgsb', 0.0025603447614354208) +zone = ('ncz091', 0.002417039454689492) + +[fips3736480] +centroid = (0.62011907861184434, -1.448148078359853) +description = Lake Junaluska CDP, NC +station = ('kavl', 0.0064702183755660572) +zone = ('ncz052', 0.00047134762741214199) + +[fips3736500] +centroid = (0.61867043787939657, -1.4346720770459394) +description = Lake Lure town, NC +station = ('kfqd', 0.0037919438074059271) +zone = ('ncz507', 0.00032909661272093759) + +[fips3736511] +centroid = (0.62133023239297336, -1.4134225188699832) +description = Lake Norman of Catawba CDP, NC +station = ('ksvh', 0.0029158853604626771) +zone = ('ncz036', 0.0039419291310231084) + +[fips3736512] +centroid = (0.6123398145231479, -1.4073353165845099) +description = Lake Park village, NC +station = ('keqy', 0.0012104248264171668) +zone = ('ncz082', 0.0022377338227586694) + +[fips3736513] +centroid = (0.62768925225615213, -1.3647031537837184) +description = Lake Royale CDP, NC +station = ('klhz', 0.0022140534190041488) +zone = ('ncz026', 0.002460774897952918) + +[fips3736514] +centroid = (0.61721830648844478, -1.4637435202509259) +description = Lake Santeetlah town, NC +station = ('krhp', 0.0029499298680292947) +zone = ('ncz058', 0.00052570920712153202) + +[fips3736640] +centroid = (0.59899795921554255, -1.3704430006414596) +description = Lake Waccamaw town, NC +station = ('kcpc', 0.0029219334691312302) +zone = ('ncz099', 0.0021592406470115131) + +[fips3736860] +centroid = (0.62045699180832303, -1.4069182003465759) +description = Landis town, NC +station = ('kruq', 0.0022011076508118995) +zone = ('ncz057', 0.0019877440463581643) + +[fips3736960] +centroid = (0.63703489698863602, -1.4226120788074614) +description = Lansing town, NC +station = ('kgev', 0.0017418465815259639) +zone = ('ncz001', 0.0011376893284023503) + +[fips3737000] +centroid = (0.63443104027758568, -1.3492398158637289) +description = Lasker town, NC +station = ('kasj', 0.0021085021691760698) +zone = ('ncz012', 0.0017378926469768415) + +[fips3737040] +centroid = (0.61636979721929519, -1.4252394276502434) +description = Lattimore town, NC +station = ('keho', 0.0014276372657182196) +zone = ('ncz068', 0.0015273463737697631) + +[fips3737120] +centroid = (0.60754083975857165, -1.3883301820134486) +description = Laurel Hill CDP, NC +station = ('kmeb', 0.002602990816385493) +zone = ('ncz085', 0.001081614600089662) + +[fips3737160] +centroid = (0.6163027940293111, -1.4399968671542638) +description = Laurel Park town, NC +station = ('kavl', 0.002161500849349845) +zone = ('ncz065', 0.00056615915934643427) + +[fips3737220] +centroid = (0.60671409474519455, -1.3871422585646636) +description = Laurinburg city, NC +station = ('kmeb', 0.0016299414937346998) +zone = ('ncz085', 0.00137853275351199) + +[fips3737260] +centroid = (0.61809760336559949, -1.4235272596540371) +description = Lawndale town, NC +station = ('keho', 0.0029193416264004222) +zone = ('ncz068', 0.0014062056798695294) + +[fips3737640] +centroid = (0.62813734808830901, -1.3540273412684118) +description = Leggett town, NC +station = ('ketc', 0.0011844387294335549) +zone = ('ncz028', 0.001360490877990714) + +[fips3737680] +centroid = (0.59671595867185245, -1.3615274224899596) +description = Leland town, NC +station = ('kilm', 0.002081448538018412) +zone = ('ncz107', 0.0022776449683994037) + +[fips3737760] +centroid = (0.62667210927467487, -1.4229140382213488) +description = Lenoir city, NC +station = ('khky', 0.0033930561648341778) +zone = ('ncz502', 0.00062366689262469241) + +[fips3738030] +centroid = (0.63032361732252729, -1.3470372278010045) +description = Lewiston Woodville town, NC +station = ('kasj', 0.0031896299289601174) +zone = ('ncz030', 0.0029519995391641502) + +[fips3738040] +centroid = (0.6301558737281181, -1.4036646797280559) +description = Lewisville town, NC +station = ('kint', 0.0027332477791139646) +zone = ('ncz021', 0.0024055722241451217) + +[fips3738060] +centroid = (0.62485839802258736, -1.40094456663553) +description = Lexington city, NC +station = ('kexx', 0.00062037939769073321) +zone = ('ncz038', 0.00079986394060427269) + +[fips3738100] +centroid = (0.62578832690134245, -1.3887463906801716) +description = Liberty town, NC +station = ('k5w8', 0.0027856737894157014) +zone = ('ncz023', 0.0040784778189636196) + +[fips3738170] +centroid = (0.61586897499043547, -1.4220486865249178) +description = Light Oak CDP, NC +station = ('keho', 0.001860873258045273) +zone = ('ncz068', 0.0013842778306321344) + +[fips3738200] +centroid = (0.61029790147136209, -1.3959934689733502) +description = Lilesville town, NC +station = ('kafp', 0.0016135172251705739) +zone = ('ncz083', 0.0016935932165149938) + +[fips3738220] +centroid = (0.61782377865925409, -1.3754712593098704) +description = Lillington town, NC +station = ('khrj', 0.0011244200157023367) +zone = ('ncz077', 0.0010088072497842033) + +[fips3738320] +centroid = (0.61914799486932726, -1.4178737716876848) +description = Lincolnton city, NC +station = ('kipj', 0.0011014641764987556) +zone = ('ncz069', 0.00028710712961938254) + +[fips3738360] +centroid = (0.61530888138017792, -1.374418371985312) +description = Linden town, NC +station = ('khrj', 0.0021745519440271957) +zone = ('ncz077', 0.002632846532786769) + +[fips3738680] +centroid = (0.63589587766549205, -1.359812130354392) +description = Littleton town, NC +station = ('kixa', 0.0042258077496344143) +zone = ('ncz010', 0.0028216654370980202) + +[fips3738860] +centroid = (0.61555617708189303, -1.403886528529277) +description = Locust city, NC +station = ('kjqf', 0.0043864557850526896) +zone = ('ncz072', 0.0026326806291692862) + +[fips3739280] +centroid = (0.62348557439284624, -1.420444502049532) +description = Long View town, NC +station = ('khky', 0.00047061227982116404) +zone = ('ncz056', 0.0026448217443409369) + +[fips3739360] +centroid = (0.630024520248613, -1.3666206946730068) +description = Louisburg town, NC +station = ('klhz', 0.0013603238344282829) +zone = ('ncz026', 0.00034530538524418032) + +[fips3739420] +centroid = (0.62808483113111657, -1.4135285999819194) +description = Love Valley town, NC +station = ('ksvh', 0.0038903171617491704) +zone = ('ncz035', 0.0028914524448211245) + +[fips3739480] +centroid = (0.61555516479092687, -1.4154819201208739) +description = Lowell city, NC +station = ('kakh', 0.0013868712312750991) +zone = ('ncz070', 0.001211672992449109) + +[fips3739520] +centroid = (0.61818083811762714, -1.4136788379239313) +description = Lowesville CDP, NC +station = ('kipj', 0.0025790371455262154) +zone = ('ncz070', 0.0033859285461362619) + +[fips3739540] +centroid = (0.63748077625264299, -1.4114691638244437) +description = Lowgap CDP, NC +station = ('khlx', 0.0042872383975679123) +zone = ('ncz003', 0.0032086475271364775) + +[fips3739600] +centroid = (0.62211673011379953, -1.3614823057287953) +description = Lucama town, NC +station = ('kgww', 0.0032686506354347366) +zone = ('ncz043', 0.0016379295432840367) + +[fips3739680] +centroid = (0.60894785438835941, -1.3800654545933098) +description = Lumber Bridge town, NC +station = ('kfay', 0.0031506667856715425) +zone = ('ncz086', 0.0032428411908000643) + +[fips3739700] +centroid = (0.60442017360271327, -1.3791166412520481) +description = Lumberton city, NC +station = ('klbt', 0.00088602198680482163) +zone = ('ncz087', 0.0012448821387567161) + +[fips3739880] +centroid = (0.61549760383219609, -1.4151115438003083) +description = McAdenville town, NC +station = ('kakh', 0.0015171230920513787) +zone = ('ncz070', 0.0015149404528466033) + +[fips3739960] +centroid = (0.62399519308113605, -1.3555924303685527) +description = Macclesfield town, NC +station = ('ketc', 0.0036039778728989857) +zone = ('ncz028', 0.002985585575034267) + +[fips3740140] +centroid = (0.60307661914452804, -1.381886304242038) +description = McDonald town, NC +station = ('klbt', 0.0017696730829103221) +zone = ('ncz087', 0.0018341525429689466) + +[fips3740240] +centroid = (0.60763316767600217, -1.3958554483361023) +description = McFarlan town, NC +station = ('kcqw', 0.0017361700564994512) +zone = ('ncz083', 0.0033100987245728193) + +[fips3740460] +centroid = (0.63002034891170078, -1.3902371636607627) +description = McLeansville CDP, NC +station = ('kbuy', 0.0028798671130877179) +zone = ('ncz022', 0.0019200639444562901) + +[fips3740540] +centroid = (0.63599082357680059, -1.3628217586632385) +description = Macon town, NC +station = ('kavc', 0.0043662257972977986) +zone = ('ncz010', 0.00081670471201238299) + +[fips3740560] +centroid = (0.63518816410710077, -1.3958558846684155) +description = Madison town, NC +station = ('ksif', 0.0019544771389878009) +zone = ('ncz005', 0.0028319208813623168) + +[fips3740600] +centroid = (0.62006305354285529, -1.4496530059606776) +description = Maggie Valley town, NC +station = ('k1a5', 0.0074327560515910027) +zone = ('ncz052', 0.0012031580308662687) + +[fips3740640] +centroid = (0.60905442419248623, -1.3622867977942097) +description = Magnolia town, NC +station = ('kdpl', 0.0020805669170868139) +zone = ('ncz090', 0.00185530421326737) + +[fips3740660] +centroid = (0.62108478674026546, -1.4175510254024057) +description = Maiden town, NC +station = ('kipj', 0.0019710180266632269) +zone = ('ncz056', 0.0013470960680028795) + +[fips3740860] +centroid = (0.61804402175756323, -1.3777038146758513) +description = Mamers CDP, NC +station = ('khrj', 0.0029440916765129332) +zone = ('ncz077', 0.0012126411754196386) + +[fips3740980] +centroid = (0.62654675972779661, -1.3226227593726521) +description = Manns Harbor CDP, NC +station = ('kmqi', 0.0011841580379243868) +zone = ('ncz047', 0.0024102583741163917) + +[fips3741060] +centroid = (0.62654461297281661, -1.3203646349331291) +description = Manteo town, NC +station = ('kmqi', 0.00075869634788316065) +zone = ('ncz103', 0.0024627577072185631) + +[fips3741220] +centroid = (0.61395476768001811, -1.4647938593947762) +description = Marble CDP, NC +station = ('krhp', 0.00095047011859208301) +zone = ('ncz060', 0.0020947048947077408) + +[fips3741380] +centroid = (0.5998382130773301, -1.3809892922729754) +description = Marietta town, NC +station = ('klbt', 0.0041314163091938074) +zone = ('scz024', 0.0036818559324179123) + +[fips3741420] +centroid = (0.62270642450817082, -1.4311714527119219) +description = Marion city, NC +station = ('kfqd', 0.0044621112075002257) +zone = ('ncz506', 0.0011091496001885898) + +[fips3741540] +centroid = (0.61663852556422472, -1.3623514622429962) +description = Mar-Mac CDP, NC +station = ('kgsb', 0.0012868362352168353) +zone = ('ncz078', 0.00094924848401487275) + +[fips3741580] +centroid = (0.62479640392755653, -1.4430632012105078) +description = Marshall town, NC +station = ('kavl', 0.0067057954697140572) +zone = ('ncz048', 0.001100463388341076) + +[fips3741600] +centroid = (0.6060832978469386, -1.3354134746090625) +description = Marshallberg CDP, NC +station = ('kmrh', 0.0019613123982641393) +zone = ('ncz095', 0.0029226313766695586) + +[fips3741620] +centroid = (0.62531881587926341, -1.4407430652226616) +description = Mars Hill town, NC +station = ('kavl', 0.0068938410780010331) +zone = ('ncz048', 0.0022848007370898002) + +[fips3741640] +centroid = (0.61060797666627131, -1.4027395679580361) +description = Marshville town, NC +station = ('keqy', 0.0035539415337019755) +zone = ('ncz082', 0.0022834248423221717) + +[fips3741720] +centroid = (0.61094002555646332, -1.4105334055459871) +description = Marvin village, NC +station = ('keqy', 0.0028806299727539061) +zone = ('ncz082', 0.0041114781183087526) + +[fips3741960] +centroid = (0.61295383880729182, -1.4087134111085924) +description = Matthews town, NC +station = ('keqy', 0.00226684553977032) +zone = ('ncz071', 0.0027977847871698963) + +[fips3742000] +centroid = (0.6192288908801572, -1.3542048761599248) +description = Maury CDP, NC +station = ('kiso', 0.0025735278738981487) +zone = ('ncz079', 0.001217883482268824) + +[fips3742020] +centroid = (0.60626636543218027, -1.384966583479005) +description = Maxton town, NC +station = ('kmeb', 0.00084136686862729354) +zone = ('ncz085', 0.0025857638659075579) + +[fips3742060] +centroid = (0.63570045314914625, -1.395720220225658) +description = Mayodan town, NC +station = ('ksif', 0.0016956339026547558) +zone = ('ncz005', 0.0027619234196316726) + +[fips3742100] +centroid = (0.60918946031671295, -1.3479274155326917) +description = Maysville town, NC +station = ('kewn', 0.0038751611355886087) +zone = ('ncz092', 0.0027296433162745663) + +[fips3742240] +centroid = (0.62988498117491609, -1.3835855218951947) +description = Mebane city, NC +station = ('kbuy', 0.0028963372704847896) +zone = ('ncz023', 0.0019472923312272899) + +[fips3742480] +centroid = (0.61443298789506462, -1.3377461246076452) +description = Mesic town, NC +station = ('knbt', 0.0041691983605917846) +zone = ('ncz094', 0.0018257370135393053) + +[fips3742620] +centroid = (0.62068678185764059, -1.3649197840504759) +description = Micro town, NC +station = ('kjnx', 0.0026705757399240557) +zone = ('ncz042', 0.0024258683679857138) + +[fips3742640] +centroid = (0.63526780348086931, -1.3670143362325016) +description = Middleburg town, NC +station = ('khnz', 0.0029503848766992452) +zone = ('ncz009', 0.0013180093114733783) + +[fips3742700] +centroid = (0.62464257060728579, -1.3649314428498793) +description = Middlesex town, NC +station = ('klhz', 0.0044518005899584333) +zone = ('ncz027', 0.0043775661855315756) + +[fips3742760] +centroid = (0.61512474914409265, -1.4053546994960544) +description = Midland town, NC +station = ('kjqf', 0.0036479535516567587) +zone = ('ncz072', 0.002530254268226399) + +[fips3742860] +centroid = (0.62788157008642931, -1.4001023929115655) +description = Midway town, NC +station = ('kint', 0.0027705020304383153) +zone = ('ncz021', 0.0027609117123195809) + +[fips3743160] +centroid = (0.63164975339477769, -1.417827869528357) +description = Millers Creek CDP, NC +station = ('kukf', 0.0021905630314709014) +zone = ('ncz019', 0.0010467883374052471) + +[fips3743200] +centroid = (0.61743385465106604, -1.4016973271419153) +description = Millingport CDP, NC +station = ('kvuj', 0.0023895202707509603) +zone = ('ncz073', 0.0014166398069855876) + +[fips3743260] +centroid = (0.61752300606925792, -1.4414423313874731) +description = Mills River town, NC +station = ('kavl', 0.0011986894296492012) +zone = ('ncz065', 0.0017367479333043755) + +[fips3743300] +centroid = (0.6377025203341089, -1.3824392769089473) +description = Milton town, NC +station = ('kdan', 0.001829556308120554) +zone = ('ncz006', 0.0030750179264699144) + +[fips3743360] +centroid = (0.60983935111698562, -1.4082432717679827) +description = Mineral Springs town, NC +station = ('keqy', 0.0016517397957863966) +zone = ('ncz082', 0.0023742867270536722) + +[fips3743440] +centroid = (0.61064747346724402, -1.3408441189365203) +description = Minnesott Beach town, NC +station = ('knkt', 0.0017601719024941803) +zone = ('ncz094', 0.0028855408953345311) + +[fips3743480] +centroid = (0.61397993532783179, -1.4077031272710756) +description = Mint Hill town, NC +station = ('keqy', 0.0028775998252186059) +zone = ('ncz071', 0.0027961469043294288) + +[fips3743580] +centroid = (0.61919688154167563, -1.4012528266880173) +description = Misenheimer village, NC +station = ('kvuj', 0.0021929369643939882) +zone = ('ncz073', 0.0029292781412419348) + +[fips3743720] +centroid = (0.62656814001113348, -1.4060561647757235) +description = Mocksville town, NC +station = ('kruq', 0.0044034114655160843) +zone = ('ncz037', 0.00056498285655880013) + +[fips3743860] +centroid = (0.6276205211902085, -1.3621955170743303) +description = Momeyer town, NC +station = ('krwi', 0.0028402727830663973) +zone = ('ncz027', 0.00087855992296470694) + +[fips3743880] +centroid = (0.62178787517613876, -1.3801135384142023) +description = Moncure CDP, NC +station = ('ktta', 0.00084576528717647493) +zone = ('ncz076', 0.0029703879804709055) + +[fips3743920] +centroid = (0.61089298893312205, -1.4060595681677648) +description = Monroe city, NC +station = ('keqy', 0.00083436357117251799) +zone = ('ncz082', 0.00049411554872592629) + +[fips3744100] +centroid = (0.62217566988263939, -1.4363913834387867) +description = Montreat town, NC +station = ('kavl', 0.0050102183271085255) +zone = ('ncz505', 0.0029408991773789764) + +[fips3744160] +centroid = (0.61608735058644504, -1.4259093373770366) +description = Mooresboro town, NC +station = ('keho', 0.0016464565816488972) +zone = ('ncz068', 0.0021276853903779568) + +[fips3744220] +centroid = (0.62107890498068619, -1.4106461887222508) +description = Mooresville town, NC +station = ('ksvh', 0.0036622624616245701) +zone = ('ncz036', 0.0039377119846727504) + +[fips3744280] +centroid = (0.63020301507121446, -1.4169815768273577) +description = Moravian Falls CDP, NC +station = ('kukf', 0.0023948457609198081) +zone = ('ncz019', 0.0017505908761400498) + +[fips3744320] +centroid = (0.60617934331567591, -1.3394251488013564) +description = Morehead City town, NC +station = ('kmrh', 0.0013401717187709603) +zone = ('ncz095', 0.0020505890592655103) + +[fips3744400] +centroid = (0.62379413115130633, -1.4259391825072458) +description = Morganton city, NC +station = ('khky', 0.004492822339570119) +zone = ('ncz504', 0.00067286306625623476) + +[fips3744520] +centroid = (0.62542903342152689, -1.3760319114254884) +description = Morrisville town, NC +station = ('krdu', 0.0015521416457892315) +zone = ('ncz041', 0.0028040565534213201) + +[fips3744560] +centroid = (0.60849700093598424, -1.3962636284882664) +description = Morven town, NC +station = ('kcqw', 0.0026615164787368389) +zone = ('ncz083', 0.0024106776579181314) + +[fips3744700] +centroid = (0.61733620347941698, -1.4399162853026992) +description = Mountain Home CDP, NC +station = ('kavl', 0.00118434921952247) +zone = ('ncz065', 0.00067461562436241761) + +[fips3744770] +centroid = (0.62278752995851094, -1.4201561387505177) +description = Mountain View CDP, NC +station = ('khky', 0.0011853254506922213) +zone = ('ncz056', 0.0022203164924908332) + +[fips3744800] +centroid = (0.63719330307154709, -1.4069891130740846) +description = Mount Airy city, NC +station = ('kmwk', 0.0012119231503979345) +zone = ('ncz003', 0.0019346396147088326) + +[fips3744900] +centroid = (0.61463078605919308, -1.3963126024270773) +description = Mount Gilead town, NC +station = ('kafp', 0.0035673576268442217) +zone = ('ncz074', 0.0024641105959630678) + +[fips3744960] +centroid = (0.61629794201399057, -1.4139835200514519) +description = Mount Holly city, NC +station = ('kclt', 0.0018952451229305625) +zone = ('ncz070', 0.002365723783553958) + +[fips3745100] +centroid = (0.61432259581987603, -1.3625491033274919) +description = Mount Olive town, NC +station = ('kgsb', 0.0027694129495570087) +zone = ('ncz078', 0.0030338346421031337) + +[fips3745140] +centroid = (0.61796823956144176, -1.4038151620161627) +description = Mount Pleasant town, NC +station = ('kjqf', 0.0039596624936834718) +zone = ('ncz072', 0.0017322659799627385) + +[fips3745460] +centroid = (0.63706390436080418, -1.3294750267357369) +description = Moyock CDP, NC +station = ('konx', 0.0028374358020645815) +zone = ('ncz016', 0.0020028563523189383) + +[fips3745560] +centroid = (0.63225814026543781, -1.4166006063582322) +description = Mulberry CDP, NC +station = ('kukf', 0.0011639959738340045) +zone = ('ncz019', 0.0003361134308626912) + +[fips3745640] +centroid = (0.63603299073152864, -1.345582251523372) +description = Murfreesboro town, NC +station = ('kasj', 0.0027315919474400225) +zone = ('ncz013', 0.0021427346634936306) + +[fips3745660] +centroid = (0.61248804533651957, -1.4665651242394551) +description = Murphy town, NC +station = ('krhp', 0.0029451938297711238) +zone = ('ncz060', 0.00087582153744497453) + +[fips3745720] +centroid = (0.59851464263908027, -1.3586126353726664) +description = Murraysville CDP, NC +station = ('kilm', 0.00093933151781803125) +zone = ('ncz107', 0.00082210441143927646) + +[fips3745840] +centroid = (0.59564683978525079, -1.3593819939602378) +description = Myrtle Grove CDP, NC +station = ('kilm', 0.0024267520935025125) +zone = ('ncz108', 0.00040352095461120702) + +[fips3745880] +centroid = (0.62740026063860688, -1.3199140432801419) +description = Nags Head town, NC +station = ('kmqi', 0.0011814594325434383) +zone = ('ncz103', 0.0032815835260005038) + +[fips3746000] +centroid = (0.62776911852272343, -1.3605614525621508) +description = Nashville town, NC +station = ('krwi', 0.0022070430154848076) +zone = ('ncz027', 0.00045361363720669058) + +[fips3746060] +centroid = (0.59833031841677708, -1.3619964448198478) +description = Navassa town, NC +station = ('kilm', 0.0019884382177933319) +zone = ('ncz107', 0.0019951540974501789) + +[fips3746280] +centroid = (0.61024674587098604, -1.3429363149240559) +description = Neuse Forest CDP, NC +station = ('knkt', 0.0014801224653181785) +zone = ('ncz093', 0.0035630787205057851) + +[fips3746340] +centroid = (0.61248115128597425, -1.3451572114906338) +description = New Bern city, NC +station = ('kewn', 0.00056144833214884823) +zone = ('ncz093', 0.00068725635748117533) + +[fips3746740] +centroid = (0.62985391431423066, -1.429902092200239) +description = Newland town, NC +station = ('ktnb', 0.0043708217568627101) +zone = ('ncz033', 0.00021040854435152757) + +[fips3746820] +centroid = (0.6184527604150879, -1.4000996352913473) +description = New London town, NC +station = ('kvuj', 0.0010302896764051348) +zone = ('ncz073', 0.0021867669860336889) + +[fips3746860] +centroid = (0.60686344256928759, -1.3417943983543537) +description = Newport town, NC +station = ('knkt', 0.0022178114592270545) +zone = ('ncz095', 0.0031773331154030244) + +[fips3747000] +centroid = (0.62238285791814363, -1.4178065241516054) +description = Newton city, NC +station = ('khky', 0.0026328429345707774) +zone = ('ncz056', 0.00028648599108983846) + +[fips3747020] +centroid = (0.61524901658683451, -1.3675296796007381) +description = Newton Grove town, NC +station = ('kctz', 0.0048129975111637019) +zone = ('ncz089', 0.0045390281495973793) + +[fips3747240] +centroid = (0.63608453030434009, -1.3647743283106146) +description = Norlina town, NC +station = ('kavc', 0.0046932180135457538) +zone = ('ncz010', 0.0015071618870439809) + +[fips3747260] +centroid = (0.61382901670741197, -1.3914320335199706) +description = Norman town, NC +station = ('khff', 0.0039786919688465424) +zone = ('ncz084', 0.0028826752740326723) + +[fips3747485] +centroid = (0.59878447054143857, -1.3592185787823738) +description = Northchase CDP, NC +station = ('kilm', 0.00078826338723264719) +zone = ('ncz107', 0.00054582752498800449) + +[fips3747695] +centroid = (0.62449683561474423, -1.420107915303285) +description = Northlakes CDP, NC +station = ('khky', 0.00059355193516496933) +zone = ('ncz502', 0.0026719658440715693) + +[fips3747845] +centroid = (0.60194192823792891, -1.3515373149311765) +description = North Topsail Beach town, NC +station = ('knca', 0.0036917746247246081) +zone = ('ncz106', 0.0035455001193943907) + +[fips3747860] +centroid = (0.59890704501480618, -1.3638926926922623) +description = Northwest city, NC +station = ('kilm', 0.0036356649582177094) +zone = ('ncz107', 0.0036079609234998824) + +[fips3747880] +centroid = (0.6313360304617317, -1.4161436966133525) +description = North Wilkesboro town, NC +station = ('kukf', 0.0010953492186554568) +zone = ('ncz019', 0.00068233286997470947) + +[fips3747980] +centroid = (0.61498435485906211, -1.3982225685874123) +description = Norwood town, NC +station = ('kvuj', 0.0032005921893026772) +zone = ('ncz073', 0.0023771301429122305) + +[fips3748040] +centroid = (0.61484961544080818, -1.4020937263216282) +description = Oakboro town, NC +station = ('kvuj', 0.0041972899734688696) +zone = ('ncz073', 0.0018829226250803657) + +[fips3748060] +centroid = (0.62764975545517954, -1.3492100929065676) +description = Oak City town, NC +station = ('ketc', 0.0033795306854029175) +zone = ('ncz029', 0.0034849521163663744) + +[fips3748345] +centroid = (0.59219503231041148, -1.3627572512940849) +description = Oak Island town, NC +station = ('ksut', 8.2203303469534982e-05) +zone = ('ncz110', 0.0016274456606661866) + +[fips3748480] +centroid = (0.63135666025349024, -1.3961278418724612) +description = Oak Ridge town, NC +station = ('kgso', 0.001423272826733678) +zone = ('ncz022', 0.0033073598159863069) + +[fips3748700] +centroid = (0.59170761421020712, -1.3689823694970507) +description = Ocean Isle Beach town, NC +station = ('kcre', 0.0043215618329390526) +zone = ('ncz109', 0.0044815735889822605) + +[fips3748740] +centroid = (0.61214336026254335, -1.3264245228158085) +description = Ocracoke CDP, NC +station = ('khse', 0.0061238536137084108) +zone = ('ncz104', 0.0015550526030939438) + +[fips3748790] +centroid = (0.59800327862153846, -1.3577162866287198) +description = Ogden CDP, NC +station = ('kilm', 0.0015675382099066329) +zone = ('ncz107', 0.0015755566898862307) + +[fips3748920] +centroid = (0.62186655461881879, -1.4342762363715873) +description = Old Fort town, NC +station = ('kfqd', 0.0049335191664216385) +zone = ('ncz505', 0.0017047260804928172) + +[fips3748940] +centroid = (0.60780202828113261, -1.3891450064280346) +description = Old Hundred CDP, NC +station = ('krcz', 0.0026620139378988376) +zone = ('ncz085', 0.0016255031373657953) + +[fips3749380] +centroid = (0.61140402133810601, -1.3383266909300287) +description = Oriental town, NC +station = ('knkt', 0.003688997183291882) +zone = ('ncz094', 0.0021503530884887712) + +[fips3749460] +centroid = (0.60155786853602755, -1.3789662287771112) +description = Orrum town, NC +station = ('klbt', 0.0024696734091384826) +zone = ('ncz087', 0.0033171701459537143) + +[fips3749600] +centroid = (0.63122062929158973, -1.3878315763527389) +description = Ossipee town, NC +station = ('kbuy', 0.0024260173097989217) +zone = ('ncz023', 0.0027008956734528959) + +[fips3749800] +centroid = (0.63383172911903585, -1.3715859993152981) +description = Oxford city, NC +station = ('khnz', 0.001130913525040131) +zone = ('ncz008', 0.00096363992777025967) + +[fips3750080] +centroid = (0.62111683098533199, -1.3379588802434634) +description = Pantego town, NC +station = ('kocw', 0.0055484377960245603) +zone = ('ncz080', 0.0033143944843262406) + +[fips3750340] +centroid = (0.60916952865665519, -1.3789804706638074) +description = Parkton town, NC +station = ('kfay', 0.0022902415441292995) +zone = ('ncz088', 0.0036430371551228811) + +[fips3750540] +centroid = (0.6251586121072229, -1.3493943647689928) +description = Parmele town, NC +station = ('kpgv', 0.0034582124499968753) +zone = ('ncz029', 0.0029627148829214126) + +[fips3750700] +centroid = (0.61493180299528449, -1.4227258393681064) +description = Patterson Springs town, NC +station = ('keho', 0.0012310373279082461) +zone = ('ncz068', 0.0018492486402325867) + +[fips3750820] +centroid = (0.61074519445206321, -1.4009053665405302) +description = Peachland town, NC +station = ('kafp', 0.0027442742054733615) +zone = ('ncz083', 0.0023588851009798814) + +[fips3751040] +centroid = (0.60611853604453647, -1.3451534066728645) +description = Peletier town, NC +station = ('knjm', 0.00073553122045768476) +zone = ('ncz095', 0.0060304899986492163) + +[fips3751080] +centroid = (0.60524051325773565, -1.3822063627202688) +description = Pembroke town, NC +station = ('klbt', 0.002283582888310343) +zone = ('ncz087', 0.0014633582969728999) + +[fips3751780] +centroid = (0.61954966494338115, -1.3611314596425594) +description = Pikeville town, NC +station = ('kgww', 0.00071843377376689809) +zone = ('ncz078', 0.0023472731521413568) + +[fips3751820] +centroid = (0.6350195303947731, -1.4045401194275637) +description = Pilot Mountain town, NC +station = ('kmwk', 0.0017248915415743746) +zone = ('ncz004', 0.003312374786301908) + +[fips3751840] +centroid = (0.61276665224501548, -1.3870401568034221) +description = Pinebluff town, NC +station = ('khff', 0.0013808089735497791) +zone = ('ncz075', 0.0035240694166287939) + +[fips3751940] +centroid = (0.61414802798809154, -1.386834050872054) +description = Pinehurst village, NC +station = ('ksop', 0.0011615550557008364) +zone = ('ncz075', 0.0021619038492442567) + +[fips3752000] +centroid = (0.6055822661785687, -1.340962399899928) +description = Pine Knoll Shores town, NC +station = ('kmrh', 0.0026785254623581086) +zone = ('ncz095', 0.0033012801047335111) + +[fips3752020] +centroid = (0.61965621729421549, -1.3657054963731388) +description = Pine Level town, NC +station = ('kjnx', 0.002106811980105408) +zone = ('ncz042', 0.0016733974074303035) + +[fips3752140] +centroid = (0.62467526062417555, -1.3550354783509491) +description = Pinetops town, NC +station = ('ketc', 0.002788928403200107) +zone = ('ncz028', 0.0021998254181912823) + +[fips3752160] +centroid = (0.62152972352647629, -1.3413867592542579) +description = Pinetown CDP, NC +station = ('kocw', 0.0028415299592946053) +zone = ('ncz080', 0.0020329858638882042) + +[fips3752220] +centroid = (0.61247835875917112, -1.4118350721021242) +description = Pineville town, NC +station = ('kclt', 0.0023200373703260156) +zone = ('ncz071', 0.0028244508622403508) + +[fips3752260] +centroid = (0.60677317414037457, -1.3491575759493748) +description = Piney Green CDP, NC +station = ('knca', 0.0024236165771839525) +zone = ('ncz098', 0.0019717664591753425) + +[fips3752400] +centroid = (0.61184644485019402, -1.356883450416253) +description = Pink Hill town, NC +station = ('kdpl', 0.0035397963773135749) +zone = ('ncz090', 0.0034226972912004524) + +[fips3752500] +centroid = (0.63395198230449823, -1.4036490590312507) +description = Pinnacle CDP, NC +station = ('kmwk', 0.0030072131947557566) +zone = ('ncz004', 0.0029267920061098909) + +[fips3752660] +centroid = (0.6236066304297645, -1.3817878676722255) +description = Pittsboro town, NC +station = ('ktta', 0.0027556413131211341) +zone = ('ncz040', 0.0012907332529367922) + +[fips3752685] +centroid = (0.61512368449324883, -1.3711345873575622) +description = Plain View CDP, NC +station = ('khrj', 0.0034085865648086698) +zone = ('ncz088', 0.005115567446406062) + +[fips3752760] +centroid = (0.62758432306152212, -1.3920801789909911) +description = Pleasant Garden town, NC +station = ('kgso', 0.0036491230974578311) +zone = ('ncz022', 0.0021583150541767413) + +[fips3752920] +centroid = (0.63269822503632811, -1.411882929030214) +description = Pleasant Hill CDP, NC +station = ('kukf', 0.0027189157932830696) +zone = ('ncz019', 0.0038640015411465847) + +[fips3753040] +centroid = (0.62584953559820988, -1.3395088198856973) +description = Plymouth town, NC +station = ('kede', 0.0039069985930811858) +zone = ('ncz045', 0.0025098236415356549) + +[fips3753140] +centroid = (0.61093278244006755, -1.3996888371453053) +description = Polkton town, NC +station = ('kafp', 0.0017303132739683016) +zone = ('ncz083', 0.0014371016730410559) + +[fips3753160] +centroid = (0.61813137548662567, -1.4249569635641008) +description = Polkville city, NC +station = ('keho', 0.0029697101107687943) +zone = ('ncz068', 0.0019117339642005567) + +[fips3753200] +centroid = (0.6109530108060981, -1.3477535632859006) +description = Pollocksville town, NC +station = ('kewn', 0.0027068422546578097) +zone = ('ncz092', 0.0019516070242931115) + +[fips3753475] +centroid = (0.59852932085808952, -1.357353327957475) +description = Porters Neck CDP, NC +station = ('kilm', 0.0019225320400969171) +zone = ('ncz107', 0.0018521407694396198) + +[fips3753580] +centroid = (0.61024646661830584, -1.3561758590309094) +description = Potters Hill CDP, NC +station = ('koaj', 0.0026033204359579504) +zone = ('ncz090', 0.0033285677849261733) + +[fips3753680] +centroid = (0.63224990231136835, -1.3427092475883715) +description = Powellsville town, NC +station = ('kasj', 0.0035954980395022373) +zone = ('ncz013', 0.0024472491867048797) + +[fips3753820] +centroid = (0.61900760058429694, -1.3641570926206468) +description = Princeton town, NC +station = ('kgww', 0.0027802740806116551) +zone = ('ncz078', 0.0028576379063828057) + +[fips3753840] +centroid = (0.62638449646723859, -1.3531349544218672) +description = Princeville town, NC +station = ('ketc', 0.00072931502946212406) +zone = ('ncz028', 0.0010489707401705739) + +[fips3753900] +centroid = (0.60170538376440608, -1.3794565615771663) +description = Proctorville town, NC +station = ('klbt', 0.0022197905752908364) +zone = ('ncz087', 0.0030327967518400793) + +[fips3753950] +centroid = (0.60625427030046397, -1.3827398051528481) +description = Prospect CDP, NC +station = ('kmeb', 0.0021920778208820144) +zone = ('ncz087', 0.0024163254710796661) + +[fips3754160] +centroid = (0.60713248507348261, -1.3502721606629911) +description = Pumpkin Center CDP, NC +station = ('knca', 0.001936339612384303) +zone = ('ncz098', 0.0013079660934111775) + +[fips3754580] +centroid = (0.61052352018376732, -1.3828163552938406) +description = Raeford city, NC +station = ('kmeb', 0.0039606754639656908) +zone = ('ncz086', 0.00065439093775890799) + +[fips3754600] +centroid = (0.60415545951506333, -1.3848219480438924) +description = Raemon CDP, NC +station = ('kmeb', 0.002945529330506113) +zone = ('ncz087', 0.0034868847712571007) + +[fips3755000] +centroid = (0.62535503146124238, -1.3725520390562771) +description = Raleigh city, NC +station = ('krdu', 0.0021497006035514073) +zone = ('ncz041', 0.00071134539656538605) + +[fips3755040] +centroid = (0.62372941434264229, -1.3902380014188036) +description = Ramseur town, NC +station = ('k5w8', 0.0022104265713951466) +zone = ('ncz039', 0.0021931457703362853) + +[fips3755080] +centroid = (0.62510579844405756, -1.3929063654990075) +description = Randleman city, NC +station = ('khbi', 0.0030869203723919623) +zone = ('ncz039', 0.0018436357456887618) + +[fips3755260] +centroid = (0.61592578545758792, -1.4159712057233782) +description = Ranlo town, NC +station = ('kakh', 0.0015977084961439558) +zone = ('ncz070', 0.00072981152170409813) + +[fips3755340] +centroid = (0.60346659551259374, -1.3821411746727066) +description = Raynham town, NC +station = ('klbt', 0.0018325660744670756) +zone = ('ncz087', 0.0016801327677971468) + +[fips3755460] +centroid = (0.61550697625027928, -1.4025846525336294) +description = Red Cross town, NC +station = ('kvuj', 0.0039966458414312069) +zone = ('ncz073', 0.0017799560304969007) + +[fips3755640] +centroid = (0.62935852005934456, -1.3597107441781437) +description = Red Oak town, NC +station = ('krwi', 0.0036588655038969817) +zone = ('ncz027', 0.0019752569451976154) + +[fips3755660] +centroid = (0.60748188253643931, -1.3819711097903924) +description = Red Springs town, NC +station = ('kmeb', 0.0026891379224432597) +zone = ('ncz087', 0.0031045844465625297) + +[fips3755900] +centroid = (0.63421648695263799, -1.3906278556138216) +description = Reidsville city, NC +station = ('ksif', 0.0030123907638968414) +zone = ('ncz005', 0.0017109890098378382) + +[fips3755940] +centroid = (0.60762054894551021, -1.3801909437665281) +description = Rennert town, NC +station = ('klbt', 0.0037408946294827787) +zone = ('ncz087', 0.0030568279023375344) + +[fips3756100] +centroid = (0.60826110223428465, -1.3796278307366647) +description = Rex CDP, NC +station = ('kfay', 0.003290522286548928) +zone = ('ncz087', 0.0037659740346652408) + +[fips3756240] +centroid = (0.62423927737702734, -1.4212559928852471) +description = Rhodhiss town, NC +station = ('khky', 0.00074512442452523268) +zone = ('ncz502', 0.0024639132660209243) + +[fips3756340] +centroid = (0.61909287737154928, -1.4007386701436726) +description = Richfield town, NC +station = ('kvuj', 0.0017794870627995531) +zone = ('ncz073', 0.0027833994859596404) + +[fips3756360] +centroid = (0.60912219532734113, -1.3533784453058129) +description = Richlands town, NC +station = ('koaj', 0.0015734903575801832) +zone = ('ncz098', 0.0032390290237885042) + +[fips3756440] +centroid = (0.63309972057745689, -1.3488586185018008) +description = Rich Square town, NC +station = ('kasj', 0.0016430599123474544) +zone = ('ncz012', 0.0029680940832014168) + +[fips3756600] +centroid = (0.59941762363418449, -1.3651889138211333) +description = Riegelwood CDP, NC +station = ('kilm', 0.0048013326298733377) +zone = ('ncz109', 0.0041671626053130526) + +[fips3756710] +centroid = (0.61206792713227209, -1.3465202438232713) +description = River Bend town, NC +station = ('kewn', 0.0014673410320245558) +zone = ('ncz093', 0.0012542768078299198) + +[fips3756815] +centroid = (0.61978385322241381, -1.3437300732145705) +description = River Road CDP, NC +station = ('kocw', 0.0013410288421619823) +zone = ('ncz080', 0.0018262304890524503) + +[fips3756900] +centroid = (0.63610355439318689, -1.3552234852179736) +description = Roanoke Rapids city, NC +station = ('kixa', 0.002029026476075431) +zone = ('ncz011', 0.0032911305529673505) + +[fips3757000] +centroid = (0.61837942167991911, -1.3889994808750035) +description = Robbins town, NC +station = ('ksop', 0.0043238002039035781) +zone = ('ncz075', 0.002549993664819459) + +[fips3757020] +centroid = (0.61650725935118234, -1.4626810510687744) +description = Robbinsville town, NC +station = ('krhp', 0.002387149135676852) +zone = ('ncz058', 0.00061684704067342048) + +[fips3757100] +centroid = (0.62526034734932168, -1.3483183169252608) +description = Robersonville town, NC +station = ('kpgv', 0.0039377040639854387) +zone = ('ncz029', 0.0020845140599284216) + +[fips3757200] +centroid = (0.61070042675674951, -1.3800328867494676) +description = Rockfish CDP, NC +station = ('kfay', 0.0026730129382596499) +zone = ('ncz086', 0.0024335602370924941) + +[fips3757260] +centroid = (0.609792942812175, -1.3920801440844062) +description = Rockingham city, NC +station = ('krcz', 0.0008475789336174521) +zone = ('ncz084', 0.0011883979071105658) + +[fips3757340] +centroid = (0.62053071451592723, -1.4033671883570533) +description = Rockwell town, NC +station = ('kruq', 0.0022892854135074634) +zone = ('ncz057', 0.0022432848460616412) + +[fips3757500] +centroid = (0.62776889162992056, -1.358010723673531) +description = Rocky Mount city, NC +station = ('krwi', 0.0024411245744821761) +zone = ('ncz027', 0.0025175543974926438) + +[fips3757540] +centroid = (0.6011626910867911, -1.3594508297459367) +description = Rocky Point CDP, NC +station = ('kilm', 0.0030993732098879021) +zone = ('ncz105', 0.0016074084263231663) + +[fips3757580] +centroid = (0.62116995880776271, -1.3171413085106685) +description = Rodanthe CDP, NC +station = ('kmqi', 0.0065839445632855714) +zone = ('ncz103', 0.0036734651201386758) + +[fips3757640] +centroid = (0.62700541480192828, -1.3694654417274175) +description = Rolesville town, NC +station = ('klhz', 0.0025609909419492876) +zone = ('ncz041', 0.003525959750286405) + +[fips3757700] +centroid = (0.63218823982889549, -1.4127259928720974) +description = Ronda town, NC +station = ('kukf', 0.0019746178762216622) +zone = ('ncz019', 0.0031172099852107937) + +[fips3757740] +centroid = (0.62620039913773828, -1.3372199252914616) +description = Roper town, NC +station = ('kede', 0.0026964937740936675) +zone = ('ncz045', 0.0011407786879416087) + +[fips3757800] +centroid = (0.61006207258283263, -1.3702875092583993) +description = Roseboro town, NC +station = ('kctz', 0.0021355578779072501) +zone = ('ncz089', 0.0021132635973892511) + +[fips3757860] +centroid = (0.60783215266402202, -1.3618088917384286) +description = Rose Hill town, NC +station = ('kdpl', 0.0030984546839039921) +zone = ('ncz090', 0.0023372433228100219) + +[fips3758020] +centroid = (0.61340839235768141, -1.4454710225399741) +description = Rosman town, NC +station = ('klqk', 0.0061029662641708046) +zone = ('ncz064', 0.0010307869078938995) + +[fips3758040] +centroid = (0.63203594239836636, -1.3772687389999141) +description = Rougemont CDP, NC +station = ('ktdf', 0.0016187242466182215) +zone = ('ncz025', 0.00313061331833406) + +[fips3758140] +centroid = (0.60276809729265302, -1.3839213232432783) +description = Rowland town, NC +station = ('klbt', 0.0034368875171680246) +zone = ('scz024', 0.0028106433877885494) + +[fips3758160] +centroid = (0.63510609872567214, -1.3784726671179397) +description = Roxboro city, NC +station = ('ktdf', 0.0018140474270643557) +zone = ('ncz007', 0.00012770386088545901) + +[fips3758180] +centroid = (0.63183585785291785, -1.3480888933950863) +description = Roxobel town, NC +station = ('kasj', 0.0019360067645164097) +zone = ('ncz012', 0.0043708272900821639) + +[fips3758260] +centroid = (0.61921937883573386, -1.4399352919382538) +description = Royal Pines CDP, NC +station = ('kavl', 0.00090635287369554064) +zone = ('ncz053', 0.0023472006164678531) + +[fips3758340] +centroid = (0.63596668567324544, -1.3881267638891286) +description = Ruffin CDP, NC +station = ('kdan', 0.0035968057914210331) +zone = ('ncz005', 0.003467741565534145) + +[fips3758360] +centroid = (0.63223686470185603, -1.401445423770975) +description = Rural Hall town, NC +station = ('kint', 0.0018259702158013071) +zone = ('ncz021', 0.0017392090776783766) + +[fips3758420] +centroid = (0.61753883620557348, -1.4302073851929977) +description = Ruth town, NC +station = ('kfqd', 0.00081436716865236625) +zone = ('ncz508', 0.00082284149453659369) + +[fips3758440] +centroid = (0.62396829755736272, -1.4229132702764782) +description = Rutherford College town, NC +station = ('khky', 0.0020339563508531156) +zone = ('ncz504', 0.0020570662862265648) + +[fips3758460] +centroid = (0.61722209385292159, -1.4304969353159038) +description = Rutherfordton town, NC +station = ('kfqd', 0.0011804951421162228) +zone = ('ncz508', 0.0011614741149885415) + +[fips3758620] +centroid = (0.60242871801960274, -1.3599150698736746) +description = St. Helena village, NC +station = ('kilm', 0.0043697478270605852) +zone = ('ncz105', 0.00028655827439480724) + +[fips3758630] +centroid = (0.59246796689883841, -1.3633306617665351) +description = St. James town, NC +station = ('ksut', 0.00062780652211847743) +zone = ('ncz110', 0.0020579486176864567) + +[fips3758720] +centroid = (0.60749767776616992, -1.3783485218482454) +description = St. Pauls town, NC +station = ('kfay', 0.0033367515072212019) +zone = ('ncz087', 0.003459123139803298) + +[fips3758730] +centroid = (0.62421020019168916, -1.418479348578249) +description = St. Stephens CDP, NC +station = ('khky', 0.0015850332433675204) +zone = ('ncz056', 0.0019638351468870899) + +[fips3758740] +centroid = (0.62307783057299526, -1.4259390777874907) +description = Salem CDP, NC +station = ('khky', 0.0045759068054847737) +zone = ('ncz504', 0.0005625880934926194) + +[fips3758840] +centroid = (0.61112979520603261, -1.370132314581312) +description = Salemburg town, NC +station = ('kctz', 0.0020916837991451741) +zone = ('ncz089', 0.0019261592232979329) + +[fips3758860] +centroid = (0.62248530874523578, -1.4048338583406743) +description = Salisbury city, NC +station = ('kruq', 0.00045586938792480856) +zone = ('ncz057', 0.00066070102670984579) + +[fips3758920] +centroid = (0.61501100603674008, -1.4372249701428315) +description = Saluda city, NC +station = ('kavl', 0.0043269264970686831) +zone = ('ncz509', 0.0011376792787768241) + +[fips3758940] +centroid = (0.62043899746373499, -1.3171680120482241) +description = Salvo CDP, NC +station = ('khse', 0.0058931141523681516) +zone = ('ncz103', 0.0042717953321403943) + +[fips3759090] +centroid = (0.598322796047701, -1.3640292821595232) +description = Sandy Creek town, NC +station = ('kilm', 0.0036596700155540531) +zone = ('ncz109', 0.0033508725940341951) + +[fips3759135] +centroid = (0.599831092133982, -1.3666506794295561) +description = Sandyfield town, NC +station = ('keyf', 0.0057143600091211222) +zone = ('ncz109', 0.0046250153078676772) + +[fips3759280] +centroid = (0.61930325935958475, -1.381910843571321) +description = Sanford city, NC +station = ('ktta', 0.0020399202709051054) +zone = ('ncz076', 0.00017097701334333509) + +[fips3759340] +centroid = (0.62227414135903703, -1.3574356725915839) +description = Saratoga town, NC +station = ('krwi', 0.0038546342745304643) +zone = ('ncz043', 0.002217112352097698) + +[fips3759540] +centroid = (0.62514777361256801, -1.4220362423273509) +description = Sawmills town, NC +station = ('khky', 0.0017801109707622097) +zone = ('ncz502', 0.0014493136513821913) + +[fips3759580] +centroid = (0.62758652217637967, -1.3843767494582937) +description = Saxapahaw CDP, NC +station = ('kbuy', 0.0024651969833862503) +zone = ('ncz023', 0.0018824424714436923) + +[fips3759765] +centroid = (0.60543635665310203, -1.3878459578657751) +description = Scotch Meadows CDP, NC +station = ('kmeb', 0.0027216420456468928) +zone = ('ncz085', 0.0027086322895171558) + +[fips3759780] +centroid = (0.63060140392627473, -1.3512580622508576) +description = Scotland Neck town, NC +station = ('ketc', 0.0038839708157303683) +zone = ('ncz011', 0.0039283745950670825) + +[fips3759980] +centroid = (0.63688268682456961, -1.3516172859175029) +description = Seaboard town, NC +station = ('kemv', 0.0034727062137161892) +zone = ('ncz012', 0.0014236097146229775) + +[fips3760000] +centroid = (0.5946293302846305, -1.3594736935591378) +description = Sea Breeze CDP, NC +station = ('kilm', 0.0034387172199545606) +zone = ('ncz108', 0.0012590858179533507) + +[fips3760080] +centroid = (0.62029453656154732, -1.3924139383038501) +description = Seagrove town, NC +station = ('khbi', 0.0025734538867561306) +zone = ('ncz039', 0.0029915962280741767) + +[fips3760180] +centroid = (0.62966562819452543, -1.3896383935542809) +description = Sedalia town, NC +station = ('kbuy', 0.0023004426780287874) +zone = ('ncz022', 0.0023783709529542015) + +[fips3760320] +centroid = (0.6203510154161419, -1.3664923955196928) +description = Selma town, NC +station = ('kjnx', 0.0013645752651997984) +zone = ('ncz042', 0.0011109731980411836) + +[fips3760505] +centroid = (0.63092844372151347, -1.4279406562802626) +description = Seven Devils town, NC +station = ('ktnb', 0.0024855252369615161) +zone = ('ncz033', 0.001978584855876504) + +[fips3760515] +centroid = (0.61548669552437107, -1.389047878855161) +description = Seven Lakes CDP, NC +station = ('ksop', 0.0027154657000346498) +zone = ('ncz075', 0.0017004970196536431) + +[fips3760540] +centroid = (0.61478772606553245, -1.3586538251430134) +description = Seven Springs town, NC +station = ('kgsb', 0.0025672333449097409) +zone = ('ncz091', 0.002912676453628347) + +[fips3760560] +centroid = (0.63729306609159109, -1.3472072228701488) +description = Severn town, NC +station = ('kasj', 0.0037910543722053536) +zone = ('ncz012', 0.003363371746104894) + +[fips3760800] +centroid = (0.59291724955488678, -1.3680531387499963) +description = Shallotte town, NC +station = ('ksut', 0.0045339779422811912) +zone = ('ncz109', 0.0030544031063905372) + +[fips3760940] +centroid = (0.60820654324186729, -1.3812463618185018) +description = Shannon CDP, NC +station = ('kmeb', 0.0034421293804919326) +zone = ('ncz086', 0.0032745254803305231) + +[fips3761060] +centroid = (0.62598451936255906, -1.35839940849795) +description = Sharpsburg town, NC +station = ('krwi', 0.0010225771981886137) +zone = ('ncz027', 0.0028216929176490403) + +[fips3761200] +centroid = (0.61589009347438461, -1.4231611419368464) +description = Shelby city, NC +station = ('keho', 0.0010683730038533947) +zone = ('ncz068', 0.00082982828044947572) + +[fips3761860] +centroid = (0.62350915379104066, -1.3867756347019897) +description = Siler City town, NC +station = ('k5w8', 0.00075984040684657988) +zone = ('ncz040', 0.0028746089466291009) + +[fips3761920] +centroid = (0.61081715437712292, -1.3828093565235402) +description = Silver City CDP, NC +station = ('khff', 0.0039226321662557771) +zone = ('ncz086', 0.00036971853182708199) + +[fips3761950] +centroid = (0.5958803822924601, -1.3597849032180609) +description = Silver Lake CDP, NC +station = ('kilm', 0.0021904750645906587) +zone = ('ncz108', 0.00070788594497591035) + +[fips3762040] +centroid = (0.62090395317646618, -1.3487707586272555) +description = Simpson village, NC +station = ('kpgv', 0.0019962002005637107) +zone = ('ncz044', 0.001398662655634776) + +[fips3762060] +centroid = (0.62412558662955253, -1.3623869971465667) +description = Sims town, NC +station = ('krwi', 0.0027472464671665512) +zone = ('ncz043', 0.0022099753273974246) + +[fips3762190] +centroid = (0.59911426795689537, -1.3598664275474215) +description = Skippers Corner CDP, NC +station = ('kilm', 0.001069062573874232) +zone = ('ncz107', 0.0008201496908894361) + +[fips3762520] +centroid = (0.61998285566372624, -1.3675096432209251) +description = Smithfield town, NC +station = ('kjnx', 0.00062524574030809702) +zone = ('ncz042', 0.00020498077887578232) + +[fips3762680] +centroid = (0.60310761619204345, -1.3505180775545969) +description = Sneads Ferry CDP, NC +station = ('knca', 0.0027200712284275756) +zone = ('ncz098', 0.0032718865287315914) + +[fips3762760] +centroid = (0.61872822573093011, -1.3557153364544783) +description = Snow Hill town, NC +station = ('kiso', 0.0022167895597423608) +zone = ('ncz079', 0.00060557724444412167) + +[fips3763120] +centroid = (0.61421351274162628, -1.3857243530803436) +description = Southern Pines town, NC +station = ('ksop', 0.00072623087090096909) +zone = ('ncz075', 0.0024033425434875359) + +[fips3763130] +centroid = (0.6304119484359707, -1.3217301107267194) +description = Southern Shores town, NC +station = ('kffa', 0.0020090572600929561) +zone = ('ncz102', 0.0051480691539690397) + +[fips3763240] +centroid = (0.63361520357203349, -1.3684324337030398) +description = South Henderson CDP, NC +station = ('khnz', 0.0020148324608147421) +zone = ('ncz009', 0.001071063033075725) + +[fips3763340] +centroid = (0.63596061192744857, -1.3322226811238589) +description = South Mills CDP, NC +station = ('kcpk', 0.0039766175687996905) +zone = ('ncz016', 0.001887569992470754) + +[fips3763360] +centroid = (0.62225009072194448, -1.4010559710016848) +description = Southmont CDP, NC +station = ('kexx', 0.0022861143919143067) +zone = ('ncz038', 0.0026108058505320501) + +[fips3763400] +centroid = (0.59209570562268055, -1.3618217373617234) +description = Southport city, NC +station = ('ksut', 0.00070092625483814011) +zone = ('ncz110', 0.00094265925553033072) + +[fips3763470] +centroid = (0.63613373113595384, -1.3561977803663146) +description = South Rosemary CDP, NC +station = ('kixa', 0.0022459924673919334) +zone = ('ncz011', 0.0034020111379696075) + +[fips3763560] +centroid = (0.63553639219945879, -1.3544178237819606) +description = South Weldon CDP, NC +station = ('kixa', 0.0015509349856852029) +zone = ('ncz011', 0.0028110621979694906) + +[fips3763680] +centroid = (0.63709758921536763, -1.4158563456053042) +description = Sparta town, NC +station = ('kgev', 0.0043029163846895237) +zone = ('ncz002', 0.00021773824688825328) + +[fips3763720] +centroid = (0.62776814113834223, -1.3516574808501765) +description = Speed town, NC +station = ('ketc', 0.0015100345554757639) +zone = ('ncz028', 0.0023673520176675715) + +[fips3763760] +centroid = (0.62306116267863865, -1.4036790263345074) +description = Spencer town, NC +station = ('kruq', 0.0015550151673170323) +zone = ('ncz057', 0.0017520624712951116) + +[fips3763780] +centroid = (0.61625057377809145, -1.415695408794978) +description = Spencer Mountain town, NC +station = ('kakh', 0.0019652788444723982) +zone = ('ncz070', 0.00098162857930998867) + +[fips3763880] +centroid = (0.61714751593398398, -1.4298305162476146) +description = Spindale town, NC +station = ('kfqd', 0.0012051922477296479) +zone = ('ncz508', 0.00078319570690605809) + +[fips3763920] +centroid = (0.6143248647479036, -1.369779112300586) +description = Spivey's Corner CDP, NC +station = ('kctz', 0.0042350156261572371) +zone = ('ncz089', 0.0039429063925496052) + +[fips3764160] +centroid = (0.62734334545169923, -1.3632586320283051) +description = Spring Hope town, NC +station = ('klhz', 0.0034176430042378737) +zone = ('ncz027', 0.0017764425201035449) + +[fips3764180] +centroid = (0.61408660985171382, -1.3787174669988245) +description = Spring Lake town, NC +station = ('kpob', 0.00063367233311240122) +zone = ('ncz088', 0.0033691389592656763) + +[fips3764260] +centroid = (0.62681379510335167, -1.4323890816645759) +description = Spruce Pine town, NC +station = ('ktnb', 0.0077490260925132427) +zone = ('ncz050', 0.00218247451835132) + +[fips3764380] +centroid = (0.62479188352479387, -1.3884404344622971) +description = Staley town, NC +station = ('k5w8', 0.0017660506559567049) +zone = ('ncz039', 0.0039121946999404033) + +[fips3764420] +centroid = (0.61278986512406708, -1.4077849483064089) +description = Stallings town, NC +station = ('keqy', 0.001747780272751585) +zone = ('ncz082', 0.0028186576914190783) + +[fips3764460] +centroid = (0.6149431999953, -1.4037740769655709) +description = Stanfield town, NC +station = ('keqy', 0.0046278793310125261) +zone = ('ncz073', 0.0029019488487743729) + +[fips3764500] +centroid = (0.61706902847752176, -1.415365070327453) +description = Stanley town, NC +station = ('kipj', 0.0024221211606450903) +zone = ('ncz070', 0.0016184474808309543) + +[fips3764560] +centroid = (0.62143350352481386, -1.3582151017289394) +description = Stantonsburg town, NC +station = ('kgww', 0.0032623520529283584) +zone = ('ncz043', 0.0022258013093992583) + +[fips3764580] +centroid = (0.61783514075268464, -1.3924831406086915) +description = Star town, NC +station = ('khbi', 0.004716918995393525) +zone = ('ncz074', 0.0020928253988000594) + +[fips3764740] +centroid = (0.6245367512947374, -1.4114592329009998) +description = Statesville city, NC +station = ('ksvh', 0.0012579736550648922) +zone = ('ncz036', 0.00041886180727176254) + +[fips3764840] +centroid = (0.61110171285836801, -1.3735763553409801) +description = Stedman town, NC +station = ('kfay', 0.002671879019057132) +zone = ('ncz088', 0.0019171149508838226) + +[fips3764940] +centroid = (0.63177847142711219, -1.3738890834363522) +description = Stem town, NC +station = ('khnz', 0.0038984591733527926) +zone = ('ncz008', 0.0020604296015652637) + +[fips3765020] +centroid = (0.62326597706636022, -1.348573431702025) +description = Stokes CDP, NC +station = ('kpgv', 0.0023108867627020043) +zone = ('ncz044', 0.0025462614500107862) + +[fips3765040] +centroid = (0.6322970611077573, -1.3958688350114654) +description = Stokesdale town, NC +station = ('kgso', 0.002266312092443077) +zone = ('ncz022', 0.003710912444307123) + +[fips3765100] +centroid = (0.63645546513026641, -1.3946251482930794) +description = Stoneville town, NC +station = ('ksif', 0.00091121490485902542) +zone = ('ncz005', 0.0022097916217681461) + +[fips3765120] +centroid = (0.61328810426563396, -1.3393781645378928) +description = Stonewall town, NC +station = ('knkt', 0.0046593839223774041) +zone = ('ncz094', 0.00011858121445563785) + +[fips3765260] +centroid = (0.62598387359073593, -1.4145045880996348) +description = Stony Point CDP, NC +station = ('ksvh', 0.0021616452786119116) +zone = ('ncz035', 0.0020983941233939573) + +[fips3765320] +centroid = (0.63612968197208919, -1.3712858550438327) +description = Stovall town, NC +station = ('khnz', 0.0015993843374559808) +zone = ('ncz009', 0.0026785120681764659) + +[fips3765530] +centroid = (0.63053096243766416, -1.4287976653028693) +description = Sugar Mountain village, NC +station = ('ktnb', 0.00327612757973492) +zone = ('ncz033', 0.0012012399899077912) + +[fips3765580] +centroid = (0.63175532836123072, -1.3944693776573387) +description = Summerfield town, NC +station = ('kgso', 0.0018478597127055375) +zone = ('ncz022', 0.0025559727519870764) + +[fips3765700] +centroid = (0.63611830242536616, -1.3371444223480202) +description = Sunbury CDP, NC +station = ('ksfq', 0.0041100352360409157) +zone = ('ncz014', 0.0012498502963837011) + +[fips3765900] +centroid = (0.59154826564950003, -1.3702651341373888) +description = Sunset Beach town, NC +station = ('kcre', 0.0032745005424262854) +zone = ('ncz109', 0.0053060936860307656) + +[fips3766040] +centroid = (0.60099770511260009, -1.3537784747703701) +description = Surf City town, NC +station = ('knca', 0.0049214550674109162) +zone = ('ncz106', 0.0014878711858641743) + +[fips3766280] +centroid = (0.62135372452470516, -1.4379493166889941) +description = Swannanoa CDP, NC +station = ('kavl', 0.0035770767335293776) +zone = ('ncz053', 0.002019732850021968) + +[fips3766340] +centroid = (0.61807404142069766, -1.332030241120534) +description = Swan Quarter CDP, NC +station = ('knbt', 0.0072283149269227898) +zone = ('ncz081', 0.0023691231985452253) + +[fips3766360] +centroid = (0.60550985246790345, -1.3462358075150738) +description = Swansboro town, NC +station = ('knjm', 0.0014441724961267142) +zone = ('ncz098', 0.0043807040333055233) + +[fips3766460] +centroid = (0.62886549945224124, -1.3849791847562045) +description = Swepsonville town, NC +station = ('kbuy', 0.0015981743743912382) +zone = ('ncz023', 0.00068629497835127245) + +[fips3766500] +centroid = (0.61741676787768907, -1.452434973521894) +description = Sylva town, NC +station = ('k1a5', 0.0039560055062967453) +zone = ('ncz059', 0.00061203799762339541) + +[fips3766520] +centroid = (0.59607318881492799, -1.3765783740142876) +description = Tabor City town, NC +station = ('kcpc', 0.0030905912415273781) +zone = ('ncz099', 0.0037031333813139847) + +[fips3766700] +centroid = (0.62666429019962588, -1.3536286906139638) +description = Tarboro town, NC +station = ('ketc', 0.000496232561562614) +zone = ('ncz028', 0.00057959858700331148) + +[fips3766740] +centroid = (0.60620243402167984, -1.3751488271838566) +description = Tar Heel town, NC +station = ('keyf', 0.0037677333796410418) +zone = ('ncz096', 0.0038599432556228504) + +[fips3766960] +centroid = (0.62686605026115638, -1.4167876183875834) +description = Taylorsville town, NC +station = ('ksvh', 0.0040764472239069776) +zone = ('ncz035', 7.7454425556133851e-05) + +[fips3766980] +centroid = (0.61461397853849642, -1.3873846149845956) +description = Taylortown town, NC +station = ('ksop', 0.0013411298623701988) +zone = ('ncz075', 0.0016800320734128718) + +[fips3767000] +centroid = (0.6068456925707949, -1.3614877162494765) +description = Teachey town, NC +station = ('kdpl', 0.0040365257037787141) +zone = ('ncz090', 0.0030991674638797444) + +[fips3767420] +centroid = (0.6262509962327536, -1.3976585654396303) +description = Thomasville city, NC +station = ('kexx', 0.0036214016287769587) +zone = ('ncz038', 0.002430190637477108) + +[fips3767700] +centroid = (0.63698278145717158, -1.4073532236626356) +description = Toast CDP, NC +station = ('kmwk', 0.0013212853775520547) +zone = ('ncz003', 0.001605908491207288) + +[fips3767720] +centroid = (0.63225559208472992, -1.4025268472288031) +description = Tobaccoville village, NC +station = ('kint', 0.0023915742229179107) +zone = ('ncz021', 0.002201692176971384) + +[fips3768040] +centroid = (0.59980658771128392, -1.3552062064583787) +description = Topsail Beach town, NC +station = ('kilm', 0.0040333127977899494) +zone = ('ncz106', 0.00026251893441778186) + +[fips3768320] +centroid = (0.61197893279371285, -1.3501197759659995) +description = Trenton town, NC +station = ('kewn', 0.0044138453014013852) +zone = ('ncz092', 0.00072629366665876154) + +[fips3768340] +centroid = (0.61229654781099085, -1.3455085113624752) +description = Trent Woods town, NC +station = ('kewn', 0.00068735240514079398) +zone = ('ncz093', 0.0007745158568432972) + +[fips3768400] +centroid = (0.62616818035974642, -1.3964457361424194) +description = Trinity city, NC +station = ('kgso', 0.0039881091701584803) +zone = ('ncz038', 0.0032122296675903524) + +[fips3768500] +centroid = (0.62283118064310339, -1.4117117645904709) +description = Troutman town, NC +station = ('ksvh', 0.0017208957549382238) +zone = ('ncz036', 0.0021286260039058247) + +[fips3768520] +centroid = (0.61722931951602489, -1.3943758454627244) +description = Troy town, NC +station = ('kvuj', 0.003795132784726314) +zone = ('ncz074', 0.00059475140008218583) + +[fips3768580] +centroid = (0.614511213552139, -1.4353234339227838) +description = Tryon town, NC +station = ('kgsp', 0.0056903442211233973) +zone = ('ncz509', 0.0015515178851574392) + +[fips3768740] +centroid = (0.61077858260065387, -1.3645708752797097) +description = Turkey town, NC +station = ('kctz', 0.0026043444035533814) +zone = ('ncz089', 0.002675137780019223) + +[fips3769020] +centroid = (0.62482286311901669, -1.4028336062981337) +description = Tyro CDP, NC +station = ('kexx', 0.0010772952350804645) +zone = ('ncz038', 0.0023208193104433642) + +[fips3769260] +centroid = (0.612159295118614, -1.4053398118375349) +description = Unionville town, NC +station = ('keqy', 0.0017066531838609541) +zone = ('ncz082', 0.0015042496431106097) + +[fips3769520] +centroid = (0.6240519860949959, -1.423711740955973) +description = Valdese town, NC +station = ('khky', 0.0026835938045262271) +zone = ('ncz504', 0.0014913138757923245) + +[fips3769600] +centroid = (0.63208563192217071, -1.4276213657469028) +description = Valle Crucis CDP, NC +station = ('ktnb', 0.0020840505843432969) +zone = ('ncz018', 0.0014305564822226779) + +[fips3769640] +centroid = (0.61597011682058844, -1.4398020535031562) +description = Valley Hill CDP, NC +station = ('kavl', 0.0025193350342065748) +zone = ('ncz065', 0.00079105005901858078) + +[fips3769680] +centroid = (0.61615458066923179, -1.3466384549735089) +description = Vanceboro town, NC +station = ('kewn', 0.0043978460714183439) +zone = ('ncz093', 0.0032023509042027813) + +[fips3769720] +centroid = (0.61418291711983886, -1.3379860375666246) +description = Vandemere town, NC +station = ('knbt', 0.0041057900098627215) +zone = ('ncz094', 0.0015200235571708105) + +[fips3769740] +centroid = (0.61151980648068327, -1.3751029599311142) +description = Vander CDP, NC +station = ('kfay', 0.0016633938233311398) +zone = ('ncz088', 0.00059892653438960793) + +[fips3769755] +centroid = (0.61383454940114079, -1.3684098665958113) +description = Vann Crossroads CDP, NC +station = ('kctz', 0.0034422376059082874) +zone = ('ncz089', 0.0031528990841051979) + +[fips3769795] +centroid = (0.59246681498153209, -1.3654180930052127) +description = Varnamtown town, NC +station = ('ksut', 0.0023058962998744707) +zone = ('ncz109', 0.0028157924270944008) + +[fips3769840] +centroid = (0.61529619283651593, -1.3837781189781519) +description = Vass town, NC +station = ('ksop', 0.0016829119245846914) +zone = ('ncz075', 0.0029721650389472037) + +[fips3770320] +centroid = (0.61719463982378775, -1.4212098987397015) +description = Waco town, NC +station = ('keho', 0.003126454560083335) +zone = ('ncz068', 0.0018630663497217405) + +[fips3770340] +centroid = (0.61371363299056259, -1.3742231918150616) +description = Wade town, NC +station = ('kfbg', 0.0028472910261065952) +zone = ('ncz088', 0.0023797233263131859) + +[fips3770380] +centroid = (0.61023395260756907, -1.3975670578269481) +description = Wadesboro town, NC +station = ('kafp', 0.00099057047463276091) +zone = ('ncz083', 0.00043671588932618535) + +[fips3770480] +centroid = (0.60892966805755366, -1.3851841911301437) +description = Wagram town, NC +station = ('kmeb', 0.00184609483787211) +zone = ('ncz085', 0.0018514160667867344) + +[fips3770540] +centroid = (0.62812125615260572, -1.3707232656127448) +description = Wake Forest town, NC +station = ('klhz', 0.0029759146913951946) +zone = ('ncz041', 0.0038211159844643854) + +[fips3770580] +centroid = (0.60732153913805864, -1.3832776283618504) +description = Wakulla CDP, NC +station = ('kmeb', 0.001604395375184618) +zone = ('ncz085', 0.0033081151318242021) + +[fips3770660] +centroid = (0.63124385962393381, -1.3988728608134129) +description = Walkertown town, NC +station = ('kint', 0.0013241464024320122) +zone = ('ncz021', 0.0016391440787121322) + +[fips3770720] +centroid = (0.60629474448581777, -1.3611959670117133) +description = Wallace town, NC +station = ('kdpl', 0.0045723580405488164) +zone = ('ncz090', 0.0035587923165776806) + +[fips3770740] +centroid = (0.62854736083618767, -1.3991768448092328) +description = Wallburg town, NC +station = ('kint', 0.0022978908512442599) +zone = ('ncz021', 0.002404185713628841) + +[fips3770780] +centroid = (0.63346468637734155, -1.3987142801975765) +description = Walnut Cove town, NC +station = ('kint', 0.0031078413965512433) +zone = ('ncz004', 0.0023289096566086786) + +[fips3770820] +centroid = (0.61624991055297562, -1.3590449534283855) +description = Walnut Creek village, NC +station = ('kgsb', 0.0014765667521249911) +zone = ('ncz078', 0.0021692837977562792) + +[fips3770860] +centroid = (0.62126900624281334, -1.3560860269343094) +description = Walstonburg town, NC +station = ('kgww', 0.0044696723016843755) +zone = ('ncz079', 0.0019614142839980558) + +[fips3770920] +centroid = (0.6255292676804689, -1.3201959663142164) +description = Wanchese CDP, NC +station = ('kmqi', 0.0015692332849869075) +zone = ('ncz103', 0.0014397147816049415) + +[fips3771100] +centroid = (0.63527607634152372, -1.3641015562438483) +description = Warrenton town, NC +station = ('kavc', 0.0052633964247915856) +zone = ('ncz010', 0.00070840297090541543) + +[fips3771160] +centroid = (0.61083851720716731, -1.36296756346895) +description = Warsaw town, NC +station = ('kdpl', 0.0015817968917108429) +zone = ('ncz090', 0.0025180622455568975) + +[fips3771220] +centroid = (0.62060380890500089, -1.3448501557153305) +description = Washington city, NC +station = ('kocw', 0.00022867394940845532) +zone = ('ncz080', 0.0029310264338758942) + +[fips3771240] +centroid = (0.62016543455677742, -1.3444546990134136) +description = Washington Park town, NC +station = ('kocw', 0.00070651826264327708) +zone = ('ncz080', 0.0024844650187415473) + +[fips3771320] +centroid = (0.60479068954961923, -1.3606302883478494) +description = Watha town, NC +station = ('koaj', 0.0058341933837698567) +zone = ('ncz105', 0.0021485544153618612) + +[fips3771440] +centroid = (0.62073788509813899, -1.3171139592012897) +description = Waves CDP, NC +station = ('khse', 0.0061882017384107344) +zone = ('ncz103', 0.0040409143520127892) + +[fips3771460] +centroid = (0.6097811618397242, -1.4091427621045829) +description = Waxhaw town, NC +station = ('keqy', 0.0022131480252637298) +zone = ('ncz082', 0.0030924543121330305) + +[fips3771500] +centroid = (0.61934005090021671, -1.448615948772435) +description = Waynesville town, NC +station = ('k1a5', 0.007568264225839583) +zone = ('ncz052', 0.0012554777465203226) + +[fips3771560] +centroid = (0.62304234802930214, -1.440890074305557) +description = Weaverville town, NC +station = ('kavl', 0.0046261522167164127) +zone = ('ncz053', 0.00155648827106475) + +[fips3771600] +centroid = (0.61697343679438998, -1.4524454454974058) +description = Webster town, NC +station = ('k1a5', 0.0036530491395620813) +zone = ('ncz059', 0.00063407862708124213) + +[fips3771680] +centroid = (0.61124083305304455, -1.4091137023725371) +description = Weddington town, NC +station = ('keqy', 0.001711626449672552) +zone = ('ncz082', 0.0029951174340260315) + +[fips3771760] +centroid = (0.62668881207561644, -1.4007100292906471) +description = Welcome CDP, NC +station = ('kexx', 0.002298184923138226) +zone = ('ncz038', 0.002067163936680134) + +[fips3771780] +centroid = (0.63566694282750791, -1.354610351051748) +description = Weldon town, NC +station = ('kixa', 0.0016320239595893787) +zone = ('ncz011', 0.0029049130536450544) + +[fips3771860] +centroid = (0.62432771321022595, -1.3686134941596415) +description = Wendell town, NC +station = ('kjnx', 0.0040393713191064053) +zone = ('ncz041', 0.0033381571156643692) + +[fips3771900] +centroid = (0.63533456232475816, -1.3919769078591506) +description = Wentworth town, NC +station = ('ksif', 0.0014975656412317239) +zone = ('ncz005', 0.00030840144422976417) + +[fips3771940] +centroid = (0.61096746213230468, -1.4083656018952548) +description = Wesley Chapel village, NC +station = ('keqy', 0.0011130749028478116) +zone = ('ncz082', 0.0023461265576037778) + +[fips3772150] +centroid = (0.62026207343746032, -1.4463027242884268) +description = West Canton CDP, NC +station = ('kavl', 0.005084670308857152) +zone = ('ncz052', 0.0016642428313714801) + +[fips3772540] +centroid = (0.63516852915301591, -1.4222555604011566) +description = West Jefferson town, NC +station = ('kgev', 0.0012440239858445296) +zone = ('ncz001', 0.00075352588351179292) + +[fips3772600] +centroid = (0.62224982892255665, -1.4315254054842264) +description = West Marion CDP, NC +station = ('kfqd', 0.0040924525524283903) +zone = ('ncz506', 0.0011114861821120699) + +[fips3772755] +centroid = (0.61961851818237235, -1.413326106882103) +description = Westport CDP, NC +station = ('kipj', 0.0026312299797616643) +zone = ('ncz069', 0.0035098514460430927) + +[fips3773140] +centroid = (0.61519595857757392, -1.3853003776984492) +description = Whispering Pines village, NC +station = ('ksop', 0.00047702994850552652) +zone = ('ncz075', 0.0019035936730534353) + +[fips3773160] +centroid = (0.63016414658877262, -1.3563492400388026) +description = Whitakers town, NC +station = ('ketc', 0.0039216043095666514) +zone = ('ncz011', 0.0027853374430598259) + +[fips3773300] +centroid = (0.60476719741788731, -1.3699549891293092) +description = White Lake town, NC +station = ('keyf', 0.0015737956621044002) +zone = ('ncz096', 0.0011951458415944867) + +[fips3773320] +centroid = (0.60632146547666577, -1.3738985780274833) +description = White Oak CDP, NC +station = ('keyf', 0.0031162674815941095) +zone = ('ncz096', 0.0031243470410439009) + +[fips3773460] +centroid = (0.63606372597965632, -1.4075906233474917) +description = White Plains CDP, NC +station = ('kmwk', 0.0013754464889822056) +zone = ('ncz003', 0.00074739098104287867) + +[fips3773660] +centroid = (0.59917668093094667, -1.3735991318877183) +description = Whiteville city, NC +station = ('kcpc', 0.0010227448064909482) +zone = ('ncz099', 0.001314201460233762) + +[fips3773760] +centroid = (0.62975762449939798, -1.3888413714980652) +description = Whitsett town, NC +station = ('kbuy', 0.0017494642372040306) +zone = ('ncz023', 0.002562001986742485) + +[fips3774020] +centroid = (0.63078818906282308, -1.4167539684396051) +description = Wilkesboro town, NC +station = ('kukf', 0.0018312224164883915) +zone = ('ncz019', 0.001143553037036963) + +[fips3774220] +centroid = (0.62568310100073976, -1.3450446203005877) +description = Williamston town, NC +station = ('kocw', 0.0048648530967521112) +zone = ('ncz029', 0.00060420934817192844) + +[fips3774440] +centroid = (0.59706361080555725, -1.3593630745911465) +description = Wilmington city, NC +station = ('kilm', 0.0010233638660915871) +zone = ('ncz107', 0.0012777859885646453) + +[fips3774540] +centroid = (0.62368621744365549, -1.3601611787514982) +description = Wilson city, NC +station = ('krwi', 0.0020630777313379407) +zone = ('ncz043', 0.00055154510420522829) + +[fips3774580] +centroid = (0.62109572995467532, -1.3676923093804387) +description = Wilson's Mills town, NC +station = ('kjnx', 0.00088089173760540727) +zone = ('ncz042', 0.0011972829264904707) + +[fips3774680] +centroid = (0.62819983087553044, -1.3428566755502875) +description = Windsor town, NC +station = ('kede', 0.0052976932582735397) +zone = ('ncz030', 0.0013883859273790551) + +[fips3774720] +centroid = (0.63201169977505611, -1.3344206964239431) +description = Winfall town, NC +station = ('kede', 0.0035668862468335935) +zone = ('ncz032', 0.00022366069281632548) + +[fips3774760] +centroid = (0.61060080336304567, -1.4041165105648121) +description = Wingate town, NC +station = ('keqy', 0.002447345385081083) +zone = ('ncz082', 0.0011563254475042046) + +[fips3775000] +centroid = (0.63012079261015308, -1.4008113456537254) +description = Winston-Salem city, NC +station = ('kint', 0.00065038981505925373) +zone = ('ncz021', 0.00047747241125778493) + +[fips3775060] +centroid = (0.62009234016770387, -1.3508861151339651) +description = Winterville town, NC +station = ('kpgv', 0.0018266502535456963) +zone = ('ncz044', 0.0011869653680731803) + +[fips3775080] +centroid = (0.63511568058326551, -1.3427643301795646) +description = Winton town, NC +station = ('kasj', 0.0036868074064313337) +zone = ('ncz013', 0.00087058937341086859) + +[fips3775280] +centroid = (0.62217135891938702, -1.4415072401823548) +description = Woodfin town, NC +station = ('kavl', 0.0038355045051168138) +zone = ('ncz053', 0.0010878888234812942) + +[fips3775340] +centroid = (0.63408885102443968, -1.3476544460376798) +description = Woodland town, NC +station = ('kasj', 0.00084754024345598923) +zone = ('ncz012', 0.0029725764663550221) + +[fips3775375] +centroid = (0.63033923801933256, -1.3838484906535926) +description = Woodlawn CDP, NC +station = ('kbuy', 0.0028939165541994323) +zone = ('ncz023', 0.0020032654985705171) + +[fips3775780] +centroid = (0.59843587592993774, -1.3601356969444194) +description = Wrightsboro CDP, NC +station = ('kilm', 0.0005694951903320568) +zone = ('ncz107', 0.00047006169450180028) + +[fips3775820] +centroid = (0.59711551689751141, -1.3578235371112546) +description = Wrightsville Beach town, NC +station = ('kilm', 0.001757400590270143) +zone = ('ncz108', 0.0015993513791767362) + +[fips3775960] +centroid = (0.63060487713148616, -1.4077874790338243) +description = Yadkinville town, NC +station = ('kmwk', 0.0059322757053706559) +zone = ('ncz020', 0.0005197432022449566) + +[fips3776000] +centroid = (0.63553712523774464, -1.3847874079779954) +description = Yanceyville town, NC +station = ('kdan', 0.0026746815623474311) +zone = ('ncz006', 0.00037339741027374404) + +[fips3776200] +centroid = (0.62878748323467692, -1.3697689195777543) +description = Youngsville town, NC +station = ('klhz', 0.0021422154611650179) +zone = ('ncz026', 0.0029359435197118685) + +[fips3776220] +centroid = (0.62536464822542093, -1.3668894230179365) +description = Zebulon town, NC +station = ('klhz', 0.0033663643547376396) +zone = ('ncz026', 0.0044194409109914665) + +[fips38001] +centroid = (0.80454119643270994, -1.7895418976992647) +description = Adams County, ND +station = ('khei', 0.0019894869926047397) +zone = ('ndz044', 5.6878468163860699e-05) + +[fips3800100] +centroid = (0.81064450810717892, -1.6881988834433159) +description = Abercrombie city, ND +station = ('kbwp', 0.0038180057569397927) +zone = ('mnz029', 0.0034789663510253538) + +[fips3800105700] +centroid = (0.80563846748014623, -1.7819488427884635) +description = Beisigl township, ND +station = ('khei', 0.0071311351918556757) +zone = ('ndz044', 0.0053195863294994193) + +[fips3800110300] +centroid = (0.80397850228186685, -1.7939944420606126) +description = Bucyrus city, ND +station = ('khei', 0.0018726879015413928) +zone = ('ndz044', 0.0031955522992519383) + +[fips3800110340] +centroid = (0.80417050595287876, -1.7943528803290947) +description = Bucyrus township, ND +station = ('khei', 0.0021817236192293991) +zone = ('ndz044', 0.003413991703328869) + +[fips3800113100] +centroid = (0.80705085772403018, -1.7920311735449217) +description = Cedar township, ND +station = ('khei', 0.0039209745438308638) +zone = ('ndz044', 0.003076010299480719) + +[fips3800113270] +centroid = (0.80480022074699842, -1.7919954466551336) +description = Central Adams UT, ND +station = ('khei', 0.0016826934051213979) +zone = ('ndz044', 0.0017767786383933084) + +[fips3800113500] +centroid = (0.80580959701330424, -1.7876464875848916) +description = Chandler township, ND +station = ('khei', 0.0038153859019956337) +zone = ('ndz044', 0.0017844583171027092) + +[fips3800114620] +centroid = (0.80266501984669347, -1.7878473924350886) +description = Clermont township, ND +station = ('khei', 0.0026366435131643024) +zone = ('ndz044', 0.0021859487264048812) + +[fips3800118100] +centroid = (0.80710637664753604, -1.7943545383918842) +description = Darling Springs township, ND +station = ('khei', 0.0044056189082610792) +zone = ('ndz044', 0.0042499419105383072) + +[fips3800120700] +centroid = (0.80416731200034763, -1.789999767375233) +description = Duck Creek township, ND +station = ('khei', 0.0015014238371514339) +zone = ('ndz044', 0.00053019299207663175) + +[fips3800121495] +centroid = (0.80418696440772508, -1.784884486590318) +description = East Adams UT, ND +station = ('khei', 0.0047634553456503579) +zone = ('ndz044', 0.0031932392252258151) + +[fips3800130340] +centroid = (0.80263894462766883, -1.7856139644044815) +description = Gilstrap township, ND +station = ('khei', 0.0041749763887115685) +zone = ('ndz044', 0.0032788383101524008) + +[fips3800136540] +centroid = (0.80239611696883884, -1.7884564774374496) +description = Haynes city, ND +station = ('khei', 0.0022950038330052918) +zone = ('ndz044', 0.0022567612130972668) + +[fips3800137700] +centroid = (0.80291290896035428, -1.7913119233601749) +description = Hettinger city, ND +station = ('khei', 0.00029568543341258069) +zone = ('ndz044', 0.0020756413008966809) + +[fips3800137740] +centroid = (0.80260971036269779, -1.7921481804179753) +description = Hettinger township, ND +station = ('khei', 0.00066272954906567902) +zone = ('ndz044', 0.00268671641371835) + +[fips3800138420] +centroid = (0.80265262800900439, -1.794349668923271) +description = Holden UT, ND +station = ('khei', 0.0019849098223855802) +zone = ('ndz044', 0.0038848589663979306) + +[fips3800146500] +centroid = (0.80265194733059608, -1.796522272229446) +description = Lightning Creek township, ND +station = ('khei', 0.0034675471836722199) +zone = ('ndz044', 0.0052541225406765018) + +[fips3800149780] +centroid = (0.80711653446378262, -1.7900019315835056) +description = Maine township, ND +station = ('khei', 0.0041220057441974768) +zone = ('ndz044', 0.0026010812404712344) + +[fips3800159620] +centroid = (0.80307063436485704, -1.7811764473279934) +description = Orange township, ND +station = ('khei', 0.0072256764709472164) +zone = ('ndz044', 0.0059339516216760585) + +[fips3800165900] +centroid = (0.80472066863969249, -1.796686978950957) +description = Reeder city, ND +station = ('khei', 0.0038789292120726426) +zone = ('ndz044', 0.005014240897317882) + +[fips3800165940] +centroid = (0.80418029724998252, -1.7964556530118976) +description = Reeder township, ND +station = ('khei', 0.0035393544859913663) +zone = ('ndz044', 0.0048655608916738586) + +[fips3800171380] +centroid = (0.8025775264912911, -1.7900164003630046) +description = Scott township, ND +station = ('khei', 0.0012245318097801896) +zone = ('ndz044', 0.0020027605355004163) + +[fips3800174140] +centroid = (0.80416060993602001, -1.7812977826175922) +description = South Fork township, ND +station = ('khei', 0.007209296361343224) +zone = ('ndz044', 0.0056739403187188089) + +[fips3800178220] +centroid = (0.80580146377898998, -1.7900076911700371) +description = Taylor Butte township, ND +station = ('khei', 0.00287412103229788) +zone = ('ndz044', 0.0013147779140005621) + +[fips3800184480] +centroid = (0.80631298487616454, -1.7963633425477594) +description = West Adams UT, ND +station = ('khei', 0.0045878912061404669) +zone = ('ndz044', 0.0050998375651342904) + +[fips3800187140] +centroid = (0.8058187076319997, -1.794631871210026) +description = Wolf Butte township, ND +station = ('khei', 0.0034118584990008595) +zone = ('ndz044', 0.003804448228259726) + +[fips38003] +centroid = (0.81930205678206414, -1.7116478008228804) +description = Barnes County, ND +station = ('kbac', 0.00062180459751897267) +zone = ('ndz038', 0.0001138119926104875) + +[fips3800301780] +centroid = (0.81917663742201585, -1.7082043011152805) +description = Alta township, ND +station = ('kbac', 0.0017327410510060586) +zone = ('ndz038', 0.0023680627460378485) + +[fips3800302300] +centroid = (0.8209595959726832, -1.7150689254094695) +description = Anderson township, ND +station = ('kbac', 0.0033999800847639549) +zone = ('ndz038', 0.0029158203242518254) + +[fips3800303580] +centroid = (0.82229901400054117, -1.7106753033636692) +description = Ashtabula township, ND +station = ('kbac', 0.0030223707696236998) +zone = ('ndz038', 0.0031829386465363411) + +[fips3800304340] +centroid = (0.82380095708834489, -1.7085378335353369) +description = Baldwin township, ND +station = ('ks32', 0.0046343822485785868) +zone = ('ndz029', 0.0048848988396613018) + +[fips3800307100] +centroid = (0.81612817553731243, -1.7059665970280062) +description = Binghampton township, ND +station = ('kbac', 0.0045345321792117158) +zone = ('ndz038', 0.0049598038889523757) + +[fips3800309420] +centroid = (0.82058030101963975, -1.7172903630281156) +description = Brimer township, ND +station = ('kbac', 0.0046567512574148774) +zone = ('ndz038', 0.0040777336515788708) + +[fips3800317300] +centroid = (0.81770672112598619, -1.7079839358439237) +description = Cuba township, ND +station = ('kbac', 0.0024508519744365766) +zone = ('ndz038', 0.0029242746383011014) + +[fips3800318340] +centroid = (0.82359162229786076, -1.7139254554967329) +description = Dazey city, ND +station = ('ks32', 0.0042432038204801249) +zone = ('ndz038', 0.0046620333238744129) + +[fips3800318380] +centroid = (0.823905188151274, -1.7128797240221079) +description = Dazey township, ND +station = ('ks32', 0.0038009839789367758) +zone = ('ndz028', 0.0045249998881353648) + +[fips3800321820] +centroid = (0.8193162288555903, -1.7170745356128139) +description = Eckelson township, ND +station = ('kbac', 0.0043264906546312439) +zone = ('ndz038', 0.0036906288883876079) + +[fips3800322460] +centroid = (0.82236181094702787, -1.7150918590358408) +description = Edna township, ND +station = ('kbac', 0.0042806953903197246) +zone = ('ndz038', 0.0039366132174059815) + +[fips3800323500] +centroid = (0.82373351756604785, -1.7063979726059291) +description = Ellsbury township, ND +station = ('kbac', 0.0053477623324733907) +zone = ('ndz029', 0.0045641633734363873) + +[fips3800326380] +centroid = (0.81616014996920905, -1.7068124184901077) +description = Fingal city, ND +station = ('kbac', 0.0041135142896408716) +zone = ('ndz038', 0.0044971482346212342) + +[fips3800330060] +centroid = (0.82057208051886288, -1.710971433377855) +description = Getchell township, ND +station = ('kbac', 0.001304910007389298) +zone = ('ndz038', 0.0014629670226143324) + +[fips3800332340] +centroid = (0.82221909537409232, -1.7086199512766429) +description = Grand Prairie township, ND +station = ('kbac', 0.0032772644534937584) +zone = ('ndz038', 0.0036753703333916588) + +[fips3800333020] +centroid = (0.81753683077659711, -1.7123906129525293) +description = Green township, ND +station = ('kbac', 0.0020745565264262979) +zone = ('ndz038', 0.0017240168352770145) + +[fips3800333380] +centroid = (0.81462747163327764, -1.7169824171348935) +description = Greenland township, ND +station = ('kjms', 0.005696025226809948) +zone = ('ndz048', 0.0042570366579183427) + +[fips3800337180] +centroid = (0.81763474374763401, -1.714934901576209) +description = Hemen township, ND +station = ('kbac', 0.0033049574190912941) +zone = ('ndz038', 0.0027181351835153327) + +[fips3800338300] +centroid = (0.81919578368391022, -1.712469222582039) +description = Hobart township, ND +station = ('kbac', 0.0011849649536479696) +zone = ('ndz038', 0.00054416870479788448) + +[fips3800340] +centroid = (0.84509793586007764, -1.711713477562633) +description = Adams city, ND +station = ('kd55', 0.0068773912177930805) +zone = ('ndz054', 0.00086560041938533083) + +[fips3800341500] +centroid = (0.81475043007908066, -1.7099110585908057) +description = Kathryn city, ND +station = ('kbac', 0.0045617401652298176) +zone = ('ndz038', 0.0045998188991281056) + +[fips3800343980] +centroid = (0.82387454016960904, -1.715289482667044) +description = Lake Town township, ND +station = ('ks32', 0.0043243980063905887) +zone = ('ndz028', 0.0044374193699938357) + +[fips3800345460] +centroid = (0.82213647148730296, -1.7159272608823077) +description = Leal city, ND +station = ('kbac', 0.00454884963743548) +zone = ('ndz038', 0.0041350978018747766) + +[fips3800347140] +centroid = (0.81432877598509135, -1.7137706447920811) +description = Litchville city, ND +station = ('kbac', 0.005366072219097527) +zone = ('ndz038', 0.0050685246592960627) + +[fips3800350340] +centroid = (0.81779791457940287, -1.7171589048288554) +description = Mansfield township, ND +station = ('kbac', 0.0046300586208010428) +zone = ('ndz038', 0.0039990238684323711) + +[fips3800350900] +centroid = (0.81765156872162315, -1.7103685792009236) +description = Marsh township, ND +station = ('kbac', 0.0016448401264217232) +zone = ('ndz038', 0.0017773475744878623) + +[fips3800351700] +centroid = (0.81614152730609024, -1.7165928072859709) +description = Meadow Lake township, ND +station = ('kbac', 0.0050857095063530236) +zone = ('ndz038', 0.004540361188399498) + +[fips3800353340] +centroid = (0.82230323769733105, -1.7062583288124771) +description = Minnie Lake township, ND +station = ('kbac', 0.0042990302527845751) +zone = ('ndz038', 0.0048286464233749053) + +[fips3800355820] +centroid = (0.81639205186692143, -1.7104748872056628) +description = Nelson township, ND +station = ('kbac', 0.0028904877218061007) +zone = ('ndz038', 0.0029148124117122933) + +[fips3800357140] +centroid = (0.82070882706575665, -1.7086182408539761) +description = Noltimier township, ND +station = ('kbac', 0.002035006667302496) +zone = ('ndz038', 0.0025787775479468788) + +[fips3800357180] +centroid = (0.81464408716775671, -1.7072194118183803) +description = Nome city, ND +station = ('kbac', 0.0052213379179522137) +zone = ('ndz049', 0.0042806845477495409) + +[fips3800357420] +centroid = (0.81632726524508747, -1.7079943380062657) +description = Norma township, ND +station = ('kbac', 0.0034957330973722548) +zone = ('ndz038', 0.003810328601661007) + +[fips3800358780] +centroid = (0.81470356798866461, -1.7107361804479786) +description = Oakhill township, ND +station = ('kbac', 0.0045733755783481317) +zone = ('ndz038', 0.0045314437600546629) + +[fips3800359660] +centroid = (0.81910678934535097, -1.7067693263108759) +description = Oriska city, ND +station = ('kbac', 0.0027150541296522483) +zone = ('ndz038', 0.0033489999674549574) + +[fips3800359700] +centroid = (0.81917721338066907, -1.7061070436729142) +description = Oriska township, ND +station = ('kbac', 0.0031633842590405429) +zone = ('ndz038', 0.0038000902810168629) + +[fips3800362460] +centroid = (0.8238880315647269, -1.7171757123495519) +description = Pierce township, ND +station = ('ks32', 0.0050467145089120634) +zone = ('ndz028', 0.0047401317833236038) + +[fips3800362540] +centroid = (0.82391920314516753, -1.7068576748776121) +description = Pillsbury city, ND +station = ('kbac', 0.0053416905533599538) +zone = ('ndz029', 0.0044282046932744854) + +[fips3800364020] +centroid = (0.81921986922758772, -1.7149443961673396) +description = Potter township, ND +station = ('kbac', 0.0028727086597844223) +zone = ('ndz038', 0.0022343860023499381) + +[fips3800365380] +centroid = (0.81452427031460717, -1.7057416240874241) +description = Raritan township, ND +station = ('kbac', 0.0058551535105663939) +zone = ('ndz049', 0.003817927118245296) + +[fips3800367620] +centroid = (0.82159644916344332, -1.7139678146376787) +description = Rogers city, ND +station = ('kbac', 0.0031986476746016499) +zone = ('ndz038', 0.0028712148396369728) + +[fips3800367660] +centroid = (0.82235667967902704, -1.7128794622227204) +description = Rogers township, ND +station = ('kbac', 0.0034081981624560333) +zone = ('ndz038', 0.0032723416736919623) + +[fips3800368140] +centroid = (0.8146276112596178, -1.7149601215839003) +description = Rosebud township, ND +station = ('kbac', 0.0054743090541209119) +zone = ('ndz048', 0.0050382299892023745) + +[fips3800370380] +centroid = (0.81929444714652544, -1.7143314888939167) +description = Sanborn city, ND +station = ('kbac', 0.0024536315585760994) +zone = ('ndz038', 0.0018186441206334554) + +[fips3800372820] +centroid = (0.82412132972584096, -1.7098169329842459) +description = Sibley city, ND +station = ('ks32', 0.0039312478922810387) +zone = ('ndz029', 0.005028313524175339) + +[fips3800372940] +centroid = (0.82361000061488421, -1.7106773279456013) +description = Sibley Trail township, ND +station = ('ks32', 0.0042143021534672472) +zone = ('ndz038', 0.0044721771213335282) + +[fips3800373500] +centroid = (0.81633077335688398, -1.7123018280534803) +description = Skandia township, ND +station = ('kbac', 0.0031342937789246013) +zone = ('ndz038', 0.0028909416576306571) + +[fips3800374900] +centroid = (0.8147735905982546, -1.7124178575421529) +description = Spring Creek township, ND +station = ('kbac', 0.0046478241172204244) +zone = ('ndz038', 0.0044452752746110295) + +[fips3800375100] +centroid = (0.81764299915499594, -1.7059674522393398) +description = Springvale township, ND +station = ('kbac', 0.003646372104354301) +zone = ('ndz038', 0.0041941077682007694) + +[fips3800376020] +centroid = (0.82070989171660025, -1.7130399627007336) +description = Stewart township, ND +station = ('kbac', 0.0021260566335479657) +zone = ('ndz038', 0.0017838963521306745) + +[fips3800377300] +centroid = (0.81614582081605014, -1.7147673499680174) +description = Svea township, ND +station = ('kbac', 0.0041711191197150209) +zone = ('ndz038', 0.0037073654199148167) + +[fips3800378700] +centroid = (0.81451074401290424, -1.7082267111428762) +description = Thordenskjold township, ND +station = ('kbac', 0.0050666496325048648) +zone = ('ndz049', 0.0045213559248507423) + +[fips3800379340] +centroid = (0.81898072421347945, -1.7049500300051821) +description = Tower City city, ND +station = ('kbac', 0.0039633038933192654) +zone = ('ndz039', 0.0052268772763602112) + +[fips3800380980] +centroid = (0.82228810569271626, -1.7172962273344021) +description = Uxbridge township, ND +station = ('kjms', 0.0045211702326521403) +zone = ('ndz038', 0.0049293718783300442) + +[fips3800381080] +centroid = (0.81954680430307125, -1.7097250937590058) +description = Valley township, ND +station = ('kbac', 0.00074212615109979659) +zone = ('ndz038', 0.0013765258610091771) + +[fips3800381180] +centroid = (0.81895320037117547, -1.7105106664553285) +description = Valley City city, ND +station = ('kbac', 0.00035897825556391381) +zone = ('ndz038', 0.00082773564443560429) + +[fips3800384220] +centroid = (0.82069322382224374, -1.70639645416948) +description = Weimer township, ND +station = ('kbac', 0.0032830034316643705) +zone = ('ndz038', 0.003901008339078524) + +[fips3800386620] +centroid = (0.82326451268945189, -1.7184281431674906) +description = Wimbledon city, ND +station = ('kjms', 0.0048082154191216005) +zone = ('ndz028', 0.005663385092596721) + +[fips38005] +centroid = (0.83901010525607389, -1.7341938244738029) +description = Benson County, ND +station = ('kdvl', 0.0052500675744246708) +zone = ('ndz014', 6.1218598519710324e-05) + +[fips3800500980] +centroid = (0.83875984249463031, -1.7368342109260977) +description = Albert township, ND +station = ('k5h4', 0.0067487461710042402) +zone = ('ndz014', 0.0017316632285453032) + +[fips3800503180] +centroid = (0.83576625376160973, -1.7385330271535264) +description = Arne township, ND +station = ('k5h4', 0.0041088609583939855) +zone = ('ndz014', 0.0042934293495437217) + +[fips3800503860] +centroid = (0.83748643281908275, -1.7341136265946739) +description = Aurora township, ND +station = ('kdvl', 0.0056361231420839555) +zone = ('ndz014', 0.0014861883315875678) + +[fips3800505620] +centroid = (0.84193309542085137, -1.7369541499522947) +description = Beaver township, ND +station = ('k9d7', 0.0053375602633331451) +zone = ('ndz014', 0.0034654615410380143) + +[fips3800509460] +centroid = (0.8409625701836948, -1.7335313149430385) +description = Brinsmade city, ND +station = ('kdvl', 0.0048852717583877424) +zone = ('ndz014', 0.0020520915635414919) + +[fips3800509740] +centroid = (0.84031966070043018, -1.7390795944620807) +description = Broe township, ND +station = ('krug', 0.006152461418672853) +zone = ('ndz014', 0.0034886970355547204) + +[fips3800511260] +centroid = (0.84027569585657247, -1.7368340363931725) +description = Butte Valley township, ND +station = ('k9d7', 0.0066833617861621654) +zone = ('ndz014', 0.002157792735435832) + +[fips3800521620] +centroid = (0.83602749464404824, -1.7407356152162508) +description = East Fork township, ND +station = ('k5h4', 0.0029795921905547817) +zone = ('ndz014', 0.0052371575954891902) + +[fips3800522780] +centroid = (0.83900139606310642, -1.7345574114635784) +description = Eldon township, ND +station = ('kdvl', 0.0054915816328185013) +zone = ('ndz014', 0.00019991303370097305) + +[fips3800524780] +centroid = (0.83833848510661391, -1.7412293339550546) +description = Esmond city, ND +station = ('k5h4', 0.0046538548796086687) +zone = ('ndz013', 0.0044780622757387865) + +[fips3800524820] +centroid = (0.83891213992515945, -1.7416630133675903) +description = Esmond township, ND +station = ('k5h4', 0.0050780044174999241) +zone = ('ndz013', 0.0038389469379759068) + +[fips3800527750] +centroid = (0.8374652270686711, -1.7276338997604272) +description = Fort Totten UT, ND +station = ('kdvl', 0.0024660138134359219) +zone = ('ndz024', 0.004740534039098473) + +[fips3800537660] +centroid = (0.83738858966121599, -1.7386087046298928) +description = Hesper township, ND +station = ('k5h4', 0.0049474433635380306) +zone = ('ndz014', 0.0033090337228762396) + +[fips3800539860] +centroid = (0.84023674010766802, -1.7416683366218089) +description = Impark township, ND +station = ('krug', 0.0051205370909295431) +zone = ('ndz013', 0.0028261411981395572) + +[fips3800540180] +centroid = (0.84213583286676308, -1.7416622454227193) +description = Iowa township, ND +station = ('krug', 0.0036547322716728283) +zone = ('ndz013', 0.0021141563663129624) + +[fips3800540220] +centroid = (0.84356438485952034, -1.7323270726657474) +description = Irvine township, ND +station = ('k9d7', 0.0025802915910678181) +zone = ('ndz014', 0.0047726552645856657) + +[fips3800540260] +centroid = (0.83888815910123704, -1.7392743033934333) +description = Isabel township, ND +station = ('k5h4', 0.0057813699299490793) +zone = ('ndz014', 0.0033504237169204609) + +[fips3800543260] +centroid = (0.84376263680925434, -1.7399391865719804) +description = Knox city, ND +station = ('krug', 0.0039487052640607969) +zone = ('ndz013', 0.0036515804412975872) + +[fips3800543300] +centroid = (0.84349020836631061, -1.7391212205647408) +description = Knox township, ND +station = ('krug', 0.0045398232863056468) +zone = ('ndz014', 0.0055613361253655713) + +[fips3800543900] +centroid = (0.84195679699209347, -1.7346144313702412) +description = Lake Ibsen township, ND +station = ('k9d7', 0.0045250682933925118) +zone = ('ndz014', 0.0029967285816136714) + +[fips3800544420] +centroid = (0.83772679956366747, -1.7304623977995015) +description = Lallie township, ND +station = ('kdvl', 0.0034013285927630139) +zone = ('ndz014', 0.0028283710929423818) + +[fips3800544425] +centroid = (0.83895863549643257, -1.7300944125800113) +description = Lallie North UT, ND +station = ('kdvl', 0.0025916354626085371) +zone = ('ndz014', 0.0027850223294892161) + +[fips3800545580] +centroid = (0.84280286280029015, -1.7355469607895817) +description = Leeds city, ND +station = ('k9d7', 0.0040805493577367275) +zone = ('ndz014', 0.0039281293228133471) + +[fips3800545620] +centroid = (0.84349767837550915, -1.7346739296444416) +description = Leeds township, ND +station = ('k9d7', 0.0031789596586051698) +zone = ('ndz014', 0.0045366903796077822) + +[fips3800547620] +centroid = (0.83699583821963963, -1.7227421258395226) +description = Lohnes township, ND +station = ('kdvl', 0.0037261203287182946) +zone = ('ndz024', 0.0047560051320135735) + +[fips3800548980] +centroid = (0.84039683915995345, -1.7347819829784326) +description = McClellan township, ND +station = ('kdvl', 0.0056121386255418518) +zone = ('ndz014', 0.0014691346189055733) + +[fips3800549620] +centroid = (0.8371025651033992, -1.7371129574609336) +description = Maddock city, ND +station = ('k5h4', 0.0055798752523054003) +zone = ('ndz014', 0.0026685798011053313) + +[fips3800553060] +centroid = (0.83547764611649999, -1.7208514281141296) +description = Minco township, ND +station = ('kdvl', 0.0057033495143699138) +zone = ('ndz024', 0.0044413742172773546) + +[fips3800553220] +centroid = (0.8389836635179061, -1.7322453738034616) +description = Minnewaukan city, ND +station = ('kdvl', 0.0039734137944594985) +zone = ('ndz014', 0.0013477153780214895) + +[fips3800553580] +centroid = (0.8374993482555475, -1.7249941939865407) +description = Mission township, ND +station = ('kdvl', 0.0024853494927795879) +zone = ('ndz024', 0.0047350289290322423) + +[fips3800557580] +centroid = (0.84180092163659781, -1.7323377540807694) +description = Normania township, ND +station = ('k9d7', 0.0043404471098874992) +zone = ('ndz014', 0.0031090919586854895) + +[fips3800558180] +centroid = (0.83742965725851548, -1.7363093380601453) +description = North Viking township, ND +station = ('k5h4', 0.0062094454568363631) +zone = ('ndz014', 0.0020603795134686814) + +[fips3800559020] +centroid = (0.83643166053893248, -1.7314788601025706) +description = Oberon city, ND +station = ('kdvl', 0.0047696517975688579) +zone = ('ndz014', 0.0031477680785715685) + +[fips3800559060] +centroid = (0.83645677582686884, -1.7321428706164921) +description = Oberon township, ND +station = ('kdvl', 0.0050776831578479061) +zone = ('ndz014', 0.0028851079769497564) + +[fips3800563200] +centroid = (0.84356894016886808, -1.7414092424943504) +description = Pleasant Lake township, ND +station = ('krug', 0.0030580794538259378) +zone = ('ndz013', 0.0027050417294895586) + +[fips3800566660] +centroid = (0.83749486275936991, -1.7405693900582906) +description = Rich Valley township, ND +station = ('k5h4', 0.0041429818217749758) +zone = ('ndz014', 0.0044684266298134672) + +[fips3800566820] +centroid = (0.84032772412157453, -1.7319349146361169) +description = Riggin township, ND +station = ('kdvl', 0.0037182020639746666) +zone = ('ndz014', 0.0020639812183560562) + +[fips3800567300] +centroid = (0.83572829285037886, -1.7294979986680197) +description = Rock township, ND +station = ('kdvl', 0.0045573802464338002) +zone = ('ndz024', 0.0036655473582406675) + +[fips3800574380] +centroid = (0.83595536018606342, -1.7359643039203183) +description = South Viking township, ND +station = ('k5h4', 0.005786250578009966) +zone = ('ndz014', 0.0032221051478347512) + +[fips3800580380] +centroid = (0.84193159443769472, -1.739462345167043) +description = Twin Lake township, ND +station = ('krug', 0.0049500380142240208) +zone = ('ndz014', 0.0045618606786934635) + +[fips3800580420] +centroid = (0.83596733314473193, -1.7275194585213738) +description = Twin Tree township, ND +station = ('kdvl', 0.0038967858403017633) +zone = ('ndz024', 0.0032685017330893857) + +[fips3800583580] +centroid = (0.83518893375163505, -1.7227429461442709) +description = Warwick city, ND +station = ('kdvl', 0.0052221891989304992) +zone = ('ndz024', 0.0032916796603951457) + +[fips3800583620] +centroid = (0.8358128016927604, -1.723204131945818) +description = Warwick township, ND +station = ('kdvl', 0.0045261759916560259) +zone = ('ndz024', 0.003583244257222042) + +[fips3800584540] +centroid = (0.83571605809232241, -1.7340018382560836) +description = West Antelope township, ND +station = ('kdvl', 0.0065083871510150252) +zone = ('ndz014', 0.0032579041775714734) + +[fips3800584620] +centroid = (0.83873861929092608, -1.7325413467380149) +description = West Bay township, ND +station = ('kdvl', 0.0042221910069850195) +zone = ('ndz014', 0.0011729269947098626) + +[fips3800587420] +centroid = (0.83581566403273377, -1.7248528921302995) +description = Wood Lake township, ND +station = ('kdvl', 0.004114703510264466) +zone = ('ndz024', 0.0031125369189047591) + +[fips3800587860] +centroid = (0.84322231777942203, -1.7378866619183426) +description = York city, ND +station = ('krug', 0.0054015148705842337) +zone = ('ndz014', 0.0048914792808442175) + +[fips3800587900] +centroid = (0.84342765576591927, -1.7371869768745107) +description = York township, ND +station = ('k9d7', 0.0043799050992487784) +zone = ('ndz014', 0.0048659979352324743) + +[fips38007] +centroid = (0.82046676735179758, -1.8040582548737072) +description = Billings County, ND +station = ('kdik', 0.0076628991693423179) +zone = ('ndz032', 0.00028322847792012498) + +[fips3800751900] +centroid = (0.81879434050265898, -1.8068709053231737) +description = Medora city, ND +station = ('k20u', 0.0054383320587595985) +zone = ('ndz032', 0.0026203953476548868) + +[fips3800757710] +centroid = (0.82249466540968974, -1.8037359449207415) +description = North Billings UT, ND +station = ('kdik', 0.0086392325663359314) +zone = ('ndz032', 0.0018150039628670336) + +[fips3800774070] +centroid = (0.81656806832198514, -1.8049685837049623) +description = South Billings UT, ND +station = ('kdik', 0.00737769928451681) +zone = ('ndz032', 0.0041751102598129898) + +[fips38009] +centroid = (0.8516231459746314, -1.75983742357458) +description = Bottineau County, ND +station = ('kmib', 0.0089054067196412002) +zone = ('ndz004', 4.78893693759194e-05) + +[fips3800902100] +centroid = (0.85103846067521327, -1.7518892639741679) +description = Amity township, ND +station = ('krug', 0.007632152441542658) +zone = ('ndz004', 0.0052916818765053903) + +[fips3800902660] +centroid = (0.85470897535862, -1.7677212677920562) +description = Antler city, ND +station = ('kmib', 0.0097094872655158135) +zone = ('ndz004', 0.0060320856651300383) + +[fips3800902700] +centroid = (0.85436160247759563, -1.7678291465931217) +description = Antler township, ND +station = ('kmib', 0.0093576622856973678) +zone = ('ndz004', 0.0059230665433486675) + +[fips3800906020] +centroid = (0.85260189171256473, -1.7657179788766171) +description = Bentinck township, ND +station = ('kmib', 0.0078566853159776819) +zone = ('ndz004', 0.003978762642711014) + +[fips3800907540] +centroid = (0.84968630174381565, -1.7693332015293206) +description = Blaine township, ND +station = ('kmib', 0.0046652398326530575) +zone = ('ndz003', 0.003316514598698023) + +[fips3800908460] +centroid = (0.85215634406111562, -1.7530775364888034) +description = Bottineau city, ND +station = ('krug', 0.008995563204889586) +zone = ('ndz004', 0.0045142694248091232) + +[fips3800909060] +centroid = (0.85095040881445017, -1.7632533819865834) +description = Brander township, ND +station = ('kmib', 0.0069968770984157038) +zone = ('ndz004', 0.0023135287600942805) + +[fips3800913060] +centroid = (0.84941581061634164, -1.7492024866703553) +description = Cecil township, ND +station = ('krug', 0.0053523534158781885) +zone = ('ndz005', 0.0047488852532533259) + +[fips3800913780] +centroid = (0.84802363128519587, -1.7649013218663163) +description = Chatfield township, ND +station = ('kmib', 0.0039936427592304011) +zone = ('ndz004', 0.0048651839600544972) + +[fips3800915980] +centroid = (0.85262342907553434, -1.7494950562128671) +description = Cordelia township, ND +station = ('krug', 0.0084198668440766226) +zone = ('ndz004', 0.0069139507341157277) + +[fips3800917540] +centroid = (0.85109125688508613, -1.7702974261278774) +description = Cut Bank township, ND +station = ('kmib', 0.0061319644720236044) +zone = ('ndz003', 0.0027327095958499048) + +[fips3800917780] +centroid = (0.85416926719402575, -1.7541705663861571) +description = Dalen township, ND +station = ('krug', 0.011088005639006438) +zone = ('ndz004', 0.0045583675483016435) + +[fips3800922620] +centroid = (0.85272045192865276, -1.75943252464141) +description = Eidsvold township, ND +station = ('kmib', 0.0099099730507138453) +zone = ('ndz004', 0.0011746195611594358) + +[fips3800923780] +centroid = (0.84816683555032202, -1.7670534175537806) +description = Elms township, ND +station = ('kmib', 0.0033646275922557087) +zone = ('ndz004', 0.0058404076618346545) + +[fips3800923980] +centroid = (0.84943104734071151, -1.7556573949226386) +description = Elysian township, ND +station = ('krug', 0.0081597009981271423) +zone = ('ndz004', 0.0035178060790451936) + +[fips3800929180] +centroid = (0.84999862841346019, -1.7540303815406371) +description = Gardena city, ND +station = ('krug', 0.007708929188334269) +zone = ('ndz004', 0.0041677203033769752) + +[fips3800935220] +centroid = (0.85425953562293899, -1.756374009660215) +description = Haram township, ND +station = ('krug', 0.011957071105951437) +zone = ('ndz004', 0.0035317196722446874) + +[fips3800936060] +centroid = (0.85120335938294167, -1.7659193375124198) +description = Hastings township, ND +station = ('kmib', 0.0064784846454931334) +zone = ('ndz004', 0.0039998298918266393) + +[fips3800938380] +centroid = (0.85250771374612722, -1.7700650355379741) +description = Hoffman township, ND +station = ('kmib', 0.0075176040929107258) +zone = ('ndz003', 0.003535497741370598) + +[fips3800938540] +centroid = (0.85421710666882289, -1.7500716082779708) +description = Homen township, ND +station = ('krug', 0.010055005037795349) +zone = ('ndz004', 0.0069669362665460213) + +[fips3800940] +centroid = (0.84793006418399641, -1.8058623493616162) +description = Alamo city, ND +station = ('kd50', 0.0063481760001876985) +zone = ('ndz001', 0.0040565791963685502) + +[fips3800941300] +centroid = (0.8509477384606946, -1.7613381623851998) +description = Kane township, ND +station = ('kmib', 0.0077446159244850162) +zone = ('ndz004', 0.0011537406998906414) + +[fips3800943500] +centroid = (0.84981866751428703, -1.7576790970616862) +description = Kramer city, ND +station = ('krug', 0.0094772530642924131) +zone = ('ndz004', 0.0022830116357366792) + +[fips3800944700] +centroid = (0.85339350324809926, -1.7612461660803274) +description = Landa city, ND +station = ('kmib', 0.009769695569611065) +zone = ('ndz004', 0.0020226449138063436) + +[fips3800944900] +centroid = (0.84870108083435747, -1.769344266916778) +description = Lansford city, ND +station = ('kmib', 0.0036830798266584454) +zone = ('ndz003', 0.0036282351055246104) + +[fips3800944940] +centroid = (0.84791821339837536, -1.7693347374190622) +description = Lansford township, ND +station = ('kmib', 0.0029028835612708776) +zone = ('ndz003', 0.0040431692675032488) + +[fips3800946260] +centroid = (0.8495567634067327, -1.7649606805141766) +description = Lewis township, ND +station = ('kmib', 0.0052211108591283329) +zone = ('ndz004', 0.0039177863189681517) + +[fips3800948060] +centroid = (0.85119051375964705, -1.7493201742218174) +description = Lordsburg township, ND +station = ('krug', 0.0070236441485242119) +zone = ('ndz005', 0.0044583733123175198) + +[fips3800951420] +centroid = (0.85036666599282806, -1.7652670905176568) +description = Maxbass city, ND +station = ('kmib', 0.0058504901247669961) +zone = ('ndz004', 0.0037560278315159194) + +[fips3800954900] +centroid = (0.84955864836232486, -1.7672398361711861) +description = Mount Rose township, ND +station = ('kmib', 0.0046584925186310376) +zone = ('ndz004', 0.0052614060300916737) + +[fips3800955940] +centroid = (0.84947307486909962, -1.7624996790024021) +description = Newborg township, ND +station = ('kmib', 0.0061354651053407705) +zone = ('ndz004', 0.0027284397435701456) + +[fips3800956020] +centroid = (0.85022093100028651, -1.7612574758138804) +description = Newburg city, ND +station = ('kmib', 0.0072431237643630735) +zone = ('ndz004', 0.0016381595832015755) + +[fips3800958700] +centroid = (0.84954597727195535, -1.7535609577850206) +description = Oak Creek township, ND +station = ('krug', 0.0071713111509117073) +zone = ('ndz004', 0.0046368218109754623) + +[fips3800958860] +centroid = (0.85132481684558792, -1.7542620914521319) +description = Oak Valley township, ND +station = ('krug', 0.0087880258404310508) +zone = ('ndz004', 0.0037083074188217864) + +[fips3800960180] +centroid = (0.84789931148257625, -1.7514893566826584) +description = Ostby township, ND +station = ('krug', 0.0050493043213997108) +zone = ('ndz004', 0.0066503168990693431) + +[fips3800960380] +centroid = (0.849644919987251, -1.7479643850055757) +description = Overly city, ND +station = ('krug', 0.0052770652354550982) +zone = ('ndz005', 0.0039076091020462216) + +[fips3800961180] +centroid = (0.85272015522267997, -1.756363869297261) +description = Peabody township, ND +station = ('krug', 0.010747836336940299) +zone = ('ndz004', 0.0025771870207064434) + +[fips3800962300] +centroid = (0.85270659401439197, -1.7542949385486544) +description = Pickering township, ND +station = ('krug', 0.0098989028341287498) +zone = ('ndz004', 0.0038427749608074503) + +[fips3800966100] +centroid = (0.85107102851905547, -1.7680062975121995) +description = Renville township, ND +station = ('kmib', 0.0060690722672510286) +zone = ('ndz004', 0.0053817523789411129) + +[fips3800966540] +centroid = (0.85424517156319502, -1.7632585132545842) +description = Richburg township, ND +station = ('kmib', 0.0099370710229842243) +zone = ('ndz004', 0.0034694572075507145) + +[fips3800967740] +centroid = (0.85422911453407657, -1.7517822229311431) +description = Roland township, ND +station = ('krug', 0.010442740998163898) +zone = ('ndz004', 0.0059457967648382393) + +[fips3800971060] +centroid = (0.85427812337947262, -1.7588504747891622) +description = Scandia township, ND +station = ('kmib', 0.011378458621597264) +zone = ('ndz004', 0.0027785516551951128) + +[fips3800971340] +centroid = (0.85424433380515397, -1.7609636147277219) +description = Scotia township, ND +station = ('kmib', 0.010596959601411361) +zone = ('ndz004', 0.0027559184057796963) + +[fips3800971820] +centroid = (0.85247073021927744, -1.7628756752831594) +description = Sergius township, ND +station = ('kmib', 0.0084360714369170614) +zone = ('ndz004', 0.0021652281788287066) + +[fips3800972500] +centroid = (0.85246743154699101, -1.7678272267309447) +description = Sherman township, ND +station = ('kmib', 0.0074703552865042436) +zone = ('ndz004', 0.0053093994867095141) + +[fips3800974020] +centroid = (0.85364113056237234, -1.7572428869217354) +description = Souris city, ND +station = ('kmib', 0.011547082403765344) +zone = ('ndz004', 0.0026907393628544077) + +[fips3800975500] +centroid = (0.85119957201846486, -1.7590430195122424) +description = Starbuck township, ND +station = ('kmib', 0.0089714150335194181) +zone = ('ndz004', 0.0006697341442495593) + +[fips3800976260] +centroid = (0.84964834083258478, -1.7581352388616949) +description = Stone Creek township, ND +station = ('kmot', 0.0096333646466672945) +zone = ('ndz004', 0.0022496736617727258) + +[fips3800977740] +centroid = (0.84943029684913318, -1.7602084631202615) +description = Tacoma township, ND +station = ('kmot', 0.0086085958294334092) +zone = ('ndz004', 0.0021636007579316796) + +[fips3800983980] +centroid = (0.8542374746611936, -1.7655351207308858) +description = Wayne township, ND +station = ('kmib', 0.0094701105666317696) +zone = ('ndz004', 0.0045718424803581157) + +[fips3800984340] +centroid = (0.84790362244582873, -1.7488254606453395) +description = Wellington township, ND +station = ('krug', 0.003901561976033354) +zone = ('ndz005', 0.005316239392138964) + +[fips3800985020] +centroid = (0.85365945651951824, -1.7630910663661481) +description = Westhope city, ND +station = ('kmib', 0.0094413006168503899) +zone = ('ndz004', 0.0029642003640644983) + +[fips3800985260] +centroid = (0.8542373873947311, -1.7701216191123239) +description = Wheaton township, ND +station = ('kmib', 0.0092429115818799656) +zone = ('ndz003', 0.0047825405649103434) + +[fips3800985420] +centroid = (0.85107430973804921, -1.7565519110708707) +description = Whitby township, ND +station = ('krug', 0.0096574327842647942) +zone = ('ndz004', 0.0022491316891729697) + +[fips3800985860] +centroid = (0.85264990572028709, -1.7519070837858308) +description = Whitteron township, ND +station = ('krug', 0.0090412662251246195) +zone = ('ndz004', 0.0053544474207353823) + +[fips3800986380] +centroid = (0.84830838175265866, -1.7504478489048234) +description = Willow City city, ND +station = ('krug', 0.0048588472456666653) +zone = ('ndz004', 0.0070320306235055847) + +[fips3800986500] +centroid = (0.84965113335938802, -1.7514914161711759) +description = Willow Vale township, ND +station = ('krug', 0.0063399469317119263) +zone = ('ndz004', 0.0058578138045287335) + +[fips38011] +centroid = (0.8047330430240891, -1.8065307231986674) +description = Bowman County, ND +station = ('k2wx', 0.0088786020352747096) +zone = ('ndz043', 0.00019016591696768611) + +[fips3801100540] +centroid = (0.80569079245112096, -1.8095109950694952) +description = Adelaide township, ND +station = ('kbhk', 0.0076449870464802812) +zone = ('ndz043', 0.0020863544627578398) + +[fips3801102140] +centroid = (0.80418544597127584, -1.8073765446607688) +description = Amor township, ND +station = ('k2wx', 0.0083155336013385536) +zone = ('ndz043', 0.0007558474408247076) + +[fips3801108700] +centroid = (0.8060546936001618, -1.8046847059021256) +description = Bowman city, ND +station = ('k2wx', 0.0103445275997539) +zone = ('ndz043', 0.0019062806496621333) + +[fips3801108740] +centroid = (0.8055730525397814, -1.8054431212752873) +description = Bowman township, ND +station = ('k2wx', 0.0097875895198685069) +zone = ('ndz043', 0.0011943835266314464) + +[fips3801108820] +centroid = (0.80424485697901382, -1.8029975135675151) +description = Boyesen township, ND +station = ('k2wx', 0.0088922344906938577) +zone = ('ndz043', 0.0026825799724073691) + +[fips3801110380] +centroid = (0.80709244892010523, -1.7986957307469547) +description = Buena Vista township, ND +station = ('khei', 0.0063181083782125926) +zone = ('ndz044', 0.0068854948684532883) + +[fips3801126540] +centroid = (0.80568375877423548, -1.7983267855963756) +description = Fischbein township, ND +station = ('khei', 0.0053244552959563476) +zone = ('ndz044', 0.0062500478400008865) + +[fips3801129540] +centroid = (0.80492796139495182, -1.7990637334197377) +description = Gascoyne city, ND +station = ('khei', 0.0054903990821583062) +zone = ('ndz044', 0.0066694797113894802) + +[fips3801129580] +centroid = (0.8039172063185368, -1.7985170613914281) +description = Gascoyne township, ND +station = ('khei', 0.0048771124228968957) +zone = ('ndz044', 0.0063136909092210251) + +[fips3801129740] +centroid = (0.80413685600490037, -1.805016266100127) +description = Gem township, ND +station = ('k2wx', 0.0084169202257658414) +zone = ('ndz043', 0.001397584277652381) + +[fips3801131300] +centroid = (0.80264329049750627, -1.8008873406886841) +description = Goldfield township, ND +station = ('k2wx', 0.0081113809066956123) +zone = ('ndz043', 0.004629499519418565) + +[fips3801131940] +centroid = (0.80717063967059444, -1.8030681470423433) +description = Grainbelt township, ND +station = ('kdik', 0.011412235477426225) +zone = ('ndz043', 0.003483649298581372) + +[fips3801132460] +centroid = (0.80278480179325795, -1.8074876697742432) +description = Grand River township, ND +station = ('k2wx', 0.0069160578240132662) +zone = ('ndz043', 0.0020908824965858957) + +[fips3801134260] +centroid = (0.80268133867519975, -1.7986033504696466) +description = Haley township, ND +station = ('khei', 0.0048999221633647437) +zone = ('ndz044', 0.0066138741734653363) + +[fips3801135780] +centroid = (0.80555788562858166, -1.807408571452543) +description = Hart UT, ND +station = ('kbhk', 0.0090303411446294637) +zone = ('ndz043', 0.000860740994448416) + +[fips3801143700] +centroid = (0.80253075166733767, -1.8054059457622198) +description = Ladd township, ND +station = ('k2wx', 0.0067887202377840206) +zone = ('ndz043', 0.0024761197351432273) + +[fips3801144740] +centroid = (0.80274823714542864, -1.8095405609470241) +description = Langberg township, ND +station = ('k2wx', 0.007055045668468176) +zone = ('ndz043', 0.0028207483627779605) + +[fips3801150740] +centroid = (0.80682461069309408, -1.8068603460811989) +description = Marion township, ND +station = ('kbhk', 0.0089953881093865207) +zone = ('ndz043', 0.0020087422742806164) + +[fips3801153140] +centroid = (0.80249430919255604, -1.8027300767662322) +description = Minnehaha township, ND +station = ('k2wx', 0.0073472736637494335) +zone = ('ndz043', 0.003644659377966326) + +[fips3801155580] +centroid = (0.80421447079673647, -1.8094860368611918) +description = Nebo township, ND +station = ('kbhk', 0.0084018523139889334) +zone = ('ndz043', 0.0019727379051434181) + +[fips3801166300] +centroid = (0.80694622523537307, -1.809123881041403) +description = Rhame city, ND +station = ('kbhk', 0.0074509554325514924) +zone = ('ndz043', 0.0026787856003617091) + +[fips3801166340] +centroid = (0.80704993269952652, -1.8097724279381517) +description = Rhame township, ND +station = ('kbhk', 0.0069911566359951291) +zone = ('ndz043', 0.0030478282692003996) + +[fips3801171500] +centroid = (0.80541173175701963, -1.8001800111027282) +description = Scranton city, ND +station = ('khei', 0.0063820165438242078) +zone = ('ndz043', 0.0046104993583366075) + +[fips3801171540] +centroid = (0.80581366363046136, -1.8008131641954743) +description = Scranton township, ND +station = ('khei', 0.0069376458152820503) +zone = ('ndz043', 0.0042508480715289804) + +[fips3801175460] +centroid = (0.80706944548056381, -1.8051310214984455) +description = Star township, ND +station = ('k2wx', 0.011299416126107228) +zone = ('ndz043', 0.0025246672925233445) + +[fips3801176140] +centroid = (0.8071142131758775, -1.8008083121801535) +description = Stillwater township, ND +station = ('khei', 0.0075280935672465722) +zone = ('ndz043', 0.0047285273032032348) + +[fips3801177060] +centroid = (0.80565431506975438, -1.8143815981465734) +description = Sunny Slope township, ND +station = ('kbhk', 0.0048457783641144541) +zone = ('mtz033', 0.0063339268623877638) + +[fips3801177900] +centroid = (0.80576271746959571, -1.8029965885430117) +description = Talbot township, ND +station = ('k2wx', 0.010333868369108918) +zone = ('ndz043', 0.0027850876440799421) + +[fips3801180] +centroid = (0.83493090427502026, -1.8088844218680293) +description = Alexander city, ND +station = ('kisn', 0.0060277350709812732) +zone = ('ndz017', 0.0033534249964209777) + +[fips3801184650] +centroid = (0.80458020454149193, -1.8130075004264783) +description = West Bowman UT, ND +station = ('kbhk', 0.0062765253306636343) +zone = ('ndz043', 0.004326208147648487) + +[fips3801185780] +centroid = (0.80422914901574583, -1.8007909112475111) +description = Whiting township, ND +station = ('khei', 0.006484288544065752) +zone = ('ndz043', 0.0041924952987863143) + +[fips38013] +centroid = (0.85148423521946515, -1.789313067581036) +description = Burke County, ND +station = ('kd60', 0.0083212489498523199) +zone = ('ndz002', 8.0288840714831059e-05) + +[fips3801305380] +centroid = (0.84815149410619695, -1.7946255531181339) +description = Battleview township, ND +station = ('kd60', 0.0038501758970122374) +zone = ('ndz002', 0.0049063602905184489) + +[fips3801308500] +centroid = (0.85178116808510695, -1.7845496451733229) +description = Bowbells city, ND +station = ('k08d', 0.0089633816525023554) +zone = ('ndz002', 0.0031249513128811814) + +[fips3801308540] +centroid = (0.85096227705336369, -1.7838510596869197) +description = Bowbells township, ND +station = ('k08d', 0.0082804098512712122) +zone = ('ndz002', 0.0036289670216440952) + +[fips3801312500] +centroid = (0.85269997921652685, -1.7861737264021811) +description = Carter township, ND +station = ('k08d', 0.0097214800769967486) +zone = ('ndz002', 0.002341553332634277) + +[fips3801314300] +centroid = (0.85099025468127321, -1.7887674427502775) +description = Clayton township, ND +station = ('k08d', 0.0080383496649954426) +zone = ('ndz002', 0.00066457467360610972) + +[fips3801314500] +centroid = (0.84972133050190324, -1.7919194899260869) +description = Cleary township, ND +station = ('kd60', 0.0059427716748733242) +zone = ('ndz002', 0.0025324676986416663) + +[fips3801315460] +centroid = (0.85355203150405801, -1.7938720421201702) +description = Columbus city, ND +station = ('cyen', 0.0058392653099822922) +zone = ('ndz002', 0.0036172975391913498) + +[fips3801315500] +centroid = (0.84807337316887765, -1.7923314574427274) +description = Colville township, ND +station = ('kd60', 0.0043731371514084206) +zone = ('ndz002', 0.0040276511980671765) + +[fips3801317740] +centroid = (0.85263473880908736, -1.7885524007331393) +description = Dale township, ND +station = ('cyen', 0.0084783502980932453) +zone = ('ndz002', 0.0011754874352452604) + +[fips3801319660] +centroid = (0.84995092856500298, -1.7875017648833162) +description = Dimond township, ND +station = ('k08d', 0.0069433029250423137) +zone = ('ndz002', 0.0019932261325021758) + +[fips3801325940] +centroid = (0.85255654805859793, -1.79297684529353) +description = Fay township, ND +station = ('kd50', 0.006660097918499158) +zone = ('ndz002', 0.0026283821981957713) + +[fips3801326700] +centroid = (0.85341758879177687, -1.7870956267663771) +description = Flaxton city, ND +station = ('cyen', 0.0086096934341589656) +zone = ('ndz002', 0.0023481685612299226) + +[fips3801326940] +centroid = (0.85105071288656231, -1.790747518786665) +description = Foothills township, ND +station = ('kd60', 0.0074780270976589156) +zone = ('ndz002', 0.0010927689360246673) + +[fips3801327460] +centroid = (0.85426114132585074, -1.7954144768466203) +description = Forthun township, ND +station = ('cyen', 0.0048599193498910119) +zone = ('ndz002', 0.0048537709614173332) + +[fips3801329380] +centroid = (0.84818587709246118, -1.7894988404266181) +description = Garness township, ND +station = ('k08d', 0.0053736820584903639) +zone = ('ndz002', 0.0033790091234815202) + +[fips3801335540] +centroid = (0.85121871828035922, -1.7957783256357835) +description = Harmonious township, ND +station = ('kd50', 0.0054186242550399973) +zone = ('ndz002', 0.0042944817546253277) + +[fips3801341280] +centroid = (0.8479350383723645, -1.7858152008672366) +description = Kandiyohi township, ND +station = ('k08d', 0.0050277290497488681) +zone = ('ndz002', 0.0042885241782074637) + +[fips3801341660] +centroid = (0.85259702224395173, -1.7954581973443826) +description = Keller township, ND +station = ('kd50', 0.0050660175289288711) +zone = ('ndz002', 0.0041962900426959389) + +[fips3801344020] +centroid = (0.85300888504083738, -1.7812773448120514) +description = Lakeview township, ND +station = ('k08d', 0.010771632366300727) +zone = ('ndz002', 0.005464175981159892) + +[fips3801345420] +centroid = (0.85096674509624881, -1.7934022867519961) +description = Leaf Mountain township, ND +station = ('kd60', 0.0067762852230653283) +zone = ('ndz002', 0.0027799274400464153) + +[fips3801346540] +centroid = (0.85307265937170518, -1.7900847823630976) +description = Lignite city, ND +station = ('cyen', 0.0074990019360662548) +zone = ('ndz002', 0.0016005814263378212) + +[fips3801348420] +centroid = (0.84981678255869475, -1.7898251122769859) +description = Lucy township, ND +station = ('kd60', 0.0067509630285616119) +zone = ('ndz002', 0.0017814597382059684) + +[fips3801353180] +centroid = (0.85273186638196075, -1.7834636140462694) +description = Minnesota township, ND +station = ('k08d', 0.010053887492741463) +zone = ('ndz002', 0.0040052618920860617) + +[fips3801357715] +centroid = (0.85374424461458009, -1.7823363582422838) +description = North Burke UT, ND +station = ('k08d', 0.011231660598078536) +zone = ('ndz002', 0.0050644117004152011) + +[fips3801358140] +centroid = (0.85422644418032112, -1.78394968824295) +description = North Star township, ND +station = ('k08d', 0.011438060165126831) +zone = ('ndz002', 0.0044048719161685519) + +[fips3801363740] +centroid = (0.85513602251999798, -1.7897904674913339) +description = Portal city, ND +station = ('cyen', 0.0061497883805465081) +zone = ('ndz002', 0.0035897796048924287) + +[fips3801363780] +centroid = (0.85425100096289663, -1.7907257545308926) +description = Portal township, ND +station = ('cyen', 0.006321142855653732) +zone = ('ndz002', 0.0028519478396221562) + +[fips3801364140] +centroid = (0.84759483879456587, -1.7914659835732485) +description = Powers Lake city, ND +station = ('kd60', 0.0043451673882292062) +zone = ('ndz002', 0.0042210190681417599) + +[fips3801366580] +centroid = (0.85425079152338645, -1.7861428689810059) +description = Richland township, ND +station = ('cyen', 0.0086059867527473327) +zone = ('ndz002', 0.0033902681115727685) + +[fips3801368340] +centroid = (0.84971195808381994, -1.7854123614225836) +description = Roseland township, ND +station = ('k08d', 0.0068226191289580199) +zone = ('ndz002', 0.0031519211376199088) + +[fips3801372740] +centroid = (0.85422906217419903, -1.7930558912553525) +description = Short Creek township, ND +station = ('cyen', 0.0054530815328227237) +zone = ('ndz002', 0.0036437791163565873) + +[fips3801373900] +centroid = (0.85422241246974895, -1.7884829017223247) +description = Soo township, ND +station = ('cyen', 0.0073938333417679835) +zone = ('ndz002', 0.0027119769136286025) + +[fips3801378780] +centroid = (0.84981856279453183, -1.7940387036104433) +description = Thorson township, ND +station = ('kd60', 0.0055617205843918041) +zone = ('ndz002', 0.003588805790654064) + +[fips3801381020] +centroid = (0.85264658959470829, -1.790774239777513) +description = Vale township, ND +station = ('cyen', 0.0075838040169000477) +zone = ('ndz002', 0.0014635938206713252) + +[fips3801381500] +centroid = (0.84815299508935371, -1.787534018567893) +description = Vanville township, ND +station = ('k08d', 0.0051462249381086867) +zone = ('ndz002', 0.0035988072605370055) + +[fips3801383420] +centroid = (0.85096028737801643, -1.7861484365813198) +description = Ward township, ND +station = ('k08d', 0.0079900338177146396) +zone = ('ndz002', 0.0021508836762901356) + +[fips3801420] +centroid = (0.81611583605950089, -1.7026736319683908) +description = Alice city, ND +station = ('kbac', 0.0063567957885692352) +zone = ('ndz039', 0.0047568801380849703) + +[fips38015] +centroid = (0.81981331607985086, -1.7533926905918358) +description = Burleigh County, ND +station = ('kbis', 0.0047571442134583921) +zone = ('ndz035', 0.0001263425276164313) + +[fips3801502780] +centroid = (0.81593484541606909, -1.7563930686556468) +description = Apple Creek township, ND +station = ('kbis', 0.0015074217760499521) +zone = ('ndz035', 0.0044369450466172468) + +[fips3801507200] +centroid = (0.8170067393761814, -1.7587700674705229) +description = Bismarck city, ND +station = ('kbis', 0.00053990428937803153) +zone = ('ndz035', 0.0046199643409068659) + +[fips3801508780] +centroid = (0.81620456859867219, -1.7544211607601585) +description = Boyd township, ND +station = ('kbis', 0.0027566485055976614) +zone = ('ndz035', 0.0037575698956725436) + +[fips3801511045] +centroid = (0.81937853710988651, -1.7593451883656401) +description = Burnt Creek-Riverview UT, ND +station = ('kbis', 0.0029246803089556413) +zone = ('ndz035', 0.0040168321639551547) + +[fips3801511940] +centroid = (0.82344372309704672, -1.7522851570083979) +description = Canfield township, ND +station = ('kbis', 0.0080874194948570947) +zone = ('ndz035', 0.0036307476866294878) + +[fips3801514060] +centroid = (0.81947658970726367, -1.7497811331305615) +description = Christiania township, ND +station = ('kbis', 0.0066030032076220763) +zone = ('ndz035', 0.0025823542656759073) + +[fips3801514380] +centroid = (0.81934464281581276, -1.74760273533127) +description = Clear Lake township, ND +station = ('kbis', 0.0079154526686825502) +zone = ('ndz036', 0.0042159490618812485) + +[fips3801516860] +centroid = (0.82076595169217448, -1.7573020012235003) +description = Crofte township, ND +station = ('kbis', 0.0043108638187249332) +zone = ('ndz035', 0.0027230461922764025) + +[fips3801516900] +centroid = (0.82075867366919353, -1.7550822391209366) +description = Cromwell township, ND +station = ('kbis', 0.0048100946266109931) +zone = ('ndz035', 0.0013665382822526247) + +[fips3801520540] +centroid = (0.81764804315653417, -1.7477489066561245) +description = Driscoll township, ND +station = ('kbis', 0.007388328774047691) +zone = ('ndz036', 0.0048593340448612535) + +[fips3801521860] +centroid = (0.82228306169117793, -1.7578537521599333) +description = Ecklund township, ND +station = ('kbis', 0.0057727807711450219) +zone = ('ndz035', 0.0037928331604263213) + +[fips3801524940] +centroid = (0.82381299986018364, -1.7550866373506515) +description = Estherville township, ND +station = ('kbis', 0.0076359847349605605) +zone = ('ndz035', 0.004047391764399829) + +[fips3801526860] +centroid = (0.8251781789478011, -1.7504552141942669) +description = Florence Lake township, ND +station = ('k5h4', 0.0099002538388101146) +zone = ('ndz022', 0.0052053973468787788) + +[fips3801528100] +centroid = (0.81923763667937299, -1.7543758869193617) +description = Francis township, ND +station = ('kbis', 0.003874499090234235) +zone = ('ndz035', 0.00089479882868163517) + +[fips3801530100] +centroid = (0.82227096655946164, -1.7550905817947609) +description = Ghylin township, ND +station = ('kbis', 0.0061806345387770342) +zone = ('ndz035', 0.0025943714093963704) + +[fips3801530140] +centroid = (0.81782864982753056, -1.7564464757307579) +description = Gibbs township, ND +station = ('kbis', 0.0018778894844534008) +zone = ('ndz035', 0.0028900871635401146) + +[fips3801530900] +centroid = (0.82055932216203076, -1.7600014845242673) +description = Glenview township, ND +station = ('kbis', 0.0041784117174381765) +zone = ('ndz035', 0.0044739107396980218) + +[fips3801532740] +centroid = (0.82386593569639655, -1.7571117777883256) +description = Grass Lake township, ND +station = ('kbis', 0.0073966882673016958) +zone = ('ndz035', 0.0046535902927039973) + +[fips3801535670] +centroid = (0.82161980166883508, -1.7486072595822553) +description = Harriet-Lien township, ND +station = ('kbis', 0.0084185846935766109) +zone = ('ndz035', 0.0037546726154531048) + +[fips3801536460] +centroid = (0.81804271446028765, -1.7592617441741021) +description = Hay Creek township, ND +station = ('kbis', 0.0016251840120941436) +zone = ('ndz035', 0.0043487737710231917) + +[fips3801536660] +centroid = (0.82547313959138813, -1.7483868244977283) +description = Hazel Grove township, ND +station = ('k5h4', 0.0091030273446285823) +zone = ('ndz022', 0.0052731086301166163) + +[fips3801546640] +centroid = (0.81624476353134567, -1.7575762971687439) +description = Lincoln city, ND +station = ('kbis', 0.000640926228940926) +zone = ('ndz035', 0.0045998279446872979) + +[fips3801546710] +centroid = (0.81537632260213833, -1.7583548536414735) +description = Lincoln-Fort Rice UT, ND +station = ('kbis', 0.0011477268060075263) +zone = ('ndz035', 0.0056152204003835169) + +[fips3801547500] +centroid = (0.81631955088979358, -1.7522959431431753) +description = Logan township, ND +station = ('kbis', 0.0041983636859442225) +zone = ('ndz035', 0.0036856237981327047) + +[fips3801547860] +centroid = (0.81457404710487413, -1.7501323631892329) +description = Long Lake township, ND +station = ('kbis', 0.0060054834906818014) +zone = ('ndz035', 0.0058155857674716156) + +[fips3801548620] +centroid = (0.82062177004266712, -1.7505191456047673) +description = Lyman UT, ND +station = ('kbis', 0.0067775120175324784) +zone = ('ndz035', 0.0021612291153133836) + +[fips3801549380] +centroid = (0.81770733199122447, -1.7520249807768029) +description = McKenzie township, ND +station = ('kbis', 0.0045331391462677525) +zone = ('ndz035', 0.0024256914929650145) + +[fips3801552220] +centroid = (0.81771834501880447, -1.7545545562748885) +description = Menoken township, ND +station = ('kbis', 0.002902188455356427) +zone = ('ndz035', 0.002304881471741879) + +[fips3801553620] +centroid = (0.81485525455395547, -1.7564960954413922) +description = Missouri township, ND +station = ('kbis', 0.0021258626591879027) +zone = ('ndz035', 0.0054518872304421904) + +[fips3801554460] +centroid = (0.81455163707727851, -1.7520571995547947) +description = Morton township, ND +station = ('kbis', 0.0047859700741393098) +zone = ('ndz035', 0.0054502585728881661) + +[fips3801555540] +centroid = (0.81924447837004089, -1.7565843741949578) +description = Naughton township, ND +station = ('kbis', 0.0029965618171626219) +zone = ('ndz035', 0.0022005737439222098) + +[fips3801560580] +centroid = (0.82232179054727972, -1.7607091631760736) +description = Painted Woods township, ND +station = ('kbis', 0.0060056005375042666) +zone = ('ndz035', 0.0054653877143612554) + +[fips3801562160] +centroid = (0.82337338632819135, -1.7485896841166875) +description = Phoenix UT, ND +station = ('kbis', 0.0095863645035047171) +zone = ('ndz035', 0.0048194548258777828) + +[fips3801565980] +centroid = (0.82304074402605376, -1.7545316750083948) +description = Regan city, ND +station = ('kbis', 0.0070367263006707835) +zone = ('ndz035', 0.0032066575912800101) + +[fips3801566635] +centroid = (0.82364347602993737, -1.750761292585189) +description = Richmond township, ND +station = ('kbis', 0.0088310371361242923) +zone = ('ndz035', 0.0041764928912170259) + +[fips3801567420] +centroid = (0.82227602801429245, -1.7528652520918833) +description = Rock Hill township, ND +station = ('kbis', 0.0068898535522337653) +zone = ('ndz035', 0.0024063429083300996) + +[fips3801571220] +centroid = (0.82544090336010378, -1.7525449667208497) +description = Schrunk township, ND +station = ('kbis', 0.0097750440288952509) +zone = ('ndz022', 0.0049713890728460544) + +[fips3801572900] +centroid = (0.8193565110547264, -1.7518002696356088) +description = Sibley Butte township, ND +station = ('kbis', 0.005339301476167786) +zone = ('ndz035', 0.0012924541116467383) + +[fips3801575820] +centroid = (0.82525500834147381, -1.7548920156857615) +description = Steiber township, ND +station = ('kbis', 0.0090566931823914676) +zone = ('ndz035', 0.0054266149087805757) + +[fips3801575940] +centroid = (0.81770874570791863, -1.7499908169868963) +description = Sterling township, ND +station = ('kbis', 0.0058883557993560454) +zone = ('ndz035', 0.0032603899466367792) + +[fips3801577780] +centroid = (0.81631740413481357, -1.7498326377967879) +description = Taft township, ND +station = ('kbis', 0.0058839757849173651) +zone = ('ndz035', 0.0043855391246252536) + +[fips3801578300] +centroid = (0.81481031232571655, -1.7540695990889292) +description = Telfer township, ND +station = ('kbis', 0.0034382076574044204) +zone = ('ndz035', 0.005114272002824871) + +[fips3801578580] +centroid = (0.81587998971767883, -1.7472798319663585) +description = Thelma township, ND +station = ('kbis', 0.0076574496012113248) +zone = ('ndz036', 0.0056836947641863431) + +[fips3801579820] +centroid = (0.82075390892033562, -1.7528653393583458) +description = Trygg township, ND +station = ('kbis', 0.0056830455240787789) +zone = ('ndz035', 0.00095171962427603003) + +[fips3801585980] +centroid = (0.81453299696086723, -1.7476660558765322) +description = Wild Rose township, ND +station = ('kbis', 0.0076350513787018038) +zone = ('ndz035', 0.0067016718245077834) + +[fips3801586540] +centroid = (0.82514020058327775, -1.7574596044549555) +description = Wilson township, ND +station = ('kbis', 0.0086417872948713042) +zone = ('ndz035', 0.0058794424770463038) + +[fips3801586580] +centroid = (0.82300562800150368, -1.7589793324478371) +description = Wilton city, ND +station = ('kbis', 0.0064936844177114076) +zone = ('ndz035', 0.0048428440908397539) + +[fips3801586780] +centroid = (0.82279142374240632, -1.7502711343180588) +description = Wing city, ND +station = ('kbis', 0.0083793195840601003) +zone = ('ndz035', 0.0036294912613272978) + +[fips3801586820] +centroid = (0.82238940460250198, -1.7510137719147825) +description = Wing township, ND +station = ('kbis', 0.007743769233229442) +zone = ('ndz035', 0.0030070031351718883) + +[fips38017] +centroid = (0.81903071044325659, -1.6973741491342205) +description = Cass County, ND +station = ('kfar', 0.0051942303237819025) +zone = ('ndz039', 0.00011641054937011624) + +[fips3801700] +centroid = (0.81556469598830605, -1.7715422124036921) +description = Almont city, ND +station = ('kbis', 0.0090415840163742666) +zone = ('ndz034', 0.0026504723927787493) + +[fips3801700500] +centroid = (0.81611979795690281, -1.6949918794250032) +description = Addison township, ND +station = ('kfar', 0.0046782933256478872) +zone = ('ndz039', 0.0034036511804697409) + +[fips3801701420] +centroid = (0.81611583605950089, -1.7026736319683908) +description = Alice city, ND +station = ('kbac', 0.0063567957885692352) +zone = ('ndz039', 0.0047568801380849703) + +[fips3801701940] +centroid = (0.82042374498573589, -1.696882105911498) +description = Amenia city, ND +station = ('kfar', 0.0050200253528758579) +zone = ('ndz039', 0.0013194801057370405) + +[fips3801701980] +centroid = (0.82076682435680037, -1.6976943821453763) +description = Amenia township, ND +station = ('kfar', 0.0056458089700339329) +zone = ('ndz039', 0.0016535376195380438) + +[fips3801703020] +centroid = (0.82117828572795803, -1.6919773816475436) +description = Argusville city, ND +station = ('kfar', 0.0025332926616048242) +zone = ('ndz039', 0.0041656143352753455) + +[fips3801703300] +centroid = (0.82212496976753235, -1.6967834249955904) +description = Arthur city, ND +station = ('kfar', 0.0056362862644991135) +zone = ('ndz039', 0.0030102272200327857) + +[fips3801703340] +centroid = (0.82219312487482266, -1.6975525392370667) +description = Arthur township, ND +station = ('kfar', 0.0061209903158150909) +zone = ('ndz039', 0.0030626078018219016) + +[fips3801704020] +centroid = (0.82102354483647622, -1.7015383476498462) +description = Ayr city, ND +station = ('kbac', 0.006513574373740989) +zone = ('ndz039', 0.0034534446927477476) + +[fips3801704060] +centroid = (0.82068133813003774, -1.7019620961389377) +description = Ayr township, ND +station = ('kbac', 0.0061495991012186398) +zone = ('ndz039', 0.0035369575813926414) + +[fips3801704900] +centroid = (0.81801224101154779, -1.691632818746615) +description = Barnes township, ND +station = ('kfar', 0.0017015359744727138) +zone = ('mnz003', 0.0051800346672010679) + +[fips3801705900] +centroid = (0.82371276560124163, -1.695302949457586) +description = Bell township, ND +station = ('kfar', 0.0059250236138204309) +zone = ('ndz030', 0.0045312164735620856) + +[fips3801706260] +centroid = (0.82064175406260242, -1.6931370831223238) +description = Berlin township, ND +station = ('kfar', 0.0027442275686593515) +zone = ('ndz039', 0.0032148183634056657) + +[fips3801709320] +centroid = (0.81658852358081846, -1.6893948528599527) +description = Briarwood city, ND +station = ('kjkj', 0.0018214809456597965) +zone = ('mnz003', 0.0040747021808821594) + +[fips3801710420] +centroid = (0.81891384319654303, -1.7025760506099119) +description = Buffalo city, ND +station = ('kbac', 0.0055853182197941791) +zone = ('ndz039', 0.0036103122104755954) + +[fips3801710460] +centroid = (0.81923067281565753, -1.7013794703280372) +description = Buffalo township, ND +station = ('kbac', 0.006389707110658554) +zone = ('ndz039', 0.0027874819939428374) + +[fips3801712700] +centroid = (0.818509956554339, -1.6966730503736942) +description = Casselton city, ND +station = ('kfar', 0.0047576585118201562) +zone = ('ndz039', 0.00075781609318986286) + +[fips3801712740] +centroid = (0.81918381072524149, -1.6971963698966122) +description = Casselton township, ND +station = ('kfar', 0.0050714158009254485) +zone = ('ndz039', 8.548882282191693e-05) + +[fips3801714780] +centroid = (0.81599387245137156, -1.7039545116531369) +description = Clifton township, ND +station = ('kbac', 0.0056835371899145578) +zone = ('ndz049', 0.0051929111254011744) + +[fips3801716100] +centroid = (0.82068657411779378, -1.7041796765799369) +description = Cornell township, ND +station = ('kbac', 0.0046909755981310039) +zone = ('ndz039', 0.0049438745925436652) + +[fips3801718180] +centroid = (0.81532916380574949, -1.6941031403165951) +description = Davenport city, ND +station = ('kfar', 0.0048294740513911373) +zone = ('ndz039', 0.004389838676784278) + +[fips3801718220] +centroid = (0.81459593353369408, -1.6949845141355597) +description = Davenport township, ND +station = ('kfar', 0.0057794166554610031) +zone = ('ndz039', 0.0048080833552679083) + +[fips3801720220] +centroid = (0.82371536614182705, -1.6997360683043592) +description = Dows township, ND +station = ('kbac', 0.0087093312512133546) +zone = ('ndz039', 0.0048714389488234231) + +[fips3801721100] +centroid = (0.81758138903240052, -1.6951608796564737) +description = Durbin township, ND +station = ('kfar', 0.0040010605032044996) +zone = ('ndz039', 0.0021333445562265879) + +[fips3801722860] +centroid = (0.81624406539964478, -1.7013954226374004) +description = Eldred township, ND +station = ('kbac', 0.007072157397084452) +zone = ('ndz039', 0.0040257228166694073) + +[fips3801724140] +centroid = (0.82054944359846449, -1.6995626872964662) +description = Empire township, ND +station = ('kbac', 0.007730039078064522) +zone = ('ndz039', 0.0020938545825689801) + +[fips3801724260] +centroid = (0.81385669932901183, -1.7034838487137518) +description = Enderlin city, ND +station = ('kgwr', 0.0072065761603376851) +zone = ('ndz049', 0.0031157248704115625) + +[fips3801724660] +centroid = (0.82225365289328178, -1.6995513775629132) +description = Erie township, ND +station = ('kbac', 0.0081857345280333862) +zone = ('ndz039', 0.0034756572119797055) + +[fips3801725020] +centroid = (0.8176316196082728, -1.697183838432583) +description = Everest township, ND +station = ('kfar', 0.005286973928875149) +zone = ('ndz039', 0.0015058355114931103) + +[fips3801725700] +centroid = (0.81795214932540161, -1.6899849486800518) +description = Fargo city, ND +station = ('kfar', 0.0011981158518930438) +zone = ('mnz003', 0.0040650025038941112) + +[fips3801725740] +centroid = (0.81932528711440811, -1.6893863181999105) +description = Fargo township, ND +station = ('kfar', 0.00031996387966240703) +zone = ('mnz003', 0.0037350339732810955) + +[fips3801728720] +centroid = (0.81682180428864004, -1.6900577987230303) +description = Frontier city, ND +station = ('kfar', 0.0023277456302667567) +zone = ('mnz003', 0.0043931316527987064) + +[fips3801729220] +centroid = (0.8228269411926844, -1.6924215330355912) +description = Gardner city, ND +station = ('kfar', 0.0041049983868370124) +zone = ('ndz039', 0.0049678013622197698) + +[fips3801729260] +centroid = (0.82218720820865843, -1.6930848105112266) +description = Gardner township, ND +station = ('kfar', 0.0037929139117383677) +zone = ('ndz039', 0.0041916223910745953) + +[fips3801730260] +centroid = (0.81756889247495623, -1.6991880872791107) +description = Gill township, ND +station = ('kbac', 0.0080754396704330166) +zone = ('ndz039', 0.0020297136815789875) + +[fips3801732300] +centroid = (0.82442723358383807, -1.6930155034866299) +description = Grandin city, ND +station = ('kfar', 0.0057294899872526511) +zone = ('ndz030', 0.0042433220347827009) + +[fips3801733820] +centroid = (0.82219410225920375, -1.6953001045709053) +description = Gunkel township, ND +station = ('kfar', 0.0048513415205101249) +zone = ('ndz039', 0.0033486986501093125) + +[fips3801735580] +centroid = (0.81927519616487599, -1.6951883336856077) +description = Harmony township, ND +station = ('kfar', 0.0037023314330135223) +zone = ('ndz039', 0.0014482981272269492) + +[fips3801735940] +centroid = (0.8198151312222729, -1.6908097214713744) +description = Harwood city, ND +station = ('kfar', 0.0009789128859361547) +zone = ('mnz003', 0.0048014893474129603) + +[fips3801735980] +centroid = (0.82065199914531173, -1.6908910712678098) +description = Harwood township, ND +station = ('kfar', 0.0016935221314560121) +zone = ('mnz003', 0.0051548756022698422) + +[fips3801737900] +centroid = (0.81469735461652748, -1.7013499044505083) +description = Highland township, ND +station = ('kbac', 0.0078902625086056492) +zone = ('ndz049', 0.0044299361285387159) + +[fips3801738060] +centroid = (0.81763867073845098, -1.7037701001643712) +description = Hill township, ND +station = ('kbac', 0.0050353174066334041) +zone = ('ndz039', 0.0046684039747567369) + +[fips3801738900] +centroid = (0.81603832598741977, -1.6913407204430011) +description = Horace city, ND +station = ('kfar', 0.0032836857027641162) +zone = ('mnz003', 0.0055132163415393129) + +[fips3801739140] +centroid = (0.81775789417965472, -1.7013879700814942) +description = Howes township, ND +station = ('kbac', 0.0065668710074768856) +zone = ('ndz039', 0.0031149771505682516) + +[fips3801739460] +centroid = (0.82362284623817883, -1.6967010803614815) +description = Hunter city, ND +station = ('kfar', 0.0065100148843624719) +zone = ('ndz039', 0.0045059483697249955) + +[fips3801739500] +centroid = (0.8238428798969778, -1.6976206070778945) +description = Hunter township, ND +station = ('kfar', 0.0071205205802382732) +zone = ('ndz030', 0.004561514476364029) + +[fips3801740] +centroid = (0.84876157394623164, -1.7227145147307561) +description = Alsen city, ND +station = ('kd55', 0.0041699880964792364) +zone = ('ndz007', 0.0037035728569282315) + +[fips3801742780] +centroid = (0.81418616513191089, -1.6932640907319914) +description = Kindred city, ND +station = ('kfar', 0.0055024033386659142) +zone = ('ndz039', 0.0056681803543224447) + +[fips3801742980] +centroid = (0.82370925748944512, -1.6930789636582324) +description = Kinyon township, ND +station = ('kfar', 0.005094001926612129) +zone = ('ndz030', 0.0048813615425246214) + +[fips3801743780] +centroid = (0.82206653614417557, -1.7041074723087817) +description = Lake township, ND +station = ('kbac', 0.0053115855493534635) +zone = ('ndz029', 0.0062844959584048548) + +[fips3801745980] +centroid = (0.81423651788083096, -1.6973314932873016) +description = Leonard city, ND +station = ('kfar', 0.007131517443224801) +zone = ('ndz039', 0.0048989088145269168) + +[fips3801746020] +centroid = (0.81460361298240291, -1.6971771538215479) +description = Leonard township, ND +station = ('kfar', 0.0068043653504958647) +zone = ('ndz039', 0.0045325390615982867) + +[fips3801750540] +centroid = (0.81612831516365258, -1.6971498394187541) +description = Maple River township, ND +station = ('kfar', 0.0058784858537535793) +zone = ('ndz039', 0.0030088051857474684) + +[fips3801750580] +centroid = (0.81840685995542373, -1.6938951319763427) +description = Mapleton city, ND +station = ('kfar', 0.0029123180531217749) +zone = ('ndz039', 0.002437050369758895) + +[fips3801750620] +centroid = (0.81755885683175722, -1.6926022444263427) +description = Mapleton township, ND +station = ('kfar', 0.0025003014231077822) +zone = ('ndz039', 0.0035764782458301333) + +[fips3801757020] +centroid = (0.82368960508206768, -1.6909944471194054) +description = Noble township, ND +station = ('kfar', 0.0046243005694671813) +zone = ('ndz030', 0.0055849768013326402) + +[fips3801757620] +centroid = (0.81462612772975362, -1.692760667962546) +description = Normanna township, ND +station = ('kfar', 0.0049575738589502927) +zone = ('ndz039', 0.005475925862499122) + +[fips3801758120] +centroid = (0.81943375932741969, -1.6895033250729643) +description = North River city, ND +station = ('kfar', 0.00034444845105241798) +zone = ('mnz003', 0.0038394590280204795) + +[fips3801760480] +centroid = (0.8145805222763991, -1.6895107427222851) +description = Oxbow city, ND +station = ('kjkj', 0.003356122117502434) +zone = ('mnz003', 0.0053507038001311619) + +[fips3801760500] +centroid = (0.82306135636451971, -1.7029272632152905) +description = Page city, ND +station = ('kbac', 0.0065301941787967071) +zone = ('ndz029', 0.0055160071115043187) + +[fips3801760540] +centroid = (0.8238435605753861, -1.701772640648634) +description = Page township, ND +station = ('kbac', 0.0076247369713837608) +zone = ('ndz029', 0.005134034561674326) + +[fips3801763100] +centroid = (0.81448667592251922, -1.6905042713989828) +description = Pleasant township, ND +station = ('kjkj', 0.0038135090491677585) +zone = ('mnz003', 0.0059065124779789742) + +[fips3801763580] +centroid = (0.8144754010955515, -1.703594397868573) +description = Pontiac township, ND +station = ('kbac', 0.0068529859668649369) +zone = ('ndz049', 0.0037098799609368281) + +[fips3801764320] +centroid = (0.81711271576836242, -1.6900921118961243) +description = Prairie Rose city, ND +station = ('kfar', 0.0020404250191377866) +zone = ('mnz003', 0.0043171381880588054) + +[fips3801765620] +centroid = (0.81928057177897207, -1.692600516550383) +description = Raymond township, ND +station = ('kfar', 0.0019379592489334214) +zone = ('ndz039', 0.0032117730290522964) + +[fips3801765860] +centroid = (0.81927915806227791, -1.6907261027469114) +description = Reed township, ND +station = ('kfar', 0.0006675085961538467) +zone = ('mnz003', 0.0046199026418700705) + +[fips3801766040] +centroid = (0.8190291396469298, -1.6906390980836994) +description = Reile's Acres city, ND +station = ('kfar', 0.00060424962330682039) +zone = ('mnz003', 0.0045220573084378555) + +[fips3801766460] +centroid = (0.82207351746118351, -1.7017747699503214) +description = Rich township, ND +station = ('kbac', 0.0067198838371442362) +zone = ('ndz039', 0.0042357957222424001) + +[fips3801767260] +centroid = (0.82372580321075406, -1.7041780359704399) +description = Rochester township, ND +station = ('kbac', 0.0063051728725980463) +zone = ('ndz029', 0.004644812555364552) + +[fips3801769020] +centroid = (0.82075073242109708, -1.6954938710244618) +description = Rush River township, ND +station = ('kfar', 0.0042241037308217294) +zone = ('ndz039', 0.0020315119448509563) + +[fips3801775340] +centroid = (0.81600050470252905, -1.6902139882377911) +description = Stanley township, ND +station = ('kjkj', 0.0026114276242329717) +zone = ('mnz003', 0.0048488145545977183) + +[fips3801779300] +centroid = (0.819291375367042, -1.7035917275148174) +description = Tower township, ND +station = ('kbac', 0.004878954055081387) +zone = ('ndz039', 0.0042991112134828082) + +[fips3801779340] +centroid = (0.81903341570359711, -1.7046894698011519) +description = Tower City city, ND +station = ('kbac', 0.0041372009867993408) +zone = ('ndz039', 0.005047538151956024) + +[fips3801782740] +centroid = (0.81623282547926213, -1.6992870474476987) +description = Walburg township, ND +station = ('kbac', 0.0084015633577583168) +zone = ('ndz039', 0.0032050674082423221) + +[fips3801783500] +centroid = (0.81600848085721067, -1.6929697235003502) +description = Warren township, ND +station = ('kfar', 0.0038216459589350484) +zone = ('ndz039', 0.0043067773313815718) + +[fips3801783940] +centroid = (0.81459518304211576, -1.6993785899669658) +description = Watson township, ND +station = ('kgwr', 0.0085955076921771494) +zone = ('ndz039', 0.0047580100279266801) + +[fips3801784780] +centroid = (0.81779597726393316, -1.6913122715761937) +description = West Fargo city, ND +station = ('kfar', 0.0017090577965977003) +zone = ('mnz003', 0.004984963527076427) + +[fips3801785220] +centroid = (0.81928064159214209, -1.6995503827252396) +description = Wheatland township, ND +station = ('kbac', 0.0076381673420681641) +zone = ('ndz039', 0.0015437276834421236) + +[fips3801786980] +centroid = (0.82216516470020573, -1.6909239009110397) +description = Wiser township, ND +station = ('kfar', 0.0031246843960766033) +zone = ('mnz003', 0.0059808135273456903) + +[fips3801860] +centroid = (0.8544432315267112, -1.8060840759897894) +description = Ambrose city, ND +station = ('kd50', 0.0021602243702485624) +zone = ('ndz001', 0.0024635654208701985) + +[fips38019] +centroid = (0.85116983160801085, -1.7185173294922675) +description = Cavalier County, ND +station = ('kd55', 0.00085089888972643283) +zone = ('ndz007', 6.7101280648171945e-05) + +[fips3801901660] +centroid = (0.84952274693961127, -1.7125517242957808) +description = Alma township, ND +station = ('kd55', 0.0034183722816952377) +zone = ('ndz007', 0.004304810661176839) + +[fips3801901740] +centroid = (0.84876157394623164, -1.7227145147307561) +description = Alsen city, ND +station = ('kd55', 0.0041699880964792364) +zone = ('ndz007', 0.0037035728569282315) + +[fips3801904660] +centroid = (0.84788416202466899, -1.7241399425841524) +description = Banner township, ND +station = ('kd55', 0.0054364285944585857) +zone = ('ndz007', 0.0049911835664043407) + +[fips3801906940] +centroid = (0.8478703913768707, -1.7194633677600184) +description = Billings township, ND +station = ('kd55', 0.0033529520693033358) +zone = ('ndz007', 0.0034200557648453082) + +[fips3801909900] +centroid = (0.85117409021138579, -1.7264518406179288) +description = Bruce township, ND +station = ('kd55', 0.0060440270537961173) +zone = ('ndz006', 0.0040396817095013308) + +[fips3801911460] +centroid = (0.85406910274825387, -1.7240518732700967) +description = Byron township, ND +station = ('cwpo', 0.0048289271674319591) +zone = ('ndz007', 0.0046032705423760178) + +[fips3801911580] +centroid = (0.84864479396598058, -1.7268006097623552) +description = Calio city, ND +station = ('k9d7', 0.0042601650209006404) +zone = ('ndz006', 0.0037061056526286615) + +[fips3801911700] +centroid = (0.85262515695149388, -1.726795042162041) +description = Calvin city, ND +station = ('cwpo', 0.0060924319023879609) +zone = ('ndz006', 0.0045777930624472211) + +[fips3801917580] +centroid = (0.85412132299947352, -1.7263051631475912) +description = Cypress township, ND +station = ('cwpo', 0.0045820959339130619) +zone = ('ndz006', 0.0058516044294042117) + +[fips3801920460] +centroid = (0.854205395509542, -1.719668548666883) +description = Dresden township, ND +station = ('kd55', 0.0036553564067829817) +zone = ('ndz007', 0.0030615811707401298) + +[fips3801921460] +centroid = (0.84958159944198852, -1.7148265166296601) +description = Easby township, ND +station = ('kd55', 0.0020949908748986055) +zone = ('ndz007', 0.0029548750076192065) + +[fips3801921500] +centroid = (0.84953208445110939, -1.7101020848774366) +description = East Alma township, ND +station = ('k96d', 0.0047294150116046572) +zone = ('ndz054', 0.0054225806379290574) + +[fips3801922980] +centroid = (0.85091805041011814, -1.7177546380624384) +description = Elgin township, ND +station = ('kd55', 0.00030516052618859038) +zone = ('ndz007', 0.00060638446515732299) + +[fips3801928540] +centroid = (0.85446251741494583, -1.7108888967575282) +description = Fremont township, ND +station = ('k96d', 0.0014496003463804049) +zone = ('ndz007', 0.0059779999626276203) + +[fips3801930780] +centroid = (0.85228247900615728, -1.7272358425179248) +description = Glenila township, ND +station = ('cwpo', 0.0064603053800236267) +zone = ('ndz006', 0.0041371779209139021) + +[fips3801931620] +centroid = (0.84964415204238009, -1.7218232448949324) +description = Gordon township, ND +station = ('kd55', 0.0032429051230191547) +zone = ('ndz007', 0.0026883874796010455) + +[fips3801933580] +centroid = (0.85246900234331791, -1.7242416778262508) +description = Grey township, ND +station = ('kd55', 0.0048385401634315952) +zone = ('ndz007', 0.0039534537048284196) + +[fips3801935060] +centroid = (0.85474005967259792, -1.722471617258756) +description = Hannah city, ND +station = ('cwpo', 0.0046302691215243082) +zone = ('ndz007', 0.0043559819513923652) + +[fips3801935860] +centroid = (0.85244779659290626, -1.7151162936453686) +description = Harvey township, ND +station = ('kd55', 0.0021086632912708245) +zone = ('ndz007', 0.0025591895217689101) + +[fips3801936420] +centroid = (0.85103577286816523, -1.712965821114109) +description = Hay township, ND +station = ('kd55', 0.0028555350879953213) +zone = ('ndz007', 0.0036785050366398924) + +[fips3801937220] +centroid = (0.84967080322005795, -1.7240376313834003) +description = Henderson township, ND +station = ('kd55', 0.004617227340113929) +zone = ('ndz006', 0.0053678275774247872) + +[fips3801938820] +centroid = (0.85399819002074528, -1.7131592210485223) +description = Hope township, ND +station = ('kd55', 0.0041219269037051035) +zone = ('ndz007', 0.004490144360320204) + +[fips3801939660] +centroid = (0.8511248370198945, -1.7242869516670476) +description = Huron township, ND +station = ('kd55', 0.004616317634414409) +zone = ('ndz006', 0.0053840779962984631) + +[fips3801940] +centroid = (0.82042374498573589, -1.696882105911498) +description = Amenia city, ND +station = ('kfar', 0.0050200253528758579) +zone = ('ndz039', 0.0013194801057370405) + +[fips3801944780] +centroid = (0.85106991150833422, -1.716936881494709) +description = Langdon city, ND +station = ('kd55', 0.00028873998025166444) +zone = ('ndz007', 0.001068523548371987) + +[fips3801944820] +centroid = (0.85256721202032759, -1.7175701567605026) +description = Langdon township, ND +station = ('kd55', 0.0016758828086514837) +zone = ('ndz007', 0.001476533905820102) + +[fips3801946940] +centroid = (0.85425964034269408, -1.7220563336165364) +description = Linden township, ND +station = ('kd55', 0.0045940415171149508) +zone = ('ndz007', 0.0038081959358964778) + +[fips3801947380] +centroid = (0.85267001191327008, -1.7131312259673204) +description = Loam township, ND +station = ('kd55', 0.0032619008802581692) +zone = ('ndz007', 0.003838842599662651) + +[fips3801947660] +centroid = (0.84888858155589908, -1.7195977930190069) +description = Loma city, ND +station = ('kd55', 0.0025232153336339968) +zone = ('ndz007', 0.0024488041811508822) + +[fips3801950100] +centroid = (0.85104743166756858, -1.7152620111846177) +description = Manilla township, ND +station = ('kd55', 0.0013465344990324076) +zone = ('ndz007', 0.0021677526251461651) + +[fips3801953020] +centroid = (0.84868999799360723, -1.7112237032679383) +description = Milton city, ND +station = ('kd55', 0.0045759993545452897) +zone = ('ndz054', 0.0044715717137122808) + +[fips3801953500] +centroid = (0.85243484624985633, -1.7217651777907186) +description = Minto township, ND +station = ('kd55', 0.0033214901599371034) +zone = ('ndz007', 0.0024402231105468313) + +[fips3801954060] +centroid = (0.84787602879035462, -1.710197694013861) +description = Montrose township, ND +station = ('kd55', 0.0055774642480015775) +zone = ('ndz054', 0.003804743427343629) + +[fips3801954500] +centroid = (0.85105359267982805, -1.7220569968416519) +description = Moscow township, ND +station = ('kd55', 0.003144688776471605) +zone = ('ndz007', 0.0023262763647299246) + +[fips3801954820] +centroid = (0.85420525588320184, -1.7177517233625876) +description = Mount Carmel township, ND +station = ('kd55', 0.0033177090674090157) +zone = ('ndz007', 0.003014553409991811) + +[fips3801955020] +centroid = (0.84951065180789498, -1.7250615986022531) +description = Munich city, ND +station = ('kd55', 0.0053115662506162051) +zone = ('ndz006', 0.0046968089463956053) + +[fips3801955740] +centroid = (0.84785492775969795, -1.7169960132497666) +description = Nekoma city, ND +station = ('kd55', 0.0030526978081199456) +zone = ('ndz007', 0.003530643338958877) + +[fips3801955780] +centroid = (0.84810096682435177, -1.7170739072942831) +description = Nekoma township, ND +station = ('kd55', 0.0028040901126816201) +zone = ('ndz007', 0.0032802584317651469) + +[fips3801958020] +centroid = (0.84988465841330485, -1.7192305059312172) +description = North Loma township, ND +station = ('kd55', 0.0016334588168360645) +zone = ('ndz007', 0.0014258515136704325) + +[fips3801958060] +centroid = (0.85268723831298721, -1.7109552018158114) +description = North Olga township, ND +station = ('k96d', 0.0020875689427203251) +zone = ('ndz007', 0.0052003732260233471) + +[fips3801959980] +centroid = (0.8479723011518947, -1.7124441247473952) +description = Osford township, ND +station = ('kd55', 0.0043395006417697056) +zone = ('ndz054', 0.0037502225733559132) + +[fips3801960100] +centroid = (0.84945459183232097, -1.7130301364970448) +description = Osnabrock city, ND +station = ('kd55', 0.0031627896813117115) +zone = ('ndz007', 0.0040468756656425872) + +[fips3801960140] +centroid = (0.84812938078457412, -1.7146454212664732) +description = Osnabrock township, ND +station = ('kd55', 0.0032770665766703334) +zone = ('ndz007', 0.0040316275944794313) + +[fips3801961740] +centroid = (0.84977465031055166, -1.7170216521364785) +description = Perry township, ND +station = ('kd55', 0.0011407684306929131) +zone = ('ndz007', 0.0017705850792050647) + +[fips3801970780] +centroid = (0.85425436944835298, -1.7277891118908071) +description = Sarles city, ND +station = ('cwpo', 0.0045784020091236225) +zone = ('ndz006', 0.0053700277272340788) + +[fips3801971620] +centroid = (0.84785763302003869, -1.726150334989647) +description = Seivert township, ND +station = ('k9d7', 0.0042403932189557739) +zone = ('ndz006', 0.0043930162954501344) + +[fips3801974100] +centroid = (0.8526293282884061, -1.7197340683270026) +description = South Dresden township, ND +station = ('kd55', 0.0023605393940336699) +zone = ('ndz007', 0.0016008604028467832) + +[fips3801974300] +centroid = (0.85126160102008075, -1.7102502284243459) +description = South Olga township, ND +station = ('k96d', 0.0030801026279668594) +zone = ('ndz007', 0.0054623602317735226) + +[fips3801976380] +centroid = (0.84787862933094016, -1.7214821901058002) +description = Storlie township, ND +station = ('kd55', 0.0040979706985231797) +zone = ('ndz007', 0.0038790128215161609) + +[fips3801979540] +centroid = (0.84965383861972865, -1.7260439222651529) +description = Trier township, ND +station = ('kd55', 0.0059071970297559367) +zone = ('ndz006', 0.0040436424339912163) + +[fips3801982940] +centroid = (0.85337283854975565, -1.7209100537237039) +description = Wales city, ND +station = ('kd55', 0.0034323326539406692) +zone = ('ndz007', 0.0026467696615446656) + +[fips3801983820] +centroid = (0.85092028443156065, -1.719666436818488) +description = Waterloo township, ND +station = ('kd55', 0.0015652629395539451) +zone = ('ndz007', 0.00080758617470941393) + +[fips3801985060] +centroid = (0.85420387707309275, -1.715265641469462) +description = West Hope township, ND +station = ('kd55', 0.0035617030498594259) +zone = ('ndz007', 0.0036671665652725856) + +[fips3802060] +centroid = (0.81126725903758312, -1.8032702387164317) +description = Amidon city, ND +station = ('kdik', 0.008340224200972652) +zone = ('ndz040', 0.0017918515397530523) + +[fips38021] +centroid = (0.80473215290617062, -1.71908854084986) +description = Dickey County, ND +station = ('k2d5', 0.0051643839989458165) +zone = ('ndz051', 0.00010669166383153232) + +[fips3802100300] +centroid = (0.80249465825840638, -1.7159927979957204) +description = Ada township, ND +station = ('k2d5', 0.004448455410223949) +zone = ('ndz051', 0.0032010143882802958) + +[fips3802101020] +centroid = (0.80253967029981532, -1.7265115134250546) +description = Albertha township, ND +station = ('kabr', 0.011142354409194489) +zone = ('sdz005', 0.0052381625253640589) + +[fips3802101060] +centroid = (0.80418525398505825, -1.722244968802092) +description = Albion township, ND +station = ('k2d5', 0.0074203848096390072) +zone = ('ndz051', 0.0021726350435623833) + +[fips3802105500] +centroid = (0.80558364668834104, -1.7113692637275546) +description = Bear Creek township, ND +station = ('k2d5', 0.000424321667893476) +zone = ('ndz049', 0.0070862480464457082) + +[fips3802114540] +centroid = (0.80565914963178231, -1.7136270565545195) +description = Clement township, ND +station = ('k2d5', 0.0012701694316229598) +zone = ('ndz051', 0.0039817523719059486) + +[fips3802119700] +centroid = (0.80696771023846514, -1.7115425400156927) +description = Divide township, ND +station = ('k2d5', 0.0011124345746975103) +zone = ('ndz048', 0.0068652746080642814) + +[fips3802122740] +centroid = (0.80404054873677522, -1.720331250183865) +description = Elden township, ND +station = ('k2d5', 0.0061779029426436739) +zone = ('ndz051', 0.0010596654715679659) + +[fips3802123220] +centroid = (0.8029361916525759, -1.7195864658321616) +description = Ellendale city, ND +station = ('k2d5', 0.0061350441266404552) +zone = ('ndz051', 0.0018552196301174332) + +[fips3802123260] +centroid = (0.80240020103928844, -1.7205358551320764) +description = Ellendale township, ND +station = ('k2d5', 0.0069728736650597426) +zone = ('ndz051', 0.0025418268484277825) + +[fips3802123540] +centroid = (0.80256941071026933, -1.722710483020184) +description = Elm township, ND +station = ('kabr', 0.0099536171934723229) +zone = ('ndz051', 0.0032711891475097803) + +[fips3802126980] +centroid = (0.80184759489152202, -1.7240739516851344) +description = Forbes city, ND +station = ('kabr', 0.009681586019202524) +zone = ('ndz051', 0.0044589377700303273) + +[fips3802128780] +centroid = (0.80570103753383016, -1.7178805461146773) +description = Fullerton city, ND +station = ('k2d5', 0.0042014065602545125) +zone = ('ndz051', 0.0013159683366893694) + +[fips3802129900] +centroid = (0.80558788783842339, -1.726523207131043) +description = German township, ND +station = ('kabr', 0.013785697511010452) +zone = ('ndz050', 0.00632226915300582) + +[fips3802132500] +centroid = (0.80405981717171737, -1.7247081170688463) +description = Grand Valley township, ND +station = ('kabr', 0.011863622597479407) +zone = ('ndz051', 0.0038662086015700432) + +[fips3802134500] +centroid = (0.80567422927651955, -1.7225505934074086) +description = Hamburg township, ND +station = ('k2d5', 0.0074348621482709402) +zone = ('ndz051', 0.0024707993736893807) + +[fips3802139220] +centroid = (0.80413504086247822, -1.7138153252209321) +description = Hudson township, ND +station = ('k2d5', 0.0022206225156097652) +zone = ('ndz051', 0.0038089314050327432) + +[fips3802140540] +centroid = (0.80715615343780289, -1.7137096280814312) +description = James River Valley township, ND +station = ('k2d5', 0.0018333996587657521) +zone = ('ndz051', 0.0045032520264956036) + +[fips3802142300] +centroid = (0.80413385403858695, -1.7159711733662879) +description = Kent township, ND +station = ('k2d5', 0.0033620289847521557) +zone = ('ndz051', 0.0023488741703364012) + +[fips3802142340] +centroid = (0.80408365836929951, -1.7179583179861462) +description = Kentner township, ND +station = ('k2d5', 0.0046158201162791361) +zone = ('ndz051', 0.001120274900064111) + +[fips3802142500] +centroid = (0.80555722240346583, -1.7203140063308555) +description = Keystone township, ND +station = ('k2d5', 0.0058920524144711337) +zone = ('ndz051', 0.0010848509240010699) + +[fips3802148140] +centroid = (0.80261281704876641, -1.7248100617504554) +description = Lorraine township, ND +station = ('kabr', 0.010597162124768768) +zone = ('ndz051', 0.0044356871992118395) + +[fips3802148260] +centroid = (0.80249326199500481, -1.7118329977098095) +description = Lovell township, ND +station = ('k2d5', 0.0033785972486134008) +zone = ('ndz051', 0.0056180724146174888) + +[fips3802148460] +centroid = (0.8029899303402448, -1.7126095819604843) +description = Ludden city, ND +station = ('k2d5', 0.0029336158595845503) +zone = ('ndz051', 0.0049283016446205951) + +[fips3802150500] +centroid = (0.80542019660389175, -1.7183176289192543) +description = Maple township, ND +station = ('k2d5', 0.0045238914234394809) +zone = ('ndz051', 0.00090332168353144066) + +[fips3802153820] +centroid = (0.80587689690926112, -1.7208099939976873) +description = Monango city, ND +station = ('k2d5', 0.0062261291491516697) +zone = ('ndz051', 0.0015535969938454079) + +[fips3802158220] +centroid = (0.80698148088626331, -1.726700742022556) +description = Northwest township, ND +station = ('k2d5', 0.010358986948985174) +zone = ('ndz050', 0.0065202234322165884) + +[fips3802158740] +centroid = (0.80528414818869887, -1.7119534428814895) +description = Oakes city, ND +station = ('k2d5', 0.00059503739467597352) +zone = ('ndz051', 0.0050686805595444072) + +[fips3802163820] +centroid = (0.80262260834587007, -1.7139995970833577) +description = Port Emma township, ND +station = ('k2d5', 0.0035840720758769573) +zone = ('ndz051', 0.0042199436882656097) + +[fips3802163860] +centroid = (0.8069362419520516, -1.7182863700723512) +description = Porter township, ND +station = ('k2d5', 0.004600914422487474) +zone = ('ndz051', 0.0022579719066613802) + +[fips3802163980] +centroid = (0.80698945704094494, -1.7226574773708008) +description = Potsdam township, ND +station = ('k2d5', 0.00758391396753342) +zone = ('ndz051', 0.0032464141820866266) + +[fips3802166940] +centroid = (0.80388357382385101, -1.7118293325183802) +description = Riverdale township, ND +station = ('k2d5', 0.0019882844022437629) +zone = ('ndz051', 0.0052095784180655677) + +[fips3802175140] +centroid = (0.80420450496670759, -1.7265184598354775) +description = Spring Valley township, ND +station = ('kabr', 0.012563543616541488) +zone = ('ndz050', 0.006309938628735961) + +[fips3802181100] +centroid = (0.80705434838253409, -1.7203073566264053) +description = Valley township, ND +station = ('k2d5', 0.0059922890742613597) +zone = ('ndz051', 0.0023985947736793536) + +[fips3802181460] +centroid = (0.80250474626148283, -1.718173010937434) +description = Van Meter township, ND +station = ('k2d5', 0.0055467064710746847) +zone = ('ndz051', 0.0023855840382212708) + +[fips3802185700] +centroid = (0.80569630769155731, -1.7246294550794592) +description = Whitestone township, ND +station = ('k2d5', 0.0088735803467865464) +zone = ('ndz051', 0.0038535812819105101) + +[fips3802187620] +centroid = (0.80692161609292001, -1.7157512095206591) +description = Wright township, ND +station = ('k2d5', 0.0029169880458755526) +zone = ('ndz051', 0.0032266086927869508) + +[fips3802187940] +centroid = (0.80552772633910719, -1.7159524459834141) +description = Yorktown township, ND +station = ('k2d5', 0.0028835065164709052) +zone = ('ndz051', 0.0023926256552767723) + +[fips3802187980] +centroid = (0.80687056521229905, -1.7249930420692345) +description = Young township, ND +station = ('k2d5', 0.0091725917868533159) +zone = ('ndz048', 0.0053526029902276557) + +[fips3802220] +centroid = (0.83571719255633625, -1.749557486640211) +description = Anamoose city, ND +station = ('k5h4', 0.0039769427636930999) +zone = ('ndz022', 0.0055051568715508113) + +[fips38023] +centroid = (0.85203731260612969, -1.8063748129365869) +description = Divide County, ND +station = ('kd50', 0.0030018706651044947) +zone = ('ndz001', 0.00013175133167617144) + +[fips3802301300] +centroid = (0.85097274902887576, -1.8090576807028749) +description = Alexandria township, ND +station = ('kd50', 0.0050501004108444584) +zone = ('ndz001', 0.002139099380513384) + +[fips3802301860] +centroid = (0.8544432315267112, -1.8060840759897894) +description = Ambrose city, ND +station = ('kd50', 0.0021602243702485624) +zone = ('ndz001', 0.0024635654208701985) + +[fips3802301900] +centroid = (0.85425267647897851, -1.8071467022515737) +description = Ambrose township, ND +station = ('kd50', 0.0028196414589268448) +zone = ('ndz001', 0.0023567330480476277) + +[fips3802307900] +centroid = (0.85425655110991805, -1.8045924477978652) +description = Blooming Prairie township, ND +station = ('kd50', 0.0011641051576424385) +zone = ('ndz001', 0.0025077565360346215) + +[fips3802307940] +centroid = (0.85261700626388703, -1.8000559880060814) +description = Blooming Valley township, ND +station = ('kd50', 0.0022929425075901753) +zone = ('ndz001', 0.0040902399281712333) + +[fips3802308340] +centroid = (0.850965104486752, -1.7975948643212591) +description = Border township, ND +station = ('kd50', 0.0045918046620535176) +zone = ('ndz002', 0.0055109301662118679) + +[fips3802310780] +centroid = (0.85114710742114985, -1.8067357295726068) +description = Burg township, ND +station = ('kd50', 0.0037936371648526626) +zone = ('ndz001', 0.00090677635660341735) + +[fips3802314900] +centroid = (0.85249645637245175, -1.8113767694931699) +description = Clinton township, ND +station = ('kd50', 0.0057790687625467871) +zone = ('ndz001', 0.0034504940539103425) + +[fips3802315020] +centroid = (0.85247928233261216, -1.7976922886001054) +description = Coalfield township, ND +station = ('kd50', 0.0037188414159065853) +zone = ('ndz002', 0.0056134182449907224) + +[fips3802316940] +centroid = (0.85375230803572433, -1.8028719022212492) +description = Crosby city, ND +station = ('kd50', 0.00021307698515166034) +zone = ('ndz001', 0.0028132982009759135) + +[fips3802317940] +centroid = (0.85110773279322494, -1.8142153729886135) +description = Daneville township, ND +station = ('kd50', 0.0079901901221938586) +zone = ('mtz019', 0.0064640483713279909) + +[fips3802319500] +centroid = (0.85440029642711224, -1.8114287453982942) +description = De Witt township, ND +station = ('kd50', 0.0056341267909332518) +zone = ('ndz001', 0.0042074940335207981) + +[fips3802323140] +centroid = (0.85427032175771622, -1.8144093663349725) +description = Elkhorn township, ND +station = ('kd50', 0.0075817765905341374) +zone = ('mtz019', 0.0074053519129664656) + +[fips3802326140] +centroid = (0.84945347482159972, -1.8137044103967996) +description = Fertile Valley township, ND +station = ('kd50', 0.0084395003056582409) +zone = ('mtz019', 0.0068208081573431951) + +[fips3802326340] +centroid = (0.85425428218189048, -1.8021788843351598) +description = Fillmore township, ND +station = ('kd50', 0.00054180785340047913) +zone = ('ndz001', 0.0034844848467977226) + +[fips3802327820] +centroid = (0.85363551060218079, -1.8112830453123379) +description = Fortuna city, ND +station = ('kd50', 0.0055338765046343994) +zone = ('ndz001', 0.0037344902942315315) + +[fips3802328220] +centroid = (0.85121775834927071, -1.8019829536733309) +description = Frazier township, ND +station = ('kd50', 0.0028098321381969794) +zone = ('ndz001', 0.0028772374901920913) + +[fips3802328340] +centroid = (0.8496957265217765, -1.8034677401745876) +description = Frederick township, ND +station = ('kd50', 0.004287347346922773) +zone = ('ndz001', 0.0029073633178287087) + +[fips3802329420] +centroid = (0.84944692983690473, -1.8057395130888607) +description = Garnet township, ND +station = ('kd50', 0.0048961577545861383) +zone = ('ndz001', 0.0025514723566273934) + +[fips3802331580] +centroid = (0.85433269982518245, -1.8090660931898697) +description = Gooseneck township, ND +station = ('kd50', 0.00408216668459669) +zone = ('ndz001', 0.0030164044092667402) + +[fips3802336300] +centroid = (0.85266585802965034, -1.8023300123950898) +description = Hawkeye township, ND +station = ('kd50', 0.0013482873398121922) +zone = ('ndz001', 0.002634151950333711) + +[fips3802336500] +centroid = (0.84978376092924701, -1.7990407997933664) +description = Hayland township, ND +station = ('kd50', 0.0048854200235029337) +zone = ('ndz002', 0.0066768814084122172) + +[fips3802346740] +centroid = (0.85248450086707561, -1.8092560199190715) +description = Lincoln Valley township, ND +station = ('kd50', 0.0044485181924377943) +zone = ('ndz001', 0.002077661635878557) + +[fips3802347780] +centroid = (0.85423562461218661, -1.7998919445096864) +description = Long Creek township, ND +station = ('kd50', 0.0019791737691656833) +zone = ('ndz001', 0.0047182765542542766) + +[fips3802352260] +centroid = (0.85425546900578175, -1.7975947246949191) +description = Mentor township, ND +station = ('kd50', 0.0034817369524538701) +zone = ('ndz002', 0.0060955769573481332) + +[fips3802357220] +centroid = (0.85329726579314435, -1.7978686715743122) +description = Noonan city, ND +station = ('kd50', 0.0033586054831333937) +zone = ('ndz002', 0.0059118854250225193) + +[fips3802360700] +centroid = (0.84982201854645079, -1.8011939601316742) +description = Palmer township, ND +station = ('kd50', 0.0042889703828861599) +zone = ('ndz001', 0.003940531434850598) + +[fips3802363340] +centroid = (0.85096917110390913, -1.8044725960381307) +description = Plumer township, ND +station = ('kd50', 0.0031749618554835) +zone = ('ndz001', 0.0015198062349774421) + +[fips3802373420] +centroid = (0.84970611123082584, -1.810491398870218) +description = Sioux Trail township, ND +station = ('kd50', 0.0065796839048003685) +zone = ('ndz001', 0.0036334645940612515) + +[fips3802373700] +centroid = (0.84950677717695555, -1.8081076107245517) +description = Smoky Butte township, ND +station = ('kd50', 0.0056347607117958809) +zone = ('ndz001', 0.0027771531627968624) + +[fips3802376300] +centroid = (0.84957770735775662, -1.796825558093565) +description = Stoneview township, ND +station = ('kd60', 0.0052186745681022939) +zone = ('ndz002', 0.0053564943192432662) + +[fips3802379660] +centroid = (0.85273359425792017, -1.8044710077885113) +description = Troy township, ND +station = ('kd50', 0.0016174238909199086) +zone = ('ndz001', 0.0013613032790145856) + +[fips3802380] +centroid = (0.83216808297569822, -1.7102304014840433) +description = Aneta city, ND +station = ('ks32', 0.0046909586346130074) +zone = ('ndz026', 0.0048468932667818177) + +[fips3802380260] +centroid = (0.85262124741396939, -1.8069492880598808) +description = Twin Butte township, ND +station = ('kd50', 0.002996197046418059) +zone = ('ndz001', 0.00081078004945742295) + +[fips3802380900] +centroid = (0.85121329030638559, -1.8000765654379625) +description = Upland township, ND +station = ('kd50', 0.0033119276609284384) +zone = ('ndz001', 0.0041025523552970095) + +[fips3802384660] +centroid = (0.85251521866191071, -1.8147056185222061) +description = Westby township, ND +station = ('kd50', 0.0079120908018170122) +zone = ('mtz019', 0.006465722459726134) + +[fips3802387660] +centroid = (0.85126587707674806, -1.8115762780799654) +description = Writing Rock township, ND +station = ('kd50', 0.0063290545011414909) +zone = ('ndz001', 0.0036169089121664681) + +[fips38025] +centroid = (0.82649386049783202, -1.7909236225081913) +description = Dunn County, ND +station = ('kdik', 0.0099333584005060517) +zone = ('ndz018', 7.8871588623099153e-05) + +[fips3802519820] +centroid = (0.82563362261610895, -1.7837680343744025) +description = Dodge city, ND +station = ('khze', 0.0073618648398903952) +zone = ('ndz019', 0.0043896946370805649) + +[fips3802520940] +centroid = (0.82646809943807253, -1.791105485816249) +description = Dunn Center city, ND +station = ('kdik', 0.0098811237173822425) +zone = ('ndz018', 8.3862276337435184e-05) + +[fips3802527330] +centroid = (0.83158343258286516, -1.7884062119549919) +description = Fort Berthold UT, ND +station = ('k08d', 0.011447891349768941) +zone = ('ndz018', 0.0053523070460455291) + +[fips3802534340] +centroid = (0.82642750307967117, -1.7861881777283877) +description = Halliday city, ND +station = ('kdik', 0.011053362247558937) +zone = ('ndz018', 0.0032787781747632104) + +[fips3802534350] +centroid = (0.82657379657757324, -1.7877766891470903) +description = Halliday UT, ND +station = ('kdik', 0.010694639022296856) +zone = ('ndz018', 0.0022011639655010271) + +[fips3802542700] +centroid = (0.82670616234804462, -1.7933886731838304) +description = Killdeer city, ND +station = ('kdik', 0.0099074289143213767) +zone = ('ndz018', 0.0016101976997407355) + +[fips3802542705] +centroid = (0.82717834372387911, -1.795519667840638) +description = Killdeer UT, ND +station = ('kdik', 0.010403205157739622) +zone = ('ndz018', 0.0031113016883812482) + +[fips3802574105] +centroid = (0.82170938941933991, -1.7900046019372611) +description = South Dunn UT, ND +station = ('kdik', 0.0056712425021929729) +zone = ('ndz033', 0.0048435102367036095) + +[fips3802660] +centroid = (0.85470897535862, -1.7677212677920562) +description = Antler city, ND +station = ('kmib', 0.0097094872655158135) +zone = ('ndz004', 0.0060320856651300383) + +[fips38027] +centroid = (0.83293108856479259, -1.7261389205363389) +description = Eddy County, ND +station = ('k46d', 0.0055959615173683998) +zone = ('ndz024', 0.00010271037171386642) + +[fips3802711140] +centroid = (0.83432920201539518, -1.7274432225396468) +description = Bush township, ND +station = ('kdvl', 0.0055077164982702091) +zone = ('ndz024', 0.0017308099471541247) + +[fips3802713820] +centroid = (0.83153011277421673, -1.7229246000128184) +description = Cherry Lake township, ND +station = ('k46d', 0.0061242892419987541) +zone = ('ndz024', 0.0025354265606544134) + +[fips3802715420] +centroid = (0.83119158871249987, -1.7245522766199359) +description = Columbia township, ND +station = ('k46d', 0.0050301870224919443) +zone = ('ndz024', 0.001962611958024732) + +[fips3802715540] +centroid = (0.83278938528282309, -1.7209180647849707) +description = Colvin township, ND +station = ('kdvl', 0.0079166383408560779) +zone = ('ndz024', 0.003526025204285921) + +[fips3802721980] +centroid = (0.83407672268580169, -1.7225665631700644) +description = Eddy township, ND +station = ('kdvl', 0.0062734313507492789) +zone = ('ndz024', 0.0027181544923847775) + +[fips3802728420] +centroid = (0.83426230354516617, -1.7212202685449536) +description = Freeborn township, ND +station = ('kdvl', 0.0065371703353051839) +zone = ('ndz024', 0.0036158910535505958) + +[fips3802729700] +centroid = (0.83433862679335591, -1.7293419662328915) +description = Gates township, ND +station = ('kdvl', 0.005795557129656753) +zone = ('ndz024', 0.0026187319452621121) + +[fips3802732020] +centroid = (0.83431871258659063, -1.7318959414339197) +description = Grandfield township, ND +station = ('k46d', 0.0062103958069058733) +zone = ('ndz014', 0.0049133412246237258) + +[fips3802738180] +centroid = (0.8342191764593494, -1.7253773810238162) +description = Hillsdale township, ND +station = ('kdvl', 0.0056187613731070547) +zone = ('ndz024', 0.0014858471406138814) + +[fips3802744100] +centroid = (0.83258519921363228, -1.7233670060716142) +description = Lake Washington township, ND +station = ('k46d', 0.0065341036652061101) +zone = ('ndz024', 0.0018941506395564137) + +[fips3802755100] +centroid = (0.83272402270233592, -1.7317397519191589) +description = Munster township, ND +station = ('k46d', 0.0046199747622580204) +zone = ('ndz024', 0.0037566348773614856) + +[fips3802756620] +centroid = (0.83215296842437592, -1.7302165158144807) +description = New Rockford city, ND +station = ('k46d', 0.0039800546450348461) +zone = ('ndz024', 0.0028136293346760779) + +[fips3802756660] +centroid = (0.83292407234119958, -1.729308857336981) +description = New Rockford township, ND +station = ('k46d', 0.0048155305399617456) +zone = ('ndz024', 0.0021214867119376114) + +[fips3802760740] +centroid = (0.83096392796486973, -1.720288611790239) +description = Paradise township, ND +station = ('k46d', 0.0074475559960533603) +zone = ('ndz028', 0.0047047278352220102) + +[fips3802763220] +centroid = (0.83118949431739753, -1.726772509961398) +description = Pleasant Prairie township, ND +station = ('k46d', 0.0039322875971946232) +zone = ('ndz024', 0.0016910536811562476) + +[fips3802768180] +centroid = (0.83111463714577949, -1.731230709189522) +description = Rosefield township, ND +station = ('k46d', 0.0029756547504567756) +zone = ('ndz024', 0.003821873598042199) + +[fips3802772140] +centroid = (0.83267885358129434, -1.7272636979727867) +description = Sheldon township, ND +station = ('k46d', 0.0050076048782909145) +zone = ('ndz024', 0.00075863834438615063) + +[fips3802772580] +centroid = (0.83474312430079811, -1.729917034768131) +description = Sheyenne city, ND +station = ('kdvl', 0.00556691697155686) +zone = ('ndz024', 0.0031691617796580718) + +[fips3802777140] +centroid = (0.83129629101432712, -1.7290639876429261) +description = Superior township, ND +station = ('k46d', 0.0032690498525283027) +zone = ('ndz024', 0.0024854213440110777) + +[fips3802778860] +centroid = (0.83278718616796565, -1.7252253802992601) +description = Tiffany township, ND +station = ('k46d', 0.0058300089980361982) +zone = ('ndz024', 0.00062924728678174287) + +[fips3802860] +centroid = (0.84134437841086118, -1.6989166536738405) +description = Ardoch city, ND +station = ('kgaf', 0.0034948871313401223) +zone = ('ndz016', 0.0033892443395916825) + +[fips38029] +centroid = (0.80781264158264809, -1.7494803779938579) +description = Emmons County, ND +station = ('k7l2', 0.0011156557054225827) +zone = ('ndz046', 1.8735571946787531e-05) + +[fips3802908900] +centroid = (0.81269348974243527, -1.7468956675447018) +description = Braddock city, ND +station = ('k7l2', 0.006279263397175612) +zone = ('ndz046', 0.0051859847958395065) + +[fips3802911780] +centroid = (0.81325557302803997, -1.7451416640063251) +description = Campbell township, ND +station = ('k7l2', 0.0072441433099074389) +zone = ('ndz046', 0.0062026778896302863) + +[fips3802934180] +centroid = (0.80335596079097304, -1.745311013303646) +description = Hague city, ND +station = ('k7l2', 0.0044818575209116937) +zone = ('sdz004', 0.0045449408743457667) + +[fips3802936700] +centroid = (0.81132429639753822, -1.7502295780285688) +description = Hazelton city, ND +station = ('k7l2', 0.0046428379185695168) +zone = ('ndz046', 0.0035332212386852279) + +[fips3802946980] +centroid = (0.8075385201703299, -1.7494023268697085) +description = Linton city, ND +station = ('k7l2', 0.00085045906317614208) +zone = ('ndz046', 0.00029620309886191365) + +[fips3802957730] +centroid = (0.81047042896758503, -1.7499203405917008) +description = North Emmons UT, ND +station = ('k7l2', 0.0037754442357392825) +zone = ('ndz046', 0.0026591297219692119) + +[fips3802974120] +centroid = (0.80448614874810198, -1.7493778049937183) +description = South Emmons UT, ND +station = ('k7l2', 0.0022208140662818131) +zone = ('ndz046', 0.0033422613025059691) + +[fips3802976500] +centroid = (0.80518633993741706, -1.748157174074751) +description = Strasburg city, ND +station = ('k7l2', 0.0018201107865211934) +zone = ('ndz046', 0.0027990984901644579) + +[fips3803020] +centroid = (0.82117828572795803, -1.6919773816475436) +description = Argusville city, ND +station = ('kfar', 0.0025332926616048242) +zone = ('ndz039', 0.0041656143352753455) + +[fips38031] +centroid = (0.82840878339324253, -1.7256561973718223) +description = Foster County, ND +station = ('k46d', 0.0032954422379198162) +zone = ('ndz025', 0.00017502430887403022) + +[fips3803107140] +centroid = (0.82967805663846295, -1.7312241118449496) +description = Birtsell township, ND +station = ('k46d', 0.0015739432648737774) +zone = ('ndz024', 0.0046459419777438058) + +[fips3803108420] +centroid = (0.82663996200951639, -1.726766069696458) +description = Bordulac township, ND +station = ('k46d', 0.0029689046546357593) +zone = ('ndz025', 0.0017592247484347612) + +[fips3803110020] +centroid = (0.82688544256880947, -1.7248168510812456) +description = Bucephalia township, ND +station = ('k46d', 0.0040688696279959973) +zone = ('ndz025', 0.0015580252958880955) + +[fips3803112340] +centroid = (0.82817243090593762, -1.7301455158205097) +description = Carrington city, ND +station = ('k46d', 0.00025207715872327147) +zone = ('ndz025', 0.002916325522481277) + +[fips3803112380] +centroid = (0.8284125183978418, -1.7289928654759075) +description = Carrington township, ND +station = ('k46d', 0.0010576254332527251) +zone = ('ndz025', 0.0021385084649417877) + +[fips3803121700] +centroid = (0.82663631427137974, -1.7200705329002022) +description = Eastman township, ND +station = ('ks32', 0.0053836883532115444) +zone = ('ndz028', 0.0040766546301798916) + +[fips3803124900] +centroid = (0.82983386218078847, -1.7291114256919955) +description = Estabrook township, ND +station = ('k46d', 0.0019091308641155727) +zone = ('ndz025', 0.0027025253641409798) + +[fips3803126820] +centroid = (0.82967371076862551, -1.7223182028175055) +description = Florance township, ND +station = ('k46d', 0.0057387705896144734) +zone = ('ndz025', 0.0027536918481414099) + +[fips3803130660] +centroid = (0.82824681683865753, -1.7203050004319151) +description = Glenfield city, ND +station = ('k46d', 0.006906423084350544) +zone = ('ndz028', 0.003884117657372304) + +[fips3803130700] +centroid = (0.82818878464102863, -1.7200501823611238) +description = Glenfield township, ND +station = ('k46d', 0.0070786183895142846) +zone = ('ndz028', 0.0037129883510984185) + +[fips3803131740] +centroid = (0.82995357431418271, -1.7244580986534983) +description = Grace City city, ND +station = ('k46d', 0.0044623885471531712) +zone = ('ndz025', 0.0019125849908229553) + +[fips3803136260] +centroid = (0.82815864280484675, -1.724913769214609) +description = Haven township, ND +station = ('k46d', 0.0037899064679009966) +zone = ('ndz025', 0.00063559197603595163) + +[fips3803145180] +centroid = (0.82967311735667981, -1.7245393088235936) +description = Larrabee township, ND +station = ('k46d', 0.0043074921682892016) +zone = ('ndz025', 0.0016433300061280609) + +[fips3803147900] +centroid = (0.82668275748277542, -1.7315019682618671) +description = Longview township, ND +station = ('k46d', 0.0016368845173022064) +zone = ('ndz025', 0.0041549338050302738) + +[fips3803149260] +centroid = (0.83036519276497323, -1.7207405648000429) +description = McHenry city, ND +station = ('k46d', 0.0069566521547565598) +zone = ('ndz028', 0.0046635601369056845) + +[fips3803149300] +centroid = (0.82989138823293418, -1.7198495393103148) +description = McHenry township, ND +station = ('k46d', 0.0074084159656193378) +zone = ('ndz028', 0.0039175372288619585) + +[fips3803149500] +centroid = (0.82689036439730002, -1.7226738485591846) +description = McKinnon township, ND +station = ('k46d', 0.0054621771963898353) +zone = ('ndz025', 0.0025525955809796593) + +[fips3803152100] +centroid = (0.8268507977831574, -1.7294948570753661) +description = Melville township, ND +station = ('k46d', 0.0014971129928584416) +zone = ('ndz025', 0.0028602554305971989) + +[fips3803157380] +centroid = (0.82958914956636631, -1.7269030431361545) +description = Nordmore township, ND +station = ('k46d', 0.0028209994353123736) +zone = ('ndz025', 0.0014923299480291204) + +[fips3803167900] +centroid = (0.82815600735767625, -1.7223103837424567) +description = Rolling Prairie township, ND +station = ('k46d', 0.0055503802244288528) +zone = ('ndz025', 0.0023871194197149768) + +[fips3803168300] +centroid = (0.82816059757360905, -1.7268031753963555) +description = Rose Hill township, ND +station = ('k46d', 0.0025122507359340699) +zone = ('ndz025', 0.00066550243376969312) + +[fips3803187700] +centroid = (0.82817234363947501, -1.7316016440154485) +description = Wyard township, ND +station = ('k46d', 0.00073267460425006947) +zone = ('ndz025', 0.0039004091780903906) + +[fips3803220] +centroid = (0.83441388539070194, -1.8053467267406995) +description = Arnegard city, ND +station = ('kisn', 0.0069936030622634498) +zone = ('ndz017', 0.0012947265204072667) + +[fips38033] +centroid = (0.81923877114338683, -1.8124303898560137) +description = Golden Valley County, ND +station = ('k20u', 0.0016539980309030532) +zone = ('ndz031', 3.3392740879136918e-05) + +[fips3803300] +centroid = (0.82212496976753235, -1.6967834249955904) +description = Arthur city, ND +station = ('kfar', 0.0056362862644991135) +zone = ('ndz039', 0.0030102272200327857) + +[fips3803305420] +centroid = (0.81882472668493622, -1.8152809837634185) +description = Beach city, ND +station = ('k20u', 0.00035630824773367218) +zone = ('ndz031', 0.0019707477366302691) + +[fips3803305460] +centroid = (0.81842778645315506, -1.8143539521312217) +description = Beach township, ND +station = ('k20u', 0.00065778553529140119) +zone = ('ndz031', 0.0015348951895614001) + +[fips3803310660] +centroid = (0.81468895958282539, -1.8111108162217511) +description = Bullion township, ND +station = ('k20u', 0.0050062192964911252) +zone = ('ndz031', 0.0046653287529225063) + +[fips3803318900] +centroid = (0.82058230814827959, -1.8124629227932709) +description = Delhi township, ND +station = ('k20u', 0.0022593819980455438) +zone = ('ndz031', 0.0013212692962208076) + +[fips3803321665] +centroid = (0.81507839489882294, -1.8092338542375712) +description = East Golden Valley UT, ND +station = ('k20u', 0.0054806549499124575) +zone = ('ndz031', 0.0047316715214250219) + +[fips3803323100] +centroid = (0.82206463373529082, -1.8126932713479491) +description = Elk Creek township, ND +station = ('k20u', 0.0033919683619788319) +zone = ('ndz031', 0.002807838978970138) + +[fips3803323860] +centroid = (0.82212477778131465, -1.8148736413692956) +description = Elmwood UT, ND +station = ('k20u', 0.0031243379596256854) +zone = ('ndz031', 0.0033004633068278704) + +[fips3803329340] +centroid = (0.81618318831533532, -1.8115329415546384) +description = Garner township, ND +station = ('k20u', 0.0036076330705300686) +zone = ('ndz031', 0.0031434190445311207) + +[fips3803331420] +centroid = (0.81567210355047381, -1.8148337256893026) +description = Golva city, ND +station = ('k20u', 0.0033284989940893213) +zone = ('ndz031', 0.0039372610983891519) + +[fips3803337340] +centroid = (0.82438511878898735, -1.8149532981963568) +description = Henry township, ND +station = ('k20u', 0.0053852028110111345) +zone = ('ndz031', 0.0053965170859800312) + +[fips3803347700] +centroid = (0.81529759079958086, -1.8142957803072528) +description = Lone Tree township, ND +station = ('k20u', 0.0037208282594890208) +zone = ('ndz031', 0.0041563067819047443) + +[fips3803357865] +centroid = (0.82298964078555525, -1.8105323617477624) +description = North Golden Valley UT, ND +station = ('k20u', 0.0049476789679667585) +zone = ('ndz031', 0.0039547373598960546) + +[fips3803361340] +centroid = (0.82461614802207395, -1.8130665449150731) +description = Pearl township, ND +station = ('k20u', 0.005742099213444673) +zone = ('ndz031', 0.005370648092364861) + +[fips3803369580] +centroid = (0.82067374594779152, -1.8147244157182501) +description = Saddle Butte township, ND +station = ('k20u', 0.0016746182425287602) +zone = ('ndz031', 0.0020899819969002215) + +[fips3803371740] +centroid = (0.81832057087720522, -1.810233997712134) +description = Sentinel township, ND +station = ('k20u', 0.0032109725455291248) +zone = ('ndz031', 0.0017918990051164669) + +[fips3803371780] +centroid = (0.81889871119192825, -1.8123601927134987) +description = Sentinel Butte city, ND +station = ('k20u', 0.0016880793991979691) +zone = ('ndz031', 0.00036957617507406602) + +[fips3803374180] +centroid = (0.81307683385934326, -1.8138269325102896) +description = South Golden Valley UT, ND +station = ('kbhk', 0.005678547836429116) +zone = ('ndz031', 0.0062539957334560511) + +[fips38035] +centroid = (0.83646654967068002, -1.7008382088204086) +description = Grand Forks County, ND +station = ('krdr', 0.00092579944102505007) +zone = ('ndz027', 0.00010148981800999701) + +[fips3803500820] +centroid = (0.83888060182557589, -1.7053436366580919) +description = Agnes township, ND +station = ('krdr', 0.0039898366058912296) +zone = ('ndz027', 0.0038524687314243551) + +[fips3803501620] +centroid = (0.83443722044280111, -1.6962066983975614) +description = Allendale township, ND +station = ('kgfk', 0.002448285446228765) +zone = ('ndz027', 0.0037335691134501472) + +[fips3803502020] +centroid = (0.83292105292159369, -1.6935758239896901) +description = Americus township, ND +station = ('kgfk', 0.0043296770857429306) +zone = ('mnz001', 0.0044312421833704388) + +[fips3803503420] +centroid = (0.83582334348144249, -1.7027259918459505) +description = Arvilla township, ND +station = ('krdr', 0.0022997006229807286) +zone = ('ndz027', 0.0013233532591056777) + +[fips3803503940] +centroid = (0.83430584951000353, -1.702730058463108) +description = Avon township, ND +station = ('krdr', 0.0034224953568963035) +zone = ('ndz027', 0.0024078524299446079) + +[fips3803506100] +centroid = (0.83266852123212265, -1.6920740205282265) +description = Bentru township, ND +station = ('kgfk', 0.0050338942355624859) +zone = ('mnz001', 0.003741920808509699) + +[fips3803507860] +centroid = (0.83727894807760572, -1.6981637709944077) +description = Blooming township, ND +station = ('kgfk', 0.0013924455820574638) +zone = ('ndz027', 0.0020623332722002272) + +[fips3803509300] +centroid = (0.83581671123028489, -1.6959627362747176) +description = Brenna township, ND +station = ('kgfk', 0.0010775807397251224) +zone = ('ndz027', 0.0033899293537225914) + +[fips3803513860] +centroid = (0.83582899834821889, -1.700479316766321) +description = Chester township, ND +station = ('krdr', 0.0013930514866981165) +zone = ('ndz027', 0.00064649950992298267) + +[fips3803523180] +centroid = (0.84045605818147362, -1.7073877313714425) +description = Elkmount township, ND +station = ('kgaf', 0.0068573385813168334) +zone = ('ndz054', 0.0048267914284451244) + +[fips3803523700] +centroid = (0.83735553312518318, -1.7049850238566846) +description = Elm Grove township, ND +station = ('krdr', 0.0033752288385655001) +zone = ('ndz027', 0.0028710620430993485) + +[fips3803524060] +centroid = (0.83650815832004755, -1.6992740621980638) +description = Emerado city, ND +station = ('krdr', 0.00080732180637241194) +zone = ('ndz027', 0.0011257592999712872) + +[fips3803525260] +centroid = (0.83431379075809997, -1.6982168464569607) +description = Fairfield township, ND +station = ('kgfk', 0.0029153804420603679) +zone = ('ndz027', 0.002771765530824049) + +[fips3803525540] +centroid = (0.83747983547451033, -1.6943152676338824) +description = Falconer township, ND +station = ('kgfk', 0.001376282482860072) +zone = ('ndz027', 0.0045711554776813037) + +[fips3803526020] +centroid = (0.83879010650385999, -1.6960553085382433) +description = Ferry township, ND +station = ('kgfk', 0.0019062523596891571) +zone = ('ndz027', 0.0040556130772214285) + +[fips3803530180] +centroid = (0.83921889899448987, -1.7011323317059548) +description = Gilby city, ND +station = ('krdr', 0.0021901839664146923) +zone = ('ndz027', 0.0028267248191084877) + +[fips3803530220] +centroid = (0.8388785423370585, -1.7008109293242) +description = Gilby township, ND +station = ('krdr', 0.0017969083647636943) +zone = ('ndz027', 0.0024852364704072249) + +[fips3803531700] +centroid = (0.83430071824200258, -1.7049847096974191) +description = Grace township, ND +station = ('krdr', 0.004434619400789765) +zone = ('ndz027', 0.0034248589306585153) + +[fips3803532060] +centroid = (0.8362359218633213, -1.6942785459064207) +description = Grand Forks city, ND +station = ('kgfk', 0.0014235231472091848) +zone = ('ndz027', 0.0044710494425010527) + +[fips3803532100] +centroid = (0.83564289389007873, -1.6939024798124933) +description = Grand Forks township, ND +station = ('kgfk', 0.001962589742981192) +zone = ('ndz027', 0.0047813236359869511) + +[fips3803536940] +centroid = (0.8374645463902628, -1.7027461503988113) +description = Hegton township, ND +station = ('krdr', 0.0018935094987805893) +zone = ('ndz027', 0.0016119541064179049) + +[fips3803539980] +centroid = (0.8404017609884441, -1.7042121222507314) +description = Inkster city, ND +station = ('krdr', 0.0043030173602400827) +zone = ('ndz016', 0.0041394294414809837) + +[fips3803540] +centroid = (0.80345973806829663, -1.7343954972688709) +description = Ashley city, ND +station = ('k7l2', 0.011034595188308819) +zone = ('ndz050', 0.0015746177030768352) + +[fips3803540020] +centroid = (0.84027311276927963, -1.7055332317747358) +description = Inkster township, ND +station = ('krdr', 0.0048491252264687848) +zone = ('ndz016', 0.0046744319890189272) + +[fips3803540940] +centroid = (0.8403998062196818, -1.7008064787346073) +description = Johnstown township, ND +station = ('krdr', 0.0032738934893388415) +zone = ('ndz016', 0.0038319583303222586) + +[fips3803544060] +centroid = (0.83898753814884552, -1.6987373036399054) +description = Lakeville township, ND +station = ('krdr', 0.0019848029702450071) +zone = ('ndz027', 0.0029841523014265941) + +[fips3803545020] +centroid = (0.83617012295052129, -1.7039172314203146) +description = Larimore city, ND +station = ('krdr', 0.0028414280527073498) +zone = ('ndz027', 0.0020043608573729567) + +[fips3803545060] +centroid = (0.83571522033428147, -1.7051628554541702) +description = Larimore township, ND +station = ('krdr', 0.0037859698452540743) +zone = ('ndz027', 0.0029078333241347822) + +[fips3803546180] +centroid = (0.84039144609256478, -1.698543833892322) +description = Levant township, ND +station = ('krdr', 0.0033498581974178978) +zone = ('ndz027', 0.0043070886731866138) + +[fips3803546820] +centroid = (0.83279156694438816, -1.7049922146132026) +description = Lind township, ND +station = ('krdr', 0.0055385646261619194) +zone = ('ndz027', 0.0045130671151688492) + +[fips3803547580] +centroid = (0.83444022240911453, -1.7071550789821517) +description = Logan Center township, ND +station = ('krdr', 0.0055520616651713629) +zone = ('ndz027', 0.0046015927357915569) + +[fips3803548100] +centroid = (0.83279617461361333, -1.7072460979026431) +description = Loretta township, ND +station = ('ks32', 0.0061340692036285496) +zone = ('ndz029', 0.004660489598509023) + +[fips3803550420] +centroid = (0.83902555141995405, -1.6960745595198929) +description = Manvel city, ND +station = ('kgfk', 0.0021411102850296651) +zone = ('ndz027', 0.0041885968222272968) + +[fips3803551980] +centroid = (0.83735539349884314, -1.7004623172594067) +description = Mekinock township, ND +station = ('krdr', 0.00038654246274812191) +zone = ('ndz027', 0.0010135194540392893) + +[fips3803552620] +centroid = (0.83294049588946084, -1.6961744970728621) +description = Michigan township, ND +station = ('kgfk', 0.003944882077802473) +zone = ('ndz027', 0.0047111351923130812) + +[fips3803554300] +centroid = (0.83586893148150454, -1.7074081866302757) +description = Moraine township, ND +station = ('krdr', 0.0051650616590455398) +zone = ('ndz027', 0.0043639783607420709) + +[fips3803556780] +centroid = (0.83777563387613829, -1.7082758072547348) +description = Niagara city, ND +station = ('kgfk', 0.0081535037199072825) +zone = ('ndz027', 0.005099055894719734) + +[fips3803556820] +centroid = (0.83725432148186008, -1.7068502048684131) +description = Niagara township, ND +station = ('krdr', 0.0046201121477569751) +zone = ('ndz027', 0.0040473784896693536) + +[fips3803558300] +centroid = (0.83307422301674861, -1.7028356683361461) +description = Northwood city, ND +station = ('krdr', 0.0045359743689557157) +zone = ('ndz027', 0.0035549240038732625) + +[fips3803558340] +centroid = (0.83277414855845322, -1.7027344741461155) +description = Northwood township, ND +station = ('krdr', 0.0047822332941912073) +zone = ('ndz027', 0.003814854920231244) + +[fips3803558900] +centroid = (0.83572282996982017, -1.6983019836178732) +description = Oakville township, ND +station = ('krdr', 0.0018256672308013719) +zone = ('ndz027', 0.0018953803314871382) + +[fips3803563300] +centroid = (0.83440376248104042, -1.7007301205798326) +description = Pleasant View township, ND +station = ('krdr', 0.0028213401051240955) +zone = ('ndz027', 0.0019964136178335246) + +[fips3803563380] +centroid = (0.83882738673668267, -1.70765464457395) +description = Plymouth township, ND +station = ('krdr', 0.0054115831697111082) +zone = ('ndz027', 0.0051065521774056001) + +[fips3803566260] +centroid = (0.83208399301233715, -1.6948701601629692) +description = Reynolds city, ND +station = ('kgfk', 0.0048799858271986272) +zone = ('ndz030', 0.0039014372926086927) + +[fips3803569540] +centroid = (0.83738139890469776, -1.6960089176867255) +description = Rye township, ND +station = ('kgfk', 0.00050749278872037082) +zone = ('ndz027', 0.0034504422558348773) + +[fips3803576420] +centroid = (0.8402724495441638, -1.7028890754112571) +description = Strabane township, ND +station = ('krdr', 0.0036665848349791913) +zone = ('ndz016', 0.0039938998382976158) + +[fips3803578660] +centroid = (0.83382429571608574, -1.6947907302287109) +description = Thompson city, ND +station = ('kgfk', 0.0031977278578970139) +zone = ('ndz027', 0.0048650653885242484) + +[fips3803580060] +centroid = (0.84025277968349388, -1.6964992155801957) +description = Turtle River township, ND +station = ('kgfk', 0.0033746254037016685) +zone = ('ndz027', 0.0048706627919518023) + +[fips3803580740] +centroid = (0.83268499714026134, -1.6980516161366743) +description = Union township, ND +station = ('kgfk', 0.0043863760862142779) +zone = ('ndz027', 0.0041880931892092702) + +[fips3803583140] +centroid = (0.83418266417139775, -1.6935642873633345) +description = Walle township, ND +station = ('kgfk', 0.0032183331398138457) +zone = ('ndz027', 0.0054241816164507161) + +[fips3803583740] +centroid = (0.8327928933946197, -1.7004973634707865) +description = Washington township, ND +station = ('krdr', 0.0043987011842684821) +zone = ('ndz027', 0.0036145942786433957) + +[fips3803585140] +centroid = (0.83888020039984801, -1.7030785832614388) +description = Wheatfield township, ND +station = ('krdr', 0.0026983841859946388) +zone = ('ndz027', 0.0028660472551713867) + +[fips38037] +centroid = (0.80909671521992532, -1.7739360536458502) +description = Grant County, ND +station = ('kbis', 0.012997637332999799) +zone = ('ndz042', 1.1386018124212547e-05) + +[fips3803712460] +centroid = (0.81022212097490387, -1.7727418295584656) +description = Carson city, ND +station = ('kbis', 0.011684788728957268) +zone = ('ndz042', 0.0013926554411870585) + +[fips3803721670] +centroid = (0.80835076149762297, -1.7708524582833041) +description = East Grant UT, ND +station = ('ky19', 0.010443895999422687) +zone = ('ndz042', 0.0022660143021390618) + +[fips3803723020] +centroid = (0.80987577783813813, -1.7774933662739723) +description = Elgin city, ND +station = ('kdik', 0.013411626980074549) +zone = ('ndz042', 0.0025648019801586008) + +[fips3803723580] +centroid = (0.81009801061179443, -1.7756251134827603) +description = Elm township, ND +station = ('kdik', 0.014419131399927466) +zone = ('ndz042', 0.0015249147061296888) + +[fips3803726580] +centroid = (0.80713871759857547, -1.7747457293391429) +description = Fisher township, ND +station = ('ky19', 0.013173602398330793) +zone = ('ndz042', 0.0020421375871446336) + +[fips3803728300] +centroid = (0.80828368849446885, -1.7642467012237708) +description = Freda township, ND +station = ('ky19', 0.0082927384118860366) +zone = ('ndz045', 0.003506373418623632) + +[fips3803739060] +centroid = (0.80438844521657538, -1.7767259100952855) +description = Howe township, ND +station = ('khei', 0.01038406520650342) +zone = ('ndz042', 0.0050932146596017122) + +[fips3803740] +centroid = (0.84659923317605823, -1.7005937405520817) +description = Auburn CDP, ND +station = ('kgaf', 0.0019347253751166595) +zone = ('ndz016', 0.0025208480125778342) + +[fips3803745140] +centroid = (0.81009347275573929, -1.7690960112839744) +description = Lark township, ND +station = ('ky19', 0.0083348254472900996) +zone = ('ndz042', 0.003489384882140067) + +[fips3803745820] +centroid = (0.811728916078028, -1.7776313520046352) +description = Leipzig township, ND +station = ('kdik', 0.012456744484906867) +zone = ('ndz042', 0.0036512142201044475) + +[fips3803745860] +centroid = (0.80922134918181021, -1.7739772783227823) +description = Leith city, ND +station = ('kbis', 0.01294964642325034) +zone = ('ndz042', 0.00011818912721855594) + +[fips3803753300] +centroid = (0.81009514827182127, -1.7777954129543225) +description = Minnie township, ND +station = ('kdik', 0.013119673467422707) +zone = ('ndz042', 0.0028329783729628458) + +[fips3803756420] +centroid = (0.80941063013918901, -1.7793922845001422) +description = New Leipzig city, ND +station = ('khei', 0.010510250302935162) +zone = ('ndz042', 0.0037695647387102618) + +[fips3803764580] +centroid = (0.8055992848384389, -1.7769134806299971) +description = Pretty Rock township, ND +station = ('khei', 0.010464957520686186) +zone = ('ndz042', 0.0040614658002689503) + +[fips3803765140] +centroid = (0.80834240137050595, -1.769185145248874) +description = Raleigh township, ND +station = ('ky19', 0.0097401223762347017) +zone = ('ndz042', 0.0033752475816587178) + +[fips3803767340] +centroid = (0.80858011521462758, -1.7756408912591981) +description = Rock township, ND +station = ('ky19', 0.012699503212327547) +zone = ('ndz042', 0.0012814804010960468) + +[fips3803785000] +centroid = (0.81244659546644804, -1.7799170351930469) +description = West Grant UT, ND +station = ('kdik', 0.010728205806657929) +zone = ('ndz042', 0.0052991096160759305) + +[fips3803786900] +centroid = (0.80394026211795577, -1.7728517853013412) +description = Winona township, ND +station = ('ky19', 0.014806617952653667) +zone = ('ndz042', 0.0052200633288382011) + +[fips38039] +centroid = (0.82839370374850529, -1.7144795800809487) +description = Griggs County, ND +station = ('ks32', 0.0016546333201155924) +zone = ('ndz028', 0.00012234072597980874) + +[fips3803900420] +centroid = (0.82967906892942911, -1.7156433656261785) +description = Addie township, ND +station = ('ks32', 0.0030299005587530073) +zone = ('ndz028', 0.0015748134422061619) + +[fips3803904540] +centroid = (0.82676250157629894, -1.7135449911730907) +description = Ball Hill township, ND +station = ('ks32', 0.0012623631163252603) +zone = ('ndz028', 0.0016699438776755192) + +[fips3803905180] +centroid = (0.82522807791111563, -1.7152762007114364) +description = Bartley township, ND +station = ('ks32', 0.0031903232053650398) +zone = ('ndz028', 0.0030944780024305145) + +[fips3803907020] +centroid = (0.83008560847209623, -1.7164567414174854) +description = Binford city, ND +station = ('ks32', 0.003711252426448328) +zone = ('ndz028', 0.0022100679844221489) + +[fips3803909660] +centroid = (0.82521275392028304, -1.7106370631997578) +description = Broadview township, ND +station = ('ks32', 0.0027071674944889909) +zone = ('ndz028', 0.0040616568551686905) + +[fips3803909940] +centroid = (0.82967027246999914, -1.717846965979869) +description = Bryan township, ND +station = ('ks32', 0.0042608254331271394) +zone = ('ndz028', 0.0026172425190154063) + +[fips3803914340] +centroid = (0.82815052702382508, -1.7156172205939835) +description = Clearfield township, ND +station = ('ks32', 0.0023118686686187805) +zone = ('ndz028', 0.0007267477950146017) + +[fips3803915900] +centroid = (0.82807001498543042, -1.7126167901702951) +description = Cooperstown city, ND +station = ('ks32', 0.00045210310791802801) +zone = ('ndz028', 0.0013319716696763391) + +[fips3803915940] +centroid = (0.8283289520332564, -1.7135813987412873) +description = Cooperstown township, ND +station = ('ks32', 0.0010969914113251363) +zone = ('ndz028', 0.00066372320743595422) + +[fips3803920060] +centroid = (0.82513700663074652, -1.7172947961644154) +description = Dover township, ND +station = ('ks32', 0.0042515880966198525) +zone = ('ndz028', 0.0036516904919234694) + +[fips3803933260] +centroid = (0.82525451964928331, -1.7130654968676902) +description = Greenfield township, ND +station = ('ks32', 0.0024881880287213583) +zone = ('ndz028', 0.0031946455023187997) + +[fips3803935020] +centroid = (0.8257882413345432, -1.7137203094964535) +description = Hannaford city, ND +station = ('ks32', 0.0021348386031930593) +zone = ('ndz028', 0.0025602033132790256) + +[fips3803937100] +centroid = (0.82685894847076424, -1.7160128343755332) +description = Helena township, ND +station = ('ks32', 0.0026644369963522542) +zone = ('ndz028', 0.0017312496507203969) + +[fips3803942820] +centroid = (0.82827964648188745, -1.7180287594747565) +description = Kingsley township, ND +station = ('ks32', 0.0039404823610077605) +zone = ('ndz028', 0.0023448101971229366) + +[fips3803945900] +centroid = (0.83129110738644862, -1.7112562362051953) +description = Lenora township, ND +station = ('ks32', 0.003671844697696732) +zone = ('ndz028', 0.0037438485904208322) + +[fips3803948820] +centroid = (0.82692780170975533, -1.7182299959375116) +description = Mabel township, ND +station = ('ks32', 0.0041044087575979127) +zone = ('ndz028', 0.0028291552650631735) + +[fips3803962580] +centroid = (0.83140579297159722, -1.7135986600475897) +description = Pilot Mound township, ND +station = ('ks32', 0.0038287977353927672) +zone = ('ndz028', 0.0031882494253503741) + +[fips3803967980] +centroid = (0.82974080122507221, -1.711097009817536) +description = Romness township, ND +station = ('ks32', 0.0022045971222734947) +zone = ('ndz028', 0.0027563663465947005) + +[fips3803968460] +centroid = (0.83132508894698498, -1.7179483870627024) +description = Rosendal township, ND +station = ('ks32', 0.0052880027132147208) +zone = ('ndz028', 0.0038045523375114599) + +[fips3803977340] +centroid = (0.82689842781844425, -1.7115584225118856) +description = Sverdrup township, ND +station = ('ks32', 0.00092107184593735367) +zone = ('ndz028', 0.0024593209003626816) + +[fips3803980580] +centroid = (0.82956349322636203, -1.7136848094994681) +description = Tyrol township, ND +station = ('ks32', 0.0021091766294079385) +zone = ('ndz028', 0.0014094151921100724) + +[fips3803983660] +centroid = (0.82814790902994695, -1.710970194194086) +description = Washburn township, ND +station = ('ks32', 0.00099415410322488515) +zone = ('ndz028', 0.0024317967116859306) + +[fips3803986300] +centroid = (0.8313114230189419, -1.7158024872940827) +description = Willow township, ND +station = ('ks32', 0.0043418028229800865) +zone = ('ndz028', 0.0031409208741427518) + +[fips3804020] +centroid = (0.82102354483647622, -1.7015383476498462) +description = Ayr city, ND +station = ('kbac', 0.006513574373740989) +zone = ('ndz039', 0.0034534446927477476) + +[fips38041] +centroid = (0.8104425735127232, -1.7882361645259706) +description = Hettinger County, ND +station = ('kdik', 0.0075741318666464217) +zone = ('ndz041', 4.7476397438896115e-05) + +[fips3804100220] +centroid = (0.81169467271810392, -1.7864072165495131) +description = Acme township, ND +station = ('kdik', 0.0074033236606327662) +zone = ('ndz041', 0.0018220919601801883) + +[fips3804103460] +centroid = (0.80712259075628701, -1.7878227832926357) +description = Ashby township, ND +station = ('khei', 0.0047564557697275835) +zone = ('ndz044', 0.0028180246973695329) + +[fips3804104220] +centroid = (0.80707160968883629, -1.7811918236787034) +description = Baer township, ND +station = ('khei', 0.0082020825097686954) +zone = ('ndz044', 0.0062594793065205529) + +[fips3804105680] +centroid = (0.81007183067301458, -1.7841880653121871) +description = Beery township, ND +station = ('khei', 0.0086129251202987939) +zone = ('ndz041', 0.0028339745990246181) + +[fips3804107380] +centroid = (0.81157710733968969, -1.7909437810610516) +description = Black Butte township, ND +station = ('kdik', 0.005693641646346401) +zone = ('ndz041', 0.0021839776968112915) + +[fips3804109580] +centroid = (0.80814837311756171, -1.7840512140455382) +description = Brittian township, ND +station = ('khei', 0.0072289296318084574) +zone = ('ndz041', 0.0036820261319339383) + +[fips3804111820] +centroid = (0.81301269300933254, -1.7863491668985916) +description = Campbell township, ND +station = ('kdik', 0.006590808072774553) +zone = ('ndz041', 0.002926981160892675) + +[fips3804111980] +centroid = (0.80855838586544015, -1.7821539189755728) +description = Cannon Ball township, ND +station = ('khei', 0.0084821002371885269) +zone = ('ndz041', 0.0046052638712432686) + +[fips3804112780] +centroid = (0.80844061104751552, -1.7867024913523655) +description = Castle Rock township, ND +station = ('khei', 0.006283610477498233) +zone = ('ndz041', 0.0022399984272667224) + +[fips3804113273] +centroid = (0.8091641198356373, -1.790870843751611) +description = Central Hettinger UT, ND +station = ('khei', 0.0060417812400799884) +zone = ('ndz041', 0.0021784721567370473) + +[fips3804113980] +centroid = (0.80863727474763036, -1.7888802259265413) +description = Chilton township, ND +station = ('khei', 0.0058043545980639112) +zone = ('ndz041', 0.0018137831879290569) + +[fips3804114220] +centroid = (0.81306297594508248, -1.7929890800515862) +description = Clark township, ND +station = ('kdik', 0.0038417423745307328) +zone = ('ndz033', 0.004040795305128856) + +[fips3804125780] +centroid = (0.81010455559648942, -1.7891450272806537) +description = Farina township, ND +station = ('khei', 0.0071632526676194339) +zone = ('ndz041', 0.00067158806628655619) + +[fips3804136220] +centroid = (0.81151560193684935, -1.7930584394360605) +description = Havelock township, ND +station = ('kdik', 0.0053559721962282659) +zone = ('ndz041', 0.0034804230597849329) + +[fips3804137940] +centroid = (0.81297269006287676, -1.7842492216491772) +description = Highland township, ND +station = ('kdik', 0.0078314566435943086) +zone = ('ndz041', 0.0037780027952465842) + +[fips3804142100] +centroid = (0.80861961201560018, -1.7954537467547902) +description = Kennedy township, ND +station = ('khei', 0.0060987120967089916) +zone = ('ndz044', 0.005815800659484993) + +[fips3804142420] +centroid = (0.8069459983425703, -1.7854671822143888) +description = Kern township, ND +station = ('khei', 0.0056938407960501949) +zone = ('ndz044', 0.0036636810790662989) + +[fips3804143620] +centroid = (0.81305667530648273, -1.7954023991681964) +description = Kunze township, ND +station = ('kdik', 0.0038470891546092049) +zone = ('ndz033', 0.0047028912128626935) + +[fips3804149660] +centroid = (0.81309540416258441, -1.7887377721529936) +description = Madison township, ND +station = ('kdik', 0.0052780024096271156) +zone = ('ndz041', 0.0027127151641702855) + +[fips3804152540] +centroid = (0.8070684855494753, -1.7832933920843224) +description = Merrill township, ND +station = ('khei', 0.0069569488737108789) +zone = ('ndz044', 0.004961527149504861) + +[fips3804154620] +centroid = (0.80938111662153778, -1.7858154801199166) +description = Mott city, ND +station = ('khei', 0.0074058376473080537) +zone = ('ndz041', 0.0019772790927035447) + +[fips3804154660] +centroid = (0.81021163154609932, -1.7867034687367467) +description = Mott township, ND +station = ('khei', 0.0078333420457143265) +zone = ('ndz041', 0.0010972872219398532) + +[fips3804156180] +centroid = (0.81228970781998633, -1.7953685048741226) +description = New England city, ND +station = ('kdik', 0.0045950658310586019) +zone = ('ndz033', 0.0053518407546376328) + +[fips3804156220] +centroid = (0.81155869411608106, -1.7952988487836756) +description = New England township, ND +station = ('kdik', 0.0053094026576992271) +zone = ('ndz033', 0.0059857125966141563) + +[fips3804159100] +centroid = (0.81303066990062811, -1.7820589381576792) +description = Odessa township, ND +station = ('kdik', 0.0091459925285780081) +zone = ('ndz041', 0.0050192450053894305) + +[fips3804166020] +centroid = (0.81022020111272663, -1.7899783521853112) +description = Regent city, ND +station = ('khei', 0.0071641347455049876) +zone = ('ndz041', 0.0011905265740092784) + +[fips3804166740] +centroid = (0.81298684468311044, -1.7907458956304607) +description = Rifle township, ND +station = ('kdik', 0.0045007155211307746) +zone = ('ndz041', 0.0030957206907848899) + +[fips3804169820] +centroid = (0.81158743968886138, -1.7887337753490065) +description = St. Croix township, ND +station = ('kdik', 0.0064334679900055316) +zone = ('ndz041', 0.0012277273259118069) + +[fips3804173860] +centroid = (0.80997398751514771, -1.7822968788946036) +description = Solon township, ND +station = ('khei', 0.0093776316931286942) +zone = ('ndz041', 0.0041407149124119145) + +[fips3804175860] +centroid = (0.81151268723699843, -1.7842440729278837) +description = Steiner township, ND +station = ('kdik', 0.0086487244637821186) +zone = ('ndz041', 0.0029881810985487064) + +[fips3804176740] +centroid = (0.80996140369124092, -1.7952046184573605) +description = Strehlow township, ND +station = ('kdik', 0.0068874630233235019) +zone = ('ndz044', 0.0067188001190144541) + +[fips3804178460] +centroid = (0.8100952180849913, -1.7930734143610427) +description = Tepee Butte township, ND +station = ('kdik', 0.0067631805702953142) +zone = ('ndz041', 0.0033243242197457182) + +[fips3804182620] +centroid = (0.80840786867074821, -1.7929187781893161) +description = Wagendorf township, ND +station = ('khei', 0.0053464735116502361) +zone = ('ndz044', 0.0045463693192829748) + +[fips3804183060] +centroid = (0.81167097114686193, -1.7818541586765431) +description = Walker township, ND +station = ('kdik', 0.0099120429449085345) +zone = ('ndz042', 0.006023360524334144) + +[fips38043] +centroid = (0.81917700394115867, -1.7408389910678461) +description = Kidder County, ND +station = ('k46d', 0.011410711593331624) +zone = ('ndz036', 0.00089999866083105204) + +[fips3804301580] +centroid = (0.81881544153331565, -1.7432898522166667) +description = Allen township, ND +station = ('k46d', 0.012767378137899986) +zone = ('ndz036', 0.0016780043352395909) + +[fips3804303700] +centroid = (0.82406242486358616, -1.7440797707828268) +description = Atwood township, ND +station = ('k5h4', 0.010049890563167126) +zone = ('ndz036', 0.0044656149238661387) + +[fips3804304300] +centroid = (0.81477306699947905, -1.7454848131905598) +description = Baker township, ND +station = ('k7l2', 0.0085590448061565651) +zone = ('ndz036', 0.0058617669161547667) + +[fips3804310180] +centroid = (0.82083290252228092, -1.739169967610749) +description = Buckeye township, ND +station = ('k46d', 0.0094049832491802602) +zone = ('ndz036', 0.0018080929674744505) + +[fips3804310740] +centroid = (0.81460347335606276, -1.7412119330224123) +description = Bunker township, ND +station = ('k7l2', 0.0097966075503261064) +zone = ('ndz047', 0.0051020870241593394) + +[fips3804313900] +centroid = (0.82086040891129242, -1.7458462708786477) +description = Chestina township, ND +station = ('kbis', 0.0096224081160350243) +zone = ('ndz036', 0.0031035029816857901) + +[fips3804314420] +centroid = (0.82225305948133609, -1.7436635970226888) +description = Clear Lake township, ND +station = ('k46d', 0.010706645956928345) +zone = ('ndz036', 0.0027300261674762928) + +[fips3804317020] +centroid = (0.81630754302453989, -1.7457817111496166) +description = Crown Hill township, ND +station = ('kbis', 0.0086572993524694723) +zone = ('ndz036', 0.0046836021820836678) + +[fips3804317220] +centroid = (0.8176656709819794, -1.7371199038713565) +description = Crystal Springs township, ND +station = ('k46d', 0.011431019527715042) +zone = ('ndz036', 0.003765173057428235) + +[fips3804318260] +centroid = (0.81799941284154565, -1.7410292145030211) +description = Dawson city, ND +station = ('k46d', 0.012437222438191271) +zone = ('ndz036', 0.0019850051877816416) + +[fips3804325100] +centroid = (0.81921428417398134, -1.7457348141526154) +description = Excelsior township, ND +station = ('kbis', 0.0090811686742726314) +zone = ('ndz036', 0.002990567899858318) + +[fips3804328620] +centroid = (0.82369297356752402, -1.7398656558505941) +description = Frettim township, ND +station = ('k46d', 0.0077630885398949287) +zone = ('ndz036', 0.0038944054051721819) + +[fips3804331780] +centroid = (0.81460410167459352, -1.7367219513486094) +description = Graf township, ND +station = ('k7l2', 0.011890238501746472) +zone = ('ndz047', 0.0037859131389414978) + +[fips3804336580] +centroid = (0.82074115056350361, -1.7440198187230209) +description = Haynes township, ND +station = ('k46d', 0.011804220757922762) +zone = ('ndz036', 0.0018934026631739263) + +[fips3804342580] +centroid = (0.82405240667367974, -1.7458337045080334) +description = Kickapoo UT, ND +station = ('k5h4', 0.010124951641782804) +zone = ('ndz036', 0.0050490762403134779) + +[fips3804344180] +centroid = (0.82233695745847946, -1.7391144486872432) +description = Lake Williams township, ND +station = ('k46d', 0.0082537351479778139) +zone = ('ndz036', 0.002876926965129731) + +[fips3804350260] +centroid = (0.81517349788976412, -1.7431725835442251) +description = Manning township, ND +station = ('k7l2', 0.0095643940234595715) +zone = ('ndz036', 0.0049219111625354505) + +[fips3804352420] +centroid = (0.82474301600540134, -1.7422861308171373) +description = Merkel township, ND +station = ('k46d', 0.0086810906581952819) +zone = ('ndz036', 0.0048143247675055331) + +[fips3804358260] +centroid = (0.8250438060486901, -1.746050771107104) +description = Northwest township, ND +station = ('k5h4', 0.0091600665948148672) +zone = ('ndz036', 0.0059562795714314153) + +[fips3804361220] +centroid = (0.81478849571006673, -1.7385004767629766) +description = Peace township, ND +station = ('k7l2', 0.011137525292023963) +zone = ('ndz047', 0.0042559297764011789) + +[fips3804361980] +centroid = (0.82344543351971367, -1.7375694483267927) +description = Petersville township, ND +station = ('k46d', 0.006726887100400902) +zone = ('ndz036', 0.0043916323706208954) + +[fips3804362060] +centroid = (0.82233049974024719, -1.7369562618006895) +description = Pettibone city, ND +station = ('k46d', 0.0072985295192878807) +zone = ('ndz036', 0.0038950959097941431) + +[fips3804362100] +centroid = (0.82217348992073769, -1.7373838674674282) +description = Pettibone township, ND +station = ('k46d', 0.0075994058225228815) +zone = ('ndz036', 0.003568939417185875) + +[fips3804363140] +centroid = (0.81781884107713432, -1.745576896761895) +description = Pleasant Hill township, ND +station = ('kbis', 0.008882797867326854) +zone = ('ndz036', 0.0035168937601988315) + +[fips3804364940] +centroid = (0.8208942508454885, -1.7420514887524992) +description = Quinby township, ND +station = ('k46d', 0.0106939674414562) +zone = ('ndz036', 0.0010101022230436271) + +[fips3804366220] +centroid = (0.82491168462431408, -1.737669595319272) +description = Rexine township, ND +station = ('k46d', 0.0058428387003661838) +zone = ('ndz036', 0.0055936991155725322) + +[fips3804367180] +centroid = (0.82278756656475938, -1.7414943796552624) +description = Robinson city, ND +station = ('k46d', 0.0091908332543859505) +zone = ('ndz036', 0.0028283941110478598) + +[fips3804367220] +centroid = (0.82231943435278954, -1.7417647835162742) +description = Robinson township, ND +station = ('k46d', 0.0096192947212910863) +zone = ('ndz036', 0.0023676074389635975) + +[fips3804372860] +centroid = (0.81761776169401201, -1.7411243698538399) +description = Sibley township, ND +station = ('k7l2', 0.012381192622531128) +zone = ('ndz036', 0.002354787735972412) + +[fips3804374190] +centroid = (0.81615756688191599, -1.7412388634527705) +description = South Kidder UT, ND +station = ('k7l2', 0.011076198917619648) +zone = ('ndz036', 0.0038055205617623243) + +[fips3804375780] +centroid = (0.8177902874905717, -1.743888814309366) +description = Steele city, ND +station = ('k7l2', 0.011768137839859772) +zone = ('ndz036', 0.0027176968001930489) + +[fips3804376060] +centroid = (0.82526130898007366, -1.7437568499646228) +description = Stewart township, ND +station = ('k5h4', 0.0088546453795435489) +zone = ('ndz036', 0.0055216129970843365) + +[fips3804377940] +centroid = (0.81609611383895331, -1.7367221607881196) +description = Tanner township, ND +station = ('k46d', 0.012798662248580017) +zone = ('ndz036', 0.0050550728995626187) + +[fips3804377980] +centroid = (0.81806393766399188, -1.7388211810130305) +description = Tappen city, ND +station = ('k46d', 0.011583051535689922) +zone = ('ndz036', 0.0026300466577589055) + +[fips3804378020] +centroid = (0.81753358446418833, -1.7391766173151992) +description = Tappen township, ND +station = ('k46d', 0.012164836252334551) +zone = ('ndz036', 0.0028954715192567324) + +[fips3804380140] +centroid = (0.82282720299207224, -1.7452141824367458) +description = Tuttle city, ND +station = ('k5h4', 0.011308523819651192) +zone = ('ndz036', 0.0038284639488269248) + +[fips3804380180] +centroid = (0.82214083481043299, -1.7462313079649301) +description = Tuttle township, ND +station = ('kbis', 0.010039537299677789) +zone = ('ndz036', 0.003897850639832728) + +[fips3804381140] +centroid = (0.81604778567196556, -1.7391269626979797) +description = Valley township, ND +station = ('k7l2', 0.011811276919549399) +zone = ('ndz036', 0.0042322317457203062) + +[fips3804381820] +centroid = (0.81917700394115867, -1.7408389910678461) +description = Vernon township, ND +station = ('k46d', 0.011410711593331624) +zone = ('ndz036', 0.00089999866083105204) + +[fips3804383100] +centroid = (0.82508298869039731, -1.7395147748577731) +description = Wallace township, ND +station = ('k46d', 0.0068348600412325737) +zone = ('ndz036', 0.0052973436667650255) + +[fips3804384260] +centroid = (0.82084464858814687, -1.7371969077979545) +description = Weiser township, ND +station = ('k46d', 0.0086220135998124302) +zone = ('ndz036', 0.0030593865682271176) + +[fips3804384980] +centroid = (0.81926091937159462, -1.7387987535321423) +description = Westford township, ND +station = ('k46d', 0.010543921060790568) +zone = ('ndz036', 0.0019658474434344395) + +[fips3804386100] +centroid = (0.81906893315387519, -1.736425472268573) +description = Williams township, ND +station = ('k46d', 0.0099545046908890225) +zone = ('ndz036', 0.0035705551863911005) + +[fips3804387460] +centroid = (0.81756732167862933, -1.7432282071874863) +description = Woodlawn township, ND +station = ('k7l2', 0.011721104593858648) +zone = ('ndz036', 0.0026699878673673932) + +[fips3804460] +centroid = (0.83691598940636103, -1.7546542669350549) +description = Balfour city, ND +station = ('krug', 0.0096886137717576981) +zone = ('ndz012', 0.0050778191190977177) + +[fips38045] +centroid = (0.81095318703868657, -1.7196040936576067) +description = LaMoure County, ND +station = ('k2d5', 0.007397952212722496) +zone = ('ndz048', 0.00017058757589621145) + +[fips3804500660] +centroid = (0.81322907892999474, -1.7207024468091794) +description = Adrian township, ND +station = ('kjms', 0.0059846125239528102) +zone = ('ndz048', 0.0024875668043527334) + +[fips3804504180] +centroid = (0.80842219782390712, -1.7185076603682112) +description = Badger township, ND +station = ('k2d5', 0.0052821439246371728) +zone = ('ndz048', 0.0025562595260344274) + +[fips3804506300] +centroid = (0.80945400157110114, -1.718948059298367) +description = Berlin city, ND +station = ('k2d5', 0.0060920192573177484) +zone = ('ndz048', 0.0014839945400850218) + +[fips3804507420] +centroid = (0.81145739520629534, -1.7122931363138052) +description = Black Loam township, ND +station = ('k2d5', 0.0055951384076595454) +zone = ('ndz048', 0.0051869285896538001) + +[fips3804507980] +centroid = (0.81157077179450487, -1.7252286789715463) +description = Bluebird township, ND +station = ('kjms', 0.0078763090422264096) +zone = ('ndz048', 0.0038328437038877027) + +[fips3804518420] +centroid = (0.80841254615314351, -1.716528491903035) +description = Dean township, ND +station = ('k2d5', 0.0041307362509697479) +zone = ('ndz048', 0.0032893779130800573) + +[fips3804519580] +centroid = (0.81221889981223294, -1.7185940541661853) +description = Dickey city, ND +station = ('kjms', 0.0073181312772045756) +zone = ('ndz048', 0.0016107885958798788) + +[fips3804522140] +centroid = (0.80917544702248279, -1.7228562703726029) +description = Edgeley city, ND +station = ('k2d5', 0.0083144559201334765) +zone = ('ndz048', 0.0026935801851543598) + +[fips3804530420] +centroid = (0.81158236078073809, -1.7143061990730555) +description = Gladstone township, ND +station = ('k2d5', 0.0059631312357468031) +zone = ('ndz048', 0.003837069851180618) + +[fips3804530540] +centroid = (0.81311535327593487, -1.7270612397795553) +description = Glen township, ND +station = ('kjms', 0.0069323249465700846) +zone = ('ndz037', 0.0068266808360280384) + +[fips3804530820] +centroid = (0.81158513585424874, -1.7230763563912794) +description = Glenmore township, ND +station = ('kjms', 0.0075882349761722621) +zone = ('ndz048', 0.0024008161349420619) + +[fips3804531100] +centroid = (0.8084922378867897, -1.7232275193577946) +description = Golden Glen township, ND +station = ('k2d5', 0.0083132124776686012) +zone = ('ndz048', 0.0033371715234563394) + +[fips3804532420] +centroid = (0.81006530314161207, -1.7164959938723627) +description = Grand Rapids township, ND +station = ('k2d5', 0.0052942343772964017) +zone = ('ndz048', 0.0023803845895610338) + +[fips3804532540] +centroid = (0.81164561151283032, -1.7163172372503734) +description = Grandview township, ND +station = ('k2d5', 0.0065559982697324225) +zone = ('ndz048', 0.0025142181457387309) + +[fips3804533460] +centroid = (0.81018594029950997, -1.7119322894909554) +description = Greenville township, ND +station = ('k2d5', 0.0043148060613156921) +zone = ('ndz048', 0.0054382360350738578) + +[fips3804537300] +centroid = (0.81013625077570572, -1.7185573847986009) +description = Henrietta township, ND +station = ('k2d5', 0.006313655468512213) +zone = ('ndz048', 0.001082893318073181) + +[fips3804541180] +centroid = (0.81202940941534396, -1.7260914301273922) +description = Jud city, ND +station = ('kjms', 0.0076302091834895523) +zone = ('ndz048', 0.0045161483708850668) + +[fips3804542140] +centroid = (0.81297651233393864, -1.7228969365441744) +description = Kennison township, ND +station = ('kjms', 0.0061914055560714082) +zone = ('ndz048', 0.0030427559628210129) + +[fips3804543580] +centroid = (0.80812666122166688, -1.7269445645190595) +description = Kulm city, ND +station = ('k2d5', 0.010702095561714852) +zone = ('ndz050', 0.0068352977171680105) + +[fips3804544540] +centroid = (0.8090852309534472, -1.7155906915893533) +description = LaMoure city, ND +station = ('k2d5', 0.0041382234265744241) +zone = ('ndz048', 0.0033660049169389897) + +[fips3804547180] +centroid = (0.81322099805555792, -1.711929252618057) +description = Litchville township, ND +station = ('kbac', 0.0061106859662201684) +zone = ('ndz038', 0.0059710791972861811) + +[fips3804550780] +centroid = (0.81347548451379126, -1.7164321148217399) +description = Marion city, ND +station = ('kjms', 0.0068519126936947691) +zone = ('ndz048', 0.0035056848077649311) + +[fips3804552860] +centroid = (0.81317232082271984, -1.725125617279216) +description = Mikkelson township, ND +station = ('kjms', 0.0063279315742659622) +zone = ('ndz048', 0.0043692168004107945) + +[fips3804557300] +centroid = (0.81018128027040714, -1.7229054013910465) +description = Nora township, ND +station = ('k2d5', 0.0087889216811214699) +zone = ('ndz048', 0.0022555305739820689) + +[fips3804557340] +centroid = (0.80878910093926126, -1.7274524378780973) +description = Norden township, ND +station = ('kjms', 0.010994701110256362) +zone = ('ndz050', 0.006889419173398705) + +[fips3804560420] +centroid = (0.80841891660491338, -1.7123035908360249) +description = Ovid township, ND +station = ('k2d5', 0.0025690297591333426) +zone = ('ndz048', 0.0056841208991373826) + +[fips3804561380] +centroid = (0.81006621071282314, -1.714129414673121) +description = Pearl Lake township, ND +station = ('k2d5', 0.0044879176440065496) +zone = ('ndz048', 0.003960137784724929) + +[fips3804563500] +centroid = (0.80867436299423523, -1.7250891224445568) +description = Pomona View township, ND +station = ('k2d5', 0.0095943379347483929) +zone = ('ndz048', 0.0042535017134953407) + +[fips3804564220] +centroid = (0.81322637366965422, -1.7141236027267117) +description = Prairie township, ND +station = ('kbac', 0.0064797911478381657) +zone = ('ndz048', 0.0045660585364128339) + +[fips3804565260] +centroid = (0.81158435045608535, -1.7274425767678234) +description = Raney township, ND +station = ('kjms', 0.0084103024817368394) +zone = ('ndz048', 0.0053384330074424929) + +[fips3804565540] +centroid = (0.81013625077570572, -1.7250980410770345) +description = Ray township, ND +station = ('kjms', 0.0092433318694772806) +zone = ('ndz048', 0.0037367561501553425) + +[fips3804568060] +centroid = (0.81158145320952702, -1.7186906755935754) +description = Roscoe township, ND +station = ('k2d5', 0.0074235142977101248) +zone = ('ndz048', 0.001059346411442285) + +[fips3804569220] +centroid = (0.81171090428014747, -1.7207083285687585) +description = Russell township, ND +station = ('kjms', 0.0074876965591126401) +zone = ('ndz048', 0.0010962351173839243) + +[fips3804569420] +centroid = (0.80842003361563464, -1.7141316661478561) +description = Ryan township, ND +station = ('k2d5', 0.0030085452782603063) +zone = ('ndz048', 0.0045724916326258915) + +[fips3804570660] +centroid = (0.81323033556705615, -1.7185010106637615) +description = Saratoga township, ND +station = ('kjms', 0.0063934061064102902) +zone = ('ndz048', 0.0025578242763937315) + +[fips3804572460] +centroid = (0.81297501135078187, -1.7163146890696654) +description = Sheridan township, ND +station = ('kjms', 0.0073146941082391633) +zone = ('ndz048', 0.0032044584503790521) + +[fips3804577380] +centroid = (0.81019279944347034, -1.7272593346496565) +description = Swede township, ND +station = ('kjms', 0.0096336913118064173) +zone = ('ndz048', 0.0052005443977060448) + +[fips3804580] +centroid = (0.84065823712202459, -1.7459688453520155) +description = Balta city, ND +station = ('krug', 0.0039188477801535542) +zone = ('ndz013', 0.0016398938732190868) + +[fips3804581900] +centroid = (0.8092400940179767, -1.711668064095496) +description = Verona city, ND +station = ('k2d5', 0.0033698629856094503) +zone = ('ndz048', 0.0058060652166408684) + +[fips3804583380] +centroid = (0.81006650741879604, -1.7208831581999307) +description = Wano township, ND +station = ('k2d5', 0.007537977730414991) +zone = ('ndz048', 0.0010799622962866923) + +[fips3804586340] +centroid = (0.80864856702789079, -1.7207259389409111) +description = Willowbank township, ND +station = ('k2d5', 0.0067559960081269872) +zone = ('ndz048', 0.0022751483670461412) + +[fips38047] +centroid = (0.81104190212456562, -1.7366826290805619) +description = Logan County, ND +station = ('kjms', 0.01289128839383913) +zone = ('ndz047', 0.00038601281747107659) + +[fips3804721675] +centroid = (0.81111916785055138, -1.7334650447913402) +description = East Logan UT, ND +station = ('kjms', 0.011204593262931078) +zone = ('ndz047', 0.0019119316607658257) + +[fips3804726500] +centroid = (0.81314827018562741, -1.7296739976697908) +description = Finn township, ND +station = ('kjms', 0.0079456125756005424) +zone = ('ndz047', 0.0050573317768849609) + +[fips3804728380] +centroid = (0.80859564864497036, -1.7295457159697691) +description = Fredonia city, ND +station = ('kjms', 0.011732162834781667) +zone = ('ndz050', 0.0056376102239733229) + +[fips3804728860] +centroid = (0.81378426816505411, -1.7303439946630463) +description = Gackle city, ND +station = ('kjms', 0.0078033403752619948) +zone = ('ndz047', 0.0049979430942471139) + +[fips3804730620] +centroid = (0.81327217110922645, -1.7402642715984571) +description = Glendale township, ND +station = ('k7l2', 0.0092059854916616592) +zone = ('ndz047', 0.003704424370699871) + +[fips3804733940] +centroid = (0.81171525014998491, -1.7297418560711084) +description = Gutschmidt township, ND +station = ('kjms', 0.009104476249312354) +zone = ('ndz047', 0.0045399633992216663) + +[fips3804734060] +centroid = (0.8085516139879424, -1.7296259487554835) +description = Haag township, ND +station = ('kjms', 0.0117959797701199) +zone = ('ndz050', 0.005566984974534759) + +[fips3804740] +centroid = (0.84643995442852116, -1.75597157164129) +description = Bantry city, ND +station = ('krug', 0.0070286380781524257) +zone = ('ndz012', 0.0045976818081959739) + +[fips3804740620] +centroid = (0.8101035083989383, -1.7301745755525555) +description = Janke township, ND +station = ('kjms', 0.010615673565798739) +zone = ('ndz047', 0.0042230596691829464) + +[fips3804745740] +centroid = (0.80782173474805097, -1.7340503758625816) +description = Lehr city, ND +station = ('kjms', 0.013999864312276684) +zone = ('ndz050', 0.0031967858537382599) + +[fips3804755420] +centroid = (0.81164625728465367, -1.7412872963395134) +description = Napoleon city, ND +station = ('k7l2', 0.0075817904349955436) +zone = ('ndz047', 0.0035892635724733054) + +[fips3804765700] +centroid = (0.81021557599020888, -1.7385705168258589) +description = Red Lake township, ND +station = ('k7l2', 0.0083982747517347238) +zone = ('ndz047', 0.0017405342733912723) + +[fips3804771580] +centroid = (0.81324311137718086, -1.7429438581457513) +description = Sealy township, ND +station = ('k7l2', 0.0079974603140570543) +zone = ('ndz047', 0.0052217286167872065) + +[fips3804785065] +centroid = (0.81092222489775623, -1.7395342701855179) +description = West Logan UT, ND +station = ('k7l2', 0.0081394986041730694) +zone = ('ndz047', 0.0022917031009732831) + +[fips38049] +centroid = (0.84183935378672681, -1.7563818461885565) +description = McHenry County, ND +station = ('krug', 0.0075778301911611336) +zone = ('ndz012', 3.7660072335865388e-05) + +[fips3804902220] +centroid = (0.83571719255633625, -1.749557486640211) +description = Anamoose city, ND +station = ('k5h4', 0.0039769427636930999) +zone = ('ndz022', 0.0055051568715508113) + +[fips3804902260] +centroid = (0.83591657897008398, -1.7500447476607828) +description = Anamoose township, ND +station = ('k5h4', 0.0043565538998273264) +zone = ('ndz022', 0.0056391367202911812) + +[fips3804904460] +centroid = (0.83691598940636103, -1.7546542669350549) +description = Balfour city, ND +station = ('krug', 0.0096886137717576981) +zone = ('ndz012', 0.0050778191190977177) + +[fips3804904500] +centroid = (0.83715202773440067, -1.7542421597920741) +description = Balfour township, ND +station = ('krug', 0.0093335297407688388) +zone = ('ndz012', 0.0049233522164758648) + +[fips3804904740] +centroid = (0.84643995442852116, -1.75597157164129) +description = Bantry city, ND +station = ('krug', 0.0070286380781524257) +zone = ('ndz012', 0.0045976818081959739) + +[fips3804904780] +centroid = (0.84664277914089558, -1.7556661564754836) +description = Bantry township, ND +station = ('krug', 0.0068909311651701409) +zone = ('ndz012', 0.0048173310466554913) + +[fips3804906180] +centroid = (0.8378237002437382, -1.7578970188720902) +description = Bergen city, ND +station = ('kmot', 0.0080060738028043376) +zone = ('ndz012', 0.0041454542802044506) + +[fips3804906580] +centroid = (0.84358131455326479, -1.7504163282585323) +description = Berwick township, ND +station = ('krug', 0.003251878620796443) +zone = ('ndz013', 0.0039914350901614415) + +[fips3804907300] +centroid = (0.83594398063934028, -1.7609467723004402) +description = Bjornson township, ND +station = ('kn60', 0.007638299886210672) +zone = ('ndz012', 0.0066335058509455645) + +[fips3804909860] +centroid = (0.83742454344380701, -1.7609689205286478) +description = Brown township, ND +station = ('kmot', 0.006725444082975221) +zone = ('ndz012', 0.0053641172132942241) + +[fips3804916260] +centroid = (0.83596792655667762, -1.7566890241369075) +description = Cottonwood Lake township, ND +station = ('kn60', 0.010143243435796933) +zone = ('ndz012', 0.0058871090289311923) + +[fips3804918540] +centroid = (0.84816994223639053, -1.7602119188721805) +description = Deep River township, ND +station = ('kmot', 0.0076169957806365473) +zone = ('ndz004', 0.0034200226104275466) + +[fips3804918620] +centroid = (0.84466533855167836, -1.7636472678921733) +description = Deering city, ND +station = ('kmot', 0.0035263694102925787) +zone = ('ndz012', 0.005560416989866545) + +[fips3804918660] +centroid = (0.84487332943863858, -1.7625013370651914) +description = Deering township, ND +station = ('kmot', 0.0042575443463567803) +zone = ('ndz012', 0.0050396286020398268) + +[fips3804919020] +centroid = (0.8436877796376363, -1.7547669628448561) +description = Denbigh township, ND +station = ('krug', 0.006052088173322083) +zone = ('ndz012', 0.0021446483758225175) + +[fips3804920300] +centroid = (0.83640874436585388, -1.7518641137796467) +description = Drake city, ND +station = ('k5h4', 0.0056708365333618602) +zone = ('ndz022', 0.006070799561998871) + +[fips3804921679] +centroid = (0.84187703544527737, -1.7516917625160124) +description = East McHenry UT, ND +station = ('krug', 0.0047812831286150369) +zone = ('ndz013', 0.0045712181263345029) + +[fips3804922580] +centroid = (0.84359052989171524, -1.7594843783734868) +description = Egg Creek township, ND +station = ('kmot', 0.0056087763685587523) +zone = ('ndz012', 0.0026718023214989065) + +[fips3804925620] +centroid = (0.84048202868074329, -1.7571670872723213) +description = Falsen township, ND +station = ('krug', 0.0086274242584899134) +zone = ('ndz012', 0.0014548917814601178) + +[fips3804930300] +centroid = (0.84493619619829552, -1.7579396572657164) +description = Gilmore township, ND +station = ('krug', 0.0080970313930815198) +zone = ('ndz012', 0.0032419040754946586) + +[fips3804932660] +centroid = (0.84241087930358483, -1.7600714024141024) +description = Granville city, ND +station = ('kmot', 0.0050964863508821748) +zone = ('ndz012', 0.0024850555364349281) + +[fips3804932700] +centroid = (0.84183622964736571, -1.7594974334362916) +description = Granville township, ND +station = ('kmot', 0.0055105087250911528) +zone = ('ndz012', 0.0020400612757335863) + +[fips3804933700] +centroid = (0.84665197702605355, -1.7625110061892475) +description = Grilley township, ND +station = ('kmot', 0.0054750650986872176) +zone = ('ndz004', 0.0052289594769087738) + +[fips3804937260] +centroid = (0.84053314937453427, -1.7598100568119088) +description = Hendrickson township, ND +station = ('kmot', 0.0056006387901043246) +zone = ('ndz012', 0.002608221274806886) + +[fips3804940] +centroid = (0.80749162317332868, -1.6929578901680216) +description = Barney city, ND +station = ('kbwp', 0.0047476529525527595) +zone = ('ndz053', 0.00061625771697276517) + +[fips3804941380] +centroid = (0.83934665709573586, -1.7560843373642614) +description = Karlsruhe city, ND +station = ('krug', 0.0086398616118158553) +zone = ('ndz012', 0.0025168048276921519) + +[fips3804941420] +centroid = (0.83892353692517496, -1.7551257676324812) +description = Karlsruhe township, ND +station = ('krug', 0.0084198252158682995) +zone = ('ndz012', 0.0030564740251328702) + +[fips3804942660] +centroid = (0.83529688236587096, -1.7543032463158938) +description = Kief city, ND +station = ('k5h4', 0.0069278635118131563) +zone = ('ndz022', 0.0053306466510713328) + +[fips3804943460] +centroid = (0.84347224892830752, -1.7619174720705217) +description = Kottke Valley township, ND +station = ('kmot', 0.0040080317562769009) +zone = ('ndz012', 0.0039919459631194421) + +[fips3804943820] +centroid = (0.83877865714396693, -1.7526683789522584) +description = Lake George township, ND +station = ('krug', 0.0074026702085848118) +zone = ('ndz012', 0.0039704418723394246) + +[fips3804943860] +centroid = (0.83878309028026699, -1.7575753546909478) +description = Lake Hester township, ND +station = ('kmot', 0.0076829058476527877) +zone = ('ndz012', 0.0031624258029630246) + +[fips3804944660] +centroid = (0.8359847166240818, -1.7546075270176864) +description = Land township, ND +station = ('krug', 0.01042439170636626) +zone = ('ndz012', 0.0059935727160815534) + +[fips3804945380] +centroid = (0.8465518649401591, -1.7580904013532113) +description = Layton township, ND +station = ('krug', 0.008417123591437781) +zone = ('ndz012', 0.0048262779618043206) + +[fips3804945500] +centroid = (0.83878378841196777, -1.7594625966644217) +description = Lebanon township, ND +station = ('kmot', 0.0065998407080511828) +zone = ('ndz012', 0.0036740767601779424) + +[fips3804947260] +centroid = (0.8466492892190054, -1.7602105400620716) +description = Little Deep township, ND +station = ('kmot', 0.0065476751377965773) +zone = ('ndz004', 0.0049384358427494723) + +[fips3804951660] +centroid = (0.8481685110664039, -1.7580356503745762) +description = Meadow township, ND +station = ('krug', 0.0088961045345950472) +zone = ('ndz004', 0.0036240732549644239) + +[fips3804954980] +centroid = (0.84817914012154849, -1.7554830190770718) +description = Mouse River township, ND +station = ('krug', 0.007385532027990512) +zone = ('ndz004', 0.0044715969570582222) + +[fips3804956540] +centroid = (0.84345840846733933, -1.7528673115804005) +description = Newport township, ND +station = ('krug', 0.0048553205696717054) +zone = ('ndz012', 0.0028661776243138013) + +[fips3804957500] +centroid = (0.84642054636723907, -1.7510853129608217) +description = Normal township, ND +station = ('krug', 0.0039882676248800724) +zone = ('ndz012', 0.0057877051329033374) + +[fips3804957727] +centroid = (0.84526126377147937, -1.7529701463799281) +description = Northeast McHenry UT, ND +station = ('krug', 0.0048377569549204425) +zone = ('ndz012', 0.0041139248128445804) + +[fips3804958100] +centroid = (0.84055313339446958, -1.7617314374255517) +description = North Prairie township, ND +station = ('kmot', 0.0044069554847490479) +zone = ('ndz012', 0.0037621133910142827) + +[fips3804958660] +centroid = (0.84194431788794177, -1.7618820244334137) +description = Norwich township, ND +station = ('kmot', 0.0039202666266599578) +zone = ('ndz012', 0.0036292817043743538) + +[fips3804959180] +centroid = (0.83752680228468146, -1.7564472785822138) +description = Odin township, ND +station = ('krug', 0.010023657692887988) +zone = ('ndz012', 0.0043257891448329859) + +[fips3804959300] +centroid = (0.83601895998400599, -1.7587675716496927) +description = Olivia township, ND +station = ('kn60', 0.00892386521768169) +zone = ('ndz012', 0.0060383186599574992) + +[fips3804964420] +centroid = (0.84791254107830638, -1.7625001502413) +description = Pratt township, ND +station = ('kmib', 0.0051226849923618617) +zone = ('ndz004', 0.0040584005962874059) + +[fips3804966780] +centroid = (0.84333621796640723, -1.7572109648497165) +description = Riga township, ND +station = ('krug', 0.0077120779113594856) +zone = ('ndz012', 0.0015709926467911794) + +[fips3804968310] +centroid = (0.84210885007652714, -1.7568951998814455) +description = Rose Hill township, ND +station = ('krug', 0.0078068829970192998) +zone = ('ndz012', 0.00039961965804793611) + +[fips3804968660] +centroid = (0.8389967360340036, -1.7507698621518164) +description = Round Lake township, ND +station = ('krug', 0.0065013023151002016) +zone = ('ndz013', 0.0050379713551652501) + +[fips3804970340] +centroid = (0.84512767627053176, -1.7605972526644358) +description = Saline township, ND +station = ('kmot', 0.0054620159626720469) +zone = ('ndz012', 0.0042877765207780527) + +[fips3804971180] +centroid = (0.83732322708072882, -1.7500568951523767) +description = Schiller township, ND +station = ('k5h4', 0.0051063204375355426) +zone = ('ndz013', 0.0059246263436559168) + +[fips3804975020] +centroid = (0.83588493615074533, -1.7521521280128109) +description = Spring Grove township, ND +station = ('k5h4', 0.0056643671862313012) +zone = ('ndz022', 0.0055630607886206322) + +[fips3804976700] +centroid = (0.83740990013138283, -1.7521114792945318) +description = Strege township, ND +station = ('k5h4', 0.0062829943370602392) +zone = ('ndz012', 0.0052982218332577576) + +[fips3804979420] +centroid = (0.84381672456277368, -1.7524330736625044) +description = Towner city, ND +station = ('krug', 0.0045001309724859622) +zone = ('ndz012', 0.0033086132811395736) + +[fips3804980860] +centroid = (0.84790323847339322, -1.7580463317895985) +description = Upham city, ND +station = ('krug', 0.0087999696024955425) +zone = ('ndz004', 0.0038728622776382014) + +[fips3804981620] +centroid = (0.83876061043950123, -1.7615770630532128) +description = Velva city, ND +station = ('kmot', 0.0054923289571451863) +zone = ('ndz012', 0.0046187373644814358) + +[fips3804981660] +centroid = (0.83903101430051275, -1.7619305794932045) +description = Velva township, ND +station = ('kmot', 0.0051361708970868109) +zone = ('ndz012', 0.0046264365975159129) + +[fips3804982220] +centroid = (0.84029697142015436, -1.7549380923780142) +description = Villard township, ND +station = ('krug', 0.0074602194359221193) +zone = ('ndz012', 0.0018481084901341015) + +[fips3804982380] +centroid = (0.83809462770352539, -1.7600751897785794) +description = Voltaire city, ND +station = ('kmot', 0.0066869843782614994) +zone = ('ndz012', 0.0044751144331898135) + +[fips3804982420] +centroid = (0.83725709655537073, -1.7587392275026401) +description = Voltaire township, ND +station = ('kmot', 0.007910853554097522) +zone = ('ndz012', 0.0048463056067765166) + +[fips3804982580] +centroid = (0.84512273698874851, -1.7556636257480684) +description = Wagar township, ND +station = ('krug', 0.0065999893652979773) +zone = ('ndz012', 0.0033101023190436679) + +[fips3804986420] +centroid = (0.84815131957327183, -1.7533813983115754) +description = Willow Creek township, ND +station = ('krug', 0.0061912246076524131) +zone = ('ndz004', 0.005491474393915079) + +[fips38051] +centroid = (0.80489408455417055, -1.7356084836457144) +description = McIntosh County, ND +station = ('k7l2', 0.0098668143534678034) +zone = ('ndz050', 9.2332186955795405e-05) + +[fips3805103540] +centroid = (0.80345973806829663, -1.7343954972688709) +description = Ashley city, ND +station = ('k7l2', 0.011034595188308819) +zone = ('ndz050', 0.0015746177030768352) + +[fips3805121683] +centroid = (0.80422869523014029, -1.7314584746569075) +description = East McIntosh UT, ND +station = ('kabr', 0.014583251187425841) +zone = ('ndz050', 0.0029130512147475564) + +[fips3805145740] +centroid = (0.8077540159730735, -1.7340246497094072) +description = Lehr city, ND +station = ('kjms', 0.014044493788604515) +zone = ('ndz050', 0.003139011047942441) + +[fips3805158265] +centroid = (0.80640635999114618, -1.7380456439599068) +description = Northwest McIntosh UT, ND +station = ('k7l2', 0.0080112799791627817) +zone = ('ndz050', 0.0023434037178946729) + +[fips3805167940] +centroid = (0.80711227586040779, -1.7290256776658448) +description = Roloff township, ND +station = ('kjms', 0.01294685858259273) +zone = ('ndz050', 0.0050891549309276104) + +[fips3805174505] +centroid = (0.80346603870689637, -1.73903062052327) +description = Southwest McIntosh UT, ND +station = ('k7l2', 0.0080170789123987889) +zone = ('ndz050', 0.0027447921006036238) + +[fips3805181700] +centroid = (0.80280729908731618, -1.737470837224055) +description = Venturia city, ND +station = ('k7l2', 0.0092760769379228811) +zone = ('ndz050', 0.0023910690957779329) + +[fips3805187020] +centroid = (0.80731277928487688, -1.7375534960174293) +description = Wishek city, ND +station = ('k7l2', 0.0083648863890682275) +zone = ('ndz050', 0.0028575115439888965) + +[fips3805188180] +centroid = (0.80237939671460468, -1.7424038009153069) +description = Zeeland city, ND +station = ('k7l2', 0.0066091248245527231) +zone = ('sdz004', 0.0044175218845246191) + +[fips3805220] +centroid = (0.84663806675191511, -1.7483630007534388) +description = Barton CDP, ND +station = ('krug', 0.0026923007785539868) +zone = ('ndz013', 0.0050939413022555308) + +[fips3805260] +centroid = (0.8531224710685571, -1.7012391284028843) +description = Bathgate city, ND +station = ('k2c8', 0.0024797288458934105) +zone = ('ndz008', 0.0021676106529556053) + +[fips38053] +centroid = (0.83326338180107973, -1.8047265588975885) +description = McKenzie County, ND +station = ('kisn', 0.0082172023475874621) +zone = ('ndz017', 0.00010102792785556587) + +[fips3805301140] +centroid = (0.83427822094794435, -1.8080620227244897) +description = Alex township, ND +station = ('kisn', 0.0067111730803037159) +zone = ('ndz017', 0.0025617414277698779) + +[fips3805301180] +centroid = (0.83493090427502026, -1.8088844218680293) +description = Alexander city, ND +station = ('kisn', 0.0060277350709812732) +zone = ('ndz017', 0.0033534249964209777) + +[fips3805302600] +centroid = (0.83270999025515002, -1.8080573277888019) +description = Antelope Creek township, ND +station = ('ksdy', 0.0071193417259118536) +zone = ('ndz017', 0.0023893505339711001) + +[fips3805303220] +centroid = (0.83441388539070194, -1.8053467267406995) +description = Arnegard city, ND +station = ('kisn', 0.0069936030622634498) +zone = ('ndz017', 0.0012947265204072667) + +[fips3805303260] +centroid = (0.83428357910874806, -1.8061879056269905) +description = Arnegard township, ND +station = ('kisn', 0.006940648566013027) +zone = ('ndz017', 0.0015096555997598515) + +[fips3805308020] +centroid = (0.83577794746759815, -1.7968689295254772) +description = Blue Butte township, ND +station = ('kd60', 0.0086414134694090729) +zone = ('ndz017', 0.00577910469812307) + +[fips3805313290] +centroid = (0.83249074199451445, -1.8012576297427869) +description = Central McKenzie UT, ND +station = ('kisn', 0.0099411491030450896) +zone = ('ndz017', 0.0023576534801107614) + +[fips3805313540] +centroid = (0.83587846097922047, -1.8104033993693327) +description = Charbon township, ND +station = ('kisn', 0.0051612459982884693) +zone = ('ndz017', 0.0047218061748973078) + +[fips3805321687] +centroid = (0.83575398409696822, -1.794700549916092) +description = East McKenzie UT, ND +station = ('kd60', 0.0086781665321171639) +zone = ('ndz017', 0.0071059989578404177) + +[fips3805323820] +centroid = (0.8392881187526241, -1.7959970328443509) +description = Elm Tree township, ND +station = ('kd60', 0.0051074290552125447) +zone = ('ndz009', 0.0080634629789039097) + +[fips3805327332] +centroid = (0.83506560878668912, -1.7925486113082607) +description = Fort Berthold UT, ND +station = ('k08d', 0.0086749962353346761) +zone = ('ndz010', 0.0074290873367360297) + +[fips3805331900] +centroid = (0.83433932492505669, -1.7949278965044566) +description = Grail township, ND +station = ('k08d', 0.010047808247218298) +zone = ('ndz017', 0.006587786466871878) + +[fips3805336340] +centroid = (0.8374927334576826, -1.7949742175428047) +description = Hawkeye township, ND +station = ('kd60', 0.0069299623039608977) +zone = ('ndz017', 0.0077350193561507756) + +[fips3805341580] +centroid = (0.8373910156688763, -1.7970322748901715) +description = Keene township, ND +station = ('kd60', 0.0070446862253077227) +zone = ('ndz017', 0.0065627181273523287) + +[fips3805358045] +centroid = (0.83649922223427731, -1.8021495628037263) +description = North McKenzie UT, ND +station = ('kisn', 0.0064072067098608788) +zone = ('ndz017', 0.0036618941197784052) + +[fips3805365220] +centroid = (0.83443062309822857, -1.8104820962653052) +description = Randolph township, ND +station = ('ksdy', 0.0058027971177317993) +zone = ('ndz017', 0.0041406336788605115) + +[fips3805367140] +centroid = (0.83848334743452946, -1.7922945786356328) +description = Riverview township, ND +station = ('k08d', 0.0056076398542027816) +zone = ('ndz010', 0.0047995713091036046) + +[fips3805373380] +centroid = (0.83623962196133561, -1.8128929893742549) +description = Sioux township, ND +station = ('ksdy', 0.005355670492435626) +zone = ('ndz017', 0.0063389179854275576) + +[fips3805374110] +centroid = (0.82792759611846778, -1.8037936455058123) +description = Southeast McKenzie UT, ND +station = ('ksdy', 0.011016062479357776) +zone = ('ndz017', 0.0053231369041344965) + +[fips3805374510] +centroid = (0.83028825865154521, -1.8119031433422788) +description = Southwest McKenzie UT, ND +station = ('ksdy', 0.0050551925580198777) +zone = ('ndz017', 0.0057351824078486751) + +[fips3805379520] +centroid = (0.83804033051049576, -1.809307960917611) +description = Tri township, ND +station = ('kisn', 0.0029232216410733382) +zone = ('ndz017', 0.0057636866311743095) + +[fips3805380460] +centroid = (0.83854750573783288, -1.800913730066974) +description = Twin Valley township, ND +station = ('kisn', 0.0059329694302362977) +zone = ('ndz017', 0.0058663588222838984) + +[fips3805383860] +centroid = (0.8343030395299077, -1.8024793602191831) +description = Watford City city, ND +station = ('kisn', 0.0079703151146774589) +zone = ('ndz017', 0.0017816522955914011) + +[fips3805387820] +centroid = (0.8359401583682784, -1.8150907079683662) +description = Yellowstone township, ND +station = ('ksdy', 0.0041648306259761828) +zone = ('mtz024', 0.0068742860572261824) + +[fips3805420] +centroid = (0.81882472668493622, -1.8152809837634185) +description = Beach city, ND +station = ('k20u', 0.00035630824773367218) +zone = ('ndz031', 0.0019707477366302691) + +[fips38055] +centroid = (0.83170270838394644, -1.7701442385794299) +description = McLean County, ND +station = ('kn60', 0.00014577181496234663) +zone = ('ndz021', 0.001424570881974717) + +[fips3805502180] +centroid = (0.83426284459723432, -1.7789537705255787) +description = Amundsville township, ND +station = ('kn60', 0.0063530459987817794) +zone = ('ndz010', 0.0086154693788379373) + +[fips3805502340] +centroid = (0.83422341760943175, -1.7634096936743919) +description = Andrews township, ND +station = ('kn60', 0.0053287606384613256) +zone = ('ndz021', 0.0047251171627608404) + +[fips3805503820] +centroid = (0.83283718985103528, -1.759107596694566) +description = Aurena township, ND +station = ('kn60', 0.0076583098794831585) +zone = ('ndz022', 0.0057823006092873669) + +[fips3805505980] +centroid = (0.83479340723654816, -1.7642546250185749) +description = Benedict city, ND +station = ('kn60', 0.0051636635365327954) +zone = ('ndz021', 0.0047897177874044712) + +[fips3805507500] +centroid = (0.83128241564677374, -1.7758949413851184) +description = Blackwater township, ND +station = ('kn60', 0.0037570459281016889) +zone = ('ndz019', 0.0056607799784030473) + +[fips3805508060] +centroid = (0.83409438541783176, -1.774472532951328) +description = Blue Hill township, ND +station = ('kn60', 0.0036994991355044061) +zone = ('ndz021', 0.0051884569171880652) + +[fips3805511180] +centroid = (0.83491378259505811, -1.7569509107911692) +description = Butte city, ND +station = ('kn60', 0.0095805308576873034) +zone = ('ndz022', 0.0059161876314252999) + +[fips3805511220] +centroid = (0.83441400756374962, -1.7591007899104834) +description = Butte township, ND +station = ('kn60', 0.0080530696446930814) +zone = ('ndz012', 0.0076493145838727418) + +[fips3805511420] +centroid = (0.8330746244424766, -1.7564789214015524) +description = Byersville township, ND +station = ('kn60', 0.0094422545255109496) +zone = ('ndz022', 0.0043957431831073675) + +[fips3805515140] +centroid = (0.82977240913782579, -1.7666429510202966) +description = Coleharbor city, ND +station = ('kn60', 0.0031237160715697344) +zone = ('ndz021', 0.0016347669145402039) + +[fips3805516700] +centroid = (0.8344595606572266, -1.7811937260875883) +description = Cremerville township, ND +station = ('kn60', 0.0078190390420821449) +zone = ('ndz010', 0.0076636475261620332) + +[fips3805518580] +centroid = (0.83282462348042097, -1.7791246208060563) +description = Deepwater township, ND +station = ('kn60', 0.0060259180620085605) +zone = ('ndz019', 0.0072297159752043047) + +[fips3805519860] +centroid = (0.83432988269380348, -1.7565898545288092) +description = Dogden township, ND +station = ('kn60', 0.0096334375445412002) +zone = ('ndz022', 0.005314952566797807) + +[fips3805519980] +centroid = (0.83429773372898164, -1.7723157248748835) +description = Douglas township, ND +station = ('kn60', 0.0029614143751788861) +zone = ('ndz021', 0.0043010885108133862) + +[fips3805521690] +centroid = (0.8312190776482189, -1.7613556854908898) +description = East McLean UT, ND +station = ('kn60', 0.006072833490794319) +zone = ('ndz021', 0.0047586432609272485) + +[fips3805527334] +centroid = (0.83188656136735162, -1.7814180707096394) +description = Fort Berthold UT, ND +station = ('kn60', 0.0074618085401530936) +zone = ('ndz019', 0.0067838400746419482) + +[fips3805529460] +centroid = (0.83170270838394644, -1.7701442385794299) +description = Garrison city, ND +station = ('kn60', 0.00014577181496234663) +zone = ('ndz021', 0.001424570881974717) + +[fips3805529660] +centroid = (0.83423579199382836, -1.7767235364475027) +description = Gate township, ND +station = ('kn60', 0.0050097022033014742) +zone = ('ndz011', 0.0079789729022327859) + +[fips3805532940] +centroid = (0.83271238135622516, -1.7637742929551334) +description = Greatstone township, ND +station = ('kn60', 0.0045501584642234456) +zone = ('ndz021', 0.0036043842314652775) + +[fips3805538940] +centroid = (0.83313602512556173, -1.760757578609524) +description = Horseshoe Valley township, ND +station = ('kn60', 0.0066227960339537298) +zone = ('ndz021', 0.0056108964282218197) + +[fips3805544220] +centroid = (0.82986547009354217, -1.7601454741875571) +description = Lake Williams township, ND +station = ('kn60', 0.0071056945538710203) +zone = ('ndz021', 0.0056628704845418125) + +[fips3805547820] +centroid = (0.82818913370687919, -1.7672273570670345) +description = Longfellow township, ND +station = ('kn60', 0.0040500422773646905) +zone = ('ndz021', 0.0028228853138227306) + +[fips3805547940] +centroid = (0.83269902958744746, -1.7815558993606695) +description = Loquemont township, ND +station = ('kn60', 0.0076201445825705288) +zone = ('ndz019', 0.0075664750658420354) + +[fips3805549180] +centroid = (0.83295712887723228, -1.7699573487231262) +description = McGinnis township, ND +station = ('kn60', 0.0013336069382571859) +zone = ('ndz021', 0.0023103440535940712) + +[fips3805549860] +centroid = (0.83121518556398688, -1.7647082011845832) +description = Malcolm township, ND +station = ('kn60', 0.0038233397125474054) +zone = ('ndz021', 0.0025079829475610871) + +[fips3805551380] +centroid = (0.83462618724091453, -1.7678705632562717) +description = Max city, ND +station = ('kn60', 0.00341061707680748) +zone = ('ndz021', 0.003744210836551081) + +[fips3805551820] +centroid = (0.83121499357776907, -1.7580096100621363) +description = Medicine Hill township, ND +station = ('kn60', 0.0083235541122248253) +zone = ('ndz022', 0.0045662571727205616) + +[fips3805552340] +centroid = (0.82886619928360528, -1.7577344065456819) +description = Mercer city, ND +station = ('kn60', 0.0089522027797193579) +zone = ('ndz022', 0.00455081461465239) + +[fips3805552380] +centroid = (0.82830664672541587, -1.7587592115225756) +description = Mercer township, ND +station = ('kn60', 0.0085040707354612621) +zone = ('ndz022', 0.0053971472289303631) + +[fips3805557720] +centroid = (0.83308490443177086, -1.7677112496021496) +description = North Central McLean UT, ND +station = ('kn60', 0.0022814945979793377) +zone = ('ndz021', 0.0022345313133548656) + +[fips3805560260] +centroid = (0.83424994661406204, -1.760976373084554) +description = Otis township, ND +station = ('kn60', 0.0068180841337600424) +zone = ('ndz021', 0.0060151319946609473) + +[fips3805566980] +centroid = (0.82898039617656327, -1.7691604488399582) +description = Riverdale city, ND +station = ('kn60', 0.0027861885692198811) +zone = ('ndz021', 0.0019861385251851546) + +[fips3805568260] +centroid = (0.83295103767814282, -1.7766924346802322) +description = Roseglen township, ND +station = ('kn60', 0.0044663887616106087) +zone = ('ndz019', 0.0072611423997488971) + +[fips3805568420] +centroid = (0.83432808500467381, -1.7696146009646196) +description = Rosemont township, ND +station = ('kn60', 0.0027234585878599862) +zone = ('ndz021', 0.0035254062080412318) + +[fips3805569140] +centroid = (0.83491800629184798, -1.7616368056735086) +description = Ruso city, ND +station = ('kn60', 0.0067066542832365057) +zone = ('ndz021', 0.0060702175682288027) + +[fips3805570060] +centroid = (0.83121813517042276, -1.7714016784923217) +description = St. Mary township, ND +station = ('kn60', 0.0008320594152838659) +zone = ('ndz021', 0.002049098961198848) + +[fips3805573780] +centroid = (0.83124126078301164, -1.7671627624314179) +description = Snow township, ND +station = ('kn60', 0.0021831361494530064) +zone = ('ndz021', 0.00090092603702999108) + +[fips3805574200] +centroid = (0.82614884381129772, -1.761723984869646) +description = South McLean UT, ND +station = ('kn60', 0.0080120199625168826) +zone = ('ndz020', 0.006104714008181595) + +[fips3805579940] +centroid = (0.82940632632721989, -1.7608766275178025) +description = Turtle Lake city, ND +station = ('kn60', 0.0067691379752060138) +zone = ('ndz021', 0.005290720208824224) + +[fips3805579980] +centroid = (0.82987965962036081, -1.7625374479274152) +description = Turtle Lake township, ND +station = ('kn60', 0.0055546062819004441) +zone = ('ndz021', 0.0040833901680652875) + +[fips3805580660] +centroid = (0.82824917303314771, -1.7652533722297363) +description = Underwood city, ND +station = ('kn60', 0.0048345889288814933) +zone = ('ndz021', 0.0033958798066803172) + +[fips3805580670] +centroid = (0.82717741869937556, -1.7652991522160162) +description = Underwood UT, ND +station = ('kn60', 0.0056224933883849779) +zone = ('ndz021', 0.0042702618883247731) + +[fips3805582060] +centroid = (0.82968208834903501, -1.7672891068159697) +description = Victoria township, ND +station = ('kn60', 0.0028494076276959438) +zone = ('ndz021', 0.0014287552783721885) + +[fips3805583700] +centroid = (0.82544298030191365, -1.7632825813449693) +description = Washburn city, ND +station = ('kn60', 0.007830239948698442) +zone = ('ndz020', 0.0048401097907450523) + +[fips3805585070] +centroid = (0.83195213338734897, -1.7736738702856154) +description = West McLean UT, ND +station = ('kn60', 0.0022620669478501196) +zone = ('ndz021', 0.003707084790950227) + +[fips3805586580] +centroid = (0.82310708399092203, -1.7590856928124534) +description = Wilton city, ND +station = ('kbis', 0.0065995696107157501) +zone = ('ndz035', 0.0049633506333864978) + +[fips3805586940] +centroid = (0.82971861809027925, -1.7583433519217029) +description = Wise township, ND +station = ('kn60', 0.0083210610430217227) +zone = ('ndz021', 0.0068859205436052886) + +[fips38057] +centroid = (0.82559796553949083, -1.7771075961494041) +description = Mercer County, ND +station = ('khze', 0.0028494799535003991) +zone = ('ndz019', 0.00016376804217214247) + +[fips3805706660] +centroid = (0.82499149853100784, -1.7762295908158958) +description = Beulah city, ND +station = ('khze', 0.002276362667991643) +zone = ('ndz019', 0.0010129347293956808) + +[fips3805721710] +centroid = (0.82714574097345184, -1.7725433507159287) +description = East Mercer UT, ND +station = ('khze', 0.001797747587236804) +zone = ('ndz019', 0.0035284603737975998) + +[fips3805727336] +centroid = (0.82928980814635678, -1.7806353603532903) +description = Fort Berthold UT, ND +station = ('kn60', 0.0073308149934805805) +zone = ('ndz019', 0.004241141689942253) + +[fips3805731180] +centroid = (0.82537081093734377, -1.7813755370357682) +description = Golden Valley city, ND +station = ('khze', 0.0057352679529181008) +zone = ('ndz019', 0.0027869630761895286) + +[fips3805736780] +centroid = (0.82553340581045953, -1.7736888277573051) +description = Hazen city, ND +station = ('khze', 0.00054759170970721015) +zone = ('ndz019', 0.0024510851945685787) + +[fips3805740] +centroid = (0.85246233518557535, -1.7408640714491972) +description = Belcourt CDP, ND +station = ('k06d', 0.0015941387675831079) +zone = ('ndz005', 0.001654740566327401) + +[fips3805762260] +centroid = (0.82923486518150402, -1.7707612648298874) +description = Pick City city, ND +station = ('kn60', 0.0024307458254936489) +zone = ('ndz021', 0.002304383366626462) + +[fips3805775420] +centroid = (0.8258269527373524, -1.7694828460593865) +description = Stanton city, ND +station = ('khze', 0.0023759002842235208) +zone = ('ndz020', 0.0035476924068496537) + +[fips3805785075] +centroid = (0.82455905830224119, -1.7799518545116242) +description = West Mercer UT, ND +station = ('khze', 0.0048394857656060726) +zone = ('ndz019', 0.0021340343226278753) + +[fips3805788140] +centroid = (0.82528055996172311, -1.7789044649742096) +description = Zap city, ND +station = ('khze', 0.0040602796549666902) +zone = ('ndz019', 0.0011698441437214835) + +[fips3805820] +centroid = (0.81831477638408856, -1.8011491924363605) +description = Belfield city, ND +station = ('kdik', 0.0049855084486582968) +zone = ('ndz032', 0.0032039111973680488) + +[fips38059] +centroid = (0.81530942413190932, -1.7676649809236793) +description = Morton County, ND +station = ('kbis', 0.0064504202484101537) +zone = ('ndz034', 4.3480638522872472e-05) + +[fips3805901700] +centroid = (0.81556469598830605, -1.7715422124036921) +description = Almont city, ND +station = ('kbis', 0.0090415840163742666) +zone = ('ndz034', 0.0026504723927787493) + +[fips3805912080] +centroid = (0.81705466611744104, -1.7598239845393397) +description = Captain's Landing township, ND +station = ('kbis', 0.00109873991210057) +zone = ('ndz034', 0.005650581813218058) + +[fips3805921720] +centroid = (0.81376524407620743, -1.7627387542033401) +description = East Morton UT, ND +station = ('ky19', 0.0027829207198501217) +zone = ('ndz034', 0.003747989617833087) + +[fips3805926660] +centroid = (0.81074208946565796, -1.7668467356637594) +description = Flasher city, ND +station = ('ky19', 0.0068503026904870434) +zone = ('ndz034', 0.0046438612863165842) + +[fips3805930860] +centroid = (0.81701822364265941, -1.7773280137806384) +description = Glen Ullin city, ND +station = ('khze', 0.0088718045138556356) +zone = ('ndz034', 0.0068105324813694124) + +[fips3805936860] +centroid = (0.81860158634006874, -1.7810159992098578) +description = Hebron city, ND +station = ('khze', 0.0087256041217295098) +zone = ('ndz019', 0.0075379403537830089) + +[fips3805949900] +centroid = (0.8172923625082702, -1.7607670906539474) +description = Mandan city, ND +station = ('ky19', 0.0010418356354954434) +zone = ('ndz034', 0.0051232031997299077) + +[fips3805949920] +centroid = (0.81759974989613138, -1.7619627110047336) +description = Mandan UT, ND +station = ('ky19', 0.0015176554391819572) +zone = ('ndz034', 0.0045207793678941422) + +[fips3805956700] +centroid = (0.81758362305384302, -1.770077444828956) +description = New Salem city, ND +station = ('khze', 0.0080198050823105001) +zone = ('ndz034', 0.0027687736544267667) + +[fips3805980] +centroid = (0.83479340723654816, -1.7642546250185749) +description = Benedict city, ND +station = ('kn60', 0.0051636635365327954) +zone = ('ndz021', 0.0047897177874044712) + +[fips3805985080] +centroid = (0.81736264691724803, -1.7747160412885663) +description = West Morton UT, ND +station = ('khze', 0.0080965328520513167) +zone = ('ndz034', 0.0052168751920221856) + +[fips38061] +centroid = (0.8414283112945895, -1.7866020302006205) +description = Mountrail County, ND +station = ('k08d', 0.0016526606885735706) +zone = ('ndz010', 0.00018965030031136334) + +[fips3806101380] +centroid = (0.84189092826612322, -1.7888493685053661) +description = Alger township, ND +station = ('k08d', 0.001507897937989478) +zone = ('ndz010', 0.0017193409277699372) + +[fips3806103900] +centroid = (0.84036866954582623, -1.7843073585665612) +description = Austin township, ND +station = ('k08d', 0.0033197082741325992) +zone = ('ndz010', 0.0016857214560246901) + +[fips3806104700] +centroid = (0.83573085848437934, -1.7811826432468381) +description = Banner township, ND +station = ('kn60', 0.0083495799215891568) +zone = ('ndz010', 0.0065622165864271101) + +[fips3806106700] +centroid = (0.84666192540278984, -1.7942288223258629) +description = Bicker township, ND +station = ('kd60', 0.0025233798106941607) +zone = ('ndz002', 0.0058898445675607397) + +[fips3806106800] +centroid = (0.83573043960535875, -1.7904234809577397) +description = Big Bend township, ND +station = ('k08d', 0.0075659871690073599) +zone = ('ndz010', 0.0061471210945469356) + +[fips3806109780] +centroid = (0.84052986815554043, -1.7889693249848557) +description = Brookbank township, ND +station = ('k08d', 0.0027089568099702521) +zone = ('ndz010', 0.0018409882699764171) + +[fips3806110860] +centroid = (0.84194904773021462, -1.7845275318517002) +description = Burke township, ND +station = ('k08d', 0.0021444936209666005) +zone = ('ndz010', 0.0014445097944975095) + +[fips3806114460] +centroid = (0.84505590833168975, -1.785520257676942) +description = Clearwater township, ND +station = ('k08d', 0.0023739054842938363) +zone = ('ndz010', 0.0038338763271253155) + +[fips3806116220] +centroid = (0.8452243675110922, -1.7894375444632882) +description = Cottonwood township, ND +station = ('k08d', 0.0026216200234620048) +zone = ('ndz010', 0.0044265234292094691) + +[fips3806116540] +centroid = (0.83905843342306152, -1.7868723118885843) +description = Crane Creek township, ND +station = ('k08d', 0.0039618389666515024) +zone = ('ndz010', 0.0022314898911184981) + +[fips3806116980] +centroid = (0.84641393156937406, -1.783384986963467) +description = Crowfoot township, ND +station = ('k08d', 0.0042956261227888749) +zone = ('ndz010', 0.0055293797940749708) + +[fips3806118460] +centroid = (0.84182968466267072, -1.7911137412236111) +description = Debing township, ND +station = ('k08d', 0.0027817306846675675) +zone = ('ndz010', 0.003162334717192124) + +[fips3806122500] +centroid = (0.84357927251803988, -1.7798201868728538) +description = Egan township, ND +station = ('k08d', 0.0050256851636181158) +zone = ('ndz011', 0.0054093426770840374) + +[fips3806126060] +centroid = (0.83573946295759161, -1.7831967182970545) +description = Fertile township, ND +station = ('k08d', 0.0077753801067912244) +zone = ('ndz010', 0.005942260928080337) + +[fips3806139180] +centroid = (0.83598576382163314, -1.7877908263140314) +description = Howie township, ND +station = ('k08d', 0.0070295884739002244) +zone = ('ndz010', 0.0053619541569848899) + +[fips3806139740] +centroid = (0.84350186716571396, -1.7866889126907848) +description = Idaho township, ND +station = ('k08d', 0.00065142247551674796) +zone = ('ndz010', 0.002236515193983333) + +[fips3806140500] +centroid = (0.84514296535477917, -1.7877396009004856) +description = James Hill township, ND +station = ('k08d', 0.0021517851984334318) +zone = ('ndz010', 0.0039665606289541275) + +[fips3806142620] +centroid = (0.84190188893382578, -1.780399409291713) +description = Kickapoo township, ND +station = ('k08d', 0.0047432406210689013) +zone = ('ndz011', 0.0054430346293338145) + +[fips3806143220] +centroid = (0.83895069424833602, -1.7890574990186663) +description = Knife River township, ND +station = ('k08d', 0.0042184153209298397) +zone = ('ndz010', 0.0029037849302506317) + +[fips3806146340] +centroid = (0.8356678870049673, -1.7854273538008585) +description = Liberty township, ND +station = ('k08d', 0.0074497321693103346) +zone = ('ndz010', 0.0056444354258831566) + +[fips3806148220] +centroid = (0.84653755324029267, -1.7875491331192153) +description = Lostwood township, ND +station = ('k08d', 0.0035320143237843262) +zone = ('ndz002', 0.0051530724567357359) + +[fips3806148340] +centroid = (0.84660656355891661, -1.7806763057775421) +description = Lowland township, ND +station = ('k08d', 0.0056964373129235312) +zone = ('ndz003', 0.0056272468614295707) + +[fips3806148860] +centroid = (0.84208055828935235, -1.782083198234282) +description = McAlmond township, ND +station = ('k08d', 0.0036124336881351964) +zone = ('ndz010', 0.0030146690190657154) + +[fips3806149140] +centroid = (0.8435486245363748, -1.7820534927304132) +description = McGahan township, ND +station = ('k08d', 0.0035494044633301268) +zone = ('ndz010', 0.0037041259008445586) + +[fips3806150180] +centroid = (0.84351014002636848, -1.7911357672787711) +description = Manitou township, ND +station = ('k08d', 0.002581050158556298) +zone = ('ndz010', 0.0038436757411215512) + +[fips3806153700] +centroid = (0.83758616093254179, -1.7811967280539016) +description = Model township, ND +station = ('k08d', 0.0067928296338060131) +zone = ('ndz010', 0.0050847499211399043) + +[fips3806154860] +centroid = (0.83598534494261256, -1.7789394239191272) +description = Mountrail township, ND +station = ('kn60', 0.0072219399379542214) +zone = ('ndz011', 0.007204770733059228) + +[fips3806155300] +centroid = (0.84350394410752383, -1.7936287257691499) +description = Myrtle township, ND +station = ('kd60', 0.0017528689056719692) +zone = ('ndz010', 0.0052792217495872202) + +[fips3806156740] +centroid = (0.83749119756794077, -1.7886513085418496) +description = New Town city, ND +station = ('k08d', 0.0055875179266813828) +zone = ('ndz010', 0.0040579456777737853) + +[fips3806158820] +centroid = (0.8405068821692917, -1.7821429408545777) +description = Oakland township, ND +station = ('k08d', 0.0042651921402497069) +zone = ('ndz010', 0.0029669533443979737) + +[fips3806159940] +centroid = (0.83753477843936308, -1.787740525924989) +description = Osborn township, ND +station = ('k08d', 0.0054806891877157288) +zone = ('ndz010', 0.0038359078051375976) + +[fips3806160060] +centroid = (0.84031074206795253, -1.779825667206705) +description = Osloe township, ND +station = ('k08d', 0.0056802339378112148) +zone = ('ndz011', 0.0052274971681128104) + +[fips3806160620] +centroid = (0.84366378136042153, -1.7842368123581955) +description = Palermo city, ND +station = ('k08d', 0.0021578782011526551) +zone = ('ndz010', 0.0028068649020558749) + +[fips3806160660] +centroid = (0.84346432513350356, -1.7846121454138368) +description = Palermo township, ND +station = ('k08d', 0.0018632159086422444) +zone = ('ndz010', 0.0025086206162751928) + +[fips3806160940] +centroid = (0.83698178831916115, -1.7825781910634402) +description = Parshall city, ND +station = ('k08d', 0.006809979564232971) +zone = ('ndz010', 0.0050065302105698727) + +[fips3806160980] +centroid = (0.83752840798759332, -1.7837906189349231) +description = Parshall township, ND +station = ('k08d', 0.0059670375604865588) +zone = ('ndz010', 0.0041408273876516067) + +[fips3806162980] +centroid = (0.83820404239433277, -1.7795259069076748) +description = Plaza city, ND +station = ('k08d', 0.0070830974147533844) +zone = ('ndz011', 0.0059492411776704383) + +[fips3806163020] +centroid = (0.83738054369336434, -1.779113363432381) +description = Plaza township, ND +station = ('k08d', 0.0078567762497816513) +zone = ('ndz011', 0.0062553049137589198) + +[fips3806164100] +centroid = (0.84658738239043718, -1.7898484124225) +description = Powers township, ND +station = ('k08d', 0.0039504660612561648) +zone = ('ndz002', 0.0049885293006556525) + +[fips3806164180] +centroid = (0.84641639248361933, -1.7922747866019151) +description = Powers Lake township, ND +station = ('kd60', 0.0031417078774577966) +zone = ('ndz002', 0.0055123821762437276) + +[fips3806164900] +centroid = (0.84207490342257585, -1.7863974601589945) +description = Purcell township, ND +station = ('k08d', 0.0011206530354394928) +zone = ('ndz010', 0.00080406801349343143) + +[fips3806165420] +centroid = (0.84031264447683729, -1.7911147535145771) +description = Rat Lake township, ND +station = ('k08d', 0.0036919457442361253) +zone = ('ndz010', 0.0032601398182169664) + +[fips3806165740] +centroid = (0.84502430041893606, -1.7833124161731693) +description = Redmond township, ND +station = ('k08d', 0.0033443818880068243) +zone = ('ndz010', 0.0042915891558211192) + +[fips3806168540] +centroid = (0.84321847805506767, -1.789724005353418) +description = Ross city, ND +station = ('k08d', 0.0016070093903623372) +zone = ('ndz010', 0.0029266454885440558) + +[fips3806168580] +centroid = (0.84359559134654605, -1.7888534525758157) +description = Ross township, ND +station = ('k08d', 0.0011716481072344697) +zone = ('ndz010', 0.002824540470957673) + +[fips3806172220] +centroid = (0.83890559494046446, -1.7821288036876366) +description = Shell township, ND +station = ('k08d', 0.0053716340600281146) +zone = ('ndz010', 0.0037261573760961389) + +[fips3806173020] +centroid = (0.84663143450075762, -1.7852131844483461) +description = Sidonia township, ND +station = ('k08d', 0.0038855415493706811) +zone = ('ndz010', 0.0054219102937169061) + +[fips3806173060] +centroid = (0.84039242347694587, -1.7869760018994454) +description = Sikes township, ND +station = ('k08d', 0.0026266776845651776) +zone = ('ndz010', 0.00094830148535332234) + +[fips3806173980] +centroid = (0.84491471119520334, -1.7921626317441821) +description = Sorkness township, ND +station = ('k08d', 0.0037351880692037846) +zone = ('ndz010', 0.0052679641343851766) + +[fips3806174515] +centroid = (0.83446851419628931, -1.7887213660580248) +description = Southwest Mountrail UT, ND +station = ('k08d', 0.0085906420422431698) +zone = ('ndz010', 0.0069716735204650403) + +[fips3806174860] +centroid = (0.83901815122392553, -1.78022824485197) +description = Spring Coulee township, ND +station = ('k08d', 0.0061913743753638471) +zone = ('ndz011', 0.0059358617473313138) + +[fips3806175380] +centroid = (0.8432706110398247, -1.7869932457524551) +description = Stanley city, ND +station = ('k08d', 0.00034414232689012106) +zone = ('ndz010', 0.0020326016293703173) + +[fips3806175740] +centroid = (0.84501663842351982, -1.7809051358957708) +description = Stave township, ND +station = ('k08d', 0.0047170018009102159) +zone = ('ndz010', 0.0052526159702277935) + +[fips3806180] +centroid = (0.8378237002437382, -1.7578970188720902) +description = Bergen city, ND +station = ('kmot', 0.0080060738028043376) +zone = ('ndz012', 0.0041454542802044506) + +[fips3806181420] +centroid = (0.83742712653110007, -1.7857991438381182) +description = Van Hook township, ND +station = ('k08d', 0.005673998161375325) +zone = ('ndz010', 0.0038681857254767005) + +[fips3806184020] +centroid = (0.83901953003403462, -1.7843323342281572) +description = Wayzetta township, ND +station = ('k08d', 0.0044612931466173648) +zone = ('ndz010', 0.0026558350201532628) + +[fips3806185085] +centroid = (0.83966409758008864, -1.7920013458680053) +description = West Mountrail UT, ND +station = ('k08d', 0.0045698630286049625) +zone = ('ndz010', 0.0040418841541210952) + +[fips3806185540] +centroid = (0.84438795337365891, -1.7937064452807412) +description = White Earth city, ND +station = ('kd60', 0.0014570574435128361) +zone = ('ndz010', 0.0057509407660262237) + +[fips3806185580] +centroid = (0.84503335867775398, -1.7945836303095009) +description = White Earth township, ND +station = ('kd60', 0.0010823064919192858) +zone = ('ndz002', 0.0074102565861333992) + +[fips38063] +centroid = (0.8363385123167536, -1.7139906086377099) +description = Nelson County, ND +station = ('ks32', 0.0087321245880759308) +zone = ('ndz026', 0.00015301263245856339) + +[fips3806300] +centroid = (0.80945400157110114, -1.718948059298367) +description = Berlin city, ND +station = ('k2d5', 0.0060920192573177484) +zone = ('ndz048', 0.0014839945400850218) + +[fips3806300580] +centroid = (0.83580379579382014, -1.7094578838505254) +description = Adler township, ND +station = ('ks32', 0.0083381540142562823) +zone = ('ndz026', 0.0029530447184261473) + +[fips3806302380] +centroid = (0.83216808297569822, -1.7102304014840433) +description = Aneta city, ND +station = ('ks32', 0.0046909586346130074) +zone = ('ndz026', 0.0048468932667818177) + +[fips3806306220] +centroid = (0.83267129630563319, -1.7160514934184647) +description = Bergen township, ND +station = ('ks32', 0.0056024956959239086) +zone = ('ndz026', 0.0040202758276426907) + +[fips3806313260] +centroid = (0.83595530782618577, -1.7139997541629906) +description = Central township, ND +station = ('ks32', 0.0083533548421353479) +zone = ('ndz026', 0.00045968045603155162) + +[fips3806314180] +centroid = (0.84027880254264109, -1.7166583967592608) +description = Clara township, ND +station = ('kdvl', 0.0065342309297371347) +zone = ('ndz026', 0.004340694400684149) + +[fips3806317660] +centroid = (0.84035161767903421, -1.7096747759166708) +description = Dahlen township, ND +station = ('kgfk', 0.009670864323409082) +zone = ('ndz054', 0.0041585508946371799) + +[fips3806318300] +centroid = (0.83421046726638204, -1.7182713776940763) +description = Dayton township, ND +station = ('ks32', 0.0076792325046622662) +zone = ('ndz026', 0.003721388948280053) + +[fips3806319780] +centroid = (0.83759884947620378, -1.7160479853066681) +description = Dodds township, ND +station = ('kdvl', 0.0072732380266147915) +zone = ('ndz026', 0.0019437752612000714) + +[fips3806324500] +centroid = (0.84046452302834584, -1.714206418599719) +description = Enterprise township, ND +station = ('kd55', 0.010635604851599798) +zone = ('ndz054', 0.0040787509804946411) + +[fips3806326220] +centroid = (0.83419009927401122, -1.7115506034368368) +description = Field township, ND +station = ('ks32', 0.006524528229213694) +zone = ('ndz026', 0.0026583189181534151) + +[fips3806327020] +centroid = (0.83292438650046496, -1.7186050846470577) +description = Forde township, ND +station = ('ks32', 0.0067626510353719187) +zone = ('ndz026', 0.004745939596529236) + +[fips3806334780] +centroid = (0.8344417233922713, -1.7141738158492916) +description = Hamlin township, ND +station = ('ks32', 0.006878905509733582) +zone = ('ndz026', 0.0019662271244517888) + +[fips3806339820] +centroid = (0.83741216905941041, -1.7185578211309138) +description = Illinois township, ND +station = ('kdvl', 0.0057714125334846983) +zone = ('ndz026', 0.0033623118613533487) + +[fips3806344300] +centroid = (0.83850272058922659, -1.7164752070009714) +description = Lakota city, ND +station = ('kdvl', 0.0067694282526016038) +zone = ('ndz026', 0.0027803808048604784) + +[fips3806344340] +centroid = (0.83901115245362512, -1.7172297477431937) +description = Lakota township, ND +station = ('kdvl', 0.0061889836511545898) +zone = ('ndz026', 0.0034950167835157224) + +[fips3806345540] +centroid = (0.83279243960901417, -1.7117525031247076) +description = Lee township, ND +station = ('ks32', 0.0051207352995264188) +zone = ('ndz026', 0.0038451855252573663) + +[fips3806346140] +centroid = (0.83583322204500876, -1.7184811488168734) +description = Leval township, ND +station = ('kdvl', 0.0066268819144602465) +zone = ('ndz026', 0.0032031910723049639) + +[fips3806349580] +centroid = (0.83365854179702381, -1.7134847075007269) +description = McVille city, ND +station = ('ks32', 0.0060308398798875808) +zone = ('ndz026', 0.0027381228116163448) + +[fips3806352140] +centroid = (0.83570703474008956, -1.7117344738735343) +description = Melvin township, ND +station = ('ks32', 0.0080315216771705174) +zone = ('ndz026', 0.0015291139939708476) + +[fips3806352640] +centroid = (0.8382793009916788, -1.7121660763442601) +description = Michigan township, ND +station = ('ks32', 0.010595918069533602) +zone = ('ndz026', 0.0021751633415192156) + +[fips3806352740] +centroid = (0.83818425036061517, -1.7125191564519386) +description = Michigan City city, ND +station = ('ks32', 0.010501977304579408) +zone = ('ndz026', 0.0019818634130658866) + +[fips3806355460] +centroid = (0.8387567358085618, -1.7094940994325045) +description = Nash township, ND +station = ('kgfk', 0.0091097510445616783) +zone = ('ndz026', 0.0037166043816386405) + +[fips3806355860] +centroid = (0.83292497991241066, -1.7141733969702713) +description = Nesheim township, ND +station = ('ks32', 0.0053964094200210175) +zone = ('ndz026', 0.0034750106831372665) + +[fips3806359580] +centroid = (0.83292316476998851, -1.7094954956959061) +description = Ora township, ND +station = ('ks32', 0.0055638213327274897) +zone = ('ndz026', 0.0045027734882313389) + +[fips3806359900] +centroid = (0.83428305550997239, -1.7161556197616388) +description = Osago township, ND +station = ('ks32', 0.007100347506402825) +zone = ('ndz026', 0.0026435078063774147) + +[fips3806361460] +centroid = (0.83412639475631345, -1.7161444322011334) +description = Pekin city, ND +station = ('ks32', 0.0069522261990569547) +zone = ('ndz026', 0.0027657284627459547) + +[fips3806361860] +centroid = (0.8380641717080779, -1.7104342210340913) +description = Petersburg city, ND +station = ('kgfk', 0.0096206450482439806) +zone = ('ndz026', 0.002794307757349822) + +[fips3806361900] +centroid = (0.83709619465162943, -1.7096809892888079) +description = Petersburg township, ND +station = ('kgfk', 0.009051307716717534) +zone = ('ndz026', 0.0028323389817858273) + +[fips3806368820] +centroid = (0.83888616942588967, -1.7142093332995698) +description = Rubin township, ND +station = ('ks32', 0.011278218522522369) +zone = ('ndz026', 0.0025132963025745556) + +[fips3806368900] +centroid = (0.83439241784090246, -1.7094800495320259) +description = Rugh township, ND +station = ('ks32', 0.0069674003632596458) +zone = ('ndz026', 0.003506206273741343) + +[fips3806370820] +centroid = (0.84038230056728436, -1.712170038241662) +description = Sarnia township, ND +station = ('kd55', 0.01105406779083138) +zone = ('ndz054', 0.0038624357227129516) + +[fips3806379180] +centroid = (0.83471919583675336, -1.7180757960980979) +description = Tolna city, ND +station = ('kdvl', 0.0075482351399499522) +zone = ('ndz026', 0.0033333321243526263) + +[fips3806383340] +centroid = (0.83585147818898464, -1.7162175091369145) +description = Wamduska township, ND +station = ('kdvl', 0.0078839934302230921) +zone = ('ndz026', 0.0017232385019465728) + +[fips3806386140] +centroid = (0.83747074230910745, -1.7138036489682362) +description = Williams township, ND +station = ('ks32', 0.0098414110096101421) +zone = ('ndz026', 0.0010812045114361323) + +[fips3806460] +centroid = (0.84326170986063953, -1.775602616188702) +description = Berthold city, ND +station = ('kmot', 0.0053079972481023746) +zone = ('ndz011', 0.0027710737685530508) + +[fips38065] +centroid = (0.82236561576479728, -1.7685669147212324) +description = Oliver County, ND +station = ('khze', 0.0042130675872845812) +zone = ('ndz020', 0.00011608677691609812) + +[fips3806513180] +centroid = (0.8223093288964205, -1.7679802746530522) +description = Center city, ND +station = ('khze', 0.0045395846986530366) +zone = ('ndz020', 0.00050475686603055996) + +[fips3806521730] +centroid = (0.82232133676167418, -1.7658410594954677) +description = East Oliver UT, ND +station = ('ky19', 0.006929744543915128) +zone = ('ndz020', 0.0019604843464121587) + +[fips3806585110] +centroid = (0.82223810200964664, -1.7731332021899326) +description = West Oliver UT, ND +station = ('khze', 0.0031314535486533903) +zone = ('ndz020', 0.003003168384572132) + +[fips3806660] +centroid = (0.82499149853100784, -1.7762295908158958) +description = Beulah city, ND +station = ('khze', 0.002276362667991643) +zone = ('ndz019', 0.0010129347293956808) + +[fips38067] +centroid = (0.85114290117765268, -1.7024884874413393) +description = Pembina County, ND +station = ('k2c8', 0.0010372454463734508) +zone = ('ndz008', 7.2610852518912802e-05) + +[fips3806700700] +centroid = (0.852310159928094, -1.7061159448520993) +description = Advance township, ND +station = ('k2c8', 0.0016463463258416808) +zone = ('ndz008', 0.0025920083788941342) + +[fips3806700900] +centroid = (0.85093264136266489, -1.7062645945444916) +description = Akra township, ND +station = ('k2c8', 0.0015754310504336277) +zone = ('ndz008', 0.0024263825405050721) + +[fips3806705260] +centroid = (0.8531224710685571, -1.7012391284028843) +description = Bathgate city, ND +station = ('k2c8', 0.0024797288458934105) +zone = ('ndz008', 0.0021676106529556053) + +[fips3806705300] +centroid = (0.85273951092408451, -1.701539115594717) +description = Bathgate township, ND +station = ('k2c8', 0.002079814752875699) +zone = ('ndz008', 0.0017374692418916881) + +[fips3806705580] +centroid = (0.85093079131365768, -1.708562913916688) +description = Beaulieu township, ND +station = ('k2c8', 0.0030500262306221398) +zone = ('ndz008', 0.0039378507705015598) + +[fips3806712060] +centroid = (0.84976370709614168, -1.7046224142512902) +description = Canton City city, ND +station = ('k2c8', 0.0017207893231425395) +zone = ('ndz008', 0.001923399625944043) + +[fips3806712180] +centroid = (0.85179273961804769, -1.6992491738029305) +description = Carlisle township, ND +station = ('k2c8', 0.0031493912995283341) +zone = ('ndz008', 0.002298901901434538) + +[fips3806712940] +centroid = (0.8516288008414078, -1.7038468771981665) +description = Cavalier city, ND +station = ('k2c8', 0.00021847204170064987) +zone = ('ndz008', 0.00095278818147537866) + +[fips3806712980] +centroid = (0.85249844604779912, -1.7044318766568498) +description = Cavalier township, ND +station = ('k2c8', 0.0011013588102147395) +zone = ('ndz008', 0.0018114611953284332) + +[fips3806717060] +centroid = (0.84819893215526609, -1.7046444228531579) +description = Crystal city, ND +station = ('k2c8', 0.0032636421976379297) +zone = ('ndz008', 0.0032439279747000088) + +[fips3806717100] +centroid = (0.84799305311670092, -1.7057477152865137) +description = Crystal township, ND +station = ('k2c8', 0.0036300853511931491) +zone = ('ndz008', 0.0037788175723699881) + +[fips3806720340] +centroid = (0.8475681876168879, -1.6960974058798013) +description = Drayton city, ND +station = ('kgaf', 0.0035293666059076695) +zone = ('ndz016', 0.005020210318062302) + +[fips3806720380] +centroid = (0.84811091520108806, -1.696861092147304) +description = Drayton township, ND +station = ('kgaf', 0.0037070704758991268) +zone = ('ndz008', 0.0048553805385216416) + +[fips3806723900] +centroid = (0.84799509515192573, -1.7034490119418817) +description = Elora township, ND +station = ('k2c8', 0.003458644290845983) +zone = ('ndz008', 0.0032027505658083341) + +[fips3806725980] +centroid = (0.85426834953566144, -1.7038273469638368) +description = Felson township, ND +station = ('k2c8', 0.002835960598691561) +zone = ('ndz008', 0.0032232183812915928) + +[fips3806729140] +centroid = (0.84799553148423867, -1.7080116342191529) +description = Gardar township, ND +station = ('k2c8', 0.0043411613198422617) +zone = ('ndz054', 0.0045506056732147323) + +[fips3806734620] +centroid = (0.85186265750788259, -1.7008711955432714) +description = Hamilton city, ND +station = ('k2c8', 0.0021043352473098264) +zone = ('ndz008', 0.0013436335656030623) + +[fips3806734660] +centroid = (0.85122676424821098, -1.7015456954859971) +description = Hamilton township, ND +station = ('k2c8', 0.0016299196419023027) +zone = ('ndz008', 0.00069823178886196241) + +[fips3806741020] +centroid = (0.85166037384757642, -1.6967607008087293) +description = Joliette township, ND +station = ('khco', 0.0032447457040938044) +zone = ('ndz008', 0.0038805353612150896) + +[fips3806744580] +centroid = (0.85267861638648246, -1.7085843640131948) +description = La Moure township, ND +station = ('k96d', 0.0014981048268922809) +zone = ('ndz008', 0.0042286981458456892) + +[fips3806746660] +centroid = (0.84954623907134319, -1.6964304321543744) +description = Lincoln township, ND +station = ('khco', 0.0032347249668420587) +zone = ('ndz008', 0.004373095397565285) + +[fips3806747460] +centroid = (0.84951953553378767, -1.7034541083032977) +description = Lodema township, ND +station = ('k2c8', 0.0019485216954474274) +zone = ('ndz008', 0.0017237478784645002) + +[fips3806752780] +centroid = (0.84887863317916279, -1.698759713667501) +description = Midland township, ND +station = ('kgaf', 0.0040819225506926694) +zone = ('ndz008', 0.0034013328768819147) + +[fips3806754740] +centroid = (0.84969759402407607, -1.7080650063876788) +description = Mountain city, ND +station = ('k2c8', 0.0031952417027178415) +zone = ('ndz008', 0.0038869832096788473) + +[fips3806755620] +centroid = (0.85491527327620576, -1.7025970818273983) +description = Neche city, ND +station = ('k2c8', 0.0036006372554333779) +zone = ('ndz008', 0.0037670663908292959) + +[fips3806755660] +centroid = (0.85399347763176492, -1.7013703597093417) +description = Neche township, ND +station = ('k2c8', 0.0030884542614061914) +zone = ('ndz008', 0.0029577964682662833) + +[fips3806760820] +centroid = (0.84955353454761651, -1.705643065344564) +description = Park township, ND +station = ('k2c8', 0.0021713408849922283) +zone = ('ndz008', 0.002564696058383767) + +[fips3806761580] +centroid = (0.85461952723445533, -1.6972934625629008) +description = Pembina city, ND +station = ('khco', 0.0051090128907841969) +zone = ('ndz008', 0.0049221458852176641) + +[fips3806761620] +centroid = (0.85423627038400984, -1.698383315961016) +description = Pembina township, ND +station = ('k2c8', 0.0046364038702355398) +zone = ('ndz008', 0.0041505905327579662) + +[fips3806770020] +centroid = (0.85428585518805888, -1.7060426933833932) +description = St. Joseph township, ND +station = ('k96d', 0.0017658320846504342) +zone = ('ndz008', 0.0038704416874630536) + +[fips3806770260] +centroid = (0.84856808674535555, -1.7007727240668737) +description = St. Thomas city, ND +station = ('k2c8', 0.0035707998923381343) +zone = ('ndz008', 0.0028476720299526422) + +[fips3806770300] +centroid = (0.84887006361253547, -1.7013686143800897) +description = St. Thomas township, ND +station = ('k2c8', 0.0030966822603561918) +zone = ('ndz008', 0.0024183942442807613) + +[fips3806778620] +centroid = (0.84958433960891422, -1.7077782662448688) +description = Thingvalla township, ND +station = ('k2c8', 0.0031045181797355321) +zone = ('ndz008', 0.0037580714907144252) + +[fips3806782980] +centroid = (0.85383304696692164, -1.708973886595655) +description = Walhalla city, ND +station = ('k96d', 0.00037774959921418958) +zone = ('ndz008', 0.0049812667586577935) + +[fips3806783020] +centroid = (0.85402370673440942, -1.7084509510451724) +description = Walhalla township, ND +station = ('k96d', 0.00023481841722543332) +zone = ('ndz008', 0.0048062879920236857) + +[fips38069] +centroid = (0.84192733583431978, -1.744744514335034) +description = Pierce County, ND +station = ('krug', 0.0027312970835698105) +zone = ('ndz013', 0.00019694094736176648) + +[fips3806901320] +centroid = (0.83754861890033128, -1.7429737207292528) +description = Alexanter township, ND +station = ('k5h4', 0.0035237415316431114) +zone = ('ndz013', 0.0047321873700330794) + +[fips3806902620] +centroid = (0.83749678262154714, -1.7474748550569763) +description = Antelope Lake township, ND +station = ('k5h4', 0.0040578636629164415) +zone = ('ndz013', 0.0049419981568912157) + +[fips3806904580] +centroid = (0.84065823712202459, -1.7459688453520155) +description = Balta city, ND +station = ('krug', 0.0039188477801535542) +zone = ('ndz013', 0.0016398938732190868) + +[fips3806904620] +centroid = (0.84030526173410125, -1.7458582263840241) +description = Balta township, ND +station = ('krug', 0.0042698030144671766) +zone = ('ndz013', 0.0019329308967647456) + +[fips3806913300] +centroid = (0.84040055671126013, -1.748526730090568) +description = Central Pierce UT, ND +station = ('krug', 0.0045632644980923686) +zone = ('ndz013', 0.002997519407170743) + +[fips3806923300] +centroid = (0.8390221829344976, -1.7481577151268191) +description = Elling township, ND +station = ('k5h4', 0.0056005503278987829) +zone = ('ndz013', 0.0038036710605059659) + +[fips3806923940] +centroid = (0.84027899452885879, -1.7436166651191027) +description = Elverum township, ND +station = ('krug', 0.0045254015688777471) +zone = ('ndz013', 0.0020075878339835588) + +[fips3806934140] +centroid = (0.83572635553490915, -1.7429926400983446) +description = Hagel township, ND +station = ('k5h4', 0.0017874548284243341) +zone = ('ndz023', 0.0056995981052028293) + +[fips3806940700] +centroid = (0.8418098053624905, -1.7485122089511917) +description = Jefferson township, ND +station = ('krug', 0.0033172569684651815) +zone = ('ndz013', 0.0024665216187741154) + +[fips3806952580] +centroid = (0.84335286840747126, -1.7438234866354638) +description = Meyer township, ND +station = ('krug', 0.0017723791660125962) +zone = ('ndz013', 0.0014102292629807323) + +[fips3806955900] +centroid = (0.8434558079267539, -1.7485156472498182) +description = Ness township, ND +station = ('krug', 0.0021480761641582938) +zone = ('ndz013', 0.0027911519669333632) + +[fips3806958080] +centroid = (0.84512111383254418, -1.7430380186588965) +description = North Pierce UT, ND +station = ('krug', 0.0018852212798208031) +zone = ('ndz013', 0.003235847747059489) + +[fips3806966060] +centroid = (0.84179968245282899, -1.7436163684131298) +description = Reno Valley township, ND +station = ('krug', 0.0031184216031957044) +zone = ('ndz013', 0.00087177521372329219) + +[fips3806968860] +centroid = (0.84415692414057253, -1.7451921563815853) +description = Rugby city, ND +station = ('krug', 0.00056088143599946857) +zone = ('ndz013', 0.002056150493951144) + +[fips3806968980] +centroid = (0.84523346067649519, -1.7401871280455188) +description = Rush Lake township, ND +station = ('krug', 0.0037548282906679467) +zone = ('ndz013', 0.004391172004196111) + +[fips3806974305] +centroid = (0.83831885015252894, -1.7451304589925274) +description = South Pierce UT, ND +station = ('k5h4', 0.0042590266801507603) +zone = ('ndz013', 0.0038005785404363777) + +[fips3806979220] +centroid = (0.84518542921548023, -1.7440106906510329) +description = Torgerson township, ND +station = ('krug', 0.0013097051038384521) +zone = ('ndz013', 0.0031197893458826372) + +[fips3806979780] +centroid = (0.83597930610340065, -1.7452384774199334) +description = Truman township, ND +station = ('k5h4', 0.0020081842883309148) +zone = ('ndz013', 0.0061409365071101243) + +[fips3806980100] +centroid = (0.84193756346373649, -1.745873131495836) +description = Tuscarora township, ND +station = ('krug', 0.0026381103384122175) +zone = ('ndz013', 0.00071226524697549096) + +[fips3806985460] +centroid = (0.83598192409727867, -1.7475983894614322) +description = White township, ND +station = ('k5h4', 0.0029822217874400001) +zone = ('ndz022', 0.0061767194925771108) + +[fips3806987180] +centroid = (0.84644634233358351, -1.7401679468770395) +description = Wolford city, ND +station = ('krug', 0.0041525564929968733) +zone = ('ndz005', 0.0050457505385625885) + +[fips3807020] +centroid = (0.83008560847209623, -1.7164567414174854) +description = Binford city, ND +station = ('ks32', 0.003711252426448328) +zone = ('ndz028', 0.0022100679844221489) + +[fips38071] +centroid = (0.84239278023924169, -1.7232914856748802) +description = Ramsey County, ND +station = ('kdvl', 0.0033326159421864592) +zone = ('ndz015', 0.00020902047830511348) + +[fips3807105140] +centroid = (0.83889233043814937, -1.7189209019752061) +description = Bartlett township, ND +station = ('kdvl', 0.0050905791884386497) +zone = ('ndz015', 0.0044773234295647875) + +[fips3807109700] +centroid = (0.84143742191328497, -1.7166256543824936) +description = Brocket city, ND +station = ('kd55', 0.0094742338063372351) +zone = ('ndz015', 0.0043592001701777978) + +[fips3807112900] +centroid = (0.84336936176890254, -1.7210477078418089) +description = Cato township, ND +station = ('kdvl', 0.0050597580730028287) +zone = ('ndz015', 0.0015845715527803199) + +[fips3807113380] +centroid = (0.84387442514784461, -1.7301766350410726) +description = Chain Lakes township, ND +station = ('k9d7', 0.0025652294835563786) +zone = ('ndz014', 0.0056100468611205608) + +[fips3807114140] +centroid = (0.84244648402032551, -1.7312680068756372) +description = Churchs Ferry city, ND +station = ('k9d7', 0.0037211923115075584) +zone = ('ndz014', 0.0040097781860219932) + +[fips3807116340] +centroid = (0.84187033338094963, -1.7300789664161309) +description = Coulee township, ND +station = ('kdvl', 0.0032028918555876851) +zone = ('ndz014', 0.0040254788764060101) + +[fips3807116580] +centroid = (0.83908023258541897, -1.7216540875838291) +description = Crary city, ND +station = ('kdvl', 0.003263155938308805) +zone = ('ndz015', 0.0034885596305873571) + +[fips3807116660] +centroid = (0.83908140195601788, -1.7253848859395997) +description = Creel township, ND +station = ('kdvl', 0.00099373500867464752) +zone = ('ndz015', 0.0037305035039463317) + +[fips3807118740] +centroid = (0.84356365182123449, -1.7277842947820716) +description = De Groat township, ND +station = ('kdvl', 0.0038771896758767223) +zone = ('ndz015', 0.0033766309547562088) + +[fips3807119420] +centroid = (0.83972291517588082, -1.7256901440257737) +description = Devils Lake city, ND +station = ('kdvl', 0.00049348101176313055) +zone = ('ndz015', 0.0032697939210637769) + +[fips3807120620] +centroid = (0.84183680560601892, -1.7277070465093785) +description = Dry Lake township, ND +station = ('kdvl', 0.0022151511426875296) +zone = ('ndz015', 0.0032002669823350937) + +[fips3807122340] +centroid = (0.8449523928537539, -1.7183321151520456) +description = Edmore city, ND +station = ('kd55', 0.0059885707424131096) +zone = ('ndz015', 0.0039794613126005922) + +[fips3807125660] +centroid = (0.84496558754289897, -1.7194020019835183) +description = Fancher township, ND +station = ('kd55', 0.0060975907020054242) +zone = ('ndz015', 0.0034646157085892124) + +[fips3807128580] +centroid = (0.84207245996162305, -1.7257099535127836) +description = Freshwater township, ND +station = ('kdvl', 0.0023270803734736921) +zone = ('ndz015', 0.0018499166571375467) + +[fips3807132260] +centroid = (0.84020483548894154, -1.7279133444269641) +description = Grand Harbor township, ND +station = ('kdvl', 0.0010770651403802245) +zone = ('ndz015', 0.0039771149928523432) + +[fips3807134820] +centroid = (0.84485475913539743, -1.7262345994859332) +description = Hammer township, ND +station = ('kdvl', 0.005062030428781162) +zone = ('ndz015', 0.0032277110198938239) + +[fips3807134860] +centroid = (0.84717580269445447, -1.7218426529562147) +description = Hampden city, ND +station = ('kd55', 0.0047872284329985781) +zone = ('ndz007', 0.0046092332823085757) + +[fips3807135300] +centroid = (0.8435614003464994, -1.7232573993945888) +description = Harding township, ND +station = ('kdvl', 0.0043168151028463286) +zone = ('ndz015', 0.0011225235936378915) + +[fips3807138020] +centroid = (0.84657289615764564, -1.7169295860184359) +description = Highland Center township, ND +station = ('kd55', 0.0043350836722332049) +zone = ('ndz007', 0.0047822479550468462) + +[fips3807138840] +centroid = (0.84021260220411298, -1.7187345182643856) +description = Hope township, ND +station = ('kdvl', 0.0051477869103508864) +zone = ('ndz015', 0.0036146869219629298) + +[fips3807143100] +centroid = (0.84649524645922436, -1.7262249129085845) +description = Klingstrup township, ND +station = ('k9d7', 0.0038454130220873985) +zone = ('ndz015', 0.0045774706280560908) + +[fips3807145300] +centroid = (0.84305234016357034, -1.7168431922204619) +description = Lawton city, ND +station = ('kd55', 0.0078546370742503518) +zone = ('ndz015', 0.0041343439449139322) + +[fips3807145340] +centroid = (0.84345371353165144, -1.7163010929547926) +description = Lawton township, ND +station = ('kd55', 0.0074764954459903433) +zone = ('ndz054', 0.0030360526175395135) + +[fips3807146620] +centroid = (0.84203524954197062, -1.7166584491191386) +description = Lillehoff township, ND +station = ('kd55', 0.0088760384576387821) +zone = ('ndz015', 0.0042366449079250679) + +[fips3807153260] +centroid = (0.84040434407573705, -1.7236433091454972) +description = Minnewaukan township, ND +station = ('kdvl', 0.0019519375225357193) +zone = ('ndz015', 0.0020942738562930814) + +[fips3807154420] +centroid = (0.84184762664738122, -1.7237429499924934) +description = Morris township, ND +station = ('kdvl', 0.002721552777662744) +zone = ('ndz015', 0.00078567634454215958) + +[fips3807155980] +centroid = (0.84185452069792654, -1.7187303469274733) +description = Newbre township, ND +station = ('kdvl', 0.0055271733493263584) +zone = ('ndz015', 0.0028992794468592513) + +[fips3807156380] +centroid = (0.84496520357046356, -1.7171228986863865) +description = Newland township, ND +station = ('kd55', 0.0059371961838270782) +zone = ('ndz015', 0.0046394004386520723) + +[fips3807157260] +centroid = (0.84200214064606027, -1.7207819640099) +description = Noonan township, ND +station = ('kdvl', 0.0043606708646708224) +zone = ('ndz015', 0.001538189066000738) + +[fips3807157722] +centroid = (0.84074497998584874, -1.7259913354947904) +description = North Creel township, ND +station = ('kdvl', 0.00099310933552997907) +zone = ('ndz015', 0.0026294439226911643) + +[fips3807157780] +centroid = (0.84644920467355689, -1.7216272444199336) +description = Northfield township, ND +station = ('kd55', 0.0052944046500227838) +zone = ('ndz015', 0.0040975496836413239) + +[fips3807159140] +centroid = (0.83721269537919996, -1.7206769824553927) +description = Odessa township, ND +station = ('kdvl', 0.0046276438257021532) +zone = ('ndz015', 0.0054631957227088751) + +[fips3807159460] +centroid = (0.84060592960434244, -1.7209176982658279) +description = Ontario township, ND +station = ('kdvl', 0.0037613914411746821) +zone = ('ndz015', 0.0023064457137115346) + +[fips3807160340] +centroid = (0.84484783017826703, -1.7216726055271929) +description = Overland township, ND +station = ('kdvl', 0.0059610065483971996) +zone = ('ndz015', 0.0025501230631501592) + +[fips3807161500] +centroid = (0.84058950605608107, -1.729846209307085) +description = Pelican township, ND +station = ('kdvl', 0.0024197738434836411) +zone = ('ndz014', 0.0033640487343486215) + +[fips3807163680] +centroid = (0.83914407672945701, -1.7282512750767349) +description = Poplar Grove township, ND +station = ('kdvl', 0.0013842192215226456) +zone = ('ndz015', 0.0048223636941133116) + +[fips3807164740] +centroid = (0.84635705128905148, -1.7192260378883322) +description = Prospect township, ND +station = ('kd55', 0.0047206042159765992) +zone = ('ndz015', 0.0046361651073888524) + +[fips3807168780] +centroid = (0.84648999301817585, -1.7242174352029407) +description = Royal township, ND +station = ('kd55', 0.0063568828198818086) +zone = ('ndz015', 0.0041183923080095825) + +[fips3807174280] +centroid = (0.83883372228186737, -1.7234752339385302) +description = South Minnewaukan township, ND +station = ('kdvl', 0.002189933338000312) +zone = ('ndz015', 0.0036336495052213353) + +[fips3807175580] +centroid = (0.84565130995271498, -1.7257600793689012) +description = Starkweather city, ND +station = ('kdvl', 0.0058735658794814259) +zone = ('ndz015', 0.0036898557944590989) + +[fips3807175980] +centroid = (0.83888023530643308, -1.7211469996229547) +description = Stevens township, ND +station = ('kdvl', 0.0036397783703112025) +zone = ('ndz015', 0.0037784568893256898) + +[fips3807176860] +centroid = (0.84510067602700334, -1.724012516095464) +description = Sullivan township, ND +station = ('kdvl', 0.005543404061284625) +zone = ('ndz015', 0.0027333998413672021) + +[fips3807179580] +centroid = (0.84356332020867664, -1.7191093277212515) +description = Triumph township, ND +station = ('kdvl', 0.006159288208265723) +zone = ('ndz015', 0.0028106381366364034) + +[fips3807180] +centroid = (0.84868952675470921, -1.7344869001617977) +description = Bisbee city, ND +station = ('k9d7', 0.0030378362854893994) +zone = ('ndz006', 0.0018485646343672604) + +[fips3807184180] +centroid = (0.8434665242483611, -1.7257101629522937) +description = Webster township, ND +station = ('kdvl', 0.0037027224273237683) +zone = ('ndz015', 0.0020736586783690002) + +[fips3807200] +centroid = (0.8170067393761814, -1.7587700674705229) +description = Bismarck city, ND +station = ('kbis', 0.00053990428937803153) +zone = ('ndz035', 0.0046199643409068659) + +[fips38073] +centroid = (0.81069280136758159, -1.7042713238189591) +description = Ransom County, ND +station = ('kgwr', 0.004026183055410232) +zone = ('ndz049', 0.00016878461701305878) + +[fips3807301460] +centroid = (0.80841615898469521, -1.7031780321222172) +description = Aliceton township, ND +station = ('kgwr', 0.0018858881458394872) +zone = ('ndz049', 0.0025501431642125732) + +[fips3807301540] +centroid = (0.80841664767688581, -1.7075614614451862) +description = Alleghany township, ND +station = ('kgwr', 0.0029100816786391116) +zone = ('ndz049', 0.0032184704582180323) + +[fips3807304420] +centroid = (0.80841474526800106, -1.7053751049445054) +description = Bale township, ND +station = ('kgwr', 0.0019280365594367087) +zone = ('ndz049', 0.0024815410208890109) + +[fips3807306820] +centroid = (0.80993305954418848, -1.7035371859756927) +description = Big Bend township, ND +station = ('kgwr', 0.0032978272257892646) +zone = ('ndz049', 0.0010787867409438596) + +[fips3807312580] +centroid = (0.81145589422313857, -1.7035320721609843) +description = Casey township, ND +station = ('kgwr', 0.0048109363765709403) +zone = ('ndz049', 0.00089996101145618269) + +[fips3807315060] +centroid = (0.81296703519610036, -1.6991336330064482) +description = Coburn township, ND +station = ('kgwr', 0.0072032799508495293) +zone = ('ndz049', 0.0042429293293927547) + +[fips3807323340] +centroid = (0.80987235699280413, -1.7071917134431511) +description = Elliott city, ND +station = ('kgwr', 0.0038146961569647331) +zone = ('ndz049', 0.0021135455363251281) + +[fips3807323380] +centroid = (0.81018496291512876, -1.7079229365865665) +description = Elliott township, ND +station = ('kgwr', 0.0043584218193588259) +zone = ('ndz049', 0.0024774720581855082) + +[fips3807324260] +centroid = (0.81368040362126792, -1.7033257044302283) +description = Enderlin city, ND +station = ('kgwr', 0.007039175714960582) +zone = ('ndz049', 0.0029700163265138219) + +[fips3807327580] +centroid = (0.8120065456021428, -1.7092209030446899) +description = Fort Ransom city, ND +station = ('kgwr', 0.0063658412167744366) +zone = ('ndz049', 0.003498448704602088) + +[fips3807327620] +centroid = (0.81144242028131319, -1.7097587262536917) +description = Fort Ransom township, ND +station = ('k2d5', 0.0057493320655008992) +zone = ('ndz049', 0.0037134423571815651) + +[fips3807333180] +centroid = (0.81296583091891639, -1.700973908169751) +description = Greene township, ND +station = ('kgwr', 0.0066797138970490959) +zone = ('ndz049', 0.003216260020891482) + +[fips3807335180] +centroid = (0.81011933853525386, -1.7096483167252108) +description = Hanson township, ND +station = ('k2d5', 0.004504501514260721) +zone = ('ndz049', 0.0036522457590864028) + +[fips3807340300] +centroid = (0.80996646514607162, -1.705737260764294) +description = Island Park township, ND +station = ('kgwr', 0.0034666618363379566) +zone = ('ndz049', 0.0012280563543793093) + +[fips3807340340] +centroid = (0.80866738167722718, -1.709753053933623) +description = Isley township, ND +station = ('k2d5', 0.003139367277999332) +zone = ('ndz049', 0.004242820031588615) + +[fips3807346380] +centroid = (0.81297302167543473, -1.7036272449650955) +description = Liberty township, ND +station = ('kgwr', 0.0063183393631123025) +zone = ('ndz049', 0.0022331639329295273) + +[fips3807347100] +centroid = (0.81049664381295006, -1.7049145300081965) +description = Lisbon city, ND +station = ('kgwr', 0.0038615638145739423) +zone = ('ndz049', 0.00045176321837946403) + +[fips3807354180] +centroid = (0.81309315268784954, -1.7055515402785895) +description = Moore township, ND +station = ('kgwr', 0.0064936770378525082) +zone = ('ndz049', 0.0024049755701880623) + +[fips3807357900] +centroid = (0.81300026626505839, -1.7097196832383246) +description = Northland township, ND +station = ('kbac', 0.0063153069477881281) +zone = ('ndz049', 0.0042383134539338094) + +[fips3807360460] +centroid = (0.81174094139657427, -1.6985419838433149) +description = Owego township, ND +station = ('kgwr', 0.0064013658847576725) +zone = ('ndz049', 0.0041694198294335294) + +[fips3807364500] +centroid = (0.81297569202919018, -1.7075656676886832) +description = Preston township, ND +station = ('kbac', 0.0066654251745911081) +zone = ('ndz049', 0.0030485410937777491) + +[fips3807368380] +centroid = (0.80879159676009171, -1.6991446111274433) +description = Rosemeade township, ND +station = ('kgwr', 0.0040878827779274474) +zone = ('ndz049', 0.0041764702241327461) + +[fips3807370460] +centroid = (0.81006055584604675, -1.6989655403461887) +description = Sandoun township, ND +station = ('kgwr', 0.0049573816553562583) +zone = ('ndz049', 0.0038503055009046698) + +[fips3807371460] +centroid = (0.8096854496832081, -1.701157848419619) +description = Scoville township, ND +station = ('kgwr', 0.0036771192072794067) +zone = ('ndz049', 0.0025303948484594941) + +[fips3807372180] +centroid = (0.81310397372921184, -1.7015554867831006) +description = Sheldon city, ND +station = ('kgwr', 0.0066899190275175281) +zone = ('ndz049', 0.0030341949161032549) + +[fips3807372300] +centroid = (0.81121359016308425, -1.7013312817873896) +description = Shenford township, ND +station = ('kgwr', 0.0049584985427183906) +zone = ('ndz049', 0.0021818540231194634) + +[fips3807374940] +centroid = (0.81155145099968529, -1.7077692952525134) +description = Springer township, ND +station = ('kgwr', 0.0054712274445666356) +zone = ('ndz049', 0.0024057976270773543) + +[fips3807377540] +centroid = (0.80860498615646847, -1.7009783413060511) +description = Sydna township, ND +station = ('kgwr', 0.0029508681793338539) +zone = ('ndz049', 0.0032537680809314276) + +[fips3807379860] +centroid = (0.81170603481153447, -1.7053710906872257) +description = Tuller township, ND +station = ('kgwr', 0.0051037439712294424) +zone = ('ndz049', 0.0010982713760411516) + +[fips38075] +centroid = (0.85019843370622838, -1.7742694638928587) +description = Renville County, ND +station = ('kmib', 0.0062751794381435645) +zone = ('ndz003', 0.0001120168328221497) + +[fips3807509100] +centroid = (0.85081271978976036, -1.7727480778371876) +description = Brandon township, ND +station = ('kmib', 0.0063203661458923104) +zone = ('ndz003', 0.0011215974939839915) + +[fips3807511620] +centroid = (0.84798727607687685, -1.7742723785927095) +description = Callahan township, ND +station = ('kmib', 0.0046322065792563077) +zone = ('ndz003', 0.0023231742329848986) + +[fips3807514260] +centroid = (0.84960184526131177, -1.7717569053549802) +description = Clay township, ND +station = ('kmib', 0.0049495899112000892) +zone = ('ndz003', 0.001802827424382586) + +[fips3807515380] +centroid = (0.85423998793531664, -1.7750813561543011) +description = Colquhoun township, ND +station = ('kmib', 0.010075867312612818) +zone = ('ndz003', 0.0039657970722999968) + +[fips3807522100] +centroid = (0.85425393311603992, -1.7723912278183249) +description = Eden Valley township, ND +station = ('kmib', 0.0095087582150407707) +zone = ('ndz003', 0.0041325799991725433) + +[fips3807524460] +centroid = (0.84651804045925538, -1.7672595932983186) +description = Ensign township, ND +station = ('kmib', 0.0018396351234756282) +zone = ('ndz011', 0.0059030019288173396) + +[fips3807525140] +centroid = (0.85121198130944653, -1.7792745969486803) +description = Fairbanks township, ND +station = ('k08d', 0.0097844795535805603) +zone = ('ndz003', 0.0034219292771948784) + +[fips3807530580] +centroid = (0.84671222579183225, -1.7666395301749627) +description = Glenburn city, ND +station = ('kmib', 0.0022490447224074103) +zone = ('ndz011', 0.0062987617578224731) + +[fips3807532580] +centroid = (0.8484961617268808, -1.7730582577518521) +description = Grano city, ND +station = ('kmib', 0.0044307822994189101) +zone = ('ndz003', 0.0019825610120540551) + +[fips3807532780] +centroid = (0.84969169481120443, -1.7736989855735517) +description = Grassland township, ND +station = ('kmib', 0.0056442734562716411) +zone = ('ndz003', 0.00072399063754459729) + +[fips3807533740] +centroid = (0.85265880689947238, -1.7770782571646782) +description = Grover township, ND +station = ('kmib', 0.0093523717155863488) +zone = ('ndz003', 0.002990282427312166) + +[fips3807534580] +centroid = (0.85259815670796546, -1.774885076426622) +description = Hamerly township, ND +station = ('kmib', 0.0085418941677565859) +zone = ('ndz003', 0.002323493110861231) + +[fips3807534700] +centroid = (0.85095740758475058, -1.7746954638566852) +description = Hamlet township, ND +station = ('kmib', 0.007062043167043181) +zone = ('ndz003', 0.00070556713368060938) + +[fips3807539620] +centroid = (0.85249225012895447, -1.7723697777218177) +description = Hurley township, ND +station = ('kmib', 0.0078081346626522278) +zone = ('ndz003', 0.002515086174794021) + +[fips3807540380] +centroid = (0.84805373821479269, -1.7763533870197399) +description = Ivanhoe township, ND +station = ('kmib', 0.0057954482658062528) +zone = ('ndz003', 0.0026437684767012348) + +[fips3807547420] +centroid = (0.84817680138035079, -1.7716342785217349) +description = Lockwood township, ND +station = ('kmib', 0.0036336831841954935) +zone = ('ndz003', 0.0027532358484067153) + +[fips3807548020] +centroid = (0.85291331081099808, -1.7726930650591648) +description = Loraine city, ND +station = ('kmib', 0.0082736457148640512) +zone = ('ndz003', 0.0028021597482772533) + +[fips3807549460] +centroid = (0.85114848623125894, -1.7770823586884201) +description = McKinney township, ND +station = ('kmib', 0.0081721862357052016) +zone = ('ndz003', 0.0020359904606696961) + +[fips3807553780] +centroid = (0.85112883382388149, -1.7718058269339136) +description = Mohall city, ND +station = ('kmib', 0.0063960268203201312) +zone = ('ndz003', 0.0018185761603812219) + +[fips3807555180] +centroid = (0.84665586911028545, -1.7716127411587652) +description = Muskego township, ND +station = ('kmib', 0.00242887488015527) +zone = ('ndz003', 0.004054482936701481) + +[fips3807562900] +centroid = (0.84665918523586425, -1.7738907623517608) +description = Plain township, ND +station = ('kmib', 0.0036937815028407371) +zone = ('ndz003', 0.0036597964486955186) + +[fips3807564460] +centroid = (0.84639534381284021, -1.7647757105200503) +description = Prescott township, ND +station = ('kmib', 0.0030517220071041035) +zone = ('ndz004', 0.0061145830069741173) + +[fips3807564820] +centroid = (0.85423946433654097, -1.7769865750190708) +description = Prosperity township, ND +station = ('kmib', 0.010647911015679044) +zone = ('ndz003', 0.0043172172205860025) + +[fips3807567380] +centroid = (0.85272690964688513, -1.7792747365750206) +description = Rockford township, ND +station = ('kmib', 0.010311171336532305) +zone = ('ndz003', 0.0040887513523984731) + +[fips3807568020] +centroid = (0.84944103062403298, -1.7761611040960477) +description = Roosevelt township, ND +station = ('kmib', 0.0065284511348602421) +zone = ('ndz003', 0.0015219900832859779) + +[fips3807572540] +centroid = (0.85454561254063333, -1.7738284715507573) +description = Sherwood city, ND +station = ('kmib', 0.010058074368876672) +zone = ('ndz003', 0.0042450564538010346) + +[fips3807575180] +centroid = (0.85423257028599564, -1.7793114233958973) +description = Stafford township, ND +station = ('kmib', 0.011489826265194814) +zone = ('ndz003', 0.0051383508744818479) + +[fips3807579140] +centroid = (0.85050526258872905, -1.7772198557268923) +description = Tolley city, ND +station = ('kmib', 0.0077681055561150741) +zone = ('ndz003', 0.0019566255477472209) + +[fips3807581300] +centroid = (0.8465586019110718, -1.7694956044162187) +description = Van Buren township, ND +station = ('kmib', 0.0015800366074461721) +zone = ('ndz003', 0.0049025084351201854) + +[fips3807585500] +centroid = (0.84653877497076913, -1.7763532648466922) +description = White Ash township, ND +station = ('kmot', 0.007059979131016283) +zone = ('ndz003', 0.0040156355967165738) + +[fips3807620] +centroid = (0.82629269384824711, -1.6968636228747194) +description = Blanchard CDP, ND +station = ('kfar', 0.0086272621608172364) +zone = ('ndz030', 0.0020714879924261286) + +[fips38077] +centroid = (0.8074804007062385, -1.6918865721665624) +description = Richland County, ND +station = ('kbwp', 0.0040087230761913142) +zone = ('ndz053', 0.00012522827893031232) + +[fips3807700100] +centroid = (0.81064450810717892, -1.6881988834433159) +description = Abercrombie city, ND +station = ('kbwp', 0.0038180057569397927) +zone = ('mnz029', 0.0034789663510253538) + +[fips3807700140] +centroid = (0.81001334468978015, -1.6894302132305981) +description = Abercrombie township, ND +station = ('kbwp', 0.003699184833445052) +zone = ('ndz053', 0.0031280705019100684) + +[fips3807702540] +centroid = (0.80853733719466114, -1.6923912690263616) +description = Antelope township, ND +station = ('kbwp', 0.0045673506216230364) +zone = ('ndz053', 0.0010909884345515449) + +[fips3807704940] +centroid = (0.80749162317332868, -1.6929578901680216) +description = Barney city, ND +station = ('kbwp', 0.0047476529525527595) +zone = ('ndz053', 0.00061625771697276517) + +[fips3807704980] +centroid = (0.80702719105937304, -1.6920614367043199) +description = Barney township, ND +station = ('kbwp', 0.0041140796796746452) +zone = ('ndz053', 0.00044242302056141547) + +[fips3807705060] +centroid = (0.81308158115490869, -1.6947749000923953) +description = Barrie township, ND +station = ('kfar', 0.006962490627984712) +zone = ('ndz053', 0.0059142405098106627) + +[fips3807705860] +centroid = (0.805521076634657, -1.6920673010106062) +description = Belford township, ND +station = ('kbwp', 0.0044156359091766908) +zone = ('ndz053', 0.0019485204919631178) + +[fips3807709020] +centroid = (0.80551936621199005, -1.6899063739571274) +description = Brandenburg township, ND +station = ('kbwp', 0.0030682340353436108) +zone = ('ndz053', 0.0024574734751143922) + +[fips3807709340] +centroid = (0.80406018369086019, -1.6918619281175242) +description = Brightwood township, ND +station = ('kbwp', 0.0050141640933677326) +zone = ('ndz053', 0.0034123713914053148) + +[fips3807713220] +centroid = (0.80698437813282164, -1.6874325791819356) +description = Center township, ND +station = ('kbwp', 0.00092025721099282083) +zone = ('mnz029', 0.0033291726696322833) + +[fips3807714100] +centroid = (0.81288912369829136, -1.6895879909949785) +description = Christine city, ND +station = ('kjkj', 0.0049169336771206426) +zone = ('mnz029', 0.0055667442047329183) + +[fips3807715180] +centroid = (0.81106987975247502, -1.6907435909460165) +description = Colfax city, ND +station = ('kbwp', 0.0050895943086460829) +zone = ('ndz053', 0.0037142957902558922) + +[fips3807715220] +centroid = (0.81158384431060226, -1.6916834507482152) +description = Colfax township, ND +station = ('kbwp', 0.0058990038527150573) +zone = ('ndz053', 0.0041227479536003536) + +[fips3807717980] +centroid = (0.80701600349886771, -1.694226901613854) +description = Danton township, ND +station = ('kbwp', 0.0056117449997126062) +zone = ('ndz053', 0.0015608896235103035) + +[fips3807719380] +centroid = (0.80399958585923104, -1.6877375405621364) +description = Devillo township, ND +station = ('kbwp', 0.0033056979244323894) +zone = ('ndz053', 0.004586078875127673) + +[fips3807719540] +centroid = (0.80537309016738046, -1.6960602478200264) +description = Dexter township, ND +station = ('kbwp', 0.0071001167406751662) +zone = ('ndz053', 0.003468868807399069) + +[fips3807720740] +centroid = (0.80259902894767565, -1.6951527813287446) +description = Duerr township, ND +station = ('k8d3', 0.005826298614467703) +zone = ('ndz053', 0.0053194334962565022) + +[fips3807721220] +centroid = (0.808153452025685, -1.6884315881924845) +description = Dwight city, ND +station = ('kbwp', 0.0019127746037333369) +zone = ('mnz029', 0.0034024612570086668) + +[fips3807721260] +centroid = (0.80841526886677673, -1.6877270860399169) +description = Dwight township, ND +station = ('kbwp', 0.0017179409089076606) +zone = ('mnz029', 0.0028651118235258964) + +[fips3807721300] +centroid = (0.81214182607246488, -1.6891673317386626) +description = Eagle township, ND +station = ('kbwp', 0.0054565081194342139) +zone = ('mnz029', 0.0048578741243054018) + +[fips3807723620] +centroid = (0.80243313540227357, -1.6926351613360353) +description = Elma township, ND +station = ('k8d3', 0.0053995280745111254) +zone = ('ndz053', 0.0050518330494572139) + +[fips3807725300] +centroid = (0.8038051736338514, -1.6860372408048436) +description = Fairmount city, ND +station = ('kbwp', 0.0033033756681556002) +zone = ('mnz039', 0.0051823550619036728) + +[fips3807725340] +centroid = (0.80326984624567965, -1.6860254598323925) +description = Fairmount township, ND +station = ('kbwp', 0.0038387653651305504) +zone = ('mnz039', 0.0046732188939911049) + +[fips3807728500] +centroid = (0.81005826946472659, -1.6967708760782685) +description = Freeman township, ND +station = ('kgwr', 0.0061492515366503766) +zone = ('ndz053', 0.0041530019160709178) + +[fips3807729060] +centroid = (0.81005453446012732, -1.6945839261656419) +description = Garborg township, ND +station = ('kbwp', 0.006548857374062151) +zone = ('ndz053', 0.0031146914863966401) + +[fips3807732620] +centroid = (0.80385130268598159, -1.6967854321242302) +description = Grant township, ND +station = ('k8d3', 0.0073932041869708984) +zone = ('ndz053', 0.0048757184135785831) + +[fips3807732900] +centroid = (0.80554997928707017, -1.6894969546211944) +description = Great Bend city, ND +station = ('kbwp', 0.0028125009829890373) +zone = ('ndz053', 0.0026169040962832472) + +[fips3807733140] +centroid = (0.80236175143586697, -1.6900094007428723) +description = Greendale township, ND +station = ('keth', 0.0050862209453064067) +zone = ('ndz053', 0.0053032435986420197) + +[fips3807734900] +centroid = (0.80410198432644553, -1.6910816786754201) +description = Hankinson city, ND +station = ('kbwp', 0.0045690995898131472) +zone = ('ndz053', 0.0034360576438069216) + +[fips3807737140] +centroid = (0.81296834419303932, -1.6966104628667178) +description = Helendale township, ND +station = ('kfar', 0.0077503979034088677) +zone = ('ndz039', 0.0061850760740348697) + +[fips3807738660] +centroid = (0.80853751172758637, -1.6945827393417507) +description = Homestead township, ND +station = ('kbwp', 0.0060244645706181146) +zone = ('ndz053', 0.0020400485415917168) + +[fips3807739700] +centroid = (0.80854114201243044, -1.6901982453679383) +description = Ibsen township, ND +station = ('kbwp', 0.0031653867826813638) +zone = ('ndz053', 0.0016779381532035051) + +[fips3807744500] +centroid = (0.80248642030433692, -1.6877517824488326) +description = LaMars township, ND +station = ('keth', 0.0042306904817446091) +zone = ('mnz039', 0.0045633858056885355) + +[fips3807746420] +centroid = (0.80539099724550589, -1.6940749183425905) +description = Liberty Grove township, ND +station = ('kbwp', 0.0057718779207320504) +zone = ('ndz053', 0.0025003191264994016) + +[fips3807746460] +centroid = (0.80413690836477791, -1.6954996480642861) +description = Lidgerwood city, ND +station = ('k8d3', 0.0073698194698113874) +zone = ('ndz053', 0.0040936326808093349) + +[fips3807750380] +centroid = (0.80573950459054411, -1.69258255711238) +description = Mantador city, ND +station = ('kbwp', 0.0046812389309032866) +zone = ('ndz053', 0.0017664838742030068) + +[fips3807754220] +centroid = (0.80754431466344645, -1.6908040316980129) +description = Mooreton city, ND +station = ('kbwp', 0.0032719690306873481) +zone = ('ndz053', 0.00087631070844600416) + +[fips3807754260] +centroid = (0.8070537549705884, -1.6898881003598587) +description = Mooreton township, ND +station = ('kbwp', 0.0026106944646055526) +zone = ('ndz053', 0.0015630231573107586) + +[fips3807754340] +centroid = (0.80377044158173661, -1.694100923748445) +description = Moran township, ND +station = ('kbwp', 0.0064619217194156389) +zone = ('ndz053', 0.0039583400795605789) + +[fips3807755340] +centroid = (0.81005518023195056, -1.6923954752698589) +description = Nansen township, ND +station = ('kbwp', 0.0052438978266062869) +zone = ('ndz053', 0.0025955068194433201) + +[fips3807772620] +centroid = (0.8117121434639164, -1.6967395648714876) +description = Sheyenne township, ND +station = ('kgwr', 0.0072071152214348427) +zone = ('ndz053', 0.0053279817403537495) + +[fips3807776940] +centroid = (0.80539340579987373, -1.6871703958217008) +description = Summit township, ND +station = ('kbwp', 0.0018640965372711457) +zone = ('mnz029', 0.0044040752443301676) + +[fips3807782140] +centroid = (0.81157583324933569, -1.6945936301962832) +description = Viking township, ND +station = ('kjkj', 0.0078479528488800514) +zone = ('ndz053', 0.0044608344185508141) + +[fips3807782660] +centroid = (0.8075975122990473, -1.6861933605064343) +description = Wahpeton city, ND +station = ('kbwp', 0.00049245034132445694) +zone = ('mnz029', 0.0022784526150711778) + +[fips3807782780] +centroid = (0.81245900475742983, -1.6918794163166293) +description = Walcott city, ND +station = ('kjkj', 0.0060154479296935376) +zone = ('ndz053', 0.004991084569324707) + +[fips3807782820] +centroid = (0.81310228075983726, -1.6916978322612517) +description = Walcott township, ND +station = ('kjkj', 0.005413605304163684) +zone = ('ndz053', 0.0056384297466375733) + +[fips3807782900] +centroid = (0.80397434839824722, -1.6897194841008236) +description = Waldo township, ND +station = ('kbwp', 0.0040072560215615649) +zone = ('ndz053', 0.0038549040265302083) + +[fips3807784700] +centroid = (0.80853950140293362, -1.6967738431379968) +description = West End township, ND +station = ('kgwr', 0.0054625569733642359) +zone = ('ndz053', 0.0034235991182099074) + +[fips3807787740] +centroid = (0.80745909023607154, -1.6952550227163266) +description = Wyndmere city, ND +station = ('kbwp', 0.0063303319291767258) +zone = ('ndz053', 0.0022039819854969868) + +[fips3807787780] +centroid = (0.80701764410836474, -1.6964192969537468) +description = Wyndmere township, ND +station = ('kbwp', 0.0071278604562568975) +zone = ('ndz053', 0.0030432973725414104) + +[fips38079] +centroid = (0.85116691690816015, -1.7425448060655753) +description = Rolette County, ND +station = ('k06d', 0.0032372328831053385) +zone = ('ndz005', 7.2418849298131344e-05) + +[fips3807921020] +centroid = (0.85194803901489013, -1.7464187737798871) +description = Dunseith city, ND +station = ('krug', 0.0073865362229238764) +zone = ('ndz005', 0.0026417282494298057) + +[fips3807921750] +centroid = (0.85042502980301482, -1.7379994800011915) +description = East Rolette UT, ND +station = ('k06d', 0.0028089065763831533) +zone = ('ndz006', 0.0039118544226196608) + +[fips3807943340] +centroid = (0.84967722603170526, -1.7465525358137597) +description = Kohlmeier township, ND +station = ('krug', 0.005129896727946461) +zone = ('ndz005', 0.0030641803331769484) + +[fips3807951260] +centroid = (0.85093065168731752, -1.7403045014377154) +description = Maryville township, ND +station = ('k06d', 0.0024950229219902142) +zone = ('ndz005', 0.0015157522901649574) + +[fips3807955220] +centroid = (0.84885704345631563, -1.7386593017249081) +description = Mylo city, ND +station = ('k06d', 0.0043376018297105407) +zone = ('ndz005', 0.0035052060231478815) + +[fips3807958125] +centroid = (0.85346464286841051, -1.7447630846382751) +description = North Rolette UT, ND +station = ('k06d', 0.0039879105344922811) +zone = ('ndz005', 0.0026578611604330679) + +[fips3807967780] +centroid = (0.8492917177065249, -1.742567285906341) +description = Rolette city, ND +station = ('k06d', 0.0046571479674743848) +zone = ('ndz005', 0.0019472608231402373) + +[fips3807967820] +centroid = (0.85248137672771451, -1.7385139157982168) +description = Rolla city, ND +station = ('k06d', 0.00072488596936469472) +zone = ('ndz005', 0.002937659522189755) + +[fips3807969980] +centroid = (0.85422953341309715, -1.7403229670212015) +description = St. John city, ND +station = ('k06d', 0.0014808031645619827) +zone = ('ndz005', 0.0033319384993218452) + +[fips3807972260] +centroid = (0.85116691690816015, -1.7425448060655753) +description = Shell Valley township, ND +station = ('k06d', 0.0032372328831053385) +zone = ('ndz005', 7.2418849298131344e-05) + +[fips3807974320] +centroid = (0.8491699111780282, -1.7438888317626586) +description = South Rolette UT, ND +station = ('krug', 0.0047588645097189491) +zone = ('ndz005', 0.0022482181456608239) + +[fips3807974340] +centroid = (0.84805366840162266, -1.7467005920942065) +description = South Valley township, ND +station = ('krug', 0.0035350338643375554) +zone = ('ndz005', 0.0041993537040215011) + +[fips3807980010] +centroid = (0.85280700280625921, -1.7417402441869909) +description = Turtle Mountain UT, ND +station = ('k06d', 0.0020293928282670726) +zone = ('ndz005', 0.001657472492543652) + +[fips38081] +centroid = (0.80474000688780467, -1.7039654723208397) +description = Sargent County, ND +station = ('kgwr', 0.0019336314580810498) +zone = ('ndz052', 9.888556974142518e-06) + +[fips3808108620] +centroid = (0.8055262428092429, -1.7051045789104462) +description = Bowen township, ND +station = ('kgwr', 0.0013020832858978363) +zone = ('ndz052', 0.0011143193882497892) + +[fips3808108980] +centroid = (0.80261306139486177, -1.7074724322000416) +description = Brampton township, ND +station = ('k2d5', 0.0044395641974926143) +zone = ('ndz052', 0.0032225613495902757) + +[fips3808113020] +centroid = (0.80417937222547897, -1.6996791007575742) +description = Cayuga city, ND +station = ('kgwr', 0.0039984870164353498) +zone = ('ndz052', 0.0030304944331478773) + +[fips3808115100] +centroid = (0.80471660202253537, -1.7066604526721365) +description = Cogswell city, ND +station = ('kgwr', 0.0025910294263907221) +zone = ('ndz052', 0.0018616297042295482) + +[fips3808119180] +centroid = (0.80691374465799337, -1.7092777833250123) +description = Denver township, ND +station = ('k2d5', 0.0020441954768461012) +zone = ('ndz049', 0.0051308889408719655) + +[fips3808120820] +centroid = (0.80564602475580738, -1.7027452253743076) +description = Dunbar township, ND +station = ('kgwr', 0.001432923702406338) +zone = ('ndz052', 0.0012492016586772348) + +[fips3808127260] +centroid = (0.80466242700255342, -1.7040888496456632) +description = Forman city, ND +station = ('kgwr', 0.0020059288583586382) +zone = ('ndz052', 0.0001056134346375671) + +[fips3808127300] +centroid = (0.80399946368618336, -1.7051232539334424) +description = Forman township, ND +station = ('kgwr', 0.0027434859260865815) +zone = ('ndz052', 0.0010824671079173217) + +[fips3808134020] +centroid = (0.8068820320254847, -1.7044239877686309) +description = Gwinner city, ND +station = ('kgwr', 0.00026604959506855419) +zone = ('ndz052', 0.0021714463896011903) + +[fips3808134300] +centroid = (0.80714505314376017, -1.6987677945419377) +description = Hall township, ND +station = ('kgwr', 0.0037863385693783082) +zone = ('ndz052', 0.004338332355822247) + +[fips3808135420] +centroid = (0.80551575338043846, -1.707130818905549) +description = Harlem township, ND +station = ('kgwr', 0.0023343002026661652) +zone = ('ndz052', 0.0023226577764728072) + +[fips3808136140] +centroid = (0.80205226965290344, -1.7037640962317444) +description = Havana city, ND +station = ('kgwr', 0.0046244570416531612) +zone = ('ndz052', 0.0026846631788885653) + +[fips3808137500] +centroid = (0.80559600361944528, -1.6986118144666871) +description = Herman township, ND +station = ('kgwr', 0.0040126026961056034) +zone = ('ndz053', 0.0049012566940054717) + +[fips3808140460] +centroid = (0.80400819033244342, -1.7094719861108818) +description = Jackson township, ND +station = ('k2d5', 0.0024737960777875697) +zone = ('ndz052', 0.0038804983635477483) + +[fips3808142860] +centroid = (0.80385981989273125, -1.6983815880850566) +description = Kingston township, ND +station = ('kgwr', 0.0049113538224864056) +zone = ('ndz052', 0.0039770039221432227) + +[fips3808150660] +centroid = (0.80234841712038185, -1.6982484194631293) +description = Marboe township, ND +station = ('kgwr', 0.0059724398930954799) +zone = ('ndz052', 0.004635747878920897) + +[fips3808152940] +centroid = (0.80741514284550631, -1.7009441677592974) +description = Milnor city, ND +station = ('kgwr', 0.0023713678610283112) +zone = ('ndz052', 0.0034056751243037729) + +[fips3808152980] +centroid = (0.80705178274853373, -1.7006204091830524) +description = Milnor township, ND +station = ('kgwr', 0.002504378387554827) +zone = ('ndz052', 0.0032824592319624741) + +[fips3808165340] +centroid = (0.80401532872908399, -1.7006663113423797) +description = Ransom township, ND +station = ('kgwr', 0.0036079911190321748) +zone = ('ndz052', 0.0024046406343244875) + +[fips3808169340] +centroid = (0.80379962348683009, -1.7018153314021378) +description = Rutland city, ND +station = ('kgwr', 0.0033085784995703091) +zone = ('ndz052', 0.0017652247096068656) + +[fips3808169380] +centroid = (0.80387537077636662, -1.7027610031507459) +description = Rutland township, ND +station = ('kgwr', 0.0029637539303758423) +zone = ('ndz052', 0.0012020485857328926) + +[fips3808170740] +centroid = (0.80400555488527281, -1.707293483591835) +description = Sargent township, ND +station = ('kgwr', 0.0034181838203524136) +zone = ('ndz052', 0.0024135069304170417) + +[fips3808172780] +centroid = (0.80563874673282654, -1.7005881205918902) +description = Shuman township, ND +station = ('kgwr', 0.0027020786779426453) +zone = ('ndz052', 0.0025160358982127184) + +[fips3808174460] +centroid = (0.80220798792876635, -1.7098636379950292) +description = Southwest township, ND +station = ('k2d5', 0.0039069387999639367) +zone = ('ndz052', 0.0048046150083600218) + +[fips3808178140] +centroid = (0.80248827035334414, -1.7051229048675922) +description = Taylor township, ND +station = ('kgwr', 0.0042276351082140952) +zone = ('ndz052', 0.0023817722992206069) + +[fips3808178500] +centroid = (0.80244161770243827, -1.7004080549729621) +description = Tewaukon township, ND +station = ('kgwr', 0.0049758227482456577) +zone = ('ndz052', 0.0033736744392188697) + +[fips3808181780] +centroid = (0.8053994795456707, -1.7092882029406467) +description = Verner township, ND +station = ('k2d5', 0.0018154452550602292) +zone = ('ndz052', 0.0037419392433170641) + +[fips3808182340] +centroid = (0.80697800768105188, -1.7074564798906786) +description = Vivian township, ND +station = ('k2d5', 0.0032154360878685847) +zone = ('ndz052', 0.0032941554627665182) + +[fips3808184100] +centroid = (0.80240236524756092, -1.7028412184831674) +description = Weber township, ND +station = ('kgwr', 0.0043670760403512658) +zone = ('ndz052', 0.0024599445505022418) + +[fips3808185740] +centroid = (0.80704424292616506, -1.7052840162108438) +description = Whitestone Hill township, ND +station = ('kgwr', 0.00084090889098391796) +zone = ('ndz052', 0.0024826076612301895) + +[fips3808186060] +centroid = (0.80694728988621678, -1.7030909052859577) +description = Willey township, ND +station = ('kgwr', 0.00081537264302218603) +zone = ('ndz052', 0.0022975257690494443) + +[fips38083] +centroid = (0.83045162146953189, -1.7512895339365977) +description = Sheridan County, ND +station = ('k5h4', 0.0060487077299399197) +zone = ('ndz022', 0.00011488723003363218) + +[fips3808306340] +centroid = (0.832694212478712, -1.7474798117920518) +description = Berlin township, ND +station = ('k5h4', 0.0026577379375835419) +zone = ('ndz022', 0.0035136940440861886) + +[fips3808308300] +centroid = (0.82981293568305703, -1.7468357678447735) +description = Boone township, ND +station = ('k5h4', 0.0046677600412002931) +zone = ('ndz022', 0.0031001872874652607) + +[fips3808319100] +centroid = (0.8284208087117888, -1.749436238617075) +description = Denhoff township, ND +station = ('k5h4', 0.0067192866737407096) +zone = ('ndz022', 0.0023241016290735032) + +[fips3808322220] +centroid = (0.82665432606926037, -1.7557702828186577) +description = Edgemont township, ND +station = ('kbis', 0.010290494137409838) +zone = ('ndz022', 0.0047457381777998514) + +[fips3808325420] +centroid = (0.83112207224839307, -1.7464053172913543) +description = Fairview township, ND +station = ('k5h4', 0.003357371902701019) +zone = ('ndz022', 0.0034304735460826243) + +[fips3808331500] +centroid = (0.82861659974727753, -1.7475073530876484) +description = Goodrich city, ND +station = ('k5h4', 0.0059465491231826418) +zone = ('ndz022', 0.0031252878138071406) + +[fips3808331540] +centroid = (0.8282884778479026, -1.7468414052582575) +description = Goodrich township, ND +station = ('k5h4', 0.0061024197365082637) +zone = ('ndz022', 0.003681964502518576) + +[fips3808337980] +centroid = (0.83307364705809539, -1.7542254918977174) +description = Highland township, ND +station = ('k5h4', 0.00686099653046888) +zone = ('ndz022', 0.0033399798691651039) + +[fips3808346700] +centroid = (0.83131465187805798, -1.7514555496550475) +description = Lincoln Dale township, ND +station = ('k5h4', 0.0056638382875697077) +zone = ('ndz022', 0.0009693726319025068) + +[fips3808349020] +centroid = (0.8287530495881984, -1.7530564354581466) +description = McClusky city, ND +station = ('k5h4', 0.0080526128046211013) +zone = ('ndz022', 0.0019627012315584871) + +[fips3808349060] +centroid = (0.82817150588143396, -1.7539099887288345) +description = McClusky township, ND +station = ('k5h4', 0.0088706107872364662) +zone = ('ndz022', 0.0027745614215085031) + +[fips3808351060] +centroid = (0.83473120370200704, -1.7473387193753207) +description = Martin city, ND +station = ('k5h4', 0.0022378569177171808) +zone = ('ndz022', 0.0051522935512161566) + +[fips3808351100] +centroid = (0.83433440309656615, -1.7474816094811816) +description = Martin township, ND +station = ('k5h4', 0.0022579691393256403) +zone = ('ndz022', 0.0047661461936314735) + +[fips3808351350] +centroid = (0.82683439168818862, -1.7470329725969564) +description = Mauch township, ND +station = ('k5h4', 0.0075355069473671829) +zone = ('ndz022', 0.0045715711430779288) + +[fips3808358130] +centroid = (0.8319499517257839, -1.7527800451178008) +description = North Sheridan UT, ND +station = ('k5h4', 0.0062029492081247953) +zone = ('ndz022', 0.0018662694872778477) + +[fips3808362180] +centroid = (0.82840546726766384, -1.7561931586431234) +description = Pickard township, ND +station = ('kn60', 0.010086680064322874) +zone = ('ndz022', 0.0037973421301260076) + +[fips3808364715] +centroid = (0.82981401778719333, -1.7561475008298912) +description = Prophets township, ND +station = ('kn60', 0.0097485914650395963) +zone = ('ndz022', 0.0032736723503070373) + +[fips3808368470] +centroid = (0.83420858231078976, -1.7519952054597638) +description = Rosenfield township, ND +station = ('k5h4', 0.0052802743510548264) +zone = ('ndz022', 0.0038847333949847797) + +[fips3808374330] +centroid = (0.82728622252494488, -1.7516735412786215) +description = South Sheridan UT, ND +station = ('k5h4', 0.0085103969507133084) +zone = ('ndz022', 0.0030684223238703571) + +[fips3808376540] +centroid = (0.83446704811971761, -1.7543022689315126) +description = Strassburg township, ND +station = ('k5h4', 0.0068375100681670629) +zone = ('ndz022', 0.0045706515460123727) + +[fips3808460] +centroid = (0.85215634406111562, -1.7530775364888034) +description = Bottineau city, ND +station = ('krug', 0.008995563204889586) +zone = ('ndz004', 0.0045142694248091232) + +[fips38085] +centroid = (0.804758786630556, -1.7636120122412831) +description = Sioux County, ND +station = ('ky19', 0.011645305151062508) +zone = ('ndz045', 0.00010285275419354457) + +[fips3808500] +centroid = (0.85178116808510695, -1.7845496451733229) +description = Bowbells city, ND +station = ('k08d', 0.0089633816525023554) +zone = ('ndz002', 0.0031249513128811814) + +[fips3808527860] +centroid = (0.80436289359632618, -1.7563280027811325) +description = Fort Yates city, ND +station = ('k7l2', 0.0052049190660481588) +zone = ('ndz046', 0.0058624013195830551) + +[fips3808527870] +centroid = (0.8038305332678829, -1.7573675732434979) +description = Fort Yates UT, ND +station = ('k7l2', 0.0060906566033581844) +zone = ('ndz045', 0.004359103781500083) + +[fips3808552300] +centroid = (0.80283304269378308, -1.7789856576910126) +description = Menz township, ND +station = ('khei', 0.0087532986703141042) +zone = ('ndz042', 0.0071768250067111832) + +[fips3808558135] +centroid = (0.80793846236842426, -1.7591251023469634) +description = North Sioux UT, ND +station = ('ky19', 0.0084103183812888529) +zone = ('ndz045', 0.0043438993236351899) + +[fips3808571660] +centroid = (0.80358452910981415, -1.7614597594741863) +description = Selfridge city, ND +station = ('kmbg', 0.010577388150035602) +zone = ('ndz045', 0.0018709687450111187) + +[fips3808573820] +centroid = (0.8096185512129791, -1.7592165226931831) +description = Solen city, ND +station = ('ky19', 0.0067417467658780796) +zone = ('ndz045', 0.0056381059368017248) + +[fips3808574520] +centroid = (0.80353674199489467, -1.7663243062587599) +description = Southwest Sioux UT, ND +station = ('kmbg', 0.012824309337071436) +zone = ('ndz045', 0.0023464307515856462) + +[fips3808580] +centroid = (0.82848269808706454, -1.74024718482508) +description = Bowdon city, ND +station = ('k5h4', 0.0062098405509289833) +zone = ('ndz023', 0.0021526786597453255) + +[fips38087] +centroid = (0.810632727134728, -1.8057606141195175) +description = Slope County, ND +station = ('kdik', 0.010063050863014815) +zone = ('ndz040', 3.8957352565636015e-05) + +[fips3808700] +centroid = (0.8060546936001618, -1.8046847059021256) +description = Bowman city, ND +station = ('k2wx', 0.0103445275997539) +zone = ('ndz043', 0.0019062806496621333) + +[fips3808702060] +centroid = (0.81126725903758312, -1.8032702387164317) +description = Amidon city, ND +station = ('kdik', 0.008340224200972652) +zone = ('ndz040', 0.0017918515397530523) + +[fips3808710220] +centroid = (0.80892678996395107, -1.814846396779672) +description = Bucklin township, ND +station = ('kbhk', 0.0032163482465013453) +zone = ('mtz033', 0.0052394408315640413) + +[fips3808712420] +centroid = (0.8100288083069529, -1.7974888530224931) +description = Carroll township, ND +station = ('kdik', 0.007151924720228949) +zone = ('ndz044', 0.0078050433695055887) + +[fips3808712620] +centroid = (0.80837144364925906, -1.8063342514847704) +description = Cash township, ND +station = ('kdik', 0.01187061254358965) +zone = ('ndz040', 0.0023245982758728365) + +[fips3808713140] +centroid = (0.80863903753017485, -1.7972977743759846) +description = Cedar Creek township, ND +station = ('khei', 0.006774033519789586) +zone = ('ndz044', 0.0067966526368476938) + +[fips3808713312] +centroid = (0.81001503765915472, -1.8051190485397768) +description = Central Slope UT, ND +station = ('kdik', 0.010125014473930986) +zone = ('ndz040', 0.00076210027284936207) + +[fips3808715740] +centroid = (0.81003428864080418, -1.8017538093958365) +description = Connor township, ND +station = ('kdik', 0.0085386053424321932) +zone = ('ndz040', 0.0028008638876473027) + +[fips3808716620] +centroid = (0.80844225165701256, -1.8104288811764118) +description = Crawford township, ND +station = ('kbhk', 0.0062883648845922365) +zone = ('ndz043', 0.0044192156207350083) + +[fips3808718520] +centroid = (0.80843380426343292, -1.8085703673224254) +description = Deep Creek UT, ND +station = ('kbhk', 0.0075685413543319707) +zone = ('ndz040', 0.0029695107219840245) + +[fips3808735620] +centroid = (0.81001522964537243, -1.8082615313112853) +description = Harper township, ND +station = ('kbhk', 0.0078284470526056079) +zone = ('ndz040', 0.0018681276243825424) + +[fips3808739300] +centroid = (0.80856767101706084, -1.8129933632595372) +description = Hughes township, ND +station = ('kbhk', 0.0045131941979182173) +zone = ('ndz043', 0.0057068643240008113) + +[fips3808739420] +centroid = (0.81001126774797039, -1.799667687154098) +description = Hume township, ND +station = ('kdik', 0.0077715349453935777) +zone = ('ndz040', 0.0042184145149237523) + +[fips3808750860] +centroid = (0.8081113197775418, -1.8140051131736257) +description = Marmarth city, ND +station = ('kbhk', 0.003892181088317505) +zone = ('mtz033', 0.0058447541849038489) + +[fips3808753100] +centroid = (0.80835404271661671, -1.801678463532028) +description = Mineral Springs township, ND +station = ('kdik', 0.0099008324068063248) +zone = ('ndz040', 0.0036137556867737943) + +[fips3808754140] +centroid = (0.81146179343601033, -1.7996054312596792) +description = Moord township, ND +station = ('kdik', 0.0065134303321137356) +zone = ('ndz040', 0.0042848051668574741) + +[fips3808754700] +centroid = (0.81009970358116901, -1.810510789478208) +description = Mound township, ND +station = ('kbhk', 0.0063088362562917126) +zone = ('ndz040', 0.0033513429320850335) + +[fips3808757728] +centroid = (0.8130622778133817, -1.7985848150729906) +description = Northeast Slope UT, ND +station = ('kdik', 0.0048091607524802767) +zone = ('ndz033', 0.0061658763544950018) + +[fips3808758275] +centroid = (0.81255784275297016, -1.8083141704415255) +description = Northwest Slope UT, ND +station = ('k20u', 0.0078378036153826207) +zone = ('ndz040', 0.0026102663596742851) + +[fips3808761260] +centroid = (0.81310964604928071, -1.8017970761079933) +description = Peaceful Valley township, ND +station = ('kdik', 0.0063942255494170257) +zone = ('ndz040', 0.0036454919449077435) + +[fips3808765060] +centroid = (0.81153452130594095, -1.7974975622154605) +description = Rainy Butte township, ND +station = ('kdik', 0.0057448032986097252) +zone = ('ndz033', 0.006774451939615009) + +[fips3808766620] +centroid = (0.8116048755280888, -1.808746645576877) +description = Richland Center township, ND +station = ('kbhk', 0.0078736340160132021) +zone = ('ndz040', 0.0022925392572321454) + +[fips3808770420] +centroid = (0.81147582588319644, -1.8051545834433476) +description = Sand Creek township, ND +station = ('kdik', 0.0092231022871630403) +zone = ('ndz040', 0.00090588992193125584) + +[fips3808772100] +centroid = (0.8085461511073837, -1.8039668519807801) +description = Sheets township, ND +station = ('kdik', 0.010652049201158474) +zone = ('ndz040', 0.0024309315191697969) + +[fips3808785125] +centroid = (0.81058659808259781, -1.8139608690770876) +description = West Slope UT, ND +station = ('kbhk', 0.0041556138948354582) +zone = ('mtz033', 0.0061429969464718839) + +[fips3808785620] +centroid = (0.81158209898135025, -1.8018129935107716) +description = White Lake township, ND +station = ('kdik', 0.0073956027002377023) +zone = ('ndz040', 0.0028427636925181122) + +[fips3808787340] +centroid = (0.80849457662798729, -1.7996571453654158) +description = Woodberry township, ND +station = ('khei', 0.0077414838912039582) +zone = ('ndz040', 0.0047054465143014064) + +[fips38089] +centroid = (0.81711133695825333, -1.791790370468024) +description = Stark County, ND +station = ('kdik', 0.0016747864257478933) +zone = ('ndz033', 0.00013875330177430826) + +[fips3808900] +centroid = (0.81269348974243527, -1.7468956675447018) +description = Braddock city, ND +station = ('k7l2', 0.006279263397175612) +zone = ('ndz046', 0.0051859847958395065) + +[fips3808905820] +centroid = (0.81831477638408856, -1.8011491924363605) +description = Belfield city, ND +station = ('kdik', 0.0049855084486582968) +zone = ('ndz032', 0.0032039111973680488) + +[fips3808919620] +centroid = (0.81830557849893049, -1.7939678956026899) +description = Dickinson city, ND +station = ('kdik', 0.0014998039677956107) +zone = ('ndz033', 0.0020438092201105905) + +[fips3808919625] +centroid = (0.81851653644561906, -1.7930571653457066) +description = Dickinson North UT, ND +station = ('kdik', 0.0018728618378307548) +zone = ('ndz033', 0.0017888970268884724) + +[fips3808919630] +centroid = (0.81546250696060185, -1.7936814172592674) +description = Dickinson South UT, ND +station = ('kdik', 0.0013972242929150636) +zone = ('ndz033', 0.0020661463607076331) + +[fips3808921760] +centroid = (0.81705815677594507, -1.7858676305579664) +description = East Stark UT, ND +station = ('kdik', 0.0057073237810353217) +zone = ('ndz033', 0.003969950578465057) + +[fips3808930460] +centroid = (0.81784517809554691, -1.7901264433723427) +description = Gladstone city, ND +station = ('kdik', 0.0029706446791465412) +zone = ('ndz033', 0.0013508082614844875) + +[fips3808966500] +centroid = (0.81828660676996134, -1.7857453876971567) +description = Richardton city, ND +station = ('kdik', 0.0059665436592142539) +zone = ('ndz033', 0.0042497180580306935) + +[fips3808974185] +centroid = (0.81800416013711108, -1.7975238992338731) +description = South Heart city, ND +station = ('kdik', 0.0025674398909829917) +zone = ('ndz033', 0.0041296067791894266) + +[fips3808978180] +centroid = (0.81859790369534702, -1.7876163806552945) +description = Taylor city, ND +station = ('kdik', 0.0048420200191666898) +zone = ('ndz033', 0.0031977998169642062) + +[fips3808985130] +centroid = (0.81667025734968934, -1.7993677697754351) +description = West Stark UT, ND +station = ('kdik', 0.003541819076708043) +zone = ('ndz032', 0.0052462478793072701) + +[fips38091] +centroid = (0.82830338295971473, -1.7055164591606244) +description = Steele County, ND +station = ('ks32', 0.0046095115350445826) +zone = ('ndz029', 7.7594208198912784e-05) + +[fips3809105660] +centroid = (0.8311831762255053, -1.7043936888528164) +description = Beaver Creek township, ND +station = ('krdr', 0.0066951965282033383) +zone = ('ndz029', 0.0030310544028358515) + +[fips3809109620] +centroid = (0.82517980210400543, -1.7018403419703187) +description = Broadlawn township, ND +station = ('kbac', 0.0084565040483451683) +zone = ('ndz029', 0.0040094761810127843) + +[fips3809112220] +centroid = (0.8252332789922866, -1.7064178693594019) +description = Carpenter township, ND +station = ('ks32', 0.0046607001653790276) +zone = ('ndz029', 0.0030816772716238216) + +[fips3809115340] +centroid = (0.82523006758646289, -1.7041798162062771) +description = Colgate township, ND +station = ('kbac', 0.0074403849110696967) +zone = ('ndz029', 0.0031892088857055807) + +[fips3809121740] +centroid = (0.82816424531174571, -1.7066210605909189) +description = Easton township, ND +station = ('ks32', 0.0038509560825818962) +zone = ('ndz029', 0.00068614152215845593) + +[fips3809122060] +centroid = (0.82672965447977642, -1.7023617067244743) +description = Edendale township, ND +station = ('kbac', 0.0093800700124672225) +zone = ('ndz029', 0.0026867109761384836) + +[fips3809124340] +centroid = (0.82986527810732436, -1.7021241848665705) +description = Enger township, ND +station = ('krdr', 0.0074555704643171879) +zone = ('ndz029', 0.0028504323938131964) + +[fips3809126420] +centroid = (0.8292497004801459, -1.7075835398602237) +description = Finley city, ND +station = ('ks32', 0.0035339071310104145) +zone = ('ndz029', 0.0016524488803312653) + +[fips3809126460] +centroid = (0.82973223165844479, -1.7066236087716269) +description = Finley township, ND +station = ('ks32', 0.0043310048742726676) +zone = ('ndz029', 0.0016152004175550403) + +[fips3809128140] +centroid = (0.82965891037656847, -1.7088588693979485) +description = Franklin township, ND +station = ('ks32', 0.0030358204634891219) +zone = ('ndz029', 0.0025947762170575087) + +[fips3809131140] +centroid = (0.8297075527028217, -1.7042977481038342) +description = Golden Lake township, ND +station = ('ks32', 0.0057554141592009601) +zone = ('ndz029', 0.0016943265512204158) + +[fips3809133420] +centroid = (0.82833916220938053, -1.7088611383259762) +description = Greenview township, ND +station = ('ks32', 0.0023968162302111413) +zone = ('ndz029', 0.002194113652318648) + +[fips3809138860] +centroid = (0.82596616019849156, -1.7055230739584892) +description = Hope city, ND +station = ('ks32', 0.0048811124676221484) +zone = ('ndz029', 0.0023016733909953305) + +[fips3809139340] +centroid = (0.82674143545222734, -1.7045867222680871) +description = Hugo township, ND +station = ('ks32', 0.0052855554016431848) +zone = ('ndz029', 0.0016774956813369393) + +[fips3809148580] +centroid = (0.82469240145709344, -1.7092860561856666) +description = Luverne city, ND +station = ('ks32', 0.003610536500146898) +zone = ('ndz029', 0.004353533572053433) + +[fips3809152020] +centroid = (0.82661968128360819, -1.706643243725712) +description = Melrose township, ND +station = ('ks32', 0.0039548357235016582) +zone = ('ndz029', 0.0017874822840696432) + +[fips3809156060] +centroid = (0.83127789524401108, -1.7023375513676267) +description = Newburgh township, ND +station = ('krdr', 0.006112408192876769) +zone = ('ndz029', 0.003737503142318977) + +[fips3809164660] +centroid = (0.82824648522609967, -1.702350885683112) +description = Primrose township, ND +station = ('krdr', 0.0090746450233250512) +zone = ('ndz029', 0.0022090381993683907) + +[fips3809167100] +centroid = (0.827004962715986, -1.708873757056468) +description = Riverside township, ND +station = ('ks32', 0.0023966510026772209) +zone = ('ndz029', 0.0025389057739786964) + +[fips3809171940] +centroid = (0.83067312120490255, -1.7087640980195653) +description = Sharon city, ND +station = ('ks32', 0.0038137600655038808) +zone = ('ndz029', 0.0032099296515686964) + +[fips3809171980] +centroid = (0.83156210465940572, -1.7090242393445751) +description = Sharon township, ND +station = ('ks32', 0.0044546921685287826) +zone = ('ndz029', 0.0040179839030522954) + +[fips3809172420] +centroid = (0.82825432175444114, -1.7045825160245898) +description = Sherbrooke township, ND +station = ('ks32', 0.0052306974223591401) +zone = ('ndz029', 0.00070011298664595138) + +[fips3809184940] +centroid = (0.83116783478138023, -1.7066215143765247) +description = Westfield township, ND +station = ('ks32', 0.0051660927698885849) +zone = ('ndz029', 0.0029789829239683075) + +[fips3809186460] +centroid = (0.82512252039795497, -1.7083057396514065) +description = Willow Lake township, ND +station = ('ks32', 0.0037111270274808855) +zone = ('ndz029', 0.00363344257691052) + +[fips38093] +centroid = (0.81980040064338611, -1.7271358002452006) +description = Stutsman County, ND +station = ('kjms', 0.0035281423120934042) +zone = ('ndz037', 0.00014204961929007869) + +[fips3809301260] +centroid = (0.81451229735593855, -1.727853392367158) +description = Alexander township, ND +station = ('kjms', 0.0060962196533322762) +zone = ('ndz037', 0.0054502989673728608) + +[fips3809303500] +centroid = (0.82226051203724215, -1.7217662424415625) +description = Ashland township, ND +station = ('kjms', 0.0031256593759316359) +zone = ('ndz037', 0.0043439208472427181) + +[fips3809307740] +centroid = (0.81930722295665015, -1.7212245096950358) +description = Bloom township, ND +station = ('kjms', 0.00059294912882697768) +zone = ('ndz037', 0.0040982315171503459) + +[fips3809307780] +centroid = (0.81589695431800835, -1.732758675136473) +description = Bloomenfield township, ND +station = ('kjms', 0.008006212137403464) +zone = ('ndz037', 0.0055704807739897543) + +[fips3809310060] +centroid = (0.82139739436225345, -1.7248932266893131) +description = Buchanan city, ND +station = ('kjms', 0.0029713767429892508) +zone = ('ndz037', 0.0021214314863548466) + +[fips3809310100] +centroid = (0.82056120711762293, -1.723949771508855) +description = Buchanan township, ND +station = ('kjms', 0.001918927810506518) +zone = ('ndz037', 0.0022734006194088338) + +[fips3809313660] +centroid = (0.8207079893077156, -1.7347942351897816) +description = Chase Lake UT, ND +station = ('k46d', 0.0080144731562705098) +zone = ('ndz037', 0.0052646056734747615) + +[fips3809313940] +centroid = (0.81770220072322353, -1.7325126360718195) +description = Chicago township, ND +station = ('kjms', 0.0072877562235392221) +zone = ('ndz037', 0.004289455507300058) + +[fips3809314660] +centroid = (0.81839218173641437, -1.7299697262582487) +description = Cleveland city, ND +station = ('kjms', 0.0054561920853447663) +zone = ('ndz037', 0.0024678182739587742) + +[fips3809315700] +centroid = (0.82542816245656425, -1.7330977227969653) +description = Conklin township, ND +station = ('k46d', 0.0032579230957206365) +zone = ('ndz023', 0.0066768877009567079) + +[fips3809316020] +centroid = (0.82513218952201106, -1.7195056396345016) +description = Corinne township, ND +station = ('ks32', 0.0055266200458070971) +zone = ('ndz028', 0.0045992303722954021) + +[fips3809316140] +centroid = (0.81589150889074202, -1.7215634700890659) +description = Corwin township, ND +station = ('kjms', 0.0032672594292863584) +zone = ('ndz048', 0.0052135365876850607) + +[fips3809316380] +centroid = (0.82421981865553096, -1.7203450382849559) +description = Courtenay city, ND +station = ('kjms', 0.00521089823986076) +zone = ('ndz025', 0.005509062339707398) + +[fips3809316420] +centroid = (0.82361514933617763, -1.7196880614479202) +description = Courtenay township, ND +station = ('kjms', 0.004756370951935469) +zone = ('ndz028', 0.0058207429900456707) + +[fips3809317460] +centroid = (0.81588649979578887, -1.7278342635585562) +description = Cusator township, ND +station = ('kjms', 0.0051189554927114148) +zone = ('ndz037', 0.004081583229958022) + +[fips3809318700] +centroid = (0.82107037202030719, -1.7286700144708735) +description = Deer Lake township, ND +station = ('kjms', 0.0049054729545269264) +zone = ('ndz037', 0.0015291570665326012) + +[fips3809320] +centroid = (0.81658852358081846, -1.6893948528599527) +description = Briarwood city, ND +station = ('kjkj', 0.0018214809456597965) +zone = ('mnz003', 0.0040747021808821594) + +[fips3809321140] +centroid = (0.82362131034843711, -1.7217210907738132) +description = Durham township, ND +station = ('kjms', 0.0044859961994980491) +zone = ('ndz037', 0.0052191110470739309) + +[fips3809322420] +centroid = (0.82526287977640045, -1.726152045412314) +description = Edmunds township, ND +station = ('k46d', 0.0041525161413792384) +zone = ('ndz025', 0.0030273607144486146) + +[fips3809322940] +centroid = (0.81908385571897979, -1.7256373827224858) +description = Eldridge township, ND +station = ('kjms', 0.0024447908572319209) +zone = ('ndz037', 0.0013459817380505532) + +[fips3809326740] +centroid = (0.81941707397977059, -1.7319940289378817) +description = Flint township, ND +station = ('k46d', 0.0088182443472264241) +zone = ('ndz037', 0.0033425655232223119) + +[fips3809328700] +centroid = (0.82065168498604635, -1.7216905649651959) +description = Fried township, ND +station = ('kjms', 0.0015311744971533031) +zone = ('ndz037', 0.0037950501832932837) + +[fips3809329860] +centroid = (0.82358376831622671, -1.7356055340392784) +description = Gerber township, ND +station = ('k46d', 0.005744728482176685) +zone = ('ndz036', 0.0054036670046295962) + +[fips3809329940] +centroid = (0.81463426096406799, -1.7323785947852663) +description = Germania township, ND +station = ('kjms', 0.0083794640709766253) +zone = ('ndz047', 0.0046234026045743953) + +[fips3809330380] +centroid = (0.8252293869080547, -1.7308916266224448) +description = Glacier township, ND +station = ('k46d', 0.002959563216761532) +zone = ('ndz025', 0.0045877760001418943) + +[fips3809332860] +centroid = (0.82236685494856621, -1.7195450317157193) +description = Gray township, ND +station = ('kjms', 0.0036523609334081228) +zone = ('ndz028', 0.0068152287553872115) + +[fips3809333660] +centroid = (0.81449482661012607, -1.7300304113563405) +description = Griffin township, ND +station = ('kjms', 0.0071673514290743279) +zone = ('ndz037', 0.0057909081631532661) + +[fips3809337820] +centroid = (0.8209037105300343, -1.72645711151227) +description = Hidden township, ND +station = ('kjms', 0.0034802603269163826) +zone = ('ndz037', 0.0010738387148937728) + +[fips3809338620] +centroid = (0.81753272925285492, -1.7212149976506124) +description = Homer township, ND +station = ('kjms', 0.0017085821148207774) +zone = ('ndz037', 0.004720167733406529) + +[fips3809340100] +centroid = (0.82107714389780495, -1.7328897842698829) +description = Iosco township, ND +station = ('k46d', 0.007281184768303973) +zone = ('ndz037', 0.0040705291607119644) + +[fips3809340580] +centroid = (0.81868300594967425, -1.7225551138101713) +description = Jamestown city, ND +station = ('kjms', 0.00057020383687303162) +zone = ('ndz037', 0.0033845033921425329) + +[fips3809340780] +centroid = (0.82226628907706634, -1.7240096712087836) +description = Jim River Valley township, ND +station = ('kjms', 0.0033964673639666934) +zone = ('ndz037', 0.003162707701135632) + +[fips3809342180] +centroid = (0.82554138196514115, -1.7232007285537765) +description = Kensal city, ND +station = ('k46d', 0.0056131451116616096) +zone = ('ndz025', 0.0032707939263432293) + +[fips3809342220] +centroid = (0.82515732226323979, -1.7244872456520066) +description = Kensal township, ND +station = ('k46d', 0.0050805464731527731) +zone = ('ndz025', 0.003256030769138509) + +[fips3809345940] +centroid = (0.81616940021424456, -1.7258728450918726) +description = Lenton township, ND +station = ('kjms', 0.0039545229774007786) +zone = ('ndz037', 0.0038731078040046053) + +[fips3809347060] +centroid = (0.81780486098982585, -1.7256510661038214) +description = Lippert township, ND +station = ('kjms', 0.0027952638861393647) +zone = ('ndz037', 0.0023715100919048005) + +[fips3809348300] +centroid = (0.82528977530017356, -1.7352916191200149) +description = Lowery township, ND +station = ('k46d', 0.0043352638188423904) +zone = ('ndz023', 0.0059622330004396977) + +[fips3809348740] +centroid = (0.82371252125514627, -1.7241222798521221) +description = Lyon township, ND +station = ('kjms', 0.0047826623876262324) +zone = ('ndz037', 0.0042997857705692772) + +[fips3809350300] +centroid = (0.81449812528241239, -1.7190182040810047) +description = Manns township, ND +station = ('kjms', 0.0050880887524409413) +zone = ('ndz048', 0.0037083569579003423) + +[fips3809351020] +centroid = (0.82232906857026056, -1.7349939008562096) +description = Marstonmoor township, ND +station = ('k46d', 0.0065901248137780156) +zone = ('ndz037', 0.0058494138206866371) + +[fips3809351860] +centroid = (0.81847607971355785, -1.7331097306622194) +description = Medina city, ND +station = ('k46d', 0.0098606829589277384) +zone = ('ndz037', 0.0043207681621551825) + +[fips3809352820] +centroid = (0.81920447542358521, -1.7238303909880186) +description = Midway township, ND +station = ('kjms', 0.0012117541835234204) +zone = ('ndz037', 0.002387139079663079) + +[fips3809353980] +centroid = (0.8150513248421245, -1.7207039652456284) +description = Montpelier city, ND +station = ('kjms', 0.0041935561960654445) +zone = ('ndz048', 0.004274062141563088) + +[fips3809354020] +centroid = (0.81461771524275906, -1.7213983444885346) +description = Montpelier township, ND +station = ('kjms', 0.0045459736670167448) +zone = ('ndz048', 0.0039538773100740564) + +[fips3809354100] +centroid = (0.81766682289928561, -1.7278505649337697) +description = Moon Lake township, ND +station = ('kjms', 0.0042240879333481484) +zone = ('ndz037', 0.002323723320082423) + +[fips3809356100] +centroid = (0.81606836310384656, -1.7352566601750974) +description = Newbury township, ND +station = ('k46d', 0.012531894413286476) +zone = ('ndz047', 0.0052745822495354686) + +[fips3809357060] +centroid = (0.82513840289414808, -1.7218859196683716) +description = Nogosek township, ND +station = ('kjms', 0.0059983535315302049) +zone = ('ndz025', 0.0041282864515690305) + +[fips3809358280] +centroid = (0.82348754831456428, -1.7307813392670111) +description = Northwest Stutsman UT, ND +station = ('k46d', 0.0046939655813127527) +zone = ('ndz037', 0.0043202484777690288) + +[fips3809360780] +centroid = (0.82260249185087786, -1.7305622655393007) +description = Paris township, ND +station = ('k46d', 0.0055757108965309686) +zone = ('ndz037', 0.0035302043337822327) + +[fips3809361940] +centroid = (0.81926266470084663, -1.7343894409763665) +description = Peterson township, ND +station = ('k46d', 0.0092954128217525942) +zone = ('ndz037', 0.0049827886804259657) + +[fips3809362620] +centroid = (0.82316363265868664, -1.7262868371904454) +description = Pingree city, ND +station = ('kjms', 0.0049479144747220831) +zone = ('ndz037', 0.0032759527232011157) + +[fips3809362660] +centroid = (0.8237984961740995, -1.7261449244689657) +description = Pingree township, ND +station = ('k46d', 0.005288510759394815) +zone = ('ndz037', 0.0039178354513561579) + +[fips3809362740] +centroid = (0.82380577419708045, -1.7284496317462243) +description = Pipestem Valley township, ND +station = ('k46d', 0.0045916645250619328) +zone = ('ndz037', 0.0039630298499437593) + +[fips3809362940] +centroid = (0.82209528171695589, -1.7261465650784626) +description = Plainview township, ND +station = ('kjms', 0.004061498353586079) +zone = ('ndz037', 0.0022609446959954032) + +[fips3809368100] +centroid = (0.82067055199526029, -1.7196595776745276) +description = Rose township, ND +station = ('kjms', 0.0022399181443872301) +zone = ('ndz037', 0.0051648190388258186) + +[fips3809368740] +centroid = (0.82219946042000736, -1.7282952748271778) +description = Round Top township, ND +station = ('k46d', 0.0061659259434653215) +zone = ('ndz037', 0.0023872930226931889) + +[fips3809370180] +centroid = (0.81779348144310293, -1.734380906316324) +description = St. Paul township, ND +station = ('k46d', 0.010711697463696705) +zone = ('ndz037', 0.0053817034954783179) + +[fips3809371860] +centroid = (0.81487979388323839, -1.7237875780614671) +description = Severn township, ND +station = ('kjms', 0.0044227180994162252) +zone = ('ndz048', 0.0049057099166283594) + +[fips3809371900] +centroid = (0.8146534595858399, -1.7262382472240698) +description = Sharlow township, ND +station = ('kjms', 0.0053222278305033333) +zone = ('ndz037', 0.0053254801460259123) + +[fips3809373340] +centroid = (0.81608148797982172, -1.7301158975831032) +description = Sinclair township, ND +station = ('kjms', 0.0063035590953245376) +zone = ('ndz037', 0.0043581985914919281) + +[fips3809374700] +centroid = (0.81923870133021681, -1.7189216175601993) +description = Spiritwood township, ND +station = ('kjms', 0.0021439148051622631) +zone = ('ndz037', 0.0056645260021547638) + +[fips3809374740] +centroid = (0.82169450176082048, -1.7206494237065038) +description = Spiritwood Lake city, ND +station = ('kjms', 0.0027280476825811161) +zone = ('ndz037', 0.0047693843828665134) + +[fips3809376180] +centroid = (0.81759522949336871, -1.7298107616699772) +description = Stirton township, ND +station = ('kjms', 0.0055191407487897165) +zone = ('ndz037', 0.0029652468139416384) + +[fips3809376620] +centroid = (0.81432835710607088, -1.7341066976375434) +description = Streeter city, ND +station = ('kjms', 0.0095498459300729296) +zone = ('ndz047', 0.0037812621973539896) + +[fips3809376660] +centroid = (0.81463377227187739, -1.734795422013673) +description = Streeter township, ND +station = ('kjms', 0.0098147271863527237) +zone = ('ndz047', 0.0039216685210816333) + +[fips3809376780] +centroid = (0.8218787910765385, -1.7328716852055397) +description = Strong township, ND +station = ('k46d', 0.0064985937102218384) +zone = ('ndz037', 0.0043500420369873725) + +[fips3809377620] +centroid = (0.81601830706089939, -1.7234092081329273) +description = Sydney township, ND +station = ('kjms', 0.003256739030675014) +zone = ('ndz037', 0.0046859762363606321) + +[fips3809381260] +centroid = (0.82071245735060072, -1.7303738048866706) +description = Valley Spring township, ND +station = ('k46d', 0.0074663088985745538) +zone = ('ndz037', 0.0023253284783256016) + +[fips3809382540] +centroid = (0.82385588259990516, -1.7327671748899305) +description = Wadsworth township, ND +station = ('k46d', 0.004583173417208727) +zone = ('ndz037', 0.005469039910914881) + +[fips3809383260] +centroid = (0.82513218952201106, -1.7284520577538844) +description = Walters township, ND +station = ('k46d', 0.003352049786481293) +zone = ('ndz025', 0.003614645465848729) + +[fips3809384300] +centroid = (0.81930001474683933, -1.7299824148019107) +description = Weld township, ND +station = ('kjms', 0.0054129074407229536) +zone = ('ndz037', 0.0020323848983839314) + +[fips3809386700] +centroid = (0.81914490733621459, -1.7279688982570549) +description = Windsor township, ND +station = ('kjms', 0.0040361073730198604) +zone = ('ndz037', 0.00097061695888502845) + +[fips3809386740] +centroid = (0.81753724965561758, -1.7190095472479148) +description = Winfield township, ND +station = ('kjms', 0.0026294149537360563) +zone = ('ndz037', 0.0060629481014852901) + +[fips3809387380] +centroid = (0.81753248490675956, -1.7237870370093988) +description = Woodbury township, ND +station = ('kjms', 0.0019960001012810061) +zone = ('ndz037', 0.0033322696692845164) + +[fips3809387580] +centroid = (0.82278606558160272, -1.7331843958476196) +description = Woodworth city, ND +station = ('k46d', 0.0056871716579972101) +zone = ('ndz037', 0.0049950108825207971) + +[fips3809388060] +centroid = (0.81614135277316502, -1.7191893859740404) +description = Ypsilanti township, ND +station = ('kjms', 0.0035845358487251885) +zone = ('ndz048', 0.0053303751888676429) + +[fips3809460] +centroid = (0.8409625701836948, -1.7335313149430385) +description = Brinsmade city, ND +station = ('kdvl', 0.0048852717583877424) +zone = ('ndz014', 0.0020520915635414919) + +[fips38095] +centroid = (0.84966438040841075, -1.7322071336395504) +description = Towner County, ND +station = ('k9d7', 0.0035313746011177483) +zone = ('ndz006', 6.5066510316536089e-05) + +[fips3809503100] +centroid = (0.85254792613209307, -1.7334714676029876) +description = Armourdale township, ND +station = ('k06d', 0.0035071602729168437) +zone = ('ndz006', 0.0029517639584126011) + +[fips3809503660] +centroid = (0.84526168265049983, -1.7331956008614173) +description = Atkins township, ND +station = ('k9d7', 0.0011792790639730754) +zone = ('ndz006', 0.004513896838033468) + +[fips3809506620] +centroid = (0.84662736788360038, -1.7283153984734534) +description = Bethel township, ND +station = ('k9d7', 0.0024919186851355148) +zone = ('ndz006', 0.004010015198578543) + +[fips3809507180] +centroid = (0.84868952675470921, -1.7344869001617977) +description = Bisbee city, ND +station = ('k9d7', 0.0030378362854893994) +zone = ('ndz006', 0.0018485646343672604) + +[fips3809511860] +centroid = (0.84626149451250476, -1.7314189429493496) +description = Cando city, ND +station = ('k9d7', 0.0004062780550431392) +zone = ('ndz006', 0.0034977711389277541) + +[fips3809511900] +centroid = (0.84669114221446817, -1.7305991268931029) +description = Cando township, ND +station = ('k9d7', 0.0010828232448983478) +zone = ('ndz006', 0.0032053776082840383) + +[fips3809515860] +centroid = (0.84498361679407208, -1.72831461307529) +description = Coolin township, ND +station = ('k9d7', 0.0027034405135361664) +zone = ('ndz015', 0.0043504532133096198) + +[fips3809516820] +centroid = (0.8494044310696186, -1.7305949555561908) +description = Crocus township, ND +station = ('k9d7', 0.0033987494424785642) +zone = ('ndz006', 0.0010865773640977752) + +[fips3809518140] +centroid = (0.85421119000265866, -1.7292204040504902) +description = Dash township, ND +station = ('cwpo', 0.0049259034628080607) +zone = ('ndz006', 0.004888912286968191) + +[fips3809522540] +centroid = (0.84871123865060405, -1.7295851778641569) +description = Egeland city, ND +station = ('k9d7', 0.0030318911340086558) +zone = ('ndz006', 0.0019839357513689649) + +[fips3809530020] +centroid = (0.84806829426075436, -1.7329196992132621) +description = Gerrard township, ND +station = ('k9d7', 0.0020260055991211563) +zone = ('ndz006', 0.0017286831894699596) + +[fips3809531980] +centroid = (0.84939169016607907, -1.7352322430188623) +description = Grainfield township, ND +station = ('k9d7', 0.0038949856660080574) +zone = ('ndz006', 0.0020506557277854263) + +[fips3809535140] +centroid = (0.85437917794316309, -1.7345207071894091) +description = Hansboro city, ND +station = ('k06d', 0.0029979351917701707) +zone = ('ndz006', 0.0049062019197817965) + +[fips3809539100] +centroid = (0.85110799459261277, -1.7337288513077791) +description = Howell township, ND +station = ('k06d', 0.0038877695612382591) +zone = ('ndz006', 0.0017250908660171997) + +[fips3809544980] +centroid = (0.85268662744774903, -1.7292265650627494) +description = Lansing township, ND +station = ('cwpo', 0.0063486530140907998) +zone = ('ndz006', 0.0035404277806436999) + +[fips3809551620] +centroid = (0.84511093856300512, -1.7309727320727848) +description = Maza township, ND +station = ('k9d7', 0.0012311673288504198) +zone = ('ndz006', 0.0046804022558307509) + +[fips3809553900] +centroid = (0.8509357480487334, -1.7356829393916045) +description = Monroe township, ND +station = ('k06d', 0.0030130593032513344) +zone = ('ndz006', 0.0026165933727059889) + +[fips3809554940] +centroid = (0.85251546300800596, -1.7358513462111296) +description = Mount View township, ND +station = ('k06d', 0.0020003239816466338) +zone = ('ndz006', 0.0036996569813397087) + +[fips3809556140] +centroid = (0.84802090857156276, -1.7354729413760046) +description = New City township, ND +station = ('k9d7', 0.0029728187029175127) +zone = ('ndz006', 0.0027697010339837688) + +[fips3809559380] +centroid = (0.8465861083000833, -1.7328851940539503) +description = Olson township, ND +station = ('k9d7', 0.00073873772023193426) +zone = ('ndz006', 0.003173584676660627) + +[fips3809561140] +centroid = (0.84799806221165408, -1.7308093518015055) +description = Paulson township, ND +station = ('k9d7', 0.0020228952525541887) +zone = ('ndz006', 0.0019454369928296506) + +[fips3809561780] +centroid = (0.85023503326064276, -1.7358700037808334) +description = Perth city, ND +station = ('k06d', 0.0035016801196176279) +zone = ('ndz006', 0.0024963613158087883) + +[fips3809562420] +centroid = (0.85430985346527388, -1.7356838120562306) +description = Picton township, ND +station = ('k06d', 0.0022809892233961503) +zone = ('ndz006', 0.005137130238654637) + +[fips3809567500] +centroid = (0.85154903929459169, -1.7321709529641565) +description = Rocklake city, ND +station = ('k9d7', 0.0054145729912138387) +zone = ('ndz006', 0.0018250222279602654) + +[fips3809567540] +centroid = (0.85220097213008916, -1.7315330002159675) +description = Rock Lake township, ND +station = ('k9d7', 0.0060732492890754218) +zone = ('ndz006', 0.002512050643992719) + +[fips3809570780] +centroid = (0.85423611330437721, -1.7278983345953969) +description = Sarles city, ND +station = ('cwpo', 0.0046135795950955133) +zone = ('ndz006', 0.0053162695057434022) + +[fips3809572980] +centroid = (0.85409833701322468, -1.733401863872418) +description = Sidney township, ND +station = ('k06d', 0.0036048729583331644) +zone = ('ndz006', 0.004449179909370592) + +[fips3809573660] +centroid = (0.85420996827218221, -1.7311574926274009) +description = Smith township, ND +station = ('cwpo', 0.0055698563129041711) +zone = ('ndz006', 0.0045350071396208841) + +[fips3809573940] +centroid = (0.84936179267599232, -1.7330351178366965) +description = Sorenson township, ND +station = ('k9d7', 0.0032978354929112715) +zone = ('ndz006', 0.0006776908542457399) + +[fips3809574980] +centroid = (0.84486200225179309, -1.7353539971874812) +description = Springfield township, ND +station = ('k9d7', 0.0025626544668717038) +zone = ('ndz006', 0.0052998632037184459) + +[fips3809578260] +centroid = (0.85079769250490067, -1.7292212243552385) +description = Teddy township, ND +station = ('k9d7', 0.0050114033347411742) +zone = ('ndz006', 0.0022208450213609993) + +[fips3809580340] +centroid = (0.84965862082187904, -1.7284485670953806) +description = Twin Hill township, ND +station = ('k9d7', 0.0042352053519423812) +zone = ('ndz006', 0.0024563132527771884) + +[fips3809582020] +centroid = (0.84788039211348465, -1.7285539849822011) +description = Victor township, ND +station = ('k9d7', 0.0028735290198107521) +zone = ('ndz006', 0.0030170711498673456) + +[fips3809582300] +centroid = (0.85093152435194352, -1.7311235285201572) +description = Virginia township, ND +station = ('k9d7', 0.0048309143440733848) +zone = ('ndz006', 0.0013901963601225125) + +[fips3809588220] +centroid = (0.84637649425691863, -1.7351730589039269) +description = Zion township, ND +station = ('k9d7', 0.0021156891260646644) +zone = ('ndz006', 0.0038932659718395987) + +[fips38097] +centroid = (0.8280926693591214, -1.6958448741903305) +description = Traill County, ND +station = ('kgfk', 0.0087954150452919429) +zone = ('ndz030', 0.00014455944351574951) + +[fips3809700] +centroid = (0.84143742191328497, -1.7166256543824936) +description = Brocket city, ND +station = ('kd55', 0.0094742338063372351) +zone = ('ndz015', 0.0043592001701777978) + +[fips3809705940] +centroid = (0.83117293114279611, -1.6915006798689465) +description = Belmont township, ND +station = ('kckn', 0.0052982024479362837) +zone = ('ndz030', 0.0041263081117107903) + +[fips3809707060] +centroid = (0.82974970240425738, -1.6914431712700932) +description = Bingham township, ND +station = ('kckn', 0.0064138467575156188) +zone = ('ndz030', 0.0033046198511968564) + +[fips3809707660] +centroid = (0.82671818766659078, -1.6979031409772074) +description = Blanchard township, ND +station = ('kfar', 0.0093811900367495021) +zone = ('ndz030', 0.002083376826078248) + +[fips3809707820] +centroid = (0.8267184669192712, -1.6956760833983702) +description = Bloomfield township, ND +station = ('kfar', 0.0085761179138850435) +zone = ('ndz030', 0.001515463486772073) + +[fips3809708140] +centroid = (0.82521444688965762, -1.6953030541773411) +description = Bohnsack township, ND +station = ('kfar', 0.0071462268170553404) +zone = ('ndz030', 0.003035415272652255) + +[fips3809711340] +centroid = (0.83081833259866844, -1.6947163617492833) +description = Buxton city, ND +station = ('kgfk', 0.006145094780039718) +zone = ('ndz030', 0.0026856308578237014) + +[fips3809711380] +centroid = (0.8312713328060235, -1.6956905172712842) +description = Buxton township, ND +station = ('kgfk', 0.0056232456204183805) +zone = ('ndz030', 0.0030400124256898704) + +[fips3809711540] +centroid = (0.8282359259841251, -1.6914194347922662) +description = Caledonia township, ND +station = ('kckn', 0.0077238283003045385) +zone = ('ndz030', 0.0029539834644563782) + +[fips3809714740] +centroid = (0.82638160092034363, -1.7001274409358265) +description = Clifford city, ND +station = ('kbac', 0.010126928614700263) +zone = ('ndz029', 0.0041670162240988627) + +[fips3809722820] +centroid = (0.82835673767494811, -1.6932679304563458) +description = Eldorado township, ND +station = ('kckn', 0.0082568166880101958) +zone = ('ndz030', 0.0017085149504449206) + +[fips3809723740] +centroid = (0.82521381857112686, -1.691072445883677) +description = Elm River township, ND +station = ('kfar', 0.0061370240587698653) +zone = ('ndz030', 0.0043943468980859133) + +[fips3809724740] +centroid = (0.82987951999402065, -1.6936277649882294) +description = Ervin township, ND +station = ('kgfk', 0.0072112298502175105) +zone = ('ndz030', 0.0022009545633364827) + +[fips3809728980] +centroid = (0.82502034882354325, -1.7001033030322714) +description = Galesburg city, ND +station = ('kbac', 0.0092401057430038548) +zone = ('ndz030', 0.0043426497833264866) + +[fips3809729020] +centroid = (0.82510531145153032, -1.6995619368048878) +description = Galesburg township, ND +station = ('kbac', 0.0095826635876208304) +zone = ('ndz030', 0.0040385952044993548) + +[fips3809729300] +centroid = (0.83127248472332982, -1.7001026921670332) +description = Garfield township, ND +station = ('krdr', 0.0059046627162790011) +zone = ('ndz030', 0.0042104192885629695) + +[fips3809732300] +centroid = (0.82449158387335908, -1.6930445632186755) +description = Grandin city, ND +station = ('kfar', 0.0057964665538647736) +zone = ('ndz030', 0.0041768897844619507) + +[fips3809733340] +centroid = (0.82521507520818826, -1.6975238983840415) +description = Greenfield township, ND +station = ('kfar', 0.0080465236557444361) +zone = ('ndz030', 0.0032379300895778937) + +[fips3809736100] +centroid = (0.83142202453364067, -1.700976316724119) +description = Hatton city, ND +station = ('krdr', 0.0057953315883149913) +zone = ('ndz029', 0.0044463272026117389) + +[fips3809737460] +centroid = (0.82659271594666484, -1.6914026098182768) +description = Herberg township, ND +station = ('kfar', 0.0075338342589417167) +zone = ('ndz030', 0.003390640705589741) + +[fips3809738100] +centroid = (0.82733760501812359, -1.6940727017744404) +description = Hillsboro city, ND +station = ('kfar', 0.0087028274412208045) +zone = ('ndz030', 0.0014651590901282952) + +[fips3809738140] +centroid = (0.82669724371556685, -1.6934322357521285) +description = Hillsboro township, ND +station = ('kfar', 0.0079560225150225195) +zone = ('ndz030', 0.0022130042714121772) + +[fips3809741860] +centroid = (0.82521666345780764, -1.693088720048751) +description = Kelso township, ND +station = ('kfar', 0.0064818724920623965) +zone = ('ndz030', 0.0035263208808154725) + +[fips3809746860] +centroid = (0.82977158883307722, -1.6978855655116398) +description = Lindaas township, ND +station = ('kgfk', 0.0072068026989350106) +zone = ('ndz030', 0.002092452830540274) + +[fips3809751500] +centroid = (0.82899743059006281, -1.6986620974024369) +description = Mayville city, ND +station = ('kgfk', 0.0080642419932717754) +zone = ('ndz030', 0.0020878915784912377) + +[fips3809751540] +centroid = (0.82821890902391815, -1.6978899811946473) +description = Mayville township, ND +station = ('kgfk', 0.0087435019591803869) +zone = ('ndz030', 0.0014213319922412784) + +[fips3809754380] +centroid = (0.83127555650281326, -1.6978993187061455) +description = Morgan township, ND +station = ('kgfk', 0.005728988778496296) +zone = ('ndz030', 0.0033606898081981499) + +[fips3809757540] +centroid = (0.82672525625006144, -1.7001318217122487) +description = Norman township, ND +station = ('kfar', 0.010352675112643329) +zone = ('ndz029', 0.0040198425021461901) + +[fips3809758540] +centroid = (0.82823662411582577, -1.6956850892973103) +description = Norway township, ND +station = ('kgfk', 0.0086548848823577301) +zone = ('ndz030', 6.9791920163390846e-05) + +[fips3809763900] +centroid = (0.82901917739254249, -1.6994153640543053) +description = Portland city, ND +station = ('kgfk', 0.0081636739476986832) +zone = ('ndz030', 0.0025749053159592229) + +[fips3809766260] +centroid = (0.83195204612088636, -1.6948695318444382) +description = Reynolds city, ND +station = ('kgfk', 0.0050099474774565481) +zone = ('ndz030', 0.0037712989564868283) + +[fips3809768500] +centroid = (0.82823569909132233, -1.7001322056846844) +description = Roseville township, ND +station = ('krdr', 0.0089413996357020093) +zone = ('ndz029', 0.0037092801053700813) + +[fips3809775700] +centroid = (0.8312734795610035, -1.6934381873248778) +description = Stavanger township, ND +station = ('kgfk', 0.0059042281091957463) +zone = ('ndz030', 0.0034302737119716624) + +[fips3809782180] +centroid = (0.82977302000306397, -1.7001389426555971) +description = Viking township, ND +station = ('krdr', 0.0074043262663020179) +zone = ('ndz029', 0.0039961591112624506) + +[fips3809787100] +centroid = (0.82975420535372757, -1.6956863633876642) +description = Wold township, ND +station = ('kgfk', 0.0071385561548628152) +zone = ('ndz030', 0.0015237219893586178) + +[fips3809830] +centroid = (0.8203725370254823, -1.6911488738516218) +description = Brooktree Park CDP, ND +station = ('kfar', 0.0015498650096051557) +zone = ('mnz003', 0.0052039858487501842) + +[fips38099] +centroid = (0.84433756571815388, -1.7055746658911783) +description = Walsh County, ND +station = ('kgaf', 0.0041012911214865586) +zone = ('ndz016', 0.0025832817848150222) + +[fips3809900260] +centroid = (0.84507693954917629, -1.6964857416383701) +description = Acton township, ND +station = ('kgaf', 0.0019785542971516301) +zone = ('mnz007', 0.0051585867625302869) + +[fips3809900340] +centroid = (0.84509793586007764, -1.711713477562633) +description = Adams city, ND +station = ('kd55', 0.0068773912177930805) +zone = ('ndz054', 0.00086560041938533083) + +[fips3809900380] +centroid = (0.84490205755812642, -1.7126584511795402) +description = Adams township, ND +station = ('kd55', 0.0067371817945747854) +zone = ('ndz054', 0.00083624953231172948) + +[fips3809902860] +centroid = (0.84134437841086118, -1.6989166536738405) +description = Ardoch city, ND +station = ('kgaf', 0.0034948871313401223) +zone = ('ndz016', 0.0033892443395916825) + +[fips3809902900] +centroid = (0.84198638032291473, -1.6985442527713424) +description = Ardoch township, ND +station = ('kgaf', 0.0028975008311546602) +zone = ('ndz016', 0.003037106292505505) + +[fips3809914700] +centroid = (0.84181114926601452, -1.7096741126915551) +description = Cleveland township, ND +station = ('kgaf', 0.0074407366415857271) +zone = ('ndz054', 0.0028408682943508075) + +[fips3809915820] +centroid = (0.84184989557540879, -1.7047535408379926) +description = Conway city, ND +station = ('kgaf', 0.0046161719447416795) +zone = ('ndz016', 0.0030990303644489914) + +[fips3809919460] +centroid = (0.8450910592628248, -1.7150318197095722) +description = Dewey township, ND +station = ('kd55', 0.0059996281635420817) +zone = ('ndz054', 0.0022537310963677113) + +[fips3809920900] +centroid = (0.84647836912535757, -1.7057359343140626) +description = Dundee township, ND +station = ('kgaf', 0.0044913293541771725) +zone = ('ndz016', 0.0035286773972952445) + +[fips3809922020] +centroid = (0.84191731764441335, -1.7053435668449217) +description = Eden township, ND +station = ('kgaf', 0.0048823567806999674) +zone = ('ndz016', 0.0033234796428103707) + +[fips3809922260] +centroid = (0.84640551908237938, -1.7080273072758358) +description = Edinburg city, ND +station = ('k2c8', 0.0056901620131159835) +zone = ('ndz054', 0.0033544866430374222) + +[fips3809925180] +centroid = (0.84630919436096175, -1.7144563322953119) +description = Fairdale city, ND +station = ('kd55', 0.0049600967516330377) +zone = ('ndz054', 0.0026801528941177532) + +[fips3809925860] +centroid = (0.84647596057098984, -1.7011689312603691) +description = Farmington township, ND +station = ('kgaf', 0.0020121557160065369) +zone = ('ndz016', 0.0023160741881830646) + +[fips3809926100] +centroid = (0.84496054354136074, -1.7034583494533799) +description = Fertile township, ND +station = ('kgaf', 0.0026699521867265767) +zone = ('ndz016', 0.0014052595371730643) + +[fips3809927060] +centroid = (0.84153840666380542, -1.7068547078178833) +description = Fordville city, ND +station = ('kgaf', 0.0059235880631490542) +zone = ('ndz016', 0.0043366200127636654) + +[fips3809927100] +centroid = (0.84153713257345142, -1.7011819339632963) +description = Forest River city, ND +station = ('kgaf', 0.0034826119419408097) +zone = ('ndz016', 0.0026706504072798423) + +[fips3809927140] +centroid = (0.84192305977765247, -1.7007964430914084) +description = Forest River township, ND +station = ('kgaf', 0.0030354786891527486) +zone = ('ndz016', 0.0023402116666283537) + +[fips3809930940] +centroid = (0.84647203358017287, -1.7034504431118684) +description = Glenwood township, ND +station = ('kgaf', 0.0031293308223336118) +zone = ('ndz016', 0.0025663031415256179) + +[fips3809931060] +centroid = (0.84494706959953536, -1.7078583419509503) +description = Golden township, ND +station = ('kgaf', 0.0055885533419108924) +zone = ('ndz054', 0.0027681041211732342) + +[fips3809931820] +centroid = (0.84499522323359788, -1.7000608740781553) +description = Grafton city, ND +station = ('kgaf', 0.00044614504681501801) +zone = ('ndz016', 0.0013522679457867071) + +[fips3809931860] +centroid = (0.84495604059189067, -1.7012267016586102) +description = Grafton township, ND +station = ('kgaf', 0.0011925337716621575) +zone = ('ndz016', 0.00082976729333952436) + +[fips3809935740] +centroid = (0.84345322483946084, -1.6985041276518389) +description = Harriston township, ND +station = ('kgaf', 0.0015036242862038632) +zone = ('ndz016', 0.0022422051399516069) + +[fips3809938780] +centroid = (0.84709556990874035, -1.7040995136073926) +description = Hoople city, ND +station = ('kgaf', 0.0038350117981240431) +zone = ('ndz016', 0.0033186866168956187) + +[fips3809942260] +centroid = (0.84501978001617339, -1.7055643684485915) +description = Kensington township, ND +station = ('kgaf', 0.0040690279593336778) +zone = ('ndz016', 0.002702799895078285) + +[fips3809942900] +centroid = (0.84656357609944, -1.7150750340618515) +description = Kinloss township, ND +station = ('kd55', 0.0045786589452966051) +zone = ('ndz054', 0.0031411134572312486) + +[fips3809944620] +centroid = (0.84660431208418152, -1.7078256519340604) +description = Lampton township, ND +station = ('k2c8', 0.0054520506443865814) +zone = ('ndz054', 0.0035853658018161695) + +[fips3809944860] +centroid = (0.84324703164163028, -1.7090494418989737) +description = Lankin city, ND +station = ('kgaf', 0.0065752759510240462) +zone = ('ndz054', 0.0021325787891073923) + +[fips3809945260] +centroid = (0.84355712428983209, -1.7119465313776516) +description = Latona township, ND +station = ('kd55', 0.0081525579456445153) +zone = ('ndz054', 0.00068414819952354437) + +[fips3809951140] +centroid = (0.84659415426793494, -1.698764548229529) +description = Martin township, ND +station = ('kgaf', 0.0018283779962866135) +zone = ('ndz016', 0.0030939014483861121) + +[fips3809951780] +centroid = (0.84192939532283717, -1.7076256721083669) +description = Medford township, ND +station = ('kgaf', 0.0061628200399154454) +zone = ('ndz054', 0.0036579495522936398) + +[fips3809953540] +centroid = (0.84286124406376939, -1.6994797317971189) +description = Minto city, ND +station = ('kgaf', 0.0019606956919910449) +zone = ('ndz016', 0.0019797675431278794) + +[fips3809958380] +centroid = (0.8435026176572924, -1.7100910020366864) +description = Norton township, ND +station = ('kgaf', 0.0071968972758733492) +zone = ('ndz054', 0.0014040682169230193) + +[fips3809958980] +centroid = (0.84495066497779447, -1.6988878033813049) +description = Oakwood township, ND +station = ('kgaf', 0.00038958222942369225) +zone = ('ndz016', 0.0020133167773469236) + +[fips3809959540] +centroid = (0.84191595628759675, -1.7030735567131927) +description = Ops township, ND +station = ('kgaf', 0.0037783880906514691) +zone = ('ndz016', 0.0024489594068625629) + +[fips3809960900] +centroid = (0.84462777906617559, -1.7059558108932289) +description = Park River city, ND +station = ('kgaf', 0.0043293461402038463) +zone = ('ndz016', 0.0028658044585486661) + +[fips3809961820] +centroid = (0.84201573676093333, -1.7119760099887178) +description = Perth township, ND +station = ('kd55', 0.0095584709632936561) +zone = ('ndz054', 0.0022252141839663366) + +[fips3809962780] +centroid = (0.84318604983756562, -1.7053772342461928) +description = Pisek city, ND +station = ('kgaf', 0.004269798913432511) +zone = ('ndz016', 0.0026455637587457963) + +[fips3809964270] +centroid = (0.84343793575521342, -1.7030704674804169) +description = Prairie Centre township, ND +station = ('kgaf', 0.0027798535836490944) +zone = ('ndz016', 0.0011825520205256347) + +[fips3809964860] +centroid = (0.84328898935684815, -1.6964630174515092) +description = Pulaski township, ND +station = ('kgaf', 0.0025032566230723478) +zone = ('ndz016', 0.0035898234831478657) + +[fips3809968940] +centroid = (0.84344008251019342, -1.7053373011129072) +description = Rushford township, ND +station = ('kgaf', 0.0041535137250758259) +zone = ('ndz016', 0.0025346513994000124) + +[fips3809969620] +centroid = (0.84634975581277816, -1.6964931767409837) +description = St. Andrews township, ND +station = ('kgaf', 0.0024818243622986161) +zone = ('ndz016', 0.0040722776076300062) + +[fips3809970940] +centroid = (0.84204207377934592, -1.7142150754328087) +description = Sauter township, ND +station = ('kd55', 0.0090909134885339606) +zone = ('ndz054', 0.0026880915294489201) + +[fips3809972380] +centroid = (0.84355948048432228, -1.7143051518755044) +description = Shepherd township, ND +station = ('kd55', 0.0076035830331406314) +zone = ('ndz054', 0.0017441530788320683) + +[fips3809973220] +centroid = (0.84635443329517346, -1.7123721299157504) +description = Silvesta township, ND +station = ('kd55', 0.0055903901751830389) +zone = ('ndz054', 0.0021384286138289355) + +[fips3809978820] +centroid = (0.84654352226633456, -1.7101011074930557) +description = Tiber township, ND +station = ('k2c8', 0.0063387529183341037) +zone = ('ndz054', 0.002590729898567643) + +[fips3809981860] +centroid = (0.84343997779043822, -1.7076007662599411) +description = Vernon township, ND +station = ('kgaf', 0.0055941053959814805) +zone = ('ndz016', 0.0039969755122776403) + +[fips3809981980] +centroid = (0.84491060967146125, -1.7101072859586077) +description = Vesta township, ND +station = ('kgaf', 0.0070807306884783285) +zone = ('ndz054', 0.0013597375876871012) + +[fips3809983180] +centroid = (0.84343692346424726, -1.7008002828157629) +description = Walsh Centre township, ND +station = ('kgaf', 0.0016530613846027129) +zone = ('ndz016', 0.00095545978399131704) + +[fips3809983220] +centroid = (0.8420420912326384, -1.6963474766550273) +description = Walshville township, ND +station = ('kgaf', 0.003458206143124168) +zone = ('ndz016', 0.0041516528390739349) + +[fips3810060] +centroid = (0.82139739436225345, -1.7248932266893131) +description = Buchanan city, ND +station = ('kjms', 0.0029713767429892508) +zone = ('ndz037', 0.0021214314863548466) + +[fips38101] +centroid = (0.84153992510025466, -1.7722166948931255) +description = Ward County, ND +station = ('kmot', 0.0031143264866657517) +zone = ('ndz011', 9.0456464095820018e-05) + +[fips3810100740] +centroid = (0.84035997780615124, -1.7686106701255799) +description = Afton township, ND +station = ('kmot', 0.0021349784335865708) +zone = ('ndz011', 0.0027316676054252604) + +[fips3810102420] +centroid = (0.83750273419429644, -1.7744495120584944) +description = Anna township, ND +station = ('kn60', 0.0064695850598044478) +zone = ('ndz011', 0.0043825884536955696) + +[fips3810104140] +centroid = (0.84802572568029821, -1.7810751833247926) +description = Baden township, ND +station = ('k08d', 0.006509935154813672) +zone = ('ndz002', 0.0064694513458710932) + +[fips3810106460] +centroid = (0.84326170986063953, -1.775602616188702) +description = Berthold city, ND +station = ('kmot', 0.0053079972481023746) +zone = ('ndz011', 0.0027710737685530508) + +[fips3810106500] +centroid = (0.84353412085029078, -1.7753032049555224) +description = Berthold township, ND +station = ('kmot', 0.0051629630161441056) +zone = ('ndz011', 0.0027907753507394246) + +[fips3810109380] +centroid = (0.83740935907931469, -1.7633824839913534) +description = Brillian township, ND +station = ('kmot', 0.0057828949990582357) +zone = ('ndz012', 0.0064237520207708707) + +[fips3810110940] +centroid = (0.84257822147226602, -1.7701978550940509) +description = Burlington city, ND +station = ('kmot', 0.0016525343877953752) +zone = ('ndz011', 0.0016575869523604767) + +[fips3810110980] +centroid = (0.84191974365207356, -1.7708955853691208) +description = Burlington township, ND +station = ('kmot', 0.0021661020090915132) +zone = ('ndz011', 0.00094072609788129922) + +[fips3810111100] +centroid = (0.84055899770075626, -1.7707789450152103) +description = Burt township, ND +station = ('kmot', 0.0027511196992680482) +zone = ('ndz011', 0.0014464951112963299) + +[fips3810111740] +centroid = (0.83596771711716744, -1.7721788910615273) +description = Cameron township, ND +station = ('kn60', 0.0044906474292376736) +zone = ('ndz011', 0.0056616054193988474) + +[fips3810112100] +centroid = (0.84649887674406854, -1.7786802948850837) +description = Carbondale township, ND +station = ('kmot', 0.0083433825695352747) +zone = ('ndz003', 0.0047996524049507211) + +[fips3810112260] +centroid = (0.84549155996628, -1.7752671813597611) +description = Carpio city, ND +station = ('kmot', 0.0058807671954501624) +zone = ('ndz011', 0.0043556223904931838) + +[fips3810112300] +centroid = (0.84501183876807695, -1.7763688855434976) +description = Carpio township, ND +station = ('kmot', 0.0063046553434627332) +zone = ('ndz011', 0.0043572412891863567) + +[fips3810119140] +centroid = (0.85108150049456754, -1.781745773729994) +description = Denmark township, ND +station = ('k08d', 0.0088791614967965483) +zone = ('ndz002', 0.0049893844616687522) + +[fips3810119300] +centroid = (0.84224118094041334, -1.7726210527742274) +description = Des Lacs city, ND +station = ('kmot', 0.0032621682194348997) +zone = ('ndz011', 0.00066285720271543633) + +[fips3810119340] +centroid = (0.8417987923349104, -1.7733947572316366) +description = Des Lacs township, ND +station = ('kmot', 0.0038232282441161411) +zone = ('ndz011', 0.00078857932742271619) + +[fips3810119900] +centroid = (0.84662021203366722, -1.7782711548018313) +description = Donnybrook city, ND +station = ('kmot', 0.0081689985996687593) +zone = ('ndz003', 0.004540979268645981) + +[fips3810120020] +centroid = (0.83527405345925476, -1.7715428756288081) +description = Douglas city, ND +station = ('kn60', 0.0037129629721561583) +zone = ('ndz021', 0.0048593478227784174) + +[fips3810123660] +centroid = (0.84951857560269906, -1.7829947487960136) +description = Elmdale township, ND +station = ('k08d', 0.0071155450494780328) +zone = ('ndz002', 0.0046229052117090202) + +[fips3810124980] +centroid = (0.8434862290156161, -1.7686730481930464) +description = Eureka township, ND +station = ('kmot', 0.0012445863849060359) +zone = ('ndz011', 0.0030133927444163156) + +[fips3810125060] +centroid = (0.84183877782807359, -1.7775960090872822) +description = Evergreen township, ND +station = ('kmot', 0.006596094172312778) +zone = ('ndz011', 0.0035750034086713938) + +[fips3810128020] +centroid = (0.84361110732359623, -1.7730125824853276) +description = Foxholm township, ND +station = ('kmot', 0.0037144174909494307) +zone = ('ndz011', 0.0020477441648683284) + +[fips3810128460] +centroid = (0.83886978078421359, -1.7686045440199054) +description = Freedom township, ND +station = ('kmot', 0.0035904298705187851) +zone = ('ndz011', 0.0036735493207944356) + +[fips3810129620] +centroid = (0.83751463733979514, -1.7678833390663964) +description = Gasman township, ND +station = ('kmot', 0.0048987174376653401) +zone = ('ndz011', 0.0050387021881067914) + +[fips3810132980] +centroid = (0.83580475572490864, -1.7632791954062204) +description = Greely township, ND +station = ('kn60', 0.0063106774514345917) +zone = ('ndz021', 0.0059932074573437414) + +[fips3810133100] +centroid = (0.84805546609075222, -1.7786285109661768) +description = Greenbush township, ND +station = ('k08d', 0.0076665672550364815) +zone = ('ndz003', 0.0036579110402712917) + +[fips3810135700] +centroid = (0.84199133705799045, -1.7690538790358312) +description = Harrison township, ND +station = ('kmot', 0.00097822392243253646) +zone = ('ndz011', 0.0021521677007480581) + +[fips3810137860] +centroid = (0.83598611288748348, -1.776691684188654) +description = Hiddenwood township, ND +station = ('kn60', 0.0060824535731935159) +zone = ('ndz011', 0.0063797676584627884) + +[fips3810138260] +centroid = (0.83751062308251545, -1.7703412164388099) +description = Hilton township, ND +station = ('kmot', 0.005202821356304857) +zone = ('ndz011', 0.0043090760326635578) + +[fips3810140140] +centroid = (0.8357385030265031, -1.765523182678802) +description = Iota Flat township, ND +station = ('kn60', 0.0052179872215801738) +zone = ('ndz021', 0.0052116445074351344) + +[fips3810142020] +centroid = (0.84950518892733629, -1.7814965581661015) +description = Kenmare city, ND +station = ('k08d', 0.0075595996058377439) +zone = ('ndz002', 0.0055315969408381736) + +[fips3810142060] +centroid = (0.84969460951105513, -1.7807219112308965) +description = Kenmare township, ND +station = ('k08d', 0.0079920767626455429) +zone = ('ndz002', 0.0059461662612165017) + +[fips3810143020] +centroid = (0.8434435208088199, -1.7710944307308005) +description = Kirkelie township, ND +station = ('kmib', 0.002158669943863223) +zone = ('ndz011', 0.0019677121265547519) + +[fips3810147020] +centroid = (0.8389979054046024, -1.7757864168122295) +description = Linton township, ND +station = ('kmot', 0.0063674902232364744) +zone = ('ndz011', 0.0035393258578228387) + +[fips3810148500] +centroid = (0.83879069991580568, -1.7775489375573559) +description = Lund township, ND +station = ('kn60', 0.0086232658276986975) +zone = ('ndz011', 0.0045402122153916508) + +[fips3810149420] +centroid = (0.84354070074157084, -1.7662704803046283) +description = McKinley township, ND +station = ('kmot', 0.0014876393791981378) +zone = ('ndz011', 0.0044081004232797245) + +[fips3810149820] +centroid = (0.83706929912785621, -1.7768244164782681) +description = Makoti city, ND +station = ('kn60', 0.0069505843202269353) +zone = ('ndz011', 0.0054931187598795238) + +[fips3810149940] +centroid = (0.84208326354969298, -1.7753056309631825) +description = Mandan township, ND +station = ('kmot', 0.005056035849436996) +zone = ('ndz011', 0.0020926529590192941) + +[fips3810150700] +centroid = (0.84487456862240751, -1.7647778747283227) +description = Margaret township, ND +station = ('kmot', 0.0031476826130730066) +zone = ('ndz004', 0.0074502400826451359) + +[fips3810151220] +centroid = (0.84359248466047743, -1.7639784790243245) +description = Maryland township, ND +station = ('kmot', 0.0027591940331726308) +zone = ('ndz011', 0.005837392018672026) + +[fips3810151460] +centroid = (0.84501196094112452, -1.7740764479308804) +description = Mayland township, ND +station = ('kmot', 0.0049565013475196843) +zone = ('ndz011', 0.0035967489035851983) + +[fips3810153380] +centroid = (0.84184102930280869, -1.7678570195012762) +description = Minot city, ND +station = ('kmot', 0.00057768263223641745) +zone = ('ndz011', 0.0029266449094653684) + +[fips3810155700] +centroid = (0.84207532230159643, -1.7662460631483932) +description = Nedrose township, ND +station = ('kmot', 0.0010423773371065832) +zone = ('ndz011', 0.0040164672544352699) + +[fips3810156500] +centroid = (0.8374567447685064, -1.7655490833649017) +description = Newman township, ND +station = ('kmot', 0.0051644722696063943) +zone = ('ndz011', 0.0061128113855847899) + +[fips3810156580] +centroid = (0.84042483424115544, -1.7641613546233483) +description = New Prairie township, ND +station = ('kmot', 0.003098068353770063) +zone = ('ndz011', 0.005518191680364045) + +[fips3810159740] +centroid = (0.83749892937652715, -1.7766917016419463) +description = Orlien township, ND +station = ('kn60', 0.0072371171914225839) +zone = ('ndz011', 0.0050893422207244788) + +[fips3810161060] +centroid = (0.8435751709942978, -1.7778446835991062) +description = Passport township, ND +station = ('kmot', 0.0068298792239208954) +zone = ('ndz011', 0.0042078897341146044) + +[fips3810165820] +centroid = (0.84504246929644933, -1.7786352304837971) +description = Ree township, ND +station = ('kmot', 0.0077124129919416045) +zone = ('ndz003', 0.0060084095573085953) + +[fips3810166420] +centroid = (0.83751729024025812, -1.7722226290125822) +description = Rice Lake township, ND +station = ('kmot', 0.005741313420888316) +zone = ('ndz011', 0.0041119050697890434) + +[fips3810167860] +centroid = (0.84026752771567315, -1.7729184219721823) +description = Rolling Green township, ND +station = ('kmot', 0.004070348080365202) +zone = ('ndz011', 0.0014350872068108441) + +[fips3810169060] +centroid = (0.83579187519502895, -1.7678976507662627) +description = Rushville township, ND +station = ('kn60', 0.004457282653352595) +zone = ('ndz021', 0.0049045777970261164) + +[fips3810169460] +centroid = (0.83632917480525548, -1.7745269697706978) +description = Ryder city, ND +station = ('kn60', 0.0054583775909261062) +zone = ('ndz011', 0.005516160758049349) + +[fips3810169500] +centroid = (0.83590884716149771, -1.7744483077813102) +description = Ryder township, ND +station = ('kn60', 0.0050740324151916909) +zone = ('ndz011', 0.0059078946640949547) + +[fips3810170100] +centroid = (0.84498998724584196, -1.7716989255172286) +description = St. Marys township, ND +station = ('kmib', 0.0018639905411423337) +zone = ('ndz011', 0.003379922757931138) + +[fips3810170860] +centroid = (0.84945150259954494, -1.7784579922982573) +description = Sauk Prairie township, ND +station = ('k08d', 0.0087223869504086896) +zone = ('ndz003', 0.0028956587888976058) + +[fips3810170980] +centroid = (0.83931909834684693, -1.7637137823899669) +description = Sawyer city, ND +station = ('kmot', 0.0040903913808047337) +zone = ('ndz011', 0.0061383379889822709) + +[fips3810171020] +centroid = (0.83895411509366991, -1.7643289760447101) +description = Sawyer township, ND +station = ('kmot', 0.0041348354556182678) +zone = ('ndz011', 0.0059169679930630862) + +[fips3810172075] +centroid = (0.84031267938342225, -1.7775614341148001) +description = Shealy township, ND +station = ('kmot', 0.0068817879690409433) +zone = ('ndz011', 0.0037851683389448728) + +[fips3810174580] +centroid = (0.8479264688057373, -1.7829942426505305) +description = Spencer township, ND +station = ('k08d', 0.005696786916121536) +zone = ('ndz002', 0.005517806835945667) + +[fips3810175060] +centroid = (0.83575611339865563, -1.7701553737800575) +description = Spring Lake township, ND +station = ('kn60', 0.004108715488358625) +zone = ('ndz021', 0.0049987310330673312) + +[fips3810176980] +centroid = (0.84035358990108899, -1.7663975053675884) +description = Sundre township, ND +station = ('kmot', 0.0022414010560398907) +zone = ('ndz011', 0.0040980685857546833) + +[fips3810177180] +centroid = (0.84187717507161752, -1.7651039720457655) +description = Surrey city, ND +station = ('kmot', 0.0018271146968380553) +zone = ('ndz011', 0.0047593294383009742) + +[fips3810177220] +centroid = (0.84197555928155243, -1.7639498556245918) +description = Surrey township, ND +station = ('kmot', 0.0025529805910390838) +zone = ('ndz011', 0.0055322326875028669) + +[fips3810178100] +centroid = (0.84505524510657393, -1.7671349418831412) +description = Tatman township, ND +station = ('kmib', 0.001165893198172026) +zone = ('ndz011', 0.0048224705308979763) + +[fips3810179100] +centroid = (0.84036694166986681, -1.7754359197918439) +description = Tolgen township, ND +station = ('kmot', 0.0055291964708975919) +zone = ('ndz011', 0.0024773086761041715) + +[fips3810179260] +centroid = (0.83900291449955566, -1.7712109489116636) +description = Torning township, ND +station = ('kmot', 0.0041255955328121071) +zone = ('ndz011', 0.002714324095236407) + +[fips3810181380] +centroid = (0.83878174637674285, -1.7734260858917099) +description = Vang township, ND +station = ('kmot', 0.0052562158250802071) +zone = ('ndz011', 0.0029556163322490563) + +[fips3810183780] +centroid = (0.84502370700699037, -1.7695179446306442) +description = Waterford township, ND +station = ('kmib', 0.00041603082145932413) +zone = ('ndz011', 0.0038465933405114295) + +[fips3810186180] +centroid = (0.838825589047553, -1.7662041403397601) +description = Willis township, ND +station = ('kmot', 0.0037278370672309906) +zone = ('ndz011', 0.004906684856137363) + +[fips38103] +centroid = (0.83044251085083653, -1.7395958803081133) +description = Wells County, ND +station = ('k5h4', 0.0047760688629784427) +zone = ('ndz023', 0.00017076351584257438) + +[fips3810300] +centroid = (0.80397850228186685, -1.7939944420606126) +description = Bucyrus city, ND +station = ('khei', 0.0018726879015413928) +zone = ('ndz044', 0.0031955522992519383) + +[fips3810306380] +centroid = (0.8267117299483584, -1.7379129640301703) +description = Berlin township, ND +station = ('k46d', 0.0052148843208885132) +zone = ('ndz023', 0.003979802429108989) + +[fips3810306980] +centroid = (0.82822959043894029, -1.7334601055095571) +description = Bilodeau township, ND +station = ('k46d', 0.0019899861238981279) +zone = ('ndz023', 0.0046466427771605706) + +[fips3810308580] +centroid = (0.82848269808706454, -1.74024718482508) +description = Bowdon city, ND +station = ('k5h4', 0.0062098405509289833) +zone = ('ndz023', 0.0021526786597453255) + +[fips3810309260] +centroid = (0.83268487496721366, -1.7340013146573079) +description = Bremen township, ND +station = ('k46d', 0.0050824426730388238) +zone = ('ndz023', 0.0042193699650190722) + +[fips3810310700] +centroid = (0.82838031707314264, -1.7446826947729281) +description = Bull Moose township, ND +station = ('k5h4', 0.0057437281875764882) +zone = ('ndz022', 0.0049205136402924793) + +[fips3810312820] +centroid = (0.82997252858985937, -1.7350544288746688) +description = Cathay city, ND +station = ('k46d', 0.0035511920220731284) +zone = ('ndz023', 0.0029985284769983699) + +[fips3810312860] +centroid = (0.82973390717452677, -1.7359041598742948) +description = Cathay township, ND +station = ('k46d', 0.0039576248023125253) +zone = ('ndz023', 0.0025074628538283008) + +[fips3810313740] +centroid = (0.8284185746903463, -1.7423727689612063) +description = Chaseley township, ND +station = ('k5h4', 0.0058164335735079479) +zone = ('ndz023', 0.0029295864541607347) + +[fips3810317140] +centroid = (0.82975301852983607, -1.7448883294653983) +description = Crystal Lake township, ND +station = ('k5h4', 0.0043885203696429542) +zone = ('ndz022', 0.0044083291688628784) + +[fips3810318860] +centroid = (0.82992997746269581, -1.7427278736508172) +description = Delger township, ND +station = ('k5h4', 0.0042884973646691417) +zone = ('ndz023', 0.0023239224172947313) + +[fips3810325500] +centroid = (0.83119190287176525, -1.7334513265034195) +description = Fairville township, ND +station = ('k46d', 0.0036061025730580085) +zone = ('ndz023', 0.0040685736542427856) + +[fips3810326180] +centroid = (0.83163539103469697, -1.7388195229502412) +description = Fessenden city, ND +station = ('k5h4', 0.0043508924738199194) +zone = ('ndz023', 0.0011470067349230826) + +[fips3810327900] +centroid = (0.83280282431806352, -1.743163315845897) +description = Forward township, ND +station = ('k5h4', 0.0014638199923746639) +zone = ('ndz023', 0.0033782670744026736) + +[fips3810328060] +centroid = (0.83436245053764568, -1.7404436739922695) +description = Fram township, ND +station = ('k5h4', 0.0024932890698579975) +zone = ('ndz023', 0.0038649621728792188) + +[fips3810329980] +centroid = (0.83119441614588818, -1.7356913518785992) +description = Germantown township, ND +station = ('k46d', 0.00461465933858465) +zone = ('ndz023', 0.0025878517334208865) + +[fips3810334100] +centroid = (0.82816457692430356, -1.7401522040071864) +description = Haaland township, ND +station = ('k46d', 0.006514749642177799) +zone = ('ndz023', 0.0024472437483793984) + +[fips3810334460] +centroid = (0.8336178930787449, -1.7368735681007299) +description = Hamberg city, ND +station = ('k46d', 0.0069246668967579261) +zone = ('ndz023', 0.0035030828510458178) + +[fips3810334540] +centroid = (0.83281279014809251, -1.7362492114674142) +description = Hamburg township, ND +station = ('k46d', 0.0060351541002517314) +zone = ('ndz023', 0.0031007437771747057) + +[fips3810335900] +centroid = (0.83387487535780846, -1.7440892653739577) +description = Harvey city, ND +station = ('k5h4', 0.00023948898499396321) +zone = ('ndz023', 0.0045715966241086179) + +[fips3810336380] +centroid = (0.82683727148145436, -1.7334687274360618) +description = Hawksnest township, ND +station = ('k46d', 0.002405107817974201) +zone = ('ndz023', 0.0054770159818672125) + +[fips3810337060] +centroid = (0.83418303069054067, -1.7383548813967751) +description = Heimdal township, ND +station = ('k5h4', 0.0038848612569462844) +zone = ('ndz023', 0.0036920249154501436) + +[fips3810338220] +centroid = (0.83446341783487343, -1.7452348820416741) +description = Hillsdale township, ND +station = ('k5h4', 0.00081703604320931161) +zone = ('ndz023', 0.0055307328689700461) + +[fips3810339580] +centroid = (0.82810958159957326, -1.7441142584888463) +description = Hurdsfield city, ND +station = ('k5h4', 0.0060026793834273779) +zone = ('ndz023', 0.0040110922166549864) + +[fips3810340820] +centroid = (0.82689764242028085, -1.7358813833275561) +description = Johnson township, ND +station = ('k46d', 0.0038484854046872199) +zone = ('ndz023', 0.0043715116282846194) + +[fips3810348660] +centroid = (0.82677971052272359, -1.7449735713460655) +description = Lynn township, ND +station = ('k5h4', 0.007354233527512557) +zone = ('ndz023', 0.0053309071293792367) + +[fips3810350060] +centroid = (0.83292510208545822, -1.7408583991291282) +description = Manfred township, ND +station = ('k5h4', 0.0025032565731772497) +zone = ('ndz023', 0.00255748337171417) + +[fips3810358580] +centroid = (0.8344475527919728, -1.7362369592560651) +description = Norway Lake township, ND +station = ('k46d', 0.0073592220863084321) +zone = ('ndz023', 0.0044360616322534491) + +[fips3810360020] +centroid = (0.8311786034628651, -1.7379454969674275) +description = Oshkosh township, ND +station = ('k46d', 0.0058434264343888787) +zone = ('ndz023', 0.0011665053236190966) + +[fips3810363620] +centroid = (0.83121192179828562, -1.7447332744146509) +description = Pony Gulch township, ND +station = ('k5h4', 0.0029279788092150833) +zone = ('ndz022', 0.0045520006113751021) + +[fips3810364700] +centroid = (0.82664813015041583, -1.7401610353732015) +description = Progress township, ND +station = ('k46d', 0.0067030377535516944) +zone = ('ndz023', 0.0039447447708108648) + +[fips3810369100] +centroid = (0.83122214942770234, -1.7425005096091597) +description = Rusland township, ND +station = ('k5h4', 0.0030926851921457433) +zone = ('ndz023', 0.0021846015753130693) + +[fips3810369660] +centroid = (0.83120029790546734, -1.740158295206276) +description = St. Anna township, ND +station = ('k5h4', 0.0039555082327116598) +zone = ('ndz023', 0.00081386581152602833) + +[fips3810373140] +centroid = (0.82730536878683925, -1.7424721305555222) +description = Silver Lake township, ND +station = ('k5h4', 0.0068987960435955495) +zone = ('ndz023', 0.0038559019921041784) + +[fips3810374080] +centroid = (0.82963417906106784, -1.7379784836902901) +description = South Cottonwood township, ND +station = ('k46d', 0.0052468613639862511) +zone = ('ndz023', 0.0013394857024452234) + +[fips3810374540] +centroid = (0.82826655651249759, -1.7380898706031522) +description = Speedwell township, ND +station = ('k46d', 0.0051206224033226036) +zone = ('ndz023', 0.002461534281100978) + +[fips3810377660] +centroid = (0.82844056583892134, -1.7348435407411504) +description = Sykeston city, ND +station = ('k46d', 0.0029362147463264663) +zone = ('ndz023', 0.0037432411162287458) + +[fips3810377700] +centroid = (0.82822847342821904, -1.7359628203904542) +description = Sykeston township, ND +station = ('k46d', 0.0036820009487222799) +zone = ('ndz023', 0.0032962005208092655) + +[fips3810381060] +centroid = (0.83413704126475063, -1.7336241490059521) +description = Valhalla township, ND +station = ('k46d', 0.0063159563649451316) +zone = ('ndz014', 0.0048511273409472203) + +[fips3810384380] +centroid = (0.83446130598647861, -1.7428014567320813) +description = Wells township, ND +station = ('k5h4', 0.00096236756517310352) +zone = ('ndz023', 0.0045188218389404242) + +[fips3810384740] +centroid = (0.83269073927350046, -1.745238529779811) +description = Western township, ND +station = ('k5h4', 0.0016029926930904265) +zone = ('ndz022', 0.004744244710873576) + +[fips3810385100] +centroid = (0.83268721370841137, -1.7387730448322605) +description = West Norway township, ND +station = ('k5h4', 0.0038776043083997721) +zone = ('ndz023', 0.0021701093814374991) + +[fips3810385120] +centroid = (0.82968456671657287, -1.7401542809489963) +description = West Ontario township, ND +station = ('k5h4', 0.0051766148256132301) +zone = ('ndz023', 0.0010086622079178592) + +[fips3810387540] +centroid = (0.82967049936280179, -1.7334475391389426) +description = Woodward township, ND +station = ('k46d', 0.0024788476800945147) +zone = ('ndz023', 0.0041223308837910096) + +[fips3810420] +centroid = (0.81891384319654303, -1.7025760506099119) +description = Buffalo city, ND +station = ('kbac', 0.0055853182197941791) +zone = ('ndz039', 0.0036103122104755954) + +[fips38105] +centroid = (0.84379455888127342, -1.8061958643283798) +description = Williams County, ND +station = ('kisn', 0.0034082379663030295) +zone = ('ndz009', 9.1686235780225289e-05) + +[fips3810500940] +centroid = (0.84793006418399641, -1.8058623493616162) +description = Alamo city, ND +station = ('kd50', 0.0063481760001876985) +zone = ('ndz001', 0.0040565791963685502) + +[fips3810503620] +centroid = (0.84480873480302232, -1.8083261608534866) +description = Athens township, ND +station = ('kisn', 0.0038795935348770101) +zone = ('ndz009', 0.0018309512722305783) + +[fips3810505020] +centroid = (0.84793521290528984, -1.8125704874350712) +description = Barr Butte township, ND +station = ('kisn', 0.0073621550006120586) +zone = ('ndz001', 0.0058375933482629231) + +[fips3810506860] +centroid = (0.84793357229579303, -1.799456589581069) +description = Big Meadow township, ND +station = ('kd60', 0.0042518057121923233) +zone = ('ndz001', 0.0060128180402109635) + +[fips3810506900] +centroid = (0.8479275509098736, -1.8034686477457984) +description = Big Stone township, ND +station = ('kd50', 0.0060504128633094506) +zone = ('ndz001', 0.0044344248538718996) + +[fips3810507460] +centroid = (0.84499058065778754, -1.810435303988059) +description = Blacktail township, ND +station = ('kisn', 0.0041391455431279561) +zone = ('ndz009', 0.0031509200287812979) + +[fips3810508100] +centroid = (0.84798329672618222, -1.8079894170276067) +description = Blue Ridge township, ND +station = ('kd50', 0.0068662878001352502) +zone = ('ndz001', 0.004169343073139934) + +[fips3810508260] +centroid = (0.84502546978953497, -1.8127572551183271) +description = Bonetraill township, ND +station = ('kisn', 0.0047624827834102804) +zone = ('ndz009', 0.0046191041502021777) + +[fips3810509820] +centroid = (0.84184066278366576, -1.802411920696886) +description = Brooklyn township, ND +station = ('kisn', 0.00450037437465716) +zone = ('ndz009', 0.0030977944637052171) + +[fips3810510540] +centroid = (0.83782403185629606, -1.8137557579833934) +description = Buford township, ND +station = ('kisn', 0.0044460728500098729) +zone = ('ndz009', 0.0078399775749858625) + +[fips3810510620] +centroid = (0.84361433618271242, -1.8144584973534161) +description = Bull Butte township, ND +station = ('kisn', 0.0044833510039559319) +zone = ('ndz009', 0.0055776263066268997) + +[fips3810513460] +centroid = (0.84491755608188412, -1.8015717366482686) +description = Champion township, ND +station = ('kd60', 0.0038019159742010518) +zone = ('ndz009', 0.0032055632647489153) + +[fips3810514860] +centroid = (0.84650735904423324, -1.8148903616235297) +description = Climax township, ND +station = ('kisn', 0.0067787011605632838) +zone = ('mtz019', 0.0071136340459738781) + +[fips3810516440] +centroid = (0.84357208176152176, -1.8115414587613878) +description = Cow Creek UT, ND +station = ('kisn', 0.0031019054768564244) +zone = ('ndz009', 0.0036415898073508647) + +[fips3810520580] +centroid = (0.84194592359085352, -1.7957874188011864) +description = Dry Fork township, ND +station = ('kd60', 0.0024503643698898059) +zone = ('ndz009', 0.0070770807205527185) + +[fips3810520660] +centroid = (0.84497518685378492, -1.8058640597842832) +description = Dublin township, ND +station = ('kisn', 0.0045371456889213369) +zone = ('ndz009', 0.0012261181135921361) + +[fips3810521660] +centroid = (0.84359262428681769, -1.8069390778837566) +description = East Fork township, ND +station = ('kisn', 0.0029811201503000318) +zone = ('ndz009', 0.00060042554189527325) + +[fips3810523420] +centroid = (0.84641354759693854, -1.8057410140720174) +description = Ellisville township, ND +station = ('kisn', 0.0058783996723874889) +zone = ('ndz009', 0.0026657772937311824) + +[fips3810524540] +centroid = (0.84267325465003717, -1.8039312298107471) +description = Epping city, ND +station = ('kisn', 0.0038072184591911029) +zone = ('ndz009', 0.0017881828030445438) + +[fips3810524580] +centroid = (0.84356888780899053, -1.8001942180828394) +description = Equality township, ND +station = ('kd60', 0.0029705842168584124) +zone = ('ndz009', 0.0039104583502975482) + +[fips3810525900] +centroid = (0.84205118439804127, -1.797993131003272) +description = Farmvale township, ND +station = ('kd60', 0.0027261026020607634) +zone = ('ndz009', 0.0056378151061482577) + +[fips3810531260] +centroid = (0.84514523428280675, -1.7989176144547607) +description = Golden Valley township, ND +station = ('kd60', 0.0021391167998190451) +zone = ('ndz009', 0.0049490911035653274) + +[fips3810531460] +centroid = (0.84641654956325196, -1.8125682708669215) +description = Good Luck township, ND +station = ('kisn', 0.0059428583628683279) +zone = ('ndz009', 0.0050668145389931168) + +[fips3810533500] +centroid = (0.84857737189697613, -1.8140368607127195) +description = Grenora city, ND +station = ('kisn', 0.008312058289975225) +zone = ('mtz019', 0.0067806185576192645) + +[fips3810533540] +centroid = (0.84788194545651885, -1.8149203289267863) +description = Grenora township, ND +station = ('kisn', 0.0079516449350610589) +zone = ('mtz019', 0.0064536468996399168) + +[fips3810535340] +centroid = (0.83899891769556867, -1.8141524538690792) +description = Hardscrabble township, ND +station = ('kisn', 0.0039383349915192633) +zone = ('ndz009', 0.0071867096983098148) + +[fips3810536620] +centroid = (0.84807044101573437, -1.8015653487432062) +description = Hazel township, ND +station = ('kd60', 0.0052542601212054131) +zone = ('ndz001', 0.0049620780445758777) + +[fips3810536900] +centroid = (0.8420910477181569, -1.8144459309828018) +description = Hebron township, ND +station = ('kisn', 0.00378012883716921) +zone = ('ndz009', 0.0058158507239077749) + +[fips3810541260] +centroid = (0.84053964199935161, -1.8116631082102521) +description = Judson township, ND +station = ('kisn', 0.001802690819931831) +zone = ('ndz009', 0.0049212364066468896) + +[fips3810546900] +centroid = (0.84615584973288149, -1.7970332522745527) +description = Lindahl township, ND +station = ('kd60', 0.0019145094312746052) +zone = ('ndz002', 0.0074473902301340506) + +[fips3810550980] +centroid = (0.84349457168944064, -1.8048433388778393) +description = Marshall township, ND +station = ('kisn', 0.0037708415196808726) +zone = ('ndz009', 0.00085666814532612244) + +[fips3810553660] +centroid = (0.84197342997986491, -1.809348382743087) +description = Missouri Ridge township, ND +station = ('kisn', 0.0010370313671663935) +zone = ('ndz009', 0.002817305171137068) + +[fips3810553940] +centroid = (0.84219950247787578, -1.8117392918321016) +description = Mont township, ND +station = ('kisn', 0.0021889154855805576) +zone = ('ndz009', 0.0040801706384422957) + +[fips3810556300] +centroid = (0.84665079020216216, -1.8011875547733196) +description = New Home township, ND +station = ('kd60', 0.0041700504452189154) +zone = ('ndz009', 0.0043443327211831534) + +[fips3810559260] +centroid = (0.84514589750792257, -1.8032773771130723) +description = Oliver township, ND +station = ('kisn', 0.0056746615694470062) +zone = ('ndz009', 0.0023173598131294316) + +[fips3810559860] +centroid = (0.84640358176690966, -1.8104122830952252) +description = Orthell township, ND +station = ('kisn', 0.0055223231046343975) +zone = ('ndz009', 0.0039128044105400757) + +[fips3810562140] +centroid = (0.84195527855564423, -1.8072596599607629) +description = Pherrin township, ND +station = ('kisn', 0.001546803329596345) +zone = ('ndz009', 0.001967624773503999) + +[fips3810563260] +centroid = (0.84348910880888195, -1.7958168101457901) +description = Pleasant Valley township, ND +station = ('kd60', 0.00090772314393104019) +zone = ('ndz002', 0.0091583262822809205) + +[fips3810565020] +centroid = (0.84664092909188837, -1.8035389496080689) +description = Rainbow township, ND +station = ('kisn', 0.0067553577090417949) +zone = ('ndz009', 0.0033376522062961702) + +[fips3810565580] +centroid = (0.84373869089191711, -1.8005103670235456) +description = Ray city, ND +station = ('kd60', 0.0031326991049985035) +zone = ('ndz009', 0.0036954817473320457) + +[fips3810567460] +centroid = (0.84818359071114113, -1.805738448438017) +description = Rock Island township, ND +station = ('kd50', 0.0060817330269350598) +zone = ('ndz001', 0.0038090265753063508) + +[fips3810568700] +centroid = (0.84047893944796725, -1.8143484368907856) +description = Round Prairie township, ND +station = ('kisn', 0.0035766986110109785) +zone = ('ndz009', 0.006413244870793553) + +[fips3810570900] +centroid = (0.84794577214726441, -1.7967163702955604) +description = Sauk Valley township, ND +station = ('kd60', 0.0035916142710305577) +zone = ('ndz002', 0.0060962637221937963) + +[fips3810571300] +centroid = (0.84814323869883501, -1.8104800193234953) +description = Scorio township, ND +station = ('kisn', 0.007249326211012699) +zone = ('ndz001', 0.0047672057195858016) + +[fips3810574115] +centroid = (0.84067232192908825, -1.7978452143491652) +description = Southeast Williams UT, ND +station = ('kd60', 0.0039414826545859033) +zone = ('ndz009', 0.0062851594031125601) + +[fips3810574260] +centroid = (0.84640377375312736, -1.7989230424287344) +description = South Meadow township, ND +station = ('kd60', 0.0028384017795280198) +zone = ('ndz009', 0.0054319591471131247) + +[fips3810574780] +centroid = (0.84215534564780037, -1.8057405253798269) +description = Springbrook city, ND +station = ('kisn', 0.0024998057003351032) +zone = ('ndz009', 0.0016163406483356273) + +[fips3810574820] +centroid = (0.84200838892478247, -1.8051526984877555) +description = Springbrook township, ND +station = ('kisn', 0.0027914228951404206) +zone = ('ndz009', 0.0018518486099488589) + +[fips3810576340] +centroid = (0.8391880590266072, -1.8068698930322076) +description = Stony Creek township, ND +station = ('kisn', 0.0022842293703109061) +zone = ('ndz009', 0.0045996511493074498) + +[fips3810576460] +centroid = (0.845137485020928, -1.8147624115360661) +description = Strandahl township, ND +station = ('kisn', 0.0056560149145128231) +zone = ('mtz019', 0.0080045720336663351) + +[fips3810578940] +centroid = (0.84471232281514208, -1.7966156124378427) +description = Tioga city, ND +station = ('kd60', 0.00057125029476813084) +zone = ('ndz002', 0.0083929650432014811) + +[fips3810578980] +centroid = (0.8451446932307386, -1.797023426070864) +description = Tioga township, ND +station = ('kd60', 0.0010573319414275116) +zone = ('ndz002', 0.0082086620637293085) + +[fips3810579500] +centroid = (0.83899888278898349, -1.8117427999438982) +description = Trenton township, ND +station = ('kisn', 0.0026659063460613515) +zone = ('ndz009', 0.0060768948310663149) + +[fips3810579740] +centroid = (0.83989118236906568, -1.8026418154659587) +description = Truax township, ND +station = ('kisn', 0.0043957381989667586) +zone = ('ndz009', 0.0044897197859762195) + +[fips3810580220] +centroid = (0.83986994171206886, -1.8050546633436708) +description = Twelve Mile township, ND +station = ('kisn', 0.0028689322706231873) +zone = ('ndz009', 0.003945222295684136) + +[fips3810580620] +centroid = (0.84345926367867274, -1.8095215892180549) +description = Tyrone township, ND +station = ('kisn', 0.0025224507816471514) +zone = ('ndz009', 0.002313589008428965) + +[fips3810582100] +centroid = (0.84188188746059789, -1.8004723537524374) +description = View township, ND +station = ('kd60', 0.003945184175079555) +zone = ('ndz009', 0.0041698414847534792) + +[fips3810584580] +centroid = (0.84348841067718106, -1.7980775874857757) +description = West Bank township, ND +station = ('kd60', 0.001707573238538251) +zone = ('ndz009', 0.0053199401909786942) + +[fips3810585340] +centroid = (0.84353452227601877, -1.8023845015743372) +description = Wheelock township, ND +station = ('kisn', 0.0051222783111275171) +zone = ('ndz009', 0.0024601010923693445) + +[fips3810586020] +centroid = (0.84875143358327743, -1.8008968527331073) +description = Wildrose city, ND +station = ('kd50', 0.0053746646145833082) +zone = ('ndz001', 0.0047582407324291117) + +[fips3810586220] +centroid = (0.84060390502241, -1.8087256667192679) +description = Williston city, ND +station = ('kisn', 0.00040922700889661615) +zone = ('ndz009', 0.0036147684110021216) + +[fips3810586260] +centroid = (0.8405697838355336, -1.8097365439687305) +description = Williston township, ND +station = ('kisn', 0.00060845897187391564) +zone = ('ndz009', 0.0040145087825410614) + +[fips3810586860] +centroid = (0.84641647975008183, -1.808012786986291) +description = Winner township, ND +station = ('kisn', 0.0055006941266982495) +zone = ('ndz009', 0.0029557293515416598) + +[fips3810940] +centroid = (0.84257822147226602, -1.7701978550940509) +description = Burlington city, ND +station = ('kmot', 0.0016525343877953752) +zone = ('ndz011', 0.0016575869523604767) + +[fips3811180] +centroid = (0.83491378259505811, -1.7569509107911692) +description = Butte city, ND +station = ('kn60', 0.0095805308576873034) +zone = ('ndz022', 0.0059161876314252999) + +[fips3811340] +centroid = (0.83081833259866844, -1.6947163617492833) +description = Buxton city, ND +station = ('kgfk', 0.006145094780039718) +zone = ('ndz030', 0.0026856308578237014) + +[fips3811500] +centroid = (0.82829271899798496, -1.6910345198790311) +description = Caledonia CDP, ND +station = ('kckn', 0.0075595924544351245) +zone = ('ndz030', 0.0032147248762739605) + +[fips3811580] +centroid = (0.84864479396598058, -1.7268006097623552) +description = Calio city, ND +station = ('k9d7', 0.0042601650209006404) +zone = ('ndz006', 0.0037061056526286615) + +[fips3811700] +centroid = (0.85262515695149388, -1.726795042162041) +description = Calvin city, ND +station = ('cwpo', 0.0060924319023879609) +zone = ('ndz006', 0.0045777930624472211) + +[fips3811860] +centroid = (0.84626149451250476, -1.7314189429493496) +description = Cando city, ND +station = ('k9d7', 0.0004062780550431392) +zone = ('ndz006', 0.0034977711389277541) + +[fips3812020] +centroid = (0.80848459334466594, -1.7563167105008721) +description = Cannon Ball CDP, ND +station = ('k7l2', 0.0049640219350421408) +zone = ('ndz046', 0.0047568254701311251) + +[fips3812060] +centroid = (0.84976370709614168, -1.7046224142512902) +description = Canton City city, ND +station = ('k2c8', 0.0017207893231425395) +zone = ('ndz008', 0.001923399625944043) + +[fips3812260] +centroid = (0.84549155996628, -1.7752671813597611) +description = Carpio city, ND +station = ('kmot', 0.0058807671954501624) +zone = ('ndz011', 0.0043556223904931838) + +[fips3812340] +centroid = (0.82817243090593762, -1.7301455158205097) +description = Carrington city, ND +station = ('k46d', 0.00025207715872327147) +zone = ('ndz025', 0.002916325522481277) + +[fips3812460] +centroid = (0.81022212097490387, -1.7727418295584656) +description = Carson city, ND +station = ('kbis', 0.011684788728957268) +zone = ('ndz042', 0.0013926554411870585) + +[fips3812700] +centroid = (0.818509956554339, -1.6966730503736942) +description = Casselton city, ND +station = ('kfar', 0.0047576585118201562) +zone = ('ndz039', 0.00075781609318986286) + +[fips3812820] +centroid = (0.82997252858985937, -1.7350544288746688) +description = Cathay city, ND +station = ('k46d', 0.0035511920220731284) +zone = ('ndz023', 0.0029985284769983699) + +[fips3812940] +centroid = (0.8516288008414078, -1.7038468771981665) +description = Cavalier city, ND +station = ('k2c8', 0.00021847204170064987) +zone = ('ndz008', 0.00095278818147537866) + +[fips3813020] +centroid = (0.80417937222547897, -1.6996791007575742) +description = Cayuga city, ND +station = ('kgwr', 0.0039984870164353498) +zone = ('ndz052', 0.0030304944331478773) + +[fips3813180] +centroid = (0.8223093288964205, -1.7679802746530522) +description = Center city, ND +station = ('khze', 0.0045395846986530366) +zone = ('ndz020', 0.00050475686603055996) + +[fips3814100] +centroid = (0.81288912369829136, -1.6895879909949785) +description = Christine city, ND +station = ('kjkj', 0.0049169336771206426) +zone = ('mnz029', 0.0055667442047329183) + +[fips3814140] +centroid = (0.84244648402032551, -1.7312680068756372) +description = Churchs Ferry city, ND +station = ('k9d7', 0.0037211923115075584) +zone = ('ndz014', 0.0040097781860219932) + +[fips3814660] +centroid = (0.81839218173641437, -1.7299697262582487) +description = Cleveland city, ND +station = ('kjms', 0.0054561920853447663) +zone = ('ndz037', 0.0024678182739587742) + +[fips3814740] +centroid = (0.82638160092034363, -1.7001274409358265) +description = Clifford city, ND +station = ('kbac', 0.010126928614700263) +zone = ('ndz029', 0.0041670162240988627) + +[fips3815100] +centroid = (0.80471660202253537, -1.7066604526721365) +description = Cogswell city, ND +station = ('kgwr', 0.0025910294263907221) +zone = ('ndz052', 0.0018616297042295482) + +[fips3815140] +centroid = (0.82977240913782579, -1.7666429510202966) +description = Coleharbor city, ND +station = ('kn60', 0.0031237160715697344) +zone = ('ndz021', 0.0016347669145402039) + +[fips3815180] +centroid = (0.81106987975247502, -1.6907435909460165) +description = Colfax city, ND +station = ('kbwp', 0.0050895943086460829) +zone = ('ndz053', 0.0037142957902558922) + +[fips3815460] +centroid = (0.85355203150405801, -1.7938720421201702) +description = Columbus city, ND +station = ('cyen', 0.0058392653099822922) +zone = ('ndz002', 0.0036172975391913498) + +[fips3815820] +centroid = (0.84184989557540879, -1.7047535408379926) +description = Conway city, ND +station = ('kgaf', 0.0046161719447416795) +zone = ('ndz016', 0.0030990303644489914) + +[fips3815900] +centroid = (0.82807001498543042, -1.7126167901702951) +description = Cooperstown city, ND +station = ('ks32', 0.00045210310791802801) +zone = ('ndz028', 0.0013319716696763391) + +[fips3816380] +centroid = (0.82421981865553096, -1.7203450382849559) +description = Courtenay city, ND +station = ('kjms', 0.00521089823986076) +zone = ('ndz025', 0.005509062339707398) + +[fips3816580] +centroid = (0.83908023258541897, -1.7216540875838291) +description = Crary city, ND +station = ('kdvl', 0.003263155938308805) +zone = ('ndz015', 0.0034885596305873571) + +[fips3816940] +centroid = (0.85375230803572433, -1.8028719022212492) +description = Crosby city, ND +station = ('kd50', 0.00021307698515166034) +zone = ('ndz001', 0.0028132982009759135) + +[fips3817060] +centroid = (0.84819893215526609, -1.7046444228531579) +description = Crystal city, ND +station = ('k2c8', 0.0032636421976379297) +zone = ('ndz008', 0.0032439279747000088) + +[fips3817620] +centroid = (0.84052944927652007, -1.7092425102208295) +description = Dahlen CDP, ND +station = ('krdr', 0.0070573431842178951) +zone = ('ndz054', 0.0041076384566976244) + +[fips3818180] +centroid = (0.81532916380574949, -1.6941031403165951) +description = Davenport city, ND +station = ('kfar', 0.0048294740513911373) +zone = ('ndz039', 0.004389838676784278) + +[fips3818260] +centroid = (0.81799941284154565, -1.7410292145030211) +description = Dawson city, ND +station = ('k46d', 0.012437222438191271) +zone = ('ndz036', 0.0019850051877816416) + +[fips3818340] +centroid = (0.82359162229786076, -1.7139254554967329) +description = Dazey city, ND +station = ('ks32', 0.0042432038204801249) +zone = ('ndz038', 0.0046620333238744129) + +[fips3818620] +centroid = (0.84466533855167836, -1.7636472678921733) +description = Deering city, ND +station = ('kmot', 0.0035263694102925787) +zone = ('ndz012', 0.005560416989866545) + +[fips3818820] +centroid = (0.80750841324073297, -1.6987868709906622) +description = De Lamere CDP, ND +station = ('kgwr', 0.0038355670824193454) +zone = ('ndz049', 0.0051146134677831512) + +[fips3819060] +centroid = (0.82874055303075422, -1.7499071109959705) +description = Denhoff CDP, ND +station = ('k5h4', 0.0066312650528491173) +zone = ('ndz022', 0.0018830076001564943) + +[fips3819300] +centroid = (0.84224118094041334, -1.7726210527742274) +description = Des Lacs city, ND +station = ('kmot', 0.0032621682194348997) +zone = ('ndz011', 0.00066285720271543633) + +[fips3819420] +centroid = (0.83972291517588082, -1.7256901440257737) +description = Devils Lake city, ND +station = ('kdvl', 0.00049348101176313055) +zone = ('ndz015', 0.0032697939210637769) + +[fips3819580] +centroid = (0.81221889981223294, -1.7185940541661853) +description = Dickey city, ND +station = ('kjms', 0.0073181312772045756) +zone = ('ndz048', 0.0016107885958798788) + +[fips3819620] +centroid = (0.81830557849893049, -1.7939678956026899) +description = Dickinson city, ND +station = ('kdik', 0.0014998039677956107) +zone = ('ndz033', 0.0020438092201105905) + +[fips3819820] +centroid = (0.82563362261610895, -1.7837680343744025) +description = Dodge city, ND +station = ('khze', 0.0073618648398903952) +zone = ('ndz019', 0.0043896946370805649) + +[fips3819900] +centroid = (0.84662021203366722, -1.7782711548018313) +description = Donnybrook city, ND +station = ('kmot', 0.0081689985996687593) +zone = ('ndz003', 0.004540979268645981) + +[fips3820020] +centroid = (0.83527405345925476, -1.7715428756288081) +description = Douglas city, ND +station = ('kn60', 0.0037129629721561583) +zone = ('ndz021', 0.0048593478227784174) + +[fips3820300] +centroid = (0.83640874436585388, -1.7518641137796467) +description = Drake city, ND +station = ('k5h4', 0.0056708365333618602) +zone = ('ndz022', 0.006070799561998871) + +[fips3820340] +centroid = (0.8475681876168879, -1.6960974058798013) +description = Drayton city, ND +station = ('kgaf', 0.0035293666059076695) +zone = ('ndz016', 0.005020210318062302) + +[fips3820500] +centroid = (0.81755903136468255, -1.747840868054412) +description = Driscoll CDP, ND +station = ('kbis', 0.00731333778086135) +zone = ('ndz036', 0.0049573439503349916) + +[fips3820940] +centroid = (0.82646809943807253, -1.791105485816249) +description = Dunn Center city, ND +station = ('kdik', 0.0098811237173822425) +zone = ('ndz018', 8.3862276337435184e-05) + +[fips3821020] +centroid = (0.85194803901489013, -1.7464187737798871) +description = Dunseith city, ND +station = ('krug', 0.0073865362229238764) +zone = ('ndz005', 0.0026417282494298057) + +[fips3821220] +centroid = (0.808153452025685, -1.6884315881924845) +description = Dwight city, ND +station = ('kbwp', 0.0019127746037333369) +zone = ('mnz029', 0.0034024612570086668) + +[fips3821520] +centroid = (0.85282452591194913, -1.7457107111556454) +description = East Dunseith CDP, ND +station = ('k06d', 0.0046183239842802664) +zone = ('ndz005', 0.0026132584531139537) + +[fips3821580] +centroid = (0.8351997198864124, -1.815768873102521) +description = East Fairview CDP, ND +station = ('ksdy', 0.0032976929455464147) +zone = ('mtz024', 0.0062637085949994332) + +[fips3822140] +centroid = (0.80917544702248279, -1.7228562703726029) +description = Edgeley city, ND +station = ('k2d5', 0.0083144559201334765) +zone = ('ndz048', 0.0026935801851543598) + +[fips3822260] +centroid = (0.84640551908237938, -1.7080273072758358) +description = Edinburg city, ND +station = ('k2c8', 0.0056901620131159835) +zone = ('ndz054', 0.0033544866430374222) + +[fips3822340] +centroid = (0.8449523928537539, -1.7183321151520456) +description = Edmore city, ND +station = ('kd55', 0.0059885707424131096) +zone = ('ndz015', 0.0039794613126005922) + +[fips3822540] +centroid = (0.84871123865060405, -1.7295851778641569) +description = Egeland city, ND +station = ('k9d7', 0.0030318911340086558) +zone = ('ndz006', 0.0019839357513689649) + +[fips3823020] +centroid = (0.80987577783813813, -1.7774933662739723) +description = Elgin city, ND +station = ('kdik', 0.013411626980074549) +zone = ('ndz042', 0.0025648019801586008) + +[fips3823220] +centroid = (0.8029361916525759, -1.7195864658321616) +description = Ellendale city, ND +station = ('k2d5', 0.0061350441266404552) +zone = ('ndz051', 0.0018552196301174332) + +[fips3823340] +centroid = (0.80987235699280413, -1.7071917134431511) +description = Elliott city, ND +station = ('kgwr', 0.0038146961569647331) +zone = ('ndz049', 0.0021135455363251281) + +[fips3824020] +centroid = (0.816901897448014, -1.7006402012167698) +description = Embden CDP, ND +station = ('kbac', 0.0073000249930549946) +zone = ('ndz039', 0.0031944727011715612) + +[fips3824060] +centroid = (0.83650815832004755, -1.6992740621980638) +description = Emerado city, ND +station = ('krdr', 0.00080732180637241194) +zone = ('ndz027', 0.0011257592999712872) + +[fips3824260] +centroid = (0.81368408626598965, -1.7033290031025148) +description = Enderlin city, ND +station = ('kgwr', 0.007042651098645129) +zone = ('ndz049', 0.0029729862067717542) + +[fips3824380] +centroid = (0.80967878252546543, -1.7087442012660925) +description = Englevale CDP, ND +station = ('k2d5', 0.0043598445397859988) +zone = ('ndz049', 0.003172822307215592) + +[fips3824540] +centroid = (0.84267325465003717, -1.8039312298107471) +description = Epping city, ND +station = ('kisn', 0.0038072184591911029) +zone = ('ndz009', 0.0017881828030445438) + +[fips3824620] +centroid = (0.82231791591634029, -1.6997398207622509) +description = Erie CDP, ND +station = ('kbac', 0.0080899064909203625) +zone = ('ndz039', 0.0035910758675238622) + +[fips3824780] +centroid = (0.83833848510661391, -1.7412293339550546) +description = Esmond city, ND +station = ('k5h4', 0.0046538548796086687) +zone = ('ndz013', 0.0044780622757387865) + +[fips3825180] +centroid = (0.84630919436096175, -1.7144563322953119) +description = Fairdale city, ND +station = ('kd55', 0.0049600967516330377) +zone = ('ndz054', 0.0026801528941177532) + +[fips3825300] +centroid = (0.8038051736338514, -1.6860372408048436) +description = Fairmount city, ND +station = ('kbwp', 0.0033033756681556002) +zone = ('mnz039', 0.0051823550619036728) + +[fips3825700] +centroid = (0.81795214932540161, -1.6899849486800518) +description = Fargo city, ND +station = ('kfar', 0.0011981158518930438) +zone = ('mnz003', 0.0040650025038941112) + +[fips3826180] +centroid = (0.83163539103469697, -1.7388195229502412) +description = Fessenden city, ND +station = ('k5h4', 0.0043508924738199194) +zone = ('ndz023', 0.0011470067349230826) + +[fips3826380] +centroid = (0.81616014996920905, -1.7068124184901077) +description = Fingal city, ND +station = ('kbac', 0.0041135142896408716) +zone = ('ndz038', 0.0044971482346212342) + +[fips3826420] +centroid = (0.8292497004801459, -1.7075835398602237) +description = Finley city, ND +station = ('ks32', 0.0035339071310104145) +zone = ('ndz029', 0.0016524488803312653) + +[fips3826660] +centroid = (0.81074208946565796, -1.7668467356637594) +description = Flasher city, ND +station = ('ky19', 0.0068503026904870434) +zone = ('ndz034', 0.0046438612863165842) + +[fips3826700] +centroid = (0.85341758879177687, -1.7870956267663771) +description = Flaxton city, ND +station = ('cyen', 0.0086096934341589656) +zone = ('ndz002', 0.0023481685612299226) + +[fips3826980] +centroid = (0.80184759489152202, -1.7240739516851344) +description = Forbes city, ND +station = ('kabr', 0.009681586019202524) +zone = ('ndz051', 0.0044589377700303273) + +[fips3827060] +centroid = (0.84153840666380542, -1.7068547078178833) +description = Fordville city, ND +station = ('kgaf', 0.0059235880631490542) +zone = ('ndz016', 0.0043366200127636654) + +[fips3827100] +centroid = (0.84153713257345142, -1.7011819339632963) +description = Forest River city, ND +station = ('kgaf', 0.0034826119419408097) +zone = ('ndz016', 0.0026706504072798423) + +[fips3827260] +centroid = (0.80466242700255342, -1.7040888496456632) +description = Forman city, ND +station = ('kgwr', 0.0020059288583586382) +zone = ('ndz052', 0.0001056134346375671) + +[fips3827580] +centroid = (0.8120065456021428, -1.7092209030446899) +description = Fort Ransom city, ND +station = ('kgwr', 0.0063658412167744366) +zone = ('ndz049', 0.003498448704602088) + +[fips3827700] +centroid = (0.83724597880803553, -1.7280001745572506) +description = Fort Totten CDP, ND +station = ('kdvl', 0.0027581994761174018) +zone = ('ndz024', 0.0045864310417750628) + +[fips3827820] +centroid = (0.85363551060218079, -1.8112830453123379) +description = Fortuna city, ND +station = ('kd50', 0.0055338765046343994) +zone = ('ndz001', 0.0037344902942315315) + +[fips3827860] +centroid = (0.80436289359632618, -1.7563280027811325) +description = Fort Yates city, ND +station = ('k7l2', 0.0052049190660481588) +zone = ('ndz046', 0.0058624013195830551) + +[fips3827950] +centroid = (0.83753167175329446, -1.7906001780912117) +description = Four Bears Village CDP, ND +station = ('k08d', 0.0058959048949183994) +zone = ('ndz010', 0.004658098738774665) + +[fips3827980] +centroid = (0.84413573584345325, -1.7727679222307828) +description = Foxholm CDP, ND +station = ('kmot', 0.0037690252172181476) +zone = ('ndz011', 0.0025311600570461631) + +[fips3828380] +centroid = (0.80859564864497036, -1.7295457159697691) +description = Fredonia city, ND +station = ('kjms', 0.011732162834781667) +zone = ('ndz050', 0.0056376102239733229) + +[fips3828720] +centroid = (0.81682180428864004, -1.6900577987230303) +description = Frontier city, ND +station = ('kfar', 0.0023277456302667567) +zone = ('mnz003', 0.0043931316527987064) + +[fips3828780] +centroid = (0.80570103753383016, -1.7178805461146773) +description = Fullerton city, ND +station = ('k2d5', 0.0042014065602545125) +zone = ('ndz051', 0.0013159683366893694) + +[fips3828860] +centroid = (0.81378426816505411, -1.7303439946630463) +description = Gackle city, ND +station = ('kjms', 0.0078033403752619948) +zone = ('ndz047', 0.0049979430942471139) + +[fips3828980] +centroid = (0.82502034882354325, -1.7001033030322714) +description = Galesburg city, ND +station = ('kbac', 0.0092401057430038548) +zone = ('ndz030', 0.0043426497833264866) + +[fips3829180] +centroid = (0.84999862841346019, -1.7540303815406371) +description = Gardena city, ND +station = ('krug', 0.007708929188334269) +zone = ('ndz004', 0.0041677203033769752) + +[fips3829220] +centroid = (0.8228269411926844, -1.6924215330355912) +description = Gardner city, ND +station = ('kfar', 0.0041049983868370124) +zone = ('ndz039', 0.0049678013622197698) + +[fips3829460] +centroid = (0.83170270838394644, -1.7701442385794299) +description = Garrison city, ND +station = ('kn60', 0.00014577181496234663) +zone = ('ndz021', 0.001424570881974717) + +[fips3829540] +centroid = (0.80492796139495182, -1.7990637334197377) +description = Gascoyne city, ND +station = ('khei', 0.0054903990821583062) +zone = ('ndz044', 0.0066694797113894802) + +[fips3830180] +centroid = (0.83921889899448987, -1.7011323317059548) +description = Gilby city, ND +station = ('krdr', 0.0021901839664146923) +zone = ('ndz027', 0.0028267248191084877) + +[fips3830460] +centroid = (0.81784517809554691, -1.7901264433723427) +description = Gladstone city, ND +station = ('kdik', 0.0029706446791465412) +zone = ('ndz033', 0.0013508082614844875) + +[fips3830580] +centroid = (0.84671222579183225, -1.7666395301749627) +description = Glenburn city, ND +station = ('kmib', 0.0022490447224074103) +zone = ('ndz011', 0.0062987617578224731) + +[fips3830660] +centroid = (0.82824681683865753, -1.7203050004319151) +description = Glenfield city, ND +station = ('k46d', 0.006906423084350544) +zone = ('ndz028', 0.003884117657372304) + +[fips3830860] +centroid = (0.81701822364265941, -1.7773280137806384) +description = Glen Ullin city, ND +station = ('khze', 0.0088718045138556356) +zone = ('ndz034', 0.0068105324813694124) + +[fips3831180] +centroid = (0.82537081093734377, -1.7813755370357682) +description = Golden Valley city, ND +station = ('khze', 0.0057352679529181008) +zone = ('ndz019', 0.0027869630761895286) + +[fips3831420] +centroid = (0.81567210355047381, -1.8148337256893026) +description = Golva city, ND +station = ('k20u', 0.0033284989940893213) +zone = ('ndz031', 0.0039372610983891519) + +[fips3831500] +centroid = (0.82861659974727753, -1.7475073530876484) +description = Goodrich city, ND +station = ('k5h4', 0.0059465491231826418) +zone = ('ndz022', 0.0031252878138071406) + +[fips3831740] +centroid = (0.82995357431418271, -1.7244580986534983) +description = Grace City city, ND +station = ('k46d', 0.0044623885471531712) +zone = ('ndz025', 0.0019125849908229553) + +[fips3831820] +centroid = (0.84499522323359788, -1.7000608740781553) +description = Grafton city, ND +station = ('kgaf', 0.00044614504681501801) +zone = ('ndz016', 0.0013522679457867071) + +[fips3832060] +centroid = (0.8362359218633213, -1.6942785459064207) +description = Grand Forks city, ND +station = ('kgfk', 0.0014235231472091848) +zone = ('ndz027', 0.0044710494425010527) + +[fips3832140] +centroid = (0.83697145596998934, -1.6997175678142882) +description = Grand Forks AFB CDP, ND +station = ('krdr', 0.00025751982452524609) +zone = ('ndz027', 0.0010045495349811262) + +[fips3832300] +centroid = (0.82443575079058773, -1.693021385246209) +description = Grandin city, ND +station = ('kfar', 0.00573888899226172) +zone = ('ndz030', 0.0042339167834958098) + +[fips3832580] +centroid = (0.8484961617268808, -1.7730582577518521) +description = Grano city, ND +station = ('kmib', 0.0044307822994189101) +zone = ('ndz003', 0.0019825610120540551) + +[fips3832660] +centroid = (0.84241087930358483, -1.7600714024141024) +description = Granville city, ND +station = ('kmot', 0.0050964863508821748) +zone = ('ndz012', 0.0024850555364349281) + +[fips3832900] +centroid = (0.80554997928707017, -1.6894969546211944) +description = Great Bend city, ND +station = ('kbwp', 0.0028125009829890373) +zone = ('ndz053', 0.0026169040962832472) + +[fips3833050] +centroid = (0.85238620392360331, -1.7399203370160592) +description = Green Acres CDP, ND +station = ('k06d', 0.0011339183712951177) +zone = ('ndz005', 0.0020807054605360025) + +[fips3833500] +centroid = (0.84857737189697613, -1.8140368607127195) +description = Grenora city, ND +station = ('kisn', 0.008312058289975225) +zone = ('mtz019', 0.0067806185576192645) + +[fips3834020] +centroid = (0.8068820320254847, -1.7044239877686309) +description = Gwinner city, ND +station = ('kgwr', 0.00026604959506855419) +zone = ('ndz052', 0.0021714463896011903) + +[fips3834180] +centroid = (0.80335596079097304, -1.745311013303646) +description = Hague city, ND +station = ('k7l2', 0.0044818575209116937) +zone = ('sdz004', 0.0045449408743457667) + +[fips3834340] +centroid = (0.82642750307967117, -1.7861881777283877) +description = Halliday city, ND +station = ('kdik', 0.011053362247558937) +zone = ('ndz018', 0.0032787781747632104) + +[fips3834460] +centroid = (0.8336178930787449, -1.7368735681007299) +description = Hamberg city, ND +station = ('k46d', 0.0069246668967579261) +zone = ('ndz023', 0.0035030828510458178) + +[fips3834620] +centroid = (0.85186265750788259, -1.7008711955432714) +description = Hamilton city, ND +station = ('k2c8', 0.0021043352473098264) +zone = ('ndz008', 0.0013436335656030623) + +[fips3834860] +centroid = (0.84717580269445447, -1.7218426529562147) +description = Hampden city, ND +station = ('kd55', 0.0047872284329985781) +zone = ('ndz007', 0.0046092332823085757) + +[fips3834900] +centroid = (0.80410198432644553, -1.6910816786754201) +description = Hankinson city, ND +station = ('kbwp', 0.0045690995898131472) +zone = ('ndz053', 0.0034360576438069216) + +[fips3835020] +centroid = (0.8257882413345432, -1.7137203094964535) +description = Hannaford city, ND +station = ('ks32', 0.0021348386031930593) +zone = ('ndz028', 0.0025602033132790256) + +[fips3835060] +centroid = (0.85474005967259792, -1.722471617258756) +description = Hannah city, ND +station = ('cwpo', 0.0046302691215243082) +zone = ('ndz007', 0.0043559819513923652) + +[fips3835140] +centroid = (0.85437917794316309, -1.7345207071894091) +description = Hansboro city, ND +station = ('k06d', 0.0029979351917701707) +zone = ('ndz006', 0.0049062019197817965) + +[fips3835500] +centroid = (0.81950819762001714, -1.7620314769772623) +description = Harmon CDP, ND +station = ('ky19', 0.003337641664827948) +zone = ('ndz034', 0.005680667236174628) + +[fips3835900] +centroid = (0.83387487535780846, -1.7440892653739577) +description = Harvey city, ND +station = ('k5h4', 0.00023948898499396321) +zone = ('ndz023', 0.0045715966241086179) + +[fips3835940] +centroid = (0.8198151312222729, -1.6908097214713744) +description = Harwood city, ND +station = ('kfar', 0.0009789128859361547) +zone = ('mnz003', 0.0048014893474129603) + +[fips3836100] +centroid = (0.83142202453364067, -1.700976316724119) +description = Hatton city, ND +station = ('krdr', 0.0057953315883149913) +zone = ('ndz029', 0.0044463272026117389) + +[fips3836140] +centroid = (0.80205226965290344, -1.7037640962317444) +description = Havana city, ND +station = ('kgwr', 0.0046244570416531612) +zone = ('ndz052', 0.0026846631788885653) + +[fips3836540] +centroid = (0.80239611696883884, -1.7884564774374496) +description = Haynes city, ND +station = ('khei', 0.0022950038330052918) +zone = ('ndz044', 0.0022567612130972668) + +[fips3836700] +centroid = (0.81132429639753822, -1.7502295780285688) +description = Hazelton city, ND +station = ('k7l2', 0.0046428379185695168) +zone = ('ndz046', 0.0035332212386852279) + +[fips3836780] +centroid = (0.82553340581045953, -1.7736888277573051) +description = Hazen city, ND +station = ('khze', 0.00054759170970721015) +zone = ('ndz019', 0.0024510851945685787) + +[fips3836860] +centroid = (0.81860158634006874, -1.7810159992098578) +description = Hebron city, ND +station = ('khze', 0.0087256041217295098) +zone = ('ndz019', 0.0075379403537830089) + +[fips3836980] +centroid = (0.80964417264639843, -1.7750199380179235) +description = Heil CDP, ND +station = ('ky19', 0.011726465187151149) +zone = ('ndz042', 0.00091559879932408413) + +[fips3837020] +centroid = (0.83413917056643805, -1.7392676362356905) +description = Heimdal CDP, ND +station = ('k5h4', 0.0032712102068972668) +zone = ('ndz023', 0.0035801972443291674) + +[fips3837700] +centroid = (0.80291290896035428, -1.7913119233601749) +description = Hettinger city, ND +station = ('khei', 0.00029568543341258069) +zone = ('ndz044', 0.0020756413008966809) + +[fips3838100] +centroid = (0.82733760501812359, -1.6940727017744404) +description = Hillsboro city, ND +station = ('kfar', 0.0087028274412208045) +zone = ('ndz030', 0.0014651590901282952) + +[fips3838780] +centroid = (0.84709556990874035, -1.7040995136073926) +description = Hoople city, ND +station = ('kgaf', 0.0038350117981240431) +zone = ('ndz016', 0.0033186866168956187) + +[fips3838860] +centroid = (0.82596616019849156, -1.7055230739584892) +description = Hope city, ND +station = ('ks32', 0.0048811124676221484) +zone = ('ndz029', 0.0023016733909953305) + +[fips3838900] +centroid = (0.81603832598741977, -1.6913407204430011) +description = Horace city, ND +station = ('kfar', 0.0032836857027641162) +zone = ('mnz003', 0.0055132163415393129) + +[fips3839460] +centroid = (0.82362284623817883, -1.6967010803614815) +description = Hunter city, ND +station = ('kfar', 0.0065100148843624719) +zone = ('ndz039', 0.0045059483697249955) + +[fips3839580] +centroid = (0.82810958159957326, -1.7441142584888463) +description = Hurdsfield city, ND +station = ('k5h4', 0.0060026793834273779) +zone = ('ndz023', 0.0040110922166549864) + +[fips3839980] +centroid = (0.8404017609884441, -1.7042121222507314) +description = Inkster city, ND +station = ('krdr', 0.0043030173602400827) +zone = ('ndz016', 0.0041394294414809837) + +[fips3840580] +centroid = (0.81868300594967425, -1.7225551138101713) +description = Jamestown city, ND +station = ('kjms', 0.00057020383687303162) +zone = ('ndz037', 0.0033845033921425329) + +[fips3840740] +centroid = (0.82973284252368307, -1.7144220365755103) +description = Jessie CDP, ND +station = ('ks32', 0.0025129702901846842) +zone = ('ndz028', 0.0014514813600488767) + +[fips3841180] +centroid = (0.81202940941534396, -1.7260914301273922) +description = Jud city, ND +station = ('kjms', 0.0076302091834895523) +zone = ('ndz048', 0.0045161483708850668) + +[fips3841380] +centroid = (0.83934665709573586, -1.7560843373642614) +description = Karlsruhe city, ND +station = ('krug', 0.0086398616118158553) +zone = ('ndz012', 0.0025168048276921519) + +[fips3841500] +centroid = (0.81475043007908066, -1.7099110585908057) +description = Kathryn city, ND +station = ('kbac', 0.0045617401652298176) +zone = ('ndz038', 0.0045998188991281056) + +[fips3842020] +centroid = (0.84950518892733629, -1.7814965581661015) +description = Kenmare city, ND +station = ('k08d', 0.0075595996058377439) +zone = ('ndz002', 0.0055315969408381736) + +[fips3842180] +centroid = (0.82554138196514115, -1.7232007285537765) +description = Kensal city, ND +station = ('k46d', 0.0056131451116616096) +zone = ('ndz025', 0.0032707939263432293) + +[fips3842660] +centroid = (0.83529688236587096, -1.7543032463158938) +description = Kief city, ND +station = ('k5h4', 0.0069278635118131563) +zone = ('ndz022', 0.0053306466510713328) + +[fips3842700] +centroid = (0.82670616234804462, -1.7933886731838304) +description = Killdeer city, ND +station = ('kdik', 0.0099074289143213767) +zone = ('ndz018', 0.0016101976997407355) + +[fips3842780] +centroid = (0.81418616513191089, -1.6932640907319914) +description = Kindred city, ND +station = ('kfar', 0.0055024033386659142) +zone = ('ndz039', 0.0056681803543224447) + +[fips3843260] +centroid = (0.84376263680925434, -1.7399391865719804) +description = Knox city, ND +station = ('krug', 0.0039487052640607969) +zone = ('ndz013', 0.0036515804412975872) + +[fips3843500] +centroid = (0.84981866751428703, -1.7576790970616862) +description = Kramer city, ND +station = ('krug', 0.0094772530642924131) +zone = ('ndz004', 0.0022830116357366792) + +[fips3843580] +centroid = (0.80812666122166688, -1.7269445645190595) +description = Kulm city, ND +station = ('k2d5', 0.010702095561714852) +zone = ('ndz050', 0.0068352977171680105) + +[fips3844300] +centroid = (0.83850272058922659, -1.7164752070009714) +description = Lakota city, ND +station = ('kdvl', 0.0067694282526016038) +zone = ('ndz026', 0.0027803808048604784) + +[fips3844540] +centroid = (0.8090852309534472, -1.7155906915893533) +description = LaMoure city, ND +station = ('k2d5', 0.0041382234265744241) +zone = ('ndz048', 0.0033660049169389897) + +[fips3844700] +centroid = (0.85339350324809926, -1.7612461660803274) +description = Landa city, ND +station = ('kmib', 0.009769695569611065) +zone = ('ndz004', 0.0020226449138063436) + +[fips3844780] +centroid = (0.85106991150833422, -1.716936881494709) +description = Langdon city, ND +station = ('kd55', 0.00028873998025166444) +zone = ('ndz007', 0.001068523548371987) + +[fips3844860] +centroid = (0.84324703164163028, -1.7090494418989737) +description = Lankin city, ND +station = ('kgaf', 0.0065752759510240462) +zone = ('ndz054', 0.0021325787891073923) + +[fips3844900] +centroid = (0.84870108083435747, -1.769344266916778) +description = Lansford city, ND +station = ('kmib', 0.0036830798266584454) +zone = ('ndz003', 0.0036282351055246104) + +[fips3845020] +centroid = (0.83617012295052129, -1.7039172314203146) +description = Larimore city, ND +station = ('krdr', 0.0028414280527073498) +zone = ('ndz027', 0.0020043608573729567) + +[fips3845220] +centroid = (0.85331894278245413, -1.7952904188433887) +description = Larson CDP, ND +station = ('kd50', 0.0050277057702026286) +zone = ('ndz002', 0.0043272920881628051) + +[fips3845300] +centroid = (0.84305234016357034, -1.7168431922204619) +description = Lawton city, ND +station = ('kd55', 0.0078546370742503518) +zone = ('ndz015', 0.0041343439449139322) + +[fips3845460] +centroid = (0.82213647148730296, -1.7159272608823077) +description = Leal city, ND +station = ('kbac', 0.00454884963743548) +zone = ('ndz038', 0.0041350978018747766) + +[fips3845580] +centroid = (0.84280286280029015, -1.7355469607895817) +description = Leeds city, ND +station = ('k9d7', 0.0040805493577367275) +zone = ('ndz014', 0.0039281293228133471) + +[fips3845740] +centroid = (0.80778070205733665, -1.7340347900723612) +description = Lehr city, ND +station = ('kjms', 0.014026882961469221) +zone = ('ndz050', 0.003161718733121995) + +[fips3845860] +centroid = (0.80922134918181021, -1.7739772783227823) +description = Leith city, ND +station = ('kbis', 0.01294964642325034) +zone = ('ndz042', 0.00011818912721855594) + +[fips3845980] +centroid = (0.81423651788083096, -1.6973314932873016) +description = Leonard city, ND +station = ('kfar', 0.007131517443224801) +zone = ('ndz039', 0.0048989088145269168) + +[fips3846460] +centroid = (0.80413690836477791, -1.6954996480642861) +description = Lidgerwood city, ND +station = ('k8d3', 0.0073698194698113874) +zone = ('ndz053', 0.0040936326808093349) + +[fips3846540] +centroid = (0.85307265937170518, -1.7900847823630976) +description = Lignite city, ND +station = ('cyen', 0.0074990019360662548) +zone = ('ndz002', 0.0016005814263378212) + +[fips3846640] +centroid = (0.81624476353134567, -1.7575762971687439) +description = Lincoln city, ND +station = ('kbis', 0.000640926228940926) +zone = ('ndz035', 0.0045998279446872979) + +[fips3846980] +centroid = (0.8075385201703299, -1.7494023268697085) +description = Linton city, ND +station = ('k7l2', 0.00085045906317614208) +zone = ('ndz046', 0.00029620309886191365) + +[fips3847100] +centroid = (0.81049664381295006, -1.7049145300081965) +description = Lisbon city, ND +station = ('kgwr', 0.0038615638145739423) +zone = ('ndz049', 0.00045176321837946403) + +[fips3847140] +centroid = (0.81432877598509135, -1.7137706447920811) +description = Litchville city, ND +station = ('kbac', 0.005366072219097527) +zone = ('ndz038', 0.0050685246592960627) + +[fips3847540] +centroid = (0.84054449401467224, -1.7658481280789384) +description = Logan CDP, ND +station = ('kmot', 0.0022488032359422967) +zone = ('ndz011', 0.0043962294132368308) + +[fips3847660] +centroid = (0.84888858155589908, -1.7195977930190069) +description = Loma city, ND +station = ('kd55', 0.0025232153336339968) +zone = ('ndz007', 0.0024488041811508822) + +[fips3848020] +centroid = (0.85291331081099808, -1.7726930650591648) +description = Loraine city, ND +station = ('kmib', 0.0082736457148640512) +zone = ('ndz003', 0.0028021597482772533) + +[fips3848460] +centroid = (0.8029899303402448, -1.7126095819604843) +description = Ludden city, ND +station = ('k2d5', 0.0029336158595845503) +zone = ('ndz051', 0.0049283016446205951) + +[fips3848580] +centroid = (0.82469240145709344, -1.7092860561856666) +description = Luverne city, ND +station = ('ks32', 0.003610536500146898) +zone = ('ndz029', 0.004353533572053433) + +[fips3849020] +centroid = (0.8287530495881984, -1.7530564354581466) +description = McClusky city, ND +station = ('k5h4', 0.0080526128046211013) +zone = ('ndz022', 0.0019627012315584871) + +[fips3849260] +centroid = (0.83036519276497323, -1.7207405648000429) +description = McHenry city, ND +station = ('k46d', 0.0069566521547565598) +zone = ('ndz028', 0.0046635601369056845) + +[fips3849540] +centroid = (0.80963511438758051, -1.6981825681904517) +description = McLeod CDP, ND +station = ('kgwr', 0.0051066325483821572) +zone = ('ndz049', 0.0044743830263557927) + +[fips3849580] +centroid = (0.83365854179702381, -1.7134847075007269) +description = McVille city, ND +station = ('ks32', 0.0060308398798875808) +zone = ('ndz026', 0.0027381228116163448) + +[fips3849620] +centroid = (0.8371025651033992, -1.7371129574609336) +description = Maddock city, ND +station = ('k5h4', 0.0055798752523054003) +zone = ('ndz014', 0.0026685798011053313) + +[fips3849820] +centroid = (0.83706929912785621, -1.7768244164782681) +description = Makoti city, ND +station = ('kn60', 0.0069505843202269353) +zone = ('ndz011', 0.0054931187598795238) + +[fips3849900] +centroid = (0.8172923625082702, -1.7607670906539474) +description = Mandan city, ND +station = ('ky19', 0.0010418356354954434) +zone = ('ndz034', 0.0051232031997299077) + +[fips3849980] +centroid = (0.83330816694968601, -1.7924089849681009) +description = Mandaree CDP, ND +station = ('k08d', 0.010278282251493354) +zone = ('ndz018', 0.0068401209268534706) + +[fips3850220] +centroid = (0.82433706987467992, -1.7936814172592674) +description = Manning CDP, ND +station = ('kdik', 0.007531234969152964) +zone = ('ndz018', 0.0028395431922751909) + +[fips3850380] +centroid = (0.80573950459054411, -1.69258255711238) +description = Mantador city, ND +station = ('kbwp', 0.0046812389309032866) +zone = ('ndz053', 0.0017664838742030068) + +[fips3850420] +centroid = (0.83902555141995405, -1.6960745595198929) +description = Manvel city, ND +station = ('kgfk', 0.0021411102850296651) +zone = ('ndz027', 0.0041885968222272968) + +[fips3850580] +centroid = (0.81840685995542373, -1.6938951319763427) +description = Mapleton city, ND +station = ('kfar', 0.0029123180531217749) +zone = ('ndz039', 0.002437050369758895) + +[fips3850780] +centroid = (0.81347548451379126, -1.7164321148217399) +description = Marion city, ND +station = ('kjms', 0.0068519126936947691) +zone = ('ndz048', 0.0035056848077649311) + +[fips3850860] +centroid = (0.8081113197775418, -1.8140051131736257) +description = Marmarth city, ND +station = ('kbhk', 0.003892181088317505) +zone = ('mtz033', 0.0058447541849038489) + +[fips3851060] +centroid = (0.83473120370200704, -1.7473387193753207) +description = Martin city, ND +station = ('k5h4', 0.0022378569177171808) +zone = ('ndz022', 0.0051522935512161566) + +[fips3851380] +centroid = (0.83462618724091453, -1.7678705632562717) +description = Max city, ND +station = ('kn60', 0.00341061707680748) +zone = ('ndz021', 0.003744210836551081) + +[fips3851420] +centroid = (0.85036666599282806, -1.7652670905176568) +description = Maxbass city, ND +station = ('kmib', 0.0058504901247669961) +zone = ('ndz004', 0.0037560278315159194) + +[fips3851500] +centroid = (0.82899743059006281, -1.6986620974024369) +description = Mayville city, ND +station = ('kgfk', 0.0080642419932717754) +zone = ('ndz030', 0.0020878915784912377) + +[fips3851860] +centroid = (0.81847607971355785, -1.7331097306622194) +description = Medina city, ND +station = ('k46d', 0.0098606829589277384) +zone = ('ndz037', 0.0043207681621551825) + +[fips3851900] +centroid = (0.81879434050265898, -1.8068709053231737) +description = Medora city, ND +station = ('k20u', 0.0054383320587595985) +zone = ('ndz032', 0.0026203953476548868) + +[fips3852180] +centroid = (0.81706576641148376, -1.7545878571570166) +description = Menoken CDP, ND +station = ('kbis', 0.0026783338693281804) +zone = ('ndz035', 0.002938111991724994) + +[fips3852340] +centroid = (0.82886619928360528, -1.7577344065456819) +description = Mercer city, ND +station = ('kn60', 0.0089522027797193579) +zone = ('ndz022', 0.00455081461465239) + +[fips3852740] +centroid = (0.83818425036061517, -1.7125191564519386) +description = Michigan City city, ND +station = ('ks32', 0.010501977304579408) +zone = ('ndz026', 0.0019818634130658866) + +[fips3852940] +centroid = (0.80741514284550631, -1.7009441677592974) +description = Milnor city, ND +station = ('kgwr', 0.0023713678610283112) +zone = ('ndz052', 0.0034056751243037729) + +[fips3853020] +centroid = (0.84868999799360723, -1.7112237032679383) +description = Milton city, ND +station = ('kd55', 0.0045759993545452897) +zone = ('ndz054', 0.0044715717137122808) + +[fips3853220] +centroid = (0.8389836635179061, -1.7322453738034616) +description = Minnewaukan city, ND +station = ('kdvl', 0.0039734137944594985) +zone = ('ndz014', 0.0013477153780214895) + +[fips3853380] +centroid = (0.84184102930280869, -1.7678570195012762) +description = Minot city, ND +station = ('kmot', 0.00057768263223641745) +zone = ('ndz011', 0.0029266449094653684) + +[fips3853420] +centroid = (0.84507728861502662, -1.7686445644196538) +description = Minot AFB CDP, ND +station = ('kmib', 0.00017031346856461835) +zone = ('ndz011', 0.0041954098648894116) + +[fips3853540] +centroid = (0.84286124406376939, -1.6994797317971189) +description = Minto city, ND +station = ('kgaf', 0.0019606956919910449) +zone = ('ndz016', 0.0019797675431278794) + +[fips3853780] +centroid = (0.85112883382388149, -1.7718058269339136) +description = Mohall city, ND +station = ('kmib', 0.0063960268203201312) +zone = ('ndz003', 0.0018185761603812219) + +[fips3853820] +centroid = (0.80587689690926112, -1.7208099939976873) +description = Monango city, ND +station = ('k2d5', 0.0062261291491516697) +zone = ('ndz051', 0.0015535969938454079) + +[fips3853980] +centroid = (0.8150513248421245, -1.7207039652456284) +description = Montpelier city, ND +station = ('kjms', 0.0041935561960654445) +zone = ('ndz048', 0.004274062141563088) + +[fips3854220] +centroid = (0.80754431466344645, -1.6908040316980129) +description = Mooreton city, ND +station = ('kbwp', 0.0032719690306873481) +zone = ('ndz053', 0.00087631070844600416) + +[fips3854620] +centroid = (0.80938111662153778, -1.7858154801199166) +description = Mott city, ND +station = ('khei', 0.0074058376473080537) +zone = ('ndz041', 0.0019772790927035447) + +[fips3854740] +centroid = (0.84969759402407607, -1.7080650063876788) +description = Mountain city, ND +station = ('k2c8', 0.0031952417027178415) +zone = ('ndz008', 0.0038869832096788473) + +[fips3855020] +centroid = (0.84951065180789498, -1.7250615986022531) +description = Munich city, ND +station = ('kd55', 0.0053115662506162051) +zone = ('ndz006', 0.0046968089463956053) + +[fips3855220] +centroid = (0.84885704345631563, -1.7386593017249081) +description = Mylo city, ND +station = ('k06d', 0.0043376018297105407) +zone = ('ndz005', 0.0035052060231478815) + +[fips3855420] +centroid = (0.81164625728465367, -1.7412872963395134) +description = Napoleon city, ND +station = ('k7l2', 0.0075817904349955436) +zone = ('ndz047', 0.0035892635724733054) + +[fips3855500] +centroid = (0.84609764300232748, -1.7021228060564613) +description = Nash CDP, ND +station = ('kgaf', 0.0021889361413650102) +zone = ('ndz016', 0.001932763403200023) + +[fips3855620] +centroid = (0.85491527327620576, -1.7025970818273983) +description = Neche city, ND +station = ('k2c8', 0.0036006372554333779) +zone = ('ndz008', 0.0037670663908292959) + +[fips3855740] +centroid = (0.84785492775969795, -1.7169960132497666) +description = Nekoma city, ND +station = ('kd55', 0.0030526978081199456) +zone = ('ndz007', 0.003530643338958877) + +[fips3856020] +centroid = (0.85022093100028651, -1.7612574758138804) +description = Newburg city, ND +station = ('kmib', 0.0072431237643630735) +zone = ('ndz004', 0.0016381595832015755) + +[fips3856180] +centroid = (0.81228970781998633, -1.7953685048741226) +description = New England city, ND +station = ('kdik', 0.0045950658310586019) +zone = ('ndz033', 0.0053518407546376328) + +[fips3856420] +centroid = (0.80941063013918901, -1.7793922845001422) +description = New Leipzig city, ND +station = ('khei', 0.010510250302935162) +zone = ('ndz042', 0.0037695647387102618) + +[fips3856620] +centroid = (0.83215296842437592, -1.7302165158144807) +description = New Rockford city, ND +station = ('k46d', 0.0039800546450348461) +zone = ('ndz024', 0.0028136293346760779) + +[fips3856700] +centroid = (0.81758362305384302, -1.770077444828956) +description = New Salem city, ND +station = ('khze', 0.0080198050823105001) +zone = ('ndz034', 0.0027687736544267667) + +[fips3856740] +centroid = (0.83749119756794077, -1.7886513085418496) +description = New Town city, ND +station = ('k08d', 0.0055875179266813828) +zone = ('ndz010', 0.0040579456777737853) + +[fips3856780] +centroid = (0.83777563387613829, -1.7082758072547348) +description = Niagara city, ND +station = ('kgfk', 0.0081535037199072825) +zone = ('ndz027', 0.005099055894719734) + +[fips3857180] +centroid = (0.81464408716775671, -1.7072194118183803) +description = Nome city, ND +station = ('kbac', 0.0052213379179522137) +zone = ('ndz049', 0.0042806845477495409) + +[fips3857220] +centroid = (0.85329726579314435, -1.7978686715743122) +description = Noonan city, ND +station = ('kd50', 0.0033586054831333937) +zone = ('ndz002', 0.0059118854250225193) + +[fips3858120] +centroid = (0.81943375932741969, -1.6895033250729643) +description = North River city, ND +station = ('kfar', 0.00034444845105241798) +zone = ('mnz003', 0.0038394590280204795) + +[fips3858300] +centroid = (0.83307422301674861, -1.7028356683361461) +description = Northwood city, ND +station = ('krdr', 0.0045359743689557157) +zone = ('ndz027', 0.0035549240038732625) + +[fips3858740] +centroid = (0.80528414818869887, -1.7119534428814895) +description = Oakes city, ND +station = ('k2d5', 0.00059503739467597352) +zone = ('ndz051', 0.0050686805595444072) + +[fips3859020] +centroid = (0.83643166053893248, -1.7314788601025706) +description = Oberon city, ND +station = ('kdvl', 0.0047696517975688579) +zone = ('ndz014', 0.0031477680785715685) + +[fips3859660] +centroid = (0.81910678934535097, -1.7067693263108759) +description = Oriska city, ND +station = ('kbac', 0.0027150541296522483) +zone = ('ndz038', 0.0033489999674549574) + +[fips3859820] +centroid = (0.83934520847245686, -1.7482458542540447) +description = Orrin CDP, ND +station = ('krug', 0.0054859563252703577) +zone = ('ndz013', 0.0035828178718665402) + +[fips3860100] +centroid = (0.84945459183232097, -1.7130301364970448) +description = Osnabrock city, ND +station = ('kd55', 0.0031627896813117115) +zone = ('ndz007', 0.0040468756656425872) + +[fips3860380] +centroid = (0.849644919987251, -1.7479643850055757) +description = Overly city, ND +station = ('krug', 0.0052770652354550982) +zone = ('ndz005', 0.0039076091020462216) + +[fips3860480] +centroid = (0.8145805222763991, -1.6895107427222851) +description = Oxbow city, ND +station = ('kjkj', 0.003356122117502434) +zone = ('mnz003', 0.0053507038001311619) + +[fips3860500] +centroid = (0.82306135636451971, -1.7029272632152905) +description = Page city, ND +station = ('kbac', 0.0065301941787967071) +zone = ('ndz029', 0.0055160071115043187) + +[fips3860620] +centroid = (0.84366378136042153, -1.7842368123581955) +description = Palermo city, ND +station = ('k08d', 0.0021578782011526551) +zone = ('ndz010', 0.0028068649020558749) + +[fips3860900] +centroid = (0.84462777906617559, -1.7059558108932289) +description = Park River city, ND +station = ('kgaf', 0.0043293461402038463) +zone = ('ndz016', 0.0028658044585486661) + +[fips3860940] +centroid = (0.83698178831916115, -1.7825781910634402) +description = Parshall city, ND +station = ('k08d', 0.006809979564232971) +zone = ('ndz010', 0.0050065302105698727) + +[fips3861460] +centroid = (0.83412639475631345, -1.7161444322011334) +description = Pekin city, ND +station = ('ks32', 0.0069522261990569547) +zone = ('ndz026', 0.0027657284627459547) + +[fips3861580] +centroid = (0.85461952723445533, -1.6972934625629008) +description = Pembina city, ND +station = ('khco', 0.0051090128907841969) +zone = ('ndz008', 0.0049221458852176641) + +[fips3861780] +centroid = (0.85023503326064276, -1.7358700037808334) +description = Perth city, ND +station = ('k06d', 0.0035016801196176279) +zone = ('ndz006', 0.0024963613158087883) + +[fips3861860] +centroid = (0.8380641717080779, -1.7104342210340913) +description = Petersburg city, ND +station = ('kgfk', 0.0096206450482439806) +zone = ('ndz026', 0.002794307757349822) + +[fips3862060] +centroid = (0.82233049974024719, -1.7369562618006895) +description = Pettibone city, ND +station = ('k46d', 0.0072985295192878807) +zone = ('ndz036', 0.0038950959097941431) + +[fips3862260] +centroid = (0.82923486518150402, -1.7707612648298874) +description = Pick City city, ND +station = ('kn60', 0.0024307458254936489) +zone = ('ndz021', 0.002304383366626462) + +[fips3862540] +centroid = (0.82391920314516753, -1.7068576748776121) +description = Pillsbury city, ND +station = ('kbac', 0.0053416905533599538) +zone = ('ndz029', 0.0044282046932744854) + +[fips3862620] +centroid = (0.82316363265868664, -1.7262868371904454) +description = Pingree city, ND +station = ('kjms', 0.0049479144747220831) +zone = ('ndz037', 0.0032759527232011157) + +[fips3862780] +centroid = (0.84318604983756562, -1.7053772342461928) +description = Pisek city, ND +station = ('kgaf', 0.004269798913432511) +zone = ('ndz016', 0.0026455637587457963) + +[fips3862980] +centroid = (0.83820404239433277, -1.7795259069076748) +description = Plaza city, ND +station = ('k08d', 0.0070830974147533844) +zone = ('ndz011', 0.0059492411776704383) + +[fips3863700] +centroid = (0.80672325942343071, -1.7645296889086892) +description = Porcupine CDP, ND +station = ('ky19', 0.0098500025237724474) +zone = ('ndz045', 0.0020381457868154586) + +[fips3863740] +centroid = (0.85513602251999798, -1.7897904674913339) +description = Portal city, ND +station = ('cyen', 0.0061497883805465081) +zone = ('ndz002', 0.0035897796048924287) + +[fips3863900] +centroid = (0.82901917739254249, -1.6994153640543053) +description = Portland city, ND +station = ('kgfk', 0.0081636739476986832) +zone = ('ndz030', 0.0025749053159592229) + +[fips3864140] +centroid = (0.84759483879456587, -1.7914659835732485) +description = Powers Lake city, ND +station = ('kd60', 0.0043451673882292062) +zone = ('ndz002', 0.0042210190681417599) + +[fips3864320] +centroid = (0.81711271576836242, -1.6900921118961243) +description = Prairie Rose city, ND +station = ('kfar', 0.0020404250191377866) +zone = ('mnz003', 0.0043171381880588054) + +[fips3865100] +centroid = (0.80908477716784166, -1.7681124833438908) +description = Raleigh CDP, ND +station = ('ky19', 0.0087073471483387326) +zone = ('ndz042', 0.0040270479461950561) + +[fips3865580] +centroid = (0.84373869089191711, -1.8005103670235456) +description = Ray city, ND +station = ('kd60', 0.0031326991049985035) +zone = ('ndz009', 0.0036954817473320457) + +[fips3865900] +centroid = (0.80472066863969249, -1.796686978950957) +description = Reeder city, ND +station = ('khei', 0.0038789292120726426) +zone = ('ndz044', 0.005014240897317882) + +[fips3865980] +centroid = (0.82304074402605376, -1.7545316750083948) +description = Regan city, ND +station = ('kbis', 0.0070367263006707835) +zone = ('ndz035', 0.0032066575912800101) + +[fips3866020] +centroid = (0.81022020111272663, -1.7899783521853112) +description = Regent city, ND +station = ('khei', 0.0071641347455049876) +zone = ('ndz041', 0.0011905265740092784) + +[fips3866040] +centroid = (0.8190291396469298, -1.6906390980836994) +description = Reile's Acres city, ND +station = ('kfar', 0.00060424962330682039) +zone = ('mnz003', 0.0045220573084378555) + +[fips3866260] +centroid = (0.83200046155433671, -1.6948697587372412) +description = Reynolds city, ND +station = ('kgfk', 0.0049622487463349017) +zone = ('ndz030', 0.0038190367518442323) + +[fips3866300] +centroid = (0.80694622523537307, -1.809123881041403) +description = Rhame city, ND +station = ('kbhk', 0.0074509554325514924) +zone = ('ndz043', 0.0026787856003617091) + +[fips3866500] +centroid = (0.81828660676996134, -1.7857453876971567) +description = Richardton city, ND +station = ('kdik', 0.0059665436592142539) +zone = ('ndz033', 0.0042497180580306935) + +[fips3866980] +centroid = (0.82898039617656327, -1.7691604488399582) +description = Riverdale city, ND +station = ('kn60', 0.0027861885692198811) +zone = ('ndz021', 0.0019861385251851546) + +[fips3867180] +centroid = (0.82278756656475938, -1.7414943796552624) +description = Robinson city, ND +station = ('k46d', 0.0091908332543859505) +zone = ('ndz036', 0.0028283941110478598) + +[fips3867500] +centroid = (0.85154903929459169, -1.7321709529641565) +description = Rocklake city, ND +station = ('k9d7', 0.0054145729912138387) +zone = ('ndz006', 0.0018250222279602654) + +[fips3867620] +centroid = (0.82159644916344332, -1.7139678146376787) +description = Rogers city, ND +station = ('kbac', 0.0031986476746016499) +zone = ('ndz038', 0.0028712148396369728) + +[fips3867780] +centroid = (0.8492917177065249, -1.742567285906341) +description = Rolette city, ND +station = ('k06d', 0.0046571479674743848) +zone = ('ndz005', 0.0019472608231402373) + +[fips3867820] +centroid = (0.85248137672771451, -1.7385139157982168) +description = Rolla city, ND +station = ('k06d', 0.00072488596936469472) +zone = ('ndz005', 0.002937659522189755) + +[fips3868540] +centroid = (0.84321847805506767, -1.789724005353418) +description = Ross city, ND +station = ('k08d', 0.0016070093903623372) +zone = ('ndz010', 0.0029266454885440558) + +[fips3868860] +centroid = (0.84415692414057253, -1.7451921563815853) +description = Rugby city, ND +station = ('krug', 0.00056088143599946857) +zone = ('ndz013', 0.002056150493951144) + +[fips3869140] +centroid = (0.83491800629184798, -1.7616368056735086) +description = Ruso city, ND +station = ('kn60', 0.0067066542832365057) +zone = ('ndz021', 0.0060702175682288027) + +[fips3869300] +centroid = (0.84422994871647583, -1.7680226337939979) +description = Ruthville CDP, ND +station = ('kmib', 0.00098645659567384719) +zone = ('ndz011', 0.003825092974997322) + +[fips3869340] +centroid = (0.80379962348683009, -1.7018153314021378) +description = Rutland city, ND +station = ('kgwr', 0.0033085784995703091) +zone = ('ndz052', 0.0017652247096068656) + +[fips3869460] +centroid = (0.83632917480525548, -1.7745269697706978) +description = Ryder city, ND +station = ('kn60', 0.0054583775909261062) +zone = ('ndz011', 0.005516160758049349) + +[fips3869980] +centroid = (0.85422953341309715, -1.7403229670212015) +description = St. John city, ND +station = ('k06d', 0.0014808031645619827) +zone = ('ndz005', 0.0033319384993218452) + +[fips3870260] +centroid = (0.84856808674535555, -1.7007727240668737) +description = St. Thomas city, ND +station = ('k2c8', 0.0035707998923381343) +zone = ('ndz008', 0.0028476720299526422) + +[fips3870380] +centroid = (0.81929444714652544, -1.7143314888939167) +description = Sanborn city, ND +station = ('kbac', 0.0024536315585760994) +zone = ('ndz038', 0.0018186441206334554) + +[fips3870780] +centroid = (0.85425232741312818, -1.7278013990087411) +description = Sarles city, ND +station = ('cwpo', 0.0045823020155710322) +zone = ('ndz006', 0.0053639657492449118) + +[fips3870980] +centroid = (0.83931909834684693, -1.7637137823899669) +description = Sawyer city, ND +station = ('kmot', 0.0040903913808047337) +zone = ('ndz011', 0.0061383379889822709) + +[fips3871500] +centroid = (0.80541173175701963, -1.8001800111027282) +description = Scranton city, ND +station = ('khei', 0.0063820165438242078) +zone = ('ndz043', 0.0046104993583366075) + +[fips3871660] +centroid = (0.80358452910981415, -1.7614597594741863) +description = Selfridge city, ND +station = ('kmbg', 0.010577388150035602) +zone = ('ndz045', 0.0018709687450111187) + +[fips3871700] +centroid = (0.83530419529543676, -1.7434689404512138) +description = Selz CDP, ND +station = ('k5h4', 0.0012734590412423433) +zone = ('ndz023', 0.005472705023424616) + +[fips3871780] +centroid = (0.81889871119192825, -1.8123601927134987) +description = Sentinel Butte city, ND +station = ('k20u', 0.0016880793991979691) +zone = ('ndz031', 0.00036957617507406602) + +[fips3871940] +centroid = (0.83067312120490255, -1.7087640980195653) +description = Sharon city, ND +station = ('ks32', 0.0038137600655038808) +zone = ('ndz029', 0.0032099296515686964) + +[fips3872180] +centroid = (0.81310397372921184, -1.7015554867831006) +description = Sheldon city, ND +station = ('kgwr', 0.0066899190275175281) +zone = ('ndz049', 0.0030341949161032549) + +[fips3872250] +centroid = (0.85187105254158468, -1.7423115951709238) +description = Shell Valley CDP, ND +station = ('k06d', 0.0027137117257270108) +zone = ('ndz005', 0.00065226238518557335) + +[fips3872540] +centroid = (0.85454561254063333, -1.7738284715507573) +description = Sherwood city, ND +station = ('kmib', 0.010058074368876672) +zone = ('ndz003', 0.0042450564538010346) + +[fips3872580] +centroid = (0.83474312430079811, -1.729917034768131) +description = Sheyenne city, ND +station = ('kdvl', 0.00556691697155686) +zone = ('ndz024', 0.0031691617796580718) + +[fips3872820] +centroid = (0.82412132972584096, -1.7098169329842459) +description = Sibley city, ND +station = ('ks32', 0.0039312478922810387) +zone = ('ndz029', 0.005028313524175339) + +[fips3873820] +centroid = (0.8096185512129791, -1.7592165226931831) +description = Solen city, ND +station = ('ky19', 0.0067417467658780796) +zone = ('ndz045', 0.0056381059368017248) + +[fips3874020] +centroid = (0.85364113056237234, -1.7572428869217354) +description = Souris city, ND +station = ('kmib', 0.011547082403765344) +zone = ('ndz004', 0.0026907393628544077) + +[fips3874185] +centroid = (0.81800416013711108, -1.7975238992338731) +description = South Heart city, ND +station = ('kdik', 0.0025674398909829917) +zone = ('ndz033', 0.0041296067791894266) + +[fips3874660] +centroid = (0.8191577704128018, -1.7190323063413608) +description = Spiritwood CDP, ND +station = ('kjms', 0.002066272585784827) +zone = ('ndz037', 0.0056005631909008362) + +[fips3874740] +centroid = (0.82169450176082048, -1.7206494237065038) +description = Spiritwood Lake city, ND +station = ('kjms', 0.0027280476825811161) +zone = ('ndz037', 0.0047693843828665134) + +[fips3874780] +centroid = (0.84215534564780037, -1.8057405253798269) +description = Springbrook city, ND +station = ('kisn', 0.0024998057003351032) +zone = ('ndz009', 0.0016163406483356273) + +[fips3875380] +centroid = (0.8432706110398247, -1.7869932457524551) +description = Stanley city, ND +station = ('k08d', 0.00034414232689012106) +zone = ('ndz010', 0.0020326016293703173) + +[fips3875420] +centroid = (0.8258269527373524, -1.7694828460593865) +description = Stanton city, ND +station = ('khze', 0.0023759002842235208) +zone = ('ndz020', 0.0035476924068496537) + +[fips3875580] +centroid = (0.84565130995271498, -1.7257600793689012) +description = Starkweather city, ND +station = ('kdvl', 0.0058735658794814259) +zone = ('ndz015', 0.0036898557944590989) + +[fips3875780] +centroid = (0.8177902874905717, -1.743888814309366) +description = Steele city, ND +station = ('k7l2', 0.011768137839859772) +zone = ('ndz036', 0.0027176968001930489) + +[fips3876500] +centroid = (0.80518633993741706, -1.748157174074751) +description = Strasburg city, ND +station = ('k7l2', 0.0018201107865211934) +zone = ('ndz046', 0.0027990984901644579) + +[fips3876620] +centroid = (0.81432835710607088, -1.7341066976375434) +description = Streeter city, ND +station = ('kjms', 0.0095498459300729296) +zone = ('ndz047', 0.0037812621973539896) + +[fips3877180] +centroid = (0.84187717507161752, -1.7651039720457655) +description = Surrey city, ND +station = ('kmot', 0.0018271146968380553) +zone = ('ndz011', 0.0047593294383009742) + +[fips3877260] +centroid = (0.8273523181437179, -1.7181201798209762) +description = Sutton CDP, ND +station = ('ks32', 0.0039728123035644679) +zone = ('ndz028', 0.0025819427828323179) + +[fips3877660] +centroid = (0.82844056583892134, -1.7348435407411504) +description = Sykeston city, ND +station = ('k46d', 0.0029362147463264663) +zone = ('ndz023', 0.0037432411162287458) + +[fips3877980] +centroid = (0.81806393766399188, -1.7388211810130305) +description = Tappen city, ND +station = ('k46d', 0.011583051535689922) +zone = ('ndz036', 0.0026300466577589055) + +[fips3878180] +centroid = (0.81859790369534702, -1.7876163806552945) +description = Taylor city, ND +station = ('kdik', 0.0048420200191666898) +zone = ('ndz033', 0.0031977998169642062) + +[fips3878660] +centroid = (0.83382429571608574, -1.6947907302287109) +description = Thompson city, ND +station = ('kgfk', 0.0031977278578970139) +zone = ('ndz027', 0.0048650653885242484) + +[fips3878940] +centroid = (0.84471232281514208, -1.7966156124378427) +description = Tioga city, ND +station = ('kd60', 0.00057125029476813084) +zone = ('ndz002', 0.0083929650432014811) + +[fips3879140] +centroid = (0.85050526258872905, -1.7772198557268923) +description = Tolley city, ND +station = ('kmib', 0.0077681055561150741) +zone = ('ndz003', 0.0019566255477472209) + +[fips3879180] +centroid = (0.83471919583675336, -1.7180757960980979) +description = Tolna city, ND +station = ('kdvl', 0.0075482351399499522) +zone = ('ndz026', 0.0033333321243526263) + +[fips3879340] +centroid = (0.81901772519362182, -1.7047671369528656) +description = Tower City city, ND +station = ('kbac', 0.0040852598638807048) +zone = ('ndz039', 0.0051009459606140848) + +[fips3879420] +centroid = (0.84381672456277368, -1.7524330736625044) +description = Towner city, ND +station = ('krug', 0.0045001309724859622) +zone = ('ndz012', 0.0033086132811395736) + +[fips3879940] +centroid = (0.82940632632721989, -1.7608766275178025) +description = Turtle Lake city, ND +station = ('kn60', 0.0067691379752060138) +zone = ('ndz021', 0.005290720208824224) + +[fips3880140] +centroid = (0.82282720299207224, -1.7452141824367458) +description = Tuttle city, ND +station = ('k5h4', 0.011308523819651192) +zone = ('ndz036', 0.0038284639488269248) + +[fips3880660] +centroid = (0.82824917303314771, -1.7652533722297363) +description = Underwood city, ND +station = ('kn60', 0.0048345889288814933) +zone = ('ndz021', 0.0033958798066803172) + +[fips3880860] +centroid = (0.84790323847339322, -1.7580463317895985) +description = Upham city, ND +station = ('krug', 0.0087999696024955425) +zone = ('ndz004', 0.0038728622776382014) + +[fips3881180] +centroid = (0.81895320037117547, -1.7105106664553285) +description = Valley City city, ND +station = ('kbac', 0.00035897825556391381) +zone = ('ndz038', 0.00082773564443560429) + +[fips3881620] +centroid = (0.83876061043950123, -1.7615770630532128) +description = Velva city, ND +station = ('kmot', 0.0054923289571451863) +zone = ('ndz012', 0.0046187373644814358) + +[fips3881700] +centroid = (0.80280729908731618, -1.737470837224055) +description = Venturia city, ND +station = ('k7l2', 0.0092760769379228811) +zone = ('ndz050', 0.0023910690957779329) + +[fips3881900] +centroid = (0.8092400940179767, -1.711668064095496) +description = Verona city, ND +station = ('k2d5', 0.0033698629856094503) +zone = ('ndz048', 0.0058060652166408684) + +[fips3882380] +centroid = (0.83809462770352539, -1.7600751897785794) +description = Voltaire city, ND +station = ('kmot', 0.0066869843782614994) +zone = ('ndz012', 0.0044751144331898135) + +[fips3882660] +centroid = (0.8075975122990473, -1.6861933605064343) +description = Wahpeton city, ND +station = ('kbwp', 0.00049245034132445694) +zone = ('mnz029', 0.0022784526150711778) + +[fips3882780] +centroid = (0.81245900475742983, -1.6918794163166293) +description = Walcott city, ND +station = ('kjkj', 0.0060154479296935376) +zone = ('ndz053', 0.004991084569324707) + +[fips3882940] +centroid = (0.85337283854975565, -1.7209100537237039) +description = Wales city, ND +station = ('kd55', 0.0034323326539406692) +zone = ('ndz007', 0.0026467696615446656) + +[fips3882980] +centroid = (0.85383304696692164, -1.708973886595655) +description = Walhalla city, ND +station = ('k96d', 0.00037774959921418958) +zone = ('ndz008', 0.0049812667586577935) + +[fips3883580] +centroid = (0.83518893375163505, -1.7227429461442709) +description = Warwick city, ND +station = ('kdvl', 0.0052221891989304992) +zone = ('ndz024', 0.0032916796603951457) + +[fips3883700] +centroid = (0.82544298030191365, -1.7632825813449693) +description = Washburn city, ND +station = ('kn60', 0.007830239948698442) +zone = ('ndz020', 0.0048401097907450523) + +[fips3883860] +centroid = (0.8343030395299077, -1.8024793602191831) +description = Watford City city, ND +station = ('kisn', 0.0079703151146774589) +zone = ('ndz017', 0.0017816522955914011) + +[fips3884780] +centroid = (0.81779597726393316, -1.6913122715761937) +description = West Fargo city, ND +station = ('kfar', 0.0017090577965977003) +zone = ('mnz003', 0.004984963527076427) + +[fips3885020] +centroid = (0.85365945651951824, -1.7630910663661481) +description = Westhope city, ND +station = ('kmib', 0.0094413006168503899) +zone = ('ndz004', 0.0029642003640644983) + +[fips3885180] +centroid = (0.81864488795881074, -1.6989991902941672) +description = Wheatland CDP, ND +station = ('kbac', 0.0080420904335730906) +zone = ('ndz039', 0.0012602824312325648) + +[fips3885540] +centroid = (0.84438795337365891, -1.7937064452807412) +description = White Earth city, ND +station = ('kd60', 0.0014570574435128361) +zone = ('ndz010', 0.0057509407660262237) + +[fips3885660] +centroid = (0.83182667912071562, -1.7775054614056887) +description = White Shield CDP, ND +station = ('kn60', 0.0048260531084757989) +zone = ('ndz019', 0.0061270242716994243) + +[fips3886020] +centroid = (0.84875143358327743, -1.8008968527331073) +description = Wildrose city, ND +station = ('kd50', 0.0053746646145833082) +zone = ('ndz001', 0.0047582407324291117) + +[fips3886220] +centroid = (0.84060390502241, -1.8087256667192679) +description = Williston city, ND +station = ('kisn', 0.00040922700889661615) +zone = ('ndz009', 0.0036147684110021216) + +[fips3886380] +centroid = (0.84830838175265866, -1.7504478489048234) +description = Willow City city, ND +station = ('krug', 0.0048588472456666653) +zone = ('ndz004', 0.0070320306235055847) + +[fips3886580] +centroid = (0.82306636545947298, -1.7590406807710446) +description = Wilton city, ND +station = ('kbis', 0.0065568910916262001) +zone = ('ndz035', 0.0049137488642910137) + +[fips3886620] +centroid = (0.82326451268945189, -1.7184281431674906) +description = Wimbledon city, ND +station = ('kjms', 0.0048082154191216005) +zone = ('ndz028', 0.005663385092596721) + +[fips3886780] +centroid = (0.82279142374240632, -1.7502711343180588) +description = Wing city, ND +station = ('kbis', 0.0083793195840601003) +zone = ('ndz035', 0.0036294912613272978) + +[fips3887020] +centroid = (0.80731277928487688, -1.7375534960174293) +description = Wishek city, ND +station = ('k7l2', 0.0083648863890682275) +zone = ('ndz050', 0.0028575115439888965) + +[fips3887180] +centroid = (0.84644634233358351, -1.7401679468770395) +description = Wolford city, ND +station = ('krug', 0.0041525564929968733) +zone = ('ndz005', 0.0050457505385625885) + +[fips3887580] +centroid = (0.82278606558160272, -1.7331843958476196) +description = Woodworth city, ND +station = ('k46d', 0.0056871716579972101) +zone = ('ndz037', 0.0049950108825207971) + +[fips3887740] +centroid = (0.80745909023607154, -1.6952550227163266) +description = Wyndmere city, ND +station = ('kbwp', 0.0063303319291767258) +zone = ('ndz053', 0.0022039819854969868) + +[fips3887860] +centroid = (0.84322231777942203, -1.7378866619183426) +description = York city, ND +station = ('krug', 0.0054015148705842337) +zone = ('ndz014', 0.0048914792808442175) + +[fips3888020] +centroid = (0.81652364969252178, -1.7202137546186209) +description = Ypsilanti CDP, ND +station = ('kjms', 0.0029055568011789349) +zone = ('ndz048', 0.0057059704757615346) + +[fips3888140] +centroid = (0.82528055996172311, -1.7789044649742096) +description = Zap city, ND +station = ('khze', 0.0040602796549666902) +zone = ('ndz019', 0.0011698441437214835) + +[fips3888180] +centroid = (0.80237939671460468, -1.7424038009153069) +description = Zeeland city, ND +station = ('k7l2', 0.0066091248245527231) +zone = ('sdz004', 0.0044175218845246191) + +[fips39001] +centroid = (0.67791522045932362, -1.4568991592293525) +description = Adams County, OH +station = ('kiln', 0.011142154884154362) +zone = ('ohz081', 7.6110746688081958e-05) + +[fips3900108350] +centroid = (0.68081897709574413, -1.4562736332254378) +description = Bratton township, OH +station = ('kiln', 0.0087666728785237239) +zone = ('ohz081', 0.0028702468067381072) + +[fips3900109722] +centroid = (0.67695782009814209, -1.4558961185082315) +description = Brush Creek township, OH +station = ('kiln', 0.012327743324041969) +zone = ('ohz081', 0.0012733110614878292) + +[fips3900128196] +centroid = (0.68034677826661705, -1.4545077265415625) +description = Franklin township, OH +station = ('kiln', 0.009936623251446515) +zone = ('ohz081', 0.0029882712405574609) + +[fips3900131668] +centroid = (0.67499964794386702, -1.4548856077779118) +description = Green township, OH +station = ('khts', 0.012282794754431286) +zone = ('kyz100', 0.0025084601482889624) + +[fips3900138486] +centroid = (0.67701758017173042, -1.4538480269908938) +description = Jefferson township, OH +station = ('kiln', 0.012997386598810133) +zone = ('ohz081', 0.0025393629142369122) + +[fips3900142] +centroid = (0.67494842253032106, -1.4620766435488086) +description = Aberdeen village, OH +station = ('kiob', 0.01110565882809247) +zone = ('kyz099', 0.0015192688005818591) + +[fips3900143036] +centroid = (0.67726705753501049, -1.4596549119452038) +description = Liberty township, OH +station = ('kiln', 0.0111639522568795) +zone = ('ohz081', 0.0022919223517492773) + +[fips3900147026] +centroid = (0.67535574747115146, -1.4590622155845192) +description = Manchester township, OH +station = ('kiob', 0.012309765964315425) +zone = ('ohz081', 0.0031400025882554628) + +[fips3900148888] +centroid = (0.67900156574564252, -1.4551133906985894) +description = Meigs township, OH +station = ('kiln', 0.010787802510347087) +zone = ('ohz081', 0.0016983067486896991) + +[fips3900151268] +centroid = (0.67573519950382754, -1.4576271186070671) +description = Monroe township, OH +station = ('kiln', 0.013020712494985069) +zone = ('ohz081', 0.0023280255519120695) + +[fips3900158366] +centroid = (0.67885926905172744, -1.4573196963126205) +description = Oliver township, OH +station = ('kiln', 0.010144290482331023) +zone = ('ohz081', 0.00094398939419209488) + +[fips3900171052] +centroid = (0.6803158161256867, -1.4583147783323527) +description = Scott township, OH +station = ('kiln', 0.0085046218744503216) +zone = ('ohz081', 0.0025904034102188548) + +[fips3900174069] +centroid = (0.67554717518351015, -1.4599497329624507) +description = Sprigg township, OH +station = ('kiob', 0.012205810101260152) +zone = ('kyz099', 0.0030712146268773726) + +[fips3900176768] +centroid = (0.6775625243240806, -1.4573407275301071) +description = Tiffin township, OH +station = ('kiln', 0.011349486780865012) +zone = ('ohz081', 0.00056418578037412831) + +[fips3900182012] +centroid = (0.67869021646037919, -1.4592643421651927) +description = Wayne township, OH +station = ('kiln', 0.0098361182404359086) +zone = ('ohz081', 0.0019994582622952003) + +[fips3900185890] +centroid = (0.68008866152353953, -1.4597677823879305) +description = Winchester township, OH +station = ('kiln', 0.0083847706471214065) +zone = ('ohz081', 0.0030886312419085506) + +[fips3900198] +centroid = (0.71153645777157903, -1.4630167826036879) +description = Ada village, OH +station = ('kaoh', 0.0028029243548001901) +zone = ('ohz026', 0.0028702824812300814) + +[fips39003] +centroid = (0.71159740466905874, -1.4679361501800665) +description = Allen County, OH +station = ('kaoh', 0.0017237641442539118) +zone = ('ohz025', 1.1192865166667268e-05) + +[fips3900301602] +centroid = (0.71095749715210743, -1.4708333967383773) +description = Amanda township, OH +station = ('kaoh', 0.0034391509659460842) +zone = ('ohz025', 0.0022967354881560553) + +[fips3900301756] +centroid = (0.71155982773026316, -1.4691870451082636) +description = American township, OH +station = ('kaoh', 0.0024557617600695532) +zone = ('ohz025', 0.00095924248614302592) + +[fips3900302988] +centroid = (0.71027077990461773, -1.4648208596383046) +description = Auglaize township, OH +station = ('kaoh', 0.001175176582515237) +zone = ('ohz025', 0.0026978623812572828) + +[fips3900304206] +centroid = (0.71177956468308923, -1.4668203786425593) +description = Bath township, OH +station = ('kaoh', 0.00147114222172262) +zone = ('ohz025', 0.00085352012888277899) + +[fips3900337646] +centroid = (0.71176362982701857, -1.4646906929826908) +description = Jackson township, OH +station = ('kaoh', 0.001901362867197423) +zone = ('ohz025', 0.002452164765365198) + +[fips3900343554] +centroid = (0.71105898804811085, -1.4680329286870899) +description = Lima city, OH +station = ('kaoh', 0.0014482347258141391) +zone = ('ohz025', 0.00054452337526383269) + +[fips3900347656] +centroid = (0.71227602358881903, -1.4711867037388584) +description = Marion township, OH +station = ('kaoh', 0.0041279883876552325) +zone = ('ohz025', 0.0025637461978883533) + +[fips3900351282] +centroid = (0.7132175763603924, -1.4671397215357966) +description = Monroe township, OH +station = ('kaoh', 0.0029275649067292422) +zone = ('ohz025', 0.0017252470813765223) + +[fips3900361742] +centroid = (0.70991464547074834, -1.4667995568645831) +description = Perry township, OH +station = ('kaoh', 0.0005440793897579715) +zone = ('ohz025', 0.0018849061129273489) + +[fips3900366614] +centroid = (0.71330498244933238, -1.4649693697043566) +description = Richland township, OH +station = ('kaoh', 0.0031398109334649549) +zone = ('ohz025', 0.0028121379359350228) + +[fips3900371955] +centroid = (0.71019770296883666, -1.4690526198492748) +description = Shawnee township, OH +station = ('kaoh', 0.0020414587726122241) +zone = ('ohz025', 0.0016409231989726572) + +[fips3900373982] +centroid = (0.71091553943688957, -1.4725680445753493) +description = Spencer township, OH +station = ('kaoh', 0.0047337507788323321) +zone = ('ohz025', 0.0035853812379153453) + +[fips3900375199] +centroid = (0.71251644269328129, -1.4691107742199514) +description = Sugar Creek township, OH +station = ('kaoh', 0.0030025460881332121) +zone = ('ohz025', 0.0012869473831779782) + +[fips3900380] +centroid = (0.69933480861100905, -1.42912180785155) +description = Adamsville village, OH +station = ('kzzv', 0.0020886930057965559) +zone = ('ohz057', 0.0019865877578634978) + +[fips3900436] +centroid = (0.68308945846637104, -1.4785187970199016) +description = Addyston village, OH +station = ('kcvg', 0.0016609078135367051) +zone = ('ohz077', 0.002511640512792148) + +[fips3900450] +centroid = (0.68878581171915254, -1.4441924117832554) +description = Adelphi village, OH +station = ('klhq', 0.0050958483552068293) +zone = ('ohz074', 0.0036415845804070265) + +[fips3900464] +centroid = (0.70191318351498022, -1.411556151034363) +description = Adena village, OH +station = ('khlg', 0.0031396184436469935) +zone = ('ohz050', 0.0033141844709378039) + +[fips39005] +centroid = (0.71284960859419455, -1.4358844874641299) +description = Ashland County, OH +station = ('kmfd', 0.0032888534811413785) +zone = ('ohz030', 4.9911914883990544e-05) + +[fips3900502568] +centroid = (0.71326513658250934, -1.4367071658603499) +description = Ashland city, OH +station = ('kmfd', 0.0027760878397282613) +zone = ('ohz030', 0.00071541993147689737) + +[fips3900515672] +centroid = (0.71461233877883124, -1.4377308014666446) +description = Clear Creek township, OH +station = ('kmfd', 0.002900039238557351) +zone = ('ohz030', 0.0022050673448303897) + +[fips3900531682] +centroid = (0.71018873197648158, -1.4359482443417053) +description = Green township, OH +station = ('kmfd', 0.0038906685680583884) +zone = ('ohz030', 0.0027105042045863456) + +[fips3900533236] +centroid = (0.70854737198802853, -1.4360565594750838) +description = Hanover township, OH +station = ('kmfd', 0.0049533218559979098) +zone = ('ohz047', 0.0039334349122138196) + +[fips3900537660] +centroid = (0.71464115416478169, -1.4342429878493366) +description = Jackson township, OH +station = ('kmfd', 0.0050288568665457899) +zone = ('ohz030', 0.0021433518642728607) + +[fips3900541272] +centroid = (0.7103415180992011, -1.4342098091402564) +description = Lake township, OH +station = ('kmfd', 0.004967799599573287) +zone = ('ohz030', 0.0028580182423874178) + +[fips3900550050] +centroid = (0.7116382977334329, -1.4374891780849985) +description = Mifflin township, OH +station = ('kmfd', 0.002175048795122102) +zone = ('ohz030', 0.0017452313038274047) + +[fips3900550610] +centroid = (0.71313483030055547, -1.437739283766809) +description = Milton township, OH +station = ('kmfd', 0.0019981732283476951) +zone = ('ohz030', 0.0014151098379152835) + +[fips3900551086] +centroid = (0.7114500988801904, -1.4342879649841604) +description = Mohican township, OH +station = ('kmfd', 0.0045634509406665622) +zone = ('ohz030', 0.0018915802494855218) + +[fips3900551688] +centroid = (0.71357266359671068, -1.4356935309906691) +description = Montgomery township, OH +station = ('kmfd', 0.0036007558058974974) +zone = ('ohz030', 0.00069067710507761165) + +[fips3900558562] +centroid = (0.71452292556125163, -1.4361716115793755) +description = Orange township, OH +station = ('kmfd', 0.0037134621224108274) +zone = ('ohz030', 0.0016374395958145109) + +[fips3900561756] +centroid = (0.71311170468796647, -1.4341689858890521) +description = Perry township, OH +station = ('kmfd', 0.0046110142283368296) +zone = ('ohz030', 0.0013224769328652347) + +[fips3900568966] +centroid = (0.71602263462761273, -1.4378246478205241) +description = Ruggles township, OH +station = ('kmfd', 0.0040519728437217583) +zone = ('ohz030', 0.0034472358115323716) + +[fips3900575357] +centroid = (0.7160954148574209, -1.4350328540556192) +description = Sullivan township, OH +station = ('kmfd', 0.0053791336493633282) +zone = ('ohz030', 0.0032620967706796841) + +[fips3900577532] +centroid = (0.71611792960477161, -1.4364654377589487) +description = Troy township, OH +station = ('kmfd', 0.0046735802185572045) +zone = ('ohz030', 0.0032477534754612675) + +[fips3900579758] +centroid = (0.71146563231053306, -1.4360027160676598) +description = Vermillion township, OH +station = ('kmfd', 0.003299091944115293) +zone = ('ohz030', 0.0014356340190632931) + +[fips39007] +centroid = (0.73140891626112658, -1.4092772920833267) +description = Ashtabula County, OH +station = ('khzy', 0.0022324899586029343) +zone = ('ohz089', 0.00070970105612204644) + +[fips3900700000] +centroid = (0.73475874414777176, -1.4097117219874407) +description = County subdivisions not defined, OH +station = ('khzy', 0.0055776792552565619) +zone = ('ohz089', 0.0038856232433715169) + +[fips3900702064] +centroid = (0.72618621046075127, -1.4062132269551104) +description = Andover township, OH +station = ('khzy', 0.0035063877254870963) +zone = ('ohz014', 0.0025834328786299159) + +[fips3900702652] +centroid = (0.73099049102625346, -1.4096362888571694) +description = Ashtabula township, OH +station = ('khzy', 0.0019357794844720819) +zone = ('ohz089', 0.00023166079315127951) + +[fips3900703156] +centroid = (0.72871826432637465, -1.4113108973678727) +description = Austinburg township, OH +station = ('khzy', 0.0021784936015287631) +zone = ('ohz014', 0.0020069750389984215) + +[fips3900713890] +centroid = (0.72618928224023482, -1.4079237717951127) +description = Cherry Valley township, OH +station = ('khzy', 0.00309551758879435) +zone = ('ohz014', 0.0015920293851380441) + +[fips3900716560] +centroid = (0.72475228285389781, -1.4092905914922269) +description = Colebrook township, OH +station = ('khzy', 0.0045449197316138387) +zone = ('ohz014', 0.0026943341283821535) + +[fips3900718350] +centroid = (0.73176941401812601, -1.4061835389045341) +description = Conneaut city, OH +station = ('khzy', 0.0030399119352964533) +zone = ('ohz089', 0.0029115886646758908) + +[fips3900721672] +centroid = (0.7285830536692226, -1.4080541478902366) +description = Denmark township, OH +station = ('khzy', 0.00074503868698267361) +zone = ('ohz014', 0.0014367919063044538) + +[fips3900722344] +centroid = (0.7274414163522005, -1.4078873467736235) +description = Dorset township, OH +station = ('khzy', 0.0018685492828493283) +zone = ('ohz014', 0.0010037025927658826) + +[fips3900729624] +centroid = (0.729909765700126, -1.4128099606624109) +description = Geneva township, OH +station = ('khzy', 0.0032926574577521969) +zone = ('ohz089', 0.0023686744355754267) + +[fips3900733642] +centroid = (0.72875365960360494, -1.413365516416613) +description = Harpersfield township, OH +station = ('khzy', 0.0036778422064494185) +zone = ('ohz089', 0.0033390266300673092) + +[fips3900734300] +centroid = (0.72628520553592435, -1.4130486867974985) +description = Hartsgrove township, OH +station = ('khzy', 0.0045236059534210235) +zone = ('ohz013', 0.0034572065436464295) + +[fips3900738514] +centroid = (0.72873489731414609, -1.4095442052858342) +description = Jefferson township, OH +station = ('khzy', 0.00094946896715689783) +zone = ('ohz014', 0.0013096559336150458) + +[fips3900740404] +centroid = (0.73105896029280915, -1.4078201166908366) +description = Kingsville township, OH +station = ('khzy', 0.0018682202636837377) +zone = ('ohz089', 0.0015642347671348201) + +[fips3900742742] +centroid = (0.72749250213940653, -1.4098097920381101) +description = Lenox township, OH +station = ('khzy', 0.0020239263003230196) +zone = ('ohz014', 0.00043459667442569952) + +[fips3900751296] +centroid = (0.73022425657804291, -1.4064521276231234) +description = Monroe township, OH +station = ('khzy', 0.0017950545455263519) +zone = ('ohz089', 0.0026541648214546899) + +[fips3900752066] +centroid = (0.72742511497698703, -1.4112592181687214) +description = Morgan township, OH +station = ('khzy', 0.0027666657598520387) +zone = ('ohz014', 0.0015148391807180272) + +[fips3900754964] +centroid = (0.7262127045587965, -1.4094610578002691) +description = New Lyme township, OH +station = ('khzy', 0.0031308124224230082) +zone = ('ohz014', 0.0012454484387792197) + +[fips3900756700] +centroid = (0.7317362702156307, -1.4080566960709446) +description = North Kingsville village, OH +station = ('khzy', 0.0024995634167166983) +zone = ('ohz089', 0.0016236607144795602) + +[fips3900758870] +centroid = (0.72503455495382285, -1.4112206987521299) +description = Orwell township, OH +station = ('khzy', 0.0046922213975937165) +zone = ('ohz014', 0.0028335379702706209) + +[fips3900762568] +centroid = (0.72874215788383434, -1.4062316750853041) +description = Pierpont township, OH +station = ('khzy', 0.0017545746192589051) +zone = ('ohz014', 0.0025869640830434963) + +[fips3900763772] +centroid = (0.72990447735249242, -1.4094141084433904) +description = Plymouth township, OH +station = ('khzy', 0.00095063871872812103) +zone = ('ohz089', 0.001038327179861235) + +[fips3900766796] +centroid = (0.7274264065206334, -1.4061857903792692) +description = Richmond township, OH +station = ('khzy', 0.0025066468675349987) +zone = ('ohz014', 0.0022746450037213176) + +[fips3900768224] +centroid = (0.72627991718829088, -1.4111871535239067) +description = Rome township, OH +station = ('khzy', 0.0035979274448494744) +zone = ('ohz014', 0.0018699316786347452) + +[fips3900770646] +centroid = (0.73022495470974369, -1.4111452656218586) +description = Saybrook township, OH +station = ('khzy', 0.0022094618918670943) +zone = ('ohz089', 0.0011290278582085371) + +[fips3900772053] +centroid = (0.7300573158350897, -1.4080568706038696) +description = Sheffield township, OH +station = ('khzy', 0.00086065896395641072) +zone = ('ohz089', 0.0016026091188459748) + +[fips3900777686] +centroid = (0.72762460611048985, -1.4128117234449553) +description = Trumbull township, OH +station = ('khzy', 0.0036206049816976706) +zone = ('ohz014', 0.0026799335096995298) + +[fips3900782040] +centroid = (0.72497275284500962, -1.4077336007198153) +description = Wayne township, OH +station = ('khzy', 0.0043201942663120092) +zone = ('ohz014', 0.0027151477886245604) + +[fips3900785372] +centroid = (0.72497889640397672, -1.4060518363591785) +description = Williamsfield township, OH +station = ('khzy', 0.0046467910464873243) +zone = ('ohz014', 0.003426203214912982) + +[fips3900785988] +centroid = (0.72503677152197288, -1.4129100727483053) +description = Windsor township, OH +station = ('khzy', 0.0053626462347544351) +zone = ('ohz013', 0.003028075891244222) + +[fips39009] +centroid = (0.68650515507898657, -1.4319729777176078) +description = Athens County, OH +station = ('kuni', 0.0032943170153468425) +zone = ('ohz075', 1.1209318653843321e-05) + +[fips3900901112] +centroid = (0.68486044405836966, -1.4335011181974842) +description = Alexander township, OH +station = ('kuni', 0.0014025692022602259) +zone = ('ohz075', 0.002030134878567368) + +[fips3900901770] +centroid = (0.68780610605013059, -1.4312588238942767) +description = Ames township, OH +station = ('kuni', 0.0046058439376047674) +zone = ('ohz075', 0.0014114086468571944) + +[fips3900902750] +centroid = (0.6864206636898974, -1.4333289938266522) +description = Athens township, OH +station = ('kuni', 0.0025252976234187725) +zone = ('ohz075', 0.0010629381702411251) + +[fips3900905942] +centroid = (0.6877199915048372, -1.4291623169434886) +description = Bern township, OH +station = ('kuni', 0.0057542545767847912) +zone = ('ohz075', 0.0024811715548297784) + +[fips3900911220] +centroid = (0.68615160373241013, -1.4311703531544933) +description = Canaan township, OH +station = ('kuni', 0.0035954575206712989) +zone = ('ohz075', 0.00070374661729878673) + +[fips3900912336] +centroid = (0.68481731697255288, -1.4293730305440819) +description = Carthage township, OH +station = ('kuni', 0.0045267090971354614) +zone = ('ohz075', 0.0026164618547137356) + +[fips3900922414] +centroid = (0.68847358976926321, -1.4333333746030748) +description = Dover township, OH +station = ('kuni', 0.0043711059047221845) +zone = ('ohz075', 0.0022390467540841694) + +[fips3900942420] +centroid = (0.68486864710585404, -1.4349906869008908) +description = Lee township, OH +station = ('kuni', 0.00054603801239803192) +zone = ('ohz075', 0.0028593929782999212) + +[fips3900944590] +centroid = (0.68472052101223735, -1.4314768155178508) +description = Lodi township, OH +station = ('kuni', 0.0028968260224509867) +zone = ('ohz075', 0.0018206953180424674) + +[fips3900968238] +centroid = (0.68620031587183317, -1.4295900273299824) +description = Rome township, OH +station = ('kuni', 0.0047124901736380412) +zone = ('ohz075', 0.0018572145217764292) + +[fips3900977420] +centroid = (0.6895070864858317, -1.4330141713361777) +description = Trimble township, OH +station = ('kuni', 0.0054292652869431714) +zone = ('ohz075', 0.0031131508083680403) + +[fips3900977546] +centroid = (0.68464623979927242, -1.4272631718245161) +description = Troy township, OH +station = ('kpkb', 0.0047788978293539881) +zone = ('ohz075', 0.0040813292558660513) + +[fips3900981777] +centroid = (0.68653997439756376, -1.4351414484416782) +description = Waterloo township, OH +station = ('kuni', 0.0021966245366274893) +zone = ('ohz075', 0.0024618628817501928) + +[fips3900986982] +centroid = (0.68819601260502605, -1.4352989644066709) +description = York township, OH +station = ('kuni', 0.0038534350366030774) +zone = ('ohz075', 0.0030875048264705153) + +[fips3901000] +centroid = (0.71698921542065963, -1.4228173644340809) +description = Akron city, OH +station = ('kakr', 0.0010935569131285451) +zone = ('ohz021', 0.00080546535641534862) + +[fips3901042] +centroid = (0.68459819088496499, -1.4346300146109663) +description = Albany village, OH +station = ('kuni', 0.00049919281215723868) +zone = ('ohz075', 0.0028110214360380836) + +[fips39011] +centroid = (0.70792839096880866, -1.4699864233589695) +description = Auglaize County, OH +station = ('kaoh', 0.0036609701778125107) +zone = ('ohz035', 3.1553566841793997e-05) + +[fips3901115448] +centroid = (0.70734150655453309, -1.4671343459217006) +description = Clay township, OH +station = ('kaoh', 0.0030633238012671518) +zone = ('ohz035', 0.0022138194374061062) + +[fips3901122722] +centroid = (0.70860985477524996, -1.4690415021019396) +description = Duchouquet township, OH +station = ('kaoh', 0.002672202373330147) +zone = ('ohz035', 0.00097265090793541037) + +[fips3901129848] +centroid = (0.70588253347291352, -1.473005755698457) +description = German township, OH +station = ('kves', 0.0046130933618382455) +zone = ('ohz035', 0.0030934468841724238) + +[fips3901130954] +centroid = (0.70785897922445695, -1.4649813426630254) +description = Goshen township, OH +station = ('kaoh', 0.0027031291397456164) +zone = ('ohz044', 0.0037234987264522165) + +[fips3901137674] +centroid = (0.70510434351932683, -1.4730857266847834) +description = Jackson township, OH +station = ('kves', 0.003878868270590731) +zone = ('ohz043', 0.0028728501251571044) + +[fips3901144618] +centroid = (0.70946752702297244, -1.4709748207676663) +description = Logan township, OH +station = ('kaoh', 0.003603787065872876) +zone = ('ohz035', 0.001732371400524191) + +[fips3901152472] +centroid = (0.70834233070750419, -1.4711207302931331) +description = Moulton township, OH +station = ('kaoh', 0.0041273707592969222) +zone = ('ohz035', 0.00098668669396430775) + +[fips3901154] +centroid = (0.69970801236496305, -1.441859273092482) +description = Alexandria village, OH +station = ('kvta', 0.0023335572337976791) +zone = ('ohz056', 0.0017219679158213968) + +[fips3901155986] +centroid = (0.70839271836300921, -1.4730269614488689) +description = Noble township, OH +station = ('kaoh', 0.0054185079191256301) +zone = ('ohz035', 0.0023872250946771977) + +[fips3901165018] +centroid = (0.7072104323277083, -1.468927043409594) +description = Pusheta township, OH +station = ('kaoh', 0.0036913908150454757) +zone = ('ohz035', 0.0010511172630238749) + +[fips3901169694] +centroid = (0.70714407490954745, -1.47310897447042) +description = St. Marys township, OH +station = ('kves', 0.0057745552881894322) +zone = ('ohz034', 0.0030312505715803192) + +[fips3901169806] +centroid = (0.70957444589294949, -1.4730181300828538) +description = Salem township, OH +station = ('kaoh', 0.0051029032900098831) +zone = ('ohz035', 0.0028588015573066633) + +[fips3901178204] +centroid = (0.70860704479515413, -1.4669633385615901) +description = Union township, OH +station = ('kaoh', 0.001799671205374183) +zone = ('ohz035', 0.0023668153549399858) + +[fips3901181074] +centroid = (0.70720352082387039, -1.4709593222439086) +description = Washington township, OH +station = ('kaoh', 0.0046953067231966135) +zone = ('ohz035', 0.001052705978186069) + +[fips3901182054] +centroid = (0.70874087664219709, -1.4650661307580872) +description = Wayne township, OH +station = ('kaoh', 0.0018869999163892567) +zone = ('ohz025', 0.0035838777825944099) + +[fips3901210] +centroid = (0.71051374718978788, -1.4633543990941937) +description = Alger village, OH +station = ('kaoh', 0.0022900758262228496) +zone = ('ohz026', 0.0025828345110612038) + +[fips39013] +centroid = (0.69844030991606942, -1.4131534240059107) +description = Belmont County, OH +station = ('khlg', 0.0049757630930285339) +zone = ('ohz059', 0.0002796029602806136) + +[fips3901316602] +centroid = (0.70012050348037935, -1.4108191508511236) +description = Colerain township, OH +station = ('khlg', 0.0026215526622762036) +zone = ('ohz059', 0.0026822196081387867) + +[fips3901327566] +centroid = (0.70047607940888823, -1.4157464596755989) +description = Flushing township, OH +station = ('kphd', 0.0070449451500204929) +zone = ('ohz059', 0.0026818315645846884) + +[fips3901330968] +centroid = (0.69795311870866772, -1.4148778965733437) +description = Goshen township, OH +station = ('khlg', 0.006362023885954392) +zone = ('ohz059', 0.0011378878841321203) + +[fips3901340600] +centroid = (0.69965121935110319, -1.4171269278474636) +description = Kirkwood township, OH +station = ('kphd', 0.0072509666336306481) +zone = ('ohz059', 0.0030309993170573334) + +[fips3901348580] +centroid = (0.69714782379179752, -1.4102095247966944) +description = Mead township, OH +station = ('khlg', 0.0043724819512421633) +zone = ('wvz004', 0.0023235395889507865) + +[fips3901361378] +centroid = (0.69994439975885303, -1.4096518921006822) +description = Pease township, OH +station = ('khlg', 0.0019087312262591968) +zone = ('wvz003', 0.001982296434793657) + +[fips3901364962] +centroid = (0.69843392201100718, -1.409940133226649) +description = Pultney township, OH +station = ('khlg', 0.0031587345792301017) +zone = ('ohz059', 0.0027387213566471753) + +[fips3901366628] +centroid = (0.6991409025311125, -1.4120887033490241) +description = Richland township, OH +station = ('khlg', 0.0039180726504086183) +zone = ('ohz059', 0.0013160839141287699) + +[fips3901372736] +centroid = (0.69786958725066739, -1.4130142689046494) +description = Smith township, OH +station = ('khlg', 0.0052123248371623177) +zone = ('ohz059', 0.00066107564819750783) + +[fips3901372970] +centroid = (0.69647817586439231, -1.4169172614444216) +description = Somerset township, OH +station = ('khlg', 0.0084626623435816745) +zone = ('ohz059', 0.0032432672194855025) + +[fips3901378218] +centroid = (0.69957798533568949, -1.4147949061674117) +description = Union township, OH +station = ('khlg', 0.0056866840852855104) +zone = ('ohz059', 0.0015259664539519725) + +[fips3901380864] +centroid = (0.69805356240712002, -1.4167966591931087) +description = Warren township, OH +station = ('kphd', 0.0088238982324164335) +zone = ('ohz059', 0.0025377340141299813) + +[fips3901381088] +centroid = (0.69640839760089768, -1.4129535314466797) +description = Washington township, OH +station = ('khlg', 0.006181295329150965) +zone = ('ohz059', 0.002045025350573171) + +[fips3901382068] +centroid = (0.69645279877706845, -1.4149779213927758) +description = Wayne township, OH +station = ('khlg', 0.0072724173671790144) +zone = ('ohz059', 0.0022530840165660006) + +[fips3901384602] +centroid = (0.70047803417765042, -1.4129635845431714) +description = Wheeling township, OH +station = ('khlg', 0.0041319950644940319) +zone = ('ohz059', 0.0021132761833977504) + +[fips3901386996] +centroid = (0.69613488705381754, -1.4111338162619655) +description = York township, OH +station = ('khlg', 0.0055995607248967849) +zone = ('ohz059', 0.0029153833995549596) + +[fips3901420] +centroid = (0.71401541872135654, -1.4158074414796635) +description = Alliance city, OH +station = ('kpov', 0.0056741847077930851) +zone = ('ohz032', 0.0036573706573392369) + +[fips39015] +centroid = (0.67948071098519236, -1.4637513044193897) +description = Brown County, OH +station = ('kiln', 0.0088332135806679438) +zone = ('ohz079', 5.5332748947269807e-05) + +[fips3901510758] +centroid = (0.6773017546805401, -1.4613665912492197) +description = Byrd township, OH +station = ('kiln', 0.010963434095629934) +zone = ('ohz079', 0.0029137570893489695) + +[fips3901515224] +centroid = (0.67949397548750756, -1.4659565628358695) +description = Clark township, OH +station = ('kluk', 0.0064475924697447919) +zone = ('ohz079', 0.0016992098493001761) + +[fips3901523072] +centroid = (0.68044240485633378, -1.4612812271955047) +description = Eagle township, OH +station = ('kiln', 0.0078385555842130344) +zone = ('ohz079', 0.0021399714987841989) + +[fips3901528210] +centroid = (0.67929914438310746, -1.4631349763006329) +description = Franklin township, OH +station = ('kiln', 0.0089660310463133032) +zone = ('ohz079', 0.00054869282996432517) + +[fips3901531696] +centroid = (0.68198588678033512, -1.4643871278658913) +description = Green township, OH +station = ('kiln', 0.0064619762312310052) +zone = ('ohz079', 0.002498456596013669) + +[fips3901536834] +centroid = (0.67563920639496788, -1.4614497736413699) +description = Huntington township, OH +station = ('kluk', 0.011479040042831517) +zone = ('kyz099', 0.0023619787622396016) + +[fips3901537688] +centroid = (0.67920046346719976, -1.4613342852047653) +description = Jackson township, OH +station = ('kiln', 0.0090716633628356198) +zone = ('ohz079', 0.0019260502445112341) + +[fips3901538528] +centroid = (0.6779791169632392, -1.462650664886497) +description = Jefferson township, OH +station = ('kiln', 0.010266091063422517) +zone = ('ohz079', 0.001782917366951879) + +[fips3901542910] +centroid = (0.67775396948973188, -1.4659306446964777) +description = Lewis township, OH +station = ('kluk', 0.0074211265824848226) +zone = ('ohz079', 0.0024470903182098021) + +[fips3901561770] +centroid = (0.68401088759166895, -1.4648833075189407) +description = Perry township, OH +station = ('kiln', 0.0046806370157713682) +zone = ('ohz078', 0.0038960032747719637) + +[fips3901562596] +centroid = (0.68069615827628127, -1.4652008178164635) +description = Pike township, OH +station = ('kiln', 0.0078740322846860018) +zone = ('ohz079', 0.0016076936127283812) + +[fips3901563212] +centroid = (0.67790790752975782, -1.4643389567785363) +description = Pleasant township, OH +station = ('kluk', 0.0083342832192415568) +zone = ('ohz079', 0.0016842521961711633) + +[fips3901571066] +centroid = (0.67980045530415778, -1.4644705546041368) +description = Scott township, OH +station = ('kiln', 0.0086077992695713212) +zone = ('ohz079', 0.00060486152569343306) + +[fips3901574559] +centroid = (0.68210938627820616, -1.4656434158614768) +description = Sterling township, OH +station = ('kiln', 0.0066576868656865939) +zone = ('ohz079', 0.0029577603588639674) + +[fips3901578232] +centroid = (0.67682049759259522, -1.4630969979361097) +description = Union township, OH +station = ('kluk', 0.0097457318146846692) +zone = ('ohz079', 0.0027635354524372289) + +[fips3901581102] +centroid = (0.68048799285639594, -1.4629043135866895) +description = Washington township, OH +station = ('kiln', 0.0077678674409960057) +zone = ('ohz079', 0.0011692223052515269) + +[fips3901588] +centroid = (0.72716731239317489, -1.4736564842567705) +description = Alvordton CDP, OH +station = ('kjym', 0.0049121086629525948) +zone = ('ohz001', 0.0026990610980243152) + +[fips3901630] +centroid = (0.69202589330243236, -1.4441230000389038) +description = Amanda village, OH +station = ('klhq', 0.0020158820021252515) +zone = ('ohz065', 0.0023199798941944778) + +[fips3901672] +centroid = (0.68422702916623601, -1.4735522531938416) +description = Amberley village, OH +station = ('kluk', 0.0018101819783906559) +zone = ('ohz077', 0.0015517918075173638) + +[fips39017] +centroid = (0.68835637345669931, -1.4759446109061354) +description = Butler County, OH +station = ('khao', 0.0014374484960681816) +zone = ('ohz070', 0.00013810035569478208) + +[fips3901725970] +centroid = (0.68646277848474813, -1.4755487527784903) +description = Fairfield city, OH +station = ('khao', 0.00070854861286614155) +zone = ('ohz070', 0.0019222092901252051) + +[fips3901725984] +centroid = (0.68748301069900153, -1.4752177336325571) +description = Fairfield township, OH +station = ('khao', 0.00041618140882365413) +zone = ('ohz070', 0.0011000545374929237) + +[fips3901733012] +centroid = (0.68756073021059272, -1.4759467925677001) +description = Hamilton city, OH +station = ('khao', 0.00081698775966928183) +zone = ('ohz070', 0.00078431748477293727) + +[fips3901733250] +centroid = (0.688287345684783, -1.4775073612650784) +description = Hanover township, OH +station = ('khao', 0.0022226108342987337) +zone = ('ohz070', 0.0010717511623710332) + +[fips3901742] +centroid = (0.68107772215735241, -1.4698868872317283) +description = Amelia village, OH +station = ('kluk', 0.0030062261012289426) +zone = ('ohz078', 0.00099476192155868877) + +[fips3901742672] +centroid = (0.68849357378919862, -1.4729518948377407) +description = Lemon township, OH +station = ('kmwo', 0.0014374089759481524) +zone = ('ohz070', 0.0024525459789690508) + +[fips3901743050] +centroid = (0.68764689711576366, -1.473247239453763) +description = Liberty township, OH +station = ('khao', 0.0015366890641100824) +zone = ('ohz070', 0.0023237317614021049) + +[fips3901746340] +centroid = (0.69003902793525462, -1.4735060019686637) +description = Madison township, OH +station = ('kmwo', 0.00036280706022920279) +zone = ('ohz070', 0.0026423241387323062) + +[fips3901749840] +centroid = (0.68945699553629947, -1.4725797208280451) +description = Middletown city, OH +station = ('kmwo', 0.00059877576810787316) +zone = ('ohz070', 0.0029555378994696752) + +[fips3901750162] +centroid = (0.68973427599456394, -1.4771112238847532) +description = Milford township, OH +station = ('khao', 0.003079386063155116) +zone = ('ohz070', 0.0015958185159039302) + +[fips3901752080] +centroid = (0.68681151272258911, -1.4791556851172467) +description = Morgan township, OH +station = ('khao', 0.0031516422911816657) +zone = ('ohz070', 0.0027957545930105592) + +[fips3901759241] +centroid = (0.68981061669604615, -1.4793539196136882) +description = Oxford township, OH +station = ('khao', 0.0042765375644105196) +zone = ('inz059', 0.0028416425138513683) + +[fips3901766096] +centroid = (0.68826769327740556, -1.479336955013359) +description = Reily township, OH +station = ('khao', 0.0034877520203353404) +zone = ('ohz070', 0.0024846820646494136) + +[fips3901768616] +centroid = (0.68679086547753798, -1.477374122829981) +description = Ross township, OH +station = ('khao', 0.00178611697100887) +zone = ('ohz070', 0.0018213682136440799) + +[fips3901769498] +centroid = (0.68851052093623544, -1.475444050476663) +description = St. Clair township, OH +station = ('khao', 0.0014578649183611841) +zone = ('ohz070', 0.00055191419641512031) + +[fips3901777322] +centroid = (0.68903980948519528, -1.4741401324457908) +description = Trenton city, OH +station = ('kmwo', 0.0012195575418319949) +zone = ('ohz070', 0.0016846010370824146) + +[fips3901782082] +centroid = (0.68986062037911577, -1.4755715991383991) +description = Wayne township, OH +station = ('kmwo', 0.00194005078419788) +zone = ('ohz070', 0.0015849619201201881) + +[fips3901783150] +centroid = (0.68661626273916854, -1.4733573173696863) +description = West Chester township, OH +station = ('khao', 0.0014201138126715852) +zone = ('ohz070', 0.0027405420886891774) + +[fips3901784] +centroid = (0.6876856783317431, -1.4303838379803744) +description = Amesville village, OH +station = ('kuni', 0.0049966510841285179) +zone = ('ohz075', 0.0016977663219281242) + +[fips3901798] +centroid = (0.72265931892149127, -1.4352143508445341) +description = Amherst city, OH +station = ('klpr', 0.0011550638527975264) +zone = ('ohz010', 0.0021880371880687007) + +[fips39019] +centroid = (0.70825258587736661, -1.415301226183415) +description = Carroll County, OH +station = ('kphd', 0.0047536013916107877) +zone = ('ohz040', 1.5237783466982054e-05) + +[fips3901903030] +centroid = (0.71011237382170678, -1.4144318776829967) +description = Augusta township, OH +station = ('kphd', 0.0062862294096090359) +zone = ('ohz040', 0.0019732576852465491) + +[fips3901909400] +centroid = (0.71011933768542224, -1.4165831181591271) +description = Brown township, OH +station = ('kphd', 0.0050955706144220582) +zone = ('ohz040', 0.0021161026058436391) + +[fips3901912896] +centroid = (0.70822701680382483, -1.4150001045275684) +description = Center township, OH +station = ('kphd', 0.0049526153979886555) +zone = ('ohz040', 0.00021528462925931582) + +[fips3901923226] +centroid = (0.71026416510675261, -1.4129059712245631) +description = East township, OH +station = ('kphd', 0.0073202877399722215) +zone = ('ohz040', 0.0027051928628495348) + +[fips3901928126] +centroid = (0.70857486092374733, -1.4121508196171026) +description = Fox township, OH +station = ('kphd', 0.0070995547890442901) +zone = ('ohz040', 0.0024004095431877015) + +[fips3901933782] +centroid = (0.70869082059924993, -1.4164522882783979) +description = Harrison township, OH +station = ('kphd', 0.0042090449120904781) +zone = ('ohz040', 0.00099287827226533787) + +[fips3901938] +centroid = (0.70636497738474979, -1.4123498395117076) +description = Amsterdam village, OH +station = ('khlg', 0.0064358466117043576) +zone = ('ohz050', 0.0026170443366412) + +[fips3901942434] +centroid = (0.70727275803529699, -1.4135664561733954) +description = Lee township, OH +station = ('kphd', 0.0057317012777437937) +zone = ('ohz040', 0.0016278823504176428) + +[fips3901945038] +centroid = (0.70617552189444577, -1.4133542415896452) +description = Loudon township, OH +station = ('kphd', 0.0058094462090892834) +zone = ('ohz040', 0.0025380499013710391) + +[fips3901951324] +centroid = (0.70755225506171138, -1.4173105539380659) +description = Monroe township, OH +station = ('kphd', 0.0030740890601556998) +zone = ('ohz040', 0.0016905905479503833) + +[fips3901958576] +centroid = (0.70631890069249714, -1.4174155180392809) +description = Orange township, OH +station = ('kphd', 0.0027188499810094449) +zone = ('ohz040', 0.0025198093514894222) + +[fips3901961784] +centroid = (0.70605572249458892, -1.4153062527316609) +description = Perry township, OH +station = ('kphd', 0.0043293061485704717) +zone = ('ohz040', 0.0021919825707563123) + +[fips3901968420] +centroid = (0.70867050496675665, -1.4181536875931195) +description = Rose township, OH +station = ('kphd', 0.0032208670592678954) +zone = ('ohz040', 0.0022210940254625859) + +[fips3901978260] +centroid = (0.70738946820237791, -1.4155750334364678) +description = Union township, OH +station = ('kphd', 0.0042645944501602476) +zone = ('ohz040', 0.00088652320486744545) + +[fips3901981116] +centroid = (0.70884055239577848, -1.4141978988434742) +description = Washington township, OH +station = ('kphd', 0.005762643149948103) +zone = ('ohz040', 0.0010146344763988673) + +[fips3902022] +centroid = (0.68825133954231443, -1.4489542110347642) +description = Andersonville CDP, OH +station = ('klck', 0.0067790346787289756) +zone = ('ohz073', 0.0017572850487112049) + +[fips3902050] +centroid = (0.7261735917302593, -1.4061898046365489) +description = Andover village, OH +station = ('khzy', 0.0035258995171878944) +zone = ('ohz014', 0.002604880053648442) + +[fips3902092] +centroid = (0.70505664367086962, -1.4691483511587469) +description = Anna village, OH +station = ('kaoh', 0.0056986111137140314) +zone = ('ohz043', 0.0012001808867796216) + +[fips39021] +centroid = (0.70044878245938702, -1.4620194316559285) +description = Champaign County, OH +station = ('kedj', 0.004236751301183255) +zone = ('ohz052', 9.2164022923589886e-05) + +[fips3902100212] +centroid = (0.70220920880941107, -1.4653771309775001) +description = Adams township, OH +station = ('kedj', 0.0030597888895145574) +zone = ('ohz052', 0.0030392495870843195) + +[fips3902118126] +centroid = (0.70107748496254041, -1.4634514394006046) +description = Concord township, OH +station = ('kedj', 0.0035745978472093202) +zone = ('ohz052', 0.0011962553858495299) + +[fips3902120] +centroid = (0.70186927103100005, -1.4771458861236979) +description = Ansonia village, OH +station = ('kves', 0.0014110241417527973) +zone = ('ohz042', 0.0014250151311502467) + +[fips3902130982] +centroid = (0.69936215792038792, -1.4582724191914067) +description = Goshen township, OH +station = ('kmrt', 0.0037593645283763022) +zone = ('ohz054', 0.0036948927648772171) + +[fips3902133796] +centroid = (0.70232588406990692, -1.4631765500434157) +description = Harrison township, OH +station = ('kedj', 0.0023114627839218756) +zone = ('ohz052', 0.0019835759316945362) + +[fips3902137702] +centroid = (0.69954985062814734, -1.4656288074556376) +description = Jackson township, OH +station = ('kffo', 0.0044438301743200707) +zone = ('ohz052', 0.002905774376023372) + +[fips3902139228] +centroid = (0.70095415999759447, -1.4654005183894767) +description = Johnson township, OH +station = ('kedj', 0.0041331238968935358) +zone = ('ohz052', 0.0025907750989968606) + +[fips3902146760] +centroid = (0.69943125550547425, -1.4636120795049583) +description = Mad River township, OH +station = ('ksgh', 0.004094960492622807) +zone = ('ohz052', 0.001624768206573896) + +[fips3902148] +centroid = (0.69221595965797467, -1.414884685904134) +description = Antioch village, OH +station = ('kpkb', 0.0077028501616926062) +zone = ('ohz069', 0.0011776896559911121) + +[fips3902169078] +centroid = (0.7011789060453737, -1.4581470172846509) +description = Rush township, OH +station = ('kmrt', 0.0027262661002187354) +zone = ('ohz052', 0.00305532484776996) + +[fips3902169820] +centroid = (0.70129163686175999, -1.4613248429735122) +description = Salem township, OH +station = ('kedj', 0.0035529902186789216) +zone = ('ohz052', 0.00093888651257451603) + +[fips3902178274] +centroid = (0.69925857262928204, -1.4598521690572643) +description = Union township, OH +station = ('ksgh', 0.004716437824344678) +zone = ('ohz052', 0.0021151199891446585) + +[fips3902179086] +centroid = (0.69937561440892071, -1.4616098901469479) +description = Urbana township, OH +station = ('ksgh', 0.0042309108400937438) +zone = ('ohz052', 0.0012101033704075088) + +[fips3902182096] +centroid = (0.70132713685874559, -1.4595171007474665) +description = Wayne township, OH +station = ('kmrt', 0.0037111631739172499) +zone = ('ohz052', 0.0020946594077388184) + +[fips3902204] +centroid = (0.71872965775074849, -1.4789239228458746) +description = Antwerp village, OH +station = ('kdfi', 0.0047881319472086771) +zone = ('ohz015', 0.0023312232169905799) + +[fips3902232] +centroid = (0.71120191306055669, -1.4282331909161894) +description = Apple Creek village, OH +station = ('kbjj', 0.0021660291936800038) +zone = ('ohz031', 0.0015842458616385083) + +[fips3902266] +centroid = (0.70577624292146701, -1.4372807857723102) +description = Apple Valley CDP, OH +station = ('k4i3', 0.0029416939561564453) +zone = ('ohz047', 0.0011705310553076116) + +[fips3902274] +centroid = (0.72512361910555212, -1.4167372307320782) +description = Aquilla village, OH +station = ('kcgf', 0.0040674353113518899) +zone = ('ohz013', 0.00082388811106982385) + +[fips39023] +centroid = (0.69668363602393713, -1.4623010056241526) +description = Clark County, OH +station = ('ksgh', 0.001537422137862601) +zone = ('ohz053', 4.6846795639761596e-06) + +[fips3902306054] +centroid = (0.69655566848318096, -1.4657659554282594) +description = Bethel township, OH +station = ('kffo', 0.0016128306866115658) +zone = ('ohz053', 0.0026629150607757604) + +[fips3902316] +centroid = (0.71746836066020969, -1.4576050576453217) +description = Arcadia village, OH +station = ('kfdy', 0.002557274534403184) +zone = ('ohz017', 0.0027237932134691243) + +[fips3902329862] +centroid = (0.69802785370723819, -1.4638548373506182) +description = German township, OH +station = ('ksgh', 0.0027193022995257673) +zone = ('ohz053', 0.0018005862844890749) + +[fips3902330] +centroid = (0.69800235444686654, -1.4757499543346602) +description = Arcanum village, OH +station = ('kves', 0.0036344472129295302) +zone = ('ohz042', 0.0026050819396255076) + +[fips3902331703] +centroid = (0.69524906264526043, -1.4622599729334382) +description = Green township, OH +station = ('ksgh', 0.00079206063058197274) +zone = ('ohz053', 0.0014308208256634527) + +[fips3902333586] +centroid = (0.69637279288415699, -1.4595636661319098) +description = Harmony township, OH +station = ('ksgh', 0.0030350779052184919) +zone = ('ohz053', 0.0021197086321877901) + +[fips3902344] +centroid = (0.72458508031155677, -1.4713698062306853) +description = Archbold village, OH +station = ('kdfi', 0.0036088763129387366) +zone = ('ohz002', 0.0027157416190826652) + +[fips3902346354] +centroid = (0.69486132029863734, -1.4598046437417327) +description = Madison township, OH +station = ('ksgh', 0.0027153857730996397) +zone = ('ohz053', 0.0026397970237379657) + +[fips3902346788] +centroid = (0.6958674502525346, -1.4647797920410051) +description = Mad River township, OH +station = ('ksgh', 0.0012619102612959267) +zone = ('ohz053', 0.0020701318883136412) + +[fips3902351912] +centroid = (0.69787901202862812, -1.4616083891637912) +description = Moorefield township, OH +station = ('ksgh', 0.0028421947367440054) +zone = ('ohz053', 0.0013107395038237627) + +[fips3902362610] +centroid = (0.69813124701212637, -1.4657201230821022) +description = Pike township, OH +station = ('kffo', 0.0030573915883515732) +zone = ('ohz053', 0.0029980336182556869) + +[fips3902363226] +centroid = (0.69771814503147178, -1.4591801474820767) +description = Pleasant township, OH +station = ('ksgh', 0.0039428740518358367) +zone = ('ohz054', 0.0030947287313923284) + +[fips3902374118] +centroid = (0.69697555979462567, -1.4625118588510859) +description = Springfield city, OH +station = ('ksgh', 0.001735793408354392) +zone = ('ohz053', 0.00033839932454050821) + +[fips3902374119] +centroid = (0.69605807511343731, -1.4617928006525569) +description = Springfield township, OH +station = ('ksgh', 0.0013491394126035052) +zone = ('ohz053', 0.00073242982015176599) + +[fips3902400] +centroid = (0.71373290227533637, -1.4600194763193606) +description = Arlington village, OH +station = ('kfdy', 0.0021505882651464748) +zone = ('ohz017', 0.0018936905391141498) + +[fips3902428] +centroid = (0.68443407757539998, -1.4740265987779484) +description = Arlington Heights village, OH +station = ('kluk', 0.0020779107314085627) +zone = ('ohz077', 0.0012274940152722721) + +[fips39025] +centroid = (0.6815874455653973, -1.4686878285823155) +description = Clermont County, OH +station = ('kluk', 0.0037137264828449785) +zone = ('ohz078', 8.575137820017025e-05) + +[fips3902504157] +centroid = (0.68177103674941464, -1.4690020227542595) +description = Batavia township, OH +station = ('kluk', 0.0034367256431663928) +zone = ('ohz078', 0.00033499336794078446) + +[fips3902528224] +centroid = (0.67768371998733912, -1.4676478392409298) +description = Franklin township, OH +station = ('kluk', 0.0064897206613514329) +zone = ('kyz097', 0.0024367765443248364) + +[fips3902531010] +centroid = (0.68469718596013807, -1.4688774236989597) +description = Goshen township, OH +station = ('kluk', 0.0041457251699637682) +zone = ('ohz078', 0.0031899693544902188) + +[fips3902537716] +centroid = (0.68299430311555231, -1.4667403029364776) +description = Jackson township, OH +station = ('kiln', 0.0062747030321573171) +zone = ('ohz078', 0.0021441979566390094) + +[fips3902545108] +centroid = (0.6852345728368272, -1.4704196489858996) +description = Loveland city, OH +station = ('kluk', 0.0036133278900129036) +zone = ('ohz071', 0.0031122646216749719) + +[fips3902549322] +centroid = (0.68414910021513431, -1.4703353670363206) +description = Miami township, OH +station = ('kluk', 0.0029048232403106416) +zone = ('ohz078', 0.0029179654453625812) + +[fips3902550176] +centroid = (0.68367065310728514, -1.4709566344368605) +description = Milford city, OH +station = ('kluk', 0.0022355256800336773) +zone = ('ohz078', 0.0027656972410852318) + +[fips3902551338] +centroid = (0.67953464165907906, -1.4693980903214148) +description = Monroe township, OH +station = ('kluk', 0.0042153001691508842) +zone = ('ohz078', 0.0020410966873883082) + +[fips3902557960] +centroid = (0.68011683113766686, -1.4704944537976399) +description = Ohio township, OH +station = ('kluk', 0.0031996276462563792) +zone = ('kyz093', 0.0017524057787299883) + +[fips3902562540] +centroid = (0.68109793307009037, -1.4707189729526167) +description = Pierce township, OH +station = ('kluk', 0.0024346067526380875) +zone = ('ohz078', 0.0015965150028478038) + +[fips3902568] +centroid = (0.71326513658250934, -1.4367071658603499) +description = Ashland city, OH +station = ('kmfd', 0.0027760878397282613) +zone = ('ohz030', 0.00071541993147689737) + +[fips3902574825] +centroid = (0.68321177114035081, -1.4686414377307977) +description = Stonelick township, OH +station = ('kluk', 0.0037359974793571204) +zone = ('ohz078', 0.0017040671959674594) + +[fips3902576155] +centroid = (0.67984106911585174, -1.4678482379456437) +description = Tate township, OH +station = ('kluk', 0.004992988639482482) +zone = ('ohz078', 0.001804259408053361) + +[fips3902578288] +centroid = (0.68262774906604839, -1.4707059877029818) +description = Union township, OH +station = ('kluk', 0.0020608794412949934) +zone = ('ohz078', 0.0018965721077396993) + +[fips3902581130] +centroid = (0.67827892962214675, -1.4691504106472641) +description = Washington township, OH +station = ('kluk', 0.0052754634147331265) +zone = ('ohz078', 0.0032465258663128861) + +[fips3902582] +centroid = (0.70528416479215972, -1.4477794648218316) +description = Ashley village, OH +station = ('kdlz', 0.0030637285657146673) +zone = ('ohz046', 0.002399867352028697) + +[fips3902582110] +centroid = (0.6844605891267378, -1.4670638346199201) +description = Wayne township, OH +station = ('kiln', 0.0052824042964815746) +zone = ('ohz078', 0.0032229037094743756) + +[fips3902585302] +centroid = (0.6813837307351045, -1.4670824398297462) +description = Williamsburg township, OH +station = ('kluk', 0.0049749395567202596) +zone = ('ohz078', 0.0012880232618677943) + +[fips3902638] +centroid = (0.73096846497109336, -1.4102125267630079) +description = Ashtabula city, OH +station = ('khzy', 0.0021436136909365236) +zone = ('ohz089', 0.00024587161673933781) + +[fips3902680] +centroid = (0.69319594457967693, -1.4477279252490205) +description = Ashville village, OH +station = ('klck', 0.001748183537254449) +zone = ('ohz064', 0.0016595037308449114) + +[fips39027] +centroid = (0.6879047869660383, -1.4628397189510731) +description = Clinton County, OH +station = ('kiln', 0.00053890267271032577) +zone = ('ohz072', 8.4492771783952546e-05) + +[fips3902700226] +centroid = (0.68847058780294978, -1.4647626529077504) +description = Adams township, OH +station = ('kiln', 0.0019194474086211442) +zone = ('ohz072', 0.001661409517670196) + +[fips3902713974] +centroid = (0.68991718650017286, -1.4647789717362565) +description = Chester township, OH +station = ('kiln', 0.0025462775734605377) +zone = ('ohz072', 0.0025452290257701048) + +[fips3902715238] +centroid = (0.68589463890663893, -1.4625994394729511) +description = Clark township, OH +station = ('kiln', 0.0023586335993152599) +zone = ('ohz072', 0.002029496067846135) + +[fips3902722] +centroid = (0.67211091859230621, -1.4365710650852794) +description = Athalia village, OH +station = ('khts', 0.0041225071317058989) +zone = ('wvz006', 0.0018056876477993828) + +[fips3902731710] +centroid = (0.68708135807823989, -1.4609416733895293) +description = Green township, OH +station = ('kiln', 0.0015619173954732138) +zone = ('ohz072', 0.0016190776508741324) + +[fips3902736] +centroid = (0.68636819909258251, -1.4328805314753523) +description = Athens city, OH +station = ('kuni', 0.0026981368165000645) +zone = ('ohz075', 0.00072546336495752717) + +[fips3902738542] +centroid = (0.68559184173471044, -1.4640867567016231) +description = Jefferson township, OH +station = ('kiln', 0.0029899767290555261) +zone = ('ohz072', 0.0025542378996902338) + +[fips3902743064] +centroid = (0.69006978063667468, -1.4628996011977091) +description = Liberty township, OH +station = ('kiln', 0.0018868812622189026) +zone = ('ohz072', 0.0021521236265018809) + +[fips3902747670] +centroid = (0.68595972223444579, -1.4653881789116654) +description = Marion township, OH +station = ('kiln', 0.0033052585720879111) +zone = ('ohz072', 0.0028398624356365766) + +[fips3902766642] +centroid = (0.68911433504425545, -1.4598187983619664) +description = Richland township, OH +station = ('kiln', 0.002101678686049852) +zone = ('ohz072', 0.0025465736831164353) + +[fips3902778302] +centroid = (0.6892420407856239, -1.4635187392965616) +description = Union township, OH +station = ('kiln', 0.0013761022730530426) +zone = ('ohz072', 0.00145337714491927) + +[fips3902779772] +centroid = (0.68754352126416796, -1.4652357069482111) +description = Vernon township, OH +station = ('kiln', 0.0023767281174356444) +zone = ('ohz072', 0.0019707711773788326) + +[fips3902781144] +centroid = (0.68712790600939067, -1.4633597398017049) +description = Washington township, OH +station = ('kiln', 0.0013845468381510041) +zone = ('ohz072', 0.00092994124262967914) + +[fips3902782124] +centroid = (0.68795463356947528, -1.4596521368716933) +description = Wayne township, OH +station = ('kiln', 0.0020615690411748093) +zone = ('ohz072', 0.0023800016944616415) + +[fips3902785792] +centroid = (0.68834246318256098, -1.4628992521318587) +description = Wilmington city, OH +station = ('kiln', 0.00047746051696891372) +zone = ('ohz072', 0.00044019973153753634) + +[fips3902785820] +centroid = (0.68988943576506612, -1.4607295635255346) +description = Wilson township, OH +station = ('kiln', 0.002043438784677087) +zone = ('ohz072', 0.0025026595774925641) + +[fips3902820] +centroid = (0.71668217709864879, -1.4466492419581178) +description = Attica village, OH +station = ('kmfd', 0.0065030412000761234) +zone = ('ohz018', 0.0033417527575644972) + +[fips3902848] +centroid = (0.71607872950977181, -1.4164579605984666) +description = Atwater CDP, OH +station = ('kpov', 0.0035621069382121601) +zone = ('ohz022', 0.0024853266838811834) + +[fips39029] +centroid = (0.71154389287419251, -1.4098286415940318) +description = Columbiana County, OH +station = ('kbvi', 0.0049865264040364413) +zone = ('ohz041', 4.2946894128465271e-06) + +[fips3902910562] +centroid = (0.71310145960525728, -1.4124045032238801) +description = Butler township, OH +station = ('kpov', 0.0076360299656186926) +zone = ('ohz041', 0.0024910502635342585) + +[fips3902912910] +centroid = (0.71162782575792094, -1.4103045754277581) +description = Center township, OH +station = ('kbvi', 0.0053479314901490925) +zone = ('ohz041', 0.00036607477317978482) + +[fips3902923730] +centroid = (0.70917982694907367, -1.4061634152582585) +description = East Liverpool city, OH +station = ('kbvi', 0.0032152723461077184) +zone = ('wvz001', 0.0019517292344630168) + +[fips3902924906] +centroid = (0.71174861999545136, -1.4081824994034282) +description = Elkrun township, OH +station = ('kbvi', 0.0037468135756244404) +zone = ('ohz041', 0.0012664226388901302) + +[fips3902925998] +centroid = (0.71300248198337668, -1.4084356245048451) +description = Fairfield township, OH +station = ('kbvi', 0.0042019508160934561) +zone = ('ohz041', 0.0017998906550757956) + +[fips3902928238] +centroid = (0.71006989250771313, -1.4116557744280669) +description = Franklin township, OH +station = ('kphd', 0.0080400678067577957) +zone = ('ohz041', 0.0020216919992291677) + +[fips3902933264] +centroid = (0.71145158241005457, -1.4121852549632445) +description = Hanover township, OH +station = ('kphd', 0.0084522751788264124) +zone = ('ohz041', 0.0017838216419921466) + +[fips3902940824] +centroid = (0.71305876885175346, -1.4141789271145051) +description = Knox township, OH +station = ('kpov', 0.0070130992341278803) +zone = ('ohz033', 0.004324680504902566) + +[fips3902944226] +centroid = (0.70939502604584459, -1.4067994655975629) +description = Liverpool township, OH +station = ('kbvi', 0.0034271732275781104) +zone = ('wvz001', 0.0022005972777871343) + +[fips3902946368] +centroid = (0.7101878244052704, -1.4083462811004352) +description = Madison township, OH +station = ('kbvi', 0.0040866697981323781) +zone = ('ohz041', 0.0017650296020852417) + +[fips3902949784] +centroid = (0.71156729773946181, -1.4061159597558968) +description = Middleton township, OH +station = ('kbvi', 0.0021752436991521081) +zone = ('paz020', 0.0032303439087340816) + +[fips3902961798] +centroid = (0.7138462788635459, -1.4112689745592402) +description = Perry township, OH +station = ('kyng', 0.0066097610692006491) +zone = ('ohz033', 0.002283276808750304) + +[fips3902969512] +centroid = (0.71035303727226429, -1.4061890017850929) +description = St. Clair township, OH +station = ('kbvi', 0.0025143646445681942) +zone = ('wvz001', 0.0031236964670438624) + +[fips3902969848] +centroid = (0.71296673764029572, -1.4101814424490298) +description = Salem township, OH +station = ('kbvi', 0.0054480590578763581) +zone = ('ohz041', 0.0014446658510627987) + +[fips3902978890] +centroid = (0.71315114912906152, -1.4061979553241555) +description = Unity township, OH +station = ('kbvi', 0.0027714198490171875) +zone = ('ohz041', 0.003185202645201154) + +[fips3902981158] +centroid = (0.70908959342674549, -1.4101529237690522) +description = Washington township, OH +station = ('kbvi', 0.0057708526676194059) +zone = ('ohz041', 0.0024686274972886618) + +[fips3902982138] +centroid = (0.71018012750326909, -1.4100436487045849) +description = Wayne township, OH +station = ('kbvi', 0.0053217927049316405) +zone = ('ohz041', 0.0013754386069145378) + +[fips3902982740] +centroid = (0.70867369891928778, -1.4076907179800937) +description = Wellsville village, OH +station = ('kbvi', 0.004407433782657553) +zone = ('wvz001', 0.0017979978069986235) + +[fips3902982852] +centroid = (0.71156293441633178, -1.4141958568082496) +description = West township, OH +station = ('kcak', 0.0061415481759164517) +zone = ('ohz040', 0.0034161586646555549) + +[fips3902986912] +centroid = (0.7088615836132649, -1.4084437402858667) +description = Yellow Creek township, OH +station = ('kbvi', 0.0047505601033366873) +zone = ('wvz001', 0.0023159668647947827) + +[fips3903086] +centroid = (0.72084791150401639, -1.4195200535046284) +description = Aurora city, OH +station = ('kpov', 0.0017880945163155431) +zone = ('ohz022', 0.0029437752371644882) + +[fips39031] +centroid = (0.70331044175424939, -1.4299502109277162) +description = Coshocton County, OH +station = ('kzzv', 0.0060647346812807458) +zone = ('ohz048', 0.00015928689655289385) + +[fips3903100240] +centroid = (0.70394115138604252, -1.4253386496182197) +description = Adams township, OH +station = ('kphd', 0.0040530116746039079) +zone = ('ohz039', 0.0031754415060539333) + +[fips3903104864] +centroid = (0.70282806765558314, -1.4319873417773517) +description = Bedford township, OH +station = ('kzzv', 0.00590386233676131) +zone = ('ohz048', 0.0017814476124290918) + +[fips3903106152] +centroid = (0.70427423002049316, -1.430262171078218) +description = Bethlehem township, OH +station = ('kzzv', 0.0070443405670624045) +zone = ('ohz048', 0.00095426952114006014) + +[fips3903115266] +centroid = (0.70526006179518963, -1.4301332959662507) +description = Clark township, OH +station = ('kphd', 0.0070337518166138603) +zone = ('ohz048', 0.0018844756230962365) + +[fips3903118868] +centroid = (0.70273352317000271, -1.4285523418232091) +description = Coshocton city, OH +station = ('kzzv', 0.005514992415109353) +zone = ('ohz048', 0.0011430305534591621) + +[fips3903119218] +centroid = (0.70527243617958635, -1.4269520843386405) +description = Crawford township, OH +station = ('kphd', 0.0046483840282867108) +zone = ('ohz048', 0.0028540952733080694) + +[fips3903128252] +centroid = (0.70142847067511638, -1.4285752230897029) +description = Franklin township, OH +station = ('kzzv', 0.0042198029525944824) +zone = ('ohz048', 0.0021694486693386084) + +[fips3903137730] +centroid = (0.70281145212110419, -1.4300513003979918) +description = Jackson township, OH +station = ('kzzv', 0.0055730619586139042) +zone = ('ohz048', 0.00062135462180438409) + +[fips3903138556] +centroid = (0.70408007959450136, -1.4318612940987727) +description = Jefferson township, OH +station = ('kzzv', 0.007070773378473917) +zone = ('ohz048', 0.001732558959473694) + +[fips3903139634] +centroid = (0.70396413737229135, -1.4286007398033671) +description = Keene township, OH +station = ('kphd', 0.0062408843343474399) +zone = ('ohz048', 0.0010597638819554549) + +[fips3903141132] +centroid = (0.70254335209470542, -1.4269299710170178) +description = Lafayette township, OH +station = ('kzzv', 0.0056182911408868309) +zone = ('ohz048', 0.002330963429729163) + +[fips3903142] +centroid = (0.72900950741865489, -1.4111965259419896) +description = Austinburg CDP, OH +station = ('khzy', 0.0020403621606525147) +zone = ('ohz089', 0.0020993124993062859) + +[fips3903143960] +centroid = (0.70135460834117214, -1.4270011280906216) +description = Linton township, OH +station = ('kzzv', 0.0044959542893813929) +zone = ('ohz048', 0.0029401755443527401) + +[fips3903150274] +centroid = (0.70530542290244891, -1.4285603179778907) +description = Mill Creek township, OH +station = ('kphd', 0.0058438495540314682) +zone = ('ohz048', 0.0021218753079988071) + +[fips3903151352] +centroid = (0.70538757555034037, -1.4318554646990711) +description = Monroe township, OH +station = ('k4i3', 0.0065648438544595499) +zone = ('ohz048', 0.0025464195350025985) + +[fips3903154376] +centroid = (0.70417947609540232, -1.4335278915482095) +description = Newcastle township, OH +station = ('k4i3', 0.0051286557642742318) +zone = ('ohz048', 0.0029675623552906372) + +[fips3903159248] +centroid = (0.7025850131039505, -1.425150520578147) +description = Oxford township, OH +station = ('kphd', 0.0048665450980067909) +zone = ('ohz039', 0.0040419318075526995) + +[fips3903161812] +centroid = (0.70285630708288038, -1.4336210572236809) +description = Perry township, OH +station = ('kvta', 0.0062130583021511067) +zone = ('ohz048', 0.0029839805056087743) + +[fips3903162624] +centroid = (0.70162733349008866, -1.4335805132251573) +description = Pike township, OH +station = ('kzzv', 0.005403218767667862) +zone = ('ohz048', 0.0034012203872192414) + +[fips3903176953] +centroid = (0.705211733628202, -1.4333196388618614) +description = Tiverton township, OH +station = ('k4i3', 0.0054396721537629169) +zone = ('ohz048', 0.0032557977445424268) + +[fips3903177896] +centroid = (0.70303171267270581, -1.4281510033617131) +description = Tuscarawas township, OH +station = ('kzzv', 0.0058542728376423693) +zone = ('ohz048', 0.0012901435763660338) + +[fips3903180220] +centroid = (0.70149098836892287, -1.4301783603675371) +description = Virginia township, OH +station = ('kzzv', 0.0042710745991996818) +zone = ('ohz048', 0.0019295034862682415) + +[fips3903181172] +centroid = (0.70164199425580542, -1.4319301996976415) +description = Washington township, OH +station = ('kzzv', 0.0047839395380024829) +zone = ('ohz048', 0.0024050017016168249) + +[fips3903184] +centroid = (0.71718854947452992, -1.4091512967646251) +description = Austintown CDP, OH +station = ('kyng', 0.0029163382207718995) +zone = ('ohz033', 0.0014334151268062944) + +[fips3903184714] +centroid = (0.7039001186953282, -1.4271318881581811) +description = White Eyes township, OH +station = ('kphd', 0.0052472088179521658) +zone = ('ohz048', 0.0020765815066451972) + +[fips39033] +centroid = (0.71294095912724387, -1.4473102854123108) +description = Crawford County, OH +station = ('kmnn', 0.0044603874734777012) +zone = ('ohz028', 7.8898493766403011e-05) + +[fips3903302890] +centroid = (0.71476440931655749, -1.444386684382295) +description = Auburn township, OH +station = ('kmfd', 0.0039672534453167466) +zone = ('ohz028', 0.0027868043872226207) + +[fips3903310030] +centroid = (0.71218353859175587, -1.4481275881944347) +description = Bucyrus city, OH +station = ('kmnn', 0.0035212519756283051) +zone = ('ohz028', 0.0010528286325565772) + +[fips3903310044] +centroid = (0.71152444990632524, -1.4490286318740691) +description = Bucyrus township, OH +station = ('kmnn', 0.0026919864468414514) +zone = ('ohz028', 0.0019992039115589934) + +[fips3903313708] +centroid = (0.71470443980345899, -1.4473787197722814) +description = Chatfield township, OH +station = ('kmfd', 0.0059108660464110242) +zone = ('ohz028', 0.0017258139882414605) + +[fips3903319134] +centroid = (0.71479282327677984, -1.445805218185146) +description = Cranberry township, OH +station = ('kmfd', 0.0048820240035499811) +zone = ('ohz028', 0.0021030570931994718) + +[fips3903319330] +centroid = (0.71180876404147519, -1.4441812416760429) +description = Crestline city, OH +station = ('kmfd', 0.0030776869302751651) +zone = ('ohz029', 0.0027664550687755492) + +[fips3903319932] +centroid = (0.71082712105698342, -1.4495037104964621) +description = Dallas township, OH +station = ('kmnn', 0.0019444499264406863) +zone = ('ohz028', 0.0027625115792262438) + +[fips3903329176] +centroid = (0.71098552713989438, -1.4448238544533345) +description = Galion City township, OH +station = ('kmfd', 0.0037796418246080323) +zone = ('ohz028', 0.0026989565925229315) + +[fips3903335980] +centroid = (0.71332364001903614, -1.449162062295384) +description = Holmes township, OH +station = ('kmnn', 0.0044542977450256257) +zone = ('ohz028', 0.001506525107400126) + +[fips3903337744] +centroid = (0.71246793999336844, -1.4439999717799308) +description = Jackson township, OH +station = ('kmfd', 0.0028863632209013123) +zone = ('ohz029', 0.002747746603310953) + +[fips3903338570] +centroid = (0.71184253616250126, -1.445379218221319) +description = Jefferson township, OH +station = ('kmfd', 0.0039673129145065067) +zone = ('ohz028', 0.0018012260728085207) + +[fips3903343078] +centroid = (0.71327285093780313, -1.447061558540609) +description = Liberty township, OH +station = ('kmnn', 0.0048407477442743421) +zone = ('ohz028', 0.00031443199426726303) + +[fips3903345500] +centroid = (0.71459184861341285, -1.4490777803458055) +description = Lykens township, OH +station = ('kmnn', 0.0057225271699165043) +zone = ('ohz028', 0.0021348398448652536) + +[fips3903352] +centroid = (0.72335443120268295, -1.4312591555068348) +description = Avon city, OH +station = ('kcle', 0.0021775902211594372) +zone = ('ohz010', 0.0032378851874462259) + +[fips3903364010] +centroid = (0.71111239512322189, -1.4456430770976356) +description = Polk township, OH +station = ('kmnn', 0.0038462690212684018) +zone = ('ohz028', 0.0022195437538085673) + +[fips3903370366] +centroid = (0.71320274106175052, -1.4455265414634799) +description = Sandusky township, OH +station = ('kmfd', 0.0041210693119028176) +zone = ('ohz028', 0.0013009232636661098) + +[fips3903376463] +centroid = (0.71471374240837204, -1.450252369479105) +description = Texas township, OH +station = ('kmnn', 0.0058298443292857695) +zone = ('ohz028', 0.0028711707120441764) + +[fips3903376967] +centroid = (0.71281564448695067, -1.4502574483872284) +description = Tod township, OH +station = ('kmnn', 0.0039372650634664419) +zone = ('ohz028', 0.0023024574672107037) + +[fips3903379786] +centroid = (0.71307884013815148, -1.4444973382568713) +description = Vernon township, OH +station = ('kmfd', 0.0033336692452032514) +zone = ('ohz028', 0.0020629615982983816) + +[fips3903384644] +centroid = (0.71152832453726467, -1.4471086126172428) +description = Whetstone township, OH +station = ('kmnn', 0.0033257158899971215) +zone = ('ohz028', 0.0014569029835825027) + +[fips3903464] +centroid = (0.72421571628195713, -1.431450530859316) +description = Avon Lake city, OH +station = ('kcle', 0.0027278043812948316) +zone = ('ohz010', 0.0038979062113596329) + +[fips39035] +centroid = (0.72885633732349986, -1.4263566652643227) +description = Cuyahoga County, OH +station = ('kbkl', 0.004033373941510765) +zone = ('ohz011', 0.0059279239069622621) + +[fips3903500000] +centroid = (0.72885633732349986, -1.4263566652643227) +description = County subdivisions not defined, OH +station = ('kbkl', 0.004033373941510765) +zone = ('ohz011', 0.0059279239069622621) + +[fips3903504416] +centroid = (0.72409898866158384, -1.4299734238067681) +description = Bay Village city, OH +station = ('kcle', 0.0018666586863057134) +zone = ('ohz010', 0.0044210779708282986) + +[fips3903504500] +centroid = (0.72389736822639339, -1.422500150842531) +description = Beachwood city, OH +station = ('kcgf', 0.0015991554023919797) +zone = ('ohz011', 0.0022265782305481998) + +[fips3903504878] +centroid = (0.72241427469451125, -1.4230651662812792) +description = Bedford city, OH +station = ('kbkl', 0.0030138995030299068) +zone = ('ohz011', 0.0017109774913664606) + +[fips3903504920] +centroid = (0.7226299275768876, -1.4224872528593588) +description = Bedford Heights city, OH +station = ('kcgf', 0.0028562977218394687) +zone = ('ohz011', 0.0020758487264517815) + +[fips3903505550] +centroid = (0.7227992245143311, -1.4209330022538729) +description = Bentleyville village, OH +station = ('kcgf', 0.0028275788886176446) +zone = ('ohz013', 0.0034204025384000246) + +[fips3903505690] +centroid = (0.72205227595435506, -1.4287571911175156) +description = Berea city, OH +station = ('kcle', 0.00053659474141372039) +zone = ('ohz011', 0.0028191823197930058) + +[fips3903508336] +centroid = (0.72528841309352543, -1.4242859542798791) +description = Bratenahl village, OH +station = ('kbkl', 0.00089044114757387343) +zone = ('ohz011', 0.0024006569917577616) + +[fips3903508364] +centroid = (0.72094660987321668, -1.4245368977197308) +description = Brecksville city, OH +station = ('kcle', 0.0034215655485231901) +zone = ('ohz011', 0.0021058943194182831) + +[fips3903509064] +centroid = (0.72113784559935767, -1.4255720874056736) +description = Broadview Heights city, OH +station = ('kcle', 0.0026539001377600319) +zone = ('ohz011', 0.0018720566924515937) + +[fips3903509246] +centroid = (0.72317263770779527, -1.4267923518054979) +description = Brooklyn city, OH +station = ('kcle', 0.0014522073709806755) +zone = ('ohz011', 0.0011979561406922051) + +[fips3903509274] +centroid = (0.72291315960790126, -1.425327793670272) +description = Brooklyn Heights village, OH +station = ('kbkl', 0.0019803409673460424) +zone = ('ohz011', 0.00011557072611858519) + +[fips3903509288] +centroid = (0.72264027737935199, -1.4280355847382786) +description = Brook Park city, OH +station = ('kcle', 0.00039434974348263489) +zone = ('ohz011', 0.0021454195593270599) + +[fips3903513372] +centroid = (0.72315993171084081, -1.4205531138888838) +description = Chagrin Falls township, OH +station = ('kcgf', 0.0026067642815272123) +zone = ('ohz013', 0.00301226204320015) + +[fips3903516000] +centroid = (0.72393007569657575, -1.4255759620366131) +description = Cleveland city, OH +station = ('kbkl', 0.00097780345727654407) +zone = ('ohz011', 0.00097820238788772548) + +[fips3903516014] +centroid = (0.72450493479230516, -1.4235213604411654) +description = Cleveland Heights city, OH +station = ('kcgf', 0.0014111267062766766) +zone = ('ohz011', 0.0019750627700766701) + +[fips3903519806] +centroid = (0.72319724685024833, -1.425125544916551) +description = Cuyahoga Heights village, OH +station = ('kbkl', 0.0017046482538018333) +zone = ('ohz011', 0.00021700723576001906) + +[fips3903523380] +centroid = (0.72484670516643068, -1.4238137030908744) +description = East Cleveland city, OH +station = ('kbkl', 0.0011526602226985404) +zone = ('ohz011', 0.0021319345650145645) + +[fips3903525704] +centroid = (0.72592003029652963, -1.4227867862655861) +description = Euclid city, OH +station = ('kcgf', 0.0006504120666019097) +zone = ('ohz011', 0.0034473426095235709) + +[fips3903526446] +centroid = (0.7232987028396668, -1.4286042130085783) +description = Fairview Park city, OH +station = ('kcle', 0.00073343859323935835) +zone = ('ohz011', 0.0025609773781418558) + +[fips3903529428] +centroid = (0.72291146663852679, -1.4242574705064865) +description = Garfield Heights city, OH +station = ('kbkl', 0.0021449660235347903) +zone = ('ohz011', 0.00072098018378900677) + +[fips3903529498] +centroid = (0.72485204587394181, -1.4208926851481516) +description = Gates Mills village, OH +station = ('kcgf', 0.0011301238336801766) +zone = ('ohz012', 0.0036799119586959578) + +[fips3903530632] +centroid = (0.72188896549624593, -1.4219378406641234) +description = Glenwillow village, OH +station = ('kcgf', 0.003589831160710395) +zone = ('ohz011', 0.0026927218596300446) + +[fips3903535252] +centroid = (0.72521535361103695, -1.4219043128891926) +description = Highland Heights city, OH +station = ('kcgf', 0.00031936109916416369) +zone = ('ohz011', 0.0033307665394704429) + +[fips3903535255] +centroid = (0.72344276231612648, -1.4227700834646444) +description = Highland Hills village, OH +station = ('kcgf', 0.002084393178497004) +zone = ('ohz011', 0.0018865711897103499) + +[fips3903536918] +centroid = (0.72403898424190016, -1.4209216750670273) +description = Hunting Valley village, OH +station = ('kcgf', 0.0017063804725742998) +zone = ('ohz013', 0.0030733321223715558) + +[fips3903537240] +centroid = (0.72221745391476377, -1.4247701260676748) +description = Independence city, OH +station = ('kbkl', 0.0027112897204869422) +zone = ('ohz011', 0.00084138342534883473) + +[fips3903541664] +centroid = (0.72402994343637483, -1.4277087020226726) +description = Lakewood city, OH +station = ('kcle', 0.0015943147714740865) +zone = ('ohz011', 0.0021398245455068522) + +[fips3903543918] +centroid = (0.72335167358246477, -1.4270992854077538) +description = Linndale village, OH +station = ('kcle', 0.0013429077791519153) +zone = ('ohz011', 0.0014594507711084372) + +[fips3903545556] +centroid = (0.72460714127330195, -1.4223528974135402) +description = Lyndhurst city, OH +station = ('kcgf', 0.00088092058656963617) +zone = ('ohz011', 0.0026845951626913458) + +[fips3903547306] +centroid = (0.72272424516966549, -1.4235404543431822) +description = Maple Heights city, OH +station = ('kbkl', 0.0025589465890402774) +zone = ('ohz011', 0.0012823366510077785) + +[fips3903548468] +centroid = (0.7251715109402268, -1.4212400754824686) +description = Mayfield village, OH +station = ('kcgf', 0.0007472121075748141) +zone = ('ohz012', 0.003611170862240319) + +[fips3903548482] +centroid = (0.72461379097775191, -1.4216385516039916) +description = Mayfield Heights city, OH +station = ('kcgf', 0.00094337672528568817) +zone = ('ohz011', 0.0031319907695952745) + +[fips3903549644] +centroid = (0.7220416119926254, -1.4279155933522041) +description = Middleburg Heights city, OH +station = ('kcle', 0.00070943363024261307) +zone = ('ohz011', 0.0022382562528442175) + +[fips3903552052] +centroid = (0.72330566670338237, -1.4213453886495342) +description = Moreland Hills village, OH +station = ('kcgf', 0.0022521447614609752) +zone = ('ohz013', 0.0035244829477835827) + +[fips3903554250] +centroid = (0.7234574579884282, -1.4252911243026878) +description = Newburgh Heights village, OH +station = ('kbkl', 0.0014366871131225472) +zone = ('ohz011', 0.00047067408734036338) + +[fips3903556882] +centroid = (0.72282781300747878, -1.429756950619643) +description = North Olmsted city, OH +station = ('kcle', 0.00094082097235499229) +zone = ('ohz010', 0.0036877661920352652) + +[fips3903556924] +centroid = (0.72312120285473902, -1.4229733445093318) +description = North Randall village, OH +station = ('kcgf', 0.0024329547980355701) +zone = ('ohz011', 0.0016844826277774977) + +[fips3903557008] +centroid = (0.72105946286265066, -1.4267235509263845) +description = North Royalton city, OH +station = ('kcle', 0.0020381838425690452) +zone = ('ohz011', 0.0022390645117221653) + +[fips3903557750] +centroid = (0.72198864124982742, -1.4225135549711865) +description = Oakwood village, OH +station = ('kcgf', 0.0034970354578213051) +zone = ('ohz011', 0.0022593844888200913) + +[fips3903558408] +centroid = (0.72216657756706815, -1.4299657269047665) +description = Olmsted township, OH +station = ('kcle', 0.0011334693823220243) +zone = ('ohz010', 0.0032179379958705528) + +[fips3903558422] +centroid = (0.72196748785929321, -1.4295001428735046) +description = Olmsted Falls city, OH +station = ('kcle', 0.00092988505316508093) +zone = ('ohz010', 0.0034596645817657175) + +[fips3903558604] +centroid = (0.72331530092085328, -1.4219849121940495) +description = Orange village, OH +station = ('kcgf', 0.0021635327916968935) +zone = ('ohz011', 0.0024420112609760663) + +[fips3903561000] +centroid = (0.72227831354578087, -1.4264320111281312) +description = Parma city, OH +station = ('kcle', 0.0016162885720908714) +zone = ('ohz011', 0.0011588246712893639) + +[fips3903561028] +centroid = (0.72227634132372609, -1.4270034144719417) +description = Parma Heights city, OH +station = ('kcle', 0.0011973949416238879) +zone = ('ohz011', 0.0015208612412183427) + +[fips3903561686] +centroid = (0.72395185740564061, -1.4217488215061325) +description = Pepper Pike city, OH +station = ('kcgf', 0.0015530198600311818) +zone = ('ohz011', 0.0027688561539879757) + +[fips3903562] +centroid = (0.71470484122918687, -1.4374403437725276) +description = Bailey Lakes village, OH +station = ('kmfd', 0.0031136028440073111) +zone = ('ohz030', 0.002150921982189683) + +[fips3903566894] +centroid = (0.72537011195581125, -1.422577730727782) +description = Richmond Heights city, OH +station = ('kcgf', 0.00033510314490147749) +zone = ('ohz011', 0.0030918965935940895) + +[fips3903568056] +centroid = (0.72383978981437014, -1.4286188563210027) +description = Rocky River city, OH +station = ('kcle', 0.0012744656593250833) +zone = ('ohz011', 0.0026903193629381843) + +[fips3903571416] +centroid = (0.72221361419040941, -1.4255119259063573) +description = Seven Hills city, OH +station = ('kcle', 0.0023078513950445995) +zone = ('ohz011', 0.00080848660289955198) + +[fips3903571682] +centroid = (0.7238945233397126, -1.4233020423673597) +description = Shaker Heights city, OH +station = ('kcgf', 0.0017998144582578) +zone = ('ohz011', 0.0016939075291081463) + +[fips3903572928] +centroid = (0.72232180715074046, -1.4214107163234362) +description = Solon city, OH +station = ('kcgf', 0.0032019796880763569) +zone = ('ohz011', 0.0029293672404260046) + +[fips3903573264] +centroid = (0.72472941904069654, -1.4228707889624845) +description = South Euclid city, OH +station = ('kcgf', 0.00091935821235191047) +zone = ('ohz011', 0.0024706849711478972) + +[fips3903575098] +centroid = (0.72104698375849896, -1.428232370611441) +description = Strongsville city, OH +station = ('kcle', 0.0015381518914950876) +zone = ('ohz011', 0.0029851149887221771) + +[fips3903578932] +centroid = (0.72422096972300565, -1.4230510814742154) +description = University Heights city, OH +station = ('kcgf', 0.0014232422568855733) +zone = ('ohz011', 0.0020346234291557051) + +[fips3903579268] +centroid = (0.72224342441403355, -1.4243334970487034) +description = Valley View village, OH +station = ('kbkl', 0.0027577814521074469) +zone = ('ohz011', 0.00099668674533053459) + +[fips3903580738] +centroid = (0.72201145270315092, -1.4233689408375887) +description = Walton Hills village, OH +station = ('kbkl', 0.0032427526656470585) +zone = ('ohz011', 0.0016948022789008942) + +[fips3903580990] +centroid = (0.72325184074925075, -1.4228229320343948) +description = Warrensville Heights city, OH +station = ('kcgf', 0.002279349362311279) +zone = ('ohz011', 0.0018110387868172679) + +[fips3903583622] +centroid = (0.72343075445087268, -1.4299510486857574) +description = Westlake city, OH +station = ('kcle', 0.0013593247101809163) +zone = ('ohz010', 0.0039507432616830368) + +[fips3903585] +centroid = (0.72249597355679707, -1.4195787314740802) +description = Bainbridge CDP, OH +station = ('kpov', 0.0032710881660497817) +zone = ('ohz013', 0.002738271506264506) + +[fips3903586394] +centroid = (0.7236128970116108, -1.4220914819981765) +description = Woodmere village, OH +station = ('kcgf', 0.0018628549318520035) +zone = ('ohz011', 0.0024214739769972573) + +[fips3903604] +centroid = (0.684630950715025, -1.4533280235935544) +description = Bainbridge village, OH +station = ('kiln', 0.0078195102743552868) +zone = ('ohz073', 0.0034653335381978584) + +[fips3903646] +centroid = (0.71857271774440901, -1.4592224717164373) +description = Bairdstown village, OH +station = ('kfdy', 0.0028076523650417745) +zone = ('ohz017', 0.0030555108123103084) + +[fips39037] +centroid = (0.70043860718984785, -1.4769052575797252) +description = Darke County, OH +station = ('kves', 0.0016900325942531078) +zone = ('ohz042', 2.4808137697614569e-05) + +[fips3903700254] +centroid = (0.70040661530465886, -1.4746126279808907) +description = Adams township, OH +station = ('kves', 0.0013326302164041279) +zone = ('ohz042', 0.0017384414460977699) + +[fips3903701294] +centroid = (0.70342985718167084, -1.4777180050525016) +description = Allen township, OH +station = ('kves', 0.0025685820411002589) +zone = ('ohz042', 0.0030388819003703245) + +[fips3903709414] +centroid = (0.70198498636040729, -1.4776339849023108) +description = Brown township, OH +station = ('kves', 0.0017988651127938719) +zone = ('ohz042', 0.0016303811497500322) + +[fips3903710576] +centroid = (0.69748266520879265, -1.477440113728999) +description = Butler township, OH +station = ('kves', 0.0044442744302693894) +zone = ('ohz042', 0.0030057066475794527) + +[fips3903716] +centroid = (0.72129930600845971, -1.4509745343637026) +description = Ballville CDP, OH +station = ('ktdz', 0.0061837142410541132) +zone = ('ohz008', 0.00052535962045170681) + +[fips3903728266] +centroid = (0.69889247236538354, -1.4742698278625064) +description = Franklin township, OH +station = ('kves', 0.002847025902517516) +zone = ('ohz042', 0.0025408172417444859) + +[fips3903732354] +centroid = (0.70015268735178615, -1.4772407098619587) +description = Greenville township, OH +station = ('kves', 0.002073527719287151) +zone = ('ohz042', 0.00040886200754759858) + +[fips3903733810] +centroid = (0.69742789677686501, -1.4793083839735039) +description = Harrison township, OH +station = ('kves', 0.0051840678364001112) +zone = ('ohz042', 0.00355293622001439) + +[fips3903737758] +centroid = (0.70220931352916616, -1.4793509700072525) +description = Jackson township, OH +station = ('kves', 0.0031284242781660634) +zone = ('ohz042', 0.0025718601822751017) + +[fips3903743092] +centroid = (0.69885313264404358, -1.4795114704852659) +description = Liberty township, OH +station = ('kves', 0.0042318229507465966) +zone = ('ohz042', 0.002571548266888699) + +[fips3903744] +centroid = (0.70588626847751279, -1.4259678059069785) +description = Baltic village, OH +station = ('kphd', 0.0038085515833697048) +zone = ('ohz038', 0.0036434680466336223) + +[fips3903750960] +centroid = (0.70358939772859563, -1.4793455594865712) +description = Mississinawa township, OH +station = ('kves', 0.003643540846925873) +zone = ('ohz042', 0.0036513994303520527) + +[fips3903751366] +centroid = (0.69754837685513027, -1.4743144733847726) +description = Monroe township, OH +station = ('kves', 0.0041469582905098376) +zone = ('ohz042', 0.0035128660216023552) + +[fips3903753732] +centroid = (0.69877754243413981, -1.4772918829156272) +description = Neave township, OH +station = ('kves', 0.0032173160303834124) +zone = ('ohz042', 0.0017092141165676053) + +[fips3903758] +centroid = (0.69544035073127897, -1.4417344122377942) +description = Baltimore village, OH +station = ('klhq', 0.0018635226427482854) +zone = ('ohz065', 0.0016784239342179897) + +[fips3903761168] +centroid = (0.70366292844998213, -1.4744216889607225) +description = Patterson township, OH +station = ('kves', 0.0021543070564206787) +zone = ('ohz042', 0.0037159856442922907) + +[fips3903766656] +centroid = (0.70144206678998944, -1.4760536241712148) +description = Richland township, OH +station = ('kves', 0.00058371619340485286) +zone = ('ohz042', 0.0011713302712112713) + +[fips3903777980] +centroid = (0.69756640610630338, -1.4755896458428646) +description = Twin township, OH +station = ('kves', 0.0040609351053198439) +zone = ('ohz042', 0.0030571907003116767) + +[fips3903779380] +centroid = (0.69894423883099777, -1.4756510988858274) +description = Van Buren township, OH +station = ('kves', 0.0026895754361594055) +zone = ('ohz042', 0.0017843253605594931) + +[fips3903780248] +centroid = (0.70375206241488153, -1.4759942655233544) +description = Wabash township, OH +station = ('kves', 0.0021897620663962809) +zone = ('ohz042', 0.0033633704405872369) + +[fips3903781186] +centroid = (0.7003936126017315, -1.4793446693686527) +description = Washington township, OH +station = ('kves', 0.0033071502934335908) +zone = ('ohz042', 0.0018813908770566928) + +[fips3903782152] +centroid = (0.7020553929424328, -1.4744544836973674) +description = Wayne township, OH +station = ('kves', 0.00079453801872780632) +zone = ('ohz042', 0.0024495889268593887) + +[fips3903786] +centroid = (0.69992820310339465, -1.4133155476401287) +description = Bannock CDP, OH +station = ('khlg', 0.004503111671268812) +zone = ('ohz059', 0.0015284583251224391) + +[fips3903787010] +centroid = (0.70261848851900377, -1.4760994914239571) +description = York township, OH +station = ('kves', 0.0011577028394847881) +zone = ('ohz042', 0.0022421229443304025) + +[fips3903828] +centroid = (0.71570472290436193, -1.4242650801420251) +description = Barberton city, OH +station = ('kakr', 0.0018713413995968052) +zone = ('ohz021', 0.0022849890199168835) + +[fips39039] +centroid = (0.72119935100219801, -1.4745664291155904) +description = Defiance County, OH +station = ('kdfi', 0.00072506672157709128) +zone = ('ohz004', 6.8001389937623533e-05) + +[fips3903900268] +centroid = (0.7222875463375239, -1.4710458207616375) +description = Adams township, OH +station = ('kdfi', 0.0021385274923628439) +zone = ('ohz005', 0.0029682759407659285) + +[fips3903921322] +centroid = (0.71989347820256333, -1.4730316563845567) +description = Defiance township, OH +station = ('kdfi', 0.0015769054300925078) +zone = ('ohz004', 0.0018088205387583795) + +[fips3903921420] +centroid = (0.7208743357888916, -1.4749356884254348) +description = Delaware township, OH +station = ('kdfi', 0.0011075676380648701) +zone = ('ohz004', 0.00042803671476076335) + +[fips3903926] +centroid = (0.69793870228904631, -1.416727718687655) +description = Barnesville village, OH +station = ('kphd', 0.0089500869039329193) +zone = ('ohz059', 0.002504506949360585) + +[fips3903926614] +centroid = (0.72209030667875596, -1.4771694480685997) +description = Farmer township, OH +station = ('kdfi', 0.0027373933654118356) +zone = ('ohz004', 0.002081197540809617) + +[fips3903935112] +centroid = (0.72074849754982284, -1.4791077060161095) +description = Hicksville township, OH +station = ('kdfi', 0.0041588076398762618) +zone = ('ohz015', 0.0038168985680439318) + +[fips3903935196] +centroid = (0.71924379684180095, -1.4710510218428086) +description = Highland township, OH +station = ('kdfi', 0.0029062835064623802) +zone = ('ohz005', 0.003576715454016167) + +[fips3903940] +centroid = (0.70597980067212707, -1.4201379000598342) +description = Barnhill village, OH +station = ('kphd', 0.00071227760534714143) +zone = ('ohz039', 0.0014146029870778904) + +[fips3903947852] +centroid = (0.72075654351767449, -1.4770907860792124) +description = Mark township, OH +station = ('kdfi', 0.0026714498948713417) +zone = ('ohz004', 0.0019039018461456964) + +[fips3903950190] +centroid = (0.72240781697627876, -1.4789941374416822) +description = Milford township, OH +station = ('kdfi', 0.0041425579453285601) +zone = ('ohz001', 0.0035617623365720042) + +[fips3903956014] +centroid = (0.72102164157775994, -1.4730802638042246) +description = Noble township, OH +station = ('kdfi', 0.00056722554213104197) +zone = ('ohz004', 0.0011909839578743296) + +[fips3903966670] +centroid = (0.72078954769382964, -1.4709707366972169) +description = Richland township, OH +station = ('kdfi', 0.0020962794188282845) +zone = ('ohz005', 0.002850812848101751) + +[fips3903976772] +centroid = (0.72229363753661335, -1.4732664206222423) +description = Tiffin township, OH +station = ('kdfi', 0.0009338909885110092) +zone = ('ohz004', 0.0014738497275621025) + +[fips3903981200] +centroid = (0.72228094899295137, -1.4750813361515138) +description = Washington township, OH +station = ('kdfi', 0.0013936171138580992) +zone = ('ohz004', 0.001092719685442138) + +[fips3904094] +centroid = (0.71783720109103366, -1.4536309778451155) +description = Bascom CDP, OH +station = ('kfdy', 0.0053677048658909588) +zone = ('ohz018', 0.0020951657377848744) + +[fips39041] +centroid = (0.7030001396665374, -1.4487535156240774) +description = Delaware County, OH +station = ('kdlz', 0.0015107266964238654) +zone = ('ohz046', 3.1087043764572982e-05) + +[fips3904102582] +centroid = (0.70528416479215972, -1.4477794648218316) +description = Ashley village, OH +station = ('kdlz', 0.0030637285657146673) +zone = ('ohz046', 0.002399867352028697) + +[fips3904105774] +centroid = (0.70236702148037633, -1.4468768154392855) +description = Berkshire township, OH +station = ('kdlz', 0.0030449711675540137) +zone = ('ohz046', 0.001535179419532795) + +[fips3904105788] +centroid = (0.70247793715434059, -1.4483554060216974) +description = Berlin township, OH +station = ('kdlz', 0.0019391560646891874) +zone = ('ohz046', 0.00058275829786565017) + +[fips3904109428] +centroid = (0.70377904520511736, -1.4485208981413715) +description = Brown township, OH +station = ('kdlz', 0.0017747411165313588) +zone = ('ohz046', 0.00080027502857794072) + +[fips3904118100] +centroid = (0.70065994984558577, -1.4483241995346718) +description = Columbus City township, OH +station = ('kosu', 0.0017179691049304267) +zone = ('ohz046', 0.0023514146879926533) + +[fips3904118140] +centroid = (0.70191997284577057, -1.4511778652215601) +description = Concord township, OH +station = ('kdlz', 0.001320736874015628) +zone = ('ohz046', 0.0021648569742835529) + +[fips3904121448] +centroid = (0.70280192262338836, -1.4495645526741867) +description = Delaware township, OH +station = ('kdlz', 0.00096279792001192682) +zone = ('ohz046', 0.00067631054529094733) + +[fips3904121469] +centroid = (0.70321996388582597, -1.4500339764298029) +description = Delaware City township, OH +station = ('kdlz', 0.00052219451291307532) +zone = ('ohz046', 0.0010322852799929975) + +[fips3904129694] +centroid = (0.70116131312651364, -1.4468450155403141) +description = Genoa township, OH +station = ('kcmh', 0.0030360334094610727) +zone = ('ohz046', 0.0023215014207326854) + +[fips3904133516] +centroid = (0.70096330552287489, -1.4451949114523084) +description = Harlem township, OH +station = ('kcmh', 0.0030253253258819834) +zone = ('ohz046', 0.0033671675747897621) + +[fips3904140362] +centroid = (0.70370938911467029, -1.4466667650638079) +description = Kingston township, OH +station = ('kdlz', 0.0031321157147340818) +zone = ('ohz046', 0.0017181432087907749) + +[fips3904143106] +centroid = (0.70143407318201534, -1.4500718849811562) +description = Liberty township, OH +station = ('kdlz', 0.0018268506789004383) +zone = ('ohz046', 0.0018716456477330863) + +[fips3904147908] +centroid = (0.70537102982903144, -1.449747410819918) +description = Marlboro township, OH +station = ('kdlz', 0.0022999717261685841) +zone = ('ohz046', 0.0025055845796596375) + +[fips3904150] +centroid = (0.68204412841747408, -1.4692430178173752) +description = Batavia village, OH +station = ('kluk', 0.0032092801352075913) +zone = ('ohz078', 0.00066558825092152103) + +[fips3904158618] +centroid = (0.70125491513429816, -1.4485658229163179) +description = Orange township, OH +station = ('kosu', 0.0020300322334697984) +zone = ('ohz046', 0.0017412084072887485) + +[fips3904159262] +centroid = (0.70493256821434536, -1.4481500680352004) +description = Oxford township, OH +station = ('kdlz', 0.0026183396634187682) +zone = ('ohz046', 0.001987184878407852) + +[fips3904164178] +centroid = (0.70363636453876677, -1.4450544822606932) +description = Porter township, OH +station = ('kdlz', 0.0043416435711366823) +zone = ('ohz037', 0.0036409106364347415) + +[fips3904165312] +centroid = (0.70466012231810915, -1.4515383455252671) +description = Radnor township, OH +station = ('kdlz', 0.0015947947815751259) +zone = ('ohz046', 0.0027234730583806598) + +[fips3904170842] +centroid = (0.70318453370201062, -1.452167205108053) +description = Scioto township, OH +station = ('kdlz', 0.0011057125037277752) +zone = ('ohz045', 0.0022491796014251116) + +[fips3904171976] +centroid = (0.70092541442481415, -1.4509907833790388) +description = Shawnee Hills village, OH +station = ('kosu', 0.0015103417916731597) +zone = ('ohz046', 0.0027009072484061513) + +[fips3904175620] +centroid = (0.70246442830593014, -1.4462716399744489) +description = Sunbury Village township, OH +station = ('kdlz', 0.0034697843015811846) +zone = ('ohz046', 0.001937099385451019) + +[fips3904176617] +centroid = (0.70503360532474335, -1.4523955814406766) +description = Thompson township, OH +station = ('kdlz', 0.0022411559444942396) +zone = ('ohz045', 0.0026599320750083848) + +[fips3904177336] +centroid = (0.70227523461501395, -1.4451412774843946) +description = Trenton township, OH +station = ('kcmh', 0.0042885002353372538) +zone = ('ohz046', 0.0028192768647420222) + +[fips3904177560] +centroid = (0.70454692026282473, -1.4498858677894786) +description = Troy township, OH +station = ('kdlz', 0.0014949211764829046) +zone = ('ohz046', 0.0017929273194601351) + +[fips3904181203] +centroid = (0.70072470156083466, -1.4511490672889023) +description = Washington township, OH +station = ('kosu', 0.0014027035715031423) +zone = ('ohz046', 0.0029326385866513503) + +[fips3904183349] +centroid = (0.70055666126045268, -1.4472990629452203) +description = Westerville City township, OH +station = ('kcmh', 0.0024854205538976351) +zone = ('ohz046', 0.0026647236130959849) + +[fips3904192] +centroid = (0.69662572599935602, -1.4186474761450936) +description = Batesville village, OH +station = ('kphd', 0.0098151879978638223) +zone = ('ohz068', 0.0034671103660623027) + +[fips39043] +centroid = (0.72525422209347878, -1.4403486208117109) +description = Erie County, OH +station = ('cwnb', 0.0049359151821051963) +zone = ('ohz009', 0.0035355865007170866) + +[fips3904300000] +centroid = (0.72525422209347878, -1.4403486208117109) +description = County subdivisions not defined, OH +station = ('cwnb', 0.0049359151821051963) +zone = ('ohz009', 0.0035355865007170866) + +[fips3904305228] +centroid = (0.72068226230470955, -1.4457114940043139) +description = Bellevue city, OH +station = ('klpr', 0.0085777055699329825) +zone = ('ohz009', 0.0030858745994312743) + +[fips3904305802] +centroid = (0.72135683206060541, -1.4396747317342233) +description = Berlin township, OH +station = ('klpr', 0.003997184094937177) +zone = ('ohz009', 0.0018033327888398714) + +[fips3904327482] +centroid = (0.72123448448004057, -1.4378329206811788) +description = Florence township, OH +station = ('klpr', 0.0026405081393461333) +zone = ('ohz010', 0.0030624252121787144) + +[fips3904332578] +centroid = (0.72131307665625788, -1.4447842529326067) +description = Groton township, OH +station = ('klpr', 0.0078285852472912004) +zone = ('ohz009', 0.0022133034817932188) + +[fips3904337030] +centroid = (0.72246408639136317, -1.441412189551291) +description = Huron township, OH +station = ('klpr', 0.0053407340440130638) +zone = ('ohz009', 0.00067118004828286431) + +[fips3904339662] +centroid = (0.72610246956324054, -1.4435008425204454) +description = Kelleys Island village, OH +station = ('cwnb', 0.0050969520275891142) +zone = ('ohz009', 0.0043313819812994762) + +[fips3904347572] +centroid = (0.72306139042127304, -1.4456331287208992) +description = Margaretta township, OH +station = ('cwnb', 0.0085005165107008493) +zone = ('ohz009', 0.0029840532544175681) + +[fips3904350148] +centroid = (0.7210877895564104, -1.4415796189864349) +description = Milan township, OH +station = ('klpr', 0.0054475885147284948) +zone = ('ohz009', 0.00088685699937442576) + +[fips3904359276] +centroid = (0.72130258722745333, -1.4433202882093266) +description = Oxford township, OH +station = ('klpr', 0.0067315700886317938) +zone = ('ohz009', 0.0012028919425410131) + +[fips3904361714] +centroid = (0.72248148732400552, -1.4432711048310052) +description = Perkins township, OH +station = ('klpr', 0.0067261068247683707) +zone = ('ohz009', 0.0011330033560814925) + +[fips3904370380] +centroid = (0.72354172248471449, -1.4436387933445229) +description = Sandusky city, OH +station = ('klpr', 0.0071939095246660112) +zone = ('ohz009', 0.0020492150895114331) + +[fips3904379716] +centroid = (0.72285936856035482, -1.4374504143223117) +description = Vermilion city, OH +station = ('klpr', 0.0025887436868311242) +zone = ('ohz010', 0.0034572602686259273) + +[fips3904379730] +centroid = (0.72223488975399119, -1.438008256457834) +description = Vermilion township, OH +station = ('klpr', 0.0027838481175812466) +zone = ('ohz010', 0.0034883410520774928) + +[fips3904402] +centroid = (0.72377638200264516, -1.4455544841848045) +description = Bay View village, OH +station = ('cwnb', 0.0078801873937588522) +zone = ('ohz009', 0.0032722793810512963) + +[fips3904416] +centroid = (0.72409898866158384, -1.4299734238067681) +description = Bay Village city, OH +station = ('kcle', 0.0018666586863057134) +zone = ('ohz010', 0.0044210779708282986) + +[fips3904458] +centroid = (0.70953100464786745, -1.4238349262945789) +description = Beach City village, OH +station = ('kphd', 0.0039072298669372051) +zone = ('ohz039', 0.0039599890426818838) + +[fips39045] +centroid = (0.69381960308129209, -1.4421354714466101) +description = Fairfield County, OH +station = ('klhq', 0.000517687146383187) +zone = ('ohz065', 3.7861196911898512e-05) + +[fips3904500] +centroid = (0.72389736822639339, -1.422500150842531) +description = Beachwood city, OH +station = ('kcgf', 0.0015991554023919797) +zone = ('ohz011', 0.0022265782305481998) + +[fips3904501637] +centroid = (0.69282315970474351, -1.444586175515798) +description = Amanda township, OH +station = ('klhq', 0.0016640905807341194) +zone = ('ohz065', 0.0020948225869374506) + +[fips3904505956] +centroid = (0.69211209511418836, -1.4406965871046808) +description = Berne township, OH +station = ('klhq', 0.002318605676666678) +zone = ('ohz065', 0.0020320105103075726) + +[fips3904506950] +centroid = (0.69427564016154564, -1.4445677797454819) +description = Bloom township, OH +station = ('klhq', 0.0014464792392205744) +zone = ('ohz065', 0.0019012243931738528) + +[fips3904515686] +centroid = (0.69110694254467231, -1.4447719309080878) +description = Clearcreek township, OH +station = ('klhq', 0.0030617021175952741) +zone = ('ohz065', 0.0033511342333049097) + +[fips3904518000] +centroid = (0.69674709619553965, -1.4451333885961757) +description = Columbus city, OH +station = ('kcmh', 0.0017772524163369265) +zone = ('ohz055', 0.0029273447366705368) + +[fips3904532060] +centroid = (0.69427749021055274, -1.4428978661704663) +description = Greenfield township, OH +station = ('klhq', 0.00051403787514838351) +zone = ('ohz065', 0.00073545366102785177) + +[fips3904535812] +centroid = (0.6926142786998648, -1.4425657649203967) +description = Hocking township, OH +station = ('klhq', 0.001168740574002258) +zone = ('ohz065', 0.0012197776724538181) + +[fips3904541740] +centroid = (0.69332396448031064, -1.4417066615026877) +description = Lancaster City township, OH +station = ('klhq', 0.00095474032511181099) +zone = ('ohz065', 0.00059364176813823499) + +[fips3904542] +centroid = (0.69549396724590029, -1.4143343835909803) +description = Beallsville village, OH +station = ('khlg', 0.0075702529150258602) +zone = ('ohz069', 0.0022137115281058717) + +[fips3904543120] +centroid = (0.69592474941187754, -1.4424073937440709) +description = Liberty township, OH +station = ('klhq', 0.002177949355382458) +zone = ('ohz065', 0.0021359649918441747) + +[fips3904546382] +centroid = (0.69111470925984375, -1.442827599214781) +description = Madison township, OH +station = ('klhq', 0.0026537228473997969) +zone = ('ohz065', 0.0027283316502633432) + +[fips3904563240] +centroid = (0.69411899686117906, -1.440517237070746) +description = Pleasant township, OH +station = ('klhq', 0.0017936696240988346) +zone = ('ohz065', 0.0013140475534188245) + +[fips3904566684] +centroid = (0.69441427166403158, -1.4387541054603814) +description = Richland township, OH +station = ('kvta', 0.0040313347035583601) +zone = ('ohz066', 0.0028012056765316651) + +[fips3904569120] +centroid = (0.69292875212448901, -1.4386325432779798) +description = Rush Creek township, OH +station = ('klhq', 0.0033174830456510459) +zone = ('ohz066', 0.0026429044410976902) + +[fips3904580206] +centroid = (0.69601877029868242, -1.4442043149287542) +description = Violet township, OH +station = ('klhq', 0.0024937332749939678) +zone = ('ohz065', 0.002714911370981819) + +[fips3904580570] +centroid = (0.6959642811194352, -1.4402859111316868) +description = Walnut township, OH +station = ('kvta', 0.0025685583560847813) +zone = ('ohz065', 0.0026084732589736841) + +[fips3904696] +centroid = (0.68128895935672118, -1.4455810830026048) +description = Beaver village, OH +station = ('k3i2', 0.010090984162095725) +zone = ('ohz083', 0.0028232385862703192) + +[fips39047] +centroid = (0.69034482707349654, -1.4566400476486014) +description = Fayette County, OH +station = ('kiln', 0.0048443524439265922) +zone = ('ohz063', 0.00011425328121131708) + +[fips3904718154] +centroid = (0.68895001229518027, -1.45796672477292) +description = Concord township, OH +station = ('kiln', 0.0034163249203216679) +zone = ('ohz063', 0.0018411274924093239) + +[fips3904720] +centroid = (0.6934600478020887, -1.4671129481850711) +description = Beavercreek city, OH +station = ('kffo', 0.0017672546652928462) +zone = ('ohz062', 0.0023857569534901095) + +[fips3904731724] +centroid = (0.68785331720639697, -1.4578327009396592) +description = Green township, OH +station = ('kiln', 0.0034688763580722278) +zone = ('ohz063', 0.0027703021641811974) + +[fips3904738388] +centroid = (0.69062325944906711, -1.4589216118599786) +description = Jasper township, OH +station = ('kiln', 0.0035281872849437573) +zone = ('ohz063', 0.0018105462686626257) + +[fips3904738598] +centroid = (0.69214234167012545, -1.4586619592271595) +description = Jefferson township, OH +station = ('ksgh', 0.0047832721915341157) +zone = ('ohz063', 0.0023293487184211127) + +[fips3904746396] +centroid = (0.69224929544668767, -1.4539200567291235) +description = Madison township, OH +station = ('ktzr', 0.0047126198905668108) +zone = ('ohz063', 0.0027288385878130855) + +[fips3904747684] +centroid = (0.69080938136049985, -1.4540957939315069) +description = Marion township, OH +station = ('ktzr', 0.0060716835053118631) +zone = ('ohz063', 0.0019510980858509733) + +[fips3904752] +centroid = (0.71266135738107439, -1.4656120173882334) +description = Beaverdam village, OH +station = ('kaoh', 0.0023820860686389611) +zone = ('ohz025', 0.0020467003695862963) + +[fips3904759486] +centroid = (0.69226397366569692, -1.4566224547297415) +description = Paint township, OH +station = ('kiln', 0.0059424202806466304) +zone = ('ohz063', 0.0018137123268960407) + +[fips3904761826] +centroid = (0.68791482260923742, -1.456252898713924) +description = Perry township, OH +station = ('kiln', 0.0046787642885007807) +zone = ('ohz063', 0.0025485060132996442) + +[fips3904778316] +centroid = (0.69048745537996947, -1.4568967855815698) +description = Union township, OH +station = ('kiln', 0.0047324523210239729) +zone = ('ohz063', 0.00024416441819284407) + +[fips3904781718] +centroid = (0.69008328948508513, -1.456092206249693) +description = Washington Court House city, OH +station = ('kiln', 0.0051292749390242027) +zone = ('ohz063', 0.00052772036897577829) + +[fips3904782166] +centroid = (0.68882618118475125, -1.4547108130533244) +description = Wayne township, OH +station = ('kiln', 0.0058854729416826209) +zone = ('ohz063', 0.0021739802072263978) + +[fips3904840] +centroid = (0.68669637335183509, -1.4737218468372577) +description = Beckett Ridge CDP, OH +station = ('khao', 0.0011275883016549008) +zone = ('ohz070', 0.0024733671057672003) + +[fips3904878] +centroid = (0.72241427469451125, -1.4230651662812792) +description = Bedford city, OH +station = ('kbkl', 0.0030138995030299068) +zone = ('ohz011', 0.0017109774913664606) + +[fips39049] +centroid = (0.69759845035137003, -1.4487674084449231) +description = Franklin County, OH +station = ('kcmh', 0.0017536572138328998) +zone = ('ohz055', 1.4191249772330092e-05) + +[fips3904906278] +centroid = (0.69752708383825601, -1.4474797219760942) +description = Bexley city, OH +station = ('kcmh', 0.00091291025465477097) +zone = ('ohz055', 0.0010035675637665193) + +[fips3904906922] +centroid = (0.69978337568206417, -1.4469846593337661) +description = Blendon township, OH +station = ('kcmh', 0.0016794846533447303) +zone = ('ohz055', 0.0025814202188872656) + +[fips3904909442] +centroid = (0.69818411303516925, -1.452592943272492) +description = Brown township, OH +station = ('ktzr', 0.0021533571181105958) +zone = ('ohz054', 0.0029883847429981432) + +[fips3904916112] +centroid = (0.69899611001636697, -1.4478917942124903) +description = Clinton township, OH +station = ('kcmh', 0.0013211528570193688) +zone = ('ohz055', 0.0015539193383103326) + +[fips3904918000] +centroid = (0.69784867820622842, -1.4483904347797849) +description = Columbus city, OH +station = ('kcmh', 0.0014103181695761776) +zone = ('ohz055', 0.00039112745218189724) + +[fips3904920] +centroid = (0.7226299275768876, -1.4224872528593588) +description = Bedford Heights city, OH +station = ('kcgf', 0.0028562977218394687) +zone = ('ohz011', 0.0020758487264517815) + +[fips3904922694] +centroid = (0.69994246244338343, -1.4511219972322036) +description = Dublin city, OH +station = ('kosu', 0.00087472892313484154) +zone = ('ohz055', 0.0029464853756750861) + +[fips3904928280] +centroid = (0.69685371835954402, -1.4491269113642491) +description = Franklin township, OH +station = ('ktzr', 0.0015197078945843449) +zone = ('ohz055', 0.00079188208650656942) + +[fips3904931304] +centroid = (0.69777040018927639, -1.4493233481715608) +description = Grandview Heights city, OH +station = ('ktzr', 0.0018879161107640567) +zone = ('ohz055', 0.00044551045337864434) + +[fips3904933026] +centroid = (0.69550937850319539, -1.4479398605800899) +description = Hamilton township, OH +station = ('klck', 0.00068511797454393389) +zone = ('ohz055', 0.0021900298187906933) + +[fips3904937772] +centroid = (0.69559496944971311, -1.4498543471431879) +description = Jackson township, OH +station = ('ktzr', 0.0012030627717444647) +zone = ('ohz055', 0.0021671769363006475) + +[fips3904938612] +centroid = (0.69854071870793666, -1.4451320097860667) +description = Jefferson township, OH +station = ('kcmh', 0.0011871305731906388) +zone = ('ohz055', 0.0029524510032857914) + +[fips3904946410] +centroid = (0.69526967498372649, -1.4462744674078372) +description = Madison township, OH +station = ('klck', 0.00097090443599159664) +zone = ('ohz055', 0.0030243240899672191) + +[fips3904947474] +centroid = (0.69788000686630169, -1.4496928692807933) +description = Marble Cliff village, OH +station = ('kosu', 0.0017313934880665849) +zone = ('ohz055', 0.00074909079675006241) + +[fips3904950064] +centroid = (0.69857799894075923, -1.446397722559613) +description = Mifflin township, OH +station = ('kcmh', 0.00046926686490757761) +zone = ('ohz055', 0.0020737787479086687) + +[fips3904957344] +centroid = (0.69872232021660663, -1.4511168659642029) +description = Norwich township, OH +station = ('kosu', 0.0011742089969040883) +zone = ('ohz055', 0.0021086043892756846) + +[fips3904961840] +centroid = (0.70034086875173618, -1.4494805499772883) +description = Perry township, OH +station = ('kosu', 0.00088217788583284419) +zone = ('ohz046', 0.0027154340349755572) + +[fips3904962974] +centroid = (0.69977271172033439, -1.4451377344660132) +description = Plain township, OH +station = ('kcmh', 0.001980876402325138) +zone = ('ohz055', 0.003537982238149516) + +[fips3904963254] +centroid = (0.69582386938111218, -1.4520187474018784) +description = Pleasant township, OH +station = ('ktzr', 0.0009604011062478824) +zone = ('ohz054', 0.002788774033001977) + +[fips3904964570] +centroid = (0.6970639781745317, -1.4518741119667657) +description = Prairie township, OH +station = ('ktzr', 0.00093300602878441388) +zone = ('ohz054', 0.0029640228130524953) + +[fips3904971787] +centroid = (0.69989315689201459, -1.4488571881816459) +description = Sharon township, OH +station = ('kosu', 0.00098289849495670025) +zone = ('ohz055', 0.0022926915635799361) + +[fips3904977714] +centroid = (0.69739461334802955, -1.4452491911920455) +description = Truro township, OH +station = ('kcmh', 0.0012626568204416289) +zone = ('ohz055', 0.0027183373276761093) + +[fips3904979002] +centroid = (0.69861318477847945, -1.449857610908889) +description = Upper Arlington city, OH +station = ('kosu', 0.0009874359519013937) +zone = ('ohz055', 0.0013033381821246056) + +[fips3904981242] +centroid = (0.69938123436911215, -1.4518688759790097) +description = Washington township, OH +station = ('kosu', 0.0013857799873822024) +zone = ('ohz055', 0.0029570505416842874) + +[fips3904983342] +centroid = (0.70017024536406114, -1.4471826145775273) +description = Westerville city, OH +station = ('kcmh', 0.0020888858989130724) +zone = ('ohz055', 0.0028471673275707859) + +[fips3904984742] +centroid = (0.69759009022425289, -1.4465977896517692) +description = Whitehall city, OH +station = ('kcmh', 0.00054167294666108805) +zone = ('ohz055', 0.001676745769122259) + +[fips3905013] +centroid = (0.69865805719354823, -1.4426097123109622) +description = Beechwood Trails CDP, OH +station = ('kcmh', 0.0030912936074177508) +zone = ('ohz056', 0.002536368735999293) + +[fips3905074] +centroid = (0.69841987211052858, -1.4093068405075628) +description = Bellaire village, OH +station = ('khlg', 0.0029252526629062634) +zone = ('wvz003', 0.0022163715839649493) + +[fips39051] +centroid = (0.72600921662130657, -1.4682454399768126) +description = Fulton County, OH +station = ('ktol', 0.0042397941768875375) +zone = ('ohz002', 0.00010983350057404415) + +[fips3905101728] +centroid = (0.72767743722694778, -1.4648203709461141) +description = Amboy township, OH +station = ('ktol', 0.0025381034565230246) +zone = ('ohz002', 0.0030774505064870075) + +[fips3905102] +centroid = (0.69182060767581288, -1.4675672748426576) +description = Bellbrook city, OH +station = ('kmgy', 0.0020986076105942116) +zone = ('ohz062', 0.0027867204223173251) + +[fips3905114072] +centroid = (0.72744227156353403, -1.4689337105673366) +description = Chesterfield township, OH +station = ('kadg', 0.0034322182896088273) +zone = ('ohz002', 0.0014230602219088258) + +[fips3905116] +centroid = (0.70701561867660068, -1.4616310958973597) +description = Belle Center village, OH +station = ('kedj', 0.0025807393162948092) +zone = ('ohz044', 0.0021208755354882826) + +[fips3905116126] +centroid = (0.72492081184647039, -1.4689328379027105) +description = Clinton township, OH +station = ('ktol', 0.004823853972102451) +zone = ('ohz002', 0.0012470667537542186) + +[fips3905122442] +centroid = (0.72622898848071771, -1.4688861154386346) +description = Dover township, OH +station = ('kadg', 0.0045948340188029149) +zone = ('ohz002', 0.00042675740533398783) + +[fips3905128294] +centroid = (0.72624762859712888, -1.4715252278005753) +description = Franklin township, OH +station = ('kdfi', 0.0050973296657359319) +zone = ('ohz002', 0.0023815845546528523) + +[fips3905129036] +centroid = (0.72642640267241076, -1.4650397413797971) +description = Fulton township, OH +station = ('ktol', 0.0019501017884272337) +zone = ('ohz002', 0.0024958989033427225) + +[fips3905129876] +centroid = (0.72500757216358691, -1.4713187728033568) +description = German township, OH +station = ('kdfi', 0.0040027602678755136) +zone = ('ohz002', 0.0024719134192782715) + +[fips3905130] +centroid = (0.70446265576653855, -1.4619404380539831) +description = Bellefontaine city, OH +station = ('kedj', 0.00076608943473895443) +zone = ('ohz044', 0.00045116916915232096) + +[fips3905130940] +centroid = (0.72732214055111921, -1.4714795874406355) +description = Gorham township, OH +station = ('kadg', 0.0044898077293650347) +zone = ('ohz002', 0.0026462202008902978) + +[fips3905158] +centroid = (0.69444589703007764, -1.4234300099081161) +description = Belle Valley village, OH +station = ('kzzv', 0.0053928011083977353) +zone = ('ohz068', 0.0014125006893122771) + +[fips3905162638] +centroid = (0.72646486972912472, -1.4670595062033751) +description = Pike township, OH +station = ('ktol', 0.0034173765469596444) +zone = ('ohz002', 0.0010337735426846977) + +[fips3905168896] +centroid = (0.72766204342294516, -1.4668668393072473) +description = Royalton township, OH +station = ('kadg', 0.0030891004511175101) +zone = ('ohz002', 0.0019235819486379286) + +[fips3905175861] +centroid = (0.72500448293081088, -1.4649584264899467) +description = Swan Creek township, OH +station = ('ktol', 0.0019316911735640652) +zone = ('ohz002', 0.0027572787873918116) + +[fips3905187024] +centroid = (0.72495969778220481, -1.4669020949581375) +description = York township, OH +station = ('ktol', 0.0033287676522593614) +zone = ('ohz002', 0.0015629808524521664) + +[fips3905228] +centroid = (0.72036922005007187, -1.4458282216246872) +description = Bellevue city, OH +station = ('klpr', 0.0087080260956722416) +zone = ('ohz009', 0.0033024553124490507) + +[fips3905284] +centroid = (0.7089066480145515, -1.440126143691959) +description = Bellville village, OH +station = ('kmfd', 0.0034788860615266493) +zone = ('ohz029', 0.0027634467360790377) + +[fips39053] +centroid = (0.67748525859809483, -1.4364364478400728) +description = Gallia County, OH +station = ('k3i2', 0.0032451356755364672) +zone = ('ohz086', 0.00024653093699188069) + +[fips3905300422] +centroid = (0.67868812206527673, -1.4341414445934557) +description = Addison township, OH +station = ('k3i2', 0.0010960507481362338) +zone = ('ohz086', 0.0022610382924511049) + +[fips3905312] +centroid = (0.69862002646914734, -1.4144311097381257) +description = Belmont village, OH +station = ('khlg', 0.0057532832639152825) +zone = ('ohz059', 0.00073233186874595193) + +[fips3905313946] +centroid = (0.68013779254198337, -1.4339501216008519) +description = Cheshire township, OH +station = ('k3i2', 0.0012618210980581833) +zone = ('ohz085', 0.0027045706067997128) + +[fips3905315462] +centroid = (0.67562325408560464, -1.4347669531440779) +description = Clay township, OH +station = ('k3i2', 0.003851612055069301) +zone = ('ohz086', 0.0025026285047605509) + +[fips3905329218] +centroid = (0.67778919023403716, -1.4346414639708596) +description = Gallipolis township, OH +station = ('k3i2', 0.001953482502400238) +zone = ('ohz086', 0.0016131908425717771) + +[fips3905331738] +centroid = (0.67735816372196467, -1.4360381113448906) +description = Green township, OH +station = ('k3i2', 0.0030596221707564638) +zone = ('ohz086', 0.00057928997949404314) + +[fips3905332074] +centroid = (0.67735065880618106, -1.4401403681253628) +description = Greenfield township, OH +station = ('k3i2', 0.0059389484530405967) +zone = ('ohz086', 0.0026933986245670865) + +[fips3905332760] +centroid = (0.6742658591664511, -1.4365688136105443) +description = Guyan township, OH +station = ('khts', 0.0056874749322663697) +zone = ('ohz086', 0.0033563152391293421) + +[fips3905333824] +centroid = (0.6758240891226317, -1.4363008183039006) +description = Harrison township, OH +station = ('k3i2', 0.0042865928157736818) +zone = ('ohz086', 0.0018233838800308906) + +[fips3905336848] +centroid = (0.68059040877690291, -1.4378888410304127) +description = Huntington township, OH +station = ('k3i2', 0.004136263998143797) +zone = ('ohz086', 0.0031103437250008564) + +[fips3905352094] +centroid = (0.68029429621600956, -1.4359111037352228) +description = Morgan township, OH +station = ('k3i2', 0.0026008946255880656) +zone = ('ohz086', 0.0027434493335725973) + +[fips3905357974] +centroid = (0.67426317135940306, -1.4349626394598114) +description = Ohio township, OH +station = ('k3i2', 0.0051813883025045599) +zone = ('wvz007', 0.0035358499740712522) + +[fips3905361854] +centroid = (0.67735673255197804, -1.4381099044334702) +description = Perry township, OH +station = ('k3i2', 0.0044595345066947177) +zone = ('ohz086', 0.0011290620186840553) + +[fips3905365228] +centroid = (0.67892293866284015, -1.4379985000673154) +description = Raccoon township, OH +station = ('k3i2', 0.0039868354659844205) +zone = ('ohz086', 0.0016483126584576004) + +[fips3905374120] +centroid = (0.67881397775763808, -1.4361457632531534) +description = Springfield township, OH +station = ('k3i2', 0.0025635923825039746) +zone = ('ohz086', 0.0012692758295232338) + +[fips3905380584] +centroid = (0.67580246449319947, -1.4383681084430104) +description = Walnut township, OH +station = ('k3i2', 0.0054484626800194239) +zone = ('ohz086', 0.0022349575264494709) + +[fips3905396] +centroid = (0.71828760075780329, -1.4650502657151867) +description = Belmore village, OH +station = ('kfdy', 0.0043426871778072668) +zone = ('ohz016', 0.003412891990924588) + +[fips3905410] +centroid = (0.71418342411515368, -1.4136785063113733) +description = Beloit village, OH +station = ('kpov', 0.0062034221533516952) +zone = ('ohz033', 0.0033678966474503386) + +[fips3905424] +centroid = (0.68557391720329253, -1.424054942500085) +description = Belpre city, OH +station = ('kpkb', 0.0021320279279559073) +zone = ('wvz009', 0.0015998575297427623) + +[fips39055] +centroid = (0.7242998062453182, -1.4167449276340798) +description = Geauga County, OH +station = ('kpov', 0.0049770131598684637) +zone = ('ohz013', 6.6673555239500729e-05) + +[fips3905502904] +centroid = (0.72231472111397743, -1.4177628385604277) +description = Auburn township, OH +station = ('kpov', 0.0028998094122818239) +zone = ('ohz013', 0.0021066230074209161) + +[fips3905503590] +centroid = (0.72233997602825373, -1.4196972742368759) +description = Bainbridge township, OH +station = ('kpov', 0.0031582847145339077) +zone = ('ohz013', 0.002908673230718565) + +[fips3905510464] +centroid = (0.72366873009438215, -1.4162205085537329) +description = Burton township, OH +station = ('kpov', 0.0044677401354740638) +zone = ('ohz013', 0.00078315242562388104) + +[fips3905513554] +centroid = (0.72569549368826058, -1.4173654794496262) +description = Chardon city, OH +station = ('kcgf', 0.0035879557084600518) +zone = ('ohz013', 0.0014483175724742195) + +[fips3905513561] +centroid = (0.72637180877340846, -1.418079319113692) +description = Chardon township, OH +station = ('kcgf', 0.0031754532951558663) +zone = ('ohz012', 0.0013849880308373205) + +[fips3905513988] +centroid = (0.72493756700728951, -1.419666730974966) +description = Chester township, OH +station = ('kcgf', 0.0019363524633354274) +zone = ('ohz013', 0.0022140325242832426) + +[fips3905515168] +centroid = (0.72501683986191512, -1.4163693327790505) +description = Claridon township, OH +station = ('kpov', 0.0057375456537954502) +zone = ('ohz013', 0.00079413762239145369) + +[fips3905532914] +centroid = (0.72653234415800683, -1.4164324613380952) +description = Hambden township, OH +station = ('kcgf', 0.0044062916374305004) +zone = ('ohz012', 0.0016126081839664796) + +[fips3905536918] +centroid = (0.72397693778699179, -1.420466179038842) +description = Hunting Valley village, OH +station = ('kcgf', 0.0019592405070631876) +zone = ('ohz013', 0.0027403218230418092) + +[fips3905536946] +centroid = (0.72504239148216421, -1.4144484408575981) +description = Huntsburg township, OH +station = ('khzy', 0.0061349243061857303) +zone = ('ohz013', 0.0019330317092121996) + +[fips3905549700] +centroid = (0.72360132547867018, -1.4150194427756806) +description = Middlefield village, OH +station = ('kpov', 0.0047670091419470973) +zone = ('ohz013', 0.0015297195102825444) + +[fips3905549714] +centroid = (0.72375151106080415, -1.41440426657423) +description = Middlefield township, OH +station = ('kpov', 0.0051319077964757428) +zone = ('ohz013', 0.0019017999062214803) + +[fips3905550] +centroid = (0.7227992245143311, -1.4209330022538729) +description = Bentleyville village, OH +station = ('kcgf', 0.0028275788886176446) +zone = ('ohz013', 0.0034204025384000246) + +[fips3905551842] +centroid = (0.72609541843306258, -1.4146550354811567) +description = Montville township, OH +station = ('khzy', 0.0055902276553659418) +zone = ('ohz013', 0.0024231763184821126) + +[fips3905553340] +centroid = (0.72485969041606557, -1.4180574501381644) +description = Munson township, OH +station = ('kcgf', 0.0031258482519837746) +zone = ('ohz013', 0.001072113435971709) + +[fips3905554292] +centroid = (0.72352231442343229, -1.4177166396951275) +description = Newbury township, OH +station = ('kpov', 0.0041066699714573706) +zone = ('ohz013', 0.0010231259581507891) + +[fips3905559948] +centroid = (0.72226005740180499, -1.414553736571371) +description = Parkman township, OH +station = ('kpov', 0.0038803299842732342) +zone = ('ohz013', 0.0026636118960314207) + +[fips3905569232] +centroid = (0.72378137364430584, -1.4196815488203154) +description = Russell township, OH +station = ('kcgf', 0.002508347983916056) +zone = ('ohz013', 0.0021961331779492923) + +[fips3905573684] +centroid = (0.72315652831879929, -1.4194407457434175) +description = South Russell village, OH +station = ('kcgf', 0.0030823554324795918) +zone = ('ohz013', 0.0022649884977205244) + +[fips3905576628] +centroid = (0.72737863685900628, -1.4147394046971982) +description = Thompson township, OH +station = ('khzy', 0.005034275566877789) +zone = ('ohz012', 0.0023542279318890694) + +[fips3905577574] +centroid = (0.72223323169120179, -1.4163214060377907) +description = Troy township, OH +station = ('kpov', 0.0031037466233231632) +zone = ('ohz013', 0.0021050306990088225) + +[fips3905662] +centroid = (0.7156589254647896, -1.4624578758173219) +description = Benton Ridge village, OH +station = ('kfdy', 0.0016735173416950538) +zone = ('ohz017', 0.0016622758562613322) + +[fips3905676] +centroid = (0.67623691185060586, -1.4592733480641329) +description = Bentonville CDP, OH +station = ('kiln', 0.012231535989247783) +zone = ('ohz081', 0.002567365837932308) + +[fips3905690] +centroid = (0.72205227595435506, -1.4287571911175156) +description = Berea city, OH +station = ('kcle', 0.00053659474141372039) +zone = ('ohz011', 0.0028191823197930058) + +[fips39057] +centroid = (0.6926771803661067, -1.4642421259116356) +description = Greene County, OH +station = ('ksgh', 0.0027666629278945143) +zone = ('ohz062', 9.8009521640784024e-05) + +[fips3905704220] +centroid = (0.69483377900304089, -1.4663679369405647) +description = Bath township, OH +station = ('kffo', 0.00059218000473880471) +zone = ('ohz062', 0.0026930376668889257) + +[fips3905704724] +centroid = (0.69337827912663275, -1.4666742945841671) +description = Beavercreek township, OH +station = ('kffo', 0.0018566020077284491) +zone = ('ohz062', 0.0020394867565027459) + +[fips3905705102] +centroid = (0.69182060767581288, -1.4675672748426576) +description = Bellbrook city, OH +station = ('kmgy', 0.0020986076105942116) +zone = ('ohz062', 0.0027867204223173251) + +[fips3905710856] +centroid = (0.69090486832387643, -1.4634988949029664) +description = Caesarscreek township, OH +station = ('kiln', 0.0028206741015043683) +zone = ('ohz062', 0.0019101502416011763) + +[fips3905712798] +centroid = (0.69355331819731525, -1.4624039625967278) +description = Cedarville township, OH +station = ('ksgh', 0.0019141445159245448) +zone = ('ohz062', 0.0015684983258628089) + +[fips3905718] +centroid = (0.70722130572894815, -1.4117105603132871) +description = Bergholz village, OH +station = ('khlg', 0.0069266389078458893) +zone = ('ohz050', 0.0028864958446847334) + +[fips3905732] +centroid = (0.72794675898382299, -1.463256486123157) +description = Berkey village, OH +station = ('ktol', 0.0022375111338979927) +zone = ('ohz003', 0.0028055313970683548) + +[fips3905738626] +centroid = (0.69091715544181054, -1.4614122316091596) +description = Jefferson township, OH +station = ('kiln', 0.0027609784186330547) +zone = ('ohz062', 0.0027937457985008577) + +[fips3905740040] +centroid = (0.69247557738420873, -1.4678821845995951) +description = Kettering city, OH +station = ('kmgy', 0.0021916797319316982) +zone = ('ohz062', 0.0028825818720117952) + +[fips3905749336] +centroid = (0.69459156220944906, -1.4638780676829624) +description = Miami township, OH +station = ('ksgh', 0.00087997915501413773) +zone = ('ohz062', 0.0018562977527815231) + +[fips3905754810] +centroid = (0.69216757913110938, -1.4629932206587859) +description = New Jasper township, OH +station = ('ksgh', 0.0031843032261256272) +zone = ('ohz062', 0.0010645587694190963) + +[fips3905768630] +centroid = (0.69324120096718111, -1.4612810003027021) +description = Ross township, OH +station = ('ksgh', 0.0026060431417476277) +zone = ('ohz062', 0.0022642137038385284) + +[fips3905772473] +centroid = (0.691772209695655, -1.4610038769240705) +description = Silvercreek township, OH +station = ('kiln', 0.0036684448715725393) +zone = ('ohz062', 0.002613147223308028) + +[fips3905774223] +centroid = (0.6913970686262314, -1.4658068833992188) +description = Spring Valley township, OH +station = ('kffo', 0.0039253458443566178) +zone = ('ohz062', 0.0018558878545346952) + +[fips3905775201] +centroid = (0.69164134490834051, -1.4671826915419808) +description = Sugarcreek township, OH +station = ('kmgy', 0.0023372672185679819) +zone = ('ohz062', 0.0025811955266643724) + +[fips3905786772] +centroid = (0.6926059883859178, -1.4650678062741691) +description = Xenia city, OH +station = ('kffo', 0.002989935614642255) +zone = ('ohz062', 0.00071786907921904744) + +[fips3905786786] +centroid = (0.69367556105812489, -1.4651804149175078) +description = Xenia township, OH +station = ('kffo', 0.0020594556508665464) +zone = ('ohz062', 0.0012189511071902667) + +[fips3905816] +centroid = (0.70802508220936911, -1.4277768396766706) +description = Berlin CDP, OH +station = ('kbjj', 0.0053329173814176739) +zone = ('ohz038', 0.0016445837253068083) + +[fips39059] +centroid = (0.69912069161837442, -1.4224062521287737) +description = Guernsey County, OH +station = ('kzzv', 0.0056893455410449894) +zone = ('ohz058', 9.3586149461718482e-05) + +[fips3905900] +centroid = (0.72121800857190177, -1.4396797059225916) +description = Berlin Heights village, OH +station = ('klpr', 0.0040152175782130909) +zone = ('ohz009', 0.0018487329024427165) + +[fips3905900282] +centroid = (0.69884217197634113, -1.4255061314132407) +description = Adams township, OH +station = ('kzzv', 0.0033938367714656564) +zone = ('ohz058', 0.0024302800777896683) + +[fips3905911003] +centroid = (0.69880525826266149, -1.423879013311484) +description = Cambridge township, OH +station = ('kzzv', 0.0045211806303662545) +zone = ('ohz058', 0.0011999413502635436) + +[fips3905912938] +centroid = (0.69849609063896323, -1.4224571284764693) +description = Center township, OH +station = ('kzzv', 0.0054800206150773488) +zone = ('ohz058', 0.00055199626706063968) + +[fips3905937786] +centroid = (0.69760005605428177, -1.423725371977431) +description = Jackson township, OH +station = ('kzzv', 0.0043817650713554712) +zone = ('ohz058', 0.0017885323796793531) + +[fips3905938640] +centroid = (0.70000902930105446, -1.422241911926406) +description = Jefferson township, OH +station = ('kphd', 0.0063400037662588431) +zone = ('ohz058', 0.0009710432743414945) + +[fips3905940838] +centroid = (0.70010627904697564, -1.425267911423636) +description = Knox township, OH +station = ('kzzv', 0.0042704625429052113) +zone = ('ohz058', 0.0024791156771553436) + +[fips3905943134] +centroid = (0.7003699982969519, -1.4235916797567281) +description = Liberty township, OH +station = ('kzzv', 0.0054425191402040453) +zone = ('ohz058', 0.0016370854858776659) + +[fips3905944716] +centroid = (0.70017684270863378, -1.4187361388710951) +description = Londonderry township, OH +station = ('kphd', 0.0063371331063477154) +zone = ('ohz058', 0.002983566170136882) + +[fips3905946424] +centroid = (0.69997176652152449, -1.4204198580004939) +description = Madison township, OH +station = ('kphd', 0.0063197292619975162) +zone = ('ohz058', 0.0017405856851456941) + +[fips3905950568] +centroid = (0.69794968041004124, -1.4186988935448575) +description = Millwood township, OH +station = ('kphd', 0.0085084574640910873) +zone = ('ohz058', 0.0029958627423872283) + +[fips3905951380] +centroid = (0.7011773527023395, -1.4221217111008211) +description = Monroe township, OH +station = ('kphd', 0.0051718458844359546) +zone = ('ohz058', 0.0021429745284313267) + +[fips3905959290] +centroid = (0.69883613313712922, -1.4186301624789139) +description = Oxford township, OH +station = ('kphd', 0.007655107996949859) +zone = ('ohz058', 0.0028489676355295734) + +[fips3905966698] +centroid = (0.69728692653318147, -1.4214295309727727) +description = Richland township, OH +station = ('kzzv', 0.0061290897299822135) +zone = ('ohz058', 0.0018882575124295616) + +[fips3905973986] +centroid = (0.6960598378959818, -1.4249217951796731) +description = Spencer township, OH +station = ('kzzv', 0.0036559216306244068) +zone = ('ohz068', 0.0032092007538108767) + +[fips3905979156] +centroid = (0.69675784742373192, -1.4236260976495776) +description = Valley township, OH +station = ('kzzv', 0.0044742945803917522) +zone = ('ohz058', 0.0024860995758172518) + +[fips3905981256] +centroid = (0.70124556016950734, -1.4204675229423658) +description = Washington township, OH +station = ('kphd', 0.0050466895277970084) +zone = ('ohz058', 0.0026296748720381993) + +[fips3905983664] +centroid = (0.69748784883667114, -1.4255454885878733) +description = Westland township, OH +station = ('kzzv', 0.0029822953893626925) +zone = ('ohz058', 0.0029039205473524008) + +[fips3905984616] +centroid = (0.70143730204113153, -1.4242104687897303) +description = Wheeling township, OH +station = ('kphd', 0.0054268099485552251) +zone = ('ohz058', 0.0027898730198563384) + +[fips3905985708] +centroid = (0.69862630965445449, -1.420811125912206) +description = Wills township, OH +station = ('kphd', 0.0076514641706251964) +zone = ('ohz058', 0.0012433134072763487) + +[fips3906068] +centroid = (0.68003019299359779, -1.4675524569973084) +description = Bethel village, OH +station = ('kluk', 0.0050992426087174995) +zone = ('ohz078', 0.0017403912327083283) + +[fips39061] +centroid = (0.68411543281386344, -1.4755744265717872) +description = Hamilton County, OH +station = ('kluk', 0.002416810657416198) +zone = ('ohz077', 3.4220885722994034e-05) + +[fips3906101672] +centroid = (0.68422702916623601, -1.4735522531938416) +description = Amberley village, OH +station = ('kluk', 0.0018101819783906559) +zone = ('ohz077', 0.0015517918075173638) + +[fips3906101980] +centroid = (0.68221813774389795, -1.472258667512141) +description = Anderson township, OH +station = ('kluk', 0.00087066945776118022) +zone = ('kyz093', 0.0024967742892201628) + +[fips3906102428] +centroid = (0.68443407757539998, -1.4740265987779484) +description = Arlington Heights village, OH +station = ('kluk', 0.0020779107314085627) +zone = ('ohz077', 0.0012274940152722721) + +[fips3906107300] +centroid = (0.68498190152101601, -1.4728790447947622) +description = Blue Ash city, OH +station = ('kluk', 0.002583952673872591) +zone = ('ohz077', 0.0022514137948734876) + +[fips3906114128] +centroid = (0.68343510347143599, -1.4767923522304138) +description = Cheviot city, OH +station = ('kcvg', 0.0020146901932775962) +zone = ('ohz077', 0.0011660606791417702) + +[fips3906115000] +centroid = (0.68312015880791366, -1.4749157393120844) +description = Cincinnati city, OH +station = ('kluk', 0.0014010381125291558) +zone = ('ohz077', 0.0010851511733031526) + +[fips3906116616] +centroid = (0.68512533267894482, -1.4769697998554641) +description = Colerain township, OH +station = ('khao', 0.002432874238246526) +zone = ('ohz077', 0.0015131886664408872) + +[fips3906116882] +centroid = (0.68366794784694451, -1.4733656949500959) +description = Columbia township, OH +station = ('kluk', 0.0012442795162989862) +zone = ('ohz077', 0.0017421717524489036) + +[fips3906119470] +centroid = (0.68557327143146929, -1.4786479339312568) +description = Crosby township, OH +station = ('khao', 0.0031340033282579783) +zone = ('ohz077', 0.0028236744452197898) + +[fips3906121266] +centroid = (0.68423371377727105, -1.4730142729052069) +description = Deer Park city, OH +station = ('kluk', 0.0018284698819382304) +zone = ('ohz077', 0.0019678689027169596) + +[fips3906121504] +centroid = (0.68245785871665932, -1.4771574052967609) +description = Delhi township, OH +station = ('kcvg', 0.0010038377193981043) +zone = ('ohz077', 0.0020543006070182375) + +[fips3906125186] +centroid = (0.68391512137561206, -1.4746096085612848) +description = Elmwood Place village, OH +station = ('kluk', 0.0017833833633486573) +zone = ('ohz077', 0.00074678702563205123) + +[fips3906125802] +centroid = (0.68505536242923248, -1.4735195108170742) +description = Evendale village, OH +station = ('khao', 0.0023611840922953364) +zone = ('ohz077', 0.0018440813742743021) + +[fips3906125942] +centroid = (0.68317771976664443, -1.4730074486678315) +description = Fairfax village, OH +station = ('kluk', 0.00079913145770330225) +zone = ('ohz077', 0.0021692523066077583) + +[fips3906125970] +centroid = (0.68595553344424098, -1.4752149236524614) +description = Fairfield city, OH +station = ('khao', 0.0011262987109216642) +zone = ('ohz077', 0.0018843529730023833) + +[fips3906127706] +centroid = (0.68567055608397542, -1.4752514184871206) +description = Forest Park city, OH +station = ('khao', 0.0014126438343114644) +zone = ('ohz077', 0.0015982244379732224) + +[fips3906130380] +centroid = (0.68539947154455561, -1.4740717678989901) +description = Glendale village, OH +station = ('khao', 0.0018554876475229446) +zone = ('ohz077', 0.0017387233771574491) + +[fips3906130786] +centroid = (0.68394840480444752, -1.4738743886138821) +description = Golf Manor village, OH +station = ('kluk', 0.0015782223154246319) +zone = ('ohz077', 0.0013037088799850763) + +[fips3906131752] +centroid = (0.68355605478859915, -1.4772972759830159) +description = Green township, OH +station = ('kcvg', 0.0020306562026690704) +zone = ('ohz077', 0.0014577860655467956) + +[fips3906132158] +centroid = (0.68533609863941569, -1.4751376753797683) +description = Greenhills village, OH +station = ('khao', 0.0017421763453329706) +zone = ('ohz077', 0.0012869325155845774) + +[fips3906133852] +centroid = (0.68519336561318755, -1.4798827543770428) +description = Harrison township, OH +station = ('kcvg', 0.0040124241132870834) +zone = ('inz074', 0.0031611995644029479) + +[fips3906138] +centroid = (0.6984210240278349, -1.4149838904188174) +description = Bethesda village, OH +station = ('khlg', 0.0062210407948771604) +zone = ('ohz059', 0.0011242987700858134) + +[fips3906143722] +centroid = (0.68492751706152388, -1.4740502479893129) +description = Lincoln Heights village, OH +station = ('khao', 0.0022971219814952519) +zone = ('ohz077', 0.0014309478184098144) + +[fips3906144366] +centroid = (0.6846531862096954, -1.4740414340765904) +description = Lockland village, OH +station = ('kluk', 0.0022932205190032804) +zone = ('ohz077', 0.0012957127694164777) + +[fips3906145108] +centroid = (0.68539250768084015, -1.4710494161398968) +description = Loveland city, OH +station = ('kluk', 0.003462661618128529) +zone = ('ohz071', 0.0031792876806658668) + +[fips3906146312] +centroid = (0.68390909998969263, -1.4725884998341829) +description = Madeira city, OH +station = ('kluk', 0.0015981218008014255) +zone = ('ohz077', 0.0022998103804358675) + +[fips3906147600] +centroid = (0.68318429965792438, -1.4726794663947966) +description = Mariemont village, OH +station = ('kluk', 0.00092091309333238315) +zone = ('ohz077', 0.0023998996732384264) + +[fips3906149364] +centroid = (0.68355802701065405, -1.4789924444723079) +description = Miami township, OH +station = ('kcvg', 0.0022393990551520882) +zone = ('ohz077', 0.0027232136403341615) + +[fips3906150176] +centroid = (0.6836607570904264, -1.4712947047129719) +description = Milford city, OH +station = ('kluk', 0.0020170953558484245) +zone = ('ohz078', 0.0029292468280951978) + +[fips3906151716] +centroid = (0.6850632338641589, -1.472150212752422) +description = Montgomery city, OH +station = ('kluk', 0.0027982576784580599) +zone = ('ohz077', 0.0028058798371012055) + +[fips3906152752] +centroid = (0.68475815031091036, -1.4756319002640552) +description = Mount Healthy city, OH +station = ('khao', 0.0023568323680407772) +zone = ('ohz077', 0.00067261362834513132) + +[fips3906155678] +centroid = (0.68284240711075117, -1.4722133587647592) +description = Newtown village, OH +station = ('kluk', 0.00097540897310458734) +zone = ('ohz077', 0.0028694772725318431) + +[fips3906156322] +centroid = (0.68446835584190924, -1.4757106146133203) +description = North College Hill city, OH +station = ('khao', 0.0026528536351847539) +zone = ('ohz077', 0.00040025420255758741) + +[fips3906157386] +centroid = (0.68347943483443674, -1.473991098780963) +description = Norwood city, OH +station = ('kluk', 0.0011673720303817916) +zone = ('ohz077', 0.0013511142695116661) + +[fips3906165732] +centroid = (0.68458970858480028, -1.4736382979259648) +description = Reading city, OH +station = ('kluk', 0.0021775728608649028) +zone = ('ohz077', 0.0015612645024359365) + +[fips3906169470] +centroid = (0.68367594145491872, -1.474700854374579) +description = St. Bernard city, OH +station = ('kluk', 0.001633361989431635) +zone = ('ohz077', 0.0007748064692725858) + +[fips3906171892] +centroid = (0.68557730314204135, -1.4731880204322427) +description = Sharonville city, OH +station = ('khao', 0.0021038313335421297) +zone = ('ohz077', 0.0023565174795780975) + +[fips3906172522] +centroid = (0.68396392078149781, -1.47307406788538) +description = Silverton city, OH +station = ('kluk', 0.0015548492519295175) +zone = ('ohz077', 0.0019204605787597874) + +[fips3906174104] +centroid = (0.68575031763079153, -1.4743806737233007) +description = Springdale city, OH +station = ('khao', 0.0014377588455792942) +zone = ('ohz077', 0.0018910960226821841) + +[fips3906174121] +centroid = (0.68493596445510352, -1.4752317486264506) +description = Springfield township, OH +station = ('khao', 0.002144630638451423) +zone = ('ohz077', 0.00088162696223200441) + +[fips3906175973] +centroid = (0.68446256134879258, -1.4724225713821957) +description = Sycamore township, OH +station = ('kluk', 0.0021616170515662177) +zone = ('ohz077', 0.0024495231824724433) + +[fips3906176028] +centroid = (0.68517840814149811, -1.4713728256502911) +description = Symmes township, OH +station = ('kluk', 0.0031518799256318964) +zone = ('ohz071', 0.0034917202442218544) + +[fips3906176428] +centroid = (0.68344520892780514, -1.4715257339460583) +description = Terrace Park village, OH +station = ('kluk', 0.0017445068012741476) +zone = ('ohz078', 0.0029060369839894302) + +[fips3906176582] +centroid = (0.68396934875547155, -1.4719412444810807) +description = The Village of Indian Hill city, OH +station = ('kluk', 0.0018922358491875956) +zone = ('ohz077', 0.0027969192792876387) + +[fips3906184938] +centroid = (0.68414553974346037, -1.4793960867684166) +description = Whitewater township, OH +station = ('kcvg', 0.002904812954668312) +zone = ('ohz077', 0.0029837046471040542) + +[fips3906186366] +centroid = (0.68513844010162739, -1.4742959728947014) +description = Woodlawn village, OH +station = ('khao', 0.0020354450913501582) +zone = ('ohz077', 0.0014284879165896757) + +[fips3906186730] +centroid = (0.68468379928477541, -1.4744781503620246) +description = Wyoming city, OH +station = ('kluk', 0.0024237625505935606) +zone = ('ohz077', 0.0010195751575277205) + +[fips3906194] +centroid = (0.71984452171704483, -1.4527052203032729) +description = Bettsville village, OH +station = ('ktdz', 0.0065090969947134425) +zone = ('ohz008', 0.0022824897724549784) + +[fips3906208] +centroid = (0.72242451977722044, -1.4389008701971817) +description = Beulah Beach CDP, OH +station = ('klpr', 0.0034780165187855401) +zone = ('ohz009', 0.0023428878818111346) + +[fips3906222] +centroid = (0.6902771781116892, -1.4248142654444578) +description = Beverly village, OH +station = ('kpkb', 0.0045354900505345814) +zone = ('ohz076', 0.0025124324577071766) + +[fips3906278] +centroid = (0.69752708383825601, -1.4474797219760942) +description = Bexley city, OH +station = ('kcmh', 0.00091291025465477097) +zone = ('ohz055', 0.0010035675637665193) + +[fips39063] +centroid = (0.71559321381845198, -1.4602477653855215) +description = Hancock County, OH +station = ('kfdy', 0.00028279049431229969) +zone = ('ohz017', 2.5684977282393025e-05) + +[fips3906301308] +centroid = (0.71782018413082671, -1.4600447661402221) +description = Allen township, OH +station = ('kfdy', 0.0019509869679660266) +zone = ('ohz017', 0.0022077759125797005) + +[fips3906301644] +centroid = (0.71479994422012805, -1.4574649600662641) +description = Amanda township, OH +station = ('kfdy', 0.0023675944732249083) +zone = ('ohz017', 0.0022603247563750279) + +[fips3906302400] +centroid = (0.71373290227533637, -1.4600194763193606) +description = Arlington village, OH +station = ('kfdy', 0.0021505882651464748) +zone = ('ohz017', 0.0018936905391141498) + +[fips3906306362] +centroid = (0.71620713338284103, -1.4569957108435729) +description = Biglick township, OH +station = ('kfdy', 0.002483899148481618) +zone = ('ohz017', 0.0025293239687495198) + +[fips3906306838] +centroid = (0.7162555313629988, -1.4630158575791845) +description = Blanchard township, OH +station = ('kfdy', 0.0021142673594034063) +zone = ('ohz017', 0.0021776929901589875) + +[fips3906312392] +centroid = (0.71773968954572476, -1.4586354302225291) +description = Cass township, OH +station = ('kfdy', 0.0022297195273530287) +zone = ('ohz017', 0.0024482138577239208) + +[fips3906321462] +centroid = (0.71326675973871367, -1.4584373877123054) +description = Delaware township, OH +station = ('kfdy', 0.0029496585879969124) +zone = ('ohz017', 0.0027233082841521985) + +[fips3906323086] +centroid = (0.71470751158294255, -1.4609323184247387) +description = Eagle township, OH +station = ('kfdy', 0.0012742033156786111) +zone = ('ohz017', 0.0010440654320376295) + +[fips3906327048] +centroid = (0.71638658813653111, -1.4597514461061318) +description = Findlay city, OH +station = ('kfdy', 0.00063820250082694213) +zone = ('ohz017', 0.0008575132383427898) + +[fips3906337800] +centroid = (0.7146224093286152, -1.4591399001895256) +description = Jackson township, OH +station = ('kfdy', 0.0015115238950748171) +zone = ('ohz017', 0.0013044057906817501) + +[fips3906343148] +centroid = (0.71618180865539449, -1.4612418176609947) +description = Liberty township, OH +station = ('kfdy', 0.00080222392103451658) +zone = ('ohz017', 0.00093330674367141575) + +[fips3906346438] +centroid = (0.71322729784432604, -1.4601386997605643) +description = Madison township, OH +station = ('kfdy', 0.0026501371750923628) +zone = ('ohz017', 0.0023924956198469361) + +[fips3906347698] +centroid = (0.71609323319585583, -1.4588308547388749) +description = Marion township, OH +station = ('kfdy', 0.0010990221749393907) +zone = ('ohz017', 0.0011755182131484721) + +[fips3906358632] +centroid = (0.71323180079379622, -1.4629583664336239) +description = Orange township, OH +station = ('kfdy', 0.0033390902670952793) +zone = ('ohz017', 0.0031405325710471246) + +[fips3906363268] +centroid = (0.71774696756870549, -1.4630313386496496) +description = Pleasant township, OH +station = ('kfdy', 0.0028053505311451052) +zone = ('ohz017', 0.0029851345125739706) + +[fips3906364066] +centroid = (0.71794907669608654, -1.4612318867375509) +description = Portage township, OH +station = ('kfdy', 0.0021991417699612414) +zone = ('ohz017', 0.0024443051277469804) + +[fips3906378330] +centroid = (0.71472335917255059, -1.4629928366863505) +description = Union township, OH +station = ('kfdy', 0.0023639011762493006) +zone = ('ohz017', 0.0022517560568858161) + +[fips3906379408] +centroid = (0.71319865699130081, -1.4613236561496208) +description = Van Buren township, OH +station = ('kfdy', 0.0027954537917311874) +zone = ('ohz017', 0.0025504283510351298) + +[fips3906381284] +centroid = (0.71775819003579588, -1.4566895102796029) +description = Washington township, OH +station = ('kfdy', 0.003283899331195393) +zone = ('ohz017', 0.0034366386707337447) + +[fips39065] +centroid = (0.7096581169772902, -1.4602136092920601) +description = Hardin County, OH +station = ('kaoh', 0.0047176912051360605) +zone = ('ohz026', 6.4752933826712808e-05) + +[fips3906506866] +centroid = (0.71172467407811413, -1.4592963689569669) +description = Blanchard township, OH +station = ('kfdy', 0.0042144701455858859) +zone = ('ohz026', 0.0021433232989253124) + +[fips3906509848] +centroid = (0.70878072250902002, -1.4592167470364907) +description = Buck township, OH +station = ('kedj', 0.0050174898582064165) +zone = ('ohz026', 0.0011339278694389218) + +[fips3906513316] +centroid = (0.7104078231574843, -1.4609114268335923) +description = Cessna township, OH +station = ('kaoh', 0.0041367173445245051) +zone = ('ohz026', 0.00093989391151110175) + +[fips3906522736] +centroid = (0.70871033338028711, -1.4569055296811222) +description = Dudley township, OH +station = ('kedj', 0.006131229082899277) +zone = ('ohz026', 0.0026324429629473707) + +[fips3906531024] +centroid = (0.7099741611982413, -1.4571174475588997) +description = Goshen township, OH +station = ('kmnn', 0.0056657633193860054) +zone = ('ohz026', 0.0023056715765087674) + +[fips3906532837] +centroid = (0.70746715280738415, -1.4575548794293267) +description = Hale township, OH +station = ('kedj', 0.0049731825442240812) +zone = ('ohz026', 0.0029517133691359461) + +[fips3906537814] +centroid = (0.71164971218674089, -1.4579880177897941) +description = Jackson township, OH +station = ('kfdy', 0.0045614536938409361) +zone = ('ohz026', 0.0025557605040016306) + +[fips3906543162] +centroid = (0.71166622300146487, -1.4629774952422256) +description = Liberty township, OH +station = ('kaoh', 0.0028866453721410694) +zone = ('ohz026', 0.0029339517826043075) + +[fips3906545598] +centroid = (0.70918874558155132, -1.4608648090892715) +description = Lynn township, OH +station = ('kaoh', 0.0043320931088209813) +zone = ('ohz026', 0.00074000231309998346) + +[fips3906545920] +centroid = (0.7083668874900797, -1.4620278615962157) +description = McDonald township, OH +station = ('kedj', 0.0037990714929263137) +zone = ('ohz026', 0.0019460666100352536) + +[fips3906547712] +centroid = (0.71029200310832197, -1.4629929414061058) +description = Marion township, OH +station = ('kaoh', 0.0025590354682034342) +zone = ('ohz026', 0.002255136482182995) + +[fips3906563282] +centroid = (0.71008790430559376, -1.4589295007481975) +description = Pleasant township, OH +station = ('kaoh', 0.005645640769156096) +zone = ('ohz026', 0.0010002771137214365) + +[fips3906568784] +centroid = (0.70845479972450265, -1.4634269524311991) +description = Roundhead township, OH +station = ('kaoh', 0.0029267528793141353) +zone = ('ohz026', 0.0027834928841464859) + +[fips3906576198] +centroid = (0.70772675308032584, -1.4603616655725067) +description = Taylor Creek township, OH +station = ('kedj', 0.0036591604516264423) +zone = ('ohz026', 0.0019580809048475498) + +[fips3906581298] +centroid = (0.71167707894941223, -1.4609955342502459) +description = Washington township, OH +station = ('kfdy', 0.0042355714816803992) +zone = ('ohz026', 0.0021043947220896618) + +[fips3906670] +centroid = (0.69646660433145169, -1.4462912225686562) +description = Blacklick Estates CDP, OH +station = ('kcmh', 0.001680469356996672) +zone = ('ohz055', 0.0022237372762484503) + +[fips39067] +centroid = (0.70323361236057658, -1.4153148048449955) +description = Harrison County, OH +station = ('kphd', 0.0052860469545731583) +zone = ('ohz049', 2.6596205971804144e-05) + +[fips3906702358] +centroid = (0.70388699381935327, -1.4141865716566289) +description = Archer township, OH +station = ('kphd', 0.0057049307753904476) +zone = ('ohz049', 0.0010598643339264004) + +[fips3906702764] +centroid = (0.70161396426801848, -1.413913776694542) +description = Athens township, OH +station = ('khlg', 0.0048514947399434542) +zone = ('ohz049', 0.0019590921645244994) + +[fips3906710814] +centroid = (0.70280960207209708, -1.4145390234457766) +description = Cadiz township, OH +station = ('kphd', 0.0060140844559780629) +zone = ('ohz049', 0.00073848644880271754) + +[fips3906728308] +centroid = (0.70401368726975544, -1.4176162483565529) +description = Franklin township, OH +station = ('kphd', 0.0034230049033206278) +zone = ('ohz049', 0.0019157356050521978) + +[fips3906728812] +centroid = (0.70160591830016672, -1.4186037032874537) +description = Freeport township, OH +station = ('kphd', 0.0050120782060313739) +zone = ('ohz049', 0.0030111678010612576) + +[fips3906729890] +centroid = (0.70497075601837911, -1.4122457829817037) +description = German township, OH +station = ('khlg', 0.005288162639296338) +zone = ('ohz050', 0.0020603016398315832) + +[fips3906731766] +centroid = (0.7033582114158764, -1.4125054705211078) +description = Green township, OH +station = ('khlg', 0.0043988732212818463) +zone = ('ohz050', 0.0027054356143299423) + +[fips3906740] +centroid = (0.70311032230221571, -1.4361196356742509) +description = Bladensburg CDP, OH +station = ('k4i3', 0.0032419321809913177) +zone = ('ohz047', 0.0027014319394386161) + +[fips3906751394] +centroid = (0.70512069725441795, -1.4174706180837664) +description = Monroe township, OH +station = ('kphd', 0.0029167724682515233) +zone = ('ohz049', 0.0024867694829395419) + +[fips3906751940] +centroid = (0.7015331904302361, -1.4164083408878325) +description = Moorefield township, OH +station = ('kphd', 0.0058900445497007767) +zone = ('ohz049', 0.0019201976702913337) + +[fips3906756084] +centroid = (0.70513270511967163, -1.415825715076932) +description = North township, OH +station = ('kphd', 0.0040930634167066207) +zone = ('ohz049', 0.0019145370207382844) + +[fips3906757456] +centroid = (0.70274575792805916, -1.4165941311867074) +description = Nottingham township, OH +station = ('kphd', 0.004866110623563024) +zone = ('ohz049', 0.0011084294608140128) + +[fips3906768994] +centroid = (0.70504316972904435, -1.4140542582460351) +description = Rumley township, OH +station = ('kphd', 0.005420716221237536) +zone = ('ohz049', 0.0020230493465906727) + +[fips3906772361] +centroid = (0.70180718966950673, -1.4125582492776882) +description = Short Creek township, OH +station = ('khlg', 0.0038585024469850837) +zone = ('ohz049', 0.002551311765373846) + +[fips3906774724] +centroid = (0.70385519392038176, -1.4159891826146738) +description = Stock township, OH +station = ('kphd', 0.0045123236999633463) +zone = ('ohz049', 0.00079102922744824996) + +[fips3906781312] +centroid = (0.70273961436909216, -1.4183136295657721) +description = Washington township, OH +station = ('kphd', 0.0040822778857183065) +zone = ('ohz049', 0.0023521813468261577) + +[fips3906810] +centroid = (0.72473446304223488, -1.4788364469437647) +description = Blakeslee village, OH +station = ('kdfi', 0.0051266382889367463) +zone = ('ohz001', 0.0019698893902443254) + +[fips39069] +centroid = (0.72143310294891749, -1.4672264294930357) +description = Henry County, OH +station = ('ktol', 0.0055560082438710461) +zone = ('ohz005', 3.6622628462100126e-05) + +[fips3906904052] +centroid = (0.71919913386624246, -1.465163101251328) +description = Bartlow township, OH +station = ('kfdy', 0.0049696263837277054) +zone = ('ohz005', 0.0027202710926913045) + +[fips3906908] +centroid = (0.68582794987592022, -1.4656038143407493) +description = Blanchester village, OH +station = ('kiln', 0.0035169905755215928) +zone = ('ohz072', 0.0030515938473399968) + +[fips3906920016] +centroid = (0.72226188999751961, -1.4649890919249042) +description = Damascus township, OH +station = ('ktol', 0.0039396185641368282) +zone = ('ohz005', 0.001908997980580753) + +[fips3906927342] +centroid = (0.72078516691740713, -1.4690528467420778) +description = Flatrock township, OH +station = ('kdfi', 0.0035000032200686744) +zone = ('ohz005', 0.0014809074312514506) + +[fips3906928700] +centroid = (0.72356153197172468, -1.4690732670943261) +description = Freedom township, OH +station = ('kdfi', 0.0040490422836572367) +zone = ('ohz005', 0.0025404616461536132) + +[fips3906933866] +centroid = (0.72222457485811198, -1.4672179297395784) +description = Harrison township, OH +station = ('ktol', 0.0049582380578269527) +zone = ('ohz005', 0.00081275830835113912) + +[fips3906943176] +centroid = (0.72341155582910077, -1.4672687188208116) +description = Liberty township, OH +station = ('ktol', 0.0042235382845999848) +zone = ('ohz005', 0.0019989086118454898) + +[fips3906947726] +centroid = (0.71923829905465708, -1.4670004268081949) +description = Marion township, OH +station = ('kfdy', 0.0060913324744454331) +zone = ('ohz005', 0.0021835520181272884) + +[fips3906951408] +centroid = (0.72078155408585554, -1.4670665747868457) +description = Monroe township, OH +station = ('ktol', 0.0060106243415891901) +zone = ('ohz005', 0.00064877917976077543) + +[fips3906953564] +centroid = (0.72221989737571668, -1.4691649841465182) +description = Napoleon township, OH +station = ('kdfi', 0.0034567105099993323) +zone = ('ohz005', 0.0016375267029160275) + +[fips3906963296] +centroid = (0.71924362230887562, -1.4690514330253834) +description = Pleasant township, OH +station = ('kdfi', 0.0040686438698201138) +zone = ('ohz005', 0.0025502176865941748) + +[fips3906966502] +centroid = (0.7207940680965923, -1.4650449773675531) +description = Richfield township, OH +station = ('ktol', 0.0053027393985391209) +zone = ('ohz005', 0.0017797811778913803) + +[fips3906967062] +centroid = (0.72355655778335637, -1.4710550186467957) +description = Ridgeville township, OH +station = ('kdfi', 0.0028979752913520763) +zone = ('ohz002', 0.0032433340722817288) + +[fips3906981326] +centroid = (0.72345321683834596, -1.4651758247015751) +description = Washington township, OH +station = ('ktol', 0.0030182605982583574) +zone = ('ohz005', 0.0025738646301601605) + +[fips3907062] +centroid = (0.71857100732174217, -1.4582861374793274) +description = Bloomdale village, OH +station = ('kfdy', 0.0030779680860369271) +zone = ('ohz017', 0.0033050725963042491) + +[fips39071] +centroid = (0.68389833130820787, -1.4591592733442227) +description = Highland County, OH +station = ('kiln', 0.0049749216570129356) +zone = ('ohz080', 3.7840169051251943e-05) + +[fips3907109736] +centroid = (0.68270393268789797, -1.4558691880778731) +description = Brushcreek township, OH +station = ('kiln', 0.0074437077118804729) +zone = ('ohz080', 0.0027856151762314461) + +[fips3907115476] +centroid = (0.68190244258879718, -1.4631769165625583) +description = Clay township, OH +station = ('kiln', 0.0063757381214353337) +zone = ('ohz079', 0.002413796143968062) + +[fips3907118168] +centroid = (0.68173113852271394, -1.4599448809471303) +description = Concord township, OH +station = ('kiln', 0.0067599743738542733) +zone = ('ohz080', 0.00226691496152597) + +[fips3907122204] +centroid = (0.68439862993829192, -1.4627266390688365) +description = Dodson township, OH +station = ('kiln', 0.0038573494958515442) +zone = ('ohz080', 0.0028453506136087831) + +[fips3907126026] +centroid = (0.6865885120040619, -1.4583221610750887) +description = Fairfield township, OH +station = ('kiln', 0.0034872394906677044) +zone = ('ohz080', 0.0027533263955656401) + +[fips3907132970] +centroid = (0.68332663125842463, -1.4615862409355833) +description = Hamer township, OH +station = ('kiln', 0.0049453867667907823) +zone = ('ohz080', 0.0020039769208338907) + +[fips3907137828] +centroid = (0.68178918817363521, -1.4579131082582988) +description = Jackson township, OH +station = ('kiln', 0.0072902240865674829) +zone = ('ohz080', 0.0023097680884516499) + +[fips3907143190] +centroid = (0.6844579536795673, -1.4587481610389152) +description = Liberty township, OH +station = ('kiln', 0.004673675963806188) +zone = ('ohz080', 0.00062141491389928788) + +[fips3907146452] +centroid = (0.68645008994108603, -1.4559872246951857) +description = Madison township, OH +station = ('kiln', 0.0051941949299047791) +zone = ('ohz080', 0.0035119746829290377) + +[fips3907148034] +centroid = (0.68307839307891338, -1.4569123713717902) +description = Marshall township, OH +station = ('kiln', 0.0066343517485317133) +zone = ('ohz080', 0.0018940312590787448) + +[fips3907155048] +centroid = (0.68338656586493807, -1.4603501463994433) +description = New Market township, OH +station = ('kiln', 0.0050828989172969508) +zone = ('ohz080', 0.0010910858830876389) + +[fips3907159500] +centroid = (0.68470928109185447, -1.4563094648349812) +description = Paint township, OH +station = ('kiln', 0.0058233133173827304) +zone = ('ohz080', 0.0023153924794581198) + +[fips3907161588] +centroid = (0.68575763056035743, -1.4590428598831147) +description = Penn township, OH +station = ('kiln', 0.0035343893897112322) +zone = ('ohz080', 0.0018546040777275988) + +[fips3907169862] +centroid = (0.68333054079594902, -1.4628625478576893) +description = Salem township, OH +station = ('kiln', 0.0049305626930990741) +zone = ('ohz080', 0.0029645275533892743) + +[fips3907178344] +centroid = (0.68522900523651342, -1.4612369830989669) +description = Union township, OH +station = ('kiln', 0.0031216330311230073) +zone = ('ohz080', 0.0021139733982148542) + +[fips3907181340] +centroid = (0.68282240563752339, -1.4586099833220352) +description = Washington township, OH +station = ('kiln', 0.0061240054023109251) +zone = ('ohz080', 0.001149036533250063) + +[fips3907184826] +centroid = (0.68181233123951668, -1.4617044171792359) +description = Whiteoak township, OH +station = ('kiln', 0.0064454182208783604) +zone = ('ohz079', 0.0027887109314752852) + +[fips3907188] +centroid = (0.69128538500739622, -1.4555256549212032) +description = Bloomingburg village, OH +station = ('ktzr', 0.0061787206990263736) +zone = ('ohz063', 0.0011670377916133718) + +[fips3907202] +centroid = (0.7041047061902469, -1.4105375768828994) +description = Bloomingdale village, OH +station = ('khlg', 0.0037930861715792016) +zone = ('ohz050', 0.0010624730400373896) + +[fips3907286] +centroid = (0.71648162131430215, -1.4488618307574561) +description = Bloomville village, OH +station = ('kmnn', 0.0076192670591449484) +zone = ('ohz018', 0.001962775018455909) + +[fips39073] +centroid = (0.68923650809189518, -1.4396076936376543) +description = Hocking County, OH +station = ('klhq', 0.005158041144856196) +zone = ('ohz074', 0.0001300924353967637) + +[fips3907300] +centroid = (0.68498190152101601, -1.4728790447947622) +description = Blue Ash city, OH +station = ('kluk', 0.002583952673872591) +zone = ('ohz077', 0.0022514137948734876) + +[fips3907305578] +centroid = (0.68777760482344552, -1.4408061065152435) +description = Benton township, OH +station = ('kuni', 0.0055420184472306268) +zone = ('ohz074', 0.0018571505011650224) + +[fips3907326488] +centroid = (0.69009711249276096, -1.4384234702868834) +description = Falls township, OH +station = ('klhq', 0.004986343112263778) +zone = ('ohz074', 0.0011336850393973499) + +[fips3907330842] +centroid = (0.69062964735412946, -1.4411495698587435) +description = Good Hope township, OH +station = ('klhq', 0.0033877411313586055) +zone = ('ohz074', 0.0017852921528836115) + +[fips3907331780] +centroid = (0.6895664800402771, -1.4370254964626212) +description = Green township, OH +station = ('kuni', 0.0054134241686142597) +zone = ('ohz074', 0.0019456646552199804) + +[fips3907342056] +centroid = (0.68944467351178051, -1.4412150197056932) +description = Laurel township, OH +station = ('klhq', 0.0044938982352562568) +zone = ('ohz074', 0.0013020277561222951) + +[fips3907347740] +centroid = (0.69150978198932522, -1.4387889771388362) +description = Marion township, OH +station = ('klhq', 0.0038282370324151035) +zone = ('ohz074', 0.0022318282494265987) + +[fips3907361868] +centroid = (0.6896715139546622, -1.4430222906928409) +description = Perry township, OH +station = ('klhq', 0.0041002639438858825) +zone = ('ohz074', 0.0027118706620871758) + +[fips3907370142] +centroid = (0.6879078063856443, -1.4431621090192184) +description = Salt Creek township, OH +station = ('klhq', 0.0058670117939623439) +zone = ('ohz074', 0.0031534714606512122) + +[fips3907374405] +centroid = (0.6882906618103618, -1.437139850435212) +description = Starr township, OH +station = ('kuni', 0.0042270484426632279) +zone = ('ohz074', 0.0021302388274315243) + +[fips3907377] +centroid = (0.68484054730489696, -1.4790613326178841) +description = Blue Jay CDP, OH +station = ('kcvg', 0.0034518998141275644) +zone = ('ohz077', 0.002824835314393208) + +[fips3907380780] +centroid = (0.68953024700500576, -1.4351236984431854) +description = Ward township, OH +station = ('kuni', 0.0051868585543408917) +zone = ('ohz074', 0.0034059729006464604) + +[fips3907381354] +centroid = (0.68837747448735598, -1.4390229559783585) +description = Washington township, OH +station = ('kuni', 0.0050089745544748092) +zone = ('ohz074', 0.0010513757050574515) + +[fips3907426] +centroid = (0.71370080567039207, -1.4641188183999823) +description = Bluffton village, OH +station = ('kaoh', 0.0037593114395546015) +zone = ('ohz017', 0.0034913240655393345) + +[fips3907454] +centroid = (0.71616325580544593, -1.4078802432835678) +description = Boardman CDP, OH +station = ('kucp', 0.0033241997317434188) +zone = ('ohz033', 0.001480284629030071) + +[fips39075] +centroid = (0.70799820413888848, -1.429945969777634) +description = Holmes County, OH +station = ('kbjj', 0.0052955870939355131) +zone = ('ohz038', 7.1984678127344406e-05) + +[fips3907505830] +centroid = (0.70785925847713715, -1.4278778418804834) +description = Berlin township, OH +station = ('kphd', 0.005471359487330533) +zone = ('ohz038', 0.0015664508241779347) + +[fips3907515280] +centroid = (0.70653387289646519, -1.4266154452325159) +description = Clark township, OH +station = ('kphd', 0.0042878389877965576) +zone = ('ohz038', 0.0028840325071843968) + +[fips3907533460] +centroid = (0.70788779461040729, -1.4298039348831066) +description = Hardy township, OH +station = ('kbjj', 0.0053940651351380847) +zone = ('ohz038', 0.00010880160479068169) + +[fips3907540194] +centroid = (0.70664204840350375, -1.4309069480637822) +description = Killbuck township, OH +station = ('kbjj', 0.0067511266777456076) +zone = ('ohz038', 0.0014807086774469148) + +[fips3907540852] +centroid = (0.70784426609886253, -1.4336025043737324) +description = Knox township, OH +station = ('kbjj', 0.0063860071300414255) +zone = ('ohz038', 0.0027854423977959094) + +[fips3907548692] +centroid = (0.70654778317060352, -1.4289636984746117) +description = Mechanic township, OH +station = ('kphd', 0.0060724477977969647) +zone = ('ohz038', 0.0015649634509429977) + +[fips3907551422] +centroid = (0.70789456648790505, -1.4316354834001495) +description = Monroe township, OH +station = ('kbjj', 0.0056886734135987247) +zone = ('ohz038', 0.0012901747076630636) + +[fips3907559514] +centroid = (0.70916038398120651, -1.4260909737922918) +description = Paint township, OH +station = ('kbjj', 0.0047014020878048879) +zone = ('ohz038', 0.0031708491607570187) + +[fips3907564584] +centroid = (0.70912306884179876, -1.4300402001039492) +description = Prairie township, OH +station = ('kbjj', 0.0041914531616946251) +zone = ('ohz038', 0.001199104679553405) + +[fips3907566712] +centroid = (0.70669870179102356, -1.4332268746121182) +description = Richland township, OH +station = ('k4i3', 0.0060367829363280577) +zone = ('ohz038', 0.0027852867921242482) + +[fips3907567286] +centroid = (0.70909814554008033, -1.4320371534742036) +description = Ripley township, OH +station = ('kbjj', 0.0047054866563456905) +zone = ('ohz038', 0.001978379018402011) + +[fips3907570156] +centroid = (0.70910057154774053, -1.4280717305070876) +description = Salt Creek township, OH +station = ('kbjj', 0.0042344590662391768) +zone = ('ohz038', 0.0018401680741126191) + +[fips3907580626] +centroid = (0.70784777421065914, -1.4259882611658117) +description = Walnut Creek township, OH +station = ('kphd', 0.0041128296543486431) +zone = ('ohz038', 0.0030016318801095216) + +[fips3907581368] +centroid = (0.70908392110667651, -1.4340250660389326) +description = Washington township, OH +station = ('kbjj', 0.0055815471515860762) +zone = ('ohz038', 0.0033124136361690638) + +[fips3907583] +centroid = (0.71922985166107745, -1.4098440528513267) +description = Bolindale CDP, OH +station = ('kyng', 0.0016297893152958374) +zone = ('ohz023', 0.001909015202422971) + +[fips3907594] +centroid = (0.70948569590048571, -1.4216696708245546) +description = Bolivar village, OH +station = ('kphd', 0.0032505369744258608) +zone = ('ohz032', 0.003086949624104344) + +[fips39077] +centroid = (0.71811711699646852, -1.4415484299527017) +description = Huron County, OH +station = ('kmfd', 0.0058232402542497666) +zone = ('ohz019', 5.3131226467685645e-05) + +[fips3907705228] +centroid = (0.72033122423225604, -1.44556816756614) +description = Bellevue city, OH +station = ('klpr', 0.0085211496655032554) +zone = ('ohz009', 0.0031508070297037627) + +[fips3907709148] +centroid = (0.71862706729731618, -1.4416604800906798) +description = Bronson township, OH +station = ('klpr', 0.0062800438924132023) +zone = ('ohz019', 0.00049164756586949948) + +[fips3907715364] +centroid = (0.71871515406466435, -1.438161356739819) +description = Clarksfield township, OH +station = ('klpr', 0.0041223888645058422) +zone = ('ohz019', 0.0026629190005064318) + +[fips3907726040] +centroid = (0.71748284689300124, -1.4412045477301814) +description = Fairfield township, OH +station = ('kmfd', 0.005155150782620202) +zone = ('ohz019', 0.00072292268363364663) + +[fips3907727216] +centroid = (0.71740629675200884, -1.4397584202718565) +description = Fitchville township, OH +station = ('kmfd', 0.0050315189455645351) +zone = ('ohz019', 0.0015770998066696458) + +[fips3907732102] +centroid = (0.71743284320993161, -1.4431634005628649) +description = Greenfield township, OH +station = ('kmfd', 0.0055252636410908643) +zone = ('ohz019', 0.0013628800136315034) + +[fips3907732368] +centroid = (0.71613229366451547, -1.4402251387671323) +description = Greenwich village, OH +station = ('kmfd', 0.0037471784408343216) +zone = ('ohz019', 0.0022612596969818605) + +[fips3907732382] +centroid = (0.7159553696382408, -1.4394198613035547) +description = Greenwich township, OH +station = ('kmfd', 0.0036169641056129505) +zone = ('ohz019', 0.002737388953539198) + +[fips3907734258] +centroid = (0.71880332809847503, -1.4395551417738768) +description = Hartland township, OH +station = ('klpr', 0.0048522984159859971) +zone = ('ohz019', 0.0016872549545205477) + +[fips3907745514] +centroid = (0.71992632529908573, -1.4447898903460907) +description = Lyme township, OH +station = ('klpr', 0.0080253449319517781) +zone = ('ohz009', 0.0029247794694066535) + +[fips3907754712] +centroid = (0.71603261791093409, -1.4429583243757553) +description = New Haven township, OH +station = ('kmfd', 0.0042055734378465756) +zone = ('ohz019', 0.0023353013101068579) + +[fips3907754922] +centroid = (0.71730285108724312, -1.4380016940198466) +description = New London township, OH +station = ('klpr', 0.0051711978029559385) +zone = ('ohz019', 0.0028460838640283377) + +[fips3907757302] +centroid = (0.71985359742915522, -1.4417981691153696) +description = Norwalk city, OH +station = ('klpr', 0.0058764348212423908) +zone = ('ohz019', 0.0017225141906875678) + +[fips3907757316] +centroid = (0.72000856521343981, -1.441212890404006) +description = Norwalk township, OH +station = ('klpr', 0.0054099833870359867) +zone = ('ohz019', 0.0018960781853539508) + +[fips3907757358] +centroid = (0.71743689237379615, -1.4448718161011793) +description = Norwich township, OH +station = ('kmfd', 0.0061670195603578766) +zone = ('ohz019', 0.0025517884316032515) + +[fips3907762246] +centroid = (0.71870099944443067, -1.4432373152566866) +description = Peru township, OH +station = ('kmfd', 0.0067221441501819313) +zone = ('ohz019', 0.0013460888297310947) + +[fips3907766810] +centroid = (0.716119989093289, -1.4449319077873255) +description = Richmond township, OH +station = ('kmfd', 0.0051767801368324219) +zone = ('ohz019', 0.0032125230473104894) + +[fips3907767006] +centroid = (0.72033694891220246, -1.4430102828275873) +description = Ridgefield township, OH +station = ('klpr', 0.0066304828336477229) +zone = ('ohz009', 0.0017794592994912839) + +[fips3907767300] +centroid = (0.71625497285763817, -1.4411802527469935) +description = Ripley township, OH +station = ('kmfd', 0.0039417676782535676) +zone = ('ohz019', 0.0019098801394017697) + +[fips3907772193] +centroid = (0.71867572707686189, -1.4448937374365844) +description = Sherman township, OH +station = ('kmfd', 0.0072240544666132087) +zone = ('ohz019', 0.0025272997502667495) + +[fips3907777158] +centroid = (0.71998680095766732, -1.4398822862888705) +description = Townsend township, OH +station = ('klpr', 0.0044792427204318865) +zone = ('ohz019', 0.0022629272409255509) + +[fips3907780472] +centroid = (0.71996165076314611, -1.4380706345253003) +description = Wakeman township, OH +station = ('klpr', 0.0032756643996921515) +zone = ('ohz010', 0.0032967803981932024) + +[fips3907785232] +centroid = (0.71649153478445349, -1.4437980197321825) +description = Willard city, OH +station = ('kmfd', 0.0049296569280472225) +zone = ('ohz019', 0.0023270332864777925) + +[fips3907790] +centroid = (0.71999339830223996, -1.4225771722224214) +description = Boston Heights village, OH +station = ('kpov', 0.003429328530384287) +zone = ('ohz021', 0.0022342005946429122) + +[fips3907832] +centroid = (0.70602722126790374, -1.4692025610853139) +description = Botkins village, OH +station = ('kaoh', 0.0048285432428016601) +zone = ('ohz035', 0.001976573753997941) + +[fips3907888] +centroid = (0.68561517678680961, -1.4514089991744017) +description = Bourneville CDP, OH +station = ('klck', 0.0098017738286823811) +zone = ('ohz073', 0.0016831359756568623) + +[fips39079] +centroid = (0.68091362630107988, -1.4418887866101333) +description = Jackson County, OH +station = ('kuni', 0.0062311451112529144) +zone = ('ohz083', 0.00012300628507676983) + +[fips3907907090] +centroid = (0.6806128537110836, -1.4400685129200583) +description = Bloomfield township, OH +station = ('kuni', 0.0053183090847206951) +zone = ('ohz083', 0.0015280669002122802) + +[fips3907916] +centroid = (0.70558882946638779, -1.4169872142408415) +description = Bowerston village, OH +station = ('kphd', 0.0031220012633416442) +zone = ('ohz049', 0.0026581277561336355) + +[fips3907916336] +centroid = (0.68256709887454159, -1.4418232844033059) +description = Coal township, OH +station = ('kuni', 0.005445785322402869) +zone = ('ohz083', 0.0015486704499833455) + +[fips3907928322] +centroid = (0.68038250515640541, -1.442057559948801) +description = Franklin township, OH +station = ('kuni', 0.0066441408146519021) +zone = ('ohz083', 0.00064393064516171813) + +[fips3907930] +centroid = (0.69082039438807996, -1.4612515740515133) +description = Bowersville village, OH +station = ('kiln', 0.0027016332384226772) +zone = ('ohz062', 0.0029506870990367957) + +[fips3907933040] +centroid = (0.67871344679272327, -1.4435379831269277) +description = Hamilton township, OH +station = ('k3i2', 0.0083029436502770233) +zone = ('ohz083', 0.0026135114238532405) + +[fips3907937842] +centroid = (0.68148038706907987, -1.4425076629095981) +description = Jackson city, OH +station = ('kuni', 0.0063617823281381979) +zone = ('ohz083', 0.00062356618937292477) + +[fips3907937856] +centroid = (0.68333048843607147, -1.4437056743614594) +description = Jackson township, OH +station = ('kuni', 0.0066826563744345775) +zone = ('ohz083', 0.0026753526624012417) + +[fips3907938654] +centroid = (0.6787935748586823, -1.4421705002046978) +description = Jefferson township, OH +station = ('k3i2', 0.0072356883253483564) +zone = ('ohz083', 0.0022344911696077769) + +[fips3907943204] +centroid = (0.68203625698254755, -1.4439897616038067) +description = Liberty township, OH +station = ('kuni', 0.0072084725863855136) +zone = ('ohz083', 0.0018722900537923076) + +[fips3907943442] +centroid = (0.68165230200040128, -1.4417381123358086) +description = Lick township, OH +station = ('kuni', 0.0057521586042210216) +zone = ('ohz083', 0.00065385051114056031) + +[fips3907946466] +centroid = (0.67876121645435028, -1.439941679843316) +description = Madison township, OH +station = ('k3i2', 0.0055070194631910473) +zone = ('ohz083', 0.0027537635721832879) + +[fips3907950624] +centroid = (0.68189526928557154, -1.4400476736887895) +description = Milton township, OH +station = ('kuni', 0.0044970125096398215) +zone = ('ohz083', 0.0017248815413098662) + +[fips3907970856] +centroid = (0.68042098966641185, -1.4440122938044497) +description = Scioto township, OH +station = ('k3i2', 0.0087404898615948377) +zone = ('ohz083', 0.0017021878402016602) + +[fips3907972] +centroid = (0.72217670047672966, -1.4599606587235685) +description = Bowling Green city, OH +station = ('ktdz', 0.0039505479786679475) +zone = ('ohz006', 0.0004460936649545703) + +[fips3907981382] +centroid = (0.68345149211311229, -1.4415505418010968) +description = Washington township, OH +station = ('kuni', 0.0050146077413189679) +zone = ('ohz084', 0.0021845531920511438) + +[fips3907982712] +centroid = (0.6827274073663373, -1.4405522483755411) +description = Wellston city, OH +station = ('kuni', 0.0044648342145088291) +zone = ('ohz083', 0.0020266847991354847) + +[fips3908084] +centroid = (0.70042064775184476, -1.4735230538354558) +description = Bradford village, OH +station = ('kves', 0.0018286917248739654) +zone = ('ohz051', 0.0029686399954480412) + +[fips39081] +centroid = (0.70509884573218296, -1.4095525130530737) +description = Jefferson County, OH +station = ('khlg', 0.004320862009522591) +zone = ('ohz050', 0.00024768728398106877) + +[fips3908109750] +centroid = (0.70800640718637275, -1.4103211735089445) +description = Brush Creek township, OH +station = ('kbvi', 0.0064112655432036914) +zone = ('wvz001', 0.0031676514159699452) + +[fips3908112] +centroid = (0.72123783551220444, -1.4562393025990512) +description = Bradner village, OH +station = ('ktdz', 0.0042816768823253758) +zone = ('ohz006', 0.00253304249384097) + +[fips3908119484] +centroid = (0.70375885174567177, -1.4085409376719102) +description = Cross Creek township, OH +station = ('khlg', 0.002809988232175196) +zone = ('ohz050', 0.0013338468214145398) + +[fips3908137534] +centroid = (0.70536326311386011, -1.4086024605280429) +description = Island Creek township, OH +station = ('khlg', 0.0043887255065992196) +zone = ('ohz050', 0.00088192594633963479) + +[fips3908140866] +centroid = (0.70691313294292357, -1.4082682997894562) +description = Knox township, OH +station = ('khlg', 0.0058940775723589503) +zone = ('wvz001', 0.0015446284225117267) + +[fips3908152990] +centroid = (0.70133631729061108, -1.4108832044346717) +description = Mount Pleasant township, OH +station = ('khlg', 0.0025198867042406843) +zone = ('ohz059', 0.0035544162964905295) + +[fips3908168] +centroid = (0.71842267178861519, -1.4191687710860794) +description = Brady Lake village, OH +station = ('kpov', 0.0012943547074285903) +zone = ('ohz022', 0.0015290211852077092) + +[fips3908168644] +centroid = (0.70701420495990652, -1.4104846759532712) +description = Ross township, OH +station = ('khlg', 0.0063633327042291569) +zone = ('ohz050', 0.0022780450231636644) + +[fips3908169876] +centroid = (0.70562211289522336, -1.4103021319668052) +description = Salem township, OH +station = ('khlg', 0.0050211984688874169) +zone = ('ohz050', 0.00096246816782310347) + +[fips3908170086] +centroid = (0.70775556846627619, -1.4084231454006932) +description = Saline township, OH +station = ('kbvi', 0.0054357045937545416) +zone = ('wvz001', 0.0017115518905142485) + +[fips3908172767] +centroid = (0.70203422209860611, -1.4102368391994882) +description = Smithfield township, OH +station = ('khlg', 0.0022404057370920397) +zone = ('ohz050', 0.0028659296740163654) + +[fips3908174122] +centroid = (0.70659735052136019, -1.4120308107777355) +description = Springfield township, OH +station = ('khlg', 0.006499746154913312) +zone = ('ohz050', 0.0025744546780963502) + +[fips3908174608] +centroid = (0.70452519091363752, -1.4077314190582504) +description = Steubenville city, OH +station = ('khlg', 0.0034858795050792244) +zone = ('ohz050', 0.001419821620249462) + +[fips3908174615] +centroid = (0.70379047711171794, -1.40737680306083) +description = Steubenville township, OH +station = ('khlg', 0.0027555527051413586) +zone = ('wvz002', 0.001197157670815234) + +[fips3908180878] +centroid = (0.7015544485405254, -1.4088285853859315) +description = Warren township, OH +station = ('khlg', 0.0010647151133761864) +zone = ('wvz003', 0.002194309358135766) + +[fips3908182180] +centroid = (0.70385634583768819, -1.4106074773194417) +description = Wayne township, OH +station = ('khlg', 0.0036290030720891099) +zone = ('ohz050', 0.0012825159301329027) + +[fips3908182698] +centroid = (0.7028777571793875, -1.4085525615647285) +description = Wells township, OH +station = ('khlg', 0.0019736666795969059) +zone = ('ohz050', 0.0021136172007613454) + +[fips39083] +centroid = (0.70517619872463122, -1.4385421352227266) +description = Knox County, OH +station = ('k4i3', 0.0018263947999803797) +zone = ('ohz047', 8.4782557957622097e-05) + +[fips3908305844] +centroid = (0.7072329645283516, -1.4397967127956453) +description = Berlin township, OH +station = ('k4i3', 0.0033591109041275664) +zone = ('ohz047', 0.0023483615406896391) + +[fips3908309470] +centroid = (0.7069742369200358, -1.4367289475694147) +description = Brown township, OH +station = ('k4i3', 0.0040832696550227084) +zone = ('ohz047', 0.0023274963977163985) + +[fips3908310590] +centroid = (0.70417666611530672, -1.4352470234081314) +description = Butler township, OH +station = ('k4i3', 0.0038208470157401631) +zone = ('ohz047', 0.0026621654636924032) + +[fips3908315504] +centroid = (0.7029590720692378, -1.4369437452404576) +description = Clay township, OH +station = ('k4i3', 0.0026851842701549229) +zone = ('ohz047', 0.0024512247355296941) + +[fips3908316140] +centroid = (0.70465270466878815, -1.4402759627549502) +description = Clinton township, OH +station = ('k4i3', 0.000761766564380151) +zone = ('ohz047', 0.0014018231752464861) + +[fips3908316686] +centroid = (0.70461202104392417, -1.4380651716447417) +description = College township, OH +station = ('k4i3', 0.0018113368434723618) +zone = ('ohz047', 0.00059572926316023148) + +[fips3908328658] +centroid = (0.70648379940022554, -1.4407609373942019) +description = Fredericktown village, OH +station = ('k4i3', 0.0026220328685546295) +zone = ('ohz047', 0.0021964522644779831) + +[fips3908333880] +centroid = (0.70421949649515059, -1.4367527015005346) +description = Harrison township, OH +station = ('k4i3', 0.0026825969535411208) +zone = ('ohz047', 0.0016097237336242911) + +[fips3908335462] +centroid = (0.70362859782359544, -1.4435230954684082) +description = Hilliar township, OH +station = ('k4i3', 0.0025125047081567178) +zone = ('ohz037', 0.0038246581806386146) + +[fips3908336] +centroid = (0.72528841309352543, -1.4242859542798791) +description = Bratenahl village, OH +station = ('kbkl', 0.00089044114757387343) +zone = ('ohz011', 0.0024006569917577616) + +[fips3908336526] +centroid = (0.70545876753052916, -1.4369284037963326) +description = Howard township, OH +station = ('k4i3', 0.0029738308463869091) +zone = ('ohz047', 0.0012722025340834941) + +[fips3908337870] +centroid = (0.70299610795596512, -1.4352450860926618) +description = Jackson township, OH +station = ('k4i3', 0.0039172175700523471) +zone = ('ohz047', 0.003264334793126121) + +[fips3908338668] +centroid = (0.70738880497726209, -1.4352396755719805) +description = Jefferson township, OH +station = ('k4i3', 0.0051723300300931174) +zone = ('ohz047', 0.0033963202433704579) + +[fips3908343218] +centroid = (0.70475758150354051, -1.4415309068470119) +description = Liberty township, OH +station = ('k4i3', 0.0013075448662106999) +zone = ('ohz047', 0.002311301914673033) + +[fips3908349658] +centroid = (0.70715610022809372, -1.4414471484962086) +description = Middlebury township, OH +station = ('k4i3', 0.0033905086882379597) +zone = ('ohz037', 0.0027260105200617572) + +[fips3908350204] +centroid = (0.70328288300536046, -1.4418455548045614) +description = Milford township, OH +station = ('k4i3', 0.0013632280926483946) +zone = ('ohz047', 0.0031088593363755544) + +[fips3908350330] +centroid = (0.70345362856608296, -1.4403839462757713) +description = Miller township, OH +station = ('k4i3', 0.0004501737545673634) +zone = ('ohz047', 0.0021643356669125771) + +[fips3908351436] +centroid = (0.70570695335016276, -1.4384822878826757) +description = Monroe township, OH +station = ('k4i3', 0.002258539010643346) +zone = ('ohz047', 0.00061587638080589464) + +[fips3908352108] +centroid = (0.70307283262988285, -1.4388052261541722) +description = Morgan township, OH +station = ('k4i3', 0.0013698765743502337) +zone = ('ohz047', 0.0020302436560823258) + +[fips3908352290] +centroid = (0.70603694275183737, -1.4400031328862786) +description = Morris township, OH +station = ('k4i3', 0.0021535943112635323) +zone = ('ohz047', 0.0014674003106965852) + +[fips3908353102] +centroid = (0.70485436001056356, -1.439452673493492) +description = Mount Vernon city, OH +station = ('k4i3', 0.001136963780614911) +zone = ('ohz047', 0.00074308216805876021) + +[fips3908362652] +centroid = (0.7068489397330352, -1.438326813952908) +description = Pike township, OH +station = ('k4i3', 0.0032988146657107627) +zone = ('ohz047', 0.0017635435171769042) + +[fips3908363310] +centroid = (0.70406948544594172, -1.4383785629652297) +description = Pleasant township, OH +station = ('k4i3', 0.0014343772030372081) +zone = ('ohz047', 0.0010289319076944455) + +[fips3908364] +centroid = (0.72094660987321668, -1.4245368977197308) +description = Brecksville city, OH +station = ('kcle', 0.0034215655485231901) +zone = ('ohz011', 0.0021058943194182831) + +[fips3908378] +centroid = (0.68551251652020739, -1.4722173904753313) +description = Brecon CDP, OH +station = ('khao', 0.0027208614148447534) +zone = ('ohz077', 0.0029456449932668935) + +[fips3908378358] +centroid = (0.70557488428566439, -1.435184976953223) +description = Union township, OH +station = ('k4i3', 0.0042067662643511354) +zone = ('ohz047', 0.0025909680035776346) + +[fips3908382194] +centroid = (0.70598069079004555, -1.4418233018565982) +description = Wayne township, OH +station = ('k4i3', 0.0024102726830521025) +zone = ('ohz037', 0.0027618424538266924) + +[fips3908392] +centroid = (0.69299992665138543, -1.438673767954912) +description = Bremen village, OH +station = ('klhq', 0.0032692700989112584) +zone = ('ohz066', 0.002658225070820322) + +[fips39085] +centroid = (0.73171386018803497, -1.4205696072503151) +description = Lake County, OH +station = ('kcgf', 0.0063494620995053807) +zone = ('ohz012', 0.0044542030390639729) + +[fips3908500000] +centroid = (0.73171386018803497, -1.4205696072503151) +description = County subdivisions not defined, OH +station = ('kcgf', 0.0063494620995053807) +zone = ('ohz012', 0.0044542030390639729) + +[fips3908504] +centroid = (0.71057537476567578, -1.4242016025171302) +description = Brewster village, OH +station = ('kcak', 0.004074796484765145) +zone = ('ohz032', 0.0035685438646161235) + +[fips3908518196] +centroid = (0.72726386400739518, -1.4178949250782187) +description = Concord township, OH +station = ('kcgf', 0.0036510409009552647) +zone = ('ohz012', 0.00048359223306344249) + +[fips3908523618] +centroid = (0.72703098472530159, -1.4212884385560414) +description = Eastlake city, OH +station = ('kcgf', 0.0016845768732504725) +zone = ('ohz012', 0.0026637626949500503) + +[fips3908532] +centroid = (0.69669744157832036, -1.4456881065923373) +description = Brice village, OH +station = ('kcmh', 0.0015911927405914234) +zone = ('ohz055', 0.0025408971430993486) + +[fips3908540642] +centroid = (0.72602194007155363, -1.4196169716379914) +description = Kirtland city, OH +station = ('kcgf', 0.0019737833523567304) +zone = ('ohz012', 0.0021705146235538463) + +[fips3908540670] +centroid = (0.72671961798674589, -1.4194122794233177) +description = Kirtland Hills village, OH +station = ('kcgf', 0.0023973078103133694) +zone = ('ohz012', 0.0015527199360224392) + +[fips3908541398] +centroid = (0.72709550954774782, -1.4216495646315717) +description = Lakeline village, OH +station = ('kcgf', 0.0016633670778025663) +zone = ('ohz012', 0.0029092860890532796) + +[fips3908542812] +centroid = (0.72737429098916884, -1.4161087376684354) +description = Leroy township, OH +station = ('khzy', 0.005995931077201368) +zone = ('ohz012', 0.0013548226435485585) + +[fips3908546494] +centroid = (0.73047033054928168, -1.4137840114646563) +description = Madison township, OH +station = ('khzy', 0.0041344900994242399) +zone = ('ohz089', 0.0029159077505198339) + +[fips3908549056] +centroid = (0.72763054022994667, -1.4195788885537131) +description = Mentor city, OH +station = ('kcgf', 0.0028889410047109507) +zone = ('ohz012', 0.001293854067978797) + +[fips3908549098] +centroid = (0.72804371202377116, -1.4200887515880982) +description = Mentor-on-the-Lake city, OH +station = ('kcgf', 0.0029959773427561897) +zone = ('ohz012', 0.0016953314976560926) + +[fips3908559416] +centroid = (0.72821606328740562, -1.418139602786056) +description = Painesville city, OH +station = ('kcgf', 0.0040625785555334221) +zone = ('ohz012', 0.00051601909811285491) + +[fips3908559430] +centroid = (0.72916613326572888, -1.4171607523283671) +description = Painesville township, OH +station = ('kcgf', 0.0052464636717494935) +zone = ('ohz012', 0.0015107728949533786) + +[fips3908560] +centroid = (0.69926340719130997, -1.4093246254126406) +description = Bridgeport village, OH +station = ('khlg', 0.0022094474175060621) +zone = ('wvz003', 0.0018170258579166155) + +[fips3908561896] +centroid = (0.72985997145656656, -1.4155667431225207) +description = Perry township, OH +station = ('khzy', 0.0053167463802987905) +zone = ('ohz012', 0.0027158736865610165) + +[fips3908576834] +centroid = (0.72720054346213292, -1.4214449771366526) +description = Timberlake village, OH +station = ('kcgf', 0.0018046020850670855) +zone = ('ohz012', 0.0027375809178510767) + +[fips3908580402] +centroid = (0.72620921390029247, -1.4205018186621674) +description = Waite Hill village, OH +station = ('kcgf', 0.0014363024940184715) +zone = ('ohz012', 0.0025059518917398666) + +[fips3908585036] +centroid = (0.72616730854495215, -1.4218853237069311) +description = Wickliffe city, OH +station = ('kcgf', 0.00072037820380381988) +zone = ('ohz012', 0.0034016168113568143) + +[fips3908585484] +centroid = (0.72685833675569433, -1.42086697644827) +description = Willoughby city, OH +station = ('kcgf', 0.0016843276600522793) +zone = ('ohz012', 0.0024201043134036704) + +[fips3908585512] +centroid = (0.72579061413249424, -1.4212661332482011) +description = Willoughby Hills city, OH +station = ('kcgf', 0.00073424042513453016) +zone = ('ohz012', 0.0032141841823465594) + +[fips3908585638] +centroid = (0.72665558185649015, -1.4218832118585361) +description = Willowick city, OH +station = ('kcgf', 0.0011974369971445751) +zone = ('ohz012', 0.0032021655281982138) + +[fips3908602] +centroid = (0.68338581537335974, -1.4771752425617164) +description = Bridgetown CDP, OH +station = ('kcvg', 0.0018814474870292536) +zone = ('ohz077', 0.00144497321611605) + +[fips39087] +centroid = (0.67376456569869325, -1.4401965851805696) +description = Lawrence County, OH +station = ('khts', 0.0041641112370102316) +zone = ('ohz087', 0.0002834516572266224) + +[fips3908700562] +centroid = (0.67448505506720913, -1.4404635507429546) +description = Aid township, OH +station = ('khts', 0.0048662840925028745) +zone = ('ohz087', 0.00081627010509358988) + +[fips3908721084] +centroid = (0.67584149005527405, -1.4424764040626947) +description = Decatur township, OH +station = ('khts', 0.0063585902157496047) +zone = ('ohz087', 0.0026458074035571721) + +[fips3908724822] +centroid = (0.67412549978800573, -1.4431182663484081) +description = Elizabeth township, OH +station = ('khts', 0.0048618324915514523) +zone = ('ohz087', 0.002066122308031295) + +[fips3908726782] +centroid = (0.67103284616664183, -1.4404295517291259) +description = Fayette township, OH +station = ('khts', 0.0014331354913145065) +zone = ('ohz087', 0.0026394522947801747) + +[fips3908733054] +centroid = (0.67328461760768732, -1.4439490954322352) +description = Hamilton township, OH +station = ('khts', 0.0044263982887173129) +zone = ('ohz087', 0.0026934376893292104) + +[fips3908742154] +centroid = (0.67294052594565668, -1.440520762635835) +description = Lawrence township, OH +station = ('khts', 0.0033215754869179077) +zone = ('ohz087', 0.00073052321747680367) + +[fips3908748174] +centroid = (0.67435811727071149, -1.4385494306989999) +description = Mason township, OH +station = ('khts', 0.0050421828075926968) +zone = ('ohz087', 0.0016995580463712032) + +[fips3908761910] +centroid = (0.67182506856741464, -1.4414399228331054) +description = Perry township, OH +station = ('khts', 0.0022622565734032683) +zone = ('ohz087', 0.0019757841668445802) + +[fips3908768280] +centroid = (0.67228826149760146, -1.4370850994565767) +description = Rome township, OH +station = ('khts', 0.0039269909973739837) +zone = ('wvz006', 0.002179200701425253) + +[fips3908776031] +centroid = (0.67598483394674025, -1.440651575063272) +description = Symmes township, OH +station = ('khts', 0.0063608439311954486) +zone = ('ohz087', 0.0023155941171008258) + +[fips3908778372] +centroid = (0.67133805189293816, -1.4387314510866904) +description = Union township, OH +station = ('khts', 0.0023420438516515308) +zone = ('ohz087', 0.0027278894218903393) + +[fips3908778974] +centroid = (0.67274133151812665, -1.442499913647719) +description = Upper township, OH +station = ('khts', 0.003398571261723621) +zone = ('ohz087', 0.0017929592760254211) + +[fips3908781396] +centroid = (0.67746199335916579, -1.4420282558706603) +description = Washington township, OH +station = ('k3i2', 0.0073238135440932776) +zone = ('ohz083', 0.0035606056518056165) + +[fips3908786002] +centroid = (0.67276601047374973, -1.4384367173359063) +description = Windsor township, OH +station = ('khts', 0.0036338056325905818) +zone = ('ohz087', 0.0018761821777523952) + +[fips3908812] +centroid = (0.70280363304605531, -1.4073586341833169) +description = Brilliant CDP, OH +station = ('khlg', 0.0017733066211040479) +zone = ('wvz002', 0.00079456603364325227) + +[fips3908826] +centroid = (0.71725228889881276, -1.4198448243718393) +description = Brimfield CDP, OH +station = ('kakr', 0.0018682786720729549) +zone = ('ohz022', 0.0023936552841573476) + +[fips39089] +centroid = (0.69976548605723121, -1.4395694011138656) +description = Licking County, OH +station = ('kvta', 0.0013569573065680435) +zone = ('ohz056', 4.3572366178518364e-05) + +[fips3908905494] +centroid = (0.70216756525345847, -1.4418404060832679) +description = Bennington township, OH +station = ('k4i3', 0.0021098074129332909) +zone = ('ohz056', 0.0029718058090545049) + +[fips3908907944] +centroid = (0.69699769056954108, -1.4365957440409025) +description = Bowling Green township, OH +station = ('kvta', 0.0025243073985591405) +zone = ('ohz056', 0.0035793542578241239) + +[fips3908910366] +centroid = (0.70204872578469013, -1.4401647329217206) +description = Burlington township, OH +station = ('k4i3', 0.001843596671049576) +zone = ('ohz056', 0.0023535031745319959) + +[fips3908924332] +centroid = (0.70169451121299797, -1.4367701896996394) +description = Eden township, OH +station = ('k4i3', 0.0034436411772397766) +zone = ('ohz056', 0.0029242791563810848) + +[fips3908925690] +centroid = (0.69733162441532504, -1.4432997282307378) +description = Etna township, OH +station = ('kcmh', 0.002643090304216833) +zone = ('ohz065', 0.0036393650783460695) + +[fips3908926530] +centroid = (0.70176971745046646, -1.4353052475919779) +description = Fallsbury township, OH +station = ('kvta', 0.004539435230825839) +zone = ('ohz056', 0.0038683648512478153) + +[fips3908928336] +centroid = (0.69792725292915325, -1.4372379379391738) +description = Franklin township, OH +station = ('kvta', 0.0016662810605586964) +zone = ('ohz056', 0.0025609122830483129) + +[fips3908931416] +centroid = (0.69945115225894694, -1.4403510817259562) +description = Granville township, OH +station = ('kvta', 0.0012989228139185329) +zone = ('ohz056', 0.00063452159709287415) + +[fips3908933299] +centroid = (0.69923057754808005, -1.435267286680747) +description = Hanover township, OH +station = ('kvta', 0.0032024147193197481) +zone = ('ohz056', 0.0033598232801507165) + +[fips3908933894] +centroid = (0.69817746333071917, -1.4420091445153507) +description = Harrison township, OH +station = ('kvta', 0.0020781598803148128) +zone = ('ohz056', 0.0024081831433428302) + +[fips3908934188] +centroid = (0.70224411539445097, -1.4433667837805997) +description = Hartford township, OH +station = ('k4i3', 0.0028951910620282195) +zone = ('ohz056', 0.0038143637928068834) + +[fips3908934748] +centroid = (0.69851778508156548, -1.4388598375064672) +description = Heath city, OH +station = ('kvta', 0.00036123490868650808) +zone = ('ohz056', 0.0013444200466827374) + +[fips3908936316] +centroid = (0.69791740927217194, -1.4355049132584061) +description = Hopewell township, OH +station = ('kvta', 0.0029618908685635206) +zone = ('ohz056', 0.0036291432205899691) + +[fips3908939102] +centroid = (0.6995555404015088, -1.4436878545497964) +description = Jersey township, OH +station = ('kcmh', 0.0026370274560524294) +zone = ('ohz056', 0.0031259707706519299) + +[fips3908943232] +centroid = (0.70100713074039245, -1.4421014898860738) +description = Liberty township, OH +station = ('k4i3', 0.0032132070187617179) +zone = ('ohz056', 0.0022921683997870366) + +[fips3908943456] +centroid = (0.69773491764558349, -1.4384697040587688) +description = Licking township, OH +station = ('kvta', 0.0009445037460915468) +zone = ('ohz056', 0.0021809272065164173) + +[fips3908946116] +centroid = (0.70073011208151603, -1.4401001033795193) +description = McKean township, OH +station = ('kvta', 0.0023844554807303073) +zone = ('ohz056', 0.0010647272823150736) + +[fips3908946508] +centroid = (0.6992750834440058, -1.4369973792083715) +description = Madison township, OH +station = ('kvta', 0.0019684025916955387) +zone = ('ohz056', 0.002050051621190587) + +[fips3908948132] +centroid = (0.70064466076133836, -1.4368739320703781) +description = Mary Ann township, OH +station = ('kvta', 0.0029027113809614214) +zone = ('ohz056', 0.0022810045726895396) + +[fips3908951450] +centroid = (0.70097630822580226, -1.4436448496370275) +description = Monroe township, OH +station = ('kcmh', 0.0036276106807069317) +zone = ('ohz056', 0.0033268200626681999) + +[fips3908954040] +centroid = (0.69934875379173256, -1.4385863269593873) +description = Newark city, OH +station = ('kvta', 0.0010811322582498092) +zone = ('ohz056', 0.00087190397695232236) + +[fips3908954054] +centroid = (0.69969794181517908, -1.4386339569946742) +description = Newark township, OH +station = ('kvta', 0.001377739608230389) +zone = ('ohz056', 0.00074653451905038165) + +[fips3908955580] +centroid = (0.7006477325408218, -1.4384955872915759) +description = Newton township, OH +station = ('kvta', 0.0023117553531692135) +zone = ('ohz056', 0.0012488309374615154) + +[fips3908961112] +centroid = (0.69831291833396636, -1.4436444831178845) +description = Pataskala city, OH +station = ('kcmh', 0.0022612473604427569) +zone = ('ohz056', 0.0034004490505558818) + +[fips3908961924] +centroid = (0.70040223452823624, -1.4353101345138835) +description = Perry township, OH +station = ('kvta', 0.0036483031029852409) +zone = ('ohz056', 0.0033547433573022523) + +[fips3908966396] +centroid = (0.69782831021385761, -1.4445305344192443) +description = Reynoldsburg City township, OH +station = ('kcmh', 0.0016045357424851782) +zone = ('ohz056', 0.0042227436121190188) + +[fips3908969456] +centroid = (0.69951440299103929, -1.441957727115587) +description = St. Albans township, OH +station = ('kvta', 0.0022989404368490523) +zone = ('ohz056', 0.0018105945752782788) + +[fips3908978400] +centroid = (0.69783344148185855, -1.4402412132495432) +description = Union township, OH +station = ('kvta', 0.00092231949235300256) +zone = ('ohz056', 0.0019612093128413329) + +[fips3908981410] +centroid = (0.70182989640307514, -1.4384084430020239) +description = Washington township, OH +station = ('k4i3', 0.0024928752761826062) +zone = ('ohz056', 0.0022879482296526438) + +[fips3909064] +centroid = (0.72113784559935767, -1.4255720874056736) +description = Broadview Heights city, OH +station = ('kcle', 0.0026539001377600319) +zone = ('ohz011', 0.0018720566924515937) + +[fips39091] +centroid = (0.70489577667371339, -1.4619984877049046) +description = Logan County, OH +station = ('kedj', 0.00075224324307822865) +zone = ('ohz044', 1.8035798212996391e-05) + +[fips3909107118] +centroid = (0.70530322378759158, -1.4655075943390867) +description = Bloomfield township, OH +station = ('kedj', 0.002081518435150117) +zone = ('ohz044', 0.0027079130881499176) + +[fips3909107552] +centroid = (0.70605415169826213, -1.4586327075088961) +description = Bokescreek township, OH +station = ('kedj', 0.0035630897429166915) +zone = ('ohz044', 0.0027986764333598154) + +[fips3909133908] +centroid = (0.70459462011128171, -1.4628691975621393) +description = Harrison township, OH +station = ('kedj', 5.2966944112197032e-05) +zone = ('ohz044', 0.00074195381724844009) + +[fips3909138682] +centroid = (0.70452522582022248, -1.4603070891267966) +description = Jefferson township, OH +station = ('kedj', 0.0019948879120021048) +zone = ('ohz044', 0.0013384698274736908) + +[fips3909141286] +centroid = (0.70466542811903521, -1.4617374737152689) +description = Lake township, OH +station = ('kedj', 0.00090306304703869061) +zone = ('ohz044', 0.00031250873190439069) + +[fips3909143246] +centroid = (0.70318397519664988, -1.4619877015701273) +description = Liberty township, OH +station = ('kedj', 0.0016111351883595026) +zone = ('ohz044', 0.0017283300331005405) + +[fips3909145682] +centroid = (0.70580526774692776, -1.4625348448373348) +description = McArthur township, OH +station = ('kedj', 0.0012124593609784274) +zone = ('ohz044', 0.00098493394669772359) + +[fips3909149378] +centroid = (0.70326939161024249, -1.4650750493905649) +description = Miami township, OH +station = ('kedj', 0.0021314299947234241) +zone = ('ohz044', 0.0028691304050756758) + +[fips3909151464] +centroid = (0.70289871858370401, -1.4606392601900362) +description = Monroe township, OH +station = ('kedj', 0.0024542065996271357) +zone = ('ohz044', 0.0022612498451856831) + +[fips3909161938] +centroid = (0.70421415578763946, -1.4585661755578101) +description = Perry township, OH +station = ('kmrt', 0.0036857954269802337) +zone = ('ohz045', 0.0027723298035497055) + +[fips3909163324] +centroid = (0.70408552502176758, -1.4649976265849465) +description = Pleasant township, OH +station = ('kedj', 0.0016725876793686131) +zone = ('ohz044', 0.0024369116024144733) + +[fips3909166740] +centroid = (0.70684019563348266, -1.4625995267394138) +description = Richland township, OH +station = ('kedj', 0.0022245939277966711) +zone = ('ohz044', 0.001983089182224426) + +[fips3909169134] +centroid = (0.70615346093270048, -1.4602388991129214) +description = Rushcreek township, OH +station = ('kedj', 0.0025487513894319543) +zone = ('ohz044', 0.0018208492633680687) + +[fips3909174780] +centroid = (0.70672910542659328, -1.4649725811101804) +description = Stokes township, OH +station = ('kedj', 0.0026165251860272754) +zone = ('ohz044', 0.0029080907526899814) + +[fips3909178414] +centroid = (0.70341264823524619, -1.4632643051982059) +description = Union township, OH +station = ('kedj', 0.0012442101819527445) +zone = ('ohz044', 0.0017870918083945551) + +[fips3909181424] +centroid = (0.70543969108180493, -1.4641666404214868) +description = Washington township, OH +station = ('kedj', 0.0012472454128864476) +zone = ('ohz044', 0.0017401036146760258) + +[fips3909188042] +centroid = (0.70294603445972548, -1.4589265685950541) +description = Zane township, OH +station = ('kmrt', 0.0033466369678793622) +zone = ('ohz044', 0.0030522405630516052) + +[fips3909200] +centroid = (0.71974962816561394, -1.4059634179792724) +description = Brookfield Center CDP, OH +station = ('kyng', 0.001468821982399925) +zone = ('ohz023', 0.0030157405059454377) + +[fips3909246] +centroid = (0.72317263770779527, -1.4267923518054979) +description = Brooklyn city, OH +station = ('kcle', 0.0014522073709806755) +zone = ('ohz011', 0.0011979561406922051) + +[fips3909274] +centroid = (0.72291315960790126, -1.425327793670272) +description = Brooklyn Heights village, OH +station = ('kbkl', 0.0019803409673460424) +zone = ('ohz011', 0.00011557072611858519) + +[fips3909288] +centroid = (0.72264027737935199, -1.4280355847382786) +description = Brook Park city, OH +station = ('kcle', 0.00039434974348263489) +zone = ('ohz011', 0.0021454195593270599) + +[fips39093] +centroid = (0.72324358534188882, -1.4343067272736194) +description = Lorain County, OH +station = ('klpr', 0.0015506606995411649) +zone = ('ohz010', 0.0025288921507223084) + +[fips3909300000] +centroid = (0.72662884341234946, -1.4338219097140006) +description = County subdivisions not defined, OH +station = ('klpr', 0.0049522295109874917) +zone = ('ohz010', 0.0058864101978672407) + +[fips3909301798] +centroid = (0.72265931892149127, -1.4352143508445341) +description = Amherst city, OH +station = ('klpr', 0.0011550638527975264) +zone = ('ohz010', 0.0021880371880687007) + +[fips3909301812] +centroid = (0.72220851782899365, -1.4347931854427354) +description = Amherst township, OH +station = ('klpr', 0.0006050489114560562) +zone = ('ohz010', 0.0016418047417525734) + +[fips3909303352] +centroid = (0.72335443120268295, -1.4312591555068348) +description = Avon city, OH +station = ('kcle', 0.0021775902211594372) +zone = ('ohz010', 0.0032378851874462259) + +[fips3909303464] +centroid = (0.72421571628195713, -1.431450530859316) +description = Avon Lake city, OH +station = ('kcle', 0.0027278043812948316) +zone = ('ohz010', 0.0038979062113596329) + +[fips3909308770] +centroid = (0.71852569857436033, -1.4363888352580787) +description = Brighton township, OH +station = ('klpr', 0.0035127802834946753) +zone = ('ohz010', 0.0029459078111854107) + +[fips3909309568] +centroid = (0.72240607164702686, -1.4366253448250164) +description = Brownhelm township, OH +station = ('klpr', 0.001836524519356077) +zone = ('ohz010', 0.0026904767161456443) + +[fips3909311010] +centroid = (0.71981999984105438, -1.4365545717238482) +description = Camden township, OH +station = ('klpr', 0.002490974653634992) +zone = ('ohz010', 0.0022604619383000714) + +[fips3909312140] +centroid = (0.72095285815193877, -1.4333071248511249) +description = Carlisle township, OH +station = ('klpr', 0.0010888132156959196) +zone = ('ohz010', 0.00043172396566773264) + +[fips3909316] +centroid = (0.69936992463555925, -1.409542686849385) +description = Brookside village, OH +station = ('khlg', 0.0022315570335129592) +zone = ('wvz003', 0.0019488753792532775) + +[fips3909316910] +centroid = (0.72123207592567284, -1.4297387817421299) +description = Columbia township, OH +station = ('kcle', 0.0016042478314923351) +zone = ('ohz010', 0.003096264358889433) + +[fips3909324220] +centroid = (0.72117402627475147, -1.4313530542205921) +description = Eaton township, OH +station = ('klpr', 0.0023239557813564088) +zone = ('ohz010', 0.0018945963834872046) + +[fips3909325256] +centroid = (0.72210447875228223, -1.4330550818538443) +description = Elyria city, OH +station = ('klpr', 0.0010688424421379491) +zone = ('ohz010', 0.0014749717463214736) + +[fips3909325270] +centroid = (0.72251363628882725, -1.4336102361823186) +description = Elyria township, OH +station = ('klpr', 0.00099861692622815789) +zone = ('ohz010', 0.0017774647599509178) + +[fips3909331150] +centroid = (0.7204897175816295, -1.4317295391935396) +description = Grafton village, OH +station = ('klpr', 0.0023198803394655072) +zone = ('ohz010', 0.001582755482835477) + +[fips3909331164] +centroid = (0.71960712203218857, -1.4314631670431002) +description = Grafton township, OH +station = ('klpr', 0.0030204610693093008) +zone = ('ohz010', 0.0020971687361936767) + +[fips3909334972] +centroid = (0.72123743408647645, -1.4364721398232765) +description = Henrietta township, OH +station = ('klpr', 0.0016431521836031853) +zone = ('ohz010', 0.0020608108875007198) + +[fips3909336876] +centroid = (0.71748792580112453, -1.4351612579286885) +description = Huntington township, OH +station = ('klpr', 0.004247637310874173) +zone = ('ohz010', 0.003409858448082058) + +[fips3909341244] +centroid = (0.7197252808225485, -1.4332594075493752) +description = LaGrange township, OH +station = ('klpr', 0.0021378559849158569) +zone = ('ohz010', 0.0010978258741011753) + +[fips3909344856] +centroid = (0.72324358534188882, -1.4343067272736194) +description = Lorain city, OH +station = ('klpr', 0.0015506606995411649) +zone = ('ohz010', 0.0025288921507223084) + +[fips3909355446] +centroid = (0.72120710026407675, -1.4350617392547398) +description = New Russia township, OH +station = ('klpr', 0.00071181706005875203) +zone = ('ohz010', 0.0010495314194123655) + +[fips3909356966] +centroid = (0.72232461713083629, -1.4316015716527832) +description = North Ridgeville city, OH +station = ('klpr', 0.002171172174930275) +zone = ('ohz010', 0.0022912464607454043) + +[fips3909357834] +centroid = (0.72057834540104593, -1.4349907916206459) +description = Oberlin city, OH +station = ('klpr', 0.0012089058849301809) +zone = ('ohz010', 0.0009030538835572635) + +[fips3909358] +centroid = (0.69532589203893325, -1.4733644208597418) +description = Brookville city, OH +station = ('kday', 0.0028925177892872192) +zone = ('ohz061', 0.0022552131055264433) + +[fips3909361532] +centroid = (0.71847068579633744, -1.4332162281036811) +description = Penfield township, OH +station = ('klpr', 0.0033375810244773412) +zone = ('ohz010', 0.0023150728510392717) + +[fips3909362960] +centroid = (0.71967405540900253, -1.4349362151749363) +description = Pittsfield township, OH +station = ('klpr', 0.0020639499707365773) +zone = ('ohz010', 0.0013636158011788365) + +[fips3909367776] +centroid = (0.71726098063848764, -1.4365564217728553) +description = Rochester township, OH +station = ('klpr', 0.0047279535117995472) +zone = ('ohz010', 0.0040490321392620786) + +[fips3909372060] +centroid = (0.72355921068381945, -1.4328100899867418) +description = Sheffield village, OH +station = ('klpr', 0.0022020233950489523) +zone = ('ohz010', 0.0029147822820450226) + +[fips3909372067] +centroid = (0.72296448974120242, -1.4337932688609751) +description = Sheffield township, OH +station = ('klpr', 0.0013424300685116182) +zone = ('ohz010', 0.0022220795544641123) + +[fips3909372088] +centroid = (0.7241089719449052, -1.4328743181032153) +description = Sheffield Lake city, OH +station = ('klpr', 0.0026629622173382169) +zone = ('ohz010', 0.0034387690068381936) + +[fips3909382656] +centroid = (0.71853992300776415, -1.4349842466359513) +description = Wellington township, OH +station = ('klpr', 0.0031873727655547849) +zone = ('ohz010', 0.0023732573740433511) + +[fips3909386] +centroid = (0.71712107504564793, -1.4754138039207261) +description = Broughton village, OH +station = ('kdfi', 0.0044848792109055957) +zone = ('ohz015', 0.00077526766327263566) + +[fips39095] +centroid = (0.72749374132317535, -1.4568065520592419) +description = Lucas County, OH +station = ('ktdz', 0.0020273532080555528) +zone = ('ohz003', 0.0027028645747763243) + +[fips3909533376] +centroid = (0.72768536102175185, -1.4563818785456466) +description = Harbor View village, OH +station = ('ktdz', 0.002267382912520158) +zone = ('ohz003', 0.0030706212295370109) + +[fips3909533418] +centroid = (0.72647195576588774, -1.4633217090773039) +description = Harding township, OH +station = ('ktol', 0.00089497252289359155) +zone = ('ohz003', 0.0023958082455685635) + +[fips3909539116] +centroid = (0.72849081301825469, -1.4504750734916594) +description = Jerusalem township, OH +station = ('kttf', 0.0055236623892274562) +zone = ('ohz007', 0.0035538810207855938) + +[fips3909548342] +centroid = (0.7255527955686174, -1.4602499470470862) +description = Maumee city, OH +station = ('ktol', 0.0017604153741540322) +zone = ('ohz003', 0.00085892458393401806) + +[fips3909551156] +centroid = (0.72545413210600229, -1.4617275951517024) +description = Monclova township, OH +station = ('ktol', 0.0007138685612598989) +zone = ('ohz003', 0.001534663249108371) + +[fips3909558730] +centroid = (0.72722804985114431, -1.4559447433811921) +description = Oregon city, OH +station = ('ktdz', 0.0019407418241407484) +zone = ('ohz003', 0.0032251726666807819) + +[fips3909559010] +centroid = (0.72727967669041826, -1.4598161978213808) +description = Ottawa Hills village, OH +station = ('kduh', 0.0011623756228864954) +zone = ('ohz003', 0.00090228591115319365) + +[fips3909564836] +centroid = (0.72378374729208861, -1.4632215795381169) +description = Providence township, OH +station = ('ktol', 0.0020386557351690943) +zone = ('ohz003', 0.0035031224644222398) + +[fips3909566516] +centroid = (0.72762385561891152, -1.4631065099805332) +description = Richfield township, OH +station = ('ktol', 0.0018980810279492699) +zone = ('ohz003', 0.0025433971278661558) + +[fips3909573990] +centroid = (0.72684062166378649, -1.4624081513869327) +description = Spencer township, OH +station = ('ktol', 0.0010827285348411089) +zone = ('ohz003', 0.0017660037345812571) + +[fips3909574123] +centroid = (0.72639755237987536, -1.4613608665692734) +description = Springfield township, OH +station = ('ktol', 0.0011126256063693069) +zone = ('ohz003', 0.00092915418077771405) + +[fips3909575903] +centroid = (0.72549265152259379, -1.4634106510559857) +description = Swanton township, OH +station = ('ktol', 0.00067484611963096572) +zone = ('ohz003', 0.0026263997272157557) + +[fips3909576025] +centroid = (0.72770262232805394, -1.4611980273500622) +description = Sylvania township, OH +station = ('kduh', 0.001116847597870931) +zone = ('ohz003', 0.0015271702130680641) + +[fips3909577000] +centroid = (0.72717521873468638, -1.4587786693942404) +description = Toledo city, OH +station = ('kduh', 0.0015760819902108736) +zone = ('ohz003', 0.0012623246259927006) + +[fips3909581438] +centroid = (0.72811778379722603, -1.4561714965576111) +description = Washington township, OH +station = ('ktdz', 0.0027245566877617377) +zone = ('ohz003', 0.0034089620201100518) + +[fips3909581872] +centroid = (0.72439845225464095, -1.4621527922640731) +description = Waterville township, OH +station = ('ktol', 0.0014055218296222453) +zone = ('ohz003', 0.0025195920511482959) + +[fips3909596] +centroid = (0.69710446981317808, -1.4355164498847617) +description = Brownsville CDP, OH +station = ('kvta', 0.0031951989050216095) +zone = ('ohz066', 0.003565455413261677) + +[fips3909680] +centroid = (0.71991890764976485, -1.4279687560812198) +description = Brunswick city, OH +station = ('kcle', 0.0026833908970109468) +zone = ('ohz020', 0.0025291924038426316) + +[fips39097] +centroid = (0.6963271525242174, -1.455620042327151) +description = Madison County, OH +station = ('ktzr', 0.0035311631711092309) +zone = ('ohz054', 4.4031945473842019e-05) + +[fips3909711234] +centroid = (0.69911098758773327, -1.4539990503310687) +description = Canaan township, OH +station = ('kmrt', 0.0029147931773600326) +zone = ('ohz054', 0.0030815435606756101) + +[fips3909720142] +centroid = (0.69976745827928599, -1.4537309677579624) +description = Darby township, OH +station = ('kmrt', 0.002332964283160681) +zone = ('ohz045', 0.0037421795008137026) + +[fips3909721154] +centroid = (0.69713119080402608, -1.4555918203531464) +description = Deer Creek township, OH +station = ('ktzr', 0.0035827766810412639) +zone = ('ohz054', 0.0008460906506834253) + +[fips3909726068] +centroid = (0.69546180082778597, -1.4538540832833979) +description = Fairfield township, OH +station = ('ktzr', 0.0023703449682417098) +zone = ('ohz054', 0.0015745817590037175) + +[fips3909738696] +centroid = (0.69736098085334364, -1.4541402125609699) +description = Jefferson township, OH +station = ('ktzr', 0.0025793916252575448) +zone = ('ohz054', 0.001554214682882865) + +[fips3909744674] +centroid = (0.69627322185033069, -1.4562612588410411) +description = London city, OH +station = ('ktzr', 0.0040244372271123173) +zone = ('ohz054', 0.00050529357360336725) + +[fips3909751478] +centroid = (0.69850886644908783, -1.4557577837117184) +description = Monroe township, OH +station = ('kmrt', 0.0035503073810827243) +zone = ('ohz054', 0.0022268929063747099) + +[fips3909757708] +centroid = (0.69486687044565876, -1.4551629231427612) +description = Oak Run township, OH +station = ('ktzr', 0.003532156230227756) +zone = ('ohz054', 0.0014579280181027392) + +[fips3909759528] +centroid = (0.69491331365705433, -1.4575558568137079) +description = Paint township, OH +station = ('ksgh', 0.0044201162179219036) +zone = ('ohz054', 0.0020321674836125268) + +[fips3909762666] +centroid = (0.69955341109982128, -1.4563528537201857) +description = Pike township, OH +station = ('kmrt', 0.0027169457909018914) +zone = ('ohz054', 0.0033184013941739299) + +[fips3909763338] +centroid = (0.69357593766442105, -1.4536500892004249) +description = Pleasant township, OH +station = ('ktzr', 0.0034736979966888083) +zone = ('ohz054', 0.0030966956601113649) + +[fips3909765480] +centroid = (0.69364335973342561, -1.455884354989073) +description = Range township, OH +station = ('ktzr', 0.004644555361222262) +zone = ('ohz054', 0.0026506160637132345) + +[fips3909772960] +centroid = (0.6977148114526005, -1.4571495267105512) +description = Somerford township, OH +station = ('kmrt', 0.0046409847290244241) +zone = ('ohz054', 0.0018575312960291098) + +[fips3909774784] +centroid = (0.69367577049763518, -1.4586000523985914) +description = Stokes township, OH +station = ('ksgh', 0.0039668681526419261) +zone = ('ohz054', 0.00347968991528943) + +[fips3909778428] +centroid = (0.69594127767989389, -1.4566510257695966) +description = Union township, OH +station = ('ksgh', 0.0051266887507742612) +zone = ('ohz054', 0.00087472998547107441) + +[fips3909792] +centroid = (0.72381385422168554, -1.4756537343329978) +description = Bryan city, OH +station = ('kdfi', 0.0028452868756380992) +zone = ('ohz001', 0.0016337778835804526) + +[fips3909834] +centroid = (0.68876350641131212, -1.4343182988065601) +description = Buchtel village, OH +station = ('kuni', 0.0044703625582904801) +zone = ('ohz075', 0.0029044868851786261) + +[fips3909890] +centroid = (0.69702762296621268, -1.4397046466776027) +description = Buckeye Lake village, OH +station = ('kvta', 0.0014265871795036498) +zone = ('ohz056', 0.0027072885230731004) + +[fips39099] +centroid = (0.71577488514029208, -1.4097093483396579) +description = Mahoning County, OH +station = ('kyng', 0.0043905595900531041) +zone = ('ohz033', 9.1577767554865106e-05) + +[fips3909903198] +centroid = (0.71723816918516414, -1.4095416571051262) +description = Austintown township, OH +station = ('kyng', 0.0029789111959936084) +zone = ('ohz033', 0.0014113411824781918) + +[fips3909904668] +centroid = (0.71462911139294283, -1.4082329045122257) +description = Beaver township, OH +station = ('kucp', 0.0038520734810246339) +zone = ('ohz033', 0.0016900902117109907) + +[fips3909905858] +centroid = (0.7159812179644629, -1.4128701570683122) +description = Berlin township, OH +station = ('kpov', 0.0052211842375798909) +zone = ('ohz033', 0.0023245440571431123) + +[fips3909907468] +centroid = (0.71596324107316733, -1.4078689684565999) +description = Boardman township, OH +station = ('kucp', 0.003313752556188028) +zone = ('ohz033', 0.0014583811143056094) + +[fips3909911066] +centroid = (0.71694657702703346, -1.4065602856768695) +description = Campbell city, OH +station = ('kucp', 0.0025004014910425514) +zone = ('ohz033', 0.0026788292322071673) + +[fips3909911374] +centroid = (0.71603900581599633, -1.4095384806058875) +description = Canfield township, OH +station = ('kyng', 0.0040996841067143918) +zone = ('ohz033', 0.00027770063555866031) + +[fips3909916476] +centroid = (0.71722930291256404, -1.4059713941339542) +description = Coitsville township, OH +station = ('kucp', 0.002232452308967489) +zone = ('ohz033', 0.0032006246642846889) + +[fips3909925088] +centroid = (0.71602650925855216, -1.4112579615316601) +description = Ellsworth township, OH +station = ('kyng', 0.0046669463578988251) +zone = ('ohz033', 0.00111950008822253) + +[fips3909926072] +centroid = (0.71394139930777945, -1.4083159821846207) +description = Fairfield township, OH +station = ('kbvi', 0.004540974792142753) +zone = ('ohz033', 0.0022025747938873019) + +[fips3909931038] +centroid = (0.71470979796426259, -1.4123405543600871) +description = Goshen township, OH +station = ('kyng', 0.0062164879613032225) +zone = ('ohz033', 0.0022293336185078977) + +[fips3909931794] +centroid = (0.71472917111895962, -1.4101788244551519) +description = Green township, OH +station = ('kyng', 0.0054946420098020881) +zone = ('ohz033', 0.0011478259280234934) + +[fips3909937884] +centroid = (0.71716404505183196, -1.4113799076864968) +description = Jackson township, OH +station = ('kyng', 0.0038233859854887278) +zone = ('ohz033', 0.0017838680355757837) + +[fips3909945178] +centroid = (0.7162336798407638, -1.4057262277339266) +description = Lowellville village, OH +station = ('kucp', 0.0017090296454523506) +zone = ('ohz033', 0.0030946553229473611) + +[fips3909950638] +centroid = (0.71725570974414676, -1.4129035801234877) +description = Milton township, OH +station = ('kpov', 0.0044602445301677217) +zone = ('ohz033', 0.0027385822142599724) + +[fips3909955118] +centroid = (0.71498365757719307, -1.4060079587817835) +description = New Middletown village, OH +station = ('kucp', 0.0021759455382959828) +zone = ('ohz033', 0.002983960591612904) + +[fips3909961945] +centroid = (0.71393993323120797, -1.4105420274724918) +description = Perry township, OH +station = ('kbvi', 0.0060310547808252769) +zone = ('ohz033', 0.0019818754564820567) + +[fips3909963968] +centroid = (0.7159011597116739, -1.406127042596647) +description = Poland township, OH +station = ('kucp', 0.0020029351979952139) +zone = ('ohz033', 0.0027681888735399396) + +[fips3909971220] +centroid = (0.71418878227595728, -1.4141577039108009) +description = Sebring village, OH +station = ('kpov', 0.0060132487785497426) +zone = ('ohz033', 0.0036848318487115121) + +[fips3909972740] +centroid = (0.71474491398881268, -1.4141212439827267) +description = Smith township, OH +station = ('kpov', 0.0055501097606855919) +zone = ('ohz033', 0.0034445775974868312) + +[fips3909974] +centroid = (0.7090228869427343, -1.4706212868743822) +description = Buckland village, OH +station = ('kaoh', 0.0034886798879958931) +zone = ('ohz035', 0.001215142539737256) + +[fips3909974124] +centroid = (0.71451170309416123, -1.4062535615141241) +description = Springfield township, OH +station = ('kucp', 0.0025856879535546954) +zone = ('ohz033', 0.0029853534356354709) + +[fips3909975126] +centroid = (0.71647891605396152, -1.4066083869510546) +description = Struthers city, OH +station = ('kucp', 0.0024045977865083741) +zone = ('ohz033', 0.0024872321717213778) + +[fips3909988000] +centroid = (0.71731452733993883, -1.4075365181406803) +description = Youngstown city, OH +station = ('kyng', 0.0026478782711984485) +zone = ('ohz033', 0.0022527604737189824) + +[fips3910030] +centroid = (0.71218353859175587, -1.4481275881944347) +description = Bucyrus city, OH +station = ('kmnn', 0.0035212519756283051) +zone = ('ohz028', 0.0010528286325565772) + +[fips39101] +centroid = (0.70839786708430263, -1.4516414246708897) +description = Marion County, OH +station = ('kmnn', 0.0014931238548209162) +zone = ('ohz036', 0.00016019420917879503) + +[fips3910106348] +centroid = (0.70866273825158521, -1.4529290936864263) +description = Big Island township, OH +station = ('kmnn', 0.0023967091372676936) +zone = ('ohz036', 0.0011712855198372125) + +[fips3910107958] +centroid = (0.70754712379371054, -1.4550386382467264) +description = Bowling Green township, OH +station = ('kmnn', 0.0042102884712033432) +zone = ('ohz036', 0.0028646486113110183) + +[fips3910115196] +centroid = (0.7086205361902721, -1.4489003850806328) +description = Claridon township, OH +station = ('kmnn', 0.00072661771172698522) +zone = ('ohz036', 0.0019367252677166527) + +[fips3910128] +centroid = (0.69668066896420877, -1.4227997017020508) +description = Buffalo CDP, OH +station = ('kzzv', 0.0051127690595634866) +zone = ('ohz058', 0.0023862469746330473) + +[fips3910131178] +centroid = (0.7097225719865663, -1.4550572783631379) +description = Grand township, OH +station = ('kmnn', 0.004084093345366099) +zone = ('ohz036', 0.0030610321544948292) + +[fips3910131192] +centroid = (0.70977479223778595, -1.4509453524586093) +description = Grand Prairie township, OH +station = ('kmnn', 0.001244018595463486) +zone = ('ohz036', 0.0014408194763330961) + +[fips3910131962] +centroid = (0.70757799866817828, -1.4531329655963516) +description = Green Camp township, OH +station = ('kmnn', 0.0028621969636547597) +zone = ('ohz036', 0.00152221687791024) + +[fips3910147768] +centroid = (0.70864224808616683, -1.4509021206530375) +description = Marion township, OH +station = ('kmnn', 0.0008834832190005201) +zone = ('ohz036', 0.00047886384126037728) + +[fips3910151730] +centroid = (0.70875572939413145, -1.4548729541408347) +description = Montgomery township, OH +station = ('kmnn', 0.0038635070231215311) +zone = ('ohz036', 0.002639652135031036) + +[fips3910156] +centroid = (0.68193483589971415, -1.4632712341553362) +description = Buford CDP, OH +station = ('kiln', 0.0063518087142019584) +zone = ('ohz079', 0.0024327826200431267) + +[fips3910163352] +centroid = (0.70733103457902102, -1.4508493768030422) +description = Pleasant township, OH +station = ('kmnn', 0.0017595551748601185) +zone = ('ohz036', 0.0011402558615966685) + +[fips3910164794] +centroid = (0.70635632055165976, -1.4518343359131127) +description = Prospect township, OH +station = ('kmnn', 0.0029771706964092084) +zone = ('ohz036', 0.0020487066580958399) + +[fips3910166754] +centroid = (0.70721022288819813, -1.4489509996289405) +description = Richland township, OH +station = ('kmnn', 0.0018000372231969876) +zone = ('ohz036', 0.0022192673847778819) + +[fips3910170240] +centroid = (0.70988029739106906, -1.4529282559283851) +description = Salt Rock township, OH +station = ('kmnn', 0.0025793734470092866) +zone = ('ohz036', 0.0018801990488042347) + +[fips3910171073] +centroid = (0.70989590063458186, -1.448894258974958) +description = Scott township, OH +station = ('kmnn', 0.0012088568079685364) +zone = ('ohz036', 0.0024494273275307045) + +[fips3910177742] +centroid = (0.70991735073108897, -1.4470240339616911) +description = Tully township, OH +station = ('kmnn', 0.0023324745808269384) +zone = ('ohz037', 0.0030435713909979108) + +[fips3910180514] +centroid = (0.70620219052541611, -1.4498963223116983) +description = Waldo township, OH +station = ('kmnn', 0.0026936594582014457) +zone = ('ohz036', 0.0024725276102405143) + +[fips3910254] +centroid = (0.71534713984721343, -1.4310797531130219) +description = Burbank village, OH +station = ('kbjj', 0.002554744828745255) +zone = ('ohz020', 0.0026102590768256012) + +[fips3910282] +centroid = (0.72025348726737215, -1.4530110892546848) +description = Burgoon village, OH +station = ('ktdz', 0.0060399563973129672) +zone = ('ohz008', 0.0020879274227279206) + +[fips3910296] +centroid = (0.70429161349984304, -1.4772933315389063) +description = Burkettsville village, OH +station = ('kves', 0.0030620052351147628) +zone = ('ohz034', 0.0032696933827155886) + +[fips39103] +centroid = (0.71761046536790707, -1.4294170826544021) +description = Medina County, OH +station = ('kbjj', 0.0043578278179925607) +zone = ('ohz020', 2.7092499417706664e-05) + +[fips3910309680] +centroid = (0.71991890764976485, -1.4279687560812198) +description = Brunswick city, OH +station = ('kcle', 0.0026833908970109468) +zone = ('ohz020', 0.0025291924038426316) + +[fips3910309708] +centroid = (0.71940993473329817, -1.4286388927008156) +description = Brunswick Hills township, OH +station = ('kcle', 0.0031570504784137533) +zone = ('ohz020', 0.001867285594129689) + +[fips3910313750] +centroid = (0.71729841795094296, -1.4316101935792882) +description = Chatham township, OH +station = ('kbjj', 0.0044520582890544922) +zone = ('ohz020', 0.0016851544737954555) + +[fips3910314254] +centroid = (0.71687756670840952, -1.4294855693742505) +description = Chippewa Lake village, OH +station = ('kbjj', 0.0036294122932247004) +zone = ('ohz020', 0.00076156707073298815) + +[fips3910319350] +centroid = (0.71543344637872452, -1.4291676925575849) +description = Creston Village township, OH +station = ('kbjj', 0.0021757096953006218) +zone = ('ohz020', 0.0022122134103236438) + +[fips3910330660] +centroid = (0.71660093202196851, -1.4294466485319308) +description = Gloria Glens Park village, OH +station = ('kbjj', 0.0033513829798716725) +zone = ('ohz020', 0.0010367716067835773) + +[fips3910331374] +centroid = (0.71855575314407971, -1.4266045194713983) +description = Granger township, OH +station = ('kcle', 0.0042692038257993803) +zone = ('ohz020', 0.0023101273745396562) + +[fips3910332676] +centroid = (0.71606326589259917, -1.4282037821182934) +description = Guilford township, OH +station = ('kbjj', 0.0028919819051525155) +zone = ('ohz020', 0.0018215611178138001) + +[fips3910334104] +centroid = (0.71602277425395289, -1.4316055335501856) +description = Harrisville township, OH +station = ('kbjj', 0.0033362046437530484) +zone = ('ohz020', 0.0023072815283497624) + +[fips3910335644] +centroid = (0.71993232923171269, -1.4265948852539274) +description = Hinckley township, OH +station = ('kcle', 0.0030162925437143546) +zone = ('ohz020', 0.0031281149693910553) + +[fips3910336078] +centroid = (0.71612812232760314, -1.4332080076029041) +description = Homer township, OH +station = ('kbjj', 0.0042080502047257239) +zone = ('ohz020', 0.0032303650564391964) + +[fips3910341174] +centroid = (0.7170919280471395, -1.4299954498619281) +description = Lafayette township, OH +station = ('kbjj', 0.0038888404381816192) +zone = ('ohz020', 0.00069717874644868521) + +[fips3910344072] +centroid = (0.71852381361876827, -1.4315989711121979) +description = Litchfield township, OH +station = ('klpr', 0.0037929236173032685) +zone = ('ohz020', 0.0018653661009199371) + +[fips3910344240] +centroid = (0.71956483270441274, -1.4299193185999561) +description = Liverpool township, OH +station = ('kcle', 0.0031723175342372044) +zone = ('ohz020', 0.0019637211089387819) + +[fips3910344604] +centroid = (0.71626520048705489, -1.4313406100230253) +description = Lodi village, OH +station = ('kbjj', 0.0034382937618462539) +zone = ('ohz020', 0.0019951279185547342) + +[fips3910348804] +centroid = (0.71868642594517651, -1.4280751164458363) +description = Medina township, OH +station = ('kcle', 0.0038963953130751244) +zone = ('ohz020', 0.001457725110763952) + +[fips3910348848] +centroid = (0.71794295059041191, -1.4288497808343341) +description = Medina City township, OH +station = ('kcle', 0.0046287745966916913) +zone = ('ohz020', 0.00052670319888520594) + +[fips3910351856] +centroid = (0.7172710686415642, -1.4282877848151918) +description = Montville township, OH +station = ('kbjj', 0.0040636798801349707) +zone = ('ohz020', 0.00092807027097828866) + +[fips3910352] +centroid = (0.6704071107232169, -1.4403531412144734) +description = Burlington CDP, OH +station = ('khts', 0.00084772259045784947) +zone = ('kyz103', 0.0023884631501458653) + +[fips3910367356] +centroid = (0.71550320718892668, -1.4276952629874322) +description = Rittman city, OH +station = ('kbjj', 0.0024945082277229983) +zone = ('ohz020', 0.0024991052856048607) + +[fips3910371488] +centroid = (0.71594379810530018, -1.4288430264101288) +description = Seville Village township, OH +station = ('kbjj', 0.0026948738711960294) +zone = ('ohz020', 0.0017485609508142434) + +[fips3910371801] +centroid = (0.71736159886986528, -1.4265809575264965) +description = Sharon township, OH +station = ('kakr', 0.0037533725702962712) +zone = ('ohz021', 0.0027278495861669501) + +[fips3910373992] +centroid = (0.71728654971202943, -1.4333094461390299) +description = Spencer village, OH +station = ('klpr', 0.0044786721743497798) +zone = ('ohz010', 0.0034762678117320795) + +[fips3910373999] +centroid = (0.71760488031430059, -1.4329474124922887) +description = Spencer township, OH +station = ('klpr', 0.0042263648779640294) +zone = ('ohz010', 0.0032038098248451902) + +[fips3910380304] +centroid = (0.71608557120043959, -1.4264980543870269) +description = Wadsworth city, OH +station = ('kbjj', 0.0034581758233531326) +zone = ('ohz020', 0.0026942087051576059) + +[fips3910380318] +centroid = (0.71629820466321004, -1.4269756462835426) +description = Wadsworth township, OH +station = ('kbjj', 0.003449650412228185) +zone = ('ohz020', 0.0022775256614964759) + +[fips3910383426] +centroid = (0.71571175658124753, -1.4294170128412322) +description = Westfield township, OH +station = ('kbjj', 0.0024631801114136554) +zone = ('ohz020', 0.0019257447930337991) + +[fips3910383468] +centroid = (0.71607764740563562, -1.4299738950456662) +description = Westfield Center village, OH +station = ('kbjj', 0.0028902778309179396) +zone = ('ohz020', 0.0016148895887949737) + +[fips3910387052] +centroid = (0.7186205048593286, -1.4299782060089183) +description = York township, OH +station = ('kcle', 0.0040887488865086093) +zone = ('ohz020', 0.0010692794023476056) + +[fips3910436] +centroid = (0.72379891420328846, -1.4162490621402957) +description = Burton village, OH +station = ('kpov', 0.0045850889774961684) +zone = ('ohz013', 0.00066778086328849406) + +[fips39105] +centroid = (0.68224583611912704, -1.431665607783039) +description = Meigs County, OH +station = ('k3i2', 0.0032042764085746713) +zone = ('ohz085', 0.00015375076191320093) + +[fips3910504906] +centroid = (0.68323754965340278, -1.431583524948318) +description = Bedford township, OH +station = ('kuni', 0.0030023726558585317) +zone = ('ohz085', 0.0011262773846106525) + +[fips3910514016] +centroid = (0.68203070683552625, -1.4298641661955933) +description = Chester township, OH +station = ('k3i2', 0.0036896431867571595) +zone = ('ohz085', 0.0013263792379894107) + +[fips3910516924] +centroid = (0.68346088198448796, -1.4357320678605532) +description = Columbia township, OH +station = ('kuni', 0.0009795393670851769) +zone = ('ohz084', 0.0034253627990812278) + +[fips3910542336] +centroid = (0.68056346089325215, -1.4279466776661822) +description = Lebanon township, OH +station = ('k3i2', 0.0040810328097544537) +zone = ('wvz008', 0.0033680664292283741) + +[fips3910542868] +centroid = (0.67923088455606195, -1.4290970939893415) +description = Letart township, OH +station = ('k3i2', 0.0029485660240738719) +zone = ('wvz008', 0.0031542010515056992) + +[fips3910558282] +centroid = (0.68295471904811711, -1.4275746607361195) +description = Olive township, OH +station = ('k3i2', 0.0055890763194947181) +zone = ('ohz085', 0.0032127131223753692) + +[fips3910558646] +centroid = (0.68329987536099146, -1.4294410809316171) +description = Orange township, OH +station = ('k3i2', 0.0049084099891123414) +zone = ('ohz085', 0.0020347276422657064) + +[fips3910569372] +centroid = (0.68166568867576416, -1.4337676299742634) +description = Rutland township, OH +station = ('k3i2', 0.002573382988224415) +zone = ('ohz085', 0.0017636909101968611) + +[fips3910569904] +centroid = (0.68198848732092054, -1.4354824334176404) +description = Salem township, OH +station = ('kuni', 0.0023664403084835538) +zone = ('ohz085', 0.003039892610227646) + +[fips3910570114] +centroid = (0.68194345782621901, -1.4319623486624633) +description = Salisbury township, OH +station = ('k3i2', 0.0028502081200420136) +zone = ('ohz085', 0.00034800099735884368) + +[fips3910570996] +centroid = (0.68333553243760981, -1.4336144947856935) +description = Scipio township, OH +station = ('kuni', 0.001580123371445954) +zone = ('ohz085', 0.0020039090165299357) + +[fips3910575847] +centroid = (0.6807590250359381, -1.4296218795888311) +description = Sutton township, OH +station = ('k3i2', 0.0029866482990718785) +zone = ('ohz085', 0.0020290970464048709) + +[fips3910632] +centroid = (0.70843209299093424, -1.438503476179795) +description = Butler village, OH +station = ('kmfd', 0.0041541675567119763) +zone = ('ohz047', 0.003340072461411595) + +[fips3910674] +centroid = (0.68594263546106871, -1.4676539129867265) +description = Butlerville village, OH +station = ('kiln', 0.0047379907819129971) +zone = ('ohz071', 0.0024301997558422842) + +[fips39107] +centroid = (0.70747502424231068, -1.4771080822920997) +description = Mercer County, OH +station = ('kves', 0.0060079559765975985) +zone = ('ohz034', 8.9297742018330889e-05) + +[fips3910706586] +centroid = (0.71009221526884625, -1.4790566027756111) +description = Black Creek township, OH +station = ('kfwa', 0.0081527986772291089) +zone = ('ohz034', 0.0029542164131622943) + +[fips3910710604] +centroid = (0.70655623056418326, -1.4770972961573223) +description = Butler township, OH +station = ('kves', 0.0051150876060864518) +zone = ('ohz034', 0.0010006515671282163) + +[fips3910712952] +centroid = (0.70857630954702655, -1.4751204489800509) +description = Center township, OH +station = ('kves', 0.0069557258840990694) +zone = ('ohz034', 0.0017918080452756476) + +[fips3910716] +centroid = (0.69766609931317736, -1.4232429106123021) +description = Byesville village, OH +station = ('kzzv', 0.0047556009557350367) +zone = ('ohz058', 0.0015383088902450007) + +[fips3910722708] +centroid = (0.71006816463175371, -1.4769625916456535) +description = Dublin township, OH +station = ('kves', 0.0085370630509140327) +zone = ('ohz034', 0.0025127725607142731) + +[fips3910728350] +centroid = (0.70657755848764259, -1.4751076382633415) +description = Franklin township, OH +station = ('kves', 0.0049580143910014059) +zone = ('ohz034', 0.00177801503804812) + +[fips3910730058] +centroid = (0.70474855815130766, -1.4791684434740788) +description = Gibson township, OH +station = ('kves', 0.0042848552083906933) +zone = ('ohz034', 0.0032339093405888606) + +[fips3910731430] +centroid = (0.7051014462727685, -1.4771827474774999) +description = Granville township, OH +station = ('kves', 0.0037560065390463641) +zone = ('ohz034', 0.0024568098165925522) + +[fips3910736344] +centroid = (0.70867127291162757, -1.477206012716429) +description = Hopewell township, OH +station = ('kves', 0.0071927065377230138) +zone = ('ohz034', 0.0011203030865142702) + +[fips3910738724] +centroid = (0.70763154536962947, -1.4760068668005537) +description = Jefferson township, OH +station = ('kves', 0.0060314791348569045) +zone = ('ohz034', 0.00080376421397309239) + +[fips3910743260] +centroid = (0.70835453055897557, -1.4789390548504893) +description = Liberty township, OH +station = ('kves', 0.0072726101517462099) +zone = ('ohz034', 0.0016354848237787058) + +[fips3910747782] +centroid = (0.70510032926204713, -1.4750972710075845) +description = Marion township, OH +station = ('kves', 0.0034823733020763266) +zone = ('ohz034', 0.002874367721296412) + +[fips3910765781] +centroid = (0.70581289483575893, -1.4790214343911836) +description = Recovery township, OH +station = ('kves', 0.0050493217989816593) +zone = ('ohz034', 0.0022946538423840655) + +[fips3910778442] +centroid = (0.71011607391972087, -1.4750455743551405) +description = Union township, OH +station = ('kves', 0.0084964109951381379) +zone = ('ohz034', 0.0029815736293725783) + +[fips3910781452] +centroid = (0.70701067939481754, -1.4791042851707756) +description = Washington township, OH +station = ('kves', 0.0061090483180931202) +zone = ('ohz034', 0.0016470392595131214) + +[fips3910782206] +centroid = (0.7080912127347273, -1.4753080369680553) +description = Wayne township, OH +station = ('kves', 0.0064688692487460831) +zone = ('ohz034', 0.0014344453878954895) + +[fips3910800] +centroid = (0.70261890739802424, -1.4135759682178186) +description = Cadiz village, OH +station = ('khlg', 0.0048230373454384162) +zone = ('ohz049', 0.0014676194584726618) + +[fips3910884] +centroid = (0.7126237106291089, -1.4675578500646971) +description = Cairo village, OH +station = ('kaoh', 0.0024468654421618587) +zone = ('ohz025', 0.0010630319087628749) + +[fips39109] +centroid = (0.69906241507465028, -1.4700631480328872) +description = Miami County, OH +station = ('kday', 0.0026806518235081185) +zone = ('ohz051', 6.619973980029975e-06) + +[fips3910906110] +centroid = (0.69690862641781182, -1.4677134985273899) +description = Bethel township, OH +station = ('kffo', 0.00178490822458742) +zone = ('ohz051', 0.0028121817216950618) + +[fips3910909498] +centroid = (0.70075091640619969, -1.4673629316938341) +description = Brown township, OH +station = ('kday', 0.0047644616759293656) +zone = ('ohz051', 0.0026719647224063168) + +[fips3910918224] +centroid = (0.69889884281715342, -1.4703288569582109) +description = Concord township, OH +station = ('kday', 0.0025382386743809863) +zone = ('ohz051', 0.00025681167555501006) + +[fips3910924836] +centroid = (0.69824193579328775, -1.46778158382151) +description = Elizabeth township, OH +station = ('kday', 0.002444784296077323) +zone = ('ohz051', 0.0019365184636243272) + +[fips3910926] +centroid = (0.71016220297185129, -1.4058475630235252) +description = Calcutta CDP, OH +station = ('kbvi', 0.0023904227113663557) +zone = ('wvz001', 0.0029504111870914374) + +[fips3910936610] +centroid = (0.69616597136779568, -1.4680674687529867) +description = Huber Heights city, OH +station = ('kffo', 0.0012752754200158699) +zone = ('ohz051', 0.0032796316011438468) + +[fips3910940] +centroid = (0.69370474296321827, -1.4226698142991172) +description = Caldwell village, OH +station = ('kzzv', 0.0062870849287867334) +zone = ('ohz068', 0.00084398300332166854) + +[fips3910944968] +centroid = (0.69948244601243537, -1.4676131944552777) +description = Lostcreek township, OH +station = ('kday', 0.0035417588914800771) +zone = ('ohz051', 0.0019275002077732363) + +[fips3910951492] +centroid = (0.69737204624080129, -1.4698507065563342) +description = Monroe township, OH +station = ('kday', 0.00098569108215099837) +zone = ('ohz051', 0.0017001035196727925) + +[fips3910954] +centroid = (0.70923768461377723, -1.4480893305772309) +description = Caledonia village, OH +station = ('kmnn', 0.0013332610144969469) +zone = ('ohz036', 0.0026775769194795989) + +[fips3910954138] +centroid = (0.7006672278685665, -1.4725544484604765) +description = Newberry township, OH +station = ('kves', 0.0023237469677783651) +zone = ('ohz051', 0.0024855902504999812) + +[fips3910955594] +centroid = (0.69889982020153452, -1.4722811124463213) +description = Newton township, OH +station = ('kday', 0.003124968511745672) +zone = ('ohz051', 0.0016992749218575529) + +[fips3910962848] +centroid = (0.70075313297434971, -1.4703202873915833) +description = Piqua city, OH +station = ('kves', 0.0039228821555804885) +zone = ('ohz051', 0.0017000990249718881) + +[fips3910974097] +centroid = (0.70085457151047559, -1.469250400560111) +description = Springcreek township, OH +station = ('kday', 0.0044923666867386861) +zone = ('ohz051', 0.0018978270543864744) + +[fips3910974475] +centroid = (0.69936858073203512, -1.4693057973105694) +description = Staunton township, OH +station = ('kday', 0.0030120862050146613) +zone = ('ohz051', 0.00066067706468337511) + +[fips3910978456] +centroid = (0.69761899287666596, -1.4723851340697403) +description = Union township, OH +station = ('kday', 0.0022964751041016662) +zone = ('ohz051', 0.0022862521117853925) + +[fips3910978470] +centroid = (0.69689096368578152, -1.4713845368095722) +description = Union city, OH +station = ('kday', 0.0012748767123634517) +zone = ('ohz051', 0.0023942838197788599) + +[fips3910981466] +centroid = (0.7002142625677964, -1.4711287762609848) +description = Washington township, OH +station = ('kves', 0.0035037490417539896) +zone = ('ohz051', 0.0014063886687832663) + +[fips3910996] +centroid = (0.69849759162211988, -1.4239336770236566) +description = Cambridge city, OH +station = ('kzzv', 0.0043857464240776604) +zone = ('ohz058', 0.0013342390252388757) + +[fips3911024] +centroid = (0.6917905531060935, -1.4773280810443137) +description = Camden village, OH +station = ('kmwo', 0.0037812088484463686) +zone = ('ohz060', 0.001831798287662785) + +[fips3911066] +centroid = (0.71694657702703346, -1.4065602856768695) +description = Campbell city, OH +station = ('kucp', 0.0025004014910425514) +zone = ('ohz033', 0.0026788292322071673) + +[fips39111] +centroid = (0.69334895759519921, -1.4152989747086799) +description = Monroe County, OH +station = ('kpkb', 0.008388095756843959) +zone = ('ohz069', 0.00010709154273911984) + +[fips3911100296] +centroid = (0.6942137507862699, -1.4136350825195836) +description = Adams township, OH +station = ('khlg', 0.0082425672026559364) +zone = ('ohz069', 0.0014443861693396898) + +[fips3911105606] +centroid = (0.6912046635294915, -1.4152500531297467) +description = Benton township, OH +station = ('kpkb', 0.0067807110103064719) +zone = ('ohz069', 0.0021702909880019594) + +[fips3911106124] +centroid = (0.69170004033108501, -1.4180101168088504) +description = Bethel township, OH +station = ('kpkb', 0.0058849208757508998) +zone = ('ohz069', 0.0027570709498087884) + +[fips3911112966] +centroid = (0.69380012520683976, -1.4155824161792039) +description = Center township, OH +station = ('kpkb', 0.008641296818800737) +zone = ('ohz069', 0.00053420115473798034) + +[fips3911128357] +centroid = (0.69340931108073323, -1.4186752966933707) +description = Franklin township, OH +station = ('kpkb', 0.0072648691093942447) +zone = ('ohz069', 0.0027010377518625474) + +[fips3911131808] +centroid = (0.69295056874013894, -1.4135926361121751) +description = Green township, OH +station = ('kpkb', 0.0089182863202415738) +zone = ('ohz069', 0.0012804264358249468) + +[fips3911137898] +centroid = (0.69103360380950352, -1.4139518597788208) +description = Jackson township, OH +station = ('kpkb', 0.0074286990543905411) +zone = ('ohz069', 0.002519385927639871) + +[fips3911142448] +centroid = (0.69192682841408915, -1.4125413021306512) +description = Lee township, OH +station = ('kpkb', 0.0088345968534498248) +zone = ('ohz069', 0.002483217573004971) + +[fips3911146928] +centroid = (0.69536325953821843, -1.4164598804606441) +description = Malaga township, OH +station = ('khlg', 0.0088434554027829963) +zone = ('ohz069', 0.0022248032668482627) + +[fips3911150] +centroid = (0.68410633964846057, -1.4711271356514881) +description = Camp Dennison CDP, OH +station = ('kluk', 0.002408234080603706) +zone = ('ohz078', 0.0031929884010138891) + +[fips3911157988] +centroid = (0.69274861669239074, -1.411652318676148) +description = Ohio township, OH +station = ('khlg', 0.0088529456984621901) +zone = ('ohz069', 0.0027726196471324258) + +[fips3911161952] +centroid = (0.69203666198391722, -1.4150210135720074) +description = Perry township, OH +station = ('kpkb', 0.0074996222070728216) +zone = ('ohz069', 0.0013417633665456299) + +[fips3911169918] +centroid = (0.69404145188251298, -1.4118935231787737) +description = Salem township, OH +station = ('khlg', 0.0077314684122407971) +zone = ('ohz069', 0.0026013781452071528) + +[fips3911171349] +centroid = (0.6951076909758489, -1.4184466585613591) +description = Seneca township, OH +station = ('kpkb', 0.0089417892207868405) +zone = ('ohz069', 0.003061430511406337) + +[fips3911175497] +centroid = (0.69434428396102654, -1.417787918941779) +description = Summit township, OH +station = ('kpkb', 0.0083724695341328478) +zone = ('ohz069', 0.0022387738443512364) + +[fips3911175686] +centroid = (0.69495096040901982, -1.4142882021789727) +description = Sunsbury township, OH +station = ('khlg', 0.0079546175548054557) +zone = ('ohz069', 0.0017145479455961694) + +[fips3911175945] +centroid = (0.69499670548871451, -1.4118658946167146) +description = Switzerland township, OH +station = ('khlg', 0.0068679750674987584) +zone = ('ohz069', 0.003009508090010324) + +[fips3911181480] +centroid = (0.6915910270660055, -1.4166357572893673) +description = Washington township, OH +station = ('kpkb', 0.006361305889669139) +zone = ('ohz069', 0.0021124961195277433) + +[fips3911182208] +centroid = (0.69326490253842321, -1.4173828978355612) +description = Wayne township, OH +station = ('kpkb', 0.0074999526704327465) +zone = ('ohz069', 0.0017104259096522698) + +[fips39113] +centroid = (0.69385944894811502, -1.4711475560037364) +description = Montgomery County, OH +station = ('kday', 0.0027140270387375804) +zone = ('ohz061', 1.2552395373731367e-05) + +[fips3911304] +centroid = (0.71363825307000073, -1.4240015179716814) +description = Canal Fulton city, OH +station = ('kcak', 0.0019021013690806484) +zone = ('ohz032', 0.0032240557227401758) + +[fips3911310618] +centroid = (0.69619513581959647, -1.471047077398699) +description = Butler township, OH +station = ('kday', 0.00093203080776032622) +zone = ('ohz061', 0.002349509959023209) + +[fips3911315518] +centroid = (0.69595712526950193, -1.4735183414464754) +description = Clay township, OH +station = ('kday', 0.0028411119902596836) +zone = ('ohz061', 0.0027868477587943519) + +[fips3911315644] +centroid = (0.6958547617088725, -1.4717565362863423) +description = Clayton city, OH +station = ('kday', 0.0015506941981058113) +zone = ('ohz061', 0.0020614525848818843) + +[fips3911318] +centroid = (0.70334932768998393, -1.4283815089960239) +description = Canal Lewisville CDP, OH +station = ('kzzv', 0.0061423019525651138) +zone = ('ohz048', 0.0010628017480581102) + +[fips3911321000] +centroid = (0.69424649316303733, -1.4695608073675781) +description = Dayton city, OH +station = ('kday', 0.0021520213791526442) +zone = ('ohz061', 0.0012841489310932738) + +[fips3911325396] +centroid = (0.69577667567813839, -1.471477719938336) +description = Englewood city, OH +station = ('kday', 0.0013843144972984483) +zone = ('ohz061', 0.0019462591680417156) + +[fips3911329904] +centroid = (0.69156524855295354, -1.4731163048532783) +description = German township, OH +station = ('kmwo', 0.0016372144844731869) +zone = ('ohz061', 0.0027384331949544499) + +[fips3911332] +centroid = (0.69533692251980583, -1.4454137408339236) +description = Canal Winchester village, OH +station = ('klck', 0.0016226048428579064) +zone = ('ohz065', 0.0029271981144405007) + +[fips3911333922] +centroid = (0.69504765164958027, -1.4701012136638731) +description = Harrison township, OH +station = ('kday', 0.0013516619274576197) +zone = ('ohz061', 0.0014454657476631416) + +[fips3911334] +centroid = (0.70896803124434415, -1.4446804582019905) +description = Candlewood Lake CDP, OH +station = ('kmfd', 0.0048242257169161858) +zone = ('ohz037', 0.0017114827225664542) + +[fips3911336610] +centroid = (0.69563148173766498, -1.4680763873854645) +description = Huber Heights city, OH +station = ('kffo', 0.00095704219748926123) +zone = ('ohz061', 0.0029588077205629929) + +[fips3911337912] +centroid = (0.69301305152736037, -1.4733449953451672) +description = Jackson township, OH +station = ('kmwo', 0.0030923169847952852) +zone = ('ohz061', 0.0018838371702514511) + +[fips3911338738] +centroid = (0.6930285325978256, -1.4717355748820256) +description = Jefferson township, OH +station = ('kmgy', 0.0022404366934840009) +zone = ('ohz061', 0.00093466556122001317) + +[fips3911340040] +centroid = (0.69282574279203635, -1.4687021926420594) +description = Kettering city, OH +station = ('kmgy', 0.0020119292519133001) +zone = ('ohz061', 0.0021407546622102349) + +[fips3911349392] +centroid = (0.69161411777200943, -1.4706834380490459) +description = Miami township, OH +station = ('kmgy', 0.00062012278741441272) +zone = ('ohz061', 0.0022612966902389384) + +[fips3911352010] +centroid = (0.69288199475382817, -1.4703310386197759) +description = Moraine city, OH +station = ('kmgy', 0.0017372739164110106) +zone = ('ohz061', 0.0011516727196440116) + +[fips3911357764] +centroid = (0.69324851389674691, -1.469101628694671) +description = Oakwood city, OH +station = ('kmgy', 0.0022477316243316838) +zone = ('ohz061', 0.0016839201631000124) + +[fips3911360] +centroid = (0.71610649769817103, -1.4096556969184515) +description = Canfield city, OH +station = ('kyng', 0.0040632465123623725) +zone = ('ohz033', 0.00028663134435421032) + +[fips3911361966] +centroid = (0.69443758926283816, -1.473488688302484) +description = Perry township, OH +station = ('kday', 0.0034011731586032841) +zone = ('ohz061', 0.0018931794544415294) + +[fips3911367468] +centroid = (0.69433758189669892, -1.4682468013336292) +description = Riverside city, OH +station = ('kffo', 0.001333123700349414) +zone = ('ohz061', 0.0022836788543935068) + +[fips3911377504] +centroid = (0.6944989899459233, -1.4716936695266853) +description = Trotwood city, OH +station = ('kday', 0.0023554789727678188) +zone = ('ohz061', 0.00077509174487077584) + +[fips3911378625] +centroid = (0.69641892193628718, -1.4713269409442564) +description = Union City township, OH +station = ('kday', 0.0011272841485619348) +zone = ('ohz061', 0.0025756526046404075) + +[fips3911379492] +centroid = (0.69601931135075057, -1.4694317402693933) +description = Vandalia city, OH +station = ('kday', 0.00049169301550777689) +zone = ('ohz061', 0.0025412779870412948) + +[fips3911381494] +centroid = (0.69160350617015731, -1.4688918575718737) +description = Washington township, OH +station = ('kmgy', 0.0010692290794531252) +zone = ('ohz061', 0.0028369591052273997) + +[fips3911382222] +centroid = (0.69529541859019339, -1.4670534499108705) +description = Wayne township, OH +station = ('kffo', 0.00010804924669221838) +zone = ('ohz062', 0.0033856450801366079) + +[fips3911383090] +centroid = (0.69236761131668034, -1.470535713381157) +description = West Carrollton city, OH +station = ('kmgy', 0.0012531301515262669) +zone = ('ohz061', 0.0015525974019002292) + +[fips39115] +centroid = (0.69158577362495699, -1.4287561788265495) +description = Morgan County, OH +station = ('kzzv', 0.0056964697259702848) +zone = ('ohz067', 0.00014564054827877166) + +[fips3911506964] +centroid = (0.69317850874044951, -1.4287817479000913) +description = Bloom township, OH +station = ('kzzv', 0.0041102848683682927) +zone = ('ohz067', 0.0016797162923403248) + +[fips3911508910] +centroid = (0.6933946154084315, -1.4271851905135369) +description = Bristol township, OH +station = ('kzzv', 0.0042297316112462164) +zone = ('ohz067', 0.0021808668062620147) + +[fips3911512980] +centroid = (0.69167836334177535, -1.4252128113791507) +description = Center township, OH +station = ('kpkb', 0.0058955334040688874) +zone = ('ohz067', 0.0026140161123995261) + +[fips3911521182] +centroid = (0.6926310513139764, -1.4307717374066302) +description = Deerfield township, OH +station = ('kzzv', 0.0047422352114911588) +zone = ('ohz067', 0.0020166383403983743) + +[fips3911536092] +centroid = (0.68951871037865009, -1.4311756764087118) +description = Homer township, OH +station = ('kuni', 0.0060322490131274132) +zone = ('ohz067', 0.0028088374464436908) + +[fips3911546984] +centroid = (0.69178135522093553, -1.4292635809466894) +description = Malta township, OH +station = ('kzzv', 0.0054790789567250985) +zone = ('ohz067', 0.00058176834664977191) + +[fips3911547040] +centroid = (0.69268129934314127, -1.4254156186382323) +description = Manchester township, OH +station = ('kzzv', 0.0055170008126722153) +zone = ('ohz067', 0.0027188017324833655) + +[fips3911547796] +centroid = (0.68937882223910274, -1.429127584891374) +description = Marion township, OH +station = ('kuni', 0.0068764924825276191) +zone = ('ohz067', 0.002164554105396308) + +[fips3911548930] +centroid = (0.69180306711683037, -1.4269350324718486) +description = Meigsville township, OH +station = ('kzzv', 0.0057815919957061451) +zone = ('ohz067', 0.0013159390680294648) + +[fips3911552122] +centroid = (0.69221182322764729, -1.4283954541767474) +description = Morgan township, OH +station = ('kzzv', 0.0051087663829312482) +zone = ('ohz067', 0.00072432042364972422) + +[fips3911561602] +centroid = (0.69071415619651111, -1.4288904120993204) +description = Penn township, OH +station = ('kzzv', 0.0065577516312045761) +zone = ('ohz067', 0.00082177651785984374) + +[fips3911578484] +centroid = (0.69111896786321858, -1.4307701666103034) +description = Union township, OH +station = ('kzzv', 0.0062265428858646549) +zone = ('ohz067', 0.001716498204549577) + +[fips3911586016] +centroid = (0.69018235437342834, -1.4271979663236616) +description = Windsor township, OH +station = ('kpkb', 0.0056987096406359902) +zone = ('ohz067', 0.001707248600164156) + +[fips3911587066] +centroid = (0.69349423880213523, -1.4308723905445928) +description = York township, OH +station = ('kzzv', 0.0039254708663169656) +zone = ('ohz067', 0.0026494390862647323) + +[fips39117] +centroid = (0.70729932194651235, -1.4450929842239921) +description = Morrow County, OH +station = ('kmnn', 0.0039060496338424195) +zone = ('ohz037', 5.297319212161113e-05) + +[fips3911705508] +centroid = (0.70483990868435709, -1.4450323514857779) +description = Bennington township, OH +station = ('kdlz', 0.0046359572235500808) +zone = ('ohz037', 0.0024373182630245964) + +[fips3911711248] +centroid = (0.7086795283189895, -1.4471262753492729) +description = Canaan township, OH +station = ('kmnn', 0.002031181281632427) +zone = ('ohz037', 0.0021221084967081739) + +[fips3911712098] +centroid = (0.7072058595650681, -1.4471183341011764) +description = Cardington township, OH +station = ('kmnn', 0.0026383237379952089) +zone = ('ohz037', 0.0015893337871989454) + +[fips3911714030] +centroid = (0.70615869692045652, -1.4431699630008523) +description = Chester township, OH +station = ('k4i3', 0.003178228988210372) +zone = ('ohz037', 0.0018031375752287026) + +[fips3911718294] +centroid = (0.70850768320083801, -1.4440442507830538) +description = Congress township, OH +station = ('kmfd', 0.0048562481749101129) +zone = ('ohz037', 0.0014403068811910081) + +[fips3911728378] +centroid = (0.70733738757749842, -1.443498887751683) +description = Franklin township, OH +station = ('k4i3', 0.0042435830785385042) +zone = ('ohz037', 0.0011651056660752057) + +[fips3911729162] +centroid = (0.7105202572678978, -1.4450506774429237) +description = Galion city, OH +station = ('kmfd', 0.0041286414970122089) +zone = ('ohz028', 0.0029608093220394476) + +[fips3911730128] +centroid = (0.70779878281855557, -1.4456826786183632) +description = Gilead township, OH +station = ('kmnn', 0.0033038608298878859) +zone = ('ohz037', 0.0007199420828859056) + +[fips3911733600] +centroid = (0.70626507473836564, -1.4446758679860581) +description = Harmony township, OH +station = ('k4i3', 0.0041252469728919371) +zone = ('ohz037', 0.0010472966192863929) + +[fips3911743680] +centroid = (0.70615869692045652, -1.4459831021425094) +description = Lincoln township, OH +station = ('kmnn', 0.0039801074338373117) +zone = ('ohz037', 0.0013329958759818331) + +[fips3911756224] +centroid = (0.70991548322878928, -1.4439507011351469) +description = North Bloomfield township, OH +station = ('kmfd', 0.0037719969928936862) +zone = ('ohz037', 0.0027625199225203355) + +[fips3911761980] +centroid = (0.70848851948565117, -1.4426441825636889) +description = Perry township, OH +station = ('kmfd', 0.004318864293070681) +zone = ('ohz037', 0.0021798576305835427) + +[fips3911762260] +centroid = (0.70488334992943913, -1.4466531340423499) +description = Peru township, OH +station = ('kdlz', 0.0035291881953642959) +zone = ('ohz046', 0.0024583826626903482) + +[fips3911773061] +centroid = (0.70479409379149216, -1.4430359915274691) +description = South Bloomfield township, OH +station = ('k4i3', 0.0023100303168786642) +zone = ('ohz037', 0.0029098775661193892) + +[fips3911777602] +centroid = (0.70995269364844171, -1.4425972332068102) +description = Troy township, OH +station = ('kmfd', 0.0030413805193882288) +zone = ('ohz029', 0.0023099448173464036) + +[fips3911781508] +centroid = (0.70964673743056716, -1.4457398905112437) +description = Washington township, OH +station = ('kmnn', 0.0031617415421141622) +zone = ('ohz037', 0.0024301161153486382) + +[fips3911783454] +centroid = (0.70601746487738515, -1.4482261992971723) +description = Westfield township, OH +station = ('kmnn', 0.0031120013393285129) +zone = ('ohz037', 0.0027381232114089215) + +[fips39119] +centroid = (0.69753909170350969, -1.4301839803277285) +description = Muskingum County, OH +station = ('kzzv', 0.0006459047769598659) +zone = ('ohz057', 1.6435757886559386e-05) + +[fips3911900310] +centroid = (0.70034695995082563, -1.428650551500219) +description = Adams township, OH +station = ('kzzv', 0.0031442844342820862) +zone = ('ohz057', 0.003058389300886798) + +[fips3911907398] +centroid = (0.69471584710548362, -1.4285530225016174) +description = Blue Rock township, OH +station = ('kzzv', 0.0026296866086182439) +zone = ('ohz057', 0.0030827764981790984) + +[fips3911909757] +centroid = (0.69511838984416363, -1.430793588928865) +description = Brush Creek township, OH +station = ('kzzv', 0.0023844585789375549) +zone = ('ohz057', 0.0024521466030794385) + +[fips3911912406] +centroid = (0.70037867258333442, -1.4319334809166351) +description = Cass township, OH +station = ('kzzv', 0.0036635292922776613) +zone = ('ohz057', 0.0031447050070874598) + +[fips3911915532] +centroid = (0.69458651820791084, -1.4319325209855465) +description = Clay township, OH +station = ('kzzv', 0.0032934450915178973) +zone = ('ohz057', 0.0032279469996672151) + +[fips3911926502] +centroid = (0.69795763911143038, -1.4321231283931568) +description = Falls township, OH +station = ('kzzv', 0.0021828653296724295) +zone = ('ohz057', 0.0015353916869564064) + +[fips3911933936] +centroid = (0.69511093728825757, -1.4295660290527674) +description = Harrison township, OH +station = ('kzzv', 0.0021508359626642485) +zone = ('ohz057', 0.0024652725719572009) + +[fips3911935238] +centroid = (0.69892608740677709, -1.4273197379455733) +description = Highland township, OH +station = ('kzzv', 0.0023193235020819614) +zone = ('ohz057', 0.0026117447373150437) + +[fips3911936372] +centroid = (0.69754024362081601, -1.4340150827556111) +description = Hopewell township, OH +station = ('kvta', 0.0041551356377675349) +zone = ('ohz057', 0.0029243329175194879) + +[fips3911937926] +centroid = (0.70028236531520927, -1.4337996742193302) +description = Jackson township, OH +station = ('kzzv', 0.0045122837721339789) +zone = ('ohz057', 0.0038965714696962989) + +[fips3911938752] +centroid = (0.70008564925521699, -1.4313955529878779) +description = Jefferson township, OH +station = ('kzzv', 0.0032042385847197152) +zone = ('ohz057', 0.0027167837005734842) + +[fips3911943470] +centroid = (0.69904120932423852, -1.4336791766877723) +description = Licking township, OH +station = ('kzzv', 0.0037145473193020378) +zone = ('ohz057', 0.0030648882689758945) + +[fips3911946536] +centroid = (0.6998177586683284, -1.430313832824077) +description = Madison township, OH +station = ('kzzv', 0.0026477737435863405) +zone = ('ohz057', 0.0022916121387267989) + +[fips3911948916] +centroid = (0.69474447050521637, -1.4267612151316424) +description = Meigs township, OH +station = ('kzzv', 0.0032404927131902328) +zone = ('ohz067', 0.0035348358521725756) + +[fips3911951506] +centroid = (0.70018460942380512, -1.4270629127461421) +description = Monroe township, OH +station = ('kzzv', 0.0034393223989086039) +zone = ('ohz057', 0.0035812151112131108) + +[fips3911953438] +centroid = (0.69890957659205322, -1.4317833302410861) +description = Muskingum township, OH +station = ('kzzv', 0.0024472925770557805) +zone = ('ohz057', 0.0018387353649813778) + +[fips3911955608] +centroid = (0.69568631998276254, -1.4325468943355411) +description = Newton township, OH +station = ('kzzv', 0.0028652971183646416) +zone = ('ohz057', 0.0025754031114773716) + +[fips3911961994] +centroid = (0.69771666150160749, -1.4288299189874465) +description = Perry township, OH +station = ('kzzv', 0.00064592022507413253) +zone = ('ohz057', 0.0010665243692802038) + +[fips3911966600] +centroid = (0.69619836467871266, -1.4265620032508199) +description = Rich Hill township, OH +station = ('kzzv', 0.0024382863792697671) +zone = ('ohz057', 0.0030901155928109163) + +[fips3911969932] +centroid = (0.69892191606986476, -1.4289022105250637) +description = Salem township, OH +station = ('kzzv', 0.0017103667963527271) +zone = ('ohz057', 0.001712041551930795) + +[fips3911970170] +centroid = (0.69626254043530844, -1.4285597071126526) +description = Salt Creek township, OH +station = ('kzzv', 0.0011970962384828827) +zone = ('ohz057', 0.0017838951689017112) + +[fips3911974125] +centroid = (0.69660376975736593, -1.4321281200348175) +description = Springfield township, OH +station = ('kzzv', 0.0021741520879944281) +zone = ('ohz057', 0.0017436493111659746) + +[fips3911978498] +centroid = (0.69763852311099572, -1.4273663033300164) +description = Union township, OH +station = ('kzzv', 0.0016226915473977713) +zone = ('ohz057', 0.0021742371968081053) + +[fips3911981522] +centroid = (0.69803286280219146, -1.430254352003169) +description = Washington township, OH +station = ('kzzv', 0.0010015500742164805) +zone = ('ohz057', 0.00050678659324442999) + +[fips3911982236] +centroid = (0.69633675183510324, -1.4300408109691876) +description = Wayne township, OH +station = ('kzzv', 0.0010362875474183822) +zone = ('ohz057', 0.0011972713948031834) + +[fips3911988084] +centroid = (0.6973816804582722, -1.4313786232941337) +description = Zanesville city, OH +station = ('kzzv', 0.0015028558738673647) +zone = ('ohz057', 0.00091544905177535498) + +[fips3912000] +centroid = (0.71222785250146403, -1.4201260318209206) +description = Canton city, OH +station = ('kcak', 0.0021940739229286072) +zone = ('ohz032', 0.00010876185560105924) + +[fips3912056] +centroid = (0.68944123521315404, -1.4354062847023759) +description = Carbon Hill CDP, OH +station = ('kuni', 0.0051005258358740591) +zone = ('ohz074', 0.0031846459780345594) + +[fips3912084] +centroid = (0.70682316121998334, -1.4467671214957973) +description = Cardington village, OH +station = ('kmnn', 0.0030909954512568219) +zone = ('ohz037', 0.0013968308793180155) + +[fips39121] +centroid = (0.69406913280444971, -1.4216161241231033) +description = Noble County, OH +station = ('kzzv', 0.0067899896574681309) +zone = ('ohz068', 4.4404922816129315e-05) + +[fips3912104682] +centroid = (0.69641527419815052, -1.4185458630760426) +description = Beaver township, OH +station = ('kphd', 0.010036363455881993) +zone = ('ohz068', 0.0033688071843390203) + +[fips3912109162] +centroid = (0.69443532033481059, -1.4249289335763138) +description = Brookfield township, OH +station = ('kzzv', 0.004458632787845666) +zone = ('ohz068', 0.0025369754799636221) + +[fips3912110142] +centroid = (0.69582865158326279, -1.4228355333115941) +description = Buffalo township, OH +station = ('kzzv', 0.0052527804331641559) +zone = ('ohz068', 0.0019945113054051409) + +[fips3912112] +centroid = (0.71470848896732353, -1.4553423080832812) +description = Carey village, OH +station = ('kfdy', 0.0038907356578839632) +zone = ('ohz027', 0.0021546006772723172) + +[fips3912112994] +centroid = (0.69458334170867231, -1.4216817485029782) +description = Center township, OH +station = ('kzzv', 0.0065170021221757513) +zone = ('ohz068', 0.00053583668873677197) + +[fips3912124878] +centroid = (0.69204343386141498, -1.4193071233358849) +description = Elk township, OH +station = ('kpkb', 0.0058157906578308561) +zone = ('ohz068', 0.002704029885948167) + +[fips3912125438] +centroid = (0.69303746868359584, -1.4212542301027025) +description = Enoch township, OH +station = ('kpkb', 0.0065458492738647775) +zone = ('ohz068', 0.0010587808310297316) + +[fips3912137940] +centroid = (0.69153962711953421, -1.4228106798230458) +description = Jackson township, OH +station = ('kpkb', 0.0051334699116120748) +zone = ('ohz068', 0.0026580001813961943) + +[fips3912138766] +centroid = (0.69184560079070145, -1.4205459929455355) +description = Jefferson township, OH +station = ('kpkb', 0.0054075669296688774) +zone = ('ohz068', 0.0023648131457185391) + +[fips3912147810] +centroid = (0.69503967549489865, -1.4197927786535449) +description = Marion township, OH +station = ('kzzv', 0.0077167254723327144) +zone = ('ohz068', 0.0017484749614038316) + +[fips3912156028] +centroid = (0.69457745994909303, -1.4234416338009344) +description = Noble township, OH +station = ('kzzv', 0.0053174313293218797) +zone = ('ohz068', 0.0014633352472013775) + +[fips3912158310] +centroid = (0.69296898196374757, -1.4227755463452032) +description = Olive township, OH +station = ('kpkb', 0.0065392005282684977) +zone = ('ohz068', 0.0013750055976136097) + +[fips3912168] +centroid = (0.69081400648301772, -1.471655359549604) +description = Carlisle city, OH +station = ('kmwo', 0.0013975681642842612) +zone = ('ohz061', 0.003057903673648406) + +[fips3912171352] +centroid = (0.69580653826163985, -1.4204994973742624) +description = Seneca township, OH +station = ('kzzv', 0.0069986076243041592) +zone = ('ohz068', 0.0019742029696804999) + +[fips3912171826] +centroid = (0.69286686274921339, -1.4242510476948391) +description = Sharon township, OH +station = ('kzzv', 0.0059227539319254684) +zone = ('ohz068', 0.0023117821575798416) + +[fips3912174728] +centroid = (0.69355659941630898, -1.4197701940930241) +description = Stock township, OH +station = ('kpkb', 0.0071956771770866389) +zone = ('ohz068', 0.0015385108368948833) + +[fips3912182250] +centroid = (0.69656418568993062, -1.4204543631598057) +description = Wayne township, OH +station = ('kzzv', 0.0069136702257025315) +zone = ('ohz068', 0.0026832040229418331) + +[fips3912252] +centroid = (0.69462461874548187, -1.443454242229417) +description = Carroll village, OH +station = ('klhq', 0.00099082880686804831) +zone = ('ohz065', 0.0012860067654478472) + +[fips3912280] +centroid = (0.70826024787278286, -1.4152890088786509) +description = Carrollton village, OH +station = ('kphd', 0.004765220961359385) +zone = ('ohz040', 1.3621633880772874e-05) + +[fips39123] +centroid = (0.72508773513613101, -1.4487847744709805) +description = Ottawa County, OH +station = ('ktdz', 0.0062038393816090543) +zone = ('ohz007', 0.001798961389006019) + +[fips3912301322] +centroid = (0.72588437321991139, -1.4548580141224379) +description = Allen township, OH +station = ('ktdz', 0.0016965547862545604) +zone = ('ohz007', 0.0028951811099168626) + +[fips3912304304] +centroid = (0.72402331118521734, -1.4489079947161714) +description = Bay township, OH +station = ('ktdz', 0.0062727348553034828) +zone = ('ohz007', 0.00195262360179647) + +[fips3912305620] +centroid = (0.72548148141538105, -1.452898515517931) +description = Benton township, OH +station = ('ktdz', 0.0031128333609394951) +zone = ('ohz007', 0.0013790362309821548) + +[fips3912312266] +centroid = (0.72616718637190458, -1.4504290317059918) +description = Carroll township, OH +station = ('ktdz', 0.0050069881259388431) +zone = ('ohz007', 0.0013176517009565797) + +[fips3912312588] +centroid = (0.72545517930355341, -1.4460024927504989) +description = Catawba Island township, OH +station = ('cwnb', 0.006839672190537994) +zone = ('ohz009', 0.0046521199420311524) + +[fips3912315546] +centroid = (0.72479586372532001, -1.4548287274975893) +description = Clay township, OH +station = ('ktdz', 0.0018021280158129697) +zone = ('ohz007', 0.0027345722628403057) + +[fips3912320058] +centroid = (0.72479912749102138, -1.4443173948109909) +description = Danbury township, OH +station = ('cwnb', 0.0065093004128862816) +zone = ('ohz009', 0.0033731540094126839) + +[fips3912325578] +centroid = (0.72508773513613101, -1.4487847744709805) +description = Erie township, OH +station = ('ktdz', 0.0062038393816090543) +zone = ('ohz007', 0.001798961389006019) + +[fips3912333726] +centroid = (0.72407383846706252, -1.4530488407264055) +description = Harris township, OH +station = ('ktdz', 0.0033131802566601092) +zone = ('ohz007', 0.0016630266104744145) + +[fips3912364080] +centroid = (0.72462778851835297, -1.4469170278252512) +description = Portage township, OH +station = ('cwnb', 0.007906297292468438) +zone = ('ohz008', 0.0042480214612009787) + +[fips3912364150] +centroid = (0.72448125067435554, -1.4475470916852213) +description = Port Clinton city, OH +station = ('cwnb', 0.0083494987830394305) +zone = ('ohz007', 0.0027673312234887072) + +[fips3912365046] +centroid = (0.72744316168145251, -1.4460411168868454) +description = Put-in-Bay township, OH +station = ('cwnb', 0.005691475304894866) +zone = ('ohz007', 0.004568198360077152) + +[fips3912369946] +centroid = (0.72427341686702806, -1.4506792944674354) +description = Salem township, OH +station = ('ktdz', 0.0049246479288031879) +zone = ('ohz007', 0.000798188143403497) + +[fips3912462] +centroid = (0.69905265868413169, -1.4683195466568522) +description = Casstown village, OH +station = ('kday', 0.0029153347992236199) +zone = ('ohz051', 0.001341175401347436) + +[fips3912476] +centroid = (0.72264172600263121, -1.4451577184859485) +description = Castalia village, OH +station = ('klpr', 0.0081503246168937241) +zone = ('ohz009', 0.0025080871826977887) + +[fips39125] +centroid = (0.71766439604179366, -1.4761465455005909) +description = Paulding County, OH +station = ('kdfi', 0.0041869180911450476) +zone = ('ohz015', 6.0529371516677796e-05) + +[fips3912503002] +centroid = (0.71881725582590605, -1.47321175691007) +description = Auglaize township, OH +station = ('kdfi', 0.0026054350982894162) +zone = ('ohz015', 0.0025495770884306638) + +[fips3912504] +centroid = (0.69692817410543417, -1.4769799576717109) +description = Castine village, OH +station = ('kves', 0.0048616873481609289) +zone = ('ohz060', 0.0033212205019491122) + +[fips3912505634] +centroid = (0.71616969607038572, -1.4790919456929641) +description = Benton township, OH +station = ('kfwa', 0.0060107514546779836) +zone = ('ohz015', 0.0026176868580217103) + +[fips3912507370] +centroid = (0.71616611814541919, -1.4770818325401496) +description = Blue Creek township, OH +station = ('kdfi', 0.0058423914265528605) +zone = ('ohz015', 0.0015983116771795009) + +[fips3912509512] +centroid = (0.71764057229750389, -1.4728868115099336) +description = Brown township, OH +station = ('kdfi', 0.0038045578654770196) +zone = ('ohz015', 0.0024970520619398721) + +[fips3912512308] +centroid = (0.71926573563049845, -1.4789683414753376) +description = Carryall township, OH +station = ('kdfi', 0.0045394370233556407) +zone = ('ohz015', 0.0026547859997909048) + +[fips3912519176] +centroid = (0.71925259330123092, -1.4769736395798185) +description = Crane township, OH +station = ('kdfi', 0.0033018376786898259) +zone = ('ohz015', 0.0017330172712146158) + +[fips3912525298] +centroid = (0.719303818714777, -1.4752349600322743) +description = Emerald township, OH +station = ('kdfi', 0.0024172495826983364) +zone = ('ohz015', 0.0018341841579529842) + +[fips3912533950] +centroid = (0.71757665834029594, -1.4789721637463995) +description = Harrison township, OH +station = ('kdfi', 0.0055430536866895308) +zone = ('ohz015', 0.0020880390059054466) + +[fips3912537954] +centroid = (0.71782651967601141, -1.4752398295008873) +description = Jackson township, OH +station = ('kdfi', 0.0037732863175633366) +zone = ('ohz015', 0.00075308242440213786) + +[fips3912542000] +centroid = (0.71617306455584206, -1.475066169240314) +description = Latty township, OH +station = ('kdfi', 0.0053387528541865726) +zone = ('ohz015', 0.0016810457037423564) + +[fips3912560] +centroid = (0.69813105502590855, -1.4594895769051626) +description = Catawba village, OH +station = ('ksgh', 0.0040294391862098168) +zone = ('ohz053', 0.0025962668767401504) + +[fips3912561266] +centroid = (0.71776222174636795, -1.4770264706962764) +description = Paulding township, OH +station = ('kdfi', 0.0044431360018666573) +zone = ('ohz015', 0.0006377280053076204) + +[fips3912581536] +centroid = (0.71605890256946914, -1.47323807647519) +description = Washington township, OH +station = ('kdfi', 0.0053523958427150759) +zone = ('ohz015', 0.0027253212313612684) + +[fips39127] +centroid = (0.69364946838580765, -1.4353230499503484) +description = Perry County, OH +station = ('kvta', 0.0056715301256799423) +zone = ('ohz066', 0.00010911004687507636) + +[fips3912700] +centroid = (0.7194089398956246, -1.4765761408426767) +description = Cecil village, OH +station = ('kdfi', 0.0029741538933619493) +zone = ('ohz015', 0.0018110191700129361) + +[fips3912704584] +centroid = (0.69265581753606231, -1.4325628640981969) +description = Bearfield township, OH +station = ('kzzv', 0.0051961140408566314) +zone = ('ohz066', 0.0022783724541633778) + +[fips3912715658] +centroid = (0.69431866252760732, -1.4345857530611357) +description = Clayton township, OH +station = ('kzzv', 0.0049333923544593594) +zone = ('ohz066', 0.00094603350683915473) + +[fips3912716350] +centroid = (0.69070656401426489, -1.4349395138472227) +description = Coal township, OH +station = ('kuni', 0.0063657745282404525) +zone = ('ohz066', 0.0028495230158126048) + +[fips3912733964] +centroid = (0.69412454700820048, -1.4330803367681206) +description = Harrison township, OH +station = ('kzzv', 0.004207066517760023) +zone = ('ohz066', 0.0017960135532821967) + +[fips3912736386] +centroid = (0.69586992862007235, -1.4365409930622677) +description = Hopewell township, OH +station = ('kvta', 0.0033224604340118622) +zone = ('ohz066', 0.002517165722183285) + +[fips3912737968] +centroid = (0.6927627887659169, -1.4366903583396531) +description = Jackson township, OH +station = ('kvta', 0.0060077082373463583) +zone = ('ohz066', 0.0013297684991567323) + +[fips3912746550] +centroid = (0.69569757735643789, -1.4343993693503152) +description = Madison township, OH +station = ('kvta', 0.0046508058810207581) +zone = ('ohz066', 0.0022605708208913492) + +[fips3912751198] +centroid = (0.69150688474276689, -1.4366414716673046) +description = Monday Creek township, OH +station = ('klhq', 0.0052551213355010147) +zone = ('ohz066', 0.0022863642085112186) + +[fips3912751520] +centroid = (0.69093441674811273, -1.4327027522377442) +description = Monroe township, OH +station = ('kzzv', 0.0068080371398227457) +zone = ('ohz067', 0.0032127406874604024) + +[fips3912762680] +centroid = (0.69285667002638174, -1.4347225868744922) +description = Pike township, OH +station = ('kzzv', 0.005994719409082948) +zone = ('ohz066', 0.00081384028460598291) + +[fips3912763366] +centroid = (0.69211986182935981, -1.4333295872385978) +description = Pleasant township, OH +station = ('kzzv', 0.005950704225548901) +zone = ('ohz066', 0.002074356814155796) + +[fips3912765760] +centroid = (0.6943522252091231, -1.4367657042034618) +description = Reading township, OH +station = ('kvta', 0.0045157823567378332) +zone = ('ohz066', 0.0013928859134437921) + +[fips3912770226] +centroid = (0.69149321881472381, -1.4346554266048754) +description = Salt Lick township, OH +station = ('kzzv', 0.0070286333237778408) +zone = ('ohz066', 0.0021075122489998088) + +[fips3912776659] +centroid = (0.69605765623441684, -1.4382862699543841) +description = Thorn township, OH +station = ('kvta', 0.0024929278076701871) +zone = ('ohz066', 0.0034084524096592928) + +[fips3912784] +centroid = (0.69374087127873452, -1.4627984419142637) +description = Cedarville village, OH +station = ('ksgh', 0.0016459965607869959) +zone = ('ohz062', 0.0014397777311852421) + +[fips3912854] +centroid = (0.71608649622494314, -1.4438643247904657) +description = Celeryville CDP, OH +station = ('kmfd', 0.004627917892789781) +zone = ('ohz019', 0.0026607893699783828) + +[fips3912868] +centroid = (0.70782405518612446, -1.47590745284636) +description = Celina city, OH +station = ('kves', 0.0062174496196154838) +zone = ('ohz034', 0.0009156931875616964) + +[fips39129] +centroid = (0.69200467009872813, -1.4495452842392444) +description = Pickaway County, OH +station = ('klck', 0.0033378478198893675) +zone = ('ohz064', 0.00040209508505403694) + +[fips3912915070] +centroid = (0.69119256839777521, -1.4474454437095852) +description = Circleville city, OH +station = ('klck', 0.0037393782470805889) +zone = ('ohz064', 0.001414163060251668) + +[fips3912915077] +centroid = (0.69178320526994252, -1.4472874914122795) +description = Circleville township, OH +station = ('klck', 0.0031515104243229229) +zone = ('ohz064', 0.0013589621602782948) + +[fips3912920156] +centroid = (0.69392613797883373, -1.4521898420284514) +description = Darby township, OH +station = ('ktzr', 0.0026332515888702075) +zone = ('ohz064', 0.0031651760092847201) + +[fips3912921168] +centroid = (0.69048448832024112, -1.4507125953495634) +description = Deercreek township, OH +station = ('klck', 0.0051034738792804877) +zone = ('ohz064', 0.0018982004860032113) + +[fips3912933978] +centroid = (0.69371931646247242, -1.4481970173920791) +description = Harrison township, OH +station = ('klck', 0.0013384563173789402) +zone = ('ohz064', 0.0019490142522363395) + +[fips3912937982] +centroid = (0.69215962042972023, -1.4495202213111857) +description = Jackson township, OH +station = ('klck', 0.0031931645815242637) +zone = ('ohz064', 0.00045697149183622504) + +[fips3912946564] +centroid = (0.69422431002824447, -1.4467855870792836) +description = Madison township, OH +station = ('klck', 0.00087693008938657176) +zone = ('ohz064', 0.0029167393622147558) + +[fips3912951534] +centroid = (0.6920565761906825, -1.4519395967203004) +description = Monroe township, OH +station = ('ktzr', 0.0044016678284511503) +zone = ('ohz064', 0.0022336897961023924) + +[fips3912953256] +centroid = (0.692877963043256, -1.4506326069099447) +description = Muhlenberg township, OH +station = ('klck', 0.003188778090093782) +zone = ('ohz064', 0.0015741532866877723) + +[fips3912962008] +centroid = (0.69049466358978018, -1.4523682670378828) +description = Perry township, OH +station = ('klck', 0.0058272206983780517) +zone = ('ohz064', 0.0029112820198964567) + +[fips3912962484] +centroid = (0.68978729909723946, -1.4471363808056419) +description = Pickaway township, OH +station = ('klck', 0.0051506484442386804) +zone = ('ohz064', 0.002561835386804373) + +[fips3912970184] +centroid = (0.6896626302287695, -1.4449983175653638) +description = Saltcreek township, OH +station = ('klhq', 0.0044395013245910287) +zone = ('ohz064', 0.0038303454870678402) + +[fips3912970870] +centroid = (0.69409615050127049, -1.4499253296838663) +description = Scioto township, OH +station = ('ktzr', 0.0024528127689737119) +zone = ('ohz064', 0.0023135195658462514) + +[fips3912980598] +centroid = (0.69274296182561435, -1.4468369521191697) +description = Walnut township, OH +station = ('klck', 0.002240718838152187) +zone = ('ohz064', 0.0019063132073462745) + +[fips3912981550] +centroid = (0.69132606863226032, -1.4465868987972366) +description = Washington township, OH +station = ('klck', 0.0036678395812353103) +zone = ('ohz064', 0.0019753898547674228) + +[fips3912982264] +centroid = (0.6905442833004144, -1.4491757805833048) +description = Wayne township, OH +station = ('klck', 0.0045820487096230773) +zone = ('ohz064', 0.001342787203304227) + +[fips3913036] +centroid = (0.70342575565792875, -1.4433416684926632) +description = Centerburg village, OH +station = ('k4i3', 0.0024060805402431047) +zone = ('ohz037', 0.0040602405897078205) + +[fips39131] +centroid = (0.68192396249847431, -1.4495469248487414) +description = Pike County, OH +station = ('kiln', 0.01172008295934329) +zone = ('ohz082', 0.00021554253471362214) + +[fips3913104710] +centroid = (0.68182311737429402, -1.4463169661751232) +description = Beaver township, OH +station = ('k3i2', 0.010767220529157075) +zone = ('ohz082', 0.0027035445409649118) + +[fips3913105648] +centroid = (0.68326636503935323, -1.4524584656536259) +description = Benton township, OH +station = ('kiln', 0.0090943972320015783) +zone = ('ohz082', 0.0024124504953358279) + +[fips3913111122] +centroid = (0.68032960422677746, -1.4509444099808133) +description = Camp Creek township, OH +station = ('kiln', 0.011830181452655884) +zone = ('ohz082', 0.0019220639490673374) + +[fips3913137996] +centroid = (0.68302653934683666, -1.4463022006896513) +description = Jackson township, OH +station = ('klhq', 0.011076049125426798) +zone = ('ohz082', 0.0028837330239451613) + +[fips3913147824] +centroid = (0.68038924212731811, -1.4460165426509775) +description = Marion township, OH +station = ('k3i2', 0.010282242583743511) +zone = ('ohz083', 0.0032130140783962632) + +[fips3913150078] +centroid = (0.68246590468451096, -1.4541776673267177) +description = Mifflin township, OH +station = ('kiln', 0.0085352816207983351) +zone = ('ohz080', 0.0040873554540874091) + +[fips3913155622] +centroid = (0.68137934995868188, -1.4501900437715163) +description = Newton township, OH +station = ('kiln', 0.011618644786307251) +zone = ('ohz082', 0.0007206425241720073) + +[fips3913161392] +centroid = (0.68302632990732648, -1.4505084441869576) +description = Pebble township, OH +station = ('kiln', 0.010508407312229111) +zone = ('ohz082', 0.0011426352243182557) + +[fips3913161434] +centroid = (0.6827632040692958, -1.4488976972735845) +description = Pee Pee township, OH +station = ('klhq', 0.011968829899818833) +zone = ('ohz082', 0.0010085909051975796) + +[fips3913162022] +centroid = (0.68367672685308212, -1.4541002794276845) +description = Perry township, OH +station = ('kiln', 0.0078132949837819033) +zone = ('ohz080', 0.0038908294889365954) + +[fips3913169] +centroid = (0.6788959733258968, -1.4389502281084279) +description = Centerville village, OH +station = ('k3i2', 0.0047277091809250649) +zone = ('ohz086', 0.0021666040594891557) + +[fips3913170884] +centroid = (0.68058670867888871, -1.448594900101656) +description = Scioto township, OH +station = ('k3i2', 0.012295846247711845) +zone = ('ohz082', 0.0017150993257277483) + +[fips3913171171] +centroid = (0.68202154385695335, -1.4481613079555831) +description = Seal township, OH +station = ('k3i2', 0.012205760000888405) +zone = ('ohz082', 0.0012637205653184521) + +[fips3913175637] +centroid = (0.68124419166140759, -1.4525281217440729) +description = Sunfish township, OH +station = ('kiln', 0.010305081000356988) +zone = ('ohz082', 0.0022671954202428046) + +[fips3913178512] +centroid = (0.68054996949813429, -1.4473537266573928) +description = Union township, OH +station = ('k3i2', 0.01133317296303812) +zone = ('ohz082', 0.0024014810547191528) + +[fips3913190] +centroid = (0.69175006146744733, -1.4686192545960048) +description = Centerville city, OH +station = ('kmgy', 0.0013222116928304668) +zone = ('ohz061', 0.0028608257501089984) + +[fips39133] +centroid = (0.71852831656823846, -1.4171538059179445) +description = Portage County, OH +station = ('kpov', 0.00113546556471012) +zone = ('ohz022', 2.0541865497908255e-05) + +[fips3913302862] +centroid = (0.71616693845016766, -1.4159768605901546) +description = Atwater township, OH +station = ('kpov', 0.0036225494825567655) +zone = ('ohz022', 0.0025020614405864634) + +[fips3913303086] +centroid = (0.72084791150401639, -1.4195200535046284) +description = Aurora city, OH +station = ('kpov', 0.0017880945163155431) +zone = ('ohz022', 0.0029437752371644882) + +[fips3913308168] +centroid = (0.71842267178861519, -1.4191687710860794) +description = Brady Lake village, OH +station = ('kpov', 0.0012943547074285903) +zone = ('ohz022', 0.0015290211852077092) + +[fips3913308840] +centroid = (0.7172405428329468, -1.4196903452797454) +description = Brimfield township, OH +station = ('kakr', 0.0019577803288476996) +zone = ('ohz022', 0.0023019428481827323) + +[fips3913313610] +centroid = (0.71854667743196932, -1.4161281282764249) +description = Charlestown township, OH +station = ('kpov', 0.0017111892778952842) +zone = ('ohz022', 0.00076336112494258053) + +[fips3913321210] +centroid = (0.71601532169804682, -1.4145951183279357) +description = Deerfield township, OH +station = ('kpov', 0.0043029788878451471) +zone = ('ohz022', 0.0031472743155377143) + +[fips3913324584] +centroid = (0.71731175226642829, -1.4162713499948436) +description = Edinburg township, OH +station = ('kpov', 0.0025137374954147173) +zone = ('ohz022', 0.0013657428958965621) + +[fips3913328392] +centroid = (0.71865155426672156, -1.4197010790546449) +description = Franklin township, OH +station = ('kpov', 0.0014441516843111376) +zone = ('ohz022', 0.0019322328266251298) + +[fips3913328742] +centroid = (0.71976690692520873, -1.4162829215277843) +description = Freedom township, OH +station = ('kpov', 0.0013941911595311497) +zone = ('ohz022', 0.0014128773832451506) + +[fips3913329442] +centroid = (0.72054844791095918, -1.4153200931926291) +description = Garrettsville village, OH +station = ('kpov', 0.002359701074946033) +zone = ('ohz022', 0.0024556623131010299) + +[fips3913335658] +centroid = (0.72099821925919816, -1.4162205434603181) +description = Hiram village, OH +station = ('kpov', 0.0021046333132756969) +zone = ('ohz022', 0.0025825414789730048) + +[fips3913335672] +centroid = (0.72118678463158359, -1.4165772363995481) +description = Hiram township, OH +station = ('kpov', 0.0020929979679656465) +zone = ('ohz022', 0.0027099814403739766) + +[fips3913339872] +centroid = (0.71818802972397711, -1.4200194620167939) +description = Kent city, OH +station = ('kpov', 0.0019130761837076) +zone = ('ohz022', 0.0021909627357772393) + +[fips3913347180] +centroid = (0.72050598405025812, -1.4175982889185497) +description = Mantua village, OH +station = ('kpov', 0.0011403110123465426) +zone = ('ohz022', 0.0020252339657751009) + +[fips3913347194] +centroid = (0.72103237535265963, -1.4180249695607849) +description = Mantua township, OH +station = ('kpov', 0.0016081900577352753) +zone = ('ohz022', 0.0026083229148992199) + +[fips3913351058] +centroid = (0.71645732633111447, -1.4205168983069048) +description = Mogadore village, OH +station = ('kakr', 0.0010549906102769976) +zone = ('ohz021', 0.0022953076822885866) + +[fips3913353858] +centroid = (0.72106869565439369, -1.4144733641593163) +description = Nelson township, OH +station = ('kpov', 0.0031704445077271369) +zone = ('ohz022', 0.0032511310193821656) + +[fips3913358] +centroid = (0.72310652463572966, -1.420505588573352) +description = Chagrin Falls village, OH +station = ('kcgf', 0.0026705776253181323) +zone = ('ohz013', 0.0030002971288917222) + +[fips3913359668] +centroid = (0.71711337814364651, -1.414436083926494) +description = Palmyra township, OH +station = ('kpov', 0.003587489729473614) +zone = ('ohz022', 0.0024703005122689386) + +[fips3913359822] +centroid = (0.71860991071076907, -1.4143872496140233) +description = Paris township, OH +station = ('kpov', 0.0028956379931622186) +zone = ('ohz022', 0.0020753186122296212) + +[fips3913365452] +centroid = (0.71606431309015028, -1.4181556249085892) +description = Randolph township, OH +station = ('kpov', 0.0033608871995188141) +zone = ('ohz022', 0.0025625747828077702) + +[fips3913365592] +centroid = (0.71840289720819006, -1.4179409668638865) +description = Ravenna city, OH +station = ('kpov', 0.0010271641799321184) +zone = ('ohz022', 0.00061168931878205924) + +[fips3913365606] +centroid = (0.71852557640131276, -1.4179963810676373) +description = Ravenna township, OH +station = ('kpov', 0.00090134110814936615) +zone = ('ohz022', 0.00064407736971325226) + +[fips3913368392] +centroid = (0.71721923236277996, -1.4180876443342241) +description = Rootstown township, OH +station = ('kpov', 0.0022054927852456041) +zone = ('ohz022', 0.0014747467238056583) + +[fips3913371731] +centroid = (0.71970678033247748, -1.4180054916863325) +description = Shalersville township, OH +station = ('kpov', 0.00028757773787451292) +zone = ('ohz022', 0.0013619572392894589) + +[fips3913375014] +centroid = (0.71976737816410663, -1.4197530898663546) +description = Streetsboro city, OH +station = ('kpov', 0.0013040944015956612) +zone = ('ohz022', 0.0023329737084360216) + +[fips3913375189] +centroid = (0.716030366436199, -1.4196836781220026) +description = Suffield township, OH +station = ('kakr', 0.0016485897905723285) +zone = ('ohz022', 0.0031338496013748225) + +[fips3913375196] +centroid = (0.71913181651699298, -1.4198426776168593) +description = Sugar Bush Knolls village, OH +station = ('kpov', 0.0013579805066238702) +zone = ('ohz022', 0.0021261241545863108) + +[fips3913376106] +centroid = (0.71749289998949273, -1.4203953012179182) +description = Tallmadge city, OH +station = ('kakr', 0.0017264238217574506) +zone = ('ohz021', 0.0019861905023271864) + +[fips3913385946] +centroid = (0.71976544084863703, -1.4144062213429924) +description = Windham village, OH +station = ('kpov', 0.0027838901634866567) +zone = ('ohz022', 0.0024102753892496177) + +[fips3913385960] +centroid = (0.71928053602255537, -1.4148982471124218) +description = Windham township, OH +station = ('kpov', 0.002397769124891857) +zone = ('ohz022', 0.0018552727155241944) + +[fips3913484] +centroid = (0.72087520845351749, -1.4111227159679229) +description = Champion Heights CDP, OH +station = ('kyng', 0.0025940342785386217) +zone = ('ohz023', 0.00121850154943635) + +[fips39135] +centroid = (0.69355729754800988, -1.4773401936293225) +description = Preble County, OH +station = ('kmwo', 0.0049034191933429545) +zone = ('ohz060', 7.4235634927307545e-05) + +[fips3913522106] +centroid = (0.69287330301415317, -1.4793664336244252) +description = Dixon township, OH +station = ('kmwo', 0.0056823082421034394) +zone = ('ohz060', 0.0016958305073543898) + +[fips3913524234] +centroid = (0.6937702451700456, -1.4771501447270727) +description = Eaton city, OH +station = ('kmwo', 0.0049687583779241254) +zone = ('ohz060', 0.00023559644186099248) + +[fips3913529484] +centroid = (0.69264667201078167, -1.4773807550811389) +description = Gasper township, OH +station = ('kmwo', 0.004298776376379254) +zone = ('ohz060', 0.00097511414924409876) + +[fips3913531486] +centroid = (0.69127719941320442, -1.4752416446433094) +description = Gratis township, OH +station = ('kmwo', 0.0021569249269440967) +zone = ('ohz060', 0.0028681516790831957) + +[fips3913533992] +centroid = (0.69598882044871824, -1.4754027734398536) +description = Harrison township, OH +station = ('kday', 0.0042729049664834637) +zone = ('ohz060', 0.0028157933703420613) + +[fips3913537590] +centroid = (0.69130769031523676, -1.4792708070347083) +description = Israel township, OH +station = ('kmwo', 0.0049838287959035454) +zone = ('inz059', 0.0022919732172004591) + +[fips3913538010] +centroid = (0.69427851995481138, -1.4791943441601785) +description = Jackson township, OH +station = ('kmwo', 0.0064219938789303469) +zone = ('ohz060', 0.0015360256584208115) + +[fips3913538780] +centroid = (0.6958764212448898, -1.4794881528864594) +description = Jefferson township, OH +station = ('kves', 0.0065701631435596541) +zone = ('ohz060', 0.0027724137604226593) + +[fips3913541846] +centroid = (0.69277252770314313, -1.4753867338640279) +description = Lanier township, OH +station = ('kmwo', 0.0033625051336105658) +zone = ('ohz060', 0.0017581372160045418) + +[fips3913551548] +centroid = (0.69592523810406803, -1.4772893172816268) +description = Monroe township, OH +station = ('kves', 0.0058919295815649435) +zone = ('ohz060', 0.0023047164647693923) + +[fips3913554] +centroid = (0.72569549368826058, -1.4173654794496262) +description = Chardon city, OH +station = ('kcgf', 0.0035879557084600518) +zone = ('ohz013', 0.0014483175724742195) + +[fips3913572964] +centroid = (0.69135367974102679, -1.4774005994747339) +description = Somers township, OH +station = ('kmwo', 0.003638215664496877) +zone = ('ohz060', 0.0022681108340340391) + +[fips3913577994] +centroid = (0.69437404182477314, -1.4754417291887583) +description = Twin township, OH +station = ('kmwo', 0.0048093280366028543) +zone = ('ohz060', 0.0016746074242635738) + +[fips3913581564] +centroid = (0.69427975913858031, -1.477384891511466) +description = Washington township, OH +station = ('kmwo', 0.0054799779721037252) +zone = ('ohz060', 0.00065799360914818702) + +[fips3913694] +centroid = (0.71474430312357451, -1.4476000100681419) +description = Chatfield village, OH +station = ('kmnn', 0.0060795649472916375) +zone = ('ohz028', 0.0017846420468205333) + +[fips39137] +centroid = (0.71601317494306682, -1.4683433878544345) +description = Putnam County, OH +station = ('kaoh', 0.005857978999403649) +zone = ('ohz016', 4.8766025599322663e-05) + +[fips3913706880] +centroid = (0.7162944347520257, -1.4651663999236142) +description = Blanchard township, OH +station = ('kfdy', 0.0037257792345119045) +zone = ('ohz016', 0.0024420877017227185) + +[fips3913732228] +centroid = (0.71629663386688325, -1.4692373280440136) +description = Greensburg township, OH +station = ('kdfi', 0.0060867594585048944) +zone = ('ohz016', 0.00072746444312420816) + +[fips3913738024] +centroid = (0.71502828564616649, -1.4708240243202941) +description = Jackson township, OH +station = ('kaoh', 0.0057675876425804067) +zone = ('ohz016', 0.0020747090078493927) + +[fips3913738976] +centroid = (0.71370879927836628, -1.4708369397567589) +description = Jennings township, OH +station = ('kaoh', 0.0047682999746324973) +zone = ('ohz016', 0.0029278971672254085) + +[fips3913743288] +centroid = (0.71781798501596916, -1.4671909993092203) +description = Liberty township, OH +station = ('kfdy', 0.0055752372444274664) +zone = ('ohz016', 0.0020516604617207982) + +[fips3913751562] +centroid = (0.71765155041849904, -1.4709353239666938) +description = Monroe township, OH +station = ('kdfi', 0.0042671560324040753) +zone = ('ohz016', 0.0025594038281636696) + +[fips3913751660] +centroid = (0.71466993464414708, -1.4723610136194778) +description = Monterey township, OH +station = ('kaoh', 0.0062642425765685947) +zone = ('ohz016', 0.003277981859189844) + +[fips3913758996] +centroid = (0.71621352128790328, -1.4670280379169613) +description = Ottawa township, OH +station = ('kaoh', 0.0058857526468712694) +zone = ('ohz016', 0.0010448499438293279) + +[fips3913759612] +centroid = (0.71776798133289954, -1.4689593145474635) +description = Palmer township, OH +station = ('kdfi', 0.0050598318415870751) +zone = ('ohz016', 0.0018504331928445848) + +[fips3913762036] +centroid = (0.71650075012290404, -1.4710065857600527) +description = Perry township, OH +station = ('kdfi', 0.0052872987442276718) +zone = ('ohz016', 0.0020543837816257926) + +[fips3913763380] +centroid = (0.71478819815426209, -1.467017880100715) +description = Pleasant township, OH +station = ('kaoh', 0.0044663916382535161) +zone = ('ohz016', 0.0015646164227078542) + +[fips3913767174] +centroid = (0.71487152017275246, -1.464917289079477) +description = Riley township, OH +station = ('kaoh', 0.0046537255912309609) +zone = ('ohz016', 0.0028320786554507107) + +[fips3913775206] +centroid = (0.71373223905022054, -1.4690143971386562) +description = Sugar Creek township, OH +station = ('kaoh', 0.0039321133271567549) +zone = ('ohz025', 0.0022898752833037783) + +[fips3913778] +centroid = (0.68766901043738637, -1.4333800447072731) +description = Chauncey village, OH +station = ('kuni', 0.0036065670185774779) +zone = ('ohz075', 0.0016024125100177269) + +[fips3913778526] +centroid = (0.71503076401370436, -1.468993400827755) +description = Union township, OH +station = ('kaoh', 0.0050858844268678221) +zone = ('ohz016', 0.0010493966949485095) + +[fips3913779450] +centroid = (0.71760395528979715, -1.4651435710169982) +description = Van Buren township, OH +station = ('kfdy', 0.0040681418954601973) +zone = ('ohz016', 0.002933150092637395) + +[fips3913834] +centroid = (0.67869510338228478, -1.4593470707717373) +description = Cherry Fork village, OH +station = ('kiln', 0.0098162370387294678) +zone = ('ohz081', 0.0020615359251968191) + +[fips3913848] +centroid = (0.68207865103007848, -1.471695973361298) +description = Cherry Grove CDP, OH +station = ('kluk', 0.0013284361619678049) +zone = ('kyz093', 0.0024600849457174561) + +[fips39139] +centroid = (0.71164346390801869, -1.4406421502853113) +description = Richland County, OH +station = ('kmfd', 0.0008177185025268984) +zone = ('ohz029', 8.2669614476618979e-05) + +[fips3913904] +centroid = (0.67067638012021458, -1.4391316027242951) +description = Chesapeake village, OH +station = ('khts', 0.0016593715696065065) +zone = ('ohz087', 0.0031905813694878653) + +[fips3913907230] +centroid = (0.71470880312658891, -1.4404078049266458) +description = Bloominggrove township, OH +station = ('kmfd', 0.002329541055284609) +zone = ('ohz029', 0.0030575189331940077) + +[fips3913910646] +centroid = (0.71467333803618838, -1.4392224471118615) +description = Butler township, OH +station = ('kmfd', 0.0024016368504467538) +zone = ('ohz029', 0.003179194446516034) + +[fips3913912420] +centroid = (0.71460383902537394, -1.4418623448719656) +description = Cass township, OH +station = ('kmfd', 0.002554558614412871) +zone = ('ohz029', 0.0031174737347668541) + +[fips3913928406] +centroid = (0.71315076515662612, -1.440562685444468) +description = Franklin township, OH +station = ('kmfd', 0.00081646527574084449) +zone = ('ohz029', 0.0014981594884937717) + +[fips3913932] +centroid = (0.67982958484937361, -1.4331641125722163) +description = Cheshire village, OH +station = ('k3i2', 0.00067969181264418259) +zone = ('ohz085', 0.0025963462853053321) + +[fips3913938038] +centroid = (0.71298974107983715, -1.4416833613571736) +description = Jackson township, OH +station = ('kmfd', 0.0012830943015603119) +zone = ('ohz029', 0.0015951908649513558) + +[fips3913938794] +centroid = (0.70840387101692948, -1.4402003201851687) +description = Jefferson township, OH +station = ('kmfd', 0.003981363829135701) +zone = ('ohz029', 0.0032587159251504828) + +[fips3913946578] +centroid = (0.71190308163425298, -1.4396224591231261) +description = Madison township, OH +station = ('kmfd', 0.00064452609197778918) +zone = ('ohz029', 0.00073397911723641399) + +[fips3913947152] +centroid = (0.71151348923862279, -1.4404345433707866) +description = Mansfield township, OH +station = ('kmfd', 0.00089156913752491023) +zone = ('ohz029', 0.00015822389991891847) + +[fips3913950092] +centroid = (0.71159534518054135, -1.4383299904521469) +description = Mifflin township, OH +station = ('kmfd', 0.0016129152375133837) +zone = ('ohz029', 0.0016698450465765329) + +[fips3913951576] +centroid = (0.71013796034854093, -1.4380635310352448) +description = Monroe township, OH +station = ('kmfd', 0.002763889139357606) +zone = ('ohz029', 0.0024079775594300578) + +[fips3913962050] +centroid = (0.70850279627893253, -1.4415962170676215) +description = Perry township, OH +station = ('kmfd', 0.0040266151118061068) +zone = ('ohz037', 0.002882061684216234) + +[fips3913963814] +centroid = (0.71467906271613491, -1.4432874411128038) +description = Plymouth township, OH +station = ('kmfd', 0.0032794304850498335) +zone = ('ohz029', 0.0036736781749854121) + +[fips3913970394] +centroid = (0.71148383609463128, -1.4435633951208366) +description = Sandusky township, OH +station = ('kmfd', 0.0027101620098628197) +zone = ('ohz029', 0.0023007317128433302) + +[fips3913971830] +centroid = (0.71304660390686703, -1.4432791333455646) +description = Sharon township, OH +station = ('kmfd', 0.0024307844473958791) +zone = ('ohz029', 0.0025020371038156799) + +[fips3913974128] +centroid = (0.71157888672569491, -1.4421146322153413) +description = Springfield township, OH +station = ('kmfd', 0.0016669514508391404) +zone = ('ohz029', 0.0011995458729721384) + +[fips3913977616] +centroid = (0.71008277303759282, -1.4419197487510635) +description = Troy township, OH +station = ('kmfd', 0.002650151394113219) +zone = ('ohz029', 0.0018889500259154121) + +[fips3913981578] +centroid = (0.7099374045641943, -1.4400580758511312) +description = Washington township, OH +station = ('kmfd', 0.002449782149102631) +zone = ('ohz029', 0.0017528199371089053) + +[fips3913982628] +centroid = (0.71316671746598936, -1.4390580720029087) +description = Weller township, OH +station = ('kmfd', 0.0011579622404934869) +zone = ('ohz029', 0.0018812536731398198) + +[fips3913986618] +centroid = (0.70844359471070495, -1.4381701881058342) +description = Worthington township, OH +station = ('kmfd', 0.0042279136268191467) +zone = ('ohz047', 0.0033625665921780097) + +[fips3914086] +centroid = (0.68930754299245123, -1.4288696426812217) +description = Chesterhill village, OH +station = ('kuni', 0.0069629547380323543) +zone = ('ohz067', 0.0022070201765387047) + +[fips39141] +centroid = (0.68632913862392286, -1.4496632335900943) +description = Ross County, OH +station = ('klck', 0.0087688701915287735) +zone = ('ohz073', 0.00024400961912635286) + +[fips3914100] +centroid = (0.72465766855514724, -1.4195901284740957) +description = Chesterland CDP, OH +station = ('kcgf', 0.0020847644212341472) +zone = ('ohz013', 0.0020942856429203159) + +[fips3914110016] +centroid = (0.68704275139518578, -1.4539714566755946) +description = Buckskin township, OH +station = ('kiln', 0.0065427389774156339) +zone = ('ohz073', 0.0033992710729293337) + +[fips3914114] +centroid = (0.70641724999584699, -1.4430496400022197) +description = Chesterville village, OH +station = ('k4i3', 0.0033075219502761493) +zone = ('ohz037', 0.0017339141294259357) + +[fips3914116630] +centroid = (0.68809537692035616, -1.4451307356957126) +description = Colerain township, OH +station = ('klhq', 0.0059492814216408592) +zone = ('ohz073', 0.0037888210143826322) + +[fips3914118238] +centroid = (0.68798669526783451, -1.4523586328204119) +description = Concord township, OH +station = ('klck', 0.0079042377242815702) +zone = ('ohz073', 0.0025480624570908463) + +[fips3914121224] +centroid = (0.68914756611321348, -1.4513191670778016) +description = Deerfield township, OH +station = ('klck', 0.006502996771509088) +zone = ('ohz073', 0.0028927117998663156) + +[fips3914128] +centroid = (0.68343510347143599, -1.4767923522304138) +description = Cheviot city, OH +station = ('kcvg', 0.0020146901932775962) +zone = ('ohz077', 0.0011660606791417702) + +[fips3914128420] +centroid = (0.68441864886481241, -1.447124599833191) +description = Franklin township, OH +station = ('klhq', 0.00992622033058989) +zone = ('ohz073', 0.0028908323187018838) + +[fips3914131822] +centroid = (0.68822793467704513, -1.447277298689448) +description = Green township, OH +station = ('klhq', 0.0065246716849458753) +zone = ('ohz073', 0.0024535453208672951) + +[fips3914134006] +centroid = (0.68662757247272144, -1.4452584937969588) +description = Harrison township, OH +station = ('klhq', 0.0073870819056209101) +zone = ('ohz073', 0.0033722396686553103) + +[fips3914136890] +centroid = (0.68472416875037401, -1.4493860054917076) +description = Huntington township, OH +station = ('klck', 0.010315332257189752) +zone = ('ohz073', 0.0018551905096264177) + +[fips3914138808] +centroid = (0.68465351782225314, -1.4454060090253373) +description = Jefferson township, OH +station = ('klhq', 0.0093331847217335753) +zone = ('ohz073', 0.0037821856073119828) + +[fips3914143302] +centroid = (0.68544600202241379, -1.4459605350352809) +description = Liberty township, OH +station = ('klhq', 0.0086710208064051664) +zone = ('ohz073', 0.0030454302052767366) + +[fips3914156] +centroid = (0.70574512370090392, -1.4746931400192851) +description = Chickasaw village, OH +station = ('kves', 0.0041509787473591533) +zone = ('ohz034', 0.0025536532142822017) + +[fips3914159542] +centroid = (0.68548085624757615, -1.4541935323696185) +description = Paint township, OH +station = ('kiln', 0.0068457070447605177) +zone = ('ohz080', 0.0041226773220019112) + +[fips3914161308] +centroid = (0.68438538288926942, -1.453135269430964) +description = Paxton township, OH +station = ('kiln', 0.0080671493287432349) +zone = ('ohz082', 0.0035050820530419255) + +[fips3914170898] +centroid = (0.68619328219494768, -1.4485560490725069) +description = Scioto township, OH +station = ('klhq', 0.0087779433348694688) +zone = ('ohz073', 0.00090407587707691626) + +[fips3914174129] +centroid = (0.68689664988350141, -1.447042691531395) +description = Springfield township, OH +station = ('klhq', 0.0076088010210405574) +zone = ('ohz073', 0.0020181362764663422) + +[fips3914178008] +centroid = (0.68579625469670402, -1.4513962757241545) +description = Twin township, OH +station = ('klck', 0.0096266515452482423) +zone = ('ohz073', 0.0015786841857309494) + +[fips3914178540] +centroid = (0.68805526925414529, -1.4496080462791463) +description = Union township, OH +station = ('klck', 0.0070729716700827583) +zone = ('ohz073', 0.001484649827872817) + +[fips3914184] +centroid = (0.68658914032259244, -1.4485195891444325) +description = Chillicothe city, OH +station = ('klck', 0.008382688379397105) +zone = ('ohz073', 0.00084982304650911089) + +[fips3914226] +centroid = (0.67708632869096652, -1.4684816528377775) +description = Chilo village, OH +station = ('kluk', 0.0065434135079716757) +zone = ('kyz097', 0.0019506429671456076) + +[fips3914254] +centroid = (0.71687756670840952, -1.4294855693742505) +description = Chippewa Lake village, OH +station = ('kbjj', 0.0036294122932247004) +zone = ('ohz020', 0.00076156707073298815) + +[fips3914280] +centroid = (0.70715440725871925, -1.4641177188425536) +description = Chippewa Park CDP, OH +station = ('kedj', 0.0026842171303019004) +zone = ('ohz044', 0.0027660158502398027) + +[fips3914288] +centroid = (0.69741749461452329, -1.4571487936722654) +description = Choctaw Lake CDP, OH +station = ('kmrt', 0.0049149813932723571) +zone = ('ohz054', 0.0016394229584493281) + +[fips3914296] +centroid = (0.6991184750502244, -1.4665173022179503) +description = Christiansburg village, OH +station = ('kday', 0.0037440776547587539) +zone = ('ohz051', 0.002721130777702445) + +[fips39143] +centroid = (0.72178599107037833, -1.4511144748631277) +description = Sandusky County, OH +station = ('ktdz', 0.0057841334985530759) +zone = ('ohz008', 3.6410950027237446e-05) + +[fips3914303730] +centroid = (0.72075710202303511, -1.4509182125887408) +description = Ballville township, OH +station = ('ktdz', 0.0065922415697329114) +zone = ('ohz008', 0.0010648162142021622) + +[fips3914305228] +centroid = (0.72035407059216461, -1.4462344121015038) +description = Bellevue city, OH +station = ('klpr', 0.0090119917938231153) +zone = ('ohz009', 0.0035809029333469448) + +[fips3914316308] +centroid = (0.72091124950257124, -1.4482516112910815) +description = Clyde city, OH +station = ('ktdz', 0.008026669344369795) +zone = ('ohz008', 0.0023563668920470872) + +[fips3914324] +centroid = (0.71853777625278414, -1.4078868755347254) +description = Churchill CDP, OH +station = ('kyng', 0.0014105693462837098) +zone = ('ohz023', 0.0028683691303403804) + +[fips3914328826] +centroid = (0.72174633718977299, -1.4506407052376737) +description = Fremont city, OH +station = ('ktdz', 0.006086097866872411) +zone = ('ohz008', 0.00039006147969377318) + +[fips3914331990] +centroid = (0.7207808035942771, -1.4489444895508305) +description = Green Creek township, OH +station = ('ktdz', 0.0076843708541457258) +zone = ('ohz008', 0.0019509862761058218) + +[fips3914332256] +centroid = (0.72016815812024215, -1.4495468201289863) +description = Green Springs village, OH +station = ('ktdz', 0.0077397154117639011) +zone = ('ohz008', 0.002035569515055785) + +[fips3914338052] +centroid = (0.72077834268003182, -1.4528878515562016) +description = Jackson township, OH +station = ('ktdz', 0.0056427275572777961) +zone = ('ohz008', 0.0016594039104415607) + +[fips3914346592] +centroid = (0.72216711861913629, -1.4548785217411488) +description = Madison township, OH +station = ('ktdz', 0.0036895399331381582) +zone = ('ohz008', 0.002818315885708834) + +[fips3914366460] +centroid = (0.72322627167570908, -1.4506073519956681) +description = Rice township, OH +station = ('ktdz', 0.0053295817332538725) +zone = ('ohz008', 0.0014772364863632492) + +[fips3914367188] +centroid = (0.72248075428571967, -1.4486647656316134) +description = Riley township, OH +station = ('ktdz', 0.0069652982709868449) +zone = ('ohz008', 0.0019856683126635607) + +[fips3914370408] +centroid = (0.72223408690253532, -1.4509188409072715) +description = Sandusky township, OH +station = ('ktdz', 0.005627622869636595) +zone = ('ohz008', 0.00046202985640197882) + +[fips3914371087] +centroid = (0.72078321214864494, -1.4549080527120923) +description = Scott township, OH +station = ('ktdz', 0.00496138966100447) +zone = ('ohz008', 0.0029992794355559742) + +[fips3914377162] +centroid = (0.72226251831605026, -1.4469134324469923) +description = Townsend township, OH +station = ('klpr', 0.0094311727297848487) +zone = ('ohz009', 0.0037375799421053516) + +[fips3914381592] +centroid = (0.72254307999330836, -1.4528650750094629) +description = Washington township, OH +station = ('ktdz', 0.0042975566347588203) +zone = ('ohz008', 0.0014799203320362807) + +[fips3914386506] +centroid = (0.7234177692012379, -1.4549953889878622) +description = Woodville township, OH +station = ('ktdz', 0.0025731766676976718) +zone = ('ohz008', 0.0033009736179866731) + +[fips3914387080] +centroid = (0.72094044886095721, -1.4467251288739946) +description = York township, OH +station = ('klpr', 0.0093085971514901573) +zone = ('ohz008', 0.0034367056657292113) + +[fips39145] +centroid = (0.67744988077415691, -1.4486063145549641) +description = Scioto County, OH +station = ('khts', 0.0099376114108213464) +zone = ('ohz088', 0.00021014419445833341) + +[fips3914506992] +centroid = (0.67730238299907086, -1.4438122441655863) +description = Bloom township, OH +station = ('khts', 0.0080377230506960204) +zone = ('ohz083', 0.0039884213464398272) + +[fips3914509764] +centroid = (0.6777101617255068, -1.45239865322016) +description = Brush Creek township, OH +station = ('khts', 0.012164699645413037) +zone = ('ohz081', 0.0034868877386832644) + +[fips3914515560] +centroid = (0.6770751236771686, -1.4480424684868149) +description = Clay township, OH +station = ('khts', 0.0093720989344926852) +zone = ('ohz088', 0.00039888588064074319) + +[fips3914531836] +centroid = (0.67438218536109651, -1.445242262234915) +description = Green township, OH +station = ('khts', 0.0059065261654011178) +zone = ('kyz101', 0.0022752120431322963) + +[fips3914534020] +centroid = (0.67731418142481425, -1.446162050750716) +description = Harrison township, OH +station = ('khts', 0.0087691155459569819) +zone = ('ohz088', 0.0018209309039972435) + +[fips3914538815] +centroid = (0.67872432019396312, -1.447497471974587) +description = Jefferson township, OH +station = ('khts', 0.010508612687369377) +zone = ('ohz088', 0.0016607629667453349) + +[fips3914546606] +centroid = (0.67913511834000495, -1.4457615849538461) +description = Madison township, OH +station = ('k3i2', 0.010018420657946531) +zone = ('ohz088', 0.0028398071391732365) + +[fips3914552150] +centroid = (0.67937012692378607, -1.4501630784345729) +description = Morgan township, OH +station = ('khts', 0.012198382921843965) +zone = ('ohz088', 0.0024788242200742584) + +[fips3914554166] +centroid = (0.67632513824429419, -1.4474582718795874) +description = New Boston village, OH +station = ('khts', 0.0085003010137827285) +zone = ('ohz088', 0.0012352868809616861) + +[fips3914555902] +centroid = (0.67548923025234409, -1.4517172417735964) +description = Nile township, OH +station = ('khts', 0.010379374817911445) +zone = ('ohz088', 0.0030710268785850941) + +[fips3914564206] +centroid = (0.67606353084271276, -1.4459245114395196) +description = Porter township, OH +station = ('khts', 0.0075969142874409311) +zone = ('ohz088', 0.002334613018869123) + +[fips3914564304] +centroid = (0.67636386710039598, -1.4477920311924461) +description = Portsmouth city, OH +station = ('khts', 0.008693274608607025) +zone = ('ohz088', 0.0010494060130250104) + +[fips3914565522] +centroid = (0.67972928077726147, -1.4525242296598408) +description = Rarden township, OH +station = ('kiln', 0.011393260322372957) +zone = ('ohz082', 0.0031315393274554924) + +[fips3914569092] +centroid = (0.67788352528010742, -1.4494547016510659) +description = Rush township, OH +station = ('khts', 0.010690105866652005) +zone = ('ohz088', 0.00097357257773578859) + +[fips3914578554] +centroid = (0.67766438173922694, -1.4506658030723176) +description = Union township, OH +station = ('khts', 0.011156200480890423) +zone = ('ohz088', 0.0017376721900426995) + +[fips3914579170] +centroid = (0.678914979961451, -1.4484881732178967) +description = Valley township, OH +station = ('khts', 0.011075493941384434) +zone = ('ohz088', 0.0016574333297109118) + +[fips3914579828] +centroid = (0.67583093081329948, -1.4442736219533507) +description = Vernon township, OH +station = ('khts', 0.0067845308858588251) +zone = ('ohz088', 0.0035893184481763595) + +[fips3914581606] +centroid = (0.67640619133475688, -1.4495216350278801) +description = Washington township, OH +station = ('khts', 0.0096346708650751258) +zone = ('ohz088', 0.001167087585068758) + +[fips39147] +centroid = (0.71767952804640844, -1.4508474569408651) +description = Seneca County, OH +station = ('kmnn', 0.0088215005567598408) +zone = ('ohz018', 6.8016836294457317e-05) + +[fips3914700324] +centroid = (0.71921253799489759, -1.4487976375475677) +description = Adams township, OH +station = ('ktdz', 0.0088112310608342882) +zone = ('ohz018', 0.0021303509326377353) + +[fips3914706432] +centroid = (0.7161556810764923, -1.4548781726752982) +description = Big Spring township, OH +station = ('kfdy', 0.0040689250387072147) +zone = ('ohz027', 0.0033967215279868059) + +[fips3914707006] +centroid = (0.71611721401977824, -1.4487295871600325) +description = Bloom township, OH +station = ('kmnn', 0.007266823814438092) +zone = ('ohz018', 0.0022842093207842105) + +[fips3914716154] +centroid = (0.71779257302206023, -1.4508219402272009) +description = Clinton township, OH +station = ('kmnn', 0.0089323682528216954) +zone = ('ohz018', 5.050193692332384e-05) + +[fips3914724346] +centroid = (0.71626019139210162, -1.4508526754753286) +description = Eden township, OH +station = ('kmnn', 0.0074096487602377395) +zone = ('ohz018', 0.0014872649401041266) + +[fips3914728014] +centroid = (0.71837875930463502, -1.4556507426686935) +description = Fostoria city, OH +station = ('kfdy', 0.0042809670196469222) +zone = ('ohz017', 0.0044351661551297657) + +[fips3914732256] +centroid = (0.71999952440791448, -1.4495507296665109) +description = Green Springs village, OH +station = ('ktdz', 0.0078545016084972975) +zone = ('ohz008', 0.0021720663919096244) + +[fips3914736400] +centroid = (0.7177688889041105, -1.4530060976130239) +description = Hopewell township, OH +station = ('kfdy', 0.0057862079621703805) +zone = ('ohz018', 0.0016227358378745557) + +[fips3914738066] +centroid = (0.71930104364126624, -1.4549048238529763) +description = Jackson township, OH +station = ('kfdy', 0.005291697127807045) +zone = ('ohz018', 0.003423619934906791) + +[fips3914743316] +centroid = (0.71899035758111884, -1.4529849267691974) +description = Liberty township, OH +station = ('kfdy', 0.0063039207348918914) +zone = ('ohz018', 0.0020306065641420724) + +[fips3914745052] +centroid = (0.71769188497751257, -1.4548882257717897) +description = Loudon township, OH +station = ('kfdy', 0.0044375958617301065) +zone = ('ohz018', 0.0030409769275313689) + +[fips3914763394] +centroid = (0.71937391113753713, -1.4508167565993224) +description = Pleasant township, OH +station = ('ktdz', 0.0076912782290065014) +zone = ('ohz018', 0.0016266720224631642) + +[fips3914765942] +centroid = (0.71775276206182215, -1.4468100391421039) +description = Reed township, OH +station = ('kmfd', 0.0073357638160429714) +zone = ('ohz018', 0.0030448104548457936) + +[fips3914771024] +centroid = (0.71777012808787954, -1.448902339849395) +description = Scipio township, OH +station = ('kmfd', 0.008502581510132801) +zone = ('ohz018', 0.0014688667785010862) + +[fips3914771355] +centroid = (0.71625324498167875, -1.4528368704887509) +description = Seneca township, OH +station = ('kfdy', 0.005611767824749282) +zone = ('ohz018', 0.002114474716921012) + +[fips3914776632] +centroid = (0.71912544606522311, -1.4466871505094712) +description = Thompson township, OH +station = ('kmfd', 0.0083357923453626793) +zone = ('ohz018', 0.0034249353679876833) + +[fips3914776778] +centroid = (0.71761927928062963, -1.4517813302637297) +description = Tiffin city, OH +station = ('kfdy', 0.0066250564898088704) +zone = ('ohz018', 0.00071168261033117638) + +[fips3914779674] +centroid = (0.71610365281149024, -1.4467134351680062) +description = Venice township, OH +station = ('kmfd', 0.0061757926397094445) +zone = ('ohz028', 0.0031444801926275813) + +[fips39149] +centroid = (0.7040078753233463, -1.4696395391701356) +description = Shelby County, OH +station = ('kves', 0.0049519926305520634) +zone = ('ohz043', 8.9092554921825999e-05) + +[fips3914916168] +centroid = (0.70314215710777217, -1.4690707189136183) +description = Clinton township, OH +station = ('kves', 0.0050113224321878432) +zone = ('ohz043', 0.00089421821666172427) + +[fips3914919834] +centroid = (0.70332494544033342, -1.4721773700755829) +description = Cynthian township, OH +station = ('kves', 0.0029456856697950787) +zone = ('ohz043', 0.0020159423043324682) + +[fips3914922050] +centroid = (0.70573091672079269, -1.4688345933191158) +description = Dinsmore township, OH +station = ('kaoh', 0.0049838821302768911) +zone = ('ohz043', 0.0019154656175812447) + +[fips3914928434] +centroid = (0.7042977919653951, -1.4690853098661647) +description = Franklin township, OH +station = ('kves', 0.0054619622479110518) +zone = ('ohz043', 0.00057378358657131617) + +[fips3914931850] +centroid = (0.70210817169901307, -1.4672171094348301) +description = Green township, OH +station = ('kedj', 0.0041335775380251369) +zone = ('ohz043', 0.0025937655726274676) + +[fips3914938080] +centroid = (0.70567065050172129, -1.4671626202555828) +description = Jackson township, OH +station = ('kedj', 0.003393161474934629) +zone = ('ohz043', 0.0025807952683831749) + +[fips3914944884] +centroid = (0.70232558736393402, -1.4724865726058662) +description = Loramie township, OH +station = ('kves', 0.0022798870098484554) +zone = ('ohz043', 0.0026867094730623161) + +[fips3914946172] +centroid = (0.70452299179877997, -1.4721927813328781) +description = McLean township, OH +station = ('kves', 0.0037589506640055611) +zone = ('ohz043', 0.0020290422404390628) + +[fips3914958660] +centroid = (0.70198884353805424, -1.4686722776986805) +description = Orange township, OH +station = ('kves', 0.0050951167485568149) +zone = ('ohz043', 0.0020697572993908175) + +[fips3914962064] +centroid = (0.70332175148780229, -1.4673137832220979) +description = Perry township, OH +station = ('kedj', 0.0035940669451769718) +zone = ('ohz043', 0.0018796261865621812) + +[fips3914969960] +centroid = (0.70448667149704602, -1.4672332362771185) +description = Salem township, OH +station = ('kedj', 0.0032878951701192927) +zone = ('ohz043', 0.0019280472238020646) + +[fips3914977854] +centroid = (0.70385844023279065, -1.4704127549353543) +description = Turtle Creek township, OH +station = ('kves', 0.0043658870745049766) +zone = ('ohz043', 0.00058387629305439292) + +[fips3914979464] +centroid = (0.70575124980657844, -1.4708207954611778) +description = Van Buren township, OH +station = ('kves', 0.0053713592510437978) +zone = ('ohz043', 0.0020372358296799511) + +[fips3914981620] +centroid = (0.70246477737178059, -1.4705822264057229) +description = Washington township, OH +station = ('kves', 0.0037192675849317953) +zone = ('ohz043', 0.0016186208267240472) + +[fips3915000] +centroid = (0.68312015880791366, -1.4749157393120844) +description = Cincinnati city, OH +station = ('kluk', 0.0014010381125291558) +zone = ('ohz077', 0.0010851511733031526) + +[fips3915008] +centroid = (0.71531432765727587, -1.4345211584255195) +description = Cinnamon Lake CDP, OH +station = ('kmfd', 0.0051887226788123984) +zone = ('ohz030', 0.0026289391614641141) + +[fips3915070] +centroid = (0.69119256839777521, -1.4474454437095852) +description = Circleville city, OH +station = ('klck', 0.0037393782470805889) +zone = ('ohz064', 0.001414163060251668) + +[fips39151] +centroid = (0.71234096729028584, -1.4200987872312971) +description = Stark County, OH +station = ('kcak', 0.0021075188338034625) +zone = ('ohz032', 6.5457665123784812e-06) + +[fips3915101420] +centroid = (0.71401541872135654, -1.4158074414796635) +description = Alliance city, OH +station = ('kpov', 0.0056741847077930851) +zone = ('ohz032', 0.0036573706573392369) + +[fips3915106180] +centroid = (0.71016831162423322, -1.422129966508183) +description = Bethlehem township, OH +station = ('kcak', 0.0039847941063579995) +zone = ('ohz032', 0.002655846086987003) + +[fips3915112000] +centroid = (0.71222785250146403, -1.4201260318209206) +description = Canton city, OH +station = ('kcak', 0.0021940739229286072) +zone = ('ohz032', 0.00010876185560105924) + +[fips3915112014] +centroid = (0.71131942607909349, -1.4199916938283947) +description = Canton township, OH +station = ('kcak', 0.0030544344124353055) +zone = ('ohz032', 0.0010192452746788487) + +[fips3915138094] +centroid = (0.71321832685197084, -1.4220995279660282) +description = Jackson township, OH +station = ('kcak', 0.00099598635390176675) +zone = ('ohz032', 0.0017497961781102497) + +[fips3915141314] +centroid = (0.71461755731329468, -1.419915772005933) +description = Lake township, OH +station = ('kcak', 0.001341785211341045) +zone = ('ohz032', 0.0022867461057668763) + +[fips3915142168] +centroid = (0.71326710880456412, -1.4241761381633435) +description = Lawrence township, OH +station = ('kcak', 0.002150537123958826) +zone = ('ohz031', 0.0038738491917446384) + +[fips3915143022] +centroid = (0.71478071069177107, -1.4161471698185641) +description = Lexington township, OH +station = ('kpov', 0.0048671439157696519) +zone = ('ohz022', 0.0038039985231318823) + +[fips3915145094] +centroid = (0.71273270644089592, -1.4183337183054627) +description = Louisville city, OH +station = ('kcak', 0.0028185760742580118) +zone = ('ohz032', 0.0013964906648699425) + +[fips3915147936] +centroid = (0.71460907501312987, -1.4179618410017403) +description = Marlboro township, OH +station = ('kakr', 0.0033303979955838421) +zone = ('ohz032', 0.0027912513687563833) + +[fips3915148244] +centroid = (0.71181112023596527, -1.4229076677695793) +description = Massillon city, OH +station = ('kcak', 0.0025303265140277447) +zone = ('ohz032', 0.0021869886594183285) + +[fips3915155944] +centroid = (0.71309611889774627, -1.4180186689221852) +description = Nimishillen township, OH +station = ('kcak', 0.0028776738079528295) +zone = ('ohz032', 0.0017508667930100446) + +[fips3915158926] +centroid = (0.71161035501210845, -1.4182124353757415) +description = Osnaburg township, OH +station = ('kcak', 0.0035784571815040958) +zone = ('ohz032', 0.0016042703870503738) + +[fips3915159850] +centroid = (0.71149032871944884, -1.416186736432707) +description = Paris township, OH +station = ('kcak', 0.004853950574416387) +zone = ('ohz040', 0.0033144679515313474) + +[fips3915162078] +centroid = (0.71159291917288103, -1.4218769810331064) +description = Perry township, OH +station = ('kcak', 0.0025481905070816415) +zone = ('ohz032', 0.0015346124356810469) + +[fips3915162694] +centroid = (0.71012347411574939, -1.420244941102859) +description = Pike township, OH +station = ('kphd', 0.0038881820435377854) +zone = ('ohz032', 0.0022143338801637585) + +[fips3915162988] +centroid = (0.71329156086738443, -1.4201556151517418) +description = Plain township, OH +station = ('kcak', 0.0013594702102313332) +zone = ('ohz032', 0.00095720320909269292) + +[fips3915170436] +centroid = (0.71023732194285705, -1.4186068972399848) +description = Sandy township, OH +station = ('kphd', 0.0043543614158717305) +zone = ('ohz032', 0.002384374188379302) + +[fips3915175208] +centroid = (0.71020129834709578, -1.4242246932231339) +description = Sugar Creek township, OH +station = ('kcak', 0.0044130391544259517) +zone = ('ohz032', 0.0037819416410862436) + +[fips3915177910] +centroid = (0.71166711311938335, -1.4239999820819398) +description = Tuscarawas township, OH +station = ('kcak', 0.0030733776359337652) +zone = ('ohz032', 0.0030250374354127804) + +[fips3915181634] +centroid = (0.71303869756535554, -1.4161751998063512) +description = Washington township, OH +station = ('kakr', 0.0053135340639253979) +zone = ('ohz032', 0.0030538299754971931) + +[fips3915210] +centroid = (0.69422621243712912, -1.4114197710066123) +description = Clarington village, OH +station = ('khlg', 0.0074140945903755232) +zone = ('wvz004', 0.0031177140011600054) + +[fips39153] +centroid = (0.71771169446452276, -1.4230530886028554) +description = Summit County, OH +station = ('kakr', 0.0017870498649764871) +zone = ('ohz021', 7.9901588142495026e-05) + +[fips3915301000] +centroid = (0.71698921542065963, -1.4228173644340809) +description = Akron city, OH +station = ('kakr', 0.0010935569131285451) +zone = ('ohz021', 0.00080546535641534862) + +[fips3915303828] +centroid = (0.71570472290436193, -1.4242650801420251) +description = Barberton city, OH +station = ('kakr', 0.0018713413995968052) +zone = ('ohz021', 0.0022849890199168835) + +[fips3915304248] +centroid = (0.71870792840156106, -1.4250457310098572) +description = Bath township, OH +station = ('kakr', 0.0034948339795743532) +zone = ('ohz021', 0.0017947278091106919) + +[fips3915307776] +centroid = (0.71966724862491982, -1.423372169696705) +description = Boston township, OH +station = ('kakr', 0.0036807381127301714) +zone = ('ohz021', 0.0019051903313752341) + +[fips3915307790] +centroid = (0.71999339830223996, -1.4225771722224214) +description = Boston Heights village, OH +station = ('kpov', 0.003429328530384287) +zone = ('ohz021', 0.0022342005946429122) + +[fips3915316182] +centroid = (0.71433076481060687, -1.424732130249859) +description = Clinton village, OH +station = ('kakr', 0.0028402695189270319) +zone = ('ohz021', 0.0036897108021620622) + +[fips3915318658] +centroid = (0.71709531398588833, -1.424753580346366) +description = Copley township, OH +station = ('kakr', 0.0023701078822128715) +zone = ('ohz021', 0.0014868589813852443) + +[fips3915319036] +centroid = (0.71574545888910346, -1.4231315935126101) +description = Coventry township, OH +station = ('kakr', 0.001046727673702303) +zone = ('ohz021', 0.0020391888216845914) + +[fips3915319778] +centroid = (0.71877686890701487, -1.4233685045052757) +description = Cuyahoga Falls city, OH +station = ('kakr', 0.0028463710104456546) +zone = ('ohz021', 0.001031762571478206) + +[fips3915326166] +centroid = (0.71787161898388296, -1.4245780002236155) +description = Fairlawn city, OH +station = ('kakr', 0.0026643983114740429) +zone = ('ohz021', 0.0011892570216175046) + +[fips3915331860] +centroid = (0.71477884318947149, -1.421955276503351) +description = Green city, OH +station = ('kcak', 0.00071042141933537158) +zone = ('ohz032', 0.0028165305774801442) + +[fips3915336] +centroid = (0.68950799405704288, -1.4513124999200591) +description = Clarksburg village, OH +station = ('klck', 0.0061819156480777526) +zone = ('ohz064', 0.0029480494807972483) + +[fips3915336651] +centroid = (0.71976004778124825, -1.4214242600784315) +description = Hudson city, OH +station = ('kpov', 0.0025373746196460474) +zone = ('ohz021', 0.0023073956253564418) + +[fips3915341454] +centroid = (0.71598038020642196, -1.4211070988467593) +description = Lakemore village, OH +station = ('kakr', 0.00059890259352712145) +zone = ('ohz021', 0.0023002485402213941) + +[fips3915345976] +centroid = (0.72108131438488554, -1.4224717892421861) +description = Macedonia city, OH +station = ('kpov', 0.0036933823292635013) +zone = ('ohz011', 0.0028066372461381783) + +[fips3915351058] +centroid = (0.7165008897492442, -1.4208278985263176) +description = Mogadore village, OH +station = ('kakr', 0.00084819018655961094) +zone = ('ohz021', 0.0020811270441602574) + +[fips3915353312] +centroid = (0.71802105407443872, -1.4213274815714085) +description = Munroe Falls city, OH +station = ('kakr', 0.0018974759787269604) +zone = ('ohz021', 0.0012847918670348549) + +[fips3915354562] +centroid = (0.71478716841000345, -1.4239245838582537) +description = New Franklin city, OH +station = ('kakr', 0.0020803708646900715) +zone = ('ohz021', 0.0030746934431950105) + +[fips3915356448] +centroid = (0.72156335687099382, -1.4229415795169456) +description = Northfield village, OH +station = ('kbkl', 0.0037888300934228094) +zone = ('ohz011', 0.00222293795500172) + +[fips3915356490] +centroid = (0.72060265783752619, -1.4230109214481272) +description = Northfield Center township, OH +station = ('kpov', 0.0038896854480047968) +zone = ('ohz021', 0.0028203003836448793) + +[fips3915357260] +centroid = (0.71608993452356962, -1.4249834053022685) +description = Norton city, OH +station = ('kakr', 0.0023562230602190773) +zone = ('ohz021', 0.0022564694052087013) + +[fips3915366152] +centroid = (0.72130094661795652, -1.420645057833879) +description = Reminderville village, OH +station = ('kpov', 0.0026900998606204981) +zone = ('ohz022', 0.0038378878241970321) + +[fips3915366544] +centroid = (0.71965422846869997, -1.4249557767402095) +description = Richfield township, OH +station = ('kcle', 0.0039718656373620197) +zone = ('ohz021', 0.0023796552943297794) + +[fips3915369428] +centroid = (0.72111824555185777, -1.4234862793232002) +description = Sagamore Hills township, OH +station = ('kbkl', 0.0040260956966348925) +zone = ('ohz011', 0.002276959019843925) + +[fips3915372494] +centroid = (0.71827079323710663, -1.4217715805995785) +description = Silver Lake village, OH +station = ('kakr', 0.0021051160855891913) +zone = ('ohz021', 0.0010485417639055749) + +[fips3915374130] +centroid = (0.71569866661185744, -1.4213708006434429) +description = Springfield township, OH +station = ('kakr', 0.00059684313463858685) +zone = ('ohz021', 0.0024201771128964911) + +[fips3915374944] +centroid = (0.71866132811053274, -1.4213354577260899) +description = Stow city, OH +station = ('kakr', 0.0025258611101935976) +zone = ('ohz021', 0.0015330627679874798) + +[fips3915376106] +centroid = (0.71743711926659892, -1.4211447455987247) +description = Tallmadge city, OH +station = ('kakr', 0.0013805210288087265) +zone = ('ohz021', 0.0014423449388131886) + +[fips3915378050] +centroid = (0.72121532076485373, -1.4214506494567218) +description = Twinsburg city, OH +station = ('kpov', 0.0031022748734508446) +zone = ('ohz011', 0.0033351089010331802) + +[fips3915378064] +centroid = (0.72068522936443802, -1.420925252991994) +description = Twinsburg township, OH +station = ('kpov', 0.0024827489266510687) +zone = ('ohz021', 0.003297170825841275) + +[fips3915406] +centroid = (0.68770028673758221, -1.4658169015891251) +description = Clarksville village, OH +station = ('kiln', 0.0027740827672742816) +zone = ('ohz071', 0.0024894314741623) + +[fips3915434] +centroid = (0.67807060712262868, -1.4470281354854333) +description = Clarktown CDP, OH +station = ('khts', 0.0097598043474476318) +zone = ('ohz088', 0.0014041254132852973) + +[fips39155] +centroid = (0.72097694369561638, -1.4096615263181533) +description = Trumbull County, OH +station = ('kyng', 0.0016770861279562137) +zone = ('ohz023', 0.00017570063889642582) + +[fips3915504444] +centroid = (0.72097694369561638, -1.4096615263181533) +description = Bazetta township, OH +station = ('kyng', 0.0016770861279562137) +zone = ('ohz023', 0.00017570063889642582) + +[fips3915507160] +centroid = (0.72378496902256495, -1.4112255158608653) +description = Bloomfield township, OH +station = ('kyng', 0.0045775673195778696) +zone = ('ohz023', 0.0029471586512427317) + +[fips3915508056] +centroid = (0.7197085082084369, -1.4128714311586661) +description = Braceville township, OH +station = ('kpov', 0.0039275971095908847) +zone = ('ohz023', 0.0028797826504712931) + +[fips3915508938] +centroid = (0.72227407239569852, -1.4113257850263925) +description = Bristol township, OH +station = ('kyng', 0.0034689567644455659) +zone = ('ohz023', 0.0017687679759013785) + +[fips3915509190] +centroid = (0.71970924124672275, -1.4060698481570593) +description = Brookfield township, OH +station = ('kyng', 0.0013959454076686189) +zone = ('ohz023', 0.0029638943046627953) + +[fips3915513470] +centroid = (0.72099985986869497, -1.4112431785928956) +description = Champion township, OH +station = ('kyng', 0.0027243000336440119) +zone = ('ohz023', 0.0012891631874703973) + +[fips3915518812] +centroid = (0.72137587360274458, -1.4088156350428815) +description = Cortland city, OH +station = ('kyng', 0.001585036987504533) +zone = ('ohz023', 0.0005957000544071048) + +[fips3915526684] +centroid = (0.72237500478634131, -1.412874450578272) +description = Farmington township, OH +station = ('kpov', 0.0048985744201506106) +zone = ('ohz023', 0.0028013602378958568) + +[fips3915528098] +centroid = (0.72100352506012422, -1.407841043188568) +description = Fowler township, OH +station = ('kyng', 0.0010561049138935955) +zone = ('ohz023', 0.0012780054748631547) + +[fips3915532046] +centroid = (0.72367094666253218, -1.4095495634466377) +description = Greene township, OH +station = ('kyng', 0.0039233979200640973) +zone = ('ohz023', 0.0025463021105907434) + +[fips3915532732] +centroid = (0.72365331883708695, -1.4078797894979624) +description = Gustavus township, OH +station = ('kyng', 0.0037050302454561868) +zone = ('ohz023', 0.0028170708976409907) + +[fips3915534230] +centroid = (0.72088253883637599, -1.4064884479248576) +description = Hartford township, OH +station = ('kyng', 0.0014129464827329953) +zone = ('ohz023', 0.0023010858282215261) + +[fips3915536554] +centroid = (0.71974378131261973, -1.409386828947182) +description = Howland township, OH +station = ('kyng', 0.0011373051365371337) +zone = ('ohz023', 0.001385362559415894) + +[fips3915536596] +centroid = (0.71851850781784221, -1.4061610241571834) +description = Hubbard township, OH +station = ('kyng', 0.0019374637024768633) +zone = ('ohz023', 0.0036370102201748384) + +[fips3915539298] +centroid = (0.72235760385369896, -1.4078642386143272) +description = Johnston township, OH +station = ('kyng', 0.0024094282836324265) +zone = ('ohz023', 0.0017586500958233569) + +[fips3915540502] +centroid = (0.72354772641734144, -1.4062311514865284) +description = Kinsman township, OH +station = ('kyng', 0.0038109123533151879) +zone = ('ohz023', 0.0034662663671587751) + +[fips3915543344] +centroid = (0.71862626444586031, -1.4077684200383924) +description = Liberty township, OH +station = ('kyng', 0.0013256925305992777) +zone = ('ohz023', 0.0028295036359409038) + +[fips3915544912] +centroid = (0.71856908745956505, -1.4113826827600073) +description = Lordstown village, OH +station = ('kyng', 0.0029615701538808791) +zone = ('ohz023', 0.0029088387218395738) + +[fips3915545934] +centroid = (0.71843658206275351, -1.4088838948699272) +description = McDonald village, OH +station = ('kyng', 0.0016835856918831576) +zone = ('ohz033', 0.0026860190048690223) + +[fips3915548678] +centroid = (0.7221814477722952, -1.4097177782799448) +description = Mecca township, OH +station = ('kyng', 0.0026178652690665325) +zone = ('ohz023', 0.0010656613631683963) + +[fips3915549210] +centroid = (0.72367304105763453, -1.4129094095231893) +description = Mesopotamia township, OH +station = ('kyng', 0.0052932048062773246) +zone = ('ohz013', 0.0030067882075602423) + +[fips3915555636] +centroid = (0.71859704763418186, -1.4128571194587998) +description = Newton township, OH +station = ('kpov', 0.004016215894825227) +zone = ('ohz023', 0.003553695923955246) + +[fips3915558674] +centroid = (0.72167849624174796, -1.405559513883776) +description = Orangeville village, OH +station = ('kyng', 0.0024662591968025731) +zone = ('ohz023', 0.0030359716485445416) + +[fips3915573397] +centroid = (0.7211445476636853, -1.4128339065797482) +description = Southington township, OH +station = ('kpov', 0.0043018133630742155) +zone = ('ohz023', 0.0024778326727546147) + +[fips3915579856] +centroid = (0.72238563384148602, -1.4063214373687343) +description = Vernon township, OH +station = ('kyng', 0.0027100099634355694) +zone = ('ohz023', 0.0027218694049296064) + +[fips3915580052] +centroid = (0.71966976189904264, -1.4078989706664418) +description = Vienna township, OH +station = ('kyng', 0.00027855455068268644) +zone = ('ohz023', 0.0019048168010709465) + +[fips3915580892] +centroid = (0.71974334498030668, -1.4105179419288145) +description = Warren city, OH +station = ('kyng', 0.0019798927541376365) +zone = ('ohz023', 0.0015664798508742213) + +[fips3915580906] +centroid = (0.72002374957793214, -1.4115697995091139) +description = Warren township, OH +station = ('kyng', 0.0027608446052380222) +zone = ('ohz023', 0.0018841803842856257) + +[fips3915582446] +centroid = (0.71852973028493239, -1.4095964429903463) +description = Weathersfield township, OH +station = ('kyng', 0.0019087288968444968) +zone = ('ohz023', 0.0025953508561827967) + +[fips3915588] +centroid = (0.72558967437571209, -1.4549812867275063) +description = Clay Center village, OH +station = ('ktdz', 0.0015586710301502367) +zone = ('ohz007', 0.0029071711132276639) + +[fips3915588000] +centroid = (0.71794640634233098, -1.4076813804685955) +description = Youngstown city, OH +station = ('kyng', 0.0020085924538169281) +zone = ('ohz033', 0.002641281652396096) + +[fips3915644] +centroid = (0.6958547617088725, -1.4717565362863423) +description = Clayton city, OH +station = ('kday', 0.0015506941981058113) +zone = ('ohz061', 0.0020614525848818843) + +[fips39157] +centroid = (0.70594101945614773, -1.4219399350592259) +description = Tuscarawas County, OH +station = ('kphd', 0.00079764880798667765) +zone = ('ohz039', 0.0001177706806382662) + +[fips3915702918] +centroid = (0.70608485203980464, -1.4245124456569103) +description = Auburn township, OH +station = ('kphd', 0.0026877215937560076) +zone = ('ohz039', 0.0019395559423522851) + +[fips3915709988] +centroid = (0.70508252690367679, -1.425475221632188) +description = Bucks township, OH +station = ('kphd', 0.0036175939637641988) +zone = ('ohz039', 0.0027591362528094341) + +[fips3915715574] +centroid = (0.7042226031812191, -1.421637958192046) +description = Clay township, OH +station = ('kphd', 0.0021125910915549668) +zone = ('ohz039', 0.0016277349495570877) + +[fips3915722456] +centroid = (0.70738775777971086, -1.4220987076612799) +description = Dover city, OH +station = ('kphd', 0.0013953293097664196) +zone = ('ohz039', 0.0015615070072055582) + +[fips3915722470] +centroid = (0.70743561470780059, -1.422467757531614) +description = Dover township, OH +station = ('kphd', 0.0016149182745520958) +zone = ('ohz039', 0.0016482420738640445) + +[fips3915726082] +centroid = (0.70749301858689861, -1.4203350000922619) +description = Fairfield township, OH +station = ('kphd', 0.0013141426476428091) +zone = ('ohz039', 0.0020849551043258642) + +[fips3915728462] +centroid = (0.7085873749344842, -1.4232093479307864) +description = Franklin township, OH +station = ('kphd', 0.0028614429781030361) +zone = ('ohz039', 0.0029112819927441668) + +[fips3915731066] +centroid = (0.70660483798385132, -1.4210048923657623) +description = Goshen township, OH +station = ('kphd', 0.00032849269254946195) +zone = ('ohz039', 0.0010769399008945205) + +[fips3915738836] +centroid = (0.70484921128927014, -1.4236441792606283) +description = Jefferson township, OH +station = ('kphd', 0.0024744894559606029) +zone = ('ohz039', 0.0015978270727389082) + +[fips3915742182] +centroid = (0.70892509614474508, -1.4217610911707739) +description = Lawrence township, OH +station = ('kphd', 0.0027127530064380793) +zone = ('ohz039', 0.0031012110941369101) + +[fips3915750232] +centroid = (0.70449922041436774, -1.4193939185595867) +description = Mill township, OH +station = ('kphd', 0.0021525868033450465) +zone = ('ohz039', 0.0023798455452977343) + +[fips3915755216] +centroid = (0.70662244835600385, -1.4213987782713524) +description = New Philadelphia city, OH +station = ('kphd', 0.00046566098300123744) +zone = ('ohz039', 0.00091095340357610758) + +[fips3915759304] +centroid = (0.70273029431088652, -1.4238368112501709) +description = Oxford township, OH +station = ('kphd', 0.0041574759616189423) +zone = ('ohz039', 0.0034042295015469007) + +[fips3915762092] +centroid = (0.70254195583130374, -1.4205102136958696) +description = Perry township, OH +station = ('kphd', 0.0037523851080012078) +zone = ('ohz039', 0.0034737915337112071) + +[fips3915769106] +centroid = (0.70363783061533847, -1.4200357808452999) +description = Rush township, OH +station = ('kphd', 0.0027367728997105272) +zone = ('ohz039', 0.0026470304962605794) + +[fips3915769974] +centroid = (0.70389685492962706, -1.4233368791392296) +description = Salem township, OH +station = ('kphd', 0.0029766428116427945) +zone = ('ohz039', 0.0021886794760930116) + +[fips3915770443] +centroid = (0.70893911113863861, -1.4200125505129559) +description = Sandy township, OH +station = ('kphd', 0.0027639834901234607) +zone = ('ohz032', 0.0033967687659735499) + +[fips3915775217] +centroid = (0.70720174058803331, -1.4245158665022444) +description = Sugar Creek township, OH +station = ('kphd', 0.0028372752463083095) +zone = ('ohz039', 0.0023639387423561331) + +[fips3915778568] +centroid = (0.70584122152951878, -1.4191204778256765) +description = Union township, OH +station = ('kphd', 0.0014868895077197466) +zone = ('ohz039', 0.0021809486195832734) + +[fips3915780920] +centroid = (0.70715597805504604, -1.4188243478114908) +description = Warren township, OH +station = ('kphd', 0.0018663133107081886) +zone = ('ohz039', 0.0027469353781924316) + +[fips3915781060] +centroid = (0.70514555074296636, -1.4210713894102633) +description = Warwick township, OH +station = ('kphd', 0.0011327613433375246) +zone = ('ohz039', 0.00097542128519102018) + +[fips3915781648] +centroid = (0.7025737033703976, -1.4220809402094945) +description = Washington township, OH +station = ('kphd', 0.0037952131998416055) +zone = ('ohz039', 0.0032557024890664155) + +[fips3915782292] +centroid = (0.70861379921935941, -1.4246004626110884) +description = Wayne township, OH +station = ('kphd', 0.0036051317139253738) +zone = ('ohz039', 0.0034215524285256885) + +[fips3915787094] +centroid = (0.70587525544993257, -1.4225254755699774) +description = York township, OH +station = ('kphd', 0.0012361583537398087) +zone = ('ohz039', 0.00041316638867106042) + +[fips39159] +centroid = (0.70329614750767555, -1.4550293705483985) +description = Union County, OH +station = ('kmrt', 0.0013440286632858428) +zone = ('ohz045', 8.641304792166295e-05) + +[fips3915901336] +centroid = (0.7024139708372551, -1.4571297346768337) +description = Allen township, OH +station = ('kmrt', 0.0018832836669660149) +zone = ('ohz045', 0.0018095248512775034) + +[fips3915915112] +centroid = (0.70539298607102152, -1.4543765999548601) +description = Claibourne township, OH +station = ('kmrt', 0.0034322705012184685) +zone = ('ohz045', 0.0021088341905054655) + +[fips3915920170] +centroid = (0.70083526816894859, -1.454534325359363) +description = Darby township, OH +station = ('kmrt', 0.0011461418871566336) +zone = ('ohz045', 0.0025613120056616847) + +[fips3915922484] +centroid = (0.70273938747628939, -1.4536049200793832) +description = Dover township, OH +station = ('kmrt', 0.0011531852859264391) +zone = ('ohz045', 0.0013027911985779715) + +[fips3915938108] +centroid = (0.70650676793318168, -1.4543043084172425) +description = Jackson township, OH +station = ('kdlz', 0.0042946088793167593) +zone = ('ohz036', 0.0028781559965545831) + +[fips3915939046] +centroid = (0.70069012658835272, -1.4527537753630633) +description = Jerome township, OH +station = ('kmrt', 0.0019813359509211303) +zone = ('ohz045', 0.0032173830471778019) + +[fips3915942490] +centroid = (0.70409557811825896, -1.4539134768378434) +description = Leesburg township, OH +station = ('kmrt', 0.0022140197985293982) +zone = ('ohz045', 0.001170863557654954) + +[fips3915943358] +centroid = (0.70394476421759422, -1.4570324500243272) +description = Liberty township, OH +station = ('kmrt', 0.0026409442323266693) +zone = ('ohz045', 0.0015805569378629393) + +[fips3915950288] +centroid = (0.70169417960044012, -1.4526818154380035) +description = Millcreek township, OH +station = ('kmrt', 0.0015899506560630957) +zone = ('ohz045', 0.0024895663168455996) + +[fips3915959864] +centroid = (0.70246753499199865, -1.4552647980112001) +description = Paris township, OH +station = ('kmrt', 0.00064156669451453431) +zone = ('ohz045', 0.00089950212803206677) + +[fips3915976194] +centroid = (0.70387399111642579, -1.4552544831153209) +description = Taylor township, OH +station = ('kmrt', 0.0019438893857089657) +zone = ('ohz045', 0.00052713495551791844) + +[fips3915978582] +centroid = (0.7005795774335315, -1.4562219016664086) +description = Union township, OH +station = ('kmrt', 0.0017980873820161306) +zone = ('ohz045', 0.0029067973709555888) + +[fips3915981662] +centroid = (0.70643306267887007, -1.456525833302351) +description = Washington township, OH +station = ('kmrt', 0.0046664107719348097) +zone = ('ohz045', 0.0032584817438099092) + +[fips3915987122] +centroid = (0.70524604680129621, -1.4563228340570515) +description = York township, OH +station = ('kmrt', 0.0034920928941225664) +zone = ('ohz045', 0.0021022177172336479) + +[fips3916000] +centroid = (0.72393007569657575, -1.4255759620366131) +description = Cleveland city, OH +station = ('kbkl', 0.00097780345727654407) +zone = ('ohz011', 0.00097820238788772548) + +[fips3916014] +centroid = (0.72450493479230516, -1.4235213604411654) +description = Cleveland Heights city, OH +station = ('kcgf', 0.0014111267062766766) +zone = ('ohz011', 0.0019750627700766701) + +[fips3916028] +centroid = (0.68355802701065405, -1.4789924444723079) +description = Cleves village, OH +station = ('kcvg', 0.0022393990551520882) +zone = ('ohz077', 0.0027232136403341615) + +[fips3916056] +centroid = (0.69458636112827821, -1.4630244445991043) +description = Clifton village, OH +station = ('ksgh', 0.00078345877585207042) +zone = ('ohz062', 0.0020335223318424878) + +[fips39161] +centroid = (0.71306334161439366, -1.4763002741011066) +description = Van Wert County, OH +station = ('kaoh', 0.0079963695555571989) +zone = ('ohz024', 4.7742353089198995e-06) + +[fips3916134034] +centroid = (0.71323176588721116, -1.478850793550216) +description = Harrison township, OH +station = ('kfwa', 0.0066054554213583463) +zone = ('ohz024', 0.0019322246249277013) + +[fips3916135756] +centroid = (0.71452173873736013, -1.4752215559036188) +description = Hoaglin township, OH +station = ('kdfi', 0.0069833966550095381) +zone = ('ohz024', 0.0016747839863899437) + +[fips3916138122] +centroid = (0.71469689998109021, -1.4736214205920981) +description = Jackson township, OH +station = ('kdfi', 0.0067058715855448708) +zone = ('ohz024', 0.0026062146365887847) + +[fips3916138990] +centroid = (0.71123074589979973, -1.4736031819014146) +description = Jennings township, OH +station = ('kaoh', 0.0055540010974056012) +zone = ('ohz024', 0.0027452483468994758) + +[fips3916143372] +centroid = (0.71160963942711519, -1.4771376656229209) +description = Liberty township, OH +station = ('kfwa', 0.0084632860114451161) +zone = ('ohz024', 0.001582215321608401) + +[fips3916163408] +centroid = (0.71313598221786167, -1.4772510073045455) +description = Pleasant township, OH +station = ('kaoh', 0.0086997542758262686) +zone = ('ohz024', 0.00071868224682663032) + +[fips3916166978] +centroid = (0.71310695739240104, -1.4751810642649728) +description = Ridge township, OH +station = ('kaoh', 0.0072213491641869437) +zone = ('ohz024', 0.00085202932057415709) + +[fips3916177756] +centroid = (0.71467435032715454, -1.4790270718046674) +description = Tully township, OH +station = ('kfwa', 0.0061034306833462329) +zone = ('ohz024', 0.0026138482457418342) + +[fips3916178596] +centroid = (0.71458479748323467, -1.4772397848374552) +description = Union township, OH +station = ('kdfi', 0.0073372943157163605) +zone = ('ohz024', 0.0016791178085949676) + +[fips3916181676] +centroid = (0.71318254760230493, -1.4730399466985036) +description = Washington township, OH +station = ('kaoh', 0.0057927830667590004) +zone = ('ohz024', 0.0024731274933437147) + +[fips3916182] +centroid = (0.71433076481060687, -1.424732130249859) +description = Clinton village, OH +station = ('kakr', 0.0028402695189270319) +zone = ('ohz021', 0.0036897108021620622) + +[fips3916185750] +centroid = (0.71153591671951089, -1.4789392293834145) +description = Willshire township, OH +station = ('kfwa', 0.007329653610641201) +zone = ('ohz024', 0.0025097412318722898) + +[fips3916187136] +centroid = (0.71162628986817922, -1.4749853255893617) +description = York township, OH +station = ('kaoh', 0.0066536488754070072) +zone = ('ohz024', 0.0017487362806953559) + +[fips3916266] +centroid = (0.7159216324237998, -1.4713080564817496) +description = Cloverdale village, OH +station = ('kdfi', 0.0057552265332399422) +zone = ('ohz016', 0.0022133260581186885) + +[fips39163] +centroid = (0.68507688233890951, -1.4396516061216345) +description = Vinton County, OH +station = ('kuni', 0.0035372678916632994) +zone = ('ohz084', 1.9253453568338263e-05) + +[fips3916308] +centroid = (0.72091124950257124, -1.4482516112910815) +description = Clyde city, OH +station = ('ktdz', 0.008026669344369795) +zone = ('ohz008', 0.0023563668920470872) + +[fips3916309526] +centroid = (0.6866804559490568, -1.4373889961859341) +description = Brown township, OH +station = ('kuni', 0.0028937303900623645) +zone = ('ohz084', 0.0023807372966440591) + +[fips3916316210] +centroid = (0.683887091387825, -1.4396275554845419) +description = Clinton township, OH +station = ('kuni', 0.0034735978052909391) +zone = ('ohz084', 0.0011721453746775965) + +[fips3916323100] +centroid = (0.68642816860568101, -1.4435954917257809) +description = Eagle township, OH +station = ('klhq', 0.0073654469886227161) +zone = ('ohz084', 0.0033522157485581972) + +[fips3916324892] +centroid = (0.68519465715683403, -1.4394398627767824) +description = Elk township, OH +station = ('kuni', 0.0034043471456724145) +zone = ('ohz084', 0.00020689917913254229) + +[fips3916334048] +centroid = (0.68479747257895773, -1.4433976935616526) +description = Harrison township, OH +station = ('kuni', 0.0063790427809222519) +zone = ('ohz084', 0.0029205433715089098) + +[fips3916338136] +centroid = (0.68633217549682146, -1.4413040140442526) +description = Jackson township, OH +station = ('kuni', 0.0051383489370953822) +zone = ('ohz084', 0.001809863132884444) + +[fips3916340880] +centroid = (0.68497308760829334, -1.4361955225901277) +description = Knox township, OH +station = ('kuni', 0.0010049510700266828) +zone = ('ohz084', 0.0026702270244752134) + +[fips3916346620] +centroid = (0.68502921739703748, -1.4375945087053563) +description = Madison township, OH +station = ('kuni', 0.0019889401732974617) +zone = ('ohz084', 0.0015856986823643551) + +[fips3916366768] +centroid = (0.68482560728649988, -1.441450080649352) +description = Richland township, OH +station = ('kuni', 0.0048778994111434342) +zone = ('ohz084', 0.0014197669716720404) + +[fips3916375854] +centroid = (0.68691621502441624, -1.4394143635164109) +description = Swan township, OH +station = ('kuni', 0.004163976790407792) +zone = ('ohz084', 0.0018653519081476143) + +[fips3916378] +centroid = (0.67180817378025537, -1.4422667551129451) +description = Coal Grove village, OH +station = ('khts', 0.0024786785690030485) +zone = ('ohz087', 0.0023013046652493475) + +[fips3916380192] +centroid = (0.68349786551133773, -1.4376740259060772) +description = Vinton township, OH +station = ('kuni', 0.0021070174292591344) +zone = ('ohz084', 0.0021823619302561376) + +[fips3916385204] +centroid = (0.68194312621366115, -1.437542567706817) +description = Wilkesville township, OH +station = ('kuni', 0.0030179242408204803) +zone = ('ohz084', 0.0035155617967056268) + +[fips3916434] +centroid = (0.68262893588993978, -1.4418306496927493) +description = Coalton village, OH +station = ('kuni', 0.0054312236266486624) +zone = ('ohz083', 0.0016099856040968274) + +[fips39165] +centroid = (0.68810743714548739, -1.4690419907941303) +description = Warren County, OH +station = ('kmgy', 0.003160523993407854) +zone = ('ohz071', 5.5055191028624967e-05) + +[fips3916515700] +centroid = (0.68990322386615688, -1.4696344777153048) +description = Clear Creek township, OH +station = ('kmgy', 0.0013087183046523298) +zone = ('ohz071', 0.0018294572678610997) + +[fips3916521] +centroid = (0.68146361445496828, -1.4720207965883867) +description = Coldstream CDP, OH +station = ('kluk', 0.0014088108885578134) +zone = ('kyz093', 0.0017974105275459526) + +[fips3916521238] +centroid = (0.6863260842977319, -1.4713277787022971) +description = Deerfield township, OH +station = ('khao', 0.0030081321571680613) +zone = ('ohz071', 0.0025639209711712085) + +[fips3916528490] +centroid = (0.69013441017887611, -1.4713851825813953) +description = Franklin township, OH +station = ('kmwo', 0.0013063400456853429) +zone = ('ohz071', 0.0027181975484526369) + +[fips3916532] +centroid = (0.70655623056418326, -1.4770972961573223) +description = Coldwater village, OH +station = ('kves', 0.0051150876060864518) +zone = ('ohz034', 0.0010006515671282163) + +[fips3916533068] +centroid = (0.6862166696069244, -1.4695073828391747) +description = Hamilton township, OH +station = ('kmwo', 0.0046153007280899886) +zone = ('ohz071', 0.0019679401263486915) + +[fips3916533474] +centroid = (0.68600417577049411, -1.46734821856824) +description = Harlan township, OH +station = ('kiln', 0.0045018095154616125) +zone = ('ohz071', 0.0024863704245912908) + +[fips3916542364] +centroid = (0.68805978965690795, -1.4699105189898001) +description = Lebanon city, OH +station = ('kmwo', 0.0030650738357704058) +zone = ('ohz071', 0.0007176336082581155) + +[fips3916545108] +centroid = (0.68551014287242451, -1.4704578891498106) +description = Loveland city, OH +station = ('kluk', 0.0038139720293010474) +zone = ('ohz071', 0.0028679533577451906) + +[fips3916548188] +centroid = (0.68681844167971962, -1.4713506076089133) +description = Mason city, OH +station = ('kmwo', 0.0033781434236071078) +zone = ('ohz071', 0.0022560116868705644) + +[fips3916548216] +centroid = (0.68923144663706437, -1.4664369996190663) +description = Massie township, OH +station = ('kiln', 0.0033475323252908631) +zone = ('ohz071', 0.002250087324819643) + +[fips3916569988] +centroid = (0.68687628189113059, -1.468164282166595) +description = Salem township, OH +station = ('kmgy', 0.004540355362026913) +zone = ('ohz071', 0.0014177691186413868) + +[fips3916577868] +centroid = (0.68885449042521851, -1.4711972106209554) +description = Turtlecreek township, OH +station = ('kmwo', 0.001793107471773338) +zone = ('ohz071', 0.0018484631120977803) + +[fips3916578610] +centroid = (0.68742750922878804, -1.4696598897092139) +description = Union township, OH +station = ('kmwo', 0.003624737705331801) +zone = ('ohz071', 0.00088423243294081231) + +[fips3916581690] +centroid = (0.68788729876693333, -1.4664883122990748) +description = Washington township, OH +station = ('kiln', 0.0032585237595125749) +zone = ('ohz071', 0.0019477402617926799) + +[fips3916582306] +centroid = (0.68991582514335636, -1.4673779764319865) +description = Wayne township, OH +station = ('kmgy', 0.0024672870474265699) +zone = ('ohz071', 0.0021647615408244515) + +[fips39167] +centroid = (0.68854432796384668, -1.4222802044501945) +description = Washington County, OH +station = ('kpkb', 0.0021202869715412909) +zone = ('ohz076', 0.0001020418832912458) + +[fips3916700] +centroid = (0.69060779583189447, -1.4802383477588439) +description = College Corner village, OH +station = ('khao', 0.0053132550615091175) +zone = ('inz059', 0.0018202133012396159) + +[fips3916700338] +centroid = (0.69018141189563231, -1.4229211068048193) +description = Adams township, OH +station = ('kpkb', 0.0038299754721595213) +zone = ('ohz076', 0.0016153442256143799) + +[fips3916703072] +centroid = (0.69120600743301552, -1.4211206076951695) +description = Aurelius township, OH +station = ('kpkb', 0.0047226328354939675) +zone = ('ohz076', 0.002752800978705974) + +[fips3916703898] +centroid = (0.68777177542374379, -1.4249209923282171) +description = Barlow township, OH +station = ('kpkb', 0.0028871023766126919) +zone = ('ohz076', 0.0021532861187351826) + +[fips3916705424] +centroid = (0.68557391720329253, -1.424054942500085) +description = Belpre city, OH +station = ('kpkb', 0.0021320279279559073) +zone = ('wvz009', 0.0015998575297427623) + +[fips3916705438] +centroid = (0.68562852855558731, -1.4253065355599828) +description = Belpre township, OH +station = ('kpkb', 0.0030180154832576051) +zone = ('wvz009', 0.0023792001461637228) + +[fips3916721098] +centroid = (0.68614436061601425, -1.4272853724126013) +description = Decatur township, OH +station = ('kpkb', 0.0044347668469903187) +zone = ('ohz075', 0.0036330346648163177) + +[fips3916722918] +centroid = (0.686442131239697, -1.4247087428378822) +description = Dunham township, OH +station = ('kpkb', 0.0024278606114395201) +zone = ('wvz009', 0.0025941452803890969) + +[fips3916726096] +centroid = (0.68744408985668193, -1.4265439390930619) +description = Fairfield township, OH +station = ('kpkb', 0.0039602989450649752) +zone = ('ohz076', 0.0034400656633633681) + +[fips3916726810] +centroid = (0.68897282374850377, -1.4206851829533822) +description = Fearing township, OH +station = ('kpkb', 0.002569424347827331) +zone = ('ohz076', 0.0013399469827309533) + +[fips3916731276] +centroid = (0.68974403238508253, -1.4154854282326705) +description = Grandview township, OH +station = ('kpkb', 0.0057134205036222423) +zone = ('wvz010', 0.0027124527561776688) + +[fips3916737268] +centroid = (0.68901781833662012, -1.417105687190467) +description = Independence township, OH +station = ('kpkb', 0.0042732856198637098) +zone = ('wvz010', 0.0019201031342262244) + +[fips3916742196] +centroid = (0.68920922859568634, -1.4191881442407766) +description = Lawrence township, OH +station = ('kpkb', 0.0032785822730285272) +zone = ('ohz076', 0.0025182107355939463) + +[fips3916743386] +centroid = (0.6903964539127706, -1.4190111329480393) +description = Liberty township, OH +station = ('kpkb', 0.0043725271073660858) +zone = ('ohz076', 0.0031336706444430916) + +[fips3916745360] +centroid = (0.69015308520187246, -1.4172173359027169) +description = Ludlow township, OH +station = ('kpkb', 0.0049675858868304494) +zone = ('wvz010', 0.0030492050738284869) + +[fips3916747628] +centroid = (0.68816702268615049, -1.4215464680326562) +description = Marietta city, OH +station = ('kpkb', 0.0016709550008538825) +zone = ('ohz076', 0.00077822315376255237) + +[fips3916747642] +centroid = (0.68772170192750415, -1.4204087751597436) +description = Marietta township, OH +station = ('kpkb', 0.0015194628735247084) +zone = ('ohz076', 0.0017579181011000899) + +[fips3916753452] +centroid = (0.68910222245924668, -1.4219579992169842) +description = Muskingum township, OH +station = ('kpkb', 0.0026231765412918712) +zone = ('ohz076', 0.00056989356031473127) + +[fips3916755356] +centroid = (0.68771643103316316, -1.418862151643089) +description = Newport township, OH +station = ('kpkb', 0.0024235353315736567) +zone = ('wvz010', 0.001896426123647344) + +[fips3916759626] +centroid = (0.68846030781365564, -1.4264551192874275) +description = Palmer township, OH +station = ('kpkb', 0.004255343120992165) +zone = ('ohz076', 0.0031654093610439227) + +[fips3916770002] +centroid = (0.6903727523415284, -1.4208850231527355) +description = Salem township, OH +station = ('kpkb', 0.0039125732784330153) +zone = ('ohz076', 0.0020862528119736006) + +[fips3916780934] +centroid = (0.68776020389080317, -1.4230630893394693) +description = Warren township, OH +station = ('kpkb', 0.0017114012248527917) +zone = ('ohz076', 0.0010205417697785595) + +[fips3916781774] +centroid = (0.69031770465692044, -1.4250399539700331) +description = Waterford township, OH +station = ('kpkb', 0.0046671289978146421) +zone = ('ohz076', 0.0026715631818613338) + +[fips3916781844] +centroid = (0.68891875344827691, -1.4243460459660251) +description = Watertown township, OH +station = ('kpkb', 0.0032354184300374404) +zone = ('ohz076', 0.0015601942530664933) + +[fips3916782838] +centroid = (0.68839585280437954, -1.4277222806842531) +description = Wesley township, OH +station = ('kpkb', 0.0051198557231654567) +zone = ('ohz067', 0.0031815405762016294) + +[fips3916784] +centroid = (0.72001996221345532, -1.4395888091751476) +description = Collins CDP, OH +station = ('klpr', 0.0042630475806955427) +zone = ('ohz019', 0.0024225601537559184) + +[fips39169] +centroid = (0.71261201692312048, -1.4292011505193454) +description = Wayne County, OH +station = ('kbjj', 0.0006478788208803348) +zone = ('ohz031', 1.9742042287544219e-05) + +[fips3916904276] +centroid = (0.71307182391455837, -1.4259390777874907) +description = Baughman township, OH +station = ('kbjj', 0.0024232827626243097) +zone = ('ohz031', 0.002527073574893643) + +[fips3916911276] +centroid = (0.71464820529495965, -1.4300705164730565) +description = Canaan township, OH +station = ('kbjj', 0.0015601955894377682) +zone = ('ohz031', 0.0021478636547173366) + +[fips3916914044] +centroid = (0.71303232711358577, -1.4321835516918608) +description = Chester township, OH +station = ('kbjj', 0.0023175772139465652) +zone = ('ohz031', 0.0022832018416220384) + +[fips3916914240] +centroid = (0.7146091448263, -1.426006290416985) +description = Chippewa township, OH +station = ('kbjj', 0.0027226971785237735) +zone = ('ohz031', 0.0031537773470615188) + +[fips3916916224] +centroid = (0.71042012772871099, -1.4321764656550977) +description = Clinton township, OH +station = ('kbjj', 0.0036551916343344907) +zone = ('ohz038', 0.0030173856317821479) + +[fips3916918322] +centroid = (0.71462516694883338, -1.4323632507916464) +description = Congress township, OH +station = ('kbjj', 0.0027976685951541956) +zone = ('ohz031', 0.003122757750700434) + +[fips3916924136] +centroid = (0.71156890344237356, -1.4279928241716047) +description = East Union township, OH +station = ('kbjj', 0.0018968964335334053) +zone = ('ohz031', 0.001387149846479249) + +[fips3916928504] +centroid = (0.71064150529103387, -1.4298805897438545) +description = Franklin township, OH +station = ('kbjj', 0.0026767787680184105) +zone = ('ohz031', 0.0020200672871295224) + +[fips3916931878] +centroid = (0.71306472042450275, -1.4280049193033213) +description = Green township, OH +station = ('kbjj', 0.00087532635962955622) +zone = ('ohz031', 0.0010308962833010347) + +[fips3916950666] +centroid = (0.71452449635757842, -1.4280919937797032) +description = Milton township, OH +station = ('kbjj', 0.0014914044613831849) +zone = ('ohz031', 0.0021062837192967789) + +[fips3916957260] +centroid = (0.71537529200804806, -1.4250377723084682) +description = Norton city, OH +station = ('kakr', 0.00252403150745269) +zone = ('ohz021', 0.0028542602213164009) + +[fips3916959556] +centroid = (0.7102927535999003, -1.4260671151414168) +description = Paint township, OH +station = ('kbjj', 0.0037661738990974951) +zone = ('ohz031', 0.0033199372749580448) + +[fips3916962995] +centroid = (0.71167857993256889, -1.4320885185140897) +description = Plain township, OH +station = ('kbjj', 0.0027375066025839179) +zone = ('ohz031', 0.0023579745742271512) + +[fips3916970198] +centroid = (0.71038508151733082, -1.4280445382773415) +description = Salt Creek township, OH +station = ('kbjj', 0.0029888465888421581) +zone = ('ohz031', 0.0023861000426476302) + +[fips3916975231] +centroid = (0.7115867058007439, -1.4261394415856194) +description = Sugar Creek township, OH +station = ('kbjj', 0.0028156390148540195) +zone = ('ohz031', 0.0025424180873218887) + +[fips3916982320] +centroid = (0.71324223786272312, -1.4301225272847657) +description = Wayne township, OH +station = ('kbjj', 0.00074790155421855216) +zone = ('ohz031', 0.00093794218707248314) + +[fips3916986548] +centroid = (0.71237727013872731, -1.4300020995663782) +description = Wooster city, OH +station = ('kbjj', 0.0010986444058459211) +zone = ('ohz031', 0.00063160104844569708) + +[fips3916986562] +centroid = (0.71157829331374922, -1.4301236792020722) +description = Wooster township, OH +station = ('kbjj', 0.0018390918200892582) +zone = ('ohz031', 0.0012283330848291223) + +[fips3917036] +centroid = (0.71359591138234735, -1.4079923457814234) +description = Columbiana city, OH +station = ('kbvi', 0.0041528801523336087) +zone = ('ohz041', 0.0024782007686308181) + +[fips39171] +centroid = (0.72544537055315717, -1.4762749319203676) +description = Williams County, OH +station = ('kdfi', 0.0044993669925492618) +zone = ('ohz001', 9.5774114802318878e-05) + +[fips3917108140] +centroid = (0.7254104290615323, -1.473523263274966) +description = Brady township, OH +station = ('kdfi', 0.0040086211935049139) +zone = ('ohz001', 0.0021100554516311895) + +[fips3917108630] +centroid = (0.72710495177900103, -1.4771661493963135) +description = Bridgewater township, OH +station = ('kjym', 0.0046066643298574971) +zone = ('ohz001', 0.0018465670109765065) + +[fips3917109792] +centroid = (0.72381385422168554, -1.4756537343329978) +description = Bryan city, OH +station = ('kdfi', 0.0028452868756380992) +zone = ('ohz001', 0.0016337778835804526) + +[fips3917113008] +centroid = (0.723758387658057, -1.4771658352370483) +description = Center township, OH +station = ('kdfi', 0.0035418823308430015) +zone = ('ohz001', 0.0017199458406380735) + +[fips3917127530] +centroid = (0.72544367758378281, -1.4789989196438329) +description = Florence township, OH +station = ('kdfi', 0.0056978254917966521) +zone = ('ohz001', 0.0019891366240730752) + +[fips3917138864] +centroid = (0.72540023633870077, -1.4750306866966207) +description = Jefferson township, OH +station = ('kdfi', 0.0041312171953842344) +zone = ('ohz001', 0.00098229843385695226) + +[fips3917146634] +centroid = (0.7270718254297982, -1.4752206308791154) +description = Madison township, OH +station = ('kjym', 0.0046645539776265657) +zone = ('ohz001', 0.0019026680547083498) + +[fips3917150302] +centroid = (0.72707931289228922, -1.4736016634649656) +description = Mill Creek township, OH +station = ('kjym', 0.0050091459994688258) +zone = ('ohz001', 0.0026724416108524014) + +[fips3917151772] +centroid = (0.72577960110491413, -1.4764360607169116) +description = Montpelier village, OH +station = ('kdfi', 0.004852704361903503) +zone = ('ohz001', 0.00042136975135596529) + +[fips3917157162] +centroid = (0.72706559460436859, -1.4790930801569777) +description = Northwest township, OH +station = ('kjym', 0.0050496504588914536) +zone = ('ohz001', 0.0026691631458497498) + +[fips3917162834] +centroid = (0.72740190209793543, -1.4757248215934315) +description = Pioneer village, OH +station = ('kjym', 0.0042859607114350247) +zone = ('ohz001', 0.0020895074846320719) + +[fips3917164920] +centroid = (0.72375798623232912, -1.4750461852203784) +description = Pulaski township, OH +station = ('kdfi', 0.0025807355056140196) +zone = ('ohz001', 0.0018766603046266391) + +[fips3917169638] +centroid = (0.72383635151574366, -1.4789786738245096) +description = St. Joseph township, OH +station = ('kdfi', 0.004686112562378688) +zone = ('ohz001', 0.002495959723243429) + +[fips3917174131] +centroid = (0.72373568092448859, -1.4731601300707959) +description = Springfield township, OH +station = ('kdfi', 0.0023604911010807572) +zone = ('ohz004', 0.0027313247087922374) + +[fips3917175819] +centroid = (0.72539868299566646, -1.4771820667990916) +description = Superior township, OH +station = ('kdfi', 0.0047976745081915453) +zone = ('ohz001', 0.00062908207818185291) + +[fips39173] +centroid = (0.72187137257738587, -1.4594911302481968) +description = Wood County, OH +station = ('ktdz', 0.0040384679880229903) +zone = ('ohz006', 2.6802355408314868e-05) + +[fips3917307020] +centroid = (0.71908233643269892, -1.4590854110102782) +description = Bloom township, OH +station = ('kfdy', 0.0033261100629234561) +zone = ('ohz006', 0.0028324249708361732) + +[fips3917307972] +centroid = (0.72217670047672966, -1.4599606587235685) +description = Bowling Green city, OH +station = ('ktdz', 0.0039505479786679475) +zone = ('ohz006', 0.0004460936649545703) + +[fips3917313015] +centroid = (0.72221007117202796, -1.4590238183409754) +description = Center township, OH +station = ('ktdz', 0.0035816503783949968) +zone = ('ohz006', 0.00047266014818338393) + +[fips3917328014] +centroid = (0.71856739449019047, -1.4561919867230295) +description = Fostoria city, OH +station = ('kfdy', 0.0040789479501487525) +zone = ('ohz006', 0.0041547644185452792) + +[fips3917328756] +centroid = (0.72221638926392007, -1.4567727799382157) +description = Freedom township, OH +station = ('ktdz', 0.0032658537177357632) +zone = ('ohz006', 0.0020688148013817253) + +[fips3917331220] +centroid = (0.72253075796878929, -1.4633977356195207) +description = Grand Rapids township, OH +station = ('ktol', 0.0032919759307411815) +zone = ('ohz005', 0.0031116388935493477) + +[fips3917334986] +centroid = (0.71915822334857571, -1.4611425607864339) +description = Henry township, OH +station = ('kfdy', 0.0033491984469491624) +zone = ('ohz006', 0.0030058681429933412) + +[fips3917338164] +centroid = (0.71940696767356993, -1.4630335726710921) +description = Jackson township, OH +station = ('kfdy', 0.0041034497480144988) +zone = ('ohz006', 0.003642384024541351) + +[fips3917341328] +centroid = (0.72521236909801601, -1.4567907219229264) +description = Lake township, OH +station = ('ktdz', 0.00033073516949784786) +zone = ('ohz003', 0.0027601491794153237) + +[fips3917343400] +centroid = (0.72087314896500021, -1.4608009823985262) +description = Liberty township, OH +station = ('kfdy', 0.0050139106905952458) +zone = ('ohz006', 0.0014174672763793683) + +[fips3917349812] +centroid = (0.72372306219399674, -1.4602775407025603) +description = Middleton township, OH +station = ('ktol', 0.0026759330333007152) +zone = ('ohz006', 0.0019168558371755969) + +[fips3917350680] +centroid = (0.72079940880410343, -1.4630215648058384) +description = Milton township, OH +station = ('ktol', 0.0049773972222006682) +zone = ('ohz005', 0.0032469927830066385) + +[fips3917351744] +centroid = (0.7208020791578591, -1.4569469812508571) +description = Montgomery township, OH +station = ('ktdz', 0.0046738683614259554) +zone = ('ohz006', 0.0022059986853306545) + +[fips3917357190] +centroid = (0.72623261876556178, -1.4570480532678403) +description = Northwood city, OH +station = ('ktdz', 0.00075747090425026798) +zone = ('ohz003', 0.0023017202771262401) + +[fips3917362106] +centroid = (0.71926498513892012, -1.4569820972754075) +description = Perry township, OH +station = ('kfdy', 0.0041929035259237225) +zone = ('ohz006', 0.0032407140309593046) + +[fips3917362148] +centroid = (0.72497983888177286, -1.4597954458565745) +description = Perrysburg city, OH +station = ('ktol', 0.0022310994650320626) +zone = ('ohz003', 0.0014464641081871339) + +[fips3917362162] +centroid = (0.72485904464424233, -1.4587304459470076) +description = Perrysburg township, OH +station = ('ktdz', 0.001394380351395705) +zone = ('ohz003', 0.001862968373783564) + +[fips3917363002] +centroid = (0.72220539368963244, -1.4611194875337226) +description = Plain township, OH +station = ('ktol', 0.0037263143826866169) +zone = ('ohz006', 0.0012560701834415603) + +[fips3917364122] +centroid = (0.72091285520548309, -1.4589156253806443) +description = Portage township, OH +station = ('ktdz', 0.0047699296807369555) +zone = ('ohz006', 0.0010772985922452008) + +[fips3917368686] +centroid = (0.72602014238242396, -1.4583314462267092) +description = Rossford city, OH +station = ('ktdz', 0.0010967357928928475) +zone = ('ohz003', 0.0013904314160130059) + +[fips3917377630] +centroid = (0.7239137394147771, -1.4566565759166179) +description = Troy township, OH +station = ('ktdz', 0.0015902613924143468) +zone = ('ohz006', 0.0029325190064258501) + +[fips3917381704] +centroid = (0.72295677538590863, -1.4618879385500831) +description = Washington township, OH +station = ('ktol', 0.0028575235720662384) +zone = ('ohz006', 0.0020831476693401203) + +[fips3917382544] +centroid = (0.72313467679656429, -1.4580186308648744) +description = Webster township, OH +station = ('ktdz', 0.0024483746704591202) +zone = ('ohz006', 0.0016610445223150824) + +[fips3917383986] +centroid = (0.72193860266017273, -1.4627989306064542) +description = Weston township, OH +station = ('ktol', 0.0038308042670830767) +zone = ('ohz006', 0.0024788037549442303) + +[fips39175] +centroid = (0.71279459581617166, -1.4540891616803491) +description = Wyandot County, OH +station = ('kmnn', 0.005083315462709237) +zone = ('ohz027', 0.00012245801203259997) + +[fips3917502190] +centroid = (0.71129389191213677, -1.4513747034546001) +description = Antrim township, OH +station = ('kmnn', 0.0026845087088833838) +zone = ('ohz027', 0.0024764263803927376) + +[fips3917519190] +centroid = (0.71295256556676967, -1.4531168562073558) +description = Crane township, OH +station = ('kmnn', 0.004778564170418346) +zone = ('ohz027', 0.00063088017043566678) + +[fips3917519246] +centroid = (0.71464359762573437, -1.45493664120524) +description = Crawford township, OH +station = ('kfdy', 0.0042025493600589608) +zone = ('ohz027', 0.0019609786837753444) + +[fips3917524360] +centroid = (0.71326017984743373, -1.4514328054653989) +description = Eden township, OH +station = ('kmnn', 0.0045402439148349138) +zone = ('ohz027', 0.0019406861322944381) + +[fips3917538178] +centroid = (0.71154246170420588, -1.4566596302428088) +description = Jackson township, OH +station = ('kfdy', 0.0051167383107865241) +zone = ('ohz027', 0.0024329028675515872) + +[fips3917548006] +centroid = (0.7105716572143691, -1.4551297793402658) +description = Marseilles township, OH +station = ('kmnn', 0.0043861071593719178) +zone = ('ohz027', 0.0024365778786879779) + +[fips3917550106] +centroid = (0.71177380509655774, -1.4551162530385628) +description = Mifflin township, OH +station = ('kmnn', 0.0049613869065979459) +zone = ('ohz027', 0.0013865921374058971) + +[fips3917562904] +centroid = (0.71117009570829282, -1.4529721335057804) +description = Pitt township, OH +station = ('kmnn', 0.0033185667577797558) +zone = ('ohz027', 0.0018172195305314644) + +[fips3917566782] +centroid = (0.71316333152724043, -1.4567773177942709) +description = Richland township, OH +station = ('kfdy', 0.0037781641445863044) +zone = ('ohz027', 0.0021741697135625941) + +[fips3917566992] +centroid = (0.71460460697024497, -1.4563810931474832) +description = Ridge township, OH +station = ('kfdy', 0.0031915432000654545) +zone = ('ohz027', 0.0025592816296228097) + +[fips3917570016] +centroid = (0.71329288731761598, -1.4547691419569262) +description = Salem township, OH +station = ('kfdy', 0.0048853833461496533) +zone = ('ohz027', 0.00077928872632501429) + +[fips3917575987] +centroid = (0.7146204545598529, -1.4512989038051858) +description = Sycamore township, OH +station = ('kmnn', 0.0058392419677922858) +zone = ('ohz027', 0.0026765996555946996) + +[fips3917578141] +centroid = (0.71479064161521499, -1.4531108697280213) +description = Tymochtee township, OH +station = ('kmnn', 0.0064107784645835416) +zone = ('ohz027', 0.0020533166126708862) + +[fips3918000] +centroid = (0.69786639329813616, -1.4483622477123652) +description = Columbus city, OH +station = ('kcmh', 0.0013856585750844095) +zone = ('ohz055', 0.00041906085101059198) + +[fips3918014] +centroid = (0.71416153768633361, -1.4671272947915226) +description = Columbus Grove village, OH +station = ('kaoh', 0.0038556650491067138) +zone = ('ohz016', 0.0020398195867794545) + +[fips3918070] +centroid = (0.69406904553798698, -1.4495873466742177) +description = Commercial Point village, OH +station = ('klck', 0.0018485571910389085) +zone = ('ohz064', 0.0022247508576299026) + +[fips3918244] +centroid = (0.6843544905615091, -1.4723088457281357) +description = Concorde Hills CDP, OH +station = ('kluk', 0.0020923885214972466) +zone = ('ohz077', 0.002523101102247361) + +[fips3918266] +centroid = (0.70136050755404378, -1.4292813483984748) +description = Conesville village, OH +station = ('kzzv', 0.0041029374226843711) +zone = ('ohz048', 0.0020695188602534755) + +[fips3918308] +centroid = (0.7142791554246255, -1.4321448926489293) +description = Congress village, OH +station = ('kbjj', 0.0024947252493247858) +zone = ('ohz031', 0.0027772785912183323) + +[fips3918350] +centroid = (0.73176941401812601, -1.4061835389045341) +description = Conneaut city, OH +station = ('khzy', 0.0030399119352964533) +zone = ('ohz089', 0.0029115886646758908) + +[fips3918504] +centroid = (0.71732152611023947, -1.470789449347812) +description = Continental village, OH +station = ('kdfi', 0.0046101185087243845) +zone = ('ohz016', 0.002266836331072481) + +[fips3918546] +centroid = (0.7141424263310242, -1.4783974093704255) +description = Convoy village, OH +station = ('kfwa', 0.0066698825170872647) +zone = ('ohz024', 0.0019154713084770425) + +[fips3918588] +centroid = (0.68452623095990528, -1.4276501462262683) +description = Coolville village, OH +station = ('kpkb', 0.0051017557691531955) +zone = ('ohz075', 0.0038769224386242308) + +[fips3918770] +centroid = (0.69117954824155536, -1.4326983191014442) +description = Corning village, OH +station = ('kzzv', 0.0065795354096600056) +zone = ('ohz066', 0.0030933604611669556) + +[fips3918812] +centroid = (0.72137587360274458, -1.4088156350428815) +description = Cortland city, OH +station = ('kyng', 0.001585036987504533) +zone = ('ohz023', 0.0005957000544071048) + +[fips3918840] +centroid = (0.68983876885688078, -1.4672588053506601) +description = Corwin village, OH +station = ('kmgy', 0.0025855299128870056) +zone = ('ohz071', 0.0021578012531668586) + +[fips3918868] +centroid = (0.70273352317000271, -1.4285523418232091) +description = Coshocton city, OH +station = ('kzzv', 0.005514992415109353) +zone = ('ohz048', 0.0011430305534591621) + +[fips3919008] +centroid = (0.6828889026820244, -1.4771801992967919) +description = Covedale CDP, OH +station = ('kcvg', 0.0014000828186374514) +zone = ('ohz077', 0.0017446665103161673) + +[fips3919050] +centroid = (0.70017434688780344, -1.4721971621093006) +description = Covington village, OH +station = ('kves', 0.002796037053415642) +zone = ('ohz051', 0.0019692905527108708) + +[fips3919106] +centroid = (0.71760381566345699, -1.4134048037780755) +description = Craig Beach village, OH +station = ('kpov', 0.0039625800209294321) +zone = ('ohz022', 0.0029560716050589307) + +[fips3919330] +centroid = (0.71180876404147519, -1.4441812416760429) +description = Crestline city, OH +station = ('kmfd', 0.0030776869302751651) +zone = ('ohz029', 0.0027664550687755492) + +[fips3919344] +centroid = (0.71517196115019066, -1.4294250064492062) +description = Creston village, OH +station = ('kbjj', 0.0019266821804196073) +zone = ('ohz020', 0.0024655429657599033) + +[fips3919400] +centroid = (0.70949794811183464, -1.4686247872897336) +description = Cridersville village, OH +station = ('kaoh', 0.001911853985231292) +zone = ('ohz035', 0.0018687060552089283) + +[fips3919456] +centroid = (0.694102678032673, -1.4328292362486361) +description = Crooksville village, OH +station = ('kzzv', 0.004097866650389104) +zone = ('ohz066', 0.0019733596874269665) + +[fips3919554] +centroid = (0.67351646714552238, -1.4363579778369036) +description = Crown City village, OH +station = ('khts', 0.0052030743658752722) +zone = ('wvz006', 0.0030515560728299547) + +[fips3919596] +centroid = (0.69619387918253495, -1.4665037759162476) +description = Crystal Lakes CDP, OH +station = ('kffo', 0.0010295038558074765) +zone = ('ohz053', 0.0032627928977755558) + +[fips3919615] +centroid = (0.72340035081530296, -1.4458644197533734) +description = Crystal Rock CDP, OH +station = ('cwnb', 0.0083209145459940525) +zone = ('ohz009', 0.0032821585435701935) + +[fips3919694] +centroid = (0.69557097117249833, -1.4252135793240215) +description = Cumberland village, OH +station = ('kzzv', 0.0036449659204600224) +zone = ('ohz068', 0.0031215832070681806) + +[fips3919736] +centroid = (0.72633472052680337, -1.4551555404000251) +description = Curtice CDP, OH +station = ('ktdz', 0.0016629766664869507) +zone = ('ohz003', 0.0037105818844768049) + +[fips3919750] +centroid = (0.7205521305556809, -1.4633505419165469) +description = Custar village, OH +station = ('kfdy', 0.0052236914252512465) +zone = ('ohz005', 0.0030650647557860372) + +[fips3919778] +centroid = (0.71877686890701487, -1.4233685045052757) +description = Cuyahoga Falls city, OH +station = ('kakr', 0.0028463710104456546) +zone = ('ohz021', 0.001031762571478206) + +[fips3919806] +centroid = (0.72319724685024833, -1.425125544916551) +description = Cuyahoga Heights village, OH +station = ('kbkl', 0.0017046482538018333) +zone = ('ohz011', 0.00021700723576001906) + +[fips3919820] +centroid = (0.71979371518251933, -1.4598550313972376) +description = Cygnet village, OH +station = ('kfdy', 0.0039296207770499131) +zone = ('ohz006', 0.0021212859782575033) + +[fips3919848] +centroid = (0.68370891072448881, -1.45470461713448) +description = Cynthiana CDP, OH +station = ('kiln', 0.0074190155369521123) +zone = ('ohz080', 0.0034212360515524279) + +[fips3919974] +centroid = (0.71208056416588816, -1.4259999548718001) +description = Dalton village, OH +station = ('kbjj', 0.0026473047212487921) +zone = ('ohz031', 0.0024918560334940072) + +[fips3920030] +centroid = (0.71394651312248791, -1.412832492863054) +description = Damascus CDP, OH +station = ('kpov', 0.0067575876826982632) +zone = ('ohz033', 0.0029742754346280408) + +[fips3920114] +centroid = (0.70593428248523504, -1.4357235681070961) +description = Danville village, OH +station = ('k4i3', 0.0040046773510890987) +zone = ('ohz047', 0.002295278526208676) + +[fips3920198] +centroid = (0.69561449968404299, -1.4516760520032492) +description = Darbydale CDP, OH +station = ('ktzr', 0.00093448879858651823) +zone = ('ohz055', 0.0029769037613119574) + +[fips3920212] +centroid = (0.69281808079662011, -1.4506017669420619) +description = Darbyville village, OH +station = ('klck', 0.0032098410011605571) +zone = ('ohz064', 0.0015182681015096886) + +[fips3920268] +centroid = (0.68936093261426978, -1.4777534003297321) +description = Darrtown CDP, OH +station = ('khao', 0.0030709681559983868) +zone = ('ohz070', 0.0016260204029235703) + +[fips3920366] +centroid = (0.68374142620845346, -1.4700465848582855) +description = Day Heights CDP, OH +station = ('kluk', 0.0028803578986734244) +zone = ('ohz078', 0.002453935598328091) + +[fips3921000] +centroid = (0.69424649316303733, -1.4695608073675781) +description = Dayton city, OH +station = ('kday', 0.0021520213791526442) +zone = ('ohz061', 0.0012841489310932738) + +[fips3921266] +centroid = (0.68423371377727105, -1.4730142729052069) +description = Deer Park city, OH +station = ('kluk', 0.0018284698819382304) +zone = ('ohz077', 0.0019678689027169596) + +[fips3921294] +centroid = (0.70351187020322203, -1.4169982796282994) +description = Deersville village, OH +station = ('kphd', 0.0041088398029655547) +zone = ('ohz049', 0.0013145596144317848) + +[fips3921308] +centroid = (0.72048949068882684, -1.4725104487100336) +description = Defiance city, OH +station = ('kdfi', 0.0012464261615871884) +zone = ('ohz004', 0.0017664565242803461) + +[fips3921378] +centroid = (0.70359018312675903, -1.4646220666365024) +description = De Graff village, OH +station = ('kedj', 0.0016609463125792474) +zone = ('ohz044', 0.0024030437479863036) + +[fips3921434] +centroid = (0.70313309884895414, -1.4499298326333365) +description = Delaware city, OH +station = ('kdlz', 0.00060395946819803421) +zone = ('ohz046', 0.00093809388384476276) + +[fips3921518] +centroid = (0.68219841552335048, -1.4768561963744518) +description = Delhi Hills CDP, OH +station = ('kcvg', 0.00092770443231679608) +zone = ('ohz077', 0.0021459155315215078) + +[fips3921560] +centroid = (0.70782224004370242, -1.4171969679103462) +description = Dellroy village, OH +station = ('kphd', 0.0032711478863293895) +zone = ('ohz040', 0.0015154248485469586) + +[fips3921602] +centroid = (0.71292635072140464, -1.4719493602621023) +description = Delphos city, OH +station = ('kaoh', 0.0049508924582836551) +zone = ('ohz025', 0.0033259680765516915) + +[fips3921610] +centroid = (0.68222293739934092, -1.4764606174994872) +description = Delshire CDP, OH +station = ('kcvg', 0.0011813003440671163) +zone = ('ohz077', 0.0019959382168639253) + +[fips3921616] +centroid = (0.72562568051818077, -1.466159125748856) +description = Delta village, OH +station = ('ktol', 0.0026765822417792896) +zone = ('ohz002', 0.0017007143373883389) + +[fips3921714] +centroid = (0.7050642882129935, -1.4194304133942457) +description = Dennison village, OH +station = ('kphd', 0.0016961416860608518) +zone = ('ohz039', 0.0020904116432354297) + +[fips3921742] +centroid = (0.68403277402048901, -1.4775835274336355) +description = Dent CDP, OH +station = ('kcvg', 0.0024837049276219864) +zone = ('ohz077', 0.0015795389037802946) + +[fips3921784] +centroid = (0.694013055375583, -1.4522327422214654) +description = Derby CDP, OH +station = ('ktzr', 0.0025635270522989932) +zone = ('ohz064', 0.0032467294465521788) + +[fips3921812] +centroid = (0.71921245072843509, -1.4644346880880084) +description = Deshler village, OH +station = ('kfdy', 0.0045859846283606608) +zone = ('ohz005', 0.0030613940545552521) + +[fips3921868] +centroid = (0.68895617330743975, -1.4219229180990187) +description = Devola CDP, OH +station = ('kpkb', 0.0024750117435452311) +zone = ('ohz076', 0.00047359498085668687) + +[fips3921910] +centroid = (0.69218613198105794, -1.4219978799903918) +description = Dexter City village, OH +station = ('kpkb', 0.0056995011529468193) +zone = ('ohz068', 0.0018788540329631623) + +[fips3922008] +centroid = (0.68446976955860339, -1.4731109292391824) +description = Dillonvale CDP, OH +station = ('kluk', 0.0020543272482096962) +zone = ('ohz077', 0.0019255072256076896) + +[fips3922022] +centroid = (0.70159698221439648, -1.4097973827471286) +description = Dillonvale village, OH +station = ('khlg', 0.0017627536325106597) +zone = ('wvz003', 0.0027402023013108059) + +[fips3922260] +centroid = (0.71182852116860773, -1.4608219438028425) +description = Dola CDP, OH +station = ('kfdy', 0.0040696803058967385) +zone = ('ohz026', 0.0022141001355469843) + +[fips3922288] +centroid = (0.69666448976204276, -1.4650852072068117) +description = Donnelsville village, OH +station = ('ksgh', 0.0019115947386114307) +zone = ('ohz053', 0.0021378411848119853) + +[fips3922456] +centroid = (0.70738775777971086, -1.4220987076612799) +description = Dover city, OH +station = ('kphd', 0.0013953293097664196) +zone = ('ohz039', 0.0015615070072055582) + +[fips3922568] +centroid = (0.71506149926183193, -1.4258587751886063) +description = Doylestown village, OH +station = ('kakr', 0.0032127612998499029) +zone = ('ohz021', 0.0034698189878327084) + +[fips3922610] +centroid = (0.70025501600583051, -1.4313762670996435) +description = Dresden village, OH +station = ('kzzv', 0.0033479289124282163) +zone = ('ohz057', 0.0028721219948911764) + +[fips3922624] +centroid = (0.693561765590895, -1.471190979795526) +description = Drexel CDP, OH +station = ('kmgy', 0.0025412693402827287) +zone = ('ohz061', 0.00028701652167006816) + +[fips3922660] +centroid = (0.68519476187658923, -1.4771408072155745) +description = Dry Ridge CDP, OH +station = ('khao', 0.002460480372637941) +zone = ('ohz077', 0.0016577204919292579) + +[fips3922674] +centroid = (0.68250395286220455, -1.4718553742818827) +description = Dry Run CDP, OH +station = ('kluk', 0.0011616846877251169) +zone = ('kyz093', 0.0028356313038613739) + +[fips3922694] +centroid = (0.7000743220683715, -1.4511420336120164) +description = Dublin city, OH +station = ('kosu', 0.00094929296857867908) +zone = ('ohz055', 0.0030612704902321856) + +[fips3922820] +centroid = (0.69608076439371325, -1.4296630169993008) +description = Duncan Falls CDP, OH +station = ('kzzv', 0.0011923702156415013) +zone = ('ohz057', 0.0015044221098439285) + +[fips3922848] +centroid = (0.70837355464782237, -1.4243097954774613) +description = Dundee CDP, OH +station = ('kphd', 0.0032816201192213913) +zone = ('ohz039', 0.003098014657345292) + +[fips3922946] +centroid = (0.7118872514979373, -1.4598381889699559) +description = Dunkirk village, OH +station = ('kfdy', 0.0040012796273322217) +zone = ('ohz026', 0.002221384013040209) + +[fips3922960] +centroid = (0.68582531442874972, -1.477203726335109) +description = Dunlap CDP, OH +station = ('khao', 0.002057141938563798) +zone = ('ohz077', 0.0021592337925049649) + +[fips3922974] +centroid = (0.71654342342311517, -1.4713263998921882) +description = Dupont village, OH +station = ('kdfi', 0.0051616968353298247) +zone = ('ohz016', 0.0022985126033673829) + +[fips3923324] +centroid = (0.71190205188999423, -1.4186675474314916) +description = East Canton village, OH +station = ('kcak', 0.0031286099187387562) +zone = ('ohz032', 0.0011696514889905842) + +[fips3923380] +centroid = (0.72484670516643068, -1.4238137030908744) +description = East Cleveland city, OH +station = ('kbkl', 0.0011526602226985404) +zone = ('ohz011', 0.0021319345650145645) + +[fips3923534] +centroid = (0.69540991218912429, -1.4333044544973692) +description = East Fultonham CDP, OH +station = ('kzzv', 0.0035041748877687432) +zone = ('ohz066', 0.0024111892567185147) + +[fips3923618] +centroid = (0.72703098472530159, -1.4212884385560414) +description = Eastlake city, OH +station = ('kcgf', 0.0016845768732504725) +zone = ('ohz012', 0.0026637626949500503) + +[fips3923702] +centroid = (0.70396001839525668, -1.4588337868920183) +description = East Liberty CDP, OH +station = ('kmrt', 0.003707797886894449) +zone = ('ohz045', 0.0029043380998222722) + +[fips3923730] +centroid = (0.70917982694907367, -1.4061634152582585) +description = East Liverpool city, OH +station = ('kbvi', 0.0032152723461077184) +zone = ('wvz001', 0.0019517292344630168) + +[fips3923940] +centroid = (0.71277614768597797, -1.4058034760066198) +description = East Palestine city, OH +station = ('kbvi', 0.0023126113899600651) +zone = ('paz020', 0.0037801569621459868) + +[fips3924024] +centroid = (0.71121271664862662, -1.4144138135252384) +description = East Rochester CDP, OH +station = ('kphd', 0.0070201220948600826) +zone = ('ohz040', 0.0030373817904195042) + +[fips3924052] +centroid = (0.70971555576297329, -1.4200471080321455) +description = East Sparta village, OH +station = ('kphd', 0.0035126175424991632) +zone = ('ohz032', 0.0026199749831373608) + +[fips3924234] +centroid = (0.6937702451700456, -1.4771501447270727) +description = Eaton city, OH +station = ('kmwo', 0.0049687583779241254) +zone = ('ohz060', 0.00023559644186099248) + +[fips3924262] +centroid = (0.72090603096810779, -1.4314092363692135) +description = Eaton Estates CDP, OH +station = ('klpr', 0.0023585884402002421) +zone = ('ohz010', 0.0018102012846076883) + +[fips3924486] +centroid = (0.72343117332989326, -1.4791636612719286) +description = Edgerton village, OH +station = ('kdfi', 0.0046139422106437986) +zone = ('ohz001', 0.0028634868136435294) + +[fips3924542] +centroid = (0.73088695809502524, -1.4092744995565234) +description = Edgewood CDP, OH +station = ('khzy', 0.0017342023742491963) +zone = ('ohz089', 0.00047081509967083677) + +[fips3924598] +centroid = (0.70787507116016024, -1.4462355116589327) +description = Edison village, OH +station = ('kmnn', 0.0028831833688413235) +zone = ('ohz037', 0.0010941571569443669) + +[fips3924640] +centroid = (0.72529157213947149, -1.4795077878405443) +description = Edon village, OH +station = ('kdfi', 0.0058712386353392395) +zone = ('ohz001', 0.0023695632752640011) + +[fips3924766] +centroid = (0.69646065275870228, -1.4778633211660226) +description = Eldorado village, OH +station = ('kves', 0.0055147949143670334) +zone = ('ohz060', 0.0028622535124985665) + +[fips3924794] +centroid = (0.71109188750451102, -1.4743843738213147) +description = Elgin village, OH +station = ('kaoh', 0.0061211942440272211) +zone = ('ohz024', 0.0024483386665283594) + +[fips3924808] +centroid = (0.71187938006301077, -1.469563791880599) +description = Elida village, OH +station = ('kaoh', 0.0028646894472970836) +zone = ('ohz025', 0.0012753495607573109) + +[fips3924850] +centroid = (0.68351725611932745, -1.4801101358719924) +description = Elizabethtown CDP, OH +station = ('kcvg', 0.0027071246449699602) +zone = ('inz074', 0.0023104111091994174) + +[fips3925144] +centroid = (0.72379634856928787, -1.4537062364424616) +description = Elmore village, OH +station = ('ktdz', 0.0030200185804213084) +zone = ('ohz007', 0.002227541416620806) + +[fips3925186] +centroid = (0.68391512137561206, -1.4746096085612848) +description = Elmwood Place village, OH +station = ('kluk', 0.0017833833633486573) +zone = ('ohz077', 0.00074678702563205123) + +[fips3925256] +centroid = (0.72210447875228223, -1.4330550818538443) +description = Elyria city, OH +station = ('klpr', 0.0010688424421379491) +zone = ('ohz010', 0.0014749717463214736) + +[fips3925368] +centroid = (0.7070623062340915, -1.4071912047481729) +description = Empire village, OH +station = ('kpit', 0.0052364858816780864) +zone = ('wvz001', 0.00071286167832289402) + +[fips3925396] +centroid = (0.69577667567813839, -1.471477719938336) +description = Englewood city, OH +station = ('kday', 0.0013843144972984483) +zone = ('ohz061', 0.0019462591680417156) + +[fips3925452] +centroid = (0.69578159750662893, -1.4649069392770129) +description = Enon village, OH +station = ('ksgh', 0.0013204928177883129) +zone = ('ohz053', 0.0021939875246815704) + +[fips3925676] +centroid = (0.69735064850417183, -1.4431440099548749) +description = Etna CDP, OH +station = ('kcmh', 0.0027515751081198985) +zone = ('ohz056', 0.0036068610053266608) + +[fips3925704] +centroid = (0.72592003029652963, -1.4227867862655861) +description = Euclid city, OH +station = ('kcgf', 0.0006504120666019097) +zone = ('ohz011', 0.0034473426095235709) + +[fips3925802] +centroid = (0.68505536242923248, -1.4735195108170742) +description = Evendale village, OH +station = ('khao', 0.0023611840922953364) +zone = ('ohz077', 0.0018440813742743021) + +[fips3925914] +centroid = (0.69455843586024635, -1.4662732877352289) +description = Fairborn city, OH +station = ('kffo', 0.00084319972905192082) +zone = ('ohz062', 0.002436677169175473) + +[fips3925942] +centroid = (0.68317771976664443, -1.4730074486678315) +description = Fairfax village, OH +station = ('kluk', 0.00079913145770330225) +zone = ('ohz077', 0.0021692523066077583) + +[fips3925970] +centroid = (0.68646277848474813, -1.4755487527784903) +description = Fairfield city, OH +station = ('khao', 0.00070854861286614155) +zone = ('ohz070', 0.0019222092901252051) + +[fips3926110] +centroid = (0.69670969378966952, -1.4395621579974696) +description = Fairfield Beach CDP, OH +station = ('kvta', 0.0017233493747786837) +zone = ('ohz056', 0.003024428965058635) + +[fips3926166] +centroid = (0.71787161898388296, -1.4245780002236155) +description = Fairlawn city, OH +station = ('kakr', 0.0026643983114740429) +zone = ('ohz021', 0.0011892570216175046) + +[fips3926306] +centroid = (0.72863303989899975, -1.41847810939448) +description = Fairport Harbor village, OH +station = ('kcgf', 0.0041842894204067865) +zone = ('ohz012', 0.0010018214830340047) + +[fips3926348] +centroid = (0.69913262967045808, -1.4178171532067498) +description = Fairview village, OH +station = ('kphd', 0.0075428049507719197) +zone = ('ohz058', 0.0034647495051979131) + +[fips3926446] +centroid = (0.7232987028396668, -1.4286042130085783) +description = Fairview Park city, OH +station = ('kcle', 0.00073343859323935835) +zone = ('ohz011', 0.0025609773781418558) + +[fips3926656] +centroid = (0.69252401027095156, -1.4735366499503286) +description = Farmersville village, OH +station = ('kmwo', 0.0026214388480717901) +zone = ('ohz061', 0.002263769534879632) + +[fips3926768] +centroid = (0.72732847609630402, -1.4718070461148949) +description = Fayette village, OH +station = ('kadg', 0.0046490367145787907) +zone = ('ohz002', 0.0028677255038398984) + +[fips3926796] +centroid = (0.68390440505400474, -1.4648853670074582) +description = Fayetteville village, OH +station = ('kiln', 0.0047778037016262221) +zone = ('ohz078', 0.0038273536179196238) + +[fips3926880] +centroid = (0.67786741589111155, -1.4677953893758935) +description = Felicity village, OH +station = ('kluk', 0.0062771084503988389) +zone = ('kyz097', 0.0026229532201826012) + +[fips3927048] +centroid = (0.71638658813653111, -1.4597514461061318) +description = Findlay city, OH +station = ('kfdy', 0.00063820250082694213) +zone = ('ohz017', 0.0008575132383427898) + +[fips3927104] +centroid = (0.68444737698430025, -1.475057006261741) +description = Finneytown CDP, OH +station = ('kluk', 0.0024185971810750623) +zone = ('ohz077', 0.00052210454723464574) + +[fips3927303] +centroid = (0.69044328109660147, -1.4693365151054043) +description = Five Points CDP, OH +station = ('kmgy', 0.00094453363830341458) +zone = ('ohz071', 0.0023157896958482626) + +[fips3927356] +centroid = (0.71969506917319659, -1.4461651050769071) +description = Flat Rock CDP, OH +station = ('kmfd', 0.0085889236814938354) +zone = ('ohz018', 0.004029560947020454) + +[fips3927412] +centroid = (0.70060636823754951, -1.468029141322613) +description = Fletcher village, OH +station = ('kday', 0.0044463670712699887) +zone = ('ohz051', 0.0021956532094065746) + +[fips3927538] +centroid = (0.72123614254283008, -1.4695708953706546) +description = Florida village, OH +station = ('kdfi', 0.0030599203904912607) +zone = ('ohz005', 0.0017391334864948775) + +[fips3927552] +centroid = (0.70071763297736411, -1.4148402323680858) +description = Flushing village, OH +station = ('khlg', 0.0055368079311193157) +zone = ('ohz059', 0.0025225962362108671) + +[fips3927636] +centroid = (0.7122057391798412, -1.4575480202853663) +description = Forest village, OH +station = ('kfdy', 0.0042031766504891073) +zone = ('ohz027', 0.0028045854020833107) + +[fips3927706] +centroid = (0.68567055608397542, -1.4752514184871206) +description = Forest Park city, OH +station = ('khao', 0.0014126438343114644) +zone = ('ohz077', 0.0015982244379732224) + +[fips3927776] +centroid = (0.68189102813548907, -1.4719937788915658) +description = Forestville CDP, OH +station = ('kluk', 0.0011789813369452518) +zone = ('kyz093', 0.0022147627420155292) + +[fips3927818] +centroid = (0.71394745560028394, -1.4713059620866473) +description = Fort Jennings village, OH +station = ('kaoh', 0.0051887646483815622) +zone = ('ohz016', 0.002998560657892382) + +[fips3927832] +centroid = (0.70416437899737261, -1.4725473973302983) +description = Fort Loramie village, OH +station = ('kves', 0.0033104254452480941) +zone = ('ohz043', 0.0022212933537612508) + +[fips3927902] +centroid = (0.70531257875238218, -1.4796159808008753) +description = Fort Recovery village, OH +station = ('kves', 0.0049311941428835764) +zone = ('ohz034', 0.0029690978368606701) + +[fips3927930] +centroid = (0.71915118967169001, -1.4515548737932833) +description = Fort Seneca CDP, OH +station = ('kfdy', 0.0073303260801198646) +zone = ('ohz018', 0.001500135907942323) + +[fips3927944] +centroid = (0.71002044733000425, -1.4683716621883169) +description = Fort Shawnee village, OH +station = ('kaoh', 0.0015547812685466043) +zone = ('ohz025', 0.0016129771234915725) + +[fips3928014] +centroid = (0.71838188344399601, -1.4558210169905181) +description = Fostoria city, OH +station = ('kfdy', 0.0041793936551956313) +zone = ('ohz017', 0.0043374333944821812) + +[fips3928058] +centroid = (0.68724138731735529, -1.4723501576715303) +description = Four Bridges CDP, OH +station = ('kmwo', 0.0027422671669637619) +zone = ('ohz070', 0.0031114384472781995) + +[fips3928182] +centroid = (0.68771709425827887, -1.4517330893632046) +description = Frankfort village, OH +station = ('klck', 0.0079304696066120426) +zone = ('ohz073', 0.0019968950606106786) + +[fips3928476] +centroid = (0.69036496817306459, -1.4712383654847176) +description = Franklin city, OH +station = ('kmgy', 0.0011497259014033509) +zone = ('ohz071', 0.0028200858669005751) + +[fips3928532] +centroid = (0.67393667261623247, -1.4459240751072069) +description = Franklin Furnace CDP, OH +station = ('khts', 0.0059052825895217192) +zone = ('kyz101', 0.0015862534372155256) + +[fips3928574] +centroid = (0.70019527338553478, -1.4332144653211365) +description = Frazeysburg village, OH +station = ('kzzv', 0.0041281216429816725) +zone = ('ohz057', 0.0035274244570877252) + +[fips3928616] +centroid = (0.7099498836683461, -1.4288883002509256) +description = Fredericksburg village, OH +station = ('kbjj', 0.0033132232153639573) +zone = ('ohz038', 0.0021745624285640346) + +[fips3928658] +centroid = (0.70648379940022554, -1.4407609373942019) +description = Fredericktown village, OH +station = ('k4i3', 0.0026220328685546295) +zone = ('ohz047', 0.0021964522644779831) + +[fips3928798] +centroid = (0.70181404881346698, -1.4184068301478288) +description = Freeport village, OH +station = ('kphd', 0.0048772550267270941) +zone = ('ohz049', 0.0027726212585997569) + +[fips3928826] +centroid = (0.72174633718977299, -1.4506407052376737) +description = Fremont city, OH +station = ('ktdz', 0.006086097866872411) +zone = ('ohz008', 0.00039006147969377318) + +[fips3928882] +centroid = (0.70390528486991411, -1.426608167209535) +description = Fresno CDP, OH +station = ('kphd', 0.0048924371147286566) +zone = ('ohz048', 0.002466913650985249) + +[fips3928896] +centroid = (0.67540246993522735, -1.4503825012281337) +description = Friendship CDP, OH +station = ('khts', 0.0094833027450071869) +zone = ('ohz088', 0.0023668958862747775) + +[fips3928966] +centroid = (0.68189690989506835, -1.4724821394695662) +description = Fruit Hill CDP, OH +station = ('kluk', 0.00085443877419943113) +zone = ('kyz093', 0.002158695185035702) + +[fips3929050] +centroid = (0.70621350025896912, -1.4456393420930362) +description = Fulton village, OH +station = ('kmnn', 0.0041379418864553284) +zone = ('ohz037', 0.0011603853565994298) + +[fips3929064] +centroid = (0.69561408080502252, -1.4336555100231154) +description = Fultonham village, OH +station = ('kzzv', 0.0036386749959504919) +zone = ('ohz066', 0.0024221612590336894) + +[fips3929106] +centroid = (0.6987730569379621, -1.4465264754985325) +description = Gahanna city, OH +station = ('kcmh', 0.00064303233720889739) +zone = ('ohz055', 0.0020899956113983442) + +[fips3929148] +centroid = (0.7020900028214998, -1.4465093538185707) +description = Galena village, OH +station = ('kdlz', 0.0033957105723002828) +zone = ('ohz046', 0.0019093467199676147) + +[fips3929162] +centroid = (0.71103308736201132, -1.4447303222587202) +description = Galion city, OH +station = ('kmfd', 0.0036962144919130782) +zone = ('ohz028', 0.0027126776302935081) + +[fips3929204] +centroid = (0.67753952088453928, -1.4345020994300877) +description = Gallipolis village, OH +station = ('k3i2', 0.0020714890788061137) +zone = ('ohz086', 0.0017150124962576735) + +[fips3929246] +centroid = (0.70469811813592498, -1.4380569860505499) +description = Gambier village, OH +station = ('k4i3', 0.0018528432967617481) +zone = ('ohz047', 0.00053298423204725871) + +[fips3929288] +centroid = (0.7063382389406091, -1.4344866183596225) +description = Gann village, OH +station = ('k4i3', 0.0050221863699781199) +zone = ('ohz038', 0.0038054340759044051) + +[fips3929428] +centroid = (0.72291146663852679, -1.4242574705064865) +description = Garfield Heights city, OH +station = ('kbkl', 0.0021449660235347903) +zone = ('ohz011', 0.00072098018378900677) + +[fips3929442] +centroid = (0.72054844791095918, -1.4153200931926291) +description = Garrettsville village, OH +station = ('kpov', 0.002359701074946033) +zone = ('ohz022', 0.0024556623131010299) + +[fips3929498] +centroid = (0.72485204587394181, -1.4208926851481516) +description = Gates Mills village, OH +station = ('kcgf', 0.0011301238336801766) +zone = ('ohz012', 0.0036799119586959578) + +[fips3929610] +centroid = (0.72955343928003891, -1.4127750191707857) +description = Geneva city, OH +station = ('khzy', 0.003215432047022715) +zone = ('ohz089', 0.0025130857433335939) + +[fips3929652] +centroid = (0.730512235904622, -1.4128663697038353) +description = Geneva-on-the-Lake village, OH +station = ('khzy', 0.0035012628195795047) +zone = ('ohz089', 0.0022339304528761891) + +[fips3929722] +centroid = (0.72466084505438577, -1.4549340406646547) +description = Genoa village, OH +station = ('ktdz', 0.0017868219683408472) +zone = ('ohz007', 0.0028252958748120655) + +[fips3929778] +centroid = (0.67837699967281628, -1.4643199675962746) +description = Georgetown village, OH +station = ('kluk', 0.0081013604459987155) +zone = ('ohz079', 0.0012323939253368514) + +[fips3929932] +centroid = (0.69171820920859828, -1.47244157801775) +description = Germantown village, OH +station = ('kmwo', 0.0018515233905615576) +zone = ('ohz061', 0.0023497658142413919) + +[fips3929974] +centroid = (0.70015970357537916, -1.4747374713822858) +description = Gettysburg village, OH +station = ('kves', 0.0015304371136508474) +zone = ('ohz042', 0.0016693045042418828) + +[fips3930072] +centroid = (0.72236620832691123, -1.4542496621583625) +description = Gibsonburg village, OH +station = ('ktdz', 0.0037544716745662524) +zone = ('ohz008', 0.0023894036671637795) + +[fips3930114] +centroid = (0.71591262652485943, -1.4647100137775102) +description = Gilboa village, OH +station = ('kfdy', 0.0033586645522055919) +zone = ('ohz016', 0.002765880215794209) + +[fips3930198] +centroid = (0.71851885688369255, -1.408412429079086) +description = Girard city, OH +station = ('kyng', 0.00148073992814523) +zone = ('ohz023', 0.0027390855352931193) + +[fips3930282] +centroid = (0.71605853605032621, -1.4674542647735911) +description = Glandorf village, OH +station = ('kaoh', 0.0057683863343236472) +zone = ('ohz016', 0.00070028560510864812) + +[fips3930352] +centroid = (0.69836136867400178, -1.4116722677894984) +description = Glencoe CDP, OH +station = ('khlg', 0.0041043576874735263) +zone = ('ohz059', 0.0014128189535230929) + +[fips3930380] +centroid = (0.68539947154455561, -1.4740717678989901) +description = Glendale village, OH +station = ('khao', 0.0018554876475229446) +zone = ('ohz077', 0.0017387233771574491) + +[fips3930436] +centroid = (0.69614481797726147, -1.4367501184132414) +description = Glenford village, OH +station = ('kvta', 0.0030089510599800658) +zone = ('ohz066', 0.0028328450500077419) + +[fips3930506] +centroid = (0.70719067520057577, -1.4327783424476481) +description = Glenmont village, OH +station = ('k4i3', 0.0065727125937375588) +zone = ('ohz038', 0.0022806448205445677) + +[fips3930520] +centroid = (0.7097198318196406, -1.4069648355441893) +description = Glenmoor CDP, OH +station = ('kbvi', 0.0033413420302767232) +zone = ('wvz001', 0.0025434837054279028) + +[fips3930632] +centroid = (0.72188896549624593, -1.4219378406641234) +description = Glenwillow village, OH +station = ('kcgf', 0.003589831160710395) +zone = ('ohz011', 0.0026927218596300446) + +[fips3930660] +centroid = (0.71660093202196851, -1.4294466485319308) +description = Gloria Glens Park village, OH +station = ('kbjj', 0.0033513829798716725) +zone = ('ohz020', 0.0010367716067835773) + +[fips3930674] +centroid = (0.68944510984409335, -1.4326375118303047) +description = Glouster village, OH +station = ('kuni', 0.0054683687958361621) +zone = ('ohz075', 0.0029888772488028625) + +[fips3930702] +centroid = (0.70440434431622934, -1.421146438568099) +description = Gnadenhutten village, OH +station = ('kphd', 0.0018760648024645659) +zone = ('ohz039', 0.0015612017559448277) + +[fips3930786] +centroid = (0.68394840480444752, -1.4738743886138821) +description = Golf Manor village, OH +station = ('kluk', 0.0015782223154246319) +zone = ('ohz077', 0.0013037088799850763) + +[fips3930828] +centroid = (0.68847516056559011, -1.4548960797534236) +description = Good Hope CDP, OH +station = ('kiln', 0.0057189011180342241) +zone = ('ohz063', 0.0023659311454535289) + +[fips3930912] +centroid = (0.69691463035043866, -1.4749614669384867) +description = Gordon village, OH +station = ('kves', 0.0047160249692084835) +zone = ('ohz060', 0.003783505832320786) + +[fips3931150] +centroid = (0.7204897175816295, -1.4317295391935396) +description = Grafton village, OH +station = ('klpr', 0.0023198803394655072) +zone = ('ohz010', 0.001582755482835477) + +[fips3931206] +centroid = (0.72258584055998232, -1.463745370299933) +description = Grand Rapids village, OH +station = ('ktol', 0.0032966942686464837) +zone = ('ohz005', 0.0028915432822992936) + +[fips3931234] +centroid = (0.72856841035679831, -1.4187130132585062) +description = Grand River village, OH +station = ('kcgf', 0.0040214246191112545) +zone = ('ohz012', 0.0010428610034680153) + +[fips3931262] +centroid = (0.68408595420279728, -1.47866395605379) +description = Grandview CDP, OH +station = ('kcvg', 0.0026402512920823541) +zone = ('ohz077', 0.0024158407652895507) + +[fips3931304] +centroid = (0.69777040018927639, -1.4493233481715608) +description = Grandview Heights city, OH +station = ('ktzr', 0.0018879161107640567) +zone = ('ohz055', 0.00044551045337864434) + +[fips3931402] +centroid = (0.69912339687871505, -1.4399731481297293) +description = Granville village, OH +station = ('kvta', 0.00086322471699922117) +zone = ('ohz056', 0.00067121049444734753) + +[fips3931434] +centroid = (0.69903078970860411, -1.4406856089836859) +description = Granville South CDP, OH +station = ('kvta', 0.0012130240071625835) +zone = ('ohz056', 0.0010833150149301501) + +[fips3931458] +centroid = (0.69728451797881374, -1.4349516962454016) +description = Gratiot village, OH +station = ('kvta', 0.0035315545206050223) +zone = ('ohz066', 0.0037503313176982592) + +[fips3931472] +centroid = (0.69199259242030431, -1.475302521727619) +description = Gratis village, OH +station = ('kmwo', 0.0026929570468346925) +zone = ('ohz060', 0.0022867778720618258) + +[fips3931542] +centroid = (0.69225596260443034, -1.4167637597367086) +description = Graysville village, OH +station = ('kpkb', 0.0068507950653935914) +zone = ('ohz069', 0.0016630917888906611) + +[fips3931860] +centroid = (0.71477884318947149, -1.421955276503351) +description = Green city, OH +station = ('kcak', 0.00071042141933537158) +zone = ('ohz032', 0.0028165305774801442) + +[fips3931948] +centroid = (0.70741713167102194, -1.4522468095752363) +description = Green Camp village, OH +station = ('kmnn', 0.0023820419705773365) +zone = ('ohz036', 0.0011465904885976906) + +[fips3932088] +centroid = (0.68685067791100385, -1.4554021205167471) +description = Greenfield city, OH +station = ('kiln', 0.0055054461898163282) +zone = ('ohz063', 0.0037136366778051308) + +[fips3932158] +centroid = (0.68533609863941569, -1.4751376753797683) +description = Greenhills village, OH +station = ('khao', 0.0017421763453329706) +zone = ('ohz077', 0.0012869325155845774) + +[fips3932207] +centroid = (0.69581423516364116, -1.4651219289342734) +description = Green Meadows CDP, OH +station = ('kffo', 0.0015224316916726249) +zone = ('ohz053', 0.0023331354243213095) + +[fips3932256] +centroid = (0.72007656324109748, -1.4495594214061855) +description = Green Springs village, OH +station = ('ktdz', 0.0077961488063532907) +zone = ('ohz008', 0.0021046423489405977) + +[fips3932298] +centroid = (0.71431755266816932, -1.42073372055988) +description = Greentown CDP, OH +station = ('kcak', 0.00065947324420297137) +zone = ('ohz032', 0.0020389560422142557) + +[fips3932340] +centroid = (0.69995921760420254, -1.4769229203117555) +description = Greenville city, OH +station = ('kves', 0.0020626018862055324) +zone = ('ohz042', 0.00049983146607167058) + +[fips3932368] +centroid = (0.71613229366451547, -1.4402251387671323) +description = Greenwich village, OH +station = ('kmfd', 0.0037471784408343216) +zone = ('ohz019', 0.0022612596969818605) + +[fips3932536] +centroid = (0.68467913925567248, -1.4764957684306224) +description = Groesbeck CDP, OH +station = ('khao', 0.0026326503505218718) +zone = ('ohz077', 0.00094298690324703797) + +[fips3932592] +centroid = (0.69580175605948946, -1.449782491937883) +description = Grove City city, OH +station = ('ktzr', 0.0011216931023595412) +zone = ('ohz055', 0.0019550703744547) + +[fips3932606] +centroid = (0.69563717151102633, -1.4467092289245089) +description = Groveport village, OH +station = ('klck', 0.0009107523453953521) +zone = ('ohz055', 0.0025285342907187857) + +[fips3932620] +centroid = (0.71591576811751301, -1.4744126307019045) +description = Grover Hill village, OH +station = ('kdfi', 0.005517748097732463) +zone = ('ohz015', 0.0021732390557639763) + +[fips3932956] +centroid = (0.6834651405878629, -1.4403139411194736) +description = Hamden village, OH +station = ('kuni', 0.0040719717858325412) +zone = ('ohz084', 0.0016769707777531805) + +[fips3932984] +centroid = (0.6792607820461487, -1.465828577841821) +description = Hamersville village, OH +station = ('kluk', 0.0066446089181759474) +zone = ('ohz079', 0.0016224250931369769) + +[fips3933012] +centroid = (0.68756073021059272, -1.4759467925677001) +description = Hamilton city, OH +station = ('khao', 0.00081698775966928183) +zone = ('ohz070', 0.00078431748477293727) + +[fips3933096] +centroid = (0.71956842808267185, -1.4666965649854227) +description = Hamler village, OH +station = ('kfdy', 0.0060953584696128941) +zone = ('ohz005', 0.0018933652476032072) + +[fips3933194] +centroid = (0.67299848833011544, -1.4438695084183439) +description = Hanging Rock village, OH +station = ('khts', 0.0041563697387354487) +zone = ('ohz087', 0.0026891079813626305) + +[fips3933222] +centroid = (0.69240298914061826, -1.4115194118536087) +description = Hannibal CDP, OH +station = ('khlg', 0.0091436753228892331) +zone = ('wvz011', 0.0036064894518450614) + +[fips3933292] +centroid = (0.69958590913049346, -1.4359692057460216) +description = Hanover village, OH +station = ('kvta', 0.002812869235866385) +zone = ('ohz056', 0.002788330575426171) + +[fips3933306] +centroid = (0.7113036133960704, -1.4125908345748228) +description = Hanoverton village, OH +station = ('kphd', 0.0081188909161443029) +zone = ('ohz041', 0.0021026700671320604) + +[fips3933362] +centroid = (0.69704367999533101, -1.4387519587054014) +description = Harbor Hills CDP, OH +station = ('kvta', 0.0014448016574843377) +zone = ('ohz056', 0.0027690887945106459) + +[fips3933376] +centroid = (0.72768536102175185, -1.4563818785456466) +description = Harbor View village, OH +station = ('ktdz', 0.002267382912520158) +zone = ('ohz003', 0.0030706212295370109) + +[fips3933656] +centroid = (0.71101971813994091, -1.4529897089713479) +description = Harpster village, OH +station = ('kmnn', 0.0032274528400317863) +zone = ('ohz027', 0.001950963544850461) + +[fips3933740] +centroid = (0.69482793215004668, -1.4515623088958969) +description = Harrisburg village, OH +station = ('ktzr', 0.0016274844947645488) +zone = ('ohz054', 0.0034271436253602429) + +[fips3933838] +centroid = (0.68515727220425637, -1.4798575867292287) +description = Harrison city, OH +station = ('kcvg', 0.0039714841871529242) +zone = ('inz074', 0.0031540996054429549) + +[fips3934090] +centroid = (0.70129715210219645, -1.4117337731923385) +description = Harrisville village, OH +station = ('khlg', 0.003162847248810244) +zone = ('ohz059', 0.0031951252479238612) + +[fips3934118] +centroid = (0.710474913613931, -1.4647048301496317) +description = Harrod village, OH +station = ('kaoh', 0.0012667014286529474) +zone = ('ohz025', 0.0026830080059905203) + +[fips3934202] +centroid = (0.70232216651860013, -1.4431875559197125) +description = Hartford village, OH +station = ('k4i3', 0.0027383168974820897) +zone = ('ohz056', 0.0037654810938105251) + +[fips3934328] +centroid = (0.71492682965674814, -1.4195416432274752) +description = Hartville village, OH +station = ('kcak', 0.0017272333826342321) +zone = ('ohz032', 0.0026261377007600977) + +[fips3934384] +centroid = (0.68942559706305617, -1.4659698098848923) +description = Harveysburg village, OH +station = ('kiln', 0.0030740883154525642) +zone = ('ohz071', 0.0026595426587648591) + +[fips3934412] +centroid = (0.72369737094740738, -1.4609157028902595) +description = Haskins village, OH +station = ('ktol', 0.0024172668827992586) +zone = ('ohz006', 0.0020906493543304317) + +[fips3934552] +centroid = (0.71589546993831243, -1.4762918790674047) +description = Haviland village, OH +station = ('kdfi', 0.0058579379319780864) +zone = ('ohz015', 0.0017259310679702921) + +[fips3934594] +centroid = (0.68906640830299581, -1.436789719933969) +description = Haydenville CDP, OH +station = ('kuni', 0.0048832803621081675) +zone = ('ohz074', 0.0021355193317145419) + +[fips3934636] +centroid = (0.71167576995247317, -1.4357103036047809) +description = Hayesville village, OH +station = ('kmfd', 0.0034628702062662899) +zone = ('ohz030', 0.0012310888969857224) + +[fips3934748] +centroid = (0.69851778508156548, -1.4388598375064672) +description = Heath city, OH +station = ('kvta', 0.00036123490868650808) +zone = ('ohz056', 0.0013444200466827374) + +[fips3934790] +centroid = (0.69752682203886807, -1.4396589365044927) +description = Hebron village, OH +station = ('kvta', 0.00093375129342440188) +zone = ('ohz056', 0.0022074268284406466) + +[fips3934860] +centroid = (0.72152543086634802, -1.4537193438651441) +description = Helena village, OH +station = ('ktdz', 0.0046761074794569859) +zone = ('ohz008', 0.0019463020873462993) + +[fips3934888] +centroid = (0.6910202520407257, -1.4338290655639336) +description = Hemlock village, OH +station = ('kuni', 0.0067582723154583323) +zone = ('ohz066', 0.0027624995045901482) + +[fips3935028] +centroid = (0.72261896690918503, -1.4528662618333543) +description = Hessville CDP, OH +station = ('ktdz', 0.0042454077357932012) +zone = ('ohz008', 0.0015198039119752027) + +[fips3935098] +centroid = (0.72070894838897259, -1.4794251814070474) +description = Hicksville village, OH +station = ('kdfi', 0.0044005891133642181) +zone = ('ohz015', 0.0039274226003859916) + +[fips3935126] +centroid = (0.69208989452610303, -1.4393170788639045) +description = Hide-A-Way Hills CDP, OH +station = ('klhq', 0.003165558421496057) +zone = ('ohz074', 0.0027422016277429732) + +[fips3935168] +centroid = (0.67700904551168817, -1.4655000370634255) +description = Higginsport village, OH +station = ('kluk', 0.0081597684714721872) +zone = ('kyz097', 0.0024320618200081535) + +[fips3935210] +centroid = (0.68668139842685294, -1.4590966334773685) +description = Highland village, OH +station = ('kiln', 0.002923053263887798) +zone = ('ohz080', 0.0027776438467723174) + +[fips3935252] +centroid = (0.72521535361103695, -1.4219043128891926) +description = Highland Heights city, OH +station = ('kcgf', 0.00031936109916416369) +zone = ('ohz011', 0.0033307665394704429) + +[fips3935255] +centroid = (0.72344276231612648, -1.4227700834646444) +description = Highland Hills village, OH +station = ('kcgf', 0.002084393178497004) +zone = ('ohz011', 0.0018865711897103499) + +[fips3935256] +centroid = (0.68408054368211602, -1.4568979374988762) +description = Highland Holiday CDP, OH +station = ('kiln', 0.0058948663352134693) +zone = ('ohz080', 0.0017243034563367392) + +[fips3935322] +centroid = (0.68572548159553559, -1.4721351680142698) +description = Highpoint CDP, OH +station = ('khao', 0.0026585549583225182) +zone = ('ohz077', 0.0031080350629726053) + +[fips3935476] +centroid = (0.69878808422282179, -1.4512365431910119) +description = Hilliard city, OH +station = ('kosu', 0.0011931172101992192) +zone = ('ohz055', 0.0022211815509676222) + +[fips3935532] +centroid = (0.71259934583275109, -1.4214651182362208) +description = Hills and Dales village, OH +station = ('kcak', 0.0015332854286135313) +zone = ('ohz032', 0.0010642008057480743) + +[fips3935560] +centroid = (0.68438606356767762, -1.4592919009140817) +description = Hillsboro city, OH +station = ('kiln', 0.0045012819004844511) +zone = ('ohz080', 0.00050225710944555373) + +[fips3935613] +centroid = (0.71845352920979044, -1.4092104634262677) +description = Hilltop CDP, OH +station = ('kyng', 0.0017910843398129795) +zone = ('ohz033', 0.0026505791239035906) + +[fips3935658] +centroid = (0.72099821925919816, -1.4162205434603181) +description = Hiram village, OH +station = ('kpov', 0.0021046333132756969) +zone = ('ohz022', 0.0025825414789730048) + +[fips3935826] +centroid = (0.68405815110781287, -1.4266682239890962) +description = Hockingport CDP, OH +station = ('kpkb', 0.004639041169109335) +zone = ('wvz009', 0.0030861391066974663) + +[fips3935854] +centroid = (0.71993590715667921, -1.4683323399202692) +description = Holgate village, OH +station = ('kdfi', 0.0042489584982256896) +zone = ('ohz005', 0.0016797699138957731) + +[fips3935864] +centroid = (0.72643216225894225, -1.4755082785931366) +description = Holiday City village, OH +station = ('kdfi', 0.0052206215218485504) +zone = ('ohz001', 0.0012370039079008662) + +[fips3935866] +centroid = (0.71726335428627042, -1.4439293033985174) +description = Holiday Lakes CDP, OH +station = ('kmfd', 0.0056374993497641072) +zone = ('ohz019', 0.0019505601206500133) + +[fips3935868] +centroid = (0.69557648641293457, -1.4654136607187442) +description = Holiday Valley CDP, OH +station = ('kffo', 0.0012309137259408664) +zone = ('ohz053', 0.0026330057963787519) + +[fips3935882] +centroid = (0.72638933187909838, -1.4609750615381201) +description = Holland village, OH +station = ('ktol', 0.0013562557825099496) +zone = ('ohz003', 0.00064091957684792055) + +[fips3935896] +centroid = (0.69810539868590438, -1.4799171897231844) +description = Hollansburg village, OH +station = ('kves', 0.0049697369468711923) +zone = ('ohz042', 0.0033044398256232639) + +[fips3935924] +centroid = (0.70095517228856052, -1.4160007716009071) +description = Holloway village, OH +station = ('kphd', 0.0065409225222200999) +zone = ('ohz049', 0.0023644535172596443) + +[fips3935994] +centroid = (0.70910189799797207, -1.4298322266702814) +description = Holmesville village, OH +station = ('kbjj', 0.0041895398489673269) +zone = ('ohz038', 0.0011781391420975838) + +[fips3936176] +centroid = (0.71272387507488077, -1.4148536015901561) +description = Homeworth CDP, OH +station = ('kakr', 0.0063152254341521212) +zone = ('ohz040', 0.004488024279378543) + +[fips3936232] +centroid = (0.68385071872621339, -1.4794900378420515) +description = Hooven CDP, OH +station = ('kcvg', 0.0026816514396910056) +zone = ('ohz077', 0.003065599470765173) + +[fips3936260] +centroid = (0.70383311550534411, -1.4118940118709642) +description = Hopedale village, OH +station = ('khlg', 0.0043011577493775079) +zone = ('ohz050', 0.0020590738094992426) + +[fips3936512] +centroid = (0.70527568249199502, -1.4368844564057675) +description = Howard CDP, OH +station = ('k4i3', 0.0029111147519143344) +zone = ('ohz047', 0.0012651644387789032) + +[fips3936557] +centroid = (0.71991904727610501, -1.4092543759102478) +description = Howland Center CDP, OH +station = ('kyng', 0.0010195115118275049) +zone = ('ohz023', 0.0012239098979843789) + +[fips3936568] +centroid = (0.71890810021347229, -1.4623225429871221) +description = Hoytville village, OH +station = ('kfdy', 0.0034077253650573449) +zone = ('ohz017', 0.003639965721620475) + +[fips3936582] +centroid = (0.71835832149909418, -1.4061700649627087) +description = Hubbard city, OH +station = ('kyng', 0.0020542626393267082) +zone = ('ohz033', 0.0037158277620084256) + +[fips3936610] +centroid = (0.69566870961060989, -1.4680469262276907) +description = Huber Heights city, OH +station = ('kffo', 0.00095345803670293541) +zone = ('ohz061', 0.0029993273833788109) + +[fips3936624] +centroid = (0.69973527440787919, -1.4471779720017171) +description = Huber Ridge CDP, OH +station = ('kcmh', 0.0016661562743502647) +zone = ('ohz055', 0.0024637091101645243) + +[fips3936651] +centroid = (0.71976004778124825, -1.4214242600784315) +description = Hudson city, OH +station = ('kpov', 0.0025373746196460474) +zone = ('ohz021', 0.0023073956253564418) + +[fips3936806] +centroid = (0.6893131280460576, -1.4711424596423206) +description = Hunter CDP, OH +station = ('kmwo', 0.00160079801036771) +zone = ('ohz071', 0.0020337421474815962) + +[fips3936918] +centroid = (0.72403898424190016, -1.4209216750670273) +description = Hunting Valley village, OH +station = ('kcgf', 0.0017063804725742998) +zone = ('ohz013', 0.0030733321223715558) + +[fips3936988] +centroid = (0.70585122226613262, -1.462664487894173) +description = Huntsville village, OH +station = ('kedj', 0.0012376661344438373) +zone = ('ohz044', 0.0010705390706390097) + +[fips3937016] +centroid = (0.72252496347567263, -1.4409886679550021) +description = Huron city, OH +station = ('klpr', 0.0050360026367185394) +zone = ('ohz009', 0.00093702326487641349) + +[fips3937142] +centroid = (0.71003954123202095, -1.4457155955280561) +description = Iberia CDP, OH +station = ('kmnn', 0.0032942631312383661) +zone = ('ohz037', 0.0028109809990809697) + +[fips3937240] +centroid = (0.72221745391476377, -1.4247701260676748) +description = Independence city, OH +station = ('kbkl', 0.0027112897204869422) +zone = ('ohz011', 0.00084138342534883473) + +[fips3937422] +centroid = (0.70811760211301744, -1.4089293956035267) +description = Irondale village, OH +station = ('kbvi', 0.0054878632579813654) +zone = ('wvz001', 0.0022002611032750728) + +[fips3937464] +centroid = (0.67249848640600418, -1.442986773242563) +description = Ironton city, OH +station = ('khts', 0.003357799977087132) +zone = ('ohz087', 0.0022445320788942952) + +[fips3937604] +centroid = (0.69704500644556255, -1.4757340369318821) +description = Ithaca village, OH +station = ('kves', 0.0045879488172746521) +zone = ('ohz042', 0.0035252172883357266) + +[fips3937842] +centroid = (0.68148038706907987, -1.4425076629095981) +description = Jackson city, OH +station = ('kuni', 0.0063617823281381979) +zone = ('ohz083', 0.00062356618937292477) + +[fips3938192] +centroid = (0.69007499917113813, -1.4748610755999121) +description = Jacksonburg village, OH +station = ('kmwo', 0.0013983774741801551) +zone = ('ohz070', 0.0019946089571196484) + +[fips3938220] +centroid = (0.70579414999959245, -1.4667886660100506) +description = Jackson Center village, OH +station = ('kedj', 0.0031665369147877509) +zone = ('ohz043', 0.0028755703958971996) + +[fips3938304] +centroid = (0.68898495378680513, -1.4325575932038559) +description = Jacksonville village, OH +station = ('kuni', 0.0050664156050746366) +zone = ('ohz075', 0.002525120565234741) + +[fips3938374] +centroid = (0.69218812165640531, -1.4615864852816787) +description = Jamestown village, OH +station = ('ksgh', 0.0034151338106667658) +zone = ('ohz062', 0.0020531743883235565) + +[fips3938500] +centroid = (0.72847295830000669, -1.4096848613702524) +description = Jefferson village, OH +station = ('khzy', 0.0011921010855241751) +zone = ('ohz014', 0.001081123837366967) + +[fips3938920] +centroid = (0.69206024138211164, -1.4583410978974729) +description = Jeffersonville village, OH +station = ('kiln', 0.0048866722635669451) +zone = ('ohz063', 0.0021034386137977036) + +[fips3938948] +centroid = (0.71383093741942083, -1.461312922374721) +description = Jenera village, OH +station = ('kfdy', 0.0021944250528971175) +zone = ('ohz017', 0.0019574205195692558) + +[fips3939060] +centroid = (0.71216083185818746, -1.4345943226277631) +description = Jeromesville village, OH +station = ('kmfd', 0.0042393108635688992) +zone = ('ohz030', 0.0012300021995726828) + +[fips3939074] +centroid = (0.72001264928388953, -1.4591355543196882) +description = Jerry City village, OH +station = ('kfdy', 0.0042223857535974695) +zone = ('ohz006', 0.0019046169272524404) + +[fips3939130] +centroid = (0.69554660637614052, -1.4153908662937975) +description = Jerusalem village, OH +station = ('khlg', 0.0081067309507199398) +zone = ('ohz069', 0.0021796816316163223) + +[fips3939172] +centroid = (0.7045555421893297, -1.4137691587127219) +description = Jewett village, OH +station = ('kphd', 0.0057598150901981265) +zone = ('ohz049', 0.0017474476321923526) + +[fips3939340] +centroid = (0.7007347197507412, -1.4431593513990002) +description = Johnstown village, OH +station = ('kcmh', 0.0036953135541829378) +zone = ('ohz056', 0.0028937608298862357) + +[fips3939508] +centroid = (0.69327314049249267, -1.4364085225720411) +description = Junction City village, OH +station = ('kvta', 0.0056118220658222294) +zone = ('ohz066', 0.00090110864477301001) + +[fips3939536] +centroid = (0.71534373645517191, -1.4694679034914946) +description = Kalida village, OH +station = ('kaoh', 0.0055180295847168442) +zone = ('ohz016', 0.0010359225393883279) + +[fips3939564] +centroid = (0.67791621529699719, -1.4337960264811935) +description = Kanauga CDP, OH +station = ('k3i2', 0.001453242554561381) +zone = ('wvz007', 0.002102130901389645) + +[fips3939578] +centroid = (0.7198636679789393, -1.4535785481543859) +description = Kansas CDP, OH +station = ('ktdz', 0.0061890175032676565) +zone = ('ohz008', 0.0026635627071817727) + +[fips3939662] +centroid = (0.72610246956324054, -1.4435008425204454) +description = Kelleys Island village, OH +station = ('cwnb', 0.0050969520275891142) +zone = ('ohz009', 0.0043313819812994762) + +[fips3939872] +centroid = (0.71818802972397711, -1.4200194620167939) +description = Kent city, OH +station = ('kpov', 0.0019130761837076) +zone = ('ohz022', 0.0021909627357772393) + +[fips3939886] +centroid = (0.70938106341182849, -1.4592689323811254) +description = Kenton city, OH +station = ('kaoh', 0.0054701906204508762) +zone = ('ohz026', 0.00071856155738652088) + +[fips3939914] +centroid = (0.68428968648638244, -1.4726283457010059) +description = Kenwood CDP, OH +station = ('kluk', 0.0019477860697899552) +zone = ('ohz077', 0.0022704530690421439) + +[fips3940040] +centroid = (0.69282574279203635, -1.4687021926420594) +description = Kettering city, OH +station = ('kmgy', 0.0020119292519133001) +zone = ('ohz061', 0.0021407546622102349) + +[fips3940054] +centroid = (0.70578933289085688, -1.4706343070306023) +description = Kettlersville village, OH +station = ('kves', 0.0054922006114858273) +zone = ('ohz043', 0.0020145296805434234) + +[fips3940096] +centroid = (0.71119411143880029, -1.4268188982634209) +description = Kidron CDP, OH +station = ('kbjj', 0.0027072469534853523) +zone = ('ohz031', 0.0022976277607488329) + +[fips3940124] +centroid = (0.70393149971527902, -1.4479118480455955) +description = Kilbourne CDP, OH +station = ('kdlz', 0.0022633765897353501) +zone = ('ohz046', 0.0011207460004058014) + +[fips3940180] +centroid = (0.70679799357216944, -1.430870453229123) +description = Killbuck village, OH +station = ('kbjj', 0.0065927770860040825) +zone = ('ohz038', 0.0013326824491801342) + +[fips3940264] +centroid = (0.7007646521474129, -1.4237669108136284) +description = Kimbolton CDP, OH +station = ('kzzv', 0.0055718765727220225) +zone = ('ohz058', 0.0020392788928110454) + +[fips3940348] +centroid = (0.68692953188660888, -1.4703134107943305) +description = Kings Mills CDP, OH +station = ('kmwo', 0.0036724125494516126) +zone = ('ohz071', 0.0015882280741356209) + +[fips3940376] +centroid = (0.68892123181581488, -1.4470875464931712) +description = Kingston village, OH +station = ('klhq', 0.0058631935603440767) +zone = ('ohz073', 0.00305753915746604) + +[fips3940507] +centroid = (0.72348658753364403, -1.4064562291468656) +description = Kinsman Center CDP, OH +station = ('kyng', 0.0037003022833333029) +zone = ('ohz023', 0.0033036535582208868) + +[fips3940544] +centroid = (0.72023863451543768, -1.4364814075216044) +description = Kipton village, OH +station = ('klpr', 0.0021524641823360805) +zone = ('ohz010', 0.0020705513322338662) + +[fips3940558] +centroid = (0.71232983208965805, -1.4559433296644979) +description = Kirby village, OH +station = ('kfdy', 0.0048176094024030384) +zone = ('ohz027', 0.0016004544334530498) + +[fips3940572] +centroid = (0.69725948995734022, -1.4416014006955) +description = Kirkersville village, OH +station = ('kvta', 0.0021029449658726634) +zone = ('ohz056', 0.0029071705666641702) + +[fips3940642] +centroid = (0.72602194007155363, -1.4196169716379914) +description = Kirtland city, OH +station = ('kcgf', 0.0019737833523567304) +zone = ('ohz012', 0.0021705146235538463) + +[fips3940670] +centroid = (0.72671961798674589, -1.4194122794233177) +description = Kirtland Hills village, OH +station = ('kcgf', 0.0023973078103133694) +zone = ('ohz012', 0.0015527199360224392) + +[fips3940978] +centroid = (0.7266842925226854, -1.4747024077176134) +description = Kunkle CDP, OH +station = ('kjym', 0.0051226618073622046) +zone = ('ohz001', 0.0018020669472675018) + +[fips3941090] +centroid = (0.70942096163852919, -1.4067311359573471) +description = La Croft CDP, OH +station = ('kbvi', 0.0033704172579084655) +zone = ('wvz001', 0.0022175055645579375) + +[fips3941118] +centroid = (0.71137464829662655, -1.4652043782881379) +description = Lafayette village, OH +station = ('kaoh', 0.0013523234861938277) +zone = ('ohz025', 0.0020698089236640136) + +[fips3941146] +centroid = (0.69709823898774848, -1.4557010605110288) +description = Lafayette CDP, OH +station = ('ktzr', 0.0036584611712056612) +zone = ('ohz054', 0.00081657801567479804) + +[fips3941188] +centroid = (0.70016642309299926, -1.4141008585370636) +description = Lafferty CDP, OH +station = ('khlg', 0.0050398412437290228) +zone = ('ohz059', 0.0018150188557353219) + +[fips3941230] +centroid = (0.71977896715033984, -1.4332445024375631) +description = LaGrange village, OH +station = ('klpr', 0.0020930214263084079) +zone = ('ohz010', 0.0010527396438923459) + +[fips3941349] +centroid = (0.70637672345061564, -1.4295998884402561) +description = Lake Buckhorn CDP, OH +station = ('kphd', 0.0065515770551053433) +zone = ('ohz038', 0.0015709092540368314) + +[fips3941363] +centroid = (0.69747240267279087, -1.4524559000196255) +description = Lake Darby CDP, OH +station = ('ktzr', 0.0015373257810526821) +zone = ('ohz054', 0.002689478444677736) + +[fips3941373] +centroid = (0.69268023469229767, -1.4780940536931364) +description = Lake Lakengren CDP, OH +station = ('kmwo', 0.0047565818638240151) +zone = ('ohz060', 0.001086935237824218) + +[fips3941398] +centroid = (0.72709550954774782, -1.4216495646315717) +description = Lakeline village, OH +station = ('kcgf', 0.0016633670778025663) +zone = ('ohz012', 0.0029092860890532796) + +[fips3941419] +centroid = (0.68400481384587208, -1.4655707752580087) +description = Lake Lorelei CDP, OH +station = ('kiln', 0.0049369071018652653) +zone = ('ohz078', 0.0034995752274404202) + +[fips3941443] +centroid = (0.70966811771390415, -1.4170779539086529) +description = Lake Mohawk CDP, OH +station = ('kphd', 0.0045088630154241057) +zone = ('ohz040', 0.0019686493602982811) + +[fips3941454] +centroid = (0.71598038020642196, -1.4211070988467593) +description = Lakemore village, OH +station = ('kakr', 0.00059890259352712145) +zone = ('ohz021', 0.0023002485402213941) + +[fips3941500] +centroid = (0.72719843161373798, -1.4772813411269452) +description = Lake Seneca CDP, OH +station = ('kjym', 0.0045271852218078485) +zone = ('ohz001', 0.001964042873033642) + +[fips3941552] +centroid = (0.72502547924171246, -1.4443192099534128) +description = Lakeside CDP, OH +station = ('cwnb', 0.0063258610475087794) +zone = ('ohz009', 0.0035683042242815235) + +[fips3941597] +centroid = (0.71142027120327367, -1.4066714456969291) +description = Lake Tomahawk CDP, OH +station = ('kbvi', 0.0025970606251494045) +zone = ('ohz041', 0.002398111286061242) + +[fips3941608] +centroid = (0.70664848866844376, -1.4648477726153704) +description = Lakeview village, OH +station = ('kedj', 0.0024953394243208038) +zone = ('ohz044', 0.0027836164553854174) + +[fips3941657] +centroid = (0.67963171687207502, -1.4622483839472049) +description = Lake Waynoka CDP, OH +station = ('kiln', 0.0086098607253906039) +zone = ('ohz079', 0.0011897585530935759) + +[fips3941664] +centroid = (0.72402994343637483, -1.4277087020226726) +description = Lakewood city, OH +station = ('kcle', 0.0015943147714740865) +zone = ('ohz011', 0.0021398245455068522) + +[fips3941720] +centroid = (0.69332745513881466, -1.441734028265359) +description = Lancaster city, OH +station = ('klhq', 0.00093451281075092893) +zone = ('ohz065', 0.00057830176149301158) + +[fips3941755] +centroid = (0.68619242698361427, -1.4708971361626599) +description = Landen CDP, OH +station = ('kmwo', 0.0040921134492531205) +zone = ('ohz071', 0.0024462364314441396) + +[fips3941860] +centroid = (0.69945368298636246, -1.4100915056326746) +description = Lansing CDP, OH +station = ('khlg', 0.0024748104150366605) +zone = ('ohz059', 0.002822596347887472) + +[fips3941902] +centroid = (0.70822148411009611, -1.4552926011061844) +description = La Rue village, OH +station = ('kmnn', 0.0042343710702074881) +zone = ('ohz036', 0.0029367614869614698) + +[fips3941986] +centroid = (0.71711868394457257, -1.4762548780872622) +description = Latty village, OH +station = ('kdfi', 0.0047142288463601842) +zone = ('ohz015', 0.00050299064841430817) + +[fips3942028] +centroid = (0.69804610985121396, -1.473204915219402) +description = Laura village, OH +station = ('kday', 0.0030557922220718933) +zone = ('ohz051', 0.0026062497985528755) + +[fips3942084] +centroid = (0.68894927925689442, -1.4440224341674037) +description = Laurelville village, OH +station = ('klhq', 0.0049094391685908755) +zone = ('ohz074', 0.0034891622967529999) + +[fips3942308] +centroid = (0.71987038749655929, -1.4115956652886283) +description = Leavittsburg CDP, OH +station = ('kyng', 0.0027805393266659185) +zone = ('ohz023', 0.0019928557299674354) + +[fips3942364] +centroid = (0.68805978965690795, -1.4699105189898001) +description = Lebanon city, OH +station = ('kmwo', 0.0030650738357704058) +zone = ('ohz071', 0.0007176336082581155) + +[fips3942476] +centroid = (0.6866444847131733, -1.4582565890550911) +description = Leesburg village, OH +station = ('kiln', 0.0035060350473316189) +zone = ('ohz080', 0.0028194068484301386) + +[fips3942518] +centroid = (0.70602158385441993, -1.4173745551617367) +description = Leesville village, OH +station = ('kphd', 0.0027618284763054573) +zone = ('ohz040', 0.0027359374617548339) + +[fips3942560] +centroid = (0.71347031748937373, -1.4095790420577039) +description = Leetonia village, OH +station = ('kbvi', 0.0051777910417154481) +zone = ('ohz041', 0.0019336151114738903) + +[fips3942602] +centroid = (0.71748392899713742, -1.4655125510741625) +description = Leipsic village, OH +station = ('kfdy', 0.0042752174553226567) +zone = ('ohz016', 0.0026359211822328007) + +[fips3942938] +centroid = (0.69542671970982095, -1.4754784858228052) +description = Lewisburg village, OH +station = ('kday', 0.0044189378401453885) +zone = ('ohz060', 0.0023260706915988454) + +[fips3942966] +centroid = (0.70552756840964281, -1.464062950410626) +description = Lewistown CDP, OH +station = ('kedj', 0.0012499005736378388) +zone = ('ohz044', 0.0016948599856865104) + +[fips3942980] +centroid = (0.69406705586263984, -1.4175260148342248) +description = Lewisville village, OH +station = ('kpkb', 0.0081880669250409734) +zone = ('ohz069', 0.0019441679987508974) + +[fips3942994] +centroid = (0.71001638071284712, -1.4412223151819668) +description = Lexington village, OH +station = ('kmfd', 0.0024951896716253045) +zone = ('ohz029', 0.0017175847959300002) + +[fips3943414] +centroid = (0.72332627904184832, -1.466211956865314) +description = Liberty Center village, OH +station = ('ktol', 0.003650319480989503) +zone = ('ohz005', 0.0020708403535573084) + +[fips3943554] +centroid = (0.71105898804811085, -1.4680329286870899) +description = Lima city, OH +station = ('kaoh', 0.0014482347258141391) +zone = ('ohz025', 0.00054452337526383269) + +[fips3943596] +centroid = (0.71533267106771425, -1.416346992564625) +description = Limaville village, OH +station = ('kpov', 0.0042953676325246676) +zone = ('ohz022', 0.0032333813366268315) + +[fips3943722] +centroid = (0.68492751706152388, -1.4740502479893129) +description = Lincoln Heights village, OH +station = ('khao', 0.0022971219814952519) +zone = ('ohz077', 0.0014309478184098144) + +[fips3943792] +centroid = (0.69731055829125355, -1.4509274628337765) +description = Lincoln Village CDP, OH +station = ('ktzr', 0.00091230326658712742) +zone = ('ohz055', 0.0016672110293645757) + +[fips3943904] +centroid = (0.72294475006736236, -1.4524803520824459) +description = Lindsey village, OH +station = ('ktdz', 0.0042620252115995886) +zone = ('ohz008', 0.0015114351977817929) + +[fips3943918] +centroid = (0.72335167358246477, -1.4270992854077538) +description = Linndale village, OH +station = ('kcle', 0.0013429077791519153) +zone = ('ohz011', 0.0014594507711084372) + +[fips3944030] +centroid = (0.71166063794785839, -1.4095766509566288) +description = Lisbon village, OH +station = ('kbvi', 0.0047976239488681975) +zone = ('ohz041', 0.00022552404650263118) + +[fips3944086] +centroid = (0.6949137325360748, -1.4454052759870515) +description = Lithopolis village, OH +station = ('klck', 0.0015781345180714786) +zone = ('ohz065', 0.0027227688130835198) + +[fips3944128] +centroid = (0.68519090469894228, -1.4259855035455935) +description = Little Hocking CDP, OH +station = ('kpkb', 0.0036574113451670566) +zone = ('wvz009', 0.0026723811194202937) + +[fips3944310] +centroid = (0.69479532939961941, -1.4484047813862364) +description = Lockbourne village, OH +station = ('klck', 0.00073867603766917362) +zone = ('ohz055', 0.0028209645973396535) + +[fips3944352] +centroid = (0.70175341607525277, -1.4701917787987591) +description = Lockington village, OH +station = ('kves', 0.0039240916878678289) +zone = ('ohz043', 0.0022047508721480089) + +[fips3944366] +centroid = (0.6846531862096954, -1.4740414340765904) +description = Lockland village, OH +station = ('kluk', 0.0022932205190032804) +zone = ('ohz077', 0.0012957127694164777) + +[fips3944604] +centroid = (0.71626520048705489, -1.4313406100230253) +description = Lodi village, OH +station = ('kbjj', 0.0034382937618462539) +zone = ('ohz020', 0.0019951279185547342) + +[fips3944632] +centroid = (0.69007477227833547, -1.4382631094352103) +description = Logan city, OH +station = ('klhq', 0.0050869364329871247) +zone = ('ohz074', 0.0012162836925929199) + +[fips3944636] +centroid = (0.69065996372323657, -1.4477025656149891) +description = Logan Elm Village CDP, OH +station = ('klck', 0.0042760513484027636) +zone = ('ohz064', 0.0016032347916245661) + +[fips3944674] +centroid = (0.69627322185033069, -1.4562612588410411) +description = London city, OH +station = ('ktzr', 0.0040244372271123173) +zone = ('ohz054', 0.00050529357360336725) + +[fips3944856] +centroid = (0.72324358534188882, -1.4343067272736194) +description = Lorain city, OH +station = ('klpr', 0.0015506606995411649) +zone = ('ohz010', 0.0025288921507223084) + +[fips3944912] +centroid = (0.71856908745956505, -1.4113826827600073) +description = Lordstown village, OH +station = ('kyng', 0.0029615701538808791) +zone = ('ohz023', 0.0029088387218395738) + +[fips3944954] +centroid = (0.69783853784327443, -1.4217465525781048) +description = Lore City village, OH +station = ('kzzv', 0.0059131041585757391) +zone = ('ohz058', 0.0012860754139917573) + +[fips3945066] +centroid = (0.70919899066426062, -1.4352534985796563) +description = Loudonville village, OH +station = ('kmfd', 0.0049126201223653795) +zone = ('ohz030', 0.0037316897252099709) + +[fips3945094] +centroid = (0.71273270644089592, -1.4183337183054627) +description = Louisville city, OH +station = ('kcak', 0.0028185760742580118) +zone = ('ohz032', 0.0013964906648699425) + +[fips3945108] +centroid = (0.68534746073284614, -1.4708684254964648) +description = Loveland city, OH +station = ('kluk', 0.0034992082725290048) +zone = ('ohz071', 0.0031513680433679554) + +[fips3945122] +centroid = (0.68581068856961802, -1.4706822686784471) +description = Loveland Park CDP, OH +station = ('khao', 0.0036402762234020451) +zone = ('ohz071', 0.0026752456963836414) + +[fips3945164] +centroid = (0.68991814643126148, -1.4225753047201217) +description = Lowell village, OH +station = ('kpkb', 0.0035088488307432838) +zone = ('ohz076', 0.0013037553077571088) + +[fips3945178] +centroid = (0.7162336798407638, -1.4057262277339266) +description = Lowellville village, OH +station = ('kucp', 0.0017090296454523506) +zone = ('ohz033', 0.0030946553229473611) + +[fips3945220] +centroid = (0.69051780665566165, -1.420592697956319) +description = Lower Salem village, OH +station = ('kpkb', 0.0040919251407325356) +zone = ('ohz076', 0.0023334588611034581) + +[fips3945276] +centroid = (0.71041227374707694, -1.4385784729777531) +description = Lucas village, OH +station = ('kmfd', 0.0023190372102599825) +zone = ('ohz029', 0.001932220123006015) + +[fips3945304] +centroid = (0.67847986937892879, -1.4484509278916593) +description = Lucasville CDP, OH +station = ('khts', 0.010697375013288693) +zone = ('ohz088', 0.001222847278620833) + +[fips3945332] +centroid = (0.72347332303132883, -1.4570485245067384) +description = Luckey village, OH +station = ('ktdz', 0.0020018848602154347) +zone = ('ohz006', 0.0024194481511595235) + +[fips3945374] +centroid = (0.69809827774255617, -1.471996676138124) +description = Ludlow Falls village, OH +station = ('kday', 0.0023703214747534292) +zone = ('ohz051', 0.0017621196874228547) + +[fips3945542] +centroid = (0.68486869946573159, -1.4623939095002363) +description = Lynchburg village, OH +station = ('kiln', 0.003373669250435397) +zone = ('ohz080', 0.002720520538956217) + +[fips3945556] +centroid = (0.72460714127330195, -1.4223528974135402) +description = Lyndhurst city, OH +station = ('kcgf', 0.00088092058656963617) +zone = ('ohz011', 0.0026845951626913458) + +[fips3945626] +centroid = (0.72781069311533753, -1.4673316030337609) +description = Lyons village, OH +station = ('kadg', 0.0029042959162751971) +zone = ('ohz002', 0.0018820903614047034) + +[fips3945696] +centroid = (0.68497252910293271, -1.4395247206850144) +description = McArthur village, OH +station = ('kuni', 0.0034206016537333241) +zone = ('ohz084', 0.00012542659063143698) + +[fips3945794] +centroid = (0.72205971105696853, -1.4650532676815) +description = McClure village, OH +station = ('ktol', 0.0041417931313064808) +zone = ('ohz005', 0.0017832139742147571) + +[fips3945808] +centroid = (0.71745973873370483, -1.4624062315247552) +description = McComb village, OH +station = ('kfdy', 0.0022650086984175367) +zone = ('ohz017', 0.0024537297994128159) + +[fips3945822] +centroid = (0.69221182322764729, -1.4283954541767474) +description = McConnelsville village, OH +station = ('kzzv', 0.0051087663829312482) +zone = ('ohz067', 0.00072432042364972422) + +[fips3945892] +centroid = (0.7154765734645413, -1.4530377753389478) +description = McCutchenville CDP, OH +station = ('kmnn', 0.0070269538293033697) +zone = ('ohz027', 0.0027280161692221348) + +[fips3945906] +centroid = (0.67774648202724086, -1.4496740371781642) +description = McDermott CDP, OH +station = ('khts', 0.010695560481791093) +zone = ('ohz088', 0.0010388428266671513) + +[fips3945934] +centroid = (0.71843658206275351, -1.4088838948699272) +description = McDonald village, OH +station = ('kyng', 0.0016835856918831576) +zone = ('ohz033', 0.0026860190048690223) + +[fips3945976] +centroid = (0.72108131438488554, -1.4224717892421861) +description = Macedonia city, OH +station = ('kpov', 0.0036933823292635013) +zone = ('ohz011', 0.0028066372461381783) + +[fips3946046] +centroid = (0.71021985119704456, -1.4623416368891391) +description = McGuffey village, OH +station = ('kaoh', 0.0030550145822998706) +zone = ('ohz026', 0.0017615085881537431) + +[fips3946088] +centroid = (0.68329912486941313, -1.4779303418092993) +description = Mack CDP, OH +station = ('kcvg', 0.0017562375547002969) +zone = ('ohz077', 0.002009535053401677) + +[fips3946144] +centroid = (0.71885064397449672, -1.4087789482220048) +description = McKinley Heights CDP, OH +station = ('kyng', 0.0012818205795787664) +zone = ('ohz023', 0.0023439664114183602) + +[fips3946158] +centroid = (0.6916940189451658, -1.421689358138517) +description = Macksburg village, OH +station = ('kpkb', 0.005198653573740504) +zone = ('ohz068', 0.0023536761458025236) + +[fips3946312] +centroid = (0.68390909998969263, -1.4725884998341829) +description = Madeira city, OH +station = ('kluk', 0.0015981218008014255) +zone = ('ohz077', 0.0022998103804358675) + +[fips3946480] +centroid = (0.72906343809254148, -1.414641421912991) +description = Madison village, OH +station = ('khzy', 0.0045983180752049071) +zone = ('ohz012', 0.0027347011528617215) + +[fips3946830] +centroid = (0.70429292249678199, -1.4532123257174399) +description = Magnetic Springs village, OH +station = ('kdlz', 0.0021970515625486884) +zone = ('ohz045', 0.0017202027381169719) + +[fips3946844] +centroid = (0.70953205184541857, -1.4188075053842089) +description = Magnolia village, OH +station = ('kphd', 0.0036530354236796133) +zone = ('ohz040', 0.0029682529395813626) + +[fips3946872] +centroid = (0.68610533505393978, -1.4696895603064977) +description = Maineville village, OH +station = ('kmwo', 0.0046247629770644894) +zone = ('ohz071', 0.0021088274697166742) + +[fips3946942] +centroid = (0.72116294343400134, -1.466693720098742) +description = Malinta village, OH +station = ('ktol', 0.0055378923735340509) +zone = ('ohz005', 0.00049761003932696389) + +[fips3946970] +centroid = (0.692044777764939, -1.4287865999154119) +description = Malta village, OH +station = ('kzzv', 0.0052372501948501548) +zone = ('ohz067', 0.00055905828615286548) + +[fips3946998] +centroid = (0.71016784038533509, -1.4168874686740902) +description = Malvern village, OH +station = ('kphd', 0.0049845648325366138) +zone = ('ohz040', 0.0022740114185236799) + +[fips3947012] +centroid = (0.67526537432248324, -1.4591754001865109) +description = Manchester village, OH +station = ('kiob', 0.012190276248604477) +zone = ('ohz081', 0.0032640409102176072) + +[fips3947138] +centroid = (0.71151348923862279, -1.4404345433707866) +description = Mansfield city, OH +station = ('kmfd', 0.00089156913752491023) +zone = ('ohz029', 0.00015822389991891847) + +[fips3947180] +centroid = (0.72050598405025812, -1.4175982889185497) +description = Mantua village, OH +station = ('kpov', 0.0011403110123465426) +zone = ('ohz022', 0.0020252339657751009) + +[fips3947306] +centroid = (0.72272424516966549, -1.4235404543431822) +description = Maple Heights city, OH +station = ('kbkl', 0.0025589465890402774) +zone = ('ohz011', 0.0012823366510077785) + +[fips3947362] +centroid = (0.71405793494193526, -1.4145609447811816) +description = Maple Ridge CDP, OH +station = ('kpov', 0.0059868023115223507) +zone = ('ohz033', 0.0040158957594132816) + +[fips3947445] +centroid = (0.71801478834242405, -1.4063810752692749) +description = Maplewood Park CDP, OH +station = ('kyng', 0.0022456708101145245) +zone = ('ohz033', 0.0033694579446240454) + +[fips3947474] +centroid = (0.69788000686630169, -1.4496928692807933) +description = Marble Cliff village, OH +station = ('kosu', 0.0017313934880665849) +zone = ('ohz055', 0.00074909079675006241) + +[fips3947502] +centroid = (0.72492018352793963, -1.4438068161916124) +description = Marblehead village, OH +station = ('cwnb', 0.0061959565778123742) +zone = ('ohz009', 0.0032980462852335349) + +[fips3947558] +centroid = (0.70512732950557555, -1.4453245021492691) +description = Marengo village, OH +station = ('kdlz', 0.0045427608301356311) +zone = ('ohz037', 0.0021615692810739544) + +[fips3947600] +centroid = (0.68318429965792438, -1.4726794663947966) +description = Mariemont village, OH +station = ('kluk', 0.00092091309333238315) +zone = ('ohz077', 0.0023998996732384264) + +[fips3947628] +centroid = (0.68816702268615049, -1.4215464680326562) +description = Marietta city, OH +station = ('kpkb', 0.0016709550008538825) +zone = ('ohz076', 0.00077822315376255237) + +[fips3947754] +centroid = (0.70848680906298434, -1.450769545443056) +description = Marion city, OH +station = ('kmnn', 0.00085024436027586383) +zone = ('ohz036', 0.00051349259815316995) + +[fips3947950] +centroid = (0.69942516430638479, -1.4364641811218872) +description = Marne CDP, OH +station = ('kvta', 0.0024015728175135471) +zone = ('ohz056', 0.0024256064009196407) + +[fips3947992] +centroid = (0.71036600506860659, -1.4554709388491531) +description = Marseilles village, OH +station = ('kmnn', 0.0045561246975876204) +zone = ('ohz027', 0.0027283505847100899) + +[fips3948048] +centroid = (0.71383716824485044, -1.4265068159398719) +description = Marshallville village, OH +station = ('kbjj', 0.0020688485791878074) +zone = ('ohz031', 0.0023969372434952349) + +[fips3948090] +centroid = (0.70283977881486415, -1.4373549448122276) +description = Martinsburg village, OH +station = ('k4i3', 0.0024426067110837877) +zone = ('ohz047', 0.0024233909637785076) + +[fips3948104] +centroid = (0.69996981175276218, -1.4089794167398888) +description = Martins Ferry city, OH +station = ('khlg', 0.0014985909236898533) +zone = ('wvz003', 0.0014715169796720733) + +[fips3948118] +centroid = (0.68627836699598233, -1.4627756828208176) +description = Martinsville village, OH +station = ('kiln', 0.0019979843600062539) +zone = ('ohz072', 0.0016434964495477585) + +[fips3948160] +centroid = (0.70211080714618368, -1.4548952943552602) +description = Marysville city, OH +station = ('kmrt', 0.00018704368074341662) +zone = ('ohz045', 0.0012585832229330717) + +[fips3948188] +centroid = (0.68681844167971962, -1.4713506076089133) +description = Mason city, OH +station = ('kmwo', 0.0033781434236071078) +zone = ('ohz071', 0.0022560116868705644) + +[fips3948244] +centroid = (0.71181112023596527, -1.4229076677695793) +description = Massillon city, OH +station = ('kcak', 0.0025303265140277447) +zone = ('ohz032', 0.0021869886594183285) + +[fips3948272] +centroid = (0.7192236557422329, -1.4056351215469722) +description = Masury CDP, OH +station = ('kyng', 0.0018503646896537106) +zone = ('ohz023', 0.0034938574744392786) + +[fips3948286] +centroid = (0.68972453705733772, -1.4149973294540577) +description = Matamoras village, OH +station = ('kpkb', 0.0060169673433340095) +zone = ('wvz010', 0.0028285860711661824) + +[fips3948342] +centroid = (0.7255527955686174, -1.4602499470470862) +description = Maumee city, OH +station = ('ktol', 0.0017604153741540322) +zone = ('ohz003', 0.00085892458393401806) + +[fips3948468] +centroid = (0.7251715109402268, -1.4212400754824686) +description = Mayfield village, OH +station = ('kcgf', 0.0007472121075748141) +zone = ('ohz012', 0.003611170862240319) + +[fips3948482] +centroid = (0.72461379097775191, -1.4216385516039916) +description = Mayfield Heights city, OH +station = ('kcgf', 0.00094337672528568817) +zone = ('ohz011', 0.0031319907695952745) + +[fips3948706] +centroid = (0.69941422109197482, -1.4583268211041913) +description = Mechanicsburg village, OH +station = ('kmrt', 0.0037537088143449618) +zone = ('ohz052', 0.0030647607393377565) + +[fips3948790] +centroid = (0.71793483480939024, -1.4288925763075928) +description = Medina city, OH +station = ('kcle', 0.0046385449462457299) +zone = ('ohz020', 0.00049588323394140468) + +[fips3948972] +centroid = (0.71604111766439127, -1.4504550196585542) +description = Melmore CDP, OH +station = ('kmnn', 0.0071644191622271796) +zone = ('ohz018', 0.0017323911796874659) + +[fips3949000] +centroid = (0.71713343197675194, -1.4734075653988512) +description = Melrose village, OH +station = ('kdfi', 0.0042728944986709849) +zone = ('ohz015', 0.0021606259787823744) + +[fips3949042] +centroid = (0.70987300191479574, -1.4751155620581453) +description = Mendon village, OH +station = ('kves', 0.0082522092190599715) +zone = ('ohz034', 0.0027468760598201381) + +[fips3949056] +centroid = (0.72763054022994667, -1.4195788885537131) +description = Mentor city, OH +station = ('kcgf', 0.0028889410047109507) +zone = ('ohz012', 0.001293854067978797) + +[fips3949098] +centroid = (0.72804371202377116, -1.4200887515880982) +description = Mentor-on-the-Lake city, OH +station = ('kcgf', 0.0029959773427561897) +zone = ('ohz012', 0.0016953314976560926) + +[fips3949238] +centroid = (0.72800248734683914, -1.464418805591815) +description = Metamora village, OH +station = ('ktol', 0.0026224774840881006) +zone = ('ohz003', 0.0035876184921703812) + +[fips3949294] +centroid = (0.71233829693653017, -1.4210741295771889) +description = Meyers Lake village, OH +station = ('kcak', 0.0018311714748900478) +zone = ('ohz032', 0.00073510361032481767) + +[fips3949420] +centroid = (0.68362387828333171, -1.4785583112741669) +description = Miami Heights CDP, OH +station = ('kcvg', 0.0021743184537409196) +zone = ('ohz077', 0.0023802477267231268) + +[fips3949434] +centroid = (0.69169035375373655, -1.4708019109986712) +description = Miamisburg city, OH +station = ('kmgy', 0.00073792642191757604) +zone = ('ohz061', 0.0021729914559109353) + +[fips3949462] +centroid = (0.68441089960293355, -1.4785259179632497) +description = Miamitown CDP, OH +station = ('kcvg', 0.0029286712470088217) +zone = ('ohz077', 0.0023309188256022697) + +[fips3949504] +centroid = (0.684380234167976, -1.4713183888309216) +description = Miamiville CDP, OH +station = ('kluk', 0.0025113105833086827) +zone = ('ohz078', 0.0035021691034175886) + +[fips3949644] +centroid = (0.7220416119926254, -1.4279155933522041) +description = Middleburg Heights city, OH +station = ('kcle', 0.00070943363024261307) +zone = ('ohz011', 0.0022382562528442175) + +[fips3949700] +centroid = (0.72360132547867018, -1.4150194427756806) +description = Middlefield village, OH +station = ('kpov', 0.0047670091419470973) +zone = ('ohz013', 0.0015297195102825444) + +[fips3949728] +centroid = (0.713071108329565, -1.4738740570013242) +description = Middle Point village, OH +station = ('kaoh', 0.0063024956079550049) +zone = ('ohz024', 0.0018394093327866864) + +[fips3949756] +centroid = (0.68053888665738416, -1.4323320617579129) +description = Middleport village, OH +station = ('k3i2', 0.0014206461107080588) +zone = ('ohz085', 0.0016802490048419539) + +[fips3949840] +centroid = (0.68945657665727911, -1.4724451559427163) +description = Middletown city, OH +station = ('kmwo', 0.00066804930515048115) +zone = ('ohz070', 0.0030517178233700234) + +[fips3949896] +centroid = (0.68603211849181855, -1.4645118490942388) +description = Midland village, OH +station = ('kiln', 0.002796123941266427) +zone = ('ohz072', 0.0023371890879438999) + +[fips3949966] +centroid = (0.70573856126291645, -1.4201763322099632) +description = Midvale village, OH +station = ('kphd', 0.00081962527583772889) +zone = ('ohz039', 0.001380333172310107) + +[fips3950008] +centroid = (0.69347083393686593, -1.4569384465908148) +description = Midway village, OH +station = ('ksgh', 0.0052235800275186733) +zone = ('ohz054', 0.0029954680666106157) + +[fips3950036] +centroid = (0.71163114188349963, -1.4375205067450716) +description = Mifflin village, OH +station = ('kmfd', 0.00215528826328712) +zone = ('ohz030', 0.0017668428471588127) + +[fips3950134] +centroid = (0.72062522494475445, -1.4416745648977434) +description = Milan village, OH +station = ('klpr', 0.0055892696363880594) +zone = ('ohz009', 0.0013206534117627471) + +[fips3950176] +centroid = (0.68365962262641256, -1.4709962010510034) +description = Milford city, OH +station = ('kluk', 0.0022039218840477722) +zone = ('ohz078', 0.0027764069736198565) + +[fips3950218] +centroid = (0.70126118086631273, -1.4562772460569895) +description = Milford Center village, OH +station = ('kmrt', 0.0013775271390601049) +zone = ('ohz045', 0.0022800097789070213) + +[fips3950260] +centroid = (0.72544140865575524, -1.4560499343752098) +description = Millbury village, OH +station = ('ktdz', 0.00075576158236805686) +zone = ('ohz003', 0.0031917216346260225) + +[fips3950316] +centroid = (0.69104404087843052, -1.4588764950988147) +description = Milledgeville village, OH +station = ('kiln', 0.00384832240655093) +zone = ('ohz063', 0.0018642078271548254) + +[fips3950358] +centroid = (0.71739097276117625, -1.4683612425726826) +description = Miller City village, OH +station = ('kdfi', 0.0056443581338118136) +zone = ('ohz016', 0.0014203005016346826) + +[fips3950372] +centroid = (0.70779092883692152, -1.4296723719640914) +description = Millersburg village, OH +station = ('kbjj', 0.0054821823257232335) +zone = ('ohz038', 0.000242978508655164) + +[fips3950400] +centroid = (0.69632322553340043, -1.4406288683297037) +description = Millersport village, OH +station = ('kvta', 0.0023284849693731482) +zone = ('ohz065', 0.0027917881025127647) + +[fips3950456] +centroid = (0.68828450079810222, -1.4328422913114411) +description = Millfield CDP, OH +station = ('kuni', 0.0043373909020344671) +zone = ('ohz075', 0.0019082656989944412) + +[fips3950540] +centroid = (0.68752667883688634, -1.4774718787213852) +description = Millville village, OH +station = ('khao', 0.0018919097283034965) +zone = ('ohz070', 0.0013191317066213327) + +[fips3950708] +centroid = (0.72083387905683038, -1.4631035952806821) +description = Milton Center village, OH +station = ('ktol', 0.0049474445797418531) +zone = ('ohz005', 0.0031800113648624137) + +[fips3950722] +centroid = (0.69518790630827054, -1.4165921938712378) +description = Miltonsburg village, OH +station = ('khlg', 0.0090343875554691269) +zone = ('ohz069', 0.0021203575962840211) + +[fips3950764] +centroid = (0.70863428938477779, -1.4200164600504805) +description = Mineral City village, OH +station = ('kphd', 0.0024708426504502102) +zone = ('ohz039', 0.0031801798541602616) + +[fips3950778] +centroid = (0.71801234488147125, -1.4096499547852126) +description = Mineral Ridge CDP, OH +station = ('kyng', 0.0023418096597742307) +zone = ('ohz033', 0.0021752808644050548) + +[fips3950834] +centroid = (0.71088436785644893, -1.4155008394899657) +description = Minerva village, OH +station = ('kcak', 0.0056245075714223512) +zone = ('ohz040', 0.002641948153706471) + +[fips3950862] +centroid = (0.69951410628506638, -1.4476645523438805) +description = Minerva Park village, OH +station = ('kcmh', 0.0016098288091586799) +zone = ('ohz055', 0.0020967758502639165) + +[fips3950876] +centroid = (0.67826060366500074, -1.4459859121226049) +description = Minford CDP, OH +station = ('khts', 0.0095495442528449083) +zone = ('ohz088', 0.0021986906203716352) + +[fips3950904] +centroid = (0.7038096233736123, -1.4070745818475547) +description = Mingo Junction village, OH +station = ('khlg', 0.0027988173974125459) +zone = ('wvz002', 0.0010728384148727874) + +[fips3950918] +centroid = (0.70504095316089432, -1.4726899383703087) +description = Minster village, OH +station = ('kves', 0.0039662822050560691) +zone = ('ohz043', 0.002572913334748655) + +[fips3951058] +centroid = (0.7165008897492442, -1.4208278985263176) +description = Mogadore village, OH +station = ('kakr', 0.00084819018655961094) +zone = ('ohz021', 0.0020811270441602574) + +[fips3951212] +centroid = (0.68385738588395606, -1.4766640530770998) +description = Monfort Heights CDP, OH +station = ('kcvg', 0.002445462684316598) +zone = ('ohz077', 0.00089638462383229947) + +[fips3951310] +centroid = (0.68846425225776509, -1.4725400844007326) +description = Monroe city, OH +station = ('kmwo', 0.0015179479165400157) +zone = ('ohz070', 0.0027684603074295427) + +[fips3951618] +centroid = (0.71984087397890817, -1.4434322336275494) +description = Monroeville village, OH +station = ('klpr', 0.0070562094389801013) +zone = ('ohz019', 0.0021854384451832601) + +[fips3951674] +centroid = (0.70667348178333222, -1.4756718857572186) +description = Montezuma village, OH +station = ('kves', 0.0050579646440507744) +zone = ('ohz034', 0.0013759450484395813) + +[fips3951716] +centroid = (0.6850632338641589, -1.472150212752422) +description = Montgomery city, OH +station = ('kluk', 0.0027982576784580599) +zone = ('ohz077', 0.0028058798371012055) + +[fips3951772] +centroid = (0.72577960110491413, -1.4764360607169116) +description = Montpelier village, OH +station = ('kdfi', 0.004852704361903503) +zone = ('ohz001', 0.00042136975135596529) + +[fips3951816] +centroid = (0.71832070965371364, -1.4249499997003854) +description = Montrose-Ghent CDP, OH +station = ('kakr', 0.0031712365768085606) +zone = ('ohz021', 0.0015615513018422667) + +[fips3952010] +centroid = (0.69288199475382817, -1.4703310386197759) +description = Moraine city, OH +station = ('kmgy', 0.0017372739164110106) +zone = ('ohz061', 0.0011516727196440116) + +[fips3952052] +centroid = (0.72330566670338237, -1.4213453886495342) +description = Moreland Hills village, OH +station = ('kcgf', 0.0022521447614609752) +zone = ('ohz013', 0.0035244829477835827) + +[fips3952178] +centroid = (0.72024470826123455, -1.4101522605439365) +description = Morgandale CDP, OH +station = ('kyng', 0.0017196581522716189) +zone = ('ohz023', 0.00099473753090514655) + +[fips3952276] +centroid = (0.7101980694879797, -1.4522847181265897) +description = Morral village, OH +station = ('kmnn', 0.002300065173649138) +zone = ('ohz036', 0.0019280056210419678) + +[fips3952346] +centroid = (0.69923228797074699, -1.414947482850621) +description = Morristown village, OH +station = ('khlg', 0.0058969605651917672) +zone = ('ohz059', 0.0013716651724880226) + +[fips3952374] +centroid = (0.68677437211610659, -1.46823233255413) +description = Morrow village, OH +station = ('kmgy', 0.0046193468073650566) +zone = ('ohz071', 0.0014881288527530292) + +[fips3952416] +centroid = (0.67823358596817984, -1.4700601635198662) +description = Moscow village, OH +station = ('kluk', 0.0049084425358797779) +zone = ('kyz093', 0.0025480985456453227) + +[fips3952598] +centroid = (0.71381383319275127, -1.4583420578285613) +description = Mount Blanchard village, OH +station = ('kfdy', 0.0025193955265271429) +zone = ('ohz017', 0.0023119254075303184) + +[fips3952612] +centroid = (0.68235731029845192, -1.4712463067328141) +description = Mount Carmel CDP, OH +station = ('kluk', 0.0016330099477988949) +zone = ('ohz078', 0.0021276011900960169) + +[fips3952668] +centroid = (0.71444700373878978, -1.4629954895868136) +description = Mount Cory village, OH +station = ('kfdy', 0.0025121121082911238) +zone = ('ohz017', 0.0023771092280351126) + +[fips3952682] +centroid = (0.71026400802711998, -1.425978941107606) +description = Mount Eaton village, OH +station = ('kbjj', 0.0038301474771942146) +zone = ('ohz031', 0.0033880685712814151) + +[fips3952738] +centroid = (0.70780164515852884, -1.4456196373257815) +description = Mount Gilead village, OH +station = ('kmnn', 0.0033481253615526042) +zone = ('ohz037', 0.00068996558970397528) + +[fips3952752] +centroid = (0.68475815031091036, -1.4756319002640552) +description = Mount Healthy city, OH +station = ('khao', 0.0023568323680407772) +zone = ('ohz077', 0.00067261362834513132) + +[fips3952780] +centroid = (0.68539502095496307, -1.4760105145386906) +description = Mount Healthy Heights CDP, OH +station = ('khao', 0.0018261653095725141) +zone = ('ohz077', 0.0013547379750026693) + +[fips3952906] +centroid = (0.6811578851298965, -1.4647200668740019) +description = Mount Orab village, OH +station = ('kiln', 0.0073284505988545929) +zone = ('ohz079', 0.0017835411795424684) + +[fips3952976] +centroid = (0.7012016302322347, -1.4102200316787914) +description = Mount Pleasant village, OH +station = ('khlg', 0.0020023590606364954) +zone = ('wvz003', 0.0027781207706050934) + +[fips3953032] +centroid = (0.68397976837110597, -1.46992547646149) +description = Mount Repose CDP, OH +station = ('kluk', 0.0030773421570924643) +zone = ('ohz078', 0.0026381403548336262) + +[fips3953046] +centroid = (0.69325835755372822, -1.4532311578200687) +description = Mount Sterling village, OH +station = ('ktzr', 0.0035728437399806948) +zone = ('ohz054', 0.0035328264380554341) + +[fips3953102] +centroid = (0.70485436001056356, -1.439452673493492) +description = Mount Vernon city, OH +station = ('k4i3', 0.001136963780614911) +zone = ('ohz047', 0.00074308216805876021) + +[fips3953144] +centroid = (0.70744325924992435, -1.457703790921107) +description = Mount Victory village, OH +station = ('kedj', 0.0048667391040622225) +zone = ('ohz026', 0.0028964026437418838) + +[fips3953186] +centroid = (0.68142027792964133, -1.4617509825636792) +description = Mowrystown village, OH +station = ('kiln', 0.0068342262611733179) +zone = ('ohz079', 0.002455504629829327) + +[fips3953270] +centroid = (0.68412614913547065, -1.470457295737865) +description = Mulberry CDP, OH +station = ('kluk', 0.0028153908624832464) +zone = ('ohz078', 0.002939052567599612) + +[fips3953312] +centroid = (0.71802105407443872, -1.4213274815714085) +description = Munroe Falls city, OH +station = ('kakr', 0.0018974759787269604) +zone = ('ohz021', 0.0012847918670348549) + +[fips3953410] +centroid = (0.68956112187947349, -1.4341236771416703) +description = Murray City village, OH +station = ('kuni', 0.0052815671817480212) +zone = ('ohz075', 0.0034858742651786637) + +[fips3953480] +centroid = (0.69951831252856378, -1.4597410963036677) +description = Mutual village, OH +station = ('ksgh', 0.0049799019025569104) +zone = ('ohz052', 0.0020420796773202806) + +[fips3953550] +centroid = (0.72252651681870694, -1.4682664537410066) +description = Napoleon city, OH +station = ('ktol', 0.0053479471054758568) +zone = ('ohz005', 0.0013429354865042088) + +[fips3953634] +centroid = (0.70853011068172622, -1.4331421039703487) +description = Nashville village, OH +station = ('kbjj', 0.0056194130553238906) +zone = ('ohz038', 0.0025074692271106246) + +[fips3953690] +centroid = (0.71080546152096613, -1.4226774937478261) +description = Navarre village, OH +station = ('kcak', 0.0034289613261463503) +zone = ('ohz032', 0.0024783186739966222) + +[fips3953718] +centroid = (0.72414784042734703, -1.4638898312021205) +description = Neapolis CDP, OH +station = ('ktol', 0.0018897920159841855) +zone = ('ohz003', 0.0036146886958049176) + +[fips3953788] +centroid = (0.69881602694414624, -1.4104963871125522) +description = Neffs CDP, OH +station = ('khlg', 0.003135200011656702) +zone = ('ohz059', 0.0023480297745225656) + +[fips3953802] +centroid = (0.71196771117645419, -1.4056162545377582) +description = Negley CDP, OH +station = ('kbvi', 0.0018525722671184895) +zone = ('paz020', 0.0031311119160532192) + +[fips3953816] +centroid = (0.70403976248878031, -1.4324047023613813) +description = Nellie village, OH +station = ('kzzv', 0.0071531494168763131) +zone = ('ohz048', 0.0021068546914293613) + +[fips3953886] +centroid = (0.68871502116469174, -1.4349507886741903) +description = Nelsonville city, OH +station = ('kuni', 0.0043751490853190019) +zone = ('ohz075', 0.0032000767857302275) + +[fips3953942] +centroid = (0.71242205528733338, -1.4509129591476926) +description = Nevada village, OH +station = ('kmnn', 0.003629283612259409) +zone = ('ohz028', 0.0028484573000870103) + +[fips3953956] +centroid = (0.67742132718759429, -1.4697517987476241) +description = Neville village, OH +station = ('kluk', 0.0057312960867015412) +zone = ('kyz097', 0.0027234117858655352) + +[fips3953970] +centroid = (0.69958159816724108, -1.445113561655873) +description = New Albany village, OH +station = ('kcmh', 0.0018370533867110006) +zone = ('ohz055', 0.0034393036489469139) + +[fips3954012] +centroid = (0.70322085400374457, -1.4080466255211603) +description = New Alexandria village, OH +station = ('khlg', 0.0022058338379971295) +zone = ('wvz002', 0.0013514287758888072) + +[fips3954040] +centroid = (0.69934875379173256, -1.4385863269593873) +description = Newark city, OH +station = ('kvta', 0.0010811322582498092) +zone = ('ohz056', 0.00087190397695232236) + +[fips3954068] +centroid = (0.70135047191084476, -1.4136169834552406) +description = New Athens village, OH +station = ('khlg', 0.0046017041139587182) +zone = ('ohz049', 0.0023039107679280373) + +[fips3954082] +centroid = (0.68550625078819261, -1.4777808194522808) +description = New Baltimore CDP, OH +station = ('khao', 0.002605793578047735) +zone = ('ohz077', 0.0022368576294945126) + +[fips3954110] +centroid = (0.71913926907289905, -1.4689948669043262) +description = New Bavaria village, OH +station = ('kdfi', 0.0041607116461505403) +zone = ('ohz005', 0.0026182258463400081) + +[fips3954152] +centroid = (0.70831911782845269, -1.4540778519467963) +description = New Bloomington village, OH +station = ('kmnn', 0.0033084667755540905) +zone = ('ohz036', 0.0020107082402587247) + +[fips3954166] +centroid = (0.67632513824429419, -1.4474582718795874) +description = New Boston village, OH +station = ('khts', 0.0085003010137827285) +zone = ('ohz088', 0.0012352868809616861) + +[fips3954194] +centroid = (0.70571992114650517, -1.4726686279001417) +description = New Bremen village, OH +station = ('kves', 0.0045714210338379914) +zone = ('ohz043', 0.0029199565357254675) + +[fips3954250] +centroid = (0.7234574579884282, -1.4252911243026878) +description = Newburgh Heights village, OH +station = ('kbkl', 0.0014366871131225472) +zone = ('ohz011', 0.00047067408734036338) + +[fips3954264] +centroid = (0.68525651162552481, -1.4757070890482313) +description = New Burlington CDP, OH +station = ('khao', 0.0018821660412949243) +zone = ('ohz077', 0.0011743184651994355) + +[fips3954320] +centroid = (0.70069012658835272, -1.4527537753630633) +description = New California CDP, OH +station = ('kmrt', 0.0019813359509211303) +zone = ('ohz045', 0.0032173830471778019) + +[fips3954334] +centroid = (0.6971760283125098, -1.4665615986743661) +description = New Carlisle city, OH +station = ('kffo', 0.0019757255394201832) +zone = ('ohz053', 0.0033069283292516097) + +[fips3954432] +centroid = (0.70294940294518193, -1.4241035499197532) +description = Newcomerstown village, OH +station = ('kphd', 0.0040866668866425546) +zone = ('ohz039', 0.0033004993958881956) + +[fips3954446] +centroid = (0.69804240975319976, -1.4265958102784311) +description = New Concord village, OH +station = ('kzzv', 0.002305092030282751) +zone = ('ohz058', 0.0034070324233060807) + +[fips3954562] +centroid = (0.71478716841000345, -1.4239245838582537) +description = New Franklin city, OH +station = ('kakr', 0.0020803708646900715) +zone = ('ohz021', 0.0030746934431950105) + +[fips3954628] +centroid = (0.70780026634841975, -1.4652594957859157) +description = New Hampshire CDP, OH +station = ('kaoh', 0.0026838764274536319) +zone = ('ohz044', 0.0038118581649399614) + +[fips3954684] +centroid = (0.68556836705627111, -1.4791767512413185) +description = New Haven CDP, OH +station = ('khao', 0.0035004881779513971) +zone = ('ohz077', 0.0031771045766570026) + +[fips3954698] +centroid = (0.71608855571346053, -1.4431686016440357) +description = New Haven CDP, OH +station = ('kmfd', 0.0043345517972863071) +zone = ('ohz019', 0.0023595753233579368) + +[fips3954726] +centroid = (0.69035828356202944, -1.4531502618092389) +description = New Holland village, OH +station = ('ktzr', 0.0062611505935099617) +zone = ('ohz063', 0.0026487668869937921) + +[fips3954838] +centroid = (0.70675779863949606, -1.4715987934285468) +description = New Knoxville village, OH +station = ('kaoh', 0.0053548905529626958) +zone = ('ohz035', 0.001712285262754144) + +[fips3954852] +centroid = (0.69366439095091215, -1.4729575147979319) +description = New Lebanon village, OH +station = ('kmgy', 0.0033156215542709117) +zone = ('ohz061', 0.0014027876485422513) + +[fips3954866] +centroid = (0.6931886491034035, -1.4347768840675217) +description = New Lexington village, OH +station = ('kzzv', 0.0057844887889335183) +zone = ('ohz066', 0.00053093953483401217) + +[fips3954908] +centroid = (0.71697598582492961, -1.438259164991101) +description = New London village, OH +station = ('kmfd', 0.0048162704220533281) +zone = ('ohz019', 0.0027813636090533961) + +[fips3954978] +centroid = (0.69756953024566448, -1.4784346372433705) +description = New Madison village, OH +station = ('kves', 0.0046988652881995718) +zone = ('ohz042', 0.0031226482860583363) + +[fips3955062] +centroid = (0.68634210642026527, -1.4349582237768039) +description = New Marshfield CDP, OH +station = ('kuni', 0.0020061527595383404) +zone = ('ohz075', 0.0023255933760701775) + +[fips3955104] +centroid = (0.68822041230796904, -1.4755114899989603) +description = New Miami village, OH +station = ('khao', 0.0011871174468029862) +zone = ('ohz070', 0.00048408087122460555) + +[fips3955118] +centroid = (0.71498365757719307, -1.4060079587817835) +description = New Middletown village, OH +station = ('kucp', 0.0021759455382959828) +zone = ('ohz033', 0.002983960591612904) + +[fips3955188] +centroid = (0.69563012038084837, -1.4798967693709362) +description = New Paris village, OH +station = ('kves', 0.0069391743470361995) +zone = ('ohz060', 0.002783605401683762) + +[fips3955216] +centroid = (0.70662244835600385, -1.4213987782713524) +description = New Philadelphia city, OH +station = ('kphd', 0.00046566098300123744) +zone = ('ohz039', 0.00091095340357610758) + +[fips3955244] +centroid = (0.71292312186228857, -1.4328683490771734) +description = New Pittsburg CDP, OH +station = ('kbjj', 0.0028443939896321659) +zone = ('ohz031', 0.0027788469278283044) + +[fips3955314] +centroid = (0.70328415709571435, -1.4725229801740631) +description = Newport CDP, OH +station = ('kves', 0.0027095021046881465) +zone = ('ohz043', 0.002280149728409129) + +[fips3955342] +centroid = (0.68762525503303895, -1.4175711141420964) +description = Newport CDP, OH +station = ('kpkb', 0.0032918077875725778) +zone = ('wvz010', 0.00094049246997047152) + +[fips3955384] +centroid = (0.68021982301682704, -1.4709907032638596) +description = New Richmond village, OH +station = ('kluk', 0.0028656653700323263) +zone = ('kyz093', 0.0014090199244969493) + +[fips3955398] +centroid = (0.71649057485336498, -1.4541910190954956) +description = New Riegel village, OH +station = ('kfdy', 0.0046181245435896112) +zone = ('ohz018', 0.0028129892487453408) + +[fips3955552] +centroid = (0.69077246764682021, -1.4351628636316003) +description = New Straitsville village, OH +station = ('kuni', 0.0064288891717591695) +zone = ('ohz066', 0.0027725101329915437) + +[fips3955650] +centroid = (0.71888209480761756, -1.4131908438650735) +description = Newton Falls city, OH +station = ('kpov', 0.0037182417988100478) +zone = ('ohz023', 0.0035473536366520363) + +[fips3955664] +centroid = (0.6838469139084441, -1.4676208913572788) +description = Newtonsville village, OH +station = ('kluk', 0.0046649224680500494) +zone = ('ohz078', 0.0024918806939358894) + +[fips3955678] +centroid = (0.68284240711075117, -1.4722133587647592) +description = Newtown village, OH +station = ('kluk', 0.00097540897310458734) +zone = ('ohz077', 0.0028694772725318431) + +[fips3955748] +centroid = (0.6863693859164739, -1.4607123371258173) +description = New Vienna village, OH +station = ('kiln', 0.0022363823094176962) +zone = ('ohz072', 0.0022018427816910039) + +[fips3955776] +centroid = (0.71489562316972233, -1.446087821897629) +description = New Washington village, OH +station = ('kmfd', 0.0051184372453602607) +zone = ('ohz028', 0.0020961273830777893) + +[fips3955790] +centroid = (0.71293226738756899, -1.4070673736377439) +description = New Waterford village, OH +station = ('kbvi', 0.0032229477289273324) +zone = ('ohz041', 0.0025107537262146779) + +[fips3955818] +centroid = (0.70401387925597314, -1.4773096852739975) +description = New Weston village, OH +station = ('kves', 0.0028299221282923771) +zone = ('ohz034', 0.003547695797115558) + +[fips3955874] +centroid = (0.72222731502503756, -1.4751670143644942) +description = Ney village, OH +station = ('kdfi', 0.001412168423923746) +zone = ('ohz004', 0.0010639901723140893) + +[fips3955916] +centroid = (0.7188628438259681, -1.4094074936455254) +description = Niles city, OH +station = ('kyng', 0.0015703122084011268) +zone = ('ohz023', 0.0022638513492991121) + +[fips3956154] +centroid = (0.71872230991459751, -1.4602865989613785) +description = North Baltimore village, OH +station = ('kfdy', 0.0028465054340751817) +zone = ('ohz017', 0.0031042415727844629) + +[fips3956182] +centroid = (0.68328212536249877, -1.4789106583435594) +description = North Bend village, OH +station = ('kcvg', 0.0019651225359620886) +zone = ('ohz077', 0.002729792201901358) + +[fips3956280] +centroid = (0.68498303598502974, -1.4761909292234692) +description = Northbrook CDP, OH +station = ('khao', 0.00226029326401996) +zone = ('ohz077', 0.0010240909585626649) + +[fips3956294] +centroid = (0.71339022432999966, -1.4206471173223962) +description = North Canton city, OH +station = ('kcak', 0.0010175759374768316) +zone = ('ohz032', 0.001132527961965134) + +[fips3956322] +centroid = (0.68446835584190924, -1.4757106146133203) +description = North College Hill city, OH +station = ('khao', 0.0026528536351847539) +zone = ('ohz077', 0.00040025420255758741) + +[fips3956420] +centroid = (0.71741409837376513, -1.4418663765825377) +description = North Fairfield village, OH +station = ('kmfd', 0.0051862221496725095) +zone = ('ohz019', 0.00074714959574518117) + +[fips3956448] +centroid = (0.72156335687099382, -1.4229415795169456) +description = Northfield village, OH +station = ('kbkl', 0.0037888300934228094) +zone = ('ohz011', 0.00222293795500172) + +[fips3956553] +centroid = (0.6850932709805857, -1.4764208239925418) +description = Northgate CDP, OH +station = ('khao', 0.0022344341971007658) +zone = ('ohz077', 0.0012114127057481917) + +[fips3956588] +centroid = (0.69793296015580719, -1.4651043185621209) +description = North Hampton village, OH +station = ('ksgh', 0.002941402455841778) +zone = ('ohz053', 0.0024897889498062785) + +[fips3956700] +centroid = (0.7317362702156307, -1.4080566960709446) +description = North Kingsville village, OH +station = ('khzy', 0.0024995634167166983) +zone = ('ohz089', 0.0016236607144795602) + +[fips3956756] +centroid = (0.71282524379783663, -1.4248856494108644) +description = North Lawrence CDP, OH +station = ('kcak', 0.0028259446084149915) +zone = ('ohz031', 0.0032874868595972671) + +[fips3956770] +centroid = (0.70198179240787617, -1.458369703843913) +description = North Lewisburg village, OH +station = ('kmrt', 0.0027777027871989874) +zone = ('ohz052', 0.0031650550642229988) + +[fips3956812] +centroid = (0.73006801470340443, -1.4146061313555158) +description = North Madison CDP, OH +station = ('khzy', 0.004637399668391144) +zone = ('ohz012', 0.0033549158690681304) + +[fips3956882] +centroid = (0.72282781300747878, -1.429756950619643) +description = North Olmsted city, OH +station = ('kcle', 0.00094082097235499229) +zone = ('ohz010', 0.0036877661920352652) + +[fips3956910] +centroid = (0.72955130997835138, -1.4158847072056493) +description = North Perry village, OH +station = ('khzy', 0.0055280617870177799) +zone = ('ohz012', 0.002326858843959204) + +[fips3956924] +centroid = (0.72312120285473902, -1.4229733445093318) +description = North Randall village, OH +station = ('kcgf', 0.0024329547980355701) +zone = ('ohz011', 0.0016844826277774977) + +[fips3956938] +centroid = (0.69808140040868938, -1.4621845223498744) +description = Northridge CDP, OH +station = ('ksgh', 0.0028643268456206203) +zone = ('ohz053', 0.0014045065199513758) + +[fips3956966] +centroid = (0.72232461713083629, -1.4316015716527832) +description = North Ridgeville city, OH +station = ('klpr', 0.002171172174930275) +zone = ('ohz010', 0.0022912464607454043) + +[fips3956994] +centroid = (0.71196280680125623, -1.4461243167322879) +description = North Robinson village, OH +station = ('kmnn', 0.0041379916194613708) +zone = ('ohz028', 0.0013152686745131373) + +[fips3957008] +centroid = (0.72105946286265066, -1.4267235509263845) +description = North Royalton city, OH +station = ('kcle', 0.0020381838425690452) +zone = ('ohz011', 0.0022390645117221653) + +[fips3957064] +centroid = (0.70379112288354118, -1.476007146053234) +description = North Star village, OH +station = ('kves', 0.0022300355310211793) +zone = ('ohz042', 0.0033996771144807693) + +[fips3957190] +centroid = (0.72623261876556178, -1.4570480532678403) +description = Northwood city, OH +station = ('ktdz', 0.00075747090425026798) +zone = ('ohz003', 0.0023017202771262401) + +[fips3957218] +centroid = (0.69788944909755501, -1.4310389124085254) +description = North Zanesville CDP, OH +station = ('kzzv', 0.0013885273191635364) +zone = ('ohz057', 0.00073788413383776982) + +[fips3957260] +centroid = (0.71608993452356962, -1.4249834053022685) +description = Norton city, OH +station = ('kakr', 0.0023562230602190773) +zone = ('ohz021', 0.0022564694052087013) + +[fips3957302] +centroid = (0.71985359742915522, -1.4417981691153696) +description = Norwalk city, OH +station = ('klpr', 0.0058764348212423908) +zone = ('ohz019', 0.0017225141906875678) + +[fips3957372] +centroid = (0.69785799826443407, -1.4275460547896794) +description = Norwich village, OH +station = ('kzzv', 0.0015594024325579616) +zone = ('ohz057', 0.002060100887649336) + +[fips3957386] +centroid = (0.68347943483443674, -1.473991098780963) +description = Norwood city, OH +station = ('kluk', 0.0011673720303817916) +zone = ('ohz077', 0.0013511142695116661) + +[fips3957582] +centroid = (0.72440112260839651, -1.4509788104203702) +description = Oak Harbor village, OH +station = ('ktdz', 0.0046763107922352335) +zone = ('ohz007', 0.00059557761052473311) + +[fips3957596] +centroid = (0.67886673906092598, -1.4411026554084501) +description = Oak Hill village, OH +station = ('k3i2', 0.0064018176273793401) +zone = ('ohz083', 0.0022569576237540918) + +[fips3957750] +centroid = (0.72198864124982742, -1.4225135549711865) +description = Oakwood village, OH +station = ('kcgf', 0.0034970354578213051) +zone = ('ohz011', 0.0022593844888200913) + +[fips3957764] +centroid = (0.69324851389674691, -1.469101628694671) +description = Oakwood city, OH +station = ('kmgy', 0.0022477316243316838) +zone = ('ohz061', 0.0016839201631000124) + +[fips3957792] +centroid = (0.71720975522494168, -1.4726480155616757) +description = Oakwood village, OH +station = ('kdfi', 0.0042588441290806059) +zone = ('ohz016', 0.0034519707052355414) + +[fips3957834] +centroid = (0.72057834540104593, -1.4349907916206459) +description = Oberlin city, OH +station = ('klpr', 0.0012089058849301809) +zone = ('ohz010', 0.0009030538835572635) + +[fips3957862] +centroid = (0.69576845517736141, -1.4476556686179878) +description = Obetz village, OH +station = ('klck', 0.00084994635560704367) +zone = ('ohz055', 0.002027239204732174) + +[fips3957876] +centroid = (0.71286379812101319, -1.4502772055143609) +description = Oceola CDP, OH +station = ('kmnn', 0.0039865901388314706) +zone = ('ohz028', 0.0023143428401418628) + +[fips3957918] +centroid = (0.69138600323877375, -1.4592791600105421) +description = Octa village, OH +station = ('kiln', 0.00391148208795757) +zone = ('ohz063', 0.0022781983295968007) + +[fips3958002] +centroid = (0.71157586730608902, -1.4768318490313865) +description = Ohio City village, OH +station = ('kves', 0.010019111722320019) +zone = ('ohz024', 0.0015377841750984632) + +[fips3958149] +centroid = (0.6865290137298613, -1.473118538874721) +description = Olde West Chester CDP, OH +station = ('khao', 0.0016232914870677791) +zone = ('ohz070', 0.0029394848280919761) + +[fips3958156] +centroid = (0.71980654335252148, -1.4512660043487857) +description = Old Fort CDP, OH +station = ('ktdz', 0.0071423782056268849) +zone = ('ohz008', 0.0020023174045032165) + +[fips3958226] +centroid = (0.69878825875574713, -1.4214697608120312) +description = Old Washington village, OH +station = ('kphd', 0.0074972995168800854) +zone = ('ohz058', 0.00071405212430159914) + +[fips3958422] +centroid = (0.72196748785929321, -1.4295001428735046) +description = Olmsted Falls city, OH +station = ('kcle', 0.00092988505316508093) +zone = ('ohz010', 0.0034596645817657175) + +[fips3958520] +centroid = (0.71154520187113146, -1.4419370449639508) +description = Ontario city, OH +station = ('kmfd', 0.0015684421520189655) +zone = ('ohz029', 0.0010682252535244674) + +[fips3958604] +centroid = (0.72331530092085328, -1.4219849121940495) +description = Orange village, OH +station = ('kcgf', 0.0021635327916968935) +zone = ('ohz011', 0.0024420112609760663) + +[fips3958674] +centroid = (0.72167849624174796, -1.405559513883776) +description = Orangeville village, OH +station = ('kyng', 0.0024662591968025731) +zone = ('ohz023', 0.0030359716485445416) + +[fips3958730] +centroid = (0.72722804985114431, -1.4559447433811921) +description = Oregon city, OH +station = ('ktdz', 0.0019407418241407484) +zone = ('ohz003', 0.0032251726666807819) + +[fips3958800] +centroid = (0.69473319567824854, -1.4512782565601348) +description = Orient village, OH +station = ('ktzr', 0.0016796220393926905) +zone = ('ohz064', 0.0033264542163197234) + +[fips3958828] +centroid = (0.71295102967702795, -1.4272797699057025) +description = Orrville city, OH +station = ('kbjj', 0.0014354265433739214) +zone = ('ohz031', 0.0015098991178134665) + +[fips3958856] +centroid = (0.72494760265048841, -1.4112646810492802) +description = Orwell village, OH +station = ('khzy', 0.0047848397958593107) +zone = ('ohz014', 0.0029248921744238609) + +[fips3958912] +centroid = (0.70405520865266036, -1.4747269819534814) +description = Osgood village, OH +station = ('kves', 0.0024755255432974076) +zone = ('ohz034', 0.0039257568524904357) + +[fips3958940] +centroid = (0.70273779922667012, -1.4523870642339267) +description = Ostrander village, OH +station = ('kdlz', 0.0013525790060264112) +zone = ('ohz045', 0.002166080678571537) + +[fips3958982] +centroid = (0.7159310921083456, -1.4666836670022505) +description = Ottawa village, OH +station = ('kaoh', 0.0055872070794871359) +zone = ('ohz016', 0.0012768023679355547) + +[fips3959010] +centroid = (0.72727967669041826, -1.4598161978213808) +description = Ottawa Hills village, OH +station = ('kduh', 0.0011623756228864954) +zone = ('ohz003', 0.00090228591115319365) + +[fips3959052] +centroid = (0.71443204626710011, -1.4719688032299696) +description = Ottoville village, OH +station = ('kaoh', 0.0058856717015663158) +zone = ('ohz016', 0.00311899665738838) + +[fips3959066] +centroid = (0.67832102696370489, -1.4519084600464449) +description = Otway village, OH +station = ('khts', 0.012303545929927828) +zone = ('ohz088', 0.0028618431165462303) + +[fips3959220] +centroid = (0.68284574068962256, -1.46846186080406) +description = Owensville village, OH +station = ('kluk', 0.0038152324092135224) +zone = ('ohz078', 0.0013530195119255835) + +[fips3959234] +centroid = (0.68950347365428022, -1.4791268173714189) +description = Oxford city, OH +station = ('khao', 0.0039476393708774539) +zone = ('ohz070', 0.0025986504223291301) + +[fips3959416] +centroid = (0.72821606328740562, -1.418139602786056) +description = Painesville city, OH +station = ('kcgf', 0.0040625785555334221) +zone = ('ohz012', 0.00051601909811285491) + +[fips3959598] +centroid = (0.69900701832419199, -1.4790674238169734) +description = Palestine village, OH +station = ('kves', 0.0038756707094916641) +zone = ('ohz042', 0.0022119004095108074) + +[fips3959724] +centroid = (0.69156837269231464, -1.4532490299916092) +description = Pancoastburg CDP, OH +station = ('ktzr', 0.0051277676665614762) +zone = ('ohz064', 0.0032511738095653249) + +[fips3959738] +centroid = (0.71467244791826989, -1.4654081978381854) +description = Pandora village, OH +station = ('kaoh', 0.0043839566044915693) +zone = ('ohz016', 0.0025887849546948334) + +[fips3959920] +centroid = (0.69617932313657338, -1.4667640045077199) +description = Park Layne CDP, OH +station = ('kffo', 0.00096701459125382561) +zone = ('ohz053', 0.003462419688828391) + +[fips3961000] +centroid = (0.72227831354578087, -1.4264320111281312) +description = Parma city, OH +station = ('kcle', 0.0016162885720908714) +zone = ('ohz011', 0.0011588246712893639) + +[fips3961028] +centroid = (0.72227634132372609, -1.4270034144719417) +description = Parma Heights city, OH +station = ('kcle', 0.0011973949416238879) +zone = ('ohz011', 0.0015208612412183427) + +[fips3961056] +centroid = (0.70792203797033137, -1.4223555677672959) +description = Parral village, OH +station = ('kphd', 0.0019460476476169852) +zone = ('ohz039', 0.0021122059891969841) + +[fips3961112] +centroid = (0.69831291833396636, -1.4436444831178845) +description = Pataskala city, OH +station = ('kcmh', 0.0022612473604427569) +zone = ('ohz056', 0.0034004490505558818) + +[fips3961182] +centroid = (0.71178530681632834, -1.4578042346195594) +description = Patterson village, OH +station = ('kfdy', 0.0044916553460806101) +zone = ('ohz026', 0.0027489997873282393) + +[fips3961252] +centroid = (0.71807493238844777, -1.4762458547350295) +description = Paulding village, OH +station = ('kdfi', 0.0038620217010304591) +zone = ('ohz015', 0.00045612550126475414) + +[fips3961322] +centroid = (0.71697818493978716, -1.4787692343142704) +description = Payne village, OH +station = ('kdfi', 0.0058711149031561993) +zone = ('ohz015', 0.0020388773051267287) + +[fips3961420] +centroid = (0.6797409570299574, -1.4557642414299508) +description = Peebles village, OH +station = ('kiln', 0.0098934250205428374) +zone = ('ohz081', 0.0019521866865791061) + +[fips3961504] +centroid = (0.7227368988067423, -1.4566236415536329) +description = Pemberville village, OH +station = ('ktdz', 0.00275764870224675) +zone = ('ohz006', 0.0023131123751266797) + +[fips3961574] +centroid = (0.71966724862491982, -1.423372169696705) +description = Peninsula village, OH +station = ('kakr', 0.0036807381127301714) +zone = ('ohz021', 0.0019051903313752341) + +[fips3961686] +centroid = (0.72395185740564061, -1.4217488215061325) +description = Pepper Pike city, OH +station = ('kcgf', 0.0015530198600311818) +zone = ('ohz011', 0.0027688561539879757) + +[fips3961882] +centroid = (0.72891623702342823, -1.4162222713362773) +description = Perry village, OH +station = ('khzy', 0.0057835553563420289) +zone = ('ohz012', 0.0016881048277833546) + +[fips3962134] +centroid = (0.71206759636954586, -1.4218991292613141) +description = Perry Heights CDP, OH +station = ('kcak', 0.002077859582739385) +zone = ('ohz032', 0.0013857284447325975) + +[fips3962148] +centroid = (0.72497983888177286, -1.4597954458565745) +description = Perrysburg city, OH +station = ('ktol', 0.0022310994650320626) +zone = ('ohz003', 0.0014464641081871339) + +[fips3962190] +centroid = (0.70962315803237275, -1.4366582966412942) +description = Perrysville village, OH +station = ('kmfd', 0.0038444624252736352) +zone = ('ohz030', 0.0033264688318100206) + +[fips3962344] +centroid = (0.72488621942069587, -1.469993457035855) +description = Pettisville CDP, OH +station = ('kdfi', 0.0044280255524562547) +zone = ('ohz002', 0.0017210981244124093) + +[fips3962404] +centroid = (0.71927378159835009, -1.4337098421227299) +description = Pheasant Run CDP, OH +station = ('klpr', 0.0024701570254009068) +zone = ('ohz010', 0.001470547507562111) + +[fips3962414] +centroid = (0.69645543422423883, -1.4730749929098839) +description = Phillipsburg village, OH +station = ('kday', 0.0024687685236623688) +zone = ('ohz061', 0.0029988616406227161) + +[fips3962442] +centroid = (0.69570438414052072, -1.4295975671523511) +description = Philo village, OH +station = ('kzzv', 0.0015603000471502376) +zone = ('ohz057', 0.0018809908436747977) + +[fips3962498] +centroid = (0.6962286461412347, -1.4446386924729904) +description = Pickerington city, OH +station = ('kcmh', 0.0024192641937328661) +zone = ('ohz065', 0.0030820264162776433) + +[fips3962578] +centroid = (0.71750700224984887, -1.4254494082125511) +description = Pigeon Creek CDP, OH +station = ('kakr', 0.0030186636072008898) +zone = ('ohz021', 0.001863034342713244) + +[fips3962708] +centroid = (0.68180068989340592, -1.4485262039422977) +description = Piketon village, OH +station = ('k3i2', 0.01243449936278488) +zone = ('ohz082', 0.0010068131774586687) + +[fips3962834] +centroid = (0.72740190209793543, -1.4757248215934315) +description = Pioneer village, OH +station = ('kjym', 0.0042859607114350247) +zone = ('ohz001', 0.0020895074846320719) + +[fips3962848] +centroid = (0.70075313297434971, -1.4703202873915833) +description = Piqua city, OH +station = ('kves', 0.0039228821555804885) +zone = ('ohz051', 0.0017000990249718881) + +[fips3962890] +centroid = (0.6979092585845651, -1.474586186242723) +description = Pitsburg village, OH +station = ('kves', 0.0037560784661629094) +zone = ('ohz042', 0.0030974038033160897) + +[fips3963030] +centroid = (0.70000016302845436, -1.4533341147926437) +description = Plain City village, OH +station = ('kmrt', 0.0022420903661056991) +zone = ('ohz045', 0.003621513776836748) + +[fips3963044] +centroid = (0.70171189469234774, -1.4262518582427404) +description = Plainfield village, OH +station = ('kzzv', 0.0050716711043242626) +zone = ('ohz048', 0.0031716772144790143) + +[fips3963072] +centroid = (0.68319025123067367, -1.4723482552626457) +description = Plainville CDP, OH +station = ('kluk', 0.0010908914045498785) +zone = ('ohz077', 0.002637481926118498) + +[fips3963436] +centroid = (0.69644351362544787, -1.4232079342140922) +description = Pleasant City village, OH +station = ('kzzv', 0.0048366450951671915) +zone = ('ohz068', 0.0026722654875904134) + +[fips3963478] +centroid = (0.69729376822384936, -1.4304249579375514) +description = Pleasant Grove CDP, OH +station = ('kzzv', 0.00076761049074332212) +zone = ('ohz057', 0.0002908981593307716) + +[fips3963534] +centroid = (0.69901405200107758, -1.4721155156068924) +description = Pleasant Hill village, OH +station = ('kday', 0.0031459858370360043) +zone = ('ohz051', 0.0015653021340788034) + +[fips3963548] +centroid = (0.68480221987452317, -1.475210106543726) +description = Pleasant Hills CDP, OH +station = ('khao', 0.0022774986275525518) +zone = ('ohz077', 0.00075961370405403601) + +[fips3963576] +centroid = (0.68553798087399387, -1.4680333475661103) +description = Pleasant Plain village, OH +station = ('kiln', 0.0051957593991745219) +zone = ('ohz071', 0.0027077187496764776) + +[fips3963604] +centroid = (0.68578761531690657, -1.4761247463382334) +description = Pleasant Run CDP, OH +station = ('khao', 0.0015167425195036967) +zone = ('ohz077', 0.0017568229901314988) + +[fips3963618] +centroid = (0.68594349067240235, -1.4756648695336256) +description = Pleasant Run Farm CDP, OH +station = ('khao', 0.001217327318848169) +zone = ('ohz077', 0.001856964180119643) + +[fips3963716] +centroid = (0.69480639478707718, -1.4402862427442447) +description = Pleasantville village, OH +station = ('klhq', 0.0021967942349953363) +zone = ('ohz065', 0.0017679315057480603) + +[fips3963758] +centroid = (0.69828515014556714, -1.4558631143320762) +description = Plumwood CDP, OH +station = ('kmrt', 0.0037864216669695134) +zone = ('ohz054', 0.0020099345668893871) + +[fips3963800] +centroid = (0.71553294759938058, -1.4428183140631603) +description = Plymouth village, OH +station = ('kmfd', 0.0037230966493563859) +zone = ('ohz019', 0.0027574640210831385) + +[fips3963954] +centroid = (0.71598460390321184, -1.4070039483727264) +description = Poland village, OH +station = ('kucp', 0.0026608491062750247) +zone = ('ohz033', 0.0021107600665155879) + +[fips3963996] +centroid = (0.71462783730258883, -1.4349106461013947) +description = Polk village, OH +station = ('kmfd', 0.0045767835583900261) +zone = ('ohz030', 0.001882101598749307) + +[fips3964024] +centroid = (0.68128319977018958, -1.4317358223788468) +description = Pomeroy village, OH +station = ('k3i2', 0.0022806897898608801) +zone = ('ohz085', 0.00083811414215908154) + +[fips3964108] +centroid = (0.72122619416609357, -1.4599120513039003) +description = Portage village, OH +station = ('ktdz', 0.0047568433193878427) +zone = ('ohz006', 0.00074052072276636557) + +[fips3964136] +centroid = (0.71565447487519707, -1.4230554447973456) +description = Portage Lakes CDP, OH +station = ('kakr', 0.0010362660393748982) +zone = ('ohz021', 0.0021282470969130633) + +[fips3964150] +centroid = (0.72448125067435554, -1.4475470916852213) +description = Port Clinton city, OH +station = ('cwnb', 0.0083494987830394305) +zone = ('ohz007', 0.0027673312234887072) + +[fips3964262] +centroid = (0.70389406240282382, -1.467685677979113) +description = Port Jefferson village, OH +station = ('kedj', 0.0037041107254690282) +zone = ('ohz043', 0.0014984191016841359) + +[fips3964304] +centroid = (0.67636386710039598, -1.4477920311924461) +description = Portsmouth city, OH +station = ('khts', 0.008693274608607025) +zone = ('ohz088', 0.0010494060130250104) + +[fips3964346] +centroid = (0.70383494810105873, -1.4227769426086048) +description = Port Washington village, OH +station = ('kphd', 0.0027956798013448031) +zone = ('ohz039', 0.0020826854427381937) + +[fips3964360] +centroid = (0.69031065352674248, -1.4623367150606486) +description = Port William village, OH +station = ('kiln', 0.0020694019280308009) +zone = ('ohz072', 0.0024085801542814349) + +[fips3964430] +centroid = (0.69749828590559804, -1.4733165115717746) +description = Potsdam village, OH +station = ('kday', 0.0028755963879500235) +zone = ('ohz051', 0.0029373130143822519) + +[fips3964472] +centroid = (0.70515588309213817, -1.4071614468844267) +description = Pottery Addition CDP, OH +station = ('khlg', 0.0041293775818292532) +zone = ('wvz001', 0.0021799763600039886) + +[fips3964486] +centroid = (0.70107566982011837, -1.4499981448202595) +description = Powell city, OH +station = ('kosu', 0.0014907702002588355) +zone = ('ohz046', 0.0021529772189396311) + +[fips3964542] +centroid = (0.69572869657700098, -1.4103929589010789) +description = Powhatan Point village, OH +station = ('khlg', 0.0057241102819280036) +zone = ('wvz004', 0.001958400954932387) + +[fips3964766] +centroid = (0.67086243221847719, -1.4378383486551525) +description = Proctorville village, OH +station = ('khts', 0.0026091810206556672) +zone = ('wvz006', 0.0019427710279403369) + +[fips3964780] +centroid = (0.70605404697850682, -1.4518487174261492) +description = Prospect village, OH +station = ('kdlz', 0.0029878436516145366) +zone = ('ohz036', 0.0023494760752343011) + +[fips3964906] +centroid = (0.7245006936422228, -1.4749409069598984) +description = Pulaski CDP, OH +station = ('kdfi', 0.0032479659055414225) +zone = ('ohz001', 0.0013587874270461573) + +[fips3965032] +centroid = (0.72698726422753901, -1.445437355138703) +description = Put-in-Bay village, OH +station = ('cwnb', 0.0055445020475276751) +zone = ('ohz009', 0.0056914968166857103) + +[fips3965116] +centroid = (0.69760209808950668, -1.4189065528192597) +description = Quaker City village, OH +station = ('kphd', 0.0088189977082289029) +zone = ('ohz058', 0.0029990992326993132) + +[fips3965200] +centroid = (0.70329033556126652, -1.4655295505810768) +description = Quincy village, OH +station = ('kedj', 0.002396614890918566) +zone = ('ohz044', 0.0031485066765043158) + +[fips3965256] +centroid = (0.68013435424335689, -1.4296398739334193) +description = Racine village, OH +station = ('k3i2', 0.0026974798481751825) +zone = ('ohz085', 0.0024811245610533044) + +[fips3965298] +centroid = (0.70485537230152973, -1.4511694527345655) +description = Radnor CDP, OH +station = ('kdlz', 0.0016975133510400765) +zone = ('ohz046', 0.0026408484584995737) + +[fips3965508] +centroid = (0.67934024688699202, -1.4528469759451199) +description = Rarden village, OH +station = ('kiln', 0.011526997635936511) +zone = ('ohz081', 0.0034058411013571585) + +[fips3965592] +centroid = (0.71840289720819006, -1.4179409668638865) +description = Ravenna city, OH +station = ('kpov', 0.0010271641799321184) +zone = ('ohz022', 0.00061168931878205924) + +[fips3965634] +centroid = (0.71483249461067777, -1.4623235378247958) +description = Rawson village, OH +station = ('kfdy', 0.0018755906721133421) +zone = ('ohz017', 0.0017475242505616652) + +[fips3965662] +centroid = (0.7013319190608962, -1.4083367341494268) +description = Rayland village, OH +station = ('khlg', 0.00062839308775485404) +zone = ('wvz003', 0.0017949590159380953) + +[fips3965676] +centroid = (0.70407418038162961, -1.456794945619716) +description = Raymond CDP, OH +station = ('kmrt', 0.0026265181843144717) +zone = ('ohz045', 0.001472229434606236) + +[fips3965732] +centroid = (0.68458970858480028, -1.4736382979259648) +description = Reading city, OH +station = ('kluk', 0.0021775728608649028) +zone = ('ohz077', 0.0015612645024359365) + +[fips3966152] +centroid = (0.72130094661795652, -1.420645057833879) +description = Reminderville village, OH +station = ('kpov', 0.0026900998606204981) +zone = ('ohz022', 0.0038378878241970321) + +[fips3966180] +centroid = (0.68471910729554319, -1.4716533175143791) +description = Remington CDP, OH +station = ('kluk', 0.0026451278601533103) +zone = ('ohz077', 0.003081748695339552) + +[fips3966222] +centroid = (0.69155526526963218, -1.432727919885558) +description = Rendville village, OH +station = ('kzzv', 0.0062430841078868387) +zone = ('ohz066', 0.002800404662585694) + +[fips3966250] +centroid = (0.68722042591303889, -1.4205348751982003) +description = Reno CDP, OH +station = ('kpkb', 0.0010798254638638338) +zone = ('ohz076', 0.0019908706299134804) + +[fips3966320] +centroid = (0.71776689922876336, -1.4489139811955056) +description = Republic village, OH +station = ('kmfd', 0.008507349762729783) +zone = ('ohz018', 0.0014600541094278597) + +[fips3966390] +centroid = (0.69742629107395326, -1.445055023312761) +description = Reynoldsburg city, OH +station = ('kcmh', 0.0013695901004089882) +zone = ('ohz055', 0.0028646042178925258) + +[fips3966530] +centroid = (0.71965422846869997, -1.4249557767402095) +description = Richfield village, OH +station = ('kcle', 0.0039718656373620197) +zone = ('ohz021', 0.0023796552943297794) + +[fips3966824] +centroid = (0.70568637591828176, -1.4097352839323425) +description = Richmond village, OH +station = ('khlg', 0.0049209261355808408) +zone = ('ohz050', 0.00084758610803896016) + +[fips3966880] +centroid = (0.68424275458279638, -1.4453438753039662) +description = Richmond Dale CDP, OH +station = ('klhq', 0.0097250340122302312) +zone = ('ohz083', 0.0041536535845937044) + +[fips3966894] +centroid = (0.72537011195581125, -1.422577730727782) +description = Richmond Heights city, OH +station = ('kcgf', 0.00033510314490147749) +zone = ('ohz011', 0.0030918965935940895) + +[fips3966922] +centroid = (0.71126408168851274, -1.4218494920973874) +description = Richville CDP, OH +station = ('kcak', 0.0028742224277527751) +zone = ('ohz032', 0.0017018712707995321) + +[fips3966936] +centroid = (0.70559188379257876, -1.4537611270474369) +description = Richwood village, OH +station = ('kdlz', 0.0033365003437896947) +zone = ('ohz045', 0.0024572026967589395) + +[fips3967104] +centroid = (0.72324267777067774, -1.4705335142662996) +description = Ridgeville Corners CDP, OH +station = ('kdfi', 0.0029692315687718193) +zone = ('ohz005', 0.0030587030902029274) + +[fips3967118] +centroid = (0.70707529148372639, -1.4585532950279303) +description = Ridgeway village, OH +station = ('kedj', 0.0041276481864424277) +zone = ('ohz026', 0.002864696751458186) + +[fips3967258] +centroid = (0.67859401391200924, -1.4377914865647363) +description = Rio Grande village, OH +station = ('k3i2', 0.0038631176948552646) +zone = ('ohz086', 0.0012918307827507918) + +[fips3967272] +centroid = (0.67599736541076971, -1.4631881215763562) +description = Ripley village, OH +station = ('kluk', 0.010188097945768616) +zone = ('kyz099', 0.0023883437143502732) + +[fips3967314] +centroid = (0.72024598235158854, -1.4560741944518125) +description = Risingsun village, OH +station = ('ktdz', 0.0052811068389987791) +zone = ('ohz006', 0.0030556119320422721) + +[fips3967356] +centroid = (0.71512026449774657, -1.4274102507205815) +description = Rittman city, OH +station = ('kbjj', 0.0022725573844412602) +zone = ('ohz031', 0.0028688232550849544) + +[fips3967440] +centroid = (0.69953337472000843, -1.4490588086168361) +description = Riverlea village, OH +station = ('kosu', 0.00078137918538100711) +zone = ('ohz055', 0.0019435476507130706) + +[fips3967468] +centroid = (0.69433758189669892, -1.4682468013336292) +description = Riverside city, OH +station = ('kffo', 0.001333123700349414) +zone = ('ohz061', 0.0022836788543935068) + +[fips3967600] +centroid = (0.72673445328538777, -1.4107195274574198) +description = Roaming Shores village, OH +station = ('khzy', 0.0030257509308428197) +zone = ('ohz014', 0.0013202592544747935) + +[fips3967664] +centroid = (0.7114307780853707, -1.4170978332088329) +description = Robertsville CDP, OH +station = ('kcak', 0.0043289279364315102) +zone = ('ohz032', 0.0024483661569449978) + +[fips3967762] +centroid = (0.71775227336963154, -1.4365200665645361) +description = Rochester village, OH +station = ('klpr', 0.0042601782365968852) +zone = ('ohz010', 0.0036195371093050194) + +[fips3967804] +centroid = (0.69091001704516986, -1.4403544153048276) +description = Rockbridge CDP, OH +station = ('klhq', 0.0034249128316348109) +zone = ('ohz074', 0.0016815529230448172) + +[fips3967846] +centroid = (0.72711168874991383, -1.4111742380874417) +description = Rock Creek village, OH +station = ('khzy', 0.0029398945192233828) +zone = ('ohz014', 0.001489484375480372) + +[fips3967874] +centroid = (0.71019239716791061, -1.4774196235635806) +description = Rockford village, OH +station = ('kves', 0.0087167718637854979) +zone = ('ohz034', 0.0026500222642568448) + +[fips3968004] +centroid = (0.68397568430065625, -1.4571342899861812) +description = Rocky Fork Point CDP, OH +station = ('kiln', 0.0058430091486877545) +zone = ('ohz080', 0.0015337844725671122) + +[fips3968042] +centroid = (0.72484302252170896, -1.4523472009138112) +description = Rocky Ridge village, OH +station = ('ktdz', 0.0035825251313894705) +zone = ('ohz007', 0.00088115157787908502) + +[fips3968056] +centroid = (0.72383978981437014, -1.4286188563210027) +description = Rocky River city, OH +station = ('kcle', 0.0012744656593250833) +zone = ('ohz011', 0.0026903193629381843) + +[fips3968084] +centroid = (0.71191398994207788, -1.4072146794266123) +description = Rogers village, OH +station = ('kbvi', 0.0030329118943366777) +zone = ('ohz041', 0.0020167347450417545) + +[fips3968196] +centroid = (0.67485255159450908, -1.4552231195486622) +description = Rome village, OH +station = ('khts', 0.012458927302353753) +zone = ('kyz100', 0.0023475202771314268) + +[fips3968546] +centroid = (0.67669307110390708, -1.4480354871698069) +description = Rosemount CDP, OH +station = ('khts', 0.0090684678680567204) +zone = ('ohz088', 0.0006696314797132643) + +[fips3968560] +centroid = (0.69475495993402092, -1.4324901711348514) +description = Roseville village, OH +station = ('kzzv', 0.0034357893857116183) +zone = ('ohz066', 0.0024701201796682032) + +[fips3968574] +centroid = (0.70192581969876477, -1.465438322221075) +description = Rosewood CDP, OH +station = ('kedj', 0.0033154221952634861) +zone = ('ohz052', 0.0029343637828911492) + +[fips3968602] +centroid = (0.68615706661296882, -1.4775982929191072) +description = Ross CDP, OH +station = ('khao', 0.0021445104871381528) +zone = ('ohz070', 0.0024577750969848409) + +[fips3968672] +centroid = (0.70302216572169751, -1.4772166592248661) +description = Rossburg village, OH +station = ('kves', 0.0020101123699675007) +zone = ('ohz042', 0.0025763925801129857) + +[fips3968686] +centroid = (0.72602014238242396, -1.4583314462267092) +description = Rossford city, OH +station = ('ktdz', 0.0010967357928928475) +zone = ('ohz003', 0.0013904314160130059) + +[fips3968714] +centroid = (0.68442299473464985, -1.4728587815221468) +description = Rossmoyne CDP, OH +station = ('kluk', 0.0020350408500119815) +zone = ('ohz077', 0.0021095049557208968) + +[fips3968742] +centroid = (0.70643836847979613, -1.4197921852415993) +description = Roswell village, OH +station = ('kphd', 0.00092464374546400417) +zone = ('ohz039', 0.001777154716043257) + +[fips3968938] +centroid = (0.72076012144264101, -1.4602122828418285) +description = Rudolph CDP, OH +station = ('kfdy', 0.0048843655255160403) +zone = ('ohz006', 0.0012582476290530164) + +[fips3969176] +centroid = (0.70618320134315449, -1.4603371960563938) +description = Rushsylvania village, OH +station = ('kedj', 0.0025074761832334538) +zone = ('ohz044', 0.001787839096310382) + +[fips3969204] +centroid = (0.69401879750882212, -1.4386807143653351) +description = Rushville village, OH +station = ('klhq', 0.0031808607761349165) +zone = ('ohz066', 0.0026493818861784797) + +[fips3969302] +centroid = (0.70629238914115933, -1.4642142355501888) +description = Russells Point village, OH +station = ('kedj', 0.0019324345444892601) +zone = ('ohz044', 0.0021849227698499856) + +[fips3969316] +centroid = (0.67836188512149398, -1.4623727037498246) +description = Russellville village, OH +station = ('kiln', 0.0098798002249838486) +zone = ('ohz079', 0.0015999196344188627) + +[fips3969344] +centroid = (0.70215697110489894, -1.4731999759376191) +description = Russia village, OH +station = ('kves', 0.0017098327175855785) +zone = ('ohz043', 0.0032304389312721687) + +[fips3969358] +centroid = (0.68139434233695662, -1.4334027514408414) +description = Rutland village, OH +station = ('k3i2', 0.002245356065904037) +zone = ('ohz085', 0.0015937192159814018) + +[fips3969400] +centroid = (0.68924163935989591, -1.459686502404665) +description = Sabina village, OH +station = ('kiln', 0.0022485703978968302) +zone = ('ohz072', 0.0026971274039237062) + +[fips3969470] +centroid = (0.68367594145491872, -1.474700854374579) +description = St. Bernard city, OH +station = ('kluk', 0.001633361989431635) +zone = ('ohz077', 0.0007748064692725858) + +[fips3969526] +centroid = (0.69949783981643787, -1.4119569309904987) +description = St. Clairsville city, OH +station = ('khlg', 0.0036658864895450292) +zone = ('ohz059', 0.0016165744019584441) + +[fips3969540] +centroid = (0.70546491108949616, -1.477135850480499) +description = St. Henry village, OH +station = ('kves', 0.0040826683260815093) +zone = ('ohz034', 0.0020923647399229894) + +[fips3969596] +centroid = (0.70782630666085944, -1.4674765177215541) +description = St Johns CDP, OH +station = ('kaoh', 0.0026594194508304876) +zone = ('ohz035', 0.0018785548907084646) + +[fips3969652] +centroid = (0.70111870963947254, -1.4384648869500334) +description = St. Louisville village, OH +station = ('kvta', 0.002773418335008136) +zone = ('ohz056', 0.0016377998261979498) + +[fips3969666] +centroid = (0.68442756749729006, -1.4641151008486755) +description = St. Martin village, OH +station = ('kiln', 0.0040655193675361821) +zone = ('ohz072', 0.0036540283455727463) + +[fips3969680] +centroid = (0.70768844310324452, -1.4729457861853583) +description = St. Marys city, OH +station = ('kves', 0.0063314896955617844) +zone = ('ohz035', 0.0022910944454153136) + +[fips3969708] +centroid = (0.70034606983290715, -1.465457328856629) +description = St. Paris village, OH +station = ('kedj', 0.0046999721933505233) +zone = ('ohz052', 0.0026080027335198147) + +[fips3969834] +centroid = (0.71391987939810242, -1.4110801648407594) +description = Salem city, OH +station = ('kucp', 0.0061150961936249455) +zone = ('ohz033', 0.0021513105124529803) + +[fips3970050] +centroid = (0.68182367587965464, -1.4727782869370445) +description = Salem Heights CDP, OH +station = ('kluk', 0.00074577238843748456) +zone = ('kyz093', 0.0020799874470087722) + +[fips3970072] +centroid = (0.69766789700230691, -1.4195955739013619) +description = Salesville village, OH +station = ('kphd', 0.0086741643168198532) +zone = ('ohz058', 0.0025120688146866394) + +[fips3970100] +centroid = (0.70896532598400364, -1.4108269350195874) +description = Salineville village, OH +station = ('kbvi', 0.0062879186700375332) +zone = ('ohz041', 0.002688671910324872) + +[fips3970380] +centroid = (0.72354172248471449, -1.4436387933445229) +description = Sandusky city, OH +station = ('klpr', 0.0071939095246660112) +zone = ('ohz009', 0.0020492150895114331) + +[fips3970464] +centroid = (0.70941914649610716, -1.4201230124013147) +description = Sandyville CDP, OH +station = ('kphd', 0.003210696690179966) +zone = ('ohz032', 0.0029160837661491375) + +[fips3970520] +centroid = (0.69477806809331721, -1.4219100724757243) +description = Sarahsville village, OH +station = ('kzzv', 0.0062777318613962858) +zone = ('ohz068', 0.00075400444920558447) + +[fips3970534] +centroid = (0.68083005993649426, -1.4626015687746388) +description = Sardinia village, OH +station = ('kiln', 0.0074152455547921835) +zone = ('ohz079', 0.0015843650067174449) + +[fips3970548] +centroid = (0.69161867308135716, -1.4120691556614018) +description = Sardis CDP, OH +station = ('kpkb', 0.0089455436280701205) +zone = ('wvz011', 0.0028329830419726917) + +[fips3970576] +centroid = (0.71502421902900926, -1.4375812092964559) +description = Savannah village, OH +station = ('kmfd', 0.0032933355153826832) +zone = ('ohz030', 0.002478246378957973) + +[fips3970618] +centroid = (0.7161501134761783, -1.4215469392715543) +description = Sawyerwood CDP, OH +station = ('kakr', 0.00023791561924528586) +zone = ('ohz021', 0.0019672067986116555) + +[fips3970814] +centroid = (0.70509526780721643, -1.4152556032767678) +description = Scio village, OH +station = ('kphd', 0.00452105077015795) +zone = ('ohz049', 0.0018362024984038227) + +[fips3970912] +centroid = (0.67634123017999759, -1.4460256183630877) +description = Sciotodale CDP, OH +station = ('khts', 0.0078744160434746323) +zone = ('ohz088', 0.0021338851091570474) + +[fips3971080] +centroid = (0.71538695080745129, -1.4762688756278632) +description = Scott village, OH +station = ('kdfi', 0.0063330921459370535) +zone = ('ohz015', 0.0022336790483717338) + +[fips3971206] +centroid = (0.67947196688563993, -1.4585317227583756) +description = Seaman village, OH +station = ('kiln', 0.0092419697866804474) +zone = ('ohz081', 0.0019750096654791364) + +[fips3971220] +centroid = (0.71418878227595728, -1.4141577039108009) +description = Sebring village, OH +station = ('kpov', 0.0060132487785497426) +zone = ('ohz033', 0.0036848318487115121) + +[fips3971360] +centroid = (0.69699311780690087, -1.4217358188032052) +description = Senecaville village, OH +station = ('kzzv', 0.0059009478084560505) +zone = ('ohz058', 0.0020999154145274306) + +[fips3971416] +centroid = (0.72221361419040941, -1.4255119259063573) +description = Seven Hills city, OH +station = ('kcle', 0.0023078513950445995) +zone = ('ohz011', 0.00080848660289955198) + +[fips3971444] +centroid = (0.68915936453895688, -1.4757163218399745) +description = Seven Mile village, OH +station = ('khao', 0.0021361863122794922) +zone = ('ohz070', 0.00088304256192368782) + +[fips3971486] +centroid = (0.71594980203792691, -1.4288508978450554) +description = Seville village, OH +station = ('kbjj', 0.0027003808747713296) +zone = ('ohz020', 0.0017412754810436737) + +[fips3971640] +centroid = (0.69764110619828867, -1.4093713304234241) +description = Shadyside village, OH +station = ('khlg', 0.0036574962438403603) +zone = ('wvz004', 0.0022691201826673291) + +[fips3971682] +centroid = (0.7238945233397126, -1.4233020423673597) +description = Shaker Heights city, OH +station = ('kcgf', 0.0017998144582578) +zone = ('ohz011', 0.0016939075291081463) + +[fips3971892] +centroid = (0.68557730314204135, -1.4731880204322427) +description = Sharonville city, OH +station = ('khao', 0.0021038313335421297) +zone = ('ohz077', 0.0023565174795780975) + +[fips3971958] +centroid = (0.68311607473746394, -1.4796509571990852) +description = Shawnee CDP, OH +station = ('kcvg', 0.002171062377928201) +zone = ('kyz091', 0.0030373766279890319) + +[fips3971962] +centroid = (0.69133540614375844, -1.4346935271424466) +description = Shawnee village, OH +station = ('kuni', 0.0070020783047915966) +zone = ('ohz066', 0.0022551631341081041) + +[fips3971976] +centroid = (0.70092541442481415, -1.4509907833790388) +description = Shawnee Hills village, OH +station = ('kosu', 0.0015103417916731597) +zone = ('ohz046', 0.0027009072484061513) + +[fips3971983] +centroid = (0.69201508971436254, -1.4623861951449424) +description = Shawnee Hills CDP, OH +station = ('ksgh', 0.0033997617972311698) +zone = ('ohz062', 0.0015447222957139667) + +[fips3972060] +centroid = (0.72355921068381945, -1.4328100899867418) +description = Sheffield village, OH +station = ('klpr', 0.0022020233950489523) +zone = ('ohz010', 0.0029147822820450226) + +[fips3972088] +centroid = (0.7241089719449052, -1.4328743181032153) +description = Sheffield Lake city, OH +station = ('klpr', 0.0026629622173382169) +zone = ('ohz010', 0.0034387690068381936) + +[fips3972102] +centroid = (0.71357531649717365, -1.4426590353156235) +description = Shelby city, OH +station = ('kmfd', 0.0022161504604676363) +zone = ('ohz029', 0.002506468344532364) + +[fips3972242] +centroid = (0.70676235394884379, -1.4179770079129399) +description = Sherrodsville village, OH +station = ('kphd', 0.0023418606697683617) +zone = ('ohz040', 0.0025298692356320275) + +[fips3972256] +centroid = (0.72070174017916189, -1.4756612567020739) +description = Sherwood village, OH +station = ('kdfi', 0.0016724492908199908) +zone = ('ohz004', 0.00093756987536642168) + +[fips3972258] +centroid = (0.68216694723693694, -1.472374313028378) +description = Sherwood CDP, OH +station = ('kluk', 0.00079871342922944674) +zone = ('kyz093', 0.0024351992673801843) + +[fips3972298] +centroid = (0.71504041568446786, -1.4416793994597714) +description = Shiloh village, OH +station = ('kmfd', 0.0028847703837532566) +zone = ('ohz019', 0.0030966412515508754) + +[fips3972396] +centroid = (0.71002500263935187, -1.4315497877338768) +description = Shreve village, OH +station = ('kbjj', 0.0037147109191702343) +zone = ('ohz038', 0.0024291670872928655) + +[fips3972424] +centroid = (0.70318490022115343, -1.4689865416837946) +description = Sidney city, OH +station = ('kves', 0.0050854729543101254) +zone = ('ohz043', 0.00089215804079093475) + +[fips3972494] +centroid = (0.71827079323710663, -1.4217715805995785) +description = Silver Lake village, OH +station = ('kakr', 0.0021051160855891913) +zone = ('ohz021', 0.0010485417639055749) + +[fips3972522] +centroid = (0.68396392078149781, -1.47307406788538) +description = Silverton city, OH +station = ('kluk', 0.0015548492519295175) +zone = ('ohz077', 0.0019204605787597874) + +[fips3972578] +centroid = (0.68198255320146373, -1.4553800770082943) +description = Sinking Spring village, OH +station = ('kiln', 0.0082368444909609474) +zone = ('ohz080', 0.0034737596473178979) + +[fips3972620] +centroid = (0.68548354405462419, -1.4717587877610774) +description = Sixteen Mile Stand CDP, OH +station = ('khao', 0.0030331013219090817) +zone = ('ohz071', 0.003415404468802577) + +[fips3972648] +centroid = (0.68465110926788542, -1.4759636873548596) +description = Skyline Acres CDP, OH +station = ('khao', 0.0025184129712179995) +zone = ('ohz077', 0.00064852510305159487) + +[fips3972760] +centroid = (0.70287128200786253, -1.4098292699125623) +description = Smithfield village, OH +station = ('khlg', 0.0024956296005944306) +zone = ('ohz050', 0.0019917315733666038) + +[fips3972788] +centroid = (0.71317762577381427, -1.4287211151618771) +description = Smithville village, OH +station = ('kbjj', 0.00032222990003569327) +zone = ('ohz031', 0.00069123106931081777) + +[fips3972928] +centroid = (0.72232180715074046, -1.4214107163234362) +description = Solon city, OH +station = ('kcgf', 0.0032019796880763569) +zone = ('ohz011', 0.0029293672404260046) + +[fips3972977] +centroid = (0.69475064897076844, -1.4363925353560927) +description = Somerset village, OH +station = ('kvta', 0.0043020425676655854) +zone = ('ohz066', 0.0014748008181232227) + +[fips3972998] +centroid = (0.69051379239838218, -1.4772390343458768) +description = Somerville village, OH +station = ('kmwo', 0.0032767699579398651) +zone = ('ohz070', 0.0023448504626781123) + +[fips3973040] +centroid = (0.72162777697368508, -1.4352762227665172) +description = South Amherst village, OH +station = ('klpr', 0.00068367310610731335) +zone = ('ohz010', 0.0014135663497896679) + +[fips3973068] +centroid = (0.69317742663631321, -1.448497248930007) +description = South Bloomfield village, OH +station = ('klck', 0.0019272495511409875) +zone = ('ohz064', 0.0013615151909527055) + +[fips3973118] +centroid = (0.71865494020547049, -1.4134989991978057) +description = South Canal CDP, OH +station = ('kpov', 0.0035318412964390239) +zone = ('ohz022', 0.0027453203162038945) + +[fips3973124] +centroid = (0.6950734650692173, -1.4598586267754967) +description = South Charleston village, OH +station = ('ksgh', 0.0026443241356685415) +zone = ('ohz053', 0.0024666912281841842) + +[fips3973264] +centroid = (0.72472941904069654, -1.4228707889624845) +description = South Euclid city, OH +station = ('kcgf', 0.00091935821235191047) +zone = ('ohz011', 0.0024706849711478972) + +[fips3973446] +centroid = (0.68712993059132299, -1.4698492579330553) +description = South Lebanon village, OH +station = ('kmwo', 0.0037378547769305534) +zone = ('ohz071', 0.0012123697026393372) + +[fips3973670] +centroid = (0.6705821497938993, -1.4412771185204794) +description = South Point village, OH +station = ('khts', 0.0010369206435518709) +zone = ('kyz103', 0.0018372387056546416) + +[fips3973684] +centroid = (0.72315652831879929, -1.4194407457434175) +description = South Russell village, OH +station = ('kcgf', 0.0030823554324795918) +zone = ('ohz013', 0.0022649884977205244) + +[fips3973698] +centroid = (0.68656669538841186, -1.4539807767338004) +description = South Salem village, OH +station = ('kiln', 0.0066407031579349381) +zone = ('ohz073', 0.0033741942638141529) + +[fips3973768] +centroid = (0.69354638924018486, -1.4593163006170247) +description = South Solon village, OH +station = ('ksgh', 0.0035393441186267454) +zone = ('ohz063', 0.0037431700849708369) + +[fips3973796] +centroid = (0.69689396565209494, -1.45932762780387) +description = South Vienna village, OH +station = ('ksgh', 0.0034086692227188343) +zone = ('ohz054', 0.0029211815891786574) + +[fips3973824] +centroid = (0.67748473499931927, -1.4439548899253518) +description = South Webster village, OH +station = ('khts', 0.0082450158868179017) +zone = ('ohz083', 0.0038620554048720314) + +[fips3973894] +centroid = (0.69644951755807472, -1.4314831161564505) +description = South Zanesville village, OH +station = ('kzzv', 0.0017740267135122002) +zone = ('ohz057', 0.0014599143788504509) + +[fips3973950] +centroid = (0.70501585532625055, -1.4433811478403435) +description = Sparta village, OH +station = ('k4i3', 0.0026405431348913238) +zone = ('ohz037', 0.0025859308174291606) + +[fips3973992] +centroid = (0.71728654971202943, -1.4333094461390299) +description = Spencer village, OH +station = ('klpr', 0.0044786721743497798) +zone = ('ohz010', 0.0034762678117320795) + +[fips3974034] +centroid = (0.710489347486845, -1.4722396085167091) +description = Spencerville village, OH +station = ('kaoh', 0.0044538177326221128) +zone = ('ohz035', 0.0031023841653341992) + +[fips3974076] +centroid = (0.69045500970917495, -1.4701672743760612) +description = Springboro city, OH +station = ('kmgy', 0.00069551660480678026) +zone = ('ohz071', 0.0024845568895762067) + +[fips3974104] +centroid = (0.68575031763079153, -1.4743806737233007) +description = Springdale city, OH +station = ('khao', 0.0014377588455792942) +zone = ('ohz077', 0.0018910960226821841) + +[fips3974118] +centroid = (0.69697555979462567, -1.4625118588510859) +description = Springfield city, OH +station = ('ksgh', 0.001735793408354392) +zone = ('ohz053', 0.00033839932454050821) + +[fips3974216] +centroid = (0.69132029159243613, -1.4661787781562334) +description = Spring Valley village, OH +station = ('kffo', 0.0039472645454992992) +zone = ('ohz062', 0.0021139558933577079) + +[fips3974300] +centroid = (0.69311232585521387, -1.4185439257605728) +description = Stafford village, OH +station = ('kpkb', 0.0070160147099498108) +zone = ('ohz069', 0.0026132194131589775) + +[fips3974566] +centroid = (0.71499583997537197, -1.4284462607112729) +description = Sterling CDP, OH +station = ('kbjj', 0.0018139420331796843) +zone = ('ohz031', 0.0024675025117300987) + +[fips3974608] +centroid = (0.70452519091363752, -1.4077314190582504) +description = Steubenville city, OH +station = ('khlg', 0.0034858795050792244) +zone = ('ohz050', 0.001419821620249462) + +[fips3974622] +centroid = (0.68605452851941406, -1.4293808147125457) +description = Stewart CDP, OH +station = ('kuni', 0.0048082509891437626) +zone = ('ohz075', 0.002044118961588199) + +[fips3974734] +centroid = (0.67994147790771897, -1.4461340382162216) +description = Stockdale CDP, OH +station = ('k3i2', 0.01033245870723014) +zone = ('ohz088', 0.0032540352639990979) + +[fips3974748] +centroid = (0.69025799694320977, -1.4275815373333725) +description = Stockport village, OH +station = ('kpkb', 0.0059749400197492636) +zone = ('ohz067', 0.0014728385939837285) + +[fips3974804] +centroid = (0.70510664735393946, -1.4234643928943804) +description = Stone Creek village, OH +station = ('kphd', 0.0022179120128909169) +zone = ('ohz039', 0.0013371196597778238) + +[fips3974832] +centroid = (0.7216715323780325, -1.4511424001311595) +description = Stony Prairie CDP, OH +station = ('ktdz', 0.0058420704697152723) +zone = ('ohz008', 0.00013583941218175648) + +[fips3974846] +centroid = (0.72444334212300221, -1.4575127471811835) +description = Stony Ridge CDP, OH +station = ('ktdz', 0.0010863022559743961) +zone = ('ohz003', 0.0027662184732714298) + +[fips3974916] +centroid = (0.6912372313733337, -1.4455403993777407) +description = Stoutsville village, OH +station = ('klhq', 0.0032920082833224696) +zone = ('ohz064', 0.0027774834660046488) + +[fips3974944] +centroid = (0.71866132811053274, -1.4213354577260899) +description = Stow city, OH +station = ('kakr', 0.0025258611101935976) +zone = ('ohz021', 0.0015330627679874798) + +[fips3974958] +centroid = (0.70861404356545465, -1.4229592422489756) +description = Strasburg village, OH +station = ('kphd', 0.0027760240954929046) +zone = ('ohz039', 0.0028820053861619691) + +[fips3975000] +centroid = (0.7073022890062407, -1.4072840039045016) +description = Stratton village, OH +station = ('kbvi', 0.0052076208886622961) +zone = ('wvz001', 0.00076670729580098) + +[fips3975014] +centroid = (0.71976737816410663, -1.4197530898663546) +description = Streetsboro city, OH +station = ('kpov', 0.0013040944015956612) +zone = ('ohz022', 0.0023329737084360216) + +[fips3975098] +centroid = (0.72104698375849896, -1.428232370611441) +description = Strongsville city, OH +station = ('kcle', 0.0015381518914950876) +zone = ('ohz011', 0.0029851149887221771) + +[fips3975126] +centroid = (0.71647891605396152, -1.4066083869510546) +description = Struthers city, OH +station = ('kucp', 0.0024045977865083741) +zone = ('ohz033', 0.0024872321717213778) + +[fips3975140] +centroid = (0.72435974085183175, -1.4733523082747331) +description = Stryker village, OH +station = ('kdfi', 0.0029648248319362031) +zone = ('ohz001', 0.0024534834976514637) + +[fips3975196] +centroid = (0.71913181651699298, -1.4198426776168593) +description = Sugar Bush Knolls village, OH +station = ('kpov', 0.0013579805066238702) +zone = ('ohz022', 0.0021261241545863108) + +[fips3975210] +centroid = (0.70699132369341289, -1.4249024743848537) +description = Sugarcreek village, OH +station = ('kphd', 0.0030610906355444541) +zone = ('ohz039', 0.0025047315708625144) + +[fips3975252] +centroid = (0.69165101403239659, -1.4406937596712928) +description = Sugar Grove village, OH +station = ('klhq', 0.002669075202288252) +zone = ('ohz065', 0.0024290373067769855) + +[fips3975392] +centroid = (0.71335482905276937, -1.4464665234387266) +description = Sulphur Springs CDP, OH +station = ('kmfd', 0.0048479378263084991) +zone = ('ohz028', 0.00068171690404265418) + +[fips3975406] +centroid = (0.69458547101035961, -1.4195693590559972) +description = Summerfield village, OH +station = ('kzzv', 0.0080221765183811026) +zone = ('ohz068', 0.0016991337647936579) + +[fips3975434] +centroid = (0.68274943342149752, -1.4710702902777504) +description = Summerside CDP, OH +station = ('kluk', 0.0017977266158869139) +zone = ('ohz078', 0.0021977101115989396) + +[fips3975574] +centroid = (0.70985731140482022, -1.4117889605032867) +description = Summitville village, OH +station = ('kphd', 0.0078523877683688917) +zone = ('ohz041', 0.0022471159428471524) + +[fips3975602] +centroid = (0.70246442830593014, -1.4462716399744489) +description = Sunbury village, OH +station = ('kdlz', 0.0034697843015811846) +zone = ('ohz046', 0.001937099385451019) + +[fips3975896] +centroid = (0.72575185036980749, -1.464161544060071) +description = Swanton village, OH +station = ('ktol', 0.001178651312293363) +zone = ('ohz003', 0.0030936395368683198) + +[fips3975980] +centroid = (0.71474151059677138, -1.4516072685774282) +description = Sycamore village, OH +station = ('kmnn', 0.0060072223193845479) +zone = ('ohz027', 0.0025953640910138551) + +[fips3976022] +centroid = (0.7279872331691768, -1.4609479391215441) +description = Sylvania city, OH +station = ('kduh', 0.00079573560417351525) +zone = ('ohz003', 0.0016984022563602535) + +[fips3976050] +centroid = (0.68063933035583635, -1.4305724731659299) +description = Syracuse village, OH +station = ('k3i2', 0.0023133974513476971) +zone = ('ohz085', 0.001663327034261122) + +[fips3976106] +centroid = (0.71743711926659892, -1.4211447455987247) +description = Tallmadge city, OH +station = ('kakr', 0.0013805210288087265) +zone = ('ohz021', 0.0014423449388131886) + +[fips3976148] +centroid = (0.69034713090810917, -1.4447455764363826) +description = Tarlton village, OH +station = ('klhq', 0.003733111689125219) +zone = ('ohz065', 0.0039769324623822322) + +[fips3976197] +centroid = (0.68480461097559842, -1.4779384401370286) +description = Taylor Creek CDP, OH +station = ('khao', 0.0031642549773814102) +zone = ('ohz077', 0.0019864816610011258) + +[fips3976358] +centroid = (0.72610779281745919, -1.4696418080981632) +description = Tedrow CDP, OH +station = ('kadg', 0.00486541361361579) +zone = ('ohz002', 0.00096823095120637586) + +[fips3976428] +centroid = (0.68344520892780514, -1.4715257339460583) +description = Terrace Park village, OH +station = ('kluk', 0.0017445068012741476) +zone = ('ohz078', 0.0029060369839894302) + +[fips3976568] +centroid = (0.68705226343960923, -1.4335014498100418) +description = The Plains CDP, OH +station = ('kuni', 0.0030055311398001017) +zone = ('ohz075', 0.0013134234658877431) + +[fips3976582] +centroid = (0.68396934875547155, -1.4719412444810807) +description = The Village of Indian Hill city, OH +station = ('kluk', 0.0018922358491875956) +zone = ('ohz077', 0.0027969192792876387) + +[fips3976666] +centroid = (0.69675496763046607, -1.4386316706133537) +description = Thornport CDP, OH +station = ('kvta', 0.0017478862592285398) +zone = ('ohz056', 0.0030715028245183692) + +[fips3976680] +centroid = (0.69627507189933779, -1.4383576713740833) +description = Thornville village, OH +station = ('kvta', 0.0022694020180483976) +zone = ('ohz056', 0.0035891683444351516) + +[fips3976764] +centroid = (0.69538549503288882, -1.440674770489031) +description = Thurston village, OH +station = ('klhq', 0.0023011244277066105) +zone = ('ohz065', 0.0019628730185409144) + +[fips3976778] +centroid = (0.71761927928062963, -1.4517813302637297) +description = Tiffin city, OH +station = ('kfdy', 0.0066250564898088704) +zone = ('ohz018', 0.00071168261033117638) + +[fips3976806] +centroid = (0.70113527281407384, -1.4084417157039344) +description = Tiltonsville village, OH +station = ('khlg', 0.00064404323027400956) +zone = ('wvz003', 0.0016821756308158895) + +[fips3976834] +centroid = (0.72720054346213292, -1.4214449771366526) +description = Timberlake village, OH +station = ('kcgf', 0.0018046020850670855) +zone = ('ohz012', 0.0027375809178510767) + +[fips3976876] +centroid = (0.69752114971879919, -1.4693150475556049) +description = Tipp City city, OH +station = ('kday', 0.0012087734021999084) +zone = ('ohz051', 0.0016478165382100903) + +[fips3976890] +centroid = (0.70290967925140646, -1.4186222386841096) +description = Tippecanoe CDP, OH +station = ('kphd', 0.0038193084061339815) +zone = ('ohz049', 0.0025533452529881507) + +[fips3976932] +centroid = (0.71394989906123674, -1.4445910973442886) +description = Tiro village, OH +station = ('kmfd', 0.0036796371887409174) +zone = ('ohz028', 0.0022117393759346188) + +[fips3977000] +centroid = (0.72717521873468638, -1.4587786693942404) +description = Toledo city, OH +station = ('kduh', 0.0015760819902108736) +zone = ('ohz003', 0.0012623246259927006) + +[fips3977070] +centroid = (0.7229334054272244, -1.4615557674868436) +description = Tontogany village, OH +station = ('ktol', 0.0029358595351335055) +zone = ('ohz006', 0.001859738053949918) + +[fips3977112] +centroid = (0.70613050985303683, -1.4068628210494103) +description = Toronto city, OH +station = ('kpit', 0.0049845013928878955) +zone = ('wvz001', 0.0011856119686283022) + +[fips3977308] +centroid = (0.69841100583792848, -1.4633242572580119) +description = Tremont City village, OH +station = ('ksgh', 0.0030671387263801913) +zone = ('ohz053', 0.0019017214697888772) + +[fips3977322] +centroid = (0.68903980948519528, -1.4741401324457908) +description = Trenton city, OH +station = ('kmwo', 0.0012195575418319949) +zone = ('ohz070', 0.0016846010370824146) + +[fips3977406] +centroid = (0.68915875367371882, -1.4325954319420391) +description = Trimble village, OH +station = ('kuni', 0.0052147390526375535) +zone = ('ohz075', 0.002701330618288957) + +[fips3977434] +centroid = (0.70050431883618547, -1.4313863725560125) +description = Trinway CDP, OH +station = ('kzzv', 0.003575933592885792) +zone = ('ohz057', 0.0031120504672952853) + +[fips3977504] +centroid = (0.6944989899459233, -1.4716936695266853) +description = Trotwood city, OH +station = ('kday', 0.0023554789727678188) +zone = ('ohz061', 0.00077509174487077584) + +[fips3977588] +centroid = (0.69884749523055978, -1.4699574159868014) +description = Troy city, OH +station = ('kday', 0.0024622999156491869) +zone = ('ohz051', 0.00023322060358688457) + +[fips3977812] +centroid = (0.68369128289904368, -1.4284923374035254) +description = Tuppers Plains CDP, OH +station = ('k3i2', 0.0056524914269474444) +zone = ('ohz085', 0.0028627088543552014) + +[fips3977840] +centroid = (0.68255303152077063, -1.4726218530761883) +description = Turpin Hills CDP, OH +station = ('kluk', 0.00057872474315295679) +zone = ('ohz077', 0.0027391929186926537) + +[fips3977924] +centroid = (0.70497143669678741, -1.4206390713545445) +description = Tuscarawas village, OH +station = ('kphd', 0.0013320231789718015) +zone = ('ohz039', 0.0013365842709751764) + +[fips3978050] +centroid = (0.72121532076485373, -1.4214506494567218) +description = Twinsburg city, OH +station = ('kpov', 0.0031022748734508446) +zone = ('ohz011', 0.0033351089010331802) + +[fips3978078] +centroid = (0.72093222836018023, -1.4217087487465065) +description = Twinsburg Heights CDP, OH +station = ('kpov', 0.0031165342911934047) +zone = ('ohz021', 0.0032970231996861991) + +[fips3978176] +centroid = (0.70516366726060198, -1.4198167594774673) +description = Uhrichsville city, OH +station = ('kphd', 0.0014263651097069158) +zone = ('ohz039', 0.0017803064413805937) + +[fips3978470] +centroid = (0.6966718725047788, -1.471159057723507) +description = Union city, OH +station = ('kday', 0.0010379534862486859) +zone = ('ohz051', 0.0025328038204787415) + +[fips3978624] +centroid = (0.7015968600413488, -1.4798508497583163) +description = Union City village, OH +station = ('kves', 0.0034555685597642319) +zone = ('ohz042', 0.0025361147943178558) + +[fips3978736] +centroid = (0.71505765953747757, -1.4207021475537116) +description = Uniontown CDP, OH +station = ('kcak', 0.0011357510606972022) +zone = ('ohz032', 0.0027599055772713917) + +[fips3978834] +centroid = (0.70052367453759012, -1.4545795119336971) +description = Unionville Center village, OH +station = ('kmrt', 0.0014524267455082185) +zone = ('ohz045', 0.0028637735097895227) + +[fips3978848] +centroid = (0.70864006642460187, -1.4675823544873949) +description = Uniopolis village, OH +station = ('kaoh', 0.0019416637972061942) +zone = ('ohz035', 0.0019336873603420471) + +[fips3978932] +centroid = (0.72422096972300565, -1.4230510814742154) +description = University Heights city, OH +station = ('kcgf', 0.0014232422568855733) +zone = ('ohz011', 0.0020346234291557051) + +[fips3979002] +centroid = (0.69861318477847945, -1.449857610908889) +description = Upper Arlington city, OH +station = ('kosu', 0.0009874359519013937) +zone = ('ohz055', 0.0013033381821246056) + +[fips3979044] +centroid = (0.71262919096296007, -1.4533491420775035) +description = Upper Sandusky city, OH +station = ('kmnn', 0.004608259500068641) +zone = ('ohz027', 0.00048915525196192855) + +[fips3979072] +centroid = (0.70003021759817374, -1.4617965182038637) +description = Urbana city, OH +station = ('kedj', 0.0046784983145566868) +zone = ('ohz052', 0.00054383477239587522) + +[fips3979100] +centroid = (0.69641297036353789, -1.4501623803028723) +description = Urbancrest village, OH +station = ('ktzr', 0.00065669945374581074) +zone = ('ohz055', 0.0015893858450323954) + +[fips3979114] +centroid = (0.70227102837151667, -1.4388648815080054) +description = Utica village, OH +station = ('k4i3', 0.0019325652796141526) +zone = ('ohz056', 0.0026000034800502947) + +[fips3979226] +centroid = (0.70365092058472845, -1.4604197850365979) +description = Valley Hi village, OH +station = ('kedj', 0.0021432971332390493) +zone = ('ohz044', 0.0017381588163934577) + +[fips3979268] +centroid = (0.72224342441403355, -1.4243334970487034) +description = Valley View village, OH +station = ('kbkl', 0.0027577814521074469) +zone = ('ohz011', 0.00099668674533053459) + +[fips3979282] +centroid = (0.69750174165751699, -1.4498849951248529) +description = Valleyview village, OH +station = ('ktzr', 0.0014024834248045675) +zone = ('ohz055', 0.00084843974456530176) + +[fips3979394] +centroid = (0.71800538101775579, -1.4599573425979897) +description = Van Buren village, OH +station = ('kfdy', 0.0021415906797012541) +zone = ('ohz017', 0.0023978140478701851) + +[fips3979492] +centroid = (0.69601931135075057, -1.4694317402693933) +description = Vandalia city, OH +station = ('kday', 0.00049169301550777689) +zone = ('ohz061', 0.0025412779870412948) + +[fips3979534] +centroid = (0.7151321327366601, -1.4570831169325127) +description = Vanlue village, OH +station = ('kfdy', 0.0025096323442158216) +zone = ('ohz017', 0.00244378282434433) + +[fips3979562] +centroid = (0.71324393083209758, -1.4763397185422018) +description = Van Wert city, OH +station = ('kaoh', 0.0080867928248189759) +zone = ('ohz024', 0.00018446054839596414) + +[fips3979590] +centroid = (0.71349447284622136, -1.4686133030232553) +description = Vaughnsville CDP, OH +station = ('kaoh', 0.0035756301145977477) +zone = ('ohz025', 0.0019684644266760301) + +[fips3979632] +centroid = (0.71183621807060893, -1.4740335102817865) +description = Venedocia village, OH +station = ('kaoh', 0.0059955510240962961) +zone = ('ohz024', 0.0021114097219285129) + +[fips3979716] +centroid = (0.72270602393227468, -1.4367071135004723) +description = Vermilion city, OH +station = ('klpr', 0.0020250616853268837) +zone = ('ohz010', 0.0029306628946085254) + +[fips3979898] +centroid = (0.69640947970503397, -1.4749078853304505) +description = Verona village, OH +station = ('kday', 0.0038740350226203852) +zone = ('ohz060', 0.0033763689237983558) + +[fips3979912] +centroid = (0.70201106157943216, -1.4745008047357155) +description = Versailles village, OH +station = ('kves', 0.00074094492431663733) +zone = ('ohz042', 0.0023938999191150845) + +[fips3979982] +centroid = (0.72216364541392475, -1.447602436075802) +description = Vickery CDP, OH +station = ('ktdz', 0.0078212907615253426) +zone = ('ohz008', 0.0026891778815678444) + +[fips3980066] +centroid = (0.71967703992202348, -1.4076790940872754) +description = Vienna Center CDP, OH +station = ('kyng', 0.00031767180411222098) +zone = ('ohz023', 0.0020101804338236609) + +[fips3980150] +centroid = (0.68722878604015591, -1.4254308728158949) +description = Vincent CDP, OH +station = ('kpkb', 0.0030734482758635875) +zone = ('ohz076', 0.0027518732916774575) + +[fips3980178] +centroid = (0.68033714404914603, -1.436984201972519) +description = Vinton village, OH +station = ('k3i2', 0.0033888851404607484) +zone = ('ohz086', 0.0027254821424704486) + +[fips3980304] +centroid = (0.71608557120043959, -1.4264980543870269) +description = Wadsworth city, OH +station = ('kbjj', 0.0034581758233531326) +zone = ('ohz020', 0.0026942087051576059) + +[fips3980402] +centroid = (0.72620921390029247, -1.4205018186621674) +description = Waite Hill village, OH +station = ('kcgf', 0.0014363024940184715) +zone = ('ohz012', 0.0025059518917398666) + +[fips3980458] +centroid = (0.72000442878311255, -1.4381982006403287) +description = Wakeman village, OH +station = ('klpr', 0.0033354764296837066) +zone = ('ohz010', 0.0033803472347711098) + +[fips3980486] +centroid = (0.72580113846788374, -1.4571461058652173) +description = Walbridge village, OH +station = ('ktdz', 0.00033239023250470679) +zone = ('ohz003', 0.0023031512023053246) + +[fips3980500] +centroid = (0.70615593930023834, -1.4501038070531753) +description = Waldo village, OH +station = ('kmnn', 0.0027491993582662026) +zone = ('ohz036', 0.0024441769905848556) + +[fips3980612] +centroid = (0.70766994261317329, -1.4264494818739437) +description = Walnut Creek CDP, OH +station = ('kphd', 0.0043794215980824973) +zone = ('ohz038', 0.0026627821604930406) + +[fips3980738] +centroid = (0.72201145270315092, -1.4233689408375887) +description = Walton Hills village, OH +station = ('kbkl', 0.0032427526656470585) +zone = ('ohz011', 0.0016948022789008942) + +[fips3980766] +centroid = (0.70803733442071815, -1.4694221758650923) +description = Wapakoneta city, OH +station = ('kaoh', 0.0032738051221104713) +zone = ('ohz035', 0.00041449848591548164) + +[fips3980892] +centroid = (0.71974334498030668, -1.4105179419288145) +description = Warren city, OH +station = ('kyng', 0.0019798927541376365) +zone = ('ohz023', 0.0015664798508742213) + +[fips3980990] +centroid = (0.72325184074925075, -1.4228229320343948) +description = Warrensville Heights city, OH +station = ('kcgf', 0.002279349362311279) +zone = ('ohz011', 0.0018110387868172679) + +[fips3981032] +centroid = (0.70399804911965758, -1.4311849441070397) +description = Warsaw village, OH +station = ('kzzv', 0.0068720440866880611) +zone = ('ohz048', 0.0012331621899437349) + +[fips3981718] +centroid = (0.69008328948508513, -1.456092206249693) +description = Washington Court House city, OH +station = ('kiln', 0.0051292749390242027) +zone = ('ohz063', 0.00052772036897577829) + +[fips3981732] +centroid = (0.71377496471030932, -1.4096686123549163) +description = Washingtonville village, OH +station = ('kbvi', 0.0053612825048856318) +zone = ('ohz033', 0.0020670495457055182) + +[fips3981760] +centroid = (0.69007967665353342, -1.4249606811154076) +description = Waterford CDP, OH +station = ('kpkb', 0.0044380791764038457) +zone = ('ohz076', 0.0024778482836098326) + +[fips3981858] +centroid = (0.72433513170937858, -1.4614537878986495) +description = Waterville village, OH +station = ('ktol', 0.0016630178677979556) +zone = ('ohz003', 0.0022994842953464219) + +[fips3981928] +centroid = (0.72524443079637524, -1.4685224062758115) +description = Wauseon city, OH +station = ('ktol', 0.0044719979323603991) +zone = ('ohz002', 0.00085406517031524454) + +[fips3981942] +centroid = (0.68288075199441756, -1.4483333625132448) +description = Waverly City city, OH +station = ('klhq', 0.011694702457472745) +zone = ('ohz082', 0.0014146687059128403) + +[fips3982334] +centroid = (0.72083775368776981, -1.4568564684758489) +description = Wayne village, OH +station = ('ktdz', 0.0046399248131156557) +zone = ('ohz006', 0.0022481722613923501) + +[fips3982348] +centroid = (0.69851078631126506, -1.4776458007813467) +description = Wayne Lakes village, OH +station = ('kves', 0.0035815337166517375) +zone = ('ohz042', 0.0020325000295284769) + +[fips3982376] +centroid = (0.70979509041698674, -1.4182512340450135) +description = Waynesburg village, OH +station = ('kphd', 0.0040871600193760245) +zone = ('ohz040', 0.0027336213312331207) + +[fips3982390] +centroid = (0.70864600054405857, -1.4656115985092131) +description = Waynesfield village, OH +station = ('kaoh', 0.0017969659810205194) +zone = ('ohz025', 0.0034315513225283622) + +[fips3982418] +centroid = (0.68996261742060228, -1.4676637391904153) +description = Waynesville village, OH +station = ('kmgy', 0.0022541854597981224) +zone = ('ohz071', 0.0020868032139708774) + +[fips3982642] +centroid = (0.7182425363565168, -1.4351460735641961) +description = Wellington village, OH +station = ('klpr', 0.0035001154927741494) +zone = ('ohz010', 0.0026946248083503477) + +[fips3982712] +centroid = (0.6827274073663373, -1.4405522483755411) +description = Wellston city, OH +station = ('kuni', 0.0044648342145088291) +zone = ('ohz083', 0.0020266847991354847) + +[fips3982740] +centroid = (0.70867369891928778, -1.4076907179800937) +description = Wellsville village, OH +station = ('kbvi', 0.004407433782657553) +zone = ('wvz001', 0.0017979978069986235) + +[fips3982880] +centroid = (0.6936700981775662, -1.475402389467418) +description = West Alexandria village, OH +station = ('kmwo', 0.0041543017195713391) +zone = ('ohz060', 0.0015275793362962186) + +[fips3983090] +centroid = (0.69236761131668034, -1.470535713381157) +description = West Carrollton city, OH +station = ('kmgy', 0.0012531301515262669) +zone = ('ohz061', 0.0015525974019002292) + +[fips3983216] +centroid = (0.69094335283388297, -1.4758465932153433) +description = West Elkton village, OH +station = ('kmwo', 0.0023774200330997537) +zone = ('ohz070', 0.002618498420437286) + +[fips3983342] +centroid = (0.70028604795993099, -1.4471104975728351) +description = Westerville city, OH +station = ('kcmh', 0.0021912785918310599) +zone = ('ohz046', 0.0029706235834012357) + +[fips3983384] +centroid = (0.72240663015238749, -1.4132448618054227) +description = West Farmington village, OH +station = ('kpov', 0.0046994112098163107) +zone = ('ohz013', 0.0032914170271394574) + +[fips3983468] +centroid = (0.71607764740563562, -1.4299738950456662) +description = Westfield Center village, OH +station = ('kbjj', 0.0028902778309179396) +zone = ('ohz020', 0.0016148895887949737) + +[fips3983541] +centroid = (0.71959497454059462, -1.4054687567626722) +description = West Hill CDP, OH +station = ('kyng', 0.0018612312927935874) +zone = ('ohz023', 0.0034174445265522358) + +[fips3983580] +centroid = (0.69724852928963765, -1.454005769848689) +description = West Jefferson village, OH +station = ('ktzr', 0.0024428398651544763) +zone = ('ohz054', 0.0015583114404577926) + +[fips3983608] +centroid = (0.70295003126371247, -1.4268364737289883) +description = West Lafayette village, OH +station = ('kphd', 0.005559964985304193) +zone = ('ohz048', 0.0022843948804855603) + +[fips3983622] +centroid = (0.72343075445087268, -1.4299510486857574) +description = Westlake city, OH +station = ('kcle', 0.0013593247101809163) +zone = ('ohz010', 0.0039507432616830368) + +[fips3983706] +centroid = (0.71742172546259642, -1.4660942344072672) +description = West Leipsic village, OH +station = ('kfdy', 0.0046636250358695029) +zone = ('ohz016', 0.0022501298957581239) + +[fips3983734] +centroid = (0.70260394992633468, -1.4618626487292217) +description = West Liberty village, OH +station = ('kedj', 0.0021803387291306556) +zone = ('ohz052', 0.0020724181285784703) + +[fips3983804] +centroid = (0.69644431647690375, -1.4770080225660829) +description = West Manchester village, OH +station = ('kves', 0.0053355633680234223) +zone = ('ohz060', 0.002837597351953831) + +[fips3983818] +centroid = (0.70513724297572677, -1.4581179400993127) +description = West Mansfield village, OH +station = ('kmrt', 0.004085225634151343) +zone = ('ohz045', 0.0029029293627806062) + +[fips3983888] +centroid = (0.71982169281042874, -1.4571999492726413) +description = West Millgrove village, OH +station = ('kfdy', 0.0045692254975041556) +zone = ('ohz006', 0.0026995188541624653) + +[fips3983902] +centroid = (0.69740381123318762, -1.4717658039846702) +description = West Milton village, OH +station = ('kday', 0.0017819151671403105) +zone = ('ohz051', 0.0021069598075398868) + +[fips3983972] +centroid = (0.72162350091701766, -1.4624918224712731) +description = Weston village, OH +station = ('ktol', 0.0041431796953585592) +zone = ('ohz006', 0.0022649607611229996) + +[fips3984140] +centroid = (0.67666287690784765, -1.4493065581041567) +description = West Portsmouth CDP, OH +station = ('khts', 0.009700072197063609) +zone = ('ohz088', 0.00086674742262331738) + +[fips3984182] +centroid = (0.69401905930820995, -1.4390198841988751) +description = West Rushville village, OH +station = ('klhq', 0.0029210237416545503) +zone = ('ohz066', 0.0029063310145816161) + +[fips3984196] +centroid = (0.71505594911481052, -1.4330482052565914) +description = West Salem village, OH +station = ('kbjj', 0.0034615522184480853) +zone = ('ohz030', 0.0030463680331159291) + +[fips3984294] +centroid = (0.67704262564649653, -1.4581194934423471) +description = West Union village, OH +station = ('kiln', 0.01165808723207758) +zone = ('ohz081', 0.0013600915662733692) + +[fips3984308] +centroid = (0.72580597302991179, -1.4736608126733155) +description = West Unity village, OH +station = ('kdfi', 0.0044032440604443142) +zone = ('ohz001', 0.0020543638250119464) + +[fips3984528] +centroid = (0.68701997484844735, -1.4726510873411593) +description = Wetherington CDP, OH +station = ('khao', 0.0018896387225242244) +zone = ('ohz070', 0.0029856593653000804) + +[fips3984574] +centroid = (0.71316432636491411, -1.4567357440514883) +description = Wharton village, OH +station = ('kfdy', 0.0037993809406337577) +zone = ('ohz027', 0.0021432425862038516) + +[fips3984588] +centroid = (0.67615187940944865, -1.4459637988009821) +description = Wheelersburg CDP, OH +station = ('khts', 0.0076880530911522917) +zone = ('ohz088', 0.0022638464470192414) + +[fips3984742] +centroid = (0.69759009022425289, -1.4465977896517692) +description = Whitehall city, OH +station = ('kcmh', 0.00054167294666108805) +zone = ('ohz055', 0.001676745769122259) + +[fips3984770] +centroid = (0.72468604760878452, -1.4625300277285993) +description = Whitehouse village, OH +station = ('ktol', 0.0010808424368833405) +zone = ('ohz003', 0.0024929149205581416) + +[fips3984812] +centroid = (0.68435084282337233, -1.4766513470801452) +description = White Oak CDP, OH +station = ('kcvg', 0.0029181804358954866) +zone = ('ohz077', 0.00089519982472290299) + +[fips3984882] +centroid = (0.72310596613036904, -1.4467863201175695) +description = Whites Landing CDP, OH +station = ('cwnb', 0.0089729203985810749) +zone = ('ohz009', 0.0038121111756214575) + +[fips3985036] +centroid = (0.72616730854495215, -1.4218853237069311) +description = Wickliffe city, OH +station = ('kcgf', 0.00072037820380381988) +zone = ('ohz012', 0.0034016168113568143) + +[fips3985085] +centroid = (0.72297857454826597, -1.4494219069144212) +description = Wightmans Grove CDP, OH +station = ('ktdz', 0.006241379746842606) +zone = ('ohz008', 0.0017495661478641527) + +[fips3985092] +centroid = (0.69314265967761346, -1.4640648877260956) +description = Wilberforce CDP, OH +station = ('ksgh', 0.0022816934782706566) +zone = ('ohz062', 0.00040109878550847696) + +[fips3985190] +centroid = (0.68201285211727836, -1.4368693767610301) +description = Wilkesville village, OH +station = ('kuni', 0.0026721660849998992) +zone = ('ohz084', 0.0037283892728079884) + +[fips3985232] +centroid = (0.71649153478445349, -1.4437980197321825) +description = Willard city, OH +station = ('kmfd', 0.0049296569280472225) +zone = ('ohz019', 0.0023270332864777925) + +[fips3985288] +centroid = (0.68158233175068894, -1.4669086923027099) +description = Williamsburg village, OH +station = ('kluk', 0.0050698178606769237) +zone = ('ohz078', 0.0014186151275814316) + +[fips3985344] +centroid = (0.68839407256854246, -1.4753238671043709) +description = Williamsdale CDP, OH +station = ('khao', 0.001328043487441554) +zone = ('ohz070', 0.00061855044001275132) + +[fips3985414] +centroid = (0.69083554384598722, -1.4507268721428446) +description = Williamsport village, OH +station = ('klck', 0.0048061805419740084) +zone = ('ohz064', 0.0016649504889805365) + +[fips3985442] +centroid = (0.72610259173628822, -1.4545907169474948) +description = Williston CDP, OH +station = ('ktdz', 0.0019499351957555828) +zone = ('ohz007', 0.0027865686113285396) + +[fips3985484] +centroid = (0.72685833675569433, -1.42086697644827) +description = Willoughby city, OH +station = ('kcgf', 0.0016843276600522793) +zone = ('ohz012', 0.0024201043134036704) + +[fips3985512] +centroid = (0.72579061413249424, -1.4212661332482011) +description = Willoughby Hills city, OH +station = ('kcgf', 0.00073424042513453016) +zone = ('ohz012', 0.0032141841823465594) + +[fips3985638] +centroid = (0.72665558185649015, -1.4218832118585361) +description = Willowick city, OH +station = ('kcgf', 0.0011974369971445751) +zone = ('ohz012', 0.0032021655281982138) + +[fips3985736] +centroid = (0.71115939683997809, -1.4799003472959029) +description = Willshire village, OH +station = ('kfwa', 0.006969435027309471) +zone = ('inz027', 0.0019115048504118452) + +[fips3985792] +centroid = (0.68834246318256098, -1.4628992521318587) +description = Wilmington city, OH +station = ('kiln', 0.00047746051696891372) +zone = ('ohz072', 0.00044019973153753634) + +[fips3985806] +centroid = (0.7095794200813178, -1.424788923263719) +description = Wilmot village, OH +station = ('kphd', 0.004386694614500918) +zone = ('ohz038', 0.0042439977185171089) + +[fips3985834] +centroid = (0.69569745518339032, -1.4149218265106167) +description = Wilson village, OH +station = ('khlg', 0.0077412073514760643) +zone = ('ohz069', 0.0023309344605348566) + +[fips3985876] +centroid = (0.67969271612943216, -1.460039704685391) +description = Winchester village, OH +station = ('kiln', 0.0087256694826812736) +zone = ('ohz081', 0.003005791592102753) + +[fips3985946] +centroid = (0.71976544084863703, -1.4144062213429924) +description = Windham village, OH +station = ('kpov', 0.0027838901634866567) +zone = ('ohz022', 0.0024102753892496177) + +[fips3986072] +centroid = (0.70890862023660628, -1.4258411648164537) +description = Winesburg CDP, OH +station = ('kphd', 0.0045303858938521785) +zone = ('ohz038', 0.0032622894683956168) + +[fips3986184] +centroid = (0.70472925480978055, -1.4086538081146367) +description = Wintersville village, OH +station = ('khlg', 0.0037739821993712018) +zone = ('ohz050', 0.0006899998626667533) + +[fips3986254] +centroid = (0.6817740736223129, -1.4709755363526598) +description = Withamsville CDP, OH +station = ('kluk', 0.0019534269491772831) +zone = ('ohz078', 0.0017614773121190448) + +[fips3986282] +centroid = (0.69933344725419255, -1.4098908625818651) +description = Wolfhurst CDP, OH +station = ('khlg', 0.0024416913591937747) +zone = ('wvz003', 0.0022166378674395764) + +[fips3986366] +centroid = (0.68513844010162739, -1.4742959728947014) +description = Woodlawn village, OH +station = ('khao', 0.0020354450913501582) +zone = ('ohz077', 0.0014284879165896757) + +[fips3986394] +centroid = (0.7236128970116108, -1.4220914819981765) +description = Woodmere village, OH +station = ('kcgf', 0.0018628549318520035) +zone = ('ohz011', 0.0024214739769972573) + +[fips3986436] +centroid = (0.69399610822854618, -1.4157549070691784) +description = Woodsfield village, OH +station = ('kpkb', 0.0087383786421842604) +zone = ('ohz069', 0.00077060409379956733) + +[fips3986478] +centroid = (0.70116328534856831, -1.4578343939090339) +description = Woodstock village, OH +station = ('kmrt', 0.0025037657314276327) +zone = ('ohz045', 0.0030257805584153665) + +[fips3986492] +centroid = (0.72345529378015572, -1.4549735200123348) +description = Woodville village, OH +station = ('ktdz', 0.0025532417338047543) +zone = ('ohz008', 0.0033051753343896614) + +[fips3986548] +centroid = (0.71237727013872731, -1.4300020995663782) +description = Wooster city, OH +station = ('kbjj', 0.0010986444058459211) +zone = ('ohz031', 0.00063160104844569708) + +[fips3986604] +centroid = (0.69982140640646506, -1.4489753818785909) +description = Worthington city, OH +station = ('kosu', 0.00087552654556200232) +zone = ('ohz055', 0.002225035934483153) + +[fips3986632] +centroid = (0.71210236332824561, -1.4795828195450873) +description = Wren village, OH +station = ('kfwa', 0.0066131017813599157) +zone = ('ohz024', 0.0026584839360980889) + +[fips3986660] +centroid = (0.69502328685322234, -1.4669470197330841) +description = Wright-Patterson AFB CDP, OH +station = ('kffo', 0.00019953911860197537) +zone = ('ohz062', 0.0031293454951242588) + +[fips3986730] +centroid = (0.68468379928477541, -1.4744781503620246) +description = Wyoming city, OH +station = ('kluk', 0.0024237625505935606) +zone = ('ohz077', 0.0010195751575277205) + +[fips3986772] +centroid = (0.6926059883859178, -1.4650678062741691) +description = Xenia city, OH +station = ('kffo', 0.002989935614642255) +zone = ('ohz062', 0.00071786907921904744) + +[fips3986856] +centroid = (0.72026807821991878, -1.4061947962782095) +description = Yankee Lake village, OH +station = ('kyng', 0.0013203603680526322) +zone = ('ohz023', 0.0026517263874849995) + +[fips3986940] +centroid = (0.69463397371027247, -1.4642376229621656) +description = Yellow Springs village, OH +station = ('ksgh', 0.0010200917003070421) +zone = ('ohz062', 0.0018877295303374247) + +[fips3987164] +centroid = (0.70380941393410201, -1.4747164052582142) +description = Yorkshire village, OH +station = ('kves', 0.0022361073627710851) +zone = ('ohz042', 0.0037379983150820357) + +[fips3987178] +centroid = (0.70081444639097223, -1.4086053577746014) +description = Yorkville village, OH +station = ('khlg', 0.00079503211474500905) +zone = ('wvz003', 0.001539454772126277) + +[fips3988000] +centroid = (0.71731452733993883, -1.4075365181406803) +description = Youngstown city, OH +station = ('kyng', 0.0026478782711984485) +zone = ('ohz033', 0.0022527604737189824) + +[fips3988028] +centroid = (0.68558822890315885, -1.4380594818713801) +description = Zaleski village, OH +station = ('kuni', 0.0025509402339342312) +zone = ('ohz084', 0.0013344178269654619) + +[fips3988070] +centroid = (0.70404176961742004, -1.4604546741683453) +description = Zanesfield village, OH +station = ('kedj', 0.0019697460579176673) +zone = ('ohz044', 0.001457600241438849) + +[fips3988084] +centroid = (0.6973816804582722, -1.4313786232941337) +description = Zanesville city, OH +station = ('kzzv', 0.0015028558738673647) +zone = ('ohz057', 0.00091544905177535498) + +[fips3988168] +centroid = (0.7088302025933142, -1.4210990528789076) +description = Zoar village, OH +station = ('kphd', 0.0025550036757295193) +zone = ('ohz039', 0.0030763889631923273) + +[fips40001] +centroid = (0.62652956823466444, -1.6519833014644336) +description = Adair County, OK +station = ('ktqh', 0.005016642009712179) +zone = ('okz069', 0.00025733208075766659) + +[fips4000100] +centroid = (0.59052560742758642, -1.6823255538043822) +description = Achille town, OK +station = ('kdua', 0.001878954327672706) +zone = ('okz052', 0.0029190165494945111) + +[fips4000193250] +centroid = (0.6242165008302889, -1.6506425569863443) +description = Stilwell East CCD, OK +station = ('kjsv', 0.0065587725715441272) +zone = ('okz069', 0.0023909153128501039) + +[fips4000193263] +centroid = (0.6248489034314566, -1.6533631936776456) +description = Stilwell West CCD, OK +station = ('ktqh', 0.0044669936337647315) +zone = ('okz069', 0.0017668467983813219) + +[fips4000193588] +centroid = (0.63027239190898121, -1.6521077434401008) +description = Watts CCD, OK +station = ('kslg', 0.0029113511634648115) +zone = ('okz069', 0.0039801887080568622) + +[fips4000193796] +centroid = (0.62845972785444504, -1.6521823388123313) +description = Westville CCD, OK +station = ('kslg', 0.0042003665359755509) +zone = ('okz069', 0.0021684057261937926) + +[fips4000200] +centroid = (0.60682361415575703, -1.6871942195659906) +description = Ada city, OK +station = ('kadh', 0.00062938548769892703) +zone = ('okz042', 0.0007372950510094805) + +[fips4000250] +centroid = (0.63593689290291389, -1.6628209234546925) +description = Adair town, OK +station = ('kgcm', 0.0038234851105867431) +zone = ('okz062', 0.0024229712476387844) + +[fips40003] +centroid = (0.64105425062963883, -1.7160678471535562) +description = Alfalfa County, OK +station = ('kavk', 0.0049050253267543054) +zone = ('okz006', 2.3931158175136721e-05) + +[fips4000390429] +centroid = (0.638233798558416, -1.7182638204184153) +description = Carmen CCD, OK +station = ('kavk', 0.0047269535966385128) +zone = ('okz006', 0.0033406406057212359) + +[fips4000390546] +centroid = (0.64108753405847441, -1.7165594016840877) +description = Cherokee CCD, OK +station = ('kavk', 0.004510784560003674) +zone = ('okz006', 0.00038633930940322198) + +[fips4000391313] +centroid = (0.63811363263941612, -1.7145596557870302) +description = Helena CCD, OK +station = ('kend', 0.0060040855106627917) +zone = ('okz006', 0.0032037534073666545) + +[fips4000392015] +centroid = (0.64412957313153041, -1.7159290411181449) +description = North Alfalfa CCD, OK +station = ('kavk', 0.005467804325021035) +zone = ('okz006', 0.0030549992253642018) + +[fips4000450] +centroid = (0.5976544047573572, -1.7098308432583842) +description = Addington town, OK +station = ('kduc', 0.0039761014721202918) +zone = ('okz045', 0.0029740412609577682) + +[fips40005] +centroid = (0.59995366660734961, -1.6761217984314611) +description = Atoka County, OK +station = ('kaqr', 0.001683435453696161) +zone = ('okz048', 4.8632715042609613e-05) + +[fips4000590481] +centroid = (0.5985557625962572, -1.6754539307398928) +description = Central Atoka CCD, OK +station = ('kaqr', 0.0028361540580181918) +zone = ('okz048', 0.0015018470582957703) + +[fips4000592028] +centroid = (0.60257529077018523, -1.6746732100588908) +description = North Atoka CCD, OK +station = ('kaqr', 0.0035878388323225918) +zone = ('okz048', 0.0029172731374952623) + +[fips4000593666] +centroid = (0.59793219136110476, -1.6805543936794585) +description = West Atoka CCD, OK +station = ('kaqr', 0.0031658022961416404) +zone = ('okz048', 0.0041336134910642938) + +[fips4000600] +centroid = (0.64047419045273857, -1.6573271331148973) +description = Afton town, OK +station = ('kgmj', 0.0034579487710679735) +zone = ('okz058', 0.0031831740024813667) + +[fips40007] +centroid = (0.64137942292257788, -1.7537601696658434) +description = Beaver County, OK +station = ('kpyx', 0.0070190650785588535) +zone = ('okz003', 9.2028547346360097e-05) + +[fips4000700] +centroid = (0.62648712182725597, -1.6907037276259007) +description = Agra town, OK +station = ('kcuh', 0.0016749495185773818) +zone = ('okz026', 0.0033556469108427861) + +[fips4000792041] +centroid = (0.64376783619076206, -1.7534689963867331) +description = North Beaver CCD, OK +station = ('klbl', 0.0075462650752557876) +zone = ('okz003', 0.0023689704440124) + +[fips4000792860] +centroid = (0.63990379939989417, -1.7530799799497561) +description = South Beaver CCD, OK +station = ('kpyx', 0.0061360672657015019) +zone = ('okz003', 0.0015673778794289908) + +[fips40009] +centroid = (0.61564648041739112, -1.7395982539558958) +description = Beckham County, OK +station = ('kcsm', 0.0068470480044852573) +zone = ('okz021', 0.00017372687816520898) + +[fips4000900] +centroid = (0.61966112166941367, -1.6522472650605053) +description = Akins CDP, OK +station = ('kjsv', 0.0022493026652201011) +zone = ('okz072', 0.0012609951209831181) + +[fips4000950] +centroid = (0.59122187162608453, -1.6782255659519374) +description = Albany CDP, OK +station = ('kdua', 0.0036608092513122688) +zone = ('okz052', 0.0021562260599909799) + +[fips4000990455] +centroid = (0.61456071108972554, -1.7359311601178231) +description = Carter CCD, OK +station = ('kcsm', 0.0044393457212480213) +zone = ('okz021', 0.0032962841451574646) + +[fips4000991014] +centroid = (0.61780693623197247, -1.736226749079941) +description = Elk City CCD, OK +station = ('kcsm', 0.0040495212038830211) +zone = ('okz021', 0.0036701510231241124) + +[fips4000991066] +centroid = (0.61483659528458823, -1.7431598950005631) +description = Erick CCD, OK +station = ('kcsm', 0.0098606642227286271) +zone = ('okz021', 0.002852875710107628) + +[fips4000992756] +centroid = (0.61533780148588346, -1.7393118454256435) +description = Sayre CCD, OK +station = ('kcsm', 0.0066873661070696467) +zone = ('okz021', 0.00043898679349639992) + +[fips4001050] +centroid = (0.6049684862405198, -1.6597971056190273) +description = Albion town, OK +station = ('krkr', 0.0092872390382103369) +zone = ('okz075', 0.0043166701729268576) + +[fips40011] +centroid = (0.62618542421275625, -1.7179089775281924) +description = Blaine County, OK +station = ('kjwg', 0.00025510917155803687) +zone = ('okz017', 7.8742907576483069e-05) + +[fips4001150] +centroid = (0.60913443008539758, -1.6701064688045848) +description = Alderson town, OK +station = ('kmlc', 0.0013698694334122845) +zone = ('okz073', 0.00092707535832977186) + +[fips4001190416] +centroid = (0.62921055104536039, -1.7202702160199228) +description = Canton CCD, OK +station = ('kjwg', 0.0038322376216166714) +zone = ('okz017', 0.0035827733275657493) + +[fips4001191170] +centroid = (0.62172102906578741, -1.7187755858616851) +description = Geary CCD, OK +station = ('koja', 0.0030120740589929815) +zone = ('okz017', 0.0044652389978110801) + +[fips4001192392] +centroid = (0.62993943544757836, -1.7161191947401497) +description = Okeene CCD, OK +station = ('kjwg', 0.0041994403091891218) +zone = ('okz017', 0.0040891758409928487) + +[fips4001193575] +centroid = (0.62587479051248618, -1.71751750017697) +description = Watonga CCD, OK +station = ('kjwg', 0.00021890465779556844) +zone = ('okz017', 0.00046509750750127265) + +[fips4001250] +centroid = (0.60951679681792448, -1.7065184526841941) +description = Alex town, OK +station = ('kchk', 0.0040642557858974679) +zone = ('okz027', 0.0022546290482969079) + +[fips40013] +centroid = (0.59278369696052424, -1.6801261422408966) +description = Bryan County, OK +station = ('kdua', 0.0019244385138737182) +zone = ('okz052', 6.6864235083981933e-05) + +[fips4001350] +centroid = (0.63721218753405362, -1.7182537498686314) +description = Aline town, OK +station = ('kavk', 0.0055456153447460913) +zone = ('okz011', 0.0036664049459773458) + +[fips4001390624] +centroid = (0.59104215507300673, -1.6845017524888166) +description = Colbert CCD, OK +station = ('kdua', 0.0022124800421595174) +zone = ('okz052', 0.0040687785928067224) + +[fips4001390793] +centroid = (0.59339033850193235, -1.6826901705384165) +description = Durant CCD, OK +station = ('kdua', 0.0010156382654160018) +zone = ('okz052', 0.0022767821456006572) + +[fips4001390819] +centroid = (0.59342618756476828, -1.6754184481961998) +description = East Bryan CCD, OK +station = ('khhw', 0.0065688712933461698) +zone = ('okz052', 0.0039021672020271296) + +[fips4001392054] +centroid = (0.59453068427530786, -1.6792440004770612) +description = North Central Bryan CCD, OK +station = ('kdua', 0.003372227194960789) +zone = ('okz052', 0.0018993396445139605) + +[fips4001392873] +centroid = (0.58983529480183772, -1.6813411357463801) +description = South Bryan CCD, OK +station = ('kdua', 0.0027146759500659666) +zone = ('okz052', 0.0031081525277141158) + +[fips4001392938] +centroid = (0.59122187162608453, -1.6782255659519374) +description = Southeast Bryan CCD, OK +station = ('kdua', 0.0036608092513122688) +zone = ('okz052', 0.0021562260599909799) + +[fips4001400] +centroid = (0.60872516782909747, -1.6827240648324902) +description = Allen town, OK +station = ('kadh', 0.0039143033078150461) +zone = ('okz032', 0.0037855706751364171) + +[fips40015] +centroid = (0.61379599507796423, -1.7170731568027047) +description = Caddo County, OK +station = ('kchk', 0.0060538304203936848) +zone = ('okz023', 0.00014136801217886261) + +[fips4001590117] +centroid = (0.61305761608461551, -1.7146730498285321) +description = Anadarko CCD, OK +station = ('kchk', 0.0039941641228343787) +zone = ('okz023', 0.0020616504284460629) + +[fips4001590143] +centroid = (0.60950241530488813, -1.7173419200542195) +description = Apache CCD, OK +station = ('kfsi', 0.0056187254660849941) +zone = ('okz023', 0.0044172176200741164) + +[fips4001590247] +centroid = (0.61770356038037677, -1.7162434447295991) +description = Binger-Hinton CCD, OK +station = ('krqo', 0.0048717842670594263) +zone = ('okz023', 0.00384046371766656) + +[fips4001590442] +centroid = (0.61250478304404632, -1.7199543463318971) +description = Carnegie CCD, OK +station = ('khbr', 0.0074547210862625172) +zone = ('okz023', 0.0028162219390526523) + +[fips4001590728] +centroid = (0.60948300724360582, -1.7134302706813573) +description = Cyril-Cement CCD, OK +station = ('kchk', 0.0042487283417784018) +zone = ('okz027', 0.0044510496230576839) + +[fips4001591131] +centroid = (0.61285035823594125, -1.7180147444808633) +description = Fort Cobb CCD, OK +station = ('kchk', 0.0067020241332203679) +zone = ('okz023', 0.0013607280066252727) + +[fips4001591456] +centroid = (0.6183193474470654, -1.7200940424852267) +description = Hydro CCD, OK +station = ('koja', 0.0026171238036207531) +zone = ('okz023', 0.0050944498221095454) + +[fips40017] +centroid = (0.62034963660603282, -1.710070738764071) +description = Canadian County, OK +station = ('krqo', 0.0012905315185653598) +zone = ('okz024', 4.1071765987035953e-05) + +[fips4001700] +centroid = (0.60487982351451852, -1.7332698297145046) +description = Altus city, OK +station = ('klts', 0.00062080258059218354) +zone = ('okz036', 0.0019379197039126827) + +[fips4001790832] +centroid = (0.61936029671953985, -1.7060096368473603) +description = East Canadian CCD, OK +station = ('krce', 0.0010419551283950166) +zone = ('okz024', 0.0034822503807934711) + +[fips4001791040] +centroid = (0.62065402202758069, -1.7092963187216683) +description = El Reno CCD, OK +station = ('krqo', 0.0018356249949733898) +zone = ('okz024', 0.00074075335219737676) + +[fips4001793523] +centroid = (0.61840849886525728, -1.7143124298984851) +description = Walnut CCD, OK +station = ('krqo', 0.0031686706566474111) +zone = ('okz024', 0.0039210511505805914) + +[fips4001793679] +centroid = (0.62112382975563252, -1.713847980331237) +description = West Canadian CCD, OK +station = ('krqo', 0.0033740974978930562) +zone = ('okz024', 0.0031359768127839868) + +[fips4001800] +centroid = (0.64230013646288253, -1.7220798432015607) +description = Alva city, OK +station = ('kavk', 0.00049011492205023352) +zone = ('okz005', 0.0028202671145091422) + +[fips40019] +centroid = (0.5978075224926348, -1.6979946485898894) +description = Carter County, OK +station = ('k1f0', 0.0030091176497848153) +zone = ('okz046', 3.4861686194914675e-05) + +[fips4001900] +centroid = (0.61366048771483939, -1.7083643303543958) +description = Amber town, OK +station = ('kchk', 0.0016397388338581227) +zone = ('okz027', 0.0024987123980773711) + +[fips4001950] +centroid = (0.6326310473134189, -1.7136813362942565) +description = Ames town, OK +station = ('kend', 0.0040862498152272513) +zone = ('okz011', 0.0050418027644710955) + +[fips4001990156] +centroid = (0.59627191200356, -1.6954422267318954) +description = Ardmore CCD, OK +station = ('k1f0', 0.00040493527326938437) +zone = ('okz046', 0.0025757858595645499) + +[fips4001990169] +centroid = (0.59932164797861731, -1.6971377442870377) +description = Ardmore North CCD, OK +station = ('kadm', 0.0032226239587924616) +zone = ('okz046', 0.0016738094630407527) + +[fips4001991274] +centroid = (0.59731738167879711, -1.7017149051569778) +description = Healdton Central CCD, OK +station = ('k1f0', 0.0056279244375660575) +zone = ('okz046', 0.0031421740268072441) + +[fips4001991287] +centroid = (0.59990587949243002, -1.7018266062291054) +description = Healdton North CCD, OK +station = ('kduc', 0.0067391648210646743) +zone = ('okz046', 0.0038322268331477029) + +[fips4001993861] +centroid = (0.59600142087608599, -1.7001889812452518) +description = Wilson CCD, OK +station = ('k1f0', 0.0042055543083215864) +zone = ('okz046', 0.0025707496256918566) + +[fips4002000] +centroid = (0.64444582679199169, -1.7155475819568291) +description = Amorita town, OK +station = ('kavk', 0.0058799313543110602) +zone = ('okz006', 0.0033955402881000614) + +[fips4002050] +centroid = (0.6119958624874573, -1.7146898049893513) +description = Anadarko city, OK +station = ('kchk', 0.0040134500900485251) +zone = ('okz023', 0.0026715493699889696) + +[fips40021] +centroid = (0.62664941999439894, -1.6580068690453793) +description = Cherokee County, OK +station = ('ktqh', 0.00044143094646885043) +zone = ('okz068', 5.6606610701123928e-05) + +[fips4002190845] +centroid = (0.62542484463132209, -1.6558267259168353) +description = East Cherokee CCD, OK +station = ('ktqh', 0.0024989995954137253) +zone = ('okz068', 0.0022055549073789031) + +[fips4002191443] +centroid = (0.62715696174087887, -1.6609824808871043) +description = Hulbert CCD, OK +station = ('ktqh', 0.0023027040544296635) +zone = ('okz068', 0.0024146135510079722) + +[fips4002192080] +centroid = (0.62966822873511086, -1.6579700600514546) +description = North Cherokee CCD, OK +station = ('ktqh', 0.0025944814801382278) +zone = ('okz068', 0.0029806762936542366) + +[fips4002192899] +centroid = (0.62388843129079152, -1.6584799230858396) +description = South Cherokee CCD, OK +station = ('ktqh', 0.0032008355220658857) +zone = ('okz068', 0.0028208264507791703) + +[fips4002193289] +centroid = (0.62665816409395136, -1.6581004535998709) +description = Tahlequah CCD, OK +station = ('ktqh', 0.00042048744273358052) +zone = ('okz068', 4.6057047442974831e-05) + +[fips4002250] +centroid = (0.59747992419203533, -1.6689081082868733) +description = Antlers city, OK +station = ('khhw', 0.0036646267151337168) +zone = ('okz053', 0.0037418604753597972) + +[fips40023] +centroid = (0.59389444194978591, -1.6677355437355059) +description = Choctaw County, OK +station = ('khhw', 0.00020450787203000228) +zone = ('okz053', 3.645700873758562e-05) + +[fips4002300] +centroid = (0.60900815551401577, -1.7166816445448976) +description = Apache town, OK +station = ('kfsi', 0.0051584934368078365) +zone = ('okz038', 0.0043534923470308741) + +[fips4002391144] +centroid = (0.59425279295180544, -1.6630766141901099) +description = Fort Towson CCD, OK +station = ('khhw', 0.0036936162042208675) +zone = ('okz053', 0.0038488795787722497) + +[fips4002391430] +centroid = (0.59358585028474065, -1.6669536536839049) +description = Hugo CCD, OK +station = ('khhw', 0.0006276054903548889) +zone = ('okz053', 0.00068169050572866098) + +[fips4002393692] +centroid = (0.59414540284293016, -1.6720919728149464) +description = West Choctaw CCD, OK +station = ('khhw', 0.0037885360924122995) +zone = ('okz053', 0.0036507424794549998) + +[fips40025] +centroid = (0.64150058367925133, -1.7891149378043496) +description = Cimarron County, OK +station = ('kspd', 0.0093382575034148037) +zone = ('okz001', 0.00017576652818081028) + +[fips4002500] +centroid = (0.62095085017346729, -1.7271666227597906) +description = Arapaho town, OK +station = ('kclk', 0.00087940316804746772) +zone = ('okz016', 0.0012216565208592539) + +[fips4002550] +centroid = (0.62248017747723483, -1.698650682949129) +description = Arcadia town, OK +station = ('kgok', 0.0034694961974386018) +zone = ('okz025', 0.0023024765956436849) + +[fips4002590286] +centroid = (0.64177069083428995, -1.7921778859218445) +description = Boise City CCD, OK +station = ('kcao', 0.008597690307799076) +zone = ('okz001', 0.0023599015566081252) + +[fips4002591560] +centroid = (0.64175445927224639, -1.7836228927938063) +description = Keyes CCD, OK +station = ('keha', 0.0059123041658118419) +zone = ('okz001', 0.0045423128597188661) + +[fips4002600] +centroid = (0.59679729101499546, -1.6951502855079141) +description = Ardmore city, OK +station = ('k1f0', 0.00082144754434256896) +zone = ('okz046', 0.0025249472068211926) + +[fips4002650] +centroid = (0.61662775688273996, -1.648434296603551) +description = Arkoma town, OK +station = ('kfsm', 0.0011640626397278694) +zone = ('arz029', 0.0033746924645567484) + +[fips40027] +centroid = (0.61441029861478869, -1.6986998488741578) +description = Cleveland County, OK +station = ('koun', 0.0017510443497854031) +zone = ('okz029', 1.9487562911846982e-05) + +[fips4002750] +centroid = (0.59433389840214557, -1.6815336106562899) +description = Armstrong town, OK +station = ('kdua', 0.0020597985039121866) +zone = ('okz052', 0.0020001876947437691) + +[fips4002790858] +centroid = (0.61323820530231943, -1.6971959510175918) +description = East Cleveland CCD, OK +station = ('koun', 0.0032825590942341062) +zone = ('okz029', 0.0016917597708797621) + +[fips4002791677] +centroid = (0.6107746381565442, -1.6983419167511586) +description = Lexington CCD, OK +station = ('koun', 0.0043720239786839811) +zone = ('okz028', 0.0019562159148847117) + +[fips4002791976] +centroid = (0.61304587001874955, -1.6995691450146986) +description = Noble CCD, OK +station = ('koun', 0.0019010643945852352) +zone = ('okz029', 0.0015540468456484114) + +[fips4002791989] +centroid = (0.61492543254351484, -1.7007412557804602) +description = Norman CCD, OK +station = ('koun', 0.00028660521316784346) +zone = ('okz029', 0.0017598440993648844) + +[fips4002792093] +centroid = (0.61679790903151688, -1.699900076894169) +description = North Cleveland CCD, OK +station = ('ktik', 0.0013537842110537142) +zone = ('okz029', 0.0025798064073668707) + +[fips4002800] +centroid = (0.63067617383143015, -1.7413357815861339) +description = Arnett town, OK +station = ('kgag', 0.0028790495738832663) +zone = ('okz009', 0.0014710984389526567) + +[fips40029] +centroid = (0.60358478920953873, -1.6805433108387082) +description = Coal County, OK +station = ('kaqr', 0.0037983389055114246) +zone = ('okz043', 0.00016958702118796996) + +[fips4002900] +centroid = (0.60969321469871607, -1.6746730006193806) +description = Arpelar CDP, OK +station = ('kmlc', 0.0025600246868042191) +zone = ('okz073', 0.0029132187646097756) + +[fips4002990871] +centroid = (0.60361180690635963, -1.6791053166146976) +description = East Coal CCD, OK +station = ('kaqr', 0.0033516408605109892) +zone = ('okz043', 0.0013272015751080613) + +[fips4002993705] +centroid = (0.60363842317745253, -1.6822149871962686) +description = West Coal CCD, OK +station = ('kaqr', 0.0047141039575403923) +zone = ('okz043', 0.0012351756084276223) + +[fips4003000] +centroid = (0.6106631814305119, -1.6916685979962809) +description = Asher town, OK +station = ('kadh', 0.0048517785198461784) +zone = ('okz030', 0.0038253135783621289) + +[fips4003050] +centroid = (0.60677162079734026, -1.6767694901168761) +description = Ashland town, OK +station = ('kmlc', 0.0046169709748551668) +zone = ('okz043', 0.0044833971734008484) + +[fips40031] +centroid = (0.60497698599397698, -1.7187408538095703) +description = Comanche County, OK +station = ('kfsi', 0.0015507465342849776) +zone = ('okz038', 7.0901018401533177e-05) + +[fips4003191126] +centroid = (0.6053320383237103, -1.7190065452816015) +description = Fort Sill CCD, OK +station = ('kfsi', 0.0019584172936375471) +zone = ('okz038', 0.00046486172828640276) + +[fips4003191651] +centroid = (0.60372911048538613, -1.7179903971377979) +description = Lawton CCD, OK +station = ('klaw', 0.0004914304826549226) +zone = ('okz038', 0.001354144395047953) + +[fips4003192119] +centroid = (0.60675130516484699, -1.7137606964153447) +description = Northeast Comanche CCD, OK +station = ('kfsi', 0.0041470000178768455) +zone = ('okz038', 0.0044010799643893848) + +[fips4003192249] +centroid = (0.6071170738161874, -1.7207138787157799) +description = Northwest Comanche CCD, OK +station = ('kfsi', 0.0042260576766206979) +zone = ('okz038', 0.0027353256349179184) + +[fips4003192951] +centroid = (0.60340254192904541, -1.7148888772438338) +description = Southeast Comanche CCD, OK +station = ('kfsi', 0.0021258387005871045) +zone = ('okz038', 0.0034724781370120755) + +[fips4003193133] +centroid = (0.60273282418847018, -1.7212944101315784) +description = Southwest Comanche CCD, OK +station = ('kfsi', 0.0034041463954751863) +zone = ('okz038', 0.003116727233510262) + +[fips40033] +centroid = (0.59848519893459906, -1.7169403896065054) +description = Cotton County, OK +station = ('klaw', 0.0048569793119154431) +zone = ('okz044', 2.1006293304552827e-05) + +[fips4003300] +centroid = (0.60013451762444114, -1.6778024981412538) +description = Atoka city, OK +station = ('kaqr', 0.00033625440158996064) +zone = ('okz048', 0.0013573830747188338) + +[fips4003350] +centroid = (0.61008254529495842, -1.6813936876101574) +description = Atwood town, OK +station = ('kadh', 0.0054657104616161996) +zone = ('okz032', 0.0020445154776402024) + +[fips4003393146] +centroid = (0.59681504101348815, -1.7187723570025688) +description = Southwest Cotton CCD, OK +station = ('ksps', 0.0037071514746571752) +zone = ('okz044', 0.0022614269697143431) + +[fips4003393315] +centroid = (0.59758155471437902, -1.7145286412862222) +description = Temple CCD, OK +station = ('kduc', 0.0056670813683614169) +zone = ('okz044', 0.0021674493245199722) + +[fips4003393536] +centroid = (0.6000418406411604, -1.7169594660552299) +description = Walters CCD, OK +station = ('klaw', 0.0033161929262200329) +zone = ('okz044', 0.0015653416133804008) + +[fips40035] +centroid = (0.64165092634101817, -1.6615805528618852) +description = Craig County, OK +station = ('kcfv', 0.0075522647382093629) +zone = ('okz057', 0.00010438407858110973) + +[fips4003500] +centroid = (0.6368475009868495, -1.6765658800063383) +description = Avant town, OK +station = ('kbvo', 0.0048899639678871764) +zone = ('okz055', 0.0045159089100046809) + +[fips4003592106] +centroid = (0.64394257855547177, -1.6613906784925607) +description = North Craig CCD, OK +station = ('kcfv', 0.0061852416674493564) +zone = ('okz057', 0.0023431462773467679) + +[fips4003593471] +centroid = (0.63943167038393722, -1.6597611518364361) +description = Vinita East CCD, OK +station = ('kgmj', 0.0050545428079703317) +zone = ('okz057', 0.0026791752409009218) + +[fips4003593484] +centroid = (0.64015800660544719, -1.6632390868901779) +description = Vinita West CCD, OK +station = ('kgcm', 0.0071763849531025327) +zone = ('okz057', 0.0019064499348361204) + +[fips40037] +centroid = (0.62670815032372851, -1.6821447202405833) +description = Creek County, OK +station = ('kcuh', 0.0056020995657008283) +zone = ('okz064', 0.00015335822224940649) + +[fips4003790338] +centroid = (0.62545734266199426, -1.6821856482115425) +description = Bristow CCD, OK +station = ('kokm', 0.0068048024754667298) +zone = ('okz064', 0.0011737936969905373) + +[fips4003790351] +centroid = (0.62334650655804735, -1.6834204162974509) +description = Bristow South CCD, OK +station = ('kcuh', 0.006103592915081486) +zone = ('okz064', 0.0034733958449199801) + +[fips4003790767] +centroid = (0.62834385544540516, -1.68515455798894) +description = Drumright CCD, OK +station = ('kcuh', 0.0032431049786765995) +zone = ('okz064', 0.0030878928459196048) + +[fips4003791534] +centroid = (0.62495072594001788, -1.6796038873688222) +description = Kellyville-Slick CCD, OK +station = ('kokm', 0.0047175162293719448) +zone = ('okz064', 0.0025546404991357058) + +[fips4003791573] +centroid = (0.6297418118163749, -1.6826755621325773) +description = Keystone Lake CCD, OK +station = ('kcuh', 0.00561180596841457) +zone = ('okz064', 0.003170456780586734) + +[fips4003792743] +centroid = (0.62775019915363162, -1.6773257614560717) +description = Sapulpa CCD, OK +station = ('krvs', 0.0022279526851786621) +zone = ('okz060', 0.0035258049452011561) + +[fips4003792808] +centroid = (0.62671706895620616, -1.683532204636041) +description = Shamrock-Heyburn Lake CCD, OK +station = ('kcuh', 0.0044891896250340681) +zone = ('okz064', 0.00125330143666177) + +[fips4003815] +centroid = (0.61912973872535138, -1.6549042495939865) +description = Badger Lee CDP, OK +station = ('kjsv', 0.00066070178741353994) +zone = ('okz072', 0.00098747716351333856) + +[fips40039] +centroid = (0.62213310130218324, -1.7278303365677392) +description = Custer County, OK +station = ('kclk', 0.0021648565058047268) +zone = ('okz016', 0.00013070320194840949) + +[fips4003990390] +centroid = (0.62218464087499459, -1.7323777046673476) +description = Butler CCD, OK +station = ('kcsm', 0.0052753662097036972) +zone = ('okz016', 0.0036409958608882875) + +[fips4003990611] +centroid = (0.62061358274881195, -1.728026127603228) +description = Clinton CCD, OK +station = ('kclk', 0.0012890597849241536) +zone = ('okz016', 0.001406182722973188) + +[fips4003990715] +centroid = (0.62368061493675664, -1.7276870973960279) +description = Custer City CCD, OK +station = ('kclk', 0.0035569798377873838) +zone = ('okz016', 0.0016736071289372148) + +[fips4003993328] +centroid = (0.6236503160209419, -1.7231585264924631) +description = Thomas CCD, OK +station = ('koja', 0.00339152809743506) +zone = ('okz016', 0.0041851318854217818) + +[fips4003993614] +centroid = (0.62061663707500292, -1.7234676941161617) +description = Weatherford CCD, OK +station = ('koja', 0.0011493320234281137) +zone = ('okz016', 0.0038677797838996188) + +[fips4004075] +centroid = (0.63079911482394069, -1.6615505506520434) +description = Ballou CDP, OK +station = ('ktqh', 0.0046320369299812716) +zone = ('okz062', 0.0028209385505771705) + +[fips40041] +centroid = (0.63518411494323623, -1.654715352609043) +description = Delaware County, OK +station = ('kgmj', 0.003825224355634373) +zone = ('okz063', 0.00027015900092235026) + +[fips4004190637] +centroid = (0.63258057239145127, -1.6524072593930357) +description = Colcord CCD, OK +station = ('kslg', 0.0028197986326342923) +zone = ('okz063', 0.0033718247555435724) + +[fips4004191209] +centroid = (0.63854137793249499, -1.6545425650130956) +description = Grove CCD, OK +station = ('kgmj', 0.00090340964078484184) +zone = ('okz063', 0.003099026479880048) + +[fips4004191495] +centroid = (0.6358373218690877, -1.6546573902245842) +description = Jay CCD, OK +station = ('kgmj', 0.0031840234028526191) +zone = ('okz063', 0.00039554932214718418) + +[fips4004191508] +centroid = (0.63277268078221827, -1.6560346818972107) +description = Kansas CCD, OK +station = ('ktqh', 0.0059440178378201598) +zone = ('okz063', 0.0029035542803515818) + +[fips4004250] +centroid = (0.63809466091044698, -1.6783506187928428) +description = Barnsdall city, OK +station = ('kbvo', 0.0041421376631866815) +zone = ('okz054', 0.0035197838714736813) + +[fips40043] +centroid = (0.62794211555818102, -1.7281219461791624) +description = Dewey County, OK +station = ('kclk', 0.0077973776127751599) +zone = ('okz015', 0.00018321310698972326) + +[fips4004392769] +centroid = (0.62898727107415286, -1.7240161638336009) +description = Seiling CCD, OK +station = ('kjwg', 0.0058962661723335639) +zone = ('okz015', 0.0033535164572225506) + +[fips4004393308] +centroid = (0.6268026424494314, -1.7292572304977072) +description = Taloga-Leedey CCD, OK +station = ('kclk', 0.0069176225629966701) +zone = ('okz015', 0.0016442220829200268) + +[fips4004393458] +centroid = (0.6297135374824927, -1.7321496948538673) +description = Vici CCD, OK +station = ('kwwr', 0.0073403585132487282) +zone = ('okz015', 0.0037104692580525204) + +[fips4004450] +centroid = (0.64120024742156811, -1.6746088772226622) +description = Bartlesville city, OK +station = ('kbvo', 0.0010819609811296847) +zone = ('okz055', 0.00072914169036221302) + +[fips40045] +centroid = (0.63223257119189602, -1.7409683548720041) +description = Ellis County, OK +station = ('kgag', 0.0013422533095367381) +zone = ('okz009', 0.00012148499368493534) + +[fips4004592132] +centroid = (0.63580196149844226, -1.740274446867996) +description = Northeast Ellis CCD, OK +station = ('kgag', 0.0023826004073879688) +zone = ('okz009', 0.0037256320798562462) + +[fips4004592262] +centroid = (0.63524754020825369, -1.7436434908297058) +description = Northwest Ellis CCD, OK +station = ('kgag', 0.0025615469572068741) +zone = ('okz009', 0.0037561389959163685) + +[fips4004593003] +centroid = (0.62918643059509782, -1.7399146123361124) +description = South Ellis CCD, OK +station = ('kgag', 0.0045004509275925284) +zone = ('okz009', 0.0030808326696775486) + +[fips40047] +centroid = (0.63492064003935511, -1.7067178390979421) +description = Garfield County, OK +station = ('kwdg', 5.0019109800954519e-05) +zone = ('okz012', 7.0414511327377921e-05) + +[fips4004700] +centroid = (0.61721348937970932, -1.6822810130018715) +description = Bearden town, OK +station = ('kokm', 0.008191729484450367) +zone = ('okz065', 0.0020011766474589071) + +[fips4004750] +centroid = (0.64254516323656996, -1.7544664171476627) +description = Beaver town, OK +station = ('klbl', 0.0074179739971195948) +zone = ('okz003', 0.0013161662992107548) + +[fips4004791053] +centroid = (0.63506162773633124, -1.7082100781551046) +description = Enid CCD, OK +station = ('kend', 0.0011086046594594194) +zone = ('okz012', 0.0012770808604110964) + +[fips4004792184] +centroid = (0.63728325734119484, -1.7061656692824885) +description = North Garfield CCD, OK +station = ('kwdg', 0.0023979632666475369) +zone = ('okz012', 0.0023796572463669523) + +[fips4004793016] +centroid = (0.63275189391082698, -1.706149908959343) +description = South Garfield CCD, OK +station = ('kwdg', 0.0022419990812723198) +zone = ('okz012', 0.0022157237152966029) + +[fips40049] +centroid = (0.60579243872709387, -1.698427420431214) +description = Garvin County, OK +station = ('kpvj', 0.0012828727227983108) +zone = ('okz040', 9.7864410520111676e-05) + +[fips4004950] +centroid = (0.59558694008532231, -1.6854424325957638) +description = Bee CDP, OK +station = ('kdua', 0.004060687963567686) +zone = ('okz051', 0.0033828276595371303) + +[fips4004991027] +centroid = (0.60515624876144936, -1.7011667146922189) +description = Elmore City CCD, OK +station = ('kpvj', 0.0035974587846199094) +zone = ('okz040', 0.0023666890852781235) + +[fips4004991690] +centroid = (0.60804970795528313, -1.7037713742547254) +description = Lindsay CCD, OK +station = ('kpvj', 0.006092441393116277) +zone = ('okz028', 0.0038857332383453939) + +[fips4004991807] +centroid = (0.60726533953614426, -1.6998958008375018) +description = Maysville CCD, OK +station = ('kpvj', 0.0028760201801885971) +zone = ('okz040', 0.0020006167980781068) + +[fips4004992483] +centroid = (0.60583827107325117, -1.6965045562877068) +description = Pauls Valley CCD, OK +station = ('kpvj', 0.00029854845947121567) +zone = ('okz040', 0.00153714960752738) + +[fips4004993276] +centroid = (0.60642437008936334, -1.6928506396854863) +description = Stratford CCD, OK +station = ('kpvj', 0.0033554195808146278) +zone = ('okz042', 0.0044394580894984662) + +[fips4005000] +centroid = (0.62448812642177687, -1.6759253441708566) +description = Beggs city, OK +station = ('kokm', 0.0022312039717500083) +zone = ('okz066', 0.0024816843314586206) + +[fips4005070] +centroid = (0.62035045691078128, -1.6502619181297769) +description = Belfonte CDP, OK +station = ('kjsv', 0.0039973887780523501) +zone = ('okz072', 0.0029881643405495722) + +[fips4005090] +centroid = (0.62395011122655697, -1.6501205290070728) +description = Bell CDP, OK +station = ('kjsv', 0.0065556877764169534) +zone = ('okz069', 0.0028420858204222625) + +[fips40051] +centroid = (0.61123276963190021, -1.7084485250375121) +description = Grady County, OK +station = ('kchk', 0.0017311505635927431) +zone = ('okz027', 8.1280911749105611e-05) + +[fips4005190046] +centroid = (0.60971529311375394, -1.7069777709834415) +description = Alex CCD, OK +station = ('kchk', 0.0036681800837031126) +zone = ('okz027', 0.0018575686329672717) + +[fips4005190104] +centroid = (0.61324354600983044, -1.708161313655804) +description = Amber-Pocasset CCD, OK +station = ('kchk', 0.0015352487238305139) +zone = ('okz027', 0.002090733974412833) + +[fips4005190572] +centroid = (0.61071349927284702, -1.7105454857739057) +description = Chickasha CCD, OK +station = ('kchk', 0.0019204018308776026) +zone = ('okz027', 0.0018138384290910911) + +[fips4005191859] +centroid = (0.61564372279717305, -1.7099748329216737) +description = Minco CCD, OK +station = ('kchk', 0.0031032505741904358) +zone = ('okz027', 0.0046631471962866886) + +[fips4005192704] +centroid = (0.60673496888304834, -1.7085984139136734) +description = Rush Springs CCD, OK +station = ('kduc', 0.0051888639934653188) +zone = ('okz027', 0.004429970953030082) + +[fips4005193393] +centroid = (0.61549657408793734, -1.7066028917134057) +description = Tuttle CCD, OK +station = ('kokc', 0.0033005386495931956) +zone = ('okz027', 0.0045769212967507336) + +[fips40053] +centroid = (0.642076158359974, -1.7067252043873855) +description = Grant County, OK +station = ('kwdg', 0.0071400414139653574) +zone = ('okz007', 0.00014161560311037793) + +[fips4005391625] +centroid = (0.6405660122246859, -1.7024879812958564) +description = Lamont CCD, OK +station = ('kbkn', 0.0028600014008126288) +zone = ('okz007', 0.0037485520379037071) + +[fips4005391820] +centroid = (0.64335738711057056, -1.7050061947005113) +description = Medford CCD, OK +station = ('kbkn', 0.0051310292455857736) +zone = ('okz007', 0.0017665232055157705) + +[fips4005393159] +centroid = (0.64030855870672432, -1.7092720237384806) +description = Southwest Grant CCD, OK +station = ('kwdg', 0.0057342302879021742) +zone = ('okz007', 0.0028137131915533056) + +[fips4005393510] +centroid = (0.6441207941253928, -1.7103162716832414) +description = Wakita CCD, OK +station = ('kwdg', 0.0096135929175973755) +zone = ('okz007', 0.0034721034034181316) + +[fips4005400] +centroid = (0.59347877433513097, -1.6761718195678232) +description = Bennington town, OK +station = ('kdua', 0.0052761188747834616) +zone = ('okz052', 0.0032996553969042546) + +[fips40055] +centroid = (0.60973536440015175, -1.7375270717325544) +description = Greer County, OK +station = ('kaxs', 0.0051519650521081274) +zone = ('okz034', 0.00011374835149895875) + +[fips4005550] +centroid = (0.63909052832834246, -1.6565707248703758) +description = Bernice town, OK +station = ('kgmj', 0.0024730709563358772) +zone = ('okz063', 0.0039704828032810857) + +[fips4005591196] +centroid = (0.61074131982112367, -1.7350900161381171) +description = Granite CCD, OK +station = ('kaxs', 0.0052482738899609499) +zone = ('okz034', 0.0023348378735675076) + +[fips4005591768] +centroid = (0.60839034386539481, -1.7378174770667936) +description = Mangum CCD, OK +station = ('kaxs', 0.0043331898739731416) +zone = ('okz034', 0.0013583779435677947) + +[fips4005592275] +centroid = (0.61142470348974209, -1.7392895226645106) +description = Northwest Greer CCD, OK +station = ('kaxs', 0.0073710714648967668) +zone = ('okz034', 0.0021444304953520303) + +[fips4005650] +centroid = (0.61759212110763695, -1.7276895059503956) +description = Bessie town, OK +station = ('kclk', 0.0028335756296554472) +zone = ('okz022', 0.0016589904849686928) + +[fips40057] +centroid = (0.60643159575246663, -1.7426099242999673) +description = Harmon County, OK +station = ('kaxs', 0.0073075758297437192) +zone = ('okz033', 4.4481061900867695e-05) + +[fips4005700] +centroid = (0.61971711183181755, -1.704169745656493) +description = Bethany city, OK +station = ('kpwa', 0.00047140740425867219) +zone = ('okz025', 0.003419922683225881) + +[fips4005791183] +centroid = (0.6049214845237636, -1.7414945192816027) +description = Gould CCD, OK +station = ('kaxs', 0.0063839182256071811) +zone = ('okz033', 0.001755023267602591) + +[fips4005791391] +centroid = (0.60936493571970851, -1.7440742031825129) +description = Hollis CCD, OK +station = ('kaxs', 0.009253849687599916) +zone = ('okz033', 0.0031890795540083735) + +[fips4005800] +centroid = (0.61629961753007245, -1.6937558197954483) +description = Bethel Acres town, OK +station = ('ksnl', 0.001661741905254592) +zone = ('okz030', 0.0022874292886955051) + +[fips40059] +centroid = (0.64228912343530231, -1.7394447347948905) +description = Harper County, OK +station = ('kwwr', 0.0066525013655786194) +zone = ('okz004', 0.00021443258620787613) + +[fips4005900] +centroid = (0.63774657244442934, -1.6619394449159728) +description = Big Cabin town, OK +station = ('kgcm', 0.005611233902412186) +zone = ('okz057', 0.0038708294945795016) + +[fips4005990377] +centroid = (0.64236528960385941, -1.7369761760074549) +description = Buffalo CCD, OK +station = ('kwwr', 0.0064254891286981879) +zone = ('okz004', 0.0020583594609143432) + +[fips4005991638] +centroid = (0.64172201360145187, -1.7426451974041501) +description = Laverne CCD, OK +station = ('kwwr', 0.0073609274170293075) +zone = ('okz004', 0.0025271664750708086) + +[fips40061] +centroid = (0.61491953333064309, -1.6599752862823633) +description = Haskell County, OK +station = ('kgzl', 0.00084374234368418178) +zone = ('okz074', 0.00016471085074823706) + +[fips4006100] +centroid = (0.63767538046424033, -1.7005709989119282) +description = Billings town, OK +station = ('kbkn', 0.0039206093614540093) +zone = ('okz013', 0.0038605040680335773) + +[fips4006191547] +centroid = (0.61588749293379907, -1.6560366541192653) +description = Keota CCD, OK +station = ('kjsv', 0.0028661831577337141) +zone = ('okz074', 0.0034935598655260565) + +[fips4006191755] +centroid = (0.61382906906728951, -1.6590381142872126) +description = McCurtain CCD, OK +station = ('kgzl', 0.0020233474920644998) +zone = ('okz074', 0.0012926282660796051) + +[fips4006193224] +centroid = (0.61686262584018092, -1.6593963256628919) +description = Stigler CCD, OK +station = ('kgzl', 0.0011601942646654892) +zone = ('okz074', 0.002151495553599587) + +[fips4006193718] +centroid = (0.61405039426973496, -1.6632283007554005) +description = West Haskell CCD, OK +station = ('kgzl', 0.0032712089764625812) +zone = ('okz074', 0.002662351720681356) + +[fips4006200] +centroid = (0.61628301944888597, -1.7164126369472874) +description = Binger town, OK +station = ('krqo', 0.0055750902604291492) +zone = ('okz023', 0.0024170841776628917) + +[fips40063] +centroid = (0.61178911078426601, -1.6799000522895933) +description = Hughes County, OK +station = ('kadh', 0.0074137489754483058) +zone = ('okz032', 8.0369981710201577e-05) + +[fips4006350] +centroid = (0.63173846848065651, -1.7086409126809596) +description = Bison CDP, OK +station = ('kend', 0.0024123059865196507) +zone = ('okz012', 0.0035818636359803081) + +[fips4006391378] +centroid = (0.61222210951839329, -1.6807019612677145) +description = Holdenville CCD, OK +station = ('kadh', 0.0071710631519795037) +zone = ('okz032', 0.00084364941214360031) + +[fips4006393029] +centroid = (0.60873518601900389, -1.6795888949905478) +description = South Hughes CCD, OK +station = ('kadh', 0.00640448414817255) +zone = ('okz032', 0.0029845328741532817) + +[fips4006393822] +centroid = (0.61507821866623436, -1.6786965779571732) +description = Wetumka CCD, OK +station = ('kokm', 0.0081538864651779525) +zone = ('okz032', 0.0035051454168175378) + +[fips4006400] +centroid = (0.62741991304598432, -1.6733473881459058) +description = Bixby city, OK +station = ('krvs', 0.0023335338601247662) +zone = ('okz060', 0.0031519434336120459) + +[fips4006450] +centroid = (0.6348340542551637, -1.6859278610206212) +description = Blackburn town, OK +station = ('kcuh', 0.0077989281777073411) +zone = ('okz059', 0.0017480844754313306) + +[fips40065] +centroid = (0.60377831131699988, -1.735070381184032) +description = Jackson County, OK +station = ('kaxs', 0.0021143558356147415) +zone = ('okz036', 0.00010982048342612568) + +[fips4006500] +centroid = (0.62154747352496897, -1.6579256937818687) +description = Blackgum CDP, OK +station = ('kjsv', 0.0040567377830312019) +zone = ('okz072', 0.0039370569547052458) + +[fips4006590065] +centroid = (0.60565478460898903, -1.7339110985882724) +description = Altus CCD, OK +station = ('kaxs', 0.00012160701262366816) +zone = ('okz036', 0.002213748540685154) + +[fips4006590078] +centroid = (0.60229532250487283, -1.7330186942884351) +description = Altus South CCD, OK +station = ('klts', 0.0024939122662672735) +zone = ('okz036', 0.0022090674399772021) + +[fips4006590884] +centroid = (0.60568962138085891, -1.7313739832678183) +description = East Jackson CCD, OK +station = ('klts', 0.0013321462915758255) +zone = ('okz036', 0.0036779013536180822) + +[fips4006593731] +centroid = (0.60289400534489179, -1.737597513221165) +description = West Jackson CCD, OK +station = ('kaxs', 0.0041519592879627858) +zone = ('okz036', 0.002189104462682028) + +[fips4006600] +centroid = (0.64229828641387532, -1.6982153629270966) +description = Blackwell city, OK +station = ('kbkn', 0.0011265776147085578) +zone = ('okz008', 0.0022093547719932651) + +[fips4006650] +centroid = (0.60702362888803563, -1.7336868237793912) +description = Blair town, OK +station = ('kaxs', 0.001420516609256827) +zone = ('okz036', 0.0035487668412290652) + +[fips40067] +centroid = (0.59524614709557788, -1.7076094405463234) +description = Jefferson County, OK +station = ('kduc', 0.0066182699903758685) +zone = ('okz045', 0.00011354538365436809) + +[fips4006700] +centroid = (0.61356711259985774, -1.704440271690552) +description = Blanchard city, OK +station = ('koun', 0.0031470614886028418) +zone = ('okz028', 0.0039765265337080892) + +[fips4006792665] +centroid = (0.59597613105522462, -1.7042840123626211) +description = Ringling CCD, OK +station = ('kduc', 0.0072219306842618474) +zone = ('okz045', 0.0027803525920277131) + +[fips4006793042] +centroid = (0.59371681979181046, -1.708103613070733) +description = South Jefferson CCD, OK +station = ('k0f2', 0.0075669721015797931) +zone = ('okz045', 0.0016957990353636226) + +[fips4006793601] +centroid = (0.59680730920490188, -1.7096530465674835) +description = Waurika CCD, OK +station = ('kduc', 0.0048225896977767647) +zone = ('okz045', 0.002264953730307032) + +[fips40069] +centroid = (0.59888276748491087, -1.686934985812192) +description = Johnston County, OK +station = ('kadm', 0.0052679581119430682) +zone = ('okz047', 0.00010578557148321973) + +[fips4006900] +centroid = (0.59323633064873638, -1.6795367620057906) +description = Blue CDP, OK +station = ('kdua', 0.0025168173911944954) +zone = ('okz052', 0.00064546246502976369) + +[fips4006950] +centroid = (0.64229507500805172, -1.6593556245847352) +description = Bluejacket town, OK +station = ('kgmj', 0.0058034358408473475) +zone = ('okz057', 0.0019991772763925382) + +[fips4006990897] +centroid = (0.59797217685426785, -1.6843385118438774) +description = East Johnston CCD, OK +station = ('kaqr', 0.0056799115949661529) +zone = ('okz047', 0.0024355098505096213) + +[fips4006993354] +centroid = (0.59986245570064034, -1.6871891930177447) +description = Tishomingo CCD, OK +station = ('kadm', 0.00518486237825072) +zone = ('okz047', 0.00093408442486232496) + +[fips4006993744] +centroid = (0.59882840047871122, -1.6900490371701853) +description = West Johnston CCD, OK +station = ('kadm', 0.0026956229810525113) +zone = ('okz047', 0.0024829614054559714) + +[fips40071] +centroid = (0.64254020650149424, -1.6954783725007041) +description = Kay County, OK +station = ('kpnc', 0.0015485324042964807) +zone = ('okz008', 5.515471931439484e-05) + +[fips4007190260] +centroid = (0.64267073967625099, -1.6984612449121175) +description = Blackwell CCD, OK +station = ('kbkn', 0.0013554522853361387) +zone = ('okz008', 0.0023870160731118387) + +[fips4007190325] +centroid = (0.64487678349089417, -1.6983736119303749) +description = Braman CCD, OK +station = ('kbkn', 0.0035137910746186438) +zone = ('okz008', 0.003249389341907891) + +[fips4007191521] +centroid = (0.64334909679662355, -1.6905742591019879) +description = Kaw City CCD, OK +station = ('kpnc', 0.0039965064066490004) +zone = ('okz008', 0.0039985600722900862) + +[fips4007191950] +centroid = (0.64387772212046757, -1.6936413261965175) +description = Newkirk CCD, OK +station = ('kpnc', 0.0028907932815845161) +zone = ('okz008', 0.0019522272797212327) + +[fips4007192561] +centroid = (0.64052477009446129, -1.6948470520036729) +description = Ponca City CCD, OK +station = ('kpnc', 0.00060225968011859182) +zone = ('okz008', 0.0021319175824789397) + +[fips4007193367] +centroid = (0.63985484291437578, -1.6992800137708133) +description = Tonkawa CCD, OK +station = ('kbkn', 0.00156207366662689) +zone = ('okz008', 0.0040962185777861397) + +[fips40073] +centroid = (0.62743593516851759, -1.709280663118278) +description = Kingfisher County, OK +station = ('kend', 0.0067051086258559526) +zone = ('okz018', 0.00012757557086722526) + +[fips4007300] +centroid = (0.64107566581956077, -1.789157244585418) +description = Boise City city, OK +station = ('kspd', 0.0097527535991265412) +zone = ('okz001', 0.00031707351480068046) + +[fips4007350] +centroid = (0.59372388837528101, -1.6779891087448773) +description = Bokchito town, OK +station = ('kdua', 0.0038890101622256405) +zone = ('okz052', 0.0019676844173161078) + +[fips4007391326] +centroid = (0.62946903430758083, -1.7083490587234411) +description = Hennessey CCD, OK +station = ('kend', 0.0046939286349793928) +zone = ('okz018', 0.0022724591436311674) + +[fips4007391586] +centroid = (0.62692610704071761, -1.7108278102337084) +description = Kingfisher CCD, OK +station = ('kjwg', 0.0057048754656618822) +zone = ('okz018', 0.0012276486494936173) + +[fips4007392379] +centroid = (0.62439585086422378, -1.7086748244283259) +description = Okarche-Cashion CCD, OK +station = ('krce', 0.0052760898447005902) +zone = ('okz018', 0.0030292491868949487) + +[fips4007450] +centroid = (0.61419544858386821, -1.6544030259393987) +description = Bokoshe town, OK +station = ('krkr', 0.0038120851531192662) +zone = ('okz074', 0.0046907130087553619) + +[fips40075] +centroid = (0.60949496274898207, -1.7275551155979922) +description = Kiowa County, OK +station = ('khbr', 0.0014567143533413878) +zone = ('okz035', 9.1316754741544278e-05) + +[fips4007500] +centroid = (0.6194150476981749, -1.6838928420193806) +description = Boley town, OK +station = ('kcqb', 0.0063248695872739876) +zone = ('okz065', 0.0022737367489389783) + +[fips4007591365] +centroid = (0.61114740557818537, -1.7285919982533096) +description = Hobart CCD, OK +station = ('khbr', 0.00058724253544686661) +zone = ('okz035', 0.0019442445120035898) + +[fips4007591716] +centroid = (0.61050906885756084, -1.7319917600098542) +description = Lone Wolf CCD, OK +station = ('khbr', 0.0026580244848375427) +zone = ('okz035', 0.0038118590822790494) + +[fips4007591898] +centroid = (0.61100067574797001, -1.7238863462438374) +description = Mountain View CCD, OK +station = ('khbr', 0.0040059105231516953) +zone = ('okz035', 0.0033938249615357969) + +[fips4007592691] +centroid = (0.60815915755267569, -1.7271905163172505) +description = Roosevelt CCD, OK +station = ('khbr', 0.0027323213783959476) +zone = ('okz035', 0.0012779755017376388) + +[fips4007592847] +centroid = (0.60545419391805733, -1.7273717513067774) +description = Snyder CCD, OK +station = ('klts', 0.0042994723517546397) +zone = ('okz035', 0.0039526434094176027) + +[fips40077] +centroid = (0.60868596773409767, -1.6628146751759703) +description = Latimer County, OK +station = ('kmlc', 0.007318879246337299) +zone = ('okz075', 0.00031349839509432358) + +[fips4007750] +centroid = (0.59390452995286236, -1.6732207994152586) +description = Boswell town, OK +station = ('khhw', 0.0047224635091375512) +zone = ('okz053', 0.004576606463530899) + +[fips4007792652] +centroid = (0.61043724855884129, -1.6602195451111799) +description = Red Oak CCD, OK +station = ('kgzl', 0.005325552759317031) +zone = ('okz075', 0.0025104122690705892) + +[fips4007793055] +centroid = (0.6069743233366669, -1.6620971179605979) +description = South Latimer CCD, OK +station = ('kmlc', 0.0081253531708565876) +zone = ('okz075', 0.0017503171589097338) + +[fips4007793848] +centroid = (0.60954667685471875, -1.6648843564161553) +description = Wilburton CCD, OK +station = ('kmlc', 0.0056635694978868674) +zone = ('okz075', 0.0021803394705226828) + +[fips40079] +centroid = (0.60911366066729888, -1.6528877310828172) +description = Le Flore County, OK +station = ('krkr', 0.0024320572330048746) +zone = ('okz076', 7.9946500427477943e-06) + +[fips4007950] +centroid = (0.6134368586777813, -1.6871937308737999) +description = Bowlegs town, OK +station = ('ksnl', 0.0053512021202968135) +zone = ('okz031', 0.00084031319316181378) + +[fips4007990182] +centroid = (0.61727174847014088, -1.6483202742435181) +description = Arkoma CCD, OK +station = ('kfsm', 0.0012208278913538382) +zone = ('arz029', 0.0037800299224275075) + +[fips4007990403] +centroid = (0.61232079043430099, -1.6497682692041427) +description = Cameron CCD, OK +station = ('krkr', 0.0017512559980755757) +zone = ('okz076', 0.0040946377999415721) + +[fips4007991300] +centroid = (0.60791908751406387, -1.6518547754183168) +description = Heavener CCD, OK +station = ('krkr', 0.0033404428654875938) +zone = ('okz076', 0.0014712919947958705) + +[fips4007992470] +centroid = (0.61308693761604904, -1.6545535780406757) +description = Panama-Bokoshe CCD, OK +station = ('krkr', 0.0031353352981616399) +zone = ('okz076', 0.0041933966184673904) + +[fips4007992548] +centroid = (0.61507153405519921, -1.6492005310517617) +description = Pocola CCD, OK +station = ('kfsm', 0.0024076524541529992) +zone = ('arz029', 0.0031955895545921608) + +[fips4007992587] +centroid = (0.61180136299561494, -1.6513595207897711) +description = Poteau CCD, OK +station = ('krkr', 0.0005633949568131536) +zone = ('okz076', 0.0029578944345328797) + +[fips4007993068] +centroid = (0.60361011393698505, -1.6521579216560958) +description = South Le Flore CCD, OK +station = ('kmez', 0.0066345846014297548) +zone = ('okz076', 0.0055440844425075457) + +[fips4007993211] +centroid = (0.61559783809113811, -1.6520159914813235) +description = Spiro CCD, OK +station = ('kjsv', 0.0036052280771151387) +zone = ('okz072', 0.0041694086595210006) + +[fips4007993302] +centroid = (0.60615813756526415, -1.65554410475106) +description = Talihina CCD, OK +station = ('krkr', 0.006092188938113312) +zone = ('okz076', 0.0036794134215257248) + +[fips4007993874] +centroid = (0.60942785483924289, -1.6557090034587885) +description = Wister CCD, OK +station = ('krkr', 0.0039305719530574506) +zone = ('okz076', 0.0023336682639200643) + +[fips4008050] +centroid = (0.62081401636011091, -1.6575872395333222) +description = Box CDP, OK +station = ('kjsv', 0.0033372927557608597) +zone = ('okz072', 0.0033578249141756038) + +[fips40081] +centroid = (0.62313696232805293, -1.6908992743152944) +description = Lincoln County, OK +station = ('kcqb', 0.00093886996254588897) +zone = ('okz026', 7.2708963583397016e-06) + +[fips4008150] +centroid = (0.6221989700281535, -1.6694818329185888) +description = Boynton town, OK +station = ('kokm', 0.0041868235267266815) +zone = ('okz070', 0.0039420758106987856) + +[fips4008190507] +centroid = (0.62299513687303576, -1.6903097719071407) +description = Chandler CCD, OK +station = ('kcqb', 0.00063597898475863579) +zone = ('okz026', 0.00049202632462332476) + +[fips4008191833] +centroid = (0.62005684017071827, -1.6925898700419459) +description = Meeker CCD, OK +station = ('ksnl', 0.0029996232476090299) +zone = ('okz026', 0.0033738103231180584) + +[fips4008192145] +centroid = (0.62521261259427963, -1.6878414400125077) +description = Northeast Lincoln CCD, OK +station = ('kcqb', 0.0023547301226466782) +zone = ('okz026', 0.0032309492087740739) + +[fips4008192288] +centroid = (0.62596345323848757, -1.6928001473102261) +description = Northwest Lincoln CCD, OK +station = ('kcuh', 0.0034116385253784168) +zone = ('okz026', 0.0032249201545211828) + +[fips4008192600] +centroid = (0.62053315797688002, -1.6878471995990392) +description = Prague CCD, OK +station = ('kcqb', 0.0033767861019401578) +zone = ('okz026', 0.0035900782206807549) + +[fips4008193653] +centroid = (0.62262648842842949, -1.6937312979194579) +description = Wellston CCD, OK +station = ('kcqb', 0.0032842396126309542) +zone = ('okz026', 0.0023625016188200867) + +[fips40083] +centroid = (0.62682018300841402, -1.7008366903839596) +description = Logan County, OK +station = ('kgok', 0.0012190565518424288) +zone = ('okz019', 0.00013972714377923602) + +[fips4008300] +centroid = (0.60873438316754791, -1.7053377723518051) +description = Bradley town, OK +station = ('kchk', 0.0052967667575773486) +zone = ('okz027', 0.003491796770170091) + +[fips4008390689] +centroid = (0.62794054476185424, -1.703258387080979) +description = Crescent CCD, OK +station = ('kgok', 0.0033147175307780392) +zone = ('okz019', 0.0023078913636527293) + +[fips4008390910] +centroid = (0.62567994195479371, -1.6971102378980261) +description = East Logan CCD, OK +station = ('kgok', 0.0025382206546841345) +zone = ('okz019', 0.0031633465808939888) + +[fips4008391222] +centroid = (0.62541980062978386, -1.7011754762450639) +description = Guthrie CCD, OK +station = ('kgok', 0.00080742598673327762) +zone = ('okz019', 0.0015396427404552012) + +[fips4008392197] +centroid = (0.62996861735267162, -1.7015436010908944) +description = North Logan CCD, OK +station = ('kgok', 0.0043962312237255819) +zone = ('okz019', 0.0031309434127859931) + +[fips4008400] +centroid = (0.62243760889677879, -1.6615270410670191) +description = Braggs town, OK +station = ('kmko', 0.0023958462135681442) +zone = ('okz070', 0.0026937649887588469) + +[fips4008450] +centroid = (0.64444095732337869, -1.6988202591392527) +description = Braman town, OK +station = ('kbkn', 0.0030394666814188669) +zone = ('okz008', 0.0032469990546060007) + +[fips40085] +centroid = (0.59267498040141742, -1.6972475953101582) +description = Love County, OK +station = ('k1f0', 0.0037476671862924525) +zone = ('okz050', 0.00013809411388140616) + +[fips4008550] +centroid = (0.60403098263281108, -1.7072395180113631) +description = Bray town, OK +station = ('kduc', 0.0031554898577499267) +zone = ('okz039', 0.0021980345626732099) + +[fips4008590923] +centroid = (0.59233663087262578, -1.6949562398016775) +description = East Love CCD, OK +station = ('k1f0', 0.0036421336664308607) +zone = ('okz050', 0.0018981513968481236) + +[fips4008593757] +centroid = (0.59288932428685481, -1.7000220928621759) +description = West Love CCD, OK +station = ('k1f0', 0.005109761521078982) +zone = ('okz050', 0.002341202406579312) + +[fips4008600] +centroid = (0.63629890909636255, -1.7056311272924802) +description = Breckenridge town, OK +station = ('kwdg', 0.00164527423646887) +zone = ('okz012', 0.0015853228563748091) + +[fips4008650] +centroid = (0.61725698298466891, -1.6544407599578268) +description = Brent CDP, OK +station = ('kjsv', 0.0012623085120027203) +zone = ('okz072', 0.0023153705326272489) + +[fips40087] +centroid = (0.61115171654143763, -1.7008200573961878) +description = McClain County, OK +station = ('koun', 0.0034950694108171875) +zone = ('okz028', 0.00016127360320982649) + +[fips4008725] +centroid = (0.61498702521281767, -1.7055269660427215) +description = Bridge Creek town, OK +station = ('kokc', 0.0030813198218776604) +zone = ('okz027', 0.004489115697402745) + +[fips4008750] +centroid = (0.62042248664901112, -1.7170108310951162) +description = Bridgeport city, OK +station = ('koja', 0.004130744831398951) +zone = ('okz017', 0.0057727343488071887) + +[fips4008775] +centroid = (0.6268954939656376, -1.6563993858977075) +description = Briggs CDP, OK +station = ('ktqh', 0.0014215269824475363) +zone = ('okz068', 0.0013588467162979853) + +[fips4008790929] +centroid = (0.60898787478810767, -1.6947007585057705) +description = East McClain CCD, OK +station = ('kpvj', 0.0036304462020915803) +zone = ('okz040', 0.0044526305327299868) + +[fips4008791946] +centroid = (0.61383716739501881, -1.7037390856635632) +description = Newcastle-Blanchard CCD, OK +station = ('koun', 0.002516554695923334) +zone = ('okz028', 0.0037535908702617353) + +[fips4008792626] +centroid = (0.6107695767017135, -1.7013435863586159) +description = Purcell CCD, OK +station = ('koun', 0.0039004968646438607) +zone = ('okz028', 0.00057376612097899068) + +[fips40089] +centroid = (0.59545525499325935, -1.6539802199281031) +description = McCurtain County, OK +station = ('k4o4', 0.0038704615624886207) +zone = ('okz077', 8.1524999194314854e-05) + +[fips4008900] +centroid = (0.62541416321629995, -1.6823995732179595) +description = Bristow city, OK +station = ('kcuh', 0.005721157375521424) +zone = ('okz064', 0.0012511005751571209) + +[fips4008990364] +centroid = (0.59451117149427057, -1.6526605939339627) +description = Broken Bow CCD, OK +station = ('k4o4', 0.0036285756871177605) +zone = ('okz077', 0.0014794794627844545) + +[fips4008991469] +centroid = (0.59097092818623276, -1.6554108663159628) +description = Idabel CCD, OK +station = ('k4o4', 0.00087068837523871033) +zone = ('okz077', 0.0045867824784004236) + +[fips4008992203] +centroid = (0.59968965065140045, -1.6538512226430881) +description = North McCurtain CCD, OK +station = ('kdeq', 0.0074847483104966738) +zone = ('okz077', 0.0042726425214634177) + +[fips4008992956] +centroid = (0.58999071637172773, -1.651242775716105) +description = Southeast McCurtain CCD, OK +station = ('k4o4', 0.0040610329766303018) +zone = ('arz059', 0.0057328768564441114) + +[fips4008993419] +centroid = (0.59349565166899765, -1.6593114677546599) +description = Valliant CCD, OK +station = ('k4o4', 0.003498353436232165) +zone = ('okz077', 0.0047503288219726356) + +[fips4008993900] +centroid = (0.59622368855632746, -1.6581433712461775) +description = Wright City CCD, OK +station = ('k4o4', 0.0048744165172029718) +zone = ('okz077', 0.0034661764181688746) + +[fips4009050] +centroid = (0.62895608204041964, -1.6716937410395187) +description = Broken Arrow city, OK +station = ('krvs', 0.0028650995990290484) +zone = ('okz060', 0.0027027068865920034) + +[fips40091] +centroid = (0.61730710884078632, -1.6697872829909801) +description = McIntosh County, OK +station = ('kokm', 0.0065340154107057955) +zone = ('okz071', 0.0001070468607767411) + +[fips4009100] +centroid = (0.59389857838011306, -1.6535638716350398) +description = Broken Bow city, OK +station = ('k4o4', 0.0026754500291189744) +zone = ('okz077', 0.0015788039322320578) + +[fips4009150] +centroid = (0.60069101585643958, -1.6841600693811536) +description = Bromide town, OK +station = ('kaqr', 0.0050103399314369431) +zone = ('okz047', 0.0029587192531633929) + +[fips4009190520] +centroid = (0.61832034228473909, -1.6663928968485315) +description = Checotah CCD, OK +station = ('kmko', 0.004194802068961047) +zone = ('okz071', 0.0028530243515013432) + +[fips4009191079] +centroid = (0.61607298652670095, -1.6698041079649697) +description = Eufaula CCD, OK +station = ('kmlc', 0.0074141762126484125) +zone = ('okz071', 0.0013172538947328935) + +[fips4009191248] +centroid = (0.61566789560731316, -1.6735321137939367) +description = Hanna CCD, OK +station = ('kokm', 0.0069140249568115392) +zone = ('okz071', 0.0035678290300879515) + +[fips4009191352] +centroid = (0.61890474833147691, -1.6703389815675356) +description = Hitchita-Pierce CCD, OK +station = ('kokm', 0.0050228502976407737) +zone = ('okz071', 0.0016039215143705649) + +[fips40093] +centroid = (0.63378348821851072, -1.7198826132996401) +description = Major County, OK +station = ('kjwg', 0.0080104587643900337) +zone = ('okz011', 8.8651227236382355e-05) + +[fips4009390936] +centroid = (0.63435852184716535, -1.7151179691614504) +description = East Major CCD, OK +station = ('kend', 0.0049587075411286442) +zone = ('okz011', 0.0038018549601170695) + +[fips4009391105] +centroid = (0.63333912739095299, -1.7220584454649313) +description = Fairview CCD, OK +station = ('kjwg', 0.0081557082204931335) +zone = ('okz011', 0.0018850747514009222) + +[fips4009400] +centroid = (0.6145356830682519, -1.6922870379634325) +description = Brooksville town, OK +station = ('ksnl', 0.0025772317159013193) +zone = ('okz030', 0.00018985376646788341) + +[fips40095] +centroid = (0.59388330674915812, -1.6889644197598259) +description = Marshall County, OK +station = ('kgyi', 0.0056217000835701728) +zone = ('okz051', 4.8416961554733872e-05) + +[fips4009592210] +centroid = (0.59485426831862764, -1.6891622877371244) +description = North Marshall CCD, OK +station = ('kadm', 0.0051538795192985582) +zone = ('okz051', 0.001031382148830348) + +[fips4009593081] +centroid = (0.59232814857246108, -1.6885031292385237) +description = South Marshall CCD, OK +station = ('kgyi', 0.0040212165401378799) +zone = ('okz051', 0.0015540970435004209) + +[fips4009612] +centroid = (0.63558677985496381, -1.6542973811597754) +description = Brush Creek CDP, OK +station = ('kgmj', 0.003357468388699842) +zone = ('okz063', 0.00029627839625916402) + +[fips4009650] +centroid = (0.62066782758196393, -1.6536561297393002) +description = Brushy CDP, OK +station = ('kjsv', 0.0022955445780029073) +zone = ('okz072', 0.0011627123944815457) + +[fips40097] +centroid = (0.63362091079868743, -1.6621754483374274) +description = Mayes County, OK +station = ('kgcm', 0.0034372351402770672) +zone = ('okz062', 7.526361009917081e-05) + +[fips4009790026] +centroid = (0.63558840301116815, -1.6629999244227771) +description = Adair CCD, OK +station = ('kgcm', 0.003492290240401482) +zone = ('okz062', 0.0021315713040156101) + +[fips4009790949] +centroid = (0.63489733989384112, -1.6594620373092295) +description = East Mayes CCD, OK +station = ('kgmj', 0.0062331009645428884) +zone = ('okz062', 0.0024920597445388533) + +[fips4009791703] +centroid = (0.6315420840332221, -1.6604288275417867) +description = Locust Grove CCD, OK +station = ('ktqh', 0.0048328147071892476) +zone = ('okz062', 0.0024450430371576641) + +[fips4009792613] +centroid = (0.63205096968322605, -1.663605990005532) +description = Pryor Creek CCD, OK +station = ('kgcm', 0.002680450614316749) +zone = ('okz062', 0.0019608795017116835) + +[fips4009850] +centroid = (0.64289592205634327, -1.7388321591340257) +description = Buffalo town, OK +station = ('kwwr', 0.0071146256283458635) +zone = ('okz004', 0.00098225002321588326) + +[fips4009887] +centroid = (0.63363525740513882, -1.6563318765622401) +description = Bull Hollow CDP, OK +station = ('kgmj', 0.0057201734642514874) +zone = ('okz063', 0.0022737938830361495) + +[fips40099] +centroid = (0.6018901617723148, -1.6942182796873493) +description = Murray County, OK +station = ('kadm', 0.003276027367013904) +zone = ('okz041', 8.0170864598753106e-05) + +[fips4009950] +centroid = (0.64046757565487344, -1.688223928918082) +description = Burbank town, OK +station = ('kpnc', 0.005243593217100182) +zone = ('okz054', 0.0047613594365488385) + +[fips4009990962] +centroid = (0.60200371289344956, -1.6922945603325086) +description = East Murray CCD, OK +station = ('kadm', 0.0034068277540652107) +zone = ('okz041', 0.0015428679189213657) + +[fips4009993770] +centroid = (0.60172791596504938, -1.6961013154173259) +description = West Murray CCD, OK +station = ('kadm', 0.0038041031376831753) +zone = ('okz041', 0.0016080793525940649) + +[fips4010050] +centroid = (0.64402888508698286, -1.7178127575265298) +description = Burlington town, OK +station = ('kavk', 0.004096742415376396) +zone = ('okz006', 0.0032625245900205812) + +[fips40101] +centroid = (0.62164353644699888, -1.664763300379237) +description = Muskogee County, OK +station = ('kmko', 0.00061691173272191498) +zone = ('okz070', 6.8831536319289386e-05) + +[fips4010190312] +centroid = (0.62197453813963954, -1.6697911750752121) +description = Boynton CCD, OK +station = ('kokm', 0.003961515328559824) +zone = ('okz070', 0.0041660849910455742) + +[fips4010191261] +centroid = (0.62458684224426952, -1.6701685501660783) +description = Haskell CCD, OK +station = ('kokm', 0.0041599614141692755) +zone = ('okz067', 0.0039042771306276821) + +[fips4010191924] +centroid = (0.62314813243526557, -1.6634303051630264) +description = Muskogee CCD, OK +station = ('kmko', 0.0012582222948350134) +zone = ('okz070', 0.0018382538969883456) + +[fips4010191937] +centroid = (0.62192942137847551, -1.6668139749838677) +description = Muskogee Southwest CCD, OK +station = ('kmko', 0.0019315899042732564) +zone = ('okz070', 0.0017586354560132805) + +[fips4010192574] +centroid = (0.61732171724662543, -1.6621138556681245) +description = Porum CCD, OK +station = ('kgzl', 0.0024499975947895949) +zone = ('okz074', 0.0030204816846555421) + +[fips4010193562] +centroid = (0.61946793117451027, -1.6631999391550556) +description = Warner CCD, OK +station = ('kmko', 0.0029279046573999195) +zone = ('okz070', 0.0024662888280758892) + +[fips4010193627] +centroid = (0.61977462043067078, -1.6611912048123503) +description = Webbers Falls CCD, OK +station = ('kmko', 0.0036066961647135383) +zone = ('okz070', 0.0033873907279175349) + +[fips4010250] +centroid = (0.61705775365055382, -1.7309308441707369) +description = Burns Flat town, OK +station = ('kcsm', 0.00036518084499743384) +zone = ('okz022', 0.0028345700548725351) + +[fips40103] +centroid = (0.63503632046217728, -1.6970941983222003) +description = Noble County, OK +station = ('kswo', 0.0043751950187244414) +zone = ('okz013', 0.00010325201799490919) + +[fips4010390234] +centroid = (0.63728624185421578, -1.6993124419883152) +description = Billings CCD, OK +station = ('kbkn', 0.0041265482102313166) +zone = ('okz013', 0.0028728431324172255) + +[fips4010390975] +centroid = (0.63613538919874324, -1.6946573172606885) +description = East Noble CCD, OK +station = ('kswo', 0.0049115821637600657) +zone = ('okz013', 0.0021462059094479648) + +[fips4010392522] +centroid = (0.63344068810012655, -1.698178117600859) +description = Perry CCD, OK +station = ('kswo', 0.0037509775705780565) +zone = ('okz013', 0.0019146368490051335) + +[fips4010400] +centroid = (0.63637538942418492, -1.6668849226179614) +description = Bushyhead CDP, OK +station = ('kgcm', 0.0029401817152029147) +zone = ('okz061', 0.0020974558249621752) + +[fips4010450] +centroid = (0.62194973701096867, -1.7310906116104645) +description = Butler town, OK +station = ('kclk', 0.0040965552890289015) +zone = ('okz016', 0.0025922005489996684) + +[fips4010460] +centroid = (0.63772042741223434, -1.6535366619520013) +description = Butler CDP, OK +station = ('kgmj', 0.0011625523697936268) +zone = ('okz063', 0.0024381733508953545) + +[fips40105] +centroid = (0.64209991229109364, -1.6687671031366045) +description = Nowata County, OK +station = ('kcfv', 0.0051674871587760185) +zone = ('okz056', 0.00016575178320988446) + +[fips4010550] +centroid = (0.60863067570339446, -1.6939157617681011) +description = Byars town, OK +station = ('kpvj', 0.0037090768660145729) +zone = ('okz040', 0.0046809286564263594) + +[fips4010591664] +centroid = (0.64330308991754104, -1.6681615262460401) +description = Lenapah-Delaware CCD, OK +station = ('kcfv', 0.0039267105374395147) +zone = ('okz056', 0.0011805185701836587) + +[fips4010591942] +centroid = (0.64036442669608062, -1.6667462562088902) +description = New Alluwe CCD, OK +station = ('kgcm', 0.0069113870722341854) +zone = ('okz056', 0.0025277585352579423) + +[fips4010592353] +centroid = (0.64065725803798024, -1.6701478505611498) +description = Nowata CCD, OK +station = ('kbvo', 0.0046533623653586204) +zone = ('okz056', 0.0019106169682729301) + +[fips4010592912] +centroid = (0.64505173529511417, -1.6694566129108974) +description = South Coffeyville-Wann CCD, OK +station = ('kcfv', 0.0024839106629392579) +zone = ('okz056', 0.0028398832484306819) + +[fips4010600] +centroid = (0.60852471676450592, -1.6871715128324221) +description = Byng town, OK +station = ('kadh', 0.0010737936129862776) +zone = ('okz042', 0.002416758094938362) + +[fips4010650] +centroid = (0.64405202815286422, -1.71556386587875) +description = Byron town, OK +station = ('kavk', 0.0057030437912917366) +zone = ('okz006', 0.0030034256181938972) + +[fips40107] +centroid = (0.619012504959495, -1.6812366079774781) +description = Okfuskee County, OK +station = ('kokm', 0.0064274716493509729) +zone = ('okz065', 7.4115622594276905e-05) + +[fips4010700] +centroid = (0.60447904355838311, -1.7212775153444191) +description = Cache city, OK +station = ('kfsi', 0.0032428645231525983) +zone = ('okz038', 0.00221179117608797) + +[fips4010790299] +centroid = (0.61988883477692136, -1.6837597432106237) +description = Boley CCD, OK +station = ('kcqb', 0.0061161075019507067) +zone = ('okz065', 0.002307246947990439) + +[fips4010792405] +centroid = (0.61925103910836499, -1.6807910428727364) +description = Okemah CCD, OK +station = ('kokm', 0.0059932300648368594) +zone = ('okz065', 0.00039208891870281236) + +[fips4010792457] +centroid = (0.62014869684925078, -1.6854613694181479) +description = Paden CCD, OK +station = ('kcqb', 0.0048838297810199008) +zone = ('okz065', 0.003696389721917338) + +[fips4010793640] +centroid = (0.61710684976241248, -1.6776924202253307) +description = Weleetka CCD, OK +station = ('kokm', 0.00596776922830718) +zone = ('okz065', 0.0033891354505581122) + +[fips4010800] +centroid = (0.59568055954639931, -1.6802262019669134) +description = Caddo town, OK +station = ('kdua', 0.003739681380552144) +zone = ('okz052', 0.0029300816618228588) + +[fips40109] +centroid = (0.62054502621579366, -1.7001147698454571) +description = Oklahoma County, OK +station = ('ktik', 0.0024359180128183415) +zone = ('okz025', 6.2649468610046061e-05) + +[fips4010950] +centroid = (0.59221428329206105, -1.6830206486322816) +description = Calera town, OK +station = ('kdua', 0.00054826018897616833) +zone = ('okz052', 0.0025195289761533548) + +[fips4010992420] +centroid = (0.62206332303868861, -1.6979826930845132) +description = Oklahoma City Northeast CCD, OK +station = ('kgok', 0.0040731422137171413) +zone = ('okz025', 0.0023176115536572279) + +[fips4010992422] +centroid = (0.62245640609282271, -1.7024813664979912) +description = Oklahoma City Northwest CCD, OK +station = ('kpwa', 0.0027260729425522983) +zone = ('okz025', 0.0027725765931709929) + +[fips4010992424] +centroid = (0.61908877584780708, -1.6980634145624178) +description = Oklahoma City Southeast CCD, OK +station = ('ktik', 0.0016113557057266773) +zone = ('okz025', 0.0021564479416584592) + +[fips4010992426] +centroid = (0.61949643240119545, -1.7028034321048617) +description = Oklahoma City Southwest CCD, OK +station = ('kpwa', 0.0014037426966415707) +zone = ('okz025', 0.0024320546633425318) + +[fips4011050] +centroid = (0.62136323656912862, -1.712594694301965) +description = Calumet town, OK +station = ('krqo', 0.0028141918571363243) +zone = ('okz024', 0.0022629171460276732) + +[fips40111] +centroid = (0.62215540661002366, -1.6748978862935) +description = Okmulgee County, OK +station = ('kokm', 0.00043345938011349041) +zone = ('okz066', 5.0528341318221822e-06) + +[fips4011100] +centroid = (0.61029837271026011, -1.6799414689527432) +description = Calvin town, OK +station = ('kadh', 0.0066246147659557442) +zone = ('okz032', 0.0014124198773965264) + +[fips4011150] +centroid = (0.628630892294188, -1.7329076040815456) +description = Camargo town, OK +station = ('kwwr', 0.0080102876379977307) +zone = ('okz015', 0.0039925228932645891) + +[fips4011190221] +centroid = (0.62470063771149953, -1.6762875698038153) +description = Beggs CCD, OK +station = ('kokm', 0.0025627430760391959) +zone = ('okz066', 0.0027885573743350041) + +[fips4011191339] +centroid = (0.61927461850655952, -1.6750325384452913) +description = Henryetta CCD, OK +station = ('kokm', 0.0032677306784307651) +zone = ('okz066', 0.0028799018006701502) + +[fips4011191885] +centroid = (0.62291764425424712, -1.672195488292882) +description = Morris CCD, OK +station = ('kokm', 0.0020075189033909205) +zone = ('okz066', 0.0023212712044240382) + +[fips4011192431] +centroid = (0.62213742971872821, -1.6760289294619624) +description = Okmulgee CCD, OK +station = ('kokm', 0.0012092489271994383) +zone = ('okz066', 0.00092321073304306184) + +[fips40113] +centroid = (0.6392212534893168, -1.6826437447803133) +description = Osage County, OK +station = ('kbvo', 0.0060159741866201832) +zone = ('okz054', 0.00016057398671198624) + +[fips4011300] +centroid = (0.61322314311087467, -1.6499626988828149) +description = Cameron town, OK +station = ('krkr', 0.0023260305143436707) +zone = ('arz029', 0.0039010697349492261) + +[fips4011390195] +centroid = (0.63748726887746043, -1.677919121041872) +description = Barnsdall CCD, OK +station = ('kbvo', 0.0045402435390897652) +zone = ('okz054', 0.0040791562154547621) + +[fips4011391092] +centroid = (0.63799058692715049, -1.6875149063627521) +description = Fairfax CCD, OK +station = ('kpnc', 0.0065688722689623323) +zone = ('okz059', 0.0041444313430137082) + +[fips4011391404] +centroid = (0.63565022257327375, -1.6824278126452565) +description = Hominy CCD, OK +station = ('kbvo', 0.0080529316754132437) +zone = ('okz054', 0.0036500733365598874) + +[fips4011391742] +centroid = (0.63961859514682584, -1.691684480492474) +description = McCord-Braden CCD, OK +station = ('kpnc', 0.0028550446998928079) +zone = ('okz008', 0.0042565483366296831) + +[fips4011392301] +centroid = (0.64266881981407376, -1.6863505274055766) +description = Northwest Osage CCD, OK +station = ('kpnc', 0.006876635063816818) +zone = ('okz054', 0.0045852342097443136) + +[fips4011392496] +centroid = (0.64233373405098337, -1.6793722472704975) +description = Pawhuska CCD, OK +station = ('kbvo', 0.0029250071977973279) +zone = ('okz054', 0.0039200462545152378) + +[fips4011392964] +centroid = (0.63338174833128669, -1.6778096016313098) +description = Southeast Osage CCD, OK +station = ('ktul', 0.0038296729180474567) +zone = ('okz060', 0.003981615520703927) + +[fips4011450] +centroid = (0.61390460691731585, -1.6694012685203168) +description = Canadian town, OK +station = ('kmlc', 0.0054232883981033689) +zone = ('okz071', 0.0034914917937288641) + +[fips40115] +centroid = (0.64290536428759648, -1.6546189231678705) +description = Ottawa County, OK +station = ('kgmj', 0.0041213918184669759) +zone = ('okz058', 0.00010931993053702478) + +[fips4011550] +centroid = (0.59752362723650532, -1.6793036209243093) +description = Caney town, OK +station = ('kaqr', 0.0030094396594376881) +zone = ('okz048', 0.003533654869448591) + +[fips4011590039] +centroid = (0.64090661322821263, -1.6556958436762284) +description = Afton-Fairland CCD, OK +station = ('kgmj', 0.0026827538117170074) +zone = ('okz058', 0.0021316689419598454) + +[fips4011591846] +centroid = (0.64321308328801563, -1.6561042681744875) +description = Miami CCD, OK +station = ('kgmj', 0.0048069893438250242) +zone = ('okz058', 0.0011237371193779818) + +[fips4011592535] +centroid = (0.64489184568233893, -1.6542014229575008) +description = Picher-Peoria CCD, OK +station = ('kjln', 0.0052262554460925795) +zone = ('okz058', 0.0020397848521285377) + +[fips4011593913] +centroid = (0.64140455566380661, -1.652484176053171) +description = Wyandotte CCD, OK +station = ('kgmj', 0.0026504334509217589) +zone = ('okz058', 0.0023551381430944522) + +[fips4011600] +centroid = (0.62927772876826971, -1.7206914337815993) +description = Canton town, OK +station = ('kjwg', 0.0040773726792088594) +zone = ('okz017', 0.0038247155537902105) + +[fips4011650] +centroid = (0.61823005640253337, -1.7327196495743986) +description = Canute town, OK +station = ('kcsm', 0.0016717503858772417) +zone = ('okz022', 0.0046644124677609903) + +[fips40117] +centroid = (0.63379369839463495, -1.6876752497611327) +description = Pawnee County, OK +station = ('kcuh', 0.0064426365003402023) +zone = ('okz059', 6.6936817210160013e-05) + +[fips4011750] +centroid = (0.64396849669486378, -1.7205031825684793) +description = Capron town, OK +station = ('kavk', 0.0025144171610030431) +zone = ('okz006', 0.0045732963766279599) + +[fips4011790598] +centroid = (0.63225976342164214, -1.6837917874556902) +description = Cleveland CCD, OK +station = ('kcuh', 0.0063999226257558106) +zone = ('okz059', 0.0035444565726902555) + +[fips4011792509] +centroid = (0.63454333476165903, -1.6893157545382522) +description = Pawnee CCD, OK +station = ('kswo', 0.0052876662398388258) +zone = ('okz059', 0.0014599364065805997) + +[fips40119] +centroid = (0.62970126781785118, -1.6925374927110937) +description = Payne County, OK +station = ('kswo', 0.0021565554803864434) +zone = ('okz020', 3.4178950356287397e-05) + +[fips4011900] +centroid = (0.6453360668835566, -1.6554630167540125) +description = Cardin town, OK +station = ('kjln', 0.0057644371791571569) +zone = ('okz058', 0.0025001818419385759) + +[fips4011975] +centroid = (0.61971191075064669, -1.6586251693861909) +description = Carlisle CDP, OK +station = ('kjsv', 0.0034754548944102245) +zone = ('okz072', 0.0039455896958750366) + +[fips4011990702] +centroid = (0.6282343011282574, -1.6888777118025866) +description = Cushing CCD, OK +station = ('kcuh', 0.00079979856173207557) +zone = ('okz020', 0.0032939610316588073) + +[fips4011993237] +centroid = (0.62991049788858033, -1.6941429163702482) +description = Stillwater CCD, OK +station = ('kswo', 0.0013363156127784179) +zone = ('okz020', 0.001313785191113914) + +[fips4011993926] +centroid = (0.63025223335612068, -1.6881279707158074) +description = Yale CCD, OK +station = ('kcuh', 0.0028990297383064334) +zone = ('okz059', 0.0036121879103813942) + +[fips4012000] +centroid = (0.63842557533662514, -1.7184125050173928) +description = Carmen town, OK +station = ('kavk', 0.0045038652466696362) +zone = ('okz006', 0.0032462892402480813) + +[fips4012050] +centroid = (0.61265219355266975, -1.7208858460069789) +description = Carnegie town, OK +station = ('khbr', 0.0067644586585210841) +zone = ('okz023', 0.0034405346959768307) + +[fips40121] +centroid = (0.60956566603698037, -1.6711201211275584) +description = Pittsburg County, OK +station = ('kmlc', 0.00089249481688460789) +zone = ('okz073', 2.8882998043434198e-05) + +[fips4012100] +centroid = (0.62493096881288523, -1.6932406335068446) +description = Carney town, OK +station = ('kcqb', 0.0031138709425637462) +zone = ('okz026', 0.0026196724642922721) + +[fips4012191255] +centroid = (0.60636464492236009, -1.6688611240234097) +description = Hartshorne-Haileyville CCD, OK +station = ('kmlc', 0.0034115475885872337) +zone = ('okz073', 0.0036764969142824427) + +[fips4012191599] +centroid = (0.60575374477757704, -1.673615505625597) +description = Kiowa-Pittsburg CCD, OK +station = ('kmlc', 0.0034414024419931887) +zone = ('okz073', 0.004300541009894506) + +[fips4012191729] +centroid = (0.60912517984036207, -1.6720234686418054) +description = McAlester CCD, OK +station = ('kmlc', 0.00037930970439428735) +zone = ('okz073', 0.00084419507921615225) + +[fips4012192067] +centroid = (0.61286517608129054, -1.6712732388628355) +description = North Central Pittsburg CCD, OK +station = ('kmlc', 0.0040538056483632109) +zone = ('okz073', 0.0033303518822929566) + +[fips4012192314] +centroid = (0.61053107745942847, -1.6751419705893915) +description = Northwest Pittsburg CCD, OK +station = ('kmlc', 0.0032712009259859127) +zone = ('okz073', 0.0034393385933396436) + +[fips4012192639] +centroid = (0.61254424493843396, -1.6666975091628822) +description = Quinton CCD, OK +station = ('kmlc', 0.0055526307951165865) +zone = ('okz073', 0.0047109029216235165) + +[fips4012200] +centroid = (0.6366715717982484, -1.7107228635857861) +description = Carrier town, OK +station = ('kend', 0.0029020514526108686) +zone = ('okz012', 0.0037224160716012979) + +[fips40123] +centroid = (0.60599700876872009, -1.6876066408682369) +description = Pontotoc County, OK +station = ('kadh', 0.0014869895759949275) +zone = ('okz042', 0.0001713362653740364) + +[fips4012300] +centroid = (0.61466057882952474, -1.7366692773117842) +description = Carter town, OK +station = ('kcsm', 0.0049079416043527431) +zone = ('okz021', 0.002692697228626805) + +[fips4012390013] +centroid = (0.60688730122016243, -1.687194167206113) +description = Ada CCD, OK +station = ('kadh', 0.00056579652706859605) +zone = ('okz042', 0.00079833499518073376) + +[fips4012392158] +centroid = (0.60807302555408982, -1.6847986853544583) +description = Northeast Pontotoc CCD, OK +station = ('kadh', 0.0020934299960195029) +zone = ('okz042', 0.0029320761156006116) + +[fips4012392327] +centroid = (0.60744758681663769, -1.6900987092406969) +description = Northwest Pontotoc CCD, OK +station = ('kadh', 0.0023522113202318171) +zone = ('okz042', 0.0025412805491449686) + +[fips4012392886] +centroid = (0.60432548949079268, -1.6872404707911683) +description = South Central Pontotoc CCD, OK +station = ('kadh', 0.0031266648765401494) +zone = ('okz042', 0.0018033505467744437) + +[fips4012392977] +centroid = (0.60469698282207962, -1.6849144704970356) +description = Southeast Pontotoc CCD, OK +station = ('kadh', 0.0033504308210241971) +zone = ('okz042', 0.0025316092006838929) + +[fips4012393172] +centroid = (0.60392120142286065, -1.689541617596753) +description = Southwest Pontotoc CCD, OK +station = ('kadh', 0.0040083110233188465) +zone = ('okz042', 0.0027859508883056822) + +[fips40125] +centroid = (0.61455474206368377, -1.6922190050291899) +description = Pottawatomie County, OK +station = ('ksnl', 0.0025532607692546026) +zone = ('okz030', 0.00014779325655219324) + +[fips4012550] +centroid = (0.59088802504676308, -1.6852371818757295) +description = Cartwright CDP, OK +station = ('kdua', 0.0028001331940882969) +zone = ('okz051', 0.0042597319790580136) + +[fips4012591794] +centroid = (0.61250947797973421, -1.6905590572842029) +description = Maud CCD, OK +station = ('ksnl', 0.0047330787648844465) +zone = ('okz030', 0.0023198891973875567) + +[fips4012592821] +centroid = (0.61623531960042899, -1.6920135972295225) +description = Shawnee CCD, OK +station = ('ksnl', 0.00086533186430386524) +zone = ('okz030', 0.001761281211445848) + +[fips4012593549] +centroid = (0.61099847663311269, -1.6928469221341798) +description = Wanette-Asher CCD, OK +station = ('kadh', 0.0058107458456695526) +zone = ('okz030', 0.0035341670899619315) + +[fips4012650] +centroid = (0.62490909983735776, -1.7047752003740098) +description = Cashion town, OK +station = ('kgok', 0.0037600263784230334) +zone = ('okz019', 0.0038579833915036899) + +[fips40127] +centroid = (0.60000747510818853, -1.6651852162726142) +description = Pushmataha County, OK +station = ('khhw', 0.0063119092207182034) +zone = ('okz049', 0.00081431749478192512) + +[fips4012750] +centroid = (0.61915785597960105, -1.6822180415224595) +description = Castle town, OK +station = ('kokm', 0.0070384854348789225) +zone = ('okz065', 0.00088592277474605185) + +[fips4012790130] +centroid = (0.59879410475890948, -1.669920573785955) +description = Antlers CCD, OK +station = ('khhw', 0.0051889402555220102) +zone = ('okz053', 0.0052518933311836869) + +[fips4012791118] +centroid = (0.59943563543206513, -1.663819915011949) +description = Finley-Rattan CCD, OK +station = ('khhw', 0.0062402957827447951) +zone = ('okz049', 0.0014058548343238058) + +[fips4012792223] +centroid = (0.60355185484655349, -1.6631434253938762) +description = North Pushmataha CCD, OK +station = ('kmlc', 0.008814596987295642) +zone = ('okz049', 0.0031232748581269468) + +[fips40129] +centroid = (0.62323183842619123, -1.7408188325149858) +description = Roger Mills County, OK +station = ('khhf', 0.0099008650851982061) +zone = ('okz014', 0.00074006548370246224) + +[fips4012900] +centroid = (0.63150045793056198, -1.671528528172525) +description = Catoosa city, OK +station = ('ktul', 0.0016048054366776007) +zone = ('okz060', 0.0026227941098855272) + +[fips4012915] +centroid = (0.63923050373435242, -1.6520257653251349) +description = Cayuga CDP, OK +station = ('kgmj', 0.0012339185552409703) +zone = ('okz058', 0.0042727854013426972) + +[fips4012930] +centroid = (0.63043884395974392, -1.6609631426389921) +description = Cedar Crest CDP, OK +station = ('ktqh', 0.0040633852867185544) +zone = ('okz062', 0.0032764090705992301) + +[fips4012960] +centroid = (0.62611943331373832, -1.7017047298874388) +description = Cedar Valley city, OK +station = ('kgok', 0.00125759753493688) +zone = ('okz019', 0.0011321857774169613) + +[fips4012990559] +centroid = (0.62323183842619123, -1.7408188325149858) +description = Cheyenne CCD, OK +station = ('khhf', 0.0099008650851982061) +zone = ('okz014', 0.00074006548370246224) + +[fips4012990988] +centroid = (0.6238789890595382, -1.7359386650336066) +description = East Roger Mills CCD, OK +station = ('kcsm', 0.0078433615778887647) +zone = ('okz014', 0.0034600811725772397) + +[fips4012993094] +centroid = (0.61935989529381186, -1.7420015723358921) +description = South Roger Mills CCD, OK +station = ('kcsm', 0.0089892924191443766) +zone = ('okz014', 0.0038705240545916439) + +[fips4013000] +centroid = (0.6097518926681682, -1.7128024757494147) +description = Cement town, OK +station = ('kchk', 0.0037027341162212701) +zone = ('okz027', 0.0038732479445846312) + +[fips40131] +centroid = (0.63491730646048383, -1.6685580999586782) +description = Rogers County, OK +station = ('kgcm', 0.0022482122225804509) +zone = ('okz061', 0.00012104384488972723) + +[fips4013100] +centroid = (0.60406559251187808, -1.6815131204908713) +description = Centrahoma city, OK +station = ('kaqr', 0.0046487721363561406) +zone = ('okz043', 0.00076249850538527445) + +[fips4013135] +centroid = (0.60413397451197126, -1.7119698664297509) +description = Central High town, OK +station = ('kduc', 0.0031133286038334722) +zone = ('okz039', 0.0040839850943034791) + +[fips4013190468] +centroid = (0.63307015469992811, -1.6712865382717359) +description = Catoosa CCD, OK +station = ('ktul', 0.0021725061534903249) +zone = ('okz061', 0.0027661991260807305) + +[fips4013190533] +centroid = (0.63768183818247282, -1.6664090411441126) +description = Chelsea CCD, OK +station = ('kgcm', 0.0042243361937221672) +zone = ('okz061', 0.0033792555002931071) + +[fips4013190585] +centroid = (0.63420231487911183, -1.6679477234126709) +description = Claremore CCD, OK +station = ('kgcm', 0.001428061027401071) +zone = ('okz061', 0.00080502487731313511) + +[fips4013191482] +centroid = (0.63122235716754915, -1.6670481283563152) +description = Inola CCD, OK +station = ('kgcm', 0.0022891709629572262) +zone = ('okz067', 0.0035873789356152441) + +[fips4013192444] +centroid = (0.63684755334672705, -1.6704997787515219) +description = Oologah-Talala CCD, OK +station = ('kgcm', 0.0047112364412931363) +zone = ('okz061', 0.0025462609580915118) + +[fips40133] +centroid = (0.61362924632122873, -1.6860379389365443) +description = Seminole County, OK +station = ('ksnl', 0.0059593824989064544) +zone = ('okz031', 0.00024180205009555718) + +[fips4013391612] +centroid = (0.61041843390950479, -1.6878442325393108) +description = Konawa CCD, OK +station = ('kadh', 0.0030082162669504103) +zone = ('okz031', 0.0036109456048519376) + +[fips4013392782] +centroid = (0.61605912861244017, -1.6870673515826631) +description = Seminole North CCD, OK +station = ('ksnl', 0.0041335960230172103) +zone = ('okz031', 0.0023642203100325983) + +[fips4013392795] +centroid = (0.61297347376137679, -1.6875324643750271) +description = Seminole South CCD, OK +station = ('ksnl', 0.0054925060885371579) +zone = ('okz031', 0.0013215981584323532) + +[fips4013393835] +centroid = (0.61379838617903937, -1.6847400248382987) +description = Wewoka CCD, OK +station = ('kadh', 0.0066670684448642921) +zone = ('okz031', 0.0012428392383110815) + +[fips40135] +centroid = (0.61963438322527298, -1.6537126784070648) +description = Sequoyah County, OK +station = ('kjsv', 0.0013451090213555186) +zone = ('okz072', 0.00013774271684983453) + +[fips4013500] +centroid = (0.62317567373086213, -1.6905767200162332) +description = Chandler city, OK +station = ('kcqb', 0.00068545792037384885) +zone = ('okz026', 0.00025819367545494478) + +[fips4013591911] +centroid = (0.61752967322700059, -1.6521995128521707) +description = Muldrow CCD, OK +station = ('kjsv', 0.0022036951694718761) +zone = ('okz072', 0.0023642591856293184) + +[fips4013592678] +centroid = (0.61979924702641653, -1.6499210727801548) +description = Roland CCD, OK +station = ('kfsm', 0.0039169080706884093) +zone = ('okz072', 0.0031588157683481257) + +[fips4013592717] +centroid = (0.61886389017368759, -1.6543138396146218) +description = Sallisaw CCD, OK +station = ('kjsv', 0.00043262308076841169) +zone = ('okz072', 0.00077636773435400884) + +[fips4013592730] +centroid = (0.62043390110231911, -1.6540523718393805) +description = Sallisaw North CCD, OK +station = ('kjsv', 0.0019780186539398539) +zone = ('okz072', 0.00094932752792265083) + +[fips4013593445] +centroid = (0.62010543013709374, -1.6574326382681803) +description = Vian CCD, OK +station = ('kjsv', 0.0027903550333559391) +zone = ('okz072', 0.0030282950883513096) + +[fips4013600] +centroid = (0.60081645266978045, -1.7218386736055202) +description = Chattanooga town, OK +station = ('klaw', 0.0042240082650817842) +zone = ('okz037', 0.0039922109481043107) + +[fips4013650] +centroid = (0.61928533482816672, -1.6671877023365973) +description = Checotah city, OK +station = ('kmko', 0.0036698441498736315) +zone = ('okz071', 0.0027918704010257457) + +[fips40137] +centroid = (0.60181328001876444, -1.7079025336876108) +description = Stephens County, OK +station = ('kduc', 0.0015131866529522222) +zone = ('okz039', 9.5587110488017408e-05) + +[fips4013700] +centroid = (0.63760958155144021, -1.6656633143146129) +description = Chelsea town, OK +station = ('kgcm', 0.0041982736712241541) +zone = ('okz061', 0.0036734192956791424) + +[fips4013750] +centroid = (0.64149079238214757, -1.7166196329965739) +description = Cherokee city, OK +station = ('kavk', 0.0044151039627444493) +zone = ('okz006', 0.00060001679647541024) + +[fips4013775] +centroid = (0.62389351019891481, -1.6518481082605743) +description = Cherry Tree CDP, OK +station = ('kjsv', 0.0058358410097677418) +zone = ('okz069', 0.0024077908333026516) + +[fips4013790650] +centroid = (0.59964715188411433, -1.7087473952186238) +description = Comanche CCD, OK +station = ('kduc', 0.002140017680582456) +zone = ('okz039', 0.0023647211970169333) + +[fips4013790780] +centroid = (0.60232604029970782, -1.7101208646201882) +description = Duncan CCD, OK +station = ('kduc', 0.00076930083559170693) +zone = ('okz039', 0.0019390348516898648) + +[fips4013791781] +centroid = (0.604409422374521, -1.7072540915106174) +description = Marlow CCD, OK +station = ('kduc', 0.0034449751955573258) +zone = ('okz039', 0.0025662299091185172) + +[fips4013793432] +centroid = (0.60101657212181414, -1.7047244985592394) +description = Velma-Alma CCD, OK +station = ('kduc', 0.0041682839594897785) +zone = ('okz039', 0.0027038234226695393) + +[fips4013800] +centroid = (0.63208278703548992, -1.72650310093806) +description = Chester CDP, OK +station = ('kjwg', 0.009349480363151013) +zone = ('okz015', 0.004162365932481136) + +[fips4013850] +centroid = (0.62985513604470689, -1.6535559652935281) +description = Chewey CDP, OK +station = ('kslg', 0.0041335925532064175) +zone = ('okz069', 0.0037511397351569693) + +[fips40139] +centroid = (0.64126824544922589, -1.7713073259929588) +description = Texas County, OK +station = ('kguy', 0.0010360144968498443) +zone = ('okz002', 0.00010589235701821517) + +[fips4013900] +centroid = (0.62157326949131364, -1.7396047640340058) +description = Cheyenne town, OK +station = ('kcsm', 0.0081336107586963118) +zone = ('okz014', 0.0013476197198059215) + +[fips4013950] +centroid = (0.61157284703665138, -1.709500661870492) +description = Chickasha city, OK +station = ('kchk', 0.0010068707462198836) +zone = ('okz027', 0.00099066610538254738) + +[fips4013991235] +centroid = (0.64022106535132173, -1.769653591620109) +description = Guymon CCD, OK +station = ('kguy', 0.0014883015081181145) +zone = ('okz002', 0.0017720783716528553) + +[fips4013991417] +centroid = (0.64300781511468863, -1.7652783129847471) +description = Hooker CCD, OK +station = ('klbl', 0.0043903231430724018) +zone = ('okz002', 0.0051183262383151023) + +[fips4013993783] +centroid = (0.64137038211705255, -1.7775092836767505) +description = West Texas CCD, OK +station = ('keha', 0.004435949878674135) +zone = ('okz002', 0.0049475780028260591) + +[fips40141] +centroid = (0.59988860073283523, -1.7266839170485666) +description = Tillman County, OK +station = ('kfdr', 0.00082995211266291796) +zone = ('okz037', 0.00011212679334885066) + +[fips4014190741] +centroid = (0.59802155221880682, -1.7280434412694077) +description = Davidson CCD, OK +station = ('kfdr', 0.0015461231108367323) +zone = ('okz037', 0.0022613819467206448) + +[fips4014191001] +centroid = (0.59901656442536877, -1.7232936149765676) +description = East Tillman CCD, OK +station = ('kfdr', 0.0035793283277705274) +zone = ('okz037', 0.0028382002253656145) + +[fips4014191157] +centroid = (0.60113495780497683, -1.727609761856872) +description = Frederick CCD, OK +station = ('kfdr', 0.0016144882976272257) +zone = ('okz037', 0.0014966108505507438) + +[fips4014193341] +centroid = (0.60264737286829251, -1.7298796323622607) +description = Tipton CCD, OK +station = ('klts', 0.0030348018069398328) +zone = ('okz037', 0.0038693110746257503) + +[fips4014200] +centroid = (0.61933125444078674, -1.697680436964653) +description = Choctaw city, OK +station = ('ktik', 0.0020062589830492669) +zone = ('okz025', 0.0022687681680266898) + +[fips40143] +centroid = (0.63041503766874674, -1.674499096012712) +description = Tulsa County, OK +station = ('krvs', 0.0013572449074424307) +zone = ('okz060', 1.7394372536837902e-05) + +[fips4014300] +centroid = (0.63161636524618692, -1.6639115971575562) +description = Chouteau town, OK +station = ('kgcm', 0.002744764759454081) +zone = ('okz062', 0.0024557982372739998) + +[fips4014350] +centroid = (0.62761582625452073, -1.6522467763683146) +description = Christie CDP, OK +station = ('ktqh', 0.0048016535048915681) +zone = ('okz069', 0.0013285246048275279) + +[fips4014392236] +centroid = (0.63525188607809113, -1.6738554709444537) +description = North Tulsa CCD, OK +station = ('ktul', 0.0034559801974390495) +zone = ('okz061', 0.0042453097161888279) + +[fips4014393107] +centroid = (0.62671921571118616, -1.6740059532325609) +description = South Tulsa CCD, OK +station = ('krvs', 0.0026616073055313132) +zone = ('okz060', 0.0037339269007203267) + +[fips4014393380] +centroid = (0.63056520579758835, -1.6746893718077642) +description = Tulsa CCD, OK +station = ('krvs', 0.0014406218422927588) +zone = ('okz060', 0.0002057754675456357) + +[fips40145] +centroid = (0.62768111902183776, -1.667035527079116) +description = Wagoner County, OK +station = ('kgcm', 0.0057967297276945639) +zone = ('okz067', 0.00010993724396421701) + +[fips4014500] +centroid = (0.62637734061730554, -1.7034973924687471) +description = Cimarron City town, OK +station = ('kgok', 0.002723788314614881) +zone = ('okz019', 0.0023230045775452981) + +[fips4014590676] +centroid = (0.62844080848535333, -1.6696665062067424) +description = Coweta CCD, OK +station = ('krvs', 0.0045576420473498235) +zone = ('okz067', 0.0021824377622068352) + +[fips4014593120] +centroid = (0.6256153822257623, -1.6669379108140518) +description = South Wagoner CCD, OK +station = ('kmko', 0.0039540162625299295) +zone = ('okz067', 0.0020286767063611814) + +[fips4014593497] +centroid = (0.62784158459326611, -1.6645696910053132) +description = Wagoner CCD, OK +station = ('ktqh', 0.0052604803907547347) +zone = ('okz067', 0.0021060847603393638) + +[fips40147] +centroid = (0.64061228090315625, -1.6738781776780223) +description = Washington County, OK +station = ('kbvo', 0.0018897422174906221) +zone = ('okz055', 0.00019043443492342262) + +[fips4014700] +centroid = (0.63378518118788518, -1.6687202061396034) +description = Claremore city, OK +station = ('kgcm', 0.0018701231158536474) +zone = ('okz061', 0.0010227440877593307) + +[fips4014790208] +centroid = (0.64166689610367389, -1.6739042354437546) +description = Bartlesville CCD, OK +station = ('kbvo', 0.0015246068833741615) +zone = ('okz055', 0.00086696156695621382) + +[fips4014790663] +centroid = (0.6445199334720314, -1.6738886496535343) +description = Copan CCD, OK +station = ('kbvo', 0.0032112339439584669) +zone = ('okz055', 0.0037189534964338421) + +[fips4014792366] +centroid = (0.63787497631749845, -1.6739722683779974) +description = Ochelata-Ramona CCD, OK +station = ('kbvo', 0.004097856976357549) +zone = ('okz055', 0.0029278604341814968) + +[fips40149] +centroid = (0.61592978226157491, -1.7277356699091109) +description = Washita County, OK +station = ('kcsm', 0.0031412193052192303) +zone = ('okz022', 6.1914279931811557e-06) + +[fips4014900] +centroid = (0.60364182656949383, -1.6642717283954127) +description = Clayton town, OK +station = ('kmlc', 0.0080324030531431796) +zone = ('okz049', 0.0029798142605471632) + +[fips4014990494] +centroid = (0.61557003499615381, -1.726997517808565) +description = Central Washita CCD, OK +station = ('kcsm', 0.0038317829107604902) +zone = ('okz022', 0.00070793107369357552) + +[fips4014992171] +centroid = (0.61784220933615519, -1.7242325672075554) +description = Northeast Washita CCD, OK +station = ('kclk', 0.0030411827296833649) +zone = ('okz022', 0.003440184621378089) + +[fips4014992340] +centroid = (0.61777794631309668, -1.7311407200132891) +description = Northwest Washita CCD, OK +station = ('kcsm', 0.00082488438839701953) +zone = ('okz022', 0.003330037726378235) + +[fips4014992990] +centroid = (0.61426449380907711, -1.7235266338850013) +description = Southeast Washita CCD, OK +station = ('khbr', 0.0056458076542716352) +zone = ('okz022', 0.0038257432549336778) + +[fips4014993185] +centroid = (0.61430540432674385, -1.7312406924728436) +description = Southwest Washita CCD, OK +station = ('kcsm', 0.002670465870517758) +zone = ('okz022', 0.0032890711840110319) + +[fips4015050] +centroid = (0.61779581848463716, -1.6788458385148037) +description = Clearview town, OK +station = ('kokm', 0.0058477327876146502) +zone = ('okz065', 0.002224931284402782) + +[fips40151] +centroid = (0.64167276040996057, -1.7255890021956204) +description = Woods County, OK +station = ('kavk', 0.0027851917914633391) +zone = ('okz005', 6.2175023219278314e-05) + +[fips4015190091] +centroid = (0.64347568552727064, -1.7236570972465881) +description = Alva CCD, OK +station = ('kavk', 0.0020718907702088171) +zone = ('okz005', 0.0023169986909440977) + +[fips4015193198] +centroid = (0.63856668520664883, -1.7235392002556156) +description = South Woods CCD, OK +station = ('kavk', 0.0034390359405067246) +zone = ('okz005', 0.0035166680824447061) + +[fips4015193809] +centroid = (0.64392069212665171, -1.7309440912197596) +description = West Woods CCD, OK +station = ('kavk', 0.0073737986259214553) +zone = ('ksz089', 0.0053598663351266543) + +[fips4015250] +centroid = (0.63870371100622292, -1.6570659794989215) +description = Cleora CDP, OK +station = ('kgmj', 0.0028678544244418649) +zone = ('okz063', 0.0038079735168624188) + +[fips40153] +centroid = (0.63574698362700433, -1.7326522449586865) +description = Woodward County, OK +station = ('kwwr', 0.0034801419254592261) +zone = ('okz010', 0.00013187087443094364) + +[fips4015300] +centroid = (0.63537945219311942, -1.7181038784457625) +description = Cleo Springs town, OK +station = ('kavk', 0.0071932712541844818) +zone = ('okz011', 0.0021093396813811689) + +[fips4015350] +centroid = (0.63374023895964626, -1.6837248191722911) +description = Cleveland city, OK +station = ('kcuh', 0.0076064426472342399) +zone = ('okz059', 0.0032220545497425816) + +[fips4015391872] +centroid = (0.63701740878953106, -1.7304542122053099) +description = Mooreland CCD, OK +station = ('kwwr', 0.0053504486749372067) +zone = ('okz010', 0.0021109447862818912) + +[fips4015393887] +centroid = (0.63442247071095847, -1.734527252174104) +description = Woodward CCD, OK +station = ('kwwr', 0.0024843697279077846) +zone = ('okz010', 0.0020694424678794621) + +[fips4015400] +centroid = (0.61969044320084721, -1.7274265895518754) +description = Clinton city, OK +station = ('kclk', 0.00094013683606436287) +zone = ('okz016', 0.0023576501528081166) + +[fips4015625] +centroid = (0.63305263159423819, -1.6543968998337242) +description = Cloud Creek CDP, OK +station = ('kslg', 0.0044921214552233303) +zone = ('okz063', 0.0023970342354162205) + +[fips4015800] +centroid = (0.60271434115169165, -1.6793649168876394) +description = Coalgate city, OK +station = ('kaqr', 0.0025711175971917357) +zone = ('okz043', 0.0014715688118257342) + +[fips4016050] +centroid = (0.59092539254604826, -1.6843196797412483) +description = Colbert town, OK +station = ('kdua', 0.0021731408748783612) +zone = ('okz052', 0.003984556776131601) + +[fips4016100] +centroid = (0.63293880122042301, -1.6526875767241986) +description = Colcord town, OK +station = ('kslg', 0.0031476696678877712) +zone = ('okz063', 0.0029482490481072873) + +[fips4016200] +centroid = (0.61258522526927073, -1.7027910053605875) +description = Cole town, OK +station = ('koun', 0.0026149416538845099) +zone = ('okz028', 0.002314414177638243) + +[fips4016350] +centroid = (0.63482714275132579, -1.673024170621729) +description = Collinsville city, OK +station = ('ktul', 0.0030402248994005183) +zone = ('okz061', 0.0035530240806405135) + +[fips4016400] +centroid = (0.61694940361059003, -1.7221387306105229) +description = Colony town, OK +station = ('koja', 0.0034232874414587638) +zone = ('okz022', 0.0046830623498374845) + +[fips4016450] +centroid = (0.59973860713691873, -1.7100717510550369) +description = Comanche city, OK +station = ('kduc', 0.0019125017868284085) +zone = ('okz039', 0.002835289685818942) + +[fips4016500] +centroid = (0.6445790477737966, -1.6558030417988858) +description = Commerce city, OK +station = ('kgmj', 0.0059875519259236943) +zone = ('okz058', 0.0018758614117604534) + +[fips4017050] +centroid = (0.60853016219177214, -1.7257098138864435) +description = Cooperton town, OK +station = ('khbr', 0.0032227997722748883) +zone = ('okz035', 0.0017378057269418596) + +[fips4017100] +centroid = (0.64403904290322944, -1.6742138568530582) +description = Copan town, OK +station = ('kbvo', 0.0026645538310709695) +zone = ('okz055', 0.0032511728538187823) + +[fips4017110] +centroid = (0.63990268238917292, -1.655045987782541) +description = Copeland CDP, OK +station = ('kgmj', 0.0016056810821543177) +zone = ('okz058', 0.0030071024290903863) + +[fips4017300] +centroid = (0.61748218281805378, -1.7240631306437719) +description = Corn town, OK +station = ('koja', 0.003308094805718535) +zone = ('okz022', 0.0033768034791865722) + +[fips4017350] +centroid = (0.59626929400968198, -1.7033839809739524) +description = Cornish town, OK +station = ('kduc', 0.007493767778820307) +zone = ('okz045', 0.0035738368361585057) + +[fips4017550] +centroid = (0.6205676107763145, -1.6694518132554543) +description = Council Hill town, OK +station = ('kokm', 0.0046345896770290653) +zone = ('okz071', 0.0031865285726202738) + +[fips4017700] +centroid = (0.63368746020306599, -1.7032347029630295) +description = Covington town, OK +station = ('kwdg', 0.003114459616336566) +zone = ('okz012', 0.0030065842505912471) + +[fips4017800] +centroid = (0.62774442211380765, -1.6695090600549198) +description = Coweta city, OK +station = ('krvs', 0.0048449989671432913) +zone = ('okz067', 0.0019048273727865577) + +[fips4017850] +centroid = (0.61626938842742796, -1.6542917437462916) +description = Cowlington town, OK +station = ('kjsv', 0.0022573456680825767) +zone = ('okz072', 0.0032666854762509767) + +[fips4017950] +centroid = (0.62751655192666733, -1.6971378315535002) +description = Coyle town, OK +station = ('kgok', 0.0031013880440482785) +zone = ('okz019', 0.0029519727344094792) + +[fips4018250] +centroid = (0.62748506618696132, -1.7033368570841487) +description = Crescent city, OK +station = ('kgok', 0.003077487932349173) +zone = ('okz019', 0.0022056029904601389) + +[fips4018450] +centroid = (0.61754131457311134, -1.6835431827570362) +description = Cromwell town, OK +station = ('kcqb', 0.0078538302295930434) +zone = ('okz065', 0.002429216772135197) + +[fips4018550] +centroid = (0.61297848285633005, -1.6698828921274047) +description = Crowder town, OK +station = ('kmlc', 0.0044179765190403321) +zone = ('okz073', 0.0035885815439067577) + +[fips4018850] +centroid = (0.62795956885070092, -1.6887784549280258) +description = Cushing city, OK +station = ('kcuh', 0.00054963772330653929) +zone = ('okz020', 0.0034925090443878584) + +[fips4018950] +centroid = (0.62245017526739299, -1.7259023935161086) +description = Custer City town, OK +station = ('kclk', 0.0022479514218952815) +zone = ('okz016', 0.0016819176566044353) + +[fips4019000] +centroid = (0.60909646917416671, -1.7139663834676924) +description = Cyril town, OK +station = ('kchk', 0.0048323176304871998) +zone = ('okz023', 0.0054043628159014872) + +[fips4019050] +centroid = (0.63983039085155535, -1.720257527476261) +description = Dacoma town, OK +station = ('kavk', 0.002478442425048558) +zone = ('okz006', 0.0035759079512028033) + +[fips4019150] +centroid = (0.61757067101112995, -1.6937288020986276) +description = Dale CDP, OK +station = ('ksnl', 0.0015089358199855327) +zone = ('okz030', 0.0033801387819296829) + +[fips4019350] +centroid = (0.62324625484581275, -1.6888540276846371) +description = Davenport town, OK +station = ('kcqb', 0.00083391823313556099) +zone = ('okz026', 0.0016575536737249688) + +[fips4019400] +centroid = (0.59763750997019793, -1.7292394455926292) +description = Davidson town, OK +station = ('kfdr', 0.0023267998589702661) +zone = ('okz037', 0.0031823478430084914) + +[fips4019450] +centroid = (0.60102978426425169, -1.6961417023362171) +description = Davis city, OK +station = ('kadm', 0.0032999872017561347) +zone = ('okz041', 0.0018233577095934839) + +[fips4019650] +centroid = (0.64239860793927994, -1.7020333404790042) +description = Deer Creek town, OK +station = ('kbkn', 0.0025658101572042786) +zone = ('okz007', 0.0037327128049840603) + +[fips4019665] +centroid = (0.63633774267221932, -1.6536438426213662) +description = Deer Lick CDP, OK +station = ('kgmj', 0.0025474762660304632) +zone = ('okz063', 0.0011901586797256273) + +[fips4019850] +centroid = (0.6419123417563819, -1.6692776468493977) +description = Delaware town, OK +station = ('kcfv', 0.0054183933152122336) +zone = ('okz056', 0.00049003689497224335) + +[fips4019900] +centroid = (0.61868916526227047, -1.700662523977903) +description = Del City city, OK +station = ('ktik', 0.00098585619482132901) +zone = ('okz025', 0.0018636955272503337) + +[fips4020100] +centroid = (0.63787040355485825, -1.6559144287117482) +description = Dennis CDP, OK +station = ('kgmj', 0.0021867599669537761) +zone = ('okz063', 0.0026414090740146221) + +[fips4020300] +centroid = (0.6248527082492259, -1.6843608346050105) +description = Depew town, OK +station = ('kcuh', 0.0045663886223602798) +zone = ('okz064', 0.0026112620070619587) + +[fips4020450] +centroid = (0.5968225982891493, -1.720687367164442) +description = Devol town, OK +station = ('ksps', 0.0039145712324823966) +zone = ('okz044', 0.0035285987624375003) + +[fips4020500] +centroid = (0.61885738009557767, -1.6746161028857656) +description = Dewar town, OK +station = ('kokm', 0.0036676279854377485) +zone = ('okz066', 0.0033025947524301861) + +[fips4020550] +centroid = (0.64212979232788781, -1.6743419116602773) +description = Dewey city, OK +station = ('kbvo', 0.0012498834613090361) +zone = ('okz055', 0.0013864509851677881) + +[fips4020650] +centroid = (0.61127708354160848, -1.7039693469517789) +description = Dibble town, OK +station = ('koun', 0.0042398720826251788) +zone = ('okz028', 0.0026806566858908693) + +[fips4020700] +centroid = (0.59673198079438572, -1.6929475578188498) +description = Dickson town, OK +station = ('kadm', 0.0019917863818578957) +zone = ('okz051', 0.0044022603054153326) + +[fips4020850] +centroid = (0.61578776482034014, -1.7302078066215134) +description = Dill City town, OK +station = ('kcsm', 0.0015168988019665863) +zone = ('okz022', 0.0020184124036266684) + +[fips4020900] +centroid = (0.63663643832040584, -1.6583982940367239) +description = Disney town, OK +station = ('kgmj', 0.004530855820370534) +zone = ('okz063', 0.0032659407920970925) + +[fips4021020] +centroid = (0.6384226955433594, -1.6517531448959732) +description = Dodge CDP, OK +station = ('kgmj', 0.0014765622332280209) +zone = ('okz063', 0.0037666717123152277) + +[fips4021150] +centroid = (0.64317826396943834, -1.656487856637491) +description = Dotyville CDP, OK +station = ('kgmj', 0.0049177727691000969) +zone = ('okz058', 0.0014139522542273809) + +[fips4021200] +centroid = (0.60038991165388556, -1.6938678699334262) +description = Dougherty town, OK +station = ('kadm', 0.0017506050681955169) +zone = ('okz041', 0.0014590271917129271) + +[fips4021250] +centroid = (0.63286356007636957, -1.704619290111929) +description = Douglas town, OK +station = ('kwdg', 0.0027051920494269204) +zone = ('okz012', 0.0026293203222266027) + +[fips4021350] +centroid = (0.62799325370526449, -1.7088665488466575) +description = Dover town, OK +station = ('kend', 0.0061435896989047662) +zone = ('okz018', 0.0007674424847026552) + +[fips4021672] +centroid = (0.63130402112325001, -1.6525669570195933) +description = Dripping Springs CDP, OK +station = ('kslg', 0.0028869402541427448) +zone = ('okz063', 0.0044572752906215712) + +[fips4021676] +centroid = (0.63665771388398762, -1.6562170513507515) +description = Drowning Creek CDP, OK +station = ('kgmj', 0.0031165746819375385) +zone = ('okz063', 0.0017685377004598164) + +[fips4021700] +centroid = (0.63357516571899275, -1.7110477042661674) +description = Drummond town, OK +station = ('kend', 0.0017670025770576349) +zone = ('okz012', 0.0038075303584294384) + +[fips4021750] +centroid = (0.62813729572843147, -1.6859741995122615) +description = Drumright city, OK +station = ('kcuh', 0.0025487278659553979) +zone = ('okz064', 0.0035647591435851254) + +[fips4021755] +centroid = (0.6236744015646194, -1.6557184805966267) +description = Dry Creek CDP, OK +station = ('ktqh', 0.0039288494646004379) +zone = ('okz068', 0.0035610998993051667) + +[fips4021760] +centroid = (0.61781981676185216, -1.6653334819925709) +description = Duchess Landing CDP, OK +station = ('kmko', 0.004446945661919801) +zone = ('okz070', 0.0038349502758542996) + +[fips4021900] +centroid = (0.60224592968704127, -1.7105166354813703) +description = Duncan city, OK +station = ('kduc', 0.00089788213788955114) +zone = ('okz039', 0.0022438223921236308) + +[fips4022050] +centroid = (0.59333462759220867, -1.6823957509468976) +description = Durant city, OK +station = ('kdua', 0.00093110247873225442) +zone = ('okz052', 0.0020268889949197045) + +[fips4022200] +centroid = (0.61559923435453967, -1.6760717772950988) +description = Dustin town, OK +station = ('kokm', 0.007026085621816976) +zone = ('okz032', 0.0049834067784290436) + +[fips4022275] +centroid = (0.62045730596758841, -1.6555883488475982) +description = Dwight Mission CDP, OK +station = ('kjsv', 0.002099971895350087) +zone = ('okz072', 0.0017469712226466157) + +[fips4022350] +centroid = (0.59414264522271198, -1.6505620449479497) +description = Eagletown CDP, OK +station = ('kdeq', 0.0024660188737014098) +zone = ('okz077', 0.0031738536474366316) + +[fips4022400] +centroid = (0.61619547373360595, -1.7201277796996677) +description = Eakly town, OK +station = ('koja', 0.0044717559938945153) +zone = ('okz023', 0.0034469992766935032) + +[fips4022500] +centroid = (0.61661506833907798, -1.6895570463073406) +description = Earlsboro town, OK +station = ('ksnl', 0.0020276125120888633) +zone = ('okz030', 0.002963333531349747) + +[fips4022550] +centroid = (0.60497993560041285, -1.737817826132644) +description = East Duke town, OK +station = ('kaxs', 0.003381888534438686) +zone = ('okz036', 0.0025797552909681697) + +[fips4023200] +centroid = (0.62262538887100072, -1.7001789106954679) +description = Edmond city, OK +station = ('kgok', 0.0030755684095767682) +zone = ('okz025', 0.0021362874384052298) + +[fips4023300] +centroid = (0.62727358464149707, -1.6547325441021752) +description = Eldon CDP, OK +station = ('ktqh', 0.002766232987247996) +zone = ('okz069', 0.0023427599587511417) + +[fips4023350] +centroid = (0.60166648037537918, -1.7392178245388386) +description = Eldorado town, OK +station = ('kaxs', 0.0059651032073480695) +zone = ('txz083', 0.003474025377696607) + +[fips4023450] +centroid = (0.60711124441648578, -1.7156677129692437) +description = Elgin city, OK +station = ('kfsi', 0.0035289712611663833) +zone = ('okz038', 0.0032595150205010463) + +[fips4023500] +centroid = (0.61815645586797674, -1.7348401722556939) +description = Elk City city, OK +station = ('kcsm', 0.0030689467981795931) +zone = ('okz021', 0.0047956479238187152) + +[fips4023550] +centroid = (0.60180451846591954, -1.7340190122959234) +description = Elmer town, OK +station = ('klts', 0.0031965367394787849) +zone = ('okz036', 0.0020761000373787108) + +[fips4023575] +centroid = (0.62461244622439638, -1.6504861754853657) +description = Elm Grove CDP, OK +station = ('kfyv', 0.0067525510475580234) +zone = ('okz069', 0.0021321368752413132) + +[fips4023600] +centroid = (0.60432573383688792, -1.6998609117057544) +description = Elmore City town, OK +station = ('kpvj', 0.0028817501911109896) +zone = ('okz040', 0.0018489159250316839) + +[fips4023700] +centroid = (0.62032200804397375, -1.7097466660285605) +description = El Reno city, OK +station = ('krqo', 0.0013639062963510364) +zone = ('okz024', 0.00030175159929292437) + +[fips4023900] +centroid = (0.60174784762510725, -1.7114601081151211) +description = Empire City town, OK +station = ('kduc', 0.0014356562840032599) +zone = ('okz039', 0.0029963073684884166) + +[fips4023950] +centroid = (0.63539910460049687, -1.7081513303724825) +description = Enid city, OK +station = ('kwdg', 0.0011993229847811603) +zone = ('okz012', 0.0013088528384328632) + +[fips4024200] +centroid = (0.6146237523823076, -1.7430350515991679) +description = Erick city, OK +station = ('kcsm', 0.0098107065318178369) +zone = ('okz021', 0.0028175278468031044) + +[fips4024300] +centroid = (0.60756192333593573, -1.703533573144141) +description = Erin Springs town, OK +station = ('kpvj', 0.0057460012800624417) +zone = ('okz028', 0.0041585204866335023) + +[fips4024460] +centroid = (0.6130631836849294, -1.695943415479898) +description = Etowah town, OK +station = ('koun', 0.0042918657120604451) +zone = ('okz029', 0.0026146353507933416) + +[fips4024650] +centroid = (0.61596360674247863, -1.6682978364606209) +description = Eufaula city, OK +station = ('kmko', 0.0069837768632453855) +zone = ('okz071', 0.0018268173692866565) + +[fips4024762] +centroid = (0.62170326161400202, -1.6564112541366207) +description = Evening Shade CDP, OK +station = ('kjsv', 0.003509375124305633) +zone = ('okz072', 0.0030619956514326813) + +[fips4024850] +centroid = (0.6382683211710205, -1.6878710058900366) +description = Fairfax town, OK +station = ('kpnc', 0.0061858355841304669) +zone = ('okz059', 0.0044204856867658274) + +[fips4024875] +centroid = (0.62548251030980806, -1.6512245893852993) +description = Fairfield CDP, OK +station = ('kslg', 0.0065676439770360482) +zone = ('okz069', 0.0010797467324147848) + +[fips4024900] +centroid = (0.64143735040045158, -1.6553947394736743) +description = Fairland town, OK +station = ('kgmj', 0.0029722179239231455) +zone = ('okz058', 0.0015503841873696182) + +[fips4024950] +centroid = (0.63451844636652555, -1.7052643987100513) +description = Fairmont town, OK +station = ('kwdg', 0.0012875586844599311) +zone = ('okz012', 0.0011766569927160046) + +[fips4025000] +centroid = (0.6312854159134238, -1.6702756959288583) +description = Fair Oaks town, OK +station = ('ktul', 0.0026386391491550385) +zone = ('okz061', 0.0037658666163512882) + +[fips4025100] +centroid = (0.63304156620678043, -1.7187481841924288) +description = Fairview city, OK +station = ('kjwg', 0.0071282832799013651) +zone = ('okz011', 0.0010955848770380651) + +[fips4025250] +centroid = (0.62395248487433974, -1.6950345352719218) +description = Fallis town, OK +station = ('kcqb', 0.0042466564742899265) +zone = ('okz026', 0.0034619598709895046) + +[fips4025400] +centroid = (0.61020121023080154, -1.656514542721754) +description = Fanshawe town, OK +station = ('krkr', 0.0042741357968594362) +zone = ('okz076', 0.0031632025355246719) + +[fips4025450] +centroid = (0.63485159481414621, -1.7387327975397096) +description = Fargo town, OK +station = ('kwwr', 0.0017873603519884781) +zone = ('okz009', 0.0033001929681748623) + +[fips4025650] +centroid = (0.60144536461244413, -1.7205344414153825) +description = Faxon town, OK +station = ('klaw', 0.0029870088459555293) +zone = ('okz038', 0.0038473256879942197) + +[fips4025850] +centroid = (0.63815112231174909, -1.7941075393961419) +description = Felt CDP, OK +station = ('kcao', 0.0053615866840771645) +zone = ('okz001', 0.0050457324117909727) + +[fips4026250] +centroid = (0.60489785276569163, -1.6888947636693787) +description = Fitzhugh town, OK +station = ('kadh', 0.0028960730754579093) +zone = ('okz042', 0.0016977528614713041) + +[fips4026350] +centroid = (0.60783548624289341, -1.7146351412771788) +description = Fletcher town, OK +station = ('kfsi', 0.0045601683104544988) +zone = ('okz038', 0.0043745350169848594) + +[fips4026415] +centroid = (0.6313120321845167, -1.6535303613134016) +description = Flint Creek CDP, OK +station = ('kslg', 0.0036539397762638858) +zone = ('okz063', 0.0042231422198849879) + +[fips4026525] +centroid = (0.62171884740422234, -1.6545646957880111) +description = Flute Springs CDP, OK +station = ('kjsv', 0.0032084201759889465) +zone = ('okz072', 0.0022982602006782534) + +[fips4026750] +centroid = (0.64354059432215238, -1.6854490299403364) +description = Foraker town, OK +station = ('kpnc', 0.0078046733878317223) +zone = ('okz054', 0.0048663019461478102) + +[fips4026850] +centroid = (0.619758214335702, -1.7007682909305737) +description = Forest Park town, OK +station = ('ktik', 0.0018552731880328854) +zone = ('okz025', 0.00092393783095073465) + +[fips4026900] +centroid = (0.64414461786968258, -1.7547152138325344) +description = Forgan town, OK +station = ('klbl', 0.0064814184616217097) +zone = ('okz003', 0.0028710710644797876) + +[fips4027100] +centroid = (0.61258168225088916, -1.7180244834180893) +description = Fort Cobb town, OK +station = ('kchk', 0.0067036723046891792) +zone = ('okz023', 0.0015831926168997899) + +[fips4027150] +centroid = (0.61600015393701535, -1.6505814879158169) +description = Fort Coffee town, OK +station = ('kfsm', 0.0029940228252086669) +zone = ('okz072', 0.0043746483944371532) + +[fips4027200] +centroid = (0.62453032848308998, -1.6625922504160962) +description = Fort Gibson town, OK +station = ('kmko', 0.0027730603057111946) +zone = ('okz070', 0.003371575259900097) + +[fips4027350] +centroid = (0.63830539196433278, -1.7378862779459072) +description = Fort Supply town, OK +station = ('kwwr', 0.0024773393024074448) +zone = ('okz004', 0.0039999298095599132) + +[fips4027400] +centroid = (0.5939598917967357, -1.6629084342633875) +description = Fort Towson town, OK +station = ('khhw', 0.0038248339179061878) +zone = ('okz053', 0.0039709176445372465) + +[fips4027450] +centroid = (0.61872000523015325, -1.7308563360649691) +description = Foss town, OK +station = ('kcsm', 0.0017949725296892416) +zone = ('okz022', 0.0037702214458536546) + +[fips4027500] +centroid = (0.60384016578569055, -1.7015514899791138) +description = Foster town, OK +station = ('kpvj', 0.004333548523517832) +zone = ('okz040', 0.0032167851388972477) + +[fips4027600] +centroid = (0.63583873558578163, -1.6671644196443756) +description = Foyil town, OK +station = ('kgcm', 0.0024524574529044604) +zone = ('okz061', 0.0015578890236111291) + +[fips4027650] +centroid = (0.60867029467741485, -1.6858597059133307) +description = Francis town, OK +station = ('kadh', 0.0016601887780023179) +zone = ('okz042', 0.0028696267676799028) + +[fips4027800] +centroid = (0.5995647723434202, -1.7276451571341027) +description = Frederick city, OK +station = ('kfdr', 6.6424198777083009e-05) +zone = ('okz037', 0.00096847769951735748) + +[fips4027850] +centroid = (0.64172447451569714, -1.729849560339249) +description = Freedom town, OK +station = ('kavk', 0.0061951808197119162) +zone = ('okz005', 0.0034671381020624724) + +[fips4027900] +centroid = (0.60559146406372666, -1.7318674402072347) +description = Friendship town, OK +station = ('klts', 0.00099703621141746185) +zone = ('okz036', 0.0032875893053491501) + +[fips4028250] +centroid = (0.6338723429307298, -1.7411006682825978) +description = Gage town, OK +station = ('kgag', 0.00034182683126166176) +zone = ('okz009', 0.0017443110731807075) + +[fips4028350] +centroid = (0.61762814470339811, -1.6527400064149282) +description = Gans town, OK +station = ('kjsv', 0.0017686531143599148) +zone = ('okz072', 0.0020653414827008034) + +[fips4028500] +centroid = (0.63593710234242418, -1.7031087076443279) +description = Garber city, OK +station = ('kwdg', 0.0031172266607807837) +zone = ('okz012', 0.0030078707535604694) + +[fips4028700] +centroid = (0.59263530906751971, -1.6569440857039621) +description = Garvin town, OK +station = ('k4o4', 0.0013743366274142855) +zone = ('okz077', 0.0036652129963330479) + +[fips4028800] +centroid = (0.64318339523743928, -1.7462929879006956) +description = Gate town, OK +station = ('kwwr', 0.010412108403583181) +zone = ('okz004', 0.0055302652919214483) + +[fips4028900] +centroid = (0.62198431198345072, -1.7159549418042443) +description = Geary city, OK +station = ('kjwg', 0.0042367690230182501) +zone = ('okz017', 0.0044717468884617542) + +[fips4028950] +centroid = (0.59893093857226587, -1.6936969149331935) +description = Gene Autry town, OK +station = ('kadm', 0.00039440441472996196) +zone = ('okz041', 0.0029232106306471741) + +[fips4029100] +centroid = (0.60187895675851699, -1.7172150171643068) +description = Geronimo town, OK +station = ('klaw', 0.0014770769614025295) +zone = ('okz038', 0.0033086786498904477) + +[fips4029150] +centroid = (0.60799713863821303, -1.6805592980546566) +description = Gerty town, OK +station = ('kadh', 0.0055066472859534353) +zone = ('okz032', 0.0037540121692791668) + +[fips4029300] +centroid = (0.62847271310407982, -1.6586908635792357) +description = Gideon CDP, OK +station = ('ktqh', 0.0014647134728382174) +zone = ('okz068', 0.0018564994516390842) + +[fips4029400] +centroid = (0.6323550758520935, -1.691752932305737) +description = Glencoe town, OK +station = ('kswo', 0.0024324982352885425) +zone = ('okz020', 0.0027625039331068925) + +[fips4029600] +centroid = (0.62743555119608219, -1.6756333156804126) +description = Glenpool city, OK +station = ('krvs', 0.0017864222272862536) +zone = ('okz060', 0.003134754061066192) + +[fips4029850] +centroid = (0.61308206814743593, -1.7012371561808295) +description = Goldsby town, OK +station = ('koun', 0.0016008600180142921) +zone = ('okz028', 0.0021093034971809144) + +[fips4029900] +centroid = (0.63760191955602397, -1.7130649383623298) +description = Goltry town, OK +station = ('kend', 0.0047827147560663592) +zone = ('okz006', 0.0042332101721721839) + +[fips4030200] +centroid = (0.63869133662182631, -1.7738237591617767) +description = Goodwell town, OK +station = ('kguy', 0.002421372648541874) +zone = ('okz002', 0.0033422971681512747) + +[fips4030300] +centroid = (0.62034056089392242, -1.660030997192087) +description = Gore town, OK +station = ('kmko', 0.0040593050527202952) +zone = ('okz070', 0.0039946244952683034) + +[fips4030350] +centroid = (0.61210613238959821, -1.7256833721482758) +description = Gotebo town, OK +station = ('khbr', 0.0029405465553831388) +zone = ('okz035', 0.0031007860728213756) + +[fips4030400] +centroid = (0.605093399455085, -1.7413793799108488) +description = Gould town, OK +station = ('kaxs', 0.0062730610538663896) +zone = ('okz033', 0.0016702770730082084) + +[fips4030600] +centroid = (0.61414232076143738, -1.714910065540953) +description = Gracemont town, OK +station = ('kchk', 0.004450544325990049) +zone = ('okz023', 0.001699245802130517) + +[fips4030750] +centroid = (0.64468863699752921, -1.686839621021863) +description = Grainola town, OK +station = ('kwld', 0.0066803621810367338) +zone = ('ksz093', 0.0058544814717828098) + +[fips4030850] +centroid = (0.59743786175706237, -1.7224204442050874) +description = Grandfield city, OK +station = ('ksps', 0.005096133670471582) +zone = ('okz037', 0.004219943581029997) + +[fips4030900] +centroid = (0.63714689476673658, -1.658549753709212) +description = Grand Lake Towne town, OK +station = ('kgmj', 0.0044116101812763289) +zone = ('okz063', 0.0035912752905225558) + +[fips4030915] +centroid = (0.62754320310434519, -1.6581442962706814) +description = Grandview CDP, OK +station = ('ktqh', 0.0004658063142168777) +zone = ('okz068', 0.00085769068748318652) + +[fips4030950] +centroid = (0.61010013821381848, -1.7343397165459771) +description = Granite town, OK +station = ('kaxs', 0.0045188716354683843) +zone = ('okz034', 0.0027494251499242043) + +[fips4031000] +centroid = (0.59230341725696045, -1.6671012910853311) +description = Grant CDP, OK +station = ('khhw', 0.0017314632460146667) +zone = ('okz053', 0.0016473054353540598) + +[fips4031150] +centroid = (0.61968508504004338, -1.6732794075715407) +description = Grayson town, OK +station = ('kokm', 0.0030417546525399043) +zone = ('okz066', 0.0027945428307121324) + +[fips4031165] +centroid = (0.62267568926004335, -1.6531956769760392) +description = Greasy CDP, OK +station = ('kjsv', 0.0043232551504122519) +zone = ('okz072', 0.003201904989397669) + +[fips4031250] +centroid = (0.62358723982177489, -1.7170118957459597) +description = Greenfield town, OK +station = ('kjwg', 0.0024482191547207351) +zone = ('okz017', 0.0026732021545347205) + +[fips4031425] +centroid = (0.63128079079090604, -1.6680825151908023) +description = Gregory CDP, OK +station = ('kgcm', 0.0025501474010222245) +zone = ('okz061', 0.0035491069059881415) + +[fips4031600] +centroid = (0.63865377713632332, -1.654486819196787) +description = Grove city, OK +station = ('kgmj', 0.0008241036330059136) +zone = ('okz063', 0.003212576821865213) + +[fips4031700] +centroid = (0.62584810442822325, -1.7002747641779872) +description = Guthrie city, OK +station = ('kgok', 0.0001499986955370831) +zone = ('okz019', 0.0011197024243990775) + +[fips4031750] +centroid = (0.64036306533926401, -1.7711255324980713) +description = Guymon city, OK +station = ('kguy', 0.00032955602358846658) +zone = ('okz002', 0.0010226156220785924) + +[fips4031900] +centroid = (0.60831971039056665, -1.668161822952013) +description = Haileyville city, OK +station = ('kmlc', 0.0029751981537839119) +zone = ('okz073', 0.0027182621953382113) + +[fips4032050] +centroid = (0.63236003258716922, -1.6854268468055436) +description = Hallett town, OK +station = ('kcuh', 0.0057053157142136803) +zone = ('okz059', 0.002374811251540251) + +[fips4032250] +centroid = (0.62190133903081091, -1.7345647767530219) +description = Hammon town, OK +station = ('kcsm', 0.0055731772405185559) +zone = ('okz014', 0.004537284184858421) + +[fips4032350] +centroid = (0.61442872929168968, -1.6735844736714967) +description = Hanna town, OK +station = ('kmlc', 0.0058009174790170882) +zone = ('okz071', 0.0043364145275661186) + +[fips4032550] +centroid = (0.63904769794849847, -1.7661622175311271) +description = Hardesty town, OK +station = ('kguy', 0.0044538459295313318) +zone = ('okz002', 0.0047548650570620066) + +[fips4032750] +centroid = (0.61934034760618961, -1.6961846723424012) +description = Harrah city, OK +station = ('ktik', 0.0030758487160605186) +zone = ('okz025', 0.0033699746597172509) + +[fips4032850] +centroid = (0.6080389218205059, -1.6678151831092742) +description = Hartshorne city, OK +station = ('kmlc', 0.0033116333717166397) +zone = ('okz073', 0.0031009395940224584) + +[fips4032900] +centroid = (0.62515889135990332, -1.6699379747185974) +description = Haskell town, OK +station = ('kokm', 0.0046231100114580747) +zone = ('okz067', 0.0033471836381949462) + +[fips4033000] +centroid = (0.59732638757773737, -1.712320049290871) +description = Hastings town, OK +station = ('kduc', 0.0048072083619234577) +zone = ('okz045', 0.0044084172165596179) + +[fips4033150] +centroid = (0.59063509193156405, -1.6520769209255106) +description = Haworth town, OK +station = ('k4o4', 0.0031621031849773458) +zone = ('okz077', 0.0050629412661568505) + +[fips4033300] +centroid = (0.60435231520139576, -1.730273518267851) +description = Headrick town, OK +station = ('klts', 0.0019001761114220582) +zone = ('okz036', 0.0040411405780029731) + +[fips4033350] +centroid = (0.5974878479868394, -1.7014720076849779) +description = Healdton city, OK +station = ('k1f0', 0.0054772568929532103) +zone = ('okz046', 0.0029210740664837019) + +[fips4033400] +centroid = (0.60897970664720835, -1.6512174509886588) +description = Heavener city, OK +station = ('krkr', 0.0022720276167210104) +zone = ('okz076', 0.0013774119363499471) + +[fips4033450] +centroid = (0.6378582560632643, -1.7151614278598253) +description = Helena town, OK +station = ('kend', 0.0062190239717749762) +zone = ('okz006', 0.0033015077243559988) + +[fips4033600] +centroid = (0.58948944035726247, -1.6826203748216291) +description = Hendrix town, OK +station = ('kdua', 0.0029198107056378681) +zone = ('okz052', 0.0038984637787637263) + +[fips4033700] +centroid = (0.63016528105278635, -1.7086531648923087) +description = Hennessey town, OK +station = ('kend', 0.0039791402614770717) +zone = ('okz018', 0.0028661963999065364) + +[fips4033750] +centroid = (0.61858285725753148, -1.6752567958008802) +description = Henryetta city, OK +station = ('kokm', 0.0039761332844320844) +zone = ('okz066', 0.0035816779678821556) + +[fips4034150] +centroid = (0.60316800458416253, -1.6904739550298757) +description = Hickory town, OK +station = ('kadm', 0.0050416989122881659) +zone = ('okz041', 0.0033146418275817754) + +[fips4034650] +centroid = (0.63815248366856547, -1.7102947866801492) +description = Hillsdale town, OK +station = ('kend', 0.0041555286007072031) +zone = ('okz012', 0.0043634280351238291) + +[fips4034750] +centroid = (0.61926550788786405, -1.7166604737010707) +description = Hinton town, OK +station = ('krqo', 0.0050031490779693707) +zone = ('okz023', 0.0053623417507958288) + +[fips4034850] +centroid = (0.62775405633127868, -1.7165260135354969) +description = Hitchcock town, OK +station = ('kjwg', 0.002058820009566799) +zone = ('okz017', 0.0020017579693966479) + +[fips4034900] +centroid = (0.61993758182292946, -1.6711842619775692) +description = Hitchita town, OK +station = ('kokm', 0.0038074147452370256) +zone = ('okz071', 0.0028219752714199898) + +[fips4035000] +centroid = (0.61129596800411501, -1.7294066481349701) +description = Hobart city, OK +station = ('khbr', 0.00090069334585177055) +zone = ('okz035', 0.0024322063113641338) + +[fips4035300] +centroid = (0.6193974024194373, -1.6728088144453255) +description = Hoffman town, OK +station = ('kokm', 0.0034568595237287128) +zone = ('okz071', 0.0032331852838554543) + +[fips4035400] +centroid = (0.61233349643125556, -1.6825030712426026) +description = Holdenville city, OK +station = ('kadh', 0.0062342942576291875) +zone = ('okz032', 0.0022333851608331598) + +[fips4035500] +centroid = (0.60544478659338907, -1.7438534539387207) +description = Hollis city, OK +station = ('kcds', 0.0069237702113152293) +zone = ('okz033', 0.0013763557055246102) + +[fips4035550] +centroid = (0.59936552555601252, -1.7256162118786591) +description = Hollister town, OK +station = ('kfdr', 0.001632968377164804) +zone = ('okz037', 0.00095073311373829661) + +[fips4035850] +centroid = (0.63568785187194676, -1.6823426754843445) +description = Hominy city, OK +station = ('kbvo', 0.0079795401142449887) +zone = ('okz054', 0.0036137272936916692) + +[fips4036000] +centroid = (0.64335991783798596, -1.7665290333800188) +description = Hooker city, OK +station = ('klbl', 0.0047698049934207006) +zone = ('okz002', 0.0043310200303716372) + +[fips4036020] +centroid = (0.63460141931916536, -1.6601818634526295) +description = Hoot Owl town, OK +station = ('kgcm', 0.0051664552634733815) +zone = ('okz062', 0.0018441954661764543) + +[fips4036090] +centroid = (0.6123243858125601, -1.6796628096843695) +description = Horntown town, OK +station = ('kadh', 0.0078902212165901531) +zone = ('okz032', 0.00064027130003437981) + +[fips4036150] +centroid = (0.60998218886296884, -1.6517869519235844) +description = Howe town, OK +station = ('krkr', 0.0012902326182690613) +zone = ('okz076', 0.0012471245332853888) + +[fips4036300] +centroid = (0.59362231021281497, -1.6669778264940451) +description = Hugo city, OK +station = ('khhw', 0.00058868733753740185) +zone = ('okz053', 0.00064856080159303182) + +[fips4036400] +centroid = (0.62712268347436972, -1.6605707402632661) +description = Hulbert town, OK +station = ('ktqh', 0.0019684790515528592) +zone = ('okz068', 0.002081114485115278) + +[fips4036600] +centroid = (0.63815670736535535, -1.7045315524104314) +description = Hunter town, OK +station = ('kwdg', 0.0036920903553683509) +zone = ('okz012', 0.0036390461784389042) + +[fips4036700] +centroid = (0.62042939815284903, -1.7205400613755737) +description = Hydro town, OK +station = ('koja', 0.0012601788151686197) +zone = ('okz017', 0.0060750929211876087) + +[fips4036750] +centroid = (0.59170258766196138, -1.6550952060674471) +description = Idabel city, OK +station = ('k4o4', 0.00044073629228527476) +zone = ('okz077', 0.0038142139359981682) + +[fips4036850] +centroid = (0.60423089264533458, -1.7235492009922297) +description = Indiahoma town, OK +station = ('kfdr', 0.0057665878118042264) +zone = ('okz038', 0.004093162397294404) + +[fips4036945] +centroid = (0.63607660650953601, -1.6523846748325148) +description = Indianola CDP, OK +station = ('kgmj', 0.0029458477855276739) +zone = ('okz063', 0.0019063754153512854) + +[fips4036950] +centroid = (0.61371682694309382, -1.671606509483504) +description = Indianola town, OK +station = ('kmlc', 0.0048889304983520182) +zone = ('okz071', 0.0039869009137271866) + +[fips4037100] +centroid = (0.63028923433626294, -1.6677049481137183) +description = Inola town, OK +station = ('kgcm', 0.0033297908780498681) +zone = ('okz067', 0.0026895475992463353) + +[fips4037275] +centroid = (0.63103564184417082, -1.6604200485356491) +description = Iron Post CDP, OK +station = ('ktqh', 0.0043663973463862592) +zone = ('okz062', 0.0028852437598734381) + +[fips4037350] +centroid = (0.63248964073742231, -1.7161194390862451) +description = Isabella CDP, OK +station = ('kjwg', 0.0066666768206699242) +zone = ('okz011', 0.0032099477064536919) + +[fips4037410] +centroid = (0.62007371750458518, -1.6822391774597012) +description = IXL town, OK +station = ('kokm', 0.0066632635292313671) +zone = ('okz065', 0.0014004715871720171) + +[fips4037650] +centroid = (0.6357671072732799, -1.6545141510528731) +description = Jay city, OK +station = ('kgmj', 0.0032202243227108557) +zone = ('okz063', 0.00033499534417112995) + +[fips4037750] +centroid = (0.64089104489128479, -1.7067730787687676) +description = Jefferson town, OK +station = ('kwdg', 0.0059548082042390014) +zone = ('okz007', 0.0013254934937062593) + +[fips4037800] +centroid = (0.6282874464039806, -1.6750518941466961) +description = Jenks city, OK +station = ('krvs', 0.00091455278903913092) +zone = ('okz060', 0.0021914089286948755) + +[fips4037850] +centroid = (0.63150016122458918, -1.6854466039326763) +description = Jennings town, OK +station = ('kcuh', 0.004974306290687517) +zone = ('okz059', 0.0029806075992181917) + +[fips4038000] +centroid = (0.63994942230654139, -1.7135882578852477) +description = Jet town, OK +station = ('kend', 0.0068981900934369849) +zone = ('okz006', 0.0022923112738619431) + +[fips4038200] +centroid = (0.61809053478212894, -1.6900895986220017) +description = Johnson town, OK +station = ('ksnl', 0.0018256872444480893) +zone = ('okz030', 0.0039596736027334885) + +[fips4038350] +centroid = (0.62075654266784275, -1.6980118749896067) +description = Jones town, OK +station = ('ktik', 0.0029427795295370852) +zone = ('okz025', 0.0017003925611022133) + +[fips4038475] +centroid = (0.63339398308934314, -1.6678987843804449) +description = Justice CDP, OK +station = ('kgcm', 0.0011811084152577086) +zone = ('okz061', 0.0015226169921871396) + +[fips4038600] +centroid = (0.63190780032468497, -1.6543821343482523) +description = Kansas town, OK +station = ('kslg', 0.0043076215434679557) +zone = ('okz063', 0.0035403249495211376) + +[fips4038700] +centroid = (0.60364348463228334, -1.6987903791024586) +description = Katie town, OK +station = ('kpvj', 0.0026933113542549564) +zone = ('okz040', 0.0020933915391646409) + +[fips4038800] +centroid = (0.64171667289394074, -1.6906379810729781) +description = Kaw City city, OK +station = ('kpnc', 0.0033209462675646202) +zone = ('okz008', 0.0039765288461392186) + +[fips4039000] +centroid = (0.62715209227226587, -1.6791641167571973) +description = Kellyville town, OK +station = ('krvs', 0.0037834996378910326) +zone = ('okz064', 0.0023491441041225396) + +[fips4039050] +centroid = (0.58938917119173528, -1.6817009004650936) +description = Kemp town, OK +station = ('kdua', 0.003069828996589025) +zone = ('okz052', 0.0036320733523451574) + +[fips4039150] +centroid = (0.62457261781086582, -1.6890515116895004) +description = Kendrick town, OK +station = ('kcqb', 0.0012463730981703107) +zone = ('okz026', 0.0020725067243312378) + +[fips4039200] +centroid = (0.59603069004764186, -1.6818734960748234) +description = Kenefic town, OK +station = ('kdua', 0.0036533408636836538) +zone = ('okz052', 0.0036068663377190257) + +[fips4039400] +centroid = (0.64413747947304201, -1.7970819120540982) +description = Kenton CDP, OK +station = ('kspd', 0.0081751255541065212) +zone = ('okz001', 0.0068321741548908015) + +[fips4039450] +centroid = (0.63357631763629896, -1.6580256662414232) +description = Kenwood CDP, OK +station = ('kgmj', 0.0064345657586379881) +zone = ('okz062', 0.0032777308146272745) + +[fips4039500] +centroid = (0.61535750625313845, -1.6567069129119087) +description = Keota town, OK +station = ('kgzl', 0.002562561194283562) +zone = ('okz074', 0.0028272790785754693) + +[fips4039550] +centroid = (0.63745827895858476, -1.6586200904780675) +description = Ketchum town, OK +station = ('kgmj', 0.0043515407264468394) +zone = ('okz063', 0.0037965604058849429) + +[fips4039600] +centroid = (0.64241529328692903, -1.7846313440356087) +description = Keyes town, OK +station = ('keha', 0.0061414650414806657) +zone = ('okz001', 0.0038596750765020871) + +[fips4039625] +centroid = (0.62488367039015624, -1.656921588409904) +description = Keys CDP, OK +station = ('ktqh', 0.0024058245318208976) +zone = ('okz068', 0.0020260103145945756) + +[fips4039750] +centroid = (0.62733730661248732, -1.6764414031240862) +description = Kiefer town, OK +station = ('krvs', 0.0020988342761321466) +zone = ('okz060', 0.0034720719527012106) + +[fips4039800] +centroid = (0.64242522421037285, -1.693841340928796) +description = Kildare town, OK +station = ('kpnc', 0.0014829982098214819) +zone = ('okz008', 0.0013235993859745071) + +[fips4039850] +centroid = (0.62558040582755237, -1.7093389222087096) +description = Kingfisher city, OK +station = ('krqo', 0.0065392391274373077) +zone = ('okz018', 0.0017861597155962752) + +[fips4039900] +centroid = (0.59337520649731756, -1.6876500821133191) +description = Kingston town, OK +station = ('kgyi', 0.0049257843118988417) +zone = ('okz051', 0.0011652739010591271) + +[fips4039950] +centroid = (0.61295542705691131, -1.6622208268979792) +description = Kinta town, OK +station = ('kgzl', 0.0034217918835008068) +zone = ('okz074', 0.0025243932858806839) + +[fips4040000] +centroid = (0.60601458423428767, -1.6738090102797658) +description = Kiowa town, OK +station = ('kmlc', 0.0032897737588642537) +zone = ('okz073', 0.0041548873965223544) + +[fips4040100] +centroid = (0.64355633719200533, -1.7486983308626243) +description = Knowles town, OK +station = ('kpyx', 0.011199457768888605) +zone = ('okz003', 0.0045107715509807959) + +[fips4040200] +centroid = (0.61013539386470883, -1.6886676090672317) +description = Konawa city, OK +station = ('kadh', 0.002929645357214019) +zone = ('okz042', 0.0041359850226989296) + +[fips4040300] +centroid = (0.60963766086862514, -1.6706242730870666) +description = Krebs city, OK +station = ('kmlc', 0.0012177560941922547) +zone = ('okz073', 0.00042255596965987303) + +[fips4040400] +centroid = (0.63785799426387657, -1.7074960115982361) +description = Kremlin town, OK +station = ('kwdg', 0.0029784507500055422) +zone = ('okz012', 0.0030061155130299273) + +[fips4040700] +centroid = (0.63509232807787375, -1.7119714372260777) +description = Lahoma town, OK +station = ('kend', 0.0026005917972791595) +zone = ('okz012', 0.0043016783338571023) + +[fips4040800] +centroid = (0.62015567816625872, -1.7008467783870358) +description = Lake Aluma town, OK +station = ('ktik', 0.0022377817021074667) +zone = ('okz025', 0.00071080610778825361) + +[fips4041250] +centroid = (0.61250593496135264, -1.6776747051334229) +description = Lamar town, OK +station = ('kmlc', 0.0060994402873175493) +zone = ('okz032', 0.0019747826548916331) + +[fips4041300] +centroid = (0.64024272488733902, -1.7178183600334289) +description = Lambert town, OK +station = ('kavk', 0.0037849252134381423) +zone = ('okz006', 0.0016259123082058276) + +[fips4041350] +centroid = (0.64038434090284579, -1.7027125877172955) +description = Lamont town, OK +station = ('kbkn', 0.0030880939579971635) +zone = ('okz007', 0.0036750221464399253) + +[fips4041400] +centroid = (0.59864583903895263, -1.675335108724417) +description = Lane CDP, OK +station = ('kaqr', 0.0028572847587418015) +zone = ('okz048', 0.0014635221961585474) + +[fips4041500] +centroid = (0.6364481522007005, -1.6588612426208156) +description = Langley town, OK +station = ('kgmj', 0.004947526849041697) +zone = ('okz062', 0.0038678706242221209) + +[fips4041550] +centroid = (0.62727016379616329, -1.697469601191012) +description = Langston town, OK +station = ('kgok', 0.0027397569523026698) +zone = ('okz019', 0.0026453602947022065) + +[fips4041700] +centroid = (0.64062756998740378, -1.7435323657162314) +description = Laverne town, OK +station = ('kwwr', 0.0070528527404818782) +zone = ('okz004', 0.0035276715252692639) + +[fips4041760] +centroid = (0.62978127371076265, -1.6829642570441496) +description = Lawrence Creek town, OK +station = ('kcuh', 0.0054165397925178445) +zone = ('okz064', 0.0032578476449973159) + +[fips4041850] +centroid = (0.60418146492091795, -1.7177600311298271) +description = Lawton city, OK +station = ('kfsi', 0.0004176216137662027) +zone = ('okz038', 0.001077462511720514) + +[fips4041900] +centroid = (0.63177168209632195, -1.656489567060158) +description = Leach CDP, OK +station = ('ktqh', 0.0048802610144508003) +zone = ('okz063', 0.0039686520991390776) + +[fips4041950] +centroid = (0.59292100201277853, -1.6916427496700588) +description = Lebanon CDP, OK +station = ('k1f0', 0.0041923076804104746) +zone = ('okz051', 0.002422146227498396) + +[fips4042050] +centroid = (0.62602647707777714, -1.7338987242038757) +description = Leedey town, OK +station = ('kclk', 0.0083280480441204913) +zone = ('okz015', 0.0051971240338880651) + +[fips4042150] +centroid = (0.60908491509451856, -1.6576431947891412) +description = Le Flore town, OK +station = ('krkr', 0.0055119442379288367) +zone = ('okz075', 0.0039476025179907412) + +[fips4042200] +centroid = (0.60169752978277224, -1.6793852848800099) +description = Lehigh city, OK +station = ('kaqr', 0.0017033159855559914) +zone = ('okz043', 0.0022633808898947978) + +[fips4042300] +centroid = (0.64317714695871719, -1.6691578823561259) +description = Lenapah town, OK +station = ('kcfv', 0.0041619837397387678) +zone = ('okz056', 0.00095658257521428905) + +[fips4042450] +centroid = (0.59127115972416078, -1.7004576397770113) +description = Leon town, OK +station = ('kgle', 0.005185876946648355) +zone = ('okz050', 0.0029617260498166183) + +[fips4042700] +centroid = (0.6111767096563262, -1.6988162274286807) +description = Lexington city, OK +station = ('koun', 0.0038388631330901757) +zone = ('okz028', 0.0015605768405873802) + +[fips4042855] +centroid = (0.61890878004204897, -1.6501346138141364) +description = Liberty CDP, OK +station = ('kfsm', 0.0033831265773882238) +zone = ('okz072', 0.003032796368781363) + +[fips4042860] +centroid = (0.62575108157510495, -1.6752781411776321) +description = Liberty town, OK +station = ('kokm', 0.0032700900895308491) +zone = ('okz066', 0.0036123476983348753) + +[fips4043000] +centroid = (0.61389739870750504, -1.6859613189823817) +description = Lima town, OK +station = ('ksnl', 0.0058592094631553619) +zone = ('okz031', 0.00026751736958550033) + +[fips4043057] +centroid = (0.63380483359526274, -1.6711129827309175) +description = Limestone CDP, OK +station = ('ktul', 0.0027613918383718452) +zone = ('okz061', 0.0022490725233888838) + +[fips4043150] +centroid = (0.60806822589864673, -1.7036243477185371) +description = Lindsay city, OK +station = ('kpvj', 0.0059870769132326857) +zone = ('okz028', 0.003794598754799467) + +[fips4043450] +centroid = (0.59916331170887649, -1.7048490278013693) +description = Loco town, OK +station = ('kduc', 0.0047186298890223004) +zone = ('okz039', 0.0036694720163152881) + +[fips4043500] +centroid = (0.6317694829814644, -1.661003110678863) +description = Locust Grove town, OK +station = ('ktqh', 0.0052317158661105345) +zone = ('okz062', 0.0020178402929399001) + +[fips4043750] +centroid = (0.59657050293199121, -1.6973905203226041) +description = Lone Grove city, OK +station = ('k1f0', 0.0019802819575264821) +zone = ('okz046', 0.0013074385801000884) + +[fips4043850] +centroid = (0.61069801820238179, -1.7321635702214204) +description = Lone Wolf town, OK +station = ('khbr', 0.002800540073447984) +zone = ('okz035', 0.0040036135722162167) + +[fips4043900] +centroid = (0.61957113249318085, -1.6500198758691103) +description = Long CDP, OK +station = ('kfsm', 0.0037897319439330348) +zone = ('okz072', 0.0030659599103131244) + +[fips4043950] +centroid = (0.63065149487580685, -1.7200391518802514) +description = Longdale town, OK +station = ('kjwg', 0.0050409323563641983) +zone = ('okz011', 0.0031126399817216345) + +[fips4043975] +centroid = (0.61509701586227838, -1.6671448719567534) +description = Longtown CDP, OK +station = ('kmlc', 0.0073075806121489584) +zone = ('okz071', 0.0030978086769981841) + +[fips4044000] +centroid = (0.61720114990189778, -1.7167727507318515) +description = Lookeba town, OK +station = ('koja', 0.0053664080243952831) +zone = ('okz023', 0.003295970195601238) + +[fips4044075] +centroid = (0.62832982299821905, -1.6601974317895571) +description = Lost City CDP, OK +station = ('ktqh', 0.0020834106338117968) +zone = ('okz068', 0.0023863906169476075) + +[fips4044100] +centroid = (0.63064692211316664, -1.6791657224601091) +description = Lotsee town, OK +station = ('krvs', 0.0035012195131845416) +zone = ('okz064', 0.0046292515030521815) + +[fips4044150] +centroid = (0.59873493809726697, -1.7238839027828845) +description = Loveland town, OK +station = ('kfdr', 0.0031558864655668751) +zone = ('okz037', 0.0025016267904243218) + +[fips4044300] +centroid = (0.62784352190873582, -1.7124890320690491) +description = Loyal town, OK +station = ('kjwg', 0.0046724049299143953) +zone = ('okz018', 0.0025360073470768272) + +[fips4044350] +centroid = (0.63311406718390828, -1.7009111286765568) +description = Lucien CDP, OK +station = ('kwdg', 0.0050648587314416982) +zone = ('okz013', 0.0037289357915022609) + +[fips4044500] +centroid = (0.62252452629352806, -1.6962946629918618) +description = Luther town, OK +station = ('kgok', 0.004510573978571881) +zone = ('okz025', 0.0036863263776980289) + +[fips4044775] +centroid = (0.62463558929027785, -1.6525707443840698) +description = Lyons Switch CDP, OK +station = ('ktqh', 0.0051320819859114568) +zone = ('okz069', 0.001698921310459378) + +[fips4044800] +centroid = (0.60958793643823583, -1.6715008472505881) +description = McAlester city, OK +station = ('kmlc', 0.00078273999774702634) +zone = ('okz073', 0.0003124657249022044) + +[fips4044925] +centroid = (0.64006627209996236, -1.6935967504874214) +description = McCord CDP, OK +station = ('kpnc', 0.001381552405014895) +zone = ('okz008', 0.0029454222096269443) + +[fips4044950] +centroid = (0.61349302337311062, -1.6574899374275236) +description = McCurtain town, OK +station = ('kgzl', 0.0029479956873611408) +zone = ('okz074', 0.0024943077227858614) + +[fips4045350] +centroid = (0.61805157903322439, -1.694690740315864) +description = McLoud town, OK +station = ('ksnl', 0.0024132017950046548) +zone = ('okz030', 0.0041688169645186755) + +[fips4045500] +centroid = (0.61344651034854492, -1.6931204850411372) +description = Macomb town, OK +station = ('ksnl', 0.0037721638097495723) +zone = ('okz030', 0.0013410241784881814) + +[fips4045750] +centroid = (0.59491298119466474, -1.6890422439911723) +description = Madill city, OK +station = ('kadm', 0.0051773211209547717) +zone = ('okz051', 0.0010768056518304289) + +[fips4046000] +centroid = (0.64567466075844338, -1.7110351204422602) +description = Manchester town, OK +station = ('kp28', 0.008760605352516845) +zone = ('ksz091', 0.0034868935308213509) + +[fips4046050] +centroid = (0.60874251640186228, -1.7366715985996892) +description = Mangum city, OK +station = ('kaxs', 0.0039368139471453439) +zone = ('okz034', 0.0012904731975777756) + +[fips4046150] +centroid = (0.60226273720773804, -1.7275427935734731) +description = Manitou town, OK +station = ('kfdr', 0.0027423608732229203) +zone = ('okz037', 0.0024822652719467321) + +[fips4046200] +centroid = (0.63063741006874341, -1.6812831384553362) +description = Mannford town, OK +station = ('krvs', 0.0051044473685637011) +zone = ('okz064', 0.0040575107491803873) + +[fips4046300] +centroid = (0.59660136035316658, -1.691132694649456) +description = Mannsville town, OK +station = ('kadm', 0.0027650417268548894) +zone = ('okz051', 0.0033054174682430565) + +[fips4046400] +centroid = (0.63254170390900932, -1.6873929776612078) +description = Maramec town, OK +station = ('kcuh', 0.005264097113024317) +zone = ('okz059', 0.0013342685518124427) + +[fips4046450] +centroid = (0.62103329952733144, -1.6549063439890888) +description = Marble City town, OK +station = ('kjsv', 0.0025332496570078951) +zone = ('okz072', 0.0017758066341883843) + +[fips4046488] +centroid = (0.62568564918144765, -1.6520629931980799) +description = Marietta CDP, OK +station = ('ktqh', 0.0051165242608088397) +zone = ('okz069', 0.000607553832769034) + +[fips4046500] +centroid = (0.59227920954023527, -1.6951275089611759) +description = Marietta city, OK +station = ('k1f0', 0.0036974380478208058) +zone = ('okz050', 0.0017644538675952489) + +[fips4046550] +centroid = (0.63811192221674928, -1.6956381399404317) +description = Marland town, OK +station = ('kpnc', 0.0030956578077022141) +zone = ('okz013', 0.0032023810987306177) + +[fips4046600] +centroid = (0.60442186657208774, -1.7096685101846563) +description = Marlow city, OK +station = ('kduc', 0.002792710236363038) +zone = ('okz039', 0.0029527861555317808) + +[fips4046650] +centroid = (0.631030981815068, -1.7038903882564187) +description = Marshall town, OK +station = ('kwdg', 0.0045461183832061474) +zone = ('okz012', 0.0044848416485008319) + +[fips4046700] +centroid = (0.60608305350084335, -1.7346243273870998) +description = Martha town, OK +station = ('kaxs', 0.00084537038129673379) +zone = ('okz036', 0.0024419975712371878) + +[fips4046900] +centroid = (0.61319221587652928, -1.6891013757462299) +description = Maud city, OK +station = ('ksnl', 0.0045564697434813438) +zone = ('okz030', 0.0027425417658141385) + +[fips4047000] +centroid = (0.63909422842635666, -1.740939382406421) +description = May town, OK +station = ('kwwr', 0.0044854339501345219) +zone = ('okz004', 0.0031982425076802524) + +[fips4047150] +centroid = (0.60850403461286984, -1.6994898023469027) +description = Maysville town, OK +station = ('kpvj', 0.0034388738837890318) +zone = ('okz028', 0.0027053134992516058) + +[fips4047200] +centroid = (0.63080668955289432, -1.6638261109307937) +description = Mazie CDP, OK +station = ('kgcm', 0.0033851029391377303) +zone = ('okz062', 0.0031112040240501605) + +[fips4047250] +centroid = (0.59342514036721716, -1.6844341209803015) +description = Mead town, OK +station = ('kdua', 0.0019718488280211282) +zone = ('okz051', 0.0037574197011857433) + +[fips4047300] +centroid = (0.64234614334196494, -1.7058477924658231) +description = Medford city, OK +station = ('kbkn', 0.0055028684442320237) +zone = ('okz007', 0.00068657994998564027) + +[fips4047350] +centroid = (0.606229765877766, -1.7187587259811108) +description = Medicine Park town, OK +station = ('kfsi', 0.0025970182979898537) +zone = ('okz038', 0.0012648520224771568) + +[fips4047450] +centroid = (0.61927489775923983, -1.6911460813248187) +description = Meeker town, OK +station = ('ksnl', 0.0022763960182249211) +zone = ('okz026', 0.0038655879730454391) + +[fips4047750] +centroid = (0.63509344508859511, -1.713528654891292) +description = Meno town, OK +station = ('kend', 0.003795192168931275) +zone = ('okz011', 0.005207421620096791) + +[fips4047800] +centroid = (0.62559588689801748, -1.6972578054862826) +description = Meridian town, OK +station = ('kgok', 0.00242086132080896) +zone = ('okz019', 0.0030885229976764326) + +[fips4047810] +centroid = (0.60082505714299272, -1.7100282399967848) +description = Meridian CDP, OK +station = ('kduc', 0.00084256323146826811) +zone = ('okz039', 0.0021015405967819817) + +[fips4048000] +centroid = (0.64381560585238917, -1.6558452613134917) +description = Miami city, OK +station = ('kgmj', 0.0052786127074285882) +zone = ('okz058', 0.0012638495750031294) + +[fips4048350] +centroid = (0.6188719710481243, -1.6995068716669874) +description = Midwest City city, OK +station = ('ktik', 0.00074502088001364777) +zone = ('okz025', 0.0016838343982780288) + +[fips4048400] +centroid = (0.59757731356429666, -1.6851571759828181) +description = Milburn town, OK +station = ('kdua', 0.0056550937176132491) +zone = ('okz047', 0.0020690798897597782) + +[fips4048500] +centroid = (0.60041129193722242, -1.6899185738085987) +description = Mill Creek town, OK +station = ('kadm', 0.0032799247653919296) +zone = ('okz047', 0.0027930609378447008) + +[fips4048600] +centroid = (0.5931227969808941, -1.6583617468421872) +description = Millerton town, OK +station = ('k4o4', 0.0026288398117228825) +zone = ('okz077', 0.0042342400304765642) + +[fips4048750] +centroid = (0.61637454451486062, -1.7095744194846811) +description = Minco city, OK +station = ('krqo', 0.0028437518169406846) +zone = ('okz024', 0.0039837348606230772) + +[fips4049000] +centroid = (0.61767142886884752, -1.6483969814641433) +description = Moffett town, OK +station = ('kfsm', 0.0015027177894663046) +zone = ('arz029', 0.0041340723205095025) + +[fips4049200] +centroid = (0.61661780850600356, -1.7012597756479353) +description = Moore city, OK +station = ('ktik', 0.0020028263597675752) +zone = ('okz029', 0.0030460175613210754) + +[fips4049250] +centroid = (0.63596460873143557, -1.7314437440780206) +description = Mooreland town, OK +station = ('kwwr', 0.0044468321346976675) +zone = ('okz010', 0.00089209920794425723) + +[fips4049400] +centroid = (0.62142805809754764, -1.6731085223844777) +description = Morris city, OK +station = ('kokm', 0.0016464115510944251) +zone = ('okz066', 0.0016212398450384323) + +[fips4049450] +centroid = (0.63339827659930314, -1.6935780405578402) +description = Morrison town, OK +station = ('kswo', 0.0022755485445234021) +zone = ('okz013', 0.0032358430297846717) + +[fips4049550] +centroid = (0.62608356679760979, -1.6765047585759336) +description = Mounds town, OK +station = ('krvs', 0.0032756726165275637) +zone = ('okz066', 0.0041431407878968728) + +[fips4049600] +centroid = (0.60560900462270917, -1.72704354214094) +description = Mountain Park town, OK +station = ('khbr', 0.0051587832654851305) +zone = ('okz035', 0.0038172951360771197) + +[fips4049650] +centroid = (0.61259976386193982, -1.7235149750855983) +description = Mountain View town, OK +station = ('khbr', 0.0047395548307375681) +zone = ('okz035', 0.0045917095220333283) + +[fips4049825] +centroid = (0.6260267039705798, -1.6528172023277441) +description = Mulberry CDP, OK +station = ('ktqh', 0.004438208110148569) +zone = ('okz069', 0.00063450930217448292) + +[fips4049850] +centroid = (0.61790624546641082, -1.6510382405810637) +description = Muldrow town, OK +station = ('kjsv', 0.0029812689729261225) +zone = ('okz072', 0.0027528734482629891) + +[fips4049900] +centroid = (0.63027500990285934, -1.6989523980169214) +description = Mulhall town, OK +station = ('kswo', 0.0037791897292021918) +zone = ('okz019', 0.0036502132564657044) + +[fips4049950] +centroid = (0.63065128543629667, -1.6622671304830348) +description = Murphy CDP, OK +station = ('kgcm', 0.0043801507215748036) +zone = ('okz062', 0.0029380190734004416) + +[fips4050050] +centroid = (0.62380432387413787, -1.6643486625088406) +description = Muskogee city, OK +station = ('kmko', 0.0015971155766275232) +zone = ('okz070', 0.0022030744355386179) + +[fips4050100] +centroid = (0.61770425851207755, -1.7056254549724112) +description = Mustang city, OK +station = ('kokc', 0.0017867878337184068) +zone = ('okz024', 0.0045052172762698028) + +[fips4050150] +centroid = (0.63234032781991423, -1.730806978153723) +description = Mutual town, OK +station = ('kwwr', 0.006133027779715995) +zone = ('okz010', 0.003622654842907734) + +[fips4050200] +centroid = (0.64229919398508628, -1.6568038135919794) +description = Narcissa CDP, OK +station = ('kgmj', 0.0043227533660318536) +zone = ('okz058', 0.0017467025840218319) + +[fips4050250] +centroid = (0.64235256615361236, -1.7008210522338614) +description = Nardin CDP, OK +station = ('kbkn', 0.0016853464185336241) +zone = ('okz008', 0.0042822925800523343) + +[fips4050300] +centroid = (0.63992479571079575, -1.7113315995222964) +description = Nash town, OK +station = ('kend', 0.0060922972882175236) +zone = ('okz006', 0.0039758533199357599) + +[fips4050975] +centroid = (0.64148342709270423, -1.7131462881587651) +description = Nescatunga CDP, OK +station = ('kend', 0.0080775859963405482) +zone = ('okz006', 0.0023838181114420867) + +[fips4051050] +centroid = (0.63896554530060712, -1.6665927195945927) +description = New Alluwe town, OK +station = ('kgcm', 0.0055094406824301497) +zone = ('okz056', 0.0037506200191444053) + +[fips4051150] +centroid = (0.615095829038387, -1.7033599477901527) +description = Newcastle city, OK +station = ('kokc', 0.0024607346530317628) +zone = ('okz028', 0.004618203947525777) + +[fips4051250] +centroid = (0.61605296760018069, -1.727554574545924) +description = New Cordell city, OK +station = ('kcsm', 0.003243718417966549) +zone = ('okz022', 0.00019371437483459646) + +[fips4051275] +centroid = (0.6351455257134746, -1.6554841003313763) +description = New Eucha CDP, OK +station = ('kgmj', 0.0040630066713257008) +zone = ('okz063', 0.00075699500447483923) + +[fips4051300] +centroid = (0.64370659258730956, -1.6939369151586352) +description = Newkirk city, OK +station = ('kpnc', 0.0026628225360077347) +zone = ('okz008', 0.0016617502996131438) + +[fips4051750] +centroid = (0.59286570998207533, -1.6869469587708605) +description = New Woodville town, OK +station = ('kgyi', 0.0044021466777133759) +zone = ('okz051', 0.0019175717681625076) + +[fips4051800] +centroid = (0.62040152524469461, -1.7024512246618093) +description = Nichols Hills city, OK +station = ('kpwa', 0.0015328047608963022) +zone = ('okz025', 0.0019342971790458458) + +[fips4051850] +centroid = (0.61944354892485998, -1.6986298960777377) +description = Nicoma Park city, OK +station = ('ktik', 0.0015523323441909134) +zone = ('okz025', 0.0015756107436580178) + +[fips4051900] +centroid = (0.6213788398126413, -1.6504341123137787) +description = Nicut CDP, OK +station = ('kjsv', 0.0044538226732804952) +zone = ('okz072', 0.0033054542856387108) + +[fips4052100] +centroid = (0.61023815885106625, -1.7094586168888115) +description = Ninnekah town, OK +station = ('kchk', 0.0023246412649517885) +zone = ('okz027', 0.0012671917244710114) + +[fips4052150] +centroid = (0.61327719595780894, -1.6994537089379718) +description = Noble city, OK +station = ('koun', 0.0017689201182524855) +zone = ('okz029', 0.0013056845943704438) + +[fips4052450] +centroid = (0.61067721387769802, -1.7103189943968746) +description = Norge town, OK +station = ('kchk', 0.0019077509868752267) +zone = ('okz027', 0.0016450632260825518) + +[fips4052500] +centroid = (0.61506409895258574, -1.698996101061391) +description = Norman city, OK +station = ('koun', 0.0015498460127702589) +zone = ('okz029', 0.0006956185847317441) + +[fips4052600] +centroid = (0.63609756791385252, -1.7080382679435384) +description = North Enid town, OK +station = ('kwdg', 0.0015424583809726168) +zone = ('okz012', 0.0016237541601088531) + +[fips4052700] +centroid = (0.64437803820384432, -1.6559627219721511) +description = North Miami town, OK +station = ('kgmj', 0.0058386541354895939) +zone = ('okz058', 0.0017649539555627605) + +[fips4052862] +centroid = (0.62107963801897204, -1.6596270756432978) +description = Notchietown CDP, OK +station = ('kjsv', 0.004817343711533033) +zone = ('okz070', 0.004147333601224385) + +[fips4052900] +centroid = (0.64051056311435006, -1.6692016028538885) +description = Nowata city, OK +station = ('kbvo', 0.0054256164878953607) +zone = ('okz056', 0.001768294442156934) + +[fips4053210] +centroid = (0.63190656114091603, -1.681422136476965) +description = Oak Grove town, OK +station = ('krvs', 0.0056943943779955552) +zone = ('okz064', 0.005306099445972475) + +[fips4053350] +centroid = (0.62979719111354082, -1.6765190528225076) +description = Oakhurst CDP, OK +station = ('krvs', 0.0012087399098752055) +zone = ('okz060', 0.0017542381060378588) + +[fips4053400] +centroid = (0.59511348461913383, -1.6894478934159207) +description = Oakland town, OK +station = ('kadm', 0.0048029994609498422) +zone = ('okz051', 0.0013417738794102331) + +[fips4053550] +centroid = (0.6312781902503205, -1.655490488236439) +description = Oaks town, OK +station = ('ktqh', 0.0047155758297741344) +zone = ('okz063', 0.0042235650813003131) + +[fips4053600] +centroid = (0.62712268347436972, -1.7226928551947387) +description = Oakwood town, OK +station = ('kjwg', 0.0041564247032239224) +zone = ('okz015', 0.0044186943715572094) + +[fips4053700] +centroid = (0.63880696468477094, -1.6751877854822561) +description = Ochelata town, OK +station = ('kbvo', 0.0029347363825932681) +zone = ('okz055', 0.0022655324886272522) + +[fips4054000] +centroid = (0.62975231869847192, -1.6856729033234896) +description = Oilton city, OK +station = ('kcuh', 0.0035496444413213265) +zone = ('okz064', 0.0043233140901841188) + +[fips4054050] +centroid = (0.6234435817710432, -1.7099880276108188) +description = Okarche town, OK +station = ('krqo', 0.0043531775666600554) +zone = ('okz024', 0.0031117049791206585) + +[fips4054100] +centroid = (0.62596265038703158, -1.6634335340221424) +description = Okay town, OK +station = ('kmko', 0.0038445150472987371) +zone = ('okz067', 0.0034506020480893945) + +[fips4054150] +centroid = (0.63036170040680573, -1.7159460929849368) +description = Okeene town, OK +station = ('kjwg', 0.0046442599336081565) +zone = ('okz017', 0.0045332835816352434) + +[fips4054200] +centroid = (0.61836788505356344, -1.6807572183918329) +description = Okemah city, OK +station = ('kokm', 0.0064978346931080459) +zone = ('okz065', 0.00069935619017946315) + +[fips4055000] +centroid = (0.61901732206823046, -1.7019343803104161) +description = Oklahoma City city, OK +station = ('kokc', 0.001909028796894444) +zone = ('okz025', 0.0021115157594050432) + +[fips4055150] +centroid = (0.62187484493276557, -1.6747536697374077) +description = Okmulgee city, OK +station = ('kokm', 0.00065928375557039725) +zone = ('okz066', 0.00029965573568128408) + +[fips4055200] +centroid = (0.62094667883655508, -1.6664021470935673) +description = Oktaha town, OK +station = ('kmko', 0.0020205404102104679) +zone = ('okz070', 0.0015496777516790319) + +[fips4055275] +centroid = (0.63451680575702862, -1.6569790621021721) +description = Old Eucha CDP, OK +station = ('kgmj', 0.0051848375004153483) +zone = ('okz063', 0.0021135680026916483) + +[fips4055285] +centroid = (0.62806383482021511, -1.651225252610415) +description = Old Green CDP, OK +station = ('kslg', 0.0041389409951428863) +zone = ('okz069', 0.0019097666841621161) + +[fips4055450] +centroid = (0.60296769314591114, -1.7352766267417401) +description = Olustee town, OK +station = ('klts', 0.00288289538572194) +zone = ('okz036', 0.0007193878230109872) + +[fips4055750] +centroid = (0.63605681447581841, -1.6704306462598504) +description = Oologah town, OK +station = ('kgcm', 0.0041357961658662068) +zone = ('okz061', 0.0019267829502889156) + +[fips4055850] +centroid = (0.64161795707144786, -1.7688857863755718) +description = Optima town, OK +station = ('kguy', 0.0025113260192603402) +zone = ('okz002', 0.0019774159199310412) + +[fips4056050] +centroid = (0.63090783138304729, -1.6995116364158451) +description = Orlando town, OK +station = ('kswo', 0.0041203076529433705) +zone = ('okz019', 0.004111181379929333) + +[fips4056150] +centroid = (0.63346540196233481, -1.6828107902430218) +description = Osage town, OK +station = ('krvs', 0.0074675976469462226) +zone = ('okz059', 0.0039757083056541223) + +[fips4056650] +centroid = (0.63333731224853085, -1.6726512984803328) +description = Owasso city, OK +station = ('ktul', 0.0016678465604121064) +zone = ('okz060', 0.0032639780052693057) + +[fips4056800] +centroid = (0.61971976473228052, -1.6854138091960311) +description = Paden town, OK +station = ('kcqb', 0.0052144463485614368) +zone = ('okz065', 0.0035477357884270556) + +[fips4056900] +centroid = (0.61385416690193317, -1.652318212694599) +description = Panama town, OK +station = ('krkr', 0.0027046645271656469) +zone = ('okz076', 0.0047554440185829435) + +[fips4057100] +centroid = (0.60783133235927356, -1.6975573737990948) +description = Paoli town, OK +station = ('kpvj', 0.0020866371225370713) +zone = ('okz040', 0.0022254289696798952) + +[fips4057150] +centroid = (0.62146568739622055, -1.6593383632784333) +description = Paradise Hill town, OK +station = ('kjsv', 0.0048450983600005918) +zone = ('okz070', 0.0043490399696028458) + +[fips4057300] +centroid = (0.62578460935003566, -1.6572386972816988) +description = Park Hill CDP, OK +station = ('ktqh', 0.0014848898853645522) +zone = ('okz068', 0.0011211674811883641) + +[fips4057550] +centroid = (0.60611197360654889, -1.6970989281644733) +description = Pauls Valley city, OK +station = ('kpvj', 0.00034591722726712363) +zone = ('okz040', 0.0011184758799992038) + +[fips4057600] +centroid = (0.6399943645347802, -1.6813014120526044) +description = Pawhuska city, OK +station = ('kbvo', 0.0047227989957652526) +zone = ('okz054', 0.0011662683104486265) + +[fips4057650] +centroid = (0.63418899801691919, -1.6895112139611832) +description = Pawnee city, OK +station = ('kswo', 0.0049462845719159699) +zone = ('okz059', 0.0014815814747234626) + +[fips4057875] +centroid = (0.62657873415969312, -1.6511972226226281) +description = Peavine CDP, OK +station = ('kslg', 0.0055122401109699232) +zone = ('okz069', 0.00078999871603820711) + +[fips4057950] +centroid = (0.6294928580518705, -1.6593159008909599) +description = Peggs CDP, OK +station = ('ktqh', 0.002595940430508563) +zone = ('okz068', 0.0029835781186712167) + +[fips4058050] +centroid = (0.636269517751759, -1.6603183656534279) +description = Pensacola town, OK +station = ('kgmj', 0.0060695772254479559) +zone = ('okz062', 0.0030401439677222109) + +[fips4058100] +centroid = (0.64429251707049662, -1.652299851830868) +description = Peoria town, OK +station = ('kjln', 0.0047313171063588346) +zone = ('okz058', 0.0024073700559666083) + +[fips4058150] +centroid = (0.62793546585373083, -1.693491699119744) +description = Perkins city, OK +station = ('kswo', 0.0033770598380869076) +zone = ('okz020', 0.0018937779112071463) + +[fips4058250] +centroid = (0.63320873384253651, -1.6983478857772005) +description = Perry city, OK +station = ('kswo', 0.0037345383930809787) +zone = ('okz013', 0.0021839321580350438) + +[fips4058400] +centroid = (0.62440661954570864, -1.6576324086543639) +description = Pettit CDP, OK +station = ('ktqh', 0.0027023347749501442) +zone = ('okz068', 0.0023076542017474847) + +[fips4058500] +centroid = (0.60221226228577041, -1.6793946747513859) +description = Phillips town, OK +station = ('kaqr', 0.0021342334113089861) +zone = ('okz043', 0.0018253039005976042) + +[fips4058550] +centroid = (0.64548361701852008, -1.6551385949526516) +description = Picher city, OK +station = ('kjln', 0.0054664967990464197) +zone = ('okz058', 0.0026009712608691797) + +[fips4058700] +centroid = (0.62264525071788845, -1.7061263121078563) +description = Piedmont city, OK +station = ('kpwa', 0.002877493393273593) +zone = ('okz024', 0.0039838870088173247) + +[fips4059100] +centroid = (0.62640196721305108, -1.6503117647332137) +description = Piney CDP, OK +station = ('kslg', 0.0055033357759821213) +zone = ('okz069', 0.0014577656500598176) + +[fips4059125] +centroid = (0.62017040874514551, -1.6561721963889753) +description = Pinhook Corner CDP, OK +station = ('kjsv', 0.002085817221688698) +zone = ('okz072', 0.0020523269169444198) + +[fips4059150] +centroid = (0.61492524055729714, -1.6947172518672018) +description = Pink town, OK +station = ('ksnl', 0.003123253835134821) +zone = ('okz030', 0.0022114870749891644) + +[fips4059175] +centroid = (0.63045762370249536, -1.6631043300186314) +description = Pin Oak Acres CDP, OK +station = ('kgcm', 0.00402791505691004) +zone = ('okz062', 0.0032330274728881343) + +[fips4059350] +centroid = (0.6058314119292908, -1.6729011249094632) +description = Pittsburg town, OK +station = ('kmlc', 0.0031469621157366678) +zone = ('okz073', 0.0039822470690274213) + +[fips4059700] +centroid = (0.61427130059315982, -1.7096300954878199) +description = Pocasset town, OK +station = ('kchk', 0.001736410606516275) +zone = ('okz027', 0.0032681905069988689) + +[fips4059750] +centroid = (0.61525659131578825, -1.6487767476560848) +description = Pocola town, OK +station = ('kfsm', 0.0020288920344130163) +zone = ('arz029', 0.0029120062486566781) + +[fips4059850] +centroid = (0.64090308766312354, -1.6941639650410272) +description = Ponca City city, OK +station = ('kpnc', 0.00049078073558535566) +zone = ('okz008', 0.0019941281679319652) + +[fips4059950] +centroid = (0.63996972048574208, -1.7069828673448575) +description = Pond Creek city, OK +station = ('kwdg', 0.005036204519650484) +zone = ('okz007', 0.0022574070174278) + +[fips4060150] +centroid = (0.62601996699966711, -1.6671424459490929) +description = Porter town, OK +station = ('kmko', 0.0043871158989378708) +zone = ('okz067', 0.0016161986229199646) + +[fips4060250] +centroid = (0.61709871652809811, -1.6626639485417682) +description = Porum town, OK +station = ('kgzl', 0.0026913031642449422) +zone = ('okz074', 0.0031181794303859773) + +[fips4060350] +centroid = (0.61161162825263071, -1.6516959504563853) +description = Poteau city, OK +station = ('krkr', 0.0004178456574497417) +zone = ('okz076', 0.0026746867264757501) + +[fips4060500] +centroid = (0.61984682470182573, -1.687940068568538) +description = Prague city, OK +station = ('kcqb', 0.0039634331751888146) +zone = ('okz026', 0.0040701473167332981) + +[fips4060750] +centroid = (0.62803728836229222, -1.653400439003883) +description = Proctor CDP, OK +station = ('ktqh', 0.0039550424977146947) +zone = ('okz069', 0.0020356491979533391) + +[fips4060850] +centroid = (0.63267431402557583, -1.6801709622960879) +description = Prue town, OK +station = ('krvs', 0.0052991398793592742) +zone = ('okz060', 0.0051003614512490896) + +[fips4061000] +centroid = (0.63357134344793087, -1.663481146604137) +description = Pryor Creek city, OK +station = ('kgcm', 0.0023838014967123007) +zone = ('okz062', 0.0011190196253235494) + +[fips4061020] +centroid = (0.63287539340869803, -1.6603336896442604) +description = Pump Back CDP, OK +station = ('ktqh', 0.0060628102186669683) +zone = ('okz062', 0.0015860773881313964) + +[fips4061150] +centroid = (0.61129593309752994, -1.6994344754096147) +description = Purcell city, OK +station = ('koun', 0.0035381853523285306) +zone = ('okz028', 0.0010825224339162819) + +[fips4061250] +centroid = (0.62580338909278721, -1.7273164243694894) +description = Putnam town, OK +station = ('kclk', 0.005586414195284781) +zone = ('okz015', 0.002369117883612095) + +[fips4061400] +centroid = (0.64493851578653727, -1.6543507533283015) +description = Quapaw town, OK +station = ('kjln', 0.0052847554189736079) +zone = ('okz058', 0.0020632945767984959) + +[fips4061550] +centroid = (0.613044944994246, -1.6644749196269302) +description = Quinton town, OK +station = ('kgzl', 0.0046765936724121005) +zone = ('okz074', 0.0039801440203174124) + +[fips4061650] +centroid = (0.63710690927357339, -1.6883885483731302) +description = Ralston town, OK +station = ('kpnc', 0.006470468797280006) +zone = ('okz059', 0.0033014126412365644) + +[fips4061700] +centroid = (0.63760675411805201, -1.6742214141287195) +description = Ramona town, OK +station = ('kbvo', 0.004285776149069831) +zone = ('okz055', 0.0032084328513904605) + +[fips4061850] +centroid = (0.59650723474660639, -1.7185196158735876) +description = Randlett town, OK +station = ('ksps', 0.0034261069403214253) +zone = ('okz044', 0.0023738125343127602) + +[fips4061900] +centroid = (0.60130821663982237, -1.7019988178663998) +description = Ratliff City town, OK +station = ('kpvj', 0.0061833993994067334) +zone = ('okz039', 0.0048414301036667721) + +[fips4061950] +centroid = (0.59683348914368184, -1.6651234141638009) +description = Rattan town, OK +station = ('khhw', 0.003461541943543828) +zone = ('okz053', 0.003647239004983315) + +[fips4062000] +centroid = (0.59761007339435668, -1.6887302663873782) +description = Ravia town, OK +station = ('kadm', 0.0039377499639282713) +zone = ('okz047', 0.0019223362688724137) + +[fips4062200] +centroid = (0.62634821107208971, -1.6683111882293986) +description = Redbird town, OK +station = ('kmko', 0.0051844279099837179) +zone = ('okz067', 0.0015901450034276924) + +[fips4062275] +centroid = (0.62067849154369359, -1.6585600860583838) +description = Redbird Smith CDP, OK +station = ('kjsv', 0.0038710587291434927) +zone = ('okz072', 0.0040580025306851961) + +[fips4062550] +centroid = (0.61000561118153052, -1.6594781990581029) +description = Red Oak town, OK +station = ('kgzl', 0.0057528823465839854) +zone = ('okz075', 0.0027511140508023686) + +[fips4062650] +centroid = (0.63634837172736414, -1.6961036890651084) +description = Red Rock town, OK +station = ('kpnc', 0.004897877457845411) +zone = ('okz013', 0.0014385953585071083) + +[fips4062875] +centroid = (0.61892001996243184, -1.6493274339416739) +description = Remy CDP, OK +station = ('kfsm', 0.0029284426017844338) +zone = ('arz019', 0.0042683362069053515) + +[fips4062900] +centroid = (0.64446001631881045, -1.7044370602847283) +description = Renfrow town, OK +station = ('kbkn', 0.0052638043484986904) +zone = ('okz007', 0.0028789518417919263) + +[fips4062950] +centroid = (0.62016887285540379, -1.6665267112422821) +description = Rentiesville town, OK +station = ('kmko', 0.002642693124664551) +zone = ('okz070', 0.0020845993450615999) + +[fips4063100] +centroid = (0.62221382278008808, -1.7439975832283503) +description = Reydon town, OK +station = ('khhf', 0.0080306806696874965) +zone = ('okz014', 0.0033004138425141061) + +[fips4063350] +centroid = (0.59652582250314024, -1.7033015316200883) +description = Ringling town, OK +station = ('kduc', 0.0073610596986755797) +zone = ('okz045', 0.0037125663355089445) + +[fips4063450] +centroid = (0.63501073393534302, -1.7145986289892272) +description = Ringwood town, OK +station = ('kend', 0.0046178476543133435) +zone = ('okz011', 0.004355701636384734) + +[fips4063500] +centroid = (0.62861202528497395, -1.6913048015669951) +description = Ripley town, OK +station = ('kcuh', 0.002199704545091738) +zone = ('okz020', 0.0014561247536478447) + +[fips4063537] +centroid = (0.62196237319475312, -1.6622146135258422) +description = River Bottom CDP, OK +station = ('kmko', 0.0018433312999487027) +zone = ('okz070', 0.0020369555438768273) + +[fips4063600] +centroid = (0.61409310247653115, -1.6490312515676104) +description = Rock Island town, OK +station = ('kfsm', 0.003071508418284278) +zone = ('arz029', 0.0029848661346267721) + +[fips4063700] +centroid = (0.61358973206696343, -1.7289119345584927) +description = Rocky town, OK +station = ('khbr', 0.0030183430181310723) +zone = ('okz022', 0.0025314346735908462) + +[fips4063715] +centroid = (0.63137198424432273, -1.6565162531444209) +description = Rocky Ford CDP, OK +station = ('ktqh', 0.0044908259973692024) +zone = ('okz063', 0.0043486485487093047) + +[fips4063720] +centroid = (0.62466145506979232, -1.6540707152498189) +description = Rocky Mountain CDP, OK +station = ('ktqh', 0.0040884382409719618) +zone = ('okz069', 0.0022795357907346146) + +[fips4063750] +centroid = (0.6043889322091025, -1.6902024516114353) +description = Roff town, OK +station = ('kadh', 0.0039162210161064323) +zone = ('okz042', 0.0028421193780712537) + +[fips4063800] +centroid = (0.61814680419721324, -1.6495064349097583) +description = Roland town, OK +station = ('kfsm', 0.0025078520547293466) +zone = ('okz072', 0.0037421971171189995) + +[fips4063900] +centroid = (0.60820683994784019, -1.7282714685361806) +description = Roosevelt town, OK +station = ('khbr', 0.0023996234694147922) +zone = ('okz035', 0.0013391631485284044) + +[fips4063950] +centroid = (0.63202440577201069, -1.6587291910096096) +description = Rose CDP, OK +station = ('ktqh', 0.0049698405435511621) +zone = ('okz062', 0.0031296711381212151) + +[fips4064000] +centroid = (0.60944933984233496, -1.696199472734458) +description = Rosedale town, OK +station = ('kpvj', 0.0036673778676159906) +zone = ('okz040', 0.0041434502417392743) + +[fips4064050] +centroid = (0.64250475886438629, -1.7441549246604178) +description = Rosston town, OK +station = ('kwwr', 0.0087372215139581329) +zone = ('okz004', 0.0037330511601009557) + +[fips4064300] +centroid = (0.60700874122951609, -1.7096651067926147) +description = Rush Springs town, OK +station = ('kduc', 0.0053794259426576873) +zone = ('okz027', 0.0042808881269872272) + +[fips4064600] +centroid = (0.59378254889144055, -1.7096217877205804) +description = Ryan town, OK +station = ('kduc', 0.0078474483160229612) +zone = ('okz045', 0.0023208118400176504) + +[fips4064850] +centroid = (0.61228258517697487, -1.6905200142688359) +description = St. Louis town, OK +station = ('ksnl', 0.0049609875075519111) +zone = ('okz030', 0.0025308293514869225) + +[fips4064875] +centroid = (0.6242165008302889, -1.6506425569863443) +description = Salem CDP, OK +station = ('kjsv', 0.0065587725715441272) +zone = ('okz069', 0.0023909153128501039) + +[fips4064950] +centroid = (0.63337721047523154, -1.6607256556876733) +description = Salina town, OK +station = ('kgcm', 0.0046029050852136278) +zone = ('okz062', 0.0011214379298519681) + +[fips4065000] +centroid = (0.6189312773361072, -1.6546637432230618) +description = Sallisaw city, OK +station = ('kjsv', 0.00042199262849167813) +zone = ('okz072', 0.000920234565113521) + +[fips4065062] +centroid = (0.63177985023722127, -1.661845057510025) +description = Sams Corner CDP, OK +station = ('kgcm', 0.0040645318616071395) +zone = ('okz062', 0.0018170970202343974) + +[fips4065240] +centroid = (0.62193249315795907, -1.6615746187424283) +description = Sand Hill CDP, OK +station = ('kmko', 0.0023631019266857883) +zone = ('okz070', 0.0025473703225646709) + +[fips4065300] +centroid = (0.63070055608108044, -1.6778197245409712) +description = Sand Springs city, OK +station = ('krvs', 0.0025833361922328857) +zone = ('okz060', 0.0026986900345118362) + +[fips4065400] +centroid = (0.62835413543469931, -1.677677288220716) +description = Sapulpa city, OK +station = ('krvs', 0.002152551532317545) +zone = ('okz060', 0.0033069003065729222) + +[fips4065500] +centroid = (0.60993831128557374, -1.6846845931812555) +description = Sasakwa town, OK +station = ('kadh', 0.003248930041378112) +zone = ('okz031', 0.0040606607557621133) + +[fips4065600] +centroid = (0.60802192231359142, -1.6726108242949791) +description = Savanna town, OK +station = ('kmlc', 0.0010809364588882531) +zone = ('okz073', 0.001944637965713361) + +[fips4065650] +centroid = (0.59373465705676576, -1.6646682672014659) +description = Sawyer town, OK +station = ('khhw', 0.0023811356950218607) +zone = ('okz053', 0.00251560770202525) + +[fips4065700] +centroid = (0.6161905519051154, -1.7389403171877715) +description = Sayre city, OK +station = ('kcsm', 0.0062285246403074711) +zone = ('okz021', 0.00093423105725251793) + +[fips4065900] +centroid = (0.61978238714584211, -1.6747584344862658) +description = Schulter town, OK +station = ('kokm', 0.0027449570954980202) +zone = ('okz066', 0.0023724210791655361) + +[fips4066050] +centroid = (0.62778250519808609, -1.6561884628576038) +description = Scraper CDP, OK +station = ('ktqh', 0.0017303159169749507) +zone = ('okz068', 0.0018674053215217471) + +[fips4066250] +centroid = (0.63096354229277096, -1.7265724952291195) +description = Seiling city, OK +station = ('kjwg', 0.0087058217560846037) +zone = ('okz015', 0.0030884333819344773) + +[fips4066350] +centroid = (0.61495100161705651, -1.6868898690510277) +description = Seminole city, OK +station = ('ksnl', 0.0046705720911310198) +zone = ('okz031', 0.0012710843994812194) + +[fips4066400] +centroid = (0.61360695846668067, -1.7309036868475758) +description = Sentinel town, OK +station = ('kcsm', 0.0033880879436729424) +zone = ('okz022', 0.0034765321254421975) + +[fips4066450] +centroid = (0.63494622656618938, -1.6684794030627059) +description = Sequoyah CDP, OK +station = ('kgcm', 0.0022196616369288477) +zone = ('okz061', 0.0001774849732694036) + +[fips4066510] +centroid = (0.6274204191914674, -1.6597250758807975) +description = Shady Grove CDP, OK +station = ('ktqh', 0.0013281169234449991) +zone = ('okz068', 0.0015359525053058811) + +[fips4066520] +centroid = (0.61844433047480074, -1.6651805736968039) +description = Shady Grove CDP, OK +station = ('kmko', 0.0038106304010049421) +zone = ('okz070', 0.0031994497086570103) + +[fips4066540] +centroid = (0.63162976937484228, -1.6805413909765312) +description = Shady Grove town, OK +station = ('krvs', 0.0049384234434545725) +zone = ('okz064', 0.0051444577505448934) + +[fips4066550] +centroid = (0.61309459961146529, -1.6522800772504427) +description = Shady Point town, OK +station = ('krkr', 0.0019705755016136872) +zone = ('okz076', 0.0040040109282807558) + +[fips4066600] +centroid = (0.62675932337739693, -1.6855987268302799) +description = Shamrock town, OK +station = ('kcuh', 0.0028400613023867012) +zone = ('okz064', 0.0029266726834904408) + +[fips4066650] +centroid = (0.63312677318086286, -1.7337775110873248) +description = Sharon town, OK +station = ('kwwr', 0.003811548822325578) +zone = ('okz010', 0.0027673145314646127) + +[fips4066750] +centroid = (0.63294503204585273, -1.7431889547326089) +description = Shattuck town, OK +station = ('kgag', 0.0016725189561665012) +zone = ('okz009', 0.0019113374269978441) + +[fips4066800] +centroid = (0.61721654370590029, -1.6922791490752134) +description = Shawnee city, OK +station = ('ksnl', 0.00027728978352924442) +zone = ('okz030', 0.00274742572429013) + +[fips4067200] +centroid = (0.64194536338582953, -1.6870288496193642) +description = Shidler city, OK +station = ('kpnc', 0.0062131342604632286) +zone = ('okz054', 0.0045120749224159462) + +[fips4067400] +centroid = (0.62078216410126208, -1.6492553867501516) +description = Short CDP, OK +station = ('kfsm', 0.0044890620525752049) +zone = ('arz019', 0.0036006307133794302) + +[fips4067550] +centroid = (0.59403775093466715, -1.6838006711815829) +description = Silo town, OK +station = ('kdua', 0.0020046399264214772) +zone = ('okz052', 0.0033610565593191963) + +[fips4067625] +centroid = (0.61782404045864192, -1.6609374513924027) +description = Simms CDP, OK +station = ('kgzl', 0.0022674600424874747) +zone = ('okz074', 0.0031116666770285061) + +[fips4067800] +centroid = (0.6349582867913206, -1.6878016115989771) +description = Skedee town, OK +station = ('kswo', 0.0065132489388143979) +zone = ('okz059', 0.0011106989804076045) + +[fips4067850] +centroid = (0.63476795863639068, -1.6758296128613848) +description = Skiatook town, OK +station = ('ktul', 0.0035131066674287063) +zone = ('okz060', 0.004467424733525076) + +[fips4067950] +centroid = (0.61251686072247014, -1.6979053226387724) +description = Slaughterville town, OK +station = ('koun', 0.0031981883848067093) +zone = ('okz029', 0.0020041483991173922) + +[fips4068000] +centroid = (0.62444112470502056, -1.6802089581139039) +description = Slick town, OK +station = ('kokm', 0.0049260008710051064) +zone = ('okz064', 0.0026138740822541362) + +[fips4068200] +centroid = (0.6187330079330805, -1.7009456338358691) +description = Smith Village town, OK +station = ('ktik', 0.0012051246125135068) +zone = ('okz025', 0.0018948347098236644) + +[fips4068250] +centroid = (0.60161167703686669, -1.6518833115515872) +description = Smithville town, OK +station = ('kmez', 0.0065123526678561253) +zone = ('arz040', 0.0060181900212858399) + +[fips4068275] +centroid = (0.63143495572373476, -1.6596984072498271) +description = Snake Creek CDP, OK +station = ('ktqh', 0.0045359541861653002) +zone = ('okz062', 0.0028906832729866348) + +[fips4068400] +centroid = (0.60484826796164248, -1.7270609256202898) +description = Snyder city, OK +station = ('kfdr', 0.0053451515465947801) +zone = ('okz035', 0.0045731478156010282) + +[fips4068500] +centroid = (0.59397448274928244, -1.670215359896617) +description = Soper town, OK +station = ('khhw', 0.0022308867375041208) +zone = ('okz053', 0.0020880377889885217) + +[fips4068537] +centroid = (0.62169589632455868, -1.6605639858390613) +description = Sour John CDP, OK +station = ('kmko', 0.0032097674312326187) +zone = ('okz070', 0.0033505814819554452) + +[fips4068600] +centroid = (0.64565631734800488, -1.6689174981582489) +description = South Coffeyville town, OK +station = ('kcfv', 0.0017485661284523872) +zone = ('okz056', 0.0034018942907925341) + +[fips4068950] +centroid = (0.62152771639783644, -1.6898018810948103) +description = Sparks town, OK +station = ('kcqb', 0.0019719245676479251) +zone = ('okz026', 0.0018345855370150313) + +[fips4069000] +centroid = (0.61109525514013574, -1.6832056186264079) +description = Spaulding town, OK +station = ('kadh', 0.0049178904985573459) +zone = ('okz032', 0.002789369644367456) + +[fips4069050] +centroid = (0.63516905275179147, -1.6589394159180124) +description = Spavinaw town, OK +station = ('kgmj', 0.0057362924276959165) +zone = ('okz062', 0.0029928218797993403) + +[fips4069200] +centroid = (0.61978013567110712, -1.6994539009241894) +description = Spencer city, OK +station = ('ktik', 0.0016512305838873693) +zone = ('okz025', 0.00087266197443429557) + +[fips4069300] +centroid = (0.63351475987358119, -1.6753520733247462) +description = Sperry town, OK +station = ('ktul', 0.0022778566536137599) +zone = ('okz060', 0.0031592400053194031) + +[fips4069350] +centroid = (0.61506333100771482, -1.6514841722049485) +description = Spiro town, OK +station = ('krkr', 0.0038200137761092386) +zone = ('okz072', 0.0048261469753538809) + +[fips4069400] +centroid = (0.63260493718780908, -1.6624525542627666) +description = Sportsmen Acres town, OK +station = ('kgcm', 0.0033224814000898779) +zone = ('okz062', 0.0010229840564630987) + +[fips4069500] +centroid = (0.59857148801281768, -1.6950192636409671) +description = Springer town, OK +station = ('kadm', 0.0014190151255856506) +zone = ('okz046', 0.0025504309554871089) + +[fips4070037] +centroid = (0.62810985915259021, -1.6573418811470768) +description = Steely Hollow CDP, OK +station = ('ktqh', 0.0012180676947940131) +zone = ('okz068', 0.001535006071759435) + +[fips4070150] +centroid = (0.60649873856879088, -1.7134404459508963) +description = Sterling town, OK +station = ('kfsi', 0.0041787746738045682) +zone = ('okz038', 0.0045522805456519591) + +[fips4070200] +centroid = (0.61729801567538345, -1.6702939171662492) +description = Stidham town, OK +station = ('kokm', 0.0063019827255272132) +zone = ('okz071', 0.00049197849364957652) + +[fips4070250] +centroid = (0.61533694627455005, -1.6601434487557931) +description = Stigler city, OK +station = ('kgzl', 0.00049735282663628227) +zone = ('okz074', 0.00054947184645268751) + +[fips4070300] +centroid = (0.63071052191110932, -1.6942333593320866) +description = Stillwater city, OK +station = ('kswo', 0.00053928287865145203) +zone = ('okz020', 0.0017168596237208591) + +[fips4070350] +centroid = (0.62509359859258606, -1.6516306402357759) +description = Stilwell city, OK +station = ('ktqh', 0.0056357001439337933) +zone = ('okz069', 0.0012590085520398839) + +[fips4070500] +centroid = (0.60478309736737301, -1.6846901607815694) +description = Stonewall town, OK +station = ('kadh', 0.0033904184214276264) +zone = ('okz042', 0.0026415142503709945) + +[fips4070512] +centroid = (0.62075532093736641, -1.65242855240991) +description = Stoney Point CDP, OK +station = ('kjsv', 0.0028675197300123754) +zone = ('okz072', 0.0016642456540207704) + +[fips4070750] +centroid = (0.63551274298809413, -1.6604106935708585) +description = Strang town, OK +station = ('kgcm', 0.005269549754286635) +zone = ('okz062', 0.0023553365265038149) + +[fips4070800] +centroid = (0.60729279356527821, -1.6922799170200844) +description = Stratford town, OK +station = ('kpvj', 0.0040454231320250344) +zone = ('okz042', 0.004128946531666856) + +[fips4070850] +centroid = (0.60157551381476526, -1.6764457315406311) +description = Stringtown town, OK +station = ('kaqr', 0.0018246365600141374) +zone = ('okz048', 0.0016563066107077339) + +[fips4070950] +centroid = (0.62255770500260854, -1.738353031347768) +description = Strong City town, OK +station = ('kcsm', 0.0079700170713553342) +zone = ('okz014', 0.0013901056078608352) + +[fips4071000] +centroid = (0.62428463848428672, -1.6868619437829959) +description = Stroud city, OK +station = ('kcqb', 0.0025356630027530418) +zone = ('okz026', 0.0034664245046183381) + +[fips4071050] +centroid = (0.60913900284803779, -1.6772519165754198) +description = Stuart town, OK +station = ('kmlc', 0.0045361216328186653) +zone = ('okz032', 0.0033552252131067795) + +[fips4071250] +centroid = (0.59485156305828701, -1.7100529713122856) +description = Sugden town, OK +station = ('kduc', 0.0067834057485584688) +zone = ('okz045', 0.0021265113622743921) + +[fips4071350] +centroid = (0.60238168139626147, -1.6924400335256624) +description = Sulphur city, OK +station = ('kadm', 0.0037495539341696128) +zone = ('okz041', 0.0015169340191411025) + +[fips4071450] +centroid = (0.62252114035477912, -1.6654242740202596) +description = Summit town, OK +station = ('kmko', 0.00084128068248499042) +zone = ('okz070', 0.0010847344146591143) + +[fips4071900] +centroid = (0.61810879092610482, -1.7439382071271976) +description = Sweetwater town, OK +station = ('khhf', 0.010859184211189702) +zone = ('okz021', 0.0042464301003312666) + +[fips4071950] +centroid = (0.59371341639976905, -1.6615846892922124) +description = Swink CDP, OK +station = ('khhw', 0.0049303396202734764) +zone = ('okz053', 0.005070037264660719) + +[fips4071965] +centroid = (0.63519570392946945, -1.6531060368656565) +description = Sycamore CDP, OK +station = ('kgmj', 0.0037005408158735909) +zone = ('okz063', 0.0012428072009093448) + +[fips4072050] +centroid = (0.62414691455301186, -1.6675884997460253) +description = Taft town, OK +station = ('kmko', 0.0031931595442865157) +zone = ('okz070', 0.0034579181712847441) + +[fips4072075] +centroid = (0.63423036232019137, -1.6563810773938539) +description = Tagg Flats CDP, OK +station = ('kgmj', 0.0051969717259351947) +zone = ('okz063', 0.0018662068882920218) + +[fips4072100] +centroid = (0.62677923758416221, -1.6576631439024914) +description = Tahlequah city, OK +station = ('ktqh', 0.00048811959973645708) +zone = ('okz068', 0.00033211688565423829) + +[fips4072200] +centroid = (0.6375590717228875, -1.6702990309809576) +description = Talala town, OK +station = ('kgcm', 0.0051468190305821501) +zone = ('okz061', 0.0030711335372006891) + +[fips4072250] +centroid = (0.60655003379550709, -1.6587744648504061) +description = Talihina town, OK +station = ('krkr', 0.007620871752465389) +zone = ('okz075', 0.003695514092121609) + +[fips4072350] +centroid = (0.62902345174954655, -1.7272536099697102) +description = Taloga town, OK +station = ('kclk', 0.008788436695488443) +zone = ('okz015', 0.0011070386960534014) + +[fips4072400] +centroid = (0.61781492983994646, -1.6583104341621786) +description = Tamaha town, OK +station = ('kgzl', 0.0023974218480788544) +zone = ('okz074', 0.0033593513072156206) + +[fips4072500] +centroid = (0.60174228002479335, -1.7011226276753135) +description = Tatums town, OK +station = ('kpvj', 0.005378152558919087) +zone = ('okz040', 0.0045682427628768903) + +[fips4072650] +centroid = (0.61547763726555327, -1.6918083639627806) +description = Tecumseh city, OK +station = ('ksnl', 0.0016277016351092805) +zone = ('okz030', 0.001025068800526068) + +[fips4072750] +centroid = (0.59816126582542883, -1.7145166508742609) +description = Temple town, OK +station = ('kduc', 0.0052606031588313205) +zone = ('okz044', 0.0020083558038495185) + +[fips4072775] +centroid = (0.6247448469014526, -1.6556718628523062) +description = Tenkiller CDP, OK +station = ('ktqh', 0.0030729475919717406) +zone = ('okz068', 0.0027416397384116185) + +[fips4072800] +centroid = (0.63046596637631991, -1.6577197449301335) +description = Teresita CDP, OK +station = ('ktqh', 0.0034055905319009014) +zone = ('okz068', 0.0037874423795798994) + +[fips4072850] +centroid = (0.63156105576219124, -1.68407388502269) +description = Terlton town, OK +station = ('kcuh', 0.0057317724631607498) +zone = ('okz059', 0.0037266620100345903) + +[fips4072900] +centroid = (0.59160792100333315, -1.7093446294353636) +description = Terral town, OK +station = ('k0f2', 0.0058237126238110722) +zone = ('okz045', 0.0040258221786612638) + +[fips4072950] +centroid = (0.6171120857501684, -1.6669945816548641) +description = Texanna CDP, OK +station = ('kmko', 0.0054988194768762193) +zone = ('okz071', 0.0022238466864214247) + +[fips4073100] +centroid = (0.63713951202400065, -1.7765250401516735) +description = Texhoma town, OK +station = ('kguy', 0.0050853966860416322) +zone = ('txz002', 0.0042446300816354945) + +[fips4073150] +centroid = (0.61474391830130737, -1.7452032741289207) +description = Texola town, OK +station = ('kaxs', 0.013085206479488021) +zone = ('txz015', 0.0050321144135321077) + +[fips4073200] +centroid = (0.58977511584922893, -1.6953977906491395) +description = Thackerville town, OK +station = ('kgle', 0.0025874396482420984) +zone = ('txz092', 0.0028645125612969161) + +[fips4073250] +centroid = (0.62081843204311848, -1.7026995675610757) +description = The Village city, OK +station = ('kpwa', 0.0014632180312143897) +zone = ('okz025', 0.0021589928262486647) + +[fips4073450] +centroid = (0.62391354657872777, -1.7235025134347388) +description = Thomas city, OK +station = ('koja', 0.0037231853141670465) +zone = ('okz016', 0.0040456920205023689) + +[fips4073600] +centroid = (0.63265188654468774, -1.6674208957779564) +description = Tiawah CDP, OK +station = ('kgcm', 0.0011314704851559992) +zone = ('okz061', 0.002356463132509117) + +[fips4073850] +centroid = (0.60217515658587295, -1.7302907621208605) +description = Tipton town, OK +station = ('klts', 0.003172322349614455) +zone = ('okz037', 0.0038203871980517596) + +[fips4073900] +centroid = (0.59758164198084163, -1.687401913746978) +description = Tishomingo city, OK +station = ('kadm', 0.0050080622837673965) +zone = ('okz047', 0.0013858844006722835) + +[fips4073950] +centroid = (0.62641037970004576, -1.6535375346166272) +description = Titanic CDP, OK +station = ('ktqh', 0.003787221050192047) +zone = ('okz069', 0.0011658096633173276) + +[fips4074150] +centroid = (0.64039797192430392, -1.698217160616226) +description = Tonkawa city, OK +station = ('kbkn', 0.0012236469772695128) +zone = ('okz008', 0.0031039483912708712) + +[fips4074400] +centroid = (0.61267507481916339, -1.6948141350939803) +description = Tribbey town, OK +station = ('ksnl', 0.0049974174665934077) +zone = ('okz030', 0.0028779817595441862) + +[fips4074550] +centroid = (0.62617298001518951, -1.692438846701771) +description = Tryon town, OK +station = ('kcuh', 0.0030575611220538331) +zone = ('okz026', 0.0032873967583870855) + +[fips4074650] +centroid = (0.6255579434400792, -1.6657193742901868) +description = Tullahassee town, OK +station = ('kmko', 0.0035000600799013986) +zone = ('okz067', 0.0023831657010820692) + +[fips4075000] +centroid = (0.63055166204259283, -1.6738111744880382) +description = Tulsa city, OK +station = ('ktul', 0.0012856587971882638) +zone = ('okz060', 0.0005651892507681427) + +[fips4075050] +centroid = (0.60392657703695674, -1.682853358823478) +description = Tupelo city, OK +station = ('kadh', 0.0050398061505380681) +zone = ('okz043', 0.0017773881875187) + +[fips4075150] +centroid = (0.63262673635016653, -1.6749273299979812) +description = Turley CDP, OK +station = ('ktul', 0.001425447626789991) +zone = ('okz060', 0.0022221717740822633) + +[fips4075200] +centroid = (0.64351088881828344, -1.7607318175497646) +description = Turpin CDP, OK +station = ('klbl', 0.0033462179419625291) +zone = ('ksz086', 0.0056514017088736979) + +[fips4075250] +centroid = (0.59896078370247507, -1.6784319860425707) +description = Tushka town, OK +station = ('kaqr', 0.0014298782204924946) +zone = ('okz048', 0.0021018193829450229) + +[fips4075300] +centroid = (0.60440275521677844, -1.6629951945805042) +description = Tuskahoma CDP, OK +station = ('kmlc', 0.0084347572545177048) +zone = ('okz049', 0.0039603712150781366) + +[fips4075450] +centroid = (0.61621879133241264, -1.7061588624984059) +description = Tuttle city, OK +station = ('kokc', 0.002588566896893092) +zone = ('okz024', 0.0052284288267217104) + +[fips4075600] +centroid = (0.63168040137644266, -1.6549515305634228) +description = Twin Oaks CDP, OK +station = ('ktqh', 0.0052756720170162429) +zone = ('okz063', 0.0037720808180691577) + +[fips4075750] +centroid = (0.6449956229596624, -1.7639689495266084) +description = Tyrone town, OK +station = ('klbl', 0.0021708816736968647) +zone = ('ksz086', 0.0051308482395153758) + +[fips4075950] +centroid = (0.61783822998546067, -1.7087943620287949) +description = Union City town, OK +station = ('krce', 0.0018689424842735507) +zone = ('okz024', 0.0027180543971255565) + +[fips4076500] +centroid = (0.61789315549702095, -1.7013717908793284) +description = Valley Brook town, OK +station = ('ktik', 0.0014165444109438543) +zone = ('okz025', 0.0028036181398186414) + +[fips4076600] +centroid = (0.63318630636164841, -1.6708956019725816) +description = Valley Park town, OK +station = ('ktul', 0.0024981886481472552) +zone = ('okz061', 0.0024502551868523632) + +[fips4076650] +centroid = (0.59347971681292699, -1.6596148059786566) +description = Valliant town, OK +station = ('k4o4', 0.0037143107760312056) +zone = ('okz077', 0.0049873116350826387) + +[fips4076900] +centroid = (0.60137787273026944, -1.7045558823002043) +description = Velma town, OK +station = ('kduc', 0.0042689031825477054) +zone = ('okz039', 0.0027461460460391565) + +[fips4076950] +centroid = (0.63615903841010768, -1.6734728075059542) +description = Vera town, OK +station = ('ktul', 0.0043498529039139979) +zone = ('okz055', 0.004651830107380097) + +[fips4077000] +centroid = (0.61231995267626005, -1.7119467059105771) +description = Verden town, OK +station = ('kchk', 0.0017452950008870938) +zone = ('okz027', 0.0031260435748811603) + +[fips4077050] +centroid = (0.63274074125690671, -1.6695496913199064) +description = Verdigris town, OK +station = ('kgcm', 0.0026109609360611234) +zone = ('okz061', 0.0021975462191669141) + +[fips4077250] +centroid = (0.619668888384585, -1.6575361362928238) +description = Vian town, OK +station = ('kjsv', 0.0026418112508475797) +zone = ('okz072', 0.0030580115469480479) + +[fips4077300] +centroid = (0.63091390512884438, -1.7331005153237686) +description = Vici town, OK +station = ('kwwr', 0.0059154007066121493) +zone = ('okz010', 0.0048064810368590458) + +[fips4077550] +centroid = (0.63964173821270731, -1.6608727869436164) +description = Vinita city, OK +station = ('kgmj', 0.0059648687350697558) +zone = ('okz057', 0.0020800114990532762) + +[fips4077850] +centroid = (0.62768197423317118, -1.6646879894220137) +description = Wagoner city, OK +station = ('ktqh', 0.0053351161421297914) +zone = ('okz067', 0.0020009331281369909) + +[fips4077900] +centroid = (0.62157107037645609, -1.6679345985366958) +description = Wainwright town, OK +station = ('kmko', 0.0028935796235027471) +zone = ('okz070', 0.0026425348413178233) + +[fips4077950] +centroid = (0.64370720345254773, -1.7090921326524775) +description = Wakita town, OK +station = ('kwdg', 0.0089655983525245217) +zone = ('okz007', 0.0024341134293414486) + +[fips4078150] +centroid = (0.59966725807709731, -1.7166511885494502) +description = Walters city, OK +station = ('klaw', 0.0037353557471072776) +zone = ('okz044', 0.0012104449982550986) + +[fips4078200] +centroid = (0.61021293884337502, -1.6935252792545525) +description = Wanette town, OK +station = ('kpvj', 0.0051763222868806309) +zone = ('okz030', 0.0044255502427541348) + +[fips4078250] +centroid = (0.64428262105363776, -1.6721071920860238) +description = Wann town, OK +station = ('kbvo', 0.0039294179846623761) +zone = ('okz056', 0.0033082567395472493) + +[fips4078300] +centroid = (0.59993094242048861, -1.6829420739093568) +description = Wapanucka town, OK +station = ('kaqr', 0.00401923381067836) +zone = ('okz047', 0.0035312884342783837) + +[fips4078400] +centroid = (0.61941988226020295, -1.663458352604106) +description = Warner town, OK +station = ('kmko', 0.0029070565470428202) +zone = ('okz070', 0.002414104110767775) + +[fips4078500] +centroid = (0.62004748520592756, -1.7037573592608317) +description = Warr Acres city, OK +station = ('kpwa', 0.00047025735616571933) +zone = ('okz025', 0.0030279314524297666) + +[fips4078650] +centroid = (0.62291438048854597, -1.6930566583503919) +description = Warwick town, OK +station = ('kcqb', 0.0026825333463697206) +zone = ('okz026', 0.0017727916260610345) + +[fips4078700] +centroid = (0.61181593649486921, -1.7015579302440533) +description = Washington town, OK +station = ('koun', 0.0028938862919914788) +zone = ('okz028', 0.0010575267396711174) + +[fips4078950] +centroid = (0.62568449726414133, -1.7174509507725915) +description = Watonga city, OK +station = ('kjwg', 0.00037467984370687357) +zone = ('okz017', 0.00063064819068431755) + +[fips4079100] +centroid = (0.63019046615389263, -1.6505829190858035) +description = Watts town, OK +station = ('kslg', 0.0020400382101993702) +zone = ('okz069', 0.0040883849485858154) + +[fips4079150] +centroid = (0.62601977501344941, -1.6538725156599625) +description = Wauhillau CDP, OK +station = ('ktqh', 0.0036153506598989873) +zone = ('okz069', 0.0014570929994586329) + +[fips4079200] +centroid = (0.63331195261449946, -1.7087249851910282) +description = Waukomis town, OK +station = ('kend', 0.00084732529886096615) +zone = ('okz012', 0.0023392893430419447) + +[fips4079250] +centroid = (0.59661893581873404, -1.7108815663746697) +description = Waurika city, OK +station = ('kduc', 0.0051008946425611821) +zone = ('okz045', 0.0030296164585866302) + +[fips4079300] +centroid = (0.60941846496786711, -1.6984946156074157) +description = Wayne town, OK +station = ('kpvj', 0.0038355121742113512) +zone = ('okz028', 0.0024200733417193642) + +[fips4079350] +centroid = (0.63852249346998835, -1.7257559254852812) +description = Waynoka city, OK +station = ('kavk', 0.0043969971212012094) +zone = ('okz005', 0.0031865184172643174) + +[fips4079450] +centroid = (0.62026711743899854, -1.7224229574792103) +description = Weatherford city, OK +station = ('koja', 0.00029273600847252583) +zone = ('okz016', 0.0047867304719463521) + +[fips4079600] +centroid = (0.64239820651355195, -1.6879605238273712) +description = Webb City town, OK +station = ('kpnc', 0.0055598831097080073) +zone = ('okz054', 0.0053825355697797199) + +[fips4079650] +centroid = (0.61974864993140122, -1.6608795937276992) +description = Webbers Falls town, OK +station = ('kmko', 0.0038142208813536616) +zone = ('okz070', 0.0036160724599303244) + +[fips4079750] +centroid = (0.64357036963919145, -1.6597155812896665) +description = Welch town, OK +station = ('kgmj', 0.0068395192181414611) +zone = ('okz057', 0.0025220510133944782) + +[fips4079800] +centroid = (0.61683939550783684, -1.6778844762562202) +description = Weleetka town, OK +station = ('kokm', 0.0062763002016065156) +zone = ('okz065', 0.003421785291950715) + +[fips4079850] +centroid = (0.62571402823508504, -1.6553155015256338) +description = Welling CDP, OK +station = ('ktqh', 0.0026638779695158923) +zone = ('okz069', 0.0026644058660688827) + +[fips4079900] +centroid = (0.62283997710253347, -1.6940635038892824) +description = Wellston town, OK +station = ('kcqb', 0.0034983340977097796) +zone = ('okz026', 0.0025935908145728465) + +[fips4080230] +centroid = (0.62676517023039113, -1.6519643297354645) +description = West Peavine CDP, OK +station = ('ktqh', 0.0050113143467612363) +zone = ('okz069', 0.00048668717524260691) + +[fips4080250] +centroid = (0.63169317718656726, -1.6814002325948525) +description = Westport town, OK +station = ('krvs', 0.0055803151733136089) +zone = ('okz064', 0.0050951764203110688) + +[fips4080350] +centroid = (0.63138338124433824, -1.6509790564661289) +description = West Siloam Springs town, OK +station = ('kslg', 0.0016177869429493475) +zone = ('okz063', 0.0050088715435135031) + +[fips4080450] +centroid = (0.62815644199032594, -1.6506392059541803) +description = Westville town, OK +station = ('kslg', 0.0038731680020134248) +zone = ('okz069', 0.002210373315251808) + +[fips4080500] +centroid = (0.61508691040590924, -1.6796484107180409) +description = Wetumka city, OK +station = ('kokm', 0.0084916308938330198) +zone = ('okz032', 0.0033823717519070959) + +[fips4080550] +centroid = (0.61338074634232975, -1.6841848879631169) +description = Wewoka city, OK +station = ('kadh', 0.0064335591724973525) +zone = ('okz031', 0.0017452002731934467) + +[fips4080800] +centroid = (0.61530345340620429, -1.6623358440956857) +description = Whitefield town, OK +station = ('kgzl', 0.0021120237489249171) +zone = ('okz074', 0.001898967243548736) + +[fips4080850] +centroid = (0.6389483014475974, -1.6628695657809456) +description = White Oak CDP, OK +station = ('kgcm', 0.006194787837737626) +zone = ('okz057', 0.0028241815937588397) + +[fips4080900] +centroid = (0.60571128091687609, -1.6558548955309627) +description = Whitesboro CDP, OK +station = ('krkr', 0.0066059839428636753) +zone = ('okz076', 0.0041911948978906408) + +[fips4080912] +centroid = (0.63707467304228904, -1.6533309399930687) +description = White Water CDP, OK +station = ('kgmj', 0.0018130829893210712) +zone = ('okz063', 0.0019329328438889243) + +[fips4080975] +centroid = (0.63347473947383293, -1.6599184409086258) +description = Wickliffe CDP, OK +station = ('kgcm', 0.0052526654834693827) +zone = ('okz062', 0.0017558962665099873) + +[fips4081000] +centroid = (0.60944251560495966, -1.6633673860434921) +description = Wilburton city, OK +station = ('kmlc', 0.0068896194123903506) +zone = ('okz075', 0.0010650873737424254) + +[fips4081300] +centroid = (0.61176303556524125, -1.7367767721404144) +description = Willow town, OK +station = ('kaxs', 0.0066318399701906887) +zone = ('okz034', 0.0021472454550638307) + +[fips4081500] +centroid = (0.59635364577243088, -1.7004201850112635) +description = Wilson city, OK +station = ('k1f0', 0.004412436437788241) +zone = ('okz046', 0.0024927069947177911) + +[fips4081575] +centroid = (0.62466389853074511, -1.6754868476495854) +description = Winchester town, OK +station = ('kokm', 0.0022518839771854741) +zone = ('okz066', 0.0025574744197384147) + +[fips4081750] +centroid = (0.61033715392623944, -1.6531870026896565) +description = Wister town, OK +station = ('krkr', 0.0016837197384750435) +zone = ('okz076', 0.0012399878117693372) + +[fips4081912] +centroid = (0.62525675197106256, -1.6595000505803377) +description = Woodall CDP, OK +station = ('ktqh', 0.0021280496692607557) +zone = ('okz068', 0.0018482789145514045) + +[fips4082000] +centroid = (0.61975994221166142, -1.70431171073785) +description = Woodlawn Park town, OK +station = ('kpwa', 0.0004137229128675597) +zone = ('okz025', 0.0035233748554983186) + +[fips4082150] +centroid = (0.63573324788579122, -1.7349397607428128) +description = Woodward city, OK +station = ('kwwr', 0.0016473370793827602) +zone = ('okz010', 0.0019626295622896385) + +[fips4082200] +centroid = (0.5945520994652298, -1.6581665841252293) +description = Wright City town, OK +station = ('k4o4', 0.0034554760895396464) +zone = ('okz077', 0.0035024880067012448) + +[fips4082250] +centroid = (0.64215162639683021, -1.6532306184676639) +description = Wyandotte town, OK +station = ('kgmj', 0.0032761696681636704) +zone = ('okz058', 0.0014322451236265981) + +[fips4082400] +centroid = (0.60465464113442624, -1.6958063198671538) +description = Wynnewood city, OK +station = ('kpvj', 0.0014583279774510859) +zone = ('okz040', 0.0023550557654098765) + +[fips4082450] +centroid = (0.63784376983047275, -1.6812174966221687) +description = Wynona town, OK +station = ('kbvo', 0.0058056559409309892) +zone = ('okz054', 0.0017696306290180526) + +[fips4082500] +centroid = (0.63032525793202421, -1.6877492517214172) +description = Yale city, OK +station = ('kcuh', 0.0030574152107227348) +zone = ('okz059', 0.0035242940129871867) + +[fips4082650] +centroid = (0.61360411357999989, -1.6814474612044115) +description = Yeager town, OK +station = ('kadh', 0.0077669435196043302) +zone = ('okz032', 0.0022860813397367415) + +[fips4082950] +centroid = (0.61991309485352397, -1.7063415984710897) +description = Yukon city, OK +station = ('krce', 0.0010169881306386073) +zone = ('okz024', 0.0031012846297507582) + +[fips4083030] +centroid = (0.62476832157989193, -1.6590247450651423) +description = Zeb CDP, OK +station = ('ktqh', 0.0024177622884885394) +zone = ('okz068', 0.0020739438999269506) + +[fips4083050] +centroid = (0.63727084805021306, -1.6553650863296829) +description = Zena CDP, OK +station = ('kgmj', 0.002200113299024318) +zone = ('okz063', 0.0019237914687545361) + +[fips4083125] +centroid = (0.6245838402779561, -1.6517106635819796) +description = Zion CDP, OK +station = ('ktqh', 0.0057769870180188459) +zone = ('okz069', 0.0017381645793102683) + +[fips41001] +centroid = (0.78022198807493115, -2.0541117338865678) +description = Baker County, OR +station = ('kbke', 0.0027439872769502156) +zone = ('orz062', 0.00022961126950782042) + +[fips4100190204] +centroid = (0.78116615884038243, -2.0543956116894044) +description = Baker City CCD, OR +station = ('kbke', 0.0018855844576130228) +zone = ('orz062', 0.00093686708584408615) + +[fips4100190969] +centroid = (0.78098134592588886, -2.0480215470880734) +description = Eagle Valley CCD, OR +station = ('kbke', 0.0060578366393466646) +zone = ('orz062', 0.0041728549651979668) + +[fips4100191258] +centroid = (0.78430572691203992, -2.0428700332678869) +description = Halfway CCD, OR +station = ('klgd', 0.013191041525767999) +zone = ('orz050', 0.0096622323455749122) + +[fips4100191326] +centroid = (0.7775126262105978, -2.0626035810022683) +description = Hereford CCD, OR +station = ('kbke', 0.0067022894635389036) +zone = ('orz062', 0.0068526934518272995) + +[fips4100191377] +centroid = (0.77554949732124701, -2.0499518637874869) +description = Huntington CCD, OR +station = ('kbke', 0.0082761363226957815) +zone = ('orz062', 0.0055120190893420034) + +[fips4100193555] +centroid = (0.78318398634849073, -2.0605996637682984) +description = Wingville-Haines CCD, OR +station = ('kbke', 0.0031340407000624423) +zone = ('orz062', 0.0055969859016967317) + +[fips4100275] +centroid = (0.77971900163779895, -2.1505556263854606) +description = Adair Village city, OR +station = ('kcvo', 0.0031545966524616212) +zone = ('orz008', 0.0047532527901728606) + +[fips41003] +centroid = (0.77650785761351715, -2.1541956152602499) +description = Benton County, OR +station = ('kcvo', 0.0017875924217891871) +zone = ('orz004', 0.0039372202349299218) + +[fips4100350] +centroid = (0.79877354647998444, -2.069333657864421) +description = Adams city, OR +station = ('kmeh', 0.0047145207749912914) +zone = ('orz507', 0.0019655610485751463) + +[fips4100390680] +centroid = (0.77814738500625558, -2.1519447339371229) +description = Corvallis CCD, OR +station = ('kcvo', 0.0014861332348289446) +zone = ('orz008', 0.0036560489655286087) + +[fips4100392142] +centroid = (0.77961396772341396, -2.1491260271951522) +description = North Albany CCD, OR +station = ('kcvo', 0.0034668355259441057) +zone = ('orz008', 0.0045465878307095475) + +[fips4100392176] +centroid = (0.7788604043655728, -2.1538205090974114) +description = North Benton CCD, OR +station = ('kcvo', 0.0026596332254040377) +zone = ('orz008', 0.005032046974281416) + +[fips4100393009] +centroid = (0.774636655215869, -2.1525745010911201) +description = Southeast Benton CCD, OR +station = ('kcvo', 0.0021284781046838307) +zone = ('orz008', 0.0024615106788938475) + +[fips4100393077] +centroid = (0.77481679064796727, -2.1560101293637932) +description = Southwest Benton CCD, OR +station = ('kcvo', 0.00359271267735341) +zone = ('orz004', 0.0020486707306933728) + +[fips41005] +centroid = (0.78819929467385164, -2.132707296042621) +description = Clackamas County, OR +station = ('kttd', 0.0073210460781020737) +zone = ('orz011', 0.0049341997591302901) + +[fips4100500] +centroid = (0.76342143124194117, -2.0432723491137641) +description = Adrian city, OR +station = ('kono', 0.0048624014564802916) +zone = ('idz012', 0.004872138683621869) + +[fips4100590272] +centroid = (0.79047537855137739, -2.1389954380848764) +description = Beavercreek CCD, OR +station = ('kuao', 0.0026912535496091978) +zone = ('orz006', 0.0044237452969292518) + +[fips4100590442] +centroid = (0.79006377755387946, -2.1409579910155738) +description = Canby CCD, OR +station = ('kuao', 0.0012509982710110904) +zone = ('orz006', 0.0041020073079835982) + +[fips4100590595] +centroid = (0.78800921086501685, -2.1362971067014156) +description = Colton CCD, OR +station = ('kuao', 0.0048285754667051909) +zone = ('orz010', 0.006255009950768782) + +[fips4100591088] +centroid = (0.78723047985936201, -2.1300710460206536) +description = Estacada CCD, OR +station = ('kttd', 0.0090126325368236702) +zone = ('orz011', 0.0032986674827413468) + +[fips4100591955] +centroid = (0.78580013017747519, -2.1371794579047614) +description = Molalla CCD, OR +station = ('kuao', 0.0055463568155175594) +zone = ('orz010', 0.0039857259138201019) + +[fips4100592023] +centroid = (0.79151976612247821, -2.1287080136880161) +description = Mount Hood CCD, OR +station = ('kczk', 0.0056058323641021658) +zone = ('orz009', 0.0049331590228574619) + +[fips4100592040] +centroid = (0.78939095312723573, -2.1388434024537353) +description = Mulino CCD, OR +station = ('kuao', 0.0027285927289782503) +zone = ('orz006', 0.0053694269225136879) + +[fips4100592261] +centroid = (0.79216157604831416, -2.1397832622559338) +description = Northwest Clackamas CCD, OR +station = ('kuao', 0.0031490596388917378) +zone = ('orz006', 0.0028321860203556243) + +[fips4100592618] +centroid = (0.79145805128012769, -2.1375060962742718) +description = Redland CCD, OR +station = ('kttd', 0.0035993348661339667) +zone = ('orz006', 0.0045440343025249554) + +[fips4100592788] +centroid = (0.79278080141362928, -2.1351096195849437) +description = Sandy CCD, OR +station = ('kttd', 0.0024428425989920744) +zone = ('waz039', 0.0060054802178467577) + +[fips4100593536] +centroid = (0.79054271335391935, -2.1430367130612842) +description = Wilsonville CCD, OR +station = ('kuao', 0.00082002227838787894) +zone = ('orz006', 0.003378484566053345) + +[fips4100593587] +centroid = (0.78821248936299659, -2.1412814179792607) +description = Yoder CCD, OR +station = ('kuao', 0.0018368245670925035) +zone = ('orz007', 0.0048307893139317533) + +[fips41007] +centroid = (0.80327921866376295, -2.1590597955256809) +description = Clatsop County, OR +station = ('kast', 0.0030751292712984015) +zone = ('orz001', 0.0056488649763551382) + +[fips4100790153] +centroid = (0.80519052872762187, -2.1610740276555296) +description = Astoria CCD, OR +station = ('kast', 0.00081031119430048258) +zone = ('waz021', 0.0061407214199547871) + +[fips4100791445] +centroid = (0.80135754134414705, -2.156095982109699) +description = Jewell CCD, OR +station = ('kast', 0.0058908428719348293) +zone = ('orz003', 0.0040491034637717216) + +[fips4100791598] +centroid = (0.80505341566158517, -2.1557131441382742) +description = Knappa-Brownsmead CCD, OR +station = ('kast', 0.004494817374348435) +zone = ('waz020', 0.0066445765975238205) + +[fips4100792839] +centroid = (0.80095396886120829, -2.1622895622130813) +description = Seaside CCD, OR +station = ('kast', 0.0045162181162835963) +zone = ('orz001', 0.0032380345385907114) + +[fips41009] +centroid = (0.80183797812734359, -2.1481700754572497) +description = Columbia County, OR +station = ('kkls', 0.0037570424602018531) +zone = ('orz005', 0.0018010376841815939) + +[fips4100990544] +centroid = (0.80401086068619887, -2.149970749099825) +description = Clatskanie CCD, OR +station = ('kkls', 0.0035505283482763013) +zone = ('orz005', 0.0021571846879241377) + +[fips4100991190] +centroid = (0.80235470030568901, -2.145751328366666) +description = Goble CCD, OR +station = ('kkls', 0.0025847577938933677) +zone = ('orz005', 0.0013754553729425606) + +[fips4100992601] +centroid = (0.80427901307247529, -2.146419388044452) +description = Rainier CCD, OR +station = ('kkls', 0.0011515330464636965) +zone = ('orz005', 0.00092683868609924852) + +[fips4100992703] +centroid = (0.80045923783143802, -2.1452344665619805) +description = St. Helens CCD, OR +station = ('kspb', 0.0017717711646254213) +zone = ('orz005', 0.0032134666230906076) + +[fips4100992805] +centroid = (0.79875785597000892, -2.1446673392748372) +description = Scappoose CCD, OR +station = ('kspb', 0.00016838376586674066) +zone = ('orz005', 0.004946226000716215) + +[fips4100993332] +centroid = (0.8007747235470285, -2.1502480993712592) +description = Vernonia CCD, OR +station = ('kkls', 0.0054916887348644867) +zone = ('orz005', 0.0035015863994331811) + +[fips4101000] +centroid = (0.778886828650448, -2.148443428924697) +description = Albany city, OR +station = ('kcvo', 0.0032080029286833513) +zone = ('orz008', 0.0038554769809867415) + +[fips41011] +centroid = (0.75370635266668762, -2.165823696868737) +description = Coos County, OR +station = ('koth', 0.0045234998746315272) +zone = ('orz021', 0.00081821788837188147) + +[fips4101190221] +centroid = (0.7511496722053187, -2.1713285351426972) +description = Bandon CCD, OR +station = ('koth', 0.0069124379989713141) +zone = ('orz021', 0.0040625644914780582) + +[fips4101190629] +centroid = (0.75604858452286405, -2.1701439801793687) +description = Coos Bay CCD, OR +station = ('koth', 0.0020611910074349359) +zone = ('orz021', 0.0033444673612319569) + +[fips4101190646] +centroid = (0.75377489174641343, -2.1683266910023145) +description = Coquille CCD, OR +station = ('koth', 0.0039928715277102803) +zone = ('orz021', 0.0010163994087576795) + +[fips4101191003] +centroid = (0.7568101414886792, -2.1636136562501065) +description = Eastside CCD, OR +station = ('koth', 0.003727014943377589) +zone = ('orz021', 0.0039824244122256824) + +[fips4101192074] +centroid = (0.7522464371072719, -2.1640579298112019) +description = Myrtle Point CCD, OR +station = ('koth', 0.0064223371518807217) +zone = ('orz021', 0.0025306297046012809) + +[fips4101192159] +centroid = (0.75954746352762958, -2.1668038912299497) +description = North Bayside CCD, OR +station = ('koth', 0.0021971405099322659) +zone = ('orz021', 0.0058977093253847652) + +[fips4101192567] +centroid = (0.74793664322544484, -2.1645789629527998) +description = Powers CCD, OR +station = ('koth', 0.01024995004561054) +zone = ('orz021', 0.0059697268330777594) + +[fips41013] +centroid = (0.77079070003605188, -2.1008804840942186) +description = Crook County, OR +station = ('kbdn', 0.010456401363458313) +zone = ('orz506', 0.0045447469507015172) + +[fips4101390765] +centroid = (0.76883558220796777, -2.0985948532656842) +description = Crooked River CCD, OR +station = ('kbdn', 0.012049583579100312) +zone = ('orz506', 0.003524969969521256) + +[fips4101392550] +centroid = (0.77239348824803578, -2.1120736121998163) +description = Powell Butte CCD, OR +station = ('krdm', 0.0015079382479159732) +zone = ('orz509', 0.0067350458984893101) + +[fips4101392592] +centroid = (0.77434082190765596, -2.1050375093066185) +description = Prineville CCD, OR +station = ('kbdn', 0.0088188242996690633) +zone = ('orz506', 0.0082941611151636334) + +[fips41015] +centroid = (0.74118323131119279, -2.1678980206847323) +description = Curry County, OR +station = ('kbok', 0.0069204860341342163) +zone = ('orz022', 0.0024632927661276667) + +[fips4101590051] +centroid = (0.74378710547553573, -2.1645792422054799) +description = Agness CCD, OR +station = ('kbok', 0.010065355005608944) +zone = ('orz024', 0.0053114732401301924) + +[fips4101590357] +centroid = (0.73805626451673478, -2.1674205858678492) +description = Brookings CCD, OR +station = ('kbok', 0.0039631028327279253) +zone = ('orz022', 0.0017839731449496767) + +[fips4101591207] +centroid = (0.7416433175553111, -2.1713389896649167) +description = Gold Beach CCD, OR +station = ('kbok', 0.0074644009434048364) +zone = ('orz022', 0.0029781258820382314) + +[fips4101591275] +centroid = (0.73430626753919237, -2.1649929550513729) +description = Harbor CCD, OR +station = ('kbok', 0.0031747385296262199) +zone = ('orz022', 0.0057494743697665334) + +[fips4101592533] +centroid = (0.74726266688149456, -2.1713891678809114) +description = Port Orford CCD, OR +station = ('koth', 0.010700632788661294) +zone = ('orz021', 0.0071679338166448668) + +[fips4101650] +centroid = (0.79398596871542371, -2.1445315875656172) +description = Aloha CDP, OR +station = ('khio', 0.0013852024780590447) +zone = ('orz006', 0.0011129970756220051) + +[fips41017] +centroid = (0.76646340050182715, -2.1157854213733249) +description = Deschutes County, OR +station = ('kbdn', 0.0030691076496188398) +zone = ('orz509', 0.00731475401825794) + +[fips4101700] +centroid = (0.7737156973294691, -2.153083718353682) +description = Alpine CDP, OR +station = ('kcvo', 0.0031166698513494652) +zone = ('orz008', 0.0030990072826608903) + +[fips4101790306] +centroid = (0.76928797155008477, -2.1152036507737577) +description = Bend CCD, OR +station = ('kbdn', 0.00024759942225242019) +zone = ('orz509', 0.0055451279623398133) + +[fips4101792635] +centroid = (0.77271468119028031, -2.115129613906888) +description = Redmond CCD, OR +station = ('krdm', 0.00079506465696576342) +zone = ('orz509', 0.0045480269656794055) + +[fips4101792958] +centroid = (0.76559326660324534, -2.1157115066795029) +description = Sisters-Millican CCD, OR +station = ('kbdn', 0.0039315469753671102) +zone = ('orz509', 0.0080790574813226664) + +[fips4101793247] +centroid = (0.77258566645197291, -2.1182559872894005) +description = Tumalo CCD, OR +station = ('kbdn', 0.0037149954611179186) +zone = ('orz509', 0.0023063513473063051) + +[fips4101800] +centroid = (0.77460862522808194, -2.1571526742520262) +description = Alsea CDP, OR +station = ('kcvo', 0.0044057889047538663) +zone = ('orz004', 0.0012062300086247222) + +[fips4101850] +centroid = (0.73649555619301643, -2.1244995012626822) +description = Altamont CDP, OR +station = ('klmt', 0.00084593312719160349) +zone = ('orz029', 0.0026603296361758359) + +[fips41019] +centroid = (0.75548154450218363, -2.1494494192522544) +description = Douglas County, OR +station = ('krbg', 0.0026503109626223212) +zone = ('orz023', 0.0037856426083723838) + +[fips4101991054] +centroid = (0.76377398775084404, -2.155512274194662) +description = Elkton-Drain CCD, OR +station = ('keug', 0.007420076674262299) +zone = ('orz023', 0.0087636484790400773) + +[fips4101991547] +centroid = (0.7603205571198004, -2.1539587740807544) +description = Kellogg-Yoncalla CCD, OR +station = ('krbg', 0.0058112794851575) +zone = ('orz023', 0.0053071727719526101) + +[fips4101991853] +centroid = (0.75574275047803707, -2.1579931899132019) +description = Melrose CCD, OR +station = ('krbg', 0.0039167471152347557) +zone = ('orz023', 0.0025610254034424342) + +[fips4101992057] +centroid = (0.75079849450652481, -2.1507359363504843) +description = Myrtle Creek-Riddle CCD, OR +station = ('krbg', 0.0040731649467086383) +zone = ('orz023', 0.0050937800736082506) + +[fips4101992244] +centroid = (0.75567552039525021, -2.1398977733081574) +description = North Umpqua CCD, OR +station = ('krbg', 0.0095067699425201088) +zone = ('orz025', 0.0016502761904195317) + +[fips4101992652] +centroid = (0.76291633295641403, -2.1637604558934918) +description = Reedsport CCD, OR +station = ('koth', 0.0062210903886811084) +zone = ('orz021', 0.0095494862956594841) + +[fips4101992686] +centroid = (0.75389835633769953, -2.15271676287845) +description = Roseburg CCD, OR +station = ('krbg', 0.0006742079328308305) +zone = ('orz023', 0.0017886067178833895) + +[fips4101993060] +centroid = (0.74954934490757996, -2.1463690352955318) +description = South Umpqua CCD, OR +station = ('krbg', 0.0069023098491990346) +zone = ('orz025', 0.0061470527682698679) + +[fips4101993153] +centroid = (0.75791177585924552, -2.1512845282409709) +description = Sutherlin CCD, OR +station = ('krbg', 0.0035393454853036473) +zone = ('orz023', 0.003759710740485484) + +[fips4101993179] +centroid = (0.75079646992459259, -2.1570459299149745) +description = Tenmile CCD, OR +station = ('krbg', 0.0048489198778085846) +zone = ('orz023', 0.0045951553577727403) + +[fips4102000] +centroid = (0.78742555530985736, -2.1502399137770674) +description = Amity city, OR +station = ('kmmv', 0.0016756291301502097) +zone = ('orz007', 0.0021649983616353992) + +[fips41021] +centroid = (0.79205949174036505, -2.0980925998668378) +description = Gilliam County, OR +station = ('kdls', 0.012379685222908259) +zone = ('orz508', 0.0026444699522333985) + +[fips4102190102] +centroid = (0.79609055654064864, -2.0983796541689133) +description = Arlington CCD, OR +station = ('kdls', 0.011455981786685977) +zone = ('orz508', 0.0054366897582418614) + +[fips4102190612] +centroid = (0.78980429945398556, -2.0984284186682141) +description = Condon CCD, OR +station = ('kdls', 0.01310337032395764) +zone = ('orz508', 0.0032268370368500059) + +[fips4102200] +centroid = (0.77203333955688669, -2.0419025623569218) +description = Annex CDP, OR +station = ('kono', 0.0038097312754912056) +zone = ('orz064', 0.0043917032305558004) + +[fips4102250] +centroid = (0.78384968983178638, -2.1070288427166814) +description = Antelope city, OR +station = ('krdm', 0.012614123792728037) +zone = ('orz042', 0.0041314124000632162) + +[fips41023] +centroid = (0.77660739374075849, -2.0771871508062048) +description = Grant County, OR +station = ('kgcd', 0.0018111034611488391) +zone = ('orz503', 0.0084805892530280015) + +[fips4102391462] +centroid = (0.77632576741265658, -2.0812774869878865) +description = John Day CCD, OR +station = ('kgcd', 0.0038569444894378502) +zone = ('orz505', 0.0079549568672056849) + +[fips4102391683] +centroid = (0.78185603513381841, -2.0816110368612351) +description = Long Creek CCD, OR +station = ('kgcd', 0.0079138273044707004) +zone = ('orz503', 0.0048695587834458789) + +[fips4102392584] +centroid = (0.77650602501780253, -2.0702136877798618) +description = Prairie City CCD, OR +station = ('kgcd', 0.0045856580881484905) +zone = ('orz503', 0.009643364404109676) + +[fips4102392856] +centroid = (0.77005085496613135, -2.0815359178902293) +description = Seneca CCD, OR +station = ('kgcd', 0.0061752875522494491) +zone = ('orz506', 0.0093677931790435466) + +[fips41025] +centroid = (0.75161478499768264, -2.0766965736600547) +description = Harney County, OR +station = ('kbno', 0.0093599016990638939) +zone = ('orz061', 0.00023022960249590628) + +[fips4102590391] +centroid = (0.76318979114361651, -2.0837200229161748) +description = Burns CCD, OR +station = ('kbno', 0.0059656205625020896) +zone = ('orz506', 0.010912830708016413) + +[fips4102590901] +centroid = (0.7470447799776756, -2.0769289991565425) +description = Diamond CCD, OR +station = ('kbno', 0.013932878875298559) +zone = ('orz061', 0.0045813751947470617) + +[fips4102590918] +centroid = (0.7612897908133105, -2.0701582212162331) +description = Drewsey CCD, OR +station = ('kbno', 0.004292272729975238) +zone = ('orz061', 0.010686935092945337) + +[fips41027] +centroid = (0.7943303221768423, -2.1232973359272012) +description = Hood River County, OR +station = ('kczk', 0.0038754751309468699) +zone = ('orz014', 0.0015493802473071393) + +[fips4102790476] +centroid = (0.79662665187369119, -2.1256238947266946) +description = Cascade Locks CCD, OR +station = ('kczk', 0.001217481799448811) +zone = ('orz009', 0.001088576678818316) + +[fips4102790850] +centroid = (0.79462020391230603, -2.1244424115428493) +description = Dee CCD, OR +station = ('kczk', 0.0031187555200045689) +zone = ('orz014', 0.001988658333892297) + +[fips4102791343] +centroid = (0.79722418279640406, -2.1219809911520544) +description = Hood River CCD, OR +station = ('kdls', 0.005160614254283386) +zone = ('orz014', 0.0016755468349354951) + +[fips4102792380] +centroid = (0.79613094345953972, -2.1209448240817306) +description = Odell CCD, OR +station = ('kdls', 0.0043280812524969133) +zone = ('orz014', 0.00090273673004034026) + +[fips4102792431] +centroid = (0.79214530957968554, -2.122712720440953) +description = Parkdale CCD, OR +station = ('kczk', 0.0058369040682152455) +zone = ('orz014', 0.0034475138878475617) + +[fips4102800] +centroid = (0.79797010161212134, -2.0978038002355102) +description = Arlington city, OR +station = ('kdls', 0.011984486411980593) +zone = ('orz041', 0.0045292575849983571) + +[fips41029] +centroid = (0.74022523753806579, -2.1410965701581821) +description = Jackson County, OR +station = ('kmfr', 0.002720622876543463) +zone = ('orz026', 0.002378764090551648) + +[fips4102990119] +centroid = (0.73676917145985155, -2.1419500885222851) +description = Ashland CCD, OR +station = ('kmfr', 0.003598965306690139) +zone = ('orz028', 0.0041131061559952116) + +[fips4102990408] +centroid = (0.74474712383059527, -2.1376169072284812) +description = Butte Falls-Prospect CCD, OR +station = ('kmfr', 0.007250964935752004) +zone = ('orz028', 0.0058904929619208067) + +[fips4102990952] +centroid = (0.74136303513073332, -2.1432950392438719) +description = Eagle Point CCD, OR +station = ('kmfr', 0.0019430104574069866) +zone = ('orz026', 0.00060184071907316969) + +[fips4102991836] +centroid = (0.73925691141576677, -2.1447545010176818) +description = Medford CCD, OR +station = ('kmfr', 0.00047254148020096118) +zone = ('orz026', 0.0019682286319068717) + +[fips4102992278] +centroid = (0.7432551814794055, -2.1486619441470469) +description = Northwest Jackson CCD, OR +station = ('ksxt', 0.0033171808311958377) +zone = ('orz026', 0.0039865825506368623) + +[fips4102992771] +centroid = (0.7419088519477095, -2.1463602388361021) +description = Sams Valley CCD, OR +station = ('kmfr', 0.0024940281454525173) +zone = ('orz026', 0.0018538997114829305) + +[fips4102992873] +centroid = (0.74506604784481212, -2.1430391041623595) +description = Shady Cove CCD, OR +station = ('kmfr', 0.0054789511218031675) +zone = ('orz026', 0.0039803987488128524) + +[fips4102993026] +centroid = (0.73685331378309016, -2.1380555957359699) +description = Southeast Jackson CCD, OR +station = ('kmfr', 0.0057057065602906356) +zone = ('orz028', 0.0021170932552661116) + +[fips4102993094] +centroid = (0.73601264104228203, -2.1463424888376088) +description = Southwest Jackson CCD, OR +station = ('kmfr', 0.0039054522984306489) +zone = ('orz026', 0.0054142143433499237) + +[fips4103050] +centroid = (0.73639231996776089, -2.1415264272996559) +description = Ashland city, OR +station = ('kmfr', 0.0040876287746838486) +zone = ('orz028', 0.0040648854116100948) + +[fips41031] +centroid = (0.77918112606891932, -2.1150427139634314) +description = Jefferson County, OR +station = ('krdm', 0.0069007592569861114) +zone = ('orz042', 0.0068344830394450641) + +[fips4103150] +centroid = (0.80611981183455372, -2.1609719433475805) +description = Astoria city, OR +station = ('kast', 0.0010553371056442132) +zone = ('waz021', 0.0052092812083469582) + +[fips4103190136] +centroid = (0.77942112629436111, -2.1082096277688258) +description = Ashwood CCD, OR +station = ('krdm', 0.0082902710288773242) +zone = ('orz042', 0.0069150587182405686) + +[fips4103190782] +centroid = (0.77713427373535038, -2.1157346846519696) +description = Culver CCD, OR +station = ('krdm', 0.0049530311720647185) +zone = ('orz509', 0.00616668646417324) + +[fips4103191224] +centroid = (0.77673914864599147, -2.1218033689940792) +description = Grandview CCD, OR +station = ('krdm', 0.007025522336626653) +zone = ('orz509', 0.0042158095291411329) + +[fips4103191751] +centroid = (0.7804593877597874, -2.1143181754310509) +description = Madras CCD, OR +station = ('krdm', 0.008151829298253652) +zone = ('orz042', 0.0054630332538292987) + +[fips4103193383] +centroid = (0.78062967953490447, -2.1209610556437739) +description = Warm Springs CCD, OR +station = ('krdm', 0.0096270214817341365) +zone = ('orz011', 0.0066297739448867498) + +[fips4103200] +centroid = (0.79959189645965945, -2.0680843337325512) +description = Athena city, OR +station = ('kmeh', 0.0052581999327721328) +zone = ('orz507', 0.0031106184542554014) + +[fips4103250] +centroid = (0.78270084430495368, -2.144465317413919) +description = Aumsville city, OR +station = ('ksle', 0.0018812777413489184) +zone = ('orz007', 0.0042556724881462312) + +[fips41033] +centroid = (0.73976447061553918, -2.1571788716440987) +description = Josephine County, OR +station = ('ksxt', 0.0047787473995007084) +zone = ('orz024', 0.0018975476382907916) + +[fips4103300] +centroid = (0.78938447795571087, -2.1425174427022307) +description = Aurora city, OR +station = ('kuao', 0.00039452636506827403) +zone = ('orz006', 0.0045461439322420976) + +[fips4103390493] +centroid = (0.73436063454539191, -2.1564234233306658) +description = Cave Junction CCD, OR +station = ('ksxt', 0.0094633061043291403) +zone = ('orz024', 0.006013933574822659) + +[fips4103391241] +centroid = (0.74238721178909617, -2.1526599873178829) +description = Grants Pass CCD, OR +station = ('ksxt', 0.0011806315757333387) +zone = ('orz024', 0.0058109198744422316) + +[fips4103392295] +centroid = (0.74409477211607733, -2.1575054227471471) +description = Northwest Josephine CCD, OR +station = ('ksxt', 0.0032547398640321774) +zone = ('orz024', 0.004555965833743127) + +[fips4103393485] +centroid = (0.7398101982419415, -2.1586586839569875) +description = Wilderville CCD, OR +station = ('ksxt', 0.0054919647143212716) +zone = ('orz024', 0.00080359525742755317) + +[fips4103393519] +centroid = (0.73698466726259537, -2.1520610601317687) +description = Williams CCD, OR +station = ('kmfr', 0.0060841247285687156) +zone = ('orz024', 0.006363722458510853) + +[fips41035] +centroid = (0.74497216658434728, -2.1231261540341655) +description = Klamath County, OR +station = ('klmt', 0.0093600680601062334) +zone = ('orz030', 0.0053781291689933911) + +[fips4103590527] +centroid = (0.74520904267042809, -2.1213803709965657) +description = Chiloquin CCD, OR +station = ('klmt', 0.0098021347184090672) +zone = ('orz030', 0.0040892498328841892) + +[fips4103590731] +centroid = (0.75518864334711389, -2.1255125776270023) +description = Crescent Lake CCD, OR +station = ('kbdn', 0.016105733733711956) +zone = ('orz027', 0.0049636972881134398) + +[fips4103591564] +centroid = (0.73888599404313282, -2.1311881789149778) +description = Keno CCD, OR +station = ('klmt', 0.0060007418419946411) +zone = ('orz028', 0.0044203978089778972) + +[fips4103591581] +centroid = (0.73726374540998918, -2.1255822686240347) +description = Klamath Falls CCD, OR +station = ('klmt', 0.0018462107302171049) +zone = ('orz029', 0.0020680591961604127) + +[fips4103591651] +centroid = (0.73810593658724655, -2.1136124515480068) +description = Langell Valley CCD, OR +station = ('klmt', 0.008325293949550526) +zone = ('orz030', 0.008749508838298066) + +[fips4103591785] +centroid = (0.73348852842475531, -2.1195677942084918) +description = Malin CCD, OR +station = ('klmt', 0.0041628052981222) +zone = ('caz084', 0.0037920694668153693) + +[fips4103591870] +centroid = (0.73431235873828182, -2.1233741129609962) +description = Merrill CCD, OR +station = ('klmt', 0.001528833441489624) +zone = ('caz084', 0.0036619429708479021) + +[fips4103593594] +centroid = (0.73774358878123991, -2.1223065474174292) +description = Yonna Valley-Poe Valley CCD, OR +station = ('klmt', 0.0025811872842584067) +zone = ('orz029', 0.0021246069788568057) + +[fips4103650] +centroid = (0.78146925271828382, -2.0565561373171555) +description = Baker City city, OR +station = ('kbke', 0.0010375218230075341) +zone = ('orz062', 0.0022555370929737083) + +[fips41037] +centroid = (0.74679847911363428, -2.1011982212845441) +description = Lake County, OR +station = ('klkv', 0.010852107049636125) +zone = ('orz031', 0.0018224836575353703) + +[fips4103791632] +centroid = (0.73659627914414894, -2.1044149503624321) +description = Lakeview CCD, OR +station = ('klkv', 0.0023431852290974162) +zone = ('orz031', 0.011376136516494951) + +[fips4103792924] +centroid = (0.75568431685468029, -2.1049593709160068) +description = Silver Lake-Fort Rock CCD, OR +station = ('kbdn', 0.015736166391630807) +zone = ('orz031', 0.009628180923062734) + +[fips4103793145] +centroid = (0.74682268683035946, -2.1081016267947126) +description = Summer Lake CCD, OR +station = ('klkv', 0.011953171257213135) +zone = ('orz031', 0.006855930909672214) + +[fips4103793417] +centroid = (0.74088853246699371, -2.0922331106888725) +description = Warner Valley CCD, OR +station = ('klkv', 0.0083748697956017529) +zone = ('orz031', 0.0079227700754675081) + +[fips4103800] +centroid = (0.75249329647667407, -2.1714604645808553) +description = Bandon city, OR +station = ('koth', 0.0056747898742376228) +zone = ('orz021', 0.0034930497538625317) + +[fips4103850] +centroid = (0.79612387487606928, -2.14870199945338) +description = Banks city, OR +station = ('khio', 0.0022722878073073052) +zone = ('orz003', 0.0047263527233533378) + +[fips41039] +centroid = (0.76669305092480455, -2.1449691241557995) +description = Lane County, OR +station = ('keug', 0.0053694344103402802) +zone = ('orz012', 0.0013077770153523225) + +[fips4103990187] +centroid = (0.76898278327708103, -2.1542719908683172) +description = Badger Mountain CCD, OR +station = ('keug', 0.0029763874102407338) +zone = ('orz004', 0.0062625595020724262) + +[fips4103990578] +centroid = (0.77079570913100515, -2.147812824012659) +description = Coburg CCD, OR +station = ('keug', 0.002023321023829508) +zone = ('orz008', 0.0043829691381672429) + +[fips4103990697] +centroid = (0.76203626813438841, -2.1440006235005753) +description = Cottage Grove CCD, OR +station = ('keug', 0.0094872156690801682) +zone = ('orz012', 0.004529672920815) + +[fips4103990748] +centroid = (0.76660157821870756, -2.1476602124228648) +description = Creswell CCD, OR +station = ('keug', 0.0042129198619013991) +zone = ('orz012', 0.0032363806656015852) + +[fips4103990943] +centroid = (0.76657567753260802, -2.1652252234682283) +description = Dunes City CCD, OR +station = ('koth', 0.00913829619965679) +zone = ('orz004', 0.0090307153301075246) + +[fips4103991105] +centroid = (0.76881538874852229, -2.149074505075633) +description = Eugene-Springfield CCD, OR +station = ('keug', 0.0017956291730648263) +zone = ('orz012', 0.0048271461340897992) + +[fips4103991147] +centroid = (0.7703240513539461, -2.1647968324033262) +description = Florence CCD, OR +station = ('konp', 0.0077545247440411235) +zone = ('orz004', 0.0058813640616826764) + +[fips4103991513] +centroid = (0.77154300675683152, -2.1521145195667573) +description = Junction City CCD, OR +station = ('keug', 0.0017019475365198991) +zone = ('orz008', 0.0041017157864837919) + +[fips4103991700] +centroid = (0.76665247201969566, -2.1404402565462624) +description = Lowell CCD, OR +station = ('keug', 0.008111334195790099) +zone = ('orz012', 0.0019690487425684084) + +[fips4103991719] +centroid = (0.76922664068016955, -2.1320796930968964) +description = McKenzie River CCD, OR +station = ('kbdn', 0.012029014543804293) +zone = ('orz013', 0.0041961957516035075) + +[fips4103991802] +centroid = (0.77103590134266453, -2.1430162403491582) +description = Marcola CCD, OR +station = ('keug', 0.0054492748763812302) +zone = ('orz012', 0.0045113077468228744) + +[fips4103991889] +centroid = (0.77010452384063022, -2.1593029897036535) +description = Middle Siuslaw River-Triangle Lake CCD, OR +station = ('kcvo', 0.0085276733728728016) +zone = ('orz004', 0.0042506701826573361) + +[fips4103992346] +centroid = (0.76272000086885727, -2.1343490574568018) +description = Oakridge CCD, OR +station = ('kbdn', 0.01529155214062076) +zone = ('orz013', 0.0025181610703962206) + +[fips4103992482] +centroid = (0.76715179326539884, -2.1456374456329734) +description = Pleasant Hill CCD, OR +station = ('keug', 0.0047049339912070927) +zone = ('orz012', 0.0018849695293467849) + +[fips4103993300] +centroid = (0.76633735282324811, -2.1542943485360353) +description = Upper Siuslaw River CCD, OR +station = ('keug', 0.0047731719660187117) +zone = ('orz004', 0.0086304083179446194) + +[fips4104000] +centroid = (0.7898028857372914, -2.1419095270704687) +description = Barlow city, OR +station = ('kuao', 0.00054577706273366484) +zone = ('orz006', 0.0041816862651912192) + +[fips41041] +centroid = (0.77913375783302019, -2.1626581233912248) +description = Lincoln County, OR +station = ('konp', 0.0021109657481836147) +zone = ('orz002', 0.0025105959643722205) + +[fips4104190884] +centroid = (0.78282373293758667, -2.1641945192784631) +description = Depoe Bay CCD, OR +station = ('konp', 0.0048068271592705564) +zone = ('orz002', 0.0058318103540407114) + +[fips4104191020] +centroid = (0.77798505193252754, -2.1598710071087148) +description = Eddyville CCD, OR +station = ('konp', 0.0038121750850018412) +zone = ('orz002', 0.0034485905912053022) + +[fips4104191674] +centroid = (0.78475371802444194, -2.1627912221999819) +description = Lincoln City CCD, OR +station = ('konp', 0.006900264674957717) +zone = ('orz002', 0.0078526837142232336) + +[fips4104192133] +centroid = (0.77970641781389205, -2.1655801885314987) +description = Newport CCD, OR +station = ('konp', 0.0016536084688797891) +zone = ('orz002', 0.00281599757016604) + +[fips4104192907] +centroid = (0.78108140565190565, -2.161164365897613) +description = Siletz CCD, OR +station = ('konp', 0.0041687922353270601) +zone = ('orz002', 0.0047271569321188879) + +[fips4104193230] +centroid = (0.77776992264892675, -2.1618893756688915) +description = Toledo CCD, OR +station = ('konp', 0.0023929645828640067) +zone = ('orz002', 0.0020196251859460499) + +[fips4104193349] +centroid = (0.77482427811045829, -2.1638648614893463) +description = Waldport CCD, OR +station = ('konp', 0.003389473201038305) +zone = ('orz002', 0.002219667185136465) + +[fips41043] +centroid = (0.77658117889539346, -2.1387920199605563) +description = Linn County, OR +station = ('ksle', 0.0090579760250864318) +zone = ('orz010', 0.0053092226597531572) + +[fips4104390068] +centroid = (0.7784987197846821, -2.1484232878251293) +description = Albany CCD, OR +station = ('kcvo', 0.0029650010315598529) +zone = ('orz008', 0.0034736445364250898) + +[fips4104390374] +centroid = (0.77365331926200287, -2.146052066050077) +description = Brownsville CCD, OR +station = ('keug', 0.0046646314687204191) +zone = ('orz008', 0.0026474101961832894) + +[fips4104390986] +centroid = (0.77560581909620896, -2.1341284129327649) +description = East Linn CCD, OR +station = ('ksle', 0.012057653782451222) +zone = ('orz010', 0.0067117125119524838) + +[fips4104391292] +centroid = (0.77437626954476402, -2.1493401441877866) +description = Harrisburg CCD, OR +station = ('kcvo', 0.0028474185693553836) +zone = ('orz008', 0.00070038242809523769) + +[fips4104391666] +centroid = (0.77688360954817903, -2.1448418722000371) +description = Lebanon CCD, OR +station = ('kcvo', 0.0048957012114356898) +zone = ('orz008', 0.0035912526699282341) + +[fips4104391904] +centroid = (0.77994327644668016, -2.1375914254214021) +description = Mill City CCD, OR +station = ('ksle', 0.007486531003416997) +zone = ('orz010', 0.0018863188633246317) + +[fips4104392822] +centroid = (0.77921193113021703, -2.1444779186911185) +description = Scio-Lacomb CCD, OR +station = ('ksle', 0.004725956880879594) +zone = ('orz008', 0.0053316203295705666) + +[fips4104393162] +centroid = (0.77422292491668376, -2.1419891140843594) +description = Sweet Home CCD, OR +station = ('kcvo', 0.0073542566107435538) +zone = ('orz008', 0.0052099734040308128) + +[fips4104400] +centroid = (0.7565706474087206, -2.1695602024511613) +description = Barview CDP, OR +station = ('koth', 0.0013927749603284204) +zone = ('orz021', 0.003486856662380273) + +[fips41045] +centroid = (0.75376756136355505, -2.052576594636391) +description = Malheur County, OR +station = ('kreo', 0.01107019496705856) +zone = ('orz063', 0.0013383786526954616) + +[fips4104590017] +centroid = (0.76242812945804628, -2.0434673547510895) +description = Adrian CCD, OR +station = ('kono', 0.0058656541741344704) +zone = ('idz012', 0.0052945339669335841) + +[fips4104590340] +centroid = (0.77045856387939737, -2.0550303704850621) +description = Brogan CCD, OR +station = ('kbke', 0.012064162245725405) +zone = ('orz064', 0.0073429473757953565) + +[fips4104590833] +centroid = (0.77077455574047093, -2.0415289746305323) +description = Dead Ox Flat CCD, OR +station = ('kono', 0.0026025563936069871) +zone = ('orz064', 0.0036009577248707738) + +[fips4104591479] +centroid = (0.74416025686961218, -2.0516891121650445) +description = Jordan Valley CCD, OR +station = ('kreo', 0.0041359186659671431) +zone = ('orz063', 0.0085883647313570663) + +[fips4104591530] +centroid = (0.7582277502670266, -2.0552043099983157) +description = Juntura CCD, OR +station = ('kono', 0.013665869504221809) +zone = ('orz063', 0.0057159437281315414) + +[fips4104591768] +centroid = (0.76717303392239555, -2.0425781094971982) +description = Malheur Junction CCD, OR +station = ('kono', 0.0010780812711939649) +zone = ('orz064', 0.0022474094377181002) + +[fips4104592329] +centroid = (0.76592561219941013, -2.0427436016168725) +description = Nyssa CCD, OR +station = ('kono', 0.0023296177374341619) +zone = ('orz064', 0.0030181836895893884) + +[fips4104592397] +centroid = (0.76848700504975942, -2.0425428363930154) +description = Ontario CCD, OR +station = ('kono', 0.00029565027490541468) +zone = ('orz064', 0.001942510494886804) + +[fips4104592414] +centroid = (0.764649532170107, -2.0440159466415766) +description = Owyhee CCD, OR +station = ('kono', 0.0037872023110580716) +zone = ('orz064', 0.0038052075488532087) + +[fips4104593315] +centroid = (0.76798162751155197, -2.0465473023754988) +description = Vale CCD, OR +station = ('kono', 0.0030466056097750408) +zone = ('orz064', 0.0010117459291640427) + +[fips4104593442] +centroid = (0.76724316125174064, -2.0488090221932809) +description = West Bench CCD, OR +station = ('kono', 0.0047687807796267844) +zone = ('orz064', 0.0027980955047374545) + +[fips41047] +centroid = (0.78366850720213688, -2.1393593217806246) +description = Marion County, OR +station = ('kuao', 0.0065292947274265926) +zone = ('orz010', 0.0021989299989364683) + +[fips4104790994] +centroid = (0.78190228635899617, -2.1319240097276184) +description = East Marion CCD, OR +station = ('kuao', 0.010935647914866987) +zone = ('orz011', 0.0029675566215208106) + +[fips4104791360] +centroid = (0.78917516061851911, -2.1435182668552017) +description = Hubbard CCD, OR +station = ('kuao', 0.00083075315801916226) +zone = ('orz007', 0.004037528410618399) + +[fips4104791428] +centroid = (0.78142474682235796, -2.1465334104044849) +description = Jefferson CCD, OR +station = ('ksle', 0.0022336203764096803) +zone = ('orz007', 0.0049689830872435307) + +[fips4104792006] +centroid = (0.78675725128597618, -2.1429965704884881) +description = Mount Angel CCD, OR +station = ('kuao', 0.0030123832895654103) +zone = ('orz007', 0.0032708682030441849) + +[fips4104792720] +centroid = (0.78893966334254761, -2.1459766154665134) +description = St. Paul CCD, OR +station = ('kmmv', 0.0021887546139322919) +zone = ('orz007', 0.0028403405933000968) + +[fips4104792737] +centroid = (0.78444486456000895, -2.1463604308223196) +description = Salem CCD, OR +station = ('ksle', 0.00083985517513230452) +zone = ('orz007', 0.0020822466422863641) + +[fips4104792941] +centroid = (0.78446928171624442, -2.1405447843151642) +description = Silverton CCD, OR +station = ('kuao', 0.0055031420734643075) +zone = ('orz010', 0.0033392764123945768) + +[fips4104793128] +centroid = (0.78249479073346317, -2.1426639979995206) +description = Stayton CCD, OR +station = ('ksle', 0.0031221822746671842) +zone = ('orz010', 0.0036116470312604386) + +[fips4104793570] +centroid = (0.78765089476958239, -2.1446803594310575) +description = Woodburn CCD, OR +station = ('kuao', 0.0025371287594374375) +zone = ('orz007', 0.0024378742500096979) + +[fips4104800] +centroid = (0.7944923934511825, -2.1622207962405526) +description = Bay City city, OR +station = ('ktmk', 0.0019948217655668217) +zone = ('orz001', 0.0034114640447324976) + +[fips41049] +centroid = (0.79282446955151409, -2.0874541199442316) +description = Morrow County, OR +station = ('khri', 0.0082127214533907356) +zone = ('orz508', 0.0051113647700539331) + +[fips4104925] +centroid = (0.79786555638992684, -2.1627504687619479) +description = Bayside Gardens CDP, OR +station = ('ktmk', 0.0052991844109078522) +zone = ('orz001', 0.0011304051509719323) + +[fips4104990323] +centroid = (0.7988672008476464, -2.0898246610408755) +description = Boardman CCD, OR +station = ('kpdt', 0.0081264705832104246) +zone = ('orz044', 0.0033179196399654863) + +[fips4104991309] +centroid = (0.79000064899483491, -2.0848713468105453) +description = Heppner CCD, OR +station = ('khri', 0.010203081503140723) +zone = ('orz508', 0.0068790724533056265) + +[fips4104991411] +centroid = (0.79465322554175377, -2.0901690843154639) +description = Ione-Lexington CCD, OR +station = ('khri', 0.0079906779626169183) +zone = ('orz508', 0.0044218033931819065) + +[fips41051] +centroid = (0.79495720953757365, -2.1365827298335045) +description = Multnomah County, OR +station = ('kttd', 4.0737569994526262e-05) +zone = ('waz039', 0.0035998942149719796) + +[fips4105190663] +centroid = (0.79503622059281132, -2.1306559756661669) +description = Corbett CCD, OR +station = ('kczk', 0.0031008673974476349) +zone = ('waz023', 0.0026075625761766631) + +[fips4105191249] +centroid = (0.79437948810187098, -2.136676471467629) +description = Gresham CCD, OR +station = ('kttd', 0.00062214980173760709) +zone = ('waz039', 0.0041225406262746216) + +[fips4105192518] +centroid = (0.79494111760187025, -2.1401927514050367) +description = Portland East CCD, OR +station = ('kpdx', 0.00070235276231555134) +zone = ('orz006', 0.0021828830010513782) + +[fips4105192520] +centroid = (0.79453038926899833, -2.1422227438580315) +description = Portland West CCD, OR +station = ('kvuo', 0.0019689600839866818) +zone = ('orz006', 0.00079324974244786403) + +[fips4105192975] +centroid = (0.79710382489118647, -2.1441793975758574) +description = Skyline CCD, OR +station = ('kspb', 0.0016841549660554956) +zone = ('orz006', 0.0032980778289004487) + +[fips4105200] +centroid = (0.79026780654343765, -2.1611472442176511) +description = Beaver CDP, OR +station = ('ktmk', 0.0024672616889829602) +zone = ('orz001', 0.0075501264111223921) + +[fips4105250] +centroid = (0.79030316691408309, -2.1381765121465479) +description = Beavercreek CDP, OR +station = ('kuao', 0.0032173719075484662) +zone = ('orz006', 0.0049305429449288734) + +[fips41053] +centroid = (0.78372954136607909, -2.153689679216682) +description = Polk County, OR +station = ('kmmv', 0.0061003024938088516) +zone = ('orz007', 0.0050419010216085193) + +[fips4105350] +centroid = (0.79376818653135994, -2.1435255972380602) +description = Beaverton city, OR +station = ('khio', 0.0020587149303027959) +zone = ('orz006', 0.00043356494335825279) + +[fips4105390799] +centroid = (0.78498914548724341, -2.1520018934701257) +description = Dallas CCD, OR +station = ('kmmv', 0.0044110039688886543) +zone = ('orz007', 0.0033981858591193631) + +[fips4105391122] +centroid = (0.78281453505242848, -2.1561433328923059) +description = Falls City CCD, OR +station = ('kcvo', 0.0069079253065688793) +zone = ('orz002', 0.008319283471462836) + +[fips4105391972] +centroid = (0.78198539893797614, -2.1508000073873248) +description = Monmouth-Independence CCD, OR +station = ('ksle', 0.0033171749000938111) +zone = ('orz007', 0.0049096790478823076) + +[fips4105392754] +centroid = (0.78502040433414666, -2.1487427703447071) +description = Salem CCD, OR +station = ('ksle', 0.0019621662705918219) +zone = ('orz007', 0.0015487912749010575) + +[fips4105393502] +centroid = (0.78610491702475094, -2.1565281779923704) +description = Willamina CCD, OR +station = ('kmmv', 0.005946072267903669) +zone = ('orz007', 0.0063198329338803429) + +[fips41055] +centroid = (0.79236579702409005, -2.1062373708074871) +description = Sherman County, OR +station = ('kdls', 0.0070749136126251324) +zone = ('orz041', 0.0045799059572840094) + +[fips4105591989] +centroid = (0.7905693819848898, -2.1068366819660369) +description = Moro CCD, OR +station = ('kdls', 0.0078825249053436613) +zone = ('orz042', 0.0061659242253247143) + +[fips4105593434] +centroid = (0.7956616069703859, -2.1057361995127772) +description = Wasco CCD, OR +station = ('kdls', 0.0063311691617935059) +zone = ('orz041', 0.0015721503123623767) + +[fips41057] +centroid = (0.79335237929036473, -2.1600077362023162) +description = Tillamook County, OR +station = ('ktmk', 0.00087993254777820294) +zone = ('orz001', 0.0045344591862760963) + +[fips4105700] +centroid = (0.77432219924453716, -2.1529671303596487) +description = Bellfountain CDP, OR +station = ('kcvo', 0.0025175179601714735) +zone = ('orz008', 0.0028052923987749506) + +[fips4105790238] +centroid = (0.79592169593551809, -2.158836986793371) +description = Bay City CCD, OR +station = ('ktmk', 0.0035029039591532329) +zone = ('orz001', 0.0024841618441388304) + +[fips4105790255] +centroid = (0.79055458159283276, -2.1602291486712244) +description = Beaver CCD, OR +station = ('ktmk', 0.0022233220653257086) +zone = ('orz001', 0.0072909167128836815) + +[fips4105792091] +centroid = (0.79800980785260422, -2.1596074274850787) +description = Nehalem CCD, OR +station = ('ktmk', 0.0053572858912904744) +zone = ('orz001', 0.0010823039998530592) + +[fips4105792108] +centroid = (0.78763930578334918, -2.1625402787601304) +description = Neskowin CCD, OR +station = ('ktmk', 0.0052197247457718803) +zone = ('orz001', 0.010226435291590893) + +[fips4105793213] +centroid = (0.79362266097832868, -2.1585673857838152) +description = Tillamook CCD, OR +station = ('ktmk', 0.0018600175595399613) +zone = ('orz003', 0.0044018302007087402) + +[fips4105800] +centroid = (0.7689297601744054, -2.1172244278883019) +description = Bend city, OR +station = ('kbdn', 0.0014758363237162889) +zone = ('orz509', 0.0047182656631706123) + +[fips41059] +centroid = (0.79571654993523877, -2.0722971396678447) +description = Umatilla County, OR +station = ('kmeh', 0.0040892324365934835) +zone = ('orz507', 0.0023276218911509753) + +[fips4105950] +centroid = (0.79520317878905711, -2.143943568687328) +description = Bethany CDP, OR +station = ('khio', 0.0013730322950528237) +zone = ('orz006', 0.0014604067424010051) + +[fips4105990170] +centroid = (0.80051756673503971, -2.0690349796695271) +description = Athena CCD, OR +station = ('kalw', 0.0051829523522055401) +zone = ('orz507', 0.0032078457854442847) + +[fips4105991334] +centroid = (0.79981309948905732, -2.0814654764016187) +description = Hermiston-Umatilla CCD, OR +station = ('khri', 0.00015823353437251797) +zone = ('orz044', 0.002908127750221666) + +[fips4105991929] +centroid = (0.80118337493809055, -2.0632728624105305) +description = Milton-Freewater CCD, OR +station = ('kalw', 0.0035073464693519169) +zone = ('orz502', 0.004476018404407596) + +[fips4105992448] +centroid = (0.79794756941147815, -2.0762250380560432) +description = Pendleton CCD, OR +station = ('khri', 0.0042441712807451274) +zone = ('orz507', 0.0029917416164696531) + +[fips4105992465] +centroid = (0.79178674913815583, -2.0718161443792877) +description = Pilot Rock CCD, OR +station = ('kmeh', 0.0044151003870676071) +zone = ('orz507', 0.006244723959119858) + +[fips4105993264] +centroid = (0.80252691194298331, -2.0680989072318052) +description = Umapine CCD, OR +station = ('kalw', 0.0032798741686531894) +zone = ('orz507', 0.0052323333147357848) + +[fips4105993270] +centroid = (0.79667958770990421, -2.06902003965113) +description = Umatilla Reservation CCD, OR +station = ('kmeh', 0.0027614569552700252) +zone = ('orz507', 0.0024476884971682549) + +[fips4105993451] +centroid = (0.79922719245916274, -2.0654679979173491) +description = Weston CCD, OR +station = ('kmeh', 0.0048956055748510885) +zone = ('orz507', 0.0046722081008287392) + +[fips41061] +centroid = (0.79070478462825944, -2.0594734377085717) +description = Union County, OR +station = ('klgd', 0.00036167728694397637) +zone = ('orz049', 0.0013488485945149016) + +[fips4106190714] +centroid = (0.79185136122706457, -2.0568364721016108) +description = Cove CCD, OR +station = ('klgd', 0.002398112908171884) +zone = ('orz049', 0.0012702948280967259) + +[fips4106191037] +centroid = (0.79678359188003056, -2.0580624262747969) +description = Elgin CCD, OR +station = ('klgd', 0.0065175213973597502) +zone = ('orz502', 0.0012863738163210021) + +[fips4106191615] +centroid = (0.79175582190381044, -2.0613918512624863) +description = La Grande CCD, OR +station = ('klgd', 0.0019458130976166971) +zone = ('orz049', 0.0019388555099317836) + +[fips4106193111] +centroid = (0.78884974397948482, -2.0660407800712686) +description = Starkey CCD, OR +station = ('kmeh', 0.0055888967761935629) +zone = ('orz049', 0.0060437475566129367) + +[fips4106193281] +centroid = (0.78824209014711044, -2.0547906320590084) +description = Union CCD, OR +station = ('klgd', 0.0039196954303878035) +zone = ('orz049', 0.0045691942671070556) + +[fips41063] +centroid = (0.79576110819104218, -2.0452742068592165) +description = Wallowa County, OR +station = ('klgd', 0.011350246838589498) +zone = ('orz050', 0.0019384072796832525) + +[fips4106391071] +centroid = (0.79282247987616683, -2.0477084001136809) +description = Enterprise CCD, OR +station = ('klgd', 0.0086413723605481656) +zone = ('orz050', 0.0020010211002005453) + +[fips4106391139] +centroid = (0.80123109223984001, -2.0557830262716923) +description = Flora CCD, OR +station = ('kalw', 0.0068871984675807057) +zone = ('waz030', 0.0042631916383066831) + +[fips4106391394] +centroid = (0.79461187869177397, -2.0405145543626877) +description = Imnaha CCD, OR +station = ('kgic', 0.012035796859476724) +zone = ('orz050', 0.0034030567065115383) + +[fips4106391496] +centroid = (0.78851092321179517, -2.0446467435398321) +description = Joseph CCD, OR +station = ('klgd', 0.010611690878463562) +zone = ('orz050', 0.0053281771694769393) + +[fips4106393366] +centroid = (0.79533975080302577, -2.0518376222310963) +description = Wallowa CCD, OR +station = ('klgd', 0.0073346426866964243) +zone = ('orz502', 0.0058279022680754354) + +[fips4106400] +centroid = (0.796986189699602, -2.1090340165877128) +description = Biggs Junction CDP, OR +station = ('kdls', 0.0040856692110491626) +zone = ('waz024', 0.0011325858910422577) + +[fips41065] +centroid = (0.78826985833550967, -2.1147293924561135) +description = Wasco County, OR +station = ('kdls', 0.0078911930796333567) +zone = ('orz042', 0.003099072592880006) + +[fips4106590085] +centroid = (0.78509718136794182, -2.1078810869904303) +description = Antelope CCD, OR +station = ('kdls', 0.012074822412150295) +zone = ('orz042', 0.0031414729011266839) + +[fips4106590935] +centroid = (0.79062793778129414, -2.1156905103686015) +description = Dufur CCD, OR +station = ('kdls', 0.0055716758233422953) +zone = ('orz042', 0.0054798560538283775) + +[fips4106593196] +centroid = (0.7957043326304748, -2.1163288645425182) +description = The Dalles CCD, OR +station = ('kdls', 0.0011905864935656371) +zone = ('waz024', 0.0051872764682595269) + +[fips4106593400] +centroid = (0.7846452109048454, -2.1194399139341984) +description = Warm Springs CCD, OR +station = ('kdls', 0.011977784771329967) +zone = ('orz011', 0.0067908025866652948) + +[fips4106650] +centroid = (0.77424427029343557, -2.1234829691464432) +description = Black Butte Ranch CDP, OR +station = ('kbdn', 0.0075111581260674304) +zone = ('orz509', 0.0022365884452743619) + +[fips41067] +centroid = (0.79505929384552276, -2.1484586831023598) +description = Washington County, OR +station = ('khio', 0.0018051974712095186) +zone = ('orz003', 0.0052626881922583687) + +[fips4106790289] +centroid = (0.79316740929623841, -2.144399012355636) +description = Beaverton-Hillsboro CCD, OR +station = ('khio', 0.0021047860433357256) +zone = ('orz006', 0.0012667955274997826) + +[fips4106790510] +centroid = (0.7932144284662872, -2.1476204014626266) +description = Chehalem Mountains CCD, OR +station = ('khio', 0.0021594948213345859) +zone = ('orz006', 0.0033529255133465919) + +[fips4106790561] +centroid = (0.79603817920979625, -2.151270059461472) +description = Coast Range CCD, OR +station = ('khio', 0.0039119312310397711) +zone = ('orz003', 0.0030651390843293011) + +[fips4106791156] +centroid = (0.79505929384552276, -2.1484586831023598) +description = Forest Grove-Cornelius CCD, OR +station = ('khio', 0.0018051974712095186) +zone = ('orz003', 0.0052626881922583687) + +[fips4106792210] +centroid = (0.79746404339550558, -2.1468974337265729) +description = North Plains CCD, OR +station = ('kspb', 0.0021681645505063391) +zone = ('orz006', 0.0044943859691808181) + +[fips4106792678] +centroid = (0.79508615446271091, -2.1443834614720005) +description = Rockcreek CCD, OR +station = ('khio', 0.0010533194104556079) +zone = ('orz006', 0.0015400940114731804) + +[fips41069] +centroid = (0.78079766747540891, -2.0948641596296689) +description = Wheeler County, OR +station = ('kbdn', 0.018470919266357071) +zone = ('orz505', 0.0030310977180218117) + +[fips4106950] +centroid = (0.77836413744606081, -2.1558485991415215) +description = Blodgett CDP, OR +station = ('kcvo', 0.0034067100638761542) +zone = ('orz004', 0.0045412593989968414) + +[fips4106991173] +centroid = (0.7848144031225337, -2.0975917252781007) +description = Fossil CCD, OR +station = ('kdls', 0.016570037829794351) +zone = ('orz505', 0.0064348868587732269) + +[fips4106991938] +centroid = (0.77941477329588371, -2.0943622203900878) +description = Mitchell CCD, OR +station = ('kbdn', 0.017966784239481143) +zone = ('orz505', 0.0029730608202620419) + +[fips41071] +centroid = (0.78972898849676199, -2.1522722624245523) +description = Yamhill County, OR +station = ('kmmv', 0.0023988935903094416) +zone = ('orz007', 0.0047341359143521829) + +[fips4107190459] +centroid = (0.79168330347339011, -2.151664818031688) +description = Carlton CCD, OR +station = ('kmmv', 0.0033334316714561949) +zone = ('orz007', 0.006068476536934795) + +[fips4107190816] +centroid = (0.7877884790745171, -2.1488928163005006) +description = Dayton-Amity CCD, OR +station = ('kmmv', 0.001108404452927059) +zone = ('orz007', 0.001718479319456273) + +[fips4107191734] +centroid = (0.78914433810392892, -2.1505127436457392) +description = McMinnville CCD, OR +station = ('kmmv', 0.00103984304743761) +zone = ('orz007', 0.0034833436584027263) + +[fips4107192125] +centroid = (0.79093677379243454, -2.1470647235353768) +description = Newberg CCD, OR +station = ('kmmv', 0.0024921086367230686) +zone = ('orz006', 0.0041548980828124181) + +[fips4107192890] +centroid = (0.78819498371059915, -2.1556049511779429) +description = Sheridan CCD, OR +station = ('kmmv', 0.0046498924277129389) +zone = ('orz007', 0.0059545914861392039) + +[fips4107200] +centroid = (0.79999798221672103, -2.0890333287580209) +description = Boardman city, OR +station = ('kpdt', 0.0068760891138255637) +zone = ('orz044', 0.0031619773134826078) + +[fips4107300] +centroid = (0.73653445958204333, -2.1189462126486869) +description = Bonanza town, OR +station = ('klmt', 0.0041046461990954823) +zone = ('orz029', 0.0048449830699411464) + +[fips4108600] +centroid = (0.77226532872106179, -2.0510877066113919) +description = Brogan CDP, OR +station = ('kono', 0.0074687684509778234) +zone = ('orz064', 0.0057396933794968061) + +[fips4108650] +centroid = (0.73424081769224248, -2.1694433701110332) +description = Brookings city, OR +station = ('kbok', 0.00016117835219499842) +zone = ('orz022', 0.0047665135540887887) + +[fips4108750] +centroid = (0.78628489537721657, -2.1460128485017851) +description = Brooks CDP, OR +station = ('ksle', 0.0026839079103214251) +zone = ('orz007', 0.0011148895138031213) + +[fips4109050] +centroid = (0.77479113430796309, -2.1464650458576839) +description = Brownsville city, OR +station = ('kcvo', 0.004183719079020592) +zone = ('orz008', 0.001961284377898997) + +[fips4109535] +centroid = (0.79261019547924672, -2.14390833048973) +description = Bull Mountain CDP, OR +station = ('khio', 0.0027594658861337658) +zone = ('orz006', 0.0014738706041532779) + +[fips4109600] +centroid = (0.7565420589155728, -2.1678618400093383) +description = Bunker Hill CDP, OR +station = ('koth', 0.0013261631026135693) +zone = ('orz021', 0.0029678098677493746) + +[fips4109800] +centroid = (0.76075868712192862, -2.078011574531677) +description = Burns city, OR +station = ('kbno', 0.0014216285403471243) +zone = ('orz061', 0.0092266088273151477) + +[fips4110050] +centroid = (0.74248826635278653, -2.1392391733149174) +description = Butte Falls town, OR +station = ('kmfr', 0.0048944987694360736) +zone = ('orz028', 0.0039316612321923785) + +[fips4110100] +centroid = (0.78980361877557725, -2.1438659713487844) +description = Butteville CDP, OR +station = ('kuao', 0.0008341964755928399) +zone = ('orz006', 0.0041673343965171854) + +[fips4110550] +centroid = (0.77578672247317815, -2.1231861410005566) +description = Camp Sherman CDP, OR +station = ('kbdn', 0.0084201473183144679) +zone = ('orz509', 0.0034789385063928452) + +[fips4110750] +centroid = (0.79002651477434949, -2.141313916009933) +description = Canby city, OR +station = ('kuao', 0.00099919534263277548) +zone = ('orz006', 0.0040594774413848216) + +[fips4110850] +centroid = (0.80091993494079461, -2.1635180471136826) +description = Cannon Beach city, OR +station = ('kast', 0.0046445334836605545) +zone = ('orz001', 0.0035195461556034122) + +[fips4110950] +centroid = (0.77480418937076789, -2.0760601568016073) +description = Canyon City town, OR +station = ('kgcd', 0.00017910446490233877) +zone = ('orz503', 0.010271330324131168) + +[fips4111000] +centroid = (0.749218535201157, -2.1516500525462163) +description = Canyonville city, OR +station = ('krbg', 0.0054184710222395611) +zone = ('orz023', 0.0062054052840935583) + +[fips4111050] +centroid = (0.79476763187422195, -2.1633060943293203) +description = Cape Meares CDP, OR +station = ('ktmk', 0.0026500533102109406) +zone = ('orz001', 0.0034079332563700768) + +[fips4111150] +centroid = (0.79053835003078932, -2.1498151006371322) +description = Carlton city, OR +station = ('kmmv', 0.0017283748464104766) +zone = ('orz007', 0.0044846643383215107) + +[fips4111600] +centroid = (0.79720027178565167, -2.1269942399888979) +description = Cascade Locks city, OR +station = ('kczk', 0.00025232863015928609) +zone = ('orz009', 0.00087901069272961505) + +[fips4111700] +centroid = (0.77480406719772033, -2.138074462745184) +description = Cascadia CDP, OR +station = ('ksle', 0.010790743950508656) +zone = ('orz010', 0.0070310927915480277) + +[fips4111850] +centroid = (0.73594712138216223, -2.1580663890220304) +description = Cave Junction city, OR +station = ('ksxt', 0.0083883485550123073) +zone = ('orz024', 0.0040944579722018322) + +[fips4111900] +centroid = (0.79720526342731235, -2.0694979806134963) +description = Cayuse CDP, OR +station = ('kmeh', 0.003383776933089003) +zone = ('orz507', 0.001895758845004742) + +[fips4112050] +centroid = (0.79420221500974586, -2.1433786405150421) +description = Cedar Hills CDP, OR +station = ('khio', 0.0019258642633279976) +zone = ('orz006', 0.00041350417495053299) + +[fips4112150] +centroid = (0.79474454116821813, -2.143276748193311) +description = Cedar Mill CDP, OR +station = ('kpdx', 0.002590893569857723) +zone = ('orz006', 0.00085578669786104151) + +[fips4112400] +centroid = (0.73961473881901063, -2.145196749996845) +description = Central Point city, OR +station = ('kmfr', 0.0003710244859840023) +zone = ('orz026', 0.0017555846943773528) + +[fips4112800] +centroid = (0.79615851966172135, -2.1159369683122757) +description = Chenoweth CDP, OR +station = ('kdls', 0.00082514639482670813) +zone = ('waz024', 0.0047468491825528973) + +[fips4113050] +centroid = (0.7430986603520866, -2.1269935244039044) +description = Chiloquin city, OR +station = ('klmt', 0.0076931940460984059) +zone = ('orz029', 0.0043656891947119183) + +[fips4113750] +centroid = (0.80465801131954584, -2.1503349469548385) +description = Clatskanie city, OR +station = ('kkls', 0.0036990286562589747) +zone = ('orz005', 0.0026320050643096572) + +[fips4114200] +centroid = (0.78889943350328917, -2.1621865703339211) +description = Cloverdale CDP, OR +station = ('ktmk', 0.0039358343592751427) +zone = ('orz001', 0.0089490595487028042) + +[fips4114400] +centroid = (0.77035684609059107, -2.1477822632974566) +description = Coburg city, OR +station = ('keug', 0.0019785329082660529) +zone = ('orz008', 0.0048162589436575726) + +[fips4114750] +centroid = (0.80106329628555328, -2.143480777182869) +description = Columbia City city, OR +station = ('kspb', 0.0023776846000014809) +zone = ('orz005', 0.0033954523455511313) + +[fips4115000] +centroid = (0.78952675719633336, -2.0976383953822992) +description = Condon city, OR +station = ('kdls', 0.013724274155467215) +zone = ('orz508', 0.0029282984039393665) + +[fips4115250] +centroid = (0.75714405788117067, -2.1682700899746723) +description = Coos Bay city, OR +station = ('koth', 0.00065730641102192393) +zone = ('orz021', 0.0036245244098031819) + +[fips4115350] +centroid = (0.75363894805097564, -2.1674225231833191) +description = Coquille city, OR +station = ('koth', 0.0042087570341090485) +zone = ('orz021', 0.00034971475605382262) + +[fips4115550] +centroid = (0.79446965181102902, -2.1476802313493852) +description = Cornelius city, OR +station = ('khio', 0.001365530028931804) +zone = ('orz006', 0.0033626825671641694) + +[fips4115800] +centroid = (0.7778923574959542, -2.1516119869152304) +description = Corvallis city, OR +station = ('kcvo', 0.00122245421686197) +zone = ('orz008', 0.00331402147312139) + +[fips4115950] +centroid = (0.7643539606612817, -2.1477815477124635) +description = Cottage Grove city, OR +station = ('keug', 0.0062413986326184008) +zone = ('orz012', 0.0039727703440694366) + +[fips4116250] +centroid = (0.79057128439377455, -2.0561805075555415) +description = Cove city, OR +station = ('klgd', 0.0023383958312311131) +zone = ('orz049', 0.0021941720207928391) + +[fips4116350] +centroid = (0.77907384067979912, -2.1451133581651844) +description = Crabtree CDP, OR +station = ('ksle', 0.0047249874178114677) +zone = ('orz008', 0.0049465178857381218) + +[fips4116450] +centroid = (0.75778558855432632, -2.0697419252830476) +description = Crane CDP, OR +station = ('kbno', 0.0055818967702806876) +zone = ('orz061', 0.0078453794132237343) + +[fips4116650] +centroid = (0.77415976145105414, -2.1443966910677306) +description = Crawfordsville CDP, OR +station = ('kcvo', 0.0057888660763260802) +zone = ('orz008', 0.0035389538800257359) + +[fips4116950] +centroid = (0.76659225816050192, -2.1469989246225767) +description = Creswell city, OR +station = ('keug', 0.004473241945666253) +zone = ('orz012', 0.0027599818122264821) + +[fips4117300] +centroid = (0.77707967983634807, -2.1155309174617991) +description = Culver city, OR +station = ('krdm', 0.0048688100524344443) +zone = ('orz509', 0.0062245438379689051) + +[fips4117700] +centroid = (0.78403760943234868, -2.1522278612483818) +description = Dallas city, OR +station = ('kmmv', 0.0053358817472217253) +zone = ('orz007', 0.0040063406703299735) + +[fips4117800] +centroid = (0.7928437728930412, -2.1370358173073223) +description = Damascus city, OR +station = ('kttd', 0.0021779114581212049) +zone = ('orz006', 0.0042836550707085414) + +[fips4118150] +centroid = (0.74997658405517564, -2.1496477235618658) +description = Days Creek CDP, OR +station = ('krbg', 0.0051534322803841633) +zone = ('orz023', 0.006222423701330213) + +[fips4118250] +centroid = (0.78923513013161761, -2.1481180297389555) +description = Dayton city, OR +station = ('kmmv', 0.00076238185699266218) +zone = ('orz007', 0.0029218869008828144) + +[fips4118300] +centroid = (0.77609138714740622, -2.086230853578094) +description = Dayville town, OR +station = ('kgcd', 0.0072260386406441703) +zone = ('orz505', 0.0055698708663266035) + +[fips4118450] +centroid = (0.80168198059880025, -2.1441328496447065) +description = Deer Island CDP, OR +station = ('kspb', 0.0029102239242087134) +zone = ('orz005', 0.0026414181544460102) + +[fips4118850] +centroid = (0.78206704544038441, -2.165249832610681) +description = Depoe Bay city, OR +station = ('konp', 0.0039944674220429958) +zone = ('orz002', 0.005098366359164299) + +[fips4119020] +centroid = (0.76772577969650224, -2.1181158897103427) +description = Deschutes River Woods CDP, OR +station = ('kbdn', 0.002681127644446698) +zone = ('orz509', 0.0053754374478315369) + +[fips4119100] +centroid = (0.78075171295620394, -2.1319487235898267) +description = Detroit city, OR +station = ('kuao', 0.01178125444520696) +zone = ('orz011', 0.0038838163249467865) + +[fips4119600] +centroid = (0.75238070528662782, -2.1541934685052699) +description = Dillard CDP, OR +station = ('krbg', 0.002389034484870311) +zone = ('orz023', 0.002671490926125686) + +[fips4120100] +centroid = (0.78927618027562463, -2.1439379487271362) +description = Donald city, OR +station = ('kuao', 0.0010084874825397891) +zone = ('orz007', 0.0039079091157798503) + +[fips4120500] +centroid = (0.76204578017881186, -2.1522402007261929) +description = Drain city, OR +station = ('krbg', 0.0074954446835889497) +zone = ('orz023', 0.0072194512174566655) + +[fips4120900] +centroid = (0.79330588371909172, -2.1140984210249325) +description = Dufur city, OR +station = ('kdls', 0.0028922027408880518) +zone = ('waz024', 0.0056358658723073465) + +[fips4121050] +centroid = (0.79021174656786364, -2.1468844310236457) +description = Dundee city, OR +station = ('kmmv', 0.0020359070292320959) +zone = ('orz007', 0.0039063342598767052) + +[fips4121150] +centroid = (0.76632250007131364, -2.1659418731123896) +description = Dunes City city, OR +station = ('koth', 0.0087675946729665593) +zone = ('orz004', 0.0095165086437834726) + +[fips4121250] +centroid = (0.79228338257681086, -2.1425309340973486) +description = Durham city, OR +station = ('kuao', 0.0025241480385808719) +zone = ('orz006', 0.0016630057865421764) + +[fips4121450] +centroid = (0.77250751060806855, -2.1170765286874875) +description = Eagle Crest CDP, OR +station = ('krdm', 0.0020873479113416391) +zone = ('orz509', 0.0031505173633220719) + +[fips4121550] +centroid = (0.74120112093602575, -2.1432916882117081) +description = Eagle Point city, OR +station = ('kmfr', 0.001810424066042392) +zone = ('orz026', 0.00056985909969404418) + +[fips4122200] +centroid = (0.79836704184390239, -2.0802934005424421) +description = Echo city, OR +station = ('khri', 0.0018186178711841958) +zone = ('orz044', 0.0033651722081248689) + +[fips4122550] +centroid = (0.79524909840167712, -2.058115100311622) +description = Elgin city, OR +station = ('klgd', 0.0049996396708041858) +zone = ('orz502', 0.0024962493805633971) + +[fips4122800] +centroid = (0.76161681315525664, -2.1566884864841662) +description = Elkton city, OR +station = ('krbg', 0.0075799682528615636) +zone = ('orz023', 0.006752492471523818) + +[fips4123500] +centroid = (0.79283056075060354, -2.0468957748139518) +description = Enterprise city, OR +station = ('klgd', 0.0091920169303703302) +zone = ('orz050', 0.0015287737807724066) + +[fips4123550] +centroid = (0.78420001231924674, -2.1488708251519255) +description = Eola CDP, OR +station = ('ksle', 0.0015951151821164777) +zone = ('orz007', 0.0023213772049619917) + +[fips4123800] +centroid = (0.79059128586700234, -2.1350937021821652) +description = Estacada city, OR +station = ('kttd', 0.0045270041723955894) +zone = ('orz006', 0.006441726714365166) + +[fips4123850] +centroid = (0.7689353103214267, -2.1487831747168906) +description = Eugene city, OR +station = ('keug', 0.0018363946053966775) +zone = ('orz012', 0.0047037484809824663) + +[fips4124100] +centroid = (0.7576630315342513, -2.1505858380348126) +description = Fair Oaks CDP, OR +station = ('krbg', 0.003514246859014661) +zone = ('orz023', 0.0039352000345478574) + +[fips4124250] +centroid = (0.79495312546712404, -2.1369270134817526) +description = Fairview city, OR +station = ('kttd', 0.00025123661516727227) +zone = ('waz039', 0.003522701915493033) + +[fips4124550] +centroid = (0.78303854806192208, -2.1543908303370856) +description = Falls City city, OR +station = ('kcvo', 0.0066482505449079899) +zone = ('orz007', 0.0058347472718614634) + +[fips4126050] +centroid = (0.76779882172569813, -2.1660662801814716) +description = Florence city, OR +station = ('koth', 0.01019716128659748) +zone = ('orz004', 0.0083639747147323824) + +[fips4126165] +centroid = (0.7398125369831392, -2.1492150389870037) +description = Foots Creek CDP, OR +station = ('kmfr', 0.0033221105304646458) +zone = ('orz026', 0.0040345171790355889) + +[fips4126200] +centroid = (0.79455007658296084, -2.1486851221195136) +description = Forest Grove city, OR +station = ('khio', 0.0020135486555651161) +zone = ('orz003', 0.0053691361306783822) + +[fips4126400] +centroid = (0.78656969820455691, -2.1565372362511881) +description = Fort Hill CDP, OR +station = ('kmmv', 0.0057478948926228219) +zone = ('orz007', 0.0063247692419059242) + +[fips4126650] +centroid = (0.78536315209265328, -2.0981421672175946) +description = Fossil city, OR +station = ('kdls', 0.015910289551463924) +zone = ('orz508', 0.0065804253890494619) + +[fips4126750] +centroid = (0.78417097004049352, -2.1462696387946307) +description = Four Corners CDP, OR +station = ('ksle', 0.00062176596162621283) +zone = ('orz007', 0.0023586586859999964) + +[fips4127350] +centroid = (0.74033084741110389, -2.152017234914251) +description = Fruitdale CDP, OR +station = ('ksxt', 0.0032880912521673512) +zone = ('orz024', 0.0057269249982579828) + +[fips4127825] +centroid = (0.79348320917109438, -2.1425866450070723) +description = Garden Home-Whitford CDP, OR +station = ('kpdx', 0.0028770735568977644) +zone = ('orz006', 0.00050502413027332617) + +[fips4127850] +centroid = (0.76327998975935962, -2.166072423740439) +description = Gardiner CDP, OR +station = ('koth', 0.0058057504792802042) +zone = ('orz021', 0.009650088519824622) + +[fips4128000] +centroid = (0.79518551605702703, -2.1626609333713205) +description = Garibaldi city, OR +station = ('ktmk', 0.0027521308131241633) +zone = ('orz001', 0.0028409413631712154) + +[fips4128100] +centroid = (0.79300195208314939, -2.1492633846072842) +description = Gaston city, OR +station = ('khio', 0.0030983202443598651) +zone = ('orz003', 0.0060325084159754761) + +[fips4128200] +centroid = (0.7811396647423372, -2.1366343915793635) +description = Gates city, OR +station = ('kuao', 0.0096241099656720897) +zone = ('orz010', 0.0010026263218278278) + +[fips4128450] +centroid = (0.80336632804672992, -2.162775252437326) +description = Gearhart city, OR +station = ('kast', 0.0021443240838951326) +zone = ('orz001', 0.0056650038173760194) + +[fips4128650] +centroid = (0.78727926181195529, -2.1449428744038497) +description = Gervais city, OR +station = ('kuao', 0.0029495807529086862) +zone = ('orz007', 0.0020926876308887889) + +[fips4129000] +centroid = (0.79212902565776444, -2.1396484704778023) +description = Gladstone city, OR +station = ('kuao', 0.0031870004713605102) +zone = ('orz006', 0.0029267485117046477) + +[fips4129100] +centroid = (0.75813070996061571, -2.1676148933734738) +description = Glasgow CDP, OR +station = ('koth', 0.00078573987120220102) +zone = ('orz021', 0.004506667818029211) + +[fips4129350] +centroid = (0.74592056104658866, -2.1542490223353612) +description = Glendale city, OR +station = ('ksxt', 0.0025411005638380337) +zone = ('orz024', 0.0072977574539842584) + +[fips4129750] +centroid = (0.75554947271667128, -2.1479624510894326) +description = Glide CDP, OR +station = ('krbg', 0.0037027428893017253) +zone = ('orz025', 0.0046648125184638361) + +[fips4129900] +centroid = (0.74025167927623337, -2.1715763893497728) +description = Gold Beach city, OR +station = ('kbok', 0.0061556768462326158) +zone = ('orz022', 0.0019971882037190486) + +[fips4129950] +centroid = (0.7406439594789116, -2.1476727787934791) +description = Gold Hill city, OR +station = ('kmfr', 0.0023653260058409914) +zone = ('orz026', 0.0027133499631305825) + +[fips4130165] +centroid = (0.79702104392476436, -2.0720985037456754) +description = Gopher Flats CDP, OR +station = ('kmeh', 0.0045540872884887538) +zone = ('orz507', 0.0010157542021376027) + +[fips4130250] +centroid = (0.79067301963587322, -2.1249834112510904) +description = Government Camp CDP, OR +station = ('kczk', 0.0065588092600333365) +zone = ('orz014', 0.0053255413029173089) + +[fips4130300] +centroid = (0.78668693197041351, -2.1575941901929037) +description = Grand Ronde CDP, OR +station = ('kmmv', 0.0063955425943576227) +zone = ('orz007', 0.0070753147787871121) + +[fips4130500] +centroid = (0.7820866629411769, -2.0668056706159548) +description = Granite city, OR +station = ('klgd', 0.0097415301150538987) +zone = ('orz503', 0.0074553850177805931) + +[fips4130550] +centroid = (0.74061498701332862, -2.152569823608725) +description = Grants Pass city, OR +station = ('ksxt', 0.0029271735303863745) +zone = ('orz024', 0.0053530101087021298) + +[fips4130650] +centroid = (0.79166489024978159, -2.1080811889891717) +description = Grass Valley city, OR +station = ('kdls', 0.0064900417651237233) +zone = ('orz041', 0.0057620745519529372) + +[fips4130750] +centroid = (0.75313398939178855, -2.1535164203818362) +description = Green CDP, OR +station = ('krbg', 0.00150713950446642) +zone = ('orz023', 0.0020617523538913303) + +[fips4131050] +centroid = (0.7803142985390692, -2.0681583007862505) +description = Greenhorn city, OR +station = ('kgcd', 0.007888374059346507) +zone = ('orz503', 0.0075625623096483244) + +[fips4131250] +centroid = (0.79416528384277374, -2.1370092184895215) +description = Gresham city, OR +station = ('kttd', 0.00088631540640245633) +zone = ('orz006', 0.0041691453442945598) + +[fips4131600] +centroid = (0.78386702095125871, -2.0584335007270633) +description = Haines city, OR +station = ('kbke', 0.0020514289476262705) +zone = ('orz062', 0.0048236582388173164) + +[fips4131650] +centroid = (0.78326873953696752, -2.0439500430090209) +description = Halfway city, OR +station = ('kbke', 0.0087813660113274933) +zone = ('idz033', 0.0096156053153161076) + +[fips4131750] +centroid = (0.7746275795037586, -2.148665173006163) +description = Halsey city, OR +station = ('kcvo', 0.0029787223960261642) +zone = ('orz008', 0.00057475432933648269) + +[fips4132050] +centroid = (0.79305319494998794, -2.138251875463649) +description = Happy Valley city, OR +station = ('kttd', 0.0022723872136840807) +zone = ('orz006', 0.0034050943187487739) + +[fips4132100] +centroid = (0.73368058445564477, -2.1686061531221439) +description = Harbor CDP, OR +station = ('kbok', 0.00082122187915986754) +zone = ('orz022', 0.0053643138283873499) + +[fips4132400] +centroid = (0.76544854390167005, -2.0529704979952732) +description = Harper CDP, OR +station = ('kono', 0.0081560769302565315) +zone = ('orz064', 0.0062792911762666751) + +[fips4132550] +centroid = (0.77266211187321021, -2.1495925886107954) +description = Harrisburg city, OR +station = ('keug', 0.0024840826954430789) +zone = ('orz008', 0.0024232429590619361) + +[fips4132850] +centroid = (0.78503780526678912, -2.1462997457242277) +description = Hayesville CDP, OR +station = ('ksle', 0.0014219642156617007) +zone = ('orz007', 0.0015872062647695492) + +[fips4133100] +centroid = (0.78934265986683305, -2.1617408830561318) +description = Hebo CDP, OR +station = ('ktmk', 0.003438072267948373) +zone = ('orz001', 0.0084859810126581298) + +[fips4133250] +centroid = (0.80024442270710261, -2.0709896262587133) +description = Helix city, OR +station = ('kmeh', 0.006534705197034146) +zone = ('orz507', 0.0023109316147282288) + +[fips4133550] +centroid = (0.79155907093723321, -2.0867255846078643) +description = Heppner city, OR +station = ('khri', 0.00911957352059844) +zone = ('orz508', 0.0054278075504726447) + +[fips4133700] +centroid = (0.79993324795476461, -2.0819299259688671) +description = Hermiston city, OR +station = ('khri', 0.00023283539676721688) +zone = ('orz044', 0.0026954413923611421) + +[fips4134100] +centroid = (0.79466179510838097, -2.1456579183450994) +description = Hillsboro city, OR +station = ('khio', 0.00037065162374209828) +zone = ('orz006', 0.0020394658444229529) + +[fips4134250] +centroid = (0.76021931056989223, -2.078372124648554) +description = Hines city, OR +station = ('kbno', 0.0018268190741691343) +zone = ('orz061', 0.008731690059154992) + +[fips4134650] +centroid = (0.77403582562086992, -2.1430126624241916) +description = Holley CDP, OR +station = ('kcvo', 0.0067409414335924045) +zone = ('orz008', 0.004529041114527098) + +[fips4134900] +centroid = (0.79777455492272786, -2.1210291583911869) +description = Hood River city, OR +station = ('kdls', 0.0046708246149287543) +zone = ('orz014', 0.0023131673751206872) + +[fips4135450] +centroid = (0.78857167812305706, -2.1433892521168945) +description = Hubbard city, OR +station = ('kuao', 0.0012897593983097865) +zone = ('orz007', 0.0037117112206563867) + +[fips4135700] +centroid = (0.77405605398690047, -2.0466910825992781) +description = Huntington city, OR +station = ('kono', 0.0066086087530471127) +zone = ('orz064', 0.0057989126201088989) + +[fips4135800] +centroid = (0.78030042317151571, -2.1311319618597708) +description = Idanha city, OR +station = ('kuao', 0.012500653447683439) +zone = ('orz011', 0.0040182475053373943) + +[fips4135850] +centroid = (0.79429454292717649, -2.161821988506472) +description = Idaville CDP, OR +station = ('ktmk', 0.0016963588503358911) +zone = ('orz001', 0.0035561948386701506) + +[fips4136050] +centroid = (0.79346326005774404, -2.0588456078700443) +description = Imbler city, OR +station = ('klgd', 0.0031525162830829513) +zone = ('orz049', 0.0015494046719840588) + +[fips4136150] +centroid = (0.78291602594843213, -2.1502051642716604) +description = Independence city, OR +station = ('ksle', 0.002553415268441783) +zone = ('orz007', 0.0038898418650377652) + +[fips4136400] +centroid = (0.79418073000665379, -2.0912505775864623) +description = Ione city, OR +station = ('khri', 0.0088722212808735271) +zone = ('orz508', 0.0035679645064280803) + +[fips4136500] +centroid = (0.80101969796083861, -2.0854718273396942) +description = Irrigon city, OR +station = ('khri', 0.0029059568438744988) +zone = ('orz044', 0.002625387178735587) + +[fips4136750] +centroid = (0.7912627314835371, -2.0603506401906242) +description = Island City city, OR +station = ('klgd', 0.001101377807332301) +zone = ('orz049', 0.0013690122048607067) + +[fips4137000] +centroid = (0.73849474358471334, -2.146216877491343) +description = Jacksonville city, OR +station = ('kmfr', 0.0016578880439047565) +zone = ('orz026', 0.0031022233656617768) + +[fips4137200] +centroid = (0.80550008032375564, -2.1616266338032961) +description = Jeffers Gardens CDP, OR +station = ('kast', 0.00037908644624743527) +zone = ('waz021', 0.0058619895543085797) + +[fips4137250] +centroid = (0.78044470954077816, -2.1468722835320517) +description = Jefferson city, OR +station = ('ksle', 0.0032092038900937117) +zone = ('orz008', 0.0056234861961980695) + +[fips4137400] +centroid = (0.79225460209744547, -2.1400674716713288) +description = Jennings Lodge CDP, OR +station = ('kuao', 0.0030978312593798471) +zone = ('orz006', 0.0026185336939356725) + +[fips4137550] +centroid = (0.77526520063938964, -2.0761054830022818) +description = John Day city, OR +station = ('kgcd', 0.00035309395509575847) +zone = ('orz503', 0.009809636470939789) + +[fips4137650] +centroid = (0.79245941648516705, -2.1394039498495983) +description = Johnson City city, OR +station = ('kpdx', 0.0031305799534636076) +zone = ('orz006', 0.0028831779827990563) + +[fips4137850] +centroid = (0.75013087116105204, -2.0430377768622963) +description = Jordan Valley city, OR +station = ('kreo', 0.012458797034929876) +zone = ('idz029', 0.0036373736932065696) + +[fips4137900] +centroid = (0.79155432364166778, -2.0460574582676343) +description = Joseph city, OR +station = ('klgd', 0.0095216250573644402) +zone = ('orz050', 0.0023403481675277728) + +[fips4138000] +centroid = (0.77178405417982443, -2.1504859353884287) +description = Junction City city, OR +station = ('keug', 0.001512512902688966) +zone = ('orz008', 0.0034133420468593738) + +[fips4138150] +centroid = (0.76355857921456294, -2.0608645523888738) +description = Juntura CDP, OR +station = ('kbno', 0.011299094261799114) +zone = ('orz063', 0.012139777265774395) + +[fips4138500] +centroid = (0.78545001712952511, -2.1471824459934239) +description = Keizer city, OR +station = ('ksle', 0.00182246670996157) +zone = ('orz007', 0.0009325595621725776) + +[fips4138900] +centroid = (0.73661151586851892, -2.1580810148811622) +description = Kerby CDP, OR +station = ('ksxt', 0.0077991352489541563) +zone = ('orz024', 0.0034632545969571515) + +[fips4139150] +centroid = (0.79238738674693709, -2.1433708214399934) +description = King City city, OR +station = ('kuao', 0.002670116979806974) +zone = ('orz006', 0.0015618316017825776) + +[fips4139350] +centroid = (0.78012749594922826, -2.1541970813368216) +description = Kings Valley CDP, OR +station = ('kcvo', 0.0038865049628297125) +zone = ('orz008', 0.0061944176810923065) + +[fips4139566] +centroid = (0.79725840870303555, -2.070830033351911) +description = Kirkpatrick CDP, OR +station = ('kmeh', 0.004023403251855422) +zone = ('orz507', 0.0010950634303722039) + +[fips4139700] +centroid = (0.73685348831601538, -2.1253740333909792) +description = Klamath Falls city, OR +station = ('klmt', 0.0014148133729985622) +zone = ('orz029', 0.0024008638492276474) + +[fips4140050] +centroid = (0.78573152128457924, -2.1462939686844034) +description = Labish Village CDP, OR +station = ('ksle', 0.0021041282773152986) +zone = ('orz007', 0.0010975393767456644) + +[fips4140150] +centroid = (0.77814396416092169, -2.142246253443056) +description = Lacomb CDP, OR +station = ('ksle', 0.0063720732614394801) +zone = ('orz010', 0.0049203191516861552) + +[fips4140300] +centroid = (0.78969458805720516, -2.148701022068999) +description = Lafayette city, OR +station = ('kmmv', 0.00084929289656591924) +zone = ('orz007', 0.0034477775887953202) + +[fips4140350] +centroid = (0.79106125067468691, -2.0610050513936593) +description = La Grande city, OR +station = ('klgd', 0.0012857858661161862) +zone = ('orz049', 0.0018697984270387492) + +[fips4140550] +centroid = (0.79259424316988358, -2.1415042267115703) +description = Lake Oswego city, OR +station = ('kuao', 0.0029513896326037238) +zone = ('orz006', 0.001668295493863152) + +[fips4140650] +centroid = (0.76067761657817334, -2.1671886316102591) +description = Lakeside city, OR +station = ('koth', 0.0030816811379283686) +zone = ('orz021', 0.0070292558083163573) + +[fips4140700] +centroid = (0.73637950925105133, -2.1005480163250061) +description = Lakeview town, OR +station = ('klkv', 0.00075085133393961324) +zone = ('caz070', 0.010695137156913248) + +[fips4140950] +centroid = (0.74919830683512645, -2.1721177032172787) +description = Langlois CDP, OR +station = ('koth', 0.0089473884804669619) +zone = ('orz021', 0.0058412084217200726) + +[fips4141050] +centroid = (0.76247350801859815, -2.1203236439476529) +description = La Pine city, OR +station = ('kbdn', 0.0079054946822019537) +zone = ('orz509', 0.010090455422830434) + +[fips4141650] +centroid = (0.77722134821173239, -2.1451493294010682) +description = Lebanon city, OR +station = ('ksle', 0.0065319093944631937) +zone = ('orz008', 0.0035949260919005488) + +[fips4142200] +centroid = (0.79318512438814615, -2.0889488373689322) +description = Lexington town, OR +station = ('khri', 0.0084906412226358335) +zone = ('orz508', 0.0042504311677832663) + +[fips4142550] +centroid = (0.78318449249397382, -2.1647589238519727) +description = Lincoln Beach CDP, OR +station = ('konp', 0.0051224188742497352) +zone = ('orz002', 0.0061909403588693446) + +[fips4142600] +centroid = (0.78491453266172073, -2.1643504120872512) +description = Lincoln City city, OR +station = ('konp', 0.0068697913426721928) +zone = ('orz002', 0.0079191624953967848) + +[fips4143400] +centroid = (0.78694623553738219, -2.0923721087105012) +description = Lonerock city, OR +station = ('khri', 0.015034258939125467) +zone = ('orz508', 0.0046924918644420032) + +[fips4143550] +centroid = (0.78040917463720749, -2.0787612283519938) +description = Long Creek city, OR +station = ('kgcd', 0.0057689804232370469) +zone = ('orz503', 0.0049422549653553713) + +[fips4143650] +centroid = (0.75371698172183221, -2.1554799332436225) +description = Lookingglass CDP, OR +station = ('krbg', 0.0020865752448480631) +zone = ('orz023', 0.0014614701256909126) + +[fips4143900] +centroid = (0.79390008106293319, -2.0495347126429673) +description = Lostine city, OR +station = ('klgd', 0.0078436930844473663) +zone = ('orz050', 0.0030134681073323896) + +[fips4144050] +centroid = (0.76655174906856316, -2.1429590459095706) +description = Lowell city, OR +station = ('keug', 0.0065972825047186899) +zone = ('orz012', 0.00015294648843456013) + +[fips4144300] +centroid = (0.78154552360659602, -2.139980275021899) +description = Lyons city, OR +station = ('ksle', 0.0052457084057258548) +zone = ('orz010', 0.0016709257561502865) + +[fips4145000] +centroid = (0.78908070339940117, -2.1501030276038335) +description = McMinnville city, OR +station = ('kmmv', 0.00074447389728603079) +zone = ('orz007', 0.0032668053641339992) + +[fips4145250] +centroid = (0.77908736698150216, -2.1140677904965597) +description = Madras city, OR +station = ('krdm', 0.0067796090879990679) +zone = ('orz042', 0.0067580028427939058) + +[fips4145400] +centroid = (0.7332715665454399, -2.1189997768034305) +description = Malin city, OR +station = ('klmt', 0.0046361168806760287) +zone = ('caz084', 0.0039392672707221337) + +[fips4145700] +centroid = (0.79790487865797433, -2.1630750825495264) +description = Manzanita city, OR +station = ('ktmk', 0.0053971972690328241) +zone = ('orz001', 0.0013588214609840958) + +[fips4145900] +centroid = (0.78105665688311243, -2.1454935083295612) +description = Marion CDP, OR +station = ('ksle', 0.0027460212789307014) +zone = ('orz007', 0.0054851732466058125) + +[fips4146500] +centroid = (0.78839587110750375, -2.1133663775767682) +description = Maupin city, OR +station = ('kdls', 0.0078263413309289428) +zone = ('orz042', 0.0027930138580808455) + +[fips4146730] +centroid = (0.79504140422068981, -2.139106563198351) +description = Maywood Park city, OR +station = ('kpdx', 0.00071230541440639168) +zone = ('orz006', 0.0029146980192652767) + +[fips4147000] +centroid = (0.73891823027441728, -2.1442110578484885) +description = Medford city, OR +station = ('kmfr', 0.00089309936297869296) +zone = ('orz026', 0.0022420330744816128) + +[fips4147300] +centroid = (0.78175463150427749, -2.1402650080360694) +description = Mehama CDP, OR +station = ('ksle', 0.0049775965060519182) +zone = ('orz010', 0.0018500943630877812) + +[fips4147350] +centroid = (0.75490483535744712, -2.1547391282426136) +description = Melrose CDP, OR +station = ('krbg', 0.0014080814810463467) +zone = ('orz023', 0.00015927498235758915) + +[fips4147650] +centroid = (0.74207994657428245, -2.1542598433767233) +description = Merlin CDP, OR +station = ('ksxt', 0.0016457995174953635) +zone = ('orz024', 0.0046217328504014618) + +[fips4147700] +centroid = (0.73349233324252472, -2.1223352057237466) +description = Merrill city, OR +station = ('klmt', 0.0026330518462754529) +zone = ('caz084', 0.0028683060070267869) + +[fips4147750] +centroid = (0.77819813918090353, -2.1149207329020094) +description = Metolius city, OR +station = ('krdm', 0.0059139471098691746) +zone = ('orz509', 0.0073514405210775924) + +[fips4147800] +centroid = (0.79323826966386946, -2.1426063497743271) +description = Metzger CDP, OR +station = ('kpdx', 0.0030691925105582295) +zone = ('orz006', 0.00072287273664277266) + +[fips4148150] +centroid = (0.78106801897654288, -2.1376426508349482) +description = Mill City city, OR +station = ('ksle', 0.006960642222762289) +zone = ('orz010', 0.00076104655997208935) + +[fips4148300] +centroid = (0.77979054268383818, -2.1480240263054431) +description = Millersburg city, OR +station = ('ksle', 0.0039659111745785763) +zone = ('orz008', 0.0047946390967349211) + +[fips4148600] +centroid = (0.80171444372288736, -2.0663180779828254) +description = Milton-Freewater city, OR +station = ('kalw', 0.0031655073593280163) +zone = ('orz507', 0.0053779344401752331) + +[fips4148650] +centroid = (0.79314958948457559, -2.1401386985581028) +description = Milwaukie city, OR +station = ('kpdx', 0.002443089088327962) +zone = ('orz006', 0.002114867875481936) + +[fips4149000] +centroid = (0.79689230843913728, -2.071104154764229) +description = Mission CDP, OR +station = ('kmeh', 0.0039208172188070932) +zone = ('orz507', 0.0012799843519964659) + +[fips4149150] +centroid = (0.77795613182682199, -2.0970593125897796) +description = Mitchell city, OR +station = ('kbdn', 0.015562976540490717) +zone = ('orz505', 0.005358665733059007) + +[fips4149450] +centroid = (0.78803404690027268, -2.139463692469894) +description = Molalla city, OR +station = ('kuao', 0.0028510150876967853) +zone = ('orz007', 0.0059811070151324034) + +[fips4149550] +centroid = (0.78278900088547199, -2.150741503950798) +description = Monmouth city, OR +station = ('ksle', 0.0029541477543977494) +zone = ('orz007', 0.0041911814517230058) + +[fips4149600] +centroid = (0.77347499897232663, -2.1519711407687057) +description = Monroe city, OR +station = ('kcvo', 0.003202377854359696) +zone = ('orz008', 0.002551540831373612) + +[fips4149750] +centroid = (0.7822704810179969, -2.0842869058572226) +description = Monument city, OR +station = ('kgcd', 0.0093126056428591945) +zone = ('orz505', 0.0047440441793147542) + +[fips4150000] +centroid = (0.793842240851522, -2.1071945617291585) +description = Moro city, OR +station = ('kdls', 0.0057814139727958352) +zone = ('orz041', 0.0036009930969066548) + +[fips4150050] +centroid = (0.79735330225446654, -2.1187979469287299) +description = Mosier city, OR +station = ('kdls', 0.0030658725773070718) +zone = ('orz014', 0.0028382256564008666) + +[fips4150150] +centroid = (0.7866250076885527, -2.1432006692912164) +description = Mount Angel city, OR +station = ('kuao', 0.0031576850846635933) +zone = ('orz007', 0.0031131665304614301) + +[fips4150200] +centroid = (0.79471644136726094, -2.1217306934840261) +description = Mount Hood CDP, OR +station = ('kdls', 0.0050904621531921495) +zone = ('orz014', 0.00084430664794863156) + +[fips4150235] +centroid = (0.79105128484465792, -2.1291358113409724) +description = Mount Hood Village CDP, OR +station = ('kczk', 0.0061243792792000607) +zone = ('orz009', 0.0054605062105582058) + +[fips4150250] +centroid = (0.77522109616919177, -2.0789170688009042) +description = Mount Vernon city, OR +station = ('kgcd', 0.0019324240596872079) +zone = ('orz505', 0.0099697786745512641) + +[fips4150450] +centroid = (0.78927289905663078, -2.1390273950634802) +description = Mulino CDP, OR +station = ('kuao', 0.0026198748061259328) +zone = ('orz006', 0.005402432055507723) + +[fips4150950] +centroid = (0.7509080139170875, -2.1516157393731223) +description = Myrtle Creek city, OR +station = ('krbg', 0.0037677278147674551) +zone = ('orz023', 0.0046701616162546731) + +[fips4151050] +centroid = (0.75157322870819265, -2.1665308344684751) +description = Myrtle Point city, OR +station = ('koth', 0.0063665686082729853) +zone = ('orz021', 0.0020990873392707204) + +[fips4151500] +centroid = (0.79817992509479607, -2.1631575493566828) +description = Neahkahnie CDP, OR +station = ('ktmk', 0.0056773166559614405) +zone = ('orz001', 0.0014590392581741755) + +[fips4151700] +centroid = (0.79794720289233512, -2.1623625518823997) +description = Nehalem city, OR +station = ('ktmk', 0.0053192032629734449) +zone = ('orz001', 0.00086818002913537334) + +[fips4151950] +centroid = (0.74189925263682355, -2.171228667402898) +description = Nesika Beach CDP, OR +station = ('kbok', 0.0076992626884691351) +zone = ('orz022', 0.0031724619275982926) + +[fips4152000] +centroid = (0.78750692255958543, -2.1637947167067084) +description = Neskowin CDP, OR +station = ('ktmk', 0.0056069607151982325) +zone = ('orz001', 0.01047891072607058) + +[fips4152050] +centroid = (0.79300123649815601, -2.1630630921375653) +description = Netarts CDP, OR +station = ('ktmk', 0.0015477957443938324) +zone = ('orz001', 0.0050025810494980566) + +[fips4152100] +centroid = (0.7907574935716698, -2.1460594662461054) +description = Newberg city, OR +station = ('kmmv', 0.0028318922029875555) +zone = ('orz006', 0.0038448350878677435) + +[fips4152275] +centroid = (0.73948362968560077, -2.1530198393030591) +description = New Hope CDP, OR +station = ('ksxt', 0.0040278564189402) +zone = ('orz024', 0.0049815579131789849) + +[fips4152400] +centroid = (0.73306390727103776, -2.0997073784907831) +description = New Pine Creek CDP, OR +station = ('klkv', 0.0031380828134223034) +zone = ('caz070', 0.007372719398965253) + +[fips4152450] +centroid = (0.77878107915106964, -2.1649594796363196) +description = Newport city, OR +station = ('konp', 0.00073260957431015472) +zone = ('orz002', 0.001813838746396023) + +[fips4153000] +centroid = (0.75759793075315196, -2.1683007728629224) +description = North Bend city, OR +station = ('koth', 0.00025731599157780249) +zone = ('orz021', 0.0040690983760695897) + +[fips4153150] +centroid = (0.79581704599356862, -2.1466789883173933) +description = North Plains city, OR +station = ('khio', 0.0009913069185825804) +zone = ('orz006', 0.0032294962079023738) + +[fips4153300] +centroid = (0.78591952815160404, -2.0581001428399324) +description = North Powder city, OR +station = ('kbke', 0.003662114277304473) +zone = ('orz049', 0.0060130653710284846) + +[fips4153750] +centroid = (0.76581342243509198, -2.0419583954396927) +description = Nyssa city, OR +station = ('kono', 0.002436761515741361) +zone = ('orz064', 0.0034664855469812164) + +[fips4153900] +centroid = (0.79260031691568045, -2.14037485905919) +description = Oak Grove CDP, OR +station = ('kpdx', 0.0030085915350702851) +zone = ('orz006', 0.0022356810222106788) + +[fips4153988] +centroid = (0.79482936416986505, -2.1439855438558384) +description = Oak Hills CDP, OR +station = ('khio', 0.0013389922931639462) +zone = ('orz006', 0.0011643801293345136) + +[fips4154000] +centroid = (0.75787428618691266, -2.151941539984592) +description = Oakland city, OR +station = ('krbg', 0.0033775476097830507) +zone = ('orz023', 0.0034404441520483001) + +[fips4154100] +centroid = (0.76349440345796715, -2.137422041217496) +description = Oakridge city, OR +station = ('keug', 0.011623773527781423) +zone = ('orz013', 0.0031923919127157295) + +[fips4154325] +centroid = (0.792590228912604, -2.1396625203782809) +description = Oatfield CDP, OR +station = ('kpdx', 0.002990036834181177) +zone = ('orz006', 0.0026604473696654708) + +[fips4154350] +centroid = (0.73443414781348593, -2.159044698427651) +description = O'Brien CDP, OR +station = ('kbok', 0.0075900498117731745) +zone = ('orz024', 0.0054392151569354523) + +[fips4154450] +centroid = (0.79333768361806301, -2.1635322191872084) +description = Oceanside CDP, OR +station = ('ktmk', 0.0019500831602119455) +zone = ('orz001', 0.0047845671872688827) + +[fips4154550] +centroid = (0.79648906756875648, -2.1214866440947198) +description = Odell CDP, OR +station = ('kdls', 0.0047175184119751801) +zone = ('orz014', 0.0009901665256126116) + +[fips4154900] +centroid = (0.76839678898072394, -2.0416166599721524) +description = Ontario city, OR +station = ('kono', 0.00053496588256675371) +zone = ('orz064', 0.0026042174101959838) + +[fips4155200] +centroid = (0.79135523393389273, -2.1396397438315424) +description = Oregon City city, OR +station = ('kuao', 0.002668626817213228) +zone = ('orz006', 0.0034597450469423959) + +[fips4156150] +centroid = (0.78899930124308826, -2.1634049846847381) +description = Pacific City CDP, OR +station = ('ktmk', 0.0041267320778353312) +zone = ('orz001', 0.0089614555382413422) + +[fips4156250] +centroid = (0.74512725654167955, -2.1039180725776818) +description = Paisley city, OR +station = ('klkv', 0.0093698107263147871) +zone = ('orz031', 0.0043032101689933072) + +[fips4156500] +centroid = (0.79435243549846501, -2.1221820705351768) +description = Parkdale CDP, OR +station = ('kczk', 0.0044546103738809855) +zone = ('orz014', 0.0012093960426840325) + +[fips4157150] +centroid = (0.79717152621287124, -2.073762745000622) +description = Pendleton city, OR +station = ('kmeh', 0.0056212989184720825) +zone = ('orz507', 0.0015351045016388457) + +[fips4157300] +centroid = (0.77581234390659737, -2.1503192564448632) +description = Peoria CDP, OR +station = ('kcvo', 0.0013072763471937785) +zone = ('orz008', 0.0011015482024391491) + +[fips4157450] +centroid = (0.7774040841844162, -2.1530299098528429) +description = Philomath city, OR +station = ('kcvo', 0.0011981914803705274) +zone = ('orz008', 0.0036049017531218949) + +[fips4157500] +centroid = (0.73783485204782673, -2.1435290529899791) +description = Phoenix city, OR +station = ('kmfr', 0.0020881342608594488) +zone = ('orz026', 0.0033459483022927599) + +[fips4157650] +centroid = (0.79401342274455766, -2.0739692523577178) +description = Pilot Rock city, OR +station = ('kmeh', 0.0050680486035497426) +zone = ('orz507', 0.0042605267584836523) + +[fips4157850] +centroid = (0.78737928663138701, -2.1180501431574204) +description = Pine Grove CDP, OR +station = ('kdls', 0.0090813665045062827) +zone = ('orz042', 0.0044293954357350566) + +[fips4157875] +centroid = (0.78950378866337723, -2.1167999987208015) +description = Pine Hollow CDP, OR +station = ('kdls', 0.0068098552572984335) +zone = ('orz042', 0.0049690892526043865) + +[fips4158050] +centroid = (0.73806226844936162, -2.1711682091976092) +description = Pistol River CDP, OR +station = ('kbok', 0.003981507264090833) +zone = ('orz022', 0.0015765286666206103) + +[fips4158550] +centroid = (0.7401076197997738, -2.0926377652759474) +description = Plush CDP, OR +station = ('klkv', 0.0076878529714423469) +zone = ('orz031', 0.0083935707000249386) + +[fips4159000] +centroid = (0.79476972626932441, -2.1406458214255619) +description = Portland city, OR +station = ('kpdx', 0.0010140137705391523) +zone = ('orz006', 0.001822250602074423) + +[fips4159250] +centroid = (0.74611561904379142, -2.1729020716364178) +description = Port Orford city, OR +station = ('koth', 0.012069913430114917) +zone = ('orz022', 0.0075466788915371872) + +[fips4159600] +centroid = (0.74849319381732071, -2.1654887681852792) +description = Powers city, OR +station = ('koth', 0.0095395013360759506) +zone = ('orz021', 0.0052658643253813203) + +[fips4159650] +centroid = (0.77599260151174332, -2.071869534001106) +description = Prairie City city, OR +station = ('kgcd', 0.0033005973288151073) +zone = ('orz503', 0.0096447918138556493) + +[fips4159750] +centroid = (0.80369211120490724, -2.1447991290866555) +description = Prescott city, OR +station = ('kkls', 0.0012044465551517536) +zone = ('orz005', 0.0015318333230944256) + +[fips4159850] +centroid = (0.77318169639152889, -2.1093730467949126) +description = Prineville city, OR +station = ('krdm', 0.0035477557377398428) +zone = ('orz506', 0.010881857079920383) + +[fips4160070] +centroid = (0.7712286205986697, -2.115018872765849) +description = Pronghorn CDP, OR +station = ('krdm', 0.0012372591663309368) +zone = ('orz509', 0.0048064069672851904) + +[fips4160100] +centroid = (0.74620984937010659, -2.137524195338615) +description = Prospect CDP, OR +station = ('kmfr', 0.0083713298578733681) +zone = ('orz026', 0.0069769167906557576) + +[fips4160850] +centroid = (0.80448648036065984, -2.1459760918677375) +description = Rainier city, OR +station = ('kkls', 0.00078099200796178953) +zone = ('orz005', 0.0012583711886699244) + +[fips4160900] +centroid = (0.7938644763461925, -2.1425063249548955) +description = Raleigh Hills CDP, OR +station = ('kpdx', 0.0025699313046057847) +zone = ('orz006', 0.00031377711744331311) + +[fips4161200] +centroid = (0.77253077584699759, -2.1149923786678038) +description = Redmond city, OR +station = ('krdm', 0.00062597694135151083) +zone = ('orz509', 0.0046429574527201613) + +[fips4161250] +centroid = (0.74038359126109921, -2.153612989449349) +description = Redwood CDP, OR +station = ('ksxt', 0.0031448822026954883) +zone = ('orz024', 0.0045596564656781684) + +[fips4161300] +centroid = (0.76268888164829407, -2.1661616100652159) +description = Reedsport city, OR +station = ('koth', 0.0052255831829459204) +zone = ('orz021', 0.0090560563768856475) + +[fips4161700] +centroid = (0.78134556123419507, -2.0449861228128823) +description = Richland city, OR +station = ('kbke', 0.0081010520378252994) +zone = ('orz062', 0.0063587451698793197) + +[fips4161800] +centroid = (0.78420948945708502, -2.1508453335879993) +description = Rickreall CDP, OR +station = ('ksle', 0.0029495591583754447) +zone = ('orz007', 0.0031351720473366158) + +[fips4161850] +centroid = (0.74969220010685578, -2.1531162163843542) +description = Riddle city, OR +station = ('krbg', 0.0048753034480465383) +zone = ('orz023', 0.0054530029418749367) + +[fips4162250] +centroid = (0.79212323116464778, -2.1421062954903385) +description = Rivergrove city, OR +station = ('kuao', 0.0023962529495539127) +zone = ('orz006', 0.0018916364343858358) + +[fips4162412] +centroid = (0.79720962675044238, -2.072347963655663) +description = Riverside CDP, OR +station = ('kmeh', 0.0048051555762402614) +zone = ('orz507', 0.00086892393396810117) + +[fips4162900] +centroid = (0.79616461086081081, -2.1631447909998509) +description = Rockaway Beach city, OR +station = ('ktmk', 0.0037812457299462449) +zone = ('orz001', 0.0021702949667732545) + +[fips4163010] +centroid = (0.79503972870460793, -2.1445863036376673) +description = Rockcreek CDP, OR +station = ('khio', 0.00090854311402385388) +zone = ('orz006', 0.0016038131697454232) + +[fips4163450] +centroid = (0.74063978814199938, -2.1496910775404854) +description = Rogue River city, OR +station = ('kmfr', 0.0037826365979191728) +zone = ('orz026', 0.0041856755356378568) + +[fips4163650] +centroid = (0.75437207360327574, -2.15290695140704) +description = Roseburg city, OR +station = ('krbg', 0.00019451764617111421) +zone = ('orz023', 0.0014080580866922398) + +[fips4163660] +centroid = (0.75511771316631293, -2.1521261958194531) +description = Roseburg North CDP, OR +station = ('krbg', 0.0007714252667293212) +zone = ('orz023', 0.001812443193942023) + +[fips4163800] +centroid = (0.78572242811917636, -2.162256156611198) +description = Rose Lodge CDP, OR +station = ('ktmk', 0.0070716912047126971) +zone = ('orz002', 0.008871351460182848) + +[fips4163950] +centroid = (0.79709375434140239, -2.1166471253316197) +description = Rowena CDP, OR +station = ('kdls', 0.0016172941996094343) +zone = ('waz024', 0.0049475293257270781) + +[fips4164150] +centroid = (0.73707641922137268, -2.1474587316140146) +description = Ruch CDP, OR +station = ('kmfr', 0.003337764782939818) +zone = ('orz026', 0.00479145108545508) + +[fips4164200] +centroid = (0.79742337722393408, -2.1074263414538232) +description = Rufus city, OR +station = ('kdls', 0.0052775438177789617) +zone = ('waz024', 0.0016900170530596806) + +[fips4164600] +centroid = (0.80036514713146312, -2.143540292910362) +description = St. Helens city, OR +station = ('kspb', 0.0017025073825364051) +zone = ('orz005', 0.0038903188590001447) + +[fips4164850] +centroid = (0.78910255492163617, -2.1463565736446726) +description = St. Paul city, OR +station = ('kmmv', 0.0019321399244008502) +zone = ('orz007', 0.0028989090858377756) + +[fips4164900] +centroid = (0.78406637245842148, -2.1471584826227939) +description = Salem city, OR +station = ('ksle', 0.00050266453276206829) +zone = ('orz007', 0.0022911238455664636) + +[fips4165250] +centroid = (0.79234584791073959, -2.1339931848223204) +description = Sandy city, OR +station = ('kttd', 0.0032103022684356187) +zone = ('waz023', 0.006170391400493162) + +[fips4165500] +centroid = (0.79860334197132998, -2.1446031111583639) +description = Scappoose city, OR +station = ('kspb', 0.00021403024845791514) +zone = ('orz006', 0.0048239086905790211) + +[fips4165650] +centroid = (0.7802409598039004, -2.1441514723078257) +description = Scio city, OR +station = ('ksle', 0.0038798700824844924) +zone = ('orz008', 0.0062941841927883395) + +[fips4165800] +centroid = (0.78611371348418091, -2.1409771896373457) +description = Scotts Mills city, OR +station = ('kuao', 0.0038409601392892919) +zone = ('orz007', 0.0046768974586969018) + +[fips4165950] +centroid = (0.80265980131223003, -2.1628287293256072) +description = Seaside city, OR +station = ('kast', 0.0028463462703022051) +zone = ('orz001', 0.0049838557894785864) + +[fips4166150] +centroid = (0.73792035572788195, -2.1574897671437565) +description = Selma CDP, OR +station = ('ksxt', 0.0064407137840247208) +zone = ('orz024', 0.0025491933611150558) + +[fips4166200] +centroid = (0.77030488763875915, -2.0765276606950462) +description = Seneca city, OR +station = ('kgcd', 0.0046257723116791515) +zone = ('orz506', 0.012938376645846437) + +[fips4166385] +centroid = (0.76807266388533602, -2.1184981342698221) +description = Seventh Mountain CDP, OR +station = ('kbdn', 0.0026903202420983409) +zone = ('orz509', 0.0049429798225202231) + +[fips4166550] +centroid = (0.74360313031908309, -2.1436025138981956) +description = Shady Cove city, OR +station = ('kmfr', 0.0039608737328131532) +zone = ('orz026', 0.0024688923490942941) + +[fips4166700] +centroid = (0.78546127450320047, -2.1075237657326698) +description = Shaniko city, OR +station = ('kdls', 0.011847458204594348) +zone = ('orz042', 0.0033412886089345074) + +[fips4166900] +centroid = (0.77593769345347563, -2.1487081953722247) +description = Shedd CDP, OR +station = ('kcvo', 0.0022573381168996109) +zone = ('orz008', 0.00093378483346516635) + +[fips4167050] +centroid = (0.78705968193876197, -2.1536725575367197) +description = Sheridan city, OR +station = ('kmmv', 0.0037185567036830069) +zone = ('orz007', 0.0043562866540439752) + +[fips4167100] +centroid = (0.79167757879344358, -2.1440153017195849) +description = Sherwood city, OR +station = ('kuao', 0.0021330908924261909) +zone = ('orz006', 0.0023651013879543389) + +[fips4167500] +centroid = (0.78054325083034581, -2.1627893197910972) +description = Siletz city, OR +station = ('konp', 0.0030162600415873189) +zone = ('orz002', 0.0037518285711435396) + +[fips4167600] +centroid = (0.75269749999915736, -2.1127118267473928) +description = Silver Lake CDP, OR +station = ('kbdn', 0.01692540079142597) +zone = ('orz030', 0.0065556527713226216) + +[fips4167650] +centroid = (0.78545888340212511, -2.142932290012137) +description = Silverton city, OR +station = ('ksle', 0.0032527817756370534) +zone = ('orz007', 0.0034064829187940549) + +[fips4167950] +centroid = (0.77304266346331507, -2.1215067677409949) +description = Sisters city, OR +station = ('kbdn', 0.005656586418981) +zone = ('orz509', 0.00051329696724760016) + +[fips4168550] +centroid = (0.77637554420292343, -2.1444699599897294) +description = Sodaville city, OR +station = ('kcvo', 0.0051661155761243693) +zone = ('orz008', 0.0036098238305857897) + +[fips4168875] +centroid = (0.7767543330104838, -2.1448907588723851) +description = South Lebanon CDP, OR +station = ('kcvo', 0.0048572548024995955) +zone = ('orz008', 0.0034972079740323743) + +[fips4169450] +centroid = (0.78248538340879492, -2.0908043143500197) +description = Spray town, OR +station = ('kgcd', 0.01282822594483287) +zone = ('orz505', 0.0017794059137132019) + +[fips4169600] +centroid = (0.76888642364907844, -2.1464272943859632) +description = Springfield city, OR +station = ('keug', 0.0032603238606796307) +zone = ('orz012', 0.0033272013413633309) + +[fips4169800] +centroid = (0.79192265792700867, -2.1411493140081777) +description = Stafford CDP, OR +station = ('kuao', 0.002415214540245493) +zone = ('orz006', 0.0023627818514140907) + +[fips4169900] +centroid = (0.79909793337476009, -2.0807653550254734) +description = Stanfield city, OR +station = ('khri', 0.0010240495728447009) +zone = ('orz044', 0.0031123143433486405) + +[fips4170200] +centroid = (0.78200396924121729, -2.1432618954413765) +description = Stayton city, OR +station = ('ksle', 0.0029750498695519964) +zone = ('orz007', 0.005306822924019388) + +[fips4170700] +centroid = (0.78241806605954556, -2.1431338057275728) +description = Sublimity city, OR +station = ('ksle', 0.0028481711008483293) +zone = ('orz007', 0.0050303979064809708) + +[fips4170850] +centroid = (0.79394505819775696, -2.0595587843089942) +description = Summerville town, OR +station = ('klgd', 0.0036021333191594371) +zone = ('orz049', 0.0021243556150639968) + +[fips4170870] +centroid = (0.77904523473335896, -2.156818757859535) +description = Summit CDP, OR +station = ('kcvo', 0.0043511460639498647) +zone = ('orz004', 0.0049126169634065237) + +[fips4171000] +centroid = (0.7809222141708313, -2.0629348619475896) +description = Sumpter city, OR +station = ('kbke', 0.0049703277515340807) +zone = ('orz062', 0.0065025488069552079) + +[fips4171250] +centroid = (0.76588759892830172, -2.1194402106401711) +description = Sunriver CDP, OR +station = ('kbdn', 0.004676555041278849) +zone = ('orz509', 0.0068013239996773849) + +[fips4171650] +centroid = (0.75728010629636366, -2.1523800539591553) +description = Sutherlin city, OR +station = ('krbg', 0.0027387906016638646) +zone = ('orz023', 0.0027711766766603972) + +[fips4171950] +centroid = (0.77499650720104518, -2.1415447358035093) +description = Sweet Home city, OR +station = ('keug', 0.0079861623245570702) +zone = ('orz008', 0.0054570306946137041) + +[fips4172400] +centroid = (0.73375099103767027, -2.1576164082342815) +description = Takilma CDP, OR +station = ('ksxt', 0.010301794999425405) +zone = ('orz024', 0.0062981516303861861) + +[fips4172500] +centroid = (0.73723442387855564, -2.14293452403358) +description = Talent city, OR +station = ('kmfr', 0.0028217683623623902) +zone = ('orz026', 0.0040106291902734246) + +[fips4172600] +centroid = (0.77750386465775279, -2.1486911609587254) +description = Tangent city, OR +station = ('kcvo', 0.0023010500209115566) +zone = ('orz008', 0.002461423503190036) + +[fips4172800] +centroid = (0.77411192197625689, -2.1150044737995199) +description = Terrebonne CDP, OR +station = ('krdm', 0.0018987910099565063) +zone = ('orz509', 0.0048935192793979655) + +[fips4172820] +centroid = (0.76862411811579623, -2.1182486045466646) +description = Tetherow CDP, OR +station = ('kbdn', 0.0022728403549645941) +zone = ('orz509', 0.0045404724895477698) + +[fips4172950] +centroid = (0.79581409638713274, -2.1145025345599393) +description = The Dalles city, OR +station = ('kdls', 0.00039002647603066088) +zone = ('waz024', 0.0040238733615453864) + +[fips4173225] +centroid = (0.7650920778552428, -2.1199580672825307) +description = Three Rivers CDP, OR +station = ('kbdn', 0.0055336852231937985) +zone = ('orz509', 0.007517322591901558) + +[fips4173650] +centroid = (0.79279083705682818, -2.1428911700549604) +description = Tigard city, OR +station = ('kuao', 0.0030328981077908934) +zone = ('orz006', 0.0011304396774057363) + +[fips4173700] +centroid = (0.79335709167934521, -2.1613367520678324) +description = Tillamook city, OR +station = ('ktmk', 0.00070170871924934227) +zone = ('orz001', 0.0044631132484220454) + +[fips4174000] +centroid = (0.77875530063801768, -2.1630511715387737) +description = Toledo city, OR +station = ('konp', 0.0016894296510091857) +zone = ('orz002', 0.0020420255463339367) + +[fips4174400] +centroid = (0.7446782531383116, -2.1434956473880962) +description = Trail CDP, OR +station = ('kmfr', 0.0050309512136471994) +zone = ('orz026', 0.0035453131426263105) + +[fips4174650] +centroid = (0.75030364130370697, -2.1519910724287632) +description = Tri-City CDP, OR +station = ('krbg', 0.004307728763245899) +zone = ('orz023', 0.0051032507030170518) + +[fips4174850] +centroid = (0.79480426633522139, -2.1361613026323178) +description = Troutdale city, OR +station = ('kttd', 0.00034760180898370013) +zone = ('waz039', 0.0038563993120443955) + +[fips4174950] +centroid = (0.79197309794239124, -2.1427473374713037) +description = Tualatin city, OR +station = ('kuao', 0.0022120807214371552) +zone = ('orz006', 0.0019525253490097884) + +[fips4175050] +centroid = (0.77066871897462996, -2.1175728130602924) +description = Tumalo CDP, OR +station = ('kbdn', 0.0019750260376180414) +zone = ('orz509', 0.0033600521019551831) + +[fips4175150] +centroid = (0.78275320418251348, -2.1459056329258348) +description = Turner city, OR +station = ('ksle', 0.0010824105964646364) +zone = ('orz007', 0.0037768190060429273) + +[fips4175185] +centroid = (0.79611837708892552, -2.0718174184696418) +description = Tutuilla CDP, OR +station = ('kmeh', 0.0039283386712722409) +zone = ('orz507', 0.0019144421784136575) + +[fips4175500] +centroid = (0.78961840443535558, -2.1148028533643299) +description = Tygh Valley CDP, OR +station = ('kdls', 0.0065427008639466142) +zone = ('orz042', 0.0042991553494392282) + +[fips4175550] +centroid = (0.78774542180187035, -2.0757729803264842) +description = Ukiah city, OR +station = ('kmeh', 0.0092000389014785522) +zone = ('orz503', 0.0027160239639455815) + +[fips4175600] +centroid = (0.80243133771314401, -2.0682315348016642) +description = Umapine CDP, OR +station = ('kalw', 0.0034117425544527157) +zone = ('orz507', 0.0051031135596366238) + +[fips4175650] +centroid = (0.80140227413287557, -2.0827482410419571) +description = Umatilla city, OR +station = ('khri', 0.0016656093808217643) +zone = ('orz044', 0.0034200869606456825) + +[fips4175850] +centroid = (0.78904438309766722, -2.0571833039305671) +description = Union city, OR +station = ('klgd', 0.0020787650992148774) +zone = ('orz049', 0.0030536756020632773) + +[fips4176250] +centroid = (0.77578047419445595, -2.0627368543439508) +description = Unity city, OR +station = ('kbke', 0.0081275580212971221) +zone = ('orz062', 0.0078075677324553382) + +[fips4176600] +centroid = (0.76766479789243747, -2.0462545408467694) +description = Vale city, OR +station = ('kono', 0.0028829627188210146) +zone = ('orz064', 0.001003169722751393) + +[fips4177050] +centroid = (0.76876779361982039, -2.1528869499338121) +description = Veneta city, OR +station = ('keug', 0.0022610866859778152) +zone = ('orz008', 0.0068361184531205944) + +[fips4177250] +centroid = (0.80043258665376016, -2.1499579209298227) +description = Vernonia city, OR +station = ('kspb', 0.0041941056785190153) +zone = ('orz005', 0.0036501283894476754) + +[fips4178000] +centroid = (0.77524676996248865, -2.1653642389431496) +description = Waldport city, OR +station = ('konp', 0.0028276912622350625) +zone = ('orz002', 0.0018533244884501572) + +[fips4178150] +centroid = (0.79535273605266055, -2.0512617857509858) +description = Wallowa city, OR +station = ('klgd', 0.007643939888817057) +zone = ('orz050', 0.0044889401934841023) + +[fips4178160] +centroid = (0.7906428952529837, -2.0457919936884057) +description = Wallowa Lake CDP, OR +station = ('klgd', 0.0096400550262417447) +zone = ('orz050', 0.0032036906229966754) + +[fips4178300] +centroid = (0.78933595780250543, -2.1169563976750729) +description = Wamic CDP, OR +station = ('kdls', 0.00699743187505772) +zone = ('orz042', 0.0049167490672692004) + +[fips4178600] +centroid = (0.78176079251653707, -2.1161816809266978) +description = Warm Springs CDP, OR +station = ('krdm', 0.0095602091388616531) +zone = ('orz042', 0.0048456519297126318) + +[fips4178800] +centroid = (0.79964046897274244, -2.1447084243254291) +description = Warren CDP, OR +station = ('kspb', 0.00088337977185748711) +zone = ('orz005', 0.0041100676182582669) + +[fips4178900] +centroid = (0.80582239027672142, -2.1628583126564287) +description = Warrenton city, OR +station = ('kast', 0.0005920377351843997) +zone = ('waz021', 0.0057056224497743554) + +[fips4178950] +centroid = (0.79572468316955303, -2.106568669206101) +description = Wasco city, OR +station = ('kdls', 0.0057454281928743878) +zone = ('orz041', 0.0020220230542249504) + +[fips4179050] +centroid = (0.77657870052785549, -2.1436880350315435) +description = Waterloo town, OR +station = ('ksle', 0.0074024352901705739) +zone = ('orz008', 0.0042033841315494667) + +[fips4179950] +centroid = (0.7637198127308622, -2.1380715305920406) +description = Westfir city, OR +station = ('keug', 0.011111973202155895) +zone = ('orz013', 0.003497262286906598) + +[fips4180025] +centroid = (0.79440915869915485, -2.1426690070944741) +description = West Haven-Sylvan CDP, OR +station = ('kvuo', 0.0022526006374459628) +zone = ('orz006', 0.00052588640900709679) + +[fips4180150] +centroid = (0.79180566850724743, -2.1404657558066336) +description = West Linn city, OR +station = ('kuao', 0.0025708537515120801) +zone = ('orz006', 0.0027394310317894717) + +[fips4180350] +centroid = (0.79964797388852604, -2.0669213335854848) +description = Weston city, OR +station = ('kmeh', 0.0052334797344645734) +zone = ('orz507', 0.0038570827826958538) + +[fips4180400] +centroid = (0.80512577701237287, -2.1532373945943202) +description = Westport CDP, OR +station = ('kast', 0.0062003175832431355) +zone = ('orz005', 0.0046608908675906139) + +[fips4180750] +centroid = (0.78033375896022894, -2.1446818778675065) +description = West Scio CDP, OR +station = ('ksle', 0.0036303940730688881) +zone = ('orz008', 0.0061658357472156831) + +[fips4180900] +centroid = (0.79405686398963982, -2.1427950896796379) +description = West Slope CDP, OR +station = ('kvuo', 0.0025867458880984629) +zone = ('orz006', 0.00017279280783923055) + +[fips4181300] +centroid = (0.79739321793445961, -2.162239000024651) +description = Wheeler city, OR +station = ('ktmk', 0.0047590581658994774) +zone = ('orz001', 0.00088151099070670489) + +[fips4181450] +centroid = (0.7405722788065322, -2.1438268759735397) +description = White City CDP, OR +station = ('kmfr', 0.0010701751536322298) +zone = ('orz026', 0.00061043866407012955) + +[fips4182350] +centroid = (0.78676910207159734, -2.1552164583397415) +description = Willamina city, OR +station = ('kmmv', 0.0048183967094915809) +zone = ('orz007', 0.005404303332690279) + +[fips4182450] +centroid = (0.73686811417514719, -2.1518549716536928) +description = Williams CDP, OR +station = ('kmfr', 0.0060033896675879316) +zone = ('orz024', 0.0065526495592567145) + +[fips4182800] +centroid = (0.79083071013379092, -2.1427567797025566) +description = Wilsonville city, OR +station = ('kuao', 0.001070498725600286) +zone = ('orz006', 0.003092771427036115) + +[fips4182850] +centroid = (0.74268147430098241, -2.1493015375047326) +description = Wimer CDP, OR +station = ('ksxt', 0.0029558196526322661) +zone = ('orz026', 0.0041522448589338089) + +[fips4183050] +centroid = (0.76231192543644843, -2.1673101414327829) +description = Winchester Bay CDP, OR +station = ('koth', 0.0046391335423492967) +zone = ('orz021', 0.0086653994188055899) + +[fips4183400] +centroid = (0.7525882423879825, -2.1541573401897538) +description = Winston city, OR +station = ('krbg', 0.0021894596283691288) +zone = ('orz023', 0.0024688279445312248) + +[fips4183750] +centroid = (0.7879757179966711, -2.1442865258853447) +description = Woodburn city, OR +station = ('kuao', 0.0021133898146867909) +zone = ('orz007', 0.0028495089615282062) + +[fips4183950] +centroid = (0.7947494455434162, -2.1366406747646702) +description = Wood Village city, OR +station = ('kttd', 0.00025240032749175963) +zone = ('waz039', 0.0037801151113458723) + +[fips4184200] +centroid = (0.77339270669809501, -2.1659854888903971) +description = Yachats city, OR +station = ('konp', 0.004711594481605145) +zone = ('orz002', 0.0037550594836059273) + +[fips4184250] +centroid = (0.79135149892929346, -2.149984607014086) +description = Yamhill city, OR +station = ('kmmv', 0.0025432663077785624) +zone = ('orz007', 0.005290819024675107) + +[fips4184600] +centroid = (0.76097409565820973, -2.1518664733734636) +description = Yoncalla city, OR +station = ('krbg', 0.0064508736483917389) +zone = ('orz023', 0.0062652521746830994) + +[fips42001] +centroid = (0.69585353997839605, -1.347703629416001) +description = Adams County, PA +station = ('kryt', 0.0037452892547529646) +zone = ('paz064', 3.5485869428577604e-05) + +[fips4200100] +centroid = (0.71391345658645511, -1.3517798807906189) +description = Aaronsburg CDP, PA +station = ('kunv', 0.0053461990051329759) +zone = ('paz045', 0.0031819187791232921) + +[fips4200100116] +centroid = (0.69606819802309894, -1.3437776508899799) +description = Abbottstown borough, PA +station = ('kthv', 0.0015870854763505376) +zone = ('paz065', 0.003627009658489624) + +[fips4200102928] +centroid = (0.69679488331045925, -1.3491375395695619) +description = Arendtsville borough, PA +station = ('kryt', 0.0037994829643859676) +zone = ('paz064', 0.0014233403527776206) + +[fips4200104] +centroid = (0.69832138318083858, -1.3962794586245819) +description = Aaronsburg CDP, PA +station = ('kafj', 0.0043353887115375892) +zone = ('paz075', 0.0032518427138242033) + +[fips4200105536] +centroid = (0.69780490534858841, -1.3482548916602433) +description = Bendersville borough, PA +station = ('kryt', 0.0050093863681408765) +zone = ('paz064', 0.001961547897472422) + +[fips4200105880] +centroid = (0.69564561890460597, -1.3439663558887056) +description = Berwick township, PA +station = ('kthv', 0.0019126890739921028) +zone = ('paz064', 0.0028811602703764467) + +[fips4200106296] +centroid = (0.69691592189408502, -1.3482026015958537) +description = Biglerville borough, PA +station = ('kryt', 0.0042763618166827512) +zone = ('paz064', 0.0010951966059635704) + +[fips4200107560] +centroid = (0.69482301032155613, -1.3462817096744011) +description = Bonneauville borough, PA +station = ('kdmw', 0.0038872204617770908) +zone = ('paz064', 0.0015274849531531427) + +[fips4200110456] +centroid = (0.69672034029810659, -1.3480686824823482) +description = Butler township, PA +station = ('kryt', 0.0041804074635097789) +zone = ('paz064', 0.00087657141929571212) + +[fips4200111472] +centroid = (0.69376363037218047, -1.35061471643528) +description = Carroll Valley borough, PA +station = ('kryt', 0.0007007618238281107) +zone = ('paz064', 0.0030834019285797217) + +[fips4200115632] +centroid = (0.69460594372248552, -1.3443144443547232) +description = Conewago township, PA +station = ('kthv', 0.0027962851441128227) +zone = ('paz064', 0.0029036494500831699) + +[fips4200116] +centroid = (0.69606819802309894, -1.3437776508899799) +description = Abbottstown borough, PA +station = ('kthv', 0.0015870854763505376) +zone = ('paz065', 0.003627009658489624) + +[fips4200117640] +centroid = (0.69471825565985135, -1.3483076180569462) +description = Cumberland township, PA +station = ('kryt', 0.0027144178679486472) +zone = ('paz064', 0.0012583774197755483) + +[fips4200120792] +centroid = (0.69702915885595451, -1.3435450159539817) +description = East Berlin borough, PA +station = ('kthv', 0.0013338346135754319) +zone = ('paz065', 0.0033984740396748665) + +[fips4200124560] +centroid = (0.69444942259516662, -1.3503578737825563) +description = Fairfield borough, PA +station = ('kryt', 0.00130895303380779) +zone = ('paz064', 0.00249352894705261) + +[fips4200127320] +centroid = (0.69637399716134085, -1.3504442152206526) +description = Franklin township, PA +station = ('kryt', 0.0030460978257692427) +zone = ('paz064', 0.0021559245722337934) + +[fips4200127704] +centroid = (0.69395898507535636, -1.3490415290074098) +description = Freedom township, PA +station = ('kryt', 0.0018982313301007282) +zone = ('paz064', 0.0021854397967426271) + +[fips4200128936] +centroid = (0.69349387228299231, -1.3457827374945486) +description = Germany township, PA +station = ('kdmw', 0.0025349552752685642) +zone = ('paz064', 0.0028144114505984389) + +[fips4200128960] +centroid = (0.69517506068497581, -1.3479901601193007) +description = Gettysburg borough, PA +station = ('kryt', 0.0031596781112126077) +zone = ('paz064', 0.00074634652284630894) + +[fips4200132144] +centroid = (0.69638150207712446, -1.3442635156471501) +description = Hamilton township, PA +station = ('kthv', 0.0018617107217377871) +zone = ('paz064', 0.0026874871287634579) + +[fips4200132200] +centroid = (0.69469537439335782, -1.3511408110317085) +description = Hamiltonban township, PA +station = ('kryt', 0.0012925379057216989) +zone = ('paz064', 0.0028945622665118875) + +[fips4200134424] +centroid = (0.69499649604920433, -1.3496399675013337) +description = Highland township, PA +station = ('kryt', 0.0020820361366010744) +zone = ('paz064', 0.0017320148579408727) + +[fips4200136424] +centroid = (0.69814119538886266, -1.3463493411829159) +description = Huntington township, PA +station = ('kthv', 0.0037344180942852942) +zone = ('paz064', 0.0024810550565557716) + +[fips4200141672] +centroid = (0.69839259261431985, -1.3454902203119143) +description = Latimore township, PA +station = ('kthv', 0.0032638064455224967) +zone = ('paz064', 0.0030258338054120685) + +[fips4200143056] +centroid = (0.69357311023103296, -1.3501355013825598) +description = Liberty township, PA +station = ('kryt', 0.00099091792055775699) +zone = ('paz064', 0.0029740345836052726) + +[fips4200143944] +centroid = (0.69368409571816714, -1.3454606020745079) +description = Littlestown borough, PA +station = ('kdmw', 0.0025880454958545169) +zone = ('paz064', 0.0027996834261166258) + +[fips4200146376] +centroid = (0.69470260005646101, -1.3442506700238555) +description = McSherrystown borough, PA +station = ('kthv', 0.0026919024149795489) +zone = ('paz064', 0.0029067950495565193) + +[fips4200148608] +centroid = (0.69777495549862412, -1.3491955543138983) +description = Menallen township, PA +station = ('kryt', 0.0046751931919005304) +zone = ('paz064', 0.0022047287040246003) + +[fips4200151640] +centroid = (0.69407586977536229, -1.3469880967825609) +description = Mount Joy township, PA +station = ('kdmw', 0.0035471684148322032) +zone = ('paz064', 0.001895207847655969) + +[fips4200151776] +centroid = (0.69507971334793939, -1.3457908707288628) +description = Mount Pleasant township, PA +station = ('kthv', 0.0034088221775633522) +zone = ('paz064', 0.0016787134550441739) + +[fips4200153920] +centroid = (0.69574061717579205, -1.3448717977980551) +description = New Oxford borough, PA +station = ('kthv', 0.0024882977405108388) +zone = ('paz064', 0.0021808480032050217) + +[fips4200157472] +centroid = (0.69550320003764332, -1.3446865310979561) +description = Oxford township, PA +station = ('kthv', 0.0024613980367965177) +zone = ('paz064', 0.0023501006879236759) + +[fips4200163616] +centroid = (0.69727327805843098, -1.3445906776154364) +description = Reading township, PA +station = ('kthv', 0.0021716373311376634) +zone = ('paz064', 0.0027619955919507624) + +[fips4200174680] +centroid = (0.69605470662798097, -1.3468679308635612) +description = Straban township, PA +station = ('kthv', 0.0038865529415388314) +zone = ('paz064', 0.00066461903229092165) + +[fips4200178160] +centroid = (0.69730263449644947, -1.3466621739980433) +description = Tyrone township, PA +station = ('kthv', 0.0037294041512003096) +zone = ('paz064', 0.0016248888565333097) + +[fips4200178264] +centroid = (0.69387100302776317, -1.3447735357611679) +description = Union township, PA +station = ('kdmw', 0.0026017359115440117) +zone = ('paz064', 0.0030245667409053391) + +[fips4200187136] +centroid = (0.69829504616242599, -1.3459238299112797) +description = York Springs borough, PA +station = ('kthv', 0.0035048673731347575) +zone = ('paz064', 0.0027672393987380824) + +[fips4200244] +centroid = (0.71268844489106531, -1.3129496559659086) +description = Ackermanville CDP, PA +station = ('kabe', 0.0043651382591456556) +zone = ('paz062', 0.0017550744481813351) + +[fips42003] +centroid = (0.70631589872618361, -1.3959303927741831) +description = Allegheny County, PA +station = ('kagc', 0.0022443312365544813) +zone = ('paz021', 4.2671472651389456e-06) + +[fips4200300724] +centroid = (0.7074326825546573, -1.3987691184426745) +description = Aleppo township, PA +station = ('kpit', 0.0014722646733077967) +zone = ('paz021', 0.0024280080489829975) + +[fips4200303320] +centroid = (0.70673249136534222, -1.3945714794185802) +description = Aspinwall borough, PA +station = ('kagc', 0.002498687449557121) +zone = ('paz021', 0.0011186466341014123) + +[fips4200303608] +centroid = (0.70687862778361166, -1.3974594931851478) +description = Avalon borough, PA +station = ('kpit', 0.0022094624455062189) +zone = ('paz021', 0.0012895567160887964) + +[fips4200303928] +centroid = (0.70475709281134991, -1.3953146580673719) +description = Baldwin borough, PA +station = ('kagc', 0.00064457977568400807) +zone = ('paz021', 0.0016268270963144191) + +[fips4200303932] +centroid = (0.70476650013601827, -1.3965128615054512) +description = Baldwin township, PA +station = ('kagc', 0.0014008234122927432) +zone = ('paz021', 0.0016085639848209805) + +[fips4200305216] +centroid = (0.70842509422063371, -1.3992967663821374) +description = Bell Acres borough, PA +station = ('kpit', 0.0020185168204498332) +zone = ('paz020', 0.0028304126913194644) + +[fips4200305312] +centroid = (0.70675275463795773, -1.3972293017101023) +description = Bellevue borough, PA +station = ('kpit', 0.002369882134959791) +zone = ('paz021', 0.0010776991937612552) + +[fips4200305504] +centroid = (0.70694838859381381, -1.3976969801364667) +description = Ben Avon borough, PA +station = ('kpit', 0.0020426084151236265) +zone = ('paz021', 0.001482545683009416) + +[fips4200305520] +centroid = (0.70707724625248869, -1.3975390103858687) +description = Ben Avon Heights borough, PA +station = ('kpit', 0.0021870326054916323) +zone = ('paz021', 0.001438889796366771) + +[fips4200306064] +centroid = (0.70378463025872373, -1.3968981429378289) +description = Bethel Park municipality, PA +station = ('kagc', 0.0016564059099691932) +zone = ('paz021', 0.0026333334644877979) + +[fips4200307000] +centroid = (0.7067312347282807, -1.3938247577514071) +description = Blawnox borough, PA +station = ('kagc', 0.0026011335845092056) +zone = ('paz021', 0.0016586981882862561) + +[fips4200307976] +centroid = (0.70874455928691882, -1.3917330155494769) +description = Brackenridge borough, PA +station = ('kbtp', 0.0041288660642557293) +zone = ('paz021', 0.0040134271584893865) + +[fips4200307992] +centroid = (0.70514331672152375, -1.3939704229307786) +description = Braddock borough, PA +station = ('kagc', 0.0011060822349510738) +zone = ('paz021', 0.0018991178844899) + +[fips4200308008] +centroid = (0.70536556694847274, -1.3938424204834372) +description = Braddock Hills borough, PA +station = ('kagc', 0.0013446828894536937) +zone = ('paz021', 0.0018536950342923286) + +[fips4200308064] +centroid = (0.70924831366892194, -1.3976753380537421) +description = Bradford Woods borough, PA +station = ('kbtp', 0.0030867020082104612) +zone = ('paz021', 0.0032185880420612426) + +[fips4200308416] +centroid = (0.70464821917261045, -1.3958408224769707) +description = Brentwood borough, PA +station = ('kagc', 0.00088574420326597918) +zone = ('paz021', 0.0016671367674856942) + +[fips4200308624] +centroid = (0.70439584456277204, -1.3981717096930091) +description = Bridgeville borough, PA +station = ('kpit', 0.0027258613734669483) +zone = ('paz021', 0.0025647640044199377) + +[fips4200311336] +centroid = (0.70525199837404551, -1.3977648036311991) +description = Carnegie borough, PA +station = ('kpit', 0.0023577030007891821) +zone = ('paz021', 0.001751105416762967) + +[fips4200311680] +centroid = (0.70452709332252206, -1.3966028855882691) +description = Castle Shannon borough, PA +station = ('kagc', 0.0013967397347262099) +zone = ('paz021', 0.0018576003034139533) + +[fips4200312496] +centroid = (0.70528969748588854, -1.3934465623557923) +description = Chalfant borough, PA +station = ('kagc', 0.0014758743607201615) +zone = ('paz021', 0.0021532691006765632) + +[fips4200313392] +centroid = (0.70760939714142157, -1.3927793578893402) +description = Cheswick borough, PA +station = ('kagc', 0.0037062231098828526) +zone = ('paz021', 0.002726993387886702) + +[fips4200313608] +centroid = (0.705791078220109, -1.3934988000603046) +description = Churchill borough, PA +station = ('kagc', 0.0018440152533978386) +zone = ('paz021', 0.0019262695009704049) + +[fips4200313704] +centroid = (0.70332513742655112, -1.3942723299847886) +description = Clairton city, PA +station = ('kagc', 0.0010024992633278066) +zone = ('paz021', 0.0032460277182836408) + +[fips4200315216] +centroid = (0.70512324543512572, -1.3985903443673926) +description = Collier township, PA +station = ('kpit', 0.0019622635608597485) +zone = ('paz021', 0.0023455125020006998) + +[fips4200316144] +centroid = (0.70711347928776003, -1.3990877806575033) +description = Coraopolis borough, PA +station = ('kpit', 0.0010949072908471112) +zone = ('paz021', 0.0025273250609525238) + +[fips4200316848] +centroid = (0.70569501529807921, -1.3975042957870467) +description = Crafton borough, PA +station = ('kpit', 0.0023244011033075724) +zone = ('paz021', 0.0013447815797275786) + +[fips4200317048] +centroid = (0.7078663270606077, -1.4002423159576978) +description = Crescent township, PA +station = ('kpit', 0.0013008123131746081) +zone = ('paz020', 0.0027034408337773207) + +[fips4200319576] +centroid = (0.70500910090204549, -1.3969215303498055) +description = Dormont borough, PA +station = ('kagc', 0.0017836394834794256) +zone = ('paz021', 0.0015052663363314283) + +[fips4200319856] +centroid = (0.70425459506640831, -1.394354046300367) +description = Dravosburg borough, PA +station = ('kagc', 0.0003469820970824782) +zone = ('paz021', 0.0023853602344455363) + +[fips4200320432] +centroid = (0.7046498248755223, -1.3936482351508603) +description = Duquesne city, PA +station = ('kagc', 0.00097462792058147687) +zone = ('paz021', 0.002408389918954605) + +[fips4200321024] +centroid = (0.70845802858361895, -1.3924673628322537) +description = East Deer township, PA +station = ('kbtp', 0.004013188409321914) +zone = ('paz021', 0.0033978402154640893) + +[fips4200321444] +centroid = (0.70484800701208639, -1.3929024385081905) +description = East McKeesport borough, PA +station = ('kagc', 0.0015745687892237531) +zone = ('paz021', 0.0027347165928352695) + +[fips4200321712] +centroid = (0.7050585286264619, -1.3934391447064716) +description = East Pittsburgh borough, PA +station = ('kagc', 0.0013260721282980278) +zone = ('paz021', 0.002277195488456923) + +[fips4200322520] +centroid = (0.7056592360484133, -1.3942382786110821) +description = Edgewood borough, PA +station = ('kagc', 0.001483965898332716) +zone = ('paz021', 0.0014477900544731818) + +[fips4200322576] +centroid = (0.70780817268993124, -1.3996202806122868) +description = Edgeworth borough, PA +station = ('kpit', 0.0013547187956751108) +zone = ('paz020', 0.0030505266016791722) + +[fips4200322992] +centroid = (0.70287121219469251, -1.3942938498944655) +description = Elizabeth borough, PA +station = ('kagc', 0.0014243719973448911) +zone = ('paz021', 0.0036626969580967911) + +[fips4200323000] +centroid = (0.70280523874896716, -1.3930699552097972) +description = Elizabeth township, PA +station = ('kagc', 0.0019540009095007889) +zone = ('paz021', 0.0041322950292334744) + +[fips4200323616] +centroid = (0.70704809925398027, -1.3979427050418549) +description = Emsworth borough, PA +station = ('kpit', 0.0018822315765626111) +zone = ('paz021', 0.0016940983061480258) + +[fips4200324160] +centroid = (0.70677382076202933, -1.3953843316111119) +description = Etna borough, PA +station = ('kagc', 0.0025710541194441318) +zone = ('paz021', 0.00062227297161649982) + +[fips4200325400] +centroid = (0.70947586969679699, -1.3922030850769165) +description = Fawn township, PA +station = ('kbtp', 0.0033548426656358943) +zone = ('paz021', 0.0042471776140055994) + +[fips4200325904] +centroid = (0.70650593017514074, -1.4011672357414995) +description = Findlay township, PA +station = ('kpit', 0.00063536081847726216) +zone = ('paz020', 0.0036483746028692955) + +[fips4200326592] +centroid = (0.70555083364857196, -1.3937234064817436) +description = Forest Hills borough, PA +station = ('kagc', 0.0015495256242190236) +zone = ('paz021', 0.0018480956719042515) + +[fips4200326896] +centroid = (0.70206385778930491, -1.3946259685978277) +description = Forward township, PA +station = ('kagc', 0.0021809669601143022) +zone = ('paz021', 0.004365523347687467) + +[fips4200327120] +centroid = (0.70731206285005188, -1.3943243931563756) +description = Fox Chapel borough, PA +station = ('kagc', 0.0030937710808220213) +zone = ('paz021', 0.0015802164048461975) + +[fips4200327552] +centroid = (0.70846614436464062, -1.3979864953527876) +description = Franklin Park borough, PA +station = ('kpit', 0.0026063053454306647) +zone = ('paz021', 0.0026576673086376448) + +[fips4200327608] +centroid = (0.70871680855181207, -1.3927103650240087) +description = Frazer township, PA +station = ('kbtp', 0.0036955799937366859) +zone = ('paz021', 0.003432371078770923) + +[fips4200329432] +centroid = (0.70381822784682468, -1.3942734644488024) +description = Glassport borough, PA +station = ('kagc', 0.00058719501896439558) +zone = ('paz021', 0.0027981437812882892) + +[fips4200329592] +centroid = (0.7072479743599186, -1.3987124301485696) +description = Glenfield borough, PA +station = ('kpit', 0.0014095510304164742) +zone = ('paz021', 0.0023092854337336834) + +[fips4200329732] +centroid = (0.70739236544893613, -1.3992135839899873) +description = Glen Osborne borough, PA +station = ('kpit', 0.0011868258632175064) +zone = ('paz021', 0.0027161751821230236) + +[fips4200331256] +centroid = (0.70541070116292937, -1.3972114120852694) +description = Green Tree borough, PA +station = ('kagc', 0.0021722421822520984) +zone = ('paz021', 0.0013262095567561139) + +[fips4200332] +centroid = (0.70358480751266295, -1.3902293620390063) +description = Adamsburg borough, PA +station = ('klbe', 0.0034226878356306521) +zone = ('paz073', 0.0011971873108043828) + +[fips4200332328] +centroid = (0.70837341502148221, -1.3954555584978856) +description = Hampton township, PA +station = ('kbtp', 0.0034303837708329617) +zone = ('paz021', 0.0020916386572028636) + +[fips4200332624] +centroid = (0.70764758494545532, -1.3936030485765263) +description = Harmar township, PA +station = ('kagc', 0.0035286535702743539) +zone = ('paz021', 0.0022188757244120702) + +[fips4200332832] +centroid = (0.70924833112221441, -1.3913320436071237) +description = Harrison township, PA +station = ('kbtp', 0.0039992318076948752) +zone = ('paz022', 0.004536923930337426) + +[fips4200333312] +centroid = (0.70731448885771209, -1.3989639146404895) +description = Haysville borough, PA +station = ('kpit', 0.0012830443924072199) +zone = ('paz021', 0.0025110833037997079) + +[fips4200333592] +centroid = (0.70496408886063644, -1.3978727173388501) +description = Heidelberg borough, PA +station = ('kpit', 0.0024668515525228529) +zone = ('paz021', 0.0019991708465408181) + +[fips4200335424] +centroid = (0.70524004286866926, -1.3946907552196615) +description = Homestead borough, PA +station = ('kagc', 0.0010037369348984385) +zone = ('paz021', 0.0014318463811012763) + +[fips4200336808] +centroid = (0.70813308318348256, -1.3940585620580042) +description = Indiana township, PA +station = ('kbtp', 0.0038068709452736844) +zone = ('paz021', 0.0023119308824686323) + +[fips4200337000] +centroid = (0.70589548381596323, -1.3974590393995423) +description = Ingram borough, PA +station = ('kpit', 0.002289536140806086) +zone = ('paz021', 0.0012325786426078322) + +[fips4200337955] +centroid = (0.70325724411864865, -1.3951999550289311) +description = Jefferson Hills borough, PA +station = ('kagc', 0.0010273113573489657) +zone = ('paz021', 0.0031074603122975661) + +[fips4200339312] +centroid = (0.70644548942314422, -1.3980391344830276) +description = Kennedy township, PA +station = ('kpit', 0.0017512031874601177) +zone = ('paz021', 0.0016058459200057917) + +[fips4200339624] +centroid = (0.70727338635382775, -1.3980249973160865) +description = Kilbuck township, PA +station = ('kpit', 0.0018935871886500576) +zone = ('paz021', 0.0018563685454258622) + +[fips4200342368] +centroid = (0.70815015250356717, -1.3998199811853003) +description = Leet township, PA +station = ('kpit', 0.0016305382691553859) +zone = ('paz020', 0.0026995509896323125) + +[fips4200342392] +centroid = (0.70806290349425982, -1.4000592309191635) +description = Leetsdale borough, PA +station = ('kpit', 0.0015101522823156707) +zone = ('paz020', 0.0026378293876375492) + +[fips4200343064] +centroid = (0.70374654717444529, -1.3938749359674019) +description = Liberty borough, PA +station = ('kagc', 0.00086645806961045387) +zone = ('paz021', 0.0030088218711821894) + +[fips4200343408] +centroid = (0.70321982425948582, -1.3938155947728341) +description = Lincoln borough, PA +station = ('kagc', 0.0012708647031127341) +zone = ('paz021', 0.0034899787111651761) + +[fips4200345900] +centroid = (0.70824534276097084, -1.3967293521458686) +description = McCandless township, PA +station = ('kpit', 0.0032138698270425116) +zone = ('paz021', 0.0020236534957258057) + +[fips4200346072] +centroid = (0.70461844385557149, -1.4002351775610571) +description = McDonald borough, PA +station = ('kpit', 0.0019505206297194271) +zone = ('paz029', 0.0031929315504575671) + +[fips4200346256] +centroid = (0.70409858008457238, -1.39355826342792) +description = McKeesport city, PA +station = ('kagc', 0.0009637035209904629) +zone = ('paz021', 0.0028606778726794481) + +[fips4200346264] +centroid = (0.70631762660214314, -1.3973686837041666) +description = McKees Rocks borough, PA +station = ('kpit', 0.0022708262852430884) +zone = ('paz021', 0.0010904806051759478) + +[fips4200347696] +centroid = (0.7093949213260895, -1.3981838397313107) +description = Marshall township, PA +station = ('kbtp', 0.0032067213285168956) +zone = ('paz021', 0.0035230354182773215) + +[fips4200349920] +centroid = (0.70653980701592201, -1.3958060380649784) +description = Millvale borough, PA +station = ('kagc', 0.0024215224578124552) +zone = ('paz021', 0.00024645998770462038) + +[fips4200350528] +centroid = (0.70557252809117421, -1.3920983304152119) +description = Monroeville municipality, PA +station = ('kagc', 0.002457093363077395) +zone = ('paz021', 0.0030125418688085773) + +[fips4200350784] +centroid = (0.70703275780985531, -1.3998858673645631) +description = Moon township, PA +station = ('kpit', 0.00057757051447346959) +zone = ('paz021', 0.0030893461466251623) + +[fips4200351696] +centroid = (0.70470628627682441, -1.3971176180912672) +description = Mount Lebanon township, PA +station = ('kagc', 0.0018197481620221027) +zone = ('paz021', 0.0018423568364293579) + +[fips4200351744] +centroid = (0.70530976877228646, -1.3960126850484147) +description = Mount Oliver borough, PA +station = ('kagc', 0.001408701259563592) +zone = ('paz021', 0.0010057624145159148) + +[fips4200352320] +centroid = (0.70500133418687394, -1.3945347227845333) +description = Munhall borough, PA +station = ('kagc', 0.00078914120364079697) +zone = ('paz021', 0.001690890545263318) + +[fips4200353136] +centroid = (0.70697481287868902, -1.3982503193225191) +description = Neville township, PA +station = ('kpit', 0.0016374367329230184) +zone = ('paz021', 0.0018806824956259544) + +[fips4200354816] +centroid = (0.70515998461588025, -1.3937118524020957) +description = North Braddock borough, PA +station = ('kagc', 0.0012426808270050264) +zone = ('paz021', 0.0020482345276848016) + +[fips4200355016] +centroid = (0.70546869845397298, -1.4001825384308169) +description = North Fayette township, PA +station = ('kpit', 0.0011049353749310838) +zone = ('paz029', 0.0040436151499053056) + +[fips4200355488] +centroid = (0.7046895311160053, -1.3929257212004122) +description = North Versailles township, PA +station = ('kagc', 0.0015036092850640721) +zone = ('paz021', 0.0028084802873288607) + +[fips4200355840] +centroid = (0.70511593250556004, -1.399529820197156) +description = Oakdale borough, PA +station = ('kpit', 0.0015758257174847078) +zone = ('paz021', 0.0029867146611588214) + +[fips4200356088] +centroid = (0.70720315430472747, -1.3934127902347662) +description = Oakmont borough, PA +station = ('kagc', 0.0031476165031088621) +zone = ('paz021', 0.0021144120985148451) + +[fips4200356384] +centroid = (0.70680556830112307, -1.3940791220365927) +description = O'Hara township, PA +station = ('kagc', 0.0026246954366472152) +zone = ('paz021', 0.0014949889033376265) + +[fips4200356392] +centroid = (0.70759985019041327, -1.3978793321367151) +description = Ohio township, PA +station = ('kpit', 0.0021339375050048971) +zone = ('paz021', 0.0019592918468300689) + +[fips4200359032] +centroid = (0.70647870303880966, -1.3932839849359691) +description = Penn Hills township, PA +station = ('kagc', 0.002521571630527747) +zone = ('paz021', 0.0020235854047031964) + +[fips4200359152] +centroid = (0.7056059860529349, -1.3980278072961825) +description = Pennsbury Village borough, PA +station = ('kpit', 0.0020021614560688178) +zone = ('paz021', 0.001742617138245587) + +[fips4200360272] +centroid = (0.70938602014690422, -1.3969402228260945) +description = Pine township, PA +station = ('kbtp', 0.0026876250545824596) +zone = ('paz021', 0.0031656700840629985) + +[fips4200360712] +centroid = (0.70524878696822169, -1.3923598680036231) +description = Pitcairn borough, PA +station = ('kagc', 0.0021207625115988258) +zone = ('paz021', 0.0029222479210294508) + +[fips4200361000] +centroid = (0.70580683854325454, -1.3958548549241567) +description = Pittsburgh city, PA +station = ('kagc', 0.0017573749328961823) +zone = ('paz021', 0.00051064606134351384) + +[fips4200361328] +centroid = (0.70388805847019698, -1.3955591437889914) +description = Pleasant Hills borough, PA +station = ('kagc', 0.00067161752625475646) +zone = ('paz021', 0.0024425997430798257) + +[fips4200361536] +centroid = (0.70690147414352023, -1.3919459806248051) +description = Plum borough, PA +station = ('kagc', 0.0034396833767053507) +zone = ('paz021', 0.0030905230416488506) + +[fips4200362320] +centroid = (0.70402862728815252, -1.394066311319883) +description = Port Vue borough, PA +station = ('kagc', 0.00060432930501974559) +zone = ('paz021', 0.0026921344149408669) + +[fips4200363408] +centroid = (0.70528540397592865, -1.394156440122456) +description = Rankin borough, PA +station = ('kagc', 0.0011572411344576311) +zone = ('paz021', 0.0017001619021639908) + +[fips4200364] +centroid = (0.70239400427061216, -1.3276058314667283) +description = Adamstown borough, PA +station = ('krdg', 0.0025146040668656707) +zone = ('paz060', 0.0035371844791476917) + +[fips4200364240] +centroid = (0.70659838026561883, -1.3960683785048458) +description = Reserve township, PA +station = ('kagc', 0.0025455203595458466) +zone = ('paz021', 0.00030204931366466388) + +[fips4200364528] +centroid = (0.70937114994167727, -1.3955295255515852) +description = Richland township, PA +station = ('kbtp', 0.0024345705643435247) +zone = ('paz021', 0.0030728484359625698) + +[fips4200365352] +centroid = (0.7061220450061646, -1.3985968544455025) +description = Robinson township, PA +station = ('kpit', 0.0013958832074027329) +zone = ('paz021', 0.0020340428717449555) + +[fips4200366264] +centroid = (0.70730501171987392, -1.3966866264857798) +description = Ross township, PA +station = ('kpit', 0.0028710485982336251) +zone = ('paz021', 0.0011440872477883864) + +[fips4200366320] +centroid = (0.70550456497010161, -1.3978093269804177) +description = Rosslyn Farms borough, PA +station = ('kpit', 0.0021967773517805704) +zone = ('paz021', 0.0016397833413500987) + +[fips4200368388] +centroid = (0.70489472947616216, -1.3976458419893831) +description = Scott township, PA +station = ('kpit', 0.0026438787960993072) +zone = ('paz021', 0.0019259473154674381) + +[fips4200369376] +centroid = (0.70755698490398422, -1.3993908396288197) +description = Sewickley borough, PA +station = ('kpit', 0.0012228413133387372) +zone = ('paz021', 0.0029067188451146011) + +[fips4200369400] +centroid = (0.70789446176814985, -1.3989332666588246) +description = Sewickley Heights borough, PA +station = ('kpit', 0.0017022580086859859) +zone = ('paz021', 0.0027736734570020273) + +[fips4200369416] +centroid = (0.70804735261062468, -1.398483879283021) +description = Sewickley Hills borough, PA +station = ('kpit', 0.0020424741994180193) +zone = ('paz021', 0.0025997783431260337) + +[fips4200369584] +centroid = (0.70725558399545729, -1.3956442809499037) +description = Shaler township, PA +station = ('kagc', 0.0030815317531659226) +zone = ('paz021', 0.00096742889985752844) + +[fips4200369776] +centroid = (0.70674041516014618, -1.3948941384373965) +description = Sharpsburg borough, PA +station = ('kagc', 0.0025009028016384112) +zone = ('paz021', 0.00089951345381489669) + +[fips4200372] +centroid = (0.72449306655339163, -1.4027148715491204) +description = Adamsville CDP, PA +station = ('kgkj', 0.0029314966131459763) +zone = ('paz007', 0.0039180424607561546) + +[fips4200372160] +centroid = (0.7046033118509567, -1.3993807690790359) +description = South Fayette township, PA +station = ('kpit', 0.0020943835690030574) +zone = ('paz029', 0.0032987580578321585) + +[fips4200372400] +centroid = (0.70334925787681368, -1.3961653839046715) +description = South Park township, PA +station = ('kagc', 0.0013650889317848431) +zone = ('paz021', 0.002969723385050907) + +[fips4200372568] +centroid = (0.70340973353539527, -1.3927307853762569) +description = South Versailles township, PA +station = ('kagc', 0.0017888746194826429) +zone = ('paz021', 0.003793605554005668) + +[fips4200372960] +centroid = (0.70757024940629942, -1.3924412876132286) +description = Springdale borough, PA +station = ('kagc', 0.0037861442647097294) +zone = ('paz021', 0.002938792956262076) + +[fips4200372968] +centroid = (0.7077927090727586, -1.3926624557360416) +description = Springdale township, PA +station = ('kagc', 0.0039098822806715441) +zone = ('paz021', 0.0028945800678703382) + +[fips4200374648] +centroid = (0.70652629816751156, -1.397511224744177) +description = Stowe township, PA +station = ('kpit', 0.0021488168601006123) +zone = ('paz021', 0.0012174935311855726) + +[fips4200375816] +centroid = (0.70546681349838092, -1.3942742149403806) +description = Swissvale borough, PA +station = ('kagc', 0.0012923288091784358) +zone = ('paz021', 0.0015216473717808727) + +[fips4200376104] +centroid = (0.70868280953798324, -1.3920737387260513) +description = Tarentum borough, PA +station = ('kbtp', 0.0040079142710827669) +zone = ('paz021', 0.003771581571104425) + +[fips4200376560] +centroid = (0.70571536583715744, -1.3977322881472345) +description = Thornburg borough, PA +station = ('kpit', 0.0021564519262011112) +zone = ('paz021', 0.0014926556529302217) + +[fips4200377272] +centroid = (0.70481526463531885, -1.3922133301596258) +description = Trafford borough, PA +station = ('kagc', 0.002059525590810738) +zone = ('paz021', 0.0032051991571909427) + +[fips4200377912] +centroid = (0.70526264488248258, -1.393147325655538) +description = Turtle Creek borough, PA +station = ('kagc', 0.0016270521441748191) +zone = ('paz021', 0.0023680053959136012) + +[fips4200379274] +centroid = (0.70395305453154122, -1.3976817783186819) +description = Upper St. Clair township, PA +station = ('kagc', 0.0022084190528956307) +zone = ('paz021', 0.0027096205399827372) + +[fips4200380032] +centroid = (0.70695734213287653, -1.3935048563528092) +description = Verona borough, PA +station = ('kagc', 0.0028926647191988464) +zone = ('paz021', 0.001957279790448027) + +[fips4200380040] +centroid = (0.70368483233209467, -1.3933104615807219) +description = Versailles borough, PA +station = ('kagc', 0.0012702003364405538) +zone = ('paz021', 0.0033027046733415458) + +[fips4200380600] +centroid = (0.70496632288207906, -1.3925258837220729) +description = Wall borough, PA +station = ('kagc', 0.0018848232702175039) +zone = ('paz021', 0.0029241871667616852) + +[fips4200382800] +centroid = (0.7092058323549284, -1.3939595844361237) +description = West Deer township, PA +station = ('kbtp', 0.0028150524210835714) +zone = ('paz021', 0.0032584262501075476) + +[fips4200382848] +centroid = (0.70285510280569663, -1.3944504408349545) +description = West Elizabeth borough, PA +station = ('kagc', 0.001411970462665566) +zone = ('paz021', 0.0036390087006641005) + +[fips4200383200] +centroid = (0.70500445832623504, -1.39469593884754) +description = West Homestead borough, PA +station = ('kagc', 0.00076894145826177096) +zone = ('paz021', 0.0016137928295829657) + +[fips4200383512] +centroid = (0.70437409776029236, -1.3946123375763695) +description = West Mifflin borough, PA +station = ('kagc', 0.00020084623166923032) +zone = ('paz021', 0.0021856485404249068) + +[fips4200384144] +centroid = (0.707175141770233, -1.3968445264232079) +description = West View borough, PA +station = ('kpit', 0.002723444705059465) +zone = ('paz021', 0.0011045471316856903) + +[fips4200384440] +centroid = (0.70512191898489429, -1.3942632368193857) +description = Whitaker borough, PA +station = ('kagc', 0.00097467935471287322) +zone = ('paz021', 0.0017436388155011992) + +[fips4200384512] +centroid = (0.70441846402987796, -1.3960852558387127) +description = Whitehall borough, PA +station = ('kagc', 0.00098876979665209566) +zone = ('paz021', 0.0018987769057632487) + +[fips4200384704] +centroid = (0.70404468431727085, -1.3927041865584566) +description = White Oak borough, PA +station = ('kagc', 0.0016160782097081967) +zone = ('paz021', 0.0033470540671212837) + +[fips4200385184] +centroid = (0.70557533807126982, -1.3931741688194335) +description = Wilkins township, PA +station = ('kagc', 0.0018255524658828501) +zone = ('paz021', 0.0022271919919129883) + +[fips4200385188] +centroid = (0.70588447078838312, -1.39405264539184) +description = Wilkinsburg borough, PA +station = ('kagc', 0.0017420919554644917) +zone = ('paz021', 0.0014954486258573392) + +[fips4200385496] +centroid = (0.70501114293727019, -1.3929477298022799) +description = Wilmerding borough, PA +station = ('kagc', 0.0016139395857810261) +zone = ('paz021', 0.002620746951671641) + +[fips4200396] +centroid = (0.69368542216839868, -1.384645599976271) +description = Addison borough, PA +station = ('k2g4', 0.0028851034515554835) +zone = ('paz076', 0.003508591079610832) + +[fips42005] +centroid = (0.71231038912179079, -1.3869106708262167) +description = Armstrong County, PA +station = ('kidi', 0.0057413832711216591) +zone = ('paz022', 5.3485828702932265e-06) + +[fips4200502720] +centroid = (0.70834196418836126, -1.3886655819358045) +description = Apollo borough, PA +station = ('klbe', 0.0057015618198123603) +zone = ('paz022', 0.0041859606356999144) + +[fips4200502752] +centroid = (0.71223792305124811, -1.387921233916414) +description = Applewold borough, PA +station = ('kidi', 0.0063625441623632768) +zone = ('paz022', 0.00076360823954080379) + +[fips4200503480] +centroid = (0.71124755342049639, -1.3832102761060157) +description = Atwood borough, PA +station = ('kidi', 0.0028817067195276865) +zone = ('paz023', 0.0027843597957037912) + +[fips4200505992] +centroid = (0.71042618402121538, -1.3884021244852158) +description = Bethel township, PA +station = ('kidi', 0.0060795650690786875) +zone = ('paz022', 0.0021962219482395944) + +[fips4200507416] +centroid = (0.71365279166266982, -1.3860274818648299) +description = Boggs township, PA +station = ('kidi', 0.0060939098398288313) +zone = ('paz022', 0.0014997548755257461) + +[fips4200508152] +centroid = (0.71530982470780569, -1.3901178354998038) +description = Bradys Bend township, PA +station = ('kbtp', 0.0053091377032621102) +zone = ('paz014', 0.0037171117948008284) + +[fips4200510344] +centroid = (0.70980369489019901, -1.3870044997268038) +description = Burrell township, PA +station = ('kidi', 0.0049317472626029708) +zone = ('paz022', 0.0025096786056017064) + +[fips4200510680] +centroid = (0.71131167681721463, -1.3889962694691798) +description = Cadogan township, PA +station = ('kbtp', 0.0048677233313633769) +zone = ('paz022', 0.0018654573167025254) + +[fips4200516728] +centroid = (0.71208311234659616, -1.3839691278114905) +description = Cowanshannock township, PA +station = ('kidi', 0.0038847203876249039) +zone = ('paz022', 0.0022432080806540199) + +[fips4200518400] +centroid = (0.71351145489984324, -1.3830185691409769) +description = Dayton borough, PA +station = ('kidi', 0.0047111997728791297) +zone = ('paz022', 0.0031835304934971016) + +[fips4200521160] +centroid = (0.71326332144008731, -1.3885963272710853) +description = East Franklin township, PA +station = ('kbtp', 0.0053446247763367727) +zone = ('paz022', 0.0015867788008301069) + +[fips4200522832] +centroid = (0.71025381530428844, -1.3847804964741575) +description = Elderton borough, PA +station = ('kidi', 0.0033782748776602831) +zone = ('paz022', 0.0026187743405805663) + +[fips4200526512] +centroid = (0.71156401652046797, -1.3881126965353576) +description = Ford City borough, PA +station = ('kidi', 0.0062034034967846661) +zone = ('paz022', 0.00117452005287886) + +[fips4200526520] +centroid = (0.7114103926397074, -1.3881609723424677) +description = Ford Cliff borough, PA +station = ('kidi', 0.006180623996257603) +zone = ('paz022', 0.0013041033457076732) + +[fips4200527784] +centroid = (0.71011506162875482, -1.3907102177012232) +description = Freeport borough, PA +station = ('kbtp', 0.0039279752822107472) +zone = ('paz022', 0.0036174235994615839) + +[fips4200529184] +centroid = (0.70982254444612047, -1.389344776814218) +description = Gilpin township, PA +station = ('kbtp', 0.0049916931232540807) +zone = ('paz022', 0.0030956375752823691) + +[fips4200535936] +centroid = (0.71791699754443483, -1.3907763307732888) +description = Hovey township, PA +station = ('kfkl', 0.0049637421039382531) +zone = ('paz015', 0.003625619991631141) + +[fips4200539968] +centroid = (0.70823785529847982, -1.3871696078740425) +description = Kiskiminetas township, PA +station = ('kidi', 0.0051101077338353189) +zone = ('paz022', 0.0040791384801585713) + +[fips4200540] +centroid = (0.70088600489030406, -1.3299997599753488) +description = Akron borough, PA +station = ('klns', 0.0014757875921635277) +zone = ('paz066', 0.0020994160429002474) + +[fips4200540040] +centroid = (0.71259524430900878, -1.3878629224661045) +description = Kittanning borough, PA +station = ('kidi', 0.0065030873789914496) +zone = ('paz022', 0.00076953777527441665) + +[fips4200540056] +centroid = (0.7113695344819182, -1.3865312362468329) +description = Kittanning township, PA +station = ('kidi', 0.0050296850598704713) +zone = ('paz022', 0.00098720402789975866) + +[fips4200542280] +centroid = (0.70913498944058995, -1.3893197138861593) +description = Leechburg borough, PA +station = ('kbtp', 0.0053198318823856573) +zone = ('paz022', 0.0036622578889845469) + +[fips4200546456] +centroid = (0.71483956319414832, -1.3867494722165024) +description = Madison township, PA +station = ('kidi', 0.0073455560764585483) +zone = ('paz022', 0.00253024037519436) + +[fips4200546632] +centroid = (0.71488518610079554, -1.3846841368461549) +description = Mahoning township, PA +station = ('kidi', 0.006500462805601564) +zone = ('paz022', 0.003077125054741333) + +[fips4200546976] +centroid = (0.7114844120532845, -1.387760489092305) +description = Manor township, PA +station = ('kidi', 0.0059265178095881457) +zone = ('paz022', 0.0010456648774824094) + +[fips4200547064] +centroid = (0.71188205041676644, -1.3879006215779477) +description = Manorville borough, PA +station = ('kidi', 0.0061863855750963525) +zone = ('paz022', 0.00085995626408493626) + +[fips4200554728] +centroid = (0.70849560552241431, -1.3885248909448011) +description = North Apollo borough, PA +station = ('klbe', 0.0058044523084328217) +zone = ('paz022', 0.0040067688519723277) + +[fips4200554856] +centroid = (0.7118058318883318, -1.389370293527882) +description = North Buffalo township, PA +station = ('kbtp', 0.0045585830415457787) +zone = ('paz022', 0.0019249410913964918) + +[fips4200557976] +centroid = (0.71716695975168276, -1.3907584586017483) +description = Parker city, PA +station = ('kfkl', 0.0056397706312224013) +zone = ('paz014', 0.0043365143934698345) + +[fips4200558160] +centroid = (0.70932536995539752, -1.3883993319584127) +description = Parks township, PA +station = ('kidi', 0.005953953016761394) +zone = ('paz022', 0.003191330581164047) + +[fips4200559440] +centroid = (0.71615807217756744, -1.3902664677389036) +description = Perry township, PA +station = ('kbtp', 0.005827577378987453) +zone = ('paz014', 0.0039879336182616449) + +[fips4200560280] +centroid = (0.71424009495596574, -1.3862984093246169) +description = Pine township, PA +station = ('kidi', 0.0066679529837877236) +zone = ('paz022', 0.0019835733842369142) + +[fips4200561576] +centroid = (0.71058719064471187, -1.3847935166303773) +description = Plumcreek township, PA +station = ('kidi', 0.0035066583213147662) +zone = ('paz022', 0.0023587951184926687) + +[fips4200563560] +centroid = (0.7126473947470584, -1.3873098974393179) +description = Rayburn township, PA +station = ('kidi', 0.00617914078403987) +zone = ('paz022', 0.00044775094826062141) + +[fips4200563712] +centroid = (0.71522142378119213, -1.3833143500893121) +description = Redbank township, PA +station = ('kidi', 0.0063870055891879643) +zone = ('paz022', 0.0039847908586177396) + +[fips4200566720] +centroid = (0.7120787839300512, -1.3843069711947991) +description = Rural Valley borough, PA +station = ('kidi', 0.0040566837316101988) +zone = ('paz022', 0.0019895052244732225) + +[fips4200571968] +centroid = (0.70907859785245797, -1.3856942112441615) +description = South Bend township, PA +station = ('kidi', 0.0039014171502917993) +zone = ('paz022', 0.0033641111614768821) + +[fips4200571976] +centroid = (0.71557029764537339, -1.3847362000177419) +description = South Bethlehem borough, PA +station = ('kidi', 0.0071258182105175417) +zone = ('paz015', 0.0035404702904842577) + +[fips4200572] +centroid = (0.72790546449372084, -1.340895396709944) +description = Alba borough, PA +station = ('kipt', 0.0080418384731736157) +zone = ('paz038', 0.0043108371645621648) + +[fips4200572000] +centroid = (0.71080858566032723, -1.3899921019804902) +description = South Buffalo township, PA +station = ('kbtp', 0.0042087880600824145) +zone = ('paz022', 0.0027721828516578647) + +[fips4200574992] +centroid = (0.71433718762225429, -1.3899012575929237) +description = Sugarcreek township, PA +station = ('kbtp', 0.0048640465401414285) +zone = ('paz022', 0.0030317218217674291) + +[fips4200579528] +centroid = (0.71254658452946329, -1.3860346551680558) +description = Valley township, PA +station = ('kidi', 0.0053420368695670448) +zone = ('paz022', 0.00070769591306250987) + +[fips4200581176] +centroid = (0.71429086658390639, -1.388127549287292) +description = Washington township, PA +station = ('kbtp', 0.0060305547133619984) +zone = ('paz022', 0.0021798405119356433) + +[fips4200581720] +centroid = (0.7136335930408978, -1.3838331841160525) +description = Wayne township, PA +station = ('kidi', 0.0050940881018260312) +zone = ('paz022', 0.0026808893966064227) + +[fips4200583024] +centroid = (0.71295919781792716, -1.3901593743360015) +description = West Franklin township, PA +station = ('kbtp', 0.0041243770179332168) +zone = ('paz022', 0.0025369972866872178) + +[fips4200583248] +centroid = (0.71231665485380558, -1.3880814725950394) +description = West Kittanning borough, PA +station = ('kidi', 0.0065067106779608339) +zone = ('paz022', 0.00088121845572525378) + +[fips4200586560] +centroid = (0.71275733303664146, -1.3898935083310449) +description = Worthington borough, PA +station = ('kbtp', 0.0042686479328386557) +zone = ('paz022', 0.0022957296113789681) + +[fips4200628] +centroid = (0.73111844111371715, -1.4026226658047376) +description = Albion borough, PA +station = ('keri', 0.004111084775881256) +zone = ('paz001', 0.0048316255421456148) + +[fips4200652] +centroid = (0.71578884777430807, -1.3195881554022093) +description = Albrightsville CDP, PA +station = ('kmpo', 0.0036271227677372475) +zone = ('paz054', 0.0021123799422960469) + +[fips4200660] +centroid = (0.70697577280977764, -1.319471288155496) +description = Alburtis borough, PA +station = ('kxll', 0.0018312704034645806) +zone = ('paz061', 0.0018558879343368326) + +[fips4200676] +centroid = (0.69677749983110937, -1.3140255641833005) +description = Aldan borough, PA +station = ('kphl', 0.0012184963579420915) +zone = ('paz070', 0.0014875657199997952) + +[fips42007] +centroid = (0.71007219634232577, -1.4023846378013505) +description = Beaver County, PA +station = ('kbvi', 0.0015809795508018663) +zone = ('paz020', 3.7215962574177397e-05) + +[fips4200700820] +centroid = (0.70887990957041103, -1.4007168186214374) +description = Aliquippa city, PA +station = ('kpit', 0.0023305001296078202) +zone = ('paz020', 0.0017029276884914651) + +[fips4200702288] +centroid = (0.70845492189755033, -1.4002217908856942) +description = Ambridge borough, PA +station = ('kpit', 0.0018894520085946962) +zone = ('paz020', 0.0022682834687928954) + +[fips4200703736] +centroid = (0.70929648475627705, -1.4001474049529743) +description = Baden borough, PA +station = ('kpit', 0.0027327779177798066) +zone = ('paz020', 0.0018356564252908607) + +[fips4200704688] +centroid = (0.71023622238542816, -1.4016317202153328) +description = Beaver borough, PA +station = ('kbvi', 0.0017672268891092324) +zone = ('paz020', 0.00058591517369093176) + +[fips4200704792] +centroid = (0.71138574859066928, -1.4019025604086572) +description = Beaver Falls city, PA +station = ('kbvi', 0.0010244514449426494) +zone = ('paz020', 0.0013895781143458148) + +[fips4200706240] +centroid = (0.71248947735633794, -1.4025060778107046) +description = Big Beaver borough, PA +station = ('kbvi', 0.0011256406087465211) +zone = ('paz020', 0.0024518990771103567) + +[fips4200708632] +centroid = (0.71047334281760421, -1.401509267915013) +description = Bridgewater borough, PA +station = ('kbvi', 0.0016760458018156503) +zone = ('paz020', 0.00077692100144458737) + +[fips4200708680] +centroid = (0.71039450629529166, -1.4029108022109495) +description = Brighton township, PA +station = ('kbvi', 0.001146324784679356) +zone = ('paz020', 0.00054784497540099968) + +[fips4200712016] +centroid = (0.70944232446857358, -1.4014827912702601) +description = Center township, PA +station = ('kbvi', 0.0024636911026063193) +zone = ('paz020', 0.00089436728299067058) + +[fips4200713488] +centroid = (0.71142124858765488, -1.4028795084574612) +description = Chippewa township, PA +station = ('kbvi', 0.00029129306639284817) +zone = ('paz020', 0.0014362240098130792) + +[fips4200715872] +centroid = (0.70976170226839608, -1.4004556650054616) +description = Conway borough, PA +station = ('kbvi', 0.0027448661801967567) +zone = ('paz020', 0.001470759753387072) + +[fips4200718192] +centroid = (0.71227166026568911, -1.4036668962962058) +description = Darlington borough, PA +station = ('kbvi', 0.00082365452158122737) +zone = ('paz020', 0.0024414159167063668) + +[fips4200718200] +centroid = (0.71239662584013186, -1.4041493053014571) +description = Darlington township, PA +station = ('kbvi', 0.0011183000478885267) +zone = ('paz020', 0.0027186506882927943) + +[fips4200718264] +centroid = (0.71119631055365784, -1.4010490769511394) +description = Daugherty township, PA +station = ('kbvi', 0.0016929510309494616) +zone = ('paz020', 0.001524437363415325) + +[fips4200721752] +centroid = (0.71031760708844871, -1.4009580405773556) +description = East Rochester borough, PA +station = ('kbvi', 0.0021048469297329474) +zone = ('paz020', 0.0010985388270133604) + +[fips4200721968] +centroid = (0.71151174390937078, -1.4017574537346464) +description = Eastvale borough, PA +station = ('kbvi', 0.0011264179831159571) +zone = ('paz020', 0.0015408432190070914) + +[fips4200722264] +centroid = (0.70934601720044854, -1.3995129952231669) +description = Economy borough, PA +station = ('kpit', 0.0028480069011214831) +zone = ('paz020', 0.0022683007923213765) + +[fips4200723304] +centroid = (0.71292118454681874, -1.4012290029437278) +description = Ellwood City borough, PA +station = ('kbvi', 0.0020765509846173949) +zone = ('paz013', 0.0025943571860997188) + +[fips4200725152] +centroid = (0.71081565424379789, -1.4017390056044527) +description = Fallston borough, PA +station = ('kbvi', 0.0013367664963110605) +zone = ('paz020', 0.00090720183718540049) + +[fips4200727312] +centroid = (0.70652699629921234, -1.4039913180975667) +description = Frankfort Springs borough, PA +station = ('kpit', 0.002780682232354368) +zone = ('wvz001', 0.0018768549947392867) + +[fips4200727336] +centroid = (0.71246376865645611, -1.399832093770309) +description = Franklin township, PA +station = ('kbvi', 0.0027531193141774983) +zone = ('paz020', 0.003088852999160199) + +[fips4200727712] +centroid = (0.71008973690130839, -1.4006897660180315) +description = Freedom borough, PA +station = ('kbvi', 0.0024028021293713456) +zone = ('paz020', 0.0012674202385045616) + +[fips4200728824] +centroid = (0.70933854719125, -1.4049668000697986) +description = Georgetown borough, PA +station = ('kbvi', 0.002535864462162073) +zone = ('wvz001', 0.0023323826631734454) + +[fips4200729392] +centroid = (0.70937778219283487, -1.4051309133793637) +description = Glasgow borough, PA +station = ('kbvi', 0.0025693962334358746) +zone = ('wvz001', 0.0023181710273822674) + +[fips4200730920] +centroid = (0.70845286240903294, -1.4044923323126441) +description = Greene township, PA +station = ('kbvi', 0.0032026473117711075) +zone = ('wvz001', 0.0018274467281159162) + +[fips4200732392] +centroid = (0.70715390111323617, -1.4039653650515893) +description = Hanover township, PA +station = ('kpit', 0.0028215264641457205) +zone = ('wvz001', 0.0017610928108103352) + +[fips4200732680] +centroid = (0.70879407427779784, -1.399988754523968) +description = Harmony township, PA +station = ('kpit', 0.0022421805845735969) +zone = ('paz020', 0.002188395544276142) + +[fips4200735488] +centroid = (0.71232712682931754, -1.4020133015496965) +description = Homewood borough, PA +station = ('kbvi', 0.0012380373722865052) +zone = ('paz020', 0.0023020632996098656) + +[fips4200735576] +centroid = (0.70858402390232034, -1.4045318989267868) +description = Hookstown borough, PA +station = ('kbvi', 0.0030869238406102399) +zone = ('wvz001', 0.0018964641171692975) + +[fips4200735640] +centroid = (0.70842820090670222, -1.4010198950460462) +description = Hopewell township, PA +station = ('kpit', 0.001932002554049878) +zone = ('paz020', 0.0019058075822951665) + +[fips4200736776] +centroid = (0.70755438436339879, -1.4020565682618533) +description = Independence township, PA +station = ('kpit', 0.0016387442048400849) +zone = ('paz020', 0.0024963368208213424) + +[fips4200736944] +centroid = (0.70959554692360616, -1.4034361114092146) +description = Industry borough, PA +station = ('kbvi', 0.0019224931657170043) +zone = ('paz020', 0.00092952248609897152) + +[fips4200740400] +centroid = (0.71272214719892135, -1.401820512480521) +description = Koppel borough, PA +station = ('kbvi', 0.0016203069437333542) +zone = ('paz020', 0.0027129979745936709) + +[fips4200747432] +centroid = (0.7118990499236808, -1.3998973865376261) +description = Marion township, PA +station = ('kbvi', 0.0025640589974380164) +zone = ('paz020', 0.0026338625473074071) + +[fips4200749184] +centroid = (0.70920333653409795, -1.4042572190091078) +description = Midland borough, PA +station = ('kbvi', 0.0024334590245167517) +zone = ('paz020', 0.0016649112084405416) + +[fips4200750320] +centroid = (0.71006004885073193, -1.4010357949955319) +description = Monaca borough, PA +station = ('kbvi', 0.00221633953559949) +zone = ('paz020', 0.0010042579945978593) + +[fips4200753288] +centroid = (0.71097105836039542, -1.4016647243914879) +description = New Brighton borough, PA +station = ('kbvi', 0.0013137189724703913) +zone = ('paz020', 0.0010697469098886886) + +[fips4200753592] +centroid = (0.71267757148982536, -1.4032624860552261) +description = New Galilee borough, PA +station = ('kbvi', 0.0011650907290656277) +zone = ('paz020', 0.0027246727551339949) + +[fips4200754072] +centroid = (0.7107235881257552, -1.3997177223444257) +description = New Sewickley township, PA +station = ('kbvi', 0.002786206766205333) +zone = ('paz020', 0.0021164290635118416) + +[fips4200755400] +centroid = (0.7122890262917464, -1.4010246074350265) +description = North Sewickley township, PA +station = ('kbvi', 0.0018515684649437663) +zone = ('paz020', 0.0024659738467522336) + +[fips4200756] +centroid = (0.70787557730564332, -1.363096630567135) +description = Alexandria borough, PA +station = ('kaoo', 0.0053508153638151213) +zone = ('paz026', 0.0029247230102720551) + +[fips4200756432] +centroid = (0.71008312210344338, -1.4046994679882707) +description = Ohioville borough, PA +station = ('kbvi', 0.0018051943110133791) +zone = ('paz020', 0.001774715042047223) + +[fips4200758375] +centroid = (0.71111258710943959, -1.4020713686539104) +description = Patterson township, PA +station = ('kbvi', 0.00097466740163255287) +zone = ('paz020', 0.0010945668007437436) + +[fips4200758384] +centroid = (0.71103568790259686, -1.4019553915251153) +description = Patterson Heights borough, PA +station = ('kbvi', 0.0010869028553993044) +zone = ('paz020', 0.0010417380181664154) + +[fips4200762352] +centroid = (0.70940108233834898, -1.4024627238320848) +description = Potter township, PA +station = ('kbvi', 0.0021931130957373603) +zone = ('paz020', 0.00064374829245331382) + +[fips4200762888] +centroid = (0.71094037547214539, -1.4014603288827872) +description = Pulaski township, PA +station = ('kbvi', 0.0014678954989637274) +zone = ('paz020', 0.0011293659497461123) + +[fips4200763224] +centroid = (0.70858276726525893, -1.402841163573795) +description = Raccoon township, PA +station = ('kpit', 0.0027724167023170754) +zone = ('paz020', 0.0015023861906834322) + +[fips4200764] +centroid = (0.70968345915802911, -1.3518596248841424) +description = Alfarata CDP, PA +station = ('kunv', 0.0061592017069577775) +zone = ('paz028', 0.0023912903163504505) + +[fips4200765392] +centroid = (0.71039536150662508, -1.4012102406542688) +description = Rochester borough, PA +station = ('kbvi', 0.0019038573677953431) +zone = ('paz020', 0.0009412710029866355) + +[fips4200765400] +centroid = (0.71057998243490106, -1.4009621595543904) +description = Rochester township, PA +station = ('kbvi', 0.0019648632220693606) +zone = ('paz020', 0.0011892757016783095) + +[fips4200770376] +centroid = (0.70903978172989357, -1.4035201490126981) +description = Shippingport borough, PA +station = ('kbvi', 0.0024815786925728596) +zone = ('paz020', 0.0013324795603434573) + +[fips4200771952] +centroid = (0.71147088575158157, -1.4042920906875627) +description = South Beaver township, PA +station = ('kbvi', 0.00079436158047606212) +zone = ('paz020', 0.0020473524918738803) + +[fips4200772216] +centroid = (0.70816643642548815, -1.4003836178139391) +description = South Heights borough, PA +station = ('kpit', 0.0015993899594219318) +zone = ('paz020', 0.0024000160778365315) + +[fips4200779856] +centroid = (0.7100861240697568, -1.4020258504670182) +description = Vanport township, PA +station = ('kbvi', 0.0016993970677087022) +zone = ('paz020', 0.000257419625786703) + +[fips4200783472] +centroid = (0.71174884688825424, -1.4021744128929481) +description = West Mayfield borough, PA +station = ('kbvi', 0.00084427944180008217) +zone = ('paz020', 0.0017145318783251711) + +[fips4200784444] +centroid = (0.71151628176542592, -1.4021200284334558) +description = White township, PA +station = ('kbvi', 0.00085181904996461304) +zone = ('paz020', 0.0014873446872258869) + +[fips4200820] +centroid = (0.70887990957041103, -1.4007168186214374) +description = Aliquippa city, PA +station = ('kpit', 0.0023305001296078202) +zone = ('paz020', 0.0017029276884914651) + +[fips42009] +centroid = (0.69808134804881183, -1.3699085808244988) +description = Bedford County, PA +station = ('kaoo', 0.0057698692831827901) +zone = ('paz034', 0.00016557060759227771) + +[fips4200904944] +centroid = (0.69839480918246999, -1.3701360670392038) +description = Bedford borough, PA +station = ('kaoo', 0.0055595162215105924) +zone = ('paz034', 0.00022632198506853936) + +[fips4200904952] +centroid = (0.69911639810841442, -1.37014594560277) +description = Bedford township, PA +station = ('kaoo', 0.0049280805577594042) +zone = ('paz034', 0.00088770053829477231) + +[fips4200907024] +centroid = (0.70242864905626434, -1.3686935349591378) +description = Bloomfield township, PA +station = ('kaoo', 0.0016699000024490162) +zone = ('paz025', 0.0042128385579850011) + +[fips4200908880] +centroid = (0.70047831343033073, -1.3650777712543662) +description = Broad Top township, PA +station = ('kaoo', 0.0032015838238867557) +zone = ('paz035', 0.00388770596425314) + +[fips4200914584] +centroid = (0.70105266638057695, -1.3651373742483219) +description = Coaldale borough, PA +station = ('kaoo', 0.0026714532205346008) +zone = ('paz035', 0.0044449333794998264) + +[fips4200915032] +centroid = (0.69686658143613123, -1.370180887094395) +description = Colerain township, PA +station = ('kcbe', 0.0064359937150243601) +zone = ('paz034', 0.0013955624042230588) + +[fips4200917664] +centroid = (0.69486049999388888, -1.3725454068051193) +description = Cumberland Valley township, PA +station = ('kcbe', 0.0038004424552735387) +zone = ('mdz502', 0.0032340808895886487) + +[fips4200921736] +centroid = (0.69817966244557661, -1.365950383520486) +description = East Providence township, PA +station = ('kaoo', 0.0052368412442568785) +zone = ('paz035', 0.0024262338719185745) + +[fips4200921788] +centroid = (0.70040607425259072, -1.3710883710389694) +description = East St. Clair township, PA +station = ('kaoo', 0.0043681068916358338) +zone = ('paz034', 0.0023392162231592253) + +[fips4200924] +centroid = (0.70221676608507222, -1.3260587541644682) +description = Alleghenyville CDP, PA +station = ('krdg', 0.0023190213158251526) +zone = ('paz060', 0.0032556226064418309) + +[fips4200924304] +centroid = (0.69832171479339633, -1.3675525608672316) +description = Everett borough, PA +station = ('kaoo', 0.0050718034052157921) +zone = ('paz034', 0.0018090736839594154) + +[fips4200932840] +centroid = (0.6974021706236907, -1.3723045862749292) +description = Harrison township, PA +station = ('kcbe', 0.0062474853564688229) +zone = ('paz034', 0.0020182567505322114) + +[fips4200935648] +centroid = (0.70047199533843851, -1.3660050821392435) +description = Hopewell borough, PA +station = ('kaoo', 0.0029723995258963899) +zone = ('paz034', 0.0037271729667662976) + +[fips4200935656] +centroid = (0.7003351964316672, -1.367167017635466) +description = Hopewell township, PA +station = ('kaoo', 0.0030402007021758503) +zone = ('paz034', 0.0029623355845810632) + +[fips4200936640] +centroid = (0.69500569393436229, -1.3739492100290835) +description = Hyndman borough, PA +station = ('kcbe', 0.003627321929975209) +zone = ('mdz502', 0.0037210804688975817) + +[fips4200938576] +centroid = (0.69790424948961183, -1.3739715502435088) +description = Juniata township, PA +station = ('kjst', 0.0059403426625851963) +zone = ('paz034', 0.003128439901641611) + +[fips4200939658] +centroid = (0.70230598731643412, -1.3703061319215182) +description = Kimmel township, PA +station = ('kaoo', 0.0028189377927208977) +zone = ('paz034', 0.004070243898106062) + +[fips4200939720] +centroid = (0.701559806701329, -1.3703275645647326) +description = King township, PA +station = ('kaoo', 0.0031902467800641711) +zone = ('paz034', 0.0033280978314147525) + +[fips4200943072] +centroid = (0.70180516508757429, -1.3662228817766) +description = Liberty township, PA +station = ('kaoo', 0.0016418925686636067) +zone = ('paz034', 0.0045413795406331128) + +[fips4200943416] +centroid = (0.70225509351544591, -1.3717650526432603) +description = Lincoln township, PA +station = ('kaoo', 0.0038872361921274317) +zone = ('paz034', 0.0042511909937802588) + +[fips4200944448] +centroid = (0.69511809313819084, -1.3740379600215473) +description = Londonderry township, PA +station = ('kcbe', 0.0037295243114783289) +zone = ('mdz502', 0.0038521395634551125) + +[fips4200946928] +centroid = (0.69412887542474544, -1.3685471018348958) +description = Mann township, PA +station = ('kcbe', 0.0054133932538038727) +zone = ('mdz502', 0.0034879259391058896) + +[fips4200946944] +centroid = (0.69819180993717056, -1.3716756568789732) +description = Manns Choice borough, PA +station = ('kaoo', 0.0063407334032519478) +zone = ('paz034', 0.0013517407296660775) + +[fips4200950424] +centroid = (0.69599883863862466, -1.368006102126655) +description = Monroe township, PA +station = ('kcbe', 0.0068539932990147037) +zone = ('paz034', 0.0026813990909502526) + +[fips4200952648] +centroid = (0.69942083588983983, -1.3726483812309869) +description = Napier township, PA +station = ('kjst', 0.0049124405318322672) +zone = ('paz034', 0.0024011713755308687) + +[fips4200953928] +centroid = (0.70002377733323373, -1.3725804530164996) +description = New Paris borough, PA +station = ('kjst', 0.0044320037486646575) +zone = ('paz034', 0.0027069401860433081) + +[fips4200958492] +centroid = (0.70302242752108524, -1.3716778909004155) +description = Pavia township, PA +station = ('kaoo', 0.0036731794239677168) +zone = ('paz024', 0.0040921580607121951) + +[fips4200961496] +centroid = (0.70126840652941613, -1.3720603972592826) +description = Pleasantville borough, PA +station = ('kjst', 0.0037824239116117384) +zone = ('paz034', 0.0034394245681118444) + +[fips4200963312] +centroid = (0.69631174126692219, -1.3703854222294363) +description = Rainsburg borough, PA +station = ('kcbe', 0.0058852093115255924) +zone = ('paz034', 0.0019688292344963881) + +[fips4200967256] +centroid = (0.70085200587647523, -1.3702712951496483) +description = St. Clairsville borough, PA +station = ('kaoo', 0.0036080412404700178) +zone = ('paz034', 0.0026195444657535283) + +[fips4200968072] +centroid = (0.70184415574306391, -1.3656688444588467) +description = Saxton borough, PA +station = ('kaoo', 0.001783454896927018) +zone = ('paz034', 0.004844976838549433) + +[fips4200968152] +centroid = (0.69897225136549235, -1.3725859682569357) +description = Schellsburg borough, PA +station = ('kjst', 0.0053269949811433452) +zone = ('paz034', 0.0021719379751189336) + +[fips4200971544] +centroid = (0.698800074634783, -1.3686280676588958) +description = Snake Spring township, PA +station = ('kaoo', 0.0047581351859346706) +zone = ('paz034', 0.001128439956635678) + +[fips4200971888] +centroid = (0.69434419669456393, -1.3705809863721221) +description = Southampton township, PA +station = ('kcbe', 0.0042780596431365022) +zone = ('mdz502', 0.0028175574889344312) + +[fips4200972656] +centroid = (0.70096100168826225, -1.3685953776420057) +description = South Woodbury township, PA +station = ('kaoo', 0.0027385782924063224) +zone = ('paz034', 0.0028951299035876628) + +[fips4200980] +centroid = (0.70454819435317873, -1.3591595168404864) +description = Allenport CDP, PA +station = ('kaoo', 0.0060052024708040037) +zone = ('paz026', 0.0016640030058418548) + +[fips4200983920] +centroid = (0.69794961059687122, -1.3674677902254624) +description = West Providence township, PA +station = ('kaoo', 0.0054364441199293654) +zone = ('paz034', 0.0018961964422554514) + +[fips4200983972] +centroid = (0.70124545544975225, -1.3723933013608081) +description = West St. Clair township, PA +station = ('kjst', 0.0036044325021954548) +zone = ('paz034', 0.0035487108836933234) + +[fips4200986128] +centroid = (0.70206380542942737, -1.3677440234861755) +description = Woodbury borough, PA +station = ('kaoo', 0.0014598342840889526) +zone = ('paz034', 0.0041615687455932105) + +[fips4200986136] +centroid = (0.70214965817533304, -1.367492957873276) +description = Woodbury township, PA +station = ('kaoo', 0.0013037395095562873) +zone = ('paz034', 0.0043191200730050856) + +[fips4200988] +centroid = (0.6996810470280197, -1.3938064492475537) +description = Allenport borough, PA +station = ('kagc', 0.0046231214818833058) +zone = ('paz075', 0.0027127872184072952) + +[fips4201004] +centroid = (0.70737040920694605, -1.3580626472187778) +description = Allensville CDP, PA +station = ('kunv', 0.0056200260607941607) +zone = ('paz027', 0.0029372754525592705) + +[fips42011] +centroid = (0.70535661340941003, -1.325173697700782) +description = Berks County, PA +station = ('krdg', 0.00098043345378362348) +zone = ('paz060', 4.41433061594723e-05) + +[fips4201100364] +centroid = (0.7024784258465312, -1.3272502380849271) +description = Adamstown borough, PA +station = ('krdg', 0.0023074607728265726) +zone = ('paz060', 0.0033276546579881086) + +[fips4201100588] +centroid = (0.70922880088788465, -1.3249669459975906) +description = Albany township, PA +station = ('krdg', 0.0047473121888185598) +zone = ('paz060', 0.0038323214488444799) + +[fips4201102120] +centroid = (0.7048662282494772, -1.3239694554234906) +description = Alsace township, PA +station = ('krdg', 0.0014849485426688428) +zone = ('paz060', 0.0010508478795276824) + +[fips4201102328] +centroid = (0.70322059220435673, -1.3220202542615711) +description = Amity township, PA +station = ('krdg', 0.0032130998306778096) +zone = ('paz060', 0.0032352179067872463) + +[fips4201103984] +centroid = (0.70512088924063554, -1.3192517257355951) +description = Bally borough, PA +station = ('kukt', 0.0028014898290710192) +zone = ('paz061', 0.0037084916915295614) + +[fips4201104896] +centroid = (0.70459217665032903, -1.3200070867825657) +description = Bechtelsville borough, PA +station = ('kptw', 0.0026192470637597244) +zone = ('paz061', 0.0042672518963522039) + +[fips4201105816] +centroid = (0.70506734253918446, -1.3263917280791635) +description = Bern township, PA +station = ('krdg', 0.00066804598103387125) +zone = ('paz060', 0.00099585037853613554) + +[fips4201105848] +centroid = (0.70570222350788991, -1.3283905489517176) +description = Bernville borough, PA +station = ('krdg', 0.002249477951751106) +zone = ('paz060', 0.0024788530922601041) + +[fips4201106008] +centroid = (0.70646805653037248, -1.3320823566519986) +description = Bethel township, PA +station = ('kmui', 0.0033310068067509521) +zone = ('paz059', 0.0026330411171357161) + +[fips4201106504] +centroid = (0.70271020557119601, -1.3231360781589561) +description = Birdsboro borough, PA +station = ('krdg', 0.0027671159858169482) +zone = ('paz060', 0.0030996363886727453) + +[fips4201107960] +centroid = (0.70393134263564638, -1.3201244078148846) +description = Boyertown borough, PA +station = ('kptw', 0.0020838118317779023) +zone = ('paz068', 0.0041774245170319527) + +[fips4201108344] +centroid = (0.70208619800373051, -1.3259471578120956) +description = Brecknock township, PA +station = ('krdg', 0.0024457801201580058) +zone = ('paz060', 0.0033671509396098836) + +[fips4201110696] +centroid = (0.7010038669746913, -1.3243866065680101) +description = Caernarvon township, PA +station = ('kmqs', 0.0032250608656026534) +zone = ('paz067', 0.0037843118771596707) + +[fips4201112104] +centroid = (0.70661230799304986, -1.3265289807715406) +description = Centerport borough, PA +station = ('krdg', 0.0021409495611874677) +zone = ('paz060', 0.0015996267662530413) + +[fips4201112344] +centroid = (0.70643499999433967, -1.3267575839969667) +description = Centre township, PA +station = ('krdg', 0.0020205147094162672) +zone = ('paz060', 0.0015979187448893662) + +[fips4201114984] +centroid = (0.70414484876304284, -1.3204107116253818) +description = Colebrookdale township, PA +station = ('kptw', 0.0023836914448047918) +zone = ('paz068', 0.0044742808509910274) + +[fips4201117720] +centroid = (0.70292585845357236, -1.3256658456432591) +description = Cumru township, PA +station = ('krdg', 0.0016127979863868006) +zone = ('paz060', 0.0025034139986896712) + +[fips4201119312] +centroid = (0.70570412591677456, -1.3204624955442883) +description = District township, PA +station = ('kxll', 0.0032485149933093346) +zone = ('paz061', 0.0032398496324936386) + +[fips4201119664] +centroid = (0.70317992603278523, -1.3209056520946625) +description = Douglass township, PA +station = ('kptw', 0.0020144293799960011) +zone = ('paz060', 0.0039281337320826743) + +[fips4201120680] +centroid = (0.70418926739250609, -1.3212756269895003) +description = Earl township, PA +station = ('kptw', 0.0028491661617711002) +zone = ('paz060', 0.0031958154822832878) + +[fips4201124384] +centroid = (0.70362491517887371, -1.3235791299895747) +description = Exeter township, PA +station = ('krdg', 0.001966279117622126) +zone = ('paz060', 0.0021439922117115081) + +[fips4201126280] +centroid = (0.70609918119296344, -1.3233361976109896) +description = Fleetwood borough, PA +station = ('krdg', 0.0024851401130652627) +zone = ('paz060', 0.0015537278539638035) + +[fips4201131352] +centroid = (0.70795125478200971, -1.3234585626448472) +description = Greenwich township, PA +station = ('krdg', 0.0038804720927956534) +zone = ('paz060', 0.002860862252176534) + +[fips4201132120] +centroid = (0.70783965842963725, -1.3261423030757611) +description = Hamburg borough, PA +station = ('krdg', 0.0033149713586575441) +zone = ('paz060', 0.0025524961105898377) + +[fips4201133600] +centroid = (0.70459334602092782, -1.3294065574691811) +description = Heidelberg township, PA +station = ('krdg', 0.0026963776759070979) +zone = ('paz060', 0.0033341014569372696) + +[fips4201134016] +centroid = (0.70583860353564076, -1.3191512820371427) +description = Hereford township, PA +station = ('kxll', 0.0025511393727610304) +zone = ('paz061', 0.002993524313088654) + +[fips4201137824] +centroid = (0.70589342432744584, -1.3292411875225545) +description = Jefferson township, PA +station = ('krdg', 0.0029071349174574876) +zone = ('paz060', 0.0031466142015056479) + +[fips4201139256] +centroid = (0.70348692944821101, -1.3254699149814302) +description = Kenhorst borough, PA +station = ('krdg', 0.001087600511049013) +zone = ('paz060', 0.0019269704647253642) + +[fips4201140656] +centroid = (0.707230329081181, -1.3225631738319887) +description = Kutztown borough, PA +station = ('krdg', 0.0036895206593958144) +zone = ('paz060', 0.0026929032731473133) + +[fips4201141768] +centroid = (0.70493316162629116, -1.3249375546529869) +description = Laureldale borough, PA +station = ('krdg', 0.00081512451367395837) +zone = ('paz060', 0.00049557695684058556) + +[fips4201142352] +centroid = (0.70588954969650641, -1.3258786885455398) +description = Leesport borough, PA +station = ('krdg', 0.0013583306605520424) +zone = ('paz060', 0.00073536509249953199) + +[fips4201142688] +centroid = (0.7081524563381798, -1.3245366176172189) +description = Lenhartsville borough, PA +station = ('krdg', 0.0037602839588325838) +zone = ('paz060', 0.0027935496807555342) + +[fips4201144584] +centroid = (0.70672563222138185, -1.3205368291171309) +description = Longswamp township, PA +station = ('kxll', 0.0026441165116290132) +zone = ('paz061', 0.0022924910089833711) + +[fips4201144840] +centroid = (0.70422389472486568, -1.3244856365497681) +description = Lower Alsace township, PA +station = ('krdg', 0.0010976360396741571) +zone = ('paz060', 0.00128230687678321) + +[fips4201144928] +centroid = (0.70422815332824051, -1.3274026402352113) +description = Lower Heidelberg township, PA +station = ('krdg', 0.001207719325327718) +zone = ('paz060', 0.0020719907124468733) + +[fips4201145752] +centroid = (0.70651936921038117, -1.3222430804471732) +description = Lyons borough, PA +station = ('krdg', 0.0034014185964462728) +zone = ('paz060', 0.0024854570990617622) + +[fips4201146680] +centroid = (0.70625093757142443, -1.3245115721424527) +description = Maidencreek township, PA +station = ('krdg', 0.0020061394434681499) +zone = ('paz060', 0.00098383403968456688) + +[fips4201147440] +centroid = (0.70498333984228589, -1.3304607886972633) +description = Marion township, PA +station = ('krdg', 0.0035273873950940832) +zone = ('paz059', 0.0030623433660359181) + +[fips4201148128] +centroid = (0.70730513389292149, -1.3220181249598837) +description = Maxatawny township, PA +station = ('krdg', 0.0040348874532812259) +zone = ('paz061', 0.002543969292593744) + +[fips4201150272] +centroid = (0.70314866718588198, -1.3262218726363595) +description = Mohnton borough, PA +station = ('krdg', 0.0014085826905134706) +zone = ('paz060', 0.0023919885136097509) + +[fips4201151760] +centroid = (0.70386655601381243, -1.3245254126034212) +description = Mount Penn borough, PA +station = ('krdg', 0.0012204545586790802) +zone = ('paz060', 0.0016068367211996516) + +[fips4201152200] +centroid = (0.70502756648553155, -1.3251392274480549) +description = Muhlenberg township, PA +station = ('krdg', 0.00074492309771963553) +zone = ('paz060', 0.00037198059875006992) + +[fips4201153916] +centroid = (0.70143768601356693, -1.324730680776748) +description = New Morgan borough, PA +station = ('krdg', 0.0032130285942230962) +zone = ('paz060', 0.0039749904111841105) + +[fips4201155088] +centroid = (0.70508919406141934, -1.328532688566) +description = North Heidelberg township, PA +station = ('krdg', 0.002104740102323662) +zone = ('paz060', 0.0025877853654125908) + +[fips4201156672] +centroid = (0.70461942123995258, -1.322460531018679) +description = Oley township, PA +station = ('krdg', 0.0025979483787718144) +zone = ('paz060', 0.0021979253357969674) + +[fips4201156856] +centroid = (0.70599978469206248, -1.3253493301834098) +description = Ontelaunee township, PA +station = ('krdg', 0.001520811414779904) +zone = ('paz060', 0.00061781579060528953) + +[fips4201158784] +centroid = (0.70564853718009857, -1.3277963167012909) +description = Penn township, PA +station = ('krdg', 0.001844958039037157) +zone = ('paz060', 0.0020233676710269977) + +[fips4201159448] +centroid = (0.70705028091554534, -1.3254263690165931) +description = Perry township, PA +station = ('krdg', 0.0025414115821049549) +zone = ('paz060', 0.0016635423192968061) + +[fips4201160176] +centroid = (0.70516621544130986, -1.3209290046000539) +description = Pike township, PA +station = ('kptw', 0.0034550636997189759) +zone = ('paz061', 0.0038576119872023428) + +[fips4201163624] +centroid = (0.70405220668634694, -1.3251635224312426) +description = Reading city, PA +station = ('krdg', 0.00071976868671824192) +zone = ('paz060', 0.0013470501514260694) + +[fips4201164592] +centroid = (0.70671440975429156, -1.3236122039789002) +description = Richmond township, PA +station = ('krdg', 0.0027777587090056948) +zone = ('paz060', 0.0017647674851788099) + +[fips4201165320] +centroid = (0.70229486956909892, -1.3242680987117994) +description = Robeson township, PA +station = ('krdg', 0.0025477368082648787) +zone = ('paz060', 0.0031777599300214445) + +[fips4201165336] +centroid = (0.7042164596222521, -1.3288711951744243) +description = Robesonia borough, PA +station = ('krdg', 0.0023096900444879438) +zone = ('paz060', 0.0030653377447748811) + +[fips4201165544] +centroid = (0.70591777167051117, -1.3219346982216382) +description = Rockland township, PA +station = ('krdg', 0.0033007592299682423) +zone = ('paz060', 0.0025082321741461727) + +[fips4201166728] +centroid = (0.70552945336523498, -1.3234182106325409) +description = Ruscombmanor township, PA +station = ('krdg', 0.0021162947783560922) +zone = ('paz060', 0.0013314251870343288) + +[fips4201167304] +centroid = (0.70381773915463408, -1.3241068651955004) +description = St. Lawrence borough, PA +station = ('krdg', 0.0015204047477708532) +zone = ('paz060', 0.0017729464098050331) + +[fips4201170248] +centroid = (0.70343060767324916, -1.3258662967078507) +description = Shillington borough, PA +station = ('krdg', 0.0011006349448219534) +zone = ('paz060', 0.0020411483587037902) + +[fips4201170464] +centroid = (0.70685661918174403, -1.3259226882959827) +description = Shoemakersville borough, PA +station = ('krdg', 0.0023257441684480379) +zone = ('paz060', 0.0015690264444048222) + +[fips4201170880] +centroid = (0.70379864525261726, -1.3268434541961649) +description = Sinking Spring borough, PA +station = ('krdg', 0.0010434996596068221) +zone = ('paz060', 0.0020517079441890944) + +[fips4201172208] +centroid = (0.70356175171324398, -1.3281571635241409) +description = South Heidelberg township, PA +station = ('krdg', 0.0019958105080070164) +zone = ('paz060', 0.0029319235891335556) + +[fips4201172824] +centroid = (0.70348384021543497, -1.3270169748303979) +description = Spring township, PA +station = ('krdg', 0.001365095749721805) +zone = ('paz060', 0.0023819648491728257) + +[fips4201174744] +centroid = (0.70671442720758404, -1.3296647614787211) +description = Strausstown borough, PA +station = ('krdg', 0.0036217540385213983) +zone = ('paz060', 0.0036723659425774565) + +[fips4201176712] +centroid = (0.70762236493776387, -1.3270470817599951) +description = Tilden township, PA +station = ('krdg', 0.0032185946667615262) +zone = ('paz060', 0.0026467704680058326) + +[fips4201177104] +centroid = (0.70691718210678822, -1.3212585402161232) +description = Topton borough, PA +station = ('kxll', 0.0030495998054851318) +zone = ('paz061', 0.0024056709349934164) + +[fips4201177752] +centroid = (0.70574416376981541, -1.3308251785384946) +description = Tulpehocken township, PA +station = ('krdg', 0.0039647429775895643) +zone = ('paz059', 0.0030034136538396299) + +[fips4201178280] +centroid = (0.70202764220732616, -1.3225554769299877) +description = Union township, PA +station = ('krdg', 0.0035571311695370878) +zone = ('paz060', 0.0039124399643551602) + +[fips4201178752] +centroid = (0.70718545666611232, -1.3280432284305708) +description = Upper Bern township, PA +station = ('krdg', 0.0031279837963745579) +zone = ('paz060', 0.0028295357805519197) + +[fips4201179328] +centroid = (0.70689936229512529, -1.3293344928243662) +description = Upper Tulpehocken township, PA +station = ('krdg', 0.0035451246439515) +zone = ('paz060', 0.0035135600192526375) + +[fips4201181184] +centroid = (0.7049428656569322, -1.3195687647942198) +description = Washington township, PA +station = ('kptw', 0.0028373538363249081) +zone = ('paz061', 0.0038899773726465436) + +[fips4201182296] +centroid = (0.70389912385765463, -1.3278929206753891) +description = Wernersville borough, PA +station = ('krdg', 0.0016673534989357043) +zone = ('paz060', 0.0025669934947381819) + +[fips4201183928] +centroid = (0.70395692916248065, -1.3255232173367864) +description = West Reading borough, PA +station = ('krdg', 0.0006317114465747536) +zone = ('paz060', 0.0014688141864417277) + +[fips4201185720] +centroid = (0.70808819331512129, -1.3256153532679988) +description = Windsor township, PA +station = ('krdg', 0.0035621598083938346) +zone = ('paz060', 0.0027112751896919717) + +[fips4201186056] +centroid = (0.70450742346185213, -1.3296784797666419) +description = Womelsdorf borough, PA +station = ('krdg', 0.0029030422164573128) +zone = ('paz060', 0.0035561065976644139) + +[fips4201186880] +centroid = (0.70398776913036332, -1.3258776413479887) +description = Wyomissing borough, PA +station = ('krdg', 0.00054351734631418521) +zone = ('paz060', 0.0015140228145112864) + +[fips42013] +centroid = (0.70682214892901707, -1.3667785073439724) +description = Blair County, PA +station = ('kaoo', 0.003455388990982924) +zone = ('paz025', 0.00058145158191219581) + +[fips4201300852] +centroid = (0.70603345209333335, -1.3696506037077616) +description = Allegheny township, PA +station = ('kaoo', 0.0033984276169561289) +zone = ('paz025', 0.0017533584287023358) + +[fips4201302184] +centroid = (0.70700128952344177, -1.3683609275635855) +description = Altoona city, PA +station = ('kaoo', 0.0038037425582476739) +zone = ('paz025', 0.00084239328822245869) + +[fips4201302680] +centroid = (0.70929892821722973, -1.3676212919331754) +description = Antis township, PA +station = ('kaoo', 0.005957723043954118) +zone = ('paz025', 0.0027703445647551026) + +[fips4201305384] +centroid = (0.70861987296515638, -1.3671913300719465) +description = Bellwood borough, PA +station = ('kaoo', 0.005257399021718308) +zone = ('paz025', 0.0020965079638911028) + +[fips4201306872] +centroid = (0.70510125428655068, -1.368507535220753) +description = Blair township, PA +station = ('kaoo', 0.0021299672292520774) +zone = ('paz025', 0.0016449306438195053) + +[fips4201311760] +centroid = (0.70737667493896084, -1.3652453577691428) +description = Catharine township, PA +station = ('kaoo', 0.0041985617233817754) +zone = ('paz025', 0.0018710024869320254) + +[fips4201320248] +centroid = (0.70557217902532376, -1.3688662701952079) +description = Duncansville borough, PA +station = ('kaoo', 0.0026724132713001687) +zone = ('paz025', 0.0014482222819280513) + +[fips4201327600] +centroid = (0.70604219619288588, -1.3666847482565552) +description = Frankstown township, PA +station = ('kaoo', 0.0026787983080506935) +zone = ('paz025', 0.00075559489057362695) + +[fips4201327720] +centroid = (0.70444612749852209, -1.3694397330275356) +description = Freedom township, PA +station = ('kaoo', 0.0022270510607869162) +zone = ('paz025', 0.0025818597366019211) + +[fips4201331000] +centroid = (0.70358967698127595, -1.3702256896962937) +description = Greenfield township, PA +station = ('kaoo', 0.0025582445349711549) +zone = ('paz025', 0.0036269154429640557) + +[fips4201335224] +centroid = (0.7056553265108888, -1.3682151751177514) +description = Hollidaysburg borough, PA +station = ('kaoo', 0.0025024955165524926) +zone = ('paz025', 0.0010561625169872449) + +[fips4201336496] +centroid = (0.70438233571436171, -1.3659511514653568) +description = Huston township, PA +station = ('kaoo', 0.0012389134870946375) +zone = ('paz025', 0.0024305344176183321) + +[fips4201338592] +centroid = (0.70507931549785308, -1.3705883691148582) +description = Juniata township, PA +station = ('kaoo', 0.0033016928389647936) +zone = ('paz025', 0.0028014558429928556) + +[fips4201344328] +centroid = (0.70735703998487587, -1.3687819707923365) +description = Logan township, PA +station = ('kaoo', 0.0042430910615883048) +zone = ('paz025', 0.0013115963328791033) + +[fips4201347872] +centroid = (0.70355777236254946, -1.367014109339699) +description = Martinsburg borough, PA +station = ('kaoo', 0.00021453088632355323) +zone = ('paz025', 0.0029919173351991312) + +[fips4201354024] +centroid = (0.70499651707813848, -1.3689615477190744) +description = Newry borough, PA +station = ('kaoo', 0.002271768109257223) +zone = ('paz025', 0.0019227401927955558) + +[fips4201355592] +centroid = (0.7031737126606481, -1.3667119928461786) +description = North Woodbury township, PA +station = ('kaoo', 0.00023404560386424024) +zone = ('paz025', 0.0034038611152789906) + +[fips4201365256] +centroid = (0.70397480133402102, -1.3682677444348215) +description = Roaring Spring borough, PA +station = ('kaoo', 0.0012174750371343628) +zone = ('paz025', 0.0026335107460994825) + +[fips4201371624] +centroid = (0.71043733667513553, -1.3657241190362575) +description = Snyder township, PA +station = ('kunv', 0.0058633798302484908) +zone = ('paz025', 0.0041172332240579194) + +[fips4201376160] +centroid = (0.70385613639817801, -1.3680403978464566) +description = Taylor township, PA +station = ('kaoo', 0.0010082186369168274) +zone = ('paz025', 0.0027144787424105243) + +[fips4201377808] +centroid = (0.70650767550439275, -1.370794841565369) +description = Tunnelhill borough, PA +station = ('kaoo', 0.0043282258906373085) +zone = ('paz025', 0.002551107414733301) + +[fips4201378168] +centroid = (0.7099380852426026, -1.3656511293669391) +description = Tyrone borough, PA +station = ('kunv', 0.0060485084317152063) +zone = ('paz025', 0.0036673864954427605) + +[fips4201378176] +centroid = (0.70828642781156281, -1.3658008960700527) +description = Tyrone township, PA +station = ('kaoo', 0.0049872953874771824) +zone = ('paz025', 0.0021522292325337625) + +[fips4201385272] +centroid = (0.70620411038759345, -1.3649203251025439) +description = Williamsburg borough, PA +station = ('kaoo', 0.0032065698487437097) +zone = ('paz025', 0.0019453909531172548) + +[fips4201386144] +centroid = (0.70588787418042453, -1.3649750237213014) +description = Woodbury township, PA +station = ('kaoo', 0.0029096064727020783) +zone = ('paz025', 0.0019836866214849834) + +[fips42015] +centroid = (0.72939918708074758, -1.3352139485689745) +description = Bradford County, PA +station = ('kelm', 0.0083381521119370271) +zone = ('paz038', 0.00018374846177389168) + +[fips4201500572] +centroid = (0.72790546449372084, -1.340895396709944) +description = Alba borough, PA +station = ('kipt', 0.0080418384731736157) +zone = ('paz038', 0.0043108371645621648) + +[fips4201500596] +centroid = (0.72613535156634823, -1.3337452889100061) +description = Albany township, PA +station = ('kipt', 0.0089926903996463761) +zone = ('paz042', 0.0030262184909905991) + +[fips4201503056] +centroid = (0.72837172920339111, -1.341780610253263) +description = Armenia township, PA +station = ('kelm', 0.0075806418906770893) +zone = ('paz038', 0.0048215549327299311) + +[fips4201503360] +centroid = (0.72788778430839807, -1.3328833406056164) +description = Asylum township, PA +station = ('kbgm', 0.0099837584655690596) +zone = ('paz038', 0.0024091136938162059) + +[fips4201503392] +centroid = (0.73187614090188546, -1.3354560606428112) +description = Athens borough, PA +station = ('kelm', 0.0064296982683876066) +zone = ('paz038', 0.0025274840315595609) + +[fips4201503400] +centroid = (0.7322594501122085, -1.3362147901752379) +description = Athens township, PA +station = ('kelm', 0.0057506483027652882) +zone = ('paz038', 0.0029658493196314168) + +[fips4201510240] +centroid = (0.72926947421073951, -1.3370491273708613) +description = Burlington borough, PA +station = ('kelm', 0.0076823220702735119) +zone = ('paz038', 0.0011943262634758834) + +[fips4201510248] +centroid = (0.7288649767032972, -1.3364068985660051) +description = Burlington township, PA +station = ('kelm', 0.00827317433137407) +zone = ('paz038', 0.00086154496089143869) + +[fips4201511160] +centroid = (0.72705372636545507, -1.3413319908223302) +description = Canton borough, PA +station = ('kipt', 0.0071545671893504664) +zone = ('paz041', 0.0058004907849190015) + +[fips4201511168] +centroid = (0.72689088714624395, -1.3408605075781965) +description = Canton township, PA +station = ('kipt', 0.0070439379466487803) +zone = ('paz042', 0.0054035384692703078) + +[fips4201515376] +centroid = (0.73036397018466503, -1.3415085832360472) +description = Columbia township, PA +station = ('kelm', 0.005604025207796938) +zone = ('nyz024', 0.0053105402419344194) + +[fips4201527344] +centroid = (0.72742801222354525, -1.3363744179886254) +description = Franklin township, PA +station = ('kipt', 0.0087560089997536037) +zone = ('paz038', 0.0020405520320114093) + +[fips4201530464] +centroid = (0.72805402691965049, -1.3389104512049435) +description = Granville township, PA +station = ('kelm', 0.008254553107073407) +zone = ('paz038', 0.0028874658576683431) + +[fips4201534088] +centroid = (0.72934588472539175, -1.3307767107451667) +description = Herrick township, PA +station = ('kbgm', 0.0079606921722908605) +zone = ('paz038', 0.0034851156149932898) + +[fips4201542824] +centroid = (0.73020565136821669, -1.3294784475810706) +description = Le Raysville borough, PA +station = ('kbgm', 0.0067870722821367704) +zone = ('paz043', 0.0059368078449245345) + +[fips4201542856] +centroid = (0.72684952284297166, -1.3390791721837336) +description = Leroy township, PA +station = ('kipt', 0.0073489448881262883) +zone = ('paz038', 0.0036851765971470771) + +[fips4201543792] +centroid = (0.73232837316436972, -1.3340538456684663) +description = Litchfield township, PA +station = ('kelm', 0.0070211537563538593) +zone = ('paz038', 0.0031560793629403696) + +[fips4201550432] +centroid = (0.72801405887977988, -1.3347415228470445) +description = Monroe borough, PA +station = ('kelm', 0.0096628089023184944) +zone = ('paz038', 0.0014357028607688063) + +[fips4201550440] +centroid = (0.72720204444528946, -1.3349872652057255) +description = Monroe township, PA +station = ('kipt', 0.0091590868000513016) +zone = ('paz038', 0.0021743241113187217) + +[fips4201553152] +centroid = (0.72607557403946743, -1.334240369005627) +description = New Albany borough, PA +station = ('kipt', 0.0086848811359814069) +zone = ('paz042', 0.0028387511199714516) + +[fips4201555448] +centroid = (0.72928736383557236, -1.3347624318914835) +description = North Towanda township, PA +station = ('kelm', 0.00863613423434746) +zone = ('paz038', 0.00051698429816059112) + +[fips4201557176] +centroid = (0.73081943130626548, -1.3312113849953759) +description = Orwell township, PA +station = ('kbgm', 0.0068321124795819275) +zone = ('paz038', 0.0034845422490922826) + +[fips4201557448] +centroid = (0.7263865742588802, -1.3366069132982836) +description = Overton township, PA +station = ('kipt', 0.0077868418406992447) +zone = ('paz038', 0.003085263643518469) + +[fips4201560184] +centroid = (0.73039034210966269, -1.3295269851875686) +description = Pike township, PA +station = ('kbgm', 0.0066287894606642094) +zone = ('paz038', 0.0045360851867824042) + +[fips4201564696] +centroid = (0.73201484221754143, -1.3386389303332107) +description = Ridgebury township, PA +station = ('kelm', 0.0047213826696258761) +zone = ('paz038', 0.0035700569259329135) + +[fips4201565944] +centroid = (0.73055958668722865, -1.3324035670475356) +description = Rome borough, PA +station = ('kbgm', 0.0075595187231148999) +zone = ('paz038', 0.0025735680309554197) + +[fips4201565952] +centroid = (0.73079478725722735, -1.3327466638718928) +description = Rome township, PA +station = ('kbgm', 0.0075377495181211656) +zone = ('paz038', 0.0024802181791513949) + +[fips4201568096] +centroid = (0.73279046653712776, -1.3355324711574634) +description = Sayre borough, PA +station = ('kelm', 0.0058438920033466041) +zone = ('paz038', 0.0034423424904517566) + +[fips4201570208] +centroid = (0.7306010731635485, -1.334597899702898) +description = Sheshequin township, PA +station = ('kelm', 0.0077545696494570049) +zone = ('paz038', 0.0014044865769860949) + +[fips4201571312] +centroid = (0.73046532145432841, -1.3371033198441358) +description = Smithfield township, PA +station = ('kelm', 0.0066451155906458795) +zone = ('paz038', 0.0016623464445122223) + +[fips4201572096] +centroid = (0.73213947617942632, -1.3401274343857741) +description = South Creek township, PA +station = ('kelm', 0.0040953528644646188) +zone = ('nyz024', 0.0033788880741778314) + +[fips4201572592] +centroid = (0.73293691711466258, -1.3359512105516018) +description = South Waverly borough, PA +station = ('kelm', 0.0055031466472925941) +zone = ('paz038', 0.0036075341313480847) + +[fips4201573008] +centroid = (0.73066057143774898, -1.3392671092375883) +description = Springfield township, PA +station = ('kelm', 0.0057063024989585974) +zone = ('paz038', 0.0031317608208951838) + +[fips4201573632] +centroid = (0.72903676946157103, -1.3321695009415508) +description = Standing Stone township, PA +station = ('kbgm', 0.0087229810769870186) +zone = ('paz038', 0.0024667723097797404) + +[fips4201574032] +centroid = (0.72906715564384827, -1.3294510808183995) +description = Stevens township, PA +station = ('kbgm', 0.0078526976584432587) +zone = ('paz043', 0.0048757978677028933) + +[fips4201575944] +centroid = (0.7295836683826834, -1.3414877440047783) +description = Sylvania borough, PA +station = ('kelm', 0.0063829844614170274) +zone = ('paz038', 0.0045067826406089244) + +[fips4201576408] +centroid = (0.72689289427488379, -1.3321832541360565) +description = Terry township, PA +station = ('kipt', 0.010365070676399576) +zone = ('paz038', 0.0034611774813567407) + +[fips4201577168] +centroid = (0.72904052191946278, -1.3342431789857228) +description = Towanda borough, PA +station = ('kelm', 0.0090737580505779857) +zone = ('paz038', 0.00095186234553072983) + +[fips4201577176] +centroid = (0.72865295410576492, -1.3347636361686672) +description = Towanda township, PA +station = ('kelm', 0.0091346979383177436) +zone = ('paz038', 0.00086414682272413989) + +[fips4201577584] +centroid = (0.72925641914793449, -1.340277113822425) +description = Troy borough, PA +station = ('kelm', 0.0068353345110615769) +zone = ('paz038', 0.0035997994145254234) + +[fips4201577592] +centroid = (0.72888152242460613, -1.3400792109385413) +description = Troy township, PA +station = ('kelm', 0.0072327709571961855) +zone = ('paz038', 0.0034830987054776533) + +[fips4201577936] +centroid = (0.72772855792073865, -1.3291952853632272) +description = Tuscarora township, PA +station = ('kavp', 0.0084090561393382057) +zone = ('paz043', 0.0035998765643855237) + +[fips4201578232] +centroid = (0.73051202646511171, -1.3358186877014979) +description = Ulster township, PA +station = ('kelm', 0.007192220494258504) +zone = ('paz038', 0.0011952178700029323) + +[fips4201580984] +centroid = (0.73220937661596874, -1.3297422366442173) +description = Warren township, PA +station = ('kbgm', 0.0050725846934877653) +zone = ('nyz055', 0.0040956646237536552) + +[fips4201582144] +centroid = (0.73221073797278524, -1.3416039654796688) +description = Wells township, PA +station = ('kelm', 0.0037590197163842034) +zone = ('nyz024', 0.0035800379480334385) + +[fips4201582656] +centroid = (0.72918548896713353, -1.3378832551269746) +description = West Burlington township, PA +station = ('kelm', 0.0074713740362251221) +zone = ('paz038', 0.0018210460768013513) + +[fips4201585544] +centroid = (0.72596526923074134, -1.3309916480425499) +description = Wilmot township, PA +station = ('kavp', 0.0082644515344878298) +zone = ('paz043', 0.0034505159608858556) + +[fips4201585672] +centroid = (0.73232661038182523, -1.3319748967299534) +description = Windham township, PA +station = ('kbgm', 0.0060241755863893361) +zone = ('nyz055', 0.0036863596864847785) + +[fips4201586656] +centroid = (0.72732564866291582, -1.3310075130854504) +description = Wyalusing borough, PA +station = ('kavp', 0.0090924036736394556) +zone = ('paz043', 0.0041767765563711975) + +[fips4201586664] +centroid = (0.72764677179199022, -1.330989972526468) +description = Wyalusing township, PA +station = ('kavp', 0.0092943145398245233) +zone = ('paz043', 0.0043808204603242315) + +[fips4201586912] +centroid = (0.7297983089740937, -1.3330417815951123) +description = Wysox township, PA +station = ('kbgm', 0.0084530935632729214) +zone = ('paz038', 0.0018513292154781326) + +[fips42017] +centroid = (0.70401148815489789, -1.3108654884929323) +description = Bucks County, PA +station = ('kdyl', 0.00014206303203162068) +zone = ('paz069', 5.1795630372157884e-06) + +[fips4201704976] +centroid = (0.7055744828599364, -1.3122805316372792) +description = Bedminster township, PA +station = ('kdyl', 0.0018824391580664114) +zone = ('paz069', 0.0018997379550639421) + +[fips4201705616] +centroid = (0.69998564188907775, -1.3080133063359081) +description = Bensalem township, PA +station = ('kpne', 0.0010536566084264249) +zone = ('paz071', 0.0030685395386453916) + +[fips4201708592] +centroid = (0.7077806139410423, -1.3111214061211522) +description = Bridgeton township, PA +station = ('kdyl', 0.0038317376227695338) +zone = ('njz009', 0.0027881710575300943) + +[fips4201708760] +centroid = (0.69993851799927398, -1.3064288091744851) +description = Bristol borough, PA +station = ('kpne', 0.0022153393026075221) +zone = ('njz019', 0.0024316092744729682) + +[fips4201708768] +centroid = (0.70016637073312171, -1.3067763391351424) +description = Bristol township, PA +station = ('kpne', 0.0020068033715571194) +zone = ('njz019', 0.0027672597433007163) + +[fips4201709816] +centroid = (0.7037024601575399, -1.310032425387663) +description = Buckingham township, PA +station = ('kdyl', 0.0008019178857334231) +zone = ('paz069', 0.00070284773187351485) + +[fips4201712504] +centroid = (0.70317798871731552, -1.3126511348506478) +description = Chalfont borough, PA +station = ('kdyl', 0.0014551212040230794) +zone = ('paz069', 0.0016015668686113079) + +[fips4201719784] +centroid = (0.70361547294762039, -1.3112256720906663) +description = Doylestown borough, PA +station = ('kdyl', 0.00036481948124406039) +zone = ('paz069', 0.00048626218118289529) + +[fips4201719792] +centroid = (0.70332782523359927, -1.3114480619439555) +description = Doylestown township, PA +station = ('kdyl', 0.00069751072819299173) +zone = ('paz069', 0.00081956376207422495) + +[fips4201720104] +centroid = (0.70471017836105632, -1.312591427136937) +description = Dublin borough, PA +station = ('kdyl', 0.0014102402966065589) +zone = ('paz069', 0.0014925835632894275) + +[fips4201720480] +centroid = (0.70813821445148351, -1.3127947056349167) +description = Durham township, PA +station = ('kukt', 0.003251124442436931) +zone = ('paz062', 0.0033748622629641498) + +[fips4201721760] +centroid = (0.70532703007858866, -1.3140661081818246) +description = East Rockhill township, PA +station = ('kukt', 0.0012753877360031382) +zone = ('paz069', 0.0027738412586918414) + +[fips4201725112] +centroid = (0.70126139030582302, -1.3052837684654217) +description = Falls township, PA +station = ('kttn', 0.0018572398095421656) +zone = ('njz015', 0.0021445581369567072) + +[fips4201733224] +centroid = (0.70637133038322697, -1.3132885814533535) +description = Haycock township, PA +station = ('kukt', 0.0019158920941765754) +zone = ('paz069', 0.0029969677792480594) + +[fips4201734952] +centroid = (0.70410992472471035, -1.3134019405882706) +description = Hilltown township, PA +station = ('kukt', 0.002357617122983614) +zone = ('paz069', 0.0019405207424920909) + +[fips4201736192] +centroid = (0.70063235619011166, -1.3073728054070113) +description = Hulmeville borough, PA +station = ('kpne', 0.0017998566517821455) +zone = ('njz019', 0.0034105612475315841) + +[fips4201737304] +centroid = (0.70176125260359412, -1.3102796163696229) +description = Ivyland borough, PA +station = ('kdyl', 0.0022624856567938726) +zone = ('paz069', 0.0022952108697443527) + +[fips4201741392] +centroid = (0.70122883991527329, -1.3076603134946923) +description = Langhorne borough, PA +station = ('kpne', 0.0020608000860667663) +zone = ('njz015', 0.0034866341301786853) + +[fips4201741416] +centroid = (0.70102819686446405, -1.3075701846921195) +description = Langhorne Manor borough, PA +station = ('kpne', 0.0019505135351075677) +zone = ('njz015', 0.0035408212896797515) + +[fips4201744968] +centroid = (0.70217421495790855, -1.3064764043031869) +description = Lower Makefield township, PA +station = ('kttn', 0.0010408432687230354) +zone = ('njz015', 0.002241785595058993) + +[fips4201745112] +centroid = (0.70083367991932932, -1.3088163497780434) +description = Lower Southampton township, PA +station = ('kpne', 0.0012985922303469686) +zone = ('paz071', 0.0032104372534022649) + +[fips4201749120] +centroid = (0.70126467152481686, -1.3073713916903171) +description = Middletown township, PA +station = ('kttn', 0.0021744424014699913) +zone = ('njz015', 0.0032816831073964898) + +[fips4201749384] +centroid = (0.7056682943072311, -1.3162643678280039) +description = Milford township, PA +station = ('kukt', 0.00046466781198360301) +zone = ('paz068', 0.0039108672446320596) + +[fips4201751144] +centroid = (0.70175577226974295, -1.3051619095770475) +description = Morrisville borough, PA +station = ('kttn', 0.0014072051391842467) +zone = ('njz015', 0.0016866251118538361) + +[fips4201753296] +centroid = (0.7033598694786658, -1.3121052482205016) +description = New Britain borough, PA +station = ('kdyl', 0.0010078936235121136) +zone = ('paz069', 0.0011531676263537957) + +[fips4201753304] +centroid = (0.70349239232876981, -1.3126080252181236) +description = New Britain township, PA +station = ('kdyl', 0.0012847949573220813) +zone = ('paz069', 0.001431534274776138) + +[fips4201753712] +centroid = (0.70443858767615353, -1.3082428869457154) +description = New Hope borough, PA +station = ('kttn', 0.0023089824005431549) +zone = ('paz069', 0.0020387468401185317) + +[fips4201754184] +centroid = (0.70211705542490577, -1.3078152289190994) +description = Newtown borough, PA +station = ('kttn', 0.0018146810516578335) +zone = ('paz069', 0.0029981123628943836) + +[fips4201754192] +centroid = (0.70239913553861311, -1.3079232997063828) +description = Newtown township, PA +station = ('kttn', 0.0017582393230949761) +zone = ('paz069', 0.0027606304456263111) + +[fips4201754576] +centroid = (0.7071827339524791, -1.3120364473413877) +description = Nockamixon township, PA +station = ('kukt', 0.003117426052310507) +zone = ('paz069', 0.0032935342906167632) + +[fips4201754688] +centroid = (0.70180132536321993, -1.3090020877170405) +description = Northampton township, PA +station = ('kpne', 0.0022259255012537097) +zone = ('paz069', 0.0026270123202506049) + +[fips4201758936] +centroid = (0.70083985838488139, -1.3075073877456325) +description = Penndel borough, PA +station = ('kpne', 0.0018508149712713308) +zone = ('njz015', 0.0036153742903749422) + +[fips4201759384] +centroid = (0.70461973539921807, -1.3141067743533961) +description = Perkasie borough, PA +station = ('kukt', 0.0016171009160775873) +zone = ('paz068', 0.0029768737902796769) + +[fips4201761616] +centroid = (0.70482973341481792, -1.3110148363170255) +description = Plumstead township, PA +station = ('kdyl', 0.00088037913228931691) +zone = ('paz069', 0.00082484237692094812) + +[fips4201763048] +centroid = (0.70580552954631548, -1.3150316941371978) +description = Quakertown borough, PA +station = ('kukt', 0.00048384211710993948) +zone = ('paz068', 0.0040031019341697383) + +[fips4201764536] +centroid = (0.70598840514533945, -1.3148862733039217) +description = Richland township, PA +station = ('kukt', 0.00064434080081096027) +zone = ('paz069', 0.0036479094217082421) + +[fips4201764584] +centroid = (0.7063789051121806, -1.314602203514867) +description = Richlandtown borough, PA +station = ('kukt', 0.0010367379676303403) +zone = ('paz069', 0.0037039372256425602) + +[fips4201764856] +centroid = (0.70851478669089374, -1.3124623949453369) +description = Riegelsville borough, PA +station = ('kukt', 0.0037002998013409539) +zone = ('paz062', 0.0031328824042701829) + +[fips4201769248] +centroid = (0.70442431088287216, -1.3143528657779271) +description = Sellersville borough, PA +station = ('kukt', 0.0016362248116197774) +zone = ('paz068', 0.0027324278647930418) + +[fips4201770744] +centroid = (0.70418247806171586, -1.3137291898230194) +description = Silverdale borough, PA +station = ('kukt', 0.0021294828084104499) +zone = ('paz068', 0.0026930259681976253) + +[fips4201771752] +centroid = (0.70454639666404917, -1.3091732172501984) +description = Solebury township, PA +station = ('kdyl', 0.0015380221346473751) +zone = ('paz069', 0.0013909966138886509) + +[fips4201773016] +centroid = (0.70734018010430155, -1.3142590717839249) +description = Springfield township, PA +station = ('kukt', 0.0019352180378696732) +zone = ('paz062', 0.0039573112548100513) + +[fips4201776304] +centroid = (0.70388168801842721, -1.3146475820754189) +description = Telford borough, PA +station = ('kukt', 0.0019965993229395817) +zone = ('paz068', 0.002148442107483101) + +[fips4201776784] +centroid = (0.70661066738355305, -1.3106797680072275) +description = Tinicum township, PA +station = ('kdyl', 0.0026747714858091397) +zone = ('paz069', 0.0026007980803137566) + +[fips4201777704] +centroid = (0.70534731080449686, -1.3155832530874132) +description = Trumbauersville borough, PA +station = ('kukt', 0.00038087888029827689) +zone = ('paz068', 0.0035372999986420148) + +[fips4201777744] +centroid = (0.70058987487611812, -1.3056981968963079) +description = Tullytown borough, PA +station = ('kttn', 0.0024880736996284636) +zone = ('njz019', 0.0028132943429476109) + +[fips4201779128] +centroid = (0.70329766594412479, -1.3078310939619999) +description = Upper Makefield township, PA +station = ('kttn', 0.0015670900916155124) +zone = ('paz069', 0.0024172896754139804) + +[fips4201779296] +centroid = (0.70116845152315432, -1.3095621987805905) +description = Upper Southampton township, PA +station = ('kpne', 0.0015961557986727698) +zone = ('paz069', 0.0030122833061697624) + +[fips4201780952] +centroid = (0.70166967517774204, -1.3105495140851511) +description = Warminster township, PA +station = ('kpne', 0.0022959384290487895) +zone = ('paz069', 0.0023556666296169581) + +[fips4201781048] +centroid = (0.70249228376079198, -1.3117868827116452) +description = Warrington township, PA +station = ('kdyl', 0.0015664941149370465) +zone = ('paz069', 0.0016776907068312339) + +[fips4201781144] +centroid = (0.70248427269952529, -1.3104489133070663) +description = Warwick township, PA +station = ('kdyl', 0.0015314646392863265) +zone = ('paz069', 0.0015608816405537698) + +[fips4201783960] +centroid = (0.70451510291056085, -1.3150327587880415) +description = West Rockhill township, PA +station = ('kukt', 0.0012992549275420919) +zone = ('paz068', 0.002717441379169011) + +[fips4201786624] +centroid = (0.70286321858671841, -1.3090774161275565) +description = Wrightstown township, PA +station = ('kdyl', 0.0018451555123230536) +zone = ('paz069', 0.0017803038449004049) + +[fips4201786920] +centroid = (0.70232124149409658, -1.3061833809750698) +description = Yardley borough, PA +station = ('kttn', 0.00081100453531591523) +zone = ('njz015', 0.0019783060514507655) + +[fips42019] +centroid = (0.71408111291440168, -1.3948489867696474) +description = Butler County, PA +station = ('kbtp', 0.0023142387918829413) +zone = ('paz014', 8.6986980629684236e-05) + +[fips4201900300] +centroid = (0.71065541556517231, -1.3963740380167475) +description = Adams township, PA +station = ('kbtp', 0.001368526637724471) +zone = ('paz014', 0.0036057890200550942) + +[fips4201900860] +centroid = (0.7179800213837243, -1.3917041827102341) +description = Allegheny township, PA +station = ('kfkl', 0.0046114957816581594) +zone = ('paz014', 0.0045558724992427902) + +[fips4201908096] +centroid = (0.71543946776464384, -1.3966007388332891) +description = Brady township, PA +station = ('kbtp', 0.0037493235554350969) +zone = ('paz014', 0.001977920908471209) + +[fips4201909528] +centroid = (0.71653438261758995, -1.3915037665522274) +description = Bruin borough, PA +station = ('kbtp', 0.0055685277753085597) +zone = ('paz014', 0.0034913388678478575) + +[fips4201910000] +centroid = (0.71046513977011982, -1.3916795212079034) +description = Buffalo township, PA +station = ('kbtp', 0.0031139536771071998) +zone = ('paz014', 0.004265046762453214) + +[fips4201910464] +centroid = (0.71316865478145897, -1.3944512262331179) +description = Butler city, PA +station = ('kbtp', 0.0015392412256828114) +zone = ('paz014', 0.00090294620396340439) + +[fips4201910472] +centroid = (0.71298995051934733, -1.3949574415293664) +description = Butler township, PA +station = ('kbtp', 0.0012309837448054185) +zone = ('paz014', 0.0010660901868739987) + +[fips4201910800] +centroid = (0.71103636858100494, -1.3969260332992757) +description = Callery borough, PA +station = ('kbtp', 0.001393096184409003) +zone = ('paz014', 0.0034305884400678763) + +[fips4201912024] +centroid = (0.71422250203710569, -1.394971124910702) +description = Center township, PA +station = ('kbtp', 0.0024397882819086744) +zone = ('paz014', 0.00024721879939785537) + +[fips4201912992] +centroid = (0.71670060777554989, -1.3949338097712944) +description = Cherry township, PA +station = ('kbtp', 0.0049093158359404037) +zone = ('paz014', 0.0026605617187791786) + +[fips4201913152] +centroid = (0.7183677462770548, -1.3927938441221317) +description = Cherry Valley borough, PA +station = ('kfkl', 0.0040009028341312551) +zone = ('paz008', 0.004253937364041018) + +[fips4201913440] +centroid = (0.71475608409602542, -1.3917089649123846) +description = Chicora borough, PA +station = ('kbtp', 0.0040583222771146642) +zone = ('paz014', 0.0024016896314845004) + +[fips4201913936] +centroid = (0.71545313369268693, -1.3950248810516634) +description = Clay township, PA +station = ('kbtp', 0.0036601522265320204) +zone = ('paz014', 0.0014250349438878845) + +[fips4201914048] +centroid = (0.71298450509208111, -1.3916694157515344) +description = Clearfield township, PA +station = ('kbtp', 0.003053915306407673) +zone = ('paz014', 0.0025552609217868593) + +[fips4201914320] +centroid = (0.71046650112693643, -1.3932874581411807) +description = Clinton township, PA +station = ('kbtp', 0.0020800553137598436) +zone = ('paz014', 0.0037435993158338281) + +[fips4201915480] +centroid = (0.71541944883812347, -1.3932753455561717) +description = Concord township, PA +station = ('kbtp', 0.0039538636306542608) +zone = ('paz014', 0.0017675493031924878) + +[fips4201915808] +centroid = (0.71239721925207755, -1.3965287090950593) +description = Connoquenessing borough, PA +station = ('kbtp', 0.0010462484349917968) +zone = ('paz014', 0.0021286555089769822) + +[fips4201915816] +centroid = (0.71317390822250748, -1.3966498000385625) +description = Connoquenessing township, PA +station = ('kbtp', 0.0016691178204575219) +zone = ('paz014', 0.0016824424122828252) + +[fips4201916920] +centroid = (0.71052296252823843, -1.3981072023238554) +description = Cranberry township, PA +station = ('kbtp', 0.0024238423243160812) +zone = ('paz020', 0.0032602128684321293) + +[fips4201919456] +centroid = (0.71421490985485958, -1.3916044720500675) +description = Donegal township, PA +station = ('kbtp', 0.0037439513303726547) +zone = ('paz014', 0.0023793121842692021) + +[fips4201920904] +centroid = (0.71347031748937373, -1.3935975333360899) +description = East Butler borough, PA +station = ('kbtp', 0.0021492769346370109) +zone = ('paz014', 0.0010398363831496163) + +[fips4201922128] +centroid = (0.71797302261342377, -1.3927471042047632) +description = Eau Claire borough, PA +station = ('kfkl', 0.0043942886534537248) +zone = ('paz014', 0.0042083311161101944) + +[fips4201924248] +centroid = (0.71154452119272327, -1.3972820804666828) +description = Evans City borough, PA +station = ('kbtp', 0.0014554732190625085) +zone = ('paz014', 0.0031513346696639675) + +[fips4201924832] +centroid = (0.71585717741452359, -1.3917805408650086) +description = Fairview borough, PA +station = ('kbtp', 0.0048866198642155334) +zone = ('paz014', 0.0028808030931030525) + +[fips4201924840] +centroid = (0.71546446087953242, -1.3916717719460245) +description = Fairview township, PA +station = ('kbtp', 0.0046160035046728786) +zone = ('paz014', 0.0027212716829110016) + +[fips4201926904] +centroid = (0.71173788622055167, -1.3967243954107931) +description = Forward township, PA +station = ('kbtp', 0.0010119806904743862) +zone = ('paz014', 0.0027494941270663326) + +[fips4201927352] +centroid = (0.71430400891317392, -1.3964996144564288) +description = Franklin township, PA +station = ('kbtp', 0.0026374723910717341) +zone = ('paz014', 0.0013511529382763297) + +[fips4201932688] +centroid = (0.71211765241249303, -1.3984443824820483) +description = Harmony borough, PA +station = ('kbtp', 0.0023331152708643589) +zone = ('paz014', 0.0033969698174125115) + +[fips4201932896] +centroid = (0.71796574459044304, -1.3964509721301754) +description = Harrisville borough, PA +station = ('kfkl', 0.0047060298445382575) +zone = ('paz014', 0.0041276701478194545) + +[fips4201937344] +centroid = (0.71181174855449603, -1.3981860912060458) +description = Jackson township, PA +station = ('kbtp', 0.0021166089738673555) +zone = ('paz014', 0.0034290177804765275) + +[fips4201937848] +centroid = (0.71190035892061976, -1.3933313706251609) +description = Jefferson township, PA +station = ('kbtp', 0.0015622649879275857) +zone = ('paz014', 0.0023954065168828712) + +[fips4201938768] +centroid = (0.71553177822878189, -1.3914873604572588) +description = Karns City borough, PA +station = ('kbtp', 0.00475476181355517) +zone = ('paz014', 0.0028751859492511297) + +[fips4201941208] +centroid = (0.71272183303965608, -1.3982362519687479) +description = Lancaster township, PA +station = ('kbtp', 0.0023413617369222781) +zone = ('paz014', 0.002952470103616267) + +[fips4201947448] +centroid = (0.71795254990129798, -1.3950843618725715) +description = Marion township, PA +station = ('kfkl', 0.0044081801128510031) +zone = ('paz014', 0.0039170602200068426) + +[fips4201947672] +centroid = (0.71029575556621372, -1.3965094755667022) +description = Mars borough, PA +station = ('kbtp', 0.0017296329575981289) +zone = ('paz014', 0.0039789781784336179) + +[fips4201948688] +centroid = (0.71764865317194071, -1.3965685898684674) +description = Mercer township, PA +station = ('kfkl', 0.0050322524126306337) +zone = ('paz014', 0.0038584754529268051) + +[fips4201949056] +centroid = (0.71047260977931836, -1.3949908471312495) +description = Middlesex township, PA +station = ('kbtp', 0.0013648860841480176) +zone = ('paz014', 0.0035761036520473482) + +[fips4201952176] +centroid = (0.71432882749513726, -1.3983377254114588) +description = Muddy Creek township, PA +station = ('kbtp', 0.0033683683135131595) +zone = ('paz014', 0.0027296985540754253) + +[fips4201955992] +centroid = (0.71413975597726875, -1.3932855208257109) +description = Oakland township, PA +station = ('kbtp', 0.0028273969153088485) +zone = ('paz014', 0.0011070456080582232) + +[fips4201957984] +centroid = (0.71674705098694547, -1.3917042176168188) +description = Parker township, PA +station = ('kbtp', 0.0056743031142789009) +zone = ('paz014', 0.0035461815754919165) + +[fips4201958792] +centroid = (0.71188016546117416, -1.3949676866120755) +description = Penn township, PA +station = ('kbtp', 0.00032937615366055779) +zone = ('paz014', 0.0021702511174234965) + +[fips4201959672] +centroid = (0.71596275238097684, -1.3913202800879654) +description = Petrolia borough, PA +station = ('kbtp', 0.0051734856832009865) +zone = ('paz014', 0.0032201307644208858) + +[fips4201962224] +centroid = (0.71426440739244612, -1.3988268888409154) +description = Portersville borough, PA +station = ('kbtp', 0.0035792902784944126) +zone = ('paz014', 0.0030923688230972694) + +[fips4201962752] +centroid = (0.71382592832446767, -1.3971125042765589) +description = Prospect borough, PA +station = ('kbtp', 0.002405636941788527) +zone = ('paz014', 0.0018025881558739016) + +[fips4201968056] +centroid = (0.71123826826887582, -1.3930345773858592) +description = Saxonburg borough, PA +station = ('kbtp', 0.0018718461374560697) +zone = ('paz014', 0.0030896912663296119) + +[fips4201969309] +centroid = (0.71011724329031978, -1.3973787542539506) +description = Seven Fields borough, PA +station = ('kbtp', 0.0022610825889087813) +zone = ('paz021', 0.003958299365383792) + +[fips4201971184] +centroid = (0.71679777025500846, -1.3972744533778514) +description = Slippery Rock borough, PA +station = ('kbtp', 0.0051931571207024345) +zone = ('paz014', 0.0033510302086597163) + +[fips4201971192] +centroid = (0.716716490271743, -1.3968304416161441) +description = Slippery Rock township, PA +station = ('kbtp', 0.0050320293782103081) +zone = ('paz014', 0.0031017803942142951) + +[fips4201975184] +centroid = (0.71300635661431611, -1.3933270247553233) +description = Summit township, PA +station = ('kbtp', 0.001971348211338899) +zone = ('paz014', 0.0014918825905053279) + +[fips4201979504] +centroid = (0.70994227403280741, -1.3960558121342315) +description = Valencia borough, PA +station = ('kbtp', 0.0019282033275819796) +zone = ('paz021', 0.0036296245678975113) + +[fips4201979904] +centroid = (0.71792561947093958, -1.3935070205610816) +description = Venango township, PA +station = ('kfkl', 0.0043617565139003108) +zone = ('paz014', 0.0039925283488953149) + +[fips4201981192] +centroid = (0.71680944650770417, -1.3933672545945819) +description = Washington township, PA +station = ('kbtp', 0.0052342490540119319) +zone = ('paz014', 0.0029546313652849846) + +[fips4201983376] +centroid = (0.71574736129798822, -1.3974262446628973) +description = West Liberty borough, PA +station = ('kbtp', 0.0042334192703667858) +zone = ('paz014', 0.0026460724974062518) + +[fips4201984064] +centroid = (0.71569076027034595, -1.3944562178747786) +description = West Sunbury borough, PA +station = ('kbtp', 0.0039509782618258067) +zone = ('paz014', 0.0016612657796923845) + +[fips4201985784] +centroid = (0.71170737786522675, -1.3916904644223131) +description = Winfield township, PA +station = ('kbtp', 0.0028035531017383385) +zone = ('paz014', 0.0032860957626784388) + +[fips4201986536] +centroid = (0.7155348849148504, -1.3981517256730738) +description = Worth township, PA +station = ('kbtp', 0.0042755191871497022) +zone = ('paz014', 0.002973701452146075) + +[fips4201987272] +centroid = (0.71183941202314005, -1.3986816774471496) +description = Zelienople borough, PA +station = ('kbtp', 0.0024920714832020003) +zone = ('paz020', 0.0033174723472596738) + +[fips4202000] +centroid = (0.70849836314263248, -1.3173424053470832) +description = Allentown city, PA +station = ('kxll', 0.00044675953478128666) +zone = ('paz061', 0.0015494556140848289) + +[fips4202016] +centroid = (0.71747162442591095, -1.3421260283655252) +description = Allenwood CDP, PA +station = ('kipt', 0.002488598936371521) +zone = ('paz046', 0.0021176617572658449) + +[fips4202040] +centroid = (0.69788100170397538, -1.3940600106812835) +description = Allison CDP, PA +station = ('kmgw', 0.0058861306565607258) +zone = ('paz075', 0.0015099767659151175) + +[fips4202056] +centroid = (0.7081335369690881, -1.3955698775638912) +description = Allison Park CDP, PA +station = ('kbtp', 0.0036724234252792786) +zone = ('paz021', 0.0018408099982129046) + +[fips4202072] +centroid = (0.71500098869666529, -1.3649338514042468) +description = Allport CDP, PA +station = ('kfig', 0.003145985053910966) +zone = ('paz018', 0.0026883932212458063) + +[fips4202088] +centroid = (0.71583433105461503, -1.3331628376320306) +description = Almedia CDP, PA +station = ('kseg', 0.0072332282293479135) +zone = ('paz053', 0.00065742082133575324) + +[fips42021] +centroid = (0.70675584387073387, -1.373840877442412) +description = Cambria County, PA +station = ('kjst', 0.0034719639084524476) +zone = ('paz024', 3.151528307669163e-05) + +[fips4202100308] +centroid = (0.70307744029910813, -1.3742043248058475) +description = Adams township, PA +station = ('kjst', 0.0014186625919706344) +zone = ('paz024', 0.003712697935185368) + +[fips4202100868] +centroid = (0.70754846769723456, -1.3721151656912103) +description = Allegheny township, PA +station = ('kjst', 0.0048412077270018174) +zone = ('paz024', 0.0015021583731081891) + +[fips4202103296] +centroid = (0.70790538752926735, -1.3709083926865038) +description = Ashville borough, PA +station = ('kaoo', 0.0054750601943111552) +zone = ('paz024', 0.0024779069051315545) + +[fips4202104272] +centroid = (0.70873489016286273, -1.375626070014522) +description = Barr township, PA +station = ('kidi', 0.0037686131796043575) +zone = ('paz024', 0.0023937747993514049) + +[fips4202106736] +centroid = (0.70722004909188685, -1.3759069458510456) +description = Blacklick township, PA +station = ('kjst', 0.0035614749908911649) +zone = ('paz024', 0.0016533801020597063) + +[fips4202109400] +centroid = (0.70394998275205767, -1.3777164334063432) +description = Brownstown borough, PA +station = ('kjst', 0.0014142356386861821) +zone = ('paz024', 0.0041033547101760569) + +[fips4202110880] +centroid = (0.70674970031176676, -1.3742890430877392) +description = Cambria township, PA +station = ('kjst', 0.0033259813702460565) +zone = ('paz024', 0.00036427225034560705) + +[fips4202111456] +centroid = (0.70868696342160287, -1.3736999770118987) +description = Carrolltown borough, PA +station = ('kidi', 0.0052274888105212367) +zone = ('paz024', 0.0019107809769372903) + +[fips4202111616] +centroid = (0.70526170240468655, -1.3725391759796899) +description = Cassandra borough, PA +station = ('kjst', 0.0030220161772199525) +zone = ('paz024', 0.0017990798736869076) + +[fips4202113192] +centroid = (0.70992188858714411, -1.3722253483268887) +description = Chest township, PA +station = ('kidi', 0.006362401572437738) +zone = ('paz024', 0.0033666946495056558) + +[fips4202113384] +centroid = (0.70822113504424566, -1.3720124181581455) +description = Chest Springs borough, PA +station = ('kjst', 0.0054382796527359814) +zone = ('paz024', 0.0019879368282285604) + +[fips4202114056] +centroid = (0.708730334853515, -1.3713953395478102) +description = Clearfield township, PA +station = ('kjst', 0.0061217244474003627) +zone = ('paz024', 0.0026798685122795432) + +[fips4202115552] +centroid = (0.70416715407088337, -1.3761779954838802) +description = Conemaugh township, PA +station = ('kjst', 0.00055060468690452003) +zone = ('paz024', 0.0031721798798043806) + +[fips4202117136] +centroid = (0.7062057160905052, -1.371594551428633) +description = Cresson borough, PA +station = ('kjst', 0.0041530261841491237) +zone = ('paz024', 0.0017807805752775999) + +[fips4202117144] +centroid = (0.70595065367361876, -1.3716160713383099) +description = Cresson township, PA +station = ('kjst', 0.0039885308335254992) +zone = ('paz024', 0.0018638328424212861) + +[fips4202117496] +centroid = (0.70456960954310066, -1.3745668995046569) +description = Croyle township, PA +station = ('kjst', 0.0013653861449328254) +zone = ('paz024', 0.0022820798082173722) + +[fips4202117976] +centroid = (0.70371853463995071, -1.3771277687562304) +description = Daisytown borough, PA +station = ('kjst', 0.00093711000931964033) +zone = ('paz024', 0.0039670203766917498) + +[fips4202118000] +centroid = (0.70357691862444383, -1.3771503184101661) +description = Dale borough, PA +station = ('kjst', 0.00095593448813457126) +zone = ('paz024', 0.0040879886585546941) + +[fips4202118432] +centroid = (0.70850466378123211, -1.3698354166222553) +description = Dean township, PA +station = ('kaoo', 0.0056066238574868175) +zone = ('paz025', 0.0026837911915673818) + +[fips4202120952] +centroid = (0.708288784006053, -1.3734410923239504) +description = East Carroll township, PA +station = ('kjst', 0.0049943576709513002) +zone = ('paz024', 0.0015367225609864855) + +[fips4202120992] +centroid = (0.70419898887643972, -1.3768216903653083) +description = East Conemaugh borough, PA +station = ('kjst', 0.00088565893960650046) +zone = ('paz024', 0.0034501131465640104) + +[fips4202121896] +centroid = (0.70458477645430051, -1.3763523189695694) +description = East Taylor township, PA +station = ('kjst', 0.00098795422683573887) +zone = ('paz024', 0.002924187359747673) + +[fips4202122144] +centroid = (0.70665100194256658, -1.3740373491563092) +description = Ebensburg borough, PA +station = ('kjst', 0.0033119778603093657) +zone = ('paz024', 0.00021365562497636123) + +[fips4202122712] +centroid = (0.70467727890465626, -1.3749217947547572) +description = Ehrenfeld borough, PA +station = ('kjst', 0.0012629245661143185) +zone = ('paz024', 0.0022643945248348543) + +[fips4202122808] +centroid = (0.70991337138039434, -1.3733935670084185) +description = Elder township, PA +station = ('kidi', 0.0054819311025899719) +zone = ('paz024', 0.0031513327144518143) + +[fips4202125680] +centroid = (0.70320252804659855, -1.3774106168148086) +description = Ferndale borough, PA +station = ('kjst', 0.0012381506732697467) +zone = ('paz024', 0.0045053727532132874) + +[fips4202127360] +centroid = (0.70409517669253108, -1.3767898904663367) +description = Franklin borough, PA +station = ('kjst', 0.00080596229214649094) +zone = ('paz024', 0.0035127793221240372) + +[fips4202128] +centroid = (0.70506393914714305, -1.3239309185536068) +description = Alsace Manor CDP, PA +station = ('krdg', 0.001569095292642809) +zone = ('paz060', 0.00099321228887314854) + +[fips4202128328] +centroid = (0.70652593164836852, -1.3710382102762673) +description = Gallitzin borough, PA +station = ('kaoo', 0.0044706916395410292) +zone = ('paz025', 0.0027360894723160094) + +[fips4202128336] +centroid = (0.70723945715316894, -1.3709579774905529) +description = Gallitzin township, PA +station = ('kaoo', 0.0049612823409773696) +zone = ('paz025', 0.0027662436404307976) + +[fips4202128720] +centroid = (0.70325514972354619, -1.3765871355671326) +description = Geistown borough, PA +station = ('kjst', 0.00066058102233867489) +zone = ('paz024', 0.0041084818783380349) + +[fips4202133080] +centroid = (0.70973351520097638, -1.3737385836949527) +description = Hastings borough, PA +station = ('kidi', 0.0052009962609572257) +zone = ('paz024', 0.0029559719018358707) + +[fips4202137352] +centroid = (0.7056827281801451, -1.3764875645333066) +description = Jackson township, PA +station = ('kjst', 0.0020728525346230824) +zone = ('paz024', 0.0023119336677622886) + +[fips4202138288] +centroid = (0.70382377799384599, -1.3773988183890653) +description = Johnstown city, PA +station = ('kjst', 0.0011536927585140036) +zone = ('paz024', 0.0040235076782189931) + +[fips4202143248] +centroid = (0.70553866870368553, -1.3721796032471938) +description = Lilly borough, PA +station = ('kjst', 0.0034020911496697621) +zone = ('paz024', 0.0017543523719171193) + +[fips4202144] +centroid = (0.71183192456064914, -1.3302364091686267) +description = Altamont CDP, PA +station = ('kmui', 0.0076901130817050344) +zone = ('paz058', 0.0013799996012648741) + +[fips4202144664] +centroid = (0.70329894003447879, -1.376996973782086) +description = Lorain borough, PA +station = ('kjst', 0.00090971810519217984) +zone = ('paz024', 0.0042414459974774348) + +[fips4202144704] +centroid = (0.7070083755602049, -1.3724377199902713) +description = Loretto borough, PA +station = ('kjst', 0.0042632635323439578) +zone = ('paz024', 0.0010696775749214139) + +[fips4202145160] +centroid = (0.7041233288533657, -1.3783142261284436) +description = Lower Yoder township, PA +station = ('kjst', 0.0018973028129390297) +zone = ('paz024', 0.0043357723211779565) + +[fips4202149104] +centroid = (0.70453075851395131, -1.3771842650641175) +description = Middle Taylor township, PA +station = ('kjst', 0.0013103609467437264) +zone = ('paz024', 0.0034119606328253662) + +[fips4202152360] +centroid = (0.70595641326015035, -1.3731322388595175) +description = Munster township, PA +station = ('kjst', 0.0031191237909464985) +zone = ('paz024', 0.00097062158293117974) + +[fips4202152616] +centroid = (0.70635225393450274, -1.3759175574528977) +description = Nanty-Glo borough, PA +station = ('kjst', 0.0026937058853076859) +zone = ('paz024', 0.0016574981029986767) + +[fips4202155000] +centroid = (0.70960038148563431, -1.3749293520304184) +description = Northern Cambria borough, PA +station = ('kidi', 0.0042889504706141212) +zone = ('paz024', 0.0029472695027551632) + +[fips4202158432] +centroid = (0.70917045453099048, -1.372698733979907) +description = Patton borough, PA +station = ('kidi', 0.0059624453120641612) +zone = ('paz024', 0.00253734800908145) + +[fips4202162048] +centroid = (0.70488401315455496, -1.3731322039529323) +description = Portage borough, PA +station = ('kjst', 0.0024402354966175164) +zone = ('paz024', 0.0019633369536268706) + +[fips4202162056] +centroid = (0.70479791606255404, -1.3724782814420877) +description = Portage township, PA +station = ('kjst', 0.0028466167894469143) +zone = ('paz024', 0.002224994055621419) + +[fips4202163608] +centroid = (0.71003273444793824, -1.3694426826339714) +description = Reade township, PA +station = ('kfig', 0.0064543212277045382) +zone = ('paz025', 0.0038165936129931069) + +[fips4202164544] +centroid = (0.70312856099289911, -1.3760644792693304) +description = Richland township, PA +station = ('kjst', 0.00054444293838788261) +zone = ('paz024', 0.004032792099522094) + +[fips4202167920] +centroid = (0.70635850221322483, -1.3716904049111525) +description = Sankertown borough, PA +station = ('kjst', 0.0041921760036499551) +zone = ('paz024', 0.0016669461801458116) + +[fips4202168104] +centroid = (0.70248741429217898, -1.376089437477634) +description = Scalp Level borough, PA +station = ('kjst', 0.001179930582609106) +zone = ('paz024', 0.0046283312049486824) + +[fips4202172168] +centroid = (0.70444993231629149, -1.3751383726616373) +description = South Fork borough, PA +station = ('kjst', 0.0009820112993316843) +zone = ('paz024', 0.0025377893423929989) + +[fips4202172344] +centroid = (0.70355663789853573, -1.3776355373955134) +description = Southmont borough, PA +station = ('kjst', 0.0013263575079294409) +zone = ('paz024', 0.0043425160528389817) + +[fips4202174432] +centroid = (0.70351820574840684, -1.3766139787310285) +description = Stonycreek township, PA +station = ('kjst', 0.00056132605689636274) +zone = ('paz024', 0.0038963070985100737) + +[fips4202175136] +centroid = (0.70470106774236085, -1.3746471322903708) +description = Summerhill borough, PA +station = ('kjst', 0.0014143335266341461) +zone = ('paz024', 0.0021721987786415256) + +[fips4202175144] +centroid = (0.70425860932368778, -1.3734172336730757) +description = Summerhill township, PA +station = ('kjst', 0.001986310836903133) +zone = ('paz024', 0.0025372666495673268) + +[fips4202175520] +centroid = (0.71013406826430903, -1.3750671981347409) +description = Susquehanna township, PA +station = ('kidi', 0.0042699911765316546) +zone = ('paz024', 0.0034888432508146097) + +[fips4202177808] +centroid = (0.70644693804642333, -1.3708532926420183) +description = Tunnelhill borough, PA +station = ('kaoo', 0.0043154945940474141) +zone = ('paz025', 0.0025969108771753081) + +[fips4202179360] +centroid = (0.70331728344491717, -1.3786293627781838) +description = Upper Yoder township, PA +station = ('kjst', 0.0021082586395435084) +zone = ('paz074', 0.0034008858539852551) + +[fips4202180288] +centroid = (0.70652172540487135, -1.3772530310366462) +description = Vintondale borough, PA +station = ('kjst', 0.0030426020939236069) +zone = ('paz024', 0.0026299586926238315) + +[fips4202181200] +centroid = (0.70520585186862272, -1.3720060477063756) +description = Washington township, PA +station = ('kjst', 0.0033471403719942724) +zone = ('paz024', 0.0020879160183661762) + +[fips4202182688] +centroid = (0.70873770014295845, -1.374257679521081) +description = West Carroll township, PA +station = ('kidi', 0.0048011610805271205) +zone = ('paz024', 0.0019887487052873882) + +[fips4202183584] +centroid = (0.70370766123871076, -1.3779786691264553) +description = Westmont borough, PA +station = ('kjst', 0.0015847356288885416) +zone = ('paz024', 0.0044154288544968525) + +[fips4202184] +centroid = (0.70700128952344177, -1.3683609275635855) +description = Altoona city, PA +station = ('kaoo', 0.0038037425582476739) +zone = ('paz025', 0.00084239328822245869) + +[fips4202184080] +centroid = (0.70473897629371418, -1.377669204796784) +description = West Taylor township, PA +station = ('kjst', 0.0017270870315857936) +zone = ('paz024', 0.0035747789565008397) + +[fips4202184448] +centroid = (0.70984345349055944, -1.3707334059756988) +description = White township, PA +station = ('kfig', 0.0068029933206055909) +zone = ('paz024', 0.0038550459362504796) + +[fips4202185528] +centroid = (0.70489616064614879, -1.373872659888091) +description = Wilmore borough, PA +station = ('kjst', 0.0019802805782974399) +zone = ('paz024', 0.0018824770836792359) + +[fips4202264] +centroid = (0.70086113394846317, -1.3128634017942751) +description = Ambler borough, PA +station = ('klom', 0.00066703863508801604) +zone = ('paz068', 0.0021628553804664487) + +[fips4202288] +centroid = (0.70845492189755033, -1.4002217908856942) +description = Ambridge borough, PA +station = ('kpit', 0.0018894520085946962) +zone = ('paz020', 0.0022682834687928954) + +[fips42023] +centroid = (0.72323457944294844, -1.3648180662616696) +description = Cameron County, PA +station = ('kfig', 0.0073578230575232833) +zone = ('paz011', 7.6328005216929433e-05) + +[fips4202319976] +centroid = (0.72157613268111842, -1.3635413404605432) +description = Driftwood borough, PA +station = ('kfig', 0.0063917226001775828) +zone = ('paz011', 0.0019300534928428149) + +[fips4202323600] +centroid = (0.72449303164680656, -1.3654420912824277) +description = Emporium borough, PA +station = ('kbfd', 0.0072565076998682395) +zone = ('paz011', 0.0013440490055585711) + +[fips4202329008] +centroid = (0.72092889478130884, -1.3647934920258014) +description = Gibson township, PA +station = ('kfig', 0.0053222137665891395) +zone = ('paz011', 0.0022814837124770088) + +[fips4202331632] +centroid = (0.72257302984327265, -1.3623893707943495) +description = Grove township, PA +station = ('kfig', 0.007708550693504756) +zone = ('paz011', 0.0019968996920995681) + +[fips4202345432] +centroid = (0.72422953928963296, -1.3639964699695857) +description = Lumber township, PA +station = ('kbfd', 0.0082348666485170044) +zone = ('paz011', 0.0012307924382834712) + +[fips4202349] +centroid = (0.70283276259127103, -1.321751613183104) +description = Amity Gardens CDP, PA +station = ('kptw', 0.0024889216687149591) +zone = ('paz060', 0.0036510706854386218) + +[fips4202362064] +centroid = (0.72543249002327748, -1.3645872290148009) +description = Portage township, PA +station = ('kbfd', 0.0071465209858941033) +zone = ('paz011', 0.0022373076837086713) + +[fips4202370336] +centroid = (0.72432471209374416, -1.3669910011804027) +description = Shippen township, PA +station = ('kbfd', 0.006608916238981819) +zone = ('paz011', 0.0019152975222756286) + +[fips4202416] +centroid = (0.70748910904937423, -1.3192207286880795) +description = Ancient Oaks CDP, PA +station = ('kxll', 0.0014008981622411127) +zone = ('paz061', 0.0013425860955926763) + +[fips42025] +centroid = (0.71415090863118891, -1.3213787934015855) +description = Carbon County, PA +station = ('kmpo', 0.0057080968468117129) +zone = ('paz054', 1.1620326398132591e-05) + +[fips4202504048] +centroid = (0.71433374932362781, -1.3250624329609673) +description = Banks township, PA +station = ('kavp', 0.0074849072260637032) +zone = ('paz054', 0.0027970520339978813) + +[fips4202504816] +centroid = (0.71436137788568699, -1.3249336276621699) +description = Beaver Meadows borough, PA +station = ('kavp', 0.0074273742909676359) +zone = ('paz054', 0.0027018214317755221) + +[fips4202507880] +centroid = (0.71211955482137779, -1.3205355899333622) +description = Bowmanstown borough, PA +station = ('kabe', 0.0038450010328205109) +zone = ('paz054', 0.0021344241987524245) + +[fips4202521664] +centroid = (0.71168132009949447, -1.321637451196731) +description = East Penn township, PA +station = ('kabe', 0.0042456011324467227) +zone = ('paz054', 0.0024861192485166948) + +[fips4202521816] +centroid = (0.7166737820649467, -1.3222993673155499) +description = East Side borough, PA +station = ('kavp', 0.0047441174506271571) +zone = ('paz054', 0.0026111754075094358) + +[fips4202527368] +centroid = (0.71306344633414875, -1.3205801307358729) +description = Franklin township, PA +station = ('kabe', 0.0045659530916182956) +zone = ('paz054', 0.0012469939781179534) + +[fips4202538200] +centroid = (0.71313257882582037, -1.3224351015714775) +description = Jim Thorpe borough, PA +station = ('kabe', 0.0055912031386289715) +zone = ('paz054', 0.0013056199937964952) + +[fips4202539608] +centroid = (0.71664341333596204, -1.320292186315879) +description = Kidder township, PA +station = ('kmpo', 0.0036948221066457868) +zone = ('paz054', 0.0026136649726521597) + +[fips4202541464] +centroid = (0.71266983968123909, -1.3244400310964133) +description = Lansford borough, PA +station = ('kabe', 0.0065772752592258513) +zone = ('paz054', 0.0027593546700547828) + +[fips4202541888] +centroid = (0.71502990880237083, -1.3233277851239948) +description = Lausanne township, PA +station = ('kmpo', 0.0064425012187314798) +zone = ('paz054', 0.0017176038136781217) + +[fips4202542400] +centroid = (0.71482779967498988, -1.3221742970213521) +description = Lehigh township, PA +station = ('kmpo', 0.0057834622443708661) +zone = ('paz054', 0.00090463632294219957) + +[fips4202542472] +centroid = (0.71257712779137306, -1.3215030433910351) +description = Lehighton borough, PA +station = ('kabe', 0.0046946348932868842) +zone = ('paz054', 0.0015852320363781737) + +[fips4202545128] +centroid = (0.71240200145422805, -1.3189792274794812) +description = Lower Towamensing township, PA +station = ('kabe', 0.0033407123529816084) +zone = ('paz054', 0.0025199213820923283) + +[fips4202546640] +centroid = (0.7123022907940616, -1.3224301448364018) +description = Mahoning township, PA +station = ('kabe', 0.0050853243590963269) +zone = ('paz054', 0.0020231167207437396) + +[fips4202553088] +centroid = (0.71345169482625503, -1.3233396533629085) +description = Nesquehoning borough, PA +station = ('kabe', 0.0063211305926590975) +zone = ('paz054', 0.0016497909771696563) + +[fips4202557504] +centroid = (0.71379899789410928, -1.3245129334992691) +description = Packer township, PA +station = ('kabe', 0.0072355284064202488) +zone = ('paz054', 0.0024040643380419282) + +[fips4202557696] +centroid = (0.71215777753199649, -1.3197670341972463) +description = Palmerton borough, PA +station = ('kabe', 0.0034747399875367495) +zone = ('paz054', 0.0023389912504365906) + +[fips4202558304] +centroid = (0.71248607396429664, -1.3207004362812129) +description = Parryville borough, PA +station = ('kabe', 0.0041912473173289586) +zone = ('paz054', 0.0017474500032165466) + +[fips4202558968] +centroid = (0.71480261457388361, -1.3199490720382292) +description = Penn Forest township, PA +station = ('kmpo', 0.0044721211516857385) +zone = ('paz054', 0.0012501496640193691) + +[fips4202575248] +centroid = (0.71253003880815435, -1.3237659325794155) +description = Summit Hill borough, PA +station = ('kabe', 0.0060644795858561598) +zone = ('paz054', 0.0024376393098410119) + +[fips4202577160] +centroid = (0.71334123293789631, -1.3195139614557072) +description = Towamensing township, PA +station = ('kabe', 0.0043595951608206033) +zone = ('paz054', 0.0016225472507196664) + +[fips4202581856] +centroid = (0.71457296415090621, -1.323324695891219) +description = Weatherly borough, PA +station = ('kmpo', 0.006658449984716157) +zone = ('paz054', 0.0015352732224056631) + +[fips4202582080] +centroid = (0.71260072464286006, -1.3212294979373698) +description = Weissport borough, PA +station = ('kabe', 0.0045572004301542689) +zone = ('paz054', 0.0015618414232418244) + +[fips4202608] +centroid = (0.70393092375662591, -1.3353124025920795) +description = Annville CDP, PA +station = ('kmui', 0.0019298852216162988) +zone = ('paz059', 0.00090283112516289165) + +[fips42027] +centroid = (0.71399953622516343, -1.3587009490328172) +description = Centre County, PA +station = ('kunv', 0.0010329337926317276) +zone = ('paz018', 0.0024821361151446336) + +[fips4202705256] +centroid = (0.71408615691593991, -1.3573136217169921) +description = Bellefonte borough, PA +station = ('kunv', 0.0015535749300983905) +zone = ('paz019', 0.0011199667651688168) + +[fips4202705608] +centroid = (0.7133128538842588, -1.3581329316277557) +description = Benner township, PA +station = ('kunv', 0.00057410915083944115) +zone = ('paz019', 0.0014941678073776092) + +[fips4202707424] +centroid = (0.71545864893312328, -1.3578222804741933) +description = Boggs township, PA +station = ('kunv', 0.002586104906388928) +zone = ('paz019', 0.0024253111611513747) + +[fips4202710272] +centroid = (0.7181170471832985, -1.3608846002731574) +description = Burnside township, PA +station = ('kunv', 0.0053986804584828909) +zone = ('paz018', 0.0027443458598146553) + +[fips4202712376] +centroid = (0.7128760852389473, -1.355859902076421) +description = Centre Hall borough, PA +station = ('kunv', 0.002179668338828415) +zone = ('paz019', 0.0005562035595708518) + +[fips4202715136] +centroid = (0.71234534806670835, -1.358166948094877) +description = College township, PA +station = ('kunv', 0.00075741430203203402) +zone = ('paz019', 0.0018400818892016742) + +[fips4202717800] +centroid = (0.71726665295855674, -1.3572587660186017) +description = Curtin township, PA +station = ('kunv', 0.0044424933786869928) +zone = ('paz012', 0.003430071914853092) + +[fips4202720] +centroid = (0.70834196418836126, -1.3886655819358045) +description = Apollo borough, PA +station = ('klbe', 0.0057015618198123603) +zone = ('paz022', 0.0041859606356999144) + +[fips4202725624] +centroid = (0.71109173042487839, -1.3603112596138773) +description = Ferguson township, PA +station = ('kunv', 0.0022211865434124188) +zone = ('paz019', 0.0038899258475096135) + +[fips4202731472] +centroid = (0.71323448860084437, -1.3538412368102717) +description = Gregg township, PA +station = ('kunv', 0.0037138694910258166) +zone = ('paz019', 0.0017592407767054478) + +[fips4202731960] +centroid = (0.71386137596157562, -1.3502312152387392) +description = Haines township, PA +station = ('kunv', 0.0064947410940593741) +zone = ('paz045', 0.0031113604633378868) + +[fips4202731992] +centroid = (0.71162313082223294, -1.3617783659298113) +description = Halfmoon township, PA +station = ('kunv', 0.00266427721848043) +zone = ('paz018', 0.003788705343554374) + +[fips4202732792] +centroid = (0.71152705044691067, -1.3573048078042695) +description = Harris township, PA +station = ('kunv', 0.0018032036842363598) +zone = ('paz019', 0.0020494686368461527) + +[fips4202735960] +centroid = (0.71580836055534525, -1.3553786973483535) +description = Howard borough, PA +station = ('kunv', 0.0038101948356451098) +zone = ('paz019', 0.0024948909510356318) + +[fips4202735968] +centroid = (0.71591170150035588, -1.3559559824517433) +description = Howard township, PA +station = ('kunv', 0.0036181535248870473) +zone = ('paz019', 0.0025322260178734335) + +[fips4202736504] +centroid = (0.71328855890107101, -1.3609510449577809) +description = Huston township, PA +station = ('kunv', 0.0017037662377655488) +zone = ('paz018', 0.0021417622203772548) + +[fips4202743080] +centroid = (0.71666381623491793, -1.3552226300066403) +description = Liberty township, PA +station = ('kunv', 0.0045517021908973053) +zone = ('paz019', 0.0033550641310887519) + +[fips4202747456] +centroid = (0.71533734855010955, -1.3551194286879698) +description = Marion township, PA +station = ('kunv', 0.0036192146458951294) +zone = ('paz019', 0.0021052755385627467) + +[fips4202749360] +centroid = (0.71497398845313698, -1.3503721331225453) +description = Miles township, PA +station = ('kunv', 0.006634128631038641) +zone = ('paz045', 0.0019938044437629193) + +[fips4202749368] +centroid = (0.71458134173131582, -1.357724891101932) +description = Milesburg borough, PA +station = ('kunv', 0.0017870397910215836) +zone = ('paz019', 0.0016832788906495681) + +[fips4202749768] +centroid = (0.71372812007318576, -1.3522206113333324) +description = Millheim borough, PA +station = ('kunv', 0.0049873279202562026) +zone = ('paz045', 0.003465008542031499) + +[fips4202752] +centroid = (0.71223792305124811, -1.387921233916414) +description = Applewold borough, PA +station = ('kidi', 0.0063625441623632768) +zone = ('paz022', 0.00076360823954080379) + +[fips4202758440] +centroid = (0.71259185837025996, -1.3599968036425456) +description = Patton township, PA +station = ('kunv', 0.0010229885207489484) +zone = ('paz018', 0.0030067227820193077) + +[fips4202758800] +centroid = (0.7131111810891908, -1.3524218827026724) +description = Penn township, PA +station = ('kunv', 0.0047801621258255992) +zone = ('paz019', 0.0028394808761591588) + +[fips4202760008] +centroid = (0.71372588605174325, -1.3651264135806194) +description = Philipsburg borough, PA +station = ('kfig', 0.0038021560101420171) +zone = ('paz018', 0.003267734497910514) + +[fips4202762280] +centroid = (0.71209972788107512, -1.3622693270483972) +description = Port Matilda borough, PA +station = ('kunv', 0.0028088067048744679) +zone = ('paz018', 0.0033649033424984522) + +[fips4202762360] +centroid = (0.71208161136343939, -1.3552891095978485) +description = Potter township, PA +station = ('kunv', 0.0027565082268787423) +zone = ('paz019', 0.0014594299173772535) + +[fips4202766736] +centroid = (0.71260622243000393, -1.3645217617145584) +description = Rush township, PA +station = ('kunv', 0.0043898867345843126) +zone = ('paz018', 0.0036518340021672248) + +[fips4202771600] +centroid = (0.71606609332598736, -1.3604824066003278) +description = Snow Shoe borough, PA +station = ('kunv', 0.0033673707468588263) +zone = ('paz018', 0.00096651817043958874) + +[fips4202771608] +centroid = (0.71637313164799821, -1.3601755079046571) +description = Snow Shoe township, PA +station = ('kunv', 0.003574809927700563) +zone = ('paz018', 0.0013471982820313117) + +[fips4202772832] +centroid = (0.71371482066428571, -1.356613762140235) +description = Spring township, PA +station = ('kunv', 0.00177241467637963) +zone = ('paz019', 0.00047691602781443329) + +[fips4202773808] +centroid = (0.71193711555466688, -1.3588578715858641) +description = State College borough, PA +station = ('kunv', 0.0010338168654324752) +zone = ('paz019', 0.002502610366004944) + +[fips4202776168] +centroid = (0.71155115344388076, -1.3641112951810745) +description = Taylor township, PA +station = ('kunv', 0.0043057927403482481) +zone = ('paz018', 0.0043577769495284652) + +[fips4202778288] +centroid = (0.71454280486143174, -1.359666046296) +description = Union township, PA +station = ('kunv', 0.0017246502508650938) +zone = ('paz018', 0.0015739243498624788) + +[fips4202778616] +centroid = (0.71394953254209381, -1.3592044416154325) +description = Unionville borough, PA +station = ('kunv', 0.0010437023745106784) +zone = ('paz018', 0.0022114992176586138) + +[fips4202780552] +centroid = (0.71469658582182494, -1.3545969643763853) +description = Walker township, PA +station = ('kunv', 0.0035766580532852932) +zone = ('paz019', 0.0017653418054402778) + +[fips4202786544] +centroid = (0.71246916172384467, -1.3624856780624743) +description = Worth township, PA +station = ('kunv', 0.0028782045193940309) +zone = ('paz018', 0.0030426390381480461) + +[fips4202826] +centroid = (0.69973848581370279, -1.3118849353090221) +description = Arcadia University CDP, PA +station = ('klom', 0.0015471798739408698) +zone = ('paz071', 0.0015336616368056112) + +[fips4202832] +centroid = (0.72442304394380153, -1.3186051859674861) +description = Archbald borough, PA +station = ('kavp', 0.0038532271295530431) +zone = ('paz044', 0.001433690576747128) + +[fips4202896] +centroid = (0.69818847635829917, -1.3141414540456331) +description = Ardmore CDP, PA +station = ('klom', 0.0023765255147602253) +zone = ('paz070', 0.0020558934996531197) + +[fips42029] +centroid = (0.69767730432697506, -1.3220822309033091) +description = Chester County, PA +station = ('kmqs', 0.0016119696545291106) +zone = ('paz067', 2.239543399573511e-05) + +[fips4202903384] +centroid = (0.69721554256677498, -1.3260136723098892) +description = Atglen borough, PA +station = ('kmqs', 0.001514592717152368) +zone = ('paz067', 0.0030657892105809088) + +[fips4202903656] +centroid = (0.69509858035715344, -1.3226339469331574) +description = Avondale borough, PA +station = ('kmqs', 0.0029348207339889285) +zone = ('paz067', 0.0026049642597933977) + +[fips4202906544] +centroid = (0.69634265104797499, -1.3195004700605892) +description = Birmingham township, PA +station = ('kmqs', 0.0038670446288275595) +zone = ('paz067', 0.0023651242271078531) + +[fips4202910824] +centroid = (0.69816376249609102, -1.3222996989281077) +description = Caln township, PA +station = ('kmqs', 0.0014911148406005215) +zone = ('paz067', 0.00053158139350945868) + +[fips4202912744] +centroid = (0.69972127686727814, -1.3187759838880864) +description = Charlestown township, PA +station = ('kptw', 0.0024866553616890363) +zone = ('paz067', 0.0032461599774147726) + +[fips4202914712] +centroid = (0.69787255431039574, -1.3232911855695808) +description = Coatesville city, PA +station = ('kmqs', 0.00068794570408569722) +zone = ('paz067', 0.00096790879915815086) + +[fips4202919752] +centroid = (0.69827637113942964, -1.3212519952314281) +description = Downingtown borough, PA +station = ('kmqs', 0.0022978435255250661) +zone = ('paz067', 0.00086806120047864188) + +[fips4202920824] +centroid = (0.69749750050743453, -1.3202834596696189) +description = East Bradford township, PA +station = ('kmqs', 0.0030007299011110809) +zone = ('paz067', 0.0013697855782989735) + +[fips4202920864] +centroid = (0.69869158496847916, -1.3221449231300411) +description = East Brandywine township, PA +station = ('kmqs', 0.0018053330180839813) +zone = ('paz067', 0.0010280835919301899) + +[fips4202920920] +centroid = (0.69835581852698048, -1.3208146855340486) +description = East Caln township, PA +station = ('kmqs', 0.0026420382537681981) +zone = ('paz067', 0.0011757844707628369) + +[fips4202921008] +centroid = (0.7016773197198658, -1.3197202768265854) +description = East Coventry township, PA +station = ('kptw', 0.0010070787146581009) +zone = ('paz068', 0.003297822754219954) + +[fips4202921104] +centroid = (0.69731249560672326, -1.32319206832136) +description = East Fallowfield township, PA +station = ('kmqs', 0.00089210526058056865) +zone = ('paz067', 0.00093877709425434653) + +[fips4202921192] +centroid = (0.69802701594919725, -1.3185517265324975) +description = East Goshen township, PA +station = ('kptw', 0.004177258547259039) +zone = ('paz070', 0.0024009796293522718) + +[fips4202921480] +centroid = (0.69606489935081262, -1.3215831190971166) +description = East Marlborough township, PA +station = ('kmqs', 0.0026305955094572497) +zone = ('paz067', 0.0016415686027242797) + +[fips4202921576] +centroid = (0.70040308973956977, -1.3220791765771183) +description = East Nantmeal township, PA +station = ('kmqs', 0.0030750176924033974) +zone = ('paz067', 0.0027374433634613131) + +[fips4202921624] +centroid = (0.69395144525298769, -1.3259035245807957) +description = East Nottingham township, PA +station = ('kmqs', 0.0040527974295389247) +zone = ('mdz008', 0.0032645780528086999) + +[fips4202921696] +centroid = (0.70044412243028409, -1.3188001566982266) +description = East Pikeland township, PA +station = ('kptw', 0.0017668941485221145) +zone = ('paz068', 0.0029325653113075169) + +[fips4202921928] +centroid = (0.69858946575394498, -1.3167644395652851) +description = Easttown township, PA +station = ('klom', 0.0030906827923418696) +zone = ('paz070', 0.0020083857776185899) + +[fips4202922000] +centroid = (0.70107828781399628, -1.3193356586193234) +description = East Vincent township, PA +station = ('kptw', 0.0012595531812318705) +zone = ('paz068', 0.0030905699302575429) + +[fips4202922056] +centroid = (0.69895813165184362, -1.3186668135433739) +description = East Whiteland township, PA +station = ('kptw', 0.0032464522655871455) +zone = ('paz070', 0.0030820438903031533) + +[fips4202923032] +centroid = (0.69354961809930094, -1.3247970207416162) +description = Elk township, PA +station = ('kmqs', 0.004259321573625522) +zone = ('mdz008', 0.0028720062099458783) + +[fips4202923440] +centroid = (0.70081137461148879, -1.3235060006939163) +description = Elverson borough, PA +station = ('kmqs', 0.0030725155029753498) +zone = ('paz067', 0.0033353686100609211) + +[fips4202927376] +centroid = (0.69399712051951234, -1.3234220329036028) +description = Franklin township, PA +station = ('kmqs', 0.0038301031004881344) +zone = ('mdz008', 0.0036124951723339278) + +[fips4202928] +centroid = (0.69679488331045925, -1.3491375395695619) +description = Arendtsville borough, PA +station = ('kryt', 0.0037994829643859676) +zone = ('paz064', 0.0014233403527776206) + +[fips4202934448] +centroid = (0.69674826556613856, -1.3246487899282444) +description = Highland township, PA +station = ('kmqs', 0.0010946931172824989) +zone = ('paz067', 0.0021883760383210101) + +[fips4202935528] +centroid = (0.69976497991174813, -1.3248925251582855) +description = Honey Brook borough, PA +station = ('kmqs', 0.0020557743680381462) +zone = ('paz067', 0.0030198925126230865) + +[fips4202935536] +centroid = (0.69969340395912383, -1.3244803307488422) +description = Honey Brook township, PA +station = ('kmqs', 0.0019244367997643082) +zone = ('paz067', 0.0027484334426829842) + +[fips4202939344] +centroid = (0.69529889179540483, -1.3209126334116705) +description = Kennett township, PA +station = ('kilg', 0.0031846440334427832) +zone = ('paz067', 0.0025244220898747241) + +[fips4202939352] +centroid = (0.69540621209110998, -1.3214114136053052) +description = Kennett Square borough, PA +station = ('kmqs', 0.003187675402705409) +zone = ('paz067', 0.0023131555950407462) + +[fips4202944440] +centroid = (0.69379317879641689, -1.3228240132886993) +description = London Britain township, PA +station = ('kilg', 0.0029749100768090841) +zone = ('dez001', 0.0035433601094298555) + +[fips4202944456] +centroid = (0.69600749547171459, -1.3243357476736068) +description = Londonderry township, PA +station = ('kmqs', 0.001779085919297368) +zone = ('paz067', 0.0024089028133933311) + +[fips4202944480] +centroid = (0.69518286230673221, -1.3232322807073258) +description = London Grove township, PA +station = ('kmqs', 0.0026997775288215625) +zone = ('paz067', 0.0026414078340005081) + +[fips4202945040] +centroid = (0.69473167724179929, -1.3261871405842449) +description = Lower Oxford township, PA +station = ('kmqs', 0.0034171303176657661) +zone = ('mdz007', 0.003730707510649542) + +[fips4202946792] +centroid = (0.69871024253818281, -1.3179917201887026) +description = Malvern borough, PA +station = ('kptw', 0.0035243311500381472) +zone = ('paz070', 0.0025598551351035384) + +[fips4202950232] +centroid = (0.6975255304952217, -1.3230555661205614) +description = Modena borough, PA +station = ('kmqs', 0.00090020654788468529) +zone = ('paz067', 0.00077784110337166196) + +[fips4202953608] +centroid = (0.69488058873357939, -1.322202868061207) +description = New Garden township, PA +station = ('kmqs', 0.0032750197514641944) +zone = ('paz067', 0.0027873495022231135) + +[fips4202953784] +centroid = (0.69678462077445757, -1.3218628779229187) +description = Newlin township, PA +station = ('kmqs', 0.0020383218337848112) +zone = ('paz067', 0.00089358733128987416) + +[fips4202953816] +centroid = (0.69419888058104295, -1.324357808635352) +description = New London township, PA +station = ('kmqs', 0.0035863132761754621) +zone = ('mdz008', 0.0035734132570744556) + +[fips4202954936] +centroid = (0.70196728872179215, -1.3208342506749633) +description = North Coventry township, PA +station = ('kptw', 0.0017250432490597159) +zone = ('paz068', 0.0041481835888619962) + +[fips4202957480] +centroid = (0.69438903420304776, -1.3260950919194947) +description = Oxford borough, PA +station = ('kmqs', 0.0036977276484794737) +zone = ('mdz007', 0.0035205459373886324) + +[fips4202958032] +centroid = (0.69742602927456543, -1.3250198294739259) +description = Parkesburg borough, PA +station = ('kmqs', 0.00073494482464807147) +zone = ('paz067', 0.002283205646583695) + +[fips4202958808] +centroid = (0.69503463149336031, -1.3242569286045867) +description = Penn township, PA +station = ('kmqs', 0.0027486158003691271) +zone = ('paz067', 0.0031257673779649512) + +[fips4202959136] +centroid = (0.69578301122332309, -1.3198432876322659) +description = Pennsbury township, PA +station = ('kilg', 0.0034809895094596718) +zone = ('paz067', 0.0025352830463559982) + +[fips4202960120] +centroid = (0.70049419592652395, -1.3181086397952939) +description = Phoenixville borough, PA +station = ('kptw', 0.0017500473125906873) +zone = ('paz068', 0.0024501888151030847) + +[fips4202961800] +centroid = (0.69654345117841698, -1.3204999503100363) +description = Pocopson township, PA +station = ('kmqs', 0.0030824255890040367) +zone = ('paz067', 0.0016386039246212055) + +[fips4202967080] +centroid = (0.69778129104380893, -1.3248485428611354) +description = Sadsbury township, PA +station = ('kmqs', 0.00051128674498097536) +zone = ('paz067', 0.0021421167814222025) + +[fips4202968] +centroid = (0.71234618582474929, -1.3323974933017388) +description = Aristes CDP, PA +station = ('kseg', 0.0069468723044263641) +zone = ('paz058', 0.0025115692624057859) + +[fips4202968288] +centroid = (0.70002787885697604, -1.3176182720886536) +description = Schuylkill township, PA +station = ('kptw', 0.0023009874339298634) +zone = ('paz068', 0.0024585223890725826) + +[fips4202972072] +centroid = (0.69763798205892757, -1.3231660280089204) +description = South Coatesville borough, PA +station = ('kmqs', 0.00079135404467895669) +zone = ('paz067', 0.00085017636522482457) + +[fips4202972088] +centroid = (0.70124238367026881, -1.3208075296841153) +description = South Coventry township, PA +station = ('kptw', 0.0019434731719235074) +zone = ('paz067', 0.0037023139070724857) + +[fips4202972920] +centroid = (0.70121917079121721, -1.318534657212413) +description = Spring City borough, PA +station = ('kptw', 0.00098608758972405894) +zone = ('paz068', 0.0024626029293208689) + +[fips4202976568] +centroid = (0.69680772893375398, -1.3187364172739435) +description = Thornbury township, PA +station = ('kmqs', 0.0042862906490858622) +zone = ('paz070', 0.0021326787485134138) + +[fips4202977344] +centroid = (0.69931114194635202, -1.316849995605218) +description = Tredyffrin township, PA +station = ('kptw', 0.0031860607494806803) +zone = ('paz070', 0.0027199922334548714) + +[fips4202979208] +centroid = (0.69537781558417999, -1.3257314176632566) +description = Upper Oxford township, PA +station = ('kmqs', 0.0026826995447285064) +zone = ('paz067', 0.0036301070883115859) + +[fips4202979352] +centroid = (0.69955494698956322, -1.3213326119895779) +description = Upper Uwchlan township, PA +station = ('kmqs', 0.00281049727365671) +zone = ('paz067', 0.0019690468375293414) + +[fips4202979480] +centroid = (0.69903716016037398, -1.3206764380039979) +description = Uwchlan township, PA +station = ('kmqs', 0.0029629473740659202) +zone = ('paz067', 0.0017318600082721479) + +[fips4202979544] +centroid = (0.69787178636552472, -1.32383750853204) +description = Valley township, PA +station = ('kmqs', 0.00027810622471171085) +zone = ('paz067', 0.0013796608754965583) + +[fips4202980616] +centroid = (0.6995907436925215, -1.3225300125762012) +description = Wallace township, PA +station = ('kmqs', 0.0022063305930540632) +zone = ('paz067', 0.0019587895480692756) + +[fips4202981160] +centroid = (0.70118782467785146, -1.3222082087687184) +description = Warwick township, PA +station = ('kptw', 0.0029398830282659008) +zone = ('paz067', 0.0035240208629450541) + +[fips4202982544] +centroid = (0.69742142160534026, -1.3215118223971725) +description = West Bradford township, PA +station = ('kmqs', 0.0020774924945968012) +zone = ('paz067', 0.00048415948485916281) + +[fips4202982576] +centroid = (0.69886852644804631, -1.3230785870133954) +description = West Brandywine township, PA +station = ('kmqs', 0.0013756803422547851) +zone = ('paz067', 0.0014348537272071333) + +[fips4202982664] +centroid = (0.69854534383045441, -1.3244624236707165) +description = West Caln township, PA +station = ('kmqs', 0.00079252645460982808) +zone = ('paz067', 0.0020417283539192433) + +[fips4202982704] +centroid = (0.69743152706170919, -1.3195635462597564) +description = West Chester borough, PA +station = ('kmqs', 0.0035563370438455827) +zone = ('paz067', 0.0019255050548692353) + +[fips4202982936] +centroid = (0.69639024617667689, -1.3256742232236689) +description = West Fallowfield township, PA +station = ('kmqs', 0.00180248678437043) +zone = ('paz067', 0.0030525666370651221) + +[fips4202983080] +centroid = (0.69771901769609768, -1.3193340354631189) +description = West Goshen township, PA +station = ('kmqs', 0.0037149524287715479) +zone = ('paz067', 0.0020875436398192933) + +[fips4202983104] +centroid = (0.69499337190984323, -1.3234572711012005) +description = West Grove borough, PA +station = ('kmqs', 0.0028440313309533666) +zone = ('paz067', 0.0028801096356057087) + +[fips4202983464] +centroid = (0.69618585066797589, -1.3230933699521596) +description = West Marlborough township, PA +station = ('kmqs', 0.0018015608233975685) +zone = ('paz067', 0.0016796484075743514) + +[fips4202983664] +centroid = (0.70026142136418545, -1.3233114488421964) +description = West Nantmeal township, PA +station = ('kmqs', 0.0025666586441177061) +zone = ('paz067', 0.0027675965669413678) + +[fips4202983712] +centroid = (0.69349530345297905, -1.3271914379424274) +description = West Nottingham township, PA +station = ('kmqs', 0.0048703775763607607) +zone = ('mdz007', 0.0022921389331626348) + +[fips4202983832] +centroid = (0.69966724147363646, -1.3198115226398797) +description = West Pikeland township, PA +station = ('kptw', 0.0027015595575785919) +zone = ('paz067', 0.0026387515180903418) + +[fips4202983968] +centroid = (0.69766025246018315, -1.325664903165463) +description = West Sadsbury township, PA +station = ('kmqs', 0.0011434624244013704) +zone = ('paz067', 0.0027647234121900193) + +[fips4202984104] +centroid = (0.69712632133541308, -1.3187544465251169) +description = Westtown township, PA +station = ('kmqs', 0.0042110322452718783) +zone = ('paz070', 0.0021887023746892794) + +[fips4202984160] +centroid = (0.70031842381755549, -1.3203166732852842) +description = West Vincent township, PA +station = ('kptw', 0.0022986290353976865) +zone = ('paz067', 0.0029685359553902248) + +[fips4202984192] +centroid = (0.6985192337048447, -1.3198771470197546) +description = West Whiteland township, PA +station = ('kmqs', 0.003378399369130077) +zone = ('paz067', 0.0018755695377432504) + +[fips4202985352] +centroid = (0.69814484312699943, -1.3176941764578227) +description = Willistown township, PA +station = ('klom', 0.0039252169904274705) +zone = ('paz070', 0.001979238826039779) + +[fips4203008] +centroid = (0.71558816981691376, -1.3126332277725221) +description = Arlington Heights CDP, PA +station = ('kmpo', 0.0032715204567492417) +zone = ('paz055', 0.0020007024617246212) + +[fips4203032] +centroid = (0.70604907279013873, -1.3793764858710849) +description = Armagh borough, PA +station = ('kidi', 0.0032618270691708307) +zone = ('paz023', 0.0035400081037293999) + +[fips4203088] +centroid = (0.70823569109020734, -1.3921669916679853) +description = Arnold city, PA +station = ('kbtp', 0.0043249895119997668) +zone = ('paz021', 0.0034494170081536533) + +[fips4203096] +centroid = (0.70018445234417248, -1.3931707654273924) +description = Arnold City CDP, PA +station = ('kagc', 0.0042443352958875125) +zone = ('paz075', 0.0030292748200561287) + +[fips42031] +centroid = (0.7190449165735362, -1.3861475430640746) +description = Clarion County, PA +station = ('kfkl', 0.0066846595225205042) +zone = ('paz015', 0.00010046981054737252) + +[fips4203103248] +centroid = (0.72055436457712341, -1.3886250030306955) +description = Ashland township, PA +station = ('kfkl', 0.0043436115162205635) +zone = ('paz015', 0.0024561048608311453) + +[fips4203104] +centroid = (0.72713162040997148, -1.3460356182498698) +description = Arnot CDP, PA +station = ('kipt', 0.0076697480057628022) +zone = ('paz037', 0.0025855069731679742) + +[fips4203104696] +centroid = (0.71909505988294598, -1.3879377796377226) +description = Beaver township, PA +station = ('kfkl', 0.0055161342687342491) +zone = ('paz015', 0.001347647618290377) + +[fips4203108112] +centroid = (0.71523124998488086, -1.3892111544066852) +description = Brady township, PA +station = ('kbtp', 0.0057947253435190124) +zone = ('paz022', 0.0033949850511773762) + +[fips4203110792] +centroid = (0.71777833113536393, -1.3885433041684097) +description = Callensburg borough, PA +station = ('kfkl', 0.006054896235306589) +zone = ('paz015', 0.0021414474433292881) + +[fips4203113800] +centroid = (0.71924049816951463, -1.385443878669548) +description = Clarion borough, PA +station = ('kfkl', 0.0070654142999827304) +zone = ('paz015', 0.00061328690589894732) + +[fips4203113808] +centroid = (0.71892850311242817, -1.3840779141837671) +description = Clarion township, PA +station = ('kduj', 0.0054985828275171105) +zone = ('paz015', 0.0015653210458258079) + +[fips4203120] +centroid = (0.70281235969231526, -1.390248525754193) +description = Arona borough, PA +station = ('klbe', 0.0034107736135954455) +zone = ('paz073', 0.0017114157185375779) + +[fips4203120840] +centroid = (0.71526985666793497, -1.3894619582201968) +description = East Brady borough, PA +station = ('kbtp', 0.0056664267247359037) +zone = ('paz022', 0.0035278995419015954) + +[fips4203123040] +centroid = (0.72042241768567261, -1.3873324819998387) +description = Elk township, PA +station = ('kfkl', 0.0052938001406717264) +zone = ('paz015', 0.0017215278709558162) + +[fips4203123568] +centroid = (0.71874704123009825, -1.3909839725943987) +description = Emlenton borough, PA +station = ('kfkl', 0.0041679181753439803) +zone = ('paz008', 0.0039178653872543757) + +[fips4203125272] +centroid = (0.72198900776897024, -1.3837315012338314) +description = Farmington township, PA +station = ('kduj', 0.0061326542834184697) +zone = ('paz009', 0.0026226230079767631) + +[fips4203127112] +centroid = (0.7180595036778602, -1.3906413470089396) +description = Foxburg borough, PA +station = ('kfkl', 0.0048896280189343741) +zone = ('paz015', 0.003489235123160747) + +[fips4203133216] +centroid = (0.71594234948202096, -1.3837550457254406) +description = Hawthorn borough, PA +station = ('kduj', 0.0059793822282740933) +zone = ('paz015', 0.0035060710187521885) + +[fips4203134456] +centroid = (0.72036314630427489, -1.3846060682687131) +description = Highland township, PA +station = ('kfkl', 0.0072626564438950788) +zone = ('paz015', 0.0018368123494965592) + +[fips4203140272] +centroid = (0.71967656868312546, -1.3881661908769312) +description = Knox borough, PA +station = ('kfkl', 0.0050537102085666859) +zone = ('paz015', 0.0016786419955663282) + +[fips4203140288] +centroid = (0.72106319786724993, -1.3854204214444013) +description = Knox township, PA +station = ('kfkl', 0.0065068074377791158) +zone = ('paz015', 0.0021898063632199483) + +[fips4203143192] +centroid = (0.71810039674223447, -1.3884826539769028) +description = Licking township, PA +station = ('kfkl', 0.0058511406315775501) +zone = ('paz015', 0.0019430407571443761) + +[fips4203143344] +centroid = (0.71803611626588348, -1.3838409682845163) +description = Limestone township, PA +station = ('kduj', 0.0053728772907949392) +zone = ('paz015', 0.0019667038865441512) + +[fips4203146464] +centroid = (0.71571475854756095, -1.3878939369669128) +description = Madison township, PA +station = ('kbtp', 0.0068856130077360111) +zone = ('paz022', 0.0034814183934073701) + +[fips4203149536] +centroid = (0.72017053176802481, -1.3831156269006801) +description = Millcreek township, PA +station = ('kduj', 0.004967152406979587) +zone = ('paz015', 0.0025957701634213783) + +[fips4203150464] +centroid = (0.71793310693343071, -1.3858990430851756) +description = Monroe township, PA +station = ('kfkl', 0.0074404289625223611) +zone = ('paz015', 0.0010302504758633029) + +[fips4203153248] +centroid = (0.71566128165927978, -1.384534998461572) +description = New Bethlehem borough, PA +station = ('kidi', 0.00714186935654263) +zone = ('paz015', 0.0035038489633265491) + +[fips4203157536] +centroid = (0.71980127245818037, -1.3859143147161308) +description = Paint township, PA +station = ('kfkl', 0.0065136493994633476) +zone = ('paz015', 0.00087590671884178891) + +[fips4203159456] +centroid = (0.71722551554808722, -1.3900635383067743) +description = Perry township, PA +station = ('kfkl', 0.0058294418432249901) +zone = ('paz015', 0.0034067965064607866) + +[fips4203160648] +centroid = (0.71809983823687373, -1.3869811995812897) +description = Piney township, PA +station = ('kfkl', 0.0066908535939303347) +zone = ('paz015', 0.0010478278548156856) + +[fips4203162144] +centroid = (0.71643322333414439, -1.3858857087696903) +description = Porter township, PA +station = ('kidi', 0.0082940318299682333) +zone = ('paz015', 0.0025198880806277467) + +[fips4203163728] +centroid = (0.71680874837600339, -1.3835899375782021) +description = Redbank township, PA +station = ('kduj', 0.0055013547668692226) +zone = ('paz015', 0.0028816257424585409) + +[fips4203164552] +centroid = (0.71847511893263749, -1.3900348101872866) +description = Richland township, PA +station = ('kfkl', 0.0048000026292503387) +zone = ('paz015', 0.0029554951438702588) + +[fips4203164904] +centroid = (0.71629705274590383, -1.387578747957295) +description = Rimersburg borough, PA +station = ('kbtp', 0.0074192462778758838) +zone = ('paz015', 0.0028558802379035869) + +[fips4203167384] +centroid = (0.71839451962778056, -1.3902335508292112) +description = St. Petersburg borough, PA +station = ('kfkl', 0.0047755680987747965) +zone = ('paz015', 0.0031165912239005116) + +[fips4203167432] +centroid = (0.71947016604578451, -1.3896578539754407) +description = Salem township, PA +station = ('kfkl', 0.0042661259274589707) +zone = ('paz015', 0.0026849887456425327) + +[fips4203170368] +centroid = (0.71999709840025417, -1.3868955388216018) +description = Shippenville borough, PA +station = ('kfkl', 0.0057579200796564695) +zone = ('paz015', 0.0011896294520544692) + +[fips4203171176] +centroid = (0.71749801380420108, -1.3875432130537244) +description = Sligo borough, PA +station = ('kfkl', 0.0067771013146230479) +zone = ('paz015', 0.0017835518220982425) + +[fips4203174728] +centroid = (0.7191193199595487, -1.3845140021506706) +description = Strattanville borough, PA +station = ('kduj', 0.0058339989570846797) +zone = ('paz015', 0.0012492316431056104) + +[fips4203176928] +centroid = (0.7167571564433145, -1.3879969637526579) +description = Toby township, PA +station = ('kfkl', 0.0070997327174599483) +zone = ('paz015', 0.0025892694704682672) + +[fips4203181208] +centroid = (0.72211404315658323, -1.3860857409552616) +description = Washington township, PA +station = ('kfkl', 0.0058929203695725404) +zone = ('paz015', 0.0031697554461452082) + +[fips4203264] +centroid = (0.71176457230481471, -1.3324724202865268) +description = Ashland borough, PA +station = ('kmui', 0.0067428076110255478) +zone = ('paz058', 0.0021528453703218231) + +[fips4203272] +centroid = (0.71929833838092572, -1.3246956520186604) +description = Ashley borough, PA +station = ('kavp', 0.0030295007980200898) +zone = ('paz047', 0.0013283863403229152) + +[fips4203296] +centroid = (0.70790538752926735, -1.3709083926865038) +description = Ashville borough, PA +station = ('kaoo', 0.0054750601943111552) +zone = ('paz024', 0.0024779069051315545) + +[fips42033] +centroid = (0.71558933918751255, -1.3696252964336075) +description = Clearfield County, PA +station = ('kfig', 0.0011484323842430564) +zone = ('paz017', 4.7018535707010068e-06) + +[fips4203304888] +centroid = (0.71146488181895462, -1.3704724967058182) +description = Beccaria township, PA +station = ('kfig', 0.0051835264079881293) +zone = ('paz017', 0.0041723450422959437) + +[fips4203305192] +centroid = (0.71412033046269396, -1.3743902896376474) +description = Bell township, PA +station = ('kfig', 0.0049374702944052521) +zone = ('paz017', 0.0038821593581665034) + +[fips4203306288] +centroid = (0.71263692277154644, -1.3694015277702094) +description = Bigler township, PA +station = ('kfig', 0.0038650405767380095) +zone = ('paz017', 0.0029566694229034617) + +[fips4203307008] +centroid = (0.71599462209311826, -1.3722383684831085) +description = Bloom township, PA +station = ('kfig', 0.0027615844921440244) +zone = ('paz017', 0.0020086219817055519) + +[fips4203307432] +centroid = (0.71453240269908991, -1.3674768833908653) +description = Boggs township, PA +station = ('kfig', 0.0021125357784739056) +zone = ('paz017', 0.0019395258378640469) + +[fips4203308032] +centroid = (0.71605260193086939, -1.3669463731114289) +description = Bradford township, PA +station = ('kfig', 0.001332240659689587) +zone = ('paz017', 0.0020784973504836472) + +[fips4203308120] +centroid = (0.71628425948248664, -1.3741315620293317) +description = Brady township, PA +station = ('kduj', 0.003196221226377098) +zone = ('paz016', 0.003840601459479532) + +[fips4203308744] +centroid = (0.71276977723420831, -1.3674905842254934) +description = Brisbin borough, PA +station = ('kfig', 0.0037868079873428491) +zone = ('paz017', 0.003249923633413566) + +[fips4203310280] +centroid = (0.71230934192423967, -1.3752862369558663) +description = Burnside borough, PA +station = ('kidi', 0.005070090343019449) +zone = ('paz023', 0.0047401861245453892) + +[fips4203310288] +centroid = (0.71183038867090742, -1.3746176013194273) +description = Burnside township, PA +station = ('kidi', 0.005220650200608073) +zone = ('paz024', 0.0050892210435009265) + +[fips4203312] +centroid = (0.69769709636069266, -1.3478362220792748) +description = Aspers CDP, PA +station = ('kthv', 0.0046883377347147932) +zone = ('paz064', 0.0018108743439178071) + +[fips4203313200] +centroid = (0.71165630953131342, -1.3726768650043795) +description = Chest township, PA +station = ('kfig', 0.005693010237312052) +zone = ('paz017', 0.0045566158439688262) + +[fips4203313240] +centroid = (0.71366301929208642, -1.3653535158228889) +description = Chester Hill borough, PA +station = ('kfig', 0.0037318391087712735) +zone = ('paz018', 0.0034474839058636357) + +[fips4203314064] +centroid = (0.71596020420026885, -1.3690257583822549) +description = Clearfield borough, PA +station = ('kfig', 0.00058053066014503261) +zone = ('paz017', 0.00058910782932949956) + +[fips4203314656] +centroid = (0.71115431793185491, -1.3705983523981795) +description = Coalport borough, PA +station = ('kfig', 0.0055082878632239825) +zone = ('paz017', 0.0044940417579009753) + +[fips4203316040] +centroid = (0.71582518552933461, -1.3633465791693133) +description = Cooper township, PA +station = ('kunv', 0.0045041442108704356) +zone = ('paz018', 0.0015196935096104748) + +[fips4203316656] +centroid = (0.71790172591347989, -1.3647166102722512) +description = Covington township, PA +station = ('kfig', 0.0032832583535474169) +zone = ('paz018', 0.00352931222057341) + +[fips4203317840] +centroid = (0.71510926892345905, -1.3704050397302285) +description = Curwensville borough, PA +station = ('kfig', 0.0019010903370801908) +zone = ('paz017', 0.00075543044422995498) + +[fips4203318456] +centroid = (0.71354442416941333, -1.3667042959441773) +description = Decatur township, PA +station = ('kfig', 0.003255632181795998) +zone = ('paz017', 0.0030111578648109724) + +[fips4203320] +centroid = (0.70673249136534222, -1.3945714794185802) +description = Aspinwall borough, PA +station = ('kagc', 0.002498687449557121) +zone = ('paz021', 0.0011186466341014123) + +[fips4203320136] +centroid = (0.71771898994079608, -1.3745541935077021) +description = DuBois city, PA +station = ('kduj', 0.0019822316341986529) +zone = ('paz016', 0.0032009157613913553) + +[fips4203325136] +centroid = (0.71807957496425812, -1.3752712271242991) +description = Falls Creek borough, PA +station = ('kduj', 0.0013330598769791774) +zone = ('paz016', 0.0026713236192550506) + +[fips4203325632] +centroid = (0.71338641951223036, -1.3720548471122616) +description = Ferguson township, PA +station = ('kfig', 0.0040155966598345964) +zone = ('paz017', 0.0028636758071492918) + +[fips4203329224] +centroid = (0.71805630972532897, -1.3664070663725627) +description = Girard township, PA +station = ('kfig', 0.0023150823739482673) +zone = ('paz017', 0.0034639718917815524) + +[fips4203329632] +centroid = (0.71211320182290061, -1.3700318185229821) +description = Glen Hope borough, PA +station = ('kfig', 0.0044718765192703859) +zone = ('paz017', 0.0034884345142518931) + +[fips4203330152] +centroid = (0.71804870008979027, -1.3679035989396853) +description = Goshen township, PA +station = ('kfig', 0.0016823446811541898) +zone = ('paz017', 0.0027837819413741309) + +[fips4203330272] +centroid = (0.71576081778652112, -1.365231098429154) +description = Graham township, PA +station = ('kfig', 0.0026563071934020449) +zone = ('paz018', 0.0029041006032563465) + +[fips4203330280] +centroid = (0.7149640226231081, -1.3720330479499041) +description = Grampian borough, PA +station = ('kfig', 0.002971450748009205) +zone = ('paz017', 0.001917544844768073) + +[fips4203331376] +centroid = (0.71419389609066553, -1.3728998133630295) +description = Greenwood township, PA +station = ('kfig', 0.0039393329078347772) +zone = ('paz017', 0.002834915802735539) + +[fips4203331752] +centroid = (0.71149717041011662, -1.3684376871440882) +description = Gulich township, PA +station = ('kfig', 0.0049625947503853423) +zone = ('paz017', 0.0041896762555155963) + +[fips4203335928] +centroid = (0.71253195867033148, -1.3674831491228798) +description = Houtzdale borough, PA +station = ('kfig', 0.0040200012176188384) +zone = ('paz017', 0.0034609237974781602) + +[fips4203336512] +centroid = (0.71902105792266136, -1.3712368985583141) +description = Huston township, PA +station = ('kfig', 0.003229592575478894) +zone = ('paz017', 0.0036395477708732467) + +[fips4203337192] +centroid = (0.71163758214843953, -1.3709608223772338) +description = Irvona borough, PA +station = ('kfig', 0.0051320947066283446) +zone = ('paz017', 0.0040767270744813799) + +[fips4203338432] +centroid = (0.71277888785290366, -1.3711933875000619) +description = Jordan township, PA +station = ('kfig', 0.0041575490475847035) +zone = ('paz017', 0.0030474336953452527) + +[fips4203338784] +centroid = (0.71831163394160324, -1.3633527576348652) +description = Karthaus township, PA +station = ('kfig', 0.0043868291509727214) +zone = ('paz018', 0.0032567881592252953) + +[fips4203340296] +centroid = (0.71358917441143466, -1.3697793391933886) +description = Knox township, PA +station = ('kfig', 0.0029971029287092698) +zone = ('paz017', 0.0020024291444389456) + +[fips4203341952] +centroid = (0.71705785922014065, -1.3694993011149064) +description = Lawrence township, PA +station = ('kfig', 0.00088924616262927051) +zone = ('paz017', 0.0014727503465694581) + +[fips4203345448] +centroid = (0.71436514779687121, -1.3714149221420175) +description = Lumber City borough, PA +station = ('kfig', 0.0029665846967542263) +zone = ('paz017', 0.0018194084894595207) + +[fips4203346568] +centroid = (0.71340401243109053, -1.3740605271287756) +description = Mahaffey borough, PA +station = ('kfig', 0.0051134445235037551) +zone = ('paz017', 0.0039958229659218985) + +[fips4203351056] +centroid = (0.71465358090905584, -1.3650036994809116) +description = Morris township, PA +station = ('kfig', 0.003277364842820409) +zone = ('paz018', 0.002812819920111469) + +[fips4203353336] +centroid = (0.71278454271968006, -1.3733157602303647) +description = Newburg borough, PA +station = ('kfig', 0.0051013671173980261) +zone = ('paz017', 0.0039512814589128141) + +[fips4203354344] +centroid = (0.7124594925997888, -1.3736186795753407) +description = New Washington borough, PA +station = ('kfig', 0.0054948917620300198) +zone = ('paz017', 0.0043440234297127296) + +[fips4203357232] +centroid = (0.71301078975061616, -1.3660658719570904) +description = Osceola Mills borough, PA +station = ('kfig', 0.0039532841359339443) +zone = ('paz017', 0.0037285265049712569) + +[fips4203358816] +centroid = (0.71488096240400567, -1.3724728360148213) +description = Penn township, PA +station = ('kfig', 0.0033015623341709137) +zone = ('paz017', 0.0022587643696948272) + +[fips4203360192] +centroid = (0.71542913541547204, -1.3706427884809353) +description = Pike township, PA +station = ('kfig', 0.0018347309677010746) +zone = ('paz017', 0.00077979292894035266) + +[fips4203360288] +centroid = (0.71717198629992851, -1.3705718059402567) +description = Pine township, PA +station = ('kfig', 0.0016295767158020704) +zone = ('paz017', 0.0017350735087113109) + +[fips4203363360] +centroid = (0.7121379680449863, -1.3683479597672432) +description = Ramey borough, PA +station = ('kfig', 0.0043249065007921776) +zone = ('paz017', 0.0035842895650612153) + +[fips4203367792] +centroid = (0.71820263812981622, -1.3740565477780813) +description = Sandy township, PA +station = ('kduj', 0.0021268272479438408) +zone = ('paz016', 0.003593753127628968) + +[fips4203377568] +centroid = (0.71609782341178863, -1.3751044783675637) +description = Troutville borough, PA +station = ('kduj', 0.0029668036437998169) +zone = ('paz016', 0.0032763536690599295) + +[fips4203378296] +centroid = (0.71710931152648938, -1.3723868785491606) +description = Union township, PA +station = ('kfig', 0.0029071109693180777) +zone = ('paz017', 0.0025752234503309246) + +[fips4203380640] +centroid = (0.71498526328010481, -1.3663771863357685) +description = Wallaceton borough, PA +station = ('kfig', 0.0022484432065611407) +zone = ('paz017', 0.0025296146896298102) + +[fips4203383736] +centroid = (0.711065672659146, -1.3733647690757607) +description = Westover borough, PA +station = ('kidi', 0.0057676118211732472) +zone = ('paz024', 0.0043009981722027524) + +[fips4203384] +centroid = (0.69721554256677498, -1.3260136723098892) +description = Atglen borough, PA +station = ('kmqs', 0.001514592717152368) +zone = ('paz067', 0.0030657892105809088) + +[fips4203386440] +centroid = (0.7129894967337419, -1.3680061719398249) +description = Woodward township, PA +station = ('kfig', 0.0034999198327315133) +zone = ('paz017', 0.0028744824885598942) + +[fips4203392] +centroid = (0.73187614090188546, -1.3354560606428112) +description = Athens borough, PA +station = ('kelm', 0.0064296982683876066) +zone = ('paz038', 0.0025274840315595609) + +[fips4203424] +centroid = (0.70597299388804424, -1.3579259879383467) +description = Atkinson Mills CDP, PA +station = ('kunv', 0.0070211417877782322) +zone = ('paz026', 0.0024279085898510264) + +[fips4203440] +centroid = (0.72444440677384603, -1.4021846928822421) +description = Atlantic CDP, PA +station = ('kgkj', 0.0027162051736995614) +zone = ('paz007', 0.0037406601305959705) + +[fips4203464] +centroid = (0.71204874681362429, -1.3339330688842284) +description = Atlas CDP, PA +station = ('kseg', 0.0057951355258441615) +zone = ('paz058', 0.0032343486574140192) + +[fips4203472] +centroid = (0.70412762236332571, -1.4029015694192064) +description = Atlasburg CDP, PA +station = ('kpit', 0.0031255418006718044) +zone = ('paz029', 0.0032147125741471029) + +[fips4203480] +centroid = (0.71124755342049639, -1.3832102761060157) +description = Atwood borough, PA +station = ('kidi', 0.0028817067195276865) +zone = ('paz023', 0.0027843597957037912) + +[fips4203488] +centroid = (0.70852133167558862, -1.3281510723250516) +description = Auburn borough, PA +station = ('krdg', 0.0043514624155377218) +zone = ('paz058', 0.0024883046971329093) + +[fips42035] +centroid = (0.71986630342610969, -1.3552331717953223) +description = Clinton County, PA +station = ('kunv', 0.0073885156335170357) +zone = ('paz012', 0.001365040993807848) + +[fips4203502032] +centroid = (0.71815542697354973, -1.3522556051848349) +description = Allison township, PA +station = ('kunv', 0.0071317236718235737) +zone = ('paz045', 0.0017413439195419526) + +[fips4203503632] +centroid = (0.71882591265899587, -1.3494272467721005) +description = Avis borough, PA +station = ('kipt', 0.0053676978561090034) +zone = ('paz045', 0.0020537601945532914) + +[fips4203503912] +centroid = (0.71802758160584113, -1.3538110426142123) +description = Bald Eagle township, PA +station = ('kunv', 0.0062803480672366484) +zone = ('paz045', 0.0026626447866561274) + +[fips4203504984] +centroid = (0.71688849246952713, -1.3541264585166326) +description = Beech Creek borough, PA +station = ('kunv', 0.0052449234138174676) +zone = ('paz045', 0.0026801432790290627) + +[fips4203504992] +centroid = (0.71842368407958124, -1.3565111891400949) +description = Beech Creek township, PA +station = ('kunv', 0.005709757443493781) +zone = ('paz012', 0.0022516942211041895) + +[fips4203511640] +centroid = (0.71768849903876375, -1.3512409231176028) +description = Castanea township, PA +station = ('kunv', 0.0073707476197306622) +zone = ('paz045', 0.00088401744801216834) + +[fips4203512640] +centroid = (0.72279774098446692, -1.3553960808277032) +description = Chapman township, PA +station = ('kunv', 0.010148024250702718) +zone = ('paz012', 0.0023413639956243607) + +[fips4203514960] +centroid = (0.71923398809140471, -1.3530479497586554) +description = Colebrook township, PA +station = ('kunv', 0.007596383610623007) +zone = ('paz045', 0.0029388691265831803) + +[fips4203516976] +centroid = (0.71744863843966222, -1.3483585293112268) +description = Crawford township, PA +station = ('kipt', 0.0051021038548071801) +zone = ('paz045', 0.0017379967389883541) + +[fips4203520408] +centroid = (0.71861216218550417, -1.3507771367754704) +description = Dunnstable township, PA +station = ('kunv', 0.0082437751435744146) +zone = ('paz045', 0.0016572933334146642) + +[fips4203521328] +centroid = (0.72109135002808455, -1.3608991737724114) +description = East Keating township, PA +station = ('kfig', 0.0074374145846945296) +zone = ('paz012', 0.0031822125491409968) + +[fips4203526296] +centroid = (0.71780487759328671, -1.3521106206838716) +description = Flemington borough, PA +station = ('kunv', 0.0069596844016652903) +zone = ('paz045', 0.0014331063066000144) + +[fips4203528296] +centroid = (0.72043791620943043, -1.3523234112262748) +description = Gallagher township, PA +station = ('kunv', 0.0089000795115477989) +zone = ('paz045', 0.0037173166905791082) + +[fips4203530928] +centroid = (0.71644886148424214, -1.3484074334368676) +description = Greene township, PA +station = ('kipt', 0.0056899561646480221) +zone = ('paz045', 0.001711120475178824) + +[fips4203531680] +centroid = (0.72054582991708127, -1.3547642192786038) +description = Grugan township, PA +station = ('kunv', 0.0081497377076100701) +zone = ('paz012', 0.0014601280576329271) + +[fips4203541112] +centroid = (0.71676504533153351, -1.350880111201338) +description = Lamar township, PA +station = ('kunv', 0.0070460056865442825) +zone = ('paz045', 0.00030432978855120729) + +[fips4203542544] +centroid = (0.72263851459680739, -1.3589207208922285) +description = Leidy township, PA +station = ('kunv', 0.0096724856243843998) +zone = ('paz012', 0.002578794802925367) + +[fips4203544] +centroid = (0.70040656294478121, -1.3164672972601335) +description = Audubon CDP, PA +station = ('kptw', 0.0024242186571594207) +zone = ('paz068', 0.0016232278466924235) + +[fips4203544128] +centroid = (0.71797272590745098, -1.3517982940142272) +description = Lock Haven city, PA +station = ('kunv', 0.0072456934303666157) +zone = ('paz045', 0.0013691578291449397) + +[fips4203544336] +centroid = (0.71574900190748503, -1.3512624604805727) +description = Logan township, PA +station = ('kunv', 0.0062964209502774787) +zone = ('paz045', 0.0013199803937023998) + +[fips4203544400] +centroid = (0.7161824020673403, -1.3491802477763584) +description = Loganton borough, PA +station = ('kipt', 0.0063148871829633553) +zone = ('paz045', 0.0013076390717359787) + +[fips4203549760] +centroid = (0.71741776356519438, -1.3524376604791104) +description = Mill Hall borough, PA +station = ('kunv', 0.0065145847874602016) +zone = ('paz045', 0.0014777626928898387) + +[fips4203555744] +centroid = (0.72040379502255392, -1.3576721996118144) +description = Noyes township, PA +station = ('kunv', 0.0074801529908708276) +zone = ('paz012', 0.00077765635722943955) + +[fips4203560360] +centroid = (0.71892618182452306, -1.3497378804723703) +description = Pine Creek township, PA +station = ('kipt', 0.0055769255534049702) +zone = ('paz045', 0.002062244612630965) + +[fips4203562152] +centroid = (0.71609639224180188, -1.3527253256464242) +description = Porter township, PA +station = ('kunv', 0.0055161765077795721) +zone = ('paz045', 0.001839853175413156) + +[fips4203564200] +centroid = (0.72132796431477741, -1.3568551760823706) +description = Renovo borough, PA +station = ('kunv', 0.0084806348643848093) +zone = ('paz012', 0.00066730333164251548) + +[fips4203572448] +centroid = (0.7212519203192681, -1.356858370034902) +description = South Renovo borough, PA +station = ('kunv', 0.0084052753020704783) +zone = ('paz012', 0.00059304906347343951) + +[fips4203576] +centroid = (0.72670808136039011, -1.3629334597353659) +description = Austin borough, PA +station = ('kelz', 0.0081604353907655334) +zone = ('paz006', 0.003156129536971058) + +[fips4203581728] +centroid = (0.71795127581094398, -1.3496015353512045) +description = Wayne township, PA +station = ('kipt', 0.0057407502342676497) +zone = ('paz045', 0.0012303307553866839) + +[fips4203583240] +centroid = (0.71917321572685022, -1.3616197678606825) +description = West Keating township, PA +station = ('kunv', 0.0065757556450462135) +zone = ('paz018', 0.003774709775626486) + +[fips4203586448] +centroid = (0.71882106064367535, -1.3518119773955628) +description = Woodward township, PA +station = ('kunv', 0.0078475782355269547) +zone = ('paz045', 0.0020802740438961025) + +[fips4203608] +centroid = (0.70687862778361166, -1.3974594931851478) +description = Avalon borough, PA +station = ('kpit', 0.0022094624455062189) +zone = ('paz021', 0.0012895567160887964) + +[fips4203616] +centroid = (0.70290791646886197, -1.4044178591134613) +description = Avella CDP, PA +station = ('khlg', 0.0030693082780938298) +zone = ('wvz002', 0.0014552714900616587) + +[fips4203632] +centroid = (0.71882591265899587, -1.3494272467721005) +description = Avis borough, PA +station = ('kipt', 0.0053676978561090034) +zone = ('paz045', 0.0020537601945532914) + +[fips4203640] +centroid = (0.72148560245281745, -1.3219526052997637) +description = Avoca borough, PA +station = ('kavp', 0.00014382818631138584) +zone = ('paz044', 0.0024532718138476372) + +[fips4203648] +centroid = (0.70411694094830346, -1.333069392703879) +description = Avon CDP, PA +station = ('kmui', 0.0029490653418975986) +zone = ('paz059', 0.0011261138233027367) + +[fips4203656] +centroid = (0.69509858035715344, -1.3226339469331574) +description = Avondale borough, PA +station = ('kmqs', 0.0029348207339889285) +zone = ('paz067', 0.0026049642597933977) + +[fips4203676] +centroid = (0.73392838630284296, -1.4011255049190843) +description = Avonia CDP, PA +station = ('keri', 0.0013569664396185935) +zone = ('paz001', 0.0021841049228620438) + +[fips4203688] +centroid = (0.70733220394961993, -1.3870094215552944) +description = Avonmore borough, PA +station = ('klbe', 0.0043553037886424617) +zone = ('paz073', 0.0034781227645773747) + +[fips42037] +centroid = (0.71637941483330536, -1.3335058995498026) +description = Columbia County, PA +station = ('kseg', 0.0072890271035627036) +zone = ('paz053', 5.5212733503153926e-05) + +[fips4203703264] +centroid = (0.71178370111341649, -1.3327851832884843) +description = Ashland borough, PA +station = ('kmui', 0.0066603126022137717) +zone = ('paz058', 0.0023558696452522444) + +[fips4203704704] +centroid = (0.71489925345456651, -1.3311829361285683) +description = Beaver township, PA +station = ('kseg', 0.0082496701518337875) +zone = ('paz053', 0.0023387535916215667) + +[fips4203705680] +centroid = (0.71900044558419529, -1.3331567289796487) +description = Benton borough, PA +station = ('kseg', 0.0091723318558163871) +zone = ('paz053', 0.0025819509782790909) + +[fips4203705688] +centroid = (0.71901795123659284, -1.332821695576436) +description = Benton township, PA +station = ('kseg', 0.0093616050818495031) +zone = ('paz053', 0.0026380601042787712) + +[fips4203705888] +centroid = (0.71654890375696656, -1.3308308159519786) +description = Berwick borough, PA +station = ('kavp', 0.0083533936672325493) +zone = ('paz053', 0.0020329859141844735) + +[fips4203707128] +centroid = (0.71563241391345178, -1.3344190558144462) +description = Bloomsburg town, PA +station = ('kseg', 0.0063089412598232265) +zone = ('paz053', 0.0010483216146916004) + +[fips4203708472] +centroid = (0.71644437598806465, -1.3314072807506199) +description = Briar Creek borough, PA +station = ('kseg', 0.0086889455146162437) +zone = ('paz053', 0.0015950831040110823) + +[fips4203708480] +centroid = (0.71716624416668939, -1.331230286911175) +description = Briar Creek township, PA +station = ('kseg', 0.0091604178038582097) +zone = ('paz053', 0.0018770283820479599) + +[fips4203711736] +centroid = (0.71476660843141504, -1.3344777512371906) +description = Catawissa borough, PA +station = ('kseg', 0.0058713886573458097) +zone = ('paz053', 0.0018159166790440739) + +[fips4203711744] +centroid = (0.71471049609596327, -1.3341730865629626) +description = Catawissa township, PA +station = ('kseg', 0.0060610210025746972) +zone = ('paz053', 0.0017913747101959716) + +[fips4203712312] +centroid = (0.71217263028393085, -1.3324542863155986) +description = Centralia borough, PA +station = ('kseg', 0.0069075704327548155) +zone = ('paz058', 0.0024134568250083655) + +[fips4203714184] +centroid = (0.71325468206028986, -1.3343503771083802) +description = Cleveland township, PA +station = ('kseg', 0.0055353553671205003) +zone = ('paz053', 0.0032394742656054578) + +[fips4203715880] +centroid = (0.71240957618318168, -1.3325822887629399) +description = Conyngham township, PA +station = ('kseg', 0.0068067639927936368) +zone = ('paz058', 0.0026520295161199525) + +[fips4203726056] +centroid = (0.71802822737766436, -1.3325810146725861) +description = Fishing Creek township, PA +station = ('kseg', 0.0088296473697270748) +zone = ('paz053', 0.001745641215698311) + +[fips4203727384] +centroid = (0.71414382259442588, -1.3351809618461119) +description = Franklin township, PA +station = ('kseg', 0.0051462342877480359) +zone = ('paz053', 0.0026094393237337684) + +[fips4203731392] +centroid = (0.71820122441312206, -1.334679773098109) +description = Greenwood township, PA +station = ('kipt', 0.006101230198854962) +zone = ('paz053', 0.001971451531366799) + +[fips4203733760] +centroid = (0.71597444608696514, -1.3355391732217912) +description = Hemlock township, PA +station = ('kseg', 0.0058046194976921362) +zone = ('paz053', 0.0015890001625776461) + +[fips4203736] +centroid = (0.70929648475627705, -1.4001474049529743) +description = Baden borough, PA +station = ('kpit', 0.0027327779177798066) +zone = ('paz020', 0.0018356564252908607) + +[fips4203737360] +centroid = (0.71958129115925906, -1.333938636484542) +description = Jackson township, PA +station = ('kipt', 0.0064100297822601059) +zone = ('paz053', 0.0031636437966347875) + +[fips4203744208] +centroid = (0.71338125333764457, -1.3332201891512512) +description = Locust township, PA +station = ('kseg', 0.0063992957382831934) +zone = ('paz053', 0.0030604853599102309) + +[fips4203746472] +centroid = (0.71730859322048202, -1.3363946638079485) +description = Madison township, PA +station = ('kipt', 0.0052665272581072743) +zone = ('paz051', 0.0017003927800269135) + +[fips4203746688] +centroid = (0.71518941444271056, -1.3330529691556177) +description = Main township, PA +station = ('kseg', 0.0070265630679477494) +zone = ('paz053', 0.0012932431335305817) + +[fips4203749256] +centroid = (0.71588056482650031, -1.3314045405836941) +description = Mifflin township, PA +station = ('kseg', 0.008443886490774986) +zone = ('paz053', 0.0016903981132843054) + +[fips4203749944] +centroid = (0.71769640538027524, -1.3356239089569755) +description = Millville borough, PA +station = ('kipt', 0.0056084460729708659) +zone = ('paz053', 0.0020260472297783348) + +[fips4203750704] +centroid = (0.71508820279938745, -1.3353757754972195) +description = Montour township, PA +station = ('kseg', 0.0054107140367890237) +zone = ('paz053', 0.0019404150773689778) + +[fips4203751792] +centroid = (0.71672656082152708, -1.3348245656128546) +description = Mount Pleasant township, PA +station = ('kseg', 0.0066977253587225932) +zone = ('paz053', 0.0010248545167213814) + +[fips4203754880] +centroid = (0.71667430566372237, -1.3327404504997558) +description = North Centre township, PA +station = ('kseg', 0.0079339487379478588) +zone = ('paz053', 0.00063696229811198229) + +[fips4203756896] +centroid = (0.71710667607931888, -1.3337058444689112) +description = Orange township, PA +station = ('kseg', 0.0075912357798609302) +zone = ('paz053', 0.00068752195565894344) + +[fips4203756912] +centroid = (0.71692804163037727, -1.3336665396541563) +description = Orangeville borough, PA +station = ('kseg', 0.007505417209760893) +zone = ('paz053', 0.00050662800541080349) + +[fips4203760304] +centroid = (0.71891714101899773, -1.3354460424529047) +description = Pine township, PA +station = ('kipt', 0.005367521953951084) +zone = ('paz053', 0.0028757757213763399) + +[fips4203765240] +centroid = (0.71380697404879101, -1.3322733829386293) +description = Roaring Creek township, PA +station = ('kseg', 0.0071784492495771879) +zone = ('paz053', 0.0027904027039003447) + +[fips4203768] +centroid = (0.70142611448062619, -1.3954493102191634) +description = Baidland CDP, PA +station = ('kagc', 0.0028563376394175675) +zone = ('paz029', 0.0039311406345382332) + +[fips4203768392] +centroid = (0.71598486570259956, -1.3336856161028807) +description = Scott township, PA +station = ('kseg', 0.0069648184121566684) +zone = ('paz053', 0.00046497218130373929) + +[fips4203772040] +centroid = (0.71613981603359167, -1.3326520495731422) +description = South Centre township, PA +station = ('kseg', 0.0077178561594476386) +zone = ('paz053', 0.00071898228629288627) + +[fips4203774184] +centroid = (0.718230057252365, -1.332996682287241) +description = Stillwater borough, PA +station = ('kseg', 0.0087241123007661941) +zone = ('paz053', 0.0018399726436668514) + +[fips4203775048] +centroid = (0.72035387860594691, -1.3327882550679677) +description = Sugarloaf township, PA +station = ('kipt', 0.0072734065213335653) +zone = ('paz042', 0.0035901939794338446) + +[fips4203792] +centroid = (0.71055923047009495, -1.3612854849490481) +description = Baileyville CDP, PA +station = ('kunv', 0.003084789133941163) +zone = ('paz018', 0.0048434587698732573) + +[fips4203800] +centroid = (0.69969979186418607, -1.3378833423934371) +description = Bainbridge CDP, PA +station = ('kmdt', 0.0024316771342782718) +zone = ('paz065', 0.0031160395404728866) + +[fips4203816] +centroid = (0.70909135620928998, -1.3941990261562047) +description = Bairdford CDP, PA +station = ('kbtp', 0.0028585949304394194) +zone = ('paz021', 0.0030749563679857372) + +[fips4203864] +centroid = (0.70952517524816572, -1.3952291194807318) +description = Bakerstown CDP, PA +station = ('kbtp', 0.0022815620230430375) +zone = ('paz021', 0.003255873884651679) + +[fips42039] +centroid = (0.72757261275207286, -1.3981450585153312) +description = Crawford County, PA +station = ('kgkj', 0.0016990684196423005) +zone = ('paz003', 4.0688749605911469e-05) + +[fips4203903408] +centroid = (0.72867440420227203, -1.3935878118521563) +description = Athens township, PA +station = ('kgkj', 0.0052338623908194078) +zone = ('paz003', 0.0035681430710110037) + +[fips4203904720] +centroid = (0.7297214621271283, -1.4042270771729259) +description = Beaver township, PA +station = ('khzy', 0.0032050143391977527) +zone = ('ohz014', 0.0043722769098100541) + +[fips4203907032] +centroid = (0.72975134216392257, -1.3934166474124132) +description = Bloomfield township, PA +station = ('kgkj', 0.0058449160574516679) +zone = ('paz002', 0.0035959689857752697) + +[fips4203907120] +centroid = (0.72735861793248602, -1.3969316358061747) +description = Blooming Valley borough, PA +station = ('kgkj', 0.0024350225295274347) +zone = ('paz003', 0.00090434634042557791) + +[fips4203910904] +centroid = (0.73006862556864249, -1.3966130783111006) +description = Cambridge township, PA +station = ('kgkj', 0.0042805745202623528) +zone = ('paz002', 0.0024473175528054178) + +[fips4203910912] +centroid = (0.72957965412540382, -1.3973046126673259) +description = Cambridge Springs borough, PA +station = ('kgkj', 0.0035823066166690391) +zone = ('paz003', 0.0021310439667069211) + +[fips4203912184] +centroid = (0.7284813358804163, -1.3920933038669661) +description = Centerville borough, PA +station = ('kgkj', 0.0062175738897701487) +zone = ('paz002', 0.0052037706737576251) + +[fips4203914800] +centroid = (0.7246467777006147, -1.3970834619978059) +description = Cochranton borough, PA +station = ('kgkj', 0.0029792550137761856) +zone = ('paz003', 0.0029921035988569539) + +[fips4203915728] +centroid = (0.72779854562374358, -1.4042712514562938) +description = Conneaut township, PA +station = ('kgkj', 0.0033634482070628146) +zone = ('ohz014', 0.0037205937547400139) + +[fips4203915744] +centroid = (0.72609924070412435, -1.4016657541357469) +description = Conneaut Lake borough, PA +station = ('kgkj', 0.0013263789034272432) +zone = ('paz003', 0.003015520260214258) + +[fips4203915760] +centroid = (0.72879586166491817, -1.402694241757362) +description = Conneautville borough, PA +station = ('kgkj', 0.0029268538534965595) +zone = ('paz003', 0.0036397970637248186) + +[fips4203917848] +centroid = (0.72956549950517013, -1.3999774796970001) +description = Cussewago township, PA +station = ('kgkj', 0.0029271875119818444) +zone = ('paz003', 0.0024572994576131553) + +[fips4203921096] +centroid = (0.72518685238435177, -1.397610516525323) +description = East Fairfield township, PA +station = ('kgkj', 0.0023287176145770114) +zone = ('paz003', 0.0023806637093273185) + +[fips4203921112] +centroid = (0.72482904243440049, -1.401850183077805) +description = East Fallowfield township, PA +station = ('kgkj', 0.0022579716121877585) +zone = ('paz003', 0.0038881461082037614) + +[fips4203921504] +centroid = (0.72645359490215689, -1.3973189592737774) +description = East Mead township, PA +station = ('kgkj', 0.0020459981885254707) +zone = ('paz003', 0.0012372684663494564) + +[fips4203924568] +centroid = (0.72454216266525018, -1.398257195919772) +description = Fairfield township, PA +station = ('kgkj', 0.0024868411408634386) +zone = ('paz003', 0.0029966359959892144) + +[fips4203928] +centroid = (0.70475709281134991, -1.3953146580673719) +description = Baldwin borough, PA +station = ('kagc', 0.00064457977568400807) +zone = ('paz021', 0.0016268270963144191) + +[fips4203931400] +centroid = (0.72480998343896874, -1.4002619858183676) +description = Greenwood township, PA +station = ('kgkj', 0.001835953879787405) +zone = ('paz003', 0.0031630601698210757) + +[fips4203933256] +centroid = (0.72799117761328624, -1.3998262294640222) +description = Hayfield township, PA +station = ('kgkj', 0.0013622645092686637) +zone = ('paz003', 0.0013534374767050785) + +[fips4203936616] +centroid = (0.72695103119226778, -1.391456153970233) +description = Hydetown borough, PA +station = ('kfkl', 0.005030887062154119) +zone = ('paz008', 0.0043890644745008109) + +[fips4203943656] +centroid = (0.72704213737922185, -1.4036349218643094) +description = Linesville borough, PA +station = ('kgkj', 0.0027128654892028229) +zone = ('ohz014', 0.0041999547687424435) + +[fips4203948360] +centroid = (0.72689043336063841, -1.3988380938547131) +description = Meadville city, PA +station = ('kgkj', 0.00093637586092258597) +zone = ('paz003', 0.00084076003184678852) + +[fips4203955408] +centroid = (0.72631655164929021, -1.4045468214918913) +description = North Shenango township, PA +station = ('kgkj', 0.0033806217142948783) +zone = ('ohz014', 0.0036781821518525053) + +[fips4203956464] +centroid = (0.72708885984329774, -1.3906429701651437) +description = Oil Creek township, PA +station = ('kfkl', 0.0054082387801136873) +zone = ('paz008', 0.0046248436758260262) + +[fips4203960312] +centroid = (0.72686338075723256, -1.4037731693943598) +description = Pine township, PA +station = ('kgkj', 0.0027952778949802914) +zone = ('ohz014', 0.004118969295508491) + +[fips4203963400] +centroid = (0.72648698305074744, -1.3956370203802155) +description = Randolph township, PA +station = ('kgkj', 0.0032982513171094558) +zone = ('paz003', 0.0021308797597309674) + +[fips4203964600] +centroid = (0.72813316014793605, -1.3956299517967448) +description = Richmond township, PA +station = ('kgkj', 0.0036204431069343538) +zone = ('paz003', 0.0019514209770490048) + +[fips4203965440] +centroid = (0.72966882299688829, -1.3956953318305245) +description = Rockdale township, PA +station = ('kgkj', 0.0044408973886269042) +zone = ('paz003', 0.0027953132177535849) + +[fips4203965960] +centroid = (0.72842939488187708, -1.3907806766431261) +description = Rome township, PA +station = ('kfkl', 0.0065914172690031171) +zone = ('paz002', 0.0059065298409359274) + +[fips4203967088] +centroid = (0.72616606936118322, -1.4020145581867578) +description = Sadsbury township, PA +station = ('kgkj', 0.0015464277761295922) +zone = ('paz003', 0.003217911131247273) + +[fips4203967120] +centroid = (0.72805589442195029, -1.3985471823749909) +description = Saegertown borough, PA +station = ('kgkj', 0.0018055181029144839) +zone = ('paz003', 0.00060959017865811339) + +[fips4203972472] +centroid = (0.72493124891539718, -1.4040925995540599) +description = South Shenango township, PA +station = ('kgkj', 0.0034758639129195881) +zone = ('ohz014', 0.0045921210535618748) + +[fips4203972688] +centroid = (0.72982138222680515, -1.3909419276127182) +description = Sparta township, PA +station = ('kgkj', 0.0075025540305984541) +zone = ('paz002', 0.0049416273231110029) + +[fips4203972704] +centroid = (0.72995318949191568, -1.3907100606215905) +description = Spartansburg borough, PA +station = ('kgkj', 0.0077149453257019541) +zone = ('paz004', 0.0053053274251326924) + +[fips4203972840] +centroid = (0.72967287216075283, -1.402154236886795) +description = Spring township, PA +station = ('kgkj', 0.0034182728587192814) +zone = ('paz003', 0.0036915659856315407) + +[fips4203972872] +centroid = (0.7295575408037811, -1.4027474044863777) +description = Springboro borough, PA +station = ('kgkj', 0.0035480351497360571) +zone = ('paz003', 0.0040013064550424504) + +[fips4203974016] +centroid = (0.72779707954717188, -1.3932123042635898) +description = Steuben township, PA +station = ('kgkj', 0.0052339485391816008) +zone = ('paz003', 0.0036729511828575332) + +[fips4203975160] +centroid = (0.7282183496687259, -1.4020508086753216) +description = Summerhill township, PA +station = ('kgkj', 0.0021770629974517618) +zone = ('paz003', 0.0030137036750850013) + +[fips4203975200] +centroid = (0.72725225756786938, -1.4020438099050212) +description = Summit township, PA +station = ('kgkj', 0.0016146620674674012) +zone = ('paz003', 0.0029455064143348005) + +[fips4203976904] +centroid = (0.72653309464958515, -1.3905011796167119) +description = Titusville city, PA +station = ('kfkl', 0.00497450468955181) +zone = ('paz008', 0.0041139270484226191) + +[fips4203977232] +centroid = (0.72743818749308442, -1.394170699462445) +description = Townville borough, PA +station = ('kgkj', 0.0044611340165897108) +zone = ('paz003', 0.0029501989623144809) + +[fips4203977616] +centroid = (0.7266378842178749, -1.3933524018426473) +description = Troy township, PA +station = ('kfkl', 0.0043843204991801102) +zone = ('paz008', 0.0041715662990327107) + +[fips4203978304] +centroid = (0.72548848018568146, -1.3990531707784364) +description = Union township, PA +station = ('kgkj', 0.0013686295137441016) +zone = ('paz003', 0.0021643473941872389) + +[fips4203979912] +centroid = (0.72907116990112775, -1.3982192175552486) +description = Venango borough, PA +station = ('kgkj', 0.0027883181278254587) +zone = ('paz003', 0.0015359953224947231) + +[fips4203979920] +centroid = (0.72985920351169586, -1.3983938726534957) +description = Venango township, PA +station = ('kgkj', 0.003448162532274055) +zone = ('paz003', 0.0023312528821382438) + +[fips4203980000] +centroid = (0.72653438619323152, -1.4000047242866236) +description = Vernon township, PA +station = ('kgkj', 0.00010860356491350176) +zone = ('paz003', 0.0017294366391625525) + +[fips4203981736] +centroid = (0.72528272332016386, -1.3959338659793947) +description = Wayne township, PA +station = ('kfkl', 0.0033592042962516996) +zone = ('paz003', 0.0027837816521507513) + +[fips4203982944] +centroid = (0.72483659971006165, -1.4029895514667994) +description = West Fallowfield township, PA +station = ('kgkj', 0.0028458983322909312) +zone = ('paz007', 0.0043140528200501333) + +[fips4203983480] +centroid = (0.72653880187623909, -1.3984897959491851) +description = West Mead township, PA +station = ('kgkj', 0.0011666793526889181) +zone = ('paz003', 0.0010359999302010329) + +[fips4203984] +centroid = (0.70512088924063554, -1.3192517257355951) +description = Bally borough, PA +station = ('kukt', 0.0028014898290710192) +zone = ('paz061', 0.0037084916915295614) + +[fips4203984008] +centroid = (0.72448102378155277, -1.4048085336132279) +description = West Shenango township, PA +station = ('kgkj', 0.0041660776869335541) +zone = ('ohz014', 0.0044421073955194564) + +[fips4203986160] +centroid = (0.72874577071538604, -1.3977382048133991) +description = Woodcock borough, PA +station = ('kgkj', 0.0027214813072771816) +zone = ('paz003', 0.0012416767399634628) + +[fips4203986168] +centroid = (0.72807247504984418, -1.3976756522130074) +description = Woodcock township, PA +station = ('kgkj', 0.0022775985093617516) +zone = ('paz003', 0.0006293997681857857) + +[fips4204032] +centroid = (0.71329124670811916, -1.3126169787571862) +description = Bangor borough, PA +station = ('kabe', 0.004983829044710889) +zone = ('paz062', 0.0023922094999507927) + +[fips42041] +centroid = (0.70100768924575318, -1.3485014194170877) +description = Cumberland County, PA +station = ('kmdt', 0.0066525320413277121) +zone = ('paz063', 2.9100422720605223e-05) + +[fips4204111000] +centroid = (0.70235836464728651, -1.3426363626388083) +description = Camp Hill borough, PA +station = ('kcxy', 0.0011232697668205835) +zone = ('paz057', 0.0036110620203058177) + +[fips4204111272] +centroid = (0.70162223712867278, -1.3474665264371175) +description = Carlisle borough, PA +station = ('kmdt', 0.0058319111042936939) +zone = ('paz063', 0.0010304708076681083) + +[fips4204115920] +centroid = (0.69868943821349916, -1.3495723359928189) +description = Cooke township, PA +station = ('kryt', 0.005455223074295309) +zone = ('paz063', 0.0024335866130045037) + +[fips4204119144] +centroid = (0.69972314436957783, -1.3485145966529402) +description = Dickinson township, PA +station = ('kthv', 0.0059332969458561072) +zone = ('paz063', 0.0012657180342905716) + +[fips4204121680] +centroid = (0.70314795160088872, -1.3428171438427299) +description = East Pennsboro township, PA +station = ('kcxy', 0.0017002703135989906) +zone = ('paz057', 0.003073344613246768) + +[fips4204132296] +centroid = (0.70266976629242739, -1.3435711086262989) +description = Hampden township, PA +station = ('kcxy', 0.0019016824620785653) +zone = ('paz057', 0.003816903783331208) + +[fips4204135672] +centroid = (0.70080022195756853, -1.3535731193305804) +description = Hopewell township, PA +station = ('kryt', 0.0075652014192834289) +zone = ('paz063', 0.0038585926075445842) + +[fips4204136] +centroid = (0.71899787995019493, -1.3959516857910574) +description = Barkeyville borough, PA +station = ('kfkl', 0.0036104690644201158) +zone = ('paz008', 0.0046364101793679767) + +[fips4204142648] +centroid = (0.70239299197964611, -1.3421413523563577) +description = Lemoyne borough, PA +station = ('kcxy', 0.00081059271768991678) +zone = ('paz057', 0.0033890404017645616) + +[fips4204144832] +centroid = (0.7017773794458827, -1.3426271996602355) +description = Lower Allen township, PA +station = ('kcxy', 0.001033538173043593) +zone = ('paz057', 0.0041069310619403126) + +[fips4204144904] +centroid = (0.70232996814035653, -1.3489526568418981) +description = Lower Frankford township, PA +station = ('kmdt', 0.0070007760507783652) +zone = ('paz063', 0.0013793964310926184) + +[fips4204144984] +centroid = (0.70246638307469245, -1.3514272021086684) +description = Lower Mifflin township, PA +station = ('kmdt', 0.0088940226744736953) +zone = ('paz063', 0.002660420673209657) + +[fips4204148376] +centroid = (0.70182139664961796, -1.3440070220602771) +description = Mechanicsburg borough, PA +station = ('kcxy', 0.0020802628288268867) +zone = ('paz063', 0.0035544529729577439) + +[fips4204149072] +centroid = (0.70256646025400171, -1.3462317059913316) +description = Middlesex township, PA +station = ('kcxy', 0.0038319804309445075) +zone = ('paz063', 0.002360246398890238) + +[fips4204150472] +centroid = (0.70090047366980313, -1.3451733383329223) +description = Monroe township, PA +station = ('kcxy', 0.0031379612453626229) +zone = ('paz063', 0.0025670917284474175) + +[fips4204151592] +centroid = (0.70004327266097854, -1.3470971624075179) +description = Mount Holly Springs borough, PA +station = ('kthv', 0.0052320435247441826) +zone = ('paz063', 0.0014472829819453521) + +[fips4204153344] +centroid = (0.70052254007357628, -1.3535838531054802) +description = Newburg borough, PA +station = ('kryt', 0.0072964596495354124) +zone = ('paz063', 0.0038906772788275031) + +[fips4204153464] +centroid = (0.70212440326105674, -1.3417793012563239) +description = New Cumberland borough, PA +station = ('kcxy', 0.00043211840710655056) +zone = ('paz057', 0.0035157692338729368) + +[fips4204154320] +centroid = (0.70109689302382261, -1.3509160824372219) +description = Newville borough, PA +station = ('kryt', 0.0076868533847510639) +zone = ('paz063', 0.0018262742618081181) + +[fips4204155216] +centroid = (0.70244133759992633, -1.3476462255369028) +description = North Middleton township, PA +station = ('kmdt', 0.0060230369814384893) +zone = ('paz063', 0.0016018241675262426) + +[fips4204155248] +centroid = (0.70059045083477134, -1.3516704660998113) +description = North Newton township, PA +station = ('kryt', 0.0071739529186605703) +zone = ('paz063', 0.0024328967915508782) + +[fips4204158824] +centroid = (0.6999138215903582, -1.3498984158569689) +description = Penn township, PA +station = ('kryt', 0.0065969683714393653) +zone = ('paz063', 0.0014998489017391831) + +[fips4204170352] +centroid = (0.69900399890458609, -1.3528854770585872) +description = Shippensburg borough, PA +station = ('kryt', 0.0056985157326487363) +zone = ('paz036', 0.0034928515046189733) + +[fips4204170360] +centroid = (0.69925984671963592, -1.35275674157296) +description = Shippensburg township, PA +station = ('kryt', 0.0059314284722978847) +zone = ('paz063', 0.0036655269799710745) + +[fips4204170384] +centroid = (0.70201207387039832, -1.3431326993714903) +description = Shiremanstown borough, PA +station = ('kcxy', 0.0014139126072289915) +zone = ('paz057', 0.004109968876857638) + +[fips4204170792] +centroid = (0.70250045190169141, -1.3448898968623983) +description = Silver Spring township, PA +station = ('kcxy', 0.0028135976036997782) +zone = ('paz063', 0.0031646774140924585) + +[fips4204171904] +centroid = (0.69886664149245414, -1.3519065567877286) +description = Southampton township, PA +station = ('kryt', 0.0054607223276515789) +zone = ('paz063', 0.0033425001874583327) + +[fips4204172336] +centroid = (0.70049075762789748, -1.3468234947808053) +description = South Middleton township, PA +station = ('kthv', 0.005380184700601422) +zone = ('paz063', 0.0013965223686155616) + +[fips4204172384] +centroid = (0.69935688702604681, -1.3507853223696624) +description = South Newton township, PA +station = ('kryt', 0.0059567871469928179) +zone = ('paz063', 0.0023741860840870094) + +[fips4204178736] +centroid = (0.70126427009908876, -1.3435914766186698) +description = Upper Allen township, PA +station = ('kcxy', 0.0018770798135554164) +zone = ('paz063', 0.0037839424282400387) + +[fips4204179032] +centroid = (0.70234749124604656, -1.3503224785053261) +description = Upper Frankford township, PA +station = ('kmdt', 0.0080435621687640971) +zone = ('paz063', 0.0019285914936670269) + +[fips4204179152] +centroid = (0.70142302524785016, -1.3526398219663689) +description = Upper Mifflin township, PA +station = ('kryt', 0.0080591734858296432) +zone = ('paz063', 0.0031697522331780715) + +[fips4204183800] +centroid = (0.70132764300422878, -1.3497768013146898) +description = West Pennsboro township, PA +station = ('kmdt', 0.0076031423492598921) +zone = ('paz063', 0.0010108565987761522) + +[fips4204186528] +centroid = (0.70267463576104039, -1.342334944276989) +description = Wormleysburg borough, PA +station = ('kcxy', 0.0011051906318490152) +zone = ('paz057', 0.00322056629407289) + +[fips42043] +centroid = (0.70533231842622224, -1.3402843045789432) +description = Dauphin County, PA +station = ('kcxy', 0.0035032672490483978) +zone = ('paz057', 0.0001857229097950826) + +[fips4204305856] +centroid = (0.70865490172324386, -1.3405892310525589) +description = Berrysburg borough, PA +station = ('kseg', 0.0038046370976683314) +zone = ('paz057', 0.0032969630903883634) + +[fips4204315640] +centroid = (0.70189005790239145, -1.3372011630020026) +description = Conewago township, PA +station = ('kmdt', 0.0020262609192762846) +zone = ('paz059', 0.0033860512418901626) + +[fips4204318272] +centroid = (0.7045592422873439, -1.3426865583080956) +description = Dauphin borough, PA +station = ('kcxy', 0.002853642457969147) +zone = ('paz057', 0.0021707979381241109) + +[fips4204318936] +centroid = (0.7028066699189538, -1.3378518042938536) +description = Derry township, PA +station = ('kmdt', 0.0019198310140761065) +zone = ('paz057', 0.0030736008933248179) + +[fips4204321208] +centroid = (0.70494740351298735, -1.3383562917141427) +description = East Hanover township, PA +station = ('kmui', 0.0017071788795048743) +zone = ('paz057', 0.0013613944315001903) + +[fips4204323024] +centroid = (0.70768264861012786, -1.3406918389592839) +description = Elizabethville borough, PA +station = ('kmui', 0.0038604559176038853) +zone = ('paz057', 0.0023503907237567502) + +[fips4204330600] +centroid = (0.70873146931752884, -1.3389418845847718) +description = Gratz borough, PA +station = ('kmui', 0.0036238287665653732) +zone = ('paz057', 0.0034522683778299016) + +[fips4204332032] +centroid = (0.70621011432022029, -1.3427254093372452) +description = Halifax borough, PA +station = ('kcxy', 0.0044348137205983997) +zone = ('paz057', 0.0021977255173022468) + +[fips4204332040] +centroid = (0.70635366765119678, -1.3426214575269961) +description = Halifax township, PA +station = ('kcxy', 0.0045556637421837734) +zone = ('paz057', 0.0021843733186237843) + +[fips4204332800] +centroid = (0.70294690712435148, -1.3418967444616907) +description = Harrisburg city, PA +station = ('kcxy', 0.0011340621721898159) +zone = ('paz057', 0.0028140011136948695) + +[fips4204334664] +centroid = (0.70177263215031715, -1.3401603687487591) +description = Highspire borough, PA +station = ('kmdt', 0.00029296312325264803) +zone = ('paz057', 0.0036118952081297825) + +[fips4204336232] +centroid = (0.70276279234155858, -1.3388905369981781) +description = Hummelstown borough, PA +station = ('kmdt', 0.0013476550219690593) +zone = ('paz057', 0.0027657083861906146) + +[fips4204337368] +centroid = (0.70729775115018556, -1.3399833050961443) +description = Jackson township, PA +station = ('kmui', 0.0032011653082487882) +zone = ('paz057', 0.0019148763319135642) + +[fips4204337864] +centroid = (0.70706878140561635, -1.3387188315063669) +description = Jefferson township, PA +station = ('kmui', 0.0022718615334238255) +zone = ('paz057', 0.0019660840539675339) + +[fips4204344] +centroid = (0.70979847635573545, -1.355757154543356) +description = Barrville CDP, PA +station = ('kunv', 0.0038910561087902871) +zone = ('paz027', 0.0013047476639574463) + +[fips4204344464] +centroid = (0.70134204197055772, -1.338617358063656) +description = Londonderry township, PA +station = ('kmdt', 0.00096860206736453815) +zone = ('paz057', 0.0041865632907064146) + +[fips4204345056] +centroid = (0.70368661256793175, -1.3403836138133816) +description = Lower Paxton township, PA +station = ('kcxy', 0.001902218277019301) +zone = ('paz057', 0.001715881302765843) + +[fips4204345120] +centroid = (0.70194475652114885, -1.3396799843254401) +description = Lower Swatara township, PA +station = ('kmdt', 0.00034242744154812041) +zone = ('paz057', 0.0034503310341904426) + +[fips4204345592] +centroid = (0.70797727764115703, -1.3386392793990609) +description = Lykens borough, PA +station = ('kmui', 0.0028749869822192902) +zone = ('paz057', 0.0028068248445881653) + +[fips4204345600] +centroid = (0.70897639137146118, -1.3392044693707341) +description = Lykens township, PA +station = ('kseg', 0.0038538294185963013) +zone = ('paz057', 0.0036498692931836675) + +[fips4204349040] +centroid = (0.70501519210113495, -1.3420337528079722) +description = Middle Paxton township, PA +station = ('kcxy', 0.0031539883691509077) +zone = ('paz057', 0.0015549752091439653) + +[fips4204349128] +centroid = (0.70163787527877064, -1.3391768757152605) +description = Middletown borough, PA +station = ('kmdt', 0.00049992315702495314) +zone = ('paz057', 0.0038043641711437812) + +[fips4204349264] +centroid = (0.70866909125006261, -1.3410714131650077) +description = Mifflin township, PA +station = ('kseg', 0.0037357961701630282) +zone = ('paz057', 0.0033761049545313398) + +[fips4204349680] +centroid = (0.70761215476163986, -1.3430815612244071) +description = Millersburg borough, PA +station = ('kseg', 0.0049076539743424285) +zone = ('paz057', 0.0032069562225854587) + +[fips4204358504] +centroid = (0.70271053718375398, -1.3410104837208205) +description = Paxtang borough, PA +station = ('kcxy', 0.0008244711763594673) +zone = ('paz057', 0.002771484803732579) + +[fips4204358712] +centroid = (0.70298385574461619, -1.341256383159134) +description = Penbrook borough, PA +station = ('kcxy', 0.0010708393490776586) +zone = ('paz057', 0.002569841909725124) + +[fips4204360264] +centroid = (0.70931128514833386, -1.3404636371595855) +description = Pillow borough, PA +station = ('kseg', 0.0031875077068921785) +zone = ('paz052', 0.00389349453831044) + +[fips4204363928] +centroid = (0.70534669993925869, -1.3436889008975159) +description = Reed township, PA +station = ('kcxy', 0.0038919000726090449) +zone = ('paz057', 0.0027709361537349153) + +[fips4204366560] +centroid = (0.70137424329525688, -1.3390854379157484) +description = Royalton borough, PA +station = ('kmdt', 0.00062127993551232437) +zone = ('paz057', 0.0040762069436834887) + +[fips4204366744] +centroid = (0.70718379860332292, -1.3377026659092708) +description = Rush township, PA +station = ('kmui', 0.0018140811433122945) +zone = ('paz057', 0.0025356581239429354) + +[fips4204372200] +centroid = (0.70325012317530045, -1.338795032581509) +description = South Hanover township, PA +station = ('kmdt', 0.0018096866319921054) +zone = ('paz057', 0.0023379170735492566) + +[fips4204373888] +centroid = (0.70207275896849008, -1.3408561617083592) +description = Steelton borough, PA +station = ('kcxy', 0.00036459247525041282) +zone = ('paz057', 0.0033673784800831658) + +[fips4204375528] +centroid = (0.70359967771788989, -1.3416076306710978) +description = Susquehanna township, PA +station = ('kcxy', 0.0017042465072152674) +zone = ('paz057', 0.0021426664402100994) + +[fips4204375672] +centroid = (0.70243227934110852, -1.3404687684275864) +description = Swatara township, PA +station = ('kcxy', 0.00081129987836913169) +zone = ('paz057', 0.0029684932625348619) + +[fips4204379216] +centroid = (0.70815996125396319, -1.3426038297015512) +description = Upper Paxton township, PA +station = ('kseg', 0.0042964664173312187) +zone = ('paz057', 0.0033883157606872777) + +[fips4204381216] +centroid = (0.70792037990754209, -1.340599703028071) +description = Washington township, PA +station = ('kmui', 0.0039298589853667002) +zone = ('paz057', 0.0025710744925642984) + +[fips4204381744] +centroid = (0.70616735375354633, -1.3410296823425925) +description = Wayne township, PA +station = ('kcxy', 0.0042585738059891087) +zone = ('paz057', 0.0010819099306969618) + +[fips4204383128] +centroid = (0.70440624672511398, -1.3394223737278459) +description = West Hanover township, PA +station = ('kmdt', 0.002801294882172668) +zone = ('paz057', 0.0010878983849894933) + +[fips4204384976] +centroid = (0.70823045510245131, -1.3386629111571331) +description = Wiconisco township, PA +station = ('kmui', 0.0030899627417297492) +zone = ('paz057', 0.0030359901747134127) + +[fips4204385232] +centroid = (0.70844244279339852, -1.3374484237971327) +description = Williams township, PA +station = ('kmui', 0.0028738761268387505) +zone = ('paz057', 0.00364273054123613) + +[fips4204385320] +centroid = (0.70827070239500234, -1.3372181450556246) +description = Williamstown borough, PA +station = ('kmui', 0.0026609502018332407) +zone = ('paz057', 0.0036017139362673253) + +[fips4204432] +centroid = (0.71087057975535806, -1.3158027107875589) +description = Bath borough, PA +station = ('kabe', 0.0016048721742457366) +zone = ('paz062', 0.0011717371190492205) + +[fips4204488] +centroid = (0.70297333140922669, -1.3231672148328115) +description = Baumstown CDP, PA +station = ('krdg', 0.0025823498213859621) +zone = ('paz060', 0.0028615970040275292) + +[fips42045] +centroid = (0.69667731793204501, -1.3159570677066053) +description = Delaware County, PA +station = ('kphl', 0.0023812935062612018) +zone = ('paz070', 2.9121383201911433e-06) + +[fips4204500676] +centroid = (0.69677749983110937, -1.3140255641833005) +description = Aldan borough, PA +station = ('kphl', 0.0012184963579420915) +zone = ('paz070', 0.0014875657199997952) + +[fips4204503336] +centroid = (0.69592387674725142, -1.3166211829402816) +description = Aston township, PA +station = ('kphl', 0.0027286211717433783) +zone = ('paz070', 0.00090838542924656738) + +[fips4204506024] +centroid = (0.69544462678794638, -1.3175246526275766) +description = Bethel township, PA +station = ('kilg', 0.0034691957431628767) +zone = ('paz070', 0.0017207426655394006) + +[fips4204509080] +centroid = (0.69588190157874108, -1.3158255920540527) +description = Brookhaven borough, PA +station = ('kphl', 0.0021168462177495358) +zone = ('paz070', 0.00080267179326126399) + +[fips4204512442] +centroid = (0.69576478998593227, -1.3189341979847795) +description = Chadds Ford township, PA +station = ('kilg', 0.0034752446890970014) +zone = ('paz070', 0.0024573250596436023) + +[fips4204513208] +centroid = (0.69543617939436664, -1.3154875043246488) +description = Chester city, PA +station = ('kphl', 0.0018924991158258751) +zone = ('paz070', 0.0012936914610299848) + +[fips4204513212] +centroid = (0.69552222412649001, -1.3159807169179698) +description = Chester township, PA +station = ('kphl', 0.0022525982497196223) +zone = ('paz070', 0.0011557184338869075) + +[fips4204513232] +centroid = (0.69625737426072254, -1.3172380346578139) +description = Chester Heights borough, PA +station = ('kphl', 0.0032308840787757189) +zone = ('paz070', 0.0010661913466177041) + +[fips4204514264] +centroid = (0.69691258831521374, -1.3141600941620444) +description = Clifton Heights borough, PA +station = ('kphl', 0.0013884713765122691) +zone = ('paz070', 0.0014007782796152091) + +[fips4204515232] +centroid = (0.69664930539755043, -1.3138424965980591) +description = Collingdale borough, PA +station = ('kphl', 0.00103218792659206) +zone = ('paz070', 0.0016249643669620066) + +[fips4204515432] +centroid = (0.6965924949303981, -1.3134139659068169) +description = Colwyn borough, PA +station = ('kphl', 0.00083107983960540558) +zone = ('paz070', 0.0019553012404324626) + +[fips4204515488] +centroid = (0.69591624965842025, -1.3178756208868601) +description = Concord township, PA +station = ('kilg', 0.0038047852786168572) +zone = ('paz070', 0.0016547662613991679) + +[fips4204518152] +centroid = (0.69675207038390785, -1.313553679513439) +description = Darby borough, PA +station = ('kphl', 0.0010177317937215542) +zone = ('paz070', 0.0018476450671993322) + +[fips4204518160] +centroid = (0.69631832115820225, -1.3136309277861322) +description = Darby township, PA +station = ('kphl', 0.00067052801668980784) +zone = ('paz070', 0.0018230337417761131) + +[fips4204521384] +centroid = (0.69715381027113188, -1.3135487576849485) +description = East Lansdowne borough, PA +station = ('kphl', 0.0013984322129099696) +zone = ('paz070', 0.0019098769822130874) + +[fips4204522296] +centroid = (0.69559833793516956, -1.3148805660772678) +description = Eddystone borough, PA +station = ('kphl', 0.0014054953589936066) +zone = ('paz070', 0.0013610251962345777) + +[fips4204522584] +centroid = (0.69724927978121598, -1.317079157336005) +description = Edgmont township, PA +station = ('kphl', 0.0033981873007646111) +zone = ('paz070', 0.0010305003651217733) + +[fips4204526408] +centroid = (0.69619244801254843, -1.3138228790972666) +description = Folcroft borough, PA +station = ('kphl', 0.00069627816935148145) +zone = ('paz070', 0.0017103940231709164) + +[fips4204529720] +centroid = (0.69637984401433495, -1.3140925150134073) +description = Glenolden borough, PA +station = ('kphl', 0.0009732989360179444) +zone = ('paz070', 0.001463768863805175) + +[fips4204533144] +centroid = (0.69790023523233236, -1.3145190560293021) +description = Haverford township, PA +station = ('kphl', 0.0023722583659945458) +zone = ('paz070', 0.0016479571375985973) + +[fips4204541440] +centroid = (0.69709773284226539, -1.3138145887833197) +description = Lansdowne borough, PA +station = ('kphl', 0.0014138648322995582) +zone = ('paz070', 0.0016985284305966158) + +[fips4204544888] +centroid = (0.69502337411968496, -1.3165440742939285) +description = Lower Chichester township, PA +station = ('kphl', 0.0027798644263794751) +zone = ('paz070', 0.0017139624076502795) + +[fips4204547344] +centroid = (0.69486598032774016, -1.3162610167958402) +description = Marcus Hook borough, PA +station = ('kphl', 0.0026242649397269823) +zone = ('paz070', 0.0018264555599368012) + +[fips4204547616] +centroid = (0.69752891643397053, -1.3153497629400814) +description = Marple township, PA +station = ('kphl', 0.0024560881054224845) +zone = ('paz070', 0.0009714982068310357) + +[fips4204548480] +centroid = (0.69673536758296628, -1.3157692004659207) +description = Media borough, PA +station = ('kphl', 0.0022709233643548534) +zone = ('paz070', 0.00015780970148037606) + +[fips4204549136] +centroid = (0.69661274074972113, -1.3165493102816845) +description = Middletown township, PA +station = ('kphl', 0.0027897017662623404) +zone = ('paz070', 0.00045605514507527435) + +[fips4204549504] +centroid = (0.69749875714449605, -1.3134059024856728) +description = Millbourne borough, PA +station = ('kphl', 0.001713711938341105) +zone = ('paz071', 0.0017637164316896567) + +[fips4204551176] +centroid = (0.69658853303299595, -1.3146998721398087) +description = Morton borough, PA +station = ('kphl', 0.0014763838073253281) +zone = ('paz070', 0.00097125704534544311) + +[fips4204553104] +centroid = (0.69634558320111839, -1.3154272206522848) +description = Nether Providence township, PA +station = ('kphl', 0.0018884747948125081) +zone = ('paz070', 0.00052718522092460489) + +[fips4204554224] +centroid = (0.69798313837180204, -1.316179108494044) +description = Newtown township, PA +station = ('klom', 0.0032130948407255349) +zone = ('paz070', 0.0013159802233136371) + +[fips4204555664] +centroid = (0.69614185091753311, -1.3141588549782754) +description = Norwood borough, PA +station = ('kphl', 0.00090155729993337066) +zone = ('paz070', 0.0014826384727536391) + +[fips4204558176] +centroid = (0.69581681825093422, -1.3155941439419456) +description = Parkside borough, PA +station = ('kphl', 0.0019378858922954856) +zone = ('paz070', 0.0009058158275004407) + +[fips4204562792] +centroid = (0.69614371841983269, -1.3143615575176022) +description = Prospect Park borough, PA +station = ('kphl', 0.0010480428013644198) +zone = ('paz070', 0.0013380855966049654) + +[fips4204563264] +centroid = (0.69853120666351332, -1.3155155168591433) +description = Radnor township, PA +station = ('klom', 0.0024698599189297314) +zone = ('paz070', 0.0018845212449322918) + +[fips4204564800] +centroid = (0.69616783887009526, -1.3146794168809752) +description = Ridley township, PA +station = ('kphl', 0.0012878698525485026) +zone = ('paz070', 0.0011074297257178092) + +[fips4204564832] +centroid = (0.69600220712408101, -1.3146774795655054) +description = Ridley Park borough, PA +station = ('kphl', 0.00124990089989176) +zone = ('paz070', 0.0011940845880596374) + +[fips4204566192] +centroid = (0.69629472430671524, -1.315719598208579) +description = Rose Valley borough, PA +station = ('kphl', 0.0020919587118266784) +zone = ('paz070', 0.00042545769666782056) + +[fips4204566928] +centroid = (0.69640293472033887, -1.3147115309392121) +description = Rutledge borough, PA +station = ('kphl', 0.0013949445308963297) +zone = ('paz070', 0.0009969269743498807) + +[fips4204568] +centroid = (0.69921212941788635, -1.3967910320816341) +description = Beallsville borough, PA +station = ('kafj', 0.0036017695481851339) +zone = ('paz029', 0.0036623990180640925) + +[fips4204569752] +centroid = (0.69651610186903823, -1.3136707038397852) +description = Sharon Hill borough, PA +station = ('kphl', 0.0008480199284850563) +zone = ('paz070', 0.0017640049922108077) + +[fips4204573032] +centroid = (0.69688904382360439, -1.314876813619376) +description = Springfield township, PA +station = ('kphl', 0.0017603488528331566) +zone = ('paz070', 0.0008577315823078245) + +[fips4204575648] +centroid = (0.69642688063767633, -1.3150836700423223) +description = Swarthmore borough, PA +station = ('kphl', 0.0016662126550016755) +zone = ('paz070', 0.00071809305021919582) + +[fips4204576576] +centroid = (0.69672372623685541, -1.3180535222975158) +description = Thornbury township, PA +station = ('kilg', 0.004541912258712236) +zone = ('paz070', 0.0016056950194799017) + +[fips4204576792] +centroid = (0.69573058153259315, -1.3134850880738358) +description = Tinicum township, PA +station = ('kphl', 0.0003275578043937322) +zone = ('paz070', 0.0021226565471384583) + +[fips4204577288] +centroid = (0.69505958970166393, -1.3160612115030719) +description = Trainer borough, PA +station = ('kphl', 0.0024148567439270315) +zone = ('paz070', 0.0016200857245172945) + +[fips4204578712] +centroid = (0.69562196969324153, -1.3156230465943586) +description = Upland borough, PA +station = ('kphl', 0.0019686795385483041) +zone = ('paz070', 0.0010872130913004805) + +[fips4204578776] +centroid = (0.69534488122119498, -1.316685009631027) +description = Upper Chichester township, PA +station = ('kphl', 0.0028134824590967185) +zone = ('paz070', 0.0014441789196482416) + +[fips4204579000] +centroid = (0.69724179231872496, -1.3140429476626505) +description = Upper Darby township, PA +station = ('kphl', 0.0016196466419312236) +zone = ('paz070', 0.001575030678507613) + +[fips4204579248] +centroid = (0.69700793565225017, -1.3159946097388155) +description = Upper Providence township, PA +station = ('kphl', 0.0025463733603534192) +zone = ('paz070', 0.00033111066025133594) + +[fips4204586968] +centroid = (0.69695341156641788, -1.3134075081885845) +description = Yeadon borough, PA +station = ('kphl', 0.0011777397335348203) +zone = ('paz070', 0.0019773910479085753) + +[fips4204599] +centroid = (0.71878299501268927, -1.3221003648742375) +description = Bear Creek Village borough, PA +station = ('kavp', 0.0026297338181934717) +zone = ('paz047', 0.0031298532374494288) + +[fips4204608] +centroid = (0.73292372242551751, -1.3875605790797818) +description = Bear Lake borough, PA +station = ('kjhw', 0.0040881022107745095) +zone = ('paz004', 0.0042949484105741301) + +[fips4204616] +centroid = (0.70035692578085451, -1.3869018220069089) +description = Bear Rocks CDP, PA +station = ('klbe', 0.0028490177382322511) +zone = ('paz074', 0.0036261239091940679) + +[fips4204688] +centroid = (0.71023622238542816, -1.4016317202153328) +description = Beaver borough, PA +station = ('kbvi', 0.0017672268891092324) +zone = ('paz020', 0.00058591517369093176) + +[fips42047] +centroid = (0.72304337862339263, -1.3727701877594836) +description = Elk County, PA +station = ('kduj', 0.0052135753100904332) +zone = ('paz010', 7.1447793959995278e-05) + +[fips4204705576] +centroid = (0.72085194321458856, -1.3670677258543202) +description = Benezette township, PA +station = ('kfig', 0.0045487110203223709) +zone = ('paz011', 0.0028577426831933811) + +[fips4204727088] +centroid = (0.72113819466520801, -1.3721436669178955) +description = Fox township, PA +station = ('kduj', 0.0042020226864835069) +zone = ('paz010', 0.0019137058761950754) + +[fips4204734464] +centroid = (0.72509202864609101, -1.3766663735151732) +description = Highland township, PA +station = ('kbfd', 0.0054733699373566164) +zone = ('paz010', 0.0036370598383198924) + +[fips4204735816] +centroid = (0.72055467873638879, -1.3739541842174516) +description = Horton township, PA +station = ('kduj', 0.0027620745525057163) +zone = ('paz010', 0.0026310147249168471) + +[fips4204737760] +centroid = (0.72115583994394572, -1.369830442433887) +description = Jay township, PA +station = ('kfig', 0.0047843964958337211) +zone = ('paz010', 0.0028331728002612146) + +[fips4204738248] +centroid = (0.72417592277501164, -1.3732035181061688) +description = Johnsonburg borough, PA +station = ('kbfd', 0.0054042865776609567) +zone = ('paz010', 0.0012303997010834602) + +[fips4204738368] +centroid = (0.7256072149346946, -1.3721716096392198) +description = Jones township, PA +station = ('kbfd', 0.0039444511261796907) +zone = ('paz010', 0.0026278956151377002) + +[fips4204749888] +centroid = (0.72286465690798829, -1.3790310677588227) +description = Millstone township, PA +station = ('kduj', 0.0044182593313486247) +zone = ('paz009', 0.0033694969345944526) + +[fips4204764784] +centroid = (0.72312350668935166, -1.3740456045636711) +description = Ridgway borough, PA +station = ('kduj', 0.0047984173387468155) +zone = ('paz010', 0.0010248289059281354) + +[fips4204764792] +centroid = (0.72330580632972241, -1.3740821517582078) +description = Ridgway township, PA +station = ('kduj', 0.0049525261228450853) +zone = ('paz010', 0.0010872199264425335) + +[fips4204767344] +centroid = (0.72353119814932498, -1.3704303470043826) +description = St. Marys city, PA +station = ('kbfd', 0.0061958296370593392) +zone = ('paz010', 0.0017711387846150828) + +[fips4204768] +centroid = (0.70378972662013961, -1.3735969153195684) +description = Beaverdale CDP, PA +station = ('kjst', 0.0017617822621169078) +zone = ('paz024', 0.0029927981576180567) + +[fips4204772928] +centroid = (0.72254215496880481, -1.376491072645103) +description = Spring Creek township, PA +station = ('kduj', 0.0037633955894424073) +zone = ('paz010', 0.0028903484580573013) + +[fips4204792] +centroid = (0.71138574859066928, -1.4019025604086572) +description = Beaver Falls city, PA +station = ('kbvi', 0.0010244514449426494) +zone = ('paz020', 0.0013895781143458148) + +[fips4204816] +centroid = (0.71436137788568699, -1.3249336276621699) +description = Beaver Meadows borough, PA +station = ('kavp', 0.0074273742909676359) +zone = ('paz054', 0.0027018214317755221) + +[fips4204824] +centroid = (0.71113113995938837, -1.3476806434297524) +description = Beaver Springs CDP, PA +station = ('kseg', 0.0047893110603057501) +zone = ('paz050', 0.0019836575721896934) + +[fips4204848] +centroid = (0.71121695779870886, -1.3468872342050879) +description = Beavertown borough, PA +station = ('kseg', 0.0041875415760619086) +zone = ('paz050', 0.0013794317138472686) + +[fips4204896] +centroid = (0.70459217665032903, -1.3200070867825657) +description = Bechtelsville borough, PA +station = ('kptw', 0.0026192470637597244) +zone = ('paz061', 0.0042672518963522039) + +[fips42049] +centroid = (0.73509693659693076, -1.3979456546482909) +description = Erie County, PA +station = ('keri', 0.001277823114359552) +zone = ('paz001', 0.00046041221337011953) + +[fips4204900000] +centroid = (0.73742393172873721, -1.3992045606377543) +description = County subdivisions not defined, PA +station = ('keri', 0.0029374653697061752) +zone = ('paz001', 0.0026702962555640686) + +[fips4204900628] +centroid = (0.73111844111371715, -1.4026226658047376) +description = Albion borough, PA +station = ('keri', 0.004111084775881256) +zone = ('paz001', 0.0048316255421456148) + +[fips4204902336] +centroid = (0.73255032668534592, -1.3933708674261336) +description = Amity township, PA +station = ('keri', 0.0049247298847757467) +zone = ('paz002', 0.0023324895281034521) + +[fips4204915504] +centroid = (0.73099440056377796, -1.3909086965437598) +description = Concord township, PA +station = ('kjhw', 0.007233451993772227) +zone = ('paz004', 0.0055772066713267966) + +[fips4204915736] +centroid = (0.73098844899102866, -1.4039109282322197) +description = Conneaut township, PA +station = ('khzy', 0.0038199737071834047) +zone = ('ohz014', 0.0053185147185575224) + +[fips4204916296] +centroid = (0.73178506962151635, -1.3898597536633115) +description = Corry city, PA +station = ('kjhw', 0.0061275483293940754) +zone = ('paz004', 0.0050687991464333781) + +[fips4204916960] +centroid = (0.73133823042642088, -1.402138232217554) +description = Cranesville borough, PA +station = ('keri', 0.0037287643454121397) +zone = ('paz001', 0.0044334903058289056) + +[fips4204922608] +centroid = (0.73085625775348262, -1.3984319033778965) +description = Edinboro borough, PA +station = ('keri', 0.0037164003269663883) +zone = ('paz002', 0.0021909029412672098) + +[fips4204922960] +centroid = (0.73141533907277401, -1.3918391490212907) +description = Elgin borough, PA +station = ('keri', 0.0064479289891163994) +zone = ('paz002', 0.0036426449646818682) + +[fips4204923088] +centroid = (0.73106280001716351, -1.4013604785962803) +description = Elk Creek township, PA +station = ('keri', 0.0037085508919436506) +zone = ('paz003', 0.0042748224019389606) + +[fips4204924000] +centroid = (0.73507323502568866, -1.3975462709555571) +description = Erie city, PA +station = ('keri', 0.0015362006035980831) +zone = ('paz001', 0.00070899955255136901) + +[fips4204924864] +centroid = (0.73349753432369569, -1.400393653457138) +description = Fairview township, PA +station = ('keri', 0.0012114999921469533) +zone = ('paz001', 0.0019614560314886419) + +[fips4204927392] +centroid = (0.73176915221873817, -1.4000203798900142) +description = Franklin township, PA +station = ('keri', 0.0027548679423779776) +zone = ('paz001', 0.0032653450413138319) + +[fips4204929232] +centroid = (0.73311012358963057, -1.4018346496474623) +description = Girard borough, PA +station = ('keri', 0.0022390184000017545) +zone = ('paz001', 0.0030453120941670783) + +[fips4204929240] +centroid = (0.73274219073001756, -1.4019349537195744) +description = Girard township, PA +station = ('keri', 0.0025367351942244647) +zone = ('paz001', 0.0033237832049900608) + +[fips4204930936] +centroid = (0.73396427027226396, -1.3953701769908782) +description = Greene township, PA +station = ('keri', 0.0030840384616400503) +zone = ('paz002', 0.0016780044856949984) + +[fips4204931008] +centroid = (0.73518043314834625, -1.3934172059177738) +description = Greenfield township, PA +station = ('keri', 0.0045381523493881791) +zone = ('paz002', 0.0035175879346241844) + +[fips4204932520] +centroid = (0.73572621505873737, -1.3956324301642826) +description = Harborcreek township, PA +station = ('keri', 0.003097660115107996) +zone = ('paz001', 0.0022703825355558115) + +[fips4204940960] +centroid = (0.73334768035411946, -1.4023074942484124) +description = Lake City borough, PA +station = ('keri', 0.0024024869257451881) +zone = ('paz001', 0.0032270290584882596) + +[fips4204941984] +centroid = (0.73566683895758445, -1.3966648447767147) +description = Lawrence Park township, PA +station = ('keri', 0.0023847879582001084) +zone = ('paz001', 0.0015658245100088613) + +[fips4204942208] +centroid = (0.73094694506141622, -1.3955261221595436) +description = LeBoeuf township, PA +station = ('keri', 0.0045975794285242838) +zone = ('paz002', 0.0017295152324664292) + +[fips4204944] +centroid = (0.69839480918246999, -1.3701360670392038) +description = Bedford borough, PA +station = ('kaoo', 0.0055595162215105924) +zone = ('paz034', 0.00022632198506853936) + +[fips4204946216] +centroid = (0.73299948716834651, -1.3986881700719669) +description = McKean borough, PA +station = ('keri', 0.001600327167005443) +zone = ('paz001', 0.001825149115030029) + +[fips4204946224] +centroid = (0.73296533107488504, -1.3985066558297594) +description = McKean township, PA +station = ('keri', 0.0016845142526679508) +zone = ('paz001', 0.001850436845641686) + +[fips4204949548] +centroid = (0.73453830906324502, -1.398356121181775) +description = Millcreek township, PA +station = ('keri', 0.00082286728028803673) +zone = ('paz001', 0.00028305140291524179) + +[fips4204949936] +centroid = (0.7309004494901431, -1.3957856177127301) +description = Mill Village borough, PA +station = ('keri', 0.0045142071608023906) +zone = ('paz002', 0.0017013062398720375) + +[fips4204954952] +centroid = (0.73676224250272115, -1.3933548278503074) +description = North East borough, PA +station = ('keri', 0.0050656240664832923) +zone = ('paz001', 0.0042404447315104342) + +[fips4204954960] +centroid = (0.73653740918847921, -1.3932305255009805) +description = North East township, PA +station = ('keri', 0.0050535283997567406) +zone = ('paz001', 0.0042263531535934014) + +[fips4204961168] +centroid = (0.73218283015804586, -1.4020308421086789) +description = Platea borough, PA +station = ('keri', 0.0029957790722837697) +zone = ('paz001', 0.0037494076915230335) + +[fips4204973048] +centroid = (0.73232535374476382, -1.4041531101192264) +description = Springfield township, PA +station = ('keri', 0.004103255867059322) +zone = ('ohz089', 0.0045199661727250567) + +[fips4204975208] +centroid = (0.73381492244817081, -1.3971242852490098) +description = Summit township, PA +station = ('keri', 0.0018639874607895321) +zone = ('paz002', 0.001378582609113348) + +[fips4204978312] +centroid = (0.73126312890870748, -1.3931524743768315) +description = Union township, PA +station = ('keri', 0.0056947717642621774) +zone = ('paz002', 0.002792234295164636) + +[fips4204978448] +centroid = (0.73125218569429751, -1.3935270394876018) +description = Union City borough, PA +station = ('keri', 0.0054742431518107811) +zone = ('paz002', 0.0025516205429525233) + +[fips4204979928] +centroid = (0.73383548242675933, -1.3933395911259376) +description = Venango township, PA +station = ('keri', 0.0045933524026925913) +zone = ('paz002', 0.0026993194267629001) + +[fips4204981224] +centroid = (0.73112170487941841, -1.3982485914465594) +description = Washington township, PA +station = ('keri', 0.0034898178978870209) +zone = ('paz002', 0.0019020337059758338) + +[fips4204981456] +centroid = (0.73208130435545737, -1.3960039234955697) +description = Waterford borough, PA +station = ('keri', 0.0035242870033931561) +zone = ('paz002', 0.00057288177876839636) + +[fips4204981472] +centroid = (0.73231379966511556, -1.3959763123868032) +description = Waterford township, PA +station = ('keri', 0.0033849418512579329) +zone = ('paz002', 0.00044328703705251389) + +[fips4204981648] +centroid = (0.73308596823278294, -1.3928562221895979) +description = Wattsburg borough, PA +station = ('keri', 0.0051042754591269198) +zone = ('paz002', 0.0027736627096719402) + +[fips4204981760] +centroid = (0.73216823920549923, -1.3908885728974845) +description = Wayne township, PA +station = ('keri', 0.0067813153973678162) +zone = ('paz002', 0.0041928149791092854) + +[fips4204982344] +centroid = (0.73542994541821127, -1.3964763492174996) +description = Wesleyville borough, PA +station = ('keri', 0.0024058512673200342) +zone = ('paz001', 0.0015785137092748861) + +[fips4204984] +centroid = (0.71688849246952713, -1.3541264585166326) +description = Beech Creek borough, PA +station = ('kunv', 0.0052449234138174676) +zone = ('paz045', 0.0026801432790290627) + +[fips4205028] +centroid = (0.71632354684394905, -1.3252617670148374) +description = Beech Mountain Lakes CDP, PA +station = ('kavp', 0.0057097156146270044) +zone = ('paz047', 0.0024705950281802588) + +[fips42051] +centroid = (0.69663272476965654, -1.3900602570877805) +description = Fayette County, PA +station = ('kmgw', 0.0058793231615348321) +zone = ('paz076', 0.0017675368674837464) + +[fips4205105288] +centroid = (0.70032137342399137, -1.3939235957469476) +description = Belle Vernon borough, PA +station = ('kagc', 0.0039768315856612444) +zone = ('paz075', 0.0033348745811740271) + +[fips4205109432] +centroid = (0.69846095716112055, -1.3943438186709503) +description = Brownsville borough, PA +station = ('kafj', 0.0056198839090527185) +zone = ('paz075', 0.0020018879421208266) + +[fips4205109434] +centroid = (0.69856014422251145, -1.3939752225862216) +description = Brownsville township, PA +station = ('kagc', 0.0057158065176801777) +zone = ('paz075', 0.0018567838546494368) + +[fips4205110152] +centroid = (0.69957234792220557, -1.3877194214950057) +description = Bullskin township, PA +station = ('klbe', 0.0038014217904950021) +zone = ('paz076', 0.0033684572267370901) + +[fips4205115776] +centroid = (0.69840547314419965, -1.3891021760481908) +description = Connellsville city, PA +station = ('klbe', 0.0053127483994113078) +zone = ('paz076', 0.0024086613762966404) + +[fips4205115784] +centroid = (0.69808180183441726, -1.3884307478849485) +description = Connellsville township, PA +station = ('klbe', 0.0053871154175604277) +zone = ('paz076', 0.0019335951780273927) + +[fips4205118360] +centroid = (0.69895505987236017, -1.3902759099701569) +description = Dawson borough, PA +station = ('klbe', 0.0053603092347447789) +zone = ('paz075', 0.0023074568720336188) + +[fips4205120216] +centroid = (0.69776006784010469, -1.3895381592953389) +description = Dunbar borough, PA +station = ('klbe', 0.0060393539515634816) +zone = ('paz076', 0.0020358813361948942) + +[fips4205120224] +centroid = (0.69735501182730186, -1.3893904520807427) +description = Dunbar township, PA +station = ('klbe', 0.0063492775161388872) +zone = ('paz076', 0.0016627386326112429) + +[fips4205124336] +centroid = (0.69970878030983386, -1.3890557851966727) +description = Everson borough, PA +station = ('klbe', 0.0041907657538172733) +zone = ('paz075', 0.0034970274281422866) + +[fips4205124536] +centroid = (0.69507995769403463, -1.3919696821960474) +description = Fairchance borough, PA +station = ('kmgw', 0.0037565539245738126) +zone = ('paz075', 0.00216607333551654) + +[fips4205125456] +centroid = (0.69989444843566095, -1.3934149195364538) +description = Fayette City borough, PA +station = ('kagc', 0.004474343500679376) +zone = ('paz075', 0.0027997557815764833) + +[fips4205127400] +centroid = (0.69820277060487301, -1.3918256576261727) +description = Franklin township, PA +station = ('kagc', 0.00645352975324386) +zone = ('paz075', 0.001030656809122704) + +[fips4205128792] +centroid = (0.6954842981218442, -1.3926390683240646) +description = Georges township, PA +station = ('kmgw', 0.0038423360821797964) +zone = ('paz075', 0.0017700573786877168) + +[fips4205128856] +centroid = (0.69603168573514718, -1.3939434925004204) +description = German township, PA +station = ('kmgw', 0.0040634650772002935) +zone = ('paz075', 0.001752045221345985) + +[fips4205133896] +centroid = (0.6941758247816241, -1.3866022187875116) +description = Henry Clay township, PA +station = ('k2g4', 0.0036650030472144121) +zone = ('paz076', 0.0022356954132857496) + +[fips4205137872] +centroid = (0.69908430150347034, -1.3931768391731894) +description = Jefferson township, PA +station = ('kagc', 0.0053046002698869015) +zone = ('paz075', 0.0019746475705882355) + +[fips4205145144] +centroid = (0.69943041774743331, -1.3903724790376697) +description = Lower Tyrone township, PA +station = ('klbe', 0.0050543660012715309) +zone = ('paz075', 0.0026391382293286629) + +[fips4205145560] +centroid = (0.69767411037444393, -1.395087102039497) +description = Luzerne township, PA +station = ('kafj', 0.0054506104266738428) +zone = ('paz075', 0.0021959480327780616) + +[fips4205147560] +centroid = (0.69352881377461728, -1.3866945292516497) +description = Markleysburg borough, PA +station = ('k2g4', 0.0031134614396247022) +zone = ('paz076', 0.0028133432678732334) + +[fips4205148000] +centroid = (0.69553185834396103, -1.3946197901322754) +description = Masontown borough, PA +station = ('kmgw', 0.0035118229084166439) +zone = ('paz075', 0.0024726330508984414) + +[fips4205148616] +centroid = (0.69715375791125433, -1.3924333987250097) +description = Menallen township, PA +station = ('kmgw', 0.0054456824401277991) +zone = ('paz075', 0.00014137222233715472) + +[fips4205152] +centroid = (0.71180782156367906, -1.3138194058920551) +description = Belfast CDP, PA +station = ('kabe', 0.0032734219213381844) +zone = ('paz062', 0.00065585214549726426) + +[fips4205153504] +centroid = (0.69944151804147592, -1.3943445342559435) +description = Newell borough, PA +station = ('kagc', 0.0048119229684436653) +zone = ('paz075', 0.0027160974497559068) + +[fips4205154392] +centroid = (0.69488004768151124, -1.3939331077913708) +description = Nicholson township, PA +station = ('kmgw', 0.0029353262027844657) +zone = ('paz075', 0.0026727982657066525) + +[fips4205155464] +centroid = (0.69653477689203458, -1.3905629991788173) +description = North Union township, PA +station = ('kmgw', 0.005568066367098827) +zone = ('paz075', 0.0014906640727725524) + +[fips4205156408] +centroid = (0.69580899917588535, -1.3874406051469996) +description = Ohiopyle borough, PA +station = ('k2g4', 0.0054201332183196746) +zone = ('paz076', 0.00049355993353846351) + +[fips4205159464] +centroid = (0.69991809764702562, -1.3922368048380651) +description = Perry township, PA +station = ('kagc', 0.0047474787903376255) +zone = ('paz075', 0.0026854504480008285) + +[fips4205159520] +centroid = (0.69964621025614993, -1.3919504137611052) +description = Perryopolis borough, PA +station = ('kagc', 0.0050863089249677754) +zone = ('paz075', 0.0024265626693436531) + +[fips4205161864] +centroid = (0.693517189881799, -1.3945270258825322) +description = Point Marion borough, PA +station = ('kmgw', 0.0015098089183637723) +zone = ('wvz022', 0.0026875973546910022) + +[fips4205163904] +centroid = (0.69773589502996458, -1.3936250920849791) +description = Redstone township, PA +station = ('kmgw', 0.0057847692998169086) +zone = ('paz075', 0.0011467522666016342) + +[fips4205167640] +centroid = (0.69898827348802561, -1.3856813307142819) +description = Saltlick township, PA +station = ('klbe', 0.0040893923845249942) +zone = ('paz076', 0.0032319957490225732) + +[fips4205169336] +centroid = (0.69873537527941165, -1.3840447354746868) +description = Seven Springs borough, PA +station = ('klbe', 0.0045420238694134554) +zone = ('paz074', 0.0036468674174477554) + +[fips4205171320] +centroid = (0.69468141175934173, -1.3929261749860178) +description = Smithfield borough, PA +station = ('kmgw', 0.0030271743283717904) +zone = ('paz075', 0.0025991075096641059) + +[fips4205172080] +centroid = (0.69800134215590037, -1.3888525416052779) +description = South Connellsville borough, PA +station = ('klbe', 0.0055889896675518809) +zone = ('paz076', 0.0019617187839001699) + +[fips4205172544] +centroid = (0.69587380325101178, -1.3913933570237462) +description = South Union township, PA +station = ('kmgw', 0.0046607299493916223) +zone = ('paz075', 0.0015199192484002869) + +[fips4205173064] +centroid = (0.69779570746343045, -1.3865022812345424) +description = Springfield township, PA +station = ('klbe', 0.0053089851774842647) +zone = ('paz076', 0.0018865414059431027) + +[fips4205173240] +centroid = (0.69382073754530582, -1.3934961122532565) +description = Springhill township, PA +station = ('kmgw', 0.0020620263949822602) +zone = ('wvz022', 0.0034885704138770193) + +[fips4205174080] +centroid = (0.69596813829708204, -1.3872092443013553) +description = Stewart township, PA +station = ('k2g4', 0.0055036451337023068) +zone = ('paz076', 0.00052830316716966043) + +[fips4205178528] +centroid = (0.69637450330682393, -1.3914543911876884) +description = Uniontown city, PA +station = ('kmgw', 0.005057893886872152) +zone = ('paz075', 0.0010668655130331524) + +[fips4205179344] +centroid = (0.6994963562865737, -1.3891878542611711) +description = Upper Tyrone township, PA +station = ('klbe', 0.004421892663041385) +zone = ('paz075', 0.0032762939510927497) + +[fips4205179768] +centroid = (0.69872396082610366, -1.3903834047987873) +description = Vanderbilt borough, PA +station = ('klbe', 0.0055913817828323479) +zone = ('paz075', 0.0020823139302289743) + +[fips4205181232] +centroid = (0.69998651455370375, -1.393079886133241) +description = Washington township, PA +station = ('kagc', 0.0044539679138391368) +zone = ('paz075', 0.0028208628769641237) + +[fips4205184344] +centroid = (0.69429553691501833, -1.3894938802922157) +description = Wharton township, PA +station = ('k2g4', 0.0050568475806126809) +zone = ('paz076', 0.0022996356669042085) + +[fips4205216] +centroid = (0.70842509422063371, -1.3992967663821374) +description = Bell Acres borough, PA +station = ('kpit', 0.0020185168204498332) +zone = ('paz020', 0.0028304126913194644) + +[fips4205256] +centroid = (0.71408615691593991, -1.3573136217169921) +description = Bellefonte borough, PA +station = ('kunv', 0.0015535749300983905) +zone = ('paz019', 0.0011199667651688168) + +[fips4205288] +centroid = (0.70032137342399137, -1.3939235957469476) +description = Belle Vernon borough, PA +station = ('kagc', 0.0039768315856612444) +zone = ('paz075', 0.0033348745811740271) + +[fips42053] +centroid = (0.72454383818133206, -1.3831682834842129) +description = Forest County, PA +station = ('kduj', 0.0074973150094437332) +zone = ('paz009', 0.00017781393526998188) + +[fips4205304] +centroid = (0.70871857133435656, -1.3564660898322234) +description = Belleville CDP, PA +station = ('kunv', 0.0045842622348658364) +zone = ('paz027', 0.0013621767972472995) + +[fips4205304224] +centroid = (0.72198186937232967, -1.3812824377741404) +description = Barnett township, PA +station = ('kduj', 0.0046586235876589716) +zone = ('paz009', 0.0028427780589580891) + +[fips4205312] +centroid = (0.70675275463795773, -1.3972293017101023) +description = Bellevue borough, PA +station = ('kpit', 0.002369882134959791) +zone = ('paz021', 0.0010776991937612552) + +[fips4205330808] +centroid = (0.723913163456124, -1.384719322683875) +description = Green township, PA +station = ('kfkl', 0.0071019363504343123) +zone = ('paz009', 0.0014798625126092883) + +[fips4205332704] +centroid = (0.72561733784435622, -1.3868390425137147) +description = Harmony township, PA +station = ('kfkl', 0.0062802360543078835) +zone = ('paz009', 0.0031164771120656943) + +[fips4205334240] +centroid = (0.72578474982620755, -1.3851737715145094) +description = Hickory township, PA +station = ('kfkl', 0.0074435315033366855) +zone = ('paz009', 0.0020885530171290238) + +[fips4205335992] +centroid = (0.72570168960710513, -1.3801976109242708) +description = Howe township, PA +station = ('kbfd', 0.0069717656885254185) +zone = ('paz009', 0.0023514410361196456) + +[fips4205338016] +centroid = (0.72388698351734404, -1.3805107578986637) +description = Jenks township, PA +station = ('kduj', 0.0058229548506139716) +zone = ('paz009', 0.0019274070162032218) + +[fips4205339760] +centroid = (0.72504940770575732, -1.3835448208170382) +description = Kingsley township, PA +station = ('kduj', 0.0080666406218543214) +zone = ('paz009', 0.0006846319111656785) + +[fips4205376848] +centroid = (0.72427388810592608, -1.3866529380555745) +description = Tionesta borough, PA +station = ('kfkl', 0.0058141584538981923) +zone = ('paz009', 0.0028003214660537274) + +[fips4205376864] +centroid = (0.72374283677442186, -1.3868568099655001) +description = Tionesta township, PA +station = ('kfkl', 0.0055074108226686441) +zone = ('paz009', 0.0030474808243999272) + +[fips4205384] +centroid = (0.70861987296515638, -1.3671913300719465) +description = Bellwood borough, PA +station = ('kaoo', 0.005257399021718308) +zone = ('paz025', 0.0020965079638911028) + +[fips4205400] +centroid = (0.70304064875847605, -1.3767953184403108) +description = Belmont CDP, PA +station = ('kjst', 0.00092023384220438426) +zone = ('paz024', 0.0043741725540289312) + +[fips42055] +centroid = (0.69685213010992464, -1.3565481726669448) +description = Franklin County, PA +station = ('khgr', 0.0039581950232300623) +zone = ('paz036', 4.6205648846862729e-05) + +[fips4205502696] +centroid = (0.69511496899882974, -1.3558184854132711) +description = Antrim township, PA +station = ('khgr', 0.0023209851381642208) +zone = ('paz036', 0.001825793467887003) + +[fips4205504] +centroid = (0.70694838859381381, -1.3976969801364667) +description = Ben Avon borough, PA +station = ('kpit', 0.0020426084151236265) +zone = ('paz021', 0.001482545683009416) + +[fips4205512536] +centroid = (0.69693498088951689, -1.3553466356499944) +description = Chambersburg borough, PA +station = ('khgr', 0.0041713866815385791) +zone = ('paz036', 0.00088009608149536886) + +[fips4205520] +centroid = (0.70707724625248869, -1.3975390103858687) +description = Ben Avon Heights borough, PA +station = ('kpit', 0.0021870326054916323) +zone = ('paz021', 0.001438889796366771) + +[fips4205525176] +centroid = (0.70109755624893833, -1.3566335541739525) +description = Fannett township, PA +station = ('khgr', 0.0082020140989696819) +zone = ('paz036', 0.0042326292934115415) + +[fips4205530896] +centroid = (0.69447820307453212, -1.3565863779242711) +description = Greencastle borough, PA +station = ('khgr', 0.0015850113759849863) +zone = ('paz036', 0.0023892598346269755) + +[fips4205530944] +centroid = (0.69735900863128886, -1.3538106935483618) +description = Greene township, PA +station = ('kryt', 0.0043500842884306697) +zone = ('paz036', 0.0021131003021983776) + +[fips4205531720] +centroid = (0.69611780028044057, -1.3544009813546789) +description = Guilford township, PA +station = ('kryt', 0.0035449484760867048) +zone = ('paz036', 0.0017692690589397951) + +[fips4205532152] +centroid = (0.6971405283155242, -1.3566922495966971) +description = Hamilton township, PA +station = ('khgr', 0.0042448227250463794) +zone = ('paz036', 0.00031469227443935968) + +[fips4205536] +centroid = (0.69780490534858841, -1.3482548916602433) +description = Bendersville borough, PA +station = ('kryt', 0.0050093863681408765) +zone = ('paz064', 0.001961547897472422) + +[fips4205542888] +centroid = (0.69876445246474983, -1.3566010212366952) +description = Letterkenny township, PA +station = ('khgr', 0.00586925730892992) +zone = ('paz036', 0.0018999920842719777) + +[fips4205545496] +centroid = (0.70030645085888676, -1.3548757458178065) +description = Lurgan township, PA +station = ('kryt', 0.0073825833171437) +zone = ('paz036', 0.0036556743401338493) + +[fips4205548704] +centroid = (0.69519755797903404, -1.3596619273189654) +description = Mercersburg borough, PA +station = ('khgr', 0.0032361784202578621) +zone = ('paz036', 0.0029506933785787104) + +[fips4205548888] +centroid = (0.69890303160735812, -1.3586911402824211) +description = Metal township, PA +station = ('khgr', 0.0061981453625674955) +zone = ('paz036', 0.0026439187371086006) + +[fips4205550544] +centroid = (0.69535313662855691, -1.35360553009479) +description = Mont Alto borough, PA +station = ('kryt', 0.002567136410500841) +zone = ('paz036', 0.0026817263275880966) + +[fips4205550616] +centroid = (0.694177168685148, -1.3595943656236207) +description = Montgomery township, PA +station = ('khgr', 0.0025665391579234127) +zone = ('mdz003', 0.0031737068140508685) + +[fips4205557112] +centroid = (0.69915779731827177, -1.35451776133493) +description = Orrstown borough, PA +station = ('kryt', 0.0062145839362317918) +zone = ('paz036', 0.002745135931623384) + +[fips4205559600] +centroid = (0.69598002398928815, -1.3592909401331614) +description = Peters township, PA +station = ('khgr', 0.0036699772491858265) +zone = ('paz036', 0.0023237408447723132) + +[fips4205563200] +centroid = (0.69482761799078141, -1.3535305158435391) +description = Quincy township, PA +station = ('kryt', 0.0021549193951866646) +zone = ('paz036', 0.0030526574891766838) + +[fips4205567400] +centroid = (0.69683031349427471, -1.357955571269168) +description = St. Thomas township, PA +station = ('khgr', 0.0040506045037180744) +zone = ('paz036', 0.0011238351701544458) + +[fips4205570352] +centroid = (0.69893081724904993, -1.3533109185170533) +description = Shippensburg borough, PA +station = ('kryt', 0.0057015447853018854) +zone = ('paz036', 0.0031934765966237857) + +[fips4205571912] +centroid = (0.69853188734192151, -1.353438973324272) +description = Southampton township, PA +station = ('kryt', 0.0053447804219321137) +zone = ('paz036', 0.0028711721729211843) + +[fips4205580992] +centroid = (0.69429499586295018, -1.3615794682082538) +description = Warren township, PA +station = ('khgr', 0.0040026294321495511) +zone = ('paz035', 0.0028663517366110665) + +[fips4205581240] +centroid = (0.69376980883773265, -1.3536215522173234) +description = Washington township, PA +station = ('krsp', 0.0020999647468810142) +zone = ('paz036', 0.003800326628119825) + +[fips4205581824] +centroid = (0.69381122550088237, -1.354064638954527) +description = Waynesboro borough, PA +station = ('krsp', 0.0023381928403545431) +zone = ('paz036', 0.0035782939917468524) + +[fips4205648] +centroid = (0.70167021622981018, -1.3775769990524014) +description = Benson borough, PA +station = ('kjst', 0.0023640974946323931) +zone = ('paz074', 0.0040856345950213173) + +[fips4205672] +centroid = (0.70018850150803702, -1.3963405451484017) +description = Bentleyville borough, PA +station = ('kafj', 0.0037320031869226247) +zone = ('paz029', 0.0034835447293004918) + +[fips4205680] +centroid = (0.71900044558419529, -1.3331567289796487) +description = Benton borough, PA +station = ('kseg', 0.0091723318558163871) +zone = ('paz053', 0.0025819509782790909) + +[fips42057] +centroid = (0.69657401189361934, -1.363496886924495) +description = Fulton County, PA +station = ('khgr', 0.0063853898145048334) +zone = ('paz035', 0.00029149439866069527) + +[fips4205703704] +centroid = (0.69585416829692681, -1.3619595834660458) +description = Ayr township, PA +station = ('khgr', 0.005007189401036196) +zone = ('paz035', 0.0014290070264226947) + +[fips4205705144] +centroid = (0.69605519532017157, -1.3638093532204794) +description = Belfast township, PA +station = ('khgr', 0.0063088824319244962) +zone = ('paz035', 0.00086272278708007149) + +[fips4205706032] +centroid = (0.69423078519976933, -1.3651486665285824) +description = Bethel township, PA +station = ('kmrb', 0.0072854755802013752) +zone = ('paz035', 0.0029559018698791157) + +[fips4205709568] +centroid = (0.69704195211937159, -1.3649586874395028) +description = Brush Creek township, PA +station = ('kaoo', 0.0064947603309015072) +zone = ('paz035', 0.0012751622840809457) + +[fips4205720112] +centroid = (0.69917266752349883, -1.3605950152436666) +description = Dublin township, PA +station = ('kaoo', 0.0063783357370611931) +zone = ('paz035', 0.0031361177426223472) + +[fips4205743200] +centroid = (0.69772023942657413, -1.3628192453891157) +description = Licking Creek township, PA +station = ('kaoo', 0.0064458134042710211) +zone = ('paz035', 0.00096772897209092843) + +[fips4205746000] +centroid = (0.69694204947298743, -1.361281453238476) +description = McConnellsburg borough, PA +station = ('khgr', 0.0053611883997603865) +zone = ('paz035', 0.0015660599464039021) + +[fips4205776] +centroid = (0.69676201876064425, -1.3779524368277978) +description = Berlin borough, PA +station = ('kcbe', 0.0059217785876875479) +zone = ('paz033', 0.001365753587302431) + +[fips4205776176] +centroid = (0.69951881867404686, -1.3623106040852069) +description = Taylor township, PA +station = ('kaoo', 0.0051978682246118218) +zone = ('paz035', 0.0027961074928359929) + +[fips4205776488] +centroid = (0.69439784811577021, -1.3633290211570381) +description = Thompson township, PA +station = ('khgr', 0.0053119887985901273) +zone = ('paz035', 0.0024335956225225515) + +[fips4205776985] +centroid = (0.69768142330400984, -1.3606016649481167) +description = Todd township, PA +station = ('khgr', 0.0056450687578333061) +zone = ('paz035', 0.0022495603445726437) + +[fips4205778320] +centroid = (0.6941131151015999, -1.3665755430052577) +description = Union township, PA +station = ('kcbe', 0.006762912180822772) +zone = ('paz035', 0.0036935026759793814) + +[fips4205779644] +centroid = (0.69869271943249289, -1.3647182857883331) +description = Valley-Hi borough, PA +station = ('kaoo', 0.0049591873312062884) +zone = ('paz035', 0.0021482137436580925) + +[fips4205782152] +centroid = (0.69971351015210681, -1.3637986194455798) +description = Wells township, PA +station = ('kaoo', 0.0043481293881184506) +zone = ('paz035', 0.0029054405645668724) + +[fips4205848] +centroid = (0.70570222350788991, -1.3283905489517176) +description = Bernville borough, PA +station = ('krdg', 0.002249477951751106) +zone = ('paz060', 0.0024788530922601041) + +[fips4205856] +centroid = (0.70865490172324386, -1.3405892310525589) +description = Berrysburg borough, PA +station = ('kseg', 0.0038046370976683314) +zone = ('paz057', 0.0032969630903883634) + +[fips4205888] +centroid = (0.71654890375696656, -1.3308308159519786) +description = Berwick borough, PA +station = ('kavp', 0.0083533936672325493) +zone = ('paz053', 0.0020329859141844735) + +[fips42059] +centroid = (0.69549595692124744, -1.4002025049974598) +description = Greene County, PA +station = ('kafj', 0.0050223409035486128) +zone = ('paz031', 9.2031038507630678e-05) + +[fips4205900740] +centroid = (0.69504636010593379, -1.4043006777074827) +description = Aleppo township, PA +station = ('kafj', 0.0059083882852023232) +zone = ('paz031', 0.0032286485745885722) + +[fips4205904] +centroid = (0.69880878382775058, -1.3167128127260113) +description = Berwyn CDP, PA +station = ('klom', 0.0029256017747842384) +zone = ('paz070', 0.0022074852601235819) + +[fips4205911328] +centroid = (0.69634439637722712, -1.3958268598429548) +description = Carmichaels borough, PA +station = ('kmgw', 0.0043915931508352359) +zone = ('paz031', 0.0034074465828696707) + +[fips4205912032] +centroid = (0.69596091263397875, -1.401415421561133) +description = Center township, PA +station = ('kafj', 0.0045006856145504044) +zone = ('paz031', 0.0010406255330570253) + +[fips4205913896] +centroid = (0.69768482669605114, -1.3970296360436742) +description = Clarksville borough, PA +station = ('kafj', 0.0042339609146600666) +zone = ('paz031', 0.0031893556958283542) + +[fips4205917648] +centroid = (0.69620410681195177, -1.3961472499337435) +description = Cumberland township, PA +station = ('kmgw', 0.0043057333159841841) +zone = ('paz031', 0.0031376005751737705) + +[fips4205920296] +centroid = (0.69383635824211121, -1.3961371270240819) +description = Dunkard township, PA +station = ('kmgw', 0.0020814161612605774) +zone = ('wvz022', 0.0022746544550614205) + +[fips4205927408] +centroid = (0.69593019483914376, -1.399513204662677) +description = Franklin township, PA +station = ('kafj', 0.0047111236999987658) +zone = ('paz031', 0.00060360704386493993) + +[fips4205927800] +centroid = (0.69376111709805766, -1.4035854941398926) +description = Freeport township, PA +station = ('kafj', 0.0069412030775129916) +zone = ('paz031', 0.0032030514784354524) + +[fips4205929152] +centroid = (0.69376356055901045, -1.4023004082116495) +description = Gilmore township, PA +station = ('kafj', 0.0067473813542658495) +zone = ('paz031', 0.0024534548584412281) + +[fips4205930640] +centroid = (0.6969487166307301, -1.4029523934070245) +description = Gray township, PA +station = ('kafj', 0.0037554809780056425) +zone = ('paz031', 0.0025463650692797097) + +[fips4205930952] +centroid = (0.69502354865261029, -1.3967222486558131) +description = Greene township, PA +station = ('kmgw', 0.0033418208166449501) +zone = ('wvz022', 0.0033553153361048772) + +[fips4205931192] +centroid = (0.69450358016185609, -1.3947455236515893) +description = Greensboro borough, PA +station = ('kmgw', 0.0024810115956896022) +zone = ('paz075', 0.0033208505276983717) + +[fips4205936] +centroid = (0.71518629030334957, -1.4047932096223954) +description = Bessemer borough, PA +station = ('kucp', 0.0013005692395442856) +zone = ('paz013', 0.0020505802728607021) + +[fips4205937376] +centroid = (0.69503239747191781, -1.402652284042144) +description = Jackson township, PA +station = ('kafj', 0.0055380445856123995) +zone = ('paz031', 0.0019951541502026111) + +[fips4205937880] +centroid = (0.69691782430296978, -1.3972706834666673) +description = Jefferson borough, PA +station = ('kafj', 0.0046507583459908259) +zone = ('paz031', 0.0025851093803701793) + +[fips4205937888] +centroid = (0.69679746639775231, -1.3971150699105592) +description = Jefferson township, PA +station = ('kafj', 0.0048197622493198452) +zone = ('paz031', 0.0026302589128857257) + +[fips4205950400] +centroid = (0.69489273622517334, -1.3953288475941907) +description = Monongahela township, PA +station = ('kmgw', 0.002897405581198738) +zone = ('paz075', 0.0033087580301892189) + +[fips4205950992] +centroid = (0.69733935622391141, -1.3980978124524797) +description = Morgan township, PA +station = ('kafj', 0.0039245350345205165) +zone = ('paz031', 0.0023627521875122779) + +[fips4205951064] +centroid = (0.69765972886140748, -1.4016470791127504) +description = Morris township, PA +station = ('kafj', 0.0028191373614008244) +zone = ('paz031', 0.0023742621069162109) + +[fips4205959472] +centroid = (0.69404366845066312, -1.398389858396216) +description = Perry township, PA +station = ('kmgw', 0.0034164253596126928) +zone = ('paz031', 0.0020484979582592352) + +[fips4205964432] +centroid = (0.69716955314098494, -1.3962298040073629) +description = Rices Landing borough, PA +station = ('kafj', 0.0050347125512136288) +zone = ('paz031', 0.0034042180686752735) + +[fips4205964512] +centroid = (0.69660553253991042, -1.4041845784056399) +description = Richhill township, PA +station = ('kafj', 0.0044767987480087354) +zone = ('paz031', 0.0032586463691030815) + +[fips4205973248] +centroid = (0.69401748851188316, -1.4044109127030386) +description = Springhill township, PA +station = ('kafj', 0.0068933063498044502) +zone = ('wvz004', 0.003126083503238215) + +[fips4205976] +centroid = (0.72630826133534321, -1.3140324233272609) +description = Bethany borough, PA +station = ('kavp', 0.0076092320677610976) +zone = ('paz072', 0.0024480223802845059) + +[fips4205981248] +centroid = (0.69760496042947995, -1.3998415534548547) +description = Washington township, PA +station = ('kafj', 0.003039619362608428) +zone = ('paz031', 0.0020390403368065698) + +[fips4205981768] +centroid = (0.69409843688259065, -1.4003831640283337) +description = Wayne township, PA +station = ('kmgw', 0.004764018687584224) +zone = ('paz031', 0.0014920370661827985) + +[fips4205981832] +centroid = (0.6963565962286985, -1.3995024185278997) +description = Waynesburg borough, PA +station = ('kafj', 0.0043052769238468378) +zone = ('paz031', 0.0009235269934378947) + +[fips4205984608] +centroid = (0.6949632649802463, -1.3986628802511054) +description = Whiteley township, PA +station = ('kmgw', 0.0041747528940649951) +zone = ('paz031', 0.0013003723584209335) + +[fips4206000] +centroid = (0.70642730309233837, -1.3315051239084865) +description = Bethel CDP, PA +station = ('krdg', 0.0046914195434160401) +zone = ('paz059', 0.0029235671852616586) + +[fips4206064] +centroid = (0.70378463025872373, -1.3968981429378289) +description = Bethel Park municipality, PA +station = ('kagc', 0.0016564059099691932) +zone = ('paz021', 0.0026333334644877979) + +[fips4206088] +centroid = (0.70906486211124475, -1.3154179704072493) +description = Bethlehem city, PA +station = ('kabe', 0.00116262670691056) +zone = ('paz062', 0.0023711138734645071) + +[fips42061] +centroid = (0.70550259274804672, -1.3608085039177706) +description = Huntingdon County, PA +station = ('kaoo', 0.0050977304775513708) +zone = ('paz026', 0.00019164038976462105) + +[fips4206100756] +centroid = (0.70787557730564332, -1.363096630567135) +description = Alexandria borough, PA +station = ('kaoo', 0.0053508153638151213) +zone = ('paz026', 0.0029247230102720551) + +[fips4206104288] +centroid = (0.70936076523262792, -1.3599480915031223) +description = Barree township, PA +station = ('kunv', 0.0037207854612488233) +zone = ('paz026', 0.0040355054335866562) + +[fips4206106560] +centroid = (0.70942668631847572, -1.364772164102342) +description = Birmingham borough, PA +station = ('kunv', 0.0057814737202031017) +zone = ('paz025', 0.0035341260620202733) + +[fips4206108128] +centroid = (0.70632185029893302, -1.3595059996035923) +description = Brady township, PA +station = ('kunv', 0.0066705845759035725) +zone = ('paz026', 0.0014747547749258071) + +[fips4206108896] +centroid = (0.70164295418689404, -1.3638101037120578) +description = Broad Top City borough, PA +station = ('kaoo', 0.0029116453688482475) +zone = ('paz026', 0.0043228701716691888) + +[fips4206111208] +centroid = (0.70201493621037159, -1.3643181341507282) +description = Carbon township, PA +station = ('kaoo', 0.0023796818740430634) +zone = ('paz026', 0.0042207481656603664) + +[fips4206111600] +centroid = (0.70317236875712408, -1.362092455382) +description = Cass township, PA +station = ('kaoo', 0.0036596419196577722) +zone = ('paz026', 0.0023796906964960109) + +[fips4206111632] +centroid = (0.70324265316610191, -1.3618320871641876) +description = Cassville borough, PA +station = ('kaoo', 0.003854930262665133) +zone = ('paz026', 0.0022518908498745543) + +[fips4206113944] +centroid = (0.70128090308686031, -1.3617061616586561) +description = Clay township, PA +station = ('kaoo', 0.0044693141623707126) +zone = ('paz026', 0.0041610251346183048) + +[fips4206114640] +centroid = (0.70181801071086902, -1.3648470736338378) +description = Coalmont borough, PA +station = ('kaoo', 0.0021948351132297186) +zone = ('paz026', 0.0046235792585901728) + +[fips4206117280] +centroid = (0.7023725192675202, -1.3597677291782213) +description = Cromwell township, PA +station = ('kaoo', 0.0055198540007735837) +zone = ('paz026', 0.0031856948461239736) + +[fips4206120120] +centroid = (0.7007147182775133, -1.3586518703742512) +description = Dublin township, PA +station = ('kaoo', 0.0068221633874325921) +zone = ('paz036', 0.0041889735189243691) + +[fips4206120152] +centroid = (0.70171498392512377, -1.3644688258783455) +description = Dudley borough, PA +station = ('kaoo', 0.0024755196977997505) +zone = ('paz026', 0.0045312795433919686) + +[fips4206127416] +centroid = (0.71018047656911965, -1.3624695337668935) +description = Franklin township, PA +station = ('kunv', 0.003968320295248305) +zone = ('paz026', 0.0048947464470043668) + +[fips4206133808] +centroid = (0.70686829543443985, -1.3603087463397543) +description = Henderson township, PA +station = ('kunv', 0.0062138421676469196) +zone = ('paz026', 0.0015580449610796503) + +[fips4206135688] +centroid = (0.70288424980420483, -1.3653787183772879) +description = Hopewell township, PA +station = ('kaoo', 0.0012456680422694866) +zone = ('paz025', 0.0039716658536978148) + +[fips4206136368] +centroid = (0.70692692104401433, -1.3613313696550831) +description = Huntingdon borough, PA +station = ('kaoo', 0.0055268064616479963) +zone = ('paz026', 0.0015345754024992163) + +[fips4206137384] +centroid = (0.70989124060547903, -1.3579574911313452) +description = Jackson township, PA +station = ('kunv', 0.0031321754441101398) +zone = ('paz027', 0.0027259956670192685) + +[fips4206138608] +centroid = (0.70545091354889522, -1.3616936476479196) +description = Juniata township, PA +station = ('kaoo', 0.0044699117922318227) +zone = ('paz026', 0.00050792328582628958) + +[fips4206143424] +centroid = (0.70400412286545444, -1.3645977533501905) +description = Lincoln township, PA +station = ('kaoo', 0.0018555046378395976) +zone = ('paz026', 0.0030607516156709691) + +[fips4206144344] +centroid = (0.70837823213021767, -1.3621298752411628) +description = Logan township, PA +station = ('kunv', 0.0052595109775385009) +zone = ('paz026', 0.0030843383312356542) + +[fips4206147248] +centroid = (0.70497171594946761, -1.3603386612831336) +description = Mapleton borough, PA +station = ('kaoo', 0.0052398377751390517) +zone = ('paz026', 0.00068406925378395353) + +[fips4206147544] +centroid = (0.70483648783902308, -1.3642995813007797) +description = Marklesburg borough, PA +station = ('kaoo', 0.002456961554149424) +zone = ('paz026', 0.0025559929864371407) + +[fips4206149552] +centroid = (0.70575983682649823, -1.360151125655007) +description = Mill Creek borough, PA +station = ('kaoo', 0.0056598673036197394) +zone = ('paz026', 0.00075422050011718573) + +[fips4206149624] +centroid = (0.708175861203449, -1.3591098098633896) +description = Miller township, PA +station = ('kunv', 0.0047993833951643396) +zone = ('paz026', 0.0031274293957668023) + +[fips4206151080] +centroid = (0.70813751631978261, -1.3641875137095092) +description = Morris township, PA +station = ('kaoo', 0.0051925378260277771) +zone = ('paz025', 0.0029484654371291215) + +[fips4206151984] +centroid = (0.70483514393549906, -1.3592889504578141) +description = Mount Union borough, PA +station = ('kaoo', 0.0059717638515655921) +zone = ('paz026', 0.0014441002204112021) + +[fips4206156808] +centroid = (0.70761536616746346, -1.3607862160632227) +description = Oneida township, PA +station = ('kunv', 0.0055722097861768969) +zone = ('paz026', 0.0022133402739185439) + +[fips4206156928] +centroid = (0.70237150697655393, -1.3594894887888684) +description = Orbisonia borough, PA +station = ('kaoo', 0.0057289754967312853) +zone = ('paz026', 0.0032569287826763852) + +[fips4206158832] +centroid = (0.70475635977306406, -1.3634384358478457) +description = Penn township, PA +station = ('kaoo', 0.0029706041474968125) +zone = ('paz026', 0.0019479950813752244) + +[fips4206159616] +centroid = (0.70812542118806632, -1.3622402149564738) +description = Petersburg borough, PA +station = ('kunv', 0.0055213176654369967) +zone = ('paz026', 0.0028677236319949789) + +[fips4206162160] +centroid = (0.70755344188560265, -1.36318850469896) +description = Porter township, PA +station = ('kaoo', 0.0050432681964608893) +zone = ('paz026', 0.0027008360216406822) + +[fips4206165496] +centroid = (0.70233914857222213, -1.3596031271764655) +description = Rockhill borough, PA +station = ('kaoo', 0.005649488098526426) +zone = ('paz026', 0.0032572217149583983) + +[fips4206167632] +centroid = (0.70182755766187743, -1.3614656203811464) +description = Saltillo borough, PA +station = ('kaoo', 0.0044124013047157308) +zone = ('paz026', 0.0035976253677446422) + +[fips4206169456] +centroid = (0.70127851198578506, -1.3590216183762862) +description = Shade Gap borough, PA +station = ('kaoo', 0.0063546915382682893) +zone = ('paz026', 0.0044056939058102502) + +[fips4206170400] +centroid = (0.70415847978450097, -1.3585408325272392) +description = Shirley township, PA +station = ('kaoo', 0.0064096617090349172) +zone = ('paz026', 0.002270933006155705) + +[fips4206170408] +centroid = (0.70332248452608814, -1.35919992121267) +description = Shirleysburg borough, PA +station = ('kaoo', 0.0058604496634474092) +zone = ('paz026', 0.0025096994344842418) + +[fips4206171] +centroid = (0.71066014540744515, -1.3330810515032823) +description = Beurys Lake CDP, PA +station = ('kmui', 0.0055482922248197043) +zone = ('paz058', 0.0021785347535942484) + +[fips4206171328] +centroid = (0.70647685298980256, -1.3618597855394168) +description = Smithfield township, PA +station = ('kaoo', 0.004930425747944207) +zone = ('paz026', 0.0012404718482692974) + +[fips4206173072] +centroid = (0.7007095521029274, -1.3604468891500496) +description = Springfield township, PA +station = ('kaoo', 0.0055874538162155535) +zone = ('paz035', 0.004458013221539347) + +[fips4206173488] +centroid = (0.70911872297196143, -1.3638141005160449) +description = Spruce Creek township, PA +station = ('kunv', 0.0054402764071547994) +zone = ('paz025', 0.0037795436471717487) + +[fips4206176312] +centroid = (0.7026011923061164, -1.3574224604491465) +description = Tell township, PA +station = ('kaoo', 0.0072586982555206724) +zone = ('paz026', 0.0039299020078148676) + +[fips4206176632] +centroid = (0.70156921402599726, -1.3610413133866939) +description = Three Springs borough, PA +station = ('kaoo', 0.0048082095576206388) +zone = ('paz026', 0.0038405218082102188) + +[fips4206177000] +centroid = (0.70275642188978882, -1.3631992035672746) +description = Todd township, PA +station = ('kaoo', 0.0028764696200731803) +zone = ('paz026', 0.0031268126995788164) + +[fips4206178328] +centroid = (0.70472257019874551, -1.3610505985383146) +description = Union township, PA +station = ('kaoo', 0.0046480106189458054) +zone = ('paz026', 0.00068735602725478108) + +[fips4206180560] +centroid = (0.70630589798956978, -1.3633854651050474) +description = Walker township, PA +station = ('kaoo', 0.0039665438714388667) +zone = ('paz026', 0.0020050550222147452) + +[fips4206181104] +centroid = (0.71016290110355196, -1.3639228694350292) +description = Warriors Mark township, PA +station = ('kunv', 0.0048246353441857986) +zone = ('paz025', 0.0045080256276170136) + +[fips4206182352] +centroid = (0.70905814259362454, -1.3612675080577525) +description = West township, PA +station = ('kunv', 0.004353177949446862) +zone = ('paz026', 0.0036529324341752008) + +[fips4206186080] +centroid = (0.70122847339613048, -1.3630938380403319) +description = Wood township, PA +station = ('kaoo', 0.0035980278887515912) +zone = ('paz035', 0.0044004065377761439) + +[fips4206236] +centroid = (0.71994393567123849, -1.3173687947253734) +description = Big Bass Lake CDP, PA +station = ('kmpo', 0.0023936014105408474) +zone = ('paz044', 0.0036825825355653679) + +[fips4206240] +centroid = (0.71248947735633794, -1.4025060778107046) +description = Big Beaver borough, PA +station = ('kbvi', 0.0011256406087465211) +zone = ('paz020', 0.0024518990771103567) + +[fips4206280] +centroid = (0.71536663517495802, -1.3667557133439414) +description = Bigler CDP, PA +station = ('kfig', 0.0017855066685653377) +zone = ('paz017', 0.0021818357031224982) + +[fips4206296] +centroid = (0.69691592189408502, -1.3482026015958537) +description = Biglerville borough, PA +station = ('kryt', 0.0042763618166827512) +zone = ('paz064', 0.0010951966059635704) + +[fips42063] +centroid = (0.70950133405058347, -1.3803380575691788) +description = Indiana County, PA +station = ('kidi', 0.00035635415827568842) +zone = ('paz023', 1.167401134204469e-05) + +[fips4206303032] +centroid = (0.70604907279013873, -1.3793764858710849) +description = Armagh borough, PA +station = ('kidi', 0.0032618270691708307) +zone = ('paz023', 0.0035400081037293999) + +[fips4206303064] +centroid = (0.70905201648795002, -1.3837306809290828) +description = Armstrong township, PA +station = ('kidi', 0.0024134970492236786) +zone = ('paz023', 0.0026159539346168061) + +[fips4206304056] +centroid = (0.71302777180423804, -1.3761935463675155) +description = Banks township, PA +station = ('kidi', 0.0050680074337798968) +zone = ('paz023', 0.0047124319557203653) + +[fips4206306752] +centroid = (0.7068020427360342, -1.3832562480785133) +description = Black Lick township, PA +station = ('kidi', 0.0031448666972657109) +zone = ('paz023', 0.0035021361837241616) + +[fips4206306904] +centroid = (0.70568007527968213, -1.3833459056421884) +description = Blairsville borough, PA +station = ('klbe', 0.0032015223060656325) +zone = ('paz074', 0.0034294605491390615) + +[fips4206309624] +centroid = (0.7074456503509996, -1.3798808162117413) +description = Brush Valley township, PA +station = ('kidi', 0.0018136736878182661) +zone = ('paz023', 0.002096197498184349) + +[fips4206310104] +centroid = (0.70708752624178284, -1.3780495993072561) +description = Buffington township, PA +station = ('kidi', 0.0028326878537121261) +zone = ('paz023', 0.0029835377208226421) + +[fips4206310352] +centroid = (0.70596859565832926, -1.3825049012888224) +description = Burrell township, PA +station = ('kidi', 0.0035415992519687617) +zone = ('paz074', 0.0037091576443294581) + +[fips4206311120] +centroid = (0.71323363338951073, -1.3779590167190778) +description = Canoe township, PA +station = ('kidi', 0.004500750348798559) +zone = ('paz023', 0.0041338077855453412) + +[fips4206312040] +centroid = (0.70760019925626361, -1.3820801405087644) +description = Center township, PA +station = ('kidi', 0.001963082952157314) +zone = ('paz023', 0.0023259552677973336) + +[fips4206313072] +centroid = (0.70914708457230624, -1.3789552855627012) +description = Cherryhill township, PA +station = ('kidi', 0.0012149699603629233) +zone = ('paz023', 0.0011106547538776302) + +[fips4206313120] +centroid = (0.7107983754842031, -1.3755374771016908) +description = Cherry Tree borough, PA +station = ('kidi', 0.0041331585148895534) +zone = ('paz024', 0.0042284475442614143) + +[fips4206314520] +centroid = (0.70979926175389885, -1.3790475611202542) +description = Clymer borough, PA +station = ('kidi', 0.0012982805968993381) +zone = ('paz023', 0.0010193780847393922) + +[fips4206315560] +centroid = (0.7070283770334328, -1.3855838017156803) +description = Conemaugh township, PA +station = ('klbe', 0.0039547390306791099) +zone = ('paz073', 0.0038026382717713672) + +[fips4206317024] +centroid = (0.7100336594724419, -1.382189293400184) +description = Creekside borough, PA +station = ('kidi', 0.001501911435143077) +zone = ('paz023', 0.0014981617668014928) + +[fips4206321456] +centroid = (0.71194078074609601, -1.3796200291149081) +description = East Mahoning township, PA +station = ('kidi', 0.002845094444829882) +zone = ('paz023', 0.0024878994103148537) + +[fips4206322048] +centroid = (0.70592012786500136, -1.3790127418016769) +description = East Wheatfield township, PA +station = ('kjst', 0.0032760351078789172) +zone = ('paz023', 0.0037311661864421128) + +[fips4206324040] +centroid = (0.70998063636976616, -1.3817034286430139) +description = Ernest borough, PA +station = ('kidi', 0.0011793178856874184) +zone = ('paz023', 0.0011368985929914033) + +[fips4206329512] +centroid = (0.71243898498107772, -1.3758367487085303) +description = Glen Campbell borough, PA +station = ('kidi', 0.0048345653584730332) +zone = ('paz023', 0.0044933940846246931) + +[fips4206330416] +centroid = (0.71182497815022616, -1.3778898667741137) +description = Grant township, PA +station = ('kidi', 0.0033241342951124903) +zone = ('paz023', 0.0029641381009471363) + +[fips4206330816] +centroid = (0.71015361595193138, -1.3770884639414755) +description = Green township, PA +station = ('kidi', 0.002802510724556295) +zone = ('paz023', 0.0025460377860272469) + +[fips4206335408] +centroid = (0.70756932438179587, -1.3816017632140851) +description = Homer City borough, PA +station = ('kidi', 0.0018009045463224039) +zone = ('paz023', 0.0021678840186596655) + +[fips4206336816] +centroid = (0.70898682844038807, -1.3815243404084667) +description = Indiana borough, PA +station = ('kidi', 0.00076170790440998942) +zone = ('paz023', 0.001043217584580052) + +[fips4206344] +centroid = (0.71507403072586118, -1.376670859011351) +description = Big Run borough, PA +station = ('kduj', 0.0037115456310145012) +zone = ('paz016', 0.0031821481662009476) + +[fips4206347472] +centroid = (0.71157979429690599, -1.3796340790153869) +description = Marion Center borough, PA +station = ('kidi', 0.0024941460584934393) +zone = ('paz023', 0.0021344279916935202) + +[fips4206350624] +centroid = (0.71150322670262101, -1.3762972189250839) +description = Montgomery township, PA +station = ('kidi', 0.0039741759064412432) +zone = ('paz023', 0.0036523722340774519) + +[fips4206355184] +centroid = (0.71345106650772427, -1.3795989455375441) +description = North Mahoning township, PA +station = ('kidi', 0.0043267105279442214) +zone = ('paz023', 0.0039775787796496103) + +[fips4206360320] +centroid = (0.70851016156837598, -1.3772840629907466) +description = Pine township, PA +station = ('kidi', 0.0025735191196215191) +zone = ('paz023', 0.0025250794319797306) + +[fips4206361632] +centroid = (0.71196320822698411, -1.3819404443554348) +description = Plumville borough, PA +station = ('kidi', 0.0029695183434081257) +zone = ('paz023', 0.0027349240414421237) + +[fips4206363584] +centroid = (0.71052215967678256, -1.3804760432998413) +description = Rayne township, PA +station = ('kidi', 0.0013380626452116659) +zone = ('paz023', 0.0010146391169329797) + +[fips4206367648] +centroid = (0.70659019467142714, -1.3866335125410001) +description = Saltsburg borough, PA +station = ('klbe', 0.0035714668465364249) +zone = ('paz073', 0.0029667525867854553) + +[fips4206370040] +centroid = (0.70958584289296511, -1.384051088473164) +description = Shelocta borough, PA +station = ('kidi', 0.0026824169073600677) +zone = ('paz023', 0.0028184481435820077) + +[fips4206371256] +centroid = (0.71331838657798774, -1.3818003991362546) +description = Smicksburg borough, PA +station = ('kidi', 0.0042391747248774645) +zone = ('paz023', 0.0039634816520926191) + +[fips4206372304] +centroid = (0.71226501056123892, -1.3814339323532134) +description = South Mahoning township, PA +station = ('kidi', 0.0031507088356140709) +zone = ('paz023', 0.0028747539017152748) + +[fips4206381256] +centroid = (0.71071245292512741, -1.3825108877681567) +description = Washington township, PA +station = ('kidi', 0.0021286208984761588) +zone = ('paz023', 0.002038469229714989) + +[fips4206383416] +centroid = (0.71343743548626615, -1.3817295736752087) +description = West Mahoning township, PA +station = ('kidi', 0.004344008813547991) +zone = ('paz023', 0.0040636529713896224) + +[fips4206384184] +centroid = (0.70560774883547939, -1.3807008242542058) +description = West Wheatfield township, PA +station = ('kidi', 0.0035794099615541405) +zone = ('paz074', 0.0037249163053085679) + +[fips4206384472] +centroid = (0.70943806586519875, -1.3809314171549794) +description = White township, PA +station = ('kidi', 0.0003810610883750084) +zone = ('paz023', 0.0004569645763876683) + +[fips4206387160] +centroid = (0.70798638825985249, -1.3848974509873335) +description = Young township, PA +station = ('kidi', 0.0035080961522735588) +zone = ('paz023', 0.0037836236465671517) + +[fips4206490] +centroid = (0.71996421639714669, -1.307438848665907) +description = Birchwood Lakes CDP, PA +station = ('k12n', 0.0047066250136299044) +zone = ('paz048', 0.0021467378078451993) + +[fips4206496] +centroid = (0.69877152104822038, -1.3297582238601653) +description = Bird-in-Hand CDP, PA +station = ('klns', 0.0020313412533757604) +zone = ('paz066', 0.00078366105196701994) + +[fips42065] +centroid = (0.71785893044022098, -1.3787934237278712) +description = Jefferson County, PA +station = ('kduj', 0.0017802170500268197) +zone = ('paz016', 3.8638219633323781e-05) + +[fips4206504] +centroid = (0.70271020557119601, -1.3231360781589561) +description = Birdsboro borough, PA +station = ('krdg', 0.0027671159858169482) +zone = ('paz060', 0.0030996363886727453) + +[fips4206504240] +centroid = (0.7209997376956474, -1.381475366469656) +description = Barnett township, PA +station = ('kduj', 0.0041715478627958403) +zone = ('paz009', 0.0037066550953095139) + +[fips4206504728] +centroid = (0.71676752369907137, -1.381842601197568) +description = Beaver township, PA +station = ('kduj', 0.0043182376820647328) +zone = ('paz016', 0.0025222526317949974) + +[fips4206505200] +centroid = (0.7147015949167782, -1.3775068193631785) +description = Bell township, PA +station = ('kduj', 0.0041203909113653129) +zone = ('paz016', 0.0032684297318399816) + +[fips4206506344] +centroid = (0.71507403072586118, -1.376670859011351) +description = Big Run borough, PA +station = ('kduj', 0.0037115456310145012) +zone = ('paz016', 0.0031821481662009476) + +[fips4206508960] +centroid = (0.71989960430823774, -1.3751962128730484) +description = Brockway borough, PA +station = ('kduj', 0.0016282949307252301) +zone = ('paz016', 0.0034179621420246894) + +[fips4206509224] +centroid = (0.71840675438583701, -1.3802526586088786) +description = Brookville borough, PA +station = ('kduj', 0.0026457182958313169) +zone = ('paz016', 0.0012400716306352768) + +[fips4206514408] +centroid = (0.71794181612639818, -1.381938908465693) +description = Clover township, PA +station = ('kduj', 0.0039789704658988925) +zone = ('paz016', 0.0023662861576893659) + +[fips4206516304] +centroid = (0.71875533154404525, -1.3823474900435848) +description = Corsica borough, PA +station = ('kduj', 0.0041948812110480897) +zone = ('paz016', 0.002828821052259416) + +[fips4206522872] +centroid = (0.71990005809384339, -1.3811129488504794) +description = Eldred township, PA +station = ('kduj', 0.0034492933236450183) +zone = ('paz016', 0.0027110202942624206) + +[fips4206525136] +centroid = (0.71806264527051378, -1.3754406985946677) +description = Falls Creek borough, PA +station = ('kduj', 0.0012364633008456428) +zone = ('paz016', 0.0025426680950991929) + +[fips4206528592] +centroid = (0.71455636606971973, -1.3762894871164977) +description = Gaskill township, PA +station = ('kduj', 0.0042441424374816432) +zone = ('paz016', 0.0037744349384661331) + +[fips4206533448] +centroid = (0.72140730698257305, -1.3791359271402828) +description = Heath township, PA +station = ('kduj', 0.0031671173861989783) +zone = ('paz016', 0.0035953608750147843) + +[fips4206533816] +centroid = (0.7156625382963413, -1.3761457592525961) +description = Henderson township, PA +station = ('kduj', 0.0031579076085735533) +zone = ('paz016', 0.0029439346123708654) + +[fips4206540304] +centroid = (0.71732463279630798, -1.3795195679631636) +description = Knox township, PA +station = ('kduj', 0.0025313037884335554) +zone = ('paz016', 0.00073410764443673326) + +[fips4206545888] +centroid = (0.71607558791711823, -1.3782398227424313) +description = McCalmont township, PA +station = ('kduj', 0.0029256995932281458) +zone = ('paz016', 0.0017957780191499156) + +[fips4206556712] +centroid = (0.71601209283893064, -1.3798459096267015) +description = Oliver township, PA +station = ('kduj', 0.0036119377890260736) +zone = ('paz016', 0.0019726322287934956) + +[fips4206559480] +centroid = (0.71448800152291914, -1.3799239782041433) +description = Perry township, PA +station = ('kduj', 0.0049095655921764176) +zone = ('paz016', 0.0034386584475808108) + +[fips4206560] +centroid = (0.70942668631847572, -1.364772164102342) +description = Birmingham borough, PA +station = ('kunv', 0.0057814737202031017) +zone = ('paz025', 0.0035341260620202733) + +[fips4206560368] +centroid = (0.71816623056161966, -1.3788400763787771) +description = Pine Creek township, PA +station = ('kduj', 0.0016739148231108083) +zone = ('paz016', 0.00034669737862403369) + +[fips4206561920] +centroid = (0.72067641545171535, -1.3778031588168749) +description = Polk township, PA +station = ('kduj', 0.0020438711712596172) +zone = ('paz016', 0.0029527468746107189) + +[fips4206562176] +centroid = (0.71450255756888081, -1.3817607627089419) +description = Porter township, PA +station = ('kidi', 0.0053948564321766868) +zone = ('paz016', 0.0039992311584209975) + +[fips4206562920] +centroid = (0.71460315834696575, -1.3783696926920721) +description = Punxsutawney borough, PA +station = ('kduj', 0.0043512661216199011) +zone = ('paz016', 0.0032340363092342121) + +[fips4206564376] +centroid = (0.7172364587624972, -1.376861222072866) +description = Reynoldsville borough, PA +station = ('kduj', 0.0015497011309366) +zone = ('paz016', 0.0015742334424529167) + +[fips4206564960] +centroid = (0.71556389228701844, -1.381744618413361) +description = Ringgold township, PA +station = ('kduj', 0.0049404938520769244) +zone = ('paz016', 0.0031651327747118951) + +[fips4206566032] +centroid = (0.71796274262412962, -1.3807585771991542) +description = Rose township, PA +station = ('kduj', 0.0031105597260263212) +zone = ('paz016', 0.0014809693913421797) + +[fips4206571632] +centroid = (0.7200190022823667, -1.3756663871202433) +description = Snyder township, PA +station = ('kduj', 0.0014890741543235743) +zone = ('paz016', 0.0032245612824788241) + +[fips4206575168] +centroid = (0.71761645184724143, -1.3820960579115427) +description = Summerville borough, PA +station = ('kduj', 0.0041743662468884434) +zone = ('paz016', 0.0024903002260803914) + +[fips4206575888] +centroid = (0.71636590598489491, -1.3755141071430066) +description = Sykesville borough, PA +station = ('kduj', 0.002598404913275574) +zone = ('paz016', 0.0028732393696190026) + +[fips4206576744] +centroid = (0.71504167232152938, -1.3822731564707424) +description = Timblin borough, PA +station = ('kduj', 0.005585360404534054) +zone = ('paz016', 0.0038181879098864572) + +[fips4206578336] +centroid = (0.71891028187503736, -1.3817144242173014) +description = Union township, PA +station = ('kduj', 0.003720189119047207) +zone = ('paz016', 0.0024488946294966454) + +[fips4206581120] +centroid = (0.71974676582564068, -1.3785162479893622) +description = Warsaw township, PA +station = ('kduj', 0.0016258938349244776) +zone = ('paz016', 0.0019379238184372854) + +[fips4206581264] +centroid = (0.71883230056405822, -1.3763936309129643) +description = Washington township, PA +station = ('kduj', 0.00029010198935594522) +zone = ('paz016', 0.0020759367300346092) + +[fips4206585840] +centroid = (0.7164778688564104, -1.3774852994535014) +description = Winslow township, PA +station = ('kduj', 0.0023683339125728808) +zone = ('paz016', 0.0016695025792330884) + +[fips4206586568] +centroid = (0.71601130744076724, -1.3812756658966427) +description = Worthville borough, PA +station = ('kduj', 0.004381650003259129) +zone = ('paz016', 0.0025986723057828637) + +[fips4206587168] +centroid = (0.71489297026925935, -1.378786739116836) +description = Young township, PA +station = ('kduj', 0.0041771671334367216) +zone = ('paz016', 0.0029278106499450573) + +[fips42067] +centroid = (0.70739369189916768, -1.3508924855857347) +description = Juniata County, PA +station = ('kunv', 0.0081521301798963709) +zone = ('paz028', 2.2020150304876095e-05) + +[fips4206704560] +centroid = (0.70692086475150995, -1.3528941164383845) +description = Beale township, PA +station = ('kunv', 0.0074969068897817633) +zone = ('paz028', 0.0015759029246767986) + +[fips4206718680] +centroid = (0.70835751507199651, -1.3477834433226947) +description = Delaware township, PA +station = ('kseg', 0.0061939985606108893) +zone = ('paz028', 0.0025675473425361391) + +[fips4206725440] +centroid = (0.70949046064934362, -1.3486996364602368) +description = Fayette township, PA +station = ('kseg', 0.0061248537996430258) +zone = ('paz028', 0.0026846749473941013) + +[fips4206725648] +centroid = (0.70889279010029072, -1.3507107095441395) +description = Fermanagh township, PA +station = ('kunv', 0.0073216140745393657) +zone = ('paz028', 0.0015000724655217219) + +[fips4206731424] +centroid = (0.70910582498878905, -1.3459054865008413) +description = Greenwood township, PA +station = ('kseg', 0.0046388240958277639) +zone = ('paz050', 0.0025345858403227174) + +[fips4206740752] +centroid = (0.7044507002611623, -1.3557341860103997) +description = Lack township, PA +station = ('kunv', 0.0088165071094923712) +zone = ('paz027', 0.0044088595904938563) + +[fips4206744] +centroid = (0.70625006490679842, -1.3820720770876203) +description = Black Lick CDP, PA +station = ('kidi', 0.0031534991778863733) +zone = ('paz023', 0.0035190658318062793) + +[fips4206749272] +centroid = (0.70805511932579601, -1.3509640615383591) +description = Mifflin borough, PA +station = ('kunv', 0.007671995262837644) +zone = ('paz028', 0.00065484112762862498) + +[fips4206749304] +centroid = (0.7081005676995179, -1.3508000180419641) +description = Mifflintown borough, PA +station = ('kunv', 0.0077391760133445862) +zone = ('paz028', 0.0007053148799667946) + +[fips4206749392] +centroid = (0.70777279486599332, -1.3521269046057929) +description = Milford township, PA +station = ('kunv', 0.0072184499938356458) +zone = ('paz028', 0.0009897825310190829) + +[fips4206750480] +centroid = (0.70970541540001919, -1.3460207654979355) +description = Monroe township, PA +station = ('kseg', 0.0043035655968386667) +zone = ('paz050', 0.0019845217380232783) + +[fips4206762304] +centroid = (0.70744777965268701, -1.3507008833404508) +description = Port Royal borough, PA +station = ('kunv', 0.0082222444809365251) +zone = ('paz028', 0.00017275871124220301) + +[fips4206773504] +centroid = (0.70624198403236171, -1.352108107409749) +description = Spruce Hill township, PA +station = ('kunv', 0.0083981131865701938) +zone = ('paz028', 0.0014697828541434224) + +[fips4206775536] +centroid = (0.70914399533953021, -1.3441789020850134) +description = Susquehanna township, PA +station = ('kseg', 0.0037941557596884164) +zone = ('paz050', 0.002530951342207495) + +[fips4206776536] +centroid = (0.7080067562522232, -1.3480247874516604) +description = Thompsontown borough, PA +station = ('kseg', 0.0065632907333295172) +zone = ('paz028', 0.0022815965893940577) + +[fips4206777824] +centroid = (0.70685119120777029, -1.3501518376643584) +description = Turbett township, PA +station = ('kseg', 0.0085408045029186225) +zone = ('paz028', 0.00080203428128888441) + +[fips4206777952] +centroid = (0.70559956324128759, -1.3542485093912247) +description = Tuscarora township, PA +station = ('kunv', 0.0081172146173468136) +zone = ('paz028', 0.0031075118962703772) + +[fips4206780568] +centroid = (0.70794254558904235, -1.3492553842006567) +description = Walker township, PA +station = ('kseg', 0.007323931507214965) +zone = ('paz028', 0.0013757222450170208) + +[fips4206824] +centroid = (0.7040050478899581, -1.352846032617492) +description = Blain borough, PA +station = ('kunv', 0.010016928727711032) +zone = ('paz028', 0.0036990831121348662) + +[fips42069] +centroid = (0.72326880534958016, -1.319636239223102) +description = Lackawanna County, PA +station = ('kavp', 0.0024714051486973304) +zone = ('paz044', 5.6948758317277174e-05) + +[fips4206900140] +centroid = (0.72474249155679416, -1.3211932998086837) +description = Abington township, PA +station = ('kavp', 0.0033701693491489577) +zone = ('paz044', 0.0019273658100466492) + +[fips4206902832] +centroid = (0.72442304394380153, -1.3186051859674861) +description = Archbald borough, PA +station = ('kavp', 0.0038532271295530431) +zone = ('paz044', 0.001433690576747128) + +[fips4206904] +centroid = (0.70568007527968213, -1.3833459056421884) +description = Blairsville borough, PA +station = ('klbe', 0.0032015223060656325) +zone = ('paz074', 0.0034294605491390615) + +[fips4206905696] +centroid = (0.72619101011619425, -1.3212118177520471) +description = Benton township, PA +station = ('kavp', 0.0048082199533219907) +zone = ('paz044', 0.0032058532202459415) + +[fips4206906928] +centroid = (0.72406612411176874, -1.3194908009365331) +description = Blakely borough, PA +station = ('kavp', 0.0031753203583024707) +zone = ('paz044', 0.00086034242391226407) + +[fips4206911232] +centroid = (0.72555733342467266, -1.317806977087379) +description = Carbondale city, PA +station = ('kavp', 0.0051185387541545033) +zone = ('paz044', 0.0027135075739609447) + +[fips4206911240] +centroid = (0.72524443079637524, -1.3178580105147073) +description = Carbondale township, PA +station = ('kavp', 0.0048448477376677387) +zone = ('paz044', 0.0024271340010332456) + +[fips4206913864] +centroid = (0.72432757443371742, -1.3211324750842515) +description = Clarks Green borough, PA +station = ('kavp', 0.0029668435525934318) +zone = ('paz044', 0.0015851426816546773) + +[fips4206913880] +centroid = (0.72414126053606709, -1.3213278472407197) +description = Clarks Summit borough, PA +station = ('kavp', 0.002760920593902249) +zone = ('paz044', 0.0015758074870575345) + +[fips4206914256] +centroid = (0.7199633262792281, -1.3182681105290486) +description = Clifton township, PA +station = ('kmpo', 0.0028247096268566364) +zone = ('paz044', 0.0034057338761216771) + +[fips4206916664] +centroid = (0.72079679081022552, -1.3176871776875221) +description = Covington township, PA +station = ('kmpo', 0.0032533703292390455) +zone = ('paz044', 0.0028210677403430542) + +[fips4206918088] +centroid = (0.72496816262907693, -1.3218817449321327) +description = Dalton borough, PA +station = ('kavp', 0.0035659843181102577) +zone = ('paz044', 0.0024352352327428458) + +[fips4206919160] +centroid = (0.72375922541609805, -1.3200940216326076) +description = Dickson City borough, PA +station = ('kavp', 0.0026800799096887849) +zone = ('paz044', 0.00064852851952133068) + +[fips4206920352] +centroid = (0.72281042952812891, -1.319578137212303) +description = Dunmore borough, PA +station = ('kavp', 0.0021798031441942331) +zone = ('paz044', 0.00040349371295653842) + +[fips4206923336] +centroid = (0.7221829138488669, -1.3185671028832078) +description = Elmhurst township, PA +station = ('kavp', 0.0025461638364876176) +zone = ('paz044', 0.0013015747980666653) + +[fips4206925560] +centroid = (0.72610308042847882, -1.3176831634302428) +description = Fell township, PA +station = ('kavp', 0.0056205776088561858) +zone = ('paz072', 0.0031893432599219155) + +[fips4206928] +centroid = (0.72406612411176874, -1.3194908009365331) +description = Blakely borough, PA +station = ('kavp', 0.0031753203583024707) +zone = ('paz044', 0.00086034242391226407) + +[fips4206929504] +centroid = (0.72448196625934891, -1.3220533631574813) +description = Glenburn township, PA +station = ('kavp', 0.0030852495294347916) +zone = ('paz044', 0.0022160569398504354) + +[fips4206931016] +centroid = (0.72629447323425245, -1.3193665160404986) +description = Greenfield township, PA +station = ('kavp', 0.0052194333082446493) +zone = ('paz044', 0.0030886719571031496) + +[fips4206937896] +centroid = (0.72343400076328135, -1.3176142229247889) +description = Jefferson township, PA +station = ('kavp', 0.0037373908378188639) +zone = ('paz044', 0.0015268742785560132) + +[fips4206938096] +centroid = (0.7247880795568562, -1.318516593054655) +description = Jermyn borough, PA +station = ('kavp', 0.0041840191378816321) +zone = ('paz044', 0.0017829424042572453) + +[fips4206938160] +centroid = (0.72350180680472143, -1.318458857562999) +description = Jessup borough, PA +station = ('kavp', 0.0032670294273071587) +zone = ('paz044', 0.00092408099949990751) + +[fips4206941504] +centroid = (0.72530626781177321, -1.3223963552620832) +description = La Plume township, PA +station = ('kavp', 0.0039293633580514018) +zone = ('paz044', 0.0029462317695076751) + +[fips4206946480] +centroid = (0.72166856531830403, -1.3171693734050405) +description = Madison township, PA +station = ('kmpo', 0.003918276239255755) +zone = ('paz044', 0.0024059383506267922) + +[fips4206948176] +centroid = (0.72500563484811731, -1.3182697162319603) +description = Mayfield borough, PA +station = ('kavp', 0.0044687229260428974) +zone = ('paz044', 0.0020626085687390741) + +[fips4206950880] +centroid = (0.72179789421587692, -1.3212957506357754) +description = Moosic borough, PA +station = ('kavp', 0.00054515245707853987) +zone = ('paz044', 0.0018874073578126216) + +[fips4206951208] +centroid = (0.72153281360908395, -1.3182892115597051) +description = Moscow borough, PA +station = ('kavp', 0.0026362513939984715) +zone = ('paz044', 0.001957300106688078) + +[fips4206954136] +centroid = (0.7234285902426002, -1.3222805177596284) +description = Newton township, PA +station = ('kavp', 0.0020581818313098578) +zone = ('paz044', 0.0019990057641149674) + +[fips4206954680] +centroid = (0.72530138088986773, -1.320973981734878) +description = North Abington township, PA +station = ('kavp', 0.0039470186650758616) +zone = ('paz044', 0.0023193215276036301) + +[fips4206956576] +centroid = (0.7220510716771712, -1.3219272980256096) +description = Old Forge borough, PA +station = ('kavp', 0.00065576105276057015) +zone = ('paz044', 0.0020780882762222413) + +[fips4206956792] +centroid = (0.72346499781079676, -1.3190438570216825) +description = Olyphant borough, PA +station = ('kavp', 0.002918165051330468) +zone = ('paz044', 0.00050663164969083109) + +[fips4206960] +centroid = (0.71674216406503988, -1.3545137121710651) +description = Blanchard CDP, PA +station = ('kunv', 0.0049429485707023916) +zone = ('paz045', 0.0029793717287087936) + +[fips4206963432] +centroid = (0.72263952688777366, -1.3224293768915309) +description = Ransom township, PA +station = ('kavp', 0.0013249618437934385) +zone = ('paz044', 0.0021762325282075417) + +[fips4206965224] +centroid = (0.72213886173854647, -1.3190570342575352) +description = Roaring Brook township, PA +station = ('kavp', 0.0021837851409460232) +zone = ('paz044', 0.0011559204709501282) + +[fips4206968400] +centroid = (0.7250290397133865, -1.3199175513919381) +description = Scott township, PA +station = ('kavp', 0.0038901274657920314) +zone = ('paz044', 0.0018297262554597203) + +[fips4206969000] +centroid = (0.72263923018180076, -1.3206192261111176) +description = Scranton city, PA +station = ('kavp', 0.0015194798976368787) +zone = ('paz044', 0.00093754543644575228) + +[fips4206971872] +centroid = (0.72413356363406578, -1.3209709623152719) +description = South Abington township, PA +station = ('kavp', 0.0028000328126287868) +zone = ('paz044', 0.001363710171749641) + +[fips4206972896] +centroid = (0.72099883012443633, -1.3199753916033494) +description = Spring Brook township, PA +station = ('kavp', 0.0014257318499981925) +zone = ('paz044', 0.0022284216500705529) + +[fips4206976] +centroid = (0.71006430745410676, -1.3686146286236553) +description = Blandburg CDP, PA +station = ('kfig', 0.0063933597548454148) +zone = ('paz025', 0.0036430529637702085) + +[fips4206976184] +centroid = (0.72249251780487811, -1.3214710340525535) +description = Taylor borough, PA +station = ('kavp', 0.0011167224050970411) +zone = ('paz044', 0.0015572358278738987) + +[fips4206976601] +centroid = (0.71929010042685637, -1.3196910076550294) +description = Thornhurst township, PA +station = ('kavp', 0.0026393734159436207) +zone = ('paz044', 0.0039222538527299176) + +[fips4206976648] +centroid = (0.72323349733881226, -1.319340720074154) +description = Throop borough, PA +station = ('kavp', 0.0025971376021359529) +zone = ('paz044', 0.00021753687055559256) + +[fips4206979792] +centroid = (0.72653731834637492, -1.3172745993056434) +description = Vandling borough, PA +station = ('kavp', 0.0061512502188560856) +zone = ('paz072', 0.0033103171304252094) + +[fips4206982360] +centroid = (0.72465902991196363, -1.3224937969942221) +description = West Abington township, PA +station = ('kavp', 0.0032980362315276307) +zone = ('paz044', 0.0025882008550798109) + +[fips4206984] +centroid = (0.70590103396298454, -1.3243462545557039) +description = Blandon CDP, PA +station = ('krdg', 0.0017944002364652439) +zone = ('paz060', 0.00079638173528992387) + +[fips4207000] +centroid = (0.7067312347282807, -1.3938247577514071) +description = Blawnox borough, PA +station = ('kagc', 0.0026011335845092056) +zone = ('paz021', 0.0016586981882862561) + +[fips4207040] +centroid = (0.70544237888885308, -1.3472016552698349) +description = Bloomfield borough, PA +station = ('kcxy', 0.0057273452560955901) +zone = ('paz056', 0.0010367251519942757) + +[fips42071] +centroid = (0.69886459945722934, -1.3308170103975951) +description = Lancaster County, PA +station = ('klns', 0.0014632050393809755) +zone = ('paz066', 3.4128760287400564e-05) + +[fips4207100364] +centroid = (0.70239400427061216, -1.3276058314667283) +description = Adamstown borough, PA +station = ('krdg', 0.0025146040668656707) +zone = ('paz060', 0.0035371844791476917) + +[fips4207100540] +centroid = (0.70088600489030406, -1.3299997599753488) +description = Akron borough, PA +station = ('klns', 0.0014757875921635277) +zone = ('paz066', 0.0020994160429002474) + +[fips4207104376] +centroid = (0.69676139044211349, -1.3277361377486825) +description = Bart township, PA +station = ('kmqs', 0.0029101955586032513) +zone = ('paz066', 0.0031416270324475617) + +[fips4207108352] +centroid = (0.70165360069533123, -1.326979851677208) +description = Brecknock township, PA +station = ('krdg', 0.0029999368788047624) +zone = ('paz060', 0.0039948142356838754) + +[fips4207110704] +centroid = (0.70059778121762972, -1.3255607768222892) +description = Caernarvon township, PA +station = ('kmqs', 0.003006618873993545) +zone = ('paz067', 0.0039734295771625596) + +[fips4207113512] +centroid = (0.69733764580124447, -1.3264039104773424) +description = Christiana borough, PA +station = ('kmqs', 0.0017605951709376269) +zone = ('paz067', 0.0033476155937495768) + +[fips4207113960] +centroid = (0.70225514587532345, -1.3306147965504593) +description = Clay township, PA +station = ('klns', 0.0022420252989545594) +zone = ('paz066', 0.0033855976521856659) + +[fips4207115056] +centroid = (0.69560800705922565, -1.3276192705019687) +description = Colerain township, PA +station = ('kmqs', 0.0034178570041337041) +zone = ('mdz007', 0.0039716986550571336) + +[fips4207115384] +centroid = (0.69874003530851447, -1.3351051272901127) +description = Columbia borough, PA +station = ('klns', 0.0029804304223108227) +zone = ('paz065', 0.0036794349677373517) + +[fips4207115592] +centroid = (0.6970318990228801, -1.3327007442592727) +description = Conestoga township, PA +station = ('klns', 0.0032308103590672943) +zone = ('paz066', 0.0023591144129108785) + +[fips4207115824] +centroid = (0.69996558805597242, -1.3380925026509962) +description = Conoy township, PA +station = ('kmdt', 0.0021238512208074344) +zone = ('paz065', 0.0033281580307216829) + +[fips4207118888] +centroid = (0.70221790054908595, -1.3289139906476832) +description = Denver borough, PA +station = ('klns', 0.0029477331790572752) +zone = ('paz066', 0.0036356030197526295) + +[fips4207120] +centroid = (0.72735861793248602, -1.3969316358061747) +description = Blooming Valley borough, PA +station = ('kgkj', 0.0024350225295274347) +zone = ('paz003', 0.00090434634042557791) + +[fips4207120032] +centroid = (0.6947969001959462, -1.3308661588693314) +description = Drumore township, PA +station = ('klns', 0.0054076705412205587) +zone = ('mdz007', 0.0032073046470555192) + +[fips4207120688] +centroid = (0.70006021980801547, -1.3281625914981148) +description = Earl township, PA +station = ('klns', 0.0026969109115446009) +zone = ('paz066', 0.0023245618922026149) + +[fips4207120984] +centroid = (0.70203839343551844, -1.328293246845919) +description = East Cocalico township, PA +station = ('krdg', 0.0031039844916723454) +zone = ('paz066', 0.0036909906086490104) + +[fips4207121032] +centroid = (0.69958871911058917, -1.3363398081095585) +description = East Donegal township, PA +station = ('kmdt', 0.0033554131428374374) +zone = ('paz065', 0.0035664586072917609) + +[fips4207121040] +centroid = (0.69550028533779251, -1.3295594832182407) +description = East Drumore township, PA +station = ('klns', 0.004943917092203997) +zone = ('paz066', 0.0034975279300898067) + +[fips4207121072] +centroid = (0.70034025788649801, -1.3270039546741783) +description = East Earl township, PA +station = ('kmqs', 0.0033480693259627403) +zone = ('paz066', 0.0032363606205145661) + +[fips4207121232] +centroid = (0.69957184177672249, -1.3331516326182329) +description = East Hempfield township, PA +station = ('klns', 0.0012695657750642565) +zone = ('paz066', 0.0019501624708524905) + +[fips4207121344] +centroid = (0.69879304095789752, -1.3301838398515569) +description = East Lampeter township, PA +station = ('klns', 0.0017921591495840704) +zone = ('paz066', 0.00045817892313725506) + +[fips4207121688] +centroid = (0.69993567311259319, -1.3325543285883228) +description = East Petersburg borough, PA +station = ('klns', 0.00070338539058478115) +zone = ('paz066', 0.0017289387802196844) + +[fips4207122336] +centroid = (0.69673329064115641, -1.3289038851913142) +description = Eden township, PA +station = ('klns', 0.0040419117203675421) +zone = ('paz066', 0.0025739151338512239) + +[fips4207123008] +centroid = (0.70200566851204338, -1.3318035403039923) +description = Elizabeth township, PA +station = ('klns', 0.0018399356209485198) +zone = ('paz066', 0.0032313981450797034) + +[fips4207123016] +centroid = (0.70080701128835876, -1.3368986799893396) +description = Elizabethtown borough, PA +station = ('kmdt', 0.0023842781057624237) +zone = ('paz059', 0.0041789531575333137) + +[fips4207123832] +centroid = (0.70128814620325608, -1.3295950355751038) +description = Ephrata borough, PA +station = ('klns', 0.0019519051216366349) +zone = ('paz066', 0.0025790103387001947) + +[fips4207123840] +centroid = (0.70097775684908137, -1.3288033367731067) +description = Ephrata township, PA +station = ('klns', 0.002347967089377605) +zone = ('paz066', 0.0025896159449350967) + +[fips4207128] +centroid = (0.71563241391345178, -1.3344190558144462) +description = Bloomsburg town, PA +station = ('kseg', 0.0063089412598232265) +zone = ('paz053', 0.0010483216146916004) + +[fips4207128168] +centroid = (0.69395596565575035, -1.3298240576795508) +description = Fulton township, PA +station = ('kapg', 0.0051451695363912168) +zone = ('mdz007', 0.0021615449088748526) + +[fips4207141216] +centroid = (0.69886580373441309, -1.3317034980312681) +description = Lancaster city, PA +station = ('klns', 0.0013021816408264333) +zone = ('paz066', 0.00071207090712949324) + +[fips4207141224] +centroid = (0.69850647534801258, -1.3321201081237193) +description = Lancaster township, PA +station = ('klns', 0.0016942975387027363) +zone = ('paz066', 0.0010939226038395122) + +[fips4207142080] +centroid = (0.69889805741899003, -1.3285788350714227) +description = Leacock township, PA +station = ('klns', 0.0026954575631820479) +zone = ('paz066', 0.001680286835491693) + +[fips4207143816] +centroid = (0.70081509216279558, -1.331761931654625) +description = Lititz borough, PA +station = ('klns', 0.00064975735839750345) +zone = ('paz066', 0.0020852992525079504) + +[fips4207143832] +centroid = (0.69441149659052082, -1.32830745382603) +description = Little Britain township, PA +station = ('kmqs', 0.0046248663159724045) +zone = ('mdz007', 0.0026722731968061675) + +[fips4207146888] +centroid = (0.70098135222734048, -1.3333612641146899) +description = Manheim borough, PA +station = ('klns', 0.001517042450390786) +zone = ('paz066', 0.00289286156458512) + +[fips4207146896] +centroid = (0.69973256914753856, -1.3316493404645788) +description = Manheim township, PA +station = ('klns', 0.00043626198531611138) +zone = ('paz066', 0.0010910623298410662) + +[fips4207146992] +centroid = (0.69786637584484357, -1.3337017603984616) +description = Manor township, PA +station = ('klns', 0.002770824541990494) +zone = ('paz066', 0.0024578157705722283) + +[fips4207147424] +centroid = (0.69912728896294696, -1.3360796144246712) +description = Marietta borough, PA +station = ('klns', 0.0035186514210818328) +zone = ('paz065', 0.003345388640833898) + +[fips4207147824] +centroid = (0.69590211249147915, -1.3320825137316312) +description = Martic township, PA +station = ('klns', 0.0042765960378357126) +zone = ('paz066', 0.0031345643561748273) + +[fips4207149728] +centroid = (0.69822458722052294, -1.3325896016925056) +description = Millersville borough, PA +station = ('klns', 0.0020626648584419955) +zone = ('paz066', 0.0015339796322161377) + +[fips4207151656] +centroid = (0.70006226184324027, -1.3352767106088761) +description = Mount Joy borough, PA +station = ('klns', 0.0027479243746196909) +zone = ('paz065', 0.0044484539521022302) + +[fips4207151664] +centroid = (0.70102748127947079, -1.3360235544490973) +description = Mount Joy township, PA +station = ('klns', 0.0034253097981150199) +zone = ('paz059', 0.0037154097853448688) + +[fips4207152016] +centroid = (0.69884224178951126, -1.3340305106163672) +description = Mountville borough, PA +station = ('klns', 0.0022304688912819413) +zone = ('paz066', 0.0024937369043969331) + +[fips4207153696] +centroid = (0.69989961461024697, -1.3280235934764859) +description = New Holland borough, PA +station = ('klns', 0.0028140700957961571) +zone = ('paz066', 0.0023419000750165386) + +[fips4207157848] +centroid = (0.69793147662594301, -1.3282563505855316) +description = Paradise township, PA +station = ('klns', 0.0034488288687146646) +zone = ('paz066', 0.0021448203797549185) + +[fips4207158840] +centroid = (0.70141909825703319, -1.3330129836624545) +description = Penn township, PA +station = ('klns', 0.0016105350043263034) +zone = ('paz066', 0.0030696092041946356) + +[fips4207159360] +centroid = (0.69761154032075989, -1.3316100880097015) +description = Pequea township, PA +station = ('klns', 0.0025570422446829512) +zone = ('paz066', 0.0014137787500077691) + +[fips4207160] +centroid = (0.72744494191728959, -1.3451069460081764) +description = Blossburg borough, PA +station = ('kipt', 0.0077566885315817546) +zone = ('paz037', 0.0029051292269776227) + +[fips4207162832] +centroid = (0.69660759202842781, -1.3304240146099238) +description = Providence township, PA +station = ('klns', 0.0036892306791441332) +zone = ('paz066', 0.0022799041593093514) + +[fips4207163064] +centroid = (0.6963083204215883, -1.3292780488763567) +description = Quarryville borough, PA +station = ('klns', 0.0042777369926429443) +zone = ('paz066', 0.0028079198191203699) + +[fips4207163440] +centroid = (0.70085949333896636, -1.3344154604361871) +description = Rapho township, PA +station = ('klns', 0.0021981592222922609) +zone = ('paz066', 0.0034223545245723936) + +[fips4207167096] +centroid = (0.69707553225418006, -1.3267397467320112) +description = Sadsbury township, PA +station = ('kmqs', 0.0020846236907626518) +zone = ('paz067', 0.0036374931999714551) + +[fips4207167568] +centroid = (0.69888119753841571, -1.3263879756212718) +description = Salisbury township, PA +station = ('kmqs', 0.0020157779083241584) +zone = ('paz067', 0.0035328269081252163) + +[fips4207174712] +centroid = (0.69786145401635302, -1.3296997378769311) +description = Strasburg borough, PA +station = ('klns', 0.0027626098638989759) +zone = ('paz066', 0.0013026312532238341) + +[fips4207174720] +centroid = (0.69751331319045762, -1.3298471134789693) +description = Strasburg township, PA +station = ('klns', 0.0030048932793655002) +zone = ('paz066', 0.0015325568958994898) + +[fips4207176400] +centroid = (0.70093878364688444, -1.3273357941248598) +description = Terre Hill borough, PA +station = ('klns', 0.0034140032968979672) +zone = ('paz066', 0.0033446556152990667) + +[fips4207179080] +centroid = (0.6995564130661347, -1.3296456501234117) +description = Upper Leacock township, PA +station = ('klns', 0.0016764038309572929) +zone = ('paz066', 0.0011017252109349666) + +[fips4207181168] +centroid = (0.70091965483828245, -1.3313605233799588) +description = Warwick township, PA +station = ('klns', 0.00079189949165435491) +zone = ('paz066', 0.0020965958897466975) + +[fips4207182728] +centroid = (0.70275188403373356, -1.3292929016282913) +description = West Cocalico township, PA +station = ('klns', 0.0031653432556259897) +zone = ('paz066', 0.0040417994707185436) + +[fips4207182816] +centroid = (0.70042534268753276, -1.337279790084805) +description = West Donegal township, PA +station = ('kmdt', 0.0022877959123791167) +zone = ('paz065', 0.003954204558494964) + +[fips4207182824] +centroid = (0.70035765881914036, -1.3294703492533415) +description = West Earl township, PA +station = ('klns', 0.0017050060023480651) +zone = ('paz066', 0.0017893974346090229) + +[fips4207183152] +centroid = (0.69910730494301154, -1.3346760555468022) +description = West Hempfield township, PA +station = ('klns', 0.00252137431874272) +zone = ('paz066', 0.0029967190504732884) + +[fips4207183256] +centroid = (0.698030768407089, -1.3309412254804598) +description = West Lampeter township, PA +station = ('klns', 0.0022119169780784658) +zone = ('paz066', 0.00085071566480301585) + +[fips4207208] +centroid = (0.70009678445584478, -1.3274080682091849) +description = Blue Ball CDP, PA +station = ('klns', 0.0032725177802615216) +zone = ('paz066', 0.0028516287997752483) + +[fips4207224] +centroid = (0.70070347835713043, -1.3136862896300057) +description = Blue Bell CDP, PA +station = ('klom', 0.0001788223702852889) +zone = ('paz068', 0.001719328455070158) + +[fips42073] +centroid = (0.71545819514751774, -1.4021005854655886) +description = Lawrence County, PA +station = ('kucp', 0.0011840898910399546) +zone = ('paz013', 2.6986101660821802e-05) + +[fips4207305936] +centroid = (0.71518629030334957, -1.4047932096223954) +description = Bessemer borough, PA +station = ('kucp', 0.0013005692395442856) +zone = ('paz013', 0.0020505802728607021) + +[fips4207312] +centroid = (0.69334091162734746, -1.3520900956118682) +description = Blue Ridge Summit CDP, PA +station = ('kryt', 0.0005300844838159683) +zone = ('paz064', 0.0042231334721759845) + +[fips4207323280] +centroid = (0.71316985905864294, -1.4008381364577436) +description = Ellport borough, PA +station = ('kbvi', 0.0024625345926835326) +zone = ('paz013', 0.0024532078448955292) + +[fips4207323304] +centroid = (0.71320553358855365, -1.4011832229574479) +description = Ellwood City borough, PA +station = ('kbvi', 0.0023022469859938902) +zone = ('paz013', 0.0023303233363730076) + +[fips4207323768] +centroid = (0.71306726860521064, -1.4042264139478102) +description = Enon Valley borough, PA +station = ('kbvi', 0.0017231343098120537) +zone = ('paz013', 0.0028599977272110539) + +[fips4207334248] +centroid = (0.71623284208272286, -1.401240085784478) +description = Hickory township, PA +station = ('kucp', 0.0017003512501658289) +zone = ('paz013', 0.0010294078848396412) + +[fips4207343824] +centroid = (0.7133864893254005, -1.4043938957428317) +description = Little Beaver township, PA +station = ('kbvi', 0.0020658934098236373) +zone = ('paz013', 0.0026822859918078402) + +[fips4207346648] +centroid = (0.71618009823272766, -1.4045584977445871) +description = Mahoning township, PA +station = ('kucp', 0.00082992413950850404) +zone = ('paz013', 0.0020030751551686379) + +[fips4207353064] +centroid = (0.7164663671366398, -1.4023796112531048) +description = Neshannock township, PA +station = ('kucp', 0.000937789388083123) +zone = ('paz013', 0.0010568063471853913) + +[fips4207353184] +centroid = (0.71350283297333839, -1.4029193368709916) +description = New Beaver borough, PA +station = ('kbvi', 0.0020054474088575932) +zone = ('paz013', 0.0020263209255982815) + +[fips4207353368] +centroid = (0.71550849553656026, -1.4022988723219076) +description = New Castle city, PA +station = ('kucp', 0.001029025471347378) +zone = ('paz013', 0.00017123924322227655) + +[fips4207354352] +centroid = (0.71763716890546259, -1.4020498487442332) +description = New Wilmington borough, PA +station = ('kucp', 0.0019374202815448771) +zone = ('paz013', 0.002206042577919965) + +[fips4207354768] +centroid = (0.71474170258298908, -1.4040492804820255) +description = North Beaver township, PA +station = ('kucp', 0.0013550623514370843) +zone = ('paz013', 0.0016279026562325801) + +[fips4207359488] +centroid = (0.7136879949536824, -1.3998787987810923) +description = Perry township, PA +station = ('kbvi', 0.0033494877512870195) +zone = ('paz013', 0.0024177013087494396) + +[fips4207361104] +centroid = (0.7169873130117751, -1.3989279957644833) +description = Plain Grove township, PA +station = ('kucp', 0.0035628375382068035) +zone = ('paz013', 0.0028517023241019929) + +[fips4207362904] +centroid = (0.71725398186818723, -1.4041422890778641) +description = Pulaski township, PA +station = ('kucp', 0.0013262088838626414) +zone = ('paz013', 0.002388094157834053) + +[fips4207368] +centroid = (0.71171545873966358, -1.3574008009131291) +description = Boalsburg CDP, PA +station = ('kunv', 0.0016099173405332572) +zone = ('paz019', 0.0019149744304644144) + +[fips4207368408] +centroid = (0.71615262675030122, -1.400026785248369) +description = Scott township, PA +station = ('kucp', 0.002606160849884269) +zone = ('paz013', 0.001720099217112918) + +[fips4207370080] +centroid = (0.71470808754159554, -1.4014646049394544) +description = Shenango township, PA +station = ('kucp', 0.0020114377524747982) +zone = ('paz013', 0.00086641329732290524) + +[fips4207371200] +centroid = (0.71490586825243163, -1.4001227958105211) +description = Slippery Rock township, PA +station = ('kucp', 0.002768805651809847) +zone = ('paz013', 0.0015799223920041354) + +[fips4207371620] +centroid = (0.71434580954875915, -1.4049241442228799) +description = S.N.P.J. borough, PA +station = ('kucp', 0.0020041421161162455) +zone = ('paz013', 0.0023955934011776685) + +[fips4207372376] +centroid = (0.71514407078874376, -1.4022960797951045) +description = South New Castle borough, PA +station = ('kucp', 0.0012541979475887137) +zone = ('paz013', 0.0003245111251335269) + +[fips4207376192] +centroid = (0.71466269152775119, -1.4025928730344062) +description = Taylor township, PA +station = ('kucp', 0.0015182019017760627) +zone = ('paz013', 0.00085528161775072259) + +[fips4207378368] +centroid = (0.71573472511420366, -1.4031566667426778) +description = Union township, PA +station = ('kucp', 0.00037883523745371278) +zone = ('paz013', 0.00085583040814760699) + +[fips4207380368] +centroid = (0.7175549464444011, -1.4008035963918464) +description = Volant borough, PA +station = ('kucp', 0.002529979707379696) +zone = ('paz013', 0.0023366088923277781) + +[fips4207380880] +centroid = (0.71357915622152812, -1.4022052005009531) +description = Wampum borough, PA +station = ('kbvi', 0.0022112373392177104) +zone = ('paz013', 0.0018540743473534321) + +[fips4207381272] +centroid = (0.71705506669333741, -1.4001675460525422) +description = Washington township, PA +station = ('kucp', 0.0026996766814308872) +zone = ('paz013', 0.0021800800679360236) + +[fips4207381776] +centroid = (0.71366378723695734, -1.4011729080615687) +description = Wayne township, PA +station = ('kbvi', 0.002661842913084194) +zone = ('paz013', 0.0019002622524477337) + +[fips4207384] +centroid = (0.69394751826217071, -1.3959919505369009) +description = Bobtown CDP, PA +station = ('kmgw', 0.0021288282154094374) +zone = ('wvz022', 0.0024165340292835289) + +[fips4207385504] +centroid = (0.7174378173982997, -1.4018040016657971) +description = Wilmington township, PA +station = ('kucp', 0.0018933046812785264) +zone = ('paz013', 0.0020184853832307718) + +[fips4207472] +centroid = (0.70091256880151942, -1.3463455712717318) +description = Boiling Springs CDP, PA +station = ('kmdt', 0.005027579635419892) +zone = ('paz063', 0.0016714434884714893) + +[fips4207480] +centroid = (0.70502585606286461, -1.381464562881586) +description = Bolivar borough, PA +station = ('kidi', 0.0042166267510439148) +zone = ('paz074', 0.0029569224247041844) + +[fips42075] +centroid = (0.70454306308517789, -1.3344439965694572) +description = Lebanon County, PA +station = ('kmui', 0.0018472133023672529) +zone = ('paz059', 4.8166951938415457e-06) + +[fips4207502600] +centroid = (0.70393092375662591, -1.3353124025920795) +description = Annville township, PA +station = ('kmui', 0.0019298852216162988) +zone = ('paz059', 0.00090283112516289165) + +[fips4207506040] +centroid = (0.70592391522947817, -1.3338059740080981) +description = Bethel township, PA +station = ('kmui', 0.0019425011840099695) +zone = ('paz059', 0.0014648401037540978) + +[fips4207514160] +centroid = (0.70404018136780078, -1.3347757487536762) +description = Cleona borough, PA +station = ('kmui', 0.0020391575393893342) +zone = ('paz059', 0.00056247749211549953) + +[fips4207514944] +centroid = (0.70694556116042573, -1.3369651246739629) +description = Cold Spring township, PA +station = ('kmui', 0.0013380098229948531) +zone = ('paz057', 0.0028192924445926372) + +[fips4207516256] +centroid = (0.70267885945783026, -1.3336392252513627) +description = Cornwall borough, PA +station = ('klns', 0.0029207419535241716) +zone = ('paz059', 0.0019589343888595247) + +[fips4207521224] +centroid = (0.70521976214276105, -1.3368168938605911) +description = East Hanover township, PA +station = ('kmui', 0.00059769124389844486) +zone = ('paz059', 0.00193466435804169) + +[fips4207533608] +centroid = (0.70323706811249553, -1.3314523800584912) +description = Heidelberg township, PA +station = ('klns', 0.00307434161065469) +zone = ('paz059', 0.0026232561545687363) + +[fips4207537392] +centroid = (0.70478198120648339, -1.3321274385065778) +description = Jackson township, PA +station = ('kmui', 0.0033353505517917824) +zone = ('paz059', 0.0017771925884610313) + +[fips4207538400] +centroid = (0.70533952663603305, -1.3348405877353879) +description = Jonestown borough, PA +station = ('kmui', 0.001195788609407313) +zone = ('paz059', 0.00085563129355250048) + +[fips4207542168] +centroid = (0.70408662457919635, -1.3338283491291087) +description = Lebanon city, PA +station = ('kmui', 0.0024994673740108522) +zone = ('paz059', 0.0006498598758389113) + +[fips4207549560] +centroid = (0.70396165900475349, -1.330121077811655) +description = Millcreek township, PA +station = ('klns', 0.0039774982767523566) +zone = ('paz060', 0.0040445502048158484) + +[fips4207551568] +centroid = (0.7024175662155141, -1.3346790226065306) +description = Mount Gretna borough, PA +station = ('klns', 0.0032076653905352445) +zone = ('paz059', 0.0021308856982185315) + +[fips4207552488] +centroid = (0.70462675162281097, -1.3317835911906422) +description = Myerstown borough, PA +station = ('klns', 0.0044594527616525605) +zone = ('paz059', 0.0020246398769945412) + +[fips4207554720] +centroid = (0.70439053876184599, -1.3358994964458653) +description = North Annville township, PA +station = ('kmui', 0.0013467923047338142) +zone = ('paz059', 0.0011232012758621852) + +[fips4207554928] +centroid = (0.70360198155250253, -1.3343299043962542) +description = North Cornwall township, PA +station = ('kmui', 0.0025934457026258258) +zone = ('paz059', 0.00094221802587672121) + +[fips4207555160] +centroid = (0.70453461569159825, -1.3337962350708721) +description = North Lebanon township, PA +station = ('kmui', 0.0022582995090991631) +zone = ('paz059', 0.00048946362822477243) + +[fips4207555176] +centroid = (0.70375906118518194, -1.336553453863295) +description = North Londonderry township, PA +station = ('kmui', 0.0019425232898110268) +zone = ('paz059', 0.0017913160831604892) + +[fips4207557720] +centroid = (0.70354054596283233, -1.3368223567411499) +description = Palmyra borough, PA +station = ('kmui', 0.0021853127422411592) +zone = ('paz059', 0.0020739829683963278) + +[fips4207560] +centroid = (0.69482301032155613, -1.3462817096744011) +description = Bonneauville borough, PA +station = ('kdmw', 0.0038872204617770908) +zone = ('paz064', 0.0015274849531531427) + +[fips4207564560] +centroid = (0.70436929810484927, -1.3309330398862678) +description = Richland borough, PA +station = ('klns', 0.0042405390436456615) +zone = ('paz059', 0.0026765990796185023) + +[fips4207571928] +centroid = (0.7032043431890207, -1.3354440702308499) +description = South Annville township, PA +station = ('kmui', 0.0025824081604824494) +zone = ('paz059', 0.0015404493856637483) + +[fips4207572288] +centroid = (0.70347057571311988, -1.3331500967284913) +description = South Lebanon township, PA +station = ('kmui', 0.0032947283691700971) +zone = ('paz059', 0.0014524135417990666) + +[fips4207572296] +centroid = (0.7023112756640677, -1.3359173511641134) +description = South Londonderry township, PA +station = ('kmui', 0.0033988528636999631) +zone = ('paz059', 0.0024982904514530375) + +[fips4207575680] +centroid = (0.70569323506224213, -1.3347312428577505) +description = Swatara township, PA +station = ('kmui', 0.0012248528988431501) +zone = ('paz059', 0.0011740305682782705) + +[fips4207578376] +centroid = (0.70606432696780119, -1.3360219312928927) +description = Union township, PA +station = ('kmui', 0.00044193653959594202) +zone = ('paz059', 0.0019430120186822118) + +[fips4207582752] +centroid = (0.7028593265024865, -1.33432391791692) +description = West Cornwall township, PA +station = ('kmui', 0.0032251283652304074) +zone = ('paz059', 0.0016834957627198206) + +[fips4207583312] +centroid = (0.70412681951186973, -1.3342474201358052) +description = West Lebanon township, PA +station = ('kmui', 0.0022360587347324641) +zone = ('paz059', 0.00043863233999406616) + +[fips4207616] +centroid = (0.69526335689183427, -1.316769431206946) +description = Boothwyn CDP, PA +station = ('kilg', 0.0036064557857617922) +zone = ('paz070', 0.0015446262479612749) + +[fips4207688] +centroid = (0.70357150810376268, -1.3931832096249592) +description = Boston CDP, PA +station = ('kagc', 0.0014083051783223663) +zone = ('paz021', 0.0034516457589296849) + +[fips42077] +centroid = (0.7088522286484743, -1.3193053247969238) +description = Lehigh County, PA +station = ('kxll', 0.0015410465311067822) +zone = ('paz061', 3.316018984199686e-05) + +[fips4207700660] +centroid = (0.70697577280977764, -1.319471288155496) +description = Alburtis borough, PA +station = ('kxll', 0.0018312704034645806) +zone = ('paz061', 0.0018558879343368326) + +[fips4207702000] +centroid = (0.70849836314263248, -1.3173424053470832) +description = Allentown city, PA +station = ('kxll', 0.00044675953478128666) +zone = ('paz061', 0.0015494556140848289) + +[fips4207706088] +centroid = (0.70916422370556087, -1.3161144091386727) +description = Bethlehem city, PA +station = ('kabe', 0.00064011801305045466) +zone = ('paz062', 0.002512530109070675) + +[fips4207711720] +centroid = (0.70951777505213731, -1.317095336538171) +description = Catasauqua borough, PA +station = ('kabe', 0.00019000848947610708) +zone = ('paz061', 0.0018348969318045805) + +[fips4207712] +centroid = (0.70095012828702241, -1.3792894986611657) +description = Boswell borough, PA +station = ('kjst', 0.0037450546024280118) +zone = ('paz074', 0.0030364124871660007) + +[fips4207716056] +centroid = (0.70704111793697233, -1.3158235151122426) +description = Coopersburg borough, PA +station = ('kukt', 0.0013232186672806035) +zone = ('paz061', 0.0032121080568267026) + +[fips4207716128] +centroid = (0.70983778117049046, -1.3176458657441275) +description = Coplay borough, PA +station = ('kabe', 0.00070305668833161011) +zone = ('paz061', 0.0016319442541525256) + +[fips4207723584] +centroid = (0.70747249351489516, -1.317686636635454) +description = Emmaus borough, PA +station = ('kxll', 0.00061651156021159351) +zone = ('paz061', 0.0018465244757634525) + +[fips4207727008] +centroid = (0.70865278987484892, -1.3159098390970463) +description = Fountain Hill borough, PA +station = ('kabe', 0.0010901352334542393) +zone = ('paz062', 0.0028927727514444883) + +[fips4207732400] +centroid = (0.70949580135685464, -1.3167142264427054) +description = Hanover township, PA +station = ('kabe', 0.00010551945425332406) +zone = ('paz062', 0.0025343630800986278) + +[fips4207733616] +centroid = (0.71043025063837251, -1.3212093917443868) +description = Heidelberg township, PA +station = ('kabe', 0.0034403209002238019) +zone = ('paz061', 0.0021409540814715587) + +[fips4207744952] +centroid = (0.70740360536931901, -1.3189444256141962) +description = Lower Macungie township, PA +station = ('kxll', 0.0012576734698257863) +zone = ('paz061', 0.0014559660344684484) + +[fips4207744992] +centroid = (0.70630259931728345, -1.3173171853393919) +description = Lower Milford township, PA +station = ('kukt', 0.0013886848676929605) +zone = ('paz061', 0.0029557022569766402) + +[fips4207745168] +centroid = (0.70935514527243648, -1.3206809758600531) +description = Lowhill township, PA +station = ('kabe', 0.0029085513785315018) +zone = ('paz061', 0.0011482927877774886) + +[fips4207745656] +centroid = (0.70969621751486123, -1.3226548908841813) +description = Lynn township, PA +station = ('kxll', 0.0041992246345487327) +zone = ('paz061', 0.0026635045118612657) + +[fips4207746392] +centroid = (0.70713674452668907, -1.3186656267194827) +description = Macungie borough, PA +station = ('kxll', 0.0012687942460526994) +zone = ('paz061', 0.001767114142676903) + +[fips4207755576] +centroid = (0.70998588981081467, -1.319089794087595) +description = North Whitehall township, PA +station = ('kabe', 0.001773063913262663) +zone = ('paz061', 0.0011720817120031445) + +[fips4207767576] +centroid = (0.70858774145362702, -1.3164345025234883) +description = Salisbury township, PA +station = ('kabe', 0.00094313403476444456) +zone = ('paz061', 0.0022161823189973859) + +[fips4207771144] +centroid = (0.71128441477429849, -1.3196576020531463) +description = Slatington borough, PA +station = ('kabe', 0.0027922376527531739) +zone = ('paz061', 0.0024676515730820479) + +[fips4207772632] +centroid = (0.70891406566387249, -1.3185895652706807) +description = South Whitehall township, PA +station = ('kxll', 0.0011488255215399443) +zone = ('paz061', 0.0005731946929619624) + +[fips4207779104] +centroid = (0.70805813874540191, -1.3198941465266691) +description = Upper Macungie township, PA +station = ('kxll', 0.001781513217675093) +zone = ('paz061', 0.000879445682707526) + +[fips4207779160] +centroid = (0.70671044785688952, -1.3179891196481173) +description = Upper Milford township, PA +station = ('kxll', 0.0014098793568793648) +zone = ('paz061', 0.0023527085497490195) + +[fips4207779288] +centroid = (0.70751368328524233, -1.3160894683836617) +description = Upper Saucon township, PA +station = ('kxll', 0.0012452520329265455) +zone = ('paz061', 0.0027948737716458959) + +[fips4207781280] +centroid = (0.71104629950444898, -1.3201821956664181) +description = Washington township, PA +station = ('kabe', 0.0029739112724353743) +zone = ('paz061', 0.0023084167196859473) + +[fips4207782064] +centroid = (0.70866282551804793, -1.3214009939896709) +description = Weisenberg township, PA +station = ('kabe', 0.0035478857233776548) +zone = ('paz061', 0.0015762600652448485) + +[fips4207784528] +centroid = (0.70960598399253316, -1.3177978490153912) +description = Whitehall township, PA +station = ('kabe', 0.00073000157942799179) +zone = ('paz061', 0.0014024797745163327) + +[fips4207800] +centroid = (0.70661515287973065, -1.3219678420241336) +description = Bowers CDP, PA +station = ('krdg', 0.0036275928939097828) +zone = ('paz061', 0.0029830654705456055) + +[fips4207880] +centroid = (0.71211955482137779, -1.3205355899333622) +description = Bowmanstown borough, PA +station = ('kabe', 0.0038450010328205109) +zone = ('paz054', 0.0021344241987524245) + +[fips4207896] +centroid = (0.70166918648555154, -1.326794043925041) +description = Bowmansville CDP, PA +station = ('krdg', 0.0029478640492483599) +zone = ('paz060', 0.0039330058937382647) + +[fips42079] +centroid = (0.71860069537231852, -1.32603196336045) +description = Luzerne County, PA +station = ('kavp', 0.0042418404600530783) +zone = ('paz047', 0.00018573209572451534) + +[fips4207903272] +centroid = (0.71929833838092572, -1.3246956520186604) +description = Ashley borough, PA +station = ('kavp', 0.0030295007980200898) +zone = ('paz047', 0.0013283863403229152) + +[fips4207903640] +centroid = (0.72148560245281745, -1.3219526052997637) +description = Avoca borough, PA +station = ('kavp', 0.00014382818631138584) +zone = ('paz044', 0.0024532718138476372) + +[fips4207904592] +centroid = (0.7191226360851275, -1.3216372243039283) +description = Bear Creek township, PA +station = ('kavp', 0.0022832431959879992) +zone = ('paz047', 0.0035045017379379791) + +[fips4207904599] +centroid = (0.71878299501268927, -1.3221003648742375) +description = Bear Creek Village borough, PA +station = ('kavp', 0.0026297338181934717) +zone = ('paz047', 0.0031298532374494288) + +[fips4207906672] +centroid = (0.71510666838287351, -1.3292749247369957) +description = Black Creek township, PA +station = ('kavp', 0.0084469912592050733) +zone = ('paz047', 0.0042343842571251926) + +[fips4207909760] +centroid = (0.71863272216409269, -1.3203999953037744) +description = Buck township, PA +station = ('kavp', 0.0029621938127170687) +zone = ('paz047', 0.0044083697974425205) + +[fips4207910480] +centroid = (0.71624793918075269, -1.3260029908948667) +description = Butler township, PA +station = ('kavp', 0.0060494744514968477) +zone = ('paz047', 0.0024372740884889051) + +[fips4207915888] +centroid = (0.71542934485498222, -1.3274886849673346) +description = Conyngham borough, PA +station = ('kavp', 0.0073517914781328899) +zone = ('paz047', 0.0033785353094200844) + +[fips4207915904] +centroid = (0.71794848328414085, -1.3284014223529574) +description = Conyngham township, PA +station = ('kavp', 0.0060503612509270437) +zone = ('paz047', 0.0017719591439218493) + +[fips4207916568] +centroid = (0.72055619717283803, -1.3249525993911391) +description = Courtdale borough, PA +station = ('kavp', 0.0025176875155114927) +zone = ('paz047', 0.0021190285664694046) + +[fips4207918048] +centroid = (0.72137110885388667, -1.3259765840632844) +description = Dallas borough, PA +station = ('kavp', 0.003139304177502261) +zone = ('paz047', 0.0027016004560634524) + +[fips4207918056] +centroid = (0.72179764986978157, -1.3258642895792108) +description = Dallas township, PA +station = ('kavp', 0.0030796732618574066) +zone = ('paz043', 0.0029098455547231527) + +[fips4207918868] +centroid = (0.71728951677175778, -1.3236032853464224) +description = Dennison township, PA +station = ('kavp', 0.0043320845740401183) +zone = ('paz047', 0.0024331052912775633) + +[fips4207919616] +centroid = (0.71745254797718661, -1.3263092961785918) +description = Dorrance township, PA +station = ('kavp', 0.0052085342211517192) +zone = ('paz047', 0.0012258137568867079) + +[fips4207920424] +centroid = (0.7212342575872378, -1.3219487830287018) +description = Dupont borough, PA +station = ('kavp', 0.00020384250226030543) +zone = ('paz044', 0.0026344415343886487) + +[fips4207920512] +centroid = (0.7218044392005718, -1.3224914931596092) +description = Duryea borough, PA +station = ('kavp', 0.00065875806560602654) +zone = ('paz044', 0.0025672515340020331) + +[fips4207922672] +centroid = (0.72009923506808093, -1.3248760667034392) +description = Edwardsville borough, PA +station = ('kavp', 0.0026559536461976574) +zone = ('paz047', 0.0017603790410768425) + +[fips4207924392] +centroid = (0.72140879051243723, -1.3233369481025681) +description = Exeter borough, PA +station = ('kavp', 0.0011570646201900024) +zone = ('paz047', 0.0035037308978560378) + +[fips4207924400] +centroid = (0.72227133222877293, -1.3236326243311483) +description = Exeter township, PA +station = ('kavp', 0.0016293559528846281) +zone = ('paz043', 0.0033158230023954505) + +[fips4207924752] +centroid = (0.72067849239352533, -1.3310427687363406) +description = Fairmount township, PA +station = ('kipt', 0.00860399306837481) +zone = ('paz042', 0.004225729558702482) + +[fips4207924888] +centroid = (0.71835039770428999, -1.3239805557175335) +description = Fairview township, PA +station = ('kavp', 0.0034662340246856449) +zone = ('paz047', 0.0017442822004376946) + +[fips4207926880] +centroid = (0.72053525322181411, -1.3242149010761988) +description = Forty Fort borough, PA +station = ('kavp', 0.0020134513452094321) +zone = ('paz047', 0.0024099667037643991) + +[fips4207926928] +centroid = (0.71573540579261197, -1.3239835751371394) +description = Foster township, PA +station = ('kavp', 0.0059017286937599828) +zone = ('paz054', 0.0025271245050810507) + +[fips4207927424] +centroid = (0.72230739073111905, -1.3246873093448361) +description = Franklin township, PA +station = ('kavp', 0.0023511483224530508) +zone = ('paz043', 0.0027875341748191747) + +[fips4207927744] +centroid = (0.7159553696382408, -1.3246407265071003) +description = Freeland borough, PA +station = ('kavp', 0.0058530749622226624) +zone = ('paz047', 0.0029822350992873064) + +[fips4207932416] +centroid = (0.71907928210650796, -1.3254452011192219) +description = Hanover township, PA +station = ('kavp', 0.0035947178796439648) +zone = ('paz047', 0.00073076138833541495) + +[fips4207933000] +centroid = (0.72195052325896381, -1.3272299399057264) +description = Harveys Lake borough, PA +station = ('kavp', 0.004115849489454205) +zone = ('paz043', 0.0027074672956303768) + +[fips4207933376] +centroid = (0.71486043733200222, -1.3266981206293511) +description = Hazle township, PA +station = ('kavp', 0.0075119011748491626) +zone = ('paz047', 0.0038317722785730338) + +[fips4207933408] +centroid = (0.71471972888770641, -1.3259682937493371) +description = Hazleton city, PA +station = ('kavp', 0.0073848039655062467) +zone = ('paz047', 0.0039639484832222991) + +[fips4207935192] +centroid = (0.71677586637289592, -1.3278473501286194) +description = Hollenback township, PA +station = ('kavp', 0.006491401602529874) +zone = ('paz047', 0.0022479270547839749) + +[fips4207936152] +centroid = (0.72132812139441005, -1.3224312443938306) +description = Hughestown borough, PA +station = ('kavp', 0.0004827967576745872) +zone = ('paz044', 0.0028228463767570643) + +[fips4207936296] +centroid = (0.71954767611786563, -1.3282748161690179) +description = Hunlock township, PA +station = ('kavp', 0.0052101961045681253) +zone = ('paz047', 0.0017501025326211064) + +[fips4207936432] +centroid = (0.71873854147664107, -1.3307659246103893) +description = Huntington township, PA +station = ('kavp', 0.007250425847623216) +zone = ('paz053', 0.0031027306553429467) + +[fips4207937400] +centroid = (0.72046655706245566, -1.3261217954570503) +description = Jackson township, PA +station = ('kavp', 0.0033816491394524622) +zone = ('paz047', 0.0017917068078625766) + +[fips4207937792] +centroid = (0.71541676103107543, -1.3246363457306778) +description = Jeddo borough, PA +station = ('kavp', 0.0063564645989487916) +zone = ('paz054', 0.0027704213154235093) + +[fips4207937984] +centroid = (0.72052406566130889, -1.322000793840411) +description = Jenkins township, PA +station = ('kavp', 0.00089205373986435378) +zone = ('paz044', 0.0032238571540868979) + +[fips4207939784] +centroid = (0.72020582232550023, -1.3244705743583234) +description = Kingston borough, PA +station = ('kavp', 0.0023388121965276045) +zone = ('paz047', 0.0020346082564336558) + +[fips4207939792] +centroid = (0.72124404888434157, -1.3248327825379898) +description = Kingston township, PA +station = ('kavp', 0.0022859191062077288) +zone = ('paz047', 0.0027806123930139114) + +[fips4207940848] +centroid = (0.72063985080388615, -1.3228585359013039) +description = Laflin borough, PA +station = ('kavp', 0.0011040712251691282) +zone = ('paz047', 0.0032217840844201155) + +[fips4207940920] +centroid = (0.72160424993536809, -1.3280966180523892) +description = Lake township, PA +station = ('kavp', 0.0047348596638460694) +zone = ('paz043', 0.0031951922501605437) + +[fips4207941608] +centroid = (0.72020168589517297, -1.3252307874206146) +description = Larksville borough, PA +station = ('kavp', 0.0028462854906951157) +zone = ('paz047', 0.0017081327698182215) + +[fips4207941848] +centroid = (0.71941490892166637, -1.3237374662593158) +description = Laurel Run borough, PA +station = ('kavp', 0.002465849798809244) +zone = ('paz047', 0.0020337205767615948) + +[fips4207942504] +centroid = (0.72078523673057726, -1.3271406837677793) +description = Lehman township, PA +station = ('kavp', 0.0040615076644984456) +zone = ('paz047', 0.0022099140062855479) + +[fips4207945568] +centroid = (0.72058970749447637, -1.3246460497613191) +description = Luzerne borough, PA +station = ('kavp', 0.0022899896755273859) +zone = ('paz047', 0.0022633059762069332) + +[fips4207952584] +centroid = (0.71908378505597803, -1.3264450653411044) +description = Nanticoke city, PA +station = ('kavp', 0.0041938844780355922) +zone = ('paz047', 0.00043014892657180343) + +[fips4207952984] +centroid = (0.71649106354555536, -1.3301414283507331) +description = Nescopeck borough, PA +station = ('kavp', 0.0079725614683268334) +zone = ('paz053', 0.0025502893982946775) + +[fips4207952992] +centroid = (0.71620201956813268, -1.3292608573832245) +description = Nescopeck township, PA +station = ('kavp', 0.0076556698622165598) +zone = ('paz047', 0.003354648096444748) + +[fips4207953448] +centroid = (0.71860790358212934, -1.3314586283372132) +description = New Columbus borough, PA +station = ('kavp', 0.0077834433754760965) +zone = ('paz053', 0.0026733500105549689) + +[fips4207953960] +centroid = (0.71869606016264753, -1.3273359337512001) +description = Newport township, PA +station = ('kavp', 0.004967028041664736) +zone = ('paz047', 0.00081266545710364591) + +[fips4207955752] +centroid = (0.71832891270119803, -1.3260525756989161) +description = Nuangola borough, PA +station = ('kavp', 0.004437516933986029) +zone = ('paz047', 0.00038109100859631199) + +[fips4207959054] +centroid = (0.71759557770938753, -1.3224872694628196) +description = Penn Lake Park borough, PA +station = ('kavp', 0.0038425156781028511) +zone = ('paz047', 0.0030376436527213137) + +[fips4207960] +centroid = (0.70393134263564638, -1.3201244078148846) +description = Boyertown borough, PA +station = ('kptw', 0.0020838118317779023) +zone = ('paz068', 0.0041774245170319527) + +[fips4207961048] +centroid = (0.72131068555518263, -1.3227154887158106) +description = Pittston city, PA +station = ('kavp', 0.0006965504843889841) +zone = ('paz044', 0.0029961130341790189) + +[fips4207961056] +centroid = (0.72089868313195682, -1.3213870313556551) +description = Pittston township, PA +station = ('kavp', 0.00059029155518918711) +zone = ('paz044', 0.0026629754357080032) + +[fips4207961120] +centroid = (0.72028752118778605, -1.3232594903903645) +description = Plains township, PA +station = ('kavp', 0.0015660448242622665) +zone = ('paz047', 0.002769989638914261) + +[fips4207961648] +centroid = (0.71980594994057578, -1.3255879865053277) +description = Plymouth borough, PA +station = ('kavp', 0.0032662446437927862) +zone = ('paz047', 0.0012352509505422836) + +[fips4207961656] +centroid = (0.71970250427581006, -1.326967198040131) +description = Plymouth township, PA +station = ('kavp', 0.0042415276974074358) +zone = ('paz047', 0.0011558887297748565) + +[fips4207962712] +centroid = (0.72042384885565924, -1.324730576056993) +description = Pringle borough, PA +station = ('kavp', 0.0024120218154789412) +zone = ('paz047', 0.0020895160004978093) + +[fips4207964424] +centroid = (0.71835706486203266, -1.3251225770069908) +description = Rice township, PA +station = ('kavp', 0.0039410868920169238) +zone = ('paz047', 0.00091183664136963586) + +[fips4207966272] +centroid = (0.72076935423438404, -1.3296332582857224) +description = Ross township, PA +station = ('kavp', 0.0059204377905177213) +zone = ('paz047', 0.0032898158902795634) + +[fips4207967456] +centroid = (0.71743483288527887, -1.3296553541540528) +description = Salem township, PA +station = ('kavp', 0.0071198618038418038) +zone = ('paz047', 0.002845427469737758) + +[fips4207970224] +centroid = (0.71827595941169253, -1.3290845965820657) +description = Shickshinny borough, PA +station = ('kavp', 0.0063096064211702885) +zone = ('paz047', 0.0021665921506800311) + +[fips4207971216] +centroid = (0.71808903464880391, -1.3270408160279803) +description = Slocum township, PA +station = ('kavp', 0.0051512530816168085) +zone = ('paz047', 0.00083380055386932464) + +[fips4207975064] +centroid = (0.71559241096699611, -1.328047504487238) +description = Sugarloaf township, PA +station = ('kavp', 0.0074771096885233521) +zone = ('paz047', 0.0033676762280748771) + +[fips4207975072] +centroid = (0.71896290355198489, -1.3252519059045638) +description = Sugar Notch borough, PA +station = ('kavp', 0.0035638625198181222) +zone = ('paz047', 0.00080804003613363449) + +[fips4207975832] +centroid = (0.72077774926808613, -1.3243534104056371) +description = Swoyersville borough, PA +station = ('kavp', 0.0020199473405805397) +zone = ('paz047', 0.0025412924674409962) + +[fips4207976] +centroid = (0.70874455928691882, -1.3917330155494769) +description = Brackenridge borough, PA +station = ('kbtp', 0.0041288660642557293) +zone = ('paz021', 0.0040134271584893865) + +[fips4207978384] +centroid = (0.71907717025811302, -1.3290954874365981) +description = Union township, PA +station = ('kavp', 0.0059591374864706058) +zone = ('paz047', 0.002173488732889548) + +[fips4207981080] +centroid = (0.71886324525169598, -1.325586520428756) +description = Warrior Run borough, PA +station = ('kavp', 0.0038168196260159751) +zone = ('paz047', 0.0005372857872228946) + +[fips4207983136] +centroid = (0.71505963175953224, -1.3266780318896607) +description = West Hazleton borough, PA +station = ('kavp', 0.0073313131280959946) +zone = ('paz047', 0.0036320135037771167) + +[fips4207983856] +centroid = (0.72133691785384013, -1.3229589795997561) +description = West Pittston borough, PA +station = ('kavp', 0.00087574672837038186) +zone = ('paz044', 0.0031236041044430422) + +[fips4207984272] +centroid = (0.72119961280158573, -1.3239690889043476) +description = West Wyoming borough, PA +station = ('kavp', 0.0016444553215310743) +zone = ('paz047', 0.0030524746501202245) + +[fips4207984552] +centroid = (0.71661344603270527, -1.3227019449608151) +description = White Haven borough, PA +station = ('kavp', 0.004837579715029283) +zone = ('paz054', 0.0026529501331078935) + +[fips4207985152] +centroid = (0.71988829457468484, -1.3242805952692436) +description = Wilkes-Barre city, PA +station = ('kavp', 0.0024039052810868548) +zone = ('paz047', 0.0019170217393730277) + +[fips4207985160] +centroid = (0.71966461317774921, -1.3239959495215361) +description = Wilkes-Barre township, PA +station = ('kavp', 0.0023987562544986792) +zone = ('paz047', 0.0019663276751324889) + +[fips4207986584] +centroid = (0.71772555237878355, -1.3247007309267838) +description = Wright township, PA +station = ('kavp', 0.0042771896288341426) +zone = ('paz047', 0.0015096289857371456) + +[fips4207986856] +centroid = (0.72092006341529391, -1.3237080749147119) +description = Wyoming borough, PA +station = ('kavp', 0.00151498214049372) +zone = ('paz047', 0.0029496032098751783) + +[fips4207986952] +centroid = (0.72088557570927436, -1.3226527266759087) +description = Yatesville borough, PA +station = ('kavp', 0.00082551755846085287) +zone = ('paz044', 0.0032496281347201761) + +[fips4207992] +centroid = (0.70514331672152375, -1.3939704229307786) +description = Braddock borough, PA +station = ('kagc', 0.0011060822349510738) +zone = ('paz021', 0.0018991178844899) + +[fips4208008] +centroid = (0.70536556694847274, -1.3938424204834372) +description = Braddock Hills borough, PA +station = ('kagc', 0.0013446828894536937) +zone = ('paz021', 0.0018536950342923286) + +[fips4208024] +centroid = (0.70377995277632843, -1.3847486616686011) +description = Bradenville CDP, PA +station = ('klbe', 0.0010615242855565395) +zone = ('paz074', 0.0020820624406042796) + +[fips4208040] +centroid = (0.73235741544312283, -1.3725432076902619) +description = Bradford city, PA +station = ('kbfd', 0.0028115230315140204) +zone = ('paz005', 0.0028323234394411565) + +[fips4208064] +centroid = (0.70924831366892194, -1.3976753380537421) +description = Bradford Woods borough, PA +station = ('kbtp', 0.0030867020082104612) +zone = ('paz021', 0.0032185880420612426) + +[fips42081] +centroid = (0.72158236350654803, -1.3448678708072381) +description = Lycoming County, PA +station = ('kipt', 0.0024438613416673089) +zone = ('paz041', 0.0021084332552075828) + +[fips4208102656] +centroid = (0.72064548821737018, -1.3468712818957249) +description = Anthony township, PA +station = ('kipt', 0.0033960972780957941) +zone = ('paz041', 0.0023835348783171856) + +[fips4208103072] +centroid = (0.71896194362089638, -1.3442761343776419) +description = Armstrong township, PA +station = ('kipt', 0.0016915900685574067) +zone = ('paz046', 0.0015160231448423495) + +[fips4208104424] +centroid = (0.7188525114767963, -1.3458718190995704) +description = Bastress township, PA +station = ('kipt', 0.0027980838619191479) +zone = ('paz046', 0.0026858198353079477) + +[fips4208108136] +centroid = (0.71851875216393746, -1.3428695211735822) +description = Brady township, PA +station = ('kipt', 0.0014641379098014103) +zone = ('paz046', 0.001107415546249105) + +[fips4208109280] +centroid = (0.72449818036809999, -1.3525682285604521) +description = Brown township, PA +station = ('kipt', 0.0088516099951088823) +zone = ('paz041', 0.0044854574287876486) + +[fips4208111560] +centroid = (0.72357753664096547, -1.3416983703389089) +description = Cascade township, PA +station = ('kipt', 0.0036727086639156731) +zone = ('paz041', 0.003946939073631783) + +[fips4208114336] +centroid = (0.71913350948636745, -1.342104805161821) +description = Clinton township, PA +station = ('kipt', 0.0008549604144937865) +zone = ('paz046', 0.00050754280738313359) + +[fips4208114872] +centroid = (0.72258962792445913, -1.3462900523482257) +description = Cogan House township, PA +station = ('kipt', 0.0039110788389577636) +zone = ('paz041', 0.00064092033504656613) + +[fips4208117696] +centroid = (0.72170963291560353, -1.3497210729516738) +description = Cummings township, PA +station = ('kipt', 0.0057400458663132087) +zone = ('paz041', 0.0024860109130346426) + +[fips4208120144] +centroid = (0.71948013187581339, -1.3445658241268881) +description = Duboistown borough, PA +station = ('kipt', 0.0016592016107608994) +zone = ('paz046', 0.0016063097888548027) + +[fips4208122880] +centroid = (0.72118919318595143, -1.3433225737408148) +description = Eldred township, PA +station = ('kipt', 0.0014037782548442256) +zone = ('paz046', 0.0017454499034393197) + +[fips4208124592] +centroid = (0.72012213378786705, -1.3417653211690155) +description = Fairfield township, PA +station = ('kipt', 0.0005426322526184094) +zone = ('paz046', 0.0007418944525456702) + +[fips4208127432] +centroid = (0.71957184892800585, -1.3368205066921426) +description = Franklin township, PA +station = ('kipt', 0.0042491935835761094) +zone = ('paz051', 0.003599241218849864) + +[fips4208128352] +centroid = (0.7220170377567573, -1.3429772778016003) +description = Gamble township, PA +station = ('kipt', 0.0021064244905674339) +zone = ('paz046', 0.0024743768893817804) + +[fips4208133944] +centroid = (0.72122352381233812, -1.3445025559415034) +description = Hepburn township, PA +station = ('kipt', 0.0020017643129583754) +zone = ('paz046', 0.0022648146460510139) + +[fips4208136160] +centroid = (0.71975718544127509, -1.3391104310306368) +description = Hughesville borough, PA +station = ('kipt', 0.0025176068883578672) +zone = ('paz046', 0.0025058932566232131) + +[fips4208137408] +centroid = (0.72455478139574203, -1.3458648028759774) +description = Jackson township, PA +station = ('kipt', 0.0052714165672750005) +zone = ('paz041', 0.0017160430138885329) + +[fips4208138128] +centroid = (0.71908841017849578, -1.3485560307693827) +description = Jersey Shore borough, PA +station = ('kipt', 0.0046729737189981921) +zone = ('paz045', 0.0026129288936799664) + +[fips4208138448] +centroid = (0.71982918027291987, -1.3356471043827345) +description = Jordan township, PA +station = ('kipt', 0.0051156485820682933) +zone = ('paz042', 0.0035454641300001833) + +[fips4208142944] +centroid = (0.72299557405518033, -1.3448146382650525) +description = Lewis township, PA +station = ('kipt', 0.0035271013479976341) +zone = ('paz041', 0.0015733405334958357) + +[fips4208143352] +centroid = (0.7180156261004651, -1.3466789291588626) +description = Limestone township, PA +station = ('kipt', 0.0037236910176640203) +zone = ('paz045', 0.0031170432808805167) + +[fips4208145224] +centroid = (0.72026408141593179, -1.3435972536584937) +description = Loyalsock township, PA +station = ('kipt', 0.00091906752165620269) +zone = ('paz046', 0.001112505731588296) + +[fips4208145584] +centroid = (0.72103602309079629, -1.3457347234868264) +description = Lycoming township, PA +station = ('kipt', 0.0026980623018375985) +zone = ('paz041', 0.002180012208311142) + +[fips4208146184] +centroid = (0.72261320732265355, -1.3518017672194387) +description = McHenry township, PA +station = ('kipt', 0.0075120506221677324) +zone = ('paz041', 0.0036901689563226931) + +[fips4208146208] +centroid = (0.72444035760998138, -1.3434878040611011) +description = McIntyre township, PA +station = ('kipt', 0.0045591570355324193) +zone = ('paz041', 0.0029288186584042271) + +[fips4208146352] +centroid = (0.72514833296776027, -1.3414366233109873) +description = McNett township, PA +station = ('kipt', 0.0052551842031989425) +zone = ('paz041', 0.0046171963123649096) + +[fips4208149280] +centroid = (0.72080448771222683, -1.348236478436635) +description = Mifflin township, PA +station = ('kipt', 0.0044330212780315471) +zone = ('paz041', 0.0024362153244334283) + +[fips4208149568] +centroid = (0.72081768240137178, -1.3403144289618325) +description = Mill Creek township, PA +station = ('kipt', 0.0018247174242794191) +zone = ('paz046', 0.0020195689659707472) + +[fips4208150632] +centroid = (0.71859216071227627, -1.3416578612469703) +description = Montgomery borough, PA +station = ('kipt', 0.0014810306284475407) +zone = ('paz046', 0.0011445663066983254) + +[fips4208150720] +centroid = (0.71988710775079356, -1.3424496647687225) +description = Montoursville borough, PA +station = ('kipt', 6.1210261114179939e-05) +zone = ('paz046', 0.0003107709987468382) + +[fips4208150936] +centroid = (0.71898407439581158, -1.3377935975632997) +description = Moreland township, PA +station = ('kipt', 0.0036319917552035041) +zone = ('paz051', 0.0029126226339994585) + +[fips4208152264] +centroid = (0.71911336838679929, -1.3401599149631536) +description = Muncy borough, PA +station = ('kipt', 0.0019134912289351302) +zone = ('paz046', 0.0017722206755250659) + +[fips4208152280] +centroid = (0.72002217878160535, -1.3405058392208988) +description = Muncy township, PA +station = ('kipt', 0.0014628265534296671) +zone = ('paz046', 0.0015167619277988242) + +[fips4208152288] +centroid = (0.71898929293027503, -1.3397532881540239) +description = Muncy Creek township, PA +station = ('kipt', 0.0022430159959142665) +zone = ('paz046', 0.0021003796491336369) + +[fips4208154504] +centroid = (0.71883072976773132, -1.3476469585751887) +description = Nippenose township, PA +station = ('kipt', 0.004066469566417358) +zone = ('paz045', 0.0028891282975414775) + +[fips4208156608] +centroid = (0.72011777046473713, -1.3451881736315643) +description = Old Lycoming township, PA +station = ('kipt', 0.0020661645744234291) +zone = ('paz046', 0.0021404645865383716) + +[fips4208158848] +centroid = (0.7204617225004275, -1.3376728033257692) +description = Penn township, PA +station = ('kipt', 0.0036267104569790575) +zone = ('paz042', 0.0033767884858031728) + +[fips4208160128] +centroid = (0.71967501534009115, -1.3475870763285527) +description = Piatt township, PA +station = ('kipt', 0.0038730636535405875) +zone = ('paz041', 0.0033918483406474957) + +[fips4208160136] +centroid = (0.72043137122473533, -1.3387735824850018) +description = Picture Rocks borough, PA +station = ('kipt', 0.0028047127530058352) +zone = ('paz046', 0.0028815868509718305) + +[fips4208160328] +centroid = (0.7239196037210639, -1.3486253901538567) +description = Pine township, PA +station = ('kipt', 0.0061040022074759564) +zone = ('paz041', 0.0015626137370442625) + +[fips4208161640] +centroid = (0.72198879832946006, -1.3405999124675814) +description = Plunketts Creek township, PA +station = ('kipt', 0.0024683968683277607) +zone = ('paz046', 0.002778036585804125) + +[fips4208162184] +centroid = (0.71931673415124175, -1.3488149154573308) +description = Porter township, PA +station = ('kipt', 0.0048288889769076597) +zone = ('paz045', 0.0027011194230334543) + +[fips4208167616] +centroid = (0.72048369619571029, -1.3479488132693214) +description = Salladasburg borough, PA +station = ('kipt', 0.0041684667609826892) +zone = ('paz041', 0.0026613598759857048) + +[fips4208170552] +centroid = (0.7210982266253374, -1.3383234271643276) +description = Shrewsbury township, PA +station = ('kipt', 0.0033066515008354606) +zone = ('paz042', 0.003165385659298932) + +[fips4208172648] +centroid = (0.7195885691822399, -1.3439118143495807) +description = South Williamsport borough, PA +station = ('kipt', 0.001157249685872966) +zone = ('paz046', 0.0011115332704483769) + +[fips4208175544] +centroid = (0.71917714271766731, -1.346243940749388) +description = Susquehanna township, PA +station = ('kipt', 0.0029564389650706536) +zone = ('paz046', 0.0028936310737375038) + +[fips4208179024] +centroid = (0.72099952825613711, -1.3415780473402765) +description = Upper Fairfield township, PA +station = ('kipt', 0.0012383527755019323) +zone = ('paz046', 0.0015616302119263316) + +[fips4208181288] +centroid = (0.7176624936329089, -1.3447850200276459) +description = Washington township, PA +station = ('kipt', 0.0028836745074062352) +zone = ('paz046', 0.0026068031900884497) + +[fips4208181576] +centroid = (0.72013843516308074, -1.3500054219934088) +description = Watson township, PA +station = ('kipt', 0.0056838574403164036) +zone = ('paz045', 0.0032049251857363221) + +[fips4208185312] +centroid = (0.71977411513501932, -1.344524704169711) +description = Williamsport city, PA +station = ('kipt', 0.0015703458377306289) +zone = ('paz046', 0.0015846457045999368) + +[fips4208185984] +centroid = (0.72005380414765152, -1.3391912921348816) +description = Wolf township, PA +station = ('kipt', 0.0024514936964889346) +zone = ('paz046', 0.0024845153033146283) + +[fips4208186456] +centroid = (0.7197907132162058, -1.3465786599933354) +description = Woodward township, PA +station = ('kipt', 0.0031089911989000576) +zone = ('paz041', 0.0032477958624025317) + +[fips4208208] +centroid = (0.70988113514911, -1.332074205964392) +description = Branchdale CDP, PA +station = ('kmui', 0.0052945843431986359) +zone = ('paz058', 0.0015173254329667292) + +[fips4208240] +centroid = (0.71314250974926419, -1.329397865729506) +description = Brandonville CDP, PA +station = ('krdg', 0.0090184338247780368) +zone = ('paz058', 0.0027616307318029808) + +[fips42083] +centroid = (0.72980227087149574, -1.3713481807514214) +description = McKean County, PA +station = ('kbfd', 0.00083182932309751193) +zone = ('paz005', 0.00012678149472038029) + +[fips4208302576] +centroid = (0.73110058639546927, -1.3664460744813449) +description = Annin township, PA +station = ('kelz', 0.0052793042997199514) +zone = ('paz005', 0.0038749281500963071) + +[fips4208308040] +centroid = (0.73235741544312283, -1.3725432076902619) +description = Bradford city, PA +station = ('kbfd', 0.0028115230315140204) +zone = ('paz005', 0.0028323234394411565) + +[fips4208308048] +centroid = (0.73158908659980992, -1.3733636869716244) +description = Bradford township, PA +station = ('kbfd', 0.0021613612113448679) +zone = ('paz005', 0.0024536830004450432) + +[fips4208312] +centroid = (0.69343315227831537, -1.4008042072570848) +description = Brave CDP, PA +station = ('kmgw', 0.0048240697820933279) +zone = ('paz031', 0.0022042867603564425) + +[fips4208312408] +centroid = (0.73241649483830285, -1.3658774113044601) +description = Ceres township, PA +station = ('kelz', 0.0041082553750709239) +zone = ('paz005', 0.0048673735880304693) + +[fips4208316352] +centroid = (0.7319166849004094, -1.3764652068655883) +description = Corydon township, PA +station = ('kbfd', 0.0038378880480711285) +zone = ('paz005', 0.0044552935201840676) + +[fips4208322888] +centroid = (0.73227362218573466, -1.3679796952950722) +description = Eldred borough, PA +station = ('kbfd', 0.0042795973725234622) +zone = ('paz005', 0.0035739728989887623) + +[fips4208322896] +centroid = (0.73199843612257276, -1.3682959664088261) +description = Eldred township, PA +station = ('kbfd', 0.0039235671394728657) +zone = ('paz005', 0.0032125399603026373) + +[fips4208326936] +centroid = (0.73237165732981913, -1.372135935109309) +description = Foster township, PA +station = ('kbfd', 0.002831422770614832) +zone = ('paz005', 0.0027610743288839666) + +[fips4208332168] +centroid = (0.72940698870250398, -1.376824133826261) +description = Hamilton township, PA +station = ('kbfd', 0.0032934169083698155) +zone = ('paz005', 0.0041365244977665302) + +[fips4208332232] +centroid = (0.72842122674097765, -1.3713361379795825) +description = Hamlin township, PA +station = ('kbfd', 0.0013823763876004928) +zone = ('paz005', 0.0012630521480362514) + +[fips4208338688] +centroid = (0.7271566658847376, -1.3754768094568914) +description = Kane borough, PA +station = ('kbfd', 0.0033094980844798755) +zone = ('paz005', 0.0040197078371517203) + +[fips4208338912] +centroid = (0.73012074110010705, -1.3700107000390329) +description = Keating township, PA +station = ('kbfd', 0.0018781634288185726) +zone = ('paz005', 0.001047226823627636) + +[fips4208340808] +centroid = (0.72972938592193248, -1.373298114951627) +description = Lafayette township, PA +station = ('kbfd', 0.00068610391821644198) +zone = ('paz005', 0.0014991675222893258) + +[fips4208342984] +centroid = (0.73072020933828963, -1.3727649866783127) +description = Lewis Run borough, PA +station = ('kbfd', 0.001201949416109469) +zone = ('paz005', 0.0015118059317192373) + +[fips4208343096] +centroid = (0.72909337048921319, -1.3664391106176295) +description = Liberty township, PA +station = ('kbfd', 0.0044755917652335216) +zone = ('paz005', 0.0036629418815534898) + +[fips4208351632] +centroid = (0.72831526780208911, -1.372526993581511) +description = Mount Jewett borough, PA +station = ('kbfd', 0.0012354153886858989) +zone = ('paz005', 0.0016513885091618667) + +[fips4208355632] +centroid = (0.72729379640406688, -1.3675242690800569) +description = Norwich township, PA +station = ('kbfd', 0.0042866223099927991) +zone = ('paz005', 0.0036875587061190825) + +[fips4208357312] +centroid = (0.73207165268469399, -1.3697899158886557) +description = Otto township, PA +station = ('kbfd', 0.0031904178306067597) +zone = ('paz005', 0.0026354936228126956) + +[fips4208362088] +centroid = (0.72981286502005527, -1.3661821108852734) +description = Port Allegany borough, PA +station = ('kelz', 0.0061305802739869729) +zone = ('paz005', 0.0038076283999146678) + +[fips4208369304] +centroid = (0.72725422978992427, -1.3712234246164887) +description = Sergeant township, PA +station = ('kbfd', 0.0024585522807206756) +zone = ('paz005', 0.0024300071812314058) + +[fips4208371248] +centroid = (0.72965662314541679, -1.3690907369903069) +description = Smethport borough, PA +station = ('kbfd', 0.0024771327108094087) +zone = ('paz005', 0.0016378582474720176) + +[fips4208384312] +centroid = (0.72734489964456528, -1.3759190758893469) +description = Wetmore township, PA +station = ('kbfd', 0.0034214544295022142) +zone = ('paz005', 0.0041728139794625667) + +[fips4208392] +centroid = (0.70753005447362594, -1.3200584692757444) +description = Breinigsville CDP, PA +station = ('kxll', 0.0019843813423397294) +zone = ('paz061', 0.0014098592500510544) + +[fips4208416] +centroid = (0.70464821917261045, -1.3958408224769707) +description = Brentwood borough, PA +station = ('kagc', 0.00088574420326597918) +zone = ('paz021', 0.0016671367674856942) + +[fips4208432] +centroid = (0.70217896225347398, -1.3407458219930479) +description = Bressler CDP, PA +station = ('kcxy', 0.00049031996652221038) +zone = ('paz057', 0.0032482148005294463) + +[fips4208472] +centroid = (0.71644437598806465, -1.3314072807506199) +description = Briar Creek borough, PA +station = ('kseg', 0.0086889455146162437) +zone = ('paz053', 0.0015950831040110823) + +[fips42085] +centroid = (0.72082122541975335, -1.4006753495984101) +description = Mercer County, PA +station = ('kucp', 0.0052385689745522964) +zone = ('paz007', 7.4880261022489323e-05) + +[fips4208504] +centroid = (0.70209061368673809, -1.3314503380232663) +description = Brickerville CDP, PA +station = ('klns', 0.0019311251157956) +zone = ('paz066', 0.0032602319320445498) + +[fips4208513832] +centroid = (0.7205803176231006, -1.4033125595514659) +description = Clark borough, PA +station = ('kucp', 0.00455583532080279) +zone = ('paz007', 0.0019371841601593385) + +[fips4208515992] +centroid = (0.72038768563355804, -1.4001883503772261) +description = Coolspring township, PA +station = ('kucp', 0.005015621861853242) +zone = ('paz007', 0.000638525028857351) + +[fips4208518536] +centroid = (0.72367408825518575, -1.3986066806491912) +description = Deer Creek township, PA +station = ('kgkj', 0.0031540150138293674) +zone = ('paz007', 0.003245863798488487) + +[fips4208518688] +centroid = (0.72124043605278987, -1.4018430446811643) +description = Delaware township, PA +station = ('kucp', 0.0053574191258401061) +zone = ('paz007', 0.0008975562736443088) + +[fips4208521336] +centroid = (0.71916190599329743, -1.401014990670848) +description = East Lackawannock township, PA +station = ('kucp', 0.0036434168877265095) +zone = ('paz007', 0.0017081689253325004) + +[fips4208524904] +centroid = (0.72145600166870372, -1.4000331557001386) +description = Fairview township, PA +station = ('kgkj', 0.005182751107353248) +zone = ('paz007', 0.00080924091480628956) + +[fips4208525360] +centroid = (0.71927222825531589, -1.4049353317833853) +description = Farrell city, PA +station = ('kyng', 0.0023290971870433782) +zone = ('ohz023', 0.0039223605341928737) + +[fips4208525912] +centroid = (0.71914576169771638, -1.3993035208063427) +description = Findley township, PA +station = ('kucp', 0.0044294835268004302) +zone = ('paz007', 0.0020340388004602967) + +[fips4208527688] +centroid = (0.72120338271277007, -1.4007675204362078) +description = Fredonia borough, PA +station = ('kgkj', 0.0054622555528181169) +zone = ('paz007', 0.00034403803909276637) + +[fips4208527824] +centroid = (0.7236513291617398, -1.3970031244923364) +description = French Creek township, PA +station = ('kfkl', 0.0026798387936791124) +zone = ('paz008', 0.0038714078352847844) + +[fips4208530968] +centroid = (0.72365206220002565, -1.4041136307715465) +description = Greene township, PA +station = ('kgkj', 0.0042652500399408119) +zone = ('paz007', 0.0037585294542572209) + +[fips4208531328] +centroid = (0.7226548857851911, -1.4029621847041283) +description = Greenville borough, PA +station = ('kgkj', 0.0045433453290492148) +zone = ('paz007', 0.0024400180834421191) + +[fips4208531656] +centroid = (0.71832718482523861, -1.3978096934995605) +description = Grove City borough, PA +station = ('kfkl', 0.004905511799399632) +zone = ('paz007', 0.0033673437559523746) + +[fips4208533784] +centroid = (0.72243047134996974, -1.4025301459010895) +description = Hempfield township, PA +station = ('kgkj', 0.0046013729582926712) +zone = ('paz007', 0.0020571924109464932) + +[fips4208534064] +centroid = (0.71959143152221305, -1.4039551374221726) +description = Hermitage city, PA +station = ('kucp', 0.0035833702435225214) +zone = ('paz007', 0.0027150636655163709) + +[fips4208537416] +centroid = (0.71995810774476454, -1.3989824500371455) +description = Jackson township, PA +station = ('kfkl', 0.0044423059339524567) +zone = ('paz007', 0.0016121842323771154) + +[fips4208537496] +centroid = (0.72035199365035463, -1.3987012949479418) +description = Jackson Center borough, PA +station = ('kfkl', 0.0040624170313659008) +zone = ('paz007', 0.001628804700999918) + +[fips4208537696] +centroid = (0.7240342718529198, -1.4038947664833463) +description = Jamestown borough, PA +station = ('kgkj', 0.0038835360047152425) +zone = ('paz007', 0.0039504876879540166) + +[fips4208537904] +centroid = (0.72019564705596106, -1.4019537160090332) +description = Jefferson township, PA +station = ('kucp', 0.004324477060279372) +zone = ('paz007', 0.0011152104015415311) + +[fips4208540760] +centroid = (0.71901055104056433, -1.4024187415349347) +description = Lackawannock township, PA +station = ('kucp', 0.0030891363521971609) +zone = ('paz007', 0.0022296602568999762) + +[fips4208540928] +centroid = (0.72157979787254767, -1.3987108244456576) +description = Lake township, PA +station = ('kfkl', 0.0036503344774236708) +zone = ('paz007', 0.0016999694729824665) + +[fips4208543104] +centroid = (0.71751309344893832, -1.3981035371324262) +description = Liberty township, PA +station = ('kucp', 0.0043157789142297181) +zone = ('paz013', 0.0036605744747782499) + +[fips4208548696] +centroid = (0.71953844332612249, -1.4003884523759673) +description = Mercer borough, PA +station = ('kucp', 0.0042130887610393195) +zone = ('paz007', 0.001350309974358876) + +[fips4208549576] +centroid = (0.72260948977134676, -1.3970377692779885) +description = Mill Creek township, PA +station = ('kfkl', 0.0023505634085232235) +zone = ('paz007', 0.00329768680621238) + +[fips4208553768] +centroid = (0.72291649318677265, -1.3976597697168143) +description = New Lebanon borough, PA +station = ('kfkl', 0.0028655739575229461) +zone = ('paz007', 0.0031064620890220193) + +[fips4208554304] +centroid = (0.72252930934551018, -1.3988151602283418) +description = New Vernon township, PA +station = ('kgkj', 0.0042113413715291394) +zone = ('paz007', 0.0022186968131294384) + +[fips4208557304] +centroid = (0.72242048806664827, -1.4013887354768702) +description = Otter Creek township, PA +station = ('kgkj', 0.004336613132616512) +zone = ('paz007', 0.0016306636710261893) + +[fips4208559496] +centroid = (0.72243905836988964, -1.4001795539177959) +description = Perry township, PA +station = ('kgkj', 0.0042008962280221107) +zone = ('paz007', 0.0016389014632228771) + +[fips4208560336] +centroid = (0.71851060147633061, -1.3973032862170942) +description = Pine township, PA +station = ('kfkl', 0.0045361903883484843) +zone = ('paz007', 0.0035040654334469899) + +[fips4208563008] +centroid = (0.72127303880321714, -1.4035958264890647) +description = Pymatuning township, PA +station = ('kyng', 0.0034942128080953749) +zone = ('paz007', 0.0021689693131192846) + +[fips4208567472] +centroid = (0.72350555926261317, -1.4014904358123839) +description = Salem township, PA +station = ('kgkj', 0.0033147111203588194) +zone = ('paz007', 0.0027021774266526829) + +[fips4208567816] +centroid = (0.72347766890116627, -1.400108833176505) +description = Sandy Creek township, PA +station = ('kgkj', 0.0031614379580461988) +zone = ('paz007', 0.0026636463235301532) + +[fips4208567848] +centroid = (0.72169750287730217, -1.3977240850997503) +description = Sandy Lake borough, PA +station = ('kfkl', 0.0029008639830582763) +zone = ('paz007', 0.0024298183972927432) + +[fips4208567856] +centroid = (0.72149778485099647, -1.3971871869152519) +description = Sandy Lake township, PA +station = ('kfkl', 0.0025609115065148929) +zone = ('paz007', 0.0027589963540100224) + +[fips4208568] +centroid = (0.69994809985686735, -1.3149930176409736) +description = Bridgeport borough, PA +station = ('klom', 0.0011997638821259434) +zone = ('paz068', 0.0018910004508887759) + +[fips4208569720] +centroid = (0.71966852271527371, -1.4049867666364417) +description = Sharon city, PA +station = ('kyng', 0.002207551400856721) +zone = ('ohz023', 0.0037153511264348834) + +[fips4208569800] +centroid = (0.72010607675874871, -1.404672624824375) +description = Sharpsville borough, PA +station = ('kyng', 0.0024306214939899592) +zone = ('ohz023', 0.0037928336965662346) + +[fips4208569936] +centroid = (0.72333121832363145, -1.3998710669725061) +description = Sheakleyville borough, PA +station = ('kgkj', 0.003310086674205587) +zone = ('paz007', 0.0025604880045517536) + +[fips4208570096] +centroid = (0.71821139968266112, -1.4043102246584911) +description = Shenango township, PA +station = ('kucp', 0.0022735861411841657) +zone = ('paz013', 0.0032425595976621297) + +[fips4208572440] +centroid = (0.72108663763910419, -1.4047650749148533) +description = South Pymatuning township, PA +station = ('kyng', 0.0026156652023605772) +zone = ('ohz023', 0.0035826914707585171) + +[fips4208573080] +centroid = (0.71814511207767051, -1.3997367289799798) +description = Springfield township, PA +station = ('kucp', 0.0035269278038130227) +zone = ('paz007', 0.0028215018028050778) + +[fips4208574288] +centroid = (0.72135093284773366, -1.3983252637605998) +description = Stoneboro borough, PA +station = ('kfkl', 0.0034216561596917133) +zone = ('paz007', 0.0018943955949618911) + +[fips4208575008] +centroid = (0.72356795478337188, -1.4023670972423681) +description = Sugar Grove township, PA +station = ('kgkj', 0.0035284951748375741) +zone = ('paz007', 0.0029645410203390449) + +[fips4208583496] +centroid = (0.7186261771793977, -1.4042137952173182) +description = West Middlesex borough, PA +station = ('kucp', 0.0026585582061554786) +zone = ('paz007', 0.0034246322141303037) + +[fips4208583976] +centroid = (0.72259861637010681, -1.4042019618849899) +description = West Salem township, PA +station = ('kyng', 0.0038382138620840509) +zone = ('paz007', 0.0031139082881568554) + +[fips4208584376] +centroid = (0.71902367591653937, -1.4049167265735591) +description = Wheatland borough, PA +station = ('kyng', 0.0024261536982209497) +zone = ('ohz023', 0.0040579637951253314) + +[fips4208585512] +centroid = (0.7181852022905888, -1.4018096739858663) +description = Wilmington township, PA +station = ('kucp', 0.0024982923798537011) +zone = ('paz013', 0.0027622626519531006) + +[fips4208585992] +centroid = (0.71927849398733057, -1.3972862692568875) +description = Wolf Creek township, PA +station = ('kfkl', 0.0039135537920580374) +zone = ('paz007', 0.0030533658589872626) + +[fips4208586552] +centroid = (0.72033394694588904, -1.3971570625323624) +description = Worth township, PA +station = ('kfkl', 0.0031014561512762557) +zone = ('paz007', 0.0027586294411182373) + +[fips4208624] +centroid = (0.70439584456277204, -1.3981717096930091) +description = Bridgeville borough, PA +station = ('kpit', 0.0027258613734669483) +zone = ('paz021', 0.0025647640044199377) + +[fips4208632] +centroid = (0.71047334281760421, -1.401509267915013) +description = Bridgewater borough, PA +station = ('kbvi', 0.0016760458018156503) +zone = ('paz020', 0.00077692100144458737) + +[fips42087] +centroid = (0.70881119595775999, -1.3547361020243542) +description = Mifflin County, PA +station = ('kunv', 0.0051449873633688031) +zone = ('paz027', 5.3873903090416817e-05) + +[fips4208703040] +centroid = (0.71141411019101419, -1.3523674458833028) +description = Armagh township, PA +station = ('kunv', 0.0050665424900727179) +zone = ('paz027', 0.0031575730884564651) + +[fips4208708304] +centroid = (0.70659708872197247, -1.3555987659137376) +description = Bratton township, PA +station = ('kunv', 0.0068006183565428868) +zone = ('paz027', 0.0022981785592751857) + +[fips4208709288] +centroid = (0.70985277354876508, -1.3552607305442115) +description = Brown township, PA +station = ('kunv', 0.0040790595450531002) +zone = ('paz027', 0.0011567119306673411) + +[fips4208710256] +centroid = (0.70920220207008422, -1.3537296404578993) +description = Burnham borough, PA +station = ('kunv', 0.0053457830317696318) +zone = ('paz027', 0.00082923237687734959) + +[fips4208718464] +centroid = (0.71030177695213315, -1.3511004241128173) +description = Decatur township, PA +station = ('kunv', 0.0063689878814228076) +zone = ('paz028', 0.0029038732543114586) + +[fips4208718944] +centroid = (0.70923278023857916, -1.3532130404526013) +description = Derry township, PA +station = ('kunv', 0.0056099685087960555) +zone = ('paz027', 0.0011957703672846143) + +[fips4208730480] +centroid = (0.70817174222641421, -1.354527273379353) +description = Granville township, PA +station = ('kunv', 0.0057606680652712901) +zone = ('paz027', 0.00062347761715856708) + +[fips4208738640] +centroid = (0.70835044648852585, -1.3539976532178355) +description = Juniata Terrace borough, PA +station = ('kunv', 0.0058502663143794381) +zone = ('paz027', 0.00067282542246545145) + +[fips4208740016] +centroid = (0.70471164443762802, -1.3590082491542159) +description = Kistler borough, PA +station = ('kaoo', 0.006151524580641117) +zone = ('paz026', 0.0016896622493643206) + +[fips4208743000] +centroid = (0.70855531323612497, -1.3538783599634616) +description = Lewistown borough, PA +station = ('kunv', 0.0057473152625449686) +zone = ('paz027', 0.0006462984456936568) + +[fips4208744] +centroid = (0.71276977723420831, -1.3674905842254934) +description = Brisbin borough, PA +station = ('kfig', 0.0037868079873428491) +zone = ('paz017', 0.003249923633413566) + +[fips4208746400] +centroid = (0.70682757690299081, -1.3568391539598375) +description = McVeytown borough, PA +station = ('kunv', 0.006306210220458526) +zone = ('paz027', 0.0025570687066964167) + +[fips4208748664] +centroid = (0.70789083148330578, -1.3576411676577138) +description = Menno township, PA +station = ('kunv', 0.0051439175682014325) +zone = ('paz027', 0.0024244271580985371) + +[fips4208754160] +centroid = (0.70499068767843687, -1.3584830446757059) +description = Newton Hamilton borough, PA +station = ('kunv', 0.0079786740726197243) +zone = ('paz026', 0.0019832400573934726) + +[fips4208756720] +centroid = (0.70728474844725819, -1.3566560689213032) +description = Oliver township, PA +station = ('kunv', 0.0058976414693499091) +zone = ('paz027', 0.0021256654165237778) + +[fips4208760] +centroid = (0.69993851799927398, -1.3064288091744851) +description = Bristol borough, PA +station = ('kpne', 0.0022153393026075221) +zone = ('njz019', 0.0024316092744729682) + +[fips4208778392] +centroid = (0.70900951772066401, -1.3564269420971014) +description = Union township, PA +station = ('kunv', 0.0043278496996017385) +zone = ('paz027', 0.0013494372217993445) + +[fips4208781784] +centroid = (0.70552365887211832, -1.3582605501026617) +description = Wayne township, PA +station = ('kunv', 0.0074521836708822415) +zone = ('paz026', 0.0021104908216990582) + +[fips4208819] +centroid = (0.70282543220841276, -1.312735730959492) +description = Brittany Farms-The Highlands CDP, PA +station = ('kdyl', 0.0017174090245009807) +zone = ('paz069', 0.0018599645654446997) + +[fips4208896] +centroid = (0.70164295418689404, -1.3638101037120578) +description = Broad Top City borough, PA +station = ('kaoo', 0.0029116453688482475) +zone = ('paz026', 0.0043228701716691888) + +[fips42089] +centroid = (0.71656644431594907, -1.3147397180066318) +description = Monroe County, PA +station = ('kmpo', 0.001523425846464845) +zone = ('paz055', 0.00014063908327580378) + +[fips4208904320] +centroid = (0.71921163042368663, -1.3131612247778355) +description = Barrett township, PA +station = ('kmpo', 0.0023031975035292065) +zone = ('paz055', 0.0029278861497343519) + +[fips4208913328] +centroid = (0.71476147716341409, -1.3165324504011102) +description = Chestnuthill township, PA +station = ('kmpo', 0.0032144460775911437) +zone = ('paz055', 0.0022051334027650762) + +[fips4208915960] +centroid = (0.71883390626697008, -1.3168087534749935) +description = Coolbaugh township, PA +station = ('kmpo', 0.0012500054870218321) +zone = ('paz055', 0.0026476437750192375) + +[fips4208918736] +centroid = (0.7150242888421795, -1.3113328353067388) +description = Delaware Water Gap borough, PA +station = ('kmpo', 0.0043730198686772097) +zone = ('njz007', 0.0026410415653361327) + +[fips4208921872] +centroid = (0.71566140383232746, -1.3120532025022069) +description = East Stroudsburg borough, PA +station = ('kmpo', 0.003545774097823755) +zone = ('paz055', 0.0023581873210707332) + +[fips4208922904] +centroid = (0.71311416560221175, -1.316789502493344) +description = Eldred township, PA +station = ('kabe', 0.0036381221664909488) +zone = ('paz062', 0.0025843828538915942) + +[fips4208932176] +centroid = (0.71448184051065955, -1.3138739997910576) +description = Hamilton township, PA +station = ('kmpo', 0.0036929185607380891) +zone = ('paz055', 0.0022613762973595483) + +[fips4208937424] +centroid = (0.71570421675887885, -1.3152118295692963) +description = Jackson township, PA +station = ('kmpo', 0.0022367999848065664) +zone = ('paz055', 0.00092308324138686145) + +[fips4208949080] +centroid = (0.71754238007378679, -1.3109656703919967) +description = Middle Smithfield township, PA +station = ('kmpo', 0.0035760281593539556) +zone = ('paz055', 0.0031261304150961514) + +[fips4208951912] +centroid = (0.71772289947832046, -1.3152411685540222) +description = Mount Pocono borough, PA +station = ('kmpo', 0.00038569066980396056) +zone = ('paz055', 0.001147841880410206) + +[fips4208957856] +centroid = (0.71750068415795654, -1.3138813825337936) +description = Paradise township, PA +station = ('kmpo', 0.0014213239363475778) +zone = ('paz055', 0.0011930593699852514) + +[fips4208960] +centroid = (0.71989960430823774, -1.3751962128730484) +description = Brockway borough, PA +station = ('kduj', 0.0016282949307252301) +zone = ('paz016', 0.0034179621420246894) + +[fips4208961728] +centroid = (0.71650504363286394, -1.314367194931086) +description = Pocono township, PA +station = ('kmpo', 0.0017232843559860363) +zone = ('paz055', 0.00042813823688004938) + +[fips4208961928] +centroid = (0.71431411436954284, -1.3177559611133434) +description = Polk township, PA +station = ('kmpo', 0.0039218046591178854) +zone = ('paz054', 0.0027335073778996031) + +[fips4208962632] +centroid = (0.71774982990867875, -1.3125154355013051) +description = Price township, PA +station = ('kmpo', 0.0023947115225599015) +zone = ('paz055', 0.0021461896238196528) + +[fips4208966280] +centroid = (0.71345469679256845, -1.315302761223325) +description = Ross township, PA +station = ('kabe', 0.0041475612935295211) +zone = ('paz062', 0.0022723758771322823) + +[fips4208971344] +centroid = (0.71592822976837234, -1.3114359842655317) +description = Smithfield township, PA +station = ('kmpo', 0.0037691741819065442) +zone = ('njz007', 0.0034003998888699595) + +[fips4208974880] +centroid = (0.71552120153351473, -1.3127655935429936) +description = Stroud township, PA +station = ('kmpo', 0.0032510367246119769) +zone = ('paz055', 0.0019515238013212432) + +[fips4208974888] +centroid = (0.71529739796353153, -1.3124391646129929) +description = Stroudsburg borough, PA +station = ('kmpo', 0.0035826804626045059) +zone = ('paz055', 0.002281177813904718) + +[fips4208976960] +centroid = (0.71751337270161852, -1.3180412700861668) +description = Tobyhanna township, PA +station = ('kmpo', 0.0018174984740065468) +zone = ('paz055', 0.0025230230384648339) + +[fips4208977776] +centroid = (0.71624362821750021, -1.3175427342386272) +description = Tunkhannock township, PA +station = ('kmpo', 0.0021770252385688114) +zone = ('paz055', 0.0020095110103021813) + +[fips4209000] +centroid = (0.7143193329040064, -1.31600045659181) +description = Brodheadsville CDP, PA +station = ('kmpo', 0.003600520781728859) +zone = ('paz055', 0.0024226694042563017) + +[fips4209080] +centroid = (0.69588190157874108, -1.3158255920540527) +description = Brookhaven borough, PA +station = ('kphl', 0.0021168462177495358) +zone = ('paz070', 0.00080267179326126399) + +[fips42091] +centroid = (0.7017968747736274, -1.3154581653399227) +description = Montgomery County, PA +station = ('klom', 0.0018892785368043014) +zone = ('paz068', 4.297957037441878e-05) + +[fips4209100156] +centroid = (0.70009374758294629, -1.3110152901026311) +description = Abington township, PA +station = ('kpne', 0.0014155563738633523) +zone = ('paz071', 0.0018454102824648085) + +[fips4209102264] +centroid = (0.70086113394846317, -1.3128634017942751) +description = Ambler borough, PA +station = ('klom', 0.00066703863508801604) +zone = ('paz068', 0.0021628553804664487) + +[fips4209108568] +centroid = (0.69994809985686735, -1.3149930176409736) +description = Bridgeport borough, PA +station = ('klom', 0.0011997638821259434) +zone = ('paz068', 0.0018910004508887759) + +[fips4209109696] +centroid = (0.70059378441364262, -1.3101733083648839) +description = Bryn Athyn borough, PA +station = ('kpne', 0.0012140617794060885) +zone = ('paz071', 0.0024925237692629467) + +[fips4209112968] +centroid = (0.69949181843051844, -1.311414010570249) +description = Cheltenham township, PA +station = ('kpne', 0.001629558047445099) +zone = ('paz071', 0.0012290698453753658) + +[fips4209115192] +centroid = (0.70139311030447093, -1.3169821519361793) +description = Collegeville borough, PA +station = ('kptw', 0.0014755363199375838) +zone = ('paz068', 0.0012750234278083483) + +[fips4209115848] +centroid = (0.69947942659282936, -1.3143045027043545) +description = Conshohocken borough, PA +station = ('klom', 0.0011744606901855203) +zone = ('paz068', 0.0024804054179261323) + +[fips4209119672] +centroid = (0.70410957565886001, -1.3193829744953451) +description = Douglass township, PA +station = ('kptw', 0.0019977091089754631) +zone = ('paz068', 0.0038056767471128599) + +[fips4209121200] +centroid = (0.7052126935592905, -1.3178307484717913) +description = East Greenville borough, PA +station = ('kukt', 0.001731115293773348) +zone = ('paz061', 0.0037929688862043498) + +[fips4209121600] +centroid = (0.70078660838940299, -1.3148546130312906) +description = East Norriton township, PA +station = ('klom', 0.00097610251962239292) +zone = ('paz068', 0.0011090466111151659) + +[fips4209127280] +centroid = (0.7034395437590194, -1.3152555151604737) +description = Franconia township, PA +station = ('kukt', 0.0023048575038033163) +zone = ('paz068', 0.0016309803676073107) + +[fips4209131088] +centroid = (0.70400731681798567, -1.3172305646486153) +description = Green Lane borough, PA +station = ('kptw', 0.0020824986123994674) +zone = ('paz068', 0.0025990592639577974) + +[fips4209133088] +centroid = (0.70122861302247053, -1.3108383311697711) +description = Hatboro borough, PA +station = ('kpne', 0.0020256066723934644) +zone = ('paz069', 0.0027848929164083934) + +[fips4209133112] +centroid = (0.70296804306159311, -1.3142133092509378) +description = Hatfield borough, PA +station = ('klom', 0.0024780021824816331) +zone = ('paz068', 0.0014709000115815305) + +[fips4209133120] +centroid = (0.70296896808609666, -1.3140510459903798) +description = Hatfield township, PA +station = ('klom', 0.0024593590916688014) +zone = ('paz068', 0.0015512884963139136) + +[fips4209135808] +centroid = (0.7016098278376911, -1.3119021442554468) +description = Horsham township, PA +station = ('klom', 0.0017000164511766539) +zone = ('paz069', 0.0025319424283367972) + +[fips4209138000] +centroid = (0.69981168492253143, -1.3112595663847399) +description = Jenkintown borough, PA +station = ('kpne', 0.0015252199320324889) +zone = ('paz071', 0.0015483373557489721) + +[fips4209141432] +centroid = (0.70234935874834614, -1.3139049444786954) +description = Lansdale borough, PA +station = ('klom', 0.0018306296974460355) +zone = ('paz068', 0.00126537837907563) + +[fips4209143312] +centroid = (0.70219290743419738, -1.3182991424831489) +description = Limerick township, PA +station = ('kptw', 0.00022709667045064716) +zone = ('paz068', 0.0022417168115775425) + +[fips4209144912] +centroid = (0.70306457722252091, -1.3174954532691907) +description = Lower Frederick township, PA +station = ('kptw', 0.0012025256591379182) +zone = ('paz068', 0.0020276575955064549) + +[fips4209144920] +centroid = (0.70142689987878959, -1.3131578039325016) +description = Lower Gwynedd township, PA +station = ('klom', 0.00096310244450963567) +zone = ('paz068', 0.0017597927713345906) + +[fips4209144976] +centroid = (0.69865362405724829, -1.3138662330758861) +description = Lower Merion township, PA +station = ('klom', 0.0018871739842641192) +zone = ('paz071', 0.0019793143434068848) + +[fips4209145008] +centroid = (0.70023670750197708, -1.3103034924737902) +description = Lower Moreland township, PA +station = ('kpne', 0.0010133018354846124) +zone = ('paz071', 0.0021236834397624846) + +[fips4209145072] +centroid = (0.70250310480215439, -1.3193801296086642) +description = Lower Pottsgrove township, PA +station = ('kptw', 0.00066888720482606503) +zone = ('paz068', 0.0031117895418448687) + +[fips4209145080] +centroid = (0.70076763666043373, -1.3163514946642634) +description = Lower Providence township, PA +station = ('kptw', 0.002236925603159772) +zone = ('paz068', 0.0012704321532274992) + +[fips4209145096] +centroid = (0.70272858388821957, -1.3158994718412895) +description = Lower Salford township, PA +station = ('kptw', 0.0021240808812877697) +zone = ('paz068', 0.00099048216620513082) + +[fips4209147592] +centroid = (0.70432868429315543, -1.3168858795746392) +description = Marlborough township, PA +station = ('kukt', 0.0016794881464621929) +zone = ('paz068', 0.0027578163834097911) + +[fips4209150640] +centroid = (0.70243967953713682, -1.3130540441084706) +description = Montgomery township, PA +station = ('klom', 0.0019568620198840213) +zone = ('paz068', 0.001901842177967504) + +[fips4209152664] +centroid = (0.69826568972440739, -1.3135950438167112) +description = Narberth borough, PA +station = ('klom', 0.0022659331164364268) +zone = ('paz071', 0.0017332533867615324) + +[fips4209153664] +centroid = (0.70358362068877156, -1.318835656695212) +description = New Hanover township, PA +station = ('kptw', 0.0013915257563431713) +zone = ('paz068', 0.0031602149116355532) + +[fips4209154656] +centroid = (0.70026232893539642, -1.3149287895245003) +description = Norristown borough, PA +station = ('klom', 0.0010347377041311694) +zone = ('paz068', 0.001592547676450867) + +[fips4209155512] +centroid = (0.70181733003246072, -1.3137868380482129) +description = North Wales borough, PA +station = ('klom', 0.0012919509135649074) +zone = ('paz068', 0.0012363552527018854) + +[fips4209159120] +centroid = (0.70499770390202998, -1.3176415024209973) +description = Pennsburg borough, PA +station = ('kukt', 0.0016755242316478136) +zone = ('paz068', 0.0036127673463889655) + +[fips4209159392] +centroid = (0.70223362596564642, -1.3171802118996954) +description = Perkiomen township, PA +station = ('kptw', 0.0010814209135075064) +zone = ('paz068', 0.0014187496792952515) + +[fips4209161664] +centroid = (0.70009790146656592, -1.3141810032064833) +description = Plymouth township, PA +station = ('klom', 0.0006088461487153287) +zone = ('paz068', 0.0019535381282652915) + +[fips4209162416] +centroid = (0.70251115077000603, -1.3202500191611508) +description = Pottstown borough, PA +station = ('kptw', 0.0012991550107293742) +zone = ('paz068', 0.0037637094715603655) + +[fips4209163808] +centroid = (0.70471164443762802, -1.3174397598127596) +description = Red Hill borough, PA +station = ('kukt', 0.0016925839730297092) +zone = ('paz068', 0.0032880460025953408) + +[fips4209165568] +centroid = (0.69956674541530661, -1.3105644191969632) +description = Rockledge borough, PA +station = ('kpne', 0.00097693220212705795) +zone = ('paz071', 0.0014288825706993112) + +[fips4209166576] +centroid = (0.70138370297980279, -1.3184022565353566) +description = Royersford borough, PA +station = ('kptw', 0.00083370154019816523) +zone = ('paz068', 0.0023285769561110664) + +[fips4209167528] +centroid = (0.70411196675993526, -1.3160152220772818) +description = Salford township, PA +station = ('kukt', 0.001634682807847307) +zone = ('paz068', 0.0023459049935365141) + +[fips4209168328] +centroid = (0.70262527784979401, -1.3171215339302433) +description = Schwenksville borough, PA +station = ('kptw', 0.001201831139746514) +zone = ('paz068', 0.0015414507277225014) + +[fips4209171016] +centroid = (0.70191307879522513, -1.3163121374896309) +description = Skippack township, PA +station = ('kptw', 0.0017680736281034887) +zone = ('paz068', 0.00069938083097178931) + +[fips4209171856] +centroid = (0.70355970967801928, -1.3146230252928433) +description = Souderton borough, PA +station = ('kukt', 0.0023034095381557606) +zone = ('paz068', 0.0018464014386283553) + +[fips4209173088] +centroid = (0.69986161879243103, -1.3124918735564031) +description = Springfield township, PA +station = ('klom', 0.0010935014917768269) +zone = ('paz071', 0.0018273607010255467) + +[fips4209176304] +centroid = (0.70376373866757747, -1.3147730014354673) +description = Telford borough, PA +station = ('kukt', 0.0020729110025690285) +zone = ('paz068', 0.0020099947399218427) + +[fips4209177152] +centroid = (0.70235054557223764, -1.3149082120926192) +description = Towamencin township, PA +station = ('klom', 0.002067399954827727) +zone = ('paz068', 0.00065856545709376579) + +[fips4209177304] +centroid = (0.70160656407198996, -1.3172938677405854) +description = Trappe borough, PA +station = ('kptw', 0.0011602390033808789) +zone = ('paz068', 0.001456646465090178) + +[fips4209179008] +centroid = (0.70075428489165614, -1.3121633676845927) +description = Upper Dublin township, PA +station = ('klom', 0.0011370984652697013) +zone = ('paz071', 0.0025698774308054962) + +[fips4209179040] +centroid = (0.70355489256928372, -1.3178534202987748) +description = Upper Frederick township, PA +station = ('kptw', 0.0014648443010022974) +zone = ('paz068', 0.00255427253000935) + +[fips4209179056] +centroid = (0.70174842443359198, -1.3140487421557672) +description = Upper Gwynedd township, PA +station = ('klom', 0.0012598138949866725) +zone = ('paz068', 0.0010383527581716251) + +[fips4209179064] +centroid = (0.70490631846239549, -1.3179098817000765) +description = Upper Hanover township, PA +station = ('kukt', 0.0018993506465908719) +zone = ('paz068', 0.0036357176452100413) + +[fips4209179136] +centroid = (0.69969764510920618, -1.3156437112927022) +description = Upper Merion township, PA +station = ('klom', 0.0017566350750482882) +zone = ('paz068', 0.0021227593547274602) + +[fips4209179176] +centroid = (0.70087818581525507, -1.3108169508864345) +description = Upper Moreland township, PA +station = ('kpne', 0.0017426020174733563) +zone = ('paz071', 0.0026434007424467609) + +[fips4209179240] +centroid = (0.70307236139098483, -1.3200933584074916) +description = Upper Pottsgrove township, PA +station = ('kptw', 0.0014349666222540137) +zone = ('paz068', 0.0037931651175136857) + +[fips4209179256] +centroid = (0.70105879248625147, -1.317419269647341) +description = Upper Providence township, PA +station = ('kptw', 0.001456004984635114) +zone = ('paz068', 0.0017129141645768934) + +[fips4209179280] +centroid = (0.70329155729174275, -1.3167776691610154) +description = Upper Salford township, PA +station = ('kptw', 0.0017630098532201994) +zone = ('paz068', 0.0018120571239614858) + +[fips4209182736] +centroid = (0.69935891160797914, -1.314560647225377) +description = West Conshohocken borough, PA +station = ('klom', 0.0013749236484241496) +zone = ('paz068', 0.0025373227509029165) + +[fips4209183696] +centroid = (0.70041572592335422, -1.3155847889771548) +description = West Norriton township, PA +station = ('klom', 0.0015050393563112348) +zone = ('paz068', 0.0014035548378046087) + +[fips4209183912] +centroid = (0.702448877422295, -1.3209461786398937) +description = West Pottsgrove township, PA +station = ('kptw', 0.0018104166038216084) +zone = ('paz068', 0.0042774951408137193) + +[fips4209184624] +centroid = (0.69995063058428275, -1.3132357852434808) +description = Whitemarsh township, PA +station = ('klom', 0.00065168395370611627) +zone = ('paz071', 0.0022285718260012556) + +[fips4209184888] +centroid = (0.70086855159778416, -1.3138732667527717) +description = Whitpain township, PA +station = ('klom', 0.00038788640360470895) +zone = ('paz068', 0.001504004269083394) + +[fips4209186496] +centroid = (0.70147932956951953, -1.3150997619780256) +description = Worcester township, PA +station = ('klom', 0.0014742903026429834) +zone = ('paz068', 0.00040706534941781903) + +[fips4209224] +centroid = (0.71840675438583701, -1.3802526586088786) +description = Brookville borough, PA +station = ('kduj', 0.0026457182958313169) +zone = ('paz016', 0.0012400716306352768) + +[fips4209248] +centroid = (0.69759878196392777, -1.3151566597116406) +description = Broomall CDP, PA +station = ('kphl', 0.0024045562557150997) +zone = ('paz070', 0.0011082558905081193) + +[fips42093] +centroid = (0.7160956941101011, -1.3380611914442155) +description = Montour County, PA +station = ('kseg', 0.0045631452144236657) +zone = ('paz051', 9.0395493038269883e-05) + +[fips4209302664] +centroid = (0.71778035571729615, -1.3384079011001242) +description = Anthony township, PA +station = ('kipt', 0.0037348336015918574) +zone = ('paz051', 0.0017419826705694112) + +[fips4209316048] +centroid = (0.71496100320350209, -1.3359078740262749) +description = Cooper township, PA +station = ('kseg', 0.0049997588341757484) +zone = ('paz051', 0.0018978899260462226) + +[fips4209318136] +centroid = (0.71491462980527654, -1.337133304600685) +description = Danville borough, PA +station = ('kseg', 0.0042047646585433793) +zone = ('paz051', 0.001310997039526661) + +[fips4209318952] +centroid = (0.71650038360376112, -1.3376294842537346) +description = Derry township, PA +station = ('kipt', 0.0050058078627381623) +zone = ('paz051', 0.00048856290666435221) + +[fips4209343112] +centroid = (0.71542327110918535, -1.3390762400305902) +description = Liberty township, PA +station = ('kseg', 0.0035777858707440884) +zone = ('paz051', 0.0010732066307358988) + +[fips4209343360] +centroid = (0.71670989292717058, -1.3392497432115309) +description = Limestone township, PA +station = ('kipt', 0.0040360503601482049) +zone = ('paz051', 0.0011717860183234898) + +[fips4209346656] +centroid = (0.71497353466753133, -1.3369287869189364) +description = Mahoning township, PA +station = ('kseg', 0.0043638764453121891) +zone = ('paz051', 0.0013411060514569016) + +[fips4209348152] +centroid = (0.71412739904616451, -1.3357992272803383) +description = Mayberry township, PA +station = ('kseg', 0.0047034629516434579) +zone = ('paz051', 0.0025323375695743399) + +[fips4209379552] +centroid = (0.71569774158735389, -1.3375216054526688) +description = Valley township, PA +station = ('kseg', 0.0045125084677726949) +zone = ('paz051', 0.00049332720034492305) + +[fips4209381424] +centroid = (0.71649769579671307, -1.3382297029834955) +description = Washingtonville borough, PA +station = ('kipt', 0.0046904864706980741) +zone = ('paz051', 0.00047529621266207561) + +[fips4209383144] +centroid = (0.71613754710556399, -1.3367493845251239) +description = West Hemlock township, PA +station = ('kseg', 0.0052327737358151992) +zone = ('paz051', 0.00090416937552002482) + +[fips4209400] +centroid = (0.70394998275205767, -1.3777164334063432) +description = Brownstown borough, PA +station = ('kjst', 0.0014142356386861821) +zone = ('paz024', 0.0041033547101760569) + +[fips4209416] +centroid = (0.700358688563399, -1.330250441615813) +description = Brownstown CDP, PA +station = ('klns', 0.0011143505075997726) +zone = ('paz066', 0.0015398603252182255) + +[fips4209432] +centroid = (0.69846095716112055, -1.3943438186709503) +description = Brownsville borough, PA +station = ('kafj', 0.0056198839090527185) +zone = ('paz075', 0.0020018879421208266) + +[fips4209496] +centroid = (0.72106136527153519, -1.3226570550924537) +description = Browntown CDP, PA +station = ('kavp', 0.00073121833456522042) +zone = ('paz044', 0.0031284158449616604) + +[fips42095] +centroid = (0.71127038232711248, -1.314362901421126) +description = Northampton County, PA +station = ('kabe', 0.0026031483203725479) +zone = ('paz062', 2.6344342724058494e-05) + +[fips4209500948] +centroid = (0.7104945136614309, -1.3175218426474806) +description = Allen township, PA +station = ('kabe', 0.001138227243681817) +zone = ('paz061', 0.0021607814906827979) + +[fips4209504032] +centroid = (0.71329124670811916, -1.3126169787571862) +description = Bangor borough, PA +station = ('kabe', 0.004983829044710889) +zone = ('paz062', 0.0023922094999507927) + +[fips4209504432] +centroid = (0.71087057975535806, -1.3158027107875589) +description = Bath borough, PA +station = ('kabe', 0.0016048721742457366) +zone = ('paz062', 0.0011717371190492205) + +[fips4209506088] +centroid = (0.7090266917605037, -1.3151570611373686) +description = Bethlehem city, PA +station = ('kabe', 0.0013617626347802421) +zone = ('paz062', 0.0023486998624960924) + +[fips4209506096] +centroid = (0.70972688294981878, -1.3144777615391998) +description = Bethlehem township, PA +station = ('kabe', 0.0018176789951919257) +zone = ('paz062', 0.00157228358392638) + +[fips4209510400] +centroid = (0.71206270944764039, -1.3147349358044811) +description = Bushkill township, PA +station = ('kabe', 0.0030431719175891972) +zone = ('paz062', 0.00081637150139431103) + +[fips4209512656] +centroid = (0.71139534790155523, -1.315988309100216) +description = Chapman borough, PA +station = ('kabe', 0.002027364609300298) +zone = ('paz062', 0.0012357833792852007) + +[fips4209520736] +centroid = (0.71051423588197837, -1.3164345025234883) +description = East Allen township, PA +station = ('kabe', 0.001084874909388386) +zone = ('paz062', 0.0017545664568334174) + +[fips4209520776] +centroid = (0.71350546842050888, -1.3122695709695766) +description = East Bangor borough, PA +station = ('kmpo', 0.0051059234601528959) +zone = ('njz007', 0.0025474770225152122) + +[fips4209521648] +centroid = (0.71010415332092991, -1.3128113211693957) +description = Easton city, PA +station = ('kabe', 0.0031276867947053026) +zone = ('paz062', 0.0016743987328546968) + +[fips4209526728] +centroid = (0.71095370978763062, -1.3129386429383287) +description = Forks township, PA +station = ('kabe', 0.0033139074397916459) +zone = ('paz062', 0.0011316716861809325) + +[fips4209527760] +centroid = (0.7090894014405279, -1.3149311631722831) +description = Freemansburg borough, PA +station = ('kabe', 0.0015072804880605604) +zone = ('paz062', 0.0022490982758551271) + +[fips4209528] +centroid = (0.71653438261758995, -1.3915037665522274) +description = Bruin borough, PA +station = ('kbtp', 0.0055685277753085597) +zone = ('paz014', 0.0034913388678478575) + +[fips4209529568] +centroid = (0.70960868925287368, -1.3131856070274859) +description = Glendon borough, PA +station = ('kabe', 0.0027838739222165944) +zone = ('paz062', 0.0019091448224405276) + +[fips4209532432] +centroid = (0.70977460025156824, -1.3159114622532508) +description = Hanover township, PA +station = ('kabe', 0.00077257332737156001) +zone = ('paz062', 0.0019225450271729081) + +[fips4209533744] +centroid = (0.70827810259103086, -1.3148946334310387) +description = Hellertown borough, PA +station = ('kabe', 0.0019081436397334582) +zone = ('paz062', 0.0030455237926615181) + +[fips4209542424] +centroid = (0.7114775878159092, -1.3184776198524579) +description = Lehigh township, PA +station = ('kabe', 0.0023506539904923074) +zone = ('paz061', 0.0027276101385753683) + +[fips4209545016] +centroid = (0.7120862888458348, -1.3117750668326091) +description = Lower Mount Bethel township, PA +station = ('kabe', 0.0046485756806689009) +zone = ('njz007', 0.0023678894345141701) + +[fips4209545024] +centroid = (0.71048395441945633, -1.3145892008119398) +description = Lower Nazareth township, PA +station = ('kabe', 0.0019892969077887333) +zone = ('paz062', 0.00083078736929746515) + +[fips4209545104] +centroid = (0.70845539313644834, -1.31430945943943) +description = Lower Saucon township, PA +station = ('kabe', 0.0021825679126323328) +zone = ('paz062', 0.0028416064950810269) + +[fips4209550824] +centroid = (0.71175237245334311, -1.316352245155842) +description = Moore township, PA +station = ('kabe', 0.0023072029935177082) +zone = ('paz062', 0.0015746515628086788) + +[fips4209552808] +centroid = (0.71104650894395915, -1.3144531523967469) +description = Nazareth borough, PA +station = ('kabe', 0.0024021719417496173) +zone = ('paz062', 0.00025954885629319717) + +[fips4209554696] +centroid = (0.71015951516480313, -1.3174977571038031) +description = Northampton borough, PA +station = ('kabe', 0.00084108738701169864) +zone = ('paz061', 0.0019277923035254795) + +[fips4209554872] +centroid = (0.70971319956848311, -1.3172676878018053) +description = North Catasauqua borough, PA +station = ('kabe', 0.00039505155097504548) +zone = ('paz061', 0.0018017014211528617) + +[fips4209557672] +centroid = (0.71037003677917865, -1.3135693002102444) +description = Palmer township, PA +station = ('kabe', 0.0026444118697676214) +zone = ('paz062', 0.0011043920683815303) + +[fips4209558696] +centroid = (0.7132775633267836, -1.3134275794749823) +description = Pen Argyl borough, PA +station = ('kabe', 0.0046014349955896096) +zone = ('paz062', 0.0021033328511956004) + +[fips4209561088] +centroid = (0.71242219491367353, -1.313543207537927) +description = Plainfield township, PA +station = ('kabe', 0.0038678234019944593) +zone = ('paz062', 0.0012849537582856558) + +[fips4209562264] +centroid = (0.71421927317798961, -1.3106977972584009) +description = Portland borough, PA +station = ('kmpo', 0.0052730794078867946) +zone = ('njz007', 0.0017372510883717507) + +[fips4209566168] +centroid = (0.71345993278032438, -1.3128393511571828) +description = Roseto borough, PA +station = ('kmpo', 0.004943781541437888) +zone = ('paz062', 0.0024510312569850112) + +[fips4209574232] +centroid = (0.71130731349408471, -1.3135864044369139) +description = Stockertown borough, PA +station = ('kabe', 0.0030785286190176528) +zone = ('paz062', 0.00058768030012040968) + +[fips4209576144] +centroid = (0.71106863971887435, -1.3134455563662779) +description = Tatamy borough, PA +station = ('kabe', 0.0030334109654014765) +zone = ('paz062', 0.00073085070389218262) + +[fips4209579184] +centroid = (0.71386167266754841, -1.3113715467095479) +description = Upper Mount Bethel township, PA +station = ('kmpo', 0.0051970786812422058) +zone = ('njz007', 0.0019882809753340625) + +[fips4209579192] +centroid = (0.71098001189945814, -1.3148272637219118) +description = Upper Nazareth township, PA +station = ('kabe', 0.0021483237888938384) +zone = ('paz062', 0.00047382639937063476) + +[fips4209580800] +centroid = (0.71124589535770699, -1.3193918233146527) +description = Walnutport borough, PA +station = ('kabe', 0.0026157310298756987) +zone = ('paz061', 0.0024174386876173702) + +[fips4209581296] +centroid = (0.71293170888220825, -1.3123644121611302) +description = Washington township, PA +station = ('kabe', 0.0048468404802622135) +zone = ('paz062', 0.0022270914575872841) + +[fips4209582832] +centroid = (0.70997136867143806, -1.3131175391866581) +description = West Easton borough, PA +station = ('kabe', 0.0028748657669994456) +zone = ('paz062', 0.0016267655633953951) + +[fips4209585256] +centroid = (0.70913277287243992, -1.3129406326136759) +description = Williams township, PA +station = ('kabe', 0.0029870088934568022) +zone = ('paz062', 0.0024174900625196275) + +[fips4209585592] +centroid = (0.71007676910496598, -1.3132158012235453) +description = Wilson borough, PA +station = ('kabe', 0.0028218826932840126) +zone = ('paz062', 0.0014976848105461504) + +[fips4209585664] +centroid = (0.71295012210581676, -1.3140761612783158) +description = Wind Gap borough, PA +station = ('kabe', 0.0040602786575819139) +zone = ('paz062', 0.0016675084805713228) + +[fips4209696] +centroid = (0.70059378441364262, -1.3101733083648839) +description = Bryn Athyn borough, PA +station = ('kpne', 0.0012140617794060885) +zone = ('paz071', 0.0024925237692629467) + +[fips42097] +centroid = (0.71299359825748398, -1.3388399224498704) +description = Northumberland County, PA +station = ('kseg', 0.0021579805026296956) +zone = ('paz052', 1.3200023558344177e-05) + +[fips4209714536] +centroid = (0.71168582304896466, -1.3355002000195939) +description = Coal township, PA +station = ('kseg', 0.0046527643992600584) +zone = ('paz052', 0.0028406153884852152) + +[fips4209718696] +centroid = (0.71760681762977041, -1.3410864404498672) +description = Delaware township, PA +station = ('kipt', 0.0025562369783366139) +zone = ('paz046', 0.0022155666984812273) + +[fips4209720928] +centroid = (0.71116648287674122, -1.3355160825157872) +description = East Cameron township, PA +station = ('kseg', 0.0047479830115496309) +zone = ('paz052', 0.0031061612065743723) + +[fips4209720976] +centroid = (0.71533015779359144, -1.3402590322113743) +description = East Chillisquaque township, PA +station = ('kseg', 0.0031087179506147479) +zone = ('paz051', 0.0018979679404903592) + +[fips4209728] +centroid = (0.69852804761756715, -1.3145060882329598) +description = Bryn Mawr CDP, PA +station = ('klom', 0.002114583619846531) +zone = ('paz070', 0.0021601381809328202) + +[fips4209734080] +centroid = (0.7105638555926127, -1.3413311879708745) +description = Herndon borough, PA +station = ('kseg', 0.0018308133966348234) +zone = ('paz052', 0.0030889106173949857) + +[fips4209737432] +centroid = (0.7106665333125074, -1.3407117182594639) +description = Jackson township, PA +station = ('kseg', 0.0018392338474988517) +zone = ('paz052', 0.0027371141543641258) + +[fips4209738456] +centroid = (0.70976620521786615, -1.3394821687080189) +description = Jordan township, PA +station = ('kseg', 0.003062182299011638) +zone = ('paz052', 0.0032736091466108283) + +[fips4209740584] +centroid = (0.71200951181203964, -1.334685270885253) +description = Kulpmont borough, PA +station = ('kseg', 0.005229609682408127) +zone = ('paz052', 0.0032870556648003134) + +[fips4209742952] +centroid = (0.71756718120245755, -1.3398851477790119) +description = Lewis township, PA +station = ('kipt', 0.0030648756530042378) +zone = ('paz051', 0.0020904570368569862) + +[fips4209743912] +centroid = (0.71129958168549834, -1.3398216177942395) +description = Little Mahanoy township, PA +station = ('kseg', 0.0017157986123179623) +zone = ('paz052', 0.0018615774063299897) + +[fips4209744856] +centroid = (0.71177921561723889, -1.3406111174813791) +description = Lower Augusta township, PA +station = ('kseg', 0.00094932580211379042) +zone = ('paz052', 0.0018219160092516145) + +[fips4209744960] +centroid = (0.70946658454517642, -1.3417242361184236) +description = Lower Mahanoy township, PA +station = ('kseg', 0.0029207870157427081) +zone = ('paz050', 0.0033287566705517205) + +[fips4209746120] +centroid = (0.71684728524588748, -1.3407403242059044) +description = McEwensville borough, PA +station = ('kipt', 0.0033572853285656476) +zone = ('paz051', 0.0022455359174630069) + +[fips4209747480] +centroid = (0.71215599729615942, -1.3345496064424953) +description = Marion Heights borough, PA +station = ('kseg', 0.005323385263511074) +zone = ('paz052', 0.0033448579165399994) + +[fips4209750016] +centroid = (0.7157427012688854, -1.3413105581791158) +description = Milton borough, PA +station = ('kseg', 0.0033634841761435537) +zone = ('paz052', 0.0033218086085025594) + +[fips4209751496] +centroid = (0.71202265414130705, -1.3336416338057302) +description = Mount Carmel borough, PA +station = ('kseg', 0.0060169512951011835) +zone = ('paz058', 0.0030307263994572352) + +[fips4209751504] +centroid = (0.71199942380896297, -1.3341587050499262) +description = Mount Carmel township, PA +station = ('kseg', 0.0056279307242095176) +zone = ('paz052', 0.0036716567013487583) + +[fips4209755456] +centroid = (0.71378688530910051, -1.3403193856969084) +description = Northumberland borough, PA +station = ('kseg', 0.0016936903228230511) +zone = ('paz052', 0.0013750287889613658) + +[fips4209761832] +centroid = (0.71440054307410172, -1.3399411379414159) +description = Point township, PA +station = ('kseg', 0.0023644178140273648) +zone = ('paz052', 0.0016328941892882276) + +[fips4209763328] +centroid = (0.71296467815177855, -1.3361868125473289) +description = Ralpho township, PA +station = ('kseg', 0.0041188211722340412) +zone = ('paz052', 0.00199693809689414) + +[fips4209765112] +centroid = (0.71469100076821857, -1.3376533952644869) +description = Riverside borough, PA +station = ('kseg', 0.0037568310355203909) +zone = ('paz051', 0.0014000921349707127) + +[fips4209765472] +centroid = (0.71252270842529597, -1.3392630600737239) +description = Rockefeller township, PA +station = ('kseg', 0.0017560472022566918) +zone = ('paz052', 0.00058205384635772925) + +[fips4209766752] +centroid = (0.71406406104760978, -1.3373346981430727) +description = Rush township, PA +station = ('kseg', 0.0036205846006017702) +zone = ('paz052', 0.0015492115609706339) + +[fips4209769600] +centroid = (0.71188985203852273, -1.3361367914109663) +description = Shamokin city, PA +station = ('kseg', 0.0041473056812542028) +zone = ('paz052', 0.0023193545189015602) + +[fips4209769608] +centroid = (0.71276927108872512, -1.33762986822617) +description = Shamokin township, PA +station = ('kseg', 0.0030108662748826727) +zone = ('paz052', 0.00093453833484977232) + +[fips4209771688] +centroid = (0.71337861789047396, -1.338284069989695) +description = Snydertown borough, PA +station = ('kseg', 0.0026813987901867374) +zone = ('paz052', 0.00055687778936764981) + +[fips4209775304] +centroid = (0.71316607169416613, -1.3401803004088169) +description = Sunbury city, PA +station = ('kseg', 0.0013135264473845109) +zone = ('paz052', 0.001037124430927034) + +[fips4209777830] +centroid = (0.71616002694632974, -1.3404074724642563) +description = Turbot township, PA +station = ('kseg', 0.0038767537735909276) +zone = ('paz051', 0.0018596199889847249) + +[fips4209777832] +centroid = (0.717363134759607, -1.3398793532858955) +description = Turbotville borough, PA +station = ('kipt', 0.0032286744503217009) +zone = ('paz051', 0.0019467354027235698) + +[fips4209778744] +centroid = (0.71335191435291845, -1.3397094454832139) +description = Upper Augusta township, PA +station = ('kseg', 0.0017114928698162538) +zone = ('paz052', 0.00075402248912570687) + +[fips4209779112] +centroid = (0.71055928282997249, -1.3374137266516031) +description = Upper Mahanoy township, PA +station = ('kseg', 0.0036434008902372869) +zone = ('paz052', 0.0026665615942669473) + +[fips4209781304] +centroid = (0.71060727938440227, -1.3392774939466379) +description = Washington township, PA +station = ('kseg', 0.0024885261103956041) +zone = ('paz052', 0.0024188676522235767) + +[fips4209781616] +centroid = (0.71706580046823709, -1.3415371019160247) +description = Watsontown borough, PA +station = ('kipt', 0.0029631436323163908) +zone = ('paz046', 0.0025999779186248544) + +[fips4209782680] +centroid = (0.71116458046785658, -1.3379465058590669) +description = West Cameron township, PA +station = ('kseg', 0.0030074361173939544) +zone = ('paz052', 0.0019543261719788267) + +[fips4209782712] +centroid = (0.71508368239662479, -1.3411656260380302) +description = West Chillisquaque township, PA +station = ('kseg', 0.0027162676387821136) +zone = ('paz052', 0.0027311192583629644) + +[fips4209787280] +centroid = (0.71165849119287838, -1.3379888650000127) +description = Zerbe township, PA +station = ('kseg', 0.0028114783979736975) +zone = ('paz052', 0.0014854396086665179) + +[fips4209792] +centroid = (0.71593336103637317, -1.3350756312257539) +description = Buckhorn CDP, PA +station = ('kseg', 0.0060596763284893303) +zone = ('paz053', 0.0012738690951462101) + +[fips4209896] +centroid = (0.71046688509937173, -1.3320567526718718) +description = Buck Run CDP, PA +station = ('kmui', 0.0057758848653473209) +zone = ('paz058', 0.0013923445194765549) + +[fips42099] +centroid = (0.70507427149631485, -1.3485518245258852) +description = Perry County, PA +station = ('kcxy', 0.0063793895941594162) +zone = ('paz056', 5.5925127998367416e-05) + +[fips4209906824] +centroid = (0.7040050478899581, -1.352846032617492) +description = Blain borough, PA +station = ('kunv', 0.010016928727711032) +zone = ('paz028', 0.0036990831121348662) + +[fips4209907040] +centroid = (0.70544237888885308, -1.3472016552698349) +description = Bloomfield borough, PA +station = ('kcxy', 0.0057273452560955901) +zone = ('paz056', 0.0010367251519942757) + +[fips4209910008] +centroid = (0.70708935883749746, -1.3445219640027852) +description = Buffalo township, PA +station = ('kcxy', 0.0057334978577408928) +zone = ('paz056', 0.0036175071473117824) + +[fips4209911416] +centroid = (0.70416085343228363, -1.3470409453523113) +description = Carroll township, PA +station = ('kcxy', 0.0049325410769764004) +zone = ('paz056', 0.0014338178735228799) + +[fips4209912360] +centroid = (0.70506626043504816, -1.3481610976662413) +description = Centre township, PA +station = ('kcxy', 0.0061182418674227109) +zone = ('paz056', 0.00024342403764011035) + +[fips4209920240] +centroid = (0.70502885802917803, -1.344387503837212) +description = Duncannon borough, PA +station = ('kcxy', 0.0039118963033931177) +zone = ('paz056', 0.0031170780525021872) + +[fips4209931440] +centroid = (0.70784997332551658, -1.3457654587349537) +description = Greenwood township, PA +station = ('kseg', 0.0055370118281086603) +zone = ('paz056', 0.0034507144054201884) + +[fips4209936000] +centroid = (0.70678055773294202, -1.3454573557620992) +description = Howe township, PA +station = ('kcxy', 0.0058135325514486035) +zone = ('paz056', 0.0028574427151893478) + +[fips4209937440] +centroid = (0.70345725885092714, -1.352890713046343) +description = Jackson township, PA +station = ('kryt', 0.010101931228611666) +zone = ('paz028', 0.0042197049042115992) + +[fips4209938616] +centroid = (0.70635790880127913, -1.3476984457881225) +description = Juniata township, PA +station = ('kcxy', 0.0066064263254977601) +zone = ('paz056', 0.0014048971147977659) + +[fips4209941272] +centroid = (0.704117394733909, -1.3492395017044634) +description = Landisburg borough, PA +station = ('kmdt', 0.0075997503151911195) +zone = ('paz056', 0.001127590915567502) + +[fips4209943968] +centroid = (0.70814048337951108, -1.3437743347644011) +description = Liverpool borough, PA +station = ('kseg', 0.0045601338670991773) +zone = ('paz050', 0.0035803877569317247) + +[fips4209943976] +centroid = (0.70827199393864881, -1.3441701754387534) +description = Liverpool township, PA +station = ('kseg', 0.0045591187472816298) +zone = ('paz050', 0.0033776163501650601) + +[fips4209947968] +centroid = (0.70402443849794771, -1.3427179044214614) +description = Marysville borough, PA +station = ('kcxy', 0.0023772523635640329) +zone = ('paz057', 0.0024450754345292139) + +[fips4209949632] +centroid = (0.7061702160935196, -1.3450572564843719) +description = Miller township, PA +station = ('kcxy', 0.0051368246497504313) +zone = ('paz056', 0.0028221902040305004) + +[fips4209949720] +centroid = (0.7078329912718947, -1.3465461794159561) +description = Millerstown borough, PA +station = ('kseg', 0.0059096949609950544) +zone = ('paz056', 0.0031167701869660469) + +[fips4209953320] +centroid = (0.70606142972124286, -1.3433881632141049) +description = New Buffalo borough, PA +station = ('kcxy', 0.0044470519332861147) +zone = ('paz057', 0.0026298142466708225) + +[fips4209953968] +centroid = (0.70649158356868935, -1.3462357027953187) +description = Newport borough, PA +station = ('kcxy', 0.0059324597839034137) +zone = ('paz056', 0.0022125467864103619) + +[fips4209954968] +centroid = (0.70502081206132627, -1.3520127949792973) +description = Northeast Madison township, PA +station = ('kunv', 0.0094447968259639258) +zone = ('paz028', 0.0025214225293363163) + +[fips4209956728] +centroid = (0.70664335740044282, -1.3464122603024502) +description = Oliver township, PA +station = ('kcxy', 0.0061350043180762549) +zone = ('paz056', 0.0022145082399160475) + +[fips4209958856] +centroid = (0.70430592519970947, -1.3447495723905378) +description = Penn township, PA +station = ('kcxy', 0.0035647811950169882) +zone = ('paz056', 0.0029465866639621172) + +[fips4209966976] +centroid = (0.70379705700299799, -1.3446334556354027) +description = Rye township, PA +station = ('kcxy', 0.0031739608329181073) +zone = ('paz056', 0.0032013420516219444) + +[fips4209968032] +centroid = (0.70577187959833698, -1.349957599971904) +description = Saville township, PA +station = ('kcxy', 0.0076548915393959745) +zone = ('paz056', 0.0013181665232693228) + +[fips4209972624] +centroid = (0.70405346332340846, -1.3514712018591111) +description = Southwest Madison township, PA +station = ('kcxy', 0.0080601418168142949) +zone = ('paz056', 0.0025017447618560624) + +[fips4209972848] +centroid = (0.70413397536180289, -1.3483853550218299) +description = Spring township, PA +station = ('kmdt', 0.0069933420045527207) +zone = ('paz056', 0.00095383374581314091) + +[fips4209976920] +centroid = (0.70221325797327572, -1.3551949490847035) +description = Toboyne township, PA +station = ('kryt', 0.0092602078450209797) +zone = ('paz036', 0.0054380784595589619) + +[fips4209977960] +centroid = (0.70691910196896546, -1.3482687670277969) +description = Tuscarora township, PA +station = ('kcxy', 0.0073056850320011302) +zone = ('paz056', 0.0018410251344537227) + +[fips4209978184] +centroid = (0.70332738890128621, -1.3502054367256873) +description = Tyrone township, PA +station = ('kmdt', 0.0080996495647550106) +zone = ('paz056', 0.00219526557292911) + +[fips4209981640] +centroid = (0.70614639234922993, -1.3437964306327315) +description = Watts township, PA +station = ('kcxy', 0.0046457015608560477) +zone = ('paz056', 0.0037196400539275328) + +[fips4209984368] +centroid = (0.70514511441065331, -1.345614348128316) +description = Wheatfield township, PA +station = ('kcxy', 0.0046196892471569526) +zone = ('paz056', 0.002182955247518192) + +[fips4210096] +centroid = (0.69690909765670972, -1.393456283839726) +description = Buffington CDP, PA +station = ('kmgw', 0.0049953782191129665) +zone = ('paz075', 0.00095783373111948489) + +[fips42101] +centroid = (0.69829534286839889, -1.3113242657401116) +description = Philadelphia County, PA +station = ('kpne', 0.0020239722062104903) +zone = ('paz071', 3.1585639573037357e-05) + +[fips4210128] +centroid = (0.70470536125232086, -1.4019006929063575) +description = Bulger CDP, PA +station = ('kpit', 0.002210494305357772) +zone = ('paz029', 0.003416362671166242) + +[fips4210160000] +centroid = (0.69829534286839889, -1.3113242657401116) +description = Philadelphia city, PA +station = ('kpne', 0.0020239722062104903) +zone = ('paz071', 3.1585639573037357e-05) + +[fips4210224] +centroid = (0.70478651906253853, -1.4031157911315961) +description = Burgettstown borough, PA +station = ('kpit', 0.0027657377521990096) +zone = ('wvz002', 0.0030885508112340064) + +[fips4210240] +centroid = (0.72926947421073951, -1.3370491273708613) +description = Burlington borough, PA +station = ('kelm', 0.0076823220702735119) +zone = ('paz038', 0.0011943262634758834) + +[fips4210256] +centroid = (0.70920220207008422, -1.3537296404578993) +description = Burnham borough, PA +station = ('kunv', 0.0053457830317696318) +zone = ('paz027', 0.00082923237687734959) + +[fips4210280] +centroid = (0.71230934192423967, -1.3752862369558663) +description = Burnside borough, PA +station = ('kidi', 0.005070090343019449) +zone = ('paz023', 0.0047401861245453892) + +[fips42103] +centroid = (0.72127387656125819, -1.3095469620562208) +description = Pike County, PA +station = ('kmpo', 0.0057120700617162663) +zone = ('paz048', 0.00011111242071336455) + +[fips4210307088] +centroid = (0.72183826368147552, -1.3107161930287168) +description = Blooming Grove township, PA +station = ('kmpo', 0.0054208484489606992) +zone = ('paz048', 0.00096433014777537267) + +[fips4210318704] +centroid = (0.71972943470616835, -1.3077368287290998) +description = Delaware township, PA +station = ('k12n', 0.0046245139188476458) +zone = ('paz048', 0.0021581024133140716) + +[fips4210319272] +centroid = (0.72121975390115378, -1.3077266185529757) +description = Dingman township, PA +station = ('kfwn', 0.0044117331851450227) +zone = ('paz048', 0.0014049438772873897) + +[fips4210330976] +centroid = (0.72090412855922315, -1.3132806227519644) +description = Greene township, PA +station = ('kmpo', 0.0034970811424016607) +zone = ('paz048', 0.0028162247014632126) + +[fips4210340776] +centroid = (0.72420520939986011, -1.3101495544337642) +description = Lackawaxen township, PA +station = ('kmsv', 0.0049996523623596955) +zone = ('paz048', 0.0028555277286348114) + +[fips4210342512] +centroid = (0.71824962239327994, -1.3088651666372217) +description = Lehman township, PA +station = ('k12n', 0.0041538086540522934) +zone = ('paz048', 0.0031780552325790215) + +[fips4210348048] +centroid = (0.7219833005423163, -1.303755209106525) +description = Matamoras borough, PA +station = ('kfwn', 0.0030350282516791094) +zone = ('njz001', 0.0039672651339416982) + +[fips4210349400] +centroid = (0.72123394342797253, -1.3055240653968363) +description = Milford borough, PA +station = ('kfwn', 0.0030819076022222318) +zone = ('paz048', 0.0030531700872907914) + +[fips4210349408] +centroid = (0.72190540649779977, -1.3061639031006174) +description = Milford township, PA +station = ('kfwn', 0.0038975345408430594) +zone = ('paz048', 0.0026213186287877693) + +[fips4210357728] +centroid = (0.72251391554150768, -1.3128009713669315) +description = Palmyra township, PA +station = ('kmpo', 0.0050876190740331163) +zone = ('paz072', 0.0019349878229947431) + +[fips4210362192] +centroid = (0.71939752544231661, -1.310281867844358) +description = Porter township, PA +station = ('kmpo', 0.0043313502800019386) +zone = ('paz048', 0.002051656253639875) + +[fips4210370496] +centroid = (0.72290223384678376, -1.3073964720716682) +description = Shohola township, PA +station = ('kmsv', 0.0051001025524959921) +zone = ('paz048', 0.0022384647843955918) + +[fips4210382928] +centroid = (0.72248169676351581, -1.3049064980943108) +description = Westfall township, PA +station = ('kfwn', 0.0038223934371243002) +zone = ('paz048', 0.0036798452405689859) + +[fips4210464] +centroid = (0.71316865478145897, -1.3944512262331179) +description = Butler city, PA +station = ('kbtp', 0.0015392412256828114) +zone = ('paz014', 0.00090294620396340439) + +[fips42105] +centroid = (0.72864393075353207, -1.3595195957184651) +description = Potter County, PA +station = ('kelz', 0.0062900119973561229) +zone = ('paz006', 5.7919329950515185e-05) + +[fips4210500108] +centroid = (0.72626501207647876, -1.3563649829086555) +description = Abbott township, PA +station = ('kelz', 0.0092946289165341707) +zone = ('paz006', 0.003318414521657171) + +[fips4210500836] +centroid = (0.73071963337963641, -1.3596102655731064) +description = Allegany township, PA +station = ('kelz', 0.0042663166674190593) +zone = ('paz006', 0.0021326140991371634) + +[fips4210503576] +centroid = (0.72670808136039011, -1.3629334597353659) +description = Austin borough, PA +station = ('kelz', 0.0081604353907655334) +zone = ('paz006', 0.003156129536971058) + +[fips4210506432] +centroid = (0.73239979203736127, -1.3580496619691431) +description = Bingham township, PA +station = ('kelz', 0.0034229875552139175) +zone = ('paz006', 0.0039700534604498921) + +[fips4210513760] +centroid = (0.73069689173948293, -1.3634396750316145) +description = Clara township, PA +station = ('kelz', 0.0043701795551254917) +zone = ('paz006', 0.0035925542655532616) + +[fips4210516448] +centroid = (0.729126025599518, -1.3616367324610119) +description = Coudersport borough, PA +station = ('kelz', 0.0056614198194954914) +zone = ('paz006', 0.0016553622407341814) + +[fips4210524184] +centroid = (0.7287906605837472, -1.3624069113533319) +description = Eulalia township, PA +station = ('kelz', 0.0060436620189474018) +zone = ('paz006', 0.0021498105084336509) + +[fips4210528280] +centroid = (0.72840101582823957, -1.3551349272117275) +description = Galeton borough, PA +station = ('kelz', 0.0078849322389953243) +zone = ('paz006', 0.0032909092021855802) + +[fips4210528760] +centroid = (0.73231748230983729, -1.3597017033726184) +description = Genesee township, PA +station = ('kelz', 0.0027555915628655774) +zone = ('paz006', 0.0037317743273222216) + +[fips4210532848] +centroid = (0.73231257793463911, -1.3556667290348101) +description = Harrison township, PA +station = ('kelz', 0.0048959439509213987) +zone = ('paz006', 0.0047107004801882424) + +[fips4210533512] +centroid = (0.73068980570271991, -1.3619606830234745) +description = Hebron township, PA +station = ('kelz', 0.0041183454744645447) +zone = ('paz006', 0.0027712195729303534) + +[fips4210533568] +centroid = (0.73068285929229693, -1.3556910763778756) +description = Hector township, PA +station = ('kelz', 0.0058782522590757422) +zone = ('paz006', 0.0035515354258119853) + +[fips4210535400] +centroid = (0.72768986397122204, -1.3616498922435718) +description = Homer township, PA +station = ('kelz', 0.0070971046167782907) +zone = ('paz006', 0.0018139841798152107) + +[fips4210538920] +centroid = (0.72768831062818773, -1.3637393131575968) +description = Keating township, PA +station = ('kelz', 0.0073135684974392628) +zone = ('paz006', 0.0032622133948152728) + +[fips4210557280] +centroid = (0.73165361142225627, -1.3617153420905219) +description = Oswayo borough, PA +station = ('kelz', 0.0031413194772953773) +zone = ('paz006', 0.0034686195056469254) + +[fips4210557288] +centroid = (0.73219270872161224, -1.3614763541560462) +description = Oswayo township, PA +station = ('kelz', 0.0025924275947329682) +zone = ('paz006', 0.0038833723611027288) + +[fips4210560200] +centroid = (0.72908131026408196, -1.355514361791111) +description = Pike township, PA +station = ('kelz', 0.0071697110921269732) +zone = ('paz006', 0.0030418904103246421) + +[fips4210561400] +centroid = (0.73068785093395761, -1.3644451592136884) +description = Pleasant Valley township, PA +station = ('kelz', 0.0046952684499709111) +zone = ('paz006', 0.0042177798456411114) + +[fips4210562072] +centroid = (0.72606749316503061, -1.3635950966015045) +description = Portage township, PA +station = ('kbfd', 0.0074453312264635306) +zone = ('paz011', 0.0030245996309173052) + +[fips4210566416] +centroid = (0.72911984713396594, -1.3638392856171511) +description = Roulette township, PA +station = ('kelz', 0.0059572062848935953) +zone = ('paz006', 0.0032521885126621489) + +[fips4210569736] +centroid = (0.73231114676465248, -1.3637472544056934) +description = Sharon township, PA +station = ('kelz', 0.0030440014140224046) +zone = ('paz006', 0.0048676181550618113) + +[fips4210570304] +centroid = (0.73246213519824255, -1.3646811800884358) +description = Shinglehouse borough, PA +station = ('kelz', 0.0033891179434632208) +zone = ('paz006', 0.0054483865188989077) + +[fips4210574072] +centroid = (0.72450753533289058, -1.3567511719122443) +description = Stewardson township, PA +station = ('kelz', 0.010834371569808193) +zone = ('paz012', 0.0038368424939101962) + +[fips4210575224] +centroid = (0.72744698395251439, -1.3596828189101118) +description = Summit township, PA +station = ('kelz', 0.0074417123740405907) +zone = ('paz006', 0.0011458106188294492) + +[fips4210575720] +centroid = (0.72900083313227237, -1.3599744110682424) +description = Sweden township, PA +station = ('kelz', 0.0058735114439507404) +zone = ('paz006', 0.00052590660447688763) + +[fips4210575952] +centroid = (0.72622129157871629, -1.3615977592588149) +description = Sylvania township, PA +station = ('kelz', 0.0085642040150187386) +zone = ('paz006', 0.0028224532822139206) + +[fips4210578240] +centroid = (0.73134618912780991, -1.3570776357488299) +description = Ulysses borough, PA +station = ('kelz', 0.0046827445238899279) +zone = ('paz006', 0.0033123001800426117) + +[fips4210578248] +centroid = (0.73011531312613343, -1.3575078768627389) +description = Ulysses township, PA +station = ('kelz', 0.0054756817587089703) +zone = ('paz006', 0.0021506354594161129) + +[fips4210582568] +centroid = (0.72761830547189021, -1.3563970620603072) +description = West Branch township, PA +station = ('kelz', 0.008060498087387697) +zone = ('paz006', 0.0025371463250154391) + +[fips4210584360] +centroid = (0.72509225553889367, -1.3602996880809366) +description = Wharton township, PA +station = ('kelz', 0.0097233247725793531) +zone = ('paz006', 0.0035414585883969179) + +[fips4210600] +centroid = (0.72070416618682209, -1.3700426744709295) +description = Byrnedale CDP, PA +station = ('kfig', 0.0043778036730871299) +zone = ('paz010', 0.0030410369676250482) + +[fips42107] +centroid = (0.71041340821109078, -1.330251558626534) +description = Schuylkill County, PA +station = ('kmui', 0.0066074506256302281) +zone = ('paz058', 4.5331810916477932e-05) + +[fips4210703264] +centroid = (0.71176441522518197, -1.3324698546525264) +description = Ashland borough, PA +station = ('kmui', 0.0067435148184752771) +zone = ('paz058', 0.0021512092161679718) + +[fips4210703488] +centroid = (0.70852133167558862, -1.3281510723250516) +description = Auburn borough, PA +station = ('krdg', 0.0043514624155377218) +zone = ('paz058', 0.0024883046971329093) + +[fips4210704352] +centroid = (0.71058975627871224, -1.3334422822985676) +description = Barry township, PA +station = ('kmui', 0.0053671749244756694) +zone = ('paz058', 0.0024463358884015507) + +[fips4210707336] +centroid = (0.71118987028871805, -1.3282493692685238) +description = Blythe township, PA +station = ('krdg', 0.0068999606932485724) +zone = ('paz058', 0.0016658441503695008) + +[fips4210708200] +centroid = (0.7098100478886763, -1.3309972680027411) +description = Branch township, PA +station = ('kmui', 0.0057808091634943123) +zone = ('paz058', 0.00087139128936663699) + +[fips4210710488] +centroid = (0.7114971878634091, -1.3321968502509294) +description = Butler township, PA +station = ('kmui', 0.006600436587407812) +zone = ('paz058', 0.0018264372299195508) + +[fips4210711608] +centroid = (0.71065353060958003, -1.3313096295789706) +description = Cass township, PA +station = ('kmui', 0.0062602024957723913) +zone = ('paz058', 0.00085007185950453188) + +[fips4210714600] +centroid = (0.71243886280803015, -1.3249859351798521) +description = Coaldale borough, PA +station = ('kxll', 0.0071268847870647077) +zone = ('paz054', 0.0032318660659638068) + +[fips4210717152] +centroid = (0.70913415168254901, -1.3298337442568993) +description = Cressona borough, PA +station = ('krdg', 0.0055026116027866558) +zone = ('paz058', 0.0013500253468750956) + +[fips4210718576] +centroid = (0.70896372028109167, -1.327443655472633) +description = Deer Lake borough, PA +station = ('krdg', 0.0045914963052588603) +zone = ('paz058', 0.0025788787148446081) + +[fips4210718672] +centroid = (0.71303470076136843, -1.3273891837466785) +description = Delano township, PA +station = ('krdg', 0.008581467952167611) +zone = ('paz058', 0.0033564509065499631) + +[fips4210720] +centroid = (0.70030615415291397, -1.3756499810252745) +description = Cairnbrook CDP, PA +station = ('kjst', 0.0033579071908910771) +zone = ('paz033', 0.0038561806451637478) + +[fips4210720880] +centroid = (0.71004441070063407, -1.3261553406852735) +description = East Brunswick township, PA +station = ('krdg', 0.0055174803829281102) +zone = ('paz058', 0.0031087648400694588) + +[fips4210721616] +centroid = (0.71051486420050913, -1.3293293091964877) +description = East Norwegian township, PA +station = ('krdg', 0.0065361618782627858) +zone = ('paz058', 0.00067821497752144216) + +[fips4210721952] +centroid = (0.71362837450643435, -1.3286520690868364) +description = East Union township, PA +station = ('kavp', 0.0093340400256007993) +zone = ('paz058', 0.0033909638496834719) + +[fips4210722912] +centroid = (0.71053802471968308, -1.3350855796024903) +description = Eldred township, PA +station = ('kmui', 0.0049361330286687467) +zone = ('paz052', 0.0037541990259099254) + +[fips4210726944] +centroid = (0.71035748786185682, -1.3325827774551304) +description = Foster township, PA +station = ('kmui', 0.005467062657453948) +zone = ('paz058', 0.0017935992826693748) + +[fips4210727232] +centroid = (0.71180314408128376, -1.3305156269423608) +description = Frackville borough, PA +station = ('kmui', 0.0075409743741088053) +zone = ('paz058', 0.0013695841221208712) + +[fips4210727248] +centroid = (0.70945815460488915, -1.3333231635771188) +description = Frailey township, PA +station = ('kmui', 0.0044068621397148049) +zone = ('paz058', 0.0025545495570959008) + +[fips4210729088] +centroid = (0.71200912783960413, -1.3303483894934347) +description = Gilberton borough, PA +station = ('kmui', 0.0077820611106814083) +zone = ('paz058', 0.0015601757691837482) + +[fips4210729264] +centroid = (0.71196135817797701, -1.3313881693953102) +description = Girardville borough, PA +station = ('kmui', 0.0073077117186814197) +zone = ('paz058', 0.0017496321348123736) + +[fips4210730128] +centroid = (0.71122369476962155, -1.3323831292419948) +description = Gordon borough, PA +station = ('kmui', 0.0062927666268934373) +zone = ('paz058', 0.0018117224180473526) + +[fips4210733584] +centroid = (0.70943869418372951, -1.3352754888783998) +description = Hegins township, PA +station = ('kmui', 0.003830371722608182) +zone = ('paz052', 0.0044646004174403193) + +[fips4210736072] +centroid = (0.70930496705644164, -1.3372206932363326) +description = Hubley township, PA +station = ('kmui', 0.0036716336992565764) +zone = ('paz052', 0.0038919339527340581) + +[fips4210740096] +centroid = (0.71346420883699169, -1.3273313958951449) +description = Kline township, PA +station = ('kavp', 0.0089675238861408879) +zone = ('paz058', 0.0037224433288775014) + +[fips4210741264] +centroid = (0.70900737096568411, -1.3285911745492345) +description = Landingville borough, PA +station = ('krdg', 0.0049318155570260286) +zone = ('paz058', 0.0019009698665182029) + +[fips4210745824] +centroid = (0.71385647158637744, -1.3263165218416952) +description = McAdoo borough, PA +station = ('kavp', 0.0082791496552334452) +zone = ('paz058', 0.0045079686504861166) + +[fips4210746584] +centroid = (0.71244961403622231, -1.3289646226492835) +description = Mahanoy township, PA +station = ('krdg', 0.0082600248852228945) +zone = ('paz058', 0.0022124301330054283) + +[fips4210746592] +centroid = (0.71231471753833575, -1.3288619972892661) +description = Mahanoy City borough, PA +station = ('krdg', 0.0081086459404023318) +zone = ('paz058', 0.0021279323846234541) + +[fips4210748448] +centroid = (0.71018888905611421, -1.3296038145812417) +description = Mechanicsville borough, PA +station = ('krdg', 0.0063300713272811263) +zone = ('paz058', 0.00053624528980011324) + +[fips4210749048] +centroid = (0.71083392784106625, -1.327965596185442) +description = Middleport borough, PA +station = ('krdg', 0.0065010190160040456) +zone = ('paz058', 0.0017509822084869964) + +[fips4210750088] +centroid = (0.71018845272380116, -1.3309778424881664) +description = Minersville borough, PA +station = ('kmui', 0.006065482901497242) +zone = ('paz058', 0.00063201441733191574) + +[fips4210751488] +centroid = (0.70988350879689277, -1.3297381002138899) +description = Mount Carbon borough, PA +station = ('krdg', 0.0061073600746729753) +zone = ('paz058', 0.00067583799247507618) + +[fips4210753376] +centroid = (0.71108714020894559, -1.3302533912222487) +description = New Castle township, PA +station = ('kmui', 0.0071024807890328187) +zone = ('paz058', 0.0006356598397615279) + +[fips4210753944] +centroid = (0.71066018031403022, -1.3284868038599651) +description = New Philadelphia borough, PA +station = ('krdg', 0.0064438320281157285) +zone = ('paz058', 0.0013302633235412846) + +[fips4210754016] +centroid = (0.71016002131028622, -1.3263247947023495) +description = New Ringgold borough, PA +station = ('krdg', 0.0056394568436093796) +zone = ('paz058', 0.0029677016544343991) + +[fips4210755192] +centroid = (0.70956599849936997, -1.3293016806344287) +description = North Manheim township, PA +station = ('krdg', 0.0056711536279925008) +zone = ('paz058', 0.0011269893119897592) + +[fips4210755472] +centroid = (0.71398025033692891, -1.3300149094332561) +description = North Union township, PA +station = ('kseg', 0.0088880448307040085) +zone = ('paz058', 0.003531688464282561) + +[fips4210755624] +centroid = (0.71020309603622545, -1.3303584076833412) +description = Norwegian township, PA +station = ('kmui', 0.0064013565721291145) +zone = ('paz058', 0.00027005847247085063) + +[fips4210757184] +centroid = (0.70954906880562563, -1.3282651819515467) +description = Orwigsburg borough, PA +station = ('krdg', 0.0053384445848117289) +zone = ('paz058', 0.0017358723542579097) + +[fips4210757752] +centroid = (0.71010617790286212, -1.3294161393267745) +description = Palo Alto borough, PA +station = ('krdg', 0.0061928676151986276) +zone = ('paz058', 0.00070083228479552221) + +[fips4210760456] +centroid = (0.70779059722436366, -1.3331874816810689) +description = Pine Grove borough, PA +station = ('kmui', 0.0031845917813499002) +zone = ('paz059', 0.0033865857923266276) + +[fips4210760464] +centroid = (0.7076367813573855, -1.3337302790784391) +description = Pine Grove township, PA +station = ('kmui', 0.0027770372387088964) +zone = ('paz059', 0.0031427910491528604) + +[fips4210762128] +centroid = (0.71029514470097554, -1.3293582642087785) +description = Port Carbon borough, PA +station = ('krdg', 0.0063449046301352566) +zone = ('paz058', 0.00067196468049696731) + +[fips4210762136] +centroid = (0.70831138601986632, -1.3269880372714) +description = Port Clinton borough, PA +station = ('krdg', 0.003874894360065714) +zone = ('paz060', 0.0032273125366218979) + +[fips4210762200] +centroid = (0.70863778004328171, -1.3353826695477649) +description = Porter township, PA +station = ('kmui', 0.0030317136361372177) +zone = ('paz059', 0.0041596721630252839) + +[fips4210762432] +centroid = (0.70999739153058528, -1.3301016348437877) +description = Pottsville city, PA +station = ('krdg', 0.0063429540554502655) +zone = ('paz058', 0.00046338374213642869) + +[fips4210764088] +centroid = (0.70939085470893226, -1.3322355965603239) +description = Reilly township, PA +station = ('kmui', 0.0048365478150222208) +zone = ('paz058', 0.0018607634275908367) + +[fips4210765000] +centroid = (0.71308063782728093, -1.3305524533895778) +description = Ringtown borough, PA +station = ('kseg', 0.0083694077659299503) +zone = ('paz058', 0.0026406739583382413) + +[fips4210766760] +centroid = (0.71293999919615525, -1.3257731833922568) +description = Rush township, PA +station = ('kxll', 0.0079046129842781157) +zone = ('paz054', 0.0035467215204090657) + +[fips4210766944] +centroid = (0.71190610105385888, -1.3284159434923342) +description = Ryan township, PA +station = ('krdg', 0.0076244497086331705) +zone = ('paz058', 0.0019956806371561435) + +[fips4210767224] +centroid = (0.71071713040752271, -1.3297722563073513) +description = St. Clair borough, PA +station = ('krdg', 0.0068604253523575146) +zone = ('paz058', 0.00043076407834816908) + +[fips4210768] +centroid = (0.69929522454357385, -1.3947271627878581) +description = California borough, PA +station = ('kagc', 0.0049455231871728079) +zone = ('paz075', 0.002786615778270776) + +[fips4210768304] +centroid = (0.71189336015031934, -1.3266728308084899) +description = Schuylkill township, PA +station = ('krdg', 0.0073874244567536558) +zone = ('paz058', 0.0030495678749959581) + +[fips4210768312] +centroid = (0.70909685399643385, -1.3294608546622104) +description = Schuylkill Haven borough, PA +station = ('krdg', 0.0053204722820555054) +zone = ('paz058', 0.0014724326417784389) + +[fips4210770056] +centroid = (0.71239245450321964, -1.3299525313657898) +description = Shenandoah borough, PA +station = ('kmui', 0.0082682850058770734) +zone = ('paz058', 0.0019510324853186458) + +[fips4210772312] +centroid = (0.70834561192649792, -1.3290847711149909) +description = South Manheim township, PA +station = ('krdg', 0.0045315742051391392) +zone = ('paz058', 0.0022757221734211013) + +[fips4210776032] +centroid = (0.71215247173107044, -1.3253547581573837) +description = Tamaqua borough, PA +station = ('krdg', 0.0076312086476056553) +zone = ('paz054', 0.0036219482357546218) + +[fips4210777184] +centroid = (0.70840181152841208, -1.3361031938228656) +description = Tower City borough, PA +station = ('kmui', 0.0027130195137776425) +zone = ('paz059', 0.0040635642732677483) + +[fips4210777392] +centroid = (0.70913156859525595, -1.3332777850165669) +description = Tremont borough, PA +station = ('kmui', 0.0041508817755074616) +zone = ('paz058', 0.0026687519604247948) + +[fips4210777400] +centroid = (0.70846972228960725, -1.3341468717175977) +description = Tremont township, PA +station = ('kmui', 0.0032374934219601371) +zone = ('paz058', 0.0035784533483320335) + +[fips4210778400] +centroid = (0.7130249792774348, -1.3308409737682252) +description = Union township, PA +station = ('kseg', 0.0081475316003499915) +zone = ('paz058', 0.0026155933772222372) + +[fips4210779120] +centroid = (0.70989050756719319, -1.3371841809483807) +description = Upper Mahantongo township, PA +station = ('kseg', 0.0041589426408179201) +zone = ('paz052', 0.0033508026378486909) + +[fips4210780576] +centroid = (0.71084757631581685, -1.3265103930150066) +description = Walker township, PA +station = ('krdg', 0.0063351416973656816) +zone = ('paz058', 0.0028394526801537828) + +[fips4210781312] +centroid = (0.70793516284630642, -1.331754112579576) +description = Washington township, PA +station = ('kmui', 0.0041451814970650354) +zone = ('paz058', 0.0027729981544563375) + +[fips4210781792] +centroid = (0.70821366503504724, -1.3305145971981023) +description = Wayne township, PA +station = ('krdg', 0.0051041467008614673) +zone = ('paz058', 0.0022494388639392438) + +[fips4210782632] +centroid = (0.70918460915122417, -1.3275282515814775) +description = West Brunswick township, PA +station = ('krdg', 0.0048214902371864835) +zone = ('paz058', 0.0024031134645908924) + +[fips4210783408] +centroid = (0.71215514208482589, -1.3305161156345513) +description = West Mahanoy township, PA +station = ('kmui', 0.0078282339229177114) +zone = ('paz058', 0.0017178556501276552) + +[fips4210783792] +centroid = (0.71109384227327332, -1.3241365881526619) +description = West Penn township, PA +station = ('kxll', 0.0058359041176954942) +zone = ('paz054', 0.0037127412319901206) + +[fips4210792] +centroid = (0.71777833113536393, -1.3885433041684097) +description = Callensburg borough, PA +station = ('kfkl', 0.006054896235306589) +zone = ('paz015', 0.0021414474433292881) + +[fips4210800] +centroid = (0.71103636858100494, -1.3969260332992757) +description = Callery borough, PA +station = ('kbtp', 0.001393096184409003) +zone = ('paz014', 0.0034305884400678763) + +[fips4210808] +centroid = (0.69466116594001859, -1.3774418756617119) +description = Callimont borough, PA +station = ('kcbe', 0.0038967073353359002) +zone = ('paz033', 0.0033143839536344758) + +[fips4210816] +centroid = (0.6980812782356417, -1.3226609122701005) +description = Caln CDP, PA +station = ('kmqs', 0.0012025550907462457) +zone = ('paz067', 0.00062181331812615663) + +[fips4210832] +centroid = (0.70195226143693246, -1.3873480852433513) +description = Calumet CDP, PA +station = ('klbe', 0.0016358805227776876) +zone = ('paz073', 0.0024722965752684463) + +[fips42109] +centroid = (0.71131501039608591, -1.3451768115381335) +description = Snyder County, PA +station = ('kseg', 0.0029286039902337705) +zone = ('paz050', 0.00025849378416906187) + +[fips4210900316] +centroid = (0.71234983356288595, -1.3470250803094108) +description = Adams township, PA +station = ('kseg', 0.0041237870301742358) +zone = ('paz050', 0.0016346168327913066) + +[fips4210904736] +centroid = (0.71127930095959013, -1.3465592868386385) +description = Beaver township, PA +station = ('kseg', 0.0039316050883203956) +zone = ('paz050', 0.0011233237471718102) + +[fips4210904848] +centroid = (0.71121695779870886, -1.3468872342050879) +description = Beavertown borough, PA +station = ('kseg', 0.0041875415760619086) +zone = ('paz050', 0.0013794317138472686) + +[fips4210912] +centroid = (0.72957965412540382, -1.3973046126673259) +description = Cambridge Springs borough, PA +station = ('kgkj', 0.0035823066166690391) +zone = ('paz003', 0.0021310439667069211) + +[fips4210912060] +centroid = (0.71285114448393627, -1.3452123638949969) +description = Center township, PA +station = ('kseg', 0.0027903213591964969) +zone = ('paz050', 0.0012820377184405228) + +[fips4210912672] +centroid = (0.70998053165001107, -1.3428636394140032) +description = Chapman township, PA +station = ('kseg', 0.0025949040757081141) +zone = ('paz050', 0.0023390182636181438) + +[fips4210927440] +centroid = (0.71180159073824933, -1.3451739666514528) +description = Franklin township, PA +station = ('kseg', 0.0027851643344379028) +zone = ('paz050', 0.00023357834831460483) + +[fips4210927696] +centroid = (0.71143978398431107, -1.3428716504752696) +description = Freeburg borough, PA +station = ('kseg', 0.0013621695626409684) +zone = ('paz050', 0.0017131682020556658) + +[fips4210937448] +centroid = (0.71317991215513432, -1.3431386160376548) +description = Jackson township, PA +station = ('kseg', 0.0014242031079962595) +zone = ('paz050', 0.0022031713365047098) + +[fips4210945992] +centroid = (0.71048510633676254, -1.3493379033676911) +description = McClure borough, PA +station = ('kunv', 0.0075389388848106035) +zone = ('paz028', 0.0033094555858610669) + +[fips4210948960] +centroid = (0.71191107524222697, -1.3446865136446633) +description = Middleburg borough, PA +station = ('kseg', 0.0024014898214050084) +zone = ('paz050', 0.00047653410764045615) + +[fips4210949016] +centroid = (0.71243467401782534, -1.3433746194591094) +description = Middlecreek township, PA +station = ('kseg', 0.0013617565304087124) +zone = ('paz050', 0.001583156256002564) + +[fips4210950488] +centroid = (0.71316551318880539, -1.3414536751777795) +description = Monroe township, PA +station = ('kseg', 0.00078579639343136362) +zone = ('paz052', 0.001993887610955607) + +[fips4210958864] +centroid = (0.7122819053483983, -1.3420826743869056) +description = Penn township, PA +station = ('kseg', 0.00039683957465540493) +zone = ('paz052', 0.0025668935102488399) + +[fips4210959504] +centroid = (0.71027132095668588, -1.3442079269104741) +description = Perry township, PA +station = ('kseg', 0.0029055193599138622) +zone = ('paz050', 0.0014742811584040241) + +[fips4210960] +centroid = (0.70295038032956303, -1.3366558872370946) +description = Campbelltown CDP, PA +station = ('kmui', 0.0027549222675866372) +zone = ('paz059', 0.0023208751101205212) + +[fips4210969216] +centroid = (0.71209674336805417, -1.3415543283157421) +description = Selinsgrove borough, PA +station = ('kseg', 0.00028896378184788992) +zone = ('paz052', 0.002253981001281654) + +[fips4210969616] +centroid = (0.71313706432199797, -1.3408782575766895) +description = Shamokin Dam borough, PA +station = ('kseg', 0.00091883648434735034) +zone = ('paz052', 0.0015578413289722636) + +[fips4210972856] +centroid = (0.7115413621467771, -1.3481596315896696) +description = Spring township, PA +station = ('kseg', 0.0050549528646794267) +zone = ('paz050', 0.0022969410175613754) + +[fips4210978408] +centroid = (0.71076332927282304, -1.3420599502000448) +description = Union township, PA +station = ('kseg', 0.0016627201691864955) +zone = ('paz050', 0.0024598809532537279) + +[fips4210981320] +centroid = (0.71133640813271537, -1.3431851290622203) +description = Washington township, PA +station = ('kseg', 0.0016073620546230706) +zone = ('paz050', 0.0014893488062159112) + +[fips4210982464] +centroid = (0.71127528670231066, -1.3493235393079468) +description = West Beaver township, PA +station = ('kunv', 0.0073251671731905154) +zone = ('paz028', 0.0040590587315620227) + +[fips4210983808] +centroid = (0.71047377914991727, -1.3464255597113506) +description = West Perry township, PA +station = ('kseg', 0.0041404895287317197) +zone = ('paz050', 0.0014735663712679026) + +[fips4211000] +centroid = (0.70235836464728651, -1.3426363626388083) +description = Camp Hill borough, PA +station = ('kcxy', 0.0011232697668205835) +zone = ('paz057', 0.0036110620203058177) + +[fips4211072] +centroid = (0.72975134216392257, -1.3934166474124132) +description = Canadohta Lake CDP, PA +station = ('kgkj', 0.0058449160574516679) +zone = ('paz002', 0.0035959689857752697) + +[fips42111] +centroid = (0.69780527186773134, -1.3793072835662434) +description = Somerset County, PA +station = ('kjst', 0.0064061899764710373) +zone = ('paz033', 0.00015355676630083442) + +[fips4211100396] +centroid = (0.69368542216839868, -1.384645599976271) +description = Addison borough, PA +station = ('k2g4', 0.0028851034515554835) +zone = ('paz076', 0.003508591079610832) + +[fips4211100404] +centroid = (0.6942286733513745, -1.3837971081604139) +description = Addison township, PA +station = ('k2g4', 0.0035040153052295115) +zone = ('paz076', 0.0036703078108056421) + +[fips4211100876] +centroid = (0.69713335501229856, -1.3754453760770631) +description = Allegheny township, PA +station = ('kcbe', 0.00575007762791127) +zone = ('paz033', 0.0030028203174218516) + +[fips4211105648] +centroid = (0.70167021622981018, -1.3775769990524014) +description = Benson borough, PA +station = ('kjst', 0.0023640974946323931) +zone = ('paz074', 0.0040856345950213173) + +[fips4211105776] +centroid = (0.69676201876064425, -1.3779524368277978) +description = Berlin borough, PA +station = ('kcbe', 0.0059217785876875479) +zone = ('paz033', 0.001365753587302431) + +[fips4211106640] +centroid = (0.69623297455777966, -1.3813028057665111) +description = Black township, PA +station = ('k2g4', 0.0060420693423900405) +zone = ('paz033', 0.0020885318530301667) + +[fips4211107712] +centroid = (0.70095012828702241, -1.3792894986611657) +description = Boswell borough, PA +station = ('kjst', 0.0037450546024280118) +zone = ('paz074', 0.0030364124871660007) + +[fips4211109256] +centroid = (0.69651568299001776, -1.3784789503032469) +description = Brothersvalley township, PA +station = ('kcbe', 0.0058926833707787412) +zone = ('paz033', 0.0013003108910886094) + +[fips4211110808] +centroid = (0.69466116594001859, -1.3774418756617119) +description = Callimont borough, PA +station = ('kcbe', 0.0038967073353359002) +zone = ('paz033', 0.0033143839536344758) + +[fips4211111624] +centroid = (0.69613167564799394, -1.3824866625981389) +description = Casselman borough, PA +station = ('k2g4', 0.0056059697370067756) +zone = ('paz033', 0.0028752294445138901) + +[fips4211112296] +centroid = (0.70004479109742779, -1.3753948487952179) +description = Central City borough, PA +station = ('kjst', 0.003634415923104498) +zone = ('paz033', 0.0038319204711416469) + +[fips4211115568] +centroid = (0.70230378820157668, -1.3782646762309796) +description = Conemaugh township, PA +station = ('kjst', 0.0022553683683742554) +zone = ('paz074', 0.0035155196008318131) + +[fips4211115680] +centroid = (0.6948166049632013, -1.3850015773305075) +description = Confluence borough, PA +station = ('k2g4', 0.0040201667842637533) +zone = ('paz076', 0.0025738918390151204) + +[fips4211123168] +centroid = (0.69419614041411737, -1.3811380990450006) +description = Elk Lick township, PA +station = ('k2g4', 0.0043849765996921272) +zone = ('paz033', 0.0037312717399083698) + +[fips4211124680] +centroid = (0.69558577156455514, -1.3748755784361646) +description = Fairhope township, PA +station = ('kcbe', 0.0041728141362793684) +zone = ('paz033', 0.0039756446153308891) + +[fips4211128520] +centroid = (0.69576475507934721, -1.3798895428580014) +description = Garrett borough, PA +station = ('kcbe', 0.0059348928942259309) +zone = ('paz033', 0.0019396771903283246) + +[fips4211131336] +centroid = (0.69384326974594912, -1.3783093566598308) +description = Greenville township, PA +station = ('kcbe', 0.0037253975686614106) +zone = ('mdz501', 0.0027282863242999791) + +[fips4211135608] +centroid = (0.70075770573698992, -1.3772969609739187) +description = Hooversville borough, PA +station = ('kjst', 0.0030903722107529057) +zone = ('paz033', 0.0034650720949106514) + +[fips4211136888] +centroid = (0.69886124842506547, -1.3764865696956328) +description = Indian Lake borough, PA +station = ('kjst', 0.0048181285900383963) +zone = ('paz033', 0.0024739089611504426) + +[fips4211137920] +centroid = (0.69928637572426622, -1.3828238602096243) +description = Jefferson township, PA +station = ('klbe', 0.0044168618487490331) +zone = ('paz074', 0.0029837068582467237) + +[fips4211138032] +centroid = (0.70122175387851027, -1.3798780760448157) +description = Jenner township, PA +station = ('kjst', 0.003892524539631557) +zone = ('paz074', 0.0025137236658120772) + +[fips4211138048] +centroid = (0.70098145694709568, -1.379875440597645) +description = Jennerstown borough, PA +station = ('kjst', 0.004046019399205009) +zone = ('paz074', 0.0026249825409630028) + +[fips4211141568] +centroid = (0.6944376590760083, -1.3775167851932075) +description = Larimer township, PA +station = ('kcbe', 0.0037466182390902001) +zone = ('mdz501', 0.00326126844501706) + +[fips4211143440] +centroid = (0.69980311535590423, -1.38076131736608) +description = Lincoln township, PA +station = ('klbe', 0.0050479993186233457) +zone = ('paz033', 0.0024235112330474318) + +[fips4211145136] +centroid = (0.69578327302271081, -1.3850108973887132) +description = Lower Turkeyfoot township, PA +station = ('k2g4', 0.0049861754082532106) +zone = ('paz076', 0.0022001543011371991) + +[fips4211148912] +centroid = (0.69487381685608163, -1.3792933732921049) +description = Meyersdale borough, PA +station = ('kcbe', 0.0049784903102794032) +zone = ('paz033', 0.0027779304463578436) + +[fips4211149024] +centroid = (0.69755584686432881, -1.3835734965766482) +description = Middlecreek township, PA +station = ('klbe', 0.005775554368247714) +zone = ('paz076', 0.003528897122717891) + +[fips4211149416] +centroid = (0.69736454132501779, -1.3817986887135878) +description = Milford township, PA +station = ('klbe', 0.0064770465180062431) +zone = ('paz033', 0.001933461870577502) + +[fips4211152] +centroid = (0.70274366353295681, -1.3995232752124611) +description = Canonsburg borough, PA +station = ('kafj', 0.0026224858899735275) +zone = ('paz029', 0.0015415481464640256) + +[fips4211153168] +centroid = (0.69784338985859484, -1.3748355405831236) +description = New Baltimore borough, PA +station = ('kjst', 0.0058719597065974762) +zone = ('paz033', 0.003429528325138841) + +[fips4211153416] +centroid = (0.69712393023433772, -1.3821567255563421) +description = New Centerville borough, PA +station = ('klbe', 0.0065698955057240166) +zone = ('paz033', 0.0022494470824206705) + +[fips4211154704] +centroid = (0.69539207492416888, -1.3766655183038397) +description = Northampton township, PA +station = ('kcbe', 0.0042705438078555411) +zone = ('paz033', 0.0030335513156980196) + +[fips4211156352] +centroid = (0.70138410440553078, -1.3744467161323644) +description = Ogle township, PA +station = ('kjst', 0.0025309200402394406) +zone = ('paz034', 0.004676854018988731) + +[fips4211157544] +centroid = (0.70235696838388484, -1.3761929529555699) +description = Paint borough, PA +station = ('kjst', 0.0013204985556565423) +zone = ('paz024', 0.0047789298033370769) + +[fips4211157552] +centroid = (0.70177617516869872, -1.3761423733138469) +description = Paint township, PA +station = ('kjst', 0.0018913745364004862) +zone = ('paz033', 0.0047813554124702933) + +[fips4211160] +centroid = (0.72705372636545507, -1.3413319908223302) +description = Canton borough, PA +station = ('kipt', 0.0071545671893504664) +zone = ('paz041', 0.0058004907849190015) + +[fips4211163144] +centroid = (0.70015701576833111, -1.3780318144021784) +description = Quemahoning township, PA +station = ('kjst', 0.0038610697296443028) +zone = ('paz033', 0.0026879363428609459) + +[fips4211165736] +centroid = (0.69666133071609671, -1.3815556516152476) +description = Rockwood borough, PA +station = ('k2g4', 0.006352162854767778) +zone = ('paz033', 0.0019901832413729116) + +[fips4211167584] +centroid = (0.69382846935389209, -1.3802824513792102) +description = Salisbury borough, PA +station = ('k2g4', 0.0045781768796483123) +zone = ('mdz501', 0.003379580956664054) + +[fips4211169336] +centroid = (0.69855105105710846, -1.3839170297333183) +description = Seven Springs borough, PA +station = ('klbe', 0.0047470870903780884) +zone = ('paz074', 0.0038040543513947794) + +[fips4211169448] +centroid = (0.70012095726598489, -1.3758432238800553) +description = Shade township, PA +station = ('kjst', 0.0035378967654974519) +zone = ('paz033', 0.0036216940116715591) + +[fips4211169680] +centroid = (0.69843453287624535, -1.3771855740610566) +description = Shanksville borough, PA +station = ('kjst', 0.0053154382883997221) +zone = ('paz033', 0.0018018774968843289) + +[fips4211171776] +centroid = (0.69821949085910706, -1.3801689351646604) +description = Somerset borough, PA +station = ('kjst', 0.0063420194196867636) +zone = ('paz033', 0.00087261884440159674) + +[fips4211171784] +centroid = (0.69850148370635179, -1.3798625775210578) +description = Somerset township, PA +station = ('kjst', 0.0059798471534882429) +zone = ('paz033', 0.00095139855366585199) + +[fips4211171920] +centroid = (0.69405597302188959, -1.3758360505768295) +description = Southampton township, PA +station = ('kcbe', 0.0027958805916953964) +zone = ('mdz501', 0.003170502919101825) + +[fips4211174440] +centroid = (0.69836452771994784, -1.3767392410114441) +description = Stonycreek township, PA +station = ('kjst', 0.0053326416563045636) +zone = ('paz033', 0.0020902407896158126) + +[fips4211174672] +centroid = (0.69993314238517779, -1.3780169965568292) +description = Stoystown borough, PA +station = ('kjst', 0.0040607381800904204) +zone = ('paz033', 0.0024851152572498295) + +[fips4211175232] +centroid = (0.6952160235625201, -1.3797765502422272) +description = Summit township, PA +station = ('kcbe', 0.0054831815421957728) +zone = ('paz033', 0.0024625360476536731) + +[fips4211179336] +centroid = (0.69626243571555335, -1.3838450523549661) +description = Upper Turkeyfoot township, PA +station = ('k2g4', 0.0055047180615764111) +zone = ('paz076', 0.0030540054097317822) + +[fips4211179424] +centroid = (0.69490799040283568, -1.384613049585721) +description = Ursina borough, PA +station = ('k2g4', 0.0041079126135394354) +zone = ('paz076', 0.0027858663524606897) + +[fips4211182128] +centroid = (0.69342999323236931, -1.376156911906516) +description = Wellersburg borough, PA +station = ('kcbe', 0.002328664050860118) +zone = ('mdz501', 0.0024990477628263935) + +[fips4211185632] +centroid = (0.70224238751849155, -1.3757502501908012) +description = Windber borough, PA +station = ('kjst', 0.0014208658526683863) +zone = ('paz024', 0.0047701625538383698) + +[fips4211232] +centroid = (0.72555733342467266, -1.317806977087379) +description = Carbondale city, PA +station = ('kavp', 0.0051185387541545033) +zone = ('paz044', 0.0027135075739609447) + +[fips4211272] +centroid = (0.70162223712867278, -1.3474665264371175) +description = Carlisle borough, PA +station = ('kmdt', 0.0058319111042936939) +zone = ('paz063', 0.0010304708076681083) + +[fips42113] +centroid = (0.72326077683502099, -1.3353780269719546) +description = Sullivan County, PA +station = ('kipt', 0.0062572515515008451) +zone = ('paz042', 0.00010849593286340727) + +[fips4211313000] +centroid = (0.72433219955623529, -1.3333623985787038) +description = Cherry township, PA +station = ('kipt', 0.0081062387149195957) +zone = ('paz042', 0.0017952931097892037) + +[fips4211315208] +centroid = (0.72369415954158367, -1.3316422718811083) +description = Colley township, PA +station = ('kipt', 0.0089347280592715662) +zone = ('paz042', 0.0028235161942036773) + +[fips4211318296] +centroid = (0.72131709091353757, -1.3340936915352894) +description = Davidson township, PA +station = ('kipt', 0.006425614087849107) +zone = ('paz042', 0.0022691352321809375) + +[fips4211320528] +centroid = (0.72476546008975029, -1.3334055780243981) +description = Dushore borough, PA +station = ('kipt', 0.0083210041800631743) +zone = ('paz042', 0.0020365292196710726) + +[fips4211320648] +centroid = (0.72273813799051123, -1.3366270543978518) +description = Eagles Mere borough, PA +station = ('kipt', 0.0051861663163294287) +zone = ('paz042', 0.0011251969242095348) + +[fips4211323144] +centroid = (0.72482895516793788, -1.337821802084012) +description = Elkland township, PA +station = ('kipt', 0.0059893225311072815) +zone = ('paz042', 0.0023375735613997773) + +[fips4211326736] +centroid = (0.72419161328498705, -1.3360152990417353) +description = Forks township, PA +station = ('kipt', 0.0064277976083899121) +zone = ('paz042', 0.00094857015413495982) + +[fips4211326760] +centroid = (0.72413035222824207, -1.3369717918317054) +description = Forksville borough, PA +station = ('kipt', 0.0058639073660879844) +zone = ('paz042', 0.0014120763401324673) + +[fips4211327096] +centroid = (0.72493023662443112, -1.3395807274508793) +description = Fox township, PA +station = ('kipt', 0.0054267717226745603) +zone = ('paz042', 0.0035094946700288654) + +[fips4211328] +centroid = (0.69634439637722712, -1.3958268598429548) +description = Carmichaels borough, PA +station = ('kmgw', 0.0043915931508352359) +zone = ('paz031', 0.0034074465828696707) + +[fips4211334840] +centroid = (0.72328461803260324, -1.3383275635946548) +description = Hillsgrove township, PA +station = ('kipt', 0.0045502585209202103) +zone = ('paz042', 0.002207708735890873) + +[fips4211336] +centroid = (0.70525199837404551, -1.3977648036311991) +description = Carnegie borough, PA +station = ('kpit', 0.0023577030007891821) +zone = ('paz021', 0.001751105416762967) + +[fips4211341512] +centroid = (0.72287341846083342, -1.3350403232149861) +description = Laporte borough, PA +station = ('kipt', 0.0062851899903711029) +zone = ('paz042', 0.00055890627411804572) + +[fips4211341520] +centroid = (0.72280308169197804, -1.3343821246474741) +description = Laporte township, PA +station = ('kipt', 0.0066964439986984805) +zone = ('paz042', 0.00094093163816330854) + +[fips4211348] +centroid = (0.7071847934409965, -1.4000640305746064) +description = Carnot-Moon CDP, PA +station = ('kpit', 0.00065101344152971024) +zone = ('paz021', 0.0032583858944720636) + +[fips4211370560] +centroid = (0.72238716973122774, -1.3372048281934319) +description = Shrewsbury township, PA +station = ('kipt', 0.0046325686688803765) +zone = ('paz042', 0.001681542216936788) + +[fips4211456] +centroid = (0.70868696342160287, -1.3736999770118987) +description = Carrolltown borough, PA +station = ('kidi', 0.0052274888105212367) +zone = ('paz024', 0.0019107809769372903) + +[fips4211472] +centroid = (0.69376363037218047, -1.35061471643528) +description = Carroll Valley borough, PA +station = ('kryt', 0.0007007618238281107) +zone = ('paz064', 0.0030834019285797217) + +[fips42115] +centroid = (0.7298908463310344, -1.3229764852521535) +description = Susquehanna County, PA +station = ('kbgm', 0.0070467938459387062) +zone = ('paz039', 3.0361136959729148e-05) + +[fips4211502712] +centroid = (0.73225803639551434, -1.3281489953832415) +description = Apolacon township, PA +station = ('kbgm', 0.0045190224181723667) +zone = ('paz039', 0.0045061750180149214) + +[fips4211502792] +centroid = (0.72967838740118918, -1.317998684052418) +description = Ararat township, PA +station = ('kavp', 0.008749676803925726) +zone = ('paz040', 0.0029871870415429666) + +[fips4211503496] +centroid = (0.72762549622840833, -1.3272947614341455) +description = Auburn township, PA +station = ('kavp', 0.0074616825382106868) +zone = ('paz043', 0.003021512674464624) + +[fips4211508648] +centroid = (0.73012205009704612, -1.3238944237189474) +description = Bridgewater township, PA +station = ('kbgm', 0.0066241854835543791) +zone = ('paz039', 0.00071501922392762601) + +[fips4211509128] +centroid = (0.72886474981049443, -1.3229304434664861) +description = Brooklyn township, PA +station = ('kavp', 0.0075101360721367945) +zone = ('paz039', 0.001056866449289753) + +[fips4211513504] +centroid = (0.73213884786089567, -1.3266954153690107) +description = Choconut township, PA +station = ('kbgm', 0.0044080927699612048) +zone = ('paz039', 0.0035490995768057546) + +[fips4211514224] +centroid = (0.72735465603508387, -1.3186707928940686) +description = Clifford township, PA +station = ('kavp', 0.006395550366800627) +zone = ('paz040', 0.0038854256830812522) + +[fips4211519264] +centroid = (0.72845081007179902, -1.3250096192978018) +description = Dimock township, PA +station = ('kavp', 0.007447251316429546) +zone = ('paz039', 0.0021135741063800389) + +[fips4211526560] +centroid = (0.72697660026580935, -1.3171865648981727) +description = Forest City borough, PA +station = ('kavp', 0.0065565543827002699) +zone = ('paz040', 0.0031929019316106312) + +[fips4211526648] +centroid = (0.730897325350782, -1.3262233736195164) +description = Forest Lake township, PA +station = ('kbgm', 0.0056318197683747602) +zone = ('paz039', 0.0026102248802387963) + +[fips4211527448] +centroid = (0.73125206352124994, -1.3234626816218817) +description = Franklin township, PA +station = ('kbgm', 0.0056440527073991853) +zone = ('paz039', 0.0013798948904058751) + +[fips4211527968] +centroid = (0.73160577194745902, -1.3272832248077897) +description = Friendsville borough, PA +station = ('kbgm', 0.0049933855216312256) +zone = ('paz039', 0.0036245629047416102) + +[fips4211529024] +centroid = (0.72900587713381071, -1.3196950219123089) +description = Gibson township, PA +station = ('kavp', 0.007763990643930377) +zone = ('paz039', 0.0026099760743472987) + +[fips4211530728] +centroid = (0.73256757053835553, -1.3220034467408741) +description = Great Bend borough, PA +station = ('kbgm', 0.005020449312619346) +zone = ('paz039', 0.0027431838203110666) + +[fips4211530736] +centroid = (0.73191818588356594, -1.3213418447813208) +description = Great Bend township, PA +station = ('kbgm', 0.0058351309326283903) +zone = ('paz039', 0.0023375637564740669) + +[fips4211532080] +centroid = (0.73236926622874399, -1.3220371141421452) +description = Hallstead borough, PA +station = ('kbgm', 0.0051636735482109798) +zone = ('paz039', 0.0025454476812517128) + +[fips4211532568] +centroid = (0.72908528961477648, -1.3216392139792756) +description = Harford township, PA +station = ('kavp', 0.007683428220081839) +zone = ('paz039', 0.0012992849518612486) + +[fips4211532720] +centroid = (0.7322832389499131, -1.3183473659303817) +description = Harmony township, PA +station = ('kbgm', 0.0071864984437211912) +zone = ('paz040', 0.0044750712398404077) + +[fips4211534096] +centroid = (0.7285213213735795, -1.3180569780494349) +description = Herrick township, PA +station = ('kavp', 0.0076489817794999039) +zone = ('paz040', 0.0030511208698522194) + +[fips4211535624] +centroid = (0.72786631675859859, -1.3223604887459548) +description = Hop Bottom borough, PA +station = ('kavp', 0.0064773622623409376) +zone = ('paz039', 0.0021050776902779506) + +[fips4211537464] +centroid = (0.7306978167639866, -1.3194174971079493) +description = Jackson township, PA +station = ('kbgm', 0.0076861920795659256) +zone = ('paz039', 0.0027606442848776215) + +[fips4211538168] +centroid = (0.72971214206892276, -1.3260199729484887) +description = Jessup township, PA +station = ('kbgm', 0.0068175889233107953) +zone = ('paz039', 0.0022800968252010612) + +[fips4211541336] +centroid = (0.73240839651057366, -1.319097351363256) +description = Lanesboro borough, PA +station = ('kbgm', 0.0066670943012966284) +zone = ('paz039', 0.0038094800270878915) + +[fips4211541656] +centroid = (0.72742340455431997, -1.3230517438494995) +description = Lathrop township, PA +station = ('kavp', 0.0060936465776502248) +zone = ('paz039', 0.002498404662297146) + +[fips4211542760] +centroid = (0.72771922040924042, -1.3212076115085498) +description = Lenox township, PA +station = ('kavp', 0.0063318105953488937) +zone = ('paz039', 0.0025658719919575239) + +[fips4211543120] +centroid = (0.73240385865451851, -1.3237749908382337) +description = Liberty township, PA +station = ('kbgm', 0.0044886454357487256) +zone = ('paz039', 0.0025534067544404526) + +[fips4211543928] +centroid = (0.73284732936415764, -1.3286793311297527) +description = Little Meadows borough, PA +station = ('kbgm', 0.0041292756952987916) +zone = ('nyz055', 0.0039189028123928745) + +[fips4211549152] +centroid = (0.73076787428016154, -1.3277115635128143) +description = Middletown township, PA +station = ('kbgm', 0.0058752933546411361) +zone = ('paz039', 0.0036297134329107959) + +[fips4211550736] +centroid = (0.73013276641865332, -1.324286407215653) +description = Montrose borough, PA +station = ('kbgm', 0.006545787220662241) +zone = ('paz039', 0.0010009252436480973) + +[fips4211553880] +centroid = (0.73087657338597578, -1.3216778206623296) +description = New Milford borough, PA +station = ('kbgm', 0.006559543761232964) +zone = ('paz039', 0.0013581110567238545) + +[fips4211553888] +centroid = (0.73042160095656583, -1.3212206840246472) +description = New Milford township, PA +station = ('kbgm', 0.0071245215823265472) +zone = ('paz039', 0.0013985908560534288) + +[fips4211556008] +centroid = (0.73217911260673918, -1.3196218577100653) +description = Oakland borough, PA +station = ('kbgm', 0.006516747885313195) +zone = ('paz039', 0.0033652172035888279) + +[fips4211556016] +centroid = (0.73249657054438433, -1.3200055334395313) +description = Oakland township, PA +station = ('kbgm', 0.0060924767765309223) +zone = ('paz039', 0.0033932042131260601) + +[fips4211566776] +centroid = (0.72924818119386503, -1.3275502427300523) +description = Rush township, PA +station = ('kbgm', 0.0073537877894035847) +zone = ('paz039', 0.0034774455651369733) + +[fips4211570776] +centroid = (0.73219630409987124, -1.3253791927669114) +description = Silver Lake township, PA +station = ('kbgm', 0.004371166341176241) +zone = ('paz039', 0.0028954911027400587) + +[fips4211573440] +centroid = (0.72738134211934691, -1.3248863117861485) +description = Springville township, PA +station = ('kavp', 0.0064108913526792072) +zone = ('paz039', 0.0029132522773435256) + +[fips4211575568] +centroid = (0.73200616793115902, -1.3196112635615056) +description = Susquehanna Depot borough, PA +station = ('kbgm', 0.0066394675878062035) +zone = ('paz039', 0.0032579102503138913) + +[fips4211576] +centroid = (0.69611759084093039, -1.3500242017361601) +description = Cashtown CDP, PA +station = ('kryt', 0.002900253891813722) +zone = ('paz064', 0.0017931910207562177) + +[fips4211576496] +centroid = (0.73065863412227927, -1.3179700955592704) +description = Thompson borough, PA +station = ('kbgm', 0.0084533992030204202) +zone = ('paz040', 0.0032840357427547785) + +[fips4211576504] +centroid = (0.73076590205810688, -1.3181575090143496) +description = Thompson township, PA +station = ('kbgm', 0.0082785605733029944) +zone = ('paz040', 0.0034573663690837405) + +[fips4211578456] +centroid = (0.72802995882926547, -1.3174297939827304) +description = Union Dale borough, PA +station = ('kavp', 0.0073895615971463491) +zone = ('paz040', 0.0027565001817210634) + +[fips4211616] +centroid = (0.70526170240468655, -1.3725391759796899) +description = Cassandra borough, PA +station = ('kjst', 0.0030220161772199525) +zone = ('paz024', 0.0017990798736869076) + +[fips4211624] +centroid = (0.69613167564799394, -1.3824866625981389) +description = Casselman borough, PA +station = ('k2g4', 0.0056059697370067756) +zone = ('paz033', 0.0028752294445138901) + +[fips4211632] +centroid = (0.70324265316610191, -1.3618320871641876) +description = Cassville borough, PA +station = ('kaoo', 0.003854930262665133) +zone = ('paz026', 0.0022518908498745543) + +[fips4211648] +centroid = (0.71761971561294258, -1.3513422045740962) +description = Castanea CDP, PA +station = ('kunv', 0.0072681070122135394) +zone = ('paz045', 0.00087694060018970511) + +[fips4211680] +centroid = (0.70452709332252206, -1.3966028855882691) +description = Castle Shannon borough, PA +station = ('kagc', 0.0013967397347262099) +zone = ('paz021', 0.0018576003034139533) + +[fips42117] +centroid = (0.7289692077662262, -1.348394046761505) +description = Tioga County, PA +station = ('kelm', 0.0083779051431855881) +zone = ('paz037', 9.9398737222068195e-05) + +[fips4211707152] +centroid = (0.72726070496144901, -1.3463371762380296) +description = Bloss township, PA +station = ('kipt', 0.0078715503106656336) +zone = ('paz037', 0.0023407029954264761) + +[fips4211707160] +centroid = (0.72744494191728959, -1.3451069460081764) +description = Blossburg borough, PA +station = ('kipt', 0.0077566885315817546) +zone = ('paz037', 0.0029051292269776227) + +[fips4211709072] +centroid = (0.73244454227938249, -1.3534355001190608) +description = Brookfield township, PA +station = ('kelz', 0.0063315287729159694) +zone = ('paz037', 0.0050830903024918139) + +[fips4211712728] +centroid = (0.72858457210567185, -1.3477907562522606) +description = Charleston township, PA +station = ('kelm', 0.0084707077915632534) +zone = ('paz037', 0.00062905113429859996) + +[fips4211712880] +centroid = (0.73077663583300667, -1.3512940509400337) +description = Chatham township, PA +station = ('kelm', 0.0085323590843093787) +zone = ('paz037', 0.0027900949807060293) + +[fips4211714528] +centroid = (0.73032346109272617, -1.3533202036686738) +description = Clymer township, PA +station = ('kelz', 0.0074560707619127442) +zone = ('paz006', 0.0049500384357035196) + +[fips4211716680] +centroid = (0.72831856647437532, -1.345639952108443) +description = Covington township, PA +station = ('kelm', 0.0080561316895906288) +zone = ('paz037', 0.002148044822614555) + +[fips4211718552] +centroid = (0.7321002935377191, -1.3512761089553231) +description = Deerfield township, PA +station = ('kelm', 0.0077865176418038173) +zone = ('paz037', 0.003743667850120209) + +[fips4211718760] +centroid = (0.72822513899951602, -1.3501217307347617) +description = Delmar township, PA +station = ('kelm', 0.009732036634239289) +zone = ('paz037', 0.0015688971653214044) + +[fips4211720] +centroid = (0.70951777505213731, -1.317095336538171) +description = Catasauqua borough, PA +station = ('kabe', 0.00019000848947610708) +zone = ('paz061', 0.0018348969318045805) + +[fips4211720232] +centroid = (0.72696405134848763, -1.34834372891917) +description = Duncan township, PA +station = ('kipt', 0.0082909864882825795) +zone = ('paz037', 0.0020966295702152114) + +[fips4211723056] +centroid = (0.72653073845509497, -1.3531660387358453) +description = Elk township, PA +station = ('kelz', 0.010262492772165614) +zone = ('paz037', 0.0044016279032790045) + +[fips4211723152] +centroid = (0.73284205846981665, -1.3494031437751306) +description = Elkland borough, PA +station = ('kelm', 0.0062095660354082854) +zone = ('paz037', 0.0038630479480178557) + +[fips4211725296] +centroid = (0.73184985624335042, -1.3486784830697023) +description = Farmington township, PA +station = ('kelm', 0.0063427508014964199) +zone = ('paz037', 0.0028004211572562956) + +[fips4211728264] +centroid = (0.72879736264807493, -1.3536330364838014) +description = Gaines township, PA +station = ('kelz', 0.0082978994165271575) +zone = ('paz006', 0.0044104929113629072) + +[fips4211732192] +centroid = (0.72720077035493558, -1.3446342235802737) +description = Hamilton township, PA +station = ('kipt', 0.0074350463254987172) +zone = ('paz037', 0.0033343963369121296) + +[fips4211736] +centroid = (0.71476660843141504, -1.3344777512371906) +description = Catawissa borough, PA +station = ('kseg', 0.0058713886573458097) +zone = ('paz053', 0.0018159166790440739) + +[fips4211737472] +centroid = (0.73209315514107842, -1.3439827270770892) +description = Jackson township, PA +station = ('kelm', 0.0040851680339931999) +zone = ('paz037', 0.004442599782345776) + +[fips4211740360] +centroid = (0.73231582424704789, -1.3515386413814081) +description = Knoxville borough, PA +station = ('kelm', 0.007854037138441114) +zone = ('paz037', 0.0040328038222573739) + +[fips4211741960] +centroid = (0.73251533283384329, -1.3462676946805077) +description = Lawrence township, PA +station = ('kelm', 0.0045917369636033134) +zone = ('paz037', 0.0037842111209029634) + +[fips4211742016] +centroid = (0.73296658771194645, -1.3461773389851319) +description = Lawrenceville borough, PA +station = ('kelm', 0.0042168766408956053) +zone = ('paz037', 0.0042252881614381699) + +[fips4211743128] +centroid = (0.72532883491900157, -1.3457660521468995) +description = Liberty borough, PA +station = ('kipt', 0.005927879560011509) +zone = ('paz041', 0.0024550871333496684) + +[fips4211743136] +centroid = (0.72580164461336683, -1.3459580907244963) +description = Liberty township, PA +station = ('kipt', 0.0064176164473909794) +zone = ('paz041', 0.0028634543270190525) + +[fips4211747080] +centroid = (0.72965568066762065, -1.3452719145290748) +description = Mansfield borough, PA +station = ('kelm', 0.0067036835626512184) +zone = ('paz037', 0.0023650532465513464) + +[fips4211748968] +centroid = (0.7305993103810039, -1.3486027706867507) +description = Middlebury township, PA +station = ('kelm', 0.0071782030229534683) +zone = ('paz037', 0.0015508654431407171) + +[fips4211751096] +centroid = (0.72613774266742337, -1.3497218758031295) +description = Morris township, PA +station = ('kipt', 0.0082489405435148457) +zone = ('paz037', 0.0030992835523455139) + +[fips4211752960] +centroid = (0.73257765854143209, -1.3488050718003497) +description = Nelson township, PA +station = ('kelm', 0.0059748850926617456) +zone = ('paz037', 0.0035338485757212155) + +[fips4211757224] +centroid = (0.73269072097037624, -1.3504018211731217) +description = Osceola township, PA +station = ('kelm', 0.0069316737258190994) +zone = ('paz037', 0.0039407773908085387) + +[fips4211762960] +centroid = (0.72856669993413137, -1.3453251121646757) +description = Putnam township, PA +station = ('kelm', 0.0077471202579823166) +zone = ('paz037', 0.0023039930681322015) + +[fips4211764624] +centroid = (0.72969184388972197, -1.34572913843322) +description = Richmond township, PA +station = ('kelm', 0.0067951486335344037) +zone = ('paz037', 0.0020477431053610206) + +[fips4211766232] +centroid = (0.73065891337495958, -1.3431587396839304) +description = Roseville borough, PA +station = ('kelm', 0.0053402466599345912) +zone = ('paz037', 0.0041804135381615995) + +[fips4211766912] +centroid = (0.73085531527568648, -1.3434942966859185) +description = Rutland township, PA +station = ('kelm', 0.0051876966178928986) +zone = ('paz037', 0.004033662702297533) + +[fips4211770344] +centroid = (0.72890845285496442, -1.3518148222822437) +description = Shippen township, PA +station = ('kelz', 0.009214568799506587) +zone = ('paz037', 0.0025947545887891128) + +[fips4211775104] +centroid = (0.72934537857990867, -1.343377761051763) +description = Sullivan township, PA +station = ('kelm', 0.0066637525334783641) +zone = ('paz037', 0.0037127136413525733) + +[fips4211776808] +centroid = (0.73137530121973326, -1.3461946701046041) +description = Tioga borough, PA +station = ('kelm', 0.0054671679695191674) +zone = ('paz037', 0.0028136544919188009) + +[fips4211776824] +centroid = (0.73104402027441207, -1.3454897490730162) +description = Tioga township, PA +station = ('kelm', 0.0054923114373360612) +zone = ('paz037', 0.0029069412642876587) + +[fips4211778416] +centroid = (0.72628469939044127, -1.3431673441571426) +description = Union township, PA +station = ('kipt', 0.0063592250415059172) +zone = ('paz041', 0.0042969245089184375) + +[fips4211780936] +centroid = (0.72792213238807735, -1.3428367613435224) +description = Ward township, PA +station = ('kipt', 0.0079791040037871606) +zone = ('paz037', 0.0042626806770736008) + +[fips4211782160] +centroid = (0.72859677195714323, -1.3492039842541852) +description = Wellsboro borough, PA +station = ('kelm', 0.0090267277207378219) +zone = ('paz037', 0.00079294476193248213) + +[fips4211782968] +centroid = (0.73160016944056017, -1.3533414966855482) +description = Westfield borough, PA +station = ('kelz', 0.0067531277190137776) +zone = ('paz037', 0.0045078442981471871) + +[fips4211782976] +centroid = (0.73142902245410957, -1.3532367594771362) +description = Westfield township, PA +station = ('kelz', 0.0069037921754747352) +zone = ('paz037', 0.0043482906091485253) + +[fips4211804] +centroid = (0.70368804373791827, -1.3996367914270107) +description = Cecil-Bishop CDP, PA +station = ('kpit', 0.0029282110171851591) +zone = ('paz029', 0.0023665877157162834) + +[fips4211836] +centroid = (0.7050535544380937, -1.3593619575804252) +description = Cedar Crest CDP, PA +station = ('kaoo', 0.0059752365193517171) +zone = ('paz026', 0.001318185607885205) + +[fips42119] +centroid = (0.71492489234127832, -1.3448717454381776) +description = Union County, PA +station = ('kseg', 0.0035575129028701971) +zone = ('paz049', 8.8483076376898824e-05) + +[fips4211910016] +centroid = (0.71499011529542533, -1.3435211398498144) +description = Buffalo township, PA +station = ('kseg', 0.00299110454748934) +zone = ('paz049', 0.0011083461450743422) + +[fips4211920888] +centroid = (0.71433669893006368, -1.3423465681698072) +description = East Buffalo township, PA +station = ('kseg', 0.002036517378818679) +zone = ('paz049', 0.0020836948276667716) + +[fips4211931480] +centroid = (0.71757376109373761, -1.3427707529912118) +description = Gregg township, PA +station = ('kipt', 0.00238686478197988) +zone = ('paz046', 0.0020187822564733146) + +[fips4211932936] +centroid = (0.71384291037808945, -1.3466334633318482) +description = Hartleton borough, PA +station = ('kseg', 0.0040931433145409615) +zone = ('paz049', 0.0016578476600213694) + +[fips4211932952] +centroid = (0.71375082680675428, -1.3485492414385924) +description = Hartley township, PA +station = ('kseg', 0.0054478803094791459) +zone = ('paz050', 0.0033848977421321673) + +[fips4211939136] +centroid = (0.71556249602361688, -1.3425104545865694) +description = Kelly township, PA +station = ('kseg', 0.0032547464914556195) +zone = ('paz049', 0.0019710367611891271) + +[fips4211942960] +centroid = (0.71476981983723864, -1.3460416570890819) +description = Lewis township, PA +station = ('kseg', 0.00413310066285188) +zone = ('paz049', 0.00081400503446070916) + +[fips4211942976] +centroid = (0.71495889135510715, -1.3419829113668615) +description = Lewisburg borough, PA +station = ('kseg', 0.0025919486809725689) +zone = ('paz049', 0.0022688342951681607) + +[fips4211943368] +centroid = (0.7137586109752182, -1.3442753140728936) +description = Limestone township, PA +station = ('kseg', 0.0024603256041778069) +zone = ('paz049', 0.0012974044435587015) + +[fips4211949288] +centroid = (0.71418106792066338, -1.3447308624609566) +description = Mifflinburg borough, PA +station = ('kseg', 0.0029858679028226848) +zone = ('paz049', 0.00078252233770701406) + +[fips4211953200] +centroid = (0.71351838385697364, -1.3435741280459048) +description = New Berlin borough, PA +station = ('kseg', 0.0018888054130048201) +zone = ('paz049', 0.0017773785925585433) + +[fips4211976] +centroid = (0.71016056236235425, -1.3180039549467593) +description = Cementon CDP, PA +station = ('kabe', 0.0011104066857780222) +zone = ('paz061', 0.0016719074661767329) + +[fips4211978424] +centroid = (0.71380297724480379, -1.3419823354082083) +description = Union township, PA +station = ('kseg', 0.0014506147905993072) +zone = ('paz052', 0.002517223271017647) + +[fips4211982640] +centroid = (0.7157273772780528, -1.344975313275991) +description = West Buffalo township, PA +station = ('kseg', 0.0042151628577916864) +zone = ('paz049', 0.00078820836157366834) + +[fips4211984496] +centroid = (0.71653474913673287, -1.343031313195242) +description = White Deer township, PA +station = ('kipt', 0.0034416034560080825) +zone = ('paz049', 0.0021735838638250525) + +[fips42121] +centroid = (0.7226008678448419, -1.3919771871118309) +description = Venango County, PA +station = ('kfkl', 0.0015053163977169109) +zone = ('paz008', 4.9916078721067697e-05) + +[fips4212100884] +centroid = (0.72544852959910333, -1.3882565989321847) +description = Allegheny township, PA +station = ('kfkl', 0.005308305160317329) +zone = ('paz008', 0.0040297759589055914) + +[fips4212104] +centroid = (0.70661230799304986, -1.3265289807715406) +description = Centerport borough, PA +station = ('krdg', 0.0021409495611874677) +zone = ('paz060', 0.0015996267662530413) + +[fips4212104136] +centroid = (0.71899787995019493, -1.3959516857910574) +description = Barkeyville borough, PA +station = ('kfkl', 0.0036104690644201158) +zone = ('paz008', 0.0046364101793679767) + +[fips4212111080] +centroid = (0.72390246458780927, -1.3952901710979666) +description = Canal township, PA +station = ('kfkl', 0.0019177255825797836) +zone = ('paz008', 0.0027706937261469129) + +[fips4212113136] +centroid = (0.72560744182749748, -1.3911754526666349) +description = Cherrytree township, PA +station = ('kfkl', 0.0039218272481223873) +zone = ('paz008', 0.0030922110071960256) + +[fips4212114344] +centroid = (0.71948175503201772, -1.3939082019429447) +description = Clinton township, PA +station = ('kfkl', 0.0027937468029200297) +zone = ('paz008', 0.0034047305562956535) + +[fips4212114376] +centroid = (0.71909354144649673, -1.3940732228237209) +description = Clintonville borough, PA +station = ('kfkl', 0.0031835434644071729) +zone = ('paz008', 0.0038099167167241345) + +[fips4212116080] +centroid = (0.72430814891914275, -1.3940577592065484) +description = Cooperstown borough, PA +station = ('kfkl', 0.0020347650548693946) +zone = ('paz008', 0.0022937812015653382) + +[fips4212116232] +centroid = (0.7243286739911462, -1.3903774008661605) +description = Cornplanter township, PA +station = ('kfkl', 0.0033664775822199178) +zone = ('paz008', 0.002144075980188391) + +[fips4212116944] +centroid = (0.72202850456994283, -1.3908939485115805) +description = Cranberry township, PA +station = ('kfkl', 0.00229624575699509) +zone = ('paz008', 0.0010233748917386535) + +[fips4212123568] +centroid = (0.71873241537096655, -1.391190392685032) +description = Emlenton borough, PA +station = ('kfkl', 0.0041000978320855789) +zone = ('paz008', 0.0039038590948920057) + +[fips4212127456] +centroid = (0.72227012795158896, -1.3933327843418548) +description = Franklin city, PA +station = ('kfkl', 0.00045284879789016019) +zone = ('paz008', 0.0010195135045421085) + +[fips4212127832] +centroid = (0.72251089612190156, -1.3952816364379244) +description = Frenchcreek township, PA +station = ('kfkl', 0.0010364131757715288) +zone = ('paz008', 0.0024329404786197946) + +[fips4212137200] +centroid = (0.71951962867678598, -1.395413181903647) +description = Irwin township, PA +station = ('kfkl', 0.0029707388483738158) +zone = ('paz008', 0.00397609645199114) + +[fips4212137480] +centroid = (0.72452792077855388, -1.3941163150029527) +description = Jackson township, PA +station = ('kfkl', 0.002256536637556361) +zone = ('paz008', 0.0024903620049168615) + +[fips4212150048] +centroid = (0.7211497138382712, -1.3956644569560568) +description = Mineral township, PA +station = ('kfkl', 0.0017176071659272254) +zone = ('paz008', 0.0030754494408631598) + +[fips4212156024] +centroid = (0.72435097929898673, -1.3921975349298952) +description = Oakland township, PA +station = ('kfkl', 0.0024508772236237625) +zone = ('paz008', 0.0017711705734771161) + +[fips4212156456] +centroid = (0.72306933166936971, -1.3911644047324696) +description = Oil City city, PA +station = ('kfkl', 0.0022254580988439452) +zone = ('paz008', 0.00081649594487091066) + +[fips4212156480] +centroid = (0.7256608489026084, -1.3894784166750431) +description = Oil Creek township, PA +station = ('kfkl', 0.0047555362846667427) +zone = ('paz008', 0.0036262264007412065) + +[fips4212160472] +centroid = (0.72202965648724926, -1.3882902663334555) +description = Pinegrove township, PA +station = ('kfkl', 0.0042438136779021024) +zone = ('paz008', 0.0028671903414666097) + +[fips4212161512] +centroid = (0.7259431733624111, -1.3889472955303686) +description = Pleasantville borough, PA +station = ('kfkl', 0.0052363218777404874) +zone = ('paz008', 0.0040804764203700361) + +[fips4212161552] +centroid = (0.72563521001589659, -1.3930950006845633) +description = Plum township, PA +station = ('kfkl', 0.0034183974044838753) +zone = ('paz008', 0.0031521788448311944) + +[fips4212161936] +centroid = (0.72202654980118064, -1.3950601716091389) +description = Polk borough, PA +station = ('kfkl', 0.00087929521678394625) +zone = ('paz008', 0.0023337051987151278) + +[fips4212162544] +centroid = (0.72354596363479684, -1.3887156728853367) +description = President township, PA +station = ('kfkl', 0.0041158676219910121) +zone = ('paz008', 0.0026715854095012985) + +[fips4212164568] +centroid = (0.7198045711304667, -1.390596684033381) +description = Richland township, PA +station = ('kfkl', 0.003520994455122889) +zone = ('paz008', 0.0029830166305251271) + +[fips4212165560] +centroid = (0.72053390931829009, -1.3918408594439575) +description = Rockland township, PA +station = ('kfkl', 0.0023470217283964121) +zone = ('paz008', 0.0020552833587805237) + +[fips4212166440] +centroid = (0.72376203539619377, -1.3906990301407178) +description = Rouseville borough, PA +station = ('kfkl', 0.0028464000265202767) +zone = ('paz008', 0.0015487362410660176) + +[fips4212167824] +centroid = (0.72161425067198204, -1.3933777091168011) +description = Sandycreek township, PA +station = ('kfkl', 0.00078288110509239749) +zone = ('paz008', 0.0013957442446423003) + +[fips4212169016] +centroid = (0.71934362967501497, -1.3922604191428445) +description = Scrubgrass township, PA +station = ('kfkl', 0.0031907023789350402) +zone = ('paz008', 0.0032443729026660276) + +[fips4212175000] +centroid = (0.7231718348563394, -1.3931555810628999) +description = Sugarcreek borough, PA +station = ('kfkl', 0.0010707075777209797) +zone = ('paz008', 0.0010227726937786863) + +[fips4212179472] +centroid = (0.72321557280739424, -1.3956593780479334) +description = Utica borough, PA +station = ('kfkl', 0.0015980985077921465) +zone = ('paz008', 0.0027869198882283677) + +[fips4212180168] +centroid = (0.72112431929765475, -1.394357170439728) +description = Victory township, PA +station = ('kfkl', 0.0011936741872471644) +zone = ('paz008', 0.0022706065144563227) + +[fips4212184] +centroid = (0.7284813358804163, -1.3920933038669661) +description = Centerville borough, PA +station = ('kgkj', 0.0062175738897701487) +zone = ('paz002', 0.0052037706737576251) + +[fips4212224] +centroid = (0.69869853137890203, -1.3955561941825556) +description = Centerville borough, PA +station = ('kafj', 0.0046691741944387861) +zone = ('paz075', 0.0029062766444763687) + +[fips4212296] +centroid = (0.70004479109742779, -1.3753948487952179) +description = Central City borough, PA +station = ('kjst', 0.003634415923104498) +zone = ('paz033', 0.0038319204711416469) + +[fips42123] +centroid = (0.73030979516468308, -1.3842760090538686) +description = Warren County, PA +station = ('kjhw', 0.0053804073432083144) +zone = ('paz004', 0.00071683319355061591) + +[fips4212304608] +centroid = (0.73292372242551751, -1.3875605790797818) +description = Bear Lake borough, PA +station = ('kjhw', 0.0040881022107745095) +zone = ('paz004', 0.0042949484105741301) + +[fips4212309024] +centroid = (0.73030979516468308, -1.3842760090538686) +description = Brokenstraw township, PA +station = ('kjhw', 0.0053804073432083144) +zone = ('paz004', 0.00071683319355061591) + +[fips4212312] +centroid = (0.71217263028393085, -1.3324542863155986) +description = Centralia borough, PA +station = ('kseg', 0.0069075704327548155) +zone = ('paz058', 0.0024134568250083655) + +[fips4212313056] +centroid = (0.72747277991885884, -1.3814422226671603) +description = Cherry Grove township, PA +station = ('kbfd', 0.007051282035367203) +zone = ('paz004', 0.0028307104781575046) + +[fips4212313776] +centroid = (0.72920929525813061, -1.3804508581987351) +description = Clarendon borough, PA +station = ('kbfd', 0.0060042820634540941) +zone = ('paz004', 0.0024175994301760275) + +[fips4212315408] +centroid = (0.73204796856674426, -1.3885192709846095) +description = Columbus township, PA +station = ('kjhw', 0.0052068133790036672) +zone = ('paz004', 0.0042990851793577381) + +[fips4212315672] +centroid = (0.73110730591308948, -1.3827020885877126) +description = Conewango township, PA +station = ('kjhw', 0.0045840840216947688) +zone = ('paz004', 0.0014627156315085506) + +[fips4212318560] +centroid = (0.7284328680870884, -1.385257844024578) +description = Deerfield township, PA +station = ('kjhw', 0.007345564018198446) +zone = ('paz004', 0.0018493466636265016) + +[fips4212322920] +centroid = (0.72863787446102768, -1.3884667540274171) +description = Eldred township, PA +station = ('kfkl', 0.0075648825136306877) +zone = ('paz004', 0.0038161350321311385) + +[fips4212323064] +centroid = (0.73234469199287588, -1.3783394635894275) +description = Elk township, PA +station = ('kjhw', 0.0050444199637803529) +zone = ('paz004', 0.0046643805454484877) + +[fips4212325304] +centroid = (0.73212046954387211, -1.3827539597730818) +description = Farmington township, PA +station = ('kjhw', 0.0035749412870586983) +zone = ('paz004', 0.0023992438694415202) + +[fips4212327736] +centroid = (0.73231753466971483, -1.386681753441525) +description = Freehold township, PA +station = ('kjhw', 0.0041054112211812415) +zone = ('paz004', 0.0034060017883824844) + +[fips4212329328] +centroid = (0.73068619287116821, -1.3799217092761153) +description = Glade township, PA +station = ('kjhw', 0.0056241461074731554) +zone = ('paz004', 0.0028745925978759562) + +[fips4212343372] +centroid = (0.72730915530148443, -1.3845351031813271) +description = Limestone township, PA +station = ('kjhw', 0.0083850736216173338) +zone = ('paz004', 0.0025919517731692993) + +[fips4212348272] +centroid = (0.72976045278261792, -1.3791209173087156) +description = Mead township, PA +station = ('kbfd', 0.0050064494962010347) +zone = ('paz004', 0.0033342037723155609) + +[fips4212360480] +centroid = (0.73221553762822833, -1.3805781799676682) +description = Pine Grove township, PA +station = ('kjhw', 0.004053579481393889) +zone = ('paz004', 0.0032948526566730133) + +[fips4212361040] +centroid = (0.73013025314453051, -1.3862633282066519) +description = Pittsfield township, PA +station = ('kjhw', 0.0059046375046041873) +zone = ('paz004', 0.0020156782169375434) + +[fips4212361208] +centroid = (0.72938475320783358, -1.3821102474383613) +description = Pleasant township, PA +station = ('kjhw', 0.0063518155956496956) +zone = ('paz004', 0.0011829538952864865) + +[fips4212369992] +centroid = (0.72766605768022474, -1.3791891596824686) +description = Sheffield township, PA +station = ('kbfd', 0.0053961837203146236) +zone = ('paz004', 0.0039204894131483585) + +[fips4212372600] +centroid = (0.72718715678677004, -1.3884774878023169) +description = Southwest township, PA +station = ('kfkl', 0.006389652134670013) +zone = ('paz004', 0.0044862966103946175) + +[fips4212372952] +centroid = (0.73035243355830937, -1.3882476453931216) +description = Spring Creek township, PA +station = ('kjhw', 0.0063849321491497735) +zone = ('paz004', 0.003510564336802031) + +[fips4212375024] +centroid = (0.73275315139772013, -1.3847370203224902) +description = Sugar Grove borough, PA +station = ('kjhw', 0.0030530003112816191) +zone = ('paz004', 0.0030692201230921525) + +[fips4212375032] +centroid = (0.73212022519777686, -1.3846844859120053) +description = Sugar Grove township, PA +station = ('kjhw', 0.0036502921884587207) +zone = ('paz004', 0.0024542068421458821) + +[fips4212376] +centroid = (0.7128760852389473, -1.355859902076421) +description = Centre Hall borough, PA +station = ('kunv', 0.002179668338828415) +zone = ('paz019', 0.0005562035595708518) + +[fips4212376696] +centroid = (0.72755962750243808, -1.3856522360756511) +description = Tidioute borough, PA +station = ('kfkl', 0.0081471260256028612) +zone = ('paz004', 0.0027195317317542174) + +[fips4212377512] +centroid = (0.72739427500910425, -1.3867137802332992) +description = Triumph township, PA +station = ('kfkl', 0.0074455557891953943) +zone = ('paz004', 0.0033504683671454261) + +[fips4212381000] +centroid = (0.73029665283541567, -1.381321027003902) +description = Warren city, PA +station = ('kjhw', 0.0055913148105600973) +zone = ('paz004', 0.0017638677227117252) + +[fips4212381584] +centroid = (0.72767502867258005, -1.3835297411723009) +description = Watson township, PA +station = ('kjhw', 0.0079813994783237106) +zone = ('paz004', 0.0021297026034075689) + +[fips4212387224] +centroid = (0.73046340159215117, -1.3843369210447631) +description = Youngsville borough, PA +station = ('kjhw', 0.0052332088825567235) +zone = ('paz004', 0.00086076604830668678) + +[fips4212396] +centroid = (0.70834449491577667, -1.3184833096258195) +description = Cetronia CDP, PA +station = ('kxll', 0.00075725707484195772) +zone = ('paz061', 0.00080870798647420536) + +[fips4212496] +centroid = (0.70528969748588854, -1.3934465623557923) +description = Chalfant borough, PA +station = ('kagc', 0.0014758743607201615) +zone = ('paz021', 0.0021532691006765632) + +[fips42125] +centroid = (0.70162244656818307, -1.400663935145102) +description = Washington County, PA +station = ('kafj', 0.0012358123560018046) +zone = ('paz029', 0.000192372119132485) + +[fips4212500988] +centroid = (0.6996810470280197, -1.3938064492475537) +description = Allenport borough, PA +station = ('kagc', 0.0046231214818833058) +zone = ('paz075', 0.0027127872184072952) + +[fips4212502384] +centroid = (0.6994482724656812, -1.3996393570610113) +description = Amwell township, PA +station = ('kafj', 0.0015689631716465072) +zone = ('paz029', 0.0021191109310513228) + +[fips4212504] +centroid = (0.70317798871731552, -1.3126511348506478) +description = Chalfont borough, PA +station = ('kdyl', 0.0014551212040230794) +zone = ('paz069', 0.0016015668686113079) + +[fips4212504568] +centroid = (0.69921212941788635, -1.3967910320816341) +description = Beallsville borough, PA +station = ('kafj', 0.0036017695481851339) +zone = ('paz029', 0.0036623990180640925) + +[fips4212505672] +centroid = (0.70018850150803702, -1.3963405451484017) +description = Bentleyville borough, PA +station = ('kafj', 0.0037320031869226247) +zone = ('paz029', 0.0034835447293004918) + +[fips4212506840] +centroid = (0.70125854541914223, -1.4031612744119031) +description = Blaine township, PA +station = ('kafj', 0.0016932471906317167) +zone = ('paz029', 0.0019684665517892509) + +[fips4212510032] +centroid = (0.70072683086252219, -1.4023814438488196) +description = Buffalo township, PA +station = ('kafj', 0.00093586881852128771) +zone = ('paz029', 0.0015387336123609931) + +[fips4212510224] +centroid = (0.70478651906253853, -1.4031157911315961) +description = Burgettstown borough, PA +station = ('kpit', 0.0027657377521990096) +zone = ('wvz002', 0.0030885508112340064) + +[fips4212510768] +centroid = (0.69929522454357385, -1.3947271627878581) +description = California borough, PA +station = ('kagc', 0.0049455231871728079) +zone = ('paz075', 0.002786615778270776) + +[fips4212511152] +centroid = (0.70274366353295681, -1.3995232752124611) +description = Canonsburg borough, PA +station = ('kafj', 0.0026224858899735275) +zone = ('paz029', 0.0015415481464640256) + +[fips4212511176] +centroid = (0.70160750654978599, -1.4015155685536127) +description = Canton township, PA +station = ('kafj', 0.0011724223541486531) +zone = ('paz029', 0.00072325001018272027) + +[fips4212511424] +centroid = (0.70113192178191008, -1.3950972074958661) +description = Carroll township, PA +station = ('kagc', 0.0031162043768250464) +zone = ('paz029', 0.004211713504968035) + +[fips4212511800] +centroid = (0.70362289059694139, -1.3996563565679256) +description = Cecil township, PA +station = ('kpit', 0.0029896896524928508) +zone = ('paz029', 0.0023000235862327464) + +[fips4212512] +centroid = (0.69547106852611418, -1.3895760154868146) +description = Chalkhill CDP, PA +station = ('kmgw', 0.0052987123032839506) +zone = ('paz076', 0.0015313886140078887) + +[fips4212512224] +centroid = (0.69869853137890203, -1.3955561941825556) +description = Centerville borough, PA +station = ('kafj', 0.0046691741944387861) +zone = ('paz075', 0.0029062766444763687) + +[fips4212512704] +centroid = (0.70053779425123863, -1.3945138137400943) +description = Charleroi borough, PA +station = ('kagc', 0.0037094064408197541) +zone = ('paz075', 0.0037209734433296189) + +[fips4212512848] +centroid = (0.70250279064288901, -1.4006174395738287) +description = Chartiers township, PA +station = ('kafj', 0.0020932576004225462) +zone = ('paz029', 0.001065570242760169) + +[fips4212514000] +centroid = (0.70023169840702382, -1.4034749100784865) +description = Claysville borough, PA +station = ('kafj', 0.001747759113535415) +zone = ('paz029', 0.0025094874399475674) + +[fips4212514568] +centroid = (0.69935400723278107, -1.3945384403358401) +description = Coal Center borough, PA +station = ('kagc', 0.0048907112562974631) +zone = ('paz075', 0.0027368061605270904) + +[fips4212514896] +centroid = (0.69987622719827014, -1.3974068191483227) +description = Cokeburg borough, PA +station = ('kafj', 0.0029650716799984084) +zone = ('paz029', 0.0028944338268090905) + +[fips4212517314] +centroid = (0.70329703762559403, -1.4034472291565498) +description = Cross Creek township, PA +station = ('kafj', 0.003313329506474959) +zone = ('paz029', 0.002863104874365867) + +[fips4212518496] +centroid = (0.6986076869913358, -1.3968455561674664) +description = Deemston borough, PA +station = ('kafj', 0.0038171602145565349) +zone = ('paz031', 0.003949699750818856) + +[fips4212519464] +centroid = (0.70053186013178181, -1.4042741312495597) +description = Donegal township, PA +station = ('khlg', 0.0025985094855633011) +zone = ('wvz003', 0.0022490954251360136) + +[fips4212519536] +centroid = (0.70126507295054474, -1.3938619681710596) +description = Donora borough, PA +station = ('kagc', 0.0030617752138964128) +zone = ('paz075', 0.0042099373825751404) + +[fips4212520328] +centroid = (0.70004407551243453, -1.3937978447743413) +description = Dunlevy borough, PA +station = ('kagc', 0.0042666902169109797) +zone = ('paz075', 0.0030418350360421932) + +[fips4212520808] +centroid = (0.69809286722187491, -1.3966333241304238) +description = East Bethlehem township, PA +station = ('kafj', 0.0042258250067587063) +zone = ('paz031', 0.003688204057091601) + +[fips4212521144] +centroid = (0.69901509919862881, -1.4030787203382837) +description = East Finley township, PA +station = ('kafj', 0.0020325610933767595) +zone = ('paz029', 0.0030779420751611886) + +[fips4212522016] +centroid = (0.70117616587844822, -1.4003201750956293) +description = East Washington borough, PA +station = ('kafj', 0.00098772098206818706) +zone = ('paz029', 0.00033526758267255245) + +[fips4212522800] +centroid = (0.69955981645817622, -1.3941981709448712) +description = Elco borough, PA +station = ('kagc', 0.0047037177064736665) +zone = ('paz075', 0.0027516667341853721) + +[fips4212523296] +centroid = (0.69997040516470788, -1.3966573573142238) +description = Ellsworth borough, PA +station = ('kafj', 0.0035143787438741158) +zone = ('paz029', 0.0033485493390326662) + +[fips4212525104] +centroid = (0.7005621066877189, -1.3956833763251484) +description = Fallowfield township, PA +station = ('kagc', 0.0037383105552732292) +zone = ('paz029', 0.0038543762199882473) + +[fips4212525944] +centroid = (0.70254328228153518, -1.3962988666858642) +description = Finleyville borough, PA +station = ('kagc', 0.0020423474232837175) +zone = ('paz029', 0.0034619795884992511) + +[fips4212531082] +centroid = (0.70014877781426166, -1.401602259057559) +description = Green Hills borough, PA +station = ('kafj', 0.00043216928977882121) +zone = ('paz029', 0.0015009264504411094) + +[fips4212532440] +centroid = (0.70558553079410158, -1.4043188116784107) +description = Hanover township, PA +station = ('kpit', 0.0031857989996610888) +zone = ('wvz001', 0.0022203488558698928) + +[fips4212535696] +centroid = (0.70212374003594091, -1.4030842181254275) +description = Hopewell township, PA +station = ('kafj', 0.0021967430575311783) +zone = ('paz029', 0.0020208986256974085) + +[fips4212535896] +centroid = (0.7024854420701242, -1.3999483152451992) +description = Houston borough, PA +station = ('kafj', 0.0022436444463148474) +zone = ('paz029', 0.0011586858196106482) + +[fips4212536] +centroid = (0.69693498088951689, -1.3553466356499944) +description = Chambersburg borough, PA +station = ('khgr', 0.0041713866815385791) +zone = ('paz036', 0.00088009608149536886) + +[fips4212536800] +centroid = (0.70235349517867351, -1.4046950697585556) +description = Independence township, PA +station = ('khlg', 0.0025832853656795507) +zone = ('wvz002', 0.0013594730112866035) + +[fips4212537936] +centroid = (0.70396106559280791, -1.4046871459637518) +description = Jefferson township, PA +station = ('khlg', 0.0036741035117261404) +zone = ('wvz002', 0.0016379542557841394) + +[fips4212544512] +centroid = (0.69984819721048319, -1.3941703853031795) +description = Long Branch borough, PA +station = ('kagc', 0.0044191350644394115) +zone = ('paz075', 0.0029890421090283553) + +[fips4212546072] +centroid = (0.70457432193208114, -1.4003797955428772) +description = McDonald borough, PA +station = ('kpit', 0.001993417811164782) +zone = ('paz029', 0.0031412732607087167) + +[fips4212547400] +centroid = (0.69835552182100757, -1.3982198982336567) +description = Marianna borough, PA +station = ('kafj', 0.00310707927342129) +zone = ('paz031', 0.0031467780504255047) + +[fips4212549240] +centroid = (0.70456610143130427, -1.4013459574569038) +description = Midway borough, PA +station = ('kpit', 0.002143994608487158) +zone = ('paz029', 0.003180725102777217) + +[fips4212550408] +centroid = (0.70146817691559937, -1.3949103525461477) +description = Monongahela city, PA +station = ('kagc', 0.0027732555102884795) +zone = ('paz029', 0.0043428761961767249) + +[fips4212551104] +centroid = (0.69877337109722759, -1.4014877654586284) +description = Morris township, PA +station = ('kafj', 0.0016989243303523669) +zone = ('paz029', 0.0027500273696386413) + +[fips4212551864] +centroid = (0.70343673377892368, -1.4015922757742378) +description = Mount Pleasant township, PA +station = ('kafj', 0.0029923111799344858) +zone = ('paz029', 0.0021392918572522394) + +[fips4212553496] +centroid = (0.70174828480725182, -1.3954481757551496) +description = New Eagle borough, PA +station = ('kagc', 0.0025393345767154422) +zone = ('paz029', 0.0039437322986747439) + +[fips4212554800] +centroid = (0.69982840517676559, -1.3980436374324978) +description = North Bethlehem township, PA +station = ('kafj', 0.0025010783733999116) +zone = ('paz029', 0.0025285364705653264) + +[fips4212554888] +centroid = (0.70075657127297619, -1.3946602817709217) +description = North Charleroi borough, PA +station = ('kagc', 0.0034856295224526155) +zone = ('paz075', 0.003966733051337116) + +[fips4212555040] +centroid = (0.70081067647978801, -1.4006871829307384) +description = North Franklin township, PA +station = ('kafj', 0.00053162490267701513) +zone = ('paz029', 0.00063059783318247906) + +[fips4212555432] +centroid = (0.70211558934833407, -1.3989657995960816) +description = North Strabane township, PA +station = ('kafj', 0.0023834519729266082) +zone = ('paz029', 0.0014172718466248441) + +[fips4212555712] +centroid = (0.70186867761905436, -1.3971921436503274) +description = Nottingham township, PA +station = ('kagc', 0.0029883414985743045) +zone = ('paz029', 0.0026348001782484812) + +[fips4212559608] +centroid = (0.70289526283178494, -1.3976880964105742) +description = Peters township, PA +station = ('kagc', 0.0025747385039858648) +zone = ('paz029', 0.0026554954987691765) + +[fips4212565376] +centroid = (0.70536846419503108, -1.4015232654556138) +description = Robinson township, PA +station = ('kpit', 0.0015013682727402055) +zone = ('paz029', 0.0039943039820411631) + +[fips4212566016] +centroid = (0.69949660063266894, -1.3938891604008057) +description = Roscoe borough, PA +station = ('kagc', 0.0047954709906037618) +zone = ('paz075', 0.0025772864558703335) + +[fips4212571288] +centroid = (0.70456198245426949, -1.4028160657391511) +description = Smith township, PA +station = ('kpit', 0.0027543990090433471) +zone = ('wvz002', 0.0031487879352254775) + +[fips4212571792] +centroid = (0.7006991324872931, -1.3973413518480804) +description = Somerset township, PA +station = ('kafj', 0.0029660675195657188) +zone = ('paz029', 0.0025937933949701369) + +[fips4212572176] +centroid = (0.6997006470755196, -1.4013694321353432) +description = South Franklin township, PA +station = ('kafj', 0.00076808462382361954) +zone = ('paz029', 0.0018347690076334802) + +[fips4212572504] +centroid = (0.70112258427041196, -1.3995344976795514) +description = South Strabane township, PA +station = ('kafj', 0.0014414260360163589) +zone = ('paz029', 0.00086945633059380494) + +[fips4212572736] +centroid = (0.70025163006708169, -1.3941500173108088) +description = Speers borough, PA +station = ('kagc', 0.0040203175369158206) +zone = ('paz075', 0.0033409224077851616) + +[fips4212574224] +centroid = (0.69958067314273742, -1.3936614996531755) +description = Stockdale borough, PA +station = ('kagc', 0.0047413460330928839) +zone = ('paz075', 0.0025750331613396487) + +[fips4212578008] +centroid = (0.70015247791227597, -1.3944064410845116) +description = Twilight borough, PA +station = ('kagc', 0.0040994088755555652) +zone = ('paz075', 0.0033427178059039233) + +[fips4212578432] +centroid = (0.70239780908838156, -1.3959833635169812) +description = Union township, PA +station = ('kagc', 0.0020487256238226116) +zone = ('paz029', 0.0036503257137312142) + +[fips4212581328] +centroid = (0.70116792792437876, -1.4005696000990318) +description = Washington city, PA +station = ('kafj', 0.00086099540163767335) +zone = ('paz029', 0.0002701414724412704) + +[fips4212582512] +centroid = (0.69877213191345855, -1.3981725998109276) +description = West Bethlehem township, PA +station = ('kafj', 0.0028705354738636072) +zone = ('paz029', 0.0032459775243211405) + +[fips4212582616] +centroid = (0.69868151441869508, -1.3943726340569005) +description = West Brownsville borough, PA +station = ('kafj', 0.005523969230245133) +zone = ('paz075', 0.0021604991735099388) + +[fips4212583000] +centroid = (0.69849493872165691, -1.4045445700171562) +description = West Finley township, PA +station = ('kafj', 0.0032207133467986875) +zone = ('wvz003', 0.00234215245327349) + +[fips4212583504] +centroid = (0.70237641135175211, -1.4036859029317601) +description = West Middletown borough, PA +station = ('kafj', 0.0026942487528336273) +zone = ('paz029', 0.0025399802409575216) + +[fips4212583840] +centroid = (0.6995032677904115, -1.3958729714417926) +description = West Pike Run township, PA +station = ('kafj', 0.0041912774006704484) +zone = ('paz075', 0.00356720637397111) + +[fips4212656] +centroid = (0.71139534790155523, -1.315988309100216) +description = Chapman borough, PA +station = ('kabe', 0.002027364609300298) +zone = ('paz062', 0.0012357833792852007) + +[fips42127] +centroid = (0.72687010027485266, -1.3141017652584428) +description = Wayne County, PA +station = ('kmsv', 0.0064876937313844063) +zone = ('paz040', 0.0022816055173114132) + +[fips4212704] +centroid = (0.70053779425123863, -1.3945138137400943) +description = Charleroi borough, PA +station = ('kagc', 0.0037094064408197541) +zone = ('paz075', 0.0037209734433296189) + +[fips4212705784] +centroid = (0.72572755538661959, -1.3117296708187649) +description = Berlin township, PA +station = ('kmsv', 0.005092690096922676) +zone = ('paz072', 0.0028248326563792081) + +[fips4212705976] +centroid = (0.72630826133534321, -1.3140324233272609) +description = Bethany borough, PA +station = ('kavp', 0.0076092320677610976) +zone = ('paz072', 0.0024480223802845059) + +[fips4212709824] +centroid = (0.73086100504904794, -1.313984182426736) +description = Buckingham township, PA +station = ('kmsv', 0.0070224082572958313) +zone = ('paz040', 0.0017103795095987336) + +[fips4212711056] +centroid = (0.72548259842610219, -1.3158899248902809) +description = Canaan township, PA +station = ('kavp', 0.0060200971648268113) +zone = ('paz072', 0.0018538935435891016) + +[fips4212713096] +centroid = (0.72475212577426507, -1.3140139751970674) +description = Cherry Ridge township, PA +station = ('kmpo', 0.0069544933135590823) +zone = ('paz072', 0.00096190511300003228) + +[fips4212714352] +centroid = (0.72688577333153559, -1.316155511642557) +description = Clinton township, PA +station = ('kavp', 0.0069220591500037112) +zone = ('paz040', 0.0027553844936872656) + +[fips4212718104] +centroid = (0.7278665960112789, -1.3112744540432597) +description = Damascus township, PA +station = ('kmsv', 0.0043070925665531397) +zone = ('paz040', 0.0024403112865847699) + +[fips4212719864] +centroid = (0.7207846084120465, -1.3152689192891289) +description = Dreher township, PA +station = ('kmpo', 0.0028897043804144047) +zone = ('paz072', 0.0031530205156616608) + +[fips4212720576] +centroid = (0.72687010027485266, -1.3141017652584428) +description = Dyberry township, PA +station = ('kmsv', 0.0064876937313844063) +zone = ('paz040', 0.0022816055173114132) + +[fips4212733200] +centroid = (0.72389187043924963, -1.3120680901607265) +description = Hawley borough, PA +station = ('kmsv', 0.0062751916080665002) +zone = ('paz072', 0.0019005047645271566) + +[fips4212735520] +centroid = (0.72563302835433163, -1.3133736837076808) +description = Honesdale borough, PA +station = ('kmsv', 0.0062671669449374462) +zone = ('paz072', 0.0019646037595701443) + +[fips4212740936] +centroid = (0.72357626255061147, -1.3155410859326848) +description = Lake township, PA +station = ('kmpo', 0.0056652297039619347) +zone = ('paz072', 0.00077192596671210253) + +[fips4212742176] +centroid = (0.72776238240164226, -1.3137422623391171) +description = Lebanon township, PA +station = ('kmsv', 0.0061495297125780182) +zone = ('paz040', 0.0014085098862138042) + +[fips4212742432] +centroid = (0.71991716232051284, -1.3160200217327247) +description = Lehigh township, PA +station = ('kmpo', 0.0020206294911948742) +zone = ('paz055', 0.003418144738893643) + +[fips4212746856] +centroid = (0.72982312755605705, -1.3120315429661895) +description = Manchester township, PA +station = ('kmsv', 0.0052704295199211913) +zone = ('paz040', 0.0016512364110979338) + +[fips4212751872] +centroid = (0.72851098902440781, -1.3159816768490582) +description = Mount Pleasant township, PA +station = ('kmsv', 0.0078508965065872127) +zone = ('paz040', 0.0015735173725991251) + +[fips4212757000] +centroid = (0.72703707592439104, -1.3125666783681438) +description = Oregon township, PA +station = ('kmsv', 0.0053285858859199349) +zone = ('paz040', 0.0023884241497056169) + +[fips4212757736] +centroid = (0.72455888291948434, -1.3123658956909943) +description = Palmyra township, PA +station = ('kmsv', 0.0060685016431944599) +zone = ('paz072', 0.0018024095512369082) + +[fips4212758480] +centroid = (0.72324976380744088, -1.3134734990876025) +description = Paupack township, PA +station = ('kmpo', 0.005590889458159819) +zone = ('paz072', 0.0010671926590170835) + +[fips4212762600] +centroid = (0.73037096895496556, -1.3159673302426069) +description = Preston township, PA +station = ('kmsv', 0.0082136376485147412) +zone = ('paz040', 0.0018759024393563799) + +[fips4212762744] +centroid = (0.72587723482327071, -1.3147891980909259) +description = Prompton borough, PA +station = ('kavp', 0.0068987585742584312) +zone = ('paz072', 0.001984052012467475) + +[fips4212767488] +centroid = (0.72252541726127828, -1.3154933337243502) +description = Salem township, PA +station = ('kmpo', 0.0046156231426324754) +zone = ('paz072', 0.0015257152283432375) + +[fips4212768416] +centroid = (0.73214366496963124, -1.3160619096347725) +description = Scott township, PA +station = ('kmsv', 0.0089844554801777957) +zone = ('paz040', 0.0033447802971532901) + +[fips4212772024] +centroid = (0.72456673690111817, -1.315951220853611) +description = South Canaan township, PA +station = ('kavp', 0.0054053808565953472) +zone = ('paz072', 0.0012101340754371293) + +[fips4212773784] +centroid = (0.73113423634344776, -1.3168488960477893) +description = Starrucca borough, PA +station = ('kmsv', 0.0090889697522036714) +zone = ('paz040', 0.0028749174657148654) + +[fips4212773968] +centroid = (0.72140130304994621, -1.3160921910972945) +description = Sterling township, PA +station = ('kmpo', 0.0035024603430429228) +zone = ('paz072', 0.0027346474054698064) + +[fips4212776424] +centroid = (0.72522116555744609, -1.3135175162913377) +description = Texas township, PA +station = ('kmpo', 0.007488408487624389) +zone = ('paz072', 0.0015535346721783742) + +[fips4212781712] +centroid = (0.72581939461185963, -1.3160431124387286) +description = Waymart borough, PA +station = ('kavp', 0.006172052773179817) +zone = ('paz072', 0.0022025589205614065) + +[fips4212864] +centroid = (0.72046833729829263, -1.3258445673586634) +description = Chase CDP, PA +station = ('kavp', 0.0031815350834541239) +zone = ('paz047', 0.0018172241528845552) + +[fips42129] +centroid = (0.70356086159532549, -1.3869553512550676) +description = Westmoreland County, PA +station = ('klbe', 0.001011124142277546) +zone = ('paz073', 0.0015529887498399364) + +[fips4212900332] +centroid = (0.70358480751266295, -1.3902293620390063) +description = Adamsburg borough, PA +station = ('klbe', 0.0034226878356306521) +zone = ('paz073', 0.0011971873108043828) + +[fips4212900892] +centroid = (0.70886416670055796, -1.389974543968215) +description = Allegheny township, PA +station = ('kbtp', 0.0050498162860960144) +zone = ('paz022', 0.0041546916280711275) + +[fips4212903088] +centroid = (0.70823569109020734, -1.3921669916679853) +description = Arnold city, PA +station = ('kbtp', 0.0043249895119997668) +zone = ('paz021', 0.0034494170081536533) + +[fips4212903120] +centroid = (0.70281235969231526, -1.390248525754193) +description = Arona borough, PA +station = ('klbe', 0.0034107736135954455) +zone = ('paz073', 0.0017114157185375779) + +[fips4212903688] +centroid = (0.70733220394961993, -1.3870094215552944) +description = Avonmore borough, PA +station = ('klbe', 0.0043553037886424617) +zone = ('paz073', 0.0034781227645773747) + +[fips4212905208] +centroid = (0.70706146847605056, -1.3876626633877309) +description = Bell township, PA +station = ('klbe', 0.0042318319741957208) +zone = ('paz073', 0.0030505123090415628) + +[fips4212907480] +centroid = (0.70502585606286461, -1.381464562881586) +description = Bolivar borough, PA +station = ('kidi', 0.0042166267510439148) +zone = ('paz074', 0.0029569224247041844) + +[fips4212915912] +centroid = (0.7010451091049158, -1.3838382106642984) +description = Cook township, PA +station = ('klbe', 0.0025202693249098745) +zone = ('paz074', 0.0014308017518220465) + +[fips4212918768] +centroid = (0.70536448484433656, -1.3888089083739783) +description = Delmont borough, PA +station = ('klbe', 0.0032437610404039891) +zone = ('paz073', 0.0012186443331903822) + +[fips4212918960] +centroid = (0.70395116957594894, -1.384065016200595) +description = Derry borough, PA +station = ('klbe', 0.0015804215138386676) +zone = ('paz074', 0.0019126198821385559) + +[fips4212918968] +centroid = (0.70466736543450492, -1.3842437553692917) +description = Derry township, PA +station = ('klbe', 0.0019803920367645147) +zone = ('paz074', 0.0026164647854669048) + +[fips4212919472] +centroid = (0.70008676626593835, -1.3854559039880943) +description = Donegal borough, PA +station = ('klbe', 0.0030009969484211248) +zone = ('paz074', 0.0029446043261705077) + +[fips4212919480] +centroid = (0.69991342016463032, -1.3846064871477337) +description = Donegal township, PA +station = ('klbe', 0.0032903292596623067) +zone = ('paz074', 0.0027044608680085237) + +[fips4212921304] +centroid = (0.70060451818854252, -1.3893515137851307) +description = East Huntingdon township, PA +station = ('klbe', 0.0036746945882545519) +zone = ('paz073', 0.0035628556696563939) + +[fips4212921976] +centroid = (0.70855894352096915, -1.3886347070613365) +description = East Vandergrift borough, PA +station = ('klbe', 0.0058937774370279522) +zone = ('paz022', 0.0039729678292572297) + +[fips4212924432] +centroid = (0.70540818788880644, -1.3896846098728739) +description = Export borough, PA +station = ('klbe', 0.0037733888543392911) +zone = ('paz073', 0.0014158334830708754) + +[fips4212924608] +centroid = (0.70392210984390335, -1.3813371887527754) +description = Fairfield township, PA +station = ('klbe', 0.0035003265859905206) +zone = ('paz074', 0.0020240237106627268) + +[fips4212931200] +centroid = (0.70356405554785661, -1.388311664070085) +description = Greensburg city, PA +station = ('klbe', 0.0019829783247705245) +zone = ('paz073', 0.0007088049042230976) + +[fips4212933792] +centroid = (0.70305311040933538, -1.3890143859868154) +description = Hempfield township, PA +station = ('klbe', 0.0024587940854532068) +zone = ('paz073', 0.0011008469820064483) + +[fips4212936288] +centroid = (0.70169222483167781, -1.3895521044760624) +description = Hunker borough, PA +station = ('klbe', 0.0031870116341682379) +zone = ('paz073', 0.0025129343118761162) + +[fips4212936592] +centroid = (0.70915500836711021, -1.3890937112013186) +description = Hyde Park borough, PA +station = ('kbtp', 0.005458941186517084) +zone = ('paz022', 0.0035624192523360304) + +[fips4212937208] +centroid = (0.70380517278401966, -1.3910231377828133) +description = Irwin borough, PA +station = ('kagc', 0.0029183508328591711) +zone = ('paz073', 0.0016970265467735278) + +[fips4212937784] +centroid = (0.70385205232772818, -1.3895247551666836) +description = Jeannette city, PA +station = ('klbe', 0.0029507204383924816) +zone = ('paz073', 0.00059759028532126624) + +[fips4212941680] +centroid = (0.70358470279290786, -1.3854876689804807) +description = Latrobe city, PA +station = ('klbe', 0.00055824488774027989) +zone = ('paz074', 0.002391272815410636) + +[fips4212941834] +centroid = (0.70181727767258317, -1.3820391601779276) +description = Laurel Mountain borough, PA +station = ('klbe', 0.0031286897915530913) +zone = ('paz074', 0.00077911427529904194) + +[fips4212943232] +centroid = (0.70240671026756674, -1.3829550391562042) +description = Ligonier borough, PA +station = ('klbe', 0.0022657267932159764) +zone = ('paz074', 0.0001515339577704049) + +[fips4212943240] +centroid = (0.7022225256716037, -1.3826647036351347) +description = Ligonier township, PA +station = ('klbe', 0.0025344176565610778) +zone = ('paz074', 0.00016353237261628709) + +[fips4212944864] +centroid = (0.70829178597236642, -1.3912535212440764) +description = Lower Burrell city, PA +station = ('kbtp', 0.0047090194595696931) +zone = ('paz021', 0.0040714407441896951) + +[fips4212945200] +centroid = (0.70608490439968219, -1.3865129801028573) +description = Loyalhanna township, PA +station = ('klbe', 0.0030579246464480991) +zone = ('paz073', 0.0026278170745573596) + +[fips4212946488] +centroid = (0.70241749640234408, -1.3905886555188218) +description = Madison borough, PA +station = ('klbe', 0.0037195168736916802) +zone = ('paz073', 0.0021822820597025509) + +[fips4212947000] +centroid = (0.70416947535878849, -1.3904910043471725) +description = Manor borough, PA +station = ('klbe', 0.0037463299205249285) +zone = ('paz073', 0.001256818151638735) + +[fips4212950344] +centroid = (0.70078400784881756, -1.3942215059969705) +description = Monessen city, PA +station = ('kagc', 0.0034853044632520581) +zone = ('paz075', 0.0038494339974841298) + +[fips4212951880] +centroid = (0.70076596114435186, -1.3882935824590343) +description = Mount Pleasant borough, PA +station = ('klbe', 0.0029984280794504181) +zone = ('paz073', 0.003405988012442812) + +[fips4212951888] +centroid = (0.70125378067028432, -1.3869611806547693) +description = Mount Pleasant township, PA +station = ('klbe', 0.0020300067230689649) +zone = ('paz073', 0.0032289414379631965) + +[fips4212952432] +centroid = (0.70585706911912682, -1.3902272152840263) +description = Murrysville municipality, PA +station = ('klbe', 0.0043764658134865693) +zone = ('paz073', 0.0020099723906031623) + +[fips4212953160] +centroid = (0.70501625675197854, -1.3860972775816172) +description = New Alexandria borough, PA +station = ('klbe', 0.001953417566205656) +zone = ('paz073', 0.0022651562539177713) + +[fips4212953544] +centroid = (0.70474740623400134, -1.3801214796622987) +description = New Florence borough, PA +station = ('kjst', 0.0033956719521440176) +zone = ('paz074', 0.0032450537056221938) + +[fips4212953736] +centroid = (0.70809658834882339, -1.391968565185326) +description = New Kensington city, PA +station = ('kagc', 0.0044205196664867264) +zone = ('paz021', 0.0035030075381430169) + +[fips4212954104] +centroid = (0.70201242293624866, -1.3894353768556891) +description = New Stanton borough, PA +station = ('klbe', 0.0029777868923033381) +zone = ('paz073', 0.0021811284732880256) + +[fips4212954776] +centroid = (0.70043591938279981, -1.3938898934390915) +description = North Belle Vernon borough, PA +station = ('kagc', 0.0038685777846343803) +zone = ('paz075', 0.0034318601177101686) + +[fips4212955128] +centroid = (0.70388105969989645, -1.3915839818846489) +description = North Huntingdon township, PA +station = ('kagc', 0.0024842616933177324) +zone = ('paz073', 0.0021066170921860122) + +[fips4212955136] +centroid = (0.70404735467102653, -1.3912271318657865) +description = North Irwin borough, PA +station = ('kagc', 0.0027367614023322516) +zone = ('paz073', 0.0018204201854221049) + +[fips4212956496] +centroid = (0.70828220411477294, -1.3888940455348904) +description = Oklahoma borough, PA +station = ('klbe', 0.0057160698654259486) +zone = ('paz073', 0.004136286354775782) + +[fips4212958872] +centroid = (0.70387716761566455, -1.3900172172684264) +description = Penn borough, PA +station = ('klbe', 0.0033204805121911101) +zone = ('paz073', 0.00093511933657886937) + +[fips4212958880] +centroid = (0.70463994631195603, -1.3901939842150683) +description = Penn township, PA +station = ('klbe', 0.0037024478311816966) +zone = ('paz073', 0.0011422862770777613) + +[fips4212966376] +centroid = (0.70109750388906067, -1.3928332187500567) +description = Rostraver township, PA +station = ('kagc', 0.0034857911577076454) +zone = ('paz075', 0.0038877274093935188) + +[fips4212967240] +centroid = (0.70428304393321572, -1.379375543393289) +description = St. Clair township, PA +station = ('kjst', 0.0027210206244739506) +zone = ('paz074', 0.0033400169662570964) + +[fips4212967496] +centroid = (0.70544662003893532, -1.3879074632686157) +description = Salem township, PA +station = ('klbe', 0.0028664530607835975) +zone = ('paz073', 0.001482697244061049) + +[fips4212968432] +centroid = (0.69993630143112384, -1.3891052129210892) +description = Scottdale borough, PA +station = ('klbe', 0.004033635953487694) +zone = ('paz075', 0.0036360628805449696) + +[fips4212969368] +centroid = (0.70534107997906725, -1.3791915333302514) +description = Seward borough, PA +station = ('kjst', 0.0030192493188309034) +zone = ('paz074', 0.0041588318465799632) + +[fips4212969392] +centroid = (0.70247804187409568, -1.3915919580393308) +description = Sewickley township, PA +station = ('kagc', 0.0030208462564116083) +zone = ('paz073', 0.0026796831071989632) + +[fips4212971424] +centroid = (0.70081615681363918, -1.3917546401789092) +description = Smithton borough, PA +station = ('kagc', 0.0041423528396235601) +zone = ('paz075', 0.00360584387863648) + +[fips4212972192] +centroid = (0.7029871718701951, -1.3883646522661754) +description = South Greensburg borough, PA +station = ('klbe', 0.0019651215224726804) +zone = ('paz073', 0.0012148109518163714) + +[fips4212972256] +centroid = (0.70123543725984583, -1.3910019494856942) +description = South Huntingdon township, PA +station = ('kagc', 0.0041795615964171969) +zone = ('paz073', 0.0033448646684157602) + +[fips4212972616] +centroid = (0.70322577583223511, -1.3883712496107481) +description = Southwest Greensburg borough, PA +station = ('klbe', 0.0019735413497894466) +zone = ('paz073', 0.00098791705036537164) + +[fips4212975584] +centroid = (0.70222249076501875, -1.3927908770624033) +description = Sutersville borough, PA +station = ('kagc', 0.0025379577371518925) +zone = ('paz073', 0.0035738125209054785) + +[fips4212977272] +centroid = (0.70484971743475333, -1.3919976249173718) +description = Trafford borough, PA +station = ('kagc', 0.0022269659136651783) +zone = ('paz073', 0.00250503186797569) + +[fips4212978656] +centroid = (0.70303173012599851, -1.386246450872785) +description = Unity township, PA +station = ('klbe', 0.00035003891631805014) +zone = ('paz073', 0.0022715061641678642) + +[fips4212978768] +centroid = (0.70768188066525695, -1.3905538711068295) +description = Upper Burrell township, PA +station = ('kagc', 0.0047253774672341717) +zone = ('paz073', 0.0037680740870156344) + +[fips4212979776] +centroid = (0.7085939024658866, -1.3888550723326936) +description = Vandergrift borough, PA +station = ('klbe', 0.005989570743876761) +zone = ('paz022', 0.0039982639168434295) + +[fips4212981336] +centroid = (0.70711634162773318, -1.389301876621204) +description = Washington township, PA +station = ('klbe', 0.0048440499972991708) +zone = ('paz073', 0.0029907699669325157) + +[fips4212983328] +centroid = (0.70918907719410929, -1.389614290557311) +description = West Leechburg borough, PA +station = ('kbtp', 0.0050998505407420201) +zone = ('paz022', 0.0037328297997134452) + +[fips4212983680] +centroid = (0.70174751686238102, -1.3922700184537307) +description = West Newton borough, PA +station = ('kagc', 0.003156918487466449) +zone = ('paz073', 0.0035485703101727144) + +[fips4212987208] +centroid = (0.70301483533883913, -1.3851959895558872) +description = Youngstown borough, PA +station = ('klbe', 0.00045845146017830829) +zone = ('paz074', 0.0019252152771412605) + +[fips4212987232] +centroid = (0.70239595903937446, -1.3889454454813617) +description = Youngwood borough, PA +station = ('klbe', 0.0025012050436009135) +zone = ('paz073', 0.001751915011552567) + +[fips42131] +centroid = (0.72475036299172058, -1.3266034714240156) +description = Wyoming County, PA +station = ('kavp', 0.0049192305742630166) +zone = ('paz043', 0.00015492734657283262) + +[fips4213108176] +centroid = (0.72667633382129626, -1.3289929842496286) +description = Braintrim township, PA +station = ('kavp', 0.0075417936048080923) +zone = ('paz043', 0.002649740310536101) + +[fips4213114360] +centroid = (0.72549769552413212, -1.3233246435313413) +description = Clinton township, PA +station = ('kavp', 0.0042522040136457892) +zone = ('paz043', 0.002697335061306812) + +[fips4213120] +centroid = (0.7107983754842031, -1.3755374771016908) +description = Cherry Tree borough, PA +station = ('kidi', 0.0041331585148895534) +zone = ('paz024', 0.0042284475442614143) + +[fips4213122112] +centroid = (0.72411302110876974, -1.3256672419066609) +description = Eaton township, PA +station = ('kavp', 0.0039717731234106528) +zone = ('paz043', 0.0009557496517747842) + +[fips4213124408] +centroid = (0.72308207257290924, -1.3238817700818706) +description = Exeter township, PA +station = ('kavp', 0.002295494052958444) +zone = ('paz043', 0.0026429483835126014) + +[fips4213124488] +centroid = (0.72536506795427302, -1.3226435462440431) +description = Factoryville borough, PA +station = ('kavp', 0.0040129145761310546) +zone = ('paz044', 0.0031195185255325272) + +[fips4213125128] +centroid = (0.72401938419440026, -1.3236101793969677) +description = Falls township, PA +station = ('kavp', 0.0029492528605051522) +zone = ('paz043', 0.0024216982436454427) + +[fips4213126752] +centroid = (0.7235655113224192, -1.3293090633771647) +description = Forkston township, PA +station = ('kavp', 0.0060367356195271749) +zone = ('paz043', 0.0022017789347011825) + +[fips4213140744] +centroid = (0.7268565216132723, -1.3292247814275857) +description = Laceyville borough, PA +station = ('kavp', 0.0077916115365134798) +zone = ('paz043', 0.0028990519770666252) + +[fips4213142616] +centroid = (0.72627222028628957, -1.3248628545610015) +description = Lemon township, PA +station = ('kavp', 0.0053844139245766993) +zone = ('paz043', 0.0021579074699186918) + +[fips4213148528] +centroid = (0.72529075183472314, -1.327870772447181) +description = Mehoopany township, PA +station = ('kavp', 0.0059876271036928197) +zone = ('paz043', 0.0010731297130122666) + +[fips4213148856] +centroid = (0.7262186561315459, -1.3271801107555821) +description = Meshoppen borough, PA +station = ('kavp', 0.0062823391866897822) +zone = ('paz043', 0.0016199763506135876) + +[fips4213148864] +centroid = (0.72662093707083808, -1.3275016876702619) +description = Meshoppen township, PA +station = ('kavp', 0.0067453651775387221) +zone = ('paz043', 0.0020685679955134355) + +[fips4213150496] +centroid = (0.72305365861268678, -1.3263265574848941) +description = Monroe township, PA +station = ('kavp', 0.0037790880561574046) +zone = ('paz043', 0.0016089619998553792) + +[fips4213152] +centroid = (0.7183677462770548, -1.3927938441221317) +description = Cherry Valley borough, PA +station = ('kfkl', 0.0040009028341312551) +zone = ('paz008', 0.004253937364041018) + +[fips4213154400] +centroid = (0.72655412586707169, -1.3227728925949085) +description = Nicholson borough, PA +station = ('kavp', 0.0052030948798158661) +zone = ('paz039', 0.0033703303779998523) + +[fips4213154408] +centroid = (0.72649794371845, -1.3233279072970427) +description = Nicholson township, PA +station = ('kavp', 0.0052228428711719229) +zone = ('paz043', 0.0031603982646293341) + +[fips4213154824] +centroid = (0.72439592152722554, -1.3298335348173889) +description = North Branch township, PA +station = ('kavp', 0.0067295391028822614) +zone = ('paz043', 0.0023299151258851926) + +[fips4213155232] +centroid = (0.72319565860062907, -1.3252688879581858) +description = Northmoreland township, PA +station = ('kavp', 0.0031628937417227249) +zone = ('paz043', 0.001810297341726264) + +[fips4213155736] +centroid = (0.72282001138572227, -1.3287323716857207) +description = Noxen township, PA +station = ('kavp', 0.0053946105853972318) +zone = ('paz043', 0.0023492752804370894) + +[fips4213157408] +centroid = (0.72488225752329383, -1.3233420270106913) +description = Overfield township, PA +station = ('kavp', 0.003667478667529497) +zone = ('paz043', 0.0025547970791911846) + +[fips4213168] +centroid = (0.71132513330574743, -1.3182862444999768) +description = Cherryville CDP, PA +station = ('kabe', 0.0021452358722539961) +zone = ('paz061', 0.0026202229299952581) + +[fips4213177784] +centroid = (0.72502870810082864, -1.3255611258881395) +description = Tunkhannock borough, PA +station = ('kavp', 0.0045950760571417896) +zone = ('paz043', 0.00096604150581682988) + +[fips4213177792] +centroid = (0.72521931550843888, -1.3248226596283281) +description = Tunkhannock township, PA +station = ('kavp', 0.0044400064427384299) +zone = ('paz043', 0.0015492073601778439) + +[fips4213181344] +centroid = (0.72596137714650943, -1.3263023672214616) +description = Washington township, PA +station = ('kavp', 0.0056731489879746373) +zone = ('paz043', 0.0013680420458448352) + +[fips4213185680] +centroid = (0.72618708312537728, -1.3293566410525739) +description = Windham township, PA +station = ('kavp', 0.0074150871310183115) +zone = ('paz043', 0.0025008491463397284) + +[fips4213208] +centroid = (0.69543617939436664, -1.3154875043246488) +description = Chester city, PA +station = ('kphl', 0.0018924991158258751) +zone = ('paz070', 0.0012936914610299848) + +[fips4213216] +centroid = (0.6993633272909866, -1.3169380998258586) +description = Chesterbrook CDP, PA +station = ('kptw', 0.0031107000954117615) +zone = ('paz068', 0.0027149777774957205) + +[fips4213232] +centroid = (0.69625737426072254, -1.3172380346578139) +description = Chester Heights borough, PA +station = ('kphl', 0.0032308840787757189) +zone = ('paz070', 0.0010661913466177041) + +[fips4213240] +centroid = (0.71366301929208642, -1.3653535158228889) +description = Chester Hill borough, PA +station = ('kfig', 0.0037318391087712735) +zone = ('paz018', 0.0034474839058636357) + +[fips42133] +centroid = (0.69676753400108049, -1.3391640126386732) +description = York County, PA +station = ('kthv', 0.0020752542564357111) +zone = ('paz065', 4.2705763506097618e-05) + +[fips4213311432] +centroid = (0.70005859665181114, -1.3442666397865111) +description = Carroll township, PA +station = ('kcxy', 0.0029376598193925421) +zone = ('paz063', 0.0033897864048004858) + +[fips4213312584] +centroid = (0.69609378454993309, -1.334753146739863) +description = Chanceford township, PA +station = ('klns', 0.004703003407255801) +zone = ('paz065', 0.0034181605752985214) + +[fips4213314832] +centroid = (0.69435774044955945, -1.3403051961700896) +description = Codorus township, PA +station = ('kthv', 0.0026112082713479674) +zone = ('paz065', 0.002541465676427059) + +[fips4213315656] +centroid = (0.69935048166769198, -1.3404495523525222) +description = Conewago township, PA +station = ('kmdt', 0.0023205599857938118) +zone = ('paz065', 0.0028052545946667304) + +[fips4213317416] +centroid = (0.69499033503694485, -1.3364478788968419) +description = Cross Roads borough, PA +station = ('kthv', 0.0044885700414499432) +zone = ('paz065', 0.0026975906734595656) + +[fips4213318072] +centroid = (0.69637982656104247, -1.3376372160623211) +description = Dallastown borough, PA +station = ('kthv', 0.0032583947614425947) +zone = ('paz065', 0.0011985167113594578) + +[fips4213318800] +centroid = (0.6933618381250789, -1.332159744551032) +description = Delta borough, PA +station = ('kapg', 0.0050254929588071703) +zone = ('mdz007', 0.0027066577038839384) + +[fips4213319208] +centroid = (0.7000568687758516, -1.3444880697087116) +description = Dillsburg borough, PA +station = ('kcxy', 0.0030717942869857135) +zone = ('paz063', 0.0032278358872793473) + +[fips4213319696] +centroid = (0.69818933156963259, -1.3412581459416786) +description = Dover borough, PA +station = ('kthv', 0.0015825210800318528) +zone = ('paz065', 0.0021862024789581669) + +[fips4213319704] +centroid = (0.69815653683298773, -1.3416660119345769) +description = Dover township, PA +station = ('kthv', 0.0014873019259679637) +zone = ('paz065', 0.0024088924439020182) + +[fips4213321296] +centroid = (0.69467603614524565, -1.3357607776769169) +description = East Hopewell township, PA +station = ('kthv', 0.0050968082734688782) +zone = ('paz065', 0.0033049472088710371) + +[fips4213321464] +centroid = (0.69891072850935942, -1.3388082272706541) +description = East Manchester township, PA +station = ('kmdt', 0.0028221804442165608) +zone = ('paz065', 0.0021909577588840328) + +[fips4213321728] +centroid = (0.69762574730087112, -1.3355503607822965) +description = East Prospect borough, PA +station = ('klns', 0.0039004586726572909) +zone = ('paz065', 0.0028857285912424245) + +[fips4213324936] +centroid = (0.70115773520154701, -1.3415206434611784) +description = Fairview township, PA +station = ('kcxy', 0.00077656426303505835) +zone = ('paz057', 0.004372179629737699) + +[fips4213325408] +centroid = (0.69388142264339758, -1.3345869739417806) +description = Fawn township, PA +station = ('kapg', 0.0064656909653125951) +zone = ('paz065', 0.0045060573470873579) + +[fips4213325416] +centroid = (0.69343976707618049, -1.3343411268633447) +description = Fawn Grove borough, PA +station = ('kapg', 0.0060039995635906311) +zone = ('mdz006', 0.0043614544203277933) + +[fips4213325584] +centroid = (0.6956378870960197, -1.3362438848138687) +description = Felton borough, PA +station = ('kthv', 0.0044383320049814498) +zone = ('paz065', 0.0024708203510367174) + +[fips4213327480] +centroid = (0.69935994135223778, -1.3451156726544364) +description = Franklin township, PA +station = ('kthv', 0.0036592404492319115) +zone = ('paz063', 0.0030777058272415348) + +[fips4213327576] +centroid = (0.69945891897411849, -1.3444190768433804) +description = Franklintown borough, PA +station = ('kthv', 0.0033998751362427962) +zone = ('paz063', 0.003496388882765546) + +[fips4213329760] +centroid = (0.69452764825224111, -1.3392034047198906) +description = Glen Rock borough, PA +station = ('kthv', 0.0029669536792667275) +zone = ('paz065', 0.0022067624096879864) + +[fips4213330016] +centroid = (0.70082437731441616, -1.3395930320221059) +description = Goldsboro borough, PA +station = ('kmdt', 0.00081844891091203997) +zone = ('paz065', 0.0041060146740090099) + +[fips4213332056] +centroid = (0.69817659066609317, -1.3369962264412336) +description = Hallam borough, PA +station = ('kmdt', 0.0040712763147965616) +zone = ('paz065', 0.0021810349297128702) + +[fips4213332448] +centroid = (0.69484583922817222, -1.3436186513951232) +description = Hanover borough, PA +station = ('kthv', 0.0022718203311632287) +zone = ('paz065', 0.0039285478645598865) + +[fips4213333624] +centroid = (0.69516038246596668, -1.3424714290244948) +description = Heidelberg township, PA +station = ('kthv', 0.0015861529701717361) +zone = ('paz065', 0.0030085038338754947) + +[fips4213333728] +centroid = (0.69853974132355556, -1.3368584676033737) +description = Hellam township, PA +station = ('kmdt', 0.0038302752202263898) +zone = ('paz065', 0.0025084627058935731) + +[fips4213335704] +centroid = (0.69360731868437198, -1.3361457798566143) +description = Hopewell township, PA +station = ('kthv', 0.005360129527201476) +zone = ('mdz006', 0.0037443215437948205) + +[fips4213337488] +centroid = (0.69655167167919396, -1.3417585492915176) +description = Jackson township, PA +station = ('kthv', 0.00015076828195370159) +zone = ('paz065', 0.002024261908604981) + +[fips4213337640] +centroid = (0.69608046768774035, -1.3388802046490063) +description = Jacobus borough, PA +station = ('kthv', 0.0023680492977355911) +zone = ('paz065', 0.00068076338370516858) + +[fips4213337944] +centroid = (0.69491273769840112, -1.3411217310073427) +description = Jefferson borough, PA +station = ('kthv', 0.0018549991850791119) +zone = ('paz065', 0.002377540795279793) + +[fips4213342968] +centroid = (0.70049897812867434, -1.3414763295514704) +description = Lewisberry borough, PA +station = ('kcxy', 0.0014217631927118991) +zone = ('paz065', 0.0041719570871166936) + +[fips4213344416] +centroid = (0.69561792052937688, -1.3388047715187352) +description = Loganville borough, PA +station = ('kthv', 0.0025776753823016649) +zone = ('paz065', 0.0011433454572390487) + +[fips4213344872] +centroid = (0.69485467059418726, -1.3331466409765722) +description = Lower Chanceford township, PA +station = ('klns', 0.0054298702933639536) +zone = ('mdz007', 0.0042502175818608934) + +[fips4213345152] +centroid = (0.69746751575088539, -1.3358086695115914) +description = Lower Windsor township, PA +station = ('klns', 0.0041537337970562463) +zone = ('paz065', 0.0026501467722370455) + +[fips4213346864] +centroid = (0.69920197160163977, -1.3390051702234491) +description = Manchester borough, PA +station = ('kmdt', 0.0025014077610606557) +zone = ('paz065', 0.0024701331231393813) + +[fips4213346872] +centroid = (0.69840194757911067, -1.3396701581217514) +description = Manchester township, PA +station = ('kthv', 0.0024104420007509805) +zone = ('paz065', 0.0017188442845465514) + +[fips4213346904] +centroid = (0.69391423483333514, -1.34158541262972) +description = Manheim township, PA +station = ('kthv', 0.0027714905642667763) +zone = ('paz065', 0.0033917319345208169) + +[fips4213350328] +centroid = (0.70052959120375424, -1.3431017895904376) +description = Monaghan township, PA +station = ('kcxy', 0.0019596619592750757) +zone = ('paz065', 0.0048639524192109797) + +[fips4213352056] +centroid = (0.69920808025402181, -1.3387582759474619) +description = Mount Wolf borough, PA +station = ('kmdt', 0.0025498128022553067) +zone = ('paz065', 0.0024907280995407912) + +[fips4213353224] +centroid = (0.70032638251894463, -1.3402218217917217) +description = Newberry township, PA +station = ('kmdt', 0.0013299322498961708) +zone = ('paz065', 0.0036886895673324503) + +[fips4213353568] +centroid = (0.69351228550660082, -1.3386100800406751) +description = New Freedom borough, PA +station = ('kthv', 0.0040341891302362277) +zone = ('paz065', 0.003246061994552438) + +[fips4213354056] +centroid = (0.6964508789148911, -1.340261336045987) +description = New Salem borough, PA +station = ('kthv', 0.0012524899235351404) +zone = ('paz065', 0.0009126593631503361) + +[fips4213354904] +centroid = (0.69581950605798226, -1.3407793323146864) +description = North Codorus township, PA +station = ('kthv', 0.0011968928644990827) +zone = ('paz065', 0.0015610718468591143) + +[fips4213355112] +centroid = (0.69516027774621147, -1.3369951268838047) +description = North Hopewell township, PA +station = ('kthv', 0.0040352244823046359) +zone = ('paz065', 0.002271588211901147) + +[fips4213355608] +centroid = (0.69774790289521826, -1.3392065463125442) +description = North York borough, PA +station = ('kthv', 0.0023037334826441491) +zone = ('paz065', 0.0010159049064558574) + +[fips4213357872] +centroid = (0.69662986242968317, -1.342980890633152) +description = Paradise township, PA +station = ('kthv', 0.00085542607993272424) +zone = ('paz065', 0.0029553257828827534) + +[fips4213358560] +centroid = (0.69375026115011029, -1.3322388079661474) +description = Peach Bottom township, PA +station = ('kapg', 0.0054034509026830565) +zone = ('mdz007', 0.002988917941547208) + +[fips4213358888] +centroid = (0.69463278688638119, -1.3432649429689141) +description = Penn township, PA +station = ('kthv', 0.0023088796282335349) +zone = ('paz065', 0.0038063278237096981) + +[fips4213363288] +centroid = (0.69393610380886273, -1.3385989971999248) +description = Railroad borough, PA +station = ('kthv', 0.0037164484517509125) +zone = ('paz065', 0.0028271486687942221) + +[fips4213363840] +centroid = (0.69636209401584226, -1.3370572082452983) +description = Red Lion borough, PA +station = ('kthv', 0.0037031627735327833) +zone = ('paz065', 0.0016328417209675594) + +[fips4213369360] +centroid = (0.69559275288156319, -1.339831269465003) +description = Seven Valleys borough, PA +station = ('kthv', 0.0019018282903293083) +zone = ('paz065', 0.0012614447063526942) + +[fips4213370568] +centroid = (0.69414065639719635, -1.3383161491413467) +description = Shrewsbury borough, PA +station = ('kthv', 0.0037240317578650655) +zone = ('paz065', 0.0026672685395366757) + +[fips4213370576] +centroid = (0.69374835874122553, -1.3390179285802812) +description = Shrewsbury township, PA +station = ('kthv', 0.0036559778127853333) +zone = ('paz065', 0.0029865745785176488) + +[fips4213372992] +centroid = (0.69793692205320934, -1.3382560400019081) +description = Springettsbury township, PA +station = ('kthv', 0.0030414222002520639) +zone = ('paz065', 0.0013771822095016563) + +[fips4213373096] +centroid = (0.69514163762980019, -1.33934732457001) +description = Springfield township, PA +station = ('kthv', 0.0024695219777223013) +zone = ('paz065', 0.0016007631252210836) + +[fips4213373168] +centroid = (0.69713560648703365, -1.3390604797074448) +description = Spring Garden township, PA +station = ('kthv', 0.0022006242902109659) +zone = ('paz065', 0.00040543930349696769) + +[fips4213373192] +centroid = (0.69605140795569476, -1.3415305569313298) +description = Spring Grove borough, PA +station = ('kthv', 0.00067707741161601059) +zone = ('paz065', 0.0019639032374191268) + +[fips4213374104] +centroid = (0.6938165662083936, -1.3367912200672942) +description = Stewartstown borough, PA +station = ('kthv', 0.0048349953470845017) +zone = ('paz065', 0.0034256376811296887) + +[fips4213381056] +centroid = (0.69933479115771646, -1.3425842471073439) +description = Warrington township, PA +station = ('kthv', 0.002713699685931993) +zone = ('paz065', 0.0037105971115691159) + +[fips4213381352] +centroid = (0.69833555525436475, -1.3436461752374271) +description = Washington township, PA +station = ('kthv', 0.0021468166082540207) +zone = ('paz065', 0.0038139812450168962) + +[fips4213382200] +centroid = (0.69902667073156954, -1.3428690848412692) +description = Wellsville borough, PA +station = ('kthv', 0.0024716230564023351) +zone = ('paz065', 0.0036694999515960195) + +[fips4213383432] +centroid = (0.69717700569689101, -1.3402795049235003) +description = West Manchester township, PA +station = ('kthv', 0.0013161255021822259) +zone = ('paz065', 0.0009866096232992146) + +[fips4213383440] +centroid = (0.69371945608881258, -1.3428525391199604) +description = West Manheim township, PA +station = ('kdmw', 0.0025736071091741596) +zone = ('mdz005', 0.0034007932835100167) + +[fips4213384] +centroid = (0.70822113504424566, -1.3720124181581455) +description = Chest Springs borough, PA +station = ('kjst', 0.0054382796527359814) +zone = ('paz024', 0.0019879368282285604) + +[fips4213384288] +centroid = (0.69731816792679213, -1.3397314017252038) +description = West York borough, PA +station = ('kthv', 0.0017586927937579509) +zone = ('paz065', 0.00074445710611673662) + +[fips4213385728] +centroid = (0.69667042388149958, -1.3366423958419766) +description = Windsor borough, PA +station = ('klns', 0.0051613968403269256) +zone = ('paz065', 0.0019089851275182191) + +[fips4213385736] +centroid = (0.69722135451318401, -1.3372918677632288) +description = Windsor township, PA +station = ('kthv', 0.0035504017203003761) +zone = ('paz065', 0.0014914687591164777) + +[fips4213385872] +centroid = (0.69535320644172693, -1.3372264353695715) +description = Winterstown borough, PA +station = ('kthv', 0.0037995801329456461) +zone = ('paz065', 0.0020098976416806089) + +[fips4213386640] +centroid = (0.69854920100810136, -1.3357276164211289) +description = Wrightsville borough, PA +station = ('klns', 0.0034907061571171198) +zone = ('paz065', 0.0031772705248289531) + +[fips4213387040] +centroid = (0.69654936784458132, -1.3375625683302133) +description = Yoe borough, PA +station = ('kthv', 0.0033042933191211005) +zone = ('paz065', 0.0012163072885994432) + +[fips4213387048] +centroid = (0.69751730999444483, -1.3392232491134859) +description = York city, PA +station = ('kthv', 0.0021943823136485506) +zone = ('paz065', 0.00078686912503819208) + +[fips4213387056] +centroid = (0.69657165569912916, -1.338209177911492) +description = York township, PA +station = ('kthv', 0.002807816059769248) +zone = ('paz065', 0.00072465096283188396) + +[fips4213387064] +centroid = (0.69771212364555235, -1.3366551891053937) +description = Yorkana borough, PA +station = ('klns', 0.0045277267357586764) +zone = ('paz065', 0.0021347279770580884) + +[fips4213387080] +centroid = (0.70005864901168868, -1.3389297719997628) +description = York Haven borough, PA +station = ('kmdt', 0.0017087250159190342) +zone = ('paz065', 0.0033284930656771487) + +[fips4213392] +centroid = (0.70760939714142157, -1.3927793578893402) +description = Cheswick borough, PA +station = ('kagc', 0.0037062231098828526) +zone = ('paz021', 0.002726993387886702) + +[fips4213400] +centroid = (0.70930826572872785, -1.3813516575322744) +description = Chevy Chase Heights CDP, PA +station = ('kidi', 0.00061656822294419821) +zone = ('paz023', 0.00079642377919994555) + +[fips4213408] +centroid = (0.71379828230911602, -1.401821315331977) +description = Chewton CDP, PA +station = ('kbvi', 0.0025267436642561016) +zone = ('paz013', 0.0016462769630893083) + +[fips4213418] +centroid = (0.69697140591100604, -1.3182525247388281) +description = Cheyney University CDP, PA +station = ('kmqs', 0.0046164159919861733) +zone = ('paz070', 0.0017818340209052746) + +[fips4213440] +centroid = (0.71475608409602542, -1.3917089649123846) +description = Chicora borough, PA +station = ('kbtp', 0.0040583222771146642) +zone = ('paz014', 0.0024016896314845004) + +[fips4213480] +centroid = (0.72406165606888362, -1.3206334854511064) +description = Chinchilla CDP, PA +station = ('kavp', 0.002798205547338394) +zone = ('paz044', 0.0011348491635401316) + +[fips4213512] +centroid = (0.69733764580124447, -1.3264039104773424) +description = Christiana borough, PA +station = ('kmqs', 0.0017605951709376269) +zone = ('paz067', 0.0033476155937495768) + +[fips4213596] +centroid = (0.71021988610362963, -1.3542866622886731) +description = Church Hill CDP, PA +station = ('kunv', 0.0043491490293107605) +zone = ('paz027', 0.0014644751953502937) + +[fips4213608] +centroid = (0.705791078220109, -1.3934988000603046) +description = Churchill borough, PA +station = ('kagc', 0.0018440152533978386) +zone = ('paz021', 0.0019262695009704049) + +[fips4213632] +centroid = (0.70052805531401252, -1.3257085189434705) +description = Churchtown CDP, PA +station = ('kmqs', 0.0029839033863921175) +zone = ('paz067', 0.0040004810556631088) + +[fips4213648] +centroid = (0.70161087503524233, -1.3089300754321032) +description = Churchville CDP, PA +station = ('kpne', 0.0020431198775576016) +zone = ('paz069', 0.002817647149969738) + +[fips4213704] +centroid = (0.70332513742655112, -1.3942723299847886) +description = Clairton city, PA +station = ('kagc', 0.0010024992633278066) +zone = ('paz021', 0.0032460277182836408) + +[fips4213768] +centroid = (0.7164301864612459, -1.3604141642265748) +description = Clarence CDP, PA +station = ('kunv', 0.0036871154603538977) +zone = ('paz018', 0.001274860915612632) + +[fips4213776] +centroid = (0.72920929525813061, -1.3804508581987351) +description = Clarendon borough, PA +station = ('kbfd', 0.0060042820634540941) +zone = ('paz004', 0.0024175994301760275) + +[fips4213800] +centroid = (0.71924049816951463, -1.385443878669548) +description = Clarion borough, PA +station = ('kfkl', 0.0070654142999827304) +zone = ('paz015', 0.00061328690589894732) + +[fips4213832] +centroid = (0.7205803176231006, -1.4033125595514659) +description = Clark borough, PA +station = ('kucp', 0.00455583532080279) +zone = ('paz007', 0.0019371841601593385) + +[fips4213864] +centroid = (0.72432757443371742, -1.3211324750842515) +description = Clarks Green borough, PA +station = ('kavp', 0.0029668435525934318) +zone = ('paz044', 0.0015851426816546773) + +[fips4213880] +centroid = (0.72414126053606709, -1.3213278472407197) +description = Clarks Summit borough, PA +station = ('kavp', 0.002760920593902249) +zone = ('paz044', 0.0015758074870575345) + +[fips4213896] +centroid = (0.69768482669605114, -1.3970296360436742) +description = Clarksville borough, PA +station = ('kafj', 0.0042339609146600666) +zone = ('paz031', 0.0031893556958283542) + +[fips4213952] +centroid = (0.7019547572577628, -1.3306221443866102) +description = Clay CDP, PA +station = ('klns', 0.0019631503713651247) +zone = ('paz066', 0.0030852054151976004) + +[fips4213992] +centroid = (0.70318711678930346, -1.3691798185953286) +description = Claysburg CDP, PA +station = ('kaoo', 0.0017606009801640584) +zone = ('paz025', 0.0035975231429829298) + +[fips4214000] +centroid = (0.70023169840702382, -1.4034749100784865) +description = Claysville borough, PA +station = ('kafj', 0.001747759113535415) +zone = ('paz029', 0.0025094874399475674) + +[fips4214064] +centroid = (0.71596020420026885, -1.3690257583822549) +description = Clearfield borough, PA +station = ('kfig', 0.00058053066014503261) +zone = ('paz017', 0.00058910782932949956) + +[fips4214160] +centroid = (0.70404018136780078, -1.3347757487536762) +description = Cleona borough, PA +station = ('kmui', 0.0020391575393893342) +zone = ('paz059', 0.00056247749211549953) + +[fips4214264] +centroid = (0.69691258831521374, -1.3141600941620444) +description = Clifton Heights borough, PA +station = ('kphl', 0.0013884713765122691) +zone = ('paz070', 0.0014007782796152091) + +[fips4214296] +centroid = (0.70677252921838296, -1.4013814574538894) +description = Clinton CDP, PA +station = ('kpit', 0.00082124021877967286) +zone = ('paz020', 0.0033509583844278509) + +[fips4214376] +centroid = (0.71909354144649673, -1.3940732228237209) +description = Clintonville borough, PA +station = ('kfkl', 0.0031835434644071729) +zone = ('paz008', 0.0038099167167241345) + +[fips4214520] +centroid = (0.70979926175389885, -1.3790475611202542) +description = Clymer borough, PA +station = ('kidi', 0.0012982805968993381) +zone = ('paz023', 0.0010193780847393922) + +[fips4214568] +centroid = (0.69935400723278107, -1.3945384403358401) +description = Coal Center borough, PA +station = ('kagc', 0.0048907112562974631) +zone = ('paz075', 0.0027368061605270904) + +[fips4214584] +centroid = (0.70105266638057695, -1.3651373742483219) +description = Coaldale borough, PA +station = ('kaoo', 0.0026714532205346008) +zone = ('paz035', 0.0044449333794998264) + +[fips4214600] +centroid = (0.71243886280803015, -1.3249859351798521) +description = Coaldale borough, PA +station = ('kxll', 0.0071268847870647077) +zone = ('paz054', 0.0032318660659638068) + +[fips4214640] +centroid = (0.70181801071086902, -1.3648470736338378) +description = Coalmont borough, PA +station = ('kaoo', 0.0021948351132297186) +zone = ('paz026', 0.0046235792585901728) + +[fips4214656] +centroid = (0.71115431793185491, -1.3705983523981795) +description = Coalport borough, PA +station = ('kfig', 0.0055082878632239825) +zone = ('paz017', 0.0044940417579009753) + +[fips4214712] +centroid = (0.69787255431039574, -1.3232911855695808) +description = Coatesville city, PA +station = ('kmqs', 0.00068794570408569722) +zone = ('paz067', 0.00096790879915815086) + +[fips4214760] +centroid = (0.71324150482443727, -1.3519920604677838) +description = Coburn CDP, PA +station = ('kunv', 0.0051101848151182934) +zone = ('paz045', 0.0038718726560083381) + +[fips4214800] +centroid = (0.7246467777006147, -1.3970834619978059) +description = Cochranton borough, PA +station = ('kgkj', 0.0029792550137761856) +zone = ('paz003', 0.0029921035988569539) + +[fips4214808] +centroid = (0.69620841777520415, -1.3251402048324361) +description = Cochranville CDP, PA +station = ('kmqs', 0.0017374601857338223) +zone = ('paz067', 0.0027771242051755967) + +[fips4214896] +centroid = (0.69987622719827014, -1.3974068191483227) +description = Cokeburg borough, PA +station = ('kafj', 0.0029650716799984084) +zone = ('paz029', 0.0028944338268090905) + +[fips4215192] +centroid = (0.70139311030447093, -1.3169821519361793) +description = Collegeville borough, PA +station = ('kptw', 0.0014755363199375838) +zone = ('paz068', 0.0012750234278083483) + +[fips4215232] +centroid = (0.69664930539755043, -1.3138424965980591) +description = Collingdale borough, PA +station = ('kphl', 0.00103218792659206) +zone = ('paz070', 0.0016249643669620066) + +[fips4215248] +centroid = (0.70198844211232636, -1.3924448306316102) +description = Collinsburg CDP, PA +station = ('kagc', 0.0028850430908523407) +zone = ('paz073', 0.0034940606227858795) + +[fips4215328] +centroid = (0.70336271436534659, -1.3405323333189441) +description = Colonial Park CDP, PA +station = ('kcxy', 0.0015592764120296307) +zone = ('paz057', 0.0020540042204974236) + +[fips4215368] +centroid = (0.70417954590857246, -1.32614568901451) +description = Colony Park CDP, PA +station = ('krdg', 0.00041026897331287039) +zone = ('paz060', 0.0014328136219952498) + +[fips4215384] +centroid = (0.69874003530851447, -1.3351051272901127) +description = Columbia borough, PA +station = ('klns', 0.0029804304223108227) +zone = ('paz065', 0.0036794349677373517) + +[fips4215400] +centroid = (0.73212846315184632, -1.3889940878076148) +description = Columbus CDP, PA +station = ('kjhw', 0.0054135710034109346) +zone = ('paz004', 0.0046439730962272883) + +[fips4215416] +centroid = (0.70760286961001928, -1.3751301696141527) +description = Colver CDP, PA +station = ('kjst', 0.0039877227287404412) +zone = ('paz024', 0.0012981579835248337) + +[fips4215432] +centroid = (0.6965924949303981, -1.3134139659068169) +description = Colwyn borough, PA +station = ('kphl', 0.00083107983960540558) +zone = ('paz070', 0.0019553012404324626) + +[fips4215464] +centroid = (0.71061220121289292, -1.3776697633021449) +description = Commodore CDP, PA +station = ('kidi', 0.0026125606373567892) +zone = ('paz023', 0.0023021925485450954) + +[fips4215479] +centroid = (0.72089730432184773, -1.3088727937260527) +description = Conashaugh Lakes CDP, PA +station = ('kmpo', 0.0059318036105547658) +zone = ('paz048', 0.00072138886273424786) + +[fips4215584] +centroid = (0.69709122276415536, -1.3323246083521756) +description = Conestoga CDP, PA +station = ('klns', 0.0031152864054893271) +zone = ('paz066', 0.002140688783510418) + +[fips4215680] +centroid = (0.6948166049632013, -1.3850015773305075) +description = Confluence borough, PA +station = ('k2g4', 0.0040201667842637533) +zone = ('paz076', 0.0025738918390151204) + +[fips4215744] +centroid = (0.72609924070412435, -1.4016657541357469) +description = Conneaut Lake borough, PA +station = ('kgkj', 0.0013263789034272432) +zone = ('paz003', 0.003015520260214258) + +[fips4215755] +centroid = (0.72639947224205248, -1.4016867329933556) +description = Conneaut Lakeshore CDP, PA +station = ('kgkj', 0.0012503276729913921) +zone = ('paz003', 0.0028985575974974989) + +[fips4215760] +centroid = (0.72879586166491817, -1.402694241757362) +description = Conneautville borough, PA +station = ('kgkj', 0.0029268538534965595) +zone = ('paz003', 0.0036397970637248186) + +[fips4215776] +centroid = (0.69840547314419965, -1.3891021760481908) +description = Connellsville city, PA +station = ('klbe', 0.0053127483994113078) +zone = ('paz076', 0.0024086613762966404) + +[fips4215808] +centroid = (0.71239721925207755, -1.3965287090950593) +description = Connoquenessing borough, PA +station = ('kbtp', 0.0010462484349917968) +zone = ('paz014', 0.0021286555089769822) + +[fips4215848] +centroid = (0.69947942659282936, -1.3143045027043545) +description = Conshohocken borough, PA +station = ('klom', 0.0011744606901855203) +zone = ('paz068', 0.0024804054179261323) + +[fips4215872] +centroid = (0.70976170226839608, -1.4004556650054616) +description = Conway borough, PA +station = ('kbvi', 0.0027448661801967567) +zone = ('paz020', 0.001470759753387072) + +[fips4215888] +centroid = (0.71542934485498222, -1.3274886849673346) +description = Conyngham borough, PA +station = ('kavp', 0.0073517914781328899) +zone = ('paz047', 0.0033785353094200844) + +[fips4216056] +centroid = (0.70704111793697233, -1.3158235151122426) +description = Coopersburg borough, PA +station = ('kukt', 0.0013232186672806035) +zone = ('paz061', 0.0032121080568267026) + +[fips4216080] +centroid = (0.72430814891914275, -1.3940577592065484) +description = Cooperstown borough, PA +station = ('kfkl', 0.0020347650548693946) +zone = ('paz008', 0.0022937812015653382) + +[fips4216128] +centroid = (0.70983778117049046, -1.3176458657441275) +description = Coplay borough, PA +station = ('kabe', 0.00070305668833161011) +zone = ('paz061', 0.0016319442541525256) + +[fips4216136] +centroid = (0.70692039351261182, -1.3818682051776949) +description = Coral CDP, PA +station = ('kidi', 0.0024748601390733004) +zone = ('paz023', 0.0028414122744556875) + +[fips4216144] +centroid = (0.70711347928776003, -1.3990877806575033) +description = Coraopolis borough, PA +station = ('kpit', 0.0010949072908471112) +zone = ('paz021', 0.0025273250609525238) + +[fips4216256] +centroid = (0.70267885945783026, -1.3336392252513627) +description = Cornwall borough, PA +station = ('klns', 0.0029207419535241716) +zone = ('paz059', 0.0019589343888595247) + +[fips4216272] +centroid = (0.6994767387857812, -1.308153037395823) +description = Cornwells Heights CDP, PA +station = ('kpne', 0.00087514280165537249) +zone = ('paz071', 0.0027191126013537694) + +[fips4216296] +centroid = (0.73178506962151635, -1.3898597536633115) +description = Corry city, PA +station = ('kjhw', 0.0061275483293940754) +zone = ('paz004', 0.0050687991464333781) + +[fips4216304] +centroid = (0.71875533154404525, -1.3823474900435848) +description = Corsica borough, PA +station = ('kduj', 0.0041948812110480897) +zone = ('paz016', 0.002828821052259416) + +[fips4216448] +centroid = (0.729126025599518, -1.3616367324610119) +description = Coudersport borough, PA +station = ('kelz', 0.0056614198194954914) +zone = ('paz006', 0.0016553622407341814) + +[fips4216568] +centroid = (0.72055619717283803, -1.3249525993911391) +description = Courtdale borough, PA +station = ('kavp', 0.0025176875155114927) +zone = ('paz047', 0.0021190285664694046) + +[fips4216816] +centroid = (0.70448127842965735, -1.387004569539974) +description = Crabtree CDP, PA +station = ('klbe', 0.0016816670962073225) +zone = ('paz073', 0.0014399755025891851) + +[fips4216848] +centroid = (0.70569501529807921, -1.3975042957870467) +description = Crafton borough, PA +station = ('kpit', 0.0023244011033075724) +zone = ('paz021', 0.0013447815797275786) + +[fips4216960] +centroid = (0.73133823042642088, -1.402138232217554) +description = Cranesville borough, PA +station = ('keri', 0.0037287643454121397) +zone = ('paz001', 0.0044334903058289056) + +[fips4217024] +centroid = (0.7100336594724419, -1.382189293400184) +description = Creekside borough, PA +station = ('kidi', 0.001501911435143077) +zone = ('paz023', 0.0014981617668014928) + +[fips4217040] +centroid = (0.71992918763905911, -1.3745235804326223) +description = Crenshaw CDP, PA +station = ('kduj', 0.0020433084600312021) +zone = ('paz010', 0.003373258548045318) + +[fips4217136] +centroid = (0.7062057160905052, -1.371594551428633) +description = Cresson borough, PA +station = ('kjst', 0.0041530261841491237) +zone = ('paz024', 0.0017807805752775999) + +[fips4217152] +centroid = (0.70913415168254901, -1.3298337442568993) +description = Cressona borough, PA +station = ('krdg', 0.0055026116027866558) +zone = ('paz058', 0.0013500253468750956) + +[fips4217320] +centroid = (0.70382842056965622, -1.4034038053647602) +description = Cross Creek CDP, PA +station = ('kpit', 0.0036000251270655792) +zone = ('wvz002', 0.0024131247582103495) + +[fips4217416] +centroid = (0.69499033503694485, -1.3364478788968419) +description = Cross Roads borough, PA +station = ('kthv', 0.0044885700414499432) +zone = ('paz065', 0.0026975906734595656) + +[fips4217440] +centroid = (0.72246052591968912, -1.3834136942303357) +description = Crown CDP, PA +station = ('kduj', 0.0061969638212656768) +zone = ('paz009', 0.0021127241097304368) + +[fips4217448] +centroid = (0.69975532824098452, -1.3072116417038822) +description = Croydon CDP, PA +station = ('kpne', 0.0015973794020113976) +zone = ('njz019', 0.0026608276979639273) + +[fips4217528] +centroid = (0.69722301257597341, -1.3956806885181001) +description = Crucible CDP, PA +station = ('kmgw', 0.0052429172743973709) +zone = ('paz075', 0.0026066416125092411) + +[fips4217680] +centroid = (0.71058918032005902, -1.3289487925129679) +description = Cumbola CDP, PA +station = ('krdg', 0.0064944893721604786) +zone = ('paz058', 0.00097342931928103861) + +[fips4217832] +centroid = (0.70947190779939495, -1.3936313229104085) +description = Curtisville CDP, PA +station = ('kbtp', 0.002685963867586968) +zone = ('paz021', 0.0036107459886471874) + +[fips4217840] +centroid = (0.71510926892345905, -1.3704050397302285) +description = Curwensville borough, PA +station = ('kfig', 0.0019010903370801908) +zone = ('paz017', 0.00075543044422995498) + +[fips4217976] +centroid = (0.70371853463995071, -1.3771277687562304) +description = Daisytown borough, PA +station = ('kjst', 0.00093711000931964033) +zone = ('paz024', 0.0039670203766917498) + +[fips4218000] +centroid = (0.70357691862444383, -1.3771503184101661) +description = Dale borough, PA +station = ('kjst', 0.00095593448813457126) +zone = ('paz024', 0.0040879886585546941) + +[fips4218048] +centroid = (0.72137110885388667, -1.3259765840632844) +description = Dallas borough, PA +station = ('kavp', 0.003139304177502261) +zone = ('paz047', 0.0027016004560634524) + +[fips4218072] +centroid = (0.69637982656104247, -1.3376372160623211) +description = Dallastown borough, PA +station = ('kthv', 0.0032583947614425947) +zone = ('paz065', 0.0011985167113594578) + +[fips4218080] +centroid = (0.7094579102587939, -1.3422320920241688) +description = Dalmatia CDP, PA +station = ('kseg', 0.0029691771975326937) +zone = ('paz050', 0.0030462257185802132) + +[fips4218088] +centroid = (0.72496816262907693, -1.3218817449321327) +description = Dalton borough, PA +station = ('kavp', 0.0035659843181102577) +zone = ('paz044', 0.0024352352327428458) + +[fips4218136] +centroid = (0.71491462980527654, -1.337133304600685) +description = Danville borough, PA +station = ('kseg', 0.0042047646585433793) +zone = ('paz051', 0.001310997039526661) + +[fips4218152] +centroid = (0.69675207038390785, -1.313553679513439) +description = Darby borough, PA +station = ('kphl', 0.0010177317937215542) +zone = ('paz070', 0.0018476450671993322) + +[fips4218192] +centroid = (0.71227166026568911, -1.4036668962962058) +description = Darlington borough, PA +station = ('kbvi', 0.00082365452158122737) +zone = ('paz020', 0.0024414159167063668) + +[fips4218256] +centroid = (0.70617014628034958, -1.3263624589076077) +description = Dauberville CDP, PA +station = ('krdg', 0.0016815113589580086) +zone = ('paz060', 0.0011973673943199772) + +[fips4218272] +centroid = (0.7045592422873439, -1.3426865583080956) +description = Dauphin borough, PA +station = ('kcxy', 0.002853642457969147) +zone = ('paz057', 0.0021707979381241109) + +[fips4218312] +centroid = (0.70222964661495191, -1.3776866406360115) +description = Davidsville CDP, PA +station = ('kjst', 0.0019741682709710239) +zone = ('paz074', 0.0039569373907803228) + +[fips4218360] +centroid = (0.69895505987236017, -1.3902759099701569) +description = Dawson borough, PA +station = ('klbe', 0.0053603092347447789) +zone = ('paz075', 0.0023074568720336188) + +[fips4218400] +centroid = (0.71351145489984324, -1.3830185691409769) +description = Dayton borough, PA +station = ('kidi', 0.0047111997728791297) +zone = ('paz022', 0.0031835304934971016) + +[fips4218496] +centroid = (0.6986076869913358, -1.3968455561674664) +description = Deemston borough, PA +station = ('kafj', 0.0038171602145565349) +zone = ('paz031', 0.003949699750818856) + +[fips4218568] +centroid = (0.69546572781860305, -1.3890995755076054) +description = Deer Lake CDP, PA +station = ('kmgw', 0.0055786595176764656) +zone = ('paz076', 0.0012262560655866886) + +[fips4218576] +centroid = (0.70896372028109167, -1.327443655472633) +description = Deer Lake borough, PA +station = ('krdg', 0.0045914963052588603) +zone = ('paz058', 0.0025788787148446081) + +[fips4218608] +centroid = (0.70092260444471832, -1.3654020708826793) +description = Defiance CDP, PA +station = ('kaoo', 0.0026940581808604465) +zone = ('paz034', 0.0043667146904237683) + +[fips4218664] +centroid = (0.71283473838896749, -1.3278294605037866) +description = Delano CDP, PA +station = ('krdg', 0.0084359141621924393) +zone = ('paz058', 0.0029925275138882922) + +[fips4218736] +centroid = (0.7150242888421795, -1.3113328353067388) +description = Delaware Water Gap borough, PA +station = ('kmpo', 0.0043730198686772097) +zone = ('njz007', 0.0026410415653361327) + +[fips4218768] +centroid = (0.70536448484433656, -1.3888089083739783) +description = Delmont borough, PA +station = ('klbe', 0.0032437610404039891) +zone = ('paz073', 0.0012186443331903822) + +[fips4218800] +centroid = (0.6933618381250789, -1.332159744551032) +description = Delta borough, PA +station = ('kapg', 0.0050254929588071703) +zone = ('mdz007', 0.0027066577038839384) + +[fips4218888] +centroid = (0.70221790054908595, -1.3289139906476832) +description = Denver borough, PA +station = ('klns', 0.0029477331790572752) +zone = ('paz066', 0.0036356030197526295) + +[fips4218960] +centroid = (0.70395116957594894, -1.384065016200595) +description = Derry borough, PA +station = ('klbe', 0.0015804215138386676) +zone = ('paz074', 0.0019126198821385559) + +[fips4218998] +centroid = (0.70753431307700088, -1.3155900424182034) +description = DeSales University CDP, PA +station = ('kukt', 0.0018111737265517128) +zone = ('paz061', 0.0031260567854922306) + +[fips4219040] +centroid = (0.69898598710670545, -1.3164458646169188) +description = Devon CDP, PA +station = ('klom', 0.0026561568201310241) +zone = ('paz070', 0.0023378785691734599) + +[fips4219048] +centroid = (0.7175037559374402, -1.3416460453679342) +description = Dewart CDP, PA +station = ('kipt', 0.0025181695157026618) +zone = ('paz046', 0.0021559930669405284) + +[fips4219160] +centroid = (0.72375922541609805, -1.3200940216326076) +description = Dickson City borough, PA +station = ('kavp', 0.0026800799096887849) +zone = ('paz044', 0.00064852851952133068) + +[fips4219161] +centroid = (0.71063122530173961, -1.3789942936714834) +description = Dicksonville CDP, PA +station = ('kidi', 0.0018687234434070594) +zone = ('paz023', 0.0015124758239503549) + +[fips4219208] +centroid = (0.7000568687758516, -1.3444880697087116) +description = Dillsburg borough, PA +station = ('kcxy', 0.0030717942869857135) +zone = ('paz063', 0.0032278358872793473) + +[fips4219432] +centroid = (0.70923799877304261, -1.3335320794885828) +description = Donaldson CDP, PA +station = ('kmui', 0.0041364053834031158) +zone = ('paz058', 0.0027899453465299131) + +[fips4219472] +centroid = (0.70008676626593835, -1.3854559039880943) +description = Donegal borough, PA +station = ('klbe', 0.0030009969484211248) +zone = ('paz074', 0.0029446043261705077) + +[fips4219536] +centroid = (0.70126507295054474, -1.3938619681710596) +description = Donora borough, PA +station = ('kagc', 0.0030617752138964128) +zone = ('paz075', 0.0042099373825751404) + +[fips4219576] +centroid = (0.70500910090204549, -1.3969215303498055) +description = Dormont borough, PA +station = ('kagc', 0.0017836394834794256) +zone = ('paz021', 0.0015052663363314283) + +[fips4219584] +centroid = (0.70817530269808837, -1.3180511486497331) +description = Dorneyville CDP, PA +station = ('kxll', 0.0003930911873531222) +zone = ('paz061', 0.0011744590406275505) + +[fips4219680] +centroid = (0.70265962592947317, -1.3216407149624323) +description = Douglassville CDP, PA +station = ('kptw', 0.0023679789462381809) +zone = ('paz060', 0.0038335610605191341) + +[fips4219696] +centroid = (0.69818933156963259, -1.3412581459416786) +description = Dover borough, PA +station = ('kthv', 0.0015825210800318528) +zone = ('paz065', 0.0021862024789581669) + +[fips4219752] +centroid = (0.69827637113942964, -1.3212519952314281) +description = Downingtown borough, PA +station = ('kmqs', 0.0022978435255250661) +zone = ('paz067', 0.00086806120047864188) + +[fips4219784] +centroid = (0.70361547294762039, -1.3112256720906663) +description = Doylestown borough, PA +station = ('kdyl', 0.00036481948124406039) +zone = ('paz069', 0.00048626218118289529) + +[fips4219856] +centroid = (0.70425459506640831, -1.394354046300367) +description = Dravosburg borough, PA +station = ('kagc', 0.0003469820970824782) +zone = ('paz021', 0.0023853602344455363) + +[fips4219920] +centroid = (0.69725032697876721, -1.3143006455267077) +description = Drexel Hill CDP, PA +station = ('kphl', 0.0017268981708819498) +zone = ('paz070', 0.0013958031934597605) + +[fips4219976] +centroid = (0.72157613268111842, -1.3635413404605432) +description = Driftwood borough, PA +station = ('kfig', 0.0063917226001775828) +zone = ('paz011', 0.0019300534928428149) + +[fips4220080] +centroid = (0.69708226922509264, -1.3964296442067161) +description = Dry Tavern CDP, PA +station = ('kafj', 0.0049787713144942708) +zone = ('paz031', 0.00322798711121781) + +[fips4220096] +centroid = (0.70618782646567224, -1.3221681360090924) +description = Dryville CDP, PA +station = ('krdg', 0.0032682852732278823) +zone = ('paz060', 0.0024088337285134744) + +[fips4220104] +centroid = (0.70471017836105632, -1.312591427136937) +description = Dublin borough, PA +station = ('kdyl', 0.0014102402966065589) +zone = ('paz069', 0.0014925835632894275) + +[fips4220136] +centroid = (0.71771898994079608, -1.3745541935077021) +description = DuBois city, PA +station = ('kduj', 0.0019822316341986529) +zone = ('paz016', 0.0032009157613913553) + +[fips4220144] +centroid = (0.71948013187581339, -1.3445658241268881) +description = Duboistown borough, PA +station = ('kipt', 0.0016592016107608994) +zone = ('paz046', 0.0016063097888548027) + +[fips4220152] +centroid = (0.70171498392512377, -1.3644688258783455) +description = Dudley borough, PA +station = ('kaoo', 0.0024755196977997505) +zone = ('paz026', 0.0045312795433919686) + +[fips4220216] +centroid = (0.69776006784010469, -1.3895381592953389) +description = Dunbar borough, PA +station = ('klbe', 0.0060393539515634816) +zone = ('paz076', 0.0020358813361948942) + +[fips4220240] +centroid = (0.70502885802917803, -1.344387503837212) +description = Duncannon borough, PA +station = ('kcxy', 0.0039118963033931177) +zone = ('paz056', 0.0031170780525021872) + +[fips4220248] +centroid = (0.70557217902532376, -1.3688662701952079) +description = Duncansville borough, PA +station = ('kaoo', 0.0026724132713001687) +zone = ('paz025', 0.0014482222819280513) + +[fips4220328] +centroid = (0.70004407551243453, -1.3937978447743413) +description = Dunlevy borough, PA +station = ('kagc', 0.0042666902169109797) +zone = ('paz075', 0.0030418350360421932) + +[fips4220336] +centroid = (0.70325312514161387, -1.3738840394348142) +description = Dunlo CDP, PA +station = ('kjst', 0.0015908645021866594) +zone = ('paz024', 0.0035253698432987676) + +[fips4220352] +centroid = (0.72281042952812891, -1.319578137212303) +description = Dunmore borough, PA +station = ('kavp', 0.0021798031441942331) +zone = ('paz044', 0.00040349371295653842) + +[fips4220416] +centroid = (0.71820422637943548, -1.3512461067454813) +description = Dunnstown CDP, PA +station = ('kunv', 0.0077074800340885003) +zone = ('paz045', 0.0013418596194716915) + +[fips4220424] +centroid = (0.7212342575872378, -1.3219487830287018) +description = Dupont borough, PA +station = ('kavp', 0.00020384250226030543) +zone = ('paz044', 0.0026344415343886487) + +[fips4220432] +centroid = (0.7046498248755223, -1.3936482351508603) +description = Duquesne city, PA +station = ('kagc', 0.00097462792058147687) +zone = ('paz021', 0.002408389918954605) + +[fips4220512] +centroid = (0.7218044392005718, -1.3224914931596092) +description = Duryea borough, PA +station = ('kavp', 0.00065875806560602654) +zone = ('paz044', 0.0025672515340020331) + +[fips4220528] +centroid = (0.72476546008975029, -1.3334055780243981) +description = Dushore borough, PA +station = ('kipt', 0.0083210041800631743) +zone = ('paz042', 0.0020365292196710726) + +[fips4220634] +centroid = (0.72047229919569467, -1.3172497283638023) +description = Eagle Lake CDP, PA +station = ('kmpo', 0.0028171337831695313) +zone = ('paz044', 0.0032706250121417252) + +[fips4220648] +centroid = (0.72273813799051123, -1.3366270543978518) +description = Eagles Mere borough, PA +station = ('kipt', 0.0051861663163294287) +zone = ('paz042', 0.0011251969242095348) + +[fips4220662] +centroid = (0.699168007494396, -1.3208785296780863) +description = Eagleview CDP, PA +station = ('kmqs', 0.0028838900500251156) +zone = ('paz067', 0.0017526691523452071) + +[fips4220664] +centroid = (0.71656215080598917, -1.3541192328535294) +description = Eagleville CDP, PA +station = ('kunv', 0.0050097626347806673) +zone = ('paz045', 0.0027038044820224018) + +[fips4220672] +centroid = (0.70093108674488303, -1.3161353356364041) +description = Eagleville CDP, PA +station = ('kptw', 0.0022702448848492545) +zone = ('paz068', 0.0010429274638268412) + +[fips4220704] +centroid = (0.69820292768450565, -1.3678705074970674) +description = Earlston CDP, PA +station = ('kaoo', 0.0052195456090985163) +zone = ('paz034', 0.0015646914745195946) + +[fips4220776] +centroid = (0.71350546842050888, -1.3122695709695766) +description = East Bangor borough, PA +station = ('kmpo', 0.0051059234601528959) +zone = ('njz007', 0.0025474770225152122) + +[fips4220792] +centroid = (0.69702915885595451, -1.3435450159539817) +description = East Berlin borough, PA +station = ('kthv', 0.0013338346135754319) +zone = ('paz065', 0.0033984740396748665) + +[fips4220800] +centroid = (0.71680155761948527, -1.3302430588730769) +description = East Berwick CDP, PA +station = ('kavp', 0.0078462390494786188) +zone = ('paz053', 0.0024999396010803791) + +[fips4220840] +centroid = (0.71526985666793497, -1.3894619582201968) +description = East Brady borough, PA +station = ('kbtp', 0.0056664267247359037) +zone = ('paz022', 0.0035278995419015954) + +[fips4220904] +centroid = (0.71347031748937373, -1.3935975333360899) +description = East Butler borough, PA +station = ('kbtp', 0.0021492769346370109) +zone = ('paz014', 0.0010398363831496163) + +[fips4220992] +centroid = (0.70419898887643972, -1.3768216903653083) +description = East Conemaugh borough, PA +station = ('kjst', 0.00088565893960650046) +zone = ('paz024', 0.0034501131465640104) + +[fips4221064] +centroid = (0.70005454748794649, -1.3269031968164606) +description = East Earl CDP, PA +station = ('kmqs', 0.0030827655039044229) +zone = ('paz066', 0.0031889200429831874) + +[fips4221176] +centroid = (0.70436826836059063, -1.3689765226440562) +description = East Freedom CDP, PA +station = ('kaoo', 0.0018832537395354642) +zone = ('paz025', 0.0024593008248649153) + +[fips4221200] +centroid = (0.7052126935592905, -1.3178307484717913) +description = East Greenville borough, PA +station = ('kukt', 0.001731115293773348) +zone = ('paz061', 0.0037929688862043498) + +[fips4221384] +centroid = (0.69715381027113188, -1.3135487576849485) +description = East Lansdowne borough, PA +station = ('kphl', 0.0013984322129099696) +zone = ('paz070', 0.0019098769822130874) + +[fips4221400] +centroid = (0.71120695706209491, -1.3140646944651304) +description = Eastlawn Gardens CDP, PA +station = ('kabe', 0.0027307576955788926) +zone = ('paz062', 0.00024250790452679154) + +[fips4221444] +centroid = (0.70484800701208639, -1.3929024385081905) +description = East McKeesport borough, PA +station = ('kagc', 0.0015745687892237531) +zone = ('paz021', 0.0027347165928352695) + +[fips4221648] +centroid = (0.71010415332092991, -1.3128113211693957) +description = Easton city, PA +station = ('kabe', 0.0031276867947053026) +zone = ('paz062', 0.0016743987328546968) + +[fips4221688] +centroid = (0.69993567311259319, -1.3325543285883228) +description = East Petersburg borough, PA +station = ('klns', 0.00070338539058478115) +zone = ('paz066', 0.0017289387802196844) + +[fips4221712] +centroid = (0.7050585286264619, -1.3934391447064716) +description = East Pittsburgh borough, PA +station = ('kagc', 0.0013260721282980278) +zone = ('paz021', 0.002277195488456923) + +[fips4221728] +centroid = (0.69762574730087112, -1.3355503607822965) +description = East Prospect borough, PA +station = ('klns', 0.0039004586726572909) +zone = ('paz065', 0.0028857285912424245) + +[fips4221752] +centroid = (0.71031760708844871, -1.4009580405773556) +description = East Rochester borough, PA +station = ('kbvi', 0.0021048469297329474) +zone = ('paz020', 0.0010985388270133604) + +[fips4221786] +centroid = (0.70460915870395091, -1.354457442755981) +description = East Rutherford CDP, PA +station = ('kunv', 0.0089675635451807213) +zone = ('paz028', 0.0038784360090986384) + +[fips4221792] +centroid = (0.70875571194083897, -1.3480390467916492) +description = East Salem CDP, PA +station = ('kseg', 0.0060966861266088723) +zone = ('paz028', 0.0025735475031605816) + +[fips4221816] +centroid = (0.7166737820649467, -1.3222993673155499) +description = East Side borough, PA +station = ('kavp', 0.0047441174506271571) +zone = ('paz054', 0.0026111754075094358) + +[fips4221872] +centroid = (0.71566140383232746, -1.3120532025022069) +description = East Stroudsburg borough, PA +station = ('kmpo', 0.003545774097823755) +zone = ('paz055', 0.0023581873210707332) + +[fips4221960] +centroid = (0.69631605223017468, -1.3909864509619363) +description = East Uniontown CDP, PA +station = ('kmgw', 0.005202041601613307) +zone = ('paz075', 0.0013511227169870884) + +[fips4221968] +centroid = (0.71151174390937078, -1.4017574537346464) +description = Eastvale borough, PA +station = ('kbvi', 0.0011264179831159571) +zone = ('paz020', 0.0015408432190070914) + +[fips4221976] +centroid = (0.70855894352096915, -1.3886347070613365) +description = East Vandergrift borough, PA +station = ('klbe', 0.0058937774370279522) +zone = ('paz022', 0.0039729678292572297) + +[fips4222016] +centroid = (0.70117616587844822, -1.4003201750956293) +description = East Washington borough, PA +station = ('kafj', 0.00098772098206818706) +zone = ('paz029', 0.00033526758267255245) + +[fips4222104] +centroid = (0.69758508112929962, -1.3382469119299201) +description = East York CDP, PA +station = ('kthv', 0.0029203940826590942) +zone = ('paz065', 0.0010877921619277451) + +[fips4222128] +centroid = (0.71797302261342377, -1.3927471042047632) +description = Eau Claire borough, PA +station = ('kfkl', 0.0043942886534537248) +zone = ('paz014', 0.0042083311161101944) + +[fips4222144] +centroid = (0.70665100194256658, -1.3740373491563092) +description = Ebensburg borough, PA +station = ('kjst', 0.0033119778603093657) +zone = ('paz024', 0.00021365562497636123) + +[fips4222264] +centroid = (0.70934601720044854, -1.3995129952231669) +description = Economy borough, PA +station = ('kpit', 0.0028480069011214831) +zone = ('paz020', 0.0022683007923213765) + +[fips4222280] +centroid = (0.69964127097436679, -1.3080288746728361) +description = Eddington CDP, PA +station = ('kpne', 0.00096478956599704748) +zone = ('paz071', 0.0028793144490819695) + +[fips4222296] +centroid = (0.69559833793516956, -1.3148805660772678) +description = Eddystone borough, PA +station = ('kphl', 0.0014054953589936066) +zone = ('paz070', 0.0013610251962345777) + +[fips4222344] +centroid = (0.6960726137061064, -1.3943007264917184) +description = Edenborn CDP, PA +station = ('kmgw', 0.0040683650569760862) +zone = ('paz075', 0.0019357105225822257) + +[fips4222352] +centroid = (0.70800174715726993, -1.3257458864427556) +description = Edenburg CDP, PA +station = ('krdg', 0.0034717582931605888) +zone = ('paz060', 0.0026405313889216681) + +[fips4222520] +centroid = (0.7056592360484133, -1.3942382786110821) +description = Edgewood borough, PA +station = ('kagc', 0.001483965898332716) +zone = ('paz021', 0.0014477900544731818) + +[fips4222528] +centroid = (0.71188929353316222, -1.3365386709245306) +description = Edgewood CDP, PA +station = ('kseg', 0.0038455191026338076) +zone = ('paz052', 0.0020579393816461933) + +[fips4222576] +centroid = (0.70780817268993124, -1.3996202806122868) +description = Edgeworth borough, PA +station = ('kpit', 0.0013547187956751108) +zone = ('paz020', 0.0030505266016791722) + +[fips4222600] +centroid = (0.69963830391463844, -1.381042350282236) +description = Edie CDP, PA +station = ('klbe', 0.0049986581733636468) +zone = ('paz033', 0.0023912654800743471) + +[fips4222608] +centroid = (0.73085625775348262, -1.3984319033778965) +description = Edinboro borough, PA +station = ('keri', 0.0037164003269663883) +zone = ('paz002', 0.0021909029412672098) + +[fips4222672] +centroid = (0.72009923506808093, -1.3248760667034392) +description = Edwardsville borough, PA +station = ('kavp', 0.0026559536461976574) +zone = ('paz047', 0.0017603790410768425) + +[fips4222680] +centroid = (0.71456484836988443, -1.3166359484257537) +description = Effort CDP, PA +station = ('kmpo', 0.0034228671789175978) +zone = ('paz055', 0.0024126729381499911) + +[fips4222696] +centroid = (0.71009207564250609, -1.3182999802411899) +description = Egypt CDP, PA +station = ('kabe', 0.0012598347518536666) +zone = ('paz061', 0.0014879478111623648) + +[fips4222712] +centroid = (0.70467727890465626, -1.3749217947547572) +description = Ehrenfeld borough, PA +station = ('kjst', 0.0012629245661143185) +zone = ('paz024', 0.0022643945248348543) + +[fips4222736] +centroid = (0.70123311597194071, -1.3985375307042271) +description = Eighty Four CDP, PA +station = ('kafj', 0.0021833292738523994) +zone = ('paz029', 0.0015853151216700433) + +[fips4222800] +centroid = (0.69955981645817622, -1.3941981709448712) +description = Elco borough, PA +station = ('kagc', 0.0047037177064736665) +zone = ('paz075', 0.0027516667341853721) + +[fips4222832] +centroid = (0.71025381530428844, -1.3847804964741575) +description = Elderton borough, PA +station = ('kidi', 0.0033782748776602831) +zone = ('paz022', 0.0026187743405805663) + +[fips4222888] +centroid = (0.73227362218573466, -1.3679796952950722) +description = Eldred borough, PA +station = ('kbfd', 0.0042795973725234622) +zone = ('paz005', 0.0035739728989887623) + +[fips4222960] +centroid = (0.73141533907277401, -1.3918391490212907) +description = Elgin borough, PA +station = ('keri', 0.0064479289891163994) +zone = ('paz002', 0.0036426449646818682) + +[fips4222976] +centroid = (0.70331887169453655, -1.377856810238081) +description = Elim CDP, PA +station = ('kjst', 0.001529509606375544) +zone = ('paz024', 0.0046322270654129286) + +[fips4222992] +centroid = (0.70287121219469251, -1.3942938498944655) +description = Elizabeth borough, PA +station = ('kagc', 0.0014243719973448911) +zone = ('paz021', 0.0036626969580967911) + +[fips4223016] +centroid = (0.70080701128835876, -1.3368986799893396) +description = Elizabethtown borough, PA +station = ('kmdt', 0.0023842781057624237) +zone = ('paz059', 0.0041789531575333137) + +[fips4223024] +centroid = (0.70768264861012786, -1.3406918389592839) +description = Elizabethville borough, PA +station = ('kmui', 0.0038604559176038853) +zone = ('paz057', 0.0023503907237567502) + +[fips4223152] +centroid = (0.73284205846981665, -1.3494031437751306) +description = Elkland borough, PA +station = ('kelm', 0.0062095660354082854) +zone = ('paz037', 0.0038630479480178557) + +[fips4223280] +centroid = (0.71316985905864294, -1.4008381364577436) +description = Ellport borough, PA +station = ('kbvi', 0.0024625345926835326) +zone = ('paz013', 0.0024532078448955292) + +[fips4223296] +centroid = (0.69997040516470788, -1.3966573573142238) +description = Ellsworth borough, PA +station = ('kafj', 0.0035143787438741158) +zone = ('paz029', 0.0033485493390326662) + +[fips4223304] +centroid = (0.71317612479065751, -1.4012011649421583) +description = Ellwood City borough, PA +station = ('kbvi', 0.0022714540296164599) +zone = ('paz013', 0.0023545029631414048) + +[fips4223392] +centroid = (0.70252537520340985, -1.3949418731924386) +description = Elrama CDP, PA +station = ('kagc', 0.0017179711031091317) +zone = ('paz021', 0.0038633129092329995) + +[fips4223440] +centroid = (0.70081137461148879, -1.3235060006939163) +description = Elverson borough, PA +station = ('kmqs', 0.0030725155029753498) +zone = ('paz067', 0.0033353686100609211) + +[fips4223472] +centroid = (0.71328098417211738, -1.3360348816359424) +description = Elysburg CDP, PA +station = ('kseg', 0.0042868681814096886) +zone = ('paz052', 0.0021295903272225913) + +[fips4223540] +centroid = (0.71705374024310586, -1.3162391478203126) +description = Emerald Lakes CDP, PA +station = ('kmpo', 0.00095374227451747076) +zone = ('paz055', 0.0010923935887757693) + +[fips4223560] +centroid = (0.69830337138295795, -1.339162529108809) +description = Emigsville CDP, PA +station = ('kthv', 0.0026347591029604674) +zone = ('paz065', 0.0015698767097715252) + +[fips4223568] +centroid = (0.71873086202793224, -1.3911766394905263) +description = Emlenton borough, PA +station = ('kfkl', 0.0041066503135565478) +zone = ('paz008', 0.003907093476945114) + +[fips4223584] +centroid = (0.70747249351489516, -1.317686636635454) +description = Emmaus borough, PA +station = ('kxll', 0.00061651156021159351) +zone = ('paz061', 0.0018465244757634525) + +[fips4223600] +centroid = (0.72449303164680656, -1.3654420912824277) +description = Emporium borough, PA +station = ('kbfd', 0.0072565076998682395) +zone = ('paz011', 0.0013440490055585711) + +[fips4223616] +centroid = (0.70704809925398027, -1.3979427050418549) +description = Emsworth borough, PA +station = ('kpit', 0.0018822315765626111) +zone = ('paz021', 0.0016940983061480258) + +[fips4223688] +centroid = (0.71177073331707419, -1.3307246301202873) +description = Englewood CDP, PA +station = ('kmui', 0.0074225194094057591) +zone = ('paz058', 0.00137302626552835) + +[fips4223704] +centroid = (0.70218828231167962, -1.3408560046287263) +description = Enhaut CDP, PA +station = ('kcxy', 0.00042801408571119145) +zone = ('paz057', 0.0032538367188394922) + +[fips4223720] +centroid = (0.7060206239233312, -1.400317382568826) +description = Enlow CDP, PA +station = ('kpit', 0.00054701511560891218) +zone = ('paz021', 0.0033470074012761724) + +[fips4223744] +centroid = (0.70314269815984021, -1.3427728648396069) +description = Enola CDP, PA +station = ('kcxy', 0.0016733543710851344) +zone = ('paz057', 0.0030541435162149341) + +[fips4223768] +centroid = (0.71306726860521064, -1.4042264139478102) +description = Enon Valley borough, PA +station = ('kbvi', 0.0017231343098120537) +zone = ('paz013', 0.0028599977272110539) + +[fips4223832] +centroid = (0.70128814620325608, -1.3295950355751038) +description = Ephrata borough, PA +station = ('klns', 0.0019519051216366349) +zone = ('paz066', 0.0025790103387001947) + +[fips4224000] +centroid = (0.73507323502568866, -1.3975462709555571) +description = Erie city, PA +station = ('keri', 0.0015362006035980831) +zone = ('paz001', 0.00070899955255136901) + +[fips4224040] +centroid = (0.70998063636976616, -1.3817034286430139) +description = Ernest borough, PA +station = ('kidi', 0.0011793178856874184) +zone = ('paz023', 0.0011368985929914033) + +[fips4224088] +centroid = (0.71567294045868302, -1.3337321291274462) +description = Espy CDP, PA +station = ('kseg', 0.0067787897173900123) +zone = ('paz053', 0.00077658624460962759) + +[fips4224160] +centroid = (0.70677382076202933, -1.3953843316111119) +description = Etna borough, PA +station = ('kagc', 0.0025710541194441318) +zone = ('paz021', 0.00062227297161649982) + +[fips4224240] +centroid = (0.70144670936579978, -1.3165856305834185) +description = Evansburg CDP, PA +station = ('kptw', 0.0017120947328302166) +zone = ('paz068', 0.00097260150570396028) + +[fips4224248] +centroid = (0.71154452119272327, -1.3972820804666828) +description = Evans City borough, PA +station = ('kbtp', 0.0014554732190625085) +zone = ('paz014', 0.0031513346696639675) + +[fips4224304] +centroid = (0.69832171479339633, -1.3675525608672316) +description = Everett borough, PA +station = ('kaoo', 0.0050718034052157921) +zone = ('paz034', 0.0018090736839594154) + +[fips4224336] +centroid = (0.69970878030983386, -1.3890557851966727) +description = Everson borough, PA +station = ('klbe', 0.0041907657538172733) +zone = ('paz075', 0.0034970274281422866) + +[fips4224392] +centroid = (0.72140879051243723, -1.3233369481025681) +description = Exeter borough, PA +station = ('kavp', 0.0011570646201900024) +zone = ('paz047', 0.0035037308978560378) + +[fips4224432] +centroid = (0.70540818788880644, -1.3896846098728739) +description = Export borough, PA +station = ('klbe', 0.0037733888543392911) +zone = ('paz073', 0.0014158334830708754) + +[fips4224440] +centroid = (0.69863910291787157, -1.3200086052190148) +description = Exton CDP, PA +station = ('kmqs', 0.0033090190559439351) +zone = ('paz067', 0.0018466916794883123) + +[fips4224448] +centroid = (0.71726539632149522, -1.3355217548358562) +description = Eyers Grove CDP, PA +station = ('kseg', 0.0066875966589823813) +zone = ('paz053', 0.0017218003340907907) + +[fips4224488] +centroid = (0.72536506795427302, -1.3226435462440431) +description = Factoryville borough, PA +station = ('kavp', 0.0040129145761310546) +zone = ('paz044', 0.0031195185255325272) + +[fips4224536] +centroid = (0.69507995769403463, -1.3919696821960474) +description = Fairchance borough, PA +station = ('kmgw', 0.0037565539245738126) +zone = ('paz075', 0.00216607333551654) + +[fips4224544] +centroid = (0.69621395046893297, -1.3957049136881179) +description = Fairdale CDP, PA +station = ('kmgw', 0.0042471037968285314) +zone = ('paz075', 0.0028170264372484291) + +[fips4224560] +centroid = (0.69444942259516662, -1.3503578737825563) +description = Fairfield borough, PA +station = ('kryt', 0.00130895303380779) +zone = ('paz064', 0.00249352894705261) + +[fips4224664] +centroid = (0.70014111581884542, -1.3934506289729496) +description = Fairhope CDP, PA +station = ('kagc', 0.0042283672891432521) +zone = ('paz075', 0.0030431268706898541) + +[fips4224712] +centroid = (0.70123257491987256, -1.3063957002785749) +description = Fairless Hills CDP, PA +station = ('kttn', 0.0018999923235553857) +zone = ('njz015', 0.0027138835460487542) + +[fips4224832] +centroid = (0.71585717741452359, -1.3917805408650086) +description = Fairview borough, PA +station = ('kbtp', 0.0048866198642155334) +zone = ('paz014', 0.0028808030931030525) + +[fips4224856] +centroid = (0.73345273172179704, -1.4007002729001286) +description = Fairview CDP, PA +station = ('keri', 0.0013875744479276348) +zone = ('paz001', 0.0021635275729733291) + +[fips4224948] +centroid = (0.71175821930633731, -1.3364919659137473) +description = Fairview-Ferndale CDP, PA +station = ('kseg', 0.0038997140045349283) +zone = ('paz052', 0.0021605433696463782) + +[fips4225136] +centroid = (0.71806264527051378, -1.3754406985946677) +description = Falls Creek borough, PA +station = ('kduj', 0.0012364633008456428) +zone = ('paz016', 0.0025426680950991929) + +[fips4225152] +centroid = (0.71081565424379789, -1.4017390056044527) +description = Fallston borough, PA +station = ('kbvi', 0.0013367664963110605) +zone = ('paz020', 0.00090720183718540049) + +[fips4225168] +centroid = (0.70035451722648678, -1.3388022407913196) +description = Falmouth CDP, PA +station = ('kmdt', 0.0014918491892734666) +zone = ('paz065', 0.0036295164786058101) + +[fips4225248] +centroid = (0.7002999931406545, -1.3291047900415114) +description = Farmersville CDP, PA +station = ('klns', 0.001978410080117083) +zone = ('paz066', 0.0019156898738991641) + +[fips4225280] +centroid = (0.69478382767984881, -1.3886353004732823) +description = Farmington CDP, PA +station = ('k2g4', 0.0049824341932216557) +zone = ('paz076', 0.0015513168625353991) + +[fips4225360] +centroid = (0.71927222825531589, -1.4049353317833853) +description = Farrell city, PA +station = ('kyng', 0.0023290971870433782) +zone = ('ohz023', 0.0039223605341928737) + +[fips4225416] +centroid = (0.69343976707618049, -1.3343411268633447) +description = Fawn Grove borough, PA +station = ('kapg', 0.0060039995635906311) +zone = ('mdz006', 0.0043614544203277933) + +[fips4225420] +centroid = (0.72458778557189729, -1.3099426281976478) +description = Fawn Lake Forest CDP, PA +station = ('kmsv', 0.0046191024999211964) +zone = ('paz048', 0.0032177401581070242) + +[fips4225424] +centroid = (0.72004739878929658, -1.3435045068620428) +description = Faxon CDP, PA +station = ('kipt', 0.0007996375308101793) +zone = ('paz046', 0.00093256530292197212) + +[fips4225456] +centroid = (0.69989444843566095, -1.3934149195364538) +description = Fayette City borough, PA +station = ('kagc', 0.004474343500679376) +zone = ('paz075', 0.0027997557815764833) + +[fips4225464] +centroid = (0.69659211095796258, -1.3537764676417303) +description = Fayetteville CDP, PA +station = ('kryt', 0.0036571228062456614) +zone = ('paz036', 0.0020997572898355213) + +[fips4225496] +centroid = (0.70081952529909564, -1.3088496855667564) +description = Feasterville CDP, PA +station = ('kpne', 0.0012780823597038197) +zone = ('paz071', 0.0031838449830945519) + +[fips4225568] +centroid = (0.70134671945295302, -1.3932437900032957) +description = Fellsburg CDP, PA +station = ('kagc', 0.0031304048356661416) +zone = ('paz075', 0.0041793865560955752) + +[fips4225584] +centroid = (0.6956378870960197, -1.3362438848138687) +description = Felton borough, PA +station = ('kthv', 0.0044383320049814498) +zone = ('paz065', 0.0024708203510367174) + +[fips4225680] +centroid = (0.70320252804659855, -1.3774106168148086) +description = Ferndale borough, PA +station = ('kjst', 0.0012381506732697467) +zone = ('paz024', 0.0045053727532132874) + +[fips4225744] +centroid = (0.71561941121052453, -1.3347830791365345) +description = Fernville CDP, PA +station = ('kseg', 0.006067806703024709) +zone = ('paz053', 0.0012517912851686369) + +[fips4225752] +centroid = (0.71022470321236508, -1.3985690338972256) +description = Fernway CDP, PA +station = ('kbtp', 0.002879555176238952) +zone = ('paz020', 0.0028803951881299318) + +[fips4225944] +centroid = (0.70254328228153518, -1.3962988666858642) +description = Finleyville borough, PA +station = ('kagc', 0.0020423474232837175) +zone = ('paz029', 0.0034619795884992511) + +[fips4226232] +centroid = (0.70126029074839424, -1.3274321537528624) +description = Fivepointville CDP, PA +station = ('klns', 0.0034303092651909086) +zone = ('paz066', 0.0034978980371407364) + +[fips4226280] +centroid = (0.70609918119296344, -1.3233361976109896) +description = Fleetwood borough, PA +station = ('krdg', 0.0024851401130652627) +zone = ('paz060', 0.0015537278539638035) + +[fips4226296] +centroid = (0.71780487759328671, -1.3521106206838716) +description = Flemington borough, PA +station = ('kunv', 0.0069596844016652903) +zone = ('paz045', 0.0014331063066000144) + +[fips4226328] +centroid = (0.69743011334501515, -1.3482378921533289) +description = Flora Dale CDP, PA +station = ('kryt', 0.0046917227088398251) +zone = ('paz064', 0.0015941238865208904) + +[fips4226376] +centroid = (0.69996778717082997, -1.3126077285121507) +description = Flourtown CDP, PA +station = ('klom', 0.00095886598919000642) +zone = ('paz071', 0.0019633891009707707) + +[fips4226397] +centroid = (0.70295123554089645, -1.3249518663528534) +description = Flying Hills CDP, PA +station = ('krdg', 0.0017276527117404516) +zone = ('paz060', 0.0024530858549497913) + +[fips4226408] +centroid = (0.69619244801254843, -1.3138228790972666) +description = Folcroft borough, PA +station = ('kphl', 0.00069627816935148145) +zone = ('paz070', 0.0017103940231709164) + +[fips4226432] +centroid = (0.69625339491002802, -1.3147332253818143) +description = Folsom CDP, PA +station = ('kphl', 0.0013534091634619791) +zone = ('paz070', 0.0010329273650498383) + +[fips4226488] +centroid = (0.70542937618592561, -1.3694085090872175) +description = Foot of Ten CDP, PA +station = ('kaoo', 0.0028199278328509877) +zone = ('paz025', 0.0018593876170498126) + +[fips4226504] +centroid = (0.72011099858723937, -1.3701543231831796) +description = Force CDP, PA +station = ('kfig', 0.0038296004987770135) +zone = ('paz010', 0.0034653888932885189) + +[fips4226512] +centroid = (0.71156401652046797, -1.3881126965353576) +description = Ford City borough, PA +station = ('kidi', 0.0062034034967846661) +zone = ('paz022', 0.00117452005287886) + +[fips4226520] +centroid = (0.7114103926397074, -1.3881609723424677) +description = Ford Cliff borough, PA +station = ('kidi', 0.006180623996257603) +zone = ('paz022', 0.0013041033457076732) + +[fips4226560] +centroid = (0.72697660026580935, -1.3171865648981727) +description = Forest City borough, PA +station = ('kavp', 0.0065565543827002699) +zone = ('paz040', 0.0031929019316106312) + +[fips4226592] +centroid = (0.70555083364857196, -1.3937234064817436) +description = Forest Hills borough, PA +station = ('kagc', 0.0015495256242190236) +zone = ('paz021', 0.0018480956719042515) + +[fips4226704] +centroid = (0.71024018428283031, -1.3315493680050245) +description = Forestville CDP, PA +station = ('kmui', 0.0058230488058028064) +zone = ('paz058', 0.0010297499280496961) + +[fips4226760] +centroid = (0.72413035222824207, -1.3369717918317054) +description = Forksville borough, PA +station = ('kipt', 0.0058639073660879844) +zone = ('paz042', 0.0014120763401324673) + +[fips4226812] +centroid = (0.70592267604570935, -1.3367056640273616) +description = Fort Indiantown Gap CDP, PA +station = ('kmui', 0.0003594439281364037) +zone = ('paz059', 0.002211404678844558) + +[fips4226824] +centroid = (0.69676872082497188, -1.359737779328257) +description = Fort Loudon CDP, PA +station = ('khgr', 0.0045206273799544274) +zone = ('paz035', 0.0027468200839133919) + +[fips4226872] +centroid = (0.70058861823905683, -1.3123580417093603) +description = Fort Washington CDP, PA +station = ('klom', 0.0009680043714115614) +zone = ('paz071', 0.0024532543345574787) + +[fips4226880] +centroid = (0.72053525322181411, -1.3242149010761988) +description = Forty Fort borough, PA +station = ('kavp', 0.0020134513452094321) +zone = ('paz047', 0.0024099667037643991) + +[fips4226960] +centroid = (0.7327491720470255, -1.371871796980312) +description = Foster Brook CDP, PA +station = ('kbfd', 0.0032265681312371197) +zone = ('paz005', 0.0030960845838210065) + +[fips4226984] +centroid = (0.71692699443282615, -1.3305516156315371) +description = Foundryville CDP, PA +station = ('kavp', 0.0079639788324360385) +zone = ('paz053', 0.0022936514540077128) + +[fips4227008] +centroid = (0.70865278987484892, -1.3159098390970463) +description = Fountain Hill borough, PA +station = ('kabe', 0.0010901352334542393) +zone = ('paz062', 0.0028927727514444883) + +[fips4227024] +centroid = (0.71160859222956385, -1.3321838650012947) +description = Fountain Springs CDP, PA +station = ('kmui', 0.0067031468587545199) +zone = ('paz058', 0.0018845622892484021) + +[fips4227112] +centroid = (0.7180595036778602, -1.3906413470089396) +description = Foxburg borough, PA +station = ('kfkl', 0.0048896280189343741) +zone = ('paz015', 0.003489235123160747) + +[fips4227120] +centroid = (0.70731206285005188, -1.3943243931563756) +description = Fox Chapel borough, PA +station = ('kagc', 0.0030937710808220213) +zone = ('paz021', 0.0015802164048461975) + +[fips4227130] +centroid = (0.70502219087143536, -1.325811790075311) +description = Fox Chase CDP, PA +station = ('krdg', 0.00049284338938413211) +zone = ('paz060', 0.00062410183444673356) + +[fips4227207] +centroid = (0.71031975384342871, -1.3977163009312865) +description = Fox Run CDP, PA +station = ('kbtp', 0.0023034792755944359) +zone = ('paz021', 0.0042281413662914463) + +[fips4227232] +centroid = (0.71180314408128376, -1.3305156269423608) +description = Frackville borough, PA +station = ('kmui', 0.0075409743741088053) +zone = ('paz058', 0.0013695841221208712) + +[fips4227312] +centroid = (0.70652699629921234, -1.4039913180975667) +description = Frankfort Springs borough, PA +station = ('kpit', 0.002780682232354368) +zone = ('wvz001', 0.0018768549947392867) + +[fips4227360] +centroid = (0.70409517669253108, -1.3767898904663367) +description = Franklin borough, PA +station = ('kjst', 0.00080596229214649094) +zone = ('paz024', 0.0035127793221240372) + +[fips4227456] +centroid = (0.72227012795158896, -1.3933327843418548) +description = Franklin city, PA +station = ('kfkl', 0.00045284879789016019) +zone = ('paz008', 0.0010195135045421085) + +[fips4227552] +centroid = (0.70846614436464062, -1.3979864953527876) +description = Franklin Park borough, PA +station = ('kpit', 0.0026063053454306647) +zone = ('paz021', 0.0026576673086376448) + +[fips4227576] +centroid = (0.69945891897411849, -1.3444190768433804) +description = Franklintown borough, PA +station = ('kthv', 0.0033998751362427962) +zone = ('paz063', 0.003496388882765546) + +[fips4227648] +centroid = (0.72682079472348382, -1.3993430350606078) +description = Fredericksburg CDP, PA +station = ('kgkj', 0.00055526723305016751) +zone = ('paz003', 0.0011617018680446848) + +[fips4227656] +centroid = (0.70588262073937602, -1.3340893456654521) +description = Fredericksburg CDP, PA +station = ('kmui', 0.0017235658688676539) +zone = ('paz059', 0.0013681682017557338) + +[fips4227672] +centroid = (0.69816529838583274, -1.3964241638728647) +description = Fredericktown CDP, PA +station = ('kafj', 0.0043204018352248586) +zone = ('paz031', 0.0038553095935845083) + +[fips4227688] +centroid = (0.72120338271277007, -1.4007675204362078) +description = Fredonia borough, PA +station = ('kgkj', 0.0054622555528181169) +zone = ('paz007', 0.00034403803909276637) + +[fips4227696] +centroid = (0.71143978398431107, -1.3428716504752696) +description = Freeburg borough, PA +station = ('kseg', 0.0013621695626409684) +zone = ('paz050', 0.0017131682020556658) + +[fips4227712] +centroid = (0.71008973690130839, -1.4006897660180315) +description = Freedom borough, PA +station = ('kbvi', 0.0024028021293713456) +zone = ('paz020', 0.0012674202385045616) + +[fips4227744] +centroid = (0.7159553696382408, -1.3246407265071003) +description = Freeland borough, PA +station = ('kavp', 0.0058530749622226624) +zone = ('paz047', 0.0029822350992873064) + +[fips4227760] +centroid = (0.7090894014405279, -1.3149311631722831) +description = Freemansburg borough, PA +station = ('kabe', 0.0015072804880605604) +zone = ('paz062', 0.0022490982758551271) + +[fips4227784] +centroid = (0.71011506162875482, -1.3907102177012232) +description = Freeport borough, PA +station = ('kbtp', 0.0039279752822107472) +zone = ('paz022', 0.0036174235994615839) + +[fips4227928] +centroid = (0.69891516164565948, -1.3788572504186167) +description = Friedens CDP, PA +station = ('kjst', 0.0052536179767376711) +zone = ('paz033', 0.0013089527483115171) + +[fips4227936] +centroid = (0.70872605879684758, -1.330448903005057) +description = Friedensburg CDP, PA +station = ('krdg', 0.0054527493515721384) +zone = ('paz058', 0.001734624333415729) + +[fips4227968] +centroid = (0.73160577194745902, -1.3272832248077897) +description = Friendsville borough, PA +station = ('kbgm', 0.0049933855216312256) +zone = ('paz039', 0.0036245629047416102) + +[fips4228014] +centroid = (0.71687697329646394, -1.4039240531081947) +description = Frizzleburg CDP, PA +station = ('kucp', 0.00091504410950391066) +zone = ('paz013', 0.0019976508910305702) + +[fips4228128] +centroid = (0.70607535744867378, -1.3321252044851351) +description = Frystown CDP, PA +station = ('kmui', 0.0032304394314240947) +zone = ('paz059', 0.002336308385593329) + +[fips4228144] +centroid = (0.70914450148501329, -1.3173730882353332) +description = Fullerton CDP, PA +station = ('kabe', 0.00051682971055218199) +zone = ('paz061', 0.0015231688878524462) + +[fips4228280] +centroid = (0.72840101582823957, -1.3551349272117275) +description = Galeton borough, PA +station = ('kelz', 0.0078849322389953243) +zone = ('paz006', 0.0032909092021855802) + +[fips4228328] +centroid = (0.70652593164836852, -1.3710382102762673) +description = Gallitzin borough, PA +station = ('kaoo', 0.0044706916395410292) +zone = ('paz025', 0.0027360894723160094) + +[fips4228376] +centroid = (0.69795523055706266, -1.3268210616218616) +description = Gap CDP, PA +station = ('kmqs', 0.0020299682709695984) +zone = ('paz067', 0.0036617473441162632) + +[fips4228456] +centroid = (0.7200646426423063, -1.3447428528729179) +description = Garden View CDP, PA +station = ('kipt', 0.0017283784023343328) +zone = ('paz046', 0.0018034178021435277) + +[fips4228488] +centroid = (0.69824378584229485, -1.3475382594693743) +description = Gardners CDP, PA +station = ('kthv', 0.0046203155883936574) +zone = ('paz064', 0.0023583676186507098) + +[fips4228520] +centroid = (0.69576475507934721, -1.3798895428580014) +description = Garrett borough, PA +station = ('kcbe', 0.0059348928942259309) +zone = ('paz033', 0.0019396771903283246) + +[fips4228600] +centroid = (0.70279106667544089, -1.3964298361929337) +description = Gastonville CDP, PA +station = ('kagc', 0.0019047870505098524) +zone = ('paz029', 0.0034563719959101492) + +[fips4228720] +centroid = (0.70325514972354619, -1.3765871355671326) +description = Geistown borough, PA +station = ('kjst', 0.00066058102233867489) +zone = ('paz024', 0.0041084818783380349) + +[fips4228768] +centroid = (0.72539398805997846, -1.4002074791858279) +description = Geneva CDP, PA +station = ('kgkj', 0.0012506772375461715) +zone = ('paz003', 0.0026515259446074908) + +[fips4228824] +centroid = (0.70933854719125, -1.4049668000697986) +description = Georgetown borough, PA +station = ('kbvi', 0.002535864462162073) +zone = ('wvz001', 0.0023323826631734454) + +[fips4228828] +centroid = (0.69710279429709621, -1.3278593579938731) +description = Georgetown CDP, PA +station = ('kmqs', 0.0028999935740153171) +zone = ('paz066', 0.0028484105461361315) + +[fips4228832] +centroid = (0.71954184671816401, -1.3242160704467976) +description = Georgetown CDP, PA +station = ('kavp', 0.0026020158756291131) +zone = ('paz047', 0.0017616952700685051) + +[fips4228960] +centroid = (0.69517506068497581, -1.3479901601193007) +description = Gettysburg borough, PA +station = ('kryt', 0.0031596781112126077) +zone = ('paz064', 0.00074634652284630894) + +[fips4229000] +centroid = (0.70300261803407516, -1.324132538988797) +description = Gibraltar CDP, PA +station = ('krdg', 0.0020219513056405581) +zone = ('paz060', 0.0025210051796727712) + +[fips4229040] +centroid = (0.70916623083420061, -1.3957109874339149) +description = Gibsonia CDP, PA +station = ('kbtp', 0.002648365819922352) +zone = ('paz021', 0.0028575131606941775) + +[fips4229088] +centroid = (0.71200912783960413, -1.3303483894934347) +description = Gilberton borough, PA +station = ('kmui', 0.0077820611106814083) +zone = ('paz058', 0.0015601757691837482) + +[fips4229096] +centroid = (0.70376982986666692, -1.3196195364221603) +description = Gilbertsville CDP, PA +station = ('kptw', 0.0017495311504902662) +zone = ('paz068', 0.0037641264236493023) + +[fips4229232] +centroid = (0.73311012358963057, -1.4018346496474623) +description = Girard borough, PA +station = ('keri', 0.0022390184000017545) +zone = ('paz001', 0.0030453120941670783) + +[fips4229264] +centroid = (0.71196135817797701, -1.3313881693953102) +description = Girardville borough, PA +station = ('kmui', 0.0073077117186814197) +zone = ('paz058', 0.0017496321348123736) + +[fips4229392] +centroid = (0.70937778219283487, -1.4051309133793637) +description = Glasgow borough, PA +station = ('kbvi', 0.0025693962334358746) +zone = ('wvz001', 0.0023181710273822674) + +[fips4229432] +centroid = (0.70381822784682468, -1.3942734644488024) +description = Glassport borough, PA +station = ('kagc', 0.00058719501896439558) +zone = ('paz021', 0.0027981437812882892) + +[fips4229496] +centroid = (0.72459719289656566, -1.321638114421847) +description = Glenburn CDP, PA +station = ('kavp', 0.0031966289196223396) +zone = ('paz044', 0.002045312465966973) + +[fips4229512] +centroid = (0.71243898498107772, -1.3758367487085303) +description = Glen Campbell borough, PA +station = ('kidi', 0.0048345653584730332) +zone = ('paz023', 0.0044933940846246931) + +[fips4229568] +centroid = (0.70960868925287368, -1.3131856070274859) +description = Glendon borough, PA +station = ('kabe', 0.0027838739222165944) +zone = ('paz062', 0.0019091448224405276) + +[fips4229592] +centroid = (0.7072479743599186, -1.3987124301485696) +description = Glenfield borough, PA +station = ('kpit', 0.0014095510304164742) +zone = ('paz021', 0.0023092854337336834) + +[fips4229632] +centroid = (0.71211320182290061, -1.3700318185229821) +description = Glen Hope borough, PA +station = ('kfig', 0.0044718765192703859) +zone = ('paz017', 0.0034884345142518931) + +[fips4229680] +centroid = (0.71867358032188189, -1.3280137847260896) +description = Glen Lyon CDP, PA +station = ('kavp', 0.0054127900992809773) +zone = ('paz047', 0.0013226765448133954) + +[fips4229720] +centroid = (0.69637984401433495, -1.3140925150134073) +description = Glenolden borough, PA +station = ('kphl', 0.0009732989360179444) +zone = ('paz070', 0.001463768863805175) + +[fips4229732] +centroid = (0.70739236544893613, -1.3992135839899873) +description = Glen Osborne borough, PA +station = ('kpit', 0.0011868258632175064) +zone = ('paz021', 0.0027161751821230236) + +[fips4229760] +centroid = (0.69452764825224111, -1.3392034047198906) +description = Glen Rock borough, PA +station = ('kthv', 0.0029669536792667275) +zone = ('paz065', 0.0022067624096879864) + +[fips4229800] +centroid = (0.70754272556399544, -1.3958030535519577) +description = Glenshaw CDP, PA +station = ('kagc', 0.0033879214205841976) +zone = ('paz021', 0.0012330270040202965) + +[fips4229808] +centroid = (0.69993305511871506, -1.3116458601080838) +description = Glenside CDP, PA +station = ('kpne', 0.0018369432949730711) +zone = ('paz071', 0.0016858926820989004) + +[fips4230013] +centroid = (0.72106988247828507, -1.3080109326881255) +description = Gold Key Lake CDP, PA +station = ('kfwn', 0.0045320088467695249) +zone = ('paz048', 0.0012225178144495386) + +[fips4230016] +centroid = (0.70082437731441616, -1.3395930320221059) +description = Goldsboro borough, PA +station = ('kmdt', 0.00081844891091203997) +zone = ('paz065', 0.0041060146740090099) + +[fips4230096] +centroid = (0.70046417626338953, -1.3265068325433327) +description = Goodville CDP, PA +station = ('kmqs', 0.0032185352923301052) +zone = ('paz066', 0.0036319036562299347) + +[fips4230128] +centroid = (0.71122369476962155, -1.3323831292419948) +description = Gordon borough, PA +station = ('kmui', 0.0062927666268934373) +zone = ('paz058', 0.0018117224180473526) + +[fips4230136] +centroid = (0.69850024452258297, -1.3288326408512476) +description = Gordonville CDP, PA +station = ('klns', 0.0027477158432881884) +zone = ('paz066', 0.0015317523274998028) + +[fips4230192] +centroid = (0.70285061730951892, -1.326778004349215) +description = Gouglersville CDP, PA +station = ('krdg', 0.0018180844718215029) +zone = ('paz060', 0.0028317493280835557) + +[fips4230200] +centroid = (0.71987618198967596, -1.3166979250674917) +description = Gouldsboro CDP, PA +station = ('kmpo', 0.0021061695019416833) +zone = ('paz055', 0.0035382577118336029) + +[fips4230224] +centroid = (0.7069819512753297, -1.381755160202043) +description = Graceton CDP, PA +station = ('kidi', 0.002384517165729785) +zone = ('paz023', 0.0027506112278555916) + +[fips4230280] +centroid = (0.7149640226231081, -1.3720330479499041) +description = Grampian borough, PA +station = ('kfig', 0.002971450748009205) +zone = ('paz017', 0.001917544844768073) + +[fips4230435] +centroid = (0.69708429380702497, -1.3391579214395837) +description = Grantley CDP, PA +station = ('kthv', 0.0021171811595269694) +zone = ('paz065', 0.0003512526420242837) + +[fips4230472] +centroid = (0.70780222111718194, -1.3546401438220796) +description = Granville CDP, PA +station = ('kunv', 0.0060274279544023767) +zone = ('paz027', 0.00098330470464955307) + +[fips4230512] +centroid = (0.70380876816227878, -1.3893863156504154) +description = Grapeville CDP, PA +station = ('klbe', 0.0028375658666573858) +zone = ('paz073', 0.00053459100420476626) + +[fips4230528] +centroid = (0.71563264080625455, -1.3632085410787729) +description = Grassflat CDP, PA +station = ('kunv', 0.0043023775952726355) +zone = ('paz018', 0.0013749705704489215) + +[fips4230600] +centroid = (0.70873146931752884, -1.3389418845847718) +description = Gratz borough, PA +station = ('kmui', 0.0036238287665653732) +zone = ('paz057', 0.0034522683778299016) + +[fips4230704] +centroid = (0.70960872415945864, -1.3660822780520592) +description = Grazierville CDP, PA +station = ('kaoo', 0.0062707356144977586) +zone = ('paz025', 0.0032452604407860082) + +[fips4230728] +centroid = (0.73256757053835553, -1.3220034467408741) +description = Great Bend borough, PA +station = ('kbgm', 0.005020449312619346) +zone = ('paz039', 0.0027431838203110666) + +[fips4230896] +centroid = (0.69447820307453212, -1.3565863779242711) +description = Greencastle borough, PA +station = ('khgr', 0.0015850113759849863) +zone = ('paz036', 0.0023892598346269755) + +[fips4231038] +centroid = (0.70447075409426774, -1.3256851838913712) +description = Greenfields CDP, PA +station = ('krdg', 0.00015217832314569252) +zone = ('paz060', 0.0010113926411523372) + +[fips4231082] +centroid = (0.70014877781426166, -1.401602259057559) +description = Green Hills borough, PA +station = ('kafj', 0.00043216928977882121) +zone = ('paz029', 0.0015009264504411094) + +[fips4231088] +centroid = (0.70400731681798567, -1.3172305646486153) +description = Green Lane borough, PA +station = ('kptw', 0.0020824986123994674) +zone = ('paz068', 0.0025990592639577974) + +[fips4231120] +centroid = (0.70359767058925016, -1.3928456629476231) +description = Greenock CDP, PA +station = ('kagc', 0.0016287987533218226) +zone = ('paz021', 0.0035937180114017976) + +[fips4231192] +centroid = (0.69450358016185609, -1.3947455236515893) +description = Greensboro borough, PA +station = ('kmgw', 0.0024810115956896022) +zone = ('paz075', 0.0033208505276983717) + +[fips4231200] +centroid = (0.70356405554785661, -1.388311664070085) +description = Greensburg city, PA +station = ('klbe', 0.0019829783247705245) +zone = ('paz073', 0.0007088049042230976) + +[fips4231208] +centroid = (0.73192556862630187, -1.3359719450631156) +description = Greens Landing CDP, PA +station = ('kelm', 0.0061052376791383214) +zone = ('paz038', 0.0026059630191372168) + +[fips4231256] +centroid = (0.70541070116292937, -1.3972114120852694) +description = Green Tree borough, PA +station = ('kagc', 0.0021722421822520984) +zone = ('paz021', 0.0013262095567561139) + +[fips4231328] +centroid = (0.7226548857851911, -1.4029621847041283) +description = Greenville borough, PA +station = ('kgkj', 0.0045433453290492148) +zone = ('paz007', 0.0024400180834421191) + +[fips4231368] +centroid = (0.70742660880886032, -1.367620646161352) +description = Greenwood CDP, PA +station = ('kaoo', 0.0040975170591907436) +zone = ('paz025', 0.00090500132232326151) + +[fips4231536] +centroid = (0.7125584527683767, -1.3274281744021679) +description = Grier City CDP, PA +station = ('krdg', 0.0081141042670698441) +zone = ('paz058', 0.0029847398565910591) + +[fips4231568] +centroid = (0.70336550689214983, -1.3253117183380296) +description = Grill CDP, PA +station = ('krdg', 0.0012405841723190708) +zone = ('paz060', 0.002037085288550196) + +[fips4231592] +centroid = (0.69851783744144302, -1.3931710097734875) +description = Grindstone CDP, PA +station = ('kagc', 0.0058577272185780047) +zone = ('paz075', 0.0014548778972272259) + +[fips4231656] +centroid = (0.71832718482523861, -1.3978096934995605) +description = Grove City borough, PA +station = ('kfkl', 0.004905511799399632) +zone = ('paz007', 0.0033673437559523746) + +[fips4231716] +centroid = (0.69666438504228767, -1.3543847323393428) +description = Guilford CDP, PA +station = ('kryt', 0.0039693448593275307) +zone = ('paz036', 0.0016277952309123674) + +[fips4231840] +centroid = (0.72659446042608522, -1.3958429517786581) +description = Guys Mills CDP, PA +station = ('kgkj', 0.0031409943935453177) +zone = ('paz003', 0.0019440412010053084) + +[fips4232024] +centroid = (0.70300921537864769, -1.3201706590400626) +description = Halfway House CDP, PA +station = ('kptw', 0.0014463122303164171) +zone = ('paz068', 0.0038287562086466997) + +[fips4232032] +centroid = (0.70621011432022029, -1.3427254093372452) +description = Halifax borough, PA +station = ('kcxy', 0.0044348137205983997) +zone = ('paz057', 0.0021977255173022468) + +[fips4232056] +centroid = (0.69817659066609317, -1.3369962264412336) +description = Hallam borough, PA +station = ('kmdt', 0.0040712763147965616) +zone = ('paz065', 0.0021810349297128702) + +[fips4232080] +centroid = (0.73236926622874399, -1.3220371141421452) +description = Hallstead borough, PA +station = ('kbgm', 0.0051636735482109798) +zone = ('paz039', 0.0025454476812517128) + +[fips4232120] +centroid = (0.70783965842963725, -1.3261423030757611) +description = Hamburg borough, PA +station = ('krdg', 0.0033149713586575441) +zone = ('paz060', 0.0025524961105898377) + +[fips4232320] +centroid = (0.69689037027383594, -1.3449194627399272) +description = Hampton CDP, PA +station = ('kthv', 0.0023504104078391963) +zone = ('paz064', 0.0023610747725834763) + +[fips4232384] +centroid = (0.72381598352337284, -1.3950586880792746) +description = Hannasville CDP, PA +station = ('kfkl', 0.0017554364075315944) +zone = ('paz008', 0.0025769987361301491) + +[fips4232448] +centroid = (0.69484583922817222, -1.3436186513951232) +description = Hanover borough, PA +station = ('kthv', 0.0022718203311632287) +zone = ('paz065', 0.0039285478645598865) + +[fips4232600] +centroid = (0.71534497563894095, -1.3259317989146782) +description = Harleigh CDP, PA +station = ('kavp', 0.0068111634948129331) +zone = ('paz047', 0.0033417160485858374) + +[fips4232616] +centroid = (0.70299074979516152, -1.3157663206726546) +description = Harleysville CDP, PA +station = ('kukt', 0.0027343729994987413) +zone = ('paz068', 0.0012098624258836982) + +[fips4232656] +centroid = (0.72720073544835062, -1.4017470690255971) +description = Harmonsburg CDP, PA +station = ('kgkj', 0.0013904958492187802) +zone = ('paz003', 0.0027309166898017829) + +[fips4232688] +centroid = (0.71211765241249303, -1.3984443824820483) +description = Harmony borough, PA +station = ('kbtp', 0.0023331152708643589) +zone = ('paz014', 0.0033969698174125115) + +[fips4232800] +centroid = (0.70294690712435148, -1.3418967444616907) +description = Harrisburg city, PA +station = ('kcxy', 0.0011340621721898159) +zone = ('paz057', 0.0028140011136948695) + +[fips4232864] +centroid = (0.70432411153051522, -1.3901579780725997) +description = Harrison City CDP, PA +station = ('klbe', 0.0035552709119006723) +zone = ('paz073', 0.0010183942992261514) + +[fips4232896] +centroid = (0.71796574459044304, -1.3964509721301754) +description = Harrisville borough, PA +station = ('kfkl', 0.0047060298445382575) +zone = ('paz014', 0.0041276701478194545) + +[fips4232936] +centroid = (0.71384291037808945, -1.3466334633318482) +description = Hartleton borough, PA +station = ('kseg', 0.0040931433145409615) +zone = ('paz049', 0.0016578476600213694) + +[fips4232976] +centroid = (0.7251576704792585, -1.4029753270333956) +description = Hartstown CDP, PA +station = ('kgkj', 0.00264515896136984) +zone = ('paz003', 0.0043410006491760621) + +[fips4233000] +centroid = (0.72195052325896381, -1.3272299399057264) +description = Harveys Lake borough, PA +station = ('kavp', 0.004115849489454205) +zone = ('paz043', 0.0027074672956303768) + +[fips4233024] +centroid = (0.70783969333622232, -1.3928666592585248) +description = Harwick CDP, PA +station = ('kagc', 0.0038909683720651216) +zone = ('paz021', 0.0027876591734343481) + +[fips4233072] +centroid = (0.72341488940797205, -1.3906189195280514) +description = Hasson Heights CDP, PA +station = ('kfkl', 0.0027363250400333507) +zone = ('paz008', 0.0013511915807914699) + +[fips4233080] +centroid = (0.70973351520097638, -1.3737385836949527) +description = Hastings borough, PA +station = ('kidi', 0.0052009962609572257) +zone = ('paz024', 0.0029559719018358707) + +[fips4233088] +centroid = (0.70122861302247053, -1.3108383311697711) +description = Hatboro borough, PA +station = ('kpne', 0.0020256066723934644) +zone = ('paz069', 0.0027848929164083934) + +[fips4233112] +centroid = (0.70296804306159311, -1.3142133092509378) +description = Hatfield borough, PA +station = ('klom', 0.0024780021824816331) +zone = ('paz068', 0.0014709000115815305) + +[fips4233154] +centroid = (0.69828733180713209, -1.3143592536829896) +description = Haverford College CDP, PA +station = ('klom', 0.0023140106672498591) +zone = ('paz070', 0.0020241732073097551) + +[fips4233184] +centroid = (0.71426302858233703, -1.364901266107112) +description = Hawk Run CDP, PA +station = ('kfig', 0.0035685490268091676) +zone = ('paz018', 0.0028701508249973509) + +[fips4233200] +centroid = (0.72389187043924963, -1.3120680901607265) +description = Hawley borough, PA +station = ('kmsv', 0.0062751916080665002) +zone = ('paz072', 0.0019005047645271566) + +[fips4233216] +centroid = (0.71594234948202096, -1.3837550457254406) +description = Hawthorn borough, PA +station = ('kduj', 0.0059793822282740933) +zone = ('paz015', 0.0035060710187521885) + +[fips4233312] +centroid = (0.70731448885771209, -1.3989639146404895) +description = Haysville borough, PA +station = ('kpit', 0.0012830443924072199) +zone = ('paz021', 0.0025110833037997079) + +[fips4233408] +centroid = (0.71471972888770641, -1.3259682937493371) +description = Hazleton city, PA +station = ('kavp', 0.0073848039655062467) +zone = ('paz047', 0.0039639484832222991) + +[fips4233504] +centroid = (0.70405077551636031, -1.3334099413475282) +description = Hebron CDP, PA +station = ('kmui', 0.0027722236161348644) +zone = ('paz059', 0.00092433444156226978) + +[fips4233528] +centroid = (0.71071624028960423, -1.3311078171575623) +description = Heckscherville CDP, PA +station = ('kmui', 0.0064039119551597395) +zone = ('paz058', 0.00072287457981238948) + +[fips4233576] +centroid = (0.70951775759884472, -1.3349595842837887) +description = Hegins CDP, PA +station = ('kmui', 0.0039643591978310811) +zone = ('paz052', 0.0045518892643473165) + +[fips4233592] +centroid = (0.70496408886063644, -1.3978727173388501) +description = Heidelberg borough, PA +station = ('kpit', 0.0024668515525228529) +zone = ('paz021', 0.0019991708465408181) + +[fips4233632] +centroid = (0.69726636655459306, -1.3465107317788481) +description = Heidlersburg CDP, PA +station = ('kthv', 0.0036089344152141155) +zone = ('paz064', 0.0016548924913993828) + +[fips4233672] +centroid = (0.70926299188793118, -1.3763795984657781) +description = Heilwood CDP, PA +station = ('kidi', 0.0031698559506325016) +zone = ('paz024', 0.0031592336022725556) + +[fips4233744] +centroid = (0.70827810259103086, -1.3148946334310387) +description = Hellertown borough, PA +station = ('kabe', 0.0019081436397334582) +zone = ('paz062', 0.0030455237926615181) + +[fips4233772] +centroid = (0.72109597515060231, -1.3098664620290907) +description = Hemlock Farms CDP, PA +station = ('kmpo', 0.005413380834982778) +zone = ('paz048', 0.00035498467887940189) + +[fips4233840] +centroid = (0.70338049927042445, -1.3990265545073435) +description = Hendersonville CDP, PA +station = ('kpit', 0.0033393246777708475) +zone = ('paz029', 0.0022824558451135755) + +[fips4234008] +centroid = (0.70600212343326008, -1.3186030392125061) +description = Hereford CDP, PA +station = ('kxll', 0.0022271117493317429) +zone = ('paz061', 0.0028811114731252464) + +[fips4234048] +centroid = (0.70272584372129387, -1.3912648309776297) +description = Herminie CDP, PA +station = ('kagc', 0.0030981422047185896) +zone = ('paz073', 0.0023303290878624121) + +[fips4234064] +centroid = (0.71959143152221305, -1.4039551374221726) +description = Hermitage city, PA +station = ('kucp', 0.0035833702435225214) +zone = ('paz007', 0.0027150636655163709) + +[fips4234080] +centroid = (0.7105638555926127, -1.3413311879708745) +description = Herndon borough, PA +station = ('kseg', 0.0018308133966348234) +zone = ('paz052', 0.0030889106173949857) + +[fips4234144] +centroid = (0.70299961606776173, -1.337685456962846) +description = Hershey CDP, PA +station = ('kmdt', 0.0021399665000066252) +zone = ('paz057', 0.0029883487335573915) + +[fips4234256] +centroid = (0.70329297100843691, -1.4015890120085366) +description = Hickory CDP, PA +station = ('kafj', 0.0028490208201073885) +zone = ('paz029', 0.0020046570187798097) + +[fips4234308] +centroid = (0.71618556111328635, -1.3233183079861568) +description = Hickory Hills CDP, PA +station = ('kavp', 0.0053415070547947205) +zone = ('paz054', 0.002505028968929682) + +[fips4234592] +centroid = (0.70898178443884985, -1.3538627567199488) +description = Highland Park CDP, PA +station = ('kunv', 0.0054344137334763377) +zone = ('paz027', 0.00064639014782202171) + +[fips4234664] +centroid = (0.70177263215031715, -1.3401603687487591) +description = Highspire borough, PA +station = ('kmdt', 0.00029296312325264803) +zone = ('paz057', 0.0036118952081297825) + +[fips4234776] +centroid = (0.72059160990336102, -1.3235813989176024) +description = Hilldale CDP, PA +station = ('kavp', 0.0015673112198168789) +zone = ('paz047', 0.0027767469212833977) + +[fips4234784] +centroid = (0.69827258377495283, -1.3945994570464897) +description = Hiller CDP, PA +station = ('kafj', 0.0055098609786412801) +zone = ('paz075', 0.002058775734088884) + +[fips4235120] +centroid = (0.70962390852395107, -1.3176400014378407) +description = Hokendauqua CDP, PA +station = ('kabe', 0.0006165599674524256) +zone = ('paz061', 0.0015129924608297872) + +[fips4235172] +centroid = (0.71612180423571103, -1.3196556298310915) +description = Holiday Pocono CDP, PA +station = ('kmpo', 0.0034859929128125311) +zone = ('paz054', 0.0023502081253241568) + +[fips4235224] +centroid = (0.7056553265108888, -1.3682151751177514) +description = Hollidaysburg borough, PA +station = ('kaoo', 0.0025024955165524926) +zone = ('paz025', 0.0010561625169872449) + +[fips4235364] +centroid = (0.71335266484449678, -1.3948865811617355) +description = Homeacre-Lyndora CDP, PA +station = ('kbtp', 0.0015954958931548664) +zone = ('paz014', 0.0006994439251015261) + +[fips4235408] +centroid = (0.70756932438179587, -1.3816017632140851) +description = Homer City borough, PA +station = ('kidi', 0.0018009045463224039) +zone = ('paz023', 0.0021678840186596655) + +[fips4235424] +centroid = (0.70524004286866926, -1.3946907552196615) +description = Homestead borough, PA +station = ('kagc', 0.0010037369348984385) +zone = ('paz021', 0.0014318463811012763) + +[fips4235448] +centroid = (0.7124709943195594, -1.3262155196378824) +description = Hometown CDP, PA +station = ('krdg', 0.0079441254022691622) +zone = ('paz058', 0.0036436674974376303) + +[fips4235488] +centroid = (0.71232712682931754, -1.4020133015496965) +description = Homewood borough, PA +station = ('kbvi', 0.0012380373722865052) +zone = ('paz020', 0.0023020632996098656) + +[fips4235520] +centroid = (0.72563302835433163, -1.3133736837076808) +description = Honesdale borough, PA +station = ('kmsv', 0.0062671669449374462) +zone = ('paz072', 0.0019646037595701443) + +[fips4235528] +centroid = (0.69976497991174813, -1.3248925251582855) +description = Honey Brook borough, PA +station = ('kmqs', 0.0020557743680381462) +zone = ('paz067', 0.0030198925126230865) + +[fips4235576] +centroid = (0.70858402390232034, -1.4045318989267868) +description = Hookstown borough, PA +station = ('kbvi', 0.0030869238406102399) +zone = ('wvz001', 0.0018964641171692975) + +[fips4235608] +centroid = (0.70075770573698992, -1.3772969609739187) +description = Hooversville borough, PA +station = ('kjst', 0.0030903722107529057) +zone = ('paz033', 0.0034650720949106514) + +[fips4235624] +centroid = (0.72786631675859859, -1.3223604887459548) +description = Hop Bottom borough, PA +station = ('kavp', 0.0064773622623409376) +zone = ('paz039', 0.0021050776902779506) + +[fips4235632] +centroid = (0.70212583443104326, -1.3310296962202433) +description = Hopeland CDP, PA +station = ('klns', 0.0020211603948437841) +zone = ('paz066', 0.0032600074181583249) + +[fips4235648] +centroid = (0.70047199533843851, -1.3660050821392435) +description = Hopewell borough, PA +station = ('kaoo', 0.0029723995258963899) +zone = ('paz034', 0.0037271729667662976) + +[fips4235728] +centroid = (0.69598993745943949, -1.3910576603954179) +description = Hopwood CDP, PA +station = ('kmgw', 0.0049042058398446548) +zone = ('paz075', 0.001557135570180185) + +[fips4235800] +centroid = (0.70131769462749238, -1.3114169601766847) +description = Horsham CDP, PA +station = ('klom', 0.0018595943666546088) +zone = ('paz069', 0.0027291606611495227) + +[fips4235872] +centroid = (0.70273851481166338, -1.3857526972273959) +description = Hostetter CDP, PA +station = ('klbe', 0.00033957360488931786) +zone = ('paz073', 0.0027445972969995435) + +[fips4235888] +centroid = (0.7125583655019142, -1.3582617892864304) +description = Houserville CDP, PA +station = ('kunv', 0.00054519082225032922) +zone = ('paz019', 0.0017920216954711559) + +[fips4235896] +centroid = (0.7024854420701242, -1.3999483152451992) +description = Houston borough, PA +station = ('kafj', 0.0022436444463148474) +zone = ('paz029', 0.0011586858196106482) + +[fips4235928] +centroid = (0.71253195867033148, -1.3674831491228798) +description = Houtzdale borough, PA +station = ('kfig', 0.0040200012176188384) +zone = ('paz017', 0.0034609237974781602) + +[fips4235960] +centroid = (0.71580836055534525, -1.3553786973483535) +description = Howard borough, PA +station = ('kunv', 0.0038101948356451098) +zone = ('paz019', 0.0024948909510356318) + +[fips4236064] +centroid = (0.71492614897833984, -1.354500918907648) +description = Hublersburg CDP, PA +station = ('kunv', 0.0037546050310999926) +zone = ('paz019', 0.0019869720177499218) + +[fips4236096] +centroid = (0.72042391866882938, -1.323503609592841) +description = Hudson CDP, PA +station = ('kavp', 0.0016135562104337875) +zone = ('paz047', 0.0027085043381648429) + +[fips4236152] +centroid = (0.72132812139441005, -1.3224312443938306) +description = Hughestown borough, PA +station = ('kavp', 0.0004827967576745872) +zone = ('paz044', 0.0028228463767570643) + +[fips4236160] +centroid = (0.71975718544127509, -1.3391104310306368) +description = Hughesville borough, PA +station = ('kipt', 0.0025176068883578672) +zone = ('paz046', 0.0025058932566232131) + +[fips4236192] +centroid = (0.70063235619011166, -1.3073728054070113) +description = Hulmeville borough, PA +station = ('kpne', 0.0017998566517821455) +zone = ('njz019', 0.0034105612475315841) + +[fips4236232] +centroid = (0.70276279234155858, -1.3388905369981781) +description = Hummelstown borough, PA +station = ('kmdt', 0.0013476550219690593) +zone = ('paz057', 0.0027657083861906146) + +[fips4236240] +centroid = (0.71263887754030875, -1.3411493944759867) +description = Hummels Wharf CDP, PA +station = ('kseg', 0.00041080291166796512) +zone = ('paz052', 0.0017945254148691644) + +[fips4236288] +centroid = (0.70169222483167781, -1.3895521044760624) +description = Hunker borough, PA +station = ('klbe', 0.0031870116341682379) +zone = ('paz073', 0.0025129343118761162) + +[fips4236352] +centroid = (0.69612071498029149, -1.3466085051235446) +description = Hunterstown CDP, PA +station = ('kthv', 0.0036795752856259925) +zone = ('paz064', 0.00087397572998551955) + +[fips4236368] +centroid = (0.70692692104401433, -1.3613313696550831) +description = Huntingdon borough, PA +station = ('kaoo', 0.0055268064616479963) +zone = ('paz026', 0.0015345754024992163) + +[fips4236568] +centroid = (0.71570468799777687, -1.3696948128977147) +description = Hyde CDP, PA +station = ('kfig', 0.0011015466009241112) +zone = ('paz017', 0.0001256659081007154) + +[fips4236576] +centroid = (0.70469038632733871, -1.3251247761218485) +description = Hyde Park CDP, PA +station = ('krdg', 0.00058850852572892162) +zone = ('paz060', 0.00070933579876034407) + +[fips4236592] +centroid = (0.70915500836711021, -1.3890937112013186) +description = Hyde Park borough, PA +station = ('kbtp', 0.005458941186517084) +zone = ('paz022', 0.0035624192523360304) + +[fips4236616] +centroid = (0.72695103119226778, -1.391456153970233) +description = Hydetown borough, PA +station = ('kfkl', 0.005030887062154119) +zone = ('paz008', 0.0043890644745008109) + +[fips4236640] +centroid = (0.69500569393436229, -1.3739492100290835) +description = Hyndman borough, PA +station = ('kcbe', 0.003627321929975209) +zone = ('mdz502', 0.0037210804688975817) + +[fips4236712] +centroid = (0.69846746723923048, -1.3474542044125986) +description = Idaville CDP, PA +station = ('kthv', 0.0046409902998623938) +zone = ('paz064', 0.0025857646157422197) + +[fips4236768] +centroid = (0.70604991054817967, -1.4006234435064557) +description = Imperial CDP, PA +station = ('kpit', 0.00056189855788716335) +zone = ('paz020', 0.0042025336214456394) + +[fips4236816] +centroid = (0.70898682844038807, -1.3815243404084667) +description = Indiana borough, PA +station = ('kidi', 0.00076170790440998942) +zone = ('paz023', 0.001043217584580052) + +[fips4236888] +centroid = (0.69886124842506547, -1.3764865696956328) +description = Indian Lake borough, PA +station = ('kjst', 0.0048181285900383963) +zone = ('paz033', 0.0024739089611504426) + +[fips4236904] +centroid = (0.71559043874494133, -1.3178552703477817) +description = Indian Mountain Lake CDP, PA +station = ('kmpo', 0.0028392986460714165) +zone = ('paz055', 0.002433497695743744) + +[fips4236944] +centroid = (0.70959554692360616, -1.4034361114092146) +description = Industry borough, PA +station = ('kbvi', 0.0019224931657170043) +zone = ('paz020', 0.00092952248609897152) + +[fips4237000] +centroid = (0.70589548381596323, -1.3974590393995423) +description = Ingram borough, PA +station = ('kpit', 0.002289536140806086) +zone = ('paz021', 0.0012325786426078322) + +[fips4237008] +centroid = (0.72076539233698211, -1.3232506241177644) +description = Inkerman CDP, PA +station = ('kavp', 0.001264862011842256) +zone = ('paz047', 0.0030769674362941418) + +[fips4237016] +centroid = (0.69874528874956299, -1.328411807062007) +description = Intercourse CDP, PA +station = ('klns', 0.0028812622874068369) +zone = ('paz066', 0.0018124814756159103) + +[fips4237024] +centroid = (0.71792055801610888, -1.3357125193230992) +description = Iola CDP, PA +station = ('kipt', 0.0054598271942242768) +zone = ('paz053', 0.0022219193840871234) + +[fips4237192] +centroid = (0.71163758214843953, -1.3709608223772338) +description = Irvona borough, PA +station = ('kfig', 0.0051320947066283446) +zone = ('paz017', 0.0040767270744813799) + +[fips4237208] +centroid = (0.70380517278401966, -1.3910231377828133) +description = Irwin borough, PA +station = ('kagc', 0.0029183508328591711) +zone = ('paz073', 0.0016970265467735278) + +[fips4237304] +centroid = (0.70176125260359412, -1.3102796163696229) +description = Ivyland borough, PA +station = ('kdyl', 0.0022624856567938726) +zone = ('paz069', 0.0022952108697443527) + +[fips4237496] +centroid = (0.72035199365035463, -1.3987012949479418) +description = Jackson Center borough, PA +station = ('kfkl', 0.0040624170313659008) +zone = ('paz007', 0.001628804700999918) + +[fips4237545] +centroid = (0.71544616982897147, -1.3549685275208423) +description = Jacksonville CDP, PA +station = ('kunv', 0.0037765609067131672) +zone = ('paz019', 0.0022497055886191181) + +[fips4237552] +centroid = (0.70800658171929809, -1.3839469446766977) +description = Jacksonville CDP, PA +station = ('kidi', 0.0028321055917886568) +zone = ('paz023', 0.0031271083442905726) + +[fips4237584] +centroid = (0.70391031141815985, -1.3235901604704472) +description = Jacksonwald CDP, PA +station = ('krdg', 0.0018440117113045435) +zone = ('paz060', 0.0019091543979365272) + +[fips4237640] +centroid = (0.69608046768774035, -1.3388802046490063) +description = Jacobus borough, PA +station = ('kthv', 0.0023680492977355911) +zone = ('paz065', 0.00068076338370516858) + +[fips4237656] +centroid = (0.7263307062695239, -1.3761463526645417) +description = James City CDP, PA +station = ('kbfd', 0.0042575503361407712) +zone = ('paz010', 0.004212810049304609) + +[fips4237696] +centroid = (0.7240342718529198, -1.4038947664833463) +description = Jamestown borough, PA +station = ('kgkj', 0.0038835360047152425) +zone = ('paz007', 0.0039504876879540166) + +[fips4237728] +centroid = (0.72077382227726916, -1.3329134126286282) +description = Jamison City CDP, PA +station = ('kipt', 0.0072140752720279517) +zone = ('paz042', 0.003189792088483192) + +[fips4237784] +centroid = (0.70385205232772818, -1.3895247551666836) +description = Jeannette city, PA +station = ('klbe', 0.0029507204383924816) +zone = ('paz073', 0.00059759028532126624) + +[fips4237792] +centroid = (0.71541676103107543, -1.3246363457306778) +description = Jeddo borough, PA +station = ('kavp', 0.0063564645989487916) +zone = ('paz054', 0.0027704213154235093) + +[fips4237880] +centroid = (0.69691782430296978, -1.3972706834666673) +description = Jefferson borough, PA +station = ('kafj', 0.0046507583459908259) +zone = ('paz031', 0.0025851093803701793) + +[fips4237944] +centroid = (0.69491273769840112, -1.3411217310073427) +description = Jefferson borough, PA +station = ('kthv', 0.0018549991850791119) +zone = ('paz065', 0.002377540795279793) + +[fips4237955] +centroid = (0.70325724411864865, -1.3951999550289311) +description = Jefferson Hills borough, PA +station = ('kagc', 0.0010273113573489657) +zone = ('paz021', 0.0031074603122975661) + +[fips4238000] +centroid = (0.69981168492253143, -1.3112595663847399) +description = Jenkintown borough, PA +station = ('kpne', 0.0015252199320324889) +zone = ('paz071', 0.0015483373557489721) + +[fips4238048] +centroid = (0.70098145694709568, -1.379875440597645) +description = Jennerstown borough, PA +station = ('kjst', 0.004046019399205009) +zone = ('paz074', 0.0026249825409630028) + +[fips4238096] +centroid = (0.7247880795568562, -1.318516593054655) +description = Jermyn borough, PA +station = ('kavp', 0.0041840191378816321) +zone = ('paz044', 0.0017829424042572453) + +[fips4238104] +centroid = (0.70185876414890314, -1.3784761403231511) +description = Jerome CDP, PA +station = ('kjst', 0.0026645513767507138) +zone = ('paz074', 0.0033796605325380484) + +[fips4238128] +centroid = (0.71908841017849578, -1.3485560307693827) +description = Jersey Shore borough, PA +station = ('kipt', 0.0046729737189981921) +zone = ('paz045', 0.0026129288936799664) + +[fips4238152] +centroid = (0.71713894721718829, -1.3365758289843055) +description = Jerseytown CDP, PA +station = ('kipt', 0.0052382567916567594) +zone = ('paz051', 0.0014834428637185689) + +[fips4238160] +centroid = (0.72350180680472143, -1.318458857562999) +description = Jessup borough, PA +station = ('kavp', 0.0032670294273071587) +zone = ('paz044', 0.00092408099949990751) + +[fips4238200] +centroid = (0.71313257882582037, -1.3224351015714775) +description = Jim Thorpe borough, PA +station = ('kabe', 0.0055912031386289715) +zone = ('paz054', 0.0013056199937964952) + +[fips4238240] +centroid = (0.70477950283894553, -1.402427415821317) +description = Joffre CDP, PA +station = ('kpit', 0.0023940409454713328) +zone = ('paz029', 0.003622599630247453) + +[fips4238248] +centroid = (0.72417592277501164, -1.3732035181061688) +description = Johnsonburg borough, PA +station = ('kbfd', 0.0054042865776609567) +zone = ('paz010', 0.0012303997010834602) + +[fips4238288] +centroid = (0.70382377799384599, -1.3773988183890653) +description = Johnstown city, PA +station = ('kjst', 0.0011536927585140036) +zone = ('paz024', 0.0040235076782189931) + +[fips4238392] +centroid = (0.71779686653202002, -1.3318511703392792) +description = Jonestown CDP, PA +station = ('kseg', 0.0091215834848931612) +zone = ('paz053', 0.0018563324090858197) + +[fips4238400] +centroid = (0.70533952663603305, -1.3348405877353879) +description = Jonestown borough, PA +station = ('kmui', 0.001195788609407313) +zone = ('paz059', 0.00085563129355250048) + +[fips4238528] +centroid = (0.71316743305098262, -1.3603594830611101) +description = Julian CDP, PA +station = ('kunv', 0.0012420795942422816) +zone = ('paz018', 0.002371773659247138) + +[fips4238640] +centroid = (0.70835044648852585, -1.3539976532178355) +description = Juniata Terrace borough, PA +station = ('kunv', 0.0058502663143794381) +zone = ('paz027', 0.00067282542246545145) + +[fips4238688] +centroid = (0.7271566658847376, -1.3754768094568914) +description = Kane borough, PA +station = ('kbfd', 0.0033094980844798755) +zone = ('paz005', 0.0040197078371517203) + +[fips4238744] +centroid = (0.71383072797991054, -1.3405683743679977) +description = Kapp Heights CDP, PA +station = ('kseg', 0.0016342468603221662) +zone = ('paz052', 0.0015562561631628162) + +[fips4238768] +centroid = (0.71553177822878189, -1.3914873604572588) +description = Karns City borough, PA +station = ('kbtp', 0.00475476181355517) +zone = ('paz014', 0.0028751859492511297) + +[fips4239056] +centroid = (0.71385247478239044, -1.3265296963565338) +description = Kelayres CDP, PA +station = ('kavp', 0.0083501102528631289) +zone = ('paz058', 0.0044007993602900837) + +[fips4239224] +centroid = (0.70911135768251798, -1.32392948738362) +description = Kempton CDP, PA +station = ('krdg', 0.0048115957343594076) +zone = ('paz061', 0.0034978310952004659) + +[fips4239256] +centroid = (0.70348692944821101, -1.3254699149814302) +description = Kenhorst borough, PA +station = ('krdg', 0.001087600511049013) +zone = ('paz060', 0.0019269704647253642) + +[fips4239272] +centroid = (0.7020329654615447, -1.3201250884932929) +description = Kenilworth CDP, PA +station = ('kptw', 0.0011797150149703917) +zone = ('paz068', 0.0036103976794663178) + +[fips4239280] +centroid = (0.72002729259631371, -1.343117410287243) +description = Kenmar CDP, PA +station = ('kipt', 0.00050862651483368554) +zone = ('paz046', 0.00068356839361356976) + +[fips4239336] +centroid = (0.72044917358310578, -1.3931558603155803) +description = Kennerdell CDP, PA +station = ('kfkl', 0.0019179728012561682) +zone = ('paz008', 0.0022931949193535708) + +[fips4239352] +centroid = (0.69540621209110998, -1.3214114136053052) +description = Kennett Square borough, PA +station = ('kmqs', 0.003187675402705409) +zone = ('paz067', 0.0023131555950407462) + +[fips4239504] +centroid = (0.72652312881955627, -1.3992211412656483) +description = Kerrtown CDP, PA +station = ('kgkj', 0.00062651492873000241) +zone = ('paz003', 0.0013063054509703984) + +[fips4239512] +centroid = (0.72182030424347243, -1.3719896241581144) +description = Kersey CDP, PA +station = ('kduj', 0.0047058318223345396) +zone = ('paz010', 0.0012978588507549856) + +[fips4239736] +centroid = (0.6998077230251295, -1.3156130284044523) +description = King of Prussia CDP, PA +station = ('klom', 0.0016858458623960067) +zone = ('paz068', 0.0020111246459098256) + +[fips4239784] +centroid = (0.72020582232550023, -1.3244705743583234) +description = Kingston borough, PA +station = ('kavp', 0.0023388121965276045) +zone = ('paz047', 0.0020346082564336558) + +[fips4239944] +centroid = (0.69546272585228963, -1.3279054172328333) +description = Kirkwood CDP, PA +station = ('kmqs', 0.0036798430738479732) +zone = ('mdz007', 0.003767880417500348) + +[fips4239960] +centroid = (0.70891650912482529, -1.3890292212854574) +description = Kiskimere CDP, PA +station = ('kbtp', 0.0056208619062675311) +zone = ('paz022', 0.0037543971697471044) + +[fips4240016] +centroid = (0.70471164443762802, -1.3590082491542159) +description = Kistler borough, PA +station = ('kaoo', 0.006151524580641117) +zone = ('paz026', 0.0016896622493643206) + +[fips4240040] +centroid = (0.71259524430900878, -1.3878629224661045) +description = Kittanning borough, PA +station = ('kidi', 0.0065030873789914496) +zone = ('paz022', 0.00076953777527441665) + +[fips4240136] +centroid = (0.709632565357041, -1.3385478415995489) +description = Klingerstown CDP, PA +station = ('kseg', 0.0035837208303416985) +zone = ('paz052', 0.0033759396745402454) + +[fips4240272] +centroid = (0.71967656868312546, -1.3881661908769312) +description = Knox borough, PA +station = ('kfkl', 0.0050537102085666859) +zone = ('paz015', 0.0016786419955663282) + +[fips4240360] +centroid = (0.73231582424704789, -1.3515386413814081) +description = Knoxville borough, PA +station = ('kelm', 0.007854037138441114) +zone = ('paz037', 0.0040328038222573739) + +[fips4240400] +centroid = (0.71272214719892135, -1.401820512480521) +description = Koppel borough, PA +station = ('kbvi', 0.0016203069437333542) +zone = ('paz020', 0.0027129979745936709) + +[fips4240432] +centroid = (0.71310697484569363, -1.3420999705997929) +description = Kratzerville CDP, PA +station = ('kseg', 0.00082330041542024183) +zone = ('paz052', 0.0024782790159987847) + +[fips4240464] +centroid = (0.71207187242621328, -1.343419718766981) +description = Kreamer CDP, PA +station = ('kseg', 0.0014299624552725563) +zone = ('paz050', 0.0013864454652336869) + +[fips4240584] +centroid = (0.71200951181203964, -1.334685270885253) +description = Kulpmont borough, PA +station = ('kseg', 0.005229609682408127) +zone = ('paz052', 0.0032870556648003134) + +[fips4240608] +centroid = (0.70238930933492438, -1.3149432408507069) +description = Kulpsville CDP, PA +station = ('klom', 0.0021142216918410973) +zone = ('paz068', 0.00067624512518321396) + +[fips4240656] +centroid = (0.707230329081181, -1.3225631738319887) +description = Kutztown borough, PA +station = ('krdg', 0.0036895206593958144) +zone = ('paz060', 0.0026929032731473133) + +[fips4240666] +centroid = (0.70709630524792044, -1.3227114220986531) +description = Kutztown University CDP, PA +station = ('krdg', 0.0035146593623588589) +zone = ('paz060', 0.0025192468864605093) + +[fips4240680] +centroid = (0.71556586450907333, -1.3642895107509956) +description = Kylertown CDP, PA +station = ('kfig', 0.0033931422202449569) +zone = ('paz018', 0.002177566484687218) + +[fips4240744] +centroid = (0.7268565216132723, -1.3292247814275857) +description = Laceyville borough, PA +station = ('kavp', 0.0077916115365134798) +zone = ('paz043', 0.0028990519770666252) + +[fips4240848] +centroid = (0.72063985080388615, -1.3228585359013039) +description = Laflin borough, PA +station = ('kavp', 0.0011040712251691282) +zone = ('paz047', 0.0032217840844201155) + +[fips4240948] +centroid = (0.71491522321722223, -1.3988509743845929) +description = Lake Arthur Estates CDP, PA +station = ('kbtp', 0.0040656256162576801) +zone = ('paz014', 0.0032218850025030497) + +[fips4240960] +centroid = (0.73334768035411946, -1.4023074942484124) +description = Lake City borough, PA +station = ('keri', 0.0024024869257451881) +zone = ('paz001', 0.0032270290584882596) + +[fips4240981] +centroid = (0.69478356588046097, -1.3471932776894253) +description = Lake Heritage CDP, PA +station = ('kdmw', 0.0042078034159645826) +zone = ('paz064', 0.0011735548263198056) + +[fips4240982] +centroid = (0.72045577092767832, -1.3993873140637307) +description = Lake Latonka CDP, PA +station = ('kfkl', 0.0044794349952724339) +zone = ('paz007', 0.0011083361812833741) + +[fips4240988] +centroid = (0.69785562461665129, -1.3445557012172265) +description = Lake Meade CDP, PA +station = ('kthv', 0.0023740155538974012) +zone = ('paz064', 0.0031154732766299456) + +[fips4240992] +centroid = (0.7062550565484591, -1.3681941962601423) +description = Lakemont CDP, PA +station = ('kaoo', 0.0030550621351909616) +zone = ('paz025', 0.0006363467047255767) + +[fips4241080] +centroid = (0.72456832515073755, -1.3238112238735049) +description = Lake Winola CDP, PA +station = ('kavp', 0.0035077254321933967) +zone = ('paz043', 0.0021925704541638376) + +[fips4241099] +centroid = (0.70841744967850995, -1.3295531651263486) +description = Lake Wynonah CDP, PA +station = ('krdg', 0.0047914752429489326) +zone = ('paz058', 0.0020965223614810911) + +[fips4241104] +centroid = (0.71576013710811281, -1.353039345285443) +description = Lamar CDP, PA +station = ('kunv', 0.0051325739048957509) +zone = ('paz045', 0.0022150076228929071) + +[fips4241192] +centroid = (0.69802048841779474, -1.3307314369043699) +description = Lampeter CDP, PA +station = ('klns', 0.0022683792358994385) +zone = ('paz066', 0.000851838762338822) + +[fips4241216] +centroid = (0.69886580373441309, -1.3317034980312681) +description = Lancaster city, PA +station = ('klns', 0.0013021816408264333) +zone = ('paz066', 0.00071207090712949324) + +[fips4241264] +centroid = (0.70900737096568411, -1.3285911745492345) +description = Landingville borough, PA +station = ('krdg', 0.0049318155570260286) +zone = ('paz058', 0.0019009698665182029) + +[fips4241272] +centroid = (0.704117394733909, -1.3492395017044634) +description = Landisburg borough, PA +station = ('kmdt', 0.0075997503151911195) +zone = ('paz056', 0.001127590915567502) + +[fips4241304] +centroid = (0.69969883193309756, -1.3335289728025139) +description = Landisville CDP, PA +station = ('klns', 0.001485502281874346) +zone = ('paz066', 0.0022652387021081179) + +[fips4241336] +centroid = (0.73240839651057366, -1.319097351363256) +description = Lanesboro borough, PA +station = ('kbgm', 0.0066670943012966284) +zone = ('paz039', 0.0038094800270878915) + +[fips4241376] +centroid = (0.70446968944342403, -1.4034832352990185) +description = Langeloth CDP, PA +station = ('kpit', 0.0031845913897057508) +zone = ('wvz002', 0.0026747211980875218) + +[fips4241392] +centroid = (0.70122883991527329, -1.3076603134946923) +description = Langhorne borough, PA +station = ('kpne', 0.0020608000860667663) +zone = ('njz015', 0.0034866341301786853) + +[fips4241416] +centroid = (0.70102819686446405, -1.3075701846921195) +description = Langhorne Manor borough, PA +station = ('kpne', 0.0019505135351075677) +zone = ('njz015', 0.0035408212896797515) + +[fips4241432] +centroid = (0.70234935874834614, -1.3139049444786954) +description = Lansdale borough, PA +station = ('klom', 0.0018306296974460355) +zone = ('paz068', 0.00126537837907563) + +[fips4241440] +centroid = (0.69709773284226539, -1.3138145887833197) +description = Lansdowne borough, PA +station = ('kphl', 0.0014138648322995582) +zone = ('paz070', 0.0016985284305966158) + +[fips4241464] +centroid = (0.71266983968123909, -1.3244400310964133) +description = Lansford borough, PA +station = ('kabe', 0.0065772752592258513) +zone = ('paz054', 0.0027593546700547828) + +[fips4241512] +centroid = (0.72287341846083342, -1.3350403232149861) +description = Laporte borough, PA +station = ('kipt', 0.0062851899903711029) +zone = ('paz042', 0.00055890627411804572) + +[fips4241608] +centroid = (0.72020168589517297, -1.3252307874206146) +description = Larksville borough, PA +station = ('kavp', 0.0028462854906951157) +zone = ('paz047', 0.0017081327698182215) + +[fips4241680] +centroid = (0.70358470279290786, -1.3854876689804807) +description = Latrobe city, PA +station = ('klbe', 0.00055824488774027989) +zone = ('paz074', 0.002391272815410636) + +[fips4241700] +centroid = (0.71546151127309654, -1.325763653894541) +description = Lattimer CDP, PA +station = ('kavp', 0.0066498430100554841) +zone = ('paz047', 0.0032375872383502051) + +[fips4241768] +centroid = (0.70493316162629116, -1.3249375546529869) +description = Laureldale borough, PA +station = ('krdg', 0.00081512451367395837) +zone = ('paz060', 0.00049557695684058556) + +[fips4241834] +centroid = (0.70181727767258317, -1.3820391601779276) +description = Laurel Mountain borough, PA +station = ('klbe', 0.0031286897915530913) +zone = ('paz074', 0.00077911427529904194) + +[fips4241848] +centroid = (0.71941490892166637, -1.3237374662593158) +description = Laurel Run borough, PA +station = ('kavp', 0.002465849798809244) +zone = ('paz047', 0.0020337205767615948) + +[fips4241856] +centroid = (0.71347293548325175, -1.3474694411369685) +description = Laurelton CDP, PA +station = ('kseg', 0.0045885542261786391) +zone = ('paz049', 0.0023806367818552032) + +[fips4241880] +centroid = (0.71075926265566591, -1.3184754905507705) +description = Laurys Station CDP, PA +station = ('kabe', 0.0017786042981839556) +zone = ('paz061', 0.0020378589041189945) + +[fips4241904] +centroid = (0.71143659003177995, -1.3332025438725135) +description = Lavelle CDP, PA +station = ('kmui', 0.0062165004722953771) +zone = ('paz058', 0.0024650788743062388) + +[fips4241944] +centroid = (0.70273560011181258, -1.3403757947383328) +description = Lawnton CDP, PA +station = ('kcxy', 0.001076341232322457) +zone = ('paz057', 0.0026595740467209136) + +[fips4241968] +centroid = (0.70344121927510128, -1.398329173298124) +description = Lawrence CDP, PA +station = ('kpit', 0.0034798052672239677) +zone = ('paz029', 0.0026471169927824276) + +[fips4241992] +centroid = (0.73566683895758445, -1.3966648447767147) +description = Lawrence Park CDP, PA +station = ('keri', 0.0023847879582001084) +zone = ('paz001', 0.0015658245100088613) + +[fips4242016] +centroid = (0.73296658771194645, -1.3461773389851319) +description = Lawrenceville borough, PA +station = ('kelm', 0.0042168766408956053) +zone = ('paz037', 0.0042252881614381699) + +[fips4242032] +centroid = (0.70325951304667622, -1.3855703801337325) +description = Lawson Heights CDP, PA +station = ('klbe', 0.00024862494947305717) +zone = ('paz073', 0.0026475132256516837) + +[fips4242084] +centroid = (0.69975216919503846, -1.3297468966733199) +description = Leola CDP, PA +station = ('klns', 0.0015404875526917267) +zone = ('paz066', 0.0011799666627673167) + +[fips4242168] +centroid = (0.70408662457919635, -1.3338283491291087) +description = Lebanon city, PA +station = ('kmui', 0.0024994673740108522) +zone = ('paz059', 0.0006498598758389113) + +[fips4242192] +centroid = (0.70385835296632804, -1.3335611566739209) +description = Lebanon South CDP, PA +station = ('kmui', 0.0028026324327525449) +zone = ('paz059', 0.00095529600066621677) + +[fips4242280] +centroid = (0.70913498944058995, -1.3893197138861593) +description = Leechburg borough, PA +station = ('kbtp', 0.0053198318823856573) +zone = ('paz022', 0.0036622578889845469) + +[fips4242328] +centroid = (0.72205065279815073, -1.3841436083768124) +description = Leeper CDP, PA +station = ('kfkl', 0.0073516383146565159) +zone = ('paz009', 0.0026520642124451092) + +[fips4242352] +centroid = (0.70588954969650641, -1.3258786885455398) +description = Leesport borough, PA +station = ('krdg', 0.0013583306605520424) +zone = ('paz060', 0.00073536509249953199) + +[fips4242392] +centroid = (0.70806290349425982, -1.4000592309191635) +description = Leetsdale borough, PA +station = ('kpit', 0.0015101522823156707) +zone = ('paz020', 0.0026378293876375492) + +[fips4242472] +centroid = (0.71257712779137306, -1.3215030433910351) +description = Lehighton borough, PA +station = ('kabe', 0.0046946348932868842) +zone = ('paz054', 0.0015852320363781737) + +[fips4242596] +centroid = (0.6959891520612761, -1.3915745047468109) +description = Leith-Hatfield CDP, PA +station = ('kmgw', 0.0046809833171359725) +zone = ('paz075', 0.0013564978998073431) + +[fips4242632] +centroid = (0.71230356488441549, -1.3581473131407922) +description = Lemont CDP, PA +station = ('kunv', 0.00080028489861582114) +zone = ('paz019', 0.0018519278451349587) + +[fips4242640] +centroid = (0.69657937005442294, -1.390382183068311) +description = Lemont Furnace CDP, PA +station = ('kmgw', 0.0056862540900134472) +zone = ('paz075', 0.0015956848611384203) + +[fips4242648] +centroid = (0.70239299197964611, -1.3421413523563577) +description = Lemoyne borough, PA +station = ('kcxy', 0.00081059271768991678) +zone = ('paz057', 0.0033890404017645616) + +[fips4242672] +centroid = (0.71144990689397258, -1.3879120534845482) +description = Lenape Heights CDP, PA +station = ('kidi', 0.0060196038259040987) +zone = ('paz022', 0.001145197418259228) + +[fips4242688] +centroid = (0.7081524563381798, -1.3245366176172189) +description = Lenhartsville borough, PA +station = ('krdg', 0.0037602839588325838) +zone = ('paz060', 0.0027935496807555342) + +[fips4242704] +centroid = (0.70742884283030294, -1.3431954090515146) +description = Lenkerville CDP, PA +station = ('kseg', 0.0051062100602245345) +zone = ('paz057', 0.0031478404933637178) + +[fips4242824] +centroid = (0.73020565136821669, -1.3294784475810706) +description = Le Raysville borough, PA +station = ('kbgm', 0.0067870722821367704) +zone = ('paz043', 0.0059368078449245345) + +[fips4242912] +centroid = (0.7049419057258437, -1.3914025200023192) +description = Level Green CDP, PA +station = ('kagc', 0.0026884356259395219) +zone = ('paz073', 0.0021067615199877846) + +[fips4242928] +centroid = (0.70081638370644206, -1.3064360697441735) +description = Levittown CDP, PA +station = ('kttn', 0.0023124633775273126) +zone = ('njz015', 0.0030328437663656848) + +[fips4242968] +centroid = (0.70049897812867434, -1.3414763295514704) +description = Lewisberry borough, PA +station = ('kcxy', 0.0014217631927118991) +zone = ('paz065', 0.0041719570871166936) + +[fips4242976] +centroid = (0.71495889135510715, -1.3419829113668615) +description = Lewisburg borough, PA +station = ('kseg', 0.0025919486809725689) +zone = ('paz049', 0.0022688342951681607) + +[fips4242984] +centroid = (0.73072020933828963, -1.3727649866783127) +description = Lewis Run borough, PA +station = ('kbfd', 0.001201949416109469) +zone = ('paz005', 0.0015118059317192373) + +[fips4243000] +centroid = (0.70855531323612497, -1.3538783599634616) +description = Lewistown borough, PA +station = ('kunv', 0.0057473152625449686) +zone = ('paz027', 0.0006462984456936568) + +[fips4243064] +centroid = (0.70374654717444529, -1.3938749359674019) +description = Liberty borough, PA +station = ('kagc', 0.00086645806961045387) +zone = ('paz021', 0.0030088218711821894) + +[fips4243128] +centroid = (0.72532883491900157, -1.3457660521468995) +description = Liberty borough, PA +station = ('kipt', 0.005927879560011509) +zone = ('paz041', 0.0024550871333496684) + +[fips4243224] +centroid = (0.71627932020070351, -1.333757872733913) +description = Lightstreet CDP, PA +station = ('kseg', 0.0070751835690164334) +zone = ('paz053', 0.00023505573779396307) + +[fips4243232] +centroid = (0.70240671026756674, -1.3829550391562042) +description = Ligonier borough, PA +station = ('klbe', 0.0022657267932159764) +zone = ('paz074', 0.0001515339577704049) + +[fips4243248] +centroid = (0.70553866870368553, -1.3721796032471938) +description = Lilly borough, PA +station = ('kjst', 0.0034020911496697621) +zone = ('paz024', 0.0017543523719171193) + +[fips4243272] +centroid = (0.69672582063195787, -1.316703161055248) +description = Lima CDP, PA +station = ('kphl', 0.0029362527023233205) +zone = ('paz070', 0.00057137918303786092) + +[fips4243320] +centroid = (0.71599757169955414, -1.3326453300555219) +description = Lime Ridge CDP, PA +station = ('kseg', 0.0076545099160229575) +zone = ('paz053', 0.00079206899904511513) + +[fips4243408] +centroid = (0.70321982425948582, -1.3938155947728341) +description = Lincoln borough, PA +station = ('kagc', 0.0012708647031127341) +zone = ('paz021', 0.0034899787111651761) + +[fips4243496] +centroid = (0.70362289059694139, -1.3262489775996429) +description = Lincoln Park CDP, PA +station = ('krdg', 0.00095353189004804099) +zone = ('paz060', 0.001961009580811236) + +[fips4243544] +centroid = (0.69475262119282311, -1.3251907670208662) +description = Lincoln University CDP, PA +station = ('kmqs', 0.0031274327260887315) +zone = ('paz067', 0.0037771172154092932) + +[fips4243552] +centroid = (0.72937730065192763, -1.3934371550311242) +description = Lincolnville CDP, PA +station = ('kgkj', 0.0056419309028855604) +zone = ('paz002', 0.0038819887748245507) + +[fips4243656] +centroid = (0.72704213737922185, -1.4036349218643094) +description = Linesville borough, PA +station = ('kgkj', 0.0027128654892028229) +zone = ('ohz014', 0.0041999547687424435) + +[fips4243672] +centroid = (0.70414174207697422, -1.3403225098362692) +description = Linglestown CDP, PA +station = ('kcxy', 0.0023464734259395796) +zone = ('paz057', 0.0012590536756384516) + +[fips4243704] +centroid = (0.71482844544681323, -1.342162278854089) +description = Linntown CDP, PA +station = ('kseg', 0.0024830441579312798) +zone = ('paz049', 0.0021362987469473239) + +[fips4243720] +centroid = (0.69506637903245416, -1.3164037672753608) +description = Linwood CDP, PA +station = ('kphl', 0.0026643727750506494) +zone = ('paz070', 0.0016469344198700782) + +[fips4243747] +centroid = (0.69903223833188333, -1.3202391632132033) +description = Lionville CDP, PA +station = ('kmqs', 0.0032675376035341242) +zone = ('paz067', 0.0019510022702031113) + +[fips4243816] +centroid = (0.70081509216279558, -1.331761931654625) +description = Lititz borough, PA +station = ('klns', 0.00064975735839750345) +zone = ('paz066', 0.0020852992525079504) + +[fips4243828] +centroid = (0.69422963328246312, -1.3283748584417423) +description = Little Britain CDP, PA +station = ('kmqs', 0.0047937887613774535) +zone = ('mdz007', 0.0024831771418365825) + +[fips4243928] +centroid = (0.73284732936415764, -1.3286793311297527) +description = Little Meadows borough, PA +station = ('kbgm', 0.0041292756952987916) +zone = ('nyz055', 0.0039189028123928745) + +[fips4243944] +centroid = (0.69368409571816714, -1.3454606020745079) +description = Littlestown borough, PA +station = ('kdmw', 0.0025880454958545169) +zone = ('paz064', 0.0027996834261166258) + +[fips4243968] +centroid = (0.70814048337951108, -1.3437743347644011) +description = Liverpool borough, PA +station = ('kseg', 0.0045601338670991773) +zone = ('paz050', 0.0035803877569317247) + +[fips4244128] +centroid = (0.71797272590745098, -1.3517982940142272) +description = Lock Haven city, PA +station = ('kunv', 0.0072456934303666157) +zone = ('paz045', 0.0013691578291449397) + +[fips4244224] +centroid = (0.71171975224962336, -1.3329703976287057) +description = Locustdale CDP, PA +station = ('kmui', 0.0065457001901071512) +zone = ('paz058', 0.0024391019701522918) + +[fips4244400] +centroid = (0.7161824020673403, -1.3491802477763584) +description = Loganton borough, PA +station = ('kipt', 0.0063148871829633553) +zone = ('paz045', 0.0013076390717359787) + +[fips4244416] +centroid = (0.69561792052937688, -1.3388047715187352) +description = Loganville borough, PA +station = ('kthv', 0.0025776753823016649) +zone = ('paz065', 0.0011433454572390487) + +[fips4244512] +centroid = (0.69984819721048319, -1.3941703853031795) +description = Long Branch borough, PA +station = ('kagc', 0.0044191350644394115) +zone = ('paz075', 0.0029890421090283553) + +[fips4244528] +centroid = (0.70697427182662087, -1.3555212907482415) +description = Longfellow CDP, PA +station = ('kunv', 0.0064704626283072133) +zone = ('paz027', 0.0019219399248426353) + +[fips4244664] +centroid = (0.70329894003447879, -1.376996973782086) +description = Lorain borough, PA +station = ('kjst', 0.00090971810519217984) +zone = ('paz024', 0.0042414459974774348) + +[fips4244672] +centroid = (0.70327590168835241, -1.323762354654449) +description = Lorane CDP, PA +station = ('krdg', 0.0020380357437518428) +zone = ('paz060', 0.0023750460362522412) + +[fips4244704] +centroid = (0.7070083755602049, -1.3724377199902713) +description = Loretto borough, PA +station = ('kjst', 0.0042632635323439578) +zone = ('paz024', 0.0010696775749214139) + +[fips4244824] +centroid = (0.70208919997004393, -1.3422065229506273) +description = Lower Allen CDP, PA +station = ('kcxy', 0.0007249035561672989) +zone = ('paz057', 0.0036819134993840816) + +[fips4244864] +centroid = (0.70829178597236642, -1.3912535212440764) +description = Lower Burrell city, PA +station = ('kbtp', 0.0047090194595696931) +zone = ('paz021', 0.0040714407441896951) + +[fips4245192] +centroid = (0.70361964428453272, -1.3850250869155321) +description = Loyalhanna CDP, PA +station = ('klbe', 0.0007976762086965018) +zone = ('paz074', 0.0021274220396113848) + +[fips4245312] +centroid = (0.70784524348324362, -1.3814960835278771) +description = Lucerne Mines CDP, PA +station = ('kidi', 0.00151865942348861) +zone = ('paz023', 0.0018855840319138184) + +[fips4245448] +centroid = (0.71436514779687121, -1.3714149221420175) +description = Lumber City borough, PA +station = ('kfig', 0.0029665846967542263) +zone = ('paz017', 0.0018194084894595207) + +[fips4245452] +centroid = (0.70960671703081901, -1.3544008417283386) +description = Lumber City CDP, PA +station = ('kunv', 0.0047000030345961006) +zone = ('paz027', 0.000847267302452579) + +[fips4245568] +centroid = (0.72058970749447637, -1.3246460497613191) +description = Luzerne borough, PA +station = ('kavp', 0.0022899896755273859) +zone = ('paz047', 0.0022633059762069332) + +[fips4245592] +centroid = (0.70797727764115703, -1.3386392793990609) +description = Lykens borough, PA +station = ('kmui', 0.0028749869822192902) +zone = ('paz057', 0.0028068248445881653) + +[fips4245732] +centroid = (0.70040195527555604, -1.3936793543714234) +description = Lynnwood-Pricedale CDP, PA +station = ('kagc', 0.0039340590544090538) +zone = ('paz075', 0.0033451545434391339) + +[fips4245752] +centroid = (0.70651936921038117, -1.3222430804471732) +description = Lyons borough, PA +station = ('krdg', 0.0034014185964462728) +zone = ('paz060', 0.0024854570990617622) + +[fips4245824] +centroid = (0.71385647158637744, -1.3263165218416952) +description = McAdoo borough, PA +station = ('kavp', 0.0082791496552334452) +zone = ('paz058', 0.0045079686504861166) + +[fips4245848] +centroid = (0.70926649999972768, -1.3486684474265034) +description = McAlisterville CDP, PA +station = ('kseg', 0.006213823967351712) +zone = ('paz028', 0.0025303693429136269) + +[fips4245992] +centroid = (0.71048510633676254, -1.3493379033676911) +description = McClure borough, PA +station = ('kunv', 0.0075389388848106035) +zone = ('paz028', 0.0033094555858610669) + +[fips4246000] +centroid = (0.69694204947298743, -1.361281453238476) +description = McConnellsburg borough, PA +station = ('khgr', 0.0053611883997603865) +zone = ('paz035', 0.0015660599464039021) + +[fips4246016] +centroid = (0.70623107572453681, -1.3625299745188901) +description = McConnellstown CDP, PA +station = ('kaoo', 0.0043814970203536968) +zone = ('paz026', 0.0014071740135663646) + +[fips4246072] +centroid = (0.70459058840070965, -1.4003208383207448) +description = McDonald borough, PA +station = ('kpit', 0.0019769034171789363) +zone = ('paz029', 0.0031601787693216368) + +[fips4246112] +centroid = (0.71829941663683927, -1.3501826252723637) +description = McElhattan CDP, PA +station = ('kipt', 0.006047704154433676) +zone = ('paz045', 0.0013692209509249299) + +[fips4246120] +centroid = (0.71684728524588748, -1.3407403242059044) +description = McEwensville borough, PA +station = ('kipt', 0.0033572853285656476) +zone = ('paz051', 0.0022455359174630069) + +[fips4246160] +centroid = (0.70229504410202415, -1.4002010563741807) +description = McGovern CDP, PA +station = ('kafj', 0.0019910089759505568) +zone = ('paz029', 0.00090899536215348462) + +[fips4246216] +centroid = (0.73299948716834651, -1.3986881700719669) +description = McKean borough, PA +station = ('keri', 0.001600327167005443) +zone = ('paz001', 0.001825149115030029) + +[fips4246232] +centroid = (0.71004032663018435, -1.3267915481042103) +description = McKeansburg CDP, PA +station = ('krdg', 0.0055535894482578851) +zone = ('paz058', 0.0026319564485310283) + +[fips4246256] +centroid = (0.70409858008457238, -1.39355826342792) +description = McKeesport city, PA +station = ('kagc', 0.0009637035209904629) +zone = ('paz021', 0.0028606778726794481) + +[fips4246264] +centroid = (0.70631762660214314, -1.3973686837041666) +description = McKees Rocks borough, PA +station = ('kpit', 0.0022708262852430884) +zone = ('paz021', 0.0010904806051759478) + +[fips4246312] +centroid = (0.69586411667366321, -1.3496686956208215) +description = McKnightstown CDP, PA +station = ('kryt', 0.0027863255975262157) +zone = ('paz064', 0.0015061002584705748) + +[fips4246344] +centroid = (0.70304424413673516, -1.39778939532036) +description = McMurray CDP, PA +station = ('kagc', 0.0025681070552222443) +zone = ('paz029', 0.0026777531280309011) + +[fips4246376] +centroid = (0.69470260005646101, -1.3442506700238555) +description = McSherrystown borough, PA +station = ('kthv', 0.0026919024149795489) +zone = ('paz064', 0.0029067950495565193) + +[fips4246392] +centroid = (0.70713674452668907, -1.3186656267194827) +description = Macungie borough, PA +station = ('kxll', 0.0012687942460526994) +zone = ('paz061', 0.001767114142676903) + +[fips4246400] +centroid = (0.70682757690299081, -1.3568391539598375) +description = McVeytown borough, PA +station = ('kunv', 0.006306210220458526) +zone = ('paz027', 0.0025570687066964167) + +[fips4246488] +centroid = (0.70241749640234408, -1.3905886555188218) +description = Madison borough, PA +station = ('klbe', 0.0037195168736916802) +zone = ('paz073', 0.0021822820597025509) + +[fips4246504] +centroid = (0.7143340634828933, -1.3529594790188717) +description = Madisonburg CDP, PA +station = ('kunv', 0.0045779309564211428) +zone = ('paz045', 0.0031861429365661084) + +[fips4246568] +centroid = (0.71340401243109053, -1.3740605271287756) +description = Mahaffey borough, PA +station = ('kfig', 0.0051134445235037551) +zone = ('paz017', 0.0039958229659218985) + +[fips4246592] +centroid = (0.71231471753833575, -1.3288619972892661) +description = Mahanoy City borough, PA +station = ('krdg', 0.0081086459404023318) +zone = ('paz058', 0.0021279323846234541) + +[fips4246720] +centroid = (0.71528545991144787, -1.3328986820497413) +description = Mainville CDP, PA +station = ('kseg', 0.0071716969524534884) +zone = ('paz053', 0.0012404720790004876) + +[fips4246728] +centroid = (0.70899136629644333, -1.3526636631639513) +description = Maitland CDP, PA +station = ('kunv', 0.0060824186187195756) +zone = ('paz027', 0.0015398464910937517) + +[fips4246792] +centroid = (0.69871024253818281, -1.3179917201887026) +description = Malvern borough, PA +station = ('kptw', 0.0035243311500381472) +zone = ('paz070', 0.0025598551351035384) + +[fips4246800] +centroid = (0.70159944312864175, -1.3868886098644713) +description = Mammoth CDP, PA +station = ('klbe', 0.0016982401151449712) +zone = ('paz073', 0.0029508326418038805) + +[fips4246864] +centroid = (0.69920197160163977, -1.3390051702234491) +description = Manchester borough, PA +station = ('kmdt', 0.0025014077610606557) +zone = ('paz065', 0.0024701331231393813) + +[fips4246888] +centroid = (0.70098135222734048, -1.3333612641146899) +description = Manheim borough, PA +station = ('klns', 0.001517042450390786) +zone = ('paz066', 0.00289286156458512) + +[fips4246944] +centroid = (0.69819180993717056, -1.3716756568789732) +description = Manns Choice borough, PA +station = ('kaoo', 0.0063407334032519478) +zone = ('paz034', 0.0013517407296660775) + +[fips4247000] +centroid = (0.70416947535878849, -1.3904910043471725) +description = Manor borough, PA +station = ('klbe', 0.0037463299205249285) +zone = ('paz073', 0.001256818151638735) + +[fips4247064] +centroid = (0.71188205041676644, -1.3879006215779477) +description = Manorville borough, PA +station = ('kidi', 0.0061863855750963525) +zone = ('paz022', 0.00085995626408493626) + +[fips4247080] +centroid = (0.72965568066762065, -1.3452719145290748) +description = Mansfield borough, PA +station = ('kelm', 0.0067036835626512184) +zone = ('paz037', 0.0023650532465513464) + +[fips4247152] +centroid = (0.70123414571619935, -1.3121253195068994) +description = Maple Glen CDP, PA +station = ('klom', 0.0013424689938683454) +zone = ('paz068', 0.0025717178142063688) + +[fips4247248] +centroid = (0.70497171594946761, -1.3603386612831336) +description = Mapleton borough, PA +station = ('kaoo', 0.0052398377751390517) +zone = ('paz026', 0.00068406925378395353) + +[fips4247264] +centroid = (0.69472867527548587, -1.3952282468161059) +description = Mapletown CDP, PA +station = ('kmgw', 0.0027247758494312554) +zone = ('wvz022', 0.0033640801123927108) + +[fips4247344] +centroid = (0.69486598032774016, -1.3162610167958402) +description = Marcus Hook borough, PA +station = ('kphl', 0.0026242649397269823) +zone = ('paz070', 0.0018264555599368012) + +[fips4247400] +centroid = (0.69835552182100757, -1.3982198982336567) +description = Marianna borough, PA +station = ('kafj', 0.00310707927342129) +zone = ('paz031', 0.0031467780504255047) + +[fips4247404] +centroid = (0.71985640740925094, -1.3863675941761662) +description = Marianne CDP, PA +station = ('kfkl', 0.0061781279351325463) +zone = ('paz015', 0.00092519405668904631) + +[fips4247416] +centroid = (0.72376603220018076, -1.3808723028532142) +description = Marienville CDP, PA +station = ('kduj', 0.0058553882671576523) +zone = ('paz009', 0.0017262117440349589) + +[fips4247424] +centroid = (0.69912728896294696, -1.3360796144246712) +description = Marietta borough, PA +station = ('klns', 0.0035186514210818328) +zone = ('paz065', 0.003345388640833898) + +[fips4247464] +centroid = (0.69569972411141789, -1.3561482304688504) +description = Marion CDP, PA +station = ('khgr', 0.0028361923000205153) +zone = ('paz036', 0.0011958599643615336) + +[fips4247472] +centroid = (0.71157979429690599, -1.3796340790153869) +description = Marion Center borough, PA +station = ('kidi', 0.0024941460584934393) +zone = ('paz023', 0.0021344279916935202) + +[fips4247480] +centroid = (0.71215599729615942, -1.3345496064424953) +description = Marion Heights borough, PA +station = ('kseg', 0.005323385263511074) +zone = ('paz052', 0.0033448579165399994) + +[fips4247544] +centroid = (0.70483648783902308, -1.3642995813007797) +description = Marklesburg borough, PA +station = ('kaoo', 0.002456961554149424) +zone = ('paz026', 0.0025559929864371407) + +[fips4247560] +centroid = (0.69352881377461728, -1.3866945292516497) +description = Markleysburg borough, PA +station = ('k2g4', 0.0031134614396247022) +zone = ('paz076', 0.0028133432678732334) + +[fips4247600] +centroid = (0.71010190184619482, -1.3306785883346195) +description = Marlin CDP, PA +station = ('kmui', 0.0061583393584875431) +zone = ('paz058', 0.00049332542673833594) + +[fips4247672] +centroid = (0.71029575556621372, -1.3965094755667022) +description = Mars borough, PA +station = ('kbtp', 0.0017296329575981289) +zone = ('paz014', 0.0039789781784336179) + +[fips4247736] +centroid = (0.71183476944732982, -1.3358138531394699) +description = Marshallton CDP, PA +station = ('kseg', 0.0043967648002603008) +zone = ('paz052', 0.0025612037140390694) + +[fips4247872] +centroid = (0.70355777236254946, -1.367014109339699) +description = Martinsburg borough, PA +station = ('kaoo', 0.00021453088632355323) +zone = ('paz025', 0.0029919173351991312) + +[fips4247896] +centroid = (0.71179265465247932, -1.3123167646725507) +description = Martins Creek CDP, PA +station = ('kabe', 0.004144379518443618) +zone = ('paz062', 0.0016264813161447325) + +[fips4247968] +centroid = (0.70402443849794771, -1.3427179044214614) +description = Marysville borough, PA +station = ('kcxy', 0.0023772523635640329) +zone = ('paz057', 0.0024450754345292139) + +[fips4248000] +centroid = (0.69553185834396103, -1.3946197901322754) +description = Masontown borough, PA +station = ('kmgw', 0.0035118229084166439) +zone = ('paz075', 0.0024726330508984414) + +[fips4248032] +centroid = (0.72460089299457975, -1.3094395544940531) +description = Masthope CDP, PA +station = ('kmsv', 0.0043471781667585151) +zone = ('paz048', 0.0032215106974099405) + +[fips4248048] +centroid = (0.7219833005423163, -1.303755209106525) +description = Matamoras borough, PA +station = ('kfwn', 0.0030350282516791094) +zone = ('njz001', 0.0039672651339416982) + +[fips4248064] +centroid = (0.69700744696005967, -1.3975632181025939) +description = Mather CDP, PA +station = ('kafj', 0.0044386657842009373) +zone = ('paz031', 0.0024469825213611395) + +[fips4248072] +centroid = (0.70680335173297304, -1.3565964833806401) +description = Mattawana CDP, PA +station = ('kunv', 0.0063742132319368622) +zone = ('paz027', 0.002461997605811068) + +[fips4248176] +centroid = (0.72500563484811731, -1.3182697162319603) +description = Mayfield borough, PA +station = ('kavp', 0.0044687229260428974) +zone = ('paz044', 0.0020626085687390741) + +[fips4248224] +centroid = (0.69958871911058917, -1.3363398081095585) +description = Maytown CDP, PA +station = ('kmdt', 0.0033554131428374374) +zone = ('paz065', 0.0035664586072917609) + +[fips4248320] +centroid = (0.70192527864669663, -1.4002762800649415) +description = Meadowlands CDP, PA +station = ('kafj', 0.001630304006246278) +zone = ('paz029', 0.00054538117084412102) + +[fips4248336] +centroid = (0.71280532959107135, -1.3944476832147363) +description = Meadowood CDP, PA +station = ('kbtp', 0.001230129766323041) +zone = ('paz014', 0.0012587706119903033) + +[fips4248360] +centroid = (0.72689043336063841, -1.3988380938547131) +description = Meadville city, PA +station = ('kgkj', 0.00093637586092258597) +zone = ('paz003', 0.00084076003184678852) + +[fips4248376] +centroid = (0.70182139664961796, -1.3440070220602771) +description = Mechanicsburg borough, PA +station = ('kcxy', 0.0020802628288268867) +zone = ('paz063', 0.0035544529729577439) + +[fips4248448] +centroid = (0.71018888905611421, -1.3296038145812417) +description = Mechanicsville borough, PA +station = ('krdg', 0.0063300713272811263) +zone = ('paz058', 0.00053624528980011324) + +[fips4248480] +centroid = (0.69673536758296628, -1.3157692004659207) +description = Media borough, PA +station = ('kphl', 0.0022709233643548534) +zone = ('paz070', 0.00015780970148037606) + +[fips4248696] +centroid = (0.71953844332612249, -1.4003884523759673) +description = Mercer borough, PA +station = ('kucp', 0.0042130887610393195) +zone = ('paz007', 0.001350309974358876) + +[fips4248704] +centroid = (0.69519755797903404, -1.3596619273189654) +description = Mercersburg borough, PA +station = ('khgr', 0.0032361784202578621) +zone = ('paz036', 0.0029506933785787104) + +[fips4248728] +centroid = (0.71301229073377292, -1.3954754727046508) +description = Meridian CDP, PA +station = ('kbtp', 0.001210543852974227) +zone = ('paz014', 0.0011701248952899084) + +[fips4248824] +centroid = (0.70688854125376299, -1.3206124542336197) +description = Mertztown CDP, PA +station = ('kxll', 0.0026153761040210079) +zone = ('paz061', 0.0021690546248324047) + +[fips4248856] +centroid = (0.7262186561315459, -1.3271801107555821) +description = Meshoppen borough, PA +station = ('kavp', 0.0062823391866897822) +zone = ('paz043', 0.0016199763506135876) + +[fips4248868] +centroid = (0.70088195572643941, -1.3435826277993619) +description = Messiah College CDP, PA +station = ('kcxy', 0.0020354484056907757) +zone = ('paz063', 0.0037827833111833465) + +[fips4248904] +centroid = (0.70758525923786653, -1.3501565500533388) +description = Mexico CDP, PA +station = ('kunv', 0.0084440949902755379) +zone = ('paz028', 0.00060854537885084332) + +[fips4248912] +centroid = (0.69487381685608163, -1.3792933732921049) +description = Meyersdale borough, PA +station = ('kcbe', 0.0049784903102794032) +zone = ('paz033', 0.0027779304463578436) + +[fips4248960] +centroid = (0.71191107524222697, -1.3446865136446633) +description = Middleburg borough, PA +station = ('kseg', 0.0024014898214050084) +zone = ('paz050', 0.00047653410764045615) + +[fips4249048] +centroid = (0.71083392784106625, -1.327965596185442) +description = Middleport borough, PA +station = ('krdg', 0.0065010190160040456) +zone = ('paz058', 0.0017509822084869964) + +[fips4249128] +centroid = (0.70163787527877064, -1.3391768757152605) +description = Middletown borough, PA +station = ('kmdt', 0.00049992315702495314) +zone = ('paz057', 0.0038043641711437812) + +[fips4249144] +centroid = (0.70937172590033037, -1.3146619984950405) +description = Middletown CDP, PA +station = ('kabe', 0.001664108069914252) +zone = ('paz062', 0.0019383760287327162) + +[fips4249184] +centroid = (0.70920333653409795, -1.4042572190091078) +description = Midland borough, PA +station = ('kbvi', 0.0024334590245167517) +zone = ('paz020', 0.0016649112084405416) + +[fips4249224] +centroid = (0.6947115710488162, -1.3439893767815394) +description = Midway CDP, PA +station = ('kthv', 0.0025529020344111108) +zone = ('paz064', 0.0030876047838344915) + +[fips4249240] +centroid = (0.70456610143130427, -1.4013459574569038) +description = Midway borough, PA +station = ('kpit', 0.002143994608487158) +zone = ('paz029', 0.003180725102777217) + +[fips4249272] +centroid = (0.70805511932579601, -1.3509640615383591) +description = Mifflin borough, PA +station = ('kunv', 0.007671995262837644) +zone = ('paz028', 0.00065484112762862498) + +[fips4249288] +centroid = (0.71418106792066338, -1.3447308624609566) +description = Mifflinburg borough, PA +station = ('kseg', 0.0029858679028226848) +zone = ('paz049', 0.00078252233770701406) + +[fips4249304] +centroid = (0.7081005676995179, -1.3508000180419641) +description = Mifflintown borough, PA +station = ('kunv', 0.0077391760133445862) +zone = ('paz028', 0.0007053148799667946) + +[fips4249312] +centroid = (0.71609780595849604, -1.3316913505396741) +description = Mifflinville CDP, PA +station = ('kseg', 0.0083408480561337848) +zone = ('paz053', 0.0014211703454878402) + +[fips4249368] +centroid = (0.71458134173131582, -1.357724891101932) +description = Milesburg borough, PA +station = ('kunv', 0.0017870397910215836) +zone = ('paz019', 0.0016832788906495681) + +[fips4249400] +centroid = (0.72123394342797253, -1.3055240653968363) +description = Milford borough, PA +station = ('kfwn', 0.0030819076022222318) +zone = ('paz048', 0.0030531700872907914) + +[fips4249440] +centroid = (0.70569215295810594, -1.3160659413453446) +description = Milford Square CDP, PA +station = ('kukt', 0.00031191136329629935) +zone = ('paz068', 0.003912065107170808) + +[fips4249504] +centroid = (0.69749875714449605, -1.3134059024856728) +description = Millbourne borough, PA +station = ('kphl', 0.001713711938341105) +zone = ('paz071', 0.0017637164316896567) + +[fips4249552] +centroid = (0.70575983682649823, -1.360151125655007) +description = Mill Creek borough, PA +station = ('kaoo', 0.0056598673036197394) +zone = ('paz026', 0.00075422050011718573) + +[fips4249680] +centroid = (0.70761215476163986, -1.3430815612244071) +description = Millersburg borough, PA +station = ('kseg', 0.0049076539743424285) +zone = ('paz057', 0.0032069562225854587) + +[fips4249720] +centroid = (0.7078329912718947, -1.3465461794159561) +description = Millerstown borough, PA +station = ('kseg', 0.0059096949609950544) +zone = ('paz056', 0.0031167701869660469) + +[fips4249728] +centroid = (0.69822458722052294, -1.3325896016925056) +description = Millersville borough, PA +station = ('klns', 0.0020626648584419955) +zone = ('paz066', 0.0015339796322161377) + +[fips4249736] +centroid = (0.73280774529672243, -1.3428503400051028) +description = Millerton CDP, PA +station = ('kelm', 0.0031811799739744811) +zone = ('nyz024', 0.0035624532001920029) + +[fips4249760] +centroid = (0.71741776356519438, -1.3524376604791104) +description = Mill Hall borough, PA +station = ('kunv', 0.0065145847874602016) +zone = ('paz045', 0.0014777626928898387) + +[fips4249768] +centroid = (0.71372812007318576, -1.3522206113333324) +description = Millheim borough, PA +station = ('kunv', 0.0049873279202562026) +zone = ('paz045', 0.003465008542031499) + +[fips4249880] +centroid = (0.69795943680055994, -1.3963025493305861) +description = Millsboro CDP, PA +station = ('kafj', 0.0045105616918038067) +zone = ('paz031', 0.0037927607401252728) + +[fips4249920] +centroid = (0.70653980701592201, -1.3958060380649784) +description = Millvale borough, PA +station = ('kagc', 0.0024215224578124552) +zone = ('paz021', 0.00024645998770462038) + +[fips4249936] +centroid = (0.7309004494901431, -1.3957856177127301) +description = Mill Village borough, PA +station = ('keri', 0.0045142071608023906) +zone = ('paz002', 0.0017013062398720375) + +[fips4249944] +centroid = (0.71769640538027524, -1.3356239089569755) +description = Millville borough, PA +station = ('kipt', 0.0056084460729708659) +zone = ('paz053', 0.0020260472297783348) + +[fips4249960] +centroid = (0.70424733449671995, -1.3837900919368207) +description = Millwood CDP, PA +station = ('klbe', 0.0019232115791978821) +zone = ('paz074', 0.0020983617332885822) + +[fips4250000] +centroid = (0.71068208419614276, -1.3541850666729147) +description = Milroy CDP, PA +station = ('kunv', 0.0041363429436602518) +zone = ('paz027', 0.0019328022908999811) + +[fips4250016] +centroid = (0.7157427012688854, -1.3413105581791158) +description = Milton borough, PA +station = ('kseg', 0.0033634841761435537) +zone = ('paz052', 0.0033218086085025594) + +[fips4250088] +centroid = (0.71018845272380116, -1.3309778424881664) +description = Minersville borough, PA +station = ('kmui', 0.006065482901497242) +zone = ('paz058', 0.00063201441733191574) + +[fips4250104] +centroid = (0.71448510427636081, -1.3554165884464144) +description = Mingoville CDP, PA +station = ('kunv', 0.0029345548294515086) +zone = ('paz019', 0.0012357878071136412) + +[fips4250208] +centroid = (0.71800333898253099, -1.328773770895578) +description = Mocanaqua CDP, PA +station = ('kavp', 0.0062521873855852237) +zone = ('paz047', 0.0020116557453519371) + +[fips4250232] +centroid = (0.6975255304952217, -1.3230555661205614) +description = Modena borough, PA +station = ('kmqs', 0.00090020654788468529) +zone = ('paz067', 0.00077784110337166196) + +[fips4250272] +centroid = (0.70314866718588198, -1.3262218726363595) +description = Mohnton borough, PA +station = ('krdg', 0.0014085826905134706) +zone = ('paz060', 0.0023919885136097509) + +[fips4250280] +centroid = (0.70651488371420357, -1.3261342222013244) +description = Mohrsville CDP, PA +station = ('krdg', 0.0019939334731607482) +zone = ('paz060', 0.0013400566373553337) + +[fips4250320] +centroid = (0.71006004885073193, -1.4010357949955319) +description = Monaca borough, PA +station = ('kbvi', 0.00221633953559949) +zone = ('paz020', 0.0010042579945978593) + +[fips4250344] +centroid = (0.70078400784881756, -1.3942215059969705) +description = Monessen city, PA +station = ('kagc', 0.0034853044632520581) +zone = ('paz075', 0.0038494339974841298) + +[fips4250408] +centroid = (0.70146817691559937, -1.3949103525461477) +description = Monongahela city, PA +station = ('kagc', 0.0027732555102884795) +zone = ('paz029', 0.0043428761961767249) + +[fips4250432] +centroid = (0.72801405887977988, -1.3347415228470445) +description = Monroe borough, PA +station = ('kelm', 0.0096628089023184944) +zone = ('paz038', 0.0014357028607688063) + +[fips4250528] +centroid = (0.70557252809117421, -1.3920983304152119) +description = Monroeville municipality, PA +station = ('kagc', 0.002457093363077395) +zone = ('paz021', 0.0030125418688085773) + +[fips4250544] +centroid = (0.69535313662855691, -1.35360553009479) +description = Mont Alto borough, PA +station = ('kryt', 0.002567136410500841) +zone = ('paz036', 0.0026817263275880966) + +[fips4250552] +centroid = (0.71497725221883812, -1.3413400716967672) +description = Montandon CDP, PA +station = ('kseg', 0.0025981796586428702) +zone = ('paz052', 0.0027406273119938208) + +[fips4250632] +centroid = (0.71859216071227627, -1.3416578612469703) +description = Montgomery borough, PA +station = ('kipt', 0.0014810306284475407) +zone = ('paz046', 0.0011445663066983254) + +[fips4250672] +centroid = (0.70249910799816728, -1.3131946129264263) +description = Montgomeryville CDP, PA +station = ('klom', 0.0019944873221144277) +zone = ('paz068', 0.0018223771454041976) + +[fips4250720] +centroid = (0.71988710775079356, -1.3424496647687225) +description = Montoursville borough, PA +station = ('kipt', 6.1210261114179939e-05) +zone = ('paz046', 0.0003107709987468382) + +[fips4250736] +centroid = (0.73013276641865332, -1.324286407215653) +description = Montrose borough, PA +station = ('kbgm', 0.006545787220662241) +zone = ('paz039', 0.0010009252436480973) + +[fips4250748] +centroid = (0.70347750467025028, -1.3262263755858297) +description = Montrose Manor CDP, PA +station = ('krdg', 0.0010884832178298925) +zone = ('paz060', 0.0020868583634780988) + +[fips4250760] +centroid = (0.71752555509979743, -1.3561944816940283) +description = Monument CDP, PA +station = ('kunv', 0.0049467054942919243) +zone = ('paz012', 0.0031682664888742951) + +[fips4250880] +centroid = (0.72179789421587692, -1.3212957506357754) +description = Moosic borough, PA +station = ('kavp', 0.00054515245707853987) +zone = ('paz044', 0.0018874073578126216) + +[fips4251016] +centroid = (0.70080969909540691, -1.3245632164350192) +description = Morgantown CDP, PA +station = ('kmqs', 0.0030411416518065985) +zone = ('paz067', 0.0036828121786481225) + +[fips4251120] +centroid = (0.71469297299027335, -1.3653415254109278) +description = Morrisdale CDP, PA +station = ('kfig', 0.0030446824089094215) +zone = ('paz018', 0.0030500246118551483) + +[fips4251144] +centroid = (0.70175577226974295, -1.3051619095770475) +description = Morrisville borough, PA +station = ('kttn', 0.0014072051391842467) +zone = ('njz015', 0.0016866251118538361) + +[fips4251152] +centroid = (0.69639811761160342, -1.3991919244539701) +description = Morrisville CDP, PA +station = ('kafj', 0.0043444634782680526) +zone = ('paz031', 0.0011018550645864199) + +[fips4251176] +centroid = (0.69658853303299595, -1.3146998721398087) +description = Morton borough, PA +station = ('kphl', 0.0014763838073253281) +zone = ('paz070', 0.00097125704534544311) + +[fips4251208] +centroid = (0.72153281360908395, -1.3182892115597051) +description = Moscow borough, PA +station = ('kavp', 0.0026362513939984715) +zone = ('paz044', 0.001957300106688078) + +[fips4251240] +centroid = (0.71618550875340881, -1.3614733172831477) +description = Moshannon CDP, PA +station = ('kunv', 0.0038243062735879882) +zone = ('paz018', 0.00078510998897967179) + +[fips4251320] +centroid = (0.70546890789348338, -1.3316239982838398) +description = Mount Aetna CDP, PA +station = ('kmui', 0.0035974078027405515) +zone = ('paz059', 0.0023360188521731411) + +[fips4251344] +centroid = (0.71869040529587103, -1.3135915880647924) +description = Mountainhome CDP, PA +station = ('kmpo', 0.0017594691782736465) +zone = ('paz055', 0.002317104518715044) + +[fips4251384] +centroid = (0.71794645870220852, -1.324783005747723) +description = Mountain Top CDP, PA +station = ('kavp', 0.0041221024130851788) +zone = ('paz047', 0.0013287401309812763) + +[fips4251488] +centroid = (0.70988350879689277, -1.3297381002138899) +description = Mount Carbon borough, PA +station = ('krdg', 0.0061073600746729753) +zone = ('paz058', 0.00067583799247507618) + +[fips4251496] +centroid = (0.71202265414130705, -1.3336416338057302) +description = Mount Carmel borough, PA +station = ('kseg', 0.0060169512951011835) +zone = ('paz058', 0.0030307263994572352) + +[fips4251536] +centroid = (0.7230210733155521, -1.3176813482878205) +description = Mount Cobb CDP, PA +station = ('kavp', 0.0034858466552614648) +zone = ('paz044', 0.0014730459977236603) + +[fips4251552] +centroid = (0.71523597982715392, -1.3562217262836518) +description = Mount Eagle CDP, PA +station = ('kunv', 0.002960801183981239) +zone = ('paz019', 0.0018524486712466189) + +[fips4251568] +centroid = (0.7024175662155141, -1.3346790226065306) +description = Mount Gretna borough, PA +station = ('klns', 0.0032076653905352445) +zone = ('paz059', 0.0021308856982185315) + +[fips4251576] +centroid = (0.70247320731206775, -1.3345909532924751) +description = Mount Gretna Heights CDP, PA +station = ('klns', 0.0031998677740171675) +zone = ('paz059', 0.0020706043731462615) + +[fips4251592] +centroid = (0.70004327266097854, -1.3470971624075179) +description = Mount Holly Springs borough, PA +station = ('kthv', 0.0052320435247441826) +zone = ('paz063', 0.0014472829819453521) + +[fips4251632] +centroid = (0.72831526780208911, -1.372526993581511) +description = Mount Jewett borough, PA +station = ('kbfd', 0.0012354153886858989) +zone = ('paz005', 0.0016513885091618667) + +[fips4251656] +centroid = (0.70006226184324027, -1.3352767106088761) +description = Mount Joy borough, PA +station = ('klns', 0.0027479243746196909) +zone = ('paz065', 0.0044484539521022302) + +[fips4251720] +centroid = (0.6934760350180369, -1.3976943795958812) +description = Mount Morris CDP, PA +station = ('kmgw', 0.0026534770309422158) +zone = ('wvz022', 0.0018589739973176572) + +[fips4251744] +centroid = (0.70530976877228646, -1.3960126850484147) +description = Mount Oliver borough, PA +station = ('kagc', 0.001408701259563592) +zone = ('paz021', 0.0010057624145159148) + +[fips4251760] +centroid = (0.70386655601381243, -1.3245254126034212) +description = Mount Penn borough, PA +station = ('krdg', 0.0012204545586790802) +zone = ('paz060', 0.0016068367211996516) + +[fips4251880] +centroid = (0.70076596114435186, -1.3882935824590343) +description = Mount Pleasant borough, PA +station = ('klbe', 0.0029984280794504181) +zone = ('paz073', 0.003405988012442812) + +[fips4251904] +centroid = (0.71076866998033406, -1.3443789517238771) +description = Mount Pleasant Mills CDP, PA +station = ('kseg', 0.0026679651148491363) +zone = ('paz050', 0.00098208041948223235) + +[fips4251912] +centroid = (0.71772289947832046, -1.3152411685540222) +description = Mount Pocono borough, PA +station = ('kmpo', 0.00038569066980396056) +zone = ('paz055', 0.001147841880410206) + +[fips4251984] +centroid = (0.70483514393549906, -1.3592889504578141) +description = Mount Union borough, PA +station = ('kaoo', 0.0059717638515655921) +zone = ('paz026', 0.0014441002204112021) + +[fips4252016] +centroid = (0.69884224178951126, -1.3340305106163672) +description = Mountville borough, PA +station = ('klns', 0.0022304688912819413) +zone = ('paz066', 0.0024937369043969331) + +[fips4252056] +centroid = (0.69920808025402181, -1.3387582759474619) +description = Mount Wolf borough, PA +station = ('kmdt', 0.0025498128022553067) +zone = ('paz065', 0.0024907280995407912) + +[fips4252216] +centroid = (0.70488027814995569, -1.3254004683304934) +description = Muhlenberg Park CDP, PA +station = ('krdg', 0.00049892727229764637) +zone = ('paz060', 0.0005506670075768748) + +[fips4252224] +centroid = (0.70850414018245655, -1.3355025038542068) +description = Muir CDP, PA +station = ('kmui', 0.0028806657643559658) +zone = ('paz059', 0.0040453549039288156) + +[fips4252264] +centroid = (0.71911336838679929, -1.3401599149631536) +description = Muncy borough, PA +station = ('kipt', 0.0019134912289351302) +zone = ('paz046', 0.0017722206755250659) + +[fips4252312] +centroid = (0.70586673824318291, -1.3758859669934365) +description = Mundys Corner CDP, PA +station = ('kjst', 0.0022081920784092508) +zone = ('paz024', 0.001822396452798584) + +[fips4252320] +centroid = (0.70500133418687394, -1.3945347227845333) +description = Munhall borough, PA +station = ('kagc', 0.00078914120364079697) +zone = ('paz021', 0.001690890545263318) + +[fips4252432] +centroid = (0.70585706911912682, -1.3902272152840263) +description = Murrysville municipality, PA +station = ('klbe', 0.0043764658134865693) +zone = ('paz073', 0.0020099723906031623) + +[fips4252440] +centroid = (0.70323382180008687, -1.3998509782328155) +description = Muse CDP, PA +station = ('kafj', 0.0029623304276388375) +zone = ('paz029', 0.0018841752697840127) + +[fips4252488] +centroid = (0.70462675162281097, -1.3317835911906422) +description = Myerstown borough, PA +station = ('klns', 0.0044594527616525605) +zone = ('paz059', 0.0020246398769945412) + +[fips4252584] +centroid = (0.71908378505597803, -1.3264450653411044) +description = Nanticoke city, PA +station = ('kavp', 0.0041938844780355922) +zone = ('paz047', 0.00043014892657180343) + +[fips4252616] +centroid = (0.70635225393450274, -1.3759175574528977) +description = Nanty-Glo borough, PA +station = ('kjst', 0.0026937058853076859) +zone = ('paz024', 0.0016574981029986767) + +[fips4252632] +centroid = (0.70007241965948697, -1.3935963290589062) +description = Naomi CDP, PA +station = ('kagc', 0.0042695132921244713) +zone = ('paz075', 0.0030129998006546998) + +[fips4252664] +centroid = (0.69826568972440739, -1.3135950438167112) +description = Narberth borough, PA +station = ('klom', 0.0022659331164364268) +zone = ('paz071', 0.0017332533867615324) + +[fips4252808] +centroid = (0.71104650894395915, -1.3144531523967469) +description = Nazareth borough, PA +station = ('kabe', 0.0024021719417496173) +zone = ('paz062', 0.00025954885629319717) + +[fips4252872] +centroid = (0.69546920102381449, -1.3638557440719976) +description = Needmore CDP, PA +station = ('khgr', 0.0060702436900299875) +zone = ('paz035', 0.001423223686972831) + +[fips4252968] +centroid = (0.69601149227570158, -1.3950521605478721) +description = Nemacolin CDP, PA +station = ('kmgw', 0.0039928225853063321) +zone = ('paz075', 0.002451732091595344) + +[fips4252984] +centroid = (0.71649106354555536, -1.3301414283507331) +description = Nescopeck borough, PA +station = ('kavp', 0.0079725614683268334) +zone = ('paz053', 0.0025502893982946775) + +[fips4253088] +centroid = (0.71345169482625503, -1.3233396533629085) +description = Nesquehoning borough, PA +station = ('kabe', 0.0063211305926590975) +zone = ('paz054', 0.0016497909771696563) + +[fips4253152] +centroid = (0.72607557403946743, -1.334240369005627) +description = New Albany borough, PA +station = ('kipt', 0.0086848811359814069) +zone = ('paz042', 0.0028387511199714516) + +[fips4253160] +centroid = (0.70501625675197854, -1.3860972775816172) +description = New Alexandria borough, PA +station = ('klbe', 0.001953417566205656) +zone = ('paz073', 0.0022651562539177713) + +[fips4253168] +centroid = (0.69784338985859484, -1.3748355405831236) +description = New Baltimore borough, PA +station = ('kjst', 0.0058719597065974762) +zone = ('paz033', 0.003429528325138841) + +[fips4253184] +centroid = (0.71350283297333839, -1.4029193368709916) +description = New Beaver borough, PA +station = ('kbvi', 0.0020054474088575932) +zone = ('paz013', 0.0020263209255982815) + +[fips4253192] +centroid = (0.71713969770876662, -1.4048697597633879) +description = New Bedford CDP, PA +station = ('kucp', 0.0015304282827605798) +zone = ('paz013', 0.0027007878230374651) + +[fips4253200] +centroid = (0.71351838385697364, -1.3435741280459048) +description = New Berlin borough, PA +station = ('kseg', 0.0018888054130048201) +zone = ('paz049', 0.0017773785925585433) + +[fips4253208] +centroid = (0.70416818381514201, -1.3200141204594511) +description = New Berlinville CDP, PA +station = ('kptw', 0.0022421404757769349) +zone = ('paz068', 0.0042319345462246251) + +[fips4253248] +centroid = (0.71566128165927978, -1.384534998461572) +description = New Bethlehem borough, PA +station = ('kidi', 0.00714186935654263) +zone = ('paz015', 0.0035038489633265491) + +[fips4253288] +centroid = (0.71097105836039542, -1.4016647243914879) +description = New Brighton borough, PA +station = ('kbvi', 0.0013137189724703913) +zone = ('paz020', 0.0010697469098886886) + +[fips4253296] +centroid = (0.7033598694786658, -1.3121052482205016) +description = New Britain borough, PA +station = ('kdyl', 0.0010078936235121136) +zone = ('paz069', 0.0011531676263537957) + +[fips4253320] +centroid = (0.70606142972124286, -1.3433881632141049) +description = New Buffalo borough, PA +station = ('kcxy', 0.0044470519332861147) +zone = ('paz057', 0.0026298142466708225) + +[fips4253336] +centroid = (0.71278454271968006, -1.3733157602303647) +description = Newburg borough, PA +station = ('kfig', 0.0051013671173980261) +zone = ('paz017', 0.0039512814589128141) + +[fips4253344] +centroid = (0.70052254007357628, -1.3535838531054802) +description = Newburg borough, PA +station = ('kryt', 0.0072964596495354124) +zone = ('paz063', 0.0038906772788275031) + +[fips4253368] +centroid = (0.71550849553656026, -1.4022988723219076) +description = New Castle city, PA +station = ('kucp', 0.001029025471347378) +zone = ('paz013', 0.00017123924322227655) + +[fips4253392] +centroid = (0.71597163610686942, -1.4024699844017732) +description = New Castle Northwest CDP, PA +station = ('kucp', 0.00076200872780403221) +zone = ('paz013', 0.00060940523920407889) + +[fips4253416] +centroid = (0.69712393023433772, -1.3821567255563421) +description = New Centerville borough, PA +station = ('klbe', 0.0065698955057240166) +zone = ('paz033', 0.0022494470824206705) + +[fips4253432] +centroid = (0.71623844458962171, -1.3417788125641334) +description = New Columbia CDP, PA +station = ('kipt', 0.0037440520481330773) +zone = ('paz049', 0.0027480451803111698) + +[fips4253448] +centroid = (0.71860790358212934, -1.3314586283372132) +description = New Columbus borough, PA +station = ('kavp', 0.0077834433754760965) +zone = ('paz053', 0.0026733500105549689) + +[fips4253464] +centroid = (0.70212440326105674, -1.3417793012563239) +description = New Cumberland borough, PA +station = ('kcxy', 0.00043211840710655056) +zone = ('paz057', 0.0035157692338729368) + +[fips4253496] +centroid = (0.70174828480725182, -1.3954481757551496) +description = New Eagle borough, PA +station = ('kagc', 0.0025393345767154422) +zone = ('paz029', 0.0039437322986747439) + +[fips4253504] +centroid = (0.69944151804147592, -1.3943445342559435) +description = Newell borough, PA +station = ('kagc', 0.0048119229684436653) +zone = ('paz075', 0.0027160974497559068) + +[fips4253544] +centroid = (0.70474740623400134, -1.3801214796622987) +description = New Florence borough, PA +station = ('kjst', 0.0033956719521440176) +zone = ('paz074', 0.0032450537056221938) + +[fips4253568] +centroid = (0.69351228550660082, -1.3386100800406751) +description = New Freedom borough, PA +station = ('kthv', 0.0040341891302362277) +zone = ('paz065', 0.003246061994552438) + +[fips4253576] +centroid = (0.69393200228512042, -1.4037311942258495) +description = New Freeport CDP, PA +station = ('kafj', 0.0068073148056426811) +zone = ('paz031', 0.0032044941881407942) + +[fips4253592] +centroid = (0.71267757148982536, -1.4032624860552261) +description = New Galilee borough, PA +station = ('kbvi', 0.0011650907290656277) +zone = ('paz020', 0.0027246727551339949) + +[fips4253696] +centroid = (0.69989961461024697, -1.3280235934764859) +description = New Holland borough, PA +station = ('klns', 0.0028140700957961571) +zone = ('paz066', 0.0023419000750165386) + +[fips4253712] +centroid = (0.70443858767615353, -1.3082428869457154) +description = New Hope borough, PA +station = ('kttn', 0.0023089824005431549) +zone = ('paz069', 0.0020387468401185317) + +[fips4253728] +centroid = (0.70582684001648233, -1.3222466060122622) +description = New Jerusalem CDP, PA +station = ('krdg', 0.0030471713736446018) +zone = ('paz060', 0.0022575801413523442) + +[fips4253736] +centroid = (0.70809658834882339, -1.391968565185326) +description = New Kensington city, PA +station = ('kagc', 0.0044205196664867264) +zone = ('paz021', 0.0035030075381430169) + +[fips4253752] +centroid = (0.70220594504370981, -1.3451150268826131) +description = New Kingstown CDP, PA +station = ('kcxy', 0.0029384864657934777) +zone = ('paz063', 0.0028786675079056946) + +[fips4253768] +centroid = (0.72291649318677265, -1.3976597697168143) +description = New Lebanon borough, PA +station = ('kfkl', 0.0028655739575229461) +zone = ('paz007', 0.0031064620890220193) + +[fips4253856] +centroid = (0.70426447362997457, -1.3301454775145978) +description = Newmanstown CDP, PA +station = ('klns', 0.0042620719278409856) +zone = ('paz060', 0.0039644179163053957) + +[fips4253872] +centroid = (0.70202474496076783, -1.3413951368346675) +description = New Market CDP, PA +station = ('kcxy', 0.00013941354094670636) +zone = ('paz057', 0.0035119279502363052) + +[fips4253880] +centroid = (0.73087657338597578, -1.3216778206623296) +description = New Milford borough, PA +station = ('kbgm', 0.006559543761232964) +zone = ('paz039', 0.0013581110567238545) + +[fips4253916] +centroid = (0.70143768601356693, -1.324730680776748) +description = New Morgan borough, PA +station = ('krdg', 0.0032130285942230962) +zone = ('paz060', 0.0039749904111841105) + +[fips4253920] +centroid = (0.69574061717579205, -1.3448717977980551) +description = New Oxford borough, PA +station = ('kthv', 0.0024882977405108388) +zone = ('paz064', 0.0021808480032050217) + +[fips4253928] +centroid = (0.70002377733323373, -1.3725804530164996) +description = New Paris borough, PA +station = ('kjst', 0.0044320037486646575) +zone = ('paz034', 0.0027069401860433081) + +[fips4253944] +centroid = (0.71066018031403022, -1.3284868038599651) +description = New Philadelphia borough, PA +station = ('krdg', 0.0064438320281157285) +zone = ('paz058', 0.0013302633235412846) + +[fips4253968] +centroid = (0.70649158356868935, -1.3462357027953187) +description = Newport borough, PA +station = ('kcxy', 0.0059324597839034137) +zone = ('paz056', 0.0022125467864103619) + +[fips4254016] +centroid = (0.71016002131028622, -1.3263247947023495) +description = New Ringgold borough, PA +station = ('krdg', 0.0056394568436093796) +zone = ('paz058', 0.0029677016544343991) + +[fips4254024] +centroid = (0.70499651707813848, -1.3689615477190744) +description = Newry borough, PA +station = ('kaoo', 0.002271768109257223) +zone = ('paz025', 0.0019227401927955558) + +[fips4254040] +centroid = (0.6969120472631456, -1.3932254465928571) +description = New Salem CDP, PA +station = ('kmgw', 0.0050381359638218999) +zone = ('paz075', 0.00079232068807317646) + +[fips4254056] +centroid = (0.6964508789148911, -1.340261336045987) +description = New Salem borough, PA +station = ('kthv', 0.0012524899235351404) +zone = ('paz065', 0.0009126593631503361) + +[fips4254064] +centroid = (0.70604488399993393, -1.3294035904094526) +description = New Schaefferstown CDP, PA +station = ('krdg', 0.0030881337183981256) +zone = ('paz060', 0.0032948539943936758) + +[fips4254104] +centroid = (0.70201242293624866, -1.3894353768556891) +description = New Stanton borough, PA +station = ('klbe', 0.0029777868923033381) +zone = ('paz073', 0.0021811284732880256) + +[fips4254160] +centroid = (0.70499068767843687, -1.3584830446757059) +description = Newton Hamilton borough, PA +station = ('kunv', 0.0079786740726197243) +zone = ('paz026', 0.0019832400573934726) + +[fips4254184] +centroid = (0.70211705542490577, -1.3078152289190994) +description = Newtown borough, PA +station = ('kttn', 0.0018146810516578335) +zone = ('paz069', 0.0029981123628943836) + +[fips4254264] +centroid = (0.70952671113790755, -1.3324927882788977) +description = Newtown CDP, PA +station = ('kmui', 0.0048200287837547361) +zone = ('paz058', 0.0019561660713304364) + +[fips4254268] +centroid = (0.70267154652826436, -1.3082309314403395) +description = Newtown Grant CDP, PA +station = ('kttn', 0.0019006368121442802) +zone = ('paz069', 0.0024122451711386401) + +[fips4254288] +centroid = (0.70989394586581966, -1.3220444270717111) +description = New Tripoli CDP, PA +station = ('kabe', 0.0039616925107854245) +zone = ('paz061', 0.0023145317311328247) + +[fips4254320] +centroid = (0.70109689302382261, -1.3509160824372219) +description = Newville borough, PA +station = ('kryt', 0.0076868533847510639) +zone = ('paz063', 0.0018262742618081181) + +[fips4254344] +centroid = (0.7124594925997888, -1.3736186795753407) +description = New Washington borough, PA +station = ('kfig', 0.0054948917620300198) +zone = ('paz017', 0.0043440234297127296) + +[fips4254352] +centroid = (0.71763716890546259, -1.4020498487442332) +description = New Wilmington borough, PA +station = ('kucp', 0.0019374202815448771) +zone = ('paz013', 0.002206042577919965) + +[fips4254400] +centroid = (0.72655412586707169, -1.3227728925949085) +description = Nicholson borough, PA +station = ('kavp', 0.0052030948798158661) +zone = ('paz039', 0.0033703303779998523) + +[fips4254520] +centroid = (0.71549282247987733, -1.353539975528085) +description = Nittany CDP, PA +station = ('kunv', 0.0046702027959175932) +zone = ('paz045', 0.002677502680057002) + +[fips4254552] +centroid = (0.7118470740185564, -1.3951725882662596) +description = Nixon CDP, PA +station = ('kbtp', 0.00017084030172729217) +zone = ('paz014', 0.0022204808286331243) + +[fips4254568] +centroid = (0.70503379731096105, -1.3997866803031722) +description = Noblestown CDP, PA +station = ('kpit', 0.0015895933583710831) +zone = ('paz029', 0.0036489482514314737) + +[fips4254656] +centroid = (0.70026232893539642, -1.3149287895245003) +description = Norristown borough, PA +station = ('klom', 0.0010347377041311694) +zone = ('paz068', 0.001592547676450867) + +[fips4254696] +centroid = (0.71015951516480313, -1.3174977571038031) +description = Northampton borough, PA +station = ('kabe', 0.00084108738701169864) +zone = ('paz061', 0.0019277923035254795) + +[fips4254728] +centroid = (0.70849560552241431, -1.3885248909448011) +description = North Apollo borough, PA +station = ('klbe', 0.0058044523084328217) +zone = ('paz022', 0.0040067688519723277) + +[fips4254776] +centroid = (0.70043591938279981, -1.3938898934390915) +description = North Belle Vernon borough, PA +station = ('kagc', 0.0038685777846343803) +zone = ('paz075', 0.0034318601177101686) + +[fips4254816] +centroid = (0.70515998461588025, -1.3937118524020957) +description = North Braddock borough, PA +station = ('kagc', 0.0012426808270050264) +zone = ('paz021', 0.0020482345276848016) + +[fips4254872] +centroid = (0.70971319956848311, -1.3172676878018053) +description = North Catasauqua borough, PA +station = ('kabe', 0.00039505155097504548) +zone = ('paz061', 0.0018017014211528617) + +[fips4254888] +centroid = (0.70075657127297619, -1.3946602817709217) +description = North Charleroi borough, PA +station = ('kagc', 0.0034856295224526155) +zone = ('paz075', 0.003966733051337116) + +[fips4254952] +centroid = (0.73676224250272115, -1.3933548278503074) +description = North East borough, PA +station = ('keri', 0.0050656240664832923) +zone = ('paz001', 0.0042404447315104342) + +[fips4255000] +centroid = (0.70960038148563431, -1.3749293520304184) +description = Northern Cambria borough, PA +station = ('kidi', 0.0042889504706141212) +zone = ('paz024', 0.0029472695027551632) + +[fips4255136] +centroid = (0.70404735467102653, -1.3912271318657865) +description = North Irwin borough, PA +station = ('kagc', 0.0027367614023322516) +zone = ('paz073', 0.0018204201854221049) + +[fips4255304] +centroid = (0.71399997255747649, -1.365002739549823) +description = North Philipsburg CDP, PA +station = ('kfig', 0.0036789752180434458) +zone = ('paz018', 0.0030524408112379115) + +[fips4255456] +centroid = (0.71378688530910051, -1.3403193856969084) +description = Northumberland borough, PA +station = ('kseg', 0.0016936903228230511) +zone = ('paz052', 0.0013750287889613658) + +[fips4255480] +centroid = (0.70877391572493731, -1.3884365947379427) +description = North Vandergrift CDP, PA +station = ('kidi', 0.0059961396367455098) +zone = ('paz022', 0.0037213018359408016) + +[fips4255512] +centroid = (0.70181733003246072, -1.3137868380482129) +description = North Wales borough, PA +station = ('klom', 0.0012919509135649074) +zone = ('paz068', 0.0012363552527018854) + +[fips4255520] +centroid = (0.73099796103545189, -1.3817150350825396) +description = North Warren CDP, PA +station = ('kjhw', 0.0048362145645149306) +zone = ('paz004', 0.0018396291541663795) + +[fips4255572] +centroid = (0.73562571900040752, -1.3961695377882914) +description = Northwest Harborcreek CDP, PA +station = ('keri', 0.0026931088695398304) +zone = ('paz001', 0.0018664945655228766) + +[fips4255584] +centroid = (0.71011120445110787, -1.3653208956191691) +description = Northwood CDP, PA +station = ('kunv', 0.005745044519886988) +zone = ('paz025', 0.0039247278035049703) + +[fips4255608] +centroid = (0.69774790289521826, -1.3392065463125442) +description = North York borough, PA +station = ('kthv', 0.0023037334826441491) +zone = ('paz065', 0.0010159049064558574) + +[fips4255616] +centroid = (0.70170953849785755, -1.3874845874441499) +description = Norvelt CDP, PA +station = ('klbe', 0.0018814006787239109) +zone = ('paz073', 0.0026476071511358865) + +[fips4255664] +centroid = (0.69614185091753311, -1.3141588549782754) +description = Norwood borough, PA +station = ('kphl', 0.00090155729993337066) +zone = ('paz070', 0.0014826384727536391) + +[fips4255728] +centroid = (0.72295012568145844, -1.3276578248251454) +description = Noxen CDP, PA +station = ('kavp', 0.0046627513563481139) +zone = ('paz043', 0.0018182791558371237) + +[fips4255752] +centroid = (0.71832891270119803, -1.3260525756989161) +description = Nuangola borough, PA +station = ('kavp', 0.004437516933986029) +zone = ('paz047', 0.00038109100859631199) + +[fips4255792] +centroid = (0.71346626832550908, -1.3335139106110694) +description = Numidia CDP, PA +station = ('kseg', 0.0061939565479813509) +zone = ('paz053', 0.0029669617810660154) + +[fips4255808] +centroid = (0.71449842113855355, -1.3293902386406751) +description = Nuremberg CDP, PA +station = ('kavp', 0.0089656847267406709) +zone = ('paz053', 0.0036702270550442659) + +[fips4255840] +centroid = (0.70511593250556004, -1.399529820197156) +description = Oakdale borough, PA +station = ('kpit', 0.0015758257174847078) +zone = ('paz021', 0.0029867146611588214) + +[fips4255969] +centroid = (0.71255187287709676, -1.3947834671095276) +description = Oak Hills CDP, PA +station = ('kbtp', 0.00087831418042714268) +zone = ('paz014', 0.0014922787706947564) + +[fips4255996] +centroid = (0.70346406563500996, -1.3767464841278398) +description = Oakland CDP, PA +station = ('kjst', 0.00067325537039618247) +zone = ('paz024', 0.0039972764413640444) + +[fips4256000] +centroid = (0.71544814205102625, -1.4026483395980345) +description = Oakland CDP, PA +station = ('kucp', 0.00085178921341587486) +zone = ('paz013', 0.00041702426092794852) + +[fips4256008] +centroid = (0.73217911260673918, -1.3196218577100653) +description = Oakland borough, PA +station = ('kbgm', 0.006516747885313195) +zone = ('paz039', 0.0033652172035888279) + +[fips4256088] +centroid = (0.70720315430472747, -1.3934127902347662) +description = Oakmont borough, PA +station = ('kagc', 0.0031476165031088621) +zone = ('paz021', 0.0021144120985148451) + +[fips4256232] +centroid = (0.71577535637919021, -1.4028863152415438) +description = Oakwood CDP, PA +station = ('kucp', 0.00051168599726237024) +zone = ('paz013', 0.00068832517141983259) + +[fips4256264] +centroid = (0.70231727959669454, -1.3406874407295688) +description = Oberlin CDP, PA +station = ('kcxy', 0.00060971389932780104) +zone = ('paz057', 0.0031045531987451401) + +[fips4256408] +centroid = (0.69580899917588535, -1.3874406051469996) +description = Ohiopyle borough, PA +station = ('k2g4', 0.0054201332183196746) +zone = ('paz076', 0.00049355993353846351) + +[fips4256432] +centroid = (0.71008312210344338, -1.4046994679882707) +description = Ohioville borough, PA +station = ('kbvi', 0.0018051943110133791) +zone = ('paz020', 0.001774715042047223) + +[fips4256456] +centroid = (0.72306933166936971, -1.3911644047324696) +description = Oil City city, PA +station = ('kfkl', 0.0022254580988439452) +zone = ('paz008', 0.00081649594487091066) + +[fips4256488] +centroid = (0.7175334963478941, -1.3741536578976621) +description = Oklahoma CDP, PA +station = ('kduj', 0.0023363919456571751) +zone = ('paz016', 0.0035130583722136725) + +[fips4256496] +centroid = (0.70828220411477294, -1.3888940455348904) +description = Oklahoma borough, PA +station = ('klbe', 0.0057160698654259486) +zone = ('paz073', 0.004136286354775782) + +[fips4256576] +centroid = (0.7220510716771712, -1.3219272980256096) +description = Old Forge borough, PA +station = ('kavp', 0.00065576105276057015) +zone = ('paz044', 0.0020780882762222413) + +[fips4256624] +centroid = (0.7096117959389423, -1.3135519167308944) +description = Old Orchard CDP, PA +station = ('kabe', 0.002506481272827639) +zone = ('paz062', 0.0017933645556925035) + +[fips4256664] +centroid = (0.70493427863701241, -1.3227526816821704) +description = Oley CDP, PA +station = ('krdg', 0.0024075235218425088) +zone = ('paz060', 0.0018902619631998778) + +[fips4256704] +centroid = (0.69665311021531984, -1.3913986802779648) +description = Oliver CDP, PA +station = ('kmgw', 0.0053203028845410201) +zone = ('paz075', 0.00089072775420874983) + +[fips4256792] +centroid = (0.72346499781079676, -1.3190438570216825) +description = Olyphant borough, PA +station = ('kavp', 0.002918165051330468) +zone = ('paz044', 0.00050663164969083109) + +[fips4256816] +centroid = (0.71392851877789976, -1.3285893070469346) +description = Oneida CDP, PA +station = ('kavp', 0.0090583880030410055) +zone = ('paz058', 0.0036891923210494336) + +[fips4256912] +centroid = (0.71692804163037727, -1.3336665396541563) +description = Orangeville borough, PA +station = ('kseg', 0.007505417209760893) +zone = ('paz053', 0.00050662800541080349) + +[fips4256928] +centroid = (0.70237150697655393, -1.3594894887888684) +description = Orbisonia borough, PA +station = ('kaoo', 0.0057289754967312853) +zone = ('paz026', 0.0032569287826763852) + +[fips4256960] +centroid = (0.70828243100757582, -1.3883273894866455) +description = Orchard Hills CDP, PA +station = ('klbe', 0.0055519931267428262) +zone = ('paz073', 0.0041548332065760281) + +[fips4257024] +centroid = (0.70013547840536139, -1.3121411845498001) +description = Oreland CDP, PA +station = ('klom', 0.0011995839878039386) +zone = ('paz071', 0.0019709156883931061) + +[fips4257112] +centroid = (0.69915779731827177, -1.35451776133493) +description = Orrstown borough, PA +station = ('kryt', 0.0062145839362317918) +zone = ('paz036', 0.002745135931623384) + +[fips4257120] +centroid = (0.69545260294262801, -1.3501700938083343) +description = Orrtanna CDP, PA +station = ('kryt', 0.002244937563319953) +zone = ('paz064', 0.0019407295029261738) + +[fips4257160] +centroid = (0.71745844719005836, -1.3570520492219955) +description = Orviston CDP, PA +station = ('kunv', 0.0046684829418819134) +zone = ('paz012', 0.003223320924083914) + +[fips4257184] +centroid = (0.70954906880562563, -1.3282651819515467) +description = Orwigsburg borough, PA +station = ('krdg', 0.0053384445848117289) +zone = ('paz058', 0.0017358723542579097) + +[fips4257192] +centroid = (0.70832213724805859, -1.3357251555068836) +description = Orwin CDP, PA +station = ('kmui', 0.0026686638506328002) +zone = ('paz059', 0.0039061710583655467) + +[fips4257232] +centroid = (0.71301078975061616, -1.3660658719570904) +description = Osceola Mills borough, PA +station = ('kfig', 0.0039532841359339443) +zone = ('paz017', 0.0037285265049712569) + +[fips4257280] +centroid = (0.73165361142225627, -1.3617153420905219) +description = Oswayo borough, PA +station = ('kelz', 0.0031413194772953773) +zone = ('paz006', 0.0034686195056469254) + +[fips4257376] +centroid = (0.71824199530444865, -1.3469488966875611) +description = Oval CDP, PA +station = ('kipt', 0.0037913413904796145) +zone = ('paz045', 0.0030150713135526563) + +[fips4257480] +centroid = (0.69438903420304776, -1.3260950919194947) +description = Oxford borough, PA +station = ('kmqs', 0.0036977276484794737) +zone = ('mdz007', 0.0035205459373886324) + +[fips4257544] +centroid = (0.70235696838388484, -1.3761929529555699) +description = Paint borough, PA +station = ('kjst', 0.0013204985556565423) +zone = ('paz024', 0.0047789298033370769) + +[fips4257648] +centroid = (0.70330232597322762, -1.3373288512900787) +description = Palmdale CDP, PA +station = ('kmui', 0.0025082032803697193) +zone = ('paz059', 0.0025273644999440105) + +[fips4257680] +centroid = (0.71015845051395932, -1.3136678589531043) +description = Palmer Heights CDP, PA +station = ('kabe', 0.0025087992939062669) +zone = ('paz062', 0.0012539862384152152) + +[fips4257696] +centroid = (0.71215777753199649, -1.3197670341972463) +description = Palmerton borough, PA +station = ('kabe', 0.0034747399875367495) +zone = ('paz054', 0.0023389912504365906) + +[fips4257720] +centroid = (0.70354054596283233, -1.3368223567411499) +description = Palmyra borough, PA +station = ('kmui', 0.0021853127422411592) +zone = ('paz059', 0.0020739829683963278) + +[fips4257752] +centroid = (0.71010617790286212, -1.3294161393267745) +description = Palo Alto borough, PA +station = ('krdg', 0.0061928676151986276) +zone = ('paz058', 0.00070083228479552221) + +[fips4257816] +centroid = (0.6988650183362497, -1.3175541835985203) +description = Paoli CDP, PA +station = ('kptw', 0.0034328364119866153) +zone = ('paz070', 0.002504896582234969) + +[fips4257840] +centroid = (0.69824043481013109, -1.3285847342842945) +description = Paradise CDP, PA +station = ('klns', 0.0030577454447635209) +zone = ('paz066', 0.0017909740792969595) + +[fips4257904] +centroid = (0.71559773422121464, -1.325895880038672) +description = Pardeesville CDP, PA +station = ('kavp', 0.0065744773099177135) +zone = ('paz047', 0.0030919516593662095) + +[fips4257928] +centroid = (0.7052938339162157, -1.4051062518770332) +description = Paris CDP, PA +station = ('kpit', 0.0038472539589612166) +zone = ('wvz001', 0.0021322142085681717) + +[fips4257968] +centroid = (0.71244048596423459, -1.3274819130898368) +description = Park Crest CDP, PA +station = ('krdg', 0.0080035730096802583) +zone = ('paz058', 0.0028732500551515118) + +[fips4257976] +centroid = (0.71716695975168276, -1.3907584586017483) +description = Parker city, PA +station = ('kfkl', 0.0056397706312224013) +zone = ('paz014', 0.0043365143934698345) + +[fips4258032] +centroid = (0.69742602927456543, -1.3250198294739259) +description = Parkesburg borough, PA +station = ('kmqs', 0.00073494482464807147) +zone = ('paz067', 0.002283205646583695) + +[fips4258036] +centroid = (0.7120930083634549, -1.3597531556789673) +description = Park Forest Village CDP, PA +station = ('kunv', 0.0011631865016204453) +zone = ('paz018', 0.0035385446097312323) + +[fips4258176] +centroid = (0.69581681825093422, -1.3155941439419456) +description = Parkside borough, PA +station = ('kphl', 0.0019378858922954856) +zone = ('paz070', 0.0009058158275004407) + +[fips4258240] +centroid = (0.69439500322908942, -1.3433546005325889) +description = Parkville CDP, PA +station = ('kthv', 0.0025519453316987877) +zone = ('mdz005', 0.003956100558069932) + +[fips4258304] +centroid = (0.71248607396429664, -1.3207004362812129) +description = Parryville borough, PA +station = ('kabe', 0.0041912473173289586) +zone = ('paz054', 0.0017474500032165466) + +[fips4258384] +centroid = (0.71103568790259686, -1.4019553915251153) +description = Patterson Heights borough, PA +station = ('kbvi', 0.0010869028553993044) +zone = ('paz020', 0.0010417380181664154) + +[fips4258432] +centroid = (0.70917045453099048, -1.372698733979907) +description = Patton borough, PA +station = ('kidi', 0.0059624453120641612) +zone = ('paz024', 0.00253734800908145) + +[fips4258504] +centroid = (0.70271053718375398, -1.3410104837208205) +description = Paxtang borough, PA +station = ('kcxy', 0.0008244711763594673) +zone = ('paz057', 0.002771484803732579) + +[fips4258528] +centroid = (0.70365774482210375, -1.3402118908682779) +description = Paxtonia CDP, PA +station = ('kcxy', 0.0019272820275900069) +zone = ('paz057', 0.0017302102958423608) + +[fips4258536] +centroid = (0.71165194620818351, -1.3452328017005377) +description = Paxtonville CDP, PA +station = ('kseg', 0.0028635229487833807) +zone = ('paz050', 0.00011408367748254723) + +[fips4258696] +centroid = (0.7132775633267836, -1.3134275794749823) +description = Pen Argyl borough, PA +station = ('kabe', 0.0046014349955896096) +zone = ('paz062', 0.0021033328511956004) + +[fips4258712] +centroid = (0.70298385574461619, -1.341256383159134) +description = Penbrook borough, PA +station = ('kcxy', 0.0010708393490776586) +zone = ('paz057', 0.002569841909725124) + +[fips4258776] +centroid = (0.69335513606075128, -1.3529088993771488) +description = Pen Mar CDP, PA +station = ('krsp', 0.0014682167897209894) +zone = ('paz036', 0.0044604683836171654) + +[fips4258872] +centroid = (0.70387716761566455, -1.3900172172684264) +description = Penn borough, PA +station = ('klbe', 0.0033204805121911101) +zone = ('paz073', 0.00093511933657886937) + +[fips4258936] +centroid = (0.70083985838488139, -1.3075073877456325) +description = Penndel borough, PA +station = ('kpne', 0.0018508149712713308) +zone = ('njz015', 0.0036153742903749422) + +[fips4258948] +centroid = (0.71616882340575971, -1.3131851881484655) +description = Penn Estates CDP, PA +station = ('kmpo', 0.0025682886199662456) +zone = ('paz055', 0.0013782479374991252) + +[fips4259054] +centroid = (0.71759557770938753, -1.3224872694628196) +description = Penn Lake Park borough, PA +station = ('kavp', 0.0038425156781028511) +zone = ('paz047', 0.0030376436527213137) + +[fips4259120] +centroid = (0.70499770390202998, -1.3176415024209973) +description = Pennsburg borough, PA +station = ('kukt', 0.0016755242316478136) +zone = ('paz068', 0.0036127673463889655) + +[fips4259152] +centroid = (0.7056059860529349, -1.3980278072961825) +description = Pennsbury Village borough, PA +station = ('kpit', 0.0020021614560688178) +zone = ('paz021', 0.001742617138245587) + +[fips4259160] +centroid = (0.71319860463142326, -1.3448713789190347) +description = Penns Creek CDP, PA +station = ('kseg', 0.0026221117888015608) +zone = ('paz050', 0.0016393233581070536) + +[fips4259176] +centroid = (0.70405157836781629, -1.3243154669476986) +description = Pennside CDP, PA +station = ('krdg', 0.0012769952192741446) +zone = ('paz060', 0.0014929319326755937) + +[fips4259212] +centroid = (0.73510678025391196, -1.3959560142076024) +description = Penn State Erie (Behrend) CDP, PA +station = ('keri', 0.002673657002860748) +zone = ('paz001', 0.001863029818942557) + +[fips4259296] +centroid = (0.69443167259667393, -1.3437386427811979) +description = Pennville CDP, PA +station = ('kthv', 0.0026658097428213707) +zone = ('paz064', 0.0033777281272566744) + +[fips4259304] +centroid = (0.70317503911087964, -1.3259892027937761) +description = Pennwyn CDP, PA +station = ('krdg', 0.0013593227282630122) +zone = ('paz060', 0.0023125096239925429) + +[fips4259312] +centroid = (0.69789899604856331, -1.3137349843161361) +description = Penn Wynne CDP, PA +station = ('kphl', 0.0021557036258389203) +zone = ('paz070', 0.0020982406976901343) + +[fips4259344] +centroid = (0.70154935217910952, -1.3329039703973748) +description = Penryn CDP, PA +station = ('klns', 0.0016657091012912361) +zone = ('paz066', 0.0031343529248507845) + +[fips4259384] +centroid = (0.70461973539921807, -1.3141067743533961) +description = Perkasie borough, PA +station = ('kukt', 0.0016171009160775873) +zone = ('paz068', 0.0029768737902796769) + +[fips4259520] +centroid = (0.69964621025614993, -1.3919504137611052) +description = Perryopolis borough, PA +station = ('kagc', 0.0050863089249677754) +zone = ('paz075', 0.0024265626693436531) + +[fips4259616] +centroid = (0.70812542118806632, -1.3622402149564738) +description = Petersburg borough, PA +station = ('kunv', 0.0055213176654369967) +zone = ('paz026', 0.0028677236319949789) + +[fips4259672] +centroid = (0.71596275238097684, -1.3913202800879654) +description = Petrolia borough, PA +station = ('kbtp', 0.0051734856832009865) +zone = ('paz014', 0.0032201307644208858) + +[fips4260000] +centroid = (0.69829534286839889, -1.3113242657401116) +description = Philadelphia city, PA +station = ('kpne', 0.0020239722062104903) +zone = ('paz071', 3.1585639573037357e-05) + +[fips4260008] +centroid = (0.71372588605174325, -1.3651264135806194) +description = Philipsburg borough, PA +station = ('kfig', 0.0038021560101420171) +zone = ('paz018', 0.003267734497910514) + +[fips4260120] +centroid = (0.70049419592652395, -1.3181086397952939) +description = Phoenixville borough, PA +station = ('kptw', 0.0017500473125906873) +zone = ('paz068', 0.0024501888151030847) + +[fips4260136] +centroid = (0.72043137122473533, -1.3387735824850018) +description = Picture Rocks borough, PA +station = ('kipt', 0.0028047127530058352) +zone = ('paz046', 0.0028815868509718305) + +[fips4260224] +centroid = (0.72097139354859507, -1.3282461578627001) +description = Pikes Creek CDP, PA +station = ('kavp', 0.0048633625287569605) +zone = ('paz047', 0.00273846019171056) + +[fips4260264] +centroid = (0.70931128514833386, -1.3404636371595855) +description = Pillow borough, PA +station = ('kseg', 0.0031875077068921785) +zone = ('paz052', 0.00389349453831044) + +[fips4260432] +centroid = (0.71713271639175868, -1.3623686013762506) +description = Pine Glen CDP, PA +station = ('kunv', 0.0049864426287360144) +zone = ('paz018', 0.0018751472325325561) + +[fips4260456] +centroid = (0.70779059722436366, -1.3331874816810689) +description = Pine Grove borough, PA +station = ('kmui', 0.0031845917813499002) +zone = ('paz059', 0.0033865857923266276) + +[fips4260496] +centroid = (0.71089929042155342, -1.3594093258163242) +description = Pine Grove Mills CDP, PA +station = ('kunv', 0.002129111739450136) +zone = ('paz019', 0.0034967211050193452) + +[fips4260547] +centroid = (0.71809641739153984, -1.3087523834609578) +description = Pine Ridge CDP, PA +station = ('k12n', 0.0039974264613955391) +zone = ('paz048', 0.0033439685003520455) + +[fips4260712] +centroid = (0.70524878696822169, -1.3923598680036231) +description = Pitcairn borough, PA +station = ('kagc', 0.0021207625115988258) +zone = ('paz021', 0.0029222479210294508) + +[fips4261000] +centroid = (0.70580683854325454, -1.3958548549241567) +description = Pittsburgh city, PA +station = ('kagc', 0.0017573749328961823) +zone = ('paz021', 0.00051064606134351384) + +[fips4261048] +centroid = (0.72131068555518263, -1.3227154887158106) +description = Pittston city, PA +station = ('kavp', 0.0006965504843889841) +zone = ('paz044', 0.0029961130341790189) + +[fips4261080] +centroid = (0.70164281456055388, -1.3488476578340982) +description = Plainfield CDP, PA +station = ('kmdt', 0.0068867805155467593) +zone = ('paz063', 0.00069748213220098326) + +[fips4261112] +centroid = (0.72039855903479788, -1.3238647182150787) +description = Plains CDP, PA +station = ('kavp', 0.0018502492419484884) +zone = ('paz047', 0.0024894329630047616) + +[fips4261168] +centroid = (0.73218283015804586, -1.4020308421086789) +description = Platea borough, PA +station = ('keri', 0.0029957790722837697) +zone = ('paz001', 0.0037494076915230335) + +[fips4261232] +centroid = (0.7132703376636802, -1.3568850037592874) +description = Pleasant Gap CDP, PA +station = ('kunv', 0.0014345280660571426) +zone = ('paz019', 0.00056049828072755349) + +[fips4261312] +centroid = (0.70400981263881601, -1.3342807908311032) +description = Pleasant Hill CDP, PA +station = ('kmui', 0.0023022657793373095) +zone = ('paz059', 0.00054419285800107815) + +[fips4261328] +centroid = (0.70388805847019698, -1.3955591437889914) +description = Pleasant Hills borough, PA +station = ('kagc', 0.00067161752625475646) +zone = ('paz021', 0.0024425997430798257) + +[fips4261432] +centroid = (0.70885542260100542, -1.3887556060186221) +description = Pleasant View CDP, PA +station = ('klbe', 0.0062032730702370137) +zone = ('paz022', 0.0037273636520834697) + +[fips4261496] +centroid = (0.70126840652941613, -1.3720603972592826) +description = Pleasantville borough, PA +station = ('kjst', 0.0037824239116117384) +zone = ('paz034', 0.0034394245681118444) + +[fips4261512] +centroid = (0.7259431733624111, -1.3889472955303686) +description = Pleasantville borough, PA +station = ('kfkl', 0.0052363218777404874) +zone = ('paz008', 0.0040804764203700361) + +[fips4261536] +centroid = (0.70690147414352023, -1.3919459806248051) +description = Plum borough, PA +station = ('kagc', 0.0034396833767053507) +zone = ('paz021', 0.0030905230416488506) + +[fips4261624] +centroid = (0.70480409452810611, -1.3114450425243496) +description = Plumsteadville CDP, PA +station = ('kdyl', 0.00091044052008385401) +zone = ('paz069', 0.00090795349096406722) + +[fips4261632] +centroid = (0.71196320822698411, -1.3819404443554348) +description = Plumville borough, PA +station = ('kidi', 0.0029695183434081257) +zone = ('paz023', 0.0027349240414421237) + +[fips4261648] +centroid = (0.71980594994057578, -1.3255879865053277) +description = Plymouth borough, PA +station = ('kavp', 0.0032662446437927862) +zone = ('paz047', 0.0012352509505422836) + +[fips4261688] +centroid = (0.70004987000555119, -1.3138806320422152) +description = Plymouth Meeting CDP, PA +station = ('klom', 0.00052066017608565543) +zone = ('paz068', 0.0021132468453834018) + +[fips4261704] +centroid = (0.71634593941825209, -1.369224411757717) +description = Plymptonville CDP, PA +station = ('kfig', 0.00046271650340659826) +zone = ('paz017', 0.00081733253228980147) + +[fips4261756] +centroid = (0.7182960656046754, -1.3083870336886378) +description = Pocono Mountain Lake Estates CDP, PA +station = ('k12n', 0.0038922160375389147) +zone = ('paz048', 0.0032139978295971944) + +[fips4261768] +centroid = (0.71760584024538931, -1.3169093891596635) +description = Pocono Pines CDP, PA +station = ('kmpo', 0.00097013541223845605) +zone = ('paz055', 0.0018047474381159966) + +[fips4261773] +centroid = (0.71877369240777622, -1.3084029859980011) +description = Pocono Ranch Lands CDP, PA +station = ('k12n', 0.0042141313586504829) +zone = ('paz048', 0.0027548132439562121) + +[fips4261774] +centroid = (0.72046454993381581, -1.3160036854509258) +description = Pocono Springs CDP, PA +station = ('kmpo', 0.0025635209320258963) +zone = ('paz072', 0.0035903421637613225) + +[fips4261788] +centroid = (0.72123315802980914, -1.3070906031202565) +description = Pocono Woodland Lakes CDP, PA +station = ('kfwn', 0.0040078321468295574) +zone = ('paz048', 0.0018790796177941842) + +[fips4261864] +centroid = (0.693517189881799, -1.3945270258825322) +description = Point Marion borough, PA +station = ('kmgw', 0.0015098089183637723) +zone = ('wvz022', 0.0026875973546910022) + +[fips4261936] +centroid = (0.72202654980118064, -1.3950601716091389) +description = Polk borough, PA +station = ('kfkl', 0.00087929521678394625) +zone = ('paz008', 0.0023337051987151278) + +[fips4261968] +centroid = (0.69751039849060692, -1.3244364880780319) +description = Pomeroy CDP, PA +station = ('kmqs', 0.00033519740463233943) +zone = ('paz067', 0.0018300437865108596) + +[fips4262048] +centroid = (0.70488401315455496, -1.3731322039529323) +description = Portage borough, PA +station = ('kjst', 0.0024402354966175164) +zone = ('paz024', 0.0019633369536268706) + +[fips4262088] +centroid = (0.72981286502005527, -1.3661821108852734) +description = Port Allegany borough, PA +station = ('kelz', 0.0061305802739869729) +zone = ('paz005', 0.0038076283999146678) + +[fips4262128] +centroid = (0.71029514470097554, -1.3293582642087785) +description = Port Carbon borough, PA +station = ('krdg', 0.0063449046301352566) +zone = ('paz058', 0.00067196468049696731) + +[fips4262136] +centroid = (0.70831138601986632, -1.3269880372714) +description = Port Clinton borough, PA +station = ('krdg', 0.003874894360065714) +zone = ('paz060', 0.0032273125366218979) + +[fips4262224] +centroid = (0.71426440739244612, -1.3988268888409154) +description = Portersville borough, PA +station = ('kbtp', 0.0035792902784944126) +zone = ('paz014', 0.0030923688230972694) + +[fips4262264] +centroid = (0.71421927317798961, -1.3106977972584009) +description = Portland borough, PA +station = ('kmpo', 0.0052730794078867946) +zone = ('njz007', 0.0017372510883717507) + +[fips4262280] +centroid = (0.71209972788107512, -1.3622693270483972) +description = Port Matilda borough, PA +station = ('kunv', 0.0028088067048744679) +zone = ('paz018', 0.0033649033424984522) + +[fips4262304] +centroid = (0.70744777965268701, -1.3507008833404508) +description = Port Royal borough, PA +station = ('kunv', 0.0082222444809365251) +zone = ('paz028', 0.00017275871124220301) + +[fips4262312] +centroid = (0.71023329023228488, -1.3420905283685396) +description = Port Trevorton CDP, PA +station = ('kseg', 0.0021868881726441378) +zone = ('paz050', 0.0026614215039139836) + +[fips4262320] +centroid = (0.70402862728815252, -1.394066311319883) +description = Port Vue borough, PA +station = ('kagc', 0.00060432930501974559) +zone = ('paz021', 0.0026921344149408669) + +[fips4262340] +centroid = (0.71082031427290071, -1.3544807778080801) +description = Potlicker Flats CDP, PA +station = ('kunv', 0.003873192708217173) +zone = ('paz027', 0.0020403912904843396) + +[fips4262396] +centroid = (0.7027466829525626, -1.319631142861686) +description = Pottsgrove CDP, PA +station = ('kptw', 0.00095826049093844252) +zone = ('paz068', 0.0033580433264210289) + +[fips4262416] +centroid = (0.70251115077000603, -1.3202500191611508) +description = Pottstown borough, PA +station = ('kptw', 0.0012991550107293742) +zone = ('paz068', 0.0037637094715603655) + +[fips4262432] +centroid = (0.70999739153058528, -1.3301016348437877) +description = Pottsville city, PA +station = ('krdg', 0.0063429540554502655) +zone = ('paz058', 0.00046338374213642869) + +[fips4262712] +centroid = (0.72042384885565924, -1.324730576056993) +description = Pringle borough, PA +station = ('kavp', 0.0024120218154789412) +zone = ('paz047', 0.0020895160004978093) + +[fips4262736] +centroid = (0.70320104451673437, -1.341080192171145) +description = Progress CDP, PA +station = ('kcxy', 0.001297297146938006) +zone = ('paz057', 0.0023194494580519439) + +[fips4262744] +centroid = (0.72587723482327071, -1.3147891980909259) +description = Prompton borough, PA +station = ('kavp', 0.0068987585742584312) +zone = ('paz072', 0.001984052012467475) + +[fips4262752] +centroid = (0.71382592832446767, -1.3971125042765589) +description = Prospect borough, PA +station = ('kbtp', 0.002405636941788527) +zone = ('paz014', 0.0018025881558739016) + +[fips4262784] +centroid = (0.72463855719983783, -1.3650209607872139) +description = Prospect Park CDP, PA +station = ('kbfd', 0.0073877240302723099) +zone = ('paz011', 0.001432217894682725) + +[fips4262792] +centroid = (0.69614371841983269, -1.3143615575176022) +description = Prospect Park borough, PA +station = ('kphl', 0.0010480428013644198) +zone = ('paz070', 0.0013380855966049654) + +[fips4262920] +centroid = (0.71460315834696575, -1.3783696926920721) +description = Punxsutawney borough, PA +station = ('kduj', 0.0043512661216199011) +zone = ('paz016', 0.0032340363092342121) + +[fips4263009] +centroid = (0.72586302784315948, -1.4046111368748273) +description = Pymatuning Central CDP, PA +station = ('kgkj', 0.0035010165300942684) +zone = ('ohz014', 0.0037986912835794588) + +[fips4263011] +centroid = (0.72721047438557673, -1.404384645497796) +description = Pymatuning North CDP, PA +station = ('kgkj', 0.0032927304947578248) +zone = ('ohz014', 0.003627816924813768) + +[fips4263013] +centroid = (0.7245294566682956, -1.4045755670646718) +description = Pymatuning South CDP, PA +station = ('kgkj', 0.0039921392641911659) +zone = ('ohz014', 0.0045420022073904519) + +[fips4263048] +centroid = (0.70580552954631548, -1.3150316941371978) +description = Quakertown borough, PA +station = ('kukt', 0.00048384211710993948) +zone = ('paz068', 0.0040031019341697383) + +[fips4263064] +centroid = (0.6963083204215883, -1.3292780488763567) +description = Quarryville borough, PA +station = ('klns', 0.0042777369926429443) +zone = ('paz066', 0.0028079198191203699) + +[fips4263116] +centroid = (0.69709520211484988, -1.3384468219424435) +description = Queens Gate CDP, PA +station = ('kthv', 0.0026560674894683884) +zone = ('paz065', 0.0006365356289598365) + +[fips4263160] +centroid = (0.7030059865195315, -1.3340463058460976) +description = Quentin CDP, PA +station = ('kmui', 0.0032071598499383946) +zone = ('paz059', 0.0015634382962397542) + +[fips4263288] +centroid = (0.69393610380886273, -1.3385989971999248) +description = Railroad borough, PA +station = ('kthv', 0.0037164484517509125) +zone = ('paz065', 0.0028271486687942221) + +[fips4263312] +centroid = (0.69631174126692219, -1.3703854222294363) +description = Rainsburg borough, PA +station = ('kcbe', 0.0058852093115255924) +zone = ('paz034', 0.0019688292344963881) + +[fips4263349] +centroid = (0.71076390523147615, -1.3603654346338592) +description = Ramblewood CDP, PA +station = ('kunv', 0.0025239675829836507) +zone = ('paz019', 0.0041236251555499624) + +[fips4263360] +centroid = (0.7121379680449863, -1.3683479597672432) +description = Ramey borough, PA +station = ('kfig', 0.0043249065007921776) +zone = ('paz017', 0.0035842895650612153) + +[fips4263408] +centroid = (0.70528540397592865, -1.394156440122456) +description = Rankin borough, PA +station = ('kagc', 0.0011572411344576311) +zone = ('paz021', 0.0017001619021639908) + +[fips4263416] +centroid = (0.7118463060736856, -1.3354788895494272) +description = Ranshaw CDP, PA +station = ('kseg', 0.0046470652412509894) +zone = ('paz052', 0.0027844219312359877) + +[fips4263488] +centroid = (0.7090496952000449, -1.3125877095856302) +description = Raubsville CDP, PA +station = ('kukt', 0.0040629728629300067) +zone = ('paz062', 0.002619018400131855) + +[fips4263496] +centroid = (0.71781472125026802, -1.348142195750442) +description = Rauchtown CDP, PA +station = ('kipt', 0.0047861783634854755) +zone = ('paz045', 0.002020018629914026) + +[fips4263536] +centroid = (0.70805583491078927, -1.3333208248359212) +description = Ravine CDP, PA +station = ('kmui', 0.0032934095639374663) +zone = ('paz058', 0.0033582521768594385) + +[fips4263624] +centroid = (0.70405220668634694, -1.3251635224312426) +description = Reading city, PA +station = ('krdg', 0.00071976868671824192) +zone = ('paz060', 0.0013470501514260694) + +[fips4263664] +centroid = (0.70183857068945743, -1.3285046236716278) +description = Reamstown CDP, PA +station = ('klns', 0.0029500151836031295) +zone = ('paz066', 0.0034367916011196443) + +[fips4263688] +centroid = (0.71458451823055447, -1.3516533269665567) +description = Rebersburg CDP, PA +station = ('kunv', 0.0055948087343207992) +zone = ('paz045', 0.0025135533066468828) + +[fips4263808] +centroid = (0.70471164443762802, -1.3174397598127596) +description = Red Hill borough, PA +station = ('kukt', 0.0016925839730297092) +zone = ('paz068', 0.0032880460025953408) + +[fips4263840] +centroid = (0.69636209401584226, -1.3370572082452983) +description = Red Lion borough, PA +station = ('kthv', 0.0037031627735327833) +zone = ('paz065', 0.0016328417209675594) + +[fips4263976] +centroid = (0.70973658698045983, -1.3542534312197152) +description = Reedsville CDP, PA +station = ('kunv', 0.0046881949998761633) +zone = ('paz027', 0.0010034866292969) + +[fips4264032] +centroid = (0.69727907255154764, -1.3307081891187333) +description = Refton CDP, PA +station = ('klns', 0.0029843245821398012) +zone = ('paz066', 0.0015934314465573161) + +[fips4264056] +centroid = (0.70611686137828622, -1.3307468830682501) +description = Rehrersburg CDP, PA +station = ('krdg', 0.0040387192012413531) +zone = ('paz059', 0.0032226916646251927) + +[fips4264072] +centroid = (0.70355342649271202, -1.32403019288146) +description = Reiffton CDP, PA +station = ('krdg', 0.0017086345497885551) +zone = ('paz060', 0.002036277379517993) + +[fips4264104] +centroid = (0.70845340346110108, -1.3358030844579851) +description = Reinerton CDP, PA +station = ('kmui', 0.0027886946792657756) +zone = ('paz059', 0.004048161724828565) + +[fips4264112] +centroid = (0.70283737026049631, -1.3285839139795461) +description = Reinholds CDP, PA +station = ('krdg', 0.0026750532355730248) +zone = ('paz060', 0.0036576911353755123) + +[fips4264184] +centroid = (0.70511570561275727, -1.3986999161378326) +description = Rennerdale CDP, PA +station = ('kpit', 0.0019125164288242278) +zone = ('paz021', 0.0024214680733677949) + +[fips4264188] +centroid = (0.7094704940827008, -1.3290410855238133) +description = Renningers CDP, PA +station = ('krdg', 0.0054968040242966507) +zone = ('paz058', 0.0013277331930504073) + +[fips4264200] +centroid = (0.72132796431477741, -1.3568551760823706) +description = Renovo borough, PA +station = ('kunv', 0.0084806348643848093) +zone = ('paz012', 0.00066730333164251548) + +[fips4264224] +centroid = (0.69754493855650379, -1.3941134701162721) +description = Republic CDP, PA +station = ('kmgw', 0.0055476763719816144) +zone = ('paz075', 0.0014392089054468609) + +[fips4264288] +centroid = (0.70670816147556925, -1.3746852851878195) +description = Revloc CDP, PA +station = ('kjst', 0.0031870539134805859) +zone = ('paz024', 0.00066817376796849705) + +[fips4264296] +centroid = (0.73127440373567532, -1.370762622787377) +description = Rew CDP, PA +station = ('kbfd', 0.0021186427196581452) +zone = ('paz005', 0.0016380247960963309) + +[fips4264368] +centroid = (0.72157367176687315, -1.4032824351685766) +description = Reynolds Heights CDP, PA +station = ('kyng', 0.0038303379791622106) +zone = ('paz007', 0.0020237657878774645) + +[fips4264376] +centroid = (0.7172364587624972, -1.376861222072866) +description = Reynoldsville borough, PA +station = ('kduj', 0.0015497011309366) +zone = ('paz016', 0.0015742334424529167) + +[fips4264392] +centroid = (0.70032208900898474, -1.3364090453209851) +description = Rheems CDP, PA +station = ('kmdt', 0.0029205920278322197) +zone = ('paz065', 0.0041495120822744192) + +[fips4264432] +centroid = (0.69716955314098494, -1.3962298040073629) +description = Rices Landing borough, PA +station = ('kafj', 0.0050347125512136288) +zone = ('paz031', 0.0034042180686752735) + +[fips4264440] +centroid = (0.72918681541736496, -1.3928530805969443) +description = Riceville CDP, PA +station = ('kgkj', 0.0059431307099583417) +zone = ('paz003', 0.0042618228710320401) + +[fips4264464] +centroid = (0.70206689466220351, -1.3088750277474954) +description = Richboro CDP, PA +station = ('kpne', 0.0025007356460824198) +zone = ('paz069', 0.0024658409789975891) + +[fips4264488] +centroid = (0.71006448198703198, -1.3460619552682827) +description = Richfield CDP, PA +station = ('kseg', 0.0041149407080207081) +zone = ('paz050', 0.0016645793033755326) + +[fips4264560] +centroid = (0.70436929810484927, -1.3309330398862678) +description = Richland borough, PA +station = ('klns', 0.0042405390436456615) +zone = ('paz059', 0.0026765990796185023) + +[fips4264584] +centroid = (0.7063789051121806, -1.314602203514867) +description = Richlandtown borough, PA +station = ('kukt', 0.0010367379676303403) +zone = ('paz069', 0.0037039372256425602) + +[fips4264784] +centroid = (0.72312350668935166, -1.3740456045636711) +description = Ridgway borough, PA +station = ('kduj', 0.0047984173387468155) +zone = ('paz010', 0.0010248289059281354) + +[fips4264832] +centroid = (0.69600220712408101, -1.3146774795655054) +description = Ridley Park borough, PA +station = ('kphl', 0.00124990089989176) +zone = ('paz070', 0.0011940845880596374) + +[fips4264856] +centroid = (0.70851478669089374, -1.3124623949453369) +description = Riegelsville borough, PA +station = ('kukt', 0.0037002998013409539) +zone = ('paz062', 0.0031328824042701829) + +[fips4264904] +centroid = (0.71629705274590383, -1.387578747957295) +description = Rimersburg borough, PA +station = ('kbtp', 0.0074192462778758838) +zone = ('paz015', 0.0028558802379035869) + +[fips4265000] +centroid = (0.71308063782728093, -1.3305524533895778) +description = Ringtown borough, PA +station = ('kseg', 0.0083694077659299503) +zone = ('paz058', 0.0026406739583382413) + +[fips4265088] +centroid = (0.70308229231442865, -1.3774440049633994) +description = Riverside CDP, PA +station = ('kjst', 0.0013101718583115184) +zone = ('paz024', 0.0046166537133895654) + +[fips4265112] +centroid = (0.71469100076821857, -1.3376533952644869) +description = Riverside borough, PA +station = ('kseg', 0.0037568310355203909) +zone = ('paz051', 0.0014000921349707127) + +[fips4265192] +centroid = (0.70497047676569868, -1.3255792773123602) +description = Riverview Park CDP, PA +station = ('krdg', 0.00049138013727136921) +zone = ('paz060', 0.00053518627636818528) + +[fips4265256] +centroid = (0.70397480133402102, -1.3682677444348215) +description = Roaring Spring borough, PA +station = ('kaoo', 0.0012174750371343628) +zone = ('paz025', 0.0026335107460994825) + +[fips4265336] +centroid = (0.7042164596222521, -1.3288711951744243) +description = Robesonia borough, PA +station = ('krdg', 0.0023096900444879438) +zone = ('paz060', 0.0030653377447748811) + +[fips4265360] +centroid = (0.70522690053940185, -1.3811704050894549) +description = Robinson CDP, PA +station = ('kidi', 0.003986060354738862) +zone = ('paz074', 0.0032284057062128692) + +[fips4265392] +centroid = (0.71039536150662508, -1.4012102406542688) +description = Rochester borough, PA +station = ('kbvi', 0.0019038573677953431) +zone = ('paz020', 0.0009412710029866355) + +[fips4265496] +centroid = (0.70233914857222213, -1.3596031271764655) +description = Rockhill borough, PA +station = ('kaoo', 0.005649488098526426) +zone = ('paz026', 0.0032572217149583983) + +[fips4265568] +centroid = (0.69956674541530661, -1.3105644191969632) +description = Rockledge borough, PA +station = ('kpne', 0.00097693220212705795) +zone = ('paz071', 0.0014288825706993112) + +[fips4265736] +centroid = (0.69666133071609671, -1.3815556516152476) +description = Rockwood borough, PA +station = ('k2g4', 0.006352162854767778) +zone = ('paz033', 0.0019901832413729116) + +[fips4265848] +centroid = (0.69604859797559904, -1.4009647950015607) +description = Rogersville CDP, PA +station = ('kafj', 0.0044141573016035903) +zone = ('paz031', 0.00077915048436802219) + +[fips4265872] +centroid = (0.71785776106962218, -1.3338733262639326) +description = Rohrsburg CDP, PA +station = ('kseg', 0.0079858295605825455) +zone = ('paz053', 0.001448895838238262) + +[fips4265944] +centroid = (0.73055958668722865, -1.3324035670475356) +description = Rome borough, PA +station = ('kbgm', 0.0075595187231148999) +zone = ('paz038', 0.0025735680309554197) + +[fips4265976] +centroid = (0.69582777891863667, -1.3949157805201213) +description = Ronco CDP, PA +station = ('kmgw', 0.0038056165552440829) +zone = ('paz075', 0.002461771862592917) + +[fips4265984] +centroid = (0.69862808989029157, -1.3295234072626021) +description = Ronks CDP, PA +station = ('klns', 0.0022605871547823732) +zone = ('paz066', 0.00098758497240732405) + +[fips4266016] +centroid = (0.69949660063266894, -1.3938891604008057) +description = Roscoe borough, PA +station = ('kagc', 0.0047954709906037618) +zone = ('paz075', 0.0025772864558703335) + +[fips4266168] +centroid = (0.71345993278032438, -1.3128393511571828) +description = Roseto borough, PA +station = ('kmpo', 0.004943781541437888) +zone = ('paz062', 0.0024510312569850112) + +[fips4266192] +centroid = (0.69629472430671524, -1.315719598208579) +description = Rose Valley borough, PA +station = ('kphl', 0.0020919587118266784) +zone = ('paz070', 0.00042545769666782056) + +[fips4266232] +centroid = (0.73065891337495958, -1.3431587396839304) +description = Roseville borough, PA +station = ('kelm', 0.0053402466599345912) +zone = ('paz037', 0.0041804135381615995) + +[fips4266304] +centroid = (0.71385315546079875, -1.3776921733297405) +description = Rossiter CDP, PA +station = ('kduj', 0.0049800041894601695) +zone = ('paz016', 0.0040549185347109927) + +[fips4266320] +centroid = (0.70550456497010161, -1.3978093269804177) +description = Rosslyn Farms borough, PA +station = ('kpit', 0.0021967773517805704) +zone = ('paz021', 0.0016397833413500987) + +[fips4266384] +centroid = (0.71694863651555074, -1.3510833547927328) +description = Rote CDP, PA +station = ('kunv', 0.0070193241748492908) +zone = ('paz045', 0.00038537610332166106) + +[fips4266392] +centroid = (0.70080332864363704, -1.330775384294935) +description = Rothsville CDP, PA +station = ('klns', 0.00094268951231927297) +zone = ('paz066', 0.0019316088322258429) + +[fips4266408] +centroid = (0.72914196045558877, -1.3640643458241959) +description = Roulette CDP, PA +station = ('kelz', 0.0059903723356340716) +zone = ('paz006', 0.0034213968001149957) + +[fips4266440] +centroid = (0.72376203539619377, -1.3906990301407178) +description = Rouseville borough, PA +station = ('kfkl', 0.0028464000265202767) +zone = ('paz008', 0.0015487362410660176) + +[fips4266448] +centroid = (0.69349146372862458, -1.3531187926729937) +description = Rouzerville CDP, PA +station = ('krsp', 0.0016622021400698067) +zone = ('paz036', 0.004253867985702175) + +[fips4266472] +centroid = (0.69828638932933607, -1.3930819979816358) +description = Rowes Run CDP, PA +station = ('kagc', 0.0060984104639007107) +zone = ('paz075', 0.0012194612575822028) + +[fips4266560] +centroid = (0.70137424329525688, -1.3390854379157484) +description = Royalton borough, PA +station = ('kmdt', 0.00062127993551232437) +zone = ('paz057', 0.0040762069436834887) + +[fips4266576] +centroid = (0.70138370297980279, -1.3184022565353566) +description = Royersford borough, PA +station = ('kptw', 0.00083370154019816523) +zone = ('paz068', 0.0023285769561110664) + +[fips4266696] +centroid = (0.71515714330484115, -1.3348556150202475) +description = Rupert CDP, PA +station = ('kseg', 0.0057872553362172813) +zone = ('paz053', 0.0016249835748196751) + +[fips4266720] +centroid = (0.7120787839300512, -1.3843069711947991) +description = Rural Valley borough, PA +station = ('kidi', 0.0040566837316101988) +zone = ('paz022', 0.0019895052244732225) + +[fips4266808] +centroid = (0.73194501159416914, -1.3812594343345992) +description = Russell CDP, PA +station = ('kjhw', 0.0040564342510052949) +zone = ('paz004', 0.0027577037164213287) + +[fips4266832] +centroid = (0.70874415786119083, -1.3934733007999329) +description = Russellton CDP, PA +station = ('kbtp', 0.0033871350855270983) +zone = ('paz021', 0.0030671432962273469) + +[fips4266864] +centroid = (0.70283452537381563, -1.3398459476840121) +description = Rutherford CDP, PA +station = ('kmdt', 0.0012122191436524498) +zone = ('paz057', 0.0025537511483487711) + +[fips4266928] +centroid = (0.69640293472033887, -1.3147115309392121) +description = Rutledge borough, PA +station = ('kphl', 0.0013949445308963297) +zone = ('paz070', 0.0009969269743498807) + +[fips4267120] +centroid = (0.72805589442195029, -1.3985471823749909) +description = Saegertown borough, PA +station = ('kgkj', 0.0018055181029144839) +zone = ('paz003', 0.00060959017865811339) + +[fips4267224] +centroid = (0.71071713040752271, -1.3297722563073513) +description = St. Clair borough, PA +station = ('krdg', 0.0068604253523575146) +zone = ('paz058', 0.00043076407834816908) + +[fips4267256] +centroid = (0.70085200587647523, -1.3702712951496483) +description = St. Clairsville borough, PA +station = ('kaoo', 0.0036080412404700178) +zone = ('paz034', 0.0026195444657535283) + +[fips4267304] +centroid = (0.70381773915463408, -1.3241068651955004) +description = St. Lawrence borough, PA +station = ('krdg', 0.0015204047477708532) +zone = ('paz060', 0.0017729464098050331) + +[fips4267344] +centroid = (0.72353119814932498, -1.3704303470043826) +description = St. Marys city, PA +station = ('kbfd', 0.0061958296370593392) +zone = ('paz010', 0.0017711387846150828) + +[fips4267352] +centroid = (0.70379531167374587, -1.3747328803165213) +description = St. Michael CDP, PA +station = ('kjst', 0.00090122265248149215) +zone = ('paz024', 0.0030641479841055481) + +[fips4267384] +centroid = (0.71839451962778056, -1.3902335508292112) +description = St. Petersburg borough, PA +station = ('kfkl', 0.0047755680987747965) +zone = ('paz015', 0.0031165912239005116) + +[fips4267416] +centroid = (0.70321607180159407, -1.3858867385139491) +description = St. Vincent College CDP, PA +station = ('klbe', 0.00015710701873479263) +zone = ('paz073', 0.0024378582620873932) + +[fips4267584] +centroid = (0.69382846935389209, -1.3802824513792102) +description = Salisbury borough, PA +station = ('k2g4', 0.0045781768796483123) +zone = ('mdz501', 0.003379580956664054) + +[fips4267608] +centroid = (0.70316879083215755, -1.374737295999529) +description = Salix CDP, PA +station = ('kjst', 0.0010138185717956593) +zone = ('paz024', 0.0036775039216920273) + +[fips4267616] +centroid = (0.72048369619571029, -1.3479488132693214) +description = Salladasburg borough, PA +station = ('kipt', 0.0041684667609826892) +zone = ('paz041', 0.0026613598759857048) + +[fips4267632] +centroid = (0.70182755766187743, -1.3614656203811464) +description = Saltillo borough, PA +station = ('kaoo', 0.0044124013047157308) +zone = ('paz026', 0.0035976253677446422) + +[fips4267648] +centroid = (0.70659019467142714, -1.3866335125410001) +description = Saltsburg borough, PA +station = ('klbe', 0.0035714668465364249) +zone = ('paz073', 0.0029667525867854553) + +[fips4267656] +centroid = (0.69975316403271215, -1.333922945974567) +description = Salunga CDP, PA +station = ('klns', 0.0017603568918265389) +zone = ('paz066', 0.0025664063994777558) + +[fips4267712] +centroid = (0.70250202269801809, -1.3192679223910533) +description = Sanatoga CDP, PA +station = ('kptw', 0.00059296028096171777) +zone = ('paz068', 0.0030280750629594938) + +[fips4267744] +centroid = (0.70443853531627598, -1.3338108958365886) +description = Sand Hill CDP, PA +station = ('kmui', 0.0022998377122352945) +zone = ('paz059', 0.00048903561369714754) + +[fips4267784] +centroid = (0.71737344965548622, -1.3749277463275067) +description = Sandy CDP, PA +station = ('kduj', 0.0019810804570032123) +zone = ('paz016', 0.0029524318133348575) + +[fips4267848] +centroid = (0.72169750287730217, -1.3977240850997503) +description = Sandy Lake borough, PA +station = ('kfkl', 0.0029008639830582763) +zone = ('paz007', 0.0024298183972927432) + +[fips4267872] +centroid = (0.71227775146477856, -1.3654463324325101) +description = Sandy Ridge CDP, PA +station = ('kfig', 0.0048221811021713634) +zone = ('paz018', 0.0043651782313716926) + +[fips4267920] +centroid = (0.70635850221322483, -1.3716904049111525) +description = Sankertown borough, PA +station = ('kjst', 0.0041921760036499551) +zone = ('paz024', 0.0016669461801458116) + +[fips4268036] +centroid = (0.71767024289478787, -1.3098045202939375) +description = Saw Creek CDP, PA +station = ('kmpo', 0.0044379082475098936) +zone = ('paz048', 0.0037146560379715684) + +[fips4268056] +centroid = (0.71123826826887582, -1.3930345773858592) +description = Saxonburg borough, PA +station = ('kbtp', 0.0018718461374560697) +zone = ('paz014', 0.0030896912663296119) + +[fips4268072] +centroid = (0.70184415574306391, -1.3656688444588467) +description = Saxton borough, PA +station = ('kaoo', 0.001783454896927018) +zone = ('paz034', 0.004844976838549433) + +[fips4268088] +centroid = (0.7138228739982766, -1.3145252868547317) +description = Saylorsburg CDP, PA +station = ('kmpo', 0.0041821725988256892) +zone = ('paz062', 0.0025291715315050398) + +[fips4268096] +centroid = (0.73279046653712776, -1.3355324711574634) +description = Sayre borough, PA +station = ('kelm', 0.0058438920033466041) +zone = ('paz038', 0.0034423424904517566) + +[fips4268104] +centroid = (0.70248741429217898, -1.376089437477634) +description = Scalp Level borough, PA +station = ('kjst', 0.001179930582609106) +zone = ('paz024', 0.0046283312049486824) + +[fips4268144] +centroid = (0.7033126757756919, -1.3315789164292609) +description = Schaefferstown CDP, PA +station = ('klns', 0.0031458250929971105) +zone = ('paz059', 0.0025019774215849881) + +[fips4268152] +centroid = (0.69897225136549235, -1.3725859682569357) +description = Schellsburg borough, PA +station = ('kjst', 0.0053269949811433452) +zone = ('paz034', 0.0021719379751189336) + +[fips4268188] +centroid = (0.70237337447885362, -1.3469984116784401) +description = Schlusser CDP, PA +station = ('kmdt', 0.0055239206367963299) +zone = ('paz063', 0.0018127543339290929) + +[fips4268192] +centroid = (0.70981331165437755, -1.3197109567683796) +description = Schnecksville CDP, PA +station = ('kabe', 0.0021956162911520838) +zone = ('paz061', 0.0010247199472804447) + +[fips4268200] +centroid = (0.70239793126142913, -1.3295004910895234) +description = Schoeneck CDP, PA +station = ('klns', 0.0027859680021507928) +zone = ('paz066', 0.003658006465016613) + +[fips4268248] +centroid = (0.70684038761970036, -1.3302755743570416) +description = Schubert CDP, PA +station = ('krdg', 0.0040724884122936523) +zone = ('paz058', 0.0036118375749699836) + +[fips4268312] +centroid = (0.70909685399643385, -1.3294608546622104) +description = Schuylkill Haven borough, PA +station = ('krdg', 0.0053204722820555054) +zone = ('paz058', 0.0014724326417784389) + +[fips4268328] +centroid = (0.70262527784979401, -1.3171215339302433) +description = Schwenksville borough, PA +station = ('kptw', 0.001201831139746514) +zone = ('paz068', 0.0015414507277225014) + +[fips4268376] +centroid = (0.69760408776485383, -1.3541033678106287) +description = Scotland CDP, PA +station = ('kryt', 0.0046682919710423878) +zone = ('paz036', 0.0019733762055787127) + +[fips4268432] +centroid = (0.69993630143112384, -1.3891052129210892) +description = Scottdale borough, PA +station = ('klbe', 0.004033635953487694) +zone = ('paz075', 0.0036360628805449696) + +[fips4269000] +centroid = (0.72263923018180076, -1.3206192261111176) +description = Scranton city, PA +station = ('kavp', 0.0015194798976368787) +zone = ('paz044', 0.00093754543644575228) + +[fips4269216] +centroid = (0.71209674336805417, -1.3415543283157421) +description = Selinsgrove borough, PA +station = ('kseg', 0.00028896378184788992) +zone = ('paz052', 0.002253981001281654) + +[fips4269248] +centroid = (0.70442431088287216, -1.3143528657779271) +description = Sellersville borough, PA +station = ('kukt', 0.0016362248116197774) +zone = ('paz068', 0.0027324278647930418) + +[fips4269256] +centroid = (0.710273642244591, -1.3305723675963432) +description = Seltzer CDP, PA +station = ('kmui', 0.0063376905523276116) +zone = ('paz058', 0.00032110699203103321) + +[fips4269272] +centroid = (0.72216404683965285, -1.3911556606329172) +description = Seneca CDP, PA +station = ('kfkl', 0.0020893927448424128) +zone = ('paz008', 0.0007848913742119723) + +[fips4269309] +centroid = (0.71011724329031978, -1.3973787542539506) +description = Seven Fields borough, PA +station = ('kbtp', 0.0022610825889087813) +zone = ('paz021', 0.003958299365383792) + +[fips4269336] +centroid = (0.69856991806632263, -1.3839301022494157) +description = Seven Springs borough, PA +station = ('klbe', 0.0047260825726341514) +zone = ('paz074', 0.0037877374760989764) + +[fips4269360] +centroid = (0.69559275288156319, -1.339831269465003) +description = Seven Valleys borough, PA +station = ('kthv', 0.0019018282903293083) +zone = ('paz065', 0.0012614447063526942) + +[fips4269368] +centroid = (0.70534107997906725, -1.3791915333302514) +description = Seward borough, PA +station = ('kjst', 0.0030192493188309034) +zone = ('paz074', 0.0041588318465799632) + +[fips4269376] +centroid = (0.70755698490398422, -1.3993908396288197) +description = Sewickley borough, PA +station = ('kpit', 0.0012228413133387372) +zone = ('paz021', 0.0029067188451146011) + +[fips4269400] +centroid = (0.70789446176814985, -1.3989332666588246) +description = Sewickley Heights borough, PA +station = ('kpit', 0.0017022580086859859) +zone = ('paz021', 0.0027736734570020273) + +[fips4269416] +centroid = (0.70804735261062468, -1.398483879283021) +description = Sewickley Hills borough, PA +station = ('kpit', 0.0020424741994180193) +zone = ('paz021', 0.0025997783431260337) + +[fips4269456] +centroid = (0.70127851198578506, -1.3590216183762862) +description = Shade Gap borough, PA +station = ('kaoo', 0.0063546915382682893) +zone = ('paz026', 0.0044056939058102502) + +[fips4269600] +centroid = (0.71188985203852273, -1.3361367914109663) +description = Shamokin city, PA +station = ('kseg', 0.0041473056812542028) +zone = ('paz052', 0.0023193545189015602) + +[fips4269616] +centroid = (0.71313706432199797, -1.3408782575766895) +description = Shamokin Dam borough, PA +station = ('kseg', 0.00091883648434735034) +zone = ('paz052', 0.0015578413289722636) + +[fips4269680] +centroid = (0.69843453287624535, -1.3771855740610566) +description = Shanksville borough, PA +station = ('kjst', 0.0053154382883997221) +zone = ('paz033', 0.0018018774968843289) + +[fips4269715] +centroid = (0.71408111291440168, -1.3948489867696474) +description = Shanor-Northvue CDP, PA +station = ('kbtp', 0.0023142387918829413) +zone = ('paz014', 8.6986980629684236e-05) + +[fips4269720] +centroid = (0.71966852271527371, -1.4049867666364417) +description = Sharon city, PA +station = ('kyng', 0.002207551400856721) +zone = ('ohz023', 0.0037153511264348834) + +[fips4269752] +centroid = (0.69651610186903823, -1.3136707038397852) +description = Sharon Hill borough, PA +station = ('kphl', 0.0008480199284850563) +zone = ('paz070', 0.0017640049922108077) + +[fips4269776] +centroid = (0.70674041516014618, -1.3948941384373965) +description = Sharpsburg borough, PA +station = ('kagc', 0.0025009028016384112) +zone = ('paz021', 0.00089951345381489669) + +[fips4269800] +centroid = (0.72010607675874871, -1.404672624824375) +description = Sharpsville borough, PA +station = ('kyng', 0.0024306214939899592) +zone = ('ohz023', 0.0037928336965662346) + +[fips4269816] +centroid = (0.70714552353282667, -1.3281983707477805) +description = Shartlesville CDP, PA +station = ('krdg', 0.0031589221142383542) +zone = ('paz060', 0.0028978170037045285) + +[fips4269832] +centroid = (0.72114896334669287, -1.3254123889292844) +description = Shavertown CDP, PA +station = ('kavp', 0.0027275945196167609) +zone = ('paz047', 0.0025514401737582086) + +[fips4269936] +centroid = (0.72333121832363145, -1.3998710669725061) +description = Sheakleyville borough, PA +station = ('kgkj', 0.003310086674205587) +zone = ('paz007', 0.0025604880045517536) + +[fips4269952] +centroid = (0.71896813953974092, -1.3267789991868888) +description = Sheatown CDP, PA +station = ('kavp', 0.0044673279464125517) +zone = ('paz047', 0.00048884542547135521) + +[fips4269984] +centroid = (0.72781882634965178, -1.3793283845969002) +description = Sheffield CDP, PA +station = ('kbfd', 0.0054428959991141817) +zone = ('paz004', 0.0037506111564394387) + +[fips4270040] +centroid = (0.70958584289296511, -1.384051088473164) +description = Shelocta borough, PA +station = ('kidi', 0.0026824169073600677) +zone = ('paz023', 0.0028184481435820077) + +[fips4270056] +centroid = (0.71239245450321964, -1.3299525313657898) +description = Shenandoah borough, PA +station = ('kmui', 0.0082682850058770734) +zone = ('paz058', 0.0019510324853186458) + +[fips4270064] +centroid = (0.71268905575630348, -1.3299937036828444) +description = Shenandoah Heights CDP, PA +station = ('kmui', 0.0084922092337822233) +zone = ('paz058', 0.0022436392344558844) + +[fips4270128] +centroid = (0.71377037449437664, -1.3285220944174403) +description = Sheppton CDP, PA +station = ('kavp', 0.0091614006489497083) +zone = ('paz058', 0.0035586484138867914) + +[fips4270224] +centroid = (0.71827595941169253, -1.3290845965820657) +description = Shickshinny borough, PA +station = ('kavp', 0.0063096064211702885) +zone = ('paz047', 0.0021665921506800311) + +[fips4270248] +centroid = (0.70343060767324916, -1.3258662967078507) +description = Shillington borough, PA +station = ('krdg', 0.0011006349448219534) +zone = ('paz060', 0.0020411483587037902) + +[fips4270256] +centroid = (0.69766711160414352, -1.3402742165758668) +description = Shiloh CDP, PA +station = ('kthv', 0.00157210870875244) +zone = ('paz065', 0.0012808964594265583) + +[fips4270304] +centroid = (0.73246213519824255, -1.3646811800884358) +description = Shinglehouse borough, PA +station = ('kelz', 0.0033891179434632208) +zone = ('paz006', 0.0054483865188989077) + +[fips4270352] +centroid = (0.69897584674375146, -1.3530239165748552) +description = Shippensburg borough, PA +station = ('kryt', 0.0056931107734587367) +zone = ('paz036', 0.0033920308511004994) + +[fips4270362] +centroid = (0.69920870857255257, -1.3530146314232347) +description = Shippensburg University CDP, PA +station = ('kryt', 0.0059190909054648716) +zone = ('paz036', 0.0035466891239272652) + +[fips4270368] +centroid = (0.71999709840025417, -1.3868955388216018) +description = Shippenville borough, PA +station = ('kfkl', 0.0057579200796564695) +zone = ('paz015', 0.0011896294520544692) + +[fips4270376] +centroid = (0.70903978172989357, -1.4035201490126981) +description = Shippingport borough, PA +station = ('kbvi', 0.0024815786925728596) +zone = ('paz020', 0.0013324795603434573) + +[fips4270384] +centroid = (0.70201207387039832, -1.3431326993714903) +description = Shiremanstown borough, PA +station = ('kcxy', 0.0014139126072289915) +zone = ('paz057', 0.004109968876857638) + +[fips4270408] +centroid = (0.70332248452608814, -1.35919992121267) +description = Shirleysburg borough, PA +station = ('kaoo', 0.0058604496634474092) +zone = ('paz026', 0.0025096994344842418) + +[fips4270464] +centroid = (0.70685661918174403, -1.3259226882959827) +description = Shoemakersville borough, PA +station = ('krdg', 0.0023257441684480379) +zone = ('paz060', 0.0015690264444048222) + +[fips4270568] +centroid = (0.69414065639719635, -1.3383161491413467) +description = Shrewsbury borough, PA +station = ('kthv', 0.0037240317578650655) +zone = ('paz065', 0.0026672685395366757) + +[fips4270640] +centroid = (0.70377853905963428, -1.374487417210521) +description = Sidman CDP, PA +station = ('kjst', 0.0010846016142461584) +zone = ('paz024', 0.0030433578634262112) + +[fips4270652] +centroid = (0.71540642868190363, -1.3164372950502914) +description = Sierra View CDP, PA +station = ('kmpo', 0.0025686796294870813) +zone = ('paz055', 0.0016540218888186707) + +[fips4270664] +centroid = (0.71099212448446703, -1.3531861623821209) +description = Siglerville CDP, PA +station = ('kunv', 0.0046445269505865829) +zone = ('paz027', 0.0024786729656016407) + +[fips4270704] +centroid = (0.72038511999955757, -1.3277229605128298) +description = Silkworth CDP, PA +station = ('kavp', 0.0045672234778356595) +zone = ('paz047', 0.002032662190127721) + +[fips4270744] +centroid = (0.70418247806171586, -1.3137291898230194) +description = Silverdale borough, PA +station = ('kukt', 0.0021294828084104499) +zone = ('paz068', 0.0026930259681976253) + +[fips4270840] +centroid = (0.72597464164882453, -1.3173691961511014) +description = Simpson CDP, PA +station = ('kavp', 0.0056485995413110938) +zone = ('paz072', 0.0029316675795402749) + +[fips4270880] +centroid = (0.70379864525261726, -1.3268434541961649) +description = Sinking Spring borough, PA +station = ('krdg', 0.0010434996596068221) +zone = ('paz060', 0.0020517079441890944) + +[fips4271008] +centroid = (0.70199308468813659, -1.3159966517740405) +description = Skippack CDP, PA +station = ('kptw', 0.00199595270478993) +zone = ('paz068', 0.0004859518907740417) + +[fips4271032] +centroid = (0.70402445595124019, -1.3391136249831681) +description = Skyline View CDP, PA +station = ('kmdt', 0.0024636878937262549) +zone = ('paz057', 0.0015348574457213079) + +[fips4271056] +centroid = (0.71389317586054701, -1.333465093751891) +description = Slabtown CDP, PA +station = ('kseg', 0.0063172975770643888) +zone = ('paz053', 0.0025404147108234166) + +[fips4271080] +centroid = (0.71111473386441959, -1.3204902637326876) +description = Slatedale CDP, PA +station = ('kabe', 0.0032090054336020371) +zone = ('paz061', 0.0024477132475329544) + +[fips4271144] +centroid = (0.71128441477429849, -1.3196576020531463) +description = Slatington borough, PA +station = ('kabe', 0.0027922376527531739) +zone = ('paz061', 0.0024676515730820479) + +[fips4271160] +centroid = (0.70619695453766018, -1.3878582798902943) +description = Slickville CDP, PA +station = ('klbe', 0.0034949681634533027) +zone = ('paz073', 0.0021834458362810149) + +[fips4271176] +centroid = (0.71749801380420108, -1.3875432130537244) +description = Sligo borough, PA +station = ('kfkl', 0.0067771013146230479) +zone = ('paz015', 0.0017835518220982425) + +[fips4271184] +centroid = (0.71679777025500846, -1.3972744533778514) +description = Slippery Rock borough, PA +station = ('kbtp', 0.0051931571207024345) +zone = ('paz014', 0.0033510302086597163) + +[fips4271210] +centroid = (0.71671394209103512, -1.3969954450436277) +description = Slippery Rock University CDP, PA +station = ('kbtp', 0.0050579712459748417) +zone = ('paz014', 0.0031646622878842663) + +[fips4271232] +centroid = (0.70440659579096443, -1.4029832159216147) +description = Slovan CDP, PA +station = ('kpit', 0.0029548802564376389) +zone = ('wvz002', 0.0029594254044370497) + +[fips4271248] +centroid = (0.72965662314541679, -1.3690907369903069) +description = Smethport borough, PA +station = ('kbfd', 0.0024771327108094087) +zone = ('paz005', 0.0016378582474720176) + +[fips4271256] +centroid = (0.71331838657798774, -1.3818003991362546) +description = Smicksburg borough, PA +station = ('kidi', 0.0042391747248774645) +zone = ('paz023', 0.0039634816520926191) + +[fips4271320] +centroid = (0.69468141175934173, -1.3929261749860178) +description = Smithfield borough, PA +station = ('kmgw', 0.0030271743283717904) +zone = ('paz075', 0.0025991075096641059) + +[fips4271424] +centroid = (0.70081615681363918, -1.3917546401789092) +description = Smithton borough, PA +station = ('kagc', 0.0041423528396235601) +zone = ('paz075', 0.00360584387863648) + +[fips4271456] +centroid = (0.69812627282375805, -1.3923785604799122) +description = Smock CDP, PA +station = ('kmgw', 0.0063822696725601615) +zone = ('paz075', 0.00089656754643178016) + +[fips4271504] +centroid = (0.69876342272049119, -1.3300188189707807) +description = Smoketown CDP, PA +station = ('klns', 0.0018974866944364178) +zone = ('paz066', 0.00058778199112833555) + +[fips4271600] +centroid = (0.71606609332598736, -1.3604824066003278) +description = Snow Shoe borough, PA +station = ('kunv', 0.0033673707468588263) +zone = ('paz018', 0.00096651817043958874) + +[fips4271620] +centroid = (0.71434580954875915, -1.4049241442228799) +description = S.N.P.J. borough, PA +station = ('kucp', 0.0020041421161162455) +zone = ('paz013', 0.0023955934011776685) + +[fips4271688] +centroid = (0.71337861789047396, -1.338284069989695) +description = Snydertown borough, PA +station = ('kseg', 0.0026813987901867374) +zone = ('paz052', 0.00055687778936764981) + +[fips4271694] +centroid = (0.71536111993452178, -1.3543659700498838) +description = Snydertown CDP, PA +station = ('kunv', 0.0040804696401236561) +zone = ('paz019', 0.002396662766252021) + +[fips4271776] +centroid = (0.69821949085910706, -1.3801689351646604) +description = Somerset borough, PA +station = ('kjst', 0.0063420194196867636) +zone = ('paz033', 0.00087261884440159674) + +[fips4271848] +centroid = (0.69839924231877004, -1.3291312143263865) +description = Soudersburg CDP, PA +station = ('klns', 0.0026365926821167287) +zone = ('paz066', 0.0013432990387747805) + +[fips4271856] +centroid = (0.70355970967801928, -1.3146230252928433) +description = Souderton borough, PA +station = ('kukt', 0.0023034095381557606) +zone = ('paz068', 0.0018464014386283553) + +[fips4271976] +centroid = (0.71557029764537339, -1.3847362000177419) +description = South Bethlehem borough, PA +station = ('kidi', 0.0071258182105175417) +zone = ('paz015', 0.0035404702904842577) + +[fips4272072] +centroid = (0.69763798205892757, -1.3231660280089204) +description = South Coatesville borough, PA +station = ('kmqs', 0.00079135404467895669) +zone = ('paz067', 0.00085017636522482457) + +[fips4272080] +centroid = (0.69800134215590037, -1.3888525416052779) +description = South Connellsville borough, PA +station = ('klbe', 0.0055889896675518809) +zone = ('paz076', 0.0019617187839001699) + +[fips4272168] +centroid = (0.70444993231629149, -1.3751383726616373) +description = South Fork borough, PA +station = ('kjst', 0.0009820112993316843) +zone = ('paz024', 0.0025377893423929989) + +[fips4272192] +centroid = (0.7029871718701951, -1.3883646522661754) +description = South Greensburg borough, PA +station = ('klbe', 0.0019651215224726804) +zone = ('paz073', 0.0012148109518163714) + +[fips4272216] +centroid = (0.70816643642548815, -1.4003836178139391) +description = South Heights borough, PA +station = ('kpit', 0.0015993899594219318) +zone = ('paz020', 0.0024000160778365315) + +[fips4272344] +centroid = (0.70355663789853573, -1.3776355373955134) +description = Southmont borough, PA +station = ('kjst', 0.0013263575079294409) +zone = ('paz024', 0.0043425160528389817) + +[fips4272376] +centroid = (0.71514407078874376, -1.4022960797951045) +description = South New Castle borough, PA +station = ('kucp', 0.0012541979475887137) +zone = ('paz013', 0.0003245111251335269) + +[fips4272403] +centroid = (0.70334925787681368, -1.3961653839046715) +description = South Park Township CDP, PA +station = ('kagc', 0.0013650889317848431) +zone = ('paz021', 0.002969723385050907) + +[fips4272416] +centroid = (0.71361235238390097, -1.3651716699681238) +description = South Philipsburg CDP, PA +station = ('kfig', 0.0038614354671711966) +zone = ('paz018', 0.0033563778104274008) + +[fips4272432] +centroid = (0.70224472625968914, -1.3205635850145638) +description = South Pottstown CDP, PA +station = ('kptw', 0.0015024262685932877) +zone = ('paz068', 0.0039617872536601428) + +[fips4272448] +centroid = (0.7212519203192681, -1.356858370034902) +description = South Renovo borough, PA +station = ('kunv', 0.0084052753020704783) +zone = ('paz012', 0.00059304906347343951) + +[fips4272520] +centroid = (0.70509230074748797, -1.3250983343836809) +description = South Temple CDP, PA +station = ('krdg', 0.00081173796562799552) +zone = ('paz060', 0.00031037224712125456) + +[fips4272552] +centroid = (0.69627960975539305, -1.3918408943505427) +description = South Uniontown CDP, PA +station = ('kmgw', 0.0048293244059679887) +zone = ('paz075', 0.0010111267362102384) + +[fips4272576] +centroid = (0.70392697931251635, -1.4007314095739842) +description = Southview CDP, PA +station = ('kpit', 0.002657604043995062) +zone = ('paz029', 0.0024917903397376497) + +[fips4272592] +centroid = (0.73293691711466258, -1.3359512105516018) +description = South Waverly borough, PA +station = ('kelm', 0.0055031466472925941) +zone = ('paz038', 0.0036075341313480847) + +[fips4272616] +centroid = (0.70322577583223511, -1.3883712496107481) +description = Southwest Greensburg borough, PA +station = ('klbe', 0.0019735413497894466) +zone = ('paz073', 0.00098791705036537164) + +[fips4272648] +centroid = (0.7195885691822399, -1.3439118143495807) +description = South Williamsport borough, PA +station = ('kipt', 0.001157249685872966) +zone = ('paz046', 0.0011115332704483769) + +[fips4272704] +centroid = (0.72995318949191568, -1.3907100606215905) +description = Spartansburg borough, PA +station = ('kgkj', 0.0077149453257019541) +zone = ('paz004', 0.0053053274251326924) + +[fips4272736] +centroid = (0.70025163006708169, -1.3941500173108088) +description = Speers borough, PA +station = ('kagc', 0.0040203175369158206) +zone = ('paz075', 0.0033409224077851616) + +[fips4272768] +centroid = (0.70586506272710103, -1.3168356140921817) +description = Spinnerstown CDP, PA +station = ('kukt', 0.00090711918461906685) +zone = ('paz061', 0.003520881304801788) + +[fips4272872] +centroid = (0.7295575408037811, -1.4027474044863777) +description = Springboro borough, PA +station = ('kgkj', 0.0035480351497360571) +zone = ('paz003', 0.0040013064550424504) + +[fips4272920] +centroid = (0.70121917079121721, -1.318534657212413) +description = Spring City borough, PA +station = ('kptw', 0.00098608758972405894) +zone = ('paz068', 0.0024626029293208689) + +[fips4272960] +centroid = (0.70757024940629942, -1.3924412876132286) +description = Springdale borough, PA +station = ('kagc', 0.0037861442647097294) +zone = ('paz021', 0.002938792956262076) + +[fips4273192] +centroid = (0.69605140795569476, -1.3415305569313298) +description = Spring Grove borough, PA +station = ('kthv', 0.00067707741161601059) +zone = ('paz065', 0.0019639032374191268) + +[fips4273224] +centroid = (0.70459610364114589, -1.3730360014045624) +description = Spring Hill CDP, PA +station = ('kjst', 0.0023765465030729104) +zone = ('paz024', 0.0022603900725080657) + +[fips4273264] +centroid = (0.70122370864727246, -1.3128280414236297) +description = Spring House CDP, PA +station = ('klom', 0.00092053316031381937) +zone = ('paz068', 0.0020552211673011988) + +[fips4273288] +centroid = (0.71303372337698734, -1.3537462036325008) +description = Spring Mills CDP, PA +station = ('kunv', 0.0037770183989569305) +zone = ('paz019', 0.0018582251154967658) + +[fips4273296] +centroid = (0.7038452106370604, -1.3265233608113489) +description = Springmont CDP, PA +station = ('krdg', 0.00084839084576995133) +zone = ('paz060', 0.0018697559810398139) + +[fips4273312] +centroid = (0.70292037811972119, -1.3171848021156283) +description = Spring Mount CDP, PA +station = ('kptw', 0.0012935864480160344) +zone = ('paz068', 0.0017524830407695431) + +[fips4273318] +centroid = (0.70429693675406169, -1.3262621897420805) +description = Spring Ridge CDP, PA +station = ('krdg', 0.00038067314020672106) +zone = ('paz060', 0.0013862250217025834) + +[fips4273528] +centroid = (0.6966044678890666, -1.3384299969684543) +description = Spry CDP, PA +station = ('kthv', 0.0026374271081266638) +zone = ('paz065', 0.00055225969068532017) + +[fips4273704] +centroid = (0.73027132810796924, -1.3825245536961999) +description = Starbrick CDP, PA +station = ('kjhw', 0.0054300555865072946) +zone = ('paz004', 0.00092375829335911098) + +[fips4273720] +centroid = (0.69920486884819799, -1.3921805005163959) +description = Star Junction CDP, PA +station = ('kagc', 0.0054208743767451923) +zone = ('paz075', 0.0019735014928802014) + +[fips4273784] +centroid = (0.73113423634344776, -1.3168488960477893) +description = Starrucca borough, PA +station = ('kmsv', 0.0090889697522036714) +zone = ('paz040', 0.0028749174657148654) + +[fips4273808] +centroid = (0.71193711555466688, -1.3588578715858641) +description = State College borough, PA +station = ('kunv', 0.0010338168654324752) +zone = ('paz019', 0.002502610366004944) + +[fips4273848] +centroid = (0.69347044996443064, -1.3565517505919114) +description = State Line CDP, PA +station = ('khgr', 0.00058633417178689687) +zone = ('mdz003', 0.0025560389410936809) + +[fips4273888] +centroid = (0.70207275896849008, -1.3408561617083592) +description = Steelton borough, PA +station = ('kcxy', 0.00036459247525041282) +zone = ('paz057', 0.0033673784800831658) + +[fips4274040] +centroid = (0.70188939467727562, -1.3294052484722421) +description = Stevens CDP, PA +station = ('klns', 0.0024498514153659828) +zone = ('paz066', 0.0031938483822434561) + +[fips4274104] +centroid = (0.6938165662083936, -1.3367912200672942) +description = Stewartstown borough, PA +station = ('kthv', 0.0048349953470845017) +zone = ('paz065', 0.0034256376811296887) + +[fips4274160] +centroid = (0.7097600267523142, -1.3178452347045828) +description = Stiles CDP, PA +station = ('kabe', 0.00080587965837308881) +zone = ('paz061', 0.0014653569766602443) + +[fips4274184] +centroid = (0.718230057252365, -1.332996682287241) +description = Stillwater borough, PA +station = ('kseg', 0.0087241123007661941) +zone = ('paz053', 0.0018399726436668514) + +[fips4274224] +centroid = (0.69958067314273742, -1.3936614996531755) +description = Stockdale borough, PA +station = ('kagc', 0.0047413460330928839) +zone = ('paz075', 0.0025750331613396487) + +[fips4274232] +centroid = (0.71130731349408471, -1.3135864044369139) +description = Stockertown borough, PA +station = ('kabe', 0.0030785286190176528) +zone = ('paz062', 0.00058768030012040968) + +[fips4274288] +centroid = (0.72135093284773366, -1.3983252637605998) +description = Stoneboro borough, PA +station = ('kfkl', 0.0034216561596917133) +zone = ('paz007', 0.0018943955949618911) + +[fips4274360] +centroid = (0.70189243155017411, -1.3658432028511212) +description = Stonerstown CDP, PA +station = ('kaoo', 0.0016753775226526061) +zone = ('paz034', 0.0047932503062609452) + +[fips4274416] +centroid = (0.69778083725820339, -1.3374756858400487) +description = Stonybrook CDP, PA +station = ('kmdt', 0.0042431538485323082) +zone = ('paz065', 0.0016446753985134765) + +[fips4274448] +centroid = (0.70422838022104328, -1.3240845773409522) +description = Stony Creek Mills CDP, PA +station = ('krdg', 0.0013926686775755149) +zone = ('paz060', 0.0014284137979037556) + +[fips4274544] +centroid = (0.7119014933846336, -1.3616909772941639) +description = Stormstown CDP, PA +station = ('kunv', 0.0024751869390363499) +zone = ('paz018', 0.0035065579870183152) + +[fips4274568] +centroid = (0.70477573292776119, -1.330488713965295) +description = Stouchsburg CDP, PA +station = ('krdg', 0.0035283594620121542) +zone = ('paz059', 0.0030183319999599586) + +[fips4274660] +centroid = (0.70251132530293126, -1.3208990547500896) +description = Stowe CDP, PA +station = ('kptw', 0.0017844198776033526) +zone = ('paz068', 0.0042516272730000792) + +[fips4274672] +centroid = (0.69993314238517779, -1.3780169965568292) +description = Stoystown borough, PA +station = ('kjst', 0.0040607381800904204) +zone = ('paz033', 0.0024851152572498295) + +[fips4274712] +centroid = (0.69786145401635302, -1.3296997378769311) +description = Strasburg borough, PA +station = ('klns', 0.0027626098638989759) +zone = ('paz066', 0.0013026312532238341) + +[fips4274728] +centroid = (0.7191193199595487, -1.3845140021506706) +description = Strattanville borough, PA +station = ('kduj', 0.0058339989570846797) +zone = ('paz015', 0.0012492316431056104) + +[fips4274744] +centroid = (0.70671442720758404, -1.3296647614787211) +description = Strausstown borough, PA +station = ('krdg', 0.0036217540385213983) +zone = ('paz060', 0.0036723659425774565) + +[fips4274848] +centroid = (0.70763360485814675, -1.3557276759322898) +description = Strodes Mills CDP, PA +station = ('kunv', 0.0058014579320956172) +zone = ('paz027', 0.0014023847968703343) + +[fips4274864] +centroid = (0.71205038742312132, -1.3341308670483567) +description = Strong CDP, PA +station = ('kseg', 0.0056455773441072008) +zone = ('paz052', 0.0036783397733751201) + +[fips4274888] +centroid = (0.71529739796353153, -1.3124391646129929) +description = Stroudsburg borough, PA +station = ('kmpo', 0.0035826804626045059) +zone = ('paz055', 0.002281177813904718) + +[fips4274944] +centroid = (0.70482446252047692, -1.400020170450504) +description = Sturgeon CDP, PA +station = ('kpit', 0.0017594791922020373) +zone = ('paz029', 0.0034154037793091693) + +[fips4275000] +centroid = (0.7231718348563394, -1.3931555810628999) +description = Sugarcreek borough, PA +station = ('kfkl', 0.0010707075777209797) +zone = ('paz008', 0.0010227726937786863) + +[fips4275024] +centroid = (0.73275315139772013, -1.3847370203224902) +description = Sugar Grove borough, PA +station = ('kjhw', 0.0030530003112816191) +zone = ('paz004', 0.0030692201230921525) + +[fips4275072] +centroid = (0.71896290355198489, -1.3252519059045638) +description = Sugar Notch borough, PA +station = ('kavp', 0.0035638625198181222) +zone = ('paz047', 0.00080804003613363449) + +[fips4275136] +centroid = (0.70470106774236085, -1.3746471322903708) +description = Summerhill borough, PA +station = ('kjst', 0.0014143335266341461) +zone = ('paz024', 0.0021721987786415256) + +[fips4275168] +centroid = (0.71761645184724143, -1.3820960579115427) +description = Summerville borough, PA +station = ('kduj', 0.0041743662468884434) +zone = ('paz016', 0.0024903002260803914) + +[fips4275248] +centroid = (0.71253003880815435, -1.3237659325794155) +description = Summit Hill borough, PA +station = ('kabe', 0.0060644795858561598) +zone = ('paz054', 0.0024376393098410119) + +[fips4275272] +centroid = (0.70793018865793822, -1.3299347988205896) +description = Summit Station CDP, PA +station = ('krdg', 0.0045960816205844147) +zone = ('paz058', 0.0025310714857782746) + +[fips4275304] +centroid = (0.71316607169416613, -1.3401803004088169) +description = Sunbury city, PA +station = ('kseg', 0.0013135264473845109) +zone = ('paz052', 0.001037124430927034) + +[fips4275381] +centroid = (0.72105214993308475, -1.3083537677130948) +description = Sunrise Lake CDP, PA +station = ('kfwn', 0.0047574302678036456) +zone = ('paz048', 0.00098155425263227419) + +[fips4275432] +centroid = (0.71524242009209371, -1.3171385683437429) +description = Sun Valley CDP, PA +station = ('kmpo', 0.0028852474669767069) +zone = ('paz055', 0.0021553503235409916) + +[fips4275568] +centroid = (0.73200616793115902, -1.3196112635615056) +description = Susquehanna Depot borough, PA +station = ('kbgm', 0.0066394675878062035) +zone = ('paz039', 0.0032579102503138913) + +[fips4275574] +centroid = (0.69391421738004266, -1.3328800593866226) +description = Susquehanna Trails CDP, PA +station = ('kapg', 0.0057684460570336053) +zone = ('mdz007', 0.0034781837983568252) + +[fips4275584] +centroid = (0.70222249076501875, -1.3927908770624033) +description = Sutersville borough, PA +station = ('kagc', 0.0025379577371518925) +zone = ('paz073', 0.0035738125209054785) + +[fips4275648] +centroid = (0.69642688063767633, -1.3150836700423223) +description = Swarthmore borough, PA +station = ('kphl', 0.0016662126550016755) +zone = ('paz070', 0.00071809305021919582) + +[fips4275664] +centroid = (0.70212613113701616, -1.3278369479662775) +description = Swartzville CDP, PA +station = ('krdg', 0.0028352467088447976) +zone = ('paz060', 0.0038578263307983448) + +[fips4275728] +centroid = (0.72884136239851771, -1.3605497239495772) +description = Sweden Valley CDP, PA +station = ('kelz', 0.0059725121590822969) +zone = ('paz006', 0.00079613371363694519) + +[fips4275816] +centroid = (0.70546681349838092, -1.3942742149403806) +description = Swissvale borough, PA +station = ('kagc', 0.0012923288091784358) +zone = ('paz021', 0.0015216473717808727) + +[fips4275832] +centroid = (0.72077774926808613, -1.3243534104056371) +description = Swoyersville borough, PA +station = ('kavp', 0.0020199473405805397) +zone = ('paz047', 0.0025412924674409962) + +[fips4275888] +centroid = (0.71636590598489491, -1.3755141071430066) +description = Sykesville borough, PA +station = ('kduj', 0.002598404913275574) +zone = ('paz016', 0.0028732393696190026) + +[fips4275944] +centroid = (0.7295836683826834, -1.3414877440047783) +description = Sylvania borough, PA +station = ('kelm', 0.0063829844614170274) +zone = ('paz038', 0.0045067826406089244) + +[fips4275968] +centroid = (0.69659975550008624, -1.3477936011389413) +description = Table Rock CDP, PA +station = ('kryt', 0.004221779090523522) +zone = ('paz064', 0.00071393054297627602) + +[fips4276032] +centroid = (0.71215247173107044, -1.3253547581573837) +description = Tamaqua borough, PA +station = ('krdg', 0.0076312086476056553) +zone = ('paz054', 0.0036219482357546218) + +[fips4276104] +centroid = (0.70868280953798324, -1.3920737387260513) +description = Tarentum borough, PA +station = ('kbtp', 0.0040079142710827669) +zone = ('paz021', 0.003771581571104425) + +[fips4276144] +centroid = (0.71106863971887435, -1.3134455563662779) +description = Tatamy borough, PA +station = ('kabe', 0.0030334109654014765) +zone = ('paz062', 0.00073085070389218262) + +[fips4276184] +centroid = (0.72249251780487811, -1.3214710340525535) +description = Taylor borough, PA +station = ('kavp', 0.0011167224050970411) +zone = ('paz044', 0.0015572358278738987) + +[fips4276232] +centroid = (0.70086389156868134, -1.4030155743259467) +description = Taylorstown CDP, PA +station = ('kafj', 0.0014395266315204297) +zone = ('paz029', 0.0019361986007708093) + +[fips4276304] +centroid = (0.70382044441497471, -1.3147204844782747) +description = Telford borough, PA +station = ('kukt', 0.0020330783798923374) +zone = ('paz068', 0.0020748171561046562) + +[fips4276320] +centroid = (0.70525358662366477, -1.3251047222887431) +description = Temple CDP, PA +station = ('krdg', 0.00092745990586731253) +zone = ('paz060', 0.00015134953854090336) + +[fips4276336] +centroid = (0.71415338699872677, -1.386840526043579) +description = Templeton CDP, PA +station = ('kidi', 0.0068799176022427194) +zone = ('paz022', 0.0018417981405422256) + +[fips4276400] +centroid = (0.70093878364688444, -1.3273357941248598) +description = Terre Hill borough, PA +station = ('klns', 0.0034140032968979672) +zone = ('paz066', 0.0033446556152990667) + +[fips4276432] +centroid = (0.71215334439569644, -1.3364194649366195) +description = Tharptown (Uniontown) CDP, PA +station = ('kseg', 0.0039100783773012788) +zone = ('paz052', 0.0020092289367039115) + +[fips4276440] +centroid = (0.72318565786401512, -1.315104439460421) +description = The Hideout CDP, PA +station = ('kmpo', 0.0052917198420364261) +zone = ('paz072', 0.00080480737365983847) + +[fips4276496] +centroid = (0.73065863412227927, -1.3179700955592704) +description = Thompson borough, PA +station = ('kbgm', 0.0084533992030204202) +zone = ('paz040', 0.0032840357427547785) + +[fips4276536] +centroid = (0.7080067562522232, -1.3480247874516604) +description = Thompsontown borough, PA +station = ('kseg', 0.0065632907333295172) +zone = ('paz028', 0.0022815965893940577) + +[fips4276552] +centroid = (0.70295041523614799, -1.398284894295001) +description = Thompsonville CDP, PA +station = ('kafj', 0.0033457250301372754) +zone = ('paz029', 0.0023238883164549053) + +[fips4276560] +centroid = (0.70571536583715744, -1.3977322881472345) +description = Thornburg borough, PA +station = ('kpit', 0.0021564519262011112) +zone = ('paz021', 0.0014926556529302217) + +[fips4276584] +centroid = (0.69816166810098856, -1.322095041620019) +description = Thorndale CDP, PA +station = ('kmqs', 0.0016427095504834731) +zone = ('paz067', 0.00049681526465473222) + +[fips4276632] +centroid = (0.70156921402599726, -1.3610413133866939) +description = Three Springs borough, PA +station = ('kaoo', 0.0048082095576206388) +zone = ('paz026', 0.0038405218082102188) + +[fips4276648] +centroid = (0.72323349733881226, -1.319340720074154) +description = Throop borough, PA +station = ('kavp', 0.0025971376021359529) +zone = ('paz044', 0.00021753687055559256) + +[fips4276696] +centroid = (0.72755962750243808, -1.3856522360756511) +description = Tidioute borough, PA +station = ('kfkl', 0.0081471260256028612) +zone = ('paz004', 0.0027195317317542174) + +[fips4276724] +centroid = (0.70239292216647597, -1.3349012902867723) +description = Timber Hills CDP, PA +station = ('klns', 0.003314268511375053) +zone = ('paz059', 0.0021764202931902209) + +[fips4276744] +centroid = (0.71504167232152938, -1.3822731564707424) +description = Timblin borough, PA +station = ('kduj', 0.005585360404534054) +zone = ('paz016', 0.0038181879098864572) + +[fips4276808] +centroid = (0.73137530121973326, -1.3461946701046041) +description = Tioga borough, PA +station = ('kelm', 0.0054671679695191674) +zone = ('paz037', 0.0028136544919188009) + +[fips4276848] +centroid = (0.72427388810592608, -1.3866529380555745) +description = Tionesta borough, PA +station = ('kfkl', 0.0058141584538981923) +zone = ('paz009', 0.0028003214660537274) + +[fips4276880] +centroid = (0.70922920231361264, -1.3665946718138595) +description = Tipton CDP, PA +station = ('kaoo', 0.0058656363260324662) +zone = ('paz025', 0.0027728197586718833) + +[fips4276904] +centroid = (0.72653309464958515, -1.3905011796167119) +description = Titusville city, PA +station = ('kfkl', 0.00497450468955181) +zone = ('paz008', 0.0041139270484226191) + +[fips4277016] +centroid = (0.71252855527829018, -1.3593586589081388) +description = Toftrees CDP, PA +station = ('kunv', 0.0006419857400358286) +zone = ('paz019', 0.0025669330363458178) + +[fips4277104] +centroid = (0.70691718210678822, -1.3212585402161232) +description = Topton borough, PA +station = ('kxll', 0.0030495998054851318) +zone = ('paz061', 0.0024056709349934164) + +[fips4277144] +centroid = (0.69519949529450376, -1.3221864270596533) +description = Toughkenamon CDP, PA +station = ('kmqs', 0.0030023855901918583) +zone = ('paz067', 0.0024681930939460407) + +[fips4277163] +centroid = (0.71548376422105942, -1.3191519452622584) +description = Towamensing Trails CDP, PA +station = ('kmpo', 0.0035665783840974335) +zone = ('paz054', 0.0021343179752509435) + +[fips4277168] +centroid = (0.72904052191946278, -1.3342431789857228) +description = Towanda borough, PA +station = ('kelm', 0.0090737580505779857) +zone = ('paz038', 0.00095186234553072983) + +[fips4277184] +centroid = (0.70840181152841208, -1.3361031938228656) +description = Tower City borough, PA +station = ('kmui', 0.0027130195137776425) +zone = ('paz059', 0.0040635642732677483) + +[fips4277232] +centroid = (0.72743818749308442, -1.394170699462445) +description = Townville borough, PA +station = ('kgkj', 0.0044611340165897108) +zone = ('paz003', 0.0029501989623144809) + +[fips4277272] +centroid = (0.70484430691407218, -1.3920314668515679) +description = Trafford borough, PA +station = ('kagc', 0.0022006905812496902) +zone = ('paz073', 0.0025282954769872525) + +[fips4277288] +centroid = (0.69505958970166393, -1.3160612115030719) +description = Trainer borough, PA +station = ('kphl', 0.0024148567439270315) +zone = ('paz070', 0.0016200857245172945) + +[fips4277304] +centroid = (0.70160656407198996, -1.3172938677405854) +description = Trappe borough, PA +station = ('kptw', 0.0011602390033808789) +zone = ('paz068', 0.001456646465090178) + +[fips4277335] +centroid = (0.71856435761729198, -1.373895087368979) +description = Treasure Lake CDP, PA +station = ('kduj', 0.0021779961628139079) +zone = ('paz016', 0.0037685113046713784) + +[fips4277392] +centroid = (0.70913156859525595, -1.3332777850165669) +description = Tremont borough, PA +station = ('kmui', 0.0041508817755074616) +zone = ('paz058', 0.0026687519604247948) + +[fips4277424] +centroid = (0.71411848041368697, -1.3258511123433583) +description = Tresckow CDP, PA +station = ('kavp', 0.0078988141506985982) +zone = ('paz054', 0.0033880661013089355) + +[fips4277448] +centroid = (0.71181738596797994, -1.3381659111993351) +description = Trevorton CDP, PA +station = ('kseg', 0.0026434299016050342) +zone = ('paz052', 0.00128565509257786) + +[fips4277456] +centroid = (0.70076603095752199, -1.3086825004777078) +description = Trevose CDP, PA +station = ('kpne', 0.0012674480670956435) +zone = ('paz071', 0.0032200711091810571) + +[fips4277488] +centroid = (0.70787908541743982, -1.3193462004080054) +description = Trexlertown CDP, PA +station = ('kxll', 0.001379968216814894) +zone = ('paz061', 0.00094976831035363442) + +[fips4277520] +centroid = (0.70073081021321681, -1.3159690755718589) +description = Trooper CDP, PA +station = ('klom', 0.0018051740509151663) +zone = ('paz068', 0.0011642520767724653) + +[fips4277568] +centroid = (0.71609782341178863, -1.3751044783675637) +description = Troutville borough, PA +station = ('kduj', 0.0029668036437998169) +zone = ('paz016', 0.0032763536690599295) + +[fips4277576] +centroid = (0.71224731292262378, -1.3474758988552009) +description = Troxelville CDP, PA +station = ('kseg', 0.0044671484486280798) +zone = ('paz050', 0.0019027411459600508) + +[fips4277584] +centroid = (0.72925641914793449, -1.340277113822425) +description = Troy borough, PA +station = ('kelm', 0.0068353345110615769) +zone = ('paz038', 0.0035997994145254234) + +[fips4277656] +centroid = (0.720995932877878, -1.3251955492230167) +description = Trucksville CDP, PA +station = ('kavp', 0.0025853042289391607) +zone = ('paz047', 0.0024516359675759557) + +[fips4277704] +centroid = (0.70534731080449686, -1.3155832530874132) +description = Trumbauersville borough, PA +station = ('kukt', 0.00038087888029827689) +zone = ('paz068', 0.0035372999986420148) + +[fips4277744] +centroid = (0.70058987487611812, -1.3056981968963079) +description = Tullytown borough, PA +station = ('kttn', 0.0024880736996284636) +zone = ('njz019', 0.0028132943429476109) + +[fips4277784] +centroid = (0.72502870810082864, -1.3255611258881395) +description = Tunkhannock borough, PA +station = ('kavp', 0.0045950760571417896) +zone = ('paz043', 0.00096604150581682988) + +[fips4277808] +centroid = (0.70647919173100027, -1.3708222432346253) +description = Tunnelhill borough, PA +station = ('kaoo', 0.0043220910266123713) +zone = ('paz025', 0.0025724068867575937) + +[fips4277832] +centroid = (0.717363134759607, -1.3398793532858955) +description = Turbotville borough, PA +station = ('kipt', 0.0032286744503217009) +zone = ('paz051', 0.0019467354027235698) + +[fips4277912] +centroid = (0.70526264488248258, -1.393147325655538) +description = Turtle Creek borough, PA +station = ('kagc', 0.0016270521441748191) +zone = ('paz021', 0.0023680053959136012) + +[fips4277968] +centroid = (0.71143088280512579, -1.3275142016809989) +description = Tuscarora CDP, PA +station = ('krdg', 0.0070119981895500885) +zone = ('paz058', 0.0022721080858147465) + +[fips4278008] +centroid = (0.70015247791227597, -1.3944064410845116) +description = Twilight borough, PA +station = ('kagc', 0.0040994088755555652) +zone = ('paz075', 0.0033427178059039233) + +[fips4278115] +centroid = (0.6969206342830655, -1.3386845183332727) +description = Tyler Run CDP, PA +station = ('kthv', 0.0024529844045011241) +zone = ('paz065', 0.00038946791630210863) + +[fips4278120] +centroid = (0.72226506649675815, -1.3843333431197966) +description = Tylersburg CDP, PA +station = ('kfkl', 0.0072051564087760173) +zone = ('paz009', 0.0025079239519946732) + +[fips4278168] +centroid = (0.7099380852426026, -1.3656511293669391) +description = Tyrone borough, PA +station = ('kunv', 0.0060485084317152063) +zone = ('paz025', 0.0036673864954427605) + +[fips4278240] +centroid = (0.73134618912780991, -1.3570776357488299) +description = Ulysses borough, PA +station = ('kelz', 0.0046827445238899279) +zone = ('paz006', 0.0033123001800426117) + +[fips4278448] +centroid = (0.73125218569429751, -1.3935270394876018) +description = Union City borough, PA +station = ('keri', 0.0054742431518107811) +zone = ('paz002', 0.0025516205429525233) + +[fips4278456] +centroid = (0.72802995882926547, -1.3174297939827304) +description = Union Dale borough, PA +station = ('kavp', 0.0073895615971463491) +zone = ('paz040', 0.0027565001817210634) + +[fips4278472] +centroid = (0.70325197322430766, -1.3383308099070634) +description = Union Deposit CDP, PA +station = ('kmdt', 0.0019917167212868386) +zone = ('paz057', 0.0025019325548968972) + +[fips4278528] +centroid = (0.69637450330682393, -1.3914543911876884) +description = Uniontown city, PA +station = ('kmgw', 0.005057893886872152) +zone = ('paz075', 0.0010668655130331524) + +[fips4278608] +centroid = (0.71457753691354642, -1.3955876450156763) +description = Unionville CDP, PA +station = ('kbtp', 0.0027780844755592869) +zone = ('paz014', 0.0008307632440780852) + +[fips4278616] +centroid = (0.71394953254209381, -1.3592044416154325) +description = Unionville borough, PA +station = ('kunv', 0.0010437023745106784) +zone = ('paz018', 0.0022114992176586138) + +[fips4278700] +centroid = (0.70271507503980912, -1.3758370105079181) +description = University of Pittsburgh Johnstown CDP, PA +station = ('kjst', 0.00094477239188157653) +zone = ('paz024', 0.0043461116406848304) + +[fips4278712] +centroid = (0.69562196969324153, -1.3156230465943586) +description = Upland borough, PA +station = ('kphl', 0.0019686795385483041) +zone = ('paz070', 0.0010872130913004805) + +[fips4279016] +centroid = (0.72264533883418269, -1.3239041975627588) +description = Upper Exeter CDP, PA +station = ('kavp', 0.0020117455077190614) +zone = ('paz043', 0.0029086935887054654) + +[fips4279277] +centroid = (0.70395305453154122, -1.3976817783186819) +description = Upper St. Clair CDP, PA +station = ('kagc', 0.0022084190528956307) +zone = ('paz021', 0.0027096205399827372) + +[fips4279424] +centroid = (0.69490799040283568, -1.384613049585721) +description = Ursina borough, PA +station = ('k2g4', 0.0041079126135394354) +zone = ('paz076', 0.0027858663524606897) + +[fips4279472] +centroid = (0.72321557280739424, -1.3956593780479334) +description = Utica borough, PA +station = ('kfkl', 0.0015980985077921465) +zone = ('paz008', 0.0027869198882283677) + +[fips4279504] +centroid = (0.70994227403280741, -1.3960558121342315) +description = Valencia borough, PA +station = ('kbtp', 0.0019282033275819796) +zone = ('paz021', 0.0036296245678975113) + +[fips4279640] +centroid = (0.70086640484280416, -1.3403192809771534) +description = Valley Green CDP, PA +station = ('kmdt', 0.00084296778815530526) +zone = ('paz065', 0.0042318211366885001) + +[fips4279644] +centroid = (0.69869271943249289, -1.3647182857883331) +description = Valley-Hi borough, PA +station = ('kaoo', 0.0049591873312062884) +zone = ('paz035', 0.0021482137436580925) + +[fips4279680] +centroid = (0.70944281316076419, -1.3357906577137111) +description = Valley View CDP, PA +station = ('kmui', 0.0037712331515101292) +zone = ('paz052', 0.004237444093883669) + +[fips4279682] +centroid = (0.69725650544431927, -1.3386866476349599) +description = Valley View CDP, PA +station = ('kthv', 0.0025067478981744048) +zone = ('paz065', 0.00062363932846751214) + +[fips4279768] +centroid = (0.69872396082610366, -1.3903834047987873) +description = Vanderbilt borough, PA +station = ('klbe', 0.0055913817828323479) +zone = ('paz075', 0.0020823139302289743) + +[fips4279776] +centroid = (0.7085939024658866, -1.3888550723326936) +description = Vandergrift borough, PA +station = ('klbe', 0.005989570743876761) +zone = ('paz022', 0.0039982639168434295) + +[fips4279792] +centroid = (0.72653731834637492, -1.3172745993056434) +description = Vandling borough, PA +station = ('kavp', 0.0061512502188560856) +zone = ('paz072', 0.0033103171304252094) + +[fips4279872] +centroid = (0.70092164451362982, -1.395793733493752) +description = Van Voorhis CDP, PA +station = ('kagc', 0.003402743296886483) +zone = ('paz029', 0.0037048631999839726) + +[fips4279912] +centroid = (0.72907116990112775, -1.3982192175552486) +description = Venango borough, PA +station = ('kgkj', 0.0027883181278254587) +zone = ('paz003', 0.0015359953224947231) + +[fips4280032] +centroid = (0.70695734213287653, -1.3935048563528092) +description = Verona borough, PA +station = ('kagc', 0.0028926647191988464) +zone = ('paz021', 0.001957279790448027) + +[fips4280040] +centroid = (0.70368483233209467, -1.3933104615807219) +description = Versailles borough, PA +station = ('kagc', 0.0012702003364405538) +zone = ('paz021', 0.0033027046733415458) + +[fips4280144] +centroid = (0.71450976577869152, -1.3437394979925312) +description = Vicksburg CDP, PA +station = ('kseg', 0.002681161171747601) +zone = ('paz049', 0.001035719668717141) + +[fips4280218] +centroid = (0.69575201417580756, -1.316427748099283) +description = Village Green-Green Ridge CDP, PA +station = ('kphl', 0.0025782727992449501) +zone = ('paz070', 0.00099273241613472701) + +[fips4280229] +centroid = (0.70162373811182954, -1.3084844405141915) +description = Village Shires CDP, PA +station = ('kpne', 0.002128139889191534) +zone = ('paz069', 0.0029990189397146694) + +[fips4280264] +centroid = (0.70530605122097967, -1.3760970645664652) +description = Vinco CDP, PA +station = ('kjst', 0.0016542182563921671) +zone = ('paz024', 0.0022784984905934373) + +[fips4280288] +centroid = (0.70652172540487135, -1.3772530310366462) +description = Vintondale borough, PA +station = ('kjst', 0.0030426020939236069) +zone = ('paz024', 0.0026299586926238315) + +[fips4280336] +centroid = (0.7071480193536569, -1.3239857917052893) +description = Virginville CDP, PA +station = ('krdg', 0.0029833763141201225) +zone = ('paz060', 0.0019632693842401034) + +[fips4280368] +centroid = (0.7175549464444011, -1.4008035963918464) +description = Volant borough, PA +station = ('kucp', 0.002529979707379696) +zone = ('paz013', 0.0023366088923277781) + +[fips4280384] +centroid = (0.72264834080049611, -1.3828469858222132) +description = Vowinckel CDP, PA +station = ('kduj', 0.0059789063495811201) +zone = ('paz009', 0.0018947244745802149) + +[fips4280432] +centroid = (0.71002125018146012, -1.3506697815731803) +description = Wagner CDP, PA +station = ('kunv', 0.0067842703986835447) +zone = ('paz028', 0.0026269694203921211) + +[fips4280480] +centroid = (0.69424001799151247, -1.3296597349304753) +description = Wakefield CDP, PA +station = ('kapg', 0.0054216870341468821) +zone = ('mdz007', 0.0024206899042953753) + +[fips4280600] +centroid = (0.70496632288207906, -1.3925258837220729) +description = Wall borough, PA +station = ('kagc', 0.0018848232702175039) +zone = ('paz021', 0.0029241871667616852) + +[fips4280640] +centroid = (0.71498526328010481, -1.3663771863357685) +description = Wallaceton borough, PA +station = ('kfig', 0.0022484432065611407) +zone = ('paz017', 0.0025296146896298102) + +[fips4280652] +centroid = (0.7225133046762694, -1.3137574641569019) +description = Wallenpaupack Lake Estates CDP, PA +station = ('kmpo', 0.0048244629919915339) +zone = ('paz072', 0.0015234125085011685) + +[fips4280656] +centroid = (0.71972170289758197, -1.3337043085791693) +description = Waller CDP, PA +station = ('kipt', 0.0065792175035667335) +zone = ('paz053', 0.0032913346212164328) + +[fips4280800] +centroid = (0.71124589535770699, -1.3193918233146527) +description = Walnutport borough, PA +station = ('kabe', 0.0026157310298756987) +zone = ('paz061', 0.0024174386876173702) + +[fips4280808] +centroid = (0.70592766768736992, -1.3236539348013152) +description = Walnuttown CDP, PA +station = ('krdg', 0.0021894125974657006) +zone = ('paz060', 0.0012614046306622642) + +[fips4280880] +centroid = (0.71357915622152812, -1.4022052005009531) +description = Wampum borough, PA +station = ('kbvi', 0.0022112373392177104) +zone = ('paz013', 0.0018540743473534321) + +[fips4280896] +centroid = (0.71863017398338469, -1.3271871618857602) +description = Wanamie CDP, PA +station = ('kavp', 0.0049106253350355098) +zone = ('paz047', 0.00070211384057214897) + +[fips4280962] +centroid = (0.7014193775097135, -1.3104645689104568) +description = Warminster Heights CDP, PA +station = ('kpne', 0.0020420835480516419) +zone = ('paz069', 0.002611503930440115) + +[fips4281000] +centroid = (0.73029665283541567, -1.381321027003902) +description = Warren city, PA +station = ('kjhw', 0.0055913148105600973) +zone = ('paz004', 0.0017638677227117252) + +[fips4281080] +centroid = (0.71886324525169598, -1.325586520428756) +description = Warrior Run borough, PA +station = ('kavp', 0.0038168196260159751) +zone = ('paz047', 0.0005372857872228946) + +[fips4281328] +centroid = (0.70116792792437876, -1.4005696000990318) +description = Washington city, PA +station = ('kafj', 0.00086099540163767335) +zone = ('paz029', 0.0002701414724412704) + +[fips4281360] +centroid = (0.69824896947017323, -1.3346339931118294) +description = Washington Boro CDP, PA +station = ('klns', 0.0029618025291659788) +zone = ('paz065', 0.0037644602428107414) + +[fips4281424] +centroid = (0.71649769579671307, -1.3382297029834955) +description = Washingtonville borough, PA +station = ('kipt', 0.0046904864706980741) +zone = ('paz051', 0.00047529621266207561) + +[fips4281456] +centroid = (0.73208130435545737, -1.3960039234955697) +description = Waterford borough, PA +station = ('keri', 0.0035242870033931561) +zone = ('paz002', 0.00057288177876839636) + +[fips4281616] +centroid = (0.71706580046823709, -1.3415371019160247) +description = Watsontown borough, PA +station = ('kipt', 0.0029631436323163908) +zone = ('paz046', 0.0025999779186248544) + +[fips4281648] +centroid = (0.73308596823278294, -1.3928562221895979) +description = Wattsburg borough, PA +station = ('keri', 0.0051042754591269198) +zone = ('paz002', 0.0027736627096719402) + +[fips4281664] +centroid = (0.72479317591827197, -1.3212663069312944) +description = Waverly CDP, PA +station = ('kavp', 0.0034136008353099407) +zone = ('paz044', 0.0020008814845822857) + +[fips4281712] +centroid = (0.72581939461185963, -1.3160431124387286) +description = Waymart borough, PA +station = ('kavp', 0.006172052773179817) +zone = ('paz072', 0.0022025589205614065) + +[fips4281808] +centroid = (0.69369030909030438, -1.3533911513027674) +description = Wayne Heights CDP, PA +station = ('krsp', 0.0019382122046818738) +zone = ('paz036', 0.0039689248329704075) + +[fips4281824] +centroid = (0.69381122550088237, -1.354064638954527) +description = Waynesboro borough, PA +station = ('krsp', 0.0023381928403545431) +zone = ('paz036', 0.0035782939917468524) + +[fips4281832] +centroid = (0.6963565962286985, -1.3995024185278997) +description = Waynesburg borough, PA +station = ('kafj', 0.0043052769238468378) +zone = ('paz031', 0.0009235269934378947) + +[fips4281856] +centroid = (0.71457296415090621, -1.323324695891219) +description = Weatherly borough, PA +station = ('kmpo', 0.006658449984716157) +zone = ('paz054', 0.0015352732224056631) + +[fips4281936] +centroid = (0.70149030769051457, -1.3936577646485762) +description = Webster CDP, PA +station = ('kagc', 0.0028869110507158922) +zone = ('paz075', 0.0043859564954276111) + +[fips4281960] +centroid = (0.72039793071626723, -1.3699123681889755) +description = Weedville CDP, PA +station = ('kfig', 0.0040569944206268506) +zone = ('paz010', 0.0033394150078349212) + +[fips4282008] +centroid = (0.69785801571772654, -1.3409628711388262) +description = Weigelstown CDP, PA +station = ('kthv', 0.0013692715414108563) +zone = ('paz065', 0.0017994859646778619) + +[fips4282080] +centroid = (0.71260072464286006, -1.3212294979373698) +description = Weissport borough, PA +station = ('kabe', 0.0045572004301542689) +zone = ('paz054', 0.0015618414232418244) + +[fips4282088] +centroid = (0.71273864056035274, -1.3209774898466744) +description = Weissport East CDP, PA +station = ('kabe', 0.0045185469289104503) +zone = ('paz054', 0.0014507577789616376) + +[fips4282128] +centroid = (0.69342999323236931, -1.376156911906516) +description = Wellersburg borough, PA +station = ('kcbe', 0.002328664050860118) +zone = ('mdz501', 0.0024990477628263935) + +[fips4282160] +centroid = (0.72859677195714323, -1.3492039842541852) +description = Wellsboro borough, PA +station = ('kelm', 0.0090267277207378219) +zone = ('paz037', 0.00079294476193248213) + +[fips4282200] +centroid = (0.69902667073156954, -1.3428690848412692) +description = Wellsville borough, PA +station = ('kthv', 0.0024716230564023351) +zone = ('paz065', 0.0036694999515960195) + +[fips4282296] +centroid = (0.70389912385765463, -1.3278929206753891) +description = Wernersville borough, PA +station = ('krdg', 0.0016673534989357043) +zone = ('paz060', 0.0025669934947381819) + +[fips4282320] +centroid = (0.70793055517708114, -1.3185955866566001) +description = Wescosville CDP, PA +station = ('kxll', 0.00080894942782872503) +zone = ('paz061', 0.0010598482116132249) + +[fips4282344] +centroid = (0.73542994541821127, -1.3964763492174996) +description = Wesleyville borough, PA +station = ('keri', 0.0024058512673200342) +zone = ('paz001', 0.0015785137092748861) + +[fips4282376] +centroid = (0.69999923800395081, -1.405150722866374) +description = West Alexander CDP, PA +station = ('khlg', 0.002147947288957629) +zone = ('wvz003', 0.0014749920632078333) + +[fips4282616] +centroid = (0.69868151441869508, -1.3943726340569005) +description = West Brownsville borough, PA +station = ('kafj', 0.005523969230245133) +zone = ('paz075', 0.0021604991735099388) + +[fips4282704] +centroid = (0.69743152706170919, -1.3195635462597564) +description = West Chester borough, PA +station = ('kmqs', 0.0035563370438455827) +zone = ('paz067', 0.0019255050548692353) + +[fips4282736] +centroid = (0.69935891160797914, -1.314560647225377) +description = West Conshohocken borough, PA +station = ('klom', 0.0013749236484241496) +zone = ('paz068', 0.0025373227509029165) + +[fips4282792] +centroid = (0.71434347080756144, -1.3662735137782003) +description = West Decatur CDP, PA +station = ('kfig', 0.0027624446228983416) +zone = ('paz017', 0.0028247771666313299) + +[fips4282832] +centroid = (0.70997136867143806, -1.3131175391866581) +description = West Easton borough, PA +station = ('kabe', 0.0028748657669994456) +zone = ('paz062', 0.0016267655633953951) + +[fips4282848] +centroid = (0.70285510280569663, -1.3944504408349545) +description = West Elizabeth borough, PA +station = ('kagc', 0.001411970462665566) +zone = ('paz021', 0.0036390087006641005) + +[fips4282920] +centroid = (0.70299368194830492, -1.3425211883614694) +description = West Fairview CDP, PA +station = ('kcxy', 0.0014341645667496166) +zone = ('paz057', 0.0030428667710673571) + +[fips4282952] +centroid = (0.72345733581538052, -1.3240786432214957) +description = West Falls CDP, PA +station = ('kavp', 0.0026746387767097889) +zone = ('paz043', 0.0023132655533668529) + +[fips4282968] +centroid = (0.73160016944056017, -1.3533414966855482) +description = Westfield borough, PA +station = ('kelz', 0.0067531277190137776) +zone = ('paz037', 0.0045078442981471871) + +[fips4283104] +centroid = (0.69499337190984323, -1.3234572711012005) +description = West Grove borough, PA +station = ('kmqs', 0.0028440313309533666) +zone = ('paz067', 0.0028801096356057087) + +[fips4283120] +centroid = (0.70779496054749369, -1.3264847715815875) +description = West Hamburg CDP, PA +station = ('krdg', 0.0032972346654786301) +zone = ('paz060', 0.0025993588336904075) + +[fips4283136] +centroid = (0.71505963175953224, -1.3266780318896607) +description = West Hazleton borough, PA +station = ('kavp', 0.0073313131280959946) +zone = ('paz047', 0.0036320135037771167) + +[fips4283172] +centroid = (0.71262289032436044, -1.3881656149182779) +description = West Hills CDP, PA +station = ('kidi', 0.0067135353983499933) +zone = ('paz022', 0.00099444761749165099) + +[fips4283200] +centroid = (0.70500445832623504, -1.39469593884754) +description = West Homestead borough, PA +station = ('kagc', 0.00076894145826177096) +zone = ('paz021', 0.0016137928295829657) + +[fips4283248] +centroid = (0.71231665485380558, -1.3880814725950394) +description = West Kittanning borough, PA +station = ('kidi', 0.0065067106779608339) +zone = ('paz022', 0.00088121845572525378) + +[fips4283272] +centroid = (0.70299659664815572, -1.4010264923906186) +description = Westland CDP, PA +station = ('kafj', 0.0025415942658718921) +zone = ('paz029', 0.0015936090206314442) + +[fips4283280] +centroid = (0.70387235050692898, -1.3263418291158493) +description = West Lawn CDP, PA +station = ('krdg', 0.00075119472562360011) +zone = ('paz060', 0.0017731048209582655) + +[fips4283328] +centroid = (0.70918907719410929, -1.389614290557311) +description = West Leechburg borough, PA +station = ('kbtp', 0.0050998505407420201) +zone = ('paz022', 0.0037328297997134452) + +[fips4283376] +centroid = (0.71574736129798822, -1.3974262446628973) +description = West Liberty borough, PA +station = ('kbtp', 0.0042334192703667858) +zone = ('paz014', 0.0026460724974062518) + +[fips4283472] +centroid = (0.71174884688825424, -1.4021744128929481) +description = West Mayfield borough, PA +station = ('kbvi', 0.00084427944180008217) +zone = ('paz020', 0.0017145318783251711) + +[fips4283496] +centroid = (0.7186261771793977, -1.4042137952173182) +description = West Middlesex borough, PA +station = ('kucp', 0.0026585582061554786) +zone = ('paz007', 0.0034246322141303037) + +[fips4283504] +centroid = (0.70237641135175211, -1.4036859029317601) +description = West Middletown borough, PA +station = ('kafj', 0.0026942487528336273) +zone = ('paz029', 0.0025399802409575216) + +[fips4283512] +centroid = (0.70437409776029236, -1.3946123375763695) +description = West Mifflin borough, PA +station = ('kagc', 0.00020084623166923032) +zone = ('paz021', 0.0021856485404249068) + +[fips4283520] +centroid = (0.7159043711174975, -1.3417504335104959) +description = West Milton CDP, PA +station = ('kseg', 0.0035216039299615998) +zone = ('paz049', 0.0026270146849697229) + +[fips4283584] +centroid = (0.70370766123871076, -1.3779786691264553) +description = Westmont borough, PA +station = ('kjst', 0.0015847356288885416) +zone = ('paz024', 0.0044154288544968525) + +[fips4283656] +centroid = (0.71942447332596737, -1.3266096149829825) +description = West Nanticoke CDP, PA +station = ('kavp', 0.0041231580321194053) +zone = ('paz047', 0.00079261532250970903) + +[fips4283680] +centroid = (0.70174751686238102, -1.3922700184537307) +description = West Newton borough, PA +station = ('kagc', 0.003156918487466449) +zone = ('paz073', 0.0035485703101727144) + +[fips4283720] +centroid = (0.71458347103300324, -1.3288955425174898) +description = Weston CDP, PA +station = ('kavp', 0.0086655069194807883) +zone = ('paz058', 0.0042513430320691289) + +[fips4283736] +centroid = (0.711065672659146, -1.3733647690757607) +description = Westover borough, PA +station = ('kidi', 0.0057676118211732472) +zone = ('paz024', 0.0043009981722027524) + +[fips4283848] +centroid = (0.71438055905416631, -1.4025312280052258) +description = West Pittsburg CDP, PA +station = ('kucp', 0.0017939717517753693) +zone = ('paz013', 0.0011009774304304102) + +[fips4283856] +centroid = (0.72133691785384013, -1.3229589795997561) +description = West Pittston borough, PA +station = ('kavp', 0.00087574672837038186) +zone = ('paz044', 0.0031236041044430422) + +[fips4283928] +centroid = (0.70395692916248065, -1.3255232173367864) +description = West Reading borough, PA +station = ('krdg', 0.0006317114465747536) +zone = ('paz060', 0.0014688141864417277) + +[fips4284064] +centroid = (0.71569076027034595, -1.3944562178747786) +description = West Sunbury borough, PA +station = ('kbtp', 0.0039509782618258067) +zone = ('paz014', 0.0016612657796923845) + +[fips4284144] +centroid = (0.707175141770233, -1.3968445264232079) +description = West View borough, PA +station = ('kpit', 0.002723444705059465) +zone = ('paz021', 0.0011045471316856903) + +[fips4284176] +centroid = (0.69638665079841777, -1.3997679005604207) +description = West Waynesburg CDP, PA +station = ('kafj', 0.0042189696951241383) +zone = ('paz031', 0.00085925247232397823) + +[fips4284248] +centroid = (0.69761134833454219, -1.3239244782886668) +description = Westwood CDP, PA +station = ('kmqs', 0.00026090951710054482) +zone = ('paz067', 0.0014320126231442548) + +[fips4284272] +centroid = (0.72119961280158573, -1.3239690889043476) +description = West Wyoming borough, PA +station = ('kavp', 0.0016444553215310743) +zone = ('paz047', 0.0030524746501202245) + +[fips4284280] +centroid = (0.7037543313429091, -1.3263578512383825) +description = West Wyomissing CDP, PA +station = ('krdg', 0.000861811637361506) +zone = ('paz060', 0.001881614778949112) + +[fips4284288] +centroid = (0.69731816792679213, -1.3397314017252038) +description = West York borough, PA +station = ('kthv', 0.0017586927937579509) +zone = ('paz065', 0.00074445710611673662) + +[fips4284376] +centroid = (0.71902367591653937, -1.4049167265735591) +description = Wheatland borough, PA +station = ('kyng', 0.0024261536982209497) +zone = ('ohz023', 0.0040579637951253314) + +[fips4284440] +centroid = (0.70512191898489429, -1.3942632368193857) +description = Whitaker borough, PA +station = ('kagc', 0.00097467935471287322) +zone = ('paz021', 0.0017436388155011992) + +[fips4284512] +centroid = (0.70441846402987796, -1.3960852558387127) +description = Whitehall borough, PA +station = ('kagc', 0.00098876979665209566) +zone = ('paz021', 0.0018987769057632487) + +[fips4284552] +centroid = (0.71661344603270527, -1.3227019449608151) +description = White Haven borough, PA +station = ('kavp', 0.004837579715029283) +zone = ('paz054', 0.0026529501331078935) + +[fips4284696] +centroid = (0.72499669876234707, -1.3124792199193263) +description = White Mills CDP, PA +station = ('kmsv', 0.0059198137755941127) +zone = ('paz072', 0.0019340653635011374) + +[fips4284704] +centroid = (0.70404468431727085, -1.3927041865584566) +description = White Oak borough, PA +station = ('kagc', 0.0016160782097081967) +zone = ('paz021', 0.0033470540671212837) + +[fips4284856] +centroid = (0.70397869341825303, -1.3265551258037354) +description = Whitfield CDP, PA +station = ('krdg', 0.00076102576054342395) +zone = ('paz060', 0.0017747417773201189) + +[fips4284931] +centroid = (0.7012257157759122, -1.3946409086162246) +description = Wickerham Manor-Fisher CDP, PA +station = ('kagc', 0.0030173636383747189) +zone = ('paz075', 0.0043824913504518096) + +[fips4284968] +centroid = (0.70815343372256079, -1.3382709102071348) +description = Wiconsico CDP, PA +station = ('kmui', 0.0028634828944351814) +zone = ('paz057', 0.0030825933861504456) + +[fips4285076] +centroid = (0.71232171630863628, -1.3332972803443119) +description = Wilburton Number One CDP, PA +station = ('kseg', 0.0062661786549464442) +zone = ('paz058', 0.0029880654662483839) + +[fips4285078] +centroid = (0.71242291049866691, -1.3330518346916038) +description = Wilburton Number Two CDP, PA +station = ('kseg', 0.0064514438671538126) +zone = ('paz058', 0.0029128496114132858) + +[fips4285088] +centroid = (0.72556904458395355, -1.3733429873666958) +description = Wilcox CDP, PA +station = ('kbfd', 0.0040390586973038005) +zone = ('paz010', 0.0026077956457835629) + +[fips4285152] +centroid = (0.71988829457468484, -1.3242805952692436) +description = Wilkes-Barre city, PA +station = ('kavp', 0.0024039052810868548) +zone = ('paz047', 0.0019170217393730277) + +[fips4285188] +centroid = (0.70588447078838312, -1.39405264539184) +description = Wilkinsburg borough, PA +station = ('kagc', 0.0017420919554644917) +zone = ('paz021', 0.0014954486258573392) + +[fips4285272] +centroid = (0.70620411038759345, -1.3649203251025439) +description = Williamsburg borough, PA +station = ('kaoo', 0.0032065698487437097) +zone = ('paz025', 0.0019453909531172548) + +[fips4285312] +centroid = (0.71977411513501932, -1.344524704169711) +description = Williamsport city, PA +station = ('kipt', 0.0015703458377306289) +zone = ('paz046', 0.0015846457045999368) + +[fips4285320] +centroid = (0.70827070239500234, -1.3372181450556246) +description = Williamstown borough, PA +station = ('kmui', 0.0026609502018332407) +zone = ('paz057', 0.0036017139362673253) + +[fips4285408] +centroid = (0.70073576694829243, -1.3110579284962574) +description = Willow Grove CDP, PA +station = ('kpne', 0.0017759630810888719) +zone = ('paz071', 0.0024803147626182753) + +[fips4285464] +centroid = (0.69780284586007102, -1.3311484484225489) +description = Willow Street CDP, PA +station = ('klns', 0.0024006316010877545) +zone = ('paz066', 0.0011067982731942168) + +[fips4285496] +centroid = (0.70501114293727019, -1.3929477298022799) +description = Wilmerding borough, PA +station = ('kagc', 0.0016139395857810261) +zone = ('paz021', 0.002620746951671641) + +[fips4285528] +centroid = (0.70489616064614879, -1.373872659888091) +description = Wilmore borough, PA +station = ('kjst', 0.0019802805782974399) +zone = ('paz024', 0.0018824770836792359) + +[fips4285592] +centroid = (0.71007676910496598, -1.3132158012235453) +description = Wilson borough, PA +station = ('kabe', 0.0028218826932840126) +zone = ('paz062', 0.0014976848105461504) + +[fips4285632] +centroid = (0.70224238751849155, -1.3757502501908012) +description = Windber borough, PA +station = ('kjst', 0.0014208658526683863) +zone = ('paz024', 0.0047701625538383698) + +[fips4285664] +centroid = (0.71295012210581676, -1.3140761612783158) +description = Wind Gap borough, PA +station = ('kabe', 0.0040602786575819139) +zone = ('paz062', 0.0016675084805713228) + +[fips4285712] +centroid = (0.69658055687831444, -1.4038033635904192) +description = Wind Ridge CDP, PA +station = ('kafj', 0.0043576943234850994) +zone = ('paz031', 0.0029739364956381403) + +[fips4285728] +centroid = (0.69667042388149958, -1.3366423958419766) +description = Windsor borough, PA +station = ('klns', 0.0051613968403269256) +zone = ('paz065', 0.0019089851275182191) + +[fips4285792] +centroid = (0.71374794701348854, -1.3414659972022984) +description = Winfield CDP, PA +station = ('kseg', 0.0013652809026838619) +zone = ('paz052', 0.0021308485707678647) + +[fips4285872] +centroid = (0.69535320644172693, -1.3372264353695715) +description = Winterstown borough, PA +station = ('kthv', 0.0037995801329456461) +zone = ('paz065', 0.0020098976416806089) + +[fips4285968] +centroid = (0.69901523882496897, -1.3301195070153282) +description = Witmer CDP, PA +station = ('klns', 0.001662994392231168) +zone = ('paz066', 0.00052074641665321073) + +[fips4286000] +centroid = (0.70159148442725272, -1.4015487647159857) +description = Wolfdale CDP, PA +station = ('kafj', 0.001162140844494742) +zone = ('paz029', 0.00074444261214322792) + +[fips4286056] +centroid = (0.70450742346185213, -1.3296784797666419) +description = Womelsdorf borough, PA +station = ('krdg', 0.0029030422164573128) +zone = ('paz060', 0.0035561065976644139) + +[fips4286112] +centroid = (0.70165754513944067, -1.3070283297725453) +description = Woodbourne CDP, PA +station = ('kttn', 0.0017021870719359062) +zone = ('njz015', 0.002851943833083639) + +[fips4286128] +centroid = (0.70206380542942737, -1.3677440234861755) +description = Woodbury borough, PA +station = ('kaoo', 0.0014598342840889526) +zone = ('paz034', 0.0041615687455932105) + +[fips4286160] +centroid = (0.72874577071538604, -1.3977382048133991) +description = Woodcock borough, PA +station = ('kgkj', 0.0027214813072771816) +zone = ('paz003', 0.0012416767399634628) + +[fips4286224] +centroid = (0.72275463135194262, -1.3910605401886835) +description = Woodland Heights CDP, PA +station = ('kfkl', 0.0022098183628412112) +zone = ('paz008', 0.00075403051675804558) + +[fips4286288] +centroid = (0.69599143844259626, -1.3150095982688677) +description = Woodlyn CDP, PA +station = ('kphl', 0.0015007563801177298) +zone = ('paz070', 0.0010018494754487183) + +[fips4286352] +centroid = (0.70214590571744118, -1.3065421334028173) +description = Woodside CDP, PA +station = ('kttn', 0.0010907729783288002) +zone = ('njz015', 0.0022991277743981378) + +[fips4286432] +centroid = (0.71383509130304057, -1.3499611080837006) +description = Woodward CDP, PA +station = ('kunv', 0.0066937055392938295) +zone = ('paz045', 0.0031608306632027422) + +[fips4286528] +centroid = (0.70267463576104039, -1.342334944276989) +description = Wormleysburg borough, PA +station = ('kcxy', 0.0011051906318490152) +zone = ('paz057', 0.00322056629407289) + +[fips4286560] +centroid = (0.71275733303664146, -1.3898935083310449) +description = Worthington borough, PA +station = ('kbtp', 0.0042686479328386557) +zone = ('paz022', 0.0022957296113789681) + +[fips4286568] +centroid = (0.71601130744076724, -1.3812756658966427) +description = Worthville borough, PA +station = ('kduj', 0.004381650003259129) +zone = ('paz016', 0.0025986723057828637) + +[fips4286576] +centroid = (0.70355143681736476, -1.3168890560738777) +description = Woxhall CDP, PA +station = ('kptw', 0.0018740039453602143) +zone = ('paz068', 0.0020747884984779509) + +[fips4286640] +centroid = (0.69854920100810136, -1.3357276164211289) +description = Wrightsville borough, PA +station = ('klns', 0.0034907061571171198) +zone = ('paz065', 0.0031772705248289531) + +[fips4286656] +centroid = (0.72732564866291582, -1.3310075130854504) +description = Wyalusing borough, PA +station = ('kavp', 0.0090924036736394556) +zone = ('paz043', 0.0041767765563711975) + +[fips4286672] +centroid = (0.70164883594647331, -1.3909216468868097) +description = Wyano CDP, PA +station = ('kagc', 0.0039385122324504477) +zone = ('paz073', 0.0029586103800963363) + +[fips4286712] +centroid = (0.70179518180425293, -1.3984684505724332) +description = Wylandville CDP, PA +station = ('kafj', 0.0024838560339033164) +zone = ('paz029', 0.0016634366374944027) + +[fips4286744] +centroid = (0.69972878178306175, -1.3115499891722722) +description = Wyncote CDP, PA +station = ('kpne', 0.0017365639164430441) +zone = ('paz071', 0.0014738959429046183) + +[fips4286776] +centroid = (0.69962603424999692, -1.3123846230738683) +description = Wyndmoor CDP, PA +station = ('klom', 0.001309793541914875) +zone = ('paz071', 0.0015821768313796049) + +[fips4286856] +centroid = (0.72092006341529391, -1.3237080749147119) +description = Wyoming borough, PA +station = ('kavp', 0.00151498214049372) +zone = ('paz047', 0.0029496032098751783) + +[fips4286880] +centroid = (0.70398776913036332, -1.3258776413479887) +description = Wyomissing borough, PA +station = ('krdg', 0.00054351734631418521) +zone = ('paz060', 0.0015140228145112864) + +[fips4286920] +centroid = (0.70232124149409658, -1.3061833809750698) +description = Yardley borough, PA +station = ('kttn', 0.00081100453531591523) +zone = ('njz015', 0.0019783060514507655) + +[fips4286952] +centroid = (0.72088557570927436, -1.3226527266759087) +description = Yatesville borough, PA +station = ('kavp', 0.00082551755846085287) +zone = ('paz044', 0.0032496281347201761) + +[fips4286968] +centroid = (0.69695341156641788, -1.3134075081885845) +description = Yeadon borough, PA +station = ('kphl', 0.0011777397335348203) +zone = ('paz070', 0.0019773910479085753) + +[fips4286976] +centroid = (0.70932057029995443, -1.3540313555256915) +description = Yeagertown CDP, PA +station = ('kunv', 0.0051005849654810788) +zone = ('paz027', 0.00072422277966011756) + +[fips4287040] +centroid = (0.69654936784458132, -1.3375625683302133) +description = Yoe borough, PA +station = ('kthv', 0.0033042933191211005) +zone = ('paz065', 0.0012163072885994432) + +[fips4287048] +centroid = (0.69751730999444483, -1.3392232491134859) +description = York city, PA +station = ('kthv', 0.0021943823136485506) +zone = ('paz065', 0.00078686912503819208) + +[fips4287064] +centroid = (0.69771212364555235, -1.3366551891053937) +description = Yorkana borough, PA +station = ('klns', 0.0045277267357586764) +zone = ('paz065', 0.0021347279770580884) + +[fips4287080] +centroid = (0.70005864901168868, -1.3389297719997628) +description = York Haven borough, PA +station = ('kmdt', 0.0017087250159190342) +zone = ('paz065', 0.0033284930656771487) + +[fips4287088] +centroid = (0.6980087248986363, -1.3376695919199453) +description = Yorklyn CDP, PA +station = ('kmdt', 0.0039739498430112772) +zone = ('paz065', 0.0016967504501845046) + +[fips4287136] +centroid = (0.69829504616242599, -1.3459238299112797) +description = York Springs borough, PA +station = ('kthv', 0.0035048673731347575) +zone = ('paz064', 0.0027672393987380824) + +[fips4287208] +centroid = (0.70301483533883913, -1.3851959895558872) +description = Youngstown borough, PA +station = ('klbe', 0.00045845146017830829) +zone = ('paz074', 0.0019252152771412605) + +[fips4287224] +centroid = (0.73046340159215117, -1.3843369210447631) +description = Youngsville borough, PA +station = ('kjhw', 0.0052332088825567235) +zone = ('paz004', 0.00086076604830668678) + +[fips4287232] +centroid = (0.70239595903937446, -1.3889454454813617) +description = Youngwood borough, PA +station = ('klbe', 0.0025012050436009135) +zone = ('paz073', 0.001751915011552567) + +[fips4287240] +centroid = (0.7018727442362116, -1.3908278703461003) +description = Yukon CDP, PA +station = ('kagc', 0.0038508753430980553) +zone = ('paz073', 0.0027318217220245163) + +[fips4287272] +centroid = (0.71183941202314005, -1.3986816774471496) +description = Zelienople borough, PA +station = ('kbtp', 0.0024920714832020003) +zone = ('paz020', 0.0033174723472596738) + +[fips4287320] +centroid = (0.7141321987016076, -1.3559598396293902) +description = Zion CDP, PA +station = ('kunv', 0.0024025029749288576) +zone = ('paz019', 0.00076309755265429767) + +[fips44001] +centroid = (0.7278942943865081, -1.2441588823086616) +description = Bristol County, RI +station = ('kpvd', 0.0019928286671650136) +zone = ('riz005', 0.00018932818611306322) + +[fips4400105140] +centroid = (0.72837890250661685, -1.2447631676555795) +description = Barrington town, RI +station = ('kpvd', 0.0014803465655398949) +zone = ('riz005', 0.00054857949875588012) + +[fips4400109280] +centroid = (0.72737870667217641, -1.2439542948137425) +description = Bristol town, RI +station = ('kpvd', 0.0023146340568803215) +zone = ('riz005', 0.00071868621448995841) + +[fips4400173760] +centroid = (0.72823791480964062, -1.2436932284642295) +description = Warren town, RI +station = ('kpvd', 0.0022836077937734103) +zone = ('riz005', 0.00037027928254087736) + +[fips44003] +centroid = (0.72741396232306677, -1.2492423457413124) +description = Kent County, RI +station = ('kpvd', 0.0021005042812683897) +zone = ('riz003', 0.0011628472634562647) + +[fips4400318640] +centroid = (0.72777103923473219, -1.2507369060863804) +description = Coventry town, RI +station = ('kpvd', 0.0030408227199389959) +zone = ('riz003', 0.00059052114268048515) + +[fips4400322240] +centroid = (0.72667601966203099, -1.2479986066630491) +description = East Greenwich town, RI +station = ('koqu', 0.001308905521824) +zone = ('riz004', 0.0010284665782319719) + +[fips4400374300] +centroid = (0.72781551022407309, -1.2465199811740517) +description = Warwick city, RI +station = ('kpvd', 0.00059325024241633736) +zone = ('riz004', 0.00063226720799557058) + +[fips4400377720] +centroid = (0.72670455579530113, -1.2510235415094355) +description = West Greenwich town, RI +station = ('kpvd', 0.0036085380566847824) +zone = ('riz003', 0.00051337938409626348) + +[fips4400378440] +centroid = (0.72743588365847178, -1.2482365823065582) +description = West Warwick town, RI +station = ('kpvd', 0.001461505689825546) +zone = ('riz004', 0.00071453327222248657) + +[fips44005] +centroid = (0.72435932197281128, -1.2441416035490667) +description = Newport County, RI +station = ('kuuu', 0.00053417913442242954) +zone = ('riz007', 0.0011175520996135517) + +[fips4400500000] +centroid = (0.72274571271946497, -1.2444672121743185) +description = County subdivisions not defined, RI +station = ('kuuu', 0.002162613928529586) +zone = ('riz007', 0.002686227438814514) + +[fips4400536820] +centroid = (0.72465599303906525, -1.2456602668911045) +description = Jamestown town, RI +station = ('koqu', 0.00152224573058176) +zone = ('riz007', 0.0018673778549852329) + +[fips4400542400] +centroid = (0.72437656582582099, -1.2420877000853197) +description = Little Compton town, RI +station = ('kuuu', 0.0016133371674864631) +zone = ('riz007', 0.0012939347249936593) + +[fips4400545460] +centroid = (0.72463646280473537, -1.2441000996194542) +description = Middletown town, RI +station = ('kuuu', 0.00025785427136010243) +zone = ('riz007', 0.00087906594280636038) + +[fips4400549960] +centroid = (0.72389860741016232, -1.244797358655626) +description = Newport city, RI +station = ('kuuu', 0.0011136770743431753) +zone = ('riz007', 0.0017799428455309077) + +[fips4400557880] +centroid = (0.72618984074559545, -1.2445140917180271) +description = Portsmouth town, RI +station = ('kuuu', 0.0013280726256850194) +zone = ('riz007', 0.001272143594306467) + +[fips4400570880] +centroid = (0.72623391030920825, -1.2423335820703407) +description = Tiverton town, RI +station = ('kuuu', 0.0018975880272821635) +zone = ('riz007', 0.0011957216193358756) + +[fips44007] +centroid = (0.73077787501677549, -1.2492759956892912) +description = Providence County, RI +station = ('ksfz', 0.0012972659902378805) +zone = ('riz001', 0.00065143762065419052) + +[fips4400711800] +centroid = (0.73251976597014345, -1.2513776862679575) +description = Burrillville town, RI +station = ('ksfz', 0.0027435452291752166) +zone = ('riz001', 0.0017204804656084814) + +[fips4400714140] +centroid = (0.73111954067114593, -1.2460513079100137) +description = Central Falls city, RI +station = ('ksfz', 0.0014595047252900244) +zone = ('riz002', 0.0015627871938696538) + +[fips4400719180] +centroid = (0.72901938598222116, -1.2476494709994801) +description = Cranston city, RI +station = ('kpvd', 0.00092577729900163803) +zone = ('riz002', 0.00085149844769034195) + +[fips4400720080] +centroid = (0.73247278170667973, -1.2465224769948822) +description = Cumberland town, RI +station = ('ksfz', 0.0013623545082054867) +zone = ('riz002', 0.0027458741378761169) + +[fips4400722960] +centroid = (0.72954685938875885, -1.2454073337759055) +description = East Providence city, RI +station = ('kpvd', 0.0015330626395892047) +zone = ('riz002', 0.0012670018658142016) + +[fips4400727460] +centroid = (0.72935187120472611, -1.2520107870008259) +description = Foster town, RI +station = ('ksfz', 0.0037828429677616454) +zone = ('riz001', 0.0023220795594690591) + +[fips4400730340] +centroid = (0.73113903599889074, -1.2512284780702045) +description = Glocester town, RI +station = ('ksfz', 0.0025092598164667052) +zone = ('riz001', 0.0009070451511910602) + +[fips4400737720] +centroid = (0.73002654568037706, -1.2482573691779497) +description = Johnston town, RI +station = ('ksfz', 0.0015785840857687197) +zone = ('riz002', 0.00091513775838170846) + +[fips4400741500] +centroid = (0.73161083340228983, -1.24706525693896) +description = Lincoln town, RI +station = ('ksfz', 0.0006294680338804759) +zone = ('riz002', 0.0018520690543126312) + +[fips4400751760] +centroid = (0.7306225232600555, -1.2471578117491933) +description = North Providence town, RI +station = ('ksfz', 0.001112671506699211) +zone = ('riz002', 0.00086550152132219697) + +[fips4400752480] +centroid = (0.73260519983702854, -1.248679564324007) +description = North Smithfield town, RI +station = ('ksfz', 0.0011706559915886326) +zone = ('riz001', 0.0017744988001603883) + +[fips4400754640] +centroid = (0.73084559379175285, -1.2457405869432812) +description = Pawtucket city, RI +station = ('ksfz', 0.0017758648559233353) +zone = ('riz002', 0.0014769593112602807) + +[fips4400759000] +centroid = (0.72995003044596962, -1.2464928587574757) +description = Providence city, RI +station = ('kpvd', 0.0015773703367479264) +zone = ('riz002', 0.00047967352404703034) + +[fips4400764220] +centroid = (0.72960806808562628, -1.2501538264898742) +description = Scituate town, RI +station = ('ksfz', 0.0025875469009474213) +zone = ('riz001', 0.0015280764556782091) + +[fips4400766200] +centroid = (0.73131461612164128, -1.248452514441615) +description = Smithfield town, RI +station = ('ksfz', 0.00048501875815331241) +zone = ('riz001', 0.0011735952807039702) + +[fips4400780780] +centroid = (0.73306806115465739, -1.2479095250580272) +description = Woonsocket city, RI +station = ('ksfz', 0.0014842165079404909) +zone = ('riz001', 0.0024874976059915191) + +[fips44009] +centroid = (0.72258659105156064, -1.2499631318158011) +description = Washington County, RI +station = ('kwst', 0.002550147886836922) +zone = ('riz006', 0.0013443697299366697) + +[fips4400914500] +centroid = (0.72206664001409904, -1.2510578721358221) +description = Charlestown town, RI +station = ('kwst', 0.0016113420569993666) +zone = ('riz006', 0.0019979123635240304) + +[fips4400925300] +centroid = (0.72553703524547208, -1.2501268611529308) +description = Exeter town, RI +station = ('koqu', 0.0027945092408251963) +zone = ('riz006', 0.0016096231975974266) + +[fips4400935380] +centroid = (0.72394637707178944, -1.2524122127287849) +description = Hopkinton town, RI +station = ('kwst', 0.0023190428337659685) +zone = ('riz006', 0.0017409705066332309) + +[fips4400948340] +centroid = (0.72257381524143605, -1.2476801015278525) +description = Narragansett town, RI +station = ('kuuu', 0.0035301358949911075) +zone = ('riz006', 0.0022567429272690154) + +[fips4400950500] +centroid = (0.71897117641263941, -1.2491768609877778) +description = New Shoreham town, RI +station = ('kbid', 0.00048354258534471129) +zone = ('riz008', 0.00029017552635408325) + +[fips4400951580] +centroid = (0.72560496345995962, -1.2471052598854155) +description = North Kingstown town, RI +station = ('koqu', 0.00066343600534042244) +zone = ('riz004', 0.0019598348048952968) + +[fips4400961160] +centroid = (0.7242192593003387, -1.2508654321324972) +description = Richmond town, RI +station = ('kwst', 0.0030502724290331668) +zone = ('riz006', 0.00065091241877701276) + +[fips4400967460] +centroid = (0.72275557382973865, -1.2487389229718675) +description = South Kingstown town, RI +station = ('koqu', 0.0037178246811129293) +zone = ('riz006', 0.0015483375428253085) + +[fips4400977000] +centroid = (0.72131555502379574, -1.2528790359438158) +description = Westerly town, RI +station = ('kwst', 0.00042807724599513866) +zone = ('riz006', 0.0033472314990972913) + +[fips4403520] +centroid = (0.7229983491286911, -1.2528990025104585) +description = Ashaway CDP, RI +station = ('kwst', 0.0013178404749556458) +zone = ('riz006', 0.0023023446653889566) + +[fips4408020] +centroid = (0.72246977616472463, -1.2523289081635871) +description = Bradford CDP, RI +station = ('kwst', 0.00098930708776468683) +zone = ('riz006', 0.0022240374447364849) + +[fips4412340] +centroid = (0.72363342208361425, -1.2506837782639497) +description = Carolina CDP, RI +station = ('kwst', 0.0026785156752574379) +zone = ('riz006', 0.00053430335592572625) + +[fips4414140] +centroid = (0.73111954067114593, -1.2460513079100137) +description = Central Falls city, RI +station = ('ksfz', 0.0014595047252900244) +zone = ('riz002', 0.0015627871938696538) + +[fips4414860] +centroid = (0.73148167903764216, -1.2507400302257414) +description = Chepachet CDP, RI +station = ('ksfz', 0.0021081386748354465) +zone = ('riz001', 0.00064591903667821852) + +[fips4415940] +centroid = (0.72900945505877734, -1.2512632973887818) +description = Clayville CDP, RI +station = ('ksfz', 0.0035869995718937242) +zone = ('riz003', 0.0018655677228401706) + +[fips4419180] +centroid = (0.72901938598222116, -1.2476494709994801) +description = Cranston city, RI +station = ('kpvd', 0.00092577729900163803) +zone = ('riz002', 0.00085149844769034195) + +[fips4420260] +centroid = (0.7325818298783443, -1.2472431583496157) +description = Cumberland Hill CDP, RI +station = ('ksfz', 0.0011145773656776642) +zone = ('riz001', 0.002517504124743896) + +[fips4422960] +centroid = (0.72954685938875885, -1.2454073337759055) +description = East Providence city, RI +station = ('kpvd', 0.0015330626395892047) +zone = ('riz002', 0.0012670018658142016) + +[fips4427640] +centroid = (0.7293812276427446, -1.2519482344004347) +description = Foster Center CDP, RI +station = ('ksfz', 0.0037278735161489925) +zone = ('riz001', 0.0022697057194453365) + +[fips4431240] +centroid = (0.72788479979537712, -1.2518909352410914) +description = Greene CDP, RI +station = ('ksfz', 0.0047418679717661219) +zone = ('riz003', 0.0010951199519208278) + +[fips4431600] +centroid = (0.73091748390364253, -1.2488580591466083) +description = Greenville CDP, RI +station = ('ksfz', 0.00097035165986998433) +zone = ('riz001', 0.0008841579797810923) + +[fips4433040] +centroid = (0.73128189119816644, -1.2498151104419397) +description = Harmony CDP, RI +station = ('ksfz', 0.0014493124408182872) +zone = ('riz001', 0.00020834330318903282) + +[fips4433400] +centroid = (0.73247098401755018, -1.2510018121602482) +description = Harrisville CDP, RI +station = ('ksfz', 0.0024646425096206083) +zone = ('riz001', 0.0015284828871369555) + +[fips4434660] +centroid = (0.72455694560401451, -1.2517599133741444) +description = Hope Valley CDP, RI +station = ('kwst', 0.0030461552255396053) +zone = ('riz006', 0.0014010930301185218) + +[fips4438980] +centroid = (0.72384352481896941, -1.2483314584046967) +description = Kingston CDP, RI +station = ('koqu', 0.0026210983378234369) +zone = ('riz006', 0.0013191928449659766) + +[fips4445010] +centroid = (0.72496168745755207, -1.2445957905803131) +description = Melville CDP, RI +station = ('kuuu', 0.00035611877893266999) +zone = ('riz007', 0.001014176405507293) + +[fips4446000] +centroid = (0.72117203659940421, -1.2536136275726875) +description = Misquamicut CDP, RI +station = ('kwst', 0.0006286103529625917) +zone = ('riz006', 0.0038190749724118719) + +[fips4448700] +centroid = (0.72303744450393581, -1.2473261662088406) +description = Narragansett Pier CDP, RI +station = ('koqu', 0.0030890302606618992) +zone = ('riz006', 0.0022537180726471847) + +[fips4449960] +centroid = (0.72389860741016232, -1.244797358655626) +description = Newport city, RI +station = ('kuuu', 0.0011136770743431753) +zone = ('riz007', 0.0017799428455309077) + +[fips4450140] +centroid = (0.7246178226883242, -1.2442112596395138) +description = Newport East CDP, RI +station = ('kuuu', 0.00028241188942393629) +zone = ('riz007', 0.00094993646914961799) + +[fips4454460] +centroid = (0.73222974460833956, -1.2514482324763232) +description = Pascoag CDP, RI +station = ('ksfz', 0.0027098870492646581) +zone = ('riz001', 0.0015327355648432617) + +[fips4454640] +centroid = (0.73084559379175285, -1.2457405869432812) +description = Pawtucket city, RI +station = ('ksfz', 0.0017758648559233353) +zone = ('riz002', 0.0014769593112602807) + +[fips4459000] +centroid = (0.72995003044596962, -1.2464928587574757) +description = Providence city, RI +station = ('kpvd', 0.0015773703367479264) +zone = ('riz002', 0.00047967352404703034) + +[fips4460260] +centroid = (0.72168519830607569, -1.2514867693462073) +description = Quonochontaug CDP, RI +station = ('kwst', 0.0012459000366422386) +zone = ('riz006', 0.0024755131495164222) + +[fips4470700] +centroid = (0.72699970842510586, -1.2426812516573378) +description = Tiverton CDP, RI +station = ('kuuu', 0.0023682391236127007) +zone = ('riz005', 0.0015386634803292855) + +[fips4472500] +centroid = (0.7317031089598427, -1.2459992447384267) +description = Valley Falls CDP, RI +station = ('ksfz', 0.0014270510689447429) +zone = ('riz002', 0.0021051810792016138) + +[fips4473130] +centroid = (0.72334669939409668, -1.2479210093245052) +description = Wakefield-Peacedale CDP, RI +station = ('koqu', 0.0029238119678191145) +zone = ('riz006', 0.0017251542226515517) + +[fips4474300] +centroid = (0.72781551022407309, -1.2465199811740517) +description = Warwick city, RI +station = ('kpvd', 0.00059325024241633736) +zone = ('riz004', 0.00063226720799557058) + +[fips4475200] +centroid = (0.72118036181993628, -1.2538991983448988) +description = Watch Hill CDP, RI +station = ('kwst', 0.00076351741971094191) +zone = ('riz006', 0.0039646175603308045) + +[fips4475920] +centroid = (0.72147399601329176, -1.2524817815527691) +description = Weekapaug CDP, RI +station = ('kwst', 0.00054517747026881726) +zone = ('riz006', 0.0030401216503314174) + +[fips4476820] +centroid = (0.72207419728976008, -1.2532738294206167) +description = Westerly CDP, RI +station = ('kwst', 0.00039238604623390759) +zone = ('riz006', 0.0030231865396586144) + +[fips4480780] +centroid = (0.73306806115465739, -1.2479095250580272) +description = Woonsocket city, RI +station = ('ksfz', 0.0014842165079404909) +zone = ('riz001', 0.0024874976059915191) + +[fips4480960] +centroid = (0.72455017372651676, -1.251241515679717) +description = Wyoming CDP, RI +station = ('kwst', 0.0031936556958848611) +zone = ('riz006', 0.0010645331406909919) + +[fips45001] +centroid = (0.5971436166984686, -1.4392065297090832) +description = Abbeville County, SC +station = ('kgrd', 0.0044932618492941698) +zone = ('scz011', 0.0001555202135483437) + +[fips4500100] +centroid = (0.59655240386764807, -1.4377658127714397) +description = Abbeville city, SC +station = ('kgrd', 0.0034191944001458053) +zone = ('scz011', 0.001383631891550121) + +[fips4500190013] +centroid = (0.59625585497444178, -1.4377475740807562) +description = Abbeville CCD, SC +station = ('kgrd', 0.0034978179302769335) +zone = ('scz011', 0.0015747115816412188) + +[fips4500190091] +centroid = (0.59782900749572676, -1.441335953569564) +description = Antreville-Lowndesville CCD, SC +station = ('kand', 0.0047232985627120123) +zone = ('scz011', 0.0018633553780719289) + +[fips4500190455] +centroid = (0.59558772548348571, -1.4413813146768233) +description = Calhoun Falls CCD, SC +station = ('kand', 0.0068200459559112567) +zone = ('scz011', 0.0025002617690343234) + +[fips4500190897] +centroid = (0.60058462058523798, -1.4369401847687837) +description = Donalds CCD, SC +station = ('kgrd', 0.0040483171215593651) +zone = ('scz011', 0.0037706239970456555) + +[fips4500190910] +centroid = (0.59909911849898811, -1.4382996042698695) +description = Due West CCD, SC +station = ('kgrd', 0.0040626315544018826) +zone = ('scz011', 0.0019420896567216019) + +[fips45003] +centroid = (0.58554604344530647, -1.4247798126450235) +description = Aiken County, SC +station = ('kaik', 0.0019374585276704013) +zone = ('scz030', 8.6877537169073506e-05) + +[fips4500390026] +centroid = (0.58613579019955531, -1.426863281986299) +description = Aiken CCD, SC +station = ('kaik', 0.0014859407791770318) +zone = ('scz030', 0.0018503062033542014) + +[fips4500390028] +centroid = (0.58744087760102659, -1.4250686820895209) +description = Aiken Northeast CCD, SC +station = ('kaik', 0.00059123946142453218) +zone = ('scz030', 0.0019936270763249407) + +[fips4500390208] +centroid = (0.58340572873029317, -1.4288730111666781) +description = Beech Island CCD, SC +station = ('kags', 0.0017742350702125295) +zone = ('gaz065', 0.0032099793634764707) + +[fips4500391651] +centroid = (0.58163613940169623, -1.4263679226379982) +description = Jackson CCD, SC +station = ('kags', 0.0035986682150150229) +zone = ('scz030', 0.0040428116244854073) + +[fips4500392223] +centroid = (0.5892132420031343, -1.4234724388622322) +description = Monetta CCD, SC +station = ('kaik', 0.0026958814839855966) +zone = ('scz030', 0.0039114039180625747) + +[fips4500392379] +centroid = (0.5835171680030331, -1.4260627169117017) +description = New Ellenton CCD, SC +station = ('kaik', 0.0037945526462280403) +zone = ('scz030', 0.002211661905548252) + +[fips4500392418] +centroid = (0.58530555452767419, -1.4294154420449054) +description = North Augusta CCD, SC +station = ('kdnl', 0.0022891837083986138) +zone = ('gaz065', 0.0039814667986976188) + +[fips4500392977] +centroid = (0.58617855076622927, -1.4194854959854388) +description = Salley CCD, SC +station = ('kbnl', 0.005920310276281154) +zone = ('scz030', 0.0044829862377830949) + +[fips4500393562] +centroid = (0.58734961433443977, -1.4211279206247356) +description = Wagener CCD, SC +station = ('kaik', 0.0038556920768349026) +zone = ('scz030', 0.0035923113329650379) + +[fips4500393744] +centroid = (0.58439339310070437, -1.422764603130793) +description = Windsor CCD, SC +station = ('kaik', 0.0038333765289275726) +zone = ('scz030', 0.0020017030170692211) + +[fips45005] +centroid = (0.57560581739654559, -1.4200595871362973) +description = Allendale County, SC +station = ('kbnl', 0.0047321370202117376) +zone = ('scz040', 0.00016472579833587723) + +[fips4500550] +centroid = (0.58520591368067776, -1.4264101945124814) +description = Aiken city, SC +station = ('kaik', 0.0021662963365298282) +zone = ('scz030', 0.0013692634193092892) + +[fips4500590052] +centroid = (0.57603263766512081, -1.4206800342320889) +description = Allendale CCD, SC +station = ('kbnl', 0.0042913419168736843) +zone = ('scz040', 0.00066125765303394653) + +[fips4500591092] +centroid = (0.5737694692240598, -1.4193741090725764) +description = Fairfax CCD, SC +station = ('kjyl', 0.0056552016677627586) +zone = ('scz040', 0.0020429631719201305) + +[fips4500592197] +centroid = (0.57765605566886336, -1.4228717314402806) +description = Millett CCD, SC +station = ('kbnl', 0.0033121624477066916) +zone = ('scz040', 0.0030918345411434368) + +[fips4500593367] +centroid = (0.57692205745193714, -1.4174719968938756) +description = Sycamore CCD, SC +station = ('kbnl', 0.0042527862050146916) +zone = ('scz040', 0.0023972543269423193) + +[fips45007] +centroid = (0.60247978635351607, -1.4423066882462308) +description = Anderson County, SC +station = ('kand', 0.0011805300592767694) +zone = ('scz010', 8.2804346290262662e-06) + +[fips4500775] +centroid = (0.58920779657586819, -1.4001885074568587) +description = Alcolu CDP, SC +station = ('kmni', 0.0030703814873701604) +zone = ('scz038', 0.0016334008120805095) + +[fips4500790065] +centroid = (0.60207272321207339, -1.4429308179867439) +description = Anderson CCD, SC +station = ('kand', 0.00061944624734761099) +zone = ('scz010', 0.00065319218087695992) + +[fips4500790221] +centroid = (0.60197659047687357, -1.4399824507346426) +description = Belton CCD, SC +station = ('kand', 0.0030502210330975946) +zone = ('scz010', 0.0019757817291412593) + +[fips4500791560] +centroid = (0.60100182408963476, -1.4390804645772117) +description = Honea Path CCD, SC +station = ('kand', 0.0039573605739460314) +zone = ('scz010', 0.0030364847405637638) + +[fips4500791638] +centroid = (0.59882517161959514, -1.4429754111491324) +description = Iva CCD, SC +station = ('kand', 0.003363770892007836) +zone = ('scz011', 0.00349218693362131) + +[fips4500792626] +centroid = (0.60441352389826319, -1.4440307070280582) +description = Pendleton CCD, SC +station = ('kand', 0.0022933794477173631) +zone = ('scz010', 0.0024067367495771148) + +[fips4500792723] +centroid = (0.6062780416848762, -1.4405358946404498) +description = Powdersville-Piedmont CCD, SC +station = ('kgyh', 0.0022811987614840793) +zone = ('scz005', 0.0025649860642854793) + +[fips4500793224] +centroid = (0.60036099154818001, -1.4442326241692216) +description = Starr CCD, SC +station = ('kand', 0.0018354577393616344) +zone = ('scz010', 0.0026431798324067471) + +[fips4500793412] +centroid = (0.60250575685278573, -1.4465330204832274) +description = Townville CCD, SC +station = ('kand', 0.0023809326420560044) +zone = ('scz004', 0.0023978431537944587) + +[fips4500793718] +centroid = (0.60418579333746303, -1.4403757955881644) +description = Williamston-Pelzer CCD, SC +station = ('kgyh', 0.0032682320977614676) +zone = ('scz010', 0.0023359906993065099) + +[fips45009] +centroid = (0.57950203805882017, -1.4146445285990596) +description = Bamberg County, SC +station = ('kbnl', 0.0049856878197868468) +zone = ('scz041', 0.00020440088889742711) + +[fips4500955] +centroid = (0.57609909980303664, -1.4191126238440426) +description = Allendale town, SC +station = ('kbnl', 0.0043850477455231471) +zone = ('scz040', 0.00079643927096721353) + +[fips4500990130] +centroid = (0.58036260755310098, -1.4130830872370554) +description = Bamberg CCD, SC +station = ('kogb', 0.0040916408689179633) +zone = ('scz041', 0.0014754442690561287) + +[fips4500990871] +centroid = (0.58175159293171563, -1.4164740525341701) +description = Denmark CCD, SC +station = ('kbnl', 0.003674408730849781) +zone = ('scz041', 0.0025452851936025333) + +[fips4500991014] +centroid = (0.57811635135249173, -1.4134846700446468) +description = Ehrhardt CCD, SC +station = ('kogb', 0.0063105876968447515) +zone = ('scz041', 0.0018705287972792201) + +[fips4500992483] +centroid = (0.57894398648378753, -1.4163673256504108) +description = Olar CCD, SC +station = ('kbnl', 0.00374038448700958) +zone = ('scz041', 0.0016172277194163138) + +[fips45011] +centroid = (0.58050837745222761, -1.4212871121058099) +description = Barnwell County, SC +station = ('kbnl', 0.00066522667696876424) +zone = ('scz035', 9.6331424910652436e-05) + +[fips4501190143] +centroid = (0.57999692616822307, -1.4191864512714021) +description = Barnwell CCD, SC +station = ('kbnl', 0.0011645404733510675) +zone = ('scz035', 0.0018755929745530074) + +[fips4501190286] +centroid = (0.58239040089123817, -1.4185389864787896) +description = Blackville CCD, SC +station = ('kbnl', 0.0026512116025821223) +zone = ('scz035', 0.0029244528231323779) + +[fips4501191794] +centroid = (0.57954293112319444, -1.4228374357204789) +description = Kline-Snelling CCD, SC +station = ('kbnl', 0.0020865170458235459) +zone = ('scz035', 0.0016608157078492032) + +[fips4501193731] +centroid = (0.58278432170341321, -1.4205969216531089) +description = Williston CCD, SC +station = ('kbnl', 0.0024631100729720743) +zone = ('scz035', 0.0022610034964089341) + +[fips45013] +centroid = (0.56475620499432566, -1.408294305195311) +description = Beaufort County, SC +station = ('karw', 0.0013648835438402028) +zone = ('scz048', 6.3212492692199597e-05) + +[fips4501360] +centroid = (0.60250800832752083, -1.4424679566691152) +description = Anderson city, SC +station = ('kand', 0.0010634733382788308) +zone = ('scz010', 0.00014026231442513124) + +[fips4501390195] +centroid = (0.56589201291164593, -1.4089673914213425) +description = Beaufort-Port Royal CCD, SC +station = ('knbc', 0.0010620359155597942) +zone = ('scz048', 0.0012664212193121932) + +[fips4501390312] +centroid = (0.56298183346357811, -1.4113330281427883) +description = Bluffton CCD, SC +station = ('khxd', 0.0025107317539930381) +zone = ('scz051', 0.0013901621865827164) + +[fips4501391540] +centroid = (0.56156240954280867, -1.4088948206310445) +description = Hilton Head Island CCD, SC +station = ('khxd', 0.00080479981429899036) +zone = ('scz048', 0.0032019297732254022) + +[fips4501392927] +centroid = (0.56489721014459415, -1.4056755084658636) +description = St. Helena Island CCD, SC +station = ('karw', 0.00141393907715952) +zone = ('scz048', 0.0022766922912447886) + +[fips4501393107] +centroid = (0.56866595195830305, -1.4089413685621952) +description = Sheldon CCD, SC +station = ('knbc', 0.0017307619916880478) +zone = ('scz048', 0.0039633287805081767) + +[fips4501450] +centroid = (0.58380263405548927, -1.3886881490430325) +description = Andrews town, SC +station = ('kgge', 0.004332746548158151) +zone = ('scz055', 0.0026483723102243379) + +[fips45015] +centroid = (0.57958370201452103, -1.3954545287536269) +description = Berkeley County, SC +station = ('kmks', 0.0013505899942416596) +zone = ('scz045', 0.00024970892180474318) + +[fips4501590351] +centroid = (0.58097183218180215, -1.3944976170846359) +description = Bonneau CCD, SC +station = ('kmks', 0.0027839261516984471) +zone = ('scz045', 0.0013962165763250073) + +[fips4501590754] +centroid = (0.57919114255916249, -1.3914722808125215) +description = Cordesville CCD, SC +station = ('kmks', 0.004595020358281271) +zone = ('scz045', 0.0034011918751267953) + +[fips4501590806] +centroid = (0.5805561645671472, -1.4000007274826367) +description = Cross CCD, SC +station = ('kmks', 0.002929810682428723) +zone = ('scz044', 0.0042538591610507877) + +[fips4501591274] +centroid = (0.57686721920683937, -1.397363796782261) +description = Goose Creek-Hanahan CCD, SC +station = ('kmks', 0.0022583011907320399) +zone = ('scz052', 0.0026463319673767798) + +[fips4501592210] +centroid = (0.5789293780779482, -1.3971496972429189) +description = Moncks Corner CCD, SC +station = ('kmks', 0.00023237905486309872) +zone = ('scz045', 0.001675328288944375) + +[fips4501592951] +centroid = (0.58314307413116062, -1.3963283278436378) +description = St. Stephen CCD, SC +station = ('kmks', 0.0040773250327736958) +zone = ('scz045', 0.0033876742637873902) + +[fips4501593614] +centroid = (0.5754742544775302, -1.3941759878100783) +description = Wando CCD, SC +station = ('klro', 0.0019372217857507919) +zone = ('scz052', 0.00058750523566136856) + +[fips45017] +centroid = (0.58773578588473607, -1.409883026053524) +description = Calhoun County, SC +station = ('kogb', 0.0037708495688374239) +zone = ('scz037', 2.990867592194025e-06) + +[fips4501790481] +centroid = (0.58583993943804979, -1.4076921491500805) +description = Cameron CCD, SC +station = ('kogb', 0.0033288898150518015) +zone = ('scz037', 0.0026311208801750928) + +[fips4501791196] +centroid = (0.58777432275462016, -1.4073818296090759) +description = Fort Motte-Lone Star CCD, SC +station = ('kogb', 0.0048026404782790843) +zone = ('scz037', 0.0020796472435397457) + +[fips4501792938] +centroid = (0.58792286772725733, -1.4103050117600711) +description = St. Matthews CCD, SC +station = ('kogb', 0.0038761658920381508) +zone = ('scz037', 0.00039878967478424235) + +[fips4501793030] +centroid = (0.58891063681742362, -1.4127578451309462) +description = Sandy Run-Staley Crossroads CCD, SC +station = ('kmmt', 0.0037022596795738788) +zone = ('scz037', 0.0026654735544762056) + +[fips4501810] +centroid = (0.59857803299751267, -1.4409647220376649) +description = Antreville CDP, SC +station = ('kand', 0.0042060107278714615) +zone = ('scz011', 0.0019562656181829167) + +[fips45019] +centroid = (0.57247598826211421, -1.3952594882097165) +description = Charleston County, SC +station = ('kjzi', 0.0019460294585076983) +zone = ('scz050', 0.00070956237971359266) + +[fips4501990570] +centroid = (0.57247598826211421, -1.3952594882097165) +description = Charleston Central CCD, SC +station = ('kjzi', 0.0019460294585076983) +zone = ('scz050', 0.00070956237971359266) + +[fips4501990988] +centroid = (0.56849988387997585, -1.4015851199243046) +description = Edisto Island CCD, SC +station = ('kjzi', 0.005002434525974919) +zone = ('scz049', 0.0029144229299458112) + +[fips4501991664] +centroid = (0.57043196336193358, -1.3949433392690103) +description = James Island CCD, SC +station = ('kjzi', 0.0011483545755572114) +zone = ('scz050', 0.0027679453487046463) + +[fips4501991703] +centroid = (0.57142585855777428, -1.3968589952027068) +description = Johns Island CCD, SC +station = ('kjzi', 0.00086346224405257639) +zone = ('scz050', 0.0022036199404146493) + +[fips4501991761] +centroid = (0.56902353501545166, -1.3977696381932274) +description = Kiawah Island-Seabrook Island CCD, SC +station = ('kjzi', 0.0021202328971773091) +zone = ('scz050', 0.0046588455174123335) + +[fips4501992080] +centroid = (0.57622329743260869, -1.3877680812745514) +description = McClellanville CCD, SC +station = ('klro', 0.0043931579607383977) +zone = ('scz052', 0.0060040075715890777) + +[fips4501992301] +centroid = (0.57267720727157667, -1.3927019001771366) +description = Mount Pleasant CCD, SC +station = ('klro', 0.0015537947623492595) +zone = ('scz050', 0.0022258462952840685) + +[fips4501992424] +centroid = (0.57444655225407837, -1.397027716181497) +description = North Charleston CCD, SC +station = ('kchs', 0.0002790723284921045) +zone = ('scz050', 0.0019347320445660184) + +[fips4501992771] +centroid = (0.57160140377393986, -1.4015382578338886) +description = Ravenel-Hollywood CCD, SC +station = ('kchs', 0.0047302320490562391) +zone = ('scz049', 0.0037743653885555927) + +[fips4501993549] +centroid = (0.56998407696928677, -1.3994738998479221) +description = Wadmalaw Island CCD, SC +station = ('kjzi', 0.002801425614683837) +zone = ('scz050', 0.0047628636818596417) + +[fips4501993646] +centroid = (0.57286507451226132, -1.3974741190442794) +description = West Ashley CCD, SC +station = ('kchs', 0.001448060381919721) +zone = ('scz050', 0.0018706016739029876) + +[fips4502080] +centroid = (0.61018586878667658, -1.431049873076228) +description = Arcadia CDP, SC +station = ('kspa', 0.0009906153466432469) +zone = ('scz007', 0.00052082186359703056) + +[fips45021] +centroid = (0.61173434235233848, -1.4243221349552728) +description = Cherokee County, SC +station = ('keho', 0.0034959226370549811) +zone = ('scz008', 0.00018433593129397967) + +[fips4502125] +centroid = (0.59431283227807397, -1.4130728072477612) +description = Arcadia Lakes town, SC +station = ('kcub', 0.0015758100894947922) +zone = ('scz028', 0.0010119697399166505) + +[fips4502190273] +centroid = (0.61280143665700781, -1.4222974483032045) +description = Blacksburg CCD, SC +station = ('keho', 0.0028775591072418049) +zone = ('scz008', 0.0021403423859664098) + +[fips4502191235] +centroid = (0.61173434235233848, -1.4243221349552728) +description = Gaffney CCD, SC +station = ('keho', 0.0034959226370549811) +zone = ('scz008', 0.00018433593129397967) + +[fips4502192132] +centroid = (0.61266627835973331, -1.427347523587265) +description = Macedonia CCD, SC +station = ('keho', 0.0036375719155501054) +zone = ('scz008', 0.0024865058613336667) + +[fips4502193042] +centroid = (0.60980248976318352, -1.4250142976300288) +description = Saratt CCD, SC +station = ('kspa', 0.0043490833591113449) +zone = ('scz008', 0.0019424700198991042) + +[fips45023] +centroid = (0.60544328561023242, -1.4165310200809553) +description = Chester County, SC +station = ('kdcm', 0.0018045069146131745) +zone = ('scz014', 5.4240529687061589e-05) + +[fips4502390611] +centroid = (0.60524477186111048, -1.4172607247879216) +description = Chester CCD, SC +station = ('kdcm', 0.0019642247615860274) +zone = ('scz014', 0.00067201217969922646) + +[fips4502390637] +centroid = (0.60626023932650586, -1.4201434851134407) +description = Chester West CCD, SC +station = ('kdcm', 0.0027227984364934536) +zone = ('scz014', 0.0030916819190092994) + +[fips4502391179] +centroid = (0.60652198635442744, -1.4125980078780485) +description = Fort Lawn CCD, SC +station = ('klkr', 0.0013467324873483065) +zone = ('scz015', 0.003492294948258777) + +[fips4502391326] +centroid = (0.60396153598187419, -1.4133870537795827) +description = Great Falls CCD, SC +station = ('klkr', 0.002758646712866639) +zone = ('scz014', 0.0029833908411218725) + +[fips4502392821] +centroid = (0.60626563239389453, -1.4142247245540773) +description = Richburg CCD, SC +station = ('klkr', 0.0025851804672009887) +zone = ('scz014', 0.0020245873863447761) + +[fips4502440] +centroid = (0.60817875760017548, -1.4423509148894762) +description = Arial CDP, SC +station = ('klqk', 0.0010583924648848394) +zone = ('scz005', 0.00092527935101328288) + +[fips45025] +centroid = (0.60453000717254124, -1.3990424370035366) +description = Chesterfield County, SC +station = ('kcqw', 0.0034638491845569528) +zone = ('scz016', 4.7667764257499316e-05) + +[fips4502590585] +centroid = (0.60467930263675695, -1.3947287684907699) +description = Cheraw CCD, SC +station = ('kcqw', 0.0013594475244844226) +zone = ('scz016', 0.0035413929222774805) + +[fips4502590624] +centroid = (0.60607572311798497, -1.398024002478413) +description = Chesterfield CCD, SC +station = ('kcqw', 0.0023098332782600008) +zone = ('scz016', 0.0017126275636030412) + +[fips4502591677] +centroid = (0.60470628542699267, -1.4020942848269888) +description = Jefferson CCD, SC +station = ('khvs', 0.0052989703401802035) +zone = ('scz016', 0.0025230999030505692) + +[fips4502592067] +centroid = (0.6021015735046088, -1.4007342195540797) +description = McBee CCD, SC +station = ('khvs', 0.0025997372427657849) +zone = ('scz016', 0.0028447701593398603) + +[fips4502592275] +centroid = (0.60651542391643998, -1.4004931721310869) +description = Mount Croghan CCD, SC +station = ('kcqw', 0.0043697051563762589) +zone = ('scz016', 0.0022808922530571157) + +[fips4502592535] +centroid = (0.60691620387257539, -1.4036980504233538) +description = Pageland CCD, SC +station = ('keqy', 0.005042690519888508) +zone = ('ncz082', 0.0040354822257415157) + +[fips4502592574] +centroid = (0.60325127424277514, -1.3975389580259912) +description = Patrick CCD, SC +station = ('khvs', 0.0029366337779476357) +zone = ('scz016', 0.0018073076126508341) + +[fips45027] +centroid = (0.58755954253686971, -1.4000662820493415) +description = Clarendon County, SC +station = ('kmni', 0.0014199132037794888) +zone = ('scz038', 2.9130478164543145e-05) + +[fips4502790039] +centroid = (0.58945554606318862, -1.3990799964890395) +description = Alcolu CCD, SC +station = ('kmni', 0.0034116522976692558) +zone = ('scz038', 0.0020394129699612671) + +[fips4502792145] +centroid = (0.58645680860887461, -1.4000782899145952) +description = Manning CCD, SC +station = ('kmni', 0.00031828221814637393) +zone = ('scz038', 0.0011226925044001679) + +[fips4502792158] +centroid = (0.58717001995440965, -1.3980371099010953) +description = Manning East CCD, SC +station = ('kmni', 0.0019640435592204741) +zone = ('scz038', 0.0017168840692155577) + +[fips4502792600] +centroid = (0.58858996747395464, -1.4028586168663146) +description = Paxville CCD, SC +station = ('kmni', 0.0033895542160622964) +zone = ('scz038', 0.002553488067224718) + +[fips4502793055] +centroid = (0.58989029012656791, -1.3969649366883028) +description = Sardinia CCD, SC +station = ('kcki', 0.0030790275994397849) +zone = ('scz038', 0.0034471914019257653) + +[fips4502793263] +centroid = (0.58583285340128666, -1.4027965005982364) +description = Summerton CCD, SC +station = ('kmni', 0.0023129520491079335) +zone = ('scz038', 0.0028840146716342658) + +[fips4502793484] +centroid = (0.59126571429689456, -1.3957493497708737) +description = Turbeville CCD, SC +station = ('kcki', 0.0032508752097218721) +zone = ('scz032', 0.0046530660529152355) + +[fips45029] +centroid = (0.57307851082648775, -1.4077013295819458) +description = Colleton County, SC +station = ('krbw', 0.0014081285348444305) +zone = ('scz043', 0.0016063505227799338) + +[fips4502990767] +centroid = (0.57498461980917581, -1.4046151336788144) +description = Cottageville CCD, SC +station = ('krbw', 0.0021568470024533062) +zone = ('scz044', 0.0025939324632156431) + +[fips4502991352] +centroid = (0.56924229458389664, -1.4045202575806761) +description = Green Pond CCD, SC +station = ('karw', 0.0041832680995649591) +zone = ('scz049', 0.00037609197857860335) + +[fips4502991508] +centroid = (0.57241554751011769, -1.4094080870574712) +description = Hendersonville CCD, SC +station = ('krbw', 0.0027749433455130628) +zone = ('scz043', 0.0022350258545547189) + +[fips4502992002] +centroid = (0.57554975742097148, -1.4127780036838069) +description = Lodge CCD, SC +station = ('krbw', 0.0049173288106526105) +zone = ('scz043', 0.0037079022879190522) + +[fips4502993172] +centroid = (0.57764149962290168, -1.4104036752226861) +description = Smoaks CCD, SC +station = ('krbw', 0.0042819191632293479) +zone = ('scz043', 0.0034890360184056802) + +[fips4502993601] +centroid = (0.5752199425522222, -1.4080297307340011) +description = Walterboro CCD, SC +station = ('krbw', 0.0011497029279784966) +zone = ('scz043', 0.0008118694124151436) + +[fips45031] +centroid = (0.59920966765380945, -1.395602201061638) +description = Darlington County, SC +station = ('khvs', 0.0025641178264691343) +zone = ('scz023', 6.3756517582694698e-05) + +[fips4503190858] +centroid = (0.59900654623546223, -1.3936903848522959) +description = Darlington CCD, SC +station = ('kflo', 0.0029486409839528096) +zone = ('scz023', 0.0015292569514097861) + +[fips4503191469] +centroid = (0.59929304203217715, -1.3979472952577878) +description = Hartsville CCD, SC +station = ('khvs', 0.0011512152361312967) +zone = ('scz023', 0.0020017062621519796) + +[fips4503191820] +centroid = (0.59723604933565422, -1.3963933064516896) +description = Lake Swamp CCD, SC +station = ('khvs', 0.0035497989712853675) +zone = ('scz023', 0.0021034898181818717) + +[fips4503191846] +centroid = (0.59610579156535515, -1.3976726327934015) +description = Lamar CCD, SC +station = ('khvs', 0.0043246909664091931) +zone = ('scz029', 0.0025143162715320958) + +[fips4503192431] +centroid = (0.60088977395165677, -1.3974007628558183) +description = North Hartsville CCD, SC +station = ('khvs', 0.00093267182222841691) +zone = ('scz023', 0.002281750342193484) + +[fips4503193185] +centroid = (0.60127568370256512, -1.3931903131150147) +description = Society Hill CCD, SC +station = ('kbbp', 0.0032510413392471717) +zone = ('scz023', 0.0028222392277671006) + +[fips4503205] +centroid = (0.58998361288167211, -1.3738843885006644) +description = Atlantic Beach town, SC +station = ('kcre', 0.00022912896383287028) +zone = ('scz054', 0.0023531930245706853) + +[fips45033] +centroid = (0.60022173172716331, -1.3853544654519685) +description = Dillon County, SC +station = ('kmao', 0.0037250610641141333) +zone = ('scz024', 6.1243658310145216e-05) + +[fips4503385] +centroid = (0.57557248160783248, -1.390028893521122) +description = Awendaw town, SC +station = ('klro', 0.002426251906266606) +zone = ('scz052', 0.0040446831704851046) + +[fips4503390884] +centroid = (0.60095504926568122, -1.3864171266203376) +description = Dillon CCD, SC +station = ('kmao', 0.0046585528266997085) +zone = ('scz024', 0.0010847706593844276) + +[fips4503391417] +centroid = (0.60092902640653412, -1.3841760365943143) +description = Hamer CCD, SC +station = ('kmao', 0.0043875548697734903) +zone = ('scz024', 0.0012355630832802064) + +[fips4503391833] +centroid = (0.59923071632458846, -1.3824043005107374) +description = Lake View CCD, SC +station = ('kmao', 0.0032203238255306297) +zone = ('scz024', 0.0026904927373869437) + +[fips4503391911] +centroid = (0.59933807152687868, -1.3873117649416176) +description = Latta CCD, SC +station = ('kmao', 0.0035902292836339929) +zone = ('scz024', 0.0018035221456950698) + +[fips4503391976] +centroid = (0.60262859312554107, -1.386190827229524) +description = Little Rock CCD, SC +station = ('kmeb', 0.0045276164348645826) +zone = ('scz024', 0.0024662892138178111) + +[fips4503430] +centroid = (0.59341568068267125, -1.38242634401919) +description = Aynor town, SC +station = ('khyw', 0.0032280939054356059) +zone = ('scz033', 0.0026436752482780338) + +[fips45035] +centroid = (0.57739306945717284, -1.403326696718407) +description = Dorchester County, SC +station = ('kdyb', 0.0018360444989301626) +zone = ('scz044', 4.7453151997406477e-05) + +[fips4503591456] +centroid = (0.5791333896142139, -1.4038239584755929) +description = Harleyville CCD, SC +station = ('kdyb', 0.0029711552137728818) +zone = ('scz044', 0.0018334174158425288) + +[fips4503592782] +centroid = (0.57854296218155665, -1.4074302101359411) +description = Reevesville CCD, SC +station = ('krbw', 0.0041652053965615639) +zone = ('scz044', 0.0036325034177700187) + +[fips4503592860] +centroid = (0.57649338713435483, -1.4022597245867854) +description = Ridgeville CCD, SC +station = ('kdyb', 0.0011561407433073178) +zone = ('scz044', 0.001241056897097702) + +[fips4503592912] +centroid = (0.57924425292830062, -1.4061477422015758) +description = St. George CCD, SC +station = ('kdyb', 0.0046662746565079259) +zone = ('scz044', 0.003024660039452059) + +[fips4503593276] +centroid = (0.57497706253351466, -1.4005837198126803) +description = Summerville CCD, SC +station = ('kdyb', 0.0022539737423930861) +zone = ('scz044', 0.0033071697258967693) + +[fips45037] +centroid = (0.58951109989327966, -1.4306157573313794) +description = Edgefield County, SC +station = ('kaik', 0.0046035485737954832) +zone = ('scz025', 7.7057675136795215e-05) + +[fips4503790] +centroid = (0.58119701456189443, -1.4142616208144645) +description = Bamberg town, SC +station = ('kogb', 0.0039272109150272749) +zone = ('scz041', 0.001528385229237484) + +[fips4503790975] +centroid = (0.58945531917038596, -1.431385482438094) +description = Edgefield CCD, SC +station = ('kdnl', 0.0053604807767818957) +zone = ('scz025', 0.00066392886159403824) + +[fips4503791729] +centroid = (0.5898577222827257, -1.4271667249300508) +description = Johnston CCD, SC +station = ('kaik', 0.0028098184554691667) +zone = ('scz025', 0.0028735969467166382) + +[fips4503792691] +centroid = (0.59181741287345002, -1.4316632864951337) +description = Pleasant Lane CCD, SC +station = ('kgrd', 0.0059339721140369301) +zone = ('scz025', 0.0025419468901908796) + +[fips4503793191] +centroid = (0.58695328496789689, -1.4310511297132893) +description = Southeast Edgefield CCD, SC +station = ('kdnl', 0.0029089701947248902) +zone = ('scz025', 0.0025143656727673147) + +[fips4503793445] +centroid = (0.58823229715034353, -1.4289102390396231) +description = Trenton CCD, SC +station = ('kaik', 0.002781724663045953) +zone = ('scz025', 0.0018432851428455866) + +[fips45039] +centroid = (0.60031767247614543, -1.4159332797187323) +description = Fairfield County, SC +station = ('kfdw', 0.0013245198365809043) +zone = ('scz021', 8.4132676635317776e-05) + +[fips4503992237] +centroid = (0.60087071495622502, -1.4192566833205023) +description = Monticello-Salem Crossroads CCD, SC +station = ('kfdw', 0.0034056674164588624) +zone = ('scz021', 0.0028808879288665596) + +[fips4503992873] +centroid = (0.59938910495420694, -1.4123538712222796) +description = Ridgeway CCD, SC +station = ('kfdw', 0.002881739626169587) +zone = ('scz021', 0.0030143382207839828) + +[fips4503993757] +centroid = (0.60175407845053686, -1.4149355447985372) +description = Winnsboro North CCD, SC +station = ('kfdw', 0.0028501566850343599) +zone = ('scz021', 0.0016243691853337304) + +[fips4503993770] +centroid = (0.59864632773114324, -1.416385861047067) +description = Winnsboro South CCD, SC +station = ('kfdw', 0.00059022813387132943) +zone = ('scz021', 0.0017231889195707198) + +[fips4504060] +centroid = (0.5801759445896002, -1.4201071124518292) +description = Barnwell city, SC +station = ('kbnl', 0.00037759864556775825) +zone = ('scz035', 0.0010919373357189612) + +[fips45041] +centroid = (0.59390997538012857, -1.3912060133818374) +description = Florence County, SC +station = ('kflo', 0.0027222868057154613) +zone = ('scz032', 0.00012852861996531914) + +[fips4504190780] +centroid = (0.59299585918439657, -1.3916910578342589) +description = Coward CCD, SC +station = ('kflo', 0.0036164925225443205) +zone = ('scz032', 0.00098568723614324131) + +[fips4504190845] +centroid = (0.59521506278159986, -1.3933251572530236) +description = Danwood CCD, SC +station = ('kflo', 0.0019918827733919984) +zone = ('scz032', 0.0023157697054083559) + +[fips4504191131] +centroid = (0.5970950441853855, -1.391324940117068) +description = Florence CCD, SC +station = ('kflo', 0.00053747634077630133) +zone = ('scz032', 0.0032619950659721186) + +[fips4504191716] +centroid = (0.59071736675250308, -1.3872572234024927) +description = Johnsonville CCD, SC +station = ('kcki', 0.0057443549042946835) +zone = ('scz032', 0.0044483482767874016) + +[fips4504191807] +centroid = (0.59109001200109634, -1.3910016876863063) +description = Lake City-Scranton CCD, SC +station = ('kcki', 0.0033773095213965824) +zone = ('scz032', 0.0027502356189696721) + +[fips4504192470] +centroid = (0.59222061883724575, -1.3939925537056939) +description = Olanta CCD, SC +station = ('kcki', 0.0037068300433682195) +zone = ('scz032', 0.0029101910788203369) + +[fips4504192548] +centroid = (0.59387168285633996, -1.3896345538299264) +description = Pamplico CCD, SC +station = ('kflo', 0.0031907809048100592) +zone = ('scz032', 0.0011953218022690154) + +[fips4504193068] +centroid = (0.59433147239448525, -1.3952870818651906) +description = Sardis CCD, SC +station = ('kflo', 0.0038040397477879274) +zone = ('scz032', 0.0035238273807194241) + +[fips4504193406] +centroid = (0.59510079607547184, -1.3948466829350348) +description = Timmonsville CCD, SC +station = ('kflo', 0.0030761938605738154) +zone = ('scz032', 0.0033685935893360028) + +[fips45043] +centroid = (0.58324592638398065, -1.3840602689050294) +description = Georgetown County, SC +station = ('kgge', 0.0018974807524799594) +zone = ('scz056', 0.0014116861752928042) + +[fips4504300] +centroid = (0.59189871031000785, -1.4229331321233658) +description = Batesburg-Leesville town, SC +station = ('kaik', 0.0051610373341231409) +zone = ('scz026', 0.0033028387525510451) + +[fips4504390078] +centroid = (0.58384371910608124, -1.3872678000977596) +description = Andrews CCD, SC +station = ('kgge', 0.0034463505098439482) +zone = ('scz055', 0.0015272624379783094) + +[fips4504391248] +centroid = (0.58325941777909862, -1.3849718892799312) +description = Georgetown CCD, SC +station = ('kgge', 0.0019506499469433129) +zone = ('scz055', 0.0013985030077433827) + +[fips4504392665] +centroid = (0.58561531556331814, -1.382875644128531) +description = Plantersville CCD, SC +station = ('kgge', 0.0044314561166362235) +zone = ('scz055', 0.0025418476934576163) + +[fips4504392678] +centroid = (0.58769400270244343, -1.3847176646210857) +description = Pleasant Hill-Folly Grove CCD, SC +station = ('khyw', 0.0041975352318333785) +zone = ('scz055', 0.0032440502563291038) + +[fips4504393014] +centroid = (0.58025762599859354, -1.3855445841673881) +description = Sampit-North Santee CCD, SC +station = ('kgge', 0.0014693315832318208) +zone = ('scz056', 0.0027777339340309543) + +[fips4504393538] +centroid = (0.5813624368683985, -1.3818175557228018) +description = Waccamaw Neck CCD, SC +station = ('kgge', 0.0021541509685796471) +zone = ('scz056', 0.0012790952429606148) + +[fips45045] +centroid = (0.60899153997953681, -1.4376639553562933) +description = Greenville County, SC +station = ('kgmu', 0.0008086489158669588) +zone = ('scz006', 0.0018987881938623068) + +[fips4504591209] +centroid = (0.60471853763834171, -1.4353849742322091) +description = Fountain Inn CCD, SC +station = ('kgyh', 0.0027897224999135144) +zone = ('scz006', 0.0027944619340933615) + +[fips4504591365] +centroid = (0.60816936772879981, -1.4375388501555102) +description = Greenville CCD, SC +station = ('kgmu', 0.00022730515210417772) +zone = ('scz006', 0.001088005221872187) + +[fips4504591391] +centroid = (0.60971546764667905, -1.4354960295325137) +description = Greer CCD, SC +station = ('kgsp', 0.0009925573431034773) +zone = ('scz006', 0.0028402142103754252) + +[fips4504591534] +centroid = (0.61258220584966472, -1.4362086649193953) +description = Highland CCD, SC +station = ('kgsp', 0.0038919253797359246) +zone = ('scz003', 0.0021420559037496865) + +[fips4504592652] +centroid = (0.60552702650774304, -1.4380813683002003) +description = Piedmont CCD, SC +station = ('kgyh', 0.0011720916597015535) +zone = ('scz006', 0.0018558932445816622) + +[fips4504593133] +centroid = (0.60627064148884779, -1.4353854280178147) +description = Simpsonville CCD, SC +station = ('kgyh', 0.0020268432195109528) +zone = ('scz006', 0.0016170682346469483) + +[fips4504593160] +centroid = (0.61223862033311716, -1.4414518085253114) +description = Slater-Marietta CCD, SC +station = ('klqk', 0.0049506116726957174) +zone = ('scz003', 0.0021737466918415878) + +[fips4504593380] +centroid = (0.60994251752907103, -1.4363678040405923) +description = Taylors CCD, SC +station = ('kgsp', 0.0016089092536415617) +zone = ('scz006', 0.002827338130535388) + +[fips4504593393] +centroid = (0.61269760701980669, -1.4385871821707208) +description = Tigerville CCD, SC +station = ('kgmu', 0.0045776976723779774) +zone = ('scz003', 0.00023269881812904499) + +[fips4504593432] +centroid = (0.61062663423597519, -1.4388890194115604) +description = Travelers Rest CCD, SC +station = ('kgmu', 0.0027212350642573974) +zone = ('scz003', 0.0019462039182216527) + +[fips4504593796] +centroid = (0.60371921446852739, -1.4370398430690725) +description = Woodville CCD, SC +station = ('kgyh', 0.0030229687704695814) +zone = ('scz006', 0.0034476962148942583) + +[fips4504690] +centroid = (0.56632897354317524, -1.4086637739446655) +description = Beaufort city, SC +station = ('knbc', 0.00061886762721453177) +zone = ('scz048', 0.0016162494576509809) + +[fips45047] +centroid = (0.59613109883950921, -1.4334018438696305) +description = Greenwood County, SC +station = ('kgrd', 0.0013904601222156129) +zone = ('scz019', 4.5034408091742795e-05) + +[fips4504791378] +centroid = (0.59671983330279188, -1.4337549065240165) +description = Greenwood CCD, SC +station = ('kgrd', 0.00076503637405173791) +zone = ('scz019', 0.00070117975852280936) + +[fips4504791781] +centroid = (0.59421591414471076, -1.4319683002352124) +description = Kirksey CCD, SC +station = ('kgrd', 0.0035987773855745077) +zone = ('scz019', 0.0022085828064572813) + +[fips4504792392] +centroid = (0.59630304867741557, -1.4309965183609945) +description = Ninety Six CCD, SC +station = ('kgrd', 0.0025934530465591878) +zone = ('scz019', 0.001972678183037241) + +[fips4504793471] +centroid = (0.59409117546307066, -1.4348277953218023) +description = Troy CCD, SC +station = ('kgrd', 0.0035006539236272795) +zone = ('scz019', 0.0023415764261242771) + +[fips4504793627] +centroid = (0.59875270554905224, -1.4352273360941687) +description = Ware Shoals-Hodges CCD, SC +station = ('kgrd', 0.0017388233257565073) +zone = ('scz019', 0.0030694527518648185) + +[fips45049] +centroid = (0.57208965963218528, -1.4162188330376511) +description = Hampton County, SC +station = ('kjyl', 0.0070463821093352981) +zone = ('scz042', 5.3753065583419987e-05) + +[fips4504990416] +centroid = (0.57514450942195094, -1.4164422177286138) +description = Brunson CCD, SC +station = ('kbnl', 0.0062044226425329758) +zone = ('scz042', 0.0030985666764818147) + +[fips4504991066] +centroid = (0.57221383980846463, -1.4173457048692011) +description = Estill CCD, SC +station = ('kjyl', 0.0062068021506256196) +zone = ('scz042', 0.0010007342947075688) + +[fips4504991222] +centroid = (0.56988892161846816, -1.4184651415981377) +description = Furman-Scotia CCD, SC +station = ('kjyl', 0.0047676493780894474) +zone = ('scz042', 0.0029010527185507093) + +[fips4504991430] +centroid = (0.57365567375682969, -1.4144496625880745) +description = Hampton-Varnville CCD, SC +station = ('krbw', 0.0062279355692023688) +zone = ('scz042', 0.0021577294219990617) + +[fips4504993809] +centroid = (0.57120359087753281, -1.4122302670046534) +description = Yemassee CCD, SC +station = ('knbc', 0.0051631040714206671) +zone = ('scz042', 0.0034213865339952887) + +[fips45051] +centroid = (0.59182839099444506, -1.3784030110274927) +description = Horry County, SC +station = ('khyw', 0.0024956063419746977) +zone = ('scz053', 0.0010283468669610935) + +[fips4505190117] +centroid = (0.59314066915243457, -1.3822492803665754) +description = Aynor CCD, SC +station = ('khyw', 0.002917686321933525) +zone = ('scz053', 0.0025914327567898273) + +[fips4505190715] +centroid = (0.59055662192839431, -1.3802255536455952) +description = Conway CCD, SC +station = ('khyw', 0.00057494047394459702) +zone = ('scz053', 0.0022406174432919061) + +[fips4505190728] +centroid = (0.5898835706089478, -1.3770532431971703) +description = Conway East CCD, SC +station = ('kmyr', 0.002058500773498687) +zone = ('scz054', 0.001187684091535212) + +[fips4505191146] +centroid = (0.59645845279401322, -1.3802813518217814) +description = Floyds Crossroads CCD, SC +station = ('kmao', 0.0035490346805593341) +zone = ('scz053', 0.0039393638584997448) + +[fips4505191963] +centroid = (0.59048677385172954, -1.3727978512281278) +description = Little River CCD, SC +station = ('kcre', 0.00092809125189201856) +zone = ('scz054', 0.0033866512494218452) + +[fips4505192028] +centroid = (0.59245946714538122, -1.3749111656996127) +description = Longs CCD, SC +station = ('kcre', 0.0024092817542170184) +zone = ('scz054', 0.0038104450778635758) + +[fips4505192041] +centroid = (0.59444788585559327, -1.3775509936465467) +description = Loris CCD, SC +station = ('kcpc', 0.0048294866994365322) +zone = ('scz053', 0.0022722517716245428) + +[fips4505192327] +centroid = (0.58746419519983328, -1.3776371780050101) +description = Myrtle Beach CCD, SC +station = ('kmyr', 0.00042094687530583574) +zone = ('scz054', 0.0017411417424198303) + +[fips45053] +centroid = (0.5660205738643479, -1.4140941564727356) +description = Jasper County, SC +station = ('knbc', 0.0045845190634424731) +zone = ('scz047', 0.00083071682730645143) + +[fips4505365] +centroid = (0.60256611033831975, -1.4397979868859991) +description = Belton city, SC +station = ('kand', 0.0032257535021308196) +zone = ('scz010', 0.002066417335392489) + +[fips4505391313] +centroid = (0.56807754910757824, -1.4153423985004696) +description = Grays-Tillman CCD, SC +station = ('knbc', 0.0056561191258325512) +zone = ('scz047', 0.0020443391406800493) + +[fips4505391443] +centroid = (0.5621999434119771, -1.4140032597252918) +description = Hardeeville CCD, SC +station = ('ksav', 0.003179151558267515) +zone = ('scz051', 0.0010385853660072081) + +[fips4505392834] +centroid = (0.56688163205081932, -1.4124231258869988) +description = Ridgeland CCD, SC +station = ('knbc', 0.0030808730424921153) +zone = ('scz047', 0.0009598083622672258) + +[fips4505410] +centroid = (0.5853269871708886, -1.4300496423352027) +description = Belvedere CDP, SC +station = ('kdnl', 0.0018738749839158997) +zone = ('gaz065', 0.0036853670420039114) + +[fips45055] +centroid = (0.59931737192194989, -1.4065762903461103) +description = Kershaw County, SC +station = ('kcdn', 0.0010620763452022959) +zone = ('scz022', 1.1451132758125232e-05) + +[fips4505590247] +centroid = (0.60085683958867153, -1.4029054615034382) +description = Bethune CCD, SC +station = ('kcdn', 0.0037408519815155853) +zone = ('scz022', 0.0033871672881581089) + +[fips4505590377] +centroid = (0.59651128391047104, -1.4058012245318847) +description = Boykin CCD, SC +station = ('kcdn', 0.0018195269371384119) +zone = ('scz022', 0.0028839740295979219) + +[fips4505590468] +centroid = (0.59814709375190278, -1.4066197664977775) +description = Camden CCD, SC +station = ('kcdn', 0.00036972419072473894) +zone = ('scz022', 0.0011788618799949465) + +[fips4505590472] +centroid = (0.60011158399807008, -1.406841493125951) +description = Camden Northeast CCD, SC +station = ('kcdn', 0.0018858285800436225) +zone = ('scz022', 0.00081866515917421482) + +[fips4505591027] +centroid = (0.59719122928046309, -1.4090815883143004) +description = Elgin CCD, SC +station = ('kcdn', 0.0026180552630473081) +zone = ('scz022', 0.0029789439016448915) + +[fips4505592288] +centroid = (0.60228158676365962, -1.4045697900248475) +description = Mount Pisgah CCD, SC +station = ('kcdn', 0.0042068825172337293) +zone = ('scz022', 0.0033841269782015132) + +[fips4505593692] +centroid = (0.60114490618171323, -1.4089069506693461) +description = Westville CCD, SC +station = ('kcdn', 0.0036124591906912971) +zone = ('scz022', 0.0026538750320313806) + +[fips4505680] +centroid = (0.60437591205288266, -1.390781339868242) +description = Bennettsville city, SC +station = ('kbbp', 0.00064928783736691075) +zone = ('scz017', 0.00046896035898716506) + +[fips45057] +centroid = (0.60539918114003455, -1.40854509155553) +description = Lancaster County, SC +station = ('klkr', 0.0021777642343763833) +zone = ('scz015', 2.4557271881629917e-05) + +[fips4505770] +centroid = (0.60874466315684228, -1.4393069210476581) +description = Berea CDP, SC +station = ('kgmu', 0.0017369696255868129) +zone = ('scz006', 0.0024497524079045122) + +[fips4505791482] +centroid = (0.60336943303313506, -1.4091522741490063) +description = Heath Springs CCD, SC +station = ('klkr', 0.0030611160272068184) +zone = ('scz015', 0.0020842920994338862) + +[fips4505791755] +centroid = (0.60367114810092737, -1.4061018574955408) +description = Kershaw CCD, SC +station = ('klkr', 0.0047136482366070005) +zone = ('scz015', 0.0026693338361644995) + +[fips4505791859] +centroid = (0.60611427744116153, -1.4096170204222274) +description = Lancaster CCD, SC +station = ('klkr', 0.0012253684772074757) +zone = ('scz015', 0.0011160942938278295) + +[fips4505793419] +centroid = (0.60613368550244373, -1.4060459196930142) +description = Tradesville CCD, SC +station = ('klkr', 0.0041557894177452976) +zone = ('scz015', 0.0022050706340616551) + +[fips4505793523] +centroid = (0.60943241014859051, -1.4109879940029613) +description = Van Wyck CCD, SC +station = ('klkr', 0.0034552893524100472) +zone = ('scz015', 0.0044939336181335915) + +[fips45059] +centroid = (0.60185021118573667, -1.4312687199111356) +description = Laurens County, SC +station = ('klux', 0.00085098641330290533) +zone = ('scz012', 5.3813620371242564e-06) + +[fips4505990663] +centroid = (0.60200418413234769, -1.4280534394565265) +description = Clinton CCD, SC +station = ('klux', 0.0018542055549272711) +zone = ('scz012', 0.0026594511101309909) + +[fips4505990819] +centroid = (0.59917319027244276, -1.4309799726396857) +description = Cross Hill CCD, SC +station = ('kgrd', 0.0028697352975377397) +zone = ('scz012', 0.002690180369526412) + +[fips4505991300] +centroid = (0.604523217841751, -1.4334815879631542) +description = Gray Court CCD, SC +station = ('klux', 0.0035442571697003535) +zone = ('scz012', 0.0032305669060190821) + +[fips4505991690] +centroid = (0.60032638166911301, -1.4283212602302451) +description = Joanna CCD, SC +station = ('klux', 0.0024371083943681635) +zone = ('scz012', 0.0028742923137225983) + +[fips4505991924] +centroid = (0.60236822490772857, -1.4314442825805935) +description = Laurens CCD, SC +station = ('klux', 0.00097266096945363637) +zone = ('scz012', 0.00053446249436987369) + +[fips4505992730] +centroid = (0.60104027369305624, -1.4344926921054195) +description = Princeton CCD, SC +station = ('kgrd', 0.0036031933285775742) +zone = ('scz012', 0.0027747814946096714) + +[fips4506040] +centroid = (0.60064041876142427, -1.4023502024552088) +description = Bethune town, SC +station = ('khvs', 0.0033031679726293691) +zone = ('scz022', 0.0037198522938196982) + +[fips45061] +centroid = (0.5961807360034358, -1.4006478257561061) +description = Lee County, SC +station = ('ksms', 0.0031842575214518555) +zone = ('scz029', 9.4201416916983807e-05) + +[fips4506190104] +centroid = (0.59594298725272921, -1.4028067107743605) +description = Ashwood CCD, SC +station = ('ksms', 0.0025401964378032999) +zone = ('scz029', 0.00176804059913914) + +[fips4506190260] +centroid = (0.59729971894676692, -1.4011800988180867) +description = Bishopville CCD, SC +station = ('khvs', 0.0038735534215231988) +zone = ('scz029', 0.0011094945337765106) + +[fips4506192054] +centroid = (0.59401879665899049, -1.3980279818291075) +description = Lynchburg CCD, SC +station = ('ksms', 0.0037941705788082673) +zone = ('scz029', 0.0031539259053755572) + +[fips4506192899] +centroid = (0.59470272137967706, -1.4004778132336693) +description = St. Charles CCD, SC +station = ('ksms', 0.0021459441780963279) +zone = ('scz029', 0.0015706751942605541) + +[fips4506193251] +centroid = (0.59787162843606045, -1.3993212358982503) +description = Stokes Bridge-Cypress Crossroads CCD, SC +station = ('khvs', 0.0026441764845636737) +zone = ('scz029', 0.0019750280574668188) + +[fips45063] +centroid = (0.59153665920997411, -1.4184788773393511) +description = Lexington County, SC +station = ('kcae', 0.0024742644269423598) +zone = ('scz027', 0.00016862002986742442) + +[fips4506310] +centroid = (0.59725289176293594, -1.400580822566122) +description = Bishopville city, SC +station = ('khvs', 0.0036378043676795163) +zone = ('scz029', 0.00099615580355980971) + +[fips4506390169] +centroid = (0.59171454316733751, -1.4222688423567642) +description = Batesburg-Leesville CCD, SC +station = ('kaik', 0.0052799175190558203) +zone = ('scz027', 0.0031550994601123117) + +[fips4506390546] +centroid = (0.59561022277754394, -1.4198985630595082) +description = Chapin CCD, SC +station = ('kcae', 0.0046078605218622202) +zone = ('scz027', 0.0040813947284792564) + +[fips4506391261] +centroid = (0.59192923611862536, -1.4206730529150808) +description = Gilbert CCD, SC +station = ('kcae', 0.0041275486935327685) +zone = ('scz027', 0.00184414893487114) + +[fips4506391625] +centroid = (0.59458023417277206, -1.4173011291601052) +description = Irmo CCD, SC +station = ('kcae', 0.0024109355714148615) +zone = ('scz027', 0.0030335163296075609) + +[fips4506391937] +centroid = (0.59297627659018914, -1.4181053245195467) +description = Lexington CCD, SC +station = ('kcae', 0.0019994376789494888) +zone = ('scz027', 0.0013062863895413289) + +[fips4506392613] +centroid = (0.58966468886745516, -1.418013223494919) +description = Pelion CCD, SC +station = ('kcae', 0.0034330227886637762) +zone = ('scz027', 0.0020749146735516608) + +[fips4506393354] +centroid = (0.58931663530802247, -1.4154439766629356) +description = Swansea CCD, SC +station = ('kcae', 0.0032328411359226219) +zone = ('scz027', 0.0034658242394104977) + +[fips4506393653] +centroid = (0.59210926683096854, -1.4153415258358437) +description = West Columbia-Cayce CCD, SC +station = ('kcae', 0.00054899983069683412) +zone = ('scz027', 0.0026254696930407503) + +[fips4506400] +centroid = (0.61299612813506765, -1.4227595416759624) +description = Blacksburg town, SC +station = ('keho', 0.0025195223076933853) +zone = ('scz008', 0.0019486224654482185) + +[fips4506490] +centroid = (0.58202822761815676, -1.418864298398069) +description = Blackville town, SC +station = ('kbnl', 0.0021987338024746879) +zone = ('scz035', 0.0024910504388668004) + +[fips45065] +centroid = (0.59162481579049242, -1.4366885781038161) +description = McCormick County, SC +station = ('kgrd', 0.0063330991415279031) +zone = ('scz018', 9.7574319128008034e-05) + +[fips4506592119] +centroid = (0.59208769456141386, -1.4354791871052317) +description = McCormick CCD, SC +station = ('kgrd', 0.0055755155561478271) +zone = ('scz018', 0.0010079447020615306) + +[fips4506592262] +centroid = (0.5930818341033498, -1.4389492507240467) +description = Mount Carmel CCD, SC +station = ('kgrd', 0.00613554851090755) +zone = ('scz018', 0.0024269686064332381) + +[fips4506592561] +centroid = (0.58912330518677902, -1.4346589347166718) +description = Parksville CCD, SC +station = ('kdnl', 0.0055731638320029135) +zone = ('scz018', 0.0029960798437537756) + +[fips45067] +centroid = (0.59482044383772392, -1.38513048734906) +description = Marion County, SC +station = ('kmao', 0.0017941852256895161) +zone = ('scz033', 1.1767814093405878e-05) + +[fips4506790403] +centroid = (0.59071150244621629, -1.3840223254470911) +description = Brittons Neck CCD, SC +station = ('khyw', 0.0026034089443453495) +zone = ('scz033', 0.0042014186364594218) + +[fips4506790520] +centroid = (0.59363204915004109, -1.3857104777127902) +description = Centenary CCD, SC +station = ('kmao', 0.0030704255996980472) +zone = ('scz033', 0.0012701610074351524) + +[fips4506792171] +centroid = (0.59633610521344838, -1.3863249557825399) +description = Marion CCD, SC +station = ('kmao', 0.0014683806536388132) +zone = ('scz033', 0.0018155915411813674) + +[fips4506792314] +centroid = (0.59685383968275996, -1.383057420170126) +description = Mullins CCD, SC +station = ('kmao', 0.0012864829596367022) +zone = ('scz033', 0.0026720578019433913) + +[fips4506850] +centroid = (0.6023089011664533, -1.3901981380986881) +description = Blenheim town, SC +station = ('kbbp', 0.002223344204607867) +zone = ('scz017', 0.001653106784323782) + +[fips45069] +centroid = (0.60391542438303647, -1.3906424291130757) +description = Marlboro County, SC +station = ('kbbp', 0.0008124258777188816) +zone = ('scz017', 1.0046908339349519e-05) + +[fips4506990234] +centroid = (0.60436929725501753, -1.3916745295662425) +description = Bennettsville CCD, SC +station = ('kbbp', 0.00017003404196116683) +zone = ('scz017', 0.00095312536398094432) + +[fips4506990299] +centroid = (0.60130751850812147, -1.3901795852487393) +description = Blenheim CCD, SC +station = ('kbbp', 0.0031360281461628014) +zone = ('scz017', 0.0026403870663619091) + +[fips4506990676] +centroid = (0.60321514592725878, -1.3884574688757965) +description = Clio CCD, SC +station = ('kbbp', 0.0027425577585849822) +zone = ('scz017', 0.0019404546424248428) + +[fips4506992093] +centroid = (0.60537497342330937, -1.3890057291537254) +description = McColl CCD, SC +station = ('kbbp', 0.002384966542907571) +zone = ('scz017', 0.0019897242907648723) + +[fips4506993588] +centroid = (0.60625444483338931, -1.3930052209478407) +description = Wallace CCD, SC +station = ('kcqw', 0.0018379933755261308) +zone = ('scz017', 0.0030322990790733685) + +[fips45071] +centroid = (0.59846868811987519, -1.4241895946518766) +description = Newberry County, SC +station = ('keoe', 0.00067593746265018242) +zone = ('scz020', 1.397058365742926e-06) + +[fips4507190559] +centroid = (0.59764929094264885, -1.4282509583679748) +description = Chappells CCD, SC +station = ('keoe', 0.0030173183041584911) +zone = ('scz020', 0.0034546333359877441) + +[fips4507192366] +centroid = (0.5981921232466042, -1.4251851130039217) +description = Newberry CCD, SC +station = ('keoe', 0.00067681177645900466) +zone = ('scz020', 0.00086757036807780068) + +[fips4507192704] +centroid = (0.59913266372721141, -1.4217347541523615) +description = Pomaria CCD, SC +station = ('keoe', 0.0026217303878389845) +zone = ('scz020', 0.0021339326089975493) + +[fips4507192756] +centroid = (0.5962728021214786, -1.4224000213033441) +description = Prosperity CCD, SC +station = ('keoe', 0.0032752655110170788) +zone = ('scz020', 0.0026492736421804448) + +[fips4507193705] +centroid = (0.60112340372532869, -1.4247588337874144) +description = Whitmire CCD, SC +station = ('keoe', 0.0023033601409116512) +zone = ('scz020', 0.0026946575914817729) + +[fips4507210] +centroid = (0.56213609926793917, -1.4125575336926948) +description = Bluffton town, SC +station = ('khxd', 0.0034526097147809668) +zone = ('scz051', 0.00068435747161585782) + +[fips4507255] +centroid = (0.59706675239821072, -1.4136417147707414) +description = Blythewood town, SC +station = ('kfdw', 0.0026344317518740886) +zone = ('scz028', 0.0035371902783789115) + +[fips45073] +centroid = (0.60648025553201224, -1.4496970406177054) +description = Oconee County, SC +station = ('kceu', 0.0029307208680262255) +zone = ('scz001', 0.0013257086388384226) + +[fips4507345] +centroid = (0.61165081089433793, -1.430784792469435) +description = Boiling Springs CDP, SC +station = ('kspa', 0.0022753431540537177) +zone = ('scz007', 0.0019929962986495026) + +[fips4507392015] +centroid = (0.60651514466375955, -1.4522256736379948) +description = Long Creek CCD, SC +station = ('ktoc', 0.0030441878648902166) +zone = ('scz001', 0.0018298601468172259) + +[fips4507392249] +centroid = (0.60909868574231674, -1.4502204299537935) +description = Mountain Rest CCD, SC +station = ('kceu', 0.0050316507624437595) +zone = ('scz001', 0.0014698453528983618) + +[fips4507392457] +centroid = (0.60325612625809566, -1.448682567989984) +description = Oakway CCD, SC +station = ('kceu', 0.0024865762570902943) +zone = ('scz004', 0.001149709442985063) + +[fips4507392964] +centroid = (0.60999665764246791, -1.4483253863585632) +description = Salem CCD, SC +station = ('klqk', 0.0047329470464894524) +zone = ('scz001', 0.0029389843825196414) + +[fips4507393081] +centroid = (0.6052182254031877, -1.4472637374811601) +description = Seneca CCD, SC +station = ('kceu', 0.00058212216796840429) +zone = ('scz004', 0.0012338487408937535) + +[fips4507393575] +centroid = (0.60693880588638882, -1.4489191822766767) +description = Walhalla CCD, SC +station = ('kceu', 0.002692855206851925) +zone = ('scz001', 0.0014565642090864489) + +[fips4507393666] +centroid = (0.6046991470303521, -1.4511861904420922) +description = Westminster CCD, SC +station = ('ktoc', 0.00234464740482209) +zone = ('gaz018', 0.0026565512180603658) + +[fips45075] +centroid = (0.58357064489131427, -1.4102768770525289) +description = Orangeburg County, SC +station = ('kogb', 0.00086840743319890976) +zone = ('scz036', 6.2838799239452937e-05) + +[fips4507525] +centroid = (0.58143012073679079, -1.3954598171012604) +description = Bonneau town, SC +station = ('kmks', 0.0026468147738313561) +zone = ('scz045', 0.0015968405442802736) + +[fips4507535] +centroid = (0.58158343045828609, -1.3960857968907807) +description = Bonneau Beach CDP, SC +station = ('kmks', 0.0025889286735198457) +zone = ('scz045', 0.0018257162363568182) + +[fips4507590364] +centroid = (0.58193750540363809, -1.4078586361074279) +description = Bowman CCD, SC +station = ('kogb', 0.0034652068376375524) +zone = ('scz036', 0.0025994861787375658) + +[fips4507590390] +centroid = (0.58073687595789869, -1.410251779217885) +description = Branchville CCD, SC +station = ('kogb', 0.0034401415377100586) +zone = ('scz036', 0.0028838234892188215) + +[fips4507590741] +centroid = (0.58238242473655644, -1.4130922851222134) +description = Cope CCD, SC +station = ('kogb', 0.0023939712347061911) +zone = ('scz036', 0.0026903005649610771) + +[fips4507591040] +centroid = (0.58415559199012013, -1.4063021689337922) +description = Elloree CCD, SC +station = ('kogb', 0.0040015677046614786) +zone = ('scz036', 0.0033215104916440052) + +[fips4507591079] +centroid = (0.58273334063596238, -1.4015114670298703) +description = Eutawville CCD, SC +station = ('kmni', 0.0036193308220336695) +zone = ('scz038', 0.0049985017595275153) + +[fips4507591547] +centroid = (0.58149735081957765, -1.4030775335143926) +description = Holly Hill CCD, SC +station = ('kdyb', 0.0046083746778521357) +zone = ('scz044', 0.0041567684485467578) + +[fips4507592340] +centroid = (0.58537831730418977, -1.4152659705325248) +description = Neeses CCD, SC +station = ('kogb', 0.0037013536962450973) +zone = ('scz036', 0.0045519197746652492) + +[fips4507592405] +centroid = (0.5869860447979568, -1.4147016532254773) +description = North CCD, SC +station = ('kogb', 0.0041623753741383924) +zone = ('scz037', 0.004083003542074571) + +[fips4507592444] +centroid = (0.58362300476887408, -1.4157312578578138) +description = Norway CCD, SC +station = ('kogb', 0.0038948783842250893) +zone = ('scz041', 0.0040175999118031783) + +[fips4507592496] +centroid = (0.58450757254036989, -1.4103361833405115) +description = Orangeburg CCD, SC +station = ('kogb', 0.00075350317159867373) +zone = ('scz036', 0.00089123169522618362) + +[fips4507592509] +centroid = (0.58392248581522377, -1.4123727033249087) +description = Orangeburg West CCD, SC +station = ('kogb', 0.0010781536057896223) +zone = ('scz036', 0.0018121035964009096) + +[fips4507593035] +centroid = (0.58361223608738932, -1.4045000117613529) +description = Santee-Vance CCD, SC +station = ('kmni', 0.0044928945175056649) +zone = ('scz038', 0.0054359097889856295) + +[fips4507593211] +centroid = (0.58554717790932032, -1.4178847847152647) +description = Springfield CCD, SC +station = ('kbnl', 0.0056705856985782375) +zone = ('scz035', 0.005710973762300303) + +[fips45077] +centroid = (0.60889933423515408, -1.4438300465239564) +description = Pickens County, SC +station = ('klqk', 0.0013982574537266465) +zone = ('scz005', 0.0014025539210325802) + +[fips4507790533] +centroid = (0.60617237945196045, -1.4447934159111797) +description = Central CCD, SC +station = ('klqk', 0.0017970906081160275) +zone = ('scz005', 0.0019179473334212855) + +[fips4507790650] +centroid = (0.60574688563361678, -1.4459552292343549) +description = Clemson CCD, SC +station = ('kceu', 0.00087126296912284527) +zone = ('scz004', 0.002406068082261569) + +[fips4507790936] +centroid = (0.60780928885082097, -1.441628697645001) +description = Easley CCD, SC +station = ('klqk', 0.0014670175121926068) +zone = ('scz005', 0.0013245912696048853) + +[fips4507790949] +centroid = (0.60888399279102889, -1.4406202987630761) +description = Easley East CCD, SC +station = ('klqk', 0.0026340765681507929) +zone = ('scz005', 0.0024954149019698422) + +[fips4507791950] +centroid = (0.60699816453424904, -1.4432761488325434) +description = Liberty CCD, SC +station = ('klqk', 0.00055845697528926713) +zone = ('scz005', 0.00059290300332315185) + +[fips4507792435] +centroid = (0.61148633106563011, -1.4448061568147192) +description = North Pickens CCD, SC +station = ('klqk', 0.0041054958387594246) +zone = ('scz002', 0.0011702996440436969) + +[fips4507792639] +centroid = (0.60974508588408538, -1.4427912614597547) +description = Pickens CCD, SC +station = ('klqk', 0.0022497590267007797) +zone = ('scz002', 0.0015222603311671483) + +[fips4507793146] +centroid = (0.60841175905531686, -1.4456043482415339) +description = Six Mile CCD, SC +station = ('klqk', 0.0020138798000572619) +zone = ('scz002', 0.0021336875413216524) + +[fips4507840] +centroid = (0.58203629103930088, -1.4082085746224531) +description = Bowman town, SC +station = ('kogb', 0.0031771247233491743) +zone = ('scz036', 0.002315626438495495) + +[fips45079] +centroid = (0.59393175708919355, -1.4119114302568991) +description = Richland County, SC +station = ('kcub', 0.0018583580610657541) +zone = ('scz028', 0.00016836196598623928) + +[fips4507990325] +centroid = (0.59692016219433575, -1.4125834692853794) +description = Blythewood CCD, SC +station = ('kfdw', 0.0033807175822605845) +zone = ('scz028', 0.0031616709712874139) + +[fips4507990494] +centroid = (0.5963475894799265, -1.4149665942059302) +description = Camp Ground CCD, SC +station = ('kfdw', 0.0027398385051976329) +zone = ('scz028', 0.0035299937001611052) + +[fips4507990702] +centroid = (0.5936760139938988, -1.4135503642376919) +description = Columbia CCD, SC +station = ('kcub', 0.00085701345480415224) +zone = ('scz028', 0.0012692694614990817) + +[fips4507990923] +centroid = (0.595745032008968, -1.4172410025673741) +description = Dutch Fork CCD, SC +station = ('kcae', 0.0034347213754901606) +zone = ('scz027', 0.0041659551758170873) + +[fips4507990962] +centroid = (0.59187027889649302, -1.4080493307815012) +description = Eastover CCD, SC +station = ('kmmt', 0.0018084960994700962) +zone = ('scz028', 0.0038169620115200043) + +[fips4507991175] +centroid = (0.59410016390871845, -1.4106640608937913) +description = Fort Jackson CCD, SC +station = ('kmmt', 0.002173229629738082) +zone = ('scz028', 0.0011694678800566569) + +[fips4507991573] +centroid = (0.59093963443274455, -1.4111752503784081) +description = Hopkins CCD, SC +station = ('kmmt', 0.0012872314243081665) +zone = ('scz028', 0.0029387006129754098) + +[fips4507991586] +centroid = (0.59259291501998868, -1.4103803401705872) +description = Horrell Hill CCD, SC +station = ('kmmt', 0.00064817903407829122) +zone = ('scz028', 0.0018164617432806847) + +[fips4507992717] +centroid = (0.59549419328887132, -1.4115243511353917) +description = Pontiac CCD, SC +station = ('kcub', 0.0032244545315388267) +zone = ('scz028', 0.0017516608516217175) + +[fips45081] +centroid = (0.59350406415599222, -1.4264209981005511) +description = Saluda County, SC +station = ('keoe', 0.0054678266834192269) +zone = ('scz026', 2.0406360907818212e-05) + +[fips4508110] +centroid = (0.59551522450635785, -1.4064637689692343) +description = Boykin CDP, SC +station = ('kcdn', 0.0027914343831451985) +zone = ('scz022', 0.0038108356185955032) + +[fips4508155] +centroid = (0.59396832173702274, -1.4354596743241943) +description = Bradley CDP, SC +station = ('kgrd', 0.0037785411407990654) +zone = ('scz018', 0.0024882677541220939) + +[fips4508190156] +centroid = (0.59342156244225053, -1.4240096162994109) +description = Batesburg-Leesville CCD, SC +station = ('keoe', 0.0054494653408425596) +zone = ('scz026', 0.0019868971887762425) + +[fips4508192440] +centroid = (0.59545595312496025, -1.4267424179355985) +description = North Saluda CCD, SC +station = ('keoe', 0.0036997417197696322) +zone = ('scz026', 0.0019577810507440891) + +[fips4508192847] +centroid = (0.59148634136763922, -1.4256767198943308) +description = Ridge Spring CCD, SC +station = ('kaik', 0.0041836135717271813) +zone = ('scz026', 0.0021196187098470108) + +[fips4508192990] +centroid = (0.593245580893772, -1.427883933079573) +description = Saluda CCD, SC +station = ('keoe', 0.0061035774527149452) +zone = ('scz026', 0.001257323583177461) + +[fips4508245] +centroid = (0.58034983174297639, -1.4105074874065948) +description = Branchville town, SC +station = ('kogb', 0.0037860322982751927) +zone = ('scz036', 0.0032789457265885859) + +[fips45083] +centroid = (0.60970003893609137, -1.4310138320271741) +description = Spartanburg County, SC +station = ('kspa', 0.00065481292678597517) +zone = ('scz007', 3.4216791190504448e-05) + +[fips4508390338] +centroid = (0.61202322925012853, -1.4303544640890633) +description = Boiling Springs CCD, SC +station = ('kspa', 0.0026128514880370377) +zone = ('scz007', 0.0024170053821496369) + +[fips4508390598] +centroid = (0.6135017151127854, -1.4298320870439414) +description = Chesnee CCD, SC +station = ('kspa', 0.0041086159254233225) +zone = ('ncz510', 0.003746761205559189) + +[fips4508390793] +centroid = (0.61066881884399593, -1.4276307381649862) +description = Cowpens CCD, SC +station = ('kspa', 0.0025217970987942233) +zone = ('scz008', 0.002732077845018104) + +[fips4508391053] +centroid = (0.6052617190081474, -1.4297086399059478) +description = Enoree CCD, SC +station = ('klux', 0.0031605040147881453) +zone = ('scz012', 0.003645028348929661) + +[fips4508391105] +centroid = (0.60879777352598041, -1.4319168653821561) +description = Fairmont Mills CCD, SC +station = ('kspa', 0.0014629222253387936) +zone = ('scz007', 0.0011445991292968198) + +[fips4508391118] +centroid = (0.61344288006370074, -1.4318587808246499) +description = Fingerville CCD, SC +station = ('kspa', 0.0042299439339816697) +zone = ('ncz510', 0.0026495845410514749) + +[fips4508391287] +centroid = (0.61211923981228078, -1.4340765008919889) +description = Gramling CCD, SC +station = ('kgsp', 0.0033674325484922235) +zone = ('scz007', 0.0035123424101893247) + +[fips4508391404] +centroid = (0.60967298633268552, -1.4344652555295783) +description = Greer CCD, SC +station = ('kgsp', 0.00093343855079457171) +zone = ('scz006', 0.0032692763719563123) + +[fips4508391612] +centroid = (0.61157832737050266, -1.4324713739388073) +description = Inman CCD, SC +station = ('kspa', 0.0028055944440976495) +zone = ('scz007', 0.0022570600551642013) + +[fips4508391872] +centroid = (0.61338753567311999, -1.4339478526728244) +description = Landrum CCD, SC +station = ('kgsp', 0.0046320388731502385) +zone = ('ncz510', 0.0023469078764063161) + +[fips4508392184] +centroid = (0.61228728011266276, -1.4284381623835438) +description = Mayo CCD, SC +station = ('kspa', 0.0032547706315838704) +zone = ('scz008', 0.003239286378303972) + +[fips4508392522] +centroid = (0.60889289397021407, -1.4274431850835667) +description = Pacolet CCD, SC +station = ('kspa', 0.002397382580710772) +zone = ('scz007', 0.0030236523278198832) + +[fips4508392587] +centroid = (0.60743009861753261, -1.4291568715162224) +description = Pauline CCD, SC +station = ('kspa', 0.0021906358265191979) +zone = ('scz007', 0.0027029803678460629) + +[fips4508392795] +centroid = (0.6082642787335234, -1.43353710688666) +description = Reidville CCD, SC +station = ('kgsp', 0.0012906249432066245) +zone = ('scz007', 0.0025039849810246555) + +[fips4508393198] +centroid = (0.61005437568083132, -1.4299940361452341) +description = Spartanburg CCD, SC +station = ('kspa', 0.0006899363987388084) +zone = ('scz007', 0.00091710721977805482) + +[fips4508393640] +centroid = (0.61026980167040501, -1.4333724001651493) +description = Wellford CCD, SC +station = ('kgsp', 0.0019370603471354478) +zone = ('scz007', 0.0020300989237161779) + +[fips4508393783] +centroid = (0.60675175895045252, -1.431948979440393) +description = Woodruff CCD, SC +station = ('kspa', 0.002984645294911941) +zone = ('scz007', 0.0030150810688487932) + +[fips45085] +centroid = (0.59194667195785278, -1.4029387972921514) +description = Sumter County, SC +station = ('ksms', 0.001500952585902554) +zone = ('scz031', 3.6647769336694382e-06) + +[fips4508592743] +centroid = (0.59002731592614199, -1.4030883545557549) +description = Privateer CCD, SC +station = ('kssc', 0.0031054938885252776) +zone = ('scz031', 0.0019262142329505611) + +[fips4508592808] +centroid = (0.59496678969550376, -1.4056676370309369) +description = Rembert CCD, SC +station = ('kssc', 0.0022824062184257882) +zone = ('scz031', 0.0037727801924510216) + +[fips4508593095] +centroid = (0.59265993566326525, -1.4053387646399838) +description = Shaw AFB-Horatio CCD, SC +station = ('kssc', 0.00055713947286599832) +zone = ('scz031', 0.0021164856947239567) + +[fips4508593120] +centroid = (0.59261202637529808, -1.3972627596718632) +description = Shiloh CCD, SC +station = ('kcki', 0.0050726266106135513) +zone = ('scz029', 0.0046321307550475635) + +[fips4508593289] +centroid = (0.59208975404993125, -1.4023879888335147) +description = Sumter CCD, SC +station = ('ksms', 0.0013287189650149523) +zone = ('scz031', 0.00047576458664694673) + +[fips4508593302] +centroid = (0.59396273668341637, -1.4032851927887948) +description = Sumter North CCD, SC +station = ('ksms', 0.00082351800553248677) +zone = ('scz031', 0.0020341197499770766) + +[fips4508593315] +centroid = (0.59336216888780524, -1.4012169078120114) +description = Sumter Northeast CCD, SC +station = ('ksms', 0.0011034956495621585) +zone = ('scz031', 0.002007184143316864) + +[fips4508593328] +centroid = (0.59103796628280192, -1.4007237301252753) +description = Sumter Southeast CCD, SC +station = ('ksms', 0.0028148191258463547) +zone = ('scz031', 0.0020499922531225672) + +[fips4508593341] +centroid = (0.58964695632225483, -1.4055420431379635) +description = Sumter Southwest CCD, SC +station = ('kssc', 0.0032592285007082698) +zone = ('scz031', 0.003160067491567459) + +[fips45087] +centroid = (0.60546368850918819, -1.4244649727012562) +description = Union County, SC +station = ('klux', 0.005840093177652053) +zone = ('scz013', 5.6118307223434112e-05) + +[fips4508790507] +centroid = (0.60403756252409113, -1.4223446943660558) +description = Carlisle CCD, SC +station = ('kdcm', 0.0053919680677388991) +zone = ('scz013', 0.0022787576815785329) + +[fips4508790832] +centroid = (0.60330485585081139, -1.4255522430120786) +description = Cross Keys CCD, SC +station = ('keoe', 0.0045158620189176216) +zone = ('scz013', 0.0022963906321259186) + +[fips4508791742] +centroid = (0.60810397024172769, -1.4257639689036379) +description = Jonesville CCD, SC +station = ('kspa', 0.0039419008288337221) +zone = ('scz013', 0.0028504136177948569) + +[fips4508791989] +centroid = (0.60757243021803276, -1.4229084182611575) +description = Lockhart CCD, SC +station = ('kdcm', 0.0048390511312103313) +zone = ('scz013', 0.0025126168969436687) + +[fips4508793497] +centroid = (0.60579346847135251, -1.4244640302234599) +description = Union CCD, SC +station = ('kspa', 0.006001820927272492) +zone = ('scz013', 0.00035652426940350736) + +[fips4508793679] +centroid = (0.60617246671842306, -1.4268959021900187) +description = West Springs CCD, SC +station = ('kspa', 0.0042759208949743705) +zone = ('scz013', 0.0020800695144308494) + +[fips4508830] +centroid = (0.58974647499620358, -1.374429280293137) +description = Briarcliffe Acres town, SC +station = ('kcre', 0.00066085338034887922) +zone = ('scz054', 0.001842206239707633) + +[fips45089] +centroid = (0.58689249515005004, -1.3913149568337468) +description = Williamsburg County, SC +station = ('kcki', 0.0025350629483674122) +zone = ('scz039', 0.00019933454295208852) + +[fips4508990442] +centroid = (0.58990074464878739, -1.3926838011127933) +description = Cades CCD, SC +station = ('kcki', 0.0015911449396219894) +zone = ('scz039', 0.0032716778887376822) + +[fips4508991339] +centroid = (0.58658196616953517, -1.3963638627472086) +description = Greeleyville CCD, SC +station = ('kcki', 0.0029823955891567239) +zone = ('scz038', 0.0032191636491221594) + +[fips4508991495] +centroid = (0.58873882660585719, -1.3862599073613178) +description = Hemingway CCD, SC +station = ('khyw', 0.004766983628547352) +zone = ('scz055', 0.0042283220246148176) + +[fips4508991601] +centroid = (0.58902069728005424, -1.389378252229271) +description = Indiantown CCD, SC +station = ('kcki', 0.003583113176103847) +zone = ('scz039', 0.0028598960060444403) + +[fips4508991768] +centroid = (0.58785830799822614, -1.3929147081728321) +description = Kingstree CCD, SC +station = ('kcki', 0.00090224990212216857) +zone = ('scz039', 0.0015914750812999221) + +[fips4508991898] +centroid = (0.58472577360345412, -1.3932000171456558) +description = Lane CCD, SC +station = ('kcki', 0.003817314303232483) +zone = ('scz039', 0.0024885035465008801) + +[fips4508992353] +centroid = (0.58657941798882729, -1.3889399302409253) +description = Nesmith CCD, SC +station = ('kcki', 0.00437302054161408) +zone = ('scz039', 0.0021502220629331797) + +[fips4508993458] +centroid = (0.58370145731875123, -1.3905290350715738) +description = Trio CCD, SC +station = ('kcki', 0.0054778850376108719) +zone = ('scz039', 0.0031834951337348797) + +[fips45091] +centroid = (0.61034495554799584, -1.4169139453188428) +description = York County, SC +station = ('kuza', 0.0019184940428406223) +zone = ('scz009', 8.0916587335387095e-05) + +[fips4509190689] +centroid = (0.61273473017299662, -1.4175995804621961) +description = Clover CCD, SC +station = ('kakh', 0.0019229486538444966) +zone = ('scz009', 0.0023739083343704216) + +[fips4509191183] +centroid = (0.61128759042370551, -1.4128203628247527) +description = Fort Mill CCD, SC +station = ('kuza', 0.0016150359977199617) +zone = ('scz009', 0.0034809415517502952) + +[fips4509191521] +centroid = (0.60974611562834402, -1.4208936276259478) +description = Hickory Grove CCD, SC +station = ('kdcm', 0.0040642212064059173) +zone = ('scz008', 0.0035762624495527359) + +[fips4509192106] +centroid = (0.60888538905443057, -1.4181180828763786) +description = McConnells CCD, SC +station = ('kdcm', 0.00190625598321841) +zone = ('scz009', 0.0018177456323457512) + +[fips4509192886] +centroid = (0.60928522653276995, -1.4142452147194959) +description = Rock Hill CCD, SC +station = ('kuza', 0.0013196266450841347) +zone = ('scz009', 0.0024827900494069923) + +[fips4509193822] +centroid = (0.61093625564527898, -1.4176208211191932) +description = York CCD, SC +station = ('kuza', 0.0025096508917658582) +zone = ('scz009', 0.00075944495957852966) + +[fips4509527] +centroid = (0.58502535936955891, -1.410903083734852) +description = Brookdale CDP, SC +station = ('kogb', 0.00093615985492039879) +zone = ('scz036', 0.0015123502250216857) + +[fips4509865] +centroid = (0.57463667096949811, -1.417009153029539) +description = Brunson town, SC +station = ('kbnl', 0.0064025314742839077) +zone = ('scz042', 0.0026766780865008846) + +[fips4510000] +centroid = (0.58762684243282659, -1.3807309311838027) +description = Bucksport CDP, SC +station = ('khyw', 0.0028217367066217824) +zone = ('scz054', 0.0038335878759972685) + +[fips4510090] +centroid = (0.60605570419146471, -1.4256606977717976) +description = Buffalo CDP, SC +station = ('kspa', 0.0050739897017759586) +zone = ('scz013', 0.0011164035428989636) + +[fips4510270] +centroid = (0.58505263886576775, -1.428808154731674) +description = Burnettown town, SC +station = ('kdnl', 0.0026319000848888043) +zone = ('scz030', 0.0033691212816976627) + +[fips4510360] +centroid = (0.56591721546604468, -1.4091905841260877) +description = Burton CDP, SC +station = ('knbc', 0.0010832254575359412) +zone = ('scz048', 0.0013749673609831255) + +[fips4510720] +centroid = (0.5950350146159642, -1.4415777689374278) +description = Calhoun Falls town, SC +station = ('kiiy', 0.0063284779257230918) +zone = ('scz011', 0.0030112074528964817) + +[fips4510855] +centroid = (0.59787473512212908, -1.4068879537906391) +description = Camden city, SC +station = ('kcdn', 0.00070153191121029974) +zone = ('scz022', 0.0014745598459097061) + +[fips4510900] +centroid = (0.58569678753280119, -1.4087430991591687) +description = Cameron town, SC +station = ('kogb', 0.0025290068396562602) +zone = ('scz037', 0.0022501456602197624) + +[fips4511125] +centroid = (0.61306939705706642, -1.4337735990003053) +description = Campobello town, SC +station = ('kgsp', 0.0043487612620916527) +zone = ('ncz510', 0.0026479629997020245) + +[fips4511350] +centroid = (0.59154655522683308, -1.4039752087085708) +description = Cane Savannah CDP, SC +station = ('kssc', 0.0014172078991803515) +zone = ('scz031', 0.00095208509207381491) + +[fips4511755] +centroid = (0.60374501043487183, -1.4218239753837234) +description = Carlisle town, SC +station = ('kdcm', 0.0052398927009343656) +zone = ('scz013', 0.0027968023789802727) + +[fips4512430] +centroid = (0.60806602678378918, -1.4119689737623373) +description = Catawba CDP, SC +station = ('klkr', 0.0022066882020287102) +zone = ('scz015', 0.0038584982518080945) + +[fips4512655] +centroid = (0.5925079523920016, -1.4143840033016144) +description = Cayce city, SC +station = ('kcub', 0.00064045886029858617) +zone = ('scz028', 0.0023397589414663931) + +[fips4512965] +centroid = (0.60263213614392264, -1.4436793373430468) +description = Centerville CDP, SC +station = ('kand', 0.00049354512764083873) +zone = ('scz010', 0.0011448510424263169) + +[fips4513015] +centroid = (0.60604346943340826, -1.444777515961694) +description = Central town, SC +station = ('kceu', 0.0017904010246541501) +zone = ('scz005', 0.0020067360220913611) + +[fips4513060] +centroid = (0.60928718130153214, -1.4268520944257936) +description = Central Pacolet town, SC +station = ('kspa', 0.002827860908549527) +zone = ('scz008', 0.0030703956631462095) + +[fips4513150] +centroid = (0.5962743554645128, -1.4196313182444429) +description = Chapin town, SC +station = ('kfdw', 0.0041696676100543267) +zone = ('scz020', 0.0043623210086615946) + +[fips4513330] +centroid = (0.57278079256268255, -1.3955465425117921) +description = Charleston city, SC +station = ('kchs', 0.0018005921993662489) +zone = ('scz050', 0.00046207840759265553) + +[fips4513600] +centroid = (0.60555872168695934, -1.3945842901352901) +description = Cheraw town, SC +station = ('kcqw', 0.00066776718463483638) +zone = ('scz016', 0.0037871658551531348) + +[fips4514018] +centroid = (0.5925307638453251, -1.404280047915724) +description = Cherryvale CDP, SC +station = ('kssc', 0.00045879266740754765) +zone = ('scz031', 0.0012577600852445754) + +[fips4514050] +centroid = (0.61340952682169514, -1.4287728641741986) +description = Chesnee city, SC +station = ('kspa', 0.0041890394929248384) +zone = ('scz008', 0.0038558629400754097) + +[fips4514095] +centroid = (0.605716447091462, -1.4174414885385507) +description = Chester city, SC +station = ('kdcm', 0.0015211258993161954) +zone = ('scz014', 0.00080572246514658882) + +[fips4514140] +centroid = (0.60620463313653739, -1.3976261546754207) +description = Chesterfield town, SC +station = ('kcqw', 0.0019935797541763391) +zone = ('scz016', 0.0019962851990496097) + +[fips4514455] +centroid = (0.60846286229581525, -1.4385753313850995) +description = City View CDP, SC +station = ('kgmu', 0.0010856782697499356) +zone = ('scz006', 0.001817056014381745) + +[fips4514590] +centroid = (0.58744599141573495, -1.4340671459271981) +description = Clarks Hill CDP, SC +station = ('kdnl', 0.0038593472360468777) +zone = ('gaz064', 0.0024468164828595463) + +[fips4514860] +centroid = (0.58473341814557789, -1.4296189474356877) +description = Clearwater CDP, SC +station = ('kdnl', 0.0018870703673893351) +zone = ('gaz065', 0.0034403451545538823) + +[fips4514950] +centroid = (0.6053469608888149, -1.4453491636515996) +description = Clemson city, SC +station = ('kceu', 0.0010611726066779633) +zone = ('scz004', 0.002659247176130977) + +[fips4515220] +centroid = (0.61062178222065466, -1.4280352880323059) +description = Clifton CDP, SC +station = ('kspa', 0.0022144947006075655) +zone = ('scz007', 0.0026167807724236567) + +[fips4515295] +centroid = (0.60177659319788757, -1.4287589888066452) +description = Clinton city, SC +station = ('klux', 0.0013186017769797013) +zone = ('scz012', 0.0020751138872118408) + +[fips4515310] +centroid = (0.60351820489857511, -1.3883406365356681) +description = Clio town, SC +station = ('kbbp', 0.0027375547288028728) +zone = ('scz017', 0.0019460429941421786) + +[fips4515355] +centroid = (0.61284751334926046, -1.4175531547040932) +description = Clover town, SC +station = ('kakh', 0.0018076561898753762) +zone = ('scz009', 0.0024758093288366817) + +[fips4515625] +centroid = (0.59847360994836585, -1.4348131171027931) +description = Cokesbury CDP, SC +station = ('kgrd', 0.0013024618357869537) +zone = ('scz019', 0.0026609926662212111) + +[fips4516000] +centroid = (0.59393175708919355, -1.4119114302568991) +description = Columbia city, SC +station = ('kcub', 0.0018583580610657541) +zone = ('scz028', 0.00016836196598623928) + +[fips4516360] +centroid = (0.61078957817494139, -1.4284308494539777) +description = Converse CDP, SC +station = ('kspa', 0.00205940545498246) +zone = ('scz007', 0.0023919599319472944) + +[fips4516405] +centroid = (0.59071357938802627, -1.3794261753948893) +description = Conway city, SC +station = ('khyw', 0.0012569807262455969) +zone = ('scz053', 0.0019214965538151727) + +[fips4516720] +centroid = (0.58255152968778223, -1.4138552907113078) +description = Cope town, SC +station = ('kogb', 0.0027752674030036119) +zone = ('scz041', 0.0029245775646561706) + +[fips4516855] +centroid = (0.58354191677182643, -1.4123384774182772) +description = Cordova town, SC +station = ('kogb', 0.0011770434590215918) +zone = ('scz036', 0.0017602135680294497) + +[fips4516945] +centroid = (0.59779921472539532, -1.4330027394295768) +description = Coronaca CDP, SC +station = ('kgrd', 0.00072145120432499747) +zone = ('scz019', 0.0017294464518292931) + +[fips4516990] +centroid = (0.5748450807354788, -1.4046464972454729) +description = Cottageville town, SC +station = ('krbw', 0.0020968694879064148) +zone = ('scz044', 0.0027320805508068802) + +[fips4517215] +centroid = (0.59291972792242464, -1.3919016143552196) +description = Coward town, SC +station = ('kflo', 0.0036999244311112477) +zone = ('scz032', 0.0011464148612732191) + +[fips4517260] +centroid = (0.61119393605604344, -1.4277539060502993) +description = Cowpens town, SC +station = ('kspa', 0.0027429440625553777) +zone = ('scz008', 0.002677257236202709) + +[fips4517845] +centroid = (0.60465607230441287, -1.4286921950561715) +description = Cross Anchor CDP, SC +station = ('klux', 0.0028433338902190191) +zone = ('scz013', 0.0035142729426411111) + +[fips4517890] +centroid = (0.59873118563937511, -1.4308800001801314) +description = Cross Hill town, SC +station = ('kgrd', 0.002707343577499615) +zone = ('scz012', 0.0031381199549042433) + +[fips4518430] +centroid = (0.59377479962956159, -1.4038024560192082) +description = Dalzell CDP, SC +station = ('kssc', 0.0012021036031428782) +zone = ('scz031', 0.0019618479103891235) + +[fips4518565] +centroid = (0.59867250766992319, -1.393947175145142) +description = Darlington city, SC +station = ('kflo', 0.002825296830723164) +zone = ('scz023', 0.0014110733299529826) + +[fips4519105] +centroid = (0.58143383828809758, -1.41605170030848) +description = Denmark city, SC +station = ('kbnl', 0.0039001641580985397) +zone = ('scz041', 0.0020820203474807494) + +[fips4519285] +centroid = (0.59473036739502849, -1.4129341059321052) +description = Dentsville CDP, SC +station = ('kcub', 0.0020078541836501969) +zone = ('scz028', 0.0012027183756391079) + +[fips4519420] +centroid = (0.60082622651359163, -1.3852220124150345) +description = Dillon city, SC +station = ('kmao', 0.0043065340942131502) +zone = ('scz024', 0.00060454132448518395) + +[fips4519870] +centroid = (0.59998249944659254, -1.4372118103602716) +description = Donalds town, SC +station = ('kgrd', 0.0037735410053615077) +zone = ('scz011', 0.0031375217253749726) + +[fips4521040] +centroid = (0.59925476696168101, -1.4379878361055858) +description = Due West town, SC +station = ('kgrd', 0.0038956656784826398) +zone = ('scz011', 0.0021900377414088303) + +[fips4521265] +centroid = (0.60977395362991338, -1.4336302725621315) +description = Duncan town, SC +station = ('kgsp', 0.0014376592596223358) +zone = ('scz007', 0.0021527290455726771) + +[fips4521310] +centroid = (0.60774331540509552, -1.4385477900895032) +description = Dunean CDP, SC +station = ('kgyh', 0.0012300782384467427) +zone = ('scz006', 0.001377720236192049) + +[fips4521985] +centroid = (0.60767159982613106, -1.4413933399953698) +description = Easley city, SC +station = ('klqk', 0.0016416391053368984) +zone = ('scz005', 0.0015017392413427223) + +[fips4522075] +centroid = (0.61235534795349056, -1.4246126799158525) +description = East Gaffney CDP, SC +station = ('keho', 0.0028940451413066504) +zone = ('scz008', 0.0006512411182700783) + +[fips4522390] +centroid = (0.59128072412846178, -1.4083921483531776) +description = Eastover town, SC +station = ('kmmt', 0.0016658681795206878) +zone = ('scz037', 0.0037526214826854578) + +[fips4522547] +centroid = (0.59213691284632008, -1.4013754709745552) +description = East Sumter CDP, SC +station = ('ksms', 0.0016028611748541912) +zone = ('scz031', 0.0013082740905724797) + +[fips4522795] +centroid = (0.58969778031007303, -1.4299139429858598) +description = Edgefield town, SC +station = ('kaik', 0.0042041198288799214) +zone = ('scz025', 0.00061691286451861181) + +[fips4522997] +centroid = (0.58428727708218309, -1.4119565993779406) +description = Edisto CDP, SC +station = ('kogb', 0.00073883701266429518) +zone = ('scz036', 0.0015862944671666264) + +[fips4523020] +centroid = (0.56720975395019413, -1.4017347295477856) +description = Edisto Beach town, SC +station = ('karw', 0.0047724082591047365) +zone = ('scz049', 0.0033406954892914557) + +[fips4523200] +centroid = (0.57767801191085344, -1.4139579335246177) +description = Ehrhardt town, SC +station = ('kbnl', 0.0060983773748511461) +zone = ('scz041', 0.0021119446119230714) + +[fips4523245] +centroid = (0.59638294985057194, -1.4101038800170713) +description = Elgin town, SC +station = ('kcdn', 0.0037452692268867605) +zone = ('scz028', 0.00304021953481423) + +[fips4523290] +centroid = (0.60510109635708631, -1.40887761168462) +description = Elgin CDP, SC +station = ('klkr', 0.0020259326657875313) +zone = ('scz015', 0.00038809184583791026) + +[fips4523335] +centroid = (0.58260390701863451, -1.420358125704851) +description = Elko town, SC +station = ('kbnl', 0.0022861104805340475) +zone = ('scz035', 0.0021528705908782112) + +[fips4523470] +centroid = (0.5852072401309093, -1.4062411522231422) +description = Elloree town, SC +station = ('kogb', 0.0041983943876464126) +zone = ('scz037', 0.0039486874623323471) + +[fips4523605] +centroid = (0.60493958358810684, -1.4305158372317026) +description = Enoree CDP, SC +station = ('klux', 0.0028067636163020032) +zone = ('scz012', 0.0031498278054776958) + +[fips4523830] +centroid = (0.57166271719056239, -1.4179262362849996) +description = Estill town, SC +station = ('kjyl', 0.0055504476920771048) +zone = ('scz042', 0.0015273497217081742) + +[fips4524020] +centroid = (0.6059396572494995, -1.4170842196406672) +description = Eureka Mill CDP, SC +station = ('kdcm', 0.0012610968102106527) +zone = ('scz014', 0.00065669211256604455) + +[fips4524100] +centroid = (0.58290043845854833, -1.4022486417460351) +description = Eutawville town, SC +station = ('kmni', 0.0037243372538262897) +zone = ('scz038', 0.0050277340553368322) + +[fips4524370] +centroid = (0.57524964805609113, -1.417839755220563) +description = Fairfax town, SC +station = ('kbnl', 0.0055481865908150905) +zone = ('scz040', 0.0018534357800106111) + +[fips4524505] +centroid = (0.60993956792263504, -1.4314999585837322) +description = Fairforest CDP, SC +station = ('kspa', 0.001118803073061242) +zone = ('scz007', 0.00048743287419662291) + +[fips4524730] +centroid = (0.60224242157524488, -1.4483806783892661) +description = Fair Play CDP, SC +station = ('kceu', 0.0031699787041495576) +zone = ('scz004', 0.0021320190030415576) + +[fips4525360] +centroid = (0.61322277659173174, -1.4311771250319909) +description = Fingerville CDP, SC +station = ('kspa', 0.0038794657833903217) +zone = ('ncz510', 0.003147145870003054) + +[fips4525540] +centroid = (0.60753797741859838, -1.4351437522762911) +description = Five Forks CDP, SC +station = ('kgsp', 0.0013006453856182129) +zone = ('scz006', 0.0015878138771049579) + +[fips4525810] +centroid = (0.59651095229791318, -1.3924689510818729) +description = Florence city, SC +station = ('kflo', 0.00071835848450140275) +zone = ('scz032', 0.0029096819930402428) + +[fips4526035] +centroid = (0.57018657006910312, -1.39557534044445) +description = Folly Beach city, SC +station = ('kjzi', 0.00078915597273710076) +zone = ('scz050', 0.0030089693852392188) + +[fips4526305] +centroid = (0.59398999872633251, -1.4132482651974643) +description = Forest Acres city, SC +station = ('kcub', 0.0012231176152478708) +zone = ('scz028', 0.0010324944933064659) + +[fips4526372] +centroid = (0.58859857194716703, -1.3782478512569905) +description = Forestbrook CDP, SC +station = ('kmyr', 0.0008713858817674811) +zone = ('scz054', 0.0015880053124161678) + +[fips4526845] +centroid = (0.60563331705918944, -1.4119560234192874) +description = Fort Lawn town, SC +station = ('klkr', 0.0007846698803600019) +zone = ('scz015', 0.0027898121097836969) + +[fips4526890] +centroid = (0.61101725637586402, -1.4126073279362543) +description = Fort Mill town, SC +station = ('kuza', 0.0016829880865993573) +zone = ('scz009', 0.0035962028671394836) + +[fips4527070] +centroid = (0.60569932541149984, -1.4346153712985421) +description = Fountain Inn city, SC +station = ('kgsp', 0.0031418469113459221) +zone = ('scz006', 0.0024637635225578541) + +[fips4527835] +centroid = (0.57039536380751921, -1.4169927643878628) +description = Furman town, SC +station = ('kjyl', 0.0060375873128710594) +zone = ('scz042', 0.0017973788294373351) + +[fips4527970] +centroid = (0.59074492550139202, -1.4096256598020247) +description = Gadsden CDP, SC +station = ('kmmt', 0.0013110207659646897) +zone = ('scz037', 0.0030144972291159663) + +[fips4528060] +centroid = (0.61218296178327103, -1.4251947995812699) +description = Gaffney city, SC +station = ('keho', 0.0031547158748869561) +zone = ('scz008', 0.00071426425151606019) + +[fips4528375] +centroid = (0.60715025252526778, -1.4381751273876173) +description = Gantt CDP, SC +station = ('kgyh', 0.00056418794931488881) +zone = ('scz006', 0.00094568255252181117) + +[fips4528455] +centroid = (0.58629766948767781, -1.3789270286821114) +description = Garden City CDP, SC +station = ('kmyr', 0.0019121537274900588) +zone = ('scz054', 0.0033234900979144124) + +[fips4528780] +centroid = (0.59023488793408174, -1.4154576425909788) +description = Gaston town, SC +station = ('kcae', 0.0023173935402482884) +zone = ('scz027', 0.0028996761905913304) + +[fips4528825] +centroid = (0.60566804911130412, -1.4178923594442183) +description = Gayle Mill CDP, SC +station = ('kdcm', 0.0016869605623089114) +zone = ('scz014', 0.0011579115749278488) + +[fips4528870] +centroid = (0.58245883525120878, -1.3837108714420727) +description = Georgetown city, SC +station = ('kgge', 0.0012305133363864835) +zone = ('scz056', 0.00064580993368394419) + +[fips4529005] +centroid = (0.57351580307057493, -1.417879426554461) +description = Gifford town, SC +station = ('kjyl', 0.0064532708439880146) +zone = ('scz042', 0.0020489327802428424) + +[fips4529050] +centroid = (0.59208743276202613, -1.4205416645289906) +description = Gilbert town, SC +station = ('kcae', 0.0039986060859181164) +zone = ('scz027', 0.0017633009310890355) + +[fips4529275] +centroid = (0.60990666846623509, -1.4283141567401894) +description = Glendale CDP, SC +station = ('kspa', 0.0016998206644521499) +zone = ('scz007', 0.002221118697545937) + +[fips4529410] +centroid = (0.58514339598687126, -1.4278762710841566) +description = Gloverville CDP, SC +station = ('kaik', 0.0027883048034347282) +zone = ('scz030', 0.0025869830462281773) + +[fips4529635] +centroid = (0.60620428407068694, -1.4388402200056747) +description = Golden Grove CDP, SC +station = ('kgyh', 0.00097486528297195273) +zone = ('scz006', 0.0017757833818843611) + +[fips4529815] +centroid = (0.57581178370157349, -1.3963807051744901) +description = Goose Creek city, SC +station = ('kchs', 0.0016452966914829469) +zone = ('scz052', 0.0013990221849560333) + +[fips4529950] +centroid = (0.5798467231327965, -1.4167681230598388) +description = Govan town, SC +station = ('kbnl', 0.0031767905764625774) +zone = ('scz041', 0.0017670194341304205) + +[fips4530220] +centroid = (0.61221830470062399, -1.433519147448657) +description = Gramling CDP, SC +station = ('kgsp', 0.0035867299860958953) +zone = ('scz007', 0.003277986601478846) + +[fips4530265] +centroid = (0.58581424819146044, -1.4278402649416879) +description = Graniteville CDP, SC +station = ('kaik', 0.0022848462244642793) +zone = ('scz030', 0.0025615139602525394) + +[fips4530355] +centroid = (0.60401403548577426, -1.4331653692092778) +description = Gray Court town, SC +station = ('klux', 0.0030160967620754008) +zone = ('scz012', 0.0026642090347159565) + +[fips4530490] +centroid = (0.60339751538079966, -1.4120639371269383) +description = Great Falls town, SC +station = ('klkr', 0.0027002030610142462) +zone = ('scz015', 0.0034996293475886408) + +[fips4530535] +centroid = (0.58608547235722031, -1.3960892526426996) +description = Greeleyville town, SC +station = ('kcki', 0.0031764716771509253) +zone = ('scz039', 0.003875791355125547) + +[fips4530850] +centroid = (0.60801864109459769, -1.437505479460212) +description = Greenville city, SC +station = ('kgmu', 0.00029482080271978734) +zone = ('scz006', 0.00093907988711844327) + +[fips4530895] +centroid = (0.5967937305433213, -1.4338572526313533) +description = Greenwood city, SC +station = ('kgrd', 0.00069302164758898465) +zone = ('scz019', 0.00080668352262120704) + +[fips4530985] +centroid = (0.60972614906170131, -1.4352188014341265) +description = Greer city, SC +station = ('kgsp', 0.00092351365794933915) +zone = ('scz006', 0.0029569308851487039) + +[fips4531885] +centroid = (0.57364771505544065, -1.4156255432650207) +description = Hampton town, SC +station = ('krbw', 0.0072102664959141742) +zone = ('scz042', 0.001657899716328734) + +[fips4532065] +centroid = (0.5747821790692369, -1.3964055935696236) +description = Hanahan city, SC +station = ('kchs', 0.00067806262534944768) +zone = ('scz052', 0.0014074672190082832) + +[fips4532245] +centroid = (0.56364551236494143, -1.4144325932679898) +description = Hardeeville city, SC +station = ('ksav', 0.0038918814709549918) +zone = ('scz051', 0.0015494595389164436) + +[fips4532335] +centroid = (0.57966962457359672, -1.4040795270379622) +description = Harleyville town, SC +station = ('kdyb', 0.0034945704954884964) +zone = ('scz044', 0.0024055042855570348) + +[fips4532560] +centroid = (0.59974667055806297, -1.3976880091441115) +description = Hartsville city, SC +station = ('khvs', 0.00085066997547824947) +zone = ('scz023', 0.0018636566793487821) + +[fips4532965] +centroid = (0.60376642562479377, -1.4080451943511738) +description = Heath Springs town, SC +station = ('klkr', 0.0033468303494515249) +zone = ('scz015', 0.0016896252851868318) + +[fips4533145] +centroid = (0.58910853970130717, -1.3865991470080281) +description = Hemingway town, SC +station = ('khyw', 0.0049176686588392696) +zone = ('scz055', 0.0046357381754636362) + +[fips4533640] +centroid = (0.61048934663701326, -1.4210132001330018) +description = Hickory Grove town, SC +station = ('kdcm', 0.0046347195127934004) +zone = ('scz008', 0.0031380366106563955) + +[fips4533820] +centroid = (0.58085496493508859, -1.4179877067812547) +description = Hilda town, SC +station = ('kbnl', 0.0021862246279452692) +zone = ('scz041', 0.0030088291717111104) + +[fips4534045] +centroid = (0.56183635642220164, -1.4091649452393757) +description = Hilton Head Island town, SC +station = ('khxd', 0.00073362620509242549) +zone = ('scz048', 0.0029744996461170069) + +[fips4534225] +centroid = (0.59845048433577697, -1.4355213019000823) +description = Hodges town, SC +station = ('kgrd', 0.0017278827773901115) +zone = ('scz019', 0.0029520253668593151) + +[fips4534360] +centroid = (0.58163594741547853, -1.4034791686818613) +description = Holly Hill town, SC +station = ('kdyb', 0.004863090440674029) +zone = ('scz044', 0.0042914421299876928) + +[fips4534495] +centroid = (0.57161774005573851, -1.3997894902832677) +description = Hollywood town, SC +station = ('kjzi', 0.0030984862916261357) +zone = ('scz050', 0.0041014211774206633) + +[fips4534720] +centroid = (0.60151297866766629, -1.4426675176157882) +description = Homeland Park CDP, SC +station = ('kand', 0.0010418417522593348) +zone = ('scz010', 0.0010048235319516595) + +[fips4534810] +centroid = (0.60121601089543941, -1.4380511741041406) +description = Honea Path town, SC +station = ('kand', 0.0047296827773182018) +zone = ('scz011', 0.0040274931450425587) + +[fips4534990] +centroid = (0.59167040379055447, -1.4112165274152175) +description = Hopkins CDP, SC +station = ('kmmt', 0.00087073240417236109) +zone = ('scz028', 0.0022255695891782441) + +[fips4535635] +centroid = (0.61112426251230378, -1.4143627975512028) +description = India Hook CDP, SC +station = ('kuza', 0.00058038562854228906) +zone = ('scz009', 0.0022219942442148386) + +[fips4535755] +centroid = (0.61169926123437335, -1.4327843463802747) +description = Inman city, SC +station = ('kspa', 0.0030641895366166345) +zone = ('scz007', 0.0025003966418244792) + +[fips4535800] +centroid = (0.61158110244401331, -1.4329532767985755) +description = Inman Mills CDP, SC +station = ('kspa', 0.0030734404936377173) +zone = ('scz007', 0.0024915355317689418) + +[fips4535890] +centroid = (0.59516757237265305, -1.4170903282930494) +description = Irmo town, SC +station = ('kcae', 0.0028524637216366211) +zone = ('scz027', 0.0036459251693022406) + +[fips4535980] +centroid = (0.60552275045107562, -1.4106155581938782) +description = Irwin CDP, SC +station = ('klkr', 0.00060439339749930653) +zone = ('scz015', 0.0016824332042465499) + +[fips4536070] +centroid = (0.57437497630145407, -1.4125987932762119) +description = Islandton CDP, SC +station = ('krbw', 0.0046294707088455943) +zone = ('scz042', 0.0037935207318629534) + +[fips4536115] +centroid = (0.5725509850600724, -1.3919352992097831) +description = Isle of Palms city, SC +station = ('klro', 0.0017122189299193285) +zone = ('scz050', 0.0028820502993965789) + +[fips4536160] +centroid = (0.59877497595030771, -1.4427597408134636) +description = Iva town, SC +station = ('kand', 0.0034479191846073813) +zone = ('scz011', 0.0033101646848796335) + +[fips4536205] +centroid = (0.58169336874786914, -1.4275399635905899) +description = Jackson town, SC +station = ('kags', 0.0026317132562693668) +zone = ('gaz065', 0.0041396771835962602) + +[fips4536250] +centroid = (0.57197509622008447, -1.4045873131305375) +description = Jacksonboro CDP, SC +station = ('krbw', 0.0031973696770592379) +zone = ('scz049', 0.0028349431972177854) + +[fips4536475] +centroid = (0.58094813061056005, -1.3909330264335329) +description = Jamestown town, SC +station = ('kgge', 0.0054807175611113028) +zone = ('scz045', 0.0039496583208200224) + +[fips4536610] +centroid = (0.60477787883290957, -1.4029673857852991) +description = Jefferson town, SC +station = ('khvs', 0.0058006412659813017) +zone = ('scz016', 0.003244237260989373) + +[fips4536655] +centroid = (0.59884147299480872, -1.4187200294820992) +description = Jenkinsville town, SC +station = ('kfdw', 0.0024076539777953764) +zone = ('scz021', 0.0027990416211621755) + +[fips4536790] +centroid = (0.60067125872930704, -1.4276830805892533) +description = Joanna CDP, SC +station = ('klux', 0.0026075778516424773) +zone = ('scz012', 0.0031885524087877843) + +[fips4537105] +centroid = (0.59015530092019086, -1.3865691797047714) +description = Johnsonville city, SC +station = ('khyw', 0.0047149626669609262) +zone = ('scz033', 0.0048039001644699843) + +[fips4537150] +centroid = (0.59050393043827665, -1.4277635053611852) +description = Johnston town, SC +station = ('kaik', 0.0036084842935423752) +zone = ('scz025', 0.0025770938834391763) + +[fips4537330] +centroid = (0.60796697934873856, -1.4256264544118733) +description = Jonesville town, SC +station = ('kspa', 0.0040949489404227563) +zone = ('scz013', 0.0026827699531137244) + +[fips4537465] +centroid = (0.60795952679283261, -1.4386253350681693) +description = Judson CDP, SC +station = ('kgmu', 0.0011421123684996362) +zone = ('scz006', 0.0015353394344917799) + +[fips4538095] +centroid = (0.60291287235410584, -1.4065004557901111) +description = Kershaw town, SC +station = ('kcdn', 0.0046201470247273224) +zone = ('scz015', 0.0030157838007242839) + +[fips4538162] +centroid = (0.56931367855030324, -1.3972349216702937) +description = Kiawah Island town, SC +station = ('kjzi', 0.0016291799403245577) +zone = ('scz050', 0.0042061810998260986) + +[fips4538590] +centroid = (0.58760247763646878, -1.3932817509145268) +description = Kingstree town, SC +station = ('kcki', 0.00097089597958945626) +zone = ('scz039', 0.0016891677583849446) + +[fips4538950] +centroid = (0.57813537544133842, -1.4196951449351882) +description = Kline town, SC +station = ('kbnl', 0.0022938562437797966) +zone = ('scz040', 0.002395255788437915) + +[fips4539220] +centroid = (0.57612014847381576, -1.3981439938644875) +description = Ladson CDP, SC +station = ('kchs', 0.0021962984713658771) +zone = ('scz052', 0.0028975797925999522) + +[fips4539310] +centroid = (0.5911033114099965, -1.3919678845069177) +description = Lake City city, SC +station = ('kcki', 0.0029310522465736833) +zone = ('scz032', 0.002834444396813969) + +[fips4539475] +centroid = (0.59555290616490841, -1.4183556047342827) +description = Lake Murray of Richland CDP, SC +station = ('kcae', 0.0037059066055111787) +zone = ('scz027', 0.0038490098081644325) + +[fips4539512] +centroid = (0.59844716821019817, -1.4414387883690916) +description = Lake Secession CDP, SC +station = ('kand', 0.0041281056069213395) +zone = ('scz011', 0.0021957416416236858) + +[fips4539715] +centroid = (0.59935974851618834, -1.3817147907364444) +description = Lake View town, SC +station = ('kmao', 0.0036663676629549685) +zone = ('scz024', 0.0031864746495483438) + +[fips4539772] +centroid = (0.59066228416131006, -1.4023394512270166) +description = Lakewood CDP, SC +station = ('ksms', 0.0027550284848153282) +zone = ('scz031', 0.0013790143241565593) + +[fips4539785] +centroid = (0.61260704188492066, -1.4148561148642791) +description = Lake Wylie CDP, SC +station = ('kuza', 0.0020443913691691623) +zone = ('scz009', 0.0027693879418897328) + +[fips4539805] +centroid = (0.59636301819051407, -1.3973973769170693) +description = Lamar town, SC +station = ('khvs', 0.0041076253100960549) +zone = ('scz023', 0.0032434173065408389) + +[fips4539895] +centroid = (0.60604874032774925, -1.4098653807747861) +description = Lancaster city, SC +station = ('klkr', 0.0010161396706804293) +zone = ('scz015', 0.0012440786946596293) + +[fips4540075] +centroid = (0.61392118754520975, -1.4344115342952017) +description = Landrum city, SC +station = ('kgsp', 0.0051113293639443872) +zone = ('ncz510', 0.0019265463058544183) + +[fips4540210] +centroid = (0.58512327234059591, -1.394163421439464) +description = Lane town, SC +station = ('kcki', 0.0034289906317964505) +zone = ('scz039', 0.0027608630535125092) + +[fips4540390] +centroid = (0.5849503800248933, -1.4282908391413829) +description = Langley CDP, SC +station = ('kaik', 0.003159665443039071) +zone = ('scz030', 0.0029575332586799846) + +[fips4540480] +centroid = (0.59932852457587016, -1.3863786246570386) +description = Latta town, SC +station = ('kmao', 0.0031521087535312815) +zone = ('scz024', 0.0012090483009018641) + +[fips4540525] +centroid = (0.56655214879462779, -1.40997387044109) +description = Laurel Bay CDP, SC +station = ('knbc', 0.001086327436429596) +zone = ('scz048', 0.0022711577342696349) + +[fips4540615] +centroid = (0.60216449262414329, -1.4315767530708201) +description = Laurens city, SC +station = ('klux', 0.0010547213044905432) +zone = ('scz012', 0.00039925254152209594) + +[fips4541065] +centroid = (0.60883545518453097, -1.4128153537297996) +description = Lesslie CDP, SC +station = ('kuza', 0.0022669175723872862) +zone = ('scz009', 0.0037336668701633529) + +[fips4541335] +centroid = (0.59332136308989358, -1.417418711991812) +description = Lexington town, SC +station = ('kcae', 0.0015874768004734781) +zone = ('scz027', 0.0018356133897012277) + +[fips4541380] +centroid = (0.60721685428952388, -1.4434124066872467) +description = Liberty city, SC +station = ('klqk', 0.00033289775827873073) +zone = ('scz005', 0.00040461252696403653) + +[fips4541740] +centroid = (0.57609368928235549, -1.3989874765853911) +description = Lincolnville town, SC +station = ('kdyb', 0.0021138341959104122) +zone = ('scz052', 0.0035746019131700133) + +[fips4541965] +centroid = (0.59685020939791589, -1.4209193537791223) +description = Little Mountain town, SC +station = ('keoe', 0.0038267077611284441) +zone = ('scz020', 0.0031520221515910604) + +[fips4542010] +centroid = (0.59132886030923182, -1.3725354584283831) +description = Little River CDP, SC +station = ('kcre', 0.0015704329816709564) +zone = ('scz054', 0.0040346244688239646) + +[fips4542100] +centroid = (0.58561519339027057, -1.4158101816465889) +description = Livingston town, SC +station = ('kogb', 0.0042091970091449578) +zone = ('scz037', 0.005375073436305805) + +[fips4542190] +centroid = (0.60729809936620427, -1.4218516213990751) +description = Lockhart town, SC +station = ('kdcm', 0.003958513660343178) +zone = ('scz013', 0.0028781453844358759) + +[fips4542280] +centroid = (0.57714216092390613, -1.4129085717651486) +description = Lodge town, SC +station = ('krbw', 0.0056080946421418164) +zone = ('scz041', 0.0029546299232779813) + +[fips4542730] +centroid = (0.59440950606534193, -1.3768666849534246) +description = Loris city, SC +station = ('kcpc', 0.0045222980107860944) +zone = ('scz053', 0.0026239865599668715) + +[fips4542820] +centroid = (0.59707554885764091, -1.4424731752035787) +description = Lowndesville town, SC +station = ('kand', 0.0051598476527420587) +zone = ('gaz029', 0.0032214251852175106) + +[fips4542865] +centroid = (0.6074445499437392, -1.417856999073573) +description = Lowrys town, SC +station = ('kdcm', 0.00071960993124667381) +zone = ('scz014', 0.002248829356526501) + +[fips4543000] +centroid = (0.59726915823156457, -1.4082285062825108) +description = Lugoff CDP, SC +station = ('kcdn', 0.0019593821855353583) +zone = ('scz022', 0.0024726327114507783) + +[fips4543090] +centroid = (0.57271597103426342, -1.4179101094427109) +description = Luray town, SC +station = ('kjyl', 0.0060026811290389004) +zone = ('scz042', 0.0016049464643621727) + +[fips4543135] +centroid = (0.59841264559759366, -1.3983318611051723) +description = Lydia CDP, SC +station = ('khvs', 0.0019807328500792867) +zone = ('scz023', 0.0024527758004334803) + +[fips4543315] +centroid = (0.6103103631222212, -1.433560302312419) +description = Lyman town, SC +station = ('kgsp', 0.0018696218304633686) +zone = ('scz007', 0.0021891936968998571) + +[fips4543360] +centroid = (0.59445923049573124, -1.397606851333894) +description = Lynchburg town, SC +station = ('ksms', 0.0042256148473206164) +zone = ('scz029', 0.003135455918519998) + +[fips4543495] +centroid = (0.60156626356972975, -1.4007549540655935) +description = McBee town, SC +station = ('khvs', 0.0022989087300038721) +zone = ('scz016', 0.0033283975239107319) + +[fips4543585] +centroid = (0.57746839786768889, -1.3869833986961471) +description = McClellanville town, SC +station = ('kgge', 0.0044616892807909465) +zone = ('scz056', 0.0056796590752139125) + +[fips4543630] +centroid = (0.60504487930187967, -1.3883076498128053) +description = McColl town, SC +station = ('kbbp', 0.002789121175783196) +zone = ('scz017', 0.0022349077504552946) + +[fips4543675] +centroid = (0.60871776763306895, -1.4177589988360735) +description = McConnells town, SC +station = ('kdcm', 0.0016305713625087066) +zone = ('scz009', 0.0018342586930866391) + +[fips4543720] +centroid = (0.59189071670203386, -1.4361893964844534) +description = McCormick town, SC +station = ('kgrd', 0.0059368145037272703) +zone = ('scz018', 0.00039727519369756346) + +[fips4544350] +centroid = (0.58805319146250379, -1.4000649730524026) +description = Manning city, SC +station = ('kmni', 0.0019135236286588143) +zone = ('scz038', 0.00047458069781989367) + +[fips4544575] +centroid = (0.5965318089824746, -1.3857316311033243) +description = Marion city, SC +station = ('kmao', 0.00096149483859094649) +zone = ('scz033', 0.0017908438520637449) + +[fips4545115] +centroid = (0.60712964018680182, -1.4363986091018897) +description = Mauldin city, SC +station = ('kgyh', 0.0012388357772201413) +zone = ('scz006', 0.00051482199276658687) + +[fips4545295] +centroid = (0.59314861040053113, -1.3998316050781183) +description = Mayesville town, SC +station = ('ksms', 0.0022663723564017692) +zone = ('scz031', 0.0028405560042286011) + +[fips4545430] +centroid = (0.61236105518014461, -1.4286122415231377) +description = Mayo CDP, SC +station = ('kspa', 0.0032571911566997435) +zone = ('scz007', 0.0033334314447771183) + +[fips4545790] +centroid = (0.57067072440360644, -1.40101244249014) +description = Meggett town, SC +station = ('kjzi', 0.0039967721689571269) +zone = ('scz049', 0.0036483440446705949) + +[fips4547050] +centroid = (0.58852099206191577, -1.4350337790801226) +description = Modoc CDP, SC +station = ('kdnl', 0.0051950052628271706) +zone = ('gaz064', 0.0031262243764449285) + +[fips4547200] +centroid = (0.60591071969050148, -1.4239231875948521) +description = Monarch Mill CDP, SC +station = ('kspa', 0.0062956738034198817) +zone = ('scz013', 0.00068373952840316838) + +[fips4547275] +centroid = (0.5793818721398204, -1.3958886794050607) +description = Moncks Corner town, SC +station = ('kmks', 0.0009409807058245324) +zone = ('scz045', 0.00057445681136901461) + +[fips4547320] +centroid = (0.5907891172380525, -1.424356849554095) +description = Monetta town, SC +station = ('kaik', 0.0036757405876698297) +zone = ('scz026', 0.0032144769844542659) + +[fips4548310] +centroid = (0.59373401128494263, -1.4399742302338656) +description = Mount Carmel CDP, SC +station = ('kiiy', 0.0061467130581810978) +zone = ('scz018', 0.0034978178904108551) + +[fips4548355] +centroid = (0.60684654778212832, -1.400214600129176) +description = Mount Croghan town, SC +station = ('kcqw', 0.004197936615494652) +zone = ('scz016', 0.0024693487109616742) + +[fips4548535] +centroid = (0.5733421428100014, -1.3932946488976989) +description = Mount Pleasant town, SC +station = ('klro', 0.0011375568809494638) +zone = ('scz050', 0.0016759724684394053) + +[fips4548670] +centroid = (0.59992223322752114, -1.4307763625291479) +description = Mountville CDP, SC +station = ('klux', 0.0022512978717849387) +zone = ('scz012', 0.0019734093062780031) + +[fips4548737] +centroid = (0.59268719770618139, -1.4019727226445873) +description = Mulberry CDP, SC +station = ('ksms', 0.00086701388597103333) +zone = ('scz031', 0.001087577507881095) + +[fips4548805] +centroid = (0.59697578583759681, -1.3832345012760336) +description = Mullins city, SC +station = ('kmao', 0.0011823829081643175) +zone = ('scz033', 0.0026776847571948099) + +[fips4548900] +centroid = (0.58644935605296866, -1.4302262347489192) +description = Murphys Estates CDP, SC +station = ('kdnl', 0.002668322396709649) +zone = ('scz025', 0.003003517523526802) + +[fips4548985] +centroid = (0.58568450041486719, -1.379807826542423) +description = Murrells Inlet CDP, SC +station = ('kmyr', 0.0028428121930311611) +zone = ('scz054', 0.004268047664965669) + +[fips4549075] +centroid = (0.58836447093459687, -1.3768180251738791) +description = Myrtle Beach city, SC +station = ('kmyr', 0.00083963813942431582) +zone = ('scz054', 0.0006120272223214243) + +[fips4549390] +centroid = (0.58532115777118698, -1.4158855798702752) +description = Neeses town, SC +station = ('kogb', 0.0041732250604773341) +zone = ('scz036', 0.0050129515320292035) + +[fips4549570] +centroid = (0.59833984791449302, -1.424215861857119) +description = Newberry city, SC +station = ('keoe', 0.00073495227348271703) +zone = ('scz020', 0.00013175038198871337) + +[fips4549705] +centroid = (0.58326879019718181, -1.4255876208360165) +description = New Ellenton town, SC +station = ('kaik', 0.0040370451470795243) +zone = ('scz030', 0.0022887300684904955) + +[fips4549885] +centroid = (0.61056696142884948, -1.4154130145220054) +description = Newport CDP, SC +station = ('kuza', 0.00067487889647500237) +zone = ('scz009', 0.0012567525392197733) + +[fips4549975] +centroid = (0.60607317493727708, -1.4471160477198561) +description = Newry CDP, SC +station = ('kceu', 0.0011141008659752978) +zone = ('scz004', 0.001982199281583154) + +[fips4550110] +centroid = (0.59751697753205524, -1.3814142101326659) +description = Nichols town, SC +station = ('kmao', 0.0027817714812048192) +zone = ('scz033', 0.0041009317384354338) + +[fips4550290] +centroid = (0.5964117652365224, -1.4315773115761805) +description = Ninety Six town, SC +station = ('kgrd', 0.00211975171954191) +zone = ('scz019', 0.0015143932673908455) + +[fips4550515] +centroid = (0.60678319233028088, -1.4443042001218456) +description = Norris town, SC +station = ('klqk', 0.0010740972316746267) +zone = ('scz005', 0.0012012250962018518) + +[fips4550560] +centroid = (0.58672448975625291, -1.4155113638253551) +description = North town, SC +station = ('kogb', 0.0045162215397997361) +zone = ('scz036', 0.0053858731371605366) + +[fips4550695] +centroid = (0.58505899186424493, -1.4303807662008909) +description = North Augusta city, SC +station = ('kdnl', 0.0014900107668237429) +zone = ('gaz065', 0.00331138551913096) + +[fips4550875] +centroid = (0.57451599890501526, -1.397400483603138) +description = North Charleston city, SC +station = ('kchs', 0.00055583679670855837) +zone = ('scz050', 0.0022225362191283303) + +[fips4551145] +centroid = (0.60045536150083523, -1.3974916770565546) +description = North Hartsville CDP, SC +station = ('khvs', 0.00071732480873695987) +zone = ('scz023', 0.0020438565177736188) + +[fips4551180] +centroid = (0.603397689913725, -1.4431393673790647) +description = Northlake CDP, SC +station = ('kand', 0.0013350418455489229) +zone = ('scz010', 0.0011537197833590244) + +[fips4551280] +centroid = (0.58997226824153415, -1.3744688120006947) +description = North Myrtle Beach city, SC +station = ('kcre', 0.00055610372379074691) +zone = ('scz054', 0.0019357669520993338) + +[fips4551550] +centroid = (0.58380835873543591, -1.4159275375854932) +description = Norway town, SC +station = ('kogb', 0.0040394389530708031) +zone = ('scz041', 0.0042364132416377511) + +[fips4551720] +centroid = (0.59312735229024183, -1.4162359372643205) +description = Oak Grove CDP, SC +station = ('kcae', 0.00071155482304847972) +zone = ('scz027', 0.0023345799203899052) + +[fips4551887] +centroid = (0.59322634736541491, -1.4049191351279267) +description = Oakland CDP, SC +station = ('kssc', 0.00043615635523396571) +zone = ('scz031', 0.0020826191053043832) + +[fips4552540] +centroid = (0.59229812890932687, -1.3950728950593856) +description = Olanta town, SC +station = ('kcki', 0.0039550615607868407) +zone = ('scz032', 0.0036550357069648712) + +[fips4552585] +centroid = (0.57909787216393582, -1.4169515571642233) +description = Olar town, SC +station = ('kbnl', 0.0032293402889063405) +zone = ('scz041', 0.0020095113203564881) + +[fips4553080] +centroid = (0.58454103050213058, -1.4113625591137318) +description = Orangeburg city, SC +station = ('kogb', 0.00048974327094631492) +zone = ('scz036', 0.0013182380050392449) + +[fips4553485] +centroid = (0.5935096492095987, -1.4012575914368754) +description = Oswego CDP, SC +station = ('ksms', 0.0010730477605856554) +zone = ('scz031', 0.0020909287062304705) + +[fips4553845] +centroid = (0.60920797826007667, -1.4270476411151873) +description = Pacolet town, SC +station = ('kspa', 0.0026725860781872711) +zone = ('scz008', 0.0032324248975834926) + +[fips4554025] +centroid = (0.60688400254787611, -1.403057811293845) +description = Pageland town, SC +station = ('keqy', 0.005370826167281342) +zone = ('scz016', 0.0040347321550820367) + +[fips4554340] +centroid = (0.59333679180048116, -1.3887399329619394) +description = Pamplico town, SC +station = ('kflo', 0.0040461711669898988) +zone = ('scz032', 0.0020008851461484419) + +[fips4554535] +centroid = (0.60825726250993029, -1.4390780909294292) +description = Parker CDP, SC +station = ('kgmu', 0.0014767505162037106) +zone = ('scz006', 0.0020082554340526328) + +[fips4554700] +centroid = (0.58968119968217914, -1.4349612955562874) +description = Parksville town, SC +station = ('kdnl', 0.0061848617020454789) +zone = ('scz018', 0.0023914366440207268) + +[fips4554925] +centroid = (0.60345200456004688, -1.3970427783729418) +description = Patrick town, SC +station = ('kcqw', 0.0029394261548443159) +zone = ('scz016', 0.0019860604051229421) + +[fips4555015] +centroid = (0.5834302855128688, -1.3809915612010031) +description = Pawleys Island town, SC +station = ('kgge', 0.0035111231156814385) +zone = ('scz056', 0.0021788015973382116) + +[fips4555060] +centroid = (0.5888571075692649, -1.4025215414278771) +description = Paxville town, SC +station = ('kmni', 0.003410749143119562) +zone = ('scz038', 0.0024278476700580719) + +[fips4555150] +centroid = (0.59757909380013374, -1.4194454755856907) +description = Peak town, SC +station = ('kfdw', 0.0033210002028065196) +zone = ('scz020', 0.0040213594434086617) + +[fips4555420] +centroid = (0.58965664289960351, -1.418249977407952) +description = Pelion town, SC +station = ('kcae', 0.0035508489856160294) +zone = ('scz027', 0.0020563212453593468) + +[fips4555465] +centroid = (0.60461507452028351, -1.439222935804052) +description = Pelzer town, SC +station = ('kgyh', 0.0023692815661878288) +zone = ('scz006', 0.0031271991482644096) + +[fips4555645] +centroid = (0.60475313006411624, -1.4448331745115401) +description = Pendleton town, SC +station = ('kceu', 0.0014723960996935374) +zone = ('scz004', 0.0029246720611803092) + +[fips4555960] +centroid = (0.58691240935681521, -1.4191026929205988) +description = Perry town, SC +station = ('kcae', 0.0062779122238129552) +zone = ('scz027', 0.0048216087379944943) + +[fips4556140] +centroid = (0.60887104244797918, -1.4435653498895988) +description = Pickens city, SC +station = ('klqk', 0.0013299818607016454) +zone = ('scz005', 0.0013127923386179339) + +[fips4556365] +centroid = (0.60572728558611677, -1.4393162236525712) +description = Piedmont CDP, SC +station = ('kgyh', 0.0015649262279878568) +zone = ('scz006', 0.0023707509566735) + +[fips4556950] +centroid = (0.59178503701582552, -1.41539081393392) +description = Pine Ridge town, SC +station = ('kcae', 0.0008118814443218009) +zone = ('scz027', 0.0025547896294403189) + +[fips4557085] +centroid = (0.58886684650649102, -1.4043271019923578) +description = Pinewood town, SC +station = ('kssc', 0.0039753486503457496) +zone = ('scz031', 0.0032920672273329325) + +[fips4557175] +centroid = (0.57994877253416066, -1.3969371510466109) +description = Pinopolis CDP, SC +station = ('kmks', 0.00084877194051449182) +zone = ('scz045', 0.0012376895076780885) + +[fips4557670] +centroid = (0.59076194246159897, -1.4356859388084231) +description = Plum Branch town, SC +station = ('khqu', 0.0067039757988958974) +zone = ('scz018', 0.0011641948660472932) + +[fips4557850] +centroid = (0.59810232605658897, -1.4210090986092596) +description = Pomaria town, SC +station = ('keoe', 0.0032837071419943493) +zone = ('scz020', 0.0026543039103663194) + +[fips4558030] +centroid = (0.56471583552872695, -1.4085014932308151) +description = Port Royal town, SC +station = ('karw', 0.0015250508720230903) +zone = ('scz048', 0.00011755569799453992) + +[fips4558165] +centroid = (0.60700858414988346, -1.4397964335429649) +description = Powdersville CDP, SC +station = ('kgyh', 0.001671469057292978) +zone = ('scz006', 0.0022826778318517258) + +[fips4558435] +centroid = (0.60198529966984105, -1.4363306634341098) +description = Princeton CDP, SC +station = ('kgyh', 0.0048449173512300266) +zone = ('scz012', 0.0041694943394153094) + +[fips4558570] +centroid = (0.59021528788658184, -1.4030951089799601) +description = Privateer CDP, SC +station = ('kssc', 0.0029343691400207338) +zone = ('scz031', 0.0017391102250144486) + +[fips4558615] +centroid = (0.59564029480055591, -1.4351964786729936) +description = Promised Land CDP, SC +station = ('kgrd', 0.0021813682910929058) +zone = ('scz019', 0.0015810698255893762) + +[fips4558705] +centroid = (0.59713038710273847, -1.4229374430866182) +description = Prosperity town, SC +station = ('keoe', 0.0023364010488046284) +zone = ('scz020', 0.0016932057964381066) + +[fips4558795] +centroid = (0.59739169779834711, -1.3916433754390944) +description = Quinby town, SC +station = ('kflo', 0.00078049404408497955) +zone = ('scz032', 0.0035830320488712056) + +[fips4559020] +centroid = (0.57206311317426251, -1.4002293307080629) +description = Ravenel town, SC +station = ('kchs', 0.0035648543344553108) +zone = ('scz050', 0.0043079010707079285) + +[fips4559110] +centroid = (0.59218222159370182, -1.4177995079280123) +description = Red Bank CDP, SC +station = ('kcae', 0.0017350448096104159) +zone = ('scz027', 0.00073143718929464684) + +[fips4559190] +centroid = (0.58951150131900765, -1.3789450055734069) +description = Red Hill CDP, SC +station = ('khyw', 0.0018768076786338599) +zone = ('scz054', 0.0022491942618271614) + +[fips4559380] +centroid = (0.57940222267889863, -1.4074626732600282) +description = Reevesville town, SC +station = ('krbw', 0.0050243770286406133) +zone = ('scz044', 0.0040212726753940621) + +[fips4559425] +centroid = (0.60852466440462838, -1.4329975383484059) +description = Reidville town, SC +station = ('kgsp', 0.0016317043137102029) +zone = ('scz007', 0.00199162977884611) + +[fips4559470] +centroid = (0.59522249788421344, -1.4055227747030214) +description = Rembert CDP, SC +station = ('kssc', 0.00248778530483836) +zone = ('scz031', 0.0039130671303238057) + +[fips4559920] +centroid = (0.60591935907029881, -1.4140583946763623) +description = Richburg town, SC +station = ('klkr', 0.0024334705643536576) +zone = ('scz014', 0.0020527640184113674) + +[fips4560280] +centroid = (0.56668299612864981, -1.412415481344875) +description = Ridgeland town, SC +station = ('knbc', 0.003084862391681693) +zone = ('scz047', 0.00095089627152296114) + +[fips4560325] +centroid = (0.59071164207255644, -1.4252570380223963) +description = Ridge Spring town, SC +station = ('kaik', 0.0034338562314793087) +zone = ('scz026', 0.0029635942915107365) + +[fips4560370] +centroid = (0.57753002544357679, -1.4016256290162432) +description = Ridgeville town, SC +station = ('kdyb', 0.0005299647855464513) +zone = ('scz044', 0.0014443655931988752) + +[fips4560415] +centroid = (0.5987621128737205, -1.4130199935845957) +description = Ridgeway town, SC +station = ('kfdw', 0.0023172897998168067) +zone = ('scz021', 0.0027890605409127979) + +[fips4561112] +centroid = (0.61109337018454346, -1.413517133168734) +description = Riverview CDP, SC +station = ('kuza', 0.0010202227137744754) +zone = ('scz009', 0.0028803928651101158) + +[fips4561405] +centroid = (0.60987682333602589, -1.4140910846932522) +description = Rock Hill city, SC +station = ('kuza', 0.00080826295132946737) +zone = ('scz009', 0.0023955133971221136) + +[fips4561495] +centroid = (0.56903358811194316, -1.3995960379889767) +description = Rockville town, SC +station = ('kjzi', 0.0032751240800175207) +zone = ('scz049', 0.004516136482589566) + +[fips4561720] +centroid = (0.6087491311997274, -1.4305377062072302) +description = Roebuck CDP, SC +station = ('kspa', 0.00069041489894107098) +zone = ('scz007', 0.00099476499922653287) + +[fips4562035] +centroid = (0.58245541440587489, -1.410856832509674) +description = Rowesville town, SC +station = ('kogb', 0.0016604265901530159) +zone = ('scz036', 0.0012769019118955213) + +[fips4562080] +centroid = (0.60646980100979275, -1.3993899320576086) +description = Ruby town, SC +station = ('kcqw', 0.0034650244435534103) +zone = ('scz016', 0.0019157876854266286) + +[fips4562305] +centroid = (0.58288830842024697, -1.3956301786895475) +description = Russellville CDP, SC +station = ('kmks', 0.0039481599076216312) +zone = ('scz045', 0.0030581777688427885) + +[fips4562395] +centroid = (0.59429986448173167, -1.4155580513828461) +description = St. Andrews CDP, SC +station = ('kcae', 0.0017679793478582039) +zone = ('scz028', 0.0029710430726424086) + +[fips4562530] +centroid = (0.57920969540911105, -1.4063963992601074) +description = St. George town, SC +station = ('kdyb', 0.0048393608307358343) +zone = ('scz044', 0.0031690394078924731) + +[fips4562620] +centroid = (0.58755880949858386, -1.4098552055052469) +description = St. Matthews town, SC +station = ('kogb', 0.0036072981251408813) +zone = ('scz037', 0.00018030006797172394) + +[fips4562755] +centroid = (0.58301946991353448, -1.3949729051465392) +description = St. Stephen town, SC +station = ('kmks', 0.0042571596320189597) +zone = ('scz045', 0.0032125121626384858) + +[fips4562980] +centroid = (0.60889411570069052, -1.4481959527412351) +description = Salem town, SC +station = ('kceu', 0.0040673131390325766) +zone = ('scz001', 0.0022476278128858492) + +[fips4563115] +centroid = (0.58590802473217007, -1.4190221459756192) +description = Salley town, SC +station = ('kbnl', 0.0057249049353176908) +zone = ('scz030', 0.004832376957443413) + +[fips4563250] +centroid = (0.59343240093690541, -1.4271843178489108) +description = Saluda town, SC +station = ('keoe', 0.0057155460055242123) +zone = ('scz026', 0.00065299509285177495) + +[fips4563665] +centroid = (0.576529881969014, -1.3984501071619948) +description = Sangaree CDP, SC +station = ('kdyb', 0.0023549000425562641) +zone = ('scz052', 0.0032770330571254094) + +[fips4563700] +centroid = (0.60895904194886463, -1.4385526595581162) +description = Sans Souci CDP, SC +station = ('kgmu', 0.0012646100404631595) +zone = ('scz006', 0.0021877741754438296) + +[fips4563790] +centroid = (0.5844506049935847, -1.4048022329746281) +description = Santee town, SC +station = ('kmni', 0.0043101968756260696) +zone = ('scz038', 0.005052479351590429) + +[fips4564240] +centroid = (0.61018670654471752, -1.4306324775856134) +description = Saxon CDP, SC +station = ('kspa', 0.00082311722503375026) +zone = ('scz007', 0.00060457628163340324) + +[fips4564465] +centroid = (0.57038229129142182, -1.4179626089466111) +description = Scotia town, SC +station = ('kjyl', 0.0052247008861754998) +zone = ('scz042', 0.0022512922290751393) + +[fips4564600] +centroid = (0.59197145563323095, -1.3917983606766717) +description = Scranton town, SC +station = ('kcki', 0.0037726215612022495) +zone = ('scz032', 0.0019617296870148757) + +[fips4564712] +centroid = (0.5687519268772564, -1.3994502331832652) +description = Seabrook Island town, SC +station = ('kjzi', 0.0033293690342291616) +zone = ('scz049', 0.0046553547572587015) + +[fips4565005] +centroid = (0.5983392719558398, -1.3870523741081859) +description = Sellers town, SC +station = ('kmao', 0.0027206752197050845) +zone = ('scz024', 0.0023326552318351486) + +[fips4565095] +centroid = (0.60529440902503728, -1.4480292563443773) +description = Seneca city, SC +station = ('kceu', 0.0012115006551649751) +zone = ('scz004', 0.00095896636572916929) + +[fips4565207] +centroid = (0.59421329615083274, -1.4161916408079049) +description = Seven Oaks CDP, SC +station = ('kcae', 0.001713075384826237) +zone = ('scz027', 0.0031390285391611258) + +[fips4565410] +centroid = (0.61002788158278598, -1.419712318975028) +description = Sharon town, SC +station = ('kdcm', 0.0035818262274825655) +zone = ('scz009', 0.0023087455023814156) + +[fips4565680] +centroid = (0.5650559303867706, -1.4094147716685064) +description = Shell Point CDP, SC +station = ('knbc', 0.001961797390755686) +zone = ('scz048', 0.00094474063648564447) + +[fips4565950] +centroid = (0.59250714954054562, -1.3965935131701857) +description = Shiloh CDP, SC +station = ('kcki', 0.0046748466551745031) +zone = ('scz029', 0.0050699129797880608) + +[fips4566400] +centroid = (0.59721192888539165, -1.4261887122304033) +description = Silverstreet town, SC +station = ('keoe', 0.0019368891024355321) +zone = ('scz020', 0.0020762037278528518) + +[fips4566580] +centroid = (0.60613598933705637, -1.4356646108849638) +description = Simpsonville city, SC +station = ('kgyh', 0.0018377585027323678) +zone = ('scz006', 0.0015197728431592071) + +[fips4566760] +centroid = (0.60754871119349818, -1.4453342236332027) +description = Six Mile town, SC +station = ('klqk', 0.0015985281003465896) +zone = ('scz005', 0.0017365453619397353) + +[fips4566917] +centroid = (0.61151954468129555, -1.4397385060650911) +description = Slater-Marietta CDP, SC +station = ('kgmu', 0.0038436657593832308) +zone = ('scz003', 0.0012903149201619853) + +[fips4567165] +centroid = (0.57751990253391516, -1.4104740468981267) +description = Smoaks town, SC +station = ('krbw', 0.0042297793772827332) +zone = ('scz043', 0.0034087296564732391) + +[fips4567210] +centroid = (0.61159836375031562, -1.4208624560455072) +description = Smyrna town, SC +station = ('keho', 0.0045360386861685916) +zone = ('scz008', 0.0030166056688020774) + +[fips4567255] +centroid = (0.58019428800003858, -1.421880558958073) +description = Snelling town, SC +station = ('kbnl', 0.0011421155337783676) +zone = ('scz035', 0.00062894497687359264) + +[fips4567390] +centroid = (0.5879559591698752, -1.3789647452472471) +description = Socastee CDP, SC +station = ('kmyr', 0.0010991479325893811) +zone = ('scz054', 0.0023407004429612955) + +[fips4567435] +centroid = (0.60231122245435853, -1.3937133359319598) +description = Society Hill town, SC +station = ('kbbp', 0.0026198945653861656) +zone = ('scz017', 0.0029888227448447214) + +[fips4567705] +centroid = (0.59183207363916679, -1.4161172199685998) +description = South Congaree town, SC +station = ('kcae', 0.00076909846572429167) +zone = ('scz027', 0.0019547450871730669) + +[fips4567750] +centroid = (0.61055367947324179, -1.4310115630991467) +description = Southern Shops CDP, SC +station = ('kspa', 0.0012840998215243532) +zone = ('scz007', 0.00088748820401509331) + +[fips4568177] +centroid = (0.59141375312404876, -1.4021606073385646) +description = South Sumter CDP, SC +station = ('ksms', 0.0020236862288054817) +zone = ('scz031', 0.0008371676685324399) + +[fips4568290] +centroid = (0.6098580784998594, -1.42989427312519) +description = Spartanburg city, SC +station = ('kspa', 0.00055610512548367249) +zone = ('scz007', 0.00093269708412531177) + +[fips4568380] +centroid = (0.60545668973888767, -1.4098125671116208) +description = Springdale CDP, SC +station = ('klkr', 0.0011789928327317351) +zone = ('scz015', 0.0010192794720797706) + +[fips4568425] +centroid = (0.59271395360361456, -1.4156724926218993) +description = Springdale town, SC +station = ('kcae', 0.0001869763116178712) +zone = ('scz027', 0.0025290010492907177) + +[fips4568470] +centroid = (0.58462834932460783, -1.4185947672016834) +description = Springfield town, SC +station = ('kbnl', 0.0045977286373251446) +zone = ('scz035', 0.0046195217851817197) + +[fips4568875] +centroid = (0.59995324772832903, -1.4434010969536937) +description = Starr town, SC +station = ('kand', 0.0021972600577692177) +zone = ('scz010', 0.0026764179142280192) + +[fips4568920] +centroid = (0.60965457310907689, -1.4328291140755887) +description = Startex CDP, SC +station = ('kspa', 0.0020901204881377017) +zone = ('scz007', 0.0014933416499778706) + +[fips4569010] +centroid = (0.59297327462387572, -1.4054427862634027) +description = Stateburg CDP, SC +station = ('kssc', 0.00063309243768062322) +zone = ('scz031', 0.0023181115644293122) + +[fips4570045] +centroid = (0.58873777940830607, -1.3877657774399386) +description = Stuckey town, SC +station = ('kcki', 0.004894720202768695) +zone = ('scz039', 0.0036816035754925372) + +[fips4570090] +centroid = (0.57194252837624227, -1.3934053900387378) +description = Sullivan's Island town, SC +station = ('klro', 0.0024159724680952151) +zone = ('scz050', 0.0020072977848346342) + +[fips4570225] +centroid = (0.58646893864717609, -1.4024181655762815) +description = Summerton town, SC +station = ('kmni', 0.0020040911913878794) +zone = ('scz038', 0.0022697928622353539) + +[fips4570270] +centroid = (0.57606051057327523, -1.399392899117337) +description = Summerville town, SC +station = ('kdyb', 0.001850575234673967) +zone = ('scz044', 0.0035461922668743747) + +[fips4570315] +centroid = (0.59209659574059903, -1.4210921588283623) +description = Summit town, SC +station = ('kcae', 0.0044517636428134007) +zone = ('scz027', 0.0022130908196604749) + +[fips4570405] +centroid = (0.59237954851893238, -1.4031669292786797) +description = Sumter city, SC +station = ('ksms', 0.0011534813561001056) +zone = ('scz031', 0.00047100091446797976) + +[fips4570585] +centroid = (0.58659907039620474, -1.3784181081255225) +description = Surfside Beach town, SC +station = ('kmyr', 0.0014374760283234153) +zone = ('scz054', 0.0028233214882986395) + +[fips4570675] +centroid = (0.58887925579747269, -1.4155381720826659) +description = Swansea town, SC +station = ('kcae', 0.0036643681391137373) +zone = ('scz027', 0.0037292534330690881) + +[fips4570900] +centroid = (0.57656822685268028, -1.4176006625663324) +description = Sycamore town, SC +station = ('kbnl', 0.0044810670710227832) +zone = ('scz040', 0.0021458117275288805) + +[fips4571305] +centroid = (0.6046487244682619, -1.3890501303298961) +description = Tatum town, SC +station = ('kbbp', 0.0020993519344674754) +zone = ('scz017', 0.001508156553978728) + +[fips4571395] +centroid = (0.60936971792185901, -1.4366486798771156) +description = Taylors CDP, SC +station = ('kgmu', 0.0012357195021911553) +zone = ('scz006', 0.0022242404159873762) + +[fips4571417] +centroid = (0.61154918037199435, -1.4139776731984577) +description = Tega Cay city, SC +station = ('kuza', 0.001096033628362639) +zone = ('scz009', 0.0026723646664215481) + +[fips4571890] +centroid = (0.61200059232973014, -1.4376262736977425) +description = Tigerville CDP, SC +station = ('kgmu', 0.0037641462100207411) +zone = ('scz003', 0.0011365698355689454) + +[fips4571980] +centroid = (0.59575702242092921, -1.3952487020749391) +description = Timmonsville town, SC +station = ('kflo', 0.0031305686910045047) +zone = ('scz023', 0.0034639447594603497) + +[fips4572430] +centroid = (0.6103024742340023, -1.4388697160700334) +description = Travelers Rest city, SC +station = ('kgmu', 0.002434425817825579) +zone = ('scz003', 0.0022699686739695423) + +[fips4572520] +centroid = (0.5888838285601129, -1.4283938135672505) +description = Trenton town, SC +station = ('kaik', 0.0027022164982788248) +zone = ('scz025', 0.0019057703630216861) + +[fips4572655] +centroid = (0.59327108015414354, -1.4363687814249733) +description = Troy town, SC +station = ('kgrd', 0.0047241444653405044) +zone = ('scz018', 0.0016208325839495584) + +[fips4572745] +centroid = (0.59148848812261923, -1.3965455689756334) +description = Turbeville town, SC +station = ('kcki', 0.0038196193371269368) +zone = ('scz038', 0.0048704814784642) + +[fips4572880] +centroid = (0.57770340645146989, -1.4173788312184039) +description = Ulmer town, SC +station = ('kbnl', 0.0037127809015003129) +zone = ('scz040', 0.0029185463432986045) + +[fips4573105] +centroid = (0.60604146230476841, -1.4246219999740579) +description = Union city, SC +station = ('kspa', 0.0057497826979238022) +zone = ('scz013', 0.00060573497133993245) + +[fips4573330] +centroid = (0.6052589962945143, -1.4473339171703827) +description = Utica CDP, SC +station = ('kceu', 0.00064962614705571487) +zone = ('scz004', 0.001221570668181396) + +[fips4573465] +centroid = (0.61096281955649434, -1.4306261245871363) +description = Valley Falls CDP, SC +station = ('kspa', 0.0015752415895578589) +zone = ('scz007', 0.0013337876239176865) + +[fips4573510] +centroid = (0.58357485113481156, -1.403597414738684) +description = Vance town, SC +station = ('kmni', 0.0039181846402697668) +zone = ('scz038', 0.0049821448100217831) + +[fips4573600] +centroid = (0.57337612437053775, -1.415116936867697) +description = Varnville town, SC +station = ('krbw', 0.006821129728569947) +zone = ('scz042', 0.0015910033562991142) + +[fips4573870] +centroid = (0.60881857785066418, -1.4369595055636033) +description = Wade Hampton CDP, SC +station = ('kgmu', 0.00062847817895073858) +zone = ('scz006', 0.0016525357309861977) + +[fips4574050] +centroid = (0.58735031246614056, -1.4200702685513196) +description = Wagener town, SC +station = ('kaik', 0.0047360614279451894) +zone = ('scz027', 0.0045539309639596346) + +[fips4574095] +centroid = (0.60684234153863104, -1.4495907326129664) +description = Walhalla city, SC +station = ('kceu', 0.0030523862542485456) +zone = ('scz001', 0.0010793069560026225) + +[fips4574140] +centroid = (0.60603317199082141, -1.3934757093543007) +description = Wallace CDP, SC +station = ('kcqw', 0.0014316154851345343) +zone = ('scz017', 0.0031396424494627997) + +[fips4574275] +centroid = (0.57422793231197367, -1.4080454037906842) +description = Walterboro city, SC +station = ('krbw', 0.00082249004334328691) +zone = ('scz043', 0.00050507941437416613) + +[fips4574590] +centroid = (0.59092130847559865, -1.4264808803471871) +description = Ward town, SC +station = ('kaik', 0.0036673973468509106) +zone = ('scz026', 0.0025978958949146001) + +[fips4574635] +centroid = (0.60431533167454599, -1.4378863975694598) +description = Ware Place CDP, SC +station = ('kgyh', 0.0023621300995414038) +zone = ('scz006', 0.0029383994985885875) + +[fips4574680] +centroid = (0.600224873319817, -1.4354346637560134) +description = Ware Shoals town, SC +station = ('kgrd', 0.0030594529111130698) +zone = ('scz012', 0.0037973547762986662) + +[fips4574725] +centroid = (0.58550614521860578, -1.4277096445004687) +description = Warrenville CDP, SC +station = ('kaik', 0.00242246305638059) +zone = ('scz030', 0.0024287599712752165) + +[fips4574995] +centroid = (0.59959987091467781, -1.4322123670778113) +description = Waterloo town, SC +station = ('kgrd', 0.0024838951038175265) +zone = ('scz012', 0.0023815960225087589) + +[fips4575220] +centroid = (0.60242468630903068, -1.4309177341985595) +description = Watts Mills CDP, SC +station = ('klux', 0.00058585335350527746) +zone = ('scz012', 0.00064351192466155819) + +[fips4575445] +centroid = (0.59133243823419834, -1.4052671014208968) +description = Wedgefield CDP, SC +station = ('kssc', 0.0015701245010910684) +zone = ('scz031', 0.0020310083518243443) + +[fips4575535] +centroid = (0.60755173061310408, -1.439332996266683) +description = Welcome CDP, SC +station = ('kgyh', 0.0015318919274220108) +zone = ('scz006', 0.0019348567163149459) + +[fips4575580] +centroid = (0.60992532603593885, -1.4328958031063073) +description = Wellford city, SC +station = ('kgsp', 0.0020108448439885322) +zone = ('scz007', 0.0015693656705322585) + +[fips4575850] +centroid = (0.59324542381413925, -1.415376956019659) +description = West Columbia city, SC +station = ('kcae', 0.00077191378448790817) +zone = ('scz027', 0.0029909561924296437) + +[fips4576165] +centroid = (0.60504592649943079, -1.450202453062498) +description = Westminster city, SC +station = ('ktoc', 0.0032250048394372945) +zone = ('scz004', 0.0016593502875239335) + +[fips4576345] +centroid = (0.60466338523397867, -1.4394038740876063) +description = West Pelzer town, SC +station = ('kgyh', 0.0024054564665620761) +zone = ('scz006', 0.0031772392140016013) + +[fips4576435] +centroid = (0.6066094971631224, -1.4493919221578717) +description = West Union town, SC +station = ('kceu', 0.0027849736163125267) +zone = ('scz001', 0.0013620342036060851) + +[fips4577380] +centroid = (0.60220920795957944, -1.4244376582984624) +description = Whitmire town, SC +station = ('keoe', 0.0034069539462294215) +zone = ('scz013', 0.0032323886040468318) + +[fips4577672] +centroid = (0.58454329943015815, -1.4107246936320055) +description = Wilkinson Heights CDP, SC +station = ('kogb', 0.00053918297744111484) +zone = ('scz036', 0.0010103054673014716) + +[fips4577785] +centroid = (0.57655456092463719, -1.4109738044761426) +description = Williams town, SC +station = ('krbw', 0.0039167938519063744) +zone = ('scz043', 0.0028834878701859724) + +[fips4577875] +centroid = (0.60422436511393207, -1.4395199559361564) +description = Williamston town, SC +station = ('kgyh', 0.0028297603702962704) +zone = ('scz010', 0.0028852001058537013) + +[fips4577920] +centroid = (0.5928028432224185, -1.439029082084033) +description = Willington CDP, SC +station = ('kiiy', 0.0062139144752413698) +zone = ('scz018', 0.0023324041063993691) + +[fips4577965] +centroid = (0.58296899499156674, -1.4210802207762785) +description = Williston town, SC +station = ('kbnl', 0.0026875846095402536) +zone = ('scz035', 0.0023737205621915205) + +[fips4578190] +centroid = (0.58435682845287507, -1.4226690114476614) +description = Windsor town, SC +station = ('kaik', 0.0039131759935955657) +zone = ('scz030', 0.0020886777763765444) + +[fips4578460] +centroid = (0.59990146380942244, -1.4152989747086799) +description = Winnsboro town, SC +station = ('kfdw', 0.00099841748987956045) +zone = ('scz021', 0.00059882532613711405) + +[fips4578505] +centroid = (0.5996274820234444, -1.4149551797526221) +description = Winnsboro Mills CDP, SC +station = ('kfdw', 0.00094709905446830798) +zone = ('scz021', 0.00099323485855374411) + +[fips4578820] +centroid = (0.59444507587549755, -1.4125056276007406) +description = Woodfield CDP, SC +station = ('kcub', 0.0019014918720607721) +zone = ('scz028', 0.00076436735350931715) + +[fips4578910] +centroid = (0.58762975713267751, -1.4156706425728922) +description = Woodford town, SC +station = ('kcae', 0.0049099997702832625) +zone = ('scz027', 0.0046915996961651753) + +[fips4579090] +centroid = (0.60633195490547032, -1.4316824153037357) +description = Woodruff city, SC +station = ('kspa', 0.0032820694852722996) +zone = ('scz007', 0.0033799248437890029) + +[fips4579450] +centroid = (0.57059672244332194, -1.4111795438883676) +description = Yemassee town, SC +station = ('knbc', 0.0041808698364710992) +zone = ('scz047', 0.004368327457319552) + +[fips4579630] +centroid = (0.61079840954095643, -1.4178350079249977) +description = York city, SC +station = ('kuza', 0.002668436091947609) +zone = ('scz009', 0.00082580035349432259) + +[fips4600100] +centroid = (0.79350832445903052, -1.7185926229961985) +description = Aberdeen city, SD +station = ('kabr', 0.00067983322902598212) +zone = ('sdz006', 0.002607337298722443) + +[fips46003] +centroid = (0.76314031105932245, -1.7205034618211594) +description = Aurora County, SD +station = ('kmhe', 0.0069011738254199781) +zone = ('sdz058', 0.00023153806862288021) + +[fips4600302740] +centroid = (0.75995433468285445, -1.7170783404305832) +description = Aurora township, SD +station = ('kmhe', 0.0058875798979632198) +zone = ('sdz064', 0.0027133750252356648) + +[fips4600304300] +centroid = (0.76619626040651689, -1.7174282265857304) +description = Belford township, SD +station = ('kmhe', 0.0051838850317534897) +zone = ('sdz058', 0.0037575299843373997) + +[fips4600307260] +centroid = (0.76593706155930319, -1.7191802753553449) +description = Bristol township, SD +station = ('kmhe', 0.0062493309024047091) +zone = ('sdz058', 0.0030065109890338279) + +[fips4600310900] +centroid = (0.75995297332603795, -1.7211708059139521) +description = Center township, SD +station = ('kmhe', 0.0083346035256741703) +zone = ('sdz058', 0.0031489649926807633) + +[fips4600313820] +centroid = (0.76466194146108879, -1.7211370861528035) +description = Cooper township, SD +station = ('kmhe', 0.0073571186654906419) +zone = ('sdz058', 0.0017632279448662636) + +[fips4600314960] +centroid = (0.76157799703269224, -1.7209728681234835) +description = Crystal Lake township, SD +station = ('kmhe', 0.0075631430410466475) +zone = ('sdz058', 0.0015463713202015974) + +[fips4600317180] +centroid = (0.76163009511086432, -1.7170009699848423) +description = Dudley township, SD +station = ('kmhe', 0.0048807036469536427) +zone = ('sdz059', 0.0029844605974250408) + +[fips4600320100] +centroid = (0.76292696201155863, -1.721490969111938) +description = Eureka township, SD +station = ('kmhe', 0.007635155152313995) +zone = ('sdz058', 0.00092082660135378233) + +[fips4600321420] +centroid = (0.76459493827110458, -1.7193724186526971) +description = Firesteel township, SD +station = ('kmhe', 0.0060839924914097851) +zone = ('sdz058', 0.0016847930525163565) + +[fips4600323300] +centroid = (0.76146891395444261, -1.7232401904481642) +description = Gales township, SD +station = ('kmhe', 0.0091670335872218282) +zone = ('sdz058', 0.0026803044752349453) + +[fips4600330020] +centroid = (0.76311402640078752, -1.7170754606373173) +description = Hopper township, SD +station = ('kmhe', 0.0044509410254127361) +zone = ('sdz059', 0.0030833271784180142) + +[fips4600334780] +centroid = (0.76469492818395135, -1.7235309972081314) +description = Lake township, SD +station = ('kmhe', 0.00907994627337224) +zone = ('sdz058', 0.0029130073291880089) + +[fips4600348180] +centroid = (0.76459581093573059, -1.7170320193922353) +description = Palatine township, SD +station = ('kmhe', 0.0044110965227792866) +zone = ('sdz058', 0.0027889648349438767) + +[fips4600348660] +centroid = (0.76591522749036078, -1.7233472140378965) +description = Patten township, SD +station = ('kmhe', 0.0091360407627831541) +zone = ('sdz052', 0.0034786190646350149) + +[fips4600350020] +centroid = (0.76297783835925437, -1.7188652783319451) +description = Plankinton city, SD +station = ('kmhe', 0.0057492535813771731) +zone = ('sdz058', 0.00098355701544552694) + +[fips4600350060] +centroid = (0.76313467364583853, -1.7190792033383619) +description = Plankinton township, SD +station = ('kmhe', 0.0058798115517064648) +zone = ('sdz058', 0.00083470615722352223) + +[fips4600350620] +centroid = (0.76146214207694485, -1.7191224875038114) +description = Pleasant Lake township, SD +station = ('kmhe', 0.0063449344265794037) +zone = ('sdz058', 0.0017557247203481162) + +[fips4600350700] +centroid = (0.76619386930544175, -1.721346263863655) +description = Pleasant Valley township, SD +station = ('kmhe', 0.0078129922725414663) +zone = ('sdz052', 0.0029103174381210979) + +[fips4600361700] +centroid = (0.76077687345273437, -1.7180608560797008) +description = Stickney town, SD +station = ('kmhe', 0.005968864942891128) +zone = ('sdz058', 0.0027407027146817736) + +[fips4600364220] +centroid = (0.75994529387732912, -1.7191157330796063) +description = Truro township, SD +station = ('kmhe', 0.0070614137145853266) +zone = ('sdz064', 0.0031729339025749243) + +[fips4600368900] +centroid = (0.75995700503661012, -1.7232498770255127) +description = Washington township, SD +station = ('kmhe', 0.0096863379744227939) +zone = ('sdz058', 0.0037705930428842474) + +[fips4600371180] +centroid = (0.76319898902877459, -1.7228414699805461) +description = White Lake city, SD +station = ('kmhe', 0.0085774703325842954) +zone = ('sdz058', 0.0018991452333271181) + +[fips4600371220] +centroid = (0.76304473682948326, -1.7233692226397641) +description = White Lake township, SD +station = ('kmhe', 0.0089711583728214039) +zone = ('sdz058', 0.0022729397993559472) + +[fips4600460] +centroid = (0.78259095837524817, -1.7466099222395652) +description = Agar town, SD +station = ('kpir', 0.0083724243124522115) +zone = ('sdz034', 0.0022779766567927553) + +[fips46005] +centroid = (0.77524497227335909, -1.7152995008569505) +description = Beadle County, SD +station = ('khon', 0.00083785198031689084) +zone = ('sdz038', 6.7454381895870296e-05) + +[fips4600500860] +centroid = (0.77680896181607118, -1.7193589796174567) +description = Allen township, SD +station = ('khon', 0.0040966235998202653) +zone = ('sdz038', 0.0033375141608401517) + +[fips4600501300] +centroid = (0.77822796685782014, -1.7174457496914206) +description = Altoona township, SD +station = ('khon', 0.0041639476364128932) +zone = ('sdz038', 0.0034182809752110318) + +[fips4600503500] +centroid = (0.77513854209557242, -1.7089041955986228) +description = Banner township, SD +station = ('khon', 0.0040262745120724207) +zone = ('sdz038', 0.0045531730234544326) + +[fips4600503700] +centroid = (0.77806097375498939, -1.7090402440138159) +description = Barrett township, SD +station = ('khon', 0.0051848025091608147) +zone = ('sdz038', 0.005301095725868254) + +[fips4600504460] +centroid = (0.77210418247122525, -1.7089181233260538) +description = Belle Prairie township, SD +station = ('khon', 0.0047256667710363015) +zone = ('sdz053', 0.0043596098735802797) + +[fips4600506380] +centroid = (0.77824081248111487, -1.719564596856634) +description = Bonilla township, SD +station = ('khon', 0.0051068389225268794) +zone = ('sdz038', 0.0043265924181971633) + +[fips4600507420] +centroid = (0.77656374305616604, -1.7164712101969846) +description = Broadland town, SD +station = ('khon', 0.0023894883322240516) +zone = ('sdz038', 0.001625428835186652) + +[fips4600507460] +centroid = (0.77681955596463081, -1.7173280446866661) +description = Broadland township, SD +station = ('khon', 0.0029768034251843765) +zone = ('sdz038', 0.002197963753847532) + +[fips4600508780] +centroid = (0.7721168186550097, -1.7216454831106169) +description = Burr Oak township, SD +station = ('khon', 0.0057027380330759436) +zone = ('sdz052', 0.0030175935826822564) + +[fips4600509980] +centroid = (0.77201410602852982, -1.7171625176604071) +description = Carlyle township, SD +station = ('khon', 0.0032425447010280355) +zone = ('sdz038', 0.0034402725633801159) + +[fips4600510620] +centroid = (0.77439087795060313, -1.7111573807563625) +description = Cavour town, SD +station = ('khon', 0.0023981627833026659) +zone = ('sdz038', 0.0030483126871916687) + +[fips4600510660] +centroid = (0.77515342975409207, -1.7109989572201589) +description = Cavour township, SD +station = ('khon', 0.0025511463360142874) +zone = ('sdz038', 0.0030567715954728999) + +[fips4600512900] +centroid = (0.77212952465196427, -1.7131093744450854) +description = Clifton township, SD +station = ('khon', 0.0026948279314836818) +zone = ('sdz038', 0.0034216895292044219) + +[fips4600513060] +centroid = (0.77352950560486633, -1.7154019865906276) +description = Clyde township, SD +station = ('khon', 0.0012819149860104604) +zone = ('sdz038', 0.0016521276652475254) + +[fips4600515060] +centroid = (0.77352186106274268, -1.7129399902411795) +description = Custer township, SD +station = ('khon', 0.0015736275467813855) +zone = ('sdz038', 0.0023539143536309725) + +[fips4600515740] +centroid = (0.77368244880721859, -1.7173167000465279) +description = Dearborn township, SD +station = ('khon', 0.0022311664015262299) +zone = ('sdz038', 0.0020889739440514972) + +[fips4600520] +centroid = (0.79553575127802467, -1.6944200921087573) +description = Agency Village CDP, SD +station = ('k8d3', 0.0019306479290092278) +zone = ('sdz008', 0.001877050610896253) + +[fips4600520460] +centroid = (0.77670117028146812, -1.7152256734295912) +description = Fairfield township, SD +station = ('khon', 0.0021306997077298541) +zone = ('sdz038', 0.0015223709012291747) + +[fips4600522380] +centroid = (0.77676974426777889, -1.708801482972143) +description = Foster township, SD +station = ('khon', 0.0045911591502898405) +zone = ('sdz038', 0.0048886210950889611) + +[fips4600525580] +centroid = (0.77201258759208058, -1.7150427803772748) +description = Grant township, SD +station = ('khon', 0.0026518324870766995) +zone = ('sdz038', 0.0031711475436357827) + +[fips4600527660] +centroid = (0.77517254110940137, -1.7173573313115145) +description = Hartland township, SD +station = ('khon', 0.0021144199009498258) +zone = ('sdz038', 0.0014851536213202755) + +[fips4600529500] +centroid = (0.77892939723090415, -1.717547205680839) +description = Hitchcock town, SD +station = ('khon', 0.0048142670976245748) +zone = ('sdz038', 0.0040842041025350734) + +[fips4600531060] +centroid = (0.77426896670235135, -1.7140945429946661) +description = Huron city, SD +station = ('khon', 0.00046495126083021562) +zone = ('sdz038', 0.0012426092327938664) + +[fips4600531780] +centroid = (0.7769088993690404, -1.7132404137653252) +description = Iowa township, SD +station = ('khon', 0.0024436710321805812) +zone = ('sdz038', 0.0022598051233629788) + +[fips4600532020] +centroid = (0.77434679093369774, -1.7079014341301819) +description = Iroquois city, SD +station = ('khon', 0.0047218205938898096) +zone = ('sdz038', 0.005336642815063998) + +[fips4600533500] +centroid = (0.77208566452786165, -1.719604634709675) +description = Kellogg township, SD +station = ('khon', 0.0044574097247835299) +zone = ('sdz052', 0.0032524528248515437) + +[fips4600535140] +centroid = (0.77831203936788873, -1.7130273788768267) +description = Lake Byron township, SD +station = ('khon', 0.003822922896199833) +zone = ('sdz038', 0.0035201083672299315) + +[fips4600536740] +centroid = (0.77668321084346503, -1.7109889041236674) +description = Liberty township, SD +station = ('khon', 0.0032342474816464341) +zone = ('sdz038', 0.0034110007748717397) + +[fips4600538180] +centroid = (0.77362115284388855, -1.708911648154529) +description = Logan township, SD +station = ('khon', 0.0041191329240494717) +zone = ('sdz038', 0.0048103750958265485) + +[fips4600540] +centroid = (0.79117565700715509, -1.7474386743815824) +description = Akaska town, SD +station = ('kmbg', 0.005265780974651595) +zone = ('sdz009', 0.0020433714629264151) + +[fips4600542340] +centroid = (0.77821585427281137, -1.711142091672115) +description = Milford township, SD +station = ('khon', 0.0043061065905199572) +zone = ('sdz038', 0.0042335904538284459) + +[fips4600544500] +centroid = (0.77812413722061902, -1.721509103082866) +description = Nance township, SD +station = ('khon', 0.0061002945705039453) +zone = ('sdz037', 0.0046396167630700013) + +[fips4600548780] +centroid = (0.77211397376832891, -1.7110162708863388) +description = Pearl Creek township, SD +station = ('khon', 0.0035431199568517245) +zone = ('sdz053', 0.0038270805691102698) + +[fips4600551020] +centroid = (0.77810909248246674, -1.7151745003759227) +description = Pleasant View township, SD +station = ('khon', 0.003507448174062898) +zone = ('sdz038', 0.0029307648776907584) + +[fips4600554420] +centroid = (0.77362699969688276, -1.7110058338174117) +description = Richland township, SD +station = ('khon', 0.0026909707733048464) +zone = ('sdz038', 0.0034258744043171555) + +[fips4600557500] +centroid = (0.77365588489600323, -1.7215950780018192) +description = Sand Creek township, SD +station = ('khon', 0.0051702237223909811) +zone = ('sdz052', 0.0045539509480340785) + +[fips4600563300] +centroid = (0.77521029258112195, -1.7152834787344171) +description = Theresa township, SD +station = ('khon', 0.00080491999404442465) +zone = ('sdz038', 3.126252254522403e-05) + +[fips4600565980] +centroid = (0.77528563844493048, -1.7126341736496451) +description = Valley township, SD +station = ('khon', 0.0014800711556478409) +zone = ('sdz038', 0.0018914920574432514) + +[fips4600566860] +centroid = (0.77377182711821324, -1.7193095344397478) +description = Vernon township, SD +station = ('khon', 0.0035488598958019358) +zone = ('sdz038', 0.0032069136264029595) + +[fips4600567500] +centroid = (0.77302267944337977, -1.7178856948359706) +description = Virgil town, SD +station = ('khon', 0.0029123161576349449) +zone = ('sdz038', 0.0028508290850744753) + +[fips4600570140] +centroid = (0.77588863224820204, -1.722572828902079) +description = Wessington city, SD +station = ('khon', 0.0059039742712358526) +zone = ('sdz037', 0.0041708688454517385) + +[fips4600570180] +centroid = (0.77516824759944136, -1.7215910986511247) +description = Wessington township, SD +station = ('khon', 0.0050979457755528732) +zone = ('sdz037', 0.0051121335755018862) + +[fips4600571460] +centroid = (0.77671284653416384, -1.7216016753463919) +description = Whiteside township, SD +station = ('khon', 0.0054825973433605072) +zone = ('sdz037', 0.0046042158955442785) + +[fips4600572540] +centroid = (0.77511403767287457, -1.7186936426533039) +description = Wolsey town, SD +station = ('khon', 0.0030378523737917443) +zone = ('sdz038', 0.0024406039976955806) + +[fips4600572580] +centroid = (0.77517842286898053, -1.7195323082654723) +description = Wolsey township, SD +station = ('khon', 0.003639762800644159) +zone = ('sdz038', 0.003038710351578286) + +[fips4600573020] +centroid = (0.77551767996898313, -1.7102231234610625) +description = Yale town, SD +station = ('khon', 0.0031767657426634717) +zone = ('sdz038', 0.0036260259167674724) + +[fips4600620] +centroid = (0.78629329041091867, -1.6851770901895831) +description = Albee town, SD +station = ('kvvv', 0.0047134468646112867) +zone = ('sdz021', 0.003376969439819061) + +[fips46007] +centroid = (0.75371740060085279, -1.7745884053603682) +description = Bennett County, SD +station = ('kien', 0.011027822076027026) +zone = ('sdz044', 0.00023731950765060257) + +[fips4600700] +centroid = (0.75089438289562949, -1.6864798213965642) +description = Alcester city, SD +station = ('korc', 0.0072005077751253511) +zone = ('sdz071', 0.0033470542590773303) + +[fips4600717710] +centroid = (0.75381260831154906, -1.7706885195066642) +description = East Bennett UT, SD +station = ('kien', 0.013826691521507778) +zone = ('sdz044', 0.0026850630086404648) + +[fips4600741100] +centroid = (0.75354658522696005, -1.7755602395944634) +description = Martin city, SD +station = ('kien', 0.010298857028344155) +zone = ('sdz044', 0.00093467293012790482) + +[fips4600770270] +centroid = (0.75392711936377232, -1.7784875756290786) +description = West Bennett UT, SD +station = ('kien', 0.008360916142894987) +zone = ('sdz044', 0.003002133353891278) + +[fips4600820] +centroid = (0.76190671234401286, -1.7065814939767763) +description = Alexandria city, SD +station = ('kmhe', 0.0037530607339644755) +zone = ('sdz060', 0.00037446223442750897) + +[fips46009] +centroid = (0.75024777331435055, -1.7084262371829644) +description = Bon Homme County, SD +station = ('kykn', 0.0065296384943716295) +zone = ('sdz068', 4.2958525536385397e-05) + +[fips4600900] +centroid = (0.75536342061840867, -1.7789531945669255) +description = Allen CDP, SD +station = ('kien', 0.0086523206222563539) +zone = ('sdz044', 0.0036484615881361912) + +[fips4600902900] +centroid = (0.75058167225354966, -1.7114575773877057) +description = Avon city, SD +station = ('kykn', 0.0087708721703850939) +zone = ('sdz068', 0.0022478708131891214) + +[fips4600945550] +centroid = (0.75180827219855872, -1.7062913853485098) +description = Northeast Bon Homme UT, SD +station = ('kykn', 0.0055861370632557094) +zone = ('sdz068', 0.0021695222214614877) + +[fips4600945790] +centroid = (0.75179905686010828, -1.7100701802587102) +description = Northwest Bon Homme UT, SD +station = ('kykn', 0.0080996113622325179) +zone = ('sdz068', 0.0019370293604027873) + +[fips4600957940] +centroid = (0.75308042523704488, -1.7055421678605061) +description = Scotland city, SD +station = ('kykn', 0.0059022413469613892) +zone = ('sdz065', 0.0032834887724716268) + +[fips4600959846] +centroid = (0.74923186951664233, -1.70592839177068) +description = Southeast Bon Homme UT, SD +station = ('kykn', 0.0045944780340470047) +zone = ('sdz068', 0.0021016790865733149) + +[fips4600959950] +centroid = (0.74849961662896802, -1.7101336229770203) +description = Southwest Bon Homme UT, SD +station = ('kykn', 0.0076911540857316878) +zone = ('sdz068', 0.0021895367413559395) + +[fips4600960660] +centroid = (0.74809143647680409, -1.7086162162720437) +description = Springfield city, SD +station = ('kykn', 0.0066298503820299602) +zone = ('sdz068', 0.0022028499101369157) + +[fips4600962820] +centroid = (0.74957981835631993, -1.7044774646569121) +description = Tabor town, SD +station = ('kykn', 0.0035687996178079442) +zone = ('sdz069', 0.0035445044801247893) + +[fips4600964860] +centroid = (0.75031477650433476, -1.7080529112559626) +description = Tyndall city, SD +station = ('kykn', 0.006274444673502042) +zone = ('sdz068', 0.00026268143949987824) + +[fips4601020] +centroid = (0.77114542075322712, -1.7168517966936745) +description = Alpena town, SD +station = ('khon', 0.0038763010181439073) +zone = ('sdz038', 0.0041881140956734775) + +[fips46011] +centroid = (0.77451908983745466, -1.6894402663270895) +description = Brookings County, SD +station = ('kbkx', 0.0013588034681443829) +zone = ('sdz040', 0.00015201025636882385) + +[fips4601100380] +centroid = (0.77513999071885165, -1.687865717542403) +description = Afton township, SD +station = ('kbkx', 0.0023856485483336127) +zone = ('sdz040', 0.0012731665942030599) + +[fips4601101260] +centroid = (0.77362935589137294, -1.6857451250479372) +description = Alton township, SD +station = ('kbkx', 0.0029143757242852406) +zone = ('sdz040', 0.002664444468376174) + +[fips4601102100] +centroid = (0.77679882145311718, -1.6876804333890112) +description = Argo township, SD +station = ('kbkx', 0.0039137434256466177) +zone = ('sdz040', 0.0026693917203606502) + +[fips4601102180] +centroid = (0.77426727373297699, -1.6951384172690007) +description = Arlington city, SD +station = ('kbkx', 0.0039910922671861932) +zone = ('sdz039', 0.0045836936119758422) + +[fips4601102780] +centroid = (0.77286910792249686, -1.6874989016935114) +description = Aurora town, SD +station = ('kbkx', 0.0016549995112492449) +zone = ('sdz040', 0.0020048827255468322) + +[fips4601102820] +centroid = (0.77369768553158846, -1.6876663136753625) +description = Aurora township, SD +station = ('kbkx', 0.001591202028611405) +zone = ('sdz040', 0.0013696516461821821) + +[fips4601103460] +centroid = (0.77350744464312116, -1.6939906014864266) +description = Bangor township, SD +station = ('kbkx', 0.003038059272003118) +zone = ('sdz040', 0.003461610225048884) + +[fips4601107580] +centroid = (0.77322302578821622, -1.6892227808489986) +description = Brookings city, SD +station = ('kbkx', 0.00039361456105053885) +zone = ('sdz040', 0.0011760954079769544) + +[fips4601107620] +centroid = (0.77378578975222922, -1.6901664803755518) +description = Brookings township, SD +station = ('kbkx', 0.00066826159522500911) +zone = ('sdz040', 0.00086402446615858766) + +[fips4601107740] +centroid = (0.77558445626616457, -1.6910431243522437) +description = Bruce city, SD +station = ('kbkx', 0.002570227799518513) +zone = ('sdz040', 0.0017138225736050975) + +[fips4601108820] +centroid = (0.773664402102753, -1.6867246212774489) +description = Bushnell town, SD +station = ('kbkx', 0.0022317701561095954) +zone = ('sdz040', 0.0019907233864614893) + +[fips4601118700] +centroid = (0.77205213675293072, -1.6838788793853647) +description = Elkton city, SD +station = ('kpqn', 0.0048466440411610622) +zone = ('mnz071', 0.0040722190775280068) + +[fips4601118740] +centroid = (0.7721509398418861, -1.6842473532970457) +description = Elkton township, SD +station = ('kpqn', 0.0050513116386996272) +zone = ('mnz071', 0.0041768311907862061) + +[fips4601120140] +centroid = (0.77667446674391249, -1.6899550686432578) +description = Eureka township, SD +station = ('kbkx', 0.0034961201680432175) +zone = ('sdz040', 0.0023228208694302077) + +[fips4601135380] +centroid = (0.77620340237879926, -1.6840357146719491) +description = Lake Hendricks township, SD +station = ('kcnb', 0.0050631952766392986) +zone = ('mnz071', 0.0029502750441866721) + +[fips4601135580] +centroid = (0.7719930573577507, -1.6939183972152714) +description = Lake Sinai township, SD +station = ('kbkx', 0.0031996237656357648) +zone = ('sdz055', 0.0037828415762090478) + +[fips4601135620] +centroid = (0.77685418329699041, -1.6946793433158485) +description = Laketon township, SD +station = ('kbkx', 0.0050789989888927215) +zone = ('sdz022', 0.0030621852701167361) + +[fips4601140] +centroid = (0.78261925016242295, -1.6875615066537801) +description = Altamont town, SD +station = ('kcnb', 0.0056761127211456524) +zone = ('sdz023', 0.0014363193775101465) + +[fips4601141780] +centroid = (0.77203695238843839, -1.6900507126862672) +description = Medary township, SD +station = ('kbkx', 0.0011614831081060433) +zone = ('sdz040', 0.002418738905875495) + +[fips4601146340] +centroid = (0.77666076590928435, -1.6859060269516786) +description = Oak Lake township, SD +station = ('kbkx', 0.0044418150466893581) +zone = ('sdz040', 0.0033227987390585948) + +[fips4601146440] +centroid = (0.77504103055026352, -1.6922548017321482) +description = Oakwood township, SD +station = ('kbkx', 0.0025725561338627006) +zone = ('sdz040', 0.0021986585832726928) + +[fips4601147860] +centroid = (0.77199298754458068, -1.6922963405683455) +description = Oslo township, SD +station = ('kbkx', 0.002164490004404546) +zone = ('sdz040', 0.0032155870502606253) + +[fips4601148540] +centroid = (0.77211530021856045, -1.6857523856176255) +description = Parnell township, SD +station = ('kbkx', 0.0030675996721969859) +zone = ('sdz040', 0.0034205742056993751) + +[fips4601151900] +centroid = (0.77679096747148313, -1.6918953860792849) +description = Preston township, SD +station = ('kbkx', 0.0039165544982800553) +zone = ('sdz040', 0.0030214822830527824) + +[fips4601154460] +centroid = (0.77400725458101483, -1.6840581246995445) +description = Richland township, SD +station = ('kbkx', 0.0041687443072667375) +zone = ('sdz040', 0.0037772563525202618) + +[fips4601158460] +centroid = (0.77514255635285201, -1.6857324365042752) +description = Sherman township, SD +station = ('kbkx', 0.0034900899404879159) +zone = ('sdz040', 0.0026648561610446765) + +[fips4601158900] +centroid = (0.7722120961788761, -1.6937378603574453) +description = Sinai town, SD +station = ('kbkx', 0.0030020017442642928) +zone = ('sdz040', 0.0038473611257075851) + +[fips4601161620] +centroid = (0.77515098629313917, -1.6899478778867396) +description = Sterling township, SD +station = ('kbkx', 0.0019742468658729669) +zone = ('sdz040', 0.00087968082520109212) + +[fips4601163980] +centroid = (0.77199169600093409, -1.6876740803905339) +description = Trenton township, SD +station = ('kbkx', 0.0019146722657904845) +zone = ('sdz040', 0.002676347689763635) + +[fips4601167700] +centroid = (0.77359832393727246, -1.6916171980498096) +description = Volga city, SD +station = ('kbkx', 0.0013863863562066736) +zone = ('sdz040', 0.0018313510251872435) + +[fips4601167740] +centroid = (0.77357559975041157, -1.6919388273243672) +description = Volga township, SD +station = ('kbkx', 0.0016016052214277224) +zone = ('sdz040', 0.0020498001052981461) + +[fips4601170940] +centroid = (0.77556572888329056, -1.686800106767598) +description = White city, SD +station = ('kbkx', 0.0031927671422089222) +zone = ('sdz040', 0.0021419515606136284) + +[fips4601172260] +centroid = (0.7750394946605218, -1.6943159308589983) +description = Winsor township, SD +station = ('kbkx', 0.0037446419186684169) +zone = ('sdz022', 0.0048643101892809721) + +[fips46013] +centroid = (0.79568258582799489, -1.716569280247654) +description = Brown County, SD +station = ('kabr', 0.0025551966855764351) +zone = ('sdz006', 1.1837751060684328e-05) + +[fips4601300100] +centroid = (0.79350832445903052, -1.7185926229961985) +description = Aberdeen city, SD +station = ('kabr', 0.00067983322902598212) +zone = ('sdz006', 0.002607337298722443) + +[fips4601300140] +centroid = (0.79332232472064546, -1.7195139299484488) +description = Aberdeen township, SD +station = ('kabr', 0.0012780089708306821) +zone = ('sdz006', 0.0031466587433545711) + +[fips4601300980] +centroid = (0.79950785885617592, -1.7219897318522803) +description = Allison township, SD +station = ('kabr', 0.0069393215701617885) +zone = ('sdz006', 0.0053800655773321559) + +[fips4601303780] +centroid = (0.79037683726180974, -1.7110859618833709) +description = Bates township, SD +station = ('kabr', 0.0054613093065470266) +zone = ('sdz006', 0.0065575667099998592) + +[fips4601303940] +centroid = (0.79341014968860579, -1.7164376998753461) +description = Bath township, SD +station = ('kabr', 0.00089591801511971299) +zone = ('sdz006', 0.0022835539201354052) + +[fips4601306700] +centroid = (0.79808607874091642, -1.7171152366909703) +description = Brainard township, SD +station = ('kabr', 0.0048509227849782436) +zone = ('sdz006', 0.0024252983910128282) + +[fips4601309180] +centroid = (0.79491865521439709, -1.7154624797025018) +description = Cambria township, SD +station = ('kabr', 0.0022859899573914443) +zone = ('sdz006', 0.0010898488276809726) + +[fips4601309860] +centroid = (0.79627016837397135, -1.7217295207141003) +description = Carlisle township, SD +station = ('kabr', 0.0041346370250550006) +zone = ('sdz006', 0.00366293953015903) + +[fips4601312100] +centroid = (0.79711663560789614, -1.710695235023727) +description = Claremont town, SD +station = ('kabr', 0.0062411641207970291) +zone = ('sdz007', 0.0053048218654710389) + +[fips4601312140] +centroid = (0.79633895179979242, -1.7117309308551527) +description = Claremont township, SD +station = ('kabr', 0.0051940695565688647) +zone = ('sdz006', 0.0034390683690832423) + +[fips4601313420] +centroid = (0.79612886651772985, -1.7158443577428382) +description = Columbia city, SD +station = ('kabr', 0.0031552978343545811) +zone = ('sdz006', 0.00066401138999634907) + +[fips4601313460] +centroid = (0.79656247611709541, -1.7145877555879872) +description = Columbia township, SD +station = ('kabr', 0.0039615099979790408) +zone = ('sdz006', 0.0016307093884161512) + +[fips4601317820] +centroid = (0.79187677322097372, -1.7113376732680934) +description = East Hanson township, SD +station = ('kabr', 0.004670008684005602) +zone = ('sdz006', 0.005287770531155706) + +[fips4601317900] +centroid = (0.79024368609317508, -1.7156489506797847) +description = East Rondell township, SD +station = ('kabr', 0.0033342372131203992) +zone = ('sdz006', 0.0054857471835354403) + +[fips4601322820] +centroid = (0.79811578424478524, -1.7218164206575572) +description = Franklyn township, SD +station = ('kabr', 0.0056545361828770849) +zone = ('sdz006', 0.0044017167186118583) + +[fips4601322860] +centroid = (0.79991905842794586, -1.7192699503723123) +description = Frederick town, SD +station = ('kabr', 0.0067572478802399791) +zone = ('sdz006', 0.0046313959151081247) + +[fips4601322900] +centroid = (0.79948832862184616, -1.7198272514557669) +description = Frederick township, SD +station = ('kabr', 0.0064119879745296775) +zone = ('sdz006', 0.0044295535618955181) + +[fips4601323500] +centroid = (0.79035896509026937, -1.7133190583014202) +description = Garden Prairie township, SD +station = ('kabr', 0.0042215690690852294) +zone = ('sdz006', 0.0057975656421790983) + +[fips4601323780] +centroid = (0.79661808230706388, -1.7172924399699252) +description = Garland township, SD +station = ('kabr', 0.0033777159207105082) +zone = ('sdz006', 0.0010584990649927324) + +[fips4601324020] +centroid = (0.79188801314135659, -1.7163651639916333) +description = Gem township, SD +station = ('kabr', 0.001652947886897137) +zone = ('sdz006', 0.0038065352873975162) + +[fips4601325820] +centroid = (0.79935404298919777, -1.7155933444898162) +description = Greenfield township, SD +station = ('kabr', 0.006276398884139776) +zone = ('sdz006', 0.0037235577892897748) + +[fips4601326340] +centroid = (0.79328141420297871, -1.7121693226566688) +description = Groton city, SD +station = ('kabr', 0.0038763969983757608) +zone = ('sdz006', 0.0039079432091076085) + +[fips4601326380] +centroid = (0.7933922949703579, -1.7114849441503768) +description = Groton township, SD +station = ('kabr', 0.004358399898960438) +zone = ('sdz006', 0.0042341430110995311) + +[fips4601327980] +centroid = (0.80079437595440595, -1.713073647555297) +description = Hecla city, SD +station = ('k2d5', 0.0051516613747943129) +zone = ('sdz006', 0.0056525797425942027) + +[fips4601328020] +centroid = (0.80092033636652249, -1.7130140794679265) +description = Hecla township, SD +station = ('k2d5', 0.0050205499302370749) +zone = ('sdz006', 0.0057841264554164395) + +[fips4601328100] +centroid = (0.79339468607143326, -1.7140224434432665) +description = Henry township, SD +station = ('kabr', 0.0025800773654211266) +zone = ('sdz006', 0.0029046523122080526) + +[fips4601328660] +centroid = (0.79184284402031491, -1.7219388555045847) +description = Highland township, SD +station = ('kabr', 0.0032959139565949189) +zone = ('sdz006', 0.0053893142701692915) + +[fips4601335860] +centroid = (0.79934456585135938, -1.7134955983552593) +description = Lansing township, SD +station = ('k2d5', 0.006630429155452598) +zone = ('sdz006', 0.0042331534442458059) + +[fips4601336780] +centroid = (0.80110909372512573, -1.7152722388140345) +description = Liberty township, SD +station = ('k2d5', 0.0053320457730628712) +zone = ('ndz051', 0.0045818207768650717) + +[fips4601337260] +centroid = (0.79531995876930817, -1.7199603328112314) +description = Lincoln township, SD +station = ('kabr', 0.0026069891365543118) +zone = ('sdz006', 0.0024094157128807183) + +[fips4601342020] +centroid = (0.79356618212373409, -1.7223054619139662) +description = Mercier township, SD +station = ('kabr', 0.0032491678268008321) +zone = ('sdz006', 0.0045523916947627068) + +[fips4601344980] +centroid = (0.79052927431867892, -1.7221292709259772) +description = New Hope township, SD +station = ('kabr', 0.004137423524812384) +zone = ('sdz006', 0.0064751904717409168) + +[fips4601345540] +centroid = (0.79961058893594839, -1.7112567423506784) +description = North Detroit township, SD +station = ('k2d5', 0.0062734260731002215) +zone = ('sdz006', 0.0053914866733182501) + +[fips4601347100] +centroid = (0.79810407308550446, -1.7199995503595236) +description = Oneota township, SD +station = ('kabr', 0.0051129596580209496) +zone = ('sdz006', 0.0034057715397736647) + +[fips4601347420] +centroid = (0.79506444256681619, -1.7176290965293424) +description = Ordway township, SD +station = ('kabr', 0.0018128838003335359) +zone = ('sdz006', 0.00097716029708378458) + +[fips4601347740] +centroid = (0.80088515052880216, -1.719640117253368) +description = Osceola township, SD +station = ('kabr', 0.0077531005291807953) +zone = ('ndz051', 0.0039000982596156192) + +[fips4601348260] +centroid = (0.80099669452129718, -1.7220305725567768) +description = Palmyra township, SD +station = ('kabr', 0.0083160438183537116) +zone = ('ndz051', 0.0042496688059335099) + +[fips4601351380] +centroid = (0.80085993052111093, -1.7109575754635942) +description = Portage township, SD +station = ('k2d5', 0.0050474670123601588) +zone = ('sdz006', 0.0064800813829780082) + +[fips4601351720] +centroid = (0.79428845172808704, -1.7177426301971848) +description = Prairiewood township, SD +station = ('kabr', 0.0010368475727409272) +zone = ('sdz006', 0.00163004286008026) + +[fips4601352460] +centroid = (0.79491286072128042, -1.7132965261007769) +description = Putney township, SD +station = ('kabr', 0.0035018123769425791) +zone = ('sdz006', 0.0024133943686416551) + +[fips4601353180] +centroid = (0.79486645241646992, -1.7221233018999353) +description = Ravinia township, SD +station = ('kabr', 0.0034988028982563721) +zone = ('sdz006', 0.0039818557804898362) + +[fips4601354500] +centroid = (0.79935407789578283, -1.717475978794065) +description = Richland township, SD +station = ('kabr', 0.0061038528057500829) +zone = ('sdz006', 0.0037175233585820693) + +[fips4601354980] +centroid = (0.79490870683766068, -1.71114420352051) +description = Riverside township, SD +station = ('kabr', 0.004881313414979555) +zone = ('sdz006', 0.0038710078189740137) + +[fips4601357660] +centroid = (0.80087197329294968, -1.7174765722060108) +description = Savo township, SD +station = ('k2d5', 0.0063582875863203974) +zone = ('ndz051', 0.0040884138982165714) + +[fips4601358380] +centroid = (0.79782502984469561, -1.7138579461612657) +description = Shelby township, SD +station = ('kabr', 0.0053031068887387017) +zone = ('sdz006', 0.0028486723848327325) + +[fips4601359840] +centroid = (0.79793201852784279, -1.7114672116051766) +description = South Detroit township, SD +station = ('kabr', 0.0063951222516036134) +zone = ('sdz006', 0.0042054259403847792) + +[fips4601362020] +centroid = (0.79093869365461189, -1.7157344019999625) +description = Stratford town, SD +station = ('kabr', 0.0026922175628768296) +zone = ('sdz006', 0.004788508250069861) + +[fips4601366660] +centroid = (0.78966006544460066, -1.712153859039496) +description = Verdon town, SD +station = ('kabr', 0.0052979591892445433) +zone = ('sdz018', 0.0061490280334697582) + +[fips4601368740] +centroid = (0.79107352033932832, -1.7190662180887271) +description = Warner town, SD +station = ('kabr', 0.002382011253462683) +zone = ('sdz006', 0.0049420313210548038) + +[fips4601368780] +centroid = (0.7912336717514914, -1.7196517760527714) +description = Warner township, SD +station = ('kabr', 0.0024418756956533397) +zone = ('sdz006', 0.0049580676593154243) + +[fips4601370380] +centroid = (0.79187439957319095, -1.7133099825893097) +description = West Hanson township, SD +station = ('kabr', 0.0033725415298133253) +zone = ('sdz006', 0.0044458130884192778) + +[fips4601370540] +centroid = (0.79670451101162276, -1.7191164661178922) +description = Westport town, SD +station = ('kabr', 0.003593039346668242) +zone = ('sdz006', 0.0020552404063726125) + +[fips4601370580] +centroid = (0.79668985024590588, -1.7196151939516493) +description = Westport township, SD +station = ('kabr', 0.0036913857055375131) +zone = ('sdz006', 0.0023588345332698239) + +[fips4601370620] +centroid = (0.79034549114844399, -1.7175790928462729) +description = West Rondell township, SD +station = ('kabr', 0.0029077918434631256) +zone = ('sdz006', 0.0053943029621947025) + +[fips4601450] +centroid = (0.7596066301892721, -1.686279544864898) +description = Anderson CDP, SD +station = ('kfsd', 0.0019948441138217662) +zone = ('sdz062', 0.0034508915876316163) + +[fips46015] +centroid = (0.76323038750201799, -1.7294980859344822) +description = Brule County, SD +station = ('k9v9', 0.0028928787827035992) +zone = ('sdz057', 0.00025486384848700226) + +[fips4601500] +centroid = (0.79255780069510195, -1.7087420196045275) +description = Andover town, SD +station = ('kabr', 0.0063211615487368334) +zone = ('sdz011', 0.0037075076163869932) + +[fips4601501340] +centroid = (0.75996239810399868, -1.7322637695737775) +description = America township, SD +station = ('k9v9', 0.0039959457774723321) +zone = ('sdz057', 0.0037432862204831176) + +[fips4601507780] +centroid = (0.76300302346036064, -1.733843013294152) +description = Brule township, SD +station = ('k9v9', 0.00092574831631134333) +zone = ('sdz057', 0.003291024055539056) + +[fips4601511220] +centroid = (0.76422653417259367, -1.7335539518634369) +description = Chamberlain city, SD +station = ('k9v9', 0.00037052801171832804) +zone = ('sdz057', 0.0033063566193474473) + +[fips4601511260] +centroid = (0.76478544095895984, -1.7330075590878076) +description = Chamberlain township, SD +station = ('k9v9', 0.00095655149543770121) +zone = ('sdz057', 0.0032106409115113485) + +[fips4601512780] +centroid = (0.76474152847497967, -1.7294405947889215) +description = Cleveland township, SD +station = ('k9v9', 0.0029893159584214878) +zone = ('sdz057', 0.0017201967680021304) + +[fips4601517500] +centroid = (0.75968616484328555, -1.7296561254982503) +description = Eagle township, SD +station = ('k9v9', 0.0049875017602733695) +zone = ('sdz057', 0.0033491450147439586) + +[fips4601525300] +centroid = (0.76145797074003274, -1.733388267757545) +description = Grandview UT, SD +station = ('k9v9', 0.00241448818821937) +zone = ('sdz057', 0.0033530565854551948) + +[fips4601528700] +centroid = (0.76159922023639648, -1.7272377100202245) +description = Highland township, SD +station = ('k9v9', 0.0050032895204939016) +zone = ('sdz057', 0.0020578373735727867) + +[fips4601533980] +centroid = (0.76352681422217672, -1.7271241065392122) +description = Kimball city, SD +station = ('k9v9', 0.004548162307303657) +zone = ('sdz057', 0.0016433469167612938) + +[fips4601534020] +centroid = (0.76322143396295528, -1.7275074855627053) +description = Kimball township, SD +station = ('k9v9', 0.0043081959291554678) +zone = ('sdz057', 0.0013028806125537776) + +[fips4601539700] +centroid = (0.76626741748012073, -1.7279723714622663) +description = Lyon township, SD +station = ('k9v9', 0.0045913150204223239) +zone = ('sdz057', 0.0033790962003117497) + +[fips4601546740] +centroid = (0.76135155801553855, -1.7317436614566832) +description = Ola township, SD +station = ('k9v9', 0.0027917659489819151) +zone = ('sdz057', 0.0024393518437447201) + +[fips4601549860] +centroid = (0.76286880764088216, -1.7249807549513005) +description = Plainfield township, SD +station = ('k9v9', 0.0061672370865723846) +zone = ('sdz057', 0.0031184024064627408) + +[fips4601550580] +centroid = (0.75981716925694032, -1.7275453417541811) +description = Pleasant Grove township, SD +station = ('k9v9', 0.0058658341500924934) +zone = ('sdz057', 0.0034471857582836578) + +[fips4601551180] +centroid = (0.76605926951352787, -1.7253908200590566) +description = Plummer township, SD +station = ('k9v9', 0.0061797681396670657) +zone = ('sdz057', 0.0041383010325309524) + +[fips4601552220] +centroid = (0.76409079991666606, -1.7310920427804513) +description = Pukwana town, SD +station = ('k9v9', 0.0016828213944148995) +zone = ('sdz057', 0.0016827270510177672) + +[fips4601552260] +centroid = (0.76471664007984619, -1.7313934262356856) +description = Pukwana township, SD +station = ('k9v9', 0.0016783109999893193) +zone = ('sdz057', 0.0022738711716929444) + +[fips4601553660] +centroid = (0.76287959377565961, -1.7314950567580292) +description = Red Lake township, SD +station = ('k9v9', 0.0016987262322445554) +zone = ('sdz057', 0.0016006456310619019) + +[fips4601554540] +centroid = (0.76134483849791834, -1.7293141805911996) +description = Richland township, SD +station = ('k9v9', 0.0038894881148839643) +zone = ('sdz057', 0.0016800427205500932) + +[fips4601559540] +centroid = (0.76284737499766775, -1.7298479895429222) +description = Smith township, SD +station = ('k9v9', 0.0027654321360878306) +zone = ('sdz057', 0.00044083054288812673) + +[fips4601563780] +centroid = (0.75985736418961369, -1.7253556516746289) +description = Torrey Lake township, SD +station = ('k9v9', 0.0070726594962862719) +zone = ('sdz057', 0.0042592777671330963) + +[fips4601564940] +centroid = (0.76595880836178309, -1.7297304241645077) +description = Union township, SD +station = ('k9v9', 0.003372299128445189) +zone = ('sdz057', 0.0029512143832017179) + +[fips4601568220] +centroid = (0.76462656363715076, -1.7275790091554519) +description = Waldro township, SD +station = ('k9v9', 0.0042713279126716606) +zone = ('sdz057', 0.002022865606345185) + +[fips4601570500] +centroid = (0.7661755782548807, -1.7323390456244161) +description = West Point township, SD +station = ('k9v9', 0.0024276197879829079) +zone = ('sdz051', 0.0031657016723585021) + +[fips4601571700] +centroid = (0.76160091320577106, -1.7251520066575061) +description = Wilbur township, SD +station = ('k9v9', 0.0063827838134566358) +zone = ('sdz057', 0.0033140079440472404) + +[fips4601571900] +centroid = (0.76462919908432125, -1.725190368994465) +description = Willow Lake township, SD +station = ('k9v9', 0.0059766831340806086) +zone = ('sdz057', 0.0033672925262281999) + +[fips46017] +centroid = (0.76871815645589359, -1.7314363962418695) +description = Buffalo County, SD +station = ('k9v9', 0.0050485922938347284) +zone = ('sdz051', 0.00055854203892748134) + +[fips4601714830] +centroid = (0.76903217609491237, -1.7334741379567431) +description = Crow Creek UT, SD +station = ('k9v9', 0.005159995794598287) +zone = ('sdz051', 0.0014719782561304401) + +[fips4601719300] +centroid = (0.7690752508208516, -1.727853357460573) +description = Elvira township, SD +station = ('k9v9', 0.0065612610806966036) +zone = ('sdz051', 0.0025947414217480534) + +[fips4601740] +centroid = (0.75589597293306965, -1.7563237790843427) +description = Antelope CDP, SD +station = ('kvtn', 0.0077983522689185347) +zone = ('sdz047', 0.0023197165793994038) + +[fips4601745510] +centroid = (0.77080605893346932, -1.7299833398264144) +description = North Buffalo UT, SD +station = ('k9v9', 0.0073574876125243223) +zone = ('sdz051', 0.0018584481897601524) + +[fips4601759850] +centroid = (0.7674787108875899, -1.7281789486325323) +description = Southeast Buffalo UT, SD +station = ('k9v9', 0.0052141837482013011) +zone = ('sdz051', 0.0029626607295773336) + +[fips46019] +centroid = (0.78359061315762035, -1.8064465285155513) +description = Butte County, SD +station = ('kspf', 0.0080118518135318065) +zone = ('sdz012', 0.00018126038206223082) + +[fips4601904380] +centroid = (0.77953263538027096, -1.8126880528134857) +description = Belle Fourche city, SD +station = ('kspf', 0.0032907368072515528) +zone = ('sdz025', 0.003019550069227103) + +[fips4601917720] +centroid = (0.78341185653563106, -1.8019487103134066) +description = East Butte UT, SD +station = ('kspf', 0.0097066521873918118) +zone = ('sdz012', 0.0032824522609744586) + +[fips4601923140] +centroid = (0.77962477131148378, -1.8098273709030044) +description = Fruitdale town, SD +station = ('kspf', 0.0034231074120424591) +zone = ('sdz025', 0.0030400198624761466) + +[fips4601944860] +centroid = (0.78046694503544856, -1.8049902606942723) +description = Newell city, SD +station = ('kspf', 0.0061051816097426196) +zone = ('sdz012', 0.0034699827468964032) + +[fips4601945180] +centroid = (0.77969175704817517, -1.80735549598999) +description = Nisland town, SD +station = ('kspf', 0.0043707174710694973) +zone = ('sdz025', 0.0039966297232224626) + +[fips4601964980] +centroid = (0.78446287635788958, -1.7978447605635597) +description = Union township, SD +station = ('k2wx', 0.013201887191153014) +zone = ('sdz012', 0.0062091084336903237) + +[fips4601965940] +centroid = (0.77875783136543308, -1.8046795222742471) +description = Vale township, SD +station = ('kspf', 0.0053217216003492284) +zone = ('sdz072', 0.0049933625485108993) + +[fips4601970290] +centroid = (0.78395482846592646, -1.8108097643790744) +description = West Butte UT, SD +station = ('kspf', 0.0075843223804602867) +zone = ('sdz012', 0.0030183758335395657) + +[fips46021] +centroid = (0.79905084439154128, -1.7458170889735545) +description = Campbell County, SD +station = ('kmbg', 0.0062376593948632996) +zone = ('sdz004', 0.00034840410580757843) + +[fips4602102340] +centroid = (0.80088317830674749, -1.741957258426184) +description = Artas town, SD +station = ('k7l2', 0.007879552802780479) +zone = ('sdz004', 0.0036025556291135906) + +[fips4602128340] +centroid = (0.80001775679714604, -1.7466370795627264) +description = Herreid city, SD +station = ('kmbg', 0.0065237429570275491) +zone = ('sdz004', 0.0011952656302296706) + +[fips4602144020] +centroid = (0.79807239535958074, -1.7465306842915249) +description = Mound City town, SD +station = ('kmbg', 0.0052413539032179135) +zone = ('sdz004', 0.00081130742615565009) + +[fips4602145520] +centroid = (0.80069361809668838, -1.7462659003907048) +description = North Campbell UT, SD +station = ('k7l2', 0.0064412830632039559) +zone = ('sdz004', 0.0018373764381410167) + +[fips4602151260] +centroid = (0.80111511511104505, -1.7503649632186462) +description = Pollock town, SD +station = ('k7l2', 0.0056099499360166881) +zone = ('sdz004', 0.0036599171290753068) + +[fips4602159760] +centroid = (0.79715094878099035, -1.7459134486015571) +description = South Campbell UT, SD +station = ('kmbg', 0.0051502046380182557) +zone = ('sdz004', 0.001719850242591577) + +[fips4602180] +centroid = (0.77428991065337527, -1.695314486083942) +description = Arlington city, SD +station = ('kbkx', 0.0041184191538576383) +zone = ('sdz039', 0.004457231499587563) + +[fips4602260] +centroid = (0.75606509533758781, -1.716429200121889) +description = Armour city, SD +station = ('kmhe', 0.0087416396895931003) +zone = ('sdz064', 0.0012153112697519553) + +[fips46023] +centroid = (0.75409018547578621, -1.7208098718246394) +description = Charles Mix County, SD +station = ('kmhe', 0.012095563549364939) +zone = ('sdz063', 9.688124691486698e-05) + +[fips4602307940] +centroid = (0.75282551989979107, -1.7152956087727187) +description = Bryan township, SD +station = ('kmhe', 0.011477755732822852) +zone = ('sdz063', 0.0041372146119475796) + +[fips4602310100] +centroid = (0.7585437072215151, -1.7236917245789476) +description = Carroll township, SD +station = ('k9v9', 0.0088220144929433749) +zone = ('sdz063', 0.0049351635486296046) + +[fips4602310340] +centroid = (0.75706415670801452, -1.7279960032203385) +description = Castalia UT, SD +station = ('k9v9', 0.0078547972188759314) +zone = ('sdz050', 0.0039356751800851781) + +[fips4602311940] +centroid = (0.7531080014392264, -1.7132709570272351) +description = Choteau Creek township, SD +station = ('kykn', 0.01074973342019557) +zone = ('sdz068', 0.0045337197562039574) + +[fips4602315420] +centroid = (0.75120234624214388, -1.7136745120568813) +description = Dante town, SD +station = ('konl', 0.011872407581482735) +zone = ('sdz068', 0.0039559361144195547) + +[fips4602315460] +centroid = (0.75716001019053392, -1.7237052508806505) +description = Darlington township, SD +station = ('k9v9', 0.0097168086642199954) +zone = ('sdz063', 0.0037520814165529779) + +[fips4602322020] +centroid = (0.75858269787700461, -1.725865008563531) +description = Forbes township, SD +station = ('k9v9', 0.0076002125335531004) +zone = ('sdz057', 0.0050876941124523888) + +[fips4602323980] +centroid = (0.7549114850618972, -1.7226021678868051) +description = Geddes city, SD +station = ('k9v9', 0.011901950184089629) +zone = ('sdz063', 0.0016064263054798387) + +[fips4602324900] +centroid = (0.75432309966446487, -1.7204346434887534) +description = Goose Lake township, SD +station = ('kmhe', 0.011746934123840617) +zone = ('sdz063', 0.00027218502399485551) + +[fips4602326700] +centroid = (0.75599521235433798, -1.7275438233177318) +description = Hamilton township, SD +station = ('k9v9', 0.008949192998252236) +zone = ('sdz050', 0.0033719212476846817) + +[fips4602328740] +centroid = (0.751157770533048, -1.7175374492903202) +description = Highland township, SD +station = ('konl', 0.010581858760682343) +zone = ('sdz063', 0.0037480885923780417) + +[fips4602330380] +centroid = (0.75443750599693304, -1.7177868742937228) +description = Howard township, SD +station = ('kmhe', 0.010640702418751065) +zone = ('sdz063', 0.0021346568858125565) + +[fips4602332220] +centroid = (0.75374443575096606, -1.7234871370840288) +description = Jackson township, SD +station = ('k9v9', 0.012423694559916969) +zone = ('sdz063', 0.0020781296746609046) + +[fips4602333660] +centroid = (0.75417371693378665, -1.7155199533947698) +description = Kennedy township, SD +station = ('kmhe', 0.010237054282115977) +zone = ('sdz064', 0.0032150757412325163) + +[fips4602335100] +centroid = (0.75320593186355578, -1.7197899537696515) +description = Lake Andes city, SD +station = ('konl', 0.012168464352181023) +zone = ('sdz063', 0.0011225993153233193) + +[fips4602335340] +centroid = (0.7585714055967443, -1.7280952950014845) +description = Lake George township, SD +station = ('k9v9', 0.0065472551072521422) +zone = ('sdz057', 0.0045366242764029287) + +[fips4602336020] +centroid = (0.75834857941114209, -1.7307026074644538) +description = La Roche township, SD +station = ('k9v9', 0.0058596575566841952) +zone = ('sdz050', 0.004508994265414467) + +[fips4602336100] +centroid = (0.75102596326793725, -1.7156333474362722) +description = Lawrence township, SD +station = ('konl', 0.011009134232071307) +zone = ('sdz063', 0.0048127023944094837) + +[fips4602338620] +centroid = (0.75110130913174589, -1.7134446347411012) +description = Lone Tree township, SD +station = ('konl', 0.011879493576437148) +zone = ('sdz068', 0.003769709451913344) + +[fips4602340] +centroid = (0.80088317830674749, -1.741957258426184) +description = Artas town, SD +station = ('k7l2', 0.007879552802780479) +zone = ('sdz004', 0.0036025556291135906) + +[fips4602343580] +centroid = (0.7557420348930437, -1.7206672435181667) +description = Moore township, SD +station = ('kmhe', 0.010731983303638164) +zone = ('sdz063', 0.0016219600103514996) + +[fips4602349460] +centroid = (0.75167491159041389, -1.7196741686270745) +description = Pickstown town, SD +station = ('konl', 0.010673937802197437) +zone = ('sdz063', 0.0025537127562952925) + +[fips4602349820] +centroid = (0.75283288518923452, -1.7176462531158896) +description = Plain Center township, SD +station = ('kmhe', 0.012046579639555249) +zone = ('sdz063', 0.0025619395569339409) + +[fips4602350260] +centroid = (0.75724298314317373, -1.7251457758320765) +description = Platte city, SD +station = ('k9v9', 0.0089292485235455722) +zone = ('sdz063', 0.004505526281863367) + +[fips4602350300] +centroid = (0.75725558442037322, -1.725889321000011) +description = Platte township, SD +station = ('k9v9', 0.0085679688085412587) +zone = ('sdz050', 0.0051059493763377234) + +[fips4602353220] +centroid = (0.75287390042665636, -1.717872308160608) +description = Ravinia town, SD +station = ('kmhe', 0.01207578893416454) +zone = ('sdz063', 0.0023992217759974776) + +[fips4602353900] +centroid = (0.74949489063491792, -1.7152923101004323) +description = Ree township, SD +station = ('konl', 0.0097967390133385599) +zone = ('sdz063', 0.0060745704121085101) + +[fips4602354340] +centroid = (0.75569154251778348, -1.723557735652272) +description = Rhoda township, SD +station = ('k9v9', 0.010856820468613889) +zone = ('sdz063', 0.0026176064046272156) + +[fips4602356500] +centroid = (0.74932981739426419, -1.7135673662941013) +description = Rouse township, SD +station = ('konl', 0.010393208242417346) +zone = ('sdz068', 0.0038940455730208669) + +[fips4602358740] +centroid = (0.75390919483235441, -1.7253405720298916) +description = Signal township, SD +station = ('k9v9', 0.011553668582814612) +zone = ('sdz050', 0.0042104143210425797) + +[fips4602368020] +centroid = (0.751804589553837, -1.7155602705004911) +description = Wagner city, SD +station = ('konl', 0.011732398871595098) +zone = ('sdz063', 0.0043972610539831872) + +[fips4602368060] +centroid = (0.74974935963985856, -1.7173200859852771) +description = Wahehe township, SD +station = ('konl', 0.0093291899633107765) +zone = ('nez007', 0.0048510159033648675) + +[fips4602371500] +centroid = (0.75232590194811533, -1.7200900631345319) +description = White Swan township, SD +station = ('konl', 0.011265402244796073) +zone = ('sdz063', 0.0018456951837023613) + +[fips4602380] +centroid = (0.76808266462194996, -1.7090911378148039) +description = Artesian town, SD +station = ('kmhe', 0.0044302888750287189) +zone = ('sdz053', 0.0021223260036034824) + +[fips46025] +centroid = (0.78287111862677816, -1.705621475621717) +description = Clark County, SD +station = ('katy', 0.0071531524660632595) +zone = ('sdz019', 7.7094647923378284e-05) + +[fips4602502500] +centroid = (0.78565741460453953, -1.7089010540059693) +description = Ash township, SD +station = ('kabr', 0.0097995397077330522) +zone = ('sdz019', 0.0035503789420438902) + +[fips4602505900] +centroid = (0.78725636309216918, -1.7028724075169006) +description = Blaine township, SD +station = ('katy', 0.0062863463402798433) +zone = ('sdz011', 0.0045772560041034676) + +[fips4602506660] +centroid = (0.78697608066759128, -1.7041734283012149) +description = Bradley town, SD +station = ('katy', 0.0069217123926701204) +zone = ('sdz019', 0.0041944917664362797) + +[fips4602512180] +centroid = (0.78332743495971213, -1.7057944377505894) +description = Clark city, SD +station = ('katy', 0.0072385479224311676) +zone = ('sdz019', 0.00040947468291619533) + +[fips4602513180] +centroid = (0.77819335697875314, -1.7047470133065901) +description = Collins township, SD +station = ('khon', 0.0078118912850025793) +zone = ('sdz039', 0.0044310221017681926) + +[fips4602514140] +centroid = (0.7875466462533609, -1.7051597662213942) +description = Cottonwood township, SD +station = ('katy', 0.0078075794222911866) +zone = ('sdz011', 0.0044045469067237582) + +[fips4602515500] +centroid = (0.78123586729070726, -1.7068554408561694) +description = Darlington township, SD +station = ('khon', 0.0085548082659078848) +zone = ('sdz019', 0.001875508475171964) + +[fips4602515580] +centroid = (0.7826201751869265, -1.7047794764306772) +description = Day township, SD +station = ('katy', 0.0065958126491181442) +zone = ('sdz019', 0.00072056960087529538) + +[fips4602518020] +centroid = (0.78413381198071852, -1.7026744697264318) +description = Eden township, SD +station = ('katy', 0.0050418619501204935) +zone = ('sdz019', 0.0024625415884527158) + +[fips4602519220] +centroid = (0.78288382462373274, -1.7024669151717846) +description = Elrod township, SD +station = ('katy', 0.0049352008722912521) +zone = ('sdz019', 0.0022932708389084774) + +[fips4602522060] +centroid = (0.78110163401793631, -1.7086458170561576) +description = Fordham township, SD +station = ('khon', 0.0076927171753408304) +zone = ('sdz019', 0.0027716621818500353) + +[fips4602522540] +centroid = (0.78122351035960302, -1.7026210801046135) +description = Foxton township, SD +station = ('katy', 0.0055483785400249827) +zone = ('sdz019', 0.0027686519295273045) + +[fips4602523460] +centroid = (0.78468718607335586, -1.7030994748525849) +description = Garden City town, SD +station = ('katy', 0.0054180242352747316) +zone = ('sdz019', 0.0025509848191225927) + +[fips4602523540] +centroid = (0.78401687492083494, -1.7067508432740972) +description = Garfield township, SD +station = ('khon', 0.010879518846081168) +zone = ('sdz019', 0.0013223331594902849) + +[fips4602526580] +centroid = (0.77971893182462881, -1.7068562960675027) +description = Hague township, SD +station = ('khon', 0.0074497221672472106) +zone = ('sdz019', 0.0033075732535156241) + +[fips4602530] +centroid = (0.77027036502615476, -1.7998584865479259) +description = Ashland Heights CDP, SD +station = ('krca', 0.00042207715341315764) +zone = ('sdz026', 0.0026236352202870638) + +[fips4602534820] +centroid = (0.77985466608055642, -1.7046011561410011) +description = Lake township, SD +station = ('khon', 0.0087740701582665389) +zone = ('sdz019', 0.0031664994553527608) + +[fips4602537300] +centroid = (0.78262715650393455, -1.7070394509192071) +description = Lincoln township, SD +station = ('khon', 0.0095936765315238655) +zone = ('sdz019', 0.00099366771641438501) + +[fips4602538220] +centroid = (0.7826320783324251, -1.7088009419200749) +description = Logan township, SD +station = ('khon', 0.0089654421805029517) +zone = ('sdz019', 0.0022165477613008844) + +[fips4602540] +centroid = (0.78527696773418987, -1.7191337972373644) +description = Ashton city, SD +station = ('kabr', 0.0080393207527231537) +zone = ('sdz018', 0.0021168034008907971) + +[fips4602541460] +centroid = (0.78590029462324706, -1.7028369424265) +description = Maydell township, SD +station = ('katy', 0.0056001614446088803) +zone = ('sdz019', 0.003601895331542634) + +[fips4602542060] +centroid = (0.78135229820510776, -1.7045753427213639) +description = Merton township, SD +station = ('katy', 0.0067762833690761344) +zone = ('sdz019', 0.0017624732302485933) + +[fips4602544060] +centroid = (0.78426472912791068, -1.7047920253479989) +description = Mount Pleasant township, SD +station = ('katy', 0.0065466837929634859) +zone = ('sdz019', 0.0014881462391996925) + +[fips4602544620] +centroid = (0.7814126167840566, -1.7019235767223462) +description = Naples town, SD +station = ('katy', 0.0050206886893901775) +zone = ('sdz019', 0.0030764856962165223) + +[fips4602550340] +centroid = (0.779698563832258, -1.7026433679591613) +description = Pleasant township, SD +station = ('katy', 0.0063808281143855426) +zone = ('sdz019', 0.0038875810736995185) + +[fips4602553260] +centroid = (0.78383691402166178, -1.7093276124751566) +description = Raymond town, SD +station = ('khon', 0.0099088511670933754) +zone = ('sdz019', 0.0027267936439999106) + +[fips4602553300] +centroid = (0.78414807132070741, -1.7088801275082379) +description = Raymond township, SD +station = ('khon', 0.010317250935430049) +zone = ('sdz019', 0.0025633149854861676) + +[fips4602554580] +centroid = (0.77972317297471117, -1.7089707973628789) +description = Richland township, SD +station = ('khon', 0.0064339791978932524) +zone = ('sdz019', 0.0039532572958347308) + +[fips4602556020] +centroid = (0.77815541352081474, -1.7068447943477321) +description = Rosedale township, SD +station = ('khon', 0.0064947281421020783) +zone = ('sdz019', 0.0048365753015739829) + +[fips4602560980] +centroid = (0.78752221164383285, -1.7073485138231503) +description = Spring Valley township, SD +station = ('kabr', 0.0092639529299559879) +zone = ('sdz019', 0.004744135446850645) + +[fips4602563380] +centroid = (0.78565409847896084, -1.7049480228765421) +description = Thorp township, SD +station = ('katy', 0.0069196112019894564) +zone = ('sdz019', 0.0027824208488370864) + +[fips4602567220] +centroid = (0.78021738040570598, -1.7016963697603218) +description = Vienna town, SD +station = ('katy', 0.0055309519471581298) +zone = ('sdz022', 0.0039019359988742759) + +[fips4602568820] +centroid = (0.78729805900799932, -1.7090791474028428) +description = Warren township, SD +station = ('kabr', 0.0084972894857285666) +zone = ('sdz019', 0.0049845714568821503) + +[fips4602568980] +centroid = (0.77793370434593401, -1.7024450287429647) +description = Washington township, SD +station = ('katy', 0.0075125529166433338) +zone = ('sdz039', 0.0035955790738490209) + +[fips4602571940] +centroid = (0.77890381070406989, -1.7041055698998973) +description = Willow Lake city, SD +station = ('katy', 0.0076897108380776557) +zone = ('sdz019', 0.0041762638900505675) + +[fips4602572660] +centroid = (0.78581918917290694, -1.7072275275994018) +description = Woodland township, SD +station = ('kabr', 0.010467898507651272) +zone = ('sdz019', 0.0030907833818268268) + +[fips4602580] +centroid = (0.77767913062123806, -1.6850542888234128) +description = Astoria town, SD +station = ('kcnb', 0.004446617481217237) +zone = ('sdz023', 0.0038389885070688997) + +[fips46027] +centroid = (0.74897308954844899, -1.6926167306591342) +description = Clay County, SD +station = ('kykn', 0.005158504213285166) +zone = ('sdz070', 5.9351869384610948e-05) + +[fips4602705100] +centroid = (0.74967308875154648, -1.6947418959162399) +description = Bethel township, SD +station = ('kykn', 0.0036562689179051779) +zone = ('sdz070', 0.0017430059286722955) + +[fips4602720580] +centroid = (0.74650945258950396, -1.6904947244479747) +description = Fairview township, SD +station = ('kykn', 0.0071795368539789963) +zone = ('sdz070', 0.0029100881341587747) + +[fips4602723580] +centroid = (0.74967626525078501, -1.6906092878600754) +description = Garfield township, SD +station = ('kykn', 0.0066568701715719603) +zone = ('sdz070', 0.00157000579229509) + +[fips4602724660] +centroid = (0.75131409967414908, -1.6904338299103725) +description = Glenwood township, SD +station = ('kykn', 0.0071231483482372474) +zone = ('sdz070', 0.0027813952607033446) + +[fips4602731940] +centroid = (0.75191580193377405, -1.6957010067000884) +description = Irene city, SD +station = ('kykn', 0.0040828383981418208) +zone = ('sdz070', 0.003717890000746322) + +[fips4602741740] +centroid = (0.74815528062084213, -1.6947405345594235) +description = Meckling township, SD +station = ('kykn', 0.0037103951711566401) +zone = ('sdz070', 0.0018172105247323033) + +[fips4602745860] +centroid = (0.74692838396986017, -1.6943502265788) +description = Norway township, SD +station = ('kykn', 0.0044267846459286279) +zone = ('sdz070', 0.0024590256530609435) + +[fips4602750740] +centroid = (0.74967450246824052, -1.6926751468291985) +description = Pleasant Valley township, SD +station = ('kykn', 0.0051532235577576536) +zone = ('sdz070', 0.00068011638559383619) + +[fips4602751580] +centroid = (0.74825954659035632, -1.6907494028924255) +description = Prairie Center township, SD +station = ('kykn', 0.0065739836073374826) +zone = ('sdz070', 0.0015102568730310476) + +[fips4602755020] +centroid = (0.75119054781640038, -1.6926745708705453) +description = Riverside township, SD +station = ('kykn', 0.0055456327449471994) +zone = ('sdz070', 0.0021915236711255595) + +[fips4602760260] +centroid = (0.74815777644167247, -1.6926815347342608) +description = Spirit Mound township, SD +station = ('kykn', 0.0051876559412487476) +zone = ('sdz070', 0.00084918071241040546) + +[fips4602761340] +centroid = (0.75130162056999727, -1.6945628774948631) +description = Star township, SD +station = ('kykn', 0.0043625238456321087) +zone = ('sdz070', 0.0027333672970636909) + +[fips4602766700] +centroid = (0.7466955745009366, -1.6916502894924275) +description = Vermillion city, SD +station = ('kykn', 0.0063217419761493173) +zone = ('sdz070', 0.0023970459840027681) + +[fips4602766740] +centroid = (0.74665112096488839, -1.6921964728285463) +description = Vermillion township, SD +station = ('kykn', 0.0059693761508051082) +zone = ('sdz070', 0.0023638188497631437) + +[fips4602768100] +centroid = (0.75063322927965359, -1.6948189696560081) +description = Wakonda town, SD +station = ('kykn', 0.003885484795722182) +zone = ('sdz070', 0.002330798039656867) + +[fips4602780] +centroid = (0.77286910792249686, -1.6874989016935114) +description = Aurora town, SD +station = ('kbkx', 0.0016549995112492449) +zone = ('sdz040', 0.0020048827255468322) + +[fips4602860] +centroid = (0.75969216877591239, -1.7207107894830038) +description = Aurora Center CDP, SD +station = ('kmhe', 0.0081734237818408325) +zone = ('sdz058', 0.0033529000035972204) + +[fips46029] +centroid = (0.7848104063185467, -1.6964398394790428) +description = Codington County, SD +station = ('katy', 0.0013054403249465607) +zone = ('sdz020', 0.00023688256445079687) + +[fips4602900] +centroid = (0.75058167225354966, -1.7114575773877057) +description = Avon city, SD +station = ('kykn', 0.0087708721703850939) +zone = ('sdz068', 0.0022478708131891214) + +[fips4602916500] +centroid = (0.78753024015839213, -1.6974958509429621) +description = Dexter township, SD +station = ('katy', 0.0041054496262188543) +zone = ('sdz020', 0.0026662890090890139) + +[fips4602918060] +centroid = (0.78741855653955695, -1.7006987570131742) +description = Eden township, SD +station = ('katy', 0.0052192090585713342) +zone = ('sdz020', 0.0039532542560963635) + +[fips4602919020] +centroid = (0.78433970847257628, -1.6939658527176333) +description = Elmira township, SD +station = ('katy', 0.0013379605415593579) +zone = ('sdz020', 0.0017572814939780775) + +[fips4602921820] +centroid = (0.78635441184132349, -1.6986646106765599) +description = Florence town, SD +station = ('katy', 0.0034694315120239669) +zone = ('sdz020', 0.0021662018042496764) + +[fips4602923180] +centroid = (0.78563638338705299, -1.6977596923659861) +description = Fuller township, SD +station = ('katy', 0.0025094851964817125) +zone = ('sdz020', 0.0012306860065599634) + +[fips4602924180] +centroid = (0.78727659145819973, -1.6944517349280961) +description = Germantown township, SD +station = ('katy', 0.0037116519192349098) +zone = ('sdz020', 0.0026016643933386065) + +[fips4602924980] +centroid = (0.78429508040360285, -1.7005909305719862) +description = Graceland township, SD +station = ('katy', 0.0036008247636374552) +zone = ('sdz020', 0.0031464172135267361) + +[fips4602928140] +centroid = (0.78331870831345218, -1.7010250637701272) +description = Henry town, SD +station = ('katy', 0.0038668376929990337) +zone = ('sdz020', 0.003773413538154437) + +[fips4602928180] +centroid = (0.78261205940590473, -1.7003146973112728) +description = Henry township, SD +station = ('katy', 0.0035082261336521758) +zone = ('sdz020', 0.0037410555321310459) + +[fips4602933300] +centroid = (0.78261104711493856, -1.6985426645217232) +description = Kampeska township, SD +station = ('katy', 0.0023392301099822671) +zone = ('sdz020', 0.0028929984568598507) + +[fips4602934340] +centroid = (0.78345831720031922, -1.6913871985609816) +description = Kranzburg town, SD +station = ('katy', 0.0029817862128572173) +zone = ('sdz023', 0.0037395063450446839) + +[fips4602934380] +centroid = (0.78330038235630628, -1.6918394308234661) +description = Kranzburg township, SD +station = ('katy', 0.002678568210781673) +zone = ('sdz023', 0.0039140383144237291) + +[fips4602934860] +centroid = (0.78464995820041084, -1.6957187566985812) +description = Lake township, SD +station = ('katy', 0.0010014536209955092) +zone = ('sdz020', 0.00052664145463291736) + +[fips4602936420] +centroid = (0.78729200271549482, -1.6920506854761272) +description = Leola township, SD +station = ('katy', 0.0044155012130062841) +zone = ('sdz021', 0.0024728058808221481) + +[fips4602948980] +centroid = (0.78260013880711365, -1.6963808473503255) +description = Pelican township, SD +station = ('katy', 0.0011934831821787885) +zone = ('sdz020', 0.0024120537770963972) + +[fips4602949340] +centroid = (0.78602724987303707, -1.7001769908332904) +description = Phipps township, SD +station = ('katy', 0.0040226726294065431) +zone = ('sdz020', 0.0029493641498423658) + +[fips4602953100] +centroid = (0.78569743500428779, -1.6946450126894619) +description = Rauville township, SD +station = ('katy', 0.0021505932138361173) +zone = ('sdz020', 0.0013332413701604639) + +[fips4602954620] +centroid = (0.78444181023381798, -1.6985532586702827) +description = Richland township, SD +station = ('katy', 0.0022433493306619843) +zone = ('sdz020', 0.0017187903721347974) + +[fips4602958420] +centroid = (0.78262555080102258, -1.694009852468076) +description = Sheridan township, SD +station = ('katy', 0.0015182918627838821) +zone = ('sdz020', 0.0028689580359873112) + +[fips4602959940] +centroid = (0.78716984712114768, -1.6917495812735732) +description = South Shore town, SD +station = ('katy', 0.0044422354713696223) +zone = ('sdz021', 0.0023466975057017492) + +[fips4602968420] +centroid = (0.78687225103039027, -1.7013142997337676) +description = Wallace town, SD +station = ('katy', 0.0051737690157629031) +zone = ('sdz020', 0.0040272891369916427) + +[fips4602969300] +centroid = (0.78380822080875912, -1.695691424842495) +description = Watertown city, SD +station = ('katy', 0.00017197951190674443) +zone = ('sdz020', 0.0012682755472691787) + +[fips4602969460] +centroid = (0.78583494949605237, -1.6919998963948943) +description = Waverly township, SD +station = ('katy', 0.0033473887686249026) +zone = ('sdz021', 0.0033640424349955385) + +[fips4603060] +centroid = (0.7764184793025225, -1.6965973554440352) +description = Badger town, SD +station = ('kbkx', 0.0058553566336059818) +zone = ('sdz022', 0.0032936702609649617) + +[fips46031] +centroid = (0.79758649569582551, -1.7658546207037558) +description = Corson County, SD +station = ('kmbg', 0.0096235156681875773) +zone = ('sdz003', 0.00031222629327774717) + +[fips4603115100] +centroid = (0.80085270485800775, -1.7761108735201752) +description = Custer township, SD +station = ('kd07', 0.015191837785548277) +zone = ('ndz042', 0.0083874004076612899) + +[fips4603117745] +centroid = (0.7980484494422434, -1.7593523791221584) +description = East Corson UT, SD +station = ('kmbg', 0.0056203948025721978) +zone = ('sdz003', 0.0048026148880643072) + +[fips4603136360] +centroid = (0.80064595315481646, -1.7784296830577897) +description = Lemmon UT, SD +station = ('khei', 0.0094789504559373815) +zone = ('ndz044', 0.0085979622494911073) + +[fips4603139940] +centroid = (0.80147341375318704, -1.7688660292484393) +description = McIntosh city, SD +station = ('kmbg', 0.013069317518881154) +zone = ('sdz003', 0.0041398872661236111) + +[fips4603140020] +centroid = (0.79959304837696588, -1.7594783046276898) +description = McLaughlin city, SD +station = ('kmbg', 0.0066484606119278323) +zone = ('ndz045', 0.0059211929010707445) + +[fips4603143860] +centroid = (0.80178020772910252, -1.7753284947763837) +description = Morristown town, SD +station = ('kd07', 0.016215083511349714) +zone = ('ndz042', 0.0073869886700504003) + +[fips4603150660] +centroid = (0.79453185534557003, -1.7699153037414457) +description = Pleasant Ridge township, SD +station = ('kd07', 0.011352874780453459) +zone = ('sdz003', 0.0041415269828020468) + +[fips4603151700] +centroid = (0.80051161516229052, -1.7717071460180056) +description = Prairie View township, SD +station = ('kmbg', 0.014436232787702612) +zone = ('sdz003', 0.004709210404191015) + +[fips4603154860] +centroid = (0.79441111346791715, -1.7563334482083988) +description = Ridgeland township, SD +station = ('kmbg', 0.0026791951261766231) +zone = ('sdz015', 0.0069431357102845842) + +[fips4603155700] +centroid = (0.79890980433468761, -1.7783911461879058) +description = Rolling Green township, SD +station = ('kd07', 0.013016507987941539) +zone = ('ndz044', 0.0095387042363577323) + +[fips4603158500] +centroid = (0.79861487859768554, -1.7756834598396545) +description = Sherman township, SD +station = ('kd07', 0.013084640462863976) +zone = ('sdz003', 0.0066602909023772234) + +[fips4603168180] +centroid = (0.7976493100956048, -1.7555381714814351) +description = Wakpala township, SD +station = ('kmbg', 0.0033541246114608286) +zone = ('sdz004', 0.0066068058026106588) + +[fips4603169260] +centroid = (0.80154118488804182, -1.7717622286091987) +description = Watauga township, SD +station = ('kmbg', 0.014888160829147262) +zone = ('sdz003', 0.0054006663059678189) + +[fips4603170310] +centroid = (0.79691948321559081, -1.7724517383834917) +description = West Corson UT, SD +station = ('kd07', 0.012323973999575008) +zone = ('sdz003', 0.0044359557372343865) + +[fips46033] +centroid = (0.76244608889604915, -1.8057569140215031) +description = Custer County, SD +station = ('kcut', 0.0021233493344429734) +zone = ('sdz029', 0.0031034333446379645) + +[fips4603308340] +centroid = (0.75908144316405457, -1.8031919956060649) +description = Buffalo Gap town, SD +station = ('kcut', 0.005676338895562706) +zone = ('sdz074', 0.0031700221312381035) + +[fips4603315140] +centroid = (0.76387357623796281, -1.8081547520676482) +description = Custer city, SD +station = ('kcut', 0.00062120441687353708) +zone = ('sdz029', 0.002135855430960649) + +[fips4603317750] +centroid = (0.76234152622056228, -1.8003053955561914) +description = East Custer UT, SD +station = ('kcut', 0.0059651048590766203) +zone = ('sdz074', 0.0012900237383689738) + +[fips4603320340] +centroid = (0.76248096057450399, -1.8013314920767314) +description = Fairburn town, SD +station = ('kcut', 0.0052103116527939686) +zone = ('sdz074', 0.00062979197716875573) + +[fips4603328300] +centroid = (0.76514695100692542, -1.8010568819722228) +description = Hermosa town, SD +station = ('krap', 0.004086628105737216) +zone = ('sdz026', 0.0028354034176483948) + +[fips4603351940] +centroid = (0.76112080803513238, -1.8080672761655381) +description = Pringle town, SD +station = ('kcut', 0.002187622105950679) +zone = ('sdz029', 0.0018046181453221896) + +[fips4603370320] +centroid = (0.76209560932895626, -1.8110968884943202) +description = West Custer UT, SD +station = ('kcut', 0.0022549180703902894) +zone = ('sdz029', 0.00077763367264056381) + +[fips4603380] +centroid = (0.76376665736798577, -1.6883781462107883) +description = Baltic city, SD +station = ('kfsd', 0.0030983799711805484) +zone = ('sdz062', 0.0016571621935050867) + +[fips4603420] +centroid = (0.77648595373140461, -1.7060680879240095) +description = Bancroft town, SD +station = ('khon', 0.0062952855891326648) +zone = ('sdz039', 0.0038457872882530918) + +[fips46035] +centroid = (0.76236747926653936, -1.7131430767529414) +description = Davison County, SD +station = ('kmhe', 0.0021572274283357461) +zone = ('sdz059', 0.0001556094161657935) + +[fips4603503020] +centroid = (0.76455369614088009, -1.712969486305538) +description = Badger township, SD +station = ('kmhe', 0.0015737189173224823) +zone = ('sdz059', 0.0022811464365616479) + +[fips4603503300] +centroid = (0.75995618473186155, -1.7150211382945502) +description = Baker township, SD +station = ('kmhe', 0.004876745063762458) +zone = ('sdz059', 0.0027505789410782922) + +[fips4603505220] +centroid = (0.76289858295792135, -1.7128069088857147) +description = Beulah township, SD +station = ('kmhe', 0.001626137545888833) +zone = ('sdz059', 0.00063739146387103865) + +[fips4603505980] +centroid = (0.7645618642817793, -1.7150582439944473) +description = Blendon township, SD +station = ('kmhe', 0.0030066466550827536) +zone = ('sdz059', 0.0027407128940661785) + +[fips4603520060] +centroid = (0.76002688801985985, -1.7101267463797674) +description = Ethan town, SD +station = ('kmhe', 0.003897623641217074) +zone = ('sdz059', 0.0030477405059547657) + +[fips4603537820] +centroid = (0.76147718681509713, -1.7129719297664909) +description = Lisbon township, SD +station = ('kmhe', 0.0027857939185307649) +zone = ('sdz059', 0.00079536413814517857) + +[fips4603543100] +centroid = (0.7632300733427525, -1.7110050833258335) +description = Mitchell city, SD +station = ('kmhe', 0.00064236277961765998) +zone = ('sdz059', 0.0017146526705591266) + +[fips4603543140] +centroid = (0.76331613552816846, -1.7103649838226647) +description = Mitchell UT, SD +station = ('kmhe', 0.00072307493754891956) +zone = ('sdz059', 0.0021546519104443072) + +[fips4603544100] +centroid = (0.76293115080176355, -1.7149771210908147) +description = Mount Vernon city, SD +station = ('kmhe', 0.0030206179599274676) +zone = ('sdz059', 0.0015919757110786246) + +[fips4603544140] +centroid = (0.76337997967220628, -1.7145403873520881) +description = Mount Vernon township, SD +station = ('kmhe', 0.0026011701074751667) +zone = ('sdz059', 0.0015845662062829089) + +[fips4603549220] +centroid = (0.76490958622865413, -1.7108005656440848) +description = Perry township, SD +station = ('kmhe', 0.0010475383873945938) +zone = ('sdz059', 0.0030684928180574203) + +[fips4603552100] +centroid = (0.76135148820236853, -1.7110515963503992) +description = Prosper township, SD +station = ('kmhe', 0.0025211782805357112) +zone = ('sdz059', 0.0016674758032927967) + +[fips4603555740] +centroid = (0.76006378428024712, -1.7109933023533825) +description = Rome township, SD +station = ('kmhe', 0.0038086602049377987) +zone = ('sdz059', 0.0026329314348777638) + +[fips4603563660] +centroid = (0.75995131526324855, -1.7129410374387304) +description = Tobin township, SD +station = ('kmhe', 0.0041639436364000575) +zone = ('sdz059', 0.0023213479932223113) + +[fips4603565020] +centroid = (0.76163274801132741, -1.7148696088088917) +description = Union township, SD +station = ('kmhe', 0.0035810801612373988) +zone = ('sdz059', 0.0015142732067246146) + +[fips46037] +centroid = (0.79172119457145085, -1.7033319876155357) +description = Day County, SD +station = ('katy', 0.0097442287553347069) +zone = ('sdz011', 0.00018936777051619172) + +[fips4603701500] +centroid = (0.79255780069510195, -1.7087420196045275) +description = Andover town, SD +station = ('kabr', 0.0063211615487368334) +zone = ('sdz011', 0.0037075076163869932) + +[fips4603701540] +centroid = (0.79262356470131701, -1.7090111668284775) +description = Andover township, SD +station = ('kabr', 0.0061261600562848451) +zone = ('sdz011', 0.0039058916360901895) + +[fips4603707300] +centroid = (0.79140359700746543, -1.7059624082378013) +description = Bristol city, SD +station = ('kabr', 0.0084432317583137215) +zone = ('sdz011', 0.0017273426426845176) + +[fips4603707340] +centroid = (0.79198255762693703, -1.7071536652654578) +description = Bristol township, SD +station = ('kabr', 0.0075078585164736365) +zone = ('sdz011', 0.0025220536772169416) + +[fips4603708860] +centroid = (0.78997078641133323, -1.7053893119246164) +description = Butler town, SD +station = ('kabr', 0.0092487368574757454) +zone = ('sdz011', 0.002237063480903319) + +[fips4603708900] +centroid = (0.79047061380251937, -1.7045616418867358) +description = Butler township, SD +station = ('katy', 0.0093067810516239934) +zone = ('sdz011', 0.0015065822427763752) + +[fips4603711180] +centroid = (0.79045799507202752, -1.6981392840250022) +description = Central Point township, SD +station = ('katy', 0.0070395673484509435) +zone = ('sdz011', 0.0040508173053081147) + +[fips4603718540] +centroid = (0.78903984524161197, -1.6984129516517148) +description = Egeland township, SD +station = ('katy', 0.0057449315934449303) +zone = ('sdz020', 0.0043060154023845656) + +[fips4603721140] +centroid = (0.79496490643957485, -1.7087826508695141) +description = Farmington township, SD +station = ('kabr', 0.0064773000846253728) +zone = ('sdz011', 0.004830065076335357) + +[fips4603726220] +centroid = (0.7935487113779216, -1.6997801902278498) +description = Grenville town, SD +station = ('k8d3', 0.0060715003946024077) +zone = ('sdz011', 0.0031809880018228492) + +[fips4603726260] +centroid = (0.79344264771927797, -1.7003407201704202) +description = Grenville township, SD +station = ('k8d3', 0.0064554352830442563) +zone = ('sdz011', 0.0027966450214868999) + +[fips4603728780] +centroid = (0.78882363385387488, -1.7026776287723779) +description = Highland township, SD +station = ('katy', 0.0071993442495019164) +zone = ('sdz011', 0.0030490628540607821) + +[fips4603729860] +centroid = (0.79502175181331236, -1.7066752356109007) +description = Homer township, SD +station = ('kabr', 0.0079237752714192648) +zone = ('sdz011', 0.0038822172419092416) + +[fips4603731460] +centroid = (0.79498796223899382, -1.7045085664241826) +description = Independence township, SD +station = ('kabr', 0.0094039991264667916) +zone = ('sdz011', 0.0032480412931519815) + +[fips4603733860] +centroid = (0.79210446887518882, -1.704554939822408) +description = Kidder township, SD +station = ('kabr', 0.009294540504938489) +zone = ('sdz011', 0.00075165681791511244) + +[fips4603734300] +centroid = (0.79433676244178208, -1.6980261692361804) +description = Kosciusko township, SD +station = ('k8d3', 0.0046128154796570139) +zone = ('sdz008', 0.0046721749994067079) + +[fips4603736860] +centroid = (0.79501742339676751, -1.7024124434458301) +description = Liberty township, SD +station = ('k8d3', 0.0071016321246602431) +zone = ('sdz011', 0.0033118773964904129) + +[fips4603737140] +centroid = (0.7885702818596555, -1.7048983508060305) +description = Lily town, SD +station = ('katy', 0.0082137772065071727) +zone = ('sdz011', 0.0033685708412350486) + +[fips4603739580] +centroid = (0.79328521902074811, -1.7046770081502927) +description = Lynn township, SD +station = ('kabr', 0.0091323144317097728) +zone = ('sdz011', 0.0016693161081444744) + +[fips4603743900] +centroid = (0.7900916330087413, -1.700259579813495) +description = Morton township, SD +station = ('katy', 0.0072346784112087802) +zone = ('sdz011', 0.0028928348218514787) + +[fips4603746140] +centroid = (0.7948854765053166, -1.7002555131963379) +description = Nutley township, SD +station = ('k8d3', 0.0057196227238301015) +zone = ('sdz011', 0.0038587381837420303) + +[fips4603746260] +centroid = (0.78884124422602764, -1.7088979124133157) +description = Oak Gulch township, SD +station = ('kabr', 0.0075968288469439619) +zone = ('sdz011', 0.0047788443209274582) + +[fips4603749540] +centroid = (0.7940433202346443, -1.7074920322475418) +description = Pierpont town, SD +station = ('kabr', 0.0071983309583444292) +zone = ('sdz011', 0.0035451032376470136) + +[fips4603752660] +centroid = (0.79183952789473611, -1.7003813514354065) +description = Racine township, SD +station = ('k8d3', 0.0074906476763018214) +zone = ('sdz011', 0.0022419975957895773) + +[fips4603753020] +centroid = (0.79330665166396253, -1.7024048338102913) +description = Raritan township, SD +station = ('k8d3', 0.0077631789752696575) +zone = ('sdz011', 0.0017089737472130106) + +[fips4603756380] +centroid = (0.79406414201262066, -1.7015774081185058) +description = Roslyn town, SD +station = ('k8d3', 0.0068999704120091213) +zone = ('sdz011', 0.0026559995219408773) + +[fips4603756940] +centroid = (0.79027386283594203, -1.7023015626784508) +description = Rusk township, SD +station = ('katy', 0.0081429289952043276) +zone = ('sdz011', 0.0017744744368719657) + +[fips4603758020] +centroid = (0.79022255015593346, -1.7091486987735347) +description = Scotland township, SD +station = ('kabr', 0.006725606168229533) +zone = ('sdz011', 0.0042289744372437793) + +[fips4603764100] +centroid = (0.78883927200397286, -1.7069890632637019) +description = Troy township, SD +station = ('kabr', 0.0087254052563123952) +zone = ('sdz011', 0.0038193290544347343) + +[fips4603765060] +centroid = (0.79329757595185224, -1.7066562464286392) +description = Union township, SD +station = ('kabr', 0.0077438774564716406) +zone = ('sdz011', 0.0026285455024622107) + +[fips4603766020] +centroid = (0.79021572591855815, -1.7066977329049591) +description = Valley township, SD +station = ('kabr', 0.0083019079830540573) +zone = ('sdz011', 0.0027132410727418758) + +[fips4603769340] +centroid = (0.79123676098426743, -1.6983006222610566) +description = Waubay city, SD +station = ('k8d3', 0.0070094409906795579) +zone = ('sdz011', 0.0037483359435698904) + +[fips4603769380] +centroid = (0.79225343272684656, -1.6981617464124752) +description = Waubay township, SD +station = ('k8d3', 0.0061323613217887001) +zone = ('sdz011', 0.0038264744437436732) + +[fips4603769740] +centroid = (0.79198140570963071, -1.7027621550680521) +description = Webster township, SD +station = ('k8d3', 0.008685559077976298) +zone = ('sdz011', 0.00059521146476460029) + +[fips4603769780] +centroid = (0.7912526783870456, -1.7020731165326572) +description = Webster city, SD +station = ('k8d3', 0.0087622604612333857) +zone = ('sdz011', 0.0011904646273310003) + +[fips4603770820] +centroid = (0.78892885975447768, -1.7003494468166802) +description = Wheatland township, SD +station = ('katy', 0.0062573782309873127) +zone = ('sdz011', 0.0036640629892536959) + +[fips4603773220] +centroid = (0.78893509057990741, -1.7046298668071962) +description = York township, SD +station = ('katy', 0.0082892614943124391) +zone = ('sdz011', 0.0029667571714528228) + +[fips4603860] +centroid = (0.75272252802063089, -1.7820108194302018) +description = Batesland town, SD +station = ('kien', 0.0055410195453608159) +zone = ('sdz044', 0.0056952143577293614) + +[fips46039] +centroid = (0.78114462147741293, -1.6875630250902296) +description = Deuel County, SD +station = ('kcnb', 0.0052967714845008904) +zone = ('sdz023', 0.00028311925592232042) + +[fips4603900] +centroid = (0.79358651520951984, -1.7160698891887807) +description = Bath CDP, SD +station = ('kabr', 0.0011878167056642009) +zone = ('sdz006', 0.0021333244455383777) + +[fips4603901140] +centroid = (0.78261925016242295, -1.6875615066537801) +description = Altamont town, SD +station = ('kcnb', 0.0056761127211456524) +zone = ('sdz023', 0.0014363193775101465) + +[fips4603901180] +centroid = (0.78239104836272466, -1.6868848948626598) +description = Altamont township, SD +station = ('kcnb', 0.005145669566527334) +zone = ('sdz023', 0.0011994602190231129) + +[fips4603901780] +centroid = (0.7842556359625078, -1.6839678562706315) +description = Antelope Valley township, SD +station = ('kcnb', 0.004659844864700495) +zone = ('sdz023', 0.0038012655548271541) + +[fips4603902580] +centroid = (0.77767913062123806, -1.6850542888234128) +description = Astoria town, SD +station = ('kcnb', 0.004446617481217237) +zone = ('sdz023', 0.0038389885070688997) + +[fips4603906060] +centroid = (0.77819428200325669, -1.6877935656311254) +description = Blom township, SD +station = ('kbkx', 0.0052081355881124624) +zone = ('sdz023', 0.0030470214605912106) + +[fips4603906940] +centroid = (0.7795850476177083, -1.686427112453154) +description = Brandt town, SD +station = ('kcnb', 0.0045318743045539411) +zone = ('sdz023', 0.0017090373715863587) + +[fips4603906980] +centroid = (0.77970928015386531, -1.6877853625836412) +description = Brandt township, SD +station = ('kcnb', 0.0054640737521517331) +zone = ('sdz023', 0.0015615579666471238) + +[fips4603912540] +centroid = (0.78114462147741293, -1.6875630250902296) +description = Clear Lake city, SD +station = ('kcnb', 0.0052967714845008904) +zone = ('sdz023', 0.00028311925592232042) + +[fips4603912580] +centroid = (0.78157524656375743, -1.687954781694132) +description = Clear Lake township, SD +station = ('kcnb', 0.0056412759985237267) +zone = ('sdz023', 0.00066364306191118451) + +[fips4603923860] +centroid = (0.78181812658246508, -1.6835043840877644) +description = Gary city, SD +station = ('kcnb', 0.0027329204015177967) +zone = ('sdz023', 0.0026756650511531636) + +[fips4603924700] +centroid = (0.78263656382860269, -1.6850127150806304) +description = Glenwood township, SD +station = ('kcnb', 0.0040721644375647193) +zone = ('sdz023', 0.0020953755676243872) + +[fips4603924820] +centroid = (0.78326037940985049, -1.6903461620220446) +description = Goodwin town, SD +station = ('katy', 0.0037339604822509234) +zone = ('sdz023', 0.0030441650830790156) + +[fips4603924860] +centroid = (0.78262064642582452, -1.6897245804622394) +description = Goodwin township, SD +station = ('katy', 0.0042812675086535855) +zone = ('sdz023', 0.0022945186096025318) + +[fips4603925540] +centroid = (0.77819295555302515, -1.6899092013905153) +description = Grange township, SD +station = ('kbkx', 0.0050130877093474335) +zone = ('sdz023', 0.0035888171862052884) + +[fips4603927740] +centroid = (0.78109667728286059, -1.6897294499308526) +description = Havana township, SD +station = ('katy', 0.0048780352840434478) +zone = ('sdz023', 0.0018175017316193593) + +[fips4603928380] +centroid = (0.78119958189555827, -1.684706968302266) +description = Herrick township, SD +station = ('kcnb', 0.0033078818564864021) +zone = ('sdz023', 0.0017524081042730125) + +[fips4603928620] +centroid = (0.77970884382155226, -1.6899023422465549) +description = Hidewood township, SD +station = ('katy', 0.0056422385771528394) +zone = ('sdz023', 0.0024510910359222251) + +[fips4603939060] +centroid = (0.78432461137454657, -1.6853709439096023) +description = Lowe township, SD +station = ('kcnb', 0.0053472958865633342) +zone = ('sdz023', 0.0033675452243012998) + +[fips4603945300] +centroid = (0.7798414190315337, -1.6851433006152645) +description = Norden township, SD +station = ('kcnb', 0.0035873880953109357) +zone = ('sdz023', 0.0019887353215316018) + +[fips4603951420] +centroid = (0.78417395455351446, -1.6876932615590132) +description = Portland township, SD +station = ('kcnb', 0.0065051465649758333) +zone = ('sdz023', 0.0029872777858901411) + +[fips4603955780] +centroid = (0.78411655067441632, -1.6900349872697067) +description = Rome township, SD +station = ('katy', 0.0039593103396631064) +zone = ('sdz023', 0.003544593834689194) + +[fips4603957740] +centroid = (0.77826723676599008, -1.6850407625217101) +description = Scandinavia township, SD +station = ('kcnb', 0.0040965561222630863) +zone = ('sdz023', 0.0033104634677320489) + +[fips4603960] +centroid = (0.79347360986020832, -1.716232798221162) +description = Bath Corner CDP, SD +station = ('kabr', 0.0010492147268284101) +zone = ('sdz006', 0.0022302626077685076) + +[fips4603963740] +centroid = (0.77793520532909055, -1.6867100652314873) +description = Toronto town, SD +station = ('kbkx', 0.0052322337740283113) +zone = ('sdz023', 0.0032908145627132536) + +[fips46041] +centroid = (0.78801624454190244, -1.7602032620390904) +description = Dewey County, SD +station = ('kmbg', 0.0087907763076776075) +zone = ('sdz015', 0.00026820668289706117) + +[fips4604117620] +centroid = (0.7853603072059725, -1.7668861451982694) +description = Eagle Butte city, SD +station = ('kd07', 0.0096625732082311327) +zone = ('sdz014', 0.005327139719192203) + +[fips4604132140] +centroid = (0.79227189831033273, -1.7703306397435428) +description = Isabel town, SD +station = ('kd07', 0.0095488414654413978) +zone = ('sdz003', 0.006203968719855955) + +[fips4604145545] +centroid = (0.79048321507971886, -1.7653818808225605) +description = North Dewey UT, SD +station = ('kmbg', 0.010042301147179444) +zone = ('sdz015', 0.0041387153311601109) + +[fips4604159842] +centroid = (0.78627552295913328, -1.7577123455839367) +description = South Dewey UT, SD +station = ('kmbg', 0.0094337611139976383) +zone = ('sdz015', 0.0027288429130180657) + +[fips4604163620] +centroid = (0.79286735229123562, -1.7640866894379479) +description = Timber Lake city, SD +station = ('kmbg', 0.0083286573545226887) +zone = ('sdz003', 0.0051223106149291889) + +[fips46043] +centroid = (0.75732464709887459, -1.7166785029522438) +description = Douglas County, SD +station = ('kmhe', 0.0077310325574794147) +zone = ('sdz064', 0.00012497212933029435) + +[fips4604302260] +centroid = (0.75606509533758781, -1.716429200121889) +description = Armour city, SD +station = ('kmhe', 0.0087416396895931003) +zone = ('sdz064', 0.0012153112697519553) + +[fips4604304540] +centroid = (0.75580818287169438, -1.7132097657836602) +description = Belmont township, SD +station = ('kmhe', 0.0082211978791247396) +zone = ('sdz064', 0.0029904281860563989) + +[fips4604311620] +centroid = (0.75606223299761466, -1.7177727545800741) +description = Chester township, SD +station = ('kmhe', 0.0092232465023571741) +zone = ('sdz064', 0.0013752794050652063) + +[fips4604312220] +centroid = (0.75732808539750107, -1.7215183009680242) +description = Clark township, SD +station = ('kmhe', 0.010041820945495106) +zone = ('sdz063', 0.0032649970551493698) + +[fips4604313980] +centroid = (0.75786006175350884, -1.7175340109916939) +description = Corsica city, SD +station = ('kmhe', 0.0076492801401085555) +zone = ('sdz064', 0.00080530488030260302) + +[fips4604316060] +centroid = (0.75514528936849434, -1.7132004108188696) +description = Delmont city, SD +station = ('kmhe', 0.0088712430619117683) +zone = ('sdz064', 0.0033661062333354684) + +[fips4604317740] +centroid = (0.75455983612420541, -1.7131991890883931) +description = East Choteau township, SD +station = ('kmhe', 0.0094476960438141834) +zone = ('sdz064', 0.0037608104214613782) + +[fips4604323620] +centroid = (0.75860322294900806, -1.7156793543153546) +description = Garfield township, SD +station = ('kmhe', 0.0062625639230766451) +zone = ('sdz064', 0.001586331854575548) + +[fips4604325340] +centroid = (0.75709258812152946, -1.7176031085767804) +description = Grandview township, SD +station = ('kmhe', 0.0082958785620790218) +zone = ('sdz064', 0.00059408458262265632) + +[fips4604329700] +centroid = (0.75861170524917276, -1.7198592433409559) +description = Holland township, SD +station = ('kmhe', 0.0082928782595590583) +zone = ('sdz064', 0.0025983702359057138) + +[fips4604331500] +centroid = (0.75554940290350103, -1.715330969143364) +description = Independence township, SD +station = ('kmhe', 0.0088945318885383391) +zone = ('sdz064', 0.0020119414875020536) + +[fips4604331820] +centroid = (0.75707394800511818, -1.7196597173008679) +description = Iowa township, SD +station = ('kmhe', 0.0092488968384880112) +zone = ('sdz064', 0.0020754800225854563) + +[fips4604333060] +centroid = (0.7586030833226679, -1.7216711569039138) +description = Joubert township, SD +station = ('kmhe', 0.0093489333432410573) +zone = ('sdz063', 0.0045401609731438872) + +[fips4604337380] +centroid = (0.75719399175107027, -1.7134050157670808) +description = Lincoln township, SD +station = ('kmhe', 0.0069011723518297005) +zone = ('sdz064', 0.0024780999333303237) + +[fips4604366060] +centroid = (0.75694610263740958, -1.7153883381158772) +description = Valley township, SD +station = ('kmhe', 0.0076199246906406429) +zone = ('sdz064', 0.0010792738060850214) + +[fips4604368500] +centroid = (0.75857918976520811, -1.7177606943549431) +description = Walnut Grove township, SD +station = ('kmhe', 0.0072072624042327808) +zone = ('sdz064', 0.0014984691876308049) + +[fips4604369020] +centroid = (0.75851382718472093, -1.7133517134117249) +description = Washington township, SD +station = ('kmhe', 0.0056216376385823576) +zone = ('sdz064', 0.0028154200231115768) + +[fips4604380] +centroid = (0.77953263538027096, -1.8126880528134857) +description = Belle Fourche city, SD +station = ('kspf', 0.0032907368072515528) +zone = ('sdz025', 0.003019550069227103) + +[fips46045] +centroid = (0.79258333486205845, -1.7314602025328667) +description = Edmunds County, SD +station = ('kabr', 0.0096831770000532641) +zone = ('sdz010', 0.00017656583550389114) + +[fips4604500340] +centroid = (0.79504236415177831, -1.7302334804148101) +description = Adrian township, SD +station = ('kabr', 0.0089686788505100607) +zone = ('sdz010', 0.0025341577935762399) + +[fips4604504340] +centroid = (0.79485639931997842, -1.7263855704662308) +description = Belle township, SD +station = ('kabr', 0.0062995119483999782) +zone = ('sdz010', 0.0042643416850860249) + +[fips4604506540] +centroid = (0.79327432816621557, -1.739333644588001) +description = Bowdle city, SD +station = ('kmbg', 0.0094576877234483249) +zone = ('sdz009', 0.0046088986240079999) + +[fips4604506580] +centroid = (0.79360169957401216, -1.738980075788132) +description = Bowdle township, SD +station = ('kmbg', 0.0096471199973064744) +zone = ('sdz009', 0.0048914552323599597) + +[fips4604507980] +centroid = (0.79347799063663094, -1.7325358489508711) +description = Bryant township, SD +station = ('kmbg', 0.014144282843958595) +zone = ('sdz010', 0.00099477434098833471) + +[fips4604512620] +centroid = (0.79028463151742701, -1.7239080930463175) +description = Clear Lake township, SD +station = ('kabr', 0.0052784652109858759) +zone = ('sdz017', 0.0058574851006946713) + +[fips4604512820] +centroid = (0.79199079558100649, -1.7305955838747213) +description = Cleveland township, SD +station = ('kabr', 0.0091434370429726297) +zone = ('sdz010', 0.0010249336789417232) + +[fips4604513020] +centroid = (0.79209340348773127, -1.7369679904132629) +description = Cloyd Valley township, SD +station = ('kmbg', 0.011342113105895616) +zone = ('sdz010', 0.003791836697156774) + +[fips4604514060] +centroid = (0.79332558848634671, -1.7239265237232184) +description = Cortlandt township, SD +station = ('kabr', 0.0043721496165326458) +zone = ('sdz006', 0.005678403467603098) + +[fips4604514260] +centroid = (0.79349600243451135, -1.7371882160582794) +description = Cottonwood Lake township, SD +station = ('kmbg', 0.01090573817202195) +zone = ('sdz010', 0.0039726365196059311) + +[fips4604522500] +centroid = (0.79344367746353661, -1.7262912703267455) +description = Fountain township, SD +station = ('kabr', 0.0060330883384478885) +zone = ('sdz010', 0.0038237098709332316) + +[fips4604524420] +centroid = (0.79373031288659168, -1.7346863912953008) +description = Glen township, SD +station = ('kmbg', 0.01261748256134501) +zone = ('sdz010', 0.0023700077496591398) + +[fips4604524740] +centroid = (0.7920832282181921, -1.7346921334285399) +description = Glover township, SD +station = ('kmbg', 0.012893825165368349) +zone = ('sdz010', 0.0022328819849358277) + +[fips4604527060] +centroid = (0.79207326238816322, -1.7285870764248188) +description = Harmony township, SD +station = ('kabr', 0.0077361272362817032) +zone = ('sdz010', 0.0022347359856670001) + +[fips4604529260] +centroid = (0.79037430653439433, -1.734782332044283) +description = Hillside township, SD +station = ('kmbg', 0.013334808791623626) +zone = ('sdz010', 0.0032131257822852317) + +[fips4604530140] +centroid = (0.79549990221518874, -1.7361425893034097) +description = Hosmer city, SD +station = ('kmbg', 0.011533853723979907) +zone = ('sdz005', 0.004491987028331642) + +[fips4604530180] +centroid = (0.79488275379168349, -1.7371842541608775) +description = Hosmer township, SD +station = ('kmbg', 0.01079764643813224) +zone = ('sdz005', 0.0054420428106486604) + +[fips4604530700] +centroid = (0.7903197300886845, -1.738994073328733) +description = Hudson township, SD +station = ('kmbg', 0.010635602588688823) +zone = ('sdz016', 0.0054715047690385267) + +[fips4604530960] +centroid = (0.79359887214062408, -1.7305654071319545) +description = Huntley township, SD +station = ('kabr', 0.0090341187682920938) +zone = ('sdz010', 0.0011668793665470813) + +[fips4604531860] +centroid = (0.79313798304504979, -1.728399470983522) +description = Ipswich city, SD +station = ('kabr', 0.0075108973265231123) +zone = ('sdz010', 0.0023136943189294573) + +[fips4604531900] +centroid = (0.79358185518041702, -1.7285795016958652) +description = Ipswich township, SD +station = ('kabr', 0.0076417276828283634) +zone = ('sdz010', 0.0023177009378866865) + +[fips4604533700] +centroid = (0.79053522589142822, -1.7264661697710877) +description = Kent township, SD +station = ('kabr', 0.0067342066062264722) +zone = ('sdz017', 0.0047869244433640813) + +[fips4604536900] +centroid = (0.79030018240106215, -1.7307527856804483) +description = Liberty township, SD +station = ('kabr', 0.009637442789852034) +zone = ('sdz010', 0.0024866575339125684) + +[fips4604540140] +centroid = (0.79056109167094279, -1.7370295307226882) +description = Madison township, SD +station = ('kmbg', 0.011795429918608945) +zone = ('sdz010', 0.0043538215921107449) + +[fips4604543200] +centroid = (0.79486748216072856, -1.7389815942245814) +description = Modena township, SD +station = ('kmbg', 0.0095392871899927529) +zone = ('sdz005', 0.0063931015074733697) + +[fips4604543460] +centroid = (0.79207998190578344, -1.7325408929524091) +description = Montpelier township, SD +station = ('kmbg', 0.01436819753057504) +zone = ('sdz010', 0.00089163951420040194) + +[fips4604545500] +centroid = (0.79502318298329899, -1.7330976878903805) +description = North Bryant township, SD +station = ('kmbg', 0.013657962601823856) +zone = ('sdz010', 0.0025313909768363918) + +[fips4604546460] +centroid = (0.79183589760989204, -1.7386312368305359) +description = Odessa township, SD +station = ('kmbg', 0.010296265844615659) +zone = ('sdz016', 0.0067676276841153798) + +[fips4604549020] +centroid = (0.79484756795396327, -1.7239198391121833) +description = Pembrook township, SD +station = ('kabr', 0.0046459869706471394) +zone = ('sdz005', 0.006731517345139929) + +[fips4604551500] +centroid = (0.79052663887150854, -1.7282220582650567) +description = Powell township, SD +station = ('kabr', 0.0078815902588320174) +zone = ('sdz010', 0.0032436636455642105) + +[fips4604554660] +centroid = (0.79181179461292195, -1.7238891911305181) +description = Richland township, SD +station = ('kabr', 0.0045810093936076799) +zone = ('sdz017', 0.0069185836529645243) + +[fips4604555820] +centroid = (0.793263768924241, -1.7337419412771691) +description = Roscoe city, SD +station = ('kmbg', 0.013331833174010217) +zone = ('sdz010', 0.0015770787486752526) + +[fips4604556300] +centroid = (0.79498604237681658, -1.7285394987494094) +description = Rosette township, SD +station = ('kabr', 0.0077963731460301859) +zone = ('sdz010', 0.0031485288704739128) + +[fips4604557540] +centroid = (0.79474403502273505, -1.7345017703670249) +description = Sangamon township, SD +station = ('kmbg', 0.012679049734210177) +zone = ('sdz010', 0.002859518132155243) + +[fips4604565100] +centroid = (0.79219759964407521, -1.7264180510436102) +description = Union township, SD +station = ('kabr', 0.0062129991506729015) +zone = ('sdz010', 0.0037008627121912188) + +[fips4604566820] +centroid = (0.79055859585011246, -1.7325391999830348) +description = Vermont township, SD +station = ('kmbg', 0.014764002539573627) +zone = ('sdz010', 0.0022401906330710422) + +[fips4604620] +centroid = (0.76501662727167896, -1.7675144462756949) +description = Belvidere town, SD +station = ('kphp', 0.0056151411884311836) +zone = ('sdz043', 0.0051039604976823071) + +[fips46047] +centroid = (0.75435755246389924, -1.8066269955602074) +description = Fall River County, SD +station = ('kcdr', 0.0085757900922349105) +zone = ('sdz041', 0.00077045870890870628) + +[fips4604702060] +centroid = (0.75795062688839487, -1.8147780322328715) +description = Argentine township, SD +station = ('kcut', 0.0070367801203259396) +zone = ('sdz027', 0.004105516397721002) + +[fips4604718300] +centroid = (0.75569957103234264, -1.812132113086848) +description = Edgemont city, SD +station = ('kcut', 0.0080465390382309342) +zone = ('sdz027', 0.0025333828004937007) + +[fips4604730220] +centroid = (0.75801600692217463, -1.8061248468811162) +description = Hot Springs city, SD +station = ('kcut', 0.0055374808312673423) +zone = ('sdz027', 0.0024386108942135018) + +[fips4604745560] +centroid = (0.75557155113170893, -1.8030057689748771) +description = Northeast Fall River UT, SD +station = ('kcdr', 0.0084041554620588148) +zone = ('sdz041', 0.0028519572438319763) + +[fips4604746500] +centroid = (0.75367121918884505, -1.801771821193717) +description = Oelrichs town, SD +station = ('kcdr', 0.0063238849410420976) +zone = ('sdz041', 0.0030852531159424098) + +[fips4604752180] +centroid = (0.75348935588078714, -1.812984392267182) +description = Provo township, SD +station = ('kcut', 0.010338814921710713) +zone = ('sdz027', 0.004535519932726227) + +[fips4604755300] +centroid = (0.75481341501122756, -1.8008349284512464) +description = Robins township, SD +station = ('kcdr', 0.0073028049014627755) +zone = ('sdz041', 0.0039167522322092795) + +[fips4604759955] +centroid = (0.75406067195813498, -1.8103567816250119) +description = Southwest Fall River UT, SD +station = ('kcut', 0.0093329330100764551) +zone = ('sdz027', 0.0031615057180108888) + +[fips46049] +centroid = (0.786540935178484, -1.7305561568869188) +description = Faulk County, SD +station = ('kabr', 0.011269461581292954) +zone = ('sdz017', 0.00014146303102955546) + +[fips4604901940] +centroid = (0.78438014775134501, -1.7281668884074011) +description = Arcade township, SD +station = ('kabr', 0.011539817151768153) +zone = ('sdz017', 0.0027608612180722901) + +[fips4604908020] +centroid = (0.78597361590512338, -1.7327187943630649) +description = Bryant township, SD +station = ('kabr', 0.012840627526221567) +zone = ('sdz017', 0.0017603559464355039) + +[fips4604911020] +centroid = (0.7857566191192229, -1.7259462885467962) +description = Centerville township, SD +station = ('kabr', 0.0094839620270949689) +zone = ('sdz017', 0.0032762396129519117) + +[fips4604911500] +centroid = (0.78832258473221251, -1.7233970257347482) +description = Chelsea town, SD +station = ('kabr', 0.006354719809662436) +zone = ('sdz017', 0.0052283819407618832) + +[fips4604912260] +centroid = (0.78892234967636776, -1.7344886803976349) +description = Clark township, SD +station = ('kmbg', 0.014099168025727471) +zone = ('sdz017', 0.0036720050678532767) + +[fips4604914580] +centroid = (0.78835492568325183, -1.7269624192373074) +description = Cresbard town, SD +station = ('kabr', 0.0081524062938261813) +zone = ('sdz017', 0.0029780258829449537) + +[fips4604916340] +centroid = (0.78750423475253728, -1.7259369684885906) +description = Devoe township, SD +station = ('kabr', 0.0081649113925293879) +zone = ('sdz017', 0.0032752948749225066) + +[fips4604918900] +centroid = (0.78407408681371527, -1.7371657711240991) +description = Ellisville township, SD +station = ('kpir', 0.013268136472207559) +zone = ('sdz036', 0.0065990858862965216) + +[fips4604919380] +centroid = (0.78898095783264965, -1.7281502903262149) +description = Emerson township, SD +station = ('kabr', 0.0085014848660691401) +zone = ('sdz017', 0.0028336341229414433) + +[fips4604919700] +centroid = (0.7888811599060207, -1.7323747201543269) +description = Enterprise township, SD +station = ('kabr', 0.011208536942042503) +zone = ('sdz017', 0.0026351564853607438) + +[fips4604920660] +centroid = (0.78902354386639839, -1.7259434785667007) +description = Fairview township, SD +station = ('kabr', 0.0071770470728672858) +zone = ('sdz017', 0.0039522772865796434) + +[fips4604921260] +centroid = (0.78599428060346688, -1.7300878501420238) +description = Faulkton city, SD +station = ('kabr', 0.011349837080179779) +zone = ('sdz017', 0.00068424956831636711) + +[fips4604922980] +centroid = (0.78895411466875409, -1.730350155675306) +description = Freedom township, SD +station = ('kabr', 0.0098811167962295811) +zone = ('sdz017', 0.002315432163114525) + +[fips4604929180] +centroid = (0.78448896903020693, -1.7262703089224289) +description = Hillsdale township, SD +station = ('kabr', 0.010644524554849462) +zone = ('sdz017', 0.0036327193020658315) + +[fips4604932080] +centroid = (0.7841496421170342, -1.7329121593908934) +description = Irving township, SD +station = ('kabr', 0.014066604250916874) +zone = ('sdz017', 0.0030533540505410083) + +[fips4604934700] +centroid = (0.78600377519459785, -1.7280833394961082) +description = Lafoon township, SD +station = ('kabr', 0.010297636867683774) +zone = ('sdz017', 0.0017634543175967558) + +[fips4604944420] +centroid = (0.78726894691607596, -1.7280802502633323) +description = Myron township, SD +station = ('kabr', 0.0094446482475584615) +zone = ('sdz017', 0.0017625565236537666) + +[fips4604946980] +centroid = (0.78873488386141111, -1.7359867663077917) +description = Onaka town, SD +station = ('kmbg', 0.013245949554352892) +zone = ('sdz017', 0.0044565237908224132) + +[fips4604947060] +centroid = (0.78744363692090802, -1.7351446798502894) +description = O'Neil township, SD +station = ('kmbg', 0.014410096358381513) +zone = ('sdz017', 0.0034365632774629321) + +[fips4604947460] +centroid = (0.78368267927566304, -1.7294242759604155) +description = Orient town, SD +station = ('kabr', 0.012646713788783317) +zone = ('sdz017', 0.003037817037706256) + +[fips4604947500] +centroid = (0.78420477706810465, -1.730731684649792) +description = Orient township, SD +station = ('kabr', 0.012894385234427699) +zone = ('sdz017', 0.0024447930105234543) + +[fips4604949780] +centroid = (0.78575127841171177, -1.7238265338103715) +description = Pioneer township, SD +station = ('kabr', 0.008654881473749796) +zone = ('sdz017', 0.0047368004843093246) + +[fips4604952310] +centroid = (0.78752666223342549, -1.7305797188318208) +description = Pulaski UT, SD +station = ('kabr', 0.010721971644676108) +zone = ('sdz017', 0.00089543863153753323) + +[fips4604955540] +centroid = (0.78372753423743935, -1.7247939349081671) +description = Rockham town, SD +station = ('kabr', 0.01075917887823028) +zone = ('sdz017', 0.0049259295181664471) + +[fips4604957620] +centroid = (0.78728301426984704, -1.7323720672538638) +description = Saratoga township, SD +station = ('kabr', 0.011928509725560815) +zone = ('sdz017', 0.0015263396716056795) + +[fips4604958180] +centroid = (0.78645939339583093, -1.7367625651603031) +description = Seneca town, SD +station = ('kmbg', 0.014035402321936476) +zone = ('sdz016', 0.0055249056971770384) + +[fips4604958540] +centroid = (0.78878342146790903, -1.736900620704136) +description = Sherman township, SD +station = ('kmbg', 0.012659751754275457) +zone = ('sdz010', 0.0053938829624929447) + +[fips4604959960] +centroid = (0.78600756255907467, -1.7355594049871483) +description = Southwest Faulk UT, SD +station = ('kmbg', 0.014984864220110207) +zone = ('sdz017', 0.0036908787628311384) + +[fips4604962940] +centroid = (0.78575557192167167, -1.7305791603264602) +description = Tamworth township, SD +station = ('kabr', 0.011769339655122092) +zone = ('sdz017', 0.00089138680261818489) + +[fips4604965140] +centroid = (0.78897238826602245, -1.7238566232866761) +description = Union township, SD +station = ('kabr', 0.0060895661698540226) +zone = ('sdz017', 0.0051794507503301777) + +[fips4604970100] +centroid = (0.78726355384868729, -1.7238670429023104) +description = Wesley township, SD +station = ('kabr', 0.007397680777860613) +zone = ('sdz017', 0.0046627360760889067) + +[fips4604973340] +centroid = (0.7844854783717029, -1.7238214374489558) +description = Zell township, SD +station = ('kabr', 0.009771952953048741) +zone = ('sdz017', 0.0051330401756618351) + +[fips4604980] +centroid = (0.75188166329360506, -1.6891335421643443) +description = Beresford city, SD +station = ('kykn', 0.0082073233440741796) +zone = ('sdz067', 0.003555975351930812) + +[fips46051] +centroid = (0.78841124745821378, -1.6889945790493004) +description = Grant County, SD +station = ('kvvv', 0.0048635060760338434) +zone = ('sdz021', 5.6003529946632332e-05) + +[fips4605100260] +centroid = (0.78575366951278702, -1.685032472207763) +description = Adams township, SD +station = ('kvvv', 0.0051947130377180189) +zone = ('sdz021', 0.0038107862212676288) + +[fips4605100580] +centroid = (0.78889945095658165, -1.6849774419764476) +description = Alban township, SD +station = ('kvvv', 0.0023333671147821975) +zone = ('sdz021', 0.0028209596357777365) + +[fips4605100620] +centroid = (0.78629329041091867, -1.6851770901895831) +description = Albee town, SD +station = ('kvvv', 0.0047134468646112867) +zone = ('sdz021', 0.003376969439819061) + +[fips4605105500] +centroid = (0.79031522713921432, -1.6845766445670196) +description = Big Stone township, SD +station = ('kvvv', 0.0012347161825707591) +zone = ('mnz046', 0.0028474870032481826) + +[fips4605105540] +centroid = (0.79069138049960419, -1.6837092159287783) +description = Big Stone City city, SD +station = ('kvvv', 0.00055367662631994926) +zone = ('mnz046', 0.0022602123730623893) + +[fips4605106100] +centroid = (0.78982136877407005, -1.695807838303603) +description = Blooming Valley township, SD +station = ('katy', 0.0061704989735393203) +zone = ('sdz020', 0.0048212885457598487) + +[fips4605121180] +centroid = (0.78994876035617312, -1.6942233411421801) +description = Farmington township, SD +station = ('katy', 0.0063691718327231577) +zone = ('sdz021', 0.0040462332553232042) + +[fips4605124100] +centroid = (0.78566050383731556, -1.6875433552295593) +description = Georgia township, SD +station = ('kvvv', 0.0060266366083198365) +zone = ('sdz021', 0.0029061201481452741) + +[fips4605125740] +centroid = (0.78886852372223626, -1.6878749328808536) +description = Grant Center township, SD +station = ('kvvv', 0.0039518376969447967) +zone = ('sdz021', 0.00087094244648656559) + +[fips4605133940] +centroid = (0.79033405924184341, -1.6894995028019022) +description = Kilborn township, SD +station = ('kvvv', 0.004642629530446577) +zone = ('sdz021', 0.0019770061171346734) + +[fips4605134540] +centroid = (0.78625403795604132, -1.6872998992521988) +description = La Bolt town, SD +station = ('kvvv', 0.0054368170135358591) +zone = ('sdz021', 0.0024305801351635868) + +[fips4605139500] +centroid = (0.78867142368980858, -1.6953692196092844) +description = Lura township, SD +station = ('katy', 0.0050209559733726096) +zone = ('sdz020', 0.003714490640102595) + +[fips4605140180] +centroid = (0.78724498354544614, -1.6876940469571766) +description = Madison township, SD +station = ('kvvv', 0.0048423005840977206) +zone = ('sdz021', 0.001441597231623509) + +[fips4605141220] +centroid = (0.7899448682719411, -1.6914925989945095) +description = Marvin town, SD +station = ('katy', 0.0069245692424926859) +zone = ('sdz021', 0.0023830121957608696) + +[fips4605141580] +centroid = (0.7887239755535862, -1.6925698162088407) +description = Mazeppa township, SD +station = ('katy', 0.0055010952644795894) +zone = ('sdz021', 0.002595227598660745) + +[fips4605141940] +centroid = (0.79042195402297377, -1.6871616517221484) +description = Melrose township, SD +station = ('kvvv', 0.0029968787653254204) +zone = ('sdz021', 0.002369713658847358) + +[fips4605142260] +centroid = (0.78922797428168445, -1.6865761635712744) +description = Milbank city, SD +station = ('kvvv', 0.0029778072166901722) +zone = ('sdz021', 0.0018454578245361251) + +[fips4605147780] +centroid = (0.79034292551444352, -1.6914924244615845) +description = Osceola township, SD +station = ('k8d3', 0.0067422586574881708) +zone = ('sdz021', 0.0026580476599756034) + +[fips4605154220] +centroid = (0.78566546057239128, -1.6854837270858662) +description = Revillo town, SD +station = ('kvvv', 0.0053775905421320665) +zone = ('sdz021', 0.0036540187109800476) + +[fips4605161740] +centroid = (0.78719651575211813, -1.689449952904438) +description = Stockholm town, SD +station = ('kvvv', 0.0057995869202646395) +zone = ('sdz021', 0.0012610205196712282) + +[fips4605161780] +centroid = (0.78723220773532154, -1.6899026040459428) +description = Stockholm township, SD +station = ('katy', 0.0053822544932078933) +zone = ('sdz021', 0.0013592921134470536) + +[fips4605161980] +centroid = (0.78616727763892458, -1.6887882811317145) +description = Strandburg town, SD +station = ('kvvv', 0.0061577776869448219) +zone = ('sdz021', 0.002234691369513779) + +[fips4605164180] +centroid = (0.78567722409154961, -1.6897159236291497) +description = Troy township, SD +station = ('katy', 0.0046217217204759537) +zone = ('sdz021', 0.0027807426465486836) + +[fips4605164700] +centroid = (0.78904544774851093, -1.6892257304554343) +description = Twin Brooks town, SD +station = ('kvvv', 0.0047453972798668382) +zone = ('sdz021', 0.00068107390423163394) + +[fips4605164740] +centroid = (0.7888547356211455, -1.6896829543595793) +description = Twin Brooks township, SD +station = ('kvvv', 0.0051148272169569244) +zone = ('sdz021', 0.00070592363679539008) + +[fips4605166900] +centroid = (0.78714558704454496, -1.6850947281021815) +description = Vernon township, SD +station = ('kvvv', 0.0038981105190202033) +zone = ('sdz021', 0.00297371673087696) + +[fips46053] +centroid = (0.75361735832812837, -1.7314042821836328) +description = Gregory County, SD +station = ('kicr', 0.0089701119340974116) +zone = ('sdz050', 0.0003135812900665655) + +[fips4605306220] +centroid = (0.75184574441759899, -1.7269468858069648) +description = Bonesteel city, SD +station = ('konl', 0.011183982402999084) +zone = ('sdz050', 0.0036425775213590377) + +[fips4605308700] +centroid = (0.75368240674935016, -1.7329776266911359) +description = Burke city, SD +station = ('kicr', 0.0079029109934430058) +zone = ('sdz050', 0.001368113681202919) + +[fips4605315300] +centroid = (0.75464261709062741, -1.7369081605265044) +description = Dallas town, SD +station = ('kicr', 0.0049273524768373902) +zone = ('sdz050', 0.0042956067760636521) + +[fips4605316700] +centroid = (0.75785554135074618, -1.7359931891194391) +description = Dixon township, SD +station = ('kicr', 0.0049272143732222769) +zone = ('sdz050', 0.0053522986545052643) + +[fips4605317800] +centroid = (0.75323221652209082, -1.7283795567767566) +description = East Gregory UT, SD +station = ('k9v9', 0.011247557142993692) +zone = ('sdz050', 0.0020884291729266601) + +[fips4605318260] +centroid = (0.7555867878560788, -1.7359891225022819) +description = Edens township, SD +station = ('kicr', 0.0051428134065322388) +zone = ('sdz050', 0.0039526279536090895) + +[fips4605320380] +centroid = (0.75098114321274612, -1.7259376840735841) +description = Fairfax town, SD +station = ('konl', 0.010146190292628135) +zone = ('nez007', 0.0027320089391732728) + +[fips4605320420] +centroid = (0.75104996154515224, -1.7256709104974166) +description = Fairfax township, SD +station = ('konl', 0.010163855527034759) +zone = ('nez007', 0.002684087384450827) + +[fips4605326180] +centroid = (0.75450688283469991, -1.7352204620464111) +description = Gregory city, SD +station = ('kicr', 0.0060720281844969968) +zone = ('sdz050', 0.0030633365350388473) + +[fips4605328420] +centroid = (0.75249900370332801, -1.7311609134727348) +description = Herrick town, SD +station = ('kicr', 0.009628555644505812) +zone = ('sdz050', 0.0013509981720157996) + +[fips4605332940] +centroid = (0.75267646878167083, -1.7341083382470404) +description = Jones township, SD +station = ('kicr', 0.007717399272632687) +zone = ('sdz050', 0.0024785197971756963) + +[fips4605335740] +centroid = (0.75779040566306177, -1.734194662231844) +description = Landing Creek township, SD +station = ('k9v9', 0.0061090081387868171) +zone = ('sdz050', 0.0045333834070727811) + +[fips4605345582] +centroid = (0.75610330059491404, -1.7328670251764369) +description = North Gregory UT, SD +station = ('kicr', 0.0072389906205434342) +zone = ('sdz050', 0.0025897453980420798) + +[fips4605350780] +centroid = (0.75128947307840344, -1.7279948513030321) +description = Pleasant Valley township, SD +station = ('konl', 0.010923435906124436) +zone = ('sdz050', 0.0034266884605271774) + +[fips4605357860] +centroid = (0.75259197739258177, -1.7271738309696014) +description = Schriever township, SD +station = ('konl', 0.011945517190432332) +zone = ('sdz050', 0.0031382592218975013) + +[fips4605359854] +centroid = (0.75105985756201099, -1.7209385549503891) +description = Southeast Gregory UT, SD +station = ('konl', 0.0099308644358421308) +zone = ('sdz063', 0.0030659197380730179) + +[fips4605361460] +centroid = (0.75162845092572572, -1.7234074453503827) +description = Star Valley township, SD +station = ('konl', 0.010474152486175474) +zone = ('nez007', 0.0029017283182458079) + +[fips4605370370] +centroid = (0.75151228181071295, -1.7356821190868561) +description = West Gregory UT, SD +station = ('kicr', 0.007640882381934967) +zone = ('sdz050', 0.0040709720295689592) + +[fips46055] +centroid = (0.77290705138043514, -1.7731112284946502) +description = Haakon County, SD +station = ('kphp', 0.004090807340577673) +zone = ('sdz032', 0.0006717696087732857) + +[fips4605517810] +centroid = (0.77357120152069647, -1.7685175393566936) +description = East Haakon UT, SD +station = ('kphp', 0.00584255215041819) +zone = ('sdz032', 0.0026838777236709824) + +[fips4605540] +centroid = (0.79069138049960419, -1.6837092159287783) +description = Big Stone City city, SD +station = ('kvvv', 0.00055367662631994926) +zone = ('mnz046', 0.0022602123730623893) + +[fips4605542140] +centroid = (0.76918522401701983, -1.7654955192101578) +description = Midland town, SD +station = ('kphp', 0.005587764195222035) +zone = ('sdz032', 0.0061925783102773305) + +[fips4605549300] +centroid = (0.76865535950940689, -1.774384550903735) +description = Philip city, SD +station = ('kphp', 0.00082828646960359171) +zone = ('sdz032', 0.0046955281714677992) + +[fips4605570375] +centroid = (0.77218036609307483, -1.7757123973986524) +description = West Haakon UT, SD +station = ('kphp', 0.0037972613041065365) +zone = ('sdz032', 0.0026684894584323555) + +[fips4605580] +centroid = (0.75971527693520879, -1.7303867552297201) +description = Bijou Hills CDP, SD +station = ('k9v9', 0.0046952056640875862) +zone = ('sdz057', 0.0034034628505855867) + +[fips4605620] +centroid = (0.79453583469626465, -1.7883990211984739) +description = Bison town, SD +station = ('khei', 0.008888007579093176) +zone = ('sdz002', 0.00058717265374408942) + +[fips46057] +centroid = (0.77982391337913626, -1.6960864975719765) +description = Hamlin County, SD +station = ('katy', 0.0038452711726301579) +zone = ('sdz022', 0.00017053155818040109) + +[fips4605707020] +centroid = (0.78134618955272583, -1.6999540599279332) +description = Brantford township, SD +station = ('katy', 0.0038613279892220167) +zone = ('sdz022', 0.0030991391310474644) + +[fips4605708060] +centroid = (0.77824062049489706, -1.7011249664165113) +description = Bryant city, SD +station = ('katy', 0.0066903576737064518) +zone = ('sdz039', 0.0038568228807578792) + +[fips4605710500] +centroid = (0.78058381228216212, -1.693509047692509) +description = Castlewood city, SD +station = ('katy', 0.0034048147151245793) +zone = ('sdz022', 0.0021418698654636368) + +[fips4605710540] +centroid = (0.78134945331842698, -1.6942333418787938) +description = Castlewood township, SD +station = ('katy', 0.0024955093006645466) +zone = ('sdz022', 0.002185281407598915) + +[fips4605712860] +centroid = (0.77818482231871089, -1.6983773643882667) +description = Cleveland township, SD +station = ('katy', 0.0058160140593942382) +zone = ('sdz022', 0.0021412223796340116) + +[fips4605716140] +centroid = (0.77970720321205544, -1.6920220271698099) +description = Dempster township, SD +station = ('katy', 0.0046873296571358905) +zone = ('sdz023', 0.0037576542442152912) + +[fips4605716740] +centroid = (0.77958016069580272, -1.7003191828074506) +description = Dixon township, SD +station = ('katy', 0.0052788542395111639) +zone = ('sdz022', 0.0028923320507463794) + +[fips4605719980] +centroid = (0.77801133659106259, -1.691242929645012) +description = Estelline city, SD +station = ('kbkx', 0.0049436958572316846) +zone = ('sdz040', 0.0038675058646109347) + +[fips4605720020] +centroid = (0.77832769497127918, -1.69240746568182) +description = Estelline township, SD +station = ('kbkx', 0.0054805246682982636) +zone = ('sdz022', 0.0030645318334031925) + +[fips4605721860] +centroid = (0.77968992445246066, -1.6939269493286064) +description = Florence township, SD +station = ('katy', 0.0041344184723004973) +zone = ('sdz022', 0.0016561819854499821) + +[fips4605723660] +centroid = (0.77806402808118036, -1.7003257626987307) +description = Garfield township, SD +station = ('katy', 0.0065240128334116774) +zone = ('sdz039', 0.0037706124199089306) + +[fips4605726780] +centroid = (0.78134933114537941, -1.6918436894268409) +description = Hamlin township, SD +station = ('katy', 0.0035148653119293832) +zone = ('sdz023', 0.0033178671943674149) + +[fips4605727820] +centroid = (0.77941458130966601, -1.6965367925189909) +description = Hayti town, SD +station = ('katy', 0.0042914998504589522) +zone = ('sdz022', 0.0003510061279997105) + +[fips4605727860] +centroid = (0.77982391337913626, -1.6960864975719765) +description = Hayti township, SD +station = ('katy', 0.0038452711726301579) +zone = ('sdz022', 0.00017053155818040109) + +[fips4605727940] +centroid = (0.7811783935984391, -1.6996189218049653) +description = Hazel town, SD +station = ('katy', 0.0037812725523170081) +zone = ('sdz022', 0.0028084852296271683) + +[fips4605735460] +centroid = (0.77806868811028318, -1.6966335884793065) +description = Lake Norden city, SD +station = ('katy', 0.0056333769658496536) +zone = ('sdz022', 0.0016564296171832052) + +[fips4605745340] +centroid = (0.77830900249499024, -1.6957527208058252) +description = Norden township, SD +station = ('katy', 0.0053451218952010231) +zone = ('sdz022', 0.0014393872017974805) + +[fips4605747300] +centroid = (0.77980911298707944, -1.6984941269152252) +description = Opdahl township, SD +station = ('katy', 0.0043623133339959867) +zone = ('sdz022', 0.0015951427662599963) + +[fips4605748060] +centroid = (0.78111170456772028, -1.696722251205308) +description = Oxford township, SD +station = ('katy', 0.0026655584835661851) +zone = ('sdz022', 0.0014470227534274422) + +[fips4605780] +centroid = (0.77059010934512018, -1.8035050029541175) +description = Blackhawk CDP, SD +station = ('krap', 0.0039677553675378533) +zone = ('sdz026', 0.0029737088685399663) + +[fips46059] +centroid = (0.77748681279096066, -1.7279558082876649) +description = Hand County, SD +station = ('khon', 0.010020838612421529) +zone = ('sdz037', 1.9694465130362928e-05) + +[fips4605900780] +centroid = (0.7797794074832104, -1.7301483956137753) +description = Alden township, SD +station = ('kpir', 0.015241432998473166) +zone = ('sdz037', 0.002754831519871867) + +[fips4605901100] +centroid = (0.77824135353318291, -1.7280282045450377) +description = Alpha township, SD +station = ('khon', 0.010306106282565307) +zone = ('sdz037', 0.00073702418675940164) + +[fips4605903820] +centroid = (0.77214559913437508, -1.7237234895713338) +description = Bates township, SD +station = ('khon', 0.0070570855818377787) +zone = ('sdz052', 0.0034636096699753377) + +[fips4605908540] +centroid = (0.77977905841736006, -1.7237885030859705) +description = Burdette township, SD +station = ('khon', 0.0083874176909047478) +zone = ('sdz037', 0.0037416100820101494) + +[fips4605909220] +centroid = (0.77977980890893839, -1.7322684994160504) +description = Campbell township, SD +station = ('kpir', 0.013828343624598871) +zone = ('sdz036', 0.0037092921059558529) + +[fips4605909940] +centroid = (0.78130498232908618, -1.7258963023170191) +description = Carlton township, SD +station = ('khon', 0.010509165404547608) +zone = ('sdz037', 0.0040737674950505334) + +[fips4605910700] +centroid = (0.7738727071489786, -1.7322113224297551) +description = Cedar township, SD +station = ('k9v9', 0.010036867509654086) +zone = ('sdz051', 0.0046281075156802687) + +[fips4605913540] +centroid = (0.77220523703491573, -1.7322040095001894) +description = Como township, SD +station = ('k9v9', 0.008377296268821683) +zone = ('sdz051', 0.0029777097682680709) + +[fips4605921900] +centroid = (0.77991655545583216, -1.7279676939798712) +description = Florence township, SD +station = ('khon', 0.010959914081116219) +zone = ('sdz037', 0.0024107730338098869) + +[fips4605924340] +centroid = (0.77825802142753941, -1.7237940008731143) +description = Gilbert township, SD +station = ('khon', 0.0075586058123819416) +zone = ('sdz037', 0.0030639381959556714) + +[fips4605924500] +centroid = (0.77390764864060346, -1.7300560153364675) +description = Glendale township, SD +station = ('k9v9', 0.010319437279267284) +zone = ('sdz037', 0.0038960107043807908) + +[fips4605925100] +centroid = (0.7768213187471753, -1.7238910586328178) +description = Grand township, SD +station = ('khon', 0.007055075431217769) +zone = ('sdz037', 0.0029826673162082046) + +[fips4605925980] +centroid = (0.77847671118281447, -1.7301649762416693) +description = Greenleaf township, SD +station = ('k9v9', 0.014787678909085836) +zone = ('sdz037', 0.0018445744130307226) + +[fips4605929060] +centroid = (0.77378458547504536, -1.7255189446794454) +description = Hiland township, SD +station = ('khon', 0.0079275143660867825) +zone = ('sdz037', 0.0041100886787668487) + +[fips4605929660] +centroid = (0.77978335192731996, -1.7259004387473462) +description = Holden township, SD +station = ('khon', 0.0096232813849000433) +zone = ('sdz037', 0.0027099060956655408) + +[fips4605930860] +centroid = (0.77515093393326162, -1.7237614504825649) +description = Hulbert township, SD +station = ('khon', 0.0066408042719818556) +zone = ('sdz037', 0.0038122008036910295) + +[fips4605937780] +centroid = (0.78283293082274463, -1.7258923404196171) +description = Linn township, SD +station = ('khon', 0.011533147771271544) +zone = ('sdz017', 0.00497128223087181) + +[fips4605938260] +centroid = (0.77504565567278128, -1.7277636998968979) +description = Logan township, SD +station = ('khon', 0.0094896886661944516) +zone = ('sdz037', 0.0024642447880540682) + +[fips4605942180] +centroid = (0.7768395574378586, -1.7299116591540349) +description = Midland township, SD +station = ('k9v9', 0.013206943888835573) +zone = ('sdz037', 0.001540545270940727) + +[fips4605942460] +centroid = (0.77702876858206738, -1.7276470944495721) +description = Miller city, SD +station = ('khon', 0.0096886511151801184) +zone = ('sdz037', 0.00052756641057303264) + +[fips4605942500] +centroid = (0.77671227057551073, -1.7280862541959592) +description = Miller township, SD +station = ('khon', 0.0099231469295847537) +zone = ('sdz037', 0.00079834692512135497) + +[fips4605943300] +centroid = (0.77185987128253108, -1.7301540853871369) +description = Mondamin township, SD +station = ('k9v9', 0.0083223314334592464) +zone = ('sdz051', 0.0027465069188179975) + +[fips4605945795] +centroid = (0.7824672668911592, -1.7309573208154896) +description = Northwest Hand UT, SD +station = ('kabr', 0.014276653689064675) +zone = ('sdz017', 0.0041896430412598227) + +[fips4605946580] +centroid = (0.77365459335235676, -1.7279420201865741) +description = Ohio township, SD +station = ('khon', 0.0096646527084879291) +zone = ('sdz037', 0.003851220931706392) + +[fips4605947220] +centroid = (0.78117804453258854, -1.732056372098763) +description = Ontario township, SD +station = ('kpir', 0.014533979047234014) +zone = ('sdz037', 0.0046865590846339022) + +[fips4605948340] +centroid = (0.78294869851202942, -1.7278473011680684) +description = Park township, SD +station = ('kabr', 0.012546566947379807) +zone = ('sdz017', 0.0041123726277706787) + +[fips4605948700] +centroid = (0.77526284444489946, -1.7257741641759645) +description = Pearl township, SD +station = ('khon', 0.0080827778767040507) +zone = ('sdz037', 0.0027331233715002603) + +[fips4605950220] +centroid = (0.78308153552139859, -1.723802710066082) +description = Plato township, SD +station = ('khon', 0.010734059703508244) +zone = ('sdz037', 0.0063112761609528181) + +[fips4605950820] +centroid = (0.77227759838570331, -1.7281786170199747) +description = Pleasant Valley township, SD +station = ('k9v9', 0.0092068099732378079) +zone = ('sdz051', 0.0038113963892349319) + +[fips4605953940] +centroid = (0.77694768058501962, -1.7313757809569479) +description = Ree Heights town, SD +station = ('k9v9', 0.013155909604180629) +zone = ('sdz037', 0.0024958763754530317) + +[fips4605953980] +centroid = (0.77681815970122914, -1.7320924131478168) +description = Ree Heights UT, SD +station = ('k9v9', 0.012979836834261146) +zone = ('sdz036', 0.0031297539760566776) + +[fips4605955100] +centroid = (0.77802112788816624, -1.7320655176240434) +description = Riverside township, SD +station = ('kpir', 0.013425677416131194) +zone = ('sdz036', 0.0031162864553101635) + +[fips4605955420] +centroid = (0.77505122327309517, -1.7302389607486615) +description = Rockdale township, SD +station = ('k9v9', 0.011407437376088186) +zone = ('sdz037', 0.0029430558071768934) + +[fips4605956220] +centroid = (0.77358888170601914, -1.7238877774138242) +description = Rose Hill township, SD +station = ('khon', 0.006797175061425121) +zone = ('sdz052', 0.0048228693880348504) + +[fips4605957180] +centroid = (0.7769613639663554, -1.7267917260364622) +description = St. Lawrence town, SD +station = ('khon', 0.0090810197105954549) +zone = ('sdz037', 0.00099689734849018512) + +[fips4605957220] +centroid = (0.77676229171187283, -1.7256379237745538) +description = St. Lawrence township, SD +station = ('khon', 0.0082346307325849837) +zone = ('sdz037', 0.0018168593412909435) + +[fips4605960780] +centroid = (0.7751558383084598, -1.7326268678713623) +description = Spring Hill township, SD +station = ('k9v9', 0.011297158114591668) +zone = ('sdz036', 0.0035567574630148125) + +[fips4605960820] +centroid = (0.77201012667783531, -1.725653195405509) +description = Spring Lake township, SD +station = ('khon', 0.0084051102972169788) +zone = ('sdz052', 0.0042066212400831519) + +[fips4605970140] +centroid = (0.77585351622365184, -1.7226766585392801) +description = Wessington city, SD +station = ('khon', 0.0059692964927750367) +zone = ('sdz037', 0.0041167353499326756) + +[fips4605970860] +centroid = (0.78129848970426874, -1.7237855185729498) +description = Wheaton township, SD +station = ('khon', 0.0093911988755750134) +zone = ('sdz037', 0.0048182809857647583) + +[fips4605973260] +centroid = (0.77826276872310496, -1.7259108758162733) +description = York township, SD +station = ('khon', 0.0089153816165072793) +zone = ('sdz037', 0.0016464334736632979) + +[fips46061] +centroid = (0.76237049868614537, -1.7068769433125539) +description = Hanson County, SD +station = ('kmhe', 0.0033396583068283805) +zone = ('sdz060', 0.00015653706376007876) + +[fips4606100820] +centroid = (0.76190671234401286, -1.7065814939767763) +description = Alexandria city, SD +station = ('kmhe', 0.0037530607339644755) +zone = ('sdz060', 0.00037446223442750897) + +[fips4606105260] +centroid = (0.75973403922466776, -1.7068893526035356) +description = Beulah township, SD +station = ('kmhe', 0.005098300491572891) +zone = ('sdz060', 0.0025382685174455849) + +[fips4606118340] +centroid = (0.76306222502858823, -1.704776177758391) +description = Edgerton township, SD +station = ('kmhe', 0.0045719257634729759) +zone = ('sdz060', 0.0016087786193460635) + +[fips4606119420] +centroid = (0.76099891424017307, -1.703782474548768) +description = Emery city, SD +station = ('kmhe', 0.0059609266847635766) +zone = ('sdz060', 0.0024715368327553043) + +[fips4606120] +centroid = (0.774216554464914, -1.8056092591667845) +description = Blucksberg Mountain CDP, SD +station = ('kspf', 0.0046430374185926068) +zone = ('sdz072', 0.00089126162122490872) + +[fips4606120740] +centroid = (0.76465166147179442, -1.7065577924055342) +description = Fairview township, SD +station = ('kmhe', 0.0033032299987086795) +zone = ('sdz060', 0.0023852077800576867) + +[fips4606121060] +centroid = (0.76315046887556914, -1.7049955656453666) +description = Farmer town, SD +station = ('kmhe', 0.0044005130019753435) +zone = ('sdz060', 0.0015221526344077353) + +[fips4606123220] +centroid = (0.76321207899816446, -1.7073269415535954) +description = Fulton town, SD +station = ('kmhe', 0.0027374371115953971) +zone = ('sdz060', 0.0010425276165312875) + +[fips4606126940] +centroid = (0.76288231648929261, -1.7086389230056123) +description = Hanson township, SD +station = ('kmhe', 0.0019751860438049097) +zone = ('sdz060', 0.0015222071995981349) + +[fips4606132420] +centroid = (0.76299991677429213, -1.7067110497671518) +description = Jasper township, SD +station = ('kmhe', 0.0032222034167474342) +zone = ('sdz060', 0.00073085701656763714) + +[fips4606150140] +centroid = (0.76455575562939737, -1.7088232821345004) +description = Plano township, SD +station = ('kmhe', 0.0017165108247798879) +zone = ('sdz060', 0.0027487241789163883) + +[fips4606150380] +centroid = (0.76161410789491601, -1.7046849144918041) +description = Pleasant township, SD +station = ('kmhe', 0.0050963367450800705) +zone = ('sdz060', 0.0016062549405990128) + +[fips4606156060] +centroid = (0.76147620943071603, -1.7088608939798808) +description = Rosedale township, SD +station = ('kmhe', 0.0028537124026678158) +zone = ('sdz060', 0.0017452394321762566) + +[fips4606160860] +centroid = (0.76459788787754046, -1.7048186067125068) +description = Spring Lake township, SD +station = ('kmhe', 0.0045241668665810704) +zone = ('sdz060', 0.0027008910765068139) + +[fips4606163020] +centroid = (0.75997307951902093, -1.7046086610567845) +description = Taylor township, SD +station = ('kmhe', 0.0060512637717783646) +zone = ('sdz060', 0.0027551977380484787) + +[fips4606169540] +centroid = (0.7616278785427143, -1.7066371001667449) +description = Wayne township, SD +station = ('kmhe', 0.0038738471021512863) +zone = ('sdz060', 0.00064347335470752484) + +[fips4606172780] +centroid = (0.76009474642117747, -1.7086123590943969) +description = Worthen township, SD +station = ('kmhe', 0.0041552242584121327) +zone = ('sdz060', 0.002573042142026645) + +[fips4606180] +centroid = (0.77694968771365946, -1.7451295339680239) +description = Blunt city, SD +station = ('kpir', 0.004341101954165939) +zone = ('sdz035', 0.0022174782765310339) + +[fips4606220] +centroid = (0.75184574441759899, -1.7269468858069648) +description = Bonesteel city, SD +station = ('konl', 0.011183982402999084) +zone = ('sdz050', 0.0036425775213590377) + +[fips46063] +centroid = (0.79581100715435671, -1.8059596689207074) +description = Harding County, SD +station = ('k2wx', 0.00093159929321110283) +zone = ('sdz001', 0.00039048970411609816) + +[fips4606308140] +centroid = (0.79563235525212261, -1.8071741562807078) +description = Buffalo town, SD +station = ('k2wx', 0.00025087106484327219) +zone = ('sdz001', 0.00059013990975517652) + +[fips4606309260] +centroid = (0.79499874837377105, -1.8147048854839203) +description = Camp Crook town, SD +station = ('k2wx', 0.005263941957001317) +zone = ('mtz037', 0.0068865376984446197) + +[fips4606345585] +centroid = (0.79827738428022743, -1.8070894554521084) +description = North Harding UT, SD +station = ('k2wx', 0.0024112580731771517) +zone = ('sdz001', 0.0027982343206824599) + +[fips4606359865] +centroid = (0.79226807603927085, -1.8066657593228943) +description = South Harding UT, SD +station = ('k2wx', 0.0036284101375679296) +zone = ('sdz001', 0.0032677629115617137) + +[fips46065] +centroid = (0.77479106449479285, -1.7450822180920023) +description = Hughes County, SD +station = ('kpir', 0.003713677259520932) +zone = ('sdz035', 0.00013995865430224217) + +[fips4606506180] +centroid = (0.77694968771365946, -1.7451295339680239) +description = Blunt city, SD +station = ('kpir', 0.004341101954165939) +zone = ('sdz035', 0.0022174782765310339) + +[fips4606514835] +centroid = (0.77125012305505436, -1.7413664121145065) +description = Crow Creek UT, SD +station = ('kpir', 0.0072196320933757699) +zone = ('sdz035', 0.0044622375229248935) + +[fips4606527420] +centroid = (0.77708144261889256, -1.740778637582312) +description = Harrold town, SD +station = ('kpir', 0.0072060936763376536) +zone = ('sdz035', 0.0039682244620201949) + +[fips4606540] +centroid = (0.79327432816621557, -1.739333644588001) +description = Bowdle city, SD +station = ('kmbg', 0.0094576877234483249) +zone = ('sdz009', 0.0046088986240079999) + +[fips4606545590] +centroid = (0.77562082892777606, -1.7423495386288621) +description = North Hughes UT, SD +station = ('kpir', 0.0057460812510934335) +zone = ('sdz035', 0.0022608817923475194) + +[fips4606549600] +centroid = (0.77449270045916452, -1.7509142532408339) +description = Pierre city, SD +station = ('kpir', 0.0004790695013312777) +zone = ('sdz035', 0.0040474088861941942) + +[fips4606552620] +centroid = (0.77320000489538232, -1.7424336460455156) +description = Raber township, SD +station = ('kpir', 0.0057882660945885022) +zone = ('sdz035', 0.0025382324996928315) + +[fips4606570390] +centroid = (0.77542193120621883, -1.7491044689795632) +description = West Hughes UT, SD +station = ('kpir', 0.0011477336782409913) +zone = ('sdz035', 0.0028303376140031457) + +[fips4606620] +centroid = (0.76990194347435137, -1.7990141835222735) +description = Box Elder city, SD +station = ('krca', 0.00072650596753920989) +zone = ('sdz026', 0.002680630935948781) + +[fips4606660] +centroid = (0.78697608066759128, -1.7041734283012149) +description = Bradley town, SD +station = ('katy', 0.0069217123926701204) +zone = ('sdz019', 0.0041944917664362797) + +[fips46067] +centroid = (0.75636827648195171, -1.7060485751429721) +description = Hutchinson County, SD +station = ('kmhe', 0.0083194387778923028) +zone = ('sdz065', 7.4144172723528866e-05) + +[fips4606709700] +centroid = (0.75420066481743753, -1.705141597343881) +description = Capital township, SD +station = ('kykn', 0.0065346154410288546) +zone = ('sdz065', 0.0022545864420105382) + +[fips4606712460] +centroid = (0.75816964825622768, -1.7050868114586608) +description = Clayton township, SD +station = ('kmhe', 0.0071333070490728727) +zone = ('sdz065', 0.0019878492576340897) + +[fips4606714780] +centroid = (0.75866345426149451, -1.7092864227048097) +description = Cross Plains township, SD +station = ('kmhe', 0.005355414977647327) +zone = ('sdz065', 0.0032633174848432007) + +[fips4606716620] +centroid = (0.75879943286351736, -1.7102119184472646) +description = Dimock town, SD +station = ('kmhe', 0.0051053416310572414) +zone = ('sdz059', 0.0040078171953536849) + +[fips4606720300] +centroid = (0.75418745267499987, -1.7092100470967422) +description = Fair township, SD +station = ('kykn', 0.0086722507848157899) +zone = ('sdz065', 0.0030998988576117952) + +[fips4606722420] +centroid = (0.75880671088649809, -1.7070741829713216) +description = Foster township, SD +station = ('kmhe', 0.0058100312241245395) +zone = ('sdz065', 0.0025633248340641134) + +[fips4606723020] +centroid = (0.75659895664918797, -1.7004649876131621) +description = Freeman city, SD +station = ('kykn', 0.0075846142993133423) +zone = ('sdz065', 0.0041354044677825372) + +[fips4606724140] +centroid = (0.7556943524978792, -1.7092758983694203) +description = German township, SD +station = ('kmhe', 0.0082735391700222791) +zone = ('sdz065', 0.0023700841431175683) + +[fips4606725420] +centroid = (0.7573064084081913, -1.7011924932052709) +description = Grandview township, SD +station = ('kykn', 0.0083445215277660034) +zone = ('sdz065', 0.0037255655361503721) + +[fips4606733340] +centroid = (0.75583593360680101, -1.7032523831483521) +description = Kassel township, SD +station = ('kykn', 0.0072871093112522149) +zone = ('sdz065', 0.0021590083306059337) + +[fips4606733420] +centroid = (0.7543283356522209, -1.7070291883832052) +description = Kaylor township, SD +station = ('kykn', 0.0075485109272540934) +zone = ('sdz065', 0.0021085300619351171) + +[fips4606734420] +centroid = (0.75568445648102045, -1.711322680889819) +description = Kulm township, SD +station = ('kmhe', 0.0081912293244918513) +zone = ('sdz065', 0.0038267694608216476) + +[fips4606736940] +centroid = (0.75719729042335659, -1.7092903671489192) +description = Liberty township, SD +station = ('kmhe', 0.0067896682375646559) +zone = ('sdz065', 0.0024477129527084888) + +[fips4606741980] +centroid = (0.7546557070600175, -1.7030589134007685) +description = Menno city, SD +station = ('kykn', 0.006142687010391769) +zone = ('sdz065', 0.0028015810855147) + +[fips4606742660] +centroid = (0.75718083196851027, -1.7072916509961202) +description = Milltown township, SD +station = ('kmhe', 0.0072119748777528117) +zone = ('sdz065', 0.0011904194768611815) + +[fips4606743260] +centroid = (0.75414893325840826, -1.7011495930122571) +description = Molan township, SD +station = ('kykn', 0.0052263904911078662) +zone = ('sdz069', 0.003625021334882946) + +[fips4606746300] +centroid = (0.75430046274406648, -1.7111312357241677) +description = Oak Hollow township, SD +station = ('kmhe', 0.0095724151542021709) +zone = ('sdz068', 0.0044763254274055508) + +[fips4606746900] +centroid = (0.75470155685946727, -1.704738548459718) +description = Olivet town, SD +station = ('kykn', 0.0067710051586063712) +zone = ('sdz065', 0.0019256363315960363) + +[fips4606748460] +centroid = (0.75735718003613173, -1.7101879201700496) +description = Parkston city, SD +station = ('kmhe', 0.0065420506504843172) +zone = ('sdz065', 0.0031156014233682154) + +[fips4606750420] +centroid = (0.75862369566113397, -1.702937543204585) +description = Pleasant township, SD +station = ('kmhe', 0.0078522154783671073) +zone = ('sdz065', 0.0032636142685906425) + +[fips4606758340] +centroid = (0.75571185815027675, -1.7072171603436452) +description = Sharon township, SD +station = ('kmhe', 0.0086100956319776403) +zone = ('sdz065', 0.0010014266518787542) + +[fips4606758860] +centroid = (0.75862116493371867, -1.7008407220945316) +description = Silver Lake township, SD +station = ('kykn', 0.009622621540139837) +zone = ('sdz061', 0.0037844057689961183) + +[fips4606761420] +centroid = (0.75857545476060884, -1.7113858618087412) +description = Starr township, SD +station = ('kmhe', 0.0053041742646599598) +zone = ('sdz059', 0.0038717209461284208) + +[fips4606762500] +centroid = (0.75719524838813179, -1.7113607465208049) +description = Susquehanna township, SD +station = ('kmhe', 0.0066821751053575823) +zone = ('sdz059', 0.0052100538496235227) + +[fips4606762620] +centroid = (0.75406650135783659, -1.7032271282340758) +description = Sweet township, SD +station = ('kykn', 0.0056646045324316935) +zone = ('sdz065', 0.0031053401901234871) + +[fips4606764020] +centroid = (0.7544237004425498, -1.7098233383426005) +description = Tripp city, SD +station = ('kykn', 0.0091726902156866619) +zone = ('sdz065', 0.0032931424647667301) + +[fips4606766140] +centroid = (0.75571437142439968, -1.7009976097409933) +description = Valley township, SD +station = ('kykn', 0.0067482859806290638) +zone = ('sdz069', 0.0051334573431203239) + +[fips4606772420] +centroid = (0.75609672070363398, -1.7053256946733812) +description = Wittenberg township, SD +station = ('kykn', 0.008181797053906651) +zone = ('sdz065', 0.00063821255795180908) + +[fips4606772460] +centroid = (0.75710251904497339, -1.7029197233929223) +description = Wolf Creek township, SD +station = ('kykn', 0.0084087528690191607) +zone = ('sdz065', 0.0024637874602523968) + +[fips4606840] +centroid = (0.76084750692756253, -1.6856325687644762) +description = Brandon city, SD +station = ('kfsd', 0.0021608143937877525) +zone = ('sdz062', 0.0030244255460569061) + +[fips46069] +centroid = (0.77732254240176302, -1.7364655624814913) +description = Hyde County, SD +station = ('kpir', 0.010215556590813798) +zone = ('sdz036', 0.00018711238734595278) + +[fips4606911150] +centroid = (0.77600820475525623, -1.7364661733467295) +description = Central Hyde UT, SD +station = ('kpir', 0.00995680879278848) +zone = ('sdz036', 0.0014919406642117077) + +[fips4606914840] +centroid = (0.77176328476172562, -1.7365141349945743) +description = Crow Creek UT, SD +station = ('k9v9', 0.0082021724082339698) +zone = ('sdz051', 0.0044008818140880354) + +[fips4606928980] +centroid = (0.77704449399862774, -1.7355437493837578) +description = Highmore city, SD +station = ('kpir', 0.010787598287579872) +zone = ('sdz036', 0.000748051012356225) + +[fips4606940] +centroid = (0.7795850476177083, -1.686427112453154) +description = Brandt town, SD +station = ('kcnb', 0.0045318743045539411) +zone = ('sdz023', 0.0017090373715863587) + +[fips4606945595] +centroid = (0.78182706266823521, -1.7362680959299206) +description = North Hyde UT, SD +station = ('kpir', 0.012296849535026017) +zone = ('sdz036', 0.004328958144170926) + +[fips4606966180] +centroid = (0.77943709605701683, -1.7380285571865297) +description = Valley township, SD +station = ('kpir', 0.0099644290298448995) +zone = ('sdz036', 0.002266921527461821) + +[fips4606971740] +centroid = (0.77850625960705067, -1.7341837364707264) +description = William Hamilton township, SD +station = ('kpir', 0.012112869233959246) +zone = ('sdz036', 0.0018592375632735701) + +[fips4607040] +centroid = (0.76666119866595572, -1.6919052995494361) +description = Brant Lake CDP, SD +station = ('kmds', 0.0024085093522018268) +zone = ('sdz055', 0.0029151726149339733) + +[fips4607060] +centroid = (0.7881767973797934, -1.7160523660830909) +description = Brentford town, SD +station = ('kabr', 0.0052051621405714149) +zone = ('sdz018', 0.0038700817668186299) + +[fips46071] +centroid = (0.76231258866156426, -1.773716246879854) +description = Jackson County, SD +station = ('kphp', 0.0065134595207878981) +zone = ('sdz043', 0.00029579489734890199) + +[fips4607104620] +centroid = (0.76501662727167896, -1.7675144462756949) +description = Belvidere town, SD +station = ('kphp', 0.0056151411884311836) +zone = ('sdz043', 0.0051039604976823071) + +[fips4607114220] +centroid = (0.76734274973885952, -1.7785320117118342) +description = Cottonwood town, SD +station = ('kphp', 0.0040722438412511431) +zone = ('sdz043', 0.0058606194698177638) + +[fips4607125520] +centroid = (0.7672896219164288, -1.7755664529666004) +description = Grandview II township, SD +station = ('kphp', 0.0022582566402626174) +zone = ('sdz043', 0.0048628760493624598) + +[fips4607131620] +centroid = (0.76318490422171092, -1.7799443321425481) +description = Interior town, SD +station = ('kphp', 0.0074142376258032683) +zone = ('sdz043', 0.0045181648638862896) + +[fips4607131660] +centroid = (0.7637674078595641, -1.7786648487212036) +description = Interior township, SD +station = ('kphp', 0.0063795451878282464) +zone = ('sdz043', 0.0037396677574328156) + +[fips4607132780] +centroid = (0.76710269715354018, -1.7711927625808579) +description = Jewett township, SD +station = ('kphp', 0.0022672012288946788) +zone = ('sdz043', 0.0048575727611315433) + +[fips4607133180] +centroid = (0.76492548617813982, -1.7716008554665592) +description = Kadoka city, SD +station = ('kphp', 0.0040701346131862097) +zone = ('sdz043', 0.0027875332215312383) + +[fips4607145565] +centroid = (0.76615821222882352, -1.7691954775980456) +description = Northeast Jackson UT, SD +station = ('kphp', 0.003950305302018617) +zone = ('sdz043', 0.0048363350045518517) + +[fips4607145800] +centroid = (0.76620846025798839, -1.7781645326378268) +description = Northwest Jackson UT, SD +station = ('kphp', 0.0043923153613126924) +zone = ('sdz043', 0.0048106080826674086) + +[fips4607159856] +centroid = (0.76090220554632015, -1.7689894763864329) +description = Southeast Jackson UT, SD +station = ('kphp', 0.0084924114823154047) +zone = ('sdz043', 0.0038406141133274976) + +[fips4607159962] +centroid = (0.7603636667523247, -1.7771086433469552) +description = Southwest Jackson UT, SD +station = ('kphp', 0.0088996541605161576) +zone = ('sdz043', 0.0033110587590679304) + +[fips4607168340] +centroid = (0.76413205950018326, -1.773394408165786) +description = Wall township, SD +station = ('kphp', 0.0046865594917870363) +zone = ('sdz043', 0.0015453027243935917) + +[fips4607170700] +centroid = (0.76368516794521013, -1.7755516351212512) +description = Weta township, SD +station = ('kphp', 0.0053926385327448889) +zone = ('sdz043', 0.0016928334096044534) + +[fips4607180] +centroid = (0.76009455443495966, -1.7016678161737591) +description = Bridgewater city, SD +station = ('kmhe', 0.0077394252867241118) +zone = ('sdz061', 0.0027168060902224888) + +[fips46073] +centroid = (0.76905168887594966, -1.7212993494133613) +description = Jerauld County, SD +station = ('khon', 0.0074130151899998234) +zone = ('sdz052', 9.792044766234564e-05) + +[fips4607300] +centroid = (0.79140359700746543, -1.7059624082378013) +description = Bristol city, SD +station = ('kabr', 0.0084432317583137215) +zone = ('sdz011', 0.0017273426426845176) + +[fips4607301020] +centroid = (0.77114542075322712, -1.7168517966936745) +description = Alpena town, SD +station = ('khon', 0.0038763010181439073) +zone = ('sdz038', 0.0041881140956734775) + +[fips4607301060] +centroid = (0.77060873200823887, -1.7174317870574047) +description = Alpena township, SD +station = ('khon', 0.0045426262889133266) +zone = ('sdz052', 0.0032316276728915089) + +[fips4607301580] +centroid = (0.76762648791535615, -1.7210704320286698) +description = Anina township, SD +station = ('kmhe', 0.008169755089089778) +zone = ('sdz052', 0.0014978843210438954) + +[fips4607305940] +centroid = (0.76770872782971011, -1.7173004684844846) +description = Blaine township, SD +station = ('kmhe', 0.0059425598393418816) +zone = ('sdz052', 0.0032706819884348692) + +[fips4607311580] +centroid = (0.7703418886189014, -1.7212450696736246) +description = Chery township, SD +station = ('khon', 0.0064654737682037621) +zone = ('sdz052', 0.0012441004754226029) + +[fips4607314820] +centroid = (0.76920618542133623, -1.7254452394251338) +description = Crow township, SD +station = ('k9v9', 0.0078296931495124896) +zone = ('sdz052', 0.0028977103380523829) + +[fips4607314940] +centroid = (0.76749571039450426, -1.7233947393534284) +description = Crow Lake township, SD +station = ('khon', 0.0095765211237955686) +zone = ('sdz052', 0.0021478009005632664) + +[fips4607315260] +centroid = (0.77061658598987293, -1.7193378960400927) +description = Dale UT, SD +station = ('khon', 0.0053080903812598185) +zone = ('sdz052', 0.0021242136690715974) + +[fips4607322700] +centroid = (0.76898897919592557, -1.7171159871825488) +description = Franklin township, SD +station = ('khon', 0.0059505234508691598) +zone = ('sdz052', 0.0030911114349491753) + +[fips4607327140] +centroid = (0.77065020103126625, -1.7234057349277159) +description = Harmony township, SD +station = ('khon', 0.0075228335907391855) +zone = ('sdz052', 0.0021059378633310954) + +[fips4607335780] +centroid = (0.76916117337992729, -1.7178336840242614) +description = Lane town, SD +station = ('khon', 0.0059740706609059452) +zone = ('sdz052', 0.0025736871767215027) + +[fips4607338340] +centroid = (0.76760477601946142, -1.7251557940219828) +description = Logan township, SD +station = ('k9v9', 0.0070195250528999782) +zone = ('sdz052', 0.0030794748270091838) + +[fips4607340980] +centroid = (0.77045550955320641, -1.7256354803136011) +description = Marlar township, SD +station = ('k9v9', 0.0086372515923413568) +zone = ('sdz052', 0.0033185329329067778) + +[fips4607341820] +centroid = (0.76905168887594966, -1.7212993494133613) +description = Media UT, SD +station = ('khon', 0.0074130151899998234) +zone = ('sdz052', 9.792044766234564e-05) + +[fips4607350460] +centroid = (0.76895525943477705, -1.723328975347213) +description = Pleasant township, SD +station = ('khon', 0.0085054322863849906) +zone = ('sdz052', 0.0013835285990198047) + +[fips4607367460] +centroid = (0.76772548299052934, -1.7191790885314535) +description = Viola township, SD +station = ('kmhe', 0.0070404194594297833) +zone = ('sdz052', 0.0021174594611850597) + +[fips4607370220] +centroid = (0.76935033216425841, -1.7203977821349512) +description = Wessington Springs city, SD +station = ('khon', 0.0067689380037557409) +zone = ('sdz052', 0.00077112072818087327) + +[fips4607370260] +centroid = (0.76910462471216268, -1.719097930721236) +description = Wessington Springs township, SD +station = ('khon', 0.0064395528042643447) +zone = ('sdz052', 0.0016647138394824488) + +[fips4607380] +centroid = (0.79922769860464593, -1.7061096442134995) +description = Britton city, SD +station = ('kgwr', 0.0075568494727282992) +zone = ('sdz007', 0.00196843562628419) + +[fips4607420] +centroid = (0.77656374305616604, -1.7164712101969846) +description = Broadland town, SD +station = ('khon', 0.0023894883322240516) +zone = ('sdz038', 0.001625428835186652) + +[fips46075] +centroid = (0.76710693830362253, -1.7573046366706708) +description = Jones County, SD +station = ('kpir', 0.009061239725389178) +zone = ('sdz045', 0.00015308789681753659) + +[fips4607508180] +centroid = (0.76558279462773349, -1.7566045676544035) +description = Buffalo township, SD +station = ('kpir', 0.010128951463788713) +zone = ('sdz045', 0.0017584447242001548) + +[fips4607511152] +centroid = (0.7665962724177815, -1.7581837764681929) +description = Central Jones UT, SD +station = ('kpir', 0.0098401906153960956) +zone = ('sdz045', 0.00088305196449515674) + +[fips4607517020] +centroid = (0.76665613721112491, -1.7547048116701929) +description = Draper town, SD +station = ('kpir', 0.0085889954176241543) +zone = ('sdz045', 0.0020064915665623227) + +[fips4607517060] +centroid = (0.76734924236367696, -1.7545187246653451) +description = Draper township, SD +station = ('kpir', 0.0078964106338818441) +zone = ('sdz045', 0.0020509667046548861) + +[fips4607517380] +centroid = (0.76557977520812759, -1.7545217266316586) +description = Dunkel township, SD +station = ('kpir', 0.0095550078126891251) +zone = ('sdz045', 0.0026453218561375562) + +[fips4607525500] +centroid = (0.76570454879635264, -1.7630212357427757) +description = Grandview UT, SD +station = ('kphp', 0.0079968275209801494) +zone = ('sdz045', 0.0043590461147933832) + +[fips4607534220] +centroid = (0.76866946176976303, -1.7562031942863223) +description = Kolls township, SD +station = ('kpir', 0.0073245954344541703) +zone = ('sdz045', 0.0016440198420195201) + +[fips4607543740] +centroid = (0.76717338298824589, -1.7624987016180211) +description = Morgan township, SD +station = ('kphp', 0.0079094622911712129) +zone = ('sdz045', 0.0036963235008893374) + +[fips4607544220] +centroid = (0.76403182524124114, -1.7585819035238655) +description = Mullen township, SD +station = ('kpir', 0.012167519174918703) +zone = ('sdz045', 0.0033391955640962919) + +[fips4607544260] +centroid = (0.76601385604639105, -1.7577935208474471) +description = Murdo city, SD +station = ('kpir', 0.010171017024105005) +zone = ('sdz045', 0.0012776951330901146) + +[fips4607544380] +centroid = (0.76682232746249979, -1.7526441886888258) +description = Mussman township, SD +station = ('kpir', 0.0079958060911477485) +zone = ('sdz045', 0.0034261362995831207) + +[fips4607545597] +centroid = (0.76953476110631669, -1.7586254145821176) +description = North Jones UT, SD +station = ('kpir', 0.0078621608109348887) +zone = ('sdz045', 0.002454469374209782) + +[fips4607546640] +centroid = (0.76533541165955576, -1.7606623883521202) +description = Okaton township, SD +station = ('kpir', 0.011920769709734571) +zone = ('sdz045', 0.0030534894295846313) + +[fips4607554820] +centroid = (0.76963653125500053, -1.752527321442112) +description = Rich Valley UT, SD +station = ('kpir', 0.0052528954514434742) +zone = ('sdz045', 0.0042161844970207375) + +[fips4607558060] +centroid = (0.76722870992553416, -1.760950262958944) +description = Scovil township, SD +station = ('kpir', 0.010653279695415928) +zone = ('sdz045', 0.0025808640982260479) + +[fips4607559780] +centroid = (0.7686134017941888, -1.7625499619381519) +description = South Creek township, SD +station = ('kpir', 0.010662200064344131) +zone = ('sdz045', 0.003969863600602197) + +[fips4607567540] +centroid = (0.76841195589192368, -1.7542825641642577) +description = Virgil township, SD +station = ('kpir', 0.0068546087350453352) +zone = ('sdz045', 0.0025018407845434545) + +[fips4607570460] +centroid = (0.76408053738066439, -1.7567244368674304) +description = Westover UT, SD +station = ('kpir', 0.011526978305972796) +zone = ('sdz045', 0.0032066139809017505) + +[fips4607571780] +centroid = (0.76485394513210059, -1.7524715930790959) +description = Williams Creek township, SD +station = ('kpir', 0.0099077907009404113) +zone = ('sdz045', 0.0042655494199217003) + +[fips4607573420] +centroid = (0.76411544396570419, -1.7544448274248157) +description = Zickrick township, SD +station = ('kpir', 0.010938103646769691) +zone = ('sdz045', 0.0037789759872440807) + +[fips4607580] +centroid = (0.77322302578821622, -1.6892227808489986) +description = Brookings city, SD +station = ('kbkx', 0.00039361456105053885) +zone = ('sdz040', 0.0011760954079769544) + +[fips46077] +centroid = (0.77427987501017626, -1.70168403028251) +description = Kingsbury County, SD +station = ('kmds', 0.0079602888591107732) +zone = ('sdz039', 0.00015131788259093506) + +[fips4607702180] +centroid = (0.77429825332719981, -1.6953794995985787) +description = Arlington city, SD +station = ('kbkx', 0.0041654389055923949) +zone = ('sdz039', 0.0044105578861177355) + +[fips4607703060] +centroid = (0.7764184793025225, -1.6965973554440352) +description = Badger town, SD +station = ('kbkx', 0.0058553566336059818) +zone = ('sdz022', 0.0032936702609649617) + +[fips4607703100] +centroid = (0.77655424846503518, -1.6968261681089718) +description = Badger township, SD +station = ('kbkx', 0.0060664236050384452) +zone = ('sdz022', 0.003174998192236315) + +[fips4607703340] +centroid = (0.77463077345628972, -1.6996133192980665) +description = Baker township, SD +station = ('kbkx', 0.0071878288642336641) +zone = ('sdz039', 0.001402454839148952) + +[fips4607703420] +centroid = (0.77648595373140461, -1.7060680879240095) +description = Bancroft town, SD +station = ('khon', 0.0062952855891326648) +zone = ('sdz039', 0.0038457872882530918) + +[fips4607716220] +centroid = (0.77477296543044971, -1.6964528945418476) +description = Denver township, SD +station = ('kbkx', 0.0050376612274379839) +zone = ('sdz039', 0.0036607938722633291) + +[fips4607716260] +centroid = (0.774684424877496, -1.7025632398932022) +description = De Smet city, SD +station = ('kmds', 0.0086817455633067739) +zone = ('sdz039', 0.00078122133452451228) + +[fips4607716300] +centroid = (0.77455270487884809, -1.7021139223305688) +description = De Smet township, SD +station = ('kmds', 0.0083683066840266728) +zone = ('sdz039', 0.00043417056732334135) + +[fips4607719860] +centroid = (0.77646249650625787, -1.7006637980682568) +description = Erwin town, SD +station = ('katy', 0.0080450862614324693) +zone = ('sdz039', 0.0021611174813639107) + +[fips4607719940] +centroid = (0.77246375520372113, -1.7062547683408029) +description = Esmond township, SD +station = ('khon', 0.0062826339075704807) +zone = ('sdz039', 0.0038827292802655951) + +[fips4607727700] +centroid = (0.776538732487985, -1.6999577600259477) +description = Hartland township, SD +station = ('katy', 0.0077628417268786618) +zone = ('sdz039', 0.0024252807274190167) + +[fips4607728460] +centroid = (0.77452875896151063, -1.6970651385901547) +description = Hetland town, SD +station = ('kbkx', 0.0053892031198662016) +zone = ('sdz039', 0.0032068636200247515) + +[fips4607732020] +centroid = (0.77436808395057211, -1.7077802035603384) +description = Iroquois city, SD +station = ('khon', 0.0048070336541908929) +zone = ('sdz038', 0.0054189452062770966) + +[fips4607732060] +centroid = (0.7745169081758897, -1.7069837749160683) +description = Iroquois township, SD +station = ('khon', 0.0053697765089476589) +zone = ('sdz039', 0.0038876275048251308) + +[fips4607735500] +centroid = (0.77425708101014523, -1.6995316727956582) +description = Lake Preston city, SD +station = ('kmds', 0.0070199523996873434) +zone = ('sdz039', 0.0014478611322071785) + +[fips4607736580] +centroid = (0.77651537998259323, -1.7063333779703129) +description = Le Sueur township, SD +station = ('khon', 0.0061233758777348192) +zone = ('sdz039', 0.0040215195842216705) + +[fips4607740] +centroid = (0.77558445626616457, -1.6910431243522437) +description = Bruce city, SD +station = ('kbkx', 0.002570227799518513) +zone = ('sdz040', 0.0017138225736050975) + +[fips4607740500] +centroid = (0.7746315937610383, -1.7048782446130475) +description = Manchester township, SD +station = ('khon', 0.0068729392526126346) +zone = ('sdz039', 0.0023922349565742122) + +[fips4607741260] +centroid = (0.77248960352994311, -1.7027793291078916) +description = Mathews township, SD +station = ('kmds', 0.0073525884935550408) +zone = ('sdz039', 0.0020998764077342419) + +[fips4607746780] +centroid = (0.7719277296838486, -1.6983716397083202) +description = Oldham city, SD +station = ('kmds', 0.0046339756410543245) +zone = ('sdz039', 0.0033552058267111305) + +[fips4607760220] +centroid = (0.77672972386803063, -1.7038782931247023) +description = Spirit Lake township, SD +station = ('khon', 0.0078638175908421377) +zone = ('sdz039', 0.0028666044245652918) + +[fips4607760940] +centroid = (0.77248531001998322, -1.6968386123065384) +description = Spring Lake township, SD +station = ('kmds', 0.0045516113090734948) +zone = ('sdz039', 0.0038732356821566615) + +[fips4607771540] +centroid = (0.77229379504116191, -1.6997101676182595) +description = Whitewood township, SD +station = ('kmds', 0.0055418541429520978) +zone = ('sdz039', 0.0024792157805267746) + +[fips46079] +centroid = (0.76844141704969737, -1.6951200214986846) +description = Lake County, SD +station = ('kmds', 0.00056212799034075975) +zone = ('sdz055', 0.00013668187811558487) + +[fips4607903180] +centroid = (0.77073556508498131, -1.6961093962917628) +description = Badus township, SD +station = ('kmds', 0.0027441175469975687) +zone = ('sdz055', 0.0024886173598937639) + +[fips4607911700] +centroid = (0.76615850893479631, -1.6919449010701639) +description = Chester township, SD +station = ('kmds', 0.0027561737134924259) +zone = ('sdz055', 0.0032085468115914317) + +[fips4607912380] +centroid = (0.76593599690845959, -1.6985408493793008) +description = Clarno township, SD +station = ('kmds', 0.0038203013682203335) +zone = ('sdz055', 0.003378489328981946) + +[fips4607913660] +centroid = (0.76909720706284168, -1.6983731755980618) +description = Concord township, SD +station = ('kmds', 0.0029905877932450732) +zone = ('sdz055', 0.0023878895492540041) + +[fips4607921220] +centroid = (0.76909237250081375, -1.6962736143210828) +description = Farmington township, SD +station = ('kmds', 0.0015869742695184669) +zone = ('sdz055', 0.0010714736550502548) + +[fips4607922780] +centroid = (0.76593028968180554, -1.6940168163317915) +description = Franklin township, SD +station = ('kmds', 0.0023769497162225693) +zone = ('sdz055', 0.0025520818334328643) + +[fips4607928260] +centroid = (0.76753780773606239, -1.696321017463567) +description = Herman township, SD +station = ('kmds', 0.001596970638881051) +zone = ('sdz055', 0.0011154072177932655) + +[fips4607935660] +centroid = (0.76747864107441977, -1.6941435272354863) +description = Lake View township, SD +station = ('kmds', 0.00083080520898476591) +zone = ('sdz055', 0.0011538044375361406) + +[fips4607936500] +centroid = (0.76908928326803772, -1.6941773691696826) +description = Le Roy township, SD +station = ('kmds', 0.00080677798418749458) +zone = ('sdz055', 0.0010716416235675927) + +[fips4607940220] +centroid = (0.76805336054380902, -1.6948626901537707) +description = Madison city, SD +station = ('kmds', 0.00043088521020699595) +zone = ('sdz055', 0.00038058928848866603) + +[fips4607946060] +centroid = (0.77073481459340298, -1.6933078635896315) +description = Nunda town, SD +station = ('kmds', 0.0025563833783845504) +zone = ('sdz055', 0.0027731405094969562) + +[fips4607946100] +centroid = (0.77048111353333315, -1.6943623217105162) +description = Nunda township, SD +station = ('kmds', 0.0021871781026412988) +zone = ('sdz055', 0.0022402673458178511) + +[fips4607947580] +centroid = (0.76592802075377786, -1.696093025103379) +description = Orland township, SD +station = ('kmds', 0.002672834305035844) +zone = ('sdz055', 0.0024803028210477981) + +[fips4607952860] +centroid = (0.77003703195845563, -1.6967290754426831) +description = Ramona town, SD +station = ('kmds', 0.0024335063976854026) +zone = ('sdz055', 0.0020202262034044326) + +[fips4607957020] +centroid = (0.76896983293403121, -1.6919048108572456) +description = Rutland township, SD +station = ('kmds', 0.001893721518342741) +zone = ('sdz055', 0.0024732585347297686) + +[fips4607962180] +centroid = (0.77049256289322621, -1.6922793061548462) +description = Summit township, SD +station = ('kmds', 0.0026608263906847196) +zone = ('sdz055', 0.0030277945889323602) + +[fips4607969580] +centroid = (0.77060817350287836, -1.6983781497864301) +description = Wayne township, SD +station = ('kmds', 0.0036962829066714076) +zone = ('sdz055', 0.0032117999248640425) + +[fips4607970020] +centroid = (0.76789155106885654, -1.6923505854014975) +description = Wentworth village, SD +station = ('kmds', 0.0015041228176316229) +zone = ('sdz055', 0.0021150846446341101) + +[fips4607970060] +centroid = (0.76745335125355829, -1.6919068528924706) +description = Wentworth township, SD +station = ('kmds', 0.0019583970827530667) +zone = ('sdz055', 0.0025444002465837465) + +[fips4607972140] +centroid = (0.76769633599202103, -1.6984452576961693) +description = Winfred township, SD +station = ('kmds', 0.0029947210711628249) +zone = ('sdz055', 0.0023991494127560786) + +[fips4608060] +centroid = (0.77824062049489706, -1.7011249664165113) +description = Bryant city, SD +station = ('katy', 0.0066903576737064518) +zone = ('sdz039', 0.0038568228807578792) + +[fips46081] +centroid = (0.77411755938974081, -1.8115911657384847) +description = Lawrence County, SD +station = ('kspf', 0.0022690391640183597) +zone = ('sdz024', 0.0013848177439776189) + +[fips4608111140] +centroid = (0.77437777052792067, -1.8111370834269935) +description = Central City city, SD +station = ('kspf', 0.0020092249501301273) +zone = ('sdz024', 0.0016535681511522136) + +[fips4608115700] +centroid = (0.77460319725410831, -1.810325435511646) +description = Deadwood city, SD +station = ('kspf', 0.0019250846127772993) +zone = ('sdz024', 0.0020261088231807067) + +[fips4608136220] +centroid = (0.77410171180013276, -1.8110781087515686) +description = Lead city, SD +station = ('kspf', 0.0022878491547577533) +zone = ('sdz024', 0.0013872225263375163) + +[fips4608140] +centroid = (0.79563235525212261, -1.8071741562807078) +description = Buffalo town, SD +station = ('k2wx', 0.00025087106484327219) +zone = ('sdz001', 0.00059013990975517652) + +[fips4608145600] +centroid = (0.77576600541495699, -1.8119719791279776) +description = North Lawrence UT, SD +station = ('kspf', 0.0007536365741596054) +zone = ('sdz025', 0.0011376649297383241) + +[fips4608157300] +centroid = (0.77775732137172737, -1.8107142948689903) +description = St. Onge township, SD +station = ('kspf', 0.0014518254394787205) +zone = ('sdz025', 0.0010696792860095245) + +[fips4608159870] +centroid = (0.77212755242990938, -1.8111241156306512) +description = South Lawrence UT, SD +station = ('kspf', 0.0042564435570864919) +zone = ('sdz024', 0.00064816669145009286) + +[fips4608160020] +centroid = (0.77652906336392891, -1.8119839346333537) +description = Spearfish city, SD +station = ('kspf', 0.00046862121327748114) +zone = ('sdz025', 0.00064773110955371411) + +[fips4608171580] +centroid = (0.77600410323151403, -1.8088260231512576) +description = Whitewood city, SD +station = ('kspf', 0.001847608383779514) +zone = ('sdz025', 0.0017889919918088917) + +[fips46083] +centroid = (0.75536837735348428, -1.688122350755616) +description = Lincoln County, SD +station = ('kfsd', 0.0053159062005575597) +zone = ('sdz067', 1.0316210679678051e-05) + +[fips4608304980] +centroid = (0.75198390468118692, -1.6889937412912592) +description = Beresford city, SD +station = ('kykn', 0.008338538118001693) +zone = ('sdz067', 0.0034355938868785192) + +[fips4608307660] +centroid = (0.7527144296929017, -1.6905771388952535) +description = Brooklyn township, SD +station = ('kykn', 0.0075904682782981141) +zone = ('sdz067', 0.0031960584798758239) + +[fips4608309500] +centroid = (0.75578629644287432, -1.6857117019927614) +description = Canton city, SD +station = ('kfsd', 0.0053190869790973334) +zone = ('sdz067', 0.0018011030033417905) + +[fips4608309540] +centroid = (0.75580668188853761, -1.6863387289798331) +description = Canton township, SD +station = ('kfsd', 0.0051368958941723905) +zone = ('sdz067', 0.0013685352861566931) + +[fips4608315620] +centroid = (0.7571359595534416, -1.6863145910762778) +description = Dayton township, SD +station = ('kfsd', 0.0039080330611403072) +zone = ('sdz067', 0.0022074542769328718) + +[fips4608315900] +centroid = (0.75857526277439113, -1.6902810263343602) +description = Delapre township, SD +station = ('kfsd', 0.002423663742649405) +zone = ('sdz067', 0.0035805229165985965) + +[fips4608315940] +centroid = (0.75423202838409575, -1.6906160073776955) +description = Delaware township, SD +station = ('kfsd', 0.0066041337763895792) +zone = ('sdz067', 0.0021419461654809736) + +[fips4608318140] +centroid = (0.75269208947847621, -1.6844366168011322) +description = Eden township, SD +station = ('korc', 0.0061914178896908031) +zone = ('sdz067', 0.0037823087068845746) + +[fips4608320780] +centroid = (0.75436659326942457, -1.6840230610348721) +description = Fairview town, SD +station = ('kfsd', 0.0071311679416774625) +zone = ('sdz067', 0.0031418261481422436) + +[fips4608320820] +centroid = (0.75384479218295575, -1.6845840796696332) +description = Fairview township, SD +station = ('kfsd', 0.0074271668217506422) +zone = ('sdz067', 0.0029855377750390168) + +[fips4608325620] +centroid = (0.75574753268018757, -1.6906184508386484) +description = Grant township, SD +station = ('kfsd', 0.0051372994087225364) +zone = ('sdz067', 0.0018627026862596048) + +[fips4608327260] +centroid = (0.75802405289002628, -1.6877889754151927) +description = Harrisburg city, SD +station = ('kfsd', 0.0027140999735370836) +zone = ('sdz067', 0.0026753142795709899) + +[fips4608328860] +centroid = (0.75435210703663302, -1.6863153590211488) +description = Highland township, SD +station = ('kfsd', 0.0065360011278824768) +zone = ('sdz067', 0.0016534276107061994) + +[fips4608330740] +centroid = (0.75276228662099143, -1.683468116145908) +description = Hudson town, SD +station = ('korc', 0.0055825821639516196) +zone = ('iaz012', 0.0036346149666392725) + +[fips4608336060] +centroid = (0.75724249445098335, -1.688583833263136) +description = La Valley township, SD +station = ('kfsd', 0.0034302090891131466) +zone = ('sdz067', 0.0019137411397085349) + +[fips4608336380] +centroid = (0.75660911446543455, -1.6911304780813059) +description = Lennox city, SD +station = ('kfsd', 0.0044574915813407412) +zone = ('sdz067', 0.0025246648628995776) + +[fips4608337500] +centroid = (0.7542975131376306, -1.6884127386365628) +description = Lincoln township, SD +station = ('kfsd', 0.0063766995307855089) +zone = ('sdz067', 0.0010836205578602779) + +[fips4608339620] +centroid = (0.75562157226807103, -1.6883841675967077) +description = Lynn township, SD +station = ('kfsd', 0.0050536621788981788) +zone = ('sdz067', 0.00032711182981837693) + +[fips4608340] +centroid = (0.75908144316405457, -1.8031919956060649) +description = Buffalo Gap town, SD +station = ('kcut', 0.005676338895562706) +zone = ('sdz074', 0.0031700221312381035) + +[fips4608345900] +centroid = (0.75269114700068018, -1.6864707980443314) +description = Norway township, SD +station = ('kfsd', 0.0081311192444264904) +zone = ('sdz067', 0.0029251626607490764) + +[fips4608349260] +centroid = (0.75736566233629643, -1.6904929442121372) +description = Perry township, SD +station = ('kfsd', 0.0035791510346006683) +zone = ('sdz067', 0.0026486482620835818) + +[fips4608350500] +centroid = (0.75283751031175228, -1.6883755631234956) +description = Pleasant township, SD +station = ('kfsd', 0.0078369472400287386) +zone = ('sdz067', 0.0025288993511018722) + +[fips4608359020] +centroid = (0.75902201470302411, -1.6884840876963843) +description = Sioux Falls city, SD +station = ('kfsd', 0.0016530172549051531) +zone = ('sdz062', 0.003293884159677751) + +[fips4608360580] +centroid = (0.75865950981738495, -1.6871159764556236) +description = Springdale township, SD +station = ('kfsd', 0.0022847460949493997) +zone = ('sdz067', 0.0033792547325576152) + +[fips4608363100] +centroid = (0.75837057055971724, -1.6900838913953475) +description = Tea city, SD +station = ('kfsd', 0.0025393178192051661) +zone = ('sdz067', 0.0033339576993826315) + +[fips4608372820] +centroid = (0.756251967740599, -1.6889245215331252) +description = Worthing city, SD +station = ('kfsd', 0.0044267383054253633) +zone = ('sdz067', 0.001069285075451037) + +[fips4608460] +centroid = (0.79889229868229006, -1.7642068902635328) +description = Bullhead CDP, SD +station = ('kmbg', 0.0089976068200981682) +zone = ('sdz003', 0.0017993692674912545) + +[fips46085] +centroid = (0.76610899394391718, -1.7425703227792395) +description = Lyman County, SD +station = ('kicr', 0.0089275694250816658) +zone = ('sdz048', 7.0985265792812156e-05) + +[fips4608503220] +centroid = (0.76418839872843769, -1.7400289837619956) +description = Bailey township, SD +station = ('k9v9', 0.0047948509677522531) +zone = ('sdz048', 0.0027152394554619025) + +[fips4608505740] +centroid = (0.76084857157840635, -1.7377546277604292) +description = Black Dog UT, SD +station = ('k9v9', 0.0043645049425386044) +zone = ('sdz049', 0.0059063731736104632) + +[fips4608511154] +centroid = (0.76561473415304493, -1.7427928871654537) +description = Central Lyman UT, SD +station = ('kicr', 0.0084329340103164469) +zone = ('sdz048', 0.00051963098724473115) + +[fips4608517845] +centroid = (0.76590611687166532, -1.7373962418518247) +description = East Lyman UT, SD +station = ('k9v9', 0.0035265363972433457) +zone = ('sdz048', 0.0038040850273554291) + +[fips4608531740] +centroid = (0.76094079477608167, -1.7355686552321838) +description = Iona township, SD +station = ('k9v9', 0.0033238096906902988) +zone = ('sdz057', 0.0049978578029634176) + +[fips4608533580] +centroid = (0.7662602267236025, -1.74292071507987) +description = Kennebec town, SD +station = ('kicr', 0.0090794848091487763) +zone = ('sdz048', 0.00022731143369573707) + +[fips4608539190] +centroid = (0.76902336218218992, -1.7409475156407352) +description = Lower Brule UT, SD +station = ('k9v9', 0.007488074439085321) +zone = ('sdz048', 0.0031499730103863961) + +[fips4608546180] +centroid = (0.76453303144253637, -1.7342652957066722) +description = Oacoma town, SD +station = ('k9v9', 0.00090778104589572025) +zone = ('sdz057', 0.0038972078042101856) + +[fips4608546220] +centroid = (0.7646550997704209, -1.7352308293021679) +description = Oacoma township, SD +station = ('k9v9', 0.0015342567314732799) +zone = ('sdz057', 0.0045899060639951151) + +[fips4608550540] +centroid = (0.76753290336086433, -1.7399464471416688) +description = Pleasant township, SD +station = ('k9v9', 0.0059708824470822109) +zone = ('sdz048', 0.0024111511341482531) + +[fips4608551780] +centroid = (0.76295310704375363, -1.7476633331628992) +description = Pratt township, SD +station = ('kicr', 0.0067961673268250589) +zone = ('sdz048', 0.0048038272484779293) + +[fips4608551820] +centroid = (0.76632447229336842, -1.7463480006787186) +description = Presho city, SD +station = ('kpir', 0.0087754052368714235) +zone = ('sdz048', 0.0026604853935663112) + +[fips4608554020] +centroid = (0.76585747454541231, -1.7383683902451856) +description = Reliance town, SD +station = ('k9v9', 0.0040957119690413031) +zone = ('sdz048', 0.0031088176699986645) + +[fips4608554260] +centroid = (0.76613438848453375, -1.7400750430009557) +description = Rex township, SD +station = ('k9v9', 0.0053181967531261646) +zone = ('sdz048', 0.0018669720645163815) + +[fips4608555860] +centroid = (0.7645347593184959, -1.7437857875236207) +description = Rose township, SD +station = ('kicr', 0.0073938206283400594) +zone = ('sdz048', 0.0017846742305611331) + +[fips4608567660] +centroid = (0.76603736563141533, -1.7506755096524536) +description = Vivian township, SD +station = ('kpir', 0.0086027527752371487) +zone = ('sdz045', 0.0049692425832764293) + +[fips4608570398] +centroid = (0.76692238718851657, -1.7480540600225432) +description = West Lyman UT, SD +station = ('kpir', 0.0078756508372778821) +zone = ('sdz048', 0.0039620578522249371) + +[fips46087] +centroid = (0.76234103752837168, -1.69928809464525) +description = McCook County, SD +station = ('kmds', 0.0069309871312913402) +zone = ('sdz061', 0.00011511446783977206) + +[fips4608700] +centroid = (0.75368240674935016, -1.7329776266911359) +description = Burke city, SD +station = ('kicr', 0.0079029109934430058) +zone = ('sdz050', 0.001368113681202919) + +[fips4608704820] +centroid = (0.7630096033516407, -1.7025403760800011) +description = Benton township, SD +station = ('kmhe', 0.006175523949145582) +zone = ('sdz061', 0.0023921029848061989) + +[fips4608707180] +centroid = (0.76009455443495966, -1.7016678161737591) +description = Bridgewater city, SD +station = ('kmhe', 0.0077394252867241118) +zone = ('sdz061', 0.0027168060902224888) + +[fips4608707220] +centroid = (0.75984259870414184, -1.7023987426112017) +description = Bridgewater township, SD +station = ('kmhe', 0.007416943609546472) +zone = ('sdz061', 0.0032487997997732482) + +[fips4608707540] +centroid = (0.76453175735218248, -1.6983633668476659) +description = Brookfield township, SD +station = ('kmds', 0.0047379549715154696) +zone = ('sdz061', 0.0023931856561962015) + +[fips4608709300] +centroid = (0.76092440613440548, -1.6980758936665696) +description = Canistota city, SD +station = ('kmds', 0.0078408515580829768) +zone = ('sdz061', 0.0016423272586077126) + +[fips4608709340] +centroid = (0.76150120254560461, -1.6983432082948051) +description = Canistota township, SD +station = ('kmds', 0.0073740014282217166) +zone = ('sdz061', 0.0010758122711736172) + +[fips4608719460] +centroid = (0.76161389845540584, -1.7002719367445991) +description = Emery township, SD +station = ('kmds', 0.0079232443565120259) +zone = ('sdz061', 0.00090241505993077535) + +[fips4608725660] +centroid = (0.75997386491718433, -1.6983456517557578) +description = Grant township, SD +station = ('kmds', 0.008802295240343469) +zone = ('sdz061', 0.0024087023089226656) + +[fips4608725940] +centroid = (0.76137141986242618, -1.6961024324280474) +description = Greenland township, SD +station = ('kmds', 0.0070350167785018514) +zone = ('sdz061', 0.0025450957024538783) + +[fips4608732580] +centroid = (0.76158499580299288, -1.7023336767366875) +description = Jefferson township, SD +station = ('kmhe', 0.0066728594194766554) +zone = ('sdz061', 0.0022274393135059646) + +[fips4608743500] +centroid = (0.76270979069273304, -1.696186609657871) +description = Montrose city, SD +station = ('kmds', 0.0057364271549935134) +zone = ('sdz061', 0.002366483952880305) + +[fips4608743540] +centroid = (0.76314305122624815, -1.6964489326444456) +description = Montrose township, SD +station = ('kmds', 0.0053653565488299294) +zone = ('sdz061', 0.0023090478531329244) + +[fips4608748740] +centroid = (0.76454727332923267, -1.7023530498913846) +description = Pearl township, SD +station = ('kmhe', 0.0062820368079847906) +zone = ('sdz061', 0.0031293189967752733) + +[fips4608752900] +centroid = (0.76448189329545302, -1.6962642593562922) +description = Ramsey township, SD +station = ('kmds', 0.0040500072936429108) +zone = ('sdz061', 0.0031738482335243374) + +[fips4608754740] +centroid = (0.76294150060422772, -1.6985297490852582) +description = Richland township, SD +station = ('kmds', 0.0061368800082963314) +zone = ('sdz061', 0.00092819194023193699) + +[fips4608757340] +centroid = (0.76310657384488145, -1.6997652851160376) +description = Salem city, SD +station = ('kmds', 0.0064854337253205862) +zone = ('sdz061', 0.0008883380952116616) + +[fips4608757380] +centroid = (0.76294350773286757, -1.7005448538797334) +description = Salem township, SD +station = ('kmds', 0.0069622749665134648) +zone = ('sdz061', 0.0010748611501109292) + +[fips4608760060] +centroid = (0.76318825525387479, -1.7032861901759633) +description = Spencer city, SD +station = ('kmhe', 0.0056174747940188428) +zone = ('sdz061', 0.0029599359915175099) + +[fips4608761060] +centroid = (0.75997091531074845, -1.6962642593562922) +description = Spring Valley township, SD +station = ('kfsd', 0.0055934353577923616) +zone = ('sdz061', 0.0032227032136333601) + +[fips4608762420] +centroid = (0.76453591123580222, -1.7004564529531199) +description = Sun Prairie township, SD +station = ('kmds', 0.0057771729492782035) +zone = ('sdz061', 0.0024020223921556397) + +[fips4608765340] +centroid = (0.75984944039480962, -1.7000913649801879) +description = Union township, SD +station = ('kmds', 0.0094021297821635496) +zone = ('sdz061', 0.0024607358452186402) + +[fips4608820] +centroid = (0.773664402102753, -1.6867246212774489) +description = Bushnell town, SD +station = ('kbkx', 0.0022317701561095954) +zone = ('sdz040', 0.0019907233864614893) + +[fips4608860] +centroid = (0.78997078641133323, -1.7053893119246164) +description = Butler town, SD +station = ('kabr', 0.0092487368574757454) +zone = ('sdz011', 0.002237063480903319) + +[fips46089] +centroid = (0.79908589060292134, -1.7315659520322453) +description = McPherson County, SD +station = ('kabr', 0.011320861966996176) +zone = ('sdz005', 0.00033481467025475015) + +[fips4608909820] +centroid = (0.79963991046738192, -1.7239677833067355) +description = Carl township, SD +station = ('kabr', 0.0077487586043092872) +zone = ('ndz051', 0.0061004070234835965) + +[fips4608911155] +centroid = (0.79854888769866772, -1.7300519312660176) +description = Central McPherson UT, SD +station = ('kabr', 0.010138992635360736) +zone = ('sdz005', 0.0012003758756735513) + +[fips4608920180] +centroid = (0.79885711284456984, -1.7387079964110388) +description = Eureka city, SD +station = ('kmbg', 0.010449135134198847) +zone = ('ndz050', 0.0063335279653979051) + +[fips4608929340] +centroid = (0.7969516670869975, -1.7376612700987402) +description = Hillsview town, SD +station = ('kmbg', 0.01063304794690866) +zone = ('sdz005', 0.004517207018354368) + +[fips4608929540] +centroid = (0.79941425684839151, -1.7281704488790752) +description = Hoffman township, SD +station = ('kabr', 0.0095728591648253699) +zone = ('sdz005', 0.0025714362895031539) + +[fips4608936460] +centroid = (0.79798441331198766, -1.7268019885724641) +description = Leola city, SD +station = ('kabr', 0.0079382679911252554) +zone = ('sdz005', 0.0035367298344494156) + +[fips4608938860] +centroid = (0.80034971842087543, -1.7314676376354803) +description = Long Lake town, SD +station = ('kabr', 0.011960557230168518) +zone = ('sdz005', 0.0015869050856240287) + +[fips4608967940] +centroid = (0.80094400303117952, -1.723914864923815) +description = Wachter township, SD +station = ('kabr', 0.0088349198537494861) +zone = ('ndz051', 0.0050266930245993057) + +[fips4608967980] +centroid = (0.80066857262192226, -1.7285266705794073) +description = Wacker township, SD +station = ('kabr', 0.010597617903465022) +zone = ('sdz005', 0.0029340576712228892) + +[fips4608969700] +centroid = (0.80110605685222724, -1.726739750131338) +description = Weber township, SD +station = ('kabr', 0.010080880023439497) +zone = ('sdz005', 0.0041932690833182441) + +[fips4608970400] +centroid = (0.79864760352116049, -1.7377144502810484) +description = West McPherson UT, SD +station = ('kmbg', 0.011027317299994538) +zone = ('sdz005', 0.0041685850235660214) + +[fips4608970740] +centroid = (0.79629278784107715, -1.7238920883770765) +description = Wetonka town, SD +station = ('kabr', 0.0052998263176724488) +zone = ('sdz005', 0.0060182953973555104) + +[fips46091] +centroid = (0.79826218246244263, -1.7031077128066543) +description = Marshall County, SD +station = ('kgwr', 0.0084388179911809875) +zone = ('sdz007', 0.0004335527248796495) + +[fips4609107380] +centroid = (0.79922769860464593, -1.7061096442134995) +description = Britton city, SD +station = ('kgwr', 0.0075568494727282992) +zone = ('sdz007', 0.00196843562628419) + +[fips4609108220] +centroid = (0.79615989847183033, -1.6979763924459135) +description = Buffalo township, SD +station = ('k8d3', 0.0038056674884738837) +zone = ('sdz008', 0.0041658875907321369) + +[fips4609115660] +centroid = (0.80115770114479368, -1.7090007472128432) +description = Dayton township, SD +station = ('k2d5', 0.005103954064919607) +zone = ('ndz052', 0.0049966026613900661) + +[fips4609117300] +centroid = (0.79918853341623108, -1.7000669652772449) +description = Dumarce township, SD +station = ('k8d3', 0.0055896447852257398) +zone = ('sdz007', 0.002400470909745045) + +[fips4609118180] +centroid = (0.79616276081180359, -1.7002947307446301) +description = Eden town, SD +station = ('k8d3', 0.005395591140285508) +zone = ('sdz007', 0.0032992380153008798) + +[fips4609118220] +centroid = (0.79632155086715006, -1.7002756542959059) +description = Eden township, SD +station = ('k8d3', 0.0053585997085645442) +zone = ('sdz007', 0.0031908543871451587) + +[fips4609122180] +centroid = (0.79641263960081166, -1.7024415729910456) +description = Fort township, SD +station = ('k8d3', 0.0068531058108697619) +zone = ('sdz007', 0.0023275239231384652) + +[fips4609126740] +centroid = (0.79754987868811866, -1.7028474144020118) +description = Hamilton township, SD +station = ('k8d3', 0.0071232017262235396) +zone = ('sdz007', 0.0011586886281127052) + +[fips4609128540] +centroid = (0.79648938172802186, -1.7066313405802134) +description = Hickman township, SD +station = ('kabr', 0.0083976571702883036) +zone = ('sdz007', 0.0031077513933599624) + +[fips4609134500] +centroid = (0.80073304508449095, -1.700127091869976) +description = La Belle township, SD +station = ('k8d3', 0.0063779145552043219) +zone = ('sdz007', 0.0031056549961761817) + +[fips4609134940] +centroid = (0.79785178574212867, -1.7003139468196944) +description = Lake township, SD +station = ('k8d3', 0.0053960351864936751) +zone = ('sdz007', 0.0023041308668849993) + +[fips4609135220] +centroid = (0.79804748951115478, -1.7001954564167767) +description = Lake City town, SD +station = ('k8d3', 0.0053473443486266132) +zone = ('sdz007', 0.0023245535322250579) + +[fips4609135820] +centroid = (0.79591267258328546, -1.70745981346955) +description = Langford town, SD +station = ('kabr', 0.0076481509053594977) +zone = ('sdz007', 0.0039251801916534747) + +[fips4609139100] +centroid = (0.79806811930291333, -1.7069824484658369) +description = Lowell township, SD +station = ('k2d5', 0.0084974168561289618) +zone = ('sdz007', 0.0025528136766905592) + +[fips4609139980] +centroid = (0.79897230457520152, -1.6979231773570203) +description = McKinley township, SD +station = ('k8d3', 0.0041430541009657533) +zone = ('sdz008', 0.0048611818543584867) + +[fips4609142540] +centroid = (0.79956459951015835, -1.7069381171028362) +description = Miller township, SD +station = ('k2d5', 0.0071609931083736079) +zone = ('sdz007', 0.0026244429708111691) + +[fips4609144780] +centroid = (0.80085438037408962, -1.7069696377491272) +description = Newark township, SD +station = ('k2d5', 0.0060423748528711206) +zone = ('sdz007', 0.0033228221455953752) + +[fips4609145020] +centroid = (0.79630331217646677, -1.7090429143675714) +description = Newport township, SD +station = ('kabr', 0.006784946194958957) +zone = ('sdz007', 0.0045711755089612978) + +[fips4609145380] +centroid = (0.79987835734978929, -1.7021886224225542) +description = Nordland township, SD +station = ('kgwr', 0.0069304257676450227) +zone = ('sdz007', 0.0015071019408883378) + +[fips4609150900] +centroid = (0.7994620614166037, -1.7045709270383564) +description = Pleasant Valley township, SD +station = ('kgwr', 0.0072095403266995758) +zone = ('sdz007', 0.0011516896394262279) + +[fips4609153620] +centroid = (0.79727750260505237, -1.6980134457859335) +description = Red Iron Lake township, SD +station = ('k8d3', 0.0037357350714112389) +zone = ('sdz008', 0.0042770119279289982) + +[fips4609159220] +centroid = (0.79651214082146782, -1.7046657682299098) +description = Sisseton township, SD +station = ('kabr', 0.0096899722925061701) +zone = ('sdz007', 0.0022980612707612174) + +[fips4609161540] +centroid = (0.79933658969667787, -1.7087899812523724) +description = Stena township, SD +station = ('k2d5', 0.0068657800469344218) +zone = ('sdz007', 0.0038118673387868979) + +[fips4609166540] +centroid = (0.80044270956342167, -1.6979768985913968) +description = Veblen city, SD +station = ('k8d3', 0.0050282666028257121) +zone = ('sdz007', 0.0041993488236116627) + +[fips4609166580] +centroid = (0.80063734868160408, -1.6978863160032183) +description = Veblen township, SD +station = ('k8d3', 0.0051168952237797124) +zone = ('sdz007', 0.004342199826691772) + +[fips4609167100] +centroid = (0.80091890519653586, -1.7023761231440959) +description = Victor township, SD +station = ('kgwr', 0.0058853935771572457) +zone = ('sdz007', 0.0023932242133010242) + +[fips4609169500] +centroid = (0.79768741063317583, -1.7040739096272659) +description = Waverly township, SD +station = ('kgwr', 0.0089799409864666155) +zone = ('sdz007', 0.0010556377634595227) + +[fips4609170420] +centroid = (0.79781939243121158, -1.7091562909557809) +description = Weston township, SD +station = ('kabr', 0.0075215697274025476) +zone = ('sdz007', 0.0040887756084274042) + +[fips4609170980] +centroid = (0.80084685800501354, -1.7047935961443257) +description = White township, SD +station = ('kgwr', 0.0058347578769895325) +zone = ('sdz007', 0.0024080020176138919) + +[fips4609172300] +centroid = (0.79906437069324432, -1.7017136136133313) +description = Wismer township, SD +station = ('k8d3', 0.0066262810169489487) +zone = ('sdz007', 0.0012622151318597574) + +[fips4609260] +centroid = (0.79499874837377105, -1.8147048854839203) +description = Camp Crook town, SD +station = ('k2wx', 0.005263941957001317) +zone = ('mtz037', 0.0068865376984446197) + +[fips46093] +centroid = (0.77853538915226639, -1.7927300208307129) +description = Meade County, SD +station = ('krca', 0.0093017738540897531) +zone = ('sdz073', 0.0035721899894353279) + +[fips4609300] +centroid = (0.76092440613440548, -1.6980758936665696) +description = Canistota city, SD +station = ('kmds', 0.0078408515580829768) +zone = ('sdz061', 0.0016423272586077126) + +[fips4609304400] +centroid = (0.7754012839611677, -1.7934033863094248) +description = Belle Fourche-Cheyenne Valleys UT, SD +station = ('krca', 0.0064844910981215849) +zone = ('sdz073', 0.00041405027296760014) + +[fips4609306620] +centroid = (0.77058621726088827, -1.7989281213368575) +description = Box Elder city, SD +station = ('krca', 0.00036405225309424561) +zone = ('sdz026', 0.0032473456366168343) + +[fips4609315255] +centroid = (0.77711275382567335, -1.7832480833369406) +description = Dakota township, SD +station = ('kd07', 0.0090751479297670867) +zone = ('sdz013', 0.0064254354612964491) + +[fips4609317580] +centroid = (0.78540388807739492, -1.793653404724773) +description = Eagle township, SD +station = ('kd07', 0.0092970666639197921) +zone = ('sdz013', 0.0047414844907901245) + +[fips4609319100] +centroid = (0.77289263496081373, -1.7876927388100694) +description = Elm Springs township, SD +station = ('krap', 0.0087972626041726287) +zone = ('sdz031', 0.0048292225233995713) + +[fips4609320980] +centroid = (0.78584803946544235, -1.7808701420442685) +description = Faith city, SD +station = ('kd07', 0.00027623254161706891) +zone = ('sdz014', 0.0046377859804660783) + +[fips4609330420] +centroid = (0.77938930894209724, -1.7817116874497025) +description = Howard township, SD +station = ('kd07', 0.0066439659086236788) +zone = ('sdz013', 0.0056926390389119876) + +[fips4609335540] +centroid = (0.77164957656095823, -1.7904810070098856) +description = Lakeside township, SD +station = ('krap', 0.0064544501090180373) +zone = ('sdz031', 0.004015899887673674) + +[fips4609345605] +centroid = (0.7830745018445131, -1.7875589069630264) +description = North Meade UT, SD +station = ('kd07', 0.0057628385952106717) +zone = ('sdz013', 0.0010889857791742666) + +[fips4609349500] +centroid = (0.77178318151519831, -1.8042647098709255) +description = Piedmont city, SD +station = ('krca', 0.003672419533889637) +zone = ('sdz072', 0.001991738065026926) + +[fips4609359610] +centroid = (0.77150841433105688, -1.7878162906678179) +description = Smithville township, SD +station = ('krap', 0.0081689784387500349) +zone = ('sdz031', 0.0034427842197315792) + +[fips4609359965] +centroid = (0.77429619383868242, -1.8045850650551292) +description = Southwest Meade UT, SD +station = ('krca', 0.005248432712781477) +zone = ('sdz072', 0.00053188964534539389) + +[fips4609362100] +centroid = (0.77508773556104693, -1.806729027508279) +description = Sturgis city, SD +station = ('kspf', 0.0035504764900776333) +zone = ('sdz072', 0.0020516877334084494) + +[fips4609362155] +centroid = (0.77139137255141821, -1.8037181774689561) +description = Summerset city, SD +station = ('krca', 0.0031821583721024491) +zone = ('sdz072', 0.0024450488599808196) + +[fips4609365380] +centroid = (0.77889084290772759, -1.7833588070246871) +description = Union township, SD +station = ('kd07', 0.0073681295844927859) +zone = ('sdz013', 0.005044133163462465) + +[fips4609365660] +centroid = (0.78079138429010186, -1.791059426577289) +description = Upper Red Owl township, SD +station = ('kd07', 0.0090891427450244412) +zone = ('sdz013', 0.0022888319417977087) + +[fips4609420] +centroid = (0.76587241456380939, -1.7017651008262651) +description = Canova town, SD +station = ('kmhe', 0.0069594632877234622) +zone = ('sdz054', 0.0027957290747894267) + +[fips46095] +centroid = (0.76070053275125216, -1.7586041913784134) +description = Mellette County, SD +station = ('kvtn', 0.012818957208217394) +zone = ('sdz046', 6.7141963582320597e-05) + +[fips4609500] +centroid = (0.75578629644287432, -1.6857117019927614) +description = Canton city, SD +station = ('kfsd', 0.0053190869790973334) +zone = ('sdz067', 0.0018011030033417905) + +[fips4609503140] +centroid = (0.76096880731057626, -1.7513097972092133) +description = Bad Nation township, SD +station = ('kicr', 0.0072974158346139992) +zone = ('sdz046', 0.005287541012751776) + +[fips4609505820] +centroid = (0.75810418095598531, -1.7646703100865224) +description = Blackpipe township, SD +station = ('kvtn', 0.012219111553085136) +zone = ('sdz046', 0.0050803665816684601) + +[fips4609509060] +centroid = (0.75790430585004698, -1.7522565685152502) +description = Butte township, SD +station = ('kicr', 0.0069724206602285402) +zone = ('sdz047', 0.0057419864350379338) + +[fips4609510780] +centroid = (0.76035359620254073, -1.7652479791623477) +description = Cedarbutte UT, SD +station = ('kphp', 0.010248101378397574) +zone = ('sdz046', 0.0048278211737766237) + +[fips4609511160] +centroid = (0.76073573604226485, -1.7580000631111281) +description = Central Mellette UT, SD +station = ('kvtn', 0.012768917636655917) +zone = ('sdz046', 0.00044322100736995349) + +[fips4609513100] +centroid = (0.76206930721712873, -1.7546769736686234) +description = Cody township, SD +station = ('kicr', 0.0099580282207437747) +zone = ('sdz046', 0.0031792310098274078) + +[fips4609520860] +centroid = (0.75811463547820479, -1.7544343903558888) +description = Fairview township, SD +station = ('kvtn', 0.0099566917791554729) +zone = ('sdz046', 0.0039310822552010138) + +[fips4609543980] +centroid = (0.7581157001290485, -1.750029109510685) +description = Mosher township, SD +station = ('kicr', 0.0053974465358476009) +zone = ('sdz049', 0.0051377538339853635) + +[fips4609545040] +centroid = (0.75976292442378823, -1.7623371364891638) +description = New Surprise Valley township, SD +station = ('kphp', 0.012003908345172051) +zone = ('sdz046', 0.0028479446976130592) + +[fips4609545460] +centroid = (0.75815753567121891, -1.7661149540149832) +description = Norris township, SD +station = ('kphp', 0.011842204245503187) +zone = ('sdz044', 0.0073658363435999893) + +[fips4609552060] +centroid = (0.76253923711822824, -1.7644410610892731) +description = Prospect township, SD +station = ('kphp', 0.0089323183599794506) +zone = ('sdz046', 0.0046400134515737412) + +[fips4609553540] +centroid = (0.76429016887712142, -1.7628320420518595) +description = Red Fish township, SD +station = ('kphp', 0.0087668123452212688) +zone = ('sdz046', 0.0047702708793276255) + +[fips4609554940] +centroid = (0.75816442972176423, -1.7605285914116624) +description = Ring Thunder township, SD +station = ('kvtn', 0.010802265210267758) +zone = ('sdz046', 0.0028394996856437862) + +[fips4609555180] +centroid = (0.76249712232337752, -1.7514228945447425) +description = Riverside township, SD +station = ('kicr', 0.0082544018618477665) +zone = ('sdz045', 0.0064034418576167191) + +[fips4609555660] +centroid = (0.76407908875738517, -1.7651775376737371) +description = Rocky Ford township, SD +station = ('kphp', 0.0075038203070656928) +zone = ('sdz045', 0.0064652661105727123) + +[fips4609555900] +centroid = (0.75970943008221459, -1.7515646676398822) +description = Rosebud township, SD +station = ('kicr', 0.0069058435151729243) +zone = ('sdz046', 0.0051785113209079367) + +[fips4609556780] +centroid = (0.76092452830745305, -1.7628595309875783) +description = Running Bird township, SD +station = ('kphp', 0.010887771667879244) +zone = ('sdz046', 0.0031020969282138443) + +[fips4609562460] +centroid = (0.75812941841696924, -1.7627816718496467) +description = Surprise Valley township, SD +station = ('kvtn', 0.011494447929628487) +zone = ('sdz046', 0.0039356148664475331) + +[fips4609571340] +centroid = (0.76038881694684601, -1.7583294416475643) +description = White River city, SD +station = ('kvtn', 0.012473051641154006) +zone = ('sdz046', 0.00031163365094682841) + +[fips4609572620] +centroid = (0.75916689448423225, -1.7537095900241206) +description = Wood town, SD +station = ('kicr', 0.0082287600704274814) +zone = ('sdz046', 0.0038335283663669035) + +[fips46097] +centroid = (0.76824728407699805, -1.703612217680236) +description = Miner County, SD +station = ('kmhe', 0.0068933331212721969) +zone = ('sdz054', 8.1721405203804388e-05) + +[fips4609700300] +centroid = (0.76910080244110079, -1.7025748812393129) +description = Adams township, SD +station = ('kmhe', 0.0080129669487553346) +zone = ('sdz054', 0.0010768474294456114) + +[fips4609704100] +centroid = (0.76593128451947912, -1.706883523203834) +description = Beaver township, SD +station = ('kmhe', 0.0036163243177332405) +zone = ('sdz054', 0.0033571132923172408) + +[fips4609704500] +centroid = (0.77060281534207475, -1.7004814809745936) +description = Belleview township, SD +station = ('kmds', 0.0049627718642603598) +zone = ('sdz054', 0.0032017139739590177) + +[fips4609709420] +centroid = (0.76587241456380939, -1.7017651008262651) +description = Canova town, SD +station = ('kmhe', 0.0069594632877234622) +zone = ('sdz054', 0.0027957290747894267) + +[fips4609709460] +centroid = (0.76606721076162443, -1.7025805361060895) +description = Canova township, SD +station = ('kmhe', 0.0064612088398498489) +zone = ('sdz054', 0.0023820599091682161) + +[fips4609710220] +centroid = (0.7708140874480286, -1.7054494210640552) +description = Carthage city, SD +station = ('kmhe', 0.0080107690455529373) +zone = ('sdz054', 0.0028113995988362237) + +[fips4609710260] +centroid = (0.7704973450953766, -1.7044836082158792) +description = Carthage township, SD +station = ('kmhe', 0.008119359845075674) +zone = ('sdz054', 0.0022556124287342887) + +[fips4609712700] +centroid = (0.76757829937470867, -1.7004745171108782) +description = Clearwater township, SD +station = ('kmds', 0.0044522837898762395) +zone = ('sdz054', 0.0023834572256651492) + +[fips4609712980] +centroid = (0.76749749063034134, -1.7065729767700264) +description = Clinton township, SD +station = ('kmhe', 0.0048318676326308627) +zone = ('sdz054', 0.0022815641121431301) + +[fips4609725060] +centroid = (0.77060318186121757, -1.7025717396466593) +description = Grafton township, SD +station = ('kmds', 0.0063305907449311702) +zone = ('sdz054', 0.0023955931238525958) + +[fips4609726020] +centroid = (0.76910911020834039, -1.7046705504320603) +description = Green Valley township, SD +station = ('kmhe', 0.0069455016687431058) +zone = ('sdz054', 0.0010861534710695775) + +[fips4609728060] +centroid = (0.76909851605978075, -1.7004785139148653) +description = Henden township, SD +station = ('kmds', 0.0044670942815491941) +zone = ('sdz054', 0.0023852577616105312) + +[fips4609730460] +centroid = (0.76814982489156669, -1.7021259127425301) +description = Howard city, SD +station = ('kmhe', 0.0076966036833252425) +zone = ('sdz054', 0.001088817714034733) + +[fips4609730500] +centroid = (0.76753021555381618, -1.7025307069559452) +description = Howard township, SD +station = ('kmhe', 0.0071200520971113259) +zone = ('sdz054', 0.0011185272120459496) + +[fips4609742740] +centroid = (0.76906439487290423, -1.7067353971102173) +description = Miner township, SD +station = ('kmhe', 0.0060343711995621907) +zone = ('sdz054', 0.002357534720687453) + +[fips4609753860] +centroid = (0.7706141774355052, -1.7067590463215818) +description = Redstone township, SD +station = ('kmhe', 0.007402011598147803) +zone = ('sdz054', 0.0032106830050159922) + +[fips4609755380] +centroid = (0.76612082727624575, -1.7046950548547581) +description = Rock Creek township, SD +station = ('kmhe', 0.0050765456861152636) +zone = ('sdz054', 0.0023398509729508979) + +[fips4609756420] +centroid = (0.76796672239973995, -1.7051369198614856) +description = Roswell town, SD +station = ('kmhe', 0.0058862054330373181) +zone = ('sdz054', 0.0011499233274721806) + +[fips4609756460] +centroid = (0.76746652848941099, -1.7045236111623348) +description = Roswell township, SD +station = ('kmhe', 0.005894606168204238) +zone = ('sdz054', 0.0010801462204035142) + +[fips4609766780] +centroid = (0.76600237177991282, -1.7005168762518239) +description = Vermillion township, SD +station = ('kmds', 0.0049860265051165139) +zone = ('sdz054', 0.003225005799152024) + +[fips4609767340] +centroid = (0.76809001245810082, -1.7033705768452974) +description = Vilas town, SD +station = ('kmhe', 0.0069323103028784729) +zone = ('sdz054', 0.00029841890256314532) + +[fips46099] +centroid = (0.76214116242243324, -1.6894041205582808) +description = Minnehaha County, SD +station = ('kfsd', 0.0015780412816592307) +zone = ('sdz062', 0.00012950425946106839) + +[fips4609903380] +centroid = (0.76376665736798577, -1.6883781462107883) +description = Baltic city, SD +station = ('kfsd', 0.0030983799711805484) +zone = ('sdz062', 0.0016571621935050867) + +[fips4609904860] +centroid = (0.76162379447226469, -1.6901989085930538) +description = Benton township, SD +station = ('kfsd', 0.001494906470410141) +zone = ('sdz062', 0.00089410632498524779) + +[fips4609906820] +centroid = (0.76167180847998694, -1.685983275224372) +description = Brandon township, SD +station = ('kfsd', 0.0021457738234847532) +zone = ('sdz062', 0.0024904045362750204) + +[fips4609906840] +centroid = (0.76084750692756253, -1.6856325687644762) +description = Brandon city, SD +station = ('kfsd', 0.0021608143937877525) +zone = ('sdz062', 0.0030244255460569061) + +[fips4609908260] +centroid = (0.76442473376245013, -1.6940803637698567) +description = Buffalo township, SD +station = ('kmds', 0.0038746575416558219) +zone = ('sdz055', 0.0039906699962259139) + +[fips4609908660] +centroid = (0.76456720498929043, -1.6899961886004349) +description = Burk township, SD +station = ('kfsd', 0.0040221481654174581) +zone = ('sdz062', 0.0023584595218796869) + +[fips4609912660] +centroid = (0.7629710839350492, -1.6941024421848945) +description = Clear Lake township, SD +station = ('kmds', 0.0053262337873828877) +zone = ('sdz062', 0.0035243973619282936) + +[fips4609913380] +centroid = (0.7642360811236022, -1.6917223715905347) +description = Colton city, SD +station = ('kfsd', 0.0042162036372208221) +zone = ('sdz062', 0.0026272394444812053) + +[fips4609914740] +centroid = (0.76199769635791936, -1.6896452727010289) +description = Crooks city, SD +station = ('kfsd', 0.0015237040745987676) +zone = ('sdz062', 0.00034717749619729983) + +[fips4609915980] +centroid = (0.76488747290703141, -1.6879880127630902) +description = Dell Rapids city, SD +station = ('kfsd', 0.0042384220362800991) +zone = ('sdz062', 0.0028015809231963632) + +[fips4609916020] +centroid = (0.76452036035216686, -1.6879383930524561) +description = Dell Rapids township, SD +station = ('kfsd', 0.0038778599564951314) +zone = ('sdz062', 0.0024747720815723379) + +[fips4609918380] +centroid = (0.7628688774540523, -1.6857193639881778) +description = Edison township, SD +station = ('kfsd', 0.0030309458950222323) +zone = ('sdz062', 0.0026801415474610596) + +[fips4609923820] +centroid = (0.76296773290288522, -1.6843004462128917) +description = Garretson city, SD +station = ('klyv', 0.0039840966413667023) +zone = ('mnz098', 0.0032329481043814521) + +[fips4609925180] +centroid = (0.7630442132307077, -1.6920183794316728) +description = Grand Meadow township, SD +station = ('kfsd', 0.0034234793604162655) +zone = ('sdz062', 0.002097409394994591) + +[fips4609927540] +centroid = (0.76132485447798293, -1.6919960392172475) +description = Hartford city, SD +station = ('kfsd', 0.0025400084345961679) +zone = ('sdz062', 0.002144137648705973) + +[fips4609927580] +centroid = (0.76162213640947529, -1.6922730229695391) +description = Hartford township, SD +station = ('kfsd', 0.0028197152345942711) +zone = ('sdz062', 0.0022233136325752012) + +[fips4609928900] +centroid = (0.76446707545010351, -1.6840758048848674) +description = Highland township, SD +station = ('kpqn', 0.0038643586021398515) +zone = ('mnz098', 0.003713297921275499) + +[fips4609930900] +centroid = (0.76174790483537391, -1.6942700112463784) +description = Humboldt town, SD +station = ('kfsd', 0.0042393381774984964) +zone = ('sdz062', 0.0036111637329617357) + +[fips4609930940] +centroid = (0.76133701942286947, -1.6940280562521743) +description = Humboldt township, SD +station = ('kfsd', 0.0039821160756700778) +zone = ('sdz062', 0.003523159296744995) + +[fips4609938380] +centroid = (0.76453435789276791, -1.685823158718794) +description = Logan township, SD +station = ('kfsd', 0.0043544648629259396) +zone = ('sdz062', 0.0034049244026935306) + +[fips4609939780] +centroid = (0.76302623633941224, -1.6900015293079458) +description = Lyons township, SD +station = ('kfsd', 0.0025610180350147146) +zone = ('sdz062', 0.00090883948475048546) + +[fips4609940660] +centroid = (0.76162754693015644, -1.687759008111936) +description = Mapleton township, SD +station = ('kfsd', 0.0011348700085798953) +zone = ('sdz062', 0.0012991590666993965) + +[fips4609948220] +centroid = (0.76261131921633551, -1.6839084976227712) +description = Palisade township, SD +station = ('klyv', 0.0035858522656863124) +zone = ('mnz098', 0.0028937822440645599) + +[fips4609953740] +centroid = (0.76162553980151659, -1.6842757847105607) +description = Red Rock township, SD +station = ('klyv', 0.0036291957640760463) +zone = ('mnz098', 0.0032052513709499809) + +[fips4609958580] +centroid = (0.76371323283958215, -1.6838193462045792) +description = Sherman town, SD +station = ('kpqn', 0.0044199074039639628) +zone = ('mnz098', 0.0031577974749246703) + +[fips4609959020] +centroid = (0.76005544160642258, -1.6882404397328059) +description = Sioux Falls city, SD +station = ('kfsd', 0.00067167432013570173) +zone = ('sdz062', 0.0023397890592971099) + +[fips4609960300] +centroid = (0.76008813162331235, -1.685671402340333) +description = Split Rock township, SD +station = ('kfsd', 0.002205249987993639) +zone = ('sdz062', 0.003423793929544922) + +[fips4609962540] +centroid = (0.76290472651688834, -1.6877730929189996) +description = Sverdrup township, SD +station = ('kfsd', 0.0023120076891896216) +zone = ('sdz062', 0.0012971167921603051) + +[fips4609962980] +centroid = (0.76459488591122704, -1.6920471773643311) +description = Taopi township, SD +station = ('kmds', 0.0040586267042208163) +zone = ('sdz062', 0.0030521946212472974) + +[fips4609966260] +centroid = (0.76067594106209147, -1.6836437660818286) +description = Valley Springs city, SD +station = ('klyv', 0.0032286317589783598) +zone = ('mnz098', 0.0031205645610229418) + +[fips4609966300] +centroid = (0.75994529387732912, -1.684177609940136) +description = Valley Springs township, SD +station = ('klyv', 0.0038103781422144148) +zone = ('mnz098', 0.0038506579282864997) + +[fips4609968460] +centroid = (0.75997690179008281, -1.6920988740167751) +description = Wall Lake township, SD +station = ('kfsd', 0.0026248334906866289) +zone = ('sdz062', 0.0030380104985415304) + +[fips4609969620] +centroid = (0.76008038236143349, -1.6904560654050427) +description = Wayne township, SD +station = ('kfsd', 0.0014654955751973969) +zone = ('sdz062', 0.0023261416044712603) + +[fips4609969940] +centroid = (0.76004144406582153, -1.6942754217670597) +description = Wellington township, SD +station = ('kfsd', 0.004156179349786248) +zone = ('sdz066', 0.0042305786572585926) + +[fips46101] +centroid = (0.76816179785023531, -1.6873154501358341) +description = Moody County, SD +station = ('kpqn', 0.0045406961691436612) +zone = ('sdz056', 0.00018031685969178317) + +[fips4610100940] +centroid = (0.76613595928086053, -1.6839661458479647) +description = Alliance township, SD +station = ('kpqn', 0.0025951836980108115) +zone = ('sdz056', 0.003213548687640583) + +[fips4610106020] +centroid = (0.76605125845226119, -1.6857683204736964) +description = Blinsmon township, SD +station = ('kpqn', 0.0037612817527572302) +zone = ('sdz056', 0.0025096441335323376) + +[fips4610112060] +centroid = (0.76908917854828263, -1.6878825948762697) +description = Clare township, SD +station = ('kbkx', 0.0043096425855919931) +zone = ('sdz056', 0.00089295515995846874) + +[fips4610113220] +centroid = (0.76765642031202785, -1.6897360647287176) +description = Colman city, SD +station = ('kmds', 0.0033906105823240402) +zone = ('sdz056', 0.0019264281999759015) + +[fips4610113260] +centroid = (0.76749921850630076, -1.6900589855469215) +description = Colman township, SD +station = ('kmds', 0.0031983956946504267) +zone = ('sdz056', 0.0022001654193228057) + +[fips4610118460] +centroid = (0.76795043847781885, -1.686835187885563) +description = Egan city, SD +station = ('kpqn', 0.0041776844637039547) +zone = ('sdz056', 0.00047330657776280315) + +[fips4610118500] +centroid = (0.76756805429199937, -1.6878993849436739) +description = Egan township, SD +station = ('kpqn', 0.0049344342681977632) +zone = ('sdz056', 0.00090290009774557085) + +[fips4610119740] +centroid = (0.7660551505364932, -1.6880515602011554) +description = Enterprise township, SD +station = ('kpqn', 0.0052940635407775962) +zone = ('sdz056', 0.0023515392184861516) + +[fips4610121540] +centroid = (0.76876350010986039, -1.6859538489731831) +description = Flandreau city, SD +station = ('kpqn', 0.0037018793516590386) +zone = ('sdz056', 0.0010126675144860567) + +[fips4610121580] +centroid = (0.76915483783474248, -1.6857225753940015) +description = Flandreau township, SD +station = ('kpqn', 0.0036842950086284753) +zone = ('sdz056', 0.0013598151510127601) + +[fips4610123060] +centroid = (0.77046887877527659, -1.6898547471178531) +description = Fremont township, SD +station = ('kbkx', 0.0027126661775966456) +zone = ('sdz056', 0.0028521225643061915) + +[fips4610126500] +centroid = (0.76756585517714193, -1.6857499596099654) +description = Grovena township, SD +station = ('kpqn', 0.0033881735014392408) +zone = ('sdz056', 0.0013092256282140947) + +[fips4610132620] +centroid = (0.7690885153231668, -1.6898118120182541) +description = Jefferson township, SD +station = ('kbkx', 0.0040924552440212) +zone = ('sdz056', 0.0020064679907381951) + +[fips4610138500] +centroid = (0.76760198349265818, -1.6840518938741149) +description = Lone Rock township, SD +station = ('kpqn', 0.0021657336067809592) +zone = ('sdz056', 0.0023974997059527307) + +[fips4610139660] +centroid = (0.76594062203097735, -1.6899411932757045) +description = Lynn township, SD +station = ('kmds', 0.003960265236044723) +zone = ('sdz056', 0.0030869376341769797) + +[fips4610155260] +centroid = (0.7704895434736202, -1.687790197145669) +description = Riverview township, SD +station = ('kbkx', 0.0030422577476277614) +zone = ('sdz056', 0.0021964998282731451) + +[fips4610160460] +centroid = (0.77059642743701229, -1.6858162297616635) +description = Spring Creek township, SD +station = ('kbkx', 0.0038347051688892211) +zone = ('sdz056', 0.0024821805136749833) + +[fips4610163940] +centroid = (0.7663088865031481, -1.6869970846269779) +description = Trent town, SD +station = ('kpqn', 0.0044930852500987039) +zone = ('sdz056', 0.0020284779932397564) + +[fips4610165420] +centroid = (0.76911296738598722, -1.6840499740119379) +description = Union township, SD +station = ('kpqn', 0.002608356602752479) +zone = ('sdz056', 0.0024141135203897181) + +[fips4610168660] +centroid = (0.77064686745239497, -1.6835898354079419) +description = Ward town, SD +station = ('kpqn', 0.0035079930572970114) +zone = ('sdz056', 0.0034915541602195846) + +[fips4610168700] +centroid = (0.77063210196692311, -1.6840883538021891) +description = Ward township, SD +station = ('kpqn', 0.0036955551641637634) +zone = ('sdz056', 0.0032218094012823337) + +[fips4610220] +centroid = (0.7708140874480286, -1.7054494210640552) +description = Carthage city, SD +station = ('kmhe', 0.0080107690455529373) +zone = ('sdz054', 0.0028113995988362237) + +[fips46103] +centroid = (0.76798586866163443, -1.7946138943187304) +description = Pennington County, SD +station = ('krap', 0.0029579509682887569) +zone = ('sdz030', 0.0056344748773267846) + +[fips4610302520] +centroid = (0.7718266925734506, -1.7836625990342891) +description = Ash township, SD +station = ('kphp', 0.0080530483527388817) +zone = ('sdz031', 0.0048606660609294399) + +[fips4610306620] +centroid = (0.76974795307444788, -1.7990496660659665) +description = Box Elder city, SD +station = ('krca', 0.00086044775171012879) +zone = ('sdz026', 0.0025529545702359449) + +[fips4610310380] +centroid = (0.76406877386150585, -1.7818182572538293) +description = Castle Butte township, SD +station = ('kphp', 0.0077851740052408934) +zone = ('sdz043', 0.0060134187382137596) + +[fips4610310820] +centroid = (0.77025008430024655, -1.7860199279884956) +description = Cedar Butte township, SD +station = ('krap', 0.0091211759548194653) +zone = ('sdz031', 0.0025876788982141757) + +[fips4610311165] +centroid = (0.76985715832574508, -1.803426306058145) +description = Central Pennington UT, SD +station = ('krap', 0.0036458918057018239) +zone = ('sdz026', 0.0023170192899998974) + +[fips4610313620] +centroid = (0.76397290292569398, -1.7838309709472291) +description = Conata township, SD +station = ('kphp', 0.0090291536085665269) +zone = ('sdz031', 0.0050586163246960887) + +[fips4610314700] +centroid = (0.76718296484583948, -1.7869766476712685) +description = Crooked Creek township, SD +station = ('krap', 0.0084919843394954918) +zone = ('sdz031', 0.0011295385476624655) + +[fips4610315350] +centroid = (0.77352955796474387, -1.7855457045774359) +description = Dalzell Canyon UT, SD +station = ('krap', 0.01045565989523662) +zone = ('sdz031', 0.0057291232973750404) + +[fips4610317730] +centroid = (0.76716633185806793, -1.7921861238759138) +description = East Central Pennington UT, SD +station = ('krap', 0.0048742602287607821) +zone = ('sdz031', 0.003175927176479203) + +[fips4610320900] +centroid = (0.76692757081639507, -1.7837830791125544) +description = Fairview township, SD +station = ('kphp', 0.007806359592390193) +zone = ('sdz031', 0.0032103982859816348) + +[fips4610321660] +centroid = (0.76566602937976114, -1.781996926609356) +description = Flat Butte township, SD +station = ('kphp', 0.0070380368589886633) +zone = ('sdz031', 0.0049156577023093083) + +[fips4610329100] +centroid = (0.76677448798770265, -1.8075941697652) +description = Hill City city, SD +station = ('kcut', 0.0035383572292070776) +zone = ('sdz028', 0.0019846614175861228) + +[fips4610331100] +centroid = (0.77008433038118473, -1.7834888166006682) +description = Huron township, SD +station = ('kphp', 0.0074595555817202801) +zone = ('sdz031', 0.0037897586057295332) + +[fips4610331420] +centroid = (0.76494344561614291, -1.7860485164816431) +description = Imlay township, SD +station = ('krap', 0.0098080380792943712) +zone = ('sdz031', 0.0034117808516637544) + +[fips4610333820] +centroid = (0.76612171739416424, -1.805135803700596) +description = Keystone town, SD +station = ('kcut', 0.0037068740699566192) +zone = ('sdz026', 0.0031492924930159529) + +[fips4610335280] +centroid = (0.76819906062976551, -1.7809021862893351) +description = Lake Creek township, SD +station = ('kphp', 0.0055329451710154597) +zone = ('sdz031', 0.0050732132463771158) + +[fips4610335300] +centroid = (0.76875145733802164, -1.7858593751506044) +description = Lake Flat township, SD +station = ('krap', 0.0091301530672807159) +zone = ('sdz031', 0.001654081256137335) + +[fips4610335420] +centroid = (0.76860505912036448, -1.7832085865359681) +description = Lake Hill township, SD +station = ('kphp', 0.0071581943534686499) +zone = ('sdz031', 0.0034542023441437452) + +[fips4610344070] +centroid = (0.76760519489848189, -1.804202384163337) +description = Mount Rushmore UT, SD +station = ('krca', 0.0045260500392500114) +zone = ('sdz026', 0.001918360795908926) + +[fips4610345060] +centroid = (0.76967456197940143, -1.7948291632286715) +description = New Underwood city, SD +station = ('krap', 0.0028152719792852937) +zone = ('sdz026', 0.0051478731177161934) + +[fips4610345574] +centroid = (0.77402311962391546, -1.7818216606458708) +description = Northeast Pennington UT, SD +station = ('kphp', 0.0080511737304311687) +zone = ('sdz032', 0.0069435679577881642) + +[fips4610347980] +centroid = (0.76860594923828296, -1.7902396105210421) +description = Owanka township, SD +station = ('krap', 0.0059857752083628465) +zone = ('sdz031', 0.0017298231998599351) + +[fips4610349140] +centroid = (0.77012220402595299, -1.78197416751591) +description = Peno township, SD +station = ('kphp', 0.006397577963349132) +zone = ('sdz031', 0.0047627468579634867) + +[fips4610352500] +centroid = (0.76769024479293158, -1.7823774432928756) +description = Quinn town, SD +station = ('kphp', 0.0066566573210513329) +zone = ('sdz031', 0.0040291226880736592) + +[fips4610352540] +centroid = (0.76688594471373506, -1.7818577366015094) +description = Quinn township, SD +station = ('kphp', 0.0064835938608045641) +zone = ('sdz031', 0.0045432450960327265) + +[fips4610352720] +centroid = (0.77404631504967436, -1.7831058215496107) +description = Rainy Creek/Cheyenne township, SD +station = ('kphp', 0.008787422574294261) +zone = ('sdz031', 0.00691660450041296) + +[fips4610352980] +centroid = (0.76918529383018996, -1.8014926208732756) +description = Rapid City city, SD +station = ('krca', 0.0020202637072722642) +zone = ('sdz026', 0.0012298558893352955) + +[fips4610352987] +centroid = (0.76755054863960193, -1.7981408556711604) +description = Rapid City East UT, SD +station = ('krap', 0.0013026510793655601) +zone = ('sdz026', 0.0025084057482838212) + +[fips4610357820] +centroid = (0.76485034975384147, -1.7890718630784102) +description = Scenic township, SD +station = ('krap', 0.0079018381123910682) +zone = ('sdz031', 0.0033160152987003356) + +[fips4610358660] +centroid = (0.76983518463046252, -1.7878523317168717) +description = Shyne township, SD +station = ('krap', 0.0077604515918565072) +zone = ('sdz031', 0.0017696402186836177) + +[fips4610362340] +centroid = (0.77161376240470725, -1.7859231843880574) +description = Sunnyside township, SD +station = ('krap', 0.0094926379678797017) +zone = ('sdz031', 0.0038346836259270161) + +[fips4610368380] +centroid = (0.76779712875632367, -1.7844699883462618) +description = Wall town, SD +station = ('krap', 0.010184453372290033) +zone = ('sdz031', 0.0025204845978259254) + +[fips4610369140] +centroid = (0.76915841575970911, -1.7880264457630508) +description = Wasta town, SD +station = ('krap', 0.0075785105573877437) +zone = ('sdz031', 0.0010926246122664942) + +[fips4610369180] +centroid = (0.76874157877445537, -1.7874055274283611) +description = Wasta township, SD +station = ('krap', 0.0080190148897224742) +zone = ('sdz031', 0.0007812424290401912) + +[fips4610370475] +centroid = (0.76785011695241423, -1.8107440178261518) +description = West Pennington UT, SD +station = ('kcut', 0.0048496863026064266) +zone = ('sdz028', 0.00061827504752426778) + +[fips46105] +centroid = (0.79383485810878618, -1.7884038906670869) +description = Perkins County, SD +station = ('khei', 0.009567780335063723) +zone = ('sdz002', 0.00015600517931118165) + +[fips4610500] +centroid = (0.78058381228216212, -1.693509047692509) +description = Castlewood city, SD +station = ('katy', 0.0034048147151245793) +zone = ('sdz022', 0.0021418698654636368) + +[fips4610500220] +centroid = (0.79137314101201817, -1.7872702993179168) +description = Ada township, SD +station = ('kd07', 0.007188543998900984) +zone = ('sdz002', 0.0027339242019903715) + +[fips4610501460] +centroid = (0.79745147702489128, -1.7846879625165435) +description = Anderson township, SD +station = ('khei', 0.0074452235583812674) +zone = ('sdz002', 0.0044139242992318707) + +[fips4610501660] +centroid = (0.79142246401667948, -1.7935093103417283) +description = Antelope township, SD +station = ('k2wx', 0.010637043111655444) +zone = ('sdz002', 0.0043108012872136916) + +[fips4610503740] +centroid = (0.79903564257375648, -1.7890688262055119) +description = Barrett township, SD +station = ('khei', 0.0044632058492136044) +zone = ('sdz002', 0.0050917338635809248) + +[fips4610504225] +centroid = (0.78945233635702838, -1.7918868522690743) +description = Beck-Highland township, SD +station = ('kd07', 0.0087340731929813672) +zone = ('sdz002', 0.0050811618750957657) + +[fips4610505620] +centroid = (0.79453583469626465, -1.7883990211984739) +description = Bison town, SD +station = ('khei', 0.008888007579093176) +zone = ('sdz002', 0.00058717265374408942) + +[fips4610505660] +centroid = (0.7944202240866125, -1.7896188143594003) +description = Bison township, SD +station = ('khei', 0.0088288105091630566) +zone = ('sdz002', 0.00088547099794164606) + +[fips4610508580] +centroid = (0.79904037241602932, -1.7869368716176155) +description = Burdick township, SD +station = ('khei', 0.0052220014498858183) +zone = ('sdz002', 0.0052055201195367008) + +[fips4610510300] +centroid = (0.79584511088794063, -1.7912129108317092) +description = Cash township, SD +station = ('khei', 0.0073017299383872679) +zone = ('sdz002', 0.002657714563241478) + +[fips4610510420] +centroid = (0.80093586979686526, -1.7892646521475857) +description = Castle Butte township, SD +station = ('khei', 0.0027314496246233512) +zone = ('ndz044', 0.0036093600277980744) + +[fips4610511340] +centroid = (0.79224088380952484, -1.7850255441004641) +description = Chance township, SD +station = ('kd07', 0.0070173948959339422) +zone = ('sdz002', 0.0030054870476302915) + +[fips4610511420] +centroid = (0.78975094473875207, -1.7869421250586641) +description = Chaudoin township, SD +station = ('kd07', 0.0058904563658641919) +zone = ('sdz002', 0.004353862301673719) + +[fips4610512300] +centroid = (0.79601301156198256, -1.7824234327186657) +description = Clark township, SD +station = ('khei', 0.0095688784055251181) +zone = ('sdz002', 0.0047523435080152419) + +[fips4610516460] +centroid = (0.79905730210977366, -1.78195907041788) +description = De Witt township, SD +station = ('khei', 0.0078434415647880926) +zone = ('sdz002', 0.0068698922743068887) + +[fips4610517170] +centroid = (0.79850293317946264, -1.7932195158727271) +description = Duck Creek UT, SD +station = ('khei', 0.0047776476899638104) +zone = ('sdz002', 0.0056005646271940551) + +[fips4610517260] +centroid = (0.79130058767501277, -1.791560458245659) +description = Duell township, SD +station = ('kd07', 0.0094225972792528565) +zone = ('sdz002', 0.0033982306954836727) + +[fips4610519620] +centroid = (0.78958960650269772, -1.7824588803557737) +description = Englewood township, SD +station = ('kd07', 0.003858417701281063) +zone = ('sdz002', 0.006110781624026681) + +[fips4610521700] +centroid = (0.80058010188213868, -1.7842860480963942) +description = Flat Creek township, SD +station = ('khei', 0.0056827366061100223) +zone = ('ndz044', 0.0053504180649148253) + +[fips4610522460] +centroid = (0.79111849747415219, -1.7819260487884323) +description = Foster township, SD +station = ('kd07', 0.0052323655478604073) +zone = ('sdz002', 0.0054433856528813785) + +[fips4610522940] +centroid = (0.79738890697120723, -1.79100361094781) +description = Fredlund township, SD +station = ('khei', 0.0057674498492941229) +zone = ('sdz002', 0.0038397980529259203) + +[fips4610524580] +centroid = (0.79747203700347979, -1.7962775072551465) +description = Glendo township, SD +station = ('khei', 0.0065463289684143389) +zone = ('sdz002', 0.0064541693659880437) + +[fips4610525220] +centroid = (0.80090221984888676, -1.7911259061684972) +description = Grand River township, SD +station = ('khei', 0.0022623084472686269) +zone = ('ndz044', 0.0038200331187964792) + +[fips4610526620] +centroid = (0.79143941116371652, -1.7897683192631262) +description = Hall township, SD +station = ('kd07', 0.0084985854909195926) +zone = ('sdz002', 0.0026609534351854716) + +[fips4610530060] +centroid = (0.80118716230256737, -1.7953813155908325) +description = Horse Creek township, SD +station = ('khei', 0.00328690395214239) +zone = ('ndz044', 0.00530835757554695) + +[fips4610532960] +centroid = (0.79266768662480747, -1.795488217007517) +description = Jones UT, SD +station = ('k2wx', 0.0088680633797208596) +zone = ('sdz002', 0.005040536998680613) + +[fips4610536340] +centroid = (0.80177776426814973, -1.783009601547948) +description = Lemmon city, SD +station = ('khei', 0.006110546250148857) +zone = ('ndz044', 0.0052639337129115685) + +[fips4610537020] +centroid = (0.80046068645471724, -1.7869945896559791) +description = Liberty township, SD +station = ('khei', 0.0041667167661595846) +zone = ('ndz044', 0.0044269182225395668) + +[fips4610537580] +centroid = (0.80107429185984091, -1.7820544701147942) +description = Lincoln township, SD +station = ('khei', 0.0069377900461304823) +zone = ('ndz044', 0.0062044465291327929) + +[fips4610538100] +centroid = (0.79874974018898715, -1.7909702926123894) +description = Lodgepole township, SD +station = ('khei', 0.0044130876711859232) +zone = ('sdz002', 0.0050844768590521082) + +[fips4610538700] +centroid = (0.79280556763571497, -1.7868545618900917) +description = Lone Tree township, SD +station = ('kd07', 0.0081516660967411222) +zone = ('sdz002', 0.0016514080547366757) + +[fips4610540420] +centroid = (0.79296530016885758, -1.7937894531399661) +description = Maltby township, SD +station = ('k2wx', 0.0098946949768343017) +zone = ('sdz002', 0.0038118966594974327) + +[fips4610541060] +centroid = (0.7959693783306826, -1.7882409990879984) +description = Marshfield township, SD +station = ('khei', 0.0075411887990366796) +zone = ('sdz002', 0.0020231214839434744) + +[fips4610541140] +centroid = (0.78828258178575672, -1.7872012366394154) +description = Martin township, SD +station = ('kd07', 0.0052439891949605669) +zone = ('sdz002', 0.0057524161621409133) + +[fips4610541660] +centroid = (0.7944659691663073, -1.7849503378629958) +description = Meadow township, SD +station = ('kd07', 0.0090389276332932256) +zone = ('sdz002', 0.002567998402901844) + +[fips4610543660] +centroid = (0.78909686514827471, -1.7852723685632812) +description = Moreau township, SD +station = ('kd07', 0.0045746629634881688) +zone = ('sdz002', 0.0053761179742187097) + +[fips4610545575] +centroid = (0.79395558253314658, -1.7811924345439418) +description = Northeast Perkins UT, SD +station = ('kd07', 0.0079893949338195776) +zone = ('sdz002', 0.0051521566457720484) + +[fips4610550180] +centroid = (0.79454047727207489, -1.7952098369918239) +description = Plateau township, SD +station = ('k2wx', 0.0085605575361211578) +zone = ('sdz002', 0.0047093065002854753) + +[fips4610550940] +centroid = (0.7972111626401841, -1.7890789142085883) +description = Pleasant Valley UT, SD +station = ('khei', 0.0061818537794506604) +zone = ('sdz002', 0.0032755413304965389) + +[fips4610552700] +centroid = (0.79453433371310789, -1.7873245092444836) +description = Rainbow township, SD +station = ('khei', 0.0091055381566549094) +zone = ('sdz002', 0.0010299880390243355) + +[fips4610554755] +centroid = (0.79291845553173401, -1.7914054031949116) +description = Richland UT, SD +station = ('khei', 0.010224619100429093) +zone = ('sdz002', 0.0022612228758968258) + +[fips4610555500] +centroid = (0.79727692664639926, -1.7869380060816296) +description = Rockford township, SD +station = ('khei', 0.0066977666367923792) +zone = ('sdz002', 0.0035042947816259209) + +[fips4610557900] +centroid = (0.79431133299458057, -1.7913691177997628) +description = Scotch Cap township, SD +station = ('khei', 0.0088322419605157045) +zone = ('sdz002', 0.0020130166675175571) + +[fips4610558700] +centroid = (0.79775547847400363, -1.7940226989412025) +description = Sidney township, SD +station = ('khei', 0.0056489609028708351) +zone = ('sdz002', 0.005397411666503849) + +[fips4610559880] +centroid = (0.78823636546716391, -1.7895554938141378) +description = South Perkins UT, SD +station = ('kd07', 0.0067610046725814507) +zone = ('sdz002', 0.0057651087691347616) + +[fips4610562060] +centroid = (0.79447809920460866, -1.7935457702698023) +description = Strool township, SD +station = ('khei', 0.0087720284451538819) +zone = ('sdz002', 0.0035454201529604781) + +[fips4610563860] +centroid = (0.80154951010857389, -1.7847601144278207) +description = Trail township, SD +station = ('khei', 0.0050007514521442946) +zone = ('ndz044', 0.0044286902834905278) + +[fips4610565860] +centroid = (0.79601027139505698, -1.7937319969009904) +description = Vail township, SD +station = ('khei', 0.0072880256176666375) +zone = ('sdz002', 0.0041743740800448759) + +[fips4610567060] +centroid = (0.79309925418894811, -1.7891795149866732) +description = Vickers township, SD +station = ('kd07', 0.0093706564172729434) +zone = ('sdz002', 0.00096755753919401124) + +[fips4610567300] +centroid = (0.80100995902361238, -1.7934866385147448) +description = Viking township, SD +station = ('khei', 0.002510617705930732) +zone = ('ndz044', 0.004506179887323161) + +[fips4610567900] +centroid = (0.78697400372578141, -1.7938213228521074) +description = Vrooman township, SD +station = ('k2wx', 0.012989506085286118) +zone = ('sdz013', 0.0059657152212100632) + +[fips4610569960] +centroid = (0.7913541867363415, -1.7957829682115938) +description = Wells township, SD +station = ('k2wx', 0.0092462784098697563) +zone = ('sdz002', 0.0057107064376107344) + +[fips4610571060] +centroid = (0.80152907230303305, -1.7869004815027116) +description = White Butte township, SD +station = ('khei', 0.0036308270152183497) +zone = ('ndz044', 0.003498803063799997) + +[fips4610571100] +centroid = (0.79569410500105808, -1.7952443945110135) +description = White Hill UT, SD +station = ('khei', 0.0078740140255135205) +zone = ('sdz002', 0.0050055037153610479) + +[fips4610572020] +centroid = (0.7989301025138883, -1.7954323141115756) +description = Wilson township, SD +station = ('khei', 0.0049929225507768351) +zone = ('sdz002', 0.0069241420392163267) + +[fips4610620] +centroid = (0.77439087795060313, -1.7111573807563625) +description = Cavour town, SD +station = ('khon', 0.0023981627833026659) +zone = ('sdz038', 0.0030483126871916687) + +[fips46107] +centroid = (0.78651999122746019, -1.7444501471033924) +description = Potter County, SD +station = ('kmbg', 0.010233893932714271) +zone = ('sdz016', 9.4620130202118034e-05) + +[fips4610711190] +centroid = (0.78651999122746019, -1.7444501471033924) +description = Central Potter UT, SD +station = ('kmbg', 0.010233893932714271) +zone = ('sdz016', 9.4620130202118034e-05) + +[fips4610717880] +centroid = (0.78729343388548145, -1.7406184687168567) +description = East Potter UT, SD +station = ('kmbg', 0.01141582849051412) +zone = ('sdz016', 0.0029036401598002081) + +[fips4610724260] +centroid = (0.78550036987844507, -1.7445212518171187) +description = Gettysburg city, SD +station = ('kmbg', 0.011068969100373584) +zone = ('sdz016', 0.0010244908488442979) + +[fips4610730300] +centroid = (0.78961515812294691, -1.7414462434744924) +description = Hoven town, SD +station = ('kmbg', 0.0095041139324209423) +zone = ('sdz016', 0.0038016181083839412) + +[fips4610736260] +centroid = (0.78659867067014011, -1.7412518312491128) +description = Lebanon town, SD +station = ('kmbg', 0.011586607277367288) +zone = ('sdz016', 0.0023546413220537784) + +[fips4610763700] +centroid = (0.78903103132888952, -1.7385920192822437) +description = Tolstoy town, SD +station = ('kmbg', 0.011507831157660502) +zone = ('sdz016', 0.0049144794595636218) + +[fips4610770590] +centroid = (0.78640717314461128, -1.7488034171368869) +description = West Potter UT, SD +station = ('kmbg', 0.0089960621116092661) +zone = ('sdz016', 0.0029826785566510298) + +[fips46109] +centroid = (0.79627849359450331, -1.6920539666951213) +description = Roberts County, SD +station = ('k8d3', 0.00087232220412771855) +zone = ('sdz008', 0.00010970180934963608) + +[fips4610900500] +centroid = (0.79442537280790593, -1.6937547900511896) +description = Agency township, SD +station = ('k8d3', 0.0027148801013640541) +zone = ('sdz008', 0.0023036925869981094) + +[fips4610901220] +centroid = (0.79274594718846692, -1.6957593006971052) +description = Alto township, SD +station = ('k8d3', 0.0048000361644089861) +zone = ('sdz008', 0.0044818266031038043) + +[fips4610904220] +centroid = (0.79475642686042414, -1.6900113031517572) +description = Becker township, SD +station = ('k8d3', 0.0029441794845999933) +zone = ('sdz008', 0.0021567105950669671) + +[fips4610906420] +centroid = (0.79893425639750815, -1.6958554159790125) +description = Bossko township, SD +station = ('k8d3', 0.0029208843455743316) +zone = ('sdz008', 0.0036921919470453541) + +[fips4610908100] +centroid = (0.7976178069026062, -1.6895488607131486) +description = Bryant township, SD +station = ('k8d3', 0.0022631066160620859) +zone = ('sdz008', 0.0021257444865069833) + +[fips4610912020] +centroid = (0.80034898538258958, -1.694776331262382) +description = Claire City town, SD +station = ('k8d3', 0.0036239680569537035) +zone = ('sdz008', 0.0044018437188867521) + +[fips4610913940] +centroid = (0.79124894338244633, -1.6888605377627472) +description = Corona town, SD +station = ('kvvv', 0.0042061963705068411) +zone = ('sdz021', 0.0028490882009127448) + +[fips4610917140] +centroid = (0.79570213351561725, -1.6960719066194299) +description = Dry Wood Lake township, SD +station = ('k8d3', 0.002721099457357309) +zone = ('sdz008', 0.0029100969009917235) + +[fips4610917780] +centroid = (0.79592375542403548, -1.6915536157051594) +description = Easter township, SD +station = ('k8d3', 0.0013603697012445582) +zone = ('sdz008', 0.00056988392676219453) + +[fips4610919780] +centroid = (0.79887285571442279, -1.693643595124545) +description = Enterprise township, SD +station = ('k8d3', 0.0019587108287788431) +zone = ('sdz008', 0.0027299864661061496) + +[fips4610923700] +centroid = (0.791825792153523, -1.6893527555183945) +description = Garfield township, SD +station = ('k8d3', 0.005705481514549182) +zone = ('sdz021', 0.0034393792935184515) + +[fips4610924060] +centroid = (0.79172667490530224, -1.6875302827134619) +description = Geneseo township, SD +station = ('kvvv', 0.0033876506858336588) +zone = ('sdz021', 0.0034667038976440986) + +[fips4610924780] +centroid = (0.79578817824774062, -1.6938628433851806) +description = Goodwill township, SD +station = ('k8d3', 0.0014957299274346368) +zone = ('sdz008', 0.0014157978374368027) + +[fips4610925700] +centroid = (0.79729425776587159, -1.6916928929794686) +description = Grant township, SD +station = ('k8d3', 0.00073631749958615576) +zone = ('sdz008', 0.00093735410045506218) + +[fips4610927020] +centroid = (0.79906958922770766, -1.688437749204744) +description = Harmon township, SD +station = ('keth', 0.0025368533616832766) +zone = ('mnz039', 0.0032773455680223107) + +[fips4610927500] +centroid = (0.79906643018176149, -1.6916987049258776) +description = Hart township, SD +station = ('k8d3', 0.0021447299133709181) +zone = ('sdz008', 0.0026895611024720127) + +[fips4610934980] +centroid = (0.79324188249542105, -1.6893204320206476) +description = Lake township, SD +station = ('k8d3', 0.0044616397515753713) +zone = ('sdz008', 0.0036726504225032429) + +[fips4610936140] +centroid = (0.79445225087838656, -1.6919367678358499) +description = Lawrence township, SD +station = ('k8d3', 0.002633100578019641) +zone = ('sdz008', 0.0019355741600254803) + +[fips4610936300] +centroid = (0.79325160397935468, -1.6914683040113219) +description = Lee township, SD +station = ('k8d3', 0.0038758462937057529) +zone = ('sdz008', 0.0031596220452181248) + +[fips4610937100] +centroid = (0.80084858588097296, -1.6913479635593969) +description = Lien township, SD +station = ('k8d3', 0.0039261413717924494) +zone = ('sdz008', 0.0044870322484573425) + +[fips4610937980] +centroid = (0.79161015672443902, -1.6853941916952386) +description = Lockwood township, SD +station = ('kvvv', 0.0019463635123208511) +zone = ('mnz046', 0.0022601613567415683) + +[fips4610938780] +centroid = (0.79740665696969992, -1.6958188513311832) +description = Long Hollow township, SD +station = ('k8d3', 0.0022256394038454958) +zone = ('sdz008', 0.0028386377043319953) + +[fips4610942820] +centroid = (0.80059280787909326, -1.6935224518211642) +description = Minnesota township, SD +station = ('k8d3', 0.0036074770917317494) +zone = ('sdz008', 0.0043332881620047718) + +[fips4610944820] +centroid = (0.80036570563682374, -1.6914859143834744) +description = New Effington town, SD +station = ('k8d3', 0.0034343139187907939) +zone = ('sdz008', 0.0039969351768199251) + +[fips4610945940] +centroid = (0.80067728181488973, -1.6959549695595464) +description = Norway township, SD +station = ('k8d3', 0.0043010396544015499) +zone = ('sdz008', 0.0050905924067424779) + +[fips4610947140] +centroid = (0.79419268551203004, -1.6958752080127302) +description = One Road township, SD +station = ('k8d3', 0.0036161353749911856) +zone = ('sdz008', 0.0034735599761553976) + +[fips4610947660] +centroid = (0.79124407391383322, -1.6965463569232921) +description = Ortley town, SD +station = ('k8d3', 0.0063928897464303061) +zone = ('sdz008', 0.0060398817672007391) + +[fips4610947700] +centroid = (0.79137188437495676, -1.6957745723280599) +description = Ortley township, SD +station = ('k8d3', 0.0060633727513084452) +zone = ('sdz008', 0.0056609074347742389) + +[fips4610948940] +centroid = (0.79486203673346234, -1.6922035937718947) +description = Peever town, SD +station = ('k8d3', 0.0021969223255010198) +zone = ('sdz008', 0.0015296277438725807) + +[fips4610956340] +centroid = (0.80051620537822321, -1.6882874763561473) +description = Rosholt town, SD +station = ('keth', 0.0029737229937835462) +zone = ('mnz039', 0.003565154954382312) + +[fips4610959260] +centroid = (0.79696095223861818, -1.6937598864126056) +description = Sisseton city, SD +station = ('k8d3', 0.00075923714517368856) +zone = ('sdz008', 0.0013395937777213587) + +[fips4610959300] +centroid = (0.79740656970323742, -1.6935007224719769) +description = Sisseton township, SD +station = ('k8d3', 0.00068489590996774713) +zone = ('sdz008', 0.001448659370789493) + +[fips4610960620] +centroid = (0.79177779559909311, -1.6914721262823837) +description = Springdale township, SD +station = ('k8d3', 0.005323437007894366) +zone = ('sdz021', 0.0038266216696937879) + +[fips4610960740] +centroid = (0.79292700764506874, -1.6934658682468144) +description = Spring Grove township, SD +station = ('k8d3', 0.0041435368269783146) +zone = ('sdz008', 0.0036032683457062082) + +[fips4610962220] +centroid = (0.79073339057469971, -1.6936564407478398) +description = Summit town, SD +station = ('k8d3', 0.0063374972161650538) +zone = ('sdz021', 0.0040722114179999472) + +[fips4610962260] +centroid = (0.79133530227383497, -1.6937759958016014) +description = Summit township, SD +station = ('k8d3', 0.0057500710212064713) +zone = ('sdz021', 0.0045073204023025571) + +[fips4610967180] +centroid = (0.80071948387620295, -1.6891549399009735) +description = Victor township, SD +station = ('keth', 0.0035878444263975177) +zone = ('mnz039', 0.0041961780013416248) + +[fips4610971380] +centroid = (0.8015379909355107, -1.6855722501855273) +description = White Rock town, SD +station = ('keth', 0.0028077080477572937) +zone = ('mnz039', 0.0029519462475913493) + +[fips4610971420] +centroid = (0.80060005099548892, -1.6869872060634115) +description = White Rock township, SD +station = ('keth', 0.0023638845980307552) +zone = ('mnz039', 0.0028422763121877343) + +[fips4610971980] +centroid = (0.79254006814990163, -1.690471546475508) +description = Wilmot city, SD +station = ('k8d3', 0.0047520734064915764) +zone = ('sdz008', 0.0039984121054321281) + +[fips4611060] +centroid = (0.75252549780137323, -1.6922621146617141) +description = Centerville city, SD +station = ('kykn', 0.0064361719311151) +zone = ('sdz070', 0.003530505776816449) + +[fips46111] +centroid = (0.76831194852578444, -1.7120302024619924) +description = Sanborn County, SD +station = ('kmhe', 0.0045006296938403662) +zone = ('sdz053', 4.3974041189340204e-05) + +[fips4611100420] +centroid = (0.77061796479998201, -1.7088521149737435) +description = Afton township, SD +station = ('khon', 0.005697996834080378) +zone = ('sdz053', 0.0032080254681569132) + +[fips4611102380] +centroid = (0.76808266462194996, -1.7090911378148039) +description = Artesian town, SD +station = ('kmhe', 0.0044302888750287189) +zone = ('sdz053', 0.0021223260036034824) + +[fips4611104780] +centroid = (0.76912708709963584, -1.7088645068114325) +description = Benedict township, SD +station = ('kmhe', 0.0054760864816363105) +zone = ('sdz053', 0.0023944984393532614) + +[fips4611108940] +centroid = (0.76610309473104554, -1.7109645044207247) +description = Butler township, SD +station = ('kmhe', 0.0022308448347036374) +zone = ('sdz053', 0.0023761642842568906) + +[fips4611116540] +centroid = (0.76748040385696426, -1.7087001142491871) +description = Diana township, SD +station = ('kmhe', 0.003972037364495252) +zone = ('sdz053', 0.0025418850248097803) + +[fips4611118780] +centroid = (0.76610695190869238, -1.7151594207311853) +description = Elliott township, SD +station = ('kmhe', 0.0037386080782460568) +zone = ('sdz053', 0.0031886757243356086) + +[fips4611121940] +centroid = (0.77052788835728647, -1.711121950572547) +description = Floyd township, SD +station = ('khon', 0.0047650478699114446) +zone = ('sdz053', 0.002266166267079399) + +[fips4611132300] +centroid = (0.77069985564848553, -1.7129313683146745) +description = Jackson township, SD +station = ('khon', 0.0040916342617276415) +zone = ('sdz053', 0.0024348907707983794) + +[fips4611136620] +centroid = (0.76620448090729387, -1.7129797139349547) +description = Letcher town, SD +station = ('kmhe', 0.0027328908057233274) +zone = ('sdz053', 0.0022592331007667602) + +[fips4611136660] +centroid = (0.76597872256854838, -1.7129414737710436) +description = Letcher township, SD +station = ('kmhe', 0.0025277019438844314) +zone = ('sdz053', 0.0024675591266504846) + +[fips4611138460] +centroid = (0.76752201250633179, -1.7128639113390849) +description = Logan township, SD +station = ('kmhe', 0.0038879702342173948) +zone = ('sdz053', 0.0010316347187272522) + +[fips4611140] +centroid = (0.77437777052792067, -1.8111370834269935) +description = Central City city, SD +station = ('kspf', 0.0020092249501301273) +zone = ('sdz024', 0.0016535681511522136) + +[fips4611147020] +centroid = (0.76926196614422993, -1.7109386735477952) +description = Oneida township, SD +station = ('kmhe', 0.0053897383887770078) +zone = ('sdz053', 0.0011934096848891013) + +[fips4611153140] +centroid = (0.76609419355186026, -1.7088665837532424) +description = Ravenna township, SD +station = ('kmhe', 0.0027045708653321717) +zone = ('sdz053', 0.0032026815054286505) + +[fips4611158820] +centroid = (0.76908959742730298, -1.7129759963836479) +description = Silver Creek township, SD +station = ('kmhe', 0.0054070121741212028) +zone = ('sdz053', 0.0010069162271845015) + +[fips4611164820] +centroid = (0.7677482420839753, -1.7153332206180989) +description = Twin Lake township, SD +station = ('kmhe', 0.0049757336102645173) +zone = ('sdz053', 0.0024605865976009386) + +[fips4611165460] +centroid = (0.76764481387250216, -1.7109594953257714) +description = Union township, SD +station = ('kmhe', 0.0037725170602958703) +zone = ('sdz053', 0.0010411489315992743) + +[fips4611168860] +centroid = (0.77053813343999578, -1.7149800532439579) +description = Warren township, SD +station = ('khon', 0.0041118574968988875) +zone = ('sdz053', 0.0030484561795558985) + +[fips4611172700] +centroid = (0.76889080442550084, -1.7151649185183293) +description = Woonsocket city, SD +station = ('khon', 0.0057645179430055992) +zone = ('sdz053', 0.0023248730928616904) + +[fips4611172740] +centroid = (0.769254583401494, -1.7152931827650584) +description = Woonsocket township, SD +station = ('khon', 0.0054110201363822318) +zone = ('sdz053', 0.0025201036878411544) + +[fips4611220] +centroid = (0.76422653417259367, -1.7335539518634369) +description = Chamberlain city, SD +station = ('k9v9', 0.00037052801171832804) +zone = ('sdz057', 0.0033063566193474473) + +[fips46113] +centroid = (0.75645950484195357, -1.790000605133274) +description = Shannon County, SD +station = ('kien', 0.0054136345489039957) +zone = ('sdz042', 0.00014912520801333085) + +[fips4611303860] +centroid = (0.75272252802063089, -1.7820108194302018) +description = Batesland town, SD +station = ('kien', 0.0055410195453608159) +zone = ('sdz044', 0.0056952143577293614) + +[fips4611317920] +centroid = (0.75662108742410317, -1.7853569646721255) +description = East Shannon UT, SD +station = ('kien', 0.0062327312298381555) +zone = ('sdz042', 0.0032883639554416597) + +[fips4611370625] +centroid = (0.75638031925379057, -1.7929258816793716) +description = West Shannon UT, SD +station = ('kien', 0.0059442702216629074) +zone = ('sdz042', 0.0022279110965528464) + +[fips4611380] +centroid = (0.75698193424695304, -1.6927475954464486) +description = Chancellor town, SD +station = ('kfsd', 0.0047595364865215669) +zone = ('sdz066', 0.0023106006753937629) + +[fips46115] +centroid = (0.7841944796255178, -1.7163505730390867) +description = Spink County, SD +station = ('kabr', 0.0091070763067578851) +zone = ('sdz018', 0.00014822985667406019) + +[fips4611500] +centroid = (0.78832258473221251, -1.7233970257347482) +description = Chelsea town, SD +station = ('kabr', 0.006354719809662436) +zone = ('sdz017', 0.0052283819407618832) + +[fips4611501700] +centroid = (0.77973832243261842, -1.7132130120960689) +description = Antelope township, SD +station = ('khon', 0.0051842268521237952) +zone = ('sdz038', 0.0047907549793977881) + +[fips4611502540] +centroid = (0.78527696773418987, -1.7191337972373644) +description = Ashton city, SD +station = ('kabr', 0.0080393207527231537) +zone = ('sdz018', 0.0021168034008907971) + +[fips4611502700] +centroid = (0.7858872919203197, -1.7215158749603638) +description = Athol township, SD +station = ('kabr', 0.0078409215829290113) +zone = ('sdz018', 0.003900983703964492) + +[fips4611504420] +centroid = (0.78290019581211645, -1.7133897964960034) +description = Belle Plaine township, SD +station = ('khon', 0.0083022553810635068) +zone = ('sdz018', 0.0026000665265749649) + +[fips4611504580] +centroid = (0.77974902130093315, -1.7174468317955567) +description = Belmont township, SD +station = ('khon', 0.0055297339606700394) +zone = ('sdz018', 0.0046213956033506129) + +[fips4611504900] +centroid = (0.78734256490392518, -1.7133209956168898) +description = Benton township, SD +station = ('kabr', 0.0066629341796631573) +zone = ('sdz018', 0.0037540302733665462) + +[fips4611504940] +centroid = (0.78872355667456562, -1.7131513321603034) +description = Beotia township, SD +station = ('kabr', 0.00554206828256736) +zone = ('sdz018', 0.0049894134311973112) + +[fips4611507060] +centroid = (0.7881767973797934, -1.7160523660830909) +description = Brentford town, SD +station = ('kabr', 0.0052051621405714149) +zone = ('sdz018', 0.0038700817668186299) + +[fips4611508300] +centroid = (0.77976605571443269, -1.7216826760769768) +description = Buffalo township, SD +station = ('khon', 0.0072511007261725751) +zone = ('sdz037', 0.005009804786958969) + +[fips4611509740] +centroid = (0.78111297865807428, -1.7110311061849808) +description = Capitola township, SD +station = ('khon', 0.0069318216318557417) +zone = ('sdz018', 0.0050123023640512481) + +[fips4611512940] +centroid = (0.78584221006574062, -1.715819888226725) +description = Clifton township, SD +station = ('kabr', 0.0075266393608143418) +zone = ('sdz018', 0.0015915888325916847) + +[fips4611513700] +centroid = (0.78814358376412785, -1.7120884964590088) +description = Conde city, SD +station = ('kabr', 0.0064534014562683357) +zone = ('sdz018', 0.0049198669401599648) + +[fips4611513740] +centroid = (0.78884625332098079, -1.7111556877869882) +description = Conde township, SD +station = ('kabr', 0.0063679299884997027) +zone = ('sdz018', 0.0058802202709508844) + +[fips4611513900] +centroid = (0.77942538489773583, -1.7151582164540016) +description = Cornwall township, SD +station = ('khon', 0.004813362084705973) +zone = ('sdz038', 0.0042469851127813997) + +[fips4611514420] +centroid = (0.7811364533365136, -1.717267656294547) +description = Crandon township, SD +station = ('khon', 0.0067945726980443615) +zone = ('sdz018', 0.0032316311371081521) + +[fips4611516820] +centroid = (0.78355671886354661, -1.7121653782125594) +description = Doland city, SD +station = ('khon', 0.009074120291436949) +zone = ('sdz018', 0.00313960787675251) + +[fips4611520260] +centroid = (0.78291986567278649, -1.721657298989653) +description = Exline township, SD +station = ('khon', 0.0097273601879854944) +zone = ('sdz018', 0.0039335846012831027) + +[fips4611522580] +centroid = (0.78326299740372851, -1.7158199056800179) +description = Frankfort city, SD +station = ('khon', 0.0086790562455754238) +zone = ('sdz018', 0.0011499954410477955) + +[fips4611522620] +centroid = (0.78290180151502831, -1.7151688106025613) +description = Frankfort township, SD +station = ('khon', 0.0082803984330140079) +zone = ('sdz018', 0.0016883097930245319) + +[fips4611523740] +centroid = (0.77975745124122031, -1.7195682620480635) +description = Garfield township, SD +station = ('khon', 0.0062702366681961956) +zone = ('sdz018', 0.0050634796845939979) + +[fips4611525780] +centroid = (0.78421123478633714, -1.7174212103621376) +description = Great Bend township, SD +station = ('kabr', 0.0090429670341095041) +zone = ('sdz018', 0.00068402824775924665) + +[fips4611526460] +centroid = (0.78449029548043847, -1.721802475476834) +description = Groveland township, SD +station = ('kabr', 0.0092275342913833592) +zone = ('sdz018', 0.0037806168232418095) + +[fips4611527180] +centroid = (0.78431757769766108, -1.7154626018755494) +description = Harmony township, SD +station = ('kabr', 0.0090719934881069494) +zone = ('sdz018', 0.00071080117944126702) + +[fips4611527380] +centroid = (0.78112889606085245, -1.7130407830054821) +description = Harrison township, SD +station = ('khon', 0.0065757278720396974) +zone = ('sdz018', 0.0040086291422643597) + +[fips4611532660] +centroid = (0.78592570661715611, -1.7184139012807942) +description = Jefferson township, SD +station = ('kabr', 0.0073439110838388133) +zone = ('sdz018', 0.0021170992672980603) + +[fips4611535020] +centroid = (0.7811564548097415, -1.7215154909879282) +description = Lake township, SD +station = ('khon', 0.0082181349096966637) +zone = ('sdz018', 0.0047756505334751106) + +[fips4611535980] +centroid = (0.78886889024137918, -1.7159027390063173) +description = La Prairie township, SD +station = ('kabr', 0.0045607671513480993) +zone = ('sdz018', 0.004568484331671137) + +[fips4611537660] +centroid = (0.78134208802898353, -1.7152536685107933) +description = Lincoln township, SD +station = ('khon', 0.0067285199567026386) +zone = ('sdz018', 0.0030974892917066555) + +[fips4611538140] +centroid = (0.78290588558547791, -1.7172706059009828) +description = Lodi township, SD +station = ('khon', 0.0085032504124105471) +zone = ('sdz018', 0.0015224216979406987) + +[fips4611541860] +centroid = (0.78809211400448664, -1.7191203931087091) +description = Mellette city, SD +station = ('kabr', 0.0052565434402385086) +zone = ('sdz018', 0.0042143379240128015) + +[fips4611541900] +centroid = (0.78828263414563426, -1.7188754536014841) +description = Mellette township, SD +station = ('kabr', 0.0050383961294153861) +zone = ('sdz018', 0.0043145763728053748) + +[fips4611545740] +centroid = (0.78811012580236717, -1.7205337956435591) +description = Northville town, SD +station = ('kabr', 0.0055161119175687248) +zone = ('sdz018', 0.0047580061714453774) + +[fips4611545780] +centroid = (0.78801615727543972, -1.7213439425757497) +description = Northville township, SD +station = ('kabr', 0.0058312640730132457) +zone = ('sdz018', 0.0050549975849164177) + +[fips4611546860] +centroid = (0.78732003270328188, -1.7111786563199445) +description = Olean township, SD +station = ('kabr', 0.0074975102626630482) +zone = ('sdz018', 0.0047941083929167556) + +[fips4611551620] +centroid = (0.78442908678357104, -1.7133264759507409) +description = Prairie Center township, SD +station = ('kabr', 0.0093446162134559561) +zone = ('sdz018', 0.0022255611891878542) + +[fips4611553460] +centroid = (0.78318796569918525, -1.7194845211505525) +description = Redfield city, SD +station = ('khon', 0.0092604755356093423) +zone = ('sdz018', 0.0024176457141859837) + +[fips4611553500] +centroid = (0.78288546523322955, -1.7197736698477306) +description = Redfield township, SD +station = ('khon', 0.0090654005084905166) +zone = ('sdz018', 0.0027457460875182759) + +[fips4611554380] +centroid = (0.7827661545255632, -1.7109119001970694) +description = Richfield township, SD +station = ('khon', 0.0085215205099632048) +zone = ('sdz018', 0.004230011239985754) + +[fips4611560420] +centroid = (0.78428820380635, -1.7111820248054006) +description = Spring township, SD +station = ('khon', 0.0099363869379847404) +zone = ('sdz018', 0.0037410646241719174) + +[fips4611562300] +centroid = (0.78565785093685259, -1.7133255160196523) +description = Sumner township, SD +station = ('kabr', 0.0081939793903181828) +zone = ('sdz018', 0.0025948832245422993) + +[fips4611563260] +centroid = (0.78723597764650588, -1.7161010258626364) +description = Tetonka township, SD +station = ('kabr', 0.006119813512899747) +zone = ('sdz018', 0.0029296002020136875) + +[fips4611563420] +centroid = (0.78436693560890736, -1.7197304554954513) +description = Three Rivers township, SD +station = ('kabr', 0.0090002531010084808) +zone = ('sdz018', 0.0023107509586416716) + +[fips4611564300] +centroid = (0.78082925793487012, -1.7193052060232028) +description = Tulare town, SD +station = ('khon', 0.007078903255606484) +zone = ('sdz018', 0.0040275471792728989) + +[fips4611564340] +centroid = (0.78143942504136732, -1.7194725132852988) +description = Tulare township, SD +station = ('khon', 0.007672391159272012) +zone = ('sdz018', 0.0035812215652874821) + +[fips4611564540] +centroid = (0.78625271150580978, -1.7121226350991781) +description = Turton town, SD +station = ('kabr', 0.0080238089766337187) +zone = ('sdz018', 0.0036306486055536413) + +[fips4611564580] +centroid = (0.78579649989263101, -1.7111752005680252) +description = Turton township, SD +station = ('kabr', 0.0087557915272550788) +zone = ('sdz018', 0.0040244587080911082) + +[fips4611565500] +centroid = (0.77973179490121602, -1.7110898714208953) +description = Union township, SD +station = ('khon', 0.0056451091472070102) +zone = ('sdz019', 0.0049820411411656976) + +[fips4611660] +centroid = (0.76619233341569992, -1.69170959578041) +description = Chester CDP, SD +station = ('kmds', 0.0028411366798143153) +zone = ('sdz055', 0.0033133226608837666) + +[fips46117] +centroid = (0.77519753422428983, -1.7584046129784479) +description = Stanley County, SD +station = ('kpir', 0.0058360426253904413) +zone = ('sdz033', 0.00017479088271740782) + +[fips4611722260] +centroid = (0.77436361590768699, -1.7520055552622285) +description = Fort Pierre city, SD +station = ('kpir', 0.0012668885369920447) +zone = ('sdz035', 0.0048346682269741542) + +[fips4611739198] +centroid = (0.77197534226584308, -1.7458344724529045) +description = Lower Brule UT, SD +station = ('kpir', 0.0041436653785773304) +zone = ('sdz035', 0.0027891920540421798) + +[fips4611745727] +centroid = (0.77760649001777005, -1.7600442101843563) +description = North Stanley UT, SD +station = ('kpir', 0.0075787979170286778) +zone = ('sdz033', 0.0028038141904638898) + +[fips4611759945] +centroid = (0.77261156713807244, -1.7566052308795193) +description = South Stanley UT, SD +station = ('kpir', 0.0049605783382014193) +zone = ('sdz033', 0.0027667331870090397) + +[fips46119] +centroid = (0.78055182039697302, -1.7476225971781576) +description = Sully County, SD +station = ('kpir', 0.0062109543944754058) +zone = ('sdz034', 0.00011953221302785453) + +[fips4611900460] +centroid = (0.78259095837524817, -1.7466099222395652) +description = Agar town, SD +station = ('kpir', 0.0083724243124522115) +zone = ('sdz034', 0.0022779766567927553) + +[fips4611917950] +centroid = (0.78088692361335599, -1.7435914800179966) +description = East Sully UT, SD +station = ('kpir', 0.0078583662980039031) +zone = ('sdz034', 0.0029095100761153503) + +[fips4611947180] +centroid = (0.78024012204585935, -1.7465101766728139) +description = Onida city, SD +station = ('kpir', 0.0062137950739318774) +zone = ('sdz034', 0.00082334570553854909) + +[fips4611970630] +centroid = (0.78041657483323601, -1.7511744643790137) +description = West Sully UT, SD +station = ('kpir', 0.0058167531614822165) +zone = ('sdz034', 0.0025141261401109274) + +[fips4612020] +centroid = (0.80034898538258958, -1.694776331262382) +description = Claire City town, SD +station = ('k8d3', 0.0036239680569537035) +zone = ('sdz008', 0.0044018437188867521) + +[fips46121] +centroid = (0.75412486516802335, -1.7578468232028028) +description = Todd County, SD +station = ('kvtn', 0.0063305476015021941) +zone = ('sdz047', 0.00025826867869104328) + +[fips4612100] +centroid = (0.79711663560789614, -1.710695235023727) +description = Claremont town, SD +station = ('kabr', 0.0062411641207970291) +zone = ('sdz007', 0.0053048218654710389) + +[fips4612117955] +centroid = (0.75388235166845874, -1.7537309528541649) +description = East Todd UT, SD +station = ('kvtn', 0.0057845078587596506) +zone = ('sdz047', 0.0030158992950827814) + +[fips4612142940] +centroid = (0.75583705061752227, -1.7568642726471004) +description = Mission city, SD +station = ('kvtn', 0.0078017272774575132) +zone = ('sdz047', 0.0021012111009176501) + +[fips4612157140] +centroid = (0.75298050513736825, -1.7610858401352392) +description = St. Francis town, SD +station = ('kvtn', 0.0065931232948884186) +zone = ('sdz047', 0.0025090010810427982) + +[fips4612170635] +centroid = (0.75386933151223889, -1.7623693552671558) +description = West Todd UT, SD +station = ('kvtn', 0.0078822451486713681) +zone = ('sdz047', 0.0032819183282276083) + +[fips4612180] +centroid = (0.78332743495971213, -1.7057944377505894) +description = Clark city, SD +station = ('katy', 0.0072385479224311676) +zone = ('sdz019', 0.00040947468291619533) + +[fips46123] +centroid = (0.75659550089726901, -1.7431688659929185) +description = Tripp County, SD +station = ('kicr', 0.00067428394763432498) +zone = ('sdz049', 0.00011924329667131407) + +[fips4612303620] +centroid = (0.75862519664429073, -1.7444467262580585) +description = Banner township, SD +station = ('kicr', 0.0019161125452244921) +zone = ('sdz049', 0.0022547345929557526) + +[fips4612304140] +centroid = (0.75122706010435214, -1.7481505767301784) +description = Beaver Creek township, SD +station = ('kvtn', 0.0058299820421619146) +zone = ('sdz049', 0.0063708770199877637) + +[fips4612305700] +centroid = (0.75735958859049946, -1.7442676031169264) +description = Black township, SD +station = ('kicr', 0.0011448730770495122) +zone = ('sdz049', 0.0010864673833461873) + +[fips4612307900] +centroid = (0.75867177948202646, -1.7421942915918973) +description = Brunson township, SD +station = ('kicr', 0.0015363550375280834) +zone = ('sdz049', 0.0022898981243593959) + +[fips4612308420] +centroid = (0.75879983428924525, -1.7381584445894633) +description = Bull Creek township, SD +station = ('kicr', 0.0036809262882790518) +zone = ('sdz049', 0.0043742515791652375) + +[fips4612310180] +centroid = (0.75727333441886591, -1.748374258127114) +description = Carter township, SD +station = ('kicr', 0.0041165569971723104) +zone = ('sdz049', 0.0037599027225399002) + +[fips4612313300] +centroid = (0.75502360501304533, -1.7403877710963283) +description = Colome city, SD +station = ('kicr', 0.0027415423240805706) +zone = ('sdz049', 0.0026021641338701256) + +[fips4612313340] +centroid = (0.75573674654541012, -1.7401256924558486) +description = Colome township, SD +station = ('kicr', 0.0023716454353671082) +zone = ('sdz049', 0.0024445198591389987) + +[fips4612313780] +centroid = (0.76006591358193454, -1.7398734225657653) +description = Condon township, SD +station = ('kicr', 0.0035438788501610309) +zone = ('sdz049', 0.0043263950380660731) + +[fips4612315020] +centroid = (0.76002741161863552, -1.7480796814559625) +description = Curlew township, SD +station = ('kicr', 0.0048247355403245014) +zone = ('sdz049', 0.0049253978114860786) + +[fips4612316780] +centroid = (0.75407657190762067, -1.744268999380328) +description = Dog Ear township, SD +station = ('kicr', 0.0033059335034758696) +zone = ('sdz049', 0.0025506333562363001) + +[fips4612318860] +centroid = (0.75425847012226344, -1.7381585318559256) +description = Elliston township, SD +station = ('kicr', 0.0044187636303553738) +zone = ('sdz049', 0.00438055672206656) + +[fips4612323880] +centroid = (0.76297345758283186, -1.7397970644109906) +description = Gassman UT, SD +station = ('kicr', 0.0061645807023300494) +zone = ('sdz048', 0.0037718155444588027) + +[fips4612326140] +centroid = (0.76174191835603955, -1.7459390351283912) +description = Greenwood township, SD +station = ('kicr', 0.0051256337397281356) +zone = ('sdz048', 0.0049808513891846712) + +[fips4612329780] +centroid = (0.75272732767607387, -1.7482388380304519) +description = Holsclaw township, SD +station = ('kicr', 0.0060042253440233647) +zone = ('sdz049', 0.0052318081181235657) + +[fips4612330820] +centroid = (0.75125269899106384, -1.7465481201307522) +description = Huggins township, SD +station = ('kicr', 0.0065556154144359967) +zone = ('nez006', 0.0053950516009644385) + +[fips4612331260] +centroid = (0.75984046940245431, -1.7437836931285184) +description = Ideal township, SD +station = ('kicr', 0.002770087868315054) +zone = ('sdz049', 0.0033300109634148475) + +[fips4612332100] +centroid = (0.75571304497416814, -1.7382292875038017) +description = Irwin township, SD +station = ('kicr', 0.0035753464228079012) +zone = ('sdz049', 0.0037813652859529658) + +[fips4612332980] +centroid = (0.75734155933932645, -1.7463620331259047) +description = Jordan township, SD +station = ('kicr', 0.0026578827060885876) +zone = ('sdz049', 0.0023665229456846103) + +[fips4612333780] +centroid = (0.75155539144323724, -1.7407051592208034) +description = Keyapaha township, SD +station = ('kicr', 0.0058134151509778298) +zone = ('nez006', 0.0031905564599265207) + +[fips4612334060] +centroid = (0.75996953650063936, -1.7418740760340339) +description = King township, SD +station = ('kicr', 0.0028529889529716919) +zone = ('sdz049', 0.003594214576948146) + +[fips4612335060] +centroid = (0.75268917477862529, -1.7425272829598855) +description = Lake township, SD +station = ('kicr', 0.0044948299770403728) +zone = ('sdz049', 0.0038810436470129786) + +[fips4612335700] +centroid = (0.75729691381706044, -1.7422886266379676) +description = Lamro township, SD +station = ('kicr', 0.00032793169691947211) +zone = ('sdz049', 0.0010657194389823846) + +[fips4612337700] +centroid = (0.75280825859348888, -1.7380598334867257) +description = Lincoln township, SD +station = ('kicr', 0.0055321661726120339) +zone = ('nez006', 0.0047259138740239929) + +[fips4612338580] +centroid = (0.7616900820772553, -1.7420872505488725) +description = Lone Star township, SD +station = ('kicr', 0.0045307323526606828) +zone = ('sdz048', 0.0044557911914710731) + +[fips4612338740] +centroid = (0.75985020833968042, -1.7458705309552505) +description = Lone Tree township, SD +station = ('kicr', 0.0035182335167311092) +zone = ('sdz049', 0.0038083401297806436) + +[fips4612340100] +centroid = (0.75407535017714422, -1.7421984803821022) +description = McNeely township, SD +station = ('kicr', 0.00312899515416708) +zone = ('sdz049', 0.0025821349343044015) + +[fips4612342420] +centroid = (0.75127207214576108, -1.7445562631219136) +description = Millboro township, SD +station = ('kicr', 0.0060609713143641337) +zone = ('nez006', 0.0042465737383019127) + +[fips4612345100] +centroid = (0.75818209245379442, -1.7467594969564613) +description = New Witten town, SD +station = ('kicr', 0.0031061659483714748) +zone = ('sdz049', 0.003006034427283707) + +[fips4612348140] +centroid = (0.76169727283377353, -1.7482185398512511) +description = Pahapesto UT, SD +station = ('kicr', 0.0060282296744761169) +zone = ('sdz048', 0.0059744368991934329) + +[fips4612349940] +centroid = (0.75735405589677074, -1.7401323945201763) +description = Plainview township, SD +station = ('kicr', 0.0018819804360491188) +zone = ('sdz049', 0.0024493135103690819) + +[fips4612350980] +centroid = (0.7586189832721536, -1.7403062816735524) +description = Pleasant Valley township, SD +station = ('kicr', 0.002261817299405942) +zone = ('sdz049', 0.003019036200810257) + +[fips4612351100] +centroid = (0.75407154535937493, -1.7404721926722471) +description = Pleasant View township, SD +station = ('kicr', 0.0035115294918716864) +zone = ('sdz049', 0.0032078429118364803) + +[fips4612351980] +centroid = (0.75865362805780567, -1.7483531396431649) +description = Progressive UT, SD +station = ('kicr', 0.004353772073416271) +zone = ('sdz049', 0.0042387829581174239) + +[fips4612352820] +centroid = (0.75108242466923936, -1.7425035813886431) +description = Rames township, SD +station = ('kicr', 0.0061014603732117683) +zone = ('nez006', 0.0031451726635073189) + +[fips4612356100] +centroid = (0.75554167109491477, -1.7469019158234242) +description = Rosedale township, SD +station = ('kicr', 0.0034613772475728432) +zone = ('sdz049', 0.0027971410815643008) + +[fips4612356260] +centroid = (0.76168509043559463, -1.7398929004402175) +description = Roseland township, SD +station = ('kicr', 0.0049452451344237187) +zone = ('sdz048', 0.0048717229320963222) + +[fips4612361380] +centroid = (0.75420499323398249, -1.7465086582363647) +description = Star Prairie township, SD +station = ('kicr', 0.004062118587533658) +zone = ('sdz049', 0.0032924680094604036) + +[fips4612361500] +centroid = (0.76153431144151496, -1.7434367391265144) +description = Star Valley township, SD +station = ('kicr', 0.0043839949316293939) +zone = ('sdz048', 0.004625549700855879) + +[fips4612361660] +centroid = (0.75268338028550863, -1.7402982880655784) +description = Stewart township, SD +station = ('kicr', 0.0048297111067633763) +zone = ('nez006', 0.0043054037199947133) + +[fips4612362140] +centroid = (0.7573505826915593, -1.738058733929297) +description = Sully township, SD +station = ('kicr', 0.0033852650129342406) +zone = ('sdz049', 0.0039010502103014938) + +[fips4612363060] +centroid = (0.75586893778295627, -1.7483753576845429) +description = Taylor township, SD +station = ('kicr', 0.0043232987948488297) +zone = ('sdz049', 0.0037472008255477938) + +[fips4612366220] +centroid = (0.75104528406275695, -1.7379241515906756) +description = Valley township, SD +station = ('kicr', 0.0070593112288434966) +zone = ('nez006', 0.0031879108357767199) + +[fips4612369660] +centroid = (0.75571939797264531, -1.7444367953346147) +description = Weaver township, SD +station = ('kicr', 0.0019272016146194726) +zone = ('sdz049', 0.0011546765468613816) + +[fips4612371860] +centroid = (0.75255200935271116, -1.7445944160193625) +description = Willow Creek township, SD +station = ('kicr', 0.0048288936447036549) +zone = ('sdz049', 0.004086179564429423) + +[fips4612372060] +centroid = (0.75557615880093421, -1.7422273830345152) +description = Wilson township, SD +station = ('kicr', 0.0016439607545483583) +zone = ('sdz049', 0.001233528639261079) + +[fips4612372180] +centroid = (0.75707965523177212, -1.7427969363293185) +description = Winner city, SD +station = ('kicr', 0.00011980687714432928) +zone = ('sdz049', 0.0006632091266733129) + +[fips4612372380] +centroid = (0.75855922319856539, -1.7465153777539848) +description = Witten township, SD +station = ('kicr', 0.0030871568236866633) +zone = ('sdz049', 0.0030926430016778336) + +[fips4612372860] +centroid = (0.75270465584909052, -1.7464138868579815) +description = Wortman township, SD +station = ('kicr', 0.0052267214763027717) +zone = ('sdz049', 0.0044445556584735042) + +[fips4612372940] +centroid = (0.75395631872215829, -1.7484076288224122) +description = Wright township, SD +station = ('kicr', 0.0052532509428266242) +zone = ('sdz049', 0.0045190527815786646) + +[fips46125] +centroid = (0.75587888615969256, -1.6955905971716072) +description = Turner County, SD +station = ('kfsd', 0.0069781457212678092) +zone = ('sdz066', 4.1126743283396101e-05) + +[fips4612507700] +centroid = (0.75861133873002995, -1.6947580402118212) +description = Brothersfield township, SD +station = ('kfsd', 0.0049139452731263335) +zone = ('sdz066', 0.0027585568422166958) + +[fips4612511060] +centroid = (0.75252549780137323, -1.6922621146617141) +description = Centerville city, SD +station = ('kykn', 0.0064361719311151) +zone = ('sdz070', 0.003530505776816449) + +[fips4612511100] +centroid = (0.75283815608357552, -1.6928232205629377) +description = Centerville township, SD +station = ('kykn', 0.0062790438414257622) +zone = ('sdz066', 0.0036700630178716767) + +[fips4612511380] +centroid = (0.75698193424695304, -1.6927475954464486) +description = Chancellor town, SD +station = ('kfsd', 0.0047595364865215669) +zone = ('sdz066', 0.0023106006753937629) + +[fips4612511900] +centroid = (0.75572161454079534, -1.698904052396641) +description = Childstown township, SD +station = ('kykn', 0.0067072093019905198) +zone = ('sdz066', 0.0024365963842981155) + +[fips4612515380] +centroid = (0.75270341666532159, -1.694736555208729) +description = Daneville township, SD +station = ('kykn', 0.0051377971893719412) +zone = ('sdz066', 0.0032690708867093082) + +[fips4612515540] +centroid = (0.7550211964586776, -1.6928734860453951) +description = Davis town, SD +station = ('kfsd', 0.0064456174433782099) +zone = ('sdz066', 0.0021549146169699816) + +[fips4612516860] +centroid = (0.75906276814105822, -1.6996853664895888) +description = Dolton town, SD +station = ('kmds', 0.0099989142851463104) +zone = ('sdz061', 0.0032025374203189876) + +[fips4612516900] +centroid = (0.7585738316044045, -1.6990622141334566) +description = Dolton township, SD +station = ('kykn', 0.0095466414904927313) +zone = ('sdz066', 0.0036766646444902394) + +[fips4612524220] +centroid = (0.75726715595331395, -1.6926837163958257) +description = Germantown township, SD +station = ('kfsd', 0.0045111376526013793) +zone = ('sdz066', 0.002493933576641709) + +[fips4612529820] +centroid = (0.75862015264275251, -1.6926908896990513) +description = Home township, SD +station = ('kfsd', 0.0036035047134723498) +zone = ('sdz066', 0.0034174439070575858) + +[fips4612530980] +centroid = (0.75536675419727994, -1.6945303096510207) +description = Hurley city, SD +station = ('kfsd', 0.0068309110804963971) +zone = ('sdz066', 0.00093296918411657926) + +[fips4612531020] +centroid = (0.75595990434357019, -1.6947579529453585) +description = Hurley township, SD +station = ('kfsd', 0.0064928681567085833) +zone = ('sdz066', 0.00058989828542424147) + +[fips4612531940] +centroid = (0.75197414829066822, -1.6956963641242782) +description = Irene city, SD +station = ('kykn', 0.0041265128048382001) +zone = ('sdz070', 0.003761686719551076) + +[fips4612540] +centroid = (0.78114462147741293, -1.6875630250902296) +description = Clear Lake city, SD +station = ('kcnb', 0.0052967714845008904) +zone = ('sdz023', 0.00028311925592232042) + +[fips4612540860] +centroid = (0.75788428692352661, -1.6975168298005707) +description = Marion city, SD +station = ('kfsd', 0.007039092486418078) +zone = ('sdz066', 0.0024257573299151045) + +[fips4612540900] +centroid = (0.75722593127638183, -1.6968077199787781) +description = Marion township, SD +station = ('kfsd', 0.0068769000802229889) +zone = ('sdz066', 0.0015907727770821741) + +[fips4612542100] +centroid = (0.7557379508225941, -1.6926264521430678) +description = Middleton township, SD +station = ('kfsd', 0.0057334519404313635) +zone = ('sdz066', 0.0021468320024808345) + +[fips4612543380] +centroid = (0.75898318112716734, -1.6967509967780885) +description = Monroe town, SD +station = ('kfsd', 0.0061416527148847782) +zone = ('sdz066', 0.0031855961416879719) + +[fips4612543420] +centroid = (0.75860161724609632, -1.6968303918057615) +description = Monroe township, SD +station = ('kfsd', 0.0063127400290920489) +zone = ('sdz066', 0.0028382997921539629) + +[fips4612545980] +centroid = (0.75572644910282349, -1.6968194136847665) +description = Norway township, SD +station = ('kykn', 0.007003350300104641) +zone = ('sdz066', 0.00093131741788604258) + +[fips4612548380] +centroid = (0.75743376508370941, -1.6952996682385923) +description = Parker city, SD +station = ('kfsd', 0.0058371601945622128) +zone = ('sdz066', 0.0015300476528686687) + +[fips4612548420] +centroid = (0.75724495536522862, -1.6947343735471641) +description = Parker township, SD +station = ('kfsd', 0.0056142467166108746) +zone = ('sdz066', 0.0014601548487586245) + +[fips4612556180] +centroid = (0.75723617635909102, -1.6989131979219216) +description = Rosefield township, SD +station = ('kykn', 0.0082171111512145852) +zone = ('sdz066', 0.0027687176704369737) + +[fips4612557420] +centroid = (0.75420642440396901, -1.6988903515620128) +description = Salem township, SD +station = ('kykn', 0.0051997631386984898) +zone = ('sdz066', 0.0029634556631398744) + +[fips4612561140] +centroid = (0.75421193964440536, -1.6968092035086422) +description = Spring Valley township, SD +station = ('kykn', 0.0055781480103614207) +zone = ('sdz066', 0.0019295345285539889) + +[fips4612562580] +centroid = (0.75434353747000571, -1.6949183836102018) +description = Swan Lake township, SD +station = ('kykn', 0.0063368378540814398) +zone = ('sdz066', 0.0016418021341054894) + +[fips4612564500] +centroid = (0.75435880910096065, -1.6928359440131848) +description = Turner township, SD +station = ('kfsd', 0.0070220561264961864) +zone = ('sdz066', 0.00252552268066369) + +[fips4612567020] +centroid = (0.75348295052243242, -1.6943630896553872) +description = Viborg city, SD +station = ('kykn', 0.0058948913327082301) +zone = ('sdz066', 0.0025862056810090385) + +[fips46127] +centroid = (0.74754382197069835, -1.6868751908320185) +description = Union County, SD +station = ('korc', 0.0079263331622572326) +zone = ('sdz071', 7.1145587502987934e-05) + +[fips4612700700] +centroid = (0.75089438289562949, -1.6864798213965642) +description = Alcester city, SD +station = ('korc', 0.0072005077751253511) +zone = ('sdz071', 0.0033470542590773303) + +[fips4612700740] +centroid = (0.75128702961745064, -1.6863715760763556) +description = Alcester township, SD +station = ('klrj', 0.0071960792503096924) +zone = ('sdz071', 0.0037460861685267095) + +[fips4612704980] +centroid = (0.75183640690610087, -1.6891221102577434) +description = Beresford city, SD +station = ('kykn', 0.0081997594729031602) +zone = ('sdz067', 0.003598540809511332) + +[fips4612705380] +centroid = (0.74214091092505463, -1.6843095219250019) +description = Big Sioux township, SD +station = ('ksux', 0.0028681704172122593) +zone = ('nez014', 0.002407387013114532) + +[fips4612705460] +centroid = (0.74976496288337147, -1.6864964194777508) +description = Big Springs township, SD +station = ('korc', 0.0071961372153981342) +zone = ('sdz071', 0.0022254425103131687) + +[fips4612707860] +centroid = (0.74663565734771564, -1.6885569900992403) +description = Brule township, SD +station = ('ksux', 0.0083408812333852396) +zone = ('sdz071', 0.0014922233934073952) + +[fips4612711980] +centroid = (0.74333597277048014, -1.6869175325196719) +description = Civil Bend township, SD +station = ('ksux', 0.0050081349697703188) +zone = ('nez014', 0.0036543884693009203) + +[fips4612718620] +centroid = (0.74493551467005548, -1.6873863105034652) +description = Elk Point city, SD +station = ('ksux', 0.0064559930736281714) +zone = ('sdz071', 0.0026488287476391786) + +[fips4612718660] +centroid = (0.74524777152652977, -1.6876042846737467) +description = Elk Point township, SD +station = ('ksux', 0.0068026832552545297) +zone = ('sdz071', 0.0023653381887102144) + +[fips4612719500] +centroid = (0.74967766151418669, -1.688541910454503) +description = Emmet township, SD +station = ('kykn', 0.008164849648221683) +zone = ('sdz071', 0.002405906481230174) + +[fips4612732700] +centroid = (0.74358518833437248, -1.6853944884012115) +description = Jefferson city, SD +station = ('ksux', 0.0045164087459329712) +zone = ('nez014', 0.0037209628466563253) + +[fips4612732740] +centroid = (0.74321612101074574, -1.6852331676184498) +description = Jefferson township, SD +station = ('ksux', 0.0041405532007403141) +zone = ('nez014', 0.0033533756124646081) + +[fips4612745700] +centroid = (0.74242494580752427, -1.6842390280765136) +description = North Sioux City city, SD +station = ('ksux', 0.003085138273190356) +zone = ('nez014', 0.0026932147642758941) + +[fips4612751540] +centroid = (0.75109771375348677, -1.6883468524573002) +description = Prairie township, SD +station = ('kykn', 0.0085296507999293534) +zone = ('sdz071', 0.0036729356742220428) + +[fips4612754760] +centroid = (0.74661076895258216, -1.6868288697936704) +description = Richland UT, SD +station = ('ksux', 0.0076776813650782354) +zone = ('sdz071', 0.0009610105266860344) + +[fips4612759140] +centroid = (0.74826307215544519, -1.6863501957930187) +description = Sioux Valley township, SD +station = ('korc', 0.007341206605564205) +zone = ('sdz071', 0.00083062499592609406) + +[fips4612760140] +centroid = (0.74815697359021649, -1.6884813824360438) +description = Spink township, SD +station = ('kykn', 0.0082369474596360771) +zone = ('sdz071', 0.0012574359827783545) + +[fips4612767580] +centroid = (0.7506796375844641, -1.6848107455795895) +description = Virginia township, SD +station = ('klrj', 0.0059396062889225465) +zone = ('sdz071', 0.0034908251423600785) + +[fips46129] +centroid = (0.79286127854543864, -1.7458154309107652) +description = Walworth County, SD +station = ('kmbg', 0.0052149290132322253) +zone = ('sdz009', 6.0888985502699572e-05) + +[fips4612900540] +centroid = (0.79117565700715509, -1.7474386743815824) +description = Akaska town, SD +station = ('kmbg', 0.005265780974651595) +zone = ('sdz009', 0.0020433714629264151) + +[fips4612917960] +centroid = (0.79260785673804912, -1.7433004812718114) +description = East Walworth UT, SD +station = ('kmbg', 0.0069452923706365436) +zone = ('sdz009', 0.0018346965854578122) + +[fips4612924620] +centroid = (0.79470066359082303, -1.7500611537557516) +description = Glenham town, SD +station = ('kmbg', 0.001803796564480662) +zone = ('sdz009', 0.0034392605672198999) + +[fips4612932460] +centroid = (0.79419146378155359, -1.7433026105734988) +description = Java town, SD +station = ('kmbg', 0.0065641919373552451) +zone = ('sdz009', 0.0022212029681876926) + +[fips4612939260] +centroid = (0.79090614326406206, -1.7450003272434988) +description = Lowry town, SD +station = ('kmbg', 0.006722420268132352) +zone = ('sdz009', 0.0020888602336979621) + +[fips4612943180] +centroid = (0.79484173855426166, -1.7529313477106563) +description = Mobridge city, SD +station = ('kmbg', 0.00027862403514367556) +zone = ('sdz004', 0.0061682061020308003) + +[fips4612958140] +centroid = (0.79422581186123287, -1.7459037096643311) +description = Selby city, SD +station = ('kmbg', 0.004755211448409861) +zone = ('sdz009', 0.0013245756598172455) + +[fips4612970640] +centroid = (0.79337590632868171, -1.7490403455828452) +description = West Walworth UT, SD +station = ('kmbg', 0.0029763712107104064) +zone = ('sdz009', 0.002267021719206177) + +[fips4613220] +centroid = (0.76765642031202785, -1.6897360647287176) +description = Colman city, SD +station = ('kmds', 0.0033906105823240402) +zone = ('sdz056', 0.0019264281999759015) + +[fips4613300] +centroid = (0.75502360501304533, -1.7403877710963283) +description = Colome city, SD +station = ('kicr', 0.0027415423240805706) +zone = ('sdz049', 0.0026021641338701256) + +[fips4613355] +centroid = (0.76819085758228112, -1.8031753626182936) +description = Colonial Pine Hills CDP, SD +station = ('krap', 0.0033756097504408023) +zone = ('sdz026', 0.0011701797142056186) + +[fips4613380] +centroid = (0.7642360811236022, -1.6917223715905347) +description = Colton city, SD +station = ('kfsd', 0.0042162036372208221) +zone = ('sdz062', 0.0026272394444812053) + +[fips4613420] +centroid = (0.79612886651772985, -1.7158443577428382) +description = Columbia city, SD +station = ('kabr', 0.0031552978343545811) +zone = ('sdz006', 0.00066401138999634907) + +[fips46135] +centroid = (0.750606892261241, -1.699747168598402) +description = Yankton County, SD +station = ('kykn', 0.0015710564144598548) +zone = ('sdz069', 9.1298182825656977e-05) + +[fips4613523900] +centroid = (0.74855593840392998, -1.6959918309133484) +description = Gayville town, SD +station = ('kykn', 0.0027295710211535326) +zone = ('sdz070', 0.0025636253009549258) + +[fips4613523940] +centroid = (0.74803281086722961, -1.6966336408391842) +description = Gayville township, SD +station = ('kykn', 0.0024340855738896397) +zone = ('sdz070', 0.0031481500906440367) + +[fips4613531940] +centroid = (0.75196681790780995, -1.6957883604291508) +description = Irene city, SD +station = ('kykn', 0.0040742655380326025) +zone = ('sdz070', 0.0037975559740115478) + +[fips4613532380] +centroid = (0.75281019590895859, -1.7011442523047458) +description = Jamesville township, SD +station = ('kykn', 0.0039260244496046219) +zone = ('sdz069', 0.0023568769431057336) + +[fips4613536540] +centroid = (0.75116532780870915, -1.7032775333428736) +description = Lesterville town, SD +station = ('kykn', 0.003396284569546648) +zone = ('sdz069', 0.0025526163768234602) + +[fips4613540820] +centroid = (0.7513058966266648, -1.696976388597691) +description = Marindahl township, SD +station = ('kykn', 0.0030001776705446312) +zone = ('sdz069', 0.0022068029595414748) + +[fips4613541540] +centroid = (0.75279525589056151, -1.6990712025791046) +description = Mayfield township, SD +station = ('kykn', 0.0037826732140837978) +zone = ('sdz069', 0.0022222505253952978) + +[fips4613542980] +centroid = (0.74910852709840392, -1.6978397680720674) +description = Mission Hill town, SD +station = ('kykn', 0.0013347595734279508) +zone = ('sdz069', 0.0021339162680462558) + +[fips4613543020] +centroid = (0.74955023502549856, -1.6988364732480039) +description = Mission Hill township, SD +station = ('kykn', 0.00079161753152131122) +zone = ('sdz069', 0.0013286467373984196) + +[fips4613559858] +centroid = (0.74846256328894822, -1.6987274599829243) +description = Southeast Yankton UT, SD +station = ('kykn', 0.00089252213271787313) +zone = ('sdz069', 0.0023375350825701195) + +[fips4613564460] +centroid = (0.75282387929029426, -1.6966841157611519) +description = Turkey Valley township, SD +station = ('kykn', 0.0043671169357499626) +zone = ('sdz069', 0.0031792809087249933) + +[fips4613565780] +centroid = (0.75016144932954698, -1.7016377441507473) +description = Utica town, SD +station = ('kykn', 0.0018330673862658469) +zone = ('sdz069', 0.0013897865118467239) + +[fips4613565820] +centroid = (0.74960873846202536, -1.7010321323535977) +description = Utica township, SD +station = ('kykn', 0.0011559638346379084) +zone = ('sdz069', 0.0013487290025956298) + +[fips4613567780] +centroid = (0.74976937856637904, -1.6961316492397256) +description = Volin town, SD +station = ('kykn', 0.0026847311377838231) +zone = ('sdz070', 0.0027357263475256198) + +[fips4613567820] +centroid = (0.74970373673321145, -1.6966766981118309) +description = Volin township, SD +station = ('kykn', 0.0022834493534952798) +zone = ('sdz070', 0.0031052945912189256) + +[fips4613568540] +centroid = (0.75117717859433009, -1.6988832655252497) +description = Walshtown township, SD +station = ('kykn', 0.0022141691055946595) +zone = ('sdz069', 0.00088731238020387426) + +[fips4613570650] +centroid = (0.75057786743578037, -1.7024890633999925) +description = West Yankton UT, SD +station = ('kykn', 0.0025808630296701241) +zone = ('sdz069', 0.0019251830839846901) + +[fips4613573060] +centroid = (0.74856737031053044, -1.6998230555142786) +description = Yankton city, SD +station = ('kykn', 0.00048474854149092942) +zone = ('sdz069', 0.0020814465464458905) + +[fips46137] +centroid = (0.78507817473238761, -1.7744627242009319) +description = Ziebach County, SD +station = ('kd07', 0.0043811400552206357) +zone = ('sdz014', 4.3946588874031442e-05) + +[fips4613700] +centroid = (0.78814358376412785, -1.7120884964590088) +description = Conde city, SD +station = ('kabr', 0.0064534014562683357) +zone = ('sdz018', 0.0049198669401599648) + +[fips4613717420] +centroid = (0.78626173485804252, -1.7732774885591951) +description = Dupree city, SD +station = ('kd07', 0.0051300184138472768) +zone = ('sdz014', 0.0014429585131105838) + +[fips4613717425] +centroid = (0.78621340669105477, -1.7729097302325074) +description = Dupree UT, SD +station = ('kd07', 0.0053873199330281571) +zone = ('sdz014', 0.0015655260465642282) + +[fips4613717620] +centroid = (0.78518743234356247, -1.7667029205333951) +description = Eagle Butte city, SD +station = ('kd07', 0.0098051324657488243) +zone = ('sdz014', 0.0054501982094615035) + +[fips4613745810] +centroid = (0.79043076793569644, -1.7762532225739678) +description = North Ziebach UT, SD +station = ('kd07', 0.0053749371268760849) +zone = ('sdz014', 0.0055269393766531382) + +[fips4613759975] +centroid = (0.7818021917263942, -1.7733887358457172) +description = South Ziebach UT, SD +station = ('kd07', 0.0065578663594300091) +zone = ('sdz014', 0.0033362260050218261) + +[fips4613840] +centroid = (0.76054998064997514, -1.7663808898331095) +description = Corn Creek CDP, SD +station = ('kphp', 0.009641249660369328) +zone = ('sdz043', 0.0057131331524273802) + +[fips4613940] +centroid = (0.79124894338244633, -1.6888605377627472) +description = Corona town, SD +station = ('kvvv', 0.0042061963705068411) +zone = ('sdz021', 0.0028490882009127448) + +[fips4613980] +centroid = (0.75786006175350884, -1.7175340109916939) +description = Corsica city, SD +station = ('kmhe', 0.0076492801401085555) +zone = ('sdz064', 0.00080530488030260302) + +[fips4614220] +centroid = (0.76734274973885952, -1.7785320117118342) +description = Cottonwood town, SD +station = ('kphp', 0.0040722438412511431) +zone = ('sdz043', 0.0058606194698177638) + +[fips4614320] +centroid = (0.77761069626126733, -1.7536255524206368) +description = Cow Creek CDP, SD +station = ('kpir', 0.0038173811267708021) +zone = ('sdz033', 0.0040776037532839786) + +[fips4614580] +centroid = (0.78835492568325183, -1.7269624192373074) +description = Cresbard town, SD +station = ('kabr', 0.0081524062938261813) +zone = ('sdz017', 0.0029780258829449537) + +[fips4614660] +centroid = (0.7873889557554431, -1.7064226166549672) +description = Crocker CDP, SD +station = ('kabr', 0.0098631813302441848) +zone = ('sdz019', 0.0044946961469321612) + +[fips4614740] +centroid = (0.76199769635791936, -1.6896452727010289) +description = Crooks city, SD +station = ('kfsd', 0.0015237040745987676) +zone = ('sdz062', 0.00034717749619729983) + +[fips4615140] +centroid = (0.76387357623796281, -1.8081547520676482) +description = Custer city, SD +station = ('kcut', 0.00062120441687353708) +zone = ('sdz029', 0.002135855430960649) + +[fips4615250] +centroid = (0.74159868948633767, -1.6839819236244025) +description = Dakota Dunes CDP, SD +station = ('ksux', 0.0022833459062231599) +zone = ('nez014', 0.0020144128790383262) + +[fips4615300] +centroid = (0.75464261709062741, -1.7369081605265044) +description = Dallas town, SD +station = ('kicr', 0.0049273524768373902) +zone = ('sdz050', 0.0042956067760636521) + +[fips4615420] +centroid = (0.75120234624214388, -1.7136745120568813) +description = Dante town, SD +station = ('konl', 0.011872407581482735) +zone = ('sdz068', 0.0039559361144195547) + +[fips4615540] +centroid = (0.7550211964586776, -1.6928734860453951) +description = Davis town, SD +station = ('kfsd', 0.0064456174433782099) +zone = ('sdz066', 0.0021549146169699816) + +[fips4615700] +centroid = (0.77460319725410831, -1.810325435511646) +description = Deadwood city, SD +station = ('kspf', 0.0019250846127772993) +zone = ('sdz024', 0.0020261088231807067) + +[fips4615980] +centroid = (0.76488747290703141, -1.6879880127630902) +description = Dell Rapids city, SD +station = ('kfsd', 0.0042384220362800991) +zone = ('sdz062', 0.0028015809231963632) + +[fips4616060] +centroid = (0.75514528936849434, -1.7132004108188696) +description = Delmont city, SD +station = ('kmhe', 0.0088712430619117683) +zone = ('sdz064', 0.0033661062333354684) + +[fips4616260] +centroid = (0.774684424877496, -1.7025632398932022) +description = De Smet city, SD +station = ('kmds', 0.0086817455633067739) +zone = ('sdz039', 0.00078122133452451228) + +[fips4616620] +centroid = (0.75879943286351736, -1.7102119184472646) +description = Dimock town, SD +station = ('kmhe', 0.0051053416310572414) +zone = ('sdz059', 0.0040078171953536849) + +[fips4616820] +centroid = (0.78355671886354661, -1.7121653782125594) +description = Doland city, SD +station = ('khon', 0.009074120291436949) +zone = ('sdz018', 0.00313960787675251) + +[fips4616860] +centroid = (0.75906276814105822, -1.6996853664895888) +description = Dolton town, SD +station = ('kmds', 0.0099989142851463104) +zone = ('sdz061', 0.0032025374203189876) + +[fips4617020] +centroid = (0.76665613721112491, -1.7547048116701929) +description = Draper town, SD +station = ('kpir', 0.0085889954176241543) +zone = ('sdz045', 0.0020064915665623227) + +[fips4617420] +centroid = (0.78626173485804252, -1.7732774885591951) +description = Dupree city, SD +station = ('kd07', 0.0051300184138472768) +zone = ('sdz014', 0.0014429585131105838) + +[fips4617620] +centroid = (0.7852367553482239, -1.7667551931444923) +description = Eagle Butte city, SD +station = ('kd07', 0.009764181583589885) +zone = ('sdz014', 0.0054144923460140541) + +[fips4618180] +centroid = (0.79616276081180359, -1.7002947307446301) +description = Eden town, SD +station = ('k8d3', 0.005395591140285508) +zone = ('sdz007', 0.0032992380153008798) + +[fips4618300] +centroid = (0.75569957103234264, -1.812132113086848) +description = Edgemont city, SD +station = ('kcut', 0.0080465390382309342) +zone = ('sdz027', 0.0025333828004937007) + +[fips4618460] +centroid = (0.76795043847781885, -1.686835187885563) +description = Egan city, SD +station = ('kpqn', 0.0041776844637039547) +zone = ('sdz056', 0.00047330657776280315) + +[fips4618620] +centroid = (0.74493551467005548, -1.6873863105034652) +description = Elk Point city, SD +station = ('ksux', 0.0064559930736281714) +zone = ('sdz071', 0.0026488287476391786) + +[fips4618700] +centroid = (0.77205213675293072, -1.6838788793853647) +description = Elkton city, SD +station = ('kpqn', 0.0048466440411610622) +zone = ('mnz071', 0.0040722190775280068) + +[fips4619420] +centroid = (0.76099891424017307, -1.703782474548768) +description = Emery city, SD +station = ('kmhe', 0.0059609266847635766) +zone = ('sdz060', 0.0024715368327553043) + +[fips4619860] +centroid = (0.77646249650625787, -1.7006637980682568) +description = Erwin town, SD +station = ('katy', 0.0080450862614324693) +zone = ('sdz039', 0.0021611174813639107) + +[fips4619980] +centroid = (0.77801133659106259, -1.691242929645012) +description = Estelline city, SD +station = ('kbkx', 0.0049436958572316846) +zone = ('sdz040', 0.0038675058646109347) + +[fips4620060] +centroid = (0.76002688801985985, -1.7101267463797674) +description = Ethan town, SD +station = ('kmhe', 0.003897623641217074) +zone = ('sdz059', 0.0030477405059547657) + +[fips4620180] +centroid = (0.79885711284456984, -1.7387079964110388) +description = Eureka city, SD +station = ('kmbg', 0.010449135134198847) +zone = ('ndz050', 0.0063335279653979051) + +[fips4620340] +centroid = (0.76248096057450399, -1.8013314920767314) +description = Fairburn town, SD +station = ('kcut', 0.0052103116527939686) +zone = ('sdz074', 0.00062979197716875573) + +[fips4620380] +centroid = (0.75098114321274612, -1.7259376840735841) +description = Fairfax town, SD +station = ('konl', 0.010146190292628135) +zone = ('nez007', 0.0027320089391732728) + +[fips4620780] +centroid = (0.75436659326942457, -1.6840230610348721) +description = Fairview town, SD +station = ('kfsd', 0.0071311679416774625) +zone = ('sdz067', 0.0031418261481422436) + +[fips4620980] +centroid = (0.78584803946544235, -1.7808701420442685) +description = Faith city, SD +station = ('kd07', 0.00027623254161706891) +zone = ('sdz014', 0.0046377859804660783) + +[fips4621060] +centroid = (0.76315046887556914, -1.7049955656453666) +description = Farmer town, SD +station = ('kmhe', 0.0044005130019753435) +zone = ('sdz060', 0.0015221526344077353) + +[fips4621260] +centroid = (0.78599428060346688, -1.7300878501420238) +description = Faulkton city, SD +station = ('kabr', 0.011349837080179779) +zone = ('sdz017', 0.00068424956831636711) + +[fips4621340] +centroid = (0.76806124943202791, -1.7067498309831313) +description = Fedora CDP, SD +station = ('kmhe', 0.0051912055268615535) +zone = ('sdz054', 0.0022671655274790333) + +[fips4621380] +centroid = (0.79123721476987285, -1.7120609726167051) +description = Ferney CDP, SD +station = ('kabr', 0.0044399331253705508) +zone = ('sdz006', 0.0054589444265717105) + +[fips4621540] +centroid = (0.76876350010986039, -1.6859538489731831) +description = Flandreau city, SD +station = ('kpqn', 0.0037018793516590386) +zone = ('sdz056', 0.0010126675144860567) + +[fips4621820] +centroid = (0.78635441184132349, -1.6986646106765599) +description = Florence town, SD +station = ('katy', 0.0034694315120239669) +zone = ('sdz020', 0.0021662018042496764) + +[fips4622100] +centroid = (0.76826377743842944, -1.7121698811620296) +description = Forestburg CDP, SD +station = ('kmhe', 0.0044709335416627822) +zone = ('sdz053', 0.00014237243727327343) + +[fips4622260] +centroid = (0.77436361590768699, -1.7520055552622285) +description = Fort Pierre city, SD +station = ('kpir', 0.0012668885369920447) +zone = ('sdz035', 0.0048346682269741542) + +[fips4622340] +centroid = (0.76894986636738827, -1.7351280294092255) +description = Fort Thompson CDP, SD +station = ('k9v9', 0.0052273254463759819) +zone = ('sdz051', 0.0026601110282815483) + +[fips4622580] +centroid = (0.78326299740372851, -1.7158199056800179) +description = Frankfort city, SD +station = ('khon', 0.0086790562455754238) +zone = ('sdz018', 0.0011499954410477955) + +[fips4622860] +centroid = (0.79991905842794586, -1.7192699503723123) +description = Frederick town, SD +station = ('kabr', 0.0067572478802399791) +zone = ('sdz006', 0.0046313959151081247) + +[fips4623020] +centroid = (0.75659895664918797, -1.7004649876131621) +description = Freeman city, SD +station = ('kykn', 0.0075846142993133423) +zone = ('sdz065', 0.0041354044677825372) + +[fips4623140] +centroid = (0.77962477131148378, -1.8098273709030044) +description = Fruitdale town, SD +station = ('kspf', 0.0034231074120424591) +zone = ('sdz025', 0.0030400198624761466) + +[fips4623220] +centroid = (0.76321207899816446, -1.7073269415535954) +description = Fulton town, SD +station = ('kmhe', 0.0027374371115953971) +zone = ('sdz060', 0.0010425276165312875) + +[fips4623421] +centroid = (0.76852966089667829, -1.7276738678002979) +description = Gann Valley CDP, SD +station = ('k9v9', 0.006223347615261215) +zone = ('sdz051', 0.0028174028006498512) + +[fips4623460] +centroid = (0.78468718607335586, -1.7030994748525849) +description = Garden City town, SD +station = ('katy', 0.0054180242352747316) +zone = ('sdz019', 0.0025509848191225927) + +[fips4623820] +centroid = (0.76296773290288522, -1.6843004462128917) +description = Garretson city, SD +station = ('klyv', 0.0039840966413667023) +zone = ('mnz098', 0.0032329481043814521) + +[fips4623860] +centroid = (0.78181812658246508, -1.6835043840877644) +description = Gary city, SD +station = ('kcnb', 0.0027329204015177967) +zone = ('sdz023', 0.0026756650511531636) + +[fips4623900] +centroid = (0.74855593840392998, -1.6959918309133484) +description = Gayville town, SD +station = ('kykn', 0.0027295710211535326) +zone = ('sdz070', 0.0025636253009549258) + +[fips4623980] +centroid = (0.7549114850618972, -1.7226021678868051) +description = Geddes city, SD +station = ('k9v9', 0.011901950184089629) +zone = ('sdz063', 0.0016064263054798387) + +[fips4624260] +centroid = (0.78550036987844507, -1.7445212518171187) +description = Gettysburg city, SD +station = ('kmbg', 0.011068969100373584) +zone = ('sdz016', 0.0010244908488442979) + +[fips4624620] +centroid = (0.79470066359082303, -1.7500611537557516) +description = Glenham town, SD +station = ('kmbg', 0.001803796564480662) +zone = ('sdz009', 0.0034392605672198999) + +[fips4624775] +centroid = (0.79527746000202204, -1.6939448215001467) +description = Goodwill CDP, SD +station = ('k8d3', 0.0019669525282761404) +zone = ('sdz008', 0.0017401440723636892) + +[fips4624820] +centroid = (0.78326037940985049, -1.6903461620220446) +description = Goodwin town, SD +station = ('katy', 0.0037339604822509234) +zone = ('sdz023', 0.0030441650830790156) + +[fips4625900] +centroid = (0.7881317329785068, -1.7677911682285985) +description = Green Grass CDP, SD +station = ('kmbg', 0.012691587809577539) +zone = ('sdz014', 0.0055916516329320484) + +[fips4626035] +centroid = (0.76862514786005487, -1.7996371613454805) +description = Green Valley CDP, SD +station = ('krap', 0.00079655632825648809) +zone = ('sdz026', 0.0015493914389979587) + +[fips4626180] +centroid = (0.75450688283469991, -1.7352204620464111) +description = Gregory city, SD +station = ('kicr', 0.0060720281844969968) +zone = ('sdz050', 0.0030633365350388473) + +[fips4626220] +centroid = (0.7935487113779216, -1.6997801902278498) +description = Grenville town, SD +station = ('k8d3', 0.0060715003946024077) +zone = ('sdz011', 0.0031809880018228492) + +[fips4626340] +centroid = (0.79328141420297871, -1.7121693226566688) +description = Groton city, SD +station = ('kabr', 0.0038763969983757608) +zone = ('sdz006', 0.0039079432091076085) + +[fips4626660] +centroid = (0.76085967187244896, -1.7399745294893334) +description = Hamill CDP, SD +station = ('kicr', 0.0041794148073831588) +zone = ('sdz049', 0.0049596816184185469) + +[fips4627260] +centroid = (0.75802405289002628, -1.6877889754151927) +description = Harrisburg city, SD +station = ('kfsd', 0.0027140999735370836) +zone = ('sdz067', 0.0026753142795709899) + +[fips4627300] +centroid = (0.75801619890839234, -1.719615508110915) +description = Harrison CDP, SD +station = ('kmhe', 0.0085546912935034348) +zone = ('sdz064', 0.0021753994931056897) + +[fips4627420] +centroid = (0.77708144261889256, -1.740778637582312) +description = Harrold town, SD +station = ('kpir', 0.0072060936763376536) +zone = ('sdz035', 0.0039682244620201949) + +[fips4627540] +centroid = (0.76132485447798293, -1.6919960392172475) +description = Hartford city, SD +station = ('kfsd', 0.0025400084345961679) +zone = ('sdz062', 0.002144137648705973) + +[fips4627820] +centroid = (0.77941458130966601, -1.6965367925189909) +description = Hayti town, SD +station = ('katy', 0.0042914998504589522) +zone = ('sdz022', 0.0003510061279997105) + +[fips4627940] +centroid = (0.7811783935984391, -1.6996189218049653) +description = Hazel town, SD +station = ('katy', 0.0037812725523170081) +zone = ('sdz022', 0.0028084852296271683) + +[fips4627980] +centroid = (0.80079437595440595, -1.713073647555297) +description = Hecla city, SD +station = ('k2d5', 0.0051516613747943129) +zone = ('sdz006', 0.0056525797425942027) + +[fips4628140] +centroid = (0.78331870831345218, -1.7010250637701272) +description = Henry town, SD +station = ('katy', 0.0038668376929990337) +zone = ('sdz020', 0.003773413538154437) + +[fips4628300] +centroid = (0.76514695100692542, -1.8010568819722228) +description = Hermosa town, SD +station = ('krap', 0.004086628105737216) +zone = ('sdz026', 0.0028354034176483948) + +[fips4628340] +centroid = (0.80001775679714604, -1.7466370795627264) +description = Herreid city, SD +station = ('kmbg', 0.0065237429570275491) +zone = ('sdz004', 0.0011952656302296706) + +[fips4628420] +centroid = (0.75249900370332801, -1.7311609134727348) +description = Herrick town, SD +station = ('kicr', 0.009628555644505812) +zone = ('sdz050', 0.0013509981720157996) + +[fips4628460] +centroid = (0.77452875896151063, -1.6970651385901547) +description = Hetland town, SD +station = ('kbkx', 0.0053892031198662016) +zone = ('sdz039', 0.0032068636200247515) + +[fips4628980] +centroid = (0.77704449399862774, -1.7355437493837578) +description = Highmore city, SD +station = ('kpir', 0.010787598287579872) +zone = ('sdz036', 0.000748051012356225) + +[fips4629100] +centroid = (0.76677448798770265, -1.8075941697652) +description = Hill City city, SD +station = ('kcut', 0.0035383572292070776) +zone = ('sdz028', 0.0019846614175861228) + +[fips4629340] +centroid = (0.7969516670869975, -1.7376612700987402) +description = Hillsview town, SD +station = ('kmbg', 0.01063304794690866) +zone = ('sdz005', 0.004517207018354368) + +[fips4629500] +centroid = (0.77892939723090415, -1.717547205680839) +description = Hitchcock town, SD +station = ('khon', 0.0048142670976245748) +zone = ('sdz038', 0.0040842041025350734) + +[fips4630140] +centroid = (0.79549990221518874, -1.7361425893034097) +description = Hosmer city, SD +station = ('kmbg', 0.011533853723979907) +zone = ('sdz005', 0.004491987028331642) + +[fips4630220] +centroid = (0.75801600692217463, -1.8061248468811162) +description = Hot Springs city, SD +station = ('kcut', 0.0055374808312673423) +zone = ('sdz027', 0.0024386108942135018) + +[fips4630300] +centroid = (0.78961515812294691, -1.7414462434744924) +description = Hoven town, SD +station = ('kmbg', 0.0095041139324209423) +zone = ('sdz016', 0.0038016181083839412) + +[fips4630460] +centroid = (0.76814982489156669, -1.7021259127425301) +description = Howard city, SD +station = ('kmhe', 0.0076966036833252425) +zone = ('sdz054', 0.001088817714034733) + +[fips4630740] +centroid = (0.75276228662099143, -1.683468116145908) +description = Hudson town, SD +station = ('korc', 0.0055825821639516196) +zone = ('iaz012', 0.0036346149666392725) + +[fips4630900] +centroid = (0.76174790483537391, -1.6942700112463784) +description = Humboldt town, SD +station = ('kfsd', 0.0042393381774984964) +zone = ('sdz062', 0.0036111637329617357) + +[fips4630980] +centroid = (0.75536675419727994, -1.6945303096510207) +description = Hurley city, SD +station = ('kfsd', 0.0068309110804963971) +zone = ('sdz066', 0.00093296918411657926) + +[fips4631060] +centroid = (0.77426896670235135, -1.7140945429946661) +description = Huron city, SD +station = ('khon', 0.00046495126083021562) +zone = ('sdz038', 0.0012426092327938664) + +[fips4631620] +centroid = (0.76318490422171092, -1.7799443321425481) +description = Interior town, SD +station = ('kphp', 0.0074142376258032683) +zone = ('sdz043', 0.0045181648638862896) + +[fips4631860] +centroid = (0.79313798304504979, -1.728399470983522) +description = Ipswich city, SD +station = ('kabr', 0.0075108973265231123) +zone = ('sdz010', 0.0023136943189294573) + +[fips4631940] +centroid = (0.75195250620794363, -1.6957197689895473) +description = Irene city, SD +station = ('kykn', 0.0040991071554254636) +zone = ('sdz070', 0.0037551785749024885) + +[fips4632020] +centroid = (0.77436522161059884, -1.7077965049355521) +description = Iroquois city, SD +station = ('khon', 0.0047955670621676978) +zone = ('sdz038', 0.0054078656773883169) + +[fips4632140] +centroid = (0.79227189831033273, -1.7703306397435428) +description = Isabel town, SD +station = ('kd07', 0.0095488414654413978) +zone = ('sdz003', 0.006203968719855955) + +[fips4632460] +centroid = (0.79419146378155359, -1.7433026105734988) +description = Java town, SD +station = ('kmbg', 0.0065641919373552451) +zone = ('sdz009', 0.0022212029681876926) + +[fips4632700] +centroid = (0.74358518833437248, -1.6853944884012115) +description = Jefferson city, SD +station = ('ksux', 0.0045164087459329712) +zone = ('nez014', 0.0037209628466563253) + +[fips4632820] +centroid = (0.76942080855945394, -1.8053334098785068) +description = Johnson Siding CDP, SD +station = ('krca', 0.0043862387435739721) +zone = ('sdz026', 0.0030687392975922889) + +[fips4633180] +centroid = (0.76492548617813982, -1.7716008554665592) +description = Kadoka city, SD +station = ('kphp', 0.0040701346131862097) +zone = ('sdz043', 0.0027875332215312383) + +[fips4633380] +centroid = (0.7538721414923345, -1.7077030600074004) +description = Kaylor CDP, SD +station = ('kykn', 0.0076103994752585126) +zone = ('sdz065', 0.002713215811187197) + +[fips4633580] +centroid = (0.7662602267236025, -1.74292071507987) +description = Kennebec town, SD +station = ('kicr', 0.0090794848091487763) +zone = ('sdz048', 0.00022731143369573707) + +[fips4633820] +centroid = (0.76612171739416424, -1.805135803700596) +description = Keystone town, SD +station = ('kcut', 0.0037068740699566192) +zone = ('sdz026', 0.0031492924930159529) + +[fips4633900] +centroid = (0.80078690594520752, -1.7054283898465685) +description = Kidder CDP, SD +station = ('kgwr', 0.0059417488369299587) +zone = ('sdz007', 0.002565522623662826) + +[fips4633980] +centroid = (0.76352681422217672, -1.7271241065392122) +description = Kimball city, SD +station = ('k9v9', 0.004548162307303657) +zone = ('sdz057', 0.0016433469167612938) + +[fips4634340] +centroid = (0.78345831720031922, -1.6913871985609816) +description = Kranzburg town, SD +station = ('katy', 0.0029817862128572173) +zone = ('sdz023', 0.0037395063450446839) + +[fips4634460] +centroid = (0.75790753470916317, -1.7833864704933313) +description = Kyle CDP, SD +station = ('kien', 0.0080609662837460242) +zone = ('sdz042', 0.0049585945768712445) + +[fips4634540] +centroid = (0.78625403795604132, -1.6872998992521988) +description = La Bolt town, SD +station = ('kvvv', 0.0054368170135358591) +zone = ('sdz021', 0.0024305801351635868) + +[fips4635100] +centroid = (0.75320593186355578, -1.7197899537696515) +description = Lake Andes city, SD +station = ('konl', 0.012168464352181023) +zone = ('sdz063', 0.0011225993153233193) + +[fips4635220] +centroid = (0.79804748951115478, -1.7001954564167767) +description = Lake City town, SD +station = ('k8d3', 0.0053473443486266132) +zone = ('sdz007', 0.0023245535322250579) + +[fips4635430] +centroid = (0.76723972295311427, -1.6935078957752026) +description = Lake Madison CDP, SD +station = ('kmds', 0.0012215548786453838) +zone = ('sdz055', 0.0016484429860668555) + +[fips4635460] +centroid = (0.77806868811028318, -1.6966335884793065) +description = Lake Norden city, SD +station = ('katy', 0.0056333769658496536) +zone = ('sdz022', 0.0016564296171832052) + +[fips4635480] +centroid = (0.77793621762005682, -1.6948618174891446) +description = Lake Poinsett CDP, SD +station = ('katy', 0.0057398028770896696) +zone = ('sdz022', 0.002026445476218241) + +[fips4635500] +centroid = (0.77425708101014523, -1.6995316727956582) +description = Lake Preston city, SD +station = ('kmds', 0.0070199523996873434) +zone = ('sdz039', 0.0014478611322071785) + +[fips4635780] +centroid = (0.76916117337992729, -1.7178336840242614) +description = Lane town, SD +station = ('khon', 0.0059740706609059452) +zone = ('sdz052', 0.0025736871767215027) + +[fips4635820] +centroid = (0.79591267258328546, -1.70745981346955) +description = Langford town, SD +station = ('kabr', 0.0076481509053594977) +zone = ('sdz007', 0.0039251801916534747) + +[fips4635940] +centroid = (0.78773091811578633, -1.7569609115277831) +description = La Plant CDP, SD +station = ('kmbg', 0.0078861716259560274) +zone = ('sdz015', 0.0025606619196750237) + +[fips4636220] +centroid = (0.77410171180013276, -1.8110781087515686) +description = Lead city, SD +station = ('kspf', 0.0022878491547577533) +zone = ('sdz024', 0.0013872225263375163) + +[fips4636260] +centroid = (0.78659867067014011, -1.7412518312491128) +description = Lebanon town, SD +station = ('kmbg', 0.011586607277367288) +zone = ('sdz016', 0.0023546413220537784) + +[fips4636340] +centroid = (0.80177776426814973, -1.783009601547948) +description = Lemmon city, SD +station = ('khei', 0.006110546250148857) +zone = ('ndz044', 0.0052639337129115685) + +[fips4636380] +centroid = (0.75660911446543455, -1.6911304780813059) +description = Lennox city, SD +station = ('kfsd', 0.0044574915813407412) +zone = ('sdz067', 0.0025246648628995776) + +[fips4636460] +centroid = (0.79798441331198766, -1.7268019885724641) +description = Leola city, SD +station = ('kabr', 0.0079382679911252554) +zone = ('sdz005', 0.0035367298344494156) + +[fips4636540] +centroid = (0.75116532780870915, -1.7032775333428736) +description = Lesterville town, SD +station = ('kykn', 0.003396284569546648) +zone = ('sdz069', 0.0025526163768234602) + +[fips4636620] +centroid = (0.76620448090729387, -1.7129797139349547) +description = Letcher town, SD +station = ('kmhe', 0.0027328908057233274) +zone = ('sdz053', 0.0022592331007667602) + +[fips4637140] +centroid = (0.7885702818596555, -1.7048983508060305) +description = Lily town, SD +station = ('katy', 0.0082137772065071727) +zone = ('sdz011', 0.0033685708412350486) + +[fips4637900] +centroid = (0.79730656233709818, -1.7592399275584523) +description = Little Eagle CDP, SD +station = ('kmbg', 0.00518580501879493) +zone = ('sdz003', 0.004896472241315745) + +[fips4638760] +centroid = (0.79732764591446226, -1.6957374666281628) +description = Long Hollow CDP, SD +station = ('k8d3', 0.0021575089087743867) +zone = ('sdz008', 0.0027577794876025691) + +[fips4638860] +centroid = (0.80034971842087543, -1.7314676376354803) +description = Long Lake town, SD +station = ('kabr', 0.011960557230168518) +zone = ('sdz005', 0.0015869050856240287) + +[fips4639020] +centroid = (0.76433252801806728, -1.7122283845985562) +description = Loomis CDP, SD +station = ('kmhe', 0.00099628943631665449) +zone = ('sdz059', 0.0021290050196175955) + +[fips4639180] +centroid = (0.76923875326517854, -1.7380643887960732) +description = Lower Brule CDP, SD +station = ('k9v9', 0.006330216644861642) +zone = ('sdz048', 0.0045441826875922452) + +[fips4639260] +centroid = (0.79090614326406206, -1.7450003272434988) +description = Lowry town, SD +station = ('kmbg', 0.006722420268132352) +zone = ('sdz009', 0.0020888602336979621) + +[fips4639940] +centroid = (0.80147341375318704, -1.7688660292484393) +description = McIntosh city, SD +station = ('kmbg', 0.013069317518881154) +zone = ('sdz003', 0.0041398872661236111) + +[fips4640020] +centroid = (0.79959304837696588, -1.7594783046276898) +description = McLaughlin city, SD +station = ('kmbg', 0.0066484606119278323) +zone = ('ndz045', 0.0059211929010707445) + +[fips4640220] +centroid = (0.76805336054380902, -1.6948626901537707) +description = Madison city, SD +station = ('kmds', 0.00043088521020699595) +zone = ('sdz055', 0.00038058928848866603) + +[fips4640550] +centroid = (0.75459381768474176, -1.7888142873874009) +description = Manderson-White Horse Creek CDP, SD +station = ('kien', 0.0035350148499674276) +zone = ('sdz042', 0.0019139486024601477) + +[fips4640580] +centroid = (0.78970005093776385, -1.7201642919876194) +description = Mansfield CDP, SD +station = ('kabr', 0.0039533926378464337) +zone = ('sdz018', 0.0059818409364165151) + +[fips4640860] +centroid = (0.75788428692352661, -1.6975168298005707) +description = Marion city, SD +station = ('kfsd', 0.007039092486418078) +zone = ('sdz066', 0.0024257573299151045) + +[fips4641100] +centroid = (0.75354658522696005, -1.7755602395944634) +description = Martin city, SD +station = ('kien', 0.010298857028344155) +zone = ('sdz044', 0.00093467293012790482) + +[fips4641180] +centroid = (0.75043029984752418, -1.7179310210366452) +description = Marty CDP, SD +station = ('konl', 0.0098000523998684006) +zone = ('sdz063', 0.0042016003815320653) + +[fips4641220] +centroid = (0.7899448682719411, -1.6914925989945095) +description = Marvin town, SD +station = ('katy', 0.0069245692424926859) +zone = ('sdz021', 0.0023830121957608696) + +[fips4641680] +centroid = (0.76137752851480822, -1.6877546971486836) +description = Meadow View Addition CDP, SD +station = ('kfsd', 0.00093642523523626456) +zone = ('sdz062', 0.0014398854436256298) + +[fips4641860] +centroid = (0.78809211400448664, -1.7191203931087091) +description = Mellette city, SD +station = ('kabr', 0.0052565434402385086) +zone = ('sdz018', 0.0042143379240128015) + +[fips4641980] +centroid = (0.7546557070600175, -1.7030589134007685) +description = Menno city, SD +station = ('kykn', 0.006142687010391769) +zone = ('sdz065', 0.0028015810855147) + +[fips4642140] +centroid = (0.76918522401701983, -1.7654955192101578) +description = Midland town, SD +station = ('kphp', 0.005587764195222035) +zone = ('sdz032', 0.0061925783102773305) + +[fips4642260] +centroid = (0.78922797428168445, -1.6865761635712744) +description = Milbank city, SD +station = ('kvvv', 0.0029778072166901722) +zone = ('sdz021', 0.0018454578245361251) + +[fips4642460] +centroid = (0.77702876858206738, -1.7276470944495721) +description = Miller city, SD +station = ('khon', 0.0096886511151801184) +zone = ('sdz037', 0.00052756641057303264) + +[fips4642620] +centroid = (0.75790491671528526, -1.707122162072459) +description = Milltown CDP, SD +station = ('kmhe', 0.0065967044548057175) +zone = ('sdz065', 0.0017247592293057625) + +[fips4642940] +centroid = (0.75583705061752227, -1.7568642726471004) +description = Mission city, SD +station = ('kvtn', 0.0078017272774575132) +zone = ('sdz047', 0.0021012111009176501) + +[fips4642980] +centroid = (0.74910852709840392, -1.6978397680720674) +description = Mission Hill town, SD +station = ('kykn', 0.0013347595734279508) +zone = ('sdz069', 0.0021339162680462558) + +[fips4643100] +centroid = (0.7632300733427525, -1.7110050833258335) +description = Mitchell city, SD +station = ('kmhe', 0.00064236277961765998) +zone = ('sdz059', 0.0017146526705591266) + +[fips4643180] +centroid = (0.79484173855426166, -1.7529313477106563) +description = Mobridge city, SD +station = ('kmbg', 0.00027862403514367556) +zone = ('sdz004', 0.0061682061020308003) + +[fips4643380] +centroid = (0.75898318112716734, -1.6967509967780885) +description = Monroe town, SD +station = ('kfsd', 0.0061416527148847782) +zone = ('sdz066', 0.0031855961416879719) + +[fips4643500] +centroid = (0.76270979069273304, -1.696186609657871) +description = Montrose city, SD +station = ('kmds', 0.0057364271549935134) +zone = ('sdz061', 0.002366483952880305) + +[fips4643780] +centroid = (0.7743371741695193, -1.7136251541456347) +description = Morningside CDP, SD +station = ('khon', 0.00068959474392033524) +zone = ('sdz038', 0.0014506604821562239) + +[fips4643860] +centroid = (0.80178020772910252, -1.7753284947763837) +description = Morristown town, SD +station = ('kd07', 0.016215083511349714) +zone = ('ndz042', 0.0073869886700504003) + +[fips4644020] +centroid = (0.79807239535958074, -1.7465306842915249) +description = Mound City town, SD +station = ('kmbg', 0.0052413539032179135) +zone = ('sdz004', 0.00081130742615565009) + +[fips4644100] +centroid = (0.76293115080176355, -1.7149771210908147) +description = Mount Vernon city, SD +station = ('kmhe', 0.0030206179599274676) +zone = ('sdz059', 0.0015919757110786246) + +[fips4644260] +centroid = (0.76601385604639105, -1.7577935208474471) +description = Murdo city, SD +station = ('kpir', 0.010171017024105005) +zone = ('sdz045', 0.0012776951330901146) + +[fips4644620] +centroid = (0.7814126167840566, -1.7019235767223462) +description = Naples town, SD +station = ('katy', 0.0050206886893901775) +zone = ('sdz019', 0.0030764856962165223) + +[fips4644820] +centroid = (0.80036570563682374, -1.6914859143834744) +description = New Effington town, SD +station = ('k8d3', 0.0034343139187907939) +zone = ('sdz008', 0.0039969351768199251) + +[fips4644860] +centroid = (0.78046694503544856, -1.8049902606942723) +description = Newell city, SD +station = ('kspf', 0.0061051816097426196) +zone = ('sdz012', 0.0034699827468964032) + +[fips4644940] +centroid = (0.75797336852854835, -1.7210225925538727) +description = New Holland CDP, SD +station = ('kmhe', 0.0093506851757788455) +zone = ('sdz063', 0.0038611423741128129) + +[fips4645060] +centroid = (0.76967456197940143, -1.7948291632286715) +description = New Underwood city, SD +station = ('krap', 0.0028152719792852937) +zone = ('sdz026', 0.0051478731177161934) + +[fips4645100] +centroid = (0.75818209245379442, -1.7467594969564613) +description = New Witten town, SD +station = ('kicr', 0.0031061659483714748) +zone = ('sdz049', 0.003006034427283707) + +[fips4645180] +centroid = (0.77969175704817517, -1.80735549598999) +description = Nisland town, SD +station = ('kspf', 0.0043707174710694973) +zone = ('sdz025', 0.0039966297232224626) + +[fips4645420] +centroid = (0.75873126030293436, -1.7661465619277368) +description = Norris CDP, SD +station = ('kphp', 0.011317497463253513) +zone = ('sdz043', 0.0067321000505910734) + +[fips4645548] +centroid = (0.78575628750666504, -1.7668190023819452) +description = North Eagle Butte CDP, SD +station = ('kmbg', 0.01361832263835739) +zone = ('sdz014', 0.0054101168786610705) + +[fips4645700] +centroid = (0.74242494580752427, -1.6842390280765136) +description = North Sioux City city, SD +station = ('ksux', 0.003085138273190356) +zone = ('nez014', 0.0026932147642758941) + +[fips4645715] +centroid = (0.77695061273816302, -1.8136192557825948) +description = North Spearfish CDP, SD +station = ('kspf', 0.0017086714011676021) +zone = ('sdz025', 0.0017966262862158713) + +[fips4645740] +centroid = (0.78811012580236717, -1.7205337956435591) +description = Northville town, SD +station = ('kabr', 0.0055161119175687248) +zone = ('sdz018', 0.0047580061714453774) + +[fips4646060] +centroid = (0.77073481459340298, -1.6933078635896315) +description = Nunda town, SD +station = ('kmds', 0.0025563833783845504) +zone = ('sdz055', 0.0027731405094969562) + +[fips4646180] +centroid = (0.76453303144253637, -1.7342652957066722) +description = Oacoma town, SD +station = ('k9v9', 0.00090778104589572025) +zone = ('sdz057', 0.0038972078042101856) + +[fips4646500] +centroid = (0.75367121918884505, -1.801771821193717) +description = Oelrichs town, SD +station = ('kcdr', 0.0063238849410420976) +zone = ('sdz041', 0.0030852531159424098) + +[fips4646540] +centroid = (0.75383494852597455, -1.7926220547631844) +description = Oglala CDP, SD +station = ('kien', 0.003697833957286561) +zone = ('sdz042', 0.0032181514345121414) + +[fips4646620] +centroid = (0.76536366854014559, -1.7607119906094619) +description = Okaton CDP, SD +station = ('kpir', 0.011921025459711399) +zone = ('sdz045', 0.0030638386809737211) + +[fips4646660] +centroid = (0.75657356210857141, -1.7521127359315933) +description = Okreek CDP, SD +station = ('kvtn', 0.0086567215315622083) +zone = ('sdz047', 0.0049883698673745241) + +[fips4646700] +centroid = (0.76097212343615495, -1.7315646953951838) +description = Ola CDP, SD +station = ('k9v9', 0.0031904215883106798) +zone = ('sdz057', 0.0026310356775308993) + +[fips4646780] +centroid = (0.7719277296838486, -1.6983716397083202) +description = Oldham city, SD +station = ('kmds', 0.0046339756410543245) +zone = ('sdz039', 0.0033552058267111305) + +[fips4646900] +centroid = (0.75470155685946727, -1.704738548459718) +description = Olivet town, SD +station = ('kykn', 0.0067710051586063712) +zone = ('sdz065', 0.0019256363315960363) + +[fips4646980] +centroid = (0.78873488386141111, -1.7359867663077917) +description = Onaka town, SD +station = ('kmbg', 0.013245949554352892) +zone = ('sdz017', 0.0044565237908224132) + +[fips4647180] +centroid = (0.78024012204585935, -1.7465101766728139) +description = Onida city, SD +station = ('kpir', 0.0062137950739318774) +zone = ('sdz034', 0.00082334570553854909) + +[fips4647460] +centroid = (0.78368267927566304, -1.7294242759604155) +description = Orient town, SD +station = ('kabr', 0.012646713788783317) +zone = ('sdz017', 0.003037817037706256) + +[fips4647660] +centroid = (0.79124407391383322, -1.6965463569232921) +description = Ortley town, SD +station = ('k8d3', 0.0063928897464303061) +zone = ('sdz008', 0.0060398817672007391) + +[fips4648380] +centroid = (0.75743376508370941, -1.6952996682385923) +description = Parker city, SD +station = ('kfsd', 0.0058371601945622128) +zone = ('sdz066', 0.0015300476528686687) + +[fips4648460] +centroid = (0.75735718003613173, -1.7101879201700496) +description = Parkston city, SD +station = ('kmhe', 0.0065420506504843172) +zone = ('sdz065', 0.0031156014233682154) + +[fips4648500] +centroid = (0.75614475216464894, -1.7635649232580644) +description = Parmelee CDP, SD +station = ('kvtn', 0.010171285124656449) +zone = ('sdz047', 0.0047331773941122713) + +[fips4648940] +centroid = (0.79486203673346234, -1.6922035937718947) +description = Peever town, SD +station = ('k8d3', 0.0021969223255010198) +zone = ('sdz008', 0.0015296277438725807) + +[fips4649300] +centroid = (0.76865535950940689, -1.774384550903735) +description = Philip city, SD +station = ('kphp', 0.00082828646960359171) +zone = ('sdz032', 0.0046955281714677992) + +[fips4649460] +centroid = (0.75167491159041389, -1.7196741686270745) +description = Pickstown town, SD +station = ('konl', 0.010673937802197437) +zone = ('sdz063', 0.0025537127562952925) + +[fips4649500] +centroid = (0.77178318151519831, -1.8042647098709255) +description = Piedmont city, SD +station = ('krca', 0.003672419533889637) +zone = ('sdz072', 0.001991738065026926) + +[fips4649540] +centroid = (0.7940433202346443, -1.7074920322475418) +description = Pierpont town, SD +station = ('kabr', 0.0071983309583444292) +zone = ('sdz011', 0.0035451032376470136) + +[fips4649600] +centroid = (0.77449270045916452, -1.7509142532408339) +description = Pierre city, SD +station = ('kpir', 0.0004790695013312777) +zone = ('sdz035', 0.0040474088861941942) + +[fips4649640] +centroid = (0.76010558491583236, -1.6866009472466525) +description = Pine Lakes Addition CDP, SD +station = ('kfsd', 0.0015595854067852713) +zone = ('sdz062', 0.0029215767607366299) + +[fips4649660] +centroid = (0.75096171769817133, -1.7898768961958926) +description = Pine Ridge CDP, SD +station = ('kien', 0.00046926584001280699) +zone = ('sdz042', 0.0053871950586647501) + +[fips4650020] +centroid = (0.76297783835925437, -1.7188652783319451) +description = Plankinton city, SD +station = ('kmhe', 0.0057492535813771731) +zone = ('sdz058', 0.00098355701544552694) + +[fips4650260] +centroid = (0.75724298314317373, -1.7251457758320765) +description = Platte city, SD +station = ('k9v9', 0.0089292485235455722) +zone = ('sdz063', 0.004505526281863367) + +[fips4651260] +centroid = (0.80111511511104505, -1.7503649632186462) +description = Pollock town, SD +station = ('k7l2', 0.0056099499360166881) +zone = ('sdz004', 0.0036599171290753068) + +[fips4651340] +centroid = (0.75518145259059566, -1.7860883972550512) +description = Porcupine CDP, SD +station = ('kien', 0.0047125368039865603) +zone = ('sdz042', 0.0029847934610152463) + +[fips4651660] +centroid = (0.79475557164909072, -1.7944980917228606) +description = Prairie City CDP, SD +station = ('khei', 0.0086301072175425774) +zone = ('sdz002', 0.0042494513490387116) + +[fips4651820] +centroid = (0.76632447229336842, -1.7463480006787186) +description = Presho city, SD +station = ('kpir', 0.0087754052368714235) +zone = ('sdz048', 0.0026604853935663112) + +[fips4651940] +centroid = (0.76112080803513238, -1.8080672761655381) +description = Pringle town, SD +station = ('kcut', 0.002187622105950679) +zone = ('sdz029', 0.0018046181453221896) + +[fips4652220] +centroid = (0.76409079991666606, -1.7310920427804513) +description = Pukwana town, SD +station = ('k9v9', 0.0016828213944148995) +zone = ('sdz057', 0.0016827270510177672) + +[fips4652500] +centroid = (0.76769024479293158, -1.7823774432928756) +description = Quinn town, SD +station = ('kphp', 0.0066566573210513329) +zone = ('sdz031', 0.0040291226880736592) + +[fips4652860] +centroid = (0.77003703195845563, -1.6967290754426831) +description = Ramona town, SD +station = ('kmds', 0.0024335063976854026) +zone = ('sdz055', 0.0020202262034044326) + +[fips4652980] +centroid = (0.76918529383018996, -1.8014926208732756) +description = Rapid City city, SD +station = ('krca', 0.0020202637072722642) +zone = ('sdz026', 0.0012298558893352955) + +[fips4653007] +centroid = (0.76926348458067917, -1.7998671084744307) +description = Rapid Valley CDP, SD +station = ('krap', 0.0010385851471877065) +zone = ('sdz026', 0.0017958466553882519) + +[fips4653220] +centroid = (0.75287390042665636, -1.717872308160608) +description = Ravinia town, SD +station = ('kmhe', 0.01207578893416454) +zone = ('sdz063', 0.0023992217759974776) + +[fips4653260] +centroid = (0.78383691402166178, -1.7093276124751566) +description = Raymond town, SD +station = ('khon', 0.0099088511670933754) +zone = ('sdz019', 0.0027267936439999106) + +[fips4653460] +centroid = (0.78318796569918525, -1.7194845211505525) +description = Redfield city, SD +station = ('khon', 0.0092604755356093423) +zone = ('sdz018', 0.0024176457141859837) + +[fips4653940] +centroid = (0.77694768058501962, -1.7313757809569479) +description = Ree Heights town, SD +station = ('k9v9', 0.013155909604180629) +zone = ('sdz037', 0.0024958763754530317) + +[fips4654020] +centroid = (0.76585747454541231, -1.7383683902451856) +description = Reliance town, SD +station = ('k9v9', 0.0040957119690413031) +zone = ('sdz048', 0.0031088176699986645) + +[fips4654145] +centroid = (0.7618141400804872, -1.6877976147949902) +description = Renner Corner CDP, SD +station = ('kfsd', 0.0012827818112183351) +zone = ('sdz062', 0.0011934228764019629) + +[fips4654220] +centroid = (0.78566546057239128, -1.6854837270858662) +description = Revillo town, SD +station = ('kvvv', 0.0053775905421320665) +zone = ('sdz021', 0.0036540187109800476) + +[fips4654750] +centroid = (0.74636242605331593, -1.6868231974736017) +description = Richland CDP, SD +station = ('ksux', 0.0074541586945167417) +zone = ('sdz071', 0.0012086072816338497) + +[fips4655540] +centroid = (0.78372753423743935, -1.7247939349081671) +description = Rockham town, SD +station = ('kabr', 0.01075917887823028) +zone = ('sdz017', 0.0049259295181664471) + +[fips4655820] +centroid = (0.793263768924241, -1.7337419412771691) +description = Roscoe city, SD +station = ('kmbg', 0.013331833174010217) +zone = ('sdz010', 0.0015770787486752526) + +[fips4655940] +centroid = (0.75471370435106111, -1.7596365536309682) +description = Rosebud CDP, SD +station = ('kvtn', 0.0073977693196338691) +zone = ('sdz047', 0.001542247211936087) + +[fips4656340] +centroid = (0.80051620537822321, -1.6882874763561473) +description = Rosholt town, SD +station = ('keth', 0.0029737229937835462) +zone = ('mnz039', 0.003565154954382312) + +[fips4656380] +centroid = (0.79406414201262066, -1.7015774081185058) +description = Roslyn town, SD +station = ('k8d3', 0.0068999704120091213) +zone = ('sdz011', 0.0026559995219408773) + +[fips4656420] +centroid = (0.76796672239973995, -1.7051369198614856) +description = Roswell town, SD +station = ('kmhe', 0.0058862054330373181) +zone = ('sdz054', 0.0011499233274721806) + +[fips4656820] +centroid = (0.74668967528806496, -1.7101027306492598) +description = Running Water CDP, SD +station = ('kykn', 0.0080079398759677085) +zone = ('nez011', 0.0027845268173327508) + +[fips4657060] +centroid = (0.7520296672141743, -1.729531980228556) +description = St. Charles CDP, SD +station = ('konl', 0.012059942045972834) +zone = ('sdz050', 0.002155660506438404) + +[fips4657140] +centroid = (0.75298050513736825, -1.7610858401352392) +description = St. Francis town, SD +station = ('kvtn', 0.0065931232948884186) +zone = ('sdz047', 0.0025090010810427982) + +[fips4657180] +centroid = (0.7769613639663554, -1.7267917260364622) +description = St. Lawrence town, SD +station = ('khon', 0.0090810197105954549) +zone = ('sdz037', 0.00099689734849018512) + +[fips4657260] +centroid = (0.77746995291038645, -1.8102529868943955) +description = St. Onge CDP, SD +station = ('kspf', 0.0013456352185526653) +zone = ('sdz025', 0.00096593587052036598) + +[fips4657340] +centroid = (0.76310657384488145, -1.6997652851160376) +description = Salem city, SD +station = ('kmds', 0.0064854337253205862) +zone = ('sdz061', 0.0008883380952116616) + +[fips4657940] +centroid = (0.75308042523704488, -1.7055421678605061) +description = Scotland city, SD +station = ('kykn', 0.0059022413469613892) +zone = ('sdz065', 0.0032834887724716268) + +[fips4658140] +centroid = (0.79422581186123287, -1.7459037096643311) +description = Selby city, SD +station = ('kmbg', 0.004755211448409861) +zone = ('sdz009', 0.0013245756598172455) + +[fips4658180] +centroid = (0.78645939339583093, -1.7367625651603031) +description = Seneca town, SD +station = ('kmbg', 0.014035402321936476) +zone = ('sdz016', 0.0055249056971770384) + +[fips4658580] +centroid = (0.76371323283958215, -1.6838193462045792) +description = Sherman town, SD +station = ('kpqn', 0.0044199074039639628) +zone = ('mnz098', 0.0031577974749246703) + +[fips4658590] +centroid = (0.75865458798889429, -1.6866080332834157) +description = Shindler CDP, SD +station = ('kfsd', 0.0024842224938892497) +zone = ('sdz067', 0.0034727223261588735) + +[fips4658900] +centroid = (0.7722120961788761, -1.6937378603574453) +description = Sinai town, SD +station = ('kbkx', 0.0030020017442642928) +zone = ('sdz040', 0.0038473611257075851) + +[fips4659020] +centroid = (0.75988729658628529, -1.6882918745858624) +description = Sioux Falls city, SD +station = ('kfsd', 0.00081770188726775926) +zone = ('sdz062', 0.0024872828863490267) + +[fips4659260] +centroid = (0.79696095223861818, -1.6937598864126056) +description = Sisseton city, SD +station = ('k8d3', 0.00075923714517368856) +zone = ('sdz008', 0.0013395937777213587) + +[fips4659700] +centroid = (0.75621320397791203, -1.7609901262790597) +description = Soldier Creek CDP, SD +station = ('kvtn', 0.0091854361693201741) +zone = ('sdz047', 0.0032672660905084076) + +[fips4659940] +centroid = (0.78716984712114768, -1.6917495812735732) +description = South Shore town, SD +station = ('katy', 0.0044422354713696223) +zone = ('sdz021', 0.0023466975057017492) + +[fips4660020] +centroid = (0.77652906336392891, -1.8119839346333537) +description = Spearfish city, SD +station = ('kspf', 0.00046862121327748114) +zone = ('sdz025', 0.00064773110955371411) + +[fips4660060] +centroid = (0.76318825525387479, -1.7032861901759633) +description = Spencer city, SD +station = ('kmhe', 0.0056174747940188428) +zone = ('sdz061', 0.0029599359915175099) + +[fips4660500] +centroid = (0.75250516471558759, -1.76331818606171) +description = Spring Creek CDP, SD +station = ('kvtn', 0.0075166560588069246) +zone = ('sdz047', 0.0042029624265323773) + +[fips4660660] +centroid = (0.74809143647680409, -1.7086162162720437) +description = Springfield city, SD +station = ('kykn', 0.0066298503820299602) +zone = ('sdz068', 0.0022028499101369157) + +[fips4661700] +centroid = (0.76077687345273437, -1.7180608560797008) +description = Stickney town, SD +station = ('kmhe', 0.005968864942891128) +zone = ('sdz058', 0.0027407027146817736) + +[fips4661740] +centroid = (0.78719651575211813, -1.689449952904438) +description = Stockholm town, SD +station = ('kvvv', 0.0057995869202646395) +zone = ('sdz021', 0.0012610205196712282) + +[fips4661940] +centroid = (0.76554502570272032, -1.7165770818694104) +description = Storla CDP, SD +station = ('kmhe', 0.0043551101761213117) +zone = ('sdz058', 0.0036435096641123216) + +[fips4661980] +centroid = (0.78616727763892458, -1.6887882811317145) +description = Strandburg town, SD +station = ('kvvv', 0.0061577776869448219) +zone = ('sdz021', 0.002234691369513779) + +[fips4662020] +centroid = (0.79093869365461189, -1.7157344019999625) +description = Stratford town, SD +station = ('kabr', 0.0026922175628768296) +zone = ('sdz006', 0.004788508250069861) + +[fips4662100] +centroid = (0.77508773556104693, -1.806729027508279) +description = Sturgis city, SD +station = ('kspf', 0.0035504764900776333) +zone = ('sdz072', 0.0020516877334084494) + +[fips4662155] +centroid = (0.77139137255141821, -1.8037181774689561) +description = Summerset city, SD +station = ('krca', 0.0031821583721024491) +zone = ('sdz072', 0.0024450488599808196) + +[fips4662220] +centroid = (0.79073339057469971, -1.6936564407478398) +description = Summit town, SD +station = ('k8d3', 0.0063374972161650538) +zone = ('sdz021', 0.0040722114179999472) + +[fips4662820] +centroid = (0.74957981835631993, -1.7044774646569121) +description = Tabor town, SD +station = ('kykn', 0.0035687996178079442) +zone = ('sdz069', 0.0035445044801247893) + +[fips4663100] +centroid = (0.75837057055971724, -1.6900838913953475) +description = Tea city, SD +station = ('kfsd', 0.0025393178192051661) +zone = ('sdz067', 0.0033339576993826315) + +[fips4663620] +centroid = (0.79286735229123562, -1.7640866894379479) +description = Timber Lake city, SD +station = ('kmbg', 0.0083286573545226887) +zone = ('sdz003', 0.0051223106149291889) + +[fips4663700] +centroid = (0.78903103132888952, -1.7385920192822437) +description = Tolstoy town, SD +station = ('kmbg', 0.011507831157660502) +zone = ('sdz016', 0.0049144794595636218) + +[fips4663740] +centroid = (0.77793520532909055, -1.6867100652314873) +description = Toronto town, SD +station = ('kbkx', 0.0052322337740283113) +zone = ('sdz023', 0.0032908145627132536) + +[fips4663940] +centroid = (0.7663088865031481, -1.6869970846269779) +description = Trent town, SD +station = ('kpqn', 0.0044930852500987039) +zone = ('sdz056', 0.0020284779932397564) + +[fips4664020] +centroid = (0.7544237004425498, -1.7098233383426005) +description = Tripp city, SD +station = ('kykn', 0.0091726902156866619) +zone = ('sdz065', 0.0032931424647667301) + +[fips4664300] +centroid = (0.78082925793487012, -1.7193052060232028) +description = Tulare town, SD +station = ('khon', 0.007078903255606484) +zone = ('sdz018', 0.0040275471792728989) + +[fips4664540] +centroid = (0.78625271150580978, -1.7121226350991781) +description = Turton town, SD +station = ('kabr', 0.0080238089766337187) +zone = ('sdz018', 0.0036306486055536413) + +[fips4664700] +centroid = (0.78904544774851093, -1.6892257304554343) +description = Twin Brooks town, SD +station = ('kvvv', 0.0047453972798668382) +zone = ('sdz021', 0.00068107390423163394) + +[fips4664840] +centroid = (0.75423270906250406, -1.7612508261094302) +description = Two Strike CDP, SD +station = ('kvtn', 0.0076272311286504713) +zone = ('sdz047', 0.0024930003931501387) + +[fips4664860] +centroid = (0.75031477650433476, -1.7080529112559626) +description = Tyndall city, SD +station = ('kykn', 0.006274444673502042) +zone = ('sdz068', 0.00026268143949987824) + +[fips4665780] +centroid = (0.75016144932954698, -1.7016377441507473) +description = Utica town, SD +station = ('kykn', 0.0018330673862658469) +zone = ('sdz069', 0.0013897865118467239) + +[fips4665900] +centroid = (0.77873767281257256, -1.8046460119526089) +description = Vale CDP, SD +station = ('kspf', 0.005334201835329744) +zone = ('sdz072', 0.0049727676626170458) + +[fips4666260] +centroid = (0.76067594106209147, -1.6836437660818286) +description = Valley Springs city, SD +station = ('klyv', 0.0032286317589783598) +zone = ('mnz098', 0.0031205645610229418) + +[fips4666540] +centroid = (0.80044270956342167, -1.6979768985913968) +description = Veblen city, SD +station = ('k8d3', 0.0050282666028257121) +zone = ('sdz007', 0.0041993488236116627) + +[fips4666660] +centroid = (0.78966006544460066, -1.712153859039496) +description = Verdon town, SD +station = ('kabr', 0.0052979591892445433) +zone = ('sdz018', 0.0061490280334697582) + +[fips4666700] +centroid = (0.7466955745009366, -1.6916502894924275) +description = Vermillion city, SD +station = ('kykn', 0.0063217419761493173) +zone = ('sdz070', 0.0023970459840027681) + +[fips4667020] +centroid = (0.75348295052243242, -1.6943630896553872) +description = Viborg city, SD +station = ('kykn', 0.0058948913327082301) +zone = ('sdz066', 0.0025862056810090385) + +[fips4667220] +centroid = (0.78021738040570598, -1.7016963697603218) +description = Vienna town, SD +station = ('katy', 0.0055309519471581298) +zone = ('sdz022', 0.0039019359988742759) + +[fips4667340] +centroid = (0.76809001245810082, -1.7033705768452974) +description = Vilas town, SD +station = ('kmhe', 0.0069323103028784729) +zone = ('sdz054', 0.00029841890256314532) + +[fips4667500] +centroid = (0.77302267944337977, -1.7178856948359706) +description = Virgil town, SD +station = ('khon', 0.0029123161576349449) +zone = ('sdz038', 0.0028508290850744753) + +[fips4667620] +centroid = (0.76667544055265202, -1.7505848397978125) +description = Vivian CDP, SD +station = ('kpir', 0.007962975498828755) +zone = ('sdz045', 0.0049160102408273738) + +[fips4667700] +centroid = (0.77359832393727246, -1.6916171980498096) +description = Volga city, SD +station = ('kbkx', 0.0013863863562066736) +zone = ('sdz040', 0.0018313510251872435) + +[fips4667780] +centroid = (0.74976937856637904, -1.6961316492397256) +description = Volin town, SD +station = ('kykn', 0.0026847311377838231) +zone = ('sdz070', 0.0027357263475256198) + +[fips4668020] +centroid = (0.751804589553837, -1.7155602705004911) +description = Wagner city, SD +station = ('konl', 0.011732398871595098) +zone = ('sdz063', 0.0043972610539831872) + +[fips4668100] +centroid = (0.75063322927965359, -1.6948189696560081) +description = Wakonda town, SD +station = ('kykn', 0.003885484795722182) +zone = ('sdz070', 0.002330798039656867) + +[fips4668380] +centroid = (0.76779712875632367, -1.7844699883462618) +description = Wall town, SD +station = ('krap', 0.010184453372290033) +zone = ('sdz031', 0.0025204845978259254) + +[fips4668420] +centroid = (0.78687225103039027, -1.7013142997337676) +description = Wallace town, SD +station = ('katy', 0.0051737690157629031) +zone = ('sdz020', 0.0040272891369916427) + +[fips4668580] +centroid = (0.76045526163146948, -1.7743493127061374) +description = Wanblee CDP, SD +station = ('kphp', 0.0083995103075701766) +zone = ('sdz043', 0.0021963900395641492) + +[fips4668660] +centroid = (0.77064686745239497, -1.6835898354079419) +description = Ward town, SD +station = ('kpqn', 0.0035079930572970114) +zone = ('sdz056', 0.0034915541602195846) + +[fips4668740] +centroid = (0.79107352033932832, -1.7190662180887271) +description = Warner town, SD +station = ('kabr', 0.002382011253462683) +zone = ('sdz006', 0.0049420313210548038) + +[fips4669140] +centroid = (0.76915841575970911, -1.7880264457630508) +description = Wasta town, SD +station = ('krap', 0.0075785105573877437) +zone = ('sdz031', 0.0010926246122664942) + +[fips4669300] +centroid = (0.78380822080875912, -1.695691424842495) +description = Watertown city, SD +station = ('katy', 0.00017197951190674443) +zone = ('sdz020', 0.0012682755472691787) + +[fips4669340] +centroid = (0.79123676098426743, -1.6983006222610566) +description = Waubay city, SD +station = ('k8d3', 0.0070094409906795579) +zone = ('sdz011', 0.0037483359435698904) + +[fips4669420] +centroid = (0.78537495051839668, -1.6925179450234713) +description = Waverly CDP, SD +station = ('katy', 0.0027721271606350145) +zone = ('sdz020', 0.0026722698012441658) + +[fips4669780] +centroid = (0.7912526783870456, -1.7020731165326572) +description = Webster city, SD +station = ('k8d3', 0.0087622604612333857) +zone = ('sdz011', 0.0011904646273310003) + +[fips4670020] +centroid = (0.76789155106885654, -1.6923505854014975) +description = Wentworth village, SD +station = ('kmds', 0.0015041228176316229) +zone = ('sdz055', 0.0021150846446341101) + +[fips4670140] +centroid = (0.77588807374284141, -1.7225839641027068) +description = Wessington city, SD +station = ('khon', 0.0059116295511731061) +zone = ('sdz037', 0.0041637672052473483) + +[fips4670220] +centroid = (0.76935033216425841, -1.7203977821349512) +description = Wessington Springs city, SD +station = ('khon', 0.0067689380037557409) +zone = ('sdz052', 0.00077112072818087327) + +[fips4670540] +centroid = (0.79670451101162276, -1.7191164661178922) +description = Westport town, SD +station = ('kabr', 0.003593039346668242) +zone = ('sdz006', 0.0020552404063726125) + +[fips4670740] +centroid = (0.79629278784107715, -1.7238920883770765) +description = Wetonka town, SD +station = ('kabr', 0.0052998263176724488) +zone = ('sdz005', 0.0060182953973555104) + +[fips4670940] +centroid = (0.77556572888329056, -1.686800106767598) +description = White city, SD +station = ('kbkx', 0.0031927671422089222) +zone = ('sdz040', 0.0021419515606136284) + +[fips4671140] +centroid = (0.7901913960287853, -1.7610577926941595) +description = Whitehorse CDP, SD +station = ('kmbg', 0.0076379463526740615) +zone = ('sdz015', 0.0020912625345281422) + +[fips4671150] +centroid = (0.75590853930368396, -1.755757472101948) +description = White Horse CDP, SD +station = ('kvtn', 0.0077676902498638586) +zone = ('sdz047', 0.0025553865170346809) + +[fips4671180] +centroid = (0.76319898902877459, -1.7228414699805461) +description = White Lake city, SD +station = ('kmhe', 0.0085774703325842954) +zone = ('sdz058', 0.0018991452333271181) + +[fips4671340] +centroid = (0.76038881694684601, -1.7583294416475643) +description = White River city, SD +station = ('kvtn', 0.012473051641154006) +zone = ('sdz046', 0.00031163365094682841) + +[fips4671380] +centroid = (0.8015379909355107, -1.6855722501855273) +description = White Rock town, SD +station = ('keth', 0.0028077080477572937) +zone = ('mnz039', 0.0029519462475913493) + +[fips4671580] +centroid = (0.77600410323151403, -1.8088260231512576) +description = Whitewood city, SD +station = ('kspf', 0.001847608383779514) +zone = ('sdz025', 0.0017889919918088917) + +[fips4671940] +centroid = (0.77890381070406989, -1.7041055698998973) +description = Willow Lake city, SD +station = ('katy', 0.0076897108380776557) +zone = ('sdz019', 0.0041762638900505675) + +[fips4671980] +centroid = (0.79254006814990163, -1.690471546475508) +description = Wilmot city, SD +station = ('k8d3', 0.0047520734064915764) +zone = ('sdz008', 0.0039984121054321281) + +[fips4672100] +centroid = (0.76792383966001854, -1.6992807293558065) +description = Winfred CDP, SD +station = ('kmds', 0.0035543796523795808) +zone = ('sdz054', 0.0031465844905471875) + +[fips4672180] +centroid = (0.75707965523177212, -1.7427969363293185) +description = Winner city, SD +station = ('kicr', 0.00011980687714432928) +zone = ('sdz049', 0.0006632091266733129) + +[fips4672540] +centroid = (0.77511403767287457, -1.7186936426533039) +description = Wolsey town, SD +station = ('khon', 0.0030378523737917443) +zone = ('sdz038', 0.0024406039976955806) + +[fips4672620] +centroid = (0.75916689448423225, -1.7537095900241206) +description = Wood town, SD +station = ('kicr', 0.0082287600704274814) +zone = ('sdz046', 0.0038335283663669035) + +[fips4672700] +centroid = (0.76889080442550084, -1.7151649185183293) +description = Woonsocket city, SD +station = ('khon', 0.0057645179430055992) +zone = ('sdz053', 0.0023248730928616904) + +[fips4672820] +centroid = (0.756251967740599, -1.6889245215331252) +description = Worthing city, SD +station = ('kfsd', 0.0044267383054253633) +zone = ('sdz067', 0.001069285075451037) + +[fips4672900] +centroid = (0.75299696359221457, -1.78666276765859) +description = Wounded Knee CDP, SD +station = ('kien', 0.0026980772242581716) +zone = ('sdz042', 0.0040830069048888706) + +[fips4673020] +centroid = (0.77551767996898313, -1.7102231234610625) +description = Yale town, SD +station = ('khon', 0.0031767657426634717) +zone = ('sdz038', 0.0036260259167674724) + +[fips4673060] +centroid = (0.74856737031053044, -1.6998230555142786) +description = Yankton city, SD +station = ('kykn', 0.00048474854149092942) +zone = ('sdz069', 0.0020814465464458905) + +[fips47001] +centroid = (0.63035587100710422, -1.4694872591928991) +description = Anderson County, TN +station = ('koqt', 0.0018265336677586771) +zone = ('tnz036', 5.2313335788842734e-05) + +[fips4700190002] +centroid = (0.62905823616153889, -1.4681787858526789) +description = District 1, TN +station = ('koqt', 0.0016553504580639235) +zone = ('tnz036', 0.0017240763365653129) + +[fips4700190192] +centroid = (0.63007939340029573, -1.4683547674011577) +description = District 2, TN +station = ('koqt', 0.002065124026570437) +zone = ('tnz036', 0.0010059329249311271) + +[fips4700190382] +centroid = (0.6315631501572937, -1.4667527994939222) +description = District 3, TN +station = ('koqt', 0.0040316690580993048) +zone = ('tnz036', 0.0025410146304116117) + +[fips4700190572] +centroid = (0.63122130996999803, -1.4707617335192904) +description = District 4, TN +station = ('koqt', 0.0026584072161259945) +zone = ('tnz036', 0.0012927301795550906) + +[fips4700190762] +centroid = (0.62988501608150116, -1.4706377802358137) +description = District 5, TN +station = ('koqt', 0.0013354021275497252) +zone = ('tnz036', 0.0010174276216255839) + +[fips4700190952] +centroid = (0.62793684466383992, -1.470734227130279) +description = District 6, TN +station = ('koqt', 0.00082251381961046042) +zone = ('tnz036', 0.0026313741533691825) + +[fips4700191142] +centroid = (0.6287374795516073, -1.4705014874745255) +description = District 7, TN +station = ('koqt', 0.00031253084437079024) +zone = ('tnz036', 0.0018212575406191815) + +[fips4700191332] +centroid = (0.62859629986841348, -1.4696532749113489) +description = District 8, TN +station = ('koqt', 0.00040118704917697131) +zone = ('tnz036', 0.0017909995009397896) + +[fips4700200] +centroid = (0.63848283958938301, -1.519532516005319) +description = Adams city, TN +station = ('kckv', 0.0049943369092930361) +zone = ('tnz007', 0.0028735997408245837) + +[fips4700240] +centroid = (0.61495077472425375, -1.5423626618051738) +description = Adamsville town, TN +station = ('kcrx', 0.0063844289943146186) +zone = ('tnz091', 0.0029394029673018938) + +[fips47003] +centroid = (0.61983029643380949, -1.5089818959572583) +description = Bedford County, TN +station = ('ktha', 0.0038069372961268269) +zone = ('tnz075', 8.9492359709272263e-06) + +[fips4700390004] +centroid = (0.62052197041637469, -1.5067264593247836) +description = District 1, TN +station = ('ktha', 0.0032429878459698512) +zone = ('tnz075', 0.0019686211824605855) + +[fips4700390194] +centroid = (0.62122860187062978, -1.5090722691059264) +description = District 2, TN +station = ('ktha', 0.0048384031495363076) +zone = ('tnz075', 0.0013973708385256478) + +[fips4700390384] +centroid = (0.62180557281475402, -1.5112485376035307) +description = District 3, TN +station = ('ktha', 0.006488209066639156) +zone = ('tnz075', 0.0026943673409080193) + +[fips4700390574] +centroid = (0.61884552930995662, -1.5110627647579484) +description = District 4, TN +station = ('ktha', 0.0048947165194820827) +zone = ('tnz075', 0.0019535539620637583) + +[fips4700390764] +centroid = (0.61802166408984527, -1.5076411165725838) +description = District 5, TN +station = ('ktha', 0.0019879109052423284) +zone = ('tnz075', 0.0021193145181762026) + +[fips4700390954] +centroid = (0.61921829673159756, -1.5087958613122883) +description = District 6, TN +station = ('ktha', 0.0033356988795596129) +zone = ('tnz075', 0.00063495150872168254) + +[fips4700391144] +centroid = (0.61953224655744632, -1.5084490992965021) +description = District 7, TN +station = ('ktha', 0.0032816454397854495) +zone = ('tnz075', 0.00053475320905307499) + +[fips4700391334] +centroid = (0.61982958084881612, -1.5094054699134247) +description = District 8, TN +station = ('ktha', 0.0040847141697596054) +zone = ('tnz075', 0.00033618492623089483) + +[fips4700391524] +centroid = (0.61920789456925562, -1.5093629362395538) +description = District 9, TN +station = ('ktha', 0.0037344002099277025) +zone = ('tnz075', 0.00069383255414371423) + +[fips4700440] +centroid = (0.62453198654587949, -1.5553819279071333) +description = Alamo town, TN +station = ('kmkl', 0.0042727215925111939) +zone = ('tnz051', 0.00062094813091311159) + +[fips47005] +centroid = (0.62952722358484237, -1.5371326256219402) +description = Benton County, TN +station = ('kcey', 0.011080572359544398) +zone = ('tnz022', 4.217591981308992e-05) + +[fips4700540] +centroid = (0.62499490022338589, -1.465655196833928) +description = Alcoa city, TN +station = ('ktys', 0.00016290571122826156) +zone = ('tnz071', 0.0014904413588042308) + +[fips4700590006] +centroid = (0.62670575922265326, -1.5370557264150972) +description = District 1, TN +station = ('kmkl', 0.013180225647978921) +zone = ('tnz022', 0.0028310899303477725) + +[fips4700590196] +centroid = (0.63015171984449847, -1.5385136697524582) +description = District 2, TN +station = ('kcey', 0.010124074153423554) +zone = ('tnz022', 0.0013103776678410927) + +[fips4700590386] +centroid = (0.62866750930189497, -1.5379557054438882) +description = District 3, TN +station = ('kcey', 0.011675305865589153) +zone = ('tnz022', 0.0011202227397830642) + +[fips4700590576] +centroid = (0.6302386721478328, -1.5360696677475982) +description = District 4, TN +station = ('kcey', 0.010783441978838902) +zone = ('tnz022', 0.0010777868547330865) + +[fips4700590766] +centroid = (0.62947758642091556, -1.5378750363258611) +description = District 5, TN +station = ('kcey', 0.010922918369620692) +zone = ('tnz022', 0.00064391135491011578) + +[fips4700590956] +centroid = (0.63294155884064118, -1.5364188208644596) +description = District 6, TN +station = ('kcey', 0.0083049603852305628) +zone = ('tnz022', 0.0034465991304682194) + +[fips4700620] +centroid = (0.62969896398323855, -1.5016481271601332) +description = Alexandria town, TN +station = ('kmqy', 0.0069101282701829175) +zone = ('tnz030', 0.0032039489828820798) + +[fips4700640] +centroid = (0.63180952083450515, -1.4913264419500565) +description = Algood city, TN +station = ('ksrb', 0.0027800793077048802) +zone = ('tnz032', 0.0012381740844320016) + +[fips4700660] +centroid = (0.63496238831506291, -1.4814548597007766) +description = Allardt city, TN +station = ('kcsv', 0.0080384692928531423) +zone = ('tnz034', 0.00072069600633340076) + +[fips47007] +centroid = (0.62122669946174502, -1.4871248759351454) +description = Bledsoe County, TN +station = ('kcsv', 0.0064571143296489981) +zone = ('tnz082', 4.9287263767834605e-05) + +[fips4700790008] +centroid = (0.62107077174637182, -1.4894585033181096) +description = District 1, TN +station = ('kcsv', 0.0073362898745288332) +zone = ('tnz082', 0.0019209942839450121) + +[fips4700790198] +centroid = (0.62268804619114737, -1.4844593916482072) +description = District 2, TN +station = ('kcsv', 0.0047768232143976588) +zone = ('tnz083', 0.0021858577509558915) + +[fips4700790388] +centroid = (0.61982034805707298, -1.4864118565758282) +description = District 3, TN +station = ('kcsv', 0.0077130668654434003) +zone = ('tnz082', 0.0015608931311644064) + +[fips4700790578] +centroid = (0.6215486254422754, -1.4869055753146325) +description = District 4, TN +station = ('kcsv', 0.0060997377454498182) +zone = ('tnz082', 0.00032048293513570094) + +[fips4700790768] +centroid = (0.62343660045403526, -1.4860097152628762) +description = District 5, TN +station = ('kcsv', 0.0040945422709682076) +zone = ('tnz082', 0.0023396003670496305) + +[fips4700790958] +centroid = (0.61975760347046382, -1.4879032229683649) +description = District 6, TN +station = ('kcsv', 0.0080451188203804688) +zone = ('tnz082', 0.0016485087197381143) + +[fips47009] +centroid = (0.62287633231085249, -1.4647321969123031) +description = Blount County, TN +station = ('ktys', 0.0023998819064390306) +zone = ('tnz071', 0.00083454289084276747) + +[fips4700940] +centroid = (0.61841650992652397, -1.4965052003598667) +description = Altamont town, TN +station = ('kbgf', 0.0063998805696086156) +zone = ('tnz079', 0.00082730517478018639) + +[fips4700990010] +centroid = (0.62414993397261775, -1.4658275306442698) +description = District 1, TN +station = ('ktys', 0.00096942095345627132) +zone = ('tnz071', 0.00072442954500172394) + +[fips4700990200] +centroid = (0.62479752093827778, -1.4661584101638627) +description = District 2, TN +station = ('ktys', 0.00044109639284358376) +zone = ('tnz071', 0.0014226423767594728) + +[fips4700990390] +centroid = (0.62451891402978188, -1.4646432200270363) +description = District 3, TN +station = ('ktys', 0.0011038271097263586) +zone = ('tnz071', 0.0011659257975623035) + +[fips4700990580] +centroid = (0.62275627111160781, -1.4652539805454794) +description = District 4, TN +station = ('ktys', 0.0024015758462535117) +zone = ('tnz071', 0.00077176605391061123) + +[fips4700990770] +centroid = (0.62366817073918979, -1.4656390874449321) +description = District 5, TN +station = ('ktys', 0.001455457381124777) +zone = ('tnz071', 0.00025332792990504698) + +[fips4700990960] +centroid = (0.62333833841714792, -1.4673025433017153) +description = District 6, TN +station = ('ktys', 0.0021644339193908858) +zone = ('tnz071', 0.001567112282253357) + +[fips4700991150] +centroid = (0.62199328297580603, -1.4672052761025016) +description = District 7, TN +station = ('ktys', 0.0033311730484526098) +zone = ('tnz071', 0.0021255335144687087) + +[fips4700991340] +centroid = (0.62232109071591557, -1.4631605802807599) +description = District 8, TN +station = ('ktys', 0.0035167268606254094) +zone = ('tnz072', 0.0012440955783314287) + +[fips4700991530] +centroid = (0.62542131906623311, -1.4639417547473674) +description = District 9, TN +station = ('ktys', 0.0015253741129143898) +zone = ('tnz071', 0.0022325723727203671) + +[fips4700991720] +centroid = (0.62516088103525047, -1.4671839132724571) +description = District 10, TN +station = ('ktys', 0.0011345804956635445) +zone = ('tnz071', 0.0021953882100286802) + +[fips47011] +centroid = (0.6135515442629299, -1.4810761756129713) +description = Bradley County, TN +station = ('kcha', 0.005299530911558924) +zone = ('tnz100', 4.1932407723509554e-06) + +[fips4701190012] +centroid = (0.614594395944289, -1.4824141101109651) +description = District 1, TN +station = ('kcha', 0.0049092919098140944) +zone = ('tnz100', 0.0015068950749665396) + +[fips4701190202] +centroid = (0.61528943841231065, -1.4798888106695471) +description = District 2, TN +station = ('kcha', 0.0069837517226355667) +zone = ('tnz100', 0.0019888318662984413) + +[fips4701190392] +centroid = (0.61388971925879632, -1.4808054924992797) +description = District 3, TN +station = ('kcha', 0.0056409301739888682) +zone = ('tnz100', 0.0004028974602022398) + +[fips4701190582] +centroid = (0.61332700765466086, -1.4795884569585713) +description = District 4, TN +station = ('kcha', 0.0063654461578303992) +zone = ('tnz100', 0.0012402174156897288) + +[fips4701190772] +centroid = (0.6132345226575977, -1.4815205888004068) +description = District 5, TN +station = ('kcha', 0.0048425981747291401) +zone = ('tnz100', 0.00048239609715026164) + +[fips4701190962] +centroid = (0.61203314272027987, -1.4815656008418157) +description = District 6, TN +station = ('kcha', 0.0045039704804873326) +zone = ('tnz100', 0.0015727650898945782) + +[fips4701191152] +centroid = (0.61412580994671351, -1.4814748960805895) +description = District 7, TN +station = ('kcha', 0.0052684498552516964) +zone = ('tnz100', 0.0006561792833456679) + +[fips4701220] +centroid = (0.63175606139951657, -1.4666535949792388) +description = Andersonville CDP, TN +station = ('koqt', 0.0042280474032752738) +zone = ('tnz036', 0.0027045999960921057) + +[fips47013] +centroid = (0.63532763336762776, -1.4688560085090379) +description = Campbell County, TN +station = ('koqt', 0.006798736669027511) +zone = ('tnz013', 0.00014410010291980607) + +[fips4701390014] +centroid = (0.63461140260248672, -1.4665018036941928) +description = District 1, TN +station = ('k1a6', 0.0059392037322029204) +zone = ('tnz013', 0.0019095121860996682) + +[fips4701390204] +centroid = (0.63507344361536722, -1.4676104717416445) +description = District 2, TN +station = ('k1a6', 0.0062789415607684175) +zone = ('tnz013', 0.00090998852899645301) + +[fips4701390394] +centroid = (0.63414454448087088, -1.4688573349592693) +description = District 3, TN +station = ('koqt', 0.0056324721044252171) +zone = ('tnz013', 0.0012262571518568118) + +[fips4701390584] +centroid = (0.6333777340740071, -1.4707029682833757) +description = District 4, TN +station = ('koqt', 0.0047892481983134536) +zone = ('tnz013', 0.0025668575245228068) + +[fips4701390774] +centroid = (0.63680428663457, -1.4685648352299276) +description = District 5, TN +station = ('k1a6', 0.0060837432676577249) +zone = ('tnz013', 0.0014447030750323999) + +[fips4701480] +centroid = (0.61094995647990713, -1.483698742253603) +description = Apison CDP, TN +station = ('kcha', 0.0027654447586832622) +zone = ('gaz003', 0.0025491085104255335) + +[fips47015] +centroid = (0.62497437515138243, -1.502072311981538) +description = Cannon County, TN +station = ('kmqy', 0.0073545528059147233) +zone = ('tnz063', 1.1305563143118803e-05) + +[fips4701590016] +centroid = (0.62447817804504036, -1.5034149239619272) +description = District 1, TN +station = ('kmqy', 0.0067031674771370212) +zone = ('tnz063', 0.0012080210069834998) + +[fips4701590206] +centroid = (0.62702897674683011, -1.501425999106232) +description = District 2, TN +station = ('kmqy', 0.0071348019453118363) +zone = ('tnz063', 0.0021126899955929593) + +[fips4701590396] +centroid = (0.62307605033715818, -1.5020053611514312) +description = District 3, TN +station = ('ktha', 0.006185067881780866) +zone = ('tnz063', 0.0019041823295073144) + +[fips4701590586] +centroid = (0.62482799438701764, -1.5007388106198443) +description = District 4, TN +station = ('ksrb', 0.0078327484986266942) +zone = ('tnz063', 0.0010822183785985091) + +[fips4701590776] +centroid = (0.6252382863875765, -1.5021956543997763) +description = District 5, TN +station = ('kmqy', 0.0071429592497543196) +zone = ('tnz063', 0.00028098885494250641) + +[fips4701640] +centroid = (0.61094274827009643, -1.5158308995546419) +description = Ardmore city, TN +station = ('kmdq', 0.0048855880076964509) +zone = ('alz005', 0.0038727839856291437) + +[fips47017] +centroid = (0.62775821021489842, -1.5437726784012751) +description = Carroll County, TN +station = ('kmkl', 0.0091965143406677781) +zone = ('tnz021', 9.3135678738978225e-05) + +[fips4701740] +centroid = (0.61527249126527384, -1.5648822611712212) +description = Arlington town, TN +station = ('knqa', 0.003489556452982906) +zone = ('tnz088', 0.0035521823238818485) + +[fips4701790018] +centroid = (0.62633744239060485, -1.5467218834114176) +description = District 1, TN +station = ('kmkl', 0.0065259340841824012) +zone = ('tnz021', 0.0028437200181570484) + +[fips4701790208] +centroid = (0.62844000563389746, -1.5461822625132859) +description = District 2, TN +station = ('kmkl', 0.0084774846648324725) +zone = ('tnz021', 0.0020569653986939134) + +[fips4701790398] +centroid = (0.62980996692366542, -1.5401344523090303) +description = District 3, TN +station = ('kcey', 0.010161171946781613) +zone = ('tnz022', 0.0024822922078266813) + +[fips4701790588] +centroid = (0.62991821224387412, -1.5420511205336929) +description = District 4, TN +station = ('kcey', 0.0099199763220224491) +zone = ('tnz021', 0.0024824954509121899) + +[fips4701790778] +centroid = (0.62863371972757631, -1.5427279068577386) +description = District 5, TN +station = ('kmkl', 0.010412930620040492) +zone = ('tnz021', 0.0011383447586946836) + +[fips4701790968] +centroid = (0.62616170518822167, -1.5422327744022404) +description = District 6, TN +station = ('kmkl', 0.0092034115383337247) +zone = ('tnz021', 0.002085925325095354) + +[fips4701791158] +centroid = (0.62781566645387399, -1.5440953374200912) +description = District 7, TN +station = ('kmkl', 0.0090519211338056533) +zone = ('tnz021', 0.00028370660605875179) + +[fips4701791348] +centroid = (0.62981506328508119, -1.5458823276813307) +description = District 8, TN +station = ('kmkl', 0.009776456035061604) +zone = ('tnz021', 0.0026166283057605546) + +[fips4701791538] +centroid = (0.62995350280134932, -1.5440909391903761) +description = District 9, TN +station = ('kcey', 0.010004104380635563) +zone = ('tnz021', 0.0021227431106621048) + +[fips47019] +centroid = (0.63328825104325748, -1.4333794512953275) +description = Carter County, TN +station = ('k0a9', 0.0016083122573405943) +zone = ('tnz047', 0.0010249015380496809) + +[fips4701990020] +centroid = (0.63580162988588429, -1.4329125408138339) +description = District 1, TN +station = ('k0a9', 0.001422259720745852) +zone = ('tnz046', 0.0013377749126988778) + +[fips4701990210] +centroid = (0.63175051125249526, -1.4331835555400836) +description = District 2, TN +station = ('k0a9', 0.0031218340814064441) +zone = ('tnz047', 0.00063273747745009972) + +[fips4701990400] +centroid = (0.63485210095962941, -1.4356210823734188) +description = District 3, TN +station = ('k0a9', 0.0011973239857173178) +zone = ('tnz046', 0.0012899518885114462) + +[fips4701990590] +centroid = (0.63420392058202357, -1.4342550131678831) +description = District 4, TN +station = ('k0a9', 0.00058016046702361762) +zone = ('tnz046', 0.00062936065566963006) + +[fips4701990780] +centroid = (0.63333835944608219, -1.4364690156839153) +description = District 5, TN +station = ('k0a9', 0.0023658104431479301) +zone = ('tnz046', 0.0024578281265275267) + +[fips4701990970] +centroid = (0.63315017804613216, -1.4323087092525215) +description = District 6, TN +station = ('k0a9', 0.0021940895229164421) +zone = ('tnz047', 0.00093940404172926666) + +[fips4701991160] +centroid = (0.6331910885637988, -1.4355815157592762) +description = District 7, TN +station = ('k0a9', 0.0019664935973536584) +zone = ('tnz046', 0.0020456142380179633) + +[fips4701991350] +centroid = (0.63425987583784271, -1.4350193626605012) +description = District 8, TN +station = ('k0a9', 0.00087838779900416557) +zone = ('tnz046', 0.0009715347835789408) + +[fips47021] +centroid = (0.6327722619031978, -1.5201960203737572) +description = Cheatham County, TN +station = ('kbna', 0.0063584291826171988) +zone = ('tnz026', 0.00022349369347169205) + +[fips4702180] +centroid = (0.63278802222634323, -1.5190050600520739) +description = Ashland City town, TN +station = ('kbna', 0.0054885277393038941) +zone = ('tnz026', 0.00076829072006833474) + +[fips4702190022] +centroid = (0.63301217486217687, -1.5186238103302683) +description = District 1, TN +station = ('kbna', 0.0053224615154984934) +zone = ('tnz026', 0.001078877028302107) + +[fips4702190212] +centroid = (0.63403231980996766, -1.51792297336913) +description = District 2, TN +station = ('kbna', 0.0054664672223507368) +zone = ('tnz026', 0.0020017088045032562) + +[fips4702190402] +centroid = (0.63523820269675546, -1.5197701425829782) +description = District 3, TN +station = ('kckv', 0.006128172634690383) +zone = ('tnz026', 0.002365383478660203) + +[fips4702190592] +centroid = (0.6344852502041527, -1.5211790945282355) +description = District 4, TN +station = ('kckv', 0.0058640726816833709) +zone = ('tnz026', 0.0018879113278806193) + +[fips4702190782] +centroid = (0.63158807345901213, -1.5197284292138555) +description = District 5, TN +station = ('kbna', 0.0056423554386908726) +zone = ('tnz026', 0.0013017438535948961) + +[fips4702190972] +centroid = (0.63046683904094591, -1.5209723428250443) +description = District 6, TN +station = ('kbna', 0.0065139460696769826) +zone = ('tnz026', 0.0025474218272158503) + +[fips47023] +centroid = (0.61813696054023204, -1.5464577976422982) +description = Chester County, TN +station = ('kmkl', 0.0054575967004886275) +zone = ('tnz053', 0.00012972286057667552) + +[fips4702320] +centroid = (0.6187614917064731, -1.4766158470831596) +description = Athens city, TN +station = ('ktys', 0.010857848532790898) +zone = ('tnz085', 0.00051967055996728463) + +[fips4702340] +centroid = (0.61831686907952754, -1.5670303949612834) +description = Atoka town, TN +station = ('knqa', 0.0017330831673207554) +zone = ('tnz049', 0.0012658738147889518) + +[fips4702380] +centroid = (0.62783872225329296, -1.5475800268980382) +description = Atwood town, TN +station = ('kmkl', 0.0073814231776426582) +zone = ('tnz020', 0.0037351491917797953) + +[fips4702390024] +centroid = (0.61809130272699986, -1.5440134465715876) +description = District 1, TN +station = ('kmkl', 0.0071856174994141082) +zone = ('tnz053', 0.0020994217439440801) + +[fips4702390214] +centroid = (0.61967642820695357, -1.5455191246639906) +description = District 2, TN +station = ('kmkl', 0.0054417175963843382) +zone = ('tnz053', 0.0017000425228226583) + +[fips4702390404] +centroid = (0.61700919859076342, -1.548874694683875) +description = District 3, TN +station = ('kmkl', 0.0049755140567784625) +zone = ('tnz053', 0.0022221035298165904) + +[fips4702390594] +centroid = (0.61850489339984493, -1.5483021743293433) +description = District 4, TN +station = ('kmkl', 0.004067310098714705) +zone = ('tnz053', 0.0014288621397537315) + +[fips4702390784] +centroid = (0.61914837884176277, -1.5469202575341992) +description = District 5, TN +station = ('kmkl', 0.0045974096334868691) +zone = ('tnz053', 0.00097266213530826254) + +[fips4702390974] +centroid = (0.61833248977633293, -1.5472530743692621) +description = District 6, TN +station = ('kmkl', 0.0048234138228822644) +zone = ('tnz053', 0.00055687734478207821) + +[fips4702400] +centroid = (0.62749234420994215, -1.5026125961047854) +description = Auburntown town, TN +station = ('kmqy', 0.0061050099244257779) +zone = ('tnz063', 0.0025522048551159565) + +[fips47025] +centroid = (0.63707235175438381, -1.4601550884022405) +description = Claiborne County, TN +station = ('k1a6', 0.0021838714601683023) +zone = ('tnz014', 0.00027330401290995412) + +[fips4702590026] +centroid = (0.63676328885044065, -1.4585013191228058) +description = District 1, TN +station = ('k1a6', 0.0032643870739761495) +zone = ('tnz014', 0.0013255901984359447) + +[fips4702590216] +centroid = (0.63589222992735528, -1.4607084799481704) +description = District 2, TN +station = ('k1a6', 0.0031458738456349791) +zone = ('tnz014', 0.0010122007934446455) + +[fips4702590406] +centroid = (0.63518095589729018, -1.4592761056843511) +description = District 3, TN +station = ('k1a6', 0.004190517699002483) +zone = ('tnz014', 0.0017640747112302724) + +[fips4702590596] +centroid = (0.63636584247317662, -1.4566686535950417) +description = District 4, TN +station = ('k0vg', 0.0047904538808073299) +zone = ('tnz014', 0.0028323372262568976) + +[fips4702590786] +centroid = (0.63816400284162877, -1.4576027538107093) +description = District 5, TN +station = ('k1a6', 0.003225016255541883) +zone = ('tnz014', 0.0024599143057749658) + +[fips4702590976] +centroid = (0.63783945886722038, -1.4592722136001193) +description = District 6, TN +station = ('k1a6', 0.0021122091498702836) +zone = ('tnz014', 0.0012567515139378011) + +[fips4702591166] +centroid = (0.63766227304155787, -1.46094216208172) +description = District 7, TN +station = ('k1a6', 0.001384303015625835) +zone = ('tnz014', 0.0010728728979960546) + +[fips4702591356] +centroid = (0.63651452707215395, -1.4630408332407805) +description = District 8, TN +station = ('k1a6', 0.0027576577017111503) +zone = ('tnz014', 0.0023422883411994039) + +[fips4702591546] +centroid = (0.63792129735584646, -1.4641007018823466) +description = District 9, TN +station = ('k1a6', 0.0023460699163543796) +zone = ('tnz014', 0.0033679724920016238) + +[fips47027] +centroid = (0.6378439269101055, -1.4930544400825785) +description = Clay County, TN +station = ('ksrb', 0.008552366328995701) +zone = ('tnz010', 9.6919047144391376e-05) + +[fips4702780] +centroid = (0.63398065806410853, -1.4457625972448123) +description = Baileyton town, TN +station = ('ktri', 0.0066105631947947158) +zone = ('tnz042', 0.0021693152147505604) + +[fips4702790028] +centroid = (0.63797299400829044, -1.4945130815516403) +description = District 1, TN +station = ('ksrb', 0.0087889113922351176) +zone = ('tnz010', 0.0011991794382621283) + +[fips4702790218] +centroid = (0.63840487573169646, -1.4967362819528305) +description = District 2, TN +station = ('kglw', 0.0083841955144055985) +zone = ('kyz075', 0.0024107806820784184) + +[fips4702790408] +centroid = (0.63784179760841808, -1.4920672993109432) +description = District 3, TN +station = ('ksrb', 0.0085675760435641648) +zone = ('tnz010', 0.00077202865688514406) + +[fips4702790598] +centroid = (0.63757205697252239, -1.4907709036491466) +description = District 4, TN +station = ('ksrb', 0.0084366988795231222) +zone = ('tnz010', 0.0018442533166603834) + +[fips4702790788] +centroid = (0.63829439639004526, -1.4914939411983705) +description = District 5, TN +station = ('ksrb', 0.009060829899428937) +zone = ('tnz010', 0.0012775335205895493) + +[fips47029] +centroid = (0.62685590989820239, -1.4507041130493987) +description = Cocke County, TN +station = ('kavl', 0.0118332148352283) +zone = ('tnz040', 0.0012711014140914154) + +[fips4702990030] +centroid = (0.62553438149517726, -1.4494793980599818) +description = District 1, TN +station = ('kavl', 0.010198498118725197) +zone = ('tnz041', 0.00035785307354743333) + +[fips4702990220] +centroid = (0.62792951428098165, -1.4491605613122274) +description = District 2, TN +station = ('kavl', 0.011831143082005459) +zone = ('tnz040', 0.0017375295865733797) + +[fips4702990410] +centroid = (0.62941321867810207, -1.4513952285266034) +description = District 3, TN +station = ('k0vg', 0.010351049033294859) +zone = ('tnz040', 0.0013846300447396219) + +[fips4702990600] +centroid = (0.62722365077159759, -1.4527837601196125) +description = District 4, TN +station = ('k0vg', 0.012510750376045076) +zone = ('tnz040', 0.0014441243935690139) + +[fips4702990790] +centroid = (0.62508675690191828, -1.4521610091892085) +description = District 5, TN +station = ('k1a5', 0.01087347980513001) +zone = ('tnz041', 0.001876441751576006) + +[fips4702990980] +centroid = (0.62727349737503446, -1.4519590745947526) +description = District 6, TN +station = ('k0vg', 0.01246318669492714) +zone = ('tnz040', 0.00092421704718419727) + +[fips4702991170] +centroid = (0.62822091445289463, -1.4523958083334791) +description = District 7, TN +station = ('k0vg', 0.011510153076980306) +zone = ('tnz040', 0.00090360973513915201) + +[fips4703078] +centroid = (0.62923976785703872, -1.4535414424544884) +description = Baneberry city, TN +station = ('k0vg', 0.010529790466245267) +zone = ('tnz040', 0.0021764547155573803) + +[fips47031] +centroid = (0.61939569199677036, -1.502348335802741) +description = Coffee County, TN +station = ('ktha', 0.0030564218732849206) +zone = ('tnz077', 5.8250415486285167e-05) + +[fips4703120] +centroid = (0.63045388869789609, -1.4385038601522302) +description = Banner Hill CDP, TN +station = ('k0a9', 0.0055754439799934313) +zone = ('tnz045', 0.00026404490100011849) + +[fips4703190032] +centroid = (0.61941663594779417, -1.5024944024078404) +description = District 1, TN +station = ('ktha', 0.0029774978109295136) +zone = ('tnz077', 0.00016788908013311933) + +[fips4703190222] +centroid = (0.619118411538506, -1.5026171688674255) +description = District 2, TN +station = ('ktha', 0.0027139405427415871) +zone = ('tnz077', 0.0004090151170052025) + +[fips4703190412] +centroid = (0.61866310749653819, -1.5023770639222287) +description = District 3, TN +station = ('ktha', 0.002643662758874437) +zone = ('tnz077', 0.00076809770815823976) + +[fips4703190602] +centroid = (0.61929161801347388, -1.5021991799648653) +description = District 4, TN +station = ('ktha', 0.0030911234509968456) +zone = ('tnz077', 0.00015446924498873965) + +[fips4703190792] +centroid = (0.61752534481045562, -1.4998207325267101) +description = District 5, TN +station = ('kbgf', 0.0040328468121375166) +zone = ('tnz077', 0.0027681488515079356) + +[fips4703190982] +centroid = (0.61834435801524645, -1.501170081478012) +description = District 6, TN +station = ('ktha', 0.0034621254069978047) +zone = ('tnz077', 0.0014156354688811094) + +[fips4703191172] +centroid = (0.61959031366166017, -1.500462367919621) +description = District 7, TN +station = ('ktha', 0.0044542488322960672) +zone = ('tnz077', 0.0014957551008889694) + +[fips4703191362] +centroid = (0.62071891336916984, -1.5020148208359774) +description = District 8, TN +station = ('ktha', 0.0041814520128369854) +zone = ('tnz077', 0.0013101834727234946) + +[fips4703191552] +centroid = (0.62152087470716866, -1.5013878287554907) +description = District 9, TN +station = ('ktha', 0.0051256173145628019) +zone = ('tnz077', 0.0022176646099121384) + +[fips4703191742] +centroid = (0.62163585699829005, -1.5044765030261602) +description = District 10, TN +station = ('ktha', 0.0041905803466121645) +zone = ('tnz077', 0.0028361354248920452) + +[fips4703191932] +centroid = (0.62045266339177807, -1.5032895220551712) +description = District 11, TN +station = ('ktha', 0.0033738199202799231) +zone = ('tnz077', 0.0013091561953547928) + +[fips4703192122] +centroid = (0.61999959337125277, -1.504278582688984) +description = District 12, TN +station = ('ktha', 0.0026336627889122625) +zone = ('tnz077', 0.0017178310623790181) + +[fips4703192312] +centroid = (0.61855393715182605, -1.504336422900395) +description = District 13, TN +station = ('ktha', 0.0013106713995665064) +zone = ('tnz077', 0.0018829033798227382) + +[fips4703192502] +centroid = (0.61780246818908735, -1.5029295653502399) +description = District 14, TN +station = ('ktha', 0.0019472525754421206) +zone = ('tnz077', 0.001707161795799035) + +[fips4703192692] +centroid = (0.61762084922712479, -1.5047721792547406) +description = District 15, TN +station = ('ktha', 0.00043873479158189078) +zone = ('tnz076', 0.0026949620870772907) + +[fips4703192882] +centroid = (0.61795392786157533, -1.5042756156292556) +description = District 16, TN +station = ('ktha', 0.00094346764894373037) +zone = ('tnz077', 0.0021891523481059492) + +[fips4703193072] +centroid = (0.61740699403387789, -1.504206919469897) +description = District 17, TN +station = ('ktha', 0.00088669756008116416) +zone = ('tnz077', 0.0025547379204524136) + +[fips4703193262] +centroid = (0.61746073272154678, -1.5051734653563591) +description = District 18, TN +station = ('ktha', 0.00010099531303549713) +zone = ('tnz076', 0.0023458145508227037) + +[fips4703193452] +centroid = (0.61699661476685641, -1.5044579850827966) +description = District 19, TN +station = ('ktha', 0.0008426568789783826) +zone = ('tnz076', 0.0025542418984692435) + +[fips4703193642] +centroid = (0.6169908726336174, -1.504979280023782) +description = District 20, TN +station = ('ktha', 0.00056623106073599376) +zone = ('tnz076', 0.0021810367782740011) + +[fips4703193832] +centroid = (0.61710746062765065, -1.5051762229765773) +description = District 21, TN +station = ('ktha', 0.00040094522406154817) +zone = ('tnz076', 0.0021146008755794973) + +[fips47033] +centroid = (0.62502530385895561, -1.5557053199642352) +description = Crockett County, TN +station = ('kmkl', 0.0048174184076506229) +zone = ('tnz051', 7.0071540844894044e-05) + +[fips4703390034] +centroid = (0.626923471593547, -1.556601476721964) +description = District 1, TN +station = ('kdyr', 0.0033206518190963389) +zone = ('tnz051', 0.0019761338512037825) + +[fips4703390224] +centroid = (0.62571949111564384, -1.558577433781317) +description = District 2, TN +station = ('kdyr', 0.0029590794212776984) +zone = ('tnz051', 0.0023626789793687328) + +[fips4703390414] +centroid = (0.62460366721825877, -1.5575217713832481) +description = District 3, TN +station = ('kdyr', 0.004353718873498582) +zone = ('tnz051', 0.0014873550914612564) + +[fips4703390604] +centroid = (0.62561466664076903, -1.556089222586504) +description = District 4, TN +station = ('kdyr', 0.0043673079553380135) +zone = ('tnz051', 0.00060626572948768492) + +[fips4703390794] +centroid = (0.62468424906982334, -1.5563478105684794) +description = District 5, TN +station = ('kdyr', 0.0048564330987512843) +zone = ('tnz051', 0.00059797109207130131) + +[fips4703390984] +centroid = (0.62487321586793687, -1.5537952665374375) +description = District 6, TN +station = ('kmkl', 0.0038601426018656146) +zone = ('tnz051', 0.0016189928296556169) + +[fips4703391174] +centroid = (0.62459213059190311, -1.5555202976102311) +description = District 7, TN +station = ('kmkl', 0.004392492924453581) +zone = ('tnz051', 0.00051554757729740269) + +[fips4703391364] +centroid = (0.62445388306185257, -1.5547953227455378) +description = District 8, TN +station = ('kmkl', 0.0039098729345488662) +zone = ('tnz051', 0.0010033035672668063) + +[fips4703391554] +centroid = (0.62361938878659662, -1.5555544711569853) +description = District 9, TN +station = ('kmkl', 0.0037521364444486434) +zone = ('tnz051', 0.0014554230960484556) + +[fips4703391744] +centroid = (0.62327318527617104, -1.5549176354195173) +description = District 10, TN +station = ('kmkl', 0.0031313778027959702) +zone = ('tnz051', 0.0019215455247469345) + +[fips4703391934] +centroid = (0.62325463242622225, -1.5539219425345474) +description = District 11, TN +station = ('kmkl', 0.0025310469192098236) +zone = ('tnz051', 0.0023536699394766489) + +[fips4703392124] +centroid = (0.62400920807502946, -1.5528606078164096) +description = District 12, TN +station = ('kmkl', 0.0027862167793022245) +zone = ('tnz051', 0.0025907214725688133) + +[fips4703440] +centroid = (0.61488337010854166, -1.5676872496252714) +description = Bartlett city, TN +station = ('knqa', 0.0023121358682077382) +zone = ('tnz088', 0.001328537876803118) + +[fips47035] +centroid = (0.62748771908742429, -1.4834384263956681) +description = Cumberland County, TN +station = ('kcsv', 0.0012521153665586504) +zone = ('tnz066', 6.0960506577368689e-05) + +[fips4703590036] +centroid = (0.62711706351417829, -1.4843066055254877) +description = District 1, TN +station = ('kcsv', 0.00063965974857467772) +zone = ('tnz066', 0.00073417765747280019) + +[fips4703590226] +centroid = (0.62753438919162263, -1.4839735094377446) +description = District 2, TN +station = ('kcsv', 0.00082301745367903195) +zone = ('tnz066', 0.00039173068086343997) + +[fips4703590416] +centroid = (0.62578043801312333, -1.4835110669991363) +description = District 3, TN +station = ('kcsv', 0.0020488371123206246) +zone = ('tnz066', 0.0016724325880205732) + +[fips4703590606] +centroid = (0.62912119018765833, -1.4832248853616865) +description = District 4, TN +station = ('kcsv', 0.0021983816051613903) +zone = ('tnz066', 0.0016831452981829415) + +[fips4703590796] +centroid = (0.62558874850137691, -1.4853406432941243) +description = District 5, TN +station = ('kcsv', 0.0018794175896286488) +zone = ('tnz066', 0.0023869725699452466) + +[fips4703590986] +centroid = (0.62685899913097842, -1.4807259752985586) +description = District 6, TN +station = ('kcsv', 0.003497564263927745) +zone = ('tnz066', 0.0023234556669188824) + +[fips4703591176] +centroid = (0.62954246030921224, -1.4854247681640704) +description = District 7, TN +station = ('kcsv', 0.0021266533328201296) +zone = ('tnz066', 0.0026057896377571273) + +[fips4703591366] +centroid = (0.62658355126842868, -1.4866504081779908) +description = District 8, TN +station = ('kcsv', 0.0016012109734477701) +zone = ('tnz066', 0.00269502982944463) + +[fips4703591556] +centroid = (0.62853856437675759, -1.4814456094557411) +description = District 9, TN +station = ('kcsv', 0.0030649415125597219) +zone = ('tnz066', 0.0019856896532607585) + +[fips4703680] +centroid = (0.63099593560368805, -1.4946180631061476) +description = Baxter town, TN +station = ('ksrb', 0.0022520865713606289) +zone = ('tnz032', 0.0019882317486197331) + +[fips47037] +centroid = (0.63127038862856411, -1.5146803261518498) +description = Davidson County, TN +station = ('kbna', 0.0016980011330935613) +zone = ('tnz027', 4.7319575283403733e-06) + +[fips4703760] +centroid = (0.63422617352998656, -1.453661765453121) +description = Bean Station city, TN +station = ('k0vg', 0.0055940456300194695) +zone = ('tnz039', 0.0021394717553191857) + +[fips4703790038] +centroid = (0.6327997682922093, -1.5167228151622885) +description = District 1, TN +station = ('kbna', 0.0039306590310186412) +zone = ('tnz027', 0.0022449435978559667) + +[fips4703790228] +centroid = (0.6319704750981241, -1.5150086923973201) +description = District 2, TN +station = ('kbna', 0.0023414960024826935) +zone = ('tnz027', 0.00074409607400699397) + +[fips4703790418] +centroid = (0.63344960673260431, -1.5148695722026433) +description = District 3, TN +station = ('kbna', 0.0034755420918689576) +zone = ('tnz027', 0.0021798300183554519) + +[fips4703790608] +centroid = (0.63284937054955082, -1.5137129599606394) +description = District 4, TN +station = ('kbna', 0.0025775108208783617) +zone = ('tnz027', 0.0017571683164622287) + +[fips4703790798] +centroid = (0.63168392694153164, -1.5143244186107829) +description = District 5, TN +station = ('kbna', 0.0017526426081039817) +zone = ('tnz027', 0.00049973076161293221) + +[fips4703790988] +centroid = (0.63133419786601697, -1.5141037391801611) +description = District 6, TN +station = ('kbna', 0.0013744973952847465) +zone = ('tnz027', 0.00046932876870711459) + +[fips4703791178] +centroid = (0.63163552896137387, -1.5134461689311796) +description = District 7, TN +station = ('kbna', 0.0013520804648782662) +zone = ('tnz027', 0.0010594991834229849) + +[fips4703791368] +centroid = (0.63215579415810086, -1.5138540174707855) +description = District 8, TN +station = ('kbna', 0.0019557805754485606) +zone = ('tnz027', 0.0011047436096116869) + +[fips4703791558] +centroid = (0.6324868307573267, -1.5127366402303661) +description = District 9, TN +station = ('kbna', 0.0021366472343345038) +zone = ('tnz027', 0.0019820570711173409) + +[fips4703791748] +centroid = (0.63392122960307817, -1.5140184449396159) +description = District 10, TN +station = ('kbna', 0.0036769684188610644) +zone = ('tnz027', 0.0026994443732074507) + +[fips4703791938] +centroid = (0.63266527322005051, -1.5121292656506722) +description = District 11, TN +station = ('kbna', 0.0023948262146309034) +zone = ('tnz027', 0.0024839406978598069) + +[fips4703792128] +centroid = (0.63131082790733284, -1.5110650685925613) +description = District 12, TN +station = ('kbna', 0.0017699471792891222) +zone = ('tnz027', 0.0029188299858181419) + +[fips4703792318] +centroid = (0.63059847177313133, -1.5122412285221876) +description = District 13, TN +station = ('kbna', 0.00059231974141156951) +zone = ('tnz027', 0.0020826373338173844) + +[fips4703792508] +centroid = (0.63125187068520039, -1.5119026521005934) +description = District 14, TN +station = ('kbna', 0.0012107974732951945) +zone = ('tnz027', 0.0022426287494736932) + +[fips4703792698] +centroid = (0.63148757740068229, -1.5131098614376128) +description = District 15, TN +station = ('kbna', 0.0011443157332244487) +zone = ('tnz027', 0.0012855184516618295) + +[fips4703792888] +centroid = (0.63027235700239626, -1.5138784171737285) +description = District 16, TN +station = ('kbna', 0.00078699816923948388) +zone = ('tnz027', 0.0011937743553089456) + +[fips4703793078] +centroid = (0.63066189703814879, -1.5142896167454982) +description = District 17, TN +station = ('kbna', 0.0011562420394040387) +zone = ('tnz027', 0.00068967936957490042) + +[fips4703793268] +centroid = (0.63062992260625228, -1.5150093032625582) +description = District 18, TN +station = ('kbna', 0.0017182082206594416) +zone = ('tnz027', 0.00069768638857921361) + +[fips4703793458] +centroid = (0.63119336724867359, -1.5147924635562902) +description = District 19, TN +station = ('kbna', 0.001736493160080808) +zone = ('tnz027', 0.00012187362322367346) + +[fips4703793648] +centroid = (0.63144350783706948, -1.5164025297912551) +description = District 20, TN +station = ('kbna', 0.0030233946134507242) +zone = ('tnz027', 0.0014002284829420614) + +[fips4703793838] +centroid = (0.63121223425788764, -1.5153353307668305) +description = District 21, TN +station = ('kbna', 0.0021384104923312399) +zone = ('tnz027', 0.00053236755410543521) + +[fips4703794028] +centroid = (0.62982513383486527, -1.5175524050623466) +description = District 22, TN +station = ('kbna', 0.0037884900274804427) +zone = ('tnz027', 0.0027355460185171016) + +[fips4703794218] +centroid = (0.63016325647085403, -1.5163782697146524) +description = District 23, TN +station = ('kbna', 0.0028088073831105198) +zone = ('tnz027', 0.0017652814179878367) + +[fips4703794408] +centroid = (0.63070891620819747, -1.5157460765529951) +description = District 24, TN +station = ('kbna', 0.0023182962952015872) +zone = ('tnz027', 0.001029979770211248) + +[fips4703794598] +centroid = (0.63020516182619446, -1.5150641415076558) +description = District 25, TN +station = ('kbna', 0.0017470107383582142) +zone = ('tnz027', 0.0011139114449957878) + +[fips4703794940] +centroid = (0.62962276290809649, -1.5139634147083005) +description = District 26, TN +station = ('kbna', 0.0011229080324208337) +zone = ('tnz027', 0.0017509404434384941) + +[fips4703795130] +centroid = (0.62928682193367258, -1.5137550922087826) +description = District 27, TN +station = ('kbna', 0.0012678146769557002) +zone = ('tnz027', 0.0021242014529940403) + +[fips4703795320] +centroid = (0.62972121693120142, -1.5127724020267395) +description = District 28, TN +station = ('kbna', 0.00064315336651042643) +zone = ('tnz027', 0.0021886107257045144) + +[fips4703795510] +centroid = (0.63003157137879107, -1.5119749785447958) +description = District 29, TN +station = ('kbna', 0.00082132621815438349) +zone = ('tnz027', 0.0025141687533951139) + +[fips4703795700] +centroid = (0.62947280421876517, -1.5132399757333488) +description = District 30, TN +station = ('kbna', 0.00092147130337940438) +zone = ('tnz027', 0.0021453332992004627) + +[fips4703795890] +centroid = (0.62866187188841094, -1.513093123730086) +description = District 31, TN +station = ('kbna', 0.0016993654342198755) +zone = ('tnz027', 0.0029110662982008146) + +[fips4703796080] +centroid = (0.62881732836488613, -1.5119184822369089) +description = District 32, TN +station = ('kmqy', 0.0015428612997394303) +zone = ('tnz027', 0.0033198285436059076) + +[fips4703796270] +centroid = (0.63011681325945845, -1.5107890622246507) +description = District 33, TN +station = ('kmqy', 0.0017459647586421938) +zone = ('tnz028', 0.003833333991614893) + +[fips4703796460] +centroid = (0.62953970268899406, -1.5155781235190755) +description = District 34, TN +station = ('kbna', 0.0023052377703532156) +zone = ('tnz027', 0.0018808032364140098) + +[fips4703796650] +centroid = (0.63013721615841423, -1.5178610316339769) +description = District 35, TN +station = ('kbna', 0.0040061058094551247) +zone = ('tnz027', 0.0028093934500209275) + +[fips47039] +centroid = (0.62139693887698455, -1.5377639461189716) +description = Decatur County, TN +station = ('kcrx', 0.013840489008460119) +zone = ('tnz055', 2.1401367059651507e-05) + +[fips4703990040] +centroid = (0.61891234051372301, -1.5375928514923987) +description = District 1, TN +station = ('kcrx', 0.011854598603063739) +zone = ('tnz055', 0.0024823527505666242) + +[fips4703990230] +centroid = (0.61879161608936262, -1.5394359191825047) +description = District 2, TN +station = ('kcrx', 0.010906411049694628) +zone = ('tnz055', 0.0029234467211466013) + +[fips4703990420] +centroid = (0.62103551609548158, -1.5383152956296766) +description = District 3, TN +station = ('kcrx', 0.013302659449662286) +zone = ('tnz055', 0.000555654021415171) + +[fips4703990610] +centroid = (0.62024516119700845, -1.5368174366123224) +description = District 4, TN +station = ('kcrx', 0.013300635194960194) +zone = ('tnz055', 0.0013906018915860953) + +[fips4703990800] +centroid = (0.62176474956354988, -1.5375251327174211) +description = District 5, TN +station = ('kcrx', 0.014255912608150519) +zone = ('tnz055', 0.00043203550363198447) + +[fips4703990990] +centroid = (0.62193062565565937, -1.538335384369367) +description = District 6, TN +station = ('kmkl', 0.011033722939411879) +zone = ('tnz055', 0.00070018822931010934) + +[fips4703991180] +centroid = (0.6239037727349166, -1.5367832281589835) +description = District 7, TN +station = ('kmkl', 0.012536377990558817) +zone = ('tnz055', 0.0026435350283447517) + +[fips4703991370] +centroid = (0.62256653636862347, -1.53765533427962) +description = District 8, TN +station = ('kmkl', 0.011633080251952399) +zone = ('tnz055', 0.001181940237929328) + +[fips4703991560] +centroid = (0.62408675305369565, -1.5383437968563618) +description = District 9, TN +station = ('kmkl', 0.011340753935066301) +zone = ('tnz055', 0.0027346140056939412) + +[fips47041] +centroid = (0.62800821117695405, -1.4980788590266347) +description = DeKalb County, TN +station = ('ksrb', 0.0044650479278657311) +zone = ('tnz064', 4.3707541825730225e-05) + +[fips4704190042] +centroid = (0.6293453079169069, -1.4993685526241034) +description = District 1, TN +station = ('ksrb', 0.0053166485412382974) +zone = ('tnz064', 0.0017361586758027304) + +[fips4704190232] +centroid = (0.62793211482156708, -1.4998904060704497) +description = District 2, TN +station = ('ksrb', 0.0059005882220951643) +zone = ('tnz064', 0.0014775961452602199) + +[fips4704190422] +centroid = (0.62821880260449969, -1.498144151793952) +description = District 3, TN +station = ('ksrb', 0.0044599234389356129) +zone = ('tnz064', 0.00026082091255259885) + +[fips4704190612] +centroid = (0.62853762189896145, -1.4966906066863059) +description = District 4, TN +station = ('ksrb', 0.0032419160817018537) +zone = ('tnz064', 0.0012502713307562937) + +[fips4704190802] +centroid = (0.62725897623565796, -1.4960421994158974) +description = District 5, TN +station = ('ksrb', 0.0033249257301340754) +zone = ('tnz064', 0.0017834152241767826) + +[fips4704190992] +centroid = (0.62586829788766885, -1.4969571010097928) +description = District 6, TN +station = ('ksrb', 0.004806391606513024) +zone = ('tnz064', 0.0022814910182925312) + +[fips4704191182] +centroid = (0.62697581401781433, -1.4983176898814776) +description = District 7, TN +station = ('ksrb', 0.0050360669562455086) +zone = ('tnz064', 0.0010110744978846218) + +[fips4704240] +centroid = (0.618873437124696, -1.4952103580411045) +description = Beersheba Springs town, TN +station = ('kbgf', 0.007487165823644123) +zone = ('tnz079', 0.0014447006912097927) + +[fips47043] +centroid = (0.63085856073826352, -1.5247921529726667) +description = Dickson County, TN +station = ('kckv', 0.008255872565040661) +zone = ('tnz025', 0.00012212704640439127) + +[fips4704390044] +centroid = (0.63131892623506203, -1.5249801423863989) +description = District 1, TN +station = ('kckv', 0.0077845869549899452) +zone = ('tnz025', 0.00047376271570040906) + +[fips4704390234] +centroid = (0.62954860386817924, -1.5273780327924216) +description = District 2, TN +station = ('kckv', 0.009627156185169192) +zone = ('tnz025', 0.0025879676453936648) + +[fips4704390424] +centroid = (0.6328359315143105, -1.5261528814706915) +description = District 3, TN +station = ('kckv', 0.0062556796442236606) +zone = ('tnz025', 0.0022616031512913202) + +[fips4704390614] +centroid = (0.63268103354319594, -1.5229195019517394) +description = District 4, TN +station = ('kckv', 0.0067823409836050164) +zone = ('tnz025', 0.0022529239333446398) + +[fips4704390804] +centroid = (0.63095786997270209, -1.5221202109674958) +description = District 5, TN +station = ('kckv', 0.0086219105391511421) +zone = ('tnz025', 0.0020527933788030356) + +[fips4704390994] +centroid = (0.62844867992027986, -1.5230714328631254) +description = District 6, TN +station = ('kbna', 0.0084328638344518241) +zone = ('tnz025', 0.0027864121824936481) + +[fips4704391184] +centroid = (0.62853282224351859, -1.5251175521584086) +description = District 7, TN +station = ('kckv', 0.010559319546760077) +zone = ('tnz025', 0.0024162045910446251) + +[fips4704391374] +centroid = (0.62935942763055552, -1.5257871477259362) +description = District 8, TN +station = ('kckv', 0.0097221724135882811) +zone = ('tnz025', 0.0018067273540793396) + +[fips4704391564] +centroid = (0.63037829848799221, -1.52576210225117) +description = District 9, TN +station = ('kckv', 0.0087032023619631489) +zone = ('tnz025', 0.0010410032937583891) + +[fips4704391754] +centroid = (0.63037814140835957, -1.5242206972689787) +description = District 10, TN +station = ('kckv', 0.0087853374704840101) +zone = ('tnz025', 0.00064926950466098678) + +[fips4704391944] +centroid = (0.62939620171789501, -1.524503213714999) +description = District 11, TN +station = ('kckv', 0.0097337454006193522) +zone = ('tnz025', 0.0015300054508871938) + +[fips4704392134] +centroid = (0.62943323760462233, -1.5225897743494525) +description = District 12, TN +station = ('kbna', 0.007876553362031186) +zone = ('tnz025', 0.0022396288093024567) + +[fips4704460] +centroid = (0.62116330910331252, -1.5071439769884456) +description = Bell Buckle town, TN +station = ('ktha', 0.0039646341815473543) +zone = ('tnz075', 0.0020080278453867952) + +[fips47045] +centroid = (0.62926442935936944, -1.5602947854054019) +description = Dyer County, TN +station = ('kdyr', 0.00094620081341843278) +zone = ('tnz019', 0.00023414537504777642) + +[fips4704590046] +centroid = (0.62761964852558261, -1.5591116790653523) +description = District 1, TN +station = ('kdyr', 0.001204752243020818) +zone = ('tnz019', 0.0020906037454000081) + +[fips4704590236] +centroid = (0.63036238108521403, -1.5578395609334514) +description = District 2, TN +station = ('kdyr', 0.0028657237350547316) +zone = ('tnz019', 0.0024248678055517094) + +[fips4704590426] +centroid = (0.63095884735708319, -1.5570444238328278) +description = District 3, TN +station = ('kdyr', 0.0037415102658906363) +zone = ('tnz019', 0.003268871266759467) + +[fips4704590616] +centroid = (0.63084252116243766, -1.560456385440844) +description = District 4, TN +station = ('kdyr', 0.0025262456085784622) +zone = ('tnz019', 0.0014968307761761266) + +[fips4704590806] +centroid = (0.62897575190108956, -1.5630574496250911) +description = District 5, TN +station = ('kdyr', 0.0023062238294762265) +zone = ('tnz019', 0.0020491755941255351) + +[fips4704590996] +centroid = (0.62875133746586809, -1.5602774019260521) +description = District 6, TN +station = ('kdyr', 0.00043446970271311333) +zone = ('tnz019', 0.00064069552163512674) + +[fips4704591186] +centroid = (0.62912199303911431, -1.5600431438338493) +description = District 7, TN +station = ('kdyr', 0.00083503200987869019) +zone = ('tnz019', 0.00047890700009082073) + +[fips4704591376] +centroid = (0.62895191070350742, -1.5595835986417992) +description = District 8, TN +station = ('kdyr', 0.00087186189944771621) +zone = ('tnz019', 0.00088712846180341489) + +[fips4704591566] +centroid = (0.62971697578111918, -1.5595094919617596) +description = District 9, TN +station = ('kdyr', 0.0015458970154430198) +zone = ('tnz019', 0.000929583000638316) + +[fips4704591756] +centroid = (0.62926442935936944, -1.5602947854054019) +description = District 10, TN +station = ('kdyr', 0.00094620081341843278) +zone = ('tnz019', 0.00023414537504777642) + +[fips4704620] +centroid = (0.63005239315676731, -1.5159284460065359) +description = Belle Meade city, TN +station = ('kbna', 0.0024576395253644756) +zone = ('tnz027', 0.0015845790754568732) + +[fips47047] +centroid = (0.61430341465139648, -1.5605652590795833) +description = Fayette County, TN +station = ('kolv', 0.0065489596491566642) +zone = ('tnz089', 8.7170392009981991e-06) + +[fips4704720] +centroid = (0.62344658373735662, -1.5548786796706131) +description = Bells city, TN +station = ('kmkl', 0.0032173654917910218) +zone = ('tnz051', 0.0017738629684627767) + +[fips4704790048] +centroid = (0.61491834650675159, -1.559894895567185) +description = District 1, TN +station = ('kolv', 0.0073539724539231225) +zone = ('tnz089', 0.00082777056144316477) + +[fips4704790238] +centroid = (0.61658958653199891, -1.5579250820667989) +description = District 2, TN +station = ('kmkl', 0.0068346758165352076) +zone = ('tnz089', 0.0031467489979583917) + +[fips4704790428] +centroid = (0.61677406783393474, -1.5615758919829508) +description = District 3, TN +station = ('knqa', 0.0056827992621946042) +zone = ('tnz089', 0.0026003454362863308) + +[fips4704790618] +centroid = (0.61521979977515617, -1.5618727899420075) +description = District 4, TN +station = ('kolv', 0.0063588660030376304) +zone = ('tnz089', 0.0013996944757004171) + +[fips4704790808] +centroid = (0.61237337720466367, -1.563052440530138) +description = District 5, TN +station = ('kolv', 0.0037928462544422627) +zone = ('tnz089', 0.0027989620412838191) + +[fips4704790998] +centroid = (0.61328611459028659, -1.5610587509255847) +description = District 6, TN +station = ('kolv', 0.0056617501555291851) +zone = ('tnz089', 0.0010929983028080549) + +[fips4704791188] +centroid = (0.61259590668429287, -1.5587423673956304) +description = District 7, TN +station = ('kolv', 0.0071402513860278271) +zone = ('tnz089', 0.0022735599955294168) + +[fips4704791378] +centroid = (0.61500240156352781, -1.5634188549533017) +description = District 8, TN +station = ('knqa', 0.0046665061319020613) +zone = ('tnz089', 0.0024251529665611999) + +[fips47049] +centroid = (0.63488234751556638, -1.4823553099684657) +description = Fentress County, TN +station = ('kcsv', 0.0077334462167487775) +zone = ('tnz034', 7.7278387408190896e-05) + +[fips4704990050] +centroid = (0.63565039710619897, -1.4816447515233937) +description = District 1, TN +station = ('kekq', 0.0076121502521771722) +zone = ('tnz034', 0.00089418733661148441) + +[fips4704990240] +centroid = (0.63661261457611606, -1.4834340107126605) +description = District 2, TN +station = ('kekq', 0.0069105078697429493) +zone = ('tnz011', 0.0018388385727384812) + +[fips4704990430] +centroid = (0.63410906193717775, -1.4820407143707934) +description = District 3, TN +station = ('kcsv', 0.0070745304694821804) +zone = ('tnz034', 0.00088617727327448728) + +[fips4704990620] +centroid = (0.63230472310317354, -1.4836205689564061) +description = District 4, TN +station = ('kcsv', 0.004982265538046868) +zone = ('tnz034', 0.0028453961142382704) + +[fips4704990810] +centroid = (0.63601607849107689, -1.4795437241698426) +description = District 5, TN +station = ('kekq', 0.0073260522986445835) +zone = ('tnz034', 0.0024933856388117924) + +[fips4705040] +centroid = (0.61391204201992933, -1.4774587887519954) +description = Benton town, TN +station = ('kcha', 0.0082017333155403067) +zone = ('tnz101', 0.0010133080245681777) + +[fips47051] +centroid = (0.61358666028747999, -1.5027145756929794) +description = Franklin County, TN +station = ('kbgf', 0.00060358842585413891) +zone = ('tnz097', 0.00010152241831826091) + +[fips4705140] +centroid = (0.63040624120931665, -1.5143777558727241) +description = Berry Hill city, TN +station = ('kbna', 0.0011871200071688702) +zone = ('tnz027', 0.00090261633712349597) + +[fips4705190052] +centroid = (0.61402793188226179, -1.5033984655070807) +description = District 1, TN +station = ('kbgf', 0.0010322594076464815) +zone = ('tnz097', 0.00080317433670018209) + +[fips4705190242] +centroid = (0.61470276343754526, -1.5032799576508704) +description = District 2, TN +station = ('kbgf', 0.0011904001061236575) +zone = ('tnz097', 0.0012656146731463392) + +[fips4705190432] +centroid = (0.61266844256800579, -1.5053244363366567) +description = District 3, TN +station = ('kbgf', 0.0029098672015084605) +zone = ('tnz097', 0.0024090154981186098) + +[fips4705190622] +centroid = (0.61340577436380328, -1.5024205575271885) +description = District 4, TN +station = ('kbgf', 0.00060384513422331117) +zone = ('tnz097', 0.00021515731992811173) + +[fips4705190812] +centroid = (0.61160475165537787, -1.5001080486281735) +description = District 5, TN +station = ('kbgf', 0.0028848058840686532) +zone = ('tnz097', 0.0028264142367989114) + +[fips4705191002] +centroid = (0.61577842730884202, -1.5017433348708296) +description = District 6, TN +station = ('kbgf', 0.0018431545032358374) +zone = ('tnz097', 0.0023159788991696261) + +[fips4705191192] +centroid = (0.61570383193661171, -1.5047112672638459) +description = District 7, TN +station = ('ktha', 0.0018547674937626369) +zone = ('tnz076', 0.0020727888106181068) + +[fips4705191382] +centroid = (0.61509052323746094, -1.5027628340467969) +description = District 8, TN +station = ('kbgf', 0.0012370981949969167) +zone = ('tnz097', 0.0015281334975545072) + +[fips47053] +centroid = (0.62817356367028798, -1.5521872074311125) +description = Gibson County, TN +station = ('kdyr', 0.0065850239300132623) +zone = ('tnz020', 8.7221317026387507e-05) + +[fips4705380] +centroid = (0.61496129905964325, -1.5465669156271329) +description = Bethel Springs town, TN +station = ('kcrx', 0.0054948908993077477) +zone = ('tnz091', 0.0012527971704797652) + +[fips4705390054] +centroid = (0.6257485857542745, -1.5497661739592088) +description = District 1, TN +station = ('kmkl', 0.0047359221783515688) +zone = ('tnz020', 0.0031751997678944851) + +[fips4705390244] +centroid = (0.62539924065119534, -1.5513341079460301) +description = District 2, TN +station = ('kmkl', 0.0040868983981051307) +zone = ('tnz020', 0.0029383635591100298) + +[fips4705390434] +centroid = (0.62502619397687409, -1.5513678626137639) +description = District 3, TN +station = ('kmkl', 0.0037131353540875069) +zone = ('tnz020', 0.0032971087499894277) + +[fips4705390624] +centroid = (0.62499837342859732, -1.5518446691121164) +description = District 4, TN +station = ('kmkl', 0.0036613334563113859) +zone = ('tnz020', 0.0032712315171284805) + +[fips4705390814] +centroid = (0.6254585818457632, -1.5528799460645217) +description = District 5, TN +station = ('kmkl', 0.0041992264633229116) +zone = ('tnz020', 0.0028595605788776213) + +[fips4705391004] +centroid = (0.62548053808775328, -1.5516856347106744) +description = District 6, TN +station = ('kmkl', 0.0041465997456562338) +zone = ('tnz020', 0.0028058296393783204) + +[fips4705391194] +centroid = (0.6268949005536919, -1.5517039955744056) +description = District 7, TN +station = ('kmkl', 0.0055597052204159622) +zone = ('tnz020', 0.001414762111198675) + +[fips4705391384] +centroid = (0.62712791946212576, -1.5544734316715925) +description = District 8, TN +station = ('kdyr', 0.0048829155308649889) +zone = ('tnz020', 0.0021830329343113177) + +[fips4705391574] +centroid = (0.62796848748317868, -1.5531311862103463) +description = District 9, TN +station = ('kdyr', 0.0058306452070716478) +zone = ('tnz020', 0.00083280059803012973) + +[fips4705391764] +centroid = (0.62770297054407276, -1.5522460250269048) +description = District 10, TN +station = ('kmkl', 0.0063723573863516689) +zone = ('tnz020', 0.00055991238024079586) + +[fips4705391954] +centroid = (0.62825437241465532, -1.5494229026019264) +description = District 11, TN +station = ('kmkl', 0.0072004553982546694) +zone = ('tnz020', 0.0022198690212767301) + +[fips4705392144] +centroid = (0.62650186985943535, -1.5490435552890054) +description = District 12, TN +station = ('kmkl', 0.0056573143820531436) +zone = ('tnz020', 0.0030791054537576286) + +[fips4705392334] +centroid = (0.62682369112021052, -1.5493253561500324) +description = District 13, TN +station = ('kmkl', 0.005867545708945144) +zone = ('tnz020', 0.0027111902008944678) + +[fips4705392524] +centroid = (0.62713989242079426, -1.5492665909141177) +description = District 14, TN +station = ('kmkl', 0.0061804017458648268) +zone = ('tnz020', 0.0026004878441383567) + +[fips4705392714] +centroid = (0.62703543446506249, -1.5488892856364218) +description = District 15, TN +station = ('kmkl', 0.0061961956418259611) +zone = ('tnz020', 0.0029214240878699233) + +[fips4705392904] +centroid = (0.63057599193236569, -1.5546903586443228) +description = District 16, TN +station = ('kdyr', 0.0050830431813118559) +zone = ('tnz020', 0.0030869782703243768) + +[fips4705393094] +centroid = (0.62909193846939493, -1.5501194111465197) +description = District 17, TN +station = ('kmkl', 0.0078862903207141365) +zone = ('tnz020', 0.0018534564670107606) + +[fips4705393284] +centroid = (0.63028309077729594, -1.5515483122051277) +description = District 18, TN +station = ('kdyr', 0.0073618521915713667) +zone = ('tnz020', 0.0020847305725605306) + +[fips4705393474] +centroid = (0.62930612527519958, -1.5532617019318102) +description = District 19, TN +station = ('kdyr', 0.0057964996875764802) +zone = ('tnz020', 0.0013712567232380746) + +[fips47055] +centroid = (0.61440342201753584, -1.5190528820735787) +description = Giles County, TN +station = ('kmdq', 0.0090650411605270789) +zone = ('tnz095', 1.1751887477695613e-05) + +[fips4705500] +centroid = (0.63677058432671407, -1.5063678988832538) +description = Bethpage CDP, TN +station = ('kbna', 0.0083040706802463577) +zone = ('tnz008', 0.0021458065049250875) + +[fips4705590056] +centroid = (0.61158290013314287, -1.5181702167109674) +description = District 1, TN +station = ('kdcu', 0.0068444332110365073) +zone = ('tnz095', 0.0029007788798136439) + +[fips4705590246] +centroid = (0.6126894039723223, -1.5206450412304178) +description = District 2, TN +station = ('kdcu', 0.0083258202162982305) +zone = ('tnz095', 0.0021495568321511452) + +[fips4705590436] +centroid = (0.61606422497385604, -1.5210192398220455) +description = District 3, TN +station = ('kmdq', 0.01136806152492844) +zone = ('tnz095', 0.0023218745570641854) + +[fips4705590626] +centroid = (0.61658010939416052, -1.517879497217463) +description = District 4, TN +station = ('kmdq', 0.010029384442811226) +zone = ('tnz095', 0.0023836001373358259) + +[fips4705590816] +centroid = (0.61379667575637253, -1.5176011172017698) +description = District 5, TN +station = ('kmdq', 0.0077779277317281013) +zone = ('tnz095', 0.0013219167587746933) + +[fips4705591006] +centroid = (0.6145387024878578, -1.5195901642305125) +description = District 6, TN +station = ('kmdq', 0.0094871224185431504) +zone = ('tnz095', 0.00046918094246816973) + +[fips4705591196] +centroid = (0.61425997340631444, -1.5187466640563163) +description = District 7, TN +station = ('kmdq', 0.008782211035228223) +zone = ('tnz095', 0.00027750172090849483) + +[fips47057] +centroid = (0.63316117362041957, -1.457515609521157) +description = Grainger County, TN +station = ('k1a6', 0.0066347864838209687) +zone = ('tnz038', 2.2094859753374904e-05) + +[fips4705790058] +centroid = (0.63252028871908739, -1.4575892624155911) +description = District 1, TN +station = ('k1a6', 0.0071771895965946709) +zone = ('tnz038', 0.00062154268055263637) + +[fips4705790248] +centroid = (0.63282422035502961, -1.456598508812404) +description = District 2, TN +station = ('k1a6', 0.007301881354069303) +zone = ('tnz038', 0.00080507845751852933) + +[fips4705790438] +centroid = (0.63144630036387273, -1.4598341921659688) +description = District 3, TN +station = ('k1a6', 0.0076455392257068228) +zone = ('tnz038', 0.0025215502080992483) + +[fips4705790628] +centroid = (0.63413813912251593, -1.4579857139551817) +description = District 4, TN +station = ('k1a6', 0.0055977313305362432) +zone = ('tnz038', 0.0010678979385701033) + +[fips4705790818] +centroid = (0.63370250494121816, -1.4542248959362767) +description = District 5, TN +station = ('k0vg', 0.0061999606666600423) +zone = ('tnz039', 0.0017672046705745565) + +[fips4705860] +centroid = (0.63237390795472259, -1.5373817364660773) +description = Big Sandy town, TN +station = ('kcey', 0.0084001307111926833) +zone = ('tnz022', 0.0028474555334166707) + +[fips47059] +centroid = (0.63144263517244348, -1.4459659455559621) +description = Greene County, TN +station = ('ktri', 0.0080529429699952599) +zone = ('tnz042', 0.000390185445532647) + +[fips4705990060] +centroid = (0.63369201551241383, -1.4450855142147936) +description = District 1, TN +station = ('ktri', 0.0062323049973722925) +zone = ('tnz042', 0.0020266493649080974) + +[fips4705990250] +centroid = (0.63181678140419351, -1.4431031517970858) +description = District 2, TN +station = ('ktri', 0.006124054108700365) +zone = ('tnz042', 0.0023883772363835379) + +[fips4705990440] +centroid = (0.63015699073883935, -1.4440481079607008) +description = District 3, TN +station = ('ktri', 0.0078970887703807106) +zone = ('tnz043', 0.0018274776502611074) + +[fips4705990630] +centroid = (0.62897528066219166, -1.4456197594988289) +description = District 4, TN +station = ('ktri', 0.0096096159607342788) +zone = ('tnz043', 0.00060752641179555073) + +[fips4705990820] +centroid = (0.63061536656029071, -1.4490302724835662) +description = District 5, TN +station = ('k0vg', 0.0095162697480836427) +zone = ('tnz042', 0.0026836273100768761) + +[fips4705991010] +centroid = (0.63184519536441597, -1.4479977356980862) +description = District 6, TN +station = ('k0vg', 0.0086528139423256625) +zone = ('tnz042', 0.0015614531418737369) + +[fips4705991200] +centroid = (0.63135713149238826, -1.444946219487192) +description = District 7, TN +station = ('ktri', 0.0074864562005086443) +zone = ('tnz042', 0.0010154054040826129) + +[fips4705991390] +centroid = (0.63111519395147686, -1.445750711552606) +description = District 8, TN +station = ('ktri', 0.0081302232432943714) +zone = ('tnz042', 0.00075310560305566314) + +[fips47061] +centroid = (0.61762442715209132, -1.4961344226135729) +description = Grundy County, TN +station = ('kbgf', 0.0061170883743761652) +zone = ('tnz079', 2.0524855317562245e-05) + +[fips4706190062] +centroid = (0.61815120242692823, -1.4964712537059155) +description = District 1, TN +station = ('kbgf', 0.0062390394040924982) +zone = ('tnz079', 0.00057389006479780077) + +[fips4706190252] +centroid = (0.61694582568562339, -1.4944062324948333) +description = District 2, TN +station = ('kbgf', 0.0069819594727509853) +zone = ('tnz079', 0.001578012344787867) + +[fips4706190442] +centroid = (0.61539792807861471, -1.4970382588200106) +description = District 3, TN +station = ('kbgf', 0.004406217279522155) +zone = ('tnz079', 0.0023623011568557448) + +[fips47063] +centroid = (0.63213027744443673, -1.4532670941493673) +description = Hamblen County, TN +station = ('k0vg', 0.0076309561006292371) +zone = ('tnz039', 2.2179796548921385e-05) + +[fips4706340] +centroid = (0.63089983777507319, -1.4607430898272373) +description = Blaine city, TN +station = ('ktys', 0.0070760779936042189) +zone = ('tnz037', 0.0031670174189737813) + +[fips4706390064] +centroid = (0.63217638904327433, -1.4539304763447578) +description = District 1, TN +station = ('k0vg', 0.0076512251842759168) +zone = ('tnz039', 0.00053198006467909881) + +[fips4706390254] +centroid = (0.63232479438957145, -1.4534212067223184) +description = District 2, TN +station = ('k0vg', 0.0074495505294541568) +zone = ('tnz039', 0.00024507375470865099) + +[fips4706390444] +centroid = (0.63207365896350198, -1.4531319533053855) +description = District 3, TN +station = ('k0vg', 0.0076785263970115059) +zone = ('tnz039', 0.0001218356875731136) + +[fips4706390634] +centroid = (0.63172094537496648, -1.4535461897500537) +description = District 4, TN +station = ('k0vg', 0.0080608125959226607) +zone = ('tnz039', 0.00044531090217278697) + +[fips4706390824] +centroid = (0.63214968550571893, -1.4544358364296728) +description = District 5, TN +station = ('k0vg', 0.0077521680260115283) +zone = ('tnz039', 0.0009363263489514976) + +[fips4706391014] +centroid = (0.63270075576374363, -1.4545467695569296) +description = District 6, TN +station = ('k0vg', 0.007234619201903084) +zone = ('tnz039', 0.0011831440055087592) + +[fips4706391204] +centroid = (0.63288977492173459, -1.4531545204126137) +description = District 7, TN +station = ('k0vg', 0.0068664387922014727) +zone = ('tnz039', 0.00078654869628248033) + +[fips4706391394] +centroid = (0.6325804502184037, -1.452489986299917) +description = District 8, TN +station = ('k0vg', 0.0071507902450033004) +zone = ('tnz039', 0.00079008482798058062) + +[fips4706391584] +centroid = (0.63304449835992382, -1.4514792137702095) +description = District 9, TN +station = ('k0vg', 0.0067296006071333684) +zone = ('tnz039', 0.0017248617051906737) + +[fips4706391774] +centroid = (0.63155110738545484, -1.4522347668033979) +description = District 10, TN +station = ('k0vg', 0.0081813578527220668) +zone = ('tnz039', 0.0010090041505935519) + +[fips4706391964] +centroid = (0.63127393164694567, -1.4545097860300797) +description = District 11, TN +station = ('k0vg', 0.0086220517668062682) +zone = ('tnz039', 0.0012995694038594277) + +[fips4706392154] +centroid = (0.63153442203780585, -1.4554239545856895) +description = District 12, TN +station = ('k0vg', 0.0085446670944877862) +zone = ('tnz039', 0.0018259217193598366) + +[fips4706392344] +centroid = (0.63145005282176447, -1.4562284466511037) +description = District 13, TN +station = ('k1a6', 0.0086347944634026369) +zone = ('tnz038', 0.0019834870582250219) + +[fips4706392534] +centroid = (0.63222565968805811, -1.4553244533650334) +description = District 14, TN +station = ('k0vg', 0.0078596831183541157) +zone = ('tnz039', 0.0016564091139455578) + +[fips47065] +centroid = (0.61364355802109505, -1.4870605954587945) +description = Hamilton County, TN +station = ('kcha', 0.0021967880919472409) +zone = ('tnz099', 0.00065559808311748736) + +[fips4706590066] +centroid = (0.61633466374145263, -1.4862057506444604) +description = District 1, TN +station = ('kcha', 0.0049328160989741861) +zone = ('tnz099', 0.0023179108708081429) + +[fips4706590256] +centroid = (0.6131972598780675, -1.4892606178875185) +description = District 2, TN +station = ('kcha', 0.0025344878534764768) +zone = ('tnz099', 0.0024753514556001342) + +[fips4706590446] +centroid = (0.61364355802109505, -1.4870605954587945) +description = District 3, TN +station = ('kcha', 0.0021967880919472409) +zone = ('tnz099', 0.00065559808311748736) + +[fips4706590636] +centroid = (0.61202322925012853, -1.488013492870506) +description = District 4, TN +station = ('kcha', 0.00099640658189712036) +zone = ('tnz099', 0.0023928116410695632) + +[fips4706590826] +centroid = (0.61241968078971909, -1.4856487637202713) +description = District 5, TN +station = ('kcha', 0.0014855452361093753) +zone = ('tnz099', 0.0017183753502620506) + +[fips4706591016] +centroid = (0.61108553365620211, -1.4898509406004206) +description = District 6, TN +station = ('kcha', 0.0023459086730389456) +zone = ('gaz001', 0.0034284056887404911) + +[fips4706591206] +centroid = (0.61128910886015464, -1.4858132784555644) +description = District 7, TN +station = ('kcha', 0.0010011001152307397) +zone = ('gaz003', 0.0021089331715520411) + +[fips4706591396] +centroid = (0.61100018705577952, -1.4872406959843079) +description = District 8, TN +station = ('kcha', 0.00048183670376972774) +zone = ('gaz003', 0.002106958722850767) + +[fips4706591586] +centroid = (0.61398988370456831, -1.4842503710169883) +description = District 9, TN +station = ('kcha', 0.0034061649839017142) +zone = ('tnz099', 0.0017623344172596695) + +[fips4706640] +centroid = (0.63855879631842982, -1.4399870933104528) +description = Bloomingdale CDP, TN +station = ('ktri', 0.0025625974127716725) +zone = ('vaz005', 0.0026126878565502919) + +[fips47067] +centroid = (0.63741902650370741, -1.452593082898832) +description = Hancock County, TN +station = ('k0vg', 0.0023159906818109779) +zone = ('tnz015', 8.668239985750474e-05) + +[fips4706740] +centroid = (0.63762076911194543, -1.4369098509463838) +description = Blountville CDP, TN +station = ('ktri', 0.0015282051297646735) +zone = ('tnz017', 0.00049248219935658477) + +[fips4706790068] +centroid = (0.63593013847870861, -1.4535343040578477) +description = District 1, TN +station = ('k0vg', 0.0039041322648130624) +zone = ('tnz015', 0.001740204594796399) + +[fips4706790258] +centroid = (0.63711954545735772, -1.451586411892867) +description = District 2, TN +station = ('k0vg', 0.0026967706254866618) +zone = ('tnz015', 0.00080532565306203551) + +[fips4706790448] +centroid = (0.63797487896388272, -1.4521320192703329) +description = District 3, TN +station = ('k0vg', 0.0017717624522334242) +zone = ('tnz015', 0.00059474506147814163) + +[fips4706790638] +centroid = (0.63822507191215594, -1.4488167489028769) +description = District 4, TN +station = ('k0vg', 0.0032639292978778192) +zone = ('tnz016', 0.0023946726383939345) + +[fips4706790828] +centroid = (0.63820259207139041, -1.4548424108789249) +description = District 5, TN +station = ('k0vg', 0.0024706445464951574) +zone = ('tnz015', 0.0020270256851858681) + +[fips4706791018] +centroid = (0.63764761227584121, -1.4524710843841178) +description = District 6, TN +station = ('k0vg', 0.0020837722528239244) +zone = ('tnz015', 0.00019160046191783709) + +[fips4706791208] +centroid = (0.63710570499638941, -1.4542149824661255) +description = District 7, TN +station = ('k0vg', 0.0029933934926671163) +zone = ('tnz015', 0.0014254269712089688) + +[fips47069] +centroid = (0.61467234234868307, -1.553151693829057) +description = Hardeman County, TN +station = ('kmkl', 0.0067439094170388021) +zone = ('tnz090', 0.00020440090301957628) + +[fips4706960] +centroid = (0.63633803937819233, -1.4360200471871323) +description = Bluff City city, TN +station = ('ktri', 0.0017186198461252959) +zone = ('tnz017', 0.001002736353672538) + +[fips4706990070] +centroid = (0.61591367287257903, -1.5540977844566857) +description = District 1, TN +station = ('kmkl', 0.0057143650457324785) +zone = ('tnz090', 0.0016052414639810362) + +[fips4706990260] +centroid = (0.61398761477654074, -1.5533330509916319) +description = District 2, TN +station = ('kcrx', 0.0072793715029276481) +zone = ('tnz090', 0.0004969742856170945) + +[fips4706990450] +centroid = (0.61684203095500734, -1.5558704455647665) +description = District 3, TN +station = ('kmkl', 0.0055428049359636617) +zone = ('tnz090', 0.0032045918526008494) + +[fips4706990640] +centroid = (0.61387820008573313, -1.5553630783512116) +description = District 4, TN +station = ('kmkl', 0.0079787581121890643) +zone = ('tnz090', 0.001848726195866986) + +[fips4706990830] +centroid = (0.61193423491156929, -1.5536019538694867) +description = District 5, TN +station = ('kcrx', 0.0064234343913521542) +zone = ('tnz090', 0.0025609497319944202) + +[fips4706991020] +centroid = (0.61333046340657982, -1.5504510760642765) +description = District 6, TN +station = ('kcrx', 0.0051111503987039328) +zone = ('tnz090', 0.0025387645087359121) + +[fips4706991210] +centroid = (0.61562525721368688, -1.5512023530407972) +description = District 7, TN +station = ('kmkl', 0.0057392561545105327) +zone = ('tnz090', 0.0020106330461403229) + +[fips4706991400] +centroid = (0.61754693453330278, -1.5532034777479637) +description = District 8, TN +station = ('kmkl', 0.0039385732321687199) +zone = ('tnz090', 0.0030706498045683138) + +[fips47071] +centroid = (0.61438893578474418, -1.5391307483627932) +description = Hardin County, TN +station = ('kcrx', 0.0076966583850570083) +zone = ('tnz092', 5.8280323578817249e-05) + +[fips4707180] +centroid = (0.61550807580770805, -1.5536035072125207) +description = Bolivar city, TN +station = ('kmkl', 0.0059942711104877273) +zone = ('tnz090', 0.001077636820480767) + +[fips4707190072] +centroid = (0.61427203363144567, -1.5394496025638402) +description = District 1, TN +station = ('kcrx', 0.0074217989837828142) +zone = ('tnz092', 0.00028427772679832475) + +[fips4707190262] +centroid = (0.61307273063593781, -1.5402751258467411) +description = District 2, TN +station = ('kcrx', 0.0061507300643174308) +zone = ('tnz092', 0.0015799626664747123) + +[fips4707190452] +centroid = (0.61153067988192322, -1.5407971712793052) +description = District 3, TN +station = ('kcrx', 0.005003847942578887) +zone = ('tnz092', 0.0031239351241210632) + +[fips4707190642] +centroid = (0.61385030972428622, -1.5416887203678087) +description = District 4, TN +station = ('kcrx', 0.0058165714118551164) +zone = ('tnz092', 0.0021622948641963741) + +[fips4707190832] +centroid = (0.61674197122899044, -1.5413028455234854) +description = District 5, TN +station = ('kcrx', 0.0083674949412352647) +zone = ('tnz092', 0.00300132610881051) + +[fips4707191022] +centroid = (0.61610880068295204, -1.5374499788398304) +description = District 6, TN +station = ('kcrx', 0.0098607316755224862) +zone = ('tnz092', 0.0022338838775927796) + +[fips4707191212] +centroid = (0.61258838431521678, -1.5375328994325925) +description = District 7, TN +station = ('kcrx', 0.0078754324455719785) +zone = ('tnz092', 0.0021695705505545711) + +[fips4707191402] +centroid = (0.61553326090881433, -1.5400397856504022) +description = District 8, TN +station = ('kcrx', 0.0079706961455361363) +zone = ('tnz092', 0.001420233713697797) + +[fips4707191592] +centroid = (0.61436212752743358, -1.5408542086392603) +description = District 9, TN +station = ('kcrx', 0.0066532993219319886) +zone = ('tnz092', 0.001425675536968649) + +[fips4707191782] +centroid = (0.61493990132301379, -1.5394201239527741) +description = District 10, TN +station = ('kcrx', 0.0078869023366525143) +zone = ('tnz092', 0.00065751342718471098) + +[fips4707280] +centroid = (0.62706400550491759, -1.5238880898734259) +description = Bon Aqua Junction CDP, TN +station = ('kbna', 0.0094694354820421441) +zone = ('tnz057', 0.0031508714358621068) + +[fips47073] +centroid = (0.63621101431523208, -1.4474257389423302) +description = Hawkins County, TN +station = ('k0vg', 0.0053397802444077932) +zone = ('tnz016', 0.00026802839961614661) + +[fips4707390074] +centroid = (0.6376279249618787, -1.4426345308929254) +description = District 1, TN +station = ('ktri', 0.0037873469131690907) +zone = ('vaz005', 0.00324470883964467) + +[fips4707390264] +centroid = (0.63701121287068652, -1.4440001288595632) +description = District 2, TN +station = ('ktri', 0.0047344862145832821) +zone = ('tnz016', 0.0031045008794857156) + +[fips4707390454] +centroid = (0.63777289200954923, -1.4455356171755902) +description = District 3, TN +station = ('k0vg', 0.0058668684506442284) +zone = ('tnz016', 0.0024470602708524243) + +[fips4707390644] +centroid = (0.63588425377267377, -1.4456701297010417) +description = District 4, TN +station = ('k0vg', 0.0066514597367834374) +zone = ('tnz016', 0.0016050051614143631) + +[fips4707390834] +centroid = (0.63554150601416703, -1.4480539527532932) +description = District 5, TN +station = ('k0vg', 0.005466537217942222) +zone = ('tnz016', 0.00057390553543571106) + +[fips4707391024] +centroid = (0.6359757962919409, -1.4503989422296875) +description = District 6, TN +station = ('k0vg', 0.0040925786679380577) +zone = ('tnz016', 0.0022053636587035562) + +[fips4707391214] +centroid = (0.63407232275642322, -1.4493684823860176) +description = District 7, TN +station = ('k0vg', 0.0061689664417938555) +zone = ('tnz016', 0.0023843601124028447) + +[fips47075] +centroid = (0.62110491038654081, -1.5582742177303679) +description = Haywood County, TN +station = ('kmkl', 0.0051977785863949657) +zone = ('tnz050', 6.1827002637763546e-05) + +[fips4707590076] +centroid = (0.62146697893986713, -1.5579196540928253) +description = District 1, TN +station = ('kmkl', 0.0049053465415489781) +zone = ('tnz050', 0.00052079656980335881) + +[fips4707590266] +centroid = (0.62245139699786944, -1.5571771037625646) +description = District 2, TN +station = ('kmkl', 0.0044404305114569848) +zone = ('tnz050', 0.0016743585454854655) + +[fips4707590456] +centroid = (0.62109717857795455, -1.5574246089037898) +description = District 3, TN +station = ('kmkl', 0.0045081182036615809) +zone = ('tnz050', 0.00071075370964887791) + +[fips4707590646] +centroid = (0.62139147599642586, -1.5581099822477553) +description = District 4, TN +station = ('kmkl', 0.0050588061423422195) +zone = ('tnz050', 0.00037746551805100775) + +[fips4707590836] +centroid = (0.62327863070343725, -1.5588069096713693) +description = District 5, TN +station = ('kdyr', 0.0051877922170000855) +zone = ('tnz050', 0.0022711157629974835) + +[fips4707591026] +centroid = (0.62206642972475712, -1.555744956391548) +description = District 6, TN +station = ('kmkl', 0.0032184901134765468) +zone = ('tnz050', 0.0023116931850231683) + +[fips4707591216] +centroid = (0.62029706728896283, -1.5556602032030709) +description = District 7, TN +station = ('kmkl', 0.0032393738837335458) +zone = ('tnz050', 0.0022713511024776731) + +[fips4707591406] +centroid = (0.61865153596359757, -1.5581961491529264) +description = District 8, TN +station = ('kmkl', 0.0057936767688893413) +zone = ('tnz050', 0.0023955945786039525) + +[fips4707591596] +centroid = (0.62009900732544643, -1.5598971121353351) +description = District 9, TN +station = ('kmkl', 0.0066312374066124355) +zone = ('tnz050', 0.0016101019043646811) + +[fips4707591786] +centroid = (0.62184246907514118, -1.5602071524236594) +description = District 10, TN +station = ('kdyr', 0.0064767589598690167) +zone = ('tnz050', 0.0017459917203701948) + +[fips4707620] +centroid = (0.62939408986950018, -1.4841533132572848) +description = Bowman CDP, TN +station = ('kcsv', 0.0020609410959841843) +zone = ('tnz066', 0.0020118573740247579) + +[fips47077] +centroid = (0.62227960423959572, -1.5426559294793867) +description = Henderson County, TN +station = ('kmkl', 0.0075634822500442699) +zone = ('tnz054', 7.0506273587135315e-06) + +[fips4707790078] +centroid = (0.62443169992705982, -1.5441324082134036) +description = District 1, TN +station = ('kmkl', 0.0070185635830049328) +zone = ('tnz054', 0.0024565554415961958) + +[fips4707790268] +centroid = (0.62284207149763593, -1.5456401457943238) +description = District 2, TN +station = ('kmkl', 0.0052961695548198523) +zone = ('tnz054', 0.0024830272237462065) + +[fips4707790458] +centroid = (0.62305645028965828, -1.5406499353036069) +description = District 3, TN +station = ('kmkl', 0.0092929329381414433) +zone = ('tnz054', 0.0018071126643237174) + +[fips4707790648] +centroid = (0.62220141348910629, -1.5425200905037038) +description = District 4, TN +station = ('kmkl', 0.0076640489733915415) +zone = ('tnz054', 0.00014212723809143825) + +[fips4707790838] +centroid = (0.62146933513435731, -1.5435207226704573) +description = District 5, TN +station = ('kmkl', 0.0068048761119742212) +zone = ('tnz054', 0.0010736705062748598) + +[fips4707791028] +centroid = (0.62298274503534667, -1.5433616359091378) +description = District 6, TN +station = ('kmkl', 0.0071218894435123902) +zone = ('tnz054', 0.0009001766790017662) + +[fips4707791218] +centroid = (0.61984008773091304, -1.5412788472462704) +description = District 7, TN +station = ('kmkl', 0.0087602746233500419) +zone = ('tnz054', 0.0026910707190490523) + +[fips4707840] +centroid = (0.61729586892040345, -1.5633165786591348) +description = Braden town, TN +station = ('knqa', 0.0042583753867423265) +zone = ('tnz049', 0.003485296262977995) + +[fips4707860] +centroid = (0.62961092957576792, -1.5501256070653644) +description = Bradford town, TN +station = ('kdyr', 0.0083477198335498541) +zone = ('tnz020', 0.0021334083797112792) + +[fips47079] +centroid = (0.63399779719736316, -1.5411324315753205) +description = Henry County, TN +station = ('kcey', 0.0058995098354070775) +zone = ('tnz004', 0.00011074219292909728) + +[fips4707990080] +centroid = (0.63551993374461246, -1.5424375364300846) +description = District 1, TN +station = ('kcey', 0.0043230012934463184) +zone = ('tnz004', 0.0017525827961441041) + +[fips4707990270] +centroid = (0.63187111350380798, -1.5418824170081953) +description = District 2, TN +station = ('kcey', 0.0079700182882786064) +zone = ('tnz004', 0.0023136407434509194) + +[fips4707990460] +centroid = (0.63472240554291359, -1.5382719241977645) +description = District 3, TN +station = ('kcey', 0.0059996948867070653) +zone = ('tnz004', 0.0023969213501477734) + +[fips4707990650] +centroid = (0.63414745918072168, -1.5420014659164738) +description = District 4, TN +station = ('kcey', 0.0056919137488726417) +zone = ('tnz004', 0.00068834938839223536) + +[fips4707990840] +centroid = (0.6337033601525518, -1.5410345360575763) +description = District 5, TN +station = ('kcey', 0.0062022511552473599) +zone = ('tnz004', 0.00041470619044705405) + +[fips4708080] +centroid = (0.63727723595527541, -1.505961900392655) +description = Bransford CDP, TN +station = ('kbwg', 0.0081234443694722155) +zone = ('tnz008', 0.0025727797929130797) + +[fips47081] +centroid = (0.62486969030284778, -1.5265891265172273) +description = Hickman County, TN +station = ('kbna', 0.012356713688938616) +zone = ('tnz057', 8.8974338142045498e-05) + +[fips4708190082] +centroid = (0.62618786767370893, -1.5279252458727992) +description = District 1, TN +station = ('kckv', 0.013016854531100986) +zone = ('tnz057', 0.0016393492977392168) + +[fips4708190272] +centroid = (0.62648120516109163, -1.5250124484308534) +description = District 2, TN +station = ('kbna', 0.010529097850433275) +zone = ('tnz057', 0.0021002367344977193) + +[fips4708190462] +centroid = (0.62735643542108932, -1.5250238977907464) +description = District 3, TN +station = ('kckv', 0.011737945292174989) +zone = ('tnz057', 0.0028184877996286976) + +[fips4708190652] +centroid = (0.62703128058144275, -1.5228025823451483) +description = District 4, TN +station = ('kbna', 0.0086641822857046694) +zone = ('tnz057', 0.0038164884003316782) + +[fips4708190842] +centroid = (0.62452053718598621, -1.5240260232442111) +description = District 5, TN +station = ('kbna', 0.010724822871114384) +zone = ('tnz057', 0.0021971210951567477) + +[fips4708191032] +centroid = (0.62548493631746827, -1.5261215528106182) +description = District 6, TN +station = ('kbna', 0.011748563262865341) +zone = ('tnz057', 0.00075970493283344866) + +[fips4708191222] +centroid = (0.62323607957627358, -1.5281982153678111) +description = District 7, TN +station = ('kbna', 0.014282775508396548) +zone = ('tnz057', 0.0020504738535338956) + +[fips4708280] +centroid = (0.62819686381580209, -1.5144974156462407) +description = Brentwood city, TN +station = ('kbna', 0.0025108449320318683) +zone = ('tnz059', 0.0024675302553162875) + +[fips47083] +centroid = (0.63330628029443048, -1.5307515797036013) +description = Houston County, TN +station = ('kckv', 0.0070573170130817844) +zone = ('tnz023', 0.00016176591966451817) + +[fips4708390084] +centroid = (0.63344847226859036, -1.5338430814076589) +description = District 1, TN +station = ('khop', 0.0084363065941244382) +zone = ('tnz023', 0.002334238951441026) + +[fips4708390274] +centroid = (0.6338699169230696, -1.5318049033604724) +description = District 2, TN +station = ('khop', 0.0071373926333003187) +zone = ('tnz023', 0.0008863135075422115) + +[fips4708390464] +centroid = (0.63384342282502426, -1.5307261502563998) +description = District 3, TN +station = ('kckv', 0.006611971236360664) +zone = ('tnz023', 0.00056351221469802624) + +[fips4708390654] +centroid = (0.63312778547182902, -1.5312275309906203) +description = District 4, TN +station = ('kckv', 0.0074265877004750435) +zone = ('tnz023', 0.00028727277821712788) + +[fips4708390844] +centroid = (0.63260219702088338, -1.5292462855836337) +description = District 5, TN +station = ('kckv', 0.007076809095723233) +zone = ('tnz023', 0.0015469646491975729) + +[fips4708391034] +centroid = (0.63437203069557579, -1.5302025863873865) +description = District 6, TN +station = ('kckv', 0.0059358388377766073) +zone = ('tnz023', 0.0012216273316948102) + +[fips4708391224] +centroid = (0.6336582957512652, -1.5284009004538452) +description = District 7, TN +station = ('kckv', 0.0058393771095731749) +zone = ('tnz023', 0.002085534793189881) + +[fips47085] +centroid = (0.62902434186746503, -1.5322354586336471) +description = Humphreys County, TN +station = ('kckv', 0.011348675319156778) +zone = ('tnz024', 0.00021072624437433476) + +[fips4708500] +centroid = (0.6192706217025723, -1.5661486895297609) +description = Brighton town, TN +station = ('knqa', 0.0029201229945281038) +zone = ('tnz049', 0.00044931651139283471) + +[fips4708540] +centroid = (0.63807122113859271, -1.4349566704337695) +description = Bristol city, TN +station = ('ktri', 0.0030294686088899103) +zone = ('tnz017', 0.00146223216100315) + +[fips4708590086] +centroid = (0.63088678271226839, -1.5329641335963544) +description = District 1, TN +station = ('kckv', 0.010063364305634761) +zone = ('tnz024', 0.0020209394515962025) + +[fips4708590276] +centroid = (0.63023418665165509, -1.5317609210633221) +description = District 2, TN +station = ('kckv', 0.010100790256266137) +zone = ('tnz024', 0.0012159318760278052) + +[fips4708590466] +centroid = (0.62975587917014608, -1.5318343819715385) +description = District 3, TN +station = ('kckv', 0.010550201306314802) +zone = ('tnz024', 0.00073410445943383035) + +[fips4708590656] +centroid = (0.62833094000894041, -1.534567777019672) +description = District 4, TN +station = ('kckv', 0.012904902273296132) +zone = ('tnz024', 0.0022107188493626358) + +[fips4708590846] +centroid = (0.62736381816382525, -1.5324026437226952) +description = District 5, TN +station = ('kckv', 0.012900370301105206) +zone = ('tnz024', 0.0017023454326865833) + +[fips4708591036] +centroid = (0.62843400170127062, -1.5294258974169566) +description = District 6, TN +station = ('kckv', 0.011060699434182138) +zone = ('tnz024', 0.0021462155949673032) + +[fips4708591226] +centroid = (0.63102468117646837, -1.5296029087096938) +description = District 7, TN +station = ('kckv', 0.0086451666313409094) +zone = ('tnz023', 0.0025314807979821431) + +[fips47087] +centroid = (0.63450121996680842, -1.4952965598528605) +description = Jackson County, TN +station = ('ksrb', 0.0055853843935972309) +zone = ('tnz031', 8.762734998526983e-05) + +[fips4708790088] +centroid = (0.63447814671409697, -1.4945790899039506) +description = District 1, TN +station = ('ksrb', 0.0053807335496017248) +zone = ('tnz031', 0.00057456195309252105) + +[fips4708790278] +centroid = (0.63519134060633942, -1.4932579280200686) +description = District 2, TN +station = ('ksrb', 0.0059091200837941091) +zone = ('tnz031', 0.0017358946892212645) + +[fips4708790468] +centroid = (0.63379238939769589, -1.4932978611533541) +description = District 3, TN +station = ('ksrb', 0.0045166872929143552) +zone = ('tnz031', 0.0017834276303439437) + +[fips4708790658] +centroid = (0.63282095658932846, -1.4937286433193313) +description = District 4, TN +station = ('ksrb', 0.0036069014983387757) +zone = ('tnz031', 0.0021640851056340558) + +[fips4708790848] +centroid = (0.63331017237866249, -1.4960228960743707) +description = District 5, TN +station = ('ksrb', 0.0047884692340856233) +zone = ('tnz031', 0.0014110390029917789) + +[fips4708791038] +centroid = (0.63540924496345086, -1.4965024078330635) +description = District 6, TN +station = ('ksrb', 0.0068081066696744118) +zone = ('tnz031', 0.0012822918462063969) + +[fips47089] +centroid = (0.62916464888603296, -1.4563195877446429) +description = Jefferson County, TN +station = ('ktys', 0.0086670427634844352) +zone = ('tnz070', 8.7185665271124511e-05) + +[fips4708920] +centroid = (0.62112960679545659, -1.557836663686893) +description = Brownsville city, TN +station = ('kmkl', 0.0048411910682230296) +zone = ('tnz050', 0.00038307251195943598) + +[fips4708960] +centroid = (0.62891100018584067, -1.5402001115954904) +description = Bruceton town, TN +station = ('kcey', 0.011041633648320935) +zone = ('tnz021', 0.0030597399588682002) + +[fips4708990090] +centroid = (0.62878120004936977, -1.4557691632584415) +description = District 1, TN +station = ('ktys', 0.0089000502835938182) +zone = ('tnz070', 0.00067341655899226408) + +[fips4708990280] +centroid = (0.62845613247618581, -1.4573628583050224) +description = District 2, TN +station = ('ktys', 0.0075943755460513504) +zone = ('tnz070', 0.0010755233029003137) + +[fips4708990470] +centroid = (0.62980698241064448, -1.4538393177979261) +description = District 3, TN +station = ('k0vg', 0.0099892608687069152) +zone = ('tnz070', 0.0021644405230679476) + +[fips4708990660] +centroid = (0.6307970553354233, -1.4576942963299762) +description = District 4, TN +station = ('ktys', 0.0086669565332223846) +zone = ('tnz070', 0.0018961680393034105) + +[fips4708990850] +centroid = (0.62966056673969462, -1.457021960595523) +description = District 5, TN +station = ('ktys', 0.0084239900603267463) +zone = ('tnz070', 0.00066843205676846921) + +[fips4708991040] +centroid = (0.62944199915746735, -1.4598849637939093) +description = District 6, TN +station = ('ktys', 0.0064431082659590008) +zone = ('tnz070', 0.0028167593738062644) + +[fips4708991230] +centroid = (0.63002092487035399, -1.4587262746100953) +description = District 7, TN +station = ('ktys', 0.0075288826523215004) +zone = ('tnz070', 0.0020387691876172067) + +[fips4708991420] +centroid = (0.62771918465282373, -1.4551987198457195) +description = District 8, TN +station = ('ktys', 0.008962367198310112) +zone = ('tnz070', 0.0017840552386739791) + +[fips4708991610] +centroid = (0.63028467902691521, -1.4555998139611204) +description = District 9, TN +station = ('k0vg', 0.0097862011198879013) +zone = ('tnz070', 0.0012607198407699007) + +[fips4708991800] +centroid = (0.63089170454075894, -1.457000946831329) +description = District 10, TN +station = ('k1a6', 0.0088543157843242928) +zone = ('tnz070', 0.0017488858850424436) + +[fips47091] +centroid = (0.63622843270116702, -1.4287481154054054) +description = Johnson County, TN +station = ('kvji', 0.0046852862131201564) +zone = ('tnz018', 0.00013574583769923362) + +[fips4709190092] +centroid = (0.63784595149203782, -1.4270227701733464) +description = District 1, TN +station = ('kvji', 0.0044903501247219001) +zone = ('tnz018', 0.0020236877697535518) + +[fips4709190282] +centroid = (0.63660362613046828, -1.4266962365235907) +description = District 2, TN +station = ('kgev', 0.0046470335269628866) +zone = ('tnz018', 0.0015565552815469735) + +[fips4709190472] +centroid = (0.63522809724038642, -1.4277109011375302) +description = District 3, TN +station = ('ktnb', 0.0040309956483623108) +zone = ('tnz018', 0.0012464500139135282) + +[fips4709190662] +centroid = (0.63475574133162671, -1.4299770889981971) +description = District 4, TN +station = ('k0a9', 0.0033497031978585497) +zone = ('tnz018', 0.0018747940544897835) + +[fips4709190852] +centroid = (0.63619637100280779, -1.4294908053620066) +description = District 5, TN +station = ('kvji', 0.0044371686398754885) +zone = ('tnz018', 0.00073245844851005642) + +[fips4709191042] +centroid = (0.63783828949662158, -1.4291258919219993) +description = District 6, TN +station = ('kvji', 0.0031991253273833541) +zone = ('tnz018', 0.001639320865098653) + +[fips4709191232] +centroid = (0.63651035573524173, -1.4277654426766551) +description = District 7, TN +station = ('kvji', 0.0049188675967787362) +zone = ('tnz018', 0.00070457921008341984) + +[fips47093] +centroid = (0.62819159292146109, -1.4649895980703873) +description = Knox County, TN +station = ('ktys', 0.003139760623764744) +zone = ('tnz069', 1.2043770777091762e-05) + +[fips4709390094] +centroid = (0.62799676181706099, -1.4643567765901992) +description = District 1, TN +station = ('ktys', 0.003102042188772938) +zone = ('tnz069', 0.00054270632916729228) + +[fips4709390284] +centroid = (0.62838218287577885, -1.4650459023920566) +description = District 2, TN +station = ('ktys', 0.0033179719471431259) +zone = ('tnz069', 0.00019025412601910441) + +[fips4709390474] +centroid = (0.62766417187480095, -1.4670539386030612) +description = District 3, TN +station = ('koqt', 0.0026767467947467049) +zone = ('tnz069', 0.0017626928318948455) + +[fips4709390664] +centroid = (0.62660828258392931, -1.4663421235209277) +description = District 4, TN +station = ('ktys', 0.0015562940159473519) +zone = ('tnz069', 0.0019368200539460231) + +[fips4709390854] +centroid = (0.62605326788179516, -1.4685542759879531) +description = District 5, TN +station = ('ktys', 0.0024310656767932218) +zone = ('tnz068', 0.0033667543827239394) + +[fips4709391044] +centroid = (0.62776175323327998, -1.4685157740246542) +description = District 6, TN +station = ('koqt', 0.001569949608107453) +zone = ('tnz036', 0.0027511241828262751) + +[fips4709391234] +centroid = (0.62966965990509749, -1.4656121570145737) +description = District 7, TN +station = ('koqt', 0.0038183471240005049) +zone = ('tnz069', 0.0015565007397778771) + +[fips4709391424] +centroid = (0.62936307536869229, -1.4625847612539418) +description = District 8, TN +station = ('ktys', 0.0049729979923391152) +zone = ('tnz069', 0.0022586963381172609) + +[fips4709391614] +centroid = (0.62672597013539133, -1.4637928607088797) +description = District 9, TN +station = ('ktys', 0.002278473596475926) +zone = ('tnz069', 0.0017589578135358893) + +[fips47095] +centroid = (0.6341462723568303, -1.5618172535652088) +description = Lake County, TN +station = ('kdyr', 0.0059510604169641032) +zone = ('tnz001', 0.00011421737534020902) + +[fips4709560] +centroid = (0.63288630171652305, -1.4499905351847209) +description = Bulls Gap town, TN +station = ('k0vg', 0.0071191204966976887) +zone = ('tnz039', 0.0027616983235384247) + +[fips4709590096] +centroid = (0.6361711160885315, -1.5615400603734073) +description = District 1, TN +station = ('kdyr', 0.0079135888283054512) +zone = ('tnz001', 0.0020300743795207215) + +[fips4709590286] +centroid = (0.63535414491896558, -1.56075923497265) +description = District 2, TN +station = ('kdyr', 0.0070443605496014394) +zone = ('tnz001', 0.0015276951399691885) + +[fips4709590476] +centroid = (0.63397205359089626, -1.5618699974152042) +description = District 3, TN +station = ('kdyr', 0.0057896041845968971) +zone = ('tnz001', 0.00020872252533103429) + +[fips4709590666] +centroid = (0.63242445268986036, -1.562963865070599) +description = District 4, TN +station = ('kdyr', 0.0046265481747316461) +zone = ('tnz001', 0.0019242472463165128) + +[fips47097] +centroid = (0.62418124517939866, -1.5642990244950823) +description = Lauderdale County, TN +station = ('khka', 0.004159741097402813) +zone = ('tnz048', 6.3087317715234209e-05) + +[fips4709790098] +centroid = (0.62263231782813122, -1.5641515441732887) +description = District 1, TN +station = ('khka', 0.0054437822231019027) +zone = ('tnz048', 0.001522843092785651) + +[fips4709790288] +centroid = (0.6236971257514804, -1.5617094794838982) +description = District 2, TN +station = ('kdyr', 0.0047557668301996328) +zone = ('tnz048', 0.0021997848319756388) + +[fips4709790478] +centroid = (0.62356936765023441, -1.5629367950139008) +description = District 3, TN +station = ('kdyr', 0.0051996979453565895) +zone = ('tnz048', 0.0012930110221243446) + +[fips4709790668] +centroid = (0.62271335346530121, -1.5624093390606557) +description = District 4, TN +station = ('kdyr', 0.0058544710495797058) +zone = ('tnz048', 0.0021370182764996553) + +[fips4709790858] +centroid = (0.62356505668698203, -1.5674126395207626) +description = District 5, TN +station = ('khka', 0.0036105013322453505) +zone = ('tnz048', 0.0025422874928951885) + +[fips4709791048] +centroid = (0.62533426204314357, -1.5641847403356617) +description = District 6, TN +station = ('khka', 0.0035093224487971128) +zone = ('tnz048', 0.0011975783220563639) + +[fips4709791238] +centroid = (0.62592664424456301, -1.5620528555609359) +description = District 7, TN +station = ('kdyr', 0.0027712827369730255) +zone = ('tnz048', 0.0025850316777868026) + +[fips4709791428] +centroid = (0.62643361003238973, -1.5604106927210268) +description = District 8, TN +station = ('kdyr', 0.0018862162988591015) +zone = ('tnz019', 0.0029173459734401158) + +[fips4709860] +centroid = (0.62058857218063079, -1.5670352295233114) +description = Burlison town, TN +station = ('knqa', 0.0037047559611562719) +zone = ('tnz049', 0.0011146115307621863) + +[fips4709880] +centroid = (0.62919508742818775, -1.5236370591671118) +description = Burns town, TN +station = ('kckv', 0.010026167610103201) +zone = ('tnz025', 0.001914162317288582) + +[fips47099] +centroid = (0.61471327031964229, -1.5253574825706802) +description = Lawrence County, TN +station = ('kmsl', 0.0087114970538503568) +zone = ('tnz094', 5.7049194401961531e-05) + +[fips4709990100] +centroid = (0.61175108005986512, -1.5265200812920188) +description = District 1, TN +station = ('kmsl', 0.0056027305940801577) +zone = ('tnz094', 0.0030625300108392409) + +[fips4709990290] +centroid = (0.61172390528341147, -1.5253017018477864) +description = District 2, TN +station = ('kmsl', 0.006001611238693509) +zone = ('tnz094', 0.0029341091460012743) + +[fips4709990480] +centroid = (0.61205516877544008, -1.5235890626126818) +description = District 3, TN +station = ('kmsl', 0.0070616781198140398) +zone = ('tnz094', 0.0029708837819181133) + +[fips4709990670] +centroid = (0.61344888399632758, -1.5228882605581286) +description = District 4, TN +station = ('kmsl', 0.0085211153476520297) +zone = ('tnz094', 0.0023409791603274752) + +[fips4709990860] +centroid = (0.6139759385238448, -1.5254104184068933) +description = District 5, TN +station = ('kmsl', 0.0080049135499209913) +zone = ('tnz094', 0.00068425748724508485) + +[fips4709991050] +centroid = (0.61297364829430212, -1.5274505163162568) +description = District 6, TN +station = ('kmsl', 0.0065811700656238344) +zone = ('tnz094', 0.0024104476571509704) + +[fips4709991240] +centroid = (0.6146953283349319, -1.5238329549223555) +description = District 7, TN +station = ('kmsl', 0.0091882374261502923) +zone = ('tnz094', 0.0012325596735816013) + +[fips4709991430] +centroid = (0.61507970219609853, -1.5228576125764637) +description = District 8, TN +station = ('kmsl', 0.0099069589986923619) +zone = ('tnz094', 0.0020719317833756828) + +[fips4709991620] +centroid = (0.6161665536279004, -1.5230219004189538) +description = District 9, TN +station = ('kmsl', 0.010800036033980259) +zone = ('tnz094', 0.0024211475591718336) + +[fips4709991810] +centroid = (0.61745844634022673, -1.5231822438173346) +description = District 10, TN +station = ('kmsl', 0.011916899535498508) +zone = ('tnz094', 0.0033087147811464552) + +[fips4709992000] +centroid = (0.61824791112078126, -1.5245103172050545) +description = District 11, TN +station = ('kmsl', 0.012284957205650164) +zone = ('tnz058', 0.0027508106002359879) + +[fips4709992190] +centroid = (0.61743347067863064, -1.5258572226954037) +description = District 12, TN +station = ('kmsl', 0.011213210796296478) +zone = ('tnz058', 0.0028062699804597023) + +[fips4709992380] +centroid = (0.61599811190179043, -1.5270963541044422) +description = District 13, TN +station = ('kmsl', 0.0096114439309910246) +zone = ('tnz094', 0.001962400822330194) + +[fips4709992570] +centroid = (0.61607796071506926, -1.5247282041088734) +description = District 14, TN +station = ('kmsl', 0.010169505513872915) +zone = ('tnz094', 0.0015056921694157214) + +[fips4709992760] +centroid = (0.61518969284555924, -1.525135354516779) +description = District 15, TN +station = ('kmsl', 0.0092211783114731476) +zone = ('tnz094', 0.00055774246630942951) + +[fips4709992950] +centroid = (0.61518213556989809, -1.524322554684125) +description = District 16, TN +station = ('kmsl', 0.0094582206824867492) +zone = ('tnz094', 0.00098330223976630655) + +[fips4709993140] +centroid = (0.61534087326536702, -1.524112923187668) +description = District 17, TN +station = ('kmsl', 0.0096724773722153354) +zone = ('tnz094', 0.0012135160463455292) + +[fips4709993330] +centroid = (0.61506642024049085, -1.5240300549547834) +description = District 18, TN +station = ('kmsl', 0.0094509966629580389) +zone = ('tnz094', 0.0011461272965063579) + +[fips47101] +centroid = (0.61999756878932055, -1.5271104389115058) +description = Lewis County, TN +station = ('kmsl', 0.013575512792380548) +zone = ('tnz058', 8.9741325059946334e-05) + +[fips4710180] +centroid = (0.63832801143143869, -1.4858691638982133) +description = Byrdstown town, TN +station = ('kekq', 0.0062694150237801389) +zone = ('tnz011', 0.00087061344197977191) + +[fips4710190102] +centroid = (0.61974351866340027, -1.5246222975298624) +description = District 1, TN +station = ('kmsl', 0.013697724647638545) +zone = ('tnz058', 0.0019966215120630847) + +[fips4710190292] +centroid = (0.62110187351364243, -1.5258481295300006) +description = District 2, TN +station = ('kbna', 0.013985492553527113) +zone = ('tnz058', 0.0014186443220258541) + +[fips4710190482] +centroid = (0.62116831819826579, -1.5285168950359329) +description = District 3, TN +station = ('kmsl', 0.014669894708832763) +zone = ('tnz058', 0.0016273469549953066) + +[fips4710190672] +centroid = (0.61951962782695447, -1.5294172056772815) +description = District 4, TN +station = ('kmsl', 0.013024362304738597) +zone = ('tnz058', 0.002009251021108484) + +[fips4710190862] +centroid = (0.61891035083837576, -1.5271789430846463) +description = District 5, TN +station = ('kmsl', 0.01248883899500545) +zone = ('tnz058', 0.0011633116658047932) + +[fips4710191052] +centroid = (0.62067442492653646, -1.5282038353280025) +description = District 6, TN +station = ('kmsl', 0.014184212025306812) +zone = ('tnz058', 0.0011224793172994328) + +[fips4710191242] +centroid = (0.6200848003453352, -1.5281282974779762) +description = District 7, TN +station = ('kmsl', 0.01359785802253549) +zone = ('tnz058', 0.00088367526045757369) + +[fips4710191432] +centroid = (0.6204992462295138, -1.5277095057239602) +description = District 8, TN +station = ('kmsl', 0.014031614020676568) +zone = ('tnz058', 0.00069288858569979141) + +[fips4710191622] +centroid = (0.62044645001964094, -1.5282742419100281) +description = District 9, TN +station = ('kmsl', 0.013954172470997114) +zone = ('tnz058', 0.0010711171905160475) + +[fips47103] +centroid = (0.61335289088746792, -1.5113397310569476) +description = Lincoln County, TN +station = ('kmdq', 0.0049340386702005599) +zone = ('tnz096', 7.3216124279210809e-05) + +[fips4710390104] +centroid = (0.61179459111811729, -1.513489592722969) +description = District 1, TN +station = ('kmdq', 0.0040507014539699895) +zone = ('tnz096', 0.0023754132080882036) + +[fips4710390294] +centroid = (0.61465721034406828, -1.5131487997332247) +description = District 2, TN +station = ('kmdq', 0.0065246364919594162) +zone = ('tnz096', 0.0020432526139327841) + +[fips4710390484] +centroid = (0.61303935994063963, -1.5101770974290241) +description = District 3, TN +station = ('kmdq', 0.0046139269444215921) +zone = ('tnz096', 0.00092934303238421132) + +[fips4710390674] +centroid = (0.61163354958803573, -1.5110990152465125) +description = District 4, TN +station = ('kmdq', 0.0032035599806082456) +zone = ('tnz096', 0.0016891101318745282) + +[fips4710390864] +centroid = (0.61295354210131903, -1.5115666587662919) +description = District 5, TN +station = ('kmdq', 0.0045620193771495673) +zone = ('tnz096', 0.00044129217612044177) + +[fips4710391054] +centroid = (0.61502882584840302, -1.5101507429573191) +description = District 6, TN +station = ('ktha', 0.004673096390684809) +zone = ('tnz096', 0.0019372098989121128) + +[fips4710391244] +centroid = (0.61270101041184799, -1.508102407093886) +description = District 7, TN +station = ('kmdq', 0.0047606916021482905) +zone = ('tnz096', 0.0026563162101159018) + +[fips4710391434] +centroid = (0.61144262802116012, -1.5098082919047853) +description = District 8, TN +station = ('kmdq', 0.0030861245557474068) +zone = ('tnz096', 0.0022200704798562136) + +[fips4710440] +centroid = (0.61604991327398972, -1.4790946509533045) +description = Calhoun town, TN +station = ('kcha', 0.0079478626250134837) +zone = ('tnz085', 0.0028826522848895272) + +[fips47105] +centroid = (0.62373616876684757, -1.4715953725832129) +description = Loudon County, TN +station = ('koqt', 0.005012189274390776) +zone = ('tnz068', 7.799232752731764e-05) + +[fips4710560] +centroid = (0.62947498588033013, -1.5377116735078744) +description = Camden city, TN +station = ('kcey', 0.01096776832260748) +zone = ('tnz022', 0.0005128722326152922) + +[fips4710590106] +centroid = (0.62373259084188093, -1.4723964612565859) +description = District 1, TN +station = ('koqt', 0.0052057372851159085) +zone = ('tnz068', 0.00071655351882980636) + +[fips4710590296] +centroid = (0.62493201601043658, -1.4707929225530236) +description = District 2, TN +station = ('koqt', 0.0037141996251576857) +zone = ('tnz068', 0.0013701852940807208) + +[fips4710590486] +centroid = (0.62306704443821792, -1.4696822124703468) +description = District 3, TN +station = ('ktys', 0.0037693262228870855) +zone = ('tnz068', 0.0016145249221313463) + +[fips4710590676] +centroid = (0.62281172022194364, -1.4735254798431159) +description = District 4, TN +station = ('koqt', 0.006411183815879822) +zone = ('tnz068', 0.0018553465629362843) + +[fips4710590866] +centroid = (0.62536997147963946, -1.4713883067207563) +description = District 5, TN +station = ('koqt', 0.0033913410610717839) +zone = ('tnz068', 0.0016797115043467453) + +[fips4710591056] +centroid = (0.62490402092923458, -1.46944640103511) +description = District 6, TN +station = ('ktys', 0.0029764384128393626) +zone = ('tnz068', 0.0020694627659393942) + +[fips4710591246] +centroid = (0.62301964129573373, -1.4707468284074783) +description = District 7, TN +station = ('ktys', 0.0045403740544954739) +zone = ('tnz068', 0.00091813788083449667) + +[fips47107] +centroid = (0.61827365472724816, -1.4768969672657783) +description = McMinn County, TN +station = ('kcha', 0.010723163789984965) +zone = ('tnz085', 3.5497074427022402e-05) + +[fips4710790108] +centroid = (0.61836202074727664, -1.4791177940191862) +description = District 1, TN +station = ('kcha', 0.009459709191914259) +zone = ('tnz084', 0.0017305583950175079) + +[fips4710790298] +centroid = (0.62043053261686276, -1.4762789287243547) +description = District 2, TN +station = ('koqt', 0.009571998595493009) +zone = ('tnz085', 0.002201506488787283) + +[fips4710790488] +centroid = (0.61796830937461178, -1.4746909758110125) +description = District 3, TN +station = ('krhp', 0.0097059415459606405) +zone = ('tnz085', 0.0017900162767263718) + +[fips4710790678] +centroid = (0.61644952385952623, -1.476007774371765) +description = District 4, TN +station = ('kcha', 0.010298212134059537) +zone = ('tnz085', 0.001955642439950449) + +[fips4710790868] +centroid = (0.6170907403734166, -1.4782791284070178) +description = District 5, TN +station = ('kcha', 0.0091038290946142391) +zone = ('tnz085', 0.0016621401329217549) + +[fips47109] +centroid = (0.61393049015012291, -1.545745109895539) +description = McNairy County, TN +station = ('kcrx', 0.0044899823069854058) +zone = ('tnz091', 2.2639694689496972e-05) + +[fips4710990110] +centroid = (0.61609612959258253, -1.5465550473882193) +description = District 1, TN +station = ('kcrx', 0.0066290416433625286) +zone = ('tnz053', 0.002118832020936167) + +[fips4710990300] +centroid = (0.61545704238037979, -1.5432576142857191) +description = District 2, TN +station = ('kcrx', 0.0065044535691177801) +zone = ('tnz091', 0.0025414558732339688) + +[fips4710990490] +centroid = (0.61581197253706532, -1.5445656163870412) +description = District 3, TN +station = ('kcrx', 0.0065109815842387423) +zone = ('tnz091', 0.0021235525804234371) + +[fips4710990680] +centroid = (0.61390753907045925, -1.548195290365951) +description = District 4, TN +station = ('kcrx', 0.0046855279228456437) +zone = ('tnz091', 0.0020166407212273119) + +[fips4710990870] +centroid = (0.61176251196646558, -1.5472055316004376) +description = District 5, TN +station = ('kcrx', 0.0023954651942257573) +zone = ('tnz091', 0.0024664377833548542) + +[fips4710991060] +centroid = (0.61333519324885266, -1.5454224683300151) +description = District 6, TN +station = ('kcrx', 0.0039419735631387167) +zone = ('tnz091', 0.00062915958792926258) + +[fips4710991250] +centroid = (0.61231318079876229, -1.5434604739046782) +description = District 7, TN +station = ('kcrx', 0.0037063900792673157) +zone = ('tnz091', 0.0024490459207461299) + +[fips47111] +centroid = (0.63770557466029987, -1.5010046417182155) +description = Macon County, TN +station = ('kglw', 0.0086446011616110891) +zone = ('tnz009', 0.00013186699404945859) + +[fips4711190112] +centroid = (0.63874467388376732, -1.5023185779389945) +description = District 1, TN +station = ('kglw', 0.0077719353442468027) +zone = ('tnz009', 0.0014986601675292235) + +[fips4711190302] +centroid = (0.63805743303750195, -1.5033398573507988) +description = District 2, TN +station = ('kbwg', 0.0081474728529273305) +zone = ('tnz009', 0.0018489338778191983) + +[fips4711190492] +centroid = (0.63692995034071365, -1.5040264349719483) +description = District 3, TN +station = ('kbwg', 0.0089284119699115771) +zone = ('tnz029', 0.0017852996908919361) + +[fips4711190682] +centroid = (0.63675649951965041, -1.5027609141846197) +description = District 4, TN +station = ('kbwg', 0.0095141228438535026) +zone = ('tnz009', 0.0015751427657150993) + +[fips4711190872] +centroid = (0.63891390100804057, -1.5014178658719177) +description = District 5, TN +station = ('kglw', 0.0074772597659902114) +zone = ('tnz009', 0.0013335211561222291) + +[fips4711191062] +centroid = (0.63760321109967044, -1.4980837808551253) +description = District 6, TN +station = ('kglw', 0.0088804472525703601) +zone = ('tnz009', 0.0024306936176589238) + +[fips4711191252] +centroid = (0.63655423331263683, -1.4982943548293786) +description = District 7, TN +station = ('ksrb', 0.0085081707741154027) +zone = ('tnz009', 0.0024939252203879238) + +[fips4711191442] +centroid = (0.6364227053002065, -1.5003564264340248) +description = District 8, TN +station = ('ksrb', 0.009381697330082376) +zone = ('tnz009', 0.0013268487657036171) + +[fips4711191632] +centroid = (0.63853238948684721, -1.4999935724825353) +description = District 9, TN +station = ('kglw', 0.0077934531219925364) +zone = ('tnz009', 0.0012903455001058708) + +[fips4711191822] +centroid = (0.63725468630133963, -1.4998991327167097) +description = District 10, TN +station = ('kglw', 0.009072487179806318) +zone = ('tnz009', 0.0010328858286279691) + +[fips4711192012] +centroid = (0.63914454626869166, -1.5039919298126363) +description = District 11, TN +station = ('kbwg', 0.0069429408290498642) +zone = ('kyz073', 0.0023004949148128983) + +[fips4711192202] +centroid = (0.63854902247461864, -1.4985545659675583) +description = District 12, TN +station = ('kglw', 0.0078827861194503638) +zone = ('tnz009', 0.0022590012431805361) + +[fips4711192392] +centroid = (0.6378180785838834, -1.5019280256122756) +description = District 13, TN +station = ('kglw', 0.0086216988753250057) +zone = ('tnz009', 0.00069223688140521307) + +[fips4711192582] +centroid = (0.63748878731390968, -1.5014576070189856) +description = District 14, TN +station = ('kglw', 0.008895380866818051) +zone = ('tnz009', 0.00030290662903707371) + +[fips4711192772] +centroid = (0.63664877779821738, -1.5015857316393746) +description = District 15, TN +station = ('kglw', 0.0097416641352960822) +zone = ('tnz009', 0.0010289782873782463) + +[fips4711192962] +centroid = (0.63759917938909838, -1.5023029048823113) +description = District 16, TN +station = ('kglw', 0.0088904443819121642) +zone = ('tnz009', 0.00095948829419042342) + +[fips4711193152] +centroid = (0.63792004071878494, -1.5014258245733068) +description = District 17, TN +station = ('kglw', 0.0084640930530161286) +zone = ('tnz009', 0.00040614037629526885) + +[fips4711193342] +centroid = (0.63750604862021198, -1.5011108624564919) +description = District 18, TN +station = ('kglw', 0.0088503625085173086) +zone = ('tnz009', 9.7647506038195378e-05) + +[fips4711193532] +centroid = (0.63775433915960067, -1.499167298708056) +description = District 19, TN +station = ('kglw', 0.0086079752130570984) +zone = ('tnz009', 0.0015672312277842874) + +[fips4711193722] +centroid = (0.63799582291490653, -1.5043868978223627) +description = District 20, TN +station = ('kbwg', 0.0078333741228070099) +zone = ('tnz009', 0.0026626667468388453) + +[fips4711280] +centroid = (0.63279418323860281, -1.4999899072911058) +description = Carthage town, TN +station = ('ksrb', 0.0067839860776717897) +zone = ('tnz030', 0.00021776361645945355) + +[fips47113] +centroid = (0.62144291084948211, -1.5504357346201512) +description = Madison County, TN +station = ('kmkl', 0.0011859950185014189) +zone = ('tnz052', 8.1168697284171042e-05) + +[fips4711360] +centroid = (0.63400296337194906, -1.4698628016880508) +description = Caryville town, TN +station = ('koqt', 0.0053984906491409551) +zone = ('tnz013', 0.0016590401796272151) + +[fips4711390114] +centroid = (0.6215014317393015, -1.5498164045350811) +description = District 1, TN +station = ('kmkl', 0.0016927833273447913) +zone = ('tnz052', 0.00057593606887022125) + +[fips4711390304] +centroid = (0.62213404377997927, -1.5503003843366592) +description = District 2, TN +station = ('kmkl', 0.0015171133076979852) +zone = ('tnz052', 0.00067858281775047568) + +[fips4711390494] +centroid = (0.62250707300100816, -1.5515108225327947) +description = District 3, TN +station = ('kmkl', 0.0012094802302795556) +zone = ('tnz052', 0.0013026860239070761) + +[fips4711390684] +centroid = (0.62274227357100687, -1.5506268481732446) +description = District 4, TN +station = ('kmkl', 0.0017394417491327075) +zone = ('tnz052', 0.001264690043434787) + +[fips4711390874] +centroid = (0.62224642553051523, -1.5496539143817203) +description = District 5, TN +station = ('kmkl', 0.0020312739803409548) +zone = ('tnz052', 0.0010427898221993281) + +[fips4711391064] +centroid = (0.61949350024805205, -1.550042145420534) +description = District 6, TN +station = ('kmkl', 0.0023782972919533306) +zone = ('tnz052', 0.0020251902029794432) + +[fips4711391254] +centroid = (0.62070126809043213, -1.5529894654750842) +description = District 7, TN +station = ('kmkl', 0.0010981946156398282) +zone = ('tnz052', 0.0021508129491638627) + +[fips4711391444] +centroid = (0.62202396586405606, -1.5478861576488379) +description = District 8, TN +station = ('kmkl', 0.0033252708541802413) +zone = ('tnz052', 0.0022122949466511078) + +[fips4711391634] +centroid = (0.62358952620309493, -1.5513039486565556) +description = District 9, TN +station = ('kmkl', 0.0023018531947319376) +zone = ('tnz052', 0.0022022394017857179) + +[fips4711391824] +centroid = (0.62393522356803743, -1.5487563090007122) +description = District 10, TN +station = ('kmkl', 0.0036364933028646125) +zone = ('tnz052', 0.0028441284828629259) + +[fips4711440] +centroid = (0.63532075677037492, -1.5063374428878065) +description = Castalian Springs CDP, TN +station = ('kbna', 0.007262593135145024) +zone = ('tnz008', 0.0024625170444279617) + +[fips47115] +centroid = (0.61319389139261127, -1.4943229628362205) +description = Marion County, TN +station = ('kcha', 0.0062257996073160748) +zone = ('tnz098', 8.700363232123554e-05) + +[fips4711590116] +centroid = (0.61161298960944721, -1.4966883203049859) +description = District 1, TN +station = ('kbgf', 0.0050398636886307734) +zone = ('tnz098', 0.0024149789541520884) + +[fips4711590306] +centroid = (0.61405341368934085, -1.4969334168918433) +description = District 2, TN +station = ('kbgf', 0.0042548715303537309) +zone = ('tnz098', 0.0022809649404947137) + +[fips4711590496] +centroid = (0.61213353405885462, -1.4942172656967196) +description = District 3, TN +station = ('kcha', 0.0059312661533102769) +zone = ('tnz098', 0.00099971600331487278) + +[fips4711590686] +centroid = (0.61388800883612937, -1.4931396994165385) +description = District 4, TN +station = ('kcha', 0.0055696012270386088) +zone = ('tnz098', 0.0012736805924465204) + +[fips4711590876] +centroid = (0.61447169929787382, -1.4919986729647545) +description = District 5, TN +station = ('kcha', 0.0050723593343672789) +zone = ('tnz098', 0.0023717298509403194) + +[fips47117] +centroid = (0.61904013352155407, -1.5143503891100527) +description = Marshall County, TN +station = ('ktha', 0.0075435633378906084) +zone = ('tnz061', 1.4317589030197638e-05) + +[fips4711790118] +centroid = (0.62235219248318618, -1.5133460219387003) +description = District 1, TN +station = ('kmqy', 0.0066764124032308875) +zone = ('tnz061', 0.0033999884093687586) + +[fips4711790308] +centroid = (0.62120285826416277, -1.5138256907770256) +description = District 2, TN +station = ('kmqy', 0.0078865903838951992) +zone = ('tnz061', 0.0021935477368297124) + +[fips4711790498] +centroid = (0.6175832024751593, -1.5131774405862497) +description = District 3, TN +station = ('ktha', 0.006432289805143738) +zone = ('tnz061', 0.00174387397409721) + +[fips4711790688] +centroid = (0.61681157495955996, -1.5152121628815174) +description = District 4, TN +station = ('kmdq', 0.0091410433615103752) +zone = ('tnz061', 0.0023485481225699557) + +[fips4711790878] +centroid = (0.61901683337603997, -1.5161309391063522) +description = District 5, TN +station = ('kmqy', 0.010664106548977818) +zone = ('tnz061', 0.0014616796248662271) + +[fips4711791068] +centroid = (0.62044608350049801, -1.5150806174157947) +description = District 6, TN +station = ('kmqy', 0.0090022063356539877) +zone = ('tnz061', 0.0015226094679474888) + +[fips4711791258] +centroid = (0.61976170499420602, -1.5144844303966059) +description = District 7, TN +station = ('ktha', 0.0078261133751563461) +zone = ('tnz061', 0.00072270233165798361) + +[fips4711791448] +centroid = (0.61900433681859557, -1.5142303977239782) +description = District 8, TN +station = ('ktha', 0.0074406374729490792) +zone = ('tnz061', 9.7437584435973814e-05) + +[fips4711791638] +centroid = (0.61828683196310075, -1.5159388830754628) +description = District 9, TN +station = ('ktha', 0.0087167487108655572) +zone = ('tnz061', 0.0015115213635241364) + +[fips47119] +centroid = (0.62161116058937438, -1.519793669621295) +description = Maury County, TN +station = ('kbna', 0.01037172259740838) +zone = ('tnz060', 2.5202639252932093e-05) + +[fips4711980] +centroid = (0.63793836667593085, -1.5184484221937353) +description = Cedar Hill city, TN +station = ('kckv', 0.0059408474900598208) +zone = ('tnz007', 0.0018802129726132825) + +[fips4711990120] +centroid = (0.62181684764172196, -1.5191287340828703) +description = District 1, TN +station = ('kbna', 0.0099142547115246542) +zone = ('tnz060', 0.0005603821500985845) + +[fips4711990310] +centroid = (0.62116854509106856, -1.5194983599118577) +description = District 2, TN +station = ('kmqy', 0.010582032512874484) +zone = ('tnz060', 0.00051878892656196784) + +[fips4711990500] +centroid = (0.62139346567177312, -1.5188346984637868) +description = District 3, TN +station = ('kmqy', 0.010039094024163463) +zone = ('tnz060', 0.00080554001415902626) + +[fips4711990690] +centroid = (0.62154681029985337, -1.5198660309720826) +description = District 4, TN +station = ('kbna', 0.010457593450552532) +zone = ('tnz060', 0.00011153250696337761) + +[fips4711990880] +centroid = (0.62250021385704768, -1.5178363526783534) +description = District 5, TN +station = ('kmqy', 0.0086853496070171416) +zone = ('tnz060', 0.0018017670148545049) + +[fips4711991070] +centroid = (0.62390405198759691, -1.5204940353435354) +description = District 6, TN +station = ('kbna', 0.0089065201987662008) +zone = ('tnz060', 0.0023429794906337509) + +[fips4711991260] +centroid = (0.62191641867554814, -1.5226674240478739) +description = District 7, TN +station = ('kbna', 0.011563791399880886) +zone = ('tnz060', 0.0023636856376568248) + +[fips4711991450] +centroid = (0.62047182710696502, -1.5172211066637331) +description = District 8, TN +station = ('kmqy', 0.0098889399393036603) +zone = ('tnz060', 0.0023837928984969041) + +[fips4711991640] +centroid = (0.61961080382707856, -1.5200443338084664) +description = District 9, TN +station = ('kmqy', 0.01200894681264492) +zone = ('tnz060', 0.0020344818926828403) + +[fips4711991830] +centroid = (0.61964447122834965, -1.5222514422739535) +description = District 10, TN +station = ('kbna', 0.013118801290816181) +zone = ('tnz060', 0.002828250262597603) + +[fips4711992020] +centroid = (0.62334790282144892, -1.516792855225171) +description = District 11, TN +station = ('kmqy', 0.0074871068562287991) +zone = ('tnz060', 0.0029713104650107482) + +[fips47121] +centroid = (0.61965117329267727, -1.4804561299429078) +description = Meigs County, TN +station = ('kcsv', 0.0086180167244855627) +zone = ('tnz084', 0.00021942118425452274) + +[fips4712100] +centroid = (0.63787614568809736, -1.4923220301152715) +description = Celina city, TN +station = ('ksrb', 0.0085903412025880432) +zone = ('tnz010', 0.00056477742937323426) + +[fips4712190122] +centroid = (0.61690271605309921, -1.4827888497546609) +description = District 1, TN +station = ('kcha', 0.0064594624390238164) +zone = ('tnz084', 0.0035593921275080338) + +[fips4712190312] +centroid = (0.61834681892949184, -1.4816025843686653) +description = District 2, TN +station = ('kcha', 0.0081971083780949736) +zone = ('tnz084', 0.0018222453850380803) + +[fips4712190502] +centroid = (0.61965117329267727, -1.4804561299429078) +description = District 3, TN +station = ('kcsv', 0.0086180167244855627) +zone = ('tnz084', 0.00021942118425452274) + +[fips4712190692] +centroid = (0.62091980076607434, -1.4790155875381892) +description = District 4, TN +station = ('kcsv', 0.0081268985259866176) +zone = ('tnz084', 0.0015078497360501565) + +[fips4712190882] +centroid = (0.62283287361247786, -1.477908752086452) +description = District 5, TN +station = ('kcsv', 0.0073619067197916608) +zone = ('tnz067', 0.0035777483779968174) + +[fips47123] +centroid = (0.61867848384724822, -1.4704361598006235) +description = Monroe County, TN +station = ('krhp', 0.0070490667811719584) +zone = ('tnz086', 0.0010818860240640726) + +[fips4712380] +centroid = (0.6235247046746758, -1.4995858635692692) +description = Centertown town, TN +station = ('ktha', 0.007605967453821921) +zone = ('tnz078', 0.0021635970261899696) + +[fips4712390124] +centroid = (0.62127014070682718, -1.4735093006409501) +description = District 1, TN +station = ('ktys', 0.0073584052803178229) +zone = ('tnz086', 0.0025339045597188659) + +[fips4712390314] +centroid = (0.62024390455994693, -1.4716248861008641) +description = District 2, TN +station = ('ktys', 0.0068016803689657322) +zone = ('tnz086', 0.00090253594775577305) + +[fips4712390504] +centroid = (0.61770263535587322, -1.4700109975948374) +description = District 3, TN +station = ('krhp', 0.006193403926427303) +zone = ('tnz087', 0.001450048180787734) + +[fips4712420] +centroid = (0.62528256539069949, -1.5260712349682832) +description = Centerville town, TN +station = ('kbna', 0.011797807459531018) +zone = ('tnz057', 0.00064440626996536) + +[fips4712460] +centroid = (0.63414189158040779, -1.4363488672182081) +description = Central CDP, TN +station = ('k0a9', 0.0018909618744879424) +zone = ('tnz046', 0.0019890413621502854) + +[fips47125] +centroid = (0.63705135544348235, -1.5250841814631104) +description = Montgomery County, TN +station = ('kckv', 0.0020910925333935708) +zone = ('tnz006', 6.6571587639951887e-05) + +[fips4712590126] +centroid = (0.63879434595427897, -1.5223445206829624) +description = District 1, TN +station = ('kckv', 0.002715702348927916) +zone = ('tnz006', 0.0028672021457881182) + +[fips4712590316] +centroid = (0.63787349278763439, -1.5234805205865005) +description = District 2, TN +station = ('kckv', 0.0021587643965393149) +zone = ('tnz006', 0.0015852757334490232) + +[fips4712590506] +centroid = (0.63656697421617636, -1.5221925025051135) +description = District 3, TN +station = ('kckv', 0.0037818101378202401) +zone = ('tnz006', 0.0023911115738724387) + +[fips4712590695] +centroid = (0.63494929834567282, -1.5248060108869275) +description = District 4, TN +station = ('kckv', 0.0041953223057945256) +zone = ('tnz006', 0.002057272168255006) + +[fips4712590886] +centroid = (0.63701585544649675, -1.5247269125652272) +description = District 5, TN +station = ('kckv', 0.0022109569319701248) +zone = ('tnz006', 0.00031641717248396265) + +[fips4712591076] +centroid = (0.63567936957178217, -1.5266884357516659) +description = District 6, TN +station = ('kckv', 0.0034919598754504107) +zone = ('tnz006', 0.001820228920188655) + +[fips4712591266] +centroid = (0.63694176621974963, -1.5276806554314246) +description = District 7, TN +station = ('kckv', 0.0026621966130424986) +zone = ('tnz006', 0.0020596611501348377) + +[fips4712591456] +centroid = (0.63936971119549146, -1.5261224778351217) +description = District 8, TN +station = ('kckv', 0.00043980499384802121) +zone = ('tnz006', 0.0025113963774568149) + +[fips4712591646] +centroid = (0.63902204160849418, -1.5253935061664414) +description = District 9, TN +station = ('kckv', 0.0002598273178779654) +zone = ('tnz006', 0.0020428778926011542) + +[fips4712591836] +centroid = (0.63863065152373444, -1.5276677225416675) +description = District 10, TN +station = ('khop', 0.0013839834080068357) +zone = ('tnz006', 0.0026229829034466775) + +[fips4712592026] +centroid = (0.63770543503395971, -1.5260908175624905) +description = District 11, TN +station = ('kckv', 0.0014097696367735228) +zone = ('tnz006', 0.0010582639677610027) + +[fips4712592216] +centroid = (0.63860546642262828, -1.525393157100591) +description = District 12, TN +station = ('kckv', 0.00053912579817465191) +zone = ('tnz006', 0.0016293167944112436) + +[fips4712592406] +centroid = (0.63824093695505657, -1.5247124263324356) +description = District 13, TN +station = ('kckv', 0.0011602390011800259) +zone = ('tnz006', 0.0012919187304166017) + +[fips4712592596] +centroid = (0.63847851117283816, -1.5243179819214847) +description = District 14, TN +station = ('kckv', 0.0012688428062387735) +zone = ('tnz006', 0.0016207993390832689) + +[fips4712592786] +centroid = (0.63794264273259826, -1.525485973710212) +description = District 15, TN +station = ('kckv', 0.0011527046813305177) +zone = ('tnz006', 0.00099614527697996407) + +[fips4712592976] +centroid = (0.63826195071925063, -1.5254633891496912) +description = District 16, TN +station = ('kckv', 0.00084277265305463065) +zone = ('tnz006', 0.0013006027412315602) + +[fips4712593166] +centroid = (0.63757668209504015, -1.5245006131744137) +description = District 17, TN +station = ('kckv', 0.0017903593119299693) +zone = ('tnz006', 0.00076824913817849494) + +[fips4712593356] +centroid = (0.63932099905606832, -1.5246003761944575) +description = District 18, TN +station = ('kckv', 0.00092118065362770118) +zone = ('tnz006', 0.0023669159155693862) + +[fips4712593546] +centroid = (0.63750990579785882, -1.5232489328480532) +description = District 19, TN +station = ('kckv', 0.0025242640831214468) +zone = ('tnz006', 0.0015903057226453645) + +[fips4712593736] +centroid = (0.63730142621870811, -1.5226482428793946) +description = District 20, TN +station = ('kckv', 0.003034841725795543) +zone = ('tnz006', 0.0020103400388135962) + +[fips4712593926] +centroid = (0.63712935420775396, -1.5238991378075912) +description = District 21, TN +station = ('kckv', 0.0024337167450135494) +zone = ('tnz006', 0.00099053667568457684) + +[fips47127] +centroid = (0.61590730242080916, -1.5072433734893467) +description = Moore County, TN +station = ('ktha', 0.0022521878544909555) +zone = ('tnz076', 7.3130517937310214e-05) + +[fips4712790128] +centroid = (0.61557862201607372, -1.5076893400198164) +description = District 1, TN +station = ('ktha', 0.0027421573994921289) +zone = ('tnz076', 0.00044346679337764066) + +[fips4712790318] +centroid = (0.61599350423256516, -1.5061583546532593) +description = District 2, TN +station = ('ktha', 0.0016631657675104257) +zone = ('tnz076', 0.00090148359103745922) + +[fips4712790508] +centroid = (0.61455114668542465, -1.5069900738550048) +description = District 3, TN +station = ('ktha', 0.0032574372429790086) +zone = ('tnz076', 0.0012998767481483195) + +[fips4712790698] +centroid = (0.61682803341440628, -1.5074273137392145) +description = District 4, TN +station = ('ktha', 0.0018682597879762729) +zone = ('tnz076', 0.0010048677586586541) + +[fips4712790888] +centroid = (0.61723082049918165, -1.5059363836789907) +description = District 5, TN +station = ('ktha', 0.0005917591297863186) +zone = ('tnz076', 0.0017581862685967717) + +[fips4712880] +centroid = (0.6218386468040793, -1.5131120081925926) +description = Chapel Hill town, TN +station = ('kmqy', 0.0070818500797544736) +zone = ('tnz061', 0.0029621741935825724) + +[fips47129] +centroid = (0.63073925003059728, -1.4772337983581207) +description = Morgan County, TN +station = ('kcsv', 0.0070794452684618736) +zone = ('tnz035', 0.00015294821459089277) + +[fips4712990130] +centroid = (0.62899097117216696, -1.473664250971942) +description = District 1, TN +station = ('koqt', 0.0028683866041648159) +zone = ('tnz067', 0.0035562576922216309) + +[fips4712990320] +centroid = (0.62849657175495466, -1.477206274515817) +description = District 2, TN +station = ('kcsv', 0.0063812368889994229) +zone = ('tnz035', 0.0021840978805365199) + +[fips4712990510] +centroid = (0.63041495040228424, -1.475463842510381) +description = District 3, TN +station = ('koqt', 0.0046600485187879605) +zone = ('tnz035', 0.0015896613961033845) + +[fips4712990700] +centroid = (0.63110615314595153, -1.4789313754017805) +description = District 4, TN +station = ('kcsv', 0.0061109810291195147) +zone = ('tnz035', 0.0013054929228987554) + +[fips4712990890] +centroid = (0.63281716922485165, -1.4785852940644026) +description = District 5, TN +station = ('kcsv', 0.0074552289323443297) +zone = ('tnz035', 0.0023444694235555319) + +[fips4712991080] +centroid = (0.62963829633843926, -1.4745527108276697) +description = District 6, TN +station = ('koqt', 0.0037062582869496043) +zone = ('tnz035', 0.0025271758926225119) + +[fips4713020] +centroid = (0.61585152169791557, -1.4793549842645322) +description = Charleston city, TN +station = ('kcha', 0.0076599252120230126) +zone = ('tnz100', 0.0026943653979087131) + +[fips4713080] +centroid = (0.63149616442060219, -1.5244983442463858) +description = Charlotte town, TN +station = ('kckv', 0.0076475308032044964) +zone = ('tnz025', 0.00059032997614423576) + +[fips47131] +centroid = (0.63456986376628932, -1.5559640824791359) +description = Obion County, TN +station = ('kdyr', 0.0071739778603547213) +zone = ('tnz002', 1.9331372384277025e-05) + +[fips4713190132] +centroid = (0.63630962541796976, -1.5514653217991952) +description = District 1, TN +station = ('kcey', 0.0082558664373198719) +zone = ('tnz003', 0.0037115463066538521) + +[fips4713190322] +centroid = (0.6366413426956038, -1.5553196545594219) +description = District 2, TN +station = ('kdyr', 0.0092500349648765821) +zone = ('kyz001', 0.0017017985789391083) + +[fips4713190512] +centroid = (0.63386948059075654, -1.5539643365820781) +description = District 3, TN +station = ('kdyr', 0.0075617920037933783) +zone = ('tnz002', 0.0017390003975806597) + +[fips4713190702] +centroid = (0.63598317903467683, -1.5533263838338893) +description = District 4, TN +station = ('kdyr', 0.009519451975708958) +zone = ('tnz002', 0.0025341949484508426) + +[fips4713190892] +centroid = (0.63435600857304253, -1.5587762616897041) +description = District 5, TN +station = ('kdyr', 0.0061654539169245627) +zone = ('tnz001', 0.002568322570975922) + +[fips4713191082] +centroid = (0.63368334122603132, -1.5564702803220916) +description = District 6, TN +station = ('kdyr', 0.0062020303049976867) +zone = ('tnz002', 0.00098444288593951194) + +[fips4713191272] +centroid = (0.63562069160233003, -1.5553296029361583) +description = District 7, TN +station = ('kdyr', 0.0083404425667386005) +zone = ('tnz002', 0.0011596732364133472) + +[fips47133] +centroid = (0.63433729864346111, -1.4884704724285556) +description = Overton County, TN +station = ('ksrb', 0.0061315631211534107) +zone = ('tnz033', 7.067587767615545e-05) + +[fips4713390134] +centroid = (0.63499472926610223, -1.4895933823627037) +description = District 1, TN +station = ('ksrb', 0.0062575389163212194) +zone = ('tnz033', 0.001060059230377436) + +[fips4713390324] +centroid = (0.63642771439515966, -1.4886617954211592) +description = District 2, TN +station = ('ksrb', 0.007872755163967406) +zone = ('tnz033', 0.0020894633415692804) + +[fips4713390514] +centroid = (0.63343733706796279, -1.4871093075982178) +description = District 3, TN +station = ('ksrb', 0.0061814653550348484) +zone = ('tnz033', 0.0014756123786369725) + +[fips4713390704] +centroid = (0.63305346935227913, -1.4897411419371775) +description = District 4, TN +station = ('ksrb', 0.004494474893977727) +zone = ('tnz033', 0.001601164794679014) + +[fips4713390894] +centroid = (0.63496125385104907, -1.4909931364228033) +description = District 5, TN +station = ('ksrb', 0.005850024377045385) +zone = ('tnz033', 0.0020569250174776606) + +[fips47135] +centroid = (0.62238065880328608, -1.5337434580139551) +description = Perry County, TN +station = ('kmsl', 0.01636281103327963) +zone = ('tnz056', 0.00039411196989106416) + +[fips4713590136] +centroid = (0.62032150189849067, -1.5343935408004454) +description = District 1, TN +station = ('kmsl', 0.014529158617823439) +zone = ('tnz056', 0.0019262085655520004) + +[fips4713590326] +centroid = (0.62316314226683278, -1.5352851422488267) +description = District 2, TN +station = ('kcrx', 0.016408036104231572) +zone = ('tnz056', 0.0018562425787488407) + +[fips4713590516] +centroid = (0.62066309773969108, -1.5319229399777847) +description = District 3, TN +station = ('kmsl', 0.014374049028171364) +zone = ('tnz056', 0.0018731892750157052) + +[fips4713590706] +centroid = (0.62467829749707404, -1.5321459232430195) +description = District 4, TN +station = ('kckv', 0.015311082368633879) +zone = ('tnz056', 0.0027986288685186772) + +[fips4713590896] +centroid = (0.62163681692937867, -1.5332516067774504) +description = District 5, TN +station = ('kmsl', 0.015545584741575103) +zone = ('tnz056', 0.00046669291325525446) + +[fips4713591086] +centroid = (0.62379676659847672, -1.532869152778461) +description = District 6, TN +station = ('kckv', 0.016340875883866946) +zone = ('tnz056', 0.0017752232240603248) + +[fips47137] +centroid = (0.63808127423508421, -1.484851794023933) +description = Pickett County, TN +station = ('kekq', 0.0060098131241961769) +zone = ('tnz011', 2.0035662701925309e-05) + +[fips4713790138] +centroid = (0.63776791782118114, -1.4858875422152367) +description = District 1, TN +station = ('kekq', 0.006726767865191617) +zone = ('tnz011', 0.00089633457805674758) + +[fips4713790328] +centroid = (0.63824502102550629, -1.4865479922574838) +description = District 2, TN +station = ('kekq', 0.006682656301833045) +zone = ('tnz011', 0.0013871458159254882) + +[fips4713790518] +centroid = (0.63873373066935724, -1.4830179067656928) +description = District 3, TN +station = ('kekq', 0.0047883288845356926) +zone = ('tnz011', 0.0016049259182541709) + +[fips4713790708] +centroid = (0.63729952380982335, -1.4867107093036473) +description = District 4, TN +station = ('kekq', 0.0074964415616259406) +zone = ('tnz011', 0.0016906231774628563) + +[fips47139] +centroid = (0.61277527417152033, -1.4755207576972884) +description = Polk County, TN +station = ('kdnn', 0.0082369200109196489) +zone = ('tnz101', 0.00093736330455628859) + +[fips4713990140] +centroid = (0.61469094755850939, -1.4771175943365231) +description = District 1, TN +station = ('kcha', 0.0087249151382801267) +zone = ('tnz101', 0.00146362262988176) + +[fips4713990330] +centroid = (0.61297113502017919, -1.4756525126025213) +description = District 2, TN +station = ('kdnn', 0.0083385038825858366) +zone = ('tnz101', 0.00073951536552542031) + +[fips4713990520] +centroid = (0.61216959256120074, -1.4737396841022132) +description = District 3, TN +station = ('krhp', 0.008477564172152726) +zone = ('tnz102', 0.00043881567999568677) + +[fips4714000] +centroid = (0.61202525383206097, -1.4878419619116201) +description = Chattanooga city, TN +station = ('kcha', 0.00088689374879426762) +zone = ('tnz099', 0.002316949169699903) + +[fips47141] +centroid = (0.63077607647781431, -1.4922028939405305) +description = Putnam County, TN +station = ('ksrb', 0.0015565591087350374) +zone = ('tnz032', 2.5765499534019612e-05) + +[fips4714190142] +centroid = (0.6307903183645106, -1.4920437897259189) +description = District 1, TN +station = ('ksrb', 0.0016137742430905816) +zone = ('tnz032', 0.00010372148467591995) + +[fips4714190332] +centroid = (0.63140408084926691, -1.491906310140739) +description = District 2, TN +station = ('ksrb', 0.0022280064587803898) +zone = ('tnz032', 0.0006634830594153203) + +[fips4714190522] +centroid = (0.63150255232566443, -1.4923794689009549) +description = District 3, TN +station = ('ksrb', 0.0022334229146425953) +zone = ('tnz032', 0.0007458386954181782) + +[fips4714190712] +centroid = (0.63003701680605728, -1.4886088770382386) +description = District 4, TN +station = ('ksrb', 0.0034618058876087284) +zone = ('tnz032', 0.0029707972346059825) + +[fips4714190902] +centroid = (0.63029302170073975, -1.4912715164384962) +description = District 5, TN +station = ('ksrb', 0.0015837446990944718) +zone = ('tnz032', 0.00087238100773044485) + +[fips4714191092] +centroid = (0.63091449854078996, -1.4928836596152708) +description = District 6, TN +station = ('ksrb', 0.0016220082863806402) +zone = ('tnz032', 0.00059194356314921372) + +[fips4714191282] +centroid = (0.62975772921915307, -1.4940634847363266) +description = District 7, TN +station = ('ksrb', 0.0011272152030128765) +zone = ('tnz032', 0.0018369236746707581) + +[fips4714191472] +centroid = (0.63110227851501211, -1.4959943773943929) +description = District 8, TN +station = ('ksrb', 0.0031562114015722216) +zone = ('tnz031', 0.0035328304588187493) + +[fips4714191662] +centroid = (0.63143661378652405, -1.4938039193699699) +description = District 9, TN +station = ('ksrb', 0.0022929989012985597) +zone = ('tnz032', 0.001474657842001806) + +[fips4714191852] +centroid = (0.63190080155438455, -1.492812066209354) +description = District 10, TN +station = ('ksrb', 0.0026066805417695243) +zone = ('tnz032', 0.0012381798657346195) + +[fips4714192042] +centroid = (0.6324658518997176, -1.4919259800014091) +description = District 11, TN +station = ('ksrb', 0.003247919640236368) +zone = ('tnz032', 0.0017014273362132609) + +[fips4714192232] +centroid = (0.63172874699672288, -1.4903967225108115) +description = District 12, TN +station = ('ksrb', 0.0031098801094103265) +zone = ('tnz032', 0.0017202990768816731) + +[fips4714220] +centroid = (0.62222560375253888, -1.5405622848685718) +description = Chesterfield CDP, TN +station = ('kmkl', 0.0092492466485818367) +zone = ('tnz054', 0.00170687886490476) + +[fips47143] +centroid = (0.62134745879269049, -1.4826493804941339) +description = Rhea County, TN +station = ('kcsv', 0.0063858553913045011) +zone = ('tnz083', 0.00038398042502736185) + +[fips4714390144] +centroid = (0.62413176509510448, -1.480031473882605) +description = District 1, TN +station = ('kcsv', 0.0052055385329451585) +zone = ('tnz083', 0.0031805870651547413) + +[fips4714390334] +centroid = (0.62306639866639468, -1.4812942894095931) +description = District 2, TN +station = ('kcsv', 0.0053038893367589358) +zone = ('tnz083', 0.0017441655809464422) + +[fips4714390524] +centroid = (0.62183391696180634, -1.4813978223408213) +description = District 3, TN +station = ('kcsv', 0.0063212112528542516) +zone = ('tnz083', 0.00074515419037485893) + +[fips4714390714] +centroid = (0.62110663826250045, -1.4831823691411081) +description = District 4, TN +station = ('kcsv', 0.0065056459401187624) +zone = ('tnz083', 0.00087799411907009547) + +[fips4714390904] +centroid = (0.61972063739690653, -1.4835883850849996) +description = District 5, TN +station = ('kcsv', 0.0078078982214073531) +zone = ('tnz083', 0.0020938052433210094) + +[fips4714391094] +centroid = (0.61927875493688667, -1.4845215602761632) +description = District 6, TN +station = ('kcha', 0.0080932069747340421) +zone = ('tnz082', 0.0029012505808443047) + +[fips4714391284] +centroid = (0.61930025739327133, -1.4822036583097598) +description = District 7, TN +station = ('kcsv', 0.0084526820493309746) +zone = ('tnz084', 0.0016520905446334405) + +[fips4714391474] +centroid = (0.61884039804195579, -1.4839301205525399) +description = District 8, TN +station = ('kcha', 0.0078123060877479502) +zone = ('tnz083', 0.0029956543547256858) + +[fips4714391664] +centroid = (0.61982097637560374, -1.4850386664269442) +description = District 9, TN +station = ('kcsv', 0.0076250174080534647) +zone = ('tnz082', 0.0022250516627784858) + +[fips47145] +centroid = (0.62565641491647683, -1.4752196709480268) +description = Roane County, TN +station = ('koqt', 0.0050574355598944831) +zone = ('tnz067', 9.7857866754944576e-06) + +[fips4714590146] +centroid = (0.62553359609701387, -1.4780152520774088) +description = District 1, TN +station = ('kcsv', 0.0059606294852202922) +zone = ('tnz067', 0.0022777016669648996) + +[fips4714590336] +centroid = (0.62694579435468012, -1.475724908859894) +description = District 2, TN +station = ('koqt', 0.0048096492978989651) +zone = ('tnz067', 0.0013497737100853352) + +[fips4714590526] +centroid = (0.62741233831703069, -1.474258535582246) +description = District 3, TN +station = ('koqt', 0.0035343207492452011) +zone = ('tnz067', 0.0019123530186357985) + +[fips4714590716] +centroid = (0.62750203078729061, -1.4720144784964944) +description = District 4, TN +station = ('koqt', 0.0018721264399097944) +zone = ('tnz067', 0.0031756830038147327) + +[fips4714590906] +centroid = (0.62530953072764284, -1.4732930717999204) +description = District 5, TN +station = ('koqt', 0.0041679645483190964) +zone = ('tnz067', 0.001593419537172651) + +[fips4714591096] +centroid = (0.62600129197667087, -1.474397969936188) +description = District 6, TN +station = ('koqt', 0.0043169417978874023) +zone = ('tnz067', 0.00074029211175228606) + +[fips4714591286] +centroid = (0.62403109450384953, -1.4759266514681322) +description = District 7, TN +station = ('koqt', 0.0065477171556298959) +zone = ('tnz067', 0.0017315495640237732) + +[fips47147] +centroid = (0.63752566612100425, -1.516156647806234) +description = Robertson County, TN +station = ('kbna', 0.0076332377158522709) +zone = ('tnz007', 4.0374360093306535e-05) + +[fips4714790148] +centroid = (0.63873722132786126, -1.5127512660894979) +description = District 1, TN +station = ('kbwg', 0.0073895242041046747) +zone = ('kyz072', 0.00283863442876933) + +[fips4714790338] +centroid = (0.63653496487769479, -1.512989363906055) +description = District 2, TN +station = ('kbna', 0.0061805512926031859) +zone = ('tnz007', 0.0027335589611386601) + +[fips4714790528] +centroid = (0.63643806419762405, -1.5146730830354538) +description = District 3, TN +station = ('kbna', 0.0062471732239482679) +zone = ('tnz007', 0.0016011345901316295) + +[fips4714790718] +centroid = (0.63525691262633688, -1.5146212991165473) +description = District 4, TN +station = ('kbna', 0.0050927789245530097) +zone = ('tnz007', 0.0025581015578745587) + +[fips4714790908] +centroid = (0.63568594946306212, -1.51503736815693) +description = District 5, TN +station = ('kbna', 0.005600420226341561) +zone = ('tnz007', 0.0020218445298861095) + +[fips4714791098] +centroid = (0.63567727517667971, -1.5177231331697767) +description = District 6, TN +station = ('kbna', 0.0065871629399930215) +zone = ('tnz007', 0.0021972224166702569) + +[fips4714791288] +centroid = (0.63789338954110708, -1.5188942316445724) +description = District 7, TN +station = ('kckv', 0.0055994419186431712) +zone = ('tnz007', 0.0022210437873135674) + +[fips4714791478] +centroid = (0.63851214366752407, -1.5152007658815019) +description = District 8, TN +station = ('kbna', 0.0083635127566125435) +zone = ('tnz007', 0.0012891407605025345) + +[fips4714791668] +centroid = (0.63724787951725692, -1.5156858801470938) +description = District 9, TN +station = ('kbna', 0.0072470557071603126) +zone = ('tnz007', 0.00046173756034153802) + +[fips4714791858] +centroid = (0.63648590367242119, -1.5163013705078094) +description = District 10, TN +station = ('kbna', 0.0067130281539885409) +zone = ('tnz007', 0.0010076199218108759) + +[fips4714792048] +centroid = (0.63705100637763201, -1.5174637423363451) +description = District 11, TN +station = ('kckv', 0.0069269579134893121) +zone = ('tnz007', 0.0011234683675509591) + +[fips4714792238] +centroid = (0.63682676647533565, -1.5167092539540006) +description = District 12, TN +station = ('kbna', 0.0071598833940033071) +zone = ('tnz007', 0.00078830625438897235) + +[fips47149] +centroid = (0.62558480405726746, -1.5082648972472465) +description = Rutherford County, TN +station = ('kmqy', 0.0032335615644847079) +zone = ('tnz062', 1.3748192805568389e-05) + +[fips4714980] +centroid = (0.63740766441027696, -1.4436477992434633) +description = Church Hill city, TN +station = ('ktri', 0.0045185175899177688) +zone = ('tnz016', 0.0035108475542380063) + +[fips4714990150] +centroid = (0.62909804712177686, -1.5103019408304192) +description = District 1, TN +station = ('kmqy', 0.00065459157785478686) +zone = ('tnz062', 0.0038947145452671518) + +[fips4714990340] +centroid = (0.62731817780388555, -1.505817020611447) +description = District 2, TN +station = ('kmqy', 0.0036220351166133262) +zone = ('tnz062', 0.0026361009089376085) + +[fips4714990530] +centroid = (0.62817122492909028, -1.5088597578162037) +description = District 3, TN +station = ('kmqy', 0.0010161518477324542) +zone = ('tnz062', 0.0026437166683132055) + +[fips4714990720] +centroid = (0.62575589868384041, -1.5058125700218545) +description = District 4, TN +station = ('kmqy', 0.0043827359236434044) +zone = ('tnz062', 0.0019889508335237897) + +[fips4714990910] +centroid = (0.62839185199983494, -1.5110741443046716) +description = District 5, TN +station = ('kmqy', 0.00082537230199454547) +zone = ('tnz062', 0.0036267832279857784) + +[fips4714991100] +centroid = (0.62371852348810986, -1.5063217000179536) +description = District 6, TN +station = ('kmqy', 0.0056375550686098754) +zone = ('tnz062', 0.0024292631225442981) + +[fips4714991290] +centroid = (0.62445700720121367, -1.5090693020461983) +description = District 7, TN +station = ('kmqy', 0.0040958801182881827) +zone = ('tnz062', 0.0012964538352658506) + +[fips4714991480] +centroid = (0.62446203374945941, -1.5108667991895348) +description = District 8, TN +station = ('kmqy', 0.0040646786237129732) +zone = ('tnz062', 0.0023911096362472617) + +[fips4714991670] +centroid = (0.62689203821371864, -1.5108008606503942) +description = District 9, TN +station = ('kmqy', 0.0016918144180775644) +zone = ('tnz062', 0.0024477241235370145) + +[fips4714991860] +centroid = (0.62769146882430216, -1.5108529936351514) +description = District 10, TN +station = ('kmqy', 0.0010122930870811967) +zone = ('tnz062', 0.002985400607159338) + +[fips4714992050] +centroid = (0.62797068659803612, -1.5101641994458517) +description = District 11, TN +station = ('kmqy', 0.00051015281222366055) +zone = ('tnz062', 0.0028525413161238186) + +[fips4714992240] +centroid = (0.62828449679754472, -1.5097608364024233) +description = District 12, TN +station = ('kmqy', 0.00030645949182897243) +zone = ('tnz062', 0.0029726718615755566) + +[fips4714992430] +centroid = (0.62537520746739539, -1.5083594591861196) +description = District 13, TN +station = ('kmqy', 0.0033903563488568655) +zone = ('tnz062', 0.00021497622030324366) + +[fips4714992620] +centroid = (0.62647881406001649, -1.5077890332266903) +description = District 14, TN +station = ('kmqy', 0.0027121404127799179) +zone = ('tnz062', 0.00098154415367051077) + +[fips4714992810] +centroid = (0.62628283103831006, -1.5073863159550851) +description = District 15, TN +station = ('kmqy', 0.0030791252105835222) +zone = ('tnz062', 0.0010001851287853166) + +[fips4714993000] +centroid = (0.62571467400690839, -1.507936216842511) +description = District 16, TN +station = ('kmqy', 0.0032505832280605548) +zone = ('tnz062', 0.0002953005920772739) + +[fips4714993190] +centroid = (0.62586740776975036, -1.5071981345551351) +description = District 17, TN +station = ('kmqy', 0.0034868177786739141) +zone = ('tnz062', 0.00090649452988764373) + +[fips4714993380] +centroid = (0.62494704329529616, -1.5078579911854366) +description = District 18, TN +station = ('kmqy', 0.0039515627856172826) +zone = ('tnz062', 0.00070433942223993486) + +[fips4714993570] +centroid = (0.62626509849310985, -1.5083450253132056) +description = District 19, TN +station = ('kmqy', 0.0026082374775054195) +zone = ('tnz062', 0.00069572652750777772) + +[fips4714993760] +centroid = (0.62648277595741841, -1.5092061882194323) +description = District 20, TN +station = ('kmqy', 0.0021071577159927071) +zone = ('tnz062', 0.001191815117998677) + +[fips4714993950] +centroid = (0.62499778001665174, -1.5072897294342797) +description = District 21, TN +station = ('kmqy', 0.0041366894991181451) +zone = ('tnz062', 0.00097197986667656091) + +[fips47151] +centroid = (0.63594979088608605, -1.4747750483210813) +description = Scott County, TN +station = ('koqt', 0.0082344896542314219) +zone = ('tnz012', 0.0001670064779154165) + +[fips4715120] +centroid = (0.63155995620476257, -1.4836975030698341) +description = Clarkrange CDP, TN +station = ('kcsv', 0.0042435411952182192) +zone = ('tnz034', 0.0035688656281420736) + +[fips4715140] +centroid = (0.62597547855703373, -1.5427560066586958) +description = Clarksburg town, TN +station = ('kmkl', 0.0087447746775240077) +zone = ('tnz021', 0.0020382797015076385) + +[fips4715160] +centroid = (0.63820459920003003, -1.5244616050656314) +description = Clarksville city, TN +station = ('kckv', 0.0013309007020723012) +zone = ('tnz006', 0.0013236119572121255) + +[fips4715190152] +centroid = (0.63371404156757394, -1.4731237225025995) +description = District 1, TN +station = ('koqt', 0.0056413554502532303) +zone = ('tnz012', 0.0025122552607468591) + +[fips4715190342] +centroid = (0.63407459168445079, -1.4757365152994197) +description = District 2, TN +station = ('koqt', 0.0070860442316591889) +zone = ('tnz012', 0.0018619196035685969) + +[fips4715190532] +centroid = (0.63551019480738635, -1.4745741783774693) +description = District 3, TN +station = ('koqt', 0.0077696517597387674) +zone = ('tnz012', 0.00037137405439609733) + +[fips4715190722] +centroid = (0.63597309103160027, -1.4759703021527244) +description = District 4, TN +station = ('kekq', 0.0083246277378268754) +zone = ('tnz012', 0.00090669369451597097) + +[fips4715190912] +centroid = (0.63731524922638383, -1.4730830912376129) +description = District 5, TN +station = ('kekq', 0.0086987817997348383) +zone = ('tnz012', 0.002085814494746774) + +[fips4715191102] +centroid = (0.63729367695682926, -1.4749650623167458) +description = District 6, TN +station = ('kekq', 0.0076808393088051473) +zone = ('tnz012', 0.001496859601951857) + +[fips4715191292] +centroid = (0.63760872634010668, -1.4772609731345743) +description = District 7, TN +station = ('kekq', 0.0063918766080916243) +zone = ('tnz012', 0.0026436040999929643) + +[fips47153] +centroid = (0.61736370986842837, -1.4906917180609836) +description = Sequatchie County, TN +station = ('kcha', 0.0066337001153709135) +zone = ('tnz081', 2.014172931910735e-05) + +[fips4715390154] +centroid = (0.61698945891692336, -1.4888951808487361) +description = District 1, TN +station = ('kcha', 0.0057502823341453154) +zone = ('tnz081', 0.0015109201728594659) + +[fips4715390344] +centroid = (0.61878079504800021, -1.4916197619841467) +description = District 2, TN +station = ('kcha', 0.0082397490803652051) +zone = ('tnz081', 0.0016221124374868794) + +[fips4715390534] +centroid = (0.6182003858052495, -1.4899738292330535) +description = District 3, TN +station = ('kcha', 0.0071713345134504754) +zone = ('tnz081', 0.0010393771366816263) + +[fips4715390724] +centroid = (0.61746628286856808, -1.4902414754738467) +description = District 4, TN +station = ('kcha', 0.0065694670372430557) +zone = ('tnz081', 0.00039043957350328948) + +[fips4715390914] +centroid = (0.61629254894660201, -1.4903788852458564) +description = District 5, TN +station = ('kcha', 0.0055691417092439376) +zone = ('tnz081', 0.001082743090004689) + +[fips4715391104] +centroid = (0.61641995798199745, -1.4919481456829093) +description = District 6, TN +station = ('kcha', 0.0063994605261168142) +zone = ('tnz081', 0.0013771460871229296) + +[fips4715391294] +centroid = (0.61712124872874141, -1.490747481330585) +description = District 7, TN +station = ('kcha', 0.0064399273834634526) +zone = ('tnz081', 0.00022654699505875013) + +[fips4715391484] +centroid = (0.61511551635234951, -1.4898451810138889) +description = District 8, TN +station = ('kcha', 0.0043351520506457733) +zone = ('tnz081', 0.002334092775481523) + +[fips4715400] +centroid = (0.61404350021918963, -1.4812778484080393) +description = Cleveland city, TN +station = ('kcha', 0.0053676962410368354) +zone = ('tnz100', 0.00051492540684351651) + +[fips4715480] +centroid = (0.61745012111969466, -1.5357356815419365) +description = Clifton city, TN +station = ('kcrx', 0.011797773384451491) +zone = ('tnz093', 0.0037569949402988666) + +[fips47155] +centroid = (0.62467574931636616, -1.4577331124525406) +description = Sevier County, TN +station = ('ktys', 0.0065458243404003091) +zone = ('tnz073', 0.0010944462828507443) + +[fips4715580] +centroid = (0.63005651213380209, -1.4683117973949733) +description = Clinton city, TN +station = ('koqt', 0.0020736458630919237) +zone = ('tnz036', 0.0010460269959465852) + +[fips4715590156] +centroid = (0.62537766838164077, -1.4549020313261731) +description = District 1, TN +station = ('k1a5', 0.010761300382603846) +zone = ('tnz074', 0.0031240652141043736) + +[fips4715590346] +centroid = (0.62389886835971842, -1.4598204215181705) +description = District 2, TN +station = ('ktys', 0.0049907048939410847) +zone = ('tnz073', 0.0021194309130313322) + +[fips4715590536] +centroid = (0.62650848465730036, -1.4560308928330705) +description = District 3, TN +station = ('ktys', 0.0080273292239733569) +zone = ('tnz073', 0.0020647937567446926) + +[fips4715590726] +centroid = (0.62508865931080304, -1.4581879801621953) +description = District 4, TN +station = ('ktys', 0.0061610645662257052) +zone = ('tnz073', 0.00057610839370647485) + +[fips4715590916] +centroid = (0.62584705723067213, -1.4582691205191205) +description = District 5, TN +station = ('ktys', 0.0061368941725734082) +zone = ('tnz073', 0.00020730666651276342) + +[fips4715591106] +centroid = (0.62661580495300551, -1.4614485868174787) +description = District 6, TN +station = ('ktys', 0.0038205390111238908) +zone = ('tnz073', 0.002691481174146131) + +[fips4715591296] +centroid = (0.62669397825020234, -1.458452921142648) +description = District 7, TN +station = ('ktys', 0.0061479284984537448) +zone = ('tnz073', 0.0010474948714684104) + +[fips4715591486] +centroid = (0.62794743881239956, -1.4592850766767065) +description = District 8, TN +station = ('ktys', 0.0059775581594617103) +zone = ('tnz073', 0.0024195599737350634) + +[fips4715591676] +centroid = (0.62602401616353176, -1.4612882783256829) +description = District 9, TN +station = ('ktys', 0.0037564335075827918) +zone = ('tnz073', 0.0024119976165574665) + +[fips4715591866] +centroid = (0.62577324725660521, -1.4602915906030389) +description = District 10, TN +station = ('ktys', 0.0045018991766467027) +zone = ('tnz073', 0.0015799853186389992) + +[fips4715592056] +centroid = (0.62265760764899258, -1.4568707801757153) +description = District 11, TN +station = ('k1a5', 0.0080501278721724964) +zone = ('tnz074', 9.6016140668381684e-05) + +[fips47157] +centroid = (0.61407304864342582, -1.5689706600374329) +description = Shelby County, TN +station = ('kmem', 0.0029107473144755263) +zone = ('tnz088', 3.328233646536243e-06) + +[fips4715790158] +centroid = (0.61343223355526355, -1.5682208316841912) +description = District 1, TN +station = ('kmem', 0.0027268395398631724) +zone = ('tnz088', 0.00088760743931163102) + +[fips4715790348] +centroid = (0.61430542178003633, -1.5708368358868352) +description = District 2, TN +station = ('kmem', 0.0028712326330114016) +zone = ('tnz088', 0.0015401032736040324) + +[fips4715790538] +centroid = (0.61161340848846779, -1.5707334949418248) +description = District 3, TN +station = ('kmem', 0.00025010687065490055) +zone = ('tnz088', 0.00284830703689846) + +[fips4715790728] +centroid = (0.61516510115639866, -1.5678262301936077) +description = District 4, TN +station = ('knqa', 0.002009523251001938) +zone = ('tnz088', 0.0014407621354093382) + +[fips4715790918] +centroid = (0.61202064616283558, -1.5687186868533225) +description = District 5, TN +station = ('kmem', 0.0015711886180564808) +zone = ('tnz088', 0.0020613829278512152) + +[fips4715880] +centroid = (0.62871707665265153, -1.4737994965356791) +description = Coalfield CDP, TN +station = ('koqt', 0.0029545300694577602) +zone = ('tnz067', 0.0032613966682726639) + +[fips47159] +centroid = (0.63278046495068219, -1.4999722271057832) +description = Smith County, TN +station = ('ksrb', 0.0067647062871995798) +zone = ('tnz030', 0.00022457096780633204) + +[fips4715920] +centroid = (0.61687224260435924, -1.4959885654479836) +description = Coalmont city, TN +station = ('kbgf', 0.0058027647368443713) +zone = ('tnz079', 0.0007818795962340943) + +[fips4715990160] +centroid = (0.63461902969131812, -1.4993492143759912) +description = District 1, TN +station = ('ksrb', 0.0075062730024931272) +zone = ('tnz030', 0.0020542132191740088) + +[fips4715990350] +centroid = (0.6340748011239612, -1.5012127198716383) +description = District 2, TN +station = ('ksrb', 0.0083086413579961504) +zone = ('tnz030', 0.0015958629687912252) + +[fips4715990540] +centroid = (0.63090393929881539, -1.5014496832241815) +description = District 3, TN +station = ('kmqy', 0.0073702316700684266) +zone = ('tnz030', 0.0020408114789482387) + +[fips4715990730] +centroid = (0.63298444158036271, -1.5020331467931232) +description = District 4, TN +station = ('kmqy', 0.0078966667129220583) +zone = ('tnz030', 0.0014854027171715292) + +[fips4715990920] +centroid = (0.63080054599392732, -1.4994644410132079) +description = District 5, TN +station = ('ksrb', 0.0055975627641274292) +zone = ('tnz030', 0.0019878011259279742) + +[fips4715991110] +centroid = (0.63278046495068219, -1.4999722271057832) +description = District 6, TN +station = ('ksrb', 0.0067647062871995798) +zone = ('tnz030', 0.00022457096780633204) + +[fips4715991300] +centroid = (0.63220757807700745, -1.5010468437795286) +description = District 7, TN +station = ('kmqy', 0.0081818357788965568) +zone = ('tnz030', 0.00081860462000858984) + +[fips4715991490] +centroid = (0.6321386899314313, -1.498472413319667) +description = District 8, TN +station = ('ksrb', 0.0053976164816483489) +zone = ('tnz030', 0.0015193772079892609) + +[fips47161] +centroid = (0.63725035788479467, -1.5332987655738393) +description = Stewart County, TN +station = ('khop', 0.0056196488686908706) +zone = ('tnz005', 0.00025971066087838676) + +[fips4716190162] +centroid = (0.63677793216286493, -1.5306025983986511) +description = District 1, TN +station = ('khop', 0.0042091933587034046) +zone = ('tnz005', 0.0020052670197218884) + +[fips4716190352] +centroid = (0.63853094086356799, -1.5310549702874754) +description = District 2, TN +station = ('khop', 0.0034323437881563414) +zone = ('tnz005', 0.0021838498926930469) + +[fips4716190542] +centroid = (0.63845524593390901, -1.5350077396175148) +description = District 3, TN +station = ('kcey', 0.0059146442855807649) +zone = ('tnz005', 0.0020858642858921144) + +[fips4716190732] +centroid = (0.63725035788479467, -1.5332987655738393) +description = District 4, TN +station = ('khop', 0.0056196488686908706) +zone = ('tnz005', 0.00025971066087838676) + +[fips4716190922] +centroid = (0.63537599644120035, -1.5349344881488085) +description = District 5, TN +station = ('kcey', 0.0073304426961167254) +zone = ('tnz005', 0.0022590059966418087) + +[fips4716191112] +centroid = (0.63632023701982188, -1.5326065854457909) +description = District 6, TN +station = ('khop', 0.0056851689925755053) +zone = ('tnz005', 0.00083415007071768711) + +[fips4716191302] +centroid = (0.6350723964178161, -1.5316183451167267) +description = District 7, TN +station = ('khop', 0.0060537569796554353) +zone = ('tnz023', 0.0018421138199904662) + +[fips47163] +centroid = (0.63722341000114402, -1.4363954500559437) +description = Sullivan County, TN +station = ('ktri', 0.0016032510241922823) +zone = ('tnz017', 8.2100316504381518e-05) + +[fips4716300] +centroid = (0.6117340281930731, -1.4844038029115312) +description = Collegedale city, TN +station = ('kcha', 0.0021615418498238522) +zone = ('tnz099', 0.0028142630416282295) + +[fips4716390164] +centroid = (0.637769523524093, -1.4316182220938474) +description = District 1, TN +station = ('kvji', 0.0024777434885896081) +zone = ('tnz018', 0.0028698964267955943) + +[fips4716390354] +centroid = (0.63793386372646077, -1.4348183530905489) +description = District 2, TN +station = ('k0a9', 0.0032048061562525596) +zone = ('tnz017', 0.0014904461019948818) + +[fips4716390544] +centroid = (0.63848657459398228, -1.4350456124124513) +description = District 3, TN +station = ('kvji', 0.003174670137915005) +zone = ('tnz017', 0.0016750505934579754) + +[fips4716390734] +centroid = (0.63747311425722675, -1.4361690633986677) +description = District 4, TN +station = ('ktri', 0.0018864921737724624) +zone = ('tnz017', 0.00032136926629949819) + +[fips4716390924] +centroid = (0.63616947547903469, -1.4355191202385174) +description = District 5, TN +station = ('k0a9', 0.0017827641701831797) +zone = ('tnz017', 0.0013445727680783828) + +[fips4716391114] +centroid = (0.63809349153984807, -1.438526706512139) +description = District 6, TN +station = ('ktri', 0.0016577787378422759) +zone = ('tnz017', 0.0018395209238765949) + +[fips4716391304] +centroid = (0.63662430828210437, -1.4390271273152708) +description = District 7, TN +station = ('ktri', 0.00072244507056890017) +zone = ('tnz017', 0.0021477153622403902) + +[fips4716391494] +centroid = (0.63659914063429057, -1.4415123714503555) +description = District 8, TN +station = ('ktri', 0.0027062503942235539) +zone = ('tnz044', 0.0034327575922671852) + +[fips4716391684] +centroid = (0.63806315771744848, -1.4413530403429409) +description = District 9, TN +station = ('ktri', 0.0030300505503705719) +zone = ('vaz005', 0.0027342635858957527) + +[fips4716391874] +centroid = (0.6381021483729381, -1.4401820814944857) +description = District 10, TN +station = ('ktri', 0.0023128907771563377) +zone = ('vaz005', 0.0029433083769703) + +[fips4716392064] +centroid = (0.63763895544275129, -1.4405238693219036) +description = District 11, TN +station = ('ktri', 0.0022403837404433679) +zone = ('vaz005', 0.0032820192690056157) + +[fips4716420] +centroid = (0.61185457808450838, -1.5654412377707574) +description = Collierville town, TN +station = ('kolv', 0.0019078881537864687) +zone = ('tnz088', 0.0036421344031703448) + +[fips4716480] +centroid = (0.61391525342575304, -1.5314123788116989) +description = Collinwood city, TN +station = ('kmsl', 0.0076921059989824543) +zone = ('tnz093', 0.0013038924136578609) + +[fips47165] +centroid = (0.63652184000171974, -1.5089857880414903) +description = Sumner County, TN +station = ('kbna', 0.0069307082134401655) +zone = ('tnz008', 2.7230011921532238e-05) + +[fips4716500] +centroid = (0.63671433236492214, -1.4400775886321686) +description = Colonial Heights CDP, TN +station = ('ktri', 0.0015691735948282436) +zone = ('tnz044', 0.0032818128265501741) + +[fips4716540] +centroid = (0.62173006987131274, -1.5193050297906143) +description = Columbia city, TN +station = ('kbna', 0.010061993328951156) +zone = ('tnz060', 0.00039817348476496882) + +[fips4716590166] +centroid = (0.63824980322765679, -1.5067645947689399) +description = District 1, TN +station = ('kbwg', 0.0070422362491549947) +zone = ('tnz008', 0.0025098768075944573) + +[fips4716590356] +centroid = (0.63877029531718643, -1.509721549040961) +description = District 2, TN +station = ('kbwg', 0.0065262657742133435) +zone = ('tnz008', 0.0023290548260618657) + +[fips4716590546] +centroid = (0.63578257089045254, -1.5074867247469521) +description = District 3, TN +station = ('kbna', 0.0069696043136453847) +zone = ('tnz008', 0.0014303117808215789) + +[fips4716590736] +centroid = (0.63582039217534325, -1.5103457311413515) +description = District 4, TN +station = ('kbna', 0.0058434277431211766) +zone = ('tnz008', 0.0012726302709863409) + +[fips4716590926] +centroid = (0.63501497508542548, -1.5084314191111794) +description = District 5, TN +station = ('kbna', 0.005895733800303983) +zone = ('tnz008', 0.0015685466491599357) + +[fips4716591116] +centroid = (0.63412859217150763, -1.5097241670348389) +description = District 6, TN +station = ('kbna', 0.0045656483012427524) +zone = ('tnz008', 0.0024495776078983572) + +[fips4716591306] +centroid = (0.6344182470141686, -1.5111884808239697) +description = District 7, TN +station = ('kbna', 0.0042941004703348756) +zone = ('tnz008', 0.0027266132009004513) + +[fips4716591496] +centroid = (0.63320520827744753, -1.5116988325505454) +description = District 8, TN +station = ('kbna', 0.0030132589296822557) +zone = ('tnz027', 0.0030839660428894238) + +[fips4716591686] +centroid = (0.63328866992227784, -1.5112254468975268) +description = District 9, TN +station = ('kbna', 0.0032333888180613021) +zone = ('tnz027', 0.0034383794678142414) + +[fips4716591876] +centroid = (0.63364302412031026, -1.5122063917503179) +description = District 10, TN +station = ('kbna', 0.0033368632231741521) +zone = ('tnz027', 0.0030966469004732196) + +[fips4716592066] +centroid = (0.63476987849856792, -1.5125668196941473) +description = District 11, TN +station = ('kbna', 0.0044237757943276258) +zone = ('tnz008', 0.0033454359807719262) + +[fips4716592256] +centroid = (0.63697904645257231, -1.5116098731185712) +description = District 12, TN +station = ('kbna', 0.0067065877363938825) +zone = ('tnz008', 0.0021367051277482447) + +[fips47167] +centroid = (0.61959706808586545, -1.566672253398774) +description = Tipton County, TN +station = ('knqa', 0.0029293663978373148) +zone = ('tnz049', 8.8941272747926947e-05) + +[fips4716790168] +centroid = (0.62135039094583389, -1.5639693841592581) +description = District 1, TN +station = ('knqa', 0.0056528811586110412) +zone = ('tnz049', 0.0028063047283519303) + +[fips4716790358] +centroid = (0.62008097807427331, -1.5630262431380655) +description = District 2, TN +station = ('knqa', 0.0053913144871542036) +zone = ('tnz049', 0.0029579031607917727) + +[fips4716790548] +centroid = (0.62089238164352556, -1.5668370822933324) +description = District 3, TN +station = ('knqa', 0.004045049699030424) +zone = ('tnz049', 0.0013737935006691308) + +[fips4716790738] +centroid = (0.61822092833054543, -1.56678013219984) +description = District 4, TN +station = ('knqa', 0.0018217418949713648) +zone = ('tnz049', 0.0013200639203744047) + +[fips4716790928] +centroid = (0.61909457034092374, -1.5674216628729956) +description = District 5, TN +station = ('knqa', 0.0021992133810429422) +zone = ('tnz049', 0.00080166536410181436) + +[fips4716791118] +centroid = (0.61914740145738156, -1.5701703295520839) +description = District 6, TN +station = ('knqa', 0.0024523623624373345) +zone = ('tnz049', 0.0029349525248223277) + +[fips4716791308] +centroid = (0.61844330073054199, -1.5637816390916213) +description = District 7, TN +station = ('knqa', 0.0041021404516339913) +zone = ('tnz049', 0.0025386237477493688) + +[fips4716791498] +centroid = (0.61819577813602422, -1.5686533940860055) +description = District 8, TN +station = ('knqa', 0.0011099351659544434) +zone = ('tnz049', 0.0021429943654731635) + +[fips4716791688] +centroid = (0.6194159378160935, -1.5657032640513595) +description = District 9, TN +station = ('knqa', 0.0032746478221259536) +zone = ('tnz049', 0.00073700085032594358) + +[fips47169] +centroid = (0.635178198277072, -1.5037179305733657) +description = Trousdale County, TN +station = ('kmqy', 0.0084339951378542104) +zone = ('tnz029', 1.6232050409446497e-05) + +[fips4716920] +centroid = (0.63089613767705899, -1.4923478435349087) +description = Cookeville city, TN +station = ('ksrb', 0.001641729317935225) +zone = ('tnz032', 0.00018665590439343455) + +[fips4716980] +centroid = (0.63555045955322975, -1.5178376267687073) +description = Coopertown town, TN +station = ('kbna', 0.0065408962560089007) +zone = ('tnz007', 0.0023539199977200146) + +[fips4716990170] +centroid = (0.6348716137406667, -1.503534287029471) +description = District 1, TN +station = ('kmqy', 0.0082861319121608559) +zone = ('tnz029', 0.0003258837546694308) + +[fips4716990360] +centroid = (0.63533290426196876, -1.5018704646535448) +description = District 2, TN +station = ('ksrb', 0.0094916791936915986) +zone = ('tnz029', 0.0014969891694210115) + +[fips4716990550] +centroid = (0.63550741973387559, -1.5024759717309393) +description = District 3, TN +station = ('kmqy', 0.0093223689300034572) +zone = ('tnz029', 0.0010577472353524859) + +[fips4716990740] +centroid = (0.63564229877846978, -1.5033953937275972) +description = District 4, TN +station = ('kmqy', 0.008960590436547811) +zone = ('tnz029', 0.00054605003396535209) + +[fips4716990930] +centroid = (0.635630762152114, -1.5052321433258111) +description = District 5, TN +station = ('kbna', 0.0081334034682687233) +zone = ('tnz029', 0.001305632125567516) + +[fips4716991120] +centroid = (0.63436159362664879, -1.5052161037499854) +description = District 6, TN +station = ('kmqy', 0.0070673963353620646) +zone = ('tnz029', 0.0014476077881997648) + +[fips4716991310] +centroid = (0.63516245540721894, -1.5045429477107837) +description = District 7, TN +station = ('kmqy', 0.0080344210284175339) +zone = ('tnz029', 0.00066399228250759595) + +[fips4716991500] +centroid = (0.63608069057998562, -1.504469451895982) +description = District 8, TN +station = ('kmqy', 0.0088428830250512087) +zone = ('tnz029', 0.0010998294932686983) + +[fips4716991690] +centroid = (0.63517210707798255, -1.5036555350526071) +description = District 9, TN +station = ('kmqy', 0.0084598195739858471) +zone = ('tnz029', 5.1364036779625276e-05) + +[fips4716991880] +centroid = (0.63444913934192892, -1.5040296987376496) +description = District 10, TN +station = ('kmqy', 0.0077064398362281551) +zone = ('tnz029', 0.00075569588924507018) + +[fips4717000] +centroid = (0.61080451819333847, -1.472818953108616) +description = Copperhill city, TN +station = ('krhp', 0.0082288733091513185) +zone = ('tnz102', 0.0015935045262313937) + +[fips47171] +centroid = (0.6300676124278447, -1.4384697389653538) +description = Unicoi County, TN +station = ('k0a9', 0.0058638226874320257) +zone = ('tnz045', 0.00027094214087546774) + +[fips4717180] +centroid = (0.61741650607830123, -1.516322262098956) +description = Cornersville town, TN +station = ('kmdq', 0.010077417575887) +zone = ('tnz061', 0.0022985772402777578) + +[fips4717190172] +centroid = (0.62931385708378595, -1.4400333445356306) +description = District 1, TN +station = ('k0a9', 0.0072435523367008377) +zone = ('tnz045', 0.0014198015553030748) + +[fips4717190362] +centroid = (0.63034129750784995, -1.437893588325978) +description = District 2, TN +station = ('k0a9', 0.0053710271369452108) +zone = ('tnz045', 0.00066954964868389747) + +[fips4717190552] +centroid = (0.63158627576988258, -1.4365873490072003) +description = District 3, TN +station = ('k0a9', 0.0037520350773659608) +zone = ('tnz045', 0.0021751215018343179) + +[fips47173] +centroid = (0.63327770925457538, -1.4632157675917079) +description = Union County, TN +station = ('k1a6', 0.005863676759669755) +zone = ('tnz037', 6.8565102131627691e-05) + +[fips4717340] +centroid = (0.63492516044211778, -1.5442516316546073) +description = Cottage Grove town, TN +station = ('kcey', 0.0051888201517324628) +zone = ('tnz004', 0.0026294655265207806) + +[fips4717390174] +centroid = (0.63253407682017804, -1.4625692627301843) +description = District 1, TN +station = ('k1a6', 0.006498912894519886) +zone = ('tnz037', 0.00097351513348631206) + +[fips4717390364] +centroid = (0.63191815012714936, -1.4617226558699192) +description = District 2, TN +station = ('k1a6', 0.0070590640400576806) +zone = ('tnz037', 0.0018786700526316393) + +[fips4717390554] +centroid = (0.63361883385687767, -1.4615382094745684) +description = District 3, TN +station = ('k1a6', 0.0053560405674733672) +zone = ('tnz037', 0.0013993153713269557) + +[fips4717390744] +centroid = (0.63264940817714987, -1.4647758825034807) +description = District 4, TN +station = ('koqt', 0.0059290720612803043) +zone = ('tnz037', 0.0014192050656906409) + +[fips4717390934] +centroid = (0.63452359508781897, -1.4635914322599073) +description = District 5, TN +station = ('k1a6', 0.0047609682953450696) +zone = ('tnz037', 0.0012136735464118268) + +[fips4717391124] +centroid = (0.63163610492002709, -1.4639011758422587) +description = District 6, TN +station = ('koqt', 0.0058858068056861891) +zone = ('tnz037', 0.0017884797576794313) + +[fips4717420] +centroid = (0.63615299957089577, -1.5102951514996288) +description = Cottontown CDP, TN +station = ('kbna', 0.0061693799603250547) +zone = ('tnz008', 0.0010886518117801218) + +[fips47175] +centroid = (0.62306936572612304, -1.4915306454725399) +description = Van Buren County, TN +station = ('ksrb', 0.006308191621680964) +zone = ('tnz080', 0.00010112909056756667) + +[fips4717590176] +centroid = (0.62410565496949477, -1.4911476678747748) +description = District 1, TN +station = ('ksrb', 0.0053567918188926764) +zone = ('tnz080', 0.0011162811261083557) + +[fips4717590366] +centroid = (0.62434710381821568, -1.4922760406894817) +description = District 2, TN +station = ('ksrb', 0.0049647054386252566) +zone = ('tnz080', 0.0015016687150973681) + +[fips4717590556] +centroid = (0.62335889839573644, -1.4888194161059067) +description = District 3, TN +station = ('kcsv', 0.0051352292553910068) +zone = ('tnz082', 0.002505084126281332) + +[fips4717590746] +centroid = (0.62180077315931093, -1.4921415281640305) +description = District 4, TN +station = ('ksrb', 0.0075119447665618179) +zone = ('tnz080', 0.0013436560554695933) + +[fips4717590936] +centroid = (0.62340164150911781, -1.4918042956459601) +description = District 5, TN +station = ('ksrb', 0.0059466501003476906) +zone = ('tnz080', 0.00049484901710261458) + +[fips4717680] +centroid = (0.6207268546172664, -1.5646587368539184) +description = Covington city, TN +station = ('knqa', 0.0048144624510720749) +zone = ('tnz049', 0.0019785407182375809) + +[fips47177] +centroid = (0.62270349235502753, -1.4970974080283608) +description = Warren County, TN +station = ('ksrb', 0.0074570938220508949) +zone = ('tnz078', 1.7693696780645075e-05) + +[fips4717700] +centroid = (0.61371063102424916, -1.5012282009421034) +description = Cowan city, TN +station = ('kbgf', 0.00078556927725662203) +zone = ('tnz097', 0.001124258729699431) + +[fips4717790178] +centroid = (0.62307182664036831, -1.4975936051347027) +description = District 1, TN +station = ('ksrb', 0.0073384001003252621) +zone = ('tnz078', 0.00052918231927342107) + +[fips4717790368] +centroid = (0.62276707469967763, -1.4982262520819656) +description = District 2, TN +station = ('ktha', 0.0077973248690271675) +zone = ('tnz078', 0.00090257945046897281) + +[fips4717790558] +centroid = (0.62225105065303299, -1.4979245370141734) +description = District 3, TN +station = ('ktha', 0.0076499885584465493) +zone = ('tnz078', 0.00080094832153060434) + +[fips4717790748] +centroid = (0.62370625382346834, -1.49665254105532) +description = District 4, TN +station = ('ksrb', 0.0064033965672650288) +zone = ('tnz078', 0.0010645871241105873) + +[fips4717790938] +centroid = (0.62279194564151852, -1.4964594203735868) +description = District 5, TN +station = ('ksrb', 0.0071490886965387421) +zone = ('tnz078', 0.00054046980170288476) + +[fips4717791128] +centroid = (0.62338685857035336, -1.4971193817236434) +description = District 6, TN +station = ('ksrb', 0.006869210705416841) +zone = ('tnz078', 0.0006760729505414137) + +[fips4717791318] +centroid = (0.62359528578962653, -1.4948539792611399) +description = District 7, TN +station = ('ksrb', 0.0059385822897293772) +zone = ('tnz078', 0.0020396361157807553) + +[fips4717791508] +centroid = (0.62113086343251811, -1.4952433971238448) +description = District 8, TN +station = ('ksrb', 0.0084017476616113935) +zone = ('tnz078', 0.0021944651674111466) + +[fips4717791698] +centroid = (0.62148150007924363, -1.4990709041734682) +description = District 9, TN +station = ('ktha', 0.006441863420100372) +zone = ('tnz078', 0.0020079309474566594) + +[fips4717791888] +centroid = (0.62352896327805074, -1.499602601276796) +description = District 10, TN +station = ('ktha', 0.0076010427047360114) +zone = ('tnz063', 0.0024658716676782427) + +[fips4717792078] +centroid = (0.6247431015722007, -1.496494710931062) +description = District 11, TN +station = ('ksrb', 0.0054498523856792349) +zone = ('tnz078', 0.0020941940501362807) + +[fips4717792268] +centroid = (0.62460094450462567, -1.4984200010822297) +description = District 12, TN +station = ('ksrb', 0.0065418864567718844) +zone = ('tnz078', 0.0021658733928061934) + +[fips4717840] +centroid = (0.62668636861466365, -1.4815077606304046) +description = Crab Orchard city, TN +station = ('kcsv', 0.0029157931978701984) +zone = ('tnz066', 0.0017861867810431123) + +[fips47179] +centroid = (0.63347885845086771, -1.4398100122045454) +description = Washington County, TN +station = ('ktri', 0.0032696791527474368) +zone = ('tnz044', 5.2997433122674053e-05) + +[fips4717990180] +centroid = (0.63503291707013598, -1.4385539336484701) +description = District 1, TN +station = ('ktri', 0.0014667098371335754) +zone = ('tnz044', 0.0019071368916153411) + +[fips4717990370] +centroid = (0.63468203607731499, -1.4372652523419676) +description = District 2, TN +station = ('ktri', 0.001918769425034375) +zone = ('tnz044', 0.0024267358568548485) + +[fips4717990560] +centroid = (0.63401381931989642, -1.4378800096643976) +description = District 3, TN +station = ('ktri', 0.0024592955958421818) +zone = ('tnz044', 0.0016897706470491982) + +[fips4717990750] +centroid = (0.63368583704686166, -1.4372478863159102) +description = District 4, TN +station = ('k0a9', 0.0027328311560555359) +zone = ('tnz044', 0.0021127527476983441) + +[fips4717990940] +centroid = (0.63246517122130941, -1.4383965398565253) +description = District 5, TN +station = ('ktri', 0.0040031048155519527) +zone = ('tnz044', 0.0015235846703229483) + +[fips4717991130] +centroid = (0.63354563474804904, -1.4392043480475183) +description = District 6, TN +station = ('ktri', 0.0030384331076947256) +zone = ('tnz044', 0.00053246311269944) + +[fips4717991320] +centroid = (0.63457660073720201, -1.4401886264791806) +description = District 7, TN +station = ('ktri', 0.0024996351179609752) +zone = ('tnz044', 0.0011710013765473025) + +[fips4717991510] +centroid = (0.63389257129676047, -1.4417636115961803) +description = District 8, TN +station = ('ktri', 0.003881283801696079) +zone = ('tnz044', 0.001606859460546902) + +[fips4717991700] +centroid = (0.6313977453040821, -1.4407490866085808) +description = District 9, TN +station = ('ktri', 0.0054810299057278722) +zone = ('tnz045', 0.002002488574039259) + +[fips47181] +centroid = (0.61510092539980277, -1.5327429654735418) +description = Wayne County, TN +station = ('kmsl', 0.0091547822898821758) +zone = ('tnz093', 0.00045434059460054617) + +[fips4718190182] +centroid = (0.61660653367903573, -1.5314679326417899) +description = District 1, TN +station = ('kmsl', 0.010319632873161087) +zone = ('tnz093', 0.0016605254831786698) + +[fips4718190372] +centroid = (0.61745012111969466, -1.5357356815419365) +description = District 2, TN +station = ('kcrx', 0.011797773384451491) +zone = ('tnz093', 0.0037569949402988666) + +[fips4718190562] +centroid = (0.61734786227882021, -1.5330358491753189) +description = District 3, TN +station = ('kmsl', 0.011359947164254616) +zone = ('tnz093', 0.0023955295941984049) + +[fips4718190752] +centroid = (0.61440940849687009, -1.5308892163684136) +description = District 4, TN +station = ('kmsl', 0.0080723391785782941) +zone = ('tnz093', 0.001242632091970687) + +[fips4718190942] +centroid = (0.61345682524442424, -1.5333882311512965) +description = District 5, TN +station = ('kmsl', 0.0078647066972642263) +zone = ('tnz093', 0.001873621114144005) + +[fips4718191132] +centroid = (0.61210635928240109, -1.5299346958004978) +description = District 6, TN +station = ('kmsl', 0.0056672801234520119) +zone = ('alz001', 0.0029609392351625931) + +[fips4718191322] +centroid = (0.61669886159646625, -1.5299735991895247) +description = District 7, TN +station = ('kmsl', 0.010234170406135947) +zone = ('tnz093', 0.0024449006316768504) + +[fips47183] +centroid = (0.63361600642348936, -1.5484698132039973) +description = Weakley County, TN +station = ('kcey', 0.0080214156262527776) +zone = ('tnz003', 0.00010036321128162937) + +[fips4718390184] +centroid = (0.63508564346683871, -1.5467159492919607) +description = District 1, TN +station = ('kcey', 0.0059925323505960679) +zone = ('tnz003', 0.0020772631479318714) + +[fips4718390374] +centroid = (0.63147459215104751, -1.5464103944998142) +description = District 2, TN +station = ('kcey', 0.0090315165126186436) +zone = ('tnz003', 0.0026124195912947934) + +[fips4718390564] +centroid = (0.63087734048101496, -1.5494581233462317) +description = District 3, TN +station = ('kdyr', 0.009147919723406138) +zone = ('tnz003', 0.0027773664808824422) + +[fips4718390754] +centroid = (0.63264453870853676, -1.5500553924695566) +description = District 4, TN +station = ('kdyr', 0.0093549820259709107) +zone = ('tnz003', 0.0015868684067350115) + +[fips4718390944] +centroid = (0.63416016517767626, -1.5505472611593538) +description = District 5, TN +station = ('kcey', 0.0088064636945726846) +zone = ('tnz003', 0.0018297360932436936) + +[fips4718391134] +centroid = (0.63420657348248666, -1.5511408999978347) +description = District 6, TN +station = ('kcey', 0.0091476834881215) +zone = ('tnz003', 0.0022976548088778511) + +[fips4718391324] +centroid = (0.63412867943797024, -1.5516061524165388) +description = District 7, TN +station = ('kdyr', 0.0091265755848850966) +zone = ('tnz003', 0.0026391436348101082) + +[fips4718391514] +centroid = (0.63523947678710946, -1.5495004824871774) +description = District 8, TN +station = ('kcey', 0.0074708658832821689) +zone = ('tnz003', 0.0019236719321174701) + +[fips4718391704] +centroid = (0.63323559445972466, -1.5482710900153653) +description = District 9, TN +station = ('kcey', 0.0082240967814644766) +zone = ('tnz003', 0.00031246616371019277) + +[fips4718420] +centroid = (0.63776140774307122, -1.5127658395887522) +description = Cross Plains city, TN +station = ('kbna', 0.0074075646805831612) +zone = ('tnz007', 0.0027538598983161771) + +[fips47185] +centroid = (0.62704552246813905, -1.4914844815138246) +description = White County, TN +station = ('ksrb', 0.0024851891199387205) +zone = ('tnz065', 1.3299334366753876e-05) + +[fips4718540] +centroid = (0.62748007454530053, -1.4840573026951327) +description = Crossville city, TN +station = ('kcsv', 0.00075120600121096072) +zone = ('tnz066', 0.00045181071164220439) + +[fips4718590186] +centroid = (0.62624249647929642, -1.4914693320559174) +description = District 1, TN +station = ('ksrb', 0.0032340715643307451) +zone = ('tnz065', 0.00079149231293126031) + +[fips4718590376] +centroid = (0.62701918544972646, -1.4921217186770204) +description = District 2, TN +station = ('ksrb', 0.0023387955810281204) +zone = ('tnz065', 0.00052281430963232848) + +[fips4718590566] +centroid = (0.62837527137194094, -1.4907788099906583) +description = District 3, TN +station = ('ksrb', 0.0018697387901990372) +zone = ('tnz065', 0.0014552783336202735) + +[fips4718590756] +centroid = (0.62629599082087006, -1.4890182091077089) +description = District 4, TN +station = ('kcsv', 0.0034633811292843451) +zone = ('tnz065', 0.0021234266597706247) + +[fips4718590946] +centroid = (0.62545386945678283, -1.4930973577288851) +description = District 5, TN +station = ('ksrb', 0.0038482317969279149) +zone = ('tnz065', 0.0020546839351553653) + +[fips4718591136] +centroid = (0.6269484298018505, -1.493982536365619) +description = District 6, TN +station = ('ksrb', 0.0025357320318222481) +zone = ('tnz065', 0.0020313038964247265) + +[fips4718591326] +centroid = (0.6287247037414827, -1.4932100536386863) +description = District 7, TN +station = ('ksrb', 0.00066210719241562022) +zone = ('tnz065', 0.0021970704558419581) + +[fips4718620] +centroid = (0.61491789272114616, -1.541738200452103) +description = Crump city, TN +station = ('kcrx', 0.006633855395254777) +zone = ('tnz092', 0.0022254923786803396) + +[fips47187] +centroid = (0.62648544631117409, -1.5166380270672266) +description = Williamson County, TN +station = ('kbna', 0.0049059845501076439) +zone = ('tnz059', 3.2016437424707817e-05) + +[fips4718790188] +centroid = (0.6275400789649842, -1.5205959625718519) +description = District 1, TN +station = ('kbna', 0.0068231685755390939) +zone = ('tnz059', 0.0033572652921834522) + +[fips4718790378] +centroid = (0.62590824847424709, -1.5182405534798229) +description = District 2, TN +station = ('kbna', 0.0061949193843522932) +zone = ('tnz059', 0.001390191874727591) + +[fips4718790568] +centroid = (0.62453149785368889, -1.5150762889992497) +description = District 3, TN +station = ('kmqy', 0.0056622471534045395) +zone = ('tnz059', 0.002324717413423898) + +[fips4718790758] +centroid = (0.62642912453621213, -1.5146315441992564) +description = District 4, TN +station = ('kbna', 0.0041654586072264171) +zone = ('tnz059', 0.0016505031835097688) + +[fips4718790948] +centroid = (0.62684889367460939, -1.512792124247287) +description = District 5, TN +station = ('kmqy', 0.002744848550292044) +zone = ('tnz059', 0.0031631614965616558) + +[fips4718791138] +centroid = (0.62810860251552869, -1.5143303527302396) +description = District 6, TN +station = ('kbna', 0.0025228189454946726) +zone = ('tnz059', 0.0025069423652232096) + +[fips4718791328] +centroid = (0.62847810617146849, -1.5151617403194273) +description = District 7, TN +station = ('kbna', 0.0026146355389420886) +zone = ('tnz059', 0.002353777683137779) + +[fips4718791518] +centroid = (0.62863375463416138, -1.5162294105827498) +description = District 8, TN +station = ('kbna', 0.0031879508853620308) +zone = ('tnz059', 0.0021976863733891546) + +[fips4718791708] +centroid = (0.62800906638828757, -1.5173124048369049) +description = District 9, TN +station = ('kbna', 0.0042630831304693098) +zone = ('tnz059', 0.0016297304478177504) + +[fips4718791898] +centroid = (0.62725915076858307, -1.5160500081889372) +description = District 10, TN +station = ('kbna', 0.0040041361121146953) +zone = ('tnz059', 0.0009389001781483188) + +[fips4718792088] +centroid = (0.62666442982596604, -1.5162335993729545) +description = District 11, TN +station = ('kbna', 0.0045659807767582479) +zone = ('tnz059', 0.00040477693346965441) + +[fips4718792278] +centroid = (0.62670916261469467, -1.5156040591117603) +description = District 12, TN +station = ('kbna', 0.0042474349472254409) +zone = ('tnz059', 0.00089608498125399766) + +[fips4718820] +centroid = (0.63495158472699298, -1.5296056488766194) +description = Cumberland City town, TN +station = ('kckv', 0.0051835361896299349) +zone = ('tnz023', 0.0019674745049710141) + +[fips4718880] +centroid = (0.63874657629265186, -1.4602415694666768) +description = Cumberland Gap town, TN +station = ('k1a6', 0.0010280358198988245) +zone = ('tnz014', 0.0019488970618953894) + +[fips47189] +centroid = (0.63090992577814975, -1.5060482767373362) +description = Wilson County, TN +station = ('kmqy', 0.0040548701274287511) +zone = ('tnz028', 0.00015302689661901326) + +[fips4718990190] +centroid = (0.63247031994260272, -1.5111453362848604) +description = District 1, TN +station = ('kbna', 0.0025502259646202089) +zone = ('tnz027', 0.0030928716033784358) + +[fips4718990380] +centroid = (0.6320223462834933, -1.5108887728848173) +description = District 2, TN +station = ('kbna', 0.0023329161991874322) +zone = ('tnz027', 0.0031500411404683892) + +[fips4718990570] +centroid = (0.63163586057393173, -1.5100650298377534) +description = District 3, TN +station = ('kbna', 0.002629931012251876) +zone = ('tnz028', 0.0031978428985276774) + +[fips4718990760] +centroid = (0.63283586170114037, -1.5089693819465215) +description = District 4, TN +station = ('kbna', 0.0040334585098187464) +zone = ('tnz028', 0.0028923430058333923) + +[fips4718990950] +centroid = (0.63341262320575453, -1.5077703407504013) +description = District 5, TN +station = ('kbna', 0.005152434815602052) +zone = ('tnz028', 0.0027141342073058786) + +[fips4718991140] +centroid = (0.63346281887504186, -1.5053062849124359) +description = District 6, TN +station = ('kmqy', 0.0062942796551460562) +zone = ('tnz029', 0.0021268776976246647) + +[fips4718991330] +centroid = (0.63076935696019409, -1.5048083250235493) +description = District 7, TN +station = ('kmqy', 0.0048248926754146208) +zone = ('tnz028', 0.0011339251119120214) + +[fips4718991520] +centroid = (0.63252220858126451, -1.5107349046579615) +description = District 8, TN +station = ('kbna', 0.0027891082944451395) +zone = ('tnz027', 0.0034192642620380128) + +[fips4718991710] +centroid = (0.62910576147707065, -1.5030474623412122) +description = District 9, TN +station = ('kmqy', 0.005705521653088296) +zone = ('tnz028', 0.0031728820142740187) + +[fips4718991900] +centroid = (0.63196775238449099, -1.510348052429257) +description = District 10, TN +station = ('kbna', 0.0026226911049934691) +zone = ('tnz028', 0.0034967522778383327) + +[fips4718992090] +centroid = (0.63180215554506169, -1.5093085866866467) +description = District 11, TN +station = ('kmqy', 0.0033832338519120047) +zone = ('tnz028', 0.0026452403562851681) + +[fips4718992280] +centroid = (0.62904854958419032, -1.5062103305583836) +description = District 12, TN +station = ('kmqy', 0.0031651748941405535) +zone = ('tnz028', 0.0019736770776089072) + +[fips4718992470] +centroid = (0.63023375031934215, -1.5091926793710218) +description = District 13, TN +station = ('kmqy', 0.0018942563146989342) +zone = ('tnz028', 0.0025598280902760506) + +[fips4718992660] +centroid = (0.63075712220213764, -1.5077173176477259) +description = District 14, TN +station = ('kmqy', 0.0029657981560464496) +zone = ('tnz028', 0.0012715091314146056) + +[fips4718992850] +centroid = (0.63227623932978094, -1.5039853673746491) +description = District 15, TN +station = ('kmqy', 0.0062072830085226098) +zone = ('tnz028', 0.0021684722176513118) + +[fips4718993040] +centroid = (0.63105386308156175, -1.5097546753901638) +description = District 16, TN +station = ('kmqy', 0.0025918771973474741) +zone = ('tnz028', 0.0028886383459890215) + +[fips4718993230] +centroid = (0.6323894064784803, -1.5069227914123404) +description = District 17, TN +station = ('kmqy', 0.0046637175787685716) +zone = ('tnz028', 0.0014938785524378358) + +[fips4718993420] +centroid = (0.63319269426671065, -1.5103677222899268) +description = District 18, TN +station = ('kbna', 0.0035016365290355855) +zone = ('tnz008', 0.0034921019131478751) + +[fips4718993610] +centroid = (0.63264778502094543, -1.5061963155644904) +description = District 19, TN +station = ('kmqy', 0.0052111580735151328) +zone = ('tnz028', 0.0016258120355982107) + +[fips4718993800] +centroid = (0.63195003729258326, -1.5055431609985164) +description = District 20, TN +station = ('kmqy', 0.0050393278491375343) +zone = ('tnz028', 0.001059772966089764) + +[fips4718993990] +centroid = (0.63135083085378851, -1.5057311504122488) +description = District 21, TN +station = ('kmqy', 0.0045285762267147167) +zone = ('tnz028', 0.00048765821817786827) + +[fips4718994180] +centroid = (0.63251952077421647, -1.5100571758561194) +description = District 22, TN +station = ('kbna', 0.00316026436935158) +zone = ('tnz028', 0.0034707008396073474) + +[fips4718994370] +centroid = (0.63158203461980023, -1.5071572589440534) +description = District 23, TN +station = ('kmqy', 0.0038934234171246296) +zone = ('tnz028', 0.00096925370482394714) + +[fips4718994560] +centroid = (0.63202269534934374, -1.5063364655034253) +description = District 24, TN +station = ('kmqy', 0.004651790737917624) +zone = ('tnz028', 0.0010088669328727463) + +[fips4718994750] +centroid = (0.63198585144883412, -1.508012854249966) +description = District 25, TN +station = ('kmqy', 0.0038817105595365512) +zone = ('tnz028', 0.0017674885801083177) + +[fips4719380] +centroid = (0.62884429370182937, -1.4561252453324331) +description = Dandridge town, TN +station = ('ktys', 0.0086648290025732166) +zone = ('tnz070', 0.00043217457870910506) + +[fips4719500] +centroid = (0.62200745504933219, -1.5398361406332794) +description = Darden CDP, TN +station = ('kmkl', 0.0098203847260265563) +zone = ('tnz055', 0.0017753672507104131) + +[fips4719700] +centroid = (0.61945445723268489, -1.4837369300576368) +description = Dayton city, TN +station = ('kcsv', 0.008055319569491716) +zone = ('tnz083', 0.0023837257128185752) + +[fips4719880] +centroid = (0.62016346233472264, -1.4798742895301704) +description = Decatur town, TN +station = ('kcsv', 0.008380681741665447) +zone = ('tnz084', 0.00047824074869099787) + +[fips4719900] +centroid = (0.62102176290097588, -1.5379729143903127) +description = Decaturville town, TN +station = ('kcrx', 0.013431148108039938) +zone = ('tnz055', 0.00039715762811376172) + +[fips4719920] +centroid = (0.61463254884173768, -1.5022870049328256) +description = Decherd city, TN +station = ('kbgf', 0.00067986131516232541) +zone = ('tnz097', 0.0010926753804544316) + +[fips4720620] +centroid = (0.6294332725112074, -1.5248267628517338) +description = Dickson city, TN +station = ('kckv', 0.0096742378538128369) +zone = ('tnz025', 0.0014934855151603347) + +[fips4720930] +centroid = (0.63381432818639349, -1.4928182970347839) +description = Dodson Branch CDP, TN +station = ('ksrb', 0.0045202070168822847) +zone = ('tnz031', 0.0021280688549390973) + +[fips4721400] +centroid = (0.63672035375084157, -1.5331632407574221) +description = Dover city, TN +station = ('khop', 0.0058031102379796978) +zone = ('tnz005', 0.00035362407111535913) + +[fips4721420] +centroid = (0.62853072784841613, -1.4999752639786816) +description = Dowelltown town, TN +station = ('ksrb', 0.0058585610938048103) +zone = ('tnz064', 0.0016454928823123112) + +[fips4721500] +centroid = (0.62580157395036518, -1.4924841188429043) +description = Doyle town, TN +station = ('ksrb', 0.0035014951178133375) +zone = ('tnz065', 0.0014782930787552971) + +[fips4721540] +centroid = (0.63315323237232313, -1.5479929892523525) +description = Dresden town, TN +station = ('kcey', 0.0081601506175699862) +zone = ('tnz003', 0.00050527566271897238) + +[fips4721740] +centroid = (0.61149395815446128, -1.4728050079278925) +description = Ducktown city, TN +station = ('krhp', 0.0079508506188601721) +zone = ('tnz102', 0.00093884775971073478) + +[fips4722000] +centroid = (0.61728159212712208, -1.4903307665183787) +description = Dunlap city, TN +station = ('kcha', 0.0064310887315211758) +zone = ('tnz081', 0.00030442138820386037) + +[fips4722180] +centroid = (0.62956052446697031, -1.5532097958398561) +description = Dyer city, TN +station = ('kdyr', 0.0058857267365617439) +zone = ('tnz020', 0.0015508132290975515) + +[fips4722200] +centroid = (0.629102584977832, -1.5599394538229885) +description = Dyersburg city, TN +station = ('kdyr', 0.00084359272084820794) +zone = ('tnz019', 0.00056241396069840949) + +[fips4722340] +centroid = (0.62462468098245283, -1.4649647969417166) +description = Eagleton Village CDP, TN +station = ('ktys', 0.00082907451950799029) +zone = ('tnz071', 0.0011556217125581125) + +[fips4722360] +centroid = (0.62378430494761761, -1.5124154298348294) +description = Eagleville city, TN +station = ('kmqy', 0.0050632427716548059) +zone = ('tnz062', 0.0038188425016575001) + +[fips4722500] +centroid = (0.61352906442216415, -1.4809832542835952) +description = East Cleveland CDP, TN +station = ('kcha', 0.0053606580672753874) +zone = ('tnz100', 8.2729658071962063e-05) + +[fips4722720] +centroid = (0.61081809685491895, -1.4875179066294022) +description = East Ridge city, TN +station = ('kcha', 0.00074931774702488899) +zone = ('gaz003', 0.0020848830619012303) + +[fips4722920] +centroid = (0.61237980001631098, -1.545512684399051) +description = Eastview town, TN +station = ('kcrx', 0.0029927520311602502) +zone = ('tnz091', 0.0015428803883307056) + +[fips4723440] +centroid = (0.63405013962163048, -1.4767066565641409) +description = Elgin CDP, TN +station = ('koqt', 0.0075910231925592781) +zone = ('tnz012', 0.002293197554033892) + +[fips4723500] +centroid = (0.63424518016554077, -1.4353203795965925) +description = Elizabethton city, TN +station = ('k0a9', 0.0010909925439398149) +zone = ('tnz046', 0.0011870360267756501) + +[fips4723660] +centroid = (0.61194449744757107, -1.5166485339493236) +description = Elkton city, TN +station = ('kmdq', 0.0059947688610825101) +zone = ('tnz095', 0.0031367063543599086) + +[fips4724040] +centroid = (0.61824066800438549, -1.474606222622536) +description = Englewood town, TN +station = ('krhp', 0.0097489943155376225) +zone = ('tnz085', 0.0018320800860803276) + +[fips4724240] +centroid = (0.61771267099907212, -1.5434475410149211) +description = Enville town, TN +station = ('kmkl', 0.0077695471571397508) +zone = ('tnz053', 0.0026061480805483588) + +[fips4724320] +centroid = (0.63383223526451893, -1.530701418940899) +description = Erin city, TN +station = ('kckv', 0.0066087450358828211) +zone = ('tnz023', 0.00055982091572929159) + +[fips4724360] +centroid = (0.63086379672601955, -1.4383606384338119) +description = Erwin town, TN +station = ('k0a9', 0.0051871337638637709) +zone = ('tnz045', 0.00067513072749214793) + +[fips4724440] +centroid = (0.61533832508465913, -1.5030898738420357) +description = Estill Springs town, TN +station = ('kbgf', 0.0015793708660409805) +zone = ('tnz097', 0.001815666186146158) + +[fips4724460] +centroid = (0.61647811235267391, -1.5236938172743866) +description = Ethridge town, TN +station = ('kmsl', 0.010851467654525049) +zone = ('tnz094', 0.002263164684654029) + +[fips4724480] +centroid = (0.61677171163944455, -1.4752933762023386) +description = Etowah city, TN +station = ('kcha', 0.010964172492195966) +zone = ('tnz085', 0.0019728326175934949) + +[fips4724640] +centroid = (0.62950273661543676, -1.5360132412528811) +description = Eva CDP, TN +station = ('kcey', 0.011463614707658849) +zone = ('tnz022', 0.00086439866879130093) + +[fips4724960] +centroid = (0.63915494843103349, -1.5069607523235713) +description = Fairfield CDP, TN +station = ('kbwg', 0.0061234948872663213) +zone = ('kyz073', 0.003116502131661183) + +[fips4724980] +centroid = (0.62838455652356151, -1.4813087407357994) +description = Fairfield Glade CDP, TN +station = ('kcsv', 0.0031190668724311943) +zone = ('tnz066', 0.0020032876410684707) + +[fips4724990] +centroid = (0.62642504046576253, -1.4557933360685815) +description = Fairgarden CDP, TN +station = ('ktys', 0.0082035661634307106) +zone = ('tnz073', 0.0022107306094589696) + +[fips4725080] +centroid = (0.6140401142804407, -1.4892964494970617) +description = Fairmount CDP, TN +station = ('kcha', 0.0031922935845807928) +zone = ('tnz099', 0.0023623854911675297) + +[fips4725440] +centroid = (0.62801116078338992, -1.5206533664509498) +description = Fairview city, TN +station = ('kbna', 0.0066851663305253122) +zone = ('tnz059', 0.0035777576243489245) + +[fips4725540] +centroid = (0.63558173585342559, -1.4420640874802035) +description = Fall Branch CDP, TN +station = ('ktri', 0.0032688407550468179) +zone = ('tnz044', 0.0027880802941214204) + +[fips4725560] +centroid = (0.61428997561615628, -1.4880647531906368) +description = Falling Water CDP, TN +station = ('kcha', 0.0029685102106456773) +zone = ('tnz099', 0.0013816267040779545) + +[fips4725760] +centroid = (0.62615714987887394, -1.4692181817821193) +description = Farragut town, TN +station = ('koqt', 0.0025654399489814517) +zone = ('tnz068', 0.0030886654079433831) + +[fips4725920] +centroid = (0.61342338473595592, -1.510670781261243) +description = Fayetteville city, TN +station = ('kmdq', 0.0049774627922396309) +zone = ('tnz096', 0.00049444381248427648) + +[fips4726120] +centroid = (0.63536636222372944, -1.4669129683593776) +description = Fincastle CDP, TN +station = ('k1a6', 0.0056584919249629412) +zone = ('tnz013', 0.0014240996853095481) + +[fips4726160] +centroid = (0.61709363761997482, -1.546664933317925) +description = Finger city, TN +station = ('kmkl', 0.0060085527534795499) +zone = ('tnz053', 0.0011230685535934873) + +[fips4726490] +centroid = (0.61666053416609246, -1.4870235944786523) +description = Flat Top Mountain CDP, TN +station = ('kcha', 0.0052135201552493404) +zone = ('tnz099', 0.0026857426131619844) + +[fips4726580] +centroid = (0.61191531554247769, -1.5082518945443191) +description = Flintville CDP, TN +station = ('kmdq', 0.0040111650800199019) +zone = ('tnz096', 0.0028334465828910799) + +[fips4727020] +centroid = (0.62945515894002735, -1.515648861713659) +description = Forest Hills city, TN +station = ('kbna', 0.002389386495129858) +zone = ('tnz027', 0.0019809526833115929) + +[fips4727740] +centroid = (0.62694410138530554, -1.5158582663173132) +description = Franklin city, TN +station = ('kbna', 0.0041617993361996288) +zone = ('tnz059', 0.00081249677495614148) + +[fips4727960] +centroid = (0.62670195440488385, -1.5575456998472932) +description = Friendship city, TN +station = ('kdyr', 0.0027699541274037003) +zone = ('tnz051', 0.0021765828777999333) + +[fips4728060] +centroid = (0.62404079853449068, -1.4684163949770455) +description = Friendsville city, TN +station = ('ktys', 0.0023908570716972589) +zone = ('tnz068', 0.0025388000809824663) + +[fips4728380] +centroid = (0.62442429973103131, -1.5531006254951436) +description = Gadsden town, TN +station = ('kmkl', 0.0032402421645829032) +zone = ('tnz051', 0.0022635871796456231) + +[fips4728420] +centroid = (0.63465899773118861, -1.4948498777373977) +description = Gainesboro town, TN +station = ('ksrb', 0.0056158248233460469) +zone = ('tnz031', 0.00035316947366466171) + +[fips4728540] +centroid = (0.63492420051102916, -1.5091704438763514) +description = Gallatin city, TN +station = ('kbna', 0.0054747654002453459) +zone = ('tnz008', 0.0015917074210480932) + +[fips4728560] +centroid = (0.61658756195006659, -1.5639332383904494) +description = Gallaway city, TN +station = ('knqa', 0.0037849902574029512) +zone = ('tnz089', 0.0035671579368787123) + +[fips4728680] +centroid = (0.62112663973572824, -1.5664763401902377) +description = Garland town, TN +station = ('knqa', 0.0043698765995157894) +zone = ('tnz049', 0.001597120239917114) + +[fips4728740] +centroid = (0.62552823793621026, -1.5604669446828185) +description = Gates town, TN +station = ('kdyr', 0.0027926812910534318) +zone = ('tnz048', 0.0034492711179316808) + +[fips4728800] +centroid = (0.62351763609120536, -1.4572388701149608) +description = Gatlinburg city, TN +station = ('ktys', 0.007116991759276714) +zone = ('tnz074', 0.00096236764915791188) + +[fips4728960] +centroid = (0.61229565769307237, -1.5670017017483806) +description = Germantown city, TN +station = ('kolv', 0.0017999569883785684) +zone = ('tnz088', 0.0023990715497410461) + +[fips4729020] +centroid = (0.62612468675478683, -1.5506209838669578) +description = Gibson town, TN +station = ('kmkl', 0.0048967927531682132) +zone = ('tnz020', 0.0024743485014230575) + +[fips4729160] +centroid = (0.62017519094729601, -1.5678470868781693) +description = Gilt Edge city, TN +station = ('knqa', 0.0031350360966547809) +zone = ('tnz049', 0.0012034308565139051) + +[fips4729300] +centroid = (0.63211237036631118, -1.5465478217251161) +description = Gleason town, TN +station = ('kcey', 0.0084892869728907736) +zone = ('tnz003', 0.0020660578943757805) + +[fips4729920] +centroid = (0.63413100072587536, -1.5132742714531506) +description = Goodlettsville city, TN +station = ('kbna', 0.0037876957035168136) +zone = ('tnz027', 0.0030727969960970321) + +[fips4730120] +centroid = (0.63156817670553944, -1.4997869778589767) +description = Gordonsville town, TN +station = ('ksrb', 0.0060905321144921424) +zone = ('tnz030', 0.0011773101383629548) + +[fips4730220] +centroid = (0.63676068830985522, -1.5086544023764141) +description = Graball CDP, TN +station = ('kbna', 0.0072661151773491814) +zone = ('tnz008', 0.00038374182726494882) + +[fips4730280] +centroid = (0.61173825188986297, -1.5566390362074669) +description = Grand Junction city, TN +station = ('kcrx', 0.0087206416450443611) +zone = ('tnz090', 0.003912088887303552) + +[fips4730700] +centroid = (0.63566891504956269, -1.43948590456245) +description = Gray CDP, TN +station = ('ktri', 0.0013356025770049761) +zone = ('tnz044', 0.0022506489568091099) + +[fips4730760] +centroid = (0.61871096442462792, -1.4848603984971456) +description = Graysville town, TN +station = ('kcha', 0.0074751222454713072) +zone = ('tnz082', 0.0031499134172701649) + +[fips4730880] +centroid = (0.62219104623334953, -1.4689776928644869) +description = Greenback city, TN +station = ('ktys', 0.0039096490977456027) +zone = ('tnz068', 0.002550232535729662) + +[fips4730960] +centroid = (0.63575747305580887, -1.5147901946282627) +description = Greenbrier town, TN +station = ('kbna', 0.005611442387244747) +zone = ('tnz007', 0.0020587890156890019) + +[fips4730980] +centroid = (0.63125108528703699, -1.4454759792750496) +description = Greeneville town, TN +station = ('ktri', 0.0078739955462538806) +zone = ('tnz042', 0.00074407811511651583) + +[fips4731000] +centroid = (0.63119947590105563, -1.5499792437542923) +description = Greenfield city, TN +station = ('kdyr', 0.0088430275636376902) +zone = ('tnz003', 0.0026445979463346906) + +[fips4731100] +centroid = (0.63241979266075754, -1.5109757251881515) +description = Green Hill CDP, TN +station = ('kbna', 0.0025886658525209987) +zone = ('tnz027', 0.0032011749431086135) + +[fips4731420] +centroid = (0.63313684373064683, -1.4834764396667766) +description = Grimsley CDP, TN +station = ('kcsv', 0.0058198862646696801) +zone = ('tnz034', 0.0020360823755221124) + +[fips4731490] +centroid = (0.61736969634776273, -1.4946624642823185) +description = Gruetli-Laager city, TN +station = ('kbgf', 0.0069890285174172874) +zone = ('tnz079', 0.0012368100304699331) + +[fips4731680] +centroid = (0.61112916688750185, -1.5452055762638699) +description = Guys town, TN +station = ('kcrx', 0.0019115077566734437) +zone = ('msz005', 0.0024370796655004095) + +[fips4731820] +centroid = (0.62623548025570341, -1.5604287219722) +description = Halls town, TN +station = ('kdyr', 0.0020847637101311981) +zone = ('tnz019', 0.0031147540061725303) + +[fips4732520] +centroid = (0.62710243765504659, -1.4758954973409841) +description = Harriman city, TN +station = ('koqt', 0.004888636757547137) +zone = ('tnz067', 0.0015436933966356662) + +[fips4732600] +centroid = (0.61308241721328638, -1.4860853229260726) +description = Harrison CDP, TN +station = ('kcha', 0.0018056176363937654) +zone = ('tnz099', 0.000976034182207515) + +[fips4732640] +centroid = (0.63834377175458412, -1.459907077115532) +description = Harrogate city, TN +station = ('k1a6', 0.0014190968154020472) +zone = ('tnz014', 0.0015569138247772799) + +[fips4732742] +centroid = (0.635178198277072, -1.5037179305733657) +description = Hartsville/Trousdale County, TN +station = ('kmqy', 0.0084339951378542104) +zone = ('tnz029', 1.6232050409446497e-05) + +[fips4733120] +centroid = (0.63597309103160027, -1.4759703021527244) +description = Helenwood CDP, TN +station = ('kekq', 0.0083246277378268754) +zone = ('tnz012', 0.00090669369451597097) + +[fips4733260] +centroid = (0.61861434299723739, -1.547346589110584) +description = Henderson city, TN +station = ('kmkl', 0.0045912536821887196) +zone = ('tnz053', 0.00073794999085909996) + +[fips4733280] +centroid = (0.63368184024287466, -1.5114357765256847) +description = Hendersonville city, TN +station = ('kbna', 0.0035332037718344318) +zone = ('tnz008', 0.0034345921064690807) + +[fips4733360] +centroid = (0.62276623694163669, -1.5634118561830013) +description = Henning town, TN +station = ('khka', 0.0056951975107544179) +zone = ('tnz048', 0.0015806874089264631) + +[fips4733400] +centroid = (0.63181557712700964, -1.5430604793467064) +description = Henry town, TN +station = ('kcey', 0.0080538474501161365) +zone = ('tnz004', 0.0027624129920401637) + +[fips4733920] +centroid = (0.6135675314788781, -1.5555419745995409) +description = Hickory Valley town, TN +station = ('kmkl', 0.0083211258743157782) +zone = ('tnz090', 0.0021022857336968209) + +[fips4734700] +centroid = (0.61792390819844101, -1.5001819458687029) +description = Hillsboro CDP, TN +station = ('kbgf', 0.0042699442818002189) +zone = ('tnz077', 0.0022819308523134791) + +[fips4735160] +centroid = (0.62049737872721422, -1.52809881886691) +description = Hohenwald city, TN +station = ('kmsl', 0.014011109251552297) +zone = ('tnz058', 0.00096053866773465493) + +[fips4735280] +centroid = (0.62892224010622355, -1.540627961608324) +description = Hollow Rock town, TN +station = ('kcey', 0.010986163036034302) +zone = ('tnz021', 0.0027421405813563456) + +[fips4735880] +centroid = (0.61503240377336943, -1.4820256172727639) +description = Hopewell CDP, TN +station = ('kcha', 0.0054351014241517965) +zone = ('tnz100', 0.0016676925146482046) + +[fips4736000] +centroid = (0.63417404054522952, -1.5584983529129091) +description = Hornbeak town, TN +station = ('kdyr', 0.0060382111689100838) +zone = ('tnz002', 0.0020982979439180508) + +[fips4736080] +centroid = (0.61487127497682537, -1.5503799888038425) +description = Hornsby town, TN +station = ('kcrx', 0.0063245108404382296) +zone = ('tnz090', 0.002355654111355663) + +[fips4736460] +centroid = (0.62527289626664351, -1.5516729287137199) +description = Humboldt city, TN +station = ('kmkl', 0.0039395761772134889) +zone = ('tnz020', 0.0030129505896961421) + +[fips4736500] +centroid = (0.6351356820564934, -1.4337947872974246) +description = Hunter CDP, TN +station = ('k0a9', 0.00045290294210543613) +zone = ('tnz046', 0.00037789548610186281) + +[fips4736580] +centroid = (0.62842503070891531, -1.5431721280589563) +description = Huntingdon town, TN +station = ('kmkl', 0.010010596669170837) +zone = ('tnz021', 0.0007404642101101177) + +[fips4736600] +centroid = (0.6118774768042945, -1.5056796108394375) +description = Huntland town, TN +station = ('kbgf', 0.0035699529575436554) +zone = ('tnz097', 0.0030396176764621425) + +[fips4736640] +centroid = (0.63548481772006227, -1.4748711286964036) +description = Huntsville town, TN +station = ('koqt', 0.0078604261381367019) +zone = ('tnz012', 0.00031424215686379946) + +[fips4737360] +centroid = (0.61130790605619867, -1.5286300796379246) +description = Iron City city, TN +station = ('kmsl', 0.0048114113235351308) +zone = ('alz001', 0.0023845138327977817) + +[fips4737600] +centroid = (0.63417130037830383, -1.46943781401519) +description = Jacksboro town, TN +station = ('koqt', 0.005591430137302047) +zone = ('tnz013', 0.0013376933576411288) + +[fips4737640] +centroid = (0.62219481614453387, -1.5503863941621974) +description = Jackson city, TN +station = ('kmkl', 0.001492139135750395) +zone = ('tnz052', 0.00072322809827574477) + +[fips4737780] +centroid = (0.63583693789665219, -1.4824055929042155) +description = Jamestown city, TN +station = ('kekq', 0.0074921282466762903) +zone = ('tnz034', 0.00087856855123847818) + +[fips4737820] +centroid = (0.61201446769728352, -1.494379947836298) +description = Jasper town, TN +station = ('kcha', 0.0060514917505836196) +zone = ('tnz098', 0.0011092369297068061) + +[fips4737960] +centroid = (0.63041510748191687, -1.4570614399432029) +description = Jefferson City city, TN +station = ('ktys', 0.0088264960624876536) +zone = ('tnz070', 0.0013154533322262104) + +[fips4738020] +centroid = (0.63790209873407444, -1.4685585520446205) +description = Jellico city, TN +station = ('k1a6', 0.0057765098180368414) +zone = ('tnz013', 0.0025413694735906224) + +[fips4738320] +centroid = (0.6342215484074688, -1.4377573304712747) +description = Johnson City city, TN +station = ('ktri', 0.0022641667819878288) +zone = ('tnz044', 0.0018604531577387489) + +[fips4738540] +centroid = (0.63348182551059595, -1.4394873706390217) +description = Jonesborough town, TN +station = ('ktri', 0.0031696708753951685) +zone = ('tnz044', 0.00029660308138420595) + +[fips4739140] +centroid = (0.63184524772429351, -1.5536115531803725) +description = Kenton town, TN +station = ('kdyr', 0.0064695625583888992) +zone = ('tnz002', 0.0033089929661388063) + +[fips4739400] +centroid = (0.61166168429557799, -1.4952845868941917) +description = Kimball town, TN +station = ('kbgf', 0.0060605123653736095) +zone = ('tnz098', 0.0016365671522302571) + +[fips4739560] +centroid = (0.63748039228020759, -1.4407236397080867) +description = Kingsport city, TN +station = ('ktri', 0.0023044499344427056) +zone = ('vaz005', 0.0033939103318566585) + +[fips4739620] +centroid = (0.62609431802580218, -1.4748415104589974) +description = Kingston city, TN +station = ('koqt', 0.0045560895026150088) +zone = ('tnz067', 0.00052526847067888612) + +[fips4739660] +centroid = (0.62978661441827366, -1.5202798485377307) +description = Kingston Springs town, TN +station = ('kbna', 0.0059821128838379572) +zone = ('tnz026', 0.0031020682049716429) + +[fips4740000] +centroid = (0.6278102035733153, -1.465142454006277) +description = Knoxville city, TN +station = ('ktys', 0.0027414218900052752) +zone = ('tnz069', 0.000411544828651022) + +[fips4740160] +centroid = (0.63746506828937499, -1.501517070386601) +description = Lafayette city, TN +station = ('kglw', 0.008924559908352921) +zone = ('tnz009', 0.00035613817058742308) + +[fips4740180] +centroid = (0.63480923567320036, -1.4682638182938361) +description = La Follette city, TN +station = ('koqt', 0.0063837540159086791) +zone = ('tnz013', 0.00064793425025298052) + +[fips4740200] +centroid = (0.61169467101844055, -1.557524581363344) +description = La Grange town, TN +station = ('kcrx', 0.009412799199567343) +zone = ('tnz089', 0.0036115308376169016) + +[fips4740240] +centroid = (0.63223105275544678, -1.4687829141199642) +description = Lake City city, TN +station = ('koqt', 0.0037860196379771271) +zone = ('tnz036', 0.0019448559834497976) + +[fips4740350] +centroid = (0.61532095905860174, -1.5660196398848685) +description = Lakeland city, TN +station = ('knqa', 0.0027082921939651189) +zone = ('tnz088', 0.0027179864350742795) + +[fips4740540] +centroid = (0.61440403288277401, -1.48598667691675) +description = Lakesite city, TN +station = ('kcha', 0.0030755626033205281) +zone = ('tnz099', 0.00051289593896205576) + +[fips4740560] +centroid = (0.62605441979910148, -1.4845871322961606) +description = Lake Tansi CDP, TN +station = ('kcsv', 0.0014281471368314282) +zone = ('tnz066', 0.0016524577440957485) + +[fips4740720] +centroid = (0.63253191261190556, -1.5120839569032902) +description = Lakewood city, TN +station = ('kbna', 0.0022768744909208633) +zone = ('tnz027', 0.0024432023327966637) + +[fips4740732] +centroid = (0.62218605459168874, -1.5033457391103782) +description = Lakewood Park CDP, TN +station = ('ktha', 0.0049478432192550312) +zone = ('tnz077', 0.002889144287940694) + +[fips4741200] +centroid = (0.62870648250409189, -1.5107457780592015) +description = La Vergne city, TN +station = ('kmqy', 0.00060241628229777851) +zone = ('tnz062', 0.0037258995618719825) + +[fips4741340] +centroid = (0.6152207422529522, -1.5242297729810892) +description = Lawrenceburg city, TN +station = ('kmsl', 0.0095239725742879578) +zone = ('tnz094', 0.0010680189696695933) + +[fips4741520] +centroid = (0.63190008596939118, -1.5070142641184374) +description = Lebanon city, TN +station = ('kmqy', 0.0042179218033877855) +zone = ('tnz028', 0.0011078787117619444) + +[fips4741760] +centroid = (0.62501491914990615, -1.4709496182132678) +description = Lenoir City city, TN +station = ('koqt', 0.0036525157749839263) +zone = ('tnz068', 0.0013988659030581669) + +[fips4741860] +centroid = (0.61871136585035591, -1.5147448335210034) +description = Lewisburg city, TN +station = ('ktha', 0.0078015013317746908) +zone = ('tnz061', 0.00047390440461992544) + +[fips4741980] +centroid = (0.62229136775875404, -1.5430681937020001) +description = Lexington city, TN +station = ('kmkl', 0.0072326285419057517) +zone = ('tnz054', 0.00033042354979200786) + +[fips4742040] +centroid = (0.628411190247947, -1.5005986955874939) +description = Liberty town, TN +station = ('kmqy', 0.007652997101079531) +zone = ('tnz064', 0.0020978115501893383) + +[fips4742720] +centroid = (0.62154981226616679, -1.5331538857926315) +description = Linden town, TN +station = ('kmsl', 0.015442774700929578) +zone = ('tnz056', 0.00057602951408912938) + +[fips4743140] +centroid = (0.63508883741936983, -1.4892423442902503) +description = Livingston town, TN +station = ('ksrb', 0.0064637445310318587) +zone = ('tnz033', 0.00092973747837512774) + +[fips4743160] +centroid = (0.62397819357422157, -1.5323498475128225) +description = Lobelville city, TN +station = ('kckv', 0.016026158729996774) +zone = ('tnz056', 0.0020900271859919523) + +[fips4743420] +centroid = (0.61436910884444162, -1.4899610359696362) +description = Lone Oak CDP, TN +station = ('kcha', 0.0037847034851567619) +zone = ('tnz081', 0.003034714014193311) + +[fips4743640] +centroid = (0.61076683653478792, -1.4896593383551364) +description = Lookout Mountain town, TN +station = ('kcha', 0.0022657307807005694) +zone = ('gaz001', 0.0032807206262939845) + +[fips4743700] +centroid = (0.61227844874664761, -1.5261082184951329) +description = Loretto city, TN +station = ('kmsl', 0.0062161612677011108) +zone = ('tnz094', 0.0024607024539318859) + +[fips4743780] +centroid = (0.62379968129832764, -1.4723795315628414) +description = Loudon town, TN +station = ('koqt', 0.0051380826409272223) +zone = ('tnz068', 0.00070972408991050494) + +[fips4743820] +centroid = (0.6252927057536537, -1.4671623235496098) +description = Louisville city, TN +station = ('ktys', 0.0011297103686830144) +zone = ('tnz071', 0.0022844143674918414) + +[fips4744300] +centroid = (0.6319824655100853, -1.4616732455987953) +description = Luttrell town, TN +station = ('k1a6', 0.0069938209397552038) +zone = ('tnz037', 0.0018572233381967233) + +[fips4744360] +centroid = (0.62691347085693316, -1.5244574686353041) +description = Lyles CDP, TN +station = ('kbna', 0.0099540472226519912) +zone = ('tnz057', 0.0027216322286820094) + +[fips4744382] +centroid = (0.61590730242080916, -1.5072433734893467) +description = "Lynchburg, Moore County metropolitan government", TN +station = ('ktha', 0.0022521878544909555) +zone = ('tnz076', 7.3130517937310214e-05) + +[fips4744420] +centroid = (0.61746439791297603, -1.5185430190391935) +description = Lynnville town, TN +station = ('kmdq', 0.011063271140661609) +zone = ('tnz095', 0.0030971979784580666) + +[fips4744840] +centroid = (0.63023554800847159, -1.5295283133374633) +description = McEwen city, TN +station = ('kckv', 0.0093653524789958694) +zone = ('tnz024', 0.00231566768835745) + +[fips4744940] +centroid = (0.63072581099535685, -1.544761721581795) +description = McKenzie city, TN +station = ('kcey', 0.0093471092403261888) +zone = ('tnz021', 0.0029914068094401419) + +[fips4745000] +centroid = (0.6280925105798254, -1.5460339269801591) +description = McLemoresville town, TN +station = ('kmkl', 0.0082574692037075733) +zone = ('tnz021', 0.0018664055305180507) + +[fips4745100] +centroid = (0.62283639917756684, -1.4971727364388767) +description = McMinnville city, TN +station = ('ksrb', 0.0073690212153990622) +zone = ('tnz078', 0.00013345150534917516) + +[fips4745320] +centroid = (0.62001266588735038, -1.4724341778217216) +description = Madisonville city, TN +station = ('ktys', 0.0074326500022446496) +zone = ('tnz086', 0.0010224984390977874) + +[fips4745500] +centroid = (0.61891452217528797, -1.5024336649498709) +description = Manchester city, TN +station = ('ktha', 0.0027240335621138635) +zone = ('tnz077', 0.00052670867784913031) + +[fips4746240] +centroid = (0.63424631462955472, -1.550744814977387) +description = Martin city, TN +station = ('kcey', 0.0088737474006962882) +zone = ('tnz003', 0.0020090323590309881) + +[fips4746380] +centroid = (0.62389942686507904, -1.465703106121895) +description = Maryville city, TN +station = ('ktys', 0.0012211724296059426) +zone = ('tnz071', 0.00045824801540973384) + +[fips4746400] +centroid = (0.62951846203199724, -1.4619582229590611) +description = Mascot CDP, TN +station = ('ktys', 0.0053813984409052653) +zone = ('tnz069', 0.0027758867543637091) + +[fips4746420] +centroid = (0.61806075946508987, -1.5628288638529575) +description = Mason town, TN +station = ('knqa', 0.0047500810315412919) +zone = ('tnz049', 0.0034041015892805025) + +[fips4746540] +centroid = (0.62507857130772637, -1.5572502679648079) +description = Maury City town, TN +station = ('kdyr', 0.0040861927008002379) +zone = ('tnz051', 0.0011941766699844251) + +[fips4746700] +centroid = (0.63262319333178496, -1.4626982949217839) +description = Maynardville city, TN +station = ('k1a6', 0.0064254857929025282) +zone = ('tnz037', 0.00084240732771662368) + +[fips4747000] +centroid = (0.62492955509619119, -1.5494826452222223) +description = Medina city, TN +station = ('kmkl', 0.0040892641379641241) +zone = ('tnz052', 0.003551425611933176) + +[fips4747020] +centroid = (0.61875716328992814, -1.5509481632885369) +description = Medon city, TN +station = ('kmkl', 0.0026911801118125367) +zone = ('tnz052', 0.0027449246758423731) + +[fips4748000] +centroid = (0.61267240446540783, -1.5704210460991328) +description = Memphis city, TN +station = ('kmem', 0.0012273350320729237) +zone = ('tnz088', 0.0018321946171823541) + +[fips4748180] +centroid = (0.61191737503099508, -1.5433199748998927) +description = Michie town, TN +station = ('kcrx', 0.0034934892954828346) +zone = ('tnz091', 0.0028037666640379822) + +[fips4748340] +centroid = (0.61194060536333905, -1.5514152133963706) +description = Middleton city, TN +station = ('kcrx', 0.0048217124347698023) +zone = ('tnz090', 0.0029350702706271489) + +[fips4748360] +centroid = (0.61419445374619452, -1.4869759818966577) +description = Middle Valley CDP, TN +station = ('kcha', 0.0027476807189284638) +zone = ('tnz099', 0.00049642097681300496) + +[fips4748460] +centroid = (0.62622883055125322, -1.4761113596628708) +description = Midtown CDP, TN +station = ('koqt', 0.0053819233837287895) +zone = ('tnz067', 0.00092459083722232303) + +[fips4748660] +centroid = (0.62678459574496592, -1.5490504493395507) +description = Milan city, TN +station = ('kmkl', 0.0059142720082510517) +zone = ('tnz020', 0.0029219256592233822) + +[fips4748920] +centroid = (0.61746001713655352, -1.5422807884099627) +description = Milledgeville town, TN +station = ('kcrx', 0.0086597273645622926) +zone = ('tnz053', 0.003588873276444516) + +[fips4748980] +centroid = (0.63523661444713619, -1.5133912608729116) +description = Millersville city, TN +station = ('kbna', 0.0048972940575955203) +zone = ('tnz007', 0.0031761482402548136) + +[fips4749060] +centroid = (0.61672434340354532, -1.568855119240951) +description = Millington city, TN +station = ('knqa', 0.00045082360736440832) +zone = ('tnz088', 0.0026547167694203995) + +[fips4749360] +centroid = (0.6115661973322013, -1.5214042943616204) +description = Minor Hill city, TN +station = ('k9a4', 0.0072316773551247913) +zone = ('tnz095', 0.0034242940306097513) + +[fips4749460] +centroid = (0.63938454649413345, -1.5104082488351582) +description = Mitchellville city, TN +station = ('kbwg', 0.0060560350337741427) +zone = ('kyz072', 0.0019733999767411249) + +[fips4749740] +centroid = (0.6149243853459635, -1.4989620130814365) +description = Monteagle town, TN +station = ('kbgf', 0.0027671857668203621) +zone = ('tnz079', 0.0035628485424801914) + +[fips4749760] +centroid = (0.63086580385465929, -1.4881413556915071) +description = Monterey town, TN +station = ('ksrb', 0.0040733007019365455) +zone = ('tnz033', 0.003490337276892927) + +[fips4749940] +centroid = (0.63444095374773701, -1.452730038885236) +description = Mooresburg CDP, TN +station = ('k0vg', 0.0052957996841718914) +zone = ('tnz039', 0.0023727884327429489) + +[fips4750220] +centroid = (0.62141957579738294, -1.4994482618110421) +description = Morrison town, TN +station = ('ktha', 0.0061638293148472273) +zone = ('tnz078', 0.0022925566304578399) + +[fips4750280] +centroid = (0.63187472633535968, -1.4537991403185453) +description = Morristown city, TN +station = ('k0vg', 0.0079338215281069303) +zone = ('tnz039', 0.00048270934601268796) + +[fips4750300] +centroid = (0.61195231652262005, -1.5600098080451363) +description = Moscow city, TN +station = ('kolv', 0.0059685035077788546) +zone = ('tnz089', 0.0023980469582443528) + +[fips4750320] +centroid = (0.63173180132291384, -1.4480119426781974) +description = Mosheim town, TN +station = ('k0vg', 0.008751698187597105) +zone = ('tnz042', 0.0015756034452891481) + +[fips4750400] +centroid = (0.63651035573524173, -1.4277654426766551) +description = Mountain City town, TN +station = ('kvji', 0.0049188675967787362) +zone = ('tnz018', 0.00070457921008341984) + +[fips4750580] +centroid = (0.63817738951699143, -1.4428211414965486) +description = Mount Carmel town, TN +station = ('ktri', 0.0041259694588862018) +zone = ('vaz005', 0.0027586637203789182) + +[fips4750780] +centroid = (0.63186568552983435, -1.5099978521148441) +description = Mount Juliet city, TN +station = ('kbna', 0.0027945302068163986) +zone = ('tnz028', 0.003197204922645463) + +[fips4751080] +centroid = (0.62067541976421003, -1.5212621372940456) +description = Mount Pleasant city, TN +station = ('kbna', 0.01181254536359772) +zone = ('tnz060', 0.0015397210365384157) + +[fips4751402] +centroid = (0.6156684541126739, -1.4874135359401328) +description = Mowbray Mountain CDP, TN +station = ('kcha', 0.0042336513417957347) +zone = ('tnz099', 0.0018401553747529388) + +[fips4751540] +centroid = (0.61862551310445024, -1.567500429582138) +description = Munford city, TN +station = ('knqa', 0.0017505486796852625) +zone = ('tnz049', 0.0011678939630107123) + +[fips4751560] +centroid = (0.62573909116314375, -1.5082448085075559) +description = Murfreesboro city, TN +station = ('kmqy', 0.0031041234260229525) +zone = ('tnz062', 0.00016620861689450967) + +[fips4752006] +centroid = (0.6313170063728849, -1.514684026249864) +description = Nashville-Davidson metropolitan government (balance), TN +station = ('kbna', 0.0017260462735265636) +zone = ('tnz027', 4.1984475839205261e-05) + +[fips4752400] +centroid = (0.63036316648337742, -1.5580428917913087) +description = Newbern town, TN +station = ('kdyr', 0.0027535837874855485) +zone = ('tnz019', 0.0022769997725028282) + +[fips4752520] +centroid = (0.63728549136263746, -1.5108049970807214) +description = New Deal CDP, TN +station = ('kbna', 0.0071351895699351226) +zone = ('tnz008', 0.0016328344918323458) + +[fips4752780] +centroid = (0.61083874409997008, -1.4952003922110757) +description = New Hope city, TN +station = ('kbgf', 0.0064800816141361191) +zone = ('tnz098', 0.0023802401270386375) + +[fips4752820] +centroid = (0.62860560247332664, -1.5353566658415734) +description = New Johnsonville city, TN +station = ('kcey', 0.01250229104927726) +zone = ('tnz022', 0.0016771467000505087) + +[fips4752940] +centroid = (0.62998233564059225, -1.4583451994212149) +description = New Market town, TN +station = ('ktys', 0.0077413605289499967) +zone = ('tnz070', 0.001743098498673183) + +[fips4753000] +centroid = (0.62764413549498799, -1.4520733413008808) +description = Newport city, TN +station = ('k0vg', 0.012090216011702761) +zone = ('tnz040', 0.00073271877078331439) + +[fips4753140] +centroid = (0.63597740199485264, -1.459210812917034) +description = New Tazewell town, TN +station = ('k1a6', 0.0035127321188437024) +zone = ('tnz014', 0.0011158012681250491) + +[fips4753240] +centroid = (0.62018444119233163, -1.5024359862377761) +description = New Union CDP, TN +station = ('ktha', 0.0035521370435383126) +zone = ('tnz077', 0.00076606205870586978) + +[fips4753380] +centroid = (0.61986972342161195, -1.4756608901829311) +description = Niota city, TN +station = ('koqt', 0.00981754377538872) +zone = ('tnz085', 0.0018636745130738057) + +[fips4753460] +centroid = (0.62761963107229002, -1.5127675151048341) +description = Nolensville town, TN +station = ('kmqy', 0.002352287042612099) +zone = ('tnz059', 0.003363242136725412) + +[fips4753580] +centroid = (0.61875810576772428, -1.5054873453690376) +description = Normandy town, TN +station = ('ktha', 0.0012706864045266631) +zone = ('tnz077', 0.0026897334481531944) + +[fips4753600] +centroid = (0.6319483268699162, -1.4671674199110258) +description = Norris city, TN +station = ('koqt', 0.0041170613781181834) +zone = ('tnz036', 0.0024731136800094297) + +[fips4754280] +centroid = (0.62819302409144773, -1.4757917375169531) +description = Oakdale town, TN +station = ('koqt', 0.0045837409424102455) +zone = ('tnz067', 0.0025743762644948064) + +[fips4754640] +centroid = (0.63830472873921706, -1.5075820720839888) +description = Oak Grove CDP, TN +station = ('kbwg', 0.0069064092774094518) +zone = ('tnz008', 0.0021322998994474048) + +[fips4754700] +centroid = (0.6357498459669777, -1.4387208394848383) +description = Oak Grove CDP, TN +station = ('ktri', 0.00084797121745152943) +zone = ('tnz017', 0.0023582295990720948) + +[fips4754780] +centroid = (0.62951315623107118, -1.5148258517048809) +description = Oak Hill city, TN +station = ('kbna', 0.0017624038900999918) +zone = ('tnz027', 0.0017658700235494544) + +[fips4754920] +centroid = (0.61479961175773845, -1.5627327136644651) +description = Oakland town, TN +station = ('kolv', 0.0055813268214056945) +zone = ('tnz089', 0.0018303808501303595) + +[fips4755120] +centroid = (0.62773354871256759, -1.4711476083636137) +description = Oak Ridge city, TN +station = ('koqt', 0.0011916238600345257) +zone = ('tnz036', 0.0029525719031776049) + +[fips4755240] +centroid = (0.63292815471198582, -1.556732219336231) +description = Obion town, TN +station = ('kdyr', 0.0054466208593142969) +zone = ('tnz002', 0.0017618412064178757) + +[fips4755800] +centroid = (0.62901622608644336, -1.4718092103231675) +description = Oliver Springs town, TN +station = ('koqt', 0.0014029263200040982) +zone = ('tnz036', 0.0022877780157264816) + +[fips4755820] +centroid = (0.61444110367608629, -1.5392768847810629) +description = Olivet CDP, TN +station = ('kcrx', 0.007638826776488407) +zone = ('tnz092', 0.0001739693621821398) + +[fips4755860] +centroid = (0.63734832321570922, -1.4749641023856574) +description = Oneida town, TN +station = ('kekq', 0.0076389959200816098) +zone = ('tnz012', 0.001551388356985023) + +[fips4755900] +centroid = (0.61213718179699117, -1.4844128437170565) +description = Ooltewah CDP, TN +station = ('kcha', 0.00224349425218049) +zone = ('tnz099', 0.0024924771861808562) + +[fips4756020] +centroid = (0.63867768814707571, -1.5131929565633) +description = Orlinda city, TN +station = ('kbwg', 0.0076190824997144774) +zone = ('tnz007', 0.0026751490339780091) + +[fips4756040] +centroid = (0.61112066713404467, -1.4975768150672986) +description = Orme town, TN +station = ('kbgf', 0.0046914571025978907) +zone = ('tnz098', 0.00329129722928284) + +[fips4756560] +centroid = (0.61710454592779984, -1.4934010973786096) +description = Palmer town, TN +station = ('kcha', 0.0076938154256704343) +zone = ('tnz081', 0.0022187710405249064) + +[fips4756720] +centroid = (0.63343002413839689, -1.5412659318098056) +description = Paris city, TN +station = ('kcey', 0.0064490507599388571) +zone = ('tnz004', 0.00068434658356099549) + +[fips4756800] +centroid = (0.61211768646924647, -1.5111137109188142) +description = Park City CDP, TN +station = ('kmdq', 0.0036866524413802144) +zone = ('tnz096', 0.001205807906890736) + +[fips4756870] +centroid = (0.62464391451080969, -1.542701465119571) +description = Parker's Crossroads city, TN +station = ('kmkl', 0.0081611052857660116) +zone = ('tnz054', 0.0023592088126683144) + +[fips4757040] +centroid = (0.62846222367527527, -1.4502174803473578) +description = Parrottsville town, TN +station = ('k0vg', 0.01140818504562083) +zone = ('tnz040', 0.00097940528619176281) + +[fips4757080] +centroid = (0.62223583138195571, -1.5380364094685004) +description = Parsons city, TN +station = ('kmkl', 0.01129536752557108) +zone = ('tnz055', 0.00086988782220653936) + +[fips4757480] +centroid = (0.63014669329625261, -1.5194223508229332) +description = Pegram town, TN +station = ('kbna', 0.0052656498990418469) +zone = ('tnz026', 0.0027638231569401036) + +[fips4757500] +centroid = (0.61669704645404422, -1.4987192901423616) +description = Pelham CDP, TN +station = ('kbgf', 0.0039069873835309472) +zone = ('tnz079', 0.0023056270782128973) + +[fips4757740] +centroid = (0.61640578590847139, -1.5121686228253046) +description = Petersburg town, TN +station = ('ktha', 0.0057168345428351471) +zone = ('tnz096', 0.0031760270706620878) + +[fips4757780] +centroid = (0.63011225795011072, -1.4739361732694027) +description = Petros CDP, TN +station = ('koqt', 0.0034105231629334692) +zone = ('tnz035', 0.0028583961849853339) + +[fips4757900] +centroid = (0.62271452283590012, -1.4730540140522748) +description = Philadelphia city, TN +station = ('koqt', 0.0063477950842440707) +zone = ('tnz068', 0.0015874280182036459) + +[fips4758080] +centroid = (0.62478968440993632, -1.4584318899251616) +description = Pigeon Forge city, TN +station = ('ktys', 0.0059729196980906687) +zone = ('tnz073', 0.00086290677369307855) + +[fips4758120] +centroid = (0.62160403964602617, -1.4869033936530673) +description = Pikeville city, TN +station = ('kcsv', 0.0060457157524204533) +zone = ('tnz082', 0.00036981666156650283) + +[fips4758240] +centroid = (0.63344407403887548, -1.4365629318509652) +description = Pine Crest CDP, TN +station = ('k0a9', 0.002365151761733731) +zone = ('tnz046', 0.0024588857257715332) + +[fips4758840] +centroid = (0.61176298320536371, -1.5639883209816423) +description = Piperton city, TN +station = ('kolv', 0.002829421972606945) +zone = ('tnz089', 0.0037754715217764726) + +[fips4758940] +centroid = (0.62412029828191895, -1.4554033946071008) +description = Pittman Center town, TN +station = ('k1a5', 0.0094819826499523904) +zone = ('tnz074', 0.0018432033917627714) + +[fips4759020] +centroid = (0.63147822243589169, -1.4624690633778272) +description = Plainview city, TN +station = ('ktys', 0.0069023528473211998) +zone = ('tnz037', 0.0019661482778019638) + +[fips4759240] +centroid = (0.62786282525026282, -1.4870552023914059) +description = Pleasant Hill town, TN +station = ('kcsv', 0.0017272804911484562) +zone = ('tnz066', 0.0029065019745225275) + +[fips4759560] +centroid = (0.63511304513609501, -1.5192305914980166) +description = Pleasant View city, TN +station = ('kckv', 0.0065469812051778611) +zone = ('tnz026', 0.0023099054940044638) + +[fips4760280] +centroid = (0.63854940644705405, -1.5100295996539379) +description = Portland city, TN +station = ('kbwg', 0.0067909999766567796) +zone = ('tnz008', 0.0021947402114155211) + +[fips4760500] +centroid = (0.61408404421771334, -1.4919879217365624) +description = Powells Crossroads town, TN +station = ('kcha', 0.0048442756931367272) +zone = ('tnz098', 0.0021830449396709728) + +[fips4761040] +centroid = (0.61424093186417517, -1.5190521490352926) +description = Pulaski city, TN +station = ('kmdq', 0.0089589323405044555) +zone = ('tnz095', 0.00015351289821613566) + +[fips4761160] +centroid = (0.63603571344516185, -1.5416952129926262) +description = Puryear city, TN +station = ('kcey', 0.0038213089341632075) +zone = ('tnz004', 0.0019775388789953891) + +[fips4761520] +centroid = (0.61211618548608981, -1.5466277578048575) +description = Ramer city, TN +station = ('kcrx', 0.002656166722929535) +zone = ('tnz091', 0.0019412463667601329) + +[fips4761960] +centroid = (0.6128165686616226, -1.4886957944349881) +description = Red Bank city, TN +station = ('kcha', 0.0019379239230476136) +zone = ('tnz099', 0.0022269861410962946) + +[fips4762000] +centroid = (0.63756711769073915, -1.4983319143148814) +description = Red Boiling Springs city, TN +station = ('kglw', 0.0088807387675983) +zone = ('tnz009', 0.0022316416916950462) + +[fips4762580] +centroid = (0.6176628593022202, -1.4782738924192618) +description = Riceville CDP, TN +station = ('kcha', 0.0094712854437894421) +zone = ('tnz085', 0.001311289304602259) + +[fips4763060] +centroid = (0.6328808911958419, -1.5617242275160776) +description = Ridgely town, TN +station = ('kdyr', 0.0047003704614706834) +zone = ('tnz001', 0.0013014852854225593) + +[fips4763080] +centroid = (0.61147786621875777, -1.4878388726788438) +description = Ridgeside city, TN +station = ('kcha', 0.00067078247588214551) +zone = ('gaz003', 0.0027728080997321226) + +[fips4763140] +centroid = (0.63534960706291033, -1.5143794313888059) +description = Ridgetop city, TN +station = ('kbna', 0.0051335497361208841) +zone = ('tnz007', 0.0025812780279859827) + +[fips4763340] +centroid = (0.6238867906812946, -1.5626649774361951) +description = Ripley city, TN +station = ('kdyr', 0.0048205379595820351) +zone = ('tnz048', 0.0014021102584307556) + +[fips4763800] +centroid = (0.63453841293316837, -1.5542075133067585) +description = Rives town, TN +station = ('kdyr', 0.0079413364732382526) +zone = ('tnz002', 0.001395665902467724) + +[fips4763840] +centroid = (0.6315764146596089, -1.432401106983122) +description = Roan Mountain CDP, TN +station = ('k0a9', 0.0034924694189028336) +zone = ('tnz047', 0.00086218656655376335) + +[fips4763920] +centroid = (0.63449104469726925, -1.4762671652051962) +description = Robbins CDP, TN +station = ('koqt', 0.0076796886415318628) +zone = ('tnz012', 0.0017280211913575302) + +[fips4764160] +centroid = (0.62552157077846759, -1.4649469422234684) +description = Rockford city, TN +station = ('ktys', 0.00079037864385774934) +zone = ('tnz071', 0.0020323221582707715) + +[fips4764440] +centroid = (0.62605099895376759, -1.4778565492885249) +description = Rockwood city, TN +station = ('kcsv', 0.0059391632018510401) +zone = ('tnz067', 0.0021799861185995907) + +[fips4764820] +centroid = (0.63543888065414988, -1.4486893573207742) +description = Rogersville town, TN +station = ('k0vg', 0.0052372892130655097) +zone = ('tnz016', 0.0010124153127898591) + +[fips4765240] +centroid = (0.61155307245622625, -1.5632574992639547) +description = Rossville town, TN +station = ('kolv', 0.0033025409963880026) +zone = ('tnz089', 0.0035194748410552149) + +[fips4765642] +centroid = (0.63038973039459278, -1.5099710089509486) +description = Rural Hill CDP, TN +station = ('kmqy', 0.0019173751436934369) +zone = ('tnz028', 0.0031284445336909319) + +[fips4765760] +centroid = (0.63051076897821856, -1.5532152936269998) +description = Rutherford town, TN +station = ('kdyr', 0.0061507016949061471) +zone = ('tnz020', 0.0024058640239774725) + +[fips4765820] +centroid = (0.63321150891604716, -1.4576962860053235) +description = Rutledge town, TN +station = ('k1a6', 0.006521429012806639) +zone = ('tnz038', 0.00016129832210557329) + +[fips4766160] +centroid = (0.61143353485575724, -1.5271910731229479) +description = St. Joseph city, TN +station = ('kmsl', 0.0051288523657737426) +zone = ('alz001', 0.0031636040423850859) + +[fips4766220] +centroid = (0.61764086815364516, -1.4850464331421156) +description = Sale Creek CDP, TN +station = ('kcha', 0.0064004107183836829) +zone = ('tnz099', 0.0037847422471318152) + +[fips4766340] +centroid = (0.61749701811669577, -1.5396444336682404) +description = Saltillo town, TN +station = ('kcrx', 0.0097270338511073005) +zone = ('tnz092', 0.0031937568670819347) + +[fips4766360] +centroid = (0.63498050483269863, -1.5594944123170222) +description = Samburg town, TN +station = ('kdyr', 0.0066955608380391829) +zone = ('tnz001', 0.0021422657688694919) + +[fips4766660] +centroid = (0.61859198532951942, -1.5409826474189146) +description = Sardis town, TN +station = ('kcrx', 0.010127096366643983) +zone = ('tnz055', 0.0038189092052803046) + +[fips4766680] +centroid = (0.61169636398781513, -1.5548739672816327) +description = Saulsbury town, TN +station = ('kcrx', 0.0073212478813245684) +zone = ('tnz090', 0.0030906827673044708) + +[fips4766720] +centroid = (0.6147231139766236, -1.5400027672169674) +description = Savannah city, TN +station = ('kcrx', 0.0073954130012795572) +zone = ('tnz092', 0.00082719245499415274) + +[fips4766880] +centroid = (0.61992218801892696, -1.5403006425604051) +description = Scotts Hill town, TN +station = ('kcrx', 0.011566646889627509) +zone = ('tnz055', 0.0025157647565139203) + +[fips4766940] +centroid = (0.6138574655742195, -1.5462963895930737) +description = Selmer town, TN +station = ('kcrx', 0.0043888166705439297) +zone = ('tnz091', 0.00046773668568272063) + +[fips4767120] +centroid = (0.62639934921917317, -1.4587362229868319) +description = Sevierville city, TN +station = ('ktys', 0.0058554629276232331) +zone = ('tnz073', 0.00081270261745443307) + +[fips4767140] +centroid = (0.61431425314605148, -1.499631870448352) +description = Sewanee CDP, TN +station = ('kbgf', 0.0020779563003417503) +zone = ('tnz097', 0.0025320806062047968) + +[fips4767200] +centroid = (0.62612809014682813, -1.4621340474279068) +description = Seymour CDP, TN +station = ('ktys', 0.0031273627904295181) +zone = ('tnz069', 0.0030979984767311179) + +[fips4767230] +centroid = (0.63490662504546169, -1.5117453979349886) +description = Shackle Island CDP, TN +station = ('kbna', 0.0046476952525170753) +zone = ('tnz008', 0.0027192831252911909) + +[fips4767540] +centroid = (0.63239773169901237, -1.5502897029216369) +description = Sharon town, TN +station = ('kdyr', 0.0090746453296526811) +zone = ('tnz003', 0.0018837496109083115) + +[fips4767760] +centroid = (0.619576543013862, -1.5088675594379601) +description = Shelbyville city, TN +station = ('ktha', 0.0035809386264414305) +zone = ('tnz075', 0.00027563890226227523) + +[fips4768540] +centroid = (0.61333552486141052, -1.4895761385096939) +description = Signal Mountain town, TN +station = ('kcha', 0.0028177257413339193) +zone = ('tnz099', 0.0026810784195454461) + +[fips4768560] +centroid = (0.61684201350171486, -1.5500350070238933) +description = Silerton town, TN +station = ('kmkl', 0.0047419012950788578) +zone = ('tnz053', 0.003129867221302499) + +[fips4769080] +centroid = (0.63347864901135742, -1.5266558853611163) +description = Slayden town, TN +station = ('kckv', 0.0056543077923306507) +zone = ('tnz025', 0.003021549116506313) + +[fips4769320] +centroid = (0.62759095531267972, -1.4978616178946391) +description = Smithville city, TN +station = ('ksrb', 0.0044404118983471718) +zone = ('tnz064', 0.00040954204185064468) + +[fips4769420] +centroid = (0.62786102756113338, -1.5101320330277375) +description = Smyrna town, TN +station = ('kmqy', 0.00061549691646351867) +zone = ('tnz062', 0.0027465471583473055) + +[fips4769460] +centroid = (0.63768737087620153, -1.4523046148800627) +description = Sneedville town, TN +station = ('k0vg', 0.0020459286149926248) +zone = ('tnz015', 0.0002769968911180009) + +[fips4769560] +centroid = (0.61543053082904198, -1.4865339598102978) +description = Soddy-Daisy city, TN +station = ('kcha', 0.0040033342454955483) +zone = ('tnz099', 0.0014118570994975002) + +[fips4769620] +centroid = (0.61491834650675159, -1.559894895567185) +description = Somerville town, TN +station = ('kolv', 0.0073539724539231225) +zone = ('tnz089', 0.00082777056144316477) + +[fips4769680] +centroid = (0.6325030099594926, -1.5002433290984956) +description = South Carthage town, TN +station = ('ksrb', 0.0068188569938621435) +zone = ('tnz030', 0.00018800835261228378) + +[fips4769740] +centroid = (0.61278145263707251, -1.4819518596585746) +description = South Cleveland CDP, TN +station = ('kcha', 0.0043577162274585149) +zone = ('tnz100', 0.0010522075353032901) + +[fips4769900] +centroid = (0.63692883332999228, -1.5513124833165981) +description = South Fulton city, TN +station = ('kcey', 0.0078950127982945015) +zone = ('kyz002', 0.0034752755956142744) + +[fips4770060] +centroid = (0.61114340877419815, -1.4959628567481018) +description = South Pittsburg city, TN +station = ('kbgf', 0.0057862273710714944) +zone = ('tnz098', 0.0023637708002240496) + +[fips4770180] +centroid = (0.62718038405944065, -1.4917754802600096) +description = Sparta city, TN +station = ('ksrb', 0.0022682406319222163) +zone = ('tnz065', 0.00028302999242025911) + +[fips4770240] +centroid = (0.6237670436413153, -1.4914835390360286) +description = Spencer town, TN +station = ('ksrb', 0.005627890421589868) +zone = ('tnz080', 0.00075568579971119004) + +[fips4770400] +centroid = (0.6228449163843166, -1.4811602132164547) +description = Spring City town, TN +station = ('kcsv', 0.0055483420472076991) +zone = ('tnz083', 0.0016020732188697659) + +[fips4770500] +centroid = (0.63693345845251015, -1.5162060755306506) +description = Springfield city, TN +station = ('kbna', 0.0070948376861637089) +zone = ('tnz007', 0.0005555496897684339) + +[fips4770580] +centroid = (0.62378481109310058, -1.5169580680921648) +description = Spring Hill city, TN +station = ('kmqy', 0.0072964493282690474) +zone = ('tnz059', 0.0026904508287320921) + +[fips4770680] +centroid = (0.63607534987247449, -1.439220387623344) +description = Spurgeon CDP, TN +station = ('ktri', 0.00094338913190717289) +zone = ('tnz044', 0.0026862371158191279) + +[fips4770820] +centroid = (0.61891837935293492, -1.5603493967576969) +description = Stanton town, TN +station = ('knqa', 0.0069153305389589919) +zone = ('tnz050', 0.0027051710609047948) + +[fips4770840] +centroid = (0.61360385178061216, -1.5433918301051974) +description = Stantonville town, TN +station = ('kcrx', 0.0047968827511910214) +zone = ('tnz091', 0.0019347183415412334) + +[fips4772040] +centroid = (0.61844731498782168, -1.5238200918457683) +description = Summertown CDP, TN +station = ('kmsl', 0.012650141782393685) +zone = ('tnz058', 0.0030844883590872602) + +[fips4772140] +centroid = (0.63256448045574776, -1.4779570977067324) +description = Sunbright city, TN +station = ('kcsv', 0.0076446997991266299) +zone = ('tnz035', 0.0019414830684833721) + +[fips4772380] +centroid = (0.63656412932949558, -1.4461953341795517) +description = Surgoinsville town, TN +station = ('k0vg', 0.0059211245695605912) +zone = ('tnz016', 0.0012967063653731635) + +[fips4772540] +centroid = (0.62137576803315786, -1.4743032160110972) +description = Sweetwater city, TN +station = ('koqt', 0.00797967749915314) +zone = ('tnz086', 0.0030642597111562764) + +[fips4773120] +centroid = (0.63640132501686963, -1.4584967114535807) +description = Tazewell town, TN +station = ('k1a6', 0.0035224292758011142) +zone = ('tnz014', 0.001387236744208104) + +[fips4773220] +centroid = (0.63274170118799533, -1.4407301497861968) +description = Telford CDP, TN +station = ('ktri', 0.0042619221522061535) +zone = ('tnz044', 0.00099313571902662147) + +[fips4773260] +centroid = (0.61724846577791925, -1.4712680884418792) +description = Tellico Plains town, TN +station = ('krhp', 0.0068620102546302448) +zone = ('tnz086', 0.0021077940899864051) + +[fips4773270] +centroid = (0.62311425559448441, -1.4706708018652614) +description = Tellico Village CDP, TN +station = ('ktys', 0.0044421498721568661) +zone = ('tnz068', 0.00089733603817104108) + +[fips4773460] +centroid = (0.6338699169230696, -1.5318049033604724) +description = Tennessee Ridge town, TN +station = ('khop', 0.0071373926333003187) +zone = ('tnz023', 0.0008863135075422115) + +[fips4773900] +centroid = (0.62497210622335486, -1.5166889208682148) +description = Thompson's Station town, TN +station = ('kbna', 0.0061911485958354292) +zone = ('tnz059', 0.0014929772078198236) + +[fips4774100] +centroid = (0.62434256596216042, -1.5508531301107655) +description = Three Way city, TN +station = ('kmkl', 0.0031208125212403431) +zone = ('tnz052', 0.0028746660930178609) + +[fips4774540] +centroid = (0.63490379761207338, -1.5617402321853184) +description = Tiptonville town, TN +station = ('kdyr', 0.0066836777846768529) +zone = ('tnz001', 0.00075523043617903068) + +[fips4774640] +centroid = (0.61708695300893979, -1.5525419106949954) +description = Toone town, TN +station = ('kmkl', 0.0042834285521803636) +zone = ('tnz090', 0.002669109809847239) + +[fips4774860] +centroid = (0.62265963223092491, -1.4617568817765507) +description = Townsend city, TN +station = ('ktys', 0.0040913390043816429) +zone = ('tnz072', 0.0019391115749285259) + +[fips4774880] +centroid = (0.61547217438499457, -1.4966842013279511) +description = Tracy City town, TN +station = ('kbgf', 0.0047038322143665087) +zone = ('tnz079', 0.0022165775541807234) + +[fips4775000] +centroid = (0.62785071266525405, -1.5523869080041257) +description = Trenton city, TN +station = ('kdyr', 0.0064396268747818185) +zone = ('tnz020', 0.00044565538938546559) + +[fips4775100] +centroid = (0.62851126742725638, -1.5467233669412819) +description = Trezevant town, TN +station = ('kmkl', 0.0083075189658977904) +zone = ('tnz021', 0.0024974011373868248) + +[fips4775160] +centroid = (0.63184550952368135, -1.556637587584188) +description = Trimble town, TN +station = ('kdyr', 0.004616597266333791) +zone = ('tnz002', 0.0027822010810452549) + +[fips4775240] +centroid = (0.63429876177357702, -1.5560802166875636) +description = Troy town, TN +station = ('kdyr', 0.0068921146258198191) +zone = ('tnz002', 0.00029405998157820446) + +[fips4775320] +centroid = (0.61738074428192791, -1.504792809046499) +description = Tullahoma city, TN +station = ('ktha', 0.00042092930166154276) +zone = ('tnz076', 0.0025289436602126611) + +[fips4775560] +centroid = (0.63137449751844565, -1.4441796359731309) +description = Tusculum city, TN +station = ('ktri', 0.0070347865142011837) +zone = ('tnz042', 0.0015852659909940559) + +[fips4775820] +centroid = (0.63218752424390212, -1.4369118580750238) +description = Unicoi town, TN +station = ('k0a9', 0.0034209728255851831) +zone = ('tnz045', 0.0024215736120183915) + +[fips4775940] +centroid = (0.63574790865150788, -1.5541468107553742) +description = Union City city, TN +station = ('kdyr', 0.0089463794592365489) +zone = ('tnz002', 0.0018629497055849056) + +[fips4776180] +centroid = (0.62154234225696825, -1.5109993045863459) +description = Unionville CDP, TN +station = ('ktha', 0.0061623607562356041) +zone = ('tnz075', 0.002363862123243075) + +[fips4776860] +centroid = (0.63247478798548784, -1.5262254173544043) +description = Vanleer town, TN +station = ('kckv', 0.0066196775309653672) +zone = ('tnz025', 0.0020016695723545645) + +[fips4777400] +centroid = (0.62026746650484899, -1.4985497314055303) +description = Viola town, TN +station = ('ktha', 0.0061482563601961519) +zone = ('tnz078', 0.0027066887864541024) + +[fips4777480] +centroid = (0.62142271739003663, -1.4701718645919939) +description = Vonore town, TN +station = ('ktys', 0.0051327101923978906) +zone = ('tnz086', 0.0023300601471669328) + +[fips4777540] +centroid = (0.61372681022641518, -1.4889243627538293) +description = Walden town, TN +station = ('kcha', 0.0027611130429983552) +zone = ('tnz099', 0.0020795638033618844) + +[fips4777700] +centroid = (0.62364185117406967, -1.462704839906479) +description = Walland CDP, TN +station = ('ktys', 0.0029032898455561172) +zone = ('tnz072', 0.0025884727315528236) + +[fips4777760] +centroid = (0.61170144289593831, -1.5370091959372392) +description = Walnut Grove CDP, TN +station = ('kcrx', 0.0079812121310337287) +zone = ('tnz092', 0.00314297870847048) + +[fips4777820] +centroid = (0.63685278933448297, -1.511554476368113) +description = Walnut Grove CDP, TN +station = ('kbna', 0.0065891689738919804) +zone = ('tnz008', 0.0020688015080494726) + +[fips4777900] +centroid = (0.63821927741903939, -1.435803259840742) +description = Walnut Hill CDP, TN +station = ('ktri', 0.0025776271342054838) +zone = ('tnz017', 0.0010933953226215647) + +[fips4777980] +centroid = (0.62757236755614598, -1.50740380415419) +description = Walterhill CDP, TN +station = ('kmqy', 0.0023298495384947151) +zone = ('tnz062', 0.0021150484892719502) + +[fips4778100] +centroid = (0.63013903130083637, -1.4763115663813671) +description = Wartburg city, TN +station = ('koqt', 0.0052113236389376635) +zone = ('tnz035', 0.0010333630816712295) + +[fips4778120] +centroid = (0.62007415383689801, -1.5067901114826037) +description = Wartrace town, TN +station = ('ktha', 0.002851931989392739) +zone = ('tnz075', 0.0018086973828980678) + +[fips4778240] +centroid = (0.63476244339595433, -1.4362841155029591) +description = Watauga city, TN +station = ('k0a9', 0.0017288933116273682) +zone = ('tnz046', 0.0018234557179172626) + +[fips4778320] +centroid = (0.63008126090259531, -1.5034306842850724) +description = Watertown city, TN +station = ('kmqy', 0.0055945173178198471) +zone = ('tnz028', 0.0024096535436551117) + +[fips4778560] +centroid = (0.62996243888711956, -1.5321395527912498) +description = Waverly city, TN +station = ('kckv', 0.010487063504441969) +zone = ('tnz024', 0.00094126299914446541) + +[fips4778600] +centroid = (0.61651075000968625, -1.5316985779024408) +description = Waynesboro city, TN +station = ('kmsl', 0.010266243709947913) +zone = ('tnz093', 0.0015108715089475618) + +[fips4779420] +centroid = (0.63810605791046249, -1.5052278498158511) +description = Westmoreland town, TN +station = ('kbwg', 0.0074876738033827096) +zone = ('tnz029', 0.0031845675466303527) + +[fips4779980] +centroid = (0.6300649944339668, -1.5221205600333465) +description = White Bluff town, TN +station = ('kbna', 0.007447221377755788) +zone = ('tnz025', 0.0022240972184021253) + +[fips4780200] +centroid = (0.63642624831858796, -1.5126036635946569) +description = White House city, TN +station = ('kbna', 0.0060765048094453249) +zone = ('tnz007', 0.0030621768078907563) + +[fips4780360] +centroid = (0.63012005957186723, -1.4536032794698863) +description = White Pine town, TN +station = ('k0vg', 0.0096577508860557146) +zone = ('tnz039', 0.0020067635835271007) + +[fips4780540] +centroid = (0.61641648477678612, -1.5559528600120454) +description = Whiteville town, TN +station = ('kmkl', 0.0059306593192432972) +zone = ('tnz090', 0.0029553297549048331) + +[fips4780620] +centroid = (0.61422312950580482, -1.4926323147496912) +description = Whitwell city, TN +station = ('kcha', 0.0053647010307964265) +zone = ('tnz098', 0.0018066060787021816) + +[fips4780740] +centroid = (0.62482541129972458, -1.4637822142004426) +description = Wildwood CDP, TN +station = ('ktys', 0.0016510417109671072) +zone = ('tnz071', 0.0018425154994841735) + +[fips4780760] +centroid = (0.61240514219705, -1.4808719895437805) +description = Wildwood Lake CDP, TN +station = ('kcha', 0.0051232265518510543) +zone = ('tnz100', 0.0011621007554615821) + +[fips4781020] +centroid = (0.61362704720637118, -1.5598958205916884) +description = Williston city, TN +station = ('kolv', 0.0066597100915695333) +zone = ('tnz089', 0.00087681232032827848) + +[fips4781080] +centroid = (0.61419091072781307, -1.5028656513930321) +description = Winchester city, TN +station = ('kbgf', 0.00063665741373969734) +zone = ('tnz097', 0.00066105086000988584) + +[fips4781280] +centroid = (0.63821667687845385, -1.4738063556796395) +description = Winfield town, TN +station = ('kekq', 0.0076629871297127913) +zone = ('tnz012', 0.0025628870707736784) + +[fips4781560] +centroid = (0.62525841003385196, -1.5022521332543708) +description = Woodbury town, TN +station = ('kmqy', 0.007093024322170613) +zone = ('tnz063', 0.0003192768002339459) + +[fips4781700] +centroid = (0.63663474535103126, -1.5552702617415906) +description = Woodland Mills city, TN +station = ('kdyr', 0.0092615690101202092) +zone = ('kyz001', 0.0017314720114626338) + +[fips4782120] +centroid = (0.62656979807392288, -1.5246090504808398) +description = Wrigley CDP, TN +station = ('kbna', 0.01019284878447419) +zone = ('tnz057', 0.0023877403865298448) + +[fips4782360] +centroid = (0.63000767782133127, -1.5554111272655189) +description = Yorkville city, TN +station = ('kdyr', 0.0043166522562923179) +zone = ('tnz020', 0.0031525668117528389) + +[fips48001] +centroid = (0.55573492970332483, -1.6696124009999305) +description = Anderson County, TX +station = ('kpsn', 0.0012638190461840635) +zone = ('txz148', 0.00050530238225788573) + +[fips4800100] +centroid = (0.55650067545934478, -1.6942627681299827) +description = Abbott city, TX +station = ('kinj', 0.003476012060878466) +zone = ('txz145', 0.0020346489043172591) + +[fips4800160] +centroid = (0.59049473255311868, -1.77755035127405) +description = Abernathy city, TX +station = ('klbb', 0.0029319019581186562) +zone = ('txz035', 0.003903854885548578) + +[fips4800190650] +centroid = (0.55729928576517984, -1.6748054187497294) +description = Cayuga CCD, TX +station = ('kpsn', 0.0045905741324575719) +zone = ('txz147', 0.0048450670413304692) + +[fips4800191205] +centroid = (0.5519294487088614, -1.6670181785063509) +description = Elkhart CCD, TX +station = ('kpsn', 0.0039557022189217958) +zone = ('txz148', 0.003911457019223092) + +[fips4800191390] +centroid = (0.55800738329600641, -1.6677047561275005) +description = Frankston CCD, TX +station = ('kpsn', 0.0040520832449113947) +zone = ('txz148', 0.0031319918725918137) + +[fips4800192615] +centroid = (0.55660227107510341, -1.6720911350569052) +description = Montalba-Tennessee Colony CCD, TX +station = ('kpsn', 0.0024258765414679941) +zone = ('txz148', 0.0026194158318481888) + +[fips4800192945] +centroid = (0.55435838852227681, -1.6686647395759751) +description = Palestine CCD, TX +station = ('kpsn', 0.00149391935323351) +zone = ('txz148', 0.0011131770126793393) + +[fips48003] +centroid = (0.56395529085387786, -1.791409539625239) +description = Andrews County, TX +station = ('ke11', 0.0016652308822341299) +zone = ('txz050', 0.00013155396810086918) + +[fips4800390085] +centroid = (0.56479299653495763, -1.7926368027953636) +description = Andrews North CCD, TX +station = ('ke11', 0.0027168414975623167) +zone = ('txz050', 0.0014422958850754506) + +[fips4800390090] +centroid = (0.56158670452599635, -1.7884182721801234) +description = Andrews South CCD, TX +station = ('ke11', 0.0028425637220750779) +zone = ('txz050', 0.0033539335936256156) + +[fips48005] +centroid = (0.5454494426219344, -1.6512744359887364) +description = Angelina County, TX +station = ('klfk', 0.0020986567016166788) +zone = ('txz165', 5.0948480030486634e-05) + +[fips4800591045] +centroid = (0.54410396830157193, -1.6535048969596149) +description = Diboll CCD, TX +station = ('klfk', 0.0010340149434324272) +zone = ('txz165', 0.002354380689865483) + +[fips4800591855] +centroid = (0.54539699547791198, -1.6500917659809999) +description = Huntington CCD, TX +station = ('klfk', 0.0030965674423566974) +zone = ('txz165', 0.0010272532472451216) + +[fips4800592325] +centroid = (0.54705195158123809, -1.6531963402011547) +description = Lufkin CCD, TX +station = ('klfk', 0.0019748207791930889) +zone = ('txz165', 0.0022520306733842831) + +[fips4800593090] +centroid = (0.5480660227832318, -1.6556969257803646) +description = Pollok CCD, TX +station = ('klfk', 0.0034006514649393767) +zone = ('txz165', 0.0045580754651438323) + +[fips4800594315] +centroid = (0.54347870409704502, -1.646809290350189) +description = Zavalla CCD, TX +station = ('klfk', 0.0061199171217303974) +zone = ('txz165', 0.0043307536596453788) + +[fips48007] +centroid = (0.49051125997130335, -1.692585105293088) +description = Aransas County, TX +station = ('krkp', 0.0011672525087265398) +zone = ('txz245', 0.00062579596929656441) + +[fips4800791420] +centroid = (0.49051125997130335, -1.692585105293088) +description = Fulton CCD, TX +station = ('krkp', 0.0011672525087265398) +zone = ('txz245', 0.00062579596929656441) + +[fips4800793295] +centroid = (0.48851427169446399, -1.6951518388509486) +description = Rockport CCD, TX +station = ('ktfp', 0.0016791838943511102) +zone = ('txz245', 0.0032299889228324468) + +[fips48009] +centroid = (0.58671520460463233, -1.722417738944747) +description = Archer County, TX +station = ('ksps', 0.0069578471376526745) +zone = ('txz089', 1.8635419831915899e-05) + +[fips4800990130] +centroid = (0.58511554053200954, -1.7206386201184338) +description = Archer City CCD, TX +station = ('krph', 0.0072502864466332051) +zone = ('txz089', 0.0021723896786291427) + +[fips4800991815] +centroid = (0.58765216716027302, -1.7234542027210435) +description = Holliday CCD, TX +station = ('ksps', 0.0065343519155027707) +zone = ('txz089', 0.0012824956746435802) + +[fips4801000] +centroid = (0.56643812643459501, -1.7407590549881049) +description = Abilene city, TX +station = ('kabi', 0.001043209924119498) +zone = ('txz127', 0.0034854926977329909) + +[fips4801060] +centroid = (0.45751046975483944, -1.717595743287337) +description = Abram CDP, TX +station = ('kmfe', 0.0025752120059860132) +zone = ('txz253', 0.004814644991943731) + +[fips48011] +centroid = (0.61024004380665853, -1.7690070169454153) +description = Armstrong County, TX +station = ('kama', 0.0067716741987076398) +zone = ('txz018', 1.6666254348875948e-05) + +[fips4801108] +centroid = (0.56766943876858444, -1.7752764316047966) +description = Ackerly city, TX +station = ('kbpg', 0.0063882764830243202) +zone = ('txz046', 0.0051004796059723519) + +[fips4801190740] +centroid = (0.61254284867503228, -1.7693053460744588) +description = Claude North CCD, TX +station = ('kama', 0.0053266684897301173) +zone = ('txz018', 0.0023020800447582702) + +[fips4801190745] +centroid = (0.60888952548475783, -1.7691957743040185) +description = Claude South CCD, TX +station = ('kama', 0.0076184893231639192) +zone = ('txz018', 0.001370669185008469) + +[fips4801240] +centroid = (0.57523448114489129, -1.6901242259543612) +description = Addison town, TX +station = ('kads', 0.00015210519697054652) +zone = ('txz119', 0.0034596195631225956) + +[fips48013] +centroid = (0.50430060024582746, -1.7196412691706744) +description = Atascosa County, TX +station = ('kpez', 0.0009802297548353457) +zone = ('txz220', 6.2915077817756176e-05) + +[fips4801324] +centroid = (0.61564951729028961, -1.7918814941082708) +description = Adrian city, TX +station = ('khrx', 0.0086861689819082953) +zone = ('txz011', 0.002461165927928814) + +[fips4801390] +centroid = (0.55248140908480459, -1.8524384152198472) +description = Agua Dulce CDP, TX +station = ('kelp', 0.0046213132251329845) +zone = ('txz419', 0.0037641540895948771) + +[fips4801390595] +centroid = (0.50242306230299461, -1.7149201011841519) +description = Campbellton CCD, TX +station = ('kpez', 0.00491893268839802) +zone = ('txz220', 0.0045122888187197271) + +[fips4801390695] +centroid = (0.50320409714326209, -1.7229809392410729) +description = Charlotte CCD, TX +station = ('kpez', 0.0036846700102139075) +zone = ('txz220', 0.0031062991416421853) + +[fips4801391955] +centroid = (0.50273465593435307, -1.7195476148030122) +description = Jourdanton CCD, TX +station = ('kpez', 0.0025385286577238246) +zone = ('txz220', 0.0015051862581071148) + +[fips4801393070] +centroid = (0.50590337100451888, -1.7176945114697073) +description = Pleasanton CCD, TX +station = ('kpez', 0.0016994896953187099) +zone = ('txz220', 0.0023794173531244611) + +[fips4801393120] +centroid = (0.50801167638105049, -1.7220941549014273) +description = Poteet CCD, TX +station = ('kpez', 0.0035570822757675573) +zone = ('txz220', 0.0043431854358828527) + +[fips4801396] +centroid = (0.48490011369260422, -1.7088492526337702) +description = Agua Dulce city, TX +station = ('kali', 0.0018614492477749872) +zone = ('txz241', 0.0029281680569278627) + +[fips4801420] +centroid = (0.47912127617937339, -1.7295031822958982) +description = Aguilares CDP, TX +station = ('klrd', 0.0059214232058728234) +zone = ('txz239', 0.0065395415456983956) + +[fips48015] +centroid = (0.52171209213018555, -1.6802314379546692) +description = Austin County, TX +station = ('ktme', 0.0057829492967170545) +zone = ('txz211', 0.00014613295445757167) + +[fips4801500] +centroid = (0.46091937703666469, -1.725025749539417) +description = Airport Heights CDP, TX +station = ('kmfe', 0.0099875234781062524) +zone = ('txz252', 0.0030858819097907952) + +[fips4801514] +centroid = (0.47506095966082629, -1.7121347127776019) +description = Airport Road Addition CDP, TX +station = ('kbks', 0.00041700208219399291) +zone = ('txz250', 0.00376912202391121) + +[fips4801576] +centroid = (0.45692311410166581, -1.712486379168586) +description = Alamo city, TX +station = ('kmfe', 0.0020646109037826474) +zone = ('txz253', 0.0039135818803563063) + +[fips4801590250] +centroid = (0.52337155118298173, -1.6796824097318697) +description = Bellville CCD, TX +station = ('k11r', 0.0045349493360874338) +zone = ('txz211', 0.0018433907862230885) + +[fips4801591873] +centroid = (0.52291544428955805, -1.683318070190114) +description = Industry CCD, TX +station = ('k11r', 0.0046360980148936453) +zone = ('txz211', 0.0028632133581759306) + +[fips4801593490] +centroid = (0.5199452255152216, -1.6791025066346021) +description = Sealy CCD, TX +station = ('ktme', 0.0046389829360472231) +zone = ('txz211', 0.0020079961384035575) + +[fips4801594070] +centroid = (0.51769455363160477, -1.6773448379047962) +description = Wallis CCD, TX +station = ('ktme', 0.0040409971739142521) +zone = ('txz211', 0.0047272380075621713) + +[fips4801600] +centroid = (0.51457517901939287, -1.718580423144727) +description = Alamo Heights city, TX +station = ('ksat', 0.00087879829823320839) +zone = ('txz205', 0.00099302554217682235) + +[fips4801636] +centroid = (0.57223478375948866, -1.6691007053698306) +description = Alba town, TX +station = ('kjdd', 0.0021435268152824481) +zone = ('txz123', 0.0027759085368827124) + +[fips4801648] +centroid = (0.5711986341424572, -1.7330362523007103) +description = Albany city, TX +station = ('kbkd', 0.0059577964377111187) +zone = ('txz114', 0.00087138910507925549) + +[fips4801696] +centroid = (0.52208794878460252, -1.6646497318048097) +description = Aldine CDP, TX +station = ('kiah', 0.0015195263070013093) +zone = ('txz213', 0.0010053539780369432) + +[fips48017] +centroid = (0.59459040944231112, -1.7947280912116883) +description = Bailey County, TX +station = ('kcvn', 0.0073541969415285985) +zone = ('txz027', 1.8816078057608517e-05) + +[fips4801744] +centroid = (0.57067669342964822, -1.70356320883484) +description = Aledo city, TX +station = ('knfw', 0.0026028823186413719) +zone = ('txz117', 0.0032281117536591937) + +[fips4801792685] +centroid = (0.59709633572903209, -1.7947752325547848) +description = Muleshoe CCD, TX +station = ('kcvn', 0.0052971644137471954) +zone = ('txz027', 0.0024892811864461817) + +[fips4801793670] +centroid = (0.5928773513281862, -1.7945644840476065) +description = South Sand Hills CCD, TX +station = ('kcvn', 0.0089395376443824458) +zone = ('txz027', 0.0017348528100060983) + +[fips4801816] +centroid = (0.4864956064283148, -1.7100707911239483) +description = Alfred CDP, TX +station = ('kali', 0.0025225361386779139) +zone = ('txz241', 0.0030240229213813327) + +[fips4801852] +centroid = (0.48442688511921844, -1.7115713030417654) +description = Alice city, TX +station = ('kali', 0.00085295567926303001) +zone = ('txz241', 0.00057140116968004337) + +[fips4801858] +centroid = (0.48366375735707645, -1.7123071513076988) +description = Alice Acres CDP, TX +station = ('kali', 0.0014594603070732617) +zone = ('txz241', 0.00043199743676820769) + +[fips48019] +centroid = (0.51933577399371766, -1.7324257186750702) +description = Bandera County, TX +station = ('kerv', 0.0045560090479077782) +zone = ('txz187', 0.00026410170089331418) + +[fips4801924] +centroid = (0.57783006499528722, -1.6872913994987417) +description = Allen city, TX +station = ('ktki', 0.0018831626545447158) +zone = ('txz104', 0.0020521804977722121) + +[fips4801990195] +centroid = (0.51846171310431888, -1.7283016801855329) +description = Bandera CCD, TX +station = ('kerv', 0.0046418685787482667) +zone = ('txz187', 0.0034405710690483303) + +[fips4801992500] +centroid = (0.51940590132306275, -1.734724596552627) +description = Medina CCD, TX +station = ('kerv', 0.0059095732168693129) +zone = ('txz187', 0.0022245729354446113) + +[fips4802044] +centroid = (0.56332644872438442, -1.6849964137054168) +description = Alma town, TX +station = ('kcrs', 0.0051090712216624685) +zone = ('txz134', 0.003915238388300931) + +[fips48021] +centroid = (0.52539869874929557, -1.6984123407864766) +description = Bastrop County, TX +station = ('kgyb', 0.0051400430163584931) +zone = ('txz193', 9.0058629075366299e-06) + +[fips4802104] +centroid = (0.52995013346606135, -1.8092860744887909) +description = Alpine city, TX +station = ('ke38', 0.00045369755547691753) +zone = ('txz074', 0.0068828253524374381) + +[fips4802188] +centroid = (0.55241384738945987, -1.6592982207056373) +description = Alto town, TX +station = ('kjso', 0.0043844659024972052) +zone = ('txz149', 0.0035361491837602507) + +[fips4802190210] +centroid = (0.52666444642942689, -1.6968116120630101) +description = Bastrop CCD, TX +station = ('kgyb', 0.0036252185953577977) +zone = ('txz193', 0.0018728984415743749) + +[fips4802190655] +centroid = (0.52448938220900654, -1.7008175092154798) +description = Cedar Creek-Red Rock CCD, TX +station = ('kaus', 0.004216279688209445) +zone = ('txz193', 0.0022712613027942798) + +[fips4802191200] +centroid = (0.52875631080440466, -1.6990422126602289) +description = Elgin CCD, TX +station = ('kedc', 0.003809435171575626) +zone = ('txz193', 0.0033927446608045288) + +[fips4802193600] +centroid = (0.52313565248128213, -1.6969674699652131) +description = Smithville CCD, TX +station = ('k3t5', 0.0043723814743595255) +zone = ('txz193', 0.0025946821379580712) + +[fips4802194] +centroid = (0.45929695387059583, -1.7216159695929656) +description = Alto Bonito Heights CDP, TX +station = ('kmfe', 0.0065472798446698484) +zone = ('txz252', 0.004558945260951696) + +[fips4802212] +centroid = (0.45882473758817621, -1.7158433629051644) +description = Alton city, TX +station = ('kmfe', 0.002069491527732907) +zone = ('txz253', 0.0027676335555144801) + +[fips4802260] +centroid = (0.56559338707662976, -1.6967394252451475) +description = Alvarado city, TX +station = ('kfws', 0.0030628768600787417) +zone = ('txz133', 0.0022649201288962146) + +[fips4802272] +centroid = (0.51360201833506591, -1.6619962902897103) +description = Alvin city, TX +station = ('klvj', 0.0016052244332724669) +zone = ('txz238', 0.0040022042829615202) + +[fips4802284] +centroid = (0.58218892008238787, -1.7051173198139857) +description = Alvord town, TX +station = ('klud', 0.0024573985677079852) +zone = ('txz102', 0.002535897423271974) + +[fips4802286] +centroid = (0.459776709975384, -1.723325048356396) +description = Amada Acres CDP, TX +station = ('kmfe', 0.0081504488260615467) +zone = ('txz252', 0.0038194144717534273) + +[fips4802290] +centroid = (0.48679208550835107, -1.7123430003705349) +description = Amargosa CDP, TX +station = ('kali', 0.0031084074030845277) +zone = ('txz241', 0.0028115405090497021) + +[fips48023] +centroid = (0.58674778990176713, -1.7313182374515095) +description = Baylor County, TX +station = ('kf05', 0.010674408390971288) +zone = ('txz088', 0.00023829561943187555) + +[fips4802393525] +centroid = (0.58614657633433265, -1.7322358966656233) +description = Seymour CCD, TX +station = ('kf05', 0.011212754258686772) +zone = ('txz088', 0.00077831863680822525) + +[fips4802393535] +centroid = (0.58828851420555017, -1.7293837843217692) +description = Seymour Rural CCD, TX +station = ('kf05', 0.0094992338987028441) +zone = ('txz088', 0.0024236513920888941) + +[fips48025] +centroid = (0.49595410415023272, -1.7059299451137144) +description = Bee County, TX +station = ('kbea', 0.0012198029847991843) +zone = ('txz232', 3.1397934747116622e-05) + +[fips4802590240] +centroid = (0.49614549695600646, -1.7049203070480206) +description = Beeville CCD, TX +station = ('kbea', 0.001995284535682608) +zone = ('txz232', 0.00088285637199788942) + +[fips4802593025] +centroid = (0.49922443228944957, -1.7086809505340002) +description = Pettus-Pawnee CCD, TX +station = ('knog', 0.0033028330856849464) +zone = ('txz232', 0.0040609785091144483) + +[fips4802593585] +centroid = (0.49247697194794698, -1.7048337038105368) +description = Skidmore CCD, TX +station = ('kbea', 0.0030185639676915074) +zone = ('txz232', 0.0036252242001073806) + +[fips48027] +centroid = (0.54178702626625697, -1.7013804826190033) +description = Bell County, TX +station = ('ktpl', 0.00224606683688252) +zone = ('txz158', 9.4976414057728622e-05) + +[fips4802790255] +centroid = (0.5418919205543018, -1.7011775008269963) +description = Belton CCD, TX +station = ('ktpl', 0.0020652624653527186) +zone = ('txz158', 0.00021693706782216873) + +[fips4802791110] +centroid = (0.54338990174470347, -1.69699972364979) +description = East Bell CCD, TX +station = ('ktpl', 0.0025411897117607225) +zone = ('txz158', 0.0040598758183744013) + +[fips4802791365] +centroid = (0.54345376334203399, -1.7046464474350902) +description = Fort Hood CCD, TX +station = ('khlr', 0.00046838708127285039) +zone = ('txz158', 0.0033432564410383818) + +[fips4802792030] +centroid = (0.54243873220895167, -1.7043968828053475) +description = Killeen CCD, TX +station = ('kile', 0.00043262443729101953) +zone = ('txz158', 0.0027383336546897086) + +[fips4802792835] +centroid = (0.5448043689303973, -1.701105017303161) +description = Northwest Bell CCD, TX +station = ('ktpl', 0.0015039648884487618) +zone = ('txz158', 0.0030995550269482417) + +[fips4802793310] +centroid = (0.53938489471015216, -1.6981553759607055) +description = Rogers CCD, TX +station = ('ktpl', 0.0045529624335964095) +zone = ('txz158', 0.0035704838306164135) + +[fips4802793630] +centroid = (0.53955368550211247, -1.7021811524133557) +description = South Bell CCD, TX +station = ('kile', 0.0037594896405192773) +zone = ('txz158', 0.0022805140526413613) + +[fips4802793680] +centroid = (0.54105716447965801, -1.7068516709449848) +description = Southwest Bell CCD, TX +station = ('kgrk', 0.0012013338894059165) +zone = ('txz158', 0.0047891562429225069) + +[fips4802793855] +centroid = (0.54246030447850635, -1.6990542554320676) +description = Temple CCD, TX +station = ('ktpl', 0.0014326601283968603) +zone = ('txz158', 0.0020773067517766935) + +[fips48029] +centroid = (0.51397626928657103, -1.7195009446988139) +description = Bexar County, TX +station = ('kskf', 0.0014910493044645778) +zone = ('txz205', 8.3758179776001235e-06) + +[fips4802993407] +centroid = (0.51338762208975086, -1.7193480538563393) +description = San Antonio Central CCD, TX +station = ('kskf', 0.0012252364282207646) +zone = ('txz205', 0.00061001798436961547) + +[fips4802993408] +centroid = (0.51251178096451511, -1.71574525794791) +description = San Antonio East CCD, TX +station = ('kssf', 0.0025204527180716987) +zone = ('txz205', 0.0035842307859289485) + +[fips4802993409] +centroid = (0.51739037764956719, -1.7191604833216274) +description = San Antonio North CCD, TX +station = ('ksat', 0.002003943223652343) +zone = ('txz205', 0.0034191496429175116) + +[fips4802993411] +centroid = (0.51517953417948104, -1.7161769302318057) +description = San Antonio Northeast CCD, TX +station = ('krnd', 0.0007556538110197879) +zone = ('txz205', 0.0031274286468672167) + +[fips4802993412] +centroid = (0.5166246668001323, -1.7225864424702446) +description = San Antonio Northwest CCD, TX +station = ('k5c1', 0.002089833839129627) +zone = ('txz205', 0.0037686644350539218) + +[fips4802993413] +centroid = (0.51022016365664657, -1.7196935417817716) +description = San Antonio South CCD, TX +station = ('kssf', 0.0020007218176901309) +zone = ('txz205', 0.0037675052658027951) + +[fips4802993414] +centroid = (0.51298834311677222, -1.7233443167913383) +description = San Antonio West CCD, TX +station = ('kcvb', 0.0018992661472096912) +zone = ('txz205', 0.0034961741126547292) + +[fips4803000] +centroid = (0.61431819759016093, -1.7772468908770056) +description = Amarillo city, TX +station = ('kama', 0.0016317443854655621) +zone = ('txz012', 0.0036706818428463559) + +[fips4803008] +centroid = (0.50115118851718876, -1.7424640147745005) +description = Amaya CDP, TX +station = ('kuva', 0.0087930746489101683) +zone = ('txz218', 0.0028973762748413221) + +[fips4803072] +centroid = (0.52438553511851282, -1.6534780887023044) +description = Ames city, TX +station = ('k6r3', 0.0068650454402426082) +zone = ('txz200', 0.0021760203932794592) + +[fips4803084] +centroid = (0.59362107102904604, -1.7874750438924683) +description = Amherst city, TX +station = ('kpvw', 0.010443966549666513) +zone = ('txz028', 0.0013448659311888138) + +[fips4803096] +centroid = (0.51529961283201819, -1.76545377093445) +description = Amistad CDP, TX +station = ('kdrt', 0.0045271870292916796) +zone = ('txz183', 0.00643169302485656) + +[fips48031] +centroid = (0.52823445735805841, -1.7174035825366925) +description = Blanco County, TX +station = ('kdzb', 0.0046536410198122439) +zone = ('txz190', 1.4129569887065924e-05) + +[fips4803126] +centroid = (0.46051526350165789, -1.7264648782274414) +description = Anacua CDP, TX +station = ('kmfe', 0.011050303844660074) +zone = ('txz252', 0.0041792241187495636) + +[fips4803144] +centroid = (0.51949599521905077, -1.6524546450822273) +description = Anahuac city, TX +station = ('kefd', 0.0079396258514740949) +zone = ('txz214', 0.001163990529797805) + +[fips4803190330] +centroid = (0.52540074078452048, -1.7173879094800095) +description = Blanco CCD, TX +station = ('kdzb', 0.0074715150808771667) +zone = ('txz190', 0.0028476127166338358) + +[fips4803191950] +centroid = (0.5294426964393365, -1.7173410822961783) +description = Johnson City CCD, TX +station = ('kdzb', 0.0034500772537475913) +zone = ('txz190', 0.0011954646982120962) + +[fips4803192] +centroid = (0.53209425299884383, -1.6753471514962557) +description = Anderson city, TX +station = ('kcll', 0.0059033094928620548) +zone = ('txz198', 0.00099477698949572077) + +[fips4803216] +centroid = (0.56410081640690923, -1.7898410471330566) +description = Andrews city, TX +station = ('ke11', 0.00035759799030813869) +zone = ('txz050', 0.0013185131740725531) + +[fips4803264] +centroid = (0.5090984929062673, -1.6655497806467707) +description = Angleton city, TX +station = ('klbx', 0.0010819745494469585) +zone = ('txz237', 0.0005543950202525819) + +[fips4803288] +centroid = (0.55849607548656488, -1.6829806107792407) +description = Angus city, TX +station = ('kcrs', 0.00072179389069289832) +zone = ('txz146', 0.0010611343145375991) + +[fips48033] +centroid = (0.57149169237715947, -1.7703403961340614) +description = Borden County, TX +station = ('ksnk', 0.0071438757095211953) +zone = ('txz047', 2.0562997753947863e-05) + +[fips4803300] +centroid = (0.58202274728430559, -1.6851753623136239) +description = Anna city, TX +station = ('ktki', 0.0028973627728295847) +zone = ('txz104', 0.0028000750307580445) + +[fips4803336] +centroid = (0.57073933329650228, -1.7046520848485742) +description = Annetta town, TX +station = ('knfw', 0.0034188035297446802) +zone = ('txz117', 0.0023999879056460587) + +[fips4803340] +centroid = (0.57107674034749778, -1.7047838746603921) +description = Annetta North town, TX +station = ('knfw', 0.0034281344808290803) +zone = ('txz117', 0.0021309215962290089) + +[fips4803342] +centroid = (0.57024694100792961, -1.7037319123603376) +description = Annetta South town, TX +station = ('knfw', 0.0029453751779818871) +zone = ('txz117', 0.003317493443250961) + +[fips4803360] +centroid = (0.58611317073244951, -1.656545731755487) +description = Annona town, TX +station = ('klbr', 0.0021933956551958849) +zone = ('txz096', 0.0021084704712239378) + +[fips4803372] +centroid = (0.57167406183070035, -1.7435171638984464) +description = Anson city, TX +station = ('kdys', 0.0058667525412603163) +zone = ('txz113', 0.00036170923906475355) + +[fips4803391425] +centroid = (0.57414269043130617, -1.7714785776991644) +description = Gail North CCD, TX +station = ('ksnk', 0.0087829291679436886) +zone = ('txz047', 0.002830903104157467) + +[fips4803391430] +centroid = (0.57034375442153773, -1.7701839099133276) +description = Gail South CCD, TX +station = ('ksnk', 0.0069646566495621901) +zone = ('txz047', 0.0011471097455383434) + +[fips4803432] +centroid = (0.55822081961023284, -1.8604515359750182) +description = Anthony town, TX +station = ('k5t6', 0.0024115461881853658) +zone = ('txz418', 0.0014799339140382881) + +[fips48035] +centroid = (0.55677336570167635, -1.704098152250576) +description = Bosque County, TX +station = ('kact', 0.0081602085129467549) +zone = ('txz144', 4.9778171491844844e-05) + +[fips4803540] +centroid = (0.59011884099211653, -1.7830662898420528) +description = Anton city, TX +station = ('klbb', 0.0056142650052058074) +zone = ('txz034', 0.0044215287206957584) + +[fips4803564] +centroid = (0.55356656754723199, -1.6512170844695158) +description = Appleby city, TX +station = ('koch', 0.0028394519373328704) +zone = ('txz152', 0.0017673013760520189) + +[fips4803588] +centroid = (0.55595532988126661, -1.6968028156035799) +description = Aquilla city, TX +station = ('kcnw', 0.0043438504108699021) +zone = ('txz145', 0.0027150242636570345) + +[fips4803590760] +centroid = (0.5552233736995652, -1.7014685693863514) +description = Clifton CCD, TX +station = ('kact', 0.005458363337559927) +zone = ('txz144', 0.0026745371863668749) + +[fips4803590890] +centroid = (0.55457178992991818, -1.7061642555657945) +description = Cranfills Gap CCD, TX +station = ('kmnz', 0.0061275130575418942) +zone = ('txz144', 0.0028417934061503924) + +[fips4803591890] +centroid = (0.55753830860624043, -1.7083535267663261) +description = Iredell CCD, TX +station = ('kmnz', 0.0062317385767339346) +zone = ('txz144', 0.0037415298953397337) + +[fips4803592530] +centroid = (0.55859528000124825, -1.7040744855859191) +description = Meridian CCD, TX +station = ('kcpt', 0.0067786876543867013) +zone = ('txz144', 0.0018285014612934977) + +[fips4803593990] +centroid = (0.55261681172817423, -1.7024016573110525) +description = Valley Mills CCD, TX +station = ('kpwg', 0.0045674377367947491) +zone = ('txz144', 0.0043776424947143911) + +[fips4803600] +centroid = (0.48677599357264767, -1.6950369787328747) +description = Aransas Pass city, TX +station = ('ktfp', 0.0013608291683469529) +zone = ('txz245', 0.0046844090535820759) + +[fips4803696] +centroid = (0.58632510606351906, -1.7213397014256675) +description = Archer City city, TX +station = ('ksps', 0.0070355422264936325) +zone = ('txz089', 0.00097791429284393083) + +[fips48037] +centroid = (0.58374371173994188, -1.6479813313027809) +description = Bowie County, TX +station = ('ktxk', 0.0063940364064452712) +zone = ('txz097', 1.3695018374406511e-05) + +[fips4803708] +centroid = (0.51490906050529939, -1.6662025163337242) +description = Arcola city, TX +station = ('kaxh', 0.00024856629910008956) +zone = ('txz227', 0.0046432586502038993) + +[fips4803768] +centroid = (0.57779313382831499, -1.6960938105015424) +description = Argyle city, TX +station = ('kdto', 0.001684319839490266) +zone = ('txz103', 0.0019533733310698452) + +[fips4803790950] +centroid = (0.58209957667797829, -1.65102823984445) +description = Dalby Springs-Simms CCD, TX +station = ('kosa', 0.0069544844939177647) +zone = ('txz097', 0.0030162432506923428) + +[fips4803790980] +centroid = (0.58558266045301322, -1.6514804895602266) +description = De Kalb CCD, TX +station = ('k4o4', 0.0071240256187097978) +zone = ('txz097', 0.0034487030440395316) + +[fips4803791830] +centroid = (0.58427935328737901, -1.645676344772842) +description = Hooks CCD, TX +station = ('ktxk', 0.0044939293626688514) +zone = ('txz097', 0.0020065999866110832) + +[fips4803792476] +centroid = (0.58188634980326215, -1.6455316918844367) +description = Maud-Redwater CCD, TX +station = ('ktxk', 0.0047596065902458405) +zone = ('txz097', 0.002760818999514145) + +[fips4803792725] +centroid = (0.58430331665800883, -1.6485223310110215) +description = New Boston CCD, TX +station = ('ktxk', 0.0068613686223145363) +zone = ('txz097', 0.00072309156640795855) + +[fips4803793875] +centroid = (0.58418910231175836, -1.6427555711762145) +description = Texarkana CCD, TX +station = ('ktxk', 0.0020676302875058078) +zone = ('arz059', 0.0043110615716251315) + +[fips48039] +centroid = (0.50907445972246745, -1.6656488106285288) +description = Brazoria County, TX +station = ('klbx', 0.0010174803563941608) +zone = ('txz237', 0.00051488463106971456) + +[fips4803990055] +centroid = (0.51226209416172486, -1.6626913153044396) +description = Alvin-Pearland CCD, TX +station = ('klvj', 0.0029101038625465063) +zone = ('txz237', 0.0040094361221973823) + +[fips4803990094] +centroid = (0.51033762431530583, -1.666595285228593) +description = Angleton CCD, TX +station = ('klbx', 0.0021823262432027887) +zone = ('txz237', 0.00099643717442649015) + +[fips4803990410] +centroid = (0.50746383498214198, -1.6692932849994959) +description = Brazoria-West Columbia CCD, TX +station = ('klbx', 0.0027901646124959541) +zone = ('txz237', 0.0035111709799451715) + +[fips4803990415] +centroid = (0.506210147527142, -1.6630681667965301) +description = Brazosport CCD, TX +station = ('klbx', 0.003379051187529038) +zone = ('txz237', 0.0041603927400756099) + +[fips4804000] +centroid = (0.57073502233324991, -1.6951456429321039) +description = Arlington city, TX +station = ('kgky', 0.00069609645846085858) +zone = ('txz118', 0.0027396653466193049) + +[fips48041] +centroid = (0.53506078912845867, -1.6807937655863696) +description = Brazos County, TX +station = ('kcll', 0.0016040031892149483) +zone = ('txz196', 7.6369843837691183e-05) + +[fips4804156] +centroid = (0.56244983965427775, -1.6589797504770258) +description = Arp city, TX +station = ('krfi', 0.0033472371795890449) +zone = ('txz136', 0.0041205600412164379) + +[fips4804174] +centroid = (0.45702559983534291, -1.7036477525838063) +description = Arroyo Colorado Estates CDP, TX +station = ('khrl', 0.00080662734968624868) +zone = ('txz255', 0.0012506278554569952) + +[fips4804176] +centroid = (0.45738264184042343, -1.7017019897205132) +description = Arroyo Gardens CDP, TX +station = ('khrl', 0.0023506844111336766) +zone = ('txz255', 0.0019435353388890294) + +[fips4804190495] +centroid = (0.53487152562437235, -1.6815723395123916) +description = Bryan-College Station CCD, TX +station = ('kcll', 0.0011309325615108043) +zone = ('txz196', 0.0007217709284488684) + +[fips4804192790] +centroid = (0.53734640250370036, -1.6804305276624445) +description = Northeast Brazos CCD, TX +station = ('kcll', 0.003788314035762845) +zone = ('txz196', 0.0022310261597701842) + +[fips4804193635] +centroid = (0.53250686628730781, -1.6798473258928903) +description = South Brazos CCD, TX +station = ('kcll', 0.0021893730989430726) +zone = ('txz196', 0.0027531862117505354) + +[fips4804194150] +centroid = (0.53508302462312907, -1.6837948766884663) +description = West Brazos CCD, TX +station = ('kcll', 0.0020769186119124765) +zone = ('txz196', 0.0025834962096818125) + +[fips48043] +centroid = (0.52026514436711213, -1.8020953528771593) +description = Brewster County, TX +station = ('ke38', 0.011962656738388642) +zone = ('txz081', 0.0014864131882821065) + +[fips4804300] +centroid = (0.4964784185108243, -1.7411460817497346) +description = Asherton city, TX +station = ('kftn', 0.0057590775261003096) +zone = ('txz228', 0.00041594330647300599) + +[fips4804390040] +centroid = (0.5169278479444962, -1.8058687023600934) +description = Alpine CCD, TX +station = ('ke38', 0.013763841340634585) +zone = ('txz081', 0.0042571995681787147) + +[fips4804392390] +centroid = (0.52409795721766173, -1.7979437730920254) +description = Marathon CCD, TX +station = ('ke38', 0.011843047038732991) +zone = ('txz081', 0.0060739765712513275) + +[fips4804408] +centroid = (0.57841796170052895, -1.7492532582982958) +description = Aspermont town, TX +station = ('ksww', 0.012280420235040815) +zone = ('txz044', 0.00078572914898349068) + +[fips4804462] +centroid = (0.52317886683356152, -1.6614584496274156) +description = Atascocita CDP, TX +station = ('kiah', 0.0026354193732985747) +zone = ('txz213', 0.0036381478322852368) + +[fips48045] +centroid = (0.60257794367064832, -1.7663760552710817) +description = Briscoe County, TX +station = ('kpvw', 0.0096509240145306215) +zone = ('txz024', 9.7582128832446747e-05) + +[fips4804504] +centroid = (0.56208070251748088, -1.6726911094405708) +description = Athens city, TX +station = ('ktyr', 0.0069439208604159999) +zone = ('txz135', 0.00026358376179225489) + +[fips4804516] +centroid = (0.57793502909650218, -1.6435348432339374) +description = Atlanta city, TX +station = ('ktxk', 0.0064633898444289607) +zone = ('txz112', 0.0026477931998460315) + +[fips4804593175] +centroid = (0.60091693127481771, -1.7628350265648802) +description = Quitaque CCD, TX +station = ('kpvw', 0.011266992939989761) +zone = ('txz024', 0.0034370582174990619) + +[fips4804593575] +centroid = (0.60264890875803423, -1.767770433717085) +description = Silverton CCD, TX +station = ('kpvw', 0.0088537037843427844) +zone = ('txz024', 0.0011099649322793299) + +[fips4804600] +centroid = (0.58122958240573674, -1.6926656871446528) +description = Aubrey city, TX +station = ('kdto', 0.0036384145819104538) +zone = ('txz103', 0.0026002840342254159) + +[fips4804672] +centroid = (0.57693502524827944, -1.7018638341020504) +description = Aurora city, TX +station = ('kafw', 0.0030950000732528002) +zone = ('txz102', 0.0035030960976000316) + +[fips48047] +centroid = (0.47184965855691191, -1.7141799419549664) +description = Brooks County, TX +station = ('kbks', 0.0033342554677480876) +zone = ('txz250', 7.9639701772448517e-05) + +[fips4804791245] +centroid = (0.47086658440243351, -1.7143048028096539) +description = Encino CCD, TX +station = ('kbks', 0.004279426426097562) +zone = ('txz250', 0.00092565671625154198) + +[fips4804791280] +centroid = (0.47505926669145188, -1.7146659114318916) +description = Falfurrias CCD, TX +station = ('kbks', 0.0019057371692192814) +zone = ('txz250', 0.0032907806405704557) + +[fips48049] +centroid = (0.55438818129260836, -1.7278492559368306) +description = Brown County, TX +station = ('kbwd', 0.00095375877158112687) +zone = ('txz140', 0.00017906207782266914) + +[fips4804990200] +centroid = (0.55484177491190922, -1.7298195406761145) +description = Bangs CCD, TX +station = ('kbwd', 0.0023998732315381266) +zone = ('txz140', 0.0016779131655165179) + +[fips4804990335] +centroid = (0.55408768795529251, -1.7248916035331086) +description = Blanket CCD, TX +station = ('kbwd', 0.0020204437657998227) +zone = ('txz140', 0.0025792622176672234) + +[fips4804990485] +centroid = (0.55160356083092899, -1.7281871691333093) +description = Brownwood CCD, TX +station = ('kbwd', 0.0035567390149884564) +zone = ('txz140', 0.0029746690681274127) + +[fips4804992485] +centroid = (0.55802136338331487, -1.7278611416290368) +description = May CCD, TX +station = ('kbwd', 0.0030936343733224225) +zone = ('txz140', 0.0034552242567256492) + +[fips4805000] +centroid = (0.52896011290116007, -1.7061639937664066) +description = Austin city, TX +station = ('katt', 0.0002307650916257555) +zone = ('txz192', 0.00061885093922489501) + +[fips4805036] +centroid = (0.4955181732629621, -1.690241773879483) +description = Austwell city, TX +station = ('kpkv', 0.0052205661202837945) +zone = ('txz247', 0.003452292794014219) + +[fips4805072] +centroid = (0.58557882072865886, -1.6542245311167973) +description = Avery town, TX +station = ('klbr', 0.004183279952437809) +zone = ('txz096', 0.0041132347628477124) + +[fips4805084] +centroid = (0.57415974229809819, -1.6502591081496809) +description = Avinger town, TX +station = ('kjxi', 0.0067567524014756457) +zone = ('txz126', 0.0033487191863179932) + +[fips48051] +centroid = (0.53221174856408804, -1.6863736181115803) +description = Burleson County, TX +station = ('krwv', 0.0012874973888771122) +zone = ('txz195', 2.5082802012092539e-05) + +[fips4805168] +centroid = (0.57413562184783562, -1.7023807133600288) +description = Azle city, TX +station = ('knfw', 0.0026023566454579537) +zone = ('txz118', 0.0042340406292639705) + +[fips4805180] +centroid = (0.51499712981935508, -1.6578402075551062) +description = Bacliff CDP, TX +station = ('kefd', 0.0031695232603941859) +zone = ('txz238', 0.0020023179435028631) + +[fips4805190570] +centroid = (0.53288691173192959, -1.6887592912128391) +description = Caldwell CCD, TX +station = ('krwv', 0.00087635351425995641) +zone = ('txz195', 0.0021849043037837626) + +[fips4805190825] +centroid = (0.53458380809718109, -1.6864770114164687) +description = Cooks Point CCD, TX +station = ('krwv', 0.0022949928400865772) +zone = ('txz195', 0.0023933544255905046) + +[fips4805192890] +centroid = (0.5316819887762303, -1.6834035564168768) +description = Old River CCD, TX +station = ('kcll', 0.0024584414375347125) +zone = ('txz195', 0.0025940518419179824) + +[fips4805193610] +centroid = (0.52984019517647829, -1.6861359566273364) +description = Somerville CCD, TX +station = ('krwv', 0.0031039269555970367) +zone = ('txz195', 0.0023601224764276617) + +[fips4805264] +centroid = (0.58352678476721165, -1.6783974983365513) +description = Bailey city, TX +station = ('kgvt', 0.0065637260062326192) +zone = ('txz094', 0.0029240085177803577) + +[fips4805288] +centroid = (0.50871452047082866, -1.6667806915550323) +description = Bailey's Prairie village, TX +station = ('klbx', 0.00073105519357511209) +zone = ('txz237', 0.0010248882622097397) + +[fips48053] +centroid = (0.53738017462472643, -1.713934182142993) +description = Burnet County, TX +station = ('kbmq', 0.0010941996420350743) +zone = ('txz172', 0.00028273544940746192) + +[fips4805336] +centroid = (0.56541803384668188, -1.7347873411392363) +description = Baird city, TX +station = ('kabi', 0.0042492714180740725) +zone = ('txz128', 0.0017485696377910114) + +[fips4805372] +centroid = (0.57096584212682611, -1.6863031242630924) +description = Balch Springs city, TX +station = ('khqz', 0.0014116432383724086) +zone = ('txz119', 0.0025202603162990697) + +[fips4805384] +centroid = (0.51469604307009353, -1.7199921676167877) +description = Balcones Heights city, TX +station = ('ksat', 0.0014530804788894737) +zone = ('txz205', 0.00083275174814688186) + +[fips4805390275] +centroid = (0.53666019140169363, -1.7111491253490005) +description = Bertram CCD, TX +station = ('kbmq', 0.0028877668948751149) +zone = ('txz172', 0.0022232641253183351) + +[fips4805390450] +centroid = (0.53991187942449925, -1.7104394395685547) +description = Briggs CCD, TX +station = ('kgrk', 0.0035928811443162578) +zone = ('txz172', 0.0037303730149378356) + +[fips4805390545] +centroid = (0.53825856393067006, -1.7150468469944318) +description = Burnet CCD, TX +station = ('kbmq', 0.0019201302406566731) +zone = ('txz172', 0.0015308198676328066) + +[fips4805392395] +centroid = (0.53339117225941579, -1.7147712944121269) +description = Marble Falls CCD, TX +station = ('kdzb', 0.0017520805168883458) +zone = ('txz172', 0.0040906796569209185) + +[fips4805456] +centroid = (0.55397928555545117, -1.7445587589427443) +description = Ballinger city, TX +station = ('kcom', 0.0084263193710003986) +zone = ('txz066', 0.0016068201213441384) + +[fips4805468] +centroid = (0.54077557305814128, -1.8106721975274322) +description = Balmorhea city, TX +station = ('kpeq', 0.0077720739048925671) +zone = ('txz074', 0.0053138735798456561) + +[fips48055] +centroid = (0.5208136140845514, -1.7039840949839582) +description = Caldwell County, TX +station = ('khyi', 0.0036557954237724948) +zone = ('txz208', 0.00017716456683869832) + +[fips4805520] +centroid = (0.46000824535395357, -1.7235767771944113) +description = B and E CDP, TX +station = ('kmfe', 0.0084425783428031288) +zone = ('txz252', 0.0035957856731239535) + +[fips4805528] +centroid = (0.51880131927017192, -1.7291720584302099) +description = Bandera city, TX +station = ('kerv', 0.0042179164911504592) +zone = ('txz187', 0.0026355648256305357) + +[fips4805552] +centroid = (0.55354749109850776, -1.7301509263411909) +description = Bangs city, TX +station = ('kbwd', 0.0030521523418395764) +zone = ('txz140', 0.0021890497604432815) + +[fips4805576] +centroid = (0.48520182876039647, -1.7068641500491366) +description = Banquete CDP, TX +station = ('krbo', 0.0016773724071950749) +zone = ('txz243', 0.0029290963105060128) + +[fips4805592245] +centroid = (0.52203668846447149, -1.7038496348183845) +description = Lockhart CCD, TX +station = ('khyi', 0.0036631614773023581) +zone = ('txz208', 0.0012803390485215222) + +[fips4805592330] +centroid = (0.51928498491248465, -1.7022623102235732) +description = Luling CCD, TX +station = ('khyi', 0.0055991354171808262) +zone = ('txz208', 0.0019815385783537197) + +[fips4805592440] +centroid = (0.52065997275049825, -1.7067337914073051) +description = Martindale CCD, TX +station = ('khyi', 0.00158008306608029) +zone = ('txz208', 0.0025551378378979618) + +[fips4805612] +centroid = (0.56316671619124192, -1.6876555275405851) +description = Bardwell city, TX +station = ('kjwy', 0.0045888933628997807) +zone = ('txz134', 0.002036087643630306) + +[fips4805690] +centroid = (0.46063675587088926, -1.7261045375500745) +description = Barrera CDP, TX +station = ('kmfe', 0.010784880893302342) +zone = ('txz252', 0.0038747936377298607) + +[fips4805696] +centroid = (0.52124991149096489, -1.6589799075566587) +description = Barrett CDP, TX +station = ('kefd', 0.004944788753884404) +zone = ('txz213', 0.0051444745712397886) + +[fips48057] +centroid = (0.49646529363484931, -1.6856965874414391) +description = Calhoun County, TX +station = ('kpkv', 0.0039362347197757479) +zone = ('txz247', 0.0012896592212840554) + +[fips4805708] +centroid = (0.56025831697901096, -1.6866954742789406) +description = Barry city, TX +station = ('kcrs', 0.0040756929903432897) +zone = ('txz146', 0.0026557120914953189) + +[fips4805720] +centroid = (0.54910754801435946, -1.8045919591056747) +description = Barstow city, TX +station = ('kpeq', 0.0022029533055797435) +zone = ('txz067', 0.0044420148152854461) + +[fips4805732] +centroid = (0.5374715775176534, -1.7005143804309937) +description = Bartlett city, TX +station = ('kgtu', 0.004239096830811721) +zone = ('txz173', 0.0035989142545615545) + +[fips4805750] +centroid = (0.52852069135538549, -1.7081108736404214) +description = Barton Creek CDP, TX +station = ('katt', 0.0016360939690529806) +zone = ('txz192', 0.0015846629833054762) + +[fips4805768] +centroid = (0.57745197431942763, -1.6955599142833573) +description = Bartonville town, TX +station = ('kdto', 0.0021348039878835625) +zone = ('txz103', 0.002122348463912222) + +[fips4805791975] +centroid = (0.49941772750410801, -1.6884343283594101) +description = Kamey-Sixmile CCD, TX +station = ('kpkv', 0.0011358609887366122) +zone = ('txz247', 0.0025666161610756692) + +[fips4805793085] +centroid = (0.49971120461783086, -1.6833474440814251) +description = Point Comfort CCD, TX +station = ('kpsx', 0.0033876052179073156) +zone = ('txz247', 0.0039348284043781738) + +[fips4805793105] +centroid = (0.49851396111084029, -1.686160548316497) +description = Port Lavaca CCD, TX +station = ('kpkv', 0.0019291447513052106) +zone = ('txz247', 0.0013933578568020521) + +[fips4805793480] +centroid = (0.49462768882530206, -1.6865247112649255) +description = Seadrift CCD, TX +station = ('kpkv', 0.0055312260670213062) +zone = ('txz247', 0.0026480150608433886) + +[fips4805864] +centroid = (0.52553849962238031, -1.6984791519902429) +description = Bastrop city, TX +station = ('kgyb', 0.0051669564599089784) +zone = ('txz193', 0.00014227427627691721) + +[fips48059] +centroid = (0.56362179334040674, -1.7343729301616426) +description = Callahan County, TX +station = ('kabi', 0.0050678887595331521) +zone = ('txz128', 8.1529027355766468e-05) + +[fips4805924] +centroid = (0.50531512523342681, -1.7388595084434042) +description = Batesville CDP, TX +station = ('kuva', 0.0048383268936624717) +zone = ('txz218', 0.0025076405363329557) + +[fips4805984] +centroid = (0.50582364436428784, -1.6748547243010983) +description = Bay City city, TX +station = ('kbyy', 0.0015153970156495393) +zone = ('txz236', 0.0020460664417384367) + +[fips4805990180] +centroid = (0.56527050116501076, -1.7328258877659672) +description = Baird CCD, TX +station = ('kabi', 0.0059120856135240051) +zone = ('txz128', 0.0020541670971582133) + +[fips4805990765] +centroid = (0.56354445780125095, -1.7371942898040764) +description = Clyde CCD, TX +station = ('kabi', 0.0031370372316974196) +zone = ('txz128', 0.0023716946656747151) + +[fips4805990910] +centroid = (0.56161805063936232, -1.7322821129842161) +description = Cross Plains CCD, TX +station = ('kcom', 0.0062960190502798262) +zone = ('txz128', 0.0027445894881542327) + +[fips4806060] +centroid = (0.51182775152407345, -1.6570017688357406) +description = Bayou Vista city, TX +station = ('kgls', 0.001508662125437335) +zone = ('txz238', 0.0012583043425800024) + +[fips48061] +centroid = (0.45558195074455582, -1.7013287685132668) +description = Cameron County, TX +station = ('kpil', 0.0025385489275672377) +zone = ('txz255', 0.0016012080546561932) + +[fips4806104] +centroid = (0.49036850949178279, -1.6966498025880579) +description = Bayside town, TX +station = ('krkp', 0.0024869587566366514) +zone = ('txz245', 0.0033717232921771129) + +[fips4806128] +centroid = (0.51935717173034712, -1.6575034986358115) +description = Baytown city, TX +station = ('kefd', 0.0040725230964983906) +zone = ('txz214', 0.0054637000750146639) + +[fips4806140] +centroid = (0.45613663383413211, -1.6999140569814777) +description = Bayview town, TX +station = ('kpil', 0.0011551900772677286) +zone = ('txz257', 0.0014250988402832248) + +[fips4806190480] +centroid = (0.45318833639520073, -1.7019151816886442) +description = Brownsville CCD, TX +station = ('kbro', 0.0018929640528188407) +zone = ('txz255', 0.002891236367749819) + +[fips4806191115] +centroid = (0.45642297255121428, -1.6981626714369789) +description = East Cameron CCD, TX +station = ('kpil', 0.00062280613731720042) +zone = ('txz257', 0.00038770996119465151) + +[fips4806191720] +centroid = (0.45708776846329896, -1.7057242406080741) +description = Harlingen-San Benito CCD, TX +station = ('khrl', 0.0013530728110856321) +zone = ('txz255', 0.0026614748899119085) + +[fips4806192295] +centroid = (0.45558195074455582, -1.7013287685132668) +description = Los Fresnos-Laureles CCD, TX +station = ('kpil', 0.0025385489275672377) +zone = ('txz255', 0.0016012080546561932) + +[fips4806193245] +centroid = (0.45852234184197566, -1.7006740780575511) +description = Rio Hondo CCD, TX +station = ('kpil', 0.0024913060550177035) +zone = ('txz257', 0.0026928812360228344) + +[fips4806200] +centroid = (0.51904140676207633, -1.655386868038748) +description = Beach City city, TX +station = ('kefd', 0.0054243270877941769) +zone = ('txz214', 0.003617118144710752) + +[fips4806242] +centroid = (0.52678499632086218, -1.7093751377906885) +description = Bear Creek village, TX +station = ('katt', 0.0035080752567804492) +zone = ('txz191', 0.0025696402131514086) + +[fips4806272] +centroid = (0.51477102241475914, -1.6740267401039519) +description = Beasley city, TX +station = ('ksgr', 0.0045513067804607357) +zone = ('txz227', 0.0022621472407274453) + +[fips48063] +centroid = (0.57551500791556431, -1.6576977537815585) +description = Camp County, TX +station = ('kosa', 0.0021224092835891101) +zone = ('txz110', 2.5579725840888211e-05) + +[fips4806392170] +centroid = (0.57546662738869903, -1.6600188846070782) +description = Leesburg-Newsome CCD, TX +station = ('kosa', 0.0030830381409039528) +zone = ('txz110', 0.0019559867279350203) + +[fips4806393050] +centroid = (0.57548046784966733, -1.6571118991115417) +description = Pittsburg CCD, TX +station = ('kosa', 0.0021536527038864359) +zone = ('txz110', 0.00048303709311796453) + +[fips48065] +centroid = (0.61794247850168227, -1.7689846767309898) +description = Carson County, TX +station = ('kbgd', 0.0051790083170319377) +zone = ('txz013', 3.8523268587125763e-05) + +[fips4806592965] +centroid = (0.6179480111954111, -1.7708225782465099) +description = Panhandle CCD, TX +station = ('kama', 0.0049185661676270989) +zone = ('txz013', 0.0015150210206249159) + +[fips4806594195] +centroid = (0.61785650358272903, -1.7661758310992928) +description = White Deer-Groom CCD, TX +station = ('kppa', 0.0046536156793256737) +zone = ('txz013', 0.0022736396660207776) + +[fips48067] +centroid = (0.57741945883546297, -1.6468504277606586) +description = Cass County, TX +station = ('ktxk', 0.0084082997120378655) +zone = ('txz112', 0.00023128796201104073) + +[fips4806790160] +centroid = (0.57903643657426562, -1.6428601163984089) +description = Atlanta CCD, TX +station = ('ktxk', 0.0052271366797534439) +zone = ('txz112', 0.003580431534932376) + +[fips4806790320] +centroid = (0.57564278347010278, -1.6430913725242982) +description = Bivins-McLeod CCD, TX +station = ('kasl', 0.0083878672870093957) +zone = ('txz112', 0.0033865439537861157) + +[fips4806791850] +centroid = (0.57576361261421838, -1.6507691806235762) +description = Hughes Springs-Avinger CCD, TX +station = ('kosa', 0.0058518890807020309) +zone = ('txz111', 0.0030954555769024581) + +[fips4806792215] +centroid = (0.57570762245181439, -1.6467253923730456) +description = Linden CCD, TX +station = ('kasl', 0.00816017298553867) +zone = ('txz112', 0.0016067582704653793) + +[fips4806792405] +centroid = (0.5792055589787839, -1.6487531682578904) +description = Marietta-Douglassville CCD, TX +station = ('ktxk', 0.008420340126468891) +zone = ('txz112', 0.0026115116957800086) + +[fips48069] +centroid = (0.6027253890858566, -1.7847525047922821) +description = Castro County, TX +station = ('khrx', 0.0057873228647664391) +zone = ('txz022', 7.5825384191353251e-05) + +[fips4806991059] +centroid = (0.60437654037141342, -1.7847383501720486) +description = Dimmitt CCD, TX +station = ('khrx', 0.0041750342913906427) +zone = ('txz022', 0.001715185133326078) + +[fips4806991732] +centroid = (0.60076009598823343, -1.7847074578442881) +description = Hart CCD, TX +station = ('khrx', 0.0077346113695000683) +zone = ('txz022', 0.0019037371396329911) + +[fips4807000] +centroid = (0.52507083864930848, -1.643153733138472) +description = Beaumont city, TX +station = ('kbmt', 0.0011486619303229845) +zone = ('txz215', 0.0035228601729635615) + +[fips48071] +centroid = (0.51843143164179684, -1.6522835679089469) +description = Chambers County, TX +station = ('kgls', 0.0082020350092487423) +zone = ('txz214', 0.0011053040211500128) + +[fips4807108] +centroid = (0.56275701760262875, -1.6485697167002131) +description = Beckville city, TX +station = ('kggg', 0.0045520634992838854) +zone = ('txz151', 0.0026358768121196845) + +[fips4807132] +centroid = (0.57326801867666921, -1.6953268953749234) +description = Bedford city, TX +station = ('kdfw', 0.0017657558127569539) +zone = ('txz118', 0.0026506311154415882) + +[fips4807144] +centroid = (0.53724089735041725, -1.6745488378963935) +description = Bedias city, TX +station = ('kuts', 0.0054456957510516076) +zone = ('txz176', 0.0032199141450123133) + +[fips4807156] +centroid = (0.52900259421515361, -1.7097669118478838) +description = Bee Cave city, TX +station = ('katt', 0.0029521162351749349) +zone = ('txz192', 0.0027547888118542333) + +[fips4807190075] +centroid = (0.51787543955528148, -1.6527440381255005) +description = Anahuac CCD, TX +station = ('kgls', 0.0075398915613696512) +zone = ('txz214', 0.0017623698789809693) + +[fips4807192] +centroid = (0.49577587112701904, -1.706048871848945) +description = Beeville city, TX +station = ('kbea', 0.0010146173342504164) +zone = ('txz232', 0.0002374378365365413) + +[fips4807192620] +centroid = (0.51979715178148234, -1.6553354331856915) +description = Mont Belvieu CCD, TX +station = ('kefd', 0.0058381196536421752) +zone = ('txz214', 0.0036510620206677649) + +[fips4807194245] +centroid = (0.51926384897524303, -1.6479523762904902) +description = Winnie-Stowell CCD, TX +station = ('kbmt', 0.0063322182986355379) +zone = ('txz214', 0.0028468523444687126) + +[fips48073] +centroid = (0.55578018609082891, -1.6607942994871543) +description = Cherokee County, TX +station = ('kjso', 0.0010026440652871301) +zone = ('txz149', 0.00017594098446569494) + +[fips4807300] +centroid = (0.51843253119922561, -1.6661484634867898) +description = Bellaire city, TX +station = ('kmcj', 0.0009649194299198037) +zone = ('txz213', 0.0028835915795560121) + +[fips4807390045] +centroid = (0.55219817705379093, -1.6593973554071506) +description = Alto CCD, TX +station = ('kjso', 0.0045336477628408608) +zone = ('txz149', 0.0037043656606558797) + +[fips4807391910] +centroid = (0.5578492215591907, -1.6633722555121049) +description = Jacksonville CCD, TX +station = ('kjso', 0.0020758081868835652) +zone = ('txz149', 0.0030055366275100171) + +[fips4807392670] +centroid = (0.56014506256384899, -1.6631936908763334) +description = Mount Selman CCD, TX +station = ('kjso', 0.0040844245683166495) +zone = ('txz149', 0.0048731332083724946) + +[fips4807392745] +centroid = (0.55874766469823978, -1.6592147067009293) +description = New Summerfield CCD, TX +station = ('kjso', 0.003375766958658084) +zone = ('txz149', 0.0034190786914736373) + +[fips4807393370] +centroid = (0.55496256914943976, -1.661433351792772) +description = Rusk CCD, TX +station = ('kjso', 0.0013090542246598398) +zone = ('txz149', 0.00081148954509781485) + +[fips4807394135] +centroid = (0.54969371684364166, -1.6581399853074288) +description = Wells CCD, TX +station = ('koch', 0.0045488227570187872) +zone = ('txz152', 0.0061527574110566046) + +[fips4807396] +centroid = (0.58701545359585294, -1.7107079759272663) +description = Bellevue city, TX +station = ('k0f2', 0.0035182826538826275) +zone = ('txz090', 0.0038474491158157101) + +[fips4807408] +centroid = (0.55154894947863409, -1.6945234505070605) +description = Bellmead city, TX +station = ('kcnw', 0.00073029084168381377) +zone = ('txz159', 0.001882344759632596) + +[fips4807420] +centroid = (0.58671979482056513, -1.6827202425614283) +description = Bells town, TX +station = ('kgyi', 0.0040809864930589938) +zone = ('txz093', 0.0038530918094952333) + +[fips4807432] +centroid = (0.52267539170423871, -1.6800561021780143) +description = Bellville city, TX +station = ('k11r', 0.0050467001381417423) +zone = ('txz211', 0.0010831385450449733) + +[fips4807492] +centroid = (0.5420210400123644, -1.7013324511579884) +description = Belton city, TX +station = ('ktpl', 0.0020295438071640907) +zone = ('txz158', 0.00031132013634502167) + +[fips48075] +centroid = (0.60265061918070129, -1.7489654011447644) +description = Childress County, TX +station = ('kcds', 0.0019929298863745511) +zone = ('txz026', 1.0849457592741033e-05) + +[fips4807528] +centroid = (0.48167881185207584, -1.717570401106598) +description = Benavides city, TX +station = ('knqi', 0.0042063094659645466) +zone = ('txz240', 0.0021132382316550315) + +[fips4807552] +centroid = (0.57029570550723041, -1.7010545598344857) +description = Benbrook city, TX +station = ('knfw', 0.0016023628162557607) +zone = ('txz118', 0.0030118500534457248) + +[fips4807590700] +centroid = (0.60102287276041377, -1.7488981710619775) +description = Childress CCD, TX +station = ('kcds', 0.0011360414064971404) +zone = ('txz026', 0.0016259734164818336) + +[fips4807592777] +centroid = (0.60484704623116603, -1.7490620749320325) +description = North Childress CCD, TX +station = ('kcds', 0.0039986891218699982) +zone = ('txz026', 0.0022006657401276181) + +[fips4807636] +centroid = (0.58614449939252278, -1.7417152336188098) +description = Benjamin city, TX +station = ('kf05', 0.013415061616031837) +zone = ('txz087', 0.0008458108103820011) + +[fips4807642] +centroid = (0.46087213097381319, -1.7261245739298876) +description = Benjamin Perez CDP, TX +station = ('kmfe', 0.010883052103312921) +zone = ('txz252', 0.0037102038418885836) + +[fips48077] +centroid = (0.58967526556272232, -1.7141387870912044) +description = Clay County, TX +station = ('ksps', 0.005401413933002963) +zone = ('txz090', 6.6125109582985557e-05) + +[fips4807790245] +centroid = (0.58622752470504014, -1.7135664412695979) +description = Bellevue-Joy CCD, TX +station = ('k0f2', 0.0058175005232938637) +zone = ('txz090', 0.0034633728194973573) + +[fips4807790560] +centroid = (0.59394215925153548, -1.714177952279619) +description = Byers-Petrolia CCD, TX +station = ('ksps', 0.0042021139510965066) +zone = ('txz090', 0.0042768119057104417) + +[fips4807791780] +centroid = (0.58998296710984888, -1.7144610272309999) +description = Henrietta CCD, TX +station = ('ksps', 0.0049992392592618246) +zone = ('txz090', 0.00045964793630414195) + +[fips4807852] +centroid = (0.56006304954229791, -1.6662624683935301) +description = Berryville town, TX +station = ('ktyr', 0.0046662301943435755) +zone = ('txz148', 0.0055225842581994788) + +[fips4807864] +centroid = (0.53655397066341737, -1.7114176617077124) +description = Bertram city, TX +station = ('kbmq', 0.0026497092649370628) +zone = ('txz172', 0.0020448635480791377) + +[fips48079] +centroid = (0.58657793445896311, -1.7947299063541104) +description = Cochran County, TX +station = ('kcvn', 0.014854576670735739) +zone = ('txz033', 8.0872097079711492e-05) + +[fips4807992650] +centroid = (0.58699567901542793, -1.7955230363260941) +description = Morton CCD, TX +station = ('kcvn', 0.014297711128913237) +zone = ('txz033', 0.0008473384862118865) + +[fips4807994200] +centroid = (0.58481780481491186, -1.7925834480801304) +description = Whiteface CCD, TX +station = ('kgnc', 0.014548840313983532) +zone = ('txz033', 0.0024364201187598447) + +[fips48081] +centroid = (0.55636043825394699, -1.7564162117215283) +description = Coke County, TX +station = ('ksjt', 0.009416742864407383) +zone = ('txz065', 0.0015737094731357376) + +[fips4808104] +centroid = (0.55017099458089203, -1.6956948456878291) +description = Beverly Hills city, TX +station = ('kact', 0.0016249594454478531) +zone = ('txz159', 0.00085658214456772546) + +[fips4808128] +centroid = (0.52622916131397957, -1.6453384315763635) +description = Bevil Oaks city, TX +station = ('kbmt', 0.001604995421677839) +zone = ('txz201', 0.0036461417919760671) + +[fips4808164] +centroid = (0.50723238687003502, -1.7253164864862141) +description = Bigfoot CDP, TX +station = ('kcvb', 0.0048474848354070942) +zone = ('txz219', 0.0051649616433803941) + +[fips4808190460] +centroid = (0.55706993204817523, -1.751616556278544) +description = Bronte CCD, TX +station = ('ksww', 0.0097173156916199391) +zone = ('txz065', 0.0025652184327475095) + +[fips4808193265] +centroid = (0.55636043825394699, -1.7564162117215283) +description = Robert Lee CCD, TX +station = ('ksjt', 0.009416742864407383) +zone = ('txz065', 0.0015737094731357376) + +[fips4808212] +centroid = (0.54442763961135432, -1.7707742500795223) +description = Big Lake city, TX +station = ('koza', 0.0088044240959533789) +zone = ('txz070', 0.0031683429743293362) + +[fips4808224] +centroid = (0.56872810313296662, -1.6600290075167399) +description = Big Sandy town, TX +station = ('kjxi', 0.0031166898774525058) +zone = ('txz125', 0.0036385500208010848) + +[fips4808236] +centroid = (0.5626651958306812, -1.7712602893696174) +description = Big Spring city, TX +station = ('kbpg', 0.00081015117402991076) +zone = ('txz052', 0.0013972701021468181) + +[fips4808240] +centroid = (0.53211010058845198, -1.6540074296111418) +description = Big Thicket Lake Estates CDP, TX +station = ('k6r3', 0.004274164152407979) +zone = ('txz179', 0.0054073336352792913) + +[fips4808260] +centroid = (0.49863838563321494, -1.7378276174297478) +description = Big Wells city, TX +station = ('kcot', 0.0058115567573388685) +zone = ('txz228', 0.0038471651818108021) + +[fips48083] +centroid = (0.55700795540643688, -1.7339256546342339) +description = Coleman County, TX +station = ('kcom', 0.0015176317703604193) +zone = ('txz139', 0.0029278381925609276) + +[fips4808390780] +centroid = (0.55700795540643688, -1.7339256546342339) +description = Coleman CCD, TX +station = ('kcom', 0.0015176317703604193) +zone = ('txz139', 0.0029278381925609276) + +[fips4808392] +centroid = (0.48145148271700355, -1.7068916738914408) +description = Bishop city, TX +station = ('krbo', 0.0037584070881332603) +zone = ('txz242', 0.0028177251851037428) + +[fips4808392865] +centroid = (0.55804017803265138, -1.7378271461908497) +description = Novice CCD, TX +station = ('kcom', 0.0034311417001171539) +zone = ('txz139', 0.0038970888558312708) + +[fips4808393450] +centroid = (0.55193716306415519, -1.7334889732553851) +description = Santa Anna CCD, TX +station = ('kcom', 0.0039509545687121611) +zone = ('txz139', 0.0032639115081292921) + +[fips4808393830] +centroid = (0.55259269127791177, -1.7383492788898762) +description = Talpa CCD, TX +station = ('kcom', 0.0043072823432704953) +zone = ('txz139', 0.0029237746536991084) + +[fips4808398] +centroid = (0.61542820954113686, -1.7793964732903471) +description = Bishop Hills town, TX +station = ('kama', 0.0034432091215845823) +zone = ('txz012', 0.0025765314346523414) + +[fips4808410] +centroid = (0.45630036317126171, -1.7078741371806809) +description = Bixby CDP, TX +station = ('kt65', 0.0019544070848912902) +zone = ('txz255', 0.0043241639068280265) + +[fips4808488] +centroid = (0.55998983298017668, -1.7509031005869136) +description = Blackwell city, TX +station = ('ksww', 0.0070140952664899912) +zone = ('txz054', 0.0040221016867326813) + +[fips48085] +centroid = (0.57934258477835798, -1.6856067553448391) +description = Collin County, TX +station = ('ktki', 0.00019909941586067792) +zone = ('txz104', 0.00013542422888571841) + +[fips4808536] +centroid = (0.52530712132344348, -1.7177593329981264) +description = Blanco city, TX +station = ('kdzb', 0.0075965334597414991) +zone = ('txz190', 0.0029575232322553444) + +[fips4808590100] +centroid = (0.58165504131749535, -1.6856531461963571) +description = Anna CCD, TX +station = ('ktki', 0.0024968892672824908) +zone = ('txz104', 0.0024217730072019507) + +[fips4808590350] +centroid = (0.58109538403955086, -1.6824533817187985) +description = Blue Ridge CCD, TX +station = ('ktki', 0.0033335596860193371) +zone = ('txz104', 0.0031584497872168627) + +[fips4808590665] +centroid = (0.58121663206268681, -1.6887408605359377) +description = Celina CCD, TX +station = ('ktki', 0.0032735918418086447) +zone = ('txz104', 0.0033524936510225703) + +[fips4808591295] +centroid = (0.57842839876945584, -1.682044747781029) +description = Farmersville CCD, TX +station = ('ktki', 0.0031434699662717508) +zone = ('txz104', 0.0030082490259000904) + +[fips4808592360] +centroid = (0.57901208923120029, -1.6881885510941443) +description = McKinney CCD, TX +station = ('ktki', 0.0020903241740041247) +zone = ('txz104', 0.002256027300638115) + +[fips4808592720] +centroid = (0.57646553167949288, -1.6822413067613886) +description = Nevada CCD, TX +station = ('ktki', 0.0039536985686036653) +zone = ('txz120', 0.0023139160196809791) + +[fips4808593065] +centroid = (0.57699949771084802, -1.6870539649073004) +description = Plano CCD, TX +station = ('ktki', 0.0024397165619336313) +zone = ('txz104', 0.0025852604399916736) + +[fips4808593150] +centroid = (0.57863555189837501, -1.6843122271853423) +description = Princeton CCD, TX +station = ('ktki', 0.0012717487643810151) +zone = ('txz104', 0.0011662162349439726) + +[fips4808596] +centroid = (0.55544822446709963, -1.7242016748797953) +description = Blanket town, TX +station = ('kbwd', 0.002419905126741569) +zone = ('txz140', 0.0032420935141899304) + +[fips4808668] +centroid = (0.50395998178900825, -1.6792998859197101) +description = Blessing CDP, TX +station = ('kpsx', 0.0028059403569968802) +zone = ('txz236', 0.0035414464758218222) + +[fips48087] +centroid = (0.61022571465349962, -1.7500789037542444) +description = Collingsworth County, TX +station = ('kcds', 0.0092520710537036532) +zone = ('txz020', 3.9642429868715918e-05) + +[fips4808752] +centroid = (0.57836366450749932, -1.6416405675835781) +description = Bloomburg town, TX +station = ('ktxk', 0.0055598787391869711) +zone = ('arz070', 0.0039052770619354914) + +[fips4808788] +centroid = (0.56011738164191249, -1.6880352413726489) +description = Blooming Grove town, TX +station = ('kcrs', 0.0051137052353407925) +zone = ('txz146', 0.0037075087699110507) + +[fips4808793400] +centroid = (0.61215582191340256, -1.7495591796095855) +description = Samnorwood CCD, TX +station = ('kcds', 0.011196211899839171) +zone = ('txz020', 0.0019440668933465551) + +[fips4808794130] +centroid = (0.60861145962833008, -1.7502882210914359) +description = Wellington CCD, TX +station = ('kcds', 0.0076364290480472417) +zone = ('txz020', 0.0016534013892747258) + +[fips4808800] +centroid = (0.5000441436259413, -1.6912623551595867) +description = Bloomington CDP, TX +station = ('kvct', 0.0038041856088835758) +zone = ('txz234', 0.0027592568974817346) + +[fips4808812] +centroid = (0.58753493339441654, -1.6647600540668284) +description = Blossom city, TX +station = ('kprx', 0.0010955543762643052) +zone = ('txz095', 0.0027226699711541836) + +[fips4808830] +centroid = (0.4954206093577756, -1.7067932547749207) +description = Blue Berry Hill CDP, TX +station = ('kbea', 0.00044634508149287382) +zone = ('txz232', 0.0009587723713876641) + +[fips4808860] +centroid = (0.5734181169923408, -1.6988735614946087) +description = Blue Mound city, TX +station = ('kftw', 0.00055576778338482422) +zone = ('txz118', 0.0016168716772858658) + +[fips4808872] +centroid = (0.58116504012999792, -1.6824575181491257) +description = Blue Ridge city, TX +station = ('ktki', 0.0033716788106460125) +zone = ('txz104', 0.0031971371556348185) + +[fips48089] +centroid = (0.51654603971732993, -1.6843891438454777) +description = Colorado County, TX +station = ('karm', 0.0080356379191915493) +zone = ('txz210', 0.00051245735488562654) + +[fips4808908] +centroid = (0.45500120988924719, -1.7072506008521133) +description = Bluetown CDP, TX +station = ('kt65', 0.0030704652131715135) +zone = ('txz255', 0.0038479298696413471) + +[fips4808990800] +centroid = (0.51963480125446193, -1.6847497637755249) +description = Columbus CCD, TX +station = ('k3t5', 0.0067955202287375335) +zone = ('txz210', 0.0026546418407176597) + +[fips4808991095] +centroid = (0.51699165718194917, -1.6816250135492168) +description = Eagle Lake CCD, TX +station = ('karm', 0.0070676416955302857) +zone = ('txz210', 0.0026746692340823852) + +[fips4808991470] +centroid = (0.51397426215793129, -1.6845866103970486) +description = Garwood CCD, TX +station = ('karm', 0.0065140980681204297) +zone = ('txz210', 0.0030078935888390528) + +[fips4808994120] +centroid = (0.51701225206712265, -1.6877811214335587) +description = Weimar CCD, TX +station = ('k3t5', 0.006233161348271456) +zone = ('txz210', 0.0026771097223391069) + +[fips4809004] +centroid = (0.56098353618979968, -1.6999004608666044) +description = Blum town, TX +station = ('kcpt', 0.0037325690059317107) +zone = ('txz133', 0.0041615598113647085) + +[fips48091] +centroid = (0.52016080858442793, -1.714876764658825) +description = Comal County, TX +station = ('kbaz', 0.0034551247026668726) +zone = ('txz206', 0.00035985514213466977) + +[fips4809160] +centroid = (0.51986190349673134, -1.7232257216686651) +description = Boerne city, TX +station = ('k5c1', 0.0013260053076974748) +zone = ('txz189', 0.0027915643906377494) + +[fips4809172] +centroid = (0.58415808781095047, -1.6617899400122469) +description = Bogata city, TX +station = ('klbr', 0.0030666782252154511) +zone = ('txz096', 0.0035453271851293737) + +[fips4809190627] +centroid = (0.52102462439111752, -1.7161116200111961) +description = Canyon Lake CCD, TX +station = ('kbaz', 0.0048056434684863661) +zone = ('txz206', 0.0010587190944366552) + +[fips4809192730] +centroid = (0.51938944286821653, -1.7137468734076688) +description = New Braunfels CCD, TX +station = ('kbaz', 0.0022522556102308492) +zone = ('txz206', 0.0015839818949127833) + +[fips4809232] +centroid = (0.51059408299559383, -1.674500352649773) +description = Boling CDP, TX +station = ('karm', 0.0032337394806107654) +zone = ('txz226', 0.0042865182083586233) + +[fips4809250] +centroid = (0.51468633903945238, -1.6505441902297018) +description = Bolivar Peninsula CDP, TX +station = ('kxih', 0.0054509446739895552) +zone = ('txz214', 0.0043932296004272264) + +[fips48093] +centroid = (0.5576614066783836, -1.7200152932293766) +description = Comanche County, TX +station = ('kmkn', 0.00096734914684844188) +zone = ('txz141', 0.00014213975776845844) + +[fips4809310] +centroid = (0.48511021642795932, -1.7360703152190848) +description = Bonanza Hills CDP, TX +station = ('klrd', 0.0043853081645386979) +zone = ('txz239', 0.0022090678630957645) + +[fips4809328] +centroid = (0.58622021177547434, -1.6788374085745166) +description = Bonham city, TX +station = ('kdua', 0.0068561655128917161) +zone = ('txz094', 0.0012212961324828484) + +[fips4809388] +centroid = (0.51142159595384196, -1.6659454118816126) +description = Bonney village, TX +station = ('klbx', 0.0032479713007127074) +zone = ('txz237', 0.0019380139998393592) + +[fips4809390810] +centroid = (0.55705469532380525, -1.7220129098247468) +description = Comanche CCD, TX +station = ('kmkn', 0.00094509662196316845) +zone = ('txz141', 0.001659568952557177) + +[fips4809390985] +centroid = (0.56043077296240051, -1.7208540286547149) +description = De Leon CCD, TX +station = ('kmkn', 0.0033800731871225019) +zone = ('txz141', 0.0028925637350102002) + +[fips4809391665] +centroid = (0.55597529644790944, -1.7169523102052966) +description = Gustine CCD, TX +station = ('kcwc', 0.0017199933526565632) +zone = ('txz141', 0.0031736152226084207) + +[fips4809448] +centroid = (0.63627976283446819, -1.7547590041434671) +description = Booker town, TX +station = ('kpyx', 0.0028826375498594778) +zone = ('txz005', 0.0048785228442075621) + +[fips48095] +centroid = (0.54661731223761389, -1.7429494606526501) +description = Concho County, TX +station = ('kbbd', 0.0084148088916601912) +zone = ('txz073', 0.00013335919492206999) + +[fips4809556] +centroid = (0.62237455015090415, -1.7698050512925974) +description = Borger city, TX +station = ('kbgd', 0.00070878294345190745) +zone = ('txz008', 0.0032229497477569338) + +[fips4809591160] +centroid = (0.54584538801604177, -1.7422589211340986) +description = Eden-Millersview CCD, TX +station = ('kbbd', 0.0076489262271803469) +zone = ('txz073', 0.0010833805065027632) + +[fips4809591255] +centroid = (0.54938589312346742, -1.7447326111895354) +description = Eola-Paint Rock CCD, TX +station = ('ksjt', 0.0082620106822900771) +zone = ('txz073', 0.0030406274432166328) + +[fips4809598] +centroid = (0.48471102472144317, -1.7358542085511028) +description = Botines CDP, TX +station = ('klrd', 0.0039848694280750808) +zone = ('txz239', 0.0019476177438036853) + +[fips4809628] +centroid = (0.60241185813902842, -1.7956759969817393) +description = Bovina city, TX +station = ('kcvn', 0.0031993737613478031) +zone = ('txz021', 0.0014621137204775148) + +[fips4809640] +centroid = (0.5856735746537497, -1.7077288385204521) +description = Bowie city, TX +station = ('k0f2', 0.0011184150279630626) +zone = ('txz091', 0.0027230390072024327) + +[fips4809656] +centroid = (0.51545702407725558, -1.7655508112408609) +description = Box Canyon CDP, TX +station = ('kdrt', 0.0046904743636216372) +zone = ('txz183', 0.0062751234851957235) + +[fips48097] +centroid = (0.58711425668480843, -1.6966410584885052) +description = Cooke County, TX +station = ('kgle', 0.00028905007714677774) +zone = ('txz092', 3.2454814602506805e-05) + +[fips4809748] +centroid = (0.57743078602230846, -1.7027992433146568) +description = Boyd town, TX +station = ('klud', 0.0029795560376277576) +zone = ('txz102', 0.002654691057019157) + +[fips4809790580] +centroid = (0.58932391333100331, -1.6942247024989965) +description = Callisburg CCD, TX +station = ('kgle', 0.002698198080129363) +zone = ('txz092', 0.0030074317901727836) + +[fips4809791435] +centroid = (0.58710598382415391, -1.6953941952708804) +description = Gainesville CCD, TX +station = ('kgle', 0.00087152903480274338) +zone = ('txz092', 0.0010704953010628345) + +[fips4809791440] +centroid = (0.58491364084413888, -1.6932457298682604) +description = Gainesville Southeast CCD, TX +station = ('kgle', 0.00357233579530864) +zone = ('txz092', 0.0036110035044542368) + +[fips4809792680] +centroid = (0.58881485314807414, -1.6991534075868735) +description = Muenster CCD, TX +station = ('kgle', 0.0027266595396301784) +zone = ('txz092', 0.0026683355918965083) + +[fips4809793995] +centroid = (0.58484346115491614, -1.698107292139813) +description = Valley View CCD, TX +station = ('kgle', 0.0028597000090776958) +zone = ('txz092', 0.0025653759436745451) + +[fips4809796] +centroid = (0.62020802059052604, -1.7846401754016239) +description = Boys Ranch CDP, TX +station = ('kdux', 0.0065712664896565567) +zone = ('txz012', 0.0056050547213315188) + +[fips4809868] +centroid = (0.51169913821149404, -1.7524938809336439) +description = Brackettville city, TX +station = ('kdlf', 0.0036199855113006317) +zone = ('txz202', 0.00057001810290966575) + +[fips48099] +centroid = (0.54787939472631597, -1.7068974858378498) +description = Coryell County, TX +station = ('kgop', 0.00052269532199966271) +zone = ('txz157', 1.8204365089113886e-05) + +[fips4809916] +centroid = (0.54329921443676987, -1.7348047944317559) +description = Brady city, TX +station = ('kbbd', 0.0014023069946322954) +zone = ('txz154', 0.0014301399845052484) + +[fips4809990845] +centroid = (0.54389908410068033, -1.7093323074108446) +description = Copperas Cove CCD, TX +station = ('kgrk', 0.0024688965057552015) +zone = ('txz157', 0.0044790598080414971) + +[fips4809991270] +centroid = (0.547584870415042, -1.710762534919684) +description = Evant CCD, TX +station = ('kgop', 0.0034143308694888209) +zone = ('txz157', 0.0032948340885149531) + +[fips4809991315] +centroid = (0.54650620457743193, -1.7029170704924592) +description = Flat CCD, TX +station = ('khlr', 0.0036803937169837581) +zone = ('txz157', 0.003680605216320442) + +[fips4809991370] +centroid = (0.54540113190823913, -1.7062879645031759) +description = Fort Hood CCD, TX +station = ('khlr', 0.0022306595723406895) +zone = ('txz157', 0.0025313188591784296) + +[fips4809991480] +centroid = (0.54860773807646579, -1.7052204513194862) +description = Gatesville CCD, TX +station = ('kgop', 0.0014298755478847889) +zone = ('txz157', 0.0016237515383791734) + +[fips4809992885] +centroid = (0.54880394799097498, -1.7027762573284082) +description = Oglesby CCD, TX +station = ('kpwg', 0.0037142214814921393) +zone = ('txz157', 0.0036547115434462769) + +[fips4809993157] +centroid = (0.54922919746322341, -1.7088923622662942) +description = Purmela-Levita CCD, TX +station = ('kgop', 0.0019068036443643242) +zone = ('txz157', 0.0021617290648304642) + +[fips4809993965] +centroid = (0.55125582143076168, -1.7061631385550733) +description = Turnersville CCD, TX +station = ('kgop', 0.002918456208012473) +zone = ('txz157', 0.0034419963662965158) + +[fips4810072] +centroid = (0.50692517401509896, -1.6679116998169097) +description = Brazoria city, TX +station = ('klbx', 0.0019484975927435034) +zone = ('txz237', 0.0030531117250002151) + +[fips4810087] +centroid = (0.56682703815181679, -1.7062503875643804) +description = Brazos Bend city, TX +station = ('kgdj', 0.00099883258754895855) +zone = ('txz131', 0.001332023379175241) + +[fips4810090] +centroid = (0.51929676588493567, -1.6761768984759464) +description = Brazos Country city, TX +station = ('ktme', 0.002309366928963628) +zone = ('txz211', 0.0043185809585732432) + +[fips48101] +centroid = (0.59501600798040999, -1.7501540750851277) +description = Cottle County, TX +station = ('kcds', 0.0059598601564166062) +zone = ('txz032', 0.00025200253225484369) + +[fips4810132] +centroid = (0.57171320956582261, -1.7263376611782635) +description = Breckenridge city, TX +station = ('kbkd', 0.00071728975278786283) +zone = ('txz115', 0.0011687970049249234) + +[fips4810144] +centroid = (0.54394423576842943, -1.6873140713257249) +description = Bremond city, TX +station = ('klhb', 0.005194604450113864) +zone = ('txz175', 0.0034362925162025465) + +[fips4810156] +centroid = (0.52635918834325313, -1.6824209011414188) +description = Brenham city, TX +station = ('k11r', 0.0011082183654780497) +zone = ('txz197', 0.00099066647038909927) + +[fips4810192] +centroid = (0.57571783262793852, -1.7027461154922261) +description = Briar CDP, TX +station = ('kftw', 0.003893223908220556) +zone = ('txz102', 0.0042391305028723425) + +[fips4810192930] +centroid = (0.59644881857654219, -1.7505325846400077) +description = Paducah North CCD, TX +station = ('kcds', 0.0045312444258680225) +zone = ('txz032', 0.0017055164339169484) + +[fips4810192935] +centroid = (0.5923062795969336, -1.7497518814122983) +description = Paducah South CCD, TX +station = ('kcds', 0.0086795268875225137) +zone = ('txz032', 0.0024873432940454607) + +[fips4810197] +centroid = (0.53074027892502429, -1.7112002460427913) +description = Briarcliff village, TX +station = ('kryw', 0.001941852049957555) +zone = ('txz192', 0.0041631578769968178) + +[fips4810216] +centroid = (0.56715835400372305, -1.6982632198551861) +description = Briaroaks city, TX +station = ('kfws', 0.0012381669823127723) +zone = ('txz133', 0.002239423711725478) + +[fips4810252] +centroid = (0.52415673990686895, -1.6378297807881885) +description = Bridge City city, TX +station = ('korg', 0.00085791305882073319) +zone = ('txz216', 0.0018773276141381531) + +[fips4810264] +centroid = (0.57961195889511075, -1.7064509957086047) +description = Bridgeport city, TX +station = ('kxbp', 0.0010096665456554557) +zone = ('txz102', 0.00172746505288433) + +[fips48103] +centroid = (0.54843126783579665, -1.7887490993398389) +description = Crane County, TX +station = ('kodo', 0.0087177017284421291) +zone = ('txz068', 0.00042475601985403387) + +[fips4810336] +centroid = (0.56626834080496091, -1.68542384483923) +description = Bristol CDP, TX +station = ('klnc', 0.003233279836730316) +zone = ('txz134', 0.0037421550900256671) + +[fips4810384] +centroid = (0.54637486855121942, -1.6453225839867551) +description = Broaddus town, TX +station = ('klfk', 0.0072683928192024683) +zone = ('txz166', 0.0021747005748992418) + +[fips4810390880] +centroid = (0.55053025315412263, -1.7901886120002988) +description = Crane North CCD, TX +station = ('kodo', 0.0069933157008466532) +zone = ('txz068', 0.0021591371997555968) + +[fips4810390885] +centroid = (0.54602803672226297, -1.788273549478548) +description = Crane South CCD, TX +station = ('kfst', 0.0093711525746005952) +zone = ('txz068', 0.0026334645534691467) + +[fips48105] +centroid = (0.53612207148671875, -1.7698373573370516) +description = Crockett County, TX +station = ('koza', 0.0030887257121394985) +zone = ('txz076', 0.00015204799525946749) + +[fips4810528] +centroid = (0.55651687211480327, -1.7504858447226392) +description = Bronte town, TX +station = ('ksjt', 0.0098376708035757057) +zone = ('txz065', 0.0034746515798920979) + +[fips4810591120] +centroid = (0.5352308191041879, -1.7666465463985555) +description = East Crockett CCD, TX +station = ('koza', 0.0013229302663690205) +zone = ('txz076', 0.0030274726103949909) + +[fips4810594160] +centroid = (0.5370203575461352, -1.7750694355555101) +description = West Crockett CCD, TX +station = ('koza', 0.0075761050750710992) +zone = ('txz076', 0.0044513316647291539) + +[fips4810636] +centroid = (0.51980512793616396, -1.6747217127588037) +description = Brookshire city, TX +station = ('ktme', 0.00095344085719859092) +zone = ('txz212', 0.0040189238765728679) + +[fips4810648] +centroid = (0.51645516042317863, -1.6636157289427584) +description = Brookside Village city, TX +station = ('khou', 0.00091263750972629242) +zone = ('txz213', 0.0047868000087486103) + +[fips48107] +centroid = (0.58659022157689711, -1.767996017522905) +description = Crosby County, TX +station = ('klbb', 0.0075929945051300667) +zone = ('txz036', 9.705364572322029e-05) + +[fips4810708] +centroid = (0.54324023976134506, -1.6402628221253461) +description = Browndell city, TX +station = ('kjas', 0.0042645122387226968) +zone = ('txz167', 0.0042569706709388302) + +[fips4810720] +centroid = (0.57902195034147408, -1.7850080733546516) +description = Brownfield city, TX +station = ('kgnc', 0.010347255254743603) +zone = ('txz040', 0.00090287847500424023) + +[fips4810756] +centroid = (0.56371377219198693, -1.6687623907476241) +description = Brownsboro city, TX +station = ('ktyr', 0.0032685043694339732) +zone = ('txz135', 0.0038597305793512293) + +[fips4810768] +centroid = (0.45410545455724616, -1.7008901323656556) +description = Brownsville city, TX +station = ('kbro', 0.0021459234702821631) +zone = ('txz255', 0.0026516117200330955) + +[fips4810780] +centroid = (0.5534776255685504, -1.7274592272088876) +description = Brownwood city, TX +station = ('kbwd', 0.0015852124853873431) +zone = ('txz140', 0.001143849577944029) + +[fips4810790905] +centroid = (0.58703391917933911, -1.7659261792030874) +description = Crosbyton CCD, TX +station = ('klbb', 0.0092651664091312116) +zone = ('txz036', 0.0017767756324154572) + +[fips4810792290] +centroid = (0.58618228577082843, -1.7716074877177168) +description = Lorenzo CCD, TX +station = ('klbb', 0.0047355746032689836) +zone = ('txz036', 0.0030313605211312838) + +[fips4810793185] +centroid = (0.58645565669156829, -1.7688888756083478) +description = Ralls CCD, TX +station = ('klbb', 0.0068781643138982884) +zone = ('txz036', 0.00076041143336584018) + +[fips4810828] +centroid = (0.54642759494792204, -1.6974489190393758) +description = Bruceville-Eddy city, TX +station = ('kpwg', 0.0031881397619872463) +zone = ('txz159', 0.0043432041022148987) + +[fips4810852] +centroid = (0.49870976959962154, -1.7395719518440684) +description = Brundage CDP, TX +station = ('kcot', 0.0072833351037550689) +zone = ('txz228', 0.0029583070345698742) + +[fips4810876] +centroid = (0.4787117521236855, -1.7249475238823424) +description = Bruni CDP, TX +station = ('khbv', 0.0022555896742233331) +zone = ('txz240', 0.0066743771661713063) + +[fips4810897] +centroid = (0.53254451303927341, -1.7058450872054822) +description = Brushy Creek CDP, TX +station = ('kgtu', 0.0030906514400748687) +zone = ('txz173', 0.0031352209769957011) + +[fips48109] +centroid = (0.54883464833251761, -1.8243393473010243) +description = Culberson County, TX +station = ('kgdp', 0.0080159383556078715) +zone = ('txz057', 0.0032973529326983013) + +[fips4810912] +centroid = (0.53523272151307255, -1.6818956093964461) +description = Bryan city, TX +station = ('kcll', 0.0014529606778521194) +zone = ('txz196', 0.00095391383841376336) + +[fips4810960] +centroid = (0.57884954671796207, -1.7172084896329045) +description = Bryson city, TX +station = ('krph', 0.0026196439771362188) +zone = ('txz101', 0.0033736663795593913) + +[fips4810984] +centroid = (0.53770456151950208, -1.7182852879682149) +description = Buchanan Dam CDP, TX +station = ('kaqo', 0.003199038073290722) +zone = ('txz171', 0.0039334663153056939) + +[fips4810990] +centroid = (0.53854853293259641, -1.7180910677290531) +description = Buchanan Lake Village CDP, TX +station = ('kaqo', 0.0035707956162825474) +zone = ('txz172', 0.0040315071793636517) + +[fips4810994010] +centroid = (0.54247047974804541, -1.8294357436234325) +description = Van Horn CCD, TX +station = ('kgdp', 0.013126042707373579) +zone = ('txz057', 0.0044177970722151915) + +[fips4810994015] +centroid = (0.54924483561332127, -1.8239186880447085) +description = Van Horn Rural CCD, TX +station = ('kgdp', 0.0078792501730360984) +zone = ('txz057', 0.0038406229885286371) + +[fips4811020] +centroid = (0.538849986201001, -1.6952138329459792) +description = Buckholts town, TX +station = ('kt35', 0.0023612909057482111) +zone = ('txz174', 0.0027390888076149469) + +[fips4811080] +centroid = (0.52506780177640999, -1.7077218572034443) +description = Buda city, TX +station = ('kaus', 0.002994877456957951) +zone = ('txz191', 0.0028433854681301769) + +[fips48111] +centroid = (0.63331663009689476, -1.7906034418569128) +description = Dallam County, TX +station = ('kdht', 0.004747914244764128) +zone = ('txz001', 0.00018734609608135334) + +[fips4811102] +centroid = (0.4589192995270493, -1.7210846041021959) +description = Buena Vista CDP, TX +station = ('kmfe', 0.0059714348898019928) +zone = ('txz252', 0.0050837445210195681) + +[fips4811116] +centroid = (0.5490943358719218, -1.6766446816220659) +description = Buffalo city, TX +station = ('kpsn', 0.0077024915847194817) +zone = ('txz162', 0.0030459431563929604) + +[fips4811128] +centroid = (0.56345473042440586, -1.7424423726917757) +description = Buffalo Gap town, TX +station = ('kdys', 0.0024037093978434691) +zone = ('txz127', 0.00087663059604758421) + +[fips4811155] +centroid = (0.58534782640215743, -1.7750120142231196) +description = Buffalo Springs village, TX +station = ('klbb', 0.0028085823281748575) +zone = ('txz035', 0.0021505074399619209) + +[fips4811190955] +centroid = (0.63285537448217777, -1.7893927069548043) +description = Dalhart CCD, TX +station = ('kdht', 0.0042609636227076237) +zone = ('txz001', 0.0011353791545885901) + +[fips4811193885] +centroid = (0.63458525757029194, -1.7967089351929468) +description = Texline CCD, TX +station = ('kcao', 0.0033024432792738158) +zone = ('txz001', 0.0050088404179212086) + +[fips4811212] +centroid = (0.56102381838893578, -1.6636625561265892) +description = Bullard town, TX +station = ('ktyr', 0.0037755495944616474) +zone = ('txz136', 0.0040980334282457644) + +[fips4811224] +centroid = (0.51956230027733397, -1.7181111913753284) +description = Bulverde city, TX +station = ('ksat', 0.0041274917364786685) +zone = ('txz206', 0.0025533763159165208) + +[fips4811236] +centroid = (0.53132554018309541, -1.6399233904924184) +description = Buna CDP, TX +station = ('kbpt', 0.0035724657791032606) +zone = ('txz261', 0.0011909490517894466) + +[fips48113] +centroid = (0.57189180910817916, -1.6891021436911007) +description = Dallas County, TX +station = ('kdal', 0.00178930039783557) +zone = ('txz119', 1.0235373224916492e-05) + +[fips4811300] +centroid = (0.51949290598627473, -1.6673441187441609) +description = Bunker Hill Village city, TX +station = ('kmcj', 0.0022139620659966143) +zone = ('txz213', 0.0026590928984676974) + +[fips4811368] +centroid = (0.59471670146698541, -1.7203204640490879) +description = Burkburnett city, TX +station = ('ksps', 0.0018676551391459896) +zone = ('txz086', 0.0024835275443202808) + +[fips4811380] +centroid = (0.54518423984209385, -1.6539456275023285) +description = Burke city, TX +station = ('klfk', 0.00021879237054174205) +zone = ('txz165', 0.0022943500543403288) + +[fips4811392792] +centroid = (0.57298197666555983, -1.6875295147685914) +description = Northeast Dallas CCD, TX +station = ('khqz', 0.0027295996120261273) +zone = ('txz119', 0.0017118607097019868) + +[fips4811393682] +centroid = (0.57069519391971935, -1.6908111526413612) +description = Southwest Dallas CCD, TX +station = ('krbd', 0.00029931573991072387) +zone = ('txz119', 0.0018720880514996065) + +[fips4811428] +centroid = (0.56755873253413047, -1.6989192542144258) +description = Burleson city, TX +station = ('kfws', 0.0010307513263707936) +zone = ('txz133', 0.0024670955464948245) + +[fips4811464] +centroid = (0.53664294754868402, -1.7145941958529272) +description = Burnet city, TX +station = ('kbmq', 0.00025946773131627928) +zone = ('txz172', 0.0011094721380507085) + +[fips48115] +centroid = (0.57145455177067705, -1.7793164324908506) +description = Dawson County, TX +station = ('ke11', 0.011171263807716821) +zone = ('txz046', 1.1330429870776279e-05) + +[fips4811536] +centroid = (0.5267770725260581, -1.6860139406593295) +description = Burton city, TX +station = ('k11r', 0.0034885116858309854) +zone = ('txz197', 0.0030380871649781133) + +[fips4811592105] +centroid = (0.5714120006435135, -1.7795312301618935) +description = Lamesa CCD, TX +station = ('ke11', 0.011005496141713731) +zone = ('txz046', 0.00018280232237185138) + +[fips4811592110] +centroid = (0.57351372612876494, -1.7773737239537482) +description = Lamesa Northeast CCD, TX +station = ('kbpg', 0.012439432367408389) +zone = ('txz046', 0.0026237931306342267) + +[fips4811592115] +centroid = (0.57306039430885203, -1.7820434396339215) +description = Lamesa Northwest CCD, TX +station = ('kgnc', 0.0085198826188882439) +zone = ('txz046', 0.0027888015589500473) + +[fips4811592120] +centroid = (0.56955441181403077, -1.7766088508623541) +description = Lamesa Southeast CCD, TX +station = ('kbpg', 0.0085795188687033362) +zone = ('txz046', 0.0029776333086012634) + +[fips4811592125] +centroid = (0.56927302983202432, -1.7814961218337888) +description = Lamesa Southwest CCD, TX +station = ('ke11', 0.0083802711090834956) +zone = ('txz046', 0.0028544393576244173) + +[fips4811626] +centroid = (0.55575760153030818, -1.8514839295585166) +description = Butterfield CDP, TX +station = ('km63', 0.0040944374497711017) +zone = ('txz419', 0.0032533288159614679) + +[fips4811644] +centroid = (0.59461920737496898, -1.7137550415485683) +description = Byers city, TX +station = ('ksps', 0.004715011263938731) +zone = ('okz044', 0.0046609441150794132) + +[fips4811656] +centroid = (0.55796554775383611, -1.6930230956688761) +description = Bynum town, TX +station = ('kinj', 0.0024326202587495994) +zone = ('txz145', 0.0019514058617476032) + +[fips4811692] +centroid = (0.62909300312023853, -1.7803759869731515) +description = Cactus city, TX +station = ('kdux', 0.00325749240105169) +zone = ('txz007', 0.0039570329195840288) + +[fips48117] +centroid = (0.60983140986888906, -1.790839829250803) +description = Deaf Smith County, TX +station = ('khrx', 0.0042157809072436193) +zone = ('txz016', 0.00044206205252230688) + +[fips4811716] +centroid = (0.57664177502735936, -1.6798450569648629) +description = Caddo Mills city, TX +station = ('kgvt', 0.0026963002793211109) +zone = ('txz105', 0.0027981198964777813) + +[fips4811791785] +centroid = (0.61008245802849592, -1.7853458992846676) +description = Hereford East CCD, TX +station = ('khrx', 0.0017440144950828143) +zone = ('txz016', 0.0044684385320160397) + +[fips4811791790] +centroid = (0.61014925177896961, -1.7928988116226732) +description = Hereford West CCD, TX +station = ('khrx', 0.0059188665213285091) +zone = ('txz016', 0.0017298449290195448) + +[fips4811836] +centroid = (0.53287197171353251, -1.6877442775330491) +description = Caldwell city, TX +station = ('krwv', 0.00028417389013683515) +zone = ('txz195', 0.0013764952326288339) + +[fips48119] +centroid = (0.58269445470022807, -1.6698149639129169) +description = Delta County, TX +station = ('kslr', 0.003997237350866995) +zone = ('txz106', 1.6588385992564599e-05) + +[fips4811940] +centroid = (0.5648453913191025, -1.6702695523698912) +description = Callender Lake CDP, TX +station = ('ktyr', 0.0044201667352340721) +zone = ('txz135', 0.0034856972357897079) + +[fips4811968] +centroid = (0.58815346062803087, -1.6932471959448321) +description = Callisburg city, TX +station = ('kgle', 0.0027559971005879122) +zone = ('txz092', 0.0030392730927473743) + +[fips4811990840] +centroid = (0.58315511690299937, -1.6684924581255107) +description = Cooper CCD, TX +station = ('kslr', 0.0043979693053208761) +zone = ('txz106', 0.0011797607288781152) + +[fips4811992] +centroid = (0.54068814951590882, -1.6872367008799842) +description = Calvert city, TX +station = ('klhb', 0.0020160212023062475) +zone = ('txz175', 0.0025173397792577698) + +[fips4811992985] +centroid = (0.58229854421270566, -1.672069510427473) +description = Pecan Gap CCD, TX +station = ('kslr', 0.0044109072392127559) +zone = ('txz106', 0.0019402227048733252) + +[fips4812010] +centroid = (0.45981081370896798, -1.7233171245615921) +description = Camargito CDP, TX +station = ('kmfe', 0.0081554648296365082) +zone = ('txz252', 0.0037852926438574431) + +[fips4812040] +centroid = (0.53862145278874474, -1.6925650340066902) +description = Cameron city, TX +station = ('kt35', 0.00033614890185889663) +zone = ('txz174', 0.0012991536699884434) + +[fips4812045] +centroid = (0.45327078574906493, -1.7013018555362009) +description = Cameron Park CDP, TX +station = ('kbro', 0.0015566967424514877) +zone = ('txz255', 0.0030624570778549423) + +[fips48121] +centroid = (0.57953666539117976, -1.6950471190958287) +description = Denton County, TX +station = ('kdto', 0.0011854648708237013) +zone = ('txz103', 3.0967889896984047e-05) + +[fips4812112] +centroid = (0.57851753273435524, -1.6747320625612681) +description = Campbell city, TX +station = ('kgvt', 0.0021467145126149328) +zone = ('txz105', 0.0019465447076713405) + +[fips4812190637] +centroid = (0.57646671850338438, -1.6911516489251326) +description = Carrollton CCD, TX +station = ('kads', 0.0014231096988732146) +zone = ('txz103', 0.0044507829135530782) + +[fips4812191010] +centroid = (0.58021031012257207, -1.6956124661471348) +description = Denton CCD, TX +station = ('kdto', 0.0010401211786180648) +zone = ('txz103', 0.00084963121255307562) + +[fips4812191970] +centroid = (0.57760547602714052, -1.6975338467607779) +description = Justin-Roanoke CCD, TX +station = ('kdto', 0.0020513550546215576) +zone = ('txz103', 0.0028523835905885178) + +[fips4812192186] +centroid = (0.57752625553239245, -1.6938509925995595) +description = Lewisville-Flower Mound CCD, TX +station = ('kdto', 0.0029103759157639211) +zone = ('txz103', 0.0022224396116864845) + +[fips4812193035] +centroid = (0.58107754677459555, -1.6920502316905219) +description = Pilot Point-Aubrey CCD, TX +station = ('kdto', 0.0040314339956157618) +zone = ('txz103', 0.0029244317226400232) + +[fips4812193425] +centroid = (0.5819635282627853, -1.6973355424511662) +description = Sanger CCD, TX +station = ('kdto', 0.0026186058458652459) +zone = ('txz103', 0.0031176129570894412) + +[fips4812193892] +centroid = (0.57791563848851246, -1.6913238431091342) +description = The Colony CCD, TX +station = ('kads', 0.0027508038004318862) +zone = ('txz103', 0.0034824077872193005) + +[fips4812226] +centroid = (0.46062083846811108, -1.7263746272518206) +description = Campo Verde CDP, TX +station = ('kmfe', 0.011007812473591568) +zone = ('txz252', 0.0040467772433799721) + +[fips48123] +centroid = (0.50758262209103278, -1.6992814623940922) +description = DeWitt County, TX +station = ('kvct', 0.0075458865469710396) +zone = ('txz224', 7.4188098949313195e-05) + +[fips4812334] +centroid = (0.52688256022604862, -1.6980868019743947) +description = Camp Swift CDP, TX +station = ('kgyb', 0.0047371719286623051) +zone = ('txz193', 0.001502921658182212) + +[fips4812388] +centroid = (0.51782255607894601, -1.7455188820175587) +description = Camp Wood city, TX +station = ('kecu', 0.0054361919634970755) +zone = ('txz185', 0.0040311719614252008) + +[fips4812390925] +centroid = (0.50777399744351392, -1.6963059203655373) +description = Cuero CCD, TX +station = ('kvct', 0.0055806804995644629) +zone = ('txz224', 0.0025337535876961831) + +[fips4812394170] +centroid = (0.50746179294691718, -1.6992208820157557) +description = Westhoff-Arneckville CCD, TX +station = ('kvct', 0.0074402801416360827) +zone = ('txz224', 0.00011850372804842905) + +[fips4812394295] +centroid = (0.51013549773463229, -1.6961124680712463) +description = Yoakum CCD, TX +station = ('kvct', 0.0073539574945261097) +zone = ('txz224', 0.0037139667622629207) + +[fips4812394305] +centroid = (0.50595848850229685, -1.7026260019331041) +description = Yorktown CCD, TX +station = ('kvct', 0.0097089216780736811) +zone = ('txz224', 0.003407909829167432) + +[fips4812412] +centroid = (0.62674211443097227, -1.7520292219268854) +description = Canadian city, TX +station = ('khhf', 0.00028366343774433787) +zone = ('txz010', 0.0020380708711200818) + +[fips4812472] +centroid = (0.56216388490963087, -1.6761818726643145) +description = Caney City town, TX +station = ('kcrs', 0.0061139319115508751) +zone = ('txz135', 0.0027226137723828847) + +[fips4812496] +centroid = (0.56817876075090146, -1.6731343008975299) +description = Canton city, TX +station = ('kjdd', 0.0063121091732027557) +zone = ('txz122', 0.00043055758231011802) + +[fips48125] +centroid = (0.58668659865819217, -1.7590491979777945) +description = Dickens County, TX +station = ('kcds', 0.016032726405433136) +zone = ('txz037', 0.00010988896259588538) + +[fips4812502] +centroid = (0.47476434095444991, -1.7131397606273626) +description = Cantu Addition CDP, TX +station = ('kbks', 0.00054273431875161734) +zone = ('txz250', 0.0031309266488940939) + +[fips4812508] +centroid = (0.55708530839888537, -1.8605360099108148) +description = Canutillo CDP, TX +station = ('k5t6', 0.0016744279144478437) +zone = ('txz418', 0.00044869983425845615) + +[fips4812532] +centroid = (0.61073981883796713, -1.778699912385876) +description = Canyon city, TX +station = ('kama', 0.0048003307257333322) +zone = ('txz017', 0.00051638642878531181) + +[fips4812562] +centroid = (0.56532921404104775, -1.7058739898578952) +description = Canyon Creek CDP, TX +station = ('kgdj', 0.0014691514170137984) +zone = ('txz131', 0.0015284019746937903) + +[fips4812580] +centroid = (0.5215559026154245, -1.7150448573190846) +description = Canyon Lake CDP, TX +station = ('kbaz', 0.0043599957798049422) +zone = ('txz206', 0.0013202704025813098) + +[fips4812591050] +centroid = (0.58773599532424625, -1.7587203779467186) +description = Dickens CCD, TX +station = ('kcds', 0.01497454809033481) +zone = ('txz037', 0.0010296387713129409) + +[fips4812593705] +centroid = (0.5841725914970346, -1.7596942891226239) +description = Spur CCD, TX +station = ('ksnk', 0.013693256443655667) +zone = ('txz037', 0.0026274837734155949) + +[fips4812600] +centroid = (0.53500235550510189, -1.6603448597514732) +description = Cape Royale CDP, TX +station = ('k6r3', 0.0054328189888006783) +zone = ('txz178', 0.0013974355223573031) + +[fips48127] +centroid = (0.49608517837705751, -1.7412429300699279) +description = Dimmit County, TX +station = ('kftn', 0.0054128933793071423) +zone = ('txz228', 0.00014204223869426302) + +[fips4812736] +centroid = (0.56318991161700083, -1.72485996071377) +description = Carbon town, TX +station = ('kmkn', 0.0069960712872683701) +zone = ('txz129', 0.001027184674285368) + +[fips4812790140] +centroid = (0.49439000988776544, -1.7397595572853652) +description = Asherton CCD, TX +station = ('kftn', 0.0055198861168647166) +zone = ('txz228', 0.002040904646204465) + +[fips4812790310] +centroid = (0.49837594047359257, -1.7376603101676515) +description = Big Wells CCD, TX +station = ('kcot', 0.0055835685639019786) +zone = ('txz228', 0.0037925806002163838) + +[fips4812790635] +centroid = (0.4971293041487706, -1.7448308557731302) +description = Carrizo Springs CCD, TX +station = ('kftn', 0.0049817864449273747) +zone = ('txz228', 0.0034625052149353961) + +[fips4812892] +centroid = (0.55172035826447241, -1.7565106514873536) +description = Carlsbad CDP, TX +station = ('ksjt', 0.0050172535228915531) +zone = ('txz072', 0.0044824072286171841) + +[fips4812895] +centroid = (0.55996780692501658, -1.6938944163913492) +description = Carl's Corner town, TX +station = ('kinj', 0.00065398034781148152) +zone = ('txz145', 0.002004951419953712) + +[fips48129] +centroid = (0.61008046835314855, -1.7595684508835552) +description = Donley County, TX +station = ('kppa', 0.011763530569539766) +zone = ('txz019', 0.00018280299894213352) + +[fips4812916] +centroid = (0.52619111313628608, -1.6875663761223934) +description = Carmine city, TX +station = ('kgyb', 0.0043846285834392724) +zone = ('txz197', 0.0044780495613221463) + +[fips4812982] +centroid = (0.49750646980012653, -1.7423820890194119) +description = Carrizo Hill CDP, TX +station = ('kftn', 0.0059906717801982996) +zone = ('txz228', 0.0018381819600050747) + +[fips4812988] +centroid = (0.49786988225697676, -1.7428727883386101) +description = Carrizo Springs city, TX +station = ('kftn', 0.0061402192585919869) +zone = ('txz228', 0.0023934973667632162) + +[fips4812990730] +centroid = (0.61049959171972257, -1.7605478947531894) +description = Clarendon CCD, TX +station = ('kppa', 0.011201120654626522) +zone = ('txz019', 0.00086254045460388055) + +[fips4812991760] +centroid = (0.60838603290214244, -1.7570816708587287) +description = Hedley CCD, TX +station = ('kcds', 0.0092889975884527399) +zone = ('txz019', 0.002751054037801879) + +[fips4813024] +centroid = (0.5757554968331966, -1.6912200309252259) +description = Carrollton city, TX +station = ('kads', 0.0010438077899453477) +zone = ('txz119', 0.004262788979167354) + +[fips48131] +centroid = (0.48312673699953029, -1.7191038124808151) +description = Duval County, TX +station = ('knqi', 0.0034985278909518652) +zone = ('txz240', 0.00017787549345743662) + +[fips4813108] +centroid = (0.56115906395267268, -1.6464931937693603) +description = Carthage city, TX +station = ('kasl', 0.0064452847021501686) +zone = ('txz151', 0.00049943976369544809) + +[fips4813128] +centroid = (0.45898042095745412, -1.721073556168031) +description = Casa Blanca CDP, TX +station = ('kmfe', 0.0059820855762421831) +zone = ('txz252', 0.0050314907748903182) + +[fips4813150] +centroid = (0.46208187103824805, -1.7267110045585574) +description = Casas CDP, TX +station = ('kapy', 0.0099457474272614046) +zone = ('txz252', 0.0033989500860513886) + +[fips4813190260] +centroid = (0.48191326193049622, -1.7194010944123073) +description = Benavides CCD, TX +station = ('knqi', 0.0046293260747620113) +zone = ('txz240', 0.0012195605334180501) + +[fips4813191405] +centroid = (0.48707400854242577, -1.7215547608960982) +description = Freer CCD, TX +station = ('knqi', 0.0046245285295789347) +zone = ('txz240', 0.0044179975547556085) + +[fips4813193215] +centroid = (0.47848745986151164, -1.7199041157560244) +description = Realitos-Concepcion CCD, TX +station = ('khbv', 0.0032751875765445275) +zone = ('txz240', 0.0046726928195801928) + +[fips4813193420] +centroid = (0.48672628659555089, -1.716462972242915) +description = San Diego CCD, TX +station = ('knqi', 0.00094491211946519361) +zone = ('txz240', 0.0043880499572827537) + +[fips4813198] +centroid = (0.59404775167128099, -1.719292866545391) +description = Cashion Community city, TX +station = ('ksps', 0.00093430321051357092) +zone = ('txz086', 0.002944689018686835) + +[fips4813276] +centroid = (0.5153036969024678, -1.719481885703382) +description = Castle Hills city, TX +station = ('ksat', 0.00080963639762006987) +zone = ('txz205', 0.001320002581406758) + +[fips48133] +centroid = (0.56417148478832235, -1.7250233933449268) +description = Eastland County, TX +station = ('kbkd', 0.0069449177438706839) +zone = ('txz129', 7.6048088945305739e-05) + +[fips4813312] +centroid = (0.51229282940985243, -1.7256290051420762) +description = Castroville city, TX +station = ('kcvb', 0.00038738875570203612) +zone = ('txz204', 0.003633859751333159) + +[fips4813324] +centroid = (0.49480394962646096, -1.7386142373236215) +description = Catarina CDP, TX +station = ('kftn', 0.0066094459411119638) +zone = ('txz228', 0.0025119773604557753) + +[fips4813390725] +centroid = (0.56535295051887502, -1.728123848588047) +description = Cisco CCD, TX +station = ('kbkd', 0.0060035656628671533) +zone = ('txz129', 0.0029134778423683867) + +[fips4813391135] +centroid = (0.56578982388394172, -1.724492725985858) +description = Eastland CCD, TX +station = ('kbkd', 0.0054239696286080613) +zone = ('txz129', 0.0016219448476897066) + +[fips4813391590] +centroid = (0.56288486297033724, -1.7228622917585223) +description = Gorman CCD, TX +station = ('kmkn', 0.0060663445384362084) +zone = ('txz129', 0.0022089389710717722) + +[fips4813393190] +centroid = (0.56599069382755363, -1.7209272626701286) +description = Ranger CCD, TX +station = ('kbkd', 0.0066163034918711857) +zone = ('txz129', 0.0038329953973335715) + +[fips4813393250] +centroid = (0.56115079109201838, -1.7277432271847721) +description = Rising Star CCD, TX +station = ('kbwd', 0.006168107240894667) +zone = ('txz129', 0.0038692277164760897) + +[fips4813492] +centroid = (0.56870611198439147, -1.6922513459802293) +description = Cedar Hill city, TX +station = ('krbd', 0.0021941059757625641) +zone = ('txz119', 0.0041440739449716199) + +[fips48135] +centroid = (0.55615441958904155, -1.7897043703993329) +description = Ector County, TX +station = ('kodo', 0.0022941967448215791) +zone = ('txz061', 6.8188833819126515e-05) + +[fips4813552] +centroid = (0.53258264848342951, -1.707235346674451) +description = Cedar Park city, TX +station = ('kryw', 0.0023093364106254008) +zone = ('txz192', 0.0031873022532571431) + +[fips4813570] +centroid = (0.53757633217935807, -1.6594155591912487) +description = Cedar Point CDP, TX +station = ('k6r3', 0.0077609452261003025) +zone = ('txz178', 0.0040880595422179179) + +[fips4813592875] +centroid = (0.55724196915254431, -1.7866520338836902) +description = Odessa CCD, TX +station = ('kodo', 0.00051630360192568092) +zone = ('txz061', 0.0027887648317884853) + +[fips4813594173] +centroid = (0.55500023335469784, -1.7912826018287413) +description = West Odessa-Goldsmith CCD, TX +station = ('kodo', 0.0040160547667350112) +zone = ('txz061', 0.001811092896880059) + +[fips4813672] +centroid = (0.58105035454484943, -1.6789410287722075) +description = Celeste city, TX +station = ('kgvt', 0.0043603515394620273) +zone = ('txz105', 0.0033512324313020249) + +[fips4813684] +centroid = (0.58149550077057055, -1.6892593629501202) +description = Celina city, TX +station = ('ktki', 0.0037863413152541474) +zone = ('txz104', 0.003867017148704961) + +[fips48137] +centroid = (0.52335228274803969, -1.7506939228760621) +description = Edwards County, TX +station = ('kecu', 0.0021351411229530762) +zone = ('txz184', 7.0029100564890308e-05) + +[fips4813732] +centroid = (0.55491623065779927, -1.6437477734026809) +description = Center city, TX +station = ('koch', 0.0087825559308832343) +zone = ('txz153', 0.00051751807458994383) + +[fips4813793300] +centroid = (0.52712659216206248, -1.7471841704700566) +description = Rocksprings North CCD, TX +station = ('kecu', 0.0045731656566974756) +zone = ('txz184', 0.004863993573017378) + +[fips4813793305] +centroid = (0.52193121821777344, -1.7514923761022645) +description = Rocksprings South CCD, TX +station = ('kecu', 0.0028134909184672819) +zone = ('txz184', 0.001548032198125777) + +[fips48139] +centroid = (0.56456652261121887, -1.6894496736517579) +description = Ellis County, TX +station = ('kjwy', 0.0025310251458780476) +zone = ('txz134', 5.9849407894122107e-05) + +[fips4813900] +centroid = (0.54555726906312263, -1.6751612041177484) +description = Centerville city, TX +station = ('kpsn', 0.0099674989181997801) +zone = ('txz162', 0.00071112290133298981) + +[fips4813972] +centroid = (0.52338420482005865, -1.6410088456608185) +description = Central Gardens CDP, TX +station = ('kbmt', 0.0033068006703650564) +zone = ('txz215', 0.0028964161334787404) + +[fips4813991250] +centroid = (0.56452994051009697, -1.6854764141563001) +description = Ennis CCD, TX +station = ('klnc', 0.0046303856889139379) +zone = ('txz134', 0.0033006248553474581) + +[fips4813991310] +centroid = (0.56706220381523054, -1.6866391175973938) +description = Ferris CCD, TX +station = ('klnc', 0.0019617250202012453) +zone = ('txz134', 0.0033904319417502236) + +[fips4813991895] +centroid = (0.56156804695629259, -1.6916988794588028) +description = Italy CCD, TX +station = ('kinj', 0.0029834665399359407) +zone = ('txz134', 0.0035978606148090752) + +[fips4813992490] +centroid = (0.56427308040408108, -1.692672511382028) +description = Maypearl CCD, TX +station = ('kjwy', 0.0024239233488064014) +zone = ('txz134', 0.0027970904725861112) + +[fips4813992570] +centroid = (0.56684286828813246, -1.6932366890627351) +description = Midlothian CCD, TX +station = ('kjwy', 0.0015653508313746511) +zone = ('txz134', 0.0039596177260906177) + +[fips4813994090] +centroid = (0.56480200243389789, -1.6899264277902326) +description = Waxahachie CCD, TX +station = ('kjwy', 0.0020928342059835653) +zone = ('txz134', 0.00050751553662169309) + +[fips4814038] +centroid = (0.45920452123341021, -1.7124168627044791) +description = Cesar Chavez CDP, TX +station = ('kebg', 0.0023067232895322971) +zone = ('txz253', 0.0018337003702751924) + +[fips48141] +centroid = (0.5544283238654043, -1.8542620748486709) +description = El Paso County, TX +station = ('kelp', 0.0022811181463270555) +zone = ('txz419', 0.0012770962680599112) + +[fips4814191215] +centroid = (0.55483882530547335, -1.8571879273534218) +description = El Paso CCD, TX +station = ('kelp', 0.00060261886381797729) +zone = ('txz419', 0.0017002662722393445) + +[fips4814191220] +centroid = (0.55281652975448003, -1.8520561532070754) +description = El Paso East CCD, TX +station = ('kelp', 0.0046964682185195485) +zone = ('txz419', 0.0037453310730884374) + +[fips4814191225] +centroid = (0.55716986960114445, -1.8541487331670465) +description = El Paso North Central CCD, TX +station = ('kbif', 0.0025463133277324576) +zone = ('txz419', 0.0020477136186113289) + +[fips4814191230] +centroid = (0.55761325304432108, -1.8592655498417032) +description = El Paso Northwest CCD, TX +station = ('kbif', 0.0027528243179134404) +zone = ('txz418', 0.001148813236326502) + +[fips4814224] +centroid = (0.56386161903292342, -1.6663277262542622) +description = Chandler city, TX +station = ('ktyr', 0.0013200648805866398) +zone = ('txz136', 0.0032392709606999682) + +[fips4814236] +centroid = (0.51998634547239864, -1.6600608772288812) +description = Channelview CDP, TX +station = ('kefd', 0.0034605419922505726) +zone = ('txz213', 0.0043536164177269063) + +[fips4814260] +centroid = (0.62276665582065727, -1.7860345887542122) +description = Channing city, TX +station = ('kdux', 0.0054638373285011543) +zone = ('txz006', 0.0047230836690418535) + +[fips4814266] +centroid = (0.45973398431529522, -1.7232569805155684) +description = Chaparrito CDP, TX +station = ('kmfe', 0.0080785649361830789) +zone = ('txz252', 0.0038624105994061056) + +[fips4814290] +centroid = (0.46340025784861949, -1.7302126237302489) +description = Chapeno CDP, TX +station = ('kapy', 0.0075355456276918857) +zone = ('txz252', 0.0061772990063450198) + +[fips48143] +centroid = (0.56266161790571467, -1.7143038777851503) +description = Erath County, TX +station = ('ksep', 0.00068753923222255686) +zone = ('txz130', 7.2126059617984168e-05) + +[fips4814391085] +centroid = (0.56039192193325116, -1.7167807792464107) +description = Dublin CCD, TX +station = ('ksep', 0.0032771153224958965) +zone = ('txz130', 0.0031109548756941361) + +[fips4814391087] +centroid = (0.55988694582077159, -1.7116407845992874) +description = Duffau-Clairette CCD, TX +station = ('ksep', 0.0029282917910342368) +zone = ('txz130', 0.0035096304312233458) + +[fips4814392645] +centroid = (0.56582731355627447, -1.7144054908542015) +description = Morgan Mill-Bluff Dale CCD, TX +station = ('ksep', 0.0036017207475200724) +zone = ('txz130', 0.0032012755585813326) + +[fips4814393735] +centroid = (0.56277658274354359, -1.7145786798758769) +description = Stephenville CCD, TX +station = ('ksep', 0.00094556312915815982) +zone = ('txz130', 0.00033143373077076672) + +[fips4814404] +centroid = (0.50368577311022744, -1.7226483492988127) +description = Charlotte city, TX +station = ('kpez', 0.0031816477754930657) +zone = ('txz220', 0.0026947704516061379) + +[fips48145] +centroid = (0.54544907610279147, -1.6918196911496259) +description = Falls County, TX +station = ('kt35', 0.0065260883880814491) +zone = ('txz160', 3.4555789597077064e-05) + +[fips4814584] +centroid = (0.53967882560948055, -1.6510831479027175) +description = Chester town, TX +station = ('klfk', 0.0058886814504824437) +zone = ('txz179', 0.004110553990463681) + +[fips4814590710] +centroid = (0.54629763773181861, -1.6950729325154659) +description = Chilton CCD, TX +station = ('kpwg', 0.004326279309285406) +zone = ('txz160', 0.0028762525251209113) + +[fips4814592300] +centroid = (0.54444699531275886, -1.6943251811040339) +description = Lott CCD, TX +station = ('ktpl', 0.0048755701080240993) +zone = ('txz160', 0.0023530681348346515) + +[fips4814592425] +centroid = (0.54700313472205975, -1.690770940255395) +description = Marlin CCD, TX +station = ('kcnw', 0.0059786384927622352) +zone = ('txz160', 0.0017859827915513468) + +[fips4814593000] +centroid = (0.54863152691417039, -1.6907666467454352) +description = Perry CCD, TX +station = ('kcnw', 0.0046272422024596881) +zone = ('txz160', 0.0032909998875360596) + +[fips4814593210] +centroid = (0.54530461520060391, -1.6886316203780556) +description = Reagan CCD, TX +station = ('klhb', 0.0067738495588712576) +zone = ('txz160', 0.0027556601612874396) + +[fips4814593330] +centroid = (0.54265428037157293, -1.6925982825289407) +description = Rosebud CCD, TX +station = ('kt35', 0.0037096095020918603) +zone = ('txz160', 0.0028907178499058207) + +[fips4814620] +centroid = (0.58112871982826386, -1.7069150263968322) +description = Chico city, TX +station = ('kxbp', 0.0021538103916693284) +zone = ('txz102', 0.0025339477633332381) + +[fips4814668] +centroid = (0.60101201681246641, -1.7502577650959885) +description = Childress city, TX +station = ('kcds', 3.9427087128506606e-05) +zone = ('txz026', 0.0019582430895597989) + +[fips4814680] +centroid = (0.59787546816041492, -1.7368494301971751) +description = Chillicothe city, TX +station = ('kf05', 0.0033676361739993976) +zone = ('txz083', 0.0033937363671376359) + +[fips4814692] +centroid = (0.54604435555076913, -1.6940235882092891) +description = Chilton CDP, TX +station = ('kpwg', 0.0051416550450699879) +zone = ('txz160', 0.0019446356263290855) + +[fips48147] +centroid = (0.58627635901751096, -1.6773484681896402) +description = Fannin County, TX +station = ('kdua', 0.0074283200835004786) +zone = ('txz094', 5.3240249544948546e-05) + +[fips4814704] +centroid = (0.52431680405256931, -1.6465018331491577) +description = China city, TX +station = ('kbmt', 0.0018466418866218152) +zone = ('txz215', 0.0037143427334273985) + +[fips4814716] +centroid = (0.5130032831351693, -1.7164540885170223) +description = China Grove town, TX +station = ('kssf', 0.0021152752783630572) +zone = ('txz205', 0.0028257161048775743) + +[fips4814740] +centroid = (0.55238314704791724, -1.6982886493023879) +description = China Spring CDP, TX +station = ('kact', 0.0015660554847602506) +zone = ('txz159', 0.0022800808575885079) + +[fips4814776] +centroid = (0.54976035351448282, -1.6466458053591548) +description = Chireno city, TX +station = ('koch', 0.0057090019795422216) +zone = ('txz166', 0.0032155411525327826) + +[fips4814790375] +centroid = (0.58563381605338927, -1.6789502615639504) +description = Bonham CCD, TX +station = ('kdua', 0.0073524724844166982) +zone = ('txz094', 0.001481766921381518) + +[fips4814791070] +centroid = (0.58553120814666448, -1.6759605649151619) +description = Dodd City CCD, TX +station = ('kgvt', 0.0084304481079868036) +zone = ('txz094', 0.0014215503597657714) + +[fips4814791150] +centroid = (0.58650580000097807, -1.6812689140219323) +description = Ector CCD, TX +station = ('kgyi', 0.0052744886947548794) +zone = ('txz094', 0.0032471058405559505) + +[fips4814791825] +centroid = (0.58676143837651773, -1.6740432509186758) +description = Honey Grove CCD, TX +station = ('kprx', 0.0067713116670393226) +zone = ('txz094', 0.0028104383807187744) + +[fips4814792075] +centroid = (0.58341974372418681, -1.6749882768954607) +description = Ladonia CCD, TX +station = ('kgvt', 0.0064544399215730741) +zone = ('txz094', 0.0035215199903649557) + +[fips4814792175] +centroid = (0.58339366850516206, -1.6794918721374292) +description = Leonard CCD, TX +station = ('ktki', 0.0066957742310153768) +zone = ('txz094', 0.0034202922982642511) + +[fips4814793200] +centroid = (0.58897261345916196, -1.6768955901553328) +description = Ravenna-Telephone CCD, TX +station = ('kdua', 0.0057162200573912941) +zone = ('txz094', 0.0026785338600957883) + +[fips4814860] +centroid = (0.50241609843927915, -1.7191108985175783) +description = Christine town, TX +station = ('kpez', 0.0028768026662735389) +zone = ('txz220', 0.0018789695900416552) + +[fips4814872] +centroid = (0.54450108306627831, -1.7539389961010026) +description = Christoval CDP, TX +station = ('ksjt', 0.0026615135620523468) +zone = ('txz072', 0.0036389689046178023) + +[fips4814880] +centroid = (0.45507446135795343, -1.7006439885812468) +description = Chula Vista CDP, TX +station = ('kpil', 0.0023246687774725197) +zone = ('txz255', 0.0023325205425315512) + +[fips4814881] +centroid = (0.50016228496300874, -1.7527407926629235) +description = Chula Vista CDP, TX +station = ('mmpg', 0.0015948497823980504) +zone = ('txz217', 0.0022507436743055141) + +[fips4814882] +centroid = (0.50020349218664828, -1.7419134681152513) +description = Chula Vista CDP, TX +station = ('kftn', 0.0086197065568501124) +zone = ('txz218', 0.0036681606971544307) + +[fips48149] +centroid = (0.52146748423551847, -1.6915945960359964) +description = Fayette County, TX +station = ('k3t5', 0.00068319799675788779) +zone = ('txz209', 2.8779462515500461e-05) + +[fips4814920] +centroid = (0.51622463733557522, -1.7145518367119812) +description = Cibolo city, TX +station = ('krnd', 0.001047753163601307) +zone = ('txz206', 0.0040757324819567326) + +[fips4814927] +centroid = (0.51258545131224176, -1.7617851063000507) +description = Cienegas Terrace CDP, TX +station = ('kdrt', 0.00040031968899375972) +zone = ('txz202', 0.0079905381770418345) + +[fips4814929] +centroid = (0.51905840626899069, -1.6713390552289282) +description = Cinco Ranch CDP, TX +station = ('ktme', 0.0024400217034712735) +zone = ('txz227', 0.0037111748479265417) + +[fips4814986] +centroid = (0.52639926110287893, -1.6971554244723603) +description = Circle D-KC Estates CDP, TX +station = ('kgyb', 0.0039239320880628615) +zone = ('txz193', 0.0014745684043850592) + +[fips4814991305] +centroid = (0.5223788602643249, -1.6875889781362068) +description = Fayetteville CCD, TX +station = ('k3t5', 0.0039258941029555279) +zone = ('txz209', 0.0035738976623362387) + +[fips4814991320] +centroid = (0.51946951857429802, -1.694976869593436) +description = Flatonia CCD, TX +station = ('k3t5', 0.0035517974202798975) +zone = ('txz209', 0.0035573864477072576) + +[fips4814992080] +centroid = (0.52324943049521966, -1.6910503849219318) +description = La Grange CCD, TX +station = ('k3t5', 0.0015485547797778577) +zone = ('txz209', 0.0018562700011355107) + +[fips4814992085] +centroid = (0.5217492850965455, -1.6925156237355661) +description = La Grange West CCD, TX +station = ('k3t5', 0.00043793261160148477) +zone = ('txz209', 0.00087360949745456096) + +[fips4814993345] +centroid = (0.52481823714666731, -1.688727770566548) +description = Round Top CCD, TX +station = ('kgyb', 0.0037868126743599681) +zone = ('txz209', 0.0041731583877366394) + +[fips4814993475] +centroid = (0.51894719388905364, -1.6905202411616385) +description = Schulenburg CCD, TX +station = ('k3t5', 0.0033397519229574585) +zone = ('txz209', 0.0026619195608532991) + +[fips4815004] +centroid = (0.56522498297811874, -1.727532862650029) +description = Cisco city, TX +station = ('kbkd', 0.0059959017142351316) +zone = ('txz129', 0.0024052830095194324) + +[fips4815028] +centroid = (0.45951152464883604, -1.7172698554094044) +description = Citrus City CDP, TX +station = ('kmfe', 0.0033680309487527649) +zone = ('txz253', 0.0035140961265246141) + +[fips48151] +centroid = (0.5714290525103054, -1.752365023274969) +description = Fisher County, TX +station = ('ksww', 0.0048590019957838928) +zone = ('txz049', 4.280058379686954e-05) + +[fips4815112] +centroid = (0.60976416233280961, -1.7608995262375886) +description = Clarendon city, TX +station = ('kppa', 0.011888777644643373) +zone = ('txz019', 0.0012230322438525406) + +[fips4815160] +centroid = (0.5866222134620861, -1.6590422856241249) +description = Clarksville city, TX +station = ('klbr', 0.00032989225478717072) +zone = ('txz096', 0.00018897569582533295) + +[fips4815172] +centroid = (0.56782552356359028, -1.656225725637134) +description = Clarksville City city, TX +station = ('kjxi', 0.0029847169050613875) +zone = ('txz137', 0.0014769246041015482) + +[fips4815192350] +centroid = (0.57347592229716682, -1.7495055456416717) +description = McCaulley CCD, TX +station = ('ksww', 0.0075889879417030248) +zone = ('txz049', 0.0031205008736728615) + +[fips4815193275] +centroid = (0.56971047915574424, -1.7522792228889412) +description = Roby CCD, TX +station = ('ksww', 0.0032112326394784321) +zone = ('txz049', 0.0017601660607557039) + +[fips4815193340] +centroid = (0.57357406216100648, -1.7540754808485084) +description = Rotan CCD, TX +station = ('ksww', 0.0069329431617779665) +zone = ('txz049', 0.00255625933111343) + +[fips4815196] +centroid = (0.6127391458560042, -1.7691160302104949) +description = Claude city, TX +station = ('kama', 0.0053964093388381221) +zone = ('txz018', 0.0024877520348683549) + +[fips48153] +centroid = (0.59469879438885997, -1.7680756743499662) +description = Floyd County, TX +station = ('kpvw', 0.0062034845060352176) +zone = ('txz030', 2.3254950955928895e-05) + +[fips4815328] +centroid = (0.51568416122611005, -1.6586315921978381) +description = Clear Lake Shores city, TX +station = ('kefd', 0.0022390151259317013) +zone = ('txz238', 0.0028522449986889092) + +[fips4815364] +centroid = (0.56465890288852694, -1.7001111221073204) +description = Cleburne city, TX +station = ('kcpt', 0.00036049073401961444) +zone = ('txz133', 0.00078266931580508797) + +[fips4815391335] +centroid = (0.59239543101512548, -1.7679939580343877) +description = Floydada CCD, TX +station = ('kpvw', 0.0072279611921315734) +zone = ('txz030', 0.0022811075199502821) + +[fips4815392250] +centroid = (0.5965369577037678, -1.768038778089579) +description = Lockney CCD, TX +station = ('kpvw', 0.0060109172368593691) +zone = ('txz030', 0.0018616269819090544) + +[fips4815436] +centroid = (0.52951596536133527, -1.6598109460799957) +description = Cleveland city, TX +station = ('k6r3', 0.0014064293830282322) +zone = ('txz178', 0.0043171177436784388) + +[fips4815472] +centroid = (0.55470118864066109, -1.7031250788327117) +description = Clifton city, TX +station = ('kact', 0.0062857782182439018) +zone = ('txz144', 0.0022071983013149422) + +[fips48155] +centroid = (0.59306993095785121, -1.7414446203182883) +description = Foard County, TX +station = ('kf05', 0.0083209097915433582) +zone = ('txz084', 0.00010163781776903626) + +[fips4815544] +centroid = (0.55135291409705012, -1.8540402085941574) +description = Clint town, TX +station = ('mmcs', 0.0031336834611026139) +zone = ('txz419', 0.0041483091214126831) + +[fips4815590915] +centroid = (0.5931490292795516, -1.7427919621409502) +description = Crowell CCD, TX +station = ('kf05', 0.0092591296439088321) +zone = ('txz084', 0.0011235468734891688) + +[fips4815593890] +centroid = (0.59203632952152763, -1.7372364569588046) +description = Thalia CCD, TX +station = ('kf05', 0.0064472825771296274) +zone = ('txz084', 0.0036212294872407526) + +[fips4815628] +centroid = (0.51989440152740352, -1.6610837274370125) +description = Cloverleaf CDP, TX +station = ('khou', 0.0031712565430585494) +zone = ('txz213', 0.003534277343390299) + +[fips4815652] +centroid = (0.50661907817088425, -1.6650230751851041) +description = Clute city, TX +station = ('klbx', 0.0018744906419398057) +zone = ('txz237', 0.0029910955838106609) + +[fips4815676] +centroid = (0.56558417173817921, -1.7366709877344511) +description = Clyde city, TX +station = ('kabi', 0.0026506568955817953) +zone = ('txz128', 0.0026913067555024866) + +[fips48157] +centroid = (0.51533642182594275, -1.6715195397268772) +description = Fort Bend County, TX +station = ('ksgr', 0.0024177389645355304) +zone = ('txz227', 1.472636610369448e-05) + +[fips4815700] +centroid = (0.56366706718120352, -1.7681725226701595) +description = Coahoma town, TX +station = ('kbpg', 0.0034935655944208178) +zone = ('txz052', 0.0018776844071312021) + +[fips4815791415] +centroid = (0.51796349141604459, -1.6730130179678087) +description = Fulshear-Simonton CCD, TX +station = ('ktme', 0.0024106715563878933) +zone = ('txz227', 0.0029201299340058102) + +[fips4815792715] +centroid = (0.51264091787587018, -1.6716600387316627) +description = Needville CCD, TX +station = ('ksgr', 0.0046962965662078306) +zone = ('txz227', 0.0027124126838805399) + +[fips4815792915] +centroid = (0.51538136405418167, -1.6750585962110236) +description = Orchard-Kendleton CCD, TX +station = ('ktme', 0.0050274009338395365) +zone = ('txz227', 0.0030843164062635087) + +[fips4815793337] +centroid = (0.51491016006272816, -1.6709456405622365) +description = Rosenberg-Richmond CCD, TX +station = ('ksgr', 0.0024047879030816635) +zone = ('txz227', 0.00066214396451536972) + +[fips4815793715] +centroid = (0.51556219761798072, -1.6668609767006239) +description = Stafford-Missouri City CCD, TX +station = ('kaxh', 0.00063223724867155157) +zone = ('txz227', 0.0040540207842174108) + +[fips4815793780] +centroid = (0.51694641824773746, -1.6694835433412556) +description = Sugar Land CCD, TX +station = ('ksgr', 7.6339773010541728e-05) +zone = ('txz227', 0.0023803600093132622) + +[fips4815796] +centroid = (0.57138906701714232, -1.6910242049831519) +description = Cockrell Hill city, TX +station = ('krbd', 0.0010097915914319203) +zone = ('txz119', 0.0016982206219893351) + +[fips4815820] +centroid = (0.56073105686020608, -1.666291667751916) +description = Coffee City town, TX +station = ('ktyr', 0.004023785699472775) +zone = ('txz136', 0.0052508078137764487) + +[fips4815892] +centroid = (0.5338885038297716, -1.6603440394467248) +description = Coldspring city, TX +station = ('k6r3', 0.0043987576187739623) +zone = ('txz178', 0.00057091838320167602) + +[fips48159] +centroid = (0.57902774483459074, -1.661886212373787) +description = Franklin County, TX +station = ('kosa', 0.0040199227801827071) +zone = ('txz108', 1.0634408679454419e-05) + +[fips4815916] +centroid = (0.5555623515468876, -1.7352447570295988) +description = Coleman city, TX +station = ('kcom', 0.00036195405098621134) +zone = ('txz139', 0.0011171164119012655) + +[fips4815976] +centroid = (0.53387218500126543, -1.6806824310333848) +description = College Station city, TX +station = ('kcll', 0.0010656200899882939) +zone = ('txz196', 0.0012684849121821877) + +[fips4815988] +centroid = (0.57406998001466814, -1.6955811025804766) +description = Colleyville city, TX +station = ('kdfw', 0.001710483644751322) +zone = ('txz118', 0.0029734040364679374) + +[fips4815992675] +centroid = (0.5796904114449879, -1.6618977140935576) +description = Mount Vernon CCD, TX +station = ('kosa', 0.0043045354705613268) +zone = ('txz108', 0.00066724080830787304) + +[fips4815994250] +centroid = (0.57608567822108891, -1.6619105946234372) +description = Winnsboro CCD, TX +station = ('kosa', 0.0040893877786799251) +zone = ('txz108', 0.0029379279758529673) + +[fips4816036] +centroid = (0.58571870886820621, -1.691356428406269) +description = Collinsville town, TX +station = ('kgyi', 0.0044505529081070166) +zone = ('txz093', 0.0035456111913524141) + +[fips4816048] +centroid = (0.53947526785882038, -1.6479758160623446) +description = Colmesneil city, TX +station = ('kjas', 0.0058161503292556097) +zone = ('txz180', 0.0025111032182536597) + +[fips48161] +centroid = (0.55329824062803046, -1.6780334924677556) +description = Freestone County, TX +station = ('kcrs', 0.0065414374844023019) +zone = ('txz147', 9.0618412376342375e-05) + +[fips4816110] +centroid = (0.48249461365104301, -1.7316177534044443) +description = Colorado Acres CDP, TX +station = ('klrd', 0.0042097986435027258) +zone = ('txz239', 0.0027190484703389218) + +[fips4816120] +centroid = (0.56547770665380759, -1.7603094827773671) +description = Colorado City city, TX +station = ('ksnk', 0.0053041099357952308) +zone = ('txz053', 0.0018737185564604083) + +[fips4816168] +centroid = (0.51841127308893631, -1.6852385606858384) +description = Columbus city, TX +station = ('k3t5', 0.0069462107694364013) +zone = ('txz210', 0.00150490567197555) + +[fips4816190555] +centroid = (0.55228731101869033, -1.6747425519900725) +description = Butler CCD, TX +station = ('kpsn', 0.0043978524944432492) +zone = ('txz147', 0.0030635259256955472) + +[fips4816191275] +centroid = (0.55533751823264565, -1.6776578976127261) +description = Fairfield CCD, TX +station = ('kcrs', 0.0051835676119268382) +zone = ('txz147', 0.0020206238789410784) + +[fips4816192] +centroid = (0.55676839151330815, -1.720970808634966) +description = Comanche city, TX +station = ('kmkn', 0.00028894181428347889) +zone = ('txz141', 0.0010749646230396206) + +[fips4816193850] +centroid = (0.55148395341728984, -1.6798200987565592) +description = Teague CCD, TX +station = ('kcrs', 0.0075883170712208944) +zone = ('txz147', 0.0023671075258789496) + +[fips4816194290] +centroid = (0.55520700251118149, -1.6814444766913905) +description = Wortham CCD, TX +station = ('kcrs', 0.0036470674000997731) +zone = ('txz147', 0.0033818579201295462) + +[fips4816204] +centroid = (0.45808574772958927, -1.7056527344686201) +description = Combes town, TX +station = ('khrl', 0.0013080471495751705) +zone = ('txz255', 0.0031905997638665604) + +[fips4816216] +centroid = (0.56880425184823113, -1.6845428724459934) +description = Combine city, TX +station = ('khqz', 0.0027444860273008694) +zone = ('txz121', 0.0033757664939822901) + +[fips4816228] +centroid = (0.52313692657163613, -1.7261570894138523) +description = Comfort CDP, TX +station = ('kerv', 0.0027516100283956767) +zone = ('txz189', 0.0029155340446000511) + +[fips4816240] +centroid = (0.58016517590811545, -1.6737678205094189) +description = Commerce city, TX +station = ('kgvt', 0.0038990325035856738) +zone = ('txz105', 0.0033981108438464066) + +[fips4816252] +centroid = (0.5770052747506722, -1.6663642210889213) +description = Como town, TX +station = ('kslr', 0.0027639080578904839) +zone = ('txz107', 0.002027515248981396) + +[fips48163] +centroid = (0.50386493115794462, -1.729774668261046) +description = Frio County, TX +station = ('kcot', 0.0075029222748251431) +zone = ('txz219', 2.7792906703419676e-05) + +[fips4816300] +centroid = (0.47813526987175176, -1.7166295464667254) +description = Concepcion CDP, TX +station = ('kbks', 0.0049039577808594349) +zone = ('txz240', 0.0055291994267229212) + +[fips4816391055] +centroid = (0.50133636795082537, -1.7325638789386579) +description = Dilley CCD, TX +station = ('kcot', 0.0048558616703521509) +zone = ('txz219', 0.0035028654368390584) + +[fips4816392635] +centroid = (0.50648020232230306, -1.7266401441909265) +description = Moore CCD, TX +station = ('kcvb', 0.0057279647041942397) +zone = ('txz219', 0.003803114703309564) + +[fips4816392980] +centroid = (0.50396157003862752, -1.7297786476117403) +description = Pearsall CCD, TX +station = ('kcot', 0.0075964508231339146) +zone = ('txz219', 0.00012389646896794021) + +[fips4816432] +centroid = (0.52911431274057374, -1.6662657147059388) +description = Conroe city, TX +station = ('kcxo', 0.00099854437808409601) +zone = ('txz199', 0.00056882330512300226) + +[fips4816468] +centroid = (0.51511865709517146, -1.715750703375176) +description = Converse city, TX +station = ('krnd', 0.00047267607850460993) +zone = ('txz205', 0.0034527316102959667) + +[fips48165] +centroid = (0.57148959798205701, -1.7912586733646967) +description = Gaines County, TX +station = ('kgnc', 0.0012372349784358912) +zone = ('txz045', 7.7807126285445597e-05) + +[fips4816540] +centroid = (0.57243876038916919, -1.7106372900925608) +description = Cool city, TX +station = ('kmwl', 0.00083953639986680893) +zone = ('txz117', 0.0030615700195937958) + +[fips4816552] +centroid = (0.55416730987576845, -1.6868994683619138) +description = Coolidge town, TX +station = ('kcrs', 0.0061078850526146934) +zone = ('txz161', 0.0037490942208004297) + +[fips4816564] +centroid = (0.58245105108274486, -1.670117813444723) +description = Cooper city, TX +station = ('kslr', 0.0038180186961167895) +zone = ('txz106', 0.00036651624789011393) + +[fips4816593485] +centroid = (0.57352639721913445, -1.7881980290818142) +description = Seagraves CCD, TX +station = ('kgnc', 0.0043319872419152333) +zone = ('txz045', 0.0033583126946432717) + +[fips4816593520] +centroid = (0.57054499088429267, -1.7928835574450108) +description = Seminole CCD, TX +station = ('kgnc', 0.0010900071775683921) +zone = ('txz045', 0.0015856846042194117) + +[fips4816612] +centroid = (0.57531822204240202, -1.6928045629932338) +description = Coppell city, TX +station = ('kdfw', 0.0012702203643494927) +zone = ('txz103', 0.0045952165148365432) + +[fips4816624] +centroid = (0.54309344011795979, -1.7089273561177969) +description = Copperas Cove city, TX +station = ('kgrk', 0.0017032302411538595) +zone = ('txz156', 0.0050770987312675304) + +[fips4816636] +centroid = (0.57764598511907927, -1.6946645603770842) +description = Copper Canyon town, TX +station = ('kdto', 0.0023477255779969165) +zone = ('txz103', 0.0019009143471017116) + +[fips4816696] +centroid = (0.57846791302372103, -1.6942345810625628) +description = Corinth city, TX +station = ('kdto', 0.0021054876615118814) +zone = ('txz103', 0.0012412749362020999) + +[fips48167] +centroid = (0.51013715579742169, -1.6562278374855288) +description = Galveston County, TX +station = ('kgls', 0.00078952643372065382) +zone = ('txz238', 0.0030771564296223131) + +[fips4816790370] +centroid = (0.51425229310777398, -1.6523203419962862) +description = Bolivar Peninsula CCD, TX +station = ('kgls', 0.0045585050972857177) +zone = ('txz214', 0.0048821509692447314) + +[fips4816791445] +centroid = (0.51013715579742169, -1.6562278374855288) +description = Galveston CCD, TX +station = ('kgls', 0.00078952643372065382) +zone = ('txz238', 0.0030771564296223131) + +[fips4816792100] +centroid = (0.51144351728924697, -1.6586270019819052) +description = La Marque-Hitchcock CCD, TX +station = ('kgls', 0.0026026848908739983) +zone = ('txz238', 0.0018840379493673483) + +[fips4816793880] +centroid = (0.51380648365693704, -1.6591956127989125) +description = Texas City-League City CCD, TX +station = ('klvj', 0.0031223725987952781) +zone = ('txz238', 0.0017100194224754916) + +[fips48169] +centroid = (0.57916642869695412, -1.7680383243039735) +description = Garza County, TX +station = ('ksnk', 0.0099843460071625117) +zone = ('txz042', 7.8798218190587681e-05) + +[fips4816993108] +centroid = (0.57860279206831511, -1.7662470754393591) +description = Post East CCD, TX +station = ('ksnk', 0.0087845573142028999) +zone = ('txz042', 0.0015413811787836787) + +[fips4816993118] +centroid = (0.57975807786008782, -1.770534633826516) +description = Post West CCD, TX +station = ('klbb', 0.0095307680319757729) +zone = ('txz042', 0.0022286197762980595) + +[fips4817000] +centroid = (0.48440307882822126, -1.69599551355807) +description = Corpus Christi city, TX +station = ('kras', 0.0016485382348981627) +zone = ('txz244', 0.0069456578101447239) + +[fips4817024] +centroid = (0.57767801191085344, -1.6969905083113395) +description = Corral City town, TX +station = ('kdto', 0.0018261333403604288) +zone = ('txz103', 0.0024798529273979391) + +[fips4817036] +centroid = (0.54103129870014344, -1.6550518869954127) +description = Corrigan town, TX +station = ('klfk', 0.0042538106613279588) +zone = ('txz179', 0.0035957496095544951) + +[fips4817060] +centroid = (0.55993447113630346, -1.6836983599808311) +description = Corsicana city, TX +station = ('kcrs', 0.0017013107106318818) +zone = ('txz146', 0.00061111696830796276) + +[fips48171] +centroid = (0.5292953557438832, -1.7268655185572366) +description = Gillespie County, TX +station = ('kt82', 0.0015263219646155833) +zone = ('txz188', 0.00015849168361464381) + +[fips4817191395] +centroid = (0.5292953557438832, -1.7268655185572366) +description = Fredericksburg CCD, TX +station = ('kt82', 0.0015263219646155833) +zone = ('txz188', 0.00015849168361464381) + +[fips4817191725] +centroid = (0.52924006371318, -1.7307425056911543) +description = Harper CCD, TX +station = ('kt82', 0.004083843663619427) +zone = ('txz188', 0.0032831915804046132) + +[fips4817193757] +centroid = (0.52912963673140623, -1.7225354090429161) +description = Stonewall CCD, TX +station = ('kt82', 0.0034899024887351856) +zone = ('txz188', 0.0038026824618541022) + +[fips4817200] +centroid = (0.56665601333841387, -1.6823958207600678) +description = Cottonwood city, TX +station = ('ktrl', 0.0047438422209309791) +zone = ('txz121', 0.0027931746294963091) + +[fips4817208] +centroid = (0.53323522709075011, -1.7160898906620088) +description = Cottonwood Shores city, TX +station = ('kdzb', 0.00065619534619214899) +zone = ('txz172', 0.0046426848046080618) + +[fips4817216] +centroid = (0.49630779512314938, -1.7320070665473941) +description = Cotulla city, TX +station = ('kcot', 0.00038896891347714593) +zone = ('txz229', 0.0026382593051797508) + +[fips4817236] +centroid = (0.48738431063013776, -1.6958668304323203) +description = Country Acres CDP, TX +station = ('ktfp', 0.00053154237564348428) +zone = ('txz245', 0.0045142389753934972) + +[fips48173] +centroid = (0.55621184092143217, -1.7720148301118397) +description = Glasscock County, TX +station = ('kbpg', 0.0057870424315385506) +zone = ('txz063', 0.0001221479623645694) + +[fips4817336] +centroid = (0.52035127636569811, -1.654784834166565) +description = Cove city, TX +station = ('kefd', 0.0065435507357251869) +zone = ('txz214', 0.003359686686397629) + +[fips4817372] +centroid = (0.56163150712789511, -1.6975221181482043) +description = Covington city, TX +station = ('kinj', 0.0029399941843882933) +zone = ('txz145', 0.0037976407817432679) + +[fips4817391455] +centroid = (0.55800556815358437, -1.771579195930542) +description = Garden City North CCD, TX +station = ('kbpg', 0.0039948369107398289) +zone = ('txz063', 0.0017951747051179632) + +[fips4817391460] +centroid = (0.55438195046717875, -1.7723903377004064) +description = Garden City South CCD, TX +station = ('kbpg', 0.0076305115371210442) +zone = ('txz063', 0.0018975371543272865) + +[fips4817408] +centroid = (0.54525792764311298, -1.7988205916016424) +description = Coyanosa CDP, TX +station = ('kfst', 0.0060781532503609119) +zone = ('txz067', 0.0047199157745239483) + +[fips4817426] +centroid = (0.48368618483796461, -1.7127724560862805) +description = Coyote Acres CDP, TX +station = ('kali', 0.0018561908248005167) +zone = ('txz241', 0.0007536757108816349) + +[fips4817429] +centroid = (0.56471168164510721, -1.6980705704123511) +description = Coyote Flats CDP, TX +station = ('kcpt', 0.0020840765683286491) +zone = ('txz133', 0.0011651673120767828) + +[fips48175] +centroid = (0.50022358092633878, -1.7004815333344709) +description = Goliad County, TX +station = ('kbea', 0.007612964655053951) +zone = ('txz233', 8.7914024857349007e-05) + +[fips4817504] +centroid = (0.56947341108344574, -1.6834212191489069) +description = Crandall city, TX +station = ('khqz', 0.0023600675752361374) +zone = ('txz121', 0.0024777692877532972) + +[fips4817516] +centroid = (0.54789189128376026, -1.7863519070655174) +description = Crane city, TX +station = ('kodo', 0.0091885939914587642) +zone = ('txz068', 0.002540550500194251) + +[fips4817540] +centroid = (0.55458088309532105, -1.7075116322950414) +description = Cranfills Gap city, TX +station = ('kmnz', 0.0050483597744705924) +zone = ('txz144', 0.0036711827222383453) + +[fips4817564] +centroid = (0.55043658133316808, -1.7006990013592695) +description = Crawford town, TX +station = ('kpwg', 0.0021039972162386184) +zone = ('txz159', 0.0035949735055188143) + +[fips4817591555] +centroid = (0.50173152794676934, -1.7003892577769182) +description = Goliad North CCD, TX +station = ('kvct', 0.0078053607452267795) +zone = ('txz233', 0.0015708995696981675) + +[fips4817591560] +centroid = (0.49758582992121475, -1.7013539710676655) +description = Goliad South CCD, TX +station = ('kbea', 0.0054214724054543282) +zone = ('txz233', 0.0027046622795948174) + +[fips4817594115] +centroid = (0.50314658854440886, -1.698631379607602) +description = Weesatche-Ander CCD, TX +station = ('kvct', 0.0060161804363241343) +zone = ('txz233', 0.0033691516243482943) + +[fips4817612] +centroid = (0.52527186567255313, -1.7059784827202122) +description = Creedmoor city, TX +station = ('kaus', 0.0017909330812901116) +zone = ('txz192', 0.0042047842558147076) + +[fips4817648] +centroid = (0.56775317966609506, -1.7037092405333543) +description = Cresson city, TX +station = ('kgdj', 0.0033198130740920979) +zone = ('txz131', 0.0036396228795645353) + +[fips48177] +centroid = (0.51432591109562309, -1.7013074754963924) +description = Gonzales County, TX +station = ('khyi', 0.0094567522190709824) +zone = ('txz223', 0.00030694659002872412) + +[fips4817744] +centroid = (0.54658669916253388, -1.6660317184131239) +description = Crockett city, TX +station = ('kdkr', 0.00080960393180682852) +zone = ('txz163', 0.00050539543336663854) + +[fips4817756] +centroid = (0.52211793354115177, -1.659069512760456) +description = Crosby CDP, TX +station = ('kiah', 0.0049013641613631104) +zone = ('txz200', 0.0055487155794751329) + +[fips4817768] +centroid = (0.58715141474458332, -1.7669315412121136) +description = Crosbyton city, TX +station = ('klbb', 0.0084226365500861822) +zone = ('txz036', 0.0010179901279983117) + +[fips4817790868] +centroid = (0.51280265753765253, -1.7008556621129287) +description = Cost-Wrightsboro CCD, TX +station = ('kbaz', 0.010803391149113611) +zone = ('txz223', 0.0014518320297225696) + +[fips4817791565] +centroid = (0.51512371855000216, -1.6987532559492686) +description = Gonzales CCD, TX +station = ('k3t5', 0.0089792034387109945) +zone = ('txz223', 0.0026468437680331092) + +[fips4817791733] +centroid = (0.51629205940457967, -1.7024673340508052) +description = Harwood-Ottine CCD, TX +station = ('khyi', 0.0073004775474884214) +zone = ('txz223', 0.002312977644696399) + +[fips4817792760] +centroid = (0.51315404467595649, -1.7053608979643939) +description = Nixon CCD, TX +station = ('kbaz', 0.0075427155775599324) +zone = ('txz223', 0.0034432058558876775) + +[fips4817793595] +centroid = (0.51017295250038008, -1.7035161373049137) +description = Smiley CCD, TX +station = ('kbaz', 0.010853008317701324) +zone = ('txz223', 0.0042945475305800314) + +[fips4817794060] +centroid = (0.51793778271616275, -1.6980568521244304) +description = Waelder CCD, TX +station = ('k3t5', 0.0065732144513466501) +zone = ('txz223', 0.0048902189389990912) + +[fips4817811] +centroid = (0.51753113845374055, -1.7218757443988324) +description = Cross Mountain CDP, TX +station = ('k5c1', 0.00128706536853716) +zone = ('txz205', 0.0041069812181788153) + +[fips4817816] +centroid = (0.56072311561210963, -1.7307692790418798) +description = Cross Plains town, TX +station = ('kcom', 0.0060931117172385481) +zone = ('txz128', 0.0042753023978265286) + +[fips4817852] +centroid = (0.57980614422768761, -1.6928962625921338) +description = Cross Roads town, TX +station = ('kdto', 0.0030029631407222854) +zone = ('txz103', 0.0017933655790199194) + +[fips48179] +centroid = (0.61789092147557834, -1.7595078530519261) +description = Gray County, TX +station = ('kppa', 0.0045031486391986742) +zone = ('txz014', 2.3641968403157204e-05) + +[fips4817917] +centroid = (0.56693948971552288, -1.6986578911589398) +description = Cross Timber town, TX +station = ('kfws', 0.0015052317528031062) +zone = ('txz133', 0.0019140711146086566) + +[fips4817948] +centroid = (0.59312503100233671, -1.7405186707902276) +description = Crowell city, TX +station = ('kf05', 0.0076427780875567512) +zone = ('txz084', 0.00079173025941767033) + +[fips4817960] +centroid = (0.5685929622889847, -1.6992124869820535) +description = Crowley city, TX +station = ('kfws', 0.00087137122503399081) +zone = ('txz133', 0.0034751092492476573) + +[fips4817992172] +centroid = (0.61836776288051565, -1.7587829305471101) +description = Lefors CCD, TX +station = ('kppa', 0.004520184517808723) +zone = ('txz014', 0.00077659898770783119) + +[fips4817992365] +centroid = (0.61526139097123111, -1.7566643451812842) +description = McLean CCD, TX +station = ('kppa', 0.0079986340982720599) +zone = ('txz014', 0.0034912489052896937) + +[fips4817992955] +centroid = (0.6181572761727252, -1.7630496147964132) +description = Pampa CCD, TX +station = ('kppa', 0.0034138554207544468) +zone = ('txz014', 0.0028979571057149963) + +[fips4818020] +centroid = (0.50075468461772066, -1.7422859388309195) +description = Crystal City city, TX +station = ('kftn', 0.0090267117313122189) +zone = ('txz218', 0.0032134141657427602) + +[fips4818092] +centroid = (0.50779375457064646, -1.6979882257782422) +description = Cuero city, TX +station = ('kvct', 0.0067121462497348782) +zone = ('txz224', 0.0010777940581658601) + +[fips48181] +centroid = (0.58685837396317353, -1.6873092542169894) +description = Grayson County, TX +station = ('kgyi', 0.0016138139511658602) +zone = ('txz093', 4.8615720651026099e-05) + +[fips4818104] +centroid = (0.45826419019231318, -1.7205021528242204) +description = Cuevitas CDP, TX +station = ('kmfe', 0.0052850429150557675) +zone = ('txz252', 0.0058952828863002007) + +[fips4818128] +centroid = (0.57831978693010422, -1.6727254051603726) +description = Cumby city, TX +station = ('kslr', 0.0032317493641067681) +zone = ('txz105', 0.00359102242300572) + +[fips4818134] +centroid = (0.51638190895447245, -1.6720294376678473) +description = Cumings CDP, TX +station = ('ksgr', 0.0023397786959642643) +zone = ('txz227', 0.0011247711640318694) + +[fips4818152] +centroid = (0.55915870719037697, -1.6653010014151914) +description = Cuney town, TX +station = ('kjso', 0.0041447150511994624) +zone = ('txz149', 0.0050888023332878044) + +[fips4818191125] +centroid = (0.5861904015518502, -1.6845656664460245) +description = East Grayson CCD, TX +station = ('kgyi', 0.003133031774258064) +zone = ('txz093', 0.002418592821969818) + +[fips4818192840] +centroid = (0.58901593253119633, -1.6892808654065048) +description = Northwest Grayson CCD, TX +station = ('kgyi', 0.0018539517191017863) +zone = ('txz093', 0.0026618710074401519) + +[fips4818193685] +centroid = (0.58478939085468928, -1.6891896719530883) +description = Southwest Grayson CCD, TX +station = ('kgyi', 0.0040502557659257759) +zone = ('txz093', 0.0026109326623543301) + +[fips4818224] +centroid = (0.55523141966741696, -1.6552996539360258) +description = Cushing city, TX +station = ('koch', 0.0044082458478352576) +zone = ('txz152', 0.0047957874641979216) + +[fips4818260] +centroid = (0.52945391890642679, -1.6640851177917897) +description = Cut and Shoot city, TX +station = ('kcxo', 0.0011080569448432384) +zone = ('txz199', 0.0024580220052160357) + +[fips48183] +centroid = (0.56699458976000827, -1.654856200679679) +description = Gregg County, TX +station = ('kggg', 0.0023213505568752159) +zone = ('txz137', 0.00010727874896758906) + +[fips4818391520] +centroid = (0.56744078318328062, -1.6565847747708542) +description = Gladewater CCD, TX +station = ('kjxi', 0.0032990112678242039) +zone = ('txz137', 0.0015464311844162091) + +[fips4818392020] +centroid = (0.56537530818659298, -1.6554868404983021) +description = Kilgore CCD, TX +station = ('kggg', 0.0020086333975736139) +zone = ('txz137', 0.0015992990239358336) + +[fips4818392093] +centroid = (0.56523676395056965, -1.6530757030432568) +description = Lakeport CCD, TX +station = ('kggg', 5.4185691379650007e-05) +zone = ('txz137', 0.0022420056477300385) + +[fips4818392193] +centroid = (0.56602216211396716, -1.6563911304903456) +description = Liberty City CCD, TX +station = ('kggg', 0.0028845468442754056) +zone = ('txz137', 0.0015467469800413026) + +[fips4818392270] +centroid = (0.56734081072372644, -1.6540770333417112) +description = Longview CCD, TX +station = ('kggg', 0.0022927200936540605) +zone = ('txz137', 0.00080922340410563554) + +[fips4818392275] +centroid = (0.56898854116394926, -1.6538429148758487) +description = Longview Northwest CCD, TX +station = ('kjxi', 0.0032815349672961516) +zone = ('txz137', 0.0022725795221047052) + +[fips4818464] +centroid = (0.5764907691404767, -1.6532784928490463) +description = Daingerfield city, TX +station = ('kosa', 0.0036256660125884711) +zone = ('txz111', 0.001452162526266524) + +[fips4818476] +centroid = (0.52559124347237551, -1.6518169715867186) +description = Daisetta city, TX +station = ('kbmt', 0.006421150473939409) +zone = ('txz200', 0.0026488574450962222) + +[fips48185] +centroid = (0.53307994514720014, -1.6753080735743038) +description = Grimes County, TX +station = ('kcll', 0.0057324361302966342) +zone = ('txz198', 3.9342169840429146e-05) + +[fips4818524] +centroid = (0.62931577694596319, -1.7891649589407117) +description = Dalhart city, TX +station = ('kdht', 0.00089030391606564408) +zone = ('txz006', 0.0040033024644412505) + +[fips4818590080] +centroid = (0.53499134247752178, -1.6754960455347434) +description = Anderson-Bedias CCD, TX +station = ('kcll', 0.0056558401280627736) +zone = ('txz198', 0.0019154886924259524) + +[fips4818592710] +centroid = (0.52967623894654592, -1.6749194585630547) +description = Navasota CCD, TX +station = ('k11r', 0.0065553434008445701) +zone = ('txz198', 0.0034229840753911243) + +[fips48187] +centroid = (0.51632438290232663, -1.709533020274824) +description = Guadalupe County, TX +station = ('kbaz', 0.0027877024398689312) +zone = ('txz207', 9.701548592568622e-06) + +[fips4818792723] +centroid = (0.51442808267003481, -1.71162570495455) +description = Southwest Guadalupe CCD, TX +station = ('krnd', 0.0034145335401206296) +zone = ('txz207', 0.0026342188933693666) + +[fips4818792793] +centroid = (0.51814388864753069, -1.7072568142242506) +description = Northeast Guadalupe CCD, TX +station = ('kbaz', 0.0035447596694673377) +zone = ('txz207', 0.0026822018698694182) + +[fips4818793470] +centroid = (0.51674910877579949, -1.7132705905080921) +description = Schertz-Cibolo CCD, TX +station = ('krnd', 0.0022370944854800579) +zone = ('txz207', 0.0032872637581455419) + +[fips4818793500] +centroid = (0.51686604583568307, -1.7097483066380572) +description = Seguin CCD, TX +station = ('kbaz', 0.0022366596327678409) +zone = ('txz207', 0.00057804702851537251) + +[fips4818796343] +centroid = (0.51426021690257795, -1.7080128384963367) +description = Southeast Guadalupe CCD, TX +station = ('kbaz', 0.0052392643817845063) +zone = ('txz207', 0.0024449255099823668) + +[fips48189] +centroid = (0.59460637920496684, -1.7771446494894241) +description = Hale County, TX +station = ('kpvw', 0.0023139002144339938) +zone = ('txz029', 6.8279915733619157e-05) + +[fips4818990005] +centroid = (0.59183750161314042, -1.778665634119367) +description = Abernathy CCD, TX +station = ('klbb', 0.0044542084033747714) +zone = ('txz029', 0.0030520120171385503) + +[fips4818991675] +centroid = (0.59467137526631109, -1.7790450512454581) +description = Hale Center CCD, TX +station = ('kpvw', 0.0035229873587859419) +zone = ('txz029', 0.0015164543895050155) + +[fips4818993020] +centroid = (0.59219522429662919, -1.7741943972817305) +description = Petersburg CCD, TX +station = ('kpvw', 0.0042498258149392294) +zone = ('txz029', 0.003501176594385117) + +[fips4818993060] +centroid = (0.59682465777766669, -1.7764946190628113) +description = Plainview CCD, TX +station = ('kpvw', 0.0010981591977422709) +zone = ('txz029', 0.0022621825487729916) + +[fips4819000] +centroid = (0.57236634667850395, -1.6888766296984505) +description = Dallas city, TX +station = ('kdal', 0.001576449941558238) +zone = ('txz119', 0.00051452311651243731) + +[fips4819084] +centroid = (0.57048289206950675, -1.6956766419037306) +description = Dalworthington Gardens city, TX +station = ('kgky', 0.0008789605926803793) +zone = ('txz118', 0.0024879474349232137) + +[fips48191] +centroid = (0.60132158586189266, -1.7553883349651511) +description = Hall County, TX +station = ('kcds', 0.0042316464497397831) +zone = ('txz025', 0.0020262573545219991) + +[fips4819108] +centroid = (0.51108890129182671, -1.6709916998011967) +description = Damon CDP, TX +station = ('klbx', 0.0050883756963579427) +zone = ('txz227', 0.0042856748881218848) + +[fips4819120] +centroid = (0.5101125815615537, -1.6641058348500108) +description = Danbury city, TX +station = ('klbx', 0.0026639010415513828) +zone = ('txz237', 0.0017733823053026994) + +[fips4819191260] +centroid = (0.60132158586189266, -1.7553883349651511) +description = Estelline CCD, TX +station = ('kcds', 0.0042316464497397831) +zone = ('txz025', 0.0020262573545219991) + +[fips4819192095] +centroid = (0.60485472567987475, -1.7586616999772666) +description = Lakeview CCD, TX +station = ('kcds', 0.0079233646108310043) +zone = ('txz025', 0.0024821716895398107) + +[fips4819192510] +centroid = (0.60547695301150328, -1.7543256563434895) +description = Memphis CCD, TX +station = ('kcds', 0.0056033921645463232) +zone = ('txz025', 0.0036750516546390196) + +[fips4819193960] +centroid = (0.60108828770077849, -1.7600607908122503) +description = Turkey CCD, TX +station = ('kcds', 0.0080721759088642556) +zone = ('txz025', 0.0028314499196746561) + +[fips4819288] +centroid = (0.63608325621398609, -1.7510154125242796) +description = Darrouzett town, TX +station = ('kpyx', 0.0057768534206049695) +zone = ('txz005', 0.0030104651591144) + +[fips48193] +centroid = (0.5533912317705767, -1.7123738403384177) +description = Hamilton County, TX +station = ('kmnz', 0.00085939987931923803) +zone = ('txz143', 4.1402870346367135e-05) + +[fips4819391690] +centroid = (0.55234659985338053, -1.712725175116844) +description = Hamilton CCD, TX +station = ('kmnz', 0.00048109567248692928) +zone = ('txz143', 0.0010547610479200522) + +[fips4819391800] +centroid = (0.55639201126011562, -1.7111819724455231) +description = Hico CCD, TX +station = ('kmnz', 0.0039738929648770174) +zone = ('txz143', 0.0031981766543078801) + +[fips4819420] +centroid = (0.55666571379341334, -1.6879899326252672) +description = Dawson town, TX +station = ('kcrs', 0.0053495522314691672) +zone = ('txz146', 0.0044660080428035468) + +[fips4819432] +centroid = (0.52423859584878751, -1.656293601491744) +description = Dayton city, TX +station = ('k6r3', 0.0058881018705820186) +zone = ('txz200', 0.0023933159800139793) + +[fips4819435] +centroid = (0.52610515567062532, -1.6548482419782899) +description = Dayton Lakes city, TX +station = ('k6r3', 0.0047785781150925001) +zone = ('txz200', 0.00014985361344198883) + +[fips4819456] +centroid = (0.59194956920441111, -1.7174292912365741) +description = Dean city, TX +station = ('ksps', 0.0018461196817424555) +zone = ('txz090', 0.0036114508429582705) + +[fips48195] +centroid = (0.63308060922214759, -1.7690121482134162) +description = Hansford County, TX +station = ('kguy', 0.0074403686258915367) +zone = ('txz003', 8.8114418007241753e-05) + +[fips4819528] +centroid = (0.57993158104102849, -1.7032645131866535) +description = Decatur city, TX +station = ('klud', 0.00048730971304579331) +zone = ('txz102', 0.00096420269505642349) + +[fips4819570] +centroid = (0.56599952519356878, -1.7050634764065618) +description = DeCordova city, TX +station = ('kgdj', 0.0018406875203922028) +zone = ('txz131', 0.0020529814294474474) + +[fips4819591660] +centroid = (0.63404549704582014, -1.770352665798703) +description = Gruver CCD, TX +station = ('kguy', 0.0062687601405393137) +zone = ('txz003', 0.0014223218174743073) + +[fips4819593695] +centroid = (0.63137032618153333, -1.7670759672077161) +description = Spearman CCD, TX +station = ('kbpc', 0.0059815001648972736) +zone = ('txz003', 0.0023544149013874855) + +[fips4819624] +centroid = (0.51813493510846809, -1.6600968135581797) +description = Deer Park city, TX +station = ('kefd', 0.0016973145453454627) +zone = ('txz213', 0.0051276543891776256) + +[fips4819648] +centroid = (0.58481359857141446, -1.6513700451251605) +description = De Kalb city, TX +station = ('klbr', 0.0066688823761440891) +zone = ('txz097', 0.003019180765333797) + +[fips4819672] +centroid = (0.56044878476028115, -1.7197629011662456) +description = De Leon city, TX +station = ('kmkn', 0.0035318934427451855) +zone = ('txz141', 0.0028713122744167779) + +[fips48197] +centroid = (0.59847172499277368, -1.7408908273466306) +description = Hardeman County, TX +station = ('kf05', 0.0067597123384375611) +zone = ('txz083', 6.9116334034967393e-06) + +[fips4819708] +centroid = (0.55736895930891939, -1.8360831616922111) +description = Dell City city, TX +station = ('kgdp', 0.0059484470935209487) +zone = ('txz421', 0.0030850179311811298) + +[fips4819714] +centroid = (0.45477304299613397, -1.7003615070418112) +description = Del Mar Heights CDP, TX +station = ('kpil', 0.0023854675971045226) +zone = ('txz257', 0.0025796649444082219) + +[fips4819732] +centroid = (0.46574372888856486, -1.7178065790609778) +description = Delmita CDP, TX +station = ('kebg', 0.0062472525339119867) +zone = ('txz252', 0.0053683486376748203) + +[fips4819790705] +centroid = (0.59758789025956371, -1.7373806735148969) +description = Chillicothe CCD, TX +station = ('kf05', 0.0037733020050676456) +zone = ('txz083', 0.0030346617081204929) + +[fips4819791580] +centroid = (0.59967715409395606, -1.7436958856138505) +description = Goodlett CCD, TX +station = ('kcds', 0.0055812319123373262) +zone = ('txz083', 0.0026082094353787654) + +[fips4819792] +centroid = (0.51260492918669409, -1.7607016233537049) +description = Del Rio city, TX +station = ('kdrt', 0.00054924444376140723) +zone = ('txz202', 0.0070480160878346708) + +[fips4819793160] +centroid = (0.59800854951587934, -1.7406977241181898) +description = Quanah CCD, TX +station = ('kf05', 0.0065405625324455267) +zone = ('txz083', 0.00049644431814285924) + +[fips4819808] +centroid = (0.4889218758879747, -1.7020492578817825) +description = Del Sol CDP, TX +station = ('kcrp', 0.0043024731757511222) +zone = ('txz244', 6.7617908308685386e-05) + +[fips48199] +centroid = (0.52935159025238243, -1.6474712413755928) +description = Hardin County, TX +station = ('kbmt', 0.005229963376453102) +zone = ('txz201', 6.4882602475014545e-05) + +[fips4819900] +centroid = (0.58918514220217721, -1.6853817649509646) +description = Denison city, TX +station = ('kgyi', 0.0016377176075252494) +zone = ('txz093', 0.0028090097736215235) + +[fips4819972] +centroid = (0.57971353705757689, -1.6954422790917729) +description = Denton city, TX +station = ('kdto', 0.00089159767649454728) +zone = ('txz103', 0.00040582558259458218) + +[fips4819984] +centroid = (0.57540088083577634, -1.7947548645624141) +description = Denver City town, TX +station = ('kgnc', 0.0057472582194341469) +zone = ('txz039', 0.00357768937465548) + +[fips4819992055] +centroid = (0.5300847507112677, -1.6468227642920144) +description = Kountze CCD, TX +station = ('kbpt', 0.0049870834391592851) +zone = ('txz201', 0.00085761618781419753) + +[fips4819992332] +centroid = (0.52760603410758533, -1.6436859189339901) +description = Lumberton CCD, TX +station = ('kbmt', 0.0028626591584305812) +zone = ('txz201', 0.0036913120585238372) + +[fips4819993460] +centroid = (0.52960637341658856, -1.6504307089217372) +description = Saratoga-Batson CCD, TX +station = ('kbmt', 0.0070445593864087762) +zone = ('txz201', 0.0026052739282300254) + +[fips4819993570] +centroid = (0.53083794754996583, -1.643640365840513) +description = Silsbee CCD, TX +station = ('kbpt', 0.0030037597876935375) +zone = ('txz261', 0.0027084218375517293) + +[fips4819993625] +centroid = (0.526338139672474, -1.6477138421416202) +description = Sour Lake CCD, TX +station = ('kbmt', 0.0032059660140364779) +zone = ('txz201', 0.0030725060550950583) + +[fips4820020] +centroid = (0.58519402798847164, -1.6636028484128784) +description = Deport city, TX +station = ('kprx', 0.0026500287699411629) +zone = ('txz096', 0.0041988112644587667) + +[fips4820092] +centroid = (0.56896599151001348, -1.6905772436150088) +description = DeSoto city, TX +station = ('krbd', 0.0014668080350117396) +zone = ('txz119', 0.0031751448333813977) + +[fips48201] +centroid = (0.5211077195168049, -1.6649225791267741) +description = Harris County, TX +station = ('kiah', 0.0025227882427431392) +zone = ('txz213', 1.1165683792561162e-05) + +[fips4820128] +centroid = (0.58748124706662519, -1.662713288999722) +description = Detroit town, TX +station = ('kprx', 0.0027076992077912534) +zone = ('txz096', 0.0032141403410034272) + +[fips4820140] +centroid = (0.52409966764032867, -1.6508366375991659) +description = Devers city, TX +station = ('kbmt', 0.005575701514603475) +zone = ('txz200', 0.0040339065362556175) + +[fips4820152] +centroid = (0.50869076653970902, -1.7262176348856038) +description = Devine city, TX +station = ('kcvb', 0.003490757684399839) +zone = ('txz204', 0.0048137745128815791) + +[fips4820190225] +centroid = (0.5192720520227273, -1.657810990743428) +description = Baytown CCD, TX +station = ('kefd', 0.00381942903407407) +zone = ('txz214', 0.0057262983599353041) + +[fips4820191835] +centroid = (0.52013277859664087, -1.6648475997821082) +description = Houston CCD, TX +station = ('kmcj', 0.001604552599151022) +zone = ('txz213', 0.00097689950215781992) + +[fips4820192795] +centroid = (0.52281419773964988, -1.6590374336088043) +description = Northeast Harris CCD, TX +station = ('kiah', 0.0047642069682939285) +zone = ('txz200', 0.0050314709578185438) + +[fips4820192845] +centroid = (0.52377411137495422, -1.669597618061166) +description = Northwest Harris CCD, TX +station = ('kdwh', 0.0019452689657042091) +zone = ('txz213', 0.004859160627395785) + +[fips4820192975] +centroid = (0.51801937685869348, -1.6611324395764355) +description = Pasadena CCD, TX +station = ('kefd', 0.0014088646755788178) +zone = ('txz213', 0.0045045926810539944) + +[fips4820193645] +centroid = (0.51768114950294952, -1.6591598510025389) +description = Southeast Harris CCD, TX +station = ('kefd', 0.0019004536858509939) +zone = ('txz238', 0.0048891375226521984) + +[fips4820212] +centroid = (0.52885542805262542, -1.6366749313287288) +description = Deweyville CDP, TX +station = ('korg', 0.0040731060085565721) +zone = ('txz262', 0.0015187231960184628) + +[fips4820248] +centroid = (0.51188775594375713, -1.7325660431469303) +description = D'Hanis CDP, TX +station = ('khdo', 0.0016859941043596018) +zone = ('txz204', 0.0024578544131203623) + +[fips48203] +centroid = (0.56806964276606675, -1.6471444459264495) +description = Harrison County, TX +station = ('kasl', 0.0011991601912533117) +zone = ('txz138', 4.6286403206456908e-05) + +[fips4820308] +centroid = (0.54433878489913523, -1.6542734177891454) +description = Diboll city, TX +station = ('klfk', 0.00092645429426241267) +zone = ('txz165', 0.0028048194989667347) + +[fips4820332] +centroid = (0.58680191256187153, -1.7599342369881883) +description = Dickens city, TX +station = ('kpvw', 0.015929725852767425) +zone = ('txz037', 0.00084552098594778858) + +[fips4820344] +centroid = (0.51401822700178901, -1.6590427568630228) +description = Dickinson city, TX +station = ('kefd', 0.0030940409689504734) +zone = ('txz238', 0.0017067711478027201) + +[fips4820391685] +centroid = (0.56681098112269845, -1.6499656833958356) +description = Hallsville CCD, TX +station = ('kggg', 0.0031123712406696518) +zone = ('txz138', 0.0027347326657941799) + +[fips4820391715] +centroid = (0.57002146192186454, -1.649559423105849) +description = Harleton CCD, TX +station = ('kasl', 0.0039682718586527355) +zone = ('txz138', 0.002848963776624803) + +[fips4820392430] +centroid = (0.56792872488226065, -1.6471822323047551) +description = Marshall CCD, TX +station = ('kasl', 0.0011794274748134841) +zone = ('txz138', 0.00016569322941076376) + +[fips4820394085] +centroid = (0.56780033846248412, -1.6439388520491891) +description = Waskom CCD, TX +station = ('kasl', 0.0016224520273923904) +zone = ('txz138', 0.0026705368126744402) + +[fips4820428] +centroid = (0.50034470677642717, -1.730957093922687) +description = Dilley city, TX +station = ('kcot', 0.0038480285755633603) +zone = ('txz219', 0.0036460990764414299) + +[fips4820464] +centroid = (0.60299364619188822, -1.785608641150263) +description = Dimmitt city, TX +station = ('khrx', 0.0054374362823189871) +zone = ('txz022', 0.00074153687544513663) + +[fips48205] +centroid = (0.62553026251814259, -1.7908831657761299) +description = Hartley County, TX +station = ('kdht', 0.0031939599759865486) +zone = ('txz006', 0.00010120954469412079) + +[fips4820540] +centroid = (0.57820428104020727, -1.6983428417756623) +description = DISH town, TX +station = ('kdto', 0.0020085365348268412) +zone = ('txz103', 0.0030840318287705414) + +[fips4820590690] +centroid = (0.62337516486436506, -1.7868783158212111) +description = Channing CCD, TX +station = ('kdht', 0.0057566467617219232) +zone = ('txz006', 0.0038125064137824495) + +[fips4820590956] +centroid = (0.62604298789250101, -1.7925974107141462) +description = Dalhart CCD, TX +station = ('kdht', 0.0034040742102823432) +zone = ('txz006', 0.0015776160066565278) + +[fips4820680] +centroid = (0.58600604242296206, -1.6768345559913904) +description = Dodd City town, TX +station = ('kdua', 0.0078955887131274324) +zone = ('txz094', 0.00055236701669047377) + +[fips48207] +centroid = (0.5790298217764005, -1.7406303544090627) +description = Haskell County, TX +station = ('kabi', 0.013270519463153389) +zone = ('txz098', 3.9615347287358247e-05) + +[fips4820716] +centroid = (0.60677025944052365, -1.7456856307742943) +description = Dodson town, TX +station = ('kcds', 0.006917478187937677) +zone = ('okz033', 0.0025242601158014964) + +[fips4820734] +centroid = (0.45865119950065042, -1.7171523074842827) +description = Doffing CDP, TX +station = ('kmfe', 0.0026982458839884494) +zone = ('txz253', 0.0038043014317484477) + +[fips4820791735] +centroid = (0.57805952343204681, -1.7389024609962958) +description = Haskell CCD, TX +station = ('kabi', 0.012305245634998702) +zone = ('txz098', 0.0017583006217062481) + +[fips4820793285] +centroid = (0.5816763343343696, -1.7424335936856383) +description = Rochester CCD, TX +station = ('kdys', 0.015844132522710209) +zone = ('txz098', 0.0030156144667970522) + +[fips4820793360] +centroid = (0.57940993703419241, -1.7436789210135213) +description = Rule CCD, TX +station = ('kdys', 0.013592823542414947) +zone = ('txz098', 0.0025808318556037671) + +[fips4820793390] +centroid = (0.57661234877617062, -1.7430396069085159) +description = Sagerton CCD, TX +station = ('kdys', 0.010778014050388102) +zone = ('txz098', 0.0031835459357780951) + +[fips4820794125] +centroid = (0.58178391642946259, -1.7385633784292183) +description = Weinert CCD, TX +station = ('kbkd', 0.015049111572457525) +zone = ('txz098', 0.0032148818045477749) + +[fips4820848] +centroid = (0.58056639219656381, -1.6425466552647507) +description = Domino town, TX +station = ('ktxk', 0.0037418450002469619) +zone = ('arz070', 0.0033075719082511315) + +[fips4820884] +centroid = (0.45659645827886253, -1.7111021061789518) +description = Donna city, TX +station = ('kt65', 0.0010710557212461008) +zone = ('txz253', 0.0046776303163849706) + +[fips48209] +centroid = (0.52466735343283244, -1.7109334724666243) +description = Hays County, TX +station = ('khyi', 0.0038401154676721214) +zone = ('txz191', 5.9616491892754366e-05) + +[fips4820926] +centroid = (0.46006475911513317, -1.7124606530154116) +description = Doolittle CDP, TX +station = ('kebg', 0.0014478581848457364) +zone = ('txz253', 0.0011956391611789583) + +[fips4820932] +centroid = (0.58530810270838207, -1.6875684007043255) +description = Dorchester city, TX +station = ('kgyi', 0.0031777511281046366) +zone = ('txz093', 0.0016013780615817897) + +[fips4820991075] +centroid = (0.52571240422904908, -1.7126209266006223) +description = Dripping Springs-Wimberley CCD, TX +station = ('khyi', 0.0055993447069434023) +zone = ('txz191', 0.0018047068890802342) + +[fips4820992065] +centroid = (0.5244656282778869, -1.708558218981) +description = Kyle-Buda CCD, TX +station = ('khyi', 0.0027574521459098967) +zone = ('txz191', 0.0020889172933658651) + +[fips4820993430] +centroid = (0.52176378878262963, -1.7108587898279313) +description = San Marcos CCD, TX +station = ('khyi', 0.0024250921493146221) +zone = ('txz191', 0.0028522656459656856) + +[fips4821028] +centroid = (0.57704930940769994, -1.6948431250128557) +description = Double Oak town, TX +station = ('kdto', 0.0027556146662327395) +zone = ('txz103', 0.0024791434873319309) + +[fips48211] +centroid = (0.62511126132461636, -1.7503000718770569) +description = Hemphill County, TX +station = ('khhf', 0.0021891476071812703) +zone = ('txz010', 0.00042427542038983676) + +[fips4821112] +centroid = (0.57930348940311327, -1.6467520086441385) +description = Douglassville town, TX +station = ('ktxk', 0.0070165137543929295) +zone = ('txz112', 0.0019959314577389529) + +[fips4821190605] +centroid = (0.6273353867503102, -1.7534228847878952) +description = Canadian North CCD, TX +station = ('khhf', 0.0011799657349516022) +zone = ('txz010', 0.0033003221222482463) + +[fips4821190615] +centroid = (0.62490091424316585, -1.7491628327897502) +description = Canadian South CCD, TX +station = ('khhf', 0.0030505530164945892) +zone = ('txz010', 0.00092630013231428314) + +[fips4821283] +centroid = (0.48669686034436227, -1.6991291300569784) +description = Doyle CDP, TX +station = ('ktfp', 0.0024336785284865751) +zone = ('txz244', 0.0033482430093282373) + +[fips48213] +centroid = (0.56219905329405861, -1.6729577433903982) +description = Henderson County, TX +station = ('kpsn', 0.0078519284815652454) +zone = ('txz135', 9.9123303815669132e-06) + +[fips4821390155] +centroid = (0.56211054764768997, -1.6724613019379608) +description = Athens CCD, TX +station = ('ktyr', 0.0067522115099533653) +zone = ('txz135', 0.00043651896151694999) + +[fips4821390652] +centroid = (0.56245340012595169, -1.6768446614477595) +description = Cedar Creek Lake CCD, TX +station = ('kcrs', 0.0058306124794799876) +zone = ('txz135', 0.003291968844464773) + +[fips4821390687] +centroid = (0.56362767509998601, -1.6681619974849382) +description = Chandler-Brownsboro CCD, TX +station = ('ktyr', 0.0028133681961082218) +zone = ('txz136', 0.0047799710253722) + +[fips4821392150] +centroid = (0.56099489828323013, -1.6683882968757515) +description = LaRue-Poynor CCD, TX +station = ('ktyr', 0.0045932295343887623) +zone = ('txz135', 0.0040585285006731206) + +[fips4821412] +centroid = (0.52592132014051274, -1.7110735525923892) +description = Driftwood CDP, TX +station = ('khyi', 0.0049263737403285593) +zone = ('txz191', 0.0013101048494261432) + +[fips4821424] +centroid = (0.52686807399325708, -1.7119513659396797) +description = Dripping Springs city, TX +station = ('katt', 0.0053391338887882099) +zone = ('txz191', 0.002409467345106546) + +[fips4821436] +centroid = (0.48298531297024122, -1.7060774777953855) +description = Driscoll city, TX +station = ('krbo', 0.0020639000644707296) +zone = ('txz243', 0.0021082482085907259) + +[fips4821484] +centroid = (0.56003714885619826, -1.716336994377506) +description = Dublin city, TX +station = ('ksep', 0.0032161061641427361) +zone = ('txz130', 0.0031479729386145318) + +[fips48215] +centroid = (0.4607038114207509, -1.7135815383676274) +description = Hidalgo County, TX +station = ('kebg', 0.0011320059490310475) +zone = ('txz253', 7.4614505154082654e-06) + +[fips4821556] +centroid = (0.62591032541605685, -1.7796244831038277) +description = Dumas city, TX +station = ('kdux', 0.00068416261827293902) +zone = ('txz007', 0.0011044166800757548) + +[fips4821591155] +centroid = (0.45910203549973305, -1.7095905812335548) +description = Edcouch-Elsa CCD, TX +station = ('kt65', 0.0022420816574211838) +zone = ('txz253', 0.003923139615113886) + +[fips4821591170] +centroid = (0.45982523012858945, -1.7128293712731881) +description = Edinburg CCD, TX +station = ('kebg', 0.0016789658779253341) +zone = ('txz253', 0.0011140767143655132) + +[fips4821591710] +centroid = (0.46116597460667902, -1.7099182493473239) +description = Hargill CCD, TX +station = ('kebg', 0.0024970435896288497) +zone = ('txz253', 0.0033140600269042286) + +[fips4821592340] +centroid = (0.45677245728063365, -1.7139118070219823) +description = McAllen-Pharr CCD, TX +station = ('kmfe', 0.00081290101790291731) +zone = ('txz253', 0.0039496022013203649) + +[fips4821592600] +centroid = (0.45945488871460882, -1.7161355833818259) +description = Mission CCD, TX +station = ('kmfe', 0.0027501800735530327) +zone = ('txz253', 0.0026090598318432054) + +[fips4821593155] +centroid = (0.46456409575372687, -1.7138238598809743) +description = Puerto Rico-San Manuel CCD, TX +station = ('kebg', 0.0032309081140806093) +zone = ('txz253', 0.0038590248827603188) + +[fips4821593650] +centroid = (0.45620909990467495, -1.7102753611655748) +description = Southeast Hidalgo CCD, TX +station = ('kt65', 0.00073412314579674267) +zone = ('txz253', 0.0053914532880299116) + +[fips4821593785] +centroid = (0.45952365468713741, -1.7185505431079329) +description = Sullivan City CCD, TX +station = ('kmfe', 0.0042238879748136161) +zone = ('txz253', 0.0046061900579673735) + +[fips4821628] +centroid = (0.56977931494144285, -1.6914661223497569) +description = Duncanville city, TX +station = ('krbd', 0.00095222222168913088) +zone = ('txz119', 0.0029020031848846595) + +[fips48217] +centroid = (0.55819539016303132, -1.6952363127867449) +description = Hill County, TX +station = ('kinj', 0.0018294037940130448) +zone = ('txz145', 0.00015227268504438928) + +[fips4821790355] +centroid = (0.56042639218597812, -1.6994932057389442) +description = Blum CCD, TX +station = ('kcpt', 0.0043414344766653547) +zone = ('txz145', 0.0041341829705762376) + +[fips4821791810] +centroid = (0.55825256714932658, -1.6943659869019456) +description = Hillsboro CCD, TX +station = ('kinj', 0.0017261023573426661) +zone = ('txz145', 0.00078064998226486245) + +[fips4821791845] +centroid = (0.55537041768904583, -1.6902238493480648) +description = Hubbard-Mount Calm CCD, TX +station = ('kcnw', 0.0046148903331402411) +zone = ('txz145', 0.0052212493824878407) + +[fips4821791900] +centroid = (0.56151174263462322, -1.6958469860387253) +description = Itasca CCD, TX +station = ('kinj', 0.0018461887621942018) +zone = ('txz145', 0.0032048832925285829) + +[fips4821792380] +centroid = (0.55637511647295634, -1.6916246156991306) +description = Malone-Penelope CCD, TX +station = ('kinj', 0.0044165838367887268) +zone = ('txz145', 0.00367384437563638) + +[fips4821794210] +centroid = (0.55673610292214626, -1.697979254785887) +description = Whitney CCD, TX +station = ('kinj', 0.0042764100441897513) +zone = ('txz145', 0.0027978224168184731) + +[fips4821844] +centroid = (0.51639625556092383, -1.6812508673174669) +description = Eagle Lake city, TX +station = ('karm', 0.0063907303601464151) +zone = ('txz210', 0.0030567543920473278) + +[fips4821892] +centroid = (0.50110930061514092, -1.7537343387929138) +description = Eagle Pass city, TX +station = ('mmpg', 0.00057313261996315) +zone = ('txz217', 0.0026142836584365091) + +[fips48219] +centroid = (0.5865341616013231, -1.7862292627789795) +description = Hockley County, TX +station = ('klbb', 0.0077270283982440232) +zone = ('txz034', 2.9254019468192871e-05) + +[fips4821904] +centroid = (0.55405576588327354, -1.7267844654667739) +description = Early city, TX +station = ('kbwd', 0.00097681543986179067) +zone = ('txz140', 0.0010565437739821514) + +[fips4821928] +centroid = (0.59749252546923481, -1.7873773054543565) +description = Earth city, TX +station = ('khrx', 0.010988358448129183) +zone = ('txz028', 0.0030004156483952097) + +[fips4821958] +centroid = (0.45906129951499158, -1.7215189118332623) +description = East Alto Bonito CDP, TX +station = ('kmfe', 0.0063857890515816576) +zone = ('txz252', 0.0048101215136349008) + +[fips4821988] +centroid = (0.51529758825008587, -1.6766152030109998) +description = East Bernard city, TX +station = ('karm', 0.0049157231208705352) +zone = ('txz226', 0.0049355869443253597) + +[fips4821990115] +centroid = (0.58942482826835363, -1.7834169613953637) +description = Anton CCD, TX +station = ('klbb', 0.00561427087600724) +zone = ('txz034', 0.0036946701316251385) + +[fips4821992180] +centroid = (0.58745454352906967, -1.7868619097262424) +description = Levelland CCD, TX +station = ('klbb', 0.0081793831270690117) +zone = ('txz034', 0.0010367540715241995) + +[fips4821993320] +centroid = (0.5840917478460822, -1.7834845929038783) +description = Ropesville CCD, TX +station = ('klbb', 0.0064139172593061632) +zone = ('txz034', 0.0033658793213375755) + +[fips4821993800] +centroid = (0.58371770633408726, -1.7881438889684174) +description = Sundown CCD, TX +station = ('klbb', 0.010035588743368662) +zone = ('txz034', 0.0032640441315288466) + +[fips48221] +centroid = (0.56601287696234659, -1.7074848763976085) +description = Hood County, TX +station = ('kgdj', 0.00032976284550352537) +zone = ('txz131', 1.0154613841161037e-05) + +[fips4822132] +centroid = (0.56551352081005846, -1.7246878712495233) +description = Eastland city, TX +station = ('kbkd', 0.0056600545579516253) +zone = ('txz129', 0.0013177840468500091) + +[fips4822150] +centroid = (0.45917275624102394, -1.7215552670415812) +description = East Lopez CDP, TX +station = ('kmfe', 0.0064533980363570467) +zone = ('txz252', 0.0046941783895447231) + +[fips4822168] +centroid = (0.56872993572868125, -1.6555840727909308) +description = East Mountain city, TX +station = ('kjxi', 0.0023807988074645041) +zone = ('txz137', 0.0019370456298232316) + +[fips4822191605] +centroid = (0.5663356407009178, -1.7055123052770045) +description = Granbury East CCD, TX +station = ('kgdj', 0.0014456688615475284) +zone = ('txz131', 0.0017056098160482202) + +[fips4822191610] +centroid = (0.56583898980897041, -1.7090880485820279) +description = Granbury West CCD, TX +station = ('kgdj', 0.0016289270061788383) +zone = ('txz131', 0.0013547001886028756) + +[fips4822192] +centroid = (0.56517127919703491, -1.6509286339040388) +description = Easton city, TX +station = ('kggg', 0.0018487989238351523) +zone = ('txz137', 0.0037453246306677901) + +[fips4822276] +centroid = (0.57434638780830649, -1.6743489976970403) +description = East Tawakoni city, TX +station = ('kgvt', 0.0033951256762486232) +zone = ('txz123', 0.0021490033963623882) + +[fips48223] +centroid = (0.57855847815860695, -1.6679272856071299) +description = Hopkins County, TX +station = ('kslr', 0.00084412854724787796) +zone = ('txz107', 1.9838734699941712e-05) + +[fips4822390930] +centroid = (0.57784959522961687, -1.6717619834132718) +description = Cumby CCD, TX +station = ('kslr', 0.0025649380600329757) +zone = ('txz107', 0.003307731241790957) + +[fips4822392815] +centroid = (0.58078892167619312, -1.6664850153264519) +description = North Hopkins-Sulphur Bluff CCD, TX +station = ('kslr', 0.002857689634480934) +zone = ('txz107', 0.0025193451616627436) + +[fips4822393030] +centroid = (0.57736839050154964, -1.6648781081374333) +description = Pickton-Pine Forest CCD, TX +station = ('kslr', 0.0036510947316907866) +zone = ('txz107', 0.0028057960030698566) + +[fips4822393522] +centroid = (0.57623342034227021, -1.6683818740641043) +description = Seymore CCD, TX +station = ('kslr', 0.0025744778974609046) +zone = ('txz107', 0.0023682431762679693) + +[fips4822393790] +centroid = (0.57864216669624013, -1.6683350992401509) +description = Sulphur Springs CCD, TX +station = ('kslr', 0.0004926454227035384) +zone = ('txz107', 0.00036647916105825789) + +[fips48225] +centroid = (0.54669010992071454, -1.6654210975210211) +description = Houston County, TX +station = ('kdkr', 0.00038835964179193477) +zone = ('txz163', 9.2845502739673252e-05) + +[fips4822516] +centroid = (0.58606906626225164, -1.6802828379011407) +description = Ector city, TX +station = ('kgyi', 0.0062003513852233122) +zone = ('txz094', 0.0024344431820703324) + +[fips4822528] +centroid = (0.45891203895736099, -1.7097784484742393) +description = Edcouch city, TX +station = ('kt65', 0.0020344660389535335) +zone = ('txz253', 0.0038552942541440548) + +[fips4822552] +centroid = (0.54482627281250984, -1.7426059274959802) +description = Eden city, TX +station = ('kbbd', 0.0077912802789553443) +zone = ('txz073', 0.00194736712300673) + +[fips4822588] +centroid = (0.56995410966603011, -1.6989142974793503) +description = Edgecliff Village town, TX +station = ('kfws', 0.0016690381327472922) +zone = ('txz118', 0.0021215388182002394) + +[fips4822590900] +centroid = (0.54643729897856319, -1.6645425511354448) +description = Crockett CCD, TX +station = ('kdkr', 0.00048318586085362467) +zone = ('txz163', 0.00078378235433331845) + +[fips4822591635] +centroid = (0.54970134393247294, -1.6655933091583155) +description = Grapeland CCD, TX +station = ('kdkr', 0.0033181353236228276) +zone = ('txz163', 0.0031053667265529953) + +[fips4822592000] +centroid = (0.54746709559711737, -1.6602493029749263) +description = Kennard-Ratcliff CCD, TX +station = ('kdkr', 0.0042818974069147924) +zone = ('txz163', 0.0045177205081808934) + +[fips4822592310] +centroid = (0.54285515031518494, -1.6671274012109407) +description = Lovelady CCD, TX +station = ('kdkr', 0.0039519073798304693) +zone = ('txz163', 0.0040120299781584564) + +[fips4822593] +centroid = (0.49038310044432942, -1.70806598377206) +description = Edgewater Estates CDP, TX +station = ('kbea', 0.0047347792679533008) +zone = ('txz232', 0.0059088505934342134) + +[fips4822593100] +centroid = (0.54529093181926824, -1.6692612931143067) +description = Porter Springs CCD, TX +station = ('kdkr', 0.0037224628633079986) +zone = ('txz163', 0.0035177030259045459) + +[fips4822612] +centroid = (0.57056139697926145, -1.67346045057485) +description = Edgewood town, TX +station = ('kjdd', 0.0057357213892204346) +zone = ('txz122', 0.0023172135439991867) + +[fips4822660] +centroid = (0.45927278106045571, -1.7132709744805277) +description = Edinburg city, TX +station = ('kebg', 0.0022879079502560124) +zone = ('txz253', 0.001465292610854958) + +[fips48227] +centroid = (0.56380388354126743, -1.7704363368830436) +description = Howard County, TX +station = ('kbpg', 0.0021444223604375006) +zone = ('txz052', 6.3907263767305669e-05) + +[fips4822708] +centroid = (0.59828329924672841, -1.7784323010516678) +description = Edmonson town, TX +station = ('kpvw', 0.0032346044601787912) +zone = ('txz029', 0.003777689096539018) + +[fips4822720] +centroid = (0.5057113324269219, -1.6868339137952089) +description = Edna city, TX +station = ('kvct', 0.004745721995095954) +zone = ('txz235', 0.0011179500296702863) + +[fips4822744] +centroid = (0.56503547512793717, -1.6686966092881166) +description = Edom city, TX +station = ('ktyr', 0.003113858821905294) +zone = ('txz135', 0.0045841543208206808) + +[fips4822768] +centroid = (0.48800976682088248, -1.7047580437874628) +description = Edroy CDP, TX +station = ('krbo', 0.0031946017042939088) +zone = ('txz244', 0.0025588991950073023) + +[fips4822790300] +centroid = (0.56153197100065388, -1.7707149786981244) +description = Big Spring CCD, TX +station = ('kbpg', 0.0010289248630590236) +zone = ('txz052', 0.0023344900621200984) + +[fips4822790305] +centroid = (0.56559823909195017, -1.7713440128138358) +description = Big Spring North CCD, TX +station = ('kbpg', 0.0036227868248385371) +zone = ('txz052', 0.001927766569131479) + +[fips4822790770] +centroid = (0.56461417009979831, -1.7670919195170796) +description = Coahoma CCD, TX +station = ('kbpg', 0.0047645414259868471) +zone = ('txz052', 0.0028845289100252751) + +[fips4822810] +centroid = (0.50035125176112216, -1.7537011775371258) +description = Eidson Road CDP, TX +station = ('mmpg', 0.00079524968159710085) +zone = ('txz217', 0.0028439769837077401) + +[fips4822840] +centroid = (0.58075408490432334, -1.7279127684683109) +description = Elbert CDP, TX +station = ('krph', 0.0071316434775248513) +zone = ('txz099', 0.0035082393487606885) + +[fips4822853] +centroid = (0.46196510851128963, -1.7231082086501284) +description = El Brazil CDP, TX +station = ('kmfe', 0.0089685777455976324) +zone = ('txz252', 0.0016409749844217164) + +[fips4822858] +centroid = (0.45573206651351983, -1.7042056121726215) +description = El Camino Angosto CDP, TX +station = ('khrl', 0.0018376631603538988) +zone = ('txz255', 0.0010219147922734455) + +[fips4822864] +centroid = (0.50960186331583501, -1.6802844086974675) +description = El Campo city, TX +station = ('karm', 0.0020608698760354984) +zone = ('txz226', 0.0015964655722537724) + +[fips4822892] +centroid = (0.4596311669690602, -1.7215693693019376) +description = El Castillo CDP, TX +station = ('kmfe', 0.0066337990782577355) +zone = ('txz252', 0.0042602762812440466) + +[fips4822898] +centroid = (0.46095138637514627, -1.7264071776423704) +description = El Cenizo CDP, TX +station = ('kapy', 0.011067284488190107) +zone = ('txz252', 0.0038312091229285063) + +[fips48229] +centroid = (0.54892119921012394, -1.8391851877316581) +description = Hudspeth County, TX +station = ('kgdp', 0.010677736435637445) +zone = ('txz422', 0.004447725661595305) + +[fips4822905] +centroid = (0.47702775374160622, -1.7366249634020761) +description = El Cenizo city, TX +station = ('mmnl', 0.0020432225957878122) +zone = ('txz248', 0.007748242528763191) + +[fips4822920] +centroid = (0.45987322668301928, -1.7238152589834039) +description = El Chaparral CDP, TX +station = ('kmfe', 0.0085965507691039902) +zone = ('txz252', 0.0037502359585427645) + +[fips4822960] +centroid = (0.53863876645492459, -1.7557650293776093) +description = Eldorado city, TX +station = ('ksoa', 0.004879089521155176) +zone = ('txz077', 0.0010872801993331335) + +[fips4822984] +centroid = (0.59397223127454735, -1.7264935888936366) +description = Electra city, TX +station = ('kfdr', 0.0056213422294650551) +zone = ('txz086', 0.003240852180040373) + +[fips4822990990] +centroid = (0.55702804414612739, -1.8395338347030366) +description = Dell City CCD, TX +station = ('kgdp', 0.0087273795540767866) +zone = ('txz421', 0.0036772431659281473) + +[fips4822991360] +centroid = (0.55033610272813072, -1.8449828398942252) +description = Fort Hancock CCD, TX +station = ('kelp', 0.011171540846066762) +zone = ('txz420', 0.0034444587937983804) + +[fips4822993565] +centroid = (0.54561085067115889, -1.8360123013245802) +description = Sierra Blanca CCD, TX +station = ('kgdp', 0.011467565306631313) +zone = ('txz422', 0.00042669067862540568) + +[fips4823044] +centroid = (0.52975874066028761, -1.6997529630915187) +description = Elgin city, TX +station = ('kedc', 0.0028511963976161365) +zone = ('txz193', 0.004502390801214764) + +[fips4823062] +centroid = (0.46051257569460985, -1.7212788243413579) +description = Elias-Fela Solis CDP, TX +station = ('kmfe', 0.0068067004843141085) +zone = ('txz252', 0.0035797341996471848) + +[fips4823080] +centroid = (0.49757460745412446, -1.7506915841348643) +description = El Indio CDP, TX +station = ('mmpg', 0.0046281293284675951) +zone = ('txz217', 0.0040799148490003453) + +[fips48231] +centroid = (0.57811305268020552, -1.6769787900007751) +description = Hunt County, TX +station = ('kgvt', 0.0010220511548332143) +zone = ('txz105', 2.3455970801037901e-05) + +[fips4823140] +centroid = (0.55201542362781464, -1.6681625734435914) +description = Elkhart town, TX +station = ('kpsn', 0.0032485447370857292) +zone = ('txz148', 0.0034138722067019772) + +[fips4823164] +centroid = (0.51611981286070041, -1.6588527254140657) +description = El Lago city, TX +station = ('kefd', 0.0019086894619023361) +zone = ('txz238', 0.0033280300939417) + +[fips4823190565] +centroid = (0.57733318721053695, -1.6798237115881109) +description = Caddo Mills CCD, TX +station = ('kgvt', 0.0026431032224618995) +zone = ('txz105', 0.0024863295918204457) + +[fips4823190660] +centroid = (0.58094865420933561, -1.679159142568829) +description = Celeste CCD, TX +station = ('kgvt', 0.004353006871659129) +zone = ('txz105', 0.0033568569507201234) + +[fips4823190820] +centroid = (0.58120877808105287, -1.6745157115471909) +description = Commerce CCD, TX +station = ('kgvt', 0.0044698870284276696) +zone = ('txz105', 0.0037294804490069001) + +[fips4823191640] +centroid = (0.57814860503706866, -1.6772073234130314) +description = Greenville CCD, TX +station = ('kgvt', 0.001117553023514277) +zone = ('txz105', 0.00017126417031709126) + +[fips4823192260] +centroid = (0.57739858469760907, -1.6743747587567996) +description = Lone Oak CCD, TX +station = ('kgvt', 0.0019510701689967036) +zone = ('txz105', 0.0023184129600296783) + +[fips4823193170] +centroid = (0.57435867492624049, -1.677971411106262) +description = Quinlan CCD, TX +station = ('kgvt', 0.0029683557422020609) +zone = ('txz105', 0.0038433187776785332) + +[fips4823194270] +centroid = (0.58206058602248878, -1.6765273082298695) +description = Wolfe City CCD, TX +station = ('kgvt', 0.0049400243550025589) +zone = ('txz105', 0.0039650232754789138) + +[fips4823254] +centroid = (0.50225240400873461, -1.753825654419378) +description = Elm Creek CDP, TX +station = ('mmpg', 0.001418519863363272) +zone = ('txz217', 0.0027036504491016141) + +[fips4823272] +centroid = (0.51055884479799607, -1.7158901900889956) +description = Elmendorf city, TX +station = ('kssf', 0.0027247972399363457) +zone = ('txz221', 0.0037164937572828943) + +[fips4823278] +centroid = (0.46049962535156008, -1.7238892609436884) +description = El Mesquite CDP, TX +station = ('kmfe', 0.0088864705526459139) +zone = ('txz252', 0.0031395637799119312) + +[fips48233] +centroid = (0.6254744643419563, -1.7691136565627121) +description = Hutchinson County, TX +station = ('kbgd', 0.0024494109594448078) +zone = ('txz008', 0.00012496510740511618) + +[fips4823356] +centroid = (0.57141514223616707, -1.6781810076961339) +description = Elmo CDP, TX +station = ('ktrl', 0.0017209872508567332) +zone = ('txz121', 0.0031501287636069119) + +[fips4823390385] +centroid = (0.62342782144789766, -1.7680385686500686) +description = Borger CCD, TX +station = ('kbgd', 0.0014428307226031676) +zone = ('txz008', 0.002230992356253657) + +[fips4823393750] +centroid = (0.62658271351038775, -1.7695740918726808) +description = Stinnett CCD, TX +station = ('kbgd', 0.0035035529912304962) +zone = ('txz008', 0.0011634923789971216) + +[fips48235] +centroid = (0.54634781594781345, -1.7624562377573199) +description = Irion County, TX +station = ('ksjt', 0.0072216011910219693) +zone = ('txz071', 1.8334393819005484e-05) + +[fips4823592540] +centroid = (0.54834501366416311, -1.762529785931999) +description = Mertzon North CCD, TX +station = ('ksjt', 0.007330423932350053) +zone = ('txz071', 0.0019894327332372393) + +[fips4823592545] +centroid = (0.54448949408004499, -1.7623547468613165) +description = Mertzon South CCD, TX +station = ('ksjt', 0.0075793296431197225) +zone = ('txz071', 0.0018694757727866602) + +[fips48237] +centroid = (0.58001265158478366, -1.7134229228452063) +description = Jack County, TX +station = ('krph', 0.0059935945888290251) +zone = ('txz101', 2.3061644811237335e-05) + +[fips4823790500] +centroid = (0.57842667089349642, -1.7166403675080877) +description = Bryson CCD, TX +station = ('krph', 0.0029603451048018656) +zone = ('txz101', 0.003128382741452235) + +[fips4823791905] +centroid = (0.58117519794624461, -1.7131622579214207) +description = Jacksboro CCD, TX +station = ('kxbp', 0.0052601832630570899) +zone = ('txz101', 0.0011634956199879304) + +[fips4823792995] +centroid = (0.57749394948793809, -1.7114806680937094) +description = Perrin CCD, TX +station = ('kxbp', 0.0037213329356865716) +zone = ('txz101', 0.0030205960887058534) + +[fips48239] +centroid = (0.50544389562563885, -1.6857974674722045) +description = Jackson County, TX +station = ('kvct', 0.0055048962596955789) +zone = ('txz235', 0.00017393312940825072) + +[fips4823991175] +centroid = (0.50723856533558709, -1.6867230504811221) +description = Edna-Cordele CCD, TX +station = ('kvct', 0.0056101291043766073) +zone = ('txz235', 0.0021023234504896743) + +[fips4823991450] +centroid = (0.50674725515115071, -1.6836069745411966) +description = Ganado CCD, TX +station = ('karm', 0.0060783941385332647) +zone = ('txz235', 0.0022314197994191525) + +[fips4823992165] +centroid = (0.50289887396367328, -1.6832924313034023) +description = La Ward-Lolita CCD, TX +station = ('kpsx', 0.0034403551435630729) +zone = ('txz235', 0.0032028278271579191) + +[fips4823994005] +centroid = (0.50489567025429494, -1.6880084680219236) +description = Vanderbilt CCD, TX +station = ('kvct', 0.0034947157028475265) +zone = ('txz235', 0.0021469819475822267) + +[fips4824000] +centroid = (0.55585874336046126, -1.8575011965008623) +description = El Paso city, TX +station = ('kbif', 0.00064770273369880126) +zone = ('txz419', 0.0019468111277166911) + +[fips4824013] +centroid = (0.46049622195951867, -1.7262768713604164) +description = El Quiote CDP, TX +station = ('kmfe', 0.010884590327026685) +zone = ('txz252', 0.0040818522550677798) + +[fips4824015] +centroid = (0.4608335068374666, -1.7238445281549595) +description = El Rancho Vela CDP, TX +station = ('kmfe', 0.0089868516608515338) +zone = ('txz252', 0.002803690153370716) + +[fips4824018] +centroid = (0.45973086017593412, -1.7236687385926988) +description = El Refugio CDP, TX +station = ('kmfe', 0.0084257145746665704) +zone = ('txz252', 0.0038785492817438681) + +[fips4824036] +centroid = (0.458984679560829, -1.710313740955826) +description = Elsa city, TX +station = ('kt65', 0.002125966128698204) +zone = ('txz253', 0.0034008340214409598) + +[fips4824055] +centroid = (0.45972764877011046, -1.7215421072590211) +description = El Socio CDP, TX +station = ('kmfe', 0.0066504533017227889) +zone = ('txz252', 0.0041798011130558168) + +[fips48241] +centroid = (0.53673991804192478, -1.6409986005781094) +description = Jasper County, TX +station = ('kjas', 0.002322201380395318) +zone = ('txz259', 0.00194830217044919) + +[fips4824158] +centroid = (0.56132008802946165, -1.6657184667189759) +description = Emerald Bay CDP, TX +station = ('ktyr', 0.0033429286178784149) +zone = ('txz136', 0.0044908185923754592) + +[fips4824168] +centroid = (0.5613206290815298, -1.6855868236847813) +description = Emhouse town, TX +station = ('kcrs', 0.0038176310553260286) +zone = ('txz146', 0.0025242586376045453) + +[fips4824190520] +centroid = (0.53075736569840126, -1.6404216645405703) +description = Buna CCD, TX +station = ('kbpt', 0.0037190646147282646) +zone = ('txz261', 0.00050091999540829134) + +[fips4824191920] +centroid = (0.54057444131514143, -1.6415912794855017) +description = Jasper CCD, TX +station = ('kjas', 0.0015536111406537405) +zone = ('txz259', 0.0019230953569996064) + +[fips4824192040] +centroid = (0.53585084732095889, -1.6405691797689488) +description = Kirbyville CCD, TX +station = ('kbpt', 0.0029047719006361932) +zone = ('txz259', 0.002881509314629258) + +[fips4824216] +centroid = (0.57381160147220289, -1.671436392241312) +description = Emory city, TX +station = ('kjdd', 0.0046071216223818705) +zone = ('txz123', 0.00041470448859097405) + +[fips4824223] +centroid = (0.45439078098336216, -1.7040762658217561) +description = Encantada-Ranchito-El Calaboz CDP, TX +station = ('khrl', 0.0031835355467378611) +zone = ('txz255', 0.0017403525602099901) + +[fips4824228] +centroid = (0.56315842587729492, -1.677418316266305) +description = Enchanted Oaks town, TX +station = ('kcrs', 0.00595534640888855) +zone = ('txz135', 0.0038854682543290643) + +[fips4824240] +centroid = (0.48940302825616455, -1.7340614587033318) +description = Encinal city, TX +station = ('kcot', 0.0074504477387695948) +zone = ('txz239', 0.0048930869331012096) + +[fips4824252] +centroid = (0.47012879882103048, -1.7124333037060329) +description = Encino CDP, TX +station = ('kbks', 0.0047180071449357593) +zone = ('txz250', 0.0023134949524466234) + +[fips48243] +centroid = (0.53436897551955309, -1.8184211976068994) +description = Jeff Davis County, TX +station = ('kmrf', 0.0050726269591145909) +zone = ('txz074', 0.0047329314333939779) + +[fips4824348] +centroid = (0.56419399953567317, -1.6866450168102656) +description = Ennis city, TX +station = ('klnc', 0.0045788446041143561) +zone = ('txz134', 0.0023461239420915366) + +[fips4824391355] +centroid = (0.53699473611271598, -1.8121705452369767) +description = Fort Davis CCD, TX +station = ('ke38', 0.0070433048623642922) +zone = ('txz074', 0.0013958376385153856) + +[fips4824393985] +centroid = (0.53640354073518792, -1.8231400443055163) +description = Valentine CCD, TX +station = ('kmrf', 0.0092236240383076935) +zone = ('txz074', 0.0085325591267106024) + +[fips48245] +centroid = (0.52105059489038708, -1.6432158144999656) +description = Jefferson County, TX +station = ('kbmt', 0.0039184270019923069) +zone = ('txz215', 0.00062474945553135186) + +[fips4824552] +centroid = (0.46098699109188696, -1.7271793811166227) +description = Escobares city, TX +station = ('kapy', 0.010727374453729181) +zone = ('txz252', 0.0043359255843240458) + +[fips4824558] +centroid = (0.46101915751000122, -1.7273001928074458) +description = Escobar I CDP, TX +station = ('kapy', 0.010653036454720793) +zone = ('txz252', 0.0044038444494065698) + +[fips4824590230] +centroid = (0.52516524350854887, -1.6432009093881534) +description = Beaumont CCD, TX +station = ('kbmt', 0.0011338751300361775) +zone = ('txz215', 0.0036123856394499393) + +[fips4824592070] +centroid = (0.52234381405294483, -1.6433662269749023) +description = LaBelle CCD, TX +station = ('kbmt', 0.002648334711258435) +zone = ('txz215', 0.00080261282077971684) + +[fips4824592770] +centroid = (0.52369227288632825, -1.646345050222451) +description = Nome-China CCD, TX +station = ('kbmt', 0.0019916042127004503) +zone = ('txz215', 0.0031776349026022173) + +[fips4824593097] +centroid = (0.52262051855255609, -1.6398970709272982) +description = Port Arthur CCD, TX +station = ('korg', 0.0032100913329586203) +zone = ('txz216', 0.0033506575349805498) + +[fips4824593385] +centroid = (0.51843090804302117, -1.6431059111169672) +description = Sabine Pass CCD, TX +station = ('kbmt', 0.0064948745298394096) +zone = ('txz215', 0.0031707193514760794) + +[fips4824636] +centroid = (0.60295879196672586, -1.7530076185989683) +description = Estelline town, TX +station = ('kcds', 0.0030017462489448734) +zone = ('txz026', 0.0033547609923880537) + +[fips48247] +centroid = (0.47195818312980092, -1.7226421882865532) +description = Jim Hogg County, TX +station = ('khbv', 0.0051244763551869478) +zone = ('txz249', 5.8220011481942358e-05) + +[fips4824738] +centroid = (0.46003829992367296, -1.7214727478745471) +description = Eugenio Saenz CDP, TX +station = ('kmfe', 0.0067285549324685003) +zone = ('txz252', 0.003919668622999261) + +[fips4824768] +centroid = (0.57332959389267968, -1.694341063600227) +description = Euless city, TX +station = ('kdfw', 0.0011050336633174772) +zone = ('txz118', 0.003419099498415359) + +[fips4824792820] +centroid = (0.47542641415290143, -1.7235343656935878) +description = North Jim Hogg CCD, TX +station = ('khbv', 0.0016537529004635996) +zone = ('txz249', 0.0035308879464494747) + +[fips4824793660] +centroid = (0.47043587204962639, -1.7222209181649994) +description = South Jim Hogg CCD, TX +station = ('khbv', 0.0066804215883543355) +zone = ('txz249', 0.0015952992738347718) + +[fips4824816] +centroid = (0.55862358924171551, -1.6802383669118) +description = Eureka city, TX +station = ('kcrs', 0.0016777749795330059) +zone = ('txz146', 0.0030679135548886366) + +[fips4824828] +centroid = (0.56387301603293893, -1.675756989711209) +description = Eustace city, TX +station = ('kcrs', 0.0074553972298552216) +zone = ('txz135', 0.0028899201422583928) + +[fips4824840] +centroid = (0.52930603715890534, -1.6415163001408359) +description = Evadale CDP, TX +station = ('kbpt', 0.0046383309803445872) +zone = ('txz261', 0.0012659214907205973) + +[fips4824864] +centroid = (0.54936727046034861, -1.7130438896915505) +description = Evant town, TX +station = ('kmnz', 0.003378504766169077) +zone = ('txz143', 0.0040288730357211722) + +[fips4824894] +centroid = (0.46120047976599093, -1.7282950304810827) +description = Evergreen CDP, TX +station = ('kapy', 0.010146354967775018) +zone = ('txz252', 0.0050638712029207377) + +[fips48249] +centroid = (0.48404116735452773, -1.7120076702613489) +description = Jim Wells County, TX +station = ('kali', 0.0011454545515920016) +zone = ('txz241', 4.4925248908688021e-05) + +[fips4824912] +centroid = (0.56948096835910689, -1.6979058985974256) +description = Everman city, TX +station = ('kfws', 0.0011143438335903479) +zone = ('txz118', 0.0024739883870856026) + +[fips4824990035] +centroid = (0.48305219398717764, -1.7121377147439152) +description = Alice CCD, TX +station = ('kali', 0.0016004993252829048) +zone = ('txz241', 0.00095324250382003135) + +[fips4824992910] +centroid = (0.48790742071354554, -1.7112806010015533) +description = Orange Grove-Sandia CCD, TX +station = ('kali', 0.003901790961287877) +zone = ('txz241', 0.0039611385159900626) + +[fips4824993140] +centroid = (0.47752054745590683, -1.7129677060697011) +description = Premont CCD, TX +station = ('kbks', 0.0027019577050604424) +zone = ('txz250', 0.0058407486353999174) + +[fips4825032] +centroid = (0.5500087487736266, -1.8527612836781735) +description = Fabens CDP, TX +station = ('mmcs', 0.0046343681772672883) +zone = ('txz423', 0.0044176292363890647) + +[fips4825038] +centroid = (0.50164269068784284, -1.7539267438896535) +description = Fabrica CDP, TX +station = ('mmpg', 0.00082052911453513427) +zone = ('txz217', 0.0027254650279031987) + +[fips4825068] +centroid = (0.51383961000613987, -1.6716062476841163) +description = Fairchilds village, TX +station = ('ksgr', 0.0036162844331096996) +zone = ('txz227', 0.0015128702347982155) + +[fips48251] +centroid = (0.56512907713572169, -1.6993367369715029) +description = Johnson County, TX +station = ('kcpt', 0.0011102484135464669) +zone = ('txz133', 2.3526526945711473e-05) + +[fips4825104] +centroid = (0.55357375830375033, -1.678491571583234) +description = Fairfield city, TX +station = ('kcrs', 0.0061015097510605191) +zone = ('txz147', 0.00038683974178738086) + +[fips4825168] +centroid = (0.51940295171662687, -1.7213213056553516) +description = Fair Oaks Ranch city, TX +station = ('k5c1', 0.0012101783614815011) +zone = ('txz189', 0.0034896515142275987) + +[fips4825190050] +centroid = (0.56633098067181498, -1.6961270066639154) +description = Alvarado CCD, TX +station = ('kfws', 0.0027082307372949936) +zone = ('txz133', 0.002987761865349449) + +[fips4825190535] +centroid = (0.56704743832975868, -1.6998325151988245) +description = Burleson-Joshua CCD, TX +station = ('kfws', 0.0019234180322303734) +zone = ('txz133', 0.0019676801489788634) + +[fips4825190750] +centroid = (0.56349649615340625, -1.7007159310530138) +description = Cleburne CCD, TX +station = ('kcpt', 0.0011901532991133517) +zone = ('txz133', 0.0019859644109469022) + +[fips4825191540] +centroid = (0.56581804585794637, -1.7025663814858558) +description = Godley CCD, TX +station = ('kcpt', 0.002058598950717215) +zone = ('txz133', 0.0027937155863968751) + +[fips4825191625] +centroid = (0.56353115839235079, -1.6966902069602414) +description = Grandview CCD, TX +station = ('kcpt', 0.0034470976356291236) +zone = ('txz133', 0.0027610373037078662) + +[fips4825224] +centroid = (0.57841351111093631, -1.6862238688617592) +description = Fairview town, TX +station = ('ktki', 0.00086562123927220655) +zone = ('txz104', 0.0010187672596272924) + +[fips48253] +centroid = (0.57148553136489999, -1.7431376420526004) +description = Jones County, TX +station = ('kdys', 0.0056556369912562372) +zone = ('txz113', 9.1372334841145701e-05) + +[fips4825338] +centroid = (0.46340448154540931, -1.7299159177574099) +description = Falconaire CDP, TX +station = ('kapy', 0.0075994517976007763) +zone = ('txz252', 0.0059118923561059253) + +[fips4825344] +centroid = (0.46356594195451134, -1.7300138656350317) +description = Falcon Heights CDP, TX +station = ('kapy', 0.0074203361844300993) +zone = ('txz252', 0.0059962335812496761) + +[fips4825348] +centroid = (0.46898936061886598, -1.7323664298403798) +description = Falcon Lake Estates CDP, TX +station = ('kapy', 0.0017296579763191773) +zone = ('txz248', 0.0026509665229119601) + +[fips4825352] +centroid = (0.46898408972452499, -1.7329550595839074) +description = Falcon Mesa CDP, TX +station = ('kapy', 0.0018451021179036807) +zone = ('txz248', 0.0029622956836033655) + +[fips4825356] +centroid = (0.46364863565447084, -1.7302173361192292) +description = Falcon Village CDP, TX +station = ('kapy', 0.0072936091489204848) +zone = ('txz252', 0.0061782487647007471) + +[fips4825368] +centroid = (0.47515522489372652, -1.7129568152151686) +description = Falfurrias city, TX +station = ('kbks', 0.00048519954396172887) +zone = ('txz250', 0.0035532384997936199) + +[fips4825390110] +centroid = (0.5717569126102926, -1.7438482528575496) +description = Anson CCD, TX +station = ('kdys', 0.0059827022714300992) +zone = ('txz113', 0.0006327307680425591) + +[fips4825391695] +centroid = (0.57318446976537629, -1.746563583747925) +description = Hamlin CCD, TX +station = ('kdys', 0.0079923232420460871) +zone = ('txz113', 0.0033248130198308265) + +[fips4825391745] +centroid = (0.56883016998762326, -1.7429099987582626) +description = Hawley-Noodle CCD, TX +station = ('kdys', 0.0029951403737281373) +zone = ('txz113', 0.0026013488684886996) + +[fips4825392] +centroid = (0.50582549441329494, -1.7107990472076355) +description = Falls City city, TX +station = ('kpez', 0.0076311546465719967) +zone = ('txz222', 0.0028093430099928604) + +[fips4825392320] +centroid = (0.57194144627210597, -1.740001843892127) +description = Lueders CCD, TX +station = ('kabi', 0.0061661709373727605) +zone = ('txz113', 0.0027499341531308612) + +[fips4825393720] +centroid = (0.57430998024010982, -1.7417346416800921) +description = Stamford CCD, TX +station = ('kdys', 0.0085244850625752645) +zone = ('txz113', 0.0031462896370140605) + +[fips4825397] +centroid = (0.48743647852147987, -1.6959587045641455) +description = Falman CDP, TX +station = ('ktfp', 0.00046472229042351828) +zone = ('txz245', 0.004519565467426454) + +[fips4825404] +centroid = (0.52231199670068096, -1.6448566683429355) +description = Fannett CDP, TX +station = ('kbmt', 0.0025332062071014897) +zone = ('txz215', 0.0013069500294222059) + +[fips4825452] +centroid = (0.57469833345197108, -1.6908494800717349) +description = Farmers Branch city, TX +station = ('kads', 0.00094804664726899092) +zone = ('txz119', 0.0031768056292311147) + +[fips4825488] +centroid = (0.57876570110069625, -1.6818342959798236) +description = Farmersville city, TX +station = ('ktki', 0.0032571067863230219) +zone = ('txz104', 0.0031093723231175557) + +[fips48255] +centroid = (0.50453311300877812, -1.7079925926770136) +description = Karnes County, TX +station = ('knog', 0.0080481794827876388) +zone = ('txz222', 3.9456699161043428e-05) + +[fips4825548] +centroid = (0.6001420749001023, -1.7983400850052758) +description = Farwell city, TX +station = ('kcvn', 0.0010645444032321627) +zone = ('txz021', 0.0044265997058987264) + +[fips4825572] +centroid = (0.57490634179222377, -1.6822661951565219) +description = Fate city, TX +station = ('khqz', 0.0039683776575474266) +zone = ('txz120', 0.00079319144352965859) + +[fips4825591285] +centroid = (0.50503152668327012, -1.7112595697840667) +description = Falls City CCD, TX +station = ('kpez', 0.0072138206881502574) +zone = ('txz222', 0.0029291249196750375) + +[fips4825591510] +centroid = (0.50746444584738015, -1.7066905945083184) +description = Gillett CCD, TX +station = ('krnd', 0.011003941332087387) +zone = ('txz222', 0.0031685930196810861) + +[fips4825591980] +centroid = (0.5034486526780515, -1.7097416743868998) +description = Karnes City CCD, TX +station = ('knog', 0.0065246287015282125) +zone = ('txz222', 0.0018747959801538241) + +[fips4825591995] +centroid = (0.50212084108971922, -1.7076623763825365) +description = Kenedy CCD, TX +station = ('knog', 0.0060655963194603786) +zone = ('txz222', 0.0023938866512994723) + +[fips4825593365] +centroid = (0.50401689697591578, -1.7051622445889321) +description = Runge CCD, TX +station = ('knog', 0.0089005416141942299) +zone = ('txz222', 0.0025041452087676726) + +[fips4825644] +centroid = (0.52196385587478566, -1.6873122910898879) +description = Fayetteville city, TX +station = ('k3t5', 0.0041474065513274361) +zone = ('txz209', 0.0037267773095434721) + +[fips4825656] +centroid = (0.46083673569658279, -1.7126833919345512) +description = Faysville CDP, TX +station = ('kebg', 0.00066225683852647293) +zone = ('txz253', 0.00081593212729228523) + +[fips48257] +centroid = (0.56895890547325045, -1.6805492275048726) +description = Kaufman County, TX +station = ('ktrl', 0.0020792685517397559) +zone = ('txz121', 1.3434502167914565e-05) + +[fips4825744] +centroid = (0.46072990409306819, -1.7249276096755775) +description = Fernando Salinas CDP, TX +station = ('kmfe', 0.0098334048095865944) +zone = ('txz252', 0.0032110831386708192) + +[fips4825752] +centroid = (0.56787294415936707, -1.6873064267836013) +description = Ferris city, TX +station = ('klnc', 0.00097747256162068643) +zone = ('txz134', 0.003724753816672882) + +[fips4825790653] +centroid = (0.56520800092449686, -1.6795902039874866) +description = Cedar Creek Lake CCD, TX +station = ('ktrl', 0.0058261076576071689) +zone = ('txz121', 0.0038468557545365194) + +[fips4825790875] +centroid = (0.56856203505463943, -1.6835373882639195) +description = Crandall CCD, TX +station = ('khqz', 0.0031557998683322342) +zone = ('txz121', 0.0025575569821040651) + +[fips4825791350] +centroid = (0.57131017813495211, -1.6833975873908349) +description = Forney CCD, TX +station = ('khqz', 0.0011783944520278385) +zone = ('txz120', 0.0029361525993409402) + +[fips4825791985] +centroid = (0.56691861557766898, -1.6805827901863883) +description = Kaufman CCD, TX +station = ('ktrl', 0.004109657088260537) +zone = ('txz121', 0.0020520433567415898) + +[fips4825793865] +centroid = (0.57153195712300309, -1.6791472219700381) +description = Terrell CCD, TX +station = ('ktrl', 0.0010046946054545801) +zone = ('txz121', 0.0028174554891115477) + +[fips4825793870] +centroid = (0.56921309522551089, -1.6795906054132146) +description = Terrell South CCD, TX +station = ('ktrl', 0.0018654217895247148) +zone = ('txz121', 0.00083650086593342057) + +[fips4825795] +centroid = (0.51658288361783955, -1.667685103720123) +description = Fifth Street CDP, TX +station = ('ksgr', 0.0015324053656648633) +zone = ('txz227', 0.0035512225755610013) + +[fips48259] +centroid = (0.52263053674246251, -1.7228335985456196) +description = Kendall County, TX +station = ('k5c1', 0.0039316759595691862) +zone = ('txz189', 8.2459584760847415e-06) + +[fips4825990360] +centroid = (0.52053973701832834, -1.7230781889869942) +description = Boerne CCD, TX +station = ('k5c1', 0.0019036920109628418) +zone = ('txz189', 0.0021038254063945896) + +[fips4825990815] +centroid = (0.523703041567813, -1.7227408168425835) +description = Comfort CCD, TX +station = ('k5c1', 0.0049968978177087724) +zone = ('txz189', 0.0010730492989978408) + +[fips4826028] +centroid = (0.51816266839028224, -1.6948233853390158) +description = Flatonia town, TX +station = ('k3t5', 0.0045031213533891024) +zone = ('txz209', 0.0043326448900596216) + +[fips48261] +centroid = (0.46932308502513986, -1.7032883369309433) +description = Kenedy County, TX +station = ('kbks', 0.0099167765737402953) +zone = ('txz251', 0.0020367505259622095) + +[fips4826130] +centroid = (0.46078964671336398, -1.7261567752545868) +description = Flor del Rio CDP, TX +station = ('kmfe', 0.010881104902115857) +zone = ('txz252', 0.0037905264526708255) + +[fips4826136] +centroid = (0.53827771019256454, -1.7068042503492085) +description = Florence city, TX +station = ('kgtu', 0.0032040189432034215) +zone = ('txz173', 0.0044299125572222781) + +[fips4826160] +centroid = (0.50858554063910622, -1.7132447247285776) +description = Floresville city, TX +station = ('kssf', 0.0057430372251173478) +zone = ('txz221', 0.0012916009180289649) + +[fips4826193465] +centroid = (0.46932308502513986, -1.7032883369309433) +description = Sarita CCD, TX +station = ('kbks', 0.0099167765737402953) +zone = ('txz251', 0.0020367505259622095) + +[fips4826220] +centroid = (0.47507797662103324, -1.7115490326405101) +description = Flowella CDP, TX +station = ('kbks', 0.00090827111832032651) +zone = ('txz250', 0.0040672684072443387) + +[fips4826232] +centroid = (0.57661875413452557, -1.6949416663024235) +description = Flower Mound town, TX +station = ('kdfw', 0.0026733943357703208) +zone = ('txz103', 0.0029062234923680529) + +[fips4826268] +centroid = (0.59312438523051347, -1.7686605865421869) +description = Floydada city, TX +station = ('kpvw', 0.006373392807872416) +zone = ('txz030', 0.0016254788396258154) + +[fips48263] +centroid = (0.57918367254996395, -1.7587634003127803) +description = Kent County, TX +station = ('ksnk', 0.0089758425651001207) +zone = ('txz043', 0.00012934068269045449) + +[fips4826328] +centroid = (0.63589278843271602, -1.7477860996224843) +description = Follett city, TX +station = ('kgag', 0.0057541210273492557) +zone = ('txz005', 0.003301365655533791) + +[fips4826391925] +centroid = (0.58148825765417478, -1.7591574083914179) +description = Jayton North CCD, TX +station = ('ksnk', 0.01112491001355642) +zone = ('txz043', 0.0023732895070465191) + +[fips4826391930] +centroid = (0.57749571227048269, -1.7588166503082587) +description = Jayton South CCD, TX +station = ('ksnk', 0.0073642040901110957) +zone = ('txz043', 0.001630496334677566) + +[fips48265] +centroid = (0.52453999675731433, -1.7340189599360456) +description = Kerr County, TX +station = ('kerv', 0.0043362458344788713) +zone = ('txz186', 0.00013513538501133202) + +[fips4826544] +centroid = (0.57005938792651034, -1.6976188442953499) +description = Forest Hill city, TX +station = ('kfws', 0.0017356249790479535) +zone = ('txz118', 0.0019287026808991593) + +[fips4826590675] +centroid = (0.52198942494832745, -1.7278686989046979) +description = Center Point CCD, TX +station = ('kerv', 0.0016310619301312147) +zone = ('txz187', 0.00467016365562559) + +[fips4826591875] +centroid = (0.52526603627285151, -1.7363425342225183) +description = Ingram CCD, TX +station = ('kerv', 0.0064739859964742397) +zone = ('txz186', 0.0021236244383733382) + +[fips4826592015] +centroid = (0.52433088885963297, -1.7293862277827221) +description = Kerrville CCD, TX +station = ('kerv', 0.0013147788394833673) +zone = ('txz186', 0.0039963476331282971) + +[fips4826604] +centroid = (0.57160189246613047, -1.6834152850294499) +description = Forney city, TX +station = ('khqz', 0.0011419452281157029) +zone = ('txz120', 0.0026559362674826864) + +[fips4826640] +centroid = (0.56043112202825096, -1.7691843423974178) +description = Forsan city, TX +station = ('kbpg', 0.0027116318571190623) +zone = ('txz052', 0.0035658232149544684) + +[fips4826664] +centroid = (0.55525222399210072, -1.8572437429829005) +description = Fort Bliss CDP, TX +station = ('kelp', 0.00043184677906222684) +zone = ('txz419', 0.0016681562944101769) + +[fips4826680] +centroid = (0.51125105983262953, -1.752743166310706) +description = Fort Clark Springs CDP, TX +station = ('kdlf', 0.0031349735415482651) +zone = ('txz202', 0.0010118494235363191) + +[fips4826688] +centroid = (0.53369328875293598, -1.8132606604344801) +description = Fort Davis CDP, TX +station = ('kmrf', 0.0041423720866669272) +zone = ('txz074', 0.0022433791006683385) + +[fips48267] +centroid = (0.53196714066942119, -1.7409030271981019) +description = Kimble County, TX +station = ('kjct', 0.00071718155042185512) +zone = ('txz169', 0.00013250939773198187) + +[fips4826724] +centroid = (0.54610036316646571, -1.8473439038530308) +description = Fort Hancock CDP, TX +station = ('mmcs', 0.010619776823566494) +zone = ('txz423', 0.0020460521173362388) + +[fips4826736] +centroid = (0.54340126383813403, -1.7065832742126132) +description = Fort Hood CDP, TX +station = ('khlr', 0.001195634531553089) +zone = ('txz157', 0.0044824399801336162) + +[fips4826791960] +centroid = (0.5333707868137525, -1.7432994515275526) +description = Junction Northwest CCD, TX +station = ('kjct', 0.0019142550356273289) +zone = ('txz169', 0.0023973293205127246) + +[fips4826791965] +centroid = (0.53094025875071771, -1.7377251666026556) +description = Junction Southeast CCD, TX +station = ('kjct', 0.0034748802493349052) +zone = ('txz169', 0.0030048569521165642) + +[fips4826808] +centroid = (0.53917885859195414, -1.7956943403921775) +description = Fort Stockton city, TX +station = ('kfst', 0.00062475664693414522) +zone = ('txz075', 0.0031134618822224298) + +[fips48269] +centroid = (0.58667774983888465, -1.7497021395286163) +description = King County, TX +station = ('kcds', 0.014305152455411184) +zone = ('txz038', 8.6582663400944115e-05) + +[fips4826991670] +centroid = (0.58667774983888465, -1.7497021395286163) +description = Guthrie CCD, TX +station = ('kcds', 0.014305152455411184) +zone = ('txz038', 8.6582663400944115e-05) + +[fips4827000] +centroid = (0.57211093519576706, -1.6990140604993942) +description = Fort Worth city, TX +station = ('kftw', 0.00098507369338822677) +zone = ('txz118', 0.00081460117470772374) + +[fips48271] +centroid = (0.51220329401922515, -1.7526194922799099) +description = Kinney County, TX +station = ('kdlf', 0.004090161335074915) +zone = ('txz202', 5.4523452662761556e-05) + +[fips4827102] +centroid = (0.51784522790592946, -1.6695821893505784) +description = Four Corners CDP, TX +station = ('ksgr', 0.00094911322950476287) +zone = ('txz227', 0.003007655413760653) + +[fips4827124] +centroid = (0.48513882237439943, -1.7358141183381846) +description = Four Points CDP, TX +station = ('klrd', 0.0044132877206854099) +zone = ('txz239', 0.002000088267797981) + +[fips4827144] +centroid = (0.49659444799949692, -1.7245522766199359) +description = Fowlerton CDP, TX +station = ('kcot', 0.0062472554092505529) +zone = ('txz230', 0.0041333967834278722) + +[fips4827190400] +centroid = (0.51220329401922515, -1.7526194922799099) +description = Brackettville CCD, TX +station = ('kdlf', 0.004090161335074915) +zone = ('txz202', 5.4523452662761556e-05) + +[fips4827288] +centroid = (0.5414967780116503, -1.6839921512538192) +description = Franklin city, TX +station = ('klhb', 0.0033743572531610422) +zone = ('txz175', 0.00040703296727683842) + +[fips48273] +centroid = (0.47889626833220633, -1.7044993685390244) +description = Kleberg County, TX +station = ('krbo', 0.0059448308290763413) +zone = ('txz242', 0.0011445644272350254) + +[fips4827300] +centroid = (0.55950531212653054, -1.6668679929242172) +description = Frankston town, TX +station = ('ktyr', 0.0053367202849348367) +zone = ('txz148', 0.004788019735037511) + +[fips4827348] +centroid = (0.52826138778841669, -1.7257063406812323) +description = Fredericksburg city, TX +station = ('kt82', 0.00065399742177122419) +zone = ('txz188', 0.0013879323409893554) + +[fips4827392035] +centroid = (0.47915000429886123, -1.7038999352074273) +description = Kingsville CCD, TX +station = ('kcrp', 0.0057264116052980849) +zone = ('txz242', 0.0017073885855863299) + +[fips4827393260] +centroid = (0.47687858045043824, -1.7083593212594426) +description = Riviera CCD, TX +station = ('kbks', 0.0042330175222394916) +zone = ('txz242', 0.0029925277487677436) + +[fips4827420] +centroid = (0.50511458690237254, -1.6643004565149007) +description = Freeport city, TX +station = ('klbx', 0.0034911476315592029) +zone = ('txz237', 0.0046169392055589358) + +[fips4827432] +centroid = (0.48662716934733014, -1.7212175283780278) +description = Freer city, TX +station = ('knqi', 0.0042281987841891961) +zone = ('txz240', 0.0038853023185167024) + +[fips48275] +centroid = (0.58672134816359933, -1.7409155237555463) +description = Knox County, TX +station = ('kf05', 0.012569806514747586) +zone = ('txz087', 0.00020209636934026751) + +[fips4827540] +centroid = (0.51552437633309001, -1.6662915630321609) +description = Fresno CDP, TX +station = ('kaxh', 0.00049495148465034783) +zone = ('txz227', 0.0045472899377666451) + +[fips4827590265] +centroid = (0.58730011679685334, -1.7415216067915935) +description = Benjamin CCD, TX +station = ('kf05', 0.012370057561970443) +zone = ('txz087', 0.0009630964128044036) + +[fips4827591585] +centroid = (0.58462585350377749, -1.736997189771649) +description = Goree CCD, TX +station = ('kf05', 0.013185848711380288) +zone = ('txz087', 0.0037122267414007632) + +[fips4827592045] +centroid = (0.5836362343646041, -1.742250002501621) +description = Knox City CCD, TX +station = ('kf05', 0.015789536509048484) +zone = ('txz087', 0.0031375922061579087) + +[fips4827592695] +centroid = (0.58419948702080771, -1.7392726104240588) +description = Munday CCD, TX +station = ('kf05', 0.014197354853911142) +zone = ('txz087', 0.0026681339001891143) + +[fips4827648] +centroid = (0.51500653714402334, -1.6615645307393521) +description = Friendswood city, TX +station = ('klvj', 0.00076594694141803304) +zone = ('txz238', 0.0040947234770936898) + +[fips4827660] +centroid = (0.60457213942068444, -1.7928557194434416) +description = Friona city, TX +station = ('kcvn', 0.0063062297716623798) +zone = ('txz021', 0.0021024953264091842) + +[fips4827684] +centroid = (0.57859458902083072, -1.6898149187043228) +description = Frisco city, TX +station = ('kads', 0.0032242880214486264) +zone = ('txz104', 0.0036631768862964193) + +[fips4827696] +centroid = (0.62208885720564511, -1.7731922466785275) +description = Fritch city, TX +station = ('kbgd', 0.0029570846006982186) +zone = ('txz008', 0.0048518583590055082) + +[fips48277] +centroid = (0.5876045894848636, -1.6680172398767776) +description = Lamar County, TX +station = ('kprx', 0.0018460628750203655) +zone = ('txz095', 1.128784353011382e-05) + +[fips4827744] +centroid = (0.46121819485789867, -1.7292060050841611) +description = Fronton CDP, TX +station = ('kapy', 0.0098761537027217579) +zone = ('txz252', 0.0057877010452930776) + +[fips4827748] +centroid = (0.46120709456385595, -1.7283476870646153) +description = Fronton Ranchettes CDP, TX +station = ('kapy', 0.010123898802508136) +zone = ('txz252', 0.0051023324258886614) + +[fips4827768] +centroid = (0.55988855152368344, -1.6896287618863051) +description = Frost city, TX +station = ('kinj', 0.0042688103557682261) +zone = ('txz134', 0.0047021462208519122) + +[fips4827790285] +centroid = (0.58476628269539299, -1.6670073923715738) +description = Biardstown CCD, TX +station = ('kprx', 0.0024229841057836522) +zone = ('txz095', 0.0029607565563292051) + +[fips4827790345] +centroid = (0.58839339104030253, -1.6648509508142721) +description = Blossom CCD, TX +station = ('kprx', 0.0016413039862508355) +zone = ('txz095', 0.0027613512059658312) + +[fips4827791020] +centroid = (0.58466213889892638, -1.6647037148385739) +description = Deport CCD, TX +station = ('kprx', 0.0025584024339408936) +zone = ('txz095', 0.0040400313359467647) + +[fips4827791840] +centroid = (0.58586056922980834, -1.6692281667651039) +description = Howland CCD, TX +station = ('kprx', 0.0029889720331050741) +zone = ('txz095', 0.0020066510382736082) + +[fips4827792970] +centroid = (0.58750906761490207, -1.6672147025801256) +description = Paris CCD, TX +station = ('kprx', 0.0011891621380617284) +zone = ('txz095', 0.00068517093965552811) + +[fips4827793130] +centroid = (0.59008180510538921, -1.6667525568474901) +description = Powderly CCD, TX +station = ('kprx', 0.0031471364101967273) +zone = ('txz095', 0.0026981157623560681) + +[fips4827793355] +centroid = (0.58564104171649256, -1.6715601535385711) +description = Roxton CCD, TX +station = ('kprx', 0.0048967640243641301) +zone = ('txz106', 0.0032876609547045632) + +[fips4827793795] +centroid = (0.58948732850886754, -1.670586661241686) +description = Sumner CCD, TX +station = ('kprx', 0.0046063001250385227) +zone = ('txz095', 0.0028418555191575576) + +[fips4827804] +centroid = (0.57044690338033066, -1.6720905940048372) +description = Fruitvale city, TX +station = ('kjdd', 0.0046245108236645793) +zone = ('txz122', 0.0021575694569955731) + +[fips4827876] +centroid = (0.51817968535048919, -1.6734632431016532) +description = Fulshear city, TX +station = ('ktme', 0.0021198440309404864) +zone = ('txz227', 0.0032980406416415237) + +[fips4827888] +centroid = (0.48995998027376841, -1.693645375360382) +description = Fulton town, TX +station = ('krkp', 0.00025484737259094941) +zone = ('txz245', 0.0012835564909387471) + +[fips48279] +centroid = (0.59461381430758042, -1.7863098969904216) +description = Lamb County, TX +station = ('kpvw', 0.0092774584320833766) +zone = ('txz028', 5.3429355562007835e-05) + +[fips4827972] +centroid = (0.57189751633483321, -1.770738226483761) +description = Gail CDP, TX +station = ('ksnk', 0.0075340075298265738) +zone = ('txz047', 0.0005433905734293635) + +[fips4827984] +centroid = (0.58710514606611297, -1.6955596699372621) +description = Gainesville city, TX +station = ('kgle', 0.000739380806344444) +zone = ('txz092', 0.00093274811577890042) + +[fips4827991105] +centroid = (0.5975279381997578, -1.7873719472935528) +description = Earth CCD, TX +station = ('khrx', 0.010952677673666285) +zone = ('txz028', 0.0030332489356446166) + +[fips4827992220] +centroid = (0.59243155933064184, -1.7843147238560046) +description = Littlefield CCD, TX +station = ('klbb', 0.0077446291510068488) +zone = ('txz028', 0.0027671129594069315) + +[fips4827992900] +centroid = (0.59655020475279052, -1.7835114709743591) +description = Olton CCD, TX +station = ('kpvw', 0.0067963789658506786) +zone = ('txz028', 0.0030632155813160008) + +[fips4827993775] +centroid = (0.59389135271700988, -1.7888397866477725) +description = Sudan-Amherst CCD, TX +station = ('kcvn', 0.011079295854587782) +zone = ('txz028', 0.0021654027871416824) + +[fips4827996] +centroid = (0.51915106579897907, -1.6621569129407714) +description = Galena Park city, TX +station = ('khou', 0.0020871401159397525) +zone = ('txz213', 0.0030881221506802127) + +[fips4828008] +centroid = (0.55670512332792343, -1.6607167719617808) +description = Gallatin city, TX +station = ('kjso', 0.0010798398476982868) +zone = ('txz149', 0.0010626457891583139) + +[fips4828068] +centroid = (0.50934397346556037, -1.6575349145623475) +description = Galveston city, TX +station = ('kgls', 0.0021411839077785516) +zone = ('txz238', 0.0036805942332432768) + +[fips4828080] +centroid = (0.50687337264289978, -1.6844352205377304) +description = Ganado city, TX +station = ('karm', 0.0065833517214941321) +zone = ('txz235', 0.0018221751781984374) + +[fips48281] +centroid = (0.54448567180898311, -1.7146269731362795) +description = Lampasas County, TX +station = ('klzz', 0.0017188386061883271) +zone = ('txz156', 1.2003798708588727e-05) + +[fips4828128] +centroid = (0.46097945126951834, -1.7268362319323882) +description = Garceno CDP, TX +station = ('kapy', 0.010866890428365604) +zone = ('txz252', 0.0040996098624518206) + +[fips4828152] +centroid = (0.45936678449396812, -1.7226333569205381) +description = Garciasville CDP, TX +station = ('kmfe', 0.0074299658859196911) +zone = ('txz252', 0.0042725146389344651) + +[fips4828176] +centroid = (0.55628470841770294, -1.7713064533283327) +description = Garden City CDP, TX +station = ('kbpg', 0.0057266195369831885) +zone = ('txz063', 0.00048383936496149892) + +[fips4828190015] +centroid = (0.54579028797155638, -1.7128325477724267) +description = Adamsville CCD, TX +station = ('klzz', 0.0030123066010619803) +zone = ('txz156', 0.0020258190566298409) + +[fips4828192130] +centroid = (0.54314534620991406, -1.7130033980529042) +description = Lampasas CCD, TX +station = ('klzz', 0.00075629650653151405) +zone = ('txz156', 0.0019295881228356244) + +[fips4828192255] +centroid = (0.54449389230976009, -1.7173553765427523) +description = Lometa CCD, TX +station = ('klzz', 0.0034022513165210726) +zone = ('txz156', 0.0023262967357381044) + +[fips4828200] +centroid = (0.55874024704891889, -1.7865123377303607) +description = Gardendale CDP, TX +station = ('kodo', 0.0017920285159402343) +zone = ('txz061', 0.0037013411432352261) + +[fips4828248] +centroid = (0.51725389290206125, -1.7155272663243359) +description = Garden Ridge city, TX +station = ('krnd', 0.0018053234632256793) +zone = ('txz206', 0.0030051371783497024) + +[fips48283] +centroid = (0.49482000665557935, -1.7295649844047112) +description = La Salle County, TX +station = ('kcot', 0.0025234356231141311) +zone = ('txz229', 0.00011392495665988213) + +[fips4828320] +centroid = (0.52712041369651041, -1.7028683758063285) +description = Garfield CDP, TX +station = ('kaus', 0.0017816906337839275) +zone = ('txz192', 0.0039823723490357617) + +[fips4828390870] +centroid = (0.49605072557762314, -1.7291599807517861) +description = Cotulla CCD, TX +station = ('kcot', 0.0022513927628320164) +zone = ('txz229', 0.0013943821539405394) + +[fips4828391240] +centroid = (0.4909986955248003, -1.7309252765704231) +description = Encinal CCD, TX +station = ('kcot', 0.005584820330775943) +zone = ('txz229', 0.0038914847725405721) + +[fips48285] +centroid = (0.51282272882405044, -1.6916365188446292) +description = Lavaca County, TX +station = ('kvct', 0.0090055659199244926) +zone = ('txz225', 0.00010429532326317741) + +[fips4828591680] +centroid = (0.5133345466271978, -1.6897348604515339) +description = Hallettsville CCD, TX +station = ('k3t5', 0.0088993894660930849) +zone = ('txz225', 0.0018215034865568642) + +[fips4828592655] +centroid = (0.51597491562619979, -1.6941252710915105) +description = Moulton CCD, TX +station = ('k3t5', 0.0062715678332828928) +zone = ('txz225', 0.0037442876725705628) + +[fips4828593560] +centroid = (0.51358646745143066, -1.695500695261837) +description = Shiner CCD, TX +station = ('k3t5', 0.008912667346400548) +zone = ('txz225', 0.003347879698636019) + +[fips4828594300] +centroid = (0.5106992390830265, -1.6932216792311678) +description = Yoakum CCD, TX +station = ('kvct', 0.0069912681362111484) +zone = ('txz225', 0.0025063152531789212) + +[fips48287] +centroid = (0.52920311509291529, -1.6925568658657908) +description = Lee County, TX +station = ('kgyb', 0.0026523904773120823) +zone = ('txz194', 0.00024248513936308048) + +[fips4828791505] +centroid = (0.52663353664837409, -1.6917332624450672) +description = Giddings CCD, TX +station = ('kgyb', 0.00077127103710103808) +zone = ('txz194', 0.0024506554386283857) + +[fips4828792190] +centroid = (0.53098521843224911, -1.6943108868574601) +description = Lexington CCD, TX +station = ('kgyb', 0.0046680203522817213) +zone = ('txz194', 0.0025803771629051933) + +[fips4828792205] +centroid = (0.52901538747857069, -1.6912524940493128) +description = Lincoln-Dime Box CCD, TX +station = ('kgyb', 0.0027327937078464033) +zone = ('txz194', 0.00096539269916882193) + +[fips48289] +centroid = (0.54629666034743751, -1.675439671399904) +description = Leon County, TX +station = ('kpsn', 0.0094033542219227346) +zone = ('txz162', 6.9700705147479239e-05) + +[fips4828990510] +centroid = (0.54826856824292569, -1.6761260570348357) +description = Buffalo CCD, TX +station = ('kpsn', 0.0080433707243209775) +zone = ('txz162', 0.0021237540253713381) + +[fips4828990680] +centroid = (0.54549489099565629, -1.6734519508213928) +description = Centerville CCD, TX +station = ('kdkr', 0.0071901310916406341) +zone = ('txz162', 0.0018509564189014777) + +[fips4828991940] +centroid = (0.54564692662679759, -1.6795496599889628) +description = Jewett-Marquez CCD, TX +station = ('klhb', 0.0089945136522341252) +zone = ('txz162', 0.003558987002051258) + +[fips4828992775] +centroid = (0.54302050280851888, -1.6778898518703165) +description = Normangee CCD, TX +station = ('klhb', 0.0084040818575231695) +zone = ('txz162', 0.0038299443013323237) + +[fips4828992870] +centroid = (0.54977316423119249, -1.6719246655528501) +description = Oakwood CCD, TX +station = ('kpsn', 0.005055276743857565) +zone = ('txz162', 0.0046458833573005216) + +[fips4829000] +centroid = (0.57438481995843538, -1.6865178870275503) +description = Garland city, TX +station = ('khqz', 0.0031993647407964278) +zone = ('txz120', 0.0032694481294216096) + +[fips4829036] +centroid = (0.5650374997098695, -1.6869062053328265) +description = Garrett town, TX +station = ('klnc', 0.0037069985522810581) +zone = ('txz134', 0.0021400390604092981) + +[fips4829060] +centroid = (0.55546908115166105, -1.6492274789354122) +description = Garrison city, TX +station = ('koch', 0.0053755862117033535) +zone = ('txz152', 0.0040889971109659314) + +[fips48291] +centroid = (0.52642950765881602, -1.6549680064715617) +description = Liberty County, TX +station = ('k6r3', 0.004460206671037038) +zone = ('txz200', 0.00024326546325531071) + +[fips4829108] +centroid = (0.55898930553317849, -1.6470305631927571) +description = Gary City town, TX +station = ('kggg', 0.0080652726553250027) +zone = ('txz151', 0.002524528104160575) + +[fips4829114] +centroid = (0.45992522004143621, -1.7236791233017483) +description = Garza-Salinas II CDP, TX +station = ('kmfe', 0.0084994123956477832) +zone = ('txz252', 0.0036857116272398078) + +[fips4829168] +centroid = (0.54870825158808811, -1.7059900018932754) +description = Gatesville city, TX +station = ('kgop', 0.00081785612956830676) +zone = ('txz157', 0.0011499207490693209) + +[fips4829190755] +centroid = (0.52869143691610809, -1.6575089266097851) +description = Cleveland CCD, TX +station = ('k6r3', 0.0013463452369509826) +zone = ('txz200', 0.0033950267055104883) + +[fips4829190945] +centroid = (0.52557735065152977, -1.6512836338738941) +description = Daisetta CCD, TX +station = ('kbmt', 0.0059615338016479613) +zone = ('txz200', 0.003100928321545726) + +[fips4829191705] +centroid = (0.52901132086141356, -1.6538363873444462) +description = Hardin-Rye CCD, TX +station = ('k6r3', 0.0038968911203700104) +zone = ('txz200', 0.0028854909241541964) + +[fips4829192195] +centroid = (0.52360205681729266, -1.6542486341137672) +description = Liberty-Dayton CCD, TX +station = ('k6r3', 0.0071642132593845243) +zone = ('txz200', 0.0026830989575803302) + +[fips48293] +centroid = (0.55060849626448949, -1.6858767577801226) +description = Limestone County, TX +station = ('kcnw', 0.0072635365529552937) +zone = ('txz161', 0.0001984212442076464) + +[fips4829336] +centroid = (0.53516095357423055, -1.7050689043805354) +description = Georgetown city, TX +station = ('kgtu', 0.00039349597879866815) +zone = ('txz173', 0.0014105503893843735) + +[fips4829348] +centroid = (0.49445177708999355, -1.7124874612727223) +description = George West city, TX +station = ('knog', 0.0027911122598905896) +zone = ('txz231', 0.00038660069975022127) + +[fips4829384] +centroid = (0.51788805828577344, -1.7098740576106635) +description = Geronimo CDP, TX +station = ('kbaz', 0.0014527480370633335) +zone = ('txz207', 0.0015951774001560382) + +[fips4829390835] +centroid = (0.55412200112838672, -1.6872723928631874) +description = Coolidge CCD, TX +station = ('kcnw', 0.0061858325689115824) +zone = ('txz161', 0.0038091272086335352) + +[fips4829391650] +centroid = (0.5503483025796021, -1.6862017380868441) +description = Groesbeck CCD, TX +station = ('kcnw', 0.0070590119957833234) +zone = ('txz161', 0.00052285047458593224) + +[fips4829392050] +centroid = (0.54676138916736605, -1.685969242777186) +description = Kosse CCD, TX +station = ('klhb', 0.0079567834097021232) +zone = ('txz161', 0.0038213098200638104) + +[fips4829392550] +centroid = (0.5530464070702602, -1.6844220083952928) +description = Mexia CCD, TX +station = ('kcrs', 0.0060499683056651739) +zone = ('txz161', 0.0026847769635251033) + +[fips4829393015] +centroid = (0.55036296334531887, -1.6819938190734556) +description = Personville CCD, TX +station = ('kcrs', 0.0084352236230320638) +zone = ('txz161', 0.0031212083936093256) + +[fips4829393135] +centroid = (0.55247095456258521, -1.6891796537631818) +description = Prairie Hill CCD, TX +station = ('kcnw', 0.0042734728005449953) +zone = ('txz161', 0.0035570202763957471) + +[fips4829393900] +centroid = (0.54806822189808935, -1.6840798016888545) +description = Thornton CCD, TX +station = ('klhb', 0.0094623370190517787) +zone = ('txz161', 0.002839247566618294) + +[fips4829408] +centroid = (0.55336669244129366, -1.6971234500404639) +description = Gholson city, TX +station = ('kact', 0.0018697366607644662) +zone = ('txz159', 0.0027270463931223757) + +[fips4829432] +centroid = (0.52679211726421027, -1.6917350775874893) +description = Giddings city, TX +station = ('kgyb', 0.00080226780597024037) +zone = ('txz194', 0.0022960256238037172) + +[fips48295] +centroid = (0.6332089432820468, -1.7500884681585454) +description = Lipscomb County, TX +station = ('khhf', 0.0068744045151053479) +zone = ('txz005', 4.4025928993984454e-05) + +[fips4829564] +centroid = (0.57128597041822693, -1.6571164020610116) +description = Gilmer city, TX +station = ('kjxi', 0.00058418293861041252) +zone = ('txz125', 9.5197509503846384e-05) + +[fips4829590380] +centroid = (0.63474732884463214, -1.7524899888494119) +description = Booker CCD, TX +station = ('kpyx', 0.0045726934549460089) +zone = ('txz005', 0.0024947729421873556) + +[fips4829591345] +centroid = (0.63498071427220881, -1.7477961003590983) +description = Follett CCD, TX +station = ('kgag', 0.0054570890163317528) +zone = ('txz005', 0.0025938344805806635) + +[fips4829591805] +centroid = (0.63102850344753025, -1.7498835141444837) +description = Higgins CCD, TX +station = ('khhf', 0.0048685152504877628) +zone = ('txz005', 0.0021436559969465509) + +[fips4829612] +centroid = (0.58230292498912817, -1.7568430319901034) +description = Girard CDP, TX +station = ('ksnk', 0.012445512214917928) +zone = ('txz043', 0.0036140737611191592) + +[fips4829660] +centroid = (0.56798839768938636, -1.6571084084530376) +description = Gladewater city, TX +station = ('kjxi', 0.0027153067228141954) +zone = ('txz137', 0.0021831482441045588) + +[fips48297] +centroid = (0.49482763374441052, -1.7126385544260674) +description = Live Oak County, TX +station = ('knog', 0.0024795277427851633) +zone = ('txz231', 3.3276024586486057e-05) + +[fips4829791500] +centroid = (0.49208003171616599, -1.7108880415461947) +description = George West CCD, TX +station = ('kbea', 0.0046492495368039835) +zone = ('txz231', 0.0031323851176098894) + +[fips4829793905] +centroid = (0.49775830335789678, -1.7131187992230463) +description = Three Rivers CCD, TX +station = ('knog', 0.0014870517592902035) +zone = ('txz231', 0.0029681803280342269) + +[fips4829840] +centroid = (0.56812736080443016, -1.6904279656040857) +description = Glenn Heights city, TX +station = ('kjwy', 0.0018710775596477293) +zone = ('txz134', 0.0036494667639106709) + +[fips4829876] +centroid = (0.56281208274052918, -1.7060170894032665) +description = Glen Rose city, TX +station = ('kgdj', 0.0035928939370595586) +zone = ('txz132', 0.00058223165857509485) + +[fips48299] +centroid = (0.53594846358602299, -1.7223727618099229) +description = Llano County, TX +station = ('kaqo', 0.0013700685698511091) +zone = ('txz171', 3.6158993305024091e-05) + +[fips4829912] +centroid = (0.51833067378407915, -1.6857237971244778) +description = Glidden CDP, TX +station = ('k3t5', 0.0066333487154871277) +zone = ('txz210', 0.001616105607724154) + +[fips4829972] +centroid = (0.56641894526611558, -1.7022636541270975) +description = Godley city, TX +station = ('kcpt', 0.0022712675045626438) +zone = ('txz133', 0.0027721472374817023) + +[fips4829992230] +centroid = (0.53783148186270713, -1.7223240322172073) +description = Llano North CCD, TX +station = ('kaqo', 0.0006314624895525174) +zone = ('txz171', 0.001917922175984561) + +[fips4829992235] +centroid = (0.53426244062201145, -1.7223725000105352) +description = Llano South CCD, TX +station = ('kaqo', 0.0030321794234631164) +zone = ('txz171', 0.0016514092742685421) + +[fips4830044] +centroid = (0.5582143269854154, -1.7909937149309514) +description = Goldsmith city, TX +station = ('kodo', 0.0034091076125234263) +zone = ('txz061', 0.0022705760744194297) + +[fips4830056] +centroid = (0.54896099271706944, -1.7203675530323066) +description = Goldthwaite city, TX +station = ('kcwc', 0.0071991926108597335) +zone = ('txz142', 0.00082766320504084245) + +[fips4830080] +centroid = (0.50040563622061429, -1.6998214498113668) +description = Goliad city, TX +station = ('kvct', 0.0078111938620343095) +zone = ('txz233', 0.00057269898816763654) + +[fips4830092] +centroid = (0.54737581487723808, -1.6942537796843347) +description = Golinda city, TX +station = ('kpwg', 0.0041913037458829435) +zone = ('txz160', 0.0028004710772472183) + +[fips48301] +centroid = (0.55579898328687294, -1.8074844234618346) +description = Loving County, TX +station = ('kink', 0.005464262157814247) +zone = ('txz059', 0.00028807516890084979) + +[fips4830116] +centroid = (0.51509095871994226, -1.7007751151679491) +description = Gonzales city, TX +station = ('khyi', 0.0091811047456584003) +zone = ('txz223', 0.0011927612355865824) + +[fips4830188] +centroid = (0.56039459228700661, -1.6792782263836927) +description = Goodlow city, TX +station = ('kcrs', 0.0029518129786438338) +zone = ('txz146', 0.0039459398845596979) + +[fips4830192525] +centroid = (0.55579898328687294, -1.8074844234618346) +description = Mentone CCD, TX +station = ('kink', 0.005464262157814247) +zone = ('txz059', 0.00028807516890084979) + +[fips4830224] +centroid = (0.5342326478516799, -1.657131219906361) +description = Goodrich city, TX +station = ('k6r3', 0.0044538820480983995) +zone = ('txz178', 0.0033496192515130988) + +[fips4830272] +centroid = (0.56801398421622062, -1.7168416563307201) +description = Gordon city, TX +station = ('kmwl', 0.0060750159249241629) +zone = ('txz116', 0.003725221808244885) + +[fips4830296] +centroid = (0.58412618319222398, -1.7370148699569716) +description = Goree city, TX +station = ('kf05', 0.013672476437802729) +zone = ('txz087', 0.0039812099652769229) + +[fips48303] +centroid = (0.586630800482006, -1.7770932669962454) +description = Lubbock County, TX +station = ('klbb', 0.00096455731937033769) +zone = ('txz035', 2.3576632122377207e-05) + +[fips4830308] +centroid = (0.56223230181630912, -1.7221526234313689) +description = Gorman city, TX +station = ('kmkn', 0.0052890905468009159) +zone = ('txz129', 0.003085321107625869) + +[fips4830380] +centroid = (0.5748663388457681, -1.7147424615728841) +description = Graford city, TX +station = ('kmwl', 0.0037763701292495336) +zone = ('txz116', 0.0033555197668721356) + +[fips4830391865] +centroid = (0.58849531826861889, -1.7742486421148822) +description = Idalou CCD, TX +station = ('klbb', 0.0024881300787243255) +zone = ('txz035', 0.0030336869583490219) + +[fips4830392] +centroid = (0.57771935876083313, -1.7205072840922213) +description = Graham city, TX +station = ('krph', 0.00036580213997362739) +zone = ('txz100', 0.0020821085359300799) + +[fips4830392315] +centroid = (0.58601263976753459, -1.778258187005489) +description = Lubbock CCD, TX +station = ('klbb', 0.0018806758653206002) +zone = ('txz035', 0.0011319075867511645) + +[fips4830393540] +centroid = (0.58870405964715744, -1.7801800388580298) +description = Shallowater CCD, TX +station = ('klbb', 0.0028414162984620778) +zone = ('txz035', 0.0033088910231118631) + +[fips4830393590] +centroid = (0.58443885892771885, -1.7739749744881694) +description = Slaton CCD, TX +station = ('klbb', 0.0040571334404137932) +zone = ('txz035', 0.0033917767558412078) + +[fips4830416] +centroid = (0.56603787007723516, -1.7068428570322625) +description = Granbury city, TX +station = ('kgdj', 0.00038875110122852329) +zone = ('txz131', 0.00055184827178639349) + +[fips4830422] +centroid = (0.45801663269121035, -1.7074407370208258) +description = Grand Acres CDP, TX +station = ('kt65', 0.0025222457473243042) +zone = ('txz254', 0.0042754013284904526) + +[fips4830440] +centroid = (0.54699480950152768, -1.7951490297206845) +description = Grandfalls town, TX +station = ('kfst', 0.0074553310688706201) +zone = ('txz067', 0.0047261052121028895) + +[fips4830464] +centroid = (0.57044678120728298, -1.6933358063109558) +description = Grand Prairie city, TX +station = ('kgpm', 0.00045333588139347028) +zone = ('txz119', 0.0038482329752598417) + +[fips4830476] +centroid = (0.57033361405858374, -1.6704741049582252) +description = Grand Saline city, TX +station = ('kjdd', 0.0033467447561787238) +zone = ('txz122', 0.0027123220925909701) + +[fips48305] +centroid = (0.57907252998319692, -1.7770679422687989) +description = Lynn County, TX +station = ('klbb', 0.0085216930497780206) +zone = ('txz041', 4.48726443679894e-05) + +[fips4830512] +centroid = (0.5631876950488508, -1.6960674560298374) +description = Grandview city, TX +station = ('kinj', 0.0034388892156588758) +zone = ('txz133', 0.0033893410185525008) + +[fips4830548] +centroid = (0.53613537089561902, -1.70066873735004) +description = Granger city, TX +station = ('kgtu', 0.0036854727567208062) +zone = ('txz173', 0.0026914548275054069) + +[fips4830584] +centroid = (0.53389148834279243, -1.7170131174764363) +description = Granite Shoals city, TX +station = ('kdzb', 0.0010755205446892199) +zone = ('txz172', 0.0045381769669799055) + +[fips4830592880] +centroid = (0.57612166691026501, -1.7773207183043651) +description = O'Donnell CCD, TX +station = ('klbb', 0.01147497901388627) +zone = ('txz041', 0.0029331267924958731) + +[fips4830593820] +centroid = (0.57949453314303656, -1.7775306290535027) +description = Tahoka CCD, TX +station = ('klbb', 0.0081101565313182328) +zone = ('txz041', 0.00061712322351072362) + +[fips4830594230] +centroid = (0.58160559613978635, -1.774487734769113) +description = Wilson CCD, TX +station = ('klbb', 0.0063544735673425664) +zone = ('txz041', 0.0033266012668322384) + +[fips4830608] +centroid = (0.45618361809759578, -1.7157131962495507) +description = Granjeno city, TX +station = ('kmfe', 0.0011556021268690623) +zone = ('txz253', 0.0049137817217710248) + +[fips4830629] +centroid = (0.55120422949807268, -1.7548826607209709) +description = Grape Creek CDP, TX +station = ('ksjt', 0.0041045406738063825) +zone = ('txz072', 0.0033441856996952873) + +[fips4830632] +centroid = (0.54967989383596583, -1.6664515399113986) +description = Grapeland city, TX +station = ('kdkr', 0.0034660976023388719) +zone = ('txz163', 0.0031997705108048427) + +[fips4830644] +centroid = (0.5748086033541121, -1.6943051272709284) +description = Grapevine city, TX +station = ('kdfw', 0.00086888438189814256) +zone = ('txz118', 0.0042585087362476699) + +[fips48307] +centroid = (0.54463831830536247, -1.7341566315074428) +description = McCulloch County, TX +station = ('kbbd', 0.00070656121164071046) +zone = ('txz154', 0.00021725879470384742) + +[fips4830752] +centroid = (0.56682108657906749, -1.6816625206748421) +description = Grays Prairie village, TX +station = ('ktrl', 0.0043769022322145898) +zone = ('txz121', 0.0023480780989402041) + +[fips4830790405] +centroid = (0.54199705918844199, -1.7335429388358565) +description = Brady CCD, TX +station = ('kbbd', 0.0021820903342888369) +zone = ('txz154', 0.0025493418005001528) + +[fips4830792505] +centroid = (0.54579510508029183, -1.7362311647629485) +description = Melvin CCD, TX +station = ('kbbd', 0.0028197973102700468) +zone = ('txz154', 0.0023348445286601781) + +[fips4830793280] +centroid = (0.54618082284498259, -1.7312758434039788) +description = Rochelle CCD, TX +station = ('kbbd', 0.0027781205574016993) +zone = ('txz154', 0.0028175133882592856) + +[fips4830806] +centroid = (0.51576308501488533, -1.6697444177045513) +description = Greatwood CDP, TX +station = ('ksgr', 0.0011821618267693138) +zone = ('txz227', 0.0015939685713155982) + +[fips4830890] +centroid = (0.45590197431620144, -1.7027504788153562) +description = Green Valley Farms CDP, TX +station = ('khrl', 0.0021776090784500434) +zone = ('txz255', 0.00029650325784429349) + +[fips48309] +centroid = (0.55064253018490328, -1.6964857241850777) +description = McLennan County, TX +station = ('kact', 0.00091000730962347389) +zone = ('txz159', 5.0970719523545029e-05) + +[fips4830920] +centroid = (0.57791172895098797, -1.6774088042218818) +description = Greenville city, TX +station = ('kgvt', 0.00099827932077634724) +zone = ('txz105', 0.00039390386078809708) + +[fips4830990175] +centroid = (0.55261475223965695, -1.6925577210771243) +description = Axtell CCD, TX +station = ('kcnw', 0.0014447887942802893) +zone = ('txz159', 0.0038621100863737217) + +[fips4830990715] +centroid = (0.55287222321091112, -1.6982703757051194) +description = China Spring CCD, TX +station = ('kact', 0.0018684349110267859) +zone = ('txz159', 0.002653832542903163) + +[fips4830990895] +centroid = (0.55079870224637184, -1.7007286894098459) +description = Crawford CCD, TX +station = ('kpwg', 0.0023108359326266432) +zone = ('txz159', 0.0036122366229015598) + +[fips4830991210] +centroid = (0.55286187340844684, -1.6947313541275582) +description = Elm Mott CCD, TX +station = ('kcnw', 0.000787833434228137) +zone = ('txz159', 0.0026361927176058132) + +[fips4830992355] +centroid = (0.54860354928626098, -1.699817226114577) +description = McGregor CCD, TX +station = ('kpwg', 0.0014323667575022883) +zone = ('txz159', 0.003522689388371645) + +[fips4830992435] +centroid = (0.55011832054406684, -1.6916773246425409) +description = Mart CCD, TX +station = ('kcnw', 0.0030020509053370146) +zone = ('txz159', 0.0041432222928830097) + +[fips4830992631] +centroid = (0.54736354521259656, -1.6978083172389467) +description = Moody-Lorena CCD, TX +station = ('kpwg', 0.0022039036784758759) +zone = ('txz159', 0.0035141024657193622) + +[fips4830994055] +centroid = (0.55021118951356551, -1.6956987552253533) +description = Waco CCD, TX +station = ('kact', 0.0015897588969465662) +zone = ('txz159', 0.00082996291488456075) + +[fips4830994140] +centroid = (0.55442867293125464, -1.6953873710335052) +description = West CCD, TX +station = ('kcnw', 0.0024299112596845663) +zone = ('txz159', 0.0038518084301294359) + +[fips4831064] +centroid = (0.48733282341720396, -1.698061442340363) +description = Gregory city, TX +station = ('ktfp', 0.0014154760213547588) +zone = ('txz244', 0.0038178409986951204) + +[fips48311] +centroid = (0.49541034682177387, -1.7205255576894896) +description = McMullen County, TX +station = ('knog', 0.0080463930897214635) +zone = ('txz230', 0.00064906796432260422) + +[fips4831100] +centroid = (0.5168909865906941, -1.7223476290686943) +description = Grey Forest city, TX +station = ('k5c1', 0.0018237422497761062) +zone = ('txz205', 0.0038216859076338878) + +[fips4831193920] +centroid = (0.49541034682177387, -1.7205255576894896) +description = Tilden CCD, TX +station = ('knog', 0.0080463930897214635) +zone = ('txz230', 0.00064906796432260422) + +[fips4831280] +centroid = (0.5502259200924523, -1.6847325024692228) +description = Groesbeck city, TX +station = ('kcnw', 0.0083012230789746497) +zone = ('txz161', 0.00085371841980831143) + +[fips4831292] +centroid = (0.61449138661183633, -1.7646232560098887) +description = Groom town, TX +station = ('kppa', 0.0072379697744324577) +zone = ('txz013', 0.0049216094078975686) + +[fips48313] +centroid = (0.54047398016339665, -1.6743008440629779) +description = Madison County, TX +station = ('kuts', 0.0064314063673056084) +zone = ('txz176', 3.6993302380727116e-05) + +[fips4831328] +centroid = (0.52265579165673881, -1.6391548696628877) +description = Groves city, TX +station = ('korg', 0.002746333240224174) +zone = ('txz216', 0.0031933059724520959) + +[fips4831340] +centroid = (0.54204725485772931, -1.6602683619703582) +description = Groveton city, TX +station = ('kdkr', 0.0060136615942602912) +zone = ('txz164', 0.00057121082137426954) + +[fips4831392370] +centroid = (0.54028246518457523, -1.6734303436452529) +description = Madisonville CCD, TX +station = ('kuts', 0.0057218547427442716) +zone = ('txz176', 0.00073665447793501567) + +[fips4831392575] +centroid = (0.54138158628101862, -1.6710498716251656) +description = Midway CCD, TX +station = ('kuts', 0.0052746340072718388) +zone = ('txz176', 0.0029099329683589955) + +[fips4831392860] +centroid = (0.54003134721179835, -1.6771226923976021) +description = North Zulch CCD, TX +station = ('kcll', 0.0074862095083626486) +zone = ('txz176', 0.0024852914114645614) + +[fips4831412] +centroid = (0.63286500869964879, -1.7698881638715773) +description = Gruver city, TX +station = ('kguy', 0.0074941780939502657) +zone = ('txz003', 0.00079775182223477199) + +[fips4831442] +centroid = (0.4609556973383987, -1.7293050525192117) +description = Guadalupe-Guerra CDP, TX +station = ('kapy', 0.010105562993762217) +zone = ('txz252', 0.005980125295486749) + +[fips4831484] +centroid = (0.46918958479065481, -1.7260413042712748) +description = Guerra CDP, TX +station = ('kapy', 0.0057328048594285884) +zone = ('txz249', 0.004162343124903393) + +[fips48315] +centroid = (0.57242884691901785, -1.6468520683701555) +description = Marion County, TX +station = ('kasl', 0.0049212872027525672) +zone = ('txz126', 8.1327856744978061e-06) + +[fips4831591937] +centroid = (0.5723465022849088, -1.6443540484249459) +description = Jefferson CCD, TX +station = ('kasl', 0.0049280849147660356) +zone = ('txz126', 0.0020947085218054021) + +[fips4831592] +centroid = (0.56423436900127188, -1.677815762643569) +description = Gun Barrel City city, TX +station = ('kcrs', 0.0065867882253420936) +zone = ('txz135', 0.0045755738186471946) + +[fips4831592092] +centroid = (0.57245225178428716, -1.6496781578548623) +description = Lake O' the Pines CCD, TX +station = ('kasl', 0.0058429366048675501) +zone = ('txz126', 0.0023825713784398563) + +[fips4831616] +centroid = (0.58451860302124237, -1.6882830083132623) +description = Gunter city, TX +station = ('kgyi', 0.0040591378815431024) +zone = ('txz093', 0.0025055272721899126) + +[fips4831628] +centroid = (0.55581212561614046, -1.7174481233392032) +description = Gustine town, TX +station = ('kcwc', 0.0013205880753127514) +zone = ('txz141', 0.0029171058731011722) + +[fips4831640] +centroid = (0.58681755071196939, -1.7510511045074828) +description = Guthrie CDP, TX +station = ('kcds', 0.014172115977431756) +zone = ('txz038', 0.0010516619633084234) + +[fips4831646] +centroid = (0.45972892286046446, -1.7214686812573898) +description = Gutierrez CDP, TX +station = ('kmfe', 0.006591049341413001) +zone = ('txz252', 0.004203965813038296) + +[fips48317] +centroid = (0.56391291425963941, -1.779569749578485) +description = Martin County, TX +station = ('kmdd', 0.0051954641217987095) +zone = ('txz051', 0.00016986499426547053) + +[fips4831715] +centroid = (0.57856441227806377, -1.6915433182625728) +description = Hackberry town, TX +station = ('kads', 0.0034212414597987752) +zone = ('txz103', 0.003058741869454853) + +[fips4831793725] +centroid = (0.56208801544704678, -1.7768450288167341) +description = Stanton CCD, TX +station = ('kbpg', 0.0042698682876314443) +zone = ('txz051', 0.0027762449872179682) + +[fips4831793835] +centroid = (0.5641989562707489, -1.7796143776474584) +description = Tarzan-Lenorah CCD, TX +station = ('kmdd', 0.0054452240722714903) +zone = ('txz051', 0.00040145859877349795) + +[fips4831820] +centroid = (0.59456573048668793, -1.7775525678422002) +description = Hale Center city, TX +station = ('kpvw', 0.0025773047206047303) +zone = ('txz029', 0.00029021411207576361) + +[fips4831868] +centroid = (0.51387701241201011, -1.6919787953642378) +description = Hallettsville city, TX +station = ('k3t5', 0.0081176764004472733) +zone = ('txz225', 0.0010432515251891995) + +[fips4831880] +centroid = (0.55126067344608221, -1.6915441909271984) +description = Hallsburg city, TX +station = ('kcnw', 0.0024506448421984283) +zone = ('txz159', 0.0042531474643986936) + +[fips48319] +centroid = (0.53587248940368359, -1.7320230014034648) +description = Mason County, TX +station = ('kbbd', 0.0084064403372360631) +zone = ('txz170', 0.00030591413309187613) + +[fips4831904] +centroid = (0.56729117355979974, -1.6505269289233995) +description = Hallsville city, TX +station = ('kggg', 0.003028362174135605) +zone = ('txz138', 0.003002056669267378) + +[fips4831928] +centroid = (0.57277688302515806, -1.6977018696078674) +description = Haltom City city, TX +station = ('kftw', 0.0014271922101100746) +zone = ('txz118', 0.00087984291584889145) + +[fips4831952] +centroid = (0.55333367081184592, -1.7124890844289267) +description = Hamilton city, TX +station = ('kmnz', 0.00075227361112251482) +zone = ('txz143', 0.00011593889338736779) + +[fips4831964] +centroid = (0.57403856408813214, -1.7476418132532219) +description = Hamlin city, TX +station = ('ksww', 0.0088602202042463961) +zone = ('txz113', 0.0045520278522863762) + +[fips4831992445] +centroid = (0.53710861884640859, -1.7295299905532087) +description = Mason East CCD, TX +station = ('kaqo', 0.0064923327322579322) +zone = ('txz170', 0.0022018897679905746) + +[fips4831992450] +centroid = (0.53539667774300492, -1.7332673862535517) +description = Mason West CCD, TX +station = ('kjct', 0.0074178719255768577) +zone = ('txz170', 0.001440430370568211) + +[fips48321] +centroid = (0.5023640701742772, -1.675476899272849) +description = Matagorda County, TX +station = ('kbyy', 0.0038966724336905595) +zone = ('txz236', 0.0014569181941195383) + +[fips4832156] +centroid = (0.6063549932515967, -1.7777425294779872) +description = Happy town, TX +station = ('khrx', 0.0070849408425600509) +zone = ('txz017', 0.0039564835135411248) + +[fips4832190220] +centroid = (0.50653552925959133, -1.6736833291203297) +description = Bay City CCD, TX +station = ('kbyy', 0.00098675606762777738) +zone = ('txz236', 0.0030560187797387009) + +[fips4832192465] +centroid = (0.50006562862903337, -1.6733686811627801) +description = Matagorda-Sargent CCD, TX +station = ('kbyy', 0.0056134561658565101) +zone = ('txz236', 0.0040934880444942635) + +[fips4832192940] +centroid = (0.5002215214378215, -1.6787816976647929) +description = Palacios CCD, TX +station = ('kpsx', 0.0013731176662446045) +zone = ('txz236', 0.0047328151586739173) + +[fips4832193915] +centroid = (0.50468109947605477, -1.6782373992842659) +description = Tidehaven CCD, TX +station = ('kpsx', 0.0037663196069323305) +zone = ('txz236', 0.0027494028364005128) + +[fips4832240] +centroid = (0.52620338280092749, -1.6534856459779652) +description = Hardin city, TX +station = ('k6r3', 0.0055116781466874954) +zone = ('txz200', 0.0011243761212264189) + +[fips48323] +centroid = (0.50169868085024683, -1.7507636487796794) +description = Maverick County, TX +station = ('mmpg', 0.0032398433176185791) +zone = ('txz217', 6.6206622192963258e-05) + +[fips4832300] +centroid = (0.46150500481387885, -1.7106767694402409) +description = Hargill CDP, TX +station = ('kebg', 0.0017953720357146816) +zone = ('txz253', 0.0027214944262187071) + +[fips4832312] +centroid = (0.5420418094304631, -1.7042131519949901) +description = Harker Heights city, TX +station = ('kile', 0.00074687790254277528) +zone = ('txz158', 0.0025045774634773607) + +[fips4832372] +centroid = (0.45712274486150889, -1.7051410039319352) +description = Harlingen city, TX +station = ('khrl', 0.00086490403313667244) +zone = ('txz255', 0.0022266261076999113) + +[fips4832391100] +centroid = (0.49727596416581571, -1.7499189617815913) +description = Eagle Pass CCD, TX +station = ('mmpg', 0.005321350412795892) +zone = ('txz217', 0.0044476709295230132) + +[fips4832393165] +centroid = (0.5043617042229398, -1.751559902891024) +description = Quemado CCD, TX +station = ('kdlf', 0.0041707270440853759) +zone = ('txz217', 0.0027855345834358496) + +[fips4832456] +centroid = (0.52824112451580096, -1.7326393120689292) +description = Harper CDP, TX +station = ('kt82', 0.0054936672658138837) +zone = ('txz186', 0.0037541914833334653) + +[fips48325] +centroid = (0.51231803196425119, -1.7298147584739643) +description = Medina County, TX +station = ('khdo', 0.00087542149529717798) +zone = ('txz204', 3.8613181504216168e-05) + +[fips4832576] +centroid = (0.60014462308081018, -1.7822427562344993) +description = Hart city, TX +station = ('kpvw', 0.0068807889143355028) +zone = ('txz022', 0.0032857041857456736) + +[fips4832590645] +centroid = (0.51389743276425848, -1.725477405843248) +description = Castroville-LaCoste CCD, TX +station = ('kcvb', 0.0018278572073601603) +zone = ('txz204', 0.0040681003113078526) + +[fips4832591030] +centroid = (0.50934262956203635, -1.7266547875033509) +description = Devine-Natalia CCD, TX +station = ('kcvb', 0.0029959914515027132) +zone = ('txz204', 0.0040721118686159212) + +[fips4832591040] +centroid = (0.51215761875270049, -1.7333188734664857) +description = D'Hanis CCD, TX +station = ('khdo', 0.002242366169898201) +zone = ('txz204', 0.0030755669686807646) + +[fips4832591820] +centroid = (0.5128786491732843, -1.7294648723188168) +description = Hondo CCD, TX +station = ('khdo', 0.0011976508997935855) +zone = ('txz204', 0.00059976390620310855) + +[fips4832612] +centroid = (0.62654298981661227, -1.7871592091110273) +description = Hartley CDP, TX +station = ('kdht', 0.0029936405007723781) +zone = ('txz006', 0.0030888702914791551) + +[fips4832696] +centroid = (0.57874725297050278, -1.7406523281043456) +description = Haskell city, TX +station = ('kabi', 0.01298935446648746) +zone = ('txz098', 0.00032257089718377519) + +[fips48327] +centroid = (0.53902237237122042, -1.7427974075682164) +description = Menard County, TX +station = ('kjct', 0.0065415894660749577) +zone = ('txz168', 0.00052516858921689458) + +[fips4832720] +centroid = (0.57538588845750172, -1.6988489348988629) +description = Haslet city, TX +station = ('kafw', 0.0004086475717333371) +zone = ('txz118', 0.0034972168973586132) + +[fips4832792] +centroid = (0.45818732589205535, -1.7193409154596984) +description = Havana CDP, TX +station = ('kmfe', 0.0042594242845545383) +zone = ('txz253', 0.0057444660918845062) + +[fips4832792515] +centroid = (0.53905157172960627, -1.7392148225725252) +description = Menard East CCD, TX +station = ('kjct', 0.0066704862297090155) +zone = ('txz168', 0.002561366033049654) + +[fips4832792520] +centroid = (0.53921641807745713, -1.7444087478935353) +description = Menard West CCD, TX +station = ('kjct', 0.0071348196046068183) +zone = ('txz168', 0.0018990309693662953) + +[fips4832810] +centroid = (0.57392677574954198, -1.6769668868552765) +description = Hawk Cove city, TX +station = ('kgvt', 0.0032045038027713438) +zone = ('txz105', 0.0041892367084068495) + +[fips4832816] +centroid = (0.56882695858179955, -1.6616111484836726) +description = Hawkins city, TX +station = ('kjxi', 0.0041869865240231645) +zone = ('txz136', 0.003899227242613392) + +[fips4832840] +centroid = (0.56907830344737931, -1.7420769705595784) +description = Hawley city, TX +station = ('kdys', 0.0033045528192095653) +zone = ('txz113', 0.0025282836011442569) + +[fips48329] +centroid = (0.55625207076069072, -1.7806604058280564) +description = Midland County, TX +station = ('kmaf', 0.0028218687345271409) +zone = ('txz062', 0.00011180607076123501) + +[fips4832906] +centroid = (0.52571961243885978, -1.7081955395624355) +description = Hays city, TX +station = ('kaus', 0.0030504467661810128) +zone = ('txz191', 0.0026391432864062438) + +[fips4832910] +centroid = (0.46357925881670409, -1.7300713567805923) +description = H. Cuellar Estates CDP, TX +station = ('kapy', 0.0073939011288446325) +zone = ('txz252', 0.0060475843548040056) + +[fips4832972] +centroid = (0.53890639524242534, -1.6859045783283995) +description = Hearne city, TX +station = ('klhb', 0.00041535518554273966) +zone = ('txz175', 0.0028930986901504405) + +[fips4832984] +centroid = (0.5732521361804761, -1.6838513031831834) +description = Heath city, TX +station = ('khqz', 0.00187682645809059) +zone = ('txz120', 0.0013786401460092656) + +[fips4832992560] +centroid = (0.55874160840573539, -1.7829656716106754) +description = Midland CCD, TX +station = ('kmdd', 0.00091397290828351902) +zone = ('txz062', 0.003124576486443746) + +[fips4832992566] +centroid = (0.55586970402816371, -1.7803244124937549) +description = Midland South CCD, TX +station = ('kmaf', 0.0032420367458497593) +zone = ('txz062', 0.00052825545407911094) + +[fips4833008] +centroid = (0.47689336338920263, -1.7223967775404303) +description = Hebbronville CDP, TX +station = ('khbv', 0.00075086600820370778) +zone = ('txz249', 0.0049000974596381227) + +[fips4833020] +centroid = (0.57678583450381893, -1.6909919862051601) +description = Hebron town, TX +station = ('kads', 0.0016110132405081619) +zone = ('txz103', 0.0043405474844021175) + +[fips4833044] +centroid = (0.60855065235719052, -1.7568318444295981) +description = Hedley city, TX +station = ('kcds', 0.0092999722410173642) +zone = ('txz019', 0.0028007312376672725) + +[fips4833068] +centroid = (0.51975407705554311, -1.6671312234820028) +description = Hedwig Village city, TX +station = ('kmcj', 0.0021827262020406293) +zone = ('txz213', 0.0023555163449591292) + +[fips4833092] +centroid = (0.45698090195319935, -1.7084158524739148) +description = Heidelberg CDP, TX +station = ('kt65', 0.0013823425579642648) +zone = ('txz255', 0.0049136777917130978) + +[fips48331] +centroid = (0.53740855367836382, -1.6926970158047261) +description = Milam County, TX +station = ('kt35', 0.0015507378980167588) +zone = ('txz174', 0.00014166189364317946) + +[fips4833146] +centroid = (0.51607953066156431, -1.7225290211378539) +description = Helotes city, TX +station = ('k5c1', 0.0026329030008989326) +zone = ('txz205', 0.0033699666118656843) + +[fips4833188] +centroid = (0.54704378344033866, -1.6380248911452688) +description = Hemphill city, TX +station = ('kbkb', 0.0069456406542926525) +zone = ('txz167', 2.4255502163643546e-06) + +[fips4833190505] +centroid = (0.53939747853405906, -1.6952677461665735) +description = Buckholts CCD, TX +station = ('kt35', 0.0024471255604866628) +zone = ('txz174', 0.0031122393018586311) + +[fips4833190540] +centroid = (0.54034711218006914, -1.6907786197041037) +description = Burlington CCD, TX +station = ('kt35', 0.0020136366580470405) +zone = ('txz174', 0.0033916886574753822) + +[fips4833190590] +centroid = (0.53812768169006309, -1.6925003171980262) +description = Cameron CCD, TX +station = ('kt35', 0.00081931504177536587) +zone = ('txz174', 0.00080736774145621969) + +[fips4833190960] +centroid = (0.53699503281868877, -1.6964029606719482) +description = Davilla CCD, TX +station = ('kt35', 0.0039044163132585332) +zone = ('txz174', 0.0033126166808396611) + +[fips4833191485] +centroid = (0.53667968672943844, -1.6893124384126736) +description = Gause-Milano CCD, TX +station = ('klhb', 0.0033028226886234512) +zone = ('txz174', 0.0028686883851450993) + +[fips4833193290] +centroid = (0.53489894474692123, -1.6929064727682579) +description = Rockdale CCD, TX +station = ('kt35', 0.0040652330995809231) +zone = ('txz174', 0.0024409469759732179) + +[fips4833193895] +centroid = (0.53403287746549655, -1.6953402471437014) +description = Thorndale CCD, TX +station = ('kt35', 0.0055000591171485537) +zone = ('txz174', 0.0040633390370956477) + +[fips4833200] +centroid = (0.52529095957456995, -1.6768955552487477) +description = Hempstead city, TX +station = ('k11r', 0.0049360813690546837) +zone = ('txz212', 0.0020369745493593748) + +[fips4833212] +centroid = (0.56124999560670163, -1.6545005374847075) +description = Henderson city, TX +station = ('krfi', 0.00085432246541983432) +zone = ('txz150', 0.0010010275250138963) + +[fips4833284] +centroid = (0.59017099143016616, -1.7137871905133901) +description = Henrietta city, TX +station = ('ksps', 0.0053396138706681391) +zone = ('txz090', 0.00055309207854311129) + +[fips48333] +centroid = (0.54968951060014437, -1.7208007961125291) +description = Mills County, TX +station = ('kcwc', 0.0065591275666854257) +zone = ('txz142', 1.4135367491223447e-05) + +[fips4833320] +centroid = (0.60778307400545595, -1.7872074500115525) +description = Hereford city, TX +station = ('khrx', 0.0011821467406913158) +zone = ('txz016', 0.0038528287519119281) + +[fips4833356] +centroid = (0.56968899415265206, -1.7584276862311592) +description = Hermleigh CDP, TX +station = ('ksnk', 0.0030754553179437117) +zone = ('txz048', 0.0030546687764308588) + +[fips4833391550] +centroid = (0.54773407861279499, -1.720838355598032) +description = Goldthwaite CCD, TX +station = ('klzz', 0.0076891454220738113) +zone = ('txz142', 0.0019609518761248474) + +[fips4833392690] +centroid = (0.5505693834359523, -1.7210519315385988) +description = Mullin-Priddy CCD, TX +station = ('kcwc', 0.0057698144579474116) +zone = ('txz142', 0.00089725599806216385) + +[fips4833428] +centroid = (0.54896715372932892, -1.6963787005953455) +description = Hewitt city, TX +station = ('kpwg', 0.0018796702282233059) +zone = ('txz159', 0.0017287879570457381) + +[fips4833476] +centroid = (0.57786556499227271, -1.6934846305362734) +description = Hickory Creek town, TX +station = ('kdto', 0.0029518349734602863) +zone = ('txz103', 0.0020950168963773138) + +[fips48335] +centroid = (0.56380733929318638, -1.7614662171924189) +description = Mitchell County, TX +station = ('ksnk', 0.0068094857366685132) +zone = ('txz053', 6.5334613244911891e-05) + +[fips4833548] +centroid = (0.55825644178026601, -1.710927957226188) +description = Hico city, TX +station = ('ksep', 0.0046319054295107503) +zone = ('txz143', 0.0050508689600600896) + +[fips4833560] +centroid = (0.45563678898965349, -1.7147556911686144) +description = Hidalgo city, TX +station = ('kmfe', 0.0013488610751306339) +zone = ('txz253', 0.0051820498173698621) + +[fips4833578] +centroid = (0.56713816054427735, -1.6660296065647289) +description = Hideaway city, TX +station = ('ktyr', 0.0026576951644910331) +zone = ('txz136', 0.0034595443417932124) + +[fips4833590795] +centroid = (0.56575322432952735, -1.7601902244295782) +description = Colorado City CCD, TX +station = ('ksnk', 0.0050660880296522822) +zone = ('txz053', 0.0021634957515674724) + +[fips4833592285] +centroid = (0.5635653842989824, -1.7584399908023856) +description = Loraine CCD, TX +station = ('ksww', 0.0052152286258325591) +zone = ('txz053', 0.0025241905582835517) + +[fips4833594155] +centroid = (0.56339470855142981, -1.7636467966532754) +description = Westbrook CCD, TX +station = ('kbpg', 0.0070366167592644134) +zone = ('txz053', 0.0019470412517197124) + +[fips4833608] +centroid = (0.63043030929970167, -1.7458080307147368) +description = Higgins city, TX +station = ('kgag', 0.0048213460269270567) +zone = ('okz009', 0.004202513496781678) + +[fips48337] +centroid = (0.58776212290314866, -1.7056185958284509) +description = Montague County, TX +station = ('k0f2', 0.00170669027811991) +zone = ('txz091', 1.0499367059701341e-05) + +[fips4833790390] +centroid = (0.58556672559694256, -1.7077229742141657) +description = Bowie CCD, TX +station = ('k0f2', 0.001173674006132921) +zone = ('txz091', 0.0028024163410159445) + +[fips4833792610] +centroid = (0.58619270538646284, -1.7040019671554987) +description = Montague-Forestburg CCD, TX +station = ('k0f2', 0.0021509778690433608) +zone = ('txz091', 0.0020583938343382633) + +[fips4833792765] +centroid = (0.59024481885752555, -1.7066585851698368) +description = Nocona CCD, TX +station = ('k0f2', 0.0039892194716362106) +zone = ('txz091', 0.0026393962131518031) + +[fips4833793395] +centroid = (0.58925439686689629, -1.7029349426639995) +description = St. Jo CCD, TX +station = ('k0f2', 0.0042668480916833876) +zone = ('txz091', 0.002689016674895022) + +[fips4833794] +centroid = (0.53419552469848997, -1.7173205572241748) +description = Highland Haven city, TX +station = ('kdzb', 0.0014467909355940303) +zone = ('txz172', 0.0044941436225146214) + +[fips4833824] +centroid = (0.57301002410663937, -1.6895002707467732) +description = Highland Park town, TX +station = ('kdal', 0.00078782656824287391) +zone = ('txz119', 0.0011759063544647885) + +[fips4833836] +centroid = (0.52033272351574933, -1.6590720434878714) +description = Highlands CDP, TX +station = ('kefd', 0.004065168075495949) +zone = ('txz213', 0.0051229825406399884) + +[fips4833848] +centroid = (0.57753274815721001, -1.6940623519719762) +description = Highland Village city, TX +station = ('kdto', 0.0027755132006513279) +zone = ('txz103', 0.002144821484481081) + +[fips48339] +centroid = (0.52887602293779901, -1.6668509236041325) +description = Montgomery County, TX +station = ('kcxo', 0.0015502895568730323) +zone = ('txz199', 3.8582407009504852e-05) + +[fips4833968] +centroid = (0.51630328187167007, -1.7188991028128486) +description = Hill Country Village city, TX +station = ('ksat', 0.00089700808619897431) +zone = ('txz205', 0.0023770949722867799) + +[fips4833980] +centroid = (0.51298799405092177, -1.6619479446694301) +description = Hillcrest village, TX +station = ('klvj', 0.0022145170323180276) +zone = ('txz238', 0.0039189456290714174) + +[fips4833992375] +centroid = (0.52669233679087379, -1.6704951012691265) +description = Magnolia CCD, TX +station = ('kdwh', 0.0031192203366658257) +zone = ('txz199', 0.0038166291617235037) + +[fips4833992625] +centroid = (0.53045734359998342, -1.6700810742639685) +description = Montgomery CCD, TX +station = ('kcxo', 0.0041628558943612171) +zone = ('txz199', 0.0032304770476927788) + +[fips4833993655] +centroid = (0.52747084090372587, -1.6639761568865876) +description = Southeast Montgomery CCD, TX +station = ('kcxo', 0.0025256974770656092) +zone = ('txz199', 0.0028277632847490603) + +[fips4833994220] +centroid = (0.53145680639613802, -1.6662158157426243) +description = Willis CCD, TX +station = ('kcxo', 0.0019072225996178745) +zone = ('txz199', 0.0026736629536975149) + +[fips4834088] +centroid = (0.55864037930911981, -1.6949772186592866) +description = Hillsboro city, TX +station = ('kinj', 0.0013454980391172456) +zone = ('txz145', 0.0003929684246390379) + +[fips48341] +centroid = (0.62545053587791144, -1.7783247364098673) +description = Moore County, TX +station = ('kdux', 0.0017762079219919404) +zone = ('txz007', 4.8980787781815322e-05) + +[fips4834105] +centroid = (0.48304013376204635, -1.730977636447983) +description = Hillside Acres CDP, TX +station = ('klrd', 0.0049598446555358727) +zone = ('txz239', 0.0028019195763243593) + +[fips4834130] +centroid = (0.50080203540032731, -1.7309503220451892) +description = Hilltop CDP, TX +station = ('kcot', 0.0043009403481191512) +zone = ('txz219', 0.0032086210193894172) + +[fips4834133] +centroid = (0.46083642153731741, -1.7264911977925614) +description = Hilltop CDP, TX +station = ('kapy', 0.011134086050580911) +zone = ('txz252', 0.0039651614059286631) + +[fips4834136] +centroid = (0.54216136448422469, -1.6788402883677822) +description = Hilltop Lakes CDP, TX +station = ('klhb', 0.0072778635821609018) +zone = ('txz176', 0.0042765820228203725) + +[fips4834148] +centroid = (0.51994752934983424, -1.6665882864582922) +description = Hilshire Village city, TX +station = ('kmcj', 0.0019457723039595248) +zone = ('txz213', 0.0018622065699684547) + +[fips4834191090] +centroid = (0.6249672891146193, -1.7793764892704116) +description = Dumas CCD, TX +station = ('kdux', 0.0012377701683859116) +zone = ('txz007', 0.00096924967710043664) + +[fips4834193805] +centroid = (0.62700394872535659, -1.7754568637428678) +description = Sunray CCD, TX +station = ('kdux', 0.00422091685163493) +zone = ('txz007', 0.0028040451926734113) + +[fips4834220] +centroid = (0.51107813261034196, -1.6581959754698328) +description = Hitchcock city, TX +station = ('kgls', 0.0021640646306637975) +zone = ('txz238', 0.0020514398806090821) + +[fips48343] +centroid = (0.5779913683247565, -1.6533724788292661) +description = Morris County, TX +station = ('kosa', 0.0033846671219689025) +zone = ('txz111', 5.5322934538007686e-05) + +[fips4834390940] +centroid = (0.5760541924813829, -1.6532886332120003) +description = Daingerfield CCD, TX +station = ('kosa', 0.0037773383776884845) +zone = ('txz111', 0.0018875466727885605) + +[fips4834392705] +centroid = (0.5795896710405628, -1.6534193234663896) +description = Naples CCD, TX +station = ('kosa', 0.003862463989586497) +zone = ('txz111', 0.0016501868948201935) + +[fips4834478] +centroid = (0.49160907207080778, -1.6931090182279516) +description = Holiday Beach CDP, TX +station = ('krkp', 0.0015989525752259971) +zone = ('txz245', 0.00056920190739174342) + +[fips48345] +centroid = (0.59443092125526387, -1.7591818604542384) +description = Motley County, TX +station = ('kcds', 0.0098509837444448207) +zone = ('txz031', 0.00034001883085042035) + +[fips4834502] +centroid = (0.50975503341099004, -1.6669782628263579) +description = Holiday Lakes town, TX +station = ('klbx', 0.0017112007308398482) +zone = ('txz237', 0.00089103361940985767) + +[fips4834508] +centroid = (0.5391073175459149, -1.6999717226599635) +description = Holland town, TX +station = ('ktpl', 0.0045627800482511086) +zone = ('txz158', 0.0028464178651792875) + +[fips4834532] +centroid = (0.59016533656338976, -1.7224600631791076) +description = Holliday city, TX +station = ('ksps', 0.0040358159141834224) +zone = ('txz086', 0.0030434667823284415) + +[fips4834586] +centroid = (0.57095264743768104, -1.6615424872308993) +description = Holly Lake Ranch CDP, TX +station = ('kjxi', 0.0036911424170295161) +zone = ('txz124', 0.0029711467530652625) + +[fips4834592454] +centroid = (0.59263166132938294, -1.7583912961162551) +description = Matador CCD, TX +station = ('kcds', 0.01070918435974093) +zone = ('txz031', 0.0021227481710757181) + +[fips4834592822] +centroid = (0.59678303167500657, -1.7593843535540548) +description = North Motley CCD, TX +station = ('kcds', 0.0086134641370333494) +zone = ('txz031', 0.0021101965885378816) + +[fips4834628] +centroid = (0.51660374030240086, -1.7188969735111612) +description = Hollywood Park town, TX +station = ('ksat', 0.0011849996751111542) +zone = ('txz205', 0.0026714381146516605) + +[fips4834671] +centroid = (0.55585729473718204, -1.8530279874411708) +description = Homestead Meadows North CDP, TX +station = ('kelp', 0.0032011241338762058) +zone = ('txz419', 0.0019799984864528244) + +[fips4834673] +centroid = (0.55520619965972562, -1.852916216555873) +description = Homestead Meadows South CDP, TX +station = ('kelp', 0.0032503595826191643) +zone = ('txz419', 0.0020190276342994455) + +[fips4834676] +centroid = (0.51232817232720529, -1.7307007050555689) +description = Hondo city, TX +station = ('khdo', 0.0002289141801492552) +zone = ('txz204', 0.00078758575050705878) + +[fips48347] +centroid = (0.55188288332441815, -1.6514349015601646) +description = Nacogdoches County, TX +station = ('koch', 0.0015736392804289192) +zone = ('txz152', 0.00010348118878980429) + +[fips4834700] +centroid = (0.58622284722264484, -1.6739212349506689) +description = Honey Grove city, TX +station = ('kprx', 0.0067128488988201594) +zone = ('txz094', 0.0028801319160301694) + +[fips4834736] +centroid = (0.58416840270682979, -1.6455987823408833) +description = Hooks city, TX +station = ('ktxk', 0.0044194272042923739) +zone = ('txz097', 0.0020424739954712614) + +[fips4834790720] +centroid = (0.54947314213277465, -1.647845492327098) +description = Chireno-Martinsville CCD, TX +station = ('koch', 0.0048260750569830606) +zone = ('txz152', 0.0037928493131445798) + +[fips4834790935] +centroid = (0.55387069116939203, -1.6549259265832963) +description = Cushing-Douglass CCD, TX +station = ('koch', 0.0030537799526424137) +zone = ('txz152', 0.0036739690506009679) + +[fips4834791465] +centroid = (0.55493146738216925, -1.6498346615288886) +description = Garrison CCD, TX +station = ('koch', 0.0046348102152037815) +zone = ('txz152', 0.0033857592965446173) + +[fips4834792700] +centroid = (0.55150072603140143, -1.6519779258503378) +description = Nacogdoches CCD, TX +station = ('koch', 0.001007058120810325) +zone = ('txz152', 0.00060908599669925263) + +[fips4834832] +centroid = (0.55291416347283662, -1.8533835459163872) +description = Horizon City city, TX +station = ('kelp', 0.0037232746815675567) +zone = ('txz419', 0.0029351216578590369) + +[fips4834856] +centroid = (0.52787415158727669, -1.7031494087224845) +description = Hornsby Bend CDP, TX +station = ('kaus', 0.0018532194194335954) +zone = ('txz192', 0.0033784294061064185) + +[fips4834862] +centroid = (0.53301494908585589, -1.7169944773600248) +description = Horseshoe Bay city, TX +station = ('kdzb', 0.00029888737718860095) +zone = ('txz190', 0.0047794622798207169) + +[fips4834865] +centroid = (0.56854320295201033, -1.7082827362118653) +description = Horseshoe Bend CDP, TX +station = ('kgdj', 0.002454201958787941) +zone = ('txz131', 0.0026201305118361256) + +[fips48349] +centroid = (0.55935097266077671, -1.6838396967436573) +description = Navarro County, TX +station = ('kcrs', 0.0014915216563900816) +zone = ('txz146', 7.1329569120249118e-05) + +[fips4834990340] +centroid = (0.55928222414154061, -1.6885439175831429) +description = Blooming Grove CCD, TX +station = ('kcrs', 0.0053945639030284938) +zone = ('txz146', 0.0040543357824142055) + +[fips4834990865] +centroid = (0.55944008917238353, -1.6831720733981845) +description = Corsicana CCD, TX +station = ('kcrs', 0.0010414036081960695) +zone = ('txz146', 0.0005121251521798412) + +[fips4834990965] +centroid = (0.55644095029234153, -1.685626285579169) +description = Dawson CCD, TX +station = ('kcrs', 0.0037373134985083743) +zone = ('txz146', 0.0032902478337888878) + +[fips4834992005] +centroid = (0.56030832066208058, -1.679103414205813) +description = Kerens CCD, TX +station = ('kcrs', 0.0030335587626875941) +zone = ('txz146', 0.0040671236572826707) + +[fips4834993225] +centroid = (0.56248244240470502, -1.6824628588566368) +description = Rice CCD, TX +station = ('kcrs', 0.0036925814120484309) +zone = ('txz146', 0.0033426911348301896) + +[fips4835000] +centroid = (0.51976728919798076, -1.6648057467866455) +description = Houston city, TX +station = ('kmcj', 0.0012472578026866891) +zone = ('txz213', 0.0013439321889229189) + +[fips4835072] +centroid = (0.61147760441937005, -1.7611824092027519) +description = Howardwick city, TX +station = ('kppa', 0.010159831717056414) +zone = ('txz019', 0.0018159356999166028) + +[fips4835084] +centroid = (0.58491960987018066, -1.6862951830149959) +description = Howe town, TX +station = ('kgyi', 0.003618225413559435) +zone = ('txz093', 0.002162617004545459) + +[fips48351] +centroid = (0.53732959498300359, -1.6360585508500944) +description = Newton County, TX +station = ('kbkb', 0.0041506002466730188) +zone = ('txz260', 0.0017678070033001817) + +[fips4835180] +centroid = (0.55583162094388527, -1.6894788555568512) +description = Hubbard city, TX +station = ('kcnw', 0.0053932331394511025) +zone = ('txz145', 0.0055276223324949641) + +[fips4835190530] +centroid = (0.54209596699715246, -1.6354688215491382) +description = Burkeville CCD, TX +station = ('kbkb', 0.0016891591211030653) +zone = ('txz260', 0.0030257003729506414) + +[fips4835190575] +centroid = (0.53324222586105063, -1.6370685903415163) +description = Call CCD, TX +station = ('kbpt', 0.0050810382148036544) +zone = ('txz262', 0.0029641402440595379) + +[fips4835191035] +centroid = (0.52925725520631217, -1.6374644310158686) +description = Deweyville CCD, TX +station = ('korg', 0.0044579882442568261) +zone = ('txz262', 0.0010391824790310044) + +[fips4835192750] +centroid = (0.53781148038947924, -1.6356107866304954) +description = Newton CCD, TX +station = ('kbkb', 0.0035508090051978038) +zone = ('txz260', 0.0012987111297137752) + +[fips4835228] +centroid = (0.54662242605232225, -1.6543057412868927) +description = Hudson city, TX +station = ('klfk', 0.0015850144767403697) +zone = ('txz165', 0.0028133507985524061) + +[fips4835253] +centroid = (0.53083185635087637, -1.7091493445453578) +description = Hudson Bend CDP, TX +station = ('kryw', 0.0016273904678068452) +zone = ('txz192', 0.002590884537061665) + +[fips4835254] +centroid = (0.57160070564223897, -1.7051829965537382) +description = Hudson Oaks city, TX +station = ('knfw', 0.003677377840582564) +zone = ('txz117', 0.0016173426614494225) + +[fips48353] +centroid = (0.56395668711727942, -1.752626613223258) +description = Nolan County, TX +station = ('ksww', 0.0027953219407037518) +zone = ('txz054', 0.00023488318765701167) + +[fips4835300] +centroid = (0.57593549263895472, -1.6516236240121827) +description = Hughes Springs city, TX +station = ('kosa', 0.005118274148255191) +zone = ('txz111', 0.0024945127385210537) + +[fips4835324] +centroid = (0.52616728939199631, -1.651825576059931) +description = Hull CDP, TX +station = ('kbmt', 0.0065216812966200806) +zone = ('txz200', 0.0025602926049530842) + +[fips4835348] +centroid = (0.52339184936218242, -1.662745682310639) +description = Humble city, TX +station = ('kiah', 0.0015010802025113245) +zone = ('txz213', 0.0029551379921317462) + +[fips4835390325] +centroid = (0.56242170494673549, -1.7504900684194291) +description = Blackwell-Nolan CCD, TX +station = ('ksww', 0.0049292457508937878) +zone = ('txz054', 0.0021357628205025177) + +[fips4835393325] +centroid = (0.56354389929589033, -1.7547496142720915) +description = Roscoe CCD, TX +station = ('ksww', 0.0032983049604905206) +zone = ('txz054', 0.0019886033952503813) + +[fips4835393810] +centroid = (0.56625893348029266, -1.7513453495660765) +description = Sweetwater CCD, TX +station = ('ksww', 0.001836492944419176) +zone = ('txz054', 0.0026179414199485706) + +[fips4835420] +centroid = (0.51324380695938665, -1.6770961110330944) +description = Hungerford CDP, TX +station = ('karm', 0.0028329040151419487) +zone = ('txz226', 0.0030101029497338824) + +[fips4835480] +centroid = (0.51963148512888302, -1.6667559253329465) +description = Hunters Creek Village city, TX +station = ('kmcj', 0.0018456338708933138) +zone = ('txz213', 0.0021786551826405653) + +[fips4835492] +centroid = (0.54594441799780002, -1.6506724719297234) +description = Huntington city, TX +station = ('klfk', 0.0027144186718170314) +zone = ('txz165', 0.0006888649829754484) + +[fips48355] +centroid = (0.48414396724747016, -1.7020737623044804) +description = Nueces County, TX +station = ('kcrp', 0.00048195680864325665) +zone = ('txz243', 0.0016535833897574298) + +[fips4835528] +centroid = (0.5359154943164528, -1.6677121039636515) +description = Huntsville city, TX +station = ('kuts', 0.00089825930131779991) +zone = ('txz177', 0.00064963468269249689) + +[fips4835576] +centroid = (0.5731075181986558, -1.696121892849207) +description = Hurst city, TX +station = ('kdfw', 0.0024259072145838292) +zone = ('txz118', 0.0020003458820278233) + +[fips4835590315] +centroid = (0.48352308381936571, -1.7073680964173574) +description = Bishop CCD, TX +station = ('krbo', 0.0024537252197952436) +zone = ('txz243', 0.0030756182347578555) + +[fips4835590850] +centroid = (0.48348706022360455, -1.7006160458599224) +description = Corpus Christi CCD, TX +station = ('kcrp', 0.0016599011074105389) +zone = ('txz243', 0.0029464578106775884) + +[fips4835590855] +centroid = (0.48605656885497567, -1.7064923949184618) +description = Corpus Christi West CCD, TX +station = ('krbo', 0.0017954519498241117) +zone = ('txz243', 0.0031585938351310038) + +[fips4835591080] +centroid = (0.48225241431074378, -1.7045299118009345) +description = Driscoll CCD, TX +station = ('krbo', 0.0026068793651402673) +zone = ('txz243', 0.001706335578919173) + +[fips4835593095] +centroid = (0.48440307882822126, -1.69599551355807) +description = Port Aransas CCD, TX +station = ('kras', 0.0016485382348981627) +zone = ('txz244', 0.0069456578101447239) + +[fips4835593270] +centroid = (0.48514388382923029, -1.7044988973001267) +description = Robstown CCD, TX +station = ('krbo', 0.0005592946134021997) +zone = ('txz243', 0.0013744666853537618) + +[fips4835612] +centroid = (0.56973466941917683, -1.6879050049038653) +description = Hutchins city, TX +station = ('klnc', 0.0011288223438224) +zone = ('txz119', 0.0023713840591153656) + +[fips4835624] +centroid = (0.53299025267694022, -1.7025624894016238) +description = Hutto city, TX +station = ('kedc', 0.0024295330188172219) +zone = ('txz173', 0.0020681074089623623) + +[fips4835636] +centroid = (0.55380981408508256, -1.6383925796587866) +description = Huxley city, TX +station = ('kaqv', 0.0063805615301809719) +zone = ('txz153', 0.004176640140095049) + +[fips4835684] +centroid = (0.51087358002200822, -1.6748468877727567) +description = Iago CDP, TX +station = ('karm', 0.0029456622720292003) +zone = ('txz226', 0.0039669267735268406) + +[fips48357] +centroid = (0.63318353128813776, -1.7595687650428207) +description = Ochiltree County, TX +station = ('kpyx', 0.0024135216004686831) +zone = ('txz004', 7.0600531775471954e-06) + +[fips4835732] +centroid = (0.58752140709271361, -1.7747096708367966) +description = Idalou city, TX +station = ('klbb', 0.0019376192111511693) +zone = ('txz035', 0.0021916967965045233) + +[fips4835754] +centroid = (0.45526283474412116, -1.7074918577146165) +description = Iglesia Antigua CDP, TX +station = ('kt65', 0.0027398258586428387) +zone = ('txz255', 0.004010148299669742) + +[fips4835793005] +centroid = (0.63284373313606701, -1.7574102290904166) +description = Perryton East CCD, TX +station = ('kpyx', 0.0025233280196855189) +zone = ('txz004', 0.0017683933515019986) + +[fips4835793010] +centroid = (0.63299899762632439, -1.7619975652298958) +description = Perryton West CCD, TX +station = ('kpyx', 0.003874188571158438) +zone = ('txz004', 0.0019699300434287978) + +[fips4835816] +centroid = (0.56723509613093315, -1.7409052961261295) +description = Impact town, TX +station = ('kabi', 0.0017292928077720299) +zone = ('txz127', 0.0040620598450456314) + +[fips4835828] +centroid = (0.54570937450743384, -1.7923597841364871) +description = Imperial CDP, TX +station = ('kfst', 0.0069544306018958953) +zone = ('txz068', 0.0038847406914197563) + +[fips48359] +centroid = (0.61788008298092345, -1.7906662737099848) +description = Oldham County, TX +station = ('khrx', 0.01020057303582321) +zone = ('txz011', 9.2357423558229597e-05) + +[fips4835915] +centroid = (0.45747036208862862, -1.7090106432297019) +description = Indian Hills CDP, TX +station = ('kt65', 0.0010287957328249402) +zone = ('txz253', 0.0052255762819176819) + +[fips4835918] +centroid = (0.45531676541800775, -1.7017504051539636) +description = Indian Lake town, TX +station = ('kpil', 0.0029960386693880488) +zone = ('txz255', 0.0013217001622885555) + +[fips4835954] +centroid = (0.53559981661464451, -1.6536336498985345) +description = Indian Springs CDP, TX +station = ('k6r3', 0.006958480798299459) +zone = ('txz179', 0.0022248147937085194) + +[fips4835966] +centroid = (0.46336531635699463, -1.7295491368151032) +description = Indio CDP, TX +station = ('kapy', 0.0077325298468632099) +zone = ('txz252', 0.0055855279041047892) + +[fips4835984] +centroid = (0.52302923975678806, -1.6841919216400025) +description = Industry city, TX +station = ('k11r', 0.0047661824927102752) +zone = ('txz211', 0.0035985868672990346) + +[fips4835990017] +centroid = (0.61754271083651291, -1.7953009955386556) +description = Adrian CCD, TX +station = ('ktcc', 0.011058843742487723) +zone = ('txz011', 0.0037236545664467778) + +[fips4835994018] +centroid = (0.61856329211661665, -1.7873485424282836) +description = Vega CCD, TX +station = ('kdux', 0.009175822053897921) +zone = ('txz011', 0.0028491032935747747) + +[fips4835996] +centroid = (0.5039862664475433, -1.6893247953437776) +description = Inez CDP, TX +station = ('kvct', 0.0021791240630662035) +zone = ('txz234', 0.0030880656634201128) + +[fips4836008] +centroid = (0.48643387413267181, -1.6965980186691509) +description = Ingleside city, TX +station = ('ktfp', 0.00087063642674119787) +zone = ('txz244', 0.0053717200815883402) + +[fips4836020] +centroid = (0.48572221613017108, -1.6968322069481836) +description = Ingleside on the Bay city, TX +station = ('ktfp', 0.0016077317269940583) +zone = ('txz244', 0.0055569179174747478) + +[fips4836032] +centroid = (0.52494358669354546, -1.7320212735275056) +description = Ingram city, TX +station = ('kerv', 0.0030232334537322546) +zone = ('txz186', 0.0017221483659325711) + +[fips4836068] +centroid = (0.53708397479737047, -1.6768709461062945) +description = Iola city, TX +station = ('kcll', 0.0054535427610320677) +zone = ('txz196', 0.0038928878231020698) + +[fips4836092] +centroid = (0.51384402568914744, -1.6653528202406831) +description = Iowa Colony village, TX +station = ('kaxh', 0.001530599019822952) +zone = ('txz237', 0.0043967455129064817) + +[fips48361] +centroid = (0.52570919282322537, -1.6387482428537581) +description = Orange County, TX +station = ('korg', 0.0016286358786448075) +zone = ('txz216', 0.00013402338324355477) + +[fips4836104] +centroid = (0.59276489976448021, -1.7223472800028437) +description = Iowa Park city, TX +station = ('ksps', 0.0026758806653981201) +zone = ('txz086', 0.00052444481319163718) + +[fips4836128] +centroid = (0.53953193869963267, -1.7784917993258684) +description = Iraan city, TX +station = ('koza', 0.0109177144380044) +zone = ('txz069', 0.0082383714465910189) + +[fips4836140] +centroid = (0.55826164286143698, -1.7081829906451136) +description = Iredell city, TX +station = ('ksep', 0.0061183785160097513) +zone = ('txz144', 0.0038201533833002073) + +[fips4836190440] +centroid = (0.52398040929253997, -1.6385809006850767) +description = Bridge City-Orangefield CCD, TX +station = ('korg', 0.0014656625506100074) +zone = ('txz216', 0.0018640752560265062) + +[fips4836192480] +centroid = (0.52688235078653833, -1.6374156141566902) +description = Mauriceville CCD, TX +station = ('korg', 0.0020862082040538354) +zone = ('txz216', 0.0015928252996465671) + +[fips4836192905] +centroid = (0.52544257632669067, -1.6366957007468277) +description = Orange CCD, TX +station = ('korg', 0.00076304117139479744) +zone = ('txz216', 0.0018645566737807502) + +[fips4836194050] +centroid = (0.52642720382420338, -1.640452103082725) +description = Vidor CCD, TX +station = ('korg', 0.003260453624581557) +zone = ('txz216', 0.0015442573654249395) + +[fips48363] +centroid = (0.57163390180461193, -1.7159723601901795) +description = Palo Pinto County, TX +station = ('kmwl', 0.0037279657671932588) +zone = ('txz116', 7.5027380663089251e-05) + +[fips4836391595] +centroid = (0.57474948905234713, -1.7159506482942848) +description = Graford CCD, TX +station = ('kmwl', 0.0044786638124510369) +zone = ('txz116', 0.0030987912324113281) + +[fips4836392595] +centroid = (0.5721769086414924, -1.712598760919122) +description = Mineral Wells CCD, TX +station = ('kmwl', 0.00085126784192489043) +zone = ('txz116', 0.002813306893221137) + +[fips4836392950] +centroid = (0.57037653170489033, -1.7141086976149) +description = Palo Pinto-Santo CCD, TX +station = ('kmwl', 0.0027829268268503068) +zone = ('txz116', 0.0019645942498768103) + +[fips4836393770] +centroid = (0.57036712438022197, -1.7185012201032717) +description = Strawn-Gordon CCD, TX +station = ('kbkd', 0.0063128137532646603) +zone = ('txz116', 0.0025479266580775519) + +[fips48365] +centroid = (0.56136731663902073, -1.6459354738068854) +description = Panola County, TX +station = ('kasl', 0.0062142212207339613) +zone = ('txz151', 2.8311782759366555e-05) + +[fips4836590235] +centroid = (0.56293641999644117, -1.6486654480096852) +description = Beckville CCD, TX +station = ('kggg', 0.0043887831042759822) +zone = ('txz151', 0.0028025993412310701) + +[fips4836590640] +centroid = (0.56128221438469339, -1.6465665499578217) +description = Carthage CCD, TX +station = ('kasl', 0.0063282514568189308) +zone = ('txz151', 0.00053081252765202578) + +[fips4836590970] +centroid = (0.56242756925302217, -1.6431905072258115) +description = De Berry-Deadwood CCD, TX +station = ('kasl', 0.0056202081883653153) +zone = ('txz151', 0.0025709601874794514) + +[fips4836591475] +centroid = (0.55931966145399592, -1.6451297600109951) +description = Gary City CCD, TX +station = ('kasl', 0.0082835403675700168) +zone = ('txz151', 0.0021344026762328311) + +[fips4836592265] +centroid = (0.55903763370016613, -1.6492034108450273) +description = Long Branch-Dotson CCD, TX +station = ('krfi', 0.0056228331861547234) +zone = ('txz151', 0.0035955319012210226) + +[fips48367] +centroid = (0.57206824444226334, -1.7070350701427845) +description = Parker County, TX +station = ('kmwl', 0.0038279428122497978) +zone = ('txz117', 1.472825827502648e-05) + +[fips4836793701] +centroid = (0.574037447077411, -1.7047127175867884) +description = Springtown-Reno CCD, TX +station = ('knfw', 0.0039126815605337135) +zone = ('txz117', 0.0027577207755637555) + +[fips4836794095] +centroid = (0.57020760128658976, -1.7085907693715496) +description = Weatherford CCD, TX +station = ('kmwl', 0.0031982901146247796) +zone = ('txz117', 0.0022888425702440956) + +[fips4836794100] +centroid = (0.57426166952641455, -1.7090058959341365) +description = Weatherford Northwest CCD, TX +station = ('kmwl', 0.0030075099411506594) +zone = ('txz117', 0.0027484010481178679) + +[fips4836794105] +centroid = (0.57040461405255483, -1.7041744056855956) +description = Weatherford Southeast CCD, TX +station = ('knfw', 0.0031847942808955858) +zone = ('txz117', 0.002920856438511886) + +[fips48369] +centroid = (0.6026999421853626, -1.7939341060283711) +description = Parmer County, TX +station = ('kcvn', 0.004627628191502575) +zone = ('txz021', 3.6362112644020226e-05) + +[fips4836991300] +centroid = (0.60120592289236297, -1.7944022033337561) +description = Farwell-Bovina CCD, TX +station = ('kcvn', 0.0039171066827204618) +zone = ('txz021', 0.0015095057962244206) + +[fips4836991410] +centroid = (0.60482086629238618, -1.7932673728008168) +description = Friona CCD, TX +station = ('kcvn', 0.0061820569682902284) +zone = ('txz021', 0.0022244234838100191) + +[fips4837000] +centroid = (0.57347588739058175, -1.6924461596313367) +description = Irving city, TX +station = ('kdfw', 0.00118532064581272) +zone = ('txz119', 0.0032361740151415608) + +[fips4837072] +centroid = (0.56175977137462418, -1.6909760164425045) +description = Italy town, TX +station = ('kinj', 0.0036061929506025318) +zone = ('txz134', 0.003130990415223881) + +[fips4837084] +centroid = (0.56127474437549485, -1.6955515367029477) +description = Itasca city, TX +station = ('kinj', 0.0015136938955880898) +zone = ('txz145', 0.0029407018752313544) + +[fips48371] +centroid = (0.537053414082168, -1.7927997641876225) +description = Pecos County, TX +station = ('kfst', 0.003894907120397226) +zone = ('txz075', 0.00018674844370584749) + +[fips4837112] +centroid = (0.53540817946277552, -1.6476805936193697) +description = Ivanhoe city, TX +station = ('kbpt', 0.0043948656429299623) +zone = ('txz180', 0.0017056064915121475) + +[fips4837116] +centroid = (0.53548396165889711, -1.6480287693518501) +description = Ivanhoe North city, TX +station = ('kbpt', 0.0047013013305303537) +zone = ('txz180', 0.0017353637753142281) + +[fips4837156] +centroid = (0.51952128503991213, -1.6622728377096889) +description = Jacinto City city, TX +station = ('khou', 0.0024082327414565465) +zone = ('txz213', 0.0027843939795290967) + +[fips4837168] +centroid = (0.57985710784184585, -1.7131991716351005) +description = Jacksboro city, TX +station = ('kxbp', 0.0049027557402603278) +zone = ('txz101', 0.0002639418339670507) + +[fips4837191375] +centroid = (0.53543547641227673, -1.7941754152507521) +description = Fort Stockton CCD, TX +station = ('kfst', 0.0045224359085228689) +zone = ('txz075', 0.0021200451554479784) + +[fips4837191870] +centroid = (0.54398329623708908, -1.7952815525707884) +description = Imperial CCD, TX +station = ('kfst', 0.0044610518121240674) +zone = ('txz068', 0.0068841359729838883) + +[fips4837191885] +centroid = (0.53817967504847997, -1.7813156373358401) +description = Iraan CCD, TX +station = ('koza', 0.013029345869617005) +zone = ('txz069', 0.0093134366708924783) + +[fips4837216] +centroid = (0.55789569967717134, -1.6626369133916548) +description = Jacksonville city, TX +station = ('kjso', 0.0018008974724344207) +zone = ('txz149', 0.0026564591452236152) + +[fips4837252] +centroid = (0.50948876598030579, -1.6577160099255344) +description = Jamaica Beach city, TX +station = ('kgls', 0.0021691325942984224) +zone = ('txz238', 0.0035426538566506361) + +[fips48373] +centroid = (0.53729180860469794, -1.655223801926734) +description = Polk County, TX +station = ('k6r3', 0.0078509717097839434) +zone = ('txz179', 0.00018117053947616841) + +[fips4837390] +centroid = (0.46295512907619091, -1.7296186881857951) +description = Jardin de San Julian CDP, TX +station = ('kapy', 0.0081053469920214453) +zone = ('txz252', 0.0056798328830420276) + +[fips4837390860] +centroid = (0.54104866472620072, -1.6548016940471393) +description = Corrigan CCD, TX +station = ('klfk', 0.0041836473975560015) +zone = ('txz179', 0.0036217182772465993) + +[fips4837392226] +centroid = (0.53617305255416958, -1.6552038877199688) +description = Livingston-Onalaska CCD, TX +station = ('k6r3', 0.0068120143443157607) +zone = ('txz179', 0.001266109528414161) + +[fips4837396] +centroid = (0.53772636068185942, -1.7036652058763264) +description = Jarrell city, TX +station = ('kgtu', 0.0024420658902325441) +zone = ('txz173', 0.0028218799923585419) + +[fips4837420] +centroid = (0.53970259699389267, -1.6404917046034526) +description = Jasper city, TX +station = ('kjas', 0.00089752728598427864) +zone = ('txz259', 0.001191496551670108) + +[fips4837468] +centroid = (0.58032511788076813, -1.7553625913586843) +description = Jayton city, TX +station = ('ksnk', 0.011165569070208737) +zone = ('txz043', 0.0031943649079826113) + +[fips48375] +centroid = (0.61782342959340364, -1.7783823671817682) +description = Potter County, TX +station = ('kama', 0.0040566443445222535) +zone = ('txz012', 4.589966928015555e-05) + +[fips4837528] +centroid = (0.57182237991053486, -1.6467327227559041) +description = Jefferson city, TX +station = ('kasl', 0.0043066062098841449) +zone = ('txz126', 0.00061780892094526142) + +[fips4837590065] +centroid = (0.61496906577481469, -1.7766052031242174) +description = Amarillo CCD, TX +station = ('kama', 0.0011210882632669388) +zone = ('txz012', 0.0032437445402589298) + +[fips4837590610] +centroid = (0.6180871662966726, -1.7786888469984186) +description = Canadian River Breaks CCD, TX +station = ('kama', 0.0044186693651617794) +zone = ('txz012', 0.00032939824101454708) + +[fips4837612] +centroid = (0.52171434360492053, -1.6679677772457762) +description = Jersey Village city, TX +station = ('kdwh', 0.0030594639022880027) +zone = ('txz213', 0.0027200950445435391) + +[fips4837648] +centroid = (0.54738073670572873, -1.678056303921079) +description = Jewett city, TX +station = ('kpsn', 0.0097788769481891597) +zone = ('txz162', 0.002514292554556743) + +[fips4837665] +centroid = (0.4611144524871601, -1.7275064732717391) +description = JF Villarreal CDP, TX +station = ('kapy', 0.010490705432736161) +zone = ('txz252', 0.0045015403537523556) + +[fips4837684] +centroid = (0.55790460085635651, -1.6414536777272744) +description = Joaquin city, TX +station = ('kshv', 0.0090314228665126992) +zone = ('txz153', 0.0033446735067525902) + +[fips48377] +centroid = (0.52370159294453378, -1.8197085350098776) +description = Presidio County, TX +station = ('kmrf', 0.0073010429886106471) +zone = ('txz080', 0.0027509429345032787) + +[fips4837780] +centroid = (0.52834776413309781, -1.7175283561249175) +description = Johnson City city, TX +station = ('kdzb', 0.0045568163723503571) +zone = ('txz190', 0.00014859867411830363) + +[fips4837792400] +centroid = (0.52664907007871686, -1.8202353277380072) +description = Marfa CCD, TX +station = ('kmrf', 0.0053307902533448349) +zone = ('txz080', 0.00070654395378786251) + +[fips4837793145] +centroid = (0.51707630565067086, -1.8174033564937213) +description = Presidio CCD, TX +station = ('kmrf', 0.013034158708997571) +zone = ('txz079', 0.0057878229777208389) + +[fips48379] +centroid = (0.57369984804019758, -1.6719458363966768) +description = Rains County, TX +station = ('kjdd', 0.0049280809135986139) +zone = ('txz123', 3.0301078027152546e-05) + +[fips4837924] +centroid = (0.59123532811461743, -1.7165167981970466) +description = Jolly city, TX +station = ('ksps', 0.002885654066045126) +zone = ('txz090', 0.0025742102737399998) + +[fips4837936] +centroid = (0.53153545093223287, -1.7062926943454486) +description = Jollyville CDP, TX +station = ('katt', 0.0024103104700480822) +zone = ('txz192', 0.0021135487064990501) + +[fips4837984] +centroid = (0.50570983144376525, -1.6662377021714443) +description = Jones Creek village, TX +station = ('klbx', 0.0024720086257793337) +zone = ('txz237', 0.0037799041670682817) + +[fips4837991235] +centroid = (0.57345782323282357, -1.6707051690978967) +description = Emory CCD, TX +station = ('kjdd', 0.0038984118394431921) +zone = ('txz123', 0.0010396181100353246) + +[fips4837993075] +centroid = (0.57394145396855123, -1.6732402074765409) +description = Point CCD, TX +station = ('kgvt', 0.0042944597996544213) +zone = ('txz123', 0.0011438343683075232) + +[fips4838020] +centroid = (0.53203096736016653, -1.709222351667969) +description = Jonestown city, TX +station = ('kryw', 0.00065325580968839754) +zone = ('txz192', 0.0034297685660815264) + +[fips4838068] +centroid = (0.57705269534644887, -1.6810258245637146) +description = Josephine city, TX +station = ('kgvt', 0.0036430095329325995) +zone = ('txz120', 0.0031774888187180226) + +[fips4838080] +centroid = (0.56654815199064079, -1.6996554166396247) +description = Joshua city, TX +station = ('kcpt', 0.0020138080846836032) +zone = ('txz133', 0.0014492404827248985) + +[fips48381] +centroid = (0.61021124587400066, -1.7784127882706304) +description = Randall County, TX +station = ('kama', 0.0051186049867059068) +zone = ('txz017', 6.2397711760985592e-05) + +[fips4838116] +centroid = (0.50463975262607497, -1.7198661199382088) +description = Jourdanton city, TX +station = ('kpez', 0.00071018072917315451) +zone = ('txz220', 0.00044947598117320937) + +[fips4838168] +centroid = (0.45729200689236732, -1.7057036806294859) +description = Juarez CDP, TX +station = ('khrl', 0.0012767943104584065) +zone = ('txz255', 0.0027439502442325086) + +[fips4838190070] +centroid = (0.61248869110834292, -1.7784509935279567) +description = Amarillo CCD, TX +station = ('kama', 0.0033665259609673035) +zone = ('txz017', 0.0022186351204211887) + +[fips4838190625] +centroid = (0.60906730472236592, -1.778429560884742) +description = Canyon CCD, TX +station = ('kama', 0.0061426625458118368) +zone = ('txz017', 0.0012027968033852705) + +[fips4838248] +centroid = (0.53216413598209378, -1.7413712292232419) +description = Junction city, TX +station = ('kjct', 0.00046279460219351981) +zone = ('txz169', 0.00037522785744203117) + +[fips48383] +centroid = (0.54756031363246638, -1.7717518089935642) +description = Reagan County, TX +station = ('koza', 0.012001789019517) +zone = ('txz070', 0.00017899628519534366) + +[fips4838332] +centroid = (0.57746954978499521, -1.6982078929178981) +description = Justin city, TX +station = ('kafw', 0.0018179294018962856) +zone = ('txz103', 0.0033730358317254454) + +[fips4838390290] +centroid = (0.54756031363246638, -1.7717518089935642) +description = Big Lake CCD, TX +station = ('koza', 0.012001789019517) +zone = ('txz070', 0.00017899628519534366) + +[fips4838452] +centroid = (0.50417073029618664, -1.7086669006335216) +description = Karnes City city, TX +station = ('knog', 0.0074939720896854863) +zone = ('txz222', 0.00069411584482190246) + +[fips4838476] +centroid = (0.51995700648767251, -1.672496819388239) +description = Katy city, TX +station = ('ktme', 0.0011524334517848108) +zone = ('txz212', 0.0045411522031531546) + +[fips4838488] +centroid = (0.56859076317412727, -1.6809612124748059) +description = Kaufman city, TX +station = ('ktrl', 0.0025126511600148927) +zone = ('txz121', 0.00051914589639065457) + +[fips48385] +centroid = (0.52051006642104447, -1.7419311483005742) +description = Real County, TX +station = ('kecu', 0.0059765699753669532) +zone = ('txz185', 0.00029683531252068035) + +[fips4838518] +centroid = (0.48856664902531632, -1.7091438467582141) +description = K-Bar Ranch CDP, TX +station = ('kali', 0.0047365210464141872) +zone = ('txz241', 0.0052193551174844113) + +[fips4838548] +centroid = (0.56541866216521253, -1.6985780248923685) +description = Keene city, TX +station = ('kcpt', 0.0018133352752271441) +zone = ('txz133', 0.00072660570818681655) + +[fips4838590600] +centroid = (0.52051006642104447, -1.7419311483005742) +description = Camp Wood-Leakey CCD, TX +station = ('kecu', 0.0059765699753669532) +zone = ('txz185', 0.00029683531252068035) + +[fips4838632] +centroid = (0.5747872579773603, -1.6968875687920568) +description = Keller city, TX +station = ('kafw', 0.0016115943609055197) +zone = ('txz118', 0.003003152937341028) + +[fips48387] +centroid = (0.5867731669890911, -1.6589080348980614) +description = Red River County, TX +station = ('klbr', 0.00051185380656726062) +zone = ('txz096', 3.4234061471758312e-05) + +[fips4838776] +centroid = (0.51539485544929953, -1.6584136878407265) +description = Kemah city, TX +station = ('kefd', 0.0025387105459981217) +zone = ('txz238', 0.0025150648730345405) + +[fips4838788] +centroid = (0.56604540989960372, -1.6793413374894448) +description = Kemp city, TX +station = ('ktrl', 0.0050170140310592743) +zone = ('txz121', 0.0030949077428574241) + +[fips4838790105] +centroid = (0.58596774989917333, -1.6556082979609485) +description = Annona-Avery CCD, TX +station = ('klbr', 0.0029852806092840007) +zone = ('txz096', 0.0028968775175086674) + +[fips4838790365] +centroid = (0.58405022646317728, -1.6608859816327615) +description = Bogata CCD, TX +station = ('klbr', 0.0026748054990074358) +zone = ('txz096', 0.0031844826861986233) + +[fips4838790735] +centroid = (0.58680227908101434, -1.6590801243623081) +description = Clarksville CCD, TX +station = ('klbr', 0.00049827841295923745) +zone = ('txz096', 0.00011512393354055668) + +[fips4838791025] +centroid = (0.58768977900565356, -1.6620301671304916) +description = Detroit CCD, TX +station = ('klbr', 0.0027538494051740246) +zone = ('txz096', 0.0027227535513987787) + +[fips4838792385] +centroid = (0.59072630283827332, -1.6602743309964001) +description = Manchester CCD, TX +station = ('k4o4', 0.004029914288963236) +zone = ('txz096', 0.0040873348559576127) + +[fips4838800] +centroid = (0.54236837798680382, -1.7099381810073817) +description = Kempner city, TX +station = ('kgrk', 0.0023307282304779742) +zone = ('txz156', 0.0045400457832519081) + +[fips4838848] +centroid = (0.51389591432780923, -1.6756235418366017) +description = Kendleton city, TX +station = ('karm', 0.0040069027261651277) +zone = ('txz227', 0.0038615994645602716) + +[fips4838860] +centroid = (0.50296200252271794, -1.7078313591607144) +description = Kenedy city, TX +station = ('knog', 0.0067002936184799534) +zone = ('txz222', 0.0015423347232235319) + +[fips4838872] +centroid = (0.52539391654714518, -1.6552974373678755) +description = Kenefick town, TX +station = ('k6r3', 0.005156976681494849) +zone = ('txz200', 0.00095927844112615322) + +[fips4838884] +centroid = (0.54729167255399946, -1.6612981062290351) +description = Kennard city, TX +station = ('kdkr', 0.0033710809067155922) +zone = ('txz163', 0.0036051379555917845) + +[fips4838896] +centroid = (0.56974475742225339, -1.6967595837980081) +description = Kennedale city, TX +station = ('kgky', 0.0017666344692775753) +zone = ('txz118', 0.0024645202763344709) + +[fips48389] +centroid = (0.546434070119447, -1.8101281958528781) +description = Reeves County, TX +station = ('kpeq', 0.0032773835085958629) +zone = ('txz058', 0.0030441578591598058) + +[fips4838990190] +centroid = (0.54163413542378225, -1.8089930686139659) +description = Balmorhea CCD, TX +station = ('kpeq', 0.0064237678316754303) +zone = ('txz074', 0.0067591103634291258) + +[fips4838992] +centroid = (0.56079449957851613, -1.6794552900363076) +description = Kerens city, TX +station = ('kcrs', 0.0030704868960068506) +zone = ('txz146', 0.0039325214409775969) + +[fips4838992990] +centroid = (0.54877958319461717, -1.8101384758421724) +description = Pecos CCD, TX +station = ('kpeq', 0.0031993302210627495) +zone = ('txz058', 0.0019916306111668284) + +[fips4839004] +centroid = (0.5559570926638111, -1.7993006967722809) +description = Kermit city, TX +station = ('kink', 0.0020175324044592905) +zone = ('txz060', 0.00065802401434355618) + +[fips4839040] +centroid = (0.52426753340778554, -1.7301635450716826) +description = Kerrville city, TX +station = ('kerv', 0.001443747537046413) +zone = ('txz186', 0.0033336321053485159) + +[fips48391] +centroid = (0.49414627465772448, -1.6957702613648076) +description = Refugio County, TX +station = ('krkp', 0.0043456917571083895) +zone = ('txz246', 0) + +[fips4839124] +centroid = (0.5654484374822516, -1.6556121551385954) +description = Kilgore city, TX +station = ('kggg', 0.0021214642854183469) +zone = ('txz137', 0.0015693019639100114) + +[fips4839148] +centroid = (0.54240764789497364, -1.7057443468010574) +description = Killeen city, TX +station = ('kile', 0.00073343294793776876) +zone = ('txz158', 0.0038575298923581771) + +[fips4839190170] +centroid = (0.49519167451979151, -1.6940838369750681) +description = Austwell-Tivoli CCD, TX +station = ('krkp', 0.005049539053305345) +zone = ('txz246', 0.0018154628448600967) + +[fips4839193220] +centroid = (0.4963648673896896, -1.6968750547813198) +description = Refugio CCD, TX +station = ('krkp', 0.0067678026827304978) +zone = ('txz246', 0.0024221959357614798) + +[fips4839194275] +centroid = (0.49176681492860302, -1.6990551979098638) +description = Woodsboro CCD, TX +station = ('ktfp', 0.0050234074051105221) +zone = ('txz246', 0.003746469956890815) + +[fips4839292] +centroid = (0.51745066132193118, -1.7071210450617378) +description = Kingsbury CDP, TX +station = ('kbaz', 0.0038208856651799276) +zone = ('txz207', 0.002372729987668072) + +[fips48393] +centroid = (0.62545996065587228, -1.7594237456352722) +description = Roberts County, TX +station = ('kbpc', 0.0032380309411278968) +zone = ('txz009', 9.1807384382659881e-05) + +[fips4839304] +centroid = (0.53522137687293458, -1.7183378223787) +description = Kingsland CDP, TX +station = ('kdzb', 0.0027570549459084788) +zone = ('txz171', 0.0035282221775086837) + +[fips4839352] +centroid = (0.48012613204291665, -1.7079971479863614) +description = Kingsville city, TX +station = ('kali', 0.0045929651084479451) +zone = ('txz242', 0.002362821016625498) + +[fips4839392555] +centroid = (0.62545996065587228, -1.7594237456352722) +description = Miami CCD, TX +station = ('kbpc', 0.0032380309411278968) +zone = ('txz009', 9.1807384382659881e-05) + +[fips4839448] +centroid = (0.51419897329912556, -1.7171577005516714) +description = Kirby city, TX +station = ('ksat', 0.0017551657100343639) +zone = ('txz205', 0.0020479421806943424) + +[fips4839460] +centroid = (0.53508651528163298, -1.6388653893531517) +description = Kirbyville city, TX +station = ('kbpt', 0.0037392426232151672) +zone = ('txz259', 0.0041176452122974362) + +[fips48395] +centroid = (0.54149679546494278, -1.6845034978180684) +description = Robertson County, TX +station = ('klhb', 0.0031281938989661498) +zone = ('txz175', 4.1572001828810962e-05) + +[fips4839520] +centroid = (0.5544404189971206, -1.6812759826054029) +description = Kirvin town, TX +station = ('kcrs', 0.0044269006091493431) +zone = ('txz147', 0.0028979641957330078) + +[fips4839590430] +centroid = (0.54317815839985151, -1.68690069009239) +description = Bremond CCD, TX +station = ('klhb', 0.0043890427936012109) +zone = ('txz175', 0.0026620608878003605) + +[fips4839590585] +centroid = (0.54110566717957087, -1.6870228631400297) +description = Calvert CCD, TX +station = ('klhb', 0.0023596157634255066) +zone = ('txz175', 0.0022306476647708262) + +[fips4839591385] +centroid = (0.54213494019934949, -1.6828731683104881) +description = Franklin CCD, TX +station = ('klhb', 0.0044789805527101932) +zone = ('txz175', 0.0014955820934622467) + +[fips4839591750] +centroid = (0.53817766791984012, -1.6858218846284401) +description = Hearne CCD, TX +station = ('klhb', 0.00079302030329093931) +zone = ('txz175', 0.0035419969962869969) + +[fips4839664] +centroid = (0.51144809005188718, -1.7388860025414496) +description = Knippa CDP, TX +station = ('kuva', 0.0023564061476720592) +zone = ('txz203', 0.0022061416889460239) + +[fips4839680] +centroid = (0.58798849210713233, -1.6863102801130254) +description = Knollwood city, TX +station = ('kgyi', 0.00084777123654737434) +zone = ('txz093', 0.0013879637562077276) + +[fips48397] +centroid = (0.57402510759959935, -1.6826283160697257) +description = Rockwall County, TX +station = ('khqz', 0.003067388949010224) +zone = ('txz120', 0.00014984744629908167) + +[fips4839700] +centroid = (0.58324669432885157, -1.7421126625427816) +description = Knox City town, TX +station = ('kf05', 0.016074408267069591) +zone = ('txz087', 0.0034635030272269995) + +[fips4839792800] +centroid = (0.57499079827472788, -1.6817660710593629) +description = Northeast Rockwall CCD, TX +station = ('ktrl', 0.0041971979461381294) +zone = ('txz120', 0.0010925840332898277) + +[fips4839792855] +centroid = (0.5748321129391365, -1.6837856962566009) +description = Northwest Rockwall CCD, TX +station = ('khqz', 0.0033926955962579777) +zone = ('txz120', 0.0011705547407520401) + +[fips4839793665] +centroid = (0.57339551497852748, -1.6825261095887289) +description = South Rockwall CCD, TX +station = ('khqz', 0.0026451386017146243) +zone = ('txz120', 0.00078444890282191671) + +[fips4839844] +centroid = (0.54641766402447822, -1.6865027550229355) +description = Kosse town, TX +station = ('klhb', 0.0076062108088904325) +zone = ('txz161', 0.0042187453068328658) + +[fips4839868] +centroid = (0.53010091246014113, -1.6461188206448076) +description = Kountze city, TX +station = ('kbpt', 0.0045886858826293753) +zone = ('txz201', 0.0013246199371502777) + +[fips48399] +centroid = (0.5555960887613286, -1.7447682333595684) +description = Runnels County, TX +station = ('kcom', 0.0084207065967028191) +zone = ('txz066', 0.00012960511942225339) + +[fips4839904] +centroid = (0.59979669169442518, -1.7758450773283891) +description = Kress city, TX +station = ('kpvw', 0.0034808473249898384) +zone = ('txz023', 0.0028789745490087996) + +[fips4839916] +centroid = (0.58083377663796942, -1.692770633792575) +description = Krugerville city, TX +station = ('kdto', 0.003382106039503363) +zone = ('txz103', 0.0022874249119195704) + +[fips4839928] +centroid = (0.5805711918520069, -1.6969166634306876) +description = Krum city, TX +station = ('kdto', 0.0011851169950154376) +zone = ('txz103', 0.0019054763853237715) + +[fips4839940] +centroid = (0.5373696677426294, -1.6803304679364277) +description = Kurten town, TX +station = ('kcll', 0.0038399208979450913) +zone = ('txz196', 0.0022675316767173277) + +[fips4839952] +centroid = (0.5236354624191758, -1.7080432595851991) +description = Kyle city, TX +station = ('khyi', 0.0018935900814286484) +zone = ('txz191', 0.0027127831072641779) + +[fips4839988] +centroid = (0.45910528181214177, -1.7109217962139283) +description = La Blanca CDP, TX +station = ('kt65', 0.0023858004937135405) +zone = ('txz253', 0.0028752823976273042) + +[fips4839990185] +centroid = (0.55458844037098221, -1.743506639563057) +description = Ballinger CCD, TX +station = ('kcom', 0.0074359057560155085) +zone = ('txz066', 0.001539273454575148) + +[fips4839992585] +centroid = (0.55283436701943545, -1.7483115833536749) +description = Miles CCD, TX +station = ('ksjt', 0.0074948281809046119) +zone = ('txz066', 0.0039702261082078328) + +[fips4839993350] +centroid = (0.55205331472587538, -1.7448896210090448) +description = Rowena CCD, TX +station = ('ksjt', 0.0092213101118291552) +zone = ('txz066', 0.0035042454675976269) + +[fips4839994] +centroid = (0.46138450728232122, -1.7233484357683728) +description = La Carla CDP, TX +station = ('kmfe', 0.0088467717101159606) +zone = ('txz252', 0.0022118589739209423) + +[fips4839994265] +centroid = (0.55805112124706135, -1.7451502859328301) +description = Winters CCD, TX +station = ('kdys', 0.0080279112825806694) +zone = ('txz066', 0.0025016861997900065) + +[fips4840000] +centroid = (0.45966558486190956, -1.723228706181686) +description = La Casita CDP, TX +station = ('kmfe', 0.0080317637051011501) +zone = ('txz252', 0.0039311931848251729) + +[fips4840018] +centroid = (0.46083163933516696, -1.7265983959152189) +description = La Chuparosa CDP, TX +station = ('kapy', 0.0110944958076057) +zone = ('txz252', 0.0040378865344454376) + +[fips4840036] +centroid = (0.51289454912276999, -1.7212077719875092) +description = Lackland AFB CDP, TX +station = ('kskf', 0.00052956252316561361) +zone = ('txz205', 0.0018460707824614721) + +[fips48401] +centroid = (0.56041515226559524, -1.6538108531774895) +description = Rusk County, TX +station = ('krfi', 0.0014831158249750836) +zone = ('txz150', 8.5557076075991312e-05) + +[fips4840100] +centroid = (0.47994927782981206, -1.7331733130068694) +description = La Coma CDP, TX +station = ('klrd', 0.0025642842270300068) +zone = ('txz239', 0.0045938924747247825) + +[fips4840108] +centroid = (0.51155560233381003, -1.7245790325173689) +description = LaCoste city, TX +station = ('kcvb', 0.0007905437012060019) +zone = ('txz204', 0.0046189171384880276) + +[fips4840168] +centroid = (0.55203488404897438, -1.6948028428137198) +description = Lacy-Lakeview city, TX +station = ('kcnw', 0.00055349083758192712) +zone = ('txz159', 0.0019669397569104493) + +[fips4840180] +centroid = (0.58343522479465193, -1.6746123853344588) +description = Ladonia town, TX +station = ('kgvt', 0.0065454674429679836) +zone = ('txz094', 0.0036956472001382075) + +[fips4840186] +centroid = (0.4604292013162421, -1.725672097321308) +description = La Escondida CDP, TX +station = ('kmfe', 0.010350462767483051) +zone = ('txz252', 0.0038078163950070682) + +[fips4840188] +centroid = (0.46131345492847253, -1.7259957511777979) +description = La Esperanza CDP, TX +station = ('kapy', 0.01093186452071186) +zone = ('txz252', 0.0033146926553374177) + +[fips4840191775] +centroid = (0.56151312144473231, -1.6545521992305665) +description = Henderson CCD, TX +station = ('krfi', 0.0009431199701426321) +zone = ('txz150', 0.0012539591861818993) + +[fips4840192025] +centroid = (0.56451622222217634, -1.6553422050631894) +description = Kilgore CCD, TX +station = ('kggg', 0.0019980854444475093) +zone = ('txz137', 0.0024048953583840856) + +[fips4840192135] +centroid = (0.55735834770706727, -1.6553253451826149) +description = Laneville CCD, TX +station = ('krfi', 0.0035919014443504373) +zone = ('txz150', 0.0032573710745880851) + +[fips4840192660] +centroid = (0.55684832759304959, -1.6512881193700719) +description = Mount Enterprise CCD, TX +station = ('krfi', 0.0054068436054402541) +zone = ('txz150', 0.0041754656543837535) + +[fips4840192925] +centroid = (0.56330622035835376, -1.6565574080081829) +description = Overton CCD, TX +station = ('krfi', 0.002538419858233565) +zone = ('txz150', 0.003683745590300574) + +[fips4840193040] +centroid = (0.56021838384572531, -1.6518826308731789) +description = Pinehill CCD, TX +station = ('krfi', 0.0031041210843062651) +zone = ('txz150', 0.0017215793316825414) + +[fips4840193148] +centroid = (0.56074639830433126, -1.6571069423764659) +description = Price-Turnertown CCD, TX +station = ('krfi', 0.0014219948828621198) +zone = ('txz150', 0.0027355146249413067) + +[fips4840193840] +centroid = (0.56403543637312947, -1.6512622710438498) +description = Tatum CCD, TX +station = ('kggg', 0.001950207553728612) +zone = ('txz137', 0.0041748228234701531) + +[fips4840204] +centroid = (0.45661394647796749, -1.7073156667266278) +description = La Feria city, TX +station = ('kt65', 0.0023817523766808358) +zone = ('txz255', 0.0038718732541219657) + +[fips4840210] +centroid = (0.45690738868510533, -1.7073193842779344) +description = La Feria North CDP, TX +station = ('kt65', 0.0023630557688871291) +zone = ('txz255', 0.003940749501645982) + +[fips4840258] +centroid = (0.45531369363852425, -1.703663617626707) +description = Lago CDP, TX +station = ('khrl', 0.0023278561091058703) +zone = ('txz255', 0.00077412791128045029) + +[fips4840264] +centroid = (0.53140957778657905, -1.7102689907138049) +description = Lago Vista city, TX +station = ('kryw', 0.00096975141490924881) +zone = ('txz192', 0.0037156663513503931) + +[fips4840270] +centroid = (0.46363488245996515, -1.7297568484493828) +description = Lago Vista CDP, TX +station = ('kapy', 0.0074192191353434711) +zone = ('txz252', 0.0057662982136754302) + +[fips4840276] +centroid = (0.52207351491168852, -1.6908103323366126) +description = La Grange city, TX +station = ('k3t5', 0.0011178693218356541) +zone = ('txz209', 0.00090769569612805313) + +[fips4840288] +centroid = (0.45852019508699571, -1.7217434135349463) +description = La Grulla city, TX +station = ('kmfe', 0.0064270894884306843) +zone = ('txz252', 0.0052662787863255612) + +[fips48403] +centroid = (0.54704378344033866, -1.6380248911452688) +description = Sabine County, TX +station = ('kbkb', 0.0069456406542926525) +zone = ('txz167', 2.4255502163643546e-06) + +[fips4840300] +centroid = (0.45525745913002502, -1.6976404514714898) +description = Laguna Heights CDP, TX +station = ('kpil', 0.0017677632078820663) +zone = ('txz257', 0.0016236684587258483) + +[fips4840312] +centroid = (0.55617642819090918, -1.6996680877299941) +description = Laguna Park CDP, TX +station = ('kact', 0.0052726037317585078) +zone = ('txz145', 0.0043084446704296578) + +[fips4840320] +centroid = (0.45866036247922337, -1.7091342998072057) +description = Laguna Seca CDP, TX +station = ('kt65', 0.0019223861723095021) +zone = ('txz253', 0.0044837436001589235) + +[fips4840336] +centroid = (0.45565541165277224, -1.698238436179808) +description = Laguna Vista town, TX +station = ('kpil', 0.0011499252091831814) +zone = ('txz257', 0.0010685408015631765) + +[fips4840342] +centroid = (0.4586214241836114, -1.716666966325888) +description = La Homa CDP, TX +station = ('kmfe', 0.0023502296071981153) +zone = ('txz253', 0.0034645682029769828) + +[fips4840384] +centroid = (0.45815919118451326, -1.718617511391332) +description = La Joya city, TX +station = ('kmfe', 0.0036322591095682842) +zone = ('txz253', 0.0051836812439849953) + +[fips4840391765] +centroid = (0.54594988087835872, -1.6368723455204219) +description = Hemphill CCD, TX +station = ('kbkb', 0.0055116161008343734) +zone = ('txz167', 0.0014693818548494654) + +[fips4840392580] +centroid = (0.54951045727218228, -1.6381749021944778) +description = Milam CCD, TX +station = ('kaqv', 0.0068813251556350211) +zone = ('txz167', 0.0024718245967289359) + +[fips4840393045] +centroid = (0.54605720117406387, -1.6401885932722586) +description = Pineland CCD, TX +station = ('kjas', 0.0070575733749255317) +zone = ('txz167', 0.0020959695117318479) + +[fips4840450] +centroid = (0.57957567349996175, -1.7074730081586948) +description = Lake Bridgeport city, TX +station = ('kxbp', 0.00055920100351160317) +zone = ('txz102', 0.0025831587404231983) + +[fips4840456] +centroid = (0.55532249094778596, -1.7296668243665652) +description = Lake Brownwood CDP, TX +station = ('kbwd', 0.0022843286416172619) +zone = ('txz140', 0.001702323375077875) + +[fips4840462] +centroid = (0.53606794882661446, -1.6836356852073919) +description = Lake Bryan CDP, TX +station = ('kcll', 0.0027249021941572658) +zone = ('txz196', 0.0026164417292204316) + +[fips4840468] +centroid = (0.56479180971106635, -1.6519562837676127) +description = Lake Cherokee CDP, TX +station = ('kggg', 0.0010608450449964165) +zone = ('txz137', 0.0032332574041517106) + +[fips4840472] +centroid = (0.4901425940734046, -1.7083738423988193) +description = Lake City town, TX +station = ('kbea', 0.0050382716848819753) +zone = ('txz231', 0.0059833598775216228) + +[fips4840475] +centroid = (0.56457285815640357, -1.7616640328098396) +description = Lake Colorado City CDP, TX +station = ('ksnk', 0.0060371538269565215) +zone = ('txz053', 0.0007551511352604372) + +[fips48405] +centroid = (0.54772706238920199, -1.6434575251480741) +description = San Augustine County, TX +station = ('kjas', 0.0088822168019070721) +zone = ('txz166', 0.00021830594213285013) + +[fips4840516] +centroid = (0.57818885232961958, -1.693367065157859) +description = Lake Dallas city, TX +station = ('kdto', 0.0028796634654245615) +zone = ('txz103', 0.0019189201484444808) + +[fips4840522] +centroid = (0.51775904354746594, -1.7118442201769) +description = Lake Dunlap CDP, TX +station = ('kbaz', 0.0010137696277288406) +zone = ('txz207', 0.0024775857991097875) + +[fips4840576] +centroid = (0.51708979704578872, -1.7268744022831293) +description = Lakehills CDP, TX +station = ('k5c1', 0.0041600336712576324) +zone = ('txz187', 0.0050595282761833693) + +[fips4840588] +centroid = (0.50703322734908995, -1.665938238578387) +description = Lake Jackson city, TX +station = ('klbx', 0.0011723596199905138) +zone = ('txz237', 0.0024517807317155087) + +[fips4840590455] +centroid = (0.5456455478166885, -1.6434573331618563) +description = Broaddus CCD, TX +station = ('kjas', 0.0068649057077569565) +zone = ('txz166', 0.002287838034483181) + +[fips4840593415] +centroid = (0.54997745502013839, -1.6433835755476671) +description = San Augustine CCD, TX +station = ('koch', 0.0083899802147772689) +zone = ('txz166', 0.0020499375770222888) + +[fips4840624] +centroid = (0.58591949154535572, -1.6931973842479802) +description = Lake Kiowa CDP, TX +station = ('kgle', 0.003020970871349418) +zone = ('txz092', 0.0031378338370991509) + +[fips4840674] +centroid = (0.51728825843503301, -1.7277366123869071) +description = Lake Medina Shores CDP, TX +station = ('k5c1', 0.0047958148584556302) +zone = ('txz187', 0.0042973588180519546) + +[fips4840676] +centroid = (0.62245158898408715, -1.7733022024214034) +description = Lake Meredith Estates CDP, TX +station = ('kbgd', 0.0029425215108364873) +zone = ('txz008', 0.0046684644048975328) + +[fips4840696] +centroid = (0.56557488658655852, -1.6530043190768504) +description = Lakeport city, TX +station = ('kggg', 0.00039099686527963441) +zone = ('txz137', 0.002051822347450142) + +[fips48407] +centroid = (0.53362077032251565, -1.6609050929880709) +description = San Jacinto County, TX +station = ('k6r3', 0.0043892994833341376) +zone = ('txz178', 0.00011190805892574162) + +[fips4840714] +centroid = (0.49090830492283954, -1.7081501086420063) +description = Lakeshore Gardens-Hidden Acres CDP, TX +station = ('kbea', 0.0042480795894059885) +zone = ('txz232', 0.0054406480936456973) + +[fips4840738] +centroid = (0.49049125849807551, -1.7079988235024435) +description = Lakeside town, TX +station = ('kbea', 0.0046155653319096945) +zone = ('txz232', 0.005787425782132931) + +[fips4840744] +centroid = (0.57285322372664027, -1.7015067222838001) +description = Lakeside town, TX +station = ('knfw', 0.0011247638559696385) +zone = ('txz118', 0.0030312329851700961) + +[fips4840756] +centroid = (0.5904727763111286, -1.7199433856641944) +description = Lakeside City town, TX +station = ('ksps', 0.0027290503650467201) +zone = ('txz086', 0.0035594119859143933) + +[fips4840790775] +centroid = (0.53399039615150301, -1.6601060638032152) +description = Coldspring CCD, TX +station = ('k6r3', 0.0044128271357154643) +zone = ('txz178', 0.00079781461531616487) + +[fips4840793080] +centroid = (0.53671923589028869, -1.6624544915782364) +description = Point Blank CCD, TX +station = ('kuts', 0.0049754811738761413) +zone = ('txz178', 0.0032626803821067907) + +[fips4840793555] +centroid = (0.53214921341698918, -1.6606828776677069) +description = Shepherd-Evergreen CCD, TX +station = ('k6r3', 0.003096353817115404) +zone = ('txz178', 0.0015856833162155117) + +[fips4840804] +centroid = (0.61181509873682827, -1.7764251724118745) +description = Lake Tanglewood village, TX +station = ('kama', 0.0029797874425075551) +zone = ('txz017', 0.0022595094746695392) + +[fips4840888] +centroid = (0.60515392747354424, -1.7574980191517919) +description = Lakeview town, TX +station = ('kcds', 0.0072703896222122786) +zone = ('txz025', 0.0024885715056503009) + +[fips48409] +centroid = (0.48889782525088227, -1.7019956064605761) +description = San Patricio County, TX +station = ('kcrp', 0.0042780765205671766) +zone = ('txz244', 4.7127602645612122e-05) + +[fips4840966] +centroid = (0.51415794060841113, -1.7619685404044352) +description = Lake View CDP, TX +station = ('kdrt', 0.0017066747361967878) +zone = ('txz183', 0.0081486886705735301) + +[fips4840984] +centroid = (0.52979150049034762, -1.7100701977120027) +description = Lakeway city, TX +station = ('kryw', 0.0025382142273515352) +zone = ('txz192', 0.0030014932308972163) + +[fips4840990125] +centroid = (0.48667298424019501, -1.6964120189307659) +description = Aransas Pass-Ingleside CCD, TX +station = ('ktfp', 0.00062438639980204075) +zone = ('txz245', 0.0053732260783373618) + +[fips4840992470] +centroid = (0.48957464648151311, -1.7063460665139749) +description = Mathis CCD, TX +station = ('krbo', 0.0048942662694553213) +zone = ('txz244', 0.0038816960053141827) + +[fips4840993103] +centroid = (0.48770962254941702, -1.6980762950922976) +description = Portland-Gregory CCD, TX +station = ('ktfp', 0.0014866943179087904) +zone = ('txz244', 0.0036707537648283644) + +[fips4840993580] +centroid = (0.48908464529401574, -1.7030567491924962) +description = Sinton-Odem CCD, TX +station = ('kcrp', 0.004563909968960461) +zone = ('txz244', 0.00093935509535152388) + +[fips4840993815] +centroid = (0.48890667407018984, -1.6998945442004403) +description = Taft CCD, TX +station = ('ktfp', 0.0034345731361198947) +zone = ('txz244', 0.0018807635869473403) + +[fips4841050] +centroid = (0.57833322596534453, -1.692558209769315) +description = Lakewood Village city, TX +station = ('kads', 0.0036225557548946702) +zone = ('txz103', 0.0023751748283161803) + +[fips4841056] +centroid = (0.57269267088874942, -1.7004834008367706) +description = Lake Worth city, TX +station = ('knfw', 0.00085559370521016628) +zone = ('txz118', 0.0021647469799058296) + +[fips4841086] +centroid = (0.46315510890188444, -1.7295507599713074) +description = La Loma de Falcon CDP, TX +station = ('kapy', 0.0079322061897552018) +zone = ('txz252', 0.0055998942056105462) + +[fips4841092] +centroid = (0.49114251065516468, -1.6927652581784789) +description = Lamar CDP, TX +station = ('krkp', 0.001376155655109571) +zone = ('txz245', 0.00014802789618210483) + +[fips48411] +centroid = (0.54375973701320113, -1.7247220098896925) +description = San Saba County, TX +station = ('kaqo', 0.006898678517274822) +zone = ('txz155', 2.5294856093085418e-05) + +[fips4841116] +centroid = (0.51258953538269147, -1.6579935696364789) +description = La Marque city, TX +station = ('kgls', 0.0026606871367990019) +zone = ('txz238', 0.00064249941737508658) + +[fips4841164] +centroid = (0.57130007267858307, -1.7794504563241111) +description = Lamesa city, TX +station = ('ke11', 0.01098588728252208) +zone = ('txz046', 0.00019621960895198367) + +[fips4841170] +centroid = (0.46255162640642233, -1.7291588637410646) +description = La Minita CDP, TX +station = ('kapy', 0.0086147516953210511) +zone = ('txz252', 0.0053359441940459161) + +[fips4841188] +centroid = (0.54221135071400184, -1.7135884149648803) +description = Lampasas city, TX +station = ('klzz', 0.00072559285281528871) +zone = ('txz156', 0.0024360625862232784) + +[fips4841193231] +centroid = (0.54669819079515136, -1.7255995439843024) +description = Richland Springs CCD, TX +station = ('kbbd', 0.0072317124598702213) +zone = ('txz155', 0.0030380300171342577) + +[fips4841193439] +centroid = (0.54226212234194227, -1.7241309890450893) +description = San Saba CCD, TX +station = ('kaqo', 0.0053184350113485495) +zone = ('txz155', 0.0015739081060192771) + +[fips4841212] +centroid = (0.56890558566460192, -1.6890939406436163) +description = Lancaster city, TX +station = ('klnc', 0.00091631246886658311) +zone = ('txz119', 0.0029794691249723942) + +[fips48413] +centroid = (0.53924099231332523, -1.754530907063524) +description = Schleicher County, TX +station = ('ksoa', 0.0057186370115358057) +zone = ('txz077', 0.00017043600870320544) + +[fips4841391185] +centroid = (0.53949888216359987, -1.7516024889247728) +description = Eldorado East CCD, TX +station = ('ksoa', 0.0071445047290277135) +zone = ('txz077', 0.0026919882486549774) + +[fips4841391190] +centroid = (0.53938376024613832, -1.75906932162407) +description = Eldorado West CCD, TX +station = ('ksoa', 0.0059424309831693205) +zone = ('txz077', 0.0037271798297923531) + +[fips4841404] +centroid = (0.57756545562739237, -1.6950547461846601) +description = Lantana CDP, TX +station = ('kdto', 0.0022211129347794586) +zone = ('txz103', 0.0019592146811249675) + +[fips4841416] +centroid = (0.45469251350444695, -1.7044056967180701) +description = La Paloma CDP, TX +station = ('khrl', 0.0028758168509292357) +zone = ('txz255', 0.00168402538564471) + +[fips4841420] +centroid = (0.48898917578393164, -1.7017119380972494) +description = La Paloma Addition CDP, TX +station = ('kcrp', 0.0043761735440732696) +zone = ('txz244', 0.00030525033152246206) + +[fips4841422] +centroid = (0.4837959835012075, -1.7058683175378262) +description = La Paloma-Lost Creek CDP, TX +station = ('krbo', 0.0012740395780526271) +zone = ('txz243', 0.0017297348070063226) + +[fips4841424] +centroid = (0.45927976237746371, -1.7212963649003405) +description = La Paloma Ranchettes CDP, TX +station = ('kmfe', 0.006273625034727958) +zone = ('txz252', 0.0046778503953043742) + +[fips4841440] +centroid = (0.51779412466543107, -1.6589206012686757) +description = La Porte city, TX +station = ('kefd', 0.0021360977511506755) +zone = ('txz238', 0.0049388880339053809) + +[fips4841449] +centroid = (0.47821047610922018, -1.735424613209017) +description = La Presa CDP, TX +station = ('mmnl', 0.0021610800424825181) +zone = ('txz239', 0.0065022792952599299) + +[fips4841452] +centroid = (0.50525635999751206, -1.7426749203613117) +description = La Pryor CDP, TX +station = ('kuva', 0.0048439236846879218) +zone = ('txz218', 0.0019675115692516796) + +[fips4841458] +centroid = (0.45983868661712235, -1.7235217818696809) +description = La Puerta CDP, TX +station = ('kmfe', 0.008337317203478762) +zone = ('txz252', 0.0037621874691419642) + +[fips4841464] +centroid = (0.48079773473908405, -1.7363745086544147) +description = Laredo city, TX +station = ('klrd', 0.00040159195346858531) +zone = ('txz239', 0.0044318193824302498) + +[fips4841473] +centroid = (0.47981153644524466, -1.7341592320480284) +description = Laredo Ranchettes CDP, TX +station = ('klrd', 0.0018166553033283522) +zone = ('txz239', 0.0047314946283746797) + +[fips4841475] +centroid = (0.47980301923849489, -1.7343368367527114) +description = Laredo Ranchettes West CDP, TX +station = ('klrd', 0.0016871124295763996) +zone = ('txz239', 0.0047571378661669713) + +[fips48415] +centroid = (0.5714986736941674, -1.7612710719287532) +description = Scurry County, TX +station = ('ksnk', 0.0010438228646365828) +zone = ('txz048', 5.4495846609510387e-05) + +[fips4841503] +centroid = (0.46079851298596414, -1.7266947555432215) +description = La Rosita CDP, TX +station = ('kapy', 0.011085294372905632) +zone = ('txz252', 0.0041235974207567173) + +[fips4841542] +centroid = (0.45827045592432786, -1.7051060449870179) +description = Lasana CDP, TX +station = ('khrl', 0.00099967413180122866) +zone = ('txz255', 0.0030004560090062526) + +[fips4841548] +centroid = (0.46188025060305765, -1.7088294082401749) +description = Lasara CDP, TX +station = ('kebg', 0.0034701463213075222) +zone = ('txz254', 0.002969194184777191) + +[fips4841565] +centroid = (0.48224916799833506, -1.7313467735847798) +description = Las Haciendas CDP, TX +station = ('klrd', 0.0043370104204911121) +zone = ('txz239', 0.0030620537476986629) + +[fips4841566] +centroid = (0.46013565438934917, -1.7239428425517245) +description = Las Lomas CDP, TX +station = ('kmfe', 0.00879444995872097) +zone = ('txz252', 0.0035064901305388945) + +[fips4841569] +centroid = (0.47713530093011408, -1.7219922102198182) +description = Las Lomitas CDP, TX +station = ('khbv', 0.0010950653493740396) +zone = ('txz249', 0.0051666271513284255) + +[fips4841579] +centroid = (0.47039473463915688, -1.7326932951026934) +description = Las Palmas CDP, TX +station = ('kapy', 0.00051625443788255341) +zone = ('txz248', 0.0018782243511667224) + +[fips4841580] +centroid = (0.45730612660601594, -1.7058428706373321) +description = Las Palmas II CDP, TX +station = ('khrl', 0.0013962860032105885) +zone = ('txz255', 0.0028588800710568447) + +[fips4841582] +centroid = (0.48313398011592606, -1.7310727045323391) +description = Las Pilas CDP, TX +station = ('klrd', 0.0049305256610324517) +zone = ('txz239', 0.0026810341586746347) + +[fips4841583] +centroid = (0.50073866249518739, -1.7535026986945892) +description = Las Quintas Fronterizas CDP, TX +station = ('mmpg', 0.00075987500115673109) +zone = ('txz217', 0.0025255533912314702) + +[fips4841591339] +centroid = (0.57118788291426492, -1.7642618506816781) +description = Fluvanna-Ira CCD, TX +station = ('ksnk', 0.0020587586094710001) +zone = ('txz048', 0.0024953530271513784) + +[fips4841591795] +centroid = (0.56936560209554998, -1.758315496466841) +description = Hermleigh CCD, TX +station = ('ksnk', 0.0032743865646502443) +zone = ('txz048', 0.0033312500793818522) + +[fips4841593605] +centroid = (0.57257236534340927, -1.7602177831784671) +description = Snyder CCD, TX +station = ('ksnk', 0.0024294604328652845) +zone = ('txz048', 0.0013961297331124313) + +[fips4841644] +centroid = (0.54788382786261614, -1.6663571175988656) +description = Latexo city, TX +station = ('kdkr', 0.0018204161738004136) +zone = ('txz163', 0.0015048165095576276) + +[fips4841660] +centroid = (0.45724725665034621, -1.7013134968823116) +description = La Tina Ranch CDP, TX +station = ('kpil', 0.0023335512387272421) +zone = ('txz255', 0.0020914247993278198) + +[fips48417] +centroid = (0.57148691017500908, -1.7339330373769699) +description = Shackelford County, TX +station = ('kabi', 0.0075535874703706084) +zone = ('txz114', 0.00017088878156374597) + +[fips4841704] +centroid = (0.51240288987248328, -1.7588989425824901) +description = Laughlin AFB CDP, TX +station = ('kdrt', 0.0021218622380454882) +zone = ('txz202', 0.0054705606304264499) + +[fips4841728] +centroid = (0.45587483444633298, -1.7015071760694056) +description = Laureles CDP, TX +station = ('kpil', 0.0025756652039491813) +zone = ('txz255', 0.0014122846944849684) + +[fips4841764] +centroid = (0.51231146952626372, -1.7126241554597386) +description = La Vernia city, TX +station = ('krnd', 0.0039475847929339499) +zone = ('txz221', 0.0031847763211261333) + +[fips4841782] +centroid = (0.45985572103062178, -1.7214093051562369) +description = La Victoria CDP, TX +station = ('kmfe', 0.0065966791542393854) +zone = ('txz252', 0.0041093356569607909) + +[fips4841788] +centroid = (0.45898104927598482, -1.7091464647520922) +description = La Villa city, TX +station = ('kt65', 0.0022185624885874065) +zone = ('txz253', 0.004336150003107859) + +[fips4841790030] +centroid = (0.57150178038023602, -1.7345297130883492) +description = Albany CCD, TX +station = ('kabi', 0.0072461089289146512) +zone = ('txz114', 0.0004259006558688635) + +[fips4841792640] +centroid = (0.56896670709500674, -1.7310834034006539) +description = Moran CCD, TX +station = ('kbkd', 0.0048025411174157017) +zone = ('txz114', 0.0034564978166542644) + +[fips4841800] +centroid = (0.57640694097650358, -1.6831822486677237) +description = Lavon city, TX +station = ('ktki', 0.0034653690648477633) +zone = ('txz120', 0.0022792974733532654) + +[fips4841848] +centroid = (0.50346539038557814, -1.6836296987280577) +description = La Ward city, TX +station = ('kpsx', 0.0039918091460710188) +zone = ('txz235', 0.0025809045477325127) + +[fips4841872] +centroid = (0.56088895679763406, -1.7409676567403034) +description = Lawn town, TX +station = ('kabi', 0.0049868983655014763) +zone = ('txz127', 0.003543948921587515) + +[fips48419] +centroid = (0.55484256031007262, -1.6430977255227757) +description = Shelby County, TX +station = ('koch', 0.0092588080364181553) +zone = ('txz153', 5.3524332152554082e-05) + +[fips4841980] +centroid = (0.51469941155554988, -1.6599673799408521) +description = League City city, TX +station = ('kefd', 0.0021076666422125321) +zone = ('txz238', 0.0027591555363760617) + +[fips4841990020] +centroid = (0.5532952735683021, -1.644264862100169) +description = Aiken-Neuville CCD, TX +station = ('koch', 0.0078137623190748691) +zone = ('txz153', 0.0018527074403234839) + +[fips4841990670] +centroid = (0.55546675986375593, -1.6436430885541462) +description = Center CCD, TX +station = ('koch', 0.0091048264669959661) +zone = ('txz153', 0.00072422051329060514) + +[fips4841993550] +centroid = (0.55346567006317426, -1.6396165965165028) +description = Shelbyville CCD, TX +station = ('kaqv', 0.0073645123325473709) +zone = ('txz153', 0.0033141748057700028) + +[fips4841993860] +centroid = (0.55704322851061971, -1.6425488194730233) +description = Tenaha-Joaquin CCD, TX +station = ('kshv', 0.010179715017559978) +zone = ('txz153', 0.0022187839109070228) + +[fips4841993925] +centroid = (0.55629477896748702, -1.6474837030264522) +description = Timpson CCD, TX +station = ('koch', 0.0069701588874929252) +zone = ('txz153', 0.0039513515701181789) + +[fips4842004] +centroid = (0.51880536843403657, -1.7411945320897699) +description = Leakey city, TX +station = ('kecu', 0.0073175903827636495) +zone = ('txz185', 0.0020615914251945829) + +[fips4842016] +centroid = (0.53353680253220226, -1.7079938318607826) +description = Leander city, TX +station = ('kryw', 0.0020397040859656207) +zone = ('txz173', 0.0041405673808345839) + +[fips4842028] +centroid = (0.58410948039128241, -1.6443090014769521) +description = Leary city, TX +station = ('ktxk', 0.0033423336216195244) +zone = ('txz097', 0.0030945625878023913) + +[fips48421] +centroid = (0.63316405341368542, -1.7783982845845465) +description = Sherman County, TX +station = ('kdux', 0.0075155478340691436) +zone = ('txz002', 1.7155365899219426e-05) + +[fips4842148] +centroid = (0.61853772304307497, -1.7593597618648942) +description = Lefors town, TX +station = ('kppa', 0.0040731514286431649) +zone = ('txz014', 0.00068157945100166416) + +[fips4842193759] +centroid = (0.6332549676144219, -1.7812144082392243) +description = Stratford CCD, TX +station = ('kdux', 0.0074434569578002291) +zone = ('txz002', 0.0022890326861263999) + +[fips4842193883] +centroid = (0.63321951997731385, -1.7762163437668732) +description = Texhoma CCD, TX +station = ('kguy', 0.0079800263784662595) +zone = ('txz002', 0.0017426897541084102) + +[fips4842256] +centroid = (0.50733825854246106, -1.7186645829212583) +description = Leming CDP, TX +station = ('kpez', 0.0021903790090553967) +zone = ('txz220', 0.0032148301466961081) + +[fips48423] +centroid = (0.56508687507440847, -1.6627687206567654) +description = Smith County, TX +station = ('ktyr', 0.0019792620707570381) +zone = ('txz136', 3.707554440232798e-05) + +[fips4842340] +centroid = (0.54373477880489762, -1.67509701090786) +description = Leona city, TX +station = ('kuts', 0.0091754174531655571) +zone = ('txz162', 0.0025094937645550211) + +[fips4842352] +centroid = (0.58264781950261468, -1.6798202034763146) +description = Leonard city, TX +station = ('ktki', 0.0060260187079028207) +zone = ('txz094', 0.0042034206733563406) + +[fips4842388] +centroid = (0.51479079699518426, -1.721139058374858) +description = Leon Valley city, TX +station = ('kskf', 0.0020097022256076393) +zone = ('txz205', 0.0016419154895604608) + +[fips4842390515] +centroid = (0.56205108428007455, -1.6646897696578506) +description = Bullard CCD, TX +station = ('ktyr', 0.002580378773225991) +zone = ('txz136', 0.0034137276314960565) + +[fips4842392210] +centroid = (0.56763278685429253, -1.6661363159951961) +description = Lindale CCD, TX +station = ('ktyr', 0.0031563789584791056) +zone = ('txz136', 0.0038445959552948997) + +[fips4842393950] +centroid = (0.56231537948870403, -1.6595402280597187) +description = Troup-Arp CCD, TX +station = ('krfi', 0.0037259700644567944) +zone = ('txz136', 0.0038591456303659717) + +[fips4842393970] +centroid = (0.56518332196887355, -1.6638037707163682) +description = Tyler CCD, TX +station = ('ktyr', 0.00119233533347255) +zone = ('txz136', 0.00089044992616727425) + +[fips4842393975] +centroid = (0.56475608282127787, -1.6598264096971684) +description = Tyler East CCD, TX +station = ('ktyr', 0.0044099743843797725) +zone = ('txz136', 0.0024962602323417185) + +[fips4842394205] +centroid = (0.56223502452994212, -1.6622495375641748) +description = Whitehouse CCD, TX +station = ('ktyr', 0.0033528392204321029) +zone = ('txz136', 0.002848352558005484) + +[fips4842394260] +centroid = (0.56722450198237351, -1.6607773348868249) +description = Winona CCD, TX +station = ('ktyr', 0.0044481345832527207) +zone = ('txz136', 0.0027441602363642969) + +[fips4842400] +centroid = (0.55385330769004226, -1.693357430940388) +description = Leroy city, TX +station = ('kcnw', 0.0017787190994126257) +zone = ('txz159', 0.0041357685542475434) + +[fips4842448] +centroid = (0.58609665991772564, -1.7865855717457741) +description = Levelland city, TX +station = ('klbb', 0.0080915638615462835) +zone = ('txz034', 0.00055455743233006271) + +[fips48425] +centroid = (0.56230916611656701, -1.7063946390270577) +description = Somervell County, TX +station = ('kgdj', 0.0040099106513394938) +zone = ('txz132', 0.00010796184887390974) + +[fips4842508] +centroid = (0.57677112137822462, -1.6926521782962423) +description = Lewisville city, TX +station = ('kads', 0.0025821730147895113) +zone = ('txz103', 0.0033896734857107752) + +[fips4842532] +centroid = (0.53083822680264614, -1.6931327721590712) +description = Lexington town, TX +station = ('kgyb', 0.0043097123430693805) +zone = ('txz194', 0.0019320420075093247) + +[fips4842568] +centroid = (0.52445386475872846, -1.6544196938337552) +description = Liberty city, TX +station = ('k6r3', 0.0063521449086028125) +zone = ('txz200', 0.0018185129400511957) + +[fips4842591535] +centroid = (0.56230916611656701, -1.7063946390270577) +description = Glen Rose CCD, TX +station = ('kgdj', 0.0040099106513394938) +zone = ('txz132', 0.00010796184887390974) + +[fips4842616] +centroid = (0.56639121198430131, -1.6570668870701326) +description = Liberty City CDP, TX +station = ('kggg', 0.003541615109701276) +zone = ('txz137', 0.0019171041426020827) + +[fips4842664] +centroid = (0.53515753272889666, -1.7088089529813415) +description = Liberty Hill city, TX +station = ('kryw', 0.002983557511196526) +zone = ('txz172', 0.0046737827729317711) + +[fips48427] +centroid = (0.46332095008740887, -1.7229157861000959) +description = Starr County, TX +station = ('kmfe', 0.0096539258691194212) +zone = ('txz252', 0.00044740111153416796) + +[fips4842792090] +centroid = (0.46076667818040767, -1.7210329249030445) +description = La Grulla CCD, TX +station = ('kmfe', 0.0067576585360269109) +zone = ('txz252', 0.0034871781972952961) + +[fips4842793239] +centroid = (0.46423293698145351, -1.721712486300601) +description = Rio Grande City CCD, TX +station = ('kebg', 0.00853032680800026) +zone = ('txz252', 0.0015643240658914312) + +[fips4842793315] +centroid = (0.46379156066691662, -1.7272808894659188) +description = Roma-Los Saenz CCD, TX +station = ('kapy', 0.0082179941324514519) +zone = ('txz252', 0.0035568042746480931) + +[fips4842808] +centroid = (0.57989051344372911, -1.6924916778182286) +description = Lincoln Park town, TX +station = ('kdto', 0.0033492847640220844) +zone = ('txz103', 0.0021410664216923356) + +[fips4842820] +centroid = (0.56712531492098273, -1.6651710791056729) +description = Lindale city, TX +station = ('ktyr', 0.002513588051071324) +zone = ('txz136', 0.0029055808393505097) + +[fips4842844] +centroid = (0.57614983652439222, -1.6469385494345918) +description = Linden city, TX +station = ('kasl', 0.0086179196126263524) +zone = ('txz112', 0.001194343427233529) + +[fips4842868] +centroid = (0.58716904257002844, -1.6968042991334442) +description = Lindsay city, TX +station = ('kgle', 0.00036697572512235307) +zone = ('txz092', 0.00011607918880191591) + +[fips4842874] +centroid = (0.54749367696162532, -1.8070707978824045) +description = Lindsay CDP, TX +station = ('kpeq', 0.00046281811374660294) +zone = ('txz058', 0.0047724284420668809) + +[fips48429] +centroid = (0.57127298516859204, -1.7250848463878894) +description = Stephens County, TX +station = ('kbkd', 0.00076008327888960482) +zone = ('txz115', 9.519043138372414e-05) + +[fips4842916] +centroid = (0.46361760370037036, -1.7126716807752704) +description = Linn CDP, TX +station = ('kebg', 0.0021186322489116847) +zone = ('txz253', 0.0030189371699473559) + +[fips4842940] +centroid = (0.5675575282569465, -1.7112439316339689) +description = Lipan city, TX +station = ('kgdj', 0.0036325882877736807) +zone = ('txz131', 0.0035211059747670588) + +[fips4842952] +centroid = (0.63218427793149345, -1.7499038821368544) +description = Lipscomb CDP, TX +station = ('khhf', 0.0059387975506247758) +zone = ('txz005', 0.00099315906591433537) + +[fips4842990420] +centroid = (0.5733022620365934, -1.7247939349081671) +description = Breckenridge North CCD, TX +station = ('kbkd', 0.0024351379414325959) +zone = ('txz115', 0.0019620138477170804) + +[fips4842990425] +centroid = (0.56953165272058481, -1.725375461161639) +description = Breckenridge South CCD, TX +station = ('kbkd', 0.0016157698045880453) +zone = ('txz115', 0.0018424406352931981) + +[fips4843012] +centroid = (0.57904247541347753, -1.6917306619044818) +description = Little Elm city, TX +station = ('kads', 0.0039237024624015383) +zone = ('txz103', 0.0027889177096402339) + +[fips4843024] +centroid = (0.59199964270065075, -1.7860805956332948) +description = Littlefield city, TX +station = ('klbb', 0.0087123681320512326) +zone = ('txz028', 0.0026209247351738148) + +[fips4843066] +centroid = (0.54087058878261984, -1.6990238867030829) +description = Little River-Academy city, TX +station = ('ktpl', 0.0029098519993967617) +zone = ('txz158', 0.0021359286580319163) + +[fips4843096] +centroid = (0.51583895447746952, -1.7163575194495095) +description = Live Oak city, TX +station = ('krnd', 0.00094323163353987247) +zone = ('txz205', 0.0033024299164797688) + +[fips48431] +centroid = (0.55563907622080522, -1.7637409222598355) +description = Sterling County, TX +station = ('kbpg', 0.0093329090560925424) +zone = ('txz064', 0.00015552897971090427) + +[fips4843120] +centroid = (0.51129631622013383, -1.6629058860826798) +description = Liverpool city, TX +station = ('klvj', 0.0038892248872281006) +zone = ('txz237', 0.0032556864170515264) + +[fips4843132] +centroid = (0.53599136377903689, -1.6569794635279) +description = Livingston town, TX +station = ('k6r3', 0.0062047231371925009) +zone = ('txz179', 0.0021695565523692684) + +[fips4843144] +centroid = (0.5367436006866465, -1.7221082048019056) +description = Llano city, TX +station = ('kaqo', 0.00054380670593250167) +zone = ('txz171', 0.00085770187480663424) + +[fips4843150] +centroid = (0.45606860089988938, -1.7098777228020927) +description = Llano Grande CDP, TX +station = ('kt65', 0.00081771589029206186) +zone = ('txz253', 0.0057092919022430078) + +[fips4843193745] +centroid = (0.55563907622080522, -1.7637409222598355) +description = Sterling City CCD, TX +station = ('kbpg', 0.0093329090560925424) +zone = ('txz064', 0.00015552897971090427) + +[fips4843240] +centroid = (0.52147910812833675, -1.704891823274628) +description = Lockhart city, TX +station = ('khyi', 0.0027608130035809324) +zone = ('txz208', 0.0011972126231912855) + +[fips4843252] +centroid = (0.59555966058911369, -1.7705046839765517) +description = Lockney town, TX +station = ('kpvw', 0.0040459933888393994) +zone = ('txz030', 0.0021981222864773504) + +[fips48433] +centroid = (0.57909291542886021, -1.7497590198089388) +description = Stonewall County, TX +station = ('ksww', 0.012817963482514306) +zone = ('txz044', 1.1181879415443585e-05) + +[fips4843354] +centroid = (0.56240592717029747, -1.675906197908962) +description = Log Cabin city, TX +station = ('kcrs', 0.0064422161358903638) +zone = ('txz135', 0.0024967541752787662) + +[fips4843390145] +centroid = (0.58079391331785379, -1.7494632563138959) +description = Aspermont North CCD, TX +station = ('ksww', 0.014528923273873402) +zone = ('txz044', 0.0017261419079635128) + +[fips4843390150] +centroid = (0.57733999399461966, -1.7498330915823934) +description = Aspermont South CCD, TX +station = ('ksww', 0.011109058229390451) +zone = ('txz044', 0.0017459253484705356) + +[fips4843432] +centroid = (0.50322334812491154, -1.6849178215291993) +description = Lolita CDP, TX +station = ('kpkv', 0.0038048046259769757) +zone = ('txz235', 0.0022342721328571687) + +[fips4843458] +centroid = (0.50129481166133538, -1.7424094732353756) +description = Loma Grande CDP, TX +station = ('kuva', 0.0086436758277756709) +zone = ('txz218', 0.0027465965036925005) + +[fips4843460] +centroid = (0.48881483484494992, -1.7016859501446873) +description = Loma Linda CDP, TX +station = ('kcrp', 0.0042035045298232246) +zone = ('txz244', 0.00030168683807696553) + +[fips4843462] +centroid = (0.48461396696173975, -1.7138127770402241) +description = Loma Linda East CDP, TX +station = ('knqi', 0.0026740040786203986) +zone = ('txz241', 0.0017212741253583021) + +[fips4843463] +centroid = (0.45951255439309469, -1.7224551937104946) +description = Loma Linda East CDP, TX +station = ('kmfe', 0.0073275426199813903) +zone = ('txz252', 0.0041546810220849956) + +[fips4843465] +centroid = (0.46112420887767874, -1.7266607216228078) +description = Loma Linda West CDP, TX +station = ('kapy', 0.01080871300715372) +zone = ('txz252', 0.0038862201153440972) + +[fips4843474] +centroid = (0.46106139447789951, -1.7275515376730257) +description = Loma Vista CDP, TX +station = ('kapy', 0.010523218872735152) +zone = ('txz252', 0.0045645357309953127) + +[fips48435] +centroid = (0.53263722492913934, -1.7541500587674461) +description = Sutton County, TX +station = ('ksoa', 0.0024518127415603858) +zone = ('txz078', 0.00059994883462785077) + +[fips4843516] +centroid = (0.54482611573287709, -1.7172740616529019) +description = Lometa city, TX +station = ('klzz', 0.0035109134165249595) +zone = ('txz156', 0.0022833866085871144) + +[fips4843593615] +centroid = (0.53454602171887544, -1.7571420417975552) +description = Sonora CCD, TX +station = ('ksoa', 0.00084393557516834652) +zone = ('txz078', 0.0030665721248606592) + +[fips4843593620] +centroid = (0.53194321220537621, -1.7543597251704883) +description = Sonora Rural CCD, TX +station = ('ksoa', 0.0027186847176647573) +zone = ('txz078', 0.0004712467983970661) + +[fips4843636] +centroid = (0.57588861309524619, -1.6744866169085602) +description = Lone Oak city, TX +station = ('kgvt', 0.0022140631692113832) +zone = ('txz105', 0.003069404222174795) + +[fips4843684] +centroid = (0.57491068766206133, -1.6529860280262896) +description = Lone Star city, TX +station = ('kosa', 0.0045802142510811897) +zone = ('txz111', 0.0030483343087092576) + +[fips48437] +centroid = (0.60267021922820108, -1.7755732248440983) +description = Swisher County, TX +station = ('kpvw', 0.0063291591880524078) +zone = ('txz023', 3.090268755766843e-05) + +[fips4843791700] +centroid = (0.6054597789716637, -1.7758220564355551) +description = Happy CCD, TX +station = ('kpvw', 0.0091248593413836825) +zone = ('txz023', 0.0027960226597631937) + +[fips4843792060] +centroid = (0.60023524057557376, -1.7752821737380358) +description = Kress CCD, TX +station = ('kpvw', 0.0038902013869255756) +zone = ('txz023', 0.002448959341716852) + +[fips4843793955] +centroid = (0.60308471747225734, -1.7759362009686355) +description = Tulia CCD, TX +station = ('kpvw', 0.0067600522417895371) +zone = ('txz023', 0.00049452875128349445) + +[fips4843822] +centroid = (0.45906313211070615, -1.7216362154122888) +description = Longoria CDP, TX +station = ('kmfe', 0.0064859615426462363) +zone = ('txz252', 0.0047743806509581944) + +[fips4843888] +centroid = (0.56756894271025471, -1.6539579495268475) +description = Longview city, TX +station = ('kggg', 0.0024768143795190641) +zone = ('txz137', 0.001028669458135362) + +[fips48439] +centroid = (0.57198000059528242, -1.6980533614659266) +description = Tarrant County, TX +station = ('kftw', 0.0015385549267977947) +zone = ('txz118', 2.9986238721751802e-05) + +[fips4843948] +centroid = (0.57446096867369989, -1.7874738745218692) +description = Loop CDP, TX +station = ('kgnc', 0.0054367732424809578) +zone = ('txz045', 0.0044300806126865468) + +[fips4843960] +centroid = (0.46620945254616697, -1.7296381486069548) +description = Lopeño CDP, TX +station = ('kapy', 0.0050684516054143591) +zone = ('txz248', 0.0051521855827340373) + +[fips4843972] +centroid = (0.45812733892566432, -1.7131715779796264) +description = Lopezville CDP, TX +station = ('kmfe', 0.0018443922354493914) +zone = ('txz253', 0.0026099740854954923) + +[fips4843990135] +centroid = (0.57014215143963998, -1.6952379010363643) +description = Arlington CCD, TX +station = ('kgky', 0.0004404422065241129) +zone = ('txz118', 0.002987758722135944) + +[fips4843991380] +centroid = (0.57165489811551351, -1.6997000447085979) +description = Fort Worth CCD, TX +station = ('knfw', 0.00097255221443379148) +zone = ('txz118', 0.0014073838531096739) + +[fips4843992805] +centroid = (0.57423075974536186, -1.6962835801511118) +description = Northeast Tarrant CCD, TX +station = ('kdfw', 0.0022942550236650767) +zone = ('txz118', 0.002726436440736774) + +[fips4843996] +centroid = (0.56563768353304522, -1.757764984714177) +description = Loraine town, TX +station = ('ksww', 0.0037668237911111192) +zone = ('txz053', 0.0035585714555728446) + +[fips4844020] +centroid = (0.54771266342287295, -1.6966834350827436) +description = Lorena city, TX +station = ('kpwg', 0.0023545220147113939) +zone = ('txz159', 0.0029850983386249669) + +[fips4844032] +centroid = (0.58765831071924002, -1.7721388706617791) +description = Lorenzo city, TX +station = ('klbb', 0.0040762387471986314) +zone = ('txz036', 0.003565516680629514) + +[fips4844038] +centroid = (0.47979958093986846, -1.7346098411543083) +description = Los Altos CDP, TX +station = ('klrd', 0.0014925447232803045) +zone = ('txz239', 0.0047968681268012337) + +[fips4844044] +centroid = (0.46052147687379502, -1.7261138052484026) +description = Los Alvarez CDP, TX +station = ('kmfe', 0.010754519422736003) +zone = ('txz252', 0.003968821544923202) + +[fips4844062] +centroid = (0.46242086633886292, -1.7066932299554891) +description = Los Angeles CDP, TX +station = ('khrl', 0.0053012788414809843) +zone = ('txz254', 0.0011658616920370048) + +[fips4844072] +centroid = (0.48196253257528004, -1.731549668110324) +description = Los Arcos CDP, TX +station = ('klrd', 0.0040734598537840649) +zone = ('txz239', 0.0031713424859536382) + +[fips4844075] +centroid = (0.46278747274824428, -1.7293511117581719) +description = Los Arrieros CDP, TX +station = ('kapy', 0.0083368360493663359) +zone = ('txz252', 0.0054645645260457754) + +[fips4844076] +centroid = (0.46061270523379677, -1.7264509505000103) +description = Los Barreras CDP, TX +station = ('kmfe', 0.011069777873784936) +zone = ('txz252', 0.0040993127694990998) + +[fips4844078] +centroid = (0.48192485091672943, -1.7315933013416238) +description = Los Centenarios CDP, TX +station = ('klrd', 0.0040252840232564095) +zone = ('txz239', 0.0031794165489042645) + +[fips4844079] +centroid = (0.482429827029209, -1.7376057511752341) +description = Los Corralitos CDP, TX +station = ('klrd', 0.0022604686365332053) +zone = ('txz239', 0.0040697425217861953) + +[fips48441] +centroid = (0.5636660199836524, -1.7434655894190501) +description = Taylor County, TX +station = ('kdys', 0.0022346653263199149) +zone = ('txz127', 0.00011145671140970623) + +[fips4844104] +centroid = (0.4580347666621386, -1.7201819372663569) +description = Los Ebanos CDP, TX +station = ('kmfe', 0.0049534334684623368) +zone = ('txz252', 0.0062272982717184525) + +[fips4844110] +centroid = (0.4609643716247811, -1.726454929850705) +description = Los Ebanos CDP, TX +station = ('kapy', 0.011035778927057888) +zone = ('txz252', 0.0038533581548554179) + +[fips4844116] +centroid = (0.45505924208687598, -1.7012663031793378) +description = Los Fresnos city, TX +station = ('kpil', 0.0027620672813253051) +zone = ('txz255', 0.0018255306993053733) + +[fips4844120] +centroid = (0.48200656723230784, -1.7315058777993915) +description = Los Fresnos CDP, TX +station = ('klrd', 0.0041238720398078677) +zone = ('txz239', 0.003159187665080851) + +[fips4844123] +centroid = (0.48706954049954065, -1.7361802884152528) +description = Los Huisaches CDP, TX +station = ('klrd', 0.0063467466944595883) +zone = ('txz239', 0.0033823565518631337) + +[fips4844128] +centroid = (0.4546415673435813, -1.7057955722146032) +description = Los Indios town, TX +station = ('khrl', 0.0032137557033989801) +zone = ('txz255', 0.0027369144078623901) + +[fips4844142] +centroid = (0.46437165575040196, -1.7306905472393224) +description = Los Lobos CDP, TX +station = ('kapy', 0.0064925472039889468) +zone = ('txz248', 0.0068821538162902006) + +[fips4844145] +centroid = (0.48267923457931899, -1.7386590922853977) +description = Los Minerales CDP, TX +station = ('klrd', 0.0031092174713358684) +zone = ('txz239', 0.0047915273461799791) + +[fips4844146] +centroid = (0.48205157927371672, -1.7314645134961193) +description = Los Nopalitos CDP, TX +station = ('klrd', 0.00417276917314392) +zone = ('txz239', 0.003145980827234488) + +[fips4844166] +centroid = (0.52873740888860565, -1.7077226949614852) +description = Lost Creek CDP, TX +station = ('katt', 0.0012468950427578028) +zone = ('txz192', 0.0011860663441962155) + +[fips4844167] +centroid = (0.48229665840728181, -1.7316909699665657) +description = Los Veteranos I CDP, TX +station = ('klrd', 0.0040708114160254577) +zone = ('txz239', 0.0028293128179242249) + +[fips4844168] +centroid = (0.4846977253125429, -1.7356131611281098) +description = Los Veteranos II CDP, TX +station = ('klrd', 0.0039808475183293578) +zone = ('txz239', 0.0017340617682911395) + +[fips4844170] +centroid = (0.57105768135206603, -1.7787960625743684) +description = Los Ybanez city, TX +station = ('kbpg', 0.010814739225671378) +zone = ('txz046', 0.0006016273304671855) + +[fips4844176] +centroid = (0.54465193187352812, -1.6935553861841492) +description = Lott city, TX +station = ('kt35', 0.0057814885608945751) +zone = ('txz160', 0.0016743612276837619) + +[fips4844190010] +centroid = (0.56590957092392102, -1.7409129581215457) +description = Abilene CCD, TX +station = ('kabi', 0.00094673108705481412) +zone = ('txz127', 0.0030068364790590543) + +[fips4844191945] +centroid = (0.56204511525403267, -1.7429112030354466) +description = Jim Ned CCD, TX +station = ('kdys', 0.0037912123661412393) +zone = ('txz127', 0.0017735454767516964) + +[fips4844192535] +centroid = (0.56548191289730476, -1.7455789911569974) +description = Merkel CCD, TX +station = ('kdys', 0.0023455595142852412) +zone = ('txz127', 0.0025085996161900749) + +[fips4844212] +centroid = (0.50812025331381705, -1.682712510752842) +description = Louise CDP, TX +station = ('karm', 0.004640295834790642) +zone = ('txz235', 0.0037412661349532509) + +[fips4844260] +centroid = (0.54328745091761144, -1.6658448634634053) +description = Lovelady city, TX +station = ('kdkr', 0.0031849233883449622) +zone = ('txz163', 0.0033292982112681632) + +[fips48443] +centroid = (0.52765373395604231, -1.7815018814203205) +description = Terrell County, TX +station = ('k6r6', 0.0038547733883861745) +zone = ('txz082', 0.00014122184957014494) + +[fips4844308] +centroid = (0.57891246583749645, -1.6850244087866186) +description = Lowry Crossing city, TX +station = ('ktki', 0.00061446754852761412) +zone = ('txz104', 0.0005173262674184392) + +[fips4844344] +centroid = (0.45709457524738173, -1.7024592531763683) +description = Lozano CDP, TX +station = ('khrl', 0.0017299543923751442) +zone = ('txz255', 0.0013331343543807261) + +[fips4844391140] +centroid = (0.52800082758438649, -1.7800103928547359) +description = East Terrell CCD, TX +station = ('k6r6', 0.0049458871991496147) +zone = ('txz082', 0.0014295214340805538) + +[fips4844394175] +centroid = (0.52577317659360345, -1.7858503168917865) +description = West Terrell CCD, TX +station = ('k6r6', 0.0020517828718421235) +zone = ('txz082', 0.0040935825683340128) + +[fips48445] +centroid = (0.57894716298302606, -1.7861574599335528) +description = Terry County, TX +station = ('kgnc', 0.0097970353505102935) +zone = ('txz040', 7.4653632337147506e-05) + +[fips4844590470] +centroid = (0.57785032826790272, -1.7860828994679074) +description = Brownfield CCD, TX +station = ('kgnc', 0.0088763902776720048) +zone = ('txz040', 0.0011417104361061221) + +[fips4844592495] +centroid = (0.58153669054091761, -1.7860870009916494) +description = Meadow CCD, TX +station = ('klbb', 0.0096781016080824418) +zone = ('txz040', 0.0025446552352775078) + +[fips48447] +centroid = (0.57893813963079332, -1.7314737288345698) +description = Throckmorton County, TX +station = ('kbkd', 0.0091279874587469889) +zone = ('txz099', 0.00014968948419086508) + +[fips4844793910] +centroid = (0.5796622243775682, -1.7321410205674848) +description = Throckmorton CCD, TX +station = ('kbkd', 0.010036084191063841) +zone = ('txz099', 0.00076471312588562927) + +[fips4844794280] +centroid = (0.57660219095992415, -1.7287278023224071) +description = Woodson CCD, TX +station = ('kbkd', 0.0060003624447918453) +zone = ('txz099', 0.0034270039810867974) + +[fips48449] +centroid = (0.57970411227961605, -1.6574830433769783) +description = Titus County, TX +station = ('kosa', 0.002084039157381503) +zone = ('txz109', 3.8337441561149721e-05) + +[fips4844990830] +centroid = (0.57832952586733033, -1.6558168298999765) +description = Cookville CCD, TX +station = ('kosa', 0.001494976891548018) +zone = ('txz109', 0.0019717426457967354) + +[fips4844992665] +centroid = (0.57974882761505209, -1.6572992078468656) +description = Mount Pleasant CCD, TX +station = ('kosa', 0.0021285883193231697) +zone = ('txz109', 0.00013833090735544703) + +[fips4844993825] +centroid = (0.58180255654587387, -1.6579042611386543) +description = Talco CCD, TX +station = ('kosa', 0.0042031653406410432) +zone = ('txz109', 0.0020960697631046596) + +[fips4844994235] +centroid = (0.5785647613439141, -1.6594588957165759) +description = Winfield CCD, TX +station = ('kosa', 0.0019736038324699749) +zone = ('txz109', 0.0020410856406382016) + +[fips4845000] +centroid = (0.58584557685153371, -1.7782579775659788) +description = Lubbock city, TX +station = ('klbb', 0.0020231276845702967) +zone = ('txz035', 0.0012280207302578646) + +[fips4845012] +centroid = (0.57772663678381397, -1.6856403354796476) +description = Lucas city, TX +station = ('ktki', 0.0014325772790375838) +zone = ('txz104', 0.0015139072803346965) + +[fips4845048] +centroid = (0.57247553447650867, -1.7387531480787877) +description = Lueders city, TX +station = ('kabi', 0.0067560306915186849) +zone = ('txz114', 0.0041065090346202645) + +[fips4845072] +centroid = (0.5466429511243257, -1.6533611516424207) +description = Lufkin city, TX +station = ('klfk', 0.0015457330025980217) +zone = ('txz165', 0.0021092084109678995) + +[fips4845096] +centroid = (0.51804421289394942, -1.704256348893977) +description = Luling city, TX +station = ('khyi', 0.0049577830706752559) +zone = ('txz208', 0.0027431516213600156) + +[fips48451] +centroid = (0.54806101368827853, -1.7533814157648679) +description = Tom Green County, TX +station = ('ksjt', 0.0010687071717311906) +zone = ('txz072', 5.0402939302227812e-05) + +[fips4845120] +centroid = (0.52802819434705772, -1.6442537792594192) +description = Lumberton city, TX +station = ('kbmt', 0.0032121361356706938) +zone = ('txz201', 0.0030600440641884506) + +[fips4845191145] +centroid = (0.54772048249792193, -1.7499751788367983) +description = East Tom Green CCD, TX +station = ('ksjt', 0.0035290366865864107) +zone = ('txz072', 0.0029446052781886426) + +[fips4845193405] +centroid = (0.54908238036654566, -1.7528676606462508) +description = San Angelo CCD, TX +station = ('ksjt', 0.002172857513599899) +zone = ('txz072', 0.0010710688884948047) + +[fips4845194180] +centroid = (0.54846118277917577, -1.7561688462066432) +description = West Tom Green CCD, TX +station = ('ksjt', 0.0022236741150678256) +zone = ('txz072', 0.002393625558520779) + +[fips4845228] +centroid = (0.46102168823741663, -1.7067446648085451) +description = Lyford city, TX +station = ('khrl', 0.0040842094115883009) +zone = ('txz254', 0.0014271427601683939) + +[fips4845288] +centroid = (0.51024440627995671, -1.7242951896211172) +description = Lytle city, TX +station = ('kcvb', 0.002018182104242169) +zone = ('txz204', 0.0052417594805898955) + +[fips48453] +centroid = (0.52777906604962799, -1.7050343119547609) +description = Travis County, TX +station = ('kaus', 0.00098780026761866252) +zone = ('txz192', 0.0021507359069283258) + +[fips4845324] +centroid = (0.56493998816456059, -1.6775269804655342) +description = Mabank town, TX +station = ('ktrl', 0.0064694230390448188) +zone = ('txz135', 0.004726979894222526) + +[fips4845384] +centroid = (0.45759937682693608, -1.7147187076417645) +description = McAllen city, TX +station = ('kmfe', 0.00061696166099628209) +zone = ('txz253', 0.0032738806378206464) + +[fips4845390165] +centroid = (0.52777906604962799, -1.7050343119547609) +description = Austin CCD, TX +station = ('kaus', 0.00098780026761866252) +zone = ('txz192', 0.0021507359069283258) + +[fips4845392807] +centroid = (0.53077553457591453, -1.7022400223690255) +description = Northeast Travis CCD, TX +station = ('kedc', 0.00061632580105796067) +zone = ('txz173', 0.0042651749065552441) + +[fips4845392857] +centroid = (0.5319491812314181, -1.7093920500311404) +description = Northwest Travis CCD, TX +station = ('kryw', 0.00057658249324425725) +zone = ('txz192', 0.0034678341441028776) + +[fips4845393688] +centroid = (0.52952315611785339, -1.7106102549424473) +description = Southwest Travis CCD, TX +station = ('kryw', 0.0028685903380967236) +zone = ('txz192', 0.0034482205178425094) + +[fips4845432] +centroid = (0.54336410577835903, -1.7840762595203044) +description = McCamey city, TX +station = ('kfst', 0.011078981666204354) +zone = ('txz069', 0.0048981103409261534) + +[fips48455] +centroid = (0.54257893450776429, -1.6607382220582876) +description = Trinity County, TX +station = ('kdkr', 0.0053513932093198942) +zone = ('txz164', 0.00026690561189298561) + +[fips4845564] +centroid = (0.52846485827261414, -1.6973734859091045) +description = McDade CDP, TX +station = ('kgyb', 0.0045309581766860355) +zone = ('txz193', 0.0031880581993813089) + +[fips4845576] +centroid = (0.51174456913192345, -1.7226352418761304) +description = Macdona CDP, TX +station = ('kskf', 0.0020799962455137085) +zone = ('txz205', 0.0035345583647747834) + +[fips4845590120] +centroid = (0.54385693439924465, -1.658129216625944) +description = Apple Springs CCD, TX +station = ('klfk', 0.0039955631975444753) +zone = ('txz164', 0.0023337852623607526) + +[fips4845591530] +centroid = (0.54129285374184732, -1.6638230042447253) +description = Glendale CCD, TX +station = ('kdkr', 0.0052330762358293601) +zone = ('txz164', 0.0031897620537912163) + +[fips4845591655] +centroid = (0.54202107491894946, -1.6610238277370841) +description = Groveton CCD, TX +station = ('kdkr', 0.0056089212473325479) +zone = ('txz164', 0.00077335548499362207) + +[fips4845593945] +centroid = (0.53954230595538955, -1.6639583196216323) +description = Trinity CCD, TX +station = ('kuts', 0.0046566605716718132) +zone = ('txz164', 0.0043034441977711085) + +[fips4845672] +centroid = (0.54836930864735078, -1.700438825127675) +description = McGregor city, TX +station = ('kpwg', 0.0019993310379964459) +zone = ('txz159', 0.0040904866973293782) + +[fips48457] +centroid = (0.53703046300250434, -1.6472321312680696) +description = Tyler County, TX +station = ('kbpt', 0.0049208858189551136) +zone = ('txz180', 5.2499466096148514e-05) + +[fips4845744] +centroid = (0.57947097119813473, -1.6871745322520282) +description = McKinney city, TX +station = ('ktki', 0.0012752086790937093) +zone = ('txz104', 0.0014155395305685164) + +[fips4845750] +centroid = (0.56367968591169548, -1.7894848079794321) +description = McKinney Acres CDP, TX +station = ('ke11', 0.00060468050825039253) +zone = ('txz050', 0.0015983479754549123) + +[fips4845780] +centroid = (0.61492031872880648, -1.755803095008595) +description = McLean town, TX +station = ('kppa', 0.0087069049270093284) +zone = ('txz014', 0.0042241736180105146) + +[fips4845790785] +centroid = (0.54021914463931286, -1.648333695825466) +description = Colmesneil-Chester CCD, TX +station = ('klfk', 0.006721262296113307) +zone = ('txz180', 0.0033117538898164442) + +[fips4845793710] +centroid = (0.53551757670029054, -1.6443769296914397) +description = Spurger CCD, TX +station = ('kbpt', 0.0021343799268499558) +zone = ('txz180', 0.002860751797951643) + +[fips4845794075] +centroid = (0.53417096791591434, -1.6484412255606813) +description = Warren CCD, TX +station = ('kbpt', 0.0047544395320572716) +zone = ('txz180', 0.0030845467660447325) + +[fips4845794285] +centroid = (0.53691178061336864, -1.6482467958820091) +description = Woodville CCD, TX +station = ('kbpt', 0.0055379319269710696) +zone = ('txz180', 0.00092779623574427723) + +[fips4845804] +centroid = (0.5733507298299213, -1.6823593957385785) +description = McLendon-Chisholm city, TX +station = ('khqz', 0.0027168733960194528) +zone = ('txz120', 0.000855358286003242) + +[fips48459] +centroid = (0.57134885463117624, -1.6570443723227819) +description = Upshur County, TX +station = ('kjxi', 0.00065362644149707667) +zone = ('txz125', 8.2225925284524052e-06) + +[fips4845948] +centroid = (0.51662536493183309, -1.7112530247993718) +description = McQueeney CDP, TX +station = ('kbaz', 0.0020286442759433979) +zone = ('txz207', 0.0015353416363684061) + +[fips4845990280] +centroid = (0.57310793707767638, -1.6582221728619051) +description = Bettie CCD, TX +station = ('kjxi', 0.0025634572822770675) +zone = ('txz125', 0.002014000551725193) + +[fips4845990295] +centroid = (0.5692657343557509, -1.6592345161879394) +description = Big Sandy CCD, TX +station = ('kjxi', 0.0022582489668091766) +zone = ('txz125', 0.0027896560849382862) + +[fips4845991515] +centroid = (0.57101329762918795, -1.6579026379824502) +description = Gilmer CCD, TX +station = ('kjxi', 0.00069313164924100768) +zone = ('txz125', 0.00080262649433817876) + +[fips4845991525] +centroid = (0.56921510235415052, -1.6558227640194334) +description = Gladewater CCD, TX +station = ('kjxi', 0.0018690553232204791) +zone = ('txz125', 0.0023736561388519048) + +[fips4845992920] +centroid = (0.57238606889905141, -1.6540681321625261) +description = Ore City CCD, TX +station = ('kjxi', 0.0031016101053627921) +zone = ('txz125', 0.0027029178367615984) + +[fips4845996] +centroid = (0.54024953082159011, -1.6739328064836096) +description = Madisonville city, TX +station = ('kuts', 0.0060441513429393169) +zone = ('txz176', 0.00035029808984466797) + +[fips4846056] +centroid = (0.52723009018670575, -1.6710593138564189) +description = Magnolia city, TX +station = ('kdwh', 0.0038368785700931738) +zone = ('txz199', 0.0039822452300191831) + +[fips48461] +centroid = (0.54722789822313156, -1.7809691022128564) +description = Upton County, TX +station = ('kmaf', 0.010382753459275374) +zone = ('txz069', 0.00026135844673093393) + +[fips4846192345] +centroid = (0.54709078515709486, -1.7838631199120509) +description = McCamey CCD, TX +station = ('kmaf', 0.010251682530480434) +zone = ('txz069', 0.0024886418620703285) + +[fips4846193195] +centroid = (0.54772248962656167, -1.7795503589704953) +description = Rankin CCD, TX +station = ('kmaf', 0.010255101382972479) +zone = ('txz069', 0.0012480583254270328) + +[fips4846224] +centroid = (0.56153027803127942, -1.6758834911753937) +description = Malakoff city, TX +station = ('kcrs', 0.0060140401990508175) +zone = ('txz135', 0.0025613724942647044) + +[fips4846260] +centroid = (0.55706127521508531, -1.691130809693864) +description = Malone town, TX +station = ('kinj', 0.0041702019286361551) +zone = ('txz145', 0.0037467087684454649) + +[fips48463] +centroid = (0.51226006957979253, -1.7411592066257096) +description = Uvalde County, TX +station = ('kuva', 0.0024449644814515939) +zone = ('txz203', 0.0001226766692103255) + +[fips4846308] +centroid = (0.52596029334270977, -1.7075651789964927) +description = Manchaca CDP, TX +station = ('kaus', 0.0024555454397244265) +zone = ('txz191', 0.0032350473825045033) + +[fips4846393375] +centroid = (0.51379067097391395, -1.7371028869111496) +description = Sabinal CCD, TX +station = ('kuva', 0.0051338992697149022) +zone = ('txz203', 0.0038204862589106504) + +[fips4846393980] +centroid = (0.51142449320040029, -1.742354565177108) +description = Uvalde CCD, TX +station = ('kuva', 0.0020654768287796674) +zone = ('txz203', 0.0014023429694094529) + +[fips4846440] +centroid = (0.52978427482724433, -1.7021663171147137) +description = Manor city, TX +station = ('kedc', 0.0010264425395793177) +zone = ('txz192', 0.0038555447134663982) + +[fips4846452] +centroid = (0.56843864027652347, -1.695073037235221) +description = Mansfield city, TX +station = ('kgky', 0.0017287987442630307) +zone = ('txz118', 0.0043218605976368335) + +[fips4846492] +centroid = (0.45960898383426735, -1.7226686474780135) +description = Manuel Garcia CDP, TX +station = ('kmfe', 0.0075403674431432817) +zone = ('txz252', 0.0040282782998150492) + +[fips4846494] +centroid = (0.45924230761171592, -1.722487796460922) +description = Manuel Garcia II CDP, TX +station = ('kmfe', 0.0072670092014589594) +zone = ('txz252', 0.0044156279811055641) + +[fips48465] +centroid = (0.52159096628009716, -1.7653420000491524) +description = Val Verde County, TX +station = ('kdrt', 0.0096955253246059029) +zone = ('txz183', 0.00015979585225311119) + +[fips4846500] +centroid = (0.51454856274829996, -1.6643704442179055) +description = Manvel city, TX +station = ('kaxh', 0.001869234156187497) +zone = ('txz237', 0.0052610989502371681) + +[fips4846572] +centroid = (0.52745357959742356, -1.8018185960176705) +description = Marathon CDP, TX +station = ('ke38', 0.0073101881216982604) +zone = ('txz081', 0.0085888638167504073) + +[fips4846584] +centroid = (0.53369477228280027, -1.7151250726515064) +description = Marble Falls city, TX +station = ('kdzb', 0.0016026211819690779) +zone = ('txz172', 0.0038884154542084349) + +[fips4846590995] +centroid = (0.51285716417019223, -1.7604805599506475) +description = Del Rio CCD, TX +station = ('kdrt', 0.0008018200307070611) +zone = ('txz202', 0.0068725003733504106) + +[fips4846591000] +centroid = (0.52184550509820793, -1.7612393243896596) +description = Del Rio Northeast CCD, TX +station = ('kdrt', 0.0093008015552626805) +zone = ('txz183', 0.0036349948171514588) + +[fips4846591005] +centroid = (0.52296824049943091, -1.769942269078389) +description = Del Rio Northwest CCD, TX +station = ('kdrt', 0.012832357754535617) +zone = ('txz183', 0.0041013531807973756) + +[fips4846620] +centroid = (0.52902196736985074, -1.8155863116627626) +description = Marfa city, TX +station = ('kmrf', 0.00098523795699194741) +zone = ('txz080', 0.0042201503540135084) + +[fips4846668] +centroid = (0.57898763716837987, -1.650078449118807) +description = Marietta town, TX +station = ('kosa', 0.0062722658347182467) +zone = ('txz111', 0.0029687547299587238) + +[fips4846692] +centroid = (0.51613867986991446, -1.712917458040536) +description = Marion city, TX +station = ('krnd', 0.0022388186500063357) +zone = ('txz207', 0.0029586305771440529) + +[fips48467] +centroid = (0.56826084358562279, -1.6726605661786611) +description = Van Zandt County, TX +station = ('kjdd', 0.0059300213905776255) +zone = ('txz122', 8.2953543808146087e-05) + +[fips4846716] +centroid = (0.50549182236689871, -1.6766322723310843) +description = Markham CDP, TX +station = ('kbyy', 0.0030688954948545049) +zone = ('txz236', 0.002068220130325931) + +[fips4846740] +centroid = (0.54642831053291541, -1.6911048915544717) +description = Marlin city, TX +station = ('kcnw', 0.0063637328025372532) +zone = ('txz160', 0.0011475735355314461) + +[fips4846752] +centroid = (0.54518003359859657, -1.680005609802754) +description = Marquez city, TX +station = ('klhb', 0.0083863550749700595) +zone = ('txz162', 0.0040396498526119855) + +[fips4846776] +centroid = (0.56791546037994556, -1.6467735285538156) +description = Marshall city, TX +station = ('kasl', 0.00085090423611502389) +zone = ('txz138', 0.00031077558541946448) + +[fips4846790270] +centroid = (0.5657085089940912, -1.6697260044809428) +description = Ben Wheeler-Edom CCD, TX +station = ('ktyr', 0.0041025632315441832) +zone = ('txz122', 0.0036165941164262041) + +[fips4846790620] +centroid = (0.5681350227998464, -1.6733856457631093) +description = Canton CCD, TX +station = ('kjdd', 0.0065161769946244907) +zone = ('txz122', 0.00064428774235127855) + +[fips4846790654] +centroid = (0.56613637646021764, -1.6748608853133575) +description = Cedar Creek Lake CCD, TX +station = ('ktrl', 0.0066184661357003962) +zone = ('txz122', 0.0028827732213429135) + +[fips4846791165] +centroid = (0.57083687974839625, -1.6733088687293143) +description = Edgewood CCD, TX +station = ('kjdd', 0.0055720628640248621) +zone = ('txz122', 0.0025518331376701928) + +[fips4846791620] +centroid = (0.56989091129381531, -1.6708234500613044) +description = Grand Saline CCD, TX +station = ('kjdd', 0.0037858884589398851) +zone = ('txz122', 0.0021893982779758571) + +[fips4846794000] +centroid = (0.56780150783308281, -1.6697754845652368) +description = Van CCD, TX +station = ('kjdd', 0.0044652851227487203) +zone = ('txz122', 0.0024932385665043977) + +[fips4846794225] +centroid = (0.57102343799214195, -1.6754922581702665) +description = Wills Point CCD, TX +station = ('ktrl', 0.0039358805102389293) +zone = ('txz122', 0.0035859020432608296) + +[fips4846824] +centroid = (0.55051382960586126, -1.6899898879618351) +description = Mart city, TX +station = ('kcnw', 0.0039654820790147515) +zone = ('txz161', 0.0037010421443467796) + +[fips4846848] +centroid = (0.5208543675225854, -1.7076345907408446) +description = Martindale city, TX +station = ('khyi', 0.00096172479006888462) +zone = ('txz208', 0.0033359180621232243) + +[fips4846854] +centroid = (0.46115361767557489, -1.7235634254256336) +description = Martinez CDP, TX +station = ('kmfe', 0.0089044877178135161) +zone = ('txz252', 0.0024529774809121906) + +[fips48469] +centroid = (0.50259146912251951, -1.6924666847033403) +description = Victoria County, TX +station = ('kvct', 0.0013566427196909131) +zone = ('txz234', 3.1336401529589716e-06) + +[fips4846968] +centroid = (0.5366488293082633, -1.731865834504323) +description = Mason city, TX +station = ('kbbd', 0.0076641275740761735) +zone = ('txz170', 0.00052516984368185943) + +[fips4846994035] +centroid = (0.50435978436076268, -1.6925440726023737) +description = Victoria CCD, TX +station = ('kvct', 0.00084319916380157266) +zone = ('txz234', 0.0017689751147978254) + +[fips4846994040] +centroid = (0.50156369708589765, -1.6899350497167374) +description = Victoria South CCD, TX +station = ('kpkv', 0.00265688276623469) +zone = ('txz234', 0.0024486587540861965) + +[fips4846994045] +centroid = (0.50112155282648996, -1.6943134350381681) +description = Victoria West CCD, TX +station = ('kvct', 0.0034788753302682214) +zone = ('txz234', 0.0021848224335987605) + +[fips4847004] +centroid = (0.59367521114244293, -1.7596600457626999) +description = Matador town, TX +station = ('kcds', 0.010654201162583078) +zone = ('txz031', 0.001190621975731836) + +[fips4847016] +centroid = (0.50084755358721933, -1.6749331768509752) +description = Matagorda CDP, TX +station = ('kpsx', 0.0043526161316677454) +zone = ('txz236', 0.0029747166422660468) + +[fips4847040] +centroid = (0.49027918354066569, -1.7072293078352392) +description = Mathis city, TX +station = ('kbea', 0.0047145574328354232) +zone = ('txz244', 0.0048085595624965003) + +[fips4847088] +centroid = (0.58171635473411787, -1.6466508668139856) +description = Maud city, TX +station = ('ktxk', 0.0056874944426197381) +zone = ('txz097', 0.002305509786515871) + +[fips48471] +centroid = (0.53656814273694353, -1.6680092113622187) +description = Walker County, TX +station = ('kuts', 0.0002349888869824784) +zone = ('txz177', 7.9363162068096864e-05) + +[fips4847100] +centroid = (0.52763127156856915, -1.6383663648134215) +description = Mauriceville CDP, TX +station = ('korg', 0.0030052400732053994) +zone = ('txz216', 0.0018359624109863569) + +[fips4847191860] +centroid = (0.53590399259668209, -1.669679351830037) +description = Huntsville CCD, TX +station = ('kuts', 0.0014623456913373852) +zone = ('txz177', 0.0015212933485921978) + +[fips4847192755] +centroid = (0.53434972453790364, -1.6655799573895376) +description = New Waverly CCD, TX +station = ('kuts', 0.0032740805526855188) +zone = ('txz177', 0.0030201144935620341) + +[fips4847193255] +centroid = (0.53860619861108239, -1.6664145389312564) +description = Riverside CCD, TX +station = ('kuts', 0.0024790006630941823) +zone = ('txz177', 0.0025341970925862175) + +[fips4847268] +centroid = (0.56393364877115315, -1.6930850897639069) +description = Maypearl city, TX +station = ('kjwy', 0.0028852181725733282) +zone = ('txz134', 0.0031957518165791742) + +[fips48473] +centroid = (0.5238357564041346, -1.6752037028850344) +description = Waller County, TX +station = ('ktme', 0.0037639482916295521) +zone = ('txz212', 9.5016854487618913e-05) + +[fips4847316] +centroid = (0.58185306637442658, -1.783828719472494) +description = Meadow town, TX +station = ('klbb', 0.0080649111578094176) +zone = ('txz040', 0.0034276998867640417) + +[fips4847330] +centroid = (0.53344632466377884, -1.7155726972447651) +description = Meadowlakes city, TX +station = ('kdzb', 0.0011441703817281058) +zone = ('txz172', 0.0042609480150713535) + +[fips4847337] +centroid = (0.51750611043226691, -1.6683060569613977) +description = Meadows Place city, TX +station = ('ksgr', 0.0011286172284820793) +zone = ('txz227', 0.003525523114758808) + +[fips4847390465] +centroid = (0.52095395600970418, -1.6751164364224347) +description = Brookshire CCD, TX +station = ('ktme', 0.001346650005056563) +zone = ('txz212', 0.0028430739044355744) + +[fips4847391770] +centroid = (0.5252224554014292, -1.6767765237937617) +description = Hempstead CCD, TX +station = ('k11r', 0.005058590829397842) +zone = ('txz212', 0.0019170332645112081) + +[fips4847393137] +centroid = (0.52491396845613914, -1.6744036439559202) +description = Prairie View-Waller CCD, TX +station = ('ktme', 0.004663675565129425) +zone = ('txz212', 0.0013644162011411112) + +[fips4847406] +centroid = (0.47011232291289168, -1.732495968177463) +description = Medina CDP, TX +station = ('kapy', 0.00064492791615358355) +zone = ('txz248', 0.0018803724040223578) + +[fips4847460] +centroid = (0.58387146984118787, -1.7266437221158932) +description = Megargel town, TX +station = ('krph', 0.0081063072069333976) +zone = ('txz089', 0.0045112793992444318) + +[fips4847496] +centroid = (0.58101443566884337, -1.6852191177179712) +description = Melissa city, TX +station = ('ktki', 0.0018985944602003309) +zone = ('txz104', 0.0017942101794545832) + +[fips48475] +centroid = (0.550006811458157, -1.7995236974908082) +description = Ward County, TX +station = ('kink', 0.0049231756415393877) +zone = ('txz067', 7.4227649814004166e-05) + +[fips4847568] +centroid = (0.54452904324089513, -1.7380218376689096) +description = Melvin town, TX +station = ('kbbd', 0.0038594437902462965) +zone = ('txz154', 0.0034906594396427325) + +[fips4847590205] +centroid = (0.5502102295824769, -1.8027826111767171) +description = Barstow-Pyote CCD, TX +station = ('kpeq', 0.0040976153156102478) +zone = ('txz067', 0.0028310341846520689) + +[fips4847591615] +centroid = (0.54733986109464705, -1.7951167760361075) +description = Grandfalls CCD, TX +station = ('kfst', 0.007801136329084188) +zone = ('txz067', 0.004540994533905658) + +[fips4847592605] +centroid = (0.55040928438366687, -1.7969317613785489) +description = Monahans CCD, TX +station = ('kink', 0.0056293328339328264) +zone = ('txz067', 0.002218318922666964) + +[fips4847616] +centroid = (0.60609584676426054, -1.7547829151542196) +description = Memphis city, TX +station = ('kcds', 0.0063247086890894115) +zone = ('txz025', 0.0039629327723727297) + +[fips4847628] +centroid = (0.53962859503360816, -1.7415537208498302) +description = Menard city, TX +station = ('kjct', 0.0070169288796025709) +zone = ('txz168', 0.00074538762728803079) + +[fips4847676] +centroid = (0.55339919047196584, -1.8081414701120406) +description = Mentone CDP, TX +station = ('kpeq', 0.0058261230984452605) +zone = ('txz059', 0.0024900118891497398) + +[fips48477] +centroid = (0.52735254248702568, -1.6826766791432985) +description = Washington County, TX +station = ('k11r', 0.00054858821282662105) +zone = ('txz197', 0.00010112745698695642) + +[fips4847700] +centroid = (0.45646576802447325, -1.7089245286844086) +description = Mercedes city, TX +station = ('kt65', 0.0010127332184741201) +zone = ('txz255', 0.0052790409585474303) + +[fips4847760] +centroid = (0.55722399226124875, -1.7042982717026098) +description = Meridian city, TX +station = ('kcpt', 0.008104899832344855) +zone = ('txz144', 0.00050684742126288313) + +[fips4847790435] +centroid = (0.5264672591305366, -1.6826014379992451) +description = Brenham CCD, TX +station = ('k11r', 0.0010658659251834867) +zone = ('txz197', 0.000875972154292045) + +[fips4847790550] +centroid = (0.52665769200522172, -1.6862324035218017) +description = Burton CCD, TX +station = ('k11r', 0.003697114079756765) +zone = ('txz197', 0.0032469690625533628) + +[fips4847791490] +centroid = (0.52867562423308501, -1.6826790004312036) +description = Gay Hill-Independence CCD, TX +station = ('k11r', 0.0013701499576442447) +zone = ('txz197', 0.0013370593216409227) + +[fips4847794080] +centroid = (0.5275745658211719, -1.6792606160115402) +description = Washington-Chappell Hill CCD, TX +station = ('k11r', 0.0024122317362696311) +zone = ('txz197', 0.0028605889102139236) + +[fips4847796] +centroid = (0.56670374809345592, -1.7455229660880085) +description = Merkel town, TX +station = ('kdys', 0.0024307973092909914) +zone = ('txz127', 0.0034353690623630541) + +[fips4847820] +centroid = (0.55953548886929749, -1.6911222401272363) +description = Mertens town, TX +station = ('kinj', 0.0030329589776159193) +zone = ('txz145', 0.0037214037866948936) + +[fips4847832] +centroid = (0.54562451659920197, -1.7596550541210392) +description = Mertzon city, TX +station = ('ksjt', 0.0050245414569610415) +zone = ('txz071', 0.0025188653499087291) + +[fips4847892] +centroid = (0.57183798315404766, -1.6858558661889764) +description = Mesquite city, TX +station = ('khqz', 0.00095902887469168161) +zone = ('txz119', 0.0027224946463518286) + +[fips4847898] +centroid = (0.46080940384049651, -1.727543264812371) +description = Mesquite CDP, TX +station = ('kapy', 0.010757843813333223) +zone = ('txz252', 0.0047033573064455695) + +[fips48479] +centroid = (0.48468812600165695, -1.7335769203963929) +description = Webb County, TX +station = ('klrd', 0.004475723459061799) +zone = ('txz239', 0.00018238559737760406) + +[fips4847916] +centroid = (0.55293221017730221, -1.6839483085830091) +description = Mexia city, TX +station = ('kcrs', 0.0060478125472059304) +zone = ('txz161', 0.0027678696480802393) + +[fips4847988] +centroid = (0.62294834459578974, -1.756526673609887) +description = Miami city, TX +station = ('khhf', 0.004983358818096746) +zone = ('txz009', 0.0035259048710091691) + +[fips4847992145] +centroid = (0.48073172638677358, -1.7363369491689118) +description = Laredo CCD, TX +station = ('klrd', 0.00036199919428251656) +zone = ('txz239', 0.0044697478503348664) + +[fips4847992146] +centroid = (0.48725632563608906, -1.7357004101374169) +description = Laredo North-Webb CCD, TX +station = ('klrd', 0.0065327501739291206) +zone = ('txz239', 0.0032737622332582117) + +[fips4847992147] +centroid = (0.4794819310160055, -1.7294407169619692) +description = Laredo South-El Cenizo CCD, TX +station = ('klrd', 0.0058875962686760243) +zone = ('txz239', 0.0062775965063282448) + +[fips4848072] +centroid = (0.55902775513659986, -1.7821504108637762) +description = Midland city, TX +station = ('kmdd', 0.00017292502257717907) +zone = ('txz062', 0.0030343484328608488) + +[fips4848096] +centroid = (0.56670866992194657, -1.6926789691002604) +description = Midlothian city, TX +station = ('kjwy', 0.0010764348339285929) +zone = ('txz134', 0.0034999261979199964) + +[fips48481] +centroid = (0.51100589343260183, -1.6795246668740744) +description = Wharton County, TX +station = ('karm', 0.0012254735167201514) +zone = ('txz226', 0.00011576473245091594) + +[fips4848180] +centroid = (0.54149049482634315, -1.6712662051859501) +description = Midway city, TX +station = ('kuts', 0.0054574724946035132) +zone = ('txz176', 0.0027736950514844565) + +[fips4848190368] +centroid = (0.51033336571193089, -1.6752670408835892) +description = Boling-Newgulf CCD, TX +station = ('karm', 0.0025769765919401058) +zone = ('txz226', 0.0036595415770224455) + +[fips4848191112] +centroid = (0.5144326728859675, -1.678697886954112) +description = East Bernard CCD, TX +station = ('karm', 0.0038748538592311456) +zone = ('txz226', 0.0034898076739770241) + +[fips4848191180] +centroid = (0.5095389791028857, -1.6793258389656871) +description = El Campo CCD, TX +station = ('karm', 0.0014285181387729351) +zone = ('txz226', 0.001457933406673598) + +[fips4848192305] +centroid = (0.50911584147903222, -1.6830795534945364) +description = Louise CCD, TX +station = ('karm', 0.0044984989098839096) +zone = ('txz226', 0.0037266932514823667) + +[fips4848194185] +centroid = (0.51203062859632531, -1.6768102610082027) +description = Wharton CCD, TX +station = ('karm', 0.0018929450001485136) +zone = ('txz226', 0.0024781174670688235) + +[fips4848272] +centroid = (0.45706706885837028, -1.7107250976072286) +description = Midway North CDP, TX +station = ('kt65', 0.00071728432957575698) +zone = ('txz253', 0.0044548756340288126) + +[fips4848280] +centroid = (0.45652011757738031, -1.7107866204633613) +description = Midway South CDP, TX +station = ('kt65', 0.00083227568656868791) +zone = ('txz253', 0.0048839833659202339) + +[fips48483] +centroid = (0.6177172786682974, -1.7497468025041749) +description = Wheeler County, TX +station = ('khhf', 0.0090976824385266258) +zone = ('txz015', 0.00028075538534175573) + +[fips4848315] +centroid = (0.46097657147625259, -1.7265072024618022) +description = Miguel Barrera CDP, TX +station = ('kapy', 0.011003179321688629) +zone = ('txz252', 0.0038794094445986295) + +[fips4848318] +centroid = (0.45927745854285101, -1.7214812825345893) +description = Mikes CDP, TX +station = ('kmfe', 0.0064274519969681919) +zone = ('txz252', 0.0046187076995691479) + +[fips4848320] +centroid = (0.45767618876731631, -1.7097254777314412) +description = Mila Doce CDP, TX +station = ('kt65', 0.00081835671414206602) +zone = ('txz253', 0.0046011482016080343) + +[fips4848324] +centroid = (0.54888816012738373, -1.6368801122355934) +description = Milam CDP, TX +station = ('kaqv', 0.0062812425525371092) +zone = ('txz167', 0.0020879979294758017) + +[fips4848336] +centroid = (0.53590526668703609, -1.6903875786851945) +description = Milano city, TX +station = ('kt35', 0.0035260634417161318) +zone = ('txz174', 0.0023481674511325909) + +[fips4848372] +centroid = (0.55931311646930093, -1.6811866566542859) +description = Mildred town, TX +station = ('kcrs', 0.0010073058081959503) +zone = ('txz146', 0.0021821063331561698) + +[fips4848393545] +centroid = (0.61549112866067124, -1.7509946256528881) +description = Shamrock CCD, TX +station = ('khhf', 0.011133629067606027) +zone = ('txz015', 0.0025033016281742551) + +[fips4848394190] +centroid = (0.61898492875731348, -1.7496415067904019) +description = Wheeler CCD, TX +station = ('khhf', 0.0078918905006629646) +zone = ('txz015', 0.0011611548701735599) + +[fips4848396] +centroid = (0.55152242047400379, -1.7485487212391433) +description = Miles city, TX +station = ('ksjt', 0.0064097726626369533) +zone = ('txz066', 0.0050835685419759174) + +[fips4848408] +centroid = (0.56062604039911368, -1.6920968843414279) +description = Milford town, TX +station = ('kinj', 0.0022761720638511686) +zone = ('txz145', 0.0035342550342537552) + +[fips4848478] +centroid = (0.57866885278050306, -1.6600728327342573) +description = Miller's Cove town, TX +station = ('kosa', 0.0024797428949485719) +zone = ('txz108', 0.0015493633779664984) + +[fips48485] +centroid = (0.59325666373452213, -1.7229340771506569) +description = Wichita County, TX +station = ('ksps', 0.0031411115006758123) +zone = ('txz086', 0.00020483574592404307) + +[fips4848516] +centroid = (0.53174433193711146, -1.6790627829408264) +description = Millican town, TX +station = ('kcll', 0.0031909993935992078) +zone = ('txz196', 0.0037052327492852273) + +[fips4848564] +centroid = (0.5715937592318161, -1.7106228387663542) +description = Millsap town, TX +station = ('kmwl', 0.00099826819934599725) +zone = ('txz117', 0.0030671158490976837) + +[fips4848590525] +centroid = (0.59496562032490485, -1.7209890996855268) +description = Burkburnett CCD, TX +station = ('ksps', 0.0023930780024493297) +zone = ('txz086', 0.0022602658040123992) + +[fips4848591195] +centroid = (0.59344378048362845, -1.7254269658278654) +description = Electra CCD, TX +station = ('ksps', 0.0052148572932444034) +zone = ('txz086', 0.0022771740106079094) + +[fips4848591880] +centroid = (0.59325666373452213, -1.7229340771506569) +description = Iowa Park CCD, TX +station = ('ksps', 0.0031411115006758123) +zone = ('txz086', 0.00020483574592404307) + +[fips4848594215] +centroid = (0.59217403599951002, -1.7200223443595548) +description = Wichita Falls CCD, TX +station = ('ksps', 0.0011921580151636093) +zone = ('txz086', 0.0024443880041291853) + +[fips4848648] +centroid = (0.56999968021279956, -1.6665173562774913) +description = Mineola city, TX +station = ('kjdd', 0.0014656499088197147) +zone = ('txz124', 0.0026896038972434558) + +[fips4848684] +centroid = (0.57287785032238603, -1.7117979514984296) +description = Mineral Wells city, TX +station = ('kmwl', 0.00072298997858266808) +zone = ('txz116', 0.0036487247838194866) + +[fips48487] +centroid = (0.59489407927886562, -1.7321073357129213) +description = Wilbarger County, TX +station = ('kf05', 0.0025255532937289845) +zone = ('txz085', 7.6537832696456495e-05) + +[fips4848720] +centroid = (0.56786643408125703, -1.7178380648006837) +description = Mingus city, TX +station = ('ksep', 0.0066186676758819268) +zone = ('txz116', 0.0041264147264110105) + +[fips4848750] +centroid = (0.4605541668906849, -1.7256651334575925) +description = Mi Ranchito Estate CDP, TX +station = ('kmfe', 0.010386562397859395) +zone = ('txz252', 0.0037009428671522914) + +[fips4848756] +centroid = (0.47892000481003344, -1.7278867979690411) +description = Mirando City CDP, TX +station = ('khbv', 0.0045420102256518574) +zone = ('txz239', 0.0075891999145085067) + +[fips4848768] +centroid = (0.45732230580818195, -1.7160335514337541) +description = Mission city, TX +station = ('kmfe', 0.001169057393097257) +zone = ('txz253', 0.0040383480461298714) + +[fips4848772] +centroid = (0.51825270992639261, -1.669692581425767) +description = Mission Bend CDP, TX +station = ('ksgr', 0.0013670106843740155) +zone = ('txz227', 0.0033062718731048288) + +[fips4848791290] +centroid = (0.59816540225575621, -1.7338844648638869) +description = Fargo-Odell CCD, TX +station = ('kf05', 0.0011969728310322477) +zone = ('txz085', 0.003662243984105207) + +[fips4848791730] +centroid = (0.59388325438928058, -1.7290894345434202) +description = Harrold-Oklaunion CCD, TX +station = ('kf05', 0.0046449826223739742) +zone = ('txz085', 0.0026507403621950512) + +[fips4848792240] +centroid = (0.59290831346911665, -1.7341287411459962) +description = Lockett CCD, TX +station = ('kf05', 0.0045695010645000382) +zone = ('txz085', 0.002555985384235755) + +[fips4848794030] +centroid = (0.59582170432300807, -1.7331551441293562) +description = Vernon CCD, TX +station = ('kf05', 0.0015510295674979265) +zone = ('txz085', 0.0013385602129071927) + +[fips4848804] +centroid = (0.51600931606575662, -1.6674557150965335) +description = Missouri City city, TX +station = ('kaxh', 0.0013065483271282403) +zone = ('txz227', 0.0035915421109792441) + +[fips4848852] +centroid = (0.62017986842969142, -1.7530317215959383) +description = Mobeetie city, TX +station = ('khhf', 0.0064200879353032599) +zone = ('txz015', 0.0033600942502710982) + +[fips4848858] +centroid = (0.57461253306594318, -1.6826916366149882) +description = Mobile City city, TX +station = ('khqz', 0.0035328791887147479) +zone = ('txz120', 0.00044048125775963964) + +[fips48489] +centroid = (0.46218224492353027, -1.7031660068036711) +description = Willacy County, TX +station = ('khrl', 0.004728359268488848) +zone = ('txz256', 0.0020934882202432981) + +[fips4848936] +centroid = (0.5527774518325278, -1.7991387476709884) +description = Monahans city, TX +station = ('kink', 0.0026080837000518223) +zone = ('txz067', 0.002847489425009779) + +[fips4848992155] +centroid = (0.46263484370515745, -1.7085789185859288) +description = Lasara CCD, TX +station = ('kebg', 0.0038443431358992728) +zone = ('txz254', 0.0028337458407503022) + +[fips4848992335] +centroid = (0.46084767891099282, -1.7056669763553163) +description = Lyford CCD, TX +station = ('khrl', 0.0034975331213912848) +zone = ('txz254', 0.0010886473970948246) + +[fips4848993205] +centroid = (0.46225638651015499, -1.7063548978799901) +description = Raymondville CCD, TX +station = ('khrl', 0.0050332379666883321) +zone = ('txz254', 0.00082216911776885411) + +[fips4848993435] +centroid = (0.46259026799606151, -1.7009445342784399) +description = San Perlita CCD, TX +station = ('khrl', 0.0058606060459337091) +zone = ('txz256', 0.00034863432215495789) + +[fips4848993495] +centroid = (0.45974246661545987, -1.7051532735965769) +description = Sebastian CCD, TX +station = ('khrl', 0.0023017992156360361) +zone = ('txz254', 0.0022087341514673287) + +[fips4849032] +centroid = (0.58756982252616385, -1.705552395489923) +description = Montague CDP, TX +station = ('k0f2', 0.0015691383683706622) +zone = ('txz091', 0.00018956822745334542) + +[fips4849068] +centroid = (0.52102696313231511, -1.6559942949783195) +description = Mont Belvieu city, TX +station = ('kefd', 0.0061746713540756703) +zone = ('txz214', 0.0045941107693806636) + +[fips4849080] +centroid = (0.46031964699909439, -1.7099466109476689) +description = Monte Alto CDP, TX +station = ('kebg', 0.002718942108902069) +zone = ('txz253', 0.00328140256272841) + +[fips48491] +centroid = (0.53492648604251769, -1.7035298206862493) +description = Williamson County, TX +station = ('kgtu', 0.0013186896834801072) +zone = ('txz173', 6.6123252612285233e-05) + +[fips4849128] +centroid = (0.53043043062291773, -1.670212951342249) +description = Montgomery city, TX +station = ('kcxo', 0.0042702162042339616) +zone = ('txz199', 0.0033164636338276527) + +[fips4849190657] +centroid = (0.53399475947463293, -1.708562547397545) +description = Cedar Park-Liberty Hill CCD, TX +station = ('kryw', 0.0020276911566974101) +zone = ('txz173', 0.0044893549720879397) + +[fips4849191325] +centroid = (0.53742419182846168, -1.7073440283269725) +description = Florence CCD, TX +station = ('kgtu', 0.0028344787385271826) +zone = ('txz173', 0.0041827828985052393) + +[fips4849191630] +centroid = (0.53631676296477881, -1.7004919005902279) +description = Granger CCD, TX +station = ('kgtu', 0.0038683136840282364) +zone = ('txz173', 0.0029107765840064291) + +[fips4849191915] +centroid = (0.53679795023955368, -1.7034013295467174) +description = Jarrell CCD, TX +station = ('kgtu', 0.0018084527357378531) +zone = ('txz173', 0.001888266336719192) + +[fips4849193343] +centroid = (0.5339525748666123, -1.7055106821208001) +description = Round Rock-Georgetown CCD, TX +station = ('kgtu', 0.0016592234634376869) +zone = ('txz173', 0.0020113877757216023) + +[fips4849193845] +centroid = (0.53325974896674067, -1.6997451091098845) +description = Taylor CCD, TX +station = ('kedc', 0.0038284343020274177) +zone = ('txz173', 0.0035948032231523678) + +[fips4849200] +centroid = (0.5464390443078152, -1.699245770410889) +description = Moody city, TX +station = ('ktpl', 0.0028338318568081784) +zone = ('txz159', 0.0048602239847600065) + +[fips4849224] +centroid = (0.50715613343501542, -1.7279771885710018) +description = Moore CDP, TX +station = ('kcvb', 0.0054657980529389839) +zone = ('txz219', 0.0036686350884000216) + +[fips4849272] +centroid = (0.56183117279432326, -1.6680179903683561) +description = Moore Station city, TX +station = ('ktyr', 0.0037506097953171613) +zone = ('txz135', 0.004202421993037983) + +[fips48493] +centroid = (0.50918764432445918, -1.7119218873286135) +description = Wilson County, TX +station = ('kssf', 0.0064281960133091278) +zone = ('txz221', 1.1254885619684917e-05) + +[fips4849300] +centroid = (0.4610161031838102, -1.727464445743351) +description = Moraida CDP, TX +station = ('kapy', 0.010595889621101242) +zone = ('txz252', 0.0045256189292314794) + +[fips4849314] +centroid = (0.46753209795991335, -1.7298776601402059) +description = Morales-Sanchez CDP, TX +station = ('kapy', 0.0038170720305879926) +zone = ('txz248', 0.0038142179286258472) + +[fips4849320] +centroid = (0.56805639571704414, -1.7307817930526168) +description = Moran city, TX +station = ('kbkd', 0.0050603790216485443) +zone = ('txz114', 0.0042961125795758651) + +[fips4849356] +centroid = (0.55878349630778335, -1.7035476928577897) +description = Morgan city, TX +station = ('kcpt', 0.0064206710603612049) +zone = ('txz144', 0.0020592886747007075) + +[fips4849359] +centroid = (0.48878802658763926, -1.7026296671245331) +description = Morgan Farm CDP, TX +station = ('kcrp', 0.0042068091194808572) +zone = ('txz244', 0.00053916867979539828) + +[fips4849380] +centroid = (0.51795380483869602, -1.6581611386979629) +description = Morgan's Point city, TX +station = ('kefd', 0.0027844511093336071) +zone = ('txz238', 0.0049686340617444147) + +[fips4849391330] +centroid = (0.50917684073638947, -1.7141593470697927) +description = Floresville CCD, TX +station = ('kssf', 0.0047492865152093848) +zone = ('txz221', 0.0019429559584361383) + +[fips4849392] +centroid = (0.54370755166856655, -1.7009773813749627) +description = Morgan's Point Resort city, TX +station = ('ktpl', 0.00087944713460687827) +zone = ('txz158', 0.0020183740756955972) + +[fips4849392160] +centroid = (0.51191369153644173, -1.7119371065996909) +description = La Vernia CCD, TX +station = ('krnd', 0.0046325631576074463) +zone = ('txz221', 0.0027295914723466479) + +[fips4849393125] +centroid = (0.50670936405308986, -1.7121485183319849) +description = Poth CCD, TX +station = ('kpez', 0.0065874231610634692) +zone = ('txz221', 0.0024818170936074715) + +[fips4849393755] +centroid = (0.51011561843445208, -1.7088058812018581) +description = Stockdale CCD, TX +station = ('krnd', 0.0078225051744888648) +zone = ('txz221', 0.0028852014372223902) + +[fips4849411] +centroid = (0.55090965282692106, -1.8536961518387118) +description = Morning Glory CDP, TX +station = ('mmcs', 0.0035433578978519187) +zone = ('txz419', 0.004654762320231022) + +[fips4849440] +centroid = (0.62946974989257409, -1.7711064560493468) +description = Morse CDP, TX +station = ('kbgd', 0.0064791737014727796) +zone = ('txz003', 0.0040751128853391116) + +[fips4849464] +centroid = (0.58860916609572655, -1.7934865512482823) +description = Morton city, TX +station = ('kcvn', 0.013223772080259152) +zone = ('txz033', 0.002335050852561975) + +[fips48495] +centroid = (0.55556301477200332, -1.7986662695891811) +description = Winkler County, TX +station = ('kink', 0.0022949876856260499) +zone = ('txz060', 0.00034428346056273489) + +[fips4849560] +centroid = (0.51613236177802224, -1.6955271893598824) +description = Moulton town, TX +station = ('k3t5', 0.0065750659009267427) +zone = ('txz225', 0.0046434257955332335) + +[fips4849592010] +centroid = (0.55682069903099052, -1.7973604142428388) +description = Kermit CCD, TX +station = ('kink', 0.0038631470313149879) +zone = ('txz060', 0.0013631527667380076) + +[fips4849594240] +centroid = (0.55383588930410732, -1.8008491528846502) +description = Wink CCD, TX +station = ('kink', 0.00093136756137423594) +zone = ('txz060', 0.0028448180738538565) + +[fips4849600] +centroid = (0.52428277013215552, -1.7085291417956618) +description = Mountain City city, TX +station = ('khyi', 0.0025729092587518398) +zone = ('txz191', 0.0021348212569944082) + +[fips4849692] +centroid = (0.55425183617144258, -1.6909054353275537) +description = Mount Calm city, TX +station = ('kcnw', 0.0034546432068110456) +zone = ('txz145', 0.0055263008080884213) + +[fips48497] +centroid = (0.57978258228278579, -1.7043837753826652) +description = Wise County, TX +station = ('klud', 0.0012369574983168662) +zone = ('txz102', 5.607287950334102e-05) + +[fips4849728] +centroid = (0.55696278628539531, -1.6525260290486339) +description = Mount Enterprise city, TX +station = ('krfi', 0.0046916833744967976) +zone = ('txz150', 0.0036166563718696637) + +[fips4849790060] +centroid = (0.58260387211204956, -1.7044038990289405) +description = Alvord CCD, TX +station = ('klud', 0.0024581802220889448) +zone = ('txz102', 0.0028770739018804917) + +[fips4849790395] +centroid = (0.57706035734186512, -1.7025708495287408) +description = Boyd-Rhome CCD, TX +station = ('klud', 0.0033686627570747255) +zone = ('txz102', 0.0030712167496400066) + +[fips4849790445] +centroid = (0.57956397979397345, -1.7070835030295273) +description = Bridgeport CCD, TX +station = ('kxbp', 0.00061699403064988047) +zone = ('txz102', 0.0022587382829489765) + +[fips4849790975] +centroid = (0.58074476484611759, -1.7021934046247047) +description = Decatur CCD, TX +station = ('klud', 0.0008344620250606569) +zone = ('txz102', 0.0021008532843739278) + +[fips4849800] +centroid = (0.57874275002103259, -1.6575766453847625) +description = Mount Pleasant city, TX +station = ('kosa', 0.0011321568860716803) +zone = ('txz109', 0.0010007252385643929) + +[fips4849860] +centroid = (0.57905540830323476, -1.6619801285408367) +description = Mount Vernon town, TX +station = ('kosa', 0.0041032422773417416) +zone = ('txz108', 9.3938641004204517e-05) + +[fips48499] +centroid = (0.57218155121730285, -1.6647328443837897) +description = Wood County, TX +station = ('kjdd', 0.0018272019089855321) +zone = ('txz124', 4.9088213453632524e-05) + +[fips4849932] +centroid = (0.58735615931913476, -1.6995264542611948) +description = Muenster city, TX +station = ('kgle', 0.0025970899215242323) +zone = ('txz092', 0.0023817323308664789) + +[fips4849968] +centroid = (0.59741187380450012, -1.7929484662398925) +description = Muleshoe city, TX +station = ('kcvn', 0.0062344267147354283) +zone = ('txz027', 0.0031639378479752685) + +[fips4849990025] +centroid = (0.57201984646210557, -1.6682641690593498) +description = Alba CCD, TX +station = ('kjdd', 0.0014112799991892995) +zone = ('txz124', 0.0029774076027265848) + +[fips4849991740] +centroid = (0.56992890711163136, -1.6623523374571172) +description = Hawkins CCD, TX +station = ('kjdd', 0.0039846173138746496) +zone = ('txz124', 0.0030504264195111608) + +[fips4849992] +centroid = (0.55074222339177725, -1.7220413935981393) +description = Mullin town, TX +station = ('kcwc', 0.0059249685406846473) +zone = ('txz142', 0.0014790815475494317) + +[fips4849992590] +centroid = (0.57039709168347874, -1.6660697665908173) +description = Mineola CCD, TX +station = ('kjdd', 0.0011932576854419685) +zone = ('txz124', 0.0021514607429928465) + +[fips4849993180] +centroid = (0.57325487634740169, -1.6662128835894809) +description = Quitman CCD, TX +station = ('kjdd', 0.0018511789953086655) +zone = ('txz124', 0.0016120345841987515) + +[fips4849994255] +centroid = (0.57388167644167043, -1.6624873561280513) +description = Winnsboro CCD, TX +station = ('kjdd', 0.0043108232716593461) +zone = ('txz124', 0.0025064296396419493) + +[fips4850040] +centroid = (0.58376205515038049, -1.738765138490749) +description = Munday city, TX +station = ('kf05', 0.014454472257157512) +zone = ('txz087', 0.0032593379989606657) + +[fips4850058] +centroid = (0.45828546575589502, -1.7119877211479988) +description = Muniz CDP, TX +station = ('kt65', 0.0023020337622936785) +zone = ('txz253', 0.0028158642496714302) + +[fips4850076] +centroid = (0.56330800059419073, -1.6712587002701664) +description = Murchison city, TX +station = ('ktyr', 0.0054121667157576228) +zone = ('txz135', 0.0018146742874513089) + +[fips4850092] +centroid = (0.45840493354319406, -1.7126241380064462) +description = Murillo CDP, TX +station = ('kmfe', 0.0024033688746782004) +zone = ('txz253', 0.0024612012998911489) + +[fips48501] +centroid = (0.57896754842868936, -1.7946133532666622) +description = Yoakum County, TX +station = ('kgnc', 0.0090318935335000575) +zone = ('txz039', 5.9792537263709215e-05) + +[fips4850100] +centroid = (0.57625160667307596, -1.6861366722123297) +description = Murphy city, TX +station = ('ktki', 0.0029300409249342781) +zone = ('txz104', 0.0030311198106277985) + +[fips4850184] +centroid = (0.55872174655884765, -1.6830507904684635) +description = Mustang town, TX +station = ('kcrs', 0.00071974267168483839) +zone = ('txz146', 0.00085279305564571906) + +[fips4850191015] +centroid = (0.57625778513862802, -1.7940718474129385) +description = Denver City CCD, TX +station = ('kgnc', 0.0063110363596582631) +zone = ('txz039', 0.0027681561458983337) + +[fips4850193055] +centroid = (0.57982260268253394, -1.7948845599791297) +description = Plains CCD, TX +station = ('kgnc', 0.0099163399442005959) +zone = ('txz039', 0.00086109735537895555) + +[fips4850200] +centroid = (0.52449076101911563, -1.7052144822934443) +description = Mustang Ridge city, TX +station = ('kaus', 0.0023241910221804031) +zone = ('txz208', 0.0039320247108604323) + +[fips4850232] +centroid = (0.56939790814000446, -1.6744061921366282) +description = Myrtle Springs CDP, TX +station = ('ktrl', 0.0051140746053555527) +zone = ('txz122', 0.0018081617760437379) + +[fips4850256] +centroid = (0.55173983613892474, -1.6519898464491287) +description = Nacogdoches city, TX +station = ('koch', 0.0010860701268282083) +zone = ('txz152', 0.00054245543794405879) + +[fips48503] +centroid = (0.57873000911749295, -1.7222606593120675) +description = Young County, TX +station = ('krph', 0.0019889952005424792) +zone = ('txz100', 0.00034225944976449418) + +[fips4850316] +centroid = (0.57948332812923875, -1.6524600206963234) +description = Naples city, TX +station = ('kosa', 0.0045272537262745927) +zone = ('txz111', 0.0017311226621113359) + +[fips4850322] +centroid = (0.45905423093152098, -1.7216049216588007) +description = Narciso Pena CDP, TX +station = ('kmfe', 0.0064565338152386808) +zone = ('txz252', 0.0047916898816452161) + +[fips4850352] +centroid = (0.58366990176587519, -1.6428537633999316) +description = Nash city, TX +station = ('ktxk', 0.0021201593834362467) +zone = ('arz070', 0.0041246088357628202) + +[fips4850376] +centroid = (0.51565346088456754, -1.6595896383308426) +description = Nassau Bay city, TX +station = ('kefd', 0.0015408097239504113) +zone = ('txz238', 0.0032224915293996076) + +[fips4850391600] +centroid = (0.57701279711974829, -1.7218109577769984) +description = Graham CCD, TX +station = ('krph', 0.0016645715773836152) +zone = ('txz100', 0.0020944102074705127) + +[fips4850391935] +centroid = (0.58131286951764183, -1.7197183080038572) +description = Jean-Loving CCD, TX +station = ('krph', 0.0034502820827243094) +zone = ('txz100', 0.0032072321785583989) + +[fips4850392735] +centroid = (0.57920304570466097, -1.724765939826965) +description = Newcastle CCD, TX +station = ('krph', 0.004113870641016191) +zone = ('txz100', 0.0019640847349661206) + +[fips4850392895] +centroid = (0.58201094885856197, -1.7241883231110176) +description = Olney CCD, TX +station = ('krph', 0.0053564794834350012) +zone = ('txz100', 0.00331357066171197) + +[fips4850400] +centroid = (0.50943183334010578, -1.7252811784754463) +description = Natalia city, TX +station = ('kcvb', 0.0026478466319352148) +zone = ('txz204', 0.0049048863792562) + +[fips4850448] +centroid = (0.55851914873927622, -1.6821922455561149) +description = Navarro town, TX +station = ('kcrs', 0.00027736400673150782) +zone = ('txz146', 0.0015554722806991124) + +[fips4850472] +centroid = (0.53038772241612142, -1.677070751399063) +description = Navasota city, TX +station = ('k11r', 0.005221807599457489) +zone = ('txz198', 0.0031161816890974449) + +[fips4850496] +centroid = (0.60286934384256119, -1.7820221117104622) +description = Nazareth city, TX +station = ('khrx', 0.0064420576136869608) +zone = ('txz022', 0.0023004597984753274) + +[fips48505] +centroid = (0.47118620654835131, -1.7310629830484054) +description = Zapata County, TX +station = ('kapy', 0.0011491605452792176) +zone = ('txz248', 0.00022773536109280687) + +[fips4850580] +centroid = (0.52309006448122009, -1.6406137031181671) +description = Nederland city, TX +station = ('korg', 0.0034313077474791547) +zone = ('txz215', 0.0030123034383107961) + +[fips4850593455] +centroid = (0.47418653225228469, -1.7337857664946865) +description = San Ygnacio CCD, TX +station = ('kapy', 0.0037344064211088275) +zone = ('txz248', 0.00394783797762334) + +[fips4850594310] +centroid = (0.47036043891935519, -1.7300431173532951) +description = Zapata CCD, TX +station = ('kapy', 0.0019894009692980868) +zone = ('txz248', 0.0011287309838764997) + +[fips4850628] +centroid = (0.51305510196066095, -1.6727117392323294) +description = Needville city, TX +station = ('ksgr', 0.0048080548464814101) +zone = ('txz227', 0.0025210371494574497) + +[fips48507] +centroid = (0.50378321484236632, -1.7411374947298146) +description = Zavala County, TX +station = ('kuva', 0.0060520896292573772) +zone = ('txz218', 2.946985964058241e-05) + +[fips4850724] +centroid = (0.56879182510395698, -1.6484030726632328) +description = Nesbitt town, TX +station = ('kasl', 0.0024724712247151154) +zone = ('txz138', 0.0013185398372532332) + +[fips4850742] +centroid = (0.46095554025876601, -1.7236612162236227) +description = Netos CDP, TX +station = ('kmfe', 0.0088922093491455648) +zone = ('txz252', 0.0026591877507117011) + +[fips4850760] +centroid = (0.57655990163214832, -1.6820178697105481) +description = Nevada city, TX +station = ('ktki', 0.0040311842274625004) +zone = ('txz120', 0.0024399603294185906) + +[fips4850772] +centroid = (0.5761950056454338, -1.7014938766605052) +description = Newark city, TX +station = ('kafw', 0.0025687557365705279) +zone = ('txz102', 0.0042849907830239077) + +[fips4850790215] +centroid = (0.50539235605282751, -1.7385620345256945) +description = Batesville CCD, TX +station = ('kuva', 0.004867202785653944) +zone = ('txz218', 0.0027638642496985231) + +[fips4850790920] +centroid = (0.50199083151373824, -1.7416753877519868) +description = Crystal City CCD, TX +station = ('kuva', 0.0078724471054591443) +zone = ('txz218', 0.0018765337759630561) + +[fips4850792140] +centroid = (0.50580673212383598, -1.744493099656284) +description = La Pryor CCD, TX +station = ('kuva', 0.0051306331477717192) +zone = ('txz218', 0.0035416539336360878) + +[fips4850796] +centroid = (0.51421244724095094, -1.7121900746214749) +description = New Berlin city, TX +station = ('krnd', 0.0030316286622136422) +zone = ('txz207', 0.0031372084496938605) + +[fips4850808] +centroid = (0.58400654087199977, -1.6479241194099004) +description = New Boston city, TX +station = ('ktxk', 0.006348339314024511) +zone = ('txz097', 0.00027972782243479335) + +[fips4850820] +centroid = (0.51835058799084444, -1.7124316980031211) +description = New Braunfels city, TX +station = ('kbaz', 0.0010324929259735364) +zone = ('txz206', 0.0031175869007076789) + +[fips4850868] +centroid = (0.57937038787334227, -1.7234040070517562) +description = Newcastle city, TX +station = ('krph', 0.0031324466879553772) +zone = ('txz100', 0.00088085988382429837) + +[fips4850876] +centroid = (0.5637267748949143, -1.6610058857523735) +description = New Chapel Hill city, TX +station = ('ktyr', 0.0035258825658281909) +zone = ('txz136', 0.0019878232959179955) + +[fips4850916] +centroid = (0.5886482265643862, -1.7774488603780465) +description = New Deal town, TX +station = ('klbb', 0.0011085849356288846) +zone = ('txz035', 0.0020597892909353134) + +[fips4850920] +centroid = (0.57787900402751302, -1.7009554949461427) +description = New Fairview city, TX +station = ('kafw', 0.0030230713678102393) +zone = ('txz102', 0.0034182493346561556) + +[fips4850924] +centroid = (0.46492670535912128, -1.7295296065807733) +description = New Falcon CDP, TX +station = ('kapy', 0.0062735217143132394) +zone = ('txz252', 0.0057180861044923452) + +[fips4851012] +centroid = (0.58166479770801394, -1.7786950952771405) +description = New Home city, TX +station = ('klbb', 0.0060886474498988612) +zone = ('txz041', 0.002968902763714888) + +[fips4851036] +centroid = (0.57965348027801566, -1.6852919677609495) +description = New Hope town, TX +station = ('ktki', 0.0006000401529805059) +zone = ('txz104', 0.00045403786929065516) + +[fips4851168] +centroid = (0.56320719037659561, -1.6568371668339852) +description = New London city, TX +station = ('krfi', 0.002547209389315218) +zone = ('txz150', 0.003757705888314282) + +[fips4851336] +centroid = (0.55816934985059152, -1.6600696038751412) +description = New Summerfield city, TX +station = ('kjso', 0.002467057175509674) +zone = ('txz149', 0.0026168745283215969) + +[fips4851366] +centroid = (0.51649626292706308, -1.6700901499760787) +description = New Territory CDP, TX +station = ('ksgr', 0.00072261066214329131) +zone = ('txz227', 0.0016873455334312875) + +[fips4851372] +centroid = (0.53844796706109654, -1.636317976590111) +description = Newton city, TX +station = ('kbkb', 0.0033190627804660401) +zone = ('txz260', 0.00074670307510964066) + +[fips4851396] +centroid = (0.53298564500771495, -1.6664834794367103) +description = New Waverly city, TX +station = ('kcxo', 0.0034244822365435256) +zone = ('txz177', 0.0037607928644762365) + +[fips4851444] +centroid = (0.57937035296675721, -1.6758022460987134) +description = Neylandville town, TX +station = ('kgvt', 0.0023651668919651763) +zone = ('txz105', 0.0016094127657229197) + +[fips4851492] +centroid = (0.52349740687534307, -1.7065087486535533) +description = Niederwald city, TX +station = ('khyi', 0.0022118490999556303) +zone = ('txz208', 0.0036137445740742173) + +[fips4851552] +centroid = (0.45869231945782746, -1.7205628204690198) +description = Nina CDP, TX +station = ('kmfe', 0.0054557718062103969) +zone = ('txz252', 0.0054863942029238812) + +[fips4851588] +centroid = (0.51085211247220874, -1.7063364497497964) +description = Nixon city, TX +station = ('kbaz', 0.0089159683506091058) +zone = ('txz223', 0.0052865333875446304) + +[fips4851648] +centroid = (0.58963426777859296, -1.7057132624870792) +description = Nocona city, TX +station = ('k0f2', 0.003454809347618536) +zone = ('txz091', 0.0018841609535956605) + +[fips4851654] +centroid = (0.59089601865473718, -1.7042352653166128) +description = Nocona Hills CDP, TX +station = ('k0f2', 0.0050340505637376416) +zone = ('txz091', 0.0033471487177601429) + +[fips4851708] +centroid = (0.54236432882293917, -1.7036442968318875) +description = Nolanville city, TX +station = ('kile', 0.0010812361366986641) +zone = ('txz158', 0.0020995014727467152) + +[fips4851720] +centroid = (0.52425627603411018, -1.6476818328031386) +description = Nome city, TX +station = ('kbmt', 0.0028543263110464767) +zone = ('txz215', 0.0044302058132848566) + +[fips4851756] +centroid = (0.56273869164548285, -1.6649694237638974) +description = Noonday city, TX +station = ('ktyr', 0.0018763836290615935) +zone = ('txz136', 0.0029710164232200475) + +[fips4851792] +centroid = (0.50481538510870327, -1.7036870399452688) +description = Nordheim city, TX +station = ('kbea', 0.010202311353281295) +zone = ('txz222', 0.0037612145823094712) + +[fips4851840] +centroid = (0.5415795764313649, -1.6775362132572773) +description = Normangee town, TX +station = ('kcll', 0.0086593328536269318) +zone = ('txz176', 0.0030212473537326329) + +[fips4851852] +centroid = (0.4979019265020434, -1.7066361751422414) +description = Normanna CDP, TX +station = ('kbea', 0.0029284935447980282) +zone = ('txz232', 0.0020290020130214188) + +[fips4851900] +centroid = (0.45755209585749951, -1.7126226195699967) +description = North Alamo CDP, TX +station = ('kmfe', 0.0020221466821726069) +zone = ('txz253', 0.003274297164960941) + +[fips4851984] +centroid = (0.52992623990860155, -1.6598260780846104) +description = North Cleveland city, TX +station = ('k6r3', 0.0013715816070209753) +zone = ('txz178', 0.0039159035640915175) + +[fips4852068] +centroid = (0.461334014907061, -1.7273861328198141) +description = North Escobares CDP, TX +station = ('kapy', 0.010334690483746878) +zone = ('txz252', 0.004292254558842053) + +[fips4852212] +centroid = (0.57724742173109389, -1.6974424613211434) +description = Northlake town, TX +station = ('kafw', 0.0018099390341893662) +zone = ('txz103', 0.0030532434499956243) + +[fips4852302] +centroid = (0.50479698933838724, -1.7295237771810716) +description = North Pearsall CDP, TX +station = ('khdo', 0.0078259258511701058) +zone = ('txz219', 0.00098203181426853754) + +[fips4852356] +centroid = (0.57355083182866251, -1.6967176086294977) +description = North Richland Hills city, TX +station = ('kftw', 0.0022830652494614896) +zone = ('txz118', 0.0019592308319953504) + +[fips4852362] +centroid = (0.46100720200462508, -1.7278143842583757) +description = Northridge CDP, TX +station = ('kapy', 0.010482174404336211) +zone = ('txz252', 0.0047910853991514754) + +[fips4852404] +centroid = (0.48524801017240421, -1.704872659559441) +description = North San Pedro CDP, TX +station = ('krbo', 0.00044341513446839834) +zone = ('txz243', 0.0016173526566674423) + +[fips4852668] +centroid = (0.55828204576039275, -1.7387893811140591) +description = Novice city, TX +station = ('kcom', 0.0042120567148556691) +zone = ('txz139', 0.0045194904200467701) + +[fips4852902] +centroid = (0.56779237976109498, -1.6810695101548923) +description = Oak Grove town, TX +station = ('ktrl', 0.0033090067218580275) +zone = ('txz121', 0.0012594068294381905) + +[fips4852992] +centroid = (0.53651555596658096, -1.6634969418338674) +description = Oakhurst CDP, TX +station = ('kuts', 0.004083429756254405) +zone = ('txz178', 0.0035423555364711536) + +[fips4853004] +centroid = (0.51771469473117282, -1.6526189852845949) +description = Oak Island CDP, TX +station = ('kgls', 0.0074283702191124444) +zone = ('txz214', 0.0017974268784978094) + +[fips4853115] +centroid = (0.56761571753420803, -1.6903118139423656) +description = Oak Leaf city, TX +station = ('kjwy', 0.0014947811897358173) +zone = ('txz134', 0.0031294647103860909) + +[fips4853130] +centroid = (0.57899205285138733, -1.6927227768644855) +description = Oak Point city, TX +station = ('kdto', 0.0031609181091267168) +zone = ('txz103', 0.0019892881951812757) + +[fips4853154] +centroid = (0.5872705160127395, -1.693641448369565) +description = Oak Ridge town, TX +station = ('kgle', 0.0023026157598778044) +zone = ('txz092', 0.0025342258836335888) + +[fips4853160] +centroid = (0.5693811006193078, -1.6798698580935338) +description = Oak Ridge town, TX +station = ('ktrl', 0.00165192720884747) +zone = ('txz121', 0.00069871612009935087) + +[fips4853190] +centroid = (0.52633505043969808, -1.6657796405092584) +description = Oak Ridge North city, TX +station = ('kdwh', 0.0022638912309684402) +zone = ('txz199', 0.0026661305292051351) + +[fips4853212] +centroid = (0.56705124314752808, -1.7075227151357917) +description = Oak Trail Shores CDP, TX +station = ('kgdj', 0.00083304606763761539) +zone = ('txz131', 0.0010429602609262024) + +[fips4853217] +centroid = (0.55901248350564492, -1.6845462932913273) +description = Oak Valley town, TX +station = ('kcrs', 0.0019955034335875986) +zone = ('txz146', 0.00073566752415821321) + +[fips4853232] +centroid = (0.55125854414439479, -1.6728959587348775) +description = Oakwood town, TX +station = ('kpsn', 0.0040126889535330888) +zone = ('txz147', 0.0049140288882522937) + +[fips4853304] +centroid = (0.5825943600676261, -1.7426034665817349) +description = O'Brien city, TX +station = ('kdys', 0.016759719406953304) +zone = ('txz098', 0.0038952712253166807) + +[fips4853376] +centroid = (0.48775781109006455, -1.7032037582753916) +description = Odem city, TX +station = ('kcrp', 0.003317351969706288) +zone = ('txz244', 0.0015151418330442976) + +[fips4853388] +centroid = (0.55641756288036481, -1.7862294024053198) +description = Odessa city, TX +station = ('kodo', 0.0010508892454281727) +zone = ('txz061', 0.0029617318949608229) + +[fips4853436] +centroid = (0.57535131348501978, -1.7772834729781277) +description = O'Donnell city, TX +station = ('klbb', 0.012244613513821686) +zone = ('txz041', 0.0036993704889009198) + +[fips4853520] +centroid = (0.54835833052635574, -1.70189181172996) +description = Oglesby city, TX +station = ('kpwg', 0.0031091283535935542) +zone = ('txz157', 0.004317118223400437) + +[fips4853556] +centroid = (0.47942927443247285, -1.72730396271863) +description = Oilton CDP, TX +station = ('khbv', 0.0043317632767175202) +zone = ('txz239', 0.0075957528315004613) + +[fips4853718] +centroid = (0.4609201973414131, -1.727352727217931) +description = Old Escobares CDP, TX +station = ('kapy', 0.010724036643940831) +zone = ('txz252', 0.0045002614810081623) + +[fips4853824] +centroid = (0.52140744490924984, -1.6550394427978459) +description = Old River-Winfree city, TX +station = ('kefd', 0.0070339715459372719) +zone = ('txz214', 0.0040721300030425551) + +[fips4853934] +centroid = (0.45777450316408114, -1.7103020123432526) +description = Olivarez CDP, TX +station = ('kt65', 0.00094454758878342209) +zone = ('txz253', 0.004156386953154608) + +[fips4853946] +centroid = (0.45950374048037212, -1.7229311799040985) +description = Olivia Lopez de Gutierrez CDP, TX +station = ('kmfe', 0.0077267683221539226) +zone = ('txz252', 0.0041064058183682174) + +[fips4853964] +centroid = (0.45426712440585837, -1.7024003657674063) +description = Olmito CDP, TX +station = ('kbro', 0.0029539717660051266) +zone = ('txz255', 0.0017278264573317482) + +[fips4853970] +centroid = (0.45971991696152414, -1.7216271746067635) +description = Olmito and Olmito CDP, TX +station = ('kmfe', 0.0067168854799740507) +zone = ('txz252', 0.004158762071982171) + +[fips4853988] +centroid = (0.51443436585534197, -1.7189161546796408) +description = Olmos Park city, TX +station = ('ksat', 0.0010637286937628307) +zone = ('txz205', 0.00067711928603478202) + +[fips4854000] +centroid = (0.58231414745621846, -1.7236607449847248) +description = Olney city, TX +station = ('krph', 0.0053361645972910422) +zone = ('txz100', 0.0034302567129545552) + +[fips4854012] +centroid = (0.59655701153687335, -1.7826276187878567) +description = Olton city, TX +station = ('kpvw', 0.0060657311278699303) +zone = ('txz028', 0.0036623622576254025) + +[fips4854024] +centroid = (0.57914817255297835, -1.6534990152000357) +description = Omaha city, TX +station = ('kosa', 0.0035971866080620591) +zone = ('txz111', 0.0012116576338747013) + +[fips4854048] +centroid = (0.53770126284721576, -1.6599080038396989) +description = Onalaska city, TX +station = ('k6r3', 0.0079504755827156746) +zone = ('txz178', 0.0040909244741683653) + +[fips4854075] +centroid = (0.58630330690116184, -1.7854826807381465) +description = Opdyke West town, TX +station = ('klbb', 0.0071504207200714246) +zone = ('txz034', 0.00067134184215899911) + +[fips4854132] +centroid = (0.5256343705581924, -1.6364272167479934) +description = Orange city, TX +station = ('korg', 0.0010547892479176968) +zone = ('txz216', 0.0020647430130184287) + +[fips4854168] +centroid = (0.4879277887059163, -1.7093502144889701) +description = Orange Grove city, TX +station = ('kali', 0.0040723231491421041) +zone = ('txz241', 0.0045745118174234855) + +[fips4854186] +centroid = (0.45508163466117912, -1.7007508027314686) +description = Orason CDP, TX +station = ('kpil', 0.0023895336253485278) +zone = ('txz255', 0.0022402167042109753) + +[fips4854192] +centroid = (0.51661868032079794, -1.6749935826963867) +description = Orchard city, TX +station = ('ktme', 0.0038148136463575411) +zone = ('txz227', 0.0032815459417258551) + +[fips4854216] +centroid = (0.5724936509941444, -1.6531266841107077) +description = Ore City city, TX +station = ('kjxi', 0.003840032879168846) +zone = ('txz125', 0.0034816132324488507) + +[fips4854432] +centroid = (0.56331611637521251, -1.6575835219820154) +description = Overton city, TX +station = ('krfi', 0.0029797325612470533) +zone = ('txz137', 0.0042429129483172413) + +[fips4854444] +centroid = (0.56795242645350286, -1.6909354200841031) +description = Ovilla city, TX +station = ('kjwy', 0.0015501980162267175) +zone = ('txz134', 0.0036123687797386269) + +[fips4854509] +centroid = (0.48682006313626053, -1.7120536422338466) +description = Owl Ranch CDP, TX +station = ('kali', 0.0030240472954872434) +zone = ('txz241', 0.0028232535331198494) + +[fips4854528] +centroid = (0.50611192039683972, -1.6638094255831446) +description = Oyster Creek city, TX +station = ('klbx', 0.0029459774963598753) +zone = ('txz237', 0.0038802460301645436) + +[fips4854552] +centroid = (0.53594547907300205, -1.7663776784272858) +description = Ozona CDP, TX +station = ('koza', 0.00057578059207361596) +zone = ('txz076', 0.0031046572983623615) + +[fips4854558] +centroid = (0.45908573412451942, -1.7216015880799294) +description = Pablo Pena CDP, TX +station = ('kmfe', 0.0064638244277490176) +zone = ('txz252', 0.0047627939613267079) + +[fips4854600] +centroid = (0.59365639649310642, -1.7506296947595885) +description = Paducah town, TX +station = ('kcds', 0.0073245379344147035) +zone = ('txz032', 0.0011668453040753134) + +[fips4854636] +centroid = (0.54995450394047474, -1.7440256481227225) +description = Paint Rock town, TX +station = ('ksjt', 0.0090030202824450799) +zone = ('txz073', 0.0033315255172547578) + +[fips4854666] +centroid = (0.49035156234474592, -1.7079653655406826) +description = Paisano Park CDP, TX +station = ('kbea', 0.0047447087622101529) +zone = ('txz232', 0.0059109216680102153) + +[fips4854684] +centroid = (0.50145573101836927, -1.6799694116740675) +description = Palacios city, TX +station = ('kpsx', 0.00026726844466660066) +zone = ('txz236', 0.0047508483042935194) + +[fips4854708] +centroid = (0.55422078676404962, -1.6693542493502678) +description = Palestine city, TX +station = ('kpsn', 0.00097976801270615037) +zone = ('txz148', 0.0010310789250778036) + +[fips4854726] +centroid = (0.61189402252560343, -1.7767531546849089) +description = Palisades village, TX +station = ('kama', 0.0030013206595669935) +zone = ('txz017', 0.0021311358203894848) + +[fips4854744] +centroid = (0.56615185753068276, -1.6871242842228633) +description = Palmer town, TX +station = ('klnc', 0.002586030034448935) +zone = ('txz134', 0.0024674484305655608) + +[fips4854780] +centroid = (0.45828881678805888, -1.7155769383948474) +description = Palmhurst city, TX +station = ('kmfe', 0.0014840593431141146) +zone = ('txz253', 0.0030099223990402621) + +[fips4854798] +centroid = (0.45735384390776551, -1.7061347245948506) +description = Palm Valley city, TX +station = ('khrl', 0.00164736755311732) +zone = ('txz255', 0.0031110885175657248) + +[fips4854804] +centroid = (0.45780422612124266, -1.7170371332069436) +description = Palmview city, TX +station = ('kmfe', 0.0021794176871056978) +zone = ('txz253', 0.0042466207570436357) + +[fips4854810] +centroid = (0.45756021163852129, -1.7169910041548135) +description = Palmview South CDP, TX +station = ('kmfe', 0.0020602868911599355) +zone = ('txz253', 0.0043884816149897818) + +[fips4854846] +centroid = (0.46054955922145963, -1.7261726752040725) +description = Palo Blanco CDP, TX +station = ('kmfe', 0.010813537955477601) +zone = ('txz252', 0.0039808077937511588) + +[fips4854868] +centroid = (0.57989620321709057, -1.6918712481757299) +description = Paloma Creek CDP, TX +station = ('kdto', 0.0038650910021052042) +zone = ('txz103', 0.0026547563981156939) + +[fips4854872] +centroid = (0.57963826100693827, -1.6918637258066538) +description = Paloma Creek South CDP, TX +station = ('kads', 0.0045212710379474597) +zone = ('txz103', 0.0026375624338573142) + +[fips4854876] +centroid = (0.57200651214662024, -1.7156943117870442) +description = Palo Pinto CDP, TX +station = ('kmwl', 0.0034581714680407263) +zone = ('txz116', 0.00039002718737854631) + +[fips4854912] +centroid = (0.62042381309924255, -1.7621722726880205) +description = Pampa city, TX +station = ('kppa', 0.0012190312584239658) +zone = ('txz014', 0.0033509685482502405) + +[fips4854960] +centroid = (0.61690931339767174, -1.7694236619444514) +description = Panhandle town, TX +station = ('kama', 0.0052969509150772752) +zone = ('txz013', 0.0010662215846584647) + +[fips4855008] +centroid = (0.53027729543434765, -1.6666736505120072) +description = Panorama Village city, TX +station = ('kcxo', 0.0012879401517650723) +zone = ('txz199', 0.0014463396427400442) + +[fips4855020] +centroid = (0.57098205623557707, -1.6956627316295922) +description = Pantego town, TX +station = ('kgky', 0.0011593705553370041) +zone = ('txz118', 0.0022402786749663884) + +[fips4855056] +centroid = (0.57858258115557704, -1.7049899456851751) +description = Paradise city, TX +station = ('kxbp', 0.0020856235717383593) +zone = ('txz102', 0.0012492858120267826) + +[fips4855080] +centroid = (0.58761996583557374, -1.667557031459612) +description = Paris city, TX +station = ('kprx', 0.0014944752337981699) +zone = ('txz095', 0.00039436110710049972) + +[fips4855152] +centroid = (0.5770639003602468, -1.6864365895909923) +description = Parker city, TX +station = ('ktki', 0.0021841501459851252) +zone = ('txz104', 0.0023079429884204166) + +[fips4856000] +centroid = (0.51763433977241102, -1.6606891259464291) +description = Pasadena city, TX +station = ('kefd', 0.0010461200407606373) +zone = ('txz213', 0.0050490297874564169) + +[fips4856108] +centroid = (0.52044042778388999, -1.6750973599737105) +description = Pattison city, TX +station = ('ktme', 0.0011617803693382998) +zone = ('txz212', 0.0033567418132970819) + +[fips4856156] +centroid = (0.52702595647739248, -1.6609436124046624) +description = Patton Village city, TX +station = ('k6r3', 0.0036903761704214842) +zone = ('txz200', 0.0053811008523506213) + +[fips4856252] +centroid = (0.50000796295054739, -1.7105672500296782) +description = Pawnee CDP, TX +station = ('knog', 0.0030158546088870346) +zone = ('txz222', 0.0050361274767955462) + +[fips4856276] +centroid = (0.5635680022928603, -1.6776133742635078) +description = Payne Springs town, TX +station = ('kcrs', 0.0061555930970622428) +zone = ('txz135', 0.0041605420842716831) + +[fips4856348] +centroid = (0.51584534238253177, -1.6637014246090311) +description = Pearland city, TX +station = ('klvj', 0.001302586030034465) +zone = ('txz213', 0.0053664700636631866) + +[fips4856384] +centroid = (0.50418940531918288, -1.7296036783542279) +description = Pearsall city, TX +station = ('kcot', 0.0078527915387101299) +zone = ('txz219', 0.0003789662256470701) + +[fips4856462] +centroid = (0.57539791377604799, -1.7013300076970355) +description = Pecan Acres CDP, TX +station = ('kafw', 0.0023925125147605205) +zone = ('txz118', 0.0044049480152269227) + +[fips4856468] +centroid = (0.58361995044268311, -1.6729514427517984) +description = Pecan Gap city, TX +station = ('kslr', 0.0059130945377623405) +zone = ('txz106', 0.002789178264568586) + +[fips4856482] +centroid = (0.51703036858475837, -1.6708365574839867) +description = Pecan Grove CDP, TX +station = ('ksgr', 0.0012483489120614262) +zone = ('txz227', 0.0017803468096248816) + +[fips4856485] +centroid = (0.56706993562381691, -1.6891529327723338) +description = Pecan Hill city, TX +station = ('klnc', 0.0017965356766478065) +zone = ('txz134', 0.0024914106327177357) + +[fips4856498] +centroid = (0.56487450341102574, -1.7043530052279525) +description = Pecan Plantation CDP, TX +station = ('kgdj', 0.0027899333983449756) +zone = ('txz132', 0.0030732901123666418) + +[fips4856516] +centroid = (0.54811389716461401, -1.8065149105156444) +description = Pecos city, TX +station = ('kpeq', 0.00039748613097666615) +zone = ('txz058', 0.0051204926061214663) + +[fips4856640] +centroid = (0.57461038631096317, -1.7020262544422413) +description = Pelican Bay city, TX +station = ('kftw', 0.0027232402137440698) +zone = ('txz118', 0.0042604255228340529) + +[fips4856644] +centroid = (0.4610324918254865, -1.7273514880341618) +description = Pena CDP, TX +station = ('kapy', 0.010621972424194973) +zone = ('txz252', 0.0044334218099621597) + +[fips4856672] +centroid = (0.55596648253518688, -1.6917159662321799) +description = Penelope town, TX +station = ('kcnw', 0.0042953481101150152) +zone = ('txz145', 0.0038470457960176653) + +[fips4856696] +centroid = (0.45814891119521894, -1.7180922894595292) +description = Penitas city, TX +station = ('kmfe', 0.0031862258856021524) +zone = ('txz253', 0.0047850465310069722) + +[fips4856804] +centroid = (0.45796640211533796, -1.7174445803208216) +description = Perezville CDP, TX +station = ('kmfe', 0.0025790750778221577) +zone = ('txz253', 0.0044171293087963293) + +[fips4856864] +centroid = (0.57656222292005344, -1.7116231742271346) +description = Perrin CDP, TX +station = ('kxbp', 0.0042881407952769096) +zone = ('txz101', 0.0037882683300422804) + +[fips4856912] +centroid = (0.63518757069515508, -1.7592371873915267) +description = Perryton city, TX +station = ('kpyx', 0.00089958097183513469) +zone = ('txz004', 0.0020272271454303465) + +[fips4856996] +centroid = (0.59116132615433281, -1.7732072565100947) +description = Petersburg city, TX +station = ('klbb', 0.0047806857761551235) +zone = ('txz029', 0.0048128081005526418) + +[fips4857044] +centroid = (0.5936405139969132, -1.7144683052539806) +description = Petrolia city, TX +station = ('ksps', 0.0039154227772765105) +zone = ('txz090', 0.0039884739220986442) + +[fips4857056] +centroid = (0.48295405412333803, -1.7040041488170636) +description = Petronila city, TX +station = ('krbo', 0.0020732088136712137) +zone = ('txz243', 0.00091910554303888863) + +[fips4857116] +centroid = (0.49943633271393428, -1.707143071116898) +description = Pettus CDP, TX +station = ('kbea', 0.0044738119900851426) +zone = ('txz232', 0.0036259683481945602) + +[fips4857176] +centroid = (0.53152763185718388, -1.7035448305178165) +description = Pflugerville city, TX +station = ('kedc', 0.0010909639469291949) +zone = ('txz192', 0.0033726301181253695) + +[fips4857200] +centroid = (0.45677245728063365, -1.7139118070219823) +description = Pharr city, TX +station = ('kmfe', 0.00081290101790291731) +zone = ('txz253', 0.0039496022013203649) + +[fips4857476] +centroid = (0.58287052351516921, -1.6921461898927965) +description = Pilot Point city, TX +station = ('kdto', 0.0049704305522636754) +zone = ('txz103', 0.0041156640940089697) + +[fips4857524] +centroid = (0.52665406172037754, -1.6412247777958753) +description = Pine Forest city, TX +station = ('kbmt', 0.0033377264369073806) +zone = ('txz216', 0.0022486919000699276) + +[fips4857566] +centroid = (0.57193737965494884, -1.6493139599998485) +description = Pine Harbor CDP, TX +station = ('kasl', 0.0052447180725122668) +zone = ('txz126', 0.002135044409080009) + +[fips4857596] +centroid = (0.52689058874060779, -1.6703418439075088) +description = Pinehurst CDP, TX +station = ('kdwh', 0.0031466466050734557) +zone = ('txz199', 0.0035966345651987485) + +[fips4857608] +centroid = (0.52547409697298175, -1.6366345618631304) +description = Pinehurst city, TX +station = ('korg', 0.00081893799910540404) +zone = ('txz216', 0.0019100775320388397) + +[fips4857615] +centroid = (0.52453764056282415, -1.676012471007116) +description = Pine Island town, TX +station = ('ktme', 0.004677507673432676) +zone = ('txz212', 0.00096653264913844101) + +[fips4857644] +centroid = (0.54533643255286779, -1.6401977562508319) +description = Pineland city, TX +station = ('kjas', 0.0063420013655518317) +zone = ('txz167', 0.0025224621560408821) + +[fips4857752] +centroid = (0.52663418242019733, -1.6462254951686894) +description = Pinewood Estates CDP, TX +station = ('kbmt', 0.0023769642290335283) +zone = ('txz201', 0.0029527092882222676) + +[fips4857800] +centroid = (0.51934736297995099, -1.6670589144910926) +description = Piney Point Village city, TX +station = ('kmcj', 0.0019279736468878119) +zone = ('txz213', 0.0025648121137406168) + +[fips4857908] +centroid = (0.57593435817494099, -1.6574879302988836) +description = Pittsburg city, TX +station = ('kosa', 0.0016892467531592734) +zone = ('txz110', 0.00047401032357215575) + +[fips4857932] +centroid = (0.50076875197149173, -1.6899308260199475) +description = Placedo CDP, TX +station = ('kpkv', 0.0023145248709964508) +zone = ('txz234', 0.0028777376818677662) + +[fips4857968] +centroid = (0.57926814648576042, -1.7946733751396384) +description = Plains town, TX +station = ('kgnc', 0.009334652815710066) +zone = ('txz039', 0.00029020172321225025) + +[fips4857980] +centroid = (0.59674374431354416, -1.7754089719081931) +description = Plainview city, TX +station = ('kpvw', 0.00040866243221235777) +zone = ('txz029', 0.0025787051931576706) + +[fips4858016] +centroid = (0.57684473936607383, -1.6885701673350928) +description = Plano city, TX +station = ('kads', 0.0019278331201318197) +zone = ('txz104', 0.0035077899696043602) + +[fips4858088] +centroid = (0.51466005438091744, -1.6721791171044984) +description = Pleak village, TX +station = ('ksgr', 0.0032967038029723967) +zone = ('txz227', 0.00090084767143253444) + +[fips4858232] +centroid = (0.54109172199884747, -1.6544337960941113) +description = Pleasant Hill CDP, TX +station = ('klfk', 0.0040814875897660962) +zone = ('txz179', 0.0036998352057462979) + +[fips4858280] +centroid = (0.5055134819029159, -1.7190414867732262) +description = Pleasanton city, TX +station = ('kpez', 0.00046662380349389571) +zone = ('txz220', 0.0013777720876159637) + +[fips4858400] +centroid = (0.59231669921256802, -1.720864500630227) +description = Pleasant Valley town, TX +station = ('ksps', 0.0016342696216067897) +zone = ('txz086', 0.0017583279408270645) + +[fips4858448] +centroid = (0.52710236699204482, -1.6597348497246087) +description = Plum Grove city, TX +station = ('k6r3', 0.0030657056246276987) +zone = ('txz200', 0.0043641196552509625) + +[fips4858532] +centroid = (0.57486113776459713, -1.6731312465713388) +description = Point city, TX +station = ('kgvt', 0.0037374042090743617) +zone = ('txz123', 0.0015527043541897262) + +[fips4858556] +centroid = (0.53665766067427834, -1.661792959431853) +description = Point Blank city, TX +station = ('kuts', 0.0055440955488598375) +zone = ('txz178', 0.0030257442836892608) + +[fips4858568] +centroid = (0.500286761845261, -1.6852096754867179) +description = Point Comfort city, TX +station = ('kpkv', 0.0019338321751539861) +zone = ('txz247', 0.0033527984089942202) + +[fips4858586] +centroid = (0.53030169513729053, -1.7103910764949817) +description = Point Venture village, TX +station = ('kryw', 0.0020677038910341724) +zone = ('txz192', 0.0033692678093427595) + +[fips4858664] +centroid = (0.57895566273648336, -1.6981436997080097) +description = Ponder town, TX +station = ('kdto', 0.0014930299671764851) +zone = ('txz103', 0.0026808995439015337) + +[fips4858808] +centroid = (0.4855662709615054, -1.6945260859542308) +description = Port Aransas city, TX +station = ('kras', 0.00016136735181118068) +zone = ('txz245', 0.005683419646915008) + +[fips4858820] +centroid = (0.52069109197106134, -1.640021669982598) +description = Port Arthur city, TX +station = ('korg', 0.0047944178660500351) +zone = ('txz215', 0.0032380602911811517) + +[fips4858850] +centroid = (0.52624916278720735, -1.6636787178754628) +description = Porter Heights CDP, TX +station = ('kiah', 0.0027357599324917357) +zone = ('txz199', 0.0037646938343137292) + +[fips4858892] +centroid = (0.45494932125058546, -1.6972417310038714) +description = Port Isabel city, TX +station = ('kspl', 0.0013745024136239713) +zone = ('txz257', 0.0020682867221191539) + +[fips4858904] +centroid = (0.48661849506094773, -1.6986082539950129) +description = Portland city, TX +station = ('ktfp', 0.0020157547761463011) +zone = ('txz244', 0.003757810873013666) + +[fips4858916] +centroid = (0.49947774937708406, -1.6864817761653264) +description = Port Lavaca city, TX +station = ('kpkv', 0.0010236337812456107) +zone = ('txz247', 0.0022414518135391043) + +[fips4858928] +centroid = (0.46372190457646956, -1.7006895067681387) +description = Port Mansfield CDP, TX +station = ('khrl', 0.0069585955326827873) +zone = ('txz256', 0.0014697485741946908) + +[fips4858940] +centroid = (0.52291404802615649, -1.6399426065674827) +description = Port Neches city, TX +station = ('korg', 0.00304858695032274) +zone = ('txz216', 0.0030825804159571499) + +[fips4858952] +centroid = (0.49647677790132749, -1.6828486813410826) +description = Port O'Connor CDP, TX +station = ('kpsx', 0.0053954750601612079) +zone = ('txz247', 0.0036053353808096853) + +[fips4859012] +centroid = (0.57929066123311113, -1.7694413072231889) +description = Post city, TX +station = ('klbb', 0.010446183897134019) +zone = ('txz042', 0.0012292094737389265) + +[fips4859066] +centroid = (0.56955200325966304, -1.6810707842452461) +description = Post Oak Bend City town, TX +station = ('ktrl', 0.0016464122150389173) +zone = ('txz121', 0.00073316362319640247) + +[fips4859084] +centroid = (0.50680649162596336, -1.7204417295255163) +description = Poteet city, TX +station = ('kpez', 0.0017415448008203398) +zone = ('txz220', 0.0026635716580693824) + +[fips4859096] +centroid = (0.50740332441697533, -1.7118287565597272) +description = Poth town, TX +station = ('kssf', 0.0074427084222296585) +zone = ('txz221', 0.0017831541080210046) + +[fips4859108] +centroid = (0.56436408187128007, -1.7398209579684505) +description = Potosi CDP, TX +station = ('kabi', 0.0014135710997596836) +zone = ('txz127', 0.0030921081316862059) + +[fips4859132] +centroid = (0.58942522969408151, -1.6872223368202404) +description = Pottsboro town, TX +station = ('kgyi', 0.00096018633058773516) +zone = ('txz093', 0.0025288274096474995) + +[fips4859156] +centroid = (0.59006951798745522, -1.6668509585107174) +description = Powderly CDP, TX +station = ('kprx', 0.0031543122289098701) +zone = ('txz095', 0.0026555288951921044) + +[fips4859168] +centroid = (0.56043504901906793, -1.6811453098043061) +description = Powell town, TX +station = ('kcrs', 0.0018693448365412983) +zone = ('txz146', 0.0024784840615581553) + +[fips4859192] +centroid = (0.55989013977330271, -1.6684016311912369) +description = Poynor town, TX +station = ('kpsn', 0.0054986631314434325) +zone = ('txz135', 0.0045048649144517989) + +[fips4859210] +centroid = (0.5565817983629775, -1.860756759154607) +description = Prado Verde CDP, TX +station = ('k5t6', 0.0013607589004779588) +zone = ('txz418', 0.00052756148935609673) + +[fips4859336] +centroid = (0.52509797851917694, -1.675357937631033) +description = Prairie View city, TX +station = ('ktme', 0.0050078667281485047) +zone = ('txz212', 0.0013063881496601256) + +[fips4859384] +centroid = (0.47749775345587581, -1.7125941707031893) +description = Premont city, TX +station = ('kbks', 0.0026523376972010198) +zone = ('txz250', 0.0058920135993372723) + +[fips4859396] +centroid = (0.51592561007483095, -1.8215184763507808) +description = Presidio city, TX +station = ('kmrf', 0.01502772333045836) +zone = ('txz079', 0.004931139385796748) + +[fips4859420] +centroid = (0.59106451274072469, -1.6870970396332394) +description = Preston CDP, TX +station = ('kgyi', 0.0025980624749744234) +zone = ('okz051', 0.0031680887789599429) + +[fips4859540] +centroid = (0.45768145966165735, -1.7060888747954011) +description = Primera town, TX +station = ('khrl', 0.0015963331445972789) +zone = ('txz255', 0.0032441467919076309) + +[fips4859576] +centroid = (0.57917328784091449, -1.6844045027428953) +description = Princeton city, TX +station = ('ktki', 0.0010819598554739922) +zone = ('txz104', 0.00092428700052106278) + +[fips4859636] +centroid = (0.45546368723444064, -1.7096650020728597) +description = Progreso city, TX +station = ('kt65', 0.0014431288033807733) +zone = ('txz253', 0.0063155717170518405) + +[fips4859642] +centroid = (0.45498946382338129, -1.7097361416931711) +description = Progreso Lakes city, TX +station = ('kt65', 0.0019040270911620065) +zone = ('txz255', 0.006044099691342765) + +[fips4859696] +centroid = (0.58013400432767481, -1.6895605369658444) +description = Prosper town, TX +station = ('ktki', 0.0033763280266813117) +zone = ('txz104', 0.003508640401732432) + +[fips4859726] +centroid = (0.58000804391555838, -1.6923159755224306) +description = Providence CDP, TX +station = ('kdto', 0.0035116982039728383) +zone = ('txz103', 0.0023076934176792714) + +[fips4859794] +centroid = (0.48301692088299486, -1.7311865523594467) +description = Pueblo East CDP, TX +station = ('klrd', 0.0047857387169647795) +zone = ('txz239', 0.0026598761237784786) + +[fips4859798] +centroid = (0.47985921884040916, -1.7332844206670515) +description = Pueblo Nuevo CDP, TX +station = ('klrd', 0.0025004203141534382) +zone = ('txz239', 0.0046754568566306654) + +[fips4859984] +centroid = (0.56496779125954477, -1.7312879908955725) +description = Putnam town, TX +station = ('kabi', 0.0072349067777541945) +zone = ('txz128', 0.0029146409450406165) + +[fips4859996] +centroid = (0.55044309141127801, -1.7998268611818797) +description = Pyote town, TX +station = ('kink', 0.0044329110376431467) +zone = ('txz067', 0.00058124544522277486) + +[fips4860020] +centroid = (0.6093557727411355, -1.7519412224259998) +description = Quail CDP, TX +station = ('kcds', 0.008492107719778751) +zone = ('txz020', 0.0017957644004852485) + +[fips4860026] +centroid = (0.5022590362598921, -1.6944496754395788) +description = Quail Creek CDP, TX +station = ('kvct', 0.002792304101392478) +zone = ('txz234', 0.0017664992969886354) + +[fips4860044] +centroid = (0.59856705487651762, -1.7408418185012344) +description = Quanah city, TX +station = ('kf05', 0.0067361490730424899) +zone = ('txz083', 9.7266237106325784e-05) + +[fips4860080] +centroid = (0.57858006788145422, -1.6432838648875006) +description = Queen City city, TX +station = ('ktxk', 0.0057898265384699133) +zone = ('txz112', 0.003058533847903951) + +[fips4860092] +centroid = (0.50522429829915294, -1.756216947480828) +description = Quemado CDP, TX +station = ('kdlf', 0.0038075612946458625) +zone = ('txz217', 0.0059258595089151326) + +[fips4860098] +centroid = (0.4586983233904543, -1.7205803784812947) +description = Quesada CDP, TX +station = ('kmfe', 0.0054726019967182024) +zone = ('txz252', 0.0054739866024981002) + +[fips4860140] +centroid = (0.57436895491553475, -1.6778175603326988) +description = Quinlan city, TX +station = ('kgvt', 0.0029140034291629839) +zone = ('txz105', 0.0038081307008054318) + +[fips4860164] +centroid = (0.5049923440415629, -1.6634226082610251) +description = Quintana town, TX +station = ('klbx', 0.0040127914624975003) +zone = ('txz237', 0.0050275102979200278) + +[fips4860176] +centroid = (0.5998244598828244, -1.7637529126717968) +description = Quitaque city, TX +station = ('kpvw', 0.010157531225427199) +zone = ('txz024', 0.0035960584693244509) + +[fips4860188] +centroid = (0.5723638683109662, -1.6658375330805471) +description = Quitman city, TX +station = ('kjdd', 0.0011769346510346237) +zone = ('txz124', 0.00093913450031775944) + +[fips4860278] +centroid = (0.50362660644858481, -1.7546759788309498) +description = Radar Base CDP, TX +station = ('mmpg', 0.0027323881675608373) +zone = ('txz217', 0.0039144668519627253) + +[fips4860290] +centroid = (0.45903810408923251, -1.7216079585316992) +description = Rafael Pena CDP, TX +station = ('kmfe', 0.0064539898503781215) +zone = ('txz252', 0.0048061174560374677) + +[fips4860356] +centroid = (0.58780549433506069, -1.7694949237378104) +description = Ralls city, TX +station = ('klbb', 0.0062794283731051267) +zone = ('txz036', 0.0016628512096750936) + +[fips4860380] +centroid = (0.47146484836343217, -1.7344643156012769) +description = Ramireno CDP, TX +station = ('kapy', 0.0021196227171628476) +zone = ('txz248', 0.0032550813660636299) + +[fips4860408] +centroid = (0.45931011365315588, -1.7225237327902205) +description = Ramirez-Perez CDP, TX +station = ('kmfe', 0.0073187972046051229) +zone = ('txz252', 0.004343451322185791) + +[fips4860422] +centroid = (0.46125533546438108, -1.7283302861319729) +description = Ramos CDP, TX +station = ('kapy', 0.010083963907531171) +zone = ('txz252', 0.0050660595523082993) + +[fips4860458] +centroid = (0.46224005022835629, -1.7073165568445463) +description = Ranchette Estates CDP, TX +station = ('kebg', 0.0048599963111791572) +zone = ('txz254', 0.0016443245410711286) + +[fips4860478] +centroid = (0.4607730486321775, -1.7256330717592334) +description = Ranchitos Del Norte CDP, TX +station = ('kmfe', 0.010436505968443442) +zone = ('txz252', 0.0035060799932073007) + +[fips4860480] +centroid = (0.47979252980969039, -1.7342778795305791) +description = Ranchitos East CDP, TX +station = ('klrd', 0.0017367268675100632) +zone = ('txz239', 0.004761290268609197) + +[fips4860482] +centroid = (0.48231575230929863, -1.7320170323774231) +description = Ranchitos Las Lomas CDP, TX +station = ('klrd', 0.0038137125705250867) +zone = ('txz239', 0.0026448587895378226) + +[fips4860518] +centroid = (0.48414197757212291, -1.7122147884836834) +description = Rancho Alegre CDP, TX +station = ('kali', 0.0013328035248491282) +zone = ('txz241', 0.00024107937262537343) + +[fips4860529] +centroid = (0.48536552319094101, -1.707725871460724) +description = Rancho Banquete CDP, TX +station = ('krbo', 0.0024569177705695781) +zone = ('txz243', 0.0036880078169378278) + +[fips4860534] +centroid = (0.48911511874275554, -1.7016375521645295) +description = Rancho Chico CDP, TX +station = ('kcrp', 0.0045059542178695882) +zone = ('txz244', 0.00042730266408644936) + +[fips4860539] +centroid = (0.48301062024439512, -1.73840935312273) +description = Ranchos Penitas West CDP, TX +station = ('klrd', 0.0031698938983204528) +zone = ('txz239', 0.0044650746755330291) + +[fips4860544] +centroid = (0.45441219617328416, -1.7026617462761848) +description = Rancho Viejo town, TX +station = ('kbro', 0.0032187283059233055) +zone = ('txz255', 0.0015185141284368678) + +[fips4860554] +centroid = (0.46101578902454488, -1.7264078583207787) +description = Rancho Viejo CDP, TX +station = ('kapy', 0.011010180684481105) +zone = ('txz252', 0.0037874515620882603) + +[fips4860608] +centroid = (0.51540145279387206, -1.7152911930897112) +description = Randolph AFB CDP, TX +station = ('krnd', 8.4795185783260782e-05) +zone = ('txz205', 0.0039255384430316046) + +[fips4860632] +centroid = (0.56669640025730517, -1.7222091371925483) +description = Ranger city, TX +station = ('kbkd', 0.0053952774746246412) +zone = ('txz129', 0.0033930200524262249) + +[fips4860644] +centroid = (0.45566087453333098, -1.7058261154765131) +description = Rangerville village, TX +station = ('khrl', 0.0023400534657237594) +zone = ('txz255', 0.0024757647437176002) + +[fips4860668] +centroid = (0.54498534212053651, -1.7791788307326233) +description = Rankin city, TX +station = ('kmaf', 0.012949574004899926) +zone = ('txz069', 0.0029415863889518216) + +[fips4860672] +centroid = (0.58521439598084246, -1.7747440363697684) +description = Ransom Canyon town, TX +station = ('klbb', 0.0030509165236687957) +zone = ('txz035', 0.0024097876566767369) + +[fips4860686] +centroid = (0.45726462267640355, -1.707709866791483) +description = Ratamosa CDP, TX +station = ('kt65', 0.0020480907102615699) +zone = ('txz255', 0.0043790640146657567) + +[fips4860752] +centroid = (0.58766063200714513, -1.6797203357365156) +description = Ravenna city, TX +station = ('kdua', 0.0052396970446621496) +zone = ('txz094', 0.0023651998142926122) + +[fips4860836] +centroid = (0.46208827639660288, -1.7065435679721304) +description = Raymondville city, TX +station = ('khrl', 0.0049429166784592318) +zone = ('txz254', 0.00093636706755418221) + +[fips4860932] +centroid = (0.47901287377953206, -1.7196756347036461) +description = Realitos CDP, TX +station = ('khbv', 0.0037068067947290022) +zone = ('txz240', 0.0041300677101989373) + +[fips4861040] +centroid = (0.55290431981585531, -1.6521840143284132) +description = Redfield CDP, TX +station = ('koch', 0.001850612705474462) +zone = ('txz152', 0.0013067634593427215) + +[fips4861076] +centroid = (0.51371628504119393, -1.8182329289404866) +description = Redford CDP, TX +station = ('kmrf', 0.016461910139944538) +zone = ('txz079', 0.0079876166588928321) + +[fips4861124] +centroid = (0.54813700532391041, -1.6531073807691807) +description = Redland CDP, TX +station = ('klfk', 0.0030546702871177395) +zone = ('txz165', 0.0030618464807327622) + +[fips4861172] +centroid = (0.58441692013902125, -1.6434287446687086) +description = Red Lick city, TX +station = ('ktxk', 0.002663920207483688) +zone = ('arz059', 0.0039134772262103112) + +[fips4861196] +centroid = (0.56737405924597695, -1.6890736599177081) +description = Red Oak city, TX +station = ('klnc', 0.0015041729979705537) +zone = ('txz134', 0.0028001495373931157) + +[fips4861340] +centroid = (0.58221291835960276, -1.6450804195530411) +description = Redwater city, TX +station = ('ktxk', 0.0042850047077837962) +zone = ('txz097', 0.002865438217585785) + +[fips4861352] +centroid = (0.52028083487708754, -1.7088402118282449) +description = Redwood CDP, TX +station = ('khyi', 0.0016096058049193179) +zone = ('txz207', 0.0040024070020687197) + +[fips4861436] +centroid = (0.49405811807720629, -1.697768698264926) +description = Refugio town, TX +station = ('krkp', 0.0052226746277330262) +zone = ('txz246', 0.001761620656119823) + +[fips4861454] +centroid = (0.46230256792216273, -1.7267200977239605) +description = Regino Ramirez CDP, TX +station = ('kapy', 0.0097505398805880824) +zone = ('txz252', 0.0033138734972405605) + +[fips4861466] +centroid = (0.45241201394391367, -1.7002084591197042) +description = Reid Hope King CDP, TX +station = ('kbro', 0.00037292950123070303) +zone = ('txz255', 0.0043255365460284009) + +[fips4861508] +centroid = (0.55617691688309978, -1.6577407586943276) +description = Reklaw city, TX +station = ('kjso', 0.0034935597183883716) +zone = ('txz149', 0.0027711927959165115) + +[fips4861532] +centroid = (0.45527067127246262, -1.7087798234361258) +description = Relampago CDP, TX +station = ('kt65', 0.0019260450048575667) +zone = ('txz255', 0.0051549768603837837) + +[fips4861568] +centroid = (0.56862256307309855, -1.6970973399148539) +description = Rendon CDP, TX +station = ('kfws', 0.00096093308952345069) +zone = ('txz118', 0.0034268160216335769) + +[fips4861592] +centroid = (0.58759122026279342, -1.6664418707873425) +description = Reno city, TX +station = ('kprx', 0.00072532416069806364) +zone = ('txz095', 0.0013221064574116873) + +[fips4861604] +centroid = (0.57500516233447174, -1.702833783380554) +description = Reno city, TX +station = ('kftw', 0.0035055477317122567) +zone = ('txz117', 0.0045765351249932654) + +[fips4861616] +centroid = (0.55935097266077671, -1.6838396967436573) +description = Retreat town, TX +station = ('kcrs', 0.0014915216563900816) +zone = ('txz146', 7.1329569120249118e-05) + +[fips4861700] +centroid = (0.57733563067148974, -1.7015773208520433) +description = Rhome city, TX +station = ('kafw', 0.0030747573027450265) +zone = ('txz102', 0.0033566075034561892) + +[fips4861724] +centroid = (0.47854406088915385, -1.7077636229324447) +description = Ricardo CDP, TX +station = ('kbks', 0.005626733147826391) +zone = ('txz242', 0.0017759898190785996) + +[fips4861736] +centroid = (0.56266271746314345, -1.6841856035481104) +description = Rice city, TX +station = ('kcrs', 0.0042141007952307685) +zone = ('txz146', 0.0033563615174521189) + +[fips4861796] +centroid = (0.57547503987569359, -1.6878742172958601) +description = Richardson city, TX +station = ('kads', 0.0018368233482075852) +zone = ('txz119', 0.0037330794522467134) + +[fips4861820] +centroid = (0.55714107166848648, -1.682988272774657) +description = Richland town, TX +station = ('kcrs', 0.0017830977661907835) +zone = ('txz146', 0.0022807993177651059) + +[fips4861844] +centroid = (0.57264668146295927, -1.6969228244429473) +description = Richland Hills city, TX +station = ('kftw', 0.0020947467426396709) +zone = ('txz118', 0.0011848050388990222) + +[fips4861880] +centroid = (0.54577803576020734, -1.7269343892495204) +description = Richland Springs town, TX +station = ('kbbd', 0.0058614987438102189) +zone = ('txz155', 0.0027830794945077827) + +[fips4861892] +centroid = (0.51629630055466214, -1.6713561943621831) +description = Richmond city, TX +station = ('ksgr', 0.0018016049367801977) +zone = ('txz227', 0.00095586463707296291) + +[fips4861904] +centroid = (0.50790243622316822, -1.6650547180044426) +description = Richwood city, TX +station = ('klbx', 0.0010453174396629085) +zone = ('txz237', 0.0017866877796896118) + +[fips4862108] +centroid = (0.54942378422152827, -1.6917748885477273) +description = Riesel city, TX +station = ('kcnw', 0.0034741651480919445) +zone = ('txz160', 0.0039513021256567301) + +[fips4862138] +centroid = (0.47760442797975766, -1.7363300725716591) +description = Rio Bravo city, TX +station = ('mmnl', 0.0017492165719889645) +zone = ('txz239', 0.0073109036715448723) + +[fips4862168] +centroid = (0.46043530996862408, -1.7247601453338484) +description = Rio Grande City city, TX +station = ('kmfe', 0.009585420049630429) +zone = ('txz252', 0.0034169085763840379) + +[fips4862180] +centroid = (0.45788061918260242, -1.7031178706229011) +description = Rio Hondo city, TX +station = ('khrl', 0.0011178639567717039) +zone = ('txz255', 0.0019974160458729553) + +[fips4862240] +centroid = (0.56259894313227554, -1.6995116189625528) +description = Rio Vista city, TX +station = ('kcpt', 0.0022517188896299624) +zone = ('txz133', 0.0025243629865776512) + +[fips4862252] +centroid = (0.56020939540007764, -1.7272916232408186) +description = Rising Star town, TX +station = ('kbwd', 0.0052004512108195858) +zone = ('txz129', 0.0044685411291491388) + +[fips4862292] +centroid = (0.46096772265694491, -1.7273570032745982) +description = Rivera CDP, TX +station = ('kapy', 0.010679063320528509) +zone = ('txz252', 0.0044752280793645145) + +[fips4862318] +centroid = (0.459112908900973, -1.7215884632039542) +description = Rivereno CDP, TX +station = ('kmfe', 0.0064615502580892721) +zone = ('txz252', 0.0047408730223500433) + +[fips4862384] +centroid = (0.57206286882816726, -1.6999231676001729) +description = River Oaks city, TX +station = ('knfw', 0.00077724931374048654) +zone = ('txz118', 0.0015671969192682144) + +[fips4862408] +centroid = (0.53840415929687147, -1.6650238431299746) +description = Riverside city, TX +station = ('kuts', 0.0032546685833280387) +zone = ('txz177', 0.0032239295757255696) + +[fips4862468] +centroid = (0.47646675256013771, -1.7068986726617412) +description = Riviera CDP, TX +station = ('kbks', 0.0052675131245798062) +zone = ('txz242', 0.002543434645693766) + +[fips4862504] +centroid = (0.57613477433294757, -1.696969145481295) +description = Roanoke city, TX +station = ('kafw', 0.0013632716326285356) +zone = ('txz103', 0.0037648056982947328) + +[fips4862528] +centroid = (0.59165235708608899, -1.760271748758939) +description = Roaring Springs town, TX +station = ('kcds', 0.012463401482775449) +zone = ('txz031', 0.0032466352838005524) + +[fips4862564] +centroid = (0.55666943134472002, -1.7538053387868848) +description = Robert Lee city, TX +station = ('ksjt', 0.0095111041606416539) +zone = ('txz065', 0.00066499596815510994) + +[fips4862588] +centroid = (0.54893200279819376, -1.6951139652061804) +description = Robinson city, TX +station = ('kpwg', 0.0029379332824211613) +zone = ('txz159', 0.0021169408100137738) + +[fips4862600] +centroid = (0.48500225036043093, -1.7046372495499322) +description = Robstown city, TX +station = ('krbo', 0.00038061637907129125) +zone = ('txz243', 0.0012998565863888956) + +[fips4862612] +centroid = (0.57152542959160058, -1.751950455217743) +description = Roby city, TX +station = ('ksww', 0.0050309116329933659) +zone = ('txz049', 0.00033979129502261418) + +[fips4862636] +centroid = (0.58144256493435753, -1.7428247568775954) +description = Rochester town, TX +station = ('kdys', 0.015606822779428943) +zone = ('txz098', 0.0030046739490835589) + +[fips4862672] +centroid = (0.53502080363529536, -1.6931261050013287) +description = Rockdale city, TX +station = ('kt35', 0.0039665264554469533) +zone = ('txz174', 0.0023512895619106269) + +[fips4862804] +centroid = (0.48952078562079654, -1.6938524412228386) +description = Rockport city, TX +station = ('krkp', 0.0006259132893054139) +zone = ('txz245', 0.001756071840735188) + +[fips4862816] +centroid = (0.52389684292795446, -1.7490519694756634) +description = Rocksprings town, TX +station = ('kecu', 0.0013675358924865838) +zone = ('txz184', 0.0015069349555281418) + +[fips4862828] +centroid = (0.57454811296325192, -1.6831629802327817) +description = Rockwall city, TX +station = ('khqz', 0.0032958608439861464) +zone = ('txz120', 0.00058150194280384791) + +[fips4862870] +centroid = (0.57632623695189134, -1.6583963916278393) +description = Rocky Mound town, TX +station = ('kosa', 0.0015462467877898412) +zone = ('txz110', 0.0010252906282076243) + +[fips4862924] +centroid = (0.53981651463417035, -1.6969791636712015) +description = Rogers town, TX +station = ('kt35', 0.0039698601263690111) +zone = ('txz158', 0.0041720936317405973) + +[fips4863008] +centroid = (0.52837724274416409, -1.7066956036032717) +description = Rollingwood city, TX +station = ('katt', 0.00080563207690115832) +zone = ('txz192', 0.0010653631445908286) + +[fips4863020] +centroid = (0.46088459262467246, -1.7276987736487237) +description = Roma city, TX +station = ('kapy', 0.010634847244035111) +zone = ('txz252', 0.0047730214590528015) + +[fips4863026] +centroid = (0.46110183375666819, -1.7281984090536922) +description = Roma Creek CDP, TX +station = ('kapy', 0.010268976652113163) +zone = ('txz252', 0.0050360685956832209) + +[fips4863044] +centroid = (0.52673574312937088, -1.6608426625607269) +description = Roman Forest town, TX +station = ('k6r3', 0.003868043798801082) +zone = ('txz200', 0.005260225267688704) + +[fips4863140] +centroid = (0.58317272727515201, -1.7829429125172294) +description = Ropesville city, TX +station = ('klbb', 0.0066172951179564697) +zone = ('txz034', 0.0043575456387287019) + +[fips4863176] +centroid = (0.56619397232553348, -1.7546945665874834) +description = Roscoe city, TX +station = ('ksww', 0.0011340754839769742) +zone = ('txz054', 0.0030691379122164348) + +[fips4863188] +centroid = (0.5423654632869529, -1.6925422225533666) +description = Rosebud city, TX +station = ('kt35', 0.0034196724787487853) +zone = ('txz160', 0.0031636524792852017) + +[fips4863200] +centroid = (0.52545720218582248, -1.6414858790519737) +description = Rose City city, TX +station = ('kbmt', 0.0026419132023228092) +zone = ('txz216', 0.0023510983476143859) + +[fips4863272] +centroid = (0.5269449033869299, -1.6439626059803087) +description = Rose Hill Acres city, TX +station = ('kbmt', 0.0021656847933806751) +zone = ('txz201', 0.0038670725547891461) + +[fips4863284] +centroid = (0.51556800956438986, -1.6722210050065462) +description = Rosenberg city, TX +station = ('ksgr', 0.0027899644629941186) +zone = ('txz227', 0.00065247977868358536) + +[fips4863332] +centroid = (0.51225341987534234, -1.6659705446228414) +description = Rosharon CDP, TX +station = ('kaxh', 0.0028230560355213996) +zone = ('txz237', 0.0027692925434331223) + +[fips4863350] +centroid = (0.49964659252892202, -1.7527759959539362) +description = Rosita CDP, TX +station = ('mmpg', 0.001869385791275223) +zone = ('txz217', 0.0026410637996883242) + +[fips4863380] +centroid = (0.55376134629175466, -1.6949298155168022) +description = Ross city, TX +station = ('kcnw', 0.0016625879742158667) +zone = ('txz159', 0.0033437558640276384) + +[fips4863404] +centroid = (0.56650485037189868, -1.6834026488456655) +description = Rosser village, TX +station = ('klnc', 0.0044598343118963761) +zone = ('txz121', 0.0034496890510248117) + +[fips4863464] +centroid = (0.5734112927549655, -1.753454091274921) +description = Rotan city, TX +station = ('ksww', 0.0067513780997723984) +zone = ('txz049', 0.0021524071020209987) + +[fips4863476] +centroid = (0.53048141169036844, -1.7167263424270411) +description = Round Mountain town, TX +station = ('kdzb', 0.0023676748188182334) +zone = ('txz190', 0.0023076446739240947) + +[fips4863500] +centroid = (0.53273934414367352, -1.7046170560904865) +description = Round Rock city, TX +station = ('kedc', 0.0026091841242579183) +zone = ('txz173', 0.0023902017979253441) + +[fips4863524] +centroid = (0.5247152627207996, -1.6876615140199196) +description = Round Top town, TX +station = ('k3t5', 0.0047076953709017213) +zone = ('txz209', 0.0047046067997553636) + +[fips4863572] +centroid = (0.57449121522963698, -1.6850922322813511) +description = Rowlett city, TX +station = ('khqz', 0.0029615275698674256) +zone = ('txz120', 0.0020897507680705829) + +[fips4863584] +centroid = (0.58548061105164928, -1.6707152571009729) +description = Roxton city, TX +station = ('kprx', 0.0042806988335100478) +zone = ('txz106', 0.0028834473114768763) + +[fips4863668] +centroid = (0.57555001922035931, -1.6811371765699918) +description = Royse City city, TX +station = ('kgvt', 0.0040547019546526442) +zone = ('txz120', 0.0018612754227402043) + +[fips4863752] +centroid = (0.57913412265249975, -1.7434664969902609) +description = Rule town, TX +station = ('kdys', 0.013309053581508797) +zone = ('txz098', 0.0023815273068489256) + +[fips4863782] +centroid = (0.57902198524805915, -1.7081290948778123) +description = Runaway Bay city, TX +station = ('kxbp', 0.00058807075458379887) +zone = ('txz102', 0.0032066385796643377) + +[fips4863788] +centroid = (0.50414352061314804, -1.7054092261313818) +description = Runge town, TX +station = ('knog', 0.0088646991565055674) +zone = ('txz222', 0.0022689760209626516) + +[fips4863848] +centroid = (0.5549755893056596, -1.6606591062832947) +description = Rusk city, TX +station = ('kjso', 0.0016074431396938971) +zone = ('txz149', 0.00072699897825544179) + +[fips4864004] +centroid = (0.51175366229732633, -1.7360708911777376) +description = Sabinal city, TX +station = ('kuva', 0.0045911249813144163) +zone = ('txz203', 0.0044968348938961723) + +[fips4864064] +centroid = (0.57541774071635066, -1.6856544028334186) +description = Sachse city, TX +station = ('ktki', 0.0037408543875440022) +zone = ('txz120', 0.0028249580641633472) + +[fips4864088] +centroid = (0.5878521993458441, -1.6903325659071717) +description = Sadler city, TX +station = ('kgyi', 0.0027168774941489296) +zone = ('txz093', 0.002665483304369901) + +[fips4864112] +centroid = (0.57361230232491767, -1.6993434390358306) +description = Saginaw city, TX +station = ('kftw', 0.00056293824817827353) +zone = ('txz118', 0.0019785907998689876) + +[fips4864172] +centroid = (0.513479635847916, -1.714034992360588) +description = St. Hedwig town, TX +station = ('krnd', 0.0022899626533152218) +zone = ('txz221', 0.0046699464773519613) + +[fips4864184] +centroid = (0.58808909288521727, -1.702098685606199) +description = St. Jo city, TX +station = ('k0f2', 0.0041589150825242054) +zone = ('txz091', 0.0029461338465736611) + +[fips4864220] +centroid = (0.57678744020673078, -1.6851745769154605) +description = St. Paul town, TX +station = ('ktki', 0.0024110475219521568) +zone = ('txz104', 0.0024646555953288622) + +[fips4864244] +centroid = (0.49027967223285623, -1.7027989291553915) +description = St. Paul CDP, TX +station = ('kcrp', 0.0057052063804737757) +zone = ('txz244', 0.0015775650497246185) + +[fips4864268] +centroid = (0.54016552812469165, -1.70213692577011) +description = Salado village, TX +station = ('kile', 0.0033272510061598463) +zone = ('txz158', 0.0016974530710929033) + +[fips4864316] +centroid = (0.4628186094220999, -1.729831740527586) +description = Salineño CDP, TX +station = ('kapy', 0.0081841417741349062) +zone = ('txz252', 0.0058859206270589614) + +[fips4864322] +centroid = (0.46298738276076773, -1.7295332543189099) +description = Salineño North CDP, TX +station = ('kapy', 0.0080969068256478045) +zone = ('txz252', 0.0056002571751704614) + +[fips4864442] +centroid = (0.46134045517200084, -1.7235351685450435) +description = Sammy Martinez CDP, TX +station = ('kmfe', 0.0089709909201398479) +zone = ('txz252', 0.0022646155149539382) + +[fips4864448] +centroid = (0.61173989249935978, -1.7502406259627341) +description = Samnorwood CDP, TX +station = ('kcds', 0.010764889067954428) +zone = ('txz020', 0.0014960135749521898) + +[fips4864460] +centroid = (0.54240150433600665, -1.6410582384786501) +description = Sam Rayburn CDP, TX +station = ('kjas', 0.003349583627110882) +zone = ('txz259', 0.0037234556632407159) + +[fips4864472] +centroid = (0.54871252764475553, -1.7532155222194659) +description = San Angelo city, TX +station = ('ksjt', 0.0017095878061526757) +zone = ('txz072', 0.00062139260791210695) + +[fips4865000] +centroid = (0.51439047082465439, -1.7195881238949511) +description = San Antonio city, TX +station = ('ksat', 0.00138559710146574) +zone = ('txz205', 0.00041444182537209964) + +[fips4865024] +centroid = (0.55029932864079123, -1.6425462887456077) +description = San Augustine city, TX +station = ('koch', 0.0090564031221191544) +zone = ('txz166', 0.0025158341597068534) + +[fips4865036] +centroid = (0.45604402666402127, -1.704210167481969) +description = San Benito city, TX +station = ('khrl', 0.0015259743081714487) +zone = ('txz255', 0.0010272675875414882) + +[fips4865048] +centroid = (0.45894598561131228, -1.7115231319544104) +description = San Carlos CDP, TX +station = ('kt65', 0.0024977207635498828) +zone = ('txz253', 0.002554293599590975) + +[fips4865049] +centroid = (0.4797820927407635, -1.7343847634939713) +description = San Carlos I CDP, TX +station = ('klrd', 0.0016635071387813959) +zone = ('txz239', 0.0047833880210960238) + +[fips4865050] +centroid = (0.47978396024306313, -1.7343090511110197) +description = San Carlos II CDP, TX +station = ('klrd', 0.0017181757589071346) +zone = ('txz239', 0.0047730346975683076) + +[fips4865066] +centroid = (0.57444297432911184, -1.7032261508496949) +description = Sanctuary town, TX +station = ('knfw', 0.0032576919838637939) +zone = ('txz117', 0.0039701786079761377) + +[fips4865084] +centroid = (0.52623062739055126, -1.7873553143057814) +description = Sanderson CDP, TX +station = ('k6r6', 0.0033814410845264707) +zone = ('txz082', 0.0051648578206993064) + +[fips4865168] +centroid = (0.48906289849153584, -1.7081125142499183) +description = Sandia CDP, TX +station = ('krbo', 0.0050455602374167643) +zone = ('txz244', 0.0053788484667609956) + +[fips4865180] +centroid = (0.48451895123726119, -1.7145923632572124) +description = San Diego city, TX +station = ('knqi', 0.0021308545283596748) +zone = ('txz241', 0.0023554898381413485) + +[fips4865210] +centroid = (0.46108438046414829, -1.7292622919525378) +description = Sandoval CDP, TX +station = ('kapy', 0.0099914204789108996) +zone = ('txz252', 0.0058896385927534626) + +[fips4865240] +centroid = (0.56339847846261415, -1.7688421705975643) +description = Sand Springs CDP, TX +station = ('kbpg', 0.0028681303814712825) +zone = ('txz052', 0.0013787604724701322) + +[fips4865342] +centroid = (0.48746998884311821, -1.7068002360919288) +description = Sandy Hollow-Escondidas CDP, TX +station = ('krbo', 0.0030806374359864061) +zone = ('txz243', 0.0044121172715863421) + +[fips4865360] +centroid = (0.55114768083030807, -1.8546221188200649) +description = San Elizario CDP, TX +station = ('mmcs', 0.0027207764713548951) +zone = ('txz419', 0.0042536421199250943) + +[fips4865372] +centroid = (0.52001311882312418, -1.6773638096337653) +description = San Felipe town, TX +station = ('ktme', 0.0031294877319661156) +zone = ('txz211', 0.003064989735975761) + +[fips4865378] +centroid = (0.46082467547145151, -1.724997422845657) +description = San Fernando CDP, TX +station = ('kmfe', 0.0099273760276984285) +zone = ('txz252', 0.0031561849645427896) + +[fips4865384] +centroid = (0.62312834040154796, -1.7720636993308958) +description = Sanford town, TX +station = ('kbgd', 0.0018681909575988961) +zone = ('txz008', 0.0034693242827626143) + +[fips4865408] +centroid = (0.58264408449801541, -1.6958413835318262) +description = Sanger city, TX +station = ('kdto', 0.003236354134271523) +zone = ('txz103', 0.0031956126143685357) + +[fips4865432] +centroid = (0.46624060667331513, -1.7182400315807105) +description = San Isidro CDP, TX +station = ('kebg', 0.0068696145668049697) +zone = ('txz252', 0.0052471259015794795) + +[fips4865516] +centroid = (0.4571047505169209, -1.7130789533562232) +description = San Juan city, TX +station = ('kmfe', 0.0015364715331703817) +zone = ('txz253', 0.0036345750744967709) + +[fips4865532] +centroid = (0.46102812850235647, -1.7268931820258808) +description = San Juan CDP, TX +station = ('kapy', 0.010800678117077273) +zone = ('txz252', 0.0041083460880950501) + +[fips4865552] +centroid = (0.52610220606418945, -1.7072749307418862) +description = San Leanna village, TX +station = ('kaus', 0.0021716621252294388) +zone = ('txz192', 0.0033863632709792042) + +[fips4865564] +centroid = (0.51467909592305661, -1.6569941766534944) +description = San Leon CDP, TX +station = ('kefd', 0.0039662339880526167) +zone = ('txz238', 0.0017022392198204463) + +[fips4865600] +centroid = (0.52145024038250887, -1.709228338147303) +description = San Marcos city, TX +station = ('khyi', 0.0010527877963170335) +zone = ('txz191', 0.0035039381244774898) + +[fips4865612] +centroid = (0.48841901162389012, -1.7064114814543396) +description = San Patricio city, TX +station = ('krbo', 0.003801041339793415) +zone = ('txz244', 0.0038986933886593594) + +[fips4865620] +centroid = (0.45346113135728738, -1.7032348425893695) +description = San Pedro CDP, TX +station = ('kbro', 0.0030436796353610885) +zone = ('txz255', 0.0024263476365773071) + +[fips4865636] +centroid = (0.46252960035126212, -1.7041333380882961) +description = San Perlita city, TX +station = ('khrl', 0.0049650881346504977) +zone = ('txz254', 0.0013738631966590351) + +[fips4865648] +centroid = (0.54447024309839553, -1.7231171970957762) +description = San Saba town, TX +station = ('kaqo', 0.007261105021763881) +zone = ('txz155', 0.0015230939917751101) + +[fips4865660] +centroid = (0.57251593884869234, -1.699986139079585) +description = Sansom Park city, TX +station = ('kftw', 0.00074433837303034716) +zone = ('txz118', 0.0017117197724440423) + +[fips4865672] +centroid = (0.55391364372228358, -1.7335556971926886) +description = Santa Anna town, TX +station = ('kcom', 0.0021121255772959899) +zone = ('txz139', 0.0020048541198201346) + +[fips4865678] +centroid = (0.46546601209798749, -1.7201595795986391) +description = Santa Anna CDP, TX +station = ('kebg', 0.0077767001081962845) +zone = ('txz252', 0.003380910839502115) + +[fips4865690] +centroid = (0.51617119535387912, -1.7134086285986323) +description = Santa Clara city, TX +station = ('krnd', 0.0018490359351063473) +zone = ('txz207', 0.0033834322923880101) + +[fips4865708] +centroid = (0.45995864309661189, -1.7238200760921394) +description = Santa Cruz CDP, TX +station = ('kmfe', 0.0086295145589653285) +zone = ('txz252', 0.0036659905288086827) + +[fips4865726] +centroid = (0.51291037925908556, -1.6598344905716051) +description = Santa Fe city, TX +station = ('klvj', 0.0031885830020855098) +zone = ('txz238', 0.0020805273844625295) + +[fips4865744] +centroid = (0.45512518062601637, -1.7077460300135843) +description = Santa Maria CDP, TX +station = ('kt65', 0.0026487646881025798) +zone = ('txz255', 0.0042582809130541658) + +[fips4865756] +centroid = (0.46023354990709353, -1.7032481594515625) +description = Santa Monica CDP, TX +station = ('khrl', 0.0028324569517696194) +zone = ('txz254', 0.0026427275101019239) + +[fips4865768] +centroid = (0.45825459088142723, -1.7073727913530454) +description = Santa Rosa town, TX +station = ('kt65', 0.0026898728355901759) +zone = ('txz254', 0.0040332928885523697) + +[fips4865774] +centroid = (0.45987214457888304, -1.7238601663050577) +description = Santa Rosa CDP, TX +station = ('kmfe', 0.0086341317806139083) +zone = ('txz252', 0.0037563685531942547) + +[fips4865777] +centroid = (0.4603403640573156, -1.7258388635313362) +description = Santel CDP, TX +station = ('kmfe', 0.010462970080589397) +zone = ('txz252', 0.0039653241784919453) + +[fips4865792] +centroid = (0.47207971040561725, -1.7353946459057601) +description = San Ygnacio CDP, TX +station = ('kapy', 0.0031248333766510936) +zone = ('txz248', 0.0041594241660475127) + +[fips4865876] +centroid = (0.47521453118170931, -1.7069192326403297) +description = Sarita CDP, TX +station = ('kbks', 0.0050088579518010193) +zone = ('txz242', 0.0037340440227228021) + +[fips4866000] +centroid = (0.57990196280362216, -1.6913616993006102) +description = Savannah CDP, TX +station = ('kads', 0.0046545352338356345) +zone = ('txz103', 0.0030781281165584112) + +[fips4866008] +centroid = (0.58642097699933116, -1.6819088913520537) +description = Savoy city, TX +station = ('kgyi', 0.0048196019420758554) +zone = ('txz094', 0.0037764251127662299) + +[fips4866089] +centroid = (0.51843062879034096, -1.7220819550499558) +description = Scenic Oaks CDP, TX +station = ('k5c1', 0.00043591364379788735) +zone = ('txz189', 0.0042544461494498607) + +[fips4866128] +centroid = (0.51605043602293366, -1.714919088893186) +description = Schertz city, TX +station = ('krnd', 0.00071287711340728985) +zone = ('txz206', 0.0042123647254620634) + +[fips4866188] +centroid = (0.51804393364126899, -1.6913479984659818) +description = Schulenburg city, TX +station = ('k3t5', 0.0040031885039446555) +zone = ('txz209', 0.0034100259133476364) + +[fips4866248] +centroid = (0.4561127053700873, -1.7112515063629226) +description = Scissors CDP, TX +station = ('kt65', 0.0013978454005007855) +zone = ('txz253', 0.0050515392780217262) + +[fips4866284] +centroid = (0.58725693735115891, -1.7186055907925408) +description = Scotland city, TX +station = ('ksps', 0.0058814943625624854) +zone = ('txz089', 0.0032291574302793992) + +[fips4866332] +centroid = (0.5679375562482758, -1.6447866457333453) +description = Scottsville city, TX +station = ('kasl', 0.00096126037140469587) +zone = ('txz138', 0.0019464485029816231) + +[fips4866368] +centroid = (0.56745579301484783, -1.6822432440768582) +description = Scurry town, TX +station = ('ktrl', 0.0039631339397521474) +zone = ('txz121', 0.0020863153156633119) + +[fips4866392] +centroid = (0.51649477939719879, -1.6579480165430021) +description = Seabrook city, TX +station = ('kefd', 0.0026320046233422045) +zone = ('txz238', 0.0034978977643055379) + +[fips4866416] +centroid = (0.49591982588372358, -1.6880035636467254) +description = Seadrift city, TX +station = ('kpkv', 0.00421792915193662) +zone = ('txz247', 0.0016796427326061) + +[fips4866428] +centroid = (0.5699090627180361, -1.6850291386288916) +description = Seagoville city, TX +station = ('khqz', 0.0016473035589041572) +zone = ('txz121', 0.0038948333875158457) + +[fips4866440] +centroid = (0.57494583859319637, -1.7901094438654284) +description = Seagraves city, TX +station = ('kgnc', 0.0048256084114288722) +zone = ('txz045', 0.0036576073787374795) + +[fips4866464] +centroid = (0.5194954716202751, -1.6783319612231389) +description = Sealy city, TX +station = ('ktme', 0.0040360630034811454) +zone = ('txz211', 0.0027679925160044396) + +[fips4866512] +centroid = (0.45981116277481837, -1.7068673614549603) +description = Sebastian CDP, TX +station = ('khrl', 0.0032057773183546742) +zone = ('txz254', 0.0024393742636118513) + +[fips4866536] +centroid = (0.50179097386109228, -1.7540826541517343) +description = Seco Mines CDP, TX +station = ('mmpg', 0.00091140295335671764) +zone = ('txz217', 0.0028653533936949947) + +[fips4866644] +centroid = (0.5164232034445746, -1.7098398142507394) +description = Seguin city, TX +station = ('kbaz', 0.0025641732436912615) +zone = ('txz207', 0.00029408910697463573) + +[fips4866704] +centroid = (0.51638140280898936, -1.7159258995254913) +description = Selma city, TX +station = ('krnd', 0.0010468753640403574) +zone = ('txz206', 0.0039105203143845763) + +[fips4866764] +centroid = (0.57109082515456144, -1.7915762011155119) +description = Seminole city, TX +station = ('kgnc', 0.0008006596485904665) +zone = ('txz045', 0.00040343521817298993) + +[fips4866806] +centroid = (0.53598733206846483, -1.7050825877618709) +description = Serenada CDP, TX +station = ('kgtu', 0.00048925775945550835) +zone = ('txz173', 0.001765999863136167) + +[fips4866848] +centroid = (0.59718786079500663, -1.7749032103975502) +description = Seth Ward CDP, TX +station = ('kpvw', 0.00090457427476593906) +zone = ('txz029', 0.0031841954055090152) + +[fips4866884] +centroid = (0.53846629301824245, -1.6555822751018012) +description = Seven Oaks city, TX +station = ('klfk', 0.0068508414460472138) +zone = ('txz179', 0.0011120277935947834) + +[fips4866908] +centroid = (0.56440661554515104, -1.6796064180962378) +description = Seven Points city, TX +station = ('kcrs', 0.0060265567190052145) +zone = ('txz121', 0.0046313366357369446) + +[fips4866968] +centroid = (0.5863472019318493, -1.732387548324329) +description = Seymour city, TX +station = ('kf05', 0.011007444160264971) +zone = ('txz088', 0.00075215283655553694) + +[fips4867010] +centroid = (0.56048505270213755, -1.6654717295226216) +description = Shadybrook CDP, TX +station = ('ktyr', 0.0041447748180993334) +zone = ('txz136', 0.0051085659156609436) + +[fips4867082] +centroid = (0.52650916448587692, -1.7082516693511798) +description = Shady Hollow CDP, TX +station = ('katt', 0.003089394489088688) +zone = ('txz191', 0.0030167052018237137) + +[fips4867100] +centroid = (0.57878830311450957, -1.6935801174996501) +description = Shady Shores town, TX +station = ('kdto', 0.0024993256366433389) +zone = ('txz103', 0.0014071985968276274) + +[fips4867136] +centroid = (0.5880027689004137, -1.7800484759390145) +description = Shallowater city, TX +station = ('klbb', 0.0025398963540493816) +zone = ('txz035', 0.0028205669858916648) + +[fips4867160] +centroid = (0.61462469486010363, -1.7496242454840998) +description = Shamrock city, TX +station = ('khhf', 0.012146714072744954) +zone = ('txz015', 0.0032619364515354293) + +[fips4867268] +centroid = (0.51634602498505133, -1.7201298217348926) +description = Shavano Park city, TX +station = ('ksat', 0.001625615990746103) +zone = ('txz205', 0.0024256793230377064) + +[fips4867376] +centroid = (0.52115131784151969, -1.6603868872798613) +description = Sheldon CDP, TX +station = ('kiah', 0.004297039372881035) +zone = ('txz213', 0.0039226924008975506) + +[fips4867400] +centroid = (0.52680635915090657, -1.6660130433901277) +description = Shenandoah city, TX +station = ('kdwh', 0.0024924782616268775) +zone = ('txz199', 0.0021543445978023943) + +[fips4867424] +centroid = (0.5320718604245408, -1.6582704486690154) +description = Shepherd city, TX +station = ('k6r3', 0.0021900858151814584) +zone = ('txz178', 0.002851083286355176) + +[fips4867496] +centroid = (0.58653068839611155, -1.6863704765189267) +description = Sherman city, TX +station = ('kgyi', 0.0020424043449950554) +zone = ('txz093', 0.00088901068921337721) + +[fips4867554] +centroid = (0.59075359978777442, -1.6897380194974798) +description = Sherwood Shores CDP, TX +station = ('kgyi', 0.0031385513095228989) +zone = ('okz051', 0.0031562798762915191) + +[fips4867640] +centroid = (0.5137020780610827, -1.6959855651813336) +description = Shiner city, TX +station = ('k3t5', 0.0089539936015445368) +zone = ('txz225', 0.0037852875604400963) + +[fips4867688] +centroid = (0.51698380320031512, -1.6583941750596891) +description = Shoreacres city, TX +station = ('kefd', 0.0022706345730036737) +zone = ('txz238', 0.0040443005422537703) + +[fips4867766] +centroid = (0.51467516893223964, -1.6668091404218399) +description = Sienna Plantation CDP, TX +station = ('kaxh', 0.00049094292263481064) +zone = ('txz227', 0.0041499045056686262) + +[fips4867772] +centroid = (0.54425556760040017, -1.8385216310033423) +description = Sierra Blanca CDP, TX +station = ('kgdp', 0.013753060027325802) +zone = ('txz422', 0.0021700758705805283) + +[fips4867775] +centroid = (0.50189265674331351, -1.7539119434975967) +description = Siesta Acres CDP, TX +station = ('mmpg', 0.0010545187911375324) +zone = ('txz217', 0.0027228496264465512) + +[fips4867778] +centroid = (0.46862542456324019, -1.7323406513273278) +description = Siesta Shores CDP, TX +station = ('kapy', 0.0020918286298622097) +zone = ('txz248', 0.0029572036023076502) + +[fips4867832] +centroid = (0.52962873108430653, -1.6436950120993932) +description = Silsbee city, TX +station = ('kbpt', 0.0042022882599602887) +zone = ('txz261', 0.0027727844575412644) + +[fips4867904] +centroid = (0.60163893907978283, -1.7680892006516693) +description = Silverton city, TX +station = ('kpvw', 0.00796845274486962) +zone = ('txz024', 0.0017154106673681136) + +[fips4867964] +centroid = (0.51796692971467106, -1.6756699850479972) +description = Simonton city, TX +station = ('ktme', 0.002842852498862126) +zone = ('txz227', 0.0044613630447695599) + +[fips4868036] +centroid = (0.48940388346749797, -1.7019503849796569) +description = Sinton city, TX +station = ('kcrp', 0.0047842367133758045) +zone = ('txz244', 0.00054975574837544524) + +[fips4868120] +centroid = (0.62083139983946078, -1.765802732065094) +description = Skellytown town, TX +station = ('kppa', 0.0026147866176759664) +zone = ('txz013', 0.0038956586943115) + +[fips4868132] +centroid = (0.49335935805787778, -1.7049572207617003) +description = Skidmore CDP, TX +station = ('kbea', 0.0022634829293407027) +zone = ('txz232', 0.0027477280510934819) + +[fips4868180] +centroid = (0.58367831425286976, -1.7740772158757514) +description = Slaton city, TX +station = ('klbb', 0.0046275388363371927) +zone = ('txz035', 0.0038664212815366448) + +[fips4868300] +centroid = (0.510880421712676, -1.7040967385338821) +description = Smiley city, TX +station = ('kbaz', 0.0099840954847566447) +zone = ('txz223', 0.0039165782842356328) + +[fips4868456] +centroid = (0.5237237237194492, -1.6955945241624242) +description = Smithville city, TX +station = ('k3t5', 0.0034893632696534863) +zone = ('txz193', 0.0029663769179046895) + +[fips4868504] +centroid = (0.5862104030250781, -1.7830894678145193) +description = Smyer town, TX +station = ('klbb', 0.0052269208305759573) +zone = ('txz034', 0.0026361235243728127) + +[fips4868576] +centroid = (0.53214137688864771, -1.6836749551155616) +description = Snook city, TX +station = ('kcll', 0.0022317805500854421) +zone = ('txz195', 0.00230962714191415) + +[fips4868624] +centroid = (0.57095910515591342, -1.76122450654431) +description = Snyder city, TX +station = ('ksnk', 0.00067955899924656378) +zone = ('txz048', 0.0005776754152360061) + +[fips4868636] +centroid = (0.55224467262506405, -1.8546319101171684) +description = Socorro city, TX +station = ('mmcs', 0.0025410872422077027) +zone = ('txz419', 0.0031681698458278025) + +[fips4868678] +centroid = (0.45691220579384084, -1.7077952657517832) +description = Solis CDP, TX +station = ('kt65', 0.0019360766885233869) +zone = ('txz255', 0.0043557969951669951) + +[fips4868708] +centroid = (0.51013551518792477, -1.7218868621461678) +description = Somerset city, TX +station = ('kskf', 0.0029230229940828412) +zone = ('txz205', 0.0043761345569830546) + +[fips4868720] +centroid = (0.52964665561572455, -1.684788702071137) +description = Somerville city, TX +station = ('k11r', 0.0032510622531142595) +zone = ('txz195', 0.0028820292297284489) + +[fips4868756] +centroid = (0.53356039938368915, -1.7565684218855946) +description = Sonora city, TX +station = ('ksoa', 0.00026648951298018737) +zone = ('txz078', 0.0020314811627716984) + +[fips4868828] +centroid = (0.52596970066737803, -1.6475889812869324) +description = Sour Lake city, TX +station = ('kbmt', 0.0029493835295961836) +zone = ('txz201', 0.0034335990819576285) + +[fips4868846] +centroid = (0.45643442191110739, -1.7123050045527188) +description = South Alamo CDP, TX +station = ('kmfe', 0.0022938537216599217) +zone = ('txz253', 0.0044276289065026267) + +[fips4868966] +centroid = (0.47594528308622686, -1.7230579955275485) +description = South Fork Estates CDP, TX +station = ('khbv', 0.001120864457940719) +zone = ('txz249', 0.0039705410389517517) + +[fips4869020] +centroid = (0.51768252831305861, -1.66204844072776) +description = South Houston city, TX +station = ('khou', 0.00096377881503049501) +zone = ('txz213', 0.0042314362021064391) + +[fips4869032] +centroid = (0.57516459816164145, -1.6955671399464607) +description = Southlake city, TX +station = ('kdfw', 0.0019412036022499924) +zone = ('txz118', 0.0038371109625340524) + +[fips4869072] +centroid = (0.48685287532619809, -1.7098733594789628) +description = South La Paloma CDP, TX +station = ('kali', 0.0029113355969087556) +zone = ('txz241', 0.0034179615301272196) + +[fips4869104] +centroid = (0.58686155046241217, -1.6878886511687741) +description = Southmayd city, TX +station = ('kgyi', 0.0017184951203454049) +zone = ('txz093', 0.00045630937389703319) + +[fips4869120] +centroid = (0.54872849740741125, -1.7048247851780589) +description = South Mountain town, TX +station = ('kgop', 0.0017827157818479397) +zone = ('txz157', 0.0019800189759342818) + +[fips4869140] +centroid = (0.4558275185703114, -1.6959026096819865) +description = South Padre Island town, TX +station = ('kspl', 0.0008281040595134768) +zone = ('txz257', 0.0024566387845654314) + +[fips4869194] +centroid = (0.45158825344355735, -1.6996581044466725) +description = South Point CDP, TX +station = ('kbro', 0.00069272883464685747) +zone = ('txz257', 0.0052296134618797551) + +[fips4869272] +centroid = (0.51851438714114406, -1.6656634190343682) +description = Southside Place city, TX +station = ('kmcj', 0.00053839309140190034) +zone = ('txz213', 0.0026750190759879111) + +[fips4869326] +centroid = (0.5437734203945368, -1.6336774679647688) +description = South Toledo Bend CDP, TX +station = ('kbkb', 0.0027292077526811067) +zone = ('txz167', 0.0049482337284395802) + +[fips4869380] +centroid = (0.59212096053695684, -1.7829278677790772) +description = Spade CDP, TX +station = ('klbb', 0.0066681649992510542) +zone = ('txz028', 0.0037888123460864762) + +[fips4869432] +centroid = (0.55279167626593162, -1.8542354062177004) +description = Sparks CDP, TX +station = ('kelp', 0.0032945760809319101) +zone = ('txz419', 0.0027225558365820118) + +[fips4869476] +centroid = (0.63177896011930268, -1.7661735272646801) +description = Spearman city, TX +station = ('kbpc', 0.0060193017552661625) +zone = ('txz003', 0.0026455328830292733) + +[fips4869548] +centroid = (0.52758446183803065, -1.6608965059681511) +description = Splendora city, TX +station = ('k6r3', 0.0032481386007535422) +zone = ('txz200', 0.0054497529931606999) + +[fips4869560] +centroid = (0.50916706689257829, -1.7525070058096188) +description = Spofford city, TX +station = ('kdlf', 0.0012978500168171572) +zone = ('txz202', 0.0030922651473117469) + +[fips4869596] +centroid = (0.52468382934097124, -1.6647642603103256) +description = Spring CDP, TX +station = ('kiah', 0.0011160959665807808) +zone = ('txz213', 0.0035778585997059734) + +[fips4869708] +centroid = (0.48453008643788886, -1.7059175009161476) +description = Spring Gardens CDP, TX +station = ('krbo', 0.00084905583545552663) +zone = ('txz243', 0.0018903993719284061) + +[fips4869764] +centroid = (0.59745449474483381, -1.7855719019695084) +description = Springlake town, TX +station = ('kpvw', 0.0085674703544051812) +zone = ('txz028', 0.0029216879908915659) + +[fips4869800] +centroid = (0.5754276541865021, -1.7048508778503764) +description = Springtown city, TX +station = ('kxbp', 0.0041890045585097372) +zone = ('txz117', 0.0038142641141825921) + +[fips4869830] +centroid = (0.51992656794551784, -1.6668607498078212) +description = Spring Valley Village city, TX +station = ('kmcj', 0.0021018089138022332) +zone = ('txz213', 0.0020642846157781646) + +[fips4869848] +centroid = (0.58427659566716084, -1.7601683030941733) +description = Spur city, TX +station = ('ksnk', 0.013748373363790417) +zone = ('txz037', 0.002654820684680842) + +[fips4869908] +centroid = (0.51706653180685969, -1.6679361693330226) +description = Stafford city, TX +station = ('ksgr', 0.0012887293434594136) +zone = ('txz227', 0.0035535519362311372) + +[fips4869932] +centroid = (0.52607145336276928, -1.6702772841784777) +description = Stagecoach town, TX +station = ('kdwh', 0.0026138890913910864) +zone = ('txz199', 0.0040580299836917664) + +[fips4869980] +centroid = (0.57683011350694202, -1.7382120960106695) +description = Stamford city, TX +station = ('kabi', 0.011133207638304009) +zone = ('txz098', 0.0030143851242123063) + +[fips4870040] +centroid = (0.56078317239167075, -1.7766235639879484) +description = Stanton city, TX +station = ('kbpg', 0.004259479177641236) +zone = ('txz051', 0.0038531195691036617) + +[fips4870052] +centroid = (0.51940635510866839, -1.7073477633315717) +description = Staples city, TX +station = ('khyi', 0.0024162953751443602) +zone = ('txz208', 0.0033696835425095525) + +[fips4870076] +centroid = (0.56185887116955235, -1.6764772172803373) +description = Star Harbor city, TX +station = ('kcrs', 0.0057387206377299141) +zone = ('txz135', 0.0029927837950630832) + +[fips4870208] +centroid = (0.56226174552079022, -1.7142609775921365) +description = Stephenville city, TX +station = ('ksep', 0.00054081940194546834) +zone = ('txz130', 0.00036891777238135486) + +[fips4870232] +centroid = (0.55569843486866555, -1.7625360691173062) +description = Sterling City city, TX +station = ('kbpg', 0.010067496360528692) +zone = ('txz064', 0.00097095420734165491) + +[fips4870340] +centroid = (0.62523092109813305, -1.7705251741419701) +description = Stinnett city, TX +station = ('kbgd', 0.0022354351502239201) +zone = ('txz008', 0.001292366450058028) + +[fips4870376] +centroid = (0.51026400632745661, -1.7097923936549626) +description = Stockdale city, TX +station = ('krnd', 0.0071088556113821236) +zone = ('txz221', 0.0021589609974504045) + +[fips4870460] +centroid = (0.52802465132867615, -1.721957670153921) +description = Stonewall CDP, TX +station = ('kt82', 0.0037512359720706513) +zone = ('txz190', 0.003942600194036491) + +[fips4870520] +centroid = (0.5198368754752577, -1.6472327072267228) +description = Stowell CDP, TX +station = ('kbmt', 0.0055367779856859397) +zone = ('txz215', 0.0035853889122325383) + +[fips4870544] +centroid = (0.63419346605980431, -1.7815258971508277) +description = Stratford city, TX +station = ('kdux', 0.0084011372264246459) +zone = ('txz002', 0.0027378865828667494) + +[fips4870580] +centroid = (0.5681173775211088, -1.7191158727059466) +description = Strawn city, TX +station = ('kbkd', 0.0064737184663021677) +zone = ('txz116', 0.0044592759481344975) + +[fips4870604] +centroid = (0.55633987827535858, -1.6811717689957664) +description = Streetman town, TX +station = ('kcrs', 0.0026085785799699135) +zone = ('txz146', 0.0037068229572697177) + +[fips4870688] +centroid = (0.51201423995464912, -1.807127678162727) +description = Study Butte CDP, TX +station = ('ke38', 0.018416325637479521) +zone = ('txz081', 0.0084199175703209735) + +[fips4870772] +centroid = (0.59457110610078412, -1.7893847308001227) +description = Sudan city, TX +station = ('kcvn', 0.010299475624700322) +zone = ('txz028', 0.0024941822919734924) + +[fips4870808] +centroid = (0.5165638246224078, -1.6690483978521484) +description = Sugar Land city, TX +station = ('ksgr', 0.00046490470853330265) +zone = ('txz227', 0.0024641680987173482) + +[fips4870868] +centroid = (0.45858904832598696, -1.7202740382909847) +description = Sullivan City city, TX +station = ('kmfe', 0.0051775732923583654) +zone = ('txz252', 0.0056977077029920073) + +[fips4870904] +centroid = (0.57845635894407277, -1.6687913632132072) +description = Sulphur Springs city, TX +station = ('kslr', 0.00032787315213220837) +zone = ('txz107', 0.00074927250969445281) + +[fips4871060] +centroid = (0.58394431988416629, -1.788802070082637) +description = Sundown city, TX +station = ('klbb', 0.010461754460499106) +zone = ('txz034', 0.0033868378557943015) + +[fips4871156] +centroid = (0.57246366623759515, -1.6852646184515707) +description = Sunnyvale town, TX +station = ('khqz', 0.0010107455695443559) +zone = ('txz120', 0.0027965521399635792) + +[fips4871180] +centroid = (0.62863740237229804, -1.7771725223975783) +description = Sunray city, TX +station = ('kdux', 0.0038661248121408371) +zone = ('txz007', 0.0032965297082725299) + +[fips4871228] +centroid = (0.53382661445449586, -1.7177315473564345) +description = Sunrise Beach Village city, TX +station = ('kdzb', 0.0013174994342368073) +zone = ('txz171', 0.0044964212285672654) + +[fips4871264] +centroid = (0.58379537348580102, -1.706389507759057) +description = Sunset CDP, TX +station = ('k0f2', 0.002466000972872218) +zone = ('txz091', 0.0040086237166888821) + +[fips4871274] +centroid = (0.46119632588237119, -1.728960158005725) +description = Sunset CDP, TX +station = ('kapy', 0.0099595670308312047) +zone = ('txz252', 0.0055971986385820478) + +[fips4871289] +centroid = (0.48509970954586229, -1.7358451851988699) +description = Sunset Acres CDP, TX +station = ('klrd', 0.0043736334557779293) +zone = ('txz239', 0.0020147240607415427) + +[fips4871324] +centroid = (0.52754304517488082, -1.7072097601476168) +description = Sunset Valley city, TX +station = ('katt', 0.001748054938818414) +zone = ('txz192', 0.0019653880980503892) + +[fips4871356] +centroid = (0.58767190683411308, -1.6655458362026612) +description = Sun Valley city, TX +station = ('kprx', 0.0007282052263944622) +zone = ('txz095', 0.0020689465273496304) + +[fips4871384] +centroid = (0.50531043029773892, -1.6630305200445648) +description = Surfside Beach city, TX +station = ('klbx', 0.0039950849470422097) +zone = ('txz237', 0.004917653158222568) + +[fips4871492] +centroid = (0.50694887558634105, -1.6702498825092214) +description = Sweeny city, TX +station = ('kbyy', 0.0028231113072927985) +zone = ('txz237', 0.0044917051227306593) + +[fips4871540] +centroid = (0.56666824809647043, -1.7524782776901311) +description = Sweetwater city, TX +station = ('ksww', 0.00083614121671124638) +zone = ('txz054', 0.0028662798039228547) + +[fips4871684] +centroid = (0.48834481767738785, -1.6997977133335396) +description = Taft city, TX +station = ('ktfp', 0.003129377835120406) +zone = ('txz244', 0.0020317910984500123) + +[fips4871696] +centroid = (0.48822089930049622, -1.7000495817978949) +description = Taft Southwest CDP, TX +station = ('ktfp', 0.0033031091495054382) +zone = ('txz244', 0.0018563263718804741) + +[fips4871708] +centroid = (0.57881710104716755, -1.7766593257843217) +description = Tahoka city, TX +station = ('klbb', 0.0087827119349028239) +zone = ('txz041', 0.00038204151862314178) + +[fips4871732] +centroid = (0.58229213885435083, -1.6598477201673352) +description = Talco city, TX +station = ('klbr', 0.0040570764465978739) +zone = ('txz109', 0.0032385446965688498) + +[fips4871756] +centroid = (0.57062684682621134, -1.6824701543329099) +description = Talty town, TX +station = ('khqz', 0.0021412967718967553) +zone = ('txz121', 0.0023200960883377236) + +[fips4871820] +centroid = (0.47978608954475055, -1.7345029746442087) +description = Tanquecitos South Acres CDP, TX +station = ('klrd', 0.0015759436721435672) +zone = ('txz239', 0.0047945547925803264) + +[fips4871824] +centroid = (0.4797379708172731, -1.7346509436581927) +description = Tanquecitos South Acres II CDP, TX +station = ('klrd', 0.0015039348543534096) +zone = ('txz239', 0.0048639624544854175) + +[fips4871924] +centroid = (0.56401852413267761, -1.6496656263908329) +description = Tatum city, TX +station = ('kggg', 0.0031449563842463183) +zone = ('txz151', 0.0041338643906334753) + +[fips4871948] +centroid = (0.53360247927195481, -1.7002945213051199) +description = Taylor city, TX +station = ('kedc', 0.0037742492757026377) +zone = ('txz173', 0.0030183525747475484) + +[fips4871960] +centroid = (0.51617770543198904, -1.6590272583392651) +description = Taylor Lake Village city, TX +station = ('kefd', 0.0017471172892274242) +zone = ('txz238', 0.003439712041850557) + +[fips4871966] +centroid = (0.52126600342666829, -1.6428696458961249) +description = Taylor Landing city, TX +station = ('kbmt', 0.0038088027895097874) +zone = ('txz215', 0.00071449449021754395) + +[fips4872020] +centroid = (0.55203868886674368, -1.6804172806134217) +description = Teague city, TX +station = ('kcrs', 0.0069264586864764034) +zone = ('txz147', 0.002359368132692624) + +[fips4872080] +centroid = (0.55402270934724074, -1.6849439491081017) +description = Tehuacana town, TX +station = ('kcrs', 0.0053094278970954763) +zone = ('txz161', 0.0035015088788284193) + +[fips4872176] +centroid = (0.54289611319272923, -1.6996456427958133) +description = Temple city, TX +station = ('ktpl', 0.00081681321051404164) +zone = ('txz158', 0.0018580892221112819) + +[fips4872188] +centroid = (0.55752289734894533, -1.6448978755665749) +description = Tenaha town, TX +station = ('koch', 0.0094022650673408134) +zone = ('txz153', 0.0030335175451202605) + +[fips4872248] +centroid = (0.51111960163336934, -1.8078345888696623) +description = Terlingua CDP, TX +station = ('ke38', 0.019246249789654286) +zone = ('txz081', 0.0095062475174882474) + +[fips4872284] +centroid = (0.57125158743196269, -1.6805253514007052) +description = Terrell city, TX +station = ('ktrl', 0.00038194991285924146) +zone = ('txz121', 0.0022812700781367086) + +[fips4872296] +centroid = (0.51447243148632793, -1.7182260689466946) +description = Terrell Hills city, TX +station = ('ksat', 0.0010254801650879967) +zone = ('txz205', 0.0012093730440420297) + +[fips4872368] +centroid = (0.58377956080277793, -1.6420270009332618) +description = Texarkana city, TX +station = ('ktxk', 0.0014258255743266005) +zone = ('arz070', 0.0036373959243024057) + +[fips4872392] +centroid = (0.51371527275022788, -1.6561899638407607) +description = Texas City city, TX +station = ('kgls', 0.0029423439824459463) +zone = ('txz238', 0.0012973782100569782) + +[fips4872464] +centroid = (0.63693522123505464, -1.7766363397980731) +description = Texhoma city, TX +station = ('kguy', 0.0052822427625202947) +zone = ('txz002', 0.0040219418752278982) + +[fips4872476] +centroid = (0.63488959063196215, -1.7980185779037661) +description = Texline town, TX +station = ('kcao', 0.0022445103130219034) +zone = ('txz001', 0.0061064300675703455) + +[fips4872530] +centroid = (0.57752262524754838, -1.6912821297400118) +description = The Colony city, TX +station = ('kads', 0.0023776609147009003) +zone = ('txz103', 0.0037101959041435386) + +[fips4872578] +centroid = (0.52964492773976513, -1.7101858083216548) +description = The Hills village, TX +station = ('kryw', 0.0026918739584419274) +zone = ('txz192', 0.0030875729460929395) + +[fips4872656] +centroid = (0.52659285302351011, -1.6669287478354788) +description = The Woodlands CDP, TX +station = ('kdwh', 0.0019373190310400215) +zone = ('txz199', 0.0022466573182570279) + +[fips4872740] +centroid = (0.51455392090910357, -1.6691779361892314) +description = Thompsons town, TX +station = ('ksgr', 0.0023628751210923054) +zone = ('txz227', 0.002183575119518525) + +[fips4872758] +centroid = (0.47577696353316445, -1.7241177594493595) +description = Thompsonville CDP, TX +station = ('khbv', 0.0015071889900641529) +zone = ('txz249', 0.0040167111260775903) + +[fips4872776] +centroid = (0.53431549863127203, -1.6965732699003575) +description = Thorndale city, TX +station = ('kt35', 0.0058234431103156587) +zone = ('txz174', 0.0045729812866366799) + +[fips4872788] +centroid = (0.54820716755984056, -1.6855275348500913) +description = Thornton town, TX +station = ('kcnw', 0.0084057886723112075) +zone = ('txz161', 0.0023678910434290629) + +[fips4872800] +centroid = (0.55115625039693539, -1.7963290468279578) +description = Thorntonville town, TX +station = ('kink', 0.0054559189069510678) +zone = ('txz067', 0.0029432500832215023) + +[fips4872824] +centroid = (0.53386572728303305, -1.6981739811705319) +description = Thrall city, TX +station = ('kedc', 0.005244422953904866) +zone = ('txz173', 0.004663490532558991) + +[fips4872872] +centroid = (0.49684031253122535, -1.7135284279984893) +description = Three Rivers city, TX +station = ('knog', 0.0017313092565120938) +zone = ('txz231', 0.0021739435829331486) + +[fips4872896] +centroid = (0.57913569344882654, -1.7310137124036216) +description = Throckmorton town, TX +station = ('kbkd', 0.0091125745120685109) +zone = ('txz099', 0.00048301968363684023) + +[fips4872902] +centroid = (0.55692815895303571, -1.728238953052216) +description = Thunderbird Bay CDP, TX +station = ('kbwd', 0.0021824020365101412) +zone = ('txz140', 0.0023824359672859818) + +[fips4872948] +centroid = (0.45854510093542167, -1.7074144000024132) +description = Tierra Bonita CDP, TX +station = ('kt65', 0.0028185605022251477) +zone = ('txz254', 0.0037872148713663373) + +[fips4872950] +centroid = (0.46077831952651849, -1.7265017395812434) +description = Tierra Dorada CDP, TX +station = ('kmfe', 0.011167560610398848) +zone = ('txz252', 0.004012558039379944) + +[fips4872952] +centroid = (0.48352053563865782, -1.7029494987099612) +description = Tierra Grande CDP, TX +station = ('kcrp', 0.0013907485960833672) +zone = ('txz243', 0.00092424837702515124) + +[fips4872954] +centroid = (0.48453081947617471, -1.7054900872356267) +description = Tierra Verde CDP, TX +station = ('krbo', 0.00051070530729365252) +zone = ('txz243', 0.0015419255324816137) + +[fips4872989] +centroid = (0.51133373607929655, -1.6565782995993295) +description = Tiki Island village, TX +station = ('kgls', 0.00090848816472718539) +zone = ('txz238', 0.0018531056242394081) + +[fips4872992] +centroid = (0.4967181743901708, -1.7199988871344079) +description = Tilden CDP, TX +station = ('knog', 0.0074065244898056347) +zone = ('txz230', 0.0019545195416746691) + +[fips4873030] +centroid = (0.61180899008444622, -1.7770334196561943) +description = Timbercreek Canyon village, TX +station = ('kama', 0.0031755543974157012) +zone = ('txz017', 0.0019214566831541671) + +[fips4873057] +centroid = (0.51845921728348854, -1.7187565268662535) +description = Timberwood Park CDP, TX +station = ('ksat', 0.0030097989861727968) +zone = ('txz206', 0.003511393047201901) + +[fips4873076] +centroid = (0.55688066854408891, -1.6475394313894685) +description = Timpson city, TX +station = ('koch', 0.0073754508597267546) +zone = ('txz153', 0.0042377388515288167) + +[fips4873112] +centroid = (0.58416393466394467, -1.6915570016439083) +description = Tioga town, TX +station = ('kgle', 0.0051322583439623818) +zone = ('txz093', 0.0044513828039867758) + +[fips4873124] +centroid = (0.58170254917973463, -1.667418906102609) +description = Tira town, TX +station = ('kslr', 0.0031839468313921465) +zone = ('txz106', 0.0022228044281779008) + +[fips4873148] +centroid = (0.49673534843001044, -1.6910751685973102) +description = Tivoli CDP, TX +station = ('kpkv', 0.0046638781589800771) +zone = ('txz247', 0.0037491373756462602) + +[fips4873196] +centroid = (0.58737116915070198, -1.6693986156198537) +description = Toco city, TX +station = ('kprx', 0.0029207521092910142) +zone = ('txz095', 0.0011619523134960609) + +[fips4873224] +centroid = (0.52815312501491551, -1.6725489698262885) +description = Todd Mission city, TX +station = ('kdwh', 0.0054175042662093255) +zone = ('txz212', 0.004968028022784325) + +[fips4873268] +centroid = (0.56530231851727464, -1.709010573416532) +description = Tolar city, TX +station = ('kgdj', 0.0017860087684831339) +zone = ('txz131', 0.0014609061325505236) + +[fips4873316] +centroid = (0.52529799325145554, -1.6688735333143911) +description = Tomball city, TX +station = ('kdwh', 0.0011771973000481205) +zone = ('txz199', 0.0039518326045261459) + +[fips4873328] +centroid = (0.58503504594690747, -1.6839695143334208) +description = Tom Bean city, TX +station = ('kgyi', 0.0043357872934297334) +zone = ('txz093', 0.0033718615115658464) + +[fips4873352] +centroid = (0.56340162005526773, -1.6785304575189683) +description = Tool city, TX +station = ('kcrs', 0.0055584603592581487) +zone = ('txz135', 0.0048567118888838802) + +[fips4873376] +centroid = (0.54867200109952419, -1.8518520194977621) +description = Tornillo CDP, TX +station = ('mmcs', 0.0059911297623206784) +zone = ('txz423', 0.003240590833405871) + +[fips4873496] +centroid = (0.54650618712413945, -1.8115577252300166) +description = Toyah town, TX +station = ('kpeq', 0.0044054449838474667) +zone = ('txz058', 0.0023549865309512121) + +[fips4873526] +centroid = (0.48860478446947242, -1.6975103022691684) +description = Tradewinds CDP, TX +station = ('ktfp', 0.0016042853101882891) +zone = ('txz244', 0.0039934364316097822) + +[fips4873562] +centroid = (0.57253019818868123, -1.6837796225108039) +description = Travis Ranch CDP, TX +station = ('khqz', 0.0012928985463851678) +zone = ('txz120', 0.001906558931529342) + +[fips4873580] +centroid = (0.56702972323785095, -1.7474818712805691) +description = Trent town, TX +station = ('kdys', 0.0041009274719913755) +zone = ('txz127', 0.0047388211369832752) + +[fips4873592] +centroid = (0.58345751264919998, -1.6814449130237035) +description = Trenton city, TX +station = ('ktki', 0.0055777799595008544) +zone = ('txz094', 0.0044411294331008922) + +[fips4873652] +centroid = (0.56130582868947299, -1.6774385620856282) +description = Trinidad city, TX +station = ('kcrs', 0.0047556117980384321) +zone = ('txz135', 0.0038923721420934991) + +[fips4873664] +centroid = (0.54008260753192938, -1.6645827111615332) +description = Trinity city, TX +station = ('kuts', 0.0046258284532115709) +zone = ('txz164', 0.0043619944427755646) + +[fips4873710] +centroid = (0.57598060940011886, -1.6963801666719172) +description = Trophy Club town, TX +station = ('kafw', 0.0018022128652844429) +zone = ('txz103', 0.0037241784670844738) + +[fips4873724] +centroid = (0.56103601824040716, -1.6601983917206458) +description = Troup city, TX +station = ('krfi', 0.0040259441096158945) +zone = ('txz136', 0.0045619753629073685) + +[fips4873748] +centroid = (0.54450312510150312, -1.6982409145473458) +description = Troy city, TX +station = ('ktpl', 0.0016834574215875322) +zone = ('txz158', 0.0038379341596089418) + +[fips4873856] +centroid = (0.49875760907441874, -1.7068976080108975) +description = Tuleta CDP, TX +station = ('kbea', 0.0037842387915155394) +zone = ('txz232', 0.0029138516733848135) + +[fips4873868] +centroid = (0.60279944340601876, -1.7762989676536627) +description = Tulia city, TX +station = ('kpvw', 0.0065068064996599553) +zone = ('txz023', 0.00058174856807685009) + +[fips4873904] +centroid = (0.49990294648945494, -1.7072470752870241) +description = Tulsita CDP, TX +station = ('knog', 0.004714300473750886) +zone = ('txz232', 0.0040988104443329025) + +[fips4873964] +centroid = (0.6002871815741132, -1.7609552196940199) +description = Turkey city, TX +station = ('kcds', 0.008838286793264323) +zone = ('txz025', 0.0038997986224107201) + +[fips4874048] +centroid = (0.56218153018836858, -1.7418262889191143) +description = Tuscola city, TX +station = ('kdys', 0.0037518453727061669) +zone = ('txz127', 0.002076459351841922) + +[fips4874132] +centroid = (0.56639918813898305, -1.7430011922116795) +description = Tye city, TX +station = ('kdys', 0.00058116228945559261) +zone = ('txz127', 0.0026543356779460572) + +[fips4874144] +centroid = (0.56400234493051171, -1.663379603348256) +description = Tyler city, TX +station = ('ktyr', 0.0015336887791929767) +zone = ('txz136', 0.0011710030849226489) + +[fips4874168] +centroid = (0.49167239261607015, -1.7060449623114209) +description = Tynan CDP, TX +station = ('kbea', 0.003362071371603036) +zone = ('txz232', 0.0043065470065679302) + +[fips4874216] +centroid = (0.52290975451619659, -1.706879735839357) +description = Uhland city, TX +station = ('khyi', 0.0015533758056637064) +zone = ('txz208', 0.0034358710248058744) + +[fips4874240] +centroid = (0.57073383550935852, -1.64293534008917) +description = Uncertain city, TX +station = ('kasl', 0.0039936379412942192) +zone = ('txz126', 0.0037004262851499116) + +[fips4874312] +centroid = (0.56854260954006464, -1.656585001663657) +description = Union Grove city, TX +station = ('kjxi', 0.002215343497705172) +zone = ('txz137', 0.0021959758219218225) + +[fips4874372] +centroid = (0.57472742809060196, -1.6799182909802766) +description = Union Valley city, TX +station = ('kgvt', 0.0036211643726100041) +zone = ('txz120', 0.0023440013015385425) + +[fips4874408] +centroid = (0.51577970054936428, -1.7157909157611422) +description = Universal City city, TX +station = ('krnd', 0.00049159505319439642) +zone = ('txz205', 0.0036915858481099623) + +[fips4874492] +centroid = (0.57331664354962986, -1.6893958127910411) +description = University Park city, TX +station = ('kdal', 0.00080313168211862298) +zone = ('txz119', 0.0014540371608240438) + +[fips4874576] +centroid = (0.51703787350054198, -1.7368234771511977) +description = Utopia CDP, TX +station = ('khdo', 0.0069145594449195741) +zone = ('txz187', 0.0045746694316202534) + +[fips4874588] +centroid = (0.509901152375967, -1.7414409202202739) +description = Uvalde city, TX +station = ('kuva', 0.00052100549721587606) +zone = ('txz203', 0.0024909009550608059) + +[fips4874594] +centroid = (0.50908967899354485, -1.7424693903885966) +description = Uvalde Estates CDP, TX +station = ('kuva', 0.0015962111804932429) +zone = ('txz203', 0.0034790649376600425) + +[fips4874648] +centroid = (0.53387197556175525, -1.8237872822053258) +description = Valentine town, TX +station = ('kmrf', 0.0081755990373812842) +zone = ('txz080', 0.0083162255037682962) + +[fips4874667] +centroid = (0.46045744074353934, -1.7241604502028631) +description = Valle Hermoso CDP, TX +station = ('kmfe', 0.0090941993025084825) +zone = ('txz252', 0.003229627726693802) + +[fips4874668] +centroid = (0.4831022500301248, -1.7313843505235751) +description = Valle Verde CDP, TX +station = ('klrd', 0.0046752917104786913) +zone = ('txz239', 0.0024673595308397013) + +[fips4874670] +centroid = (0.45930164880628366, -1.7218485521690865) +description = Valle Vista CDP, TX +station = ('kmfe', 0.0067444500822121485) +zone = ('txz252', 0.0044894486418374565) + +[fips4874732] +centroid = (0.55254684147846178, -1.7012073634104981) +description = Valley Mills city, TX +station = ('kpwg', 0.0038331397534477219) +zone = ('txz159', 0.0044235126381311799) + +[fips4874756] +centroid = (0.58458733408718599, -1.6956334624580365) +description = Valley View city, TX +station = ('kgle', 0.0028149164300573164) +zone = ('txz092', 0.0026753004195040567) + +[fips4874895] +centroid = (0.51268266615157787, -1.7598262360140748) +description = Val Verde Park CDP, TX +station = ('kdrt', 0.0013160433305097153) +zone = ('txz202', 0.0062907452750445257) + +[fips4874912] +centroid = (0.56764858208402313, -1.6691906596394785) +description = Van city, TX +station = ('kjdd', 0.004335140634906246) +zone = ('txz122', 0.0030081028098491646) + +[fips4874924] +centroid = (0.583296889998139, -1.6856300205837682) +description = Van Alstyne city, TX +station = ('ktki', 0.0041388470643294699) +zone = ('txz093', 0.0038740997583194279) + +[fips4874984] +centroid = (0.50301804504499947, -1.6861563071664145) +description = Vanderbilt CDP, TX +station = ('kpkv', 0.0031118927899598183) +zone = ('txz235', 0.0024012652106214704) + +[fips4875032] +centroid = (0.5417619284316133, -1.8297011558427834) +description = Van Horn town, TX +station = ('kgdp', 0.013837000705133927) +zone = ('txz057', 0.0051396424380394318) + +[fips4875068] +centroid = (0.50663768338071047, -1.6735002964416732) +description = Van Vleck CDP, TX +station = ('kbyy', 0.0010152759729671213) +zone = ('txz236', 0.0032209023653056597) + +[fips4875188] +centroid = (0.61515249987919918, -1.7876741685068283) +description = Vega city, TX +station = ('khrx', 0.0068695849500918218) +zone = ('txz011', 0.0037507286055608051) + +[fips4875236] +centroid = (0.56602352347078377, -1.6947542877539292) +description = Venus town, TX +station = ('kjwy', 0.002833230640759978) +zone = ('txz133', 0.0039941428714686386) + +[fips4875308] +centroid = (0.59598916866473695, -1.7331193997862753) +description = Vernon city, TX +station = ('kf05', 0.0013809725004441142) +zone = ('txz085', 0.001450294516225667) + +[fips4875428] +centroid = (0.50312416106352065, -1.6927147308966337) +description = Victoria city, TX +station = ('kvct', 0.0010562916873362671) +zone = ('txz234', 0.00057367820387978837) + +[fips4875432] +centroid = (0.45933728842960941, -1.7225171005390629) +description = Victoria Vera CDP, TX +station = ('kmfe', 0.0073217969316344477) +zone = ('txz252', 0.0043176102791586913) + +[fips4875476] +centroid = (0.52583522304851193, -1.6404652105054074) +description = Vidor city, TX +station = ('korg', 0.0030213502391169124) +zone = ('txz216', 0.0014375844630873898) + +[fips4875554] +centroid = (0.45713496216627292, -1.7031252010057594) +description = Villa del Sol CDP, TX +station = ('khrl', 0.0011508673107115351) +zone = ('txz255', 0.0012521264428928911) + +[fips4875614] +centroid = (0.45176454915130126, -1.7002188787353385) +description = Villa Pancho CDP, TX +station = ('kbro', 0.0002764823802519812) +zone = ('txz255', 0.0048557844625642405) + +[fips4875617] +centroid = (0.45914587817054314, -1.7216675615256545) +description = Villarreal CDP, TX +station = ('kmfe', 0.0065393515340663793) +zone = ('txz252', 0.0046869965205848284) + +[fips4875626] +centroid = (0.45605490006526123, -1.7103472512774642) +description = Villa Verde CDP, TX +station = ('kt65', 0.0009012787812553969) +zone = ('txz253', 0.0054865537331186057) + +[fips4875668] +centroid = (0.55780853793432672, -1.8604267348463477) +description = Vinton village, TX +station = ('k5t6', 0.0021387124137740858) +zone = ('txz418', 0.001070577194495471) + +[fips4875752] +centroid = (0.53137076166401465, -1.7088149394606758) +description = Volente village, TX +station = ('kryw', 0.0013358296658506795) +zone = ('txz192', 0.0027062646784075622) + +[fips4875764] +centroid = (0.51098665990424497, -1.7218947510343867) +description = Von Ormy city, TX +station = ('kskf', 0.0021648304230417591) +zone = ('txz205', 0.0036538744901248306) + +[fips4876000] +centroid = (0.55082784924488015, -1.6962161580821071) +description = Waco city, TX +station = ('kact', 0.00083200377386640368) +zone = ('txz159', 0.0002704467037870887) + +[fips4876024] +centroid = (0.51826672492028614, -1.6981678027049798) +description = Waelder city, TX +station = ('k3t5', 0.0064534429363888928) +zone = ('txz223', 0.0050946249582886766) + +[fips4876096] +centroid = (0.58335972185121077, -1.6426813248698346) +description = Wake Village city, TX +station = ('ktxk', 0.0020230182622161942) +zone = ('arz070', 0.0038388006170077529) + +[fips4876228] +centroid = (0.52465112187078888, -1.674161584241961) +description = Waller city, TX +station = ('ktme', 0.0043815816296538653) +zone = ('txz212', 0.0013080190319281718) + +[fips4876240] +centroid = (0.5171763304701027, -1.6766246626955457) +description = Wallis city, TX +station = ('ktme', 0.0039739226373735701) +zone = ('txz227', 0.0048050215123296956) + +[fips4876348] +centroid = (0.55949983179267926, -1.7060692572946086) +description = Walnut Springs city, TX +station = ('kgdj', 0.0068277672772434793) +zone = ('txz132', 0.0029068121251394634) + +[fips4876564] +centroid = (0.53427964956843599, -1.6477755744372631) +description = Warren CDP, TX +station = ('kbpt', 0.0041950840665054001) +zone = ('txz180', 0.0028257992603979449) + +[fips4876576] +centroid = (0.56812634851346411, -1.6564027543831636) +description = Warren City city, TX +station = ('kjxi', 0.0026558667526561035) +zone = ('txz137', 0.001788439668609771) + +[fips4876636] +centroid = (0.5668242107184287, -1.6417363337996349) +description = Waskom city, TX +station = ('kshv', 0.0034366636467139883) +zone = ('laz001', 0.0032318753159986204) + +[fips4876672] +centroid = (0.57372112360377958, -1.6973586680637551) +description = Watauga city, TX +station = ('kftw', 0.0018172999274595643) +zone = ('txz118', 0.0018663683201569643) + +[fips4876816] +centroid = (0.56553334775036102, -1.6902235177355072) +description = Waxahachie city, TX +station = ('kjwy', 0.0013822185923085565) +zone = ('txz134', 0.0011838673411692011) + +[fips4876864] +centroid = (0.5716895254478731, -1.7063339015690884) +description = Weatherford city, TX +station = ('kmwl', 0.004443275623608074) +zone = ('txz117', 0.0006957050467658088) + +[fips4876924] +centroid = (0.52754447634486745, -1.7016892313636811) +description = Webberville village, TX +station = ('kaus', 0.002869851838725145) +zone = ('txz193', 0.0035461508138290155) + +[fips4876948] +centroid = (0.51543189133602685, -1.6600957140007511) +description = Webster city, TX +station = ('kefd', 0.0014092751721651322) +zone = ('txz238', 0.0033323272747766367) + +[fips4877020] +centroid = (0.51836366050694194, -1.6890816709789749) +description = Weimar city, TX +station = ('k3t5', 0.0044748598236032423) +zone = ('txz209', 0.0037654459731014389) + +[fips4877044] +centroid = (0.58160304795907836, -1.7396337888594666) +description = Weinert city, TX +station = ('kbkd', 0.015570039921335661) +zone = ('txz098', 0.0026655893932620331) + +[fips4877056] +centroid = (0.53543416741533778, -1.7032685798038107) +description = Weir city, TX +station = ('kgtu', 0.0014023977495307466) +zone = ('txz173', 0.00054798249615156918) + +[fips4877080] +centroid = (0.57479998142760724, -1.7823859779529181) +description = Welch CDP, TX +station = ('kgnc', 0.0089789890158424243) +zone = ('txz046', 0.0042129366994433049) + +[fips4877152] +centroid = (0.60831360173818472, -1.7490658622965092) +description = Wellington city, TX +station = ('kcds', 0.007405604817715755) +zone = ('txz020', 0.0020981960156722886) + +[fips4877164] +centroid = (0.57677859138742316, -1.787696020029063) +description = Wellman city, TX +station = ('kgnc', 0.0072782846421999012) +zone = ('txz040', 0.0025918341837423454) + +[fips4877176] +centroid = (0.54963139113605297, -1.6571433324913698) +description = Wells town, TX +station = ('koch', 0.0037865205141377634) +zone = ('txz152', 0.0053877773092442975) + +[fips4877196] +centroid = (0.53136100527349595, -1.7048162679713093) +description = Wells Branch CDP, TX +station = ('kedc', 0.0018138331656405112) +zone = ('txz192', 0.0024696460725979552) + +[fips4877272] +centroid = (0.45656209274589077, -1.710215025133333) +description = Weslaco city, TX +station = ('kt65', 0.00039862641096435018) +zone = ('txz253', 0.0051318993943026857) + +[fips4877332] +centroid = (0.55507221073305002, -1.6946125495653748) +description = West city, TX +station = ('kcnw', 0.0028724926262361319) +zone = ('txz145', 0.0033195856241580021) + +[fips4877336] +centroid = (0.45927138479705409, -1.7219968702489208) +description = West Alto Bonito CDP, TX +station = ('kmfe', 0.0068594340191796806) +zone = ('txz252', 0.0044817452324778144) + +[fips4877380] +centroid = (0.56473746015815918, -1.763013957719795) +description = Westbrook city, TX +station = ('ksnk', 0.0059415815729363299) +zone = ('txz053', 0.0016222030177835691) + +[fips4877416] +centroid = (0.50862255907254106, -1.6693978651282753) +description = West Columbia city, TX +station = ('klbx', 0.0028213756669947508) +zone = ('txz237', 0.0030847949408262356) + +[fips4877422] +centroid = (0.48809399641058376, -1.7103132173570503) +description = Westdale CDP, TX +station = ('kali', 0.0040714333672006719) +zone = ('txz241', 0.0043588560647235732) + +[fips4877490] +centroid = (0.56934664781987354, -1.7072227104906663) +description = Western Lake CDP, TX +station = ('kgdj', 0.0030891164247111359) +zone = ('txz117', 0.0027356632017836282) + +[fips4877620] +centroid = (0.57566058582847324, -1.6965374033842291) +description = Westlake town, TX +station = ('kafw', 0.0016431570405598642) +zone = ('txz118', 0.0039245357070151424) + +[fips4877632] +centroid = (0.52869614930508846, -1.7070794364123703) +description = West Lake Hills city, TX +station = ('katt', 0.00076211728451752205) +zone = ('txz192', 0.00084491763548110571) + +[fips4877662] +centroid = (0.53583225956442515, -1.658394471765662) +description = West Livingston CDP, TX +station = ('k6r3', 0.005951838112989322) +zone = ('txz178', 0.0030686103923020448) + +[fips4877680] +centroid = (0.58232643457415245, -1.6835332692868847) +description = Westminster CDP, TX +station = ('ktki', 0.0036481882250566054) +zone = ('txz104', 0.0035027804695034826) + +[fips4877728] +centroid = (0.55568225566649954, -1.788964909301848) +description = West Odessa CDP, TX +station = ('kodo', 0.0020189019299200446) +zone = ('txz061', 0.00083175272020993916) + +[fips4877740] +centroid = (0.58153616694214194, -1.6872960595278443) +description = Weston city, TX +station = ('ktki', 0.0027279147495900755) +zone = ('txz104', 0.0027438967102590508) + +[fips4877746] +centroid = (0.51761816057024501, -1.6743121188899455) +description = Weston Lakes city, TX +station = ('ktme', 0.0027056401165629516) +zone = ('txz227', 0.0033260976787595521) + +[fips4877752] +centroid = (0.52497997680844966, -1.6364126083421542) +description = West Orange city, TX +station = ('korg', 0.0006880649672649223) +zone = ('txz216', 0.0022376532681057607) + +[fips4877788] +centroid = (0.57148748613366218, -1.7001656636464451) +description = Westover Hills town, TX +station = ('knfw', 0.00068185088335713496) +zone = ('txz118', 0.0018273113627556943) + +[fips4877866] +centroid = (0.45853811961841373, -1.7163516725965153) +description = West Sharyland CDP, TX +station = ('kmfe', 0.0020937032793518768) +zone = ('txz253', 0.0032979863091064467) + +[fips4877896] +centroid = (0.57420246795818697, -1.6761474024115877) +description = West Tawakoni city, TX +station = ('kgvt', 0.0029536740800595444) +zone = ('txz105', 0.0039791821411920619) + +[fips4877956] +centroid = (0.51863230158540885, -1.6655961191384112) +description = West University Place city, TX +station = ('kmcj', 0.00048875269804536474) +zone = ('txz213', 0.0025465480110644567) + +[fips4878016] +centroid = (0.55780862520078933, -1.8600929057203186) +description = Westway CDP, TX +station = ('k5t6', 0.0023620124524319996) +zone = ('txz418', 0.0010507357076471018) + +[fips4878040] +centroid = (0.53994502322699467, -1.6637770846321052) +description = Westwood Shores CDP, TX +station = ('kuts', 0.0050310086209242651) +zone = ('txz164', 0.0039114433527264987) + +[fips4878076] +centroid = (0.57176638974813099, -1.7003636363434989) +description = Westworth Village city, TX +station = ('knfw', 0.00040473034319623593) +zone = ('txz118', 0.0019425917523229808) + +[fips4878136] +centroid = (0.51163431668307502, -1.6773271228128883) +description = Wharton city, TX +station = ('karm', 0.0013027064291671929) +zone = ('txz226', 0.001911026417820468) + +[fips4878208] +centroid = (0.61856414732795018, -1.7501328867880084) +description = Wheeler city, TX +station = ('khhf', 0.0082021134266012045) +zone = ('txz015', 0.00069933664294522131) + +[fips4878316] +centroid = (0.61842944281628121, -1.7658516361907348) +description = White Deer town, TX +station = ('kppa', 0.0040398283122261352) +zone = ('txz013', 0.0025899106011248447) + +[fips4878328] +centroid = (0.58642300158126359, -1.7909411630671739) +description = Whiteface town, TX +station = ('klbb', 0.011636458753051944) +zone = ('txz033', 0.0031283270865313348) + +[fips4878388] +centroid = (0.56239119659141068, -1.6619432846403273) +description = Whitehouse city, TX +station = ('ktyr', 0.0034369539499639898) +zone = ('txz136', 0.0027475572250529787) + +[fips4878436] +centroid = (0.56776242991113068, -1.6555424815948558) +description = White Oak city, TX +station = ('kjxi', 0.0032432052108680651) +zone = ('txz137', 0.0010410252672381965) + +[fips4878532] +centroid = (0.58748917086142927, -1.6912496491626321) +description = Whitesboro city, TX +station = ('kgyi', 0.0035472221526338678) +zone = ('txz093', 0.0033059689289761233) + +[fips4878544] +centroid = (0.57168352151524615, -1.7010098794056348) +description = White Settlement city, TX +station = ('knfw', 0.00025629909215967142) +zone = ('txz118', 0.0024916921720060919) + +[fips4878628] +centroid = (0.58488103809371161, -1.6824089979959203) +description = Whitewright town, TX +station = ('kgyi', 0.0053345274945382206) +zone = ('txz093', 0.0045789719879031762) + +[fips4878664] +centroid = (0.55767542167227713, -1.6985504137836021) +description = Whitney town, TX +station = ('kinj', 0.004008048796385005) +zone = ('txz145', 0.0028533692934175551) + +[fips4879000] +centroid = (0.59178353603266887, -1.7196005506392251) +description = Wichita Falls city, TX +station = ('ksps', 0.0013889168629055621) +zone = ('txz086', 0.0029336807783850649) + +[fips4879036] +centroid = (0.55095375729711904, -1.797792941738068) +description = Wickett town, TX +station = ('kink', 0.0047456447898556429) +zone = ('txz067', 0.0017541555972645903) + +[fips4879192] +centroid = (0.50755986299758671, -1.669184708066729) +description = Wild Peach Village CDP, TX +station = ('klbx', 0.0026745837396428022) +zone = ('txz237', 0.0033783717844658345) + +[fips4879204] +centroid = (0.53279116296916518, -1.6484150456219016) +description = Wildwood CDP, TX +station = ('kbpt', 0.0048202012758417484) +zone = ('txz201', 0.0034974529663943485) + +[fips4879408] +centroid = (0.53103295318729116, -1.6664774929573758) +description = Willis city, TX +station = ('kcxo', 0.0016517594689449862) +zone = ('txz199', 0.0022170951010164236) + +[fips4879492] +centroid = (0.57178487278490953, -1.7044048066001516) +description = Willow Park city, TX +station = ('knfw', 0.0030133783469795134) +zone = ('txz117', 0.0022191793047537261) + +[fips4879564] +centroid = (0.57088758156316666, -1.6756028945915507) +description = Wills Point city, TX +station = ('ktrl', 0.0038450159200633357) +zone = ('txz122', 0.0035499667156726855) + +[fips4879576] +centroid = (0.56896040645640711, -1.6874123508159049) +description = Wilmer city, TX +station = ('klnc', 0.00064867129635513582) +zone = ('txz119', 0.0032487736367266952) + +[fips4879612] +centroid = (0.58153218759144742, -1.7754797973692389) +description = Wilson city, TX +station = ('klbb', 0.0061993699649249244) +zone = ('txz041', 0.0028038524762412573) + +[fips4879624] +centroid = (0.52333355536516579, -1.7120031149520014) +description = Wimberley city, TX +station = ('khyi', 0.0037681574976384962) +zone = ('txz191', 0.0015646579769035326) + +[fips4879672] +centroid = (0.515130996572983, -1.7170783229772908) +description = Windcrest city, TX +station = ('ksat', 0.0013354642496285942) +zone = ('txz205', 0.0023974733567950625) + +[fips4879676] +centroid = (0.53160372821257085, -1.7045323378085948) +description = Windemere CDP, TX +station = ('kedc', 0.0017280068321326111) +zone = ('txz192', 0.0028125507245363324) + +[fips4879684] +centroid = (0.58581625532010018, -1.6754902510416267) +description = Windom town, TX +station = ('kdua', 0.0087407796880648453) +zone = ('txz094', 0.0016515953180287638) + +[fips4879696] +centroid = (0.5860286269834829, -1.718013662376727) +description = Windthorst town, TX +station = ('ksps', 0.0071549674800209231) +zone = ('txz089', 0.003735114942724084) + +[fips4879720] +centroid = (0.57884602115287298, -1.6600040318551439) +description = Winfield city, TX +station = ('kosa', 0.0025090528357400435) +zone = ('txz108', 0.0015757629455979347) + +[fips4879768] +centroid = (0.55422052496466179, -1.8003789786374556) +description = Wink city, TX +station = ('kink', 0.00084665842610068211) +zone = ('txz060', 0.0022905529476956077) + +[fips4879792] +centroid = (0.52039991869195112, -1.6472535290046992) +description = Winnie CDP, TX +station = ('kbmt', 0.0050444432835666866) +zone = ('txz215', 0.0033660172561962936) + +[fips4879816] +centroid = (0.5751932215613742, -1.663148399582244) +description = Winnsboro city, TX +station = ('kjdd', 0.0047970482163787386) +zone = ('txz124', 0.0032473530346651363) + +[fips4879828] +centroid = (0.56710302706643467, -1.6611592303804539) +description = Winona town, TX +station = ('ktyr', 0.0041169422075942128) +zone = ('txz136', 0.0024579787880544659) + +[fips4879876] +centroid = (0.55761341012395371, -1.7446129514160185) +description = Winters city, TX +station = ('kdys', 0.008359274671536833) +zone = ('txz066', 0.0020717252107432843) + +[fips4879919] +centroid = (0.53703278429040946, -1.6811402483494755) +description = Wixon Valley city, TX +station = ('kcll', 0.0033205739745202057) +zone = ('txz196', 0.0019191058692716978) + +[fips4879948] +centroid = (0.5824194257166988, -1.6767059601321035) +description = Wolfe City city, TX +station = ('kgvt', 0.0052972655054709834) +zone = ('txz094', 0.003944598267273257) + +[fips4879972] +centroid = (0.58498050440778271, -1.7803146037433586) +description = Wolfforth city, TX +station = ('klbb', 0.0037801829240466122) +zone = ('txz035', 0.0031325276903618796) + +[fips4880044] +centroid = (0.52676489012787919, -1.6612643341080089) +description = Woodbranch city, TX +station = ('k6r3', 0.0040682459557460169) +zone = ('txz199', 0.005245604286808642) + +[fips4880058] +centroid = (0.52406533701394198, -1.7123657245573958) +description = Woodcreek city, TX +station = ('khyi', 0.0043935482829367579) +zone = ('txz191', 0.0013307629798580693) + +[fips4880144] +centroid = (0.52739003215935853, -1.6652746120369013) +description = Woodloch town, TX +station = ('kcxo', 0.0023179823674329479) +zone = ('txz199', 0.001982363417412804) + +[fips4880176] +centroid = (0.49284268823940991, -1.6986483267546388) +description = Woodsboro town, TX +station = ('krkp', 0.0050223413752196458) +zone = ('txz246', 0.0028502370030239234) + +[fips4880188] +centroid = (0.57621924826874393, -1.7288084714404341) +description = Woodson town, TX +station = ('kbkd', 0.0056777379697521158) +zone = ('txz099', 0.0036679006631448771) + +[fips4880212] +centroid = (0.53710903772542906, -1.6480549318373374) +description = Woodville town, TX +station = ('kbpt', 0.0055191273292090944) +zone = ('txz180', 0.00075285788562823211) + +[fips4880224] +centroid = (0.54974963719287562, -1.6969974023618848) +description = Woodway city, TX +station = ('kpwg', 0.0013046428554980849) +zone = ('txz159', 0.0010375156594805614) + +[fips4880296] +centroid = (0.55484147820593643, -1.6835641267080601) +description = Wortham town, TX +station = ('kcrs', 0.0041192893457390302) +zone = ('txz146', 0.004487300296896749) + +[fips4880350] +centroid = (0.52587862938700902, -1.7013372682667238) +description = Wyldwood CDP, TX +station = ('kaus', 0.0032114578966653679) +zone = ('txz193', 0.0025700843696759368) + +[fips4880356] +centroid = (0.57659130010539161, -1.6845045624689121) +description = Wylie city, TX +station = ('ktki', 0.0027546392625202049) +zone = ('txz104', 0.0027749848299565599) + +[fips4880440] +centroid = (0.5747112837950209, -1.66813957000405) +description = Yantis town, TX +station = ('kjdd', 0.0034662652074050671) +zone = ('txz123', 0.0033250719632211662) + +[fips4880560] +centroid = (0.51126285825837303, -1.6955351829678564) +description = Yoakum city, TX +station = ('kvct', 0.0081266777205733706) +zone = ('txz225', 0.0036618669717569932) + +[fips4880584] +centroid = (0.50584547843323024, -1.701783723489384) +description = Yorktown city, TX +station = ('kvct', 0.0089653782332059073) +zone = ('txz224', 0.0028494550270681956) + +[fips4880686] +centroid = (0.45951944844364001, -1.7071939649178862) +description = Yznaga CDP, TX +station = ('khrl', 0.0032373577892009101) +zone = ('txz254', 0.0028400686468620499) + +[fips4880716] +centroid = (0.46953137261807287, -1.7324387388312898) +description = Zapata CDP, TX +station = ('kapy', 0.0011972056756317324) +zone = ('txz248', 0.0022470437870800108) + +[fips4880722] +centroid = (0.46004831811357938, -1.7073335214448755) +description = Zapata Ranch CDP, TX +station = ('khrl', 0.0036722318796997828) +zone = ('txz254', 0.0024879482605581946) + +[fips4880724] +centroid = (0.45936954211418624, -1.7215392274657555) +description = Zarate CDP, TX +station = ('kmfe', 0.0065090643893479672) +zone = ('txz252', 0.0045142254192230809) + +[fips4880728] +centroid = (0.54381782157070746, -1.6479209952705394) +description = Zavalla city, TX +station = ('klfk', 0.0051127064981743827) +zone = ('txz165', 0.0033342752946433317) + +[fips4880836] +centroid = (0.51496887293876525, -1.7130430868400945) +description = Zuehl CDP, TX +station = ('krnd', 0.0020802451577693532) +zone = ('txz207', 0.0033489432717004049) + +[fips49001] +centroid = (0.66946527869896311, -1.9763924840946476) +description = Beaver County, UT +station = ('kmlf', 0.0032112706198867747) +zone = ('utz016', 0.0053943117920621664) + +[fips4900190086] +centroid = (0.66915467990527822, -1.9649997077759147) +description = Beaver CCD, UT +station = ('kmlf', 0.0060409369702247541) +zone = ('utz518', 0.0084935986434770856) + +[fips4900191892] +centroid = (0.6695106398062225, -1.9792304767248532) +description = Milford-Minersville CCD, UT +station = ('kmlf', 0.0053569779782783183) +zone = ('utz016', 0.004590657507634148) + +[fips49003] +centroid = (0.72389312707631104, -1.9731457179003327) +description = Box Elder County, UT +station = ('ku16', 0.0074376553429780839) +zone = ('utz005', 0.0093012990668323459) + +[fips4900390258] +centroid = (0.72327908533887431, -1.9564633198577031) +description = Brigham City CCD, UT +station = ('kogd', 0.0043336102231325774) +zone = ('utz002', 0.0024967738304164139) + +[fips4900391419] +centroid = (0.72725885491244202, -1.9652259199002657) +description = Howell-Snowville CCD, UT +station = ('klgu', 0.0099608268276841737) +zone = ('utz002', 0.0081255801542898711) + +[fips4900393440] +centroid = (0.72615870407173988, -1.9588545256526904) +description = Tremonton CCD, UT +station = ('klgu', 0.0058868305163289223) +zone = ('utz002', 0.0050723086514284947) + +[fips4900393827] +centroid = (0.72288636880388313, -1.9803107657186676) +description = West Box Elder CCD, UT +station = ('kqcj', 0.0081375232949084109) +zone = ('utz005', 0.008694427368195385) + +[fips49005] +centroid = (0.72839963701813049, -1.9503108597114975) +description = Cache County, UT +station = ('klgu', 0.0016181320382868446) +zone = ('utz001', 0.0023639491990924077) + +[fips4900540] +centroid = (0.70619712907058541, -1.9508052416754176) +description = Alpine city, UT +station = ('kpvu', 0.0043487257478100391) +zone = ('utz008', 0.0048577962747731601) + +[fips4900590635] +centroid = (0.7273656516093715, -1.9485772590720767) +description = East Cache CCD, UT +station = ('klgu', 0.0032693427089036829) +zone = ('utz007', 0.0043646300036513895) + +[fips4900591505] +centroid = (0.72537716308598932, -1.9520268150721811) +description = Hyrum CCD, UT +station = ('klgu', 0.0038806807124920589) +zone = ('utz001', 0.0041935530937733277) + +[fips4900591677] +centroid = (0.73203526256978979, -1.9535033985259531) +description = Lewiston CCD, UT +station = ('klgu', 0.0029554981576893741) +zone = ('utz001', 0.0025609525686042596) + +[fips4900591763] +centroid = (0.72845119404423431, -1.9523424578674042) +description = Logan CCD, UT +station = ('klgu', 0.00081813726906322789) +zone = ('utz001', 0.0011908144818848997) + +[fips4900593096] +centroid = (0.73029946281551139, -1.9534786323038673) +description = Smithfield CCD, UT +station = ('klgu', 0.0014376202840281442) +zone = ('utz001', 0.00085173616828464931) + +[fips4900593784] +centroid = (0.72696714058126366, -1.9542433657689213) +description = Wellsville CCD, UT +station = ('klgu', 0.0027716502851127555) +zone = ('utz001', 0.0026578741304873186) + +[fips4900650] +centroid = (0.70829768518523817, -1.9481436494727111) +description = Alta town, UT +station = ('k36u', 0.0030874856947239629) +zone = ('utz006', 0.0044201394418853998) + +[fips49007] +centroid = (0.69237298693077653, -1.9301658506059587) +description = Carbon County, UT +station = ('kpuc', 0.0023391031806417875) +zone = ('utz010', 0.0032643106914837716) + +[fips4900760] +centroid = (0.70439800877104453, -1.9248767175742525) +description = Altamont town, UT +station = ('kvel', 0.010545036818804004) +zone = ('utz011', 0.0020236579592664812) + +[fips4900790645] +centroid = (0.69234801126918044, -1.9242508250511947) +description = East Carbon CCD, UT +station = ('kpuc', 0.0067614192508425085) +zone = ('utz010', 0.0072241538129785834) + +[fips4900791333] +centroid = (0.69358571150823223, -1.9362070983722266) +description = Helper CCD, UT +station = ('kpuc', 0.0032976359111725521) +zone = ('utz010', 0.0026201440892524822) + +[fips4900792666] +centroid = (0.69030171744097224, -1.9347684060165153) +description = Price CCD, UT +station = ('kpuc', 0.0018049800901510102) +zone = ('utz012', 0.0034912032883527119) + +[fips4900870] +centroid = (0.65322661316536035, -1.9636719485474599) +description = Alton town, UT +station = ('kbce', 0.0068922428925585711) +zone = ('utz518', 0.0079592654945424904) + +[fips49009] +centroid = (0.71366685901644078, -1.9112365156843112) +description = Daggett County, UT +station = ('kvel', 0.0079724328245371311) +zone = ('utz023', 0.0021363815837437202) + +[fips4900990688] +centroid = (0.71350044187226314, -1.9064904069427779) +description = East Daggett CCD, UT +station = ('kvel', 0.0085642171625725082) +zone = ('utz023', 0.0040767042362702139) + +[fips4900993870] +centroid = (0.71371918398741552, -1.9152746141614803) +description = West Daggett CCD, UT +station = ('kvel', 0.0086167543138090715) +zone = ('utz023', 0.0037765141447315791) + +[fips4901090] +centroid = (0.73052934013129156, -1.9529730976860271) +description = Amalga town, UT +station = ('klgu', 0.0014124740146300198) +zone = ('utz001', 0.0010452875506939191) + +[fips49011] +centroid = (0.71623155053907639, -1.9582964740776576) +description = Davis County, UT +station = ('khif', 0.0033952650696019932) +zone = ('utz002', 0.0048860954711276196) + +[fips4901192236] +centroid = (0.71623155053907639, -1.9582964740776576) +description = North Davis CCD, UT +station = ('khif', 0.0033952650696019932) +zone = ('utz002', 0.0048860954711276196) + +[fips4901193182] +centroid = (0.71424182283192539, -1.9527217004605699) +description = South Davis CCD, UT +station = ('kslc', 0.0026784435289431896) +zone = ('utz006', 0.0050065854333856026) + +[fips49013] +centroid = (0.70318702952284085, -1.9273641259176097) +description = Duchesne County, UT +station = ('kpuc', 0.012502457225274178) +zone = ('utz011', 0.001666558964414581) + +[fips4901310] +centroid = (0.70479103946530119, -1.951166472470703) +description = American Fork city, UT +station = ('kpvu', 0.0030545917125271126) +zone = ('utz008', 0.0038277583575176801) + +[fips4901390559] +centroid = (0.70075449433116632, -1.9307528571932819) +description = Duchesne CCD, UT +station = ('kpuc', 0.0094648890367056773) +zone = ('utz011', 0.0043955636513225756) + +[fips4901392279] +centroid = (0.71057834182540425, -1.9286770847540073) +description = North Duchesne CCD, UT +station = ('kevw', 0.011906597487228334) +zone = ('utz009', 0.0030112286108608228) + +[fips4901392881] +centroid = (0.70353291887400105, -1.922907724378615) +description = Roosevelt CCD, UT +station = ('kvel', 0.0092256325628952383) +zone = ('utz011', 0.0022213878002402985) + +[fips4901393225] +centroid = (0.69608800751010913, -1.9243662436746292) +description = South Duchesne CCD, UT +station = ('kpuc', 0.0080726656182792348) +zone = ('utz011', 0.0063819958347216361) + +[fips49015] +centroid = (0.6808359766026586, -1.9324479384161113) +description = Emery County, UT +station = ('kpuc', 0.010612467573346395) +zone = ('utz012', 0.0062833496656059442) + +[fips4901530] +centroid = (0.64933091610186133, -1.9052194232748909) +description = Aneth CDP, UT +station = ('k4bl', 0.008357452033306359) +zone = ('coz021', 0.0067621353385984876) + +[fips4901590301] +centroid = (0.68638259805891144, -1.9354762941078316) +description = Castle Dale-Huntington CCD, UT +station = ('kpuc', 0.0054209550321286416) +zone = ('utz012', 0.00059413111121299576) + +[fips4901590731] +centroid = (0.67863942737914618, -1.9394906910137588) +description = Emery-Ferron CCD, UT +station = ('k4hv', 0.010592901108559974) +zone = ('utz012', 0.0089015764253282444) + +[fips4901591161] +centroid = (0.67908914636750761, -1.9282120417748136) +description = Green River CCD, UT +station = ('k4hv', 0.010006324516351642) +zone = ('utz013', 0.0069500474534158092) + +[fips49017] +centroid = (0.66028636526992224, -1.9451849149648528) +description = Garfield County, UT +station = ('kbce', 0.009915560497164284) +zone = ('utz020', 0.0096904925380836525) + +[fips4901750] +centroid = (0.67554473172255747, -1.9557915949884879) +description = Annabella town, UT +station = ('ku24', 0.013059874205915287) +zone = ('utz517', 0.0061081069796516067) + +[fips4901790702] +centroid = (0.66139374177372756, -1.9315859202985515) +description = East Garfield CCD, UT +station = ('k4hv', 0.0082540111198881379) +zone = ('utz021', 0.0099506605549355264) + +[fips4901790903] +centroid = (0.66028636526992224, -1.9451849149648528) +description = Escalante CCD, UT +station = ('kbce', 0.009915560497164284) +zone = ('utz020', 0.0096904925380836525) + +[fips4901792537] +centroid = (0.65997363717454993, -1.9621859577690195) +description = Panguitch CCD, UT +station = ('kbce', 0.0042819589931817103) +zone = ('utz518', 0.0011162011547871536) + +[fips4901793483] +centroid = (0.66019251891604247, -1.9553669912880627) +description = Tropic CCD, UT +station = ('kbce', 0.0027211128260021143) +zone = ('utz518', 0.0051430371935218041) + +[fips4901860] +centroid = (0.66500470582305615, -1.9544801894951245) +description = Antimony town, UT +station = ('kbce', 0.0073809476828410213) +zone = ('utz518', 0.0069907019637642075) + +[fips49019] +centroid = (0.68023031244563148, -1.9124174752693806) +description = Grand County, UT +station = ('kcny', 0.0043464114869790375) +zone = ('utz027', 0.0020358694868299488) + +[fips4901905] +centroid = (0.64719831574214193, -1.9740548599076968) +description = Apple Valley town, UT +station = ('ksgu', 0.0068921006951089504) +zone = ('utz019', 0.0063509530033877288) + +[fips4901991935] +centroid = (0.67492344686872507, -1.9067741276659824) +description = Moab CCD, UT +station = ('kcny', 0.0070121219637280024) +zone = ('utz027', 0.0053351448027786135) + +[fips4901993356] +centroid = (0.68053722859459476, -1.9130238724646935) +description = Thompson Springs CCD, UT +station = ('kcny', 0.0043780044000604852) +zone = ('utz027', 0.0024262913060249997) + +[fips4901993526] +centroid = (0.68682282245614201, -1.9169010166782439) +description = Uintah and Ouray CCD, UT +station = ('kcny', 0.010274696854263306) +zone = ('utz025', 0.0042132790369585719) + +[fips49021] +centroid = (0.66117831578415398, -1.9772845393286347) +description = Iron County, UT +station = ('kcdc', 0.0041282560706715331) +zone = ('utz016', 0.0044551642892593476) + +[fips4902190129] +centroid = (0.6608241012124616, -1.9839694470697455) +description = Beryl-Newcastle CCD, UT +station = ('kcdc', 0.0083981416552722805) +zone = ('utz016', 0.0051049615998254869) + +[fips4902190344] +centroid = (0.65975199781283922, -1.9748659493176834) +description = Cedar City CCD, UT +station = ('kcdc', 0.001900656047295836) +zone = ('utz016', 0.0067241948713606019) + +[fips4902192623] +centroid = (0.6615214649683886, -1.9680513636131491) +description = Parowan CCD, UT +station = ('kcdc', 0.0058590310298386253) +zone = ('utz518', 0.0049642188499060659) + +[fips49023] +centroid = (0.69308467983986233, -1.9686312492571243) +description = Juab County, UT +station = ('ku24', 0.0071744373155464766) +zone = ('utz015', 0.0087165720371781743) + +[fips4902390946] +centroid = (0.69357742119428523, -1.960609768374836) +description = Eureka CCD, UT +station = ('ku24', 0.0078324627072578375) +zone = ('utz004', 0.0086424250223302596) + +[fips4902392193] +centroid = (0.69128302881290604, -1.9542276927122382) +description = Nephi CCD, UT +station = ('ku24', 0.0095614833542098671) +zone = ('utz014', 0.0068463672528303885) + +[fips4902393913] +centroid = (0.69397867238931876, -1.97744456856775) +description = West Juab CCD, UT +station = ('kqca', 0.0070944945936426643) +zone = ('utz015', 0.0086308428950849069) + +[fips49025] +centroid = (0.65057353816940366, -1.9515471113272704) +description = Kane County, UT +station = ('kpga', 0.0078393879795624656) +zone = ('utz020', 0.0014984852496260474) + +[fips4902591591] +centroid = (0.65042057751375892, -1.9503468484006738) +description = Kanab CCD, UT +station = ('kpga', 0.0071298566711545091) +zone = ('utz020', 0.0019545152610036328) + +[fips4902592494] +centroid = (0.65191918702269136, -1.9663653930090152) +description = Orderville CCD, UT +station = ('kcdc', 0.00855523896533774) +zone = ('utz518', 0.0098192989928723197) + +[fips49027] +centroid = (0.68232844255262404, -1.9813852776726579) +description = Millard County, UT +station = ('kmlf', 0.013705626732557862) +zone = ('utz015', 0.0062696333701123558) + +[fips4902740] +centroid = (0.67928570534786714, -1.9536172114464758) +description = Aurora city, UT +station = ('ku24', 0.011369990755129306) +zone = ('utz517', 0.0024241917046741905) + +[fips4902790516] +centroid = (0.68664610786937763, -1.9642538587733676) +description = Delta CCD, UT +station = ('ku24', 0.00055878727563484713) +zone = ('utz014', 0.0093913190750757238) + +[fips4902790989] +centroid = (0.67904268570281945, -1.9655130963753888) +description = Fillmore CCD, UT +station = ('ku24', 0.0074662852937016667) +zone = ('utz015', 0.0096182278917484997) + +[fips4902791075] +centroid = (0.68232844255262404, -1.9813852776726579) +description = Garrison-Sevier Lake CCD, UT +station = ('kmlf', 0.013705626732557862) +zone = ('utz015', 0.0062696333701123558) + +[fips49029] +centroid = (0.71717371417588793, -1.9474014656615932) +description = Morgan County, UT +station = ('khif', 0.0051325610415847867) +zone = ('utz006', 0.0046862332703617371) + +[fips4902960] +centroid = (0.72493229611294852, -1.9514984515477247) +description = Avon CDP, UT +station = ('klgu', 0.0043518177513429211) +zone = ('utz007', 0.0044377828259311884) + +[fips4902992064] +centroid = (0.71875301025614013, -1.9461614266813438) +description = Morgan North CCD, UT +station = ('kevw', 0.0063909988279797691) +zone = ('utz007', 0.0047407880830005527) + +[fips4902992107] +centroid = (0.71464628543278252, -1.9490280252579895) +description = Morgan South CCD, UT +station = ('kslc', 0.0048273534670898923) +zone = ('utz006', 0.002847979133121755) + +[fips49031] +centroid = (0.66908734510273626, -1.9570267994067092) +description = Piute County, UT +station = ('kbce', 0.011101839410364057) +zone = ('utz518', 0.0088727137886508763) + +[fips4903190387] +centroid = (0.66811528397583808, -1.9558486148951504) +description = Circleville CCD, UT +station = ('kbce', 0.010198456460374195) +zone = ('utz518', 0.0084770850045405161) + +[fips4903191849] +centroid = (0.6708361824665271, -1.9589911151199513) +description = Marysvale CCD, UT +station = ('kbce', 0.012908993481323327) +zone = ('utz518', 0.010035327847309785) + +[fips49033] +centroid = (0.72653864479660646, -1.9415082218158943) +description = Rich County, UT +station = ('kevw', 0.0068563044567549886) +zone = ('utz007', 0.0044811058823982777) + +[fips4903345] +centroid = (0.7032805093575778, -1.9189833166489207) +description = Ballard town, UT +station = ('kvel', 0.0064485568834579321) +zone = ('utz011', 0.0049910547784470316) + +[fips4903391032] +centroid = (0.73110388506775559, -1.9420230590386474) +description = Garden City-Laketown CCD, UT +station = ('klgu', 0.0077684709833271606) +zone = ('idz025', 0.0069448959507882827) + +[fips4903392752] +centroid = (0.72385225146522925, -1.9413830293486485) +description = Randolph-Woodruff CCD, UT +station = ('kevw', 0.0044606209442389771) +zone = ('utz007', 0.0034009523006653516) + +[fips49035] +centroid = (0.70978844071253655, -1.9534465706055082) +description = Salt Lake County, UT +station = ('kslc', 0.0020916744956134266) +zone = ('utz003', 0.0050193949441462091) + +[fips4903590172] +centroid = (0.70720044904438695, -1.9558379334801284) +description = Bingham CCD, UT +station = ('kslc', 0.0047703734628186893) +zone = ('utz003', 0.0023191793393957856) + +[fips4903590473] +centroid = (0.70880705952743261, -1.9497931077888937) +description = Cottonwood CCD, UT +station = ('k36u', 0.0044175458602096181) +zone = ('utz006', 0.0044902581491351231) + +[fips4903590774] +centroid = (0.71082340350567674, -1.9497951149175332) +description = Emigration CCD, UT +station = ('kslc', 0.0034682130499097703) +zone = ('utz006', 0.0030299391450293559) + +[fips4903591806] +centroid = (0.71128144771457014, -1.9566627237247431) +description = Magna CCD, UT +station = ('kslc', 0.0019463192917550936) +zone = ('utz003', 0.0046761757630255476) + +[fips4903593010] +centroid = (0.70966522046734581, -1.9534232006468242) +description = Salt Lake City CCD, UT +station = ('kslc', 0.0022151950856756255) +zone = ('utz003', 0.0049648126533521552) + +[fips49037] +centroid = (0.65664634148854784, -1.916185117525661) +description = San Juan County, UT +station = ('k4bl', 0.0044618740704969531) +zone = ('utz029', 0.0048886934556303637) + +[fips4903790215] +centroid = (0.656548864849824, -1.9195665184184745) +description = Blanding CCD, UT +station = ('k4bl', 0.007139085652016027) +zone = ('utz029', 0.0039704602012339317) + +[fips4903790280] +centroid = (0.64917177698066442, -1.9083251494123521) +description = Casa del Eco Mesa-White Mesa CCD, UT +station = ('k4bl', 0.0075727385695937332) +zone = ('utz022', 0.0045543006058630471) + +[fips4903792021] +centroid = (0.66498725253053625, -1.9089430134208505) +description = Monticello CCD, UT +station = ('k4bl', 0.0085476962988282161) +zone = ('utz028', 0.00095031672414577404) + +[fips4903792408] +centroid = (0.64780073358676027, -1.9269446360318929) +description = Oljato CCD, UT +station = ('kpga', 0.014896262182905974) +zone = ('utz021', 0.0070833355581044624) + +[fips49039] +centroid = (0.68732092197136874, -1.9472717178850001) +description = Sanpete County, UT +station = ('kpuc', 0.01179273092730487) +zone = ('utz014', 0.0048337019657257721) + +[fips4903950] +centroid = (0.72628562441494493, -1.9569377701615649) +description = Bear River City city, UT +station = ('klgu', 0.0046478808191597739) +zone = ('utz001', 0.0042871738736994305) + +[fips4903990860] +centroid = (0.68383439989770722, -1.9461102885342603) +description = Ephraim-Manti CCD, UT +station = ('kpuc', 0.012698386093145443) +zone = ('utz014', 0.004944503004810418) + +[fips4903991204] +centroid = (0.68466287278704396, -1.9522102491765656) +description = Gunnison CCD, UT +station = ('ku24', 0.01003005475686726) +zone = ('utz014', 0.00018044503813779143) + +[fips4903992150] +centroid = (0.69098616576043437, -1.945589203032785) +description = Mount Pleasant-Moroni CCD, UT +station = ('kpvu', 0.011399675983309335) +zone = ('utz014', 0.0082984368459934742) + +[fips4904060] +centroid = (0.6680037923432206, -1.9659413652672431) +description = Beaver city, UT +station = ('kmlf', 0.0057254994747505221) +zone = ('utz518', 0.0076876880167421361) + +[fips49041] +centroid = (0.67625967094405193, -1.9514863215094234) +description = Sevier County, UT +station = ('ku24', 0.014633367274089409) +zone = ('utz517', 0.003998816717012391) + +[fips4904191978] +centroid = (0.67367960307070629, -1.9589071124230528) +description = Monroe CCD, UT +station = ('kmlf', 0.011112242501488491) +zone = ('utz517', 0.0091248374673642951) + +[fips4904192838] +centroid = (0.67504237360395591, -1.9503226057773637) +description = Richfield CCD, UT +station = ('ku24', 0.01613646555133931) +zone = ('utz517', 0.0051836728435503089) + +[fips4904192967] +centroid = (0.67931570755770887, -1.9487475683004865) +description = Salina CCD, UT +station = ('k4hv', 0.01604763024376395) +zone = ('utz517', 0.0017912445714048269) + +[fips49043] +centroid = (0.71335201907267354, -1.9367654466532322) +description = Summit County, UT +station = ('kevw', 0.0069398417257582256) +zone = ('utz009', 0.004426934864177768) + +[fips4904390430] +centroid = (0.71495103737347321, -1.9414748336673036) +description = Coalville CCD, UT +station = ('kevw', 0.0059354345566856861) +zone = ('utz006', 0.0044978070503356804) + +[fips4904391548] +centroid = (0.71215163397302939, -1.9331826173114459) +description = Kamas CCD, UT +station = ('kevw', 0.0088349159322562883) +zone = ('utz009', 0.0019693522561932573) + +[fips4904392580] +centroid = (0.71064654929257209, -1.9467229165550028) +description = Park City CCD, UT +station = ('k36u', 0.0043550881233180476) +zone = ('utz006', 0.0018988980295497782) + +[fips49045] +centroid = (0.70629446608296909, -1.9743865248254531) +description = Tooele County, UT +station = ('kqca', 0.0060537012859715883) +zone = ('utz005', 0.0086220607612879693) + +[fips4904590602] +centroid = (0.70688711008377636, -1.9826058562317477) +description = Dugway-Wendover CCD, UT +station = ('kqca', 0.0066934313462286505) +zone = ('nvz033', 0.008838020268667434) + +[fips4904592902] +centroid = (0.70157352498924963, -1.9612791894094384) +description = Rush Valley CCD, UT +station = ('kpvu', 0.0087553641835520328) +zone = ('utz003', 0.0056486893374007984) + +[fips4904593397] +centroid = (0.71067777323289028, -1.9622529784122962) +description = Tooele-Grantsville CCD, UT +station = ('kslc', 0.006213227725682743) +zone = ('utz003', 0.0045584330857315492) + +[fips49047] +centroid = (0.70032884343318991, -1.9114452919694347) +description = Uintah County, UT +station = ('kvel', 0.005371151907149414) +zone = ('utz024', 0.0015820320380395586) + +[fips4904720] +centroid = (0.69978138600671691, -1.9502087579502561) +description = Benjamin CDP, UT +station = ('kpvu', 0.0021520830903159266) +zone = ('utz008', 0.0027018356642183891) + +[fips4904793569] +centroid = (0.69633245832514346, -1.9120915175782782) +description = Uintah and Ouray CCD, UT +station = ('kvel', 0.0093907950026453409) +zone = ('utz024', 0.0055597086787610994) + +[fips4904793655] +centroid = (0.7073952277889094, -1.9100952797930173) +description = Vernal CCD, UT +station = ('kvel', 0.0018755027391419816) +zone = ('utz023', 0.0042205226041066952) + +[fips49049] +centroid = (0.70023323429676576, -1.9489859104631386) +description = Utah County, UT +station = ('kpvu', 0.0017978487109399789) +zone = ('utz008', 0.0018075990421775419) + +[fips4904990043] +centroid = (0.70547374245551131, -1.9488188300938452) +description = American Fork-Pleasant Grove CCD, UT +station = ('k36u', 0.003239056726568199) +zone = ('utz008', 0.0036784201286191908) + +[fips4904991118] +centroid = (0.69783968976058064, -1.9542168542175835) +description = Goshen CCD, UT +station = ('kpvu', 0.0052807599689402235) +zone = ('utz004', 0.00228532622712005) + +[fips4904991634] +centroid = (0.70291688746121728, -1.9549644136427977) +description = Lehi CCD, UT +station = ('kpvu', 0.0040501730992791403) +zone = ('utz004', 0.0033926549487034866) + +[fips4904992709] +centroid = (0.70264957283298168, -1.9497306599082571) +description = Provo-Orem CCD, UT +station = ('kpvu', 0.00073974005660024686) +zone = ('utz008', 0.0015775176172232684) + +[fips4904993268] +centroid = (0.69854771747823718, -1.9497145505192612) +description = Spanish Fork-Payson CCD, UT +station = ('kpvu', 0.0033665641496940183) +zone = ('utz004', 0.0028081434236813725) + +[fips4904993311] +centroid = (0.69844807663124087, -1.9435246705138933) +description = Springville-Mapleton CCD, UT +station = ('kpvu', 0.0059338697870791332) +zone = ('utz008', 0.0048000292725350353) + +[fips4905050] +centroid = (0.72872482676436201, -1.9534746354998804) +description = Benson CDP, UT +station = ('klgu', 0.0011215587799344269) +zone = ('utz001', 0.00080891289549673282) + +[fips49051] +centroid = (0.70397652920998055, -1.9401353632795681) +description = Wasatch County, UT +station = ('k36u', 0.0043827970316626091) +zone = ('utz008', 0.0063241002213994535) + +[fips4905191300] +centroid = (0.70708431483595913, -1.9404326801176452) +description = Heber City East CCD, UT +station = ('k36u', 0.0033655979520184074) +zone = ('utz009', 0.0067119645898434171) + +[fips4905191308] +centroid = (0.70467862280818017, -1.9442488599804235) +description = Heber City South CCD, UT +station = ('k36u', 0.0019113767807051323) +zone = ('utz008', 0.003988925896667766) + +[fips4905191312] +centroid = (0.70628860177668251, -1.9460640024024976) +description = Heber City West CCD, UT +station = ('k36u', 0.00099392881147394949) +zone = ('utz008', 0.0046583679307495296) + +[fips4905192301] +centroid = (0.70807283441770363, -1.94443189265908) +description = North Wasatch CCD, UT +station = ('k36u', 0.0015551330354470574) +zone = ('utz006', 0.0047311015407573414) + +[fips4905193139] +centroid = (0.69752249362232321, -1.9380539883333947) +description = Soldier Summit CCD, UT +station = ('kpuc', 0.0072352548969602439) +zone = ('utz010', 0.0047106727174548047) + +[fips4905193612] +centroid = (0.70213843570824264, -1.9378479347619042) +description = Uintah and Ouray CCD, UT +station = ('k36u', 0.0068902832039576013) +zone = ('utz010', 0.0082603336540884292) + +[fips49053] +centroid = (0.65035385357645525, -1.9807357708448206) +description = Washington County, UT +station = ('ksgu', 0.0034952207264956673) +zone = ('utz019', 0.0018191300636391564) + +[fips4905380] +centroid = (0.65800628458840937, -1.9836276941489128) +description = Beryl Junction CDP, UT +station = ('kcdc', 0.0076434221842619473) +zone = ('utz016', 0.0074801321018716791) + +[fips4905390817] +centroid = (0.65375834517527287, -1.9827884700313838) +description = Enterprise CCD, UT +station = ('ksgu', 0.0065325132107124633) +zone = ('utz019', 0.0050844908686452049) + +[fips4905391462] +centroid = (0.6497577712770215, -1.9746765985471346) +description = Hurricane CCD, UT +station = ('ksgu', 0.0068730387277289714) +zone = ('utz019', 0.0057517740718860365) + +[fips4905392924] +centroid = (0.64934048050616222, -1.9859454390356837) +description = St. George CCD, UT +station = ('ksgu', 0.0033447214943902416) +zone = ('utz019', 0.0033705345839979734) + +[fips4905490] +centroid = (0.66914968826361754, -1.946814022741957) +description = Bicknell town, UT +station = ('kbce', 0.013925916820030991) +zone = ('utz517', 0.011482775656340545) + +[fips49055] +centroid = (0.66778442190953746, -1.9371465742019904) +description = Wayne County, UT +station = ('k4hv', 0.0041749769213572244) +zone = ('utz013', 0.0066941290332894017) + +[fips4905534] +centroid = (0.64699898168827163, -1.9487486853112075) +description = Big Water town, UT +station = ('kpga', 0.0037264106696856592) +zone = ('azz005', 0.0051102578616231123) + +[fips4905591247] +centroid = (0.66911858649634703, -1.930813420118326) +description = Hanksville CCD, UT +station = ('k4hv', 0.0013217015340859358) +zone = ('utz013', 0.003404525928585284) + +[fips4905591720] +centroid = (0.66844352804826068, -1.9475574282835515) +description = Loa CCD, UT +station = ('kbce', 0.013011077652726391) +zone = ('utz517', 0.012031787256076934) + +[fips49057] +centroid = (0.72030357821690438, -1.9526024421127812) +description = Weber County, UT +station = ('kogd', 0.0022186338852124231) +zone = ('utz002', 0.0042281005127590551) + +[fips4905792308] +centroid = (0.71965101706287615, -1.959041485322164) +description = Northwest Weber CCD, UT +station = ('kogd', 0.0030499976255568295) +zone = ('utz002', 0.0016187650198532478) + +[fips4905792322] +centroid = (0.71937473144228559, -1.9549569261803066) +description = Ogden CCD, UT +station = ('kogd', 0.0003089028892321893) +zone = ('utz002', 0.0029499713416730358) + +[fips4905792365] +centroid = (0.7207257210030843, -1.9495029118941645) +description = Ogden Valley CCD, UT +station = ('khif', 0.0046964855820226343) +zone = ('utz007', 0.0038687278109518345) + +[fips4906370] +centroid = (0.65664822644414, -1.9113599802755974) +description = Blanding city, UT +station = ('k4bl', 0.00064860817156040852) +zone = ('utz022', 0.0064089500539527885) + +[fips4906590] +centroid = (0.70426052918586513, -1.9237669848759571) +description = Bluebell CDP, UT +station = ('kvel', 0.0097267411584019865) +zone = ('utz011', 0.0022350898155588908) + +[fips4906700] +centroid = (0.65087427585281488, -1.9128285177615181) +description = Bluff CDP, UT +station = ('k4bl', 0.005941473444571215) +zone = ('utz022', 0.00083199277409419872) + +[fips4906810] +centroid = (0.70650350416748053, -1.9537149149780022) +description = Bluffdale city, UT +station = ('kslc', 0.0053120372491914734) +zone = ('utz003', 0.0039381646800267581) + +[fips4906920] +centroid = (0.69866219362387549, -1.9056961425067804) +description = Bonanza CDP, UT +station = ('kvel', 0.0081671027033707547) +zone = ('utz024', 0.0056726785894303947) + +[fips4907470] +centroid = (0.66187761685555058, -1.9448524646489331) +description = Boulder town, UT +station = ('kbce', 0.010638567545468084) +zone = ('utz020', 0.011195037924961029) + +[fips4907690] +centroid = (0.71335929709565449, -1.9523464197648062) +description = Bountiful city, UT +station = ('kslc', 0.0020881379558348374) +zone = ('utz006', 0.0045011710381903805) + +[fips4908020] +centroid = (0.65794078238158193, -1.9694812769627232) +description = Brian Head town, UT +station = ('kcdc', 0.0035499078846363673) +zone = ('utz518', 0.0068251407041660505) + +[fips4908460] +centroid = (0.72427743112430776, -1.9554750446220537) +description = Brigham City city, UT +station = ('kogd', 0.0052111178187045221) +zone = ('utz002', 0.0037343511888255502) + +[fips4908787] +centroid = (0.6576736248329792, -1.9575882892803684) +description = Bryce Canyon City town, UT +station = ('kbce', 0.00035351836525820122) +zone = ('utz518', 0.0047325971779216486) + +[fips4909725] +centroid = (0.73004789105712886, -1.9548681936411352) +description = Cache CDP, UT +station = ('klgu', 0.0021746073152397885) +zone = ('utz001', 0.0014153795977510657) + +[fips4910330] +centroid = (0.65609633588136695, -1.9558272520651061) +description = Cannonville town, UT +station = ('kbce', 0.0022599639109438185) +zone = ('utz020', 0.0052075487963714126) + +[fips4910440] +centroid = (0.6916258463845828, -1.9344210854953685) +description = Carbonville CDP, UT +station = ('kpuc', 0.001146433647801953) +zone = ('utz010', 0.0032412968488983156) + +[fips4910660] +centroid = (0.68454944383895688, -1.9377131429837726) +description = Castle Dale city, UT +station = ('kpuc', 0.0078118222194587849) +zone = ('utz012', 0.0031158129656950859) + +[fips4911000] +centroid = (0.67428668094442734, -1.9093486104857214) +description = Castle Valley town, UT +station = ('kcny', 0.0053307926871745603) +zone = ('utz027', 0.0044928355805105152) + +[fips4911320] +centroid = (0.65772008549766725, -1.9738513545169141) +description = Cedar City city, UT +station = ('kcdc', 0.00028427772953211667) +zone = ('utz016', 0.0088344931623102647) + +[fips4911430] +centroid = (0.70409723618104847, -1.9566744697906091) +description = Cedar Fort town, UT +station = ('kpvu', 0.0056644525191464077) +zone = ('utz003', 0.0032735809219053163) + +[fips4911440] +centroid = (0.70550243566841409, -1.9506461200075134) +description = Cedar Hills city, UT +station = ('kpvu', 0.003643556103844584) +zone = ('utz008', 0.0041878235009546478) + +[fips4911870] +centroid = (0.68290523896382305, -1.9516057543901373) +description = Centerfield town, UT +station = ('ku24', 0.01094239357243996) +zone = ('utz014', 0.0017900672474540575) + +[fips4911980] +centroid = (0.71429835404639752, -1.9527336908725312) +description = Centerville city, UT +station = ('kslc', 0.0027263278763359341) +zone = ('utz006', 0.0050344937651088696) + +[fips4912200] +centroid = (0.65301439858161026, -1.9831529122324929) +description = Central CDP, UT +station = ('ksgu', 0.0057996485706873196) +zone = ('utz019', 0.0044139278229399434) + +[fips4912260] +centroid = (0.67551237331822545, -1.9565152783095348) +description = Central Valley town, UT +station = ('ku24', 0.012790090086171185) +zone = ('utz517', 0.0065090269410409329) + +[fips4912420] +centroid = (0.70628165536625942, -1.9454335894766772) +description = Charleston town, UT +station = ('k36u', 0.00054770553375748645) +zone = ('utz008', 0.0048215395860916228) + +[fips4912970] +centroid = (0.6661246486974759, -1.9594085106105659) +description = Circleville town, UT +station = ('kbce', 0.0082903233618534158) +zone = ('utz518', 0.0054149083284759179) + +[fips4913190] +centroid = (0.73165076653557548, -1.9556490539484774) +description = Clarkston town, UT +station = ('klgu', 0.0035385606532763354) +zone = ('utz001', 0.0028650707719468063) + +[fips4913300] +centroid = (0.68306940463326571, -1.9389988746838394) +description = Clawson town, UT +station = ('kpuc', 0.0095882533184002729) +zone = ('utz012', 0.0048849796524967227) + +[fips4913740] +centroid = (0.69190722836658924, -1.9400178851676162) +description = Clear Creek CDP, UT +station = ('kpuc', 0.0054617923485154101) +zone = ('utz010', 0.0059949031798424987) + +[fips4913850] +centroid = (0.71727408806117021, -1.9550736538006801) +description = Clearfield city, UT +station = ('khif', 0.00075288861375609418) +zone = ('utz002', 0.0044754750804444667) + +[fips4914070] +centroid = (0.68677683303035209, -1.9347942194361523) +description = Cleveland town, UT +station = ('kpuc', 0.0048763009803530766) +zone = ('utz012', 0.00012366786640778796) + +[fips4914290] +centroid = (0.71800646312189198, -1.9559279575629462) +description = Clinton city, UT +station = ('kogd', 0.0012531561285817258) +zone = ('utz002', 0.0035212639540535265) + +[fips4914840] +centroid = (0.71412572353008263, -1.944184230438222) +description = Coalville city, UT +station = ('k36u', 0.0075969091757030604) +zone = ('utz006', 0.0023617091397693992) + +[fips4915720] +centroid = (0.70783632485076586, -1.9567923493282888) +description = Copperton CDP, UT +station = ('kslc', 0.0044320497494963838) +zone = ('utz003', 0.0018254304485407621) + +[fips4915830] +centroid = (0.72520985582389319, -1.9569507030513225) +description = Corinne city, UT +station = ('klgu', 0.0054068421902531433) +zone = ('utz002', 0.0041875118117150403) + +[fips4915940] +centroid = (0.73246508480467842, -1.9540485346645213) +description = Cornish town, UT +station = ('klgu', 0.0035057469917855449) +zone = ('idz024', 0.0027999271574009974) + +[fips4916270] +centroid = (0.70887062441879034, -1.9515430098035282) +description = Cottonwood Heights city, UT +station = ('kslc', 0.0035523927984128156) +zone = ('utz006', 0.0052989889761835387) + +[fips4916490] +centroid = (0.73248482447851848, -1.9509151625117083) +description = Cove CDP, UT +station = ('klgu', 0.0033566317380475264) +zone = ('utz001', 0.0034162189194473377) + +[fips4918090] +centroid = (0.65108064358357065, -1.9838436786438469) +description = Dammeron Valley CDP, UT +station = ('ksgu', 0.0039616834719883006) +zone = ('utz019', 0.0028607032388344093) + +[fips4918140] +centroid = (0.70627863594665363, -1.9444640067173167) +description = Daniel town, UT +station = ('k36u', 0.0003683966830790657) +zone = ('utz008', 0.0051570834886106864) + +[fips4918910] +centroid = (0.68687205819434072, -1.9647693766745289) +description = Delta city, UT +station = ('ku24', 0.00040096088779248445) +zone = ('utz015', 0.0076438815533650117) + +[fips4919020] +centroid = (0.68569855116517742, -1.9661328453394795) +description = Deseret CDP, UT +station = ('ku24', 0.0012140826653596318) +zone = ('utz015', 0.0064936506465013491) + +[fips4919680] +centroid = (0.72768403457152031, -1.9563093294577993) +description = Deweyville town, UT +station = ('klgu', 0.0034788739939288246) +zone = ('utz001', 0.0029855998335504377) + +[fips4920120] +centroid = (0.70677441417397502, -1.9523366633742876) +description = Draper city, UT +station = ('kslc', 0.0052213570781799654) +zone = ('utz008', 0.0059490483278157235) + +[fips4920340] +centroid = (0.70117157566251531, -1.9267534003057518) +description = Duchesne city, UT +station = ('kpuc', 0.01083031257261091) +zone = ('utz011', 0.0016066485781709981) + +[fips4920450] +centroid = (0.70215793103598745, -1.967929574537945) +description = Dugway CDP, UT +station = ('kqca', 0.0080226723389300227) +zone = ('utz003', 0.0083856789342535727) + +[fips4920780] +centroid = (0.71436186657787759, -1.9091454367074969) +description = Dutch John CDP, UT +station = ('kvel', 0.0087974829195767053) +zone = ('utz023', 0.0032323647375757042) + +[fips4920810] +centroid = (0.70361613617273611, -1.9548156243240651) +description = Eagle Mountain city, UT +station = ('kpvu', 0.004172467533721096) +zone = ('utz004', 0.0039842640763162974) + +[fips4920890] +centroid = (0.68998199057529941, -1.9273582965179081) +description = East Carbon city, UT +station = ('kpuc', 0.0045519474724244223) +zone = ('utz010', 0.0064876394886711703) + +[fips4921880] +centroid = (0.71524043041674634, -1.9449817237333358) +description = Echo CDP, UT +station = ('kevw', 0.0073121690151802116) +zone = ('utz006', 0.0029350959204775804) + +[fips4921990] +centroid = (0.72088489503086617, -1.9512572994049766) +description = Eden CDP, UT +station = ('kogd', 0.0033831041285677299) +zone = ('utz002', 0.0051638335661836196) + +[fips4922210] +centroid = (0.69772985619075267, -1.95393362218657) +description = Elberta CDP, UT +station = ('kpvu', 0.0052330764072089078) +zone = ('utz004', 0.0023037460916640858) + +[fips4922370] +centroid = (0.69829127625124165, -1.9491457128094514) +description = Elk Ridge city, UT +station = ('kpvu', 0.003658892781967479) +zone = ('utz008', 0.0036814205032332493) + +[fips4922540] +centroid = (0.68744272849986532, -1.9340901536158979) +description = Elmo town, UT +station = ('kpuc', 0.0040938227292067189) +zone = ('utz012', 0.00091383374409420039) + +[fips4922650] +centroid = (0.67514691882615041, -1.9573677669293787) +description = Elsinore town, UT +station = ('kmlf', 0.012724379274688178) +zone = ('utz517', 0.0072362171553513781) + +[fips4922760] +centroid = (0.72733264743321624, -1.9571528645385809) +description = Elwood town, UT +station = ('klgu', 0.0041997933934384566) +zone = ('utz001', 0.0037010835034915349) + +[fips4922870] +centroid = (0.67936789290234345, -1.9417186387105148) +description = Emery town, UT +station = ('k4hv', 0.012175253462631413) +zone = ('utz517', 0.0070660683924381002) + +[fips4922875] +centroid = (0.71190946953931522, -1.9502503316930384) +description = Emigration Canyon CDP, UT +station = ('kslc', 0.0029825237357201323) +zone = ('utz006', 0.002910369247143804) + +[fips4923200] +centroid = (0.65915270410758187, -1.9729695967255143) +description = Enoch city, UT +station = ('kcdc', 0.0014059216925360924) +zone = ('utz016', 0.0081684144831494342) + +[fips4923310] +centroid = (0.7174522512712137, -1.9500688349041237) +description = Enterprise CDP, UT +station = ('khif', 0.0031073249143541313) +zone = ('utz006', 0.0056064236584209776) + +[fips4923420] +centroid = (0.65575309943066973, -1.9851723279902203) +description = Enterprise city, UT +station = ('ksgu', 0.0087515996189233367) +zone = ('utz019', 0.0075152597281100669) + +[fips4923530] +centroid = (0.68691808252671582, -1.9474745425973741) +description = Ephraim city, UT +station = ('kpuc', 0.01208615558394492) +zone = ('utz014', 0.0044831812245792295) + +[fips4923640] +centroid = (0.70864270187177236, -1.9604475400208632) +description = Erda CDP, UT +station = ('kslc', 0.0057028808277082964) +zone = ('utz003', 0.0021055793496198997) + +[fips4923750] +centroid = (0.65907781202937876, -1.9478761428582581) +description = Escalante city, UT +station = ('kbce', 0.0076002200866671079) +zone = ('utz020', 0.0076259620120579319) + +[fips4924080] +centroid = (0.69740847126229044, -1.956779154639144) +description = Eureka city, UT +station = ('kpvu', 0.0069720744951068765) +zone = ('utz004', 0.0038607539016408967) + +[fips4924410] +centroid = (0.7022935256655749, -1.9562140344806405) +description = Fairfield town, UT +station = ('kpvu', 0.0048937498691936114) +zone = ('utz004', 0.003467330678123133) + +[fips4924630] +centroid = (0.69167033482721607, -1.9449563117394266) +description = Fairview city, UT +station = ('kpvu', 0.010901863907202068) +zone = ('utz014', 0.0091365781313423426) + +[fips4924740] +centroid = (0.71531551448116726, -1.9531523779067921) +description = Farmington city, UT +station = ('khif', 0.0024341304754906894) +zone = ('utz006', 0.0057468968226442266) + +[fips4924850] +centroid = (0.72083990044274981, -1.9553211589419053) +description = Farr West city, UT +station = ('kogd', 0.0017751701319823449) +zone = ('utz002', 0.0021241697792562797) + +[fips4925070] +centroid = (0.68459293744391647, -1.9522169337876007) +description = Fayette town, UT +station = ('ku24', 0.010038269019993828) +zone = ('utz014', 0.00015606992246684049) + +[fips4925180] +centroid = (0.68226740838868172, -1.9396573874106167) +description = Ferron city, UT +station = ('kpuc', 0.010537609755582026) +zone = ('utz012', 0.0058292986469098999) + +[fips4925290] +centroid = (0.72976019098323019, -1.9568147942624694) +description = Fielding town, UT +station = ('klgu', 0.0035132987494684298) +zone = ('utz001', 0.0027652433820421814) + +[fips4925510] +centroid = (0.6800695850748153, -1.9606561068664765) +description = Fillmore city, UT +station = ('ku24', 0.0072379954333865052) +zone = ('utz014', 0.0078251608733211318) + +[fips4925910] +centroid = (0.71365029584183937, -1.9107154476361283) +description = Flaming Gorge CDP, UT +station = ('kvel', 0.0079618811560744976) +zone = ('utz023', 0.0021520990153703489) + +[fips4926610] +centroid = (0.70325771535754655, -1.9179616881712658) +description = Fort Duchesne CDP, UT +station = ('kvel', 0.0057438410590279227) +zone = ('utz011', 0.0057570983800587514) + +[fips4926720] +centroid = (0.69163809859593184, -1.9484896260903342) +description = Fountain Green city, UT +station = ('kpvu', 0.010325956432521773) +zone = ('utz014', 0.0076818016302478863) + +[fips4926940] +centroid = (0.70881110869129738, -1.9421408164032796) +description = Francis town, UT +station = ('k36u', 0.0030379884765468698) +zone = ('utz006', 0.0049781957399555486) + +[fips4927270] +centroid = (0.67117421783605336, -1.9480485115751851) +description = Fremont CDP, UT +station = ('kbce', 0.015095659640930381) +zone = ('utz517', 0.0092821500455222417) + +[fips4927490] +centroid = (0.71607557046382575, -1.9531425517031034) +description = Fruit Heights city, UT +station = ('khif', 0.0017346376681492664) +zone = ('utz002', 0.0062826129316715593) + +[fips4927902] +centroid = (0.73084386591579342, -1.9445940162932978) +description = Garden CDP, UT +station = ('klgu', 0.0058502387769837644) +zone = ('idz025', 0.0069042963305983073) + +[fips4927930] +centroid = (0.73193103150686079, -1.9444989831155266) +description = Garden City town, UT +station = ('klgu', 0.0062951545772186685) +zone = ('idz025', 0.0058191472483693314) + +[fips4928150] +centroid = (0.72843724886351091, -1.9576122526509983) +description = Garland city, UT +station = ('klgu', 0.004155556734948042) +zone = ('utz001', 0.0035100403786830722) + +[fips4928810] +centroid = (0.69834103558821603, -1.9521156174245224) +description = Genola town, UT +station = ('kpvu', 0.0039790678332230541) +zone = ('utz004', 0.0016800916565860829) + +[fips4929360] +centroid = (0.65163906167774621, -1.9653096957043612) +description = Glendale town, UT +station = ('kbce', 0.0089338494079725279) +zone = ('utz518', 0.0098106830522832287) + +[fips4929580] +centroid = (0.67653244845284599, -1.9545607538933965) +description = Glenwood town, UT +station = ('ku24', 0.012820789700684343) +zone = ('utz517', 0.0047352778648737269) + +[fips4930130] +centroid = (0.69728069570775197, -1.9530361738851942) +description = Goshen town, UT +station = ('kpvu', 0.0052442123127138147) +zone = ('utz004', 0.0026220491670444126) + +[fips4930900] +centroid = (0.70812213996907247, -1.9512055154860699) +description = Granite CDP, UT +station = ('kslc', 0.0043202543369566838) +zone = ('utz006', 0.0056785271576244543) + +[fips4931120] +centroid = (0.70855152587164816, -1.9629433259446298) +description = Grantsville city, UT +station = ('kslc', 0.007393050198556881) +zone = ('utz003', 0.0035047918434175174) + +[fips4931670] +centroid = (0.68036683209972248, -1.9214845305466615) +description = Green River city, UT +station = ('kcny', 0.0059882773965325431) +zone = ('utz027', 0.0075625124392434831) + +[fips4932660] +centroid = (0.68342049506559688, -1.9515102674267606) +description = Gunnison city, UT +station = ('ku24', 0.010853109278315128) +zone = ('utz014', 0.0013569974539613652) + +[fips4933002] +centroid = (0.64839938152019438, -1.9181815822037247) +description = Halchita CDP, UT +station = ('k4bl', 0.010144855230621804) +zone = ('utz022', 0.0041024909564487044) + +[fips4933027] +centroid = (0.65390160180027646, -1.9314768372203017) +description = Halls Crossing CDP, UT +station = ('kpga', 0.014328913897551426) +zone = ('utz021', 0.0031928238205782928) + +[fips4933100] +centroid = (0.66971777548184919, -1.9323143160085785) +description = Hanksville town, UT +station = ('k4hv', 0.00010296888490607149) +zone = ('utz013', 0.0029539631732829258) + +[fips4933540] +centroid = (0.72056701821420044, -1.954524887377268) +description = Harrisville city, UT +station = ('kogd', 0.0015446225343849485) +zone = ('utz002', 0.0027597510939314481) + +[fips4933760] +centroid = (0.65718742846325118, -1.9623729174384932) +description = Hatch town, UT +station = ('kbce', 0.0040269967446303562) +zone = ('utz518', 0.0038851752229896578) + +[fips4934200] +centroid = (0.70698339989860892, -1.9442650391825893) +description = Heber city, UT +station = ('k36u', 0.0005998981190900466) +zone = ('utz006', 0.0058062915510329336) + +[fips4934530] +centroid = (0.69272168626203257, -1.9348605419477281) +description = Helper city, UT +station = ('kpuc', 0.0019489313050042398) +zone = ('utz010', 0.0023938326808571803) + +[fips4934640] +centroid = (0.71589248542529149, -1.9459216009888272) +description = Henefer town, UT +station = ('kevw', 0.0074438755875196822) +zone = ('utz006', 0.0033827857816378483) + +[fips4934750] +centroid = (0.65562870981487997, -1.9547891476793124) +description = Henrieville town, UT +station = ('kbce', 0.0031310516169235679) +zone = ('utz020', 0.0043372766840818764) + +[fips4934970] +centroid = (0.70664782544332794, -1.95502558743308) +description = Herriman city, UT +station = ('kslc', 0.0051947487495445617) +zone = ('utz003', 0.002931867850013124) + +[fips4935120] +centroid = (0.70937797417905257, -1.9443082011749913) +description = Hideout town, UT +station = ('k36u', 0.0028593693997929271) +zone = ('utz006', 0.0035681240770353566) + +[fips4935190] +centroid = (0.70558533880788388, -1.9511991101277151) +description = Highland city, UT +station = ('kpvu', 0.0038188952109031874) +zone = ('utz008', 0.0044792494385085509) + +[fips4935300] +centroid = (0.64588457150758072, -1.9722515857245362) +description = Hildale city, UT +station = ('ksgu', 0.0084420637413094666) +zone = ('utz019', 0.0081207441053865511) + +[fips4935740] +centroid = (0.6864982959350262, -1.9665218268698714) +description = Hinckley town, UT +station = ('ku24', 0.001215880557476016) +zone = ('utz015', 0.0062485657957832615) + +[fips4935960] +centroid = (0.68242563993866756, -1.9594905759919945) +description = Holden town, UT +station = ('ku24', 0.0058701691596327547) +zone = ('utz014', 0.0058923156877017302) + +[fips4936070] +centroid = (0.70961211009820757, -1.9516886575296071) +description = Holladay city, UT +station = ('kslc', 0.0028960717041578228) +zone = ('utz006', 0.0049028374689600524) + +[fips4936290] +centroid = (0.72667647344763642, -1.9562554860503754) +description = Honeyville city, UT +station = ('klgu', 0.0040059483647598574) +zone = ('utz001', 0.0036583861909256976) + +[fips4936400] +centroid = (0.71845599012403571, -1.9607975483490578) +description = Hooper city, UT +station = ('khif', 0.0050478972930156603) +zone = ('utz002', 0.0033337353431308068) + +[fips4936620] +centroid = (0.72917667505441086, -1.9625882561616041) +description = Howell town, UT +station = ('klgu', 0.0077835945169352624) +zone = ('utz002', 0.0087254077612596292) + +[fips4936730] +centroid = (0.71341191877260202, -1.9440300480521007) +description = Hoytsville CDP, UT +station = ('k36u', 0.0068935389034699883) +zone = ('utz006', 0.0020599493335989563) + +[fips4936950] +centroid = (0.68645314426727722, -1.9366763126883331) +description = Huntington city, UT +station = ('kpuc', 0.0057572134076577354) +zone = ('utz012', 0.001385009884538867) + +[fips4937060] +centroid = (0.72010602439887117, -1.9508419983094647) +description = Huntsville town, UT +station = ('khif', 0.0035370909176628842) +zone = ('utz007', 0.0050233757408260724) + +[fips4937170] +centroid = (0.64839519272998958, -1.9784759185293386) +description = Hurricane city, UT +station = ('ksgu', 0.0035608790368204632) +zone = ('utz019', 0.0026576451995328153) + +[fips4937390] +centroid = (0.72952238987264595, -1.951535592154207) +description = Hyde Park city, UT +station = ('klgu', 0.00053004045609187224) +zone = ('utz001', 0.0011837984829802704) + +[fips4937500] +centroid = (0.72662845943991416, -1.9520235513064796) +description = Hyrum city, UT +station = ('klgu', 0.0026299950570109307) +zone = ('utz001', 0.0029769184317821685) + +[fips4937690] +centroid = (0.70531298017811006, -1.9424783979872002) +description = Independence town, UT +station = ('k36u', 0.0021535091693709071) +zone = ('utz008', 0.0054149675300619862) + +[fips4938710] +centroid = (0.6488197615238297, -1.9841049718861632) +description = Ivins city, UT +station = ('ksgu', 0.0019505546527384518) +zone = ('utz019', 0.001852068316688693) + +[fips4939040] +centroid = (0.70458119852933399, -1.9086147868017205) +description = Jensen CDP, UT +station = ('kvel', 0.0022192266123271212) +zone = ('utz024', 0.0036267379710212275) + +[fips4939370] +centroid = (0.67412864138065942, -1.9586062351133016) +description = Joseph town, UT +station = ('kmlf', 0.011470306632482963) +zone = ('utz517', 0.0086399751390510947) + +[fips4939590] +centroid = (0.66738482877729344, -1.9586898538377646) +description = Junction town, UT +station = ('kbce', 0.0094516923785934754) +zone = ('utz518', 0.0067934127868055682) + +[fips4939810] +centroid = (0.70946876620674126, -1.9420664130172671) +description = Kamas city, UT +station = ('k36u', 0.0035880647948804711) +zone = ('utz006', 0.0045477975961506724) + +[fips4939920] +centroid = (0.64620958672088713, -1.9638966073287767) +description = Kanab city, UT +station = ('kbce', 0.01286577119373278) +zone = ('azz004', 0.0079160899342053913) + +[fips4940030] +centroid = (0.65515829122158997, -1.9753829507487093) +description = Kanarraville town, UT +station = ('kcdc', 0.0030448061830008651) +zone = ('utz019', 0.0081922245291033997) + +[fips4940250] +centroid = (0.67722637391014651, -1.9624081556360908) +description = Kanosh town, UT +station = ('ku24', 0.0094775147071174126) +zone = ('utz014', 0.010693273838962122) + +[fips4940360] +centroid = (0.71609206382525703, -1.9538076792277459) +description = Kaysville city, UT +station = ('khif', 0.0015556534150299207) +zone = ('utz002', 0.0059833385918224022) + +[fips4940470] +centroid = (0.70951058429561908, -1.9549325613839488) +description = Kearns CDP, UT +station = ('kslc', 0.0023614722840344044) +zone = ('utz003', 0.0039575671716933101) + +[fips4941020] +centroid = (0.69255231951141905, -1.9340785646296645) +description = Kenilworth CDP, UT +station = ('kpuc', 0.0014094879851722878) +zone = ('utz010', 0.0022788240429158411) + +[fips4941350] +centroid = (0.66683035512722733, -1.9579027277984078) +description = Kingston town, UT +station = ('kbce', 0.0088505830911428263) +zone = ('utz518', 0.0065453674520225893) + +[fips4941680] +centroid = (0.6721799638175151, -1.9527145446106366) +description = Koosharem town, UT +station = ('kbce', 0.014659299705883564) +zone = ('utz517', 0.0081823498474089696) + +[fips4942230] +centroid = (0.70044944568450263, -1.9502295971815249) +description = Lake Shore CDP, UT +station = ('kpvu', 0.0014963018071099783) +zone = ('utz008', 0.0022422400857079259) + +[fips4942560] +centroid = (0.73005948004336207, -1.943129667597582) +description = Laketown town, UT +station = ('klgu', 0.0067720844674153619) +zone = ('utz007', 0.0068873639956736907) + +[fips4943110] +centroid = (0.66848107008047108, -1.9070454041916196) +description = La Sal CDP, UT +station = ('kcny', 0.010475688267757056) +zone = ('utz028', 0.0047216426175592553) + +[fips4943440] +centroid = (0.64980714664156047, -1.9766184693261961) +description = La Verkin city, UT +station = ('ksgu', 0.0054869722667674507) +zone = ('utz019', 0.0042505293554785592) + +[fips4943660] +centroid = (0.71693627958444672, -1.9540833190765134) +description = Layton city, UT +station = ('khif', 0.0006893721337672856) +zone = ('utz002', 0.0051689723837516997) + +[fips4943880] +centroid = (0.68994975434401506, -1.9597487450949496) +description = Leamington town, UT +station = ('ku24', 0.005297652732777553) +zone = ('utz014', 0.0078060933042027689) + +[fips4944100] +centroid = (0.65001468374291516, -1.9784200854465672) +description = Leeds town, UT +station = ('ksgu', 0.0044018152598667686) +zone = ('utz019', 0.0029674869673419497) + +[fips4944320] +centroid = (0.70540398164530915, -1.9526560586274024) +description = Lehi city, UT +station = ('kpvu', 0.004104787174630576) +zone = ('utz008', 0.0050490387575915022) + +[fips4944650] +centroid = (0.6903899089280755, -1.9523376407586688) +description = Levan town, UT +station = ('kpvu', 0.01168367675291602) +zone = ('utz014', 0.0058092748034428085) + +[fips4944760] +centroid = (0.73248766936519927, -1.9527758580272592) +description = Lewiston city, UT +station = ('klgu', 0.0032642826519734647) +zone = ('idz024', 0.0028630810248955895) + +[fips4944870] +centroid = (0.72156323469794625, -1.952410298815429) +description = Liberty CDP, UT +station = ('kogd', 0.0031863922949935228) +zone = ('utz002', 0.0043145617592990253) + +[fips4945090] +centroid = (0.70408056828669197, -1.949839044854806) +description = Lindon city, UT +station = ('kpvu', 0.0021673525467332025) +zone = ('utz008', 0.0026526938524518069) + +[fips4945530] +centroid = (0.67027022454998297, -1.948566054058279) +description = Loa town, UT +station = ('kbce', 0.014109178626863946) +zone = ('utz517', 0.010089229024231049) + +[fips4945860] +centroid = (0.72850489782531824, -1.9520070230384634) +description = Logan city, UT +station = ('klgu', 0.00075944849251393808) +zone = ('utz001', 0.0012896432932771383) + +[fips4946410] +centroid = (0.67014466556359453, -1.9476007997154634) +description = Lyman town, UT +station = ('kbce', 0.014392459586769952) +zone = ('utz517', 0.01036482496013417) + +[fips4946740] +centroid = (0.68956089498667072, -1.9616863398173436) +description = Lynndyl town, UT +station = ('ku24', 0.0039684061441723571) +zone = ('utz014', 0.0087260905822338346) + +[fips4947180] +centroid = (0.70636696706009694, -1.9125076564318311) +description = Maeser CDP, UT +station = ('kvel', 0.0012417651254639395) +zone = ('utz024', 0.0045117865337249577) + +[fips4947290] +centroid = (0.71051760436743472, -1.9562116433795653) +description = Magna CDP, UT +station = ('kslc', 0.0020015516188035772) +zone = ('utz003', 0.0041282661323473963) + +[fips4947620] +centroid = (0.71544229519803204, -1.9149892004689018) +description = Manila town, UT +station = ('kvel', 0.010175758999025491) +zone = ('utz023', 0.0048454786250165666) + +[fips4947730] +centroid = (0.68533972892425987, -1.9484419786017546) +description = Manti city, UT +station = ('ku24', 0.012826595552244486) +zone = ('utz014', 0.0031711659391283464) + +[fips4947840] +centroid = (0.72427643628663396, -1.9536471962030251) +description = Mantua town, UT +station = ('klgu', 0.0051043166512806503) +zone = ('utz002', 0.0046117383306361484) + +[fips4947950] +centroid = (0.70025150789403412, -1.9472707754072038) +description = Mapleton city, UT +station = ('kpvu', 0.00256259569362442) +zone = ('utz008', 0.0016852948645547075) + +[fips4948170] +centroid = (0.71002337948314753, -1.9422519938766316) +description = Marion CDP, UT +station = ('k36u', 0.0039823698706078318) +zone = ('utz006', 0.0040812904445354913) + +[fips4948300] +centroid = (0.72014119278329891, -1.9554014789940821) +description = Marriott-Slaterville city, UT +station = ('kogd', 0.0010961140700633074) +zone = ('utz002', 0.0022667378146382896) + +[fips4948610] +centroid = (0.67086105340836799, -1.9592804383500544) +description = Marysvale town, UT +station = ('kbce', 0.012957969971122503) +zone = ('utz518', 0.01001227516879394) + +[fips4948720] +centroid = (0.68277934836487675, -1.9496862587320865) +description = Mayfield town, UT +station = ('ku24', 0.012394277961992209) +zone = ('utz517', 0.0026906288124564507) + +[fips4948830] +centroid = (0.67869412599790357, -1.961875777854355) +description = Meadow town, UT +station = ('ku24', 0.0081585200263490556) +zone = ('utz014', 0.0094125518447247102) + +[fips4949160] +centroid = (0.72799822874346432, -1.9543892927476805) +description = Mendon city, UT +station = ('klgu', 0.0020912218668708038) +zone = ('utz001', 0.001765783420503008) + +[fips4949380] +centroid = (0.64885850783322396, -1.9178307186641963) +description = Mexican Hat CDP, UT +station = ('k4bl', 0.0096096421765947491) +zone = ('utz022', 0.0036327931094781588) + +[fips4949710] +centroid = (0.70886085057497916, -1.9528957446935789) +description = Midvale city, UT +station = ('kslc', 0.0031011625452948932) +zone = ('utz003', 0.0049352377100285571) + +[fips4949820] +centroid = (0.70717205253745696, -1.9456089950665025) +description = Midway city, UT +station = ('k36u', 0.00087916566787343213) +zone = ('utz006', 0.0054075978307512812) + +[fips4950040] +centroid = (0.67010858960795572, -1.9725762867785772) +description = Milford city, UT +station = ('kmlf', 0.00039188778959063777) +zone = ('utz016', 0.0078908980286901964) + +[fips4950150] +centroid = (0.71015235931486986, -1.9517664992142461) +description = Millcreek CDP, UT +station = ('kslc', 0.0024677653448206822) +zone = ('utz006', 0.0046506761693714703) + +[fips4950370] +centroid = (0.72754083030639405, -1.9516522150548252) +description = Millville city, UT +station = ('klgu', 0.0017557783148717072) +zone = ('utz001', 0.0022368807665347945) + +[fips4950590] +centroid = (0.66695916042602454, -1.970912429496066) +description = Minersville town, UT +station = ('kmlf', 0.0037544052663718549) +zone = ('utz016', 0.0075793202364058954) + +[fips4950700] +centroid = (0.67325447577150543, -1.9120348641907585) +description = Moab city, UT +station = ('kcny', 0.0043066110094268813) +zone = ('utz027', 0.0049501872053176604) + +[fips4951140] +centroid = (0.69482227728327028, -1.9521584827109515) +description = Mona city, UT +station = ('kpvu', 0.0073129715463281855) +zone = ('utz004', 0.0051134289336577342) + +[fips4951360] +centroid = (0.67409542776499376, -1.9568603997158243) +description = Monroe city, UT +station = ('kmlf', 0.012764021257027183) +zone = ('utz517', 0.0077602562663659355) + +[fips4951470] +centroid = (0.65016132630666768, -1.9077096241450511) +description = Montezuma Creek CDP, UT +station = ('k4bl', 0.0067616570356834544) +zone = ('utz022', 0.0048481976518834607) + +[fips4951580] +centroid = (0.66090922092008142, -1.9084430114967392) +description = Monticello city, UT +station = ('k4bl', 0.0046821476670487411) +zone = ('utz028', 0.0031792041529540571) + +[fips4951910] +centroid = (0.71632349448407151, -1.9491947391081399) +description = Morgan city, UT +station = ('khif', 0.0039806203060677725) +zone = ('utz006', 0.0042999592466325884) + +[fips4952130] +centroid = (0.68988217519537787, -1.947487091514696) +description = Moroni city, UT +station = ('kpvu', 0.01216397924900991) +zone = ('utz014', 0.006529165132469315) + +[fips4952460] +centroid = (0.71812673376064695, -1.9510409832974844) +description = Mountain Green CDP, UT +station = ('khif', 0.0024229108004900214) +zone = ('utz002', 0.0061088883975575449) + +[fips4953010] +centroid = (0.69011899892158102, -1.9452698601395475) +description = Mount Pleasant city, UT +station = ('kpvu', 0.012301060176524643) +zone = ('utz014', 0.0078226355471456982) + +[fips4953230] +centroid = (0.70948655111181913, -1.9527881451451936) +description = Murray city, UT +station = ('kslc', 0.0025479619251995841) +zone = ('utz006', 0.0056603476984683383) + +[fips4953340] +centroid = (0.70150439249757823, -1.9209500060099454) +description = Myton city, UT +station = ('kvel', 0.0085770064524567542) +zone = ('utz011', 0.0035380383930140734) + +[fips4953560] +centroid = (0.70566710748333983, -1.9109834778493571) +description = Naples city, UT +station = ('kvel', 0.00011900378379641117) +zone = ('utz024', 0.0038302287873218403) + +[fips4953890] +centroid = (0.64659261667852974, -1.9336491961803817) +description = Navajo Mountain CDP, UT +station = ('kpga', 0.0094131822696505423) +zone = ('utz021', 0.0051323130736365304) + +[fips4954110] +centroid = (0.70572049710515827, -1.9204000876692273) +description = Neola CDP, UT +station = ('kvel', 0.0070517793733741322) +zone = ('utz011', 0.005057844512287483) + +[fips4954220] +centroid = (0.69302523392553927, -1.9518398379494146) +description = Nephi city, UT +station = ('kpvu', 0.0090213527807134763) +zone = ('utz004', 0.0069268218251029336) + +[fips4954330] +centroid = (0.6573408079979165, -1.9820720996399028) +description = Newcastle CDP, UT +station = ('kcdc', 0.0064469223911192029) +zone = ('utz016', 0.0077839673861175834) + +[fips4954440] +centroid = (0.65415662931057805, -1.977623412456202) +description = New Harmony town, UT +station = ('kcdc', 0.0048042385890319818) +zone = ('utz019', 0.0063491536480879372) + +[fips4954550] +centroid = (0.73061576883585022, -1.9546091518735542) +description = Newton town, UT +station = ('klgu', 0.0022810719844950653) +zone = ('utz001', 0.0015791560641452334) + +[fips4954660] +centroid = (0.72732739399216773, -1.9520639382253711) +description = Nibley city, UT +station = ('klgu', 0.0019304331086511699) +zone = ('utz001', 0.0023024963550950512) + +[fips4954990] +centroid = (0.72912049290578917, -1.9513904156670261) +description = North Logan city, UT +station = ('klgu', 0.00058314620616183553) +zone = ('utz001', 0.0013436337905176391) + +[fips4955100] +centroid = (0.72101968680899764, -1.9540349036430631) +description = North Ogden city, UT +station = ('kogd', 0.0020911131297672056) +zone = ('utz002', 0.0030736057265684379) + +[fips4955210] +centroid = (0.71288037874890708, -1.9533680831490461) +description = North Salt Lake city, UT +station = ('kslc', 0.0012425381307144166) +zone = ('utz006', 0.005210725451478884) + +[fips4955430] +centroid = (0.68725320319639138, -1.9606989197930276) +description = Oak City town, UT +station = ('ku24', 0.0033730030341590704) +zone = ('utz014', 0.0069430767773627491) + +[fips4955650] +centroid = (0.71076652322535427, -1.9420470747691549) +description = Oakley city, UT +station = ('k36u', 0.0047125428284227073) +zone = ('utz006', 0.0038062051368989596) + +[fips4955760] +centroid = (0.68578011040112308, -1.96574602801736) +description = Oasis CDP, UT +station = ('ku24', 0.00094456516946117791) +zone = ('utz015', 0.0067939121278835926) + +[fips4955980] +centroid = (0.71956306992186825, -1.9541767465513726) +description = Ogden city, UT +station = ('kogd', 0.00082383001490455546) +zone = ('utz002', 0.0033492102135564824) + +[fips4956440] +centroid = (0.64631036203189729, -1.9242465664478199) +description = Oljato-Monument Valley CDP, UT +station = ('k4bl', 0.014936527414271136) +zone = ('utz021', 0.0097011745055542165) + +[fips4956750] +centroid = (0.70456435610205215, -1.9592648874664191) +description = Ophir town, UT +station = ('kpvu', 0.0076737857162283594) +zone = ('utz003', 0.0023694664306909887) + +[fips4956860] +centroid = (0.6847064187518811, -1.9383507117595262) +description = Orangeville city, UT +station = ('kpuc', 0.007921418865785847) +zone = ('utz012', 0.003373097852484336) + +[fips4957080] +centroid = (0.65018631942155625, -1.9662316484284348) +description = Orderville town, UT +station = ('kcdc', 0.0099283351713035147) +zone = ('utz518', 0.011415320347186694) + +[fips4957300] +centroid = (0.7033451563530716, -1.9495186547640175) +description = Orem city, UT +station = ('kpvu', 0.001450704203006327) +zone = ('utz008', 0.0019131281315098762) + +[fips4957630] +centroid = (0.70068010839844641, -1.9494226267485728) +description = Palmyra CDP, UT +station = ('kpvu', 0.0012706334168854831) +zone = ('utz008', 0.0016305220019068208) + +[fips4957740] +centroid = (0.66016619935092236, -1.9623896376927272) +description = Panguitch city, UT +station = ('kbce', 0.0045146594035480091) +zone = ('utz518', 0.00099833098153225279) + +[fips4957850] +centroid = (0.72549596764817248, -1.9518560346048732) +description = Paradise town, UT +station = ('klgu', 0.0037672091570308047) +zone = ('utz001', 0.0041046030907386944) + +[fips4957960] +centroid = (0.66123060584854365, -1.968222353519967) +description = Paragonah town, UT +station = ('kcdc', 0.0055783356601087023) +zone = ('utz518', 0.0050802243763806614) + +[fips4958070] +centroid = (0.7093932458100074, -1.9461370444316934) +description = Park City city, UT +station = ('k36u', 0.0030253653193915678) +zone = ('utz006', 0.0031561379751315274) + +[fips4958510] +centroid = (0.66030596531742214, -1.9692545586928891) +description = Parowan city, UT +station = ('kcdc', 0.0043871955308650481) +zone = ('utz518', 0.0059398490668279638) + +[fips4958730] +centroid = (0.69875663338970095, -1.9500527604217128) +description = Payson city, UT +station = ('kpvu', 0.0031614709577479634) +zone = ('utz004', 0.0024811598111786396) + +[fips4959280] +centroid = (0.71079605419629799, -1.9432149618381269) +description = Peoa CDP, UT +station = ('k36u', 0.0044200235384207901) +zone = ('utz006', 0.0030341783241309684) + +[fips4959390] +centroid = (0.72369838323837354, -1.9554726709742709) +description = Perry city, UT +station = ('kogd', 0.0046331228951040394) +zone = ('utz002', 0.0032601337624661815) + +[fips4959555] +centroid = (0.72915484098546846, -1.9547744520070107) +description = Peter CDP, UT +station = ('klgu', 0.0019591423589344755) +zone = ('utz001', 0.0012762314756210964) + +[fips4960270] +centroid = (0.65258337206953776, -1.9810517976124793) +description = Pine Valley CDP, UT +station = ('ksgu', 0.0055143464231529578) +zone = ('utz019', 0.0038899855025922069) + +[fips4960710] +centroid = (0.72095884463127313, -1.9564154454763207) +description = Plain City city, UT +station = ('kogd', 0.0021413416036861806) +zone = ('utz002', 0.0012936794536284137) + +[fips4960930] +centroid = (0.70461425506536668, -1.9502504015062088) +description = Pleasant Grove city, UT +station = ('kpvu', 0.0027205485865287077) +zone = ('utz008', 0.0032711026394860983) + +[fips4961150] +centroid = (0.72125387508803029, -1.9547787629702631) +description = Pleasant View city, UT +station = ('kogd', 0.0021884326828122184) +zone = ('utz002', 0.0025169086591044737) + +[fips4961260] +centroid = (0.730861441381361, -1.957254180901659) +description = Plymouth town, UT +station = ('klgu', 0.0041274459457789478) +zone = ('utz001', 0.0033697197263356901) + +[fips4961590] +centroid = (0.73263888469159211, -1.9589998417662113) +description = Portage town, UT +station = ('klgu', 0.0061190597201300802) +zone = ('idz024', 0.0046915753917916511) + +[fips4962030] +centroid = (0.69122079037177997, -1.9338294537855274) +description = Price city, UT +station = ('kpuc', 0.00071092911530687593) +zone = ('utz010', 0.0035314927484770583) + +[fips4962360] +centroid = (0.72785097531447362, -1.9514933900928939) +description = Providence city, UT +station = ('klgu', 0.0014888777683599759) +zone = ('utz001', 0.0020407086061692845) + +[fips4962470] +centroid = (0.70241351705164956, -1.9485694749036129) +description = Provo city, UT +station = ('kpvu', 0.0010803177099772405) +zone = ('utz008', 0.00073363187841673822) + +[fips4962910] +centroid = (0.70208916506345886, -1.9169092546323132) +description = Randlett CDP, UT +station = ('kvel', 0.005689769649172215) +zone = ('utz024', 0.0039073688896658172) + +[fips4963020] +centroid = (0.72717813343453719, -1.9405435783383169) +description = Randolph town, UT +station = ('kevw', 0.007216726183221266) +zone = ('utz007', 0.0054445524951725437) + +[fips4963240] +centroid = (0.68077021259644344, -1.9524516980252866) +description = Redmond town, UT +station = ('ku24', 0.011254946054623908) +zone = ('utz517', 0.0014421591536101751) + +[fips4963570] +centroid = (0.67654909889391002, -1.9563882706998672) +description = Richfield city, UT +station = ('ku24', 0.011964651494101265) +zone = ('utz517', 0.0057265300941874977) + +[fips4963680] +centroid = (0.73170560478067304, -1.9514038023423892) +description = Richmond city, UT +station = ('klgu', 0.0025112748546583285) +zone = ('utz001', 0.002558919733060125) + +[fips4964010] +centroid = (0.71861457073987201, -1.9548106152291118) +description = Riverdale city, UT +station = ('kogd', 0.0004977151559282636) +zone = ('utz002', 0.0035309148874434469) + +[fips4964120] +centroid = (0.72818764932718327, -1.9516228062569292) +description = River Heights city, UT +station = ('klgu', 0.0011393371796256763) +zone = ('utz001', 0.0017170818978857483) + +[fips4964230] +centroid = (0.72973207372898052, -1.9572168308556666) +description = Riverside CDP, UT +station = ('klgu', 0.0038066001911485187) +zone = ('utz001', 0.0030613241461981996) + +[fips4964340] +centroid = (0.70716599624495247, -1.9541343175972568) +description = Riverton city, UT +station = ('kslc', 0.0046376225131970388) +zone = ('utz003', 0.0036055204001676729) + +[fips4964560] +centroid = (0.64834745797494753, -1.9731700303368132) +description = Rockville town, UT +station = ('ksgu', 0.0076769427438711504) +zone = ('utz019', 0.0068752556016261858) + +[fips4964590] +centroid = (0.69668751065487655, -1.9517604254684491) +description = Rocky Ridge town, UT +station = ('kpvu', 0.0054318687643759448) +zone = ('utz004', 0.0033362974185749761) + +[fips4964670] +centroid = (0.70301921611526164, -1.9198486683453519) +description = Roosevelt city, UT +station = ('kvel', 0.007158459406382019) +zone = ('utz011', 0.0042984316926386991) + +[fips4965110] +centroid = (0.71857999576738996, -1.9556065202746065) +description = Roy city, UT +station = ('kogd', 0.00064425027469801018) +zone = ('utz002', 0.0031649722209326509) + +[fips4965240] +centroid = (0.70431102156112524, -1.9623824294829166) +description = Rush Valley town, UT +station = ('kslc', 0.0097412702523396576) +zone = ('utz003', 0.0037343551705136145) + +[fips4965330] +centroid = (0.64709935557355391, -1.9823536910614195) +description = St. George city, UT +station = ('ksgu', 0.00029971638438948324) +zone = ('utz019', 0.0016998266295184521) + +[fips4965770] +centroid = (0.699070967187985, -1.9490503829257073) +description = Salem city, UT +station = ('kpvu', 0.0029031128790068224) +zone = ('utz008', 0.002910762286491707) + +[fips4965880] +centroid = (0.67957008929618712, -1.9524404057450262) +description = Salina city, UT +station = ('ku24', 0.01192137374492217) +zone = ('utz517', 0.001472422330405155) + +[fips4967000] +centroid = (0.71171943809035809, -1.9535717107128763) +description = Salt Lake City city, UT +station = ('kslc', 0.00047340750347768702) +zone = ('utz006', 0.0054183235373797467) + +[fips4967400] +centroid = (0.70933954202892358, -1.9414320905539222) +description = Samak CDP, UT +station = ('k36u', 0.0037907448708684194) +zone = ('utz006', 0.0049951154509727761) + +[fips4967440] +centroid = (0.70810735703030814, -1.9521906665823583) +description = Sandy city, UT +station = ('kslc', 0.0039941502797452653) +zone = ('utz006', 0.0061861238371728137) + +[fips4967660] +centroid = (0.64806504624868233, -1.9836822531413301) +description = Santa Clara city, UT +station = ('ksgu', 0.0011509469444527425) +zone = ('utz019', 0.0016563135567515134) + +[fips4967770] +centroid = (0.69760567601447332, -1.9511666644569206) +description = Santaquin city, UT +station = ('kpvu', 0.0044283972673260907) +zone = ('utz004', 0.0026630240439440623) + +[fips4967825] +centroid = (0.70415811326535793, -1.9532303243111864) +description = Saratoga Springs city, UT +station = ('kpvu', 0.0034341826326746718) +zone = ('utz004', 0.004262854061003428) + +[fips4967880] +centroid = (0.68500637103712891, -1.9565929629145409) +description = Scipio town, UT +station = ('ku24', 0.0066371141342149633) +zone = ('utz014', 0.0032617272798108948) + +[fips4967990] +centroid = (0.693263052489416, -1.9401587681448371) +description = Scofield town, UT +station = ('kpuc', 0.0058387531986805559) +zone = ('utz010', 0.0055948074939770592) + +[fips4968650] +centroid = (0.67833615896831967, -1.9541395710383052) +description = Sigurd town, UT +station = ('ku24', 0.011703214562868099) +zone = ('utz517', 0.0032456388049673227) + +[fips4969280] +centroid = (0.71107235727018114, -1.9458282782337231) +description = Silver Summit CDP, UT +station = ('k36u', 0.0045957879042616478) +zone = ('utz006', 0.0015500394321631777) + +[fips4969640] +centroid = (0.73015126690872456, -1.9517548055082576) +description = Smithfield city, UT +station = ('klgu', 0.00094195927452723994) +zone = ('utz001', 0.0012152811271819147) + +[fips4969970] +centroid = (0.73256292796254519, -1.9672720566488411) +description = Snowville town, UT +station = ('klgu', 0.011734154776075922) +zone = ('idz022', 0.0077178110944819082) + +[fips4970190] +centroid = (0.71042091312687439, -1.9468034984065674) +description = Snyderville CDP, UT +station = ('k36u', 0.0041651822681201727) +zone = ('utz006', 0.0021295174772662682) + +[fips4970850] +centroid = (0.70782356649393396, -1.954394982521042) +description = South Jordan city, UT +station = ('kslc', 0.0039830057065774645) +zone = ('utz003', 0.0035171741673224819) + +[fips4970960] +centroid = (0.71857812826509027, -1.9540150941560528) +description = South Ogden city, UT +station = ('khif', 0.00096563289929893969) +zone = ('utz002', 0.0039987941823541951) + +[fips4971070] +centroid = (0.71044766902430734, -1.9529993997978548) +description = South Salt Lake city, UT +station = ('kslc', 0.0016271690222274995) +zone = ('utz006', 0.0053507189273982502) + +[fips4971180] +centroid = (0.71793582964706382, -1.9537492805109742) +description = South Weber city, UT +station = ('khif', 0.00045573403865062774) +zone = ('utz002', 0.004576493419673618) + +[fips4971255] +centroid = (0.72183353383920268, -1.9554837887216063) +description = South Willard CDP, UT +station = ('kogd', 0.0027762402163093525) +zone = ('utz002', 0.0021089669832221191) + +[fips4971290] +centroid = (0.70000445653841425, -1.9484444569692925) +description = Spanish Fork city, UT +station = ('kpvu', 0.0021804689447128653) +zone = ('utz008', 0.0018907814515399465) + +[fips4971455] +centroid = (0.67150270625457131, -1.9097563193989873) +description = Spanish Valley CDP, UT +station = ('kcny', 0.0067950731435945811) +zone = ('utz027', 0.0069609076334734088) + +[fips4971730] +centroid = (0.68905513347602787, -1.9458961366350407) +description = Spring City city, UT +station = ('kpuc', 0.010262183985010722) +zone = ('utz014', 0.0067416471947872852) + +[fips4971840] +centroid = (0.64893961328356409, -1.9723082391120559) +description = Springdale town, UT +station = ('ksgu', 0.0084553887816759665) +zone = ('utz019', 0.0075520385188700906) + +[fips4972060] +centroid = (0.69212937387378315, -1.9346302108463425) +description = Spring Glen CDP, UT +station = ('kpuc', 0.0014640699051774806) +zone = ('utz010', 0.0028280737530588587) + +[fips4972170] +centroid = (0.69822111401531139, -1.9503629403363771) +description = Spring Lake CDP, UT +station = ('kpvu', 0.0037150982534111614) +zone = ('utz004', 0.002584983726420448) + +[fips4972280] +centroid = (0.70097979888430628, -1.9481608060592583) +description = Springville city, UT +station = ('kpvu', 0.0015763618725159064) +zone = ('utz008', 0.00089187230768818433) + +[fips4972720] +centroid = (0.70927033972408204, -1.9600741093741063) +description = Stansbury Park CDP, UT +station = ('kslc', 0.0051313311602146881) +zone = ('utz003', 0.0025288089498441747) + +[fips4972940] +centroid = (0.68405321182602985, -1.9493763580701025) +description = Sterling town, UT +station = ('ku24', 0.012302634941476516) +zone = ('utz014', 0.0024150362450294375) + +[fips4973050] +centroid = (0.70598271537197788, -1.9612165146359992) +description = Stockton town, UT +station = ('kslc', 0.0078964201671118551) +zone = ('utz003', 0.0020167008778728939) + +[fips4974040] +centroid = (0.65982760547603558, -1.9710550403492462) +description = Summit CDP, UT +station = ('kcdc', 0.0029465766438078228) +zone = ('utz016', 0.0088783844123306952) + +[fips4974095] +centroid = (0.71110284817221348, -1.9474642102482025) +description = Summit Park CDP, UT +station = ('k36u', 0.0049877420771538413) +zone = ('utz006', 0.0016112733696816296) + +[fips4974370] +centroid = (0.69033299374116808, -1.9269003919353549) +description = Sunnyside city, UT +station = ('kpuc', 0.0047938383192976238) +zone = ('utz010', 0.0064916535955499306) + +[fips4974480] +centroid = (0.71799459488297857, -1.9552642263017053) +description = Sunset city, UT +station = ('khif', 0.00089321633570551065) +zone = ('utz002', 0.0037910694538961349) + +[fips4974590] +centroid = (0.68747787943100058, -1.9659378222488615) +description = Sutherland CDP, UT +station = ('ku24', 0.0012438780524001499) +zone = ('utz015', 0.0068872686378317304) + +[fips4974810] +centroid = (0.71711437298132019, -1.9559362653301855) +description = Syracuse city, UT +station = ('khif', 0.0014122334937251933) +zone = ('utz002', 0.004327181348217894) + +[fips4974920] +centroid = (0.70431308104964252, -1.9322465099671386) +description = Tabiona town, UT +station = ('k36u', 0.009814846683428493) +zone = ('utz011', 0.0055359550177095321) + +[fips4975360] +centroid = (0.70959772858517123, -1.9538846482477588) +description = Taylorsville city, UT +station = ('kslc', 0.002217588443133198) +zone = ('utz003', 0.004637820955463212) + +[fips4975470] +centroid = (0.66820080510918578, -1.9455596546085487) +description = Teasdale CDP, UT +station = ('k4hv', 0.010444424031836558) +zone = ('utz013', 0.012121421461472754) + +[fips4975800] +centroid = (0.7274705808040014, -1.9603512152994456) +description = Thatcher CDP, UT +station = ('klgu', 0.0063750298653259324) +zone = ('utz002', 0.0065697360853464067) + +[fips4976180] +centroid = (0.6800426720977496, -1.9146910982326613) +description = Thompson Springs CDP, UT +station = ('kcny', 0.003493774676031171) +zone = ('utz027', 0.0026887255607748635) + +[fips4976280] +centroid = (0.70642257325006552, -1.9417834951455188) +description = Timber Lakes CDP, UT +station = ('k36u', 0.0022984270959182452) +zone = ('utz008', 0.0065499111514283701) + +[fips4976680] +centroid = (0.70767896596540614, -1.9601784800633757) +description = Tooele city, UT +station = ('kslc', 0.0061372472212283171) +zone = ('utz003', 0.001257618949058605) + +[fips4976900] +centroid = (0.65022763136495099, -1.9773386096288612) +description = Toquerville town, UT +station = ('ksgu', 0.0052172396180216948) +zone = ('utz019', 0.0038404989378816316) + +[fips4977010] +centroid = (0.66849667332398388, -1.9446544046854168) +description = Torrey town, UT +station = ('k4hv', 0.0097014271396101345) +zone = ('utz013', 0.011352084157394811) + +[fips4977120] +centroid = (0.72812912843736377, -1.9580632108231286) +description = Tremonton city, UT +station = ('klgu', 0.0045527967821494281) +zone = ('utz001', 0.0039285459694974548) + +[fips4977230] +centroid = (0.73153517337921581, -1.9536484179335014) +description = Trenton town, UT +station = ('klgu', 0.0025368990158321602) +zone = ('utz001', 0.0020822601443136095) + +[fips4977560] +centroid = (0.65682611040150329, -1.9563003759187367) +description = Tropic town, UT +station = ('kbce', 0.0014464209551242381) +zone = ('utz020', 0.0060118051887573598) + +[fips4977697] +centroid = (0.64943715429343019, -1.9130396153345466) +description = Tselakai Dezza CDP, UT +station = ('k4bl', 0.0073670474010962576) +zone = ('utz022', 0.0012471164540976099) + +[fips4977890] +centroid = (0.71808016837620381, -1.9535985015168942) +description = Uintah town, UT +station = ('khif', 0.00063805993347660088) +zone = ('utz002', 0.0045612426319928895) + +[fips4980090] +centroid = (0.70601544029545271, -1.911798057917848) +description = Vernal city, UT +station = ('kvel', 0.00059753877931988889) +zone = ('utz024', 0.0041277909816911061) + +[fips4980200] +centroid = (0.69975990100362484, -1.9625580445122521) +description = Vernon town, UT +station = ('kpvu', 0.0099682547663798929) +zone = ('utz004', 0.0073669564462819264) + +[fips4980310] +centroid = (0.65166251890289295, -1.9843175878956409) +description = Veyo CDP, UT +station = ('ksgu', 0.0046208531081686592) +zone = ('utz019', 0.0035535902413172471) + +[fips4980420] +centroid = (0.70360227825847532, -1.9505671962187383) +description = Vineyard town, UT +station = ('kpvu', 0.0017817758117764633) +zone = ('utz008', 0.0026559205511983118) + +[fips4980530] +centroid = (0.64939894903610407, -1.9758650281414025) +description = Virgin town, UT +station = ('ksgu', 0.0058610023961921118) +zone = ('utz019', 0.0047607344506403566) + +[fips4980860] +centroid = (0.68915610077325573, -1.9484194987609889) +description = Wales town, UT +station = ('kpvu', 0.01280260956334415) +zone = ('utz014', 0.0055217752233867271) + +[fips4980970] +centroid = (0.70489478183603971, -1.9446577906241655) +description = Wallsburg town, UT +station = ('k36u', 0.0016520359684839667) +zone = ('utz008', 0.003939055822990852) + +[fips4981190] +centroid = (0.71238674727656559, -1.9445598776531288) +description = Wanship CDP, UT +station = ('k36u', 0.0058463918797548803) +zone = ('utz006', 0.0014728456997229222) + +[fips4981960] +centroid = (0.64796865171409468, -1.9808472275708531) +description = Washington city, UT +station = ('ksgu', 0.0016494076423192088) +zone = ('utz019', 0.0010709236397937257) + +[fips4982070] +centroid = (0.71853217374588529, -1.954389380014143) +description = Washington Terrace city, UT +station = ('kogd', 0.00074150491419734503) +zone = ('utz002', 0.0038165234734901222) + +[fips4982510] +centroid = (0.68998961766413058, -1.9326779902648166) +description = Wellington city, UT +station = ('kpuc', 0.0014669543901267752) +zone = ('utz012', 0.0036276679017488256) + +[fips4982620] +centroid = (0.72649838005076295, -1.9537032736318916) +description = Wellsville city, UT +station = ('klgu', 0.0029919914492438702) +zone = ('utz001', 0.0030228590441261686) + +[fips4982730] +centroid = (0.71076334672611552, -1.9901089394196088) +description = Wendover city, UT +station = ('kenv', 0.00020160563064019598) +zone = ('nvz033', 0.0030553235995809834) + +[fips4982840] +centroid = (0.71386999788808048, -1.953164560304971) +description = West Bountiful city, UT +station = ('kslc', 0.0022065576977358852) +zone = ('utz006', 0.0052163222884609199) + +[fips4982930] +centroid = (0.71921840230118439, -1.9557047299516161) +description = West Haven city, UT +station = ('kogd', 0.00050589505425703628) +zone = ('utz002', 0.0026288038246717613) + +[fips4982950] +centroid = (0.70864319056396297, -1.9547856570208084) +description = West Jordan city, UT +station = ('kslc', 0.0031926890090313944) +zone = ('utz003', 0.003549175297061283) + +[fips4983252] +centroid = (0.69918786934128363, -1.9509877682085912) +description = West Mountain CDP, UT +station = ('kpvu', 0.0028669992858080385) +zone = ('utz004', 0.0016479594457497401) + +[fips4983390] +centroid = (0.71770965242929785, -1.956483234064468) +description = West Point city, UT +station = ('khif', 0.0017321218863840997) +zone = ('utz002', 0.0036232439434116864) + +[fips4983470] +centroid = (0.71014817052466517, -1.9549739955003911) +description = West Valley City city, UT +station = ('kslc', 0.0017594194408275831) +zone = ('utz003', 0.0043804012524448635) + +[fips4983730] +centroid = (0.69124112345756572, -1.9345659478232842) +description = West Wood CDP, UT +station = ('kpuc', 0.0012592664624337278) +zone = ('utz010', 0.0036417268757765976) + +[fips4984050] +centroid = (0.70804956917877471, -1.9523713954264021) +description = White City CDP, UT +station = ('kslc', 0.0039984511174162643) +zone = ('utz006', 0.0063234812894525736) + +[fips4984095] +centroid = (0.65379379281238093, -1.9104368058210472) +description = White Mesa CDP, UT +station = ('k4bl', 0.0027424624592964669) +zone = ('utz022', 0.0042064716197575897) + +[fips4984160] +centroid = (0.70637222050114545, -1.9188362726594403) +description = Whiterocks CDP, UT +station = ('kvel', 0.005898833879271528) +zone = ('utz011', 0.0063914393916831092) + +[fips4984710] +centroid = (0.72283838970274583, -1.9555778270617037) +description = Willard city, UT +station = ('kogd', 0.0037828169805042434) +zone = ('utz002', 0.0025731952934806763) + +[fips4984950] +centroid = (0.72126251446782752, -1.9517797986231462) +description = Wolf Creek CDP, UT +station = ('kogd', 0.00329556979083649) +zone = ('utz002', 0.0047676526387823402) + +[fips4985040] +centroid = (0.70833189363857729, -1.9414426323426042) +description = Woodland CDP, UT +station = ('k36u', 0.00311678869401727) +zone = ('utz006', 0.0056888594798320145) + +[fips4985050] +centroid = (0.69834513711195811, -1.9487263625500746) +description = Woodland Hills city, UT +station = ('kpvu', 0.0036654625779251821) +zone = ('utz008', 0.0035616454760738561) + +[fips4985260] +centroid = (0.72468973025350625, -1.9401597978890961) +description = Woodruff town, UT +station = ('kevw', 0.0047631972862454044) +zone = ('utz007', 0.0044610979614900471) + +[fips4985370] +centroid = (0.71337486543258211, -1.9533201564077862) +description = Woods Cross city, UT +station = ('kslc', 0.0017028119391952845) +zone = ('utz006', 0.0052295288438645336) + +[fips50001] +centroid = (0.7684902513621682, -1.2765614085641268) +description = Addison County, VT +station = ('kbtv', 0.0076002182113027094) +zone = ('vtz009', 0.0012392904809100272) + +[fips5000100325] +centroid = (0.76896656916833006, -1.2798903448596255) +description = Addison town, VT +station = ('kbtv', 0.0074787923246317075) +zone = ('vtz009', 0.0013329912221828534) + +[fips5000108575] +centroid = (0.76762589450341057, -1.2798837475150528) +description = Bridport town, VT +station = ('kbtv', 0.0087643976576688293) +zone = ('vtz009', 0.0013533743003158218) + +[fips5000109025] +centroid = (0.76965035426267636, -1.2749359136185743) +description = Bristol town, VT +station = ('kmpv', 0.0062920285350482269) +zone = ('vtz018', 0.0013523325880633447) + +[fips5000116000] +centroid = (0.76729766788428044, -1.2778899531907448) +description = Cornwall town, VT +station = ('krut', 0.0082223258967398741) +zone = ('vtz009', 0.0010581293875513412) + +[fips5000126300] +centroid = (0.77149021054695865, -1.2789632434142586) +description = Ferrisburgh town, VT +station = ('kbtv', 0.0048741105600802687) +zone = ('nyz035', 0.0021002088772319131) + +[fips5000128600] +centroid = (0.76558298661395119, -1.2739167286018722) +description = Goshen town, VT +station = ('krut', 0.0058050270824326613) +zone = ('vtz018', 0.0031879372075551107) + +[fips5000129575] +centroid = (0.76803723370152044, -1.2713207607790409) +description = Granville town, VT +station = ('kmpv', 0.0048370438631850183) +zone = ('vtz018', 0.0017388072697967871) + +[fips5000131525] +centroid = (0.76629518566851995, -1.2727254541209234) +description = Hancock town, VT +station = ('krut', 0.0065049199186407837) +zone = ('vtz018', 0.0025287301701291511) + +[fips5000139325] +centroid = (0.76575497135844262, -1.2758313024314325) +description = Leicester town, VT +station = ('krut', 0.0062475264213545977) +zone = ('vtz009', 0.0031079576428476498) + +[fips5000140075] +centroid = (0.76956671808492072, -1.2736282082232251) +description = Lincoln town, VT +station = ('kmpv', 0.0054272600842568972) +zone = ('vtz018', 0.0008121591323583102) + +[fips5000144350] +centroid = (0.76804383104609308, -1.2762358348454597) +description = Middlebury town, VT +station = ('kmpv', 0.0077528790569815235) +zone = ('vtz009', 0.0014878433258352234) + +[fips5000145550] +centroid = (0.77190746641123298, -1.2763893190998801) +description = Monkton town, VT +station = ('kbtv', 0.0041884923190936103) +zone = ('vtz018', 0.0037622256767196457) + +[fips5000148700] +centroid = (0.7697768906334459, -1.2769835338970141) +description = New Haven town, VT +station = ('kbtv', 0.0063159229917085901) +zone = ('vtz009', 0.0017248124346071652) + +[fips5000153725] +centroid = (0.76461301988215535, -1.2789422296500645) +description = Orwell town, VT +station = ('krut', 0.0063490087278786208) +zone = ('vtz009', 0.003738715314482507) + +[fips5000153950] +centroid = (0.77022109438137099, -1.2800278069915128) +description = Panton town, VT +station = ('kbtv', 0.0063312902631107683) +zone = ('vtz009', 0.0022827375752897333) + +[fips5000159650] +centroid = (0.76768209410532473, -1.2740336831150483) +description = Ripton town, VT +station = ('kmpv', 0.0065691408079372885) +zone = ('vtz018', 0.0011374217292483518) + +[fips5000162575] +centroid = (0.76664451331830663, -1.2760368847640249) +description = Salisbury town, VT +station = ('krut', 0.007141247169562142) +zone = ('vtz009', 0.0023210555424920359) + +[fips5000165050] +centroid = (0.76618632948307308, -1.279593621433494) +description = Shoreham town, VT +station = ('krut', 0.0078753829284200338) +zone = ('vtz009', 0.0023372286810654213) + +[fips5000170075] +centroid = (0.7719318137542982, -1.2739180550521036) +description = Starksboro town, VT +station = ('kbtv', 0.0046119249354023518) +zone = ('vtz018', 0.0031863623971741268) + +[fips5000174650] +centroid = (0.77087108990139863, -1.2785464587888824) +description = Vergennes city, VT +station = ('kbtv', 0.0053818109432031379) +zone = ('vtz009', 0.0025587626439791812) + +[fips5000176075] +centroid = (0.77012216911936793, -1.278088344766819) +description = Waltham town, VT +station = ('kbtv', 0.0060487603819248479) +zone = ('vtz009', 0.001806703618713081) + +[fips5000183275] +centroid = (0.76864874471154176, -1.2779786857299162) +description = Weybridge town, VT +station = ('kbtv', 0.0074964197576927608) +zone = ('vtz009', 0.00038918440782921863) + +[fips5000183800] +centroid = (0.76578801044118294, -1.2777998243881716) +description = Whiting town, VT +station = ('krut', 0.0068431381745350656) +zone = ('vtz009', 0.0025545062727315303) + +[fips50003] +centroid = (0.75110811591582871, -1.2760356979401333) +description = Bennington County, VT +station = ('kddh', 0.0031888043528273068) +zone = ('vtz013', 0.0002367927875713944) + +[fips5000301450] +centroid = (0.7516537407465872, -1.2780403831189742) +description = Arlington town, VT +station = ('kddh', 0.0032126424351811662) +zone = ('vtz013', 0.0017860347493884041) + +[fips5000304825] +centroid = (0.74848427518484306, -1.2778016569838864) +description = Bennington town, VT +station = ('kddh', 0.00047862952842195252) +zone = ('vtz013', 0.0030396966787376088) + +[fips5000317725] +centroid = (0.75545211825099501, -1.274717206410007) +description = Dorset town, VT +station = ('krut', 0.0044822726764681721) +zone = ('vtz013', 0.0044011527940353724) + +[fips5000327962] +centroid = (0.7500333945223282, -1.2754038887509116) +description = Glastenbury town, VT +station = ('kddh', 0.0027343683026355217) +zone = ('vtz013', 0.0011010416524065564) + +[fips5000339025] +centroid = (0.75510882944042024, -1.2714835301850818) +description = Landgrove town, VT +station = ('krut', 0.0048574402420076997) +zone = ('vtz014', 0.0046627426401047835) + +[fips5000342850] +centroid = (0.75337533352075436, -1.2751909062222906) +description = Manchester town, VT +station = ('kddh', 0.0054676983764401282) +zone = ('vtz013', 0.0022958811163180087) + +[fips5000355000] +centroid = (0.75538340463834397, -1.2728410647305755) +description = Peru town, VT +station = ('krut', 0.0044250636752818356) +zone = ('vtz013', 0.0047578556953927244) + +[fips5000357025] +centroid = (0.74675147739687797, -1.2777600483345188) +description = Pownal town, VT +station = ('kaqw', 0.0015968325462374904) +zone = ('nyz054', 0.0027804814647227746) + +[fips5000358600] +centroid = (0.74684284538321988, -1.2736128318725148) +description = Readsboro town, VT +station = ('kaqw', 0.0029502566941283282) +zone = ('maz002', 0.0038277055258668789) + +[fips5000361000] +centroid = (0.75490258388271203, -1.2775349532208891) +description = Rupert town, VT +station = ('kgfl', 0.0055092673989471357) +zone = ('nyz084', 0.0034704185707244185) + +[fips5000362875] +centroid = (0.75371677228232203, -1.2772366066385532) +description = Sandgate town, VT +station = ('kddh', 0.0053360902005803838) +zone = ('vtz013', 0.0028334374776491722) + +[fips5000363175] +centroid = (0.74857689980824627, -1.27345315169925) +description = Searsburg town, VT +station = ('kaqw', 0.0042192236212491045) +zone = ('vtz014', 0.0029779823750230036) + +[fips5000363550] +centroid = (0.75012174308906421, -1.2778167191753311) +description = Shaftsbury town, VT +station = ('kddh', 0.0017304116876315952) +zone = ('vtz013', 0.0018298549247194806) + +[fips5000369775] +centroid = (0.74714122687214091, -1.2754260020725343) +description = Stamford town, VT +station = ('kaqw', 0.0022113520200576068) +zone = ('vtz013', 0.0039754546550964292) + +[fips5000371425] +centroid = (0.75190548703789473, -1.2752904248962393) +description = Sunderland town, VT +station = ('kddh', 0.0041543392435786823) +zone = ('vtz013', 0.00085188883697773058) + +[fips5000385075] +centroid = (0.7534407310078266, -1.2736079274973167) +description = Winhall town, VT +station = ('kddh', 0.0061157785778722211) +zone = ('vtz013', 0.0027904141121544413) + +[fips5000385675] +centroid = (0.74889102416702036, -1.2754592331414922) +description = Woodford town, VT +station = ('kddh', 0.002236549440062561) +zone = ('vtz013', 0.0022278218367723516) + +[fips5000400] +centroid = (0.78068458759317216, -1.2632999954817459) +description = Albany village, VT +station = ('kefk', 0.0032236195917814646) +zone = ('vtz003', 0.0024287285770116089) + +[fips50005] +centroid = (0.7761268173312218, -1.2585947623512943) +description = Caledonia County, VT +station = ('k1v4', 0.0014979256247171454) +zone = ('vtz007', 0.00014322497344842008) + +[fips5000502875] +centroid = (0.7734012937180148, -1.2578025748571064) +description = Barnet town, VT +station = ('k1v4', 0.0019204249198896011) +zone = ('vtz007', 0.002690638480109568) + +[fips5000510450] +centroid = (0.77860644150611513, -1.25543180686766) +description = Burke town, VT +station = ('kcda', 0.0012141501794834643) +zone = ('vtz007', 0.003323671737804638) + +[fips5000517125] +centroid = (0.77558075616815025, -1.2588156163148416) +description = Danville town, VT +station = ('k1v4', 0.0013962569176735227) +zone = ('vtz007', 0.00055203254747992407) + +[fips5000530550] +centroid = (0.77200194108364339, -1.2611315635124829) +description = Groton town, VT +station = ('kmpv', 0.0039084246411171088) +zone = ('vtz010', 0.0042324729634963089) + +[fips5000531825] +centroid = (0.77701786027424236, -1.2627818246801212) +description = Hardwick town, VT +station = ('kmvl', 0.0033007653817171407) +zone = ('vtz006', 0.0038974488470069515) + +[fips5000537900] +centroid = (0.77684526466451265, -1.255403567440363) +description = Kirby town, VT +station = ('kcda', 0.0014510184937505373) +zone = ('vtz007', 0.0022928413297495995) + +[fips5000541725] +centroid = (0.77756964611726043, -1.2568616853106491) +description = Lyndon town, VT +station = ('kcda', 0.00032556368946271106) +zone = ('vtz007', 0.0018786062655312668) + +[fips5000547725] +centroid = (0.78067429015058554, -1.2555721313395205) +description = Newark town, VT +station = ('kcda', 0.0029174857296134847) +zone = ('vtz004', 0.0025205015554294486) + +[fips5000554400] +centroid = (0.77369129762652622, -1.2601104760868962) +description = Peacham town, VT +station = ('k1v4', 0.0027391728905521166) +zone = ('vtz007', 0.0026545474348642069) + +[fips5000561525] +centroid = (0.77182384768676982, -1.2585727886560119) +description = Ryegate town, VT +station = ('k1v4', 0.0035915001702393626) +zone = ('vtz007', 0.0042329642568589348) + +[fips5000562200] +centroid = (0.77597876105077501, -1.2567233505141358) +description = St. Johnsbury town, VT +station = ('k1v4', 0.00077556727029646621) +zone = ('vtz007', 0.0012138989792640185) + +[fips5000564075] +centroid = (0.77914344441036865, -1.25855823261005) +description = Sheffield town, VT +station = ('kcda', 0.0017633353453999771) +zone = ('vtz007', 0.0030895813341297734) + +[fips5000569925] +centroid = (0.77711676808295294, -1.2597163981950885) +description = Stannard town, VT +station = ('k1v4', 0.0027510578607946412) +zone = ('vtz007', 0.0014073245070000101) + +[fips5000571575] +centroid = (0.77955254958703613, -1.2572649087277372) +description = Sutton town, VT +station = ('kcda', 0.0016903850409673426) +zone = ('vtz007', 0.0035927865839334313) + +[fips5000575700] +centroid = (0.7764590407543388, -1.2605640347996119) +description = Walden town, VT +station = ('k1v4', 0.002877397154747973) +zone = ('vtz007', 0.0015816613515502462) + +[fips5000577125] +centroid = (0.77427830421384947, -1.255494376921344) +description = Waterford town, VT +station = ('k1v4', 0.0013895121780083597) +zone = ('vtz007', 0.0027436607390462632) + +[fips5000583500] +centroid = (0.77773969354628225, -1.259438978110484) +description = Wheelock town, VT +station = ('kcda', 0.0018781602800273939) +zone = ('vtz007', 0.0018341097335905436) + +[fips5000625] +centroid = (0.7849919903739242, -1.2793711966736199) +description = Alburg village, VT +station = ('kfso', 0.002631583425861493) +zone = ('vtz001', 0.0031418055209200837) + +[fips50007] +centroid = (0.77598518386242243, -1.2753212474108295) +description = Chittenden County, VT +station = ('kbtv', 0.00099547236526004255) +zone = ('vtz005', 0.001115489624155112) + +[fips5000706550] +centroid = (0.77492374442452949, -1.2719505279330381) +description = Bolton town, VT +station = ('kmvl', 0.003996690796508935) +zone = ('vtz017', 0.00076304301138264497) + +[fips5000710300] +centroid = (0.77140802299248223, -1.2731783147019384) +description = Buels gore, VT +station = ('kmpv', 0.0047683501232839874) +zone = ('vtz018', 0.0026612477948017416) + +[fips5000710675] +centroid = (0.77653173371768436, -1.2782680264133117) +description = Burlington city, VT +station = ('kbtv', 0.0011973976260471759) +zone = ('vtz005', 0.0010589398881787457) + +[fips5000713300] +centroid = (0.77328156413132809, -1.2782029954453824) +description = Charlotte town, VT +station = ('kbtv', 0.0030044580376451186) +zone = ('nyz035', 0.0026758902558900455) + +[fips5000714875] +centroid = (0.77766752418171237, -1.2779223115950766) +description = Colchester town, VT +station = ('kbtv', 0.0017996690531196669) +zone = ('vtz005', 0.0015696697047946672) + +[fips5000724175] +centroid = (0.7771493708333802, -1.2753140915608965) +description = Essex town, VT +station = ('kbtv', 0.0014532223220087214) +zone = ('vtz005', 0.0013610365128331361) + +[fips5000733475] +centroid = (0.77375308228204687, -1.2756144452718721) +description = Hinesburg town, VT +station = ('kbtv', 0.0024639031554403498) +zone = ('vtz017', 0.0025363875202410388) + +[fips5000734600] +centroid = (0.77339970546839554, -1.2732544808704953) +description = Huntington town, VT +station = ('kbtv', 0.0036507462704517156) +zone = ('vtz017', 0.0019619843150728085) + +[fips5000736700] +centroid = (0.77605899383648924, -1.2733819422657686) +description = Jericho town, VT +station = ('kbtv', 0.0023741506699833498) +zone = ('vtz017', 0.00081463729467737755) + +[fips5000745250] +centroid = (0.7792222983859739, -1.2768636821372796) +description = Milton town, VT +station = ('kbtv', 0.0031345125081946698) +zone = ('vtz005', 0.0029122579496689205) + +[fips5000759275] +centroid = (0.77461623486362063, -1.2737392635235294) +description = Richmond town, VT +station = ('kbtv', 0.002582148806185589) +zone = ('vtz017', 0.00096484447424197844) + +[fips5000762050] +centroid = (0.77450598241477209, -1.2760476883520946) +description = St. George town, VT +station = ('kbtv', 0.0016525537357378582) +zone = ('vtz005', 0.0018859504738499878) + +[fips5000764300] +centroid = (0.77479832506448121, -1.2783390787671602) +description = Shelburne town, VT +station = ('kbtv', 0.0017389261945819686) +zone = ('vtz005', 0.0018621813234169177) + +[fips5000766175] +centroid = (0.77556311088941254, -1.2772776567825601) +description = South Burlington city, VT +station = ('kbtv', 0.00066520480549029791) +zone = ('vtz005', 0.00081640083903479304) + +[fips5000773975] +centroid = (0.77741096078166905, -1.2720522631751365) +description = Underhill town, VT +station = ('kmvl', 0.003319871887911907) +zone = ('vtz017', 0.0021471419515643737) + +[fips5000780350] +centroid = (0.77854638472655402, -1.2741539188472182) +description = Westford town, VT +station = ('kbtv', 0.0030578370347921604) +zone = ('vtz005', 0.0029328635498946745) + +[fips5000784475] +centroid = (0.77543352019245204, -1.275770163547735) +description = Williston town, VT +station = ('kbtv', 0.00093765752393288736) +zone = ('vtz005', 0.0011517499458682501) + +[fips5000785150] +centroid = (0.77659451321087858, -1.2773166648913421) +description = Winooski city, VT +station = ('kbtv', 0.00066571095078798829) +zone = ('vtz005', 0.0004561855818203263) + +[fips50009] +centroid = (0.78058142118108687, -1.2519724246638673) +description = Essex County, VT +station = ('kcda', 0.0043679843528797195) +zone = ('vtz004', 0.00042881731147140754) + +[fips5000902125] +centroid = (0.78434579967166573, -1.2507042160694906) +description = Averill town, VT +station = ('cwqh', 0.0076971219508401995) +zone = ('vtz004', 0.0042990487771002129) + +[fips5000902162] +centroid = (0.783872972524008, -1.2534654316659006) +description = Avery's gore, VT +station = ('kefk', 0.0051220965916166372) +zone = ('vtz004', 0.0038353104653376284) + +[fips5000906325] +centroid = (0.78228102280667899, -1.2502421401500252) +description = Bloomfield town, VT +station = ('kcda', 0.0064078441393425013) +zone = ('vtz004', 0.0024956481403732109) + +[fips5000908725] +centroid = (0.78195084141878668, -1.2544623113747622) +description = Brighton town, VT +station = ('kcda', 0.0043879197662190939) +zone = ('vtz004', 0.0024526926603949165) + +[fips5000910075] +centroid = (0.78051677418559307, -1.2509539203255733) +description = Brunswick town, VT +station = ('kcda', 0.0049245808691022732) +zone = ('vtz004', 0.00088781431036249699) + +[fips5000911800] +centroid = (0.78524666881837524, -1.2496213265350906) +description = Canaan town, VT +station = ('cwqh', 0.0070817551072840127) +zone = ('vtz004', 0.0053794539370707927) + +[fips5000915250] +centroid = (0.77566828443013769, -1.2538957949528575) +description = Concord town, VT +station = ('k1v4', 0.0022118074547927934) +zone = ('vtz007', 0.0032531356879063338) + +[fips5000921250] +centroid = (0.77951608965896202, -1.2532347689519572) +description = East Haven town, VT +station = ('kcda', 0.0030192845497028615) +zone = ('vtz004', 0.0010340926135728986) + +[fips5000925975] +centroid = (0.78062407702800551, -1.2529558129776108) +description = Ferdinand town, VT +station = ('kcda', 0.003870685383116571) +zone = ('vtz004', 0.00076414243369379159) + +[fips5000929125] +centroid = (0.77839276084579345, -1.2522245025677328) +description = Granby town, VT +station = ('kcda', 0.003304975396051393) +zone = ('vtz004', 0.0017716586838859058) + +[fips5000930775] +centroid = (0.77737039932985263, -1.2498323892015344) +description = Guildhall town, VT +station = ('khie', 0.0031173113694297106) +zone = ('vtz004', 0.0032244863450345898) + +[fips5000939700] +centroid = (0.7833387795998501, -1.2493117574856645) +description = Lemington town, VT +station = ('kbml', 0.0071691912279419285) +zone = ('vtz004', 0.0037422016370570392) + +[fips5000939775] +centroid = (0.78313448881090408, -1.2520473341953626) +description = Lewis town, VT +station = ('kefk', 0.0060995185147324016) +zone = ('vtz004', 0.0029725411641876964) + +[fips5000941425] +centroid = (0.77616530184122823, -1.2515048684105503) +description = Lunenburg town, VT +station = ('khie', 0.0026636142709395082) +zone = ('vtz004', 0.0040192254016179858) + +[fips5000942475] +centroid = (0.77902760690791384, -1.2503549931394589) +description = Maidstone town, VT +station = ('khie', 0.0048155261488085858) +zone = ('vtz004', 0.0016810824792052315) + +[fips5000952750] +centroid = (0.78500188639078294, -1.2532221153148801) +description = Norton town, VT +station = ('cwqh', 0.0067975104118907165) +zone = ('vtz004', 0.004904774151089507) + +[fips5000975175] +centroid = (0.77769754384484657, -1.2534416602814886) +description = Victory town, VT +station = ('kcda', 0.0024089130795103006) +zone = ('vtz004', 0.0026433231638494834) + +[fips5000976337] +centroid = (0.78404225200815891, -1.2551116785762595) +description = Warner's grant, VT +station = ('kefk', 0.0039927538062034668) +zone = ('vtz003', 0.0044094586487203923) + +[fips5000976562] +centroid = (0.78386574686090482, -1.2544749824651316) +description = Warren's gore, VT +station = ('kefk', 0.0044111821999936922) +zone = ('vtz004', 0.0040691136620302571) + +[fips50011] +centroid = (0.7829366208336056, -1.2725091205601387) +description = Franklin County, VT +station = ('kfso', 0.002662802601512697) +zone = ('vtz002', 0.0015467884849477039) + +[fips5001102500] +centroid = (0.78170422639547987, -1.2702460742921255) +description = Bakersfield town, VT +station = ('cwfq', 0.0046143868444417412) +zone = ('vtz016', 0.0015155205042815777) + +[fips5001105425] +centroid = (0.78487503586074803, -1.2693614367074593) +description = Berkshire town, VT +station = ('cwfq', 0.0018983992010296734) +zone = ('vtz016', 0.0018126549549899226) + +[fips5001123875] +centroid = (0.78326563285089901, -1.2697403302347749) +description = Enosburg town, VT +station = ('cwfq', 0.0031734756524934011) +zone = ('vtz016', 0.00037246247717003146) + +[fips5001124925] +centroid = (0.78020369702437031, -1.2740510316878133) +description = Fairfax town, VT +station = ('kfso', 0.0041695719359309) +zone = ('vtz002', 0.0026445633987359505) + +[fips5001125225] +centroid = (0.78205259411417793, -1.2728345546524658) +description = Fairfield town, VT +station = ('kfso', 0.0030057673527085081) +zone = ('vtz002', 0.0015143836098979874) + +[fips5001126500] +centroid = (0.78038236637989689, -1.272353000858548) +description = Fletcher town, VT +station = ('kfso', 0.004527391577558648) +zone = ('vtz002', 0.002937602767244113) + +[fips5001127100] +centroid = (0.78499263614574744, -1.2723750792735857) +description = Franklin town, VT +station = ('cwfq', 0.0015315974010548115) +zone = ('vtz002', 0.0027271944025842117) + +[fips5001127700] +centroid = (0.78055381007232039, -1.2763322642866322) +description = Georgia town, VT +station = ('kfso', 0.0036397032942946717) +zone = ('vtz002', 0.0025413661295078265) + +[fips5001133025] +centroid = (0.78475584732612935, -1.2751350556862266) +description = Highgate town, VT +station = ('kfso', 0.0007626388351433882) +zone = ('vtz002', 0.0019720811707847272) + +[fips5001145850] +centroid = (0.78295630814756811, -1.2672005794671504) +description = Montgomery town, VT +station = ('cwfq', 0.0043499648058625958) +zone = ('vtz016', 0.0014914632655625534) + +[fips5001159125] +centroid = (0.78450759169332562, -1.2670845499784777) +description = Richford town, VT +station = ('cwfq', 0.0033913894735911015) +zone = ('vtz016', 0.0021325672705583068) + +[fips5001161675] +centroid = (0.78210888098255471, -1.2755644939486801) +description = St. Albans city, VT +station = ('kfso', 0.0020764654224942718) +zone = ('vtz002', 0.00093886321772070948) + +[fips5001161750] +centroid = (0.78210579174977868, -1.2766367195213502) +description = St. Albans town, VT +station = ('kfso', 0.0021470519869008081) +zone = ('vtz002', 0.0015536768997363669) + +[fips5001164600] +centroid = (0.78362810282995321, -1.2727183506308679) +description = Sheldon town, VT +station = ('kfso', 0.0022746607150804323) +zone = ('vtz002', 0.0016153636123990385) + +[fips5001171725] +centroid = (0.78376357528649299, -1.276069312981527) +description = Swanton town, VT +station = ('kfso', 0.00044477051772602512) +zone = ('vtz002', 0.0013687710537700444) + +[fips50013] +centroid = (0.78193871138048532, -1.2793395713075737) +description = Grand Isle County, VT +station = ('kpbg', 0.0033542161151809365) +zone = ('vtz001', 0.0001141202081605502) + +[fips5001300700] +centroid = (0.78466306562309329, -1.2791862615860785) +description = Alburg town, VT +station = ('kfso', 0.002420946114669917) +zone = ('vtz001', 0.0028116285119626186) + +[fips5001329275] +centroid = (0.78044643741673769, -1.2793198316337335) +description = Grand Isle town, VT +station = ('kpbg', 0.0023738647797983737) +zone = ('vtz001', 0.0014064898109118879) + +[fips5001335875] +centroid = (0.78315234352915208, -1.2801850437038247) +description = Isle La Motte town, VT +station = ('kpbg', 0.0041280311501421755) +zone = ('vtz001', 0.0014646293569348411) + +[fips5001350650] +centroid = (0.78251978384835186, -1.2780288290393258) +description = North Hero town, VT +station = ('kfso', 0.0022714066787615124) +zone = ('vtz001', 0.0010859118121754631) + +[fips5001367000] +centroid = (0.77891510298433031, -1.2794803670183321) +description = South Hero town, VT +station = ('kpbg', 0.001995639600280665) +zone = ('vtz001', 0.0029416990961738062) + +[fips5001375] +centroid = (0.7517636441295853, -1.2766399134738813) +description = Arlington CDP, VT +station = ('kddh', 0.00356449088435681) +zone = ('vtz013', 0.00094110859699534722) + +[fips50015] +centroid = (0.77847800272646084, -1.2677784754357782) +description = Lamoille County, VT +station = ('kmvl', 0.0012540502569086613) +zone = ('vtz006', 5.384934947477676e-05) + +[fips5001504375] +centroid = (0.78118917973321633, -1.2684648785240025) +description = Belvidere town, VT +station = ('kmvl', 0.0040081498403745182) +zone = ('vtz016', 0.001965041566912028) + +[fips5001511500] +centroid = (0.77888017894599793, -1.270867970011196) +description = Cambridge town, VT +station = ('kmvl', 0.0029578015019269973) +zone = ('vtz006', 0.0021917832041050294) + +[fips5001523500] +centroid = (0.7804140441058206, -1.2660516292205626) +description = Eden town, VT +station = ('kmvl', 0.0033032143738548412) +zone = ('vtz006', 0.0022812862539430801) + +[fips5001523725] +centroid = (0.77643300044189911, -1.2656185955798502) +description = Elmore town, VT +station = ('kmvl', 0.0015121483580761077) +zone = ('vtz006', 0.0026129988745101718) + +[fips5001535050] +centroid = (0.77884998474993838, -1.2665339684126438) +description = Hyde Park town, VT +station = ('kmvl', 0.001711686830837565) +zone = ('vtz006', 0.00098212023590977886) + +[fips5001537075] +centroid = (0.77925676863870075, -1.268659587455355) +description = Johnson town, VT +station = ('kmvl', 0.0021951354928715348) +zone = ('vtz006', 0.00094630436466403825) + +[fips5001546675] +centroid = (0.77758242192738503, -1.2677727682091242) +description = Morristown town, VT +station = ('kmvl', 0.00042301390545689877) +zone = ('vtz006', 0.00093484800873034051) + +[fips5001570525] +centroid = (0.77653145446500405, -1.2690813637223919) +description = Stowe town, VT +station = ('kmvl', 0.0013995412813462586) +zone = ('vtz006', 0.0021755411689465586) + +[fips5001577425] +centroid = (0.78081866378631049, -1.2699315659609161) +description = Waterville town, VT +station = ('kmvl', 0.0039946499930963702) +zone = ('vtz016', 0.0022886319317234863) + +[fips5001585375] +centroid = (0.77777011463514445, -1.2646408272262981) +description = Wolcott town, VT +station = ('kmvl', 0.0020330881239051207) +zone = ('vtz006', 0.0023919073326472556) + +[fips50017] +centroid = (0.76800407244573266, -1.2630893167877375) +description = Orange County, VT +station = ('kmpv', 0.0042272779563256452) +zone = ('vtz010', 9.8410468064523665e-05) + +[fips5001707375] +centroid = (0.76815745198039798, -1.2594001270813344) +description = Bradford town, VT +station = ('kmpv', 0.0060775026325323124) +zone = ('vtz010', 0.002746329288407086) + +[fips5001707600] +centroid = (0.7673701688614083, -1.2690045343287191) +description = Braintree town, VT +station = ('kmpv', 0.0044377613890001551) +zone = ('vtz018', 0.0035328609361966364) + +[fips5001709325] +centroid = (0.76836193475556158, -1.2668837323947433) +description = Brookfield town, VT +station = ('kmpv', 0.0030842323280398602) +zone = ('vtz010', 0.0026575139886913404) + +[fips5001713525] +centroid = (0.76783868504581365, -1.2646654363687511) +description = Chelsea town, VT +station = ('kmpv', 0.0038373299416490383) +zone = ('vtz010', 0.001062956073194139) + +[fips5001715700] +centroid = (0.76869928944667953, -1.2615654872711137) +description = Corinth town, VT +station = ('kmpv', 0.0044915403508459014) +zone = ('vtz010', 0.0013558571408233792) + +[fips5001725675] +centroid = (0.76651101308382152, -1.259783820264093) +description = Fairlee town, VT +station = ('kleb', 0.0051897664153304802) +zone = ('vtz010', 0.0029062536133524926) + +[fips5001748175] +centroid = (0.7700274151942772, -1.2586866713897042) +description = Newbury town, VT +station = ('k1v4', 0.0053402837337309461) +zone = ('vtz010', 0.0038116612133359908) + +[fips5001750] +centroid = (0.75759679628913812, -1.2636907223413898) +description = Ascutney CDP, VT +station = ('kvsf', 0.001740870316331269) +zone = ('nhz007', 0.0024417514967383981) + +[fips5001753425] +centroid = (0.7708534795292461, -1.262696617706039) +description = Orange town, VT +station = ('kmpv', 0.0028079915094794522) +zone = ('vtz010', 0.0028354448430716779) + +[fips5001758075] +centroid = (0.76685376084232815, -1.2672382436724086) +description = Randolph town, VT +station = ('kmpv', 0.0046101588230074561) +zone = ('vtz010', 0.003129890854646173) + +[fips5001770675] +centroid = (0.76571093670141488, -1.26296445593305) +description = Strafford town, VT +station = ('kleb', 0.0042395496605426852) +zone = ('vtz010', 0.0023386533645594291) + +[fips5001772400] +centroid = (0.76509501000838598, -1.2609915531998879) +description = Thetford town, VT +station = ('kleb', 0.0036063682441132353) +zone = ('vtz010', 0.0033546587672901446) + +[fips5001773075] +centroid = (0.77078616217999663, -1.2612763734805208) +description = Topsham town, VT +station = ('kmpv', 0.003821183207322327) +zone = ('vtz010', 0.003076798638078867) + +[fips5001773675] +centroid = (0.76620877441725366, -1.2651078598808392) +description = Tunbridge town, VT +station = ('kleb', 0.005215822010675047) +zone = ('vtz010', 0.002284612613009971) + +[fips5001774950] +centroid = (0.76719027777540516, -1.2623362421220869) +description = Vershire town, VT +station = ('kmpv', 0.0052045079987388327) +zone = ('vtz010', 0.0010613641328503206) + +[fips5001776750] +centroid = (0.76927420090228649, -1.2640133988134985) +description = Washington town, VT +station = ('kmpv', 0.002815339637850149) +zone = ('vtz010', 0.0013586888952222985) + +[fips5001779975] +centroid = (0.76662334247447994, -1.2604931569786886) +description = West Fairlee town, VT +station = ('kleb', 0.0051748258304216413) +zone = ('vtz010', 0.0024192808714221317) + +[fips5001784175] +centroid = (0.76985153836555364, -1.2660935345759028) +description = Williamstown town, VT +station = ('kmpv', 0.0016142681851481111) +zone = ('vtz010', 0.0027478848229964123) + +[fips50019] +centroid = (0.78240391143931187, -1.2610288334327107) +description = Orleans County, VT +station = ('kefk', 0.00093880968819095754) +zone = ('vtz003', 9.7122508587385445e-05) + +[fips5001900475] +centroid = (0.7806575524430589, -1.2625855449524419) +description = Albany town, VT +station = ('kefk', 0.0029809150993101484) +zone = ('vtz003', 0.0021251973483228251) + +[fips5001903550] +centroid = (0.78138924682537236, -1.2592483357962885) +description = Barton town, VT +station = ('kefk', 0.0021576789468127347) +zone = ('vtz003', 0.0015501026619351762) + +[fips5001909850] +centroid = (0.78241677451589908, -1.2588641713746322) +description = Brownington town, VT +station = ('kefk', 0.0015465480496991973) +zone = ('vtz003', 0.0014383033087577025) + +[fips5001913150] +centroid = (0.78321418054455028, -1.25716449993587) +description = Charleston town, VT +station = ('kefk', 0.0024724448321396938) +zone = ('vtz003', 0.0027622735485802975) + +[fips5001916150] +centroid = (0.78345711292313536, -1.2607109740693374) +description = Coventry town, VT +station = ('kefk', 0.00015906330785708683) +zone = ('vtz003', 0.0010548026646400731) + +[fips5001916300] +centroid = (0.77923758747022132, -1.2634063383930698) +description = Craftsbury town, VT +station = ('kmvl', 0.003467830339668642) +zone = ('vtz003', 0.0036406905906848355) + +[fips5001917350] +centroid = (0.78456045771636851, -1.2590193485984269) +description = Derby town, VT +station = ('kefk', 0.0017072888596901673) +zone = ('vtz003', 0.0025267025110678239) + +[fips5001928075] +centroid = (0.77979057759042314, -1.2607103632040992) +description = Glover town, VT +station = ('kefk', 0.0035134406884186776) +zone = ('vtz003', 0.0026227619333448839) + +[fips5001930175] +centroid = (0.77855071314309887, -1.2616741165637579) +description = Greensboro town, VT +station = ('kmvl', 0.0042803574177227412) +zone = ('vtz007', 0.0034065003472373225) + +[fips5001933775] +centroid = (0.78493076422376418, -1.2563901671599302) +description = Holland town, VT +station = ('kefk', 0.00342769090276056) +zone = ('vtz003', 0.004064783840390794) + +[fips5001935575] +centroid = (0.78224334114812843, -1.2615718228162986) +description = Irasburg town, VT +station = ('kefk', 0.0012451479246136108) +zone = ('vtz003', 0.00051010619208036211) + +[fips5001936325] +centroid = (0.78464632791556677, -1.2654950088155166) +description = Jay town, VT +station = ('cwfq', 0.0043364665416422404) +zone = ('vtz016', 0.0031251120399041921) + +[fips5001940525] +centroid = (0.78179295893465117, -1.2646385408449778) +description = Lowell town, VT +station = ('kefk', 0.0032057463224574308) +zone = ('vtz003', 0.002728521923051255) + +[fips5001946450] +centroid = (0.78345039340551514, -1.2555783447116575) +description = Morgan town, VT +station = ('kefk', 0.0035973643413857027) +zone = ('vtz003', 0.0039077027777302143) + +[fips5001948850] +centroid = (0.78438070625670575, -1.2604676751716093) +description = Newport city, VT +station = ('kefk', 0.0010847627922985369) +zone = ('vtz003', 0.0019933675341177199) + +[fips5001948925] +centroid = (0.78421341644790199, -1.2618753355732202) +description = Newport town, VT +station = ('kefk', 0.001256592444728898) +zone = ('vtz003', 0.0019331461867334889) + +[fips5001973525] +centroid = (0.7842055101063905, -1.2633536643562446) +description = Troy town, VT +station = ('kefk', 0.0021157680101378832) +zone = ('vtz003', 0.0025030803306728211) + +[fips5001980200] +centroid = (0.7833636505416911, -1.2650991855944567) +description = Westfield town, VT +station = ('kefk', 0.0031521706258187719) +zone = ('vtz003', 0.0031309830122160758) + +[fips5001981700] +centroid = (0.78135324068290379, -1.2565978264343325) +description = Westmore town, VT +station = ('kcda', 0.0034633313730367131) +zone = ('vtz003', 0.0032253103029245855) + +[fips50021] +centroid = (0.76062921859801558, -1.2747569999169523) +description = Rutland County, VT +station = ('krut', 0.0013899591914197811) +zone = ('vtz011', 0.0012872287543835169) + +[fips5002105200] +centroid = (0.76288976904519867, -1.2793706032616743) +description = Benson town, VT +station = ('krut', 0.0054208872835935212) +zone = ('vtz011', 0.0029942559369178171) + +[fips5002107750] +centroid = (0.76454751767532791, -1.2754049708550477) +description = Brandon town, VT +station = ('krut', 0.0050042049030696884) +zone = ('vtz011', 0.0039206491877557814) + +[fips5002111950] +centroid = (0.76158613026700661, -1.2770179343365708) +description = Castleton town, VT +station = ('krut', 0.0032814355583200487) +zone = ('vtz011', 0.00094252474895341494) + +[fips5002114350] +centroid = (0.76398913448773742, -1.2724530082246872) +description = Chittenden town, VT +station = ('krut', 0.0042255111372009845) +zone = ('vtz019', 0.0035505497669629385) + +[fips5002114500] +centroid = (0.75976208666574729, -1.2739012300781145) +description = Clarendon town, VT +station = ('krut', 0.00049700630869448754) +zone = ('vtz019', 0.0016221566364595476) + +[fips5002116825] +centroid = (0.75666128235677665, -1.2750767093293327) +description = Danby town, VT +station = ('krut', 0.0034166314407157576) +zone = ('vtz011', 0.0041860548040376679) + +[fips5002125375] +centroid = (0.76132317896190105, -1.2786344059298904) +description = Fair Haven town, VT +station = ('krut', 0.004209379664653224) +zone = ('vtz011', 0.0016415649761642075) + +[fips5002134450] +centroid = (0.76320663357089824, -1.2770263468235654) +description = Hubbardton town, VT +station = ('krut', 0.0043822976943584911) +zone = ('vtz011', 0.0025200893856174031) + +[fips5002135425] +centroid = (0.7604148572592857, -1.2757907933394934) +description = Ira town, VT +station = ('krut', 0.0019636328850052274) +zone = ('vtz011', 0.00061274630057516757) + +[fips5002137685] +centroid = (0.76196858426599612, -1.2703275986214859) +description = Killington town, VT +station = ('krut', 0.0030139228057273542) +zone = ('vtz019', 0.0018802066883856678) + +[fips5002144125] +centroid = (0.76139250343979037, -1.2725231355540323) +description = Mendon town, VT +station = ('krut', 0.0016700975535100589) +zone = ('vtz019', 0.0010391705689683868) + +[fips5002144800] +centroid = (0.75891862139813593, -1.2763169402957997) +description = Middletown Springs town, VT +station = ('krut', 0.0024144367108631997) +zone = ('vtz011', 0.0018002638094032429) + +[fips5002147200] +centroid = (0.75801089310746628, -1.2707438596480867) +description = Mount Holly town, VT +station = ('krut', 0.0025343391687705145) +zone = ('vtz019', 0.0025871319336920858) + +[fips5002147425] +centroid = (0.75661457734599324, -1.2727222078085147) +description = Mount Tabor town, VT +station = ('krut', 0.003205674151245029) +zone = ('vtz019', 0.0038960353623051767) + +[fips5002154250] +centroid = (0.75678643991743721, -1.277342303778054) +description = Pawlet town, VT +station = ('krut', 0.0042483687731893803) +zone = ('vtz011', 0.0039697626149541145) + +[fips5002155450] +centroid = (0.76453240312400561, -1.2712443502643884) +description = Pittsfield town, VT +station = ('krut', 0.0049429831905000556) +zone = ('vtz019', 0.0040958373644612361) + +[fips5002155600] +centroid = (0.76288273536831319, -1.2749361230580845) +description = Pittsford town, VT +station = ('krut', 0.0033242692614635695) +zone = ('vtz011', 0.002458008116884926) + +[fips5002156875] +centroid = (0.75991530912077987, -1.2773923598210011) +description = Poultney town, VT +station = ('krut', 0.0030285557065432246) +zone = ('vtz011', 0.001012552391193526) + +[fips5002157250] +centroid = (0.76176829028103721, -1.2747198244038849) +description = Proctor town, VT +station = ('krut', 0.00224897372167952) +zone = ('vtz011', 0.0016832651170001869) + +[fips5002161225] +centroid = (0.76113232720819557, -1.2737026814224077) +description = Rutland city, VT +station = ('krut', 0.0013778837528096411) +zone = ('vtz019', 0.0014786655152342215) + +[fips5002161300] +centroid = (0.7617428433805431, -1.273270782245709) +description = Rutland town, VT +station = ('krut', 0.0019432228895886487) +zone = ('vtz019', 0.0016276858983451594) + +[fips5002165275] +centroid = (0.75971717934409344, -1.2716597560796556) +description = Shrewsbury town, VT +station = ('krut', 0.0011325375436255086) +zone = ('vtz019', 0.00076274738718258323) + +[fips5002171050] +centroid = (0.76442328513917102, -1.2771319916031887) +description = Sudbury town, VT +station = ('krut', 0.0054214610964133337) +zone = ('vtz011', 0.0037364715101436412) + +[fips5002172925] +centroid = (0.75807206689774875, -1.2753622801015438) +description = Tinmouth town, VT +station = ('krut', 0.002325303885981803) +zone = ('vtz011', 0.0027727367712664566) + +[fips5002175925] +centroid = (0.7579528434565449, -1.2732217734003131) +description = Wallingford town, VT +station = ('krut', 0.0018471599554699826) +zone = ('vtz019', 0.0026912567451103605) + +[fips5002177950] +centroid = (0.75822314259780121, -1.2774254338103264) +description = Wells town, VT +station = ('krut', 0.0034359840604911572) +zone = ('vtz011', 0.0025723364745281925) + +[fips5002180875] +centroid = (0.76164868286739806, -1.2804013772646095) +description = West Haven town, VT +station = ('kgfl', 0.0062402925707368403) +zone = ('nyz043', 0.0022320079599921429) + +[fips5002182300] +centroid = (0.7613496556066538, -1.2751851815423443) +description = West Rutland town, VT +station = ('krut', 0.0021054673041496011) +zone = ('vtz011', 0.0011640846205675523) + +[fips50023] +centroid = (0.77274370601574094, -1.2672744068945099) +description = Washington County, VT +station = ('kmpv', 0.0014134596241745746) +zone = ('vtz008', 7.3012171282636672e-05) + +[fips5002303175] +centroid = (0.77142003085773592, -1.2655032118630007) +description = Barre city, VT +station = ('kmpv', 0.00073432044301123317) +zone = ('vtz008', 0.0018623232740042942) + +[fips5002303250] +centroid = (0.77113931210084519, -1.2649300806432309) +description = Barre town, VT +station = ('kmpv', 0.0011828895959662827) +zone = ('vtz008', 0.0023542184548039744) + +[fips5002305650] +centroid = (0.7715079081855738, -1.2672794334427555) +description = Berlin town, VT +station = ('kmpv', 0.00054405771089429203) +zone = ('vtz008', 0.0012103984756529711) + +[fips5002311125] +centroid = (0.77463450846088899, -1.2616531551594417) +description = Cabot town, VT +station = ('k1v4', 0.0034259250530674855) +zone = ('vtz007', 0.0027107382640698765) + +[fips5002311350] +centroid = (0.77425634797185938, -1.2647673286904824) +description = Calais town, VT +station = ('kmpv', 0.0030894284230155644) +zone = ('vtz008', 0.002415786650190971) + +[fips5002318550] +centroid = (0.77315583061201443, -1.2710852984096541) +description = Duxbury town, VT +station = ('kmpv', 0.0036904544585666462) +zone = ('vtz017', 0.0025207806839499876) + +[fips5002321925] +centroid = (0.77311319221838815, -1.2654845019334195) +description = East Montpelier town, VT +station = ('kmpv', 0.0018364349379787327) +zone = ('vtz008', 0.0014062197900478375) + +[fips5002325825] +centroid = (0.77179169872194819, -1.2716516053920488) +description = Fayston town, VT +station = ('kmpv', 0.0036902870105937294) +zone = ('vtz018', 0.0033170814110409829) + +[fips5002343600] +centroid = (0.77343642719585748, -1.2629140333709599) +description = Marshfield town, VT +station = ('kmpv', 0.0032711607821502542) +zone = ('vtz007', 0.0041435181204272191) + +[fips5002344500] +centroid = (0.77351245373807431, -1.267666652190603) +description = Middlesex town, VT +station = ('kmpv', 0.0022314786505877463) +zone = ('vtz008', 0.00082385698578443702) + +[fips5002346000] +centroid = (0.77259528321615145, -1.2666120369900853) +description = Montpelier city, VT +station = ('kmpv', 0.0011613434678200893) +zone = ('vtz008', 0.00055550478839306639) + +[fips5002346225] +centroid = (0.77232603127244615, -1.2686430417340462) +description = Moretown town, VT +station = ('kmpv', 0.0017583404871261614) +zone = ('vtz008', 0.00099242937305429857) + +[fips5002350275] +centroid = (0.77052120374625144, -1.2687020862226412) +description = Northfield town, VT +station = ('kmpv', 0.0018080702175749931) +zone = ('vtz008', 0.0023943030142859305) + +[fips5002355825] +centroid = (0.77218687617118464, -1.263584257257018) +description = Plainfield town, VT +station = ('kmpv', 0.002238932691115345) +zone = ('vtz008', 0.0027619781227956487) + +[fips5002360625] +centroid = (0.76907266773355876, -1.2693759927534212) +description = Roxbury town, VT +station = ('kmpv', 0.0031246797377742939) +zone = ('vtz008', 0.0039179682535648184) + +[fips5002375325] +centroid = (0.7710964817210012, -1.2704901585880166) +description = Waitsfield town, VT +station = ('kmpv', 0.0028616670278945812) +zone = ('vtz008', 0.0027616514413857499) + +[fips5002376525] +centroid = (0.76990882007160422, -1.2718917277905382) +description = Warren town, VT +station = ('kmpv', 0.0041404448510039193) +zone = ('vtz018', 0.0016414850080117927) + +[fips5002376975] +centroid = (0.77436977691994646, -1.2698775131139817) +description = Waterbury town, VT +station = ('kmvl', 0.0033827094722025408) +zone = ('vtz017', 0.0023323078318220566) + +[fips5002385525] +centroid = (0.77585499975351613, -1.2637429774991944) +description = Woodbury town, VT +station = ('kmvl', 0.0029597496207363601) +zone = ('vtz006', 0.0039469438102346282) + +[fips5002386125] +centroid = (0.77535745874365003, -1.2670292230411895) +description = Worcester town, VT +station = ('kmvl', 0.0019141967090137346) +zone = ('vtz008', 0.0026520174477702293) + +[fips50025] +centroid = (0.75047662088587208, -1.2691394657331909) +description = Windham County, VT +station = ('kvsf', 0.0066300326517773518) +zone = ('vtz014', 0.00089911301320830207) + +[fips5002501900] +centroid = (0.75253553344457225, -1.2670908680703699) +description = Athens town, VT +station = ('kvsf', 0.004197231966522331) +zone = ('vtz015', 0.0026621946413505643) + +[fips5002507900] +centroid = (0.74804803013830701, -1.2676827092197211) +description = Brattleboro town, VT +station = ('keen', 0.0047352752299555873) +zone = ('vtz015', 0.0021045429328112571) + +[fips5002509475] +centroid = (0.75093656750365012, -1.2673059624473857) +description = Brookline town, VT +station = ('kvsf', 0.005790230558347125) +zone = ('vtz015', 0.0012173863499108045) + +[fips5002517875] +centroid = (0.7498892652326985, -1.2714218677026088) +description = Dover town, VT +station = ('kaqw', 0.0061806032696191514) +zone = ('vtz014', 0.00099492066003670112) + +[fips5002518325] +centroid = (0.74913805806934763, -1.2671011306063718) +description = Dummerston town, VT +station = ('keen', 0.00427319275357108) +zone = ('vtz015', 0.00094654446300486341) + +[fips5002528900] +centroid = (0.75366565158853105, -1.2673993899222451) +description = Grafton town, VT +station = ('kvsf', 0.0031978092180680495) +zone = ('vtz015', 0.0038145105552179763) + +[fips5002530925] +centroid = (0.74654619177025849, -1.2674355007844689) +description = Guilford town, VT +station = ('kore', 0.0056244714723455366) +zone = ('vtz015', 0.0034653906755362338) + +[fips5002531150] +centroid = (0.7467216148133764, -1.2696955450861687) +description = Halifax town, VT +station = ('kaqw', 0.0055606819919915632) +zone = ('maz002', 0.0029634810411196242) + +[fips5002536175] +centroid = (0.75229085573673515, -1.2709532991583261) +description = Jamaica town, VT +station = ('kvsf', 0.0057859501526040099) +zone = ('vtz014', 0.0018240255898811953) + +[fips5002540225] +centroid = (0.75406522726748271, -1.2705188867075046) +description = Londonderry town, VT +station = ('kvsf', 0.0043552070334729465) +zone = ('vtz014', 0.0035491889845083563) + +[fips5002543375] +centroid = (0.74841051757065369, -1.2694850409250857) +description = Marlboro town, VT +station = ('kaqw', 0.0063529772989003768) +zone = ('vtz014', 0.0022040535235895086) + +[fips5002548400] +centroid = (0.75001604594956339, -1.2689248600483656) +description = Newfane town, VT +station = ('kvsf', 0.0070029766012459473) +zone = ('vtz014', 0.001168536875872001) + +[fips5002557700] +centroid = (0.75040766292712591, -1.2658843394117589) +description = Putney town, VT +station = ('keen', 0.0037501273488025088) +zone = ('vtz015', 0.00060476370290777942) + +[fips5002560250] +centroid = (0.75347958203697596, -1.2654771191906835) +description = Rockingham town, VT +station = ('kvsf', 0.0031233240151858979) +zone = ('vtz015', 0.0036160661984525619) + +[fips5002565762] +centroid = (0.75034053756409413, -1.2735960941649884) +description = Somerset town, VT +station = ('kddh', 0.0040250035146872252) +zone = ('vtz013', 0.0017282870517359623) + +[fips5002570750] +centroid = (0.75160715790885146, -1.2726763929156499) +description = Stratton town, VT +station = ('kddh', 0.0052727328483209521) +zone = ('vtz014', 0.0020087354315611633) + +[fips5002573300] +centroid = (0.75173130317854575, -1.2685435056068048) +description = Townshend town, VT +station = ('kvsf', 0.0053046971329678855) +zone = ('vtz014', 0.0018028409339000239) + +[fips5002574800] +centroid = (0.74637492261076022, -1.2657491811144843) +description = Vernon town, VT +station = ('keen', 0.0040386709819052952) +zone = ('vtz015', 0.0035795279894153156) + +[fips5002576225] +centroid = (0.75084305276232832, -1.2708358384996667) +description = Wardsboro town, VT +station = ('kvsf', 0.0068860273977897927) +zone = ('vtz014', 0.00047229491277490585) + +[fips5002581400] +centroid = (0.75179457136393057, -1.2655040147144567) +description = Westminster town, VT +station = ('keen', 0.0043345979303259473) +zone = ('vtz015', 0.0019771331455064093) + +[fips5002583950] +centroid = (0.74666084244882203, -1.2718117044443344) +description = Whitingham town, VT +station = ('kaqw', 0.0040608126125767164) +zone = ('maz002', 0.0030256906136950008) + +[fips5002584700] +centroid = (0.74841498561353881, -1.2717442998286224) +description = Wilmington town, VT +station = ('kaqw', 0.0049852510152350081) +zone = ('vtz014', 0.0023318222372293901) + +[fips5002584850] +centroid = (0.75352707244592276, -1.2688792371417186) +description = Windham town, VT +station = ('kvsf', 0.0038676444462005517) +zone = ('vtz014', 0.0031995948573311952) + +[fips50027] +centroid = (0.76075661018011875, -1.2669609457608515) +description = Windsor County, VT +station = ('kvsf', 0.0042631369976118445) +zone = ('vtz012', 0.00016427393449639345) + +[fips5002701300] +centroid = (0.75560223401995896, -1.2692538546123664) +description = Andover town, VT +station = ('kvsf', 0.0028022559206985868) +zone = ('vtz014', 0.0051489948803900339) + +[fips5002702575] +centroid = (0.75669830079021139, -1.2664004158182811) +description = Baltimore town, VT +station = ('kvsf', 0.00055111168319294966) +zone = ('vtz012', 0.00392664021613345) + +[fips5002702725] +centroid = (0.76311434056005278, -1.2677344407787505) +description = Barnard town, VT +station = ('krut', 0.005170813913138176) +zone = ('vtz012', 0.0025827781649971188) + +[fips5002705800] +centroid = (0.76557422506110617, -1.2687688799731149) +description = Bethel town, VT +station = ('kmpv', 0.0060788287192652052) +zone = ('vtz010', 0.004699760264285628) + +[fips5002708275] +centroid = (0.76166936501903415, -1.2686767789484872) +description = Bridgewater town, VT +station = ('krut', 0.0037832243101317206) +zone = ('vtz012', 0.0016906262098143185) + +[fips5002712250] +centroid = (0.7574406940408398, -1.2671028759356238) +description = Cavendish town, VT +station = ('kvsf', 0.0013470807171020542) +zone = ('vtz012', 0.0031753602621867908) + +[fips5002713675] +centroid = (0.75546749460170504, -1.2676178527847173) +description = Chester town, VT +station = ('kvsf', 0.0018230180718894376) +zone = ('vtz012', 0.0051731739251565908) + +[fips5002732275] +centroid = (0.76209262481593532, -1.2633763885431055) +description = Hartford town, VT +station = ('kleb', 0.0012177091551686366) +zone = ('vtz012', 0.0029223216212859553) + +[fips5002732425] +centroid = (0.76062406987672226, -1.2642967355642674) +description = Hartland town, VT +station = ('kleb', 0.0019820732202530155) +zone = ('vtz012', 0.0018539777953619073) + +[fips5002741275] +centroid = (0.75739062054459994, -1.2689207585246236) +description = Ludlow town, VT +station = ('kvsf', 0.0025022897611127102) +zone = ('vtz012', 0.003551759653447061) + +[fips5002752900] +centroid = (0.76406374731326021, -1.2622916489596985) +description = Norwich town, VT +station = ('kleb', 0.0025365320139797932) +zone = ('vtz010', 0.0040341439092993576) + +[fips5002756050] +centroid = (0.7593353362103421, -1.2689282285338221) +description = Plymouth town, VT +station = ('krut', 0.003144948142652071) +zone = ('vtz012', 0.001970681244480087) + +[fips5002756350] +centroid = (0.76270083715367032, -1.2655700056134747) +description = Pomfret town, VT +station = ('kleb', 0.0029132335344430127) +zone = ('vtz012', 0.0022876891025363586) + +[fips5002758375] +centroid = (0.75915701592066598, -1.2671084958958152) +description = Reading town, VT +station = ('kvsf', 0.002766261530228561) +zone = ('vtz012', 0.0014654605154755945) + +[fips5002760100] +centroid = (0.76571001167691133, -1.2711555828186321) +description = Rochester town, VT +station = ('krut', 0.0060951287977471739) +zone = ('vtz018', 0.0034916385665548994) + +[fips5002760850] +centroid = (0.76495089817204887, -1.2663829101658837) +description = Royalton town, VT +station = ('kleb', 0.0047135578577322829) +zone = ('vtz010', 0.0038425835688385306) + +[fips5002763775] +centroid = (0.76423726794749347, -1.2642325947142565) +description = Sharon town, VT +station = ('kleb', 0.0031867714588135372) +zone = ('vtz010', 0.0038753177623826246) + +[fips5002769550] +centroid = (0.75543068560778037, -1.2650811912498685) +description = Springfield town, VT +station = ('kvsf', 0.0012417276088812119) +zone = ('nhz007', 0.0035901598626822424) + +[fips5002770375] +centroid = (0.7635954754749501, -1.2699175160604375) +description = Stockbridge town, VT +station = ('krut', 0.0044843280564823952) +zone = ('vtz019', 0.0034402659525064102) + +[fips5002777500] +centroid = (0.75733515398097162, -1.2649584946034533) +description = Weathersfield town, VT +station = ('kvsf', 0.00089227764522255726) +zone = ('nhz007', 0.0032731305985644558) + +[fips5002782000] +centroid = (0.7561017821584648, -1.2706503623600574) +description = Weston town, VT +station = ('krut', 0.0041416433883015268) +zone = ('vtz019', 0.004451669187178652) + +[fips5002783050] +centroid = (0.75872022982206178, -1.2654098891078966) +description = West Windsor town, VT +station = ('kvsf', 0.0021274390494746532) +zone = ('vtz012', 0.0021620253498842424) + +[fips5002784925] +centroid = (0.75878814058325694, -1.2639856829849769) +description = Windsor town, VT +station = ('kvsf', 0.0025013408244268366) +zone = ('vtz012', 0.0027665290807665694) + +[fips5002785975] +centroid = (0.76086530928593299, -1.2662063177521667) +description = Woodstock town, VT +station = ('kleb', 0.0032101596617611031) +zone = ('vtz012', 0.00053488139747342588) + +[fips5002800] +centroid = (0.77308591272217941, -1.2575386985274974) +description = Barnet CDP, VT +station = ('k1v4', 0.0021754445403647446) +zone = ('vtz007', 0.0030356898600666727) + +[fips5003175] +centroid = (0.77142003085773592, -1.2655032118630007) +description = Barre city, VT +station = ('kmpv', 0.00073432044301123317) +zone = ('vtz008', 0.0018623232740042942) + +[fips5003475] +centroid = (0.78106993883872011, -1.2596330761765984) +description = Barton village, VT +station = ('kefk', 0.0023477077358011779) +zone = ('vtz003', 0.0016107931567959455) + +[fips5004150] +centroid = (0.785565488112837, -1.2476997015753524) +description = Beecher Falls CDP, VT +station = ('cwqh', 0.0074291423283281421) +zone = ('nhz001', 0.0025936305041140313) + +[fips5004225] +centroid = (0.75283267574972434, -1.2646517006275377) +description = Bellows Falls village, VT +station = ('kvsf', 0.0038377347498636289) +zone = ('vtz015', 0.0031710729539618262) + +[fips5004750] +centroid = (0.7482443447725714, -1.2772351056553966) +description = Bennington CDP, VT +station = ('kddh', 0.0009175779142882954) +zone = ('vtz013', 0.0030760022499344026) + +[fips5005125] +centroid = (0.76283768842031918, -1.279480262298577) +description = Benson CDP, VT +station = ('krut', 0.0054572323988060422) +zone = ('vtz011', 0.0030123319327314967) + +[fips5005725] +centroid = (0.76487972364515255, -1.2677752465766621) +description = Bethel CDP, VT +station = ('kleb', 0.0054137474533590951) +zone = ('vtz012', 0.0043201502857500695) + +[fips5007225] +centroid = (0.76786247388351825, -1.2588547465966715) +description = Bradford CDP, VT +station = ('k1p1', 0.0060244361620292878) +zone = ('vtz010', 0.0031417968419601944) + +[fips5007675] +centroid = (0.76463954888678565, -1.2756669622290646) +description = Brandon CDP, VT +station = ('krut', 0.0051536069475390045) +zone = ('vtz011', 0.0039766176317846194) + +[fips5007975] +centroid = (0.74804974056097395, -1.266405581992867) +description = Brattleboro CDP, VT +station = ('keen', 0.0038118350680538316) +zone = ('vtz015', 0.0018746905953140379) + +[fips5008950] +centroid = (0.77034136502012596, -1.2756073417818166) +description = Bristol CDP, VT +station = ('kbtv', 0.0058021280751305044) +zone = ('vtz018', 0.002179679194317552) + +[fips5010675] +centroid = (0.77653173371768436, -1.2782680264133117) +description = Burlington city, VT +station = ('kbtv', 0.0011973976260471759) +zone = ('vtz005', 0.0010589398881787457) + +[fips5011050] +centroid = (0.77504097819038598, -1.262156351036084) +description = Cabot village, VT +station = ('kmpv', 0.0047732512899708469) +zone = ('vtz007', 0.0028537230265134133) + +[fips5011425] +centroid = (0.77906797637351255, -1.2720204981827503) +description = Cambridge village, VT +station = ('kmvl', 0.0037579800132392601) +zone = ('vtz017', 0.0037742975683145055) + +[fips5011725] +centroid = (0.7855162349213457, -1.2483837833756717) +description = Canaan CDP, VT +station = ('cwqh', 0.0072209708017228922) +zone = ('nhz001', 0.0030579734844438174) + +[fips5011875] +centroid = (0.76099093808549145, -1.2774042106066221) +description = Castleton CDP, VT +station = ('krut', 0.0032588095144606625) +zone = ('vtz011', 0.00069156125637864698) + +[fips5012175] +centroid = (0.75724692758728329, -1.2672301104380941) +description = Cavendish CDP, VT +station = ('kvsf', 0.0013152879017076138) +zone = ('vtz012', 0.0033750054007314328) + +[fips5013600] +centroid = (0.75519000470393038, -1.2670443899523893) +description = Chester CDP, VT +station = ('kvsf', 0.0017353539701967327) +zone = ('vtz014', 0.0052640997314391761) + +[fips5015175] +centroid = (0.77554782180516513, -1.2546545419385768) +description = Concord CDP, VT +station = ('k1v4', 0.0016569082525230506) +zone = ('vtz007', 0.0027360676703015907) + +[fips5016075] +centroid = (0.78304081698994965, -1.2613502532677578) +description = Coventry CDP, VT +station = ('kefk', 0.00056079005668560437) +zone = ('vtz003', 0.00070937129895885483) + +[fips5017050] +centroid = (0.77510527612002944, -1.2591087094561291) +description = Danville CDP, VT +station = ('k1v4', 0.0015617414020632234) +zone = ('vtz007', 0.001069593103280052) + +[fips5017425] +centroid = (0.78460515559851207, -1.2590143395034736) +description = Derby Center village, VT +station = ('kefk', 0.0017427929199541673) +zone = ('vtz003', 0.0025666713304854159) + +[fips5017500] +centroid = (0.78536697436371516, -1.2585231514920849) +description = Derby Line village, VT +station = ('kefk', 0.0025546383292210126) +zone = ('vtz003', 0.0033996103389341385) + +[fips5017650] +centroid = (0.75503746292730622, -1.2759817149063692) +description = Dorset CDP, VT +station = ('krut', 0.0051686850743397064) +zone = ('vtz013', 0.0039312293862411949) + +[fips5019075] +centroid = (0.77053389228991331, -1.2644822640637541) +description = East Barre CDP, VT +station = ('kmpv', 0.0017216918015976368) +zone = ('vtz010', 0.0026523695794964937) + +[fips5019600] +centroid = (0.77820105388075445, -1.2556075964299209) +description = East Burke CDP, VT +station = ('kcda', 0.00091115633430099703) +zone = ('vtz007', 0.0029370433763467175) + +[fips5021700] +centroid = (0.767541891806512, -1.2758429263242506) +description = East Middlebury CDP, VT +station = ('kmpv', 0.0077415289771837169) +zone = ('vtz009', 0.0019106318912528262) + +[fips5021850] +centroid = (0.77265136064501794, -1.265132224677197) +description = East Montpelier CDP, VT +station = ('kmpv', 0.0015739423392777258) +zone = ('vtz008', 0.0016030130170009368) + +[fips5024025] +centroid = (0.78379698088837624, -1.2706655641778422) +description = Enosburg Falls village, VT +station = ('cwfq', 0.0025006192631539161) +zone = ('vtz016', 0.0012147826496385415) + +[fips5024400] +centroid = (0.77650822413266007, -1.2760935556048369) +description = Essex Junction village, VT +station = ('kbtv', 0.00060626076733381407) +zone = ('vtz005', 0.000552507972091415) + +[fips5025450] +centroid = (0.7608375934574112, -1.2787835094078881) +description = Fair Haven CDP, VT +station = ('krut', 0.0041644136408574188) +zone = ('vtz011', 0.0016367943950726666) + +[fips5025600] +centroid = (0.76606998583513519, -1.2594441966449474) +description = Fairlee CDP, VT +station = ('kleb', 0.0048527806031793564) +zone = ('vtz010', 0.0033559296108152301) + +[fips5028000] +centroid = (0.78028623364469707, -1.2601160087806251) +description = Glover CDP, VT +station = ('kefk', 0.0030413526259536723) +zone = ('vtz003', 0.002194246488866779) + +[fips5029425] +centroid = (0.77049039868495373, -1.2650389891885554) +description = Graniteville CDP, VT +station = ('kmpv', 0.0014257335747490994) +zone = ('vtz010', 0.00277640177647881) + +[fips5030100] +centroid = (0.77807924735225775, -1.2621415331907344) +description = Greensboro CDP, VT +station = ('kmvl', 0.0038368355826458329) +zone = ('vtz007', 0.0033366419079965304) + +[fips5030325] +centroid = (0.77774292240539844, -1.2612733017010374) +description = Greensboro Bend CDP, VT +station = ('k1v4', 0.0039986621652068127) +zone = ('vtz007', 0.0026429608289923008) + +[fips5030475] +centroid = (0.7717656409562158, -1.2601468836550929) +description = Groton CDP, VT +station = ('k1v4', 0.0041492783902786316) +zone = ('vtz010', 0.0043259789172176146) + +[fips5031750] +centroid = (0.77661821478212079, -1.2629974950157901) +description = Hardwick CDP, VT +station = ('kmvl', 0.0032028139092265982) +zone = ('vtz006', 0.0039332057440384302) + +[fips5032350] +centroid = (0.75996241555729127, -1.263638432277) +description = Hartland CDP, VT +station = ('kleb', 0.0020348663428576596) +zone = ('vtz012', 0.0024200761677029472) + +[fips5033550] +centroid = (0.77370522535395714, -1.2758825452982709) +description = Hinesburg CDP, VT +station = ('kbtv', 0.00245642997193035) +zone = ('vtz005', 0.0026891119003067871) + +[fips5034975] +centroid = (0.77840091153340019, -1.2672549290200574) +description = Hyde Park village, VT +station = ('kmvl', 0.0011522578386277103) +zone = ('vtz006', 0.00042650408765779527) + +[fips5035500] +centroid = (0.78192097883528511, -1.2617084995500223) +description = Irasburg CDP, VT +station = ('kefk', 0.0015729066841347176) +zone = ('vtz003', 0.00075805383843122794) + +[fips5035725] +centroid = (0.78215230477434439, -1.2546394622938397) +description = Island Pond CDP, VT +station = ('kefk', 0.0044151496304985138) +zone = ('vtz004', 0.0026859686140830942) + +[fips5036025] +centroid = (0.74689487364822182, -1.2708812519668036) +description = Jacksonville village, VT +station = ('kaqw', 0.0047825096168350152) +zone = ('maz002', 0.003103350162914317) + +[fips5036475] +centroid = (0.77914911673043774, -1.2710757689119383) +description = Jeffersonville village, VT +station = ('kmvl', 0.0032322264819734893) +zone = ('vtz006', 0.0023941215406919243) + +[fips5036625] +centroid = (0.77671829196143005, -1.2739209522986621) +description = Jericho village, VT +station = ('kbtv', 0.0020856027317505354) +zone = ('vtz017', 0.0015775973230873321) + +[fips5037000] +centroid = (0.77906342106416471, -1.2684830997613934) +description = Johnson village, VT +station = ('kmvl', 0.0019676606612320483) +zone = ('vtz006', 0.00071717297332031093) + +[fips5040450] +centroid = (0.78179363961305948, -1.2641900959469703) +description = Lowell CDP, VT +station = ('kefk', 0.0029287601811448711) +zone = ('vtz003', 0.0024195224374655186) + +[fips5041200] +centroid = (0.75750528867645606, -1.2688405955520794) +description = Ludlow village, VT +station = ('kvsf', 0.0024863611656748036) +zone = ('vtz012', 0.0034232294421339443) + +[fips5041950] +centroid = (0.77728184132360645, -1.2566483886227626) +description = Lyndonville village, VT +station = ('kcda', 0.00062236945836415002) +zone = ('vtz007', 0.0017613175526390494) + +[fips5042700] +centroid = (0.75328422733380029, -1.2752599863540846) +description = Manchester village, VT +station = ('kddh', 0.0053637336510576105) +zone = ('vtz013', 0.0021979536451142687) + +[fips5042925] +centroid = (0.75377976121502643, -1.2747043258801272) +description = Manchester Center CDP, VT +station = ('kddh', 0.0059882814278427099) +zone = ('vtz013', 0.0027680794419187764) + +[fips5043525] +centroid = (0.7741121139624747, -1.2627448062466864) +description = Marshfield village, VT +station = ('kmpv', 0.0038076450547141756) +zone = ('vtz007', 0.0036493570325004028) + +[fips5044275] +centroid = (0.76808282170158271, -1.2768411499366361) +description = Middlebury CDP, VT +station = ('kbtv', 0.0080074843071436703) +zone = ('vtz009', 0.0010536866399464295) + +[fips5045175] +centroid = (0.77900123498291618, -1.2760581254210217) +description = Milton CDP, VT +station = ('kbtv', 0.0029481371624935533) +zone = ('vtz005', 0.0027447311872298309) + +[fips5046000] +centroid = (0.77259528321615145, -1.2666120369900853) +description = Montpelier city, VT +station = ('kmpv', 0.0011613434678200893) +zone = ('vtz008', 0.00055550478839306639) + +[fips5046825] +centroid = (0.77767061341448829, -1.2669331426658672) +description = Morrisville village, VT +station = ('kmvl', 0.00053369272059453088) +zone = ('vtz006', 0.0010605417408380148) + +[fips5048100] +centroid = (0.76935556815201445, -1.257644448026876) +description = Newbury village, VT +station = ('k1v4', 0.0058839347267207326) +zone = ('nhz003', 0.0038496448764424578) + +[fips5048325] +centroid = (0.75027191121790571, -1.2680844840135304) +description = Newfane village, VT +station = ('kvsf', 0.0065717847108353409) +zone = ('vtz014', 0.0016878915955095936) + +[fips5048850] +centroid = (0.78438070625670575, -1.2604676751716093) +description = Newport city, VT +station = ('kefk', 0.0010847627922985369) +zone = ('vtz003', 0.0019933675341177199) + +[fips5049000] +centroid = (0.78453750663670485, -1.2619425132961295) +description = Newport Center CDP, VT +station = ('kefk', 0.0015356317400206808) +zone = ('vtz003', 0.002253737596672566) + +[fips5049075] +centroid = (0.74909885797434783, -1.2783292351101792) +description = North Bennington village, VT +station = ('kddh', 0.00064992152579218347) +zone = ('vtz013', 0.0027778712177255077) + +[fips5050200] +centroid = (0.7705884163757456, -1.2680721619890112) +description = Northfield village, VT +station = ('kmpv', 0.0013947370294626787) +zone = ('vtz008', 0.0021870340167286883) + +[fips5050500] +centroid = (0.76091098455245765, -1.2629152376481436) +description = North Hartland CDP, VT +station = ('kleb', 0.00098575605349057738) +zone = ('vtz012', 0.002870033772178409) + +[fips5051925] +centroid = (0.75624633032711497, -1.2659551997793899) +description = North Springfield CDP, VT +station = ('kvsf', 0.00041598512971761058) +zone = ('nhz007', 0.0039928379320176288) + +[fips5052075] +centroid = (0.78533404000073004, -1.2636794649677143) +description = North Troy village, VT +station = ('kefk', 0.0029524102797030588) +zone = ('vtz003', 0.003527805918179759) + +[fips5052375] +centroid = (0.75263630875558241, -1.2646222220164716) +description = North Westminster village, VT +station = ('kvsf', 0.0040346446008751825) +zone = ('vtz015', 0.0030012134060523757) + +[fips5052825] +centroid = (0.76302332163956132, -1.2619718348275633) +description = Norwich CDP, VT +station = ('kleb', 0.0014797172752163479) +zone = ('vtz012', 0.0042788951417491259) + +[fips5053125] +centroid = (0.74848191899035288, -1.277830542183007) +description = Old Bennington village, VT +station = ('kddh', 0.00045736252109389081) +zone = ('vtz013', 0.0030524177084985476) + +[fips5053575] +centroid = (0.78206057026885956, -1.2601190107469384) +description = Orleans village, VT +station = ('kefk', 0.0012992254316523872) +zone = ('vtz003', 0.00065038007306980887) + +[fips5054850] +centroid = (0.75695732510449987, -1.2656316331893624) +description = Perkinsville village, VT +station = ('kvsf', 0.00035748442059294603) +zone = ('nhz007', 0.0037218189355157204) + +[fips5055525] +centroid = (0.76282945046624973, -1.2746483008111382) +description = Pittsford CDP, VT +station = ('krut', 0.0032015865772337055) +zone = ('vtz011', 0.0025173990354049529) + +[fips5055750] +centroid = (0.77276800099892873, -1.2640976982163699) +description = Plainfield CDP, VT +station = ('kmpv', 0.0021921088139550656) +zone = ('vtz008', 0.0023428772208514727) + +[fips5056800] +centroid = (0.75953008004827971, -1.2782083012463084) +description = Poultney village, VT +station = ('krut', 0.0036285781506737273) +zone = ('vtz011', 0.0016959989795486002) + +[fips5057400] +centroid = (0.75728068225501688, -1.2679093053165078) +description = Proctorsville CDP, VT +station = ('kvsf', 0.0017746727520601268) +zone = ('vtz012', 0.0034168840072030227) + +[fips5057625] +centroid = (0.74999210003222594, -1.2658465530334531) +description = Putney CDP, VT +station = ('keen', 0.0035601116673754036) +zone = ('vtz015', 0.00039705921511994411) + +[fips5057775] +centroid = (0.76174039991959031, -1.2639495546694606) +description = Quechee CDP, VT +station = ('kleb', 0.0015153813359940315) +zone = ('vtz012', 0.0023882394099100208) + +[fips5058000] +centroid = (0.76667186262768539, -1.2683767219434843) +description = Randolph CDP, VT +station = ('kmpv', 0.0049455695474879728) +zone = ('vtz010', 0.0039598065663140163) + +[fips5058525] +centroid = (0.746399619019676, -1.273253765285502) +description = Readsboro CDP, VT +station = ('kaqw', 0.0029795314920927993) +zone = ('maz002', 0.0033163333277467229) + +[fips5059050] +centroid = (0.7853594345413466, -1.2682025904440128) +description = Richford CDP, VT +station = ('cwfq', 0.0022942978054976259) +zone = ('vtz016', 0.0024242446148697878) + +[fips5059200] +centroid = (0.77507492484433727, -1.2740331769695652) +description = Richmond CDP, VT +station = ('kbtv', 0.0021629520150017205) +zone = ('vtz017', 0.00088843190415514243) + +[fips5060025] +centroid = (0.76568269727411764, -1.2706624051318962) +description = Rochester CDP, VT +station = ('krut', 0.0061659307933868415) +zone = ('vtz018', 0.0037005504675914238) + +[fips5061225] +centroid = (0.76113232720819557, -1.2737026814224077) +description = Rutland city, VT +station = ('krut', 0.0013778837528096411) +zone = ('vtz019', 0.0014786655152342215) + +[fips5061675] +centroid = (0.78210888098255471, -1.2755644939486801) +description = St. Albans city, VT +station = ('kfso', 0.0020764654224942718) +zone = ('vtz002', 0.00093886321772070948) + +[fips5062125] +centroid = (0.77542285623072238, -1.2568248239568467) +description = St. Johnsbury CDP, VT +station = ('k1v4', 0.00021856370153398123) +zone = ('vtz007', 0.0013031818516980682) + +[fips5062950] +centroid = (0.75292399137618859, -1.2655581024679761) +description = Saxtons River village, VT +station = ('kvsf', 0.003676911258249942) +zone = ('vtz015', 0.0030593534999419493) + +[fips5064225] +centroid = (0.77450530173636378, -1.2780434548984576) +description = Shelburne CDP, VT +station = ('kbtv', 0.0018492443877842896) +zone = ('vtz005', 0.0020063535450661456) + +[fips5066025] +centroid = (0.77079743700696457, -1.2654492811891143) +description = South Barre CDP, VT +station = ('kmpv', 0.0010023847177673536) +zone = ('vtz008', 0.0023614176891224303) + +[fips5066175] +centroid = (0.77556311088941254, -1.2772776567825601) +description = South Burlington city, VT +station = ('kbtv', 0.00066520480549029791) +zone = ('vtz005', 0.00081640083903479304) + +[fips5068050] +centroid = (0.76458069638440829, -1.2655820658386059) +description = South Royalton CDP, VT +station = ('kleb', 0.0040495657937234695) +zone = ('vtz010', 0.0038591107793529314) + +[fips5068200] +centroid = (0.74945499240821722, -1.2774870439329218) +description = South Shaftsbury CDP, VT +station = ('kddh', 0.0012249384722635417) +zone = ('vtz013', 0.0021045925172573335) + +[fips5069475] +centroid = (0.75545068708100827, -1.2649059950995534) +description = Springfield CDP, VT +station = ('kvsf', 0.0012720468425314875) +zone = ('nhz007', 0.0034647724838636177) + +[fips5070450] +centroid = (0.77609976472781583, -1.2685710992622787) +description = Stowe CDP, VT +station = ('kmvl', 0.0014242244271664168) +zone = ('vtz006', 0.002473386146646024) + +[fips5071650] +centroid = (0.78406253273406712, -1.2761573124824124) +description = Swanton village, VT +station = ('kfso', 0.00025461386631470589) +zone = ('vtz002', 0.0016306955567010604) + +[fips5073450] +centroid = (0.78384651333254773, -1.2636470192969198) +description = Troy CDP, VT +station = ('kefk', 0.0021904431556377273) +zone = ('vtz003', 0.0024238233918574838) + +[fips5074650] +centroid = (0.77087108990139863, -1.2785464587888824) +description = Vergennes city, VT +station = ('kbtv', 0.0053818109432031379) +zone = ('vtz009', 0.0025587626439791812) + +[fips5075250] +centroid = (0.77124411912242752, -1.2710313153758901) +description = Waitsfield CDP, VT +station = ('kmpv', 0.0032349716051544063) +zone = ('vtz008', 0.0030089989434209309) + +[fips5075850] +centroid = (0.75873825907323489, -1.2734903097590249) +description = Wallingford CDP, VT +station = ('krut', 0.0010799990759676431) +zone = ('vtz019', 0.0020815059894620375) + +[fips5076900] +centroid = (0.77392731850127339, -1.2696390836848668) +description = Waterbury village, VT +station = ('kmpv', 0.0033427311279761031) +zone = ('vtz008', 0.00202595393401807) + +[fips5077800] +centroid = (0.77069545741877055, -1.2649763667749938) +description = Websterville CDP, VT +station = ('kmpv', 0.0013359682385218777) +zone = ('vtz008', 0.0026506529620865123) + +[fips5077875] +centroid = (0.7577989577763965, -1.2777952516255315) +description = Wells CDP, VT +station = ('krut', 0.0038779218264707719) +zone = ('vtz011', 0.003054335102582914) + +[fips5078025] +centroid = (0.77066133623189403, -1.2577877046518795) +description = Wells River village, VT +station = ('k1v4', 0.0045971252902887077) +zone = ('vtz007', 0.0054130689908199296) + +[fips5078850] +centroid = (0.74798739740009279, -1.2671153026798978) +description = West Brattleboro CDP, VT +station = ('keen', 0.004334791936838985) +zone = ('vtz015', 0.0020101787493062521) + +[fips5079150] +centroid = (0.77918180674732751, -1.2562758306406321) +description = West Burke village, VT +station = ('kcda', 0.0013438285515819941) +zone = ('vtz007', 0.0034800177750067603) + +[fips5081325] +centroid = (0.75186234249878547, -1.2645663540271153) +description = Westminster village, VT +station = ('keen', 0.0039305484172222878) +zone = ('vtz015', 0.0023486771150581735) + +[fips5082375] +centroid = (0.76090491080666067, -1.2748389082187486) +description = West Rutland CDP, VT +station = ('krut', 0.0016127001142843087) +zone = ('vtz011', 0.0012401172904626312) + +[fips5083575] +centroid = (0.76176481707582577, -1.2622464623853644) +description = White River Junction CDP, VT +station = ('kleb', 0.00034814161849114187) +zone = ('vtz012', 0.0035311819655415196) + +[fips5084025] +centroid = (0.76220444806111065, -1.2620641278384086) +description = Wilder CDP, VT +station = ('kleb', 0.00067346143519243003) +zone = ('vtz012', 0.0038171406108719308) + +[fips5084100] +centroid = (0.76999821583589134, -1.2662478565883641) +description = Williamstown CDP, VT +station = ('kmpv', 0.0014512234274284552) +zone = ('vtz008', 0.0028347573414577876) + +[fips5084625] +centroid = (0.74831588581861064, -1.2718116171778717) +description = Wilmington CDP, VT +station = ('kaqw', 0.0048845806034301577) +zone = ('vtz014', 0.0024425085747231904) + +[fips5085000] +centroid = (0.75886003069514663, -1.2634597629214734) +description = Windsor CDP, VT +station = ('kvsf', 0.0027656019704750752) +zone = ('nhz007', 0.0029715661218620653) + +[fips5085150] +centroid = (0.77659451321087858, -1.2773166648913421) +description = Winooski city, VT +station = ('kbtv', 0.00066571095078798829) +zone = ('vtz005', 0.0004561855818203263) + +[fips5085900] +centroid = (0.76137265904619522, -1.2655906528585257) +description = Woodstock village, VT +station = ('kleb', 0.0026964470264439575) +zone = ('vtz012', 0.0011915091533032112) + +[fips5086050] +centroid = (0.77440316506853712, -1.2662389728624717) +description = Worcester CDP, VT +station = ('kmvl', 0.0029681700296624973) +zone = ('vtz008', 0.0018703473223764581) + +[fips51001] +centroid = (0.65914006792379731, -1.3222231662404078) +description = Accomack County, VA +station = ('kmfv', 0.0020272989330325408) +zone = ('vaz099', 0.0015260633065445851) + +[fips5100148] +centroid = (0.64069682465212285, -1.430662567061918) +description = Abingdon town, VA +station = ('kvji', 0.00098331266413332046) +zone = ('vaz008', 0.00024364061590933614) + +[fips5100180] +centroid = (0.65833053185684487, -1.320651968487885) +description = Accomac town, VA +station = ('kmfv', 0.0018273917125382877) +zone = ('vaz099', 0.00085721230766695484) + +[fips5100191196] +centroid = (0.66269376772036803, -1.3140789887117041) +description = District 1, VA +station = ('kwal', 0.0024965065227439878) +zone = ('mdz024', 0.0044533945035994558) + +[fips5100191346] +centroid = (0.66165234720899557, -1.3244176036155253) +description = District 2, VA +station = ('kmfv', 0.0048138780932165687) +zone = ('vaz099', 0.0041143110766800198) + +[fips5100191496] +centroid = (0.66233978004147864, -1.3187584956889815) +description = District 3, VA +station = ('kwal', 0.0013049877104995061) +zone = ('vaz099', 0.0034220415520347289) + +[fips5100191646] +centroid = (0.65998115954362602, -1.3211609414043515) +description = District 4, VA +station = ('kmfv', 0.0030220312131523704) +zone = ('vaz099', 0.0010860488221361901) + +[fips5100191796] +centroid = (0.65912191649957663, -1.3186157801160459) +description = District 5, VA +station = ('kwal', 0.0031616704863474325) +zone = ('vaz099', 0.001325768794069448) + +[fips5100191946] +centroid = (0.65854093129817282, -1.3216790249395136) +description = District 6, VA +station = ('kmfv', 0.0015280267902600799) +zone = ('vaz099', 0.0012488469644327037) + +[fips5100192096] +centroid = (0.65774911032312799, -1.3241705348066131) +description = District 7, VA +station = ('kmfv', 0.001553702389742527) +zone = ('vaz099', 0.0033674928778208201) + +[fips5100192246] +centroid = (0.65590290104036841, -1.322172446972345) +description = District 8, VA +station = ('kmfv', 0.0012244152908464621) +zone = ('vaz099', 0.0035620093587246941) + +[fips5100192396] +centroid = (0.65592852247378763, -1.3252730418418053) +description = District 9, VA +station = ('kmfv', 0.0025827880736027649) +zone = ('vaz100', 0.0039594156873309734) + +[fips51003] +centroid = (0.66364720618414752, -1.3710173186851207) +description = Albemarle County, VA +station = ('kcho', 0.002377234327842385) +zone = ('vaz037', 3.3309858553342118e-05) + +[fips5100393983] +centroid = (0.66474836931581582, -1.3706026110015546) +description = Jack Jouett district, VA +station = ('kcho', 0.0013584725814844104) +zone = ('vaz037', 0.0011746772009806261) + +[fips5100395311] +centroid = (0.66531314040846867, -1.3696704481013569) +description = Rio district, VA +station = ('kcho', 0.00043347703587580638) +zone = ('vaz037', 0.0020054547888286264) + +[fips5100395319] +centroid = (0.66465609375826284, -1.367493359299004) +description = Rivanna district, VA +station = ('kcho', 0.001621495646815418) +zone = ('vaz037', 0.0029848692932350636) + +[fips5100395567] +centroid = (0.66272989603588439, -1.3728577160214712) +description = Samuel Miller district, VA +station = ('kcho', 0.004026470580141394) +zone = ('vaz037', 0.0016827633071861837) + +[fips5100395607] +centroid = (0.66106853457420356, -1.3706525274181616) +description = Scottsville district, VA +station = ('kcho', 0.0046253636180131879) +zone = ('vaz037', 0.0025790732668612816) + +[fips5100396359] +centroid = (0.66586031858226147, -1.3725747806964304) +description = White Hall district, VA +station = ('kcho', 0.0026635858885278372) +zone = ('vaz037', 0.0025334244218785172) + +[fips5100468] +centroid = (0.64222705952710146, -1.4239766993897183) +description = Adwolf CDP, VA +station = ('kmkj', 0.0037780591349758676) +zone = ('vaz009', 0.0010852428508638962) + +[fips51005] +centroid = (0.65952335968082787, -1.396414704188319) +description = Alleghany County, VA +station = ('khsp', 0.0037201678052903955) +zone = ('vaz019', 2.8063412698105357e-05) + +[fips5100590424] +centroid = (0.65726177948938613, -1.3995160670026503) +description = Boiling Springs district, VA +station = ('klwb', 0.0046809320501286691) +zone = ('vaz018', 0.0031104490196889037) + +[fips5100590877] +centroid = (0.66019417697883187, -1.3930911260536238) +description = Clifton Forge East district, VA +station = ('khsp', 0.0021682616194961834) +zone = ('vaz019', 0.0026857025713848764) + +[fips5100590878] +centroid = (0.65999548869678493, -1.3933059062713742) +description = Clifton Forge West district, VA +station = ('khsp', 0.0023572747195353344) +zone = ('vaz019', 0.0024760501663824244) + +[fips5100591016] +centroid = (0.65982730877006268, -1.3972975615371479) +description = Covington district, VA +station = ('khsp', 0.0040078621981755116) +zone = ('vaz019', 0.00078869706506529613) + +[fips5100593527] +centroid = (0.66141732117192198, -1.3970067547771805) +description = Falling Spring district, VA +station = ('khsp', 0.0030289752271563958) +zone = ('vaz019', 0.0019643390543029899) + +[fips5100594015] +centroid = (0.65911610455316749, -1.3952390329508833) +description = Jackson River district, VA +station = ('khsp', 0.0035619919110467246) +zone = ('vaz019', 0.00098688159437188721) + +[fips5100595635] +centroid = (0.66009530407670647, -1.3912655989225002) +description = Sharon district, VA +station = ('khsp', 0.0027951380354549037) +zone = ('vaz024', 0.0036853856780004754) + +[fips51007] +centroid = (0.65163841590592297, -1.3608893824753079) +description = Amelia County, VA +station = ('kfvx', 0.0063889928522103973) +zone = ('vaz068', 4.0058733743670947e-05) + +[fips5100724] +centroid = (0.64323474282403292, -1.3595129983738927) +description = Alberta town, VA +station = ('kavc', 0.0036590070700051147) +zone = ('vaz079', 0.0016439335575198332) + +[fips5100791199] +centroid = (0.65216702377647462, -1.3638819414640699) +description = District 1, VA +station = ('kfvx', 0.0040147042732609451) +zone = ('vaz061', 0.0028963521147514224) + +[fips5100791349] +centroid = (0.65322423951757758, -1.3609206413222112) +description = District 2, VA +station = ('kfvx', 0.0064962044452274003) +zone = ('vaz068', 0.0015881820692830182) + +[fips5100791499] +centroid = (0.65059619254309453, -1.3613547047071823) +description = District 3, VA +station = ('kfvx', 0.0061523937336339825) +zone = ('vaz068', 0.0010910740482222409) + +[fips5100791649] +centroid = (0.65200805918820282, -1.3607898812546517) +description = District 4, VA +station = ('kfvx', 0.0064638584526906448) +zone = ('vaz068', 0.00039053031079851425) + +[fips5100791799] +centroid = (0.65049136806821972, -1.3578692472843645) +description = District 5, VA +station = ('kptb', 0.00422292702894947) +zone = ('vaz068', 0.0026973188984900881) + +[fips51009] +centroid = (0.65677371561735842, -1.3813905434680089) +description = Amherst County, VA +station = ('klyh', 0.0055224670032370899) +zone = ('vaz035', 0.00044775565790249467) + +[fips5100991200] +centroid = (0.65513900533335556, -1.3787548694046947) +description = District 1, VA +station = ('klyh', 0.0047620657948002545) +zone = ('vaz035', 0.0023705256782147986) + +[fips5100991350] +centroid = (0.65766406042867831, -1.3809588013709431) +description = District 2, VA +station = ('klyh', 0.0064537841165654957) +zone = ('vaz035', 0.0013705995172003274) + +[fips5100991500] +centroid = (0.65611122353988649, -1.3832546249223088) +description = District 3, VA +station = ('klyh', 0.0048717295713649779) +zone = ('vaz035', 0.0015302912570972116) + +[fips5100991650] +centroid = (0.65425482153429526, -1.3805580214148077) +description = District 4, VA +station = ('klyh', 0.00326424935909351) +zone = ('vaz035', 0.0021640833792620708) + +[fips5100991800] +centroid = (0.65335704162036179, -1.3808633667674441) +description = District 5, VA +station = ('klyh', 0.0023540471161017382) +zone = ('vaz035', 0.002994750638553435) + +[fips5101000] +centroid = (0.67750789551849311, -1.3453351478078746) +description = Alexandria city, VA +station = ('kdca', 0.00086227713485823585) +zone = ('vaz054', 0.0007242014012466397) + +[fips51011] +centroid = (0.65224219510735792, -1.3755103895916998) +description = Appomattox County, VA +station = ('klyh', 0.0054802499357809115) +zone = ('vaz046', 3.0358061498958964e-05) + +[fips5101190054] +centroid = (0.65164178439137932, -1.3736930131481833) +description = Appomattox River district, VA +station = ('kfvx', 0.0038021952113293993) +zone = ('vaz046', 0.001589271817934299) + +[fips5101190996] +centroid = (0.651358726893291, -1.3756414638185246) +description = Courthouse district, VA +station = ('klyh', 0.00529634086559527) +zone = ('vaz046', 0.00091347083392855858) + +[fips5101193524] +centroid = (0.65066630241914725, -1.37621719557888) +description = Falling River district, VA +station = ('klyh', 0.0048805553034164898) +zone = ('vaz046', 0.0016921286090216927) + +[fips5101195083] +centroid = (0.65379347865311543, -1.375601495778654) +description = Piney Mountain district, VA +station = ('klyh', 0.0058784768630481378) +zone = ('vaz046', 0.0015265777434103453) + +[fips5101196459] +centroid = (0.65269676611103977, -1.3777069039086272) +description = Wreck Island district, VA +station = ('klyh', 0.0039100274599945467) +zone = ('vaz046', 0.0017815962290654709) + +[fips5101256] +centroid = (0.64467006669428806, -1.4087822992541685) +description = Allisonia CDP, VA +station = ('khlx', 0.0032789556530772174) +zone = ('vaz013', 0.0022457546669203978) + +[fips51013] +centroid = (0.67855498834993466, -1.3456611229522695) +description = Arlington County, VA +station = ('kdca', 0.0010405825343187459) +zone = ('vaz054', 0.00036101595959109139) + +[fips5101390072] +centroid = (0.67855498834993466, -1.3456611229522695) +description = Arlington, VA +station = ('kdca', 0.0010405825343187459) +zone = ('vaz054', 0.00036101595959109139) + +[fips51015] +centroid = (0.66615390041573941, -1.3813701929289306) +description = Augusta County, VA +station = ('kshd', 0.0037972777503611169) +zone = ('vaz025', 0.00025803054742714026) + +[fips5101528] +centroid = (0.64792049808003205, -1.3837583269444345) +description = Altavista town, VA +station = ('klyh', 0.0035720338519433588) +zone = ('vaz045', 0.0030368621185636688) + +[fips5101590272] +centroid = (0.66541808705639105, -1.3793469898067263) +description = Beverley Manor district, VA +station = ('kshd', 0.0030454301605094629) +zone = ('vaz025', 0.0014965376160854019) + +[fips5101594671] +centroid = (0.66682538093885912, -1.3764218005270912) +description = Middle River district, VA +station = ('kshd', 0.0011687019676807798) +zone = ('vaz025', 0.0037230372191514524) + +[fips5101594911] +centroid = (0.66901315115623394, -1.3813626356532696) +description = North River district, VA +station = ('kshd', 0.0035583661184557754) +zone = ('vaz025', 0.0029527399732487509) + +[fips5101594999] +centroid = (0.66632658329193162, -1.3846071154662645) +description = Pastures district, VA +station = ('kshd', 0.0061254532342115411) +zone = ('vaz025', 0.0028005647202080796) + +[fips5101595335] +centroid = (0.66351663810280581, -1.3819536041379947) +description = Riverheads district, VA +station = ('kshd', 0.0058152330888035135) +zone = ('vaz025', 0.0026484876581401679) + +[fips5101595791] +centroid = (0.66288203638678067, -1.3785302629832554) +description = South River district, VA +station = ('kshd', 0.0051285488517100125) +zone = ('vaz036', 0.0036242505004230644) + +[fips5101596271] +centroid = (0.6649665354723151, -1.3772614784302257) +description = Wayne district, VA +station = ('kshd', 0.0029168921893918702) +zone = ('vaz025', 0.0031850354734708096) + +[fips5101640] +centroid = (0.65163356389060245, -1.3611236231142181) +description = Amelia Court House CDP, VA +station = ('kfvx', 0.0062031083349389695) +zone = ('vaz068', 0.00014627217109932646) + +[fips5101672] +centroid = (0.65592778943550178, -1.3797175930200949) +description = Amherst town, VA +station = ('klyh', 0.0050630106813997332) +zone = ('vaz035', 0.001348214470012148) + +[fips51017] +centroid = (0.66442918350221103, -1.3916015922568019) +description = Bath County, VA +station = ('khsp', 0.0024940692373233717) +zone = ('vaz020', 0.00021200109613579552) + +[fips5101790672] +centroid = (0.66347399970917964, -1.3934741909178516) +description = Cedar Creek district, VA +station = ('khsp', 0.0011255080972868911) +zone = ('vaz020', 0.0015674916659572441) + +[fips5101794695] +centroid = (0.66195519674080161, -1.390802248912681) +description = Millboro district, VA +station = ('khsp', 0.0020517241452563647) +zone = ('vaz020', 0.0024116590902015411) + +[fips5101796167] +centroid = (0.66201228646063437, -1.3938753024865449) +description = Valley Springs district, VA +station = ('khsp', 0.0005332918539299571) +zone = ('vaz020', 0.002797285331477343) + +[fips5101796239] +centroid = (0.66521473874524117, -1.3938312154696395) +description = Warm Springs district, VA +station = ('khsp', 0.0028868102676488992) +zone = ('vaz020', 0.0019048215827716232) + +[fips5101796399] +centroid = (0.66469848780579377, -1.3906162142677108) +description = Williamsville district, VA +station = ('khsp', 0.0031871392611665817) +zone = ('vaz020', 0.00099537833864199389) + +[fips51019] +centroid = (0.65122437144747236, -1.3880245225015468) +description = Bedford County, VA +station = ('klyh', 0.0045528195333218811) +zone = ('vaz034', 7.1273171497154199e-05) + +[fips5101912] +centroid = (0.67776023522174655, -1.3473283661735298) +description = Annandale CDP, VA +station = ('kdaa', 0.0020345074126720971) +zone = ('vaz054', 0.0013925720755233783) + +[fips5101990376] +centroid = (0.65129198550269463, -1.3921211767751205) +description = Blue Ridge district, VA +station = ('kroa', 0.0028316292019401469) +zone = ('vaz034', 0.0033101617494685925) + +[fips5101990696] +centroid = (0.65147454694245333, -1.3872023677041023) +description = Center district, VA +station = ('klyh', 0.003901930461023093) +zone = ('vaz034', 0.00063463273361932576) + +[fips5101994071] +centroid = (0.6525329146008626, -1.3841994065529986) +description = Jefferson district, VA +station = ('klyh', 0.0019496634236182903) +zone = ('vaz034', 0.0032433846242986924) + +[fips5101994167] +centroid = (0.64876136280705787, -1.3877898804369089) +description = Lakes district, VA +station = ('klyh', 0.0050529453308606398) +zone = ('vaz034', 0.0025153491597748765) + +[fips5101995023] +centroid = (0.65351038624844204, -1.387625941660269) +description = Peaks district, VA +station = ('klyh', 0.0047746532951980364) +zone = ('vaz034', 0.0022528964177637484) + +[fips5102040] +centroid = (0.64424834278712861, -1.4450461221335762) +description = Appalachia town, VA +station = ('klnp', 0.0038529092133694509) +zone = ('vaz002', 0.0026526846590272301) + +[fips5102064] +centroid = (0.67938625376607453, -1.3631712084860728) +description = Apple Mountain Lake CDP, VA +station = ('kokv', 0.0039596540743604735) +zone = ('vaz030', 0.0014340143796941409) + +[fips5102072] +centroid = (0.65203298248992136, -1.3757810203455141) +description = Appomattox town, VA +station = ('klyh', 0.0052354297653642483) +zone = ('vaz046', 0.00030790559073647143) + +[fips51021] +centroid = (0.64805143268051679, -1.4159132433389194) +description = Bland County, VA +station = ('kblf', 0.0031308595605497214) +zone = ('vaz010', 8.4588268237024156e-05) + +[fips5102112] +centroid = (0.67124026109494894, -1.3505375903356343) +description = Aquia Harbour CDP, VA +station = ('knyg', 0.0013054003030130168) +zone = ('vaz055', 0.0012807189154290858) + +[fips5102191210] +centroid = (0.64707212843722284, -1.4179967650400727) +description = District 1, VA +station = ('kmkj', 0.0033777626430701569) +zone = ('vaz010', 0.0019084365206296354) + +[fips5102191360] +centroid = (0.64764695262636707, -1.4147126662530574) +description = District 2, VA +station = ('kblf', 0.0039042931448639981) +zone = ('vaz010', 0.0011184104738561444) + +[fips5102191510] +centroid = (0.64894875880884462, -1.4128887622781383) +description = District 3, VA +station = ('kpsk', 0.0038401597985540303) +zone = ('vaz010', 0.0026091931364658014) + +[fips5102191660] +centroid = (0.64949790920469219, -1.4161321774402895) +description = District 4, VA +station = ('kblf', 0.0017355508379080856) +zone = ('vaz010', 0.0013920202360436713) + +[fips5102248] +centroid = (0.67964599366535627, -1.3531343610099213) +description = Arcola CDP, VA +station = ('kiad', 0.0010789672240384288) +zone = ('vaz042', 0.0029897266058997681) + +[fips51023] +centroid = (0.65542686248688697, -1.3928655597010959) +description = Botetourt County, VA +station = ('kroa', 0.0046948660272348097) +zone = ('vaz023', 0.00011824779644147158) + +[fips5102390048] +centroid = (0.65313536735206601, -1.3960482024986927) +description = Amsterdam district, VA +station = ('kroa', 0.0018596303808622629) +zone = ('vaz022', 0.0027742310679421435) + +[fips5102390384] +centroid = (0.65209775165846284, -1.3932585380354749) +description = Blue Ridge district, VA +station = ('kroa', 0.0020856262926485306) +zone = ('vaz023', 0.0034041104490841129) + +[fips5102390528] +centroid = (0.65526508791851956, -1.3909975338026865) +description = Buchanan district, VA +station = ('kroa', 0.0054376141590672571) +zone = ('vaz023', 0.0015942856541380679) + +[fips5102393575] +centroid = (0.65673071070458933, -1.3938812191527092) +description = Fincastle district, VA +station = ('kroa', 0.0056168012532780559) +zone = ('vaz023', 0.0014242285726145207) + +[fips5102396159] +centroid = (0.65240485979364382, -1.3939928853182517) +description = Valley district, VA +station = ('kroa', 0.0017394978724674078) +zone = ('vaz022', 0.0031595022610751314) + +[fips51025] +centroid = (0.64166211390152339, -1.3589293428187332) +description = Brunswick County, VA +station = ('kavc', 0.0030106173590807566) +zone = ('vaz079', 2.7197505360489801e-05) + +[fips5102594639] +centroid = (0.63951366595219594, -1.3603570745067421) +description = Meherrin district, VA +station = ('kavc', 0.0017642025963565812) +zone = ('vaz079', 0.0024512036538940816) + +[fips5102595151] +centroid = (0.64001070081657885, -1.3574426888151772) +description = Powellton district, VA +station = ('kemv', 0.0041114709419611843) +zone = ('vaz079', 0.0020247609839757733) + +[fips5102595255] +centroid = (0.64374158643881207, -1.359820857000652) +description = Red Oak district, VA +station = ('kavc', 0.0039420735456217526) +zone = ('vaz079', 0.0022029303837642514) + +[fips5102595983] +centroid = (0.64322699356215396, -1.3571497702068149) +description = Sturgeon district, VA +station = ('kemv', 0.0048403681977168232) +zone = ('vaz079', 0.0020948998437616754) + +[fips5102596103] +centroid = (0.64192270901213877, -1.3598836015872613) +description = Totaro district, VA +station = ('kavc', 0.0025042656613574778) +zone = ('vaz079', 0.00083152512270001329) + +[fips51027] +centroid = (0.65045140002834922, -1.4318358471982786) +description = Buchanan County, VA +station = ('kjfz', 0.0049158843257673182) +zone = ('vaz004', 3.9955001211429929e-05) + +[fips5102793679] +centroid = (0.64974562378542766, -1.4294757431705618) +description = Garden district, VA +station = ('kjfz', 0.0032581461986140761) +zone = ('vaz004', 0.0019696607805721428) + +[fips5102793951] +centroid = (0.64785738697428008, -1.4315989362056127) +description = Hurricane district, VA +station = ('kjfz', 0.0032945518153109231) +zone = ('vaz004', 0.0025723913880667691) + +[fips5102794151] +centroid = (0.65278401512034701, -1.4315133627123875) +description = Knox district, VA +station = ('kjfz', 0.0067007381625512306) +zone = ('vaz004', 0.0023699980457505356) + +[fips5102794903] +centroid = (0.65128678442152366, -1.4313122484226803) +description = North Grundy district, VA +station = ('kjfz', 0.0053232702448751121) +zone = ('vaz004', 0.00094468187421344898) + +[fips5102795167] +centroid = (0.64919268602510338, -1.4338464839498686) +description = Prater district, VA +station = ('kjfz', 0.0054599609570928657) +zone = ('vaz004', 0.0020439308539477361) + +[fips5102795415] +centroid = (0.65153051965156472, -1.4346874883032346) +description = Rock Lick district, VA +station = ('kjfz', 0.0073050138146064751) +zone = ('vaz004', 0.002550438556223068) + +[fips5102795775] +centroid = (0.65005615276594253, -1.4325241526953878) +description = South Grundy district, VA +station = ('kjfz', 0.005038836298454372) +zone = ('vaz004', 0.00068536475631316817) + +[fips51029] +centroid = (0.65578875650728796, -1.3705925579050628) +description = Buckingham County, VA +station = ('kfvx', 0.0041276358860976338) +zone = ('vaz047', 3.0849197116649747e-05) + +[fips5102991212] +centroid = (0.65725638642199746, -1.367001455702622) +description = District 1, VA +station = ('kfvx', 0.0055871883264050851) +zone = ('vaz061', 0.0027696471492932953) + +[fips5102991362] +centroid = (0.655138656267505, -1.3684795750461358) +description = District 2, VA +station = ('kfvx', 0.003276883467899627) +zone = ('vaz047', 0.001780070598479366) + +[fips5102991512] +centroid = (0.65325925082237257, -1.3703566941099483) +description = District 3, VA +station = ('kfvx', 0.0017900236743304937) +zone = ('vaz047', 0.002505864873430999) + +[fips5102991665] +centroid = (0.65525615183274932, -1.3706767874947643) +description = District 4, VA +station = ('kfvx', 0.0036524928836052148) +zone = ('vaz047', 0.00050775836121456897) + +[fips5102991810] +centroid = (0.65604556425342642, -1.3731098113786293) +description = District 5, VA +station = ('kfvx', 0.0053297699753874815) +zone = ('vaz047', 0.0020218738301392815) + +[fips5102991956] +centroid = (0.6574442711159747, -1.3700797278109493) +description = District 6, VA +station = ('kfvx', 0.005639350027423805) +zone = ('vaz047', 0.0017324168203841004) + +[fips5102992106] +centroid = (0.6558802815732625, -1.3679422230760319) +description = District 7, VA +station = ('kfvx', 0.004074389617977436) +zone = ('vaz047', 0.0020975637290063711) + +[fips5103000] +centroid = (0.67855498834993466, -1.3456611229522695) +description = Arlington CDP, VA +station = ('kdca', 0.0010405825343187459) +zone = ('vaz054', 0.00036101595959109139) + +[fips51031] +centroid = (0.64943965011426064, -1.3804756593274059) +description = Campbell County, VA +station = ('klyh', 0.0023592178061288913) +zone = ('vaz045', 0.00026084794342605519) + +[fips5103190032] +centroid = (0.64896017326215261, -1.3842819606266179) +description = Altavista district, VA +station = ('klyh', 0.0028205951239699129) +zone = ('vaz045', 0.0029859810736444993) + +[fips5103190504] +centroid = (0.64803856960392958, -1.3788157115824193) +description = Brookneal district, VA +station = ('klyh', 0.0042813056090945959) +zone = ('vaz045', 0.0021813743532272016) + +[fips5103190968] +centroid = (0.65190600978683877, -1.379979427314479) +description = Concord district, VA +station = ('klyh', 0.0019430740979544008) +zone = ('vaz045', 0.0023010328890308005) + +[fips5103195503] +centroid = (0.65023000501273365, -1.3797767073218596) +description = Rustburg district, VA +station = ('klyh', 0.0022748524978280196) +zone = ('vaz045', 0.00088881289775480626) + +[fips5103195623] +centroid = (0.64953623663506588, -1.3823286579409559) +description = Seneca district, VA +station = ('klyh', 0.0017626023274311385) +zone = ('vaz045', 0.001351556968630736) + +[fips5103196015] +centroid = (0.65100494865391167, -1.3831635536419398) +description = Sunburst district, VA +station = ('klyh', 0.00074647562601764009) +zone = ('vaz045', 0.0024145573134911578) + +[fips5103196087] +centroid = (0.6514753497939092, -1.383398335332918) +description = Timberlake district, VA +station = ('klyh', 0.00089053027330677418) +zone = ('vaz045', 0.0028452396635433963) + +[fips5103208] +centroid = (0.65761833280227611, -1.376973708543157) +description = Arrington CDP, VA +station = ('klyh', 0.0076026172532407416) +zone = ('vaz036', 0.0018994917304014439) + +[fips51033] +centroid = (0.66375428213375731, -1.3500531567484508) +description = Caroline County, VA +station = ('kezf', 0.0043373320970322886) +zone = ('vaz064', 8.6055923085299294e-05) + +[fips5103320] +centroid = (0.68121322952047714, -1.3521063097206192) +description = Ashburn CDP, VA +station = ('kjyo', 0.0016008158618769353) +zone = ('vaz042', 0.0024783610136986291) + +[fips5103368] +centroid = (0.65904212004617546, -1.3521193822367166) +description = Ashland town, VA +station = ('kofp', 0.0011727444662349357) +zone = ('vaz063', 0.00027828458606612701) + +[fips5103390440] +centroid = (0.66297514970237459, -1.3479477486184774) +description = Bowling Green district, VA +station = ('kxsa', 0.0053906738326924969) +zone = ('vaz064', 0.0017494286343307166) + +[fips5103394423] +centroid = (0.66322289918969524, -1.3536426707012725) +description = Madison district, VA +station = ('kezf', 0.0048868276303885311) +zone = ('vaz064', 0.0029337455502796124) + +[fips5103394583] +centroid = (0.66334924357424707, -1.3512376593519018) +description = Mattaponi district, VA +station = ('kezf', 0.0045484983970159182) +zone = ('vaz064', 0.0010595319214817427) + +[fips5103395119] +centroid = (0.66560539579171518, -1.3493484626096655) +description = Port Royal district, VA +station = ('kezf', 0.002958830010765928) +zone = ('vaz064', 0.0019670661120929829) + +[fips5103395271] +centroid = (0.66096896354037715, -1.350573526664933) +description = Reedy Church district, VA +station = ('kofp', 0.0030622868248295441) +zone = ('vaz063', 0.0024446100980466488) + +[fips51035] +centroid = (0.64110177594517059, -1.4089701490415607) +description = Carroll County, VA +station = ('khlx', 0.0013759250258744025) +zone = ('vaz016', 0.00013018392471820215) + +[fips5103512] +centroid = (0.64345020372019168, -1.4206731576348359) +description = Atkins CDP, VA +station = ('kmkj', 0.00088992600574298202) +zone = ('vaz009', 0.0019746564062657706) + +[fips5103528] +centroid = (0.66153853428847298, -1.3178347103691932) +description = Atlantic CDP, VA +station = ('kwal', 0.00075654060945896766) +zone = ('vaz099', 0.0030862477332979149) + +[fips5103593551] +centroid = (0.63895172229293129, -1.4085026626014139) +description = Fancy Gap district, VA +station = ('khlx', 0.0031872652669359745) +zone = ('vaz016', 0.0021730816836630787) + +[fips5103594175] +centroid = (0.64113525136022387, -1.4065934818392425) +description = Laurel Fork district, VA +station = ('khlx', 0.0031938681961184738) +zone = ('vaz016', 0.0020312056992004674) + +[fips5103595071] +centroid = (0.64292595917277007, -1.4084082053822962) +description = Pine Creek district, VA +station = ('khlx', 0.0020869666971911481) +zone = ('vaz016', 0.001946492559310935) + +[fips5103595087] +centroid = (0.64005080848278972, -1.4101839208165676) +description = Piper Gap district, VA +station = ('khlx', 0.0016700494013113809) +zone = ('vaz016', 0.0013229708401291812) + +[fips5103596007] +centroid = (0.6416198769336251, -1.4117932889198317) +description = Sulphur Springs district, VA +station = ('khlx', 0.0010255873704714939) +zone = ('vaz016', 0.0022074068598018997) + +[fips51036] +centroid = (0.65207329959564231, -1.3448489863447315) +description = Charles City County, VA +station = ('kric', 0.0045397651138959312) +zone = ('vaz083', 0.0026369103828030359) + +[fips5103608] +centroid = (0.66502507381542697, -1.384678970671569) +description = Augusta Springs CDP, VA +station = ('kshd', 0.0066306648950961436) +zone = ('vaz025', 0.0030324506991549569) + +[fips5103691215] +centroid = (0.65245516018268634, -1.3472886075731692) +description = District 1, VA +station = ('kric', 0.0028878417611446225) +zone = ('vaz081', 0.0033988332528995138) + +[fips5103691365] +centroid = (0.65246219385957183, -1.3459963483417001) +description = District 2, VA +station = ('kric', 0.0035844194098379432) +zone = ('vaz083', 0.0027231565285731774) + +[fips5103691515] +centroid = (0.65152620868831224, -1.3434301209293229) +description = District 3, VA +station = ('kjgg', 0.0039035387003514476) +zone = ('vaz082', 0.0018663882170910455) + +[fips51037] +centroid = (0.64601775758280044, -1.372900843107288) +description = Charlotte County, VA +station = ('kfvx', 0.0066656563113810241) +zone = ('vaz059', 4.3545287833578312e-05) + +[fips5103790128] +centroid = (0.64309335370132892, -1.3720919004522814) +description = Bacon district, VA +station = ('khnz', 0.008547720431489679) +zone = ('vaz059', 0.0029531483301656575) + +[fips5103790712] +centroid = (0.64502398456000742, -1.3710918616974734) +description = Central district, VA +station = ('kfvx', 0.0070716407384885565) +zone = ('vaz059', 0.0017315383971188867) + +[fips5103794431] +centroid = (0.64840142355541908, -1.3734062555520805) +description = Madison district, VA +station = ('kfvx', 0.0049856483045201934) +zone = ('vaz059', 0.0024600053117933463) + +[fips5103794687] +centroid = (0.64768128325275376, -1.3756566656363096) +description = Midway district, VA +station = ('klyh', 0.0064096457831200587) +zone = ('vaz059', 0.0027819624591199302) + +[fips5103795351] +centroid = (0.64585315558104484, -1.3742607338472719) +description = Roanoke district, VA +station = ('kfvx', 0.0073781351905456141) +zone = ('vaz059', 0.0010902373546037563) + +[fips5103796223] +centroid = (0.64680542467422553, -1.3706861599128473) +description = Walton district, VA +station = ('kfvx', 0.0052664194950420087) +zone = ('vaz059', 0.0019557470941873566) + +[fips5104088] +centroid = (0.67803023765702997, -1.346206852502783) +description = Bailey's Crossroads CDP, VA +station = ('kdca', 0.0013410847759250193) +zone = ('vaz054', 0.00047867562522005744) + +[fips51041] +centroid = (0.65237674253939415, -1.3541284830985649) +description = Chesterfield County, VA +station = ('kfci', 0.0011171030512743703) +zone = ('vaz070', 4.6893113804922659e-05) + +[fips5104190248] +centroid = (0.65184401569180794, -1.3508194261032465) +description = Bermuda district, VA +station = ('kfci', 0.0018208746250911114) +zone = ('vaz070', 0.0026450208974763008) + +[fips5104190896] +centroid = (0.65376447128094739, -1.3544271089335813) +description = Clover Hill district, VA +station = ('kfci', 0.0016378866497842805) +zone = ('vaz070', 0.0014468447512222479) + +[fips5104191088] +centroid = (0.65280263778346581, -1.3530005640694636) +description = Dale district, VA +station = ('kfci', 0.000163275251232802) +zone = ('vaz070', 0.0009783175407789735) + +[fips5104194575] +centroid = (0.65180643875301247, -1.3554217197144152) +description = Matoaca district, VA +station = ('kfci', 0.0022850809678426997) +zone = ('vaz070', 0.0011884671239578092) + +[fips5104194679] +centroid = (0.65474192547523424, -1.3549503411900365) +description = Midlothian district, VA +station = ('kfci', 0.0026184449825619027) +zone = ('vaz070', 0.002494826348347873) + +[fips51043] +centroid = (0.68270178593291808, -1.3612172600285875) +description = Clarke County, VA +station = ('kokv', 0.002220096506577258) +zone = ('vaz031', 9.0077759788137406e-05) + +[fips5104390256] +centroid = (0.68334541100117607, -1.3610650149579362) +description = Berryville district, VA +station = ('kokv', 0.0022570208195093295) +zone = ('vaz031', 0.00073132156754434447) + +[fips5104390544] +centroid = (0.68315166200091204, -1.3600946991602898) +description = Buckmarsh district, VA +station = ('kokv', 0.0030126652424292645) +zone = ('vaz031', 0.0010657426056884787) + +[fips5104394703] +centroid = (0.68214556695360007, -1.3608242816942084) +description = Millwood district, VA +station = ('kokv', 0.0027017294097415883) +zone = ('vaz031', 0.0006132192026322271) + +[fips5104395495] +centroid = (0.68401680425783318, -1.3617144694258958) +description = Russell district, VA +station = ('kokv', 0.0018946718132327779) +zone = ('vaz031', 0.0014175134814885979) + +[fips5104396367] +centroid = (0.68171171300813926, -1.3625785819385581) +description = White Post district, VA +station = ('kokv', 0.0019196719619810514) +zone = ('vaz031', 0.0013580764998516487) + +[fips51045] +centroid = (0.65402948207457023, -1.4003079228842803) +description = Craig County, VA +station = ('kroa', 0.0045788717559312611) +zone = ('vaz018', 0.00030462166703179095) + +[fips5104591024] +centroid = (0.65509950853238286, -1.3978954764322962) +description = Craig City district, VA +station = ('kroa', 0.0041877335870652973) +zone = ('vaz018', 0.001888116715678681) + +[fips5104591032] +centroid = (0.65340346737846489, -1.3986575046370093) +description = Craig Creek district, VA +station = ('kroa', 0.0031658114148142586) +zone = ('vaz018', 0.0012938800682365369) + +[fips5104594823] +centroid = (0.65436095500610891, -1.3986526526216887) +description = New Castle district, VA +station = ('kroa', 0.0038661891271552467) +zone = ('vaz018', 0.0010612450099567947) + +[fips5104595135] +centroid = (0.65491675510640657, -1.4002216338060616) +description = Potts Mountain district, VA +station = ('kroa', 0.0051079493182755384) +zone = ('vaz018', 0.00077121616823098938) + +[fips5104595703] +centroid = (0.65287082779734118, -1.4015007681615557) +description = Simmonsville district, VA +station = ('kbcb', 0.0036911739182317175) +zone = ('vaz018', 0.0017812374224426568) + +[fips51047] +centroid = (0.67170619419206135, -1.3605971794519389) +description = Culpeper County, VA +station = ('kcjr', 0.0015106133452623676) +zone = ('vaz051', 8.4099334022344058e-06) + +[fips5104790640] +centroid = (0.67249159235545863, -1.3612877713303682) +description = Catalpa district, VA +station = ('kcjr', 0.0018741421868706217) +zone = ('vaz051', 0.00095540232454588111) + +[fips5104790680] +centroid = (0.669889672959878, -1.3620462914232847) +description = Cedar Mountain district, VA +station = ('komh', 0.002351176357664768) +zone = ('vaz051', 0.0021487174233789071) + +[fips5104793447] +centroid = (0.67130056222060519, -1.3612589733977103) +description = East Fairfax district, VA +station = ('kcjr', 0.0021617331643362112) +zone = ('vaz051', 0.00066603899061420805) + +[fips5104794079] +centroid = (0.67392044105418891, -1.3601567281619058) +description = Jefferson district, VA +station = ('kcjr', 0.0017984801555516634) +zone = ('vaz051', 0.0022367518831216469) + +[fips5104795535] +centroid = (0.67204134976832175, -1.3631934788873281) +description = Salem district, VA +station = ('kcjr', 0.0033850210086459184) +zone = ('vaz051', 0.0020667476521777153) + +[fips5104795895] +centroid = (0.67101109936416203, -1.3585209183204741) +description = Stevensburg district, VA +station = ('kcjr', 0.0014360840309125299) +zone = ('vaz051', 0.0017619706478207867) + +[fips5104796303] +centroid = (0.67158182202956407, -1.3614998986476554) +description = West Fairfax district, VA +station = ('kcjr', 0.0022038082818430036) +zone = ('vaz051', 0.00072577534738723888) + +[fips5104856] +centroid = (0.64026368629165542, -1.3661249862588554) +description = Baskerville CDP, VA +station = ('kavc', 0.0030664295185281855) +zone = ('vaz065', 0.0012547225436233586) + +[fips5104872] +centroid = (0.64160827049409941, -1.3960292482230159) +description = Bassett CDP, VA +station = ('kmtv', 0.0022752726175766166) +zone = ('vaz043', 0.0020934217004153046) + +[fips51049] +centroid = (0.65485083402055877, -1.3657696372231494) +description = Cumberland County, VA +station = ('kfvx', 0.0038833320673346983) +zone = ('vaz061', 0.00017943022577321206) + +[fips5104920] +centroid = (0.67749737118310371, -1.3747250263348874) +description = Basye CDP, VA +station = ('klua', 0.0044682730007266861) +zone = ('vaz027', 0.0027518831239728694) + +[fips5104991220] +centroid = (0.65727481709889846, -1.3641819984690728) +description = District 1, VA +station = ('kfvx', 0.0065746453231433416) +zone = ('vaz061', 0.0028126338188663677) + +[fips5104991370] +centroid = (0.65513164004391211, -1.3648862039156675) +description = District 2, VA +station = ('kfvx', 0.004563619153307311) +zone = ('vaz061', 0.00072816642911955644) + +[fips5104991520] +centroid = (0.65401524018787394, -1.3653838670985812) +description = District 3, VA +station = ('kfvx', 0.0035278623406080783) +zone = ('vaz061', 0.00072029454270538488) + +[fips5104991670] +centroid = (0.65291002789234098, -1.3671797410857132) +description = District 4, VA +station = ('kfvx', 0.0017239767699128621) +zone = ('vaz061', 0.0021771586579796376) + +[fips5104991820] +centroid = (0.65175359018326218, -1.3679237749458384) +description = District 5, VA +station = ('kfvx', 0.00080201106817596101) +zone = ('vaz060', 0.0022546014465214038) + +[fips51051] +centroid = (0.64816433802982831, -1.4372648160096546) +description = Dickenson County, VA +station = ('klnp', 0.0037117480702674724) +zone = ('vaz003', 0.00019747604561522235) + +[fips5105190880] +centroid = (0.64798212565592006, -1.4385304938766159) +description = Clintwood district, VA +station = ('klnp', 0.0029449231621564709) +zone = ('vaz003', 0.0009940472985097721) + +[fips5105193495] +centroid = (0.64726416701481959, -1.4359815626771257) +description = Ervinton district, VA +station = ('klnp', 0.0040082356674364921) +zone = ('vaz003', 0.0012543312524115789) + +[fips5105194135] +centroid = (0.64671257315801944, -1.438374915227093) +description = Kenady district, VA +station = ('klnp', 0.0020827139107856686) +zone = ('vaz003', 0.0015271389524273962) + +[fips5105195575] +centroid = (0.64919875977090025, -1.4357762072373361) +description = Sand Lick district, VA +station = ('klnp', 0.0052812352363774779) +zone = ('vaz003', 0.0017204020870857648) + +[fips5105196407] +centroid = (0.64947672090757291, -1.4382964801305083) +description = Willis district, VA +station = ('klnp', 0.0043583270161189989) +zone = ('vaz003', 0.0017114307696017377) + +[fips5105200] +centroid = (0.65894535899244489, -1.3214385709284662) +description = Bayside CDP, VA +station = ('kmfv', 0.0019741013984499395) +zone = ('vaz099', 0.00092642131200884462) + +[fips51053] +centroid = (0.6470546053315327, -1.3549949518057176) +description = Dinwiddie County, VA +station = ('kptb', 0.0025315703202695339) +zone = ('vaz080', 6.1100179598573109e-05) + +[fips5105336] +centroid = (0.67338549763845268, -1.3574845418106398) +description = Bealeton CDP, VA +station = ('khwy', 0.00079406123699916561) +zone = ('vaz502', 0.0008860995057674892) + +[fips5105391222] +centroid = (0.64834998870236282, -1.3567496185692103) +description = District 1, VA +station = ('kptb', 0.0031136334160533244) +zone = ('vaz080', 0.0019119207295760312) + +[fips5105391372] +centroid = (0.64952688167027517, -1.3530876036392605) +description = District 2, VA +station = ('kptb', 0.0005709145829996884) +zone = ('vaz080', 0.0028434201625535237) + +[fips5105391522] +centroid = (0.64795477634654131, -1.3515017451210209) +description = District 3, VA +station = ('kptb', 0.0015210375954580705) +zone = ('vaz081', 0.0029682870660844721) + +[fips5105391672] +centroid = (0.64620372241460045, -1.3532552076073296) +description = District 4, VA +station = ('kptb', 0.0027806710436157726) +zone = ('vaz080', 0.0016135489056969346) + +[fips5105391822] +centroid = (0.64641276049911189, -1.3559399952357949) +description = District 5, VA +station = ('kptb', 0.0035133814257868692) +zone = ('vaz080', 0.0010513671883981572) + +[fips5105544] +centroid = (0.65167375882327583, -1.3878981257571175) +description = Bedford city, VA +station = ('klyh', 0.0044666988639681209) +zone = ('vaz034', 0.00040358332265298262) + +[fips51057] +centroid = (0.66216884249453833, -1.342888981594742) +description = Essex County, VA +station = ('kxsa', 0.001779083959368865) +zone = ('vaz074', 0.0019946787052583341) + +[fips5105790720] +centroid = (0.66145823168958873, -1.3423556962417951) +description = Central district, VA +station = ('kxsa', 0.00095421502302130482) +zone = ('vaz074', 0.001423873021518543) + +[fips5105794879] +centroid = (0.66341926618383706, -1.3442799741019964) +description = North district, VA +station = ('kxsa', 0.0034214526734957207) +zone = ('vaz074', 0.0035622944328076193) + +[fips5105795751] +centroid = (0.65989914652207471, -1.3404903581504337) +description = South district, VA +station = ('kxsa', 0.0012594397859934782) +zone = ('vaz074', 0.0015081343423757388) + +[fips5105796027] +centroid = (0.66180417340062647, -1.3413888187427754) +description = Tappahannock district, VA +station = ('kxsa', 0.0012421665196011376) +zone = ('vaz074', 0.00077044357130631042) + +[fips51059] +centroid = (0.67777667622330029, -1.348722674806363) +description = Fairfax County, VA +station = ('kdaa', 0.0024019188186279964) +zone = ('vaz053', 9.5549224867618642e-05) + +[fips5105912] +centroid = (0.65545234429396604, -1.3233756245987922) +description = Belle Haven town, VA +station = ('kmfv', 0.0018423495401872498) +zone = ('vaz100', 0.0036121344953379546) + +[fips5105928] +centroid = (0.67679419548076769, -1.3449117658379257) +description = Belle Haven CDP, VA +station = ('kdca', 0.0013090956282772515) +zone = ('vaz054', 0.0015081669063646851) + +[fips5105990464] +centroid = (0.67746075417539675, -1.348543796011326) +description = Braddock district, VA +station = ('kdaa', 0.0020604802994639128) +zone = ('vaz053', 0.00044082322538269798) + +[fips5105993391] +centroid = (0.68022631564164449, -1.3485463616453264) +description = Dranesville district, VA +station = ('kiad', 0.0025965317563350875) +zone = ('vaz053', 0.0023697965032871866) + +[fips5105993943] +centroid = (0.67957876358256952, -1.3496349409530877) +description = Hunter Mill district, VA +station = ('kiad', 0.0016522893763124874) +zone = ('vaz053', 0.0018416019188080951) + +[fips5105994207] +centroid = (0.67659062027681505, -1.3464084031248034) +description = Lee district, VA +station = ('kdaa', 0.0010142724560017146) +zone = ('vaz054', 0.0017151162633732777) + +[fips5105994543] +centroid = (0.67778274996909726, -1.346942212076526) +description = Mason district, VA +station = ('kdca', 0.0019336733882727439) +zone = ('vaz054', 0.0011021879229721331) + +[fips5105994783] +centroid = (0.67534424575138086, -1.3467937543703514) +description = Mount Vernon district, VA +station = ('kdaa', 0.0004579510657048913) +zone = ('vaz053', 0.0029547954001104743) + +[fips5105995191] +centroid = (0.67831064225465543, -1.3475744925046458) +description = Providence district, VA +station = ('kdca', 0.0024185708975187231) +zone = ('vaz053', 0.0010362979318225907) + +[fips5105995847] +centroid = (0.67662690567196393, -1.3495671872715256) +description = Springfield district, VA +station = ('kdaa', 0.0021193573582710457) +zone = ('vaz053', 0.0013819483767269197) + +[fips5105995999] +centroid = (0.67839996820577253, -1.3513618918880588) +description = Sully district, VA +station = ('kiad', 0.0011566166961611832) +zone = ('vaz053', 0.0020850155100332647) + +[fips51061] +centroid = (0.67621216308181264, -1.3582428873706314) +description = Fauquier County, VA +station = ('khwy', 0.0031811838503258798) +zone = ('vaz501', 0.0021036560673686243) + +[fips5106190688] +centroid = (0.67363809914109385, -1.3556890867025282) +description = Cedar Run district, VA +station = ('khwy', 0.00067574352447070116) +zone = ('vaz502', 0.00054798822124679911) + +[fips5106190704] +centroid = (0.67589826561584143, -1.3572961858777646) +description = Center district, VA +station = ('khwy', 0.0026306117569635723) +zone = ('vaz502', 0.002390430459115309) + +[fips5106194215] +centroid = (0.67234261105050841, -1.3575167780419242) +description = Lee district, VA +station = ('khwy', 0.001296593653880966) +zone = ('vaz502', 0.0015479056394329107) + +[fips5106194511] +centroid = (0.67771459486180685, -1.3602839452110838) +description = Marshall district, VA +station = ('khwy', 0.0052844843700268736) +zone = ('vaz501', 0.00083682756270447747) + +[fips5106195599] +centroid = (0.67827646870790137, -1.3571827569296775) +description = Scott district, VA +station = ('khef', 0.0041835317978647715) +zone = ('vaz501', 0.0016950708948655002) + +[fips5106216] +centroid = (0.65285857558599225, -1.3515190064273233) +description = Bellwood CDP, VA +station = ('kfci', 0.0010267629072333688) +zone = ('vaz070', 0.0021048269740101297) + +[fips5106275] +centroid = (0.68183362425639105, -1.3526024370137912) +description = Belmont CDP, VA +station = ('kjyo', 0.00097202640715142647) +zone = ('vaz042', 0.0019086482248558412) + +[fips51063] +centroid = (0.64457519059614954, -1.4023774470448325) +description = Floyd County, VA +station = ('kbcb', 0.0050632129818326491) +zone = ('vaz017', 0.000171479733953044) + +[fips5106336] +centroid = (0.67101712075008146, -1.3774624181870079) +description = Belmont Estates CDP, VA +station = ('kshd', 0.0031532485799550614) +zone = ('vaz026', 0.0012912961029362224) + +[fips5106390576] +centroid = (0.64286939305171287, -1.4038965816257682) +description = Burks Fork district, VA +station = ('kpsk', 0.0062537396729925795) +zone = ('vaz017', 0.002000592410392737) + +[fips5106390992] +centroid = (0.64447495633720753, -1.4022021461747622) +description = Court House district, VA +station = ('kbcb', 0.005188667494584698) +zone = ('vaz017', 0.0003276725719385557) + +[fips5106393959] +centroid = (0.64453045780742091, -1.4051740753717654) +description = Indian Valley district, VA +station = ('kpsk', 0.0043046478868940877) +zone = ('vaz017', 0.0020645647542072171) + +[fips5106394303] +centroid = (0.64524297102125505, -1.4010002775452539) +description = Little River district, VA +station = ('kbcb', 0.0047612286670180503) +zone = ('vaz017', 0.0014361338196505905) + +[fips5106394343] +centroid = (0.64677566681047893, -1.3997217366017054) +description = Locust Grove district, VA +station = ('kbcb', 0.0041182029876923295) +zone = ('vaz017', 0.0031768810257112408) + +[fips5106424] +centroid = (0.6491824234891016, -1.4069521993604051) +description = Belspring CDP, VA +station = ('kpsk', 0.0014651552123406081) +zone = ('vaz011', 0.0024287637322824777) + +[fips51065] +centroid = (0.66026863272472203, -1.3663213183464125) +description = Fluvanna County, VA +station = ('klku', 0.00533697923469925) +zone = ('vaz048', 0.00021973932158989159) + +[fips5106512] +centroid = (0.64868202013926235, -1.4051599207515317) +description = Belview CDP, VA +station = ('kbcb', 0.0015599917736145671) +zone = ('vaz014', 0.0017129931205250972) + +[fips5106590952] +centroid = (0.66095952130912383, -1.364463834236685) +description = Columbia district, VA +station = ('klku', 0.0037559563804835197) +zone = ('vaz048', 0.0014557986432472856) + +[fips5106591056] +centroid = (0.66029168852414077, -1.368021077051637) +description = Cunningham district, VA +station = ('kcho', 0.0053434584021143624) +zone = ('vaz048', 0.0014499943286973706) + +[fips5106593607] +centroid = (0.65906943444896915, -1.3662351514412414) +description = Fork Union district, VA +station = ('klku', 0.0060706405829949591) +zone = ('vaz048', 0.0013966183394719528) + +[fips5106594983] +centroid = (0.66217339780388595, -1.3663604835348271) +description = Palmyra district, VA +station = ('kcho', 0.004056633522918773) +zone = ('vaz048', 0.0017124340132020669) + +[fips5106595327] +centroid = (0.66182555368396356, -1.3671491454639257) +description = Rivanna district, VA +station = ('kcho', 0.0040651531844157233) +zone = ('vaz048', 0.0015531364153351704) + +[fips51067] +centroid = (0.64563830555012436, -1.3942381040781571) +description = Franklin County, VA +station = ('kroa', 0.0057761317157862969) +zone = ('vaz033', 4.169907519015971e-05) + +[fips5106712] +centroid = (0.64466908930990696, -1.3366557127041696) +description = Benns Church CDP, VA +station = ('kpvg', 0.0033213079522772188) +zone = ('vaz096', 0.0017089545587172441) + +[fips5106728] +centroid = (0.65358204946752896, -1.3516808508088605) +description = Bensley CDP, VA +station = ('kfci', 0.0012180662998906501) +zone = ('vaz071', 0.0015883234034084004) + +[fips5106790320] +centroid = (0.64660013904760594, -1.3965660765943444) +description = Blackwater district, VA +station = ('kroa', 0.0047511061741521863) +zone = ('vaz033', 0.0021323069513335684) + +[fips5106790392] +centroid = (0.64390014960135578, -1.3971971527452807) +description = Blue Ridge district, VA +station = ('kmtv', 0.0045570617708031768) +zone = ('vaz033', 0.0029648109945793967) + +[fips5106790432] +centroid = (0.64819104156738372, -1.394388865618944) +description = Boone district, VA +station = ('kroa', 0.0032736957273095529) +zone = ('vaz033', 0.0025639366873425338) + +[fips5106793703] +centroid = (0.64779181495428262, -1.3917074639292277) +description = Gills Creek district, VA +station = ('kroa', 0.004723826336968562) +zone = ('vaz033', 0.0029288314667415666) + +[fips5106795431] +centroid = (0.6457388016084542, -1.3942565173017654) +description = Rocky Mount district, VA +station = ('kroa', 0.0056747204228674141) +zone = ('vaz033', 0.00012039693053036887) + +[fips5106795743] +centroid = (0.64333921823305729, -1.3929330341299782) +description = Snow Creek district, VA +station = ('kmtv', 0.0049148928039808894) +zone = ('vaz033', 0.0025023495067041331) + +[fips5106796151] +centroid = (0.64589911010024981, -1.3915378179259337) +description = Union Hall district, VA +station = ('kroa', 0.006329364599303243) +zone = ('vaz033', 0.0021320823097099872) + +[fips51069] +centroid = (0.68423254440667225, -1.3659630197042703) +description = Frederick County, VA +station = ('kokv', 0.0018032870529018929) +zone = ('vaz028', 4.5081896342657782e-05) + +[fips5106968] +centroid = (0.68331472811292593, -1.3610484692366271) +description = Berryville town, VA +station = ('kokv', 0.0022694218829983569) +zone = ('vaz031', 0.00070503491650558356) + +[fips5106990120] +centroid = (0.68313057842354796, -1.3673247430399689) +description = Back Creek district, VA +station = ('kokv', 0.0026033199388706364) +zone = ('vaz028', 0.0015606620184102473) + +[fips5106993663] +centroid = (0.68620979300967155, -1.3659289159706864) +description = Gainesboro district, VA +station = ('kokv', 0.0032831130609060626) +zone = ('vaz028', 0.0019727442509639781) + +[fips5106994967] +centroid = (0.68149991730340975, -1.3650726923462431) +description = Opequon district, VA +station = ('kokv', 0.0019882916925875464) +zone = ('vaz030', 0.0024162343769013502) + +[fips5106995250] +centroid = (0.68363113885301996, -1.3633042200283672) +description = Red Bud district, VA +station = ('kokv', 0.00061839837354433049) +zone = ('vaz031', 0.0018470082498043422) + +[fips5106995647] +centroid = (0.6827960686191108, -1.3638133500244665) +description = Shawnee district, VA +station = ('kokv', 0.00051576936958964352) +zone = ('vaz028', 0.0021696051938684536) + +[fips5106995927] +centroid = (0.68497622920094692, -1.3635387224666651) +description = Stonewall district, VA +station = ('kokv', 0.0017134850586175915) +zone = ('vaz028', 0.0019765751356450507) + +[fips51071] +centroid = (0.65121602877364781, -1.4087805190183316) +description = Giles County, VA +station = ('kpsk', 0.0031523893862683691) +zone = ('vaz011', 0.00019088616792399353) + +[fips5107160] +centroid = (0.64747156448983423, -1.3338688931276326) +description = Bethel Manor CDP, VA +station = ('kphf', 0.0012171558162751457) +zone = ('vaz094', 0.0011791299909901321) + +[fips5107190728] +centroid = (0.65025271174630206, -1.4102061388579457) +description = Central district, VA +station = ('kpsk', 0.0026867349691681382) +zone = ('vaz011', 0.0016578719929152333) + +[fips5107193431] +centroid = (0.65173423448185752, -1.4064289321973644) +description = Eastern district, VA +station = ('kbcb', 0.0031711662846069049) +zone = ('vaz011', 0.0017500843450845883) + +[fips5107196287] +centroid = (0.65136877998978238, -1.41127555445052) +description = Western district, VA +station = ('kpsk', 0.0040900814806449168) +zone = ('vaz011', 0.0021743922863200144) + +[fips51073] +centroid = (0.65281494235469228, -1.3355871174163434) +description = Gloucester County, VA +station = ('kjgg', 0.0039187269536008476) +zone = ('vaz084', 0.0013931397760729898) + +[fips5107390008] +centroid = (0.65206289743330059, -1.3352893467926608) +description = Abingdon district, VA +station = ('kjgg', 0.0035961274210618921) +zone = ('vaz084', 0.00062050267261785019) + +[fips5107393735] +centroid = (0.65042789044332483, -1.3353072887773711) +description = Gloucester Point district, VA +station = ('kphf', 0.0023312769218768264) +zone = ('vaz091', 0.00085764816300933078) + +[fips5107395047] +centroid = (0.65436503907655863, -1.3367278820687394) +description = Petsworth district, VA +station = ('kfyj', 0.0024822185578018035) +zone = ('vaz085', 0.0027617086664175144) + +[fips5107396231] +centroid = (0.65314657236586382, -1.3346797207382315) +description = Ware district, VA +station = ('kjgg', 0.004662572769420636) +zone = ('vaz084', 0.0017711538307573038) + +[fips5107396471] +centroid = (0.65080144326312916, -1.3341279698017987) +description = York district, VA +station = ('kphf', 0.0028286784146833253) +zone = ('vaz084', 0.001122708306410659) + +[fips5107400] +centroid = (0.65511797411586892, -1.3851827076002796) +description = Big Island CDP, VA +station = ('klyh', 0.0044525047588104627) +zone = ('vaz035', 0.0032752572588562352) + +[fips5107480] +centroid = (0.64334969020856925, -1.4447392059846127) +description = Big Stone Gap town, VA +station = ('klnp', 0.0040180912931761315) +zone = ('vaz002', 0.0029422695893039719) + +[fips51075] +centroid = (0.65841090426889914, -1.3598605981477199) +description = Goochland County, VA +station = ('klku', 0.0050432790112930857) +zone = ('vaz062', 4.786803387241019e-05) + +[fips5107591232] +centroid = (0.65961411680193149, -1.3622282769043903) +description = District 1, VA +station = ('klku', 0.0039366119541564938) +zone = ('vaz062', 0.0022215173930014115) + +[fips5107591382] +centroid = (0.65852775406232011, -1.3609195766713673) +description = District 2, VA +station = ('klku', 0.0048674717981741873) +zone = ('vaz062', 0.00082289105118710975) + +[fips5107591532] +centroid = (0.65781885368003767, -1.3588578715858641) +description = District 3, VA +station = ('klku', 0.0057910287313111836) +zone = ('vaz062', 0.00099196825513565411) + +[fips5107591682] +centroid = (0.65748752037483904, -1.3569164022325306) +description = District 4, VA +station = ('kofp', 0.0043419035275354271) +zone = ('vaz062', 0.0025197453255467934) + +[fips5107591832] +centroid = (0.65647297793394732, -1.3562923248518952) +description = District 5, VA +station = ('kfci', 0.0046359081542526751) +zone = ('vaz062', 0.0034286042574996302) + +[fips51077] +centroid = (0.63977317895867503, -1.4176495666919733) +description = Grayson County, VA +station = ('kmkj', 0.0045964900987335803) +zone = ('vaz015', 7.0095987237377228e-06) + +[fips5107784] +centroid = (0.64980814147923416, -1.4037115069118868) +description = Blacksburg town, VA +station = ('kbcb', 0.00029073491543211749) +zone = ('vaz014', 0.00114267480605975) + +[fips5107793479] +centroid = (0.639857164202281, -1.4168098015223762) +description = Elk Creek district, VA +station = ('kmkj', 0.0048183752387515938) +zone = ('vaz015', 0.00067357049690298628) + +[fips5107794959] +centroid = (0.63886532849495759, -1.4134652270767796) +description = Old Town district, VA +station = ('khlx', 0.0036907875850993284) +zone = ('ncz002', 0.0028099190764157042) + +[fips5107795199] +centroid = (0.64086132193412337, -1.414389466182173) +description = Providence district, VA +station = ('khlx', 0.0032143606187511977) +zone = ('vaz015', 0.002825361930391848) + +[fips5107796423] +centroid = (0.63951778492923061, -1.4208980258556629) +description = Wilson Creek district, VA +station = ('kgev', 0.0036368937668834122) +zone = ('vaz015', 0.0026239471358862764) + +[fips5107832] +centroid = (0.64719988653846883, -1.3614058952141432) +description = Blackstone town, VA +station = ('kavc', 0.0069001671212469192) +zone = ('vaz067', 0.0012638835748773943) + +[fips51079] +centroid = (0.66842586531623049, -1.3695627089266311) +description = Greene County, VA +station = ('kcho', 0.0028869147675999016) +zone = ('vaz038', 4.4962692775606312e-05) + +[fips5107944] +centroid = (0.64052305967179424, -1.3854233361442521) +description = Blairs CDP, VA +station = ('kdan', 0.0024007495217138086) +zone = ('vaz044', 0.0019692565762398956) + +[fips5107976] +centroid = (0.64750828621729606, -1.4157371745239782) +description = Bland CDP, VA +station = ('kblf', 0.003690259560780694) +zone = ('vaz010', 0.00063490066350211304) + +[fips5107994719] +centroid = (0.66783604874881153, -1.3703089419016137) +description = Monroe district, VA +station = ('kcho', 0.0024414407004195848) +zone = ('vaz038', 0.00086001924058330518) + +[fips5107995487] +centroid = (0.66726132927942217, -1.3675791596850322) +description = Ruckersville district, VA +station = ('kcho', 0.0021368137125416797) +zone = ('vaz038', 0.0019060362034988136) + +[fips5107995863] +centroid = (0.66911441515943471, -1.369247327930796) +description = Stanardsville district, VA +station = ('kcho', 0.003562309290740041) +zone = ('vaz038', 0.00072248938638578024) + +[fips51081] +centroid = (0.64019069662233707, -1.3536819231561497) +description = Greensville County, VA +station = ('kemv', 0.0010908252310266697) +zone = ('vaz087', 7.0741627088702992e-05) + +[fips5108120] +centroid = (0.6602417372009487, -1.31984255459398) +description = Bloxom town, VA +station = ('kwal', 0.0028028083137769783) +zone = ('vaz099', 0.0011584012940269448) + +[fips5108152] +centroid = (0.64987896694027991, -1.4185073436594511) +description = Bluefield town, VA +station = ('kblf', 0.001531204812578117) +zone = ('vaz010', 0.0026743780381967642) + +[fips5108191234] +centroid = (0.63873865249784789, -1.352504209883489) +description = District 1, VA +station = ('kemv', 0.0015755631314743482) +zone = ('vaz087', 0.001665597127393311) + +[fips5108191384] +centroid = (0.6393350489565468, -1.3553839856959871) +description = District 2, VA +station = ('kemv', 0.0026363397718844866) +zone = ('vaz087', 0.0015914449470611585) + +[fips5108191534] +centroid = (0.64063219510992153, -1.3527675626143225) +description = District 3, VA +station = ('kemv', 0.00047795895443656148) +zone = ('vaz087', 0.00087870097163957755) + +[fips5108191684] +centroid = (0.6424832913145867, -1.353703652505337) +description = District 4, VA +station = ('kemv', 0.0024380689147780734) +zone = ('vaz087', 0.0023613589754036806) + +[fips5108200] +centroid = (0.65240133422855473, -1.3931602759985877) +description = Blue Ridge CDP, VA +station = ('kroa', 0.0022876487513129209) +zone = ('vaz023', 0.0030967588125857095) + +[fips5108264] +centroid = (0.66511033314938695, -1.3617855741396219) +description = Blue Ridge Shores CDP, VA +station = ('klku', 0.0018707318651491583) +zone = ('vaz050', 0.0024183857951301118) + +[fips51083] +centroid = (0.64169579875608684, -1.377756174553411) +description = Halifax County, VA +station = ('kdan', 0.0065223605424700442) +zone = ('vaz058', 4.1813969977010937e-05) + +[fips5108320] +centroid = (0.65710335595318259, -1.3229573389902591) +description = Bobtown CDP, VA +station = ('kmfv', 0.00045904617317648466) +zone = ('vaz099', 0.0029307261861666462) + +[fips5108391236] +centroid = (0.64483351677873724, -1.3790675451401897) +description = District 1, VA +station = ('klyh', 0.0069601028330422811) +zone = ('vaz058', 0.0033127581005967491) + +[fips5108391386] +centroid = (0.64359960390416227, -1.3753968908304426) +description = District 2, VA +station = ('kdan', 0.0091546910705214823) +zone = ('vaz058', 0.002646418063098671) + +[fips5108391536] +centroid = (0.6415957913899476, -1.3801383569961656) +description = District 3, VA +station = ('kdan', 0.0049438235830371298) +zone = ('vaz058', 0.001952199714151935) + +[fips5108391686] +centroid = (0.64179524761686557, -1.3778360059133972) +description = District 4, VA +station = ('kdan', 0.0065223183599769493) +zone = ('vaz058', 0.00013808452229167591) + +[fips5108391836] +centroid = (0.64093966976424532, -1.3749325634362421) +description = District 5, VA +station = ('khnz', 0.0072083206792465521) +zone = ('vaz058', 0.0023500069992078753) + +[fips5108391986] +centroid = (0.63893407701419369, -1.3798818459560001) +description = District 6, VA +station = ('kdan', 0.0038792289334155746) +zone = ('vaz058', 0.0032749759776534871) + +[fips5108392136] +centroid = (0.63885049319631571, -1.3759667233779262) +description = District 7, VA +station = ('ktdf', 0.0059290075268740956) +zone = ('vaz058', 0.0031769885640148751) + +[fips5108392286] +centroid = (0.64072040405031727, -1.3771348373397012) +description = District 8, VA +station = ('kdan', 0.0065160480821434049) +zone = ('vaz058', 0.0010857414838976161) + +[fips5108472] +centroid = (0.65479489621803233, -1.35385729383939) +description = Bon Air CDP, VA +station = ('kfci', 0.0022061038752434988) +zone = ('vaz070', 0.0024587117380981335) + +[fips51085] +centroid = (0.65903922279961713, -1.3524729510365858) +description = Hanover County, VA +station = ('kofp', 0.0013176396129508791) +zone = ('vaz063', 1.7142165270410686e-06) + +[fips5108584] +centroid = (0.6477873469113975, -1.3954038094855639) +description = Boones Mill town, VA +station = ('kroa', 0.0035183152961825426) +zone = ('vaz033', 0.00236400999363621) + +[fips5108590096] +centroid = (0.65905280146119771, -1.3520959424648624) +description = Ashland district, VA +station = ('kofp', 0.0011743671950671811) +zone = ('vaz063', 0.00029715026502528453) + +[fips5108590200] +centroid = (0.66071603042517812, -1.353446181534083) +description = Beaverdam district, VA +station = ('kofp', 0.003143890236980158) +zone = ('vaz063', 0.0018462760009588736) + +[fips5108590824] +centroid = (0.65724547811417255, -1.3509779194526199) +description = Chickahominy district, VA +station = ('kofp', 0.00083822088891452118) +zone = ('vaz071', 0.0021249015335238716) + +[fips5108590920] +centroid = (0.65638953374240949, -1.347996373491438) +description = Cold Harbor district, VA +station = ('kric', 0.0019628379187471194) +zone = ('vaz072', 0.0026498795322623609) + +[fips5108593887] +centroid = (0.65766943604277439, -1.3492088886293834) +description = Henry district, VA +station = ('kofp', 0.0018149661417934636) +zone = ('vaz071', 0.0030034646204513196) + +[fips5108594631] +centroid = (0.65644358658934365, -1.3501924514760524) +description = Mechanicsville district, VA +station = ('kric', 0.0017610672577262482) +zone = ('vaz071', 0.0015511618437148177) + +[fips5108595759] +centroid = (0.65908296075067219, -1.3552393677141668) +description = South Anna district, VA +station = ('kofp', 0.0031780000601918492) +zone = ('vaz063', 0.0021887697435306525) + +[fips5108675] +centroid = (0.65631109864582482, -1.3237224738810409) +description = Boston CDP, VA +station = ('kmfv', 0.0013352198039822503) +zone = ('vaz099', 0.0039199403503419024) + +[fips51087] +centroid = (0.65340800523452003, -1.3491453237380258) +description = Henrico County, VA +station = ('kric', 0.001399756107729504) +zone = ('vaz071', 0.0023901437612318241) + +[fips5108708] +centroid = (0.67204625414351993, -1.3504071793339252) +description = Boswell's Corner CDP, VA +station = ('knyg', 0.0009965396449310715) +zone = ('vaz055', 0.0018948875501493786) + +[fips5108790496] +centroid = (0.6569934351168919, -1.3528854596052946) +description = Brookland district, VA +station = ('kofp', 0.0015008838244127153) +zone = ('vaz063', 0.0020707220893614155) + +[fips5108793511] +centroid = (0.65657403249763779, -1.3514656691653821) +description = Fairfield district, VA +station = ('kofp', 0.0014150957033265306) +zone = ('vaz071', 0.0014553909218464082) + +[fips5108796079] +centroid = (0.65721544099774565, -1.3541253415059114) +description = Three Chopt district, VA +station = ('kofp', 0.002241998744045343) +zone = ('vaz063', 0.0022437154505142286) + +[fips5108796119] +centroid = (0.65612752491510007, -1.3542319636699156) +description = Tuckahoe district, VA +station = ('kofp', 0.0028739906275615122) +zone = ('vaz071', 0.0025772134727487998) + +[fips5108796175] +centroid = (0.65387222790896549, -1.3492526265804385) +description = Varina district, VA +station = ('kric', 0.00092791360253016817) +zone = ('vaz071', 0.00201330803909652) + +[fips5108888] +centroid = (0.66415886690766224, -1.3499713357131173) +description = Bowling Green town, VA +station = ('kezf', 0.0039767169805007092) +zone = ('vaz064', 0.00045902686215290968) + +[fips51089] +centroid = (0.63914992188278785, -1.3959245284678963) +description = Henry County, VA +station = ('kmtv', 0.00055215956627296557) +zone = ('vaz043', 0.0018501045812169446) + +[fips5108984] +centroid = (0.68230496787418471, -1.3624077316580805) +description = Boyce town, VA +station = ('kokv', 0.0015687566259501987) +zone = ('vaz031', 0.00092322284065334784) + +[fips5108990288] +centroid = (0.64112504118409974, -1.3966987041642036) +description = Blackberry district, VA +station = ('kmtv', 0.0017565805019795456) +zone = ('vaz043', 0.0022967769332968681) + +[fips5108990944] +centroid = (0.64082128408108263, -1.3940144750410988) +description = Collinsville district, VA +station = ('kmtv', 0.0024998169625885885) +zone = ('vaz043', 0.00058665118163363922) + +[fips5108993919] +centroid = (0.63923458780480213, -1.3959734151402448) +description = Horsepasture district, VA +station = ('kmtv', 0.00048606967734536095) +zone = ('vaz043', 0.0018344226157333467) + +[fips5108993975] +centroid = (0.64041364498098685, -1.3915730037636542) +description = Iriswood district, VA +station = ('ksif', 0.0047189615314507322) +zone = ('vaz043', 0.002000102768848243) + +[fips5108995263] +centroid = (0.64172998975613349, -1.3942859435529542) +description = Reed Creek district, VA +station = ('kmtv', 0.0029776483736094015) +zone = ('vaz043', 0.0015055454662378704) + +[fips5108995295] +centroid = (0.63855816799989917, -1.3936080576714793) +description = Ridgeway district, VA +station = ('ksif', 0.0025603645568534413) +zone = ('vaz043', 0.0017157708676761041) + +[fips5109016] +centroid = (0.6399434707337921, -1.3681762891820168) +description = Boydton town, VA +station = ('khnz', 0.00565646344340887) +zone = ('vaz065', 0.00046536825821301062) + +[fips5109032] +centroid = (0.63840347946829479, -1.3473753155304085) +description = Boykins town, VA +station = ('kfkn', 0.004698070764363199) +zone = ('vaz092', 0.0028147592271351904) + +[fips5109064] +centroid = (0.6384629602892028, -1.3633429663377616) +description = Bracey CDP, VA +station = ('kavc', 0.0020517689481583715) +zone = ('ncz010', 0.0032239070979565325) + +[fips51091] +centroid = (0.66945021650751846, -1.3887228461885623) +description = Highland County, VA +station = ('khsp', 0.0079776853706826668) +zone = ('vaz504', 0.00075613943615424441) + +[fips5109188] +centroid = (0.68033358357747198, -1.3532025684770896) +description = Brambleton CDP, VA +station = ('kiad', 0.001390338172518392) +zone = ('vaz042', 0.0023796563192428066) + +[fips5109190368] +centroid = (0.66947866537432599, -1.3909317872497637) +description = Blue Grass district, VA +station = ('khsp', 0.0073764736784834549) +zone = ('vaz503', 0.0012569694105756615) + +[fips5109194743] +centroid = (0.66935551494230527, -1.3894605968633804) +description = Monterey district, VA +station = ('khsp', 0.0076432643921278279) +zone = ('vaz503', 0.0014771038639947497) + +[fips5109195935] +centroid = (0.66846375641429123, -1.3875015171378942) +description = Stonewall district, VA +station = ('khsp', 0.0076516595588430776) +zone = ('vaz504', 0.00064554427574760233) + +[fips5109208] +centroid = (0.63826331207606724, -1.3482685226817015) +description = Branchville town, VA +station = ('kemv', 0.0038473772606427022) +zone = ('vaz092', 0.003325757320028125) + +[fips5109248] +centroid = (0.65334641256521719, -1.3552583394431359) +description = Brandermill CDP, VA +station = ('kfci', 0.0020370679079063296) +zone = ('vaz070', 0.0013681576508585986) + +[fips51093] +centroid = (0.64405124275470083, -1.3387996402507343) +description = Isle of Wight County, VA +station = ('ksfq', 0.0041006526191794774) +zone = ('vaz093', 9.4632126920854317e-05) + +[fips5109390616] +centroid = (0.64279858504395948, -1.3408447123484659) +description = Carrsville district, VA +station = ('kfkn', 0.0024954400591662021) +zone = ('vaz093', 0.0021014094015252794) + +[fips5109393839] +centroid = (0.64600037410345057, -1.3381159075162656) +description = Hardy district, VA +station = ('kfaf', 0.0022187377210128008) +zone = ('vaz093', 0.0019417806927561441) + +[fips5109394839] +centroid = (0.64506363844061265, -1.3357592243338825) +description = Newport district, VA +station = ('kphf', 0.0030706718629878752) +zone = ('vaz096', 0.0014104190558940203) + +[fips5109395727] +centroid = (0.64534995970440234, -1.3370647829742519) +description = Smithfield district, VA +station = ('kfaf', 0.0027515161823876214) +zone = ('vaz093', 0.0018541897689783023) + +[fips5109396431] +centroid = (0.64349402893770924, -1.3384869121553618) +description = Windsor district, VA +station = ('ksfq', 0.0034908868716826192) +zone = ('vaz093', 0.00070386958295286467) + +[fips51095] +centroid = (0.65143414257026955, -1.3400344606965202) +description = James City County, VA +station = ('kjgg', 0.0017225944033430684) +zone = ('vaz090', 6.3207450053763049e-05) + +[fips5109590224] +centroid = (0.65026761685811418, -1.3405321587860191) +description = Berkeley district, VA +station = ('kjgg', 0.001304548943294726) +zone = ('vaz090', 0.0012821411554603365) + +[fips5109594063] +centroid = (0.64957257439009242, -1.3398972603640211) +description = Jamestown district, VA +station = ('kjgg', 0.00084601735176277181) +zone = ('vaz090', 0.001896834440846758) + +[fips5109595159] +centroid = (0.65133533948131417, -1.3405192084429691) +description = Powhatan district, VA +station = ('kjgg', 0.0018711732838840357) +zone = ('vaz090', 0.00045828955506799132) + +[fips5109595375] +centroid = (0.64966858495224455, -1.3380091980857984) +description = Roberts district, VA +station = ('kjgg', 0.00079424325212700962) +zone = ('vaz091', 0.0017231131743613206) + +[fips5109595911] +centroid = (0.65257579734058413, -1.3403310270430191) +description = Stonehouse district, VA +station = ('kfyj', 0.0023307006678737379) +zone = ('vaz090', 0.0011442410666564599) + +[fips5109656] +centroid = (0.67000699399219721, -1.3781888940348579) +description = Bridgewater town, VA +station = ('kshd', 0.002303174204926576) +zone = ('vaz026', 0.0024507341452923606) + +[fips51097] +centroid = (0.65835555987831851, -1.3420026859472869) +description = King and Queen County, VA +station = ('kxsa', 0.002256752370245944) +zone = ('vaz073', 7.2568321512405526e-05) + +[fips5109752] +centroid = (0.67039311318261585, -1.364596130193986) +description = Brightwood CDP, VA +station = ('komh', 0.0034375733364739184) +zone = ('vaz039', 0.0012811345544673216) + +[fips5109790552] +centroid = (0.65463209190540617, -1.3388360478189307) +description = Buena Vista district, VA +station = ('kfyj', 0.00079402427596969019) +zone = ('vaz090', 0.0032887393609368071) + +[fips5109794863] +centroid = (0.66158242931916067, -1.3454108078309486) +description = Newtown district, VA +station = ('kxsa', 0.0030055250988010071) +zone = ('vaz072', 0.0034764779615375522) + +[fips5109795527] +centroid = (0.65947600889822133, -1.3442567786762374) +description = St. Stephens Church district, VA +station = ('kxsa', 0.0022401063349925918) +zone = ('vaz072', 0.0016618073090962364) + +[fips5109795631] +centroid = (0.6561404578048573, -1.339123259200639) +description = Shanghai district, VA +station = ('kfyj', 0.0013795580733484264) +zone = ('vaz073', 0.0031765436442957886) + +[fips5109795903] +centroid = (0.65818957906645381, -1.3412732430397081) +description = Stevensville district, VA +station = ('kxsa', 0.0024543638545519008) +zone = ('vaz073', 0.0006354410963626127) + +[fips5109816] +centroid = (0.63908640935130778, -1.4339199972179624) +description = Bristol city, VA +station = ('kvji', 0.0020900460518171781) +zone = ('tnz017', 0.0027429045156586499) + +[fips51099] +centroid = (0.66806280192523049, -1.3467432096352134) +description = King George County, VA +station = ('knyg', 0.0043187808404036134) +zone = ('vaz057', 0.00010611602878394165) + +[fips5109952] +centroid = (0.68091638392129794, -1.3529265795624714) +description = Broadlands CDP, VA +station = ('kjyo', 0.0013904325654159034) +zone = ('vaz042', 0.0020971889069283968) + +[fips5109991080] +centroid = (0.66863533973305489, -1.3448589172681753) +description = Dahlgren district, VA +station = ('knyg', 0.0047170863188863077) +zone = ('vaz057', 0.0015455922310173421) + +[fips5109994031] +centroid = (0.66792209348093479, -1.3484925356911948) +description = James Madison district, VA +station = ('kezf', 0.0025637611593808422) +zone = ('vaz057', 0.0014502724612406493) + +[fips5109994039] +centroid = (0.66904381659119161, -1.3468213305725329) +description = James Monroe district, VA +station = ('knyg', 0.0034285815763932096) +zone = ('vaz057', 0.001064506135699971) + +[fips5109995687] +centroid = (0.66712376242778015, -1.3458766536615983) +description = Shiloh district, VA +station = ('knyg', 0.0054639849818303547) +zone = ('vaz057', 0.0010551246126912174) + +[fips5110040] +centroid = (0.67384518245684299, -1.375343291769114) +description = Broadway town, VA +station = ('klua', 0.0042260463468820585) +zone = ('vaz026', 0.001986927961375637) + +[fips5110072] +centroid = (0.6405873750547304, -1.3619142223587866) +description = Brodnax town, VA +station = ('kavc', 0.00039929199986014712) +zone = ('vaz079', 0.0026488650966986016) + +[fips51101] +centroid = (0.65813329219807704, -1.3454927161327446) +description = King William County, VA +station = ('kxsa', 0.003820500637876824) +zone = ('vaz072', 4.5654025827203996e-05) + +[fips5110190016] +centroid = (0.65826312724113289, -1.3462379542700538) +description = Acquinton district, VA +station = ('kric', 0.0042967244455119555) +zone = ('vaz072', 0.00064560203950094939) + +[fips5110194479] +centroid = (0.65997627262172032, -1.347857707082367) +description = Mangohick district, VA +station = ('kofp', 0.003477043178525362) +zone = ('vaz072', 0.0026705399431669278) + +[fips5110196327] +centroid = (0.65645761903652977, -1.3429046546514249) +description = West Point district, VA +station = ('kfyj', 0.0029353565521903001) +zone = ('vaz073', 0.0019603425195297802) + +[fips5110296] +centroid = (0.64667548491141447, -1.3779648461187795) +description = Brookneal town, VA +station = ('klyh', 0.00577122296833489) +zone = ('vaz045', 0.0036723869204843612) + +[fips51103] +centroid = (0.6580559915655062, -1.3336619145316386) +description = Lancaster County, VA +station = ('kfyj', 0.0058097342684908654) +zone = ('vaz078', 0.00092119078680092021) + +[fips5110391241] +centroid = (0.65836709650467418, -1.3360192609391373) +description = District 1, VA +station = ('kfyj', 0.0046024107858162995) +zone = ('vaz078', 0.0011805720260653527) + +[fips5110391391] +centroid = (0.65941617901146288, -1.3348095732345799) +description = District 2, VA +station = ('kxsa', 0.0056563372976671626) +zone = ('vaz078', 0.00080296387115966878) + +[fips5110391541] +centroid = (0.65652924734903151, -1.3314085897475587) +description = District 3, VA +station = ('kfyj', 0.006849876468545864) +zone = ('vaz086', 0.0028811591905396582) + +[fips5110391691] +centroid = (0.65781546774128874, -1.3334507820520247) +description = District 4, VA +station = ('kfyj', 0.0058252752037553836) +zone = ('vaz078', 0.0012052679287635829) + +[fips5110391841] +centroid = (0.65739220794438769, -1.3341278301754582) +description = District 5, VA +station = ('kfyj', 0.0051499334986415003) +zone = ('vaz085', 0.00090529111024340416) + +[fips51105] +centroid = (0.64057356950034705, -1.4508980365825879) +description = Lee County, VA +station = ('k0vg', 0.0014859462197028554) +zone = ('vaz001', 6.3660920770494081e-05) + +[fips5110591247] +centroid = (0.63942317063048004, -1.4562550629221966) +description = District 1, VA +station = ('k0vg', 0.0030890512494200603) +zone = ('tnz015', 0.0036023365954493407) + +[fips5110591397] +centroid = (0.63973453736903585, -1.4514095227731771) +description = District 2, VA +station = ('k0vg', 0.00081405244177041984) +zone = ('vaz001', 0.00099755670701247735) + +[fips5110591547] +centroid = (0.64093319459272047, -1.4493611170965741) +description = District 3, VA +station = ('k0vg', 0.0027346910959933171) +zone = ('vaz001', 0.0012434509296117009) + +[fips5110591697] +centroid = (0.64147290275731472, -1.4468063564973825) +description = District 4, VA +station = ('k0vg', 0.0048291239397828872) +zone = ('vaz001', 0.0033606409091607638) + +[fips5110591847] +centroid = (0.64252886186135627, -1.4485085412102674) +description = District 5, VA +station = ('k0vg', 0.0042042185981779725) +zone = ('vaz001', 0.0026769250956771365) + +[fips51107] +centroid = (0.68209439389993154, -1.3550536821350472) +description = Loudoun County, VA +station = ('kjyo', 0.00097878873703226049) +zone = ('vaz042', 0.00017241670603206159) + +[fips5110744] +centroid = (0.65486245791337694, -1.3908713639510597) +description = Buchanan town, VA +station = ('kroa', 0.0052245253021307855) +zone = ('vaz023', 0.0017931902845450889) + +[fips5110776] +centroid = (0.67592674938923392, -1.351604632280426) +description = Buckhall CDP, VA +station = ('khef', 0.001045117860863492) +zone = ('vaz052', 0.00067730133329446424) + +[fips5110790400] +centroid = (0.68228664191703869, -1.3568136372461732) +description = Blue Ridge district, VA +station = ('kjyo', 0.0023490404878500223) +zone = ('vaz042', 0.0014089640422783243) + +[fips5110790488] +centroid = (0.68164102717343356, -1.3522212571051557) +description = Broad Run district, VA +station = ('kjyo', 0.0013161824167421546) +zone = ('vaz042', 0.0022436390163340396) + +[fips5110790656] +centroid = (0.68393606532663598, -1.354135865841301) +description = Catoctin district, VA +station = ('kjyo', 0.0018226404071276473) +zone = ('vaz042', 0.0018033799272045084) + +[fips5110793415] +centroid = (0.68000586310382505, -1.3530419981859059) +description = Dulles district, VA +station = ('kiad', 0.0011131258574996071) +zone = ('vaz042', 0.0027199106048708859) + +[fips5110794247] +centroid = (0.68262390934169404, -1.353663073600228) +description = Leesburg district, VA +station = ('kjyo', 0.00050141864058316529) +zone = ('vaz042', 0.0010979632465802709) + +[fips5110795131] +centroid = (0.68136013388361749, -1.3511157830102349) +description = Potomac district, VA +station = ('kiad', 0.0019115080902328619) +zone = ('vaz042', 0.0031465738663525524) + +[fips5110795887] +centroid = (0.68080127945712898, -1.3508871448782236) +description = Sterling district, VA +station = ('kiad', 0.0014535423864082877) +zone = ('vaz053', 0.0033664869542644098) + +[fips5110795991] +centroid = (0.68125323246693292, -1.350302442125513) +description = Sugarland Run district, VA +station = ('kiad', 0.0020739490138333917) +zone = ('mdz009', 0.0028465687745521215) + +[fips5110856] +centroid = (0.65547513829399706, -1.3709787818152368) +description = Buckingham Courthouse CDP, VA +station = ('kfvx', 0.0039487958233096034) +zone = ('vaz047', 0.00042200839600772138) + +[fips51109] +centroid = (0.6627308559669729, -1.3606443382483278) +description = Louisa County, VA +station = ('klku', 0.00068127324199581958) +zone = ('vaz049', 0.00012534132805370771) + +[fips5110991040] +centroid = (0.66258259024701605, -1.3590472398097055) +description = Cuckoo district, VA +station = ('klku', 0.0016284589563680333) +zone = ('vaz049', 0.0013375401460807988) + +[fips5110993767] +centroid = (0.66432388778843832, -1.3644855984924571) +description = Green Spring district, VA +station = ('klku', 0.0030193675412349985) +zone = ('vaz049', 0.0033211756403663238) + +[fips5110993999] +centroid = (0.66205328424476373, -1.3572565843570368) +description = Jackson district, VA +station = ('klku', 0.0031258546583494157) +zone = ('vaz049', 0.0028364285388254788) + +[fips5110994375] +centroid = (0.66447400355740227, -1.3616578858515462) +description = Louisa district, VA +station = ('klku', 0.001257603740125125) +zone = ('vaz049', 0.0017919719948479742) + +[fips5110994711] +centroid = (0.66354081091294592, -1.3602012864177091) +description = Mineral district, VA +station = ('klku', 0.00052250916349952565) +zone = ('vaz049', 0.00080375952161433205) + +[fips5110994759] +centroid = (0.66016932349028346, -1.3591608781973028) +description = Mountain Road district, VA +station = ('klku', 0.0034863121662545324) +zone = ('vaz062', 0.0018882905025722249) + +[fips5110995015] +centroid = (0.66284260939897821, -1.3629144530998119) +description = Patrick Henry district, VA +station = ('klku', 0.0017270091411884499) +zone = ('vaz049', 0.0017368279258913346) + +[fips5111032] +centroid = (0.65854175160292117, -1.3850300261973152) +description = Buena Vista city, VA +station = ('klyh', 0.0075595697056482719) +zone = ('vaz024', 0.0018950031000576214) + +[fips51111] +centroid = (0.64482510429174267, -1.3655859762259619) +description = Lunenburg County, VA +station = ('kavc', 0.0052012727733551116) +zone = ('vaz066', 2.5113969878631141e-05) + +[fips5111190192] +centroid = (0.64343624108617559, -1.3632726819287837) +description = Beaver Creek district, VA +station = ('kavc', 0.0031951744884152898) +zone = ('vaz066', 0.0022987390368196243) + +[fips5111190512] +centroid = (0.64472110012161632, -1.3640646774367535) +description = Browns Store district, VA +station = ('kavc', 0.0046055099893487494) +zone = ('vaz066', 0.001197203943534568) + +[fips5111193927] +centroid = (0.64531295872426009, -1.3630876421214873) +description = Hounds Creek district, VA +station = ('kavc', 0.0050154533924917392) +zone = ('vaz066', 0.0020300131232317124) + +[fips5111194383] +centroid = (0.64387494704695691, -1.3660443869539984) +description = Loves Mill district, VA +station = ('kavc', 0.0046365797137662007) +zone = ('vaz066', 0.0010343891413802026) + +[fips5111194647] +centroid = (0.64685612648899593, -1.3664221634705924) +description = Meherrin River district, VA +station = ('kfvx', 0.0054038554527009426) +zone = ('vaz066', 0.0021382424347205064) + +[fips5111195111] +centroid = (0.6458670484018908, -1.3651712685423958) +description = Plymouth district, VA +station = ('kavc', 0.0059876581056100631) +zone = ('vaz066', 0.0010789358574341244) + +[fips5111195279] +centroid = (0.6451754442324954, -1.3683572798254486) +description = Rehoboth district, VA +station = ('kfvx', 0.006720008016994689) +zone = ('vaz066', 0.0022644994094071853) + +[fips5111230] +centroid = (0.67683512345172692, -1.3529846466666853) +description = Bull Run CDP, VA +station = ('khef', 0.0011029302380724916) +zone = ('vaz052', 0.0013997795519223703) + +[fips5111245] +centroid = (0.67909382384990291, -1.355539302546122) +description = Bull Run Mountain Estates CDP, VA +station = ('kiad', 0.0029722464577549975) +zone = ('vaz042', 0.0031953499061312261) + +[fips51113] +centroid = (0.67041690202032056, -1.366190697905193) +description = Madison County, VA +station = ('komh', 0.0042795545634509895) +zone = ('vaz039', 4.1926863182793788e-05) + +[fips5111394335] +centroid = (0.66879728883434741, -1.3648133189661042) +description = Locust Dale district, VA +station = ('komh', 0.0024382753392306147) +zone = ('vaz039', 0.0019874943979021889) + +[fips5111395223] +centroid = (0.67007699914849461, -1.3675453352041285) +description = Rapidan district, VA +station = ('kcho', 0.0047099511529657932) +zone = ('vaz039', 0.0010948439346158481) + +[fips5111395383] +centroid = (0.6720595360991275, -1.3660039476752297) +description = Robertson district, VA +station = ('klua', 0.0042548370042098599) +zone = ('vaz039', 0.0016236514702530273) + +[fips5111464] +centroid = (0.67678616696620852, -1.3485036534385302) +description = Burke CDP, VA +station = ('kdaa', 0.001517016312855844) +zone = ('vaz053', 0.0010975459095613419) + +[fips5111470] +centroid = (0.67703053051478024, -1.3491485700504344) +description = Burke Centre CDP, VA +station = ('kdaa', 0.0020559149733321226) +zone = ('vaz053', 0.00088213943044074153) + +[fips51115] +centroid = (0.6531955463046748, -1.3311418161713915) +description = Mathews County, VA +station = ('kphf', 0.0060236051166700534) +zone = ('vaz086', 0.0011559970983919809) + +[fips5111560] +centroid = (0.64905138416886188, -1.3647499635142568) +description = Burkeville town, VA +station = ('kfvx', 0.0043607163588205164) +zone = ('vaz067', 0.0021398708426471021) + +[fips5111590808] +centroid = (0.65149543853359959, -1.3312026583491159) +description = Chesapeake district, VA +station = ('klfi', 0.0044037100291049215) +zone = ('vaz086', 0.0024602237285226629) + +[fips5111595055] +centroid = (0.65440951006589942, -1.3314727480508619) +description = Piankatank district, VA +station = ('kphf', 0.0069643500994714946) +zone = ('vaz086', 0.00098871149767656053) + +[fips5111596335] +centroid = (0.65334166526965176, -1.3317525243299566) +description = Westville district, VA +station = ('kphf', 0.0059084317158578439) +zone = ('vaz086', 0.0006704702081819033) + +[fips51117] +centroid = (0.64031341072204473, -1.3677963659104428) +description = Mecklenburg County, VA +station = ('kavc', 0.004405838717329703) +zone = ('vaz065', 0.00014830041621898937) + +[fips5111791253] +centroid = (0.63834029854937269, -1.3688278380450789) +description = District 1, VA +station = ('khnz', 0.0039716855405167876) +zone = ('vaz065', 0.0020672085882538723) + +[fips5111791403] +centroid = (0.64037343259502089, -1.3692051956826528) +description = District 2, VA +station = ('khnz', 0.0058498386198724108) +zone = ('vaz065', 0.001230569048152467) + +[fips5111791553] +centroid = (0.6398197094365331, -1.3626788336507927) +description = District 3, VA +station = ('kavc', 0.00059908552340850183) +zone = ('vaz079', 0.0035508290402057681) + +[fips5111791703] +centroid = (0.64068223369957622, -1.3636031425693562) +description = District 4, VA +station = ('kavc', 0.0010987097973067783) +zone = ('vaz065', 0.0033109091205596958) + +[fips5111791853] +centroid = (0.64125712770189058, -1.3632637632963061) +description = District 5, VA +station = ('kavc', 0.0012002757099343767) +zone = ('vaz065', 0.0037020508618918584) + +[fips5111792003] +centroid = (0.64035545570372532, -1.3658424174529578) +description = District 6, VA +station = ('kavc', 0.0028389176364580267) +zone = ('vaz065', 0.0014881417350979251) + +[fips5111792153] +centroid = (0.64169705539314836, -1.3676401065825117) +description = District 7, VA +station = ('kavc', 0.0044892218702640959) +zone = ('vaz065', 0.001503776774014705) + +[fips5111792303] +centroid = (0.64135847897155396, -1.3701360321326188) +description = District 8, VA +station = ('khnz', 0.0067376598192603063) +zone = ('vaz065', 0.0022826380862001156) + +[fips5111792453] +centroid = (0.63946732746055546, -1.3719286947139271) +description = District 9, VA +station = ('khnz', 0.0049543535855902333) +zone = ('vaz065', 0.0034792515210228009) + +[fips51119] +centroid = (0.65636296983119413, -1.3356648369279347) +description = Middlesex County, VA +station = ('kfyj', 0.0035975496537867186) +zone = ('vaz085', 0.00072138531161881523) + +[fips5111994023] +centroid = (0.65793118307069609, -1.3378747379202249) +description = Jamaica district, VA +station = ('kfyj', 0.00342012822190558) +zone = ('vaz085', 0.002691144905716389) + +[fips5111995079] +centroid = (0.65554940205366952, -1.3322938731040479) +description = Pine Top district, VA +station = ('kfyj', 0.0059846994594491701) +zone = ('vaz086', 0.0017916704041688368) + +[fips5111995559] +centroid = (0.65636296983119413, -1.3356648369279347) +description = Saluda district, VA +station = ('kfyj', 0.0035975496537867186) +zone = ('vaz085', 0.00072138531161881523) + +[fips51121] +centroid = (0.64882414230025232, -1.403023306134533) +description = Montgomery County, VA +station = ('kbcb', 0.00083564755935898428) +zone = ('vaz014', 1.6484281185229709e-05) + +[fips5112136] +centroid = (0.65990926943173622, -1.3978268849926927) +description = Callaghan CDP, VA +station = ('khsp', 0.0042930442709149703) +zone = ('vaz019', 0.0012086832755280046) + +[fips5112192713] +centroid = (0.65079870309620347, -1.4024330008749235) +description = District A-01, VA +station = ('kbcb', 0.0015235230673785794) +zone = ('vaz014', 0.0020434419695666397) + +[fips5112192813] +centroid = (0.64886943359434157, -1.4032309828622278) +description = District B-01, VA +station = ('kbcb', 0.0007257056441962417) +zone = ('vaz014', 0.00018168422284862976) + +[fips5112192913] +centroid = (0.64876000145024149, -1.4010056706126424) +description = District C-01, VA +station = ('kbcb', 0.0021658702675921679) +zone = ('vaz014', 0.0016026724114753816) + +[fips5112193013] +centroid = (0.6470536279471516, -1.4041725879936788) +description = District D-01, VA +station = ('kbcb', 0.0025507868072735165) +zone = ('vaz014', 0.0019825676260289745) + +[fips5112193113] +centroid = (0.64955171770553111, -1.4052963705924528) +description = District E-01, VA +station = ('kbcb', 0.001402193090347786) +zone = ('vaz014', 0.0019625259142100541) + +[fips5112193213] +centroid = (0.65038291330850084, -1.4040222627852046) +description = District F-01, VA +station = ('kbcb', 0.00091555603879249015) +zone = ('vaz014', 0.0017663983942558202) + +[fips5112193313] +centroid = (0.65016382212749801, -1.4034219393356886) +description = District G-01, VA +station = ('kbcb', 0.00061712385281107341) +zone = ('vaz014', 0.0013931403512910012) + +[fips5112264] +centroid = (0.67431039996896203, -1.3555344156242164) +description = Calverton CDP, VA +station = ('khwy', 0.0012085335171279842) +zone = ('vaz502', 0.00096436549344291903) + +[fips51125] +centroid = (0.65956020358133749, -1.37670513727786) +description = Nelson County, VA +station = ('kshd', 0.0083239455467058812) +zone = ('vaz036', 0.0001106319891890273) + +[fips5112590] +centroid = (0.64034393653066224, -1.3420037855047156) +description = Camptown CDP, VA +station = ('kfkn', 0.0002283730180636256) +zone = ('vaz092', 0.0030239927325990501) + +[fips5112590732] +centroid = (0.66092834972868331, -1.3762907961134365) +description = Central district, VA +station = ('kshd', 0.0069776345502196432) +zone = ('vaz036', 0.0014771644914190688) + +[fips5112593427] +centroid = (0.65897406965864025, -1.3749092458374355) +description = East district, VA +station = ('kcho', 0.0079665670311271312) +zone = ('vaz036', 0.0016135756741580197) + +[fips5112594883] +centroid = (0.66250448676298934, -1.3761532990749645) +description = North district, VA +station = ('kshd', 0.00542247281425945) +zone = ('vaz036', 0.0030376509820786582) + +[fips5112595755] +centroid = (0.65710922025946938, -1.3763252314595784) +description = South district, VA +station = ('klyh', 0.0074997638739791187) +zone = ('vaz036', 0.0024385852871512789) + +[fips5112596283] +centroid = (0.65978231418194633, -1.3792200345569363) +description = West district, VA +station = ('kshd', 0.0082730455466580571) +zone = ('vaz036', 0.0019054371235900972) + +[fips5112600] +centroid = (0.63845215670113298, -1.4079202636833161) +description = Cana CDP, VA +station = ('kmwk', 0.0026544756754956506) +zone = ('vaz016', 0.0027876044990486127) + +[fips51127] +centroid = (0.65448056241974806, -1.3437872676541585) +description = New Kent County, VA +station = ('kfyj', 0.0031924566801302305) +zone = ('vaz083', 0.00012110291422189295) + +[fips5112791257] +centroid = (0.65563387598946599, -1.3459021354686775) +description = District 1, VA +station = ('kric', 0.0029223157261118967) +zone = ('vaz083', 0.0019306487146456533) + +[fips5112791407] +centroid = (0.65482571873262252, -1.3469086319417176) +description = District 2, VA +station = ('kric', 0.0020005088261162334) +zone = ('vaz083', 0.0024340101785656067) + +[fips5112791557] +centroid = (0.65496461203449619, -1.3435196388666575) +description = District 3, VA +station = ('kfyj', 0.0029577592944932327) +zone = ('vaz083', 0.00045991980634101321) + +[fips5112791707] +centroid = (0.65301631844378749, -1.3430468815321699) +description = District 4, VA +station = ('kfyj', 0.0031776285114657591) +zone = ('vaz083', 0.0016985777959915708) + +[fips5112791857] +centroid = (0.6536054194262132, -1.3434278345480029) +description = District 5, VA +station = ('kfyj', 0.0031486033419546094) +zone = ('vaz083', 0.0010404855446348958) + +[fips5112808] +centroid = (0.65011280615346223, -1.3265160653350756) +description = Cape Charles town, VA +station = ('klfi', 0.0056143232082479597) +zone = ('vaz100', 0.0023750318248691748) + +[fips5112904] +centroid = (0.64069865724783748, -1.3474165576606332) +description = Capron town, VA +station = ('kfkn', 0.0042189127711674407) +zone = ('vaz092', 0.0013762896469911583) + +[fips5112915] +centroid = (0.66316048621564383, -1.3164306104392562) +description = Captains Cove CDP, VA +station = ('kwal', 0.0012337007968784006) +zone = ('mdz024', 0.0038478997517637052) + +[fips51131] +centroid = (0.65105369569991989, -1.3251214774495621) +description = Northampton County, VA +station = ('kmfv', 0.0064419077559396886) +zone = ('vaz100', 0.001000838826488616) + +[fips5113160] +centroid = (0.64473572598074802, -1.3355432921988257) +description = Carrollton CDP, VA +station = ('kpvg', 0.0029737471908103216) +zone = ('vaz096', 0.0010442704730205584) + +[fips5113191258] +centroid = (0.64850820279905619, -1.3255107033260494) +description = District 1, VA +station = ('korf', 0.0057091577811788329) +zone = ('vaz100', 0.0035472117528654108) + +[fips5113191408] +centroid = (0.65033540544626156, -1.3268393177658377) +description = District 2, VA +station = ('klfi', 0.0055169946995096619) +zone = ('vaz100', 0.002379528395507354) + +[fips5113191558] +centroid = (0.65240040920405118, -1.3227172165917698) +description = District 3, VA +station = ('kmfv', 0.0047237325665750295) +zone = ('vaz100', 0.0016240244825448578) + +[fips5113191708] +centroid = (0.65176949013274776, -1.3264255700133598) +description = District 4, VA +station = ('kmfv', 0.0062372645547361227) +zone = ('vaz100', 0.0013932511527513108) + +[fips5113191858] +centroid = (0.65435842427869362, -1.3257427623033944) +description = District 5, VA +station = ('kmfv', 0.0038366664799516785) +zone = ('vaz100', 0.0025046829617832471) + +[fips5113192] +centroid = (0.64060475853408028, -1.3411188163074916) +description = Carrsville CDP, VA +station = ('kfkn', 0.00083617232328827033) +zone = ('vaz092', 0.0036951783922431715) + +[fips5113192008] +centroid = (0.65451354914261084, -1.3241558391343111) +description = District 6, VA +station = ('kmfv', 0.002959894411513161) +zone = ('vaz100', 0.0025541816175959652) + +[fips51133] +centroid = (0.66072884114188779, -1.3330770197927102) +description = Northumberland County, VA +station = ('knui', 0.0051394927182296206) +zone = ('vaz077', 0.0007840883961415118) + +[fips5113391259] +centroid = (0.66308995746057076, -1.3358255119388733) +description = District 1, VA +station = ('knui', 0.0032126276246600386) +zone = ('vaz077', 0.0024285639021754887) + +[fips5113391409] +centroid = (0.66188142167331987, -1.3345788930673439) +description = District 2, VA +station = ('knui', 0.0040187065030531247) +zone = ('vaz077', 0.00087189540789573035) + +[fips5113391559] +centroid = (0.6601871258486538, -1.3334106045726437) +description = District 3, VA +station = ('knui', 0.0056613208496763658) +zone = ('vaz077', 0.0011042416273331474) + +[fips5113391709] +centroid = (0.65792966463424685, -1.3317553517633449) +description = District 4, VA +station = ('kmfv', 0.0074668179309368239) +zone = ('vaz085', 0.0027478390838966459) + +[fips5113391859] +centroid = (0.66046587238348986, -1.3309803906688744) +description = District 5, VA +station = ('knui', 0.0057951750822231082) +zone = ('vaz077', 0.0023789776168058655) + +[fips5113403] +centroid = (0.68150810289760166, -1.3506552778870964) +description = Cascades CDP, VA +station = ('kiad', 0.0021695581716822945) +zone = ('mdz009', 0.0029202983481642626) + +[fips51135] +centroid = (0.64827979155984772, -1.3622672152000022) +description = Nottoway County, VA +station = ('kfvx', 0.0064039120521762272) +zone = ('vaz067', 1.6950855198491855e-05) + +[fips5113512] +centroid = (0.64365426761633471, -1.436174212119961) +description = Castlewood CDP, VA +station = ('klnp', 0.0038954380322353912) +zone = ('vaz006', 0.0028355107361467684) + +[fips5113591260] +centroid = (0.64795146022096251, -1.3643148878383196) +description = District 1, VA +station = ('kfvx', 0.0053738494804576138) +zone = ('vaz067', 0.001676269171184717) + +[fips5113591410] +centroid = (0.64866936650218532, -1.3619926400020785) +description = District 2, VA +station = ('kfvx', 0.0063804521776085121) +zone = ('vaz067', 0.0004496602147240473) + +[fips5113591560] +centroid = (0.64946886692593886, -1.3630984980694347) +description = District 3, VA +station = ('kfvx', 0.0052221452885204628) +zone = ('vaz067', 0.0013767134004352847) + +[fips5113591710] +centroid = (0.64857110446529809, -1.3601695563319078) +description = District 4, VA +station = ('kptb', 0.0057896604754318036) +zone = ('vaz067', 0.00168575330043163) + +[fips5113591860] +centroid = (0.64670061765264319, -1.3604699274961762) +description = District 5, VA +station = ('kptb', 0.0064335410142796487) +zone = ('vaz067', 0.0021160848371725759) + +[fips5113624] +centroid = (0.67468142206135107, -1.3548802836738616) +description = Catlett CDP, VA +station = ('khwy', 0.0018222255546316176) +zone = ('vaz502', 0.001589813405009284) + +[fips5113635] +centroid = (0.65533128825704767, -1.3226678586805236) +description = Cats Bridge CDP, VA +station = ('kmfv', 0.0017999071885292535) +zone = ('vaz100', 0.0037039319467325098) + +[fips51137] +centroid = (0.66759610088324728, -1.3615310004149261) +description = Orange County, VA +station = ('komh', 0.00049084089803475863) +zone = ('vaz050', 8.6115825641221432e-05) + +[fips5113720] +centroid = (0.64969628332747376, -1.3963996419968743) +description = Cave Spring CDP, VA +station = ('kroa', 0.0017012400216553458) +zone = ('vaz022', 0.0010182954567558333) + +[fips5113784] +centroid = (0.64729114980505553, -1.4270450580278944) +description = Cedar Bluff town, VA +station = ('kjfz', 0.00069210034840630616) +zone = ('vaz007', 0.0029030172267548149) + +[fips5113791261] +centroid = (0.66682115724206925, -1.3656694029642076) +description = District 1, VA +station = ('komh', 0.0028551938641289375) +zone = ('vaz050', 0.003280281623810354) + +[fips5113791411] +centroid = (0.66636833156763942, -1.362400540901562) +description = District 2, VA +station = ('komh', 0.0011878002029172587) +zone = ('vaz050', 0.0013191442193561792) + +[fips5113791561] +centroid = (0.66823033608012949, -1.3620826291783112) +description = District 3, VA +station = ('komh', 0.00069251817399462756) +zone = ('vaz050', 0.00080516279949656964) + +[fips5113791711] +centroid = (0.66848283286301557, -1.3589899581036551) +description = District 4, VA +station = ('komh', 0.0026553452652139757) +zone = ('vaz050', 0.0022557237769083565) + +[fips5113791861] +centroid = (0.66885268558480571, -1.3570570408636564) +description = District 5, VA +station = ('kcjr', 0.0038440382850231086) +zone = ('vaz056', 0.0027222178127248617) + +[fips51139] +centroid = (0.67411162442045236, -1.369917150391126) +description = Page County, VA +station = ('klua', 0.00076827527500978167) +zone = ('vaz029', 0.00010878036083066876) + +[fips5113991262] +centroid = (0.67613547331447987, -1.3686127611213557) +description = "District 1, West Luray", VA +station = ('klua', 0.0017156638809202192) +zone = ('vaz029', 0.0022875473140449147) + +[fips5113991412] +centroid = (0.67512632394097682, -1.3680845023166546) +description = "District 2, East Luray", VA +station = ('klua', 0.0015897757776766278) +zone = ('vaz029', 0.0017245749367858466) + +[fips5113991562] +centroid = (0.67349175328331401, -1.3689916371953785) +description = "District 3, Marksville", VA +station = ('klua', 0.0016228542098332521) +zone = ('vaz029', 0.00084399656912370114) + +[fips5113991712] +centroid = (0.67379085035722841, -1.3711923228492184) +description = "District 4, Newport", VA +station = ('klua', 0.0013767889719266122) +zone = ('vaz029', 0.0011129615563963541) + +[fips5113991862] +centroid = (0.67193176054458903, -1.3713107259856736) +description = "District 5, Shenandoah", VA +station = ('klua', 0.0030859893336550441) +zone = ('vaz029', 0.0024197586082690794) + +[fips51141] +centroid = (0.63996558405541482, -1.4012575041704127) +description = Patrick County, VA +station = ('kmtv', 0.003819715490087079) +zone = ('vaz032', 0.0001949710470553057) + +[fips5114190408] +centroid = (0.64032058402527048, -1.4027182225812842) +description = Blue Ridge district, VA +station = ('kmwk', 0.0047352805833748776) +zone = ('vaz032', 0.0012080708219489654) + +[fips5114191096] +centroid = (0.63881038553010494, -1.4047194345549134) +description = Dan River district, VA +station = ('kmwk', 0.0026488637157838016) +zone = ('vaz032', 0.0031110726844784916) + +[fips5114194591] +centroid = (0.63947228419563118, -1.3984545577515874) +description = Mayo River district, VA +station = ('kmtv', 0.0015281277224157828) +zone = ('vaz032', 0.0023263798427732734) + +[fips5114195039] +centroid = (0.63833974004401206, -1.4018832570671302) +description = Peters Creek district, VA +station = ('kmwk', 0.0038071921400664294) +zone = ('vaz032', 0.0018941764292210387) + +[fips5114195735] +centroid = (0.64191586732147077, -1.3998831795575148) +description = Smith River district, VA +station = ('kmtv', 0.0036867795178222771) +zone = ('vaz032', 0.0020601784620268688) + +[fips51143] +centroid = (0.64266026770073892, -1.3857652810513026) +description = Pittsylvania County, VA +station = ('kdan', 0.0045440022868781247) +zone = ('vaz044', 0.00018579935789023343) + +[fips5114312] +centroid = (0.65879615079469189, -1.3460875941549946) +description = Central Garage CDP, VA +station = ('kxsa', 0.0038352291071177907) +zone = ('vaz072', 0.00085639944122135783) + +[fips5114390152] +centroid = (0.64337274600798811, -1.38336067112766) +description = Banister district, VA +station = ('kdan', 0.0052629786981002388) +zone = ('vaz044', 0.0021122437954425258) + +[fips5114390592] +centroid = (0.6440802326735765, -1.3873439313597316) +description = Callands-Gretna district, VA +station = ('kdan', 0.0062619843629608696) +zone = ('vaz044', 0.0020505088935465253) + +[fips5114390800] +centroid = (0.64101510289451658, -1.3861733215771266) +description = Chatham-Blairs district, VA +station = ('kdan', 0.0030680966489588751) +zone = ('vaz044', 0.0014987456097515775) + +[fips5114391104] +centroid = (0.63997860421163466, -1.3833746512149685) +description = Dan River district, VA +station = ('kdan', 0.0020357438931080897) +zone = ('vaz044', 0.0031390175398103176) + +[fips5114395879] +centroid = (0.64639747141486426, -1.384125806018442) +description = Staunton River district, VA +station = ('klyh', 0.0051123955626871265) +zone = ('vaz044', 0.0041317776190488448) + +[fips5114396127] +centroid = (0.64038531828722689, -1.3890140194676726) +description = Tunstall district, VA +station = ('kdan', 0.0041385460866333991) +zone = ('vaz044', 0.0033478169576299796) + +[fips5114396319] +centroid = (0.63918837148620922, -1.3872167666704314) +description = Westover district, VA +station = ('kdan', 0.0022978401830280044) +zone = ('vaz044', 0.0034906332378979066) + +[fips5114440] +centroid = (0.67787568875176596, -1.3515556932482) +description = Centreville CDP, VA +station = ('kiad', 0.0016466767938768045) +zone = ('vaz053', 0.0021661514045018151) + +[fips51145] +centroid = (0.65536073196152889, -1.3598358493789264) +description = Powhatan County, VA +station = ('kfci', 0.0061592734122543199) +zone = ('vaz069', 3.5297689971592939e-05) + +[fips5114544] +centroid = (0.65672158263260139, -1.3513768144531633) +description = Chamberlayne CDP, VA +station = ('kofp', 0.001269537283141563) +zone = ('vaz071', 0.0015953288783967499) + +[fips5114591265] +centroid = (0.65546494557116541, -1.3573922662530868) +description = District 1, VA +station = ('kfci', 0.0045396209641573064) +zone = ('vaz069', 0.001971770430999888) + +[fips5114591415] +centroid = (0.65412685399353887, -1.3581223549324886) +description = District 2, VA +station = ('kfci', 0.0044400502505779517) +zone = ('vaz069', 0.0018690912888392316) + +[fips5114591565] +centroid = (0.65600114562396317, -1.359153635080907) +description = District 3, VA +station = ('kfci', 0.0059937465267945302) +zone = ('vaz069', 0.0008491569064532136) + +[fips5114591715] +centroid = (0.65465979028063537, -1.3614702455036642) +description = District 4, VA +station = ('kfvx', 0.0065361264231507434) +zone = ('vaz069', 0.0014518522576384707) + +[fips5114591865] +centroid = (0.65648179184666988, -1.3610213991799289) +description = District 5, VA +station = ('klku', 0.0069145258203790194) +zone = ('vaz069', 0.0014313054277408446) + +[fips51147] +centroid = (0.6496967371130794, -1.3689133417251342) +description = Prince Edward County, VA +station = ('kfvx', 0.0021837447594747384) +zone = ('vaz060', 0.00011362106982028312) + +[fips5114744] +centroid = (0.67870208469929272, -1.3516703090201785) +description = Chantilly CDP, VA +station = ('kiad', 0.00081559793008283241) +zone = ('vaz053', 0.0024056480154968246) + +[fips5114792553] +centroid = (0.65051758291358475, -1.3682012473903205) +description = District 101, VA +station = ('kfvx', 0.001477902498699438) +zone = ('vaz060', 0.0010737337203197354) + +[fips5114792563] +centroid = (0.65047244869912813, -1.3667409653117617) +description = District 201, VA +station = ('kfvx', 0.0022329508703718202) +zone = ('vaz060', 0.0020030193018096402) + +[fips5114792573] +centroid = (0.6485104368204988, -1.3673706626525888) +description = District 301, VA +station = ('kfvx', 0.003588566568378014) +zone = ('vaz060', 0.0017845865604092031) + +[fips5114792583] +centroid = (0.64887864893279201, -1.3696690867445402) +description = District 401, VA +station = ('kfvx', 0.0030604671728329943) +zone = ('vaz060', 0.00094428143802442299) + +[fips5114792593] +centroid = (0.64987425455129966, -1.3712358164541778) +description = District 501, VA +station = ('kfvx', 0.0027238667468674569) +zone = ('vaz060', 0.0017461459629422903) + +[fips5114792603] +centroid = (0.65108038178418282, -1.3710893484233506) +description = District 601, VA +station = ('kfvx', 0.0019016180290041156) +zone = ('vaz060', 0.002136054547310297) + +[fips5114792613] +centroid = (0.65088279305956454, -1.3685534722866655) +description = District 701, VA +station = ('kfvx', 0.0010393696883609057) +zone = ('vaz060', 0.0012611575899949381) + +[fips5114792623] +centroid = (0.65088879699219138, -1.3681539838741765) +description = District 801, VA +station = ('kfvx', 0.0011637989330478254) +zone = ('vaz060', 0.0014000309553904844) + +[fips51149] +centroid = (0.64904127871249284, -1.3477605795094938) +description = Prince George County, VA +station = ('kptb', 0.0041118635068228201) +zone = ('vaz081', 0.00025941820833567638) + +[fips5114904] +centroid = (0.65187235983886038, -1.3450162587002428) +description = Charles City CDP, VA +station = ('kric', 0.0045601133378564696) +zone = ('vaz083', 0.0028691971686748345) + +[fips5114952] +centroid = (0.64675556061749606, -1.3724879156595586) +description = Charlotte Court House town, VA +station = ('kfvx', 0.0058601294953112212) +zone = ('vaz059', 0.00084892662271413922) + +[fips5114968] +centroid = (0.66388237184756127, -1.3698283131321998) +description = Charlottesville city, VA +station = ('kcho', 0.0017391471764452195) +zone = ('vaz037', 0.00099689748447031462) + +[fips5114984] +centroid = (0.64227844202028017, -1.3694019291959374) +description = Chase City town, VA +station = ('kavc', 0.0060112277157714118) +zone = ('vaz065', 0.0024968534475687302) + +[fips5114990328] +centroid = (0.64940107833779148, -1.3474497538230057) +description = Blackwater district, VA +station = ('kptb', 0.0043794181003294517) +zone = ('vaz081', 0.00057348083416237472) + +[fips5114990352] +centroid = (0.65034662791335196, -1.3487923134435176) +description = Bland district, VA +station = ('kptb', 0.0035636414002109817) +zone = ('vaz081', 0.0013590410088380302) + +[fips5114990472] +centroid = (0.64988291138438958, -1.345419150504773) +description = Brandon district, VA +station = ('kakq', 0.004564900611309269) +zone = ('vaz082', 0.0025591753489599446) + +[fips5114995] +centroid = (0.65904212004617546, -1.3206155958262735) +description = Chase Crossing CDP, VA +station = ('kmfv', 0.0023773806069814223) +zone = ('vaz099', 0.00027313039097314005) + +[fips5114995343] +centroid = (0.6486132192601487, -1.3496675262502225) +description = Rives district, VA +station = ('kptb', 0.0026171128164181284) +zone = ('vaz081', 0.0013655679156630903) + +[fips5114996063] +centroid = (0.64712937523668812, -1.3492248234854542) +description = Templeton district, VA +station = ('kptb', 0.003475311445737411) +zone = ('vaz081', 0.0021868401721502071) + +[fips5115000] +centroid = (0.64248803861015213, -1.385793555385185) +description = Chatham town, VA +station = ('kdan', 0.0043802089557892204) +zone = ('vaz044', 3.7611513823528704e-05) + +[fips5115048] +centroid = (0.63998935543982705, -1.392739372396177) +description = Chatmoss CDP, VA +station = ('kmtv', 0.0031222411312972769) +zone = ('vaz043', 0.0010853324823847949) + +[fips5115112] +centroid = (0.65091485475792377, -1.3258789154383426) +description = Cheriton town, VA +station = ('klfi', 0.0064749268918133764) +zone = ('vaz100', 0.0014327346254768259) + +[fips5115176] +centroid = (0.67309969997343866, -1.3489021470133455) +description = Cherry Hill CDP, VA +station = ('knyg', 0.0011628577489022304) +zone = ('vaz055', 0.0034642675409567144) + +[fips51153] +centroid = (0.67548312159996204, -1.3522616789306319) +description = Prince William County, VA +station = ('khef', 0.00057213308467880743) +zone = ('vaz052', 6.7463874704798841e-05) + +[fips5115390480] +centroid = (0.67580900947789446, -1.3534583639322619) +description = Brentsville district, VA +station = ('khef', 0.00042599905953662383) +zone = ('vaz052', 0.00093334139582560436) + +[fips5115390928] +centroid = (0.67507506362084579, -1.3508431625810733) +description = Coles district, VA +station = ('khef', 0.0017502017194950131) +zone = ('vaz052', 0.0012375322412097253) + +[fips5115393423] +centroid = (0.67333366135966843, -1.3508882095290675) +description = Dumfries district, VA +station = ('knyg', 0.0019443511535565208) +zone = ('vaz052', 0.0024685758540460207) + +[fips5115393671] +centroid = (0.67796360098618891, -1.3545272210194756) +description = Gainesville district, VA +station = ('khef', 0.0025577173272176065) +zone = ('vaz052', 0.0029776624771076839) + +[fips5115394807] +centroid = (0.67442803516054639, -1.3496406132731569) +description = Neabsco district, VA +station = ('knyg', 0.0025070739291518343) +zone = ('vaz052', 0.0023635085077086154) + +[fips5115394943] +centroid = (0.67504570718282719, -1.3490511632248807) +description = Occoquan district, VA +station = ('kdaa', 0.0016685103170193324) +zone = ('vaz053', 0.0028257186583742909) + +[fips5115396455] +centroid = (0.67393445604808244, -1.3484812957708121) +description = Woodbridge district, VA +station = ('knyg', 0.0020484166505154891) +zone = ('vaz052', 0.0033949196879207166) + +[fips51155] +centroid = (0.64687810018427849, -1.408715348424062) +description = Pulaski County, VA +station = ('kpsk', 0.0012907830241736598) +zone = ('vaz013', 6.4053535344650572e-05) + +[fips5115590904] +centroid = (0.64883686575049926, -1.4072875818294681) +description = Cloyd district, VA +station = ('kpsk', 0.0010303607135448553) +zone = ('vaz013', 0.0022084751221810857) + +[fips5115593399] +centroid = (0.64594675758882925, -1.4092547075228059) +description = Draper district, VA +station = ('kpsk', 0.0023138184958281199) +zone = ('vaz013', 0.0010809663812114667) + +[fips5115593967] +centroid = (0.64578365657023051, -1.4074345734590712) +description = Ingles district, VA +station = ('kpsk', 0.0023924156013454896) +zone = ('vaz013', 0.0014881977085965514) + +[fips5115594551] +centroid = (0.64793479232660589, -1.4096353289260808) +description = Massie district, VA +station = ('kpsk', 0.0011641097762789833) +zone = ('vaz013', 0.0012897267227484348) + +[fips5115595391] +centroid = (0.64698240106037774, -1.4108191857577086) +description = Robinson district, VA +station = ('kpsk', 0.0023758109523439792) +zone = ('vaz013', 0.001733621208460142) + +[fips51157] +centroid = (0.67517227846018191, -1.364303351211964) +description = Rappahannock County, VA +station = ('kcjr', 0.0050457777140098595) +zone = ('vaz040', 0.0001297558268541244) + +[fips5115793823] +centroid = (0.67582113951619582, -1.3638512236692348) +description = Hampton district, VA +station = ('kcjr', 0.005156178829833406) +zone = ('vaz040', 0.00068651322387847471) + +[fips5115794007] +centroid = (0.67546385316502, -1.3618998582990427) +description = Jackson district, VA +station = ('kcjr', 0.0038468990943174505) +zone = ('vaz040', 0.0017704447677513353) + +[fips5115795063] +centroid = (0.67479047023301564, -1.3656998938662397) +description = Piedmont district, VA +station = ('klua', 0.0034315623989401856) +zone = ('vaz040', 0.0012783131657398401) + +[fips5115795967] +centroid = (0.6735986546999988, -1.3639245100445261) +description = Stonewall-Hawthorne district, VA +station = ('kcjr', 0.0041072327416729433) +zone = ('vaz040', 0.001581980868454769) + +[fips5115796199] +centroid = (0.67727114160546009, -1.3634034769029282) +description = Wakefield district, VA +station = ('kcjr', 0.0059965499889392537) +zone = ('vaz040', 0.002175834587852836) + +[fips51159] +centroid = (0.66222842803520143, -1.3392009263523525) +description = Richmond County, VA +station = ('kxsa', 0.0026200721837130645) +zone = ('vaz076', 7.7918553763248698e-05) + +[fips5115991271] +centroid = (0.66106546279472, -1.338197431845626) +description = District 1, VA +station = ('kxsa', 0.0028879621141510111) +zone = ('vaz076', 0.0013646318563411647) + +[fips5115991421] +centroid = (0.66276584981847542, -1.3385637590023272) +description = District 2, VA +station = ('kxsa', 0.0033490357212201042) +zone = ('vaz076', 0.00068475628722331936) + +[fips5115991571] +centroid = (0.661807576792668, -1.3397146116577996) +description = District 3, VA +station = ('kxsa', 0.0020429960013430256) +zone = ('vaz076', 0.00064077429570371964) + +[fips5115991721] +centroid = (0.66100912356646557, -1.33701067776744) +description = District 4, VA +station = ('kxsa', 0.003809628454705772) +zone = ('vaz076', 0.0020518150246823458) + +[fips5115991871] +centroid = (0.66381280302357681, -1.3412397152647775) +description = District 5, VA +station = ('kxsa', 0.0032369809632730824) +zone = ('vaz076', 0.0023126117640335023) + +[fips5116000] +centroid = (0.64017587877698756, -1.3317174257586992) +description = Chesapeake city, VA +station = ('kcpk', 0.00035665844027848325) +zone = ('vaz097', 2.8809478994445438e-05) + +[fips5116096] +centroid = (0.65191616760308535, -1.3514729471883631) +description = Chester CDP, VA +station = ('kfci', 0.0013492709775150453) +zone = ('vaz070', 0.0021214252182844939) + +[fips51161] +centroid = (0.65155020696552723, -1.3995814470364301) +description = Roanoke County, VA +station = ('kbcb', 0.0037266530093798158) +zone = ('vaz022', 0.0021820654549168012) + +[fips5116190648] +centroid = (0.65122904892986777, -1.3985871678681541) +description = Catawba district, VA +station = ('kroa', 0.0023118803438438537) +zone = ('vaz022', 0.0013372930389459676) + +[fips5116190664] +centroid = (0.64905873200501285, -1.3958964984801094) +description = Cave Spring district, VA +station = ('kroa', 0.002246487393982637) +zone = ('vaz022', 0.001769740241179306) + +[fips5116193911] +centroid = (0.65166119245266141, -1.3950541153166343) +description = Hollins district, VA +station = ('kroa', 0.00061675783960454453) +zone = ('vaz022', 0.0020404802630993243) + +[fips5116196183] +centroid = (0.65006756721925052, -1.3942431480796951) +description = Vinton district, VA +station = ('kroa', 0.0016809782229729052) +zone = ('vaz022', 0.0023716596610500068) + +[fips5116196439] +centroid = (0.6492292332196401, -1.3981679223285324) +description = Windsor Hills district, VA +station = ('kroa', 0.0028633449774879095) +zone = ('vaz022', 0.0015056272019453156) + +[fips5116240] +centroid = (0.67806090309198763, -1.3636521863213373) +description = Chester Gap CDP, VA +station = ('kokv', 0.0052414991687365934) +zone = ('vaz030', 0.001451226930783545) + +[fips51163] +centroid = (0.65998782670136857, -1.3866248906144951) +description = Rockbridge County, VA +station = ('khsp', 0.0058140903512867064) +zone = ('vaz024', 2.3560700910197349e-05) + +[fips5116390568] +centroid = (0.65781284974741083, -1.386983293976392) +description = Buffalo district, VA +station = ('khsp', 0.0067777478944620259) +zone = ('vaz024', 0.0021798101137592003) + +[fips5116394143] +centroid = (0.6599286076798484, -1.3887630236679434) +description = Kerrs Creek district, VA +station = ('khsp', 0.0043598859090733747) +zone = ('vaz024', 0.0017070115068643099) + +[fips5116394799] +centroid = (0.6562902419612634, -1.3877618679024144) +description = Natural Bridge district, VA +station = ('klyh', 0.0066111208595910336) +zone = ('vaz024', 0.003794019957797217) + +[fips5116395799] +centroid = (0.66068023372221973, -1.3826559944421675) +description = South River district, VA +station = ('kshd', 0.0084384223628655095) +zone = ('vaz024', 0.0031967971557801344) + +[fips5116396215] +centroid = (0.66235039164333076, -1.3863405939326376) +description = Walkers Creek district, VA +station = ('khsp', 0.0055308155552166727) +zone = ('vaz024', 0.0023875698960672664) + +[fips5116480] +centroid = (0.64228418415351929, -1.4256357744700789) +description = Chilhowie town, VA +station = ('kjfz', 0.0048200860228466615) +zone = ('vaz009', 0.0021767762669287257) + +[fips51165] +centroid = (0.67214823373171384, -1.3766512589638509) +description = Rockingham County, VA +station = ('kshd', 0.0042811936611791158) +zone = ('vaz026', 1.4149513719208336e-05) + +[fips5116512] +centroid = (0.66233930880258052, -1.3151635886687711) +description = Chincoteague town, VA +station = ('kwal', 0.0015846365231792017) +zone = ('mdz024', 0.0046426038119458026) + +[fips5116590080] +centroid = (0.67052300058554926, -1.379008919530615) +description = Ashby district, VA +station = ('kshd', 0.0030518993735991341) +zone = ('vaz026', 0.0024582078549131459) + +[fips5116590736] +centroid = (0.67207632616653168, -1.3784324198253888) +description = Central district, VA +station = ('kshd', 0.0043317421817994388) +zone = ('vaz026', 0.0014033714929092824) + +[fips5116594287] +centroid = (0.67321557238247853, -1.3770254575554786) +description = Linville district, VA +station = ('kshd', 0.0053363342188675906) +zone = ('vaz026', 0.0011200014024458486) + +[fips5116595095] +centroid = (0.67504680674025597, -1.3765393309989207) +description = Plains district, VA +station = ('kw99', 0.0064305727005006148) +zone = ('vaz026', 0.0029111174086433505) + +[fips5116595951] +centroid = (0.6695043915275003, -1.3733361980359056) +description = Stonewall district, VA +station = ('kshd', 0.0033466075934881052) +zone = ('vaz026', 0.0036917943914113907) + +[fips5116608] +centroid = (0.64823870650925575, -1.4032867461318288) +description = Christiansburg town, VA +station = ('kbcb', 0.0013295318523230788) +zone = ('vaz014', 0.00060944299094300286) + +[fips51167] +centroid = (0.64460978302192407, -1.4328443507999584) +description = Russell County, VA +station = ('kvji', 0.0044516307868248794) +zone = ('vaz006', 8.1054920761090684e-06) + +[fips5116736] +centroid = (0.66714617245537566, -1.3816268785020214) +description = Churchville CDP, VA +station = ('kshd', 0.0036571476329389473) +zone = ('vaz025', 0.0011647943300960146) + +[fips5116790632] +centroid = (0.6446368705319151, -1.4353323525552613) +description = Castlewood district, VA +station = ('klnp', 0.0041977641230515617) +zone = ('vaz006', 0.0019934842879390179) + +[fips5116794191] +centroid = (0.64378443427194854, -1.4325651504795169) +description = Lebanon district, VA +station = ('kvji', 0.0035989351359972757) +zone = ('vaz006', 0.00086021535696016889) + +[fips5116794831] +centroid = (0.64663165969389691, -1.4307704109563988) +description = New Garden district, VA +station = ('kjfz', 0.0024739781154232039) +zone = ('vaz006', 0.0026057276975673749) + +[fips5116880] +centroid = (0.64973867737500468, -1.3433188038296306) +description = Claremont town, VA +station = ('kjgg', 0.0034893907866793807) +zone = ('vaz082', 0.00090789282313761773) + +[fips51169] +centroid = (0.64075885365373875, -1.4418797981644853) +description = Scott County, VA +station = ('klnp', 0.0048534168235065669) +zone = ('vaz005', 0.00015074129721095791) + +[fips5116991276] +centroid = (0.63899196958548232, -1.4429362983205951) +description = District 1, VA +station = ('ktri', 0.004601507046743932) +zone = ('vaz005', 0.0020500599502961637) + +[fips5116991426] +centroid = (0.63946999781431102, -1.4388076521618325) +description = District 2, VA +station = ('ktri', 0.0030524775719709355) +zone = ('vaz005', 0.0026619044414085743) + +[fips5116991576] +centroid = (0.64126848979532114, -1.4390321189569315) +description = District 3, VA +station = ('klnp', 0.004368485659639037) +zone = ('vaz005', 0.0021880956164969981) + +[fips5116991726] +centroid = (0.63953991570414592, -1.4417936312593145) +description = District 4, VA +station = ('ktri', 0.0042456381279488828) +zone = ('vaz005', 0.00124630404803412) + +[fips5116991876] +centroid = (0.6420349162297494, -1.4418648581460882) +description = District 5, VA +station = ('klnp', 0.0036200555390178595) +zone = ('vaz005', 0.0012586829370845596) + +[fips5116992] +centroid = (0.63911826161015672, -1.3712068788951799) +description = Clarksville town, VA +station = ('khnz', 0.004514557044591366) +zone = ('vaz065', 0.0030217701185861756) + +[fips5116992026] +centroid = (0.63987702604916863, -1.4458771781102056) +description = District 6, VA +station = ('k0vg', 0.0052541443583239179) +zone = ('tnz016', 0.0041148189004313763) + +[fips51171] +centroid = (0.67816869462659068, -1.3713747795692217) +description = Shenandoah County, VA +station = ('klua', 0.0034490987893799809) +zone = ('vaz027', 6.3107042210285225e-05) + +[fips5117120] +centroid = (0.64680568647361325, -1.4268252338086056) +description = Claypool Hill CDP, VA +station = ('kjfz', 0.00068170526227962446) +zone = ('vaz007', 0.0028893845612023464) + +[fips5117191277] +centroid = (0.6758074212282752, -1.3742584300126595) +description = District 1, VA +station = ('klua', 0.0033837802078769178) +zone = ('vaz027', 0.0033226772994613104) + +[fips5117191427] +centroid = (0.67713760646439014, -1.3733172437602288) +description = District 2, VA +station = ('klua', 0.0033878058430343704) +zone = ('vaz027', 0.0018940116281545884) + +[fips5117191577] +centroid = (0.67808767644271317, -1.371529171394853) +description = District 3, VA +station = ('klua', 0.0034092558982310134) +zone = ('vaz027', 0.00020789017444405199) + +[fips5117191727] +centroid = (0.6780646380965869, -1.3689958608921684) +description = District 4, VA +station = ('klua', 0.003309822847317549) +zone = ('vaz027', 0.0018095619105680195) + +[fips5117191877] +centroid = (0.68032239601696676, -1.3697113237124385) +description = District 5, VA +station = ('kokv', 0.0053556476614873604) +zone = ('vaz027', 0.0024533113418635758) + +[fips5117192027] +centroid = (0.68028787340436225, -1.367888309855438) +description = District 6, VA +station = ('kokv', 0.0042760266188802262) +zone = ('vaz030', 0.0025666871050366558) + +[fips5117296] +centroid = (0.64478852219062077, -1.4338338826726693) +description = Cleveland town, VA +station = ('kvji', 0.0048397001569321536) +zone = ('vaz006', 0.00081397416304318591) + +[fips51173] +centroid = (0.64301975316677218, -1.4231377370715772) +description = Smyth County, VA +station = ('kmkj', 0.002834665294081171) +zone = ('vaz009', 4.7714113817604224e-05) + +[fips5117376] +centroid = (0.67684091794484347, -1.3506403204154067) +description = Clifton town, VA +station = ('khef', 0.0020954130835850304) +zone = ('vaz053', 0.0017771793465723089) + +[fips5117390104] +centroid = (0.64360400213387736, -1.4207260062045863) +description = Atkins district, VA +station = ('kmkj', 0.00083511372727093853) +zone = ('vaz009', 0.0019709688000453872) + +[fips5117390832] +centroid = (0.64194101751599209, -1.425411674194123) +description = Chilhowie district, VA +station = ('kjfz', 0.0052039985361326379) +zone = ('vaz009', 0.002163691928985109) + +[fips5117394895] +centroid = (0.64435931082097042, -1.4237447451321283) +description = North Fork district, VA +station = ('kmkj', 0.0031515134462086277) +zone = ('vaz009', 0.0014128790039338568) + +[fips5117394991] +centroid = (0.64368454907885697, -1.4227100092317908) +description = Park district, VA +station = ('kmkj', 0.0023323190123035057) +zone = ('vaz009', 0.00070569349511828737) + +[fips5117395479] +centroid = (0.64230687343379522, -1.4225852705501507) +description = Royal Oak district, VA +station = ('kmkj', 0.0027990233014808627) +zone = ('vaz009', 0.00084320550635509747) + +[fips5117395511] +centroid = (0.64133455050750909, -1.4217085742135815) +description = Rye Valley district, VA +station = ('kmkj', 0.0030853101597703163) +zone = ('vaz009', 0.0020386007003957811) + +[fips5117395551] +centroid = (0.64426167710261384, -1.4268801942267508) +description = Saltville district, VA +station = ('kjfz', 0.0026358051490086134) +zone = ('vaz009', 0.0032666046194679429) + +[fips5117440] +centroid = (0.66014153784859175, -1.3932118853845692) +description = Clifton Forge town, VA +station = ('khsp', 0.0022137772464579024) +zone = ('vaz019', 0.0025802851329954587) + +[fips51175] +centroid = (0.6408879207519238, -1.3457161531835848) +description = Southampton County, VA +station = ('kfkn', 0.0028739577585160658) +zone = ('vaz092', 4.8287120305676652e-06) + +[fips5117504] +centroid = (0.64851893657395598, -1.4373565156085544) +description = Clinchco town, VA +station = ('klnp', 0.0039286448220785435) +zone = ('vaz003', 0.00055452076091361388) + +[fips5117536] +centroid = (0.64018706633749289, -1.4441565627204196) +description = Clinchport town, VA +station = ('klnp', 0.0060573996392373581) +zone = ('vaz005', 0.0020624152673213397) + +[fips5117552] +centroid = (0.64844212463357565, -1.4391967209586871) +description = Clintwood town, VA +station = ('klnp', 0.0031328139376067582) +zone = ('vaz003', 0.0015970348708653486) + +[fips5117590240] +centroid = (0.64371332955822236, -1.3425098088147462) +description = Berlin and Ivor district, VA +station = ('kakq', 0.0020893890631915363) +zone = ('vaz093', 0.002977045601420248) + +[fips5117590458] +centroid = (0.6391573744386938, -1.348815857935127) +description = Boykins and Branchville district, VA +station = ('kemv', 0.0030446853750669693) +zone = ('vaz092', 0.003027130207539367) + +[fips5117590608] +centroid = (0.64177716600581491, -1.3459383685039488) +description = Capron district, VA +station = ('kfkn', 0.0032739047745438646) +zone = ('vaz092', 0.00091172321602306643) + +[fips5117593407] +centroid = (0.64118279412904822, -1.3493483927964953) +description = Drewryville district, VA +station = ('kemv', 0.0025449577304706506) +zone = ('vaz092', 0.0029273202351238542) + +[fips5117593639] +centroid = (0.64068404884199825, -1.343380309232471) +description = Franklin district, VA +station = ('kfkn', 0.00099095400223076207) +zone = ('vaz092', 0.0018822537283321318) + +[fips5117594103] +centroid = (0.64141211293946776, -1.3441111833100361) +description = Jerusalem district, VA +station = ('kfkn', 0.0017939267134813913) +zone = ('vaz092', 0.0013900326681353004) + +[fips5117594855] +centroid = (0.63873010038451306, -1.3443602243410031) +description = Newsoms district, VA +station = ('kfkn', 0.0025262581059253266) +zone = ('vaz092', 0.0024118713312571028) + +[fips5117632] +centroid = (0.64288874875311752, -1.3740623597244903) +description = Clover CDP, VA +station = ('khnz', 0.008715143093075816) +zone = ('vaz058', 0.0031479556339344314) + +[fips5117680] +centroid = (0.65199182762615937, -1.394573451640635) +description = Cloverdale CDP, VA +station = ('kroa', 0.0011210505124667565) +zone = ('vaz022', 0.0025431618693568091) + +[fips51177] +centroid = (0.66640704297044862, -1.3553577708506221) +description = Spotsylvania County, VA +station = ('kezf', 0.0031885934037538012) +zone = ('vaz056', 0.00011512294987686637) + +[fips5117776] +centroid = (0.63887337446280934, -1.3774805172513511) +description = Cluster Springs CDP, VA +station = ('ktdf', 0.0056446048702276366) +zone = ('vaz058', 0.0028375637243153551) + +[fips5117790168] +centroid = (0.66764942069189581, -1.352791246732272) +description = Battlefield district, VA +station = ('kezf', 0.00084363301043741015) +zone = ('vaz056', 0.002271119474844738) + +[fips5117790232] +centroid = (0.6651705295552881, -1.3545092615814727) +description = Berkeley district, VA +station = ('kezf', 0.0034663131096601941) +zone = ('vaz056', 0.0014739102746166995) + +[fips5117790760] +centroid = (0.66873082669643147, -1.3552688637785255) +description = Chancellor district, VA +station = ('krmn', 0.0030442498262580179) +zone = ('vaz056', 0.0022210743038639891) + +[fips5117791008] +centroid = (0.66865303737167003, -1.3538753754504407) +description = Courtland district, VA +station = ('kezf', 0.0018335488216336261) +zone = ('vaz056', 0.002414678102422125) + +[fips5117794231] +centroid = (0.66727633911098938, -1.3521380048998355) +description = Lee Hill district, VA +station = ('kezf', 0.00067296723448366828) +zone = ('vaz056', 0.0025939235582765141) + +[fips5117794311] +centroid = (0.66650017373933501, -1.3570086254302061) +description = Livingston district, VA +station = ('klku', 0.0043272338100735375) +zone = ('vaz056', 0.001349439340905015) + +[fips5117795543] +centroid = (0.6676558609568356, -1.353685256735021) +description = Salem district, VA +station = ('kezf', 0.001530087951758948) +zone = ('vaz056', 0.0017048196700250142) + +[fips51179] +centroid = (0.67053687595310263, -1.351915335793866) +description = Stafford County, VA +station = ('krmn', 0.00036800081786714445) +zone = ('vaz055', 4.4745068285872209e-05) + +[fips5117952] +centroid = (0.64485318663940727, -1.4393336594917985) +description = Coeburn town, VA +station = ('klnp', 0.0011093513745810079) +zone = ('vaz002', 0.0021932277256251072) + +[fips5117990064] +centroid = (0.670083928105625, -1.3504594693983152) +description = Aquia district, VA +station = ('krmn', 0.001093113579828561) +zone = ('vaz055', 0.0012590990139156619) + +[fips5117993535] +centroid = (0.66924315064506179, -1.3517713461305767) +description = Falmouth district, VA +station = ('krmn', 0.00093136907847658312) +zone = ('vaz055', 0.0013413582724772369) + +[fips5117993683] +centroid = (0.67131852165860828, -1.3514571345053399) +description = Garrisonville district, VA +station = ('krmn', 0.0011865517527994902) +zone = ('vaz055', 0.00083037108214490687) + +[fips5117993687] +centroid = (0.668450823524534, -1.3505830038027711) +description = George Washington district, VA +station = ('kezf', 0.0010847006282672343) +zone = ('vaz055', 0.00237767559453665) + +[fips5117993783] +centroid = (0.67213050118651363, -1.3511509688479553) +description = Griffis-Widewater district, VA +station = ('knyg', 0.0015841862874907831) +zone = ('vaz055', 0.0016699447680778841) + +[fips5117993863] +centroid = (0.67019325552997, -1.3533982722461155) +description = Hartwood district, VA +station = ('krmn', 0.0012138685661107138) +zone = ('vaz055', 0.0012077940062881971) + +[fips5117995407] +centroid = (0.67140760326363014, -1.3527150282038374) +description = Rock Hill district, VA +station = ('krmn', 0.0014089143356917943) +zone = ('vaz055', 0.0010290683565922882) + +[fips51181] +centroid = (0.64786204700338279, -1.3418121308995541) +description = Surry County, VA +station = ('kakq', 0.0029078648356849518) +zone = ('vaz089', 0.00012364914070682646) + +[fips5118190136] +centroid = (0.64769531569993988, -1.3391720586065248) +description = Bacons Castle district, VA +station = ('kfaf', 0.0016132921650652339) +zone = ('vaz089', 0.0022214999714244813) + +[fips5118190624] +centroid = (0.64786965663892149, -1.3438984800340956) +description = Carsley district, VA +station = ('kakq', 0.0023887250016950412) +zone = ('vaz089', 0.0015515805344081851) + +[fips5118190848] +centroid = (0.64890133821306795, -1.3425814720338329) +description = Claremont district, VA +station = ('kjgg', 0.0030797115900315281) +zone = ('vaz082', 0.0010756557386704213) + +[fips5118191136] +centroid = (0.64627585687258549, -1.3419484585674273) +description = Dendron district, VA +station = ('kakq', 0.0017519790896128738) +zone = ('vaz089', 0.0015362626031933616) + +[fips5118196023] +centroid = (0.6487566678713701, -1.3398829486641546) +description = Surry district, VA +station = ('kjgg', 0.0014050258997351862) +zone = ('vaz089', 0.0019019881324304044) + +[fips51183] +centroid = (0.64449153696510153, -1.3484367026084236) +description = Sussex County, VA +station = ('kakq', 0.0037551830582241612) +zone = ('vaz088', 8.9348534304412033e-05) + +[fips5118352] +centroid = (0.64090270369068825, -1.3947211937618162) +description = Collinsville CDP, VA +station = ('kmtv', 0.0021221642879401138) +zone = ('vaz043', 0.00085340113817041006) + +[fips5118391000] +centroid = (0.64403768154641294, -1.3490105319598944) +description = Courthouse district, VA +station = ('kemv', 0.004579853575403474) +zone = ('vaz088', 0.0005667806691708122) + +[fips5118393895] +centroid = (0.64206416794801291, -1.3508100187785781) +description = Henry district, VA +station = ('kemv', 0.0021370918196892135) +zone = ('vaz088', 0.0029977002076473128) + +[fips5118394871] +centroid = (0.64547691495419246, -1.3473894876039345) +description = Newville district, VA +station = ('kakq', 0.002784631037322724) +zone = ('vaz088', 0.0013763074736656037) + +[fips5118395975] +centroid = (0.64462643346298809, -1.351637863349384) +description = Stony Creek district, VA +station = ('kemv', 0.0043538260176160682) +zone = ('vaz088', 0.002539623327683445) + +[fips5118396207] +centroid = (0.64493287837305324, -1.3447455755865509) +description = Wakefield district, VA +station = ('kakq', 0.00086775393191523289) +zone = ('vaz089', 0.0036408744183835696) + +[fips5118396263] +centroid = (0.64649529711943865, -1.3455835256137259) +description = Waverly district, VA +station = ('kakq', 0.00168182217963224) +zone = ('vaz088', 0.003112569457477554) + +[fips5118400] +centroid = (0.66783988847316589, -1.3437940744382413) +description = Colonial Beach town, VA +station = ('knyg', 0.0058707173025973856) +zone = ('mdz016', 0.0022390542269773738) + +[fips5118448] +centroid = (0.65033908809098329, -1.3508290603207174) +description = Colonial Heights city, VA +station = ('kptb', 0.0021552423930413459) +zone = ('vaz081', 0.0025131646560197958) + +[fips51185] +centroid = (0.64796037885344016, -1.4235415713539035) +description = Tazewell County, VA +station = ('kjfz', 0.0034923006510938124) +zone = ('vaz007', 3.3067043217359718e-05) + +[fips5118593439] +centroid = (0.6494495286778269, -1.4196226788646453) +description = Eastern district, VA +station = ('kblf', 0.0024746966431866482) +zone = ('vaz007', 0.0034335785825279695) + +[fips5118594887] +centroid = (0.64947162454615703, -1.4231080490210006) +description = Northern district, VA +station = ('kjfz', 0.0045074166919576971) +zone = ('vaz007', 0.001550097480247953) + +[fips5118594927] +centroid = (0.64795584099738501, -1.4280047273171035) +description = Northwestern district, VA +station = ('kjfz', 0.0011660749735299359) +zone = ('vaz007', 0.0035909033788996416) + +[fips5118595767] +centroid = (0.64697030592866145, -1.4228154271186113) +description = Southern district, VA +station = ('kmkj', 0.0037908885547830499) +zone = ('vaz007', 0.0011250184833154365) + +[fips5118596295] +centroid = (0.64708111688287051, -1.4265421937638096) +description = Western district, VA +station = ('kjfz', 0.0009444450208035977) +zone = ('vaz007', 0.0025777032647795279) + +[fips5118624] +centroid = (0.65891886489439966, -1.3642460869592059) +description = Columbia town, VA +station = ('klku', 0.0052220185356083018) +zone = ('vaz048', 0.0021846321262581404) + +[fips51187] +centroid = (0.67907596913165491, -1.3649719344885254) +description = Warren County, VA +station = ('kokv', 0.0042909259276245997) +zone = ('vaz030', 9.0024474646496309e-06) + +[fips5118793599] +centroid = (0.67936361684567614, -1.3660796775114736) +description = Fork district, VA +station = ('kokv', 0.0042590809979740872) +zone = ('vaz030', 0.00090493750257527911) + +[fips5118793831] +centroid = (0.67914887153451076, -1.3634374410101722) +description = Happy Creek district, VA +station = ('kokv', 0.0041684838519362322) +zone = ('vaz030', 0.0011966788133651025) + +[fips5118794919] +centroid = (0.68043228194667227, -1.3653274755104492) +description = North River district, VA +station = ('kokv', 0.003050593212290861) +zone = ('vaz030', 0.0013752524553457431) + +[fips5118795663] +centroid = (0.68026502704445369, -1.363192431689777) +description = Shenandoah district, VA +station = ('kokv', 0.0030916444500115039) +zone = ('vaz030', 0.0018195744989037946) + +[fips5118795807] +centroid = (0.67780144244538609, -1.3657835649505805) +description = South River district, VA +station = ('klua', 0.004461703367670166) +zone = ('vaz030', 0.0014301850052370975) + +[fips5118880] +centroid = (0.65178924725988041, -1.378510575669293) +description = Concord CDP, VA +station = ('klyh', 0.0030534265846547384) +zone = ('vaz046', 0.0024165055499827661) + +[fips51191] +centroid = (0.64137032975717501, -1.4303024009174765) +description = Washington County, VA +station = ('kvji', 0.0016175070568441002) +zone = ('vaz008', 0.00048913145679944047) + +[fips5119193855] +centroid = (0.64102004217629971, -1.430313064879206) +description = Harrison district, VA +station = ('kvji', 0.0013896664024553645) +zone = ('vaz008', 0.00021049006384853163) + +[fips5119194087] +centroid = (0.64249166889499632, -1.4303747099083866) +description = Jefferson district, VA +station = ('kvji', 0.0025030487440789468) +zone = ('vaz008', 0.0015760415483832499) + +[fips5119194463] +centroid = (0.63967875664614215, -1.4307937111019129) +description = Madison district, VA +station = ('kvji', 0.00095452595631744343) +zone = ('vaz008', 0.0012586783253574535) + +[fips5119194727] +centroid = (0.64171337422165453, -1.4277555466597962) +description = Monroe district, VA +station = ('kvji', 0.003523569250420233) +zone = ('vaz008', 0.0023714384376452547) + +[fips5119196047] +centroid = (0.64010313345376446, -1.4271826248795365) +description = Taylor district, VA +station = ('kvji', 0.0036671533391792119) +zone = ('vaz008', 0.0028175283414440672) + +[fips5119196143] +centroid = (0.64042046921836215, -1.4348304831288505) +description = Tyler district, VA +station = ('kvji', 0.0024750476569593391) +zone = ('tnz017', 0.0034169281460569583) + +[fips5119196415] +centroid = (0.63955167922330436, -1.4327040612346831) +description = Wilson district, VA +station = ('kvji', 0.0010315773069825319) +zone = ('vaz008', 0.0022077355405121144) + +[fips51193] +centroid = (0.6651308582213904, -1.3404856457614533) +description = Westmoreland County, VA +station = ('kxsa', 0.0046424638252605729) +zone = ('vaz075', 0.0011838650813656639) + +[fips5119390976] +centroid = (0.66435554806106945, -1.3377648868971042) +description = Cople district, VA +station = ('knui', 0.0035114770193494381) +zone = ('vaz075', 0.0016403283081038282) + +[fips5119394751] +centroid = (0.66516108732403489, -1.3399206477759977) +description = Montross district, VA +station = ('k2w6', 0.0047504125719115787) +zone = ('vaz075', 0.00078001411929511024) + +[fips5119396255] +centroid = (0.66607522097305949, -1.3433848121819412) +description = Washington district, VA +station = ('kxsa', 0.0056072743020987685) +zone = ('vaz057', 0.0031982411167062372) + +[fips51195] +centroid = (0.64532782892948715, -1.4420182551340461) +description = Wise County, VA +station = ('klnp', 0.0012396074711779918) +zone = ('vaz002', 3.7784361736474723e-06) + +[fips5119560] +centroid = (0.68158397236018575, -1.3511041242108317) +description = Countryside CDP, VA +station = ('kiad', 0.0021305237809981481) +zone = ('vaz042', 0.0030984749057757985) + +[fips5119571] +centroid = (0.67530569142820429, -1.350090262448348) +description = County Center CDP, VA +station = ('khef', 0.0022501090261359954) +zone = ('vaz052', 0.0017510101557480042) + +[fips5119591288] +centroid = (0.64601417965783381, -1.4435344575618387) +description = District 1, VA +station = ('klnp', 0.0024982852303565648) +zone = ('vaz002', 0.0013956421309562887) + +[fips5119591438] +centroid = (0.64624304468264793, -1.440528110471986) +description = District 2, VA +station = ('klnp', 0.00076314248488706699) +zone = ('vaz002', 0.0014990747416221762) + +[fips5119591588] +centroid = (0.64337388047200195, -1.4438498211043815) +description = District 3, VA +station = ('klnp', 0.0034211205892831433) +zone = ('vaz002', 0.0024430762267961328) + +[fips5119591738] +centroid = (0.64456110578908599, -1.439305646957304) +description = District 4, VA +station = ('klnp', 0.0013131320202619456) +zone = ('vaz002', 0.002295561324321513) + +[fips5119600] +centroid = (0.64074981284821342, -1.344984877680292) +description = Courtland town, VA +station = ('kfkn', 0.0022762641255727129) +zone = ('vaz092', 0.00060040691139822192) + +[fips51197] +centroid = (0.64405216777920449, -1.4151864184252188) +description = Wythe County, VA +station = ('khlx', 0.0044162548551567576) +zone = ('vaz012', 0.00028378637055552486) + +[fips5119728] +centroid = (0.65935298063924819, -1.3960197361785929) +description = Covington city, VA +station = ('khsp', 0.0036638881218728709) +zone = ('vaz019', 0.000328472564848102) + +[fips5119790304] +centroid = (0.64470921442941032, -1.4180708717201123) +description = Black Lick district, VA +station = ('kmkj', 0.0015599939762795214) +zone = ('vaz012', 0.0024148296714118387) + +[fips5119793471] +centroid = (0.64574178612147504, -1.4141894514498945) +description = East Wytheville district, VA +station = ('khlx', 0.0049970067864480421) +zone = ('vaz012', 0.0015885776713060991) + +[fips5119793615] +centroid = (0.64499476774832898, -1.4122835693600095) +description = Fort Chiswell district, VA +station = ('khlx', 0.0035857280121795411) +zone = ('vaz012', 0.0023399304724528005) + +[fips5119794183] +centroid = (0.64369261250000109, -1.4119596013442541) +description = Lead Mines district, VA +station = ('khlx', 0.0023036044495219651) +zone = ('vaz012', 0.0025808460592736306) + +[fips5119795823] +centroid = (0.64287585076994525, -1.4159131386191641) +description = Speedwell district, VA +station = ('kmkj', 0.0033346878759733241) +zone = ('vaz012', 0.0015921696448101459) + +[fips5119796343] +centroid = (0.6457714741720515, -1.4164367897546402) +description = West Wytheville district, VA +station = ('kmkj', 0.0032215238585796245) +zone = ('vaz012', 0.0018036494007574596) + +[fips51199] +centroid = (0.64962749990165269, -1.3333535846659812) +description = York County, VA +station = ('kphf', 0.0021087919159195599) +zone = ('vaz091', 0.001984992021413549) + +[fips5119904] +centroid = (0.66473184104779937, -1.3854557643617542) +description = Craigsville town, VA +station = ('kshd', 0.0073086841145562458) +zone = ('vaz025', 0.003708017825380292) + +[fips5119991290] +centroid = (0.65083181199211382, -1.3374873271861596) +description = District 1, VA +station = ('kjgg', 0.0014588604575103649) +zone = ('vaz091', 0.0017388256835756152) + +[fips5119991440] +centroid = (0.64793828298511003, -1.3345874277273861) +description = District 2, VA +station = ('kphf', 0.00049665600500326153) +zone = ('vaz094', 0.00098997827075619034) + +[fips5119991590] +centroid = (0.64962749990165269, -1.3333535846659812) +description = District 3, VA +station = ('kphf', 0.0021087919159195599) +zone = ('vaz091', 0.001984992021413549) + +[fips5119991740] +centroid = (0.64844336381734458, -1.3341405536257054) +description = District 4, VA +station = ('kphf', 0.00089501396827158352) +zone = ('vaz094', 0.0016079414771915258) + +[fips5119991890] +centroid = (0.64782721023151302, -1.3338545814277663) +description = District 5, VA +station = ('kphf', 0.0010887382915988749) +zone = ('vaz094', 0.0013399207553096246) + +[fips5120160] +centroid = (0.64893076446425657, -1.3636328480732254) +description = Crewe town, VA +station = ('kfvx', 0.0051385826497609985) +zone = ('vaz067', 0.0012849699834066848) + +[fips5120240] +centroid = (0.6660555162058045, -1.3760942545863695) +description = Crimora CDP, VA +station = ('kshd', 0.0019768048323126636) +zone = ('vaz025', 0.0039042680948051592) + +[fips5120436] +centroid = (0.67589631084707913, -1.3485028331337816) +description = Crosspointe CDP, VA +station = ('kdaa', 0.0011040161644988262) +zone = ('vaz053', 0.0019782690625787629) + +[fips5120560] +centroid = (0.66435818350823994, -1.3735210633102768) +description = Crozet CDP, VA +station = ('kcho', 0.0035959653569475206) +zone = ('vaz037', 0.0020768683607763011) + +[fips5120752] +centroid = (0.67143076378280409, -1.3614058254009731) +description = Culpeper town, VA +station = ('kcjr', 0.0021994493679793237) +zone = ('vaz051', 0.00069876840642734035) + +[fips5120768] +centroid = (0.65437524925268276, -1.3657517650516091) +description = Cumberland CDP, VA +station = ('kfvx', 0.0035432528466232114) +zone = ('vaz061', 0.00034577275140105427) + +[fips5121008] +centroid = (0.66919372292064538, -1.345025194786013) +description = Dahlgren CDP, VA +station = ('knyg', 0.0042423149765503498) +zone = ('mdz016', 0.0014397578828955833) + +[fips5121016] +centroid = (0.6690952165376628, -1.344399930581486) +description = Dahlgren Center CDP, VA +station = ('knyg', 0.0046850283051953203) +zone = ('mdz016', 0.0011736572854179584) + +[fips5121088] +centroid = (0.67455076671354675, -1.3499424156074116) +description = Dale City CDP, VA +station = ('knyg', 0.0026737321069481481) +zone = ('vaz052', 0.0020977671346064236) + +[fips5121152] +centroid = (0.65300556721559511, -1.3947582645551289) +description = Daleville CDP, VA +station = ('kroa', 0.0018579452196688477) +zone = ('vaz023', 0.0028586794257157806) + +[fips5121184] +centroid = (0.63936070529655109, -1.427493607645657) +description = Damascus town, VA +station = ('kvji', 0.0035285390871275068) +zone = ('vaz008', 0.0029027410072094001) + +[fips5121312] +centroid = (0.6455098493171777, -1.4361152199912433) +description = Dante CDP, VA +station = ('klnp', 0.0034854425915001258) +zone = ('vaz003', 0.002628615872768106) + +[fips5121344] +centroid = (0.6384996296567873, -1.3859322916074261) +description = Danville city, VA +station = ('kdan', 0.0010871898419990357) +zone = ('ncz006', 0.0034753565111204443) + +[fips5121648] +centroid = (0.67050753696837662, -1.3777835936759599) +description = Dayton town, VA +station = ('kshd', 0.0026879985909369943) +zone = ('vaz026', 0.0018588328000481167) + +[fips5121776] +centroid = (0.65903512127587494, -1.3221332468773452) +description = Deep Creek CDP, VA +station = ('kmfv', 0.0019283886591550032) +zone = ('vaz099', 0.0014587640223102864) + +[fips5121872] +centroid = (0.66662067127089264, -1.3860183014329643) +description = Deerfield CDP, VA +station = ('kshd', 0.0071449535463071106) +zone = ('vaz504', 0.0028258612226616147) + +[fips5122064] +centroid = (0.65539438190950738, -1.3321722236551836) +description = Deltaville CDP, VA +station = ('kfyj', 0.0060654541078742821) +zone = ('vaz086', 0.0016452451457809748) + +[fips5122160] +centroid = (0.64640738488501559, -1.342578051188499) +description = Dendron town, VA +station = ('kakq', 0.001406622825661417) +zone = ('vaz089', 0.0014903554159158194) + +[fips5122560] +centroid = (0.65520551983114905, -1.3694064495986999) +description = Dillwyn town, VA +station = ('kfvx', 0.0033474066632474988) +zone = ('vaz047', 0.0010853031092625872) + +[fips5122976] +centroid = (0.66497161438043839, -1.3761950298973797) +description = Dooms CDP, VA +station = ('kshd', 0.0029870012668543971) +zone = ('vaz025', 0.0039811532522178823) + +[fips5123376] +centroid = (0.64565575884264426, -1.3718454076020221) +description = Drakes Branch town, VA +station = ('kfvx', 0.0066468919455559558) +zone = ('vaz059', 0.0009033527264674145) + +[fips5123392] +centroid = (0.6806007585793673, -1.3504041599143195) +description = Dranesville CDP, VA +station = ('kiad', 0.0015121074873213731) +zone = ('vaz053', 0.0030168749009366466) + +[fips5123408] +centroid = (0.64577691959931782, -1.4090509228793429) +description = Draper CDP, VA +station = ('kpsk', 0.0024215364143266999) +zone = ('vaz013', 0.0011809381390343763) + +[fips5123584] +centroid = (0.6418601738650398, -1.4476468896118504) +description = Dryden CDP, VA +station = ('k0vg', 0.004381670157537803) +zone = ('vaz001', 0.002857178624326369) + +[fips5123648] +centroid = (0.64761319795863348, -1.4083009374464686) +description = Dublin town, VA +station = ('kpsk', 0.00049374615524562103) +zone = ('vaz013', 0.00075277432129835771) + +[fips5123680] +centroid = (0.64087870541347325, -1.4450646400769396) +description = Duffield town, VA +station = ('klnp', 0.0058862874630523712) +zone = ('vaz005', 0.0027033143828387122) + +[fips5123732] +centroid = (0.68110152844834948, -1.3511530632430575) +description = Dulles Town Center CDP, VA +station = ('kiad', 0.0016547867044821984) +zone = ('vaz042', 0.003203457729123439) + +[fips5123744] +centroid = (0.65645000940099107, -1.3527756783953442) +description = Dumbarton CDP, VA +station = ('kofp', 0.0018555214164892191) +zone = ('vaz071', 0.0017985731718375396) + +[fips5123760] +centroid = (0.67312720636245005, -1.3495308320632065) +description = Dumfries town, VA +station = ('knyg', 0.0012146485094767872) +zone = ('vaz055', 0.0031693646973018704) + +[fips5123952] +centroid = (0.64277617501636386, -1.4393400299435684) +description = Dungannon town, VA +station = ('klnp', 0.0028538264595221879) +zone = ('vaz005', 0.0027434539812598861) + +[fips5123984] +centroid = (0.67883186738247103, -1.347905441837409) +description = Dunn Loring CDP, VA +station = ('kdca', 0.0027722478280230796) +zone = ('vaz053', 0.0011817141555267143) + +[fips5124496] +centroid = (0.65585134401426448, -1.3506542481428374) +description = East Highland Park CDP, VA +station = ('kric', 0.0014385261798086119) +zone = ('vaz071', 0.00085504228494721684) + +[fips5124544] +centroid = (0.65976013104715336, -1.3860792657837366) +description = East Lexington CDP, VA +station = ('khsp', 0.0063006649850264858) +zone = ('vaz024', 0.00046479795522516609) + +[fips5124752] +centroid = (0.65190037237335485, -1.3254205745234764) +description = Eastville town, VA +station = ('kmfv', 0.0057475964252937444) +zone = ('vaz100', 0.00058365916017201805) + +[fips5124816] +centroid = (0.63836946300117348, -1.3610773544357477) +description = Ebony CDP, VA +station = ('kavc', 0.0021994485658939742) +zone = ('ncz010', 0.0035728340846861123) + +[fips5125008] +centroid = (0.67758678440068332, -1.3711775922703315) +description = Edinburg town, VA +station = ('klua', 0.0028477360511070084) +zone = ('vaz027', 0.00063075443759881794) + +[fips5125408] +centroid = (0.67039431745979972, -1.3720845351628379) +description = Elkton town, VA +station = ('kshd', 0.0046458859573418245) +zone = ('vaz038', 0.002825530442222713) + +[fips5125488] +centroid = (0.64967012084198639, -1.400015842033959) +description = Elliston CDP, VA +station = ('kbcb', 0.0028052845300518213) +zone = ('vaz014', 0.0025403340207362682) + +[fips5125792] +centroid = (0.64192897474415334, -1.428157513439823) +description = Emory CDP, VA +station = ('kvji', 0.0033367322719904113) +zone = ('vaz008', 0.0021621273208103056) + +[fips5125808] +centroid = (0.64046919881107778, -1.3532580524940103) +description = Emporia city, VA +station = ('kemv', 0.00076176074964066703) +zone = ('vaz087', 0.00047356676842415436) + +[fips5125877] +centroid = (0.65148496655808774, -1.3495177420938163) +description = Enon CDP, VA +station = ('kfci', 0.0029040122603044734) +zone = ('vaz081', 0.0026349323112128441) + +[fips5125968] +centroid = (0.66023264403554582, -1.3716901605650571) +description = Esmont CDP, VA +station = ('kcho', 0.0056671912074285772) +zone = ('vaz037', 0.0034327380551696395) + +[fips5126128] +centroid = (0.65008812719783904, -1.3514216345083545) +description = Ettrick CDP, VA +station = ('kptb', 0.0016347802718695115) +zone = ('vaz070', 0.0030951715358138944) + +[fips5126384] +centroid = (0.63944439383418428, -1.4561188748806635) +description = Ewing CDP, VA +station = ('k0vg', 0.0029782041834701071) +zone = ('tnz015', 0.0035231151315400274) + +[fips5126416] +centroid = (0.65501259113563359, -1.3234504643171177) +description = Exmore town, VA +station = ('kmfv', 0.0022690846332266423) +zone = ('vaz100', 0.0031749067159584903) + +[fips5126496] +centroid = (0.67811596822988807, -1.3491224948314098) +description = Fairfax city, VA +station = ('kiad', 0.0024825321497772826) +zone = ('vaz053', 0.00037047658968229595) + +[fips5126592] +centroid = (0.67708981934947055, -1.3498097705842602) +description = Fairfax Station CDP, VA +station = ('kdaa', 0.002508913398741288) +zone = ('vaz053', 0.0011173503096381843) + +[fips5126701] +centroid = (0.67811471159282655, -1.3506974450418245) +description = Fair Lakes CDP, VA +station = ('kiad', 0.0016251561444380334) +zone = ('vaz053', 0.0015184487709005081) + +[fips5126736] +centroid = (0.64830618093813785, -1.405755252559387) +description = Fairlawn CDP, VA +station = ('kbcb', 0.0021640082915983902) +zone = ('vaz014', 0.0022400909386981844) + +[fips5126875] +centroid = (0.6783385675226874, -1.3501728339752601) +description = Fair Oaks CDP, VA +station = ('kiad', 0.0017042881829908419) +zone = ('vaz053', 0.0011880415810655023) + +[fips5126944] +centroid = (0.64279156882036659, -1.3694786015099776) +description = Fairview CDP, VA +station = ('kavc', 0.0062514521684770182) +zone = ('vaz065', 0.0029679699222218011) + +[fips5127040] +centroid = (0.66895288493716265, -1.3481333469311345) +description = Fairview Beach CDP, VA +station = ('knyg', 0.0031007727102203494) +zone = ('vaz057', 0.0015136132809337316) + +[fips5127200] +centroid = (0.67865010879416832, -1.3469515495880242) +description = Falls Church city, VA +station = ('kdca', 0.002008742117867644) +zone = ('vaz054', 0.0011253941058949248) + +[fips5127264] +centroid = (0.66901805553143212, -1.352027316118674) +description = Falmouth CDP, VA +station = ('kezf', 0.0011582476020365062) +zone = ('vaz055', 0.0015617284110967325) + +[fips5127296] +centroid = (0.64003499579976664, -1.408499608275223) +description = Fancy Gap CDP, VA +station = ('khlx', 0.002320560791277345) +zone = ('vaz016', 0.0011473608499536117) + +[fips5127440] +centroid = (0.65096344472429923, -1.3683263700443959) +description = Farmville town, VA +station = ('kfvx', 0.0010313709831583828) +zone = ('vaz060', 0.0014025196128232774) + +[fips5127712] +centroid = (0.64460611783049493, -1.3964173047289046) +description = Ferrum CDP, VA +station = ('kmtv', 0.0052349849492175768) +zone = ('vaz033', 0.0020567380141866464) + +[fips5127744] +centroid = (0.64055239865652036, -1.3952587028115531) +description = Fieldale CDP, VA +station = ('kmtv', 0.0015724627431204393) +zone = ('vaz043', 0.0010140935249086324) + +[fips5127824] +centroid = (0.65448782298943642, -1.3940930323107312) +description = Fincastle town, VA +station = ('kroa', 0.0034296957539957816) +zone = ('vaz023', 0.0013354054151450869) + +[fips5127968] +centroid = (0.66503154898695194, -1.3783128996782124) +description = Fishersville CDP, VA +station = ('kshd', 0.0030120236657823346) +zone = ('vaz025', 0.0023972722357568331) + +[fips5128496] +centroid = (0.67658698999197098, -1.3631627785457858) +description = Flint Hill CDP, VA +station = ('kcjr', 0.0053388141395686976) +zone = ('vaz040', 0.0016063356004435315) + +[fips5128528] +centroid = (0.67944676433124118, -1.3510321817390643) +description = Floris CDP, VA +station = ('kiad', 0.00056832257614966596) +zone = ('vaz053', 0.0023654958669900093) + +[fips5128544] +centroid = (0.64423872602295007, -1.4018155906520304) +description = Floyd town, VA +station = ('kbcb', 0.0054890060999398804) +zone = ('vaz017', 0.0007065254036794184) + +[fips5128688] +centroid = (0.6523156560155744, -1.3836472716441299) +description = Forest CDP, VA +station = ('klyh', 0.0014765081040382839) +zone = ('vaz045', 0.0035704749343341692) + +[fips5129008] +centroid = (0.67567056996162622, -1.3464247045000171) +description = Fort Belvoir CDP, VA +station = ('kdaa', 0.0005331860354533622) +zone = ('vaz054', 0.002599199454042593) + +[fips5129040] +centroid = (0.64480704013398449, -1.4129513497851149) +description = Fort Chiswell CDP, VA +station = ('khlx', 0.0036676717769967603) +zone = ('vaz012', 0.0017750915073002911) + +[fips5129136] +centroid = (0.67605386171865678, -1.3449086766051499) +description = Fort Hunt CDP, VA +station = ('kdca', 0.0020335057101025364) +zone = ('vaz054', 0.0022134552868428655) + +[fips5129152] +centroid = (0.64988549447168242, -1.349707180130828) +description = Fort Lee CDP, VA +station = ('kptb', 0.0027178861069965658) +zone = ('vaz081', 0.0015127815777673391) + +[fips5129552] +centroid = (0.67662730709769192, -1.3466670958265339) +description = Franconia CDP, VA +station = ('kdaa', 0.00095654772447264472) +zone = ('vaz054', 0.001763664914637545) + +[fips5129600] +centroid = (0.64025682714769505, -1.3428806912807949) +description = Franklin city, VA +station = ('kfkn', 0.00064302476696307092) +zone = ('vaz092', 0.0023572924693971097) + +[fips5129628] +centroid = (0.67913654950999169, -1.3508039275794885) +description = Franklin Farm CDP, VA +station = ('kiad', 0.00083276764211782071) +zone = ('vaz053', 0.0020290546243642285) + +[fips5129744] +centroid = (0.66844839751687368, -1.3523973084668044) +description = Fredericksburg city, VA +station = ('kezf', 0.00075899012547599144) +zone = ('vaz055', 0.0021601223064080174) + +[fips5129840] +centroid = (0.66590077531432257, -1.3711109730527826) +description = Free Union CDP, VA +station = ('kcho', 0.0015345365244630836) +zone = ('vaz037', 0.0022729605302271847) + +[fips5129920] +centroid = (0.64078272975790607, -1.413280658508381) +description = Fries town, VA +station = ('khlx', 0.0023969332487111966) +zone = ('vaz015', 0.0036401349073047363) + +[fips5129968] +centroid = (0.67936675843832972, -1.3645969854053195) +description = Front Royal town, VA +station = ('kokv', 0.0039592478867208347) +zone = ('vaz030', 0.00040630887044522385) + +[fips5130176] +centroid = (0.67706971315648745, -1.3551153271642276) +description = Gainesville CDP, VA +station = ('khef', 0.0021711827660402601) +zone = ('vaz052', 0.002668777439886316) + +[fips5130208] +centroid = (0.63993614035093371, -1.412221086572788) +description = Galax city, VA +station = ('khlx', 0.0022305126003901712) +zone = ('vaz016', 0.0027265542421195488) + +[fips5130384] +centroid = (0.65957538794582982, -1.319153708044803) +description = Gargatha CDP, VA +station = ('kwal', 0.0029502535322938283) +zone = ('vaz099', 0.0010003124182939014) + +[fips5130480] +centroid = (0.63807842934840353, -1.3591578936842819) +description = Gasburg CDP, VA +station = ('kavc', 0.0033866777749576018) +zone = ('vaz079', 0.0035945285277613095) + +[fips5130496] +centroid = (0.63956817258473575, -1.4412911858742505) +description = Gate City town, VA +station = ('ktri', 0.0040001370433599588) +zone = ('vaz005', 0.0012577637506460111) + +[fips5130618] +centroid = (0.67773866295219187, -1.3491804048559908) +description = George Mason CDP, VA +station = ('kdaa', 0.0025775503628280212) +zone = ('vaz053', 0.00033964804957486484) + +[fips5131056] +centroid = (0.64210565442433265, -1.4271950516238108) +description = Glade Spring town, VA +station = ('kvji', 0.0040984457597065919) +zone = ('vaz008', 0.0029336584395806041) + +[fips5131136] +centroid = (0.65680895381495619, -1.3867653372594029) +description = Glasgow town, VA +station = ('klyh', 0.0065511068904790821) +zone = ('vaz024', 0.0031654734827238707) + +[fips5131200] +centroid = (0.65739355184791159, -1.3523572357071787) +description = Glen Allen CDP, VA +station = ('kofp', 0.00092277337904869206) +zone = ('vaz063', 0.0016469947160790057) + +[fips5131376] +centroid = (0.65229047091446812, -1.4111174625268743) +description = Glen Lyn town, VA +station = ('kpsk', 0.004795761022043302) +zone = ('vaz011', 0.0022926233098556088) + +[fips5131488] +centroid = (0.65059617508980205, -1.3984442428557082) +description = Glenvar CDP, VA +station = ('kroa', 0.0023072452265328028) +zone = ('vaz022', 0.0010169774591060508) + +[fips5131608] +centroid = (0.65281494235469228, -1.3355871174163434) +description = Gloucester Courthouse CDP, VA +station = ('kjgg', 0.0039187269536008476) +zone = ('vaz084', 0.0013931397760729898) + +[fips5131616] +centroid = (0.65049264215857372, -1.3351313595887702) +description = Gloucester Point CDP, VA +station = ('kphf', 0.0023939878033424544) +zone = ('vaz084', 0.0009577748448110655) + +[fips5131808] +centroid = (0.65793387087774413, -1.3595110261518379) +description = Goochland CDP, VA +station = ('klku', 0.0055605441856669885) +zone = ('vaz062', 0.0005352679209269975) + +[fips5131936] +centroid = (0.66559094446550848, -1.3646276682935694) +description = Gordonsville town, VA +station = ('komh', 0.0027540637885359424) +zone = ('vaz050', 0.0030714139708861135) + +[fips5131968] +centroid = (0.66298995009443151, -1.3876478979022588) +description = Goshen town, VA +station = ('khsp', 0.004543765505798103) +zone = ('vaz024', 0.0031287232945321182) + +[fips5132320] +centroid = (0.64812379403130438, -1.421165131044388) +description = Gratton CDP, VA +station = ('kmkj', 0.0042346474244079457) +zone = ('vaz007', 0.0018700953978596781) + +[fips5132496] +centroid = (0.68088870299936133, -1.3491842969402228) +description = Great Falls CDP, VA +station = ('kiad', 0.0024268449043706522) +zone = ('mdz009', 0.0025461302433741205) + +[fips5132560] +centroid = (0.66337067621746149, -1.3158320497722849) +description = Greenbackville CDP, VA +station = ('kwal', 0.0016672922331223701) +zone = ('mdz024', 0.0035947522704454847) + +[fips5132592] +centroid = (0.67843806874334356, -1.3508683302288873) +description = Greenbriar CDP, VA +station = ('kiad', 0.0012799580380705997) +zone = ('vaz053', 0.0017287365692950855) + +[fips5132624] +centroid = (0.65868338507172053, -1.3208594008694845) +description = Greenbush CDP, VA +station = ('kmfv', 0.0019745330217654077) +zone = ('vaz099', 0.00063923051477385957) + +[fips5132944] +centroid = (0.66328532961703901, -1.3814955075692239) +description = Greenville CDP, VA +station = ('kshd', 0.0057662915445929434) +zone = ('vaz025', 0.0028057081054858198) + +[fips5133232] +centroid = (0.64487838919380602, -1.3852069327702974) +description = Gretna town, VA +station = ('kdan', 0.0066857746185176375) +zone = ('vaz044', 0.0024423671970737215) + +[fips5133488] +centroid = (0.66793596884848816, -1.3757321685797508) +description = Grottoes town, VA +station = ('kshd', 0.0010477908348487505) +zone = ('vaz026', 0.0042607227172275462) + +[fips5133584] +centroid = (0.67641540667320732, -1.3456101593381116) +description = Groveton CDP, VA +station = ('kdaa', 0.0013497326480805636) +zone = ('vaz054', 0.001779462930398012) + +[fips5133648] +centroid = (0.65053466968696183, -1.4328571964232533) +description = Grundy town, VA +station = ('kjfz', 0.0055525825503716687) +zone = ('vaz004', 0.00084978190318011379) + +[fips5133824] +centroid = (0.65444715681786492, -1.3313996711150808) +description = Gwynn CDP, VA +station = ('kphf', 0.0070231253843045871) +zone = ('vaz086', 0.0010572058527751451) + +[fips5134064] +centroid = (0.64160399443743199, -1.3775464732437839) +description = Halifax town, VA +station = ('kdan', 0.0066177145194175092) +zone = ('vaz058', 0.00016259238023531213) + +[fips5134176] +centroid = (0.66108577842721317, -1.3192867544936824) +description = Hallwood town, VA +station = ('kwal', 0.0019535699675893637) +zone = ('vaz099', 0.0021024297173207664) + +[fips5134240] +centroid = (0.68303221166690564, -1.3554942555981282) +description = Hamilton town, VA +station = ('kjyo', 0.0015968687709967894) +zone = ('vaz042', 0.00086141211522454094) + +[fips5134304] +centroid = (0.65003159598336691, -1.3696651423004307) +description = Hampden-Sydney CDP, VA +station = ('kfvx', 0.0019415998733038223) +zone = ('vaz060', 0.00059552036668742727) + +[fips5135000] +centroid = (0.64661010487763471, -1.3316364599346993) +description = Hampton city, VA +station = ('klfi', 0.00095990240898522416) +zone = ('vaz094', 0.0029496148084802638) + +[fips5135160] +centroid = (0.65924707406023719, -1.3504491545024357) +description = Hanover CDP, VA +station = ('kofp', 0.0014932810328928364) +zone = ('vaz063', 0.0016121824035400713) + +[fips5135240] +centroid = (0.65728399753076405, -1.3235394935622617) +description = Harborton CDP, VA +station = ('kmfv', 0.00093485638173047684) +zone = ('vaz099', 0.0031684821790313867) + +[fips5135624] +centroid = (0.67083497818934335, -1.3766144325166338) +description = Harrisonburg city, VA +station = ('kshd', 0.0029766765624149615) +zone = ('vaz026', 0.0013019507182647516) + +[fips5135640] +centroid = (0.66691325826669701, -1.3758296452184748) +description = Harriston CDP, VA +station = ('kshd', 0.0013690944650717775) +zone = ('vaz025', 0.0041965020931251026) + +[fips5135912] +centroid = (0.67635547206669377, -1.3461468655363922) +description = Hayfield CDP, VA +station = ('kdaa', 0.00097144306301207007) +zone = ('vaz054', 0.0018829755475075415) + +[fips5135976] +centroid = (0.67740240781850269, -1.3550107644887406) +description = Haymarket town, VA +station = ('khef', 0.0023325585424403372) +zone = ('vaz052', 0.0028111053316504171) + +[fips5136008] +centroid = (0.64955739002560009, -1.4363015513421864) +description = Haysi town, VA +station = ('klnp', 0.0052645603075407834) +zone = ('vaz003', 0.0017721766448078966) + +[fips5136216] +centroid = (0.66168357114931375, -1.334809939753723) +description = Heathsville CDP, VA +station = ('knui', 0.0042468255329408686) +zone = ('vaz077', 0.00089147384157754761) + +[fips5136445] +centroid = (0.64524941128619495, -1.3939977547868647) +description = Henry Fork CDP, VA +station = ('kroa', 0.0061964124945529967) +zone = ('vaz033', 0.00041139835462191809) + +[fips5136648] +centroid = (0.68016198280541584, -1.3506598331964439) +description = Herndon town, VA +station = ('kiad', 0.0010711959522947492) +zone = ('vaz053', 0.0027269820784476466) + +[fips5137032] +centroid = (0.65541082291106101, -1.3496277851031548) +description = Highland Springs CDP, VA +station = ('kric', 0.00064087338965048747) +zone = ('vaz071', 0.0013040025372642297) + +[fips5137288] +centroid = (0.68417658915085333, -1.3565607041309742) +description = Hillsboro town, VA +station = ('kjyo', 0.0029634960858736822) +zone = ('vaz042', 0.0022661829179802095) + +[fips5137336] +centroid = (0.64162832432720474, -1.4090676605868697) +description = Hillsville town, VA +station = ('khlx', 0.0011631790327003074) +zone = ('vaz016', 0.00056388179667075998) + +[fips5137544] +centroid = (0.64528164751747941, -1.4083927417651234) +description = Hiwassee CDP, VA +station = ('kpsk', 0.0028219323361877405) +zone = ('vaz013', 0.0016443263164695363) + +[fips5137880] +centroid = (0.65175922759674598, -1.3954448247229856) +description = Hollins CDP, VA +station = ('kroa', 0.00049753483004208498) +zone = ('vaz022', 0.0018571501012896788) + +[fips5138032] +centroid = (0.66539920259388452, -1.3689846558783707) +description = Hollymead CDP, VA +station = ('kcho', 0.00023464692748629477) +zone = ('vaz037', 0.0024052101645448097) + +[fips5138280] +centroid = (0.64604378044194777, -1.4306215692777884) +description = Honaker town, VA +station = ('kjfz', 0.0024732496038423323) +zone = ('vaz006', 0.002274699155759606) + +[fips5138424] +centroid = (0.65085090589413064, -1.3491210811147158) +description = Hopewell city, VA +station = ('kptb', 0.0035614984208643891) +zone = ('vaz081', 0.0019267632217044484) + +[fips5138504] +centroid = (0.66263102313375888, -1.3170264483925949) +description = Horntown CDP, VA +station = ('kwal', 0.00057668019276379146) +zone = ('vaz099', 0.0043406240388712703) + +[fips5138552] +centroid = (0.63935337491369282, -1.3954306002895822) +description = Horse Pasture CDP, VA +station = ('kmtv', 0.00090193218314856493) +zone = ('vaz043', 0.0014114154942512641) + +[fips5138632] +centroid = (0.66324761305190338, -1.3931897022497766) +description = Hot Springs CDP, VA +station = ('khsp', 0.00090454093263430898) +zone = ('vaz020', 0.0015164008968773981) + +[fips5139064] +centroid = (0.67703887318860467, -1.3452003734830356) +description = Huntington CDP, VA +station = ('kdca', 0.0011635852279713783) +zone = ('vaz054', 0.001203340199888888) + +[fips5139224] +centroid = (0.64745388430451145, -1.38410439082852) +description = Hurt town, VA +station = ('klyh', 0.004104408848430466) +zone = ('vaz045', 0.0035381180520863051) + +[fips5139304] +centroid = (0.67624752345245809, -1.3452926839471737) +description = Hybla Valley CDP, VA +station = ('kdaa', 0.0015031262593507573) +zone = ('vaz054', 0.0019649088636129347) + +[fips5139448] +centroid = (0.678744723092919, -1.3474439942364744) +description = Idylwood CDP, VA +station = ('kdca', 0.0024030614020111988) +zone = ('vaz053', 0.0013604190572590596) + +[fips5139528] +centroid = (0.63927757526427864, -1.4163454915814684) +description = Independence town, VA +station = ('kgev', 0.0050451941480794491) +zone = ('vaz015', 0.0011557699830869398) + +[fips5139544] +centroid = (0.6745382177962248, -1.3512064005049986) +description = Independent Hill CDP, VA +station = ('khef', 0.0017943867005230565) +zone = ('vaz052', 0.0013209623795760368) + +[fips5139920] +centroid = (0.65718069149233849, -1.3539646315883878) +description = Innsbrook CDP, VA +station = ('kofp', 0.002136003738473025) +zone = ('vaz063', 0.0022012711356026709) + +[fips5140024] +centroid = (0.65971550297817994, -1.3926081061831344) +description = Iron Gate town, VA +station = ('khsp', 0.0027019690190658828) +zone = ('vaz019', 0.0029875709566941104) + +[fips5140088] +centroid = (0.65733239551092182, -1.3337805794674817) +description = Irvington town, VA +station = ('kfyj', 0.0053637614212371397) +zone = ('vaz085', 0.0010640461122117468) + +[fips5140216] +centroid = (0.64303467573187678, -1.4131709122050158) +description = Ivanhoe CDP, VA +station = ('khlx', 0.0025097000805704662) +zone = ('vaz012', 0.0020043929831676317) + +[fips5140232] +centroid = (0.64404494211610119, -1.3420648545752427) +description = Ivor town, VA +station = ('kakq', 0.0020546603441871109) +zone = ('vaz093', 0.002591513576212635) + +[fips5140248] +centroid = (0.66435273808097373, -1.3718331379373805) +description = Ivy CDP, VA +station = ('kcho', 0.0023869160431045865) +zone = ('vaz037', 0.0009503448358435633) + +[fips5140536] +centroid = (0.64256026033459968, -1.352087564884453) +description = Jarratt town, VA +station = ('kemv', 0.0022606197300772224) +zone = ('vaz087', 0.0027443682748535792) + +[fips5141144] +centroid = (0.66516503176814434, -1.3800021165947549) +description = Jolivue CDP, VA +station = ('kshd', 0.0035633386407010214) +zone = ('vaz025', 0.0012292636460031025) + +[fips5141272] +centroid = (0.64031993825344724, -1.4506078755944438) +description = Jonesville town, VA +station = ('k0vg', 0.0015713740696909615) +zone = ('vaz001', 0.00037432607281463504) + +[fips5141656] +centroid = (0.65661503028176715, -1.3223325460246302) +description = Keller town, VA +station = ('kmfv', 0.00050271189647015286) +zone = ('vaz099', 0.0029962095127358274) + +[fips5141832] +centroid = (0.64508868391537877, -1.3635975051558724) +description = Kenbridge town, VA +station = ('kavc', 0.0048634321622922742) +zone = ('vaz066', 0.0015859151731788619) + +[fips5142104] +centroid = (0.64335679369862486, -1.4471148958025501) +description = Keokee CDP, VA +station = ('k0vg', 0.0055892594422526721) +zone = ('vaz001', 0.004056007014445479) + +[fips5142264] +centroid = (0.64645265872581237, -1.3697407674169197) +description = Keysville town, VA +station = ('kfvx', 0.0054670612849451435) +zone = ('vaz059', 0.0025702704774988416) + +[fips5142424] +centroid = (0.65817650655035631, -1.3331322769168283) +description = Kilmarnock town, VA +station = ('kfyj', 0.0062277230352612862) +zone = ('vaz078', 0.0012238351320775897) + +[fips5142536] +centroid = (0.65736419540989321, -1.3417851655626105) +description = King and Queen Court House CDP, VA +station = ('kfyj', 0.0029546291006693408) +zone = ('vaz073', 0.00096295643836750305) + +[fips5142568] +centroid = (0.66809461927749447, -1.3471385616173754) +description = King George CDP, VA +station = ('knyg', 0.0041638073742392293) +zone = ('vaz057', 0.00040018275764905494) + +[fips5142664] +centroid = (0.67720260252573439, -1.3480938501301618) +description = Kings Park CDP, VA +station = ('kdaa', 0.0016599588044837127) +zone = ('vaz053', 0.00084723258303013519) + +[fips5142680] +centroid = (0.67743954842498511, -1.3490666093887609) +description = Kings Park West CDP, VA +station = ('kdaa', 0.0022923085455114722) +zone = ('vaz053', 0.00048080813058152763) + +[fips5142746] +centroid = (0.67652995263201565, -1.3464236398491733) +description = Kingstowne CDP, VA +station = ('kdaa', 0.00095691133090023328) +zone = ('vaz054', 0.0017760959827093814) + +[fips5142792] +centroid = (0.65776178141349739, -1.3442609674664423) +description = King William CDP, VA +station = ('kxsa', 0.0034427334841416759) +zone = ('vaz072', 0.00099916683873469119) + +[fips5143176] +centroid = (0.64056014791839933, -1.3629980194643974) +description = La Crosse town, VA +station = ('kavc', 0.00060087222762639865) +zone = ('vaz065', 0.0037778646534502741) + +[fips5143224] +centroid = (0.6498460325772949, -1.3998347815773569) +description = Lafayette CDP, VA +station = ('kbcb', 0.0029613359117345874) +zone = ('vaz022', 0.0022214525961664904) + +[fips5143352] +centroid = (0.67808751936308054, -1.3466741120501271) +description = Lake Barcroft CDP, VA +station = ('kdca', 0.0017048231938725025) +zone = ('vaz054', 0.00082040609830658247) + +[fips5143359] +centroid = (0.66300406980808013, -1.3529547317233064) +description = Lake Caroline CDP, VA +station = ('kezf', 0.0049653900792716015) +zone = ('vaz064', 0.0024536325202359262) + +[fips5143392] +centroid = (0.68604517355462347, -1.3670330461620832) +description = Lake Holiday CDP, VA +station = ('kokv', 0.0036287544669264924) +zone = ('vaz028', 0.0020079281142408823) + +[fips5143420] +centroid = (0.66353070545657689, -1.3535592439630268) +description = Lake Land'Or CDP, VA +station = ('kezf', 0.004573673152138598) +zone = ('vaz064', 0.0028336998878876023) + +[fips5143424] +centroid = (0.66182555368396356, -1.3671491454639257) +description = Lake Monticello CDP, VA +station = ('kcho', 0.0040651531844157233) +zone = ('vaz048', 0.0015531364153351704) + +[fips5143430] +centroid = (0.66905041393576414, -1.3571063289617327) +description = Lake of the Woods CDP, VA +station = ('kcjr', 0.003646391280867761) +zone = ('vaz056', 0.0029128246971980342) + +[fips5143432] +centroid = (0.67510717767908246, -1.3492075796324445) +description = Lake Ridge CDP, VA +station = ('kdaa', 0.001757587707062038) +zone = ('vaz053', 0.0027766050883742868) + +[fips5143464] +centroid = (0.65647229725553902, -1.3522306818831162) +description = Lakeside CDP, VA +station = ('kofp', 0.0016329970157960808) +zone = ('vaz071', 0.001557279411444547) + +[fips5143600] +centroid = (0.66853255729340488, -1.3565829047190594) +description = Lake Wilderness CDP, VA +station = ('krmn', 0.0040580754601276655) +zone = ('vaz056', 0.0022626539905047033) + +[fips5144048] +centroid = (0.68216668543754921, -1.3523463099460609) +description = Lansdowne CDP, VA +station = ('kjyo', 0.0011240192091867983) +zone = ('vaz042', 0.0020608154116015481) + +[fips5144280] +centroid = (0.65687461310141615, -1.3527532334611636) +description = Laurel CDP, VA +station = ('kofp', 0.0015097554146388218) +zone = ('vaz071', 0.0021194919583301611) + +[fips5144430] +centroid = (0.67554520296145548, -1.3481457038622386) +description = Laurel Hill CDP, VA +station = ('kdaa', 0.00083486703723249453) +zone = ('vaz053', 0.0023693007897752335) + +[fips5144476] +centroid = (0.64033512261793957, -1.3925391307710955) +description = Laurel Park CDP, VA +station = ('kmtv', 0.0033617263529571811) +zone = ('vaz043', 0.0012215204610575474) + +[fips5144520] +centroid = (0.64152196396258832, -1.3588064367328079) +description = Lawrenceville town, VA +station = ('kavc', 0.0030422325909846) +zone = ('vaz079', 0.00016160847180394288) + +[fips5144620] +centroid = (0.6520838413843244, -1.3938179684206169) +description = Laymantown CDP, VA +station = ('kroa', 0.0016768821965018814) +zone = ('vaz022', 0.0030971276613692596) + +[fips5144696] +centroid = (0.64401595219722563, -1.4325414663615674) +description = Lebanon town, VA +station = ('kvji', 0.0038236659330962981) +zone = ('vaz006', 0.0006457255788194057) + +[fips5144952] +centroid = (0.65938359371432809, -1.3208683544085473) +description = Lee Mont CDP, VA +station = ('kmfv', 0.0025623563626966071) +zone = ('vaz099', 0.00051644774336219988) + +[fips5144984] +centroid = (0.68253728865091767, -1.3536001195741085) +description = Leesburg town, VA +station = ('kjyo', 0.00043144882360464273) +zone = ('vaz042', 0.0011198053140520411) + +[fips5145512] +centroid = (0.6594260924816141, -1.3865649560079816) +description = Lexington city, VA +station = ('khsp', 0.0061068043194863987) +zone = ('vaz024', 0.00054655707277920923) + +[fips5145784] +centroid = (0.67746331980939734, -1.3465960609259777) +description = Lincolnia CDP, VA +station = ('kdca', 0.0017492952555235573) +zone = ('vaz054', 0.0010496335888368511) + +[fips5145957] +centroid = (0.67640078081407562, -1.3539449268211325) +description = Linton Hall CDP, VA +station = ('khef', 0.0010408522516466609) +zone = ('vaz052', 0.0015378164482440209) + +[fips5146328] +centroid = (0.67685109321438264, -1.3523165869888996) +description = Loch Lomond CDP, VA +station = ('khef', 0.0012131303037786242) +zone = ('vaz052', 0.0013144261598805279) + +[fips5146760] +centroid = (0.67772075587406644, -1.3486154941369979) +description = Long Branch CDP, VA +station = ('kdaa', 0.0023108159833628711) +zone = ('vaz053', 0.00018887861904379554) + +[fips5147064] +centroid = (0.6754116852736779, -1.347679631138786) +description = Lorton CDP, VA +station = ('kdaa', 0.00055291157473429792) +zone = ('vaz053', 0.0025959431241886059) + +[fips5147136] +centroid = (0.68034347959433072, -1.3527680338532204) +description = Loudoun Valley Estates CDP, VA +station = ('kiad', 0.0011419746168152623) +zone = ('vaz042', 0.0025846375132466534) + +[fips5147144] +centroid = (0.6635196749757043, -1.3613424350425407) +description = Louisa town, VA +station = ('klku', 0.00041653507646288084) +zone = ('vaz049', 0.00083859723751827594) + +[fips5147208] +centroid = (0.68546551480345108, -1.3550514132070197) +description = Lovettsville town, VA +station = ('kjyo', 0.0034723411029380924) +zone = ('vaz042', 0.0032043545817796479) + +[fips5147224] +centroid = (0.65910416650108383, -1.3763613248685098) +description = Lovingston CDP, VA +station = ('kcho', 0.0085657043138402493) +zone = ('vaz036', 0.00055425607451655128) + +[fips5147296] +centroid = (0.68158131945972278, -1.3501087629384194) +description = Lowes Island CDP, VA +station = ('kiad', 0.0024315392444140111) +zone = ('mdz009', 0.002527102788016117) + +[fips5147352] +centroid = (0.65967714064122118, -1.3938881830164247) +description = Low Moor CDP, VA +station = ('khsp', 0.0027082732561621026) +zone = ('vaz019', 0.0019759571761988393) + +[fips5147496] +centroid = (0.64504690073308601, -1.3660384528345415) +description = Lunenburg CDP, VA +station = ('kavc', 0.0055792018961286702) +zone = ('vaz066', 0.00044093128393919397) + +[fips5147528] +centroid = (0.6748173133969112, -1.3692889191268709) +description = Luray town, VA +station = ('klua', 0.00063032871562778878) +zone = ('vaz029', 0.00087049791754416708) + +[fips5147672] +centroid = (0.65273596620603969, -1.3822214947248834) +description = Lynchburg city, VA +station = ('klyh', 0.0014386475642360504) +zone = ('vaz045', 0.0033182202574457641) + +[fips5147720] +centroid = (0.66360310171394965, -1.3779285781769233) +description = Lyndhurst CDP, VA +station = ('kshd', 0.0043298507220191056) +zone = ('vaz025', 0.0034869247628738251) + +[fips5148344] +centroid = (0.64551642920845753, -1.3565032129854135) +description = McKenney town, VA +station = ('kptb', 0.004483787449054622) +zone = ('vaz080', 0.0020138431840788858) + +[fips5148376] +centroid = (0.67969308264857509, -1.3472704910555338) +description = McLean CDP, VA +station = ('kdca', 0.0027137290378478509) +zone = ('vaz054', 0.0019686184438685705) + +[fips5148445] +centroid = (0.64260747149086617, -1.4237923926207077) +description = McMullin CDP, VA +station = ('kmkj', 0.0034768330891312631) +zone = ('vaz009', 0.00071440297283038986) + +[fips5148450] +centroid = (0.67984312860436913, -1.3511290475125499) +description = McNair CDP, VA +station = ('kiad', 0.00058880172580395396) +zone = ('vaz053', 0.0026977076783817932) + +[fips5148488] +centroid = (0.66983982635644124, -1.3658705521604997) +description = Madison town, VA +station = ('komh', 0.0037152105253649803) +zone = ('vaz039', 0.00066794813205312508) + +[fips5148520] +centroid = (0.65363105831292501, -1.3806987298591034) +description = Madison Heights CDP, VA +station = ('klyh', 0.0026571282832899557) +zone = ('vaz035', 0.0027444353920496913) + +[fips5148776] +centroid = (0.66166510556582769, -1.3191981441275586) +description = Makemie Park CDP, VA +station = ('kwal', 0.0016698820086063475) +zone = ('vaz099', 0.0026696309329947254) + +[fips5148952] +centroid = (0.67627251656734655, -1.3523636061589484) +description = Manassas city, VA +station = ('khef', 0.00069270915937869894) +zone = ('vaz052', 0.00073685435818852843) + +[fips5148968] +centroid = (0.6766465406260489, -1.3517344847767743) +description = Manassas Park city, VA +station = ('khef', 0.0013001968247631577) +zone = ('vaz052', 0.0011984742207255257) + +[fips5148996] +centroid = (0.65430691961246712, -1.3533965269168635) +description = Manchester CDP, VA +station = ('kfci', 0.0016232719322638537) +zone = ('vaz070', 0.0020391404887087241) + +[fips5149144] +centroid = (0.67809074822219662, -1.3483978341259817) +description = Mantua CDP, VA +station = ('kdaa', 0.0025643357262888663) +zone = ('vaz053', 0.00037141992336122304) + +[fips5149320] +centroid = (0.65590290104036841, -1.322172446972345) +description = Mappsburg CDP, VA +station = ('kmfv', 0.0012244152908464621) +zone = ('vaz099', 0.0035620093587246941) + +[fips5149336] +centroid = (0.66049133673727645, -1.3189235514763424) +description = Mappsville CDP, VA +station = ('kwal', 0.0021078224205462888) +zone = ('vaz099', 0.0017315454966711945) + +[fips5149464] +centroid = (0.64295819540405441, -1.4226858887815281) +description = Marion town, VA +station = ('kmkj', 0.002525521226108979) +zone = ('vaz009', 0.00033479231945645152) + +[fips5149656] +centroid = (0.67834327991166776, -1.3586476292241689) +description = Marshall CDP, VA +station = ('khwy', 0.0052762886675666127) +zone = ('vaz501', 0.00058799425386834908) + +[fips5149784] +centroid = (0.64024832739423787, -1.3938836102537844) +description = Martinsville city, VA +station = ('kmtv', 0.0023146307940780843) +zone = ('vaz043', 0.0001398717647908961) + +[fips5149792] +centroid = (0.67433102976072057, -1.3483934708028518) +description = Marumsco CDP, VA +station = ('kdaa', 0.0017265241262625298) +zone = ('vaz053', 0.0035446601790906601) + +[fips5149998] +centroid = (0.67474940263571614, -1.3471542346740581) +description = Mason Neck CDP, VA +station = ('kdaa', 0.00098470919725978756) +zone = ('vaz053', 0.0033604922356680928) + +[fips5150020] +centroid = (0.67014436885762163, -1.3758715680271074) +description = Massanetta Springs CDP, VA +station = ('kshd', 0.0024508168900257182) +zone = ('vaz026', 0.0020814423945833957) + +[fips5150030] +centroid = (0.67039985015352854, -1.3740610332742587) +description = Massanutten CDP, VA +station = ('kshd', 0.0034501868229916029) +zone = ('vaz026', 0.0026640241165657116) + +[fips5150104] +centroid = (0.65350809986712188, -1.3321700594469112) +description = Mathews CDP, VA +station = ('kphf', 0.0059145405707989093) +zone = ('vaz086', 0.00031706127167837017) + +[fips5150136] +centroid = (0.64982657215613515, -1.3520628335689522) +description = Matoaca CDP, VA +station = ('kptb', 0.0010946245560102905) +zone = ('vaz070', 0.0029876449472713328) + +[fips5150200] +centroid = (0.67948722106330239, -1.3694609562312399) +description = Maurertown CDP, VA +station = ('klua', 0.0046460280106508265) +zone = ('vaz027', 0.0019262239001356233) + +[fips5150312] +centroid = (0.64540287808732288, -1.4130504146734582) +description = Max Meadows CDP, VA +station = ('khlx', 0.0042217772801967672) +zone = ('vaz012', 0.0019531994171998342) + +[fips5150568] +centroid = (0.65328488970908438, -1.3521850066165919) +description = Meadowbrook CDP, VA +station = ('kfci', 0.00072457872534450226) +zone = ('vaz070', 0.0017808002308551695) + +[fips5150776] +centroid = (0.64169443739927035, -1.4289541864301882) +description = Meadow View CDP, VA +station = ('kvji', 0.0026700078351633086) +zone = ('vaz008', 0.0014908517000991651) + +[fips5150856] +centroid = (0.65661567605359039, -1.3500495264636068) +description = Mechanicsville CDP, VA +station = ('kofp', 0.0017733791185243711) +zone = ('vaz071', 0.0017571142190536051) + +[fips5150984] +centroid = (0.65710227384904629, -1.3219264428142763) +description = Melfa town, VA +station = ('kmfv', 0.00035764601443507541) +zone = ('vaz099', 0.0024124825937518303) + +[fips51510] +centroid = (0.67750789551849311, -1.3453351478078746) +description = Alexandria city, VA +station = ('kdca', 0.00086227713485823585) +zone = ('vaz054', 0.0007242014012466397) + +[fips5151090020] +centroid = (0.67750789551849311, -1.3453351478078746) +description = Alexandria city, VA +station = ('kdca', 0.00086227713485823585) +zone = ('vaz054', 0.0007242014012466397) + +[fips5151192] +centroid = (0.67844398540950779, -1.3480865197473035) +description = Merrifield CDP, VA +station = ('kdaa', 0.0028169171874639831) +zone = ('vaz053', 0.00079028481908927453) + +[fips5151208] +centroid = (0.64911201690707609, -1.4035909570204517) +description = Merrimac CDP, VA +station = ('kbcb', 0.00044354939071399008) +zone = ('vaz014', 0.00054934314275853794) + +[fips5151362] +centroid = (0.65916062790238583, -1.3195635637130487) +description = Metompkin CDP, VA +station = ('kmfv', 0.0030225144526205344) +zone = ('vaz099', 0.00057679408465379119) + +[fips5151432] +centroid = (0.66439331698608262, -1.3828952267227383) +description = Middlebrook CDP, VA +station = ('kshd', 0.0057589152693708874) +zone = ('vaz025', 0.0022128060831323997) + +[fips5151448] +centroid = (0.68017187882227481, -1.3568138466856834) +description = Middleburg town, VA +station = ('kjyo', 0.0030577670021237221) +zone = ('vaz042', 0.0025208330910751792) + +[fips51515] +centroid = (0.65167375882327583, -1.3878981257571175) +description = Bedford city, VA +station = ('klyh', 0.0044666988639681209) +zone = ('vaz034', 0.00040358332265298262) + +[fips5151512] +centroid = (0.68118617691707128, -1.3662049921517669) +description = Middletown town, VA +station = ('kokv', 0.0027293483309686517) +zone = ('vaz030', 0.0023092324573231377) + +[fips5151544] +centroid = (0.67367063207835098, -1.356451097453949) +description = Midland CDP, VA +station = ('khwy', 0.00032294106087654045) +zone = ('vaz502', 7.3468110685258683e-05) + +[fips5151590204] +centroid = (0.65167375882327583, -1.3878981257571175) +description = Bedford city, VA +station = ('klyh', 0.0044666988639681209) +zone = ('vaz034', 0.00040358332265298262) + +[fips51520] +centroid = (0.63908640935130778, -1.4339199972179624) +description = Bristol city, VA +station = ('kvji', 0.0020900460518171781) +zone = ('tnz017', 0.0027429045156586499) + +[fips5152090484] +centroid = (0.63908640935130778, -1.4339199972179624) +description = Bristol city, VA +station = ('kvji', 0.0020900460518171781) +zone = ('tnz017', 0.0027429045156586499) + +[fips5152120] +centroid = (0.66335749898160901, -1.3597203260357371) +description = Mineral town, VA +station = ('klku', 0.00088147668564157017) +zone = ('vaz049', 0.00093415008121007655) + +[fips5152408] +centroid = (0.66002854523281762, -1.318789806895762) +description = Modest Town CDP, VA +station = ('kwal', 0.0024135797687340151) +zone = ('vaz099', 0.0014836795211875221) + +[fips5152658] +centroid = (0.67393794670658635, -1.3498656909334938) +description = Montclair CDP, VA +station = ('knyg', 0.002065768477012851) +zone = ('vaz052', 0.0024923348309202433) + +[fips5152680] +centroid = (0.6704081753740605, -1.3889484299943826) +description = Monterey town, VA +station = ('khsp', 0.0087687013070856749) +zone = ('vaz503', 0.0011333132800542946) + +[fips5152904] +centroid = (0.65483814547689667, -1.3504431505698087) +description = Montrose CDP, VA +station = ('kric', 0.00080475484126946867) +zone = ('vaz071', 0.00069182032221404744) + +[fips5152952] +centroid = (0.66483951040935496, -1.3408058613193168) +description = Montross town, VA +station = ('kxsa', 0.0043056504413951889) +zone = ('vaz075', 0.0015409818240457887) + +[fips5152968] +centroid = (0.65249432537110097, -1.3914724727987391) +description = Montvale CDP, VA +station = ('kroa', 0.0035532006193577984) +zone = ('vaz023', 0.003232647515097459) + +[fips51530] +centroid = (0.65854175160292117, -1.3850300261973152) +description = Buena Vista city, VA +station = ('klyh', 0.0075595697056482719) +zone = ('vaz024', 0.0018950031000576214) + +[fips5153031] +centroid = (0.68067586009708059, -1.3525131983291367) +description = Moorefield Station CDP, VA +station = ('kiad', 0.001301214524764767) +zone = ('vaz042', 0.0024979877745754356) + +[fips5153090556] +centroid = (0.65854175160292117, -1.3850300261973152) +description = Buena Vista city, VA +station = ('klyh', 0.0075595697056482719) +zone = ('vaz024', 0.0018950031000576214) + +[fips5153480] +centroid = (0.64692150652277558, -1.3849415903641167) +description = Motley CDP, VA +station = ('klyh', 0.004856491278891437) +zone = ('vaz045', 0.0043922334212187289) + +[fips5153584] +centroid = (0.64145288383079435, -1.378590023056844) +description = Mountain Road CDP, VA +station = ('kdan', 0.0058296118122181124) +zone = ('vaz058', 0.00075235797155186136) + +[fips5153864] +centroid = (0.66952154811404752, -1.3777814992808575) +description = Mount Crawford town, VA +station = ('kshd', 0.0017358388075580879) +zone = ('vaz026', 0.0027636805547675922) + +[fips5153944] +centroid = (0.64002356389316606, -1.3861579452264166) +description = Mount Hermon CDP, VA +station = ('kdan', 0.0021912966169981224) +zone = ('vaz044', 0.0024730831598017262) + +[fips5153992] +centroid = (0.67612549003115852, -1.3726292349690925) +description = Mount Jackson town, VA +station = ('klua', 0.0023448297193431502) +zone = ('vaz027', 0.0023224227418908194) + +[fips51540] +centroid = (0.66388237184756127, -1.3698283131321998) +description = Charlottesville city, VA +station = ('kcho', 0.0017391471764452195) +zone = ('vaz037', 0.00099689748447031462) + +[fips5154090780] +centroid = (0.66388237184756127, -1.3698283131321998) +description = Charlottesville city, VA +station = ('kcho', 0.0017391471764452195) +zone = ('vaz037', 0.00099689748447031462) + +[fips5154120] +centroid = (0.66767544355104291, -1.378309566099341) +description = Mount Sidney CDP, VA +station = ('kshd', 0.00099844436425498384) +zone = ('vaz025', 0.0026921347662194135) + +[fips5154144] +centroid = (0.67567636445474277, -1.3457404132601876) +description = Mount Vernon CDP, VA +station = ('kdaa', 0.0010649337026454673) +zone = ('vaz054', 0.0025199197216380187) + +[fips5154904] +centroid = (0.65155413395634421, -1.4103880894324661) +description = Narrows town, VA +station = ('kpsk', 0.003873211763747796) +zone = ('vaz011', 0.0014958989347960353) + +[fips5154984] +centroid = (0.65410241938401104, -1.3239795783331523) +description = Nassawadox town, VA +station = ('kmfv', 0.0032705630323071585) +zone = ('vaz100', 0.00218227669758024) + +[fips51550] +centroid = (0.64017587877698756, -1.3317174257586992) +description = Chesapeake city, VA +station = ('kcpk', 0.00035665844027848325) +zone = ('vaz097', 2.8809478994445438e-05) + +[fips5155000] +centroid = (0.64479040714621305, -1.3777157003680573) +description = Nathalie CDP, VA +station = ('klyh', 0.0074646186382427201) +zone = ('vaz058', 0.0030852122551587751) + +[fips5155090812] +centroid = (0.64017587877698756, -1.3317174257586992) +description = Chesapeake city, VA +station = ('kcpk', 0.00035665844027848325) +zone = ('vaz097', 2.8809478994445438e-05) + +[fips5155272] +centroid = (0.67384129037261109, -1.3488409383164781) +description = Neabsco CDP, VA +station = ('knyg', 0.0019038999689886013) +zone = ('vaz052', 0.003198594900567953) + +[fips5155400] +centroid = (0.66189669330427481, -1.3769516475814116) +description = Nellysford CDP, VA +station = ('kshd', 0.0059832962474643753) +zone = ('vaz036', 0.002383999661299558) + +[fips5155448] +centroid = (0.6601263709373919, -1.3192852884171107) +description = Nelsonia CDP, VA +station = ('kwal', 0.0025704997051925653) +zone = ('vaz099', 0.0012680911977934828) + +[fips5155528] +centroid = (0.67606297233735213, -1.3564746070389733) +description = New Baltimore CDP, VA +station = ('khwy', 0.002714949411761417) +zone = ('vaz502', 0.0024488110285847634) + +[fips5155592] +centroid = (0.65451578316405334, -1.3982010137711502) +description = New Castle town, VA +station = ('kroa', 0.0037887245311569008) +zone = ('vaz018', 0.0014440891547312339) + +[fips5155608] +centroid = (0.6629327207482586, -1.318230865202811) +description = New Church CDP, VA +station = ('kwal', 0.0012232090037438193) +zone = ('mdz023', 0.0037942997006463722) + +[fips5155720] +centroid = (0.66658513636732208, -1.3769726438923133) +description = New Hope CDP, VA +station = ('kshd', 0.001296212929600564) +zone = ('vaz025', 0.003253964119315111) + +[fips5155752] +centroid = (0.67604513507239672, -1.3473565183343643) +description = Newington CDP, VA +station = ('kdaa', 0.00036913796202560226) +zone = ('vaz053', 0.0021277726783921181) + +[fips5155758] +centroid = (0.676105802717196, -1.3480088700488824) +description = Newington Forest CDP, VA +station = ('kdaa', 0.0007986548743958257) +zone = ('vaz053', 0.0018560139199988654) + +[fips5155800] +centroid = (0.65466331584572446, -1.3436639077826276) +description = New Kent CDP, VA +station = ('kfyj', 0.0030776631433441291) +zone = ('vaz083', 0.00016847975897848639) + +[fips5155848] +centroid = (0.67440288496602518, -1.3730262101074586) +description = New Market town, VA +station = ('klua', 0.0023367842618475802) +zone = ('vaz029', 0.0025408013722118261) + +[fips5156000] +centroid = (0.64709788949698221, -1.3355559458359028) +description = Newport News city, VA +station = ('kphf', 0.0010456946348438559) +zone = ('vaz094', 0.00022238515277389769) + +[fips5156048] +centroid = (0.64826692848326051, -1.4066633997290774) +description = New River CDP, VA +station = ('kpsk', 0.0012283759843825263) +zone = ('vaz013', 0.0020828572948280379) + +[fips5156096] +centroid = (0.63924792212028725, -1.3460823407139459) +description = Newsoms town, VA +station = ('kfkn', 0.0034010764114977493) +zone = ('vaz092', 0.0016615391725321809) + +[fips5156304] +centroid = (0.64139338555659375, -1.4384378867065051) +description = Nickelsville town, VA +station = ('klnp', 0.0044014877940178575) +zone = ('vaz005', 0.002680128393373434) + +[fips5156464] +centroid = (0.6753200205813632, -1.3539642999758299) +description = Nokesville CDP, VA +station = ('khef', 0.00091301826183160103) +zone = ('vaz052', 0.0013058483248052717) + +[fips51570] +centroid = (0.65033908809098329, -1.3508290603207174) +description = Colonial Heights city, VA +station = ('kptb', 0.0021552423930413459) +zone = ('vaz081', 0.0025131646560197958) + +[fips5157000] +centroid = (0.64442818151325409, -1.330720022451062) +description = Norfolk city, VA +station = ('kngu', 0.0007377874344520073) +zone = ('vaz095', 0.0010794884089787497) + +[fips5157090948] +centroid = (0.65033908809098329, -1.3508290603207174) +description = Colonial Heights city, VA +station = ('kptb', 0.0021552423930413459) +zone = ('vaz081', 0.0025131646560197958) + +[fips5157531] +centroid = (0.64711804804984274, -1.390161381464641) +description = North Shore CDP, VA +station = ('kroa', 0.0060673957947798701) +zone = ('vaz033', 0.0035400296060139752) + +[fips5157560] +centroid = (0.6772374916574817, -1.3474129099224963) +description = North Springfield CDP, VA +station = ('kdaa', 0.0015234353808291231) +zone = ('vaz053', 0.0012317684224027522) + +[fips5157688] +centroid = (0.64457712791161925, -1.4420956779396648) +description = Norton city, VA +station = ('klnp', 0.0015770179606993098) +zone = ('vaz002', 0.00075249222866977388) + +[fips5157870] +centroid = (0.64801684025474227, -1.3626689201806412) +description = Nottoway Court House CDP, VA +station = ('kfvx', 0.0063002520367335104) +zone = ('vaz067', 0.00041843510453324641) + +[fips51580] +centroid = (0.65935298063924819, -1.3960197361785929) +description = Covington city, VA +station = ('khsp', 0.0036638881218728709) +zone = ('vaz019', 0.000328472564848102) + +[fips5158091020] +centroid = (0.65935298063924819, -1.3960197361785929) +description = Covington city, VA +station = ('khsp', 0.0036638881218728709) +zone = ('vaz019', 0.000328472564848102) + +[fips5158104] +centroid = (0.680387392078311, -1.3511525396442821) +description = Oak Grove CDP, VA +station = ('kiad', 0.00099127118564340554) +zone = ('vaz053', 0.0031296798730910988) + +[fips5158184] +centroid = (0.66201708611607735, -1.3185422668479518) +description = Oak Hall CDP, VA +station = ('kwal', 0.0011054926302271971) +zone = ('vaz099', 0.0031925177047696942) + +[fips5158312] +centroid = (0.64219121046426553, -1.3952411447992781) +description = Oak Level CDP, VA +station = ('kmtv', 0.0030090586353408383) +zone = ('vaz043', 0.0021735408409843966) + +[fips5158472] +centroid = (0.67874884206995367, -1.3491783628207663) +description = Oakton CDP, VA +station = ('kiad', 0.0021481004322515197) +zone = ('vaz053', 0.00093975837590801691) + +[fips5158696] +centroid = (0.67509503018748851, -1.3484186733572505) +description = Occoquan town, VA +station = ('kdaa', 0.0012088325545088351) +zone = ('vaz053', 0.0027820517212979313) + +[fips51590] +centroid = (0.6384996296567873, -1.3859322916074261) +description = Danville city, VA +station = ('kdan', 0.0010871898419990357) +zone = ('ncz006', 0.0034753565111204443) + +[fips5159091108] +centroid = (0.6384996296567873, -1.3859322916074261) +description = Danville city, VA +station = ('kdan', 0.0010871898419990357) +zone = ('ncz006', 0.0034753565111204443) + +[fips5159336] +centroid = (0.65816353875401401, -1.3219764290440532) +description = Onancock town, VA +station = ('kmfv', 0.0010941996482244072) +zone = ('vaz099', 0.0016507708001021759) + +[fips5159384] +centroid = (0.65782782467239298, -1.3215397825717896) +description = Onley town, VA +station = ('kmfv', 0.00097264070112033744) +zone = ('vaz099', 0.0016409831938884402) + +[fips5159416] +centroid = (0.67397468588734089, -1.3580242325219414) +description = Opal CDP, VA +station = ('khwy', 0.0013668932763617418) +zone = ('vaz502', 0.0013270491269784478) + +[fips5159496] +centroid = (0.66759285457083861, -1.3632988444142713) +description = Orange town, VA +station = ('komh', 0.00090227377606773393) +zone = ('vaz050', 0.0013432468006919422) + +[fips51595] +centroid = (0.64046919881107778, -1.3532580524940103) +description = Emporia city, VA +station = ('kemv', 0.00076176074964066703) +zone = ('vaz087', 0.00047356676842415436) + +[fips5159593491] +centroid = (0.64046919881107778, -1.3532580524940103) +description = Emporia city, VA +station = ('kemv', 0.00076176074964066703) +zone = ('vaz087', 0.00047356676842415436) + +[fips51600] +centroid = (0.67811596822988807, -1.3491224948314098) +description = Fairfax city, VA +station = ('kiad', 0.0024825321497772826) +zone = ('vaz053', 0.00037047658968229595) + +[fips5160093507] +centroid = (0.67811596822988807, -1.3491224948314098) +description = Fairfax city, VA +station = ('kiad', 0.0024825321497772826) +zone = ('vaz053', 0.00037047658968229595) + +[fips5160296] +centroid = (0.65598528058106254, -1.3226774928979945) +description = Painter town, VA +station = ('kmfv', 0.0011558237605727405) +zone = ('vaz099', 0.0036756708835450238) + +[fips5160392] +centroid = (0.66089253557243233, -1.3658523832829865) +description = Palmyra CDP, VA +station = ('klku', 0.0046798212819215796) +zone = ('vaz048', 0.00050672494178555304) + +[fips5160488] +centroid = (0.65041469575417965, -1.3732880967617205) +description = Pamplin City town, VA +station = ('kfvx', 0.0037709414827587725) +zone = ('vaz046', 0.0025719870333070802) + +[fips5160500] +centroid = (0.66380241831452735, -1.3691160093578758) +description = Pantops CDP, VA +station = ('kcho', 0.0017513930313349372) +zone = ('vaz037', 0.0015350005827831433) + +[fips5160680] +centroid = (0.65949641179717711, -1.3204094375350277) +description = Parksley town, VA +station = ('kmfv', 0.0028440276664306692) +zone = ('vaz099', 0.00036883771291514576) + +[fips5160840] +centroid = (0.64953517198422217, -1.4072343667405749) +description = Parrott CDP, VA +station = ('kpsk', 0.0016255386631052553) +zone = ('vaz011', 0.0020105920320043521) + +[fips5160888] +centroid = (0.66836963080773115, -1.3497057315075487) +description = Passapatanzy CDP, VA +station = ('kezf', 0.0016835877710298765) +zone = ('vaz057', 0.0024309360703449077) + +[fips5160920] +centroid = (0.65877073880078285, -1.3200932362344442) +description = Pastoria CDP, VA +station = ('kmfv', 0.0024503601259265153) +zone = ('vaz099', 0.00040088639674469779) + +[fips5160984] +centroid = (0.63938999192139967, -1.3997281419600602) +description = Patrick Springs CDP, VA +station = ('kmtv', 0.0025469670485324088) +zone = ('vaz032', 0.0014261251023648216) + +[fips51610] +centroid = (0.67865010879416832, -1.3469515495880242) +description = Falls Church city, VA +station = ('kdca', 0.002008742117867644) +zone = ('vaz054', 0.0011253941058949248) + +[fips5161093531] +centroid = (0.67865010879416832, -1.3469515495880242) +description = Falls Church city, VA +station = ('kdca', 0.002008742117867644) +zone = ('vaz054', 0.0011253941058949248) + +[fips5161208] +centroid = (0.65150842378323437, -1.4089570590721707) +description = Pearisburg town, VA +station = ('kpsk', 0.0034637880605080957) +zone = ('vaz011', 0.0004147449270002045) + +[fips5161336] +centroid = (0.65139560570038546, -1.4073665579781207) +description = Pembroke town, VA +station = ('kpsk', 0.003361215575270679) +zone = ('vaz011', 0.00094806814248846617) + +[fips5161464] +centroid = (0.64564006833266896, -1.3899375080814877) +description = Penhook CDP, VA +station = ('kroa', 0.0072786714460736576) +zone = ('vaz033', 0.0033937188565918526) + +[fips5161560] +centroid = (0.64156802320154838, -1.4491376276858563) +description = Pennington Gap town, VA +station = ('k0vg', 0.0032120245329276616) +zone = ('vaz001', 0.0016719015693046318) + +[fips5161832] +centroid = (0.64934503581550984, -1.350751637515099) +description = Petersburg city, VA +station = ('kptb', 0.0017680342016737518) +zone = ('vaz081', 0.0021460344851694109) + +[fips5161896] +centroid = (0.64718656967627608, -1.3744206060067548) +description = Phenix town, VA +station = ('kfvx', 0.00642043688190818) +zone = ('vaz059', 0.0017132020356545714) + +[fips51620] +centroid = (0.64025682714769505, -1.3428806912807949) +description = Franklin city, VA +station = ('kfkn', 0.00064302476696307092) +zone = ('vaz092', 0.0023572924693971097) + +[fips5162093643] +centroid = (0.64025682714769505, -1.3428806912807949) +description = Franklin city, VA +station = ('kfkn', 0.00064302476696307092) +zone = ('vaz092', 0.0023572924693971097) + +[fips5162264] +centroid = (0.67911722871517211, -1.3473789283619602) +description = Pimmit Hills CDP, VA +station = ('kdca', 0.0024881583770460457) +zone = ('vaz054', 0.001644687136694147) + +[fips5162738] +centroid = (0.66605488788727374, -1.3685313589650427) +description = Piney Mountain CDP, VA +station = ('kcho', 0.00073360535904352887) +zone = ('vaz038', 0.0024868001465290007) + +[fips51630] +centroid = (0.66844839751687368, -1.3523973084668044) +description = Fredericksburg city, VA +station = ('kezf', 0.00075899012547599144) +zone = ('vaz055', 0.0021601223064080174) + +[fips5163093651] +centroid = (0.66844839751687368, -1.3523973084668044) +description = Fredericksburg city, VA +station = ('kezf', 0.00075899012547599144) +zone = ('vaz055', 0.0021601223064080174) + +[fips5163190] +centroid = (0.64799036360998952, -1.4050494763164656) +description = Plum Creek CDP, VA +station = ('kbcb', 0.0019743673705173437) +zone = ('vaz014', 0.0018156000979825215) + +[fips5163288] +centroid = (0.65114155557446518, -1.4196985832338147) +description = Pocahontas town, VA +station = ('kblf', 0.0019861150205765076) +zone = ('wvz042', 0.0036353718835099302) + +[fips5163768] +centroid = (0.6480121278657619, -1.331747899207439) +description = Poquoson city, VA +station = ('klfi', 0.0010177936176835216) +zone = ('vaz094', 0.002954789457755758) + +[fips5163928] +centroid = (0.66618845793492887, -1.3472356193770787) +description = Port Royal town, VA +station = ('kezf', 0.0039345210210141772) +zone = ('vaz057', 0.0018580890626960726) + +[fips51640] +centroid = (0.63993614035093371, -1.412221086572788) +description = Galax city, VA +station = ('khlx', 0.0022305126003901712) +zone = ('vaz016', 0.0027265542421195488) + +[fips5164000] +centroid = (0.64331841390837352, -1.3326682985884781) +description = Portsmouth city, VA +station = ('kngu', 0.0015452608898215757) +zone = ('vaz095', 0.00091598783767567714) + +[fips5164093675] +centroid = (0.63993614035093371, -1.412221086572788) +description = Galax city, VA +station = ('khlx', 0.0022305126003901712) +zone = ('vaz016', 0.0027265542421195488) + +[fips5164152] +centroid = (0.67466829718537591, -1.3491833370091342) +description = Potomac Mills CDP, VA +station = ('kdaa', 0.0019417683263321828) +zone = ('vaz052', 0.0025938142563093586) + +[fips5164272] +centroid = (0.64797270087795933, -1.4417686905043035) +description = Pound town, VA +station = ('klnp', 0.0026961497753145128) +zone = ('vaz002', 0.002653153441176634) + +[fips5164512] +centroid = (0.6493833108860062, -1.4047862981185575) +description = Prices Fork CDP, VA +station = ('kbcb', 0.0010104703332475564) +zone = ('vaz014', 0.0015227844674228059) + +[fips5164560] +centroid = (0.6496267145034893, -1.3485862249654419) +description = Prince George CDP, VA +station = ('kptb', 0.003514329170167153) +zone = ('vaz081', 0.00065555940457611643) + +[fips5164880] +centroid = (0.64669283348417939, -1.4095613967789664) +description = Pulaski town, VA +station = ('kpsk', 0.001781585759035559) +zone = ('vaz013', 0.00076130964083355847) + +[fips5164976] +centroid = (0.65674238695728504, -1.3232483202831515) +description = Pungoteague CDP, VA +station = ('kmfv', 0.00078429989395430394) +zone = ('vaz099', 0.003348790884522254) + +[fips51650] +centroid = (0.64661010487763471, -1.3316364599346993) +description = Hampton city, VA +station = ('klfi', 0.00095990240898522416) +zone = ('vaz094', 0.0029496148084802638) + +[fips5165008] +centroid = (0.68307820109269568, -1.3563196741612737) +description = Purcellville town, VA +station = ('kjyo', 0.0021760407685609234) +zone = ('vaz042', 0.0013106492987871551) + +[fips5165093827] +centroid = (0.64661010487763471, -1.3316364599346993) +description = Hampton city, VA +station = ('klfi', 0.00095990240898522416) +zone = ('vaz094', 0.0029496148084802638) + +[fips5165120] +centroid = (0.67234289030318883, -1.3489678935662681) +description = Quantico town, VA +station = ('knyg', 0.00041353941884870896) +zone = ('vaz055', 0.0029186850474775916) + +[fips5165128] +centroid = (0.67242898739518975, -1.3493524943202375) +description = Quantico Base CDP, VA +station = ('knyg', 0.00050548625716748531) +zone = ('vaz055', 0.0027423302637962386) + +[fips5165280] +centroid = (0.65542843328321376, -1.3218559664190808) +description = Quinby CDP, VA +station = ('kmfv', 0.0017379214891637426) +zone = ('vaz099', 0.0039117872496018408) + +[fips5165392] +centroid = (0.64786684665882588, -1.4059857232871129) +description = Radford city, VA +station = ('kpsk', 0.0017725898487085199) +zone = ('vaz014', 0.0025475658139503996) + +[fips5165744] +centroid = (0.6474035141022989, -1.4287173452506927) +description = Raven CDP, VA +station = ('kjfz', 0.001013647417351855) +zone = ('vaz004', 0.0038928472963987459) + +[fips5165776] +centroid = (0.67724283236499283, -1.3477884000577705) +description = Ravensworth CDP, VA +station = ('kdaa', 0.0016012689377049032) +zone = ('vaz053', 0.0009876154990415113) + +[fips51660] +centroid = (0.67083497818934335, -1.3766144325166338) +description = Harrisonburg city, VA +station = ('kshd', 0.0029766765624149615) +zone = ('vaz026', 0.0013019507182647516) + +[fips5166093859] +centroid = (0.67083497818934335, -1.3766144325166338) +description = Harrisonburg city, VA +station = ('kshd', 0.0029766765624149615) +zone = ('vaz026', 0.0013019507182647516) + +[fips5166512] +centroid = (0.6725565709635104, -1.3580099382753676) +description = Remington town, VA +station = ('kcjr', 0.00070545795953838673) +zone = ('vaz502', 0.0016509183946433301) + +[fips5166672] +centroid = (0.67977867359509292, -1.3498763025353462) +description = Reston CDP, VA +station = ('kiad', 0.0014867833247818455) +zone = ('vaz053', 0.0020986040600673994) + +[fips5166896] +centroid = (0.65247278800813147, -1.4105790808125116) +description = Rich Creek town, VA +station = ('kpsk', 0.0047693669673129751) +zone = ('vaz011', 0.0020247587653484944) + +[fips5166928] +centroid = (0.64729549567489297, -1.4278221658773447) +description = Richlands town, VA +station = ('kjfz', 0.00048991455343119501) +zone = ('vaz007', 0.0035084567885793698) + +[fips51670] +centroid = (0.65085090589413064, -1.3491210811147158) +description = Hopewell city, VA +station = ('kptb', 0.0035614984208643891) +zone = ('vaz081', 0.0019267632217044484) + +[fips5167000] +centroid = (0.65504648542970734, -1.3522114483547596) +description = Richmond city, VA +station = ('kric', 0.0022205804330208386) +zone = ('vaz071', 0.00077970023177181271) + +[fips5167093915] +centroid = (0.65085090589413064, -1.3491210811147158) +description = Hopewell city, VA +station = ('kptb', 0.0035614984208643891) +zone = ('vaz081', 0.0019267632217044484) + +[fips5167208] +centroid = (0.63840962302726179, -1.3937902525920951) +description = Ridgeway town, VA +station = ('ksif', 0.0024144520412294197) +zone = ('vaz043', 0.0018385490190089724) + +[fips5167256] +centroid = (0.64694194432831642, -1.4039528510408525) +description = Riner CDP, VA +station = ('kbcb', 0.0026325213378501026) +zone = ('vaz014', 0.002010645972544287) + +[fips5167331] +centroid = (0.66314271876385855, -1.3679688218938324) +description = Rivanna CDP, VA +station = ('kcho', 0.0026003570686269181) +zone = ('vaz048', 0.0030194207005994011) + +[fips5167352] +centroid = (0.64009685026845731, -1.3769602520546242) +description = Riverdale CDP, VA +station = ('ktdf', 0.0069207610978720786) +zone = ('vaz058', 0.0017156542275621797) + +[fips5167704] +centroid = (0.64457070509997194, -1.4396147796744174) +description = Riverview CDP, VA +station = ('klnp', 0.0011422671104407063) +zone = ('vaz002', 0.0020607669302559898) + +[fips51678] +centroid = (0.6594260924816141, -1.3865649560079816) +description = Lexington city, VA +station = ('khsp', 0.0061068043194863987) +zone = ('vaz024', 0.00054655707277920923) + +[fips5167894275] +centroid = (0.6594260924816141, -1.3865649560079816) +description = Lexington city, VA +station = ('khsp', 0.0061068043194863987) +zone = ('vaz024', 0.00054655707277920923) + +[fips51680] +centroid = (0.65273596620603969, -1.3822214947248834) +description = Lynchburg city, VA +station = ('klyh', 0.0014386475642360504) +zone = ('vaz045', 0.0033182202574457641) + +[fips5168000] +centroid = (0.65062087149871783, -1.3955386012636954) +description = Roanoke city, VA +station = ('kroa', 0.00068731022730714273) +zone = ('vaz022', 0.0013037852642036095) + +[fips5168094403] +centroid = (0.65273596620603969, -1.3822214947248834) +description = Lynchburg city, VA +station = ('klyh', 0.0014386475642360504) +zone = ('vaz045', 0.0033182202574457641) + +[fips51683] +centroid = (0.67627251656734655, -1.3523636061589484) +description = Manassas city, VA +station = ('khef', 0.00069270915937869894) +zone = ('vaz052', 0.00073685435818852843) + +[fips5168394474] +centroid = (0.67627251656734655, -1.3523636061589484) +description = Manassas city, VA +station = ('khef', 0.00069270915937869894) +zone = ('vaz052', 0.00073685435818852843) + +[fips5168470] +centroid = (0.65384978297478491, -1.3539011190569075) +description = Rockwood CDP, VA +station = ('kfci', 0.0014002303838880693) +zone = ('vaz070', 0.0015140500623614438) + +[fips5168496] +centroid = (0.64585683822576656, -1.3942411060444702) +description = Rocky Mount town, VA +station = ('kroa', 0.0055616342038244957) +zone = ('vaz033', 0.00022884157647775808) + +[fips51685] +centroid = (0.6766465406260489, -1.3517344847767743) +description = Manassas Park city, VA +station = ('khef', 0.0013001968247631577) +zone = ('vaz052', 0.0011984742207255257) + +[fips5168594476] +centroid = (0.6766465406260489, -1.3517344847767743) +description = Manassas Park city, VA +station = ('khef', 0.0013001968247631577) +zone = ('vaz052', 0.0011984742207255257) + +[fips5168880] +centroid = (0.67696352732479625, -1.3458083763812603) +description = Rose Hill CDP, VA +station = ('kdca', 0.0015052646893602337) +zone = ('vaz054', 0.0012391255338985278) + +[fips5168885] +centroid = (0.63990893066789512, -1.455146534501085) +description = Rose Hill CDP, VA +station = ('k0vg', 0.0021910834410285929) +zone = ('tnz015', 0.0032464888255776766) + +[fips51690] +centroid = (0.64024832739423787, -1.3938836102537844) +description = Martinsville city, VA +station = ('kmtv', 0.0023146307940780843) +zone = ('vaz043', 0.0001398717647908961) + +[fips5169094537] +centroid = (0.64024832739423787, -1.3938836102537844) +description = Martinsville city, VA +station = ('kmtv', 0.0023146307940780843) +zone = ('vaz043', 0.0001398717647908961) + +[fips5169168] +centroid = (0.68297974706959064, -1.3573091013142293) +description = Round Hill town, VA +station = ('kjyo', 0.0028562456012499217) +zone = ('vaz042', 0.0019313368132993338) + +[fips5169360] +centroid = (0.6672263877877973, -1.3679772867407045) +description = Ruckersville CDP, VA +station = ('kcho', 0.0019346784360036141) +zone = ('vaz038', 0.0016933027353480173) + +[fips5169456] +centroid = (0.64411606428311996, -1.4185556194665612) +description = Rural Retreat town, VA +station = ('kmkj', 0.0010192901870423757) +zone = ('vaz012', 0.002780037837342209) + +[fips5169472] +centroid = (0.64697205125791335, -1.3381771685730104) +description = Rushmere CDP, VA +station = ('kfaf', 0.0013642173843349086) +zone = ('vaz094', 0.0023175299521201774) + +[fips5169536] +centroid = (0.65052376137913681, -1.3805573581896919) +description = Rustburg CDP, VA +station = ('klyh', 0.0015887495422004178) +zone = ('vaz045', 0.00086057892992937837) + +[fips5169792] +centroid = (0.64237076993771069, -1.4496253599453262) +description = St. Charles town, VA +station = ('k0vg', 0.0034641106344392675) +zone = ('vaz001', 0.0020029960248906663) + +[fips5169936] +centroid = (0.64415032509633652, -1.4366838831681283) +description = St. Paul town, VA +station = ('klnp', 0.0033116963306639448) +zone = ('vaz006', 0.0031093833372875007) + +[fips51700] +centroid = (0.64709788949698221, -1.3355559458359028) +description = Newport News city, VA +station = ('kphf', 0.0010456946348438559) +zone = ('vaz094', 0.00022238515277389769) + +[fips5170000] +centroid = (0.65075182355249495, -1.3972275389275577) +description = Salem city, VA +station = ('kroa', 0.0013458368287937723) +zone = ('vaz022', 0.00024730709713186418) + +[fips5170094851] +centroid = (0.64709788949698221, -1.3355559458359028) +description = Newport News city, VA +station = ('kphf', 0.0010456946348438559) +zone = ('vaz094', 0.00022238515277389769) + +[fips5170096] +centroid = (0.64360566019666676, -1.4270308161411982) +description = Saltville town, VA +station = ('kjfz', 0.0032548667895858827) +zone = ('vaz009', 0.0032028100568354061) + +[fips5170112] +centroid = (0.65633584741461815, -1.3368139617074479) +description = Saluda CDP, VA +station = ('kfyj', 0.0027805501184090986) +zone = ('vaz085', 0.001591988668201239) + +[fips5170256] +centroid = (0.65472639204489147, -1.3493664045943761) +description = Sandston CDP, VA +station = ('kric', 8.0878547672874127e-05) +zone = ('vaz071', 0.0015351815373876401) + +[fips5170296] +centroid = (0.63813660117237236, -1.3915515711204396) +description = Sandy Level CDP, VA +station = ('ksif', 0.0027215039663187664) +zone = ('vaz043', 0.0029069401547278783) + +[fips5170352] +centroid = (0.66205878203190749, -1.3205034933284179) +description = Sanford CDP, VA +station = ('kwal', 0.0026514537528684046) +zone = ('vaz099', 0.0029242225656004443) + +[fips5170520] +centroid = (0.65537223368129949, -1.3229294835353975) +description = Savage Town CDP, VA +station = ('kmfv', 0.0017981628711663173) +zone = ('vaz100', 0.0036562499270174735) + +[fips5170528] +centroid = (0.65768407935519868, -1.3222470423445751) +description = Savageville CDP, VA +station = ('kmfv', 0.00057697552016960387) +zone = ('vaz099', 0.0021230143673364394) + +[fips5170576] +centroid = (0.66196853105628684, -1.3216095433819917) +description = Saxis town, VA +station = ('kwal', 0.0035251754070166515) +zone = ('vaz099', 0.0030142686280094657) + +[fips5170704] +centroid = (0.65965532402557114, -1.3735324428569999) +description = Schuyler CDP, VA +station = ('kcho', 0.0068104333383265485) +zone = ('vaz036', 0.0026117748252476106) + +[fips5170715] +centroid = (0.64893223054082816, -1.340351796461118) +description = Scotland CDP, VA +station = ('kjgg', 0.0015116796443471021) +zone = ('vaz089', 0.0016986876094713034) + +[fips5170752] +centroid = (0.64154891184623908, -1.3751893711823806) +description = Scottsburg town, VA +station = ('khnz', 0.0078417811014258182) +zone = ('vaz058', 0.0020216315343551368) + +[fips5170800] +centroid = (0.65994168019594579, -1.3698683335319479) +description = Scottsville town, VA +station = ('kcho', 0.0056344339237260951) +zone = ('vaz048', 0.0029457836977406678) + +[fips51710] +centroid = (0.64442818151325409, -1.330720022451062) +description = Norfolk city, VA +station = ('kngu', 0.0007377874344520073) +zone = ('vaz095', 0.0010794884089787497) + +[fips5171040] +centroid = (0.64185640395385546, -1.3436582529158509) +description = Sedley CDP, VA +station = ('kfkn', 0.0017857737382333968) +zone = ('vaz092', 0.0019140685399580864) + +[fips5171072] +centroid = (0.65979163424015186, -1.3936442383468732) +description = Selma CDP, VA +station = ('khsp', 0.002571007571767443) +zone = ('vaz019', 0.0021795401980714401) + +[fips5171094875] +centroid = (0.64442818151325409, -1.330720022451062) +description = Norfolk city, VA +station = ('kngu', 0.0007377874344520073) +zone = ('vaz095', 0.0010794884089787497) + +[fips5171216] +centroid = (0.67833132440629151, -1.3464310051386168) +description = Seven Corners CDP, VA +station = ('kdca', 0.0015391607765857921) +zone = ('vaz054', 0.00063874236937720068) + +[fips5171264] +centroid = (0.64255266815235357, -1.4247507180063927) +description = Seven Mile Ford CDP, VA +station = ('kjfz', 0.0048663238225182875) +zone = ('vaz009', 0.0014190065344468095) + +[fips5171625] +centroid = (0.68410312824263686, -1.3674145227766916) +description = Shawneeland CDP, VA +station = ('kokv', 0.0027859632213122288) +zone = ('vaz028', 0.0011773345358417379) + +[fips5171632] +centroid = (0.64874534068452461, -1.4007038333718025) +description = Shawsville CDP, VA +station = ('kbcb', 0.0023961384513388191) +zone = ('vaz014', 0.0018435412579966594) + +[fips5171776] +centroid = (0.67172715559637775, -1.3721159161827885) +description = Shenandoah town, VA +station = ('klua', 0.0035157844462198645) +zone = ('vaz029', 0.0029395613708214606) + +[fips5171810] +centroid = (0.68016868486974358, -1.3620737629057114) +description = Shenandoah Farms CDP, VA +station = ('kokv', 0.0034585499911844158) +zone = ('vaz030', 0.00250205220978346) + +[fips5171825] +centroid = (0.68306587906817662, -1.3589508278218252) +description = Shenandoah Retreat CDP, VA +station = ('kokv', 0.0039032542445556423) +zone = ('vaz031', 0.0018703873893646881) + +[fips5171826] +centroid = (0.68001844692773195, -1.3638030700351722) +description = Shenandoah Shores CDP, VA +station = ('kokv', 0.0032806669618536122) +zone = ('vaz030', 0.0013037745581067806) + +[fips5171904] +centroid = (0.66303752776984093, -1.3777947986897578) +description = Sherando CDP, VA +station = ('kshd', 0.0048757348773345024) +zone = ('vaz036', 0.0036038855920721559) + +[fips51720] +centroid = (0.64457712791161925, -1.4420956779396648) +description = Norton city, VA +station = ('klnp', 0.0015770179606993098) +zone = ('vaz002', 0.00075249222866977388) + +[fips5172080] +centroid = (0.65846459059669049, -1.3760574979523226) +description = Shipman CDP, VA +station = ('kfvx', 0.0086823034287779894) +zone = ('vaz036', 0.0012157238696222997) + +[fips5172094931] +centroid = (0.64457712791161925, -1.4420956779396648) +description = Norton city, VA +station = ('klnp', 0.0015770179606993098) +zone = ('vaz002', 0.00075249222866977388) + +[fips5172272] +centroid = (0.65723746705290587, -1.3547421583168588) +description = Short Pump CDP, VA +station = ('kofp', 0.0026992080311362071) +zone = ('vaz063', 0.0025435476420764191) + +[fips5172935] +centroid = (0.6794961920556577, -1.3627922276922948) +description = Skyland Estates CDP, VA +station = ('kokv', 0.0039096348921415294) +zone = ('vaz030', 0.0017459198871492972) + +[fips51730] +centroid = (0.64934503581550984, -1.350751637515099) +description = Petersburg city, VA +station = ('kptb', 0.0017680342016737518) +zone = ('vaz081', 0.0021460344851694109) + +[fips5173095035] +centroid = (0.64934503581550984, -1.350751637515099) +description = Petersburg city, VA +station = ('kptb', 0.0017680342016737518) +zone = ('vaz081', 0.0021460344851694109) + +[fips5173200] +centroid = (0.64528091447919356, -1.3371490474705381) +description = Smithfield town, VA +station = ('kfaf', 0.0028184779752344516) +zone = ('vaz093', 0.0017581694992862408) + +[fips5173376] +centroid = (0.646148186037802, -1.4063758741881038) +description = Snowville CDP, VA +station = ('kpsk', 0.0024289488596456058) +zone = ('vaz013', 0.0019685285716094132) + +[fips51735] +centroid = (0.6480121278657619, -1.331747899207439) +description = Poquoson city, VA +station = ('klfi', 0.0010177936176835216) +zone = ('vaz094', 0.002954789457755758) + +[fips5173595115] +centroid = (0.6480121278657619, -1.331747899207439) +description = Poquoson city, VA +station = ('klfi', 0.0010177936176835216) +zone = ('vaz094', 0.002954789457755758) + +[fips5173712] +centroid = (0.64073944559245666, -1.3773001549264501) +description = South Boston town, VA +station = ('kdan', 0.0064013160582814541) +zone = ('vaz058', 0.0010188775734816687) + +[fips5173760] +centroid = (0.66924774086099448, -1.3526917106050307) +description = Southern Gateway CDP, VA +station = ('krmn', 0.0011362376198347367) +zone = ('vaz055', 0.0014559616344888458) + +[fips5173894] +centroid = (0.63864423018531502, -1.342669384268256) +description = Southampton Meadows CDP, VA +station = ('kfkn', 0.001935559835279748) +zone = ('vaz092', 0.0033140926340393343) + +[fips5173904] +centroid = (0.64098372187456576, -1.363606319068595) +description = South Hill town, VA +station = ('kavc', 0.0012293342639599898) +zone = ('vaz065', 0.0033657802072605617) + +[fips51740] +centroid = (0.64331841390837352, -1.3326682985884781) +description = Portsmouth city, VA +station = ('kngu', 0.0015452608898215757) +zone = ('vaz095', 0.00091598783767567714) + +[fips5174095123] +centroid = (0.64331841390837352, -1.3326682985884781) +description = Portsmouth city, VA +station = ('kngu', 0.0015452608898215757) +zone = ('vaz095', 0.00091598783767567714) + +[fips5174100] +centroid = (0.67914934277340877, -1.3528617231274676) +description = South Riding CDP, VA +station = ('kiad', 0.00093359827444891802) +zone = ('vaz042', 0.0035274171621062192) + +[fips5174120] +centroid = (0.6762862174019747, -1.3486714144862317) +description = South Run CDP, VA +station = ('kdaa', 0.0013424059419878511) +zone = ('vaz053', 0.0015790296932008468) + +[fips5174160] +centroid = (0.65875647946079408, -1.3225875386283465) +description = Southside Chesconessex CDP, VA +station = ('kmfv', 0.0016483917393244243) +zone = ('vaz099', 0.0018543224587245939) + +[fips5174384] +centroid = (0.67466602825734834, -1.3654771898536853) +description = Sperryville CDP, VA +station = ('klua', 0.003610390878125458) +zone = ('vaz040', 0.0011621406641291886) + +[fips5174470] +centroid = (0.66667905253437187, -1.354164471787741) +description = Spotsylvania Courthouse CDP, VA +station = ('kezf', 0.0022395029116257124) +zone = ('vaz056', 0.00090201767714029541) + +[fips5174592] +centroid = (0.67686610304594985, -1.3471135510491943) +description = Springfield CDP, VA +station = ('kdaa', 0.0011328225577667574) +zone = ('vaz053', 0.0016339418614854974) + +[fips5174848] +centroid = (0.649046287807446, -1.4205185040098165) +description = Springville CDP, VA +station = ('kblf', 0.0032856555516650289) +zone = ('vaz007', 0.0026161966893310262) + +[fips5174916] +centroid = (0.67047242094382642, -1.3511570076871671) +description = Stafford Courthouse CDP, VA +station = ('krmn', 0.0006201034820087221) +zone = ('vaz055', 0.00062041737192909782) + +[fips51750] +centroid = (0.64786684665882588, -1.4059857232871129) +description = Radford city, VA +station = ('kpsk', 0.0017725898487085199) +zone = ('vaz014', 0.0025475658139503996) + +[fips5175008] +centroid = (0.66844476723202961, -1.3689800307558528) +description = Stanardsville town, VA +station = ('kcho', 0.0028982226312495854) +zone = ('vaz038', 0.00041327441137304467) + +[fips5175024] +centroid = (0.67330830172563705, -1.3700977919687076) +description = Stanley town, VA +station = ('klua', 0.0015591339151904209) +zone = ('vaz029', 0.00077230238899903881) + +[fips5175040] +centroid = (0.64142939169906243, -1.3954286978806973) +description = Stanleytown CDP, VA +station = ('kmtv', 0.0022464008568780489) +zone = ('vaz043', 0.0016228120079022723) + +[fips5175095211] +centroid = (0.64786684665882588, -1.4059857232871129) +description = Radford city, VA +station = ('kpsk', 0.0017725898487085199) +zone = ('vaz014', 0.0025475658139503996) + +[fips5175216] +centroid = (0.66598371336037743, -1.3798835040187896) +description = Staunton city, VA +station = ('kshd', 0.0029152031048400653) +zone = ('vaz025', 0.0009289477988667198) + +[fips5175344] +centroid = (0.68230397303651102, -1.365167516084504) +description = Stephens City town, VA +station = ('kokv', 0.0013568776837396528) +zone = ('vaz028', 0.0020160215626845806) + +[fips5175376] +centroid = (0.68076101471128547, -1.3509785303178581) +description = Sterling CDP, VA +station = ('kiad', 0.00138553798469228) +zone = ('vaz053', 0.0033670596053625244) + +[fips5175702] +centroid = (0.67942718173703387, -1.3536767046216862) +description = Stone Ridge CDP, VA +station = ('kiad', 0.0014955269115407687) +zone = ('vaz042', 0.0030146243476681456) + +[fips5175840] +centroid = (0.64486442655979004, -1.35088601041421) +description = Stony Creek town, VA +station = ('kptb', 0.0044165281847355535) +zone = ('vaz088', 0.001982428201827461) + +[fips51760] +centroid = (0.65504648542970734, -1.3522114483547596) +description = Richmond city, VA +station = ('kric', 0.0022205804330208386) +zone = ('vaz071', 0.00077970023177181271) + +[fips5176000] +centroid = (0.68059576693770663, -1.3673804888562775) +description = Strasburg town, VA +station = ('kokv', 0.0037794310578979249) +zone = ('vaz030', 0.0024057272817599616) + +[fips5176095291] +centroid = (0.65504648542970734, -1.3522114483547596) +description = Richmond city, VA +station = ('kric', 0.0022205804330208386) +zone = ('vaz071', 0.00077970023177181271) + +[fips5176256] +centroid = (0.63950790636566435, -1.4009563999678587) +description = Stuart town, VA +station = ('kmtv', 0.0035349868942176794) +zone = ('vaz032', 0.00068576699271111837) + +[fips5176272] +centroid = (0.6636523025455634, -1.3793618600119533) +description = Stuarts Draft CDP, VA +station = ('kshd', 0.0045968744267887588) +zone = ('vaz025', 0.0027624270428847973) + +[fips5176416] +centroid = (0.67695385820074017, -1.352614985931113) +description = Sudley CDP, VA +station = ('khef', 0.0012436706432694786) +zone = ('vaz052', 0.0014364665958313211) + +[fips5176432] +centroid = (0.64048621577128473, -1.3375292499947926) +description = Suffolk city, VA +station = ('ksfq', 0.00052834014240804984) +zone = ('vaz093', 0.0038018330006335905) + +[fips5176448] +centroid = (0.64174515666733334, -1.4208185610148196) +description = Sugar Grove CDP, VA +station = ('kmkj', 0.002415869581606079) +zone = ('vaz009', 0.0022362171052127239) + +[fips5176464] +centroid = (0.68125323246693292, -1.350302442125513) +description = Sugarland Run CDP, VA +station = ('kiad', 0.0020739490138333917) +zone = ('mdz009', 0.0028465687745521215) + +[fips5176880] +centroid = (0.64816416349690309, -1.3409936238402462) +description = Surry town, VA +station = ('kjgg', 0.0024169558192715466) +zone = ('vaz089', 0.00084275558561090888) + +[fips5176912] +centroid = (0.64432946569076122, -1.3486485332197382) +description = Sussex CDP, VA +station = ('kakq', 0.0039629759331760717) +zone = ('vaz088', 0.00016046051751375577) + +[fips51770] +centroid = (0.65062087149871783, -1.3955386012636954) +description = Roanoke city, VA +station = ('kroa', 0.00068731022730714273) +zone = ('vaz022', 0.0013037852642036095) + +[fips5177095363] +centroid = (0.65062087149871783, -1.3955386012636954) +description = Roanoke city, VA +station = ('kroa', 0.00068731022730714273) +zone = ('vaz022', 0.0013037852642036095) + +[fips51775] +centroid = (0.65075182355249495, -1.3972275389275577) +description = Salem city, VA +station = ('kroa', 0.0013458368287937723) +zone = ('vaz022', 0.00024730709713186418) + +[fips5177520] +centroid = (0.66015010741521907, -1.3262816327099478) +description = Tangier town, VA +station = ('kmfv', 0.0043283020194425292) +zone = ('vaz099', 0.0048392480615368052) + +[fips5177568] +centroid = (0.66169749887674467, -1.3415625139099339) +description = Tappahannock town, VA +station = ('kxsa', 0.0011076147557688664) +zone = ('vaz074', 0.00084841955240025856) + +[fips5177595547] +centroid = (0.65075182355249495, -1.3972275389275577) +description = Salem city, VA +station = ('kroa', 0.0013458368287937723) +zone = ('vaz022', 0.00024730709713186418) + +[fips5177648] +centroid = (0.65820642149373543, -1.3211624598408009) +description = Tasley CDP, VA +station = ('kmfv', 0.0014536702322499018) +zone = ('vaz099', 0.0011590232249043026) + +[fips5177792] +centroid = (0.6480408908918347, -1.4226843528917863) +description = Tazewell town, VA +station = ('kjfz', 0.0041673249334330887) +zone = ('vaz007', 0.00065695647331264352) + +[fips5177856] +centroid = (0.6616068813819812, -1.3187345323183515) +description = Temperanceville CDP, VA +station = ('kwal', 0.0013361853875533919) +zone = ('vaz099', 0.0027574103050067985) + +[fips5177925] +centroid = (0.64718560974518746, -1.3501225161329251) +description = Templeton CDP, VA +station = ('kptb', 0.0028579098792254247) +zone = ('vaz081', 0.0025275365527035638) + +[fips5178192] +centroid = (0.67826997608308393, -1.3574203486007514) +description = The Plains town, VA +station = ('khef', 0.0043282384557108778) +zone = ('vaz501', 0.0015102214620706599) + +[fips5178532] +centroid = (0.64259912881704162, -1.3696902052284894) +description = Thynedale CDP, VA +station = ('kavc', 0.0063368889715984585) +zone = ('vaz065', 0.0028916829746082669) + +[fips5178688] +centroid = (0.65128952458844935, -1.3831250342253483) +description = Timberlake CDP, VA +station = ('klyh', 0.00065560341644980123) +zone = ('vaz045', 0.0025593439063717831) + +[fips5178736] +centroid = (0.67428661113125732, -1.374815713642821) +description = Timberville town, VA +station = ('klua', 0.0037332583444135477) +zone = ('vaz026', 0.0025802238331899836) + +[fips51790] +centroid = (0.66598371336037743, -1.3798835040187896) +description = Staunton city, VA +station = ('kshd', 0.0029152031048400653) +zone = ('vaz025', 0.0009289477988667198) + +[fips5179024] +centroid = (0.67976291327194749, -1.3690253918631121) +description = Toms Brook town, VA +station = ('klua', 0.0049657519576241649) +zone = ('vaz027', 0.0023626961988101815) + +[fips5179095875] +centroid = (0.66598371336037743, -1.3798835040187896) +description = Staunton city, VA +station = ('kshd', 0.0029152031048400653) +zone = ('vaz025', 0.0009289477988667198) + +[fips5179360] +centroid = (0.67277470221342472, -1.3494622929834805) +description = Triangle CDP, VA +station = ('knyg', 0.00086081426269784362) +zone = ('vaz055', 0.0029288312995728216) + +[fips5179456] +centroid = (0.64046378829039663, -1.4213514623953309) +description = Troutdale town, VA +station = ('kmkj', 0.0037664643519073979) +zone = ('vaz009', 0.0029346809181335616) + +[fips5179472] +centroid = (0.65304391209926149, -1.3941356707043573) +description = Troutville town, VA +station = ('kroa', 0.0021343404228662418) +zone = ('vaz023', 0.0026150039005840798) + +[fips5179560] +centroid = (0.65602179286901419, -1.3541687303911161) +description = Tuckahoe CDP, VA +station = ('kofp', 0.0029065941212962389) +zone = ('vaz071', 0.0024913953193606178) + +[fips5179768] +centroid = (0.66758501804249715, -1.3690846457912174) +description = Twin Lakes CDP, VA +station = ('kcho', 0.002035213167157577) +zone = ('vaz038', 0.00089894175186592715) + +[fips5179952] +centroid = (0.67930579408755754, -1.3478762599323157) +description = Tysons Corner CDP, VA +station = ('kdca', 0.0029185695082447915) +zone = ('vaz053', 0.0016032166747464841) + +[fips51800] +centroid = (0.64048621577128473, -1.3375292499947926) +description = Suffolk city, VA +station = ('ksfq', 0.00052834014240804984) +zone = ('vaz093', 0.0038018330006335905) + +[fips5180000] +centroid = (0.64615389326445594, -1.3906881043796004) +description = Union Hall CDP, VA +station = ('kroa', 0.0065040151375110383) +zone = ('vaz033', 0.0028419492334906529) + +[fips5180016] +centroid = (0.64065999820490582, -1.3654032402532783) +description = Union Level CDP, VA +station = ('kavc', 0.0025072886209775054) +zone = ('vaz065', 0.0018897331066938187) + +[fips5180095987] +centroid = (0.64048621577128473, -1.3375292499947926) +description = Suffolk city, VA +station = ('ksfq', 0.00052834014240804984) +zone = ('vaz093', 0.0038018330006335905) + +[fips5180120] +centroid = (0.68176777298371327, -1.3517150592621998) +description = University Center CDP, VA +station = ('kjyo', 0.001654539785404928) +zone = ('vaz042', 0.002596373346307637) + +[fips5180165] +centroid = (0.66384067593173113, -1.3704487078681136) +description = University of Virginia CDP, VA +station = ('kcho', 0.0019694598140737136) +zone = ('vaz037', 0.00052060090119988552) + +[fips5180272] +centroid = (0.65693995822861095, -1.3364882832690255) +description = Urbanna town, VA +station = ('kfyj', 0.0033397017378756087) +zone = ('vaz085', 0.0013160482954648895) + +[fips5180608] +centroid = (0.64994178134005931, -1.4328996428306617) +description = Vansant CDP, VA +station = ('kjfz', 0.0052023869294320598) +zone = ('vaz004', 0.0010009316978224104) + +[fips5180864] +centroid = (0.6666065864638292, -1.3789884642717818) +description = Verona CDP, VA +station = ('kshd', 0.0019756849570485261) +zone = ('vaz025', 0.0017144214232067603) + +[fips51810] +centroid = (0.64192026555118586, -1.3268694596020194) +description = Virginia Beach city, VA +station = ('kntu', 0.00066465681079707305) +zone = ('vaz098', 0.00069760862478286125) + +[fips5181024] +centroid = (0.64567485274466119, -1.3652715551612153) +description = Victoria town, VA +station = ('kavc', 0.0058428654792893591) +zone = ('vaz066', 0.00087216172948514871) + +[fips5181072] +centroid = (0.67891838335349242, -1.3484494609652558) +description = Vienna town, VA +station = ('kdca', 0.0032032236106727722) +zone = ('vaz053', 0.0010851574224085443) + +[fips5181096187] +centroid = (0.64192026555118586, -1.3268694596020194) +description = Virginia Beach city, VA +station = ('kntu', 0.00066465681079707305) +zone = ('vaz098', 0.00069760862478286125) + +[fips5181152] +centroid = (0.64057372657997969, -1.3944239641902019) +description = Villa Heights CDP, VA +station = ('kmtv', 0.0020888573813619481) +zone = ('vaz043', 0.00044804387384379872) + +[fips5181280] +centroid = (0.65055814436540116, -1.3943120187719789) +description = Vinton town, VA +station = ('kroa', 0.0013174003334902509) +zone = ('vaz022', 0.0022755818869288373) + +[fips5181312] +centroid = (0.63784408398973824, -1.3748942360058685) +description = Virgilina town, VA +station = ('khnz', 0.0047219645929447579) +zone = ('ncz007', 0.0038671845126447969) + +[fips51820] +centroid = (0.66439722652360711, -1.3770895634989044) +description = Waynesboro city, VA +station = ('kshd', 0.0034821550904968997) +zone = ('vaz025', 0.0035434012107392375) + +[fips5182000] +centroid = (0.64192026555118586, -1.3268694596020194) +description = Virginia Beach city, VA +station = ('kntu', 0.00066465681079707305) +zone = ('vaz098', 0.00069760862478286125) + +[fips5182096275] +centroid = (0.66439722652360711, -1.3770895634989044) +description = Waynesboro city, VA +station = ('kshd', 0.0034821550904968997) +zone = ('vaz025', 0.0035434012107392375) + +[fips5182320] +centroid = (0.65635389411908374, -1.3210334276492008) +description = Wachapreague town, VA +station = ('kmfv', 0.0013096388702287592) +zone = ('vaz099', 0.002846418074944249) + +[fips5182371] +centroid = (0.67761610593211685, -1.3481420212175168) +description = Wakefield CDP, VA +station = ('kdaa', 0.0020495820986350436) +zone = ('vaz053', 0.00055134707741714799) + +[fips5182384] +centroid = (0.64523297028464122, -1.3436957774947689) +description = Wakefield town, VA +station = ('kakq', 0.00029838079890048841) +zone = ('vaz089', 0.0029299849100677478) + +[fips51830] +centroid = (0.65047187274047502, -1.3387847700455071) +description = Williamsburg city, VA +station = ('kjgg', 0.00054084049645283967) +zone = ('vaz090', 0.0013707998772081785) + +[fips5183056] +centroid = (0.64398352397972347, -1.3582034080229513) +description = Warfield CDP, VA +station = ('kavc', 0.0049061535916515462) +zone = ('vaz079', 0.0023820979691567563) + +[fips5183088] +centroid = (0.66401192763793682, -1.3923992077249632) +description = Warm Springs CDP, VA +station = ('khsp', 0.001822251809382806) +zone = ('vaz020', 0.00056753384963048787) + +[fips5183096395] +centroid = (0.65047187274047502, -1.3387847700455071) +description = Williamsburg city, VA +station = ('kjgg', 0.00054084049645283967) +zone = ('vaz090', 0.0013707998772081785) + +[fips5183136] +centroid = (0.67575338583463329, -1.3578193134144647) +description = Warrenton town, VA +station = ('khwy', 0.0026261033537047195) +zone = ('vaz502', 0.0024122436772745248) + +[fips5183168] +centroid = (0.66253141719334752, -1.3397330772412857) +description = Warsaw town, VA +station = ('kxsa', 0.0025270867498099489) +zone = ('vaz076', 0.00058247037032610753) + +[fips5183248] +centroid = (0.67564720000294209, -1.3641486277737747) +description = Washington town, VA +station = ('kcjr', 0.0052238225115833333) +zone = ('vaz040', 0.00047539027197600158) + +[fips5183568] +centroid = (0.66203462667505986, -1.3176702479937779) +description = Wattsville CDP, VA +station = ('kwal', 0.00041766786996534519) +zone = ('vaz099', 0.0035596402760181764) + +[fips5183600] +centroid = (0.64636565406260049, -1.3455719889873703) +description = Waverly town, VA +station = ('kakq', 0.0015993329356385755) +zone = ('vaz088', 0.0030342336074470934) + +[fips5183680] +centroid = (0.66439722652360711, -1.3770895634989044) +description = Waynesboro city, VA +station = ('kshd', 0.0034821550904968997) +zone = ('vaz025', 0.0035434012107392375) + +[fips5183808] +centroid = (0.63920451578179027, -1.4410023164297527) +description = Weber City town, VA +station = ('ktri', 0.0035721065975032047) +zone = ('vaz005', 0.0016738648147938352) + +[fips51840] +centroid = (0.68371299479493863, -1.3644348094112242) +description = Winchester city, VA +station = ('kokv', 0.00054841643785624977) +zone = ('vaz028', 0.0012543642577940914) + +[fips5184096427] +centroid = (0.68371299479493863, -1.3644348094112242) +description = Winchester city, VA +station = ('kokv', 0.00054841643785624977) +zone = ('vaz028', 0.0012543642577940914) + +[fips5184366] +centroid = (0.67833198763140734, -1.3471794895883344) +description = West Falls Church CDP, VA +station = ('kdca', 0.0021154839773703691) +zone = ('vaz054', 0.0012145719498688741) + +[fips5184632] +centroid = (0.64783822325909313, -1.3909899416204403) +description = Westlake Corner CDP, VA +station = ('kroa', 0.0050925458655260896) +zone = ('vaz033', 0.003372556336199465) + +[fips5184960] +centroid = (0.65541097999069386, -1.340444281458181) +description = West Point town, VA +station = ('kfyj', 0.00075051690671754209) +zone = ('vaz073', 0.0031623578534020289) + +[fips5184976] +centroid = (0.67678225742868403, -1.3478476539858757) +description = West Springfield CDP, VA +station = ('kdaa', 0.0011988834003957285) +zone = ('vaz053', 0.0013001268125461078) + +[fips5185184] +centroid = (0.66819150250427273, -1.3772814973567462) +description = Weyers Cave CDP, VA +station = ('kshd', 0.00035552548243364445) +zone = ('vaz025', 0.0036484721988660537) + +[fips5185600] +centroid = (0.65702460669733265, -1.3332564047332303) +description = White Stone town, VA +station = ('kfyj', 0.0056109602029482198) +zone = ('vaz085', 0.0013089484792611183) + +[fips5185608] +centroid = (0.65941279307271405, -1.3205797642167298) +description = Whitesville CDP, VA +station = ('kmfv', 0.0027011452611402395) +zone = ('vaz099', 0.00035536063959433375) + +[fips5186160] +centroid = (0.65047187274047502, -1.3387847700455071) +description = Williamsburg city, VA +station = ('kjgg', 0.00054084049645283967) +zone = ('vaz090', 0.0013707998772081785) + +[fips5186720] +centroid = (0.68371299479493863, -1.3644348094112242) +description = Winchester city, VA +station = ('kokv', 0.00054841643785624977) +zone = ('vaz028', 0.0012543642577940914) + +[fips5186784] +centroid = (0.64246351673416169, -1.3393548294857935) +description = Windsor town, VA +station = ('ksfq', 0.0029500400940632152) +zone = ('vaz093', 0.0017323115547984214) + +[fips5187008] +centroid = (0.66169193127643078, -1.3775864587369471) +description = Wintergreen CDP, VA +station = ('kshd', 0.0062010037170568506) +zone = ('vaz036', 0.002257276689888892) + +[fips5187072] +centroid = (0.6453650218958471, -1.4413043282035178) +description = Wise town, VA +station = ('klnp', 0.00066988617123535463) +zone = ('vaz002', 0.00056801493873134313) + +[fips5187240] +centroid = (0.679584924594829, -1.3488403449045325) +description = Wolf Trap CDP, VA +station = ('kiad', 0.0022702112961724592) +zone = ('vaz053', 0.0017224895558684067) + +[fips5187312] +centroid = (0.67464573007814765, -1.3480418916783301) +description = Woodbridge CDP, VA +station = ('kdaa', 0.0013113410473707403) +zone = ('vaz053', 0.0032678350941813795) + +[fips5187333] +centroid = (0.67803503731247305, -1.3480169858299043) +description = Woodburn CDP, VA +station = ('kdaa', 0.002409408922596105) +zone = ('vaz053', 0.00061469269770848345) + +[fips5187380] +centroid = (0.65312917143322147, -1.3557285311436231) +description = Woodlake CDP, VA +station = ('kfci', 0.0023526429872928849) +zone = ('vaz070', 0.0015223711105304025) + +[fips5187408] +centroid = (0.64121244727303961, -1.4103911263053646) +description = Woodlawn CDP, VA +station = ('khlx', 0.0004972631502715752) +zone = ('vaz016', 0.0010239741403387738) + +[fips5187430] +centroid = (0.6760178555761881, -1.3459084012006921) +description = Woodlawn CDP, VA +station = ('kdaa', 0.00097466772330840441) +zone = ('vaz054', 0.0021877628029699976) + +[fips5187712] +centroid = (0.67844639396387563, -1.3703824551697079) +description = Woodstock town, VA +station = ('klua', 0.0035860384547786433) +zone = ('vaz027', 0.00076190501762334409) + +[fips5187960] +centroid = (0.65785089792510421, -1.3545682537101902) +description = Wyndham CDP, VA +station = ('kofp', 0.0024581080208310809) +zone = ('vaz063', 0.0020396398044464376) + +[fips5188000] +centroid = (0.64495823800708474, -1.4152602283992857) +description = Wytheville town, VA +station = ('kmkj', 0.0037664429583784882) +zone = ('vaz012', 0.00064799409938427581) + +[fips5188145] +centroid = (0.65738054914498434, -1.3734417730023587) +description = Yogaville CDP, VA +station = ('kfvx', 0.0065664140679222768) +zone = ('vaz047', 0.0027844829112118456) + +[fips5188176] +centroid = (0.6769956588363254, -1.3517551843817031) +description = Yorkshire CDP, VA +station = ('khef', 0.0015556967035918849) +zone = ('vaz052', 0.0015227542948825301) + +[fips5188240] +centroid = (0.64985615548695641, -1.3354945626061101) +description = Yorktown CDP, VA +station = ('kphf', 0.0017753605024971887) +zone = ('vaz091', 0.00032764515679539535) + +[fips53001] +centroid = (0.82038922237313139, -2.0687964978805349) +description = Adams County, WA +station = ('keph', 0.01275778969005947) +zone = ('waz035', 0.0061902426863392167) + +[fips5300100] +centroid = (0.81989768529589224, -2.160887225065689) +description = Aberdeen city, WA +station = ('khqm', 0.0014825184457175958) +zone = ('waz517', 0.0045352629600411342) + +[fips5300135] +centroid = (0.82130513625799306, -2.1603321754569698) +description = Aberdeen Gardens CDP, WA +station = ('khqm', 0.0024339311064829976) +zone = ('waz517', 0.0037606681318273576) + +[fips5300191632] +centroid = (0.81900046388731951, -2.0683768858217704) +description = Lind-Washtucna CCD, WA +station = ('kpsc', 0.013608483097943526) +zone = ('waz035', 0.0076065731599523441) + +[fips5300192496] +centroid = (0.81738814617761957, -2.0790035847719257) +description = Othello CCD, WA +station = ('kmwh', 0.006828919893549665) +zone = ('waz034', 0.0054297845499628348) + +[fips5300192800] +centroid = (0.82293686202897509, -2.0664491522096502) +description = Ritzville CCD, WA +station = ('kgeg', 0.013065658273770485) +zone = ('waz035', 0.004372330946763172) + +[fips5300275] +centroid = (0.85032125252569124, -2.133466793519919) +description = Acme CDP, WA +station = ('kbvs', 0.0048277515988586969) +zone = ('waz503', 0.003661764264996429) + +[fips53003] +centroid = (0.80602552914836101, -2.0460107532568506) +description = Asotin County, WA +station = ('klws', 0.0041097510580037277) +zone = ('waz031', 0.0019758552768704514) + +[fips5300380] +centroid = (0.84402218472231849, -2.0566468595316745) +description = Addy CDP, WA +station = ('kdew', 0.0083048300562490532) +zone = ('waz037', 0.0027131298898771783) + +[fips5300390096] +centroid = (0.80547032246000905, -2.0454157530615533) +description = Asotin CCD, WA +station = ('klws', 0.0043424445887236722) +zone = ('waz031', 0.0025072791206244421) + +[fips5300390592] +centroid = (0.80886001366676985, -2.0472935528037741) +description = Clarkston CCD, WA +station = ('klws', 0.0034506586648952011) +zone = ('waz032', 0.0016515528750421391) + +[fips53005] +centroid = (0.80683206324900003, -2.0859627884582803) +description = Benton County, WA +station = ('kpdt', 0.0019367112899903631) +zone = ('waz028', 0.0044620450638791758) + +[fips5300590192] +centroid = (0.80849630450394672, -2.0871052809866355) +description = Benton City CCD, WA +station = ('kpdt', 0.003640670074014593) +zone = ('waz028', 0.0048257517144236319) + +[fips5300591336] +centroid = (0.81179050874733094, -2.0866837665189863) +description = Hanford Site CCD, WA +station = ('khms', 0.0010755608477259005) +zone = ('waz028', 0.005454594558635284) + +[fips5300592224] +centroid = (0.80796455504074172, -2.0894479317218324) +description = Northwest Benton CCD, WA +station = ('kpdt', 0.0045873647821278868) +zone = ('waz028', 0.0064853957720467387) + +[fips5300592768] +centroid = (0.80668004507115132, -2.0818661516379993) +description = Richland-Kennewick CCD, WA +station = ('kpdt', 0.0015298580616411122) +zone = ('waz028', 0.0023842692739751547) + +[fips5300593088] +centroid = (0.8028163398928414, -2.0854540249813236) +description = South Benton CCD, WA +station = ('kpdt', 0.0032037310516189101) +zone = ('orz044', 0.004416543268713412) + +[fips53007] +centroid = (0.83531269504889405, -2.1051907143083586) +description = Chelan County, WA +station = ('keat', 0.009416015045972153) +zone = ('waz041', 0.0061475227213753387) + +[fips5300790448] +centroid = (0.8285126828436139, -2.1044357721404086) +description = Cashmere CCD, WA +station = ('keat', 0.0045972432144130654) +zone = ('waz041', 0.005003254065303722) + +[fips5300790544] +centroid = (0.83632041325241047, -2.0988734427208877) +description = Chelan CCD, WA +station = ('keat', 0.0090588067747776318) +zone = ('waz041', 0.0050432299556605106) + +[fips5300791040] +centroid = (0.83604632674667734, -2.1040022847140909) +description = Entiat CCD, WA +station = ('keat', 0.0096808613416671761) +zone = ('waz041', 0.006117178021868017) + +[fips5300791600] +centroid = (0.83437960712419279, -2.1108245149607487) +description = Leavenworth-Lake Wenatchee CCD, WA +station = ('ksmp', 0.010231300178023747) +zone = ('waz041', 0.0089905356434252046) + +[fips5300791840] +centroid = (0.82589828434388146, -2.0990014451682288) +description = Malaga CCD, WA +station = ('keat', 0.0015802193896709337) +zone = ('waz041', 0.0054174635750629157) + +[fips5300791904] +centroid = (0.83658715192199273, -2.0962726752426133) +description = Manson CCD, WA +station = ('keat', 0.009364308438854517) +zone = ('waz041', 0.00546182548424432) + +[fips5300793280] +centroid = (0.84239470010141881, -2.1060701159052688) +description = Stehekin CCD, WA +station = ('keat', 0.016076488461926056) +zone = ('waz042', 0.002965168263350965) + +[fips5300793712] +centroid = (0.82918273219674699, -2.1004594583187597) +description = Wenatchee CCD, WA +station = ('keat', 0.0025740827827411147) +zone = ('waz041', 0.0025749654188432693) + +[fips5300800] +centroid = (0.81259658906236454, -2.104974607640377) +description = Ahtanum CDP, WA +station = ('kykm', 0.00088590688712820997) +zone = ('waz027', 0.0041557954987547739) + +[fips53009] +centroid = (0.83973042009166443, -2.1629972059583022) +description = Clallam County, WA +station = ('cwsp', 0.0047208322665277047) +zone = ('waz515', 0.0028191261450343573) + +[fips5300905] +centroid = (0.83154978263488666, -2.0522088014031179) +description = Airway Heights city, WA +station = ('kgeg', 0.00075658349783026921) +zone = ('waz036', 0.00057818834132226341) + +[fips5300990032] +centroid = (0.83968553022330317, -2.1500631817370106) +description = Agnew-Carlsborg CCD, WA +station = ('kclm', 0.0036192906911211129) +zone = ('waz514', 0.0010319056065007069) + +[fips5300990576] +centroid = (0.84207390858490228, -2.1720646277547258) +description = Clallam Bay-Neah Bay CCD, WA +station = ('kuil', 0.0056453176778600506) +zone = ('waz515', 0.0036839285228456747) + +[fips5300990816] +centroid = (0.83780593279195292, -2.1610814627581432) +description = Crescent CCD, WA +station = ('kclm', 0.0042380510241353427) +zone = ('waz515', 0.0049579120046873799) + +[fips5300991168] +centroid = (0.83770718206287509, -2.1709200408312679) +description = Forks CCD, WA +station = ('kuil', 0.0024015412123591538) +zone = ('waz516', 0.0011835419854070287) + +[fips5300992592] +centroid = (0.83888447645651532, -2.1537346214449209) +description = Port Angeles CCD, WA +station = ('kclm', 0.0014796636885276119) +zone = ('waz514', 0.0016264975053771982) + +[fips5300992960] +centroid = (0.83933063497320259, -2.1466344824214674) +description = Sequim CCD, WA +station = ('knuw', 0.0060409992304787932) +zone = ('waz510', 0.0041303974635088624) + +[fips5301010] +centroid = (0.81667418434050632, -2.0464117775590815) +description = Albion town, WA +station = ('kpuw', 0.0017624782908590892) +zone = ('waz033', 0.0038609187681579427) + +[fips5301045] +centroid = (0.8166207598121028, -2.1339391494286786) +description = Alder CDP, WA +station = ('kplu', 0.005437028641262687) +zone = ('waz509', 0.007236312185678411) + +[fips53011] +centroid = (0.798866415449483, -2.1377822946284) +description = Clark County, WA +station = ('kvuo', 0.0033646822238046496) +zone = ('waz039', 0.00073725145423488112) + +[fips5301150] +centroid = (0.82329006430970109, -2.1331351809620402) +description = Alderton CDP, WA +station = ('kplu', 0.0014951123663990626) +zone = ('waz509', 0.0033751172362002811) + +[fips5301185] +centroid = (0.83452132785945465, -2.1339734102418952) +description = Alderwood Manor CDP, WA +station = ('kpae', 0.0017916834191787638) +zone = ('waz507', 0.0041977246810910984) + +[fips5301190128] +centroid = (0.79873621388728433, -2.1371899473335656) +description = Battle Ground CCD, WA +station = ('kvuo', 0.0035300007237099918) +zone = ('waz039', 0.00099105846002198682) + +[fips5301190416] +centroid = (0.79654320768215336, -2.1356682471186295) +description = Camas CCD, WA +station = ('kttd', 0.0016705932251068569) +zone = ('waz039', 0.0026343605274076979) + +[fips5301191520] +centroid = (0.80090886955333684, -2.1398578052682868) +description = La Center CCD, WA +station = ('kspb', 0.0038311002768045711) +zone = ('waz039', 0.0027762344810666555) + +[fips5301192448] +centroid = (0.79700390479150984, -2.1386990288180101) +description = Orchards CCD, WA +station = ('kpdx', 0.0016107386411037931) +zone = ('waz039', 0.0013125049475799923) + +[fips5301192784] +centroid = (0.79968382295136209, -2.1419458997320802) +description = Ridgefield CCD, WA +station = ('kspb', 0.0019528335917376567) +zone = ('waz039', 0.0027881352526873261) + +[fips5301193600] +centroid = (0.79720800359423805, -2.1405879812141513) +description = Vancouver CCD, WA +station = ('kvuo', 0.0010477707147298612) +zone = ('waz039', 0.0018424555818854014) + +[fips5301193888] +centroid = (0.80133530584947665, -2.1358567077712598) +description = Yacolt CCD, WA +station = ('kvuo', 0.0061593064398180923) +zone = ('waz040', 0.002604500416942488) + +[fips5301255] +centroid = (0.84841870401467723, -2.1350591272096833) +description = Alger CDP, WA +station = ('kbvs', 0.0026595690840953263) +zone = ('waz506', 0.002587290692406962) + +[fips5301290] +centroid = (0.82522577407650299, -2.1336717824405658) +description = Algona city, WA +station = ('ksea', 0.0030358039063299851) +zone = ('waz509', 0.0035833687245326144) + +[fips53013] +centroid = (0.80796267008514944, -2.057946257159784) +description = Columbia County, WA +station = ('kalw', 0.0056118997546663642) +zone = ('waz030', 0.0027515606100722142) + +[fips5301390864] +centroid = (0.80642372601720347, -2.0564317651546586) +description = Dayton CCD, WA +station = ('kalw', 0.0058365215944342543) +zone = ('waz030', 0.00095154350550543526) + +[fips5301393264] +centroid = (0.81058010545778036, -2.059988187664862) +description = Starbuck CCD, WA +station = ('kalw', 0.0067262572568199657) +zone = ('waz029', 0.0031812344210782845) + +[fips5301430] +centroid = (0.82704948606520445, -2.1439464659338863) +description = Allyn CDP, WA +station = ('kpwt', 0.0022435944109595353) +zone = ('waz511', 0.0024611369968891988) + +[fips53015] +centroid = (0.80609642442257701, -2.1407978570567034) +description = Cowlitz County, WA +station = ('kkls', 0.0031582142674369583) +zone = ('waz040', 0.0032631296418258278) + +[fips5301500] +centroid = (0.83270714536846924, -2.0758410132607268) +description = Almira town, WA +station = ('keph', 0.009903314224856203) +zone = ('waz035', 0.0072875638283794245) + +[fips5301590464] +centroid = (0.8078351563299988, -2.1468194524155941) +description = Castle Rock CCD, WA +station = ('kkls', 0.003202608196874724) +zone = ('waz022', 0.0018946384233448018) + +[fips5301591440] +centroid = (0.80337730616772496, -2.14299824600457) +description = Kalama CCD, WA +station = ('kkls', 0.0020562842660961501) +zone = ('orz005', 0.0027614471283165369) + +[fips5301591664] +centroid = (0.805330242334244, -2.1455144871871705) +description = Longview-Kelso CCD, WA +station = ('kkls', 0.00056415868385138312) +zone = ('waz022', 0.00077874906465135103) + +[fips5301592182] +centroid = (0.80722731051140673, -2.1377604605594573) +description = Northeast Cowlitz CCD, WA +station = ('kkls', 0.0055374922049690242) +zone = ('waz040', 0.0037897994623661249) + +[fips5301592864] +centroid = (0.80519089524676479, -2.1423868222610114) +description = Rose Valley CCD, WA +station = ('kkls', 0.0018429530379779394) +zone = ('waz022', 0.0024943075369998056) + +[fips5301593856] +centroid = (0.80328729953819955, -2.1382691018633664) +description = Woodland CCD, WA +station = ('kkls', 0.0049426391119759151) +zone = ('waz040', 0.00021391918968883834) + +[fips53017] +centroid = (0.83314803299081552, -2.0890872070720303) +description = Douglas County, WA +station = ('keph', 0.007895139713542762) +zone = ('waz044', 0.0012029127122321905) + +[fips5301745] +centroid = (0.80756267552717753, -2.157487533122314) +description = Altoona CDP, WA +station = ('kast', 0.003858840642257077) +zone = ('waz021', 0.0043575167124322613) + +[fips5301780] +centroid = (0.8281042757986472, -2.1629110390531312) +description = Amanda Park CDP, WA +station = ('khqm', 0.0083817957772922193) +zone = ('waz517', 0.004638167723107196) + +[fips5301790320] +centroid = (0.8361842426641698, -2.0864531038050429) +description = Bridgeport CCD, WA +station = ('komk', 0.0097242412150368284) +zone = ('waz044', 0.0045281881570054545) + +[fips5301790944] +centroid = (0.82702314904679186, -2.0972692582455021) +description = East Wenatchee CCD, WA +station = ('keat', 0.00049326526751966452) +zone = ('waz041', 0.0043237092440297975) + +[fips5301793696] +centroid = (0.83067202164747367, -2.0905375407738527) +description = Waterville CCD, WA +station = ('keph', 0.0059929838676226581) +zone = ('waz044', 0.0017095625540445951) + +[fips5301850] +centroid = (0.80140225667958309, -2.1376482009819693) +description = Amboy CDP, WA +station = ('kvuo', 0.0056430965700670545) +zone = ('waz040', 0.0020606416880377177) + +[fips53019] +centroid = (0.84538942329845335, -2.0685131611297658) +description = Ferry County, WA +station = ('komk', 0.011582448226719484) +zone = ('waz038', 0.0026836152062615663) + +[fips5301920] +centroid = (0.8313693504968156, -2.1286142196940139) +description = Ames Lake CDP, WA +station = ('krnt', 0.00381555478090484) +zone = ('waz505', 0.0014759768872725473) + +[fips5301990] +centroid = (0.84628790134408749, -2.1401921928996761) +description = Anacortes city, WA +station = ('knuw', 0.0024398951244792863) +zone = ('waz506', 0.0030052719767932495) + +[fips5301990704] +centroid = (0.84156683807732047, -2.0686073565494962) +description = Colville Reservation CCD, WA +station = ('kska', 0.01464171688906243) +zone = ('waz038', 0.005859763641631102) + +[fips5301990832] +centroid = (0.85331751161246749, -2.0702186794215223) +description = Curlew CCD, WA +station = ('cycg', 0.013290564890272454) +zone = ('waz038', 0.0063327677758764625) + +[fips5301990920] +centroid = (0.84983481180986786, -2.0657578272929351) +description = East Ferry CCD, WA +station = ('cycg', 0.013480134911875144) +zone = ('waz038', 0.0048013021749828931) + +[fips5301992752] +centroid = (0.84898481901085421, -2.0710864396723214) +description = Republic CCD, WA +station = ('komk', 0.010315469566144471) +zone = ('waz038', 0.0019659462399522157) + +[fips5302060] +centroid = (0.82294026542101639, -2.1414394051831516) +description = Anderson Island CDP, WA +station = ('ktiw', 0.0024770452843582767) +zone = ('waz509', 0.0022955236312335375) + +[fips53021] +centroid = (0.81218163703270285, -2.0753176762845165) +description = Franklin County, WA +station = ('kpsc', 0.0053137868007217207) +zone = ('waz028', 0.0047783918951168798) + +[fips5302190752] +centroid = (0.81401014867684729, -2.0774950268862566) +description = Connell CCD, WA +station = ('kpsc', 0.0065842355808768569) +zone = ('waz028', 0.0055740713172445456) + +[fips5302191424] +centroid = (0.81173851538891406, -2.0715906652932228) +description = Kahlotus CCD, WA +station = ('kpsc', 0.0066243396111670301) +zone = ('waz028', 0.0066038968731250442) + +[fips5302192512] +centroid = (0.80725490416688073, -2.0790865053646881) +description = Pasco CCD, WA +station = ('kpsc', 0.00026173894886601226) +zone = ('waz028', 0.0016480510434802454) + +[fips5302192528] +centroid = (0.8104592414070797, -2.079158517649625) +description = Pasco North CCD, WA +station = ('kpsc', 0.0029562003618329395) +zone = ('waz028', 0.0018454896213612047) + +[fips53023] +centroid = (0.81034719126910171, -2.051402668728207) +description = Garfield County, WA +station = ('klws', 0.006354838430671873) +zone = ('waz032', 0.0018958603747920111) + +[fips5302392576] +centroid = (0.81085717647653444, -2.053588571443282) +description = Pomeroy CCD, WA +station = ('kpuw', 0.0082826318170125621) +zone = ('waz032', 0.0034570242260191387) + +[fips5302393040] +centroid = (0.80882570049367564, -2.0509676803187324) +description = Snake River CCD, WA +station = ('klws', 0.0059794973009895756) +zone = ('waz032', 0.0021147176014847556) + +[fips53025] +centroid = (0.82403334767824798, -2.0851062506745714) +description = Grant County, WA +station = ('keph', 0.0016147655818764815) +zone = ('waz034', 0.0035515746249909692) + +[fips5302585] +centroid = (0.84070412182805965, -2.1318921923753549) +description = Arlington city, WA +station = ('kawo', 0.0002155760125111673) +zone = ('waz507', 0.0023408753902819756) + +[fips5302590784] +centroid = (0.8314076604738968, -2.0804946370051969) +description = Coulee City CCD, WA +station = ('keph', 0.0069330603963134252) +zone = ('waz044', 0.0056621313528065122) + +[fips5302591072] +centroid = (0.82490177115416274, -2.0869028227934043) +description = Ephrata-Soap Lake CCD, WA +station = ('keph', 0.0009044008598182424) +zone = ('waz034', 0.0045070087008242336) + +[fips5302591200] +centroid = (0.82113318642008648, -2.087540094863185) +description = George CCD, WA +station = ('keph', 0.0045366466811954777) +zone = ('waz034', 0.0015150933818175428) + +[fips5302591248] +centroid = (0.82496015241764187, -2.0828217543100509) +description = Gloyd CCD, WA +station = ('kmwh', 0.0011891620970759101) +zone = ('waz034', 0.0048306661297588217) + +[fips5302591296] +centroid = (0.83606484469004094, -2.0784182711539767) +description = Grand Coulee CCD, WA +station = ('komk', 0.011048342554334822) +zone = ('waz043', 0.0088921278662387367) + +[fips5302591944] +centroid = (0.81729224033522263, -2.0880946732330061) +description = Mattawa-Royal City CCD, WA +station = ('khms', 0.0045744842090331451) +zone = ('waz034', 0.0036505071379145599) + +[fips5302592032] +centroid = (0.82280048200122413, -2.0815235609591252) +description = Moses Lake CCD, WA +station = ('kmwh', 0.0011843496092983541) +zone = ('waz034', 0.0035707779071457346) + +[fips5302592720] +centroid = (0.82348383076325748, -2.0927780373879301) +description = Quincy CCD, WA +station = ('keat', 0.0051438537789234165) +zone = ('waz026', 0.0063883297199475329) + +[fips5302593680] +centroid = (0.81992697192074071, -2.0786239407530318) +description = Warden CCD, WA +station = ('kmwh', 0.0046708947713119961) +zone = ('waz034', 0.0047411533324843314) + +[fips5302593792] +centroid = (0.82552766367722041, -2.0788361378834894) +description = Wilson Creek CCD, WA +station = ('kmwh', 0.0030134434590980848) +zone = ('waz035', 0.0059601574060755063) + +[fips5302620] +centroid = (0.84145674270810455, -2.1304013495815934) +description = Arlington Heights CDP, WA +station = ('kawo', 0.0014417442378283922) +zone = ('waz507', 0.0035335386907777381) + +[fips53027] +centroid = (0.82279683426308747, -2.1611896033585967) +description = Grays Harbor County, WA +station = ('khqm', 0.0033235584256804691) +zone = ('waz517', 0.0025150948717521915) + +[fips5302790016] +centroid = (0.82002190037875677, -2.1613549907585159) +description = Aberdeen-Hoquiam CCD, WA +station = ('khqm', 0.0011910488581540067) +zone = ('waz517', 0.004255875627002091) + +[fips5302791024] +centroid = (0.82069987352669382, -2.1543467084135952) +description = Elma CCD, WA +station = ('kshn', 0.0051334401798875618) +zone = ('waz512', 0.0010948005784806056) + +[fips5302791360] +centroid = (0.82376816235169992, -2.162431073508833) +description = Humptulips CCD, WA +station = ('khqm', 0.0040667148356940998) +zone = ('waz517', 0.0015369585125026698) + +[fips5302791824] +centroid = (0.821002391445942, -2.1515028514771029) +description = McCleary CCD, WA +station = ('kshn', 0.0037551207031421619) +zone = ('waz512', 0.0028602010215145316) + +[fips5302791856] +centroid = (0.81920594150015691, -2.1523822356207205) +description = Malone-Porter CCD, WA +station = ('kshn', 0.0056383662832025748) +zone = ('waz512', 0.0030812204172965844) + +[fips5302792008] +centroid = (0.82302985317152133, -2.1570291049409853) +description = Montesano CCD, WA +station = ('kshn', 0.0055656033658508857) +zone = ('waz512', 0.0019464568879554564) + +[fips5302792136] +centroid = (0.82799147516909066, -2.1592466679286919) +description = Neilton CCD, WA +station = ('kshn', 0.0077789918225033517) +zone = ('waz513', 0.0056174414247668492) + +[fips5302792208] +centroid = (0.81813605466868433, -2.158091975548865) +description = North River CCD, WA +station = ('khqm', 0.0037364721161742146) +zone = ('waz512', 0.0035815159424739717) + +[fips5302792288] +centroid = (0.81728970960780711, -2.1523438383771767) +description = Oakville CCD, WA +station = ('kcls', 0.0048120579846260116) +zone = ('waz512', 0.0046237204478236545) + +[fips5302792296] +centroid = (0.82216231981352494, -2.1666159890826799) +description = Ocean Shores CCD, WA +station = ('khqm', 0.0034459298516653059) +zone = ('waz517', 0.0019661703396498726) + +[fips5302792704] +centroid = (0.8274642635619408, -2.1672963707849848) +description = Quinault Reservation CCD, WA +station = ('khqm', 0.0082629231528672641) +zone = ('waz517', 0.0042291561409743385) + +[fips5302793739] +centroid = (0.81788050355960729, -2.1644204696034262) +description = Westport CCD, WA +station = ('khqm', 0.0020682981664358739) +zone = ('waz517', 0.0057466483319778983) + +[fips5302793840] +centroid = (0.82387303918645227, -2.1607532012324282) +description = Wishkah CCD, WA +station = ('khqm', 0.0044336892934313272) +zone = ('waz517', 0.0026817571513695587) + +[fips53029] +centroid = (0.840523270810968, -2.1410041724275817) +description = Island County, WA +station = ('knuw', 0.003351901408452978) +zone = ('waz510', 0.00086547070010900627) + +[fips5302910] +centroid = (0.8256011071321443, -2.1406943241254748) +description = Artondale CDP, WA +station = ('ktiw', 0.0011032589852267708) +zone = ('waz509', 0.0029162097967201251) + +[fips5302990400] +centroid = (0.84041909210791643, -2.1373674124119084) +description = Camano Island CCD, WA +station = ('knuw', 0.0040807844492799601) +zone = ('waz510', 0.0021872627361202851) + +[fips5302990528] +centroid = (0.840523270810968, -2.1410041724275817) +description = Central Whidbey Island CCD, WA +station = ('knuw', 0.003351901408452978) +zone = ('waz510', 0.00086547070010900627) + +[fips5302992256] +centroid = (0.84331763020987349, -2.1410145745899234) +description = North Whidbey Island CCD, WA +station = ('knuw', 0.0006011652043444762) +zone = ('waz510', 0.0036033518542482779) + +[fips5302993168] +centroid = (0.83753884505652021, -2.1372050967914729) +description = South Whidbey Island CCD, WA +station = ('kpae', 0.0023348476694461055) +zone = ('waz510', 0.0030982214920832699) + +[fips5303005] +centroid = (0.81596055411595092, -2.1296559369113592) +description = Ashford CDP, WA +station = ('kplu', 0.0068859957411616882) +zone = ('waz519', 0.0047340055987773145) + +[fips5303075] +centroid = (0.80867788855932421, -2.0427238619430326) +description = Asotin city, WA +station = ('klws', 0.00063547454835564054) +zone = ('idz026', 0.004533761143147459) + +[fips53031] +centroid = (0.8343134765988347, -2.1558622825228571) +description = Jefferson County, WA +station = ('kclm', 0.0054867063557513737) +zone = ('waz513', 0.0012591645741610968) + +[fips5303180] +centroid = (0.82560648274624049, -2.1329761291073059) +description = Auburn city, WA +station = ('ksea', 0.0028438578649472956) +zone = ('waz509', 0.0041867351305032883) + +[fips5303190898] +centroid = (0.8399839989786867, -2.1452455319494379) +description = Discovery Bay-Port Townsend CCD, WA +station = ('knuw', 0.0049455469485902535) +zone = ('waz510', 0.0031920965722895922) + +[fips5303192274] +centroid = (0.83690066541552854, -2.1417055678940806) +description = Oak Bay-Port Ludlow CCD, WA +station = ('knuw', 0.0070017827400148539) +zone = ('waz510', 0.0029477984318565069) + +[fips5303192690] +centroid = (0.8334805880264905, -2.1477009658608988) +description = Quilcene Bay-Brinnon CCD, WA +station = ('kpwt', 0.0057095293092172842) +zone = ('waz511', 0.0046033238516315989) + +[fips5303193728] +centroid = (0.83285310725381345, -2.1639945394527693) +description = West End CCD, WA +station = ('kclm', 0.0089849611207583387) +zone = ('waz516', 0.0061458142952007851) + +[fips53033] +centroid = (0.82891889077372305, -2.1263760792744266) +description = King County, WA +station = ('ksea', 0.0057638213721528751) +zone = ('waz505', 0.0025808860781168018) + +[fips5303391056] +centroid = (0.82482827533936132, -2.1246883284344555) +description = Enumclaw Plateau CCD, WA +station = ('ksmp', 0.0047833485200789398) +zone = ('waz519', 0.0051283288076325066) + +[fips5303391140] +centroid = (0.82572935392558089, -2.1343959893603883) +description = Federal Way-Auburn CCD, WA +station = ('ksea', 0.0024469702244779459) +zone = ('waz509', 0.0035124524137986283) + +[fips5303391392] +centroid = (0.8296957542770782, -2.1291415534742115) +description = Issaquah Plateau CCD, WA +station = ('krnt', 0.0027436448001705157) +zone = ('waz505', 0.00059255615149859757) + +[fips5303392928] +centroid = (0.83005534446286655, -2.134959521269272) +description = Seattle CCD, WA +station = ('kbfi', 0.00017521020567351126) +zone = ('waz508', 0.0016207206456655807) + +[fips5303392931] +centroid = (0.83121731486567429, -2.1315836356168947) +description = Seattle East CCD, WA +station = ('krnt', 0.0024087749778169466) +zone = ('waz505', 0.0016504353348415868) + +[fips5303393078] +centroid = (0.83087470673350783, -2.1217586362053504) +description = Snoqualmie Valley CCD, WA +station = ('ksmp', 0.0062689261448250341) +zone = ('waz505', 0.005453222024046629) + +[fips5303393392] +centroid = (0.82746016203819872, -2.1294877569846373) +description = Tahoma-Maple Valley CCD, WA +station = ('krnt', 0.0028946948239324155) +zone = ('waz505', 0.0026599050194737205) + +[fips5303393616] +centroid = (0.82748138524190296, -2.1372447681253708) +description = Vashon Island CCD, WA +station = ('ksea', 0.0017693087842729409) +zone = ('waz508', 0.0019175123061739476) + +[fips53035] +centroid = (0.83146939276953991, -2.1406399745725682) +description = Kitsap County, WA +station = ('kpwt', 0.0027093517521174625) +zone = ('waz508', 0.0031338046661768763) + +[fips5303590120] +centroid = (0.83163636841907818, -2.1382873056474647) +description = Bainbridge Island CCD, WA +station = ('kbfi', 0.002905219091919947) +zone = ('waz508', 0.0023653912699363819) + +[fips5303590288] +centroid = (0.83044245849095899, -2.1429915090336573) +description = Bremerton CCD, WA +station = ('kpwt', 0.0014680187494640177) +zone = ('waz511', 0.0025944827868270605) + +[fips5303591488] +centroid = (0.83519631649437098, -2.1384836377350216) +description = Kingston CCD, WA +station = ('kpae', 0.0030494564947237458) +zone = ('waz510', 0.004728202171937662) + +[fips5303592608] +centroid = (0.82872671256978592, -2.14030255006828) +description = Port Orchard CCD, WA +station = ('kpwt', 0.0014441214550331889) +zone = ('waz508', 0.0022304937758371611) + +[fips5303592624] +centroid = (0.8334167089758675, -2.1403574581265477) +description = Poulsbo CCD, WA +station = ('kpwt', 0.0045946260719304972) +zone = ('waz508', 0.004561851668536226) + +[fips53037] +centroid = (0.82247670597168665, -2.1062059897875365) +description = Kittitas County, WA +station = ('keln', 0.002330840556055239) +zone = ('waz026', 0.0053531513814976533) + +[fips5303736] +centroid = (0.83163636841907818, -2.1382873056474647) +description = Bainbridge Island city, WA +station = ('kbfi', 0.002905219091919947) +zone = ('waz508', 0.0023653912699363819) + +[fips5303790624] +centroid = (0.82662924568790919, -2.1125361069983017) +description = Cle Elum CCD, WA +station = ('ksmp', 0.0037410768134827437) +zone = ('waz520', 0.010492978273303529) + +[fips5303791008] +centroid = (0.82027088904984624, -2.1039842205563324) +description = Ellensburg CCD, WA +station = ('keln', 0.00064469592066025412) +zone = ('waz026', 0.0029644124842658644) + +[fips5303791504] +centroid = (0.81789776486590959, -2.0983933550035418) +description = Kittitas CCD, WA +station = ('keln', 0.0046982718784510848) +zone = ('waz026', 0.0017362685315718491) + +[fips5303791890] +centroid = (0.82105092905243993, -2.1103489476461657) +description = Manastash Ridge CCD, WA +station = ('keln', 0.0045319177998388175) +zone = ('waz520', 0.005204210882641969) + +[fips5303792188] +centroid = (0.82268644218789877, -2.1000992921743182) +description = Northeast Kittitas CCD, WA +station = ('keln', 0.0030434608434035996) +zone = ('waz026', 0.0033817195395167681) + +[fips53039] +centroid = (0.80057395832317169, -2.108010712593976) +description = Klickitat County, WA +station = ('kdls', 0.0064530293026600271) +zone = ('waz521', 0.0023864004884417114) + +[fips5303990836] +centroid = (0.79907030481270092, -2.1140343674413842) +description = Dallesport-Klickitat CCD, WA +station = ('kdls', 0.0029527632579676583) +zone = ('waz024', 0.0032077632330445235) + +[fips5303991264] +centroid = (0.80037811492780542, -2.1086588406117039) +description = Goldendale CCD, WA +station = ('kdls', 0.0059917030661241991) +zone = ('waz024', 0.0024631396624839566) + +[fips5303991346] +centroid = (0.80098630981224783, -2.0987288421923602) +description = Horse Heaven Hills Plateau CCD, WA +station = ('kdls', 0.012179975092429888) +zone = ('orz041', 0.0056747610819166561) + +[fips5303993744] +centroid = (0.80066857262192226, -2.1202029718831703) +description = White Salmon CCD, WA +station = ('kdls', 0.0058957332318317693) +zone = ('orz014', 0.0052597899319476752) + +[fips5303993896] +centroid = (0.80291922705224661, -2.1122446370132191) +description = Yakama Nation Reservation CCD, WA +station = ('kdls', 0.006981448648600945) +zone = ('waz024', 0.0052103453127222421) + +[fips53041] +centroid = (0.81297560476272757, -2.1358893279749793) +description = Lewis County, WA +station = ('kplu', 0.0091343251387737499) +zone = ('waz504', 0.0066938067192686083) + +[fips5304100] +centroid = (0.83291051113291159, -2.1417655374071791) +description = Bangor Base CDP, WA +station = ('kpwt', 0.0039020142338186342) +zone = ('waz508', 0.0046904199804621649) + +[fips5304125] +centroid = (0.83130159681525317, -2.0817316391125478) +description = Banks Lake South CDP, WA +station = ('keph', 0.0064308730674062621) +zone = ('waz044', 0.0048468479854526106) + +[fips5304190208] +centroid = (0.81157447189251908, -2.1236630696719563) +description = Big Bottom CCD, WA +station = ('kplu', 0.012782307190346509) +zone = ('waz019', 0.0079174891785672007) + +[fips5304190352] +centroid = (0.81474063878197689, -2.1498861355376881) +description = Bunker CCD, WA +station = ('kcls', 0.0023877484075950734) +zone = ('waz020', 0.0042935469801365853) + +[fips5304190512] +centroid = (0.81503888064455776, -2.1460445611342935) +description = Centralia-Chehalis CCD, WA +station = ('kcls', 0.00040412902474920901) +zone = ('waz504', 0.00083793484914274606) + +[fips5304191088] +centroid = (0.81175689370593751, -2.142145181426073) +description = Ethel CCD, WA +station = ('kcls', 0.004165325147052654) +zone = ('waz504', 0.0041502094144919323) + +[fips5304191648] +centroid = (0.81460715600078448, -2.1429238251652651) +description = Logan Hill CCD, WA +station = ('kcls', 0.0023917559485081173) +zone = ('waz504', 0.001621539529027784) + +[fips5304191984] +centroid = (0.81454982193485648, -2.1343575048503816) +description = Mineral CCD, WA +station = ('kplu', 0.0075002567441146148) +zone = ('waz519', 0.0079911531101240756) + +[fips5304192016] +centroid = (0.81183810387603283, -2.1322188307448653) +description = Morton CCD, WA +station = ('kplu', 0.010316899146633158) +zone = ('waz019', 0.0075854197260444888) + +[fips5304192048] +centroid = (0.81088077332802144, -2.1382905868664586) +description = Mossyrock CCD, WA +station = ('kcls', 0.0067721911579349476) +zone = ('waz504', 0.0064577274132644486) + +[fips5304192120] +centroid = (0.81216263039714864, -2.1446310538796887) +description = Napavine CCD, WA +station = ('kcls', 0.0028329042404863576) +zone = ('waz504', 0.0032735923234296013) + +[fips5304192146] +centroid = (0.81355339601160037, -2.1461152818755842) +description = Newaukum Prairie CCD, WA +station = ('kcls', 0.0011832414591651374) +zone = ('waz504', 0.0020349552364541269) + +[fips5304193448] +centroid = (0.81037928787404589, -2.1466102397981577) +description = Toledo-Vader CCD, WA +station = ('kcls', 0.0043426805003682917) +zone = ('waz022', 0.0043282752418368148) + +[fips5304193816] +centroid = (0.8117700709417901, -2.1496342321667479) +description = Winlock-Pe Ell CCD, WA +station = ('kcls', 0.0036906926874317185) +zone = ('waz020', 0.0031216901631483285) + +[fips5304195] +centroid = (0.79785318200553024, -2.1399725955731901) +description = Barberton CDP, WA +station = ('kvuo', 0.0017564385401992301) +zone = ('waz039', 0.0011428101767562361) + +[fips53043] +centroid = (0.83047509614797121, -2.0667781991335286) +description = Lincoln County, WA +station = ('ksff', 0.013067693060189602) +zone = ('waz035', 0.0045784205315882376) + +[fips5304300] +centroid = (0.83371931416157818, -2.1202604804820235) +description = Baring CDP, WA +station = ('ksmp', 0.0086487389062436821) +zone = ('waz505', 0.0073461806137598232) + +[fips5304347] +centroid = (0.8485859763701884, -2.0617393288632657) +description = Barney's Junction CDP, WA +station = ('cycg', 0.01315097812187826) +zone = ('waz037', 0.0069998838713071472) + +[fips5304370] +centroid = (0.85134200833872009, -2.0618073967040935) +description = Barstow CDP, WA +station = ('cycg', 0.010750355398965484) +zone = ('waz037', 0.0087996414278919931) + +[fips5304390848] +centroid = (0.83277217633639855, -2.0614087285963532) +description = Davenport CCD, WA +station = ('kska', 0.0056694053568917919) +zone = ('waz035', 0.0086112618986410195) + +[fips5304392304] +centroid = (0.82724581815276121, -2.0658813616973912) +description = Odessa CCD, WA +station = ('kska', 0.0092692358463376187) +zone = ('waz035', 0.0029914521790069012) + +[fips5304393760] +centroid = (0.83291778915589232, -2.0715117415044473) +description = Wilbur CCD, WA +station = ('kmwh', 0.011751260398052809) +zone = ('waz035', 0.0064727598023135982) + +[fips5304405] +centroid = (0.81313212589004646, -2.079675815786624) +description = Basin City CDP, WA +station = ('khms', 0.0053331414923657805) +zone = ('waz028', 0.00440456931891515) + +[fips5304475] +centroid = (0.79895888299325368, -2.1387398346159219) +description = Battle Ground city, WA +station = ('kvuo', 0.0030985722235759056) +zone = ('waz039', 0.00067890832044362052) + +[fips53045] +centroid = (0.82648541310425239, -2.1497892348576175) +description = Mason County, WA +station = ('kshn', 0.0021620972923031456) +zone = ('waz511', 0.0035005119393412588) + +[fips5304590162] +centroid = (0.82806463937133434, -2.1460724514957406) +description = Belfair-Tahuya CCD, WA +station = ('kpwt', 0.0026692423979916636) +zone = ('waz511', 0.00093114878321999214) + +[fips5304591456] +centroid = (0.82237898498686757, -2.1495862530656105) +description = Kamilche CCD, WA +station = ('kshn', 0.0020273737503584237) +zone = ('waz512', 0.0042801602074195276) + +[fips5304592976] +centroid = (0.82388228943148778, -2.1482073382367797) +description = Shelton CCD, WA +station = ('kshn', 0.00077324274244437794) +zone = ('waz511', 0.0052922303926961553) + +[fips5304593008] +centroid = (0.82613001170866873, -2.149509126965965) +description = Skokomish Reservation CCD, WA +station = ('kshn', 0.0017766059684735586) +zone = ('waz511', 0.0036434118801521682) + +[fips5304593444] +centroid = (0.82444391893148716, -2.1453897310522381) +description = Timber Lake-Harstine Island CCD, WA +station = ('kshn', 0.0025079584756854088) +zone = ('waz511', 0.0045803810228440805) + +[fips5304593528] +centroid = (0.82642191802606479, -2.1459595112398442) +description = Union-Grapeview CCD, WA +station = ('kshn', 0.0029439004375001838) +zone = ('waz511', 0.0025753651147512688) + +[fips5304593734] +centroid = (0.82699258833158928, -2.1520320527596) +description = West Mason CCD, WA +station = ('kshn', 0.0032926093248633621) +zone = ('waz511', 0.0044354408651849451) + +[fips5304615] +centroid = (0.81368563960902396, -2.1633911442237701) +description = Bay Center CDP, WA +station = ('khqm', 0.00604198910041548) +zone = ('waz021', 0.0030106356988311108) + +[fips53047] +centroid = (0.84737429899028383, -2.0890026458697712) +description = Okanogan County, WA +station = ('komk', 0.0024960062951072462) +zone = ('waz043', 0.0044738879641027509) + +[fips5304790] +centroid = (0.84625779441449056, -2.1373747602480595) +description = Bay View CDP, WA +station = ('kbvs', 0.00055910592897630436) +zone = ('waz506', 0.0011748585992025758) + +[fips5304790304] +centroid = (0.84144260554116335, -2.0916152815869591) +description = Brewster-Wakefield CCD, WA +station = ('komk', 0.005833441338535526) +zone = ('waz043', 0.0051223486924927755) + +[fips5304790720] +centroid = (0.84208417112090406, -2.0815481351949932) +description = Colville Reservation CCD, WA +station = ('komk', 0.0048139913031599486) +zone = ('waz043', 0.0028135523945196379) + +[fips5304790736] +centroid = (0.84696983638942669, -2.0896085892794787) +description = Conconully-Riverside CCD, WA +station = ('komk', 0.0026431024330277704) +zone = ('waz043', 0.0044415652069639093) + +[fips5304790912] +centroid = (0.85003433784995597, -2.1008956335521258) +description = Early Winters CCD, WA +station = ('cydc', 0.013423464198430775) +zone = ('waz042', 0.0072395253912149625) + +[fips5304791968] +centroid = (0.84327057613323975, -2.0979977935818694) +description = Methow Valley CCD, WA +station = ('komk', 0.008416226336282414) +zone = ('waz042', 0.0024782238538494715) + +[fips5304792320] +centroid = (0.84303722561224803, -2.0900965135251659) +description = Okanogan CCD, WA +station = ('komk', 0.0039700719098764957) +zone = ('waz043', 0.0035976305947067419) + +[fips5304792416] +centroid = (0.84518780286326289, -2.0860476987263894) +description = Omak CCD, WA +station = ('komk', 0.00071750554131433982) +zone = ('waz043', 0.001555274398424746) + +[fips5304792480] +centroid = (0.85150048423480129, -2.0822974399494592) +description = Oroville CCD, WA +station = ('cwyy', 0.0045311730450265592) +zone = ('waz043', 0.0078222442774591849) + +[fips5304793454] +centroid = (0.84998356622201543, -2.0856129721163028) +description = Tonasket CCD, WA +station = ('komk', 0.0040870834305068151) +zone = ('waz043', 0.006145828427867781) + +[fips5304895] +centroid = (0.83052667062736762, -2.1328719853108389) +description = Beaux Arts Village town, WA +station = ('krnt', 0.0015020603118892114) +zone = ('waz508', 0.0031025114711656552) + +[fips53049] +centroid = (0.81256573164118928, -2.160410767633187) +description = Pacific County, WA +station = ('kast', 0.0071996536331565266) +zone = ('waz021', 0.0012538517279409465) + +[fips5304991656] +centroid = (0.81126579296101142, -2.1651885366473511) +description = Long Beach-North Beach Peninsula CCD, WA +station = ('kast', 0.0061593986456618538) +zone = ('waz021', 0.0031091037989014244) + +[fips5304992128] +centroid = (0.80972885602170519, -2.160042293721506) +description = Naselle CCD, WA +station = ('kast', 0.0045066396042771377) +zone = ('waz021', 0.0016544669098624398) + +[fips5304992736] +centroid = (0.81488202790468101, -2.1608329278726592) +description = Raymond CCD, WA +station = ('khqm', 0.0050719582283672709) +zone = ('waz021', 0.0035586753930545037) + +[fips5304993776] +centroid = (0.81335011751362052, -2.1560964358953045) +description = Willapa Valley CCD, WA +station = ('khqm', 0.0079529783947474599) +zone = ('waz020', 0.0021885745252623488) + +[fips53051] +centroid = (0.8472504853331474, -2.0460875826505238) +description = Pend Oreille County, WA +station = ('kdew', 0.010341836243408868) +zone = ('waz037', 0.0050246279428482945) + +[fips5305140] +centroid = (0.82814029939440825, -2.1441214700979834) +description = Belfair CDP, WA +station = ('kpwt', 0.0014700712008065705) +zone = ('waz511', 0.0016313564893752784) + +[fips5305191376] +centroid = (0.85027248802639055, -2.0464461954519306) +description = Ione-Metaline Falls CCD, WA +station = ('cycg', 0.011068538401922765) +zone = ('waz037', 0.0068250182507180604) + +[fips5305192160] +centroid = (0.84328942568916121, -2.046952306028424) +description = Newport CCD, WA +station = ('kdew', 0.0063630364792422508) +zone = ('waz037', 0.0041822936068228629) + +[fips5305210] +centroid = (0.83073900738416528, -2.1320329531795279) +description = Bellevue city, WA +station = ('krnt', 0.0018489124012740033) +zone = ('waz505', 0.0016533069644765546) + +[fips5305245] +centroid = (0.83871702956807903, -2.1482725786442196) +description = Bell Hill CDP, WA +station = ('cwlm', 0.0068547693630122289) +zone = ('waz514', 0.0020687719462724264) + +[fips5305280] +centroid = (0.85089373797363788, -2.1374987484381212) +description = Bellingham city, WA +station = ('kbli', 0.0011046341740858874) +zone = ('waz503', 0.001855217896457761) + +[fips53053] +centroid = (0.821015376695577, -2.1318273359403506) +description = Pierce County, WA +station = ('kplu', 0.0020133570428308226) +zone = ('waz509', 0.0048314598842706868) + +[fips5305390336] +centroid = (0.82248611329635501, -2.1310507691429681) +description = Buckley CCD, WA +station = ('kplu', 0.0022960549759476812) +zone = ('waz509', 0.004858988690339028) + +[fips5305390976] +centroid = (0.81750602571529929, -2.1316018219477004) +description = Eatonville CCD, WA +station = ('kplu', 0.0049192365863593842) +zone = ('waz519', 0.0047466256924262292) + +[fips5305391184] +centroid = (0.82109812275541394, -2.1389356954645806) +description = Fort Lewis-DuPont CCD, WA +station = ('kgrf', 0.0012430677109914853) +zone = ('waz509', 0.0022519557577401158) + +[fips5305391232] +centroid = (0.82592922903151933, -2.1401615449180111) +description = Gig Harbor Peninsula CCD, WA +station = ('ktiw', 0.0011006192071943617) +zone = ('waz509', 0.0029988028389972637) + +[fips5305391280] +centroid = (0.82051457192000965, -2.1340118947519016) +description = Graham-Thrift CCD, WA +station = ('kplu', 0.0015540405149806345) +zone = ('waz509', 0.0039214397282749175) + +[fips5305391480] +centroid = (0.8247505558277699, -2.1422272817140868) +description = Key Peninsula-Anderson Island CCD, WA +station = ('ktiw', 0.0019608438778319025) +zone = ('waz509', 0.0031672889783767805) + +[fips5305392064] +centroid = (0.81952566836582963, -2.1260850805282416) +description = Mount Rainier CCD, WA +station = ('kplu', 0.0061816277041345123) +zone = ('waz519', 0.00047054268182992115) + +[fips5305392672] +centroid = (0.82348931109710877, -2.13337572223955) +description = Puyallup CCD, WA +station = ('kplu', 0.0015882343412317753) +zone = ('waz509', 0.0032182311278486351) + +[fips5305392880] +centroid = (0.81917771952615204, -2.136925111072868) +description = Roy CCD, WA +station = ('kplu', 0.0033617435003193779) +zone = ('waz509', 0.004176734097072623) + +[fips5305393376] +centroid = (0.82385041971934647, -2.1372584515067063) +description = Tacoma CCD, WA +station = ('ktcm', 0.00098315586129744319) +zone = ('waz509', 0.00080979926967799461) + +[fips53055] +centroid = (0.84663935829556158, -2.1485110604332118) +description = San Juan County, WA +station = ('kfhr', 0.0007897574699045354) +zone = ('waz001', 0.0020052577798271671) + +[fips5305560] +centroid = (0.80745463964647901, -2.0852997378754474) +description = Benton City city, WA +station = ('kpdt', 0.0020498725203640972) +zone = ('waz028', 0.003798429315656434) + +[fips5305591696] +centroid = (0.84618281506982485, -2.1443189017429694) +description = Lopez CCD, WA +station = ('kfhr', 0.0020857076081845674) +zone = ('waz001', 0.0020490613571303423) + +[fips5305592432] +centroid = (0.84984338137649518, -2.1452404879478997) +description = Orcas CCD, WA +station = ('kors', 0.00027466793257984644) +zone = ('waz001', 0.0020671847637319528) + +[fips5305592914] +centroid = (0.84663935829556158, -2.1485110604332118) +description = San Juan Island CCD, WA +station = ('kfhr', 0.0007897574699045354) +zone = ('waz001', 0.0020052577798271671) + +[fips53057] +centroid = (0.84636366608691649, -2.1260951336247329) +description = Skagit County, WA +station = ('kawo', 0.0069988078033691855) +zone = ('waz518', 0.003644337817336966) + +[fips5305735] +centroid = (0.82881972116562475, -2.1400938086897412) +description = Bethel CDP, WA +station = ('kpwt', 0.0015669457597507466) +zone = ('waz508', 0.0020684437795071577) + +[fips5305790064] +centroid = (0.84660436444405907, -2.1407682562725894) +description = Anacortes CCD, WA +station = ('knuw', 0.0027388663541130323) +zone = ('waz506', 0.0034369781452954656) + +[fips5305790144] +centroid = (0.84619005818622073, -2.1372490441820382) +description = Bay View CCD, WA +station = ('kbvs', 0.00045328702350612622) +zone = ('waz506', 0.0010743717274715593) + +[fips5305790272] +centroid = (0.84799019077672755, -2.136707660501362) +description = Bow CCD, WA +station = ('kbvs', 0.0020149635239392876) +zone = ('waz506', 0.0022250502343895834) + +[fips5305790384] +centroid = (0.84646330693391292, -2.134884803723994) +description = Burlington CCD, WA +station = ('kbvs', 0.0012655006465192274) +zone = ('waz506', 0.00080642034138285565) + +[fips5305790608] +centroid = (0.84576541957921048, -2.1327806522310824) +description = Clear Lake CCD, WA +station = ('kbvs', 0.0025720458589311023) +zone = ('waz506', 0.0019408884804145987) + +[fips5305790768] +centroid = (0.84367955913685955, -2.1351258336936945) +description = Conway CCD, WA +station = ('kbvs', 0.002508229690890082) +zone = ('waz506', 0.0022206554489752717) + +[fips5305790936] +centroid = (0.84647852620499031, -2.1175931810526629) +description = East Skagit CCD, WA +station = ('cwza', 0.014026054448849896) +zone = ('waz518', 0.0019930369932746449) + +[fips5305791536] +centroid = (0.8448798395167485, -2.1369644682475006) +description = La Conner CCD, WA +station = ('kbvs', 0.0011158979207134189) +zone = ('waz506', 0.0012938298695334364) + +[fips5305791560] +centroid = (0.8444797227857288, -2.1284709630690104) +description = Lake Cavanaugh CCD, WA +station = ('kawo', 0.0045532292580206411) +zone = ('waz506', 0.0049959783179098537) + +[fips5305791776] +centroid = (0.84778045456051543, -2.1288668561032402) +description = Lyman-Hamilton CCD, WA +station = ('kbvs', 0.0054596625189976735) +zone = ('waz506', 0.0049161195292898524) + +[fips5305792096] +centroid = (0.84506788129035848, -2.1347943433088634) +description = Mount Vernon CCD, WA +station = ('kbvs', 0.0015276403264609742) +zone = ('waz506', 0.0010010650490450881) + +[fips5305792944] +centroid = (0.8466921021455569, -2.1335948308738453) +description = Sedro-Woolley CCD, WA +station = ('kbvs', 0.0021456710041783439) +zone = ('waz506', 0.0016230714787079843) + +[fips5305793360] +centroid = (0.84500803395030755, -2.1386635637276097) +description = Swinomish Reservation CCD, WA +station = ('knuw', 0.0017426326260448488) +zone = ('waz506', 0.0021432666163024479) + +[fips5305793544] +centroid = (0.84838819565935242, -2.1322839140726724) +description = Upper Samish River CCD, WA +station = ('kbvs', 0.0037635171198354711) +zone = ('waz506', 0.0033888287414269567) + +[fips53059] +centroid = (0.80328398341262086, -2.1284853445820469) +description = Skamania County, WA +station = ('kczk', 0.0063077905017377475) +zone = ('waz019', 0.0013495797108136177) + +[fips5305980] +centroid = (0.80294990994049653, -2.0997703674234875) +description = Bickleton CDP, WA +station = ('kykm', 0.010161975025307956) +zone = ('waz521', 0.0042152637400446787) + +[fips5305990424] +centroid = (0.79873027976782751, -2.1247350858051166) +description = Carson-Underwood CCD, WA +station = ('kczk', 0.0024494704147352987) +zone = ('orz009', 0.0029252564595060515) + +[fips5305992179] +centroid = (0.79698343207938394, -2.1307810110537799) +description = North Bonneville CCD, WA +station = ('kczk', 0.0024573475613537152) +zone = ('waz023', 0.0016807707474504015) + +[fips5305992216] +centroid = (0.80430789827159577, -2.1277614518214896) +description = North Skamania CCD, WA +station = ('kczk', 0.0072823980216547681) +zone = ('waz019', 0.00092144473319689198) + +[fips5305993312] +centroid = (0.79815238379919973, -2.1281664205678301) +description = Stevenson CCD, WA +station = ('kczk', 0.0012835224861947017) +zone = ('waz023', 0.0010607718018237021) + +[fips5306050] +centroid = (0.84444497328032164, -2.1332472485533103) +description = Big Lake CDP, WA +station = ('kbvs', 0.0027260287982311115) +zone = ('waz506', 0.0021630390170072375) + +[fips5306085] +centroid = (0.7978725202536423, -2.1200199566578064) +description = Bingen city, WA +station = ('kdls', 0.004056515743688485) +zone = ('orz014', 0.0026802584605639355) + +[fips53061] +centroid = (0.83871645360942582, -2.1252248077399334) +description = Snohomish County, WA +station = ('kpae', 0.0065027432864501796) +zone = ('waz518', 0.0082466186526394571) + +[fips5306190] +centroid = (0.85340407994336631, -2.1421902981872369) +description = Birch Bay CDP, WA +station = ('cwwk', 0.002160238780643271) +zone = ('waz503', 0.0030700616995034242) + +[fips5306190080] +centroid = (0.84090497431837907, -2.1291080955124508) +description = Arlington CCD, WA +station = ('kawo', 0.0020826190322710231) +zone = ('waz507', 0.0037904395108162396) + +[fips5306190839] +centroid = (0.84191735255099842, -2.1195338999144182) +description = Darrington CCD, WA +station = ('kpae', 0.011319976829960108) +zone = ('waz518', 0.004504265067515955) + +[fips5306190992] +centroid = (0.8348381225719842, -2.1347255947896273) +description = Edmonds CCD, WA +station = ('kpae', 0.0015002563338987712) +zone = ('waz507', 0.0039335011718855152) + +[fips5306191120] +centroid = (0.83666776868014237, -2.1335625597359757) +description = Everett CCD, WA +station = ('kpae', 0.00058551382765032009) +zone = ('waz507', 0.0020520353821656618) + +[fips5306191312] +centroid = (0.83797318769417151, -2.1236937874667916) +description = Granite Falls CCD, WA +station = ('kpae', 0.0072607367881416061) +zone = ('waz518', 0.0086425585225512486) + +[fips5306191584] +centroid = (0.83778984085624952, -2.1304913387578264) +description = Lake Stevens CCD, WA +station = ('kpae', 0.002921210906602583) +zone = ('waz507', 0.0023640279237048881) + +[fips5306191872] +centroid = (0.83454530868337717, -2.1311225370818101) +description = Maltby CCD, WA +station = ('kpae', 0.0027357924468721911) +zone = ('waz505', 0.0045251527676163309) + +[fips5306191936] +centroid = (0.83930544987209632, -2.1316190658007104) +description = Marysville CCD, WA +station = ('kawo', 0.0014175634907017682) +zone = ('waz507', 0.0015370057578636184) + +[fips5306192000] +centroid = (0.83596914828715407, -2.1279117944832566) +description = Monroe CCD, WA +station = ('kpae', 0.0042597123462125887) +zone = ('waz507', 0.0047736395628200012) + +[fips5306193056] +centroid = (0.83677114453173795, -2.1311663099394504) +description = Snohomish CCD, WA +station = ('kpae', 0.0021163254711274999) +zone = ('waz507', 0.0025994942852630796) + +[fips5306193248] +centroid = (0.8417471131357589, -2.1340258050260403) +description = Stanwood CCD, WA +station = ('kawo', 0.0016219854109405189) +zone = ('waz507', 0.0030367328648346231) + +[fips5306193320] +centroid = (0.83617872742373356, -2.1204275433980246) +description = Sultan CCD, WA +station = ('ksmp', 0.011086378758780381) +zone = ('waz505', 0.0087302256910492572) + +[fips5306193506] +centroid = (0.83909604526844206, -2.1338651649216867) +description = Tulalip Reservation CCD, WA +station = ('kawo', 0.0019203216910060078) +zone = ('waz507', 0.00038841640269549445) + +[fips53063] +centroid = (0.83113240459756477, -2.0490931967020907) +description = Spokane County, WA +station = ('ksff', 0.0015070021306794197) +zone = ('waz036', 0.0024544837783124522) + +[fips5306330] +centroid = (0.82579810244481699, -2.1296105408975148) +description = Black Diamond city, WA +station = ('krnt', 0.0039972298014381768) +zone = ('waz505', 0.0043166477514731474) + +[fips5306390048] +centroid = (0.83288363306243085, -2.0541899246370567) +description = Airway Heights CCD, WA +station = ('kska', 0.001896183029800088) +zone = ('waz036', 0.0020417679864565687) + +[fips5306390056] +centroid = (0.82669315964511714, -2.053044290516048) +description = Amber-Cheney South CCD, WA +station = ('kska', 0.0043803252330189123) +zone = ('waz036', 0.0044044588293743973) + +[fips5306390552] +centroid = (0.82954233983582781, -2.0542388811225751) +description = Cheney-Medical Lake CCD, WA +station = ('kska', 0.0016316608479648635) +zone = ('waz036', 0.0018531080641342695) + +[fips5306390640] +centroid = (0.8357514708228454, -2.0464580113309667) +description = Colbert CCD, WA +station = ('kdew', 0.0025412761725621511) +zone = ('waz036', 0.0062857390972832633) + +[fips5306390880] +centroid = (0.83627246905785824, -2.0497394921241039) +description = Deer Park CCD, WA +station = ('kdew', 0.00090872997200104101) +zone = ('waz036', 0.0055571753271326241) + +[fips5306391616] +centroid = (0.83179809062756804, -2.0434365845963769) +description = Liberty Lake CCD, WA +station = ('ksff', 0.0028116242547994693) +zone = ('idz002', 0.0032459203954731458) + +[fips5306392080] +centroid = (0.83553018052698491, -2.0439877246675717) +description = Mount Spokane CCD, WA +station = ('ksff', 0.0040808219592929204) +zone = ('idz002', 0.0058675519646454533) + +[fips5306392816] +centroid = (0.82687085161626273, -2.0463838871976345) +description = Rockford CCD, WA +station = ('kgeg', 0.005370462173763752) +zone = ('waz036', 0.0060191786504399311) + +[fips5306393200] +centroid = (0.83196368746699723, -2.048344921691883) +description = Spokane CCD, WA +station = ('ksff', 0.00059107729471421491) +zone = ('waz036', 0.0030828104620971085) + +[fips5306393224] +centroid = (0.82985498066473762, -2.0494107244529056) +description = Spokane South CCD, WA +station = ('kgeg', 0.00178057097801993) +zone = ('waz036', 0.0025606600937408772) + +[fips5306393584] +centroid = (0.82998202318099035, -2.0451169526936117) +description = Valleyford CCD, WA +station = ('ksff', 0.0027883881966921141) +zone = ('waz036', 0.0052562649381354687) + +[fips53065] +centroid = (0.84457613477360893, -2.0569559922487874) +description = Stevens County, WA +station = ('kdew', 0.0088785142818484514) +zone = ('waz037', 0.0027944090055366947) + +[fips5306505] +centroid = (0.85494841707870106, -2.1423041460143444) +description = Blaine city, WA +station = ('cwwk', 0.0007067496241636536) +zone = ('waz503', 0.0037786162959429432) + +[fips5306590560] +centroid = (0.84347053850564069, -2.0546997178582718) +description = Chewelah CCD, WA +station = ('kdew', 0.0071556489483961946) +zone = ('waz037', 0.001906004579528716) + +[fips5306590688] +centroid = (0.84764117728620636, -2.0555078402085303) +description = Colville CCD, WA +station = ('kdew', 0.011179816086315285) +zone = ('waz037', 0.0033010952774708492) + +[fips5306591368] +centroid = (0.84096719530621278, -2.0616360228248403) +description = Hunters-Gifford CCD, WA +station = ('kska', 0.011341870489575284) +zone = ('waz037', 0.0070781862908363205) + +[fips5306591472] +centroid = (0.85224017222508897, -2.0573967751513784) +description = Kettle Falls CCD, WA +station = ('cycg', 0.0086789109503075321) +zone = ('waz037', 0.0079674592713249691) + +[fips5306591680] +centroid = (0.83653913791427048, -2.0537634010744545) +description = Loon Lake CCD, WA +station = ('kdew', 0.0028615974220304306) +zone = ('waz036', 0.0054902621967080458) + +[fips5306593216] +centroid = (0.83652060251761418, -2.0603285094157089) +description = Spokane Reservation CCD, WA +station = ('kska', 0.0071793835663296248) +zone = ('waz036', 0.0074506717610113536) + +[fips5306593232] +centroid = (0.8398374262281042, -2.0552550641729641) +description = Springdale CCD, WA +station = ('kdew', 0.0046243798291363495) +zone = ('waz037', 0.0053088386861156077) + +[fips53067] +centroid = (0.81912836161490565, -2.1437781638341162) +description = Thurston County, WA +station = ('kolm', 0.0010296972483721677) +zone = ('waz504', 0.0037877609444471917) + +[fips5306792352] +centroid = (0.82138142459959773, -2.1442928265239445) +description = Olympia CCD, WA +station = ('kolm', 0.0017289692299226663) +zone = ('waz509', 0.0046210851571032762) + +[fips5306792368] +centroid = (0.81978943997568354, -2.1410414177538191) +description = Olympia East CCD, WA +station = ('kgrf', 0.0029389981906723928) +zone = ('waz509', 0.0040220964927032768) + +[fips5306792384] +centroid = (0.82032419140520207, -2.1477574796220784) +description = Olympia West CCD, WA +station = ('kolm', 0.0019686321321660798) +zone = ('waz504', 0.0052556713888563091) + +[fips5306793440] +centroid = (0.81749998687608738, -2.1427804114606288) +description = Thurston South CCD, WA +station = ('kolm', 0.0026947132565135878) +zone = ('waz504', 0.0025543830868498029) + +[fips5306855] +centroid = (0.83790100087630903, -2.1464278354380317) +description = Blyn CDP, WA +station = ('knuw', 0.0071029092595394404) +zone = ('waz510', 0.0043773559881122963) + +[fips53069] +centroid = (0.80799385911888266, -2.1541631695894554) +description = Wahkiakum County, WA +station = ('kast', 0.0060889775228386359) +zone = ('waz020', 0.003617404349582042) + +[fips5306990478] +centroid = (0.80625154928649434, -2.1523072213694694) +description = Cathlamet CCD, WA +station = ('kkls', 0.0052357827233686562) +zone = ('orz005', 0.0046465648166175016) + +[fips5306991328] +centroid = (0.80843649207048096, -2.1571453962290454) +description = Grays River CCD, WA +station = ('kast', 0.0045708286883514564) +zone = ('waz021', 0.0037768204459070827) + +[fips5306992640] +centroid = (0.80591716165510463, -2.153419589514936) +description = Puget Island CCD, WA +station = ('kast', 0.0060785567077829596) +zone = ('orz005', 0.0051109620262362416) + +[fips5306992992] +centroid = (0.80812676594142197, -2.1525858457312581) +description = Skamokawa CCD, WA +station = ('kkls', 0.0061627625341401527) +zone = ('waz020', 0.0036504704790110785) + +[fips53071] +centroid = (0.80729516891272435, -2.0678726252942843) +description = Walla Walla County, WA +station = ('kalw', 0.0035988471191733032) +zone = ('waz029', 0.0033840495969045029) + +[fips5307170] +centroid = (0.8237867152016487, -2.1321471500724858) +description = Bonney Lake city, WA +station = ('kplu', 0.0022993787630347195) +zone = ('waz509', 0.0040776638457612003) + +[fips5307190368] +centroid = (0.80535865629446657, -2.0752880580471098) +description = Burbank CCD, WA +station = ('kpsc', 0.003336355258339477) +zone = ('waz028', 0.0047556210899609031) + +[fips5307191104] +centroid = (0.80944152246694934, -2.0681858420818471) +description = Eureka Flat CCD, WA +station = ('kalw', 0.0054960626581232941) +zone = ('waz029', 0.003632289933021512) + +[fips5307193488] +centroid = (0.80386053547772462, -2.0708821139767903) +description = Touchet CCD, WA +station = ('kalw', 0.0045332919007056672) +zone = ('orz507', 0.0058761206131672438) + +[fips5307193648] +centroid = (0.8055611493942828, -2.0644500520844158) +description = Waitsburg CCD, WA +station = ('kalw', 0.00096443149127285505) +zone = ('waz029', 0.0028670903897115023) + +[fips5307193664] +centroid = (0.80380875155881792, -2.0651753934682522) +description = Walla Walla-College Place CCD, WA +station = ('kalw', 0.00094115284616160346) +zone = ('waz029', 0.0046897947331021889) + +[fips53073] +centroid = (0.85246511025908589, -2.1264469047354724) +description = Whatcom County, WA +station = ('cyxx', 0.0069302772361138371) +zone = ('waz518', 0.0072201056744893542) + +[fips5307380] +centroid = (0.83386346090450048, -2.1328795600397932) +description = Bothell city, WA +station = ('kpae', 0.00260695350341389) +zone = ('waz505', 0.0042969056305101781) + +[fips5307390] +centroid = (0.83438102084088683, -2.1325184339642629) +description = Bothell East CDP, WA +station = ('kpae', 0.0022452093140616102) +zone = ('waz507', 0.004412235454135347) + +[fips5307390176] +centroid = (0.85056076405894243, -2.1367896386163285) +description = Bellingham CCD, WA +station = ('kbli', 0.0016688916398931867) +zone = ('waz503', 0.0022552285178646077) + +[fips5307390224] +centroid = (0.85403026917239688, -2.1430805382788014) +description = Blaine CCD, WA +station = ('cwwk', 0.0014736304616511354) +zone = ('waz503', 0.0038059921548062809) + +[fips5307390960] +centroid = (0.85259145464363773, -2.1204072103122389) +description = East Whatcom CCD, WA +station = ('cwza', 0.0076650400767996627) +zone = ('waz518', 0.0062266978247882514) + +[fips5307391152] +centroid = (0.8528903771846269, -2.1390094007188925) +description = Ferndale CCD, WA +station = ('kbli', 0.0011988679179810264) +zone = ('waz503', 0.00091846558103185092) + +[fips5307391744] +centroid = (0.84986060777621242, -2.1411606935549004) +description = Lummi Island CCD, WA +station = ('kbli', 0.0025076653666924954) +zone = ('waz503', 0.003707197498483571) + +[fips5307391760] +centroid = (0.85115103441196693, -2.1404341828004654) +description = Lummi Reservation CCD, WA +station = ('kbli', 0.001330047165580412) +zone = ('waz503', 0.0024404610050069433) + +[fips5307391792] +centroid = (0.85449438712708725, -2.1381754300424118) +description = Lynden CCD, WA +station = ('cyxx', 0.0020789274772626269) +zone = ('waz503', 0.0017837986319014134) + +[fips5307392560] +centroid = (0.85482825115970129, -2.1473671192815771) +description = Point Roberts CCD, WA +station = ('cwez', 0.003402780295845946) +zone = ('waz503', 0.00672830856311195) + +[fips5307393328] +centroid = (0.85412952604695791, -2.1346139286240846) +description = Sumas CCD, WA +station = ('cyxx', 0.0018101510144643207) +zone = ('waz503', 0.0024174206982030366) + +[fips5307395] +centroid = (0.83435845373365869, -2.1335027473025101) +description = Bothell West CDP, WA +station = ('kpae', 0.0020081818019991224) +zone = ('waz507', 0.004360758883921215) + +[fips5307397] +centroid = (0.82924383617385933, -2.1347672034389951) +description = Boulevard Park CDP, WA +station = ('kbfi', 0.00066152174689374313) +zone = ('waz508', 0.00161928224150455) + +[fips5307485] +centroid = (0.85040181692396333, -2.061793818042513) +description = Boyds CDP, WA +station = ('cycg', 0.011554606764270487) +zone = ('waz037', 0.0081303213298950239) + +[fips53075] +centroid = (0.81861739902309183, -2.0511626335961801) +description = Whitman County, WA +station = ('kpuw', 0.0055408623571208543) +zone = ('waz033', 0.0004591373369197906) + +[fips5307590] +centroid = (0.82038639493974319, -2.1562155895233381) +description = Brady CDP, WA +station = ('kshn', 0.006284056955790351) +zone = ('waz512', 0.00099921995891062341) + +[fips5307590656] +centroid = (0.81849168295707064, -2.0471239417070652) +description = Colfax-Palouse CCD, WA +station = ('kpuw', 0.0032964226607564368) +zone = ('waz033', 0.0026229433585044583) + +[fips5307591192] +centroid = (0.82120788651207188, -2.046177083134566) +description = Garfield-Oakesdale CCD, WA +station = ('kpuw', 0.0054594382711304632) +zone = ('waz033', 0.0038754200664974409) + +[fips5307591552] +centroid = (0.81556136240943478, -2.0563688285818316) +description = LaCrosse CCD, WA +station = ('kalw', 0.012293751317774031) +zone = ('waz033', 0.0051147379463707052) + +[fips5307592656] +centroid = (0.81554150056254704, -2.0452792857673399) +description = Pullman CCD, WA +station = ('kpuw', 0.00091931626843524863) +zone = ('waz033', 0.0051851490465983736) + +[fips5307592832] +centroid = (0.82124973950753466, -2.0546968380650061) +description = Rock Lake CCD, WA +station = ('kska', 0.0098583561454269643) +zone = ('waz033', 0.0034183676572536177) + +[fips5307592848] +centroid = (0.82370304411730799, -2.0487015273646505) +description = Rosalia CCD, WA +station = ('kgeg', 0.0075785510163439221) +zone = ('waz033', 0.0048991833196864263) + +[fips5307593424] +centroid = (0.82366140056135539, -2.0438326870701169) +description = Tekoa CCD, WA +station = ('kpuw', 0.0077216941008714504) +zone = ('idz003', 0.0052874860617304871) + +[fips5307593536] +centroid = (0.81278080856491253, -2.0455269654414905) +description = Uniontown CCD, WA +station = ('kpuw', 0.003314731240735782) +zone = ('waz032', 0.0033500092370861651) + +[fips5307695] +centroid = (0.82972605319289272, -2.1418151920243984) +description = Bremerton city, WA +station = ('kpwt', 0.00079631012396282942) +zone = ('waz511', 0.0030369040341038153) + +[fips53077] +centroid = (0.81081989624371187, -2.107313069585369) +description = Yakima County, WA +station = ('kykm', 0.0031406967704355432) +zone = ('waz027', 0.0051652194031217135) + +[fips5307791808] +centroid = (0.80474693584493506, -2.0946007545389578) +description = Mabton CCD, WA +station = ('khms', 0.0094093427120249644) +zone = ('waz027', 0.0067226766123293646) + +[fips5307792192] +centroid = (0.81348630555515367, -2.0966204146427807) +description = Northeast Yakima CCD, WA +station = ('kykm', 0.0049244157972997069) +zone = ('waz027', 0.0037907914108846162) + +[fips5307792240] +centroid = (0.81588585402396563, -2.1135597076980117) +description = Northwest Yakima CCD, WA +station = ('kykm', 0.0074599178530273865) +zone = ('waz520', 0.00053943081690589398) + +[fips5307793184] +centroid = (0.80734135032473209, -2.1091994039876321) +description = South Yakima CCD, WA +station = ('kykm', 0.0065970766921268258) +zone = ('waz521', 0.0054894259248685585) + +[fips5307793344] +centroid = (0.80953786464165944, -2.0955078894176822) +description = Sunnyside CCD, WA +station = ('kykm', 0.0064899941245496482) +zone = ('waz027', 0.0031122626297179455) + +[fips5307793472] +centroid = (0.80972533045661621, -2.1026939510002105) +description = Toppenish-Wapato CCD, WA +station = ('kykm', 0.0030954016601589412) +zone = ('waz027', 0.0020831827654059359) + +[fips5307793904] +centroid = (0.81390319490028507, -2.105361582042129) +description = Yakima CCD, WA +station = ('kykm', 0.001626967244858155) +zone = ('waz027', 0.0051599163434277416) + +[fips5307835] +centroid = (0.83965256095373297, -2.0904194867032477) +description = Brewster city, WA +station = ('komk', 0.0069191200633639122) +zone = ('waz043', 0.0056186607726632651) + +[fips5307870] +centroid = (0.83786776980735111, -2.0886953981082499) +description = Bridgeport city, WA +station = ('komk', 0.0082392011818623861) +zone = ('waz044', 0.0059139891196291674) + +[fips5307940] +centroid = (0.834135610094764, -2.1340788281287155) +description = Brier city, WA +station = ('kpae', 0.0021709172655127091) +zone = ('waz507', 0.0045861233814632101) + +[fips5308080] +centroid = (0.83197426416226417, -2.1452993753568621) +description = Brinnon CDP, WA +station = ('kpwt', 0.003536530058427691) +zone = ('waz511', 0.0030397367696208244) + +[fips5308335] +centroid = (0.8256113522148536, -2.1369208873760783) +description = Browns Point CDP, WA +station = ('ktiw', 0.0017711701155147487) +zone = ('waz509', 0.0024677516221329292) + +[fips5308465] +centroid = (0.79806248188942941, -2.1388613269851531) +description = Brush Prairie CDP, WA +station = ('kvuo', 0.0022740542851951121) +zone = ('waz039', 0.00036640228302029372) + +[fips5308500] +centroid = (0.8420937878850826, -2.1323460652473356) +description = Bryant CDP, WA +station = ('kawo', 0.0014297192655263536) +zone = ('waz507', 0.0035038818387913228) + +[fips5308552] +centroid = (0.828926343329629, -2.1335647937574183) +description = Bryn Mawr-Skyway CDP, WA +station = ('krnt', 0.00034189480684795523) +zone = ('waz508', 0.0024698705190473805) + +[fips5308570] +centroid = (0.82307596477035905, -2.1296549595269783) +description = Buckley city, WA +station = ('kplu', 0.0033634577428201533) +zone = ('waz519', 0.0044015225385837641) + +[fips5308605] +centroid = (0.81675419023341778, -2.1444374095991798) +description = Bucoda town, WA +station = ('kcls', 0.0024411436913001523) +zone = ('waz504', 0.0013738284405048473) + +[fips5308640] +centroid = (0.81035511506390567, -2.0999378666718016) +description = Buena CDP, WA +station = ('kykm', 0.003523492672895874) +zone = ('waz027', 8.6980241454879525e-05) + +[fips5308770] +centroid = (0.83708933550766906, -2.130949051354162) +description = Bunk Foss CDP, WA +station = ('kpae', 0.0023447842061164155) +zone = ('waz507', 0.0024783291329751752) + +[fips5308780] +centroid = (0.80620159796330215, -2.0765689900917335) +description = Burbank CDP, WA +station = ('kpsc', 0.0021160923418876753) +zone = ('waz028', 0.0035327307366361162) + +[fips5308850] +centroid = (0.82849332714220925, -2.1356597648184645) +description = Burien city, WA +station = ('ksea', 0.00065404955387089129) +zone = ('waz508', 0.001355520123254143) + +[fips5308885] +centroid = (0.82756456763405295, -2.1405539123871522) +description = Burley CDP, WA +station = ('kpwt', 0.0019223746740078781) +zone = ('waz508', 0.0029400151721318242) + +[fips5308920] +centroid = (0.84589752355029391, -2.1350444664439667) +description = Burlington city, WA +station = ('kbvs', 0.0010651408590880635) +zone = ('waz506', 0.00043809848824624068) + +[fips5309480] +centroid = (0.79596892454507717, -2.1368270061156136) +description = Camas city, WA +station = ('kttd', 0.00098747290869318416) +zone = ('waz039', 0.0026043579797141916) + +[fips5309810] +centroid = (0.82687570363158336, -2.1398115191365239) +description = Canterwood CDP, WA +station = ('ktiw', 0.0019270207554966689) +zone = ('waz508', 0.0030970073488190571) + +[fips5309820] +centroid = (0.83968380234734363, -2.1290019620406371) +description = Canyon Creek CDP, WA +station = ('kawo', 0.0023561177006959132) +zone = ('waz507', 0.0033121356645650171) + +[fips5309970] +centroid = (0.82177105190181288, -2.1301836895705772) +description = Carbonado town, WA +station = ('kplu', 0.0028591144972292533) +zone = ('waz519', 0.0038128479699077169) + +[fips5310075] +centroid = (0.83922694496234163, -2.1497162277350066) +description = Carlsborg CDP, WA +station = ('kclm', 0.0038918570393467813) +zone = ('waz514', 0.0010802427816415496) + +[fips5310215] +centroid = (0.83154899723672326, -2.1275705128013214) +description = Carnation city, WA +station = ('krnt', 0.0044911999758864684) +zone = ('waz505', 0.0020611766931272536) + +[fips5310320] +centroid = (0.79824026112703761, -2.1263792383203728) +description = Carson CDP, WA +station = ('kczk', 0.0013560609340457579) +zone = ('orz009', 0.001983310658156481) + +[fips5310455] +centroid = (0.82276604665508235, -2.0826724762991278) +description = Cascade Valley CDP, WA +station = ('kmwh', 0.0010386414628760408) +zone = ('waz034', 0.0029900522950361604) + +[fips5310495] +centroid = (0.82933209747413261, -2.102532996736592) +description = Cashmere city, WA +station = ('keat', 0.003749536082417747) +zone = ('waz041', 0.0034792789388478568) + +[fips5310565] +centroid = (0.80776061331764615, -2.1452638229999992) +description = Castle Rock city, WA +station = ('kkls', 0.0028783214008173495) +zone = ('waz022', 0.001700886948103892) + +[fips5310600] +centroid = (0.8351854779997161, -2.1311482806882771) +description = Cathcart CDP, WA +station = ('kpae', 0.002359664616121845) +zone = ('waz507', 0.0039353867495048314) + +[fips5310635] +centroid = (0.80644367513055382, -2.1534573584399488) +description = Cathlamet town, WA +station = ('kast', 0.0061123697517042972) +zone = ('waz020', 0.0051905469326716004) + +[fips5310645] +centroid = (0.83748381482520484, -2.1306201615099161) +description = Cavalero CDP, WA +station = ('kpae', 0.002700557851025528) +zone = ('waz507', 0.0024255780696543685) + +[fips5311090] +centroid = (0.79855784123773044, -2.1102440882647056) +description = Centerville CDP, WA +station = ('kdls', 0.0039604938412774538) +zone = ('waz024', 0.00066094466336704576) + +[fips5311160] +centroid = (0.81547168739246734, -2.146224731472977) +description = Centralia city, WA +station = ('kcls', 0.00076218899896969897) +zone = ('waz504', 0.00086637998357915944) + +[fips5311195] +centroid = (0.81981270521461269, -2.1590124621963667) +description = Central Park CDP, WA +station = ('khqm', 0.0027530376983137951) +zone = ('waz512', 0.0027266474015885025) + +[fips5311325] +centroid = (0.83606669473904804, -2.1290756149350711) +description = Chain Lake CDP, WA +station = ('kpae', 0.003474313968127508) +zone = ('waz507', 0.004096818293685512) + +[fips5311475] +centroid = (0.81444351393011738, -2.146151532364148) +description = Chehalis city, WA +station = ('kcls', 0.0003267162878415233) +zone = ('waz504', 0.0012786450861648306) + +[fips5311615] +centroid = (0.83504211665495731, -2.0946035121591762) +description = Chelan city, WA +station = ('keat', 0.0080653851778156212) +zone = ('waz041', 0.0044882454547624309) + +[fips5311685] +centroid = (0.83425741662326069, -2.0941901134725485) +description = Chelan Falls CDP, WA +station = ('keat', 0.0074033552660505431) +zone = ('waz041', 0.0040414013274790925) + +[fips5311825] +centroid = (0.82887653163277708, -2.052184523873223) +description = Cheney city, WA +station = ('kgeg', 0.0022633812128993965) +zone = ('waz036', 0.0022469201184524131) + +[fips5312015] +centroid = (0.7993931034578573, -2.1393593566872098) +description = Cherry Grove CDP, WA +station = ('kvuo', 0.0033546923123044209) +zone = ('waz039', 0.0012511488190028179) + +[fips5312140] +centroid = (0.84268983527793107, -2.0545482407324913) +description = Chewelah city, WA +station = ('kdew', 0.006427801629232551) +zone = ('waz037', 0.0024901033086005184) + +[fips5312175] +centroid = (0.83118582912596839, -2.141865335333808) +description = Chico CDP, WA +station = ('kpwt', 0.0021835122400027142) +zone = ('waz511', 0.0036444380201494184) + +[fips5312315] +centroid = (0.80765989036651353, -2.163200048123969) +description = Chinook CDP, WA +station = ('kast', 0.0023030528615445977) +zone = ('waz021', 0.004058331003642765) + +[fips5312525] +centroid = (0.84218274731705667, -2.168707696378025) +description = Clallam Bay CDP, WA +station = ('cwsp', 0.0045617096990788969) +zone = ('waz515', 0.0017578976337690707) + +[fips5312630] +centroid = (0.81010164089663861, -2.0429102456538528) +description = Clarkston city, WA +station = ('klws', 0.00094123353574252606) +zone = ('idz026', 0.004219631667637406) + +[fips5312680] +centroid = (0.80961616011190385, -2.0434862566668888) +description = Clarkston Heights-Vineland CDP, WA +station = ('klws', 0.0008797575794865204) +zone = ('idz026', 0.0047033763368460758) + +[fips5312735] +centroid = (0.83777936888073756, -2.0518292271973944) +description = Clayton CDP, WA +station = ('kdew', 0.001610429047079894) +zone = ('waz036', 0.0067142977394096708) + +[fips5312820] +centroid = (0.81906626280011974, -2.1345273079333085) +description = Clear Lake CDP, WA +station = ('kplu', 0.0029859135353961039) +zone = ('waz509', 0.0048637553271320263) + +[fips5312840] +centroid = (0.84564710370921781, -2.1336592684298288) +description = Clear Lake CDP, WA +station = ('kbvs', 0.0020080382292361884) +zone = ('waz506', 0.0013733914985203032) + +[fips5312875] +centroid = (0.83477677424877661, -2.1318350153890595) +description = Clearview CDP, WA +station = ('kpae', 0.0022244875928504344) +zone = ('waz507', 0.0041417170896376537) + +[fips5312945] +centroid = (0.82370210163951196, -2.1109217472533772) +description = Cle Elum city, WA +station = ('keln', 0.0056619841706159841) +zone = ('waz520', 0.0076786826118198726) + +[fips5313015] +centroid = (0.81893429845537635, -2.1125837195802966) +description = Cliffdell CDP, WA +station = ('ksmp', 0.0072010119333380555) +zone = ('waz520', 0.0028022251881868673) + +[fips5313155] +centroid = (0.83710146554597042, -2.1354500286022526) +description = Clinton CDP, WA +station = ('kpae', 0.0011341679154168605) +zone = ('waz507', 0.0019775875099574815) + +[fips5313215] +centroid = (0.82280610196141568, -2.1359418972920494) +description = Clover Creek CDP, WA +station = ('ktcm', 0.0012267532120158694) +zone = ('waz509', 0.0015411422061214605) + +[fips5313365] +centroid = (0.83130648373715865, -2.1331061561365794) +description = Clyde Hill city, WA +station = ('kbfi', 0.0018210446855508266) +zone = ('waz508', 0.0033315582512039713) + +[fips5313595] +centroid = (0.81791078502212944, -2.1660570473897285) +description = Cohassett Beach CDP, WA +station = ('khqm', 0.0027419070851328661) +zone = ('waz517', 0.0057898411263610514) + +[fips5313785] +centroid = (0.81859607109963239, -2.0479424487663729) +description = Colfax city, WA +station = ('kpuw', 0.0037499625961967091) +zone = ('waz033', 0.0020542356551347283) + +[fips5313855] +centroid = (0.8036021394819669, -2.0662417547346354) +description = College Place city, WA +station = ('kalw', 0.0016008976906581028) +zone = ('waz029', 0.0051441063205170459) + +[fips5313890] +centroid = (0.81276092926473231, -2.0442743949972115) +description = Colton town, WA +station = ('kpuw', 0.0031835448800071097) +zone = ('waz032', 0.0039475083597530682) + +[fips5314170] +centroid = (0.84727265101464766, -2.0577101839251593) +description = Colville city, WA +station = ('kdew', 0.011450138516676051) +zone = ('waz037', 0.0040530888057065135) + +[fips5314310] +centroid = (0.84749287665966444, -2.0900493547287771) +description = Conconully town, WA +station = ('komk', 0.0031415289838451839) +zone = ('waz043', 0.0050186995860064358) + +[fips5314380] +centroid = (0.84705527025631178, -2.1250303431546764) +description = Concrete town, WA +station = ('kawo', 0.0079737788013018798) +zone = ('waz518', 0.0030173236914318525) + +[fips5314485] +centroid = (0.81441735144463012, -2.0741547110440348) +description = Connell city, WA +station = ('kpsc', 0.0076686968119169061) +zone = ('waz028', 0.0070100475497808607) + +[fips5314520] +centroid = (0.8436167970969578, -2.135313159882311) +description = Conway CDP, WA +station = ('kbvs', 0.0025194816229765762) +zone = ('waz506', 0.0022649231504765274) + +[fips5314660] +centroid = (0.8225891051755152, -2.1672006569288054) +description = Copalis Beach CDP, WA +station = ('khqm', 0.0040290841261655351) +zone = ('waz517', 0.0020005651211625376) + +[fips5314870] +centroid = (0.81950734240868373, -2.160244542475227) +description = Cosmopolis city, WA +station = ('khqm', 0.0019232537661739318) +zone = ('waz512', 0.0036023610061782308) + +[fips5314940] +centroid = (0.83333279354543155, -2.1306279282250875) +description = Cottage Lake CDP, WA +station = ('kpae', 0.0038376526359255726) +zone = ('waz505', 0.0032714462111470373) + +[fips5315080] +centroid = (0.83098904325280598, -2.0819879756197883) +description = Coulee City town, WA +station = ('keph', 0.006074091854811595) +zone = ('waz044', 0.0047303730422208539) + +[fips5315115] +centroid = (0.83720845422911772, -2.0765278177746791) +description = Coulee Dam town, WA +station = ('komk', 0.010727728216084221) +zone = ('waz043', 0.0086545572036400772) + +[fips5315150] +centroid = (0.83335628567716347, -2.0493596561189924) +description = Country Homes CDP, WA +station = ('ksff', 0.001651842198502032) +zone = ('waz036', 0.0032070421983280925) + +[fips5315185] +centroid = (0.84154547524727596, -2.1411314243833446) +description = Coupeville town, WA +station = ('knuw', 0.0023435563858249155) +zone = ('waz510', 0.001864981250727416) + +[fips5315290] +centroid = (0.8266715524689775, -2.1311266560588447) +description = Covington city, WA +station = ('krnt', 0.0027056654952979657) +zone = ('waz505', 0.0035630637088013574) + +[fips5315325] +centroid = (0.81459586372052406, -2.1068814147547656) +description = Cowiche CDP, WA +station = ('kykm', 0.0028639520112825703) +zone = ('waz520', 0.0043823287419741718) + +[fips5315710] +centroid = (0.83356642331910358, -2.0685655035540331) +description = Creston town, WA +station = ('kmwh', 0.013555883362168227) +zone = ('waz035', 0.0071388933790986079) + +[fips5315780] +centroid = (0.82171691178841599, -2.1311139326085979) +description = Crocker CDP, WA +station = ('kplu', 0.0022371480823700687) +zone = ('waz509', 0.0050026855504840878) + +[fips5316165] +centroid = (0.85307759865348831, -2.0700388406953967) +description = Curlew CDP, WA +station = ('cycg', 0.013323813780310683) +zone = ('waz038', 0.0061157335262987224) + +[fips5316170] +centroid = (0.85052503716915417, -2.0711266520582874) +description = Curlew Lake CDP, WA +station = ('komk', 0.010843565110562925) +zone = ('waz038', 0.0034855930959318128) + +[fips5316340] +centroid = (0.84357468230210719, -2.0472052565969157) +description = Cusick town, WA +station = ('kdew', 0.0065946093939301563) +zone = ('waz037', 0.003922772947740542) + +[fips5316375] +centroid = (0.85371597028069779, -2.1404678327484437) +description = Custer CDP, WA +station = ('kbli', 0.0023399012457978839) +zone = ('waz503', 0.0021024036544103489) + +[fips5316550] +centroid = (0.79642150587341176, -2.1147956626078113) +description = Dallesport CDP, WA +station = ('kdls', 0.00026185847314913192) +zone = ('waz024', 0.0039103142601139397) + +[fips5316585] +centroid = (0.85510127301459071, -2.0683348408400897) +description = Danville CDP, WA +station = ('cycg', 0.011315121275911924) +zone = ('waz038', 0.0083397185432437133) + +[fips5316690] +centroid = (0.84218395159424053, -2.122364422535425) +description = Darrington town, WA +station = ('kawo', 0.006734549252124673) +zone = ('waz518', 0.0043439084275918409) + +[fips5316760] +centroid = (0.82576169487662032, -2.1365260066328147) +description = Dash Point CDP, WA +station = ('ksea', 0.0026583483618839968) +zone = ('waz509', 0.0027046691864133403) + +[fips5316795] +centroid = (0.83175693576380594, -2.0621403182589115) +description = Davenport city, WA +station = ('kska', 0.005943182195269979) +zone = ('waz035', 0.0075436269770851284) + +[fips5316970] +centroid = (0.80838341660792778, -2.0590829726483153) +description = Dayton city, WA +station = ('kalw', 0.0052961795088533282) +zone = ('waz029', 0.002840813559601172) + +[fips5317215] +centroid = (0.80902178823513726, -2.1590579978365509) +description = Deep River CDP, WA +station = ('kast', 0.0041540301613624238) +zone = ('waz021', 0.0025585046935024101) + +[fips5317320] +centroid = (0.83713363196408475, -2.0497111828836365) +description = Deer Park city, WA +station = ('kdew', 8.6767651135066741e-05) +zone = ('waz036', 0.0063732411526276449) + +[fips5317495] +centroid = (0.85248931797581107, -2.1332405464889828) +description = Deming CDP, WA +station = ('cyxx', 0.0036779857832181422) +zone = ('waz503', 0.0029000469607053598) + +[fips5317617] +centroid = (0.81496777593083158, -2.0931567912889055) +description = Desert Aire CDP, WA +station = ('khms', 0.0045286390249565014) +zone = ('waz026', 0.0063227453429044959) + +[fips5317635] +centroid = (0.82713074859517721, -2.1348080441434916) +description = Des Moines city, WA +station = ('ksea', 0.0010280752252949203) +zone = ('waz508', 0.0027669474363387499) + +[fips5317880] +centroid = (0.8437816958046862, -2.0809543392768797) +description = Disautel CDP, WA +station = ('komk', 0.003941951714068955) +zone = ('waz043', 0.0025762987292363006) + +[fips5318055] +centroid = (0.80528149528823589, -2.0620704003690764) +description = Dixie CDP, WA +station = ('kalw', 0.00177542066043948) +zone = ('waz029', 0.0031105636086844681) + +[fips5318195] +centroid = (0.79901585054003876, -2.1397731044396875) +description = Dollars Corner CDP, WA +station = ('kvuo', 0.0029192431616995333) +zone = ('waz039', 0.001153106936816597) + +[fips5318265] +centroid = (0.81111740506800689, -2.1012386431100203) +description = Donald CDP, WA +station = ('kykm', 0.0023483795330311416) +zone = ('waz027', 0.0011947995772474071) + +[fips5318775] +centroid = (0.79907847295360035, -2.140594630918601) +description = Duluth CDP, WA +station = ('kvuo', 0.0029176692430582961) +zone = ('waz039', 0.0016712225442021386) + +[fips5318965] +centroid = (0.82218125663590902, -2.1405936186276349) +description = DuPont city, WA +station = ('kgrf', 0.0011629588420822654) +zone = ('waz509', 0.0020194431001202178) + +[fips5319035] +centroid = (0.83313965541040591, -2.1288182312302797) +description = Duvall city, WA +station = ('krnt', 0.0050142758348962887) +zone = ('waz505', 0.003092529945649191) + +[fips5319290] +centroid = (0.80628608935239121, -2.1530038695404032) +description = East Cathlamet CDP, WA +station = ('kast', 0.0064010632945167246) +zone = ('orz005', 0.0050585712651212327) + +[fips5319420] +centroid = (0.83027527340191043, -2.1316417376276933) +description = Eastgate CDP, WA +station = ('krnt', 0.0015793515601624224) +zone = ('waz505', 0.0012771229094815826) + +[fips5319515] +centroid = (0.82744818907952999, -2.1323123629394796) +description = East Hill-Meridian CDP, WA +station = ('krnt', 0.0016668034667435404) +zone = ('waz505', 0.0031731843373514162) + +[fips5319630] +centroid = (0.83596736805131699, -2.1324700883439824) +description = Eastmont CDP, WA +station = ('kpae', 0.0012375358466672687) +zone = ('waz507', 0.0028780181893760777) + +[fips5319700] +centroid = (0.82436630413965084, -2.114632509229335) +description = Easton CDP, WA +station = ('ksmp', 0.0022405015539040097) +zone = ('waz520', 0.0083155815134069565) + +[fips5319770] +centroid = (0.82934052741441977, -2.1401966260359764) +description = East Port Orchard CDP, WA +station = ('kpwt', 0.0015145743658668081) +zone = ('waz508', 0.0020556626410065345) + +[fips5319857] +centroid = (0.8285333475419574, -2.1308476826312059) +description = East Renton Highlands CDP, WA +station = ('krnt', 0.0015907063339487067) +zone = ('waz505', 0.0017413632885313443) + +[fips5320155] +centroid = (0.82758579083775718, -2.0992867890476372) +description = East Wenatchee city, WA +station = ('keat', 0.00099441301026331275) +zone = ('waz041', 0.0037701989259020189) + +[fips5320260] +centroid = (0.81800475354905677, -2.1340065016845129) +description = Eatonville town, WA +station = ('kplu', 0.0040526339868262743) +zone = ('waz509', 0.0059653040131672263) + +[fips5320645] +centroid = (0.82435520384560812, -2.134288599251513) +description = Edgewood city, WA +station = ('kplu', 0.0023056832078528332) +zone = ('waz509', 0.002804975827047633) + +[fips5320680] +centroid = (0.84753539288024293, -2.1368237248966198) +description = Edison CDP, WA +station = ('kbvs', 0.0015641660751808911) +zone = ('waz506', 0.0018261234465678942) + +[fips5320750] +centroid = (0.83474815084904386, -2.1356900113744017) +description = Edmonds city, WA +station = ('kpae', 0.0018321116572009113) +zone = ('waz507', 0.0041768196377838553) + +[fips5320890] +centroid = (0.81621022346544869, -2.1327001576459801) +description = Elbe CDP, WA +station = ('kplu', 0.0059492372791279469) +zone = ('waz519', 0.0060711105862579946) + +[fips5321030] +centroid = (0.83624014556011117, -2.077740612165305) +description = Electric City city, WA +station = ('komk', 0.011108049962612603) +zone = ('waz043', 0.0089687805491640207) + +[fips5321205] +centroid = (0.82108203081971065, -2.1356781431354879) +description = Elk Plain CDP, WA +station = ('kplu', 0.0013188025135711225) +zone = ('waz509', 0.002744993401013235) + +[fips5321240] +centroid = (0.82032513388299821, -2.1039872225226461) +description = Ellensburg city, WA +station = ('keln', 0.00059377657354352947) +zone = ('waz026', 0.0029843194435893263) + +[fips5321450] +centroid = (0.82043191312663521, -2.1538283805323379) +description = Elma city, WA +station = ('kshn', 0.0050986125735399826) +zone = ('waz512', 0.0015378904041873842) + +[fips5321485] +centroid = (0.83775528333706006, -2.0761209117128692) +description = Elmer City town, WA +station = ('komk', 0.010456063209796683) +zone = ('waz043', 0.008425279210763522) + +[fips5321730] +centroid = (0.81904779721663357, -2.054018463491341) +description = Endicott town, WA +station = ('kpuw', 0.0074797893552953102) +zone = ('waz033', 0.0021429910305938182) + +[fips5321800] +centroid = (0.8305754525799609, -2.1398737052177723) +description = Enetai CDP, WA +station = ('kpwt', 0.0022962988600705257) +zone = ('waz508', 0.0021807811686616976) + +[fips5322010] +centroid = (0.83212307093428928, -2.0983147977339094) +description = Entiat city, WA +station = ('keat', 0.0048456694818584303) +zone = ('waz041', 0.00083020199240377637) + +[fips5322045] +centroid = (0.82379184646964942, -2.1290780583960243) +description = Enumclaw city, WA +station = ('kplu', 0.003994080109483167) +zone = ('waz519', 0.0047524310410115827) + +[fips5322080] +centroid = (0.82576118873113735, -2.0862844351861303) +description = Ephrata city, WA +station = ('keph', 0.00031175609627931796) +zone = ('waz034', 0.0052931684741080098) + +[fips5322118] +centroid = (0.83074412119887364, -2.1415939715417078) +description = Erlands Point-Kitsap Lake CDP, WA +station = ('kpwt', 0.0017953582290731592) +zone = ('waz511', 0.0035558542960019762) + +[fips5322150] +centroid = (0.8144590124538752, -2.1054353047497334) +description = Eschbach CDP, WA +station = ('kykm', 0.0020890931345248771) +zone = ('waz027', 0.0055852853667286741) + +[fips5322255] +centroid = (0.83414953782219481, -2.1353765502407436) +description = Esperance CDP, WA +station = ('kpae', 0.0022835653972713447) +zone = ('waz507', 0.0046959689446374603) + +[fips5322640] +centroid = (0.83781506086394086, -2.1323424524157839) +description = Everett city, WA +station = ('kpae', 0.0019775596065110148) +zone = ('waz507', 0.0013000183472196946) + +[fips5322745] +centroid = (0.8534982055499265, -2.1355738946192666) +description = Everson city, WA +station = ('cyxx', 0.0022964262789647643) +zone = ('waz503', 0.0015470859769828188) + +[fips5322955] +centroid = (0.83110540435403635, -2.0533477334597996) +description = Fairchild AFB CDP, WA +station = ('kska', 4.3558727158490626e-05) +zone = ('waz036', 0.00041383031195680502) + +[fips5322990] +centroid = (0.82702101974510434, -2.0450873344562055) +description = Fairfield town, WA +station = ('ksff', 0.0054714987489293074) +zone = ('idz002', 0.005642417405370451) + +[fips5323160] +centroid = (0.82810745229788585, -2.1318077358928504) +description = Fairwood CDP, WA +station = ('krnt', 0.0012637124875984132) +zone = ('waz505', 0.0024351442680212382) + +[fips5323165] +centroid = (0.83368868363320581, -2.0493144695446581) +description = Fairwood CDP, WA +station = ('ksff', 0.0018745466250858238) +zone = ('waz036', 0.0034695366952046673) + +[fips5323200] +centroid = (0.83024029700370039, -2.1277993778261353) +description = Fall City CDP, WA +station = ('ksea', 0.005184218794065271) +zone = ('waz505', 0.0013318038503597372) + +[fips5323340] +centroid = (0.82185611924955504, -2.0428441674883726) +description = Farmington town, WA +station = ('kpuw', 0.0059737991297705217) +zone = ('idz003', 0.0034063282097687828) + +[fips5323515] +centroid = (0.82569497093931654, -2.1351678088622053) +description = Federal Way city, WA +station = ('ksea', 0.0024744451383402716) +zone = ('waz509', 0.0031319667326744887) + +[fips5323550] +centroid = (0.79786522477736899, -2.1417398985204672) +description = Felida CDP, WA +station = ('kvuo', 0.0018677121573018156) +zone = ('waz039', 0.002324996835589668) + +[fips5323620] +centroid = (0.852607773472144, -2.139575236462389) +description = Ferndale city, WA +station = ('kbli', 0.001091179262173273) +zone = ('waz503', 0.0012871875402770032) + +[fips5323690] +centroid = (0.79651584091948213, -2.13621790365996) +description = Fern Prairie CDP, WA +station = ('kttd', 0.0015386645682106319) +zone = ('waz039', 0.0023836340137391304) + +[fips5323795] +centroid = (0.82435495949951287, -2.1354404641979516) +description = Fife city, WA +station = ('ktcm', 0.0021184284734795619) +zone = ('waz509', 0.0021039801746331934) + +[fips5323830] +centroid = (0.82482061334394507, -2.1353156382498488) +description = Fife Heights CDP, WA +station = ('ktcm', 0.002511783207067418) +zone = ('waz509', 0.0024411702230866254) + +[fips5323865] +centroid = (0.80580891633489593, -2.0777244504164316) +description = Finley CDP, WA +station = ('kpsc', 0.0019055951065907858) +zone = ('waz028', 0.0033672143478635712) + +[fips5323970] +centroid = (0.8243324098455771, -2.1383020711329364) +description = Fircrest city, WA +station = ('ktiw', 0.00096100437464155628) +zone = ('waz509', 0.0010642680687861189) + +[fips5324188] +centroid = (0.79742288853174359, -2.1392600299994786) +description = Five Corners CDP, WA +station = ('kvuo', 0.0015910088544313381) +zone = ('waz039', 0.0010418002038070076) + +[fips5324425] +centroid = (0.83669722983791606, -2.1316417550809859) +description = Fobes Hill CDP, WA +station = ('kpae', 0.001789372170509665) +zone = ('waz507', 0.0024605817390869612) + +[fips5324565] +centroid = (0.81592549045127838, -2.1468202727203427) +description = Fords Prairie CDP, WA +station = ('kcls', 0.0012388118566157647) +zone = ('waz504', 0.0013668850232486894) + +[fips5324810] +centroid = (0.83695080872493832, -2.1709821047394691) +description = Forks city, WA +station = ('kuil', 0.002117728736990114) +zone = ('waz516', 0.000453603601578096) + +[fips5324915] +centroid = (0.82197022887605042, -2.1392066927375377) +description = Fort Lewis CDP, WA +station = ('kgrf', 0.00042513364998553296) +zone = ('waz509', 0.0015082142202734546) + +[fips5325300] +centroid = (0.83002822204629056, -2.0521826738242157) +description = Four Lakes CDP, WA +station = ('kgeg', 0.0011834583061951984) +zone = ('waz036', 0.00112751019753689) + +[fips5325370] +centroid = (0.82470498528100045, -2.1402723733255127) +description = Fox Island CDP, WA +station = ('ktiw', 0.00067696104336814719) +zone = ('waz509', 0.0020535057808211445) + +[fips5325475] +centroid = (0.82190779844870665, -2.1355742436851171) +description = Frederickson CDP, WA +station = ('kplu', 0.00083667141209387073) +zone = ('waz509', 0.002197098398300699) + +[fips5325510] +centroid = (0.83825036343268078, -2.1388970538749414) +description = Freeland CDP, WA +station = ('kpae', 0.0036718508468836938) +zone = ('waz510', 0.0018199912345245334) + +[fips5325615] +centroid = (0.84707717413842432, -2.1470865052444417) +description = Friday Harbor town, WA +station = ('kfhr', 0.00034413815557206268) +zone = ('waz001', 0.0010150338561267479) + +[fips5326140] +centroid = (0.82047723932730954, -2.0444719488152447) +description = Garfield town, WA +station = ('kpuw', 0.0045440677457052152) +zone = ('idz003', 0.003402341165368231) + +[fips5326245] +centroid = (0.80395853571522413, -2.0662308289735183) +description = Garrett CDP, WA +station = ('kalw', 0.0014004934129858363) +zone = ('waz029', 0.0048178258844381941) + +[fips5326420] +centroid = (0.85075388474067559, -2.1363994353554601) +description = Geneva CDP, WA +station = ('kbli', 0.0017485397650438194) +zone = ('waz503', 0.0021516531139775864) + +[fips5326455] +centroid = (0.82158433657843455, -2.0918716180941992) +description = George city, WA +station = ('keph', 0.0056389474599048382) +zone = ('waz026', 0.0059133733353813169) + +[fips5326735] +centroid = (0.82620825481903559, -2.1397872416066286) +description = Gig Harbor city, WA +station = ('ktiw', 0.0012687949360951369) +zone = ('waz509', 0.0031470083530969989) + +[fips5326875] +centroid = (0.85332456274264556, -2.1281158932859845) +description = Glacier CDP, WA +station = ('cyxx', 0.0055583815067691599) +zone = ('waz503', 0.0062842743709839608) + +[fips5326945] +centroid = (0.8143590574476135, -2.1049110776556041) +description = Gleed CDP, WA +station = ('kykm', 0.0018177051999918408) +zone = ('waz027', 0.0052681052887231907) + +[fips5327365] +centroid = (0.83524899053119617, -2.1239226699448981) +description = Gold Bar city, WA +station = ('kawo', 0.0077520663393529756) +zone = ('waz505', 0.0064671299389593385) + +[fips5327435] +centroid = (0.79973426296674477, -2.1086913735489614) +description = Goldendale city, WA +station = ('kdls', 0.0055410998260133921) +zone = ('waz024', 0.0018482489888060161) + +[fips5327680] +centroid = (0.82943943522313024, -2.1416146711466366) +description = Gorst CDP, WA +station = ('kpwt', 0.00066477023397316535) +zone = ('waz511', 0.0031151624171716803) + +[fips5327785] +centroid = (0.82090367562344924, -2.1341337012803985) +description = Graham CDP, WA +station = ('kplu', 0.0011570054525508679) +zone = ('waz509', 0.003594651302525096) + +[fips5327855] +centroid = (0.83670365264956337, -2.0770033501826775) +description = Grand Coulee city, WA +station = ('komk', 0.010966090304164266) +zone = ('waz043', 0.0088585699055381221) + +[fips5327890] +centroid = (0.81692177674819433, -2.1469867945842753) +description = Grand Mound CDP, WA +station = ('kcls', 0.0022377704612302832) +zone = ('waz504', 0.0020379577526394538) + +[fips5327925] +centroid = (0.80741287391747874, -2.0929773365352156) +description = Grandview city, WA +station = ('khms', 0.0065657218987806064) +zone = ('waz027', 0.0056062515694515142) + +[fips5327960] +centroid = (0.80887799055806542, -2.0977578980761828) +description = Granger city, WA +station = ('kykm', 0.0056307281365090486) +zone = ('waz027', 0.0021004920496090103) + +[fips5327995] +centroid = (0.83934348059649733, -2.1287851921475394) +description = Granite Falls city, WA +station = ('kawo', 0.0026417145252401858) +zone = ('waz507', 0.0033719528991080043) + +[fips5328135] +centroid = (0.82612261151264033, -2.1438458826090936) +description = Grapeview CDP, WA +station = ('kpwt', 0.0030707181297923072) +zone = ('waz511', 0.0032759196329032558) + +[fips5328345] +centroid = (0.81754107192667946, -2.1658005188962703) +description = Grayland CDP, WA +station = ('khqm', 0.0028819592249987192) +zone = ('waz517', 0.0061308205700269245) + +[fips5328450] +centroid = (0.80927140522475738, -2.1569011897601067) +description = Grays River CDP, WA +station = ('kast', 0.0052664554920532599) +zone = ('waz020', 0.0030056172640703133) + +[fips5328590] +centroid = (0.83459906482433854, -2.0468697868613899) +description = Green Bluff CDP, WA +station = ('ksff', 0.0024132176309544754) +zone = ('waz036', 0.005278329200263587) + +[fips5328695] +centroid = (0.82282193209773125, -2.1228172482098548) +description = Greenwater CDP, WA +station = ('ksmp', 0.004258803930421033) +zone = ('waz519', 0.0035811803951636134) + +[fips5329255] +centroid = (0.84687621692834969, -2.1292190286397079) +description = Hamilton town, WA +station = ('kbvs', 0.0050036995668123075) +zone = ('waz506', 0.0044142739119095069) + +[fips5329430] +centroid = (0.83614732895049015, -2.1392618625951934) +description = Hansville CDP, WA +station = ('kpae', 0.0033650769850192062) +zone = ('waz510', 0.003675962129265443) + +[fips5329710] +centroid = (0.80995421293472269, -2.1038593247950601) +description = Harrah town, WA +station = ('kykm', 0.00278950541645727) +zone = ('waz027', 0.0028077410225637754) + +[fips5329745] +centroid = (0.82868637801077227, -2.0639423358050104) +description = Harrington city, WA +station = ('kska', 0.0075164506251521809) +zone = ('waz035', 0.0047387972278791672) + +[fips5329920] +centroid = (0.83233750208618928, -2.0788292787395291) +description = Hartline town, WA +station = ('keph', 0.0083308913744892972) +zone = ('waz044', 0.0067648527574698681) + +[fips5330030] +centroid = (0.83799086787949417, -2.1348965497898602) +description = Hat Island CDP, WA +station = ('kpae', 0.0017424579718034829) +zone = ('waz507', 0.0010585751510576412) + +[fips5330060] +centroid = (0.81635252015936377, -2.073932652803304) +description = Hatton town, WA +station = ('kmwh', 0.0094500317316417171) +zone = ('waz028', 0.0087239587500381119) + +[fips5330305] +centroid = (0.79729970319313781, -2.1406958076553391) +description = Hazel Dell CDP, WA +station = ('kvuo', 0.0011392012994609296) +zone = ('waz039', 0.0018519581486393139) + +[fips5330690] +centroid = (0.82492500148650683, -2.1438726210532342) +description = Herron Island CDP, WA +station = ('kshn', 0.0035784320653567399) +zone = ('waz509', 0.004253170818949486) + +[fips5330750] +centroid = (0.83423776421588314, -2.1296940025423456) +description = High Bridge CDP, WA +station = ('kpae', 0.0036877553142199886) +zone = ('waz505', 0.0041245361657184015) + +[fips5331495] +centroid = (0.82746016203819872, -2.1294877569846373) +description = Hobart CDP, WA +station = ('krnt', 0.0028946948239324155) +zone = ('waz505', 0.0026599050194737205) + +[fips5331530] +centroid = (0.79814939928617878, -2.1377451016620399) +description = Hockinson CDP, WA +station = ('kvuo', 0.0028395812008850997) +zone = ('waz039', 0.0005297607139174242) + +[fips5331540] +centroid = (0.8210273671075381, -2.167033646372682) +description = Hogans Corner CDP, WA +station = ('khqm', 0.003016806384199018) +zone = ('waz517', 0.0030501301722575336) + +[fips5331985] +centroid = (0.82511634193240291, -2.1428589338236761) +description = Home CDP, WA +station = ('ktiw', 0.0023806222030112998) +zone = ('waz509', 0.0037187881120945413) + +[fips5332125] +centroid = (0.82732062296450171, -2.1494449861159541) +description = Hoodsport CDP, WA +station = ('kshn', 0.002953703349477177) +zone = ('waz511', 0.0027702998871458888) + +[fips5332300] +centroid = (0.81989306017337449, -2.1626514911400672) +description = Hoquiam city, WA +station = ('khqm', 0.000317691287788735) +zone = ('waz517', 0.0039794738554243423) + +[fips5332650] +centroid = (0.82438426357765393, -2.1638686139472378) +description = Humptulips CDP, WA +station = ('khqm', 0.0046949097793382178) +zone = ('waz517', 0.000939936698643562) + +[fips5332755] +centroid = (0.831517267150922, -2.1332711246574778) +description = Hunts Point town, WA +station = ('kbfi', 0.0019249638114603553) +zone = ('waz508', 0.0033691695900584027) + +[fips5333000] +centroid = (0.80830887359557502, -2.1646748338886117) +description = Ilwaco city, WA +station = ('kast', 0.0033256116868769208) +zone = ('waz021', 0.0040877704070343378) + +[fips5333105] +centroid = (0.84404263998115192, -2.063718916207463) +description = Inchelium CDP, WA +station = ('kdew', 0.011655642055084344) +zone = ('waz037', 0.0073182125218631327) + +[fips5333175] +centroid = (0.83463922485042696, -2.1215506802249751) +description = Index town, WA +station = ('ksmp', 0.0097485188656570038) +zone = ('waz505', 0.0071448046922410113) + +[fips5333280] +centroid = (0.83348767406325353, -2.1382291512767879) +description = Indianola CDP, WA +station = ('kpae', 0.0038826941474591338) +zone = ('waz508', 0.0041534365009020429) + +[fips5333380] +centroid = (0.83288185282659388, -2.133381900705102) +description = Inglewood-Finn Hill CDP, WA +station = ('kbfi', 0.0031332959611735222) +zone = ('waz505', 0.0036885170719504774) + +[fips5333560] +centroid = (0.85068202953537098, -2.0493987514942371) +description = Ione town, WA +station = ('cycg', 0.010060675428035942) +zone = ('waz037', 0.0062143059052279341) + +[fips5333805] +centroid = (0.829736228462432, -2.1300357903697633) +description = Issaquah city, WA +station = ('krnt', 0.0021753805642985452) +zone = ('waz505', 0.00041944447069485629) + +[fips5333890] +centroid = (0.8399019859571355, -2.1483439800639186) +description = Jamestown CDP, WA +station = ('cwlm', 0.0057592867779573407) +zone = ('waz514', 0.002148455495960122) + +[fips5334470] +centroid = (0.81975526642892949, -2.1600001091134851) +description = Junction City CDP, WA +station = ('khqm', 0.0020779290719658938) +zone = ('waz512', 0.0033359800516687107) + +[fips5334575] +centroid = (0.81408172462947159, -2.069199686391038) +description = Kahlotus city, WA +station = ('kpsc', 0.0094140552176234099) +zone = ('waz029', 0.0071140543754275205) + +[fips5334645] +centroid = (0.80299965182417843, -2.1436728332137585) +description = Kalama city, WA +station = ('kkls', 0.0021035755338897019) +zone = ('orz005', 0.002334107220428012) + +[fips5334890] +centroid = (0.81984413859444116, -2.1333306927448485) +description = Kapowsin CDP, WA +station = ('kplu', 0.0023154439798485217) +zone = ('waz509', 0.0047260563055999535) + +[fips5334960] +centroid = (0.83924486949375965, -2.0719914277960654) +description = Keller CDP, WA +station = ('komk', 0.01143449653677806) +zone = ('waz038', 0.0078167209255368842) + +[fips5335065] +centroid = (0.8050756162496705, -2.1446110349531682) +description = Kelso city, WA +station = ('kkls', 0.00033415395632254905) +zone = ('waz022', 0.001284714548155599) + +[fips5335135] +centroid = (0.85374237711228051, -2.1317518679034944) +description = Kendall CDP, WA +station = ('cyxx', 0.0033054032292668344) +zone = ('waz503', 0.0039914981924951938) + +[fips5335170] +centroid = (0.83344086433271503, -2.1335977106671109) +description = Kenmore city, WA +station = ('kpae', 0.0028957028504245676) +zone = ('waz505', 0.0042117254717482832) + +[fips5335275] +centroid = (0.80631183295885811, -2.0799724868528777) +description = Kennewick city, WA +station = ('kpsc', 0.0013778420115083318) +zone = ('waz028', 0.0024289165153474662) + +[fips5335415] +centroid = (0.82702981620453442, -2.1330878127261408) +description = Kent city, WA +station = ('ksea', 0.0016315148276474488) +zone = ('waz508', 0.0036287016623415655) + +[fips5335450] +centroid = (0.82303236644564415, -2.1403692565522912) +description = Ketron Island CDP, WA +station = ('kgrf', 0.0012147486009743006) +zone = ('waz509', 0.0015622457805768862) + +[fips5335485] +centroid = (0.84833211823048582, -2.0605649317161836) +description = Kettle Falls city, WA +station = ('cycg', 0.01307202595775977) +zone = ('waz037', 0.0062091410706184179) + +[fips5335555] +centroid = (0.82608924081734214, -2.14247747466236) +description = Key Center CDP, WA +station = ('kpwt', 0.0029427269069657392) +zone = ('waz511', 0.0038348098188718338) + +[fips5335625] +centroid = (0.83252322257189393, -2.1401977779532828) +description = Keyport CDP, WA +station = ('kpwt', 0.0037922669484668423) +zone = ('waz508', 0.0037387842216434065) + +[fips5335835] +centroid = (0.83299854554038211, -2.1323208103330593) +description = Kingsgate CDP, WA +station = ('kbfi', 0.0035257673668642421) +zone = ('waz505', 0.0033601103855800778) + +[fips5335870] +centroid = (0.83428844857736106, -2.1380111072933365) +description = Kingston CDP, WA +station = ('kpae', 0.0032310972434768572) +zone = ('waz508', 0.0049244930406762899) + +[fips5335940] +centroid = (0.83225438950720931, -2.1326433995387055) +description = Kirkland city, WA +station = ('kbfi', 0.0027737513223061237) +zone = ('waz505', 0.0028895114416169982) + +[fips5336045] +centroid = (0.82004481655183536, -2.1017194464123596) +description = Kittitas city, WA +station = ('keln', 0.0015933686450747262) +zone = ('waz026', 0.0014582089107787358) + +[fips5336100] +centroid = (0.83027005486744698, -2.1294481380106172) +description = Klahanie CDP, WA +station = ('krnt', 0.0027490447365949972) +zone = ('waz505', 0.00026455360176410632) + +[fips5336115] +centroid = (0.79967453779974151, -2.1146857592248134) +description = Klickitat CDP, WA +station = ('kdls', 0.0035138654878679319) +zone = ('waz024', 0.003856993120828961) + +[fips5336395] +centroid = (0.82746859197848577, -2.0767437324564435) +description = Krupp town, WA +station = ('kmwh', 0.0053443886454156899) +zone = ('waz035', 0.0045578802700414912) + +[fips5336710] +centroid = (0.80051941678404681, -2.1409374659435705) +description = La Center city, WA +station = ('kspb', 0.002991128042434071) +zone = ('waz039', 0.0028027812402205187) + +[fips5336745] +centroid = (0.82105675845214166, -2.1432334465745688) +description = Lacey city, WA +station = ('kolm', 0.0018017020714991361) +zone = ('waz509', 0.0041398326790141578) + +[fips5336780] +centroid = (0.84460957528207725, -2.1379315202794453) +description = La Conner town, WA +station = ('kbvs', 0.0016102656648081101) +zone = ('waz506', 0.001940696150783471) + +[fips5336850] +centroid = (0.81673682420736038, -2.0580684651140086) +description = LaCrosse town, WA +station = ('kalw', 0.012907894668877639) +zone = ('waz033', 0.0054252486459378559) + +[fips5336920] +centroid = (0.81699956607295565, -2.1342468160692203) +description = La Grande CDP, WA +station = ('kplu', 0.0050511357122096246) +zone = ('waz509', 0.0068054668706835379) + +[fips5337077] +centroid = (0.83867479260018074, -2.129102056673239) +description = Lake Bosworth CDP, WA +station = ('kawo', 0.0028769082865814214) +zone = ('waz507', 0.0031028056423019791) + +[fips5337100] +centroid = (0.83891095310126806, -2.130743922807175) +description = Lake Cassidy CDP, WA +station = ('kawo', 0.0020105195007032849) +zone = ('waz507', 0.0020142228330988733) + +[fips5337105] +centroid = (0.84328764545332413, -2.1294880013307327) +description = Lake Cavanaugh CDP, WA +station = ('kawo', 0.0031868280894152643) +zone = ('waz506', 0.0048670102498371811) + +[fips5337270] +centroid = (0.83356378787193308, -2.1343546250571159) +description = Lake Forest Park city, WA +station = ('kpae', 0.0027407680358427795) +zone = ('waz508', 0.0045729554702961103) + +[fips5337345] +centroid = (0.82565222782593528, -2.1315690621176406) +description = Lake Holm CDP, WA +station = ('ksea', 0.0033397952069865234) +zone = ('waz505', 0.0046253068086592681) + +[fips5337415] +centroid = (0.84271481093952716, -2.135360894637353) +description = Lake Ketchum CDP, WA +station = ('kawo', 0.0029323385722392669) +zone = ('waz506', 0.0031602373797493624) + +[fips5337420] +centroid = (0.82619219778991726, -2.1342304623341288) +description = Lakeland North CDP, WA +station = ('ksea', 0.0020077808683261204) +zone = ('waz508', 0.0037666955766848561) + +[fips5337430] +centroid = (0.82513648303197096, -2.1342548794903644) +description = Lakeland South CDP, WA +station = ('ksea', 0.0030471253523513138) +zone = ('waz509', 0.0032056802263731115) + +[fips5337526] +centroid = (0.84318453140111638, -2.1333910811369674) +description = Lake McMurray CDP, WA +station = ('kawo', 0.0026375262168231769) +zone = ('waz506', 0.0030908078953863177) + +[fips5337538] +centroid = (0.83243642734819234, -2.127819972711309) +description = Lake Marcel-Stillwater CDP, WA +station = ('krnt', 0.0049184315432396286) +zone = ('waz505', 0.0026669890069534715) + +[fips5337567] +centroid = (0.82611442591844841, -2.1311162538965029) +description = Lake Morton-Berrydale CDP, WA +station = ('krnt', 0.0032062790477556231) +zone = ('waz505', 0.0041022692057787842) + +[fips5337672] +centroid = (0.83733116832882537, -2.1276450907202591) +description = Lake Roesiger CDP, WA +station = ('kpae', 0.0045398261616596226) +zone = ('waz507', 0.0043081730600109999) + +[fips5337830] +centroid = (0.79746076217651185, -2.1413657173821323) +description = Lake Shore CDP, WA +station = ('kvuo', 0.001393616193887777) +zone = ('waz039', 0.0021917240508345739) + +[fips5337900] +centroid = (0.83779603677509418, -2.1309255592224301) +description = Lake Stevens city, WA +station = ('kpae', 0.0026784145177654872) +zone = ('waz507', 0.0020972163668289494) + +[fips5337917] +centroid = (0.83551405368469656, -2.1337907440823818) +description = Lake Stickney CDP, WA +station = ('kpae', 0.00084668983941306008) +zone = ('waz507', 0.0032023289593760065) + +[fips5337920] +centroid = (0.8243313451947335, -2.1322905114172448) +description = Lake Tapps CDP, WA +station = ('kplu', 0.0026813955063802485) +zone = ('waz509', 0.0040854725310365747) + +[fips5337926] +centroid = (0.8268593673497846, -2.0857431736785017) +description = Lakeview CDP, WA +station = ('keph', 0.0013267435485579536) +zone = ('waz044', 0.0055132400196439921) + +[fips5338038] +centroid = (0.82315448713340611, -2.1385438166876303) +description = Lakewood city, WA +station = ('ktcm', 0.0005952905971888002) +zone = ('waz509', 0.0003257439621341835) + +[fips5338215] +centroid = (0.82380390669478076, -2.0578326187721867) +description = Lamont town, WA +station = ('kska', 0.0078639835282535812) +zone = ('waz033', 0.0067213489756880063) + +[fips5338355] +centroid = (0.83834560604996211, -2.1364236954320628) +description = Langley city, WA +station = ('kpae', 0.0025087081640965156) +zone = ('waz507', 0.0018297549298669817) + +[fips5338420] +centroid = (0.83501600652934738, -2.1337129722109127) +description = Larch Way CDP, WA +station = ('kpae', 0.001336442062275819) +zone = ('waz507', 0.0037002768687486014) + +[fips5338495] +centroid = (0.82522744959258487, -2.0447484264220535) +description = Latah town, WA +station = ('ksff', 0.007257253554058183) +zone = ('idz002', 0.0068338632323352109) + +[fips5338705] +centroid = (0.8551650647987511, -2.0634093646113292) +description = Laurier CDP, WA +station = ('cycg', 0.0085715455283305528) +zone = ('waz038', 0.0097699083158464331) + +[fips5338845] +centroid = (0.83066626206094218, -2.105996044131814) +description = Leavenworth city, WA +station = ('keat', 0.006438250294525839) +zone = ('waz041', 0.0052439786951852755) + +[fips5338880] +centroid = (0.81269670114825887, -2.1563697893627518) +description = Lebam CDP, WA +station = ('kast', 0.0082624994404937747) +zone = ('waz020', 0.0018657469602525371) + +[fips5339212] +centroid = (0.79964710122390004, -2.1381749064436364) +description = Lewisville CDP, WA +station = ('kvuo', 0.0038897665039956996) +zone = ('waz039', 0.0013561797327140321) + +[fips5339335] +centroid = (0.8319759920382237, -2.0438344673059539) +description = Liberty Lake city, WA +station = ('ksff', 0.0025228346579839254) +zone = ('idz002', 0.0035569845727334197) + +[fips5339510] +centroid = (0.8197914296510308, -2.0702175973173862) +description = Lind town, WA +station = ('keph', 0.012154283136417197) +zone = ('waz035', 0.0067180670198486812) + +[fips5339860] +centroid = (0.83880017705364407, -2.1300183370772436) +description = Lochsloy CDP, WA +station = ('kawo', 0.0023721430937706841) +zone = ('waz507', 0.0024912982278392799) + +[fips5339930] +centroid = (0.83445847855309041, -2.1406882503796778) +description = Lofall CDP, WA +station = ('kpwt', 0.0055470473095486613) +zone = ('waz510', 0.0052753949212057455) + +[fips5340070] +centroid = (0.80905854486918427, -2.1651795482017033) +description = Long Beach city, WA +station = ('kast', 0.0041480568677343174) +zone = ('waz021', 0.0038449820876786602) + +[fips5340105] +centroid = (0.82424966378574016, -2.1426835282338503) +description = Longbranch CDP, WA +station = ('kgrf', 0.0032023717649929573) +zone = ('waz509', 0.0032627572486237065) + +[fips5340245] +centroid = (0.80541440211077509, -2.1461288256305799) +description = Longview city, WA +station = ('kkls', 0.00093754159921886145) +zone = ('waz022', 0.00072851364660440356) + +[fips5340270] +centroid = (0.80600514370269771, -2.1460095149229135) +description = Longview Heights CDP, WA +station = ('kkls', 0.0013147495934049604) +zone = ('waz022', 0.00020327315127473844) + +[fips5340350] +centroid = (0.85213072262769629, -2.0881079551886139) +description = Loomis CDP, WA +station = ('cwyy', 0.0043608176938290926) +zone = ('waz043', 0.008550680351498665) + +[fips5340385] +centroid = (0.83895332969550651, -2.0530269943031607) +description = Loon Lake CDP, WA +station = ('kdew', 0.0029013558464191049) +zone = ('waz037', 0.0059315677703887983) + +[fips5340570] +centroid = (0.80666498287970667, -2.1532093471532407) +description = Lower Elochoman CDP, WA +station = ('kast', 0.0063193620551372761) +zone = ('waz020', 0.0049899551511836809) + +[fips5340735] +centroid = (0.79753832460847041, -2.1167446194236361) +description = Lyle CDP, WA +station = ('kdls', 0.0019561409987592666) +zone = ('waz024', 0.0049503182456493164) + +[fips5340770] +centroid = (0.8468987316757004, -2.130441404887927) +description = Lyman town, WA +station = ('kbvs', 0.0042142541741496432) +zone = ('waz506', 0.0036366738349023994) + +[fips5340805] +centroid = (0.8543393844362176, -2.1372109436444671) +description = Lynden city, WA +station = ('cyxx', 0.0017591646625135923) +zone = ('waz503', 0.0016161479880056641) + +[fips5340840] +centroid = (0.83477314396393243, -2.1345494736148085) +description = Lynnwood city, WA +station = ('kpae', 0.0015438649119365994) +zone = ('waz507', 0.0039798698896335461) + +[fips5340980] +centroid = (0.80653476386421541, -2.0942887245752866) +description = Mabton city, WA +station = ('khms', 0.0078110359727629787) +zone = ('waz027', 0.0054517301658785931) + +[fips5341155] +centroid = (0.82262066072839113, -2.1378887248061869) +description = McChord AFB CDP, WA +station = ('ktcm', 0.00031912613127659222) +zone = ('waz509', 0.00067190933597394197) + +[fips5341225] +centroid = (0.82131014535294622, -2.151471959149343) +description = McCleary city, WA +station = ('kshn', 0.0034711366950714319) +zone = ('waz512', 0.002863614326079227) + +[fips5341470] +centroid = (0.83761268993717208, -2.130201265036145) +description = Machias CDP, WA +station = ('kpae', 0.0030090665425663837) +zone = ('waz507', 0.00261358152263986) + +[fips5341645] +centroid = (0.81916544986151052, -2.1388986421245608) +description = McKenna CDP, WA +station = ('kgrf', 0.0031755164426571138) +zone = ('waz509', 0.0041474535376961087) + +[fips5341785] +centroid = (0.82250391565472525, -2.1334076094049839) +description = McMillin CDP, WA +station = ('kplu', 0.0007929999565067415) +zone = ('waz509', 0.0032835590221035765) + +[fips5342275] +centroid = (0.82431186732028117, -2.0502943846531902) +description = Malden town, WA +station = ('kgeg', 0.0067929412120805339) +zone = ('waz033', 0.0052927928167944907) + +[fips5342310] +centroid = (0.85171655599619822, -2.07016858847199) +description = Malo CDP, WA +station = ('cycg', 0.014195997660314969) +zone = ('waz038', 0.0047638520084285355) + +[fips5342345] +centroid = (0.81985762998955891, -2.1521205933125542) +description = Malone CDP, WA +station = ('kshn', 0.0049703003897047602) +zone = ('waz512', 0.0028281914842555366) + +[fips5342380] +centroid = (0.84285124332715544, -2.0890821979770773) +description = Malott CDP, WA +station = ('komk', 0.0036898403309981618) +zone = ('waz043', 0.0030026554158795794) + +[fips5342415] +centroid = (0.83430379002148614, -2.1311555238046731) +description = Maltby CDP, WA +station = ('kpae', 0.0028811601488404016) +zone = ('waz505', 0.0042937097043429647) + +[fips5342450] +centroid = (0.82987997377962619, -2.1387491372208349) +description = Manchester CDP, WA +station = ('ksea', 0.0031588716323278122) +zone = ('waz508', 0.0011799583190800433) + +[fips5342800] +centroid = (0.83447380254392289, -2.0880838696449362) +description = Mansfield town, WA +station = ('keph', 0.0090473937785489674) +zone = ('waz044', 0.0025725788371264396) + +[fips5342835] +centroid = (0.83576552072332388, -2.0971224935087021) +description = Manson CDP, WA +station = ('keat', 0.0084950343293654536) +zone = ('waz041', 0.0045385942077149702) + +[fips5343010] +centroid = (0.85367190071708487, -2.1312348664724685) +description = Maple Falls CDP, WA +station = ('cyxx', 0.0036187038001628097) +zone = ('waz503', 0.0043060157543245584) + +[fips5343062] +centroid = (0.82791846804647984, -2.1309478121703931) +description = Maple Heights-Lake Desire CDP, WA +station = ('krnt', 0.0018227532769331224) +zone = ('waz505', 0.0023361506349300299) + +[fips5343150] +centroid = (0.82671267242615454, -2.1299093238121638) +description = Maple Valley city, WA +station = ('krnt', 0.0031600569546517592) +zone = ('waz505', 0.0034022413047902519) + +[fips5343255] +centroid = (0.82668705099273521, -2.1391895710575755) +description = Maplewood CDP, WA +station = ('ktiw', 0.0017172897610344285) +zone = ('waz508', 0.0030404282278183349) + +[fips5343325] +centroid = (0.84711354680003592, -2.119481487676981) +description = Marblemount CDP, WA +station = ('kawo', 0.010635607760607183) +zone = ('waz518', 0.0010506519007790587) + +[fips5343395] +centroid = (0.84935175703279342, -2.0605250509427755) +description = Marcus town, WA +station = ('cycg', 0.012121350600720509) +zone = ('waz037', 0.0068062663495735932) + +[fips5343491] +centroid = (0.85151291097907544, -2.1389910922150386) +description = Marietta-Alderwood CDP, WA +station = ('kbli', 0.00032581616035662217) +zone = ('waz503', 0.0015249117566259621) + +[fips5343640] +centroid = (0.81886289703567738, -2.1638553145383379) +description = Markham CDP, WA +station = ('khqm', 0.0010227448110501889) +zone = ('waz517', 0.0047947439113183096) + +[fips5343762] +centroid = (0.83831652886462382, -2.1412398616897708) +description = Marrowstone CDP, WA +station = ('knuw', 0.0055642507009813855) +zone = ('waz510', 0.0015040625644843503) + +[fips5343815] +centroid = (0.83504803332112165, -2.1333699451997257) +description = Martha Lake CDP, WA +station = ('kpae', 0.0013864638691992457) +zone = ('waz507', 0.0036767185626751238) + +[fips5343885] +centroid = (0.79748900160380909, -2.108482876516518) +description = Maryhill CDP, WA +station = ('kdls', 0.0045823256870548799) +zone = ('waz024', 0.00099705310865867572) + +[fips5343955] +centroid = (0.83920303395158924, -2.131969876980361) +description = Marysville city, WA +station = ('kawo', 0.0014726793566126805) +zone = ('waz507', 0.0012813125091145057) + +[fips5344165] +centroid = (0.8157048982871189, -2.0926906138456975) +description = Mattawa town, WA +station = ('khms', 0.0046798529439479718) +zone = ('waz026', 0.0060940833000118939) + +[fips5344260] +centroid = (0.83523686049289481, -2.1236139037469277) +description = May Creek CDP, WA +station = ('kawo', 0.0079094691709358129) +zone = ('waz505', 0.0065860502883533702) + +[fips5344480] +centroid = (0.83390899654468498, -2.0481427776579171) +description = Mead CDP, WA +station = ('ksff', 0.0017226901679264688) +zone = ('waz036', 0.0041809705933254556) + +[fips5344585] +centroid = (0.8352862184041413, -2.134818743011806) +description = Meadowdale CDP, WA +station = ('kpae', 0.0010872779557670005) +zone = ('waz507', 0.0035047717327069293) + +[fips5344620] +centroid = (0.7985412955164215, -2.1390926354709197) +description = Meadow Glade CDP, WA +station = ('kvuo', 0.0026160664155602427) +zone = ('waz039', 0.0004938835626872312) + +[fips5344690] +centroid = (0.83027125914463074, -2.0540683973612404) +description = Medical Lake city, WA +station = ('kska', 0.00092183715520262419) +zone = ('waz036', 0.0012183265865883589) + +[fips5344725] +centroid = (0.83123839844303837, -2.1335400100820401) +description = Medina city, WA +station = ('kbfi', 0.0015924016909997522) +zone = ('waz508', 0.0030547791021474022) + +[fips5345005] +centroid = (0.83021326185358701, -2.1333643950527046) +description = Mercer Island city, WA +station = ('krnt', 0.0011970147264579623) +zone = ('waz508', 0.0026848043314696471) + +[fips5345180] +centroid = (0.81286315319902158, -2.0769641151810925) +description = Mesa city, WA +station = ('kpsc', 0.005534443833673265) +zone = ('waz028', 0.0046643228300864035) + +[fips5345285] +centroid = (0.85262070636190124, -2.0488818547829668) +description = Metaline town, WA +station = ('cycg', 0.008297637358651435) +zone = ('waz037', 0.0081542726733928751) + +[fips5345320] +centroid = (0.85279492512783539, -2.0485083194164546) +description = Metaline Falls town, WA +station = ('cycg', 0.0082195357092553611) +zone = ('waz037', 0.0083992725707079489) + +[fips5345355] +centroid = (0.8400457312743298, -2.0944858071544217) +description = Methow CDP, WA +station = ('komk', 0.0081535092455210269) +zone = ('waz042', 0.0055232530740000904) + +[fips5345495] +centroid = (0.82333118426687812, -2.1364928628303193) +description = Midland CDP, WA +station = ('ktcm', 0.00093964450005155421) +zone = ('waz509', 0.0010938019391458049) + +[fips5345865] +centroid = (0.83539345143338373, -2.1328985317687623) +description = Mill Creek city, WA +station = ('kpae', 0.0012828535558588364) +zone = ('waz507', 0.003370614516232179) + +[fips5345870] +centroid = (0.83489655619534098, -2.1325771642935925) +description = Mill Creek East CDP, WA +station = ('kpae', 0.0017982994765607661) +zone = ('waz507', 0.0038987552019991881) + +[fips5345985] +centroid = (0.83227013237706238, -2.046923525549059) +description = Millwood town, WA +station = ('ksff', 0.00043165975719991804) +zone = ('waz036', 0.0040874706048715731) + +[fips5346020] +centroid = (0.82469878936215579, -2.1347594716304084) +description = Milton city, WA +station = ('kplu', 0.0026623771998860318) +zone = ('waz509', 0.0026777574224378141) + +[fips5346090] +centroid = (0.81540559177369432, -2.1325478776687437) +description = Mineral CDP, WA +station = ('kplu', 0.00675921699939332) +zone = ('waz519', 0.006493518110325852) + +[fips5346125] +centroid = (0.79685708769483199, -2.1400878745702845) +description = Minnehaha CDP, WA +station = ('kvuo', 0.00079810419711139578) +zone = ('waz039', 0.0018379783753712103) + +[fips5346215] +centroid = (0.82833706781427807, -2.1291307498861416) +description = Mirrormont CDP, WA +station = ('ksea', 0.0038567997014658699) +zone = ('waz505', 0.0018272309011657002) + +[fips5346405] +centroid = (0.82431242582564179, -2.1677250934624448) +description = Moclips CDP, WA +station = ('khqm', 0.0055869919675764429) +zone = ('waz517', 0.0021780721704656586) + +[fips5346685] +centroid = (0.8353164475067858, -2.1290079485199715) +description = Monroe city, WA +station = ('kpae', 0.0036491001187141025) +zone = ('waz507', 0.0046492876001320866) + +[fips5346725] +centroid = (0.8357078724981305, -2.129091410164802) +description = Monroe North CDP, WA +station = ('kpae', 0.0035072898149171969) +zone = ('waz507', 0.0043303561121247267) + +[fips5346895] +centroid = (0.82056176562298366, -2.156977565368174) +description = Montesano city, WA +station = ('khqm', 0.0042226537732827354) +zone = ('waz512', 0.0011642424914966817) + +[fips5347175] +centroid = (0.81257960700874254, -2.1342138991595276) +description = Morton city, WA +station = ('kplu', 0.0094710211121459015) +zone = ('waz019', 0.0087642475237763046) + +[fips5347245] +centroid = (0.82239383773880192, -2.0817715198859559) +description = Moses Lake city, WA +station = ('kmwh', 0.0014795646635642741) +zone = ('waz034', 0.0031859601123482863) + +[fips5347280] +centroid = (0.82369717981102131, -2.0824790763647143) +description = Moses Lake North CDP, WA +station = ('kmwh', 9.8480528652875889e-05) +zone = ('waz034', 0.0038163873386776329) + +[fips5347315] +centroid = (0.81211035778605145, -2.1378305529822179) +description = Mossyrock city, WA +station = ('kcls', 0.0064434197364770318) +zone = ('waz504', 0.0059159766572887485) + +[fips5347490] +centroid = (0.83416842228470145, -2.1345832282825423) +description = Mountlake Terrace city, WA +station = ('kpae', 0.0021470789101726007) +zone = ('waz507', 0.0045824802687770465) + +[fips5347560] +centroid = (0.84503730312186343, -2.1347441825461608) +description = Mount Vernon city, WA +station = ('kbvs', 0.0015725974237490307) +zone = ('waz506', 0.0010455571311124197) + +[fips5347630] +centroid = (0.79826574293411656, -2.1403246284833175) +description = Mount Vista CDP, WA +station = ('kvuo', 0.002116683985187716) +zone = ('waz039', 0.0012951238319401034) + +[fips5347665] +centroid = (0.8126654772079408, -2.1012671617899978) +description = Moxee city, WA +station = ('kykm', 0.001676822792132424) +zone = ('waz027', 0.0024595703948409827) + +[fips5347735] +centroid = (0.83630451330292477, -2.1347243206992732) +description = Mukilteo city, WA +station = ('kpae', 0.00032004937547435965) +zone = ('waz507', 0.0024994557866368458) + +[fips5347805] +centroid = (0.81554043591170333, -2.1065087345995872) +description = Naches town, WA +station = ('kykm', 0.0033973083423830567) +zone = ('waz026', 0.0058981144690943938) + +[fips5347980] +centroid = (0.81305767014415642, -2.1450649252784415) +description = Napavine city, WA +station = ('kcls', 0.001900064543343885) +zone = ('waz504', 0.0023716701426808595) + +[fips5348015] +centroid = (0.80931791824932309, -2.1603958625213751) +description = Naselle CDP, WA +station = ('kast', 0.0040396485928907051) +zone = ('waz021', 0.002016244806448166) + +[fips5348225] +centroid = (0.82991353646114197, -2.1409369074382099) +description = Navy Yard City CDP, WA +station = ('kpwt', 0.0013202909092611377) +zone = ('waz511', 0.0036576212923496937) + +[fips5348295] +centroid = (0.8440582606779572, -2.1748817287937849) +description = Neah Bay CDP, WA +station = ('kuil', 0.0074820458706773415) +zone = ('waz515', 0.006206505170348044) + +[fips5348330] +centroid = (0.82734053717126688, -2.1620824963506244) +description = Neilton CDP, WA +station = ('khqm', 0.0076455839331732844) +zone = ('waz517', 0.0041134475637004172) + +[fips5348540] +centroid = (0.84067171106385008, -2.0764587201895925) +description = Nespelem town, WA +station = ('komk', 0.0082025764902131856) +zone = ('waz043', 0.0064201183025290902) + +[fips5348550] +centroid = (0.84063879415415743, -2.0778382633369539) +description = Nespelem Community CDP, WA +station = ('komk', 0.007541763078288263) +zone = ('waz043', 0.0056600995980911062) + +[fips5348645] +centroid = (0.82958764858320966, -2.1321921621138946) +description = Newcastle city, WA +station = ('krnt', 0.00081951313895122326) +zone = ('waz505', 0.0017211380839773686) + +[fips5348820] +centroid = (0.84092005396311631, -2.0429489396033698) +description = Newport city, WA +station = ('kdew', 0.0058099383785607224) +zone = ('waz037', 0.0076429345412565063) + +[fips5349030] +centroid = (0.81745425924968518, -2.1108956371277676) +description = Nile CDP, WA +station = ('kykm', 0.0068217491534643213) +zone = ('waz520', 0.0018832985509780304) + +[fips5349193] +centroid = (0.82075785336444518, -2.1413349646807123) +description = Nisqually Indian Community CDP, WA +station = ('kgrf', 0.0022922385880004411) +zone = ('waz509', 0.0033460800613972544) + +[fips5349275] +centroid = (0.85394904154900908, -2.1349094477730324) +description = Nooksack city, WA +station = ('cyxx', 0.0019158893458684947) +zone = ('waz503', 0.0021553039066909687) + +[fips5349415] +centroid = (0.82777241889467301, -2.1354141969927092) +description = Normandy Park city, WA +station = ('ksea', 0.00055329747155235197) +zone = ('waz508', 0.0020062421025614256) + +[fips5349485] +centroid = (0.82886359874301985, -2.1253580287217382) +description = North Bend city, WA +station = ('ksea', 0.0064405061736015137) +zone = ('waz505', 0.0032271553270227468) + +[fips5349555] +centroid = (0.79659258304669234, -2.1288260503053285) +description = North Bonneville city, WA +station = ('kczk', 0.0011766411641550268) +zone = ('waz023', 0.00059685035517386819) + +[fips5349765] +centroid = (0.8224220597128068, -2.1396779316355761) +description = North Fort Lewis CDP, WA +station = ('kgrf', 0.0005348692830507045) +zone = ('waz509', 0.0013721980940435592) + +[fips5349940] +centroid = (0.83519846324935088, -2.1341232642114716) +description = North Lynnwood CDP, WA +station = ('kpae', 0.0011082368887736498) +zone = ('waz507', 0.0035269434397350481) + +[fips5349992] +centroid = (0.83969715411612145, -2.1318477562925988) +description = North Marysville CDP, WA +station = ('kawo', 0.00099953564235107117) +zone = ('waz507', 0.0016019421432685273) + +[fips5350007] +centroid = (0.84550651743796967, -2.0847231683570513) +description = North Omak CDP, WA +station = ('komk', 0.0009106371970236249) +zone = ('waz043', 0.0016483025743498916) + +[fips5350045] +centroid = (0.85374269127154578, -2.0556469604032066) +description = Northport town, WA +station = ('cycg', 0.0069105805242457938) +zone = ('waz037', 0.0090613434272340445) + +[fips5350115] +centroid = (0.82381872454013017, -2.1340944313722283) +description = North Puyallup CDP, WA +station = ('kplu', 0.0017780626074061026) +zone = ('waz509', 0.0027755720267236706) + +[fips5350183] +centroid = (0.8357081692041034, -2.1262090687183033) +description = North Sultan CDP, WA +station = ('kpae', 0.0054215290422318244) +zone = ('waz507', 0.0058733569286996603) + +[fips5350195] +centroid = (0.84233773255463373, -2.1354123120371167) +description = Northwest Stanwood CDP, WA +station = ('kawo', 0.0027098428793471169) +zone = ('waz506', 0.0035344090193188122) + +[fips5350210] +centroid = (0.81971184263713992, -2.140005111057155) +description = North Yelm CDP, WA +station = ('kgrf', 0.0027346706769290365) +zone = ('waz509', 0.0037940311610518899) + +[fips5350325] +centroid = (0.82258098939449342, -2.0463382991975725) +description = Oakesdale town, WA +station = ('kpuw', 0.0068175666328010994) +zone = ('waz033', 0.0047080891066831479) + +[fips5350360] +centroid = (0.84293482714503354, -2.1403657135339094) +description = Oak Harbor city, WA +station = ('knuw', 0.00095036286616427936) +zone = ('waz510', 0.0032037050873273127) + +[fips5350430] +centroid = (0.81751497925436212, -2.1508504299494149) +description = Oakville city, WA +station = ('kcls', 0.0041332801315788819) +zone = ('waz512', 0.005029014397135172) + +[fips5350500] +centroid = (0.82174441817742749, -2.166946868602273) +description = Ocean City CDP, WA +station = ('khqm', 0.0033409600655147035) +zone = ('waz517', 0.0024301898709342246) + +[fips5350535] +centroid = (0.81152125680362586, -2.1649305071707365) +description = Ocean Park CDP, WA +station = ('kast', 0.0063445380550237306) +zone = ('waz021', 0.0029370391084113843) + +[fips5350570] +centroid = (0.8197854780782815, -2.1668668452560689) +description = Ocean Shores city, WA +station = ('khqm', 0.0026089699220613969) +zone = ('waz517', 0.0041168704481911638) + +[fips5350745] +centroid = (0.82611025458153609, -2.071518844994503) +description = Odessa town, WA +station = ('keph', 0.0098064469106358201) +zone = ('waz035', 0.0010017016536795023) + +[fips5350920] +centroid = (0.84419210997829264, -2.0870127610829874) +description = Okanogan city, WA +station = ('komk', 0.001848146928851678) +zone = ('waz043', 0.0014886371787241517) + +[fips5351300] +centroid = (0.82102727984107549, -2.1449533463793617) +description = Olympia city, WA +station = ('kolm', 0.0013048728623515549) +zone = ('waz509', 0.0051789472727954283) + +[fips5351340] +centroid = (0.84495773356126502, -2.0863257994894022) +description = Omak city, WA +station = ('komk', 0.0009759417770559256) +zone = ('waz043', 0.0014812212498199913) + +[fips5351410] +centroid = (0.81294436336911691, -2.1417115020135373) +description = Onalaska CDP, WA +station = ('kcls', 0.0036802525007003728) +zone = ('waz504', 0.0033392218637478569) + +[fips5351795] +centroid = (0.79742065451030097, -2.1385600831562588) +description = Orchards CDP, WA +station = ('kpdx', 0.0020275122566268864) +zone = ('waz039', 0.00088819886531114629) + +[fips5351830] +centroid = (0.85283360162405952, -2.0630821153765804) +description = Orient CDP, WA +station = ('cycg', 0.010040343155835994) +zone = ('waz038', 0.0080977478193944002) + +[fips5351970] +centroid = (0.85426981561223314, -2.0843979960641121) +description = Oroville city, WA +station = ('cwyy', 0.0015249087724609209) +zone = ('waz043', 0.010413996473791693) + +[fips5352005] +centroid = (0.82199649608129299, -2.1329963051134588) +description = Orting city, WA +station = ('kplu', 0.00093200285780081142) +zone = ('waz509', 0.003700545873918585) + +[fips5352110] +centroid = (0.84277457101311548, -2.1279945754496783) +description = Oso CDP, WA +station = ('kawo', 0.0035114764217872149) +zone = ('waz507', 0.005582997802435056) + +[fips5352215] +centroid = (0.81720827254490913, -2.0798278339644725) +description = Othello city, WA +station = ('kmwh', 0.0068288154333260931) +zone = ('waz034', 0.0050928012149575501) + +[fips5352267] +centroid = (0.83260813284000357, -2.0435213726914387) +description = Otis Orchards-East Farms CDP, WA +station = ('ksff', 0.0027457657021485132) +zone = ('idz002', 0.0036311415970522805) + +[fips5352285] +centroid = (0.80863116609524843, -2.0960149773785561) +description = Outlook CDP, WA +station = ('kykm', 0.0067051109140375794) +zone = ('waz027', 0.0031828391700177878) + +[fips5352378] +centroid = (0.82068530002743978, -2.1670626711981429) +description = Oyehut CDP, WA +station = ('khqm', 0.0029045796487412391) +zone = ('waz517', 0.0033558226101113291) + +[fips5352495] +centroid = (0.8248770572919546, -2.133707404610599) +description = Pacific city, WA +station = ('kplu', 0.0028618974478970545) +zone = ('waz509', 0.0033854800306000847) + +[fips5352530] +centroid = (0.82404244084365086, -2.1676430629876009) +description = Pacific Beach CDP, WA +station = ('khqm', 0.0053347297719647767) +zone = ('waz517', 0.0020541007202097266) + +[fips5352600] +centroid = (0.81347218584150505, -2.1235467609306036) +description = Packwood CDP, WA +station = ('kplu', 0.011326600666926959) +zone = ('waz519', 0.0063908417542078129) + +[fips5352950] +centroid = (0.81873957207073145, -2.0433501558918179) +description = Palouse city, WA +station = ('kpuw', 0.0028413280013789418) +zone = ('idz003', 0.0023735536985360997) + +[fips5353265] +centroid = (0.81161613290176415, -2.1025427531271106) +description = Parker CDP, WA +station = ('kykm', 0.0013800103495560799) +zone = ('waz027', 0.0022175772888410206) + +[fips5353335] +centroid = (0.82277486056780491, -2.1369428785246534) +description = Parkland CDP, WA +station = ('ktcm', 0.00056028159750664685) +zone = ('waz509', 0.00093338336821178569) + +[fips5353440] +centroid = (0.8294707813364961, -2.1398500210998228) +description = Parkwood CDP, WA +station = ('kpwt', 0.001772030649106633) +zone = ('waz508', 0.0018221131411044777) + +[fips5353545] +centroid = (0.8072314294884414, -2.0792334795409984) +description = Pasco city, WA +station = ('kpsc', 0.00032619171226531241) +zone = ('waz028', 0.0016281340694847565) + +[fips5353720] +centroid = (0.83872696049152284, -2.0926512392177727) +description = Pateros city, WA +station = ('komk', 0.008446373719685615) +zone = ('waz044', 0.0072339184518670141) + +[fips5353800] +centroid = (0.85420351055394983, -2.1317574005972233) +description = Peaceful Valley CDP, WA +station = ('cyxx', 0.0030372107494398256) +zone = ('waz503', 0.0041263511440137379) + +[fips5353930] +centroid = (0.81282137001672883, -2.1519584173184585) +description = Pe Ell town, WA +station = ('kcls', 0.0042596344017970557) +zone = ('waz020', 0.001940632257937449) + +[fips5354213] +centroid = (0.83560173902631674, -2.1346823629840554) +description = Picnic Point CDP, WA +station = ('kpae', 0.00076019518728580586) +zone = ('waz507', 0.0031772909316990184) + +[fips5354405] +centroid = (0.84910549107533695, -2.0714227995257657) +description = Pine Grove CDP, WA +station = ('komk', 0.010140059759079162) +zone = ('waz038', 0.002053821386657665) + +[fips5355015] +centroid = (0.85494375704959813, -2.1477933810447918) +description = Point Roberts CDP, WA +station = ('cwez', 0.0035156599714444461) +zone = ('waz503', 0.0070300259422455954) + +[fips5355120] +centroid = (0.8111231472012459, -2.0524582264065208) +description = Pomeroy city, WA +station = ('klws', 0.0072312342173300459) +zone = ('waz032', 0.0027703613682456777) + +[fips5355365] +centroid = (0.83983419736898801, -2.1545800589345867) +description = Port Angeles city, WA +station = ('kclm', 0.00060321098183262851) +zone = ('waz514', 0.0023033601252947828) + +[fips5355400] +centroid = (0.83967298130598134, -2.153162642142457) +description = Port Angeles East CDP, WA +station = ('kclm', 0.0015530379192350413) +zone = ('waz514', 0.0013647994315209148) + +[fips5355540] +centroid = (0.81940988322325237, -2.151646247728447) +description = Porter CDP, WA +station = ('kshn', 0.0052651461492425706) +zone = ('waz512', 0.0033436952963780118) + +[fips5355612] +centroid = (0.83507503356464985, -2.1390342193008554) +description = Port Gamble Tribal Comunity CDP, WA +station = ('kpae', 0.003437790937676793) +zone = ('waz510', 0.0047563065207206039) + +[fips5355620] +centroid = (0.83834068422147145, -2.1430293128652558) +description = Port Hadlock-Irondale CDP, WA +station = ('knuw', 0.0057498155277548616) +zone = ('waz510', 0.0022000315159606989) + +[fips5355645] +centroid = (0.83625374167498423, -2.1414520588202284) +description = Port Ludlow CDP, WA +station = ('kpae', 0.0048294356281084151) +zone = ('waz510', 0.003538678661235205) + +[fips5355785] +centroid = (0.82936314688152557, -2.1407346412311963) +description = Port Orchard city, WA +station = ('kpwt', 0.0011673920258355778) +zone = ('waz508', 0.0024184250278116411) + +[fips5355855] +centroid = (0.84000131264486644, -2.1430537649280761) +description = Port Townsend city, WA +station = ('knuw', 0.0041847412351801554) +zone = ('waz510', 0.0017399323899181575) + +[fips5355995] +centroid = (0.83323908681789205, -2.1405093715846411) +description = Poulsbo city, WA +station = ('kpwt', 0.0043948083214338726) +zone = ('waz508', 0.0044573312018147057) + +[fips5356150] +centroid = (0.82291108351592313, -2.1311394667755543) +description = Prairie Heights CDP, WA +station = ('kplu', 0.002356344391117272) +zone = ('waz509', 0.0047469037324493349) + +[fips5356170] +centroid = (0.82282385195990837, -2.1317333848667155) +description = Prairie Ridge CDP, WA +station = ('kplu', 0.0019495190891598117) +zone = ('waz509', 0.0043527990302723689) + +[fips5356240] +centroid = (0.80806732002709913, -2.0649436137435875) +description = Prescott city, WA +station = ('kalw', 0.003488440454898995) +zone = ('waz029', 0.0012297216648392549) + +[fips5356450] +centroid = (0.8064510927798747, -2.0903305796311513) +description = Prosser city, WA +station = ('kpdt', 0.0046885121642114991) +zone = ('waz028', 0.0074158400579353544) + +[fips5356555] +centroid = (0.80591716165510463, -2.153419589514936) +description = Puget Island CDP, WA +station = ('kast', 0.0060785567077829596) +zone = ('orz005', 0.0051109620262362416) + +[fips5356625] +centroid = (0.8156389597479784, -2.0448880353089205) +description = Pullman city, WA +station = ('kpuw', 0.00063611619143397592) +zone = ('idz003', 0.0048512787843841823) + +[fips5356660] +centroid = (0.82722551997356053, -2.1398546287690481) +description = Purdy CDP, WA +station = ('ktiw', 0.0022771584802104678) +zone = ('waz508', 0.0028378817441067463) + +[fips5356695] +centroid = (0.82341885215520572, -2.1342858590845872) +description = Puyallup city, WA +station = ('kplu', 0.0013697835925507806) +zone = ('waz509', 0.0025965379761585228) + +[fips5356905] +centroid = (0.82949114932886692, -2.1702258535745798) +description = Queets CDP, WA +station = ('kuil', 0.0075658718042848939) +zone = ('waz517', 0.0069654457097966622) + +[fips5356975] +centroid = (0.83497736493970831, -2.1452651669035232) +description = Quilcene CDP, WA +station = ('kpwt', 0.0062529006534933077) +zone = ('waz510', 0.0057335104777651389) + +[fips5357030] +centroid = (0.82467157967911719, -2.1675274523779486) +description = Qui-nai-elt Village CDP, WA +station = ('khqm', 0.0058135414297888046) +zone = ('waz517', 0.0021974754320427895) + +[fips5357115] +centroid = (0.8243928680508662, -2.0917913154953154) +description = Quincy city, WA +station = ('keat', 0.0050439267158380492) +zone = ('waz034', 0.0057779770862930015) + +[fips5357140] +centroid = (0.82604710856919905, -2.1409739956848144) +description = Raft Island CDP, WA +station = ('ktiw', 0.0015347987671313072) +zone = ('waz509', 0.0033881373571747935) + +[fips5357220] +centroid = (0.81841401580535689, -2.1412851355305675) +description = Rainier city, WA +station = ('kolm', 0.0028605318693582646) +zone = ('waz504', 0.0039051346928847368) + +[fips5357395] +centroid = (0.8265268297674021, -2.1286429652667946) +description = Ravensdale CDP, WA +station = ('krnt', 0.0039110392157057266) +zone = ('waz505', 0.0036659080183477849) + +[fips5357430] +centroid = (0.81478200308524928, -2.1596596477362988) +description = Raymond city, WA +station = ('khqm', 0.0054568962258116907) +zone = ('waz021', 0.003526565057770879) + +[fips5357465] +centroid = (0.83200009503519379, -2.0573692513090749) +description = Reardan town, WA +station = ('kska', 0.0028449781944895843) +zone = ('waz036', 0.0032520386968581637) + +[fips5357535] +centroid = (0.83209821744574086, -2.1313475449289774) +description = Redmond city, WA +station = ('krnt', 0.0032826544684743312) +zone = ('waz505', 0.0022534791668958661) + +[fips5357745] +centroid = (0.82861382467376687, -2.1326531733825167) +description = Renton city, WA +station = ('krnt', 0.00050874305071188757) +zone = ('waz505', 0.0024608192921278284) + +[fips5357850] +centroid = (0.84908208621006775, -2.0722821996494476) +description = Republic city, WA +station = ('komk', 0.0095943967709369044) +zone = ('waz038', 0.0020616225284272919) + +[fips5358235] +centroid = (0.8079029274648537, -2.0820345759108165) +description = Richland city, WA +station = ('kpdt', 0.0024108624757298975) +zone = ('waz028', 0.001561170508835753) + +[fips5358410] +centroid = (0.79967254812439414, -2.1410148363893113) +description = Ridgefield city, WA +station = ('kspb', 0.002541996286811031) +zone = ('waz039', 0.0022396628432460809) + +[fips5358725] +centroid = (0.82250063443573163, -2.0661581534634652) +description = Ritzville city, WA +station = ('kska', 0.01217714357299419) +zone = ('waz035', 0.0048438344747524066) + +[fips5358742] +centroid = (0.82841185517272609, -2.1249356764960483) +description = Riverbend CDP, WA +station = ('ksea', 0.0066937503796504361) +zone = ('waz505', 0.0036785204100336856) + +[fips5358777] +centroid = (0.83894313697267486, -2.1489841668335501) +description = River Road CDP, WA +station = ('cwlm', 0.0064711767339183778) +zone = ('waz514', 0.0015665291526636279) + +[fips5358795] +centroid = (0.84671552446411869, -2.0859423331994469) +description = Riverside town, WA +station = ('komk', 0.00081269186900437534) +zone = ('waz043', 0.0029498149688105572) + +[fips5358865] +centroid = (0.82893739126379407, -2.1347339898233293) +description = Riverton CDP, WA +station = ('ksea', 0.00078128091729003264) +zone = ('waz508', 0.0016982725914732452) + +[fips5359110] +centroid = (0.81731672730462801, -2.1480146015274819) +description = Rochester CDP, WA +station = ('kcls', 0.0028212268263025238) +zone = ('waz504', 0.0028169823105636278) + +[fips5359145] +centroid = (0.82818009290135386, -2.0443192150524032) +description = Rockford town, WA +station = ('ksff', 0.0046042076486784598) +zone = ('idz002', 0.0045108802131275088) + +[fips5359180] +centroid = (0.82683247182601149, -2.096810917330636) +description = Rock Island city, WA +station = ('keat', 0.00085750598695132313) +zone = ('waz041', 0.0045689461421597865) + +[fips5359250] +centroid = (0.84622945026743823, -2.1224356319689064) +description = Rockport CDP, WA +station = ('kawo', 0.0085546191882142873) +zone = ('waz518', 0.0012268675330993613) + +[fips5359390] +centroid = (0.83053319815877014, -2.1409622496189487) +description = Rocky Point CDP, WA +station = ('kpwt', 0.001785062574921119) +zone = ('waz508', 0.0028098069588222176) + +[fips5359635] +centroid = (0.82438452537704165, -2.1124326962401216) +description = Ronald CDP, WA +station = ('ksmp', 0.0036557893810817707) +zone = ('waz520', 0.0082511273013358977) + +[fips5359705] +centroid = (0.79819240419894777, -2.0985241848842713) +description = Roosevelt CDP, WA +station = ('kdls', 0.011522933027678976) +zone = ('orz041', 0.0041258008487774231) + +[fips5359775] +centroid = (0.824432068145866, -2.0485957255053946) +description = Rosalia town, WA +station = ('kgeg', 0.0068910452504888199) +zone = ('waz033', 0.0056176693605389525) + +[fips5359845] +centroid = (0.80822953092777938, -2.1579852137585203) +description = Rosburg CDP, WA +station = ('kast', 0.0040008648926870803) +zone = ('waz021', 0.0036084143080520365) + +[fips5359880] +centroid = (0.82634449522044628, -2.1404970670134147) +description = Rosedale CDP, WA +station = ('ktiw', 0.0015740107985530382) +zone = ('waz509', 0.0034722070166657475) + +[fips5360055] +centroid = (0.82501762610991025, -2.1143128521768322) +description = Roslyn city, WA +station = ('ksmp', 0.0022869006887483662) +zone = ('waz520', 0.0089337446183065643) + +[fips5360160] +centroid = (0.82013705720280328, -2.1387403931212821) +description = Roy city, WA +station = ('kgrf', 0.0022066234026852636) +zone = ('waz509', 0.0031701349728548854) + +[fips5360230] +centroid = (0.81865769867552041, -2.0878340955756833) +description = Royal City city, WA +station = ('khms', 0.0059230525985338395) +zone = ('waz034', 0.0024191663228082879) + +[fips5360510] +centroid = (0.82554408722548178, -2.1381633349106952) +description = Ruston town, WA +station = ('ktiw', 0.00099042629019707078) +zone = ('waz509', 0.0022674522952511218) + +[fips5360580] +centroid = (0.80939413677775773, -2.1475260489632637) +description = Ryderwood CDP, WA +station = ('kkls', 0.0048308055681485296) +zone = ('waz022', 0.0035237420180796895) + +[fips5360860] +centroid = (0.82189530189126236, -2.0523064002148894) +description = St. John town, WA +station = ('kpuw', 0.0081904791423780404) +zone = ('waz033', 0.0030218339768916928) + +[fips5361000] +centroid = (0.7977885524633288, -2.1408767982987711) +description = Salmon Creek CDP, WA +station = ('kvuo', 0.0016354761525953613) +zone = ('waz039', 0.0017583214253083922) + +[fips5361115] +centroid = (0.8308515287610414, -2.1299702532563511) +description = Sammamish city, WA +station = ('krnt', 0.0027797702624559545) +zone = ('waz505', 0.00075100306603460485) + +[fips5361235] +centroid = (0.82552171210447112, -2.1682479766530496) +description = Santiago CDP, WA +station = ('khqm', 0.0067937679840607687) +zone = ('waz517', 0.003075235283501085) + +[fips5361350] +centroid = (0.82070359107800062, -2.1551843093749197) +description = Satsop CDP, WA +station = ('kshn', 0.0055436390285068847) +zone = ('waz512', 0.0006972554482139084) + +[fips5362120] +centroid = (0.83151478878338425, -2.1436686444235535) +description = Seabeck CDP, WA +station = ('kpwt', 0.0026285954085896669) +zone = ('waz511', 0.003037781807781418) + +[fips5362288] +centroid = (0.82804231661020145, -2.1345161552793881) +description = SeaTac city, WA +station = ('ksea', 0.00024122370116056631) +zone = ('waz508', 0.0022395317365247187) + +[fips5363000] +centroid = (0.83113449899266723, -2.1354256288993096) +description = Seattle city, WA +station = ('kbfi', 0.0012946667571881237) +zone = ('waz508', 0.0020917424741355118) + +[fips5363210] +centroid = (0.84664497825575291, -2.1333973817755671) +description = Sedro-Woolley city, WA +station = ('kbvs', 0.0022550578965818621) +zone = ('waz506', 0.0017151808401644345) + +[fips5363245] +centroid = (0.84236665266033928, -2.1694697071294455) +description = Sekiu CDP, WA +station = ('cwsp', 0.0049269511799478333) +zone = ('waz515', 0.002263685089625502) + +[fips5363280] +centroid = (0.81414874527274805, -2.10380031521305) +description = Selah city, WA +station = ('kykm', 0.0014086605510834664) +zone = ('waz027', 0.0046252851959275405) + +[fips5363385] +centroid = (0.83906716006932158, -2.1484245968220681) +description = Sequim city, WA +station = ('cwlm', 0.0064928000227368037) +zone = ('waz514', 0.0019339855074338489) + +[fips5363545] +centroid = (0.8273133100349358, -2.1305132600932315) +description = Shadow Lake CDP, WA +station = ('krnt', 0.002443772670866502) +zone = ('waz505', 0.0028455805837824645) + +[fips5363735] +centroid = (0.82411516871358148, -2.1487324554488274) +description = Shelton city, WA +station = ('kshn', 0.00035359333728091807) +zone = ('waz511', 0.0051754384972286993) + +[fips5363960] +centroid = (0.83351521535884998, -2.1352779391380059) +description = Shoreline city, WA +station = ('kpae', 0.0028730064876670998) +zone = ('waz508', 0.0043069658951882051) + +[fips5364190] +centroid = (0.84127974886865986, -2.1335968030958998) +description = Silvana CDP, WA +station = ('kawo', 0.0011089639963842944) +zone = ('waz507', 0.002565392703341975) + +[fips5364365] +centroid = (0.83194543132302123, -2.1412047805718055) +description = Silverdale CDP, WA +station = ('kpwt', 0.0030220048790879995) +zone = ('waz508', 0.0037353237500163993) + +[fips5364380] +centroid = (0.83537552690196581, -2.1319145325897799) +description = Silver Firs CDP, WA +station = ('kpae', 0.0018185480560465137) +zone = ('waz507', 0.0035581527785899349) + +[fips5364610] +centroid = (0.83983463370130107, -2.131180534372854) +description = Sisco Heights CDP, WA +station = ('kawo', 0.001079403147264764) +zone = ('waz507', 0.0020450230718454376) + +[fips5364755] +centroid = (0.8083535540244261, -2.1537587768017681) +description = Skamokawa Valley CDP, WA +station = ('kcls', 0.0081330859242996576) +zone = ('waz020', 0.003269663660020827) + +[fips5364775] +centroid = (0.82603541486321053, -2.1495265628051925) +description = Skokomish CDP, WA +station = ('kshn', 0.0016854244043436027) +zone = ('waz511', 0.0037254390749625532) + +[fips5364855] +centroid = (0.83269850598867179, -2.1181242672907525) +description = Skykomish town, WA +station = ('ksmp', 0.0074550856582769939) +zone = ('waz505', 0.0082583908487506383) + +[fips5365170] +centroid = (0.8365165882603347, -2.1309192760371229) +description = Snohomish city, WA +station = ('kpae', 0.0022400188444047613) +zone = ('waz507', 0.0029001552770999825) + +[fips5365205] +centroid = (0.82978118814396329, -2.1270118154544653) +description = Snoqualmie city, WA +station = ('ksea', 0.0055248622938802059) +zone = ('waz505', 0.0018871134765634735) + +[fips5365275] +centroid = (0.82731172178531653, -2.1190221693777334) +description = Snoqualmie Pass CDP, WA +station = ('ksmp', 0.0022573467488233682) +zone = ('waz519', 0.0087568808106134027) + +[fips5365345] +centroid = (0.82708540494121041, -2.0855139770411295) +description = Soap Lake city, WA +station = ('keph', 0.0015738713331091099) +zone = ('waz044', 0.0053682196351820862) + +[fips5365625] +centroid = (0.81454322459028383, -2.1607498502002644) +description = South Bend city, WA +station = ('khqm', 0.0054125736894407583) +zone = ('waz021', 0.0032186176703740284) + +[fips5365765] +centroid = (0.82354880937130925, -2.1110121727619231) +description = South Cle Elum town, WA +station = ('keln', 0.005641880368147157) +zone = ('waz520', 0.0075171386188751591) + +[fips5365810] +centroid = (0.82029293255829883, -2.1361128871988675) +description = South Creek CDP, WA +station = ('kplu', 0.0021234242029186754) +zone = ('waz509', 0.0032765034342759776) + +[fips5365922] +centroid = (0.8224114306576622, -2.1342804834704912) +description = South Hill CDP, WA +station = ('kplu', 0.00036570585926606203) +zone = ('waz509', 0.0027381514704334941) + +[fips5366045] +centroid = (0.82268241047732671, -2.1309301145317776) +description = South Prairie town, WA +station = ('kplu', 0.0024202032288205004) +zone = ('waz509', 0.0049118528754827102) + +[fips5366185] +centroid = (0.8270914612337148, -2.0993397946970207) +description = South Wenatchee CDP, WA +station = ('keat', 0.0010033575582345609) +zone = ('waz041', 0.0042631941713729207) + +[fips5366220] +centroid = (0.82927190106823134, -2.1385910802037742) +description = Southworth CDP, WA +station = ('ksea', 0.002775780061710237) +zone = ('waz508', 0.00097875300715336553) + +[fips5366255] +centroid = (0.82201623575513305, -2.1366908878872506) +description = Spanaway CDP, WA +station = ('ktcm', 0.0011527484418233705) +zone = ('waz509', 0.0015837938605590474) + +[fips5366290] +centroid = (0.82780455040620216, -2.0486907412298732) +description = Spangle city, WA +station = ('kgeg', 0.0037224963906639145) +zone = ('waz036', 0.0042739365020992752) + +[fips5367000] +centroid = (0.83206050088060535, -2.0493061966840038) +description = Spokane city, WA +station = ('ksff', 0.0011866204060291406) +zone = ('waz036', 0.0025040291800595238) + +[fips5367167] +centroid = (0.83188244239031683, -2.0460980022661581) +description = Spokane Valley city, WA +station = ('ksff', 0.0010457188561762598) +zone = ('waz036', 0.0045404642076452778) + +[fips5367175] +centroid = (0.82554571038168612, -2.0590651877432378) +description = Sprague city, WA +station = ('kska', 0.0067281073624638928) +zone = ('waz036', 0.0070065078802588479) + +[fips5367210] +centroid = (0.83875553153137805, -2.055066551160456) +description = Springdale town, WA +station = ('kdew', 0.0039844541098639783) +zone = ('waz037', 0.0063146227781641865) + +[fips5367435] +centroid = (0.8269884868078472, -2.1417268958175399) +description = Stansberry Lake CDP, WA +station = ('kpwt', 0.0020917978517310974) +zone = ('waz511', 0.0036173922718004117) + +[fips5367455] +centroid = (0.84203661089878723, -2.1352747626387671) +description = Stanwood city, WA +station = ('kawo', 0.0024589451957374958) +zone = ('waz507', 0.0034739903455350703) + +[fips5367490] +centroid = (0.8119523356755759, -2.0617238128862154) +description = Starbuck town, WA +station = ('kalw', 0.0075899703326188488) +zone = ('waz029', 0.0037967035518858406) + +[fips5367595] +centroid = (0.83543757335687419, -2.1249313480795031) +description = Startup CDP, WA +station = ('kawo', 0.0071452422614517296) +zone = ('waz505', 0.0062385060473592064) + +[fips5367770] +centroid = (0.82328247212745498, -2.1396419429464002) +description = Steilacoom town, WA +station = ('kgrf', 0.0010679009877089536) +zone = ('waz509', 0.0010483302628443733) + +[fips5367805] +centroid = (0.82043392025527506, -2.0481475249534826) +description = Steptoe CDP, WA +station = ('kpuw', 0.0052863298301945982) +zone = ('waz033', 0.0023319113857409282) + +[fips5367875] +centroid = (0.79752371620263129, -2.1274930725424102) +description = Stevenson city, WA +station = ('kczk', 0.00051517962286713303) +zone = ('waz023', 0.00075043379642720988) + +[fips5368200] +centroid = (0.8503255809422362, -2.1353800408992476) +description = Sudden Valley CDP, WA +station = ('kbli', 0.0025456298139143766) +zone = ('waz503', 0.0028391933346216115) + +[fips5368260] +centroid = (0.83549536120840773, -2.1258718711068179) +description = Sultan city, WA +station = ('kawo', 0.0066874164522747739) +zone = ('waz505', 0.0059851760445917739) + +[fips5368330] +centroid = (0.8551376631294948, -2.1339908111745376) +description = Sumas city, WA +station = ('cyxx', 0.0012992535295667552) +zone = ('waz503', 0.0033813840147204335) + +[fips5368365] +centroid = (0.82326212158837675, -2.1356481758322312) +description = Summit CDP, WA +station = ('ktcm', 0.0014605889844165787) +zone = ('waz509', 0.0016668096105824661) + +[fips5368410] +centroid = (0.82268406854011611, -2.1354456303725375) +description = Summit View CDP, WA +station = ('kplu', 0.00097188196453117884) +zone = ('waz509', 0.0018999075861880217) + +[fips5368417] +centroid = (0.81328753000664411, -2.1057647181927548) +description = Summitview CDP, WA +station = ('kykm', 0.0015182121843485769) +zone = ('waz027', 0.0049897372807632227) + +[fips5368435] +centroid = (0.82422877219459367, -2.1334259353621294) +description = Sumner city, WA +station = ('kplu', 0.0022699710518856763) +zone = ('waz509', 0.0033153639045082157) + +[fips5368480] +centroid = (0.84177530020317859, -2.1339733055221402) +description = Sunday Lake CDP, WA +station = ('kawo', 0.0016152470674960452) +zone = ('waz507', 0.003062912790331516) + +[fips5368750] +centroid = (0.80834259335672365, -2.0944909035158372) +description = Sunnyside city, WA +station = ('khms', 0.0065677626759977148) +zone = ('waz027', 0.0042307673520132847) + +[fips5368785] +centroid = (0.82878943970310259, -2.1003827860047197) +description = Sunnyslope CDP, WA +station = ('keat', 0.0022610078869138542) +zone = ('waz041', 0.0028803185045138532) + +[fips5369170] +centroid = (0.83308452045933545, -2.1395085997915477) +description = Suquamish CDP, WA +station = ('kbfi', 0.0044786664229060184) +zone = ('waz508', 0.0040136620983993853) + +[fips5369280] +centroid = (0.84265660420897315, -2.1242376669682979) +description = Swede Heaven CDP, WA +station = ('kawo', 0.0056721526979767794) +zone = ('waz518', 0.0044281391172040913) + +[fips5370000] +centroid = (0.82470645135757203, -2.1373272698391128) +description = Tacoma city, WA +station = ('ktcm', 0.0018053484164086441) +zone = ('waz509', 0.0015227153371157919) + +[fips5370175] +centroid = (0.8260193578340923, -2.1690188013171929) +description = Taholah CDP, WA +station = ('khqm', 0.0074935227039332015) +zone = ('waz517', 0.003794097973261662) + +[fips5370245] +centroid = (0.81214049962223345, -2.1096653370847442) +description = Tampico CDP, WA +station = ('kykm', 0.0041439398402644129) +zone = ('waz520', 0.0045615245910071841) + +[fips5370280] +centroid = (0.82119638479230128, -2.1429319234929944) +description = Tanglewilde CDP, WA +station = ('kolm', 0.0020440605579621378) +zone = ('waz509', 0.0038915331086065135) + +[fips5370315] +centroid = (0.82862338907806776, -2.1237669865756201) +description = Tanner CDP, WA +station = ('ksmp', 0.0053335202139762937) +zone = ('waz505', 0.0043155818404303423) + +[fips5370560] +centroid = (0.82423725449475838, -2.043326489227161) +description = Tekoa city, WA +station = ('kpuw', 0.0083113787212487581) +zone = ('idz003', 0.0056409981395408358) + +[fips5370630] +centroid = (0.81775358321640224, -2.1443180639849282) +description = Tenino city, WA +station = ('kolm', 0.0020252662853590983) +zone = ('waz504', 0.0023667842718066738) + +[fips5370805] +centroid = (0.81336872272344685, -2.1022279480899284) +description = Terrace Heights CDP, WA +station = ('kykm', 0.0011923462941662124) +zone = ('waz027', 0.0033838097028409467) + +[fips5371225] +centroid = (0.82144764239141832, -2.1061034167873967) +description = Thorp CDP, WA +station = ('keln', 0.0017288022722144612) +zone = ('waz026', 0.0047555748343960985) + +[fips5371330] +centroid = (0.83669256980881312, -2.1291824116320006) +description = Three Lakes CDP, WA +station = ('kpae', 0.00341568542586408) +zone = ('waz507', 0.0036620980672693562) + +[fips5371400] +centroid = (0.81511385998922348, -2.1075816583039582) +description = Tieton town, WA +station = ('kykm', 0.0035662930322292331) +zone = ('waz520', 0.0037629332483111204) + +[fips5371680] +centroid = (0.81522201804296957, -2.1639183034710423) +description = Tokeland CDP, WA +station = ('khqm', 0.0045404512647812638) +zone = ('waz021', 0.0044895491708358132) + +[fips5371785] +centroid = (0.8105514995113402, -2.1441287132143794) +description = Toledo city, WA +station = ('kcls', 0.0044525817675497596) +zone = ('waz022', 0.0045965023214569675) + +[fips5371890] +centroid = (0.85012429211960372, -2.08466976128194) +description = Tonasket city, WA +station = ('komk', 0.0043067050205673162) +zone = ('waz043', 0.0062654670713523297) + +[fips5371960] +centroid = (0.80949337619902606, -2.0998488548799497) +description = Toppenish city, WA +station = ('kykm', 0.0041950617350160384) +zone = ('waz027', 0.0009171186747322942) + +[fips5371995] +centroid = (0.84945520269755914, -2.0711552056448501) +description = Torboy CDP, WA +station = ('komk', 0.010420374095563232) +zone = ('waz038', 0.0024215995110644871) + +[fips5372030] +centroid = (0.80356885605313133, -2.0712240588838413) +description = Touchet CDP, WA +station = ('kalw', 0.0048218550349227746) +zone = ('orz507', 0.0055604703065043311) + +[fips5372170] +centroid = (0.83301013452661532, -2.0494170250915054) +description = Town and Country CDP, WA +station = ('ksff', 0.0014713687311340533) +zone = ('waz036', 0.0029437581107053775) + +[fips5372205] +centroid = (0.83094385667847181, -2.1407018639478435) +description = Tracyton CDP, WA +station = ('kpwt', 0.0022266694340749293) +zone = ('waz508', 0.0028497420687218708) + +[fips5372450] +centroid = (0.80281801540892339, -2.1211012230360016) +description = Trout Lake CDP, WA +station = ('kczk', 0.0072045250186956412) +zone = ('orz014', 0.0072920167578782022) + +[fips5372625] +centroid = (0.82860782074114003, -2.1341141884993609) +description = Tukwila city, WA +station = ('ksea', 0.00065949868038498588) +zone = ('waz508', 0.002200418818660396) + +[fips5372905] +centroid = (0.82011251787352013, -2.1454281981089518) +description = Tumwater city, WA +station = ('kolm', 0.00048300572323626049) +zone = ('waz504', 0.0046950314291142351) + +[fips5373065] +centroid = (0.84233375320393922, -2.0657551743924722) +description = Twin Lakes CDP, WA +station = ('kska', 0.013987604242846279) +zone = ('waz038', 0.0061496586908235951) + +[fips5373080] +centroid = (0.8440568993211407, -2.0964254788186256) +description = Twisp town, WA +station = ('komk', 0.0071879262953667379) +zone = ('waz042', 0.0036956808290014515) + +[fips5373255] +centroid = (0.82636990721435533, -2.1484162192416583) +description = Union CDP, WA +station = ('kshn', 0.0020432649717178038) +zone = ('waz511', 0.0030284889307483922) + +[fips5373290] +centroid = (0.81252539708217575, -2.102975123542707) +description = Union Gap city, WA +station = ('kykm', 0.00054553532088676062) +zone = ('waz027', 0.0030215360417231107) + +[fips5373307] +centroid = (0.83220894113348742, -2.1297137945760629) +description = Union Hill-Novelty Hill CDP, WA +station = ('krnt', 0.0039064854951391843) +zone = ('waz505', 0.0020957176959238762) + +[fips5373360] +centroid = (0.81225776829467489, -2.0435395764755371) +description = Uniontown town, WA +station = ('klws', 0.0031208332449175437) +zone = ('idz026', 0.0048537542718296127) + +[fips5373465] +centroid = (0.82406289610248418, -2.1388439435058029) +description = University Place city, WA +station = ('ktiw', 0.00097488598916919359) +zone = ('waz509', 0.00093445296143747781) + +[fips5373580] +centroid = (0.80704630241468245, -2.1524197078397607) +description = Upper Elochoman CDP, WA +station = ('kkls', 0.0055664128957657504) +zone = ('waz020', 0.0047209312120452696) + +[fips5373780] +centroid = (0.80991190615365427, -2.1460035982567494) +description = Vader city, WA +station = ('kcls', 0.0048157455926542457) +zone = ('waz022', 0.0038235692019735869) + +[fips5373885] +centroid = (0.84077548834117366, -2.054679384772486) +description = Valley CDP, WA +station = ('kdew', 0.0049479667596628966) +zone = ('waz037', 0.0042984971127280336) + +[fips5374060] +centroid = (0.79652002970968694, -2.139712873127201) +description = Vancouver city, WA +station = ('kvuo', 0.00074499509837572448) +zone = ('waz039', 0.0019864103407251591) + +[fips5374200] +centroid = (0.81934886651260264, -2.0942580940469138) +description = Vantage CDP, WA +station = ('khms', 0.0081019983016065757) +zone = ('waz026', 0.0038352402419282827) + +[fips5374305] +centroid = (0.82748138524190296, -2.1372447681253708) +description = Vashon CDP, WA +station = ('ksea', 0.0017693087842729409) +zone = ('waz508', 0.0019175123061739476) + +[fips5374445] +centroid = (0.82655266064033173, -2.1429587142970123) +description = Vaughn CDP, WA +station = ('kpwt', 0.0025082431445828599) +zone = ('waz511', 0.0032713153310581205) + +[fips5374585] +centroid = (0.79911322245900751, -2.1375456279818295) +description = Venersborg CDP, WA +station = ('kvuo', 0.0036612774383571614) +zone = ('waz039', 0.0010326569286121024) + +[fips5374760] +centroid = (0.83953813716797232, -2.1250993185667149) +description = Verlot CDP, WA +station = ('kpae', 0.0069219362556490515) +zone = ('waz518', 0.007456204773144408) + +[fips5375565] +centroid = (0.80755723009991121, -2.0621049753415588) +description = Waitsburg city, WA +station = ('kalw', 0.0033709658405338856) +zone = ('waz029', 0.0010526443676227187) + +[fips5375775] +centroid = (0.80404157848103397, -2.0653604681821336) +description = Walla Walla city, WA +station = ('kalw', 0.0008494296742154792) +zone = ('waz029', 0.0045086088873344671) + +[fips5375810] +centroid = (0.80375127786654976, -2.0647740201001707) +description = Walla Walla East CDP, WA +station = ('kalw', 0.00087786367043422798) +zone = ('waz029', 0.0046720210542556696) + +[fips5375905] +centroid = (0.82387029901952658, -2.1357211131416722) +description = Waller CDP, WA +station = ('ktcm', 0.001666230320467952) +zone = ('waz509', 0.0017220439870203658) + +[fips5375985] +centroid = (0.80432974979383076, -2.0752940968863216) +description = Wallula CDP, WA +station = ('kpsc', 0.0040735361482807566) +zone = ('waz028', 0.0055329560456951936) + +[fips5376055] +centroid = (0.79720617099852342, -2.1398896051672582) +description = Walnut Grove CDP, WA +station = ('kvuo', 0.0011714001023880897) +zone = ('waz039', 0.0014811673342182263) + +[fips5376125] +centroid = (0.81059153736438094, -2.1017495009820788) +description = Wapato city, WA +station = ('kykm', 0.0025361102858956434) +zone = ('waz027', 0.0013279411529319915) + +[fips5376160] +centroid = (0.81975071111958175, -2.0778421903277708) +description = Warden city, WA +station = ('kmwh', 0.0051267754233475888) +zone = ('waz034', 0.0052932540649027245) + +[fips5376195] +centroid = (0.84063968427207592, -2.1353702146955587) +description = Warm Beach CDP, WA +station = ('kawo', 0.0021075836893168706) +zone = ('waz507', 0.0022089275948280092) + +[fips5376405] +centroid = (0.79554063819993037, -2.1352891266985115) +description = Washougal city, WA +station = ('kttd', 0.0010507362211619213) +zone = ('waz039', 0.0035486196197539151) + +[fips5376440] +centroid = (0.81600720676685667, -2.0649077472274584) +description = Washtucna town, WA +station = ('kalw', 0.011415100514603007) +zone = ('waz029', 0.0078034014580097644) + +[fips5376510] +centroid = (0.83161516266866642, -2.0956284916689949) +description = Waterville town, WA +station = ('keat', 0.0045896110073858553) +zone = ('waz041', 0.0018108515494425945) + +[fips5376615] +centroid = (0.82699051138977953, -2.1409846596465445) +description = Wauna CDP, WA +station = ('kpwt', 0.0022518365270056771) +zone = ('waz508', 0.0035363244216595753) + +[fips5376720] +centroid = (0.82620523539942969, -2.0460703737040986) +description = Waverly town, WA +station = ('kgeg', 0.0060287178939297855) +zone = ('waz036', 0.0066461117967103814) + +[fips5377105] +centroid = (0.82773286973382276, -2.1001317378451128) +description = Wenatchee city, WA +station = ('keat', 0.0015841918633151962) +zone = ('waz041', 0.0037751568051981855) + +[fips5377297] +centroid = (0.8098726711520694, -2.0431400880630481) +description = West Clarkston-Highland CDP, WA +station = ('klws', 0.00083770725195878091) +zone = ('idz026', 0.0044149682436653501) + +[fips5377612] +centroid = (0.80722464015765116, -2.0800846940704885) +description = West Pasco CDP, WA +station = ('kpsc', 0.00081513020352987227) +zone = ('waz028', 0.0015140711866332404) + +[fips5377630] +centroid = (0.81841497573644562, -2.1661963770239154) +description = Westport city, WA +station = ('khqm', 0.0025185559123314318) +zone = ('waz517', 0.0053104951870135203) + +[fips5377665] +centroid = (0.80832843873648996, -2.0837096382071256) +description = West Richland city, WA +station = ('kpdt', 0.002568658613722899) +zone = ('waz028', 0.0025089351397022692) + +[fips5377745] +centroid = (0.80603151562769537, -2.1452282531898432) +description = West Side Highway CDP, WA +station = ('kkls', 0.0011538241572741955) +zone = ('waz022', 0.00036254702016332485) + +[fips5378155] +centroid = (0.84384506870982623, -2.1407113061790968) +description = Whidbey Island Station CDP, WA +station = ('knuw', 4.8295700205303736e-05) +zone = ('waz506', 0.0038908573361530773) + +[fips5378225] +centroid = (0.8291926631201908, -2.135376532787451) +description = White Center CDP, WA +station = ('kbfi', 0.00080186032225568714) +zone = ('waz508', 0.0012178623814495268) + +[fips5378330] +centroid = (0.7981087156613148, -2.1203172385892985) +description = White Salmon city, WA +station = ('kdls', 0.0043459466014327394) +zone = ('orz014', 0.0027972759449294174) + +[fips5378365] +centroid = (0.80943096322497476, -2.1072777790278936) +description = White Swan CDP, WA +station = ('kykm', 0.0041255629024234105) +zone = ('waz027', 0.0052210965256477664) + +[fips5378680] +centroid = (0.83352807843543719, -2.0719628567562105) +description = Wilbur town, WA +station = ('kmwh', 0.01204740205646501) +zone = ('waz035', 0.0071230169703788279) + +[fips5378780] +centroid = (0.8281059338614366, -2.1252625068517768) +description = Wilderness Rim CDP, WA +station = ('ksea', 0.0064692745089366659) +zone = ('waz505', 0.0036439287169504286) + +[fips5378925] +centroid = (0.82207875344893955, -2.1302140582995621) +description = Wilkeson town, WA +station = ('kplu', 0.0028244689462047969) +zone = ('waz519', 0.0040025740147380667) + +[fips5378995] +centroid = (0.81464022999010965, -2.1583571085155353) +description = Willapa CDP, WA +station = ('khqm', 0.0060102477912592264) +zone = ('waz021', 0.0036778386300881797) + +[fips5379135] +centroid = (0.82768626944279455, -2.0789937934748219) +description = Wilson Creek town, WA +station = ('kmwh', 0.004548583329424827) +zone = ('waz044', 0.0079106593083697312) + +[fips5379275] +centroid = (0.81141479171925412, -2.1456077750356894) +description = Winlock city, WA +station = ('kcls', 0.0033501163315349403) +zone = ('waz504', 0.0040379136847078657) + +[fips5379380] +centroid = (0.84599472093633743, -2.0975197129931633) +description = Winthrop town, WA +station = ('komk', 0.0076652965271164983) +zone = ('waz042', 0.0042053784021106712) + +[fips5379485] +centroid = (0.79691601001037926, -2.1113203630012403) +description = Wishram CDP, WA +station = ('kdls', 0.002518849111684028) +zone = ('waz024', 0.0015878849533195031) + +[fips5379555] +centroid = (0.82524129005355318, -2.1393742094391439) +description = Wollochet CDP, WA +station = ('ktiw', 0.00026804855224219881) +zone = ('waz509', 0.0021464297739924136) + +[fips5379590] +centroid = (0.83352902091323333, -2.1318636736953769) +description = Woodinville city, WA +station = ('kpae', 0.0032026753477241514) +zone = ('waz505', 0.0036966671231468289) + +[fips5379625] +centroid = (0.80148304797065795, -2.142388619950141) +description = Woodland city, WA +station = ('kspb', 0.0030544683429994651) +zone = ('orz005', 0.0037380068140047285) + +[fips5379825] +centroid = (0.83562296223002097, -2.1276267473098205) +description = Woods Creek CDP, WA +station = ('kpae', 0.004490373035410296) +zone = ('waz507', 0.0051324701903926314) + +[fips5379835] +centroid = (0.83418070940263556, -2.1361389624178924) +description = Woodway city, WA +station = ('kpae', 0.0024735930499402603) +zone = ('waz507', 0.0048111825419610271) + +[fips5379975] +centroid = (0.80049990400300952, -2.1364013552176369) +description = Yacolt town, WA +station = ('kvuo', 0.0052538245441825591) +zone = ('waz039', 0.002624885091560451) + +[fips5380010] +centroid = (0.81318748773391969, -2.1039392259682161) +description = Yakima city, WA +station = ('kykm', 0.00047435598093054218) +zone = ('waz027', 0.0039582960095449577) + +[fips5380150] +centroid = (0.83156686940826374, -2.133103136716973) +description = Yarrow Point town, WA +station = ('kbfi', 0.0020294569972544199) +zone = ('waz505', 0.0026796672098834393) + +[fips5380220] +centroid = (0.81930313888620032, -2.1405254984269297) +description = Yelm city, WA +station = ('kgrf', 0.0032333393617525333) +zone = ('waz509', 0.0043038004038632015) + +[fips5380500] +centroid = (0.80998116081837346, -2.0991728539540673) +description = Zillah city, WA +station = ('kykm', 0.0041654622221126182) +zone = ('waz027', 0.00062941057610294124) + +[fips54001] +centroid = (0.68311757572062071, -1.3962095407347472) +description = Barbour County, WV +station = ('kckb', 0.0040806031304742342) +zone = ('wvz040', 0.00014525211384435572) + +[fips5400192328] +centroid = (0.68402270347070493, -1.3954796614948557) +description = North district, WV +station = ('kckb', 0.0040097998676338707) +zone = ('wvz040', 0.0012125937127289038) + +[fips5400192892] +centroid = (0.68188610630699853, -1.3950817264254007) +description = South district, WV +station = ('kekn', 0.0034307124720751123) +zone = ('wvz040', 0.0014674125495813242) + +[fips5400193588] +centroid = (0.68325453170702466, -1.3985167961927134) +description = West district, WV +station = ('kckb', 0.0029114143068429076) +zone = ('wvz040', 0.001726303657724386) + +[fips5400196] +centroid = (0.65913066059912917, -1.428156134629714) +description = Accoville CDP, WV +station = ('ki16', 0.0046930590587938269) +zone = ('wvz025', 0.001884783269424778) + +[fips54003] +centroid = (0.68866946807121465, -1.361921221129087) +description = Berkeley County, WV +station = ('kmrb', 0.001206658454810067) +zone = ('wvz052', 0.00012701914134455349) + +[fips5400364] +centroid = (0.67156288520717999, -1.4033372210537967) +description = Addison (Webster Springs) town, WV +station = ('kw22', 0.0093088465531858244) +zone = ('wvz038', 0.00037318744746058223) + +[fips5400390006] +centroid = (0.68867339506203162, -1.3608640228412765) +description = Adam Stephens district, WV +station = ('kmrb', 0.0010255964694806292) +zone = ('wvz052', 0.00075834137351216873) + +[fips5400392322] +centroid = (0.68922514599846452, -1.3614714672341406) +description = Norborne district, WV +station = ('kmrb', 0.0015964393542041552) +zone = ('wvz052', 0.00052822515646535598) + +[fips5400392526] +centroid = (0.69036521251915983, -1.3596152223081821) +description = Potomac district, WV +station = ('kmrb', 0.0029280585861928732) +zone = ('mdz003', 0.0014355698477573661) + +[fips5400392754] +centroid = (0.68678810785731981, -1.3617732346618103) +description = Shenandoah district, WV +station = ('kmrb', 0.0010289109990523049) +zone = ('wvz052', 0.0019909790099673862) + +[fips5400393171] +centroid = (0.68883764799793679, -1.3597262427019015) +description = Tuscarora district, WV +station = ('kmrb', 0.0015678472660547956) +zone = ('wvz052', 0.0016304190205998681) + +[fips5400393388] +centroid = (0.68890105580966177, -1.3630984457095572) +description = Valley district, WV +station = ('kmrb', 0.0020012874430429322) +zone = ('wvz052', 0.0009816667344808331) + +[fips54005] +centroid = (0.66362371405241571, -1.4261663720159776) +description = Boone County, WV +station = ('kcrw', 0.0061989632553946915) +zone = ('wvz026', 2.8065655730006372e-05) + +[fips5400590762] +centroid = (0.66478746469106054, -1.4247034719435412) +description = District 1, WV +station = ('kcrw', 0.0048540669000538108) +zone = ('wvz026', 0.0016147932846709329) + +[fips5400590796] +centroid = (0.6619232223089051, -1.4259980873695004) +description = District 2, WV +station = ('ki16', 0.0060146655858420673) +zone = ('wvz026', 0.0017082912414518926) + +[fips5400590832] +centroid = (0.66479835554559286, -1.4286338486992773) +description = District 3, WV +station = ('kcrw', 0.005957058804992886) +zone = ('wvz026', 0.0022917723153753258) + +[fips54007] +centroid = (0.67543023812362668, -1.4090330856143878) +description = Braxton County, WV +station = ('kw22', 0.0082151664674470961) +zone = ('wvz028', 0.00016843218749317007) + +[fips5400748] +centroid = (0.68931419269690131, -1.3899765860034399) +description = Albright town, WV +station = ('k2g4', 0.0043005463828918776) +zone = ('wvz023', 0.00058600287153292912) + +[fips5400772] +centroid = (0.65847153700711347, -1.4074993775341975) +description = Alderson town, WV +station = ('klwb', 0.0041461535782714755) +zone = ('wvz044', 0.0031908493066300429) + +[fips5400790968] +centroid = (0.67483384166492766, -1.4067383790737431) +description = Eastern district, WV +station = ('kw22', 0.0073971866671229802) +zone = ('wvz028', 0.0017321725658338153) + +[fips5400792346] +centroid = (0.67751135127041218, -1.4074081491741959) +description = Northern district, WV +station = ('kw22', 0.0059613979808400101) +zone = ('wvz028', 0.0023458050779885725) + +[fips5400792922] +centroid = (0.67382254553644461, -1.4111026795881101) +description = Southern district, WV +station = ('kw22', 0.010488145585050205) +zone = ('wvz028', 0.0024077538024444775) + +[fips5400793597] +centroid = (0.67543796993221294, -1.4101868878762962) +description = Western district, WV +station = ('kw22', 0.0089203889664265235) +zone = ('wvz028', 0.0010686728865293392) + +[fips54009] +centroid = (0.70289025373683167, -1.4063634648971222) +description = Brooke County, WV +station = ('khlg', 0.0020795199434367187) +zone = ('wvz002', 3.1335930319563923e-05) + +[fips5400991104] +centroid = (0.70313807303732245, -1.4064236613030234) +description = Follansbee district, WV +station = ('khlg', 0.002284111326771848) +zone = ('wvz002', 0.00024802922890021148) + +[fips5400993552] +centroid = (0.70445063044799228, -1.4060678584817117) +description = Weirton district, WV +station = ('khlg', 0.0036068928474445928) +zone = ('wvz002', 0.0015613256100036467) + +[fips5400993564] +centroid = (0.7020775411706407, -1.4063171438587743) +description = Wellsburg district, WV +station = ('khlg', 0.0014309255692002349) +zone = ('wvz002', 0.00082416755045750553) + +[fips54011] +centroid = (0.67054816823336305, -1.4354179784083643) +description = Cabell County, WV +station = ('khts', 0.0042946602571870378) +zone = ('wvz006', 2.6329209130367061e-05) + +[fips5401190764] +centroid = (0.66960759284617077, -1.4382429334290572) +description = District 1, WV +station = ('khts', 0.0019808942944959129) +zone = ('wvz006', 0.0024318313276699274) + +[fips5401190798] +centroid = (0.67041749543226625, -1.4387424641142705) +description = District 2, WV +station = ('khts', 0.0017754999429954851) +zone = ('wvz006', 0.0026318322482106553) + +[fips5401190834] +centroid = (0.67071489953680608, -1.4372331906436084) +description = District 3, WV +station = ('khts', 0.0029780451027254713) +zone = ('wvz006', 0.001453417970257144) + +[fips5401190870] +centroid = (0.66919429887929849, -1.4359677920293277) +description = District 4, WV +station = ('khts', 0.0037897969507202831) +zone = ('wvz006', 0.0014399291324188939) + +[fips5401190882] +centroid = (0.67115109222346447, -1.4342961156717673) +description = District 5, WV +station = ('khts', 0.0052969600132193439) +zone = ('wvz006', 0.0010395165306013852) + +[fips54013] +centroid = (0.67795846971818796, -1.4157321654290249) +description = Calhoun County, WV +station = ('kpkb', 0.0096658201720397283) +zone = ('wvz018', 2.812312223423563e-05) + +[fips5401390766] +centroid = (0.68028532522365437, -1.4161626159824443) +description = District 1, WV +station = ('kpkb', 0.0074940484087506164) +zone = ('wvz018', 0.0023411836130933974) + +[fips5401390800] +centroid = (0.67808689104454978, -1.4145500015667718) +description = District 2, WV +station = ('kpkb', 0.010020306723208762) +zone = ('wvz018', 0.00095604554064693812) + +[fips5401390836] +centroid = (0.67908665054667716, -1.4156834881961868) +description = District 3, WV +station = ('kpkb', 0.0087041100538048817) +zone = ('wvz018', 0.0011241314808898614) + +[fips5401390873] +centroid = (0.6774725176945553, -1.417073904744788) +description = District 4, WV +station = ('kcrw', 0.0096183711700795361) +zone = ('wvz018', 0.0011303735772767458) + +[fips5401390885] +centroid = (0.67543605007003582, -1.4149455280818586) +description = District 5, WV +station = ('kcrw', 0.0092763574751509661) +zone = ('wvz018', 0.0026083133702206338) + +[fips5401396] +centroid = (0.66836528493789382, -1.4283606348581699) +description = Alum Creek CDP, WV +station = ('kcrw', 0.0035066270316801737) +zone = ('wvz013', 0.0037944748122425067) + +[fips54015] +centroid = (0.67125059344412064, -1.4151455253608447) +description = Clay County, WV +station = ('kcrw', 0.0072698981820590427) +zone = ('wvz027', 0.0001055880363601493) + +[fips5401590891] +centroid = (0.67288626365921211, -1.4145151822481943) +description = District A, WV +station = ('kcrw', 0.0082470884843264241) +zone = ('wvz027', 0.0016367543419517378) + +[fips5401590893] +centroid = (0.67064072304359634, -1.4138326537909094) +description = District B, WV +station = ('kcrw', 0.0081797530464318962) +zone = ('wvz027', 0.0011430053310977487) + +[fips5401590895] +centroid = (0.67003369752975273, -1.4174915969413753) +description = District C, WV +station = ('kcrw', 0.0052659276934844479) +zone = ('wvz027', 0.0023093070734015787) + +[fips5401660] +centroid = (0.65943111902985996, -1.4281522076388971) +description = Amherstdale CDP, WV +station = ('ki16', 0.0048806487555877222) +zone = ('wvz025', 0.0017196407488748282) + +[fips54017] +centroid = (0.68527703669752826, -1.4085007252859445) +description = Doddridge County, WV +station = ('kckb', 0.0065760781037875506) +zone = ('wvz020', 0.00012733691640321628) + +[fips5401780] +centroid = (0.65164408822599196, -1.4214065449865239) +description = Anawalt town, WV +station = ('kblf', 0.0033996095845148966) +zone = ('wvz033', 0.0030447555365547339) + +[fips5401790138] +centroid = (0.68710478039680167, -1.4074706494147098) +description = Beech district, WV +station = ('kckb', 0.005865560521095302) +zone = ('wvz020', 0.0019372792893919747) + +[fips5401792094] +centroid = (0.68659167105000796, -1.4087645667089683) +description = Maple district, WV +station = ('kckb', 0.0067796259683842201) +zone = ('wvz020', 0.0012212619678723118) + +[fips5401792374] +centroid = (0.68382139719477986, -1.4087135332816401) +description = Oak district, WV +station = ('kckb', 0.0070325068790714406) +zone = ('wvz020', 0.0015577976765979574) + +[fips5401792466] +centroid = (0.68536852685691774, -1.410871894701119) +description = Pine district, WV +station = ('kckb', 0.0083979407292019831) +zone = ('wvz020', 0.0017566530341046581) + +[fips54019] +centroid = (0.66376499845536463, -1.4152185673900406) +description = Fayette County, WV +station = ('kbkw', 0.0040525262940964146) +zone = ('wvz036', 7.758088338403259e-05) + +[fips5401900] +centroid = (0.68515200130991538, -1.4013941809041364) +description = Anmoore town, WV +station = ('kckb', 0.0012930779273077632) +zone = ('wvz031', 0.0012529824808299938) + +[fips5401992280] +centroid = (0.66350297217476273, -1.413411505842403) +description = New Haven district, WV +station = ('kbkw', 0.0041969577644455731) +zone = ('wvz036', 0.0013739916916801313) + +[fips5401992472] +centroid = (0.66220020606119656, -1.4157697772744053) +description = Plateau district, WV +station = ('kbkw', 0.0024657847507466532) +zone = ('wvz036', 0.0016081089992797369) + +[fips5401993396] +centroid = (0.66463656352393297, -1.4179951418838683) +description = Valley district, WV +station = ('kbkw', 0.0052112991754134346) +zone = ('wvz036', 0.0024306607370491941) + +[fips5401996] +centroid = (0.66558905950991643, -1.4155238429295069) +description = Ansted town, WV +station = ('kbkw', 0.0058573867322535434) +zone = ('wvz036', 0.0018866504386656358) + +[fips54021] +centroid = (0.67920997551162299, -1.4110883853415361) +description = Gilmer County, WV +station = ('kw22', 0.008044022964387108) +zone = ('wvz029', 0.00017766464859224224) + +[fips5402188] +centroid = (0.67486162730661936, -1.4341691080620997) +description = Apple Grove CDP, WV +station = ('k3i2', 0.0044376775112763833) +zone = ('wvz007', 0.0026746058347941904) + +[fips5402190408] +centroid = (0.67769361600419786, -1.4122522057933509) +description = Center district, WV +station = ('kw22', 0.0093106382799277715) +zone = ('wvz029', 0.0018434603516651327) + +[fips5402190534] +centroid = (0.67906492119748985, -1.4102628620586353) +description = City district, WV +station = ('kw22', 0.0074443096640608346) +zone = ('wvz029', 0.00080065086642461725) + +[fips5402190758] +centroid = (0.68068826938806237, -1.4113931023756419) +description = De Kalb-Troy district, WV +station = ('kpkb', 0.0097977115301513141) +zone = ('wvz029', 0.0013411334479320075) + +[fips5402191236] +centroid = (0.67956907700522085, -1.4092698220741282) +description = Glenville district, WV +station = ('kw22', 0.0065878634731652485) +zone = ('wvz029', 0.0015342938952874309) + +[fips54023] +centroid = (0.68252824784539234, -1.3822146181276307) +description = Grant County, WV +station = ('kw99', 0.0022984560403411214) +zone = ('wvz502', 0.0010082630143161153) + +[fips5402391296] +centroid = (0.68299939947696819, -1.3807314722358708) +description = Grant district, WV +station = ('kw99', 0.0026308131468250947) +zone = ('wvz502', 0.0015142111776689714) + +[fips5402392208] +centroid = (0.67934255072160465, -1.3811360744630681) +description = Milroy district, WV +station = ('kw99', 0.0010449697236648984) +zone = ('wvz502', 0.0023268621504494305) + +[fips5402393216] +centroid = (0.68364915065090059, -1.3831254880109538) +description = Union district, WV +station = ('kw99', 0.0036084098174137737) +zone = ('wvz501', 0.001054689442604082) + +[fips54025] +centroid = (0.66190596100260291, -1.4041276806720251) +description = Greenbrier County, WV +station = ('klwb', 0.0012253400527448678) +zone = ('wvz045', 0.00039367124732853407) + +[fips5402590449] +centroid = (0.66070667546038753, -1.404147856678178) +description = Central district, WV +station = ('klwb', 0.00073825281165134694) +zone = ('wvz045', 0.0015917498068014028) + +[fips5402590972] +centroid = (0.66224418835834686, -1.4017585881986603) +description = Eastern district, WV +station = ('klwb', 0.0017852681762521633) +zone = ('wvz045', 0.0019008262146730656) + +[fips5402593601] +centroid = (0.66292430826126403, -1.4067316246495378) +description = Western district, WV +station = ('klwb', 0.0034163331860229788) +zone = ('wvz045', 0.002115847336441175) + +[fips54027] +centroid = (0.68612627900496359, -1.3720380395915646) +description = Hampshire County, WV +station = ('kcbe', 0.005658129136632893) +zone = ('wvz050', 9.1572027001277567e-05) + +[fips5402790204] +centroid = (0.68713502695273876, -1.3692010592523254) +description = Bloomery district, WV +station = ('kokv', 0.0055776233406357265) +zone = ('wvz050', 0.0024074695876090142) + +[fips5402790360] +centroid = (0.68427256480642051, -1.3702953283334485) +description = Capon district, WV +station = ('kokv', 0.0049958786465964088) +zone = ('wvz050', 0.0023805220965274149) + +[fips5402791248] +centroid = (0.6874237393176037, -1.371261193541502) +description = Gore district, WV +station = ('kcbe', 0.0047672719361871842) +zone = ('wvz050', 0.0013652296192223988) + +[fips5402792184] +centroid = (0.68539345015863629, -1.3765329256405658) +description = Mill Creek district, WV +station = ('kw99', 0.0061495450874597037) +zone = ('wvz504', 0.0026939896760922216) + +[fips5402792676] +centroid = (0.68581211973960465, -1.3748507773074936) +description = Romney district, WV +station = ('kcbe', 0.0056073674699156743) +zone = ('wvz504', 0.0027382276987267043) + +[fips5402792820] +centroid = (0.68457960312843136, -1.3731381380723893) +description = Sherman district, WV +station = ('kcbe', 0.0069346308471889325) +zone = ('wvz050', 0.0018283379715737715) + +[fips5402792988] +centroid = (0.68854296660703007, -1.3729454362696765) +description = Springfield district, WV +station = ('kcbe', 0.0031559508130940511) +zone = ('wvz050', 0.0024249502362606412) + +[fips54029] +centroid = (0.70715384875335863, -1.4062127731695051) +description = Hancock County, WV +station = ('kpit', 0.0045071540262215685) +zone = ('wvz001', 9.1729932582295949e-05) + +[fips5402990312] +centroid = (0.70544358316603684, -1.405859501075609) +description = Butler district, WV +station = ('kpit', 0.004350940042928156) +zone = ('wvz001', 0.0018149122115613007) + +[fips5402990540] +centroid = (0.70631294911974773, -1.406176592494111) +description = Clay district, WV +station = ('kpit', 0.0044502124555583127) +zone = ('wvz001', 0.00092050813375503635) + +[fips5402991308] +centroid = (0.70804962153865225, -1.4064321261498955) +description = Grant district, WV +station = ('kbvi', 0.0042233879538848907) +zone = ('wvz001', 0.00082764874897069335) + +[fips54031] +centroid = (0.68086721799626926, -1.3760811297103945) +description = Hardy County, WV +station = ('kw99', 0.0039586484030563725) +zone = ('wvz055', 0.00020186532651002601) + +[fips5403190372] +centroid = (0.68209835579733347, -1.3731088165409555) +description = Capon district, WV +station = ('kokv', 0.0071873780285713366) +zone = ('wvz055', 0.0028143228706210676) + +[fips5403191968] +centroid = (0.6794295902914016, -1.3760240923504394) +description = Lost River district, WV +station = ('kw99', 0.0040898814581163713) +zone = ('wvz055', 0.0014000673148819402) + +[fips5403192232] +centroid = (0.68159254192681307, -1.3767195886040666) +description = Moorefield district, WV +station = ('kw99', 0.0036376598689150216) +zone = ('wvz055', 0.00083967112476365335) + +[fips5403192382] +centroid = (0.68342239747448141, -1.3775795472331094) +description = Old Fields district, WV +station = ('kw99', 0.0041036007473641096) +zone = ('wvz055', 0.0027873001842081335) + +[fips5403192928] +centroid = (0.67976965024286018, -1.3790691508431014) +description = South Fork district, WV +station = ('kw99', 0.0017225920006205533) +zone = ('wvz502', 0.0027129441551047716) + +[fips5403292] +centroid = (0.65312320240717958, -1.4139433251187785) +description = Athens town, WV +station = ('kblf', 0.0033474681899383608) +zone = ('wvz042', 0.0013915517609360453) + +[fips54033] +centroid = (0.68555135009606416, -1.403008872261619) +description = Harrison County, WV +station = ('kckb', 0.0023224945506904967) +zone = ('wvz031', 0.00011745699268692373) + +[fips5403364] +centroid = (0.6823565598068736, -1.4112076087827399) +description = Auburn town, WV +station = ('kckb', 0.0093537106070694324) +zone = ('wvz029', 0.0030028790812323429) + +[fips5403390975] +centroid = (0.68616863814590945, -1.4007387050502575) +description = Eastern district, WV +station = ('kckb', 0.0005939649449984817) +zone = ('wvz031', 0.001752448168294654) + +[fips5403392352] +centroid = (0.68766754436081468, -1.4026925662412799) +description = Northern district, WV +station = ('kckb', 0.0026954068093913396) +zone = ('wvz031', 0.0020469562522921116) + +[fips5403392368] +centroid = (0.68656137213419333, -1.4033771192804971) +description = North Urban district, WV +station = ('kckb', 0.0026578310833495758) +zone = ('wvz031', 0.0010074397453570269) + +[fips5403392923] +centroid = (0.68390002427758223, -1.4015419753851954) +description = Southern district, WV +station = ('kckb', 0.0023242059515075639) +zone = ('wvz031', 0.0020184533202952516) + +[fips5403392932] +centroid = (0.68515580612768467, -1.4032677045896897) +description = South Urban district, WV +station = ('kckb', 0.0026074597225435908) +zone = ('wvz031', 0.00055317334784690494) + +[fips5403392952] +centroid = (0.68501406793913022, -1.4044588918041758) +description = Southwest district, WV +station = ('kckb', 0.0035335668680863703) +zone = ('wvz031', 0.0013587899909251978) + +[fips5403460] +centroid = (0.68635776202365562, -1.3884895305741558) +description = Aurora CDP, WV +station = ('k2g4', 0.0053017373242863182) +zone = ('wvz023', 0.0029413062952491457) + +[fips54035] +centroid = (0.6777852457899276, -1.4255450871621453) +description = Jackson County, WV +station = ('k3i2', 0.0058842075329082425) +zone = ('wvz008', 3.9763647436205598e-05) + +[fips5403590976] +centroid = (0.6758498327290986, -1.4243246482293959) +description = Eastern district, WV +station = ('kcrw', 0.0062260847643160373) +zone = ('wvz008', 0.0021420301301764565) + +[fips5403592353] +centroid = (0.68025919764475196, -1.425143242555166) +description = Northern district, WV +station = ('k3i2', 0.006117102713887288) +zone = ('wvz008', 0.0024860993018895544) + +[fips5403593605] +centroid = (0.67737837463470263, -1.4271988389882875) +description = Western district, WV +station = ('k3i2', 0.0047828959160850712) +zone = ('wvz008', 0.0013898642251063281) + +[fips54037] +centroid = (0.68604353294512654, -1.3589695552046992) +description = Jefferson County, WV +station = ('kmrb', 0.0022890516835567796) +zone = ('wvz053', 6.6691644763937593e-06) + +[fips5403790504] +centroid = (0.6856450219170187, -1.3586582233727285) +description = Charles Town district, WV +station = ('kmrb', 0.0027434042430943919) +zone = ('wvz053', 0.00046579765770772953) + +[fips5403791548] +centroid = (0.68601564258367975, -1.3577711772336947) +description = Harpers Ferry district, WV +station = ('kmrb', 0.0030321098475851057) +zone = ('wvz053', 0.00092212697954381802) + +[fips5403791740] +centroid = (0.68445207191998803, -1.3592322272571244) +description = Kabletown district, WV +station = ('kmrb', 0.0035074357487031808) +zone = ('wvz053', 0.0016086110227459618) + +[fips5403792160] +centroid = (0.68629342918742708, -1.3603711244072207) +description = Middleway district, WV +station = ('kmrb', 0.0014681104089716761) +zone = ('wvz053', 0.0011175342969901229) + +[fips5403792760] +centroid = (0.68786682605480753, -1.3579426558327032) +description = Shepherdstown district, WV +station = ('kmrb', 0.0024221220266864318) +zone = ('wvz053', 0.0019831916827699821) + +[fips54039] +centroid = (0.66895086035523033, -1.4228538767220327) +description = Kanawha County, WV +station = ('kcrw', 0.0012449310352332904) +zone = ('wvz015', 0.00016006940704277445) + +[fips5403990768] +centroid = (0.66674259997243712, -1.4214469493587074) +description = District 1, WV +station = ('kcrw', 0.0035969168056814438) +zone = ('wvz015', 0.0026289271368674831) + +[fips5403990804] +centroid = (0.66818862271100687, -1.426101428314511) +description = District 2, WV +station = ('kcrw', 0.0020769858030069708) +zone = ('wvz015', 0.0026467224787341875) + +[fips5403990840] +centroid = (0.67097765885569371, -1.4270059975592346) +description = District 3, WV +station = ('kcrw', 0.0025893623899177426) +zone = ('wvz014', 0.0023086615717483865) + +[fips5403990876] +centroid = (0.67127474880096827, -1.4218741535997181) +description = District 4, WV +station = ('kcrw', 0.0024518690417727872) +zone = ('wvz015', 0.0023296367728164254) + +[fips54041] +centroid = (0.68048369934643604, -1.404911822198361) +description = Lewis County, WV +station = ('kw22', 0.0031104277176201242) +zone = ('wvz030', 0.00015151014896754741) + +[fips5404190676] +centroid = (0.67914749272440167, -1.4053858187166175) +description = Courthouse-Collins Settlement district, WV +station = ('kw22', 0.0037969104595245583) +zone = ('wvz030', 0.0014838688795285962) + +[fips5404191176] +centroid = (0.68220885259227726, -1.4067952942606505) +description = Freemans Creek district, WV +station = ('kw22', 0.0048146969755086142) +zone = ('wvz030', 0.0021107307765298889) + +[fips5404191480] +centroid = (0.68111029000119461, -1.4030075283580949) +description = Hackers Creek-Skin Creek district, WV +station = ('kw22', 0.0016803347083967882) +zone = ('wvz030', 0.0016495800868231878) + +[fips5404204] +centroid = (0.67214214253262439, -1.4284050534876334) +description = Bancroft town, WV +station = ('kcrw', 0.0041526786483503681) +zone = ('wvz014', 0.00092163812381451844) + +[fips5404276] +centroid = (0.67031123978740481, -1.4363429330987512) +description = Barboursville village, WV +station = ('khts', 0.0035368478908749603) +zone = ('wvz006', 0.00078840609778265129) + +[fips54043] +centroid = (0.666220990872186, -1.4325234371103941) +description = Lincoln County, WV +station = ('kcrw', 0.007375963830225242) +zone = ('wvz013', 0.00011578026871645476) + +[fips5404390384] +centroid = (0.66835772766223267, -1.4328948955350964) +description = Carroll district, WV +station = ('kcrw', 0.0069460872091364496) +zone = ('wvz013', 0.0021091174633925372) + +[fips5404390960] +centroid = (0.66727494284758793, -1.4301660557963107) +description = Duval district, WV +station = ('kcrw', 0.0052465362061602776) +zone = ('wvz013', 0.0020158198573800769) + +[fips5404391572] +centroid = (0.66383753433907755, -1.4329503970053097) +description = Harts Creek district, WV +station = ('khts', 0.0084406652214261118) +zone = ('wvz013', 0.0024851119148013474) + +[fips5404391704] +centroid = (0.66560241127869424, -1.4311683460258533) +description = Jefferson district, WV +station = ('kcrw', 0.0067986243946659098) +zone = ('wvz013', 0.0011849640291837068) + +[fips5404391812] +centroid = (0.66567156122365823, -1.4345349290733178) +description = Laurel Hill district, WV +station = ('khts', 0.0062924528621248832) +zone = ('wvz013', 0.0017868542628067653) + +[fips5404392784] +centroid = (0.66744883000096411, -1.4350211428963382) +description = Sheridan district, WV +station = ('khts', 0.0050080943629260792) +zone = ('wvz013', 0.0023655353211033091) + +[fips5404393240] +centroid = (0.66665761989115746, -1.4317618626912865) +description = Union district, WV +station = ('kcrw', 0.0066440492866736717) +zone = ('wvz013', 0.00062531538930850881) + +[fips5404393516] +centroid = (0.66750811883565431, -1.4287872107806501) +description = Washington district, WV +station = ('kcrw', 0.0041834400521836906) +zone = ('wvz013', 0.0030914687314517533) + +[fips54045] +centroid = (0.66026837092533408, -1.4301376767426732) +description = Logan County, WV +station = ('ki16', 0.0066278692428222465) +zone = ('wvz025', 7.8547671669279987e-05) + +[fips5404590453] +centroid = (0.66065637507134511, -1.4300457677042631) +description = Central district, WV +station = ('ki16', 0.0068139136314382233) +zone = ('wvz025', 0.00037041489599579243) + +[fips5404590979] +centroid = (0.65960614064724998, -1.4275680459382543) +description = Eastern district, WV +station = ('ki16', 0.0046643987241596187) +zone = ('wvz025', 0.0020684211828568299) + +[fips5404593608] +centroid = (0.65994297173959238, -1.4318114474953358) +description = Western district, WV +station = ('ki16', 0.00755892787881602) +zone = ('wvz025', 0.0014401507819094359) + +[fips5404612] +centroid = (0.68943498693443184, -1.3992267263192548) +description = Barrackville town, WV +station = ('kckb', 0.0035769136867956023) +zone = ('wvz021', 0.0010017956792649969) + +[fips54047] +centroid = (0.65245055251346096, -1.4252045385184962) +description = McDowell County, WV +station = ('ki16', 0.0040381352791208887) +zone = ('wvz033', 9.6736770797792364e-05) + +[fips5404732] +centroid = (0.65161565681247691, -1.4265337638235225) +description = Bartley CDP, WV +station = ('kjfz', 0.0048826614368861635) +zone = ('wvz033', 0.0013551454891561105) + +[fips5404780] +centroid = (0.6726876451903353, -1.3925246096317188) +description = Bartow CDP, WV +station = ('kekn', 0.0060184252813647128) +zone = ('vaz503', 0.0026472667772317092) + +[fips5404790168] +centroid = (0.6512241445546697, -1.4253371660883551) +description = Big Creek district, WV +station = ('kjfz', 0.0047840196007447981) +zone = ('wvz033', 0.0011661100410443213) + +[fips5404790240] +centroid = (0.65396020995655857, -1.42385799954729) +description = Browns Creek district, WV +station = ('ki16', 0.002308399207121684) +zone = ('wvz033', 0.0018747893187856608) + +[fips5404792345] +centroid = (0.65210263858036843, -1.4217998025735832) +description = North Elkin district, WV +station = ('ki16', 0.0043541535190973792) +zone = ('wvz033', 0.0026562579866064315) + +[fips5404792712] +centroid = (0.65424333726781703, -1.4295713348536936) +description = Sandy River district, WV +station = ('ki16', 0.005232490355617775) +zone = ('vaz004', 0.0042086253359914514) + +[fips5404876] +centroid = (0.6915818640874325, -1.3653280340158098) +description = Bath (Berkeley Springs) town, WV +station = ('kmrb', 0.0051181172178404698) +zone = ('wvz051', 0.001194151574205105) + +[fips54049] +centroid = (0.68950696431278413, -1.4005115679014029) +description = Marion County, WV +station = ('kckb', 0.0036106160347649657) +zone = ('wvz021', 7.2623156902671369e-05) + +[fips5404924] +centroid = (0.6854093326548294, -1.3852010684640106) +description = Bayard town, WV +station = ('k2g4', 0.0054035204394726078) +zone = ('wvz501', 0.001403654766426763) + +[fips5404992154] +centroid = (0.68940400734020901, -1.399384102657907) +description = Middletown district, WV +station = ('kckb', 0.0035267772393162418) +zone = ('wvz021', 0.00088743352758517062) + +[fips5404992418] +centroid = (0.68867220823814024, -1.398042904394212) +description = Palatine district, WV +station = ('kckb', 0.0031623277633202919) +zone = ('wvz021', 0.0021103260769024731) + +[fips5404993594] +centroid = (0.69013992541931235, -1.4018440918787154) +description = West Augusta district, WV +station = ('kckb', 0.0044482290828186154) +zone = ('wvz021', 0.0011706636732278836) + +[fips5405068] +centroid = (0.66436022554346474, -1.4176904772096401) +description = Beards Fork CDP, WV +station = ('kbkw', 0.0048716728446764673) +zone = ('wvz036', 0.0021116321107338778) + +[fips54051] +centroid = (0.69559603410055693, -1.4079811582209183) +description = Marshall County, WV +station = ('khlg', 0.0054520436991649171) +zone = ('wvz004', 0.00014821514882658337) + +[fips5405190780] +centroid = (0.69717430043655026, -1.4068364316711202) +description = District 1, WV +station = ('khlg', 0.0039111316704904323) +zone = ('wvz004', 0.0016650306129010154) + +[fips5405190816] +centroid = (0.69624299274768608, -1.4092091893359138) +description = District 2, WV +station = ('khlg', 0.0049517673114467826) +zone = ('wvz004', 0.0011820527812765082) + +[fips5405190852] +centroid = (0.69465442896910601, -1.4083941380285252) +description = District 3, WV +station = ('khlg', 0.0064144958757086376) +zone = ('wvz004', 0.0011271048049637897) + +[fips5405260] +centroid = (0.65866696152345927, -1.4163746734865617) +description = Beaver CDP, WV +station = ('kbkw', 0.001175206824976583) +zone = ('wvz035', 0.0014454074419785669) + +[fips54053] +centroid = (0.67647719132872786, -1.4315918676221422) +description = Mason County, WV +station = ('k3i2', 0.0028895886754074351) +zone = ('wvz007', 0.00018618425991760653) + +[fips5405332] +centroid = (0.65926580144311109, -1.416536273522004) +description = Beckley city, WV +station = ('kbkw', 0.0007764731128352435) +zone = ('wvz035', 0.0012013275926334101) + +[fips5405390048] +centroid = (0.6759805055301954, -1.4317521935672306) +description = Arbuckle district, WV +station = ('k3i2', 0.0033242364714699121) +zone = ('wvz007', 0.00068653065519889164) + +[fips5405390612] +centroid = (0.6755245208098194, -1.4335445070826884) +description = Clendenin district, WV +station = ('k3i2', 0.0036964255679158404) +zone = ('wvz007', 0.001874865623693697) + +[fips5405390648] +centroid = (0.67722749092086776, -1.4297388690085924) +description = Cologne district, WV +station = ('k3i2', 0.0031367485091227921) +zone = ('wvz007', 0.0015811608128977856) + +[fips5405390660] +centroid = (0.67803969734157588, -1.4308235736854145) +description = Cooper district, WV +station = ('k3i2', 0.0019723797247166498) +zone = ('wvz007', 0.0015162704709134355) + +[fips5405391260] +centroid = (0.67985175053087388, -1.4304766545899954) +description = Graham district, WV +station = ('k3i2', 0.0019893440477513277) +zone = ('ohz085', 0.0024138862675319177) + +[fips5405391512] +centroid = (0.67328367512989129, -1.4333273532171555) +description = Hannan district, WV +station = ('k3i2', 0.0059115272294304163) +zone = ('wvz014', 0.003159012455285797) + +[fips5405391860] +centroid = (0.67796951765235314, -1.4327426330111523) +description = Lewis district, WV +station = ('k3i2', 0.0012207930277489643) +zone = ('wvz007', 0.0015689080280713195) + +[fips5405392652] +centroid = (0.67904334892793516, -1.4325249031869658) +description = Robinson district, WV +station = ('k3i2', 0.00031490595312431855) +zone = ('wvz007', 0.002482012539310437) + +[fips5405393264] +centroid = (0.67564730472269718, -1.4287401916106013) +description = Union district, WV +station = ('k3i2', 0.0047909410045629377) +zone = ('wvz007', 0.0024731012483735762) + +[fips5405393432] +centroid = (0.6803459579618687, -1.4318164914968741) +description = Waggener district, WV +station = ('k3i2', 0.001428127844903178) +zone = ('ohz085', 0.001775746992557532) + +[fips5405452] +centroid = (0.70203122013229269, -1.4077457831179943) +description = Beech Bottom village, WV +station = ('khlg', 0.0009962088845819853) +zone = ('wvz002', 0.0013904286051420137) + +[fips54055] +centroid = (0.65281331919848795, -1.41557470182391) +description = Mercer County, WV +station = ('kblf', 0.0022235644023163017) +zone = ('wvz042', 7.733757212798226e-05) + +[fips5405590900] +centroid = (0.6510651799663979, -1.417724004984571) +description = District I, WV +station = ('kblf', 0.00041495909664670085) +zone = ('wvz042', 0.0024231614810481029) + +[fips5405590912] +centroid = (0.65199968160779331, -1.4159671740128061) +description = District II, WV +station = ('kblf', 0.0013986820280546741) +zone = ('wvz042', 0.0008836073306899237) + +[fips5405590924] +centroid = (0.65330209865550903, -1.4153110349338112) +description = District III, WV +station = ('kblf', 0.0027450423728752503) +zone = ('wvz042', 0.00053144057188078003) + +[fips54057] +centroid = (0.68775791750948301, -1.378052304567597) +description = Mineral County, WV +station = ('kcbe', 0.004509612064467915) +zone = ('wvz504', 0.00098839875238031986) + +[fips5405788] +centroid = (0.68094174355532944, -1.3952307949968137) +description = Belington town, WV +station = ('kekn', 0.0026092401463266401) +zone = ('wvz040', 0.0022220369620043396) + +[fips5405790784] +centroid = (0.68677074183126263, -1.3801118628981204) +description = District 1, WV +station = ('k2g4', 0.0053884313774171756) +zone = ('wvz503', 0.00086198264784727243) + +[fips5405790820] +centroid = (0.68797346567210438, -1.3789107971200678) +description = District 2, WV +station = ('kcbe', 0.0047680133487828574) +zone = ('wvz503', 0.0015805242712980366) + +[fips5405790856] +centroid = (0.68976984580471956, -1.3750277711469383) +description = District 3, WV +station = ('kcbe', 0.0016746611776459811) +zone = ('wvz504', 0.002196848587224077) + +[fips5405836] +centroid = (0.66733290523204658, -1.4230826544803841) +description = Belle town, WV +station = ('kcrw', 0.0024506082902794419) +zone = ('wvz015', 0.0017691071560995461) + +[fips54059] +centroid = (0.6583582825919515, -1.4339449379729734) +description = Mingo County, WV +station = ('kk22', 0.0066142033115714838) +zone = ('wvz024', 0.00034898521570048547) + +[fips5405990141] +centroid = (0.65623646836700955, -1.4321966765678358) +description = Beech Ben Mate district, WV +station = ('ki16', 0.0069093160510234905) +zone = ('wvz024', 0.0024485354817464331) + +[fips5405991770] +centroid = (0.66105252990496266, -1.4348859496924788) +description = Kermit Harvey district, WV +station = ('kk22', 0.0062344241489501549) +zone = ('wvz024', 0.0028177927959935024) + +[fips5405991848] +centroid = (0.65873464539185156, -1.4336668546632534) +description = Lee district, WV +station = ('ki16', 0.0084407264111805557) +zone = ('wvz024', 0.00030776432855426049) + +[fips5405992064] +centroid = (0.6566689958622387, -1.4330923097267894) +description = Magnolia district, WV +station = ('ki16', 0.0076292236937437101) +zone = ('wvz024', 0.0018126672804699166) + +[fips5405993012] +centroid = (0.65620280096573858, -1.4291436768270773) +description = Stafford district, WV +station = ('ki16', 0.0044907410809041648) +zone = ('wvz024', 0.0041288312179825421) + +[fips5405993162] +centroid = (0.65873804878389308, -1.4359270211380011) +description = Tug Hardee district, WV +station = ('kk22', 0.0050273960637779161) +zone = ('wvz024', 0.0019259124734077354) + +[fips5405993696] +centroid = (0.65778577969071239, -1.435938034165581) +description = Williamson district, WV +station = ('kk22', 0.005136296255657714) +zone = ('wvz024', 0.0020256104469520224) + +[fips5406004] +centroid = (0.68727969729443661, -1.4183039953483012) +description = Belmont city, WV +station = ('kpkb', 0.0026446064096156507) +zone = ('wvz010', 0.0013852068788632159) + +[fips5406052] +centroid = (0.6672761296714792, -1.417042314285327) +description = Belva CDP, WV +station = ('kcrw', 0.0060802090843715875) +zone = ('wvz036', 0.0038533729023432486) + +[fips54061] +centroid = (0.691737599816588, -1.3972944373977867) +description = Monongalia County, WV +station = ('kmgw', 0.0019351047942842623) +zone = ('wvz022', 0.00017881585618299806) + +[fips5406190456] +centroid = (0.69178625959613349, -1.3955305552958437) +description = Central district, WV +station = ('kmgw', 0.00060400099741515594) +zone = ('wvz022', 0.0011942327071274423) + +[fips5406190983] +centroid = (0.69205792009420652, -1.3939093713135438) +description = Eastern district, WV +station = ('kmgw', 0.00069351201254561968) +zone = ('wvz022', 0.0024669336431992271) + +[fips5406193612] +centroid = (0.69145864384224176, -1.397945357942318) +description = Western district, WV +station = ('kmgw', 0.0024805185332634149) +zone = ('wvz022', 0.00070575986120299339) + +[fips54063] +centroid = (0.6553772951361303, -1.405825903487508) +description = Monroe County, WV +station = ('klwb', 0.0058862782128675274) +zone = ('wvz044', 0.00017903043409938309) + +[fips5406340] +centroid = (0.69830115481480792, -1.4090379899895857) +description = Benwood city, WV +station = ('khlg', 0.0029497920643293063) +zone = ('wvz003', 0.002143822370769953) + +[fips5406390457] +centroid = (0.65545848785293304, -1.4074638600839195) +description = Central district, WV +station = ('klwb', 0.0063819433922564714) +zone = ('wvz044', 0.0012658823501238482) + +[fips5406390984] +centroid = (0.65613110284006659, -1.4038747126502409) +description = Eastern district, WV +station = ('klwb', 0.0047928770100953005) +zone = ('wvz044', 0.0016848848518060723) + +[fips5406393613] +centroid = (0.65338871934628551, -1.4094958422122614) +description = Western district, WV +station = ('kpsk', 0.0053908847906558319) +zone = ('vaz011', 0.0022645202909403052) + +[fips5406436] +centroid = (0.67165332816901835, -1.4014588628062155) +description = Bergoo CDP, WV +station = ('kw22', 0.0090349481988760243) +zone = ('wvz038', 0.0017094720945037411) + +[fips54065] +centroid = (0.69036210583309121, -1.3658477930670536) +description = Morgan County, WV +station = ('kmrb', 0.0045745303016393605) +zone = ('wvz051', 9.7347487606615297e-05) + +[fips5406590786] +centroid = (0.6903236911362548, -1.3672118725972424) +description = District 1, WV +station = ('kcbe', 0.0058251283542093751) +zone = ('wvz051', 0.0010539133479948726) + +[fips5406590822] +centroid = (0.68976984580471956, -1.365424550723445) +description = District 2, WV +station = ('kmrb', 0.0039719906032959643) +zone = ('wvz051', 0.00076557206514782567) + +[fips5406590858] +centroid = (0.69121499587866331, -1.3637777976676033) +description = District 3, WV +station = ('kmrb', 0.004125341851028229) +zone = ('wvz051', 0.0017712397891222664) + +[fips54067] +centroid = (0.66831128445083698, -1.4101826816327987) +description = Nicholas County, WV +station = ('klwb', 0.0092077092737811034) +zone = ('wvz037', 2.4935783195016352e-05) + +[fips5406748] +centroid = (0.65034481277092993, -1.4252225852229619) +description = Berwind CDP, WV +station = ('kjfz', 0.0040329257735402125) +zone = ('wvz033', 0.0020345877041224362) + +[fips5406790132] +centroid = (0.66866857080201281, -1.40637889360771) +description = Beaver district, WV +station = ('klwb', 0.0081526928073176741) +zone = ('wvz037', 0.0030300371086382531) + +[fips5406791344] +centroid = (0.66849101845720738, -1.4129477369535632) +description = Grant district, WV +station = ('kcrw', 0.0088900160920428687) +zone = ('wvz037', 0.0021527186046223596) + +[fips5406791500] +centroid = (0.67080326555683456, -1.4095826548892556) +description = Hamilton district, WV +station = ('klwb', 0.01108849524840721) +zone = ('wvz037', 0.0025357854820761013) + +[fips5406791716] +centroid = (0.66729906329785038, -1.4147158776588811) +description = Jefferson district, WV +station = ('kbkw', 0.007608597573998138) +zone = ('wvz036', 0.0035862726193025335) + +[fips5406791752] +centroid = (0.66702296966347741, -1.4084824342353832) +description = Kentucky district, WV +station = ('klwb', 0.0073844851160590605) +zone = ('wvz037', 0.001876448142841687) + +[fips5406793072] +centroid = (0.66902934781169254, -1.4117485910376881) +description = Summersville district, WV +station = ('kcrw', 0.0097741212238984659) +zone = ('wvz037', 0.0013995512170214056) + +[fips5406793660] +centroid = (0.66592974777990577, -1.4105338942381775) +description = Wilderness district, WV +station = ('kbkw', 0.007436777895193869) +zone = ('wvz037', 0.0023997040294485078) + +[fips5406844] +centroid = (0.70170103874440037, -1.4060805993852514) +description = Bethany town, WV +station = ('khlg', 0.0013408440642558874) +zone = ('wvz002', 0.0012150816952464622) + +[fips54069] +centroid = (0.69985838993331484, -1.407097148954783) +description = Ohio County, WV +station = ('khlg', 0.0012450509598364913) +zone = ('wvz003', 4.3051014927480257e-05) + +[fips5406940] +centroid = (0.69890622555988935, -1.408272959818559) +description = Bethlehem village, WV +station = ('khlg', 0.0021941110037049052) +zone = ('wvz003', 0.0013017273043248196) + +[fips5406988] +centroid = (0.67796911622662515, -1.3940143703213437) +description = Beverly town, WV +station = ('kekn', 0.00073182221288279627) +zone = ('wvz047', 0.0012245758526554637) + +[fips5406990788] +centroid = (0.69977292115984469, -1.4068143183494972) +description = District 1, WV +station = ('khlg', 0.0014054363478636592) +zone = ('wvz003', 0.00019835756750202248) + +[fips5406990824] +centroid = (0.69936095364320394, -1.408633003789953) +description = District 2, WV +station = ('khlg', 0.0018535098925243252) +zone = ('wvz003', 0.0012853866666140824) + +[fips5406990862] +centroid = (0.69894331380649422, -1.4081472262992454) +description = District 3, WV +station = ('khlg', 0.0021374297922555543) +zone = ('wvz003', 0.001207997712326464) + +[fips54071] +centroid = (0.67521266537907298, -1.3846343949624731) +description = Pendleton County, WV +station = ('kw99', 0.0058480786698434251) +zone = ('wvz506', 0.00094832188309699258) + +[fips5407190462] +centroid = (0.67380580782891797, -1.385700337349836) +description = Central district, WV +station = ('kw99', 0.0074811301565936138) +zone = ('wvz506', 0.0015455727124554523) + +[fips5407190987] +centroid = (0.67392014434821612, -1.3830625339848344) +description = Eastern district, WV +station = ('kw99', 0.0066391619599170367) +zone = ('wvz506', 0.00084763139317583234) + +[fips5407193615] +centroid = (0.676626940578549, -1.386400319099641) +description = Western district, WV +station = ('kw99', 0.0055615127029851816) +zone = ('wvz505', 0.00048834261005770217) + +[fips5407204] +centroid = (0.67039220561140478, -1.4229229568538266) +description = Big Chimney CDP, WV +station = ('kcrw', 0.0012543393643459294) +zone = ('wvz015', 0.001294084727908296) + +[fips5407228] +centroid = (0.66331875267221463, -1.4317995792564222) +description = Big Creek CDP, WV +station = ('kcrw', 0.0086920161362527091) +zone = ('wvz013', 0.003003389797514861) + +[fips54073] +centroid = (0.68710354121303285, -1.4165296761774311) +description = Pleasants County, WV +station = ('kpkb', 0.0039451314264590323) +zone = ('wvz010', 4.8906065068035503e-05) + +[fips5407390892] +centroid = (0.68663460614960692, -1.4188225501223612) +description = District A, WV +station = ('kpkb', 0.0021299796307637153) +zone = ('wvz010', 0.001854215204813723) + +[fips5407390894] +centroid = (0.68661591367331809, -1.4169092329298625) +description = District B, WV +station = ('kpkb', 0.0036073032851813322) +zone = ('wvz010', 0.00061476335719756736) + +[fips5407390896] +centroid = (0.68753687155971799, -1.4167694495100702) +description = District C, WV +station = ('kpkb', 0.0038551514628269285) +zone = ('wvz010', 0.00043072038180930558) + +[fips5407390898] +centroid = (0.68777816332880615, -1.4155443680015105) +description = District D, WV +station = ('kpkb', 0.0048318957492753511) +zone = ('wvz010', 0.00098004200791077054) + +[fips54075] +centroid = (0.66902856241352915, -1.3964744468086148) +description = Pocahontas County, WV +station = ('khsp', 0.0071127700260180766) +zone = ('wvz046', 6.1404436309069911e-05) + +[fips5407516] +centroid = (0.65381957132543278, -1.4260376539836432) +description = Big Sandy CDP, WV +station = ('ki16', 0.0031665844293283876) +zone = ('wvz033', 0.0016139321124553855) + +[fips5407590996] +centroid = (0.66941082442630095, -1.3990605360678798) +description = Edray district, WV +station = ('khsp', 0.0083638525992228274) +zone = ('wvz046', 0.0021253882077521638) + +[fips5407591416] +centroid = (0.67200986402861573, -1.3927162816901728) +description = Greenbank district, WV +station = ('kekn', 0.0066718548727701448) +zone = ('vaz503', 0.0022896016619316614) + +[fips5407591656] +centroid = (0.6666715301652959, -1.3958267202166148) +description = Huntersville district, WV +station = ('khsp', 0.0047372953000828057) +zone = ('wvz046', 0.0023870775592037545) + +[fips5407591944] +centroid = (0.66606460937120737, -1.4008467583842483) +description = Little Levels district, WV +station = ('klwb', 0.0055011774512082369) +zone = ('wvz046', 0.0045737594093999759) + +[fips54077] +centroid = (0.68886452606841742, -1.3904840055768721) +description = Preston County, WV +station = ('kmgw', 0.0045928567357009648) +zone = ('wvz023', 1.1333290699581609e-05) + +[fips5407756] +centroid = (0.67187219245721841, -1.4093993953177961) +description = Birch River CDP, WV +station = ('kw22', 0.011013946475723384) +zone = ('wvz028', 0.0035956083280127065) + +[fips5407791096] +centroid = (0.68611200221168223, -1.3914634494465064) +description = Fifth district, WV +station = ('kmgw', 0.0064504376385790124) +zone = ('wvz023', 0.0028620025396237083) + +[fips5407791100] +centroid = (0.69129245359086677, -1.3918572829922189) +description = First district, WV +station = ('kmgw', 0.00238786406457732) +zone = ('wvz023', 0.0026486793837474801) + +[fips5407791134] +centroid = (0.68764948020305672, -1.3895863478359867) +description = Fourth district, WV +station = ('k2g4', 0.0048885677428829955) +zone = ('wvz023', 0.0013979606026676781) + +[fips5407792742] +centroid = (0.6913236426246, -1.3888662598931987) +description = Second district, WV +station = ('k2g4', 0.0032189697509569111) +zone = ('wvz023', 0.0027486303561591397) + +[fips5407793102] +centroid = (0.6886735172350793, -1.3926160648845234) +description = Third district, WV +station = ('kmgw', 0.0037520758641208804) +zone = ('wvz023', 0.0016678399713351069) + +[fips54079] +centroid = (0.67213524848207906, -1.4295312795473603) +description = Putnam County, WV +station = ('kcrw', 0.004880063040786556) +zone = ('wvz014', 5.1707742194419833e-05) + +[fips5407990292] +centroid = (0.67344958612858585, -1.4295477380022064) +description = Buffalo-Union district, WV +station = ('kcrw', 0.0056772944280539996) +zone = ('wvz014', 0.0013479880825805497) + +[fips5407990720] +centroid = (0.66987958495680155, -1.4306816260573498) +description = Curry district, WV +station = ('kcrw', 0.0050966952963932268) +zone = ('wvz014', 0.0023833978676997304) + +[fips5407992508] +centroid = (0.67236133843338231, -1.4274809714618724) +description = Pocatalico district, WV +station = ('kcrw', 0.0037600949991221586) +zone = ('wvz014', 0.0016640648396287865) + +[fips5407992736] +centroid = (0.67181599285530424, -1.4294419361429505) +description = Scott district, WV +station = ('kcrw', 0.0046623378846548146) +zone = ('wvz014', 0.00030608899704329584) + +[fips5407993090] +centroid = (0.6706597820390281, -1.4302246639525924) +description = Teays district, WV +station = ('kcrw', 0.004842532832066703) +zone = ('wvz014', 0.0015274126648989856) + +[fips5408092] +centroid = (0.69316871744334585, -1.4000108154857132) +description = Blacksville town, WV +station = ('kmgw', 0.0041640072034661536) +zone = ('paz031', 0.0024138120070190169) + +[fips54081] +centroid = (0.6590794351855831, -1.4183360744999529) +description = Raleigh County, WV +station = ('kbkw', 0.0021441209961969468) +zone = ('wvz035', 0.00027102845249475432) + +[fips5408190792] +centroid = (0.65768922807649211, -1.4183636157955493) +description = District 1, WV +station = ('kbkw', 0.0029060457834446047) +zone = ('wvz035', 0.0015651435969503121) + +[fips5408190828] +centroid = (0.66106335094632507, -1.4201757911578952) +description = District 2, WV +station = ('kbkw', 0.0037372055137055325) +zone = ('wvz035', 0.0024792326140602151) + +[fips5408190864] +centroid = (0.65887917610720925, -1.4148090607876453) +description = District 3, WV +station = ('kbkw', 0.0011349339495609866) +zone = ('wvz035', 0.0025911899168912069) + +[fips54083] +centroid = (0.67685765565237022, -1.3939557796183544) +description = Randolph County, WV +station = ('kekn', 0.0018008389636217175) +zone = ('wvz047', 0.00015596535697464837) + +[fips5408308] +centroid = (0.68516681915526478, -1.4247206634366734) +description = Blennerhassett CDP, WV +station = ('kpkb', 0.0027766549909960213) +zone = ('wvz009', 0.0017560377695674985) + +[fips5408390156] +centroid = (0.6779194267028209, -1.3931198890796967) +description = Beverly district, WV +station = ('kekn', 0.00083055985520074163) +zone = ('wvz047', 0.0013981101965572893) + +[fips5408390936] +centroid = (0.67801838687140903, -1.3897263756018741) +description = Dry Fork district, WV +station = ('kekn', 0.0031145511716368299) +zone = ('wvz505', 0.0027258746402320003) + +[fips5408391668] +centroid = (0.67413263818464642, -1.3956962743083206) +description = Huttonsville district, WV +station = ('kekn', 0.004784763325292346) +zone = ('wvz047', 0.0028967138307701688) + +[fips5408391824] +centroid = (0.67980312565791334, -1.3933396958456927) +description = Leadsville district, WV +station = ('kekn', 0.0011850520185145387) +zone = ('wvz047', 0.0031131075833643091) + +[fips5408392148] +centroid = (0.67602014195750815, -1.3983417571220309) +description = Middle Fork district, WV +station = ('kekn', 0.0045019924619970828) +zone = ('wvz039', 0.003268004395761259) + +[fips5408392220] +centroid = (0.67240998075963554, -1.3976435556080631) +description = Mingo district, WV +station = ('kekn', 0.0069695884520829541) +zone = ('wvz046', 0.003531386445451977) + +[fips5408392292] +centroid = (0.68160132093295056, -1.392612329879924) +description = New Interest district, WV +station = ('kekn', 0.0030662032592760724) +zone = ('wvz041', 0.0032375770142520979) + +[fips5408392640] +centroid = (0.67889524028761095, -1.3964300281791515) +description = Roaring Creek district, WV +station = ('kekn', 0.0021821209781394341) +zone = ('wvz047', 0.0028150795210874521) + +[fips5408393420] +centroid = (0.67650824073612081, -1.3939404556275219) +description = Valley Bend district, WV +station = ('kekn', 0.0021462952460679216) +zone = ('wvz047', 0.00026695981982277308) + +[fips54085] +centroid = (0.68376959582258079, -1.414874144115452) +description = Ritchie County, WV +station = ('kpkb', 0.0058585043954266832) +zone = ('wvz019', 5.0667541746723553e-05) + +[fips5408524] +centroid = (0.65036292928856554, -1.4173969128294546) +description = Bluefield city, WV +station = ('kblf', 0.00066228486421841793) +zone = ('vaz010', 0.0025160746627186045) + +[fips5408590552] +centroid = (0.68579084417602287, -1.4133782224135678) +description = Clay district, WV +station = ('kpkb', 0.0063775761819628357) +zone = ('wvz019', 0.0022890296452017177) + +[fips5408591380] +centroid = (0.68437487600717239, -1.4169317127706282) +description = Grant district, WV +station = ('kpkb', 0.004170941780933109) +zone = ('wvz019', 0.0017418457891311167) + +[fips5408592244] +centroid = (0.68219152147280504, -1.4153772352723393) +description = Murphy district, WV +station = ('kpkb', 0.0064466435611087048) +zone = ('wvz019', 0.0016573243744905336) + +[fips5408593336] +centroid = (0.68330975392455773, -1.4125773082731201) +description = Union district, WV +station = ('kpkb', 0.0076594282554672648) +zone = ('wvz019', 0.0017999216377282145) + +[fips54087] +centroid = (0.67619348805881618, -1.4199039212203117) +description = Roane County, WV +station = ('kcrw', 0.0073740611489477685) +zone = ('wvz016', 0.00051370949932897953) + +[fips5408764] +centroid = (0.65126528196513911, -1.4181793264798312) +description = Bluewell CDP, WV +station = ('kblf', 0.00081484995391334141) +zone = ('wvz042', 0.0025524990340163559) + +[fips5408790793] +centroid = (0.67712542406621123, -1.4216023709285974) +description = District I, WV +station = ('kcrw', 0.0077684614370151523) +zone = ('wvz016', 0.0020136441638163136) + +[fips5408790829] +centroid = (0.67679079208872628, -1.4191251553080719) +description = District II, WV +station = ('kcrw', 0.0081868966304510776) +zone = ('wvz016', 0.0012216218628464033) + +[fips5408790865] +centroid = (0.67397479060709597, -1.4188293569064441) +description = District III, WV +station = ('kcrw', 0.0060431358483263847) +zone = ('wvz016', 0.0018708695855293581) + +[fips5408836] +centroid = (0.68711589814413698, -1.4222402887702015) +description = Boaz CDP, WV +station = ('kpkb', 0.00080757147252792931) +zone = ('ohz076', 0.0015118882115638217) + +[fips54089] +centroid = (0.65722123549086231, -1.4112089177796787) +description = Summers County, WV +station = ('kbkw', 0.0043855191940957126) +zone = ('wvz043', 3.1624484129875058e-05) + +[fips5408932] +centroid = (0.68633667844629165, -1.3570223262648342) +description = Bolivar town, WV +station = ('kmrb', 0.0033947528191464668) +zone = ('wvz053', 0.0015285227401271055) + +[fips5408956] +centroid = (0.65906365740914508, -1.4209838262416907) +description = Bolt CDP, WV +station = ('ki16', 0.003437224870654316) +zone = ('wvz035', 0.0023211699181852042) + +[fips5408990216] +centroid = (0.65609558538978852, -1.4127428702059641) +description = Bluestone River district, WV +station = ('kbkw', 0.004349035734159977) +zone = ('wvz043', 0.0016319881216116338) + +[fips5408991440] +centroid = (0.65621124835931821, -1.4104869972411767) +description = Greenbrier River district, WV +station = ('kbkw', 0.0054564844565241606) +zone = ('wvz043', 0.0011749360501386939) + +[fips5408992316] +centroid = (0.65905838651480397, -1.4100583967367644) +description = New River district, WV +station = ('klwb', 0.005688511048756127) +zone = ('wvz043', 0.0020660718105353498) + +[fips54091] +centroid = (0.68642179815391124, -1.3970597778798561) +description = Taylor County, WV +station = ('kckb', 0.0023646450393376484) +zone = ('wvz032', 0.00012108347460031497) + +[fips5409100] +centroid = (0.66581898918557414, -1.4185189326456844) +description = Boomer CDP, WV +station = ('kcrw', 0.0058569583109596294) +zone = ('wvz036', 0.0033879975933276824) + +[fips5409190993] +centroid = (0.68683231704727288, -1.3958319038444931) +description = Eastern district, WV +station = ('kckb', 0.0033857996644811312) +zone = ('wvz032', 0.00099883907414105989) + +[fips5409193175] +centroid = (0.68572937367976761, -1.3969009529179246) +description = Tygart district, WV +station = ('kckb', 0.0024401585213477089) +zone = ('wvz032', 0.00082354547895751359) + +[fips5409193621] +centroid = (0.68630081193016301, -1.3985078950135283) +description = Western district, WV +station = ('kckb', 0.0012504487199067207) +zone = ('wvz032', 0.0011397536443603811) + +[fips54093] +centroid = (0.68261877807369331, -1.3885833943813279) +description = Tucker County, WV +station = ('kekn', 0.005593757741774774) +zone = ('wvz041', 8.0218344362837382e-05) + +[fips5409364] +centroid = (0.67909237522662369, -1.3911827132363233) +description = Bowden CDP, WV +station = ('kekn', 0.0019688360148804162) +zone = ('wvz047', 0.0032637977866031478) + +[fips5409390192] +centroid = (0.68169085632357784, -1.3907748123368393) +description = Black Fork district, WV +station = ('kekn', 0.0037782617935380623) +zone = ('wvz041', 0.0018993312531377785) + +[fips5409390624] +centroid = (0.68352369638426724, -1.3922794955915687) +description = Clover district, WV +station = ('kekn', 0.0049955141494001576) +zone = ('wvz041', 0.0029285839129671622) + +[fips5409390744] +centroid = (0.68344349850513808, -1.3857006515091015) +description = Davis district, WV +station = ('kw99', 0.004678794035709366) +zone = ('wvz501', 0.0019179806965589909) + +[fips5409390948] +centroid = (0.68129267690802797, -1.386846774322301) +description = Dry Fork district, WV +station = ('kw99', 0.0045279716218243008) +zone = ('wvz041', 0.0019694378142169722) + +[fips5409391056] +centroid = (0.68345627431526268, -1.3877530888962766) +description = Fairfax district, WV +station = ('kw99', 0.0059832200238290299) +zone = ('wvz041', 0.0010674490851954534) + +[fips5409391896] +centroid = (0.68464208591565268, -1.3910830898426194) +description = Licking district, WV +station = ('kekn', 0.0063212158949218908) +zone = ('wvz041', 0.0027240864752861816) + +[fips5409392688] +centroid = (0.68385642595286744, -1.3900037084200159) +description = St. George district, WV +station = ('kekn', 0.0059321522683198425) +zone = ('wvz041', 0.0015800804868413834) + +[fips54095] +centroid = (0.68881131097952419, -1.4116134501937061) +description = Tyler County, WV +station = ('kckb', 0.0093990899665009186) +zone = ('wvz011', 7.3817329564667943e-05) + +[fips5409590469] +centroid = (0.68923987657735142, -1.4130722836489855) +description = Central district, WV +station = ('kpkb', 0.0071160637710188579) +zone = ('wvz011', 0.0011415788070499636) + +[fips5409592334] +centroid = (0.6901638713366498, -1.411168303967985) +description = North district, WV +station = ('kckb', 0.0095860356417406447) +zone = ('wvz011', 0.0014265342716918122) + +[fips5409592898] +centroid = (0.68802840863695713, -1.411147255297206) +description = South district, WV +station = ('kckb', 0.0088404338238679669) +zone = ('wvz011', 0.00088423301427344668) + +[fips5409593592] +centroid = (0.69032416237515293, -1.413532073187131) +description = West district, WV +station = ('kpkb', 0.0072932089746923891) +zone = ('wvz011', 0.0020750315369047687) + +[fips5409676] +centroid = (0.66091906457706273, -1.4174791178372235) +description = Bradley CDP, WV +station = ('kbkw', 0.0018061006565683738) +zone = ('wvz035', 0.0017442629026875624) + +[fips54097] +centroid = (0.67897735802891734, -1.4003009590205648) +description = Upshur County, WV +station = ('kw22', 0.0017673566609250563) +zone = ('wvz039', 8.730456949441433e-05) + +[fips5409700] +centroid = (0.65194018333359272, -1.4276932034989147) +description = Bradshaw town, WV +station = ('kjfz', 0.0051211744682868191) +zone = ('wvz033', 0.0020881972999784271) + +[fips5409791102] +centroid = (0.68060480774323195, -1.4013272998872) +description = First district, WV +station = ('kw22', 0.00032679210822081475) +zone = ('wvz039', 0.0018755577095710572) + +[fips5409792745] +centroid = (0.67949655857480051, -1.3992178774999471) +description = Second district, WV +station = ('kw22', 0.0017729429879803709) +zone = ('wvz039', 0.0010585306560378191) + +[fips5409793105] +centroid = (0.67792797881615574, -1.4014640987939713) +description = Third district, WV +station = ('kw22', 0.0027830977297328974) +zone = ('wvz039', 0.0013055904161904535) + +[fips5409796] +centroid = (0.65151971606349479, -1.4191364475883324) +description = Bramwell town, WV +station = ('kblf', 0.0016173907913906015) +zone = ('wvz042', 0.0030654261174702215) + +[fips5409844] +centroid = (0.69232083649272691, -1.3897649473783431) +description = Brandonville town, WV +station = ('k2g4', 0.0041550297442269728) +zone = ('wvz023', 0.0034942052735672667) + +[fips5409868] +centroid = (0.67402523062247865, -1.3830045541470832) +description = Brandywine CDP, WV +station = ('kw99', 0.0065265999508256137) +zone = ('wvz506', 0.00082390136888171384) + +[fips54099] +centroid = (0.66576511087156509, -1.4384950985993854) +description = Wayne County, WV +station = ('khts', 0.004252672326521937) +zone = ('wvz005', 0.00010071798362478945) + +[fips5409964] +centroid = (0.65626777957379034, -1.4248224161320646) +description = Brenton CDP, WV +station = ('ki16', 0.0010669163864345165) +zone = ('wvz034', 0.0012143868892836821) + +[fips5409990324] +centroid = (0.66695917787931702, -1.4407680583375502) +description = Butler district, WV +station = ('khts', 0.002665478646642537) +zone = ('wvz005', 0.0020607191284875578) + +[fips5409990492] +centroid = (0.66969880375287993, -1.4408718530681661) +description = Ceredo district, WV +station = ('khts', 0.00010937591384822469) +zone = ('kyz103', 0.0018147362060233945) + +[fips5409993036] +centroid = (0.66418571007155791, -1.4377316566779781) +description = Stonewall district, WV +station = ('khts', 0.0059396031728765107) +zone = ('wvz005', 0.001737085349256116) + +[fips5409993372] +centroid = (0.66800192484092102, -1.4383689462010512) +description = Union district, WV +station = ('khts', 0.0024859109295690064) +zone = ('wvz005', 0.0022357803857653998) + +[fips5409993624] +centroid = (0.66968813979115027, -1.4399009264052818) +description = Westmoreland district, WV +station = ('khts', 0.00068378664334067601) +zone = ('kyz103', 0.0025720376384841936) + +[fips54101] +centroid = (0.67182932717078947, -1.4037728901416795) +description = Webster County, WV +station = ('kw22', 0.0091249769921119099) +zone = ('wvz038', 0.0001180837458877652) + +[fips5410180] +centroid = (0.68607145821315851, -1.4003138919103222) +description = Bridgeport city, WV +station = ('kckb', 0.00026072328847304453) +zone = ('wvz031', 0.0020443060684004204) + +[fips5410190471] +centroid = (0.671355068853145, -1.4041888370090148) +description = Central district, WV +station = ('kw22', 0.0096662370031470133) +zone = ('wvz038', 0.00066909353487794364) + +[fips5410192360] +centroid = (0.67342605909026898, -1.4022951722238934) +description = Northern district, WV +station = ('kw22', 0.0073313974197858145) +zone = ('wvz038', 0.0018814794943103382) + +[fips5410192925] +centroid = (0.66950847559795001, -1.4049948824174632) +description = Southern district, WV +station = ('klwb', 0.0087198766996644719) +zone = ('wvz038', 0.0025835228039134787) + +[fips54103] +centroid = (0.69109058880958107, -1.4073356656503606) +description = Wetzel County, WV +station = ('kckb', 0.0076477610937562123) +zone = ('wvz012', 0.00016492285741247358) + +[fips5410390794] +centroid = (0.6907158142593004, -1.4067382219941102) +description = District 1, WV +station = ('kckb', 0.0070551692380933697) +zone = ('wvz012', 0.00074301080534889196) + +[fips5410390830] +centroid = (0.6920725634066307, -1.4086279772417072) +description = District 2, WV +station = ('khlg', 0.0090020791160365359) +zone = ('wvz012', 0.0012478421476099441) + +[fips5410390867] +centroid = (0.69227055355697698, -1.411260509712368) +description = District 3, WV +station = ('khlg', 0.0092065836711368153) +zone = ('wvz011', 0.003488214671718926) + +[fips5410420] +centroid = (0.69125878618959591, -1.3942204937060041) +description = Brookhaven CDP, WV +station = ('kmgw', 0.00088854988428846947) +zone = ('wvz022', 0.0022386729524960969) + +[fips54105] +centroid = (0.68102806754013312, -1.4204008688182324) +description = Wirt County, WV +station = ('kpkb', 0.0055427896503414259) +zone = ('wvz017', 7.228089905193806e-05) + +[fips5410590473] +centroid = (0.68166322776151889, -1.4202211522651542) +description = Central district, WV +station = ('kpkb', 0.0049448171959715808) +zone = ('wvz017', 0.00059926734626589606) + +[fips5410592344] +centroid = (0.68192197282312694, -1.4190025110215343) +description = Northeast district, WV +station = ('kpkb', 0.0049883723746375229) +zone = ('wvz017', 0.001334567708845661) + +[fips5410592958] +centroid = (0.68035032128499873, -1.4209084454712972) +description = Southwest district, WV +station = ('kpkb', 0.0061672660186681766) +zone = ('wvz017', 0.00085026223019663808) + +[fips54107] +centroid = (0.6843729037851175, -1.4227213364186362) +description = Wood County, WV +station = ('kpkb', 0.0023025535314217978) +zone = ('wvz009', 1.6112407241610545e-05) + +[fips5410790588] +centroid = (0.68427675359662521, -1.4215312313082862) +description = Clay district, WV +station = ('kpkb', 0.0022196289220538699) +zone = ('wvz009', 0.00091366271811975407) + +[fips5410791560] +centroid = (0.68318278122147513, -1.4256192287487701) +description = Harris district, WV +station = ('kpkb', 0.0045619147630159623) +zone = ('wvz009', 0.002548619015627418) + +[fips5410791980] +centroid = (0.68473540867075688, -1.4247521491763793) +description = Lubeck district, WV +station = ('kpkb', 0.0030272847409620659) +zone = ('wvz009', 0.0016290134699758522) + +[fips5410792424] +centroid = (0.68563229846677165, -1.4229533430361039) +description = Parkersburg district, WV +station = ('kpkb', 0.001375070595233042) +zone = ('wvz009', 0.0012839691204466284) + +[fips5410792856] +centroid = (0.68315867822450516, -1.4226510694629511) +description = Slate district, WV +station = ('kpkb', 0.0034407982078727933) +zone = ('wvz009', 0.0012048494213109048) + +[fips5410793024] +centroid = (0.68221140077298525, -1.4239996853759671) +description = Steele district, WV +station = ('kpkb', 0.004679894905493971) +zone = ('wvz009', 0.0023741040498078793) + +[fips5410793180] +centroid = (0.68404090725480315, -1.4235168400384028) +description = Tygart district, WV +station = ('kpkb', 0.0028807668943448563) +zone = ('wvz009', 0.00070658487415398575) + +[fips5410793384] +centroid = (0.68591619372290102, -1.4207153422428564) +description = Union district, WV +station = ('kpkb', 0.00087992403722413309) +zone = ('wvz009', 0.0021879171427392446) + +[fips5410793444] +centroid = (0.68465739245319268, -1.4197124760546604) +description = Walker district, WV +station = ('kpkb', 0.0023345131680800289) +zone = ('wvz009', 0.0023371436584542172) + +[fips5410793672] +centroid = (0.68700711177186014, -1.422001667354869) +description = Williams district, WV +station = ('kpkb', 0.00061003375469286122) +zone = ('ohz076', 0.0016414709688898279) + +[fips5410852] +centroid = (0.69218703955226912, -1.3899907929835513) +description = Bruceton Mills town, WV +station = ('k2g4', 0.0042723639967551848) +zone = ('wvz023', 0.0033383605955621442) + +[fips5410876] +centroid = (0.6578319960093052, -1.4290552933537564) +description = Bruno CDP, WV +station = ('ki16', 0.0046928789875227573) +zone = ('wvz025', 0.0025746855406676879) + +[fips54109] +centroid = (0.65630867263816461, -1.4232965271269236) +description = Wyoming County, WV +station = ('ki16', 0.00015433670963694828) +zone = ('wvz034', 0.0001027211458183663) + +[fips5410948] +centroid = (0.65061235429196795, -1.4178917485789801) +description = Brush Fork CDP, WV +station = ('kblf', 0.00067295404218302218) +zone = ('wvz042', 0.0028545731968129947) + +[fips5410990795] +centroid = (0.65593143717363844, -1.4205843901890793) +description = District 1, WV +station = ('ki16', 0.0023131118771099845) +zone = ('wvz034', 0.002204769788744228) + +[fips5410990831] +centroid = (0.65556463877803939, -1.4243197438541977) +description = District 2, WV +station = ('ki16', 0.00095654805398290744) +zone = ('wvz034', 0.0011702786318557102) + +[fips5410990868] +centroid = (0.65790624231568506, -1.4249904564324465) +description = District 3, WV +station = ('ki16', 0.0020458534795532797) +zone = ('wvz034', 0.0020063276616549349) + +[fips5411188] +centroid = (0.68055262239859726, -1.4002174799224418) +description = Buckhannon city, WV +station = ('kw22', 0.00055848283623336588) +zone = ('wvz039', 0.001660544479602443) + +[fips5411212] +centroid = (0.65495363391350125, -1.4204257223067807) +description = Bud CDP, WV +station = ('ki16', 0.0027428571418667024) +zone = ('wvz034', 0.002704885219886973) + +[fips5411284] +centroid = (0.67390302266825397, -1.4308481130146975) +description = Buffalo town, WV +station = ('k3i2', 0.0055160449562751601) +zone = ('wvz014', 0.0020554256852323783) + +[fips5411620] +centroid = (0.68656039474981212, -1.3774523650905164) +description = Burlington CDP, WV +station = ('kcbe', 0.005321023005721499) +zone = ('wvz504', 0.0015882996305524187) + +[fips5411716] +centroid = (0.67825583891614283, -1.4076550958100607) +description = Burnsville town, WV +station = ('kw22', 0.0057739333586891385) +zone = ('wvz028', 0.0029590820962119894) + +[fips5412124] +centroid = (0.68429692960277833, -1.4163991255493822) +description = Cairo town, WV +station = ('kpkb', 0.0045679144247576207) +zone = ('wvz019', 0.0013285012347070177) + +[fips5412436] +centroid = (0.66966466511271094, -1.4066909759312587) +description = Camden-on-Gauley town, WV +station = ('klwb', 0.0091763476472215815) +zone = ('wvz037', 0.0030749150781340892) + +[fips5412484] +centroid = (0.69517218089171007, -1.4062090905247833) +description = Cameron city, WV +station = ('khlg', 0.0059654532932048848) +zone = ('wvz004', 0.0013597253687358305) + +[fips5413108] +centroid = (0.68594171043656516, -1.368912800673066) +description = Capon Bridge town, WV +station = ('kokv', 0.0046508342850735528) +zone = ('wvz050', 0.0024629403429383919) + +[fips5413468] +centroid = (0.68904528981904667, -1.4010152524702359) +description = Carolina CDP, WV +station = ('kckb', 0.0032194472450906126) +zone = ('wvz021', 0.00066073518273628885) + +[fips5413525] +centroid = (0.69163390980572703, -1.3751389660735829) +description = Carpendale town, WV +station = ('kcbe', 0.00044408725656988873) +zone = ('mdz501', 0.0019206408974495922) + +[fips5413684] +centroid = (0.67014244899544451, -1.3948506622857293) +description = Cass CDP, WV +station = ('khsp', 0.0078782906264129021) +zone = ('wvz046', 0.0016553483977093889) + +[fips5413756] +centroid = (0.69257237334452437, -1.3974072205740506) +description = Cassville CDP, WV +station = ('kmgw', 0.0020741566070192397) +zone = ('wvz022', 0.00092906061949846902) + +[fips5413924] +centroid = (0.66710653602806291, -1.4213602588547609) +description = Cedar Grove town, WV +station = ('kcrw', 0.0033568734098317499) +zone = ('wvz015', 0.0023435579915955821) + +[fips5414212] +centroid = (0.68242820557266803, -1.3995466277178528) +description = Century CDP, WV +station = ('kw22', 0.0020482618256908117) +zone = ('wvz040', 0.0025706447430503491) + +[fips5414308] +centroid = (0.67009843179170914, -1.4407705890649654) +description = Ceredo city, WV +station = ('khts', 0.00047377652478019627) +zone = ('kyz103', 0.0019754628800888198) + +[fips5414524] +centroid = (0.66271640464076642, -1.4315257196434916) +description = Chapmanville town, WV +station = ('kcrw', 0.0089998502324500768) +zone = ('wvz025', 0.0026981344107096391) + +[fips5414600] +centroid = (0.66931093923320928, -1.4247528298547876) +description = Charleston city, WV +station = ('kcrw', 0.00054233295123089784) +zone = ('wvz015', 0.0014424916810990636) + +[fips5414610] +centroid = (0.6852862520359787, -1.3592846918544392) +description = Charles Town city, WV +station = ('kmrb', 0.0027443761607064748) +zone = ('wvz053', 0.00080068368888496562) + +[fips5414630] +centroid = (0.66543297471491059, -1.4178201202664782) +description = Charlton Heights CDP, WV +station = ('kbkw', 0.0059269995974855529) +zone = ('wvz036', 0.0027174895511816737) + +[fips5414692] +centroid = (0.65809688462988036, -1.4359473193172014) +description = Chattaroy CDP, WV +station = ('kk22', 0.0050713169335377273) +zone = ('wvz024', 0.0019529327898225558) + +[fips5414716] +centroid = (0.65909868616723266, -1.4308042179840099) +description = Chauncey CDP, WV +station = ('ki16', 0.0064621094334695586) +zone = ('wvz025', 0.001331767792558951) + +[fips5414775] +centroid = (0.6922589296641587, -1.3936112865305956) +description = Cheat Lake CDP, WV +station = ('kmgw', 0.00095176017937769505) +zone = ('wvz022', 0.0027292892712040338) + +[fips5414812] +centroid = (0.66664151050216158, -1.4223173101500921) +description = Chelyan CDP, WV +station = ('kcrw', 0.0033252148512723642) +zone = ('wvz015', 0.0025038653139022762) + +[fips5415028] +centroid = (0.66711515795456777, -1.4230751844711855) +description = Chesapeake town, WV +station = ('kcrw', 0.002657307249737441) +zone = ('wvz015', 0.0019860951756782964) + +[fips5415076] +centroid = (0.70882924266222558, -1.4060848928952114) +description = Chester city, WV +station = ('kbvi', 0.0034406407419339921) +zone = ('wvz001', 0.0016059833240361157) + +[fips5415628] +centroid = (0.68539383413107169, -1.402574843783233) +description = Clarksburg city, WV +station = ('kckb', 0.0020261644258606475) +zone = ('wvz031', 0.0003382767477756767) + +[fips5415676] +centroid = (0.67127905976422075, -1.4151986531832752) +description = Clay town, WV +station = ('kcrw', 0.0072357085512987553) +zone = ('wvz027', 0.00013689425682264093) + +[fips5415916] +centroid = (0.70057969960657906, -1.4083460018477552) +description = Clearview village, WV +station = ('khlg', 0.00072838993304414506) +zone = ('wvz003', 0.0012377213964304638) + +[fips5416012] +centroid = (0.67168069493168958, -1.4198517358756773) +description = Clendenin town, WV +station = ('kcrw', 0.0039712876688048591) +zone = ('wvz015', 0.0035358002792022073) + +[fips5416516] +centroid = (0.65758056387726294, -1.4174533567774641) +description = Coal City CDP, WV +station = ('kbkw', 0.0025392069566928591) +zone = ('wvz035', 0.0017219260600067636) + +[fips5416612] +centroid = (0.66895086035523033, -1.4228538767220327) +description = Coal Fork CDP, WV +station = ('kcrw', 0.0012449310352332904) +zone = ('wvz015', 0.00016006940704277445) + +[fips5417380] +centroid = (0.66552360966296664, -1.4243663441452259) +description = Comfort CDP, WV +station = ('kcrw', 0.0041034196865570747) +zone = ('wvz026', 0.0023499630312206615) + +[fips5417836] +centroid = (0.65569107042905383, -1.4200604598009232) +description = Corinne CDP, WV +station = ('ki16', 0.0027634962791149831) +zone = ('wvz034', 0.0026663976138976962) + +[fips5418388] +centroid = (0.65433692182230896, -1.419296721173543) +description = Covel CDP, WV +station = ('kblf', 0.0037199906710193866) +zone = ('wvz042', 0.0032472967879259118) + +[fips5418412] +centroid = (0.67039101878751339, -1.405930064737267) +description = Cowen town, WV +station = ('klwb', 0.0097251211173081959) +zone = ('wvz038', 0.0023256803852998074) + +[fips5418508] +centroid = (0.65858049791231543, -1.4176027569614349) +description = Crab Orchard CDP, WV +station = ('kbkw', 0.0018627927291901554) +zone = ('wvz035', 0.00074628643838575215) + +[fips5418604] +centroid = (0.66883320771035337, -1.4075376526046939) +description = Craigsville CDP, WV +station = ('klwb', 0.0086244827049438578) +zone = ('wvz037', 0.0021626988400131825) + +[fips5419108] +centroid = (0.67089580291377526, -1.4272262232042514) +description = Cross Lanes CDP, WV +station = ('kcrw', 0.002698547465389218) +zone = ('wvz014', 0.0022034763584206124) + +[fips5419300] +centroid = (0.66164492955967458, -1.438972009817493) +description = Crum CDP, WV +station = ('kk22', 0.0038060206629390728) +zone = ('kyz119', 0.0020918009412304729) + +[fips5419324] +centroid = (0.65321080048233726, -1.4194989175673867) +description = Crumpler CDP, WV +station = ('kblf', 0.0028584031541076141) +zone = ('wvz042', 0.003069639301551348) + +[fips5419492] +centroid = (0.65063408364115538, -1.4246086132986953) +description = Cucumber CDP, WV +station = ('kjfz', 0.0045323344796414878) +zone = ('wvz033', 0.0017913507246151215) + +[fips5419516] +centroid = (0.67047121666664267, -1.4324021018207955) +description = Culloden CDP, WV +station = ('kcrw', 0.0064930377522705255) +zone = ('wvz014', 0.0027451885364883416) + +[fips5419948] +centroid = (0.67713308606162748, -1.3944612793296094) +description = Dailey CDP, WV +station = ('kekn', 0.0016374474036502985) +zone = ('wvz047', 0.00048052053167287561) + +[fips5420164] +centroid = (0.65839558027806666, -1.4160265326606665) +description = Daniels CDP, WV +station = ('kbkw', 0.0013562388586203762) +zone = ('wvz035', 0.0018108661572251317) + +[fips5420212] +centroid = (0.66462350846112817, -1.4282721117585089) +description = Danville town, WV +station = ('kcrw', 0.0059415893179911323) +zone = ('wvz026', 0.0019576972535241934) + +[fips5420428] +centroid = (0.68289193955492289, -1.3868830771707426) +description = Davis town, WV +station = ('kw99', 0.0051166958583983707) +zone = ('wvz041', 0.0014063572731874878) + +[fips5420500] +centroid = (0.65410681761372602, -1.4249193691720128) +description = Davy town, WV +station = ('ki16', 0.0024284426717178192) +zone = ('wvz033', 0.0017365554107539574) + +[fips5420764] +centroid = (0.66532605584493343, -1.4181399867584912) +description = Deep Water CDP, WV +station = ('kbkw', 0.0058998393302443809) +zone = ('wvz036', 0.0028567361037123212) + +[fips5420980] +centroid = (0.65808023418881634, -1.434414396635175) +description = Delbarton town, WV +station = ('kk22', 0.0062741441253442677) +zone = ('wvz024', 0.00079882729303633305) + +[fips5421316] +centroid = (0.68569385622948942, -1.4017758844115475) +description = Despard CDP, WV +station = ('kckb', 0.0013576214018661021) +zone = ('wvz031', 0.00086662827723960035) + +[fips5421628] +centroid = (0.66760386759841872, -1.4171076768658142) +description = Dixie CDP, WV +station = ('kcrw', 0.0059123801548386853) +zone = ('wvz027', 0.0040397388900230658) + +[fips5422564] +centroid = (0.6696745611295698, -1.4265637834866569) +description = Dunbar city, WV +station = ('kcrw', 0.0018628507960464927) +zone = ('wvz014', 0.0033881649720395638) + +[fips5422852] +centroid = (0.67277426588111167, -1.3932583285959648) +description = Durbin town, WV +station = ('kekn', 0.0058756923651333386) +zone = ('vaz503', 0.0031053516381085019) + +[fips5423092] +centroid = (0.66698321106311698, -1.4214683994552146) +description = East Bank town, WV +station = ('kcrw', 0.0033964309065225898) +zone = ('wvz015', 0.0024075557827402138) + +[fips5423140] +centroid = (0.67682863082690947, -1.39436334890528) +description = East Dailey CDP, WV +station = ('kekn', 0.0018978369690117152) +zone = ('wvz047', 0.00022435326553895898) + +[fips5423644] +centroid = (0.6594194776837492, -1.4183455690910836) +description = Eccles CDP, WV +station = ('kbkw', 0.0020729215828454877) +zone = ('wvz035', 0.00029404017162499934) + +[fips5424292] +centroid = (0.67260674917950536, -1.4298686342384783) +description = Eleanor town, WV +station = ('kcrw', 0.005355256804889786) +zone = ('wvz014', 0.00055253355267934512) + +[fips5424364] +centroid = (0.68176532952276048, -1.4206502938216348) +description = Elizabeth town, WV +station = ('kpkb', 0.004784309985882417) +zone = ('wvz017', 0.00074053674429112263) + +[fips5424484] +centroid = (0.68741935854118119, -1.3815250734467528) +description = Elk Garden town, WV +station = ('k2g4', 0.0041965199718351732) +zone = ('wvz503', 0.00053637559822122989) + +[fips5424580] +centroid = (0.67935447132039573, -1.3937214168063965) +description = Elkins city, WV +station = ('kekn', 0.00071473232006448559) +zone = ('wvz047', 0.002624527351972987) + +[fips5424748] +centroid = (0.67076448434085512, -1.421993272321167) +description = Elkview CDP, WV +station = ('kcrw', 0.0020638425470415108) +zone = ('wvz015', 0.0018221362085352037) + +[fips5424844] +centroid = (0.6853678810850945, -1.414674216649636) +description = Ellenboro town, WV +station = ('kpkb', 0.0054546442695279978) +zone = ('wvz019', 0.0015812899049211396) + +[fips5425516] +centroid = (0.68800266503049023, -1.4012094378028128) +description = Enterprise CDP, WV +station = ('kckb', 0.0022740957192036982) +zone = ('wvz021', 0.0016664279176158549) + +[fips5426428] +centroid = (0.65930095237424624, -1.4042685461959534) +description = Fairlea CDP, WV +station = ('klwb', 0.0017901606023873042) +zone = ('wvz045', 0.0029984445582968999) + +[fips5426452] +centroid = (0.68900148205482159, -1.3988654955239694) +description = Fairmont city, WV +station = ('kckb', 0.0032188551407225899) +zone = ('wvz021', 0.0013956083026091237) + +[fips5426524] +centroid = (0.69102302711423647, -1.4005702633241475) +description = Fairview town, WV +station = ('kckb', 0.0051247116396500175) +zone = ('wvz021', 0.0014441498158863913) + +[fips5426692] +centroid = (0.66309297688017677, -1.4024949949699543) +description = Falling Spring town, WV +station = ('klwb', 0.0022732317066217304) +zone = ('wvz045', 0.0015397750100880183) + +[fips5426716] +centroid = (0.69051770193590656, -1.3593932164273284) +description = Falling Waters CDP, WV +station = ('kmrb', 0.0031360511428910778) +zone = ('mdz003', 0.0012075374416358048) + +[fips5426812] +centroid = (0.66551055460016173, -1.4181639675824138) +description = Falls View CDP, WV +station = ('kbkw', 0.0060808251617422704) +zone = ('wvz036', 0.0029788713006877786) + +[fips5426932] +centroid = (0.68961850830527915, -1.400634299454403) +description = Farmington town, WV +station = ('kckb', 0.0037319981503904378) +zone = ('wvz021', 0.0001023995231804135) + +[fips5427028] +centroid = (0.66429632903954927, -1.4156066064426365) +description = Fayetteville town, WV +station = ('kbkw', 0.0045633311330495561) +zone = ('wvz036', 0.00068034331261689995) + +[fips5427196] +centroid = (0.66723450356881908, -1.4064051782662448) +description = Fenwick CDP, WV +station = ('klwb', 0.0068077460794130819) +zone = ('wvz037', 0.0031801778340136868) + +[fips5427868] +centroid = (0.67573764296478034, -1.4076521636569173) +description = Flatwoods town, WV +station = ('kw22', 0.0072050267181024809) +zone = ('wvz028', 0.00095720357282520145) + +[fips5427940] +centroid = (0.68533166550311564, -1.3985063591237865) +description = Flemington town, WV +station = ('kckb', 0.0013258325292988995) +zone = ('wvz032', 0.0016448400205858772) + +[fips5428204] +centroid = (0.70404457959751576, -1.4067304203723541) +description = Follansbee city, WV +station = ('khlg', 0.0030777638146461022) +zone = ('wvz002', 0.0011839294507392407) + +[fips5428444] +centroid = (0.68925279201381617, -1.3745985597772881) +description = Fort Ashby CDP, WV +station = ('kcbe', 0.0021644304133945176) +zone = ('wvz504', 0.0020932019439514854) + +[fips5428516] +centroid = (0.665362934652028, -1.4414911482466513) +description = Fort Gay town, WV +station = ('khts', 0.0042992642528709504) +zone = ('wvz005', 0.0022936717410928912) + +[fips5428948] +centroid = (0.6727575630801701, -1.3929111826077432) +description = Frank CDP, WV +station = ('kekn', 0.005912448533629145) +zone = ('vaz503', 0.0029006689107299397) + +[fips5429044] +centroid = (0.674487132009019, -1.3846280419639958) +description = Franklin town, WV +station = ('kw99', 0.0064971415932629723) +zone = ('wvz506', 0.00056587551349029073) + +[fips5429404] +centroid = (0.68964154665140542, -1.4147954646727721) +description = Friendly town, WV +station = ('kpkb', 0.0061061119481596463) +zone = ('wvz010', 0.0028234237133864574) + +[fips5429716] +centroid = (0.67674260354807869, -1.4347312437075819) +description = Gallipolis Ferry CDP, WV +station = ('k3i2', 0.0028339262632975939) +zone = ('ohz086', 0.0017684116735556103) + +[fips5429740] +centroid = (0.68476020979942775, -1.3984926059292808) +description = Galloway CDP, WV +station = ('kckb', 0.0016662970369423278) +zone = ('wvz032', 0.0020959895124296928) + +[fips5430196] +centroid = (0.65211106852065548, -1.4230665974512657) +description = Gary city, WV +station = ('ki16', 0.0041503130201127015) +zone = ('wvz033', 0.0016568248202432411) + +[fips5430220] +centroid = (0.67485639131886344, -1.4097158584177678) +description = Gassaway town, WV +station = ('kw22', 0.0089926270468378873) +zone = ('wvz028', 0.00091163209268198568) + +[fips5430364] +centroid = (0.66613662165614462, -1.4173721466073688) +description = Gauley Bridge town, WV +station = ('kcrw', 0.0063881975701616956) +zone = ('wvz036', 0.0029849541700222187) + +[fips5430724] +centroid = (0.65656705118062975, -1.4155710715390657) +description = Ghent CDP, WV +station = ('kbkw', 0.0031706712773754558) +zone = ('wvz035', 0.0033142747474878454) + +[fips5430772] +centroid = (0.65650483019279615, -1.4289087904163438) +description = Gilbert town, WV +station = ('ki16', 0.0043115237232543733) +zone = ('wvz025', 0.0038857133101156097) + +[fips5430777] +centroid = (0.65571438802786053, -1.429260386994158) +description = Gilbert Creek CDP, WV +station = ('ki16', 0.0046148676739564999) +zone = ('wvz024', 0.0043420712687505048) + +[fips5431324] +centroid = (0.66691934946578646, -1.4210717210228214) +description = Glasgow town, WV +station = ('kcrw', 0.0036474515122829816) +zone = ('wvz015', 0.0026237533222256307) + +[fips5431492] +centroid = (0.69719672791743847, -1.409447287152471) +description = Glen Dale city, WV +station = ('khlg', 0.0040935372309533809) +zone = ('wvz004', 0.0019392516623640726) + +[fips5431732] +centroid = (0.66593262757317151, -1.4175739241221919) +description = Glen Ferris CDP, WV +station = ('kbkw', 0.0063622100381038674) +zone = ('wvz036', 0.002924792749499108) + +[fips5431756] +centroid = (0.65799993158993209, -1.4231198299934515) +description = Glen Fork CDP, WV +station = ('ki16', 0.001773842786503613) +zone = ('wvz034', 0.0015949933934913427) + +[fips5431876] +centroid = (0.66195221222778067, -1.4163862450195022) +description = Glen Jean CDP, WV +station = ('kbkw', 0.0022734198209622266) +zone = ('wvz036', 0.0020321918705376316) + +[fips5432044] +centroid = (0.67963648162093304, -1.4108096039001152) +description = Glenville town, WV +station = ('kw22', 0.0077610075749437258) +zone = ('wvz029', 0.00042800047792832473) + +[fips5432068] +centroid = (0.65851476881268534, -1.4186034938479435) +description = Glen White CDP, WV +station = ('kbkw', 0.0025623719620332828) +zone = ('wvz035', 0.00084073633435798923) + +[fips5432716] +centroid = (0.68662781681881679, -1.3965427589955379) +description = Grafton city, WV +station = ('kckb', 0.0028016972260290454) +zone = ('wvz032', 0.00041504655942302811) + +[fips5432884] +centroid = (0.67929319281035827, -1.4153495019905251) +description = Grantsville town, WV +station = ('kpkb', 0.0086702680894428369) +zone = ('wvz018', 0.0013680227034196849) + +[fips5432908] +centroid = (0.6904687105438031, -1.3993670158845302) +description = Grant Town town, WV +station = ('kmgw', 0.0038403697784188335) +zone = ('wvz021', 0.0012528668781913034) + +[fips5432932] +centroid = (0.69199060274495716, -1.3962921820748291) +description = Granville town, WV +station = ('kmgw', 0.001142492453793934) +zone = ('wvz022', 0.0006784873596989698) + +[fips5433100] +centroid = (0.69140026257876253, -1.3663433094949873) +description = Great Cacapon CDP, WV +station = ('kmrb', 0.0055290679121003721) +zone = ('wvz051', 0.0010131199496321223) + +[fips5433124] +centroid = (0.67067231350305745, -1.3933762255869371) +description = Green Bank CDP, WV +station = ('kekn', 0.0079726489928738705) +zone = ('wvz046', 0.0028902481863555722) + +[fips5433436] +centroid = (0.6897819932963134, -1.3724457659581231) +description = Green Spring CDP, WV +station = ('kcbe', 0.0023502329585165672) +zone = ('mdz502', 0.0019678036879509785) + +[fips5433580] +centroid = (0.66315605307934378, -1.4280182536188062) +description = Greenview CDP, WV +station = ('kcrw', 0.0071347384213670323) +zone = ('wvz026', 0.0015600005952156662) + +[fips5434180] +centroid = (0.68704552646869654, -1.4016212482398209) +description = Gypsy CDP, WV +station = ('kckb', 0.0016631296435242965) +zone = ('wvz031', 0.0017263967306370787) + +[fips5434492] +centroid = (0.68209669773454418, -1.3900804680005185) +description = Hambleton town, WV +station = ('kekn', 0.0044286548550904851) +zone = ('wvz041', 0.0012307286899573416) + +[fips5434516] +centroid = (0.66805135256533743, -1.432966454034428) +description = Hamlin town, WV +station = ('kcrw', 0.0070639696428366153) +zone = ('wvz013', 0.0018217705771893177) + +[fips5434756] +centroid = (0.66655895642854224, -1.4202585023111471) +description = Handley town, WV +station = ('kcrw', 0.0043493631636213207) +zone = ('wvz015', 0.003295415600130898) + +[fips5435092] +centroid = (0.67930080244589697, -1.3879652685734416) +description = Harman town, WV +station = ('kw99', 0.0054200335467783174) +zone = ('wvz505', 0.0030341378711720838) + +[fips5435284] +centroid = (0.68635612141415869, -1.3568486660042609) +description = Harpers Ferry town, WV +station = ('kmrb', 0.0035115027432000455) +zone = ('wvz053', 0.0016641269749386291) + +[fips5435428] +centroid = (0.68437653406996168, -1.4145630566295764) +description = Harrisville town, WV +station = ('kpkb', 0.0058242862662492368) +zone = ('wvz019', 0.00061774617255015523) + +[fips5435500] +centroid = (0.68059108945531122, -1.4309618735753424) +description = Hartford City town, WV +station = ('k3i2', 0.0020532819870641532) +zone = ('ohz085', 0.0015918472397791687) + +[fips5435596] +centroid = (0.66404425113568377, -1.4334306243489958) +description = Harts CDP, WV +station = ('khts', 0.0080246114755265895) +zone = ('wvz013', 0.002382545265770052) + +[fips5436220] +centroid = (0.69035503724962077, -1.3612605441940371) +description = Hedgesville town, WV +station = ('kmrb', 0.0026994948537593421) +zone = ('wvz052', 0.0016380414674800965) + +[fips5436292] +centroid = (0.65689726747510713, -1.4191801157262172) +description = Helen CDP, WV +station = ('ki16', 0.0034639833629438841) +zone = ('wvz035', 0.002501586678358043) + +[fips5436340] +centroid = (0.6755435274453736, -1.3997414413689604) +description = Helvetia CDP, WV +station = ('kw22', 0.0052159340562080566) +zone = ('wvz039', 0.0033831422184377861) + +[fips5436436] +centroid = (0.67772155872552231, -1.4335408942511367) +description = Henderson town, WV +station = ('k3i2', 0.0015498305096394568) +zone = ('wvz007', 0.0018268850842232628) + +[fips5436460] +centroid = (0.68199141947406383, -1.3898081268240374) +description = Hendricks town, WV +station = ('kekn', 0.0044850412371011577) +zone = ('wvz041', 0.001107718003851786) + +[fips5436484] +centroid = (0.66149161983817939, -1.4308493871050512) +description = Henlawson CDP, WV +station = ('ki16', 0.0078407725191521147) +zone = ('wvz025', 0.0013642138902069314) + +[fips5436628] +centroid = (0.68645291737447434, -1.4020932899893153) +description = Hepzibah CDP, WV +station = ('kckb', 0.0016737397713457842) +zone = ('wvz031', 0.0010320830164159316) + +[fips5437036] +centroid = (0.66526064090456871, -1.4139042471968262) +description = Hico CDP, WV +station = ('kbkw', 0.0057151792384456711) +zone = ('wvz036', 0.0018122069247366473) + +[fips5437372] +centroid = (0.66558642406274582, -1.3999904474933424) +description = Hillsboro town, WV +station = ('klwb', 0.0053438903572313795) +zone = ('wvz046', 0.0044414555169243249) + +[fips5437444] +centroid = (0.66217406102900178, -1.4163383880914127) +description = Hilltop CDP, WV +station = ('kbkw', 0.0024829973496978117) +zone = ('wvz036', 0.0018215090727636081) + +[fips5437636] +centroid = (0.65754485444076716, -1.4116414278216156) +description = Hinton city, WV +station = ('kbkw', 0.0039199970474523933) +zone = ('wvz043', 0.00044999401582018072) + +[fips5437948] +centroid = (0.66007223082399502, -1.4325885727980787) +description = Holden CDP, WV +station = ('ki16', 0.0081603353484687169) +zone = ('wvz024', 0.0017813182783667483) + +[fips5438260] +centroid = (0.67245497534775189, -1.4286430116778503) +description = Hometown CDP, WV +station = ('kcrw', 0.0044922742350239388) +zone = ('wvz014', 0.00081493947262162455) + +[fips5438476] +centroid = (0.70362915632895617, -1.4064057716781904) +description = Hooverson Heights CDP, WV +station = ('khlg', 0.0027464431933786676) +zone = ('wvz002', 0.00073006025193109289) + +[fips5439340] +centroid = (0.69260919979174151, -1.4042498537196644) +description = Hundred town, WV +station = ('kckb', 0.0074397742942302197) +zone = ('wvz012', 0.0027959566733119934) + +[fips5439412] +centroid = (0.66647076494143898, -1.396528464748964) +description = Huntersville CDP, WV +station = ('khsp', 0.004817094215637017) +zone = ('wvz046', 0.0025474205536108901) + +[fips5439460] +centroid = (0.67039232778445246, -1.4387567409075519) +description = Huntington city, WV +station = ('khts', 0.0017543505082036124) +zone = ('wvz006', 0.0026445115241817787) + +[fips5439532] +centroid = (0.67071561512179945, -1.4314669544075771) +description = Hurricane city, WV +station = ('kcrw', 0.0058074932025598772) +zone = ('wvz014', 0.0020249247165862565) + +[fips5439628] +centroid = (0.67568334577175093, -1.3958553610696398) +description = Huttonsville town, WV +station = ('kekn', 0.0034236231547211935) +zone = ('wvz047', 0.0017358607939337832) + +[fips5439652] +centroid = (0.65380285107119873, -1.4280014286448171) +description = Iaeger town, WV +station = ('ki16', 0.0043429818427689424) +zone = ('wvz033', 0.0026930295047596902) + +[fips5439676] +centroid = (0.68928733207971316, -1.4007337483151816) +description = Idamay CDP, WV +station = ('kckb', 0.0034146776823641384) +zone = ('wvz021', 0.00033884022259681845) + +[fips5440204] +centroid = (0.68685378459707236, -1.3623200812230452) +description = Inwood CDP, WV +station = ('kmrb', 0.0012607010632070233) +zone = ('wvz052', 0.0019605853791660804) + +[fips5440444] +centroid = (0.65573222529281583, -1.4208571502445813) +description = Itmann CDP, WV +station = ('ki16', 0.0021385759156945334) +zone = ('wvz034', 0.0020515991473146131) + +[fips5440636] +centroid = (0.68993895075594514, -1.407443736437644) +description = Jacksonburg CDP, WV +station = ('kckb', 0.0069907037648591847) +zone = ('wvz012', 0.0013040887490486852) + +[fips5440828] +centroid = (0.68261193638302542, -1.4033845020232334) +description = Jane Lew town, WV +station = ('kw22', 0.0027217952576846622) +zone = ('wvz030', 0.0023784729505351154) + +[fips5441010] +centroid = (0.66981228506084467, -1.427445872890615) +description = Jefferson CDP, WV +station = ('kcrw', 0.0025605191285966869) +zone = ('wvz014', 0.0028356009932525468) + +[fips5442244] +centroid = (0.6802875417918044, -1.39541347860962) +description = Junior town, WV +station = ('kekn', 0.0021445044208690659) +zone = ('wvz040', 0.0027995066392110671) + +[fips5442292] +centroid = (0.6562677272139128, -1.4282672422898959) +description = Justice CDP, WV +station = ('ki16', 0.0037960613201997034) +zone = ('wvz025', 0.0042561234668588551) + +[fips5443180] +centroid = (0.67025427224061973, -1.441325272154542) +description = Kenova city, WV +station = ('khts', 0.00076573030602896395) +zone = ('kyz103', 0.0016321802339094641) + +[fips5443300] +centroid = (0.66047554150754584, -1.4383021524505775) +description = Kermit town, WV +station = ('kk22', 0.0035271256563024246) +zone = ('kyz119', 0.0016082610732863832) + +[fips5443492] +centroid = (0.68835195777369185, -1.3784976776861209) +description = Keyser city, WV +station = ('kcbe', 0.0042740217021317905) +zone = ('wvz504', 0.0013085394886620254) + +[fips5443516] +centroid = (0.65302907680061961, -1.4215037772791526) +description = Keystone city, WV +station = ('ki16', 0.0035795631577878618) +zone = ('wvz033', 0.0029489922001162986) + +[fips5443780] +centroid = (0.65321989364774014, -1.4225805232545852) +description = Kimball town, WV +station = ('ki16', 0.0031109267383647638) +zone = ('wvz033', 0.0021890483201261178) + +[fips5443828] +centroid = (0.66568210301234021, -1.4188945275007134) +description = Kimberly CDP, WV +station = ('kcrw', 0.0057295151762942701) +zone = ('wvz036', 0.0035481044212725332) + +[fips5443852] +centroid = (0.66394745517536813, -1.4185383407069663) +description = Kincaid CDP, WV +station = ('kbkw', 0.0047515833061853082) +zone = ('wvz036', 0.0026918040869205935) + +[fips5444044] +centroid = (0.68891559440233086, -1.3907177575235918) +description = Kingwood city, WV +station = ('kmgw', 0.0044277078207943937) +zone = ('wvz023', 0.00019630369918082998) + +[fips5444188] +centroid = (0.65908962790841463, -1.4285753627160429) +description = Kistler CDP, WV +station = ('ki16', 0.0049354143898410995) +zone = ('wvz025', 0.0016649525427872007) + +[fips5444548] +centroid = (0.65885627738742314, -1.4237834041750599) +description = Kopperston CDP, WV +station = ('ki16', 0.0026189573807949332) +zone = ('wvz034', 0.0024746434126614418) + +[fips5445292] +centroid = (0.65315056916985081, -1.4171503327127328) +description = Lashmeet CDP, WV +station = ('kblf', 0.0021432374043751671) +zone = ('wvz042', 0.0012207337281505799) + +[fips5445580] +centroid = (0.66885153366749939, -1.4389871941819852) +description = Lavalette CDP, WV +station = ('khts', 0.0015972684946892713) +zone = ('wvz005', 0.0030897967165638808) + +[fips5446300] +centroid = (0.67628150501299433, -1.4303753207736247) +description = Leon town, WV +station = ('k3i2', 0.0035010302778641293) +zone = ('wvz007', 0.0010510981993500377) + +[fips5446420] +centroid = (0.67171860348304291, -1.4361009955578399) +description = Lesage CDP, WV +station = ('khts', 0.0042141988121888315) +zone = ('wvz006', 0.0012853135576346242) + +[fips5446468] +centroid = (0.65854840130737136, -1.4190003817198469) +description = Lester town, WV +station = ('kbkw', 0.002827925346836744) +zone = ('wvz035', 0.0010148237234919029) + +[fips5446636] +centroid = (0.6598984658436664, -1.4038137133928836) +description = Lewisburg city, WV +station = ('klwb', 0.0010959084373542911) +zone = ('wvz045', 0.0024161176689595667) + +[fips5447788] +centroid = (0.6929913745380506, -1.4052673981268697) +description = Littleton CDP, WV +station = ('kafj', 0.0080902984227698271) +zone = ('wvz012', 0.0024079410133054993) + +[fips5448148] +centroid = (0.66064017841588651, -1.4309628160531385) +description = Logan city, WV +station = ('ki16', 0.0073723434378925971) +zone = ('wvz025', 0.0008097328167869577) + +[fips5448748] +centroid = (0.68351833822346364, -1.4023441636159968) +description = Lost Creek town, WV +station = ('kckb', 0.0029854542747646323) +zone = ('wvz031', 0.0021503997979116559) + +[fips5449156] +centroid = (0.68469699397392048, -1.4244055966001035) +description = Lubeck CDP, WV +station = ('kpkb', 0.0028376387463661733) +zone = ('wvz009', 0.0013591007676804112) + +[fips5449252] +centroid = (0.68720876711363554, -1.4023428720723503) +description = Lumberport town, WV +station = ('kckb', 0.0021986657726605244) +zone = ('wvz031', 0.0016384023173578583) + +[fips5449492] +centroid = (0.65920152096675999, -1.4174390276243052) +description = Mabscott town, WV +station = ('kbkw', 0.0014351861511733531) +zone = ('wvz035', 0.00048853769003807859) + +[fips5449564] +centroid = (0.65882093447007017, -1.4172473555658514) +description = MacArthur CDP, WV +station = ('kbkw', 0.0014932850537718115) +zone = ('wvz035', 0.00076156505778078836) + +[fips5449732] +centroid = (0.66023669319941036, -1.4305391722838019) +description = McConnell CDP, WV +station = ('ki16', 0.0068646948614665658) +zone = ('wvz025', 0.0003967365841036601) + +[fips5450260] +centroid = (0.69789637805468541, -1.4090652694857944) +description = McMechen city, WV +station = ('khlg', 0.003336068485511893) +zone = ('wvz004', 0.0023895478859672962) + +[fips5450524] +centroid = (0.66434268498448223, -1.4275857784834547) +description = Madison city, WV +station = ('kcrw', 0.0059180361304535835) +zone = ('wvz026', 0.0013500346065902376) + +[fips5450860] +centroid = (0.6583177211401352, -1.4278536341637584) +description = Mallory CDP, WV +station = ('ki16', 0.0040362486019030518) +zone = ('wvz025', 0.0026196586426508314) + +[fips5450932] +centroid = (0.65875520537044008, -1.4290821888775294) +description = Man town, WV +station = ('ki16', 0.0050964217302907492) +zone = ('wvz025', 0.0017079660384319731) + +[fips5451100] +centroid = (0.68990587676661996, -1.4022060731655792) +description = Mannington city, WV +station = ('kckb', 0.0043266120413234816) +zone = ('wvz021', 0.001347292330741587) + +[fips5451676] +centroid = (0.6671712004768493, -1.397833639416898) +description = Marlinton town, WV +station = ('khsp', 0.0059706265590158169) +zone = ('wvz046', 0.0021619848829868096) + +[fips5451724] +centroid = (0.66751351190304298, -1.4237593709912597) +description = Marmet city, WV +station = ('kcrw', 0.0021378529665424112) +zone = ('wvz015', 0.0017120042529385755) + +[fips5452060] +centroid = (0.68866798454135048, -1.3609765442181525) +description = Martinsburg city, WV +station = ('kmrb', 0.0010106203317926691) +zone = ('wvz052', 0.00067328267591863528) + +[fips5452180] +centroid = (0.68096942447726605, -1.4317439730664536) +description = Mason town, WV +station = ('k3i2', 0.0019930617156687864) +zone = ('ohz085', 0.0011498946515146645) + +[fips5452228] +centroid = (0.69029808715612806, -1.3927776998265506) +description = Masontown town, WV +station = ('kmgw', 0.0023291688392125488) +zone = ('wvz023', 0.0022824746679405952) + +[fips5452324] +centroid = (0.65663243121440951, -1.4339498074415866) +description = Matewan town, WV +station = ('ki16', 0.0083058939510906003) +zone = ('wvz024', 0.0018491446144516615) + +[fips5452372] +centroid = (0.65735269369012261, -1.4241636939657769) +description = Matheny CDP, WV +station = ('ki16', 0.0012310705799386385) +zone = ('wvz034', 0.0011634456555307342) + +[fips5452420] +centroid = (0.65307079016974223, -1.4179369351533144) +description = Matoaka town, WV +station = ('kblf', 0.0021429360973056395) +zone = ('wvz042', 0.0018212957426652573) + +[fips5452588] +centroid = (0.65216951959730485, -1.4199649553842542) +description = Maybeury CDP, WV +station = ('kblf', 0.0024813676760278474) +zone = ('wvz042', 0.0034866446431602517) + +[fips5452780] +centroid = (0.66080999895210557, -1.4112209430982252) +description = Meadow Bridge town, WV +station = ('kbkw', 0.0037375574931176139) +zone = ('wvz043', 0.0035906286858253264) + +[fips5453572] +centroid = (0.68931640926505133, -1.4121465435604352) +description = Middlebourne town, WV +station = ('kpkb', 0.0078079775378284049) +zone = ('wvz011', 0.00061801328061536086) + +[fips5453692] +centroid = (0.68597036874288297, -1.3610239822672217) +description = Middleway CDP, WV +station = ('kmrb', 0.0016896678958058825) +zone = ('wvz053', 0.0015971889074416973) + +[fips5454100] +centroid = (0.67599989613818501, -1.3957832964248251) +description = Mill Creek town, WV +station = ('kekn', 0.0031236415058730344) +zone = ('wvz047', 0.0015129354479931796) + +[fips5454484] +centroid = (0.67081857209437457, -1.4335728163231558) +description = Milton town, WV +station = ('khts', 0.0057647503768475921) +zone = ('wvz006', 0.0014455338981845111) + +[fips5454508] +centroid = (0.66281971067919188, -1.4157427595775844) +description = Minden CDP, WV +station = ('kbkw', 0.0030852638285161281) +zone = ('wvz036', 0.0010276536831873215) + +[fips5454580] +centroid = (0.68383979296509589, -1.4226858713282358) +description = Mineralwells CDP, WV +station = ('kpkb', 0.0027932061202005222) +zone = ('wvz009', 0.0005232184996691202) + +[fips5454892] +centroid = (0.66163157779089676, -1.4309360776089979) +description = Mitchell Heights town, WV +station = ('ki16', 0.0079853013627595622) +zone = ('wvz025', 0.0015199181886645556) + +[fips5455132] +centroid = (0.6599890658851375, -1.4309828349796589) +description = Monaville CDP, WV +station = ('ki16', 0.007018704128974612) +zone = ('wvz025', 0.00080120114551088348) + +[fips5455276] +centroid = (0.68867798527796442, -1.4001166347982617) +description = Monongah town, WV +station = ('kckb', 0.0027641446948700704) +zone = ('wvz021', 0.00095172416002313757) + +[fips5455372] +centroid = (0.65192861180065209, -1.4180919029375989) +description = Montcalm CDP, WV +station = ('kblf', 0.001158719443576002) +zone = ('wvz042', 0.0021398093105312699) + +[fips5455468] +centroid = (0.66625380306212345, -1.4193020618810541) +description = Montgomery city, WV +station = ('kcrw', 0.0051069693488994808) +zone = ('wvz015', 0.0040278205589656755) + +[fips5455540] +centroid = (0.68185221201292479, -1.3930227091469456) +description = Montrose town, WV +station = ('kekn', 0.0032463186858832449) +zone = ('wvz040', 0.0028006415247349642) + +[fips5455588] +centroid = (0.68185509180619064, -1.3781540572629882) +description = Moorefield town, WV +station = ('kw99', 0.0027431091465489701) +zone = ('wvz055', 0.0017609702245859617) + +[fips5455756] +centroid = (0.69180762242617799, -1.3953273466110341) +description = Morgantown city, WV +station = ('kmgw', 0.00045359166147793172) +zone = ('wvz022', 0.0013520246629679) + +[fips5456020] +centroid = (0.69677264781578885, -1.4092157517739012) +description = Moundsville city, WV +station = ('khlg', 0.0044418546135950561) +zone = ('wvz004', 0.0015048081937955469) + +[fips5456212] +centroid = (0.66573327606600874, -1.4187597008159969) +description = Mount Carbon CDP, WV +station = ('kcrw', 0.0057721108732013537) +zone = ('wvz036', 0.0034891385147416991) + +[fips5456342] +centroid = (0.66062340580177481, -1.4315717788824518) +description = Mount Gay-Shamrock CDP, WV +station = ('ki16', 0.0077550824331183033) +zone = ('wvz025', 0.0012552683348390765) + +[fips5456404] +centroid = (0.66133202693137705, -1.416549066785421) +description = Mount Hope city, WV +station = ('kbkw', 0.0017168247869153302) +zone = ('wvz035', 0.0024108278294014481) + +[fips5457148] +centroid = (0.65593833122418388, -1.4204566146345408) +description = Mullens city, WV +station = ('ki16', 0.0024125397241242011) +zone = ('wvz034', 0.0023022563572469884) + +[fips5457916] +centroid = (0.65944354577413422, -1.429962951831256) +description = Neibert CDP, WV +station = ('ki16', 0.0060462416967484306) +zone = ('wvz025', 0.00084467541988026979) + +[fips5458180] +centroid = (0.66702296966347741, -1.4084824342353832) +description = Nettie CDP, WV +station = ('klwb', 0.0073844851160590605) +zone = ('wvz037', 0.001876448142841687) + +[fips5458300] +centroid = (0.68746515598075353, -1.3937082570238364) +description = Newburg town, WV +station = ('kmgw', 0.0046363064666775072) +zone = ('wvz023', 0.0028679697487580405) + +[fips5458372] +centroid = (0.70732885291745606, -1.4070297792456559) +description = New Cumberland city, WV +station = ('kbvi', 0.0050745454614697857) +zone = ('wvz001', 0.00057853859372083451) + +[fips5458420] +centroid = (0.70891678837750549, -1.4067514166832555) +description = Newell CDP, WV +station = ('kbvi', 0.0037158468814916011) +zone = ('wvz001', 0.001724304639314749) + +[fips5458564] +centroid = (0.68046090534640502, -1.4306073972042623) +description = New Haven town, WV +station = ('k3i2', 0.0021836195398164254) +zone = ('ohz085', 0.0018117865248090676) + +[fips5458684] +centroid = (0.69194545107720795, -1.411319833453643) +description = New Martinsville city, WV +station = ('khlg', 0.0095303925337149216) +zone = ('wvz011', 0.0031602157357105642) + +[fips5458756] +centroid = (0.65579722135416008, -1.4222058883306448) +description = New Richmond CDP, WV +station = ('ki16', 0.0011030645092751621) +zone = ('wvz034', 0.0010626187818606021) + +[fips5459068] +centroid = (0.67054223411390634, -1.4281675665363145) +description = Nitro city, WV +station = ('kcrw', 0.0032507276276630124) +zone = ('wvz014', 0.0019127301077750862) + +[fips5459428] +centroid = (0.6530948059002496, -1.4211766153108663) +description = Northfork town, WV +station = ('ki16', 0.0036432947006489998) +zone = ('wvz033', 0.0032169325266729878) + +[fips5459458] +centroid = (0.68623510028382551, -1.4226324118932472) +description = North Hills town, WV +station = ('kpkb', 0.00086180607818680253) +zone = ('wvz009', 0.0018731484748623914) + +[fips5459836] +centroid = (0.68522136069438955, -1.4019552344454824) +description = Nutter Fort town, WV +station = ('kckb', 0.0016330273711744035) +zone = ('wvz031', 0.00083076121891118102) + +[fips5460028] +centroid = (0.66295551474828962, -1.4163596636549944) +description = Oak Hill city, WV +station = ('kbkw', 0.0032564532385964983) +zone = ('wvz036', 0.0012376820170604875) + +[fips5460196] +centroid = (0.65157136035606145, -1.4132447919922526) +description = Oakvale town, WV +station = ('kblf', 0.0032014256070638414) +zone = ('wvz042', 0.0023065343997407716) + +[fips5460364] +centroid = (0.65787452968317639, -1.4247098598486034) +description = Oceana town, WV +station = ('ki16', 0.001896826816083748) +zone = ('wvz034', 0.0018402085477593317) + +[fips5460628] +centroid = (0.65899824246878036, -1.4311272435219689) +description = Omar CDP, WV +station = ('ki16', 0.0066505599382015697) +zone = ('wvz025', 0.0015477028832604988) + +[fips5461636] +centroid = (0.69120326726608983, -1.4125883562072852) +description = Paden City city, WV +station = ('kpkb', 0.0083808581426506896) +zone = ('wvz011', 0.0024979281095101483) + +[fips5461660] +centroid = (0.66411654267330134, -1.4184918625889857) +description = Page CDP, WV +station = ('kbkw', 0.0048857409700264216) +zone = ('wvz036', 0.0026744497126783688) + +[fips5461684] +centroid = (0.65210263858036843, -1.4217998025735832) +description = Pageton CDP, WV +station = ('ki16', 0.0043541535190973792) +zone = ('wvz033', 0.0026562579866064315) + +[fips5462140] +centroid = (0.68523987863775326, -1.4232003943917235) +description = Parkersburg city, WV +station = ('kpkb', 0.0017801327992575686) +zone = ('wvz009', 0.00095729639490854798) + +[fips5462284] +centroid = (0.68232521369350774, -1.3906510859461656) +description = Parsons city, WV +station = ('kekn', 0.0043567638150245969) +zone = ('wvz041', 0.0015726695247556335) + +[fips5462332] +centroid = (0.68995223271155293, -1.3693028643075942) +description = Paw Paw town, WV +station = ('kcbe', 0.0043639092183561665) +zone = ('mdz502', 0.0025735253665903558) + +[fips5462356] +centroid = (0.66165126510485928, -1.4183380641753003) +description = Pax town, WV +station = ('kbkw', 0.0028000800930431699) +zone = ('wvz035', 0.0024262493774959196) + +[fips5462488] +centroid = (0.67047128647981269, -1.4365926373548339) +description = Pea Ridge CDP, WV +station = ('khts', 0.0033813374857196788) +zone = ('wvz006', 0.0009477147657669853) + +[fips5462764] +centroid = (0.68564458558470565, -1.4131186919537961) +description = Pennsboro city, WV +station = ('kpkb', 0.006594854798786352) +zone = ('wvz019', 0.0022723858404064571) + +[fips5462788] +centroid = (0.69309897408643617, -1.3992490316270951) +description = Pentress CDP, WV +station = ('kmgw', 0.0035825180329934741) +zone = ('wvz022', 0.0021945458331089811) + +[fips5462956] +centroid = (0.68060334166666026, -1.3810387025440996) +description = Petersburg city, WV +station = ('kw99', 0.00022900192371906272) +zone = ('wvz502', 0.0011250189556212093) + +[fips5463052] +centroid = (0.65273526807433879, -1.4101390833080838) +description = Peterstown town, WV +station = ('kpsk', 0.0048889792173035743) +zone = ('vaz011', 0.0019492068598868342) + +[fips5463292] +centroid = (0.68324772492294183, -1.3971459622383195) +description = Philippi city, WV +station = ('kckb', 0.0034863640165170313) +zone = ('wvz040', 0.00069065529850208642) + +[fips5463484] +centroid = (0.67467227653607043, -1.4000335396725743) +description = Pickens CDP, WV +station = ('kw22', 0.0060454902053541674) +zone = ('wvz038', 0.0039755678785250046) + +[fips5463604] +centroid = (0.68901732964442963, -1.3796221758698881) +description = Piedmont town, WV +station = ('kcbe', 0.0045323766759250523) +zone = ('wvz503', 0.0018422070028555856) + +[fips5463772] +centroid = (0.6703380654980079, -1.4220841865219032) +description = Pinch CDP, WV +station = ('kcrw', 0.0017972235987461602) +zone = ('wvz015', 0.001407498435794639) + +[fips5463892] +centroid = (0.69051368767862686, -1.4082147705412977) +description = Pine Grove town, WV +station = ('kckb', 0.0078084610610347806) +zone = ('wvz012', 0.00095340925614429198) + +[fips5463940] +centroid = (0.6559543009868396, -1.423069058365511) +description = Pineville town, WV +station = ('ki16', 0.00043658999726166943) +zone = ('wvz034', 0.0004924047638515237) + +[fips5463988] +centroid = (0.66036996654109281, -1.4159875245518843) +description = Piney View CDP, WV +station = ('kbkw', 0.00066198269052035864) +zone = ('wvz035', 0.0019893312535478689) + +[fips5464228] +centroid = (0.6885860413329693, -1.3989746309620967) +description = Pleasant Valley city, WV +station = ('kckb', 0.0027968182865550028) +zone = ('wvz021', 0.0015473417196781708) + +[fips5464516] +centroid = (0.67145814799876791, -1.42789243283303) +description = Poca town, WV +station = ('kcrw', 0.0034325472881451043) +zone = ('wvz014', 0.0014706100767943465) + +[fips5464708] +centroid = (0.67812169290983448, -1.4334534183490268) +description = Point Pleasant city, WV +station = ('k3i2', 0.0011514957270374706) +zone = ('wvz007', 0.002036623189988658) + +[fips5465284] +centroid = (0.6648677498366522, -1.4193367590265837) +description = Powellton CDP, WV +station = ('kbkw', 0.0058598423119090789) +zone = ('wvz036', 0.0035012728960771488) + +[fips5465356] +centroid = (0.66684768624669954, -1.4204770873466668) +description = Pratt town, WV +station = ('kcrw', 0.0040247659001487763) +zone = ('wvz015', 0.0029638561695377571) + +[fips5465596] +centroid = (0.66735857902534335, -1.441709488936076) +description = Prichard CDP, WV +station = ('khts', 0.0023831675110447315) +zone = ('kyz103', 0.0024310136701499153) + +[fips5465668] +centroid = (0.66071213834094622, -1.4152213948234289) +description = Prince CDP, WV +station = ('kbkw', 0.0010640066789789492) +zone = ('wvz035', 0.0026822252894332052) + +[fips5465692] +centroid = (0.6522082833599917, -1.4153958055755804) +description = Princeton city, WV +station = ('kblf', 0.0018750528211872437) +zone = ('wvz042', 0.00067459956169176581) + +[fips5465836] +centroid = (0.66042387976168682, -1.4171406984952619) +description = Prosperity CDP, WV +station = ('kbkw', 0.0012950362223006985) +zone = ('wvz035', 0.0013911311220105899) + +[fips5465956] +centroid = (0.68395988907092564, -1.4128264889304272) +description = Pullman town, WV +station = ('kpkb', 0.0072298617679253515) +zone = ('wvz019', 0.001550272730799505) + +[fips5466412] +centroid = (0.66424594138404425, -1.4085842916505298) +description = Quinwood town, WV +station = ('klwb', 0.005378744228345167) +zone = ('wvz037', 0.0042671216683077169) + +[fips5466460] +centroid = (0.68973488685980211, -1.4014776774555517) +description = Rachel CDP, WV +station = ('kckb', 0.0039776278790274681) +zone = ('wvz021', 0.00076135291923677131) + +[fips5466484] +centroid = (0.66566316618995613, -1.425122822202918) +description = Racine CDP, WV +station = ('kcrw', 0.0040288376355724492) +zone = ('wvz026', 0.0021842085020145215) + +[fips5466652] +centroid = (0.66266568537270354, -1.4097146541405841) +description = Rainelle town, WV +station = ('klwb', 0.0054015449783364989) +zone = ('wvz036', 0.0043992724541778013) + +[fips5466892] +centroid = (0.66814043417035929, -1.423583947948142) +description = Rand CDP, WV +station = ('kcrw', 0.0015581987425096449) +zone = ('wvz015', 0.0010851243724382081) + +[fips5466988] +centroid = (0.68594057597255143, -1.3590841186168001) +description = Ranson corporation, WV +station = ('kmrb', 0.0023030420913885742) +zone = ('wvz053', 0.00014223611487605914) + +[fips5467108] +centroid = (0.67991555976832685, -1.427015771403046) +description = Ravenswood city, WV +station = ('k3i2', 0.0046244046412769607) +zone = ('wvz008', 0.0024348194365459421) + +[fips5467228] +centroid = (0.65165469982784407, -1.4271412256696794) +description = Raysal CDP, WV +station = ('kjfz', 0.004854637834302471) +zone = ('wvz033', 0.0017588431056097208) + +[fips5467252] +centroid = (0.69062263113053646, -1.4090364366465515) +description = Reader CDP, WV +station = ('kckb', 0.0083901036888438304) +zone = ('wvz012', 0.0013931026213324937) + +[fips5467396] +centroid = (0.65709508309252818, -1.4334648328023349) +description = Red Jacket CDP, WV +station = ('ki16', 0.00795658221164533) +zone = ('wvz024', 0.0013554947931007384) + +[fips5467636] +centroid = (0.68958461401120541, -1.3927824994819937) +description = Reedsville town, WV +station = ('kmgw', 0.0028957508935986385) +zone = ('wvz023', 0.0019222155690690977) + +[fips5467660] +centroid = (0.67892770341169806, -1.4211578530214073) +description = Reedy town, WV +station = ('kpkb', 0.00757524327893218) +zone = ('wvz017', 0.002237540118275753) + +[fips5467996] +centroid = (0.6564099017347802, -1.4190408209986156) +description = Rhodell town, WV +station = ('ki16', 0.0035174071438609849) +zone = ('wvz035', 0.002930986195233179) + +[fips5468116] +centroid = (0.66710726906634876, -1.4056559258716561) +description = Richwood city, WV +station = ('klwb', 0.006493126678769892) +zone = ('wvz037', 0.0037777166357102726) + +[fips5468260] +centroid = (0.6918706113588825, -1.3748470423028942) +description = Ridgeley town, WV +station = ('kcbe', 0.00048186077874966791) +zone = ('mdz502', 0.0023723133624504638) + +[fips5468596] +centroid = (0.67753732176968173, -1.4260877798397604) +description = Ripley city, WV +station = ('k3i2', 0.0055438481478340424) +zone = ('wvz008', 0.0005260829877418591) + +[fips5468908] +centroid = (0.68996643969166416, -1.398368582832634) +description = Rivesville town, WV +station = ('kmgw', 0.0034284350046127725) +zone = ('wvz022', 0.0019818265192708662) + +[fips5469100] +centroid = (0.6594713488691184, -1.4274019953132195) +description = Robinette CDP, WV +station = ('ki16', 0.0044762803157895707) +zone = ('wvz025', 0.0022383052473597897) + +[fips5469844] +centroid = (0.65364254257940302, -1.4259363899804425) +description = Roderfield CDP, WV +station = ('ki16', 0.00325565979393857) +zone = ('wvz033', 0.0014196862147355868) + +[fips5470084] +centroid = (0.68671297143302146, -1.3745518547665048) +description = Romney city, WV +station = ('kcbe', 0.004704506746265805) +zone = ('wvz504', 0.0022341858470355958) + +[fips5470156] +centroid = (0.65888219552681515, -1.4044630980476731) +description = Ronceverte city, WV +station = ('klwb', 0.002233851275777778) +zone = ('wvz045', 0.0034240884558497139) + +[fips5470468] +centroid = (0.65981395700128487, -1.4310480928403908) +description = Rossmore CDP, WV +station = ('ki16', 0.0069716340288631723) +zone = ('wvz025', 0.00092522076663049371) + +[fips5470588] +centroid = (0.68676629124166999, -1.3906199841788951) +description = Rowlesburg town, WV +station = ('k2g4', 0.0060711142954286207) +zone = ('wvz023', 0.002106109914076192) + +[fips5470828] +centroid = (0.66261084712760576, -1.4082500785520653) +description = Rupert town, WV +station = ('klwb', 0.0043042828442589201) +zone = ('wvz045', 0.0032337930318944298) + +[fips5471212] +centroid = (0.66981575826605622, -1.4280153214656628) +description = St. Albans city, WV +station = ('kcrw', 0.003006156993332689) +zone = ('wvz014', 0.0025945017448669632) + +[fips5471356] +centroid = (0.68757340130096223, -1.4172554888001656) +description = St. Marys city, WV +station = ('kpkb', 0.0035058020585434619) +zone = ('wvz010', 0.00070792158515974024) + +[fips5471380] +centroid = (0.6856515494484211, -1.4061154361571213) +description = Salem city, WV +station = ('kckb', 0.0047054369948265505) +zone = ('wvz020', 0.0019450119430416879) + +[fips5471476] +centroid = (0.66898089747165723, -1.4348764201947628) +description = Salt Rock CDP, WV +station = ('khts', 0.0046661335655273344) +zone = ('wvz006', 0.0016300355773935572) + +[fips5471620] +centroid = (0.67920327344729547, -1.4092917085029482) +description = Sand Fork town, WV +station = ('kw22', 0.0066767640067430028) +zone = ('wvz029', 0.0015098112843930918) + +[fips5472004] +centroid = (0.65813791732059479, -1.43096192593522) +description = Sarah Ann CDP, WV +station = ('ki16', 0.0062205204444056028) +zone = ('wvz024', 0.0020468140221475456) + +[fips5472292] +centroid = (0.66237126578118466, -1.416694417805527) +description = Scarbro CDP, WV +station = ('kbkw', 0.0027395376477012171) +zone = ('wvz036', 0.0018319595559421684) + +[fips5473108] +centroid = (0.6580542287829616, -1.4153022384743812) +description = Shady Spring CDP, WV +station = ('kbkw', 0.0017175975148294609) +zone = ('wvz035', 0.0024770967806986605) + +[fips5473252] +centroid = (0.68438901317411349, -1.3580526464821641) +description = Shannondale CDP, WV +station = ('kmrb', 0.0040166961113533173) +zone = ('wvz053', 0.0018014026097177326) + +[fips5473444] +centroid = (0.6868408691606076, -1.3585196616834125) +description = Shenandoah Junction CDP, WV +station = ('kmrb', 0.0021317882736692426) +zone = ('wvz053', 0.00086449361695880461) + +[fips5473468] +centroid = (0.68821472253460747, -1.3579515919184735) +description = Shepherdstown town, WV +station = ('kmrb', 0.0024691847431718207) +zone = ('wvz053', 0.0023041820493138257) + +[fips5473636] +centroid = (0.68753057092111824, -1.401474326423388) +description = Shinnston city, WV +station = ('kckb', 0.0019580300246443911) +zone = ('wvz021', 0.0021797165635726694) + +[fips5473876] +centroid = (0.66687082931258101, -1.4218451462275501) +description = Shrewsbury CDP, WV +station = ('kcrw', 0.0033116670981632162) +zone = ('wvz015', 0.0023856621699494371) + +[fips5474356] +centroid = (0.67198630208371379, -1.4248159584138322) +description = Sissonville CDP, WV +station = ('kcrw', 0.002412221666811422) +zone = ('wvz015', 0.0032428455430716248) + +[fips5474380] +centroid = (0.69044912794959568, -1.413693969928546) +description = Sistersville city, WV +station = ('kpkb', 0.0072541567248586613) +zone = ('wvz011', 0.0022515359841866938) + +[fips5474740] +centroid = (0.66629254937151772, -1.4190337175085599) +description = Smithers city, WV +station = ('kcrw', 0.0052423099328285485) +zone = ('wvz036', 0.0040005092413669778) + +[fips5474788] +centroid = (0.68931539697408528, -1.4060370010605365) +description = Smithfield town, WV +station = ('kckb', 0.0057452248638106222) +zone = ('wvz012', 0.0022019946717277542) + +[fips5475172] +centroid = (0.65811672902347551, -1.4181427443787096) +description = Sophia town, WV +station = ('kbkw', 0.0024874358689361605) +zone = ('wvz035', 0.001120685774396953) + +[fips5475292] +centroid = (0.66931481386414871, -1.4260467820556311) +description = South Charleston city, WV +station = ('kcrw', 0.0014896203830190265) +zone = ('wvz015', 0.0024511675034120375) + +[fips5475796] +centroid = (0.6866679768449051, -1.4017849601236578) +description = Spelter CDP, WV +station = ('kckb', 0.0015426611866476202) +zone = ('wvz031', 0.0013485804803152859) + +[fips5475820] +centroid = (0.67723705532516865, -1.4198824187639272) +description = Spencer city, WV +station = ('kcrw', 0.0083234211457620996) +zone = ('wvz016', 0.0015517636548138217) + +[fips5476084] +centroid = (0.68842116007853338, -1.3735315178324961) +description = Springfield CDP, WV +station = ('kcbe', 0.0031146059249969635) +zone = ('wvz050', 0.002478159446564039) + +[fips5476444] +centroid = (0.65994461234908919, -1.4162436516196144) +description = Stanaford CDP, WV +station = ('kbkw', 0.00044102042462653362) +zone = ('wvz035', 0.0015979286610203756) + +[fips5476516] +centroid = (0.69218285076206432, -1.3960299638080094) +description = Star City town, WV +station = ('kmgw', 0.0009535431837229089) +zone = ('wvz022', 0.00094929055210014488) + +[fips5476996] +centroid = (0.66043782494241032, -1.4304440343862757) +description = Stollings CDP, WV +station = ('ki16', 0.0069230510916156156) +zone = ('wvz025', 0.00035283948402207939) + +[fips5477188] +centroid = (0.68504386070946177, -1.4015943876226327) +description = Stonewood city, WV +station = ('kckb', 0.0014820596680194551) +zone = ('wvz031', 0.0011614154970978432) + +[fips5477980] +centroid = (0.66817500914284134, -1.4109554959722894) +description = Summersville town, WV +station = ('kbkw', 0.009247589261530265) +zone = ('wvz037', 0.00059903695361162679) + +[fips5478580] +centroid = (0.67487967401108506, -1.4087146502923613) +description = Sutton town, WV +station = ('kw22', 0.0083972621486302287) +zone = ('wvz028', 0.00056499532018351511) + +[fips5478796] +centroid = (0.65950416105905596, -1.4308980468845971) +description = Switzer CDP, WV +station = ('ki16', 0.0067149484057718277) +zone = ('wvz025', 0.0010344015338841946) + +[fips5478964] +centroid = (0.66336528315007293, -1.4235197896448386) +description = Sylvester town, WV +station = ('kcrw', 0.0062814128844980747) +zone = ('wvz026', 0.0020741411296616116) + +[fips5479545] +centroid = (0.67103029798593394, -1.4298358918617109) +description = Teays Valley CDP, WV +station = ('kcrw', 0.004643143604392168) +zone = ('wvz014', 0.0010898774198255222) + +[fips5479708] +centroid = (0.6884326443450115, -1.38829860900728) +description = Terra Alta town, WV +station = ('k2g4', 0.0036235461760004734) +zone = ('wvz023', 0.0017329432489529516) + +[fips5480020] +centroid = (0.68320669223222752, -1.387456225843805) +description = Thomas city, WV +station = ('kw99', 0.0056586081316398829) +zone = ('wvz041', 0.0010890248287673565) + +[fips5480284] +centroid = (0.66254256984726778, -1.4151068663179129) +description = Thurmond town, WV +station = ('kbkw', 0.0028540346329327289) +zone = ('wvz036', 0.0011853682927703323) + +[fips5480476] +centroid = (0.67059071936052672, -1.4076938246661623) +description = Tioga CDP, WV +station = ('klwb', 0.010304928679443111) +zone = ('wvz037', 0.0030129951361594176) + +[fips5480932] +centroid = (0.69886962600547498, -1.4069800548152667) +description = Triadelphia town, WV +station = ('khlg', 0.0022234589000382598) +zone = ('wvz003', 0.00095552536424051214) + +[fips5481268] +centroid = (0.68753556256277892, -1.3918403532984747) +description = Tunnelton town, WV +station = ('kmgw', 0.0050379898907946625) +zone = ('wvz023', 0.0017023306429061386) + +[fips5481484] +centroid = (0.66192172132574834, -1.4244427895664633) +description = Twilight CDP, WV +station = ('ki16', 0.0057243277984774478) +zone = ('wvz026', 0.0021642193519639799) + +[fips5481940] +centroid = (0.65608211144796313, -1.4056884413556208) +description = Union town, WV +station = ('klwb', 0.0051892683035684476) +zone = ('wvz044', 0.00054896835789295089) + +[fips5482180] +centroid = (0.66922047881807833, -1.4288551913550152) +description = Upper Falls CDP, WV +station = ('kcrw', 0.0036816450983646587) +zone = ('wvz014', 0.0029370612840226061) + +[fips5482564] +centroid = (0.67665360920951956, -1.395005769696354) +description = Valley Bend CDP, WV +station = ('kekn', 0.002253355098512847) +zone = ('wvz047', 0.00071554137253281654) + +[fips5482732] +centroid = (0.69963723926379462, -1.4063348065908043) +description = Valley Grove village, WV +station = ('khlg', 0.0017079708457628266) +zone = ('wvz003', 0.00058884018269140007) + +[fips5482756] +centroid = (0.67277456258708457, -1.3968198823741695) +description = Valley Head CDP, WV +station = ('kekn', 0.0063690017055038116) +zone = ('wvz046', 0.0037729571827933542) + +[fips5482852] +centroid = (0.66270539161318631, -1.4262436551952562) +description = Van CDP, WV +station = ('ki16', 0.0068171743698585401) +zone = ('wvz026', 0.00092713866320572025) + +[fips5483332] +centroid = (0.66071374404385796, -1.4321841974636842) +description = Verdunville CDP, WV +station = ('ki16', 0.0082082043164227042) +zone = ('wvz025', 0.0017458580977520383) + +[fips5483500] +centroid = (0.68607908530198969, -1.4232239214300406) +description = Vienna city, WV +station = ('kpkb', 0.0013452481765156691) +zone = ('wvz009', 0.0017626653636912491) + +[fips5483764] +centroid = (0.65305323215746724, -1.4223065589218999) +description = Vivian CDP, WV +station = ('ki16', 0.0033273469863525995) +zone = ('wvz033', 0.0023380698119334731) + +[fips5484484] +centroid = (0.65113204353004195, -1.4255583516644605) +description = War city, WV +station = ('kjfz', 0.0046322283986264612) +zone = ('wvz033', 0.0012927869698823066) + +[fips5484580] +centroid = (0.68204344773906589, -1.371665481609434) +description = Wardensville town, WV +station = ('kokv', 0.0060972431044871303) +zone = ('wvz055', 0.0038272514326050098) + +[fips5484724] +centroid = (0.68495982310597825, -1.4252179950070289) +description = Washington CDP, WV +station = ('kpkb', 0.0032138718421783007) +zone = ('wvz009', 0.0020360403981683206) + +[fips5484916] +centroid = (0.68643923399313866, -1.4203756662638334) +description = Waverly CDP, WV +station = ('kpkb', 0.00092607947128884173) +zone = ('ohz076', 0.0026705608310794854) + +[fips5484940] +centroid = (0.66715025652582538, -1.4388739746734083) +description = Wayne town, WV +station = ('khts', 0.0028870886270497133) +zone = ('wvz005', 0.0013893425674401641) + +[fips5485156] +centroid = (0.70522351460065291, -1.4061346347788932) +description = Weirton city, WV +station = ('khlg', 0.0043313006114676254) +zone = ('wvz001', 0.0020096266758555066) + +[fips5485228] +centroid = (0.65324277491423377, -1.4240390425505993) +description = Welch city, WV +station = ('ki16', 0.0030388695663249804) +zone = ('wvz033', 0.0012210907437960414) + +[fips5485324] +centroid = (0.70303401650731845, -1.4069212023128894) +description = Wellsburg city, WV +station = ('khlg', 0.0020612605213781304) +zone = ('wvz002', 0.00047355254013480588) + +[fips5485804] +centroid = (0.66819710501117158, -1.4346224922418902) +description = West Hamlin town, WV +station = ('khts', 0.0050290186104233426) +zone = ('wvz006', 0.0024387590900833839) + +[fips5485876] +centroid = (0.70104105994105126, -1.4066767340445625) +description = West Liberty town, WV +station = ('khlg', 0.00071167871703464345) +zone = ('wvz003', 0.0012538286909703875) + +[fips5485900] +centroid = (0.66091916929681782, -1.4310067634437036) +description = West Logan town, WV +station = ('ki16', 0.0075686774426271279) +zone = ('wvz025', 0.00099134212611164574) + +[fips5485924] +centroid = (0.6842466292137358, -1.4033037107321584) +description = West Milford town, WV +station = ('kckb', 0.0030247973989364083) +zone = ('wvz031', 0.0014161217394135844) + +[fips5485972] +centroid = (0.68135493280244652, -1.4043304530245218) +description = Weston city, WV +station = ('kw22', 0.0027364922727159684) +zone = ('wvz030', 0.0009253873754455444) + +[fips5485996] +centroid = (0.69176439062060613, -1.3956930279959119) +description = Westover city, WV +station = ('kmgw', 0.0007282492656300898) +zone = ('wvz022', 0.0010677110590922264) + +[fips5486116] +centroid = (0.6858508835022914, -1.4097912391881613) +description = West Union town, WV +station = ('kckb', 0.0075425232426845996) +zone = ('wvz020', 0.0010347963577151582) + +[fips5486452] +centroid = (0.69942160383471075, -1.4083998976150565) +description = Wheeling city, WV +station = ('khlg', 0.0017285125711598104) +zone = ('wvz003', 0.0010971564796674676) + +[fips5486620] +centroid = (0.68804090519440142, -1.3995091554988126) +description = White Hall town, WV +station = ('kckb', 0.0021664832888835593) +zone = ('wvz021', 0.0017223148212483007) + +[fips5486812] +centroid = (0.65966902486019929, -1.4015258659961995) +description = White Sulphur Springs city, WV +station = ('klwb', 0.0018312375684405968) +zone = ('wvz045', 0.0033560894960746259) + +[fips5486836] +centroid = (0.66286863225812531, -1.4230479573348545) +description = Whitesville town, WV +station = ('ki16', 0.0066286217033655111) +zone = ('wvz026', 0.002545590683029373) + +[fips5486932] +centroid = (0.67744768165929936, -1.3883234799491209) +description = Whitmer CDP, WV +station = ('kekn', 0.0043134135953465129) +zone = ('wvz505', 0.0015234927646663814) + +[fips5487316] +centroid = (0.69141523750374467, -1.3746449680820985) +description = Wiley Ford CDP, WV +station = ('kcbe', 7.239587736330362e-06) +zone = ('mdz502', 0.0022254385305615692) + +[fips5487508] +centroid = (0.65753614524779957, -1.4358991133232617) +description = Williamson city, WV +station = ('kk22', 0.0052253868572603845) +zone = ('wvz024', 0.0020930286537101566) + +[fips5487556] +centroid = (0.68765365153996894, -1.4215864186192344) +description = Williamstown city, WV +station = ('kpkb', 0.0011575430754245889) +zone = ('ohz076', 0.0011408632873833565) + +[fips5487892] +centroid = (0.70147096944240239, -1.4078652334520008) +description = Windsor Heights village, WV +station = ('khlg', 0.00047312361944922574) +zone = ('wvz003', 0.0017578458325644987) + +[fips5487988] +centroid = (0.67241572289287455, -1.4291659821349176) +description = Winfield town, WV +station = ('kcrw', 0.0047943447930625044) +zone = ('wvz014', 0.000452023984700011) + +[fips5488276] +centroid = (0.68560257550961023, -1.4043287251485621) +description = Wolf Summit CDP, WV +station = ('kckb', 0.0033300121927264631) +zone = ('wvz031', 0.0011121986035231882) + +[fips5488324] +centroid = (0.67889852150660479, -1.3956304579422278) +description = Womelsdorf (Coalton) town, WV +station = ('kekn', 0.0015661732529338695) +zone = ('wvz047', 0.0024620609984494818) + +[fips5488708] +centroid = (0.68866637883843851, -1.4008708962878036) +description = Worthington town, WV +station = ('kckb', 0.0028250669227073352) +zone = ('wvz021', 0.00095439899669357659) + +[fips55001] +centroid = (0.76748694884165924, -1.5667336017219817) +description = Adams County, WI +station = ('kisw', 0.006907223666762303) +zone = ('wiz044', 8.4133679532773817e-05) + +[fips5500100] +centroid = (0.78441601426747354, -1.5762979362097407) +description = Abbotsford city, WI +station = ('kmdz', 0.0027507816197373963) +zone = ('wiz029', 0.0051777345936424232) + +[fips5500100275] +centroid = (0.76716360914443471, -1.5675956547461267) +description = Adams city, WI +station = ('kisw', 0.0071838526312251287) +zone = ('wiz044', 0.00063009082221798113) + +[fips5500100300] +centroid = (0.76688577018080983, -1.567446621081299) +description = Adams town, WI +station = ('kdll', 0.0072996692825789732) +zone = ('wiz044', 0.0007078483214234333) + +[fips5500107300] +centroid = (0.76977127067325446, -1.5673627754640334) +description = Big Flats town, WI +station = ('kisw', 0.0045885647591037346) +zone = ('wiz044', 0.0023923630183288738) + +[fips5500116075] +centroid = (0.769864942494209, -1.5651839936923062) +description = Colburn town, WI +station = ('ky50', 0.004839952483046109) +zone = ('wiz044', 0.002709752296092638) + +[fips5500119575] +centroid = (0.7625513671565296, -1.5664467568594165) +description = Dell Prairie town, WI +station = ('kdll', 0.0029609964646212161) +zone = ('wiz044', 0.0048693171575829074) + +[fips5500122000] +centroid = (0.76544123097210415, -1.5669934987008964) +description = Easton town, WI +station = ('kdll', 0.0058417385681091838) +zone = ('wiz044', 0.0019783636703913795) + +[fips5500127950] +centroid = (0.76745174555064655, -1.5676550133939871) +description = Friendship village, WI +station = ('kisw', 0.0068946818950581948) +zone = ('wiz044', 0.00062184594352496312) + +[fips5500137625] +centroid = (0.76412001672834451, -1.5647194917651801) +description = Jackson town, WI +station = ('kdll', 0.0047621606436723807) +zone = ('wiz044', 0.0036173670561228197) + +[fips5500143425] +centroid = (0.77149003601403343, -1.5650007864807243) +description = Leola town, WI +station = ('kisw', 0.0035238948331578319) +zone = ('wiz044', 0.0042741159737975411) + +[fips5500144250] +centroid = (0.76697478197266145, -1.5645576997435204) +description = Lincoln town, WI +station = ('ky50', 0.0045703263496283805) +zone = ('wiz044', 0.0016677303107206906) + +[fips5500150] +centroid = (0.78155189405836589, -1.5369436239172418) +description = Abrams CDP, WI +station = ('kgrb', 0.0052500429819886934) +zone = ('wiz074', 0.0020483831602260013) + +[fips5500153725] +centroid = (0.76971021905601966, -1.5698941137446631) +description = Monroe town, WI +station = ('kisw', 0.0048521046278045708) +zone = ('wiz044', 0.0032004809403823483) + +[fips5500156525] +centroid = (0.76541965870254958, -1.5646980940285509) +description = New Chester town, WI +station = ('kdll', 0.0060130498203543334) +zone = ('wiz044', 0.0025010305778472132) + +[fips5500156750] +centroid = (0.7625083622437604, -1.5646889834098554) +description = New Haven town, WI +station = ('kdll', 0.0032833782372986738) +zone = ('wiz046', 0.003907604317195815) + +[fips5500165450] +centroid = (0.76851053208807629, -1.5666627239010582) +description = Preston town, WI +station = ('ky50', 0.0057576718665806118) +zone = ('wiz044', 0.0011002113766293074) + +[fips5500165825] +centroid = (0.7660111682393429, -1.5693071944238026) +description = Quincy town, WI +station = ('kvok', 0.0044922606802885187) +zone = ('wiz044', 0.0022909865018084317) + +[fips5500167425] +centroid = (0.76836626317210655, -1.5646011584418951) +description = Richfield town, WI +station = ('ky50', 0.0042843828019402353) +zone = ('wiz044', 0.001841572304638868) + +[fips5500169275] +centroid = (0.77151511639538461, -1.5675553376404059) +description = Rome town, WI +station = ('kisw', 0.0028392662918967208) +zone = ('wiz044', 0.0041372657033514875) + +[fips5500176350] +centroid = (0.76407107769611848, -1.567089491809756) +description = Springville town, WI +station = ('kdll', 0.0044748709736417529) +zone = ('wiz044', 0.0033500591197201408) + +[fips5500177800] +centroid = (0.76832997777695755, -1.5695596737533961) +description = Strongs Prairie town, WI +station = ('kvok', 0.0045131468495062596) +zone = ('wiz044', 0.0021911550765189372) + +[fips5500188150] +centroid = (0.76187733845270178, -1.5668687774725487) +description = Wisconsin Dells city, WI +station = ('kdll', 0.0022767111263680383) +zone = ('wiz056', 0.0045069087168796628) + +[fips5500275] +centroid = (0.76716360914443471, -1.5675956547461267) +description = Adams city, WI +station = ('kisw', 0.0071838526312251287) +zone = ('wiz044', 0.00063009082221798113) + +[fips55003] +centroid = (0.81238603254140385, -1.5824054541277071) +description = Ashland County, WI +station = ('kasx', 0.0030197026280150102) +zone = ('wiz003', 0.0040432803600512005) + +[fips5500300000] +centroid = (0.82075191924498836, -1.5789802629239607) +description = County subdivisions not defined, WI +station = ('kiwd', 0.0094820494939711637) +zone = ('wiz002', 0.012373748905534039) + +[fips5500300550] +centroid = (0.8041921131290185, -1.5774580216569563) +description = Agenda town, WI +station = ('kpbh', 0.0065804068008741287) +zone = ('wiz004', 0.0036511628117772343) + +[fips5500303225] +centroid = (0.81301520628345536, -1.5859917392214125) +description = Ashland city, WI +station = ('kasx', 0.00078975490196691732) +zone = ('wiz002', 0.004088722066391489) + +[fips5500303250] +centroid = (0.8095228024502148, -1.583610062924141) +description = Ashland town, WI +station = ('kasx', 0.0036586822637358104) +zone = ('wiz003', 0.0013571289011515778) + +[fips5500311525] +centroid = (0.80308161248585208, -1.5794751161267786) +description = Butternut village, WI +station = ('kpbh', 0.0055925265670882397) +zone = ('wiz004', 0.0053323129023692493) + +[fips5500314550] +centroid = (0.8033060792809511, -1.583198060500915) +description = Chippewa town, WI +station = ('kpbh', 0.0068286783642712238) +zone = ('wiz003', 0.0050549278743988266) + +[fips5500329250] +centroid = (0.81225752394857953, -1.5854398312053468) +description = Gingles town, WI +station = ('kasx', 0.00095201487600946987) +zone = ('wiz002', 0.0043493337089067713) + +[fips5500329875] +centroid = (0.80595850850508444, -1.5839606646642814) +description = Gordon town, WI +station = ('kasx', 0.0067805156366952668) +zone = ('wiz003', 0.002558118904879828) + +[fips5500337775] +centroid = (0.8057674996717461, -1.5798294528715184) +description = Jacobs town, WI +station = ('kiwd', 0.0078922836687697548) +zone = ('wiz003', 0.0032253460817131844) + +[fips5500342562] +centroid = (0.81926880825981374, -1.5807591897640558) +description = La Pointe town, WI +station = ('kasx', 0.0079745108179898778) +zone = ('wiz002', 0.010469441949677081) + +[fips5500349200] +centroid = (0.80894478430853922, -1.5862862635326864) +description = Marengo town, WI +station = ('kasx', 0.0035234727410474692) +zone = ('wiz003', 0.0025937249862642221) + +[fips5500350700] +centroid = (0.80850518822983941, -1.5823284327478164) +description = Mellen city, WI +station = ('kasx', 0.0050043240008628264) +zone = ('wiz003', 0.00026306413148390945) + +[fips5500354400] +centroid = (0.80778192378781288, -1.5839751858036581) +description = Morse town, WI +station = ('kasx', 0.0050574455193966618) +zone = ('wiz003', 0.0010862146256232694) + +[fips5500361600] +centroid = (0.80481821509158646, -1.5796127527915909) +description = Peeksville town, WI +station = ('kpbh', 0.0073150586829588502) +zone = ('wiz003', 0.0040995917714240181) + +[fips5500371350] +centroid = (0.81238603254140385, -1.5824054541277071) +description = Sanborn town, WI +station = ('kasx', 0.0030197026280150102) +zone = ('wiz003', 0.0040432803600512005) + +[fips5500372825] +centroid = (0.8050222789877296, -1.5836931929564133) +description = Shanagolden town, WI +station = ('kasx', 0.0077310418267190198) +zone = ('wiz003', 0.003403700999650297) + +[fips5500386850] +centroid = (0.81070913764938035, -1.5858316052625419) +description = White River town, WI +station = ('kasx', 0.0018636550397984567) +zone = ('wiz003', 0.003234068883405094) + +[fips5500450] +centroid = (0.76131953122376439, -1.5349452219237081) +description = Adell village, WI +station = ('ksbm', 0.0030904434887710011) +zone = ('wiz052', 0.0017593722654264455) + +[fips55005] +centroid = (0.79302860326082736, -1.6031353928787593) +description = Barron County, WI +station = ('krpd', 0.0010269336056541714) +zone = ('wiz015', 0.0002401227337078521) + +[fips5500501325] +centroid = (0.79264000570287074, -1.6063690341970993) +description = Almena village, WI +station = ('kube', 0.00159760787795148) +zone = ('wiz015', 0.0023299147446308255) + +[fips5500501350] +centroid = (0.79303481663296449, -1.6075703966811246) +description = Almena town, WI +station = ('kube', 0.0017996908813448843) +zone = ('wiz015', 0.0031764538115302693) + +[fips5500502775] +centroid = (0.7912886670762217, -1.6052101181204828) +description = Arland town, WI +station = ('kube', 0.0028449269428224497) +zone = ('wiz015', 0.002134436079706965) + +[fips5500504875] +centroid = (0.79241773802262927, -1.6029863243073466) +description = Barron city, WI +station = ('krpd', 0.00090990087167172053) +zone = ('wiz015', 0.00038037956358452326) + +[fips5500504900] +centroid = (0.79302860326082736, -1.6031353928787593) +description = Barron town, WI +station = ('krpd', 0.0010269336056541714) +zone = ('wiz015', 0.0002401227337078521) + +[fips5500505650] +centroid = (0.79570620013277438, -1.6029200017957708) +description = Bear Lake town, WI +station = ('kube', 0.0024161661825354442) +zone = ('wiz015', 0.0029129139062794326) + +[fips5500512250] +centroid = (0.79244136978070134, -1.6011595230858691) +description = Cameron village, WI +station = ('krpd', 0.00048676620181999092) +zone = ('wiz015', 0.0013781011846396188) + +[fips5500513500] +centroid = (0.79576152707006276, -1.5986902836200252) +description = Cedar Lake town, WI +station = ('krpd', 0.0037428988762876277) +zone = ('wiz015', 0.0042621336003935209) + +[fips5500514325] +centroid = (0.790914869910322, -1.5996509302936153) +description = Chetek city, WI +station = ('krpd', 0.0023120926648614289) +zone = ('wiz015', 0.0030430433273194368) + +[fips5500514350] +centroid = (0.79133584332590312, -1.5986938440916991) +description = Chetek town, WI +station = ('krpd', 0.002541564746538365) +zone = ('wiz015', 0.0033941646553631603) + +[fips5500515600] +centroid = (0.79273709836915929, -1.6052299625140778) +description = Clinton town, WI +station = ('kube', 0.0014034078006621438) +zone = ('wiz015', 0.0015262528571998554) + +[fips5500517875] +centroid = (0.79429278014463189, -1.6074086570193422) +description = Crystal Lake town, WI +station = ('kube', 0.0013284535350729335) +zone = ('wiz015', 0.0033997011179802898) + +[fips5500518025] +centroid = (0.79475440227849192, -1.6061349331845294) +description = Cumberland city, WI +station = ('kube', 0.00075961480168690049) +zone = ('wiz015', 0.0029150076888009775) + +[fips5500518050] +centroid = (0.79426457562391961, -1.6051268310085776) +description = Cumberland town, WI +station = ('kube', 0.000314223800888461) +zone = ('wiz015', 0.0020657482189161513) + +[fips5500518575] +centroid = (0.78990421955366219, -1.6024674030141435) +description = Dallas village, WI +station = ('krpd', 0.0028353801915936318) +zone = ('wiz015', 0.0029202040397315158) + +[fips5500518600] +centroid = (0.78978714286743834, -1.6032029720273966) +description = Dallas town, WI +station = ('krpd', 0.0030812620529791952) +zone = ('wiz015', 0.003009475779489033) + +[fips5500520650] +centroid = (0.78984517506506724, -1.5988285835099529) +description = Dovre town, WI +station = ('krpd', 0.003513024340052772) +zone = ('wiz015', 0.0041874222650774406) + +[fips5500520750] +centroid = (0.79427677547539111, -1.5987467973812046) +description = Doyle town, WI +station = ('krpd', 0.0026353146643634403) +zone = ('wiz015', 0.0033665638645003679) + +[fips5500533225] +centroid = (0.7960064491239951, -1.6018385783379425) +description = Haugen village, WI +station = ('kube', 0.0031962882355460712) +zone = ('wiz015', 0.0033231233421370859) + +[fips5500541600] +centroid = (0.79553655412948054, -1.6051570077513444) +description = Lakeland town, WI +station = ('kube', 0.0014355068280399676) +zone = ('wiz015', 0.0031117841855708502) + +[fips5500548825] +centroid = (0.79127439028294033, -1.6030658066014825) +description = Maple Grove town, WI +station = ('krpd', 0.0016938451905520648) +zone = ('wiz015', 0.001520491088071033) + +[fips5500548950] +centroid = (0.79598955433683571, -1.6071544847203743) +description = Maple Plain town, WI +station = ('kube', 0.0021849123776097453) +zone = ('wiz015', 0.004295311953606616) + +[fips5500556350] +centroid = (0.78903717488785652, -1.597858808764375) +description = New Auburn village, WI +station = ('krpd', 0.0045684957561093155) +zone = ('wiz027', 0.0041228608051915704) + +[fips5500558950] +centroid = (0.79568851994745171, -1.6006750545921005) +description = Oak Grove town, WI +station = ('krpd', 0.0030875343863459213) +zone = ('wiz015', 0.0033406362781996453) + +[fips5500565150] +centroid = (0.78952328399112193, -1.6053543695831598) +description = Prairie Farm village, WI +station = ('krpd', 0.0040586750265154976) +zone = ('wiz015', 0.0036485369824577167) + +[fips5500565175] +centroid = (0.78988592850310124, -1.6051000052979743) +description = Prairie Farm town, WI +station = ('krpd', 0.0036644581973057722) +zone = ('wiz015', 0.0032440831867588723) + +[fips5500565200] +centroid = (0.79120672386784052, -1.6010345226048415) +description = Prairie Lake town, WI +station = ('krpd', 0.0015708566152035602) +zone = ('wiz015', 0.0021308186773626365) + +[fips5500567350] +centroid = (0.79380962064780225, -1.6012657961840231) +description = Rice Lake city, WI +station = ('krpd', 0.0011659493348895366) +zone = ('wiz015', 0.0016151020989076143) + +[fips5500567375] +centroid = (0.79433431898082929, -1.6007874363426364) +description = Rice Lake town, WI +station = ('krpd', 0.0017736923943355918) +zone = ('wiz015', 0.0022143362160944929) + +[fips5500574125] +centroid = (0.78977708977094696, -1.6011504299204662) +description = Sioux Creek town, WI +station = ('krpd', 0.0029479756469558888) +zone = ('wiz015', 0.0033019802291274366) + +[fips5500576550] +centroid = (0.79442561715400117, -1.6032142119477795) +description = Stanfold town, WI +station = ('kube', 0.0016494336773877506) +zone = ('wiz015', 0.0016344712481352712) + +[fips5500576600] +centroid = (0.79290409147199015, -1.6008968684867364) +description = Stanley town, WI +station = ('krpd', 0.00063547347460107817) +zone = ('wiz015', 0.0015199440272187733) + +[fips5500578450] +centroid = (0.79275488327423704, -1.5987336725052297) +description = Sumner town, WI +station = ('krpd', 0.0021192182511309914) +zone = ('wiz015', 0.0030346773156655839) + +[fips5500581075] +centroid = (0.79226345091675299, -1.6079966584443393) +description = Turtle Lake village, WI +station = ('kube', 0.0025423138514881504) +zone = ('wiz015', 0.0035083539908424325) + +[fips5500581100] +centroid = (0.7911747668892366, -1.607523691670341) +description = Turtle Lake town, WI +station = ('kube', 0.003265656596719005) +zone = ('wiz015', 0.0035311476519363275) + +[fips5500582375] +centroid = (0.78968570433131247, -1.6072336004953671) +description = Vance Creek town, WI +station = ('kube', 0.0045978925574220912) +zone = ('wiz015', 0.004276328715395088) + +[fips55007] +centroid = (0.81392031658024711, -1.5913437739193605) +description = Bayfield County, WI +station = ('kasx', 0.003453954825991879) +zone = ('wiz002', 0.0019418445482152842) + +[fips5500700000] +centroid = (0.81970651938292138, -1.5916761544221103) +description = County subdivisions not defined, WI +station = ('kbfw', 0.0047516557357589785) +zone = ('mnz020', 0.0062766611297579303) + +[fips5500703225] +centroid = (0.81237617143113017, -1.5869892297955122) +description = Ashland city, WI +station = ('kasx', 0.00015289105089073295) +zone = ('wiz002', 0.0032971823871533242) + +[fips5500704725] +centroid = (0.8134497932672019, -1.5893926703485561) +description = Barksdale town, WI +station = ('kasx', 0.0020459069419670639) +zone = ('wiz002', 0.0021757732388824743) + +[fips5500704750] +centroid = (0.8082051312248365, -1.5967127906709304) +description = Barnes town, WI +station = ('khyr', 0.0050803390828423906) +zone = ('wiz002', 0.0051082494135903786) + +[fips5500705350] +centroid = (0.81710159802102733, -1.5852130605756352) +description = Bayfield city, WI +station = ('kasx', 0.0047758010938612145) +zone = ('wiz002', 0.0067944439034313036) + +[fips5500705375] +centroid = (0.8182068801297302, -1.5874383030120502) +description = Bayfield town, WI +station = ('kasx', 0.0057729776350735106) +zone = ('wiz002', 0.0068765937386794877) + +[fips5500705475] +centroid = (0.8157266276363061, -1.5865420066279812) +description = Bayview town, WI +station = ('kasx', 0.0032804685767792883) +zone = ('wiz002', 0.0051663154815433021) + +[fips5500706200] +centroid = (0.81638512290979104, -1.5903329490297755) +description = Bell town, WI +station = ('kasx', 0.0046232055899489578) +zone = ('wiz002', 0.0044930722186420149) + +[fips5500711675] +centroid = (0.80637038875526257, -1.5935712154706332) +description = Cable town, WI +station = ('khyr', 0.0036745932211258684) +zone = ('wiz002', 0.0057668375150764237) + +[fips5500715750] +centroid = (0.81648972049186308, -1.5920245919539784) +description = Clover town, WI +station = ('kasx', 0.0054029491075848765) +zone = ('wiz002', 0.0044949259553042032) + +[fips5500719662] +centroid = (0.81089272883339758, -1.5934361967996988) +description = Delta town, WI +station = ('kasx', 0.0048291586315904614) +zone = ('wiz002', 0.0016030081925819033) + +[fips5500720887] +centroid = (0.8085412816387707, -1.5934790620861281) +description = Drummond town, WI +station = ('khyr', 0.0056966492302677986) +zone = ('wiz002', 0.003656936891866156) + +[fips5500722925] +centroid = (0.81227808392716816, -1.5881660180436694) +description = Eileen town, WI +station = ('kasx', 0.00095852472655991855) +zone = ('wiz002', 0.0024818806215325729) + +[fips5500730175] +centroid = (0.80833404124338892, -1.5894381187222779) +description = Grandview town, WI +station = ('kasx', 0.0045017174266588651) +zone = ('wiz002', 0.0039964514045996557) + +[fips5500736300] +centroid = (0.81196668228202729, -1.5967830227200308) +description = Hughes town, WI +station = ('ksuw', 0.007829761531979975) +zone = ('wiz002', 0.0034626572500863133) + +[fips5500737200] +centroid = (0.81242886292124783, -1.5948288299164501) +description = Iron River town, WI +station = ('kasx', 0.0055250128562537521) +zone = ('wiz002', 0.0021606385121114538) + +[fips5500739025] +centroid = (0.8108456049435937, -1.5880366891460964) +description = Kelly town, WI +station = ('kasx', 0.0018184544605040437) +zone = ('wiz002', 0.0028049930660598407) + +[fips5500739425] +centroid = (0.81198335017638379, -1.5915560059564029) +description = Keystone town, WI +station = ('kasx', 0.0033081165637227272) +zone = ('wiz002', 0.0001348738286810651) + +[fips5500744275] +centroid = (0.80967756079498898, -1.5880178570434675) +description = Lincoln town, WI +station = ('kasx', 0.0028982389262328734) +zone = ('wiz002', 0.0034642022830795533) + +[fips5500749900] +centroid = (0.81045157941166346, -1.5892992254204041) +description = Mason village, WI +station = ('kasx', 0.0026398079775090356) +zone = ('wiz002', 0.0022898682062718065) + +[fips5500749925] +centroid = (0.81085859019322859, -1.5902499935304282) +description = Mason town, WI +station = ('kasx', 0.0028617556351163229) +zone = ('wiz002', 0.0015386499697412073) + +[fips5500750] +centroid = (0.74537903773957226, -1.560968691936182) +description = Albany village, WI +station = ('keft', 0.0025465304625984122) +zone = ('wiz068', 0.0021722532150450936) + +[fips5500755375] +centroid = (0.80595459896755994, -1.5892483316194159) +description = Namakagon town, WI +station = ('kasx', 0.0067131164574629042) +zone = ('wiz008', 0.0053045327782334636) + +[fips5500760275] +centroid = (0.81543140519333135, -1.5958879655197304) +description = Orienta town, WI +station = ('ktwm', 0.0068483021731763974) +zone = ('wiz002', 0.0044561295336752746) + +[fips5500760775] +centroid = (0.813897016434733, -1.5968005109191357) +description = Oulu town, WI +station = ('ksuw', 0.0073120566311273881) +zone = ('wiz002', 0.0039561792793120975) + +[fips5500762700] +centroid = (0.81278203029538898, -1.5912913442286305) +description = Pilsen town, WI +station = ('kasx', 0.0031092639069200925) +zone = ('wiz002', 0.00084462860081715259) + +[fips5500764512] +centroid = (0.81591372693211994, -1.5941059319935669) +description = Port Wing town, WI +station = ('kasx', 0.0060973688487664318) +zone = ('wiz002', 0.0042358390463424715) + +[fips5500770300] +centroid = (0.81935788986483538, -1.5854848432467556) +description = Russell town, WI +station = ('kasx', 0.0069652335118968794) +zone = ('wiz002', 0.0085205375676586648) + +[fips5500780750] +centroid = (0.8137521017469399, -1.5947876226928106) +description = Tripp town, WI +station = ('kasx', 0.005644838056475949) +zone = ('wiz002', 0.0027262304490530374) + +[fips5500783525] +centroid = (0.81461137969757424, -1.5863897441040373) +description = Washburn city, WI +station = ('kasx', 0.0021784890219961541) +zone = ('wiz002', 0.0045160224223141088) + +[fips5500783550] +centroid = (0.81450198246005934, -1.590117732479712) +description = Washburn town, WI +station = ('kasx', 0.0030687710308831186) +zone = ('wiz002', 0.0027432505773564656) + +[fips55009] +centroid = (0.77621705085354986, -1.5358186370412836) +description = Brown County, WI +station = ('kgrb', 0.001718951620086866) +zone = ('wiz039', 0.00036504460095894095) + +[fips5500901150] +centroid = (0.77618731044309586, -1.5363476637908557) +description = Allouez village, WI +station = ('kgrb', 0.0013476413944565652) +zone = ('wiz039', 0.00043271770585567236) + +[fips5500903425] +centroid = (0.77631094956730706, -1.5374180044079337) +description = Ashwaubenon village, WI +station = ('kgrb', 0.00057420096256984585) +zone = ('wiz039', 0.0011421285344451453) + +[fips5500906350] +centroid = (0.77598684192521183, -1.5351207147799963) +description = Bellevue village, WI +station = ('kgrb', 0.0022441946377212631) +zone = ('wiz039', 0.00060157069497112422) + +[fips5500919700] +centroid = (0.77403877522730591, -1.5329425613267997) +description = Denmark village, WI +station = ('kmtw', 0.00419574648454475) +zone = ('wiz039', 0.0028164980987798668) + +[fips5500919775] +centroid = (0.77551785450190847, -1.5372384100279037) +description = De Pere city, WI +station = ('kgrb', 0.0011099976280053382) +zone = ('wiz039', 0.00098556323382948145) + +[fips5500922225] +centroid = (0.77567950689722809, -1.5328896429438794) +description = Eaton town, WI +station = ('kgrb', 0.0038661284834907361) +zone = ('wiz040', 0.0029388439073117275) + +[fips5500929550] +centroid = (0.77445631034426043, -1.5349272450324125) +description = Glenmore town, WI +station = ('kgrb', 0.0030367289700756199) +zone = ('wiz039', 0.0015840191790645578) + +[fips5500931000] +centroid = (0.77703238141361908, -1.5356134386811267) +description = Green Bay city, WI +station = ('kgrb', 0.0019678808954752998) +zone = ('wiz039', 0.0011927273376614021) + +[fips5500931025] +centroid = (0.77841021413831346, -1.5323258841421927) +description = Green Bay town, WI +station = ('kgrb', 0.0046635396944722986) +zone = ('wiz040', 0.0026755321415937372) + +[fips5500935150] +centroid = (0.77657327255388187, -1.5386009536683507) +description = Hobart village, WI +station = ('kgrb', 0.00033495747892212633) +zone = ('wiz039', 0.0020233808322351462) + +[fips5500935325] +centroid = (0.77273445577070543, -1.5376214225322535) +description = Holland town, WI +station = ('kgrb', 0.0036709244548903367) +zone = ('wiz039', 0.0033504992439122687) + +[fips5500935950] +centroid = (0.77786917952348766, -1.5371415617077104) +description = Howard village, WI +station = ('kgrb', 0.0016743558580445566) +zone = ('wiz039', 0.0021795425435818558) + +[fips5500936425] +centroid = (0.7767030377837677, -1.5328496749040088) +description = Humboldt town, WI +station = ('kgrb', 0.0038421747770726383) +zone = ('wiz040', 0.0026308429043850889) + +[fips5500942900] +centroid = (0.77491470361900416, -1.5383893324965461) +description = Lawrence town, WI +station = ('kgrb', 0.0014710889243174008) +zone = ('wiz039', 0.001986399160713726) + +[fips5500943090] +centroid = (0.77539451208366994, -1.5353963720820563) +description = Ledgeview town, WI +station = ('kgrb', 0.0022417888820696016) +zone = ('wiz039', 0.00061127060371147254) + +[fips5500954300] +centroid = (0.77287713643705591, -1.5349900943387769) +description = Morrison town, WI +station = ('kgrb', 0.0041943443391903104) +zone = ('wiz039', 0.0030634133906263347) + +[fips5500956575] +centroid = (0.77448086712683595, -1.5328466903909879) +description = New Denmark town, WI +station = ('kgrb', 0.0042796940106875798) +zone = ('wiz039', 0.0026098402912248559) + +[fips5500963075] +centroid = (0.77897118041319691, -1.5391179201927914) +description = Pittsfield town, WI +station = ('kgrb', 0.0026689308432957383) +zone = ('wiz039', 0.0038432072259400804) + +[fips5500965675] +centroid = (0.77957389496378815, -1.540075128567755) +description = Pulaski village, WI +station = ('kgrb', 0.0034567573363009719) +zone = ('wiz074', 0.0039814527345872841) + +[fips5500968875] +centroid = (0.77450174126468985, -1.5369317905849131) +description = Rockland town, WI +station = ('kgrb', 0.0020910152929025172) +zone = ('wiz039', 0.0015331090782946498) + +[fips5500972200] +centroid = (0.7781942645499641, -1.5340511246544966) +description = Scott town, WI +station = ('kgrb', 0.0034794572344155469) +zone = ('wiz039', 0.0026939427585924969) + +[fips5500977975] +centroid = (0.77888335544523646, -1.5364664858063315) +description = Suamico village, WI +station = ('kgrb', 0.002796303330622113) +zone = ('wiz039', 0.0030426622271772412) + +[fips5500989150] +centroid = (0.77353915727562994, -1.5389015866320066) +description = Wrightstown village, WI +station = ('kgrb', 0.0028832773420922938) +zone = ('wiz039', 0.0031408032809686994) + +[fips5500989175] +centroid = (0.7737330633555265, -1.5376466425399451) +description = Wrightstown town, WI +station = ('kgrb', 0.0026787183431339207) +zone = ('wiz039', 0.0024527359610563792) + +[fips5501000] +centroid = (0.77851186211394952, -1.5262259234998874) +description = Algoma city, WI +station = ('ksue', 0.0042840987887876394) +zone = ('wiz040', 0.0026178920879086041) + +[fips55011] +centroid = (0.77474744871678558, -1.601491676695816) +description = Buffalo County, WI +station = ('kona', 0.0053982971506122569) +zone = ('wiz032', 0.00017992086593276896) + +[fips5501100] +centroid = (0.7578300769969597, -1.54189983539413) +description = Allenton CDP, WI +station = ('ketb', 0.0027420982224303876) +zone = ('wiz059', 0.0017028407067633498) + +[fips5501101225] +centroid = (0.77379779761748302, -1.6042386329522376) +description = Alma city, WI +station = ('kona', 0.0051629261344614298) +zone = ('wiz032', 0.0021613498364782243) + +[fips5501101250] +centroid = (0.77444625724776883, -1.6026618675994009) +description = Alma town, WI +station = ('kona', 0.005286344532261243) +zone = ('wiz032', 0.00089830695764342796) + +[fips5501106675] +centroid = (0.77269499387631779, -1.60274857555664) +description = Belvidere town, WI +station = ('kona', 0.0036795620093324267) +zone = ('wiz032', 0.0021075347560284385) + +[fips5501111025] +centroid = (0.76937410354867053, -1.5986398959645201) +description = Buffalo town, WI +station = ('kona', 0.0013126647355668393) +zone = ('mnz088', 0.0028401031060944892) + +[fips5501111062] +centroid = (0.77183976508954799, -1.6033622158683485) +description = Buffalo City city, WI +station = ('kona', 0.0032048441830629325) +zone = ('wiz032', 0.0030690997459465277) + +[fips5501112500] +centroid = (0.77764418912961308, -1.6025564497125804) +description = Canton town, WI +station = ('klum', 0.0059030548304425372) +zone = ('wiz026', 0.0023106231024184447) + +[fips5501116025] +centroid = (0.77190793765013088, -1.6029287808019084) +description = Cochrane village, WI +station = ('kona', 0.0030680474453000984) +zone = ('wiz032', 0.0028781943574930236) + +[fips5501117737] +centroid = (0.77097755498577036, -1.5994125881309629) +description = Cross town, WI +station = ('kona', 0.0017503050405944754) +zone = ('mnz088', 0.0037007710638915486) + +[fips5501120575] +centroid = (0.77614135592389089, -1.5983437484970415) +description = Dover town, WI +station = ('kona', 0.0069112935903026139) +zone = ('wiz032', 0.0026968647344990937) + +[fips5501126850] +centroid = (0.77000980482212456, -1.6002863174078037) +description = Fountain City city, WI +station = ('kona', 0.00062411760698280027) +zone = ('mnz088', 0.0025533070260194725) + +[fips5501129225] +centroid = (0.77596319271384717, -1.6009349864775999) +description = Gilmanton town, WI +station = ('kona', 0.0065724315490289613) +zone = ('wiz032', 0.001430073598879775) + +[fips5501129375] +centroid = (0.77277294028071186, -1.5985350365830602) +description = Glencoe town, WI +station = ('kona', 0.0036470349092145643) +zone = ('wiz032', 0.0027390371135280604) + +[fips5501144300] +centroid = (0.77397917223335022, -1.6012970724842188) +description = Lincoln town, WI +station = ('kona', 0.0046183479247106848) +zone = ('wiz032', 0.00060245332813972142) + +[fips5501150] +centroid = (0.77618731044309586, -1.5363476637908557) +description = Allouez village, WI +station = ('kgrb', 0.0013476413944565652) +zone = ('wiz039', 0.00043271770585567236) + +[fips5501150075] +centroid = (0.77764665004385847, -1.6054439573336647) +description = Maxville town, WI +station = ('klum', 0.006048216204505112) +zone = ('wiz026', 0.00051411272907270938) + +[fips5501152175] +centroid = (0.77101438143298751, -1.6014444655395499) +description = Milton town, WI +station = ('kona', 0.0017608966895107038) +zone = ('mnz088', 0.0033108304429815458) + +[fips5501153450] +centroid = (0.77599314256381147, -1.6026979784616247) +description = Modena town, WI +station = ('kona', 0.0067845844864720733) +zone = ('wiz032', 0.0016869004028899619) + +[fips5501153600] +centroid = (0.77789769820346533, -1.5998883648850566) +description = Mondovi city, WI +station = ('keau', 0.0056518648172189665) +zone = ('wiz032', 0.0034970477219344932) + +[fips5501153625] +centroid = (0.77725028577073052, -1.6007517618127256) +description = Mondovi town, WI +station = ('keau', 0.0064988946521782236) +zone = ('wiz032', 0.0027168680368580035) + +[fips5501153850] +centroid = (0.7744080694437353, -1.5987349815021688) +description = Montana town, WI +station = ('kona', 0.00516022531992851) +zone = ('wiz032', 0.0019251342391477595) + +[fips5501155450] +centroid = (0.77745513506503716, -1.5983984645690916) +description = Naples town, WI +station = ('keau', 0.0057463880102766084) +zone = ('wiz032', 0.0035969057517366153) + +[fips5501155950] +centroid = (0.77526849931167596, -1.6056550898132784) +description = Nelson village, WI +station = ('kona', 0.0069467500544171997) +zone = ('wiz026', 0.0028504078116508885) + +[fips5501155975] +centroid = (0.77563384908399591, -1.6052477997790331) +description = Nelson town, WI +station = ('kona', 0.0071128110945718834) +zone = ('wiz026', 0.0025083100768136975) + +[fips5501184325] +centroid = (0.7726077099604256, -1.6008256415999624) +description = Waumandee town, WI +station = ('kona', 0.003218696772856982) +zone = ('wiz032', 0.002012803216923618) + +[fips5501225] +centroid = (0.77379779761748302, -1.6042386329522376) +description = Alma city, WI +station = ('kona', 0.0051629261344614298) +zone = ('wiz032', 0.0021613498364782243) + +[fips55013] +centroid = (0.80049971201679182, -1.6121253395096868) +description = Burnett County, WI +station = ('krzn', 0.00074340321234280188) +zone = ('wiz006', 4.4829191846117071e-05) + +[fips5501300] +centroid = (0.77557028419263829, -1.5867293328165977) +description = Alma Center village, WI +station = ('kbck', 0.0033552223968967665) +zone = ('wiz034', 0.0024560614843149959) + +[fips5501301900] +centroid = (0.7970978558651447, -1.6192467890033069) +description = Anderson town, WI +station = ('kros', 0.0022122891917631875) +zone = ('mnz053', 0.0033455212039610791) + +[fips5501308025] +centroid = (0.80508591369225735, -1.6088475413612713) +description = Blaine town, WI +station = ('krzn', 0.0058159216337843678) +zone = ('wiz006', 0.0051583657296877701) + +[fips5501318750] +centroid = (0.79887194814321183, -1.6138407538183019) +description = Daniels town, WI +station = ('krzn', 0.0014448122937697648) +zone = ('wiz006', 0.0019866540767439077) + +[fips5501319925] +centroid = (0.79891250959502824, -1.6071553573850004) +description = Dewey town, WI +station = ('kube', 0.0049209913248242278) +zone = ('wiz006', 0.003787523359675281) + +[fips5501325] +centroid = (0.79264000570287074, -1.6063690341970993) +description = Almena village, WI +station = ('kube', 0.00159760787795148) +zone = ('wiz015', 0.0023299147446308255) + +[fips5501330450] +centroid = (0.79901787512197109, -1.6176268791113608) +description = Grantsburg village, WI +station = ('kros', 0.0035873239700174556) +zone = ('wiz006', 0.0040988372506069737) + +[fips5501330475] +centroid = (0.79877372101290955, -1.6182364178993274) +description = Grantsburg town, WI +station = ('kros', 0.0031005339090027346) +zone = ('mnz053', 0.0051570820850786138) + +[fips5501337650] +centroid = (0.80188676007993676, -1.6098692920119739) +description = Jackson town, WI +station = ('krzn', 0.0026780797489804717) +zone = ('wiz006', 0.0021212755326483063) + +[fips5501340975] +centroid = (0.79882648231619735, -1.6099583910702882) +description = La Follette town, WI +station = ('krzn', 0.0018221592589793638) +zone = ('wiz006', 0.0022180058140349899) + +[fips5501344325] +centroid = (0.80050903207499746, -1.6139630664922817) +description = Lincoln town, WI +station = ('krzn', 0.0014368887823215997) +zone = ('wiz006', 0.0012854461770718958) + +[fips5501350650] +centroid = (0.80030271670411923, -1.6115710229392535) +description = Meenon town, WI +station = ('krzn', 0.00070069320041058977) +zone = ('wiz006', 0.0004107688989743805) + +[fips5501359075] +centroid = (0.80180760939835893, -1.6118460519227826) +description = Oakland town, WI +station = ('krzn', 0.0020643812364620857) +zone = ('wiz006', 0.0013657382271951648) + +[fips5501369325] +centroid = (0.79729059257444246, -1.6072003868797018) +description = Roosevelt town, WI +station = ('kube', 0.0033750796304355562) +zone = ('wiz006', 0.0046672654233731676) + +[fips5501370225] +centroid = (0.80031851193384973, -1.6075147206779858) +description = Rusk town, WI +station = ('krzn', 0.0033147792154785585) +zone = ('wiz006', 0.0032092821436426945) + +[fips5501371450] +centroid = (0.80048438802595923, -1.6096798888815476) +description = Sand Lake town, WI +station = ('krzn', 0.0019025144257907116) +zone = ('wiz006', 0.001698595388395932) + +[fips5501372225] +centroid = (0.80167302705973764, -1.6072112428276493) +description = Scott town, WI +station = ('krzn', 0.0039685384111228647) +zone = ('wiz006', 0.0036259934040577253) + +[fips5501374175] +centroid = (0.79906864674991163, -1.6123644147106251) +description = Siren village, WI +station = ('krzn', 0.00069867587535349948) +zone = ('wiz006', 0.0013970023527069065) + +[fips5501374200] +centroid = (0.79885191176339898, -1.6114959214215401) +description = Siren town, WI +station = ('krzn', 0.0010322391595700715) +zone = ('wiz006', 0.001660932467432817) + +[fips5501378775] +centroid = (0.80327246423955767, -1.6106208133345901) +description = Swiss town, WI +station = ('krzn', 0.0036827006602863509) +zone = ('wiz006', 0.0030037291057388336) + +[fips5501380375] +centroid = (0.7973431967980974, -1.6159523578671198) +description = Trade Lake town, WI +station = ('krzn', 0.0035598143550386436) +zone = ('wiz006', 0.0041029185091101998) + +[fips5501381500] +centroid = (0.80186042306152416, -1.6140740868860013) +description = Union town, WI +station = ('krzn', 0.002472443767108764) +zone = ('wiz006', 0.0019560981416346574) + +[fips5501384975] +centroid = (0.80319436075553086, -1.6077669382081918) +description = Webb Lake town, WI +station = ('krzn', 0.0046189353428475839) +zone = ('wiz006', 0.0040818475845213337) + +[fips5501385025] +centroid = (0.80075749714731148, -1.6120403943349924) +description = Webster village, WI +station = ('krzn', 0.001005650680997201) +zone = ('wiz006', 0.00030725963685470498) + +[fips5501385850] +centroid = (0.80049370808416498, -1.6165957036826974) +description = West Marshland town, WI +station = ('k04w', 0.0042119346898420703) +zone = ('wiz006', 0.0031178426359401599) + +[fips5501388900] +centroid = (0.79905049532569083, -1.6160582818994234) +description = Wood River town, WI +station = ('krzn', 0.0027784456666086277) +zone = ('wiz006', 0.0030838596987463897) + +[fips5501400] +centroid = (0.772500442024598, -1.5604751477303029) +description = Almond village, WI +station = ('ky50', 0.0040491928260771399) +zone = ('wiz045', 0.0033116852904027713) + +[fips55015] +centroid = (0.7693133835439937, -1.5395921436038507) +description = Calumet County, WI +station = ('katw', 0.0048483185747636316) +zone = ('wiz049', 9.3327934251172636e-05) + +[fips5501502375] +centroid = (0.77206901408679762, -1.542379451872578) +description = Appleton city, WI +station = ('katw', 0.0018266231112318331) +zone = ('wiz049', 0.0033151835328137156) + +[fips5501509725] +centroid = (0.77101687725381773, -1.5370900046816065) +description = Brillion city, WI +station = ('kgrb', 0.0054239807818292005) +zone = ('wiz049', 0.0024908892022791097) + +[fips5501509750] +centroid = (0.77151625085939834, -1.5378614576642806) +description = Brillion town, WI +station = ('kgrb', 0.0048710132873346435) +zone = ('wiz049', 0.0025166070242502391) + +[fips5501510350] +centroid = (0.76729152432531345, -1.5407730857356274) +description = Brothertown town, WI +station = ('kfld', 0.0042719981834107171) +zone = ('wiz049', 0.0022192036749429577) + +[fips5501514000] +centroid = (0.76816488708301134, -1.5371326256219402) +description = Charlestown town, WI +station = ('ksbm', 0.0048736321197727101) +zone = ('wiz049', 0.0022011635504968017) + +[fips5501514475] +centroid = (0.76847175087209707, -1.5387113631968317) +description = Chilton city, WI +station = ('ksbm', 0.0058242242082185095) +zone = ('wiz049', 0.0011434860626405737) + +[fips5501514500] +centroid = (0.76907132383003463, -1.5392731148698786) +description = Chilton town, WI +station = ('katw', 0.0051784141364440003) +zone = ('wiz049', 0.00042587497689232254) + +[fips5501532800] +centroid = (0.77142186345345054, -1.5418787343634734) +description = Harrison town, WI +station = ('katw', 0.0023442959413381191) +zone = ('wiz049', 0.0025814152449756965) + +[fips5501534575] +centroid = (0.77042262755009872, -1.5386940146240669) +description = Hilbert village, WI +station = ('kgrb', 0.00596777635106967) +zone = ('wiz049', 0.0012737313854695861) + +[fips5501539525] +centroid = (0.76647888157229238, -1.536681300930667) +description = Kiel city, WI +station = ('ksbm', 0.0033775217671629509) +zone = ('wiz049', 0.003614096099288555) + +[fips5501550] +centroid = (0.78190685912163638, -1.5959218249072191) +description = Altoona city, WI +station = ('keau', 0.001283962822096896) +zone = ('wiz028', 0.0022919306064713564) + +[fips5501550825] +centroid = (0.77175089292403654, -1.5426159788928084) +description = Menasha city, WI +station = ('katw', 0.0017337193712098932) +zone = ('wiz049', 0.0031715561693438526) + +[fips5501556800] +centroid = (0.76705862758992727, -1.5375457101493022) +description = New Holstein city, WI +station = ('ksbm', 0.0042281769189011845) +zone = ('wiz049', 0.0027810548368643558) + +[fips5501556825] +centroid = (0.76668765785741599, -1.5375046250987103) +description = New Holstein town, WI +station = ('ksbm', 0.0039608862957322176) +zone = ('wiz049', 0.0031113436938106551) + +[fips5501564675] +centroid = (0.77001275442856043, -1.5376648114174583) +description = Potter village, WI +station = ('kgrb', 0.0063801186073839684) +zone = ('wiz049', 0.0015927130996623662) + +[fips5501566275] +centroid = (0.76989161112517945, -1.5375113795229154) +description = Rantoul town, WI +station = ('ksbm', 0.0064908039472554423) +zone = ('wiz049', 0.0016521238190055408) + +[fips5501573525] +centroid = (0.77103293428293607, -1.5406897288105523) +description = Sherwood village, WI +station = ('katw', 0.0032808963622969487) +zone = ('wiz049', 0.0018091164037830482) + +[fips5501577400] +centroid = (0.76913949639061752, -1.5412951486214841) +description = Stockbridge village, WI +station = ('katw', 0.004093383394864738) +zone = ('wiz049', 0.0011729431147571732) + +[fips5501577425] +centroid = (0.7685661208247524, -1.5414901018989318) +description = Stockbridge town, WI +station = ('kosh', 0.0031179802643575903) +zone = ('wiz049', 0.0015206779551972577) + +[fips5501589000] +centroid = (0.77114234897374367, -1.5394666544306324) +description = Woodville town, WI +station = ('kgrb', 0.0053140148289373777) +zone = ('wiz049', 0.00177907986683248) + +[fips5501650] +centroid = (0.79423110020886645, -1.5356731987547152) +description = Amberg CDP, WI +station = ('kimt', 0.0056446088897722608) +zone = ('wiz013', 0.0016794884250281202) + +[fips55017] +centroid = (0.78660404628423619, -1.5931977150107064) +description = Chippewa County, WI +station = ('keau', 0.0043093727239862396) +zone = ('wiz027', 4.4760702194617799e-05) + +[fips5501702175] +centroid = (0.7857259013243878, -1.5927176272933605) +description = Anson town, WI +station = ('keau', 0.0038646383085347638) +zone = ('wiz027', 0.0009313911558681946) + +[fips5501703075] +centroid = (0.78644843272812837, -1.5909642695268069) +description = Arthur town, WI +station = ('keau', 0.0052719077142450556) +zone = ('wiz027', 0.0015414869919617466) + +[fips5501703725] +centroid = (0.78805842914992308, -1.5989524495269671) +description = Auburn town, WI +station = ('krpd', 0.0050371594384651212) +zone = ('wiz025', 0.0050096320334914769) + +[fips5501707525] +centroid = (0.78972952954883002, -1.5920520285298196) +description = Birch Creek town, WI +station = ('krcx', 0.0050918962397307269) +zone = ('wiz027', 0.0032121664597667661) + +[fips5501708225] +centroid = (0.78719285056068911, -1.5968286107200929) +description = Bloomer city, WI +station = ('keau', 0.004123037648976033) +zone = ('wiz027', 0.0026724541927540231) + +[fips5501708250] +centroid = (0.78828670076279139, -1.596241586679477) +description = Bloomer town, WI +station = ('keau', 0.0052250694895500799) +zone = ('wiz027', 0.0027603526132506362) + +[fips5501709075] +centroid = (0.78458267575774654, -1.588944173090671) +description = Boyd village, WI +station = ('keau', 0.005687018114520501) +zone = ('wiz027', 0.0035895495632809896) + +[fips5501711750] +centroid = (0.7845220430195321, -1.5909332375727065) +description = Cadott village, WI +station = ('keau', 0.0043245661838200323) +zone = ('wiz027', 0.0026037979770163694) + +[fips5501714575] +centroid = (0.78426174461488973, -1.595044831864677) +description = Chippewa Falls city, WI +station = ('keau', 0.0016637578205064879) +zone = ('wiz027', 0.0027084252236574857) + +[fips5501715350] +centroid = (0.78821556114248015, -1.5930689446184942) +description = Cleveland town, WI +station = ('keau', 0.005744731574131353) +zone = ('wiz027', 0.0016068113547547799) + +[fips5501716125] +centroid = (0.7869766566262445, -1.5881516714372179) +description = Colburn town, WI +station = ('krcx', 0.0070903441598392158) +zone = ('wiz027', 0.0035377924961987051) + +[fips5501716800] +centroid = (0.78674829774691357, -1.5984284667789335) +description = Cooks Valley town, WI +station = ('keau', 0.0038784986354646568) +zone = ('wiz025', 0.0044879842283080274) + +[fips5501717100] +centroid = (0.78825703016550752, -1.5908745596032543) +description = Cornell city, WI +station = ('krcx', 0.0060946131337870045) +zone = ('wiz027', 0.0022931523608587553) + +[fips5501719625] +centroid = (0.78529892397617995, -1.5882046247267234) +description = Delmar town, WI +station = ('keau', 0.0064040657878123505) +zone = ('wiz027', 0.0037225212823844534) + +[fips5501721600] +centroid = (0.78653208635917649, -1.5942460470259168) +description = Eagle Point town, WI +station = ('keau', 0.0038674827401309494) +zone = ('wiz027', 0.00078865219734708847) + +[fips5501722300] +centroid = (0.78309799397624491, -1.5966385269112582) +description = Eau Claire city, WI +station = ('keau', 4.2756549703366988e-05) +zone = ('wiz028', 0.0034500511369091459) + +[fips5501722750] +centroid = (0.78367711167534915, -1.588598964417919) +description = Edson town, WI +station = ('keau', 0.005761475487458867) +zone = ('wiz027', 0.0043463240455958573) + +[fips5501724375] +centroid = (0.78811976001983808, -1.5903182533574736) +description = Estella town, WI +station = ('krcx', 0.0061213243022570718) +zone = ('wiz027', 0.0024963920714047749) + +[fips5501725] +centroid = (0.79074644563750462, -1.6120576730945873) +description = Amery city, WI +station = ('krnh', 0.0034909107389741296) +zone = ('wiz014', 0.0028658489889152473) + +[fips5501729700] +centroid = (0.78516130476466017, -1.5908698646675665) +description = Goetz town, WI +station = ('keau', 0.0046176330573000643) +zone = ('wiz027', 0.0021585871123603363) + +[fips5501732125] +centroid = (0.78325271741443425, -1.5947720543558828) +description = Hallie town, WI +station = ('keau', 0.0013680602894274249) +zone = ('wiz028', 0.0028388039324729118) + +[fips5501736000] +centroid = (0.78517179419346461, -1.5985484407117156) +description = Howard town, WI +station = ('keau', 0.0024805291709481645) +zone = ('wiz025', 0.0038478531648717968) + +[fips5501740900] +centroid = (0.78378870802772171, -1.5934007317092984) +description = Lafayette town, WI +station = ('keau', 0.0024353034040890155) +zone = ('wiz027', 0.002826977477173389) + +[fips5501741525] +centroid = (0.78350880957557945, -1.5955850636280469) +description = Lake Hallie village, WI +station = ('keau', 0.00089416115870223308) +zone = ('wiz028', 0.0033246001865646002) + +[fips5501741550] +centroid = (0.78969031200053774, -1.5900601540676886) +description = Lake Holcombe town, WI +station = ('krcx', 0.0045564558347944949) +zone = ('wiz027', 0.0037673021183126554) + +[fips5501750] +centroid = (0.77576968805967872, -1.5582593300718486) +description = Amherst village, WI +station = ('kste', 0.0035248643668478732) +zone = ('wiz036', 0.0027804455144601428) + +[fips5501756350] +centroid = (0.78885250159970288, -1.5981475734891173) +description = New Auburn village, WI +station = ('krpd', 0.0046029041074314696) +zone = ('wiz027', 0.0041876871531204745) + +[fips5501769975] +centroid = (0.78927248017761031, -1.5883304106059146) +description = Ruby town, WI +station = ('krcx', 0.0047944488042965397) +zone = ('wiz027', 0.0043097804190780752) + +[fips5501771275] +centroid = (0.78970190098677107, -1.5956052570874923) +description = Sampson town, WI +station = ('krpd', 0.0052560785751329447) +zone = ('wiz027', 0.0035493909654534207) + +[fips5501773875] +centroid = (0.78370355341351694, -1.5912565074567606) +description = Sigel town, WI +station = ('keau', 0.0038981547027964322) +zone = ('wiz027', 0.0031951373637847378) + +[fips5501776625] +centroid = (0.78469140977014562, -1.587367163391739) +description = Stanley city, WI +station = ('keau', 0.0067949698323724796) +zone = ('wiz027', 0.0045058992519048397) + +[fips5501779875] +centroid = (0.78529707392717274, -1.5964627024424121) +description = Tilden town, WI +station = ('keau', 0.0022315914362259436) +zone = ('wiz027', 0.0026932480260156038) + +[fips5501786537] +centroid = (0.78378694524517722, -1.597987509343417) +description = Wheaton town, WI +station = ('keau', 0.0011677360039754484) +zone = ('wiz025', 0.0042371482427011643) + +[fips5501788875] +centroid = (0.78682292802572873, -1.5963863442876374) +description = Woodmohr town, WI +station = ('keau', 0.0037578293275725115) +zone = ('wiz027', 0.0023060640049392895) + +[fips5501800] +centroid = (0.77611960912141098, -1.5588979460451533) +description = Amherst Junction village, WI +station = ('kste', 0.0029583654865072708) +zone = ('wiz036', 0.002285875300704837) + +[fips55019] +centroid = (0.78074853645696529, -1.5814463433438586) +description = Clark County, WI +station = ('kmfi', 0.0055786944973210996) +zone = ('wiz029', 3.042409167437979e-05) + +[fips5501900100] +centroid = (0.78449846362133768, -1.5765015288669859) +description = Abbotsford city, WI +station = ('kmdz', 0.0026802135421079743) +zone = ('wiz017', 0.0050688305043844585) + +[fips5501905750] +centroid = (0.78220023151560414, -1.579550392177417) +description = Beaver town, WI +station = ('kmdz', 0.0055337068800218282) +zone = ('wiz029', 0.0019816947685340354) + +[fips5501911425] +centroid = (0.78197883649998867, -1.5860251448232956) +description = Butler town, WI +station = ('keau', 0.0076380263604115825) +zone = ('wiz029', 0.0034469189039364931) + +[fips5501916150] +centroid = (0.78385599047038612, -1.5764125694350115) +description = Colby city, WI +station = ('kmdz', 0.0033147259122909378) +zone = ('wiz029', 0.0047384489570784808) + +[fips5501916175] +centroid = (0.7835703847915898, -1.5774371126125173) +description = Colby town, WI +station = ('kmdz', 0.0037165583060301084) +zone = ('wiz029', 0.0040096868101539571) + +[fips5501918125] +centroid = (0.78457449016355463, -1.5784670139508266) +description = Curtiss village, WI +station = ('kmdz', 0.0030856202381658831) +zone = ('wiz029', 0.0043649827139322535) + +[fips5501920025] +centroid = (0.77595134192822623, -1.583665616754232) +description = Dewhurst town, WI +station = ('kbck', 0.0039049537617547089) +zone = ('wiz034', 0.0025798409625321485) + +[fips5501920450] +centroid = (0.78543811398402641, -1.5765972950830425) +description = Dorchester village, WI +station = ('kmdz', 0.0017615414919654876) +zone = ('wiz017', 0.0042021357053370909) + +[fips5501922250] +centroid = (0.78074853645696529, -1.5814463433438586) +description = Eaton town, WI +station = ('kmfi', 0.0055786944973210996) +zone = ('wiz029', 3.042409167437979e-05) + +[fips5501926775] +centroid = (0.77994315427363259, -1.5858702643054736) +description = Foster town, WI +station = ('kbck', 0.0076368593018256879) +zone = ('wiz029', 0.0032274938615571291) + +[fips5501927775] +centroid = (0.77921467129714272, -1.5772164680884802) +description = Fremont town, WI +station = ('kmfi', 0.0023015897944845091) +zone = ('wiz029', 0.0034054567228387028) + +[fips5501930275] +centroid = (0.77744794430851882, -1.5795981792923368) +description = Grant town, WI +station = ('kmfi', 0.0042803501212849071) +zone = ('wiz029', 0.0035795795766069864) + +[fips5501930425] +centroid = (0.778216011352444, -1.5788593465133824) +description = Granton village, WI +station = ('kmfi', 0.0035494606361079093) +zone = ('wiz029', 0.0031598665566869252) + +[fips5501931275] +centroid = (0.78357682505652959, -1.5793123292674451) +description = Green Grove town, WI +station = ('kmdz', 0.0042485543131497829) +zone = ('wiz029', 0.0032021905991985815) + +[fips5501931575] +centroid = (0.78130320209324922, -1.5812499938030091) +description = Greenwood city, WI +station = ('kmdz', 0.0069048507277662532) +zone = ('wiz029', 0.00055965482573224238) + +[fips5501933900] +centroid = (0.78049467831726271, -1.5835597799883909) +description = Hendren town, WI +station = ('kbck', 0.0083188560508945051) +zone = ('wiz029', 0.0015030089626139474) + +[fips5501934200] +centroid = (0.77760240594732033, -1.583653102743495) +description = Hewett town, WI +station = ('kbck', 0.0054796727852587284) +zone = ('wiz029', 0.0035229814139016466) + +[fips5501935050] +centroid = (0.78528656704507582, -1.5816237386090313) +description = Hixon town, WI +station = ('kmdz', 0.0043363156645360281) +zone = ('wiz017', 0.0040764738650702487) + +[fips5501935125] +centroid = (0.7853122408383727, -1.5796242370580691) +description = Hoard town, WI +station = ('kmdz', 0.0031077433406106292) +zone = ('wiz017', 0.0037777193412424212) + +[fips5501943700] +centroid = (0.77618828782747695, -1.5819418074119147) +description = Levis town, WI +station = ('kbck', 0.0046919356180656182) +zone = ('wiz034', 0.0033864133183930567) + +[fips5501945700] +centroid = (0.78374355635997262, -1.5814136533269687) +description = Longwood town, WI +station = ('kmdz', 0.0050850958564284086) +zone = ('wiz029', 0.0029761178503179991) + +[fips5501946075] +centroid = (0.78080091378781769, -1.5794492503472641) +description = Loyal city, WI +station = ('kmfi', 0.0042755304225601809) +zone = ('wiz029', 0.0014425823254173758) + +[fips5501946100] +centroid = (0.78054377442912126, -1.5796514641944002) +description = Loyal town, WI +station = ('kmfi', 0.0043080172384013862) +zone = ('wiz029', 0.001317903845035972) + +[fips5501946625] +centroid = (0.77775164905165839, -1.5771898343640947) +description = Lynn town, WI +station = ('kmfi', 0.0025935593051924538) +zone = ('wiz029', 0.0042907660203262733) + +[fips5501950] +centroid = (0.77972652400687492, -1.5415021621240632) +description = Angelica CDP, WI +station = ('kgrb', 0.004083002231231014) +zone = ('wiz074', 0.0042751744048712126) + +[fips5501950175] +centroid = (0.78526536129466395, -1.5775685882650701) +description = Mayville town, WI +station = ('kmdz', 0.0021659170955055261) +zone = ('wiz017', 0.0040704191539684877) + +[fips5501950275] +centroid = (0.78206090188141741, -1.5835482957219127) +description = Mead town, WI +station = ('kmdz', 0.0073405092692282563) +zone = ('wiz029', 0.0019568170886738235) + +[fips5501951125] +centroid = (0.77762509522759626, -1.5859396585965329) +description = Mentor town, WI +station = ('kbck', 0.0053214537555537397) +zone = ('wiz034', 0.0041838954281711981) + +[fips5501955800] +centroid = (0.7777242299291095, -1.5811074004031214) +description = Neillsville city, WI +station = ('kbck', 0.0063071493001723112) +zone = ('wiz029', 0.0030550653589910617) + +[fips5501960825] +centroid = (0.78452752335338349, -1.5807565892234703) +description = Owen city, WI +station = ('kmdz', 0.0042215630432134599) +zone = ('wiz029', 0.0037944972963776221) + +[fips5501963000] +centroid = (0.77765192093819946, -1.5816712813778555) +description = Pine Valley town, WI +station = ('kbck', 0.0060465601947508217) +zone = ('wiz029', 0.0031188704523222462) + +[fips5501967025] +centroid = (0.78378991230490558, -1.583534542527407) +description = Reseburg town, WI +station = ('kmdz', 0.0062513506094614372) +zone = ('wiz029', 0.0033552833370106877) + +[fips5501972450] +centroid = (0.77929441539066624, -1.583660956725129) +description = Seif town, WI +station = ('kbck', 0.0071264502137040704) +zone = ('wiz029', 0.0021391165216813495) + +[fips5501973350] +centroid = (0.78064313602343738, -1.5773457097195904) +description = Sherman town, WI +station = ('kmfi', 0.0028942950349106081) +zone = ('wiz029', 0.002939350644277063) + +[fips5501973550] +centroid = (0.77632643063777229, -1.5773507188145437) +description = Sherwood town, WI +station = ('kmfi', 0.0035853016513768036) +zone = ('wiz029', 0.0053259639295222252) + +[fips5501976625] +centroid = (0.78461899605948049, -1.5867215311948413) +description = Stanley city, WI +station = ('keau', 0.0072242076254434399) +zone = ('wiz027', 0.0049515481113229527) + +[fips5501979625] +centroid = (0.78467179226935335, -1.5848007265398514) +description = Thorp city, WI +station = ('keau', 0.0085673789203842676) +zone = ('wiz029', 0.004559160715615085) + +[fips5501979650] +centroid = (0.7853267619777492, -1.5859903953178882) +description = Thorp town, WI +station = ('keau', 0.0079004003930178302) +zone = ('wiz027', 0.0052093461602999835) + +[fips5501981825] +centroid = (0.78228652059382275, -1.5772099580103702) +description = Unity town, WI +station = ('kmfi', 0.0040029765701391062) +zone = ('wiz029', 0.0033899094825452889) + +[fips5501981850] +centroid = (0.78281364493451, -1.5763739627519575) +description = Unity village, WI +station = ('kmfi', 0.0041721578064189135) +zone = ('wiz029', 0.0041608473803536996) + +[fips5501983350] +centroid = (0.78210036377580505, -1.5815687607375934) +description = Warner town, WI +station = ('kmdz', 0.0063763386295614842) +zone = ('wiz029', 0.0013340650869642617) + +[fips5501983575] +centroid = (0.77592666297260304, -1.579804163050657) +description = Washburn town, WI +station = ('kbck', 0.0055186894152266554) +zone = ('wiz029', 0.0049859591564208987) + +[fips5501985925] +centroid = (0.77917384804593848, -1.5813907197005976) +description = Weston town, WI +station = ('kmfi', 0.0052645980810065969) +zone = ('wiz029', 0.0015952056350045582) + +[fips5501988275] +centroid = (0.78454003736412026, -1.5812468871169405) +description = Withee village, WI +station = ('kmdz', 0.0044901489247114231) +zone = ('wiz029', 0.0037758360072350987) + +[fips5501988300] +centroid = (0.78525424354732887, -1.5835919464065054) +description = Withee town, WI +station = ('kmdz', 0.0056332155764628423) +zone = ('wiz029', 0.0047296946045743719) + +[fips5501989125] +centroid = (0.78372870360803815, -1.585999785189264) +description = Worden town, WI +station = ('keau', 0.0075994292835153644) +zone = ('wiz029', 0.0043643776086892882) + +[fips5501989425] +centroid = (0.77907476570430279, -1.579372717659564) +description = York town, WI +station = ('kmfi', 0.0038267084260671541) +zone = ('wiz029', 0.0022605146586178403) + +[fips5502075] +centroid = (0.78557246942984504, -1.5569723766413055) +description = Aniwa village, WI +station = ('kaig', 0.0027823377865598443) +zone = ('wiz019', 0.0047131168689188915) + +[fips55021] +centroid = (0.75872747293845755, -1.559110858760604) +description = Columbia County, WI +station = ('kdll', 0.0056433789175787093) +zone = ('wiz057', 0.00010295887753276511) + +[fips5502102800] +centroid = (0.75634101443903556, -1.5598447871643601) +description = Arlington village, WI +station = ('kmsn', 0.0035339545136786436) +zone = ('wiz057', 0.0023445243598059092) + +[fips5502102825] +centroid = (0.75630570642826789, -1.5608810065945617) +description = Arlington town, WI +station = ('kmsn', 0.003639197089342567) +zone = ('wiz057', 0.0026393567435138827) + +[fips5502111900] +centroid = (0.75868479963824631, -1.5629572153661493) +description = Caledonia town, WI +station = ('kdll', 0.0029320935955661448) +zone = ('wiz057', 0.0027498498959407421) + +[fips5502112200] +centroid = (0.7599400578895732, -1.5552887622316616) +description = Cambria village, WI +station = ('kunu', 0.0055426805959145967) +zone = ('wiz057', 0.0031028750354595842) + +[fips5502116450] +centroid = (0.75635382515574523, -1.5538614843292584) +description = Columbus city, WI +station = ('kunu', 0.0044328869120157663) +zone = ('wiz057', 0.0044796488309715278) + +[fips5502116475] +centroid = (0.75619086376348665, -1.5547013891251953) +description = Columbus town, WI +station = ('kmsn', 0.0048322751821975067) +zone = ('wiz057', 0.004062565429436709) + +[fips5502117325] +centroid = (0.75921290136331476, -1.5543859732227749) +description = Courtland town, WI +station = ('kunu', 0.0046915731493175029) +zone = ('wiz057', 0.0035184412468221462) + +[fips5502119375] +centroid = (0.7578072480903435, -1.5611635055872897) +description = Dekorra town, WI +station = ('kdll', 0.0044644065734752462) +zone = ('wiz057', 0.0016673221807285204) + +[fips5502120775] +centroid = (0.75796636975824794, -1.555906189907847) +description = Doylestown village, WI +station = ('kunu', 0.0056219023049287652) +zone = ('wiz057', 0.0024609401476696291) + +[fips5502125150] +centroid = (0.75722594872967441, -1.5541366005792501) +description = Fall River village, WI +station = ('kunu', 0.0043962985222335124) +zone = ('wiz057', 0.0039164780015267494) + +[fips5502126725] +centroid = (0.76111263989423306, -1.5607270511012432) +description = Fort Winnebago town, WI +station = ('kdll', 0.0046504027053583157) +zone = ('wiz057', 0.0027242847425555969) + +[fips5502126875] +centroid = (0.75777687936135885, -1.5543116221966402) +description = Fountain Prairie town, WI +station = ('kunu', 0.0044671068677124958) +zone = ('wiz057', 0.0036293110559223545) + +[fips5502128000] +centroid = (0.7607841514757151, -1.554498023360753) +description = Friesland village, WI +station = ('kunu', 0.0054032014201756268) +zone = ('wiz047', 0.0036849987433377101) + +[fips5502132375] +centroid = (0.75627865382486192, -1.5564350595777865) +description = Hampden town, WI +station = ('kmsn', 0.0040990175257057896) +zone = ('wiz057', 0.0030807907501304776) + +[fips5502143125] +centroid = (0.75606605526867654, -1.5585148462743406) +description = Leeds town, WI +station = ('kmsn', 0.0033183437190372855) +zone = ('wiz057', 0.0026111088367526776) + +[fips5502143775] +centroid = (0.76094048061681629, -1.5632364505931757) +description = Lewiston town, WI +station = ('kdll', 0.0029067717843215064) +zone = ('wiz057', 0.0037440362315780493) + +[fips5502145350] +centroid = (0.7559986157463795, -1.5627681438482806) +description = Lodi city, WI +station = ('kc29', 0.0035894383866467813) +zone = ('wiz057', 0.0037126159759819093) + +[fips5502145375] +centroid = (0.75641375976225877, -1.5626852232555184) +description = Lodi town, WI +station = ('kc29', 0.0040028799377816978) +zone = ('wiz057', 0.0033843742084766208) + +[fips5502146050] +centroid = (0.75748588061517397, -1.5589179649716736) +description = Lowville town, WI +station = ('kmsn', 0.0046833495450116216) +zone = ('wiz057', 0.0011620399068705063) + +[fips5502149150] +centroid = (0.76107466152970971, -1.558719189423164) +description = Marcellon town, WI +station = ('kdll', 0.0060355326229505849) +zone = ('wiz057', 0.0024627995264452705) + +[fips5502157025] +centroid = (0.76108265513768381, -1.5656897901095341) +description = Newport town, WI +station = ('kdll', 0.0016845888464669847) +zone = ('wiz056', 0.0043789180632567166) + +[fips5502160687] +centroid = (0.75759731988791368, -1.556704486054417) +description = Otsego town, WI +station = ('kmsn', 0.0051804051298822811) +zone = ('wiz057', 0.002067884065507058) + +[fips5502160925] +centroid = (0.75943516904355624, -1.560409697883353) +description = Pacific town, WI +station = ('kdll', 0.0046345583534369598) +zone = ('wiz057', 0.0012053686124142325) + +[fips5502161100] +centroid = (0.75986874373633673, -1.5586252208962366) +description = Pardeeville village, WI +station = ('kmsn', 0.0070756408599358415) +zone = ('wiz057', 0.0012966392496936193) + +[fips5502164100] +centroid = (0.76007258073967709, -1.5614739298480493) +description = Portage city, WI +station = ('kdll', 0.0038873511426279861) +zone = ('wiz057', 0.0022058180773112824) + +[fips5502164900] +centroid = (0.75733614881864519, -1.5604079001942235) +description = Poynette village, WI +station = ('kmsn', 0.0045708165452867109) +zone = ('wiz057', 0.0015788563788825438) + +[fips5502166150] +centroid = (0.75994517170428155, -1.5535179337192955) +description = Randolph village, WI +station = ('kunu', 0.0043715951630827884) +zone = ('wiz047', 0.0045358228619012024) + +[fips5502166175] +centroid = (0.76121728983618264, -1.5539495885498988) +description = Randolph town, WI +station = ('kunu', 0.0053239605888863555) +zone = ('wiz047', 0.0032447350814188629) + +[fips5502168100] +centroid = (0.75835505458266705, -1.5575716354399778) +description = Rio village, WI +station = ('kmsn', 0.0057029804315522686) +zone = ('wiz057', 0.0011924172983310594) + +[fips5502172250] +centroid = (0.76105490440257717, -1.5566372908782151) +description = Scott town, WI +station = ('kunu', 0.0068890589646864947) +zone = ('wiz057', 0.0030383127920837636) + +[fips5502176225] +centroid = (0.75927775779831885, -1.556643800956325) +description = Springvale town, WI +station = ('kunu', 0.0062977795873390705) +zone = ('wiz057', 0.0019420906611930541) + +[fips5502186100] +centroid = (0.75616873298857135, -1.5647570861572682) +description = West Point town, WI +station = ('kdll', 0.0037384802566915484) +zone = ('wiz056', 0.0041340699655492037) + +[fips5502188150] +centroid = (0.76141922443063836, -1.5666233492731334) +description = Wisconsin Dells city, WI +station = ('kdll', 0.0018223255080865089) +zone = ('wiz056', 0.0042107059145683702) + +[fips5502189300] +centroid = (0.75907767325287034, -1.558725664594689) +description = Wyocena village, WI +station = ('kmsn', 0.0062812428031379262) +zone = ('wiz057', 0.00054837579822119317) + +[fips5502189325] +centroid = (0.75928681605713666, -1.5584453821701112) +description = Wyocena town, WI +station = ('kmsn', 0.0065094353813235179) +zone = ('wiz057', 0.00083807859830556451) + +[fips5502250] +centroid = (0.7878637725784482, -1.5560522216063615) +description = Antigo city, WI +station = ('kaig', 0.00069668564823671447) +zone = ('wiz019', 0.0023493832614114767) + +[fips55023] +centroid = (0.75485333069122074, -1.5873984222386421) +description = Crawford County, WI +station = ('kovs', 0.0038285818387547577) +zone = ('wiz054', 0.00031489746872535477) + +[fips5502306225] +centroid = (0.75558579301840523, -1.5852037754240145) +description = Bell Center village, WI +station = ('kovs', 0.0030660123274263763) +zone = ('wiz054', 0.0016229441286800101) + +[fips5502309550] +centroid = (0.75080809381741087, -1.5898151272940013) +description = Bridgeport town, WI +station = ('kpdc', 0.00045185302122970598) +zone = ('wiz054', 0.0043604135135164009) + +[fips5502315075] +centroid = (0.75677033052844123, -1.5838216840959451) +description = Clayton town, WI +station = ('kovs', 0.0037472316130210742) +zone = ('wiz054', 0.0031478076703484173) + +[fips5502319850] +centroid = (0.75784611657278556, -1.5916077200621395) +description = De Soto village, WI +station = ('ky51', 0.0046398381404799812) +zone = ('iaz011', 0.0033582997659978133) + +[fips5502321900] +centroid = (0.75337414669686309, -1.5888227505346098) +description = Eastman village, WI +station = ('kpdc', 0.0027602959495478456) +zone = ('wiz054', 0.001833613427251724) + +[fips5502321925] +centroid = (0.75372336962689457, -1.5875796397748769) +description = Eastman town, WI +station = ('kpdc', 0.0035264353675935425) +zone = ('wiz054', 0.0010251138833775157) + +[fips5502325725] +centroid = (0.75665754735217738, -1.589918206439624) +description = Ferryville village, WI +station = ('ky51', 0.0046910821048676207) +zone = ('wiz054', 0.0028837034017685607) + +[fips5502327700] +centroid = (0.75702045366354453, -1.5896436661482853) +description = Freeman town, WI +station = ('ky51', 0.0042775578788975758) +zone = ('wiz054', 0.0030152864204344774) + +[fips5502328450] +centroid = (0.75611752502831775, -1.5856067195884225) +description = Gays Mills village, WI +station = ('kovs', 0.0036691020161123398) +zone = ('wiz054', 0.0017853441655815417) + +[fips5502332500] +centroid = (0.75483231692702668, -1.585483481889939) +description = Haney town, WI +station = ('kovs', 0.0026491609033485082) +zone = ('wiz054', 0.0011490133858393023) + +[fips5502346675] +centroid = (0.75490125743248049, -1.5891110440204543) +description = Lynxville village, WI +station = ('kpdc', 0.0041394990106606109) +zone = ('wiz054', 0.0015221128140482489) + +[fips5502349275] +centroid = (0.75316737754037921, -1.5844819945118522) +description = Marietta town, WI +station = ('kovs', 0.0012847555868421921) +zone = ('wiz054', 0.0023989342026443307) + +[fips5502354900] +centroid = (0.75601107739723861, -1.5870141530972308) +description = Mount Sterling village, WI +station = ('kovs', 0.0042654841083617084) +zone = ('wiz054', 0.0013396279357087691) + +[fips5502365050] +centroid = (0.75125315277666949, -1.5906714730914921) +description = Prairie du Chien city, WI +station = ('kpdc', 0.00041880642840677135) +zone = ('wiz054', 0.0043228053003162622) + +[fips5502365075] +centroid = (0.75184181742678202, -1.5898187924854303) +description = Prairie du Chien town, WI +station = ('kpdc', 0.0010642922642381725) +zone = ('wiz054', 0.0034786450587500446) + +[fips5502372275] +centroid = (0.75483791943392564, -1.5834494402730799) +description = Scott town, WI +station = ('kovs', 0.0018077090293391201) +zone = ('wiz054', 0.0026246688061411162) + +[fips5502372500] +centroid = (0.75520585229353854, -1.5881925295950072) +description = Seneca town, WI +station = ('kovs', 0.004504186097619) +zone = ('wiz054', 0.00099169610390707958) + +[fips5502374550] +centroid = (0.75733597428572008, -1.5842962216662699) +description = Soldiers Grove village, WI +station = ('ky51', 0.0036692520532943412) +zone = ('wiz054', 0.0033315932337125011) + +[fips5502375] +centroid = (0.77281118044462305, -1.5427423581839455) +description = Appleton city, WI +station = ('katw', 0.0016299065683575038) +zone = ('wiz038', 0.0025601855741538069) + +[fips5502377175] +centroid = (0.75369031309086176, -1.5857520706085284) +description = Steuben village, WI +station = ('kovs', 0.0022845374029432791) +zone = ('wiz054', 0.001360683647651724) + +[fips5502382100] +centroid = (0.75689637820702027, -1.5866304599144723) +description = Utica town, WI +station = ('ky51', 0.0037435580629887684) +zone = ('wiz054', 0.0022451301689900148) + +[fips5502384725] +centroid = (0.7519899784269839, -1.5864859117458221) +description = Wauzeka village, WI +station = ('kovs', 0.0029663188073043296) +zone = ('wiz054', 0.0027125318205051246) + +[fips5502384750] +centroid = (0.75219957501685586, -1.5871152600207987) +description = Wauzeka town, WI +station = ('kpdc', 0.0027583509860625421) +zone = ('wiz054', 0.002472592798680685) + +[fips55025] +centroid = (0.75166911709729722, -1.5606359274609967) +description = Dane County, WI +station = ('kmsn', 0.0014384642059044187) +zone = ('wiz063', 5.8342565727754728e-06) + +[fips5502500] +centroid = (0.77229749513917612, -1.5968858575195584) +description = Arcadia city, WI +station = ('kona', 0.0038727282425346636) +zone = ('wiz033', 0.0019520176328663098) + +[fips5502500875] +centroid = (0.74872778352208125, -1.5547076024973325) +description = Albion town, WI +station = ('kjvl', 0.0049600460215436853) +zone = ('wiz069', 0.0039757423162127626) + +[fips5502506300] +centroid = (0.74809927300514567, -1.562635062492816) +description = Belleville village, WI +station = ('kc29', 0.0043122758513713241) +zone = ('wiz068', 0.0033156443033453397) + +[fips5502507025] +centroid = (0.75313309927387007, -1.5647746267162508) +description = Berry town, WI +station = ('kc29', 0.0017478734505725476) +zone = ('wiz063', 0.0033528290533730511) + +[fips5502507800] +centroid = (0.75284112314330398, -1.5663868222529029) +description = Black Earth village, WI +station = ('kc29', 0.0028020328232735378) +zone = ('wiz062', 0.0054735567174908333) + +[fips5502507825] +centroid = (0.75301872784798696, -1.5672138290656679) +description = Black Earth town, WI +station = ('kc29', 0.0034264846612489437) +zone = ('wiz062', 0.0050205749244122515) + +[fips5502508350] +centroid = (0.75108249448240938, -1.5587961409898843) +description = Blooming Grove town, WI +station = ('kmsn', 0.001800996121399216) +zone = ('wiz063', 0.0014716013300988206) + +[fips5502508475] +centroid = (0.75079547508691891, -1.5677731198244698) +description = Blue Mounds village, WI +station = ('kc29', 0.0041149409462303737) +zone = ('wiz062', 0.0039498189316125856) + +[fips5502508500] +centroid = (0.75040741858103055, -1.5669577019979377) +description = Blue Mounds town, WI +station = ('kc29', 0.0037665769670498462) +zone = ('wiz068', 0.0059532731451063569) + +[fips5502509775] +centroid = (0.75475330587178902, -1.5564029978794274) +description = Bristol town, WI +station = ('kmsn', 0.0029467998914400758) +zone = ('wiz063', 0.0043692038508474666) + +[fips5502510075] +centroid = (0.74799195270944052, -1.5597497016267114) +description = Brooklyn village, WI +station = ('kmsn', 0.0048316505067377618) +zone = ('wiz063', 0.0037337479479314772) + +[fips5502511150] +centroid = (0.75344345372145971, -1.5591951232568904) +description = Burke town, WI +station = ('kmsn', 0.00065220553236438824) +zone = ('wiz063', 0.0020665448810474256) + +[fips5502512225] +centroid = (0.75060809653842486, -1.5537514587732126) +description = Cambridge village, WI +station = ('kmsn', 0.0047145123380011545) +zone = ('wiz064', 0.0031682650015500352) + +[fips5502514650] +centroid = (0.74999655062181858, -1.5549291894991657) +description = Christiana town, WI +station = ('kmsn', 0.0043457525183310209) +zone = ('wiz069', 0.0052494202924399189) + +[fips5502517175] +centroid = (0.75203137763684114, -1.5568411104282629) +description = Cottage Grove village, WI +station = ('kmsn', 0.002062027268397216) +zone = ('wiz063', 0.0028012245438252944) + +[fips5502517200] +centroid = (0.75153059031456648, -1.5564165590877155) +description = Cottage Grove town, WI +station = ('kmsn', 0.0025633982923464397) +zone = ('wiz063', 0.0030914250821865519) + +[fips5502517775] +centroid = (0.752500277793682, -1.564656206126503) +description = Cross Plains village, WI +station = ('kc29', 0.0015085805509990093) +zone = ('wiz063', 0.003046090151677745) + +[fips5502517800] +centroid = (0.7518726573946648, -1.5649124553672809) +description = Cross Plains town, WI +station = ('kc29', 0.0017771645812149788) +zone = ('wiz063', 0.003124923153567731) + +[fips5502518700] +centroid = (0.75478683364671972, -1.562062297792189) +description = Dane village, WI +station = ('kc29', 0.0024067451637396369) +zone = ('wiz063', 0.0032860905424375469) + +[fips5502518725] +centroid = (0.75469092780432268, -1.5629628353263405) +description = Dane town, WI +station = ('kc29', 0.0022953636696378763) +zone = ('wiz063', 0.0034642098644990299) + +[fips5502519250] +centroid = (0.75135193841233228, -1.5546697812124417) +description = Deerfield village, WI +station = ('kmsn', 0.0037875879719548406) +zone = ('wiz064', 0.0038606026710547958) + +[fips5502519275] +centroid = (0.75161647796705711, -1.5544311947036942) +description = Deerfield town, WI +station = ('kmsn', 0.0038579352287798586) +zone = ('wiz064', 0.0037320479485799226) + +[fips5502519350] +centroid = (0.75458742977967941, -1.5593250281131161) +description = DeForest village, WI +station = ('kmsn', 0.0017711552297928099) +zone = ('wiz063', 0.0030739329954729607) + +[fips5502521100] +centroid = (0.74862084719881161, -1.5567992050729227) +description = Dunkirk town, WI +station = ('kmsn', 0.0046242223282675536) +zone = ('wiz063', 0.0041467547500636812) + +[fips5502521125] +centroid = (0.75003145720685838, -1.5588090913329342) +description = Dunn town, WI +station = ('kmsn', 0.0028265022336330533) +zone = ('wiz063', 0.0021159438824612455) + +[fips5502522575] +centroid = (0.74797062478598109, -1.5543269461874727) +description = Edgerton city, WI +station = ('kjvl', 0.0041799237673460126) +zone = ('wiz069', 0.0032235983426530681) + +[fips5502525950] +centroid = (0.75024342744451311, -1.560766512995631) +description = Fitchburg city, WI +station = ('kc29', 0.0025460605268699957) +zone = ('wiz063', 0.0014273271521527927) + +[fips5502546850] +centroid = (0.75083600163215025, -1.5584335837443677) +description = McFarland village, WI +station = ('kmsn', 0.0021175615016558935) +zone = ('wiz063', 0.0018169156276766532) + +[fips5502548000] +centroid = (0.75202408216056782, -1.5608500619069239) +description = Madison city, WI +station = ('kmsn', 0.0012936600532299552) +zone = ('wiz063', 0.00038672250075881987) + +[fips5502548025] +centroid = (0.75118621939985541, -1.5599650927097002) +description = Madison town, WI +station = ('kmsn', 0.0016749715289630343) +zone = ('wiz063', 0.00069135006764437911) + +[fips5502548750] +centroid = (0.75254087415208337, -1.5598192180908186) +description = Maple Bluff village, WI +station = ('kmsn', 0.00038617926752076715) +zone = ('wiz063', 0.0010604586019338702) + +[fips5502549575] +centroid = (0.75347699894968312, -1.5544041071937031) +description = Marshall village, WI +station = ('kmsn', 0.0037407884826997232) +zone = ('wiz064', 0.0044778266715721528) + +[fips5502550] +centroid = (0.75334721626650469, -1.5691799773746247) +description = Arena village, WI +station = ('klnr', 0.0036313900632509717) +zone = ('wiz062', 0.0040685272376532041) + +[fips5502550225] +centroid = (0.75350138119933341, -1.5672108794592321) +description = Mazomanie village, WI +station = ('kc29', 0.0035412311419924757) +zone = ('wiz056', 0.0048502636371219061) + +[fips5502550250] +centroid = (0.75399197579877653, -1.5667387329899827) +description = Mazomanie town, WI +station = ('kc29', 0.0034122395414850856) +zone = ('wiz056', 0.0045682004555875327) + +[fips5502550475] +centroid = (0.75321977232452419, -1.5544588930789234) +description = Medina town, WI +station = ('kmsn', 0.0036648915157784356) +zone = ('wiz064', 0.0043662628956566644) + +[fips5502551575] +centroid = (0.75235836507220233, -1.5621803344095013) +description = Middleton city, WI +station = ('kc29', 0.00030611141221752316) +zone = ('wiz063', 0.001317580335595698) + +[fips5502551600] +centroid = (0.75186122548806422, -1.5632963851996891) +description = Middleton town, WI +station = ('kc29', 0.00075256005556152239) +zone = ('wiz063', 0.0019473294340320931) + +[fips5502553675] +centroid = (0.75143183958548865, -1.5591639342231571) +description = Monona city, WI +station = ('kmsn', 0.0014026728850890552) +zone = ('wiz063', 0.0011066737542773546) + +[fips5502554100] +centroid = (0.74899581373530999, -1.5628955528836761) +description = Montrose town, WI +station = ('kc29', 0.0034227705723106371) +zone = ('wiz063', 0.0031389773620172554) + +[fips5502554725] +centroid = (0.75059657736536167, -1.5661000995633854) +description = Mount Horeb village, WI +station = ('kc29', 0.0031399230535280771) +zone = ('wiz063', 0.0041295310147421022) + +[fips5502560200] +centroid = (0.74918671784889324, -1.5601299216042583) +description = Oregon village, WI +station = ('kmsn', 0.0036656497632576732) +zone = ('wiz063', 0.0025095115461292701) + +[fips5502560225] +centroid = (0.74878977761711207, -1.5607420434795178) +description = Oregon town, WI +station = ('kc29', 0.0038664104048199742) +zone = ('wiz063', 0.0028790507776788898) + +[fips5502562050] +centroid = (0.7487656746201421, -1.566944716748303) +description = Perry town, WI +station = ('kc29', 0.0048391789505814013) +zone = ('wiz068', 0.0044765223463357632) + +[fips5502563375] +centroid = (0.7499956605039001, -1.5566760022810244) +description = Pleasant Springs town, WI +station = ('kmsn', 0.003476110168316142) +zone = ('wiz063', 0.0033483900566117762) + +[fips5502565575] +centroid = (0.74856386219873394, -1.5648247002124904) +description = Primrose town, WI +station = ('kc29', 0.0041793723085557129) +zone = ('wiz068', 0.0037261587592009645) + +[fips5502568725] +centroid = (0.74996714182392243, -1.5538776286248392) +description = Rockdale village, WI +station = ('kmsn', 0.0049721249699834318) +zone = ('wiz064', 0.003371137442811028) + +[fips5502569850] +centroid = (0.75478744451195801, -1.5648270215003957) +description = Roxbury town, WI +station = ('kc29', 0.0028807547655315719) +zone = ('wiz063', 0.0043639223387955681) + +[fips5502570400] +centroid = (0.74847631648345392, -1.5585893543801079) +description = Rutland town, WI +station = ('kmsn', 0.0043879132256759261) +zone = ('wiz063', 0.0035278357911776308) + +[fips5502573750] +centroid = (0.75186640911594271, -1.5611385648322786) +description = Shorewood Hills village, WI +station = ('kc29', 0.0011939377184204587) +zone = ('wiz063', 0.00041236464355877135) + +[fips5502575850] +centroid = (0.75007570130339651, -1.5647311505645836) +description = Springdale town, WI +station = ('kc29', 0.0028101427063568869) +zone = ('wiz063', 0.0033859984189389116) + +[fips5502575875] +centroid = (0.75331244930780505, -1.562861745856065) +description = Springfield town, WI +station = ('kc29', 0.00092206144742967182) +zone = ('wiz063', 0.0023078074688254778) + +[fips5502577675] +centroid = (0.74913001210149588, -1.557255608672319) +description = Stoughton city, WI +station = ('kmsn', 0.0040228789956059316) +zone = ('wiz063', 0.003547139348753317) + +[fips5502578600] +centroid = (0.75366739691778317, -1.5574570720278766) +description = Sun Prairie city, WI +station = ('kmsn', 0.001684457518615793) +zone = ('wiz063', 0.0030671554949291049) + +[fips5502578625] +centroid = (0.75304679274235897, -1.5565003872516887) +description = Sun Prairie town, WI +station = ('kmsn', 0.0021655707521487156) +zone = ('wiz063', 0.0033244211836600899) + +[fips5502582525] +centroid = (0.75191656987864497, -1.5670005323777818) +description = Vermont town, WI +station = ('kc29', 0.0032560542428276902) +zone = ('wiz062', 0.0047189116038719526) + +[fips5502582600] +centroid = (0.75024463172169698, -1.5627066908053178) +description = Verona city, WI +station = ('kc29', 0.0021683932722169979) +zone = ('wiz063', 0.0020736697684847153) + +[fips5502582625] +centroid = (0.74994014158039402, -1.5635828984496967) +description = Verona town, WI +station = ('kc29', 0.0025749718333013222) +zone = ('wiz063', 0.0027573831792454128) + +[fips5502582750] +centroid = (0.75482526579684872, -1.5608327656940366) +description = Vienna town, WI +station = ('kmsn', 0.0022450493270484927) +zone = ('wiz063', 0.0031603448543720183) + +[fips5502584350] +centroid = (0.75376051023337709, -1.5610411231001398) +description = Waunakee village, WI +station = ('kmsn', 0.0014937371278974224) +zone = ('wiz063', 0.0021125818870330257) + +[fips5502586125] +centroid = (0.75325227035519626, -1.5607698640277947) +description = Westport town, WI +station = ('kmsn', 0.0010549818268758354) +zone = ('wiz063', 0.0015870128608895607) + +[fips5502587750] +centroid = (0.75477985232971179, -1.5582568342510184) +description = Windsor town, WI +station = ('kmsn', 0.0021459494780204889) +zone = ('wiz063', 0.0035659369116479898) + +[fips5502589450] +centroid = (0.75480500252423299, -1.5544032345290772) +description = York town, WI +station = ('kmsn', 0.004182507257506584) +zone = ('wiz057', 0.0051637793191088464) + +[fips5502600] +centroid = (0.79688592053407503, -1.5512090201985398) +description = Argonne CDP, WI +station = ('kegv', 0.0067431409773888486) +zone = ('wiz011', 0.001318784778955734) + +[fips5502650] +centroid = (0.74527885584050779, -1.5684558751745574) +description = Argyle village, WI +station = ('keft', 0.0038386852708547502) +zone = ('wiz068', 0.0034033560055894145) + +[fips55027] +centroid = (0.75786918982549678, -1.5481834744869152) +description = Dodge County, WI +station = ('kunu', 7.0385987843397385e-05) +zone = ('wiz058', 0.00011695595264484435) + +[fips5502700] +centroid = (0.77901540705644245, -1.6060685757663684) +description = Arkansaw CDP, WI +station = ('klum', 0.0048854983084291341) +zone = ('wiz026', 0.00092867828664982145) + +[fips5502703200] +centroid = (0.75456454851318577, -1.5440489465685734) +description = Ashippun town, WI +station = ('kryv', 0.0033772376116572764) +zone = ('wiz059', 0.0038200629538485305) + +[fips5502705900] +centroid = (0.75864193435181726, -1.5504089263628407) +description = Beaver Dam city, WI +station = ('kunu', 0.0017744231079602989) +zone = ('wiz058', 0.0018066666656047546) + +[fips5502705925] +centroid = (0.75825401747226906, -1.550094976536992) +description = Beaver Dam town, WI +station = ('kunu', 0.0014364050504575543) +zone = ('wiz058', 0.0014365267184523389) + +[fips5502710450] +centroid = (0.76122849484998045, -1.5445337815814848) +description = Brownsville village, WI +station = ('kfld', 0.0026482269521887541) +zone = ('wiz051', 0.0024175307633667021) + +[fips5502711275] +centroid = (0.75919181778595068, -1.5481238540396671) +description = Burnett town, WI +station = ('kunu', 0.0012538608857651731) +zone = ('wiz058', 0.0014350801055086685) + +[fips5502711850] +centroid = (0.75772410060477846, -1.5523987413364544) +description = Calamus town, WI +station = ('kunu', 0.0030823754771168122) +zone = ('wiz058', 0.00302256196717663) + +[fips5502714300] +centroid = (0.76066656864400839, -1.5481234526139391) +description = Chester town, WI +station = ('kunu', 0.0027284203683657438) +zone = ('wiz058', 0.0029086252162070542) + +[fips5502715900] +centroid = (0.75592955306787801, -1.5485143190999233) +description = Clyman village, WI +station = ('kunu', 0.0020247298750485703) +zone = ('wiz058', 0.0018405760446673785) + +[fips5502715925] +centroid = (0.7562115808217077, -1.5482680356891745) +description = Clyman town, WI +station = ('kunu', 0.0017283519384106336) +zone = ('wiz058', 0.0015477030998960447) + +[fips5502716450] +centroid = (0.75623608524440578, -1.553492067939781) +description = Columbus city, WI +station = ('kunu', 0.0042294320426448017) +zone = ('wiz057', 0.0047709427049006537) + +[fips5502723000] +centroid = (0.75620730476504039, -1.5524822204345772) +description = Elba town, WI +station = ('kunu', 0.0035836037288462987) +zone = ('wiz058', 0.0034535004191996511) + +[fips5502724000] +centroid = (0.75464554924377081, -1.5483161544166517) +description = Emmet town, WI +station = ('kryv', 0.0012465150727528477) +zone = ('wiz058', 0.0031140998515302208) + +[fips5502725] +centroid = (0.76840188534213971, -1.5688082222439497) +description = Arkdale CDP, WI +station = ('kisw', 0.0059790815971573919) +zone = ('wiz044', 0.0017543869605617555) + +[fips5502727000] +centroid = (0.76028126975833799, -1.5518349999880601) +description = Fox Lake city, WI +station = ('kunu', 0.0035463940290185948) +zone = ('wiz058', 0.0036292856137511422) + +[fips5502727025] +centroid = (0.76075683707292141, -1.5522795004419581) +description = Fox Lake town, WI +station = ('kunu', 0.0041046840220819777) +zone = ('wiz047', 0.003936556754422906) + +[fips5502733000] +centroid = (0.75631153582796939, -1.5432931491892896) +description = Hartford city, WI +station = ('kunu', 0.0038968857071732007) +zone = ('wiz059', 0.0025289401735281098) + +[fips5502734000] +centroid = (0.75758991969188527, -1.544095529406309) +description = Herman town, WI +station = ('kunu', 0.0029765811893870844) +zone = ('wiz059', 0.0031086767934422432) + +[fips5502735750] +centroid = (0.75825441889799705, -1.5470085886476426) +description = Horicon city, WI +station = ('kunu', 0.00089740173488023819) +zone = ('wiz058', 0.001020954494261061) + +[fips5502736100] +centroid = (0.75769863625099199, -1.5459953377503974) +description = Hubbard town, WI +station = ('kunu', 0.0015941895079299954) +zone = ('wiz058', 0.0016301506507320593) + +[fips5502736625] +centroid = (0.75649617420953796, -1.5465120599287427) +description = Hustisford village, WI +station = ('kunu', 0.0018770257386062253) +zone = ('wiz058', 0.0017800450958501363) + +[fips5502736650] +centroid = (0.75604617596849621, -1.5462876454935213) +description = Hustisford town, WI +station = ('kunu', 0.0023330087611909064) +zone = ('wiz058', 0.00222359452458369) + +[fips5502737150] +centroid = (0.75743905343134288, -1.5451736367385582) +description = Iron Ridge village, WI +station = ('kunu', 0.0022297804682039021) +zone = ('wiz058', 0.0022490757012200305) + +[fips5502738675] +centroid = (0.75752357972701689, -1.5481638744394153) +description = Juneau city, WI +station = ('kunu', 0.00041473793117886181) +zone = ('wiz058', 0.00024161779278892561) + +[fips5502738900] +centroid = (0.75966986346807197, -1.5457121406259686) +description = Kekoskee village, WI +station = ('kunu', 0.0024833481817887119) +zone = ('wiz058', 0.0026478104086048032) + +[fips5502743050] +centroid = (0.7545549666555923, -1.5462597376787819) +description = Lebanon town, WI +station = ('kryv', 0.0019396862353284628) +zone = ('wiz058', 0.0035125020486352614) + +[fips5502743650] +centroid = (0.76064464730860326, -1.5462253895991027) +description = Leroy town, WI +station = ('kunu', 0.0030502285918605379) +zone = ('wiz058', 0.0032337990820407629) + +[fips5502745475] +centroid = (0.76086379084948375, -1.5436263499967879) +description = Lomira village, WI +station = ('kfld', 0.0030508364803931687) +zone = ('wiz051', 0.0028378327528879683) + +[fips5502745500] +centroid = (0.76050610307258004, -1.5438686191502571) +description = Lomira town, WI +station = ('kfld', 0.0033825152693743965) +zone = ('wiz051', 0.0031626583691430369) + +[fips5502745950] +centroid = (0.75631322879734397, -1.5500911193593447) +description = Lowell village, WI +station = ('kunu', 0.0021448199913769225) +zone = ('wiz058', 0.0019761331769120247) + +[fips5502745975] +centroid = (0.75610726249231608, -1.550496890957141) +description = Lowell town, WI +station = ('kunu', 0.0024950500972995161) +zone = ('wiz058', 0.0023292167186063548) + +[fips5502750200] +centroid = (0.75918635490539188, -1.5454202692151577) +description = Mayville city, WI +station = ('kunu', 0.0023509765070219304) +zone = ('wiz058', 0.0024940502081627438) + +[fips5502756075] +centroid = (0.75585220007542964, -1.5449861011104316) +description = Neosho village, WI +station = ('kunu', 0.0031133907568665887) +zone = ('wiz058', 0.0030374011199126535) + +[fips5502759000] +centroid = (0.7579570497000423, -1.5487257482855099) +description = Oak Grove town, WI +station = ('kunu', 0.00040751053750875412) +zone = ('wiz058', 0.00040582971733288376) + +[fips5502764375] +centroid = (0.75459339880572118, -1.5525096046505409) +description = Portland town, WI +station = ('kryv', 0.0032259141191393059) +zone = ('wiz064', 0.0043602046195421003) + +[fips5502766150] +centroid = (0.75992794530456431, -1.55329861564549) +description = Randolph village, WI +station = ('kunu', 0.0042227382961670503) +zone = ('wiz047', 0.0045710817495748105) + +[fips5502766900] +centroid = (0.7558349736757124, -1.5506297977796806) +description = Reeseville village, WI +station = ('kunu', 0.0027630049063195037) +zone = ('wiz058', 0.0025935274016002734) + +[fips5502769962] +centroid = (0.75629612457067441, -1.5440735557110263) +description = Rubicon town, WI +station = ('kunu', 0.0033971865749794247) +zone = ('wiz059', 0.0030858217366754766) + +[fips5502773575] +centroid = (0.75458416601397815, -1.5501355205355156) +description = Shields town, WI +station = ('kryv', 0.0017336431491858136) +zone = ('wiz058', 0.0034620743575432336) + +[fips5502779375] +centroid = (0.75951086397321532, -1.543810202980193) +description = Theresa village, WI +station = ('kunu', 0.0035301064957240615) +zone = ('wiz059', 0.0038329903354130898) + +[fips5502779425] +centroid = (0.75924677820409592, -1.5438831053830488) +description = Theresa town, WI +station = ('kunu', 0.0033721828885766286) +zone = ('wiz059', 0.0037010686415935219) + +[fips5502780525] +centroid = (0.76045616920268044, -1.5505298602267115) +description = Trenton town, WI +station = ('kunu', 0.0030465986281112364) +zone = ('wiz058', 0.0031683574717449358) + +[fips5502783975] +centroid = (0.7541233641848667, -1.5486734407678273) +description = Watertown city, WI +station = ('kryv', 0.00075029414469101252) +zone = ('wiz064', 0.003313577190031408) + +[fips5502784425] +centroid = (0.76136761504465689, -1.5486804744447131) +description = Waupun city, WI +station = ('kunu', 0.0034495885726527242) +zone = ('wiz058', 0.003622725648924149) + +[fips5502785650] +centroid = (0.75918764644903836, -1.5523148957191883) +description = Westford town, WI +station = ('kunu', 0.0032607630673908124) +zone = ('wiz058', 0.0032861410235298862) + +[fips5502787225] +centroid = (0.75922864423316772, -1.5460928492957062) +description = Williamstown town, WI +station = ('kunu', 0.0019817718687673747) +zone = ('wiz058', 0.0021410116764160217) + +[fips5502800] +centroid = (0.75634101443903556, -1.5598447871643601) +description = Arlington village, WI +station = ('kmsn', 0.0035339545136786436) +zone = ('wiz057', 0.0023445243598059092) + +[fips55029] +centroid = (0.78658163625664057, -1.5199712219661003) +description = Door County, WI +station = ('ksue', 0.0055618094342311858) +zone = ('wiz022', 0.0035662484286839015) + +[fips5502900000] +centroid = (0.78588430740729875, -1.5147977519039237) +description = County subdivisions not defined, WI +station = ('kfks', 0.010146414015095999) +zone = ('wiz022', 0.0066553474710437663) + +[fips5502904325] +centroid = (0.78658163625664057, -1.5199712219661003) +description = Baileys Harbor town, WI +station = ('ksue', 0.0055618094342311858) +zone = ('wiz022', 0.0035662484286839015) + +[fips5502910700] +centroid = (0.78037330812107908, -1.5287393372490994) +description = Brussels town, WI +station = ('ksue', 0.0032280938489629798) +zone = ('wiz040', 0.0034349643057225397) + +[fips5502915025] +centroid = (0.78059602958692598, -1.5244109730640312) +description = Clay Banks town, WI +station = ('ksue', 0.0023703801274538336) +zone = ('wiz022', 0.0038285621697582905) + +[fips5502922850] +centroid = (0.78631737595459616, -1.5237029104397894) +description = Egg Harbor village, WI +station = ('ksue', 0.0038113963675337464) +zone = ('wiz022', 0.0019149694405879562) + +[fips5502922875] +centroid = (0.78484817524355988, -1.5248595924949637) +description = Egg Harbor town, WI +station = ('ksue', 0.0021536578561188679) +zone = ('wiz022', 0.00076328662872623498) + +[fips5502924150] +centroid = (0.78834546599870614, -1.5214506503065535) +description = Ephraim village, WI +station = ('kmnm', 0.0057036206735387868) +zone = ('wiz022', 0.0043185741875345291) + +[fips5502926625] +centroid = (0.78000321105319359, -1.5267853189784442) +description = Forestville village, WI +station = ('ksue', 0.0028802333833874163) +zone = ('wiz040', 0.003493835582656746) + +[fips5502926650] +centroid = (0.78040257729263507, -1.5262110009347829) +description = Forestville town, WI +station = ('ksue', 0.0024041799423341272) +zone = ('wiz040', 0.0040449008848486255) + +[fips5502928300] +centroid = (0.78280689051030483, -1.5285633207940357) +description = Gardner town, WI +station = ('ksue', 0.0020239807222305842) +zone = ('wiz022', 0.0036253809227148296) + +[fips5502928950] +centroid = (0.78841918870631023, -1.5230841912199575) +description = Gibraltar town, WI +station = ('kmnm', 0.004570583417945316) +zone = ('wiz022', 0.0040561743444922013) + +[fips5502937750] +centroid = (0.785150256830495, -1.5215222437124705) +description = Jacksonport town, WI +station = ('ksue', 0.0037954475912587906) +zone = ('wiz022', 0.0018855074104375221) + +[fips5502943925] +centroid = (0.78969964951203597, -1.5190678744518533) +description = Liberty Grove town, WI +station = ('ksue', 0.0083601237546750036) +zone = ('wiz022', 0.006321039911101149) + +[fips5502955500] +centroid = (0.78259811422518122, -1.5267910436583907) +description = Nasewaupee town, WI +station = ('ksue', 0.00078873384317830312) +zone = ('wiz022', 0.0026966988855461559) + +[fips5502972600] +centroid = (0.78367962494947208, -1.5229995951111133) +description = Sevastopol town, WI +station = ('ksue', 0.0021200075654114257) +zone = ('wiz022', 0.0010063978204739941) + +[fips5502974225] +centroid = (0.78866362206805218, -1.5206941024356915) +description = Sister Bay village, WI +station = ('kmnm', 0.0062729335779397738) +zone = ('wiz022', 0.0048418647149680374) + +[fips5502977875] +centroid = (0.78230327575464187, -1.5248907815286967) +description = Sturgeon Bay city, WI +station = ('ksue', 0.00075086376695330398) +zone = ('wiz022', 0.0022064787815683951) + +[fips5502977900] +centroid = (0.78276123269707265, -1.5230587617727558) +description = Sturgeon Bay town, WI +station = ('ksue', 0.001878768999970861) +zone = ('wiz022', 0.0017736688815246423) + +[fips5502981525] +centroid = (0.78049403254543959, -1.5307034260695387) +description = Union town, WI +station = ('ksue', 0.0042183039885943978) +zone = ('wiz040', 0.0037043977794325392) + +[fips5502983600] +centroid = (0.79213120731932951, -1.5169582426250903) +description = Washington town, WI +station = ('kesc', 0.006518449216029976) +zone = ('wiz022', 0.0091682303577433222) + +[fips5503025] +centroid = (0.77736036368665373, -1.5713532439059155) +description = Arpin village, WI +station = ('kmfi', 0.0024953243481469836) +zone = ('wiz035', 0.0014739544487733212) + +[fips55031] +centroid = (0.81093784559456161, -1.6038280791522908) +description = Douglas County, WI +station = ('ksuw', 0.0046363593952956977) +zone = ('wiz001', 0.00062518158441760962) + +[fips5503100000] +centroid = (0.81632843461568627, -1.6008129530563004) +description = County subdivisions not defined, WI +station = ('ksuw', 0.0047100696366150037) +zone = ('wiz001', 0.0063983562959842831) + +[fips5503101825] +centroid = (0.81302653347030074, -1.6034972345392831) +description = Amnicon town, WI +station = ('kdyt', 0.0031647307039061306) +zone = ('wiz001', 0.0026999247836130471) + +[fips5503106775] +centroid = (0.81051826844238217, -1.6026199098841829) +description = Bennett town, WI +station = ('ksuw', 0.0054507057953788957) +zone = ('wiz001', 0.0011083919908413758) + +[fips5503110575] +centroid = (0.81324513595911307, -1.5988272396064291) +description = Brule town, WI +station = ('ksuw', 0.006081944354609601) +zone = ('wiz001', 0.0046901739980737545) + +[fips5503115825] +centroid = (0.81525680245496179, -1.5992133238902628) +description = Cloverland town, WI +station = ('ksuw', 0.0055965235360738788) +zone = ('wiz001', 0.0059732088150577121) + +[fips5503118425] +centroid = (0.807221481111705, -1.6085760030362461) +description = Dairyland town, WI +station = ('ksuw', 0.0077137888306531479) +zone = ('wiz001', 0.0043582238485839198) + +[fips5503129925] +centroid = (0.80800365041598632, -1.6026554098811683) +description = Gordon town, WI +station = ('khyr', 0.0066505183402590451) +zone = ('wiz001', 0.0026012506097251695) + +[fips5503133350] +centroid = (0.8117574871178832, -1.6027925054939125) +description = Hawthorne town, WI +station = ('ksuw', 0.0044317871995089879) +zone = ('wiz001', 0.0016964766021096923) + +[fips5503134425] +centroid = (0.81024405976360148, -1.5993360379899704) +description = Highland town, WI +station = ('kdyt', 0.007148263063258214) +zone = ('wiz001', 0.0033647937014630912) + +[fips5503141725] +centroid = (0.81158621795838504, -1.6005154791385907) +description = Lake Nebagamon village, WI +station = ('ksuw', 0.005745076545456783) +zone = ('wiz001', 0.0028221257861327223) + +[fips5503141800] +centroid = (0.81463253308810846, -1.602808597429616) +description = Lakeside town, WI +station = ('ksuw', 0.0031303509536313827) +zone = ('wiz001', 0.0043687207169409254) + +[fips5503148725] +centroid = (0.81346227237135371, -1.6005472441309769) +description = Maple town, WI +station = ('ksuw', 0.0048870842521546642) +zone = ('wiz001', 0.0039894783948749143) + +[fips5503159100] +centroid = (0.81144076221852379, -1.6060205268520611) +description = Oakland town, WI +station = ('ksuw', 0.0035686643976322783) +zone = ('wiz001', 0.0016402407810821103) + +[fips5503159800] +centroid = (0.81418316316559747, -1.6089779698162729) +description = Oliver village, WI +station = ('ksuw', 0.0013180775407892493) +zone = ('mnz037', 0.0050256636025757121) + +[fips5503161250] +centroid = (0.8137618581374586, -1.6057433860201369) +description = Parkland town, WI +station = ('ksuw', 0.0015800549099340253) +zone = ('wiz001', 0.0035493018319727849) + +[fips5503163975] +centroid = (0.81300663671682805, -1.6019036965723343) +description = Poplar village, WI +station = ('ksuw', 0.0041905707771932536) +zone = ('wiz001', 0.0030772861096689474) + +[fips5503174575] +centroid = (0.80892562059335238, -1.6027264796883096) +description = Solon Springs village, WI +station = ('ksuw', 0.0067612995315903578) +zone = ('wiz001', 0.0017734624499900614) + +[fips5503174600] +centroid = (0.80922695168870906, -1.6026490394293986) +description = Solon Springs town, WI +station = ('ksuw', 0.0065231032200941796) +zone = ('wiz001', 0.0015736415895723412) + +[fips5503175] +centroid = (0.75421155567196985, -1.544930320387538) +description = Ashippun CDP, WI +station = ('kryv', 0.0026551211264269963) +zone = ('wiz058', 0.0042868462496284659) + +[fips5503178275] +centroid = (0.81029490120471204, -1.6087555276031063) +description = Summit town, WI +station = ('ksuw', 0.0046941621333726749) +zone = ('wiz001', 0.0031311283045203412) + +[fips5503178650] +centroid = (0.8150523894929681, -1.6067848065315093) +description = Superior city, WI +station = ('ksuw', 0.00042441531525481513) +zone = ('wiz001', 0.0050029004121042641) + +[fips5503178660] +centroid = (0.81425419806615362, -1.6076123369430502) +description = Superior village, WI +station = ('ksuw', 0.00065906260602937444) +zone = ('wiz001', 0.0045314463034518727) + +[fips5503178675] +centroid = (0.81304197963418101, -1.6085410615446214) +description = Superior town, WI +station = ('ksuw', 0.0020186214066590341) +zone = ('wiz001', 0.0039996377738928069) + +[fips5503183512] +centroid = (0.80615700480091368, -1.6023280035667866) +description = Wascott town, WI +station = ('khyr', 0.0052644089206937772) +zone = ('wiz001', 0.0044118354596567313) + +[fips5503225] +centroid = (0.81301520628345536, -1.5859917392214125) +description = Ashland city, WI +station = ('kasx', 0.00078975490196691732) +zone = ('wiz002', 0.004088722066391489) + +[fips55033] +centroid = (0.7844860717836486, -1.6039177890758436) +description = Dunn County, WI +station = ('klum', 0.0010372389049712989) +zone = ('wiz025', 2.5738062754822812e-05) + +[fips5503309050] +centroid = (0.78614505959754677, -1.6063749508632637) +description = Boyceville village, WI +station = ('klum', 0.0033690841944220545) +zone = ('wiz025', 0.0024279567560741935) + +[fips5503316275] +centroid = (0.78536126713706111, -1.6009342185327293) +description = Colfax village, WI +station = ('klum', 0.0025367338174373615) +zone = ('wiz025', 0.0022776830093680033) + +[fips5503316300] +centroid = (0.7851904343098759, -1.6006141775077911) +description = Colfax town, WI +station = ('klum', 0.0025836419299503813) +zone = ('wiz025', 0.0024314166176659107) + +[fips5503320675] +centroid = (0.78626669159311824, -1.6078728447872028) +description = Downing village, WI +station = ('klum', 0.0041946517376060082) +zone = ('wiz025', 0.0033399142825759403) + +[fips5503321150] +centroid = (0.78093823629336456, -1.6041462526749295) +description = Dunn town, WI +station = ('klum', 0.0026333051933327134) +zone = ('wiz026', 0.003036724090203999) + +[fips5503322375] +centroid = (0.78070497303883546, -1.6065745467165218) +description = Eau Galle town, WI +station = ('klum', 0.0036049021451453017) +zone = ('wiz026', 0.0026552907570938653) + +[fips5503323325] +centroid = (0.78316630616316807, -1.6000792166387621) +description = Elk Mound village, WI +station = ('klum', 0.002375610413514701) +zone = ('wiz025', 0.0029986306182923235) + +[fips5503323350] +centroid = (0.78374271860193168, -1.6006504105430626) +description = Elk Mound town, WI +station = ('klum', 0.0019573353154308305) +zone = ('wiz025', 0.0024082877224522836) + +[fips5503330300] +centroid = (0.78662886486619965, -1.6007410978509959) +description = Grant town, WI +station = ('klum', 0.0036342220283694109) +zone = ('wiz025', 0.0031062148833376083) + +[fips5503333400] +centroid = (0.78690921710394734, -1.6049502735014458) +description = Hay River town, WI +station = ('klum', 0.0035659672933766322) +zone = ('wiz025', 0.0025544628226949135) + +[fips5503339975] +centroid = (0.78450406612823664, -1.607112247752476) +description = Knapp village, WI +station = ('klum', 0.0028109644655412622) +zone = ('wiz025', 0.0022775053315446806) + +[fips5503346175] +centroid = (0.7835691107012358, -1.6069376799206916) +description = Lucas town, WI +station = ('klum', 0.0025100934806721858) +zone = ('wiz025', 0.0023339198749677752) + +[fips5503351025] +centroid = (0.78346433858623865, -1.6041246105922047) +description = Menomonie city, WI +station = ('klum', 0.00051944008574510224) +zone = ('wiz025', 0.0010149555498699359) + +[fips5503351050] +centroid = (0.78326189784629974, -1.6051530284006499) +description = Menomonie town, WI +station = ('klum', 0.0012713419035624354) +zone = ('wiz025', 0.0014980992453239609) + +[fips5503356775] +centroid = (0.78829553212880654, -1.6073685493531313) +description = New Haven town, WI +station = ('klum', 0.0055424917132216207) +zone = ('wiz025', 0.0045481707377862425) + +[fips5503360725] +centroid = (0.7869028291988851, -1.6030163614237736) +description = Otter Creek town, WI +station = ('klum', 0.0033963274958883041) +zone = ('wiz025', 0.0025145438514363812) + +[fips5503362125] +centroid = (0.78051090987930627, -1.6024020229803639) +description = Peru town, WI +station = ('klum', 0.003087658074657208) +zone = ('wiz026', 0.0033663073891175206) + +[fips5503366550] +centroid = (0.78347941823097589, -1.6030756851650485) +description = Red Cedar town, WI +station = ('klum', 0.00022947177816950488) +zone = ('wiz025', 0.001144571909762075) + +[fips5503367800] +centroid = (0.78892669554620531, -1.6039217509732455) +description = Ridgeland village, WI +station = ('krpd', 0.0040652524689058838) +zone = ('wiz015', 0.0039156839409183776) + +[fips5503368700] +centroid = (0.78063451409693252, -1.6008345078725628) +description = Rock Creek town, WI +station = ('klum', 0.0034072813893015518) +zone = ('wiz025', 0.0044034850129498586) + +[fips5503371425] +centroid = (0.78811806705046372, -1.6007597554206998) +description = Sand Creek town, WI +station = ('krpd', 0.0046294454800968072) +zone = ('wiz025', 0.004271033928621909) + +[fips5503373300] +centroid = (0.78832446968780456, -1.6051720524894966) +description = Sheridan town, WI +station = ('klum', 0.0049686896853400487) +zone = ('wiz025', 0.0039624097821265554) + +[fips5503373375] +centroid = (0.78509533131893483, -1.6048858010388769) +description = Sherman town, WI +station = ('klum', 0.0018984810041436065) +zone = ('wiz025', 0.00094210205766337104) + +[fips5503375750] +centroid = (0.7820304807925551, -1.6011922480093439) +description = Spring Brook town, WI +station = ('klum', 0.0021562063077106017) +zone = ('wiz025', 0.0030983826330988808) + +[fips5503376650] +centroid = (0.78520741636349789, -1.6070739552286872) +description = Stanton town, WI +station = ('klum', 0.0031044885920710405) +zone = ('wiz025', 0.0023682918275605902) + +[fips5503378975] +centroid = (0.78506712679822244, -1.6029233353746422) +description = Tainter town, WI +station = ('klum', 0.0015856226487581421) +zone = ('wiz025', 0.00091300808270329244) + +[fips5503379775] +centroid = (0.78679140737943787, -1.6069584667920829) +description = Tiffany town, WI +station = ('klum', 0.004131911068211906) +zone = ('wiz025', 0.0031777019576096866) + +[fips5503385975] +centroid = (0.78205144219687162, -1.6067600926693011) +description = Weston town, WI +station = ('klum', 0.0027998138159634378) +zone = ('wiz025', 0.003154916438086379) + +[fips5503386575] +centroid = (0.78611716923609987, -1.6039515786501619) +description = Wheeler village, WI +station = ('klum', 0.0026297129176477952) +zone = ('wiz025', 0.0016515006955842258) + +[fips5503387375] +centroid = (0.78830193748716126, -1.6030464334467853) +description = Wilson town, WI +station = ('krpd', 0.0044861122779685843) +zone = ('wiz025', 0.0038823082523017742) + +[fips5503425] +centroid = (0.77631094956730706, -1.5374180044079337) +description = Ashwaubenon village, WI +station = ('kgrb', 0.00057420096256984585) +zone = ('wiz039', 0.0011421285344451453) + +[fips55035] +centroid = (0.78062215716582839, -1.5932484866386467) +description = Eau Claire County, WI +station = ('keau', 0.003456177025134342) +zone = ('wiz028', 9.3099946140376421e-06) + +[fips5503501550] +centroid = (0.78190685912163638, -1.5959218249072191) +description = Altoona city, WI +station = ('keau', 0.001283962822096896) +zone = ('wiz028', 0.0022919306064713564) + +[fips5503503825] +centroid = (0.77978771525044988, -1.5903513797066766) +description = Augusta city, WI +station = ('keau', 0.0055676942669482627) +zone = ('wiz028', 0.002219990404452513) + +[fips5503509500] +centroid = (0.78041311908131716, -1.5890993328611733) +description = Bridge Creek town, WI +station = ('keau', 0.0060040765444585717) +zone = ('wiz028', 0.002951007039468176) + +[fips5503510625] +centroid = (0.78052424419479149, -1.5984877905202086) +description = Brunswick town, WI +station = ('keau', 0.0028499647195377232) +zone = ('wiz028', 0.0037291945263519068) + +[fips5503515200] +centroid = (0.77910930577019966, -1.5943054754869472) +description = Clear Creek town, WI +station = ('keau', 0.0043071834706424868) +zone = ('wiz028', 0.0016984747525634581) + +[fips5503520800] +centroid = (0.77921976765855838, -1.5986249733994156) +description = Drammen town, WI +station = ('keau', 0.0040901639117828523) +zone = ('wiz028', 0.0040791335706134076) + +[fips5503522300] +centroid = (0.78215797709441337, -1.5969168894736587) +description = Eau Claire city, WI +station = ('keau', 0.0009277199796647775) +zone = ('wiz028', 0.0030239307747779026) + +[fips5503524825] +centroid = (0.77850852853507824, -1.5874945724271345) +description = Fairchild village, WI +station = ('kbck', 0.0063414572259015709) +zone = ('wiz028', 0.0046048863688245706) + +[fips5503524850] +centroid = (0.77919852700156167, -1.5880174730710321) +description = Fairchild town, WI +station = ('kbck', 0.0070977232519217719) +zone = ('wiz028', 0.0039802631525150661) + +[fips5503525125] +centroid = (0.78130210253582033, -1.5931410616231867) +description = Fall Creek village, WI +station = ('keau', 0.0030741867034758817) +zone = ('wiz028', 0.00067593534892157112) + +[fips5503544350] +centroid = (0.78079216968826526, -1.5928300264971889) +description = Lincoln town, WI +station = ('keau', 0.0035604359119814103) +zone = ('wiz028', 0.00033417546775355039) + +[fips5503546275] +centroid = (0.78207619096566494, -1.5910263857948854) +description = Ludington town, WI +station = ('keau', 0.0041342809684275107) +zone = ('wiz028', 0.0021364377022305633) + +[fips5503550] +centroid = (0.78600302470301942, -1.5721769345931018) +description = Athens village, WI +station = ('kmdz', 0.0029975137048511989) +zone = ('wiz030', 0.0046139359316186308) + +[fips5503560750] +centroid = (0.77911817204279987, -1.5921908345652309) +description = Otter Creek town, WI +station = ('keau', 0.0050806137816156562) +zone = ('wiz028', 0.0016861750086508923) + +[fips5503563400] +centroid = (0.77949160268955664, -1.5964211985127998) +description = Pleasant Valley town, WI +station = ('keau', 0.0035843661601995523) +zone = ('wiz028', 0.0025309569302325767) + +[fips5503572675] +centroid = (0.78249911915000814, -1.5942811805037596) +description = Seymour town, WI +station = ('keau', 0.0017978592637994469) +zone = ('wiz028', 0.0020096647480519654) + +[fips5503581550] +centroid = (0.78203257518765756, -1.5987140200978522) +description = Union town, WI +station = ('keau', 0.001774219358242653) +zone = ('wiz025', 0.0044045363219491858) + +[fips5503583612] +centroid = (0.78090046736835139, -1.5952483198021672) +description = Washington town, WI +station = ('keau', 0.0023981399121391217) +zone = ('wiz028', 0.0014512059145808725) + +[fips5503587400] +centroid = (0.7821115338830178, -1.5884631079889437) +description = Wilson town, WI +station = ('keau', 0.0059087390019885982) +zone = ('wiz028', 0.0037016847977985215) + +[fips55037] +centroid = (0.80022728357384798, -1.5428766787231787) +description = Florence County, WI +station = ('kimt', 0.003497107215199084) +zone = ('wiz012', 3.3740618709435809e-05) + +[fips5503703875] +centroid = (0.79860096832354721, -1.5377645569842098) +description = Aurora town, WI +station = ('kimt', 0.0010567282496832123) +zone = ('wiz013', 0.0035843473132423339) + +[fips5503716550] +centroid = (0.8003413582937583, -1.5402261868145151) +description = Commonwealth town, WI +station = ('kimt', 0.0017446894454692507) +zone = ('wiz012', 0.001825359474862727) + +[fips5503725575] +centroid = (0.79915764108847076, -1.5445140244543523) +description = Fence town, WI +station = ('kimt', 0.004619253373714347) +zone = ('wiz012', 0.0015683821834982009) + +[fips5503725675] +centroid = (0.80011806086925819, -1.5423196568924049) +description = Fern town, WI +station = ('kimt', 0.003096799368366199) +zone = ('wiz012', 0.00037263042209655919) + +[fips5503726200] +centroid = (0.8014487697041488, -1.5422919236105905) +description = Florence town, WI +station = ('kimt', 0.0035315062935423252) +zone = ('wiz012', 0.0013003839101799301) + +[fips5503735600] +centroid = (0.79853410475990327, -1.5406134579222401) +description = Homestead town, WI +station = ('kimt', 0.0021820653390641955) +zone = ('wiz012', 0.0022808767257323616) + +[fips5503745625] +centroid = (0.80036549619731345, -1.5468000567086142) +description = Long Lake town, WI +station = ('klnl', 0.0087952539440140556) +zone = ('wiz012', 0.0027630687706566379) + +[fips5503775] +centroid = (0.77888373941767197, -1.5710457692515916) +description = Auburndale village, WI +station = ('kmfi', 0.0021027640356485163) +zone = ('wiz035', 0.003011605006566327) + +[fips5503779975] +centroid = (0.80201163838791689, -1.5466507786976913) +description = Tipler town, WI +station = ('klnl', 0.0080272394398241201) +zone = ('wiz012', 0.0032087717857995171) + +[fips5503825] +centroid = (0.77978771525044988, -1.5903513797066766) +description = Augusta city, WI +station = ('keau', 0.0055676942669482627) +zone = ('wiz028', 0.002219990404452513) + +[fips55039] +centroid = (0.76366396219479837, -1.5444991717024177) +description = Fond du Lac County, WI +station = ('kfld', 0.00024329913790727158) +zone = ('wiz051', 6.701758110782939e-05) + +[fips5503901525] +centroid = (0.76236065502916406, -1.5502940836980594) +description = Alto town, WI +station = ('kunu', 0.0046837446745186112) +zone = ('wiz047', 0.0034755148719433715) + +[fips5503903150] +centroid = (0.76067808781707147, -1.5419555288505611) +description = Ashford town, WI +station = ('kfld', 0.0036251980312438335) +zone = ('wiz051', 0.0034571894363026028) + +[fips5503903750] +centroid = (0.76085845014197262, -1.5397211932487431) +description = Auburn town, WI +station = ('ketb', 0.0032135496700545626) +zone = ('wiz059', 0.0039396667758139171) + +[fips5503909300] +centroid = (0.76332709619587091, -1.5495402236342455) +description = Brandon village, WI +station = ('kfld', 0.003806131189245499) +zone = ('wiz047', 0.0035015156601996282) + +[fips5503911600] +centroid = (0.76217325902737743, -1.5439720822683154) +description = Byron town, WI +station = ('kfld', 0.0017182688926090203) +zone = ('wiz051', 0.0015048568299457364) + +[fips5503912075] +centroid = (0.76639533266099935, -1.5409703253943954) +description = Calumet town, WI +station = ('kfld', 0.0034959473133506806) +zone = ('wiz049', 0.003113795614625557) + +[fips5503912325] +centroid = (0.76091988573164282, -1.540786996009766) +description = Campbellsport village, WI +station = ('ketb', 0.0036175124193261994) +zone = ('wiz051', 0.003780331686891427) + +[fips5503922475] +centroid = (0.7626052978304162, -1.5422787638280304) +description = Eden village, WI +station = ('kfld', 0.0019475624250116484) +zone = ('wiz051', 0.0018581945445368157) + +[fips5503922500] +centroid = (0.76230712578100535, -1.5419566807678675) +description = Eden town, WI +station = ('kfld', 0.002319694473133899) +zone = ('wiz051', 0.0022211863782673463) + +[fips5503923150] +centroid = (0.76539693451568858, -1.5460220063813677) +description = Eldorado town, WI +station = ('kfld', 0.0019552249955307158) +zone = ('wiz051', 0.0021033848853654474) + +[fips5503924050] +centroid = (0.76362074784251899, -1.5418117137201968) +description = Empire town, WI +station = ('kfld', 0.0018329436401292021) +zone = ('wiz051', 0.0018772824213010536) + +[fips5503925075] +centroid = (0.76343862273507335, -1.5511002861861405) +description = Fairwater village, WI +station = ('kosh', 0.0056368267293848166) +zone = ('wiz047', 0.0024132006990430716) + +[fips5503926275] +centroid = (0.7639681905367135, -1.5435738330395952) +description = Fond du Lac city, WI +station = ('kfld', 0.00055118210495015381) +zone = ('wiz051', 0.00068550424799918193) + +[fips5503926300] +centroid = (0.76350566083164251, -1.5445753727775597) +description = Fond du Lac town, WI +station = ('kfld', 0.00040877531362162124) +zone = ('wiz051', 0.00018286036712307447) + +[fips5503926450] +centroid = (0.76364118564805983, -1.5395424889866314) +description = Forest town, WI +station = ('kfld', 0.0034622248183747532) +zone = ('wiz052', 0.0033748653670486036) + +[fips5503927975] +centroid = (0.76536838092912596, -1.5440610940601671) +description = Friendship town, WI +station = ('kfld', 0.0015080645539738667) +zone = ('wiz051', 0.0017423405106831004) + +[fips5503939300] +centroid = (0.7599980726339095, -1.5405687949466815) +description = Kewaskum village, WI +station = ('ketb', 0.0027772133766056908) +zone = ('wiz059', 0.0031127620306541579) + +[fips5503942125] +centroid = (0.76392392898688288, -1.5460619918745309) +description = Lamartine town, WI +station = ('kfld', 0.0012550557199343473) +zone = ('wiz051', 0.0012251111911408803) + +[fips5503949650] +centroid = (0.76519880473900215, -1.5399358862000307) +description = Marshfield town, WI +station = ('kfld', 0.0034344537133026327) +zone = ('wiz049', 0.0041756147964154607) + +[fips5503951450] +centroid = (0.76394747347849234, -1.550110928846355) +description = Metomen town, WI +station = ('kfld', 0.0041785423783284445) +zone = ('wiz047', 0.0029452108396942045) + +[fips5503954650] +centroid = (0.76487024650731417, -1.5400977829414457) +description = Mount Calvary village, WI +station = ('kfld', 0.0032106269362972319) +zone = ('wiz051', 0.0033459410291363217) + +[fips5503958000] +centroid = (0.76464558772599756, -1.5443626345950343) +description = North Fond du Lac village, WI +station = ('kfld', 0.00077361637595672384) +zone = ('wiz051', 0.0010018028264569075) + +[fips5503958900] +centroid = (0.76243072999863171, -1.5454641118859678) +description = Oakfield village, WI +station = ('kfld', 0.0016599897931750089) +zone = ('wiz051', 0.0014327858274291968) + +[fips5503958925] +centroid = (0.76228818895862138, -1.5461734486005634) +description = Oakfield town, WI +station = ('kfld', 0.0020720720394502546) +zone = ('wiz051', 0.0018609278584338139) + +[fips5503960425] +centroid = (0.76237470492964265, -1.5396827960051993) +description = Osceola town, WI +station = ('kfld', 0.0036743017463369497) +zone = ('wiz052', 0.0035026608258814243) + +[fips5503968175] +centroid = (0.76521442543580742, -1.5505144838760012) +description = Ripon city, WI +station = ('kfld', 0.0046638218297609521) +zone = ('wiz047', 0.0027145468310942511) + +[fips5503968200] +centroid = (0.76574865326655051, -1.5499477231080012) +description = Ripon town, WI +station = ('kosh', 0.0035945467097244607) +zone = ('wiz048', 0.0039540134382875375) + +[fips5503969525] +centroid = (0.76461104766010046, -1.5476098894815398) +description = Rosendale village, WI +station = ('kfld', 0.0024834054088937762) +zone = ('wiz051', 0.0025040673879718469) + +[fips5503969550] +centroid = (0.76531015674527936, -1.5481505575772225) +description = Rosendale town, WI +station = ('kosh', 0.0028091534964425416) +zone = ('wiz051', 0.0031720044494541193) + +[fips5503970500] +centroid = (0.76484678928216743, -1.5388868909597047) +description = St. Cloud village, WI +station = ('kfld', 0.0040448336399416026) +zone = ('wiz052', 0.0033558075655998458) + +[fips5503976250] +centroid = (0.7637576514690454, -1.5481245696246604) +description = Springvale town, WI +station = ('kfld', 0.0027460968327271255) +zone = ('wiz051', 0.0026850367229026458) + +[fips5503979125] +centroid = (0.76509771526872661, -1.5418253272883624) +description = Taycheedah town, WI +station = ('kfld', 0.0021811522381349788) +zone = ('wiz051', 0.002365176885884215) + +[fips5503984425] +centroid = (0.76166711354429906, -1.5488185998017159) +description = Waupun city, WI +station = ('kunu', 0.0037587628572350743) +zone = ('wiz051', 0.0037506368117644203) + +[fips5503984450] +centroid = (0.76246045295579312, -1.5480680733167733) +description = Waupun town, WI +station = ('kfld', 0.0030509686175880534) +zone = ('wiz051', 0.0028964923009565358) + +[fips5504025] +centroid = (0.75376714248453469, -1.5764921215423175) +description = Avoca village, WI +station = ('klnr', 0.0018885040408020369) +zone = ('wiz055', 0.0035320751132896237) + +[fips55041] +centroid = (0.79703745001973314, -1.5493850638637432) +description = Forest County, WI +station = ('kegv', 0.0076008648793130292) +zone = ('wiz011', 3.5219892976445334e-05) + +[fips5504101625] +centroid = (0.80223245744487925, -1.5502170448648762) +description = Alvin town, WI +station = ('klnl', 0.0057751336917270212) +zone = ('wiz011', 0.0052239473718492377) + +[fips5504102625] +centroid = (0.79929445744853467, -1.550902278582502) +description = Argonne town, WI +station = ('kegv', 0.0055046899165638267) +zone = ('wiz011', 0.0025013710254179777) + +[fips5504102950] +centroid = (0.79711731628630444, -1.5444910035615185) +description = Armstrong Creek town, WI +station = ('kimt', 0.0052357616857513353) +zone = ('wiz012', 0.0032961239001896361) + +[fips5504107950] +centroid = (0.79482454706112948, -1.544968927070592) +description = Blackwell town, WI +station = ('kimt', 0.0068931467159886739) +zone = ('wiz011', 0.0037766331097140462) + +[fips5504113125] +centroid = (0.79705350704885147, -1.5475485586116247) +description = Caswell town, WI +station = ('kimt', 0.0072005613281849517) +zone = ('wiz011', 0.0012489624356678585) + +[fips5504117425] +centroid = (0.79530863158246268, -1.5515159538007954) +description = Crandon city, WI +station = ('krhi', 0.0072708881499149976) +zone = ('wiz011', 0.0023107327276972768) + +[fips5504117450] +centroid = (0.79580196634883138, -1.5528652503922198) +description = Crandon town, WI +station = ('krhi', 0.0062686172577320438) +zone = ('wiz011', 0.0027632983094799521) + +[fips5504127600] +centroid = (0.79297112956855909, -1.5490343399505548) +description = Freedom town, WI +station = ('kaig', 0.0065337906457751203) +zone = ('wiz011', 0.0040790807741217681) + +[fips5504134650] +centroid = (0.79934875464156419, -1.5531069435870362) +description = Hiles town, WI +station = ('kegv', 0.0041401121567756181) +zone = ('wiz011', 0.0034981939370772445) + +[fips5504142500] +centroid = (0.7951360883326104, -1.5479927798128423) +description = Laona town, WI +station = ('kimt', 0.0083573293850962797) +zone = ('wiz011', 0.0021273184135794498) + +[fips5504144375] +centroid = (0.79499012644726619, -1.5509437825121142) +description = Lincoln town, WI +station = ('kaig', 0.007557778091945605) +zone = ('wiz011', 0.0023424072529013226) + +[fips5504150] +centroid = (0.77325767057386818, -1.5726751562813759) +description = Babcock CDP, WI +station = ('kisw', 0.0035927550628613394) +zone = ('wiz035', 0.0027595500349888663) + +[fips5504155575] +centroid = (0.79425052572344101, -1.5532851242503722) +description = Nashville town, WI +station = ('krhi', 0.0063402805664408623) +zone = ('wiz011', 0.0039302072928612888) + +[fips5504164050] +centroid = (0.79987802573723155, -1.5485060985991463) +description = Popple River town, WI +station = ('klnl', 0.0081974598001752653) +zone = ('wiz011', 0.0028918251588257835) + +[fips5504169625] +centroid = (0.79782310998251837, -1.5485448972684182) +description = Ross town, WI +station = ('kegv', 0.0076489150500909887) +zone = ('wiz011', 0.00095449181293935138) + +[fips5504183025] +centroid = (0.79314892625945976, -1.545354051423337) +description = Wabeno town, WI +station = ('kimt', 0.0083226611362320606) +zone = ('wiz021', 0.0044839220198531898) + +[fips5504250] +centroid = (0.74876979359717688, -1.5899152742864806) +description = Bagley village, WI +station = ('kpdc', 0.0021377697631372707) +zone = ('iaz030', 0.0032978080081382585) + +[fips55043] +centroid = (0.74822373243410523, -1.5829327879079045) +description = Grant County, WI +station = ('kpvb', 0.0045362713598058281) +zone = ('wiz061', 0.00014559677785636225) + +[fips5504300] +centroid = (0.78656357209888239, -1.5208058209611117) +description = Baileys Harbor CDP, WI +station = ('ksue', 0.005133265267465997) +zone = ('wiz022', 0.0031061241305219245) + +[fips5504304250] +centroid = (0.74876979359717688, -1.5899152742864806) +description = Bagley village, WI +station = ('kpdc', 0.0021377697631372707) +zone = ('iaz030', 0.0032978080081382585) + +[fips5504306100] +centroid = (0.74725212509281258, -1.5858293363345144) +description = Beetown town, WI +station = ('kpdc', 0.0049452988294837229) +zone = ('wiz061', 0.0021909726874521657) + +[fips5504308375] +centroid = (0.74862259252806362, -1.5869582676545819) +description = Bloomington village, WI +station = ('kpdc', 0.0033932227280823301) +zone = ('wiz061', 0.0028460273299721534) + +[fips5504308400] +centroid = (0.7483357127589132, -1.5883452633578492) +description = Bloomington town, WI +station = ('kpdc', 0.0029608069197715912) +zone = ('wiz061', 0.0038313217358630818) + +[fips5504308525] +centroid = (0.75372202572337055, -1.5807707612969966) +description = Blue River village, WI +station = ('kovs', 0.0015498364171644199) +zone = ('wiz055', 0.0037829550897244065) + +[fips5504308850] +centroid = (0.75298465902098799, -1.5829856539309475) +description = Boscobel city, WI +station = ('kovs', 0.00022890807300682294) +zone = ('wiz054', 0.0034068158321910987) + +[fips5504308875] +centroid = (0.75285087953382268, -1.5825974577987187) +description = Boscobel town, WI +station = ('kovs', 0.00027436953065209128) +zone = ('wiz054', 0.0037192030209955034) + +[fips5504313050] +centroid = (0.74552039195569131, -1.5880600241981957) +description = Cassville village, WI +station = ('kpdc', 0.0056280891890600829) +zone = ('iaz042', 0.0045134150797139201) + +[fips5504313075] +centroid = (0.74602576949389887, -1.5876679708883201) +description = Cassville town, WI +station = ('kpdc', 0.0052532262647787976) +zone = ('wiz061', 0.0039699862989962609) + +[fips5504313100] +centroid = (0.75179764314341413, -1.5793170242031329) +description = Castle Rock town, WI +station = ('kovs', 0.0028111311463843006) +zone = ('wiz061', 0.0045656243513328516) + +[fips5504315500] +centroid = (0.74872855146695216, -1.5793058191893352) +description = Clifton town, WI +station = ('kmrj', 0.0032772529510884173) +zone = ('wiz061', 0.0028496479823566438) + +[fips5504317950] +centroid = (0.74358251798061692, -1.5783585417378152) +description = Cuba City city, WI +station = ('kpvb', 0.001501018609105448) +zone = ('wiz067', 0.0039954987762056641) + +[fips5504320175] +centroid = (0.74396891642371588, -1.5811445061030185) +description = Dickeyville village, WI +station = ('kpvb', 0.0022558140208851765) +zone = ('wiz061', 0.0044534771115644755) + +[fips5504323400] +centroid = (0.74723163492739408, -1.5813513101660874) +description = Ellenboro town, WI +station = ('kpvb', 0.0030138796518237899) +zone = ('wiz061', 0.0016071623251165028) + +[fips5504325600] +centroid = (0.75014247760057784, -1.5821564305500324) +description = Fennimore city, WI +station = ('kovs', 0.0029958017365715847) +zone = ('wiz061', 0.0020868470388745136) + +[fips5504325625] +centroid = (0.75029329150124258, -1.5813412396163034) +description = Fennimore town, WI +station = ('kovs', 0.0029916507576916557) +zone = ('wiz061', 0.0024839443391575242) + +[fips5504329525] +centroid = (0.74718571531477429, -1.5884075716121455) +description = Glen Haven town, WI +station = ('kpdc', 0.0039741313825147201) +zone = ('wiz061', 0.0040011044810934543) + +[fips5504332825] +centroid = (0.74570279631581715, -1.5813261425182736) +description = Harrison town, WI +station = ('kpvb', 0.0021848434218906107) +zone = ('wiz061', 0.0028049632518080342) + +[fips5504333500] +centroid = (0.74236115402336378, -1.5784153871115525) +description = Hazel Green village, WI +station = ('kpvb', 0.0027202667270838422) +zone = ('ilz001', 0.0041211889622734489) + +[fips5504333525] +centroid = (0.74267018202072199, -1.5792906173715502) +description = Hazel Green town, WI +station = ('kpvb', 0.0024843192967121384) +zone = ('ilz001', 0.0048000347418945205) + +[fips5504334300] +centroid = (0.75181001752781074, -1.5813804920711807) +description = Hickory Grove town, WI +station = ('kovs', 0.0016275629783387194) +zone = ('wiz061', 0.0038480608117827213) + +[fips5504337800] +centroid = (0.74273016898711297, -1.5811461467125154) +description = Jamestown town, WI +station = ('kdbq', 0.0030404353591958881) +zone = ('iaz042', 0.0040177059392565188) + +[fips5504342250] +centroid = (0.74782694928195692, -1.5831254897106171) +description = Lancaster city, WI +station = ('kpvb', 0.0043807444072433092) +zone = ('wiz061', 0.00035207797113886205) + +[fips5504343825] +centroid = (0.74876103204433175, -1.5813715210788255) +description = Liberty town, WI +station = ('kpvb', 0.0042493750568890487) +zone = ('wiz061', 0.0014083975755263291) + +[fips5504344050] +centroid = (0.74727998054767442, -1.5793347742016257) +description = Lima town, WI +station = ('kpvb', 0.0022875989153155803) +zone = ('wiz061', 0.0029187206800720985) + +[fips5504345025] +centroid = (0.74877436635981709, -1.5855145662039172) +description = Little Grant town, WI +station = ('kovs', 0.0047916042313577894) +zone = ('wiz061', 0.0018515378769567135) + +[fips5504345325] +centroid = (0.74874823878091468, -1.5784010754116864) +description = Livingston village, WI +station = ('kmrj', 0.0026184714092051288) +zone = ('wiz062', 0.0042176730818765011) + +[fips5504349350] +centroid = (0.75179221516944039, -1.5834402074813367) +description = Marion town, WI +station = ('kovs', 0.0014176580594634641) +zone = ('wiz061', 0.0036206994738102617) + +[fips5504352150] +centroid = (0.75071400311743586, -1.5874846240503984) +description = Millville town, WI +station = ('kpdc', 0.0021568806314410638) +zone = ('wiz054', 0.0039706038935377781) + +[fips5504353950] +centroid = (0.74996396532468379, -1.5783617705969315) +description = Montfort village, WI +station = ('kmrj', 0.0029677008476073942) +zone = ('wiz062', 0.0038432245025149317) + +[fips5504354675] +centroid = (0.74996073646556771, -1.5857905725718273) +description = Mount Hope village, WI +station = ('kovs', 0.0038651518228444573) +zone = ('wiz061', 0.0026446337496159834) + +[fips5504354700] +centroid = (0.75017024578897706, -1.5855189818869246) +description = Mount Hope town, WI +station = ('kovs', 0.0035795050494637549) +zone = ('wiz061', 0.0026544482952024395) + +[fips5504354775] +centroid = (0.75028990556249375, -1.5834525818657335) +description = Mount Ida town, WI +station = ('kovs', 0.0028696320232408936) +zone = ('wiz061', 0.0021247345540964619) + +[fips5504355200] +centroid = (0.75379206578625302, -1.5784740476277124) +description = Muscoda village, WI +station = ('klnr', 0.0032993879256126291) +zone = ('wiz055', 0.0032576508258055736) + +[fips5504355225] +centroid = (0.75335929394492851, -1.5793125736135403) +description = Muscoda town, WI +station = ('kovs', 0.0025001538393905785) +zone = ('wiz055', 0.0037617934765091206) + +[fips5504358125] +centroid = (0.7488467975237747, -1.5832742615760573) +description = North Lancaster town, WI +station = ('kovs', 0.0042817980881077501) +zone = ('wiz061', 0.00067705442452826005) + +[fips5504361150] +centroid = (0.74432807027719128, -1.5815659507574975) +description = Paris town, WI +station = ('kpvb', 0.0023936876567332028) +zone = ('wiz061', 0.0040168207218866606) + +[fips5504361425] +centroid = (0.74945157156288333, -1.5877659885791122) +description = Patch Grove village, WI +station = ('kpdc', 0.0024110414438291085) +zone = ('wiz061', 0.0036320445456409249) + +[fips5504361450] +centroid = (0.74960561432266437, -1.5875934453292602) +description = Patch Grove town, WI +station = ('kpdc', 0.0024300456856236681) +zone = ('wiz061', 0.0035724050476666843) + +[fips5504363250] +centroid = (0.74583610456408456, -1.5790142270312044) +description = Platteville city, WI +station = ('kpvb', 0.00085242487808410256) +zone = ('wiz061', 0.0038174045971504588) + +[fips5504363275] +centroid = (0.74531795121575251, -1.5797892055789675) +description = Platteville town, WI +station = ('kpvb', 0.00099395156817466408) +zone = ('wiz061', 0.0037640068403650721) + +[fips5504364625] +centroid = (0.74500286692588991, -1.5831425415774092) +description = Potosi village, WI +station = ('kpvb', 0.003431240098066648) +zone = ('wiz061', 0.003176186513310841) + +[fips5504364650] +centroid = (0.74469216341244993, -1.5832916276021147) +description = Potosi town, WI +station = ('kdbq', 0.0046770487659980329) +zone = ('wiz061', 0.003489080709428184) + +[fips5504374450] +centroid = (0.74419776399523752, -1.5792832869886919) +description = Smelser town, WI +station = ('kpvb', 0.0010643276591963751) +zone = ('wiz061', 0.0048779843345164893) + +[fips5504375075] +centroid = (0.74719627455674886, -1.583439771149024) +description = South Lancaster town, WI +station = ('kpvb', 0.004214397710988662) +zone = ('wiz061', 0.0010100150967967429) + +[fips5504379250] +centroid = (0.74509226269017703, -1.5827833353640564) +description = Tennyson village, WI +station = ('kpvb', 0.0031662007491367293) +zone = ('wiz061', 0.0030967375071198427) + +[fips5504383900] +centroid = (0.74572716111217507, -1.5852725239432506) +description = Waterloo town, WI +station = ('kdbq', 0.0059451002458539605) +zone = ('wiz061', 0.0029158119441928614) + +[fips5504384075] +centroid = (0.75331162900305659, -1.581414875057445) +description = Watterstown town, WI +station = ('kovs', 0.00097524665281099789) +zone = ('wiz055', 0.0043728966778489144) + +[fips5504387800] +centroid = (0.7502648949943127, -1.5792856955430596) +description = Wingville town, WI +station = ('kovs', 0.0037943055668462579) +zone = ('wiz061', 0.0034986836019349717) + +[fips5504388825] +centroid = (0.75210572866297609, -1.5847065660267063) +description = Woodman village, WI +station = ('kovs', 0.001761940254964886) +zone = ('wiz054', 0.0030812025984932054) + +[fips5504388850] +centroid = (0.75129207361898886, -1.5851162820686122) +description = Woodman town, WI +station = ('kovs', 0.002521479737438321) +zone = ('wiz061', 0.0034382769269591098) + +[fips5504389250] +centroid = (0.74950550223677004, -1.590052439712395) +description = Wyalusing town, WI +station = ('kpdc', 0.0013961493413876169) +zone = ('iaz030', 0.0034989800503018964) + +[fips5504400] +centroid = (0.78461072319882608, -1.6121664594668639) +description = Baldwin village, WI +station = ('krnh', 0.0039593552867702234) +zone = ('wiz023', 0.0017154444763490136) + +[fips5504475] +centroid = (0.79356682789555733, -1.6136119411533656) +description = Balsam Lake village, WI +station = ('koeo', 0.004021161538023882) +zone = ('wiz014', 0.00018463789065632793) + +[fips55045] +centroid = (0.74486687087057457, -1.5639134289034391) +description = Green County, WI +station = ('keft', 0.0011111869292948894) +zone = ('wiz068', 5.932563434123862e-05) + +[fips5504500325] +centroid = (0.74572145388552102, -1.5669364613409411) +description = Adams town, WI +station = ('keft', 0.0031018212848945154) +zone = ('wiz068', 0.0024077623663231354) + +[fips5504500750] +centroid = (0.74537903773957226, -1.560968691936182) +description = Albany village, WI +station = ('keft', 0.0025465304625984122) +zone = ('wiz068', 0.0021722532150450936) + +[fips5504500775] +centroid = (0.7457331824980945, -1.5606858438776037) +description = Albany town, WI +station = ('keft', 0.002934610005668116) +zone = ('wiz068', 0.00247017843666488) + +[fips5504506300] +centroid = (0.74795542296819628, -1.5626209602324599) +description = Belleville village, WI +station = ('keft', 0.0042517510595213182) +zone = ('wiz068', 0.0031803095648804706) + +[fips5504509925] +centroid = (0.74380094593650403, -1.5599163805702769) +description = Brodhead city, WI +station = ('keft', 0.0027514542584857102) +zone = ('wiz068', 0.0030996559219770661) + +[fips5504510075] +centroid = (0.74789102031879762, -1.5599079157234048) +description = Brooklyn village, WI +station = ('kc29', 0.0049288664403585002) +zone = ('wiz063', 0.003815106862672603) + +[fips5504510100] +centroid = (0.74714691664550237, -1.5608827344705212) +description = Brooklyn town, WI +station = ('keft', 0.0039419601167873918) +zone = ('wiz068', 0.0031271208460575822) + +[fips5504510475] +centroid = (0.74313991993560369, -1.5671200001650807) +description = Browntown village, WI +station = ('keft', 0.0026278524103860064) +zone = ('wiz068', 0.0029828163334267165) + +[fips5504511725] +centroid = (0.74266545217844915, -1.5668761602152845) +description = Cadiz town, WI +station = ('keft', 0.0026171682786245471) +zone = ('wiz068', 0.0031576397582806187) + +[fips5504515000] +centroid = (0.74261363335295738, -1.5648876193320249) +description = Clarno town, WI +station = ('keft', 0.0014716144033699644) +zone = ('wiz068', 0.0024159122536819306) + +[fips5504519075] +centroid = (0.74428222047774151, -1.5608085579773114) +description = Decatur town, WI +station = ('keft', 0.0021555180823833878) +zone = ('wiz068', 0.0023244747472528559) + +[fips5504524725] +centroid = (0.74713958626264398, -1.5628934235819887) +description = Exeter town, WI +station = ('keft', 0.0034137055802162686) +zone = ('wiz068', 0.0023417080144593374) + +[fips5504525] +centroid = (0.77333015409770356, -1.5621775593359908) +description = Bancroft CDP, WI +station = ('kste', 0.0041376763738096758) +zone = ('wiz036', 0.0029230670497601891) + +[fips5504537875] +centroid = (0.74269355197940623, -1.5627388397701396) +description = Jefferson town, WI +station = ('keft', 0.0012720952892025746) +zone = ('wiz068', 0.0023600834043608337) + +[fips5504538550] +centroid = (0.74420992894012383, -1.5667658554065587) +description = Jordan town, WI +station = ('keft', 0.0023303695210201924) +zone = ('wiz068', 0.0022522111678189806) + +[fips5504550] +centroid = (0.76605860628841216, -1.5880572665779775) +description = Bangor village, WI +station = ('kcmy', 0.0033637604244366242) +zone = ('wiz041', 0.0016076282967562527) + +[fips5504553750] +centroid = (0.74352850004026771, -1.5645808602626943) +description = Monroe city, WI +station = ('keft', 0.00072363976041357227) +zone = ('wiz068', 0.0014782806653662872) + +[fips5504553775] +centroid = (0.74425478390190003, -1.5648994352110608) +description = Monroe town, WI +station = ('keft', 0.0010350451330585022) +zone = ('wiz068', 0.0010081990971821744) + +[fips5504554000] +centroid = (0.74605945434846221, -1.5636306681113237) +description = Monticello village, WI +station = ('keft', 0.0022874636724696676) +zone = ('wiz068', 0.0011644875062788783) + +[fips5504554850] +centroid = (0.74574587104175638, -1.5627804833260923) +description = Mount Pleasant town, WI +station = ('keft', 0.002075905166870097) +zone = ('wiz068', 0.0011515922738209658) + +[fips5504556700] +centroid = (0.74722575316781503, -1.5644020861874124) +description = New Glarus village, WI +station = ('keft', 0.0034970398502913074) +zone = ('wiz068', 0.0023539696784863127) + +[fips5504556725] +centroid = (0.74724174038376323, -1.5649158936659073) +description = New Glarus town, WI +station = ('keft', 0.0035912289218791881) +zone = ('wiz068', 0.0024621162118955409) + +[fips5504576075] +centroid = (0.7426153612289168, -1.5607595142253303) +description = Spring Grove town, WI +station = ('keft', 0.0024255620987260794) +zone = ('wiz068', 0.0032301091140995585) + +[fips5504578875] +centroid = (0.74419631537195829, -1.5628341347472985) +description = Sylvester town, WI +station = ('keft', 0.00073810189879310961) +zone = ('wiz068', 0.0010325911089369545) + +[fips5504583625] +centroid = (0.74571934203712609, -1.5648842159399834) +description = Washington town, WI +station = ('keft', 0.0021467925404740919) +zone = ('wiz068', 0.0011110818779096338) + +[fips5504589475] +centroid = (0.74724397440520585, -1.566946130464997) +description = York town, WI +station = ('keft', 0.0042310127596079869) +zone = ('wiz068', 0.0032591200311904867) + +[fips5504625] +centroid = (0.75868429349276323, -1.5662111548636899) +description = Baraboo city, WI +station = ('kdll', 0.0010105167847115576) +zone = ('wiz056', 0.0027764405264718902) + +[fips55047] +centroid = (0.76378068981517167, -1.5531201208228886) +description = Green Lake County, WI +station = ('ky50', 0.0063080992766488637) +zone = ('wiz047', 0.00099533208952966561) + +[fips5504706925] +centroid = (0.76738453292115216, -1.5525119608450311) +description = Berlin city, WI +station = ('ky50', 0.0046021014340242965) +zone = ('wiz047', 0.0031485685767332901) + +[fips5504706950] +centroid = (0.76682150715775144, -1.552250929402103) +description = Berlin town, WI +station = ('ky50', 0.0049645917021704285) +zone = ('wiz047', 0.0027223987913512996) + +[fips5504710125] +centroid = (0.76565218891879272, -1.552107358617834) +description = Brooklyn town, WI +station = ('kfld', 0.005890277882969642) +zone = ('wiz047', 0.0018836317822758877) + +[fips5504731300] +centroid = (0.7651847199319386, -1.5526063831575641) +description = Green Lake city, WI +station = ('ky50', 0.0055773115433392657) +zone = ('wiz047', 0.001316050659831149) + +[fips5504731350] +centroid = (0.76378068981517167, -1.5531201208228886) +description = Green Lake town, WI +station = ('ky50', 0.0063080992766488637) +zone = ('wiz047', 0.00099533208952966561) + +[fips5504739750] +centroid = (0.76259620466501332, -1.5556358035001281) +description = Kingston village, WI +station = ('ky50', 0.006449834125620617) +zone = ('wiz047', 0.002158109511092971) + +[fips5504739775] +centroid = (0.76236718256056657, -1.5566120883238161) +description = Kingston town, WI +station = ('ky50', 0.0064702253340205565) +zone = ('wiz047', 0.002756340895266259) + +[fips5504746875] +centroid = (0.76218130499522918, -1.5523976417790255) +description = Mackford town, WI +station = ('kunu', 0.0052357685702376939) +zone = ('wiz047', 0.0025988205322382443) + +[fips5504748400] +centroid = (0.76227258571510847, -1.5543032097096454) +description = Manchester town, WI +station = ('kunu', 0.0062109316275053353) +zone = ('wiz047', 0.0021905055481645478) + +[fips5504749450] +centroid = (0.76289783246634291, -1.5531896896468731) +description = Markesan city, WI +station = ('kunu', 0.0061522091600600438) +zone = ('wiz047', 0.0017024678856795415) + +[fips5504749500] +centroid = (0.76351731963104574, -1.5557577147483799) +description = Marquette village, WI +station = ('ky50', 0.0055574830000422563) +zone = ('wiz047', 0.0015072168498270846) + +[fips5504749525] +centroid = (0.76371653151186836, -1.5562229148072064) +description = Marquette town, WI +station = ('ky50', 0.0052521083325554486) +zone = ('wiz047', 0.0016848766177790537) + +[fips5504765600] +centroid = (0.76537220320018784, -1.5556042654005446) +description = Princeton city, WI +station = ('ky50', 0.0039606575216412495) +zone = ('wiz047', 0.0014024129994482004) + +[fips5504765625] +centroid = (0.76491143627766134, -1.5553275085410561) +description = Princeton town, WI +station = ('ky50', 0.0044557431790078596) +zone = ('wiz047', 0.00097619497392931393) + +[fips5504770925] +centroid = (0.76611494551666648, -1.5548118161069691) +description = St. Marie town, WI +station = ('ky50', 0.0037645030979063278) +zone = ('wiz047', 0.0017273004349181969) + +[fips5504772525] +centroid = (0.76704838250721818, -1.5545512559029389) +description = Seneca town, WI +station = ('ky50', 0.0033679594456038227) +zone = ('wiz047', 0.0026068142905904625) + +[fips5504775] +centroid = (0.75069775410209971, -1.5690015349119006) +description = Barneveld village, WI +station = ('klnr', 0.0051065130442599048) +zone = ('wiz062', 0.0030470434076096844) + +[fips5504875] +centroid = (0.79241773802262927, -1.6029863243073466) +description = Barron city, WI +station = ('krpd', 0.00090990087167172053) +zone = ('wiz015', 0.00038037956358452326) + +[fips55049] +centroid = (0.75050939816922457, -1.5731296923784728) +description = Iowa County, WI +station = ('kmrj', 0.00237836005529151) +zone = ('wiz062', 2.3621879841470506e-05) + +[fips5504902550] +centroid = (0.75334721626650469, -1.5691799773746247) +description = Arena village, WI +station = ('klnr', 0.0036313900632509717) +zone = ('wiz062', 0.0040685272376532041) + +[fips5504902575] +centroid = (0.75302275955855902, -1.5695634262112879) +description = Arena town, WI +station = ('klnr', 0.0034657053841992227) +zone = ('wiz062', 0.0036418808276219728) + +[fips5504904025] +centroid = (0.75376714248453469, -1.5764921215423175) +description = Avoca village, WI +station = ('klnr', 0.0018885040408020369) +zone = ('wiz055', 0.0035320751132896237) + +[fips5504904775] +centroid = (0.75069775410209971, -1.5690015349119006) +description = Barneveld village, WI +station = ('klnr', 0.0051065130442599048) +zone = ('wiz062', 0.0030470434076096844) + +[fips5504908125] +centroid = (0.74726650660584892, -1.5683896399294439) +description = Blanchardville village, WI +station = ('kmrj', 0.004887714272432106) +zone = ('wiz068', 0.0040824368191396433) + +[fips5504909600] +centroid = (0.75041178190416047, -1.5689906091507833) +description = Brigham town, WI +station = ('klnr', 0.005316479776865001) +zone = ('wiz062', 0.003050320438311287) + +[fips5504915875] +centroid = (0.75268427040342722, -1.5750642502279684) +description = Clyde town, WI +station = ('klnr', 0.0017695558882745157) +zone = ('wiz062', 0.002589650556769667) + +[fips5504915975] +centroid = (0.7499055491546196, -1.5765384076740805) +description = Cobb village, WI +station = ('kmrj', 0.0018825968630499564) +zone = ('wiz062', 0.0025423853289171187) + +[fips5504920350] +centroid = (0.74988699630467082, -1.5730721488730344) +description = Dodgeville city, WI +station = ('kmrj', 0.0019073171044145646) +zone = ('wiz062', 0.00061662898808001422) + +[fips5504920375] +centroid = (0.75064144978043046, -1.5729452285298298) +description = Dodgeville town, WI +station = ('kmrj', 0.0025621398082976963) +zone = ('wiz062', 0.00021089400692169899) + +[fips5504922525] +centroid = (0.7504584694616514, -1.5769172313882258) +description = Eden town, WI +station = ('kmrj', 0.0024859405523600768) +zone = ('wiz062', 0.0027485777510035878) + +[fips5504925] +centroid = (0.79650245424411925, -1.6055937414900709) +description = Barronett CDP, WI +station = ('kube', 0.0023780848494855656) +zone = ('wiz015', 0.0041114714072252208) + +[fips5504934450] +centroid = (0.75131882951642204, -1.5774317719050062) +description = Highland village, WI +station = ('kmrj', 0.0034044921362187657) +zone = ('wiz062', 0.0032287942998014772) + +[fips5504934475] +centroid = (0.75161932285373789, -1.5766075925256293) +description = Highland town, WI +station = ('klnr', 0.0032670744712431287) +zone = ('wiz062', 0.0027576795677891688) + +[fips5504935400] +centroid = (0.74832073783393116, -1.5696480572267169) +description = Hollandale village, WI +station = ('kmrj', 0.0038115664529617646) +zone = ('wiz062', 0.0033703083456111151) + +[fips5504944625] +centroid = (0.74906915247047878, -1.5755815134583819) +description = Linden village, WI +station = ('kmrj', 0.00079226406306528269) +zone = ('wiz062', 0.0022781571268335938) + +[fips5504944650] +centroid = (0.7490034233708488, -1.5753820572314641) +description = Linden town, WI +station = ('kmrj', 0.00064759439066585463) +zone = ('wiz062', 0.0022105342179141937) + +[fips5504945325] +centroid = (0.74874759300909144, -1.5782234183471258) +description = Livingston village, WI +station = ('kmrj', 0.002488919565154448) +zone = ('wiz062', 0.0041000217988434737) + +[fips5504951725] +centroid = (0.74834056477423383, -1.5772708350946798) +description = Mifflin town, WI +station = ('kmrj', 0.0017841363648415135) +zone = ('wiz062', 0.0037045371612118854) + +[fips5504953100] +centroid = (0.74808913264219146, -1.5740017286859393) +description = Mineral Point city, WI +station = ('kmrj', 0.00073594557735100056) +zone = ('wiz062', 0.0024887770920520276) + +[fips5504953125] +centroid = (0.74823511198082826, -1.5733687850327036) +description = Mineral Point town, WI +station = ('kmrj', 0.0011108968276019623) +zone = ('wiz062', 0.0022703690670027358) + +[fips5504953950] +centroid = (0.74996349408578578, -1.5782553753257298) +description = Montfort village, WI +station = ('kmrj', 0.0029001144631993097) +zone = ('wiz062', 0.003766238465590608) + +[fips5504954425] +centroid = (0.74805188731595396, -1.5691147020606) +description = Moscow town, WI +station = ('kmrj', 0.0042219102676164001) +zone = ('wiz062', 0.003842576157769736) + +[fips5504955200] +centroid = (0.7536955490786178, -1.5781424874297107) +description = Muscoda village, WI +station = ('klnr', 0.0030772702215047551) +zone = ('wiz055', 0.0033532652384259897) + +[fips5504965700] +centroid = (0.75324469562624263, -1.5769887898875576) +description = Pulaski town, WI +station = ('klnr', 0.0024122495200370134) +zone = ('wiz062', 0.003918496076512218) + +[fips5504967100] +centroid = (0.74772814619300154, -1.5777116354505636) +description = Rewey village, WI +station = ('kmrj', 0.0022351219724295272) +zone = ('wiz062', 0.0043355506706068041) + +[fips5504967875] +centroid = (0.75046576493792461, -1.5706783774440467) +description = Ridgeway village, WI +station = ('kmrj', 0.0036342413986440204) +zone = ('wiz062', 0.0018149230064223563) + +[fips5504967900] +centroid = (0.74972209759694242, -1.5710511274123953) +description = Ridgeway town, WI +station = ('kmrj', 0.0030391592782221741) +zone = ('wiz062', 0.0017277030828757485) + +[fips5504983150] +centroid = (0.74813070638497392, -1.5710526633021369) +description = Waldwick town, WI +station = ('kmrj', 0.0028018649778074039) +zone = ('wiz062', 0.0028274375013576901) + +[fips5504989350] +centroid = (0.75233277854536817, -1.5724309672657295) +description = Wyoming town, WI +station = ('klnr', 0.002251294330779318) +zone = ('wiz062', 0.0019082356213532615) + +[fips55051] +centroid = (0.808550828589779, -1.5753568546770651) +description = Iron County, WI +station = ('kiwd', 0.0039236307895912483) +zone = ('wiz004', 0.001145270714857053) + +[fips5505100000] +centroid = (0.81491936049738123, -1.578083547660871) +description = County subdivisions not defined, WI +station = ('kiwd', 0.0043845268335144846) +zone = ('wiz003', 0.0072808862969367975) + +[fips5505101925] +centroid = (0.80867561963129664, -1.5788910416925985) +description = Anderson town, WI +station = ('kiwd', 0.0052858953355139938) +zone = ('wiz004', 0.0029505854820345303) + +[fips5505112525] +centroid = (0.80789240312946431, -1.5743335855899134) +description = Carey town, WI +station = ('kiwd', 0.0043482784150477511) +zone = ('wiz004', 0.00066289761276362778) + +[fips5505131875] +centroid = (0.81109356387042453, -1.5795962943367445) +description = Gurney town, WI +station = ('kiwd', 0.0045812153673704089) +zone = ('wiz003', 0.0034543367321103083) + +[fips5505136525] +centroid = (0.81057446804429645, -1.574454920879512) +description = Hurley city, WI +station = ('kiwd', 0.0018313759109035114) +zone = ('wiz004', 0.0031691079247270133) + +[fips5505139625] +centroid = (0.81101654249053401, -1.5757016095642118) +description = Kimball town, WI +station = ('kiwd', 0.0021110916720990863) +zone = ('wiz004', 0.0036177914203534378) + +[fips5505140075] +centroid = (0.80769059070805616, -1.577138958016399) +description = Knight town, WI +station = ('kiwd', 0.0052575060353945696) +zone = ('wiz004', 0.0014878378966490607) + +[fips5505151200] +centroid = (0.80556898592262438, -1.5731153283187289) +description = Mercer town, WI +station = ('kd25', 0.0030865501305552437) +zone = ('wiz004', 0.0022800754525411811) + +[fips5505154075] +centroid = (0.81038647863056412, -1.5749686585448368) +description = Montreal city, WI +station = ('kiwd', 0.002181585097516002) +zone = ('wiz004', 0.0029572366519145356) + +[fips5505159850] +centroid = (0.80776399925639497, -1.5723452366928714) +description = Oma town, WI +station = ('kd25', 0.0037371533389344088) +zone = ('wiz004', 0.0018789343531585032) + +[fips5505161825] +centroid = (0.80915193743745839, -1.5756328435916831) +description = Pence town, WI +station = ('kiwd', 0.0034694794314584282) +zone = ('wiz004', 0.0017737325197144335) + +[fips5505171875] +centroid = (0.81153862282968314, -1.5781171976088495) +description = Saxon town, WI +station = ('kiwd', 0.003492201015023056) +zone = ('wiz003', 0.0044590862668213958) + +[fips5505173400] +centroid = (0.80376775377468868, -1.572332164176774) +description = Sherman town, WI +station = ('kd25', 0.0027691250925164028) +zone = ('wiz004', 0.0041078496696251377) + +[fips55053] +centroid = (0.77361535835077189, -1.5848731227972241) +description = Jackson County, WI +station = ('kbck', 0.0014154489821692495) +zone = ('wiz034', 0.00010251851192711338) + +[fips5505300350] +centroid = (0.7741190254663125, -1.5852850030474024) +description = Adams town, WI +station = ('kbck', 0.001827743921093023) +zone = ('wiz034', 0.00068023864148923391) + +[fips5505300900] +centroid = (0.7729663751217104, -1.5876981476310872) +description = Albion town, WI +station = ('kbck', 0.0016195518764007049) +zone = ('wiz034', 0.0021108145511785038) + +[fips5505301275] +centroid = (0.7756407780411263, -1.5857141969637603) +description = Alma town, WI +station = ('kbck', 0.0033331071446540536) +zone = ('wiz034', 0.0022145002240594311) + +[fips5505301300] +centroid = (0.77557028419263829, -1.5867293328165977) +description = Alma Center village, WI +station = ('kbck', 0.0033552223968967665) +zone = ('wiz034', 0.0024560614843149959) + +[fips5505305550] +centroid = (0.77161110950424427, -1.5770876278830981) +description = Bear Bluff town, WI +station = ('kvok', 0.0049709477194178004) +zone = ('wiz042', 0.0056309188456223711) + +[fips5505307900] +centroid = (0.77309273695955472, -1.585537587096751) +description = Black River Falls city, WI +station = ('kbck', 0.00078742715470409127) +zone = ('wiz034', 0.00064803488169556858) + +[fips5505309900] +centroid = (0.77296602605586007, -1.5842830269771249) +description = Brockway town, WI +station = ('kbck', 0.0011684639247739137) +zone = ('wiz034', 0.00068189890671136193) + +[fips5505314800] +centroid = (0.77431069752476656, -1.578212649665641) +description = City Point town, WI +station = ('kmfi', 0.005569710558497796) +zone = ('wiz035', 0.0050337968217141968) + +[fips5505315375] +centroid = (0.77753213899163498, -1.5876609197581422) +description = Cleveland town, WI +station = ('kbck', 0.0054214154642445956) +zone = ('wiz034', 0.0044914521032553478) + +[fips5505318075] +centroid = (0.77455600355113441, -1.5900805569666445) +description = Curran town, WI +station = ('kbck', 0.0038969142417921497) +zone = ('wiz033', 0.0034240443724962541) + +[fips5505325] +centroid = (0.77820234542440092, -1.6136761692698389) +description = Bay City village, WI +station = ('krgk', 0.00036665066998633089) +zone = ('wiz024', 0.0023412789132588197) + +[fips5505327225] +centroid = (0.77148982657452325, -1.589873124585045) +description = Franklin town, WI +station = ('kbck', 0.003147649688804508) +zone = ('wiz033', 0.0037569782814766963) + +[fips5505328250] +centroid = (0.77608098498506428, -1.5879640310893361) +description = Garden Valley town, WI +station = ('kbck', 0.0041249169797516827) +zone = ('wiz034', 0.0033971411013434486) + +[fips5505328325] +centroid = (0.77768129482951054, -1.5902747248459288) +description = Garfield town, WI +station = ('kbck', 0.0063145507178252527) +zone = ('wiz028', 0.0036262242692775295) + +[fips5505335075] +centroid = (0.77463237915920169, -1.5885137748971292) +description = Hixton village, WI +station = ('kbck', 0.0031071358942839382) +zone = ('wiz034', 0.0028486777212997057) + +[fips5505335100] +centroid = (0.77445198192771547, -1.5877918543586267) +description = Hixton town, WI +station = ('kbck', 0.0026429519817489696) +zone = ('wiz034', 0.0023035378522122448) + +[fips5505337275] +centroid = (0.77148959968172037, -1.5876425414411186) +description = Irving town, WI +station = ('kbck', 0.001657277571089877) +zone = ('wiz034', 0.0028459754511482274) + +[fips5505340000] +centroid = (0.7724471047626571, -1.5796165052494826) +description = Knapp town, WI +station = ('kbck', 0.00431058638366632) +zone = ('wiz034', 0.0038951253398336666) + +[fips5505340325] +centroid = (0.77451826953270619, -1.5818494271346066) +description = Komensky town, WI +station = ('kbck', 0.003494046132597232) +zone = ('wiz034', 0.0023688478207083852) + +[fips5505348425] +centroid = (0.77153457681654436, -1.5843888462896734) +description = Manchester town, WI +station = ('kbck', 0.0011796379631673077) +zone = ('wiz034', 0.0020069650409715815) + +[fips5505350] +centroid = (0.81710159802102733, -1.5852130605756352) +description = Bayfield city, WI +station = ('kasx', 0.0047758010938612145) +zone = ('wiz002', 0.0067944439034313036) + +[fips5505350750] +centroid = (0.7702339574579582, -1.5881957060942458) +description = Melrose village, WI +station = ('kbck', 0.0027717454502912478) +zone = ('wiz034', 0.0040631622758257428) + +[fips5505350775] +centroid = (0.76997781293693546, -1.5884134882783096) +description = Melrose town, WI +station = ('kbck', 0.0030676294669109844) +zone = ('wiz041', 0.0038980772081768297) + +[fips5505351300] +centroid = (0.77580888815467841, -1.5853605408974287) +description = Merrillan village, WI +station = ('kbck', 0.0035060570472684707) +zone = ('wiz034', 0.0023235294550280712) + +[fips5505352050] +centroid = (0.77217961560149639, -1.5818776665619039) +description = Millston town, WI +station = ('kbck', 0.0026922078311599523) +zone = ('wiz034', 0.002511683642229734) + +[fips5505357775] +centroid = (0.76999933284661248, -1.5903775247388714) +description = North Bend town, WI +station = ('kbck', 0.0041125880985759108) +zone = ('wiz041', 0.0036873097579813155) + +[fips5505357975] +centroid = (0.77612702677073198, -1.5902426980541546) +description = Northfield town, WI +station = ('kbck', 0.0050450093660305232) +zone = ('wiz033', 0.0041902999018327176) + +[fips5505375900] +centroid = (0.77295501302827985, -1.5899299175989048) +description = Springfield town, WI +station = ('kbck', 0.0031451335133423383) +zone = ('wiz033', 0.0032890794194372994) + +[fips5505379150] +centroid = (0.77355997905360618, -1.5903514669731391) +description = Taylor village, WI +station = ('kbck', 0.0036031977570982572) +zone = ('wiz033', 0.0029892093960231713) + +[fips5505450] +centroid = (0.75367874155792114, -1.5341703480957003) +description = Bayside village, WI +station = ('kmwc', 0.002035500238496381) +zone = ('wiz066', 0.0031739975175565584) + +[fips55055] +centroid = (0.75073255596738453, -1.5493983458193508) +description = Jefferson County, WI +station = ('kryv', 0.0027661270159563666) +zone = ('wiz064', 0.00012618261250362857) + +[fips5505504125] +centroid = (0.75145100330067549, -1.550514675862219) +description = Aztalan town, WI +station = ('kryv', 0.0024876304994599402) +zone = ('wiz064', 0.00099000026788066144) + +[fips5505512225] +centroid = (0.75077037725227525, -1.553533624229271) +description = Cambridge village, WI +station = ('kmsn', 0.0047836463899055401) +zone = ('wiz064', 0.0030002506344838516) + +[fips5505516225] +centroid = (0.74836842022909567, -1.5484548382790151) +description = Cold Spring town, WI +station = ('kryv', 0.0050322121763454342) +zone = ('wiz064', 0.0025886497180879165) + +[fips5505516650] +centroid = (0.75163319822129115, -1.5463072455410212) +description = Concord town, WI +station = ('kryv', 0.0023350211838394979) +zone = ('wiz064', 0.0024120364533675547) + +[fips5505525300] +centroid = (0.75150240324714668, -1.5483942928072636) +description = Farmington town, WI +station = ('kryv', 0.0018980590590826955) +zone = ('wiz064', 0.00099616450292229291) + +[fips5505526675] +centroid = (0.74917594916740837, -1.5506327124795314) +description = Fort Atkinson city, WI +station = ('kryv', 0.0045292181875226491) +zone = ('wiz064', 0.0018962849074218517) + +[fips5505533700] +centroid = (0.74951778935470403, -1.5484884009605311) +description = Hebron town, WI +station = ('kryv', 0.0038832337538945222) +zone = ('wiz064', 0.0015059926959560708) + +[fips5505537600] +centroid = (0.7532531081132372, -1.5464502403666374) +description = Ixonia town, WI +station = ('kryv', 0.0014283027880226799) +zone = ('wiz064', 0.0032381039219159143) + +[fips5505537900] +centroid = (0.75056039668996788, -1.5499889652382257) +description = Jefferson city, WI +station = ('kryv', 0.003068579102007374) +zone = ('wiz064', 0.00050358252293967076) + +[fips5505537925] +centroid = (0.75001445769994401, -1.549626652338804) +description = Jefferson town, WI +station = ('kryv', 0.0035029574920238623) +zone = ('wiz064', 0.00085387733685447754) + +[fips5505538350] +centroid = (0.75187131349114078, -1.5493474345650702) +description = Johnson Creek village, WI +station = ('kryv', 0.0016788629232141628) +zone = ('wiz064', 0.0010168298384875586) + +[fips5505540375] +centroid = (0.74863620609622916, -1.5505121102282184) +description = Koshkonong town, WI +station = ('kryv', 0.0050086444821425009) +zone = ('wiz064', 0.0023567375667948648) + +[fips5505540750] +centroid = (0.75295563419552725, -1.5453789223651779) +description = Lac La Belle village, WI +station = ('kryv', 0.0022468981221337812) +zone = ('wiz064', 0.0036289655848539978) + +[fips5505541675] +centroid = (0.75181827293517267, -1.551730332592818) +description = Lake Mills city, WI +station = ('kryv', 0.0029016551531393432) +zone = ('wiz064', 0.0019356777638574252) + +[fips5505541700] +centroid = (0.75183117091834484, -1.552819435499355) +description = Lake Mills town, WI +station = ('kryv', 0.0035885809796026508) +zone = ('wiz064', 0.0026606369114393195) + +[fips5505551850] +centroid = (0.75281639182780313, -1.5503349767624337) +description = Milford town, WI +station = ('kryv', 0.0015291411733713552) +zone = ('wiz064', 0.0020680963797972476) + +[fips5505559125] +centroid = (0.7502289063051365, -1.5524107666550004) +description = Oakland town, WI +station = ('kryv', 0.0043186243686176183) +zone = ('wiz064', 0.0022671630006415285) + +[fips5505561025] +centroid = (0.74836559279570736, -1.5461548782973222) +description = Palmyra village, WI +station = ('kbuu', 0.004889264079704486) +zone = ('wiz064', 0.0034578561383629921) + +[fips5505561050] +centroid = (0.74847636884333157, -1.5464793175519755) +description = Palmyra town, WI +station = ('kryv', 0.0051199568833428062) +zone = ('wiz064', 0.0032146459040995204) + +[fips5505575] +centroid = (0.7772181193526162, -1.5485876403817995) +description = Bear Creek village, WI +station = ('kcli', 0.0014419298063903573) +zone = ('wiz037', 0.0031390932096538498) + +[fips5505578175] +centroid = (0.75070702180042781, -1.5462814321213842) +description = Sullivan village, WI +station = ('kryv', 0.0031054236652930003) +zone = ('wiz064', 0.0023082093851896713) + +[fips5505578200] +centroid = (0.74998986601078343, -1.5465827283101561) +description = Sullivan town, WI +station = ('kryv', 0.0036593170955578369) +zone = ('wiz064', 0.0022567500899772757) + +[fips5505578475] +centroid = (0.74848567144824463, -1.5530475325792981) +description = Sumner town, WI +station = ('kjvl', 0.0047286077400728252) +zone = ('wiz064', 0.0035529907562319176) + +[fips5505583925] +centroid = (0.75369474622716193, -1.5531692692946246) +description = Waterloo city, WI +station = ('kryv', 0.0034919933728119142) +zone = ('wiz064', 0.0039374269945885469) + +[fips5505583950] +centroid = (0.75311770546986756, -1.5522798669611011) +description = Waterloo town, WI +station = ('kryv', 0.0028458087698177586) +zone = ('wiz064', 0.0030725255544803765) + +[fips5505583975] +centroid = (0.75365018797135841, -1.5485881988871602) +description = Watertown city, WI +station = ('kryv', 0.000285687053096235) +zone = ('wiz064', 0.0028609222312798201) + +[fips5505584000] +centroid = (0.75322738196006289, -1.5488253367726288) +description = Watertown town, WI +station = ('kryv', 0.00035658000752850701) +zone = ('wiz064', 0.0024120341190772901) + +[fips5505586925] +centroid = (0.74787960586548952, -1.5486069437233263) +description = Whitewater city, WI +station = ('kryv', 0.0055229697285936446) +zone = ('wiz064', 0.0030373774649952927) + +[fips55057] +centroid = (0.76677263793869554, -1.5727857228894899) +description = Juneau County, WI +station = ('kvok', 0.0019190876435456539) +zone = ('wiz043', 0.00014549078535835224) + +[fips5505702850] +centroid = (0.77106229072095467, -1.5709880337599356) +description = Armenia town, WI +station = ('kisw', 0.0039624682041931574) +zone = ('wiz043', 0.004619559949710428) + +[fips5505712350] +centroid = (0.76654290024925553, -1.5755044920784913) +description = Camp Douglas village, WI +station = ('kvok', 0.00024156383555220767) +zone = ('wiz043', 0.001959895408702931) + +[fips5505715225] +centroid = (0.7668568326218117, -1.5731015925775156) +description = Clearfield town, WI +station = ('kvok', 0.0016932104996534509) +zone = ('wiz043', 0.00032312796946703257) + +[fips5505718225] +centroid = (0.76882935138253816, -1.5750834139431553) +description = Cutler town, WI +station = ('kvok', 0.0020649942441554412) +zone = ('wiz043', 0.0027535418565134986) + +[fips5505723800] +centroid = (0.76343176359111309, -1.5755155749192415) +description = Elroy city, WI +station = ('kvok', 0.003349882940452787) +zone = ('wiz043', 0.0037533270118646797) + +[fips5505725850] +centroid = (0.7713251722128901, -1.5728202105955091) +description = Finley town, WI +station = ('kisw', 0.0046462359543266475) +zone = ('wiz035', 0.0046596193864263721) + +[fips5505726825] +centroid = (0.76543370860302806, -1.5751834911224647) +description = Fountain town, WI +station = ('kvok', 0.0013612801285183625) +zone = ('wiz043', 0.0020998970424102367) + +[fips5505728850] +centroid = (0.7664137109780228, -1.5712938852580551) +description = Germantown town, WI +station = ('kvok', 0.0030164161756430436) +zone = ('wiz043', 0.0010958015253222609) + +[fips5505736675] +centroid = (0.76579984377351151, -1.5754354817598677) +description = Hustler village, WI +station = ('kvok', 0.00098153421691916584) +zone = ('wiz043', 0.002080610200312609) + +[fips5505739575] +centroid = (0.76330779285434391, -1.5692249196028636) +description = Kildare town, WI +station = ('kdll', 0.0041022044605439015) +zone = ('wiz043', 0.004197351306999793) + +[fips5505739800] +centroid = (0.77107490945144663, -1.5751521450090988) +description = Kingston town, WI +station = ('kvok', 0.0042989431661619396) +zone = ('wiz043', 0.0047617759148309022) + +[fips5505743300] +centroid = (0.76419468191374484, -1.5709576126710734) +description = Lemonweir town, WI +station = ('kvok', 0.0041455582776176768) +zone = ('wiz043', 0.0027668010631852198) + +[fips5505744675] +centroid = (0.76405577115857859, -1.5731810574183591) +description = Lindina town, WI +station = ('kvok', 0.0031791113336784127) +zone = ('wiz043', 0.0025871101196856009) + +[fips5505744825] +centroid = (0.76543552374545021, -1.5731029364810398) +description = Lisbon town, WI +station = ('kvok', 0.0021617263224066414) +zone = ('wiz043', 0.0012133157882593117) + +[fips5505746525] +centroid = (0.76215259432903382, -1.5685028419847284) +description = Lyndon town, WI +station = ('kdll', 0.0028348606524788841) +zone = ('wiz056', 0.0043312545804438749) + +[fips5505746600] +centroid = (0.76287050061025674, -1.5689580413069411) +description = Lyndon Station village, WI +station = ('kdll', 0.0036244805805706114) +zone = ('wiz043', 0.0046627773681656602) + +[fips5505749375] +centroid = (0.76458436157583753, -1.5698619996864265) +description = Marion town, WI +station = ('kdll', 0.0054542453903749311) +zone = ('wiz043', 0.0029354791894708565) + +[fips5505750025] +centroid = (0.76447697146696236, -1.5722332912746484) +description = Mauston city, WI +station = ('kvok', 0.0032695427867357883) +zone = ('wiz043', 0.0021867925551309836) + +[fips5505755700] +centroid = (0.7683306060954882, -1.5721061440386408) +description = Necedah village, WI +station = ('kvok', 0.0028622184704249903) +zone = ('wiz043', 0.0017723306233131638) + +[fips5505755725] +centroid = (0.76870506648650372, -1.572650686765263) +description = Necedah town, WI +station = ('kvok', 0.0027854546145961103) +zone = ('wiz043', 0.0020801990050881587) + +[fips5505756900] +centroid = (0.76576830567392795, -1.5736303749809926) +description = New Lisbon city, WI +station = ('kvok', 0.001657115061993546) +zone = ('wiz043', 0.001052510075485721) + +[fips5505760150] +centroid = (0.76686891030023552, -1.5750533419201436) +description = Orange town, WI +station = ('kvok', 0.00029913929746680642) +zone = ('wiz043', 0.0016506721424850161) + +[fips5505763650] +centroid = (0.76406406147252548, -1.5751810651148044) +description = Plymouth town, WI +station = ('kvok', 0.002724195511122453) +zone = ('wiz043', 0.0030907220187333237) + +[fips5505772625] +centroid = (0.76248399744740247, -1.5710386832148284) +description = Seven Mile Creek town, WI +station = ('kdll', 0.0042126020951799067) +zone = ('wiz043', 0.0043308036416692276) + +[fips5505778300] +centroid = (0.76251679218404755, -1.573112169272783) +description = Summit town, WI +station = ('kvok', 0.0045862371648152933) +zone = ('wiz043', 0.0041170895392962639) + +[fips5505781725] +centroid = (0.76240418354070882, -1.5753987251258208) +description = Union Center village, WI +station = ('kvok', 0.0043772942068041852) +zone = ('wiz043', 0.004624832095404611) + +[fips5505788150] +centroid = (0.76183686426734809, -1.5673783787075459) +description = Wisconsin Dells city, WI +station = ('kdll', 0.0022750046602413774) +zone = ('wiz056', 0.0043024005494640616) + +[fips5505788500] +centroid = (0.76189690359361673, -1.5747100880161538) +description = Wonewoc village, WI +station = ('kvok', 0.0049135708111946461) +zone = ('wiz043', 0.0049299563695048738) + +[fips5505788525] +centroid = (0.76240226367853159, -1.5751139048451877) +description = Wonewoc town, WI +station = ('kvok', 0.0043857878305894422) +zone = ('wiz043', 0.0045466831805425515) + +[fips55059] +centroid = (0.74315601187130709, -1.5258523183202055) +description = Kenosha County, WI +station = ('kenw', 0.006542681510789833) +zone = ('ilz006', 0.0086946189754006677) + +[fips5505900] +centroid = (0.75864193435181726, -1.5504089263628407) +description = Beaver Dam city, WI +station = ('kunu', 0.0017744231079602989) +zone = ('wiz058', 0.0018066666656047546) + +[fips5505900000] +centroid = (0.74315601187130709, -1.5258523183202055) +description = County subdivisions not defined, WI +station = ('kenw', 0.006542681510789833) +zone = ('ilz006', 0.0086946189754006677) + +[fips5505909635] +centroid = (0.74400818633188581, -1.5384627584981776) +description = Brighton town, WI +station = ('kbuu', 0.0022908671362678983) +zone = ('wiz072', 0.0016307959891797732) + +[fips5505909800] +centroid = (0.74286668864120398, -1.5365723225721724) +description = Bristol village, WI +station = ('kenw', 0.0015039876141366218) +zone = ('wiz072', 0.0002394226490984014) + +[fips5505909825] +centroid = (0.7422998929666188, -1.5361502495991628) +description = Bristol town, WI +station = ('kenw', 0.0016015728454639357) +zone = ('wiz072', 0.00087482870945997516) + +[fips5505928675] +centroid = (0.74193271059858434, -1.5411514207575825) +description = Genoa City village, WI +station = ('kbuu', 0.0031583193974118076) +zone = ('ilz005', 0.0037724549004064028) + +[fips5505939225] +centroid = (0.74324392410573004, -1.5336853210965711) +description = Kenosha city, WI +station = ('kenw', 0.00081124022558664991) +zone = ('wiz072', 0.0021649058406060201) + +[fips5505960975] +centroid = (0.7429701343059697, -1.5376252098967305) +description = Paddock Lake village, WI +station = ('kenw', 0.0022017688722258824) +zone = ('wiz072', 0.00075270454506282136) + +[fips5505961175] +centroid = (0.74380043979102095, -1.536120526642001) +description = Paris town, WI +station = ('kenw', 0.0010664677534116143) +zone = ('wiz072', 0.00078764889764042288) + +[fips5505963300] +centroid = (0.7422305684887297, -1.5339402438871172) +description = Pleasant Prairie village, WI +station = ('kenw', 0.0014045307336458439) +zone = ('wiz072', 0.0021580416468417784) + +[fips5505966125] +centroid = (0.74250744752126607, -1.5396491111506356) +description = Randall town, WI +station = ('kbuu', 0.0028266165232768399) +zone = ('wiz072', 0.0023099404998135412) + +[fips5505971125] +centroid = (0.74236818770024948, -1.5380573883261093) +description = Salem town, WI +station = ('kenw', 0.0027061722410227102) +zone = ('wiz072', 0.0012895808509447485) + +[fips5505974025] +centroid = (0.74261239416918834, -1.5387901299059741) +description = Silver Lake village, WI +station = ('kbuu', 0.0030509509537559264) +zone = ('wiz072', 0.0016726587479557044) + +[fips5505974650] +centroid = (0.74408904743613069, -1.5340189582363823) +description = Somers town, WI +station = ('kenw', 0.00077837232193947578) +zone = ('wiz072', 0.002152740039794774) + +[fips5505981250] +centroid = (0.74203678458188072, -1.5402595051499357) +description = Twin Lakes village, WI +station = ('kbuu', 0.0031327771767371937) +zone = ('wiz072', 0.0028862606909353049) + +[fips5505986500] +centroid = (0.74322130463862424, -1.5402087160687028) +description = Wheatland town, WI +station = ('kbuu', 0.0020088356474978917) +zone = ('wiz072', 0.0026456304145370734) + +[fips55061] +centroid = (0.77668808031207803, -1.5212606188575961) +description = Kewaunee County, WI +station = ('ksue', 0.0068642546654558651) +zone = ('wiz040', 0.0056518654863580483) + +[fips5506100000] +centroid = (0.77668808031207803, -1.5212606188575961) +description = County subdivisions not defined, WI +station = ('ksue', 0.0068642546654558651) +zone = ('wiz040', 0.0056518654863580483) + +[fips5506100600] +centroid = (0.77897388567353743, -1.526520796877012) +description = Ahnapee town, WI +station = ('ksue', 0.0038497486631578182) +zone = ('wiz040', 0.002768871464732077) + +[fips5506101000] +centroid = (0.77851186211394952, -1.5262259234998874) +description = Algoma city, WI +station = ('ksue', 0.0042840987887876394) +zone = ('wiz040', 0.0026178920879086041) + +[fips5506112575] +centroid = (0.774522458322911, -1.5286854589350904) +description = Carlton town, WI +station = ('kmtw', 0.0044170137241609595) +zone = ('wiz040', 0.0024552839342185748) + +[fips5506112850] +centroid = (0.77763469453848222, -1.5292624298792148) +description = Casco village, WI +station = ('ksue', 0.0057320212962825856) +zone = ('wiz040', 0.00068487895674914018) + +[fips5506112875] +centroid = (0.77750554017383466, -1.5286366246226197) +description = Casco town, WI +station = ('ksue', 0.0056703819359236697) +zone = ('wiz040', 0.00067404571149537462) + +[fips5506127250] +centroid = (0.77443726880212105, -1.5307950558552685) +description = Franklin town, WI +station = ('kmtw', 0.004176779772477001) +zone = ('wiz040', 0.0027677748101311273) + +[fips5506139350] +centroid = (0.77596300072762947, -1.5273520797464444) +description = Kewaunee city, WI +station = ('kmtw', 0.0060853458040074689) +zone = ('wiz040', 0.0016353775068418807) + +[fips5506144425] +centroid = (0.7788623591343351, -1.5284995813697531) +description = Lincoln town, WI +station = ('ksue', 0.004390843183713535) +zone = ('wiz040', 0.0019699061890265674) + +[fips5506146400] +centroid = (0.77745218545860117, -1.5307627149042291) +description = Luxemburg village, WI +station = ('kgrb', 0.0054223115773393542) +zone = ('wiz040', 0.0012357962367078768) + +[fips5506146425] +centroid = (0.77708083175365439, -1.5301819391423355) +description = Luxemburg town, WI +station = ('kgrb', 0.0057731799561490027) +zone = ('wiz040', 0.00072778475791004937) + +[fips5506150] +centroid = (0.75926206728834356, -1.5332272245278) +description = Belgium village, WI +station = ('ketb', 0.0038209764467590714) +zone = ('wiz060', 0.0024558880375401657) + +[fips5506154050] +centroid = (0.77595776473987355, -1.5307770615106804) +description = Montpelier town, WI +station = ('kgrb', 0.0053258571162009688) +zone = ('wiz040', 0.0015139968041389914) + +[fips5506162625] +centroid = (0.77729479166665638, -1.5270012336602083) +description = Pierce town, WI +station = ('ksue', 0.0055618071298182891) +zone = ('wiz040', 0.0015886333994950101) + +[fips5506166700] +centroid = (0.77904338468435186, -1.5307064105825596) +description = Red River town, WI +station = ('ksue', 0.0051540596347255992) +zone = ('wiz040', 0.0023575988454122301) + +[fips5506185775] +centroid = (0.77582738864474965, -1.5286364326364019) +description = West Kewaunee town, WI +station = ('kmtw', 0.0056911928236151633) +zone = ('wiz040', 0.001189437420837842) + +[fips5506225] +centroid = (0.75558579301840523, -1.5852037754240145) +description = Bell Center village, WI +station = ('kovs', 0.0030660123274263763) +zone = ('wiz054', 0.0016229441286800101) + +[fips55063] +centroid = (0.76634304259660968, -1.5902001643802837) +description = La Crosse County, WI +station = ('klse', 0.0017920959896050802) +zone = ('wiz041', 5.269288059566145e-05) + +[fips5506300] +centroid = (0.74811827964069977, -1.562752680231108) +description = Belleville village, WI +station = ('kc29', 0.0042947440749365965) +zone = ('wiz068', 0.0033118323734168506) + +[fips5506304550] +centroid = (0.76605860628841216, -1.5880572665779775) +description = Bangor village, WI +station = ('kcmy', 0.0033637604244366242) +zone = ('wiz041', 0.0016076282967562527) + +[fips5506304575] +centroid = (0.76540663854632973, -1.5877287781594598) +description = Bangor town, WI +station = ('kcmy', 0.003437787894995408) +zone = ('wiz041', 0.0020373485885331962) + +[fips5506304825] +centroid = (0.76523728924900869, -1.5898079888973604) +description = Barre town, WI +station = ('klse', 0.0021308564601030676) +zone = ('wiz041', 0.0011240129834323403) + +[fips5506311300] +centroid = (0.76737556192879708, -1.5875326206048279) +description = Burns town, WI +station = ('kcmy', 0.0027826153821174384) +zone = ('wiz041', 0.0022331632649547749) + +[fips5506312300] +centroid = (0.76595639980741537, -1.5933910625852423) +description = Campbell town, WI +station = ('klse', 0.00056284819200594176) +zone = ('wiz041', 0.002284065953279694) + +[fips5506325325] +centroid = (0.76857465548479464, -1.5893562976869444) +description = Farmington town, WI +station = ('klse', 0.0035500620694145788) +zone = ('wiz041', 0.0023533722817150014) + +[fips5506331150] +centroid = (0.76390616153509761, -1.5896566688512126) +description = Greenfield town, WI +station = ('klse', 0.0029255380946123493) +zone = ('wiz041', 0.0024458844363176922) + +[fips5506332275] +centroid = (0.76696305336008808, -1.5899992420767941) +description = Hamilton town, WI +station = ('klse', 0.0021580038161812865) +zone = ('wiz041', 0.00067669945660724974) + +[fips5506335350] +centroid = (0.76821599032350985, -1.5937430082289068) +description = Holland town, WI +station = ('klse', 0.0024465766505600809) +zone = ('wiz041', 0.003147404822340502) + +[fips5506335450] +centroid = (0.76744719024129882, -1.5929559170961352) +description = Holmen village, WI +station = ('klse', 0.0015582403208621949) +zone = ('wiz041', 0.002248174255246347) + +[fips5506340775] +centroid = (0.76490565923783715, -1.5921634328959746) +description = La Crosse city, WI +station = ('klse', 0.0010540706759296855) +zone = ('wiz041', 0.0019655295773525539) + +[fips5506350] +centroid = (0.77598684192521183, -1.5351207147799963) +description = Bellevue village, WI +station = ('kgrb', 0.0022441946377212631) +zone = ('wiz039', 0.00060157069497112422) + +[fips5506350400] +centroid = (0.76509261890731084, -1.5915199125474719) +description = Medary town, WI +station = ('klse', 0.0011344756175353196) +zone = ('wiz041', 0.0015211619410146382) + +[fips5506359925] +centroid = (0.76603315938791805, -1.5917665624773636) +description = Onalaska city, WI +station = ('klse', 0.00062257099106317122) +zone = ('wiz041', 0.0011209018361510936) + +[fips5506359950] +centroid = (0.76702031761284606, -1.5933401338776692) +description = Onalaska town, WI +station = ('klse', 0.0012289063179240752) +zone = ('wiz041', 0.0023282677838617287) + +[fips5506368900] +centroid = (0.76632532750470195, -1.5868057258779575) +description = Rockland village, WI +station = ('kcmy', 0.0024261188808303823) +zone = ('wiz041', 0.0024888964428220876) + +[fips5506373125] +centroid = (0.76391476600830999, -1.5914223137357002) +description = Shelby town, WI +station = ('klse', 0.0021710407186953024) +zone = ('wiz041', 0.0025404845214286815) + +[fips5506383650] +centroid = (0.76390940784750638, -1.5877419553953123) +description = Washington town, WI +station = ('ky51', 0.0033918942140310137) +zone = ('wiz041', 0.003012753826044619) + +[fips5506386275] +centroid = (0.76617395509867636, -1.5897759621055865) +description = West Salem village, WI +station = ('klse', 0.0020616416296233759) +zone = ('wiz041', 0.00037561037250349215) + +[fips5506425] +centroid = (0.74591893789038421, -1.5766359541259745) +description = Belmont village, WI +station = ('kpvb', 0.0015904162074636974) +zone = ('wiz067', 0.0029329745112967919) + +[fips55065] +centroid = (0.7444802804412578, -1.573070351183905) +description = Lafayette County, WI +station = ('kmrj', 0.0042152597572267074) +zone = ('wiz067', 8.7785478739493293e-05) + +[fips5506500] +centroid = (0.74217518919156378, -1.5536512594208556) +description = Beloit city, WI +station = ('kjvl', 0.0016383931090763089) +zone = ('wiz069', 0.0026692779123496276) + +[fips5506502650] +centroid = (0.74527885584050779, -1.5684558751745574) +description = Argyle village, WI +station = ('keft', 0.0038386852708547502) +zone = ('wiz068', 0.0034033560055894145) + +[fips5506502675] +centroid = (0.74573726656854411, -1.5690492347603577) +description = Argyle town, WI +station = ('kmrj', 0.0050646656699448074) +zone = ('wiz068', 0.0039075814409499227) + +[fips5506506425] +centroid = (0.74591893789038421, -1.5766359541259745) +description = Belmont village, WI +station = ('kpvb', 0.0015904162074636974) +zone = ('wiz067', 0.0029329745112967919) + +[fips5506506450] +centroid = (0.74677702901712717, -1.5771080831419313) +description = Belmont town, WI +station = ('kpvb', 0.0019711323249921833) +zone = ('wiz067', 0.0036850602218636533) + +[fips5506506825] +centroid = (0.74298708145300651, -1.5774871861087569) +description = Benton village, WI +station = ('kpvb', 0.0022167024203656729) +zone = ('wiz067', 0.0035974386659067088) + +[fips5506506850] +centroid = (0.74307586635205547, -1.5776825408119328) +description = Benton town, WI +station = ('kpvb', 0.0020883898403803226) +zone = ('wiz067', 0.0036902812162041051) + +[fips5506508100] +centroid = (0.74687879916581101, -1.5690717495077084) +description = Blanchard town, WI +station = ('kmrj', 0.004528989075239083) +zone = ('wiz067', 0.0037526855931146116) + +[fips5506508125] +centroid = (0.74713803291960978, -1.5683567579263367) +description = Blanchardville village, WI +station = ('keft', 0.0048233742394103761) +zone = ('wiz068', 0.003989663283357002) + +[fips5506517950] +centroid = (0.7435807901046575, -1.5781995596962508) +description = Cuba City city, WI +station = ('kpvb', 0.0015139617087909642) +zone = ('wiz067', 0.0038826814473760852) + +[fips5506518875] +centroid = (0.74487753483230423, -1.5728634773076662) +description = Darlington city, WI +station = ('kmrj', 0.0038934401631080307) +zone = ('wiz067', 0.00035482255543278801) + +[fips5506518900] +centroid = (0.74443703118239346, -1.5727798411299105) +description = Darlington town, WI +station = ('kmrj', 0.0043264435257549545) +zone = ('wiz067', 0.00026528383132982399) + +[fips5506523262] +centroid = (0.74494675459043835, -1.5772024880011717) +description = Elk Grove town, WI +station = ('kpvb', 0.00094555277600742347) +zone = ('wiz067', 0.0030439803504721074) + +[fips5506525475] +centroid = (0.74648964310249377, -1.5710367458993588) +description = Fayette town, WI +station = ('kmrj', 0.0034347195889326263) +zone = ('wiz067', 0.0024467229321141998) + +[fips5506530575] +centroid = (0.74316379603977101, -1.5712039309884074) +description = Gratiot village, WI +station = ('kmrj', 0.0059591764896029537) +zone = ('wiz067', 0.0019755938307720864) + +[fips5506530600] +centroid = (0.74286942880812956, -1.5713933515721261) +description = Gratiot town, WI +station = ('kmrj', 0.0061652839727534096) +zone = ('wiz067', 0.002108838152875275) + +[fips5506533500] +centroid = (0.74230905594519181, -1.5781935732169168) +description = Hazel Green village, WI +station = ('kpvb', 0.0027797715505822216) +zone = ('ilz001', 0.0039701900077893908) + +[fips5506539125] +centroid = (0.7463063835310344, -1.5748707979336773) +description = Kendall town, WI +station = ('kmrj', 0.0021829994031530978) +zone = ('wiz067', 0.0021750961942836751) + +[fips5506542175] +centroid = (0.7452537929124492, -1.5709182904030261) +description = Lamont town, WI +station = ('kmrj', 0.0043323684387311543) +zone = ('wiz067', 0.0017416331243326464) + +[fips5506554025] +centroid = (0.7422582494106662, -1.5732252142484346) +description = Monticello town, WI +station = ('kpvb', 0.0047855454719820433) +zone = ('wiz067', 0.0023099282816194814) + +[fips5506556625] +centroid = (0.74299060701809561, -1.5766624133174345) +description = New Diggings town, WI +station = ('kpvb', 0.0024799150377652775) +zone = ('wiz067', 0.0030618632066519444) + +[fips5506572700] +centroid = (0.74444928339374239, -1.5751555134945552) +description = Seymour town, WI +station = ('kpvb', 0.002521637630188543) +zone = ('wiz067', 0.001519903148197052) + +[fips5506573825] +centroid = (0.74304349049443108, -1.5748484053593743) +description = Shullsburg city, WI +station = ('kpvb', 0.0033576547479506054) +zone = ('wiz067', 0.0019959168453930298) + +[fips5506573850] +centroid = (0.74317803792646731, -1.5746449697817619) +description = Shullsburg town, WI +station = ('kpvb', 0.0034005793621391827) +zone = ('wiz067', 0.0017966438462664498) + +[fips5506575275] +centroid = (0.74293116110377266, -1.5686337591319204) +description = South Wayne village, WI +station = ('keft', 0.0037605886353588849) +zone = ('wiz068', 0.00403419241848547) + +[fips5506584850] +centroid = (0.74260469726718714, -1.5688610533604077) +description = Wayne town, WI +station = ('keft', 0.0040070868695074452) +zone = ('wiz067', 0.003682241544824604) + +[fips5506586800] +centroid = (0.74231434429282528, -1.575216163686062) +description = White Oak Springs town, WI +station = ('kpvb', 0.0036619365168813942) +zone = ('wiz067', 0.0027402892720960431) + +[fips5506587275] +centroid = (0.74622917016492629, -1.5730980844657194) +description = Willow Springs town, WI +station = ('kmrj', 0.0025979036202454738) +zone = ('wiz067', 0.0016629862380157369) + +[fips5506588050] +centroid = (0.74419083503810701, -1.5695626931730018) +description = Wiota town, WI +station = ('kmrj', 0.0057891329336461628) +zone = ('wiz067', 0.0026249631196188852) + +[fips55067] +centroid = (0.78992212663178762, -1.5545331742918882) +description = Langlade County, WI +station = ('kaig', 0.0019456967517712479) +zone = ('wiz019', 7.2033301366986535e-05) + +[fips5506700225] +centroid = (0.78844552572472293, -1.5592162591941319) +description = Ackley town, WI +station = ('kaig', 0.0029420817097205974) +zone = ('wiz019', 0.0035960169389007098) + +[fips5506700625] +centroid = (0.7920404152916406, -1.5530442164537193) +description = Ainsworth town, WI +station = ('kaig', 0.004273705962126167) +zone = ('wiz019', 0.0023339663870675115) + +[fips5506702250] +centroid = (0.7878637725784482, -1.5560522216063615) +description = Antigo city, WI +station = ('kaig', 0.00069668564823671447) +zone = ('wiz019', 0.0023493832614114767) + +[fips5506702275] +centroid = (0.78827767741055854, -1.5551002492191537) +description = Antigo town, WI +station = ('kaig', 0.0002616544049657473) +zone = ('wiz019', 0.0017366648959574297) + +[fips5506723050] +centroid = (0.79261494277481215, -1.5560629902878464) +description = Elcho town, WI +station = ('kaig', 0.0046496346534111747) +zone = ('wiz019', 0.0028309892384321741) + +[fips5506724575] +centroid = (0.78825214324360204, -1.5511200258599807) +description = Evergreen town, WI +station = ('kaig', 0.0028082825157197283) +zone = ('wiz020', 0.0034248108765315022) + +[fips5506742425] +centroid = (0.78966093810922677, -1.5508557481046437) +description = Langlade town, WI +station = ('kaig', 0.0034060492866927164) +zone = ('wiz019', 0.0026533938385350868) + +[fips5506756200] +centroid = (0.78975338819970486, -1.555540700509187) +description = Neva town, WI +station = ('kaig', 0.0017662282320704029) +zone = ('wiz019', 0.0007006068473499362) + +[fips5506758700] +centroid = (0.78675688476683336, -1.5540246726143199) +description = Norwood town, WI +station = ('kaig', 0.0014660274230724633) +zone = ('wiz019', 0.0032462778568190858) + +[fips5506761375] +centroid = (0.79269414581626763, -1.5598225167631046) +description = Parrish town, WI +station = ('krhi', 0.0039999023692217023) +zone = ('wiz019', 0.0045677125790919166) + +[fips5506761525] +centroid = (0.78962496687334316, -1.5576163158688285) +description = Peck town, WI +station = ('kaig', 0.0024003469356757507) +zone = ('wiz019', 0.0021540165865656449) + +[fips5506763825] +centroid = (0.78802575658632579, -1.5533634546272017) +description = Polar town, WI +station = ('kaig', 0.0012165293784681141) +zone = ('wiz019', 0.0021371382133802187) + +[fips5506765550] +centroid = (0.78992334836226408, -1.5529488865699754) +description = Price town, WI +station = ('kaig', 0.002430988919655049) +zone = ('wiz019', 0.0011620079921442631) + +[fips5506769175] +centroid = (0.78670483904853883, -1.5561185441179373) +description = Rolling town, WI +station = ('kaig', 0.001499369408446391) +zone = ('wiz019', 0.0034441698738034445) + +[fips5506778325] +centroid = (0.79114689398108218, -1.5599523168995757) +description = Summit town, WI +station = ('kaig', 0.0046402062508739614) +zone = ('wiz019', 0.0039437549980206148) + +[fips5506781950] +centroid = (0.79113033080648076, -1.5563161153892631) +description = Upham town, WI +station = ('kaig', 0.0032319449666886441) +zone = ('wiz019', 0.0016700135742089906) + +[fips5506782825] +centroid = (0.78975331838653484, -1.5596719646618278) +description = Vilas town, WI +station = ('krrl', 0.0043058544874541096) +zone = ('wiz019', 0.0035788746105616842) + +[fips5506786750] +centroid = (0.78818533203983554, -1.5492138994240001) +description = White Lake village, WI +station = ('kaig', 0.0041460819534169576) +zone = ('wiz020', 0.0027891741692972613) + +[fips5506788450] +centroid = (0.78950085651023383, -1.548585004934629) +description = Wolf River town, WI +station = ('kaig', 0.0048175715100363548) +zone = ('wiz020', 0.0040315878526163609) + +[fips5506825] +centroid = (0.74298708145300651, -1.5774871861087569) +description = Benton village, WI +station = ('kpvb', 0.0022167024203656729) +zone = ('wiz067', 0.0035974386659067088) + +[fips55069] +centroid = (0.79130294386950295, -1.5662948084947379) +description = Lincoln County, WI +station = ('ktkv', 0.0024079572736369539) +zone = ('wiz018', 9.289805531826763e-05) + +[fips5506907500] +centroid = (0.79141029907179317, -1.5643460611184234) +description = Birch town, WI +station = ('krrl', 0.0029393606811702797) +zone = ('wiz018', 0.0012837374090344772) + +[fips5506909225] +centroid = (0.79251203816211457, -1.5667109997081685) +description = Bradley town, WI +station = ('ktkv', 0.0011747117893187249) +zone = ('wiz018', 0.0012822706339031666) + +[fips5506917125] +centroid = (0.79011531712669103, -1.569929351942261) +description = Corning town, WI +station = ('krrl', 0.0034308912834413365) +zone = ('wiz018', 0.002896482907569318) + +[fips5506925] +centroid = (0.76743230258277939, -1.5524728654697864) +description = Berlin city, WI +station = ('ky50', 0.0046160068991591419) +zone = ('wiz047', 0.0032033751680317214) + +[fips5506932650] +centroid = (0.79058529938766797, -1.5681904978617915) +description = Harding town, WI +station = ('krrl', 0.0027165190397064115) +zone = ('wiz018', 0.0015889792700485674) + +[fips5506932875] +centroid = (0.79360876815748282, -1.5621526185809798) +description = Harrison town, WI +station = ('krhi', 0.0028551729710066063) +zone = ('wiz018', 0.0036491032422581887) + +[fips5506939675] +centroid = (0.79425494140644859, -1.5640851169419578) +description = King town, WI +station = ('krhi', 0.0027264090357617585) +zone = ('wiz018', 0.0033058052539157506) + +[fips5506951250] +centroid = (0.78855047237264531, -1.565604059536676) +description = Merrill city, WI +station = ('krrl', 5.6588399102219461e-05) +zone = ('wiz018', 0.0027664213470969608) + +[fips5506951275] +centroid = (0.78968395900206056, -1.5651313720153583) +description = Merrill town, WI +station = ('krrl', 0.0011272837157134804) +zone = ('wiz018', 0.0017615317774746747) + +[fips5506962950] +centroid = (0.78826376713642021, -1.5627023449354804) +description = Pine River town, WI +station = ('krrl', 0.0020422927463730977) +zone = ('wiz018', 0.0038845493937500371) + +[fips5506968825] +centroid = (0.79088608943095673, -1.566305856428903) +description = Rock Falls town, WI +station = ('krrl', 0.0023475817375153332) +zone = ('wiz018', 0.00041469338526110345) + +[fips5506970325] +centroid = (0.79130376417425141, -1.5618930881212081) +description = Russell town, WI +station = ('krrl', 0.0037396037221398564) +zone = ('wiz018', 0.0030023199050053127) + +[fips5506972100] +centroid = (0.78982379478173037, -1.5622413336668586) +description = Schley town, WI +station = ('krrl', 0.0026398160753636707) +zone = ('wiz018', 0.0031242508178891595) + +[fips5506972300] +centroid = (0.78813504910408572, -1.5660528709538264) +description = Scott town, WI +station = ('krrl', 0.00057865006727442214) +zone = ('wiz018', 0.0031545748303875103) + +[fips5506974250] +centroid = (0.79268498283769473, -1.5641681248011827) +description = Skanawan town, WI +station = ('ktkv', 0.002440164424573843) +zone = ('wiz018', 0.0019788121745701105) + +[fips5506974725] +centroid = (0.79424003629463658, -1.5708513919327971) +description = Somo town, WI +station = ('ktkv', 0.0025057887880895048) +zone = ('wiz018', 0.0044196823159393817) + +[fips5506980125] +centroid = (0.79375760983609278, -1.5657658166517507) +description = Tomahawk city, WI +station = ('ktkv', 0.0011611732560667574) +zone = ('wiz018', 0.0024847529603653331) + +[fips5506980150] +centroid = (0.79265187394178438, -1.5692070474313231) +description = Tomahawk town, WI +station = ('ktkv', 0.0015708675169157681) +zone = ('wiz018', 0.0025351367589905916) + +[fips5506987425] +centroid = (0.79450576267325279, -1.5685158097810707) +description = Wilson town, WI +station = ('ktkv', 0.0012093566715823565) +zone = ('wiz018', 0.003615704435246927) + +[fips55071] +centroid = (0.76977935154769117, -1.5239137811200154) +description = Manitowoc County, WI +station = ('kmtw', 0.0046558823497522125) +zone = ('wiz040', 0.0081017990296467501) + +[fips5507100000] +centroid = (0.76977935154769117, -1.5239137811200154) +description = County subdivisions not defined, WI +station = ('kmtw', 0.0046558823497522125) +zone = ('wiz040', 0.0081017990296467501) + +[fips5507113237] +centroid = (0.76998716790172617, -1.5335674764654765) +description = Cato town, WI +station = ('kmtw', 0.0023178988980978475) +zone = ('wiz050', 0.0007201491439586922) + +[fips5507113750] +centroid = (0.76690643487915344, -1.5316060230922075) +description = Centerville town, WI +station = ('ksbm', 0.0029945068537786811) +zone = ('wiz050', 0.0032046488841456088) + +[fips5507115400] +centroid = (0.76651380561062477, -1.5314617716295302) +description = Cleveland village, WI +station = ('ksbm', 0.0026885804348558986) +zone = ('wiz050', 0.0036104748047038528) + +[fips5507116950] +centroid = (0.77297773721514085, -1.5331495748293789) +description = Cooperstown town, WI +station = ('kmtw', 0.0033631756300194653) +zone = ('wiz050', 0.0029714926820962441) + +[fips5507122275] +centroid = (0.76837504217824404, -1.5354695362843001) +description = Eaton town, WI +station = ('ksbm', 0.0044995629508146999) +zone = ('wiz050', 0.0026660602905816478) + +[fips5507127125] +centroid = (0.77144652495578114, -1.5310257534757972) +description = Francis Creek village, WI +station = ('kmtw', 0.0012671470684442775) +zone = ('wiz050', 0.0017922518643077698) + +[fips5507127275] +centroid = (0.77135615180711303, -1.5335838651071527) +description = Franklin town, WI +station = ('kmtw', 0.0025522805964839665) +zone = ('wiz050', 0.0015086362886737288) + +[fips5507128975] +centroid = (0.77287235423490552, -1.5307751940083807) +description = Gibson town, WI +station = ('kmtw', 0.0026171208478556708) +zone = ('wiz050', 0.0031137678265028977) + +[fips5507139000] +centroid = (0.7718747763943431, -1.5324534502572211) +description = Kellnersville village, WI +station = ('kmtw', 0.00219472899335818) +zone = ('wiz050', 0.0018407920345894296) + +[fips5507139525] +centroid = (0.76651511460756383, -1.5363098599592577) +description = Kiel city, WI +station = ('ksbm', 0.0032141978143663476) +zone = ('wiz052', 0.0035761854386982847) + +[fips5507140425] +centroid = (0.77127316140118063, -1.531272036886546) +description = Kossuth town, WI +station = ('kmtw', 0.0011948868900646939) +zone = ('wiz050', 0.0015471982422702781) + +[fips5507143850] +centroid = (0.76825826219799309, -1.5334922876813004) +description = Liberty town, WI +station = ('kmtw', 0.0030182189586857675) +zone = ('wiz050', 0.0018978648756056554) + +[fips5507148500] +centroid = (0.76966562589363119, -1.5303273774289039) +description = Manitowoc city, WI +station = ('kmtw', 0.00060688570225986933) +zone = ('wiz050', 0.0016498768305156823) + +[fips5507148525] +centroid = (0.7703107868516309, -1.530174434226552) +description = Manitowoc town, WI +station = ('kmtw', 0.00014069745377070231) +zone = ('wiz050', 0.0017389811195533556) + +[fips5507148575] +centroid = (0.77000650614983823, -1.5315532617889198) +description = Manitowoc Rapids town, WI +station = ('kmtw', 0.00089477090761038564) +zone = ('wiz050', 0.00072808496180606355) + +[fips5507148875] +centroid = (0.77136882289748254, -1.5356915945250311) +description = Maple Grove town, WI +station = ('kgrb', 0.0053272977101104608) +zone = ('wiz050', 0.0026082920456193259) + +[fips5507149250] +centroid = (0.77281027287341209, -1.5324312671224281) +description = Maribel village, WI +station = ('kmtw', 0.0029396193842513348) +zone = ('wiz050', 0.0027761943210389854) + +[fips5507150625] +centroid = (0.76678105042569011, -1.5335110150641744) +description = Meeme town, WI +station = ('ksbm', 0.002623405333184935) +zone = ('wiz050', 0.0033248021036998859) + +[fips5507153325] +centroid = (0.77193352417696515, -1.529603153055789) +description = Mishicot village, WI +station = ('kmtw', 0.0017485913313296908) +zone = ('wiz050', 0.0028494071835917065) + +[fips5507153350] +centroid = (0.77251649905371633, -1.5294167169850912) +description = Mishicot town, WI +station = ('kmtw', 0.0023447844140244037) +zone = ('wiz050', 0.003354857572339655) + +[fips5507157200] +centroid = (0.76831084896835566, -1.531448943459528) +description = Newton town, WI +station = ('kmtw', 0.0021106393880553423) +zone = ('wiz050', 0.001902696085509618) + +[fips5507166875] +centroid = (0.77060330403426514, -1.5350355950723764) +description = Reedsville village, WI +station = ('kmtw', 0.0033695062472355085) +zone = ('wiz050', 0.001860610603911694) + +[fips5507168925] +centroid = (0.76989784195060906, -1.5356701793351091) +description = Rockland town, WI +station = ('kmtw', 0.0038281872870241998) +zone = ('wiz049', 0.0029378296332157952) + +[fips5507171025] +centroid = (0.76807306531106401, -1.5345770272647075) +description = St. Nazianz village, WI +station = ('ksbm', 0.0040212919369739348) +zone = ('wiz050', 0.0024370291098375235) + +[fips5507172075] +centroid = (0.76691647052235234, -1.5354274563960342) +description = Schleswig town, WI +station = ('ksbm', 0.0031615829813792843) +zone = ('wiz050', 0.0037363975345432766) + +[fips5507181300] +centroid = (0.77274728394070746, -1.5281315437903848) +description = Two Creeks town, WI +station = ('kmtw', 0.0029471476728708595) +zone = ('wiz040', 0.004271089222194391) + +[fips5507181325] +centroid = (0.77062719759172504, -1.5284970506423377) +description = Two Rivers city, WI +station = ('kmtw', 0.0013852245197697453) +zone = ('wiz050', 0.0029799363645140516) + +[fips5507181350] +centroid = (0.77132119286219558, -1.52850350836057) +description = Two Rivers town, WI +station = ('kmtw', 0.0016970364103740532) +zone = ('wiz050', 0.0031858685807999577) + +[fips5507182200] +centroid = (0.76914492436459125, -1.5338941846481571) +description = Valders village, WI +station = ('kmtw', 0.0027750620131490591) +zone = ('wiz050', 0.0013048617632433765) + +[fips5507186775] +centroid = (0.77048757125156542, -1.5328500239698593) +description = Whitelaw village, WI +station = ('kmtw', 0.0017978729828749334) +zone = ('wiz050', 0.0004954691413828591) + +[fips5507200] +centroid = (0.74869411612081027, -1.5396188995012838) +description = Big Bend village, WI +station = ('kues', 0.0025324976971705651) +zone = ('wiz065', 0.0024109202150505112) + +[fips5507250] +centroid = (0.77868904793961191, -1.553696254008972) +description = Big Falls village, WI +station = ('kpcz', 0.0049219524249990137) +zone = ('wiz037', 0.0026263043822579847) + +[fips55073] +centroid = (0.7836185558789448, -1.5665695407722944) +description = Marathon County, WI +station = ('kauw', 0.001850195093421522) +zone = ('wiz030', 1.5263634081660983e-05) + +[fips5507300100] +centroid = (0.78435759809740924, -1.5761537196536484) +description = Abbotsford city, WI +station = ('kmdz', 0.0028056430835632002) +zone = ('wiz029', 0.0052104569364503257) + +[fips5507303550] +centroid = (0.78600302470301942, -1.5721769345931018) +description = Athens village, WI +station = ('kmdz', 0.0029975137048511989) +zone = ('wiz030', 0.0046139359316186308) + +[fips5507306875] +centroid = (0.78076832849068289, -1.5666505938627568) +description = Bergen town, WI +station = ('kcwa', 0.0014591758845676683) +zone = ('wiz030', 0.0028551577347864601) + +[fips5507306975] +centroid = (0.78672977980354986, -1.5670555626090972) +description = Berlin town, WI +station = ('krrl', 0.0021454088025324768) +zone = ('wiz030', 0.0031240114816590871) + +[fips5507307000] +centroid = (0.78689106567972678, -1.5730537531027184) +description = Bern town, WI +station = ('kmdz', 0.0021609617274617396) +zone = ('wiz030', 0.0056191173846474084) + +[fips5507307125] +centroid = (0.78059779236947058, -1.5606749530230715) +description = Bevent town, WI +station = ('kste', 0.0034260713365914476) +zone = ('wiz036', 0.0044613816075497531) + +[fips5507307600] +centroid = (0.78411702191331445, -1.5572920860536859) +description = Birnamwood village, WI +station = ('kaig', 0.004198594302292101) +zone = ('wiz019', 0.0061617540672538832) + +[fips5507309650] +centroid = (0.78204353585536013, -1.5751462981561046) +description = Brighton town, WI +station = ('kmfi', 0.0031526856401113443) +zone = ('wiz029', 0.0046735661827370066) + +[fips5507309975] +centroid = (0.78585125087126595, -1.5648343693365465) +description = Brokaw village, WI +station = ('kauw', 0.0016967761811924685) +zone = ('wiz030', 0.0025510142192235741) + +[fips5507312975] +centroid = (0.78358017608869346, -1.5689372718888424) +description = Cassel town, WI +station = ('kauw', 0.0034834115572067188) +zone = ('wiz030', 0.0016632473717553742) + +[fips5507315425] +centroid = (0.78230655697363571, -1.5711275553803401) +description = Cleveland town, WI +station = ('kmfi', 0.0038853219160715369) +zone = ('wiz030', 0.0034753219698415083) + +[fips5507316150] +centroid = (0.78386695113808857, -1.5762333241208317) +description = Colby city, WI +station = ('kmdz', 0.0032974807625693525) +zone = ('wiz029', 0.0048425768486613872) + +[fips5507318950] +centroid = (0.7805493071228502, -1.5710014204352984) +description = Day town, WI +station = ('kmfi', 0.0026342167672591108) +zone = ('wiz030', 0.0043866789105696646) + +[fips5507320450] +centroid = (0.78542308669916672, -1.5762385077487102) +description = Dorchester village, WI +station = ('kmdz', 0.0017429381798701332) +zone = ('wiz017', 0.004345731010999763) + +[fips5507322025] +centroid = (0.78534007883994184, -1.5602878215416864) +description = Easton town, WI +station = ('kauw', 0.0029188715208774197) +zone = ('wiz030', 0.0047794770678070394) + +[fips5507322425] +centroid = (0.78216686082030606, -1.5731261668133838) +description = Eau Pleine town, WI +station = ('kmfi', 0.00322796597465797) +zone = ('wiz029', 0.0060926592052843523) + +[fips5507322550] +centroid = (0.78404982673711254, -1.570146470901209) +description = Edgar village, WI +station = ('kcwa', 0.0043980234550902988) +zone = ('wiz030', 0.0025545520028436692) + +[fips5507323075] +centroid = (0.78168649385027966, -1.5577427300665507) +description = Elderon village, WI +station = ('kste', 0.0054602243627012784) +zone = ('wiz036', 0.0062548682709797796) + +[fips5507323100] +centroid = (0.7823800004285596, -1.5588749426056119) +description = Elderon town, WI +station = ('kauw', 0.0041446599862301151) +zone = ('wiz036', 0.0065417697515302818) + +[fips5507324025] +centroid = (0.78209849627350536, -1.568939034671387) +description = Emmet town, WI +station = ('kcwa', 0.0028513868189909987) +zone = ('wiz030', 0.0022577408335569924) + +[fips5507325650] +centroid = (0.78305565228859153, -1.5710501500280143) +description = Fenwood village, WI +station = ('kmfi', 0.0045647233114499142) +zone = ('wiz030', 0.0032107803398377043) + +[fips5507327150] +centroid = (0.7837498046386947, -1.5731300239910309) +description = Frankfort town, WI +station = ('kmdz', 0.0040038451942663849) +zone = ('wiz030', 0.0046340718239061603) + +[fips5507327450] +centroid = (0.78063798730214407, -1.5585497877659655) +description = Franzen town, WI +station = ('kste', 0.0042915955623740289) +zone = ('wiz036', 0.0050602358344877226) + +[fips5507331450] +centroid = (0.78067221320877556, -1.5688629034094148) +description = Green Valley town, WI +station = ('kcwa', 0.002915497015922404) +zone = ('wiz030', 0.0033626992735435123) + +[fips5507331800] +centroid = (0.78064530023170975, -1.5629004921654592) +description = Guenther town, WI +station = ('kcwa', 0.0017666550803523487) +zone = ('wiz030', 0.0039646713901987712) + +[fips5507332150] +centroid = (0.78683748407169052, -1.5712817552197538) +description = Halsey town, WI +station = ('kmdz', 0.0034103966019922325) +zone = ('wiz030', 0.0046196748367888464) + +[fips5507332200] +centroid = (0.78673274686327832, -1.5691272160713368) +description = Hamburg town, WI +station = ('krrl', 0.0031323110817819168) +zone = ('wiz030', 0.0035901860681822185) + +[fips5507332900] +centroid = (0.78659196860581237, -1.5586911070754994) +description = Harrison town, WI +station = ('kaig', 0.002914352061473246) +zone = ('wiz019', 0.0044489598509498511) + +[fips5507333175] +centroid = (0.78340581769641915, -1.5592259632247731) +description = Hatley village, WI +station = ('kauw', 0.0035540598772043903) +zone = ('wiz030', 0.0052215382387688063) + +[fips5507334225] +centroid = (0.78670967361056698, -1.5606532236738839) +description = Hewitt town, WI +station = ('kauw', 0.0034764234562251694) +zone = ('wiz030', 0.0052113128650785132) + +[fips5507335500] +centroid = (0.78533121256734184, -1.5751298397012585) +description = Holton town, WI +station = ('kmdz', 0.0019533733117455183) +zone = ('wiz017', 0.004881768320965877) + +[fips5507336325] +centroid = (0.78356459029847314, -1.5751306949125918) +description = Hull town, WI +station = ('kmdz', 0.0036617429308294742) +zone = ('wiz029', 0.0053014879293944561) + +[fips5507338300] +centroid = (0.78520392570499387, -1.5732209905516448) +description = Johnson town, WI +station = ('kmdz', 0.0028192321170067989) +zone = ('wiz030', 0.0049524245112184699) + +[fips5507340150] +centroid = (0.78070973778769348, -1.5649894243872937) +description = Knowlton town, WI +station = ('kcwa', 0.00090691169515099497) +zone = ('wiz030', 0.0031268802867949704) + +[fips5507340550] +centroid = (0.78226548937633622, -1.5636192711113082) +description = Kronenwetter village, WI +station = ('kcwa', 0.0011624370238976737) +zone = ('wiz030', 0.0025055526647455766) + +[fips5507346975] +centroid = (0.78076333684902233, -1.5730716427275515) +description = McMillan town, WI +station = ('kmfi', 0.0018831458004538192) +zone = ('wiz035', 0.0049953248606379261) + +[fips5507348225] +centroid = (0.78641097796238069, -1.5652343289879336) +description = Maine town, WI +station = ('krrl', 0.0021990208494892974) +zone = ('wiz030', 0.0029481591046720359) + +[fips5507349075] +centroid = (0.78355275696614468, -1.5669220100147345) +description = Marathon town, WI +station = ('kauw', 0.0021076283101166063) +zone = ('wiz030', 0.00024544693597002297) + +[fips5507349100] +centroid = (0.78422671585680226, -1.5681959956489353) +description = Marathon City village, WI +station = ('kauw', 0.0028955201393411917) +zone = ('wiz030', 0.0012874593995446249) + +[fips5507349675] +centroid = (0.77999907462286644, -1.5743259061412047) +description = Marshfield city, WI +station = ('kmfi', 0.0010275857629444742) +zone = ('wiz035', 0.0045674700328005371) + +[fips5507354500] +centroid = (0.78174559069875216, -1.5652912441748412) +description = Mosinee city, WI +station = ('kcwa', 0.00025667603224078064) +zone = ('wiz030', 0.0020912552162397555) + +[fips5507354525] +centroid = (0.78222133254626081, -1.5665688251873011) +description = Mosinee town, WI +station = ('kcwa', 0.0012802136820228302) +zone = ('wiz030', 0.0014019119908947892) + +[fips5507357600] +centroid = (0.78375982282860113, -1.5586542806282822) +description = Norrie town, WI +station = ('kauw', 0.0038893580578130758) +zone = ('wiz019', 0.0068459674876789108) + +[fips5507363500] +centroid = (0.78500644170013067, -1.5586252907094067) +description = Plover town, WI +station = ('kaig', 0.0039114405869273708) +zone = ('wiz019', 0.0057263659925602464) + +[fips5507366950] +centroid = (0.78207533575433141, -1.560662124853069) +description = Reid town, WI +station = ('kauw', 0.0032586570073809746) +zone = ('wiz030', 0.0044783531594765717) + +[fips5507367250] +centroid = (0.78530841856731071, -1.5689737667235013) +description = Rib Falls town, WI +station = ('krrl', 0.00407780725165173) +zone = ('wiz030', 0.0023846073354074765) + +[fips5507367325] +centroid = (0.7836043139922485, -1.565278555631179) +description = Rib Mountain town, WI +station = ('kauw', 0.0010425305744880874) +zone = ('wiz030', 0.00092923465523666324) + +[fips5507367950] +centroid = (0.78518683893161689, -1.5711516409240176) +description = Rietbrock town, WI +station = ('kmdz', 0.0040102258121440795) +zone = ('wiz030', 0.0035874270329946064) + +[fips5507368075] +centroid = (0.78377795679952955, -1.5606392435865755) +description = Ringle town, WI +station = ('kauw', 0.0024968185337715721) +zone = ('wiz030', 0.0042178546162799941) + +[fips5507369725] +centroid = (0.78320180616015367, -1.5640291616861388) +description = Rothschild village, WI +station = ('kauw', 0.0010342335596275052) +zone = ('wiz030', 0.0018627193531650739) + +[fips5507372150] +centroid = (0.78397189778601106, -1.5640694787918601) +description = Schofield city, WI +station = ('kauw', 0.00026397518795387247) +zone = ('wiz030', 0.0018189303598794028) + +[fips5507375400] +centroid = (0.7810979339199221, -1.5760055237468613) +description = Spencer village, WI +station = ('kmfi', 0.0025392130539824542) +zone = ('wiz029', 0.0039019099295910381) + +[fips5507375425] +centroid = (0.78060290618417882, -1.5751311137916124) +description = Spencer town, WI +station = ('kmfi', 0.0017958470975990961) +zone = ('wiz029', 0.0045130933657723318) + +[fips5507377150] +centroid = (0.78508843726838939, -1.5669197934465844) +description = Stettin town, WI +station = ('kauw', 0.0021665304740946896) +zone = ('wiz030', 0.0014837434889266741) + +[fips5507377750] +centroid = (0.78186586133750713, -1.5720281103677842) +description = Stratford village, WI +station = ('kmfi', 0.0031901049552938007) +zone = ('wiz030', 0.0042370532961067391) + +[fips5507379350] +centroid = (0.78666214829503511, -1.5630652337935549) +description = Texas town, WI +station = ('kauw', 0.0025366069780816446) +zone = ('wiz030', 0.0039307585194296012) + +[fips5507381850] +centroid = (0.78279451612590822, -1.5762032520978198) +description = Unity village, WI +station = ('kmfi', 0.0041068832380909189) +zone = ('wiz029', 0.0042576452480026592) + +[fips5507384475] +centroid = (0.78473259954049279, -1.5645739836654415) +description = Wausau city, WI +station = ('kauw', 0.00059811829312433516) +zone = ('wiz030', 0.0018077986421136047) + +[fips5507384500] +centroid = (0.78522581213381382, -1.5628972109464656) +description = Wausau town, WI +station = ('kauw', 0.0013091670212826605) +zone = ('wiz030', 0.0030660078582251432) + +[fips5507386025] +centroid = (0.78349959423712878, -1.5629362539618326) +description = Weston village, WI +station = ('kauw', 0.0011074190764712782) +zone = ('wiz030', 0.002591335932258694) + +[fips5507386050] +centroid = (0.78416402363007054, -1.562584203598413) +description = Weston town, WI +station = ('kauw', 0.0010795996069558628) +zone = ('wiz030', 0.0028879410430578526) + +[fips5507387025] +centroid = (0.78378319278728537, -1.5709671945286667) +description = Wien town, WI +station = ('kmdz', 0.00495422855594339) +zone = ('wiz030', 0.0031044528224323498) + +[fips55075] +centroid = (0.79145269311932409, -1.5357361178742495) +description = Marinette County, WI +station = ('kmnm', 0.0057650513748774487) +zone = ('wiz073', 0.0028350606856378823) + +[fips5507501675] +centroid = (0.79419460537420716, -1.5346811187012965) +description = Amberg town, WI +station = ('kimt', 0.0059095540414145272) +zone = ('wiz013', 0.0023293651788188863) + +[fips5507503525] +centroid = (0.79337309634858599, -1.5387539492305804) +description = Athelstane town, WI +station = ('kimt', 0.0063052235097321467) +zone = ('wiz013', 0.001776438763216313) + +[fips5507505800] +centroid = (0.78803066096152385, -1.5370241185023437) +description = Beaver town, WI +station = ('kmnm', 0.005322818679515574) +zone = ('wiz073', 0.0015803741936946413) + +[fips5507506000] +centroid = (0.79522263921021685, -1.534771701289475) +description = Beecher town, WI +station = ('kimt', 0.004946849513755661) +zone = ('wiz013', 0.0021249218240347867) + +[fips5507516250] +centroid = (0.78663560183711234, -1.5365649049228516) +description = Coleman village, WI +station = ('kmnm', 0.0051111470446578459) +zone = ('wiz073', 0.0023227154281524639) + +[fips5507517725] +centroid = (0.78948151826212165, -1.536011216670949) +description = Crivitz village, WI +station = ('kmnm', 0.0049203532514831196) +zone = ('wiz073', 0.0010930953695402138) + +[fips5507521000] +centroid = (0.7964463419086677, -1.5385330080005704) +description = Dunbar town, WI +station = ('kimt', 0.0032332368221266792) +zone = ('wiz013', 0.001520761922237307) + +[fips5507529775] +centroid = (0.79650547366372515, -1.5415565814901404) +description = Goodman town, WI +station = ('kimt', 0.0040400748935540435) +zone = ('wiz013', 0.0030257472439746591) + +[fips5507531725] +centroid = (0.78638163897765456, -1.53345467583592) +description = Grover town, WI +station = ('kmnm', 0.0031044879433139339) +zone = ('wiz073', 0.0025258721696390339) + +[fips5507532] +centroid = (0.8119414971809209, -1.5804908802981468) +description = Birch Hill CDP, WI +station = ('kiwd', 0.0050735862614861285) +zone = ('wiz003', 0.0038867670663037214) + +[fips5507541075] +centroid = (0.78890590867481392, -1.5339185494445149) +description = Lake town, WI +station = ('kmnm', 0.0033379365447066592) +zone = ('wiz073', 0.00078025493270100495) + +[fips5507549300] +centroid = (0.78692728126170552, -1.5293788957002004) +description = Marinette city, WI +station = ('kmnm', 0.00080184481158041682) +zone = ('wiz073', 0.0043136533801124768) + +[fips5507550] +centroid = (0.79687387776223628, -1.5978609031594773) +description = Birchwood village, WI +station = ('krpd', 0.0049893115391312663) +zone = ('wiz007', 0.0051361307761503897) + +[fips5507551537] +centroid = (0.79067104741381855, -1.5348067998607324) +description = Middle Inlet town, WI +station = ('kmnm', 0.0047647930465145255) +zone = ('wiz073', 0.0020055719957891801) + +[fips5507557325] +centroid = (0.79899696607753212, -1.5359451734120533) +description = Niagara city, WI +station = ('kimt', 0.0015283261660927947) +zone = ('wiz013', 0.0041843505449918961) + +[fips5507557350] +centroid = (0.79799282579898223, -1.5347693276416923) +description = Niagara town, WI +station = ('kimt', 0.0027568505109839886) +zone = ('wiz013', 0.0036503044368340434) + +[fips5507561775] +centroid = (0.79647142229001877, -1.5347162347258465) +description = Pembine town, WI +station = ('kimt', 0.003890343457483967) +zone = ('wiz013', 0.0025978917970452577) + +[fips5507562175] +centroid = (0.78642394575872299, -1.5314378606187782) +description = Peshtigo city, WI +station = ('kmnm', 0.0018930848587267871) +zone = ('wiz073', 0.0033560651242506459) + +[fips5507562200] +centroid = (0.7851696648917772, -1.5298572031817093) +description = Peshtigo town, WI +station = ('kmnm', 0.002568718836575082) +zone = ('wiz073', 0.0050291941928515063) + +[fips5507564275] +centroid = (0.78839590601408871, -1.5318597590588625) +description = Porterfield town, WI +station = ('kmnm', 0.0018006127355772027) +zone = ('wiz073', 0.0022117096448818888) + +[fips5507564750] +centroid = (0.78707821733541805, -1.5364646357573244) +description = Pound village, WI +station = ('kmnm', 0.004964124580240402) +zone = ('wiz073', 0.00190699386576523) + +[fips5507564775] +centroid = (0.78608634672150968, -1.5356691495908505) +description = Pound town, WI +station = ('kmnm', 0.0046602746610024497) +zone = ('wiz073', 0.0026288171911901894) + +[fips5507573975] +centroid = (0.79335785962421612, -1.5414840979663049) +description = Silver Cliff town, WI +station = ('kimt', 0.0067676976523314931) +zone = ('wiz013', 0.0030736127568390639) + +[fips5507577000] +centroid = (0.78961843934194065, -1.5382316943585062) +description = Stephenson town, WI +station = ('kmnm', 0.006445201690756925) +zone = ('wiz073', 0.0024839356981957556) + +[fips5507583050] +centroid = (0.79097485687671309, -1.5318817153008528) +description = Wagner town, WI +station = ('kmnm', 0.0036601745940292021) +zone = ('wiz073', 0.0031708810581641115) + +[fips5507584525] +centroid = (0.79199981893323934, -1.5351014463450543) +description = Wausaukee village, WI +station = ('kmnm', 0.0058201487860460553) +zone = ('wiz073', 0.0033321258917425123) + +[fips5507584550] +centroid = (0.79233898876677933, -1.5350037079069427) +description = Wausaukee town, WI +station = ('kmnm', 0.0060286644790146782) +zone = ('wiz013', 0.0033156165736898356) + +[fips5507600] +centroid = (0.78420758704820037, -1.5569983296872827) +description = Birnamwood village, WI +station = ('kaig', 0.00404061627131737) +zone = ('wiz019', 0.0060139644631373229) + +[fips5507650] +centroid = (0.77542109344817789, -1.5667081548214876) +description = Biron village, WI +station = ('kisw', 0.0013671975210637218) +zone = ('wiz035', 0.0034691939563414546) + +[fips55077] +centroid = (0.76490892300353841, -1.5604830889783994) +description = Marquette County, WI +station = ('ky50', 0.0039818436696200041) +zone = ('wiz046', 0.00017172804432785823) + +[fips5507711050] +centroid = (0.7624671026602432, -1.5590713794129238) +description = Buffalo town, WI +station = ('ky50', 0.0062073486778792871) +zone = ('wiz046', 0.0024934152419497108) + +[fips5507717900] +centroid = (0.76705681244750523, -1.5586306314169178) +description = Crystal Lake town, WI +station = ('ky50', 0.0016105391044414429) +zone = ('wiz046', 0.0025619307019997357) + +[fips5507720525] +centroid = (0.76245195320233594, -1.5629228498331773) +description = Douglas town, WI +station = ('kdll', 0.0039994016135137238) +zone = ('wiz046', 0.0030126457934021088) + +[fips5507724075] +centroid = (0.76298574470076586, -1.5615641633703772) +description = Endeavor village, WI +station = ('kdll', 0.0050797495252890698) +zone = ('wiz046', 0.0020265799935162065) + +[fips5507725] +centroid = (0.77622678979077597, -1.543747056967856) +description = Black Creek village, WI +station = ('kgrb', 0.003948845148877147) +zone = ('wiz038', 0.0010359453639680371) + +[fips5507732775] +centroid = (0.76543981725540999, -1.5608569210508842) +description = Harris town, WI +station = ('ky50', 0.0035952451958185649) +zone = ('wiz046', 0.00075731023930169898) + +[fips5507750350] +centroid = (0.76486736671404842, -1.5570455233902565) +description = Mecan town, WI +station = ('ky50', 0.0039730558641836175) +zone = ('wiz046', 0.0023516330489289292) + +[fips5507753875] +centroid = (0.76435539183126844, -1.5591836040838269) +description = Montello city, WI +station = ('ky50', 0.0043285305917570615) +zone = ('wiz046', 0.00092058658745998152) + +[fips5507753900] +centroid = (0.76396384466687606, -1.5587133774767548) +description = Montello town, WI +station = ('ky50', 0.0047035765261381887) +zone = ('wiz046', 0.0014178137997250674) + +[fips5507754600] +centroid = (0.76233391658502359, -1.5613012644251494) +description = Moundville town, WI +station = ('kdll', 0.004827468292818997) +zone = ('wiz046', 0.0025657178158690988) + +[fips5507756125] +centroid = (0.76733623966074949, -1.5571088264822261) +description = Neshkoro village, WI +station = ('ky50', 0.0017352306054658074) +zone = ('wiz045', 0.0026049435315179188) + +[fips5507756150] +centroid = (0.76676988031847748, -1.5569729176933735) +description = Neshkoro town, WI +station = ('ky50', 0.0022511044492892931) +zone = ('wiz047', 0.0030892821218468183) + +[fips5507757225] +centroid = (0.76703002164348721, -1.560671148205302) +description = Newton town, WI +station = ('ky50', 0.0021865313710096508) +zone = ('wiz046', 0.0022493948339732824) + +[fips5507760875] +centroid = (0.7641116391479349, -1.5631793957799278) +description = Oxford village, WI +station = ('kdll', 0.0052147687458587279) +zone = ('wiz046', 0.0021857708559072748) + +[fips5507760900] +centroid = (0.76392989801292477, -1.5627560661698567) +description = Oxford town, WI +station = ('kdll', 0.0052236031275092361) +zone = ('wiz046', 0.001971018290726192) + +[fips5507760962] +centroid = (0.76380596218274066, -1.5604542037792788) +description = Packwaukee town, WI +station = ('ky50', 0.0050308695416926954) +zone = ('wiz046', 0.00099629927315281371) + +[fips5507773600] +centroid = (0.7653954509858244, -1.5584825576831784) +description = Shields town, WI +station = ('ky50', 0.0032741907133010985) +zone = ('wiz046', 0.0014436154340698218) + +[fips5507775925] +centroid = (0.76701342356230073, -1.5626349577730607) +description = Springfield town, WI +station = ('ky50', 0.0033055470188845634) +zone = ('wiz046', 0.0027820227520106897) + +[fips5507785575] +centroid = (0.76594058712439228, -1.5619386412146852) +description = Westfield village, WI +station = ('ky50', 0.0036076899652281091) +zone = ('wiz046', 0.0016431491883691339) + +[fips5507785600] +centroid = (0.76548022162759377, -1.5626131586107035) +description = Westfield town, WI +station = ('ky50', 0.0042744682327695432) +zone = ('wiz046', 0.001800911860732566) + +[fips55078] +centroid = (0.78524638956569481, -1.5475703752272747) +description = Menominee County, WI +station = ('kezs', 0.0037641676121199009) +zone = ('wiz020', 0.00055242026459934198) + +[fips5507800] +centroid = (0.75284112314330398, -1.5663868222529029) +description = Black Earth village, WI +station = ('kc29', 0.0028020328232735378) +zone = ('wiz062', 0.0054735567174908333) + +[fips5507850975] +centroid = (0.78524638956569481, -1.5475703752272747) +description = Menominee town, WI +station = ('kezs', 0.0037641676121199009) +zone = ('wiz020', 0.00055242026459934198) + +[fips55079] +centroid = (0.75079971623700126, -1.5268415185803585) +description = Milwaukee County, WI +station = ('krac', 0.0061276986324243377) +zone = ('wiz066', 0.0061938765762073415) + +[fips5507900] +centroid = (0.77309273695955472, -1.585537587096751) +description = Black River Falls city, WI +station = ('kbck', 0.00078742715470409127) +zone = ('wiz034', 0.00064803488169556858) + +[fips5507900000] +centroid = (0.75079971623700126, -1.5268415185803585) +description = County subdivisions not defined, WI +station = ('krac', 0.0061276986324243377) +zone = ('wiz066', 0.0061938765762073415) + +[fips5507905450] +centroid = (0.75367073049665445, -1.5341734198751837) +description = Bayside village, WI +station = ('kmwc', 0.0020291343040257778) +zone = ('wiz066', 0.0031656794374937203) + +[fips5507910375] +centroid = (0.75353387923000559, -1.5354534094420114) +description = Brown Deer village, WI +station = ('kmwc', 0.0012506010987279198) +zone = ('wiz066', 0.0029202992461756323) + +[fips5507917975] +centroid = (0.74956178910514681, -1.5335140693903653) +description = Cudahy city, WI +station = ('kmke', 0.00046491384804913879) +zone = ('wiz066', 0.001683443378609991) + +[fips5507927075] +centroid = (0.75325237507495135, -1.5341696674172922) +description = Fox Point village, WI +station = ('kmwc', 0.0018293156628672394) +zone = ('wiz066', 0.002764963228275367) + +[fips5507927300] +centroid = (0.74846488457685334, -1.5360912923770305) +description = Franklin city, WI +station = ('kmke', 0.0018342938842356696) +zone = ('wiz066', 0.0022256298572953062) + +[fips5507929400] +centroid = (0.7526931715826124, -1.5346190547930956) +description = Glendale city, WI +station = ('kmwc', 0.0013622016830085518) +zone = ('wiz066', 0.0021378638638153602) + +[fips5507931125] +centroid = (0.74944425863331754, -1.5359046992266996) +description = Greendale village, WI +station = ('kmke', 0.0013003269158788928) +zone = ('wiz066', 0.0012498226251102618) + +[fips5507931175] +centroid = (0.74980398844544593, -1.535988701923598) +description = Greenfield city, WI +station = ('kmke', 0.0013624375210327978) +zone = ('wiz066', 0.00095190127266618315) + +[fips5507932075] +centroid = (0.74946590071604213, -1.5367527896168287) +description = Hales Corners village, WI +station = ('kmke', 0.0019154550084219115) +zone = ('wiz066', 0.0015614663340719436) + +[fips5507953000] +centroid = (0.75159720953211506, -1.5353084598476334) +description = Milwaukee city, WI +station = ('kmwc', 0.0012599217622061621) +zone = ('wiz066', 0.00098171279978074666) + +[fips5507958800] +centroid = (0.74840131968549573, -1.5341577642717936) +description = Oak Creek city, WI +station = ('kmke', 0.0012176333097262729) +zone = ('wiz066', 0.0023690119333196267) + +[fips5507968325] +centroid = (0.75351937554392145, -1.5347351890015231) +description = River Hills village, WI +station = ('kmwc', 0.0016087837436312765) +zone = ('wiz066', 0.0029339104396538676) + +[fips5507970650] +centroid = (0.74999653316852599, -1.5336750236539844) +description = St. Francis city, WI +station = ('kmke', 0.0005104843330441713) +zone = ('wiz066', 0.0013456886804087671) + +[fips5507973725] +centroid = (0.75208550029694543, -1.5339109747155613) +description = Shorewood village, WI +station = ('kmke', 0.0024724839441151465) +zone = ('wiz066', 0.0017899622423148821) + +[fips5507975125] +centroid = (0.74896691108289704, -1.533486632814524) +description = South Milwaukee city, WI +station = ('kmke', 0.00081058788214866757) +zone = ('wiz066', 0.0021202857562198103) + +[fips5507984675] +centroid = (0.75159323018142044, -1.5365105553699445) +description = Wauwatosa city, WI +station = ('kmwc', 0.00093500034560496637) +zone = ('wiz066', 0.0013144900198180684) + +[fips5507985300] +centroid = (0.75061699771760992, -1.5363956428919932) +description = West Allis city, WI +station = ('kmwc', 0.0019116020755839606) +zone = ('wiz066', 0.00079496048476963377) + +[fips5507985875] +centroid = (0.7507076152123735, -1.5353840849641223) +description = West Milwaukee village, WI +station = ('kmke', 0.0014169573865928532) +zone = ('wiz066', 0.0001074097013109724) + +[fips5507986700] +centroid = (0.75246818118873782, -1.5341540816270718) +description = Whitefish Bay village, WI +station = ('kmwc', 0.0016927411754243894) +zone = ('wiz066', 0.002035662818272675) + +[fips5508075] +centroid = (0.77310457029188329, -1.5922227217306648) +description = Blair city, WI +station = ('kbck', 0.0047860997352114215) +zone = ('wiz033', 0.0016410941524654065) + +[fips55081] +centroid = (0.7669879941150991, -1.5816168271051934) +description = Monroe County, WI +station = ('kcmy', 0.0014979823671782213) +zone = ('wiz042', 2.7567236810516701e-05) + +[fips5508100475] +centroid = (0.7669868247445002, -1.5812072506896278) +description = Adrian town, WI +station = ('kcmy', 0.0017900828473025661) +zone = ('wiz042', 0.00026909415822267357) + +[fips5508102025] +centroid = (0.76689618979644414, -1.5834501733113657) +description = Angelo town, WI +station = ('kcmy', 0.00035926060701425448) +zone = ('wiz042', 0.0013498518135357097) + +[fips5508111625] +centroid = (0.76842103160403408, -1.5773144334193945) +description = Byron town, WI +station = ('kvok', 0.0021183784281139906) +zone = ('wiz042', 0.0033837678454293175) + +[fips5508112950] +centroid = (0.76341542730931433, -1.5845619131383011) +description = Cashton village, WI +station = ('ky51', 0.0031104280369353967) +zone = ('wiz053', 0.0026225633511089853) + +[fips5508115550] +centroid = (0.76543863043151872, -1.5773284484132881) +description = Clifton town, WI +station = ('kvok', 0.0019063279019998901) +zone = ('wiz042', 0.0034375297264478636) + +[fips5508125] +centroid = (0.74716470155058023, -1.5683635821637119) +description = Blanchardville village, WI +station = ('keft', 0.0048455709574264519) +zone = ('wiz068', 0.0040087467766109644) + +[fips5508129450] +centroid = (0.76392544742333213, -1.5773101748160197) +description = Glendale town, WI +station = ('kvok', 0.0031550622344346854) +zone = ('wiz042', 0.0043494401888688021) + +[fips5508130325] +centroid = (0.77022280480403793, -1.581285371626947) +description = Grant town, WI +station = ('kcmy', 0.0034606840840559444) +zone = ('wiz042', 0.0032326276240099245) + +[fips5508131225] +centroid = (0.76874257361212894, -1.581252035838234) +description = Greenfield town, WI +station = ('kcmy', 0.0023147213120625321) +zone = ('wiz042', 0.0017613595264049193) + +[fips5508137950] +centroid = (0.76393333631155114, -1.5839388480486316) +description = Jefferson town, WI +station = ('kcmy', 0.0032899031669731183) +zone = ('wiz053', 0.0032432413068875692) + +[fips5508139150] +centroid = (0.76432481366277349, -1.5772151241849559) +description = Kendall village, WI +station = ('kvok', 0.0027664181157343983) +zone = ('wiz042', 0.0041287586345712659) + +[fips5508140925] +centroid = (0.76837003308329088, -1.5835711595351138) +description = Lafayette town, WI +station = ('kcmy', 0.0011547085917244582) +zone = ('wiz042', 0.0019839070596219771) + +[fips5508141000] +centroid = (0.76861216261041998, -1.5791499438338394) +description = La Grange town, WI +station = ('kcmy', 0.0035399386676444773) +zone = ('wiz042', 0.0023804409897043156) + +[fips5508143475] +centroid = (0.76543173638097339, -1.5856456927906195) +description = Leon town, WI +station = ('kcmy', 0.0022824320910389269) +zone = ('wiz042', 0.00332106330881995) + +[fips5508144450] +centroid = (0.76993157916505017, -1.579550427084002) +description = Lincoln town, WI +station = ('kcmy', 0.0040185776363529883) +zone = ('wiz042', 0.0032774460748147181) + +[fips5508144975] +centroid = (0.76966281591353547, -1.5860950627131305) +description = Little Falls town, WI +station = ('kbck', 0.0026661783706061395) +zone = ('wiz034', 0.0039534970658582583) + +[fips5508150800] +centroid = (0.76449891025565986, -1.5844324620676808) +description = Melvina village, WI +station = ('kcmy', 0.0027733054235817719) +zone = ('wiz042', 0.0032353079245761728) + +[fips5508156950] +centroid = (0.77006394493552144, -1.5835172288612274) +description = New Lyme town, WI +station = ('kbck', 0.0027084156417522165) +zone = ('wiz042', 0.0033680060975153359) + +[fips5508158575] +centroid = (0.76504806065150732, -1.5817350557087235) +description = Norwalk village, WI +station = ('kcmy', 0.0025801592636833836) +zone = ('wiz042', 0.0019522675750524529) + +[fips5508158850] +centroid = (0.76728775441412911, -1.5774059759386616) +description = Oakdale village, WI +station = ('kvok', 0.0014961777081742415) +zone = ('wiz042', 0.0030193983951325278) + +[fips5508158875] +centroid = (0.76659615024473393, -1.5772873284561111) +description = Oakdale town, WI +station = ('kvok', 0.001335774427544401) +zone = ('wiz042', 0.0031177225895854914) + +[fips5508164425] +centroid = (0.76419623525677904, -1.5852496775833418) +description = Portland town, WI +station = ('kcmy', 0.0032281380454721167) +zone = ('wiz053', 0.0033400881166715892) + +[fips5508167850] +centroid = (0.76543032266427924, -1.5811845265027669) +description = Ridgeville town, WI +station = ('kcmy', 0.0025315643801250213) +zone = ('wiz042', 0.0015926279509083222) + +[fips5508172325] +centroid = (0.7700646605205147, -1.5770612908646855) +description = Scott town, WI +station = ('kvok', 0.0034816130350925154) +zone = ('wiz042', 0.0044683992413519329) + +[fips5508173150] +centroid = (0.76400023478178014, -1.5816536011925331) +description = Sheldon town, WI +station = ('kcmy', 0.0035314833257868469) +zone = ('wiz042', 0.0029973830462484562) + +[fips5508175325] +centroid = (0.76692931614564708, -1.5848775210269392) +description = Sparta city, WI +station = ('kcmy', 0.00091388186530070876) +zone = ('wiz042', 0.0023747385549848961) + +[fips5508175350] +centroid = (0.76736737633460517, -1.5857198343772441) +description = Sparta town, WI +station = ('kcmy', 0.0014809007015571534) +zone = ('wiz042', 0.0030025349983122929) + +[fips5508180075] +centroid = (0.76774354714828741, -1.5795546158742069) +description = Tomah city, WI +station = ('kcmy', 0.0030101242149720795) +zone = ('wiz042', 0.0016381783674251293) + +[fips5508180100] +centroid = (0.76689001133089207, -1.5792784175200789) +description = Tomah town, WI +station = ('kcmy', 0.0031808190983381016) +zone = ('wiz042', 0.0016611944735841653) + +[fips5508183450] +centroid = (0.77016885667685886, -1.579888986052304) +description = Warrens village, WI +station = ('kcmy', 0.0040134820997930146) +zone = ('wiz042', 0.0033968756175179853) + +[fips5508185125] +centroid = (0.76391204329467677, -1.5793892284742881) +description = Wellington town, WI +station = ('kvok', 0.0040373671423910929) +zone = ('wiz042', 0.0034662637607631884) + +[fips5508185150] +centroid = (0.76543306283120494, -1.5835507915427434) +description = Wells town, WI +station = ('kcmy', 0.0017867574235144318) +zone = ('wiz042', 0.0021122079157091796) + +[fips5508187525] +centroid = (0.7646873709082902, -1.5799944388457094) +description = Wilton village, WI +station = ('kcmy', 0.0036648584347765715) +zone = ('wiz042', 0.002577293809836467) + +[fips5508187550] +centroid = (0.76544267959538326, -1.5793911308831725) +description = Wilton town, WI +station = ('kcmy', 0.0035590904608278425) +zone = ('wiz042', 0.0022148280644529558) + +[fips5508189275] +centroid = (0.76843565746316578, -1.5775373294181667) +description = Wyeville village, WI +station = ('kvok', 0.002234197355701446) +zone = ('wiz042', 0.003245424332181853) + +[fips5508225] +centroid = (0.78719285056068911, -1.5968286107200929) +description = Bloomer city, WI +station = ('keau', 0.004123037648976033) +zone = ('wiz027', 0.0026724541927540231) + +[fips55083] +centroid = (0.78533838587056748, -1.5394941259130586) +description = Oconto County, WI +station = ('kezs', 0.0056657659037442935) +zone = ('wiz074', 0.0021522112154232949) + +[fips5508300000] +centroid = (0.7816400331855915, -1.5331640785154628) +description = County subdivisions not defined, WI +station = ('kgrb', 0.0063709904553260295) +zone = ('wiz074', 0.0040355685764085717) + +[fips5508300175] +centroid = (0.78187238886890942, -1.5372312192713853) +description = Abrams town, WI +station = ('kgrb', 0.0055363567727517143) +zone = ('wiz074', 0.0016696358742796875) + +[fips5508304275] +centroid = (0.78695100028624021, -1.5409027636990509) +description = Bagley town, WI +station = ('kezs', 0.0062116307997152898) +zone = ('wiz021', 0.0025887549535893398) + +[fips5508309375] +centroid = (0.78742979645993982, -1.5395377416910658) +description = Brazeau town, WI +station = ('kmnm', 0.0070953232663620623) +zone = ('wiz021', 0.0030448489367677113) + +[fips5508309425] +centroid = (0.78665884962274879, -1.543298088471073) +description = Breed town, WI +station = ('kezs', 0.0052027649338221718) +zone = ('wiz021', 0.0022404956831669426) + +[fips5508314125] +centroid = (0.7805317491105751, -1.539319523174689) +description = Chase town, WI +station = ('kgrb', 0.004224710949007426) +zone = ('wiz074', 0.0029111032120746842) + +[fips5508320475] +centroid = (0.7889986729245575, -1.5466190137053051) +description = Doty town, WI +station = ('kezs', 0.0072970441498252147) +zone = ('wiz021', 0.0023268556651455875) + +[fips5508329050] +centroid = (0.78347690495685285, -1.5412335210455961) +description = Gillett city, WI +station = ('kezs', 0.0035928871711218744) +zone = ('wiz074', 0.0020708895915217537) + +[fips5508329075] +centroid = (0.78361325007801874, -1.5412679738450306) +description = Gillett town, WI +station = ('kezs', 0.0036398872802886331) +zone = ('wiz074', 0.0021074889808746448) + +[fips5508335925] +centroid = (0.7849435225805963, -1.54341588074229) +description = How town, WI +station = ('kezs', 0.0035838696349751956) +zone = ('wiz074', 0.0039450606409102088) + +[fips5508342075] +centroid = (0.79132249155712531, -1.543468886391673) +description = Lakewood town, WI +station = ('kimt', 0.0091884255775277097) +zone = ('wiz021', 0.0024254739580228681) + +[fips5508343325] +centroid = (0.78457361749892862, -1.536732421624458) +description = Lena village, WI +station = ('kmnm', 0.0060098450530568486) +zone = ('wiz074', 0.0016563789355829941) + +[fips5508343350] +centroid = (0.78515826789176169, -1.5368552055373357) +description = Lena town, WI +station = ('kmnm', 0.0058012421320717432) +zone = ('wiz074', 0.0020791897414234885) + +[fips5508345175] +centroid = (0.78481503144106446, -1.5341807328047496) +description = Little River town, WI +station = ('kmnm', 0.0044103061975517485) +zone = ('wiz074', 0.0032718681625734983) + +[fips5508345275] +centroid = (0.78035459819149766, -1.536879116548088) +description = Little Suamico town, WI +station = ('kgrb', 0.0040865351861913823) +zone = ('wiz074', 0.0031682764331559428) + +[fips5508349000] +centroid = (0.78498102970622174, -1.5410508199794974) +description = Maple Valley town, WI +station = ('kezs', 0.0046078266474181805) +zone = ('wiz074', 0.0025289297367131276) + +[fips5508354200] +centroid = (0.78207887877271287, -1.53902932727996) +description = Morgan town, WI +station = ('kgrb', 0.0057274934561946135) +zone = ('wiz074', 0.001372178045202829) + +[fips5508354630] +centroid = (0.78830254835239955, -1.5433521238647145) +description = Mountain town, WI +station = ('kezs', 0.0067699892830454991) +zone = ('wiz021', 0.00059718545136621206) + +[fips5508359350] +centroid = (0.78350093814065291, -1.5335934295114535) +description = Oconto city, WI +station = ('kmnm', 0.0051244061489610013) +zone = ('wiz074', 0.0033489645197586843) + +[fips5508359375] +centroid = (0.78345456474242747, -1.5348634707015447) +description = Oconto town, WI +station = ('kmnm', 0.0057157052692055482) +zone = ('wiz074', 0.0024480418251426172) + +[fips5508359400] +centroid = (0.783221859993259, -1.5384285325915459) +description = Oconto Falls city, WI +station = ('kgrb', 0.0068428866884344616) +zone = ('wiz074', 0.00015475518740868624) + +[fips5508359425] +centroid = (0.78365901261100601, -1.5392402677733559) +description = Oconto Falls town, WI +station = ('kezs', 0.0049447513338162739) +zone = ('wiz074', 0.00072234552729150841) + +[fips5508361900] +centroid = (0.78183482938340665, -1.5352343008077161) +description = Pensaukee town, WI +station = ('kgrb', 0.0058525212426600729) +zone = ('wiz074', 0.0026614508271791404) + +[fips5508365675] +centroid = (0.77978391043268058, -1.5398259130038627) +description = Pulaski village, WI +station = ('kgrb', 0.0035910732044294124) +zone = ('wiz074', 0.0037279079494887835) + +[fips5508368400] +centroid = (0.78979101749837788, -1.5432563401953652) +description = Riverview town, WI +station = ('kezs', 0.0082357356154761745) +zone = ('wiz021', 0.00089283629463701231) + +[fips5508375] +centroid = (0.74862259252806362, -1.5869582676545819) +description = Bloomington village, WI +station = ('kpdc', 0.0033932227280823301) +zone = ('wiz061', 0.0028460273299721534) + +[fips5508376450] +centroid = (0.78495987631568753, -1.5389461623411025) +description = Spruce town, WI +station = ('kezs', 0.0057504139372388345) +zone = ('wiz074', 0.0016663770749304552) + +[fips5508377300] +centroid = (0.7835348847946042, -1.5370385872818428) +description = Stiles town, WI +station = ('kgrb', 0.0072031289317162142) +zone = ('wiz074', 0.00092268029446947414) + +[fips5508378725] +centroid = (0.78541230056438949, -1.5423380003028431) +description = Suring village, WI +station = ('kezs', 0.0043689105665779193) +zone = ('wiz074', 0.0035129300975886846) + +[fips5508380325] +centroid = (0.79126625704862608, -1.5470040856981724) +description = Townsend town, WI +station = ('kaig', 0.0065546483422948233) +zone = ('wiz021', 0.0035109244091161042) + +[fips5508381475] +centroid = (0.78372496860343888, -1.5432177335123112) +description = Underhill town, WI +station = ('kezs', 0.0026410432765506509) +zone = ('wiz074', 0.0034923779293175613) + +[fips5508475] +centroid = (0.75079547508691891, -1.5677731198244698) +description = Blue Mounds village, WI +station = ('kc29', 0.0041149409462303737) +zone = ('wiz062', 0.0039498189316125856) + +[fips55085] +centroid = (0.79785616651855118, -1.5627100941973593) +description = Oneida County, WI +station = ('krhi', 0.0015477039406138571) +zone = ('wiz010', 0.00023200633715437724) + +[fips5508513025] +centroid = (0.79749610509386482, -1.5652823429956559) +description = Cassian town, WI +station = ('krhi', 0.0026618942940249747) +zone = ('wiz010', 0.001991149846072582) + +[fips5508517625] +centroid = (0.79593277877626833, -1.5617478243675647) +description = Crescent town, WI +station = ('krhi', 0.00051958821602879086) +zone = ('wiz010', 0.0018465456429645254) + +[fips5508524125] +centroid = (0.79409845518571476, -1.5592640463090515) +description = Enterprise town, WI +station = ('krhi', 0.0029390957737015031) +zone = ('wiz010', 0.004246171150496302) + +[fips5508525] +centroid = (0.75372202572337055, -1.5807707612969966) +description = Blue River village, WI +station = ('kovs', 0.0015498364171644199) +zone = ('wiz055', 0.0037829550897244065) + +[fips5508533575] +centroid = (0.79896363028881912, -1.5665254013955114) +description = Hazelhurst town, WI +station = ('karv', 0.002737320490244471) +zone = ('wiz010', 0.003107954933618096) + +[fips5508541887] +centroid = (0.79884918904976587, -1.5639061159738734) +description = Lake Tomahawk town, WI +station = ('krhi', 0.0028203238698524249) +zone = ('wiz010', 0.0015249677996430051) + +[fips5508545150] +centroid = (0.79691422977454229, -1.5685735976326043) +description = Little Rice town, WI +station = ('ktkv', 0.0034317692099097956) +zone = ('wiz018', 0.0058735970999051999) + +[fips5508546650] +centroid = (0.7962945157170368, -1.5708320187780997) +description = Lynne town, WI +station = ('ktkv', 0.0036231021933304389) +zone = ('wiz009', 0.0044920862564608744) + +[fips5508553225] +centroid = (0.79979032294231878, -1.5688203348289589) +description = Minocqua town, WI +station = ('karv', 0.0026603032246600177) +zone = ('wiz009', 0.0063041905214166506) + +[fips5508553662] +centroid = (0.79589279328310514, -1.5558314374559841) +description = Monico town, WI +station = ('krhi', 0.0041972657508449768) +zone = ('wiz019', 0.0059778904331054252) + +[fips5508556425] +centroid = (0.79908138765345116, -1.5619954691351303) +description = Newbold town, WI +station = ('krhi', 0.0026338220241384604) +zone = ('wiz010', 0.0014042199193923563) + +[fips5508557450] +centroid = (0.79597234539041106, -1.5661163660320141) +description = Nokomis town, WI +station = ('ktkv', 0.0025546703260842922) +zone = ('wiz010', 0.0030989597548630172) + +[fips5508560] +centroid = (0.75681979315944281, -1.5668458263928848) +description = Bluffview CDP, WI +station = ('kdll', 0.0027816637682832896) +zone = ('wiz056', 0.0024834984098389694) + +[fips5508561625] +centroid = (0.79575545332426578, -1.5592505723672261) +description = Pelican town, WI +station = ('krhi', 0.0019006795307327377) +zone = ('wiz010', 0.0029715279073495473) + +[fips5508562600] +centroid = (0.79730396179651264, -1.5552999672454593) +description = Piehl town, WI +station = ('krhi', 0.0046077874674634719) +zone = ('wiz011', 0.0041754280045913292) + +[fips5508562925] +centroid = (0.7973804595776276, -1.5603287495126454) +description = Pine Lake town, WI +station = ('krhi', 0.0013745145233441363) +zone = ('wiz010', 0.0015174441290725974) + +[fips5508567200] +centroid = (0.79650070891486724, -1.5607697069481621) +description = Rhinelander city, WI +station = ('krhi', 0.00070726798590638391) +zone = ('wiz010', 0.0016870655901564129) + +[fips5508572125] +centroid = (0.79437365870216925, -1.5559075861712488) +description = Schoepke town, WI +station = ('krhi', 0.004605370779768205) +zone = ('wiz019', 0.0044909469464677878) + +[fips5508576975] +centroid = (0.7975129824277315, -1.5575480560417834) +description = Stella town, WI +station = ('krhi', 0.0031413513019335035) +zone = ('wiz010', 0.0034283453292537833) + +[fips5508578075] +centroid = (0.79936399136593406, -1.5592857407516538) +description = Sugar Camp town, WI +station = ('kegv', 0.0024530866556136568) +zone = ('wiz010', 0.0027558885641900915) + +[fips5508579700] +centroid = (0.79948070153301498, -1.5556656835369223) +description = Three Lakes town, WI +station = ('kegv', 0.0027348433276582875) +zone = ('wiz005', 0.0063175517169416218) + +[fips5508588625] +centroid = (0.79590708752967898, -1.5640948209725991) +description = Woodboro town, WI +station = ('krhi', 0.0017090945884419579) +zone = ('wiz010', 0.0021416013487257717) + +[fips5508588950] +centroid = (0.80038933739489571, -1.5645088654310495) +description = Woodruff town, WI +station = ('karv', 0.0017257782462055738) +zone = ('wiz010', 0.0030375052377898336) + +[fips5508600] +centroid = (0.75624985589220406, -1.5800056089529222) +description = Boaz village, WI +station = ('kovs', 0.0037120647000506461) +zone = ('wiz055', 0.0014789059816760516) + +[fips5508625] +centroid = (0.74389667724597597, -1.5408686425121743) +description = Bohners Lake CDP, WI +station = ('kbuu', 0.001219901892996808) +zone = ('wiz071', 0.003677333211748136) + +[fips55087] +centroid = (0.77524429159495079, -1.5440053133372735) +description = Outagamie County, WI +station = ('katw', 0.0030061421140704027) +zone = ('wiz038', 3.7121912017578767e-05) + +[fips5508702375] +centroid = (0.7729297232074186, -1.5427208906341456) +description = Appleton city, WI +station = ('katw', 0.0016844940757147384) +zone = ('wiz038', 0.0024552757363625458) + +[fips5508705575] +centroid = (0.7772181193526162, -1.5485876403817995) +description = Bear Creek village, WI +station = ('kcli', 0.0014419298063903573) +zone = ('wiz037', 0.0031390932096538498) + +[fips5508707725] +centroid = (0.77622678979077597, -1.543747056967856) +description = Black Creek village, WI +station = ('kgrb', 0.003948845148877147) +zone = ('wiz038', 0.0010359453639680371) + +[fips5508707750] +centroid = (0.77596582816101778, -1.543594899163667) +description = Black Creek town, WI +station = ('katw', 0.0037760884969207328) +zone = ('wiz038', 0.00081287700089347392) + +[fips5508708975] +centroid = (0.77593331267705312, -1.5455185661586301) +description = Bovina town, WI +station = ('kcli', 0.0035254332332824837) +zone = ('wiz038', 0.0013027285767471164) + +[fips5508710750] +centroid = (0.77264615956384708, -1.5400319491220607) +description = Buchanan town, WI +station = ('kgrb', 0.0039534047084331158) +zone = ('wiz049', 0.0032842810133049444) + +[fips5508713600] +centroid = (0.77451050281753475, -1.5435729254683843) +description = Center town, WI +station = ('katw', 0.002400365080244641) +zone = ('wiz038', 0.00076166942572201165) + +[fips5508714750] +centroid = (0.77729948660234427, -1.5434268065034074) +description = Cicero town, WI +station = ('kgrb', 0.003827323370033337) +zone = ('wiz038', 0.0021324197156554611) + +[fips5508716500] +centroid = (0.7725570081456552, -1.5412435392355024) +description = Combined Locks village, WI +station = ('katw', 0.0026357931975189404) +zone = ('wiz038', 0.0033046364014924479) + +[fips5508718525] +centroid = (0.77279109170493254, -1.5478206554420106) +description = Dale town, WI +station = ('katw', 0.0021415230538026886) +zone = ('wiz048', 0.0036762350568165518) + +[fips5508719200] +centroid = (0.77746599101298453, -1.5476242011814061) +description = Deer Creek town, WI +station = ('kcli', 0.0014010076260231492) +zone = ('wiz038', 0.0034314264884869974) + +[fips5508723425] +centroid = (0.77445542022634195, -1.5455018459043959) +description = Ellington town, WI +station = ('katw', 0.0021889687633329176) +zone = ('wiz038', 0.0013080398833711935) + +[fips5508725] +centroid = (0.78082096762092312, -1.5436860926170837) +description = Bonduel village, WI +station = ('kezs', 0.0016742478637107397) +zone = ('wiz074', 0.0045753593724188685) + +[fips5508727650] +centroid = (0.77444383124010863, -1.5413261456689995) +description = Freedom town, WI +station = ('kgrb', 0.0029464521188100981) +zone = ('wiz038', 0.0020599421791498984) + +[fips5508730075] +centroid = (0.77304606685535648, -1.5437350491026023) +description = Grand Chute town, WI +station = ('katw', 0.0011175834122698057) +zone = ('wiz038', 0.0021696443980993661) + +[fips5508731550] +centroid = (0.77289832473417508, -1.5455483589289616) +description = Greenville town, WI +station = ('katw', 0.00074766685806924307) +zone = ('wiz038', 0.0025594468938877069) + +[fips5508735825] +centroid = (0.77384584653179034, -1.5478642363134327) +description = Hortonia town, WI +station = ('katw', 0.0026160843222067256) +zone = ('wiz038', 0.0030768191292588464) + +[fips5508735850] +centroid = (0.77380509309375622, -1.5470004903199135) +description = Hortonville village, WI +station = ('katw', 0.0021179109806395858) +zone = ('wiz038', 0.0025600409038934384) + +[fips5508735950] +centroid = (0.77817115639066781, -1.5392359917166887) +description = Howard village, WI +station = ('kgrb', 0.0019322917558736246) +zone = ('wiz039', 0.0032908491130555408) + +[fips5508738800] +centroid = (0.77277784465591004, -1.5405210078317619) +description = Kaukauna city, WI +station = ('kgrb', 0.0039613198607204008) +zone = ('wiz049', 0.0034582089632737515) + +[fips5508738825] +centroid = (0.77403879268059839, -1.539845129078927) +description = Kaukauna town, WI +station = ('kgrb', 0.0026147381950152914) +zone = ('wiz039', 0.0033303649960402448) + +[fips5508739650] +centroid = (0.77260030976439709, -1.5417981874184938) +description = Kimberly village, WI +station = ('katw', 0.0022458080091805666) +zone = ('wiz038', 0.0030469693193738772) + +[fips5508743875] +centroid = (0.77520058855048091, -1.5472847870017707) +description = Liberty town, WI +station = ('katw', 0.0033552984412485304) +zone = ('wiz038', 0.0023435628818085806) + +[fips5508744950] +centroid = (0.77299402113706206, -1.541412260214293) +description = Little Chute village, WI +station = ('katw', 0.0025949206958773632) +zone = ('wiz038', 0.0028865100369288004) + +[fips5508748250] +centroid = (0.7775155583637412, -1.5456560457438095) +description = Maine town, WI +station = ('kcli', 0.0024228700556677934) +zone = ('wiz038', 0.0025919577869461638) + +[fips5508748775] +centroid = (0.77616783256864363, -1.5479352712139889) +description = Maple Creek town, WI +station = ('kcli', 0.0025436654070758501) +zone = ('wiz037', 0.0034206361859404036) + +[fips5508756925] +centroid = (0.7749025735807028, -1.5486052682072444) +description = New London city, WI +station = ('katw', 0.0037053490642233512) +zone = ('wiz037', 0.0031995874889372573) + +[fips5508757375] +centroid = (0.77784226654642197, -1.5440547934215674) +description = Nichols village, WI +station = ('kezs', 0.0040553925954304277) +zone = ('wiz038', 0.0026353319419685152) + +[fips5508760000] +centroid = (0.77638495152759168, -1.5400803820088034) +description = Oneida town, WI +station = ('kgrb', 0.0013295508824372768) +zone = ('wiz039', 0.0029964586478713347) + +[fips5508760400] +centroid = (0.77582726647170197, -1.5418611414446133) +description = Osborn town, WI +station = ('kgrb', 0.0026589609553829721) +zone = ('wiz038', 0.0016508491892908291) + +[fips5508772725] +centroid = (0.7769231238024441, -1.5416029025284883) +description = Seymour city, WI +station = ('kgrb', 0.0024753295280785965) +zone = ('wiz038', 0.0024249399587863516) + +[fips5508772750] +centroid = (0.77749023363629466, -1.5413575790488279) +description = Seymour town, WI +station = ('kgrb', 0.0024993579569395738) +zone = ('wiz038', 0.00296257439548883) + +[fips5508773625] +centroid = (0.77571230163387317, -1.5459506922281312) +description = Shiocton village, WI +station = ('katw', 0.0034849249995359947) +zone = ('wiz038', 0.0014792054977097108) + +[fips5508782400] +centroid = (0.77342701987118923, -1.541121261468108) +description = Vandenbroek town, WI +station = ('kgrb', 0.0036097261782964715) +zone = ('wiz038', 0.0027231412651474401) + +[fips5508789150] +centroid = (0.77374390185018127, -1.5393638545376898) +description = Wrightstown village, WI +station = ('kgrb', 0.0027611117329788075) +zone = ('wiz039', 0.003233949210552253) + +[fips5508850] +centroid = (0.75298465902098799, -1.5829856539309475) +description = Boscobel city, WI +station = ('kovs', 0.00022890807300682294) +zone = ('wiz054', 0.0034068158321910987) + +[fips55089] +centroid = (0.75678724276889309, -1.5271029339957223) +description = Ozaukee County, WI +station = ('ketb', 0.0080808888824378741) +zone = ('wiz060', 0.0057859168726498199) + +[fips5508900000] +centroid = (0.75678724276889309, -1.5271029339957223) +description = County subdivisions not defined, WI +station = ('ketb', 0.0080808888824378741) +zone = ('wiz060', 0.0057859168726498199) + +[fips5508905450] +centroid = (0.75388739566999707, -1.5340903247494964) +description = Bayside village, WI +station = ('kmwc', 0.0022058892888579449) +zone = ('wiz060', 0.0033748091109881018) + +[fips5508906150] +centroid = (0.75926206728834356, -1.5332272245278) +description = Belgium village, WI +station = ('ketb', 0.0038209764467590714) +zone = ('wiz060', 0.0024558880375401657) + +[fips5508906175] +centroid = (0.75893249676568941, -1.5339833535196417) +description = Belgium town, WI +station = ('ketb', 0.0031917127064023496) +zone = ('wiz060', 0.0019047722072291573) + +[fips5508913375] +centroid = (0.75570220647951325, -1.5356996230395903) +description = Cedarburg city, WI +station = ('ketb', 0.0027871266849874678) +zone = ('wiz060', 0.0015626438990274758) + +[fips5508913400] +centroid = (0.75622392029951946, -1.5361880359774682) +description = Cedarburg town, WI +station = ('ketb', 0.002158910536504864) +zone = ('wiz060', 0.0012753205566329315) + +[fips5508925] +centroid = (0.80481655702879706, -1.5646022230927388) +description = Boulder Junction CDP, WI +station = ('kd25', 0.0028747440054486422) +zone = ('wiz005', 0.0018904348821441699) + +[fips5508927550] +centroid = (0.7587239124667835, -1.5349989431580846) +description = Fredonia village, WI +station = ('ketb', 0.0024279708961869933) +zone = ('wiz060', 0.001534098043741755) + +[fips5508927575] +centroid = (0.7594678765137387, -1.5357512149722792) +description = Fredonia town, WI +station = ('ketb', 0.0023558849082351164) +zone = ('wiz060', 0.0023349927536306203) + +[fips5508930000] +centroid = (0.75608832566993189, -1.5349756604658629) +description = Grafton village, WI +station = ('ketb', 0.0028950840691517599) +zone = ('wiz060', 0.0011029221666221261) + +[fips5508930025] +centroid = (0.75666044459873572, -1.5341081969210368) +description = Grafton town, WI +station = ('ketb', 0.003156055581067217) +zone = ('wiz060', 0.00086176567753708407) + +[fips5508951150] +centroid = (0.75421120660611951, -1.536128782049363) +description = Mequon city, WI +station = ('kmwc', 0.001701871212413789) +zone = ('wiz060', 0.00308192638303399) + +[fips5508956450] +centroid = (0.75800879871236393, -1.5365432628401265) +description = Newburg village, WI +station = ('ketb', 0.0011580568805895555) +zone = ('wiz060', 0.0013629768950323439) + +[fips5508964450] +centroid = (0.75719791874188735, -1.5338081399160339) +description = Port Washington city, WI +station = ('ketb', 0.0032054374738375363) +zone = ('wiz060', 0.00089767502587329701) + +[fips5508964475] +centroid = (0.75819821929608289, -1.5338379326863656) +description = Port Washington town, WI +station = ('ketb', 0.0031312780257337315) +zone = ('wiz060', 0.0013352268372141579) + +[fips5508971700] +centroid = (0.75727994921673103, -1.5349105422314711) +description = Saukville village, WI +station = ('ketb', 0.0024062781270856887) +zone = ('wiz060', 0.0001317798553440087) + +[fips5508971725] +centroid = (0.75779633978251859, -1.5356847004744858) +description = Saukville town, WI +station = ('ketb', 0.0017734390539523226) +zone = ('wiz060', 0.00076463317888294093) + +[fips5508979475] +centroid = (0.7546228425102024, -1.5354695013777147) +description = Thiensville village, WI +station = ('kmwc', 0.0022188214225006184) +zone = ('wiz060', 0.0025859766296396232) + +[fips5509025] +centroid = (0.7830054740725968, -1.553019694577729) +description = Bowler village, WI +station = ('kaig', 0.0052197836541417195) +zone = ('wiz031', 0.0029657894682902021) + +[fips5509050] +centroid = (0.78614505959754677, -1.6063749508632637) +description = Boyceville village, WI +station = ('klum', 0.0033690841944220545) +zone = ('wiz025', 0.0024279567560741935) + +[fips5509075] +centroid = (0.78458267575774654, -1.588944173090671) +description = Boyd village, WI +station = ('keau', 0.005687018114520501) +zone = ('wiz027', 0.0035895495632809896) + +[fips55091] +centroid = (0.77889569492304822, -1.6028211987068153) +description = Pepin County, WI +station = ('klum', 0.004639329294300513) +zone = ('wiz026', 0.0022125841958601958) + +[fips5509100800] +centroid = (0.7789377399047287, -1.6006468500713882) +description = Albany town, WI +station = ('klum', 0.0049778106890483453) +zone = ('wiz026', 0.0037111098704212054) + +[fips5509121225] +centroid = (0.77880525196120975, -1.6049819163207844) +description = Durand city, WI +station = ('klum', 0.0048446751374846709) +zone = ('wiz026', 0.00086954231032665961) + +[fips5509121250] +centroid = (0.77897603242851743, -1.6044681786554598) +description = Durand town, WI +station = ('klum', 0.004604518328429408) +zone = ('wiz026', 0.0012424238044661466) + +[fips5509127175] +centroid = (0.77755275133010116, -1.6069191445240356) +description = Frankfort town, WI +station = ('klum', 0.0064685936749752189) +zone = ('wiz026', 0.0010181692107646353) + +[fips5509144075] +centroid = (0.77889569492304822, -1.6028211987068153) +description = Lima town, WI +station = ('klum', 0.004639329294300513) +zone = ('wiz026', 0.0022125841958601958) + +[fips5509161925] +centroid = (0.77566714996612396, -1.6082940625488789) +description = Pepin village, WI +station = ('krgk', 0.0049308998692451618) +zone = ('mnz079', 0.0029447726238680753) + +[fips5509161950] +centroid = (0.77623790753811117, -1.6081868993328063) +description = Pepin town, WI +station = ('krgk', 0.0047256932505252945) +zone = ('wiz026', 0.0025694226674262306) + +[fips5509177475] +centroid = (0.77651211621689198, -1.6104535584323716) +description = Stockholm village, WI +station = ('krgk', 0.0031767908866260912) +zone = ('mnz079', 0.0036446667775035871) + +[fips5509177500] +centroid = (0.77674698517433283, -1.6101972568317162) +description = Stockholm town, WI +station = ('krgk', 0.0032149527386615535) +zone = ('mnz079', 0.003856842352090298) + +[fips5509184025] +centroid = (0.77902474456794057, -1.6065289936230447) +description = Waterville town, WI +station = ('klum', 0.0050131792923644117) +zone = ('wiz026', 0.0010697406105091218) + +[fips5509184100] +centroid = (0.77956071772793556, -1.6052382353747323) +description = Waubeek town, WI +station = ('klum', 0.0041670546364810613) +zone = ('wiz026', 0.0014843228047883336) + +[fips55093] +centroid = (0.78060438971404311, -1.613142883916892) +description = Pierce County, WI +station = ('krgk', 0.0024714941196471406) +zone = ('wiz024', 0.00011108492362799978) + +[fips5509300] +centroid = (0.76332709619587091, -1.5495402236342455) +description = Brandon village, WI +station = ('kfld', 0.003806131189245499) +zone = ('wiz047', 0.0035015156601996282) + +[fips5509305325] +centroid = (0.77820234542440092, -1.6136761692698389) +description = Bay City village, WI +station = ('krgk', 0.00036665066998633089) +zone = ('wiz024', 0.0023412789132588197) + +[fips5509315575] +centroid = (0.78219593800564424, -1.6183404395227461) +description = Clifton town, WI +station = ('k21d', 0.0035604874655027494) +zone = ('mnz063', 0.00434540352671124) + +[fips5509320150] +centroid = (0.77936948200179446, -1.6165383347101845) +description = Diamond Bluff town, WI +station = ('krgk', 0.0020149593353677346) +zone = ('wiz024', 0.0027110746052757804) + +[fips5509323525] +centroid = (0.78079360085825189, -1.6140848381141935) +description = Ellsworth village, WI +station = ('krgk', 0.0025474788311831099) +zone = ('wiz024', 0.0007734736220536331) + +[fips5509323550] +centroid = (0.78060438971404311, -1.613142883916892) +description = Ellsworth town, WI +station = ('krgk', 0.0024714941196471406) +zone = ('wiz024', 0.00011108492362799978) + +[fips5509323700] +centroid = (0.78155976549329231, -1.6083026495687989) +description = Elmwood village, WI +station = ('klum', 0.003992678953805711) +zone = ('wiz026', 0.0038970366041797626) + +[fips5509323775] +centroid = (0.78077140027016645, -1.6112415745896469) +description = El Paso town, WI +station = ('krgk', 0.0032804076456145232) +zone = ('wiz024', 0.0013298222722073697) + +[fips5509329150] +centroid = (0.78207088516473888, -1.6110740404347481) +description = Gilman town, WI +station = ('krgk', 0.004417843355144899) +zone = ('wiz024', 0.0021149604793628913) + +[fips5509333050] +centroid = (0.77913944760638165, -1.6134075107380794) +description = Hartland town, WI +station = ('krgk', 0.0010507945799579554) +zone = ('wiz024', 0.001385117379844608) + +[fips5509337350] +centroid = (0.77810005167694141, -1.6128268396959409) +description = Isabelle town, WI +station = ('krgk', 0.000979914903139068) +zone = ('wiz024', 0.0024106910828882197) + +[fips5509348175] +centroid = (0.77785684004567612, -1.6111017737165623) +description = Maiden Rock village, WI +station = ('krgk', 0.0022320519132283511) +zone = ('wiz024', 0.0029967003014926361) + +[fips5509348200] +centroid = (0.77787246074248151, -1.6099519158987634) +description = Maiden Rock town, WI +station = ('krgk', 0.0030398400903079931) +zone = ('wiz026', 0.0030168068348680075) + +[fips5509349775] +centroid = (0.78219258697348037, -1.613190479045594) +description = Martell town, WI +station = ('krgk', 0.0040085159747960232) +zone = ('wiz024', 0.0016903099839385598) + +[fips5509359025] +centroid = (0.78066936832209477, -1.617581867069952) +description = Oak Grove town, WI +station = ('krgk', 0.0034201709770797836) +zone = ('wiz024', 0.0032062552100336444) + +[fips5509363600] +centroid = (0.7790378868972081, -1.6090487952773189) +description = Plum City village, WI +station = ('krgk', 0.0037423177329951023) +zone = ('wiz026', 0.0025347509933898887) + +[fips5509365375] +centroid = (0.78108208633031395, -1.6194829669576867) +description = Prescott city, WI +station = ('ksgs', 0.0035213861473643191) +zone = ('mnz070', 0.003703778106340554) + +[fips5509368275] +centroid = (0.78278336347198796, -1.6165517562921323) +description = River Falls city, WI +station = ('k21d', 0.0038475759541728464) +zone = ('wiz024', 0.0033590113862722892) + +[fips5509368300] +centroid = (0.78218743825218706, -1.6157203861562373) +description = River Falls town, WI +station = ('krgk', 0.0040881973480724502) +zone = ('wiz024', 0.0025219019040940193) + +[fips5509368775] +centroid = (0.78053490815652127, -1.6091660814030528) +description = Rock Elm town, WI +station = ('krgk', 0.0042415519986375577) +zone = ('wiz026', 0.0034368038002635503) + +[fips5509371150] +centroid = (0.77914667326948495, -1.6110436018925933) +description = Salem town, WI +station = ('krgk', 0.0024116982098697157) +zone = ('wiz024', 0.0019823472180520423) + +[fips5509376100] +centroid = (0.78211298250629702, -1.6091397269313479) +description = Spring Lake town, WI +station = ('klum', 0.0043077277172785611) +zone = ('wiz024', 0.0032241617329061621) + +[fips5509376300] +centroid = (0.7826336316754593, -1.610080633931098) +description = Spring Valley village, WI +station = ('klum', 0.0048199361182246978) +zone = ('wiz024', 0.0030086895655272229) + +[fips5509380550] +centroid = (0.77921776052991865, -1.6149936136024143) +description = Trenton town, WI +station = ('krgk', 0.0011276471305514005) +zone = ('wiz024', 0.0018750059216922044) + +[fips5509380700] +centroid = (0.7807713479102889, -1.6155478254530926) +description = Trimbelle town, WI +station = ('krgk', 0.0027033561197574783) +zone = ('wiz024', 0.0017769132163480109) + +[fips5509381600] +centroid = (0.77918173693415749, -1.6092853048442568) +description = Union town, WI +station = ('krgk', 0.0036122094101653196) +zone = ('wiz026', 0.0027446429924349175) + +[fips5509465] +centroid = (0.76685494766621953, -1.5936146218091303) +description = Brice Prairie CDP, WI +station = ('klse', 0.001190054242714031) +zone = ('wiz041', 0.0024761473363561861) + +[fips55095] +centroid = (0.79356682789555733, -1.6136119411533656) +description = Polk County, WI +station = ('koeo', 0.004021161538023882) +zone = ('wiz014', 0.00018463789065632793) + +[fips5509500950] +centroid = (0.7897988889333043, -1.6145782252404397) +description = Alden town, WI +station = ('krnh', 0.0018478768483786846) +zone = ('wiz014', 0.003743836806410918) + +[fips5509501725] +centroid = (0.79074644563750462, -1.6120576730945873) +description = Amery city, WI +station = ('krnh', 0.0034909107389741296) +zone = ('wiz014', 0.0028658489889152473) + +[fips5509502350] +centroid = (0.79297496929291356, -1.6115593815931426) +description = Apple River town, WI +station = ('krnh', 0.0055732841924787712) +zone = ('wiz014', 0.0013807642365329445) + +[fips5509504475] +centroid = (0.79356682789555733, -1.6136119411533656) +description = Balsam Lake village, WI +station = ('koeo', 0.004021161538023882) +zone = ('wiz014', 0.00018463789065632793) + +[fips5509504500] +centroid = (0.79268367384075566, -1.6140729698752798) +description = Balsam Lake town, WI +station = ('koeo', 0.0032040624453799917) +zone = ('wiz014', 0.00089858396655174847) + +[fips5509505825] +centroid = (0.79281439900173012, -1.6094441996193583) +description = Beaver town, WI +station = ('kube', 0.0030430631592784953) +zone = ('wiz014', 0.0028521982138344135) + +[fips5509507700] +centroid = (0.78983316719981345, -1.6114942808120434) +description = Black Brook town, WI +station = ('krnh', 0.0031369838892361572) +zone = ('wiz014', 0.0038594737788306657) + +[fips5509508750] +centroid = (0.79588237366747072, -1.6115546342975773) +description = Bone Lake town, WI +station = ('krzn', 0.0039024244918125614) +zone = ('wiz014', 0.0027558089128173853) + +[fips5509513850] +centroid = (0.79322931612480674, -1.6154399990119046) +description = Centuria village, WI +station = ('koeo', 0.0029326362734037486) +zone = ('wiz014', 0.0014433716883744735) + +[fips5509514837] +centroid = (0.79732544679960471, -1.6117246642733065) +description = Clam Falls town, WI +station = ('krzn', 0.0024558046204035738) +zone = ('wiz006', 0.0031417193650918546) + +[fips5509515100] +centroid = (0.79111327893968875, -1.6085743973333344) +description = Clayton village, WI +station = ('kube', 0.0036934294106997314) +zone = ('wiz015', 0.0042248100449392111) + +[fips5509515125] +centroid = (0.79134903801504819, -1.6097010422720819) +description = Clayton town, WI +station = ('kube', 0.004035178768589864) +zone = ('wiz014', 0.0033449744648167152) + +[fips5509515250] +centroid = (0.78978742212011877, -1.6103998371979953) +description = Clear Lake village, WI +station = ('krnh', 0.0037657402337653058) +zone = ('wiz014', 0.0042293327130417877) + +[fips5509515275] +centroid = (0.78974385870198893, -1.6094602217418914) +description = Clear Lake town, WI +station = ('krnh', 0.0043410334282485835) +zone = ('wiz014', 0.00462977930339919) + +[fips5509520850] +centroid = (0.79173678036167128, -1.6167800802648782) +description = Dresser village, WI +station = ('koeo', 0.001169476185143081) +zone = ('wiz014', 0.0029234524885277122) + +[fips5509524450] +centroid = (0.7944446936027254, -1.6163264691922847) +description = Eureka town, WI +station = ('koeo', 0.0037934123534762955) +zone = ('wiz014', 0.0022752076655447409) + +[fips5509525350] +centroid = (0.78994289604988632, -1.6176535477423313) +description = Farmington town, WI +station = ('koeo', 0.00084404045841304798) +zone = ('mnz063', 0.004586543402522748) + +[fips5509527500] +centroid = (0.79678997978509292, -1.6137774681796246) +description = Frederic village, WI +station = ('krzn', 0.0031649342203375194) +zone = ('wiz014', 0.0033489397631753272) + +[fips5509528350] +centroid = (0.79146808692332671, -1.6142264890362854) +description = Garfield town, WI +station = ('koeo', 0.002566863905522822) +zone = ('wiz014', 0.0020648474206477075) + +[fips5509528725] +centroid = (0.7943967319548807, -1.6115713894583965) +description = Georgetown town, WI +station = ('kube', 0.0042437335227910739) +zone = ('wiz014', 0.0015968196096473306) + +[fips5509538400] +centroid = (0.79425417346157778, -1.6096564491096934) +description = Johnstown town, WI +station = ('kube', 0.0028961018114652968) +zone = ('wiz014', 0.002749280175474593) + +[fips5509541900] +centroid = (0.79573618488932374, -1.6161797219087772) +description = Laketown town, WI +station = ('krzn', 0.0048871983315076258) +zone = ('wiz014', 0.0029992345196915779) + +[fips5509544475] +centroid = (0.79136987724631702, -1.6118285462703852) +description = Lincoln town, WI +station = ('krnh', 0.0040900519823367596) +zone = ('wiz014', 0.0023578606943609648) + +[fips5509545775] +centroid = (0.79725252694345639, -1.609532373653169) +description = Lorain town, WI +station = ('krzn', 0.0031233073447992669) +zone = ('wiz006', 0.003675763235111003) + +[fips5509546200] +centroid = (0.79546440221820314, -1.6137751119851345) +description = Luck village, WI +station = ('krzn', 0.0044318825061492265) +zone = ('wiz014', 0.0020297622623827068) + +[fips5509546225] +centroid = (0.7959657829524236, -1.6137006213326595) +description = Luck town, WI +station = ('krzn', 0.0039338476540281371) +zone = ('wiz014', 0.0025230795123056889) + +[fips5509546900] +centroid = (0.79570691571776775, -1.6096672003378856) +description = McKinley town, WI +station = ('kube', 0.0033022629849628134) +zone = ('wiz014', 0.0034572436242965472) + +[fips5509552075] +centroid = (0.79449188730569931, -1.6143936566720414) +description = Milltown village, WI +station = ('koeo', 0.0043911055410178193) +zone = ('wiz014', 0.0012497241952968221) + +[fips5509552100] +centroid = (0.79419982390867061, -1.613679258502615) +description = Milltown town, WI +station = ('koeo', 0.0044514483244415693) +zone = ('wiz014', 0.00077269736865458617) + +[fips5509560450] +centroid = (0.79097065063321581, -1.617848466113194) +description = Osceola village, WI +station = ('koeo', 0.0001997432512808787) +zone = ('mnz053', 0.0041230109118821851) + +[fips5509560475] +centroid = (0.79137375187725645, -1.6165386314161572) +description = Osceola town, WI +station = ('koeo', 0.0010331965605154235) +zone = ('wiz014', 0.0030250324009596418) + +[fips5509570550] +centroid = (0.79255200620198529, -1.6166260724116821) +description = St. Croix Falls city, WI +station = ('koeo', 0.0019347306730341514) +zone = ('wiz014', 0.002431350451029293) + +[fips5509570575] +centroid = (0.79299888030366583, -1.6158757902728349) +description = St. Croix Falls town, WI +station = ('koeo', 0.0025747377480079508) +zone = ('wiz014', 0.0017901875753448251) + +[fips5509577050] +centroid = (0.7960364687871293, -1.6188939706950161) +description = Sterling town, WI +station = ('kros', 0.0028598493253906036) +zone = ('mnz053', 0.0026388001083938739) + +[fips5509581075] +centroid = (0.79235417313127166, -1.6084768159748555) +description = Turtle Lake village, WI +station = ('kube', 0.002722797099476862) +zone = ('wiz015', 0.0038302273266648079) + +[fips5509586350] +centroid = (0.79752998193464586, -1.6137180397185942) +description = West Sweden town, WI +station = ('krzn', 0.002465969970242946) +zone = ('wiz006', 0.0031305800904250793) + +[fips55097] +centroid = (0.77625693162695797, -1.5620359956803613) +description = Portage County, WI +station = ('kste', 0.001265170200119761) +zone = ('wiz036', 4.2931303108192984e-05) + +[fips5509700725] +centroid = (0.7790040449630119, -1.5581719937960787) +description = Alban town, WI +station = ('kste', 0.003511315824171041) +zone = ('wiz036', 0.0039227803027619022) + +[fips5509701400] +centroid = (0.772500442024598, -1.5604751477303029) +description = Almond village, WI +station = ('ky50', 0.0040491928260771399) +zone = ('wiz045', 0.0033116852904027713) + +[fips5509701425] +centroid = (0.77308839108971739, -1.5607503163401724) +description = Almond town, WI +station = ('kste', 0.0045635256077822062) +zone = ('wiz036', 0.003307131914571361) + +[fips5509701750] +centroid = (0.77576968805967872, -1.5582593300718486) +description = Amherst village, WI +station = ('kste', 0.0035248643668478732) +zone = ('wiz036', 0.0027804455144601428) + +[fips5509701775] +centroid = (0.77600658159905189, -1.5585093484871966) +description = Amherst town, WI +station = ('kste', 0.0032568991020706589) +zone = ('wiz036', 0.0025712428043517667) + +[fips5509701800] +centroid = (0.77611960912141098, -1.5588979460451533) +description = Amherst Junction village, WI +station = ('kste', 0.0029583654865072708) +zone = ('wiz036', 0.002285875300704837) + +[fips5509706475] +centroid = (0.77294534390422387, -1.5585235031074303) +description = Belmont town, WI +station = ('kpcz', 0.0036110172730855336) +zone = ('wiz045', 0.0031007906450685242) + +[fips5509710925] +centroid = (0.77442440572553406, -1.5613574116671862) +description = Buena Vista town, WI +station = ('kste', 0.0031591703884445888) +zone = ('wiz036', 0.0019027800475382042) + +[fips5509712725] +centroid = (0.77753185973895478, -1.5662080481776213) +description = Carson town, WI +station = ('kste', 0.0025737853336221302) +zone = ('wiz036', 0.0031992608690226852) + +[fips5509719975] +centroid = (0.77914583551144401, -1.5634075452197487) +description = Dewey town, WI +station = ('kste', 0.001784566916548561) +zone = ('wiz036', 0.0030404099667006926) + +[fips5509722450] +centroid = (0.77938525977823259, -1.5664381000263266) +description = Eau Pleine town, WI +station = ('kcwa', 0.0024605911186060866) +zone = ('wiz030', 0.0042392767893676044) + +[fips5509725] +centroid = (0.77101687725381773, -1.5370900046816065) +description = Brillion city, WI +station = ('kgrb', 0.0054239807818292005) +zone = ('wiz049', 0.0024908892022791097) + +[fips5509730350] +centroid = (0.77368916832483881, -1.5648517004560187) +description = Grant town, WI +station = ('kisw', 0.0022676180226078551) +zone = ('wiz036', 0.0032323181526556673) + +[fips5509736350] +centroid = (0.77779657382660472, -1.5631002974582275) +description = Hull town, WI +station = ('kste', 0.00049337100062082451) +zone = ('wiz036', 0.0017019493290438461) + +[fips5509738650] +centroid = (0.77833792260069579, -1.566778823202901) +description = Junction City village, WI +station = ('kste', 0.0031058603441652915) +zone = ('wiz035', 0.004174053892952766) + +[fips5509742225] +centroid = (0.77460319725410831, -1.5581935311590482) +description = Lanark town, WI +station = ('kste', 0.0042456615540358324) +zone = ('wiz036', 0.0032382941667099823) + +[fips5509744800] +centroid = (0.7764445196149623, -1.5649583924331931) +description = Linwood town, WI +station = ('kste', 0.0019640331103762182) +zone = ('wiz036', 0.0020513436389616052) + +[fips5509751875] +centroid = (0.77856706687819011, -1.5680645025430902) +description = Milladore village, WI +station = ('kcwa', 0.0037565650982644048) +zone = ('wiz035', 0.00363807088285048) + +[fips5509756000] +centroid = (0.77650078903004649, -1.5586410859391373) +description = Nelsonville village, WI +station = ('kste', 0.00297910784667636) +zone = ('wiz036', 0.0024772926159291383) + +[fips5509756850] +centroid = (0.77755416504679531, -1.5582698893138229) +description = New Hope town, WI +station = ('kste', 0.0030861179997427445) +zone = ('wiz036', 0.0030228020540849368) + +[fips5509761325] +centroid = (0.77702145565250147, -1.5628771571133602) +description = Park Ridge village, WI +station = ('kste', 0.00047873697334027107) +zone = ('wiz036', 0.00094954740857218186) + +[fips5509762825] +centroid = (0.77303069050464635, -1.5627487532402911) +description = Pine Grove town, WI +station = ('kste', 0.0044275320784444138) +zone = ('wiz036', 0.0032555590877259739) + +[fips5509763525] +centroid = (0.77600864108756928, -1.5627323995051996) +description = Plover village, WI +station = ('kste', 0.0014514368410919235) +zone = ('wiz036', 0.00051563585049411163) + +[fips5509763550] +centroid = (0.77551127461062841, -1.5635420053853222) +description = Plover town, WI +station = ('kste', 0.0020588615969456192) +zone = ('wiz036', 0.0012709002702346824) + +[fips5509769575] +centroid = (0.77894353439784536, -1.5586695871658223) +description = Rosholt village, WI +station = ('kste', 0.0031682526952150998) +zone = ('wiz036', 0.0036334755220576503) + +[fips5509772850] +centroid = (0.77888112142379395, -1.5605349601637686) +description = Sharon town, WI +station = ('kste', 0.0020463288663473693) +zone = ('wiz036', 0.002854155901775735) + +[fips5509777200] +centroid = (0.77711626193746974, -1.5630072365025114) +description = Stevens Point city, WI +station = ('kste', 0.0004484276932871466) +zone = ('wiz036', 0.0010809192467116759) + +[fips5509777537] +centroid = (0.77646535884623114, -1.5606568714120204) +description = Stockton town, WI +station = ('kste', 0.0017027078450694054) +zone = ('wiz036', 0.0010484803516844718) + +[fips5509786975] +centroid = (0.77649794414336581, -1.5631174191381896) +description = Whiting village, WI +station = ('kste', 0.0010279728735323667) +zone = ('wiz036', 0.00076901343488248661) + +[fips5509800] +centroid = (0.74286668864120398, -1.5365723225721724) +description = Bristol village, WI +station = ('kenw', 0.0015039876141366218) +zone = ('wiz072', 0.0002394226490984014) + +[fips55099] +centroid = (0.79725020565555116, -1.5770734034496943) +description = Price County, WI +station = ('kpbh', 0.0006127200382535147) +zone = ('wiz009', 3.1505509290750025e-05) + +[fips5509913175] +centroid = (0.79477236171649479, -1.5801079027003815) +description = Catawba village, WI +station = ('kpbh', 0.0032771454021972009) +zone = ('wiz009', 0.0032666661396635582) + +[fips5509913200] +centroid = (0.79365446087729996, -1.5790387838137798) +description = Catawba town, WI +station = ('kpbh', 0.0040581438224892262) +zone = ('wiz009', 0.0038640278286878457) + +[fips5509922950] +centroid = (0.80176106146720816, -1.5760880952737732) +description = Eisenstein town, WI +station = ('kpbh', 0.0043095749103472343) +zone = ('wiz009', 0.0045431990535617891) + +[fips5509923200] +centroid = (0.79717896131548482, -1.5797770231807886) +description = Elk town, WI +station = ('kpbh', 0.0014633300703966172) +zone = ('wiz009', 0.0018700471027140132) + +[fips5509923975] +centroid = (0.79814800302277711, -1.5734217383222091) +description = Emery town, WI +station = ('kpbh', 0.0030876696153483668) +zone = ('wiz009', 0.0027161292865231388) + +[fips5509925] +centroid = (0.74380813669302226, -1.5598926440924499) +description = Brodhead city, WI +station = ('keft', 0.0027689963919796359) +zone = ('wiz068', 0.0031134194947180357) + +[fips5509925775] +centroid = (0.80038338582214641, -1.5747065973576497) +description = Fifield town, WI +station = ('kpbh', 0.0034998221551897184) +zone = ('wiz009', 0.0035310858838838726) + +[fips5509926050] +centroid = (0.79876174805424083, -1.5808151973797524) +description = Flambeau town, WI +station = ('kpbh', 0.0024102527893140324) +zone = ('wiz009', 0.0029879954710490242) + +[fips5509928750] +centroid = (0.79587633482825881, -1.5817050884054669) +description = Georgetown town, WI +station = ('kpbh', 0.0032499170268664155) +zone = ('wiz009', 0.0035071904577907423) + +[fips5509931925] +centroid = (0.79596501500755268, -1.5755631700479436) +description = Hackett town, WI +station = ('kpbh', 0.0022627591907766523) +zone = ('wiz009', 0.0016947529574131163) + +[fips5509932675] +centroid = (0.79554175521065151, -1.5797390797228503) +description = Harmony town, WI +station = ('kpbh', 0.0024861390867363092) +zone = ('wiz009', 0.002528646502295076) + +[fips5509934725] +centroid = (0.79260946244096087, -1.574941344142043) +description = Hill town, WI +station = ('kpbh', 0.0053855559756137679) +zone = ('wiz017', 0.0047818614532583121) + +[fips5509939175] +centroid = (0.79464882731203867, -1.5810387915102253) +description = Kennan village, WI +station = ('kpbh', 0.0037422364877937515) +zone = ('wiz009', 0.0038034511683903952) + +[fips5509939200] +centroid = (0.79390934876126118, -1.581544779913671) +description = Kennan town, WI +station = ('kpbh', 0.0045479522315448719) +zone = ('wiz009', 0.0045799758133716877) + +[fips5509940175] +centroid = (0.79493094233233108, -1.5727099232400756) +description = Knox town, WI +station = ('kpbh', 0.0044461512932138575) +zone = ('wiz009', 0.0038644631815288604) + +[fips5509941150] +centroid = (0.80146089974245016, -1.5806227224698424) +description = Lake town, WI +station = ('kpbh', 0.0043266751676327058) +zone = ('wiz009', 0.0048531643684784128) + +[fips5509959525] +centroid = (0.79299486604638636, -1.5776124134825877) +description = Ogema town, WI +station = ('kpbh', 0.0046220497490132512) +zone = ('wiz017', 0.0041347188202723465) + +[fips5509961200] +centroid = (0.80178230212420487, -1.5785151501315966) +description = Park Falls city, WI +station = ('kpbh', 0.0041984144790875614) +zone = ('wiz009', 0.0046149703339831809) + +[fips5509962450] +centroid = (0.79751621128684769, -1.5778003854430274) +description = Phillips city, WI +station = ('kpbh', 0.00010051977869513588) +zone = ('wiz009', 0.00054374680093631673) + +[fips5509965325] +centroid = (0.79484505467984046, -1.5759068253776611) +description = Prentice village, WI +station = ('kpbh', 0.0030638632323753668) +zone = ('wiz009', 0.0025686674682852163) + +[fips5509965350] +centroid = (0.79465980543303383, -1.5751595452051272) +description = Prentice town, WI +station = ('kpbh', 0.0034770021301854734) +zone = ('wiz009', 0.0029463845438770114) + +[fips5509975] +centroid = (0.78585125087126595, -1.5648343693365465) +description = Brokaw village, WI +station = ('kauw', 0.0016967761811924685) +zone = ('wiz030', 0.0025510142192235741) + +[fips5509975525] +centroid = (0.7928074874978922, -1.5724774628370026) +description = Spirit town, WI +station = ('ktkv', 0.0036435900937357825) +zone = ('wiz009', 0.0055172411207326444) + +[fips5509989100] +centroid = (0.79818748237045722, -1.5763769472649782) +description = Worcester town, WI +station = ('kpbh', 0.0011329815251053129) +zone = ('wiz009', 0.001045620981402299) + +[fips5510025] +centroid = (0.75161417413244447, -1.5379456348941043) +description = Brookfield city, WI +station = ('kmwc', 0.0014119423730680899) +zone = ('wiz066', 0.0021708749046847509) + +[fips5510075] +centroid = (0.74792845763125293, -1.5598396035364817) +description = Brooklyn village, WI +station = ('kmsn', 0.0048984507294109487) +zone = ('wiz063', 0.0037854957789226723) + +[fips55101] +centroid = (0.74619937739459463, -1.5256739107640667) +description = Racine County, WI +station = ('krac', 0.0051558700972339794) +zone = ('wiz066', 0.0083273841948083085) + +[fips5510100000] +centroid = (0.74619937739459463, -1.5256739107640667) +description = County subdivisions not defined, WI +station = ('krac', 0.0051558700972339794) +zone = ('wiz066', 0.0083273841948083085) + +[fips5510111200] +centroid = (0.74482414521048568, -1.5406356585103256) +description = Burlington city, WI +station = ('kbuu', 0.00049818870375203505) +zone = ('wiz071', 0.0030543778421559553) + +[fips5510111225] +centroid = (0.74444245915636709, -1.5400629112629909) +description = Burlington town, WI +station = ('kbuu', 0.0010626861195417799) +zone = ('wiz071', 0.002877235889624615) + +[fips5510111950] +centroid = (0.74696077728077714, -1.5336583383063354) +description = Caledonia village, WI +station = ('krac', 0.00089358608947637112) +zone = ('wiz071', 0.0025010732813941072) + +[fips5510120625] +centroid = (0.74560634942135207, -1.5379950975251058) +description = Dover town, WI +station = ('kenw', 0.0031894164108875146) +zone = ('wiz071', 0.00096838821953605333) + +[fips5510123725] +centroid = (0.74510952399647934, -1.5328254148274061) +description = Elmwood Park village, WI +station = ('krac', 0.0013133932551395466) +zone = ('wiz071', 0.0031155086372951241) + +[fips5510154875] +centroid = (0.74540752151296485, -1.5338723854857998) +description = Mount Pleasant village, WI +station = ('krac', 0.0013332578930698202) +zone = ('wiz071', 0.0022917315675852847) + +[fips5510157700] +centroid = (0.74639366744692659, -1.5320589011265151) +description = North Bay village, WI +station = ('krac', 0.00046398990260796417) +zone = ('wiz071', 0.0035321262840714803) + +[fips5510158600] +centroid = (0.7469456103695773, -1.5380322032250031) +description = Norway town, WI +station = ('kbuu', 0.0029800331042125171) +zone = ('wiz071', 0.0012192557410986649) + +[fips5510166000] +centroid = (0.74574923952721284, -1.5325227572818176) +description = Racine city, WI +station = ('krac', 0.00068106508171122374) +zone = ('wiz071', 0.0031972567498073728) + +[fips5510166375] +centroid = (0.74698620672797877, -1.5360790576189738) +description = Raymond town, WI +station = ('krac', 0.0025511799468934393) +zone = ('wiz071', 0.0010620744489669171) + +[fips5510168550] +centroid = (0.74583003081828769, -1.5402587022984797) +description = Rochester village, WI +station = ('kbuu', 0.0010164728792406352) +zone = ('wiz071', 0.0025157091883963841) + +[fips5510177925] +centroid = (0.74525995392470867, -1.5341714651064216) +description = Sturtevant village, WI +station = ('krac', 0.0015899261262956365) +zone = ('wiz071', 0.0021358660531586751) + +[fips5510181775] +centroid = (0.74502740625517294, -1.5367629823396602) +description = Union Grove village, WI +station = ('kenw', 0.0021322345773659222) +zone = ('wiz071', 0.0010626945803825958) + +[fips5510183825] +centroid = (0.74640789188033041, -1.5396730047080953) +description = Waterford village, WI +station = ('kbuu', 0.0017339333573078979) +zone = ('wiz071', 0.0020962591355364402) + +[fips5510183850] +centroid = (0.74690180260535222, -1.5402598193092012) +description = Waterford town, WI +station = ('kbuu', 0.001940350163258461) +zone = ('wiz071', 0.0026310030130393476) + +[fips5510187700] +centroid = (0.74665921929261758, -1.5319035144632103) +description = Wind Point village, WI +station = ('krac', 0.00062522345326225493) +zone = ('wiz066', 0.0046770773939931983) + +[fips5510189575] +centroid = (0.74560636687464454, -1.5359139843783203) +description = Yorkville town, WI +station = ('kenw', 0.0022708239800431048) +zone = ('wiz071', 0.00084035136550906966) + +[fips55103] +centroid = (0.75705748955027186, -1.5784006041727883) +description = Richland County, WI +station = ('klnr', 0.0042460526170573819) +zone = ('wiz055', 7.9257937284057662e-05) + +[fips5510300675] +centroid = (0.75635365062282012, -1.581378484942541) +description = Akan town, WI +station = ('kovs', 0.00338864832037558) +zone = ('wiz055', 0.0023485158866129018) + +[fips5510308175] +centroid = (0.75939162307871899, -1.5793598022230992) +description = Bloom town, WI +station = ('klnr', 0.006434665548164035) +zone = ('wiz055', 0.0024693291124174071) + +[fips5510308600] +centroid = (0.75624985589220406, -1.5800056089529222) +description = Boaz village, WI +station = ('kovs', 0.0037120647000506461) +zone = ('wiz055', 0.0014789059816760516) + +[fips5510310950] +centroid = (0.75464895263581222, -1.5750771831177257) +description = Buena Vista town, WI +station = ('klnr', 0.00087278543089952456) +zone = ('wiz055', 0.0033504167661924877) + +[fips5510313300] +centroid = (0.75965895516024695, -1.5743574966006659) +description = Cazenovia village, WI +station = ('klnr', 0.0053922334384808885) +zone = ('wiz056', 0.0036654438393328216) + +[fips5510319000] +centroid = (0.75635506433951427, -1.5793149647146156) +description = Dayton town, WI +station = ('kovs', 0.0040860215265712888) +zone = ('wiz055', 0.0010156316384116722) + +[fips5510321400] +centroid = (0.75476250375694698, -1.5793444084190966) +description = Eagle town, WI +station = ('kovs', 0.0029660737137306619) +zone = ('wiz055', 0.0024093434656819027) + +[fips5510326475] +centroid = (0.75939764446463842, -1.5817089804896987) +description = Forest town, WI +station = ('ky51', 0.0036873725920467254) +zone = ('wiz055', 0.0034173839098217852) + +[fips5510333925] +centroid = (0.75942569190571796, -1.5773431440855901) +description = Henrietta town, WI +station = ('klnr', 0.0056982371034812731) +zone = ('wiz055', 0.0024765157435655866) + +[fips5510337500] +centroid = (0.75636665332574737, -1.5751818854195527) +description = Ithaca town, WI +station = ('klnr', 0.0022645471681087843) +zone = ('wiz055', 0.0023618622305256946) + +[fips5510345575] +centroid = (0.753745971640708, -1.574305171629691) +description = Lone Rock village, WI +station = ('klnr', 0.00057328070131610449) +zone = ('wiz062', 0.0033517564898205027) + +[fips5510349600] +centroid = (0.75787439090666775, -1.5793374794619663) +description = Marshall town, WI +station = ('klnr', 0.005298148558493491) +zone = ('wiz055', 0.0011229347208731011) + +[fips5510360350] +centroid = (0.75480662568043733, -1.5774814963353956) +description = Orion town, WI +station = ('klnr', 0.0025948510606610899) +zone = ('wiz055', 0.0023168261746824999) + +[fips5510367575] +centroid = (0.75635729836095678, -1.5772296278710403) +description = Richland town, WI +station = ('klnr', 0.0031441976042636522) +zone = ('wiz055', 0.001035858598136674) + +[fips5510367625] +centroid = (0.75640238021553585, -1.5774887394517914) +description = Richland Center city, WI +station = ('klnr', 0.0033165438875259199) +zone = ('wiz055', 0.00087012793016603984) + +[fips5510367775] +centroid = (0.75477768812143931, -1.5815167324725914) +description = Richwood town, WI +station = ('kovs', 0.0018856193387735054) +zone = ('wiz055', 0.0032640549600038348) + +[fips5510368675] +centroid = (0.75775443442717827, -1.5772420022554368) +description = Rockbridge town, WI +station = ('klnr', 0.0042067629844741656) +zone = ('wiz055', 0.0010407134659109699) + +[fips5510375] +centroid = (0.75353387923000559, -1.5354534094420114) +description = Brown Deer village, WI +station = ('kmwc', 0.0012506010987279198) +zone = ('wiz066', 0.0029202992461756323) + +[fips5510378825] +centroid = (0.75774755782992542, -1.5814953696425471) +description = Sylvan town, WI +station = ('kovs', 0.004723266746206419) +zone = ('wiz055', 0.0024304229117221988) + +[fips5510382900] +centroid = (0.75937252917670206, -1.5824306566821056) +description = Viola village, WI +station = ('ky51', 0.003209509461923726) +zone = ('wiz053', 0.0025902348438626168) + +[fips5510385675] +centroid = (0.75940385783677544, -1.575038628794549) +description = Westford town, WI +station = ('klnr', 0.0051864124482781798) +zone = ('wiz055', 0.003337072045163432) + +[fips5510387250] +centroid = (0.75776501112244532, -1.5753041980935325) +description = Willow town, WI +station = ('klnr', 0.0036192639252039496) +zone = ('wiz055', 0.0022869957358804915) + +[fips5510389625] +centroid = (0.75985448439634784, -1.5782449033502177) +description = Yuba village, WI +station = ('klnr', 0.0063787835495413107) +zone = ('wiz055', 0.0028076621041012691) + +[fips5510425] +centroid = (0.74509809208987876, -1.539894905869194) +description = Browns Lake CDP, WI +station = ('kbuu', 0.00096529207110728518) +zone = ('wiz071', 0.0024453760117466678) + +[fips5510450] +centroid = (0.76122849484998045, -1.5445337815814848) +description = Brownsville village, WI +station = ('kfld', 0.0026482269521887541) +zone = ('wiz051', 0.0024175307633667021) + +[fips5510475] +centroid = (0.74313991993560369, -1.5671200001650807) +description = Browntown village, WI +station = ('keft', 0.0026278524103860064) +zone = ('wiz068', 0.0029828163334267165) + +[fips55105] +centroid = (0.74473078754879651, -1.554654108155759) +description = Rock County, WI +station = ('kjvl', 0.0010733203714042492) +zone = ('wiz069', 5.0297434328498822e-05) + +[fips5510500] +centroid = (0.79339622196117499, -1.5930179984576285) +description = Bruce village, WI +station = ('krcx', 0.003406753263510275) +zone = ('wiz016', 0.0017399973859515956) + +[fips5510504100] +centroid = (0.74244362083052051, -1.5584641270062776) +description = Avon town, WI +station = ('kjvl', 0.0036077191074935368) +zone = ('wiz069', 0.003667792043428974) + +[fips5510506500] +centroid = (0.74217518919156378, -1.5536512594208556) +description = Beloit city, WI +station = ('kjvl', 0.0016383931090763089) +zone = ('wiz069', 0.0026692779123496276) + +[fips5510506525] +centroid = (0.74268627395642528, -1.5546222558969101) +description = Beloit town, WI +station = ('kjvl', 0.0012274539958266081) +zone = ('wiz069', 0.0020667763646790849) + +[fips5510509175] +centroid = (0.74388610055070881, -1.5503395495250738) +description = Bradford town, WI +station = ('kjvl', 0.0026396578300905906) +zone = ('wiz069', 0.0032462656597307192) + +[fips5510509925] +centroid = (0.74397458874378497, -1.5596127281870151) +description = Brodhead city, WI +station = ('keft', 0.002981412473639697) +zone = ('wiz068', 0.0032551353079685358) + +[fips5510513625] +centroid = (0.74552648315478076, -1.5565745637448984) +description = Center town, WI +station = ('kjvl', 0.0026025092983381955) +zone = ('wiz069', 0.0016493161858976775) + +[fips5510515625] +centroid = (0.742763400056071, -1.5510411718843755) +description = Clinton village, WI +station = ('kjvl', 0.0023631341253809016) +zone = ('wiz069', 0.0032847361712468721) + +[fips5510515650] +centroid = (0.74239956872020019, -1.5506772707353347) +description = Clinton town, WI +station = ('kjvl', 0.0027718664652167605) +zone = ('wiz069', 0.0037207493823013262) + +[fips5510522575] +centroid = (0.74763250214999233, -1.5546140004895481) +description = Edgerton city, WI +station = ('kjvl', 0.0038646579427910389) +zone = ('wiz069', 0.0028796088884486572) + +[fips5510524550] +centroid = (0.74661186851001105, -1.5585294721334721) +description = Evansville city, WI +station = ('kjvl', 0.0043991841174833473) +zone = ('wiz069', 0.0034379677052982244) + +[fips5510526400] +centroid = (0.74475860809707339, -1.5569739299843397) +description = Footville village, WI +station = ('kjvl', 0.0024386756989020182) +zone = ('wiz069', 0.0017508239223560154) + +[fips5510528075] +centroid = (0.74690834759004732, -1.5546425017162333) +description = Fulton town, WI +station = ('kjvl', 0.0031516380737125495) +zone = ('wiz069', 0.0021557223284434431) + +[fips5510532700] +centroid = (0.74547578134001025, -1.5523372010270289) +description = Harmony town, WI +station = ('kjvl', 0.0020413877189896291) +zone = ('wiz069', 0.0018085440035078241) + +[fips5510537825] +centroid = (0.74498853777273111, -1.5535728941374409) +description = Janesville city, WI +station = ('kjvl', 0.0012152718836383062) +zone = ('wiz069', 0.00078587646212631402) + +[fips5510537850] +centroid = (0.74558945463419279, -1.5547839431988149) +description = Janesville town, WI +station = ('kjvl', 0.0018966019485274833) +zone = ('wiz069', 0.00084824672699729633) + +[fips5510538450] +centroid = (0.74555400699708474, -1.5504562247855695) +description = Johnstown town, WI +station = ('kjvl', 0.003094740045643671) +zone = ('wiz069', 0.0031440001380557418) + +[fips5510542575] +centroid = (0.74401138028441705, -1.5523619847024075) +description = La Prairie town, WI +station = ('kjvl', 0.0011690311960495879) +zone = ('wiz069', 0.0018004986575087165) + +[fips5510544125] +centroid = (0.74693129866971097, -1.5504853194242003) +description = Lima town, WI +station = ('kjvl', 0.0040231751344134287) +zone = ('wiz069', 0.00372117278660789) + +[fips5510548150] +centroid = (0.7455220500184806, -1.5588090389730567) +description = Magnolia town, WI +station = ('kjvl', 0.0039824668461011549) +zone = ('wiz068', 0.0037580693715171583) + +[fips5510550] +centroid = (0.8125978980593036, -1.5982135643881354) +description = Brule CDP, WI +station = ('ksuw', 0.0066840002813629874) +zone = ('wiz001', 0.0046924213494754247) + +[fips5510552200] +centroid = (0.74658759098011584, -1.5524784679766854) +description = Milton city, WI +station = ('kjvl', 0.0029823176798763787) +zone = ('wiz069', 0.0024038133553408361) + +[fips5510552225] +centroid = (0.74723547465174855, -1.552490807454497) +description = Milton town, WI +station = ('kjvl', 0.0035923095831821893) +zone = ('wiz069', 0.0029233290393949562) + +[fips5510556325] +centroid = (0.74244852520571869, -1.5566371512518749) +description = Newark town, WI +station = ('kjvl', 0.0024121796553206736) +zone = ('wiz069', 0.0027522204585900909) + +[fips5510560250] +centroid = (0.74402035127677235, -1.5578279719472181) +description = Orfordville village, WI +station = ('kjvl', 0.0028803993323580934) +zone = ('wiz069', 0.0024897770740990124) + +[fips5510563675] +centroid = (0.74385176992432223, -1.5566782886623445) +description = Plymouth town, WI +station = ('kjvl', 0.0020268696104193428) +zone = ('wiz069', 0.001779189121987521) + +[fips5510564225] +centroid = (0.74717885617081392, -1.5564388818488484) +description = Porter town, WI +station = ('kjvl', 0.0038498234272339679) +zone = ('wiz069', 0.0027791295507815323) + +[fips5510568600] +centroid = (0.74398275688468429, -1.5547844144377128) +description = Rock town, WI +station = ('kjvl', 0.00065808434375894608) +zone = ('wiz069', 0.00078298222164081182) + +[fips5510576325] +centroid = (0.7439485135247601, -1.5587374106605549) +description = Spring Valley town, WI +station = ('kjvl', 0.0035444161594174622) +zone = ('wiz068', 0.0038827334625008043) + +[fips5510581050] +centroid = (0.74250610361774194, -1.5523902764895821) +description = Turtle town, WI +station = ('kjvl', 0.0017186912976126986) +zone = ('wiz069', 0.0027705471502725842) + +[fips5510581650] +centroid = (0.74711900883076299, -1.5587409536789365) +description = Union town, WI +station = ('kjvl', 0.0048508909706429203) +zone = ('wiz069', 0.0038575497473360594) + +[fips55107] +centroid = (0.79364892818357125, -1.5906362698004797) +description = Rusk County, WI +station = ('krcx', 0.0017213302710077148) +zone = ('wiz016', 6.0789293948449271e-05) + +[fips5510703600] +centroid = (0.79430742345705618, -1.5940736434024048) +description = Atlanta town, WI +station = ('krpd', 0.0056213464940548736) +zone = ('wiz016', 0.0025306103661631146) + +[fips5510707175] +centroid = (0.79135673491704939, -1.594213688621585) +description = Big Bend town, WI +station = ('krpd', 0.0054611272014777395) +zone = ('wiz016', 0.0034611071984887655) + +[fips5510707225] +centroid = (0.79610975516242055, -1.5877388487092439) +description = Big Falls town, WI +station = ('krcx', 0.0020747788537740799) +zone = ('wiz016', 0.0031293850875632545) + +[fips5510710500] +centroid = (0.79339622196117499, -1.5930179984576285) +description = Bruce village, WI +station = ('krcx', 0.003406753263510275) +zone = ('wiz016', 0.0017399973859515956) + +[fips5510713550] +centroid = (0.7956692340592173, -1.585573034733859) +description = Cedar Rapids town, WI +station = ('krcx', 0.0024688631983091295) +zone = ('wiz016', 0.0040227547035804187) + +[fips5510716775] +centroid = (0.79210160653521555, -1.5888686701472299) +description = Conrath village, WI +station = ('krcx', 0.0020117276140538417) +zone = ('wiz016', 0.0019883934514645331) + +[fips5510720000] +centroid = (0.7942022673696234, -1.587863761923809) +description = Dewey town, WI +station = ('krcx', 0.00030559584360243002) +zone = ('wiz016', 0.001966852565088233) + +[fips5510726100] +centroid = (0.79445755667931262, -1.5904542494127891) +description = Flambeau town, WI +station = ('krcx', 0.001590424830991077) +zone = ('wiz016', 0.00077180924110220876) + +[fips5510729475] +centroid = (0.79407169928828181, -1.586390477142323) +description = Glen Flora village, WI +station = ('krcx', 0.0013065717825666988) +zone = ('wiz016', 0.0029567636274179829) + +[fips5510730375] +centroid = (0.79265011115923989, -1.5905778012705376) +description = Grant town, WI +station = ('krcx', 0.0021592828655740493) +zone = ('wiz016', 0.0010401177871689851) + +[fips5510731775] +centroid = (0.79278312270153439, -1.5880146107310589) +description = Grow town, WI +station = ('krcx', 0.0012944883157489722) +zone = ('wiz016', 0.0020108027600046824) + +[fips5510733275] +centroid = (0.79433168353365891, -1.5833130078854514) +description = Hawkins village, WI +station = ('krcx', 0.0034733786347351226) +zone = ('wiz009', 0.0052467749833197469) + +[fips5510733300] +centroid = (0.79336482348793158, -1.5837468967374972) +description = Hawkins town, WI +station = ('krcx', 0.0032376892549406638) +zone = ('wiz017', 0.0051968822278017964) + +[fips5510736125] +centroid = (0.79591607597532676, -1.5905803494512456) +description = Hubbard town, WI +station = ('krcx', 0.0024644288214359712) +zone = ('wiz016', 0.0022258598303360392) + +[fips5510736925] +centroid = (0.79422296697455208, -1.5849978440255716) +description = Ingram village, WI +station = ('krcx', 0.0022878981061115137) +zone = ('wiz016', 0.0039442451484194294) + +[fips5510740850] +centroid = (0.79344367746353661, -1.5899525894258884) +description = Ladysmith city, WI +station = ('krcx', 0.0013437945832366076) +zone = ('wiz016', 0.00049988307708933384) + +[fips5510742950] +centroid = (0.79275755362799261, -1.5855098538149368) +description = Lawrence town, WI +station = ('krcx', 0.0023280397989194593) +zone = ('wiz016', 0.0036722253994036914) + +[fips5510749625] +centroid = (0.79126226024463897, -1.5880379632364505) +description = Marshall town, WI +station = ('krcx', 0.002808486677492051) +zone = ('wiz016', 0.003010290125823014) + +[fips5510755175] +centroid = (0.7959821541408072, -1.5935008437951927) +description = Murry town, WI +station = ('krcx', 0.0041432456066651021) +zone = ('wiz016', 0.0030755768626079907) + +[fips5510767600] +centroid = (0.79433856013091175, -1.5844043099068459) +description = Richland town, WI +station = ('krcx', 0.0027120636164289949) +zone = ('wiz009', 0.0058911846558460934) + +[fips5510770275] +centroid = (0.79125396993069197, -1.5967490411594945) +description = Rusk town, WI +station = ('krpd', 0.0037979003895602186) +zone = ('wiz027', 0.0052968861451652815) + +[fips5510773175] +centroid = (0.79084191514758861, -1.5874932808834881) +description = Sheldon village, WI +station = ('krcx', 0.0032687019054995822) +zone = ('wiz016', 0.0035761687372151034) + +[fips5510774975] +centroid = (0.79601606588817353, -1.5838202878325436) +description = South Fork town, WI +station = ('krcx', 0.0036662861560791027) +zone = ('wiz009', 0.0048608776470845452) + +[fips5510777775] +centroid = (0.79264035476872119, -1.5966804148133058) +description = Strickland town, WI +station = ('krpd', 0.0035601759699978685) +zone = ('wiz016', 0.004411896142383168) + +[fips5510777850] +centroid = (0.79294699166500404, -1.5942151023382789) +description = Stubbs town, WI +station = ('krpd', 0.0052954737875319999) +zone = ('wiz016', 0.0026610201138547829) + +[fips5510779575] +centroid = (0.79304766225625922, -1.5919719004638608) +description = Thornapple town, WI +station = ('krcx', 0.0027991428286512406) +zone = ('wiz016', 0.0011731264860222843) + +[fips5510780225] +centroid = (0.79378124159416485, -1.5882000170574981) +description = Tony village, WI +station = ('krcx', 0.00028793200395320465) +zone = ('wiz016', 0.0016661482638133103) + +[fips5510780950] +centroid = (0.79429480472656422, -1.5861354845386066) +description = True town, WI +station = ('krcx', 0.0015025558883377699) +zone = ('wiz016', 0.003168680950105219) + +[fips5510783675] +centroid = (0.79123953605777797, -1.5923799060830994) +description = Washington town, WI +station = ('krcx', 0.0040470477766149735) +zone = ('wiz016', 0.0027596854436818699) + +[fips5510786450] +centroid = (0.79282707009209963, -1.595496924500821) +description = Weyerhaeuser village, WI +station = ('krpd', 0.0043920914307887882) +zone = ('wiz016', 0.0035607088498444428) + +[fips5510787125] +centroid = (0.79469233837029096, -1.5963296559935327) +description = Wilkinson town, WI +station = ('krpd', 0.0042949040113003266) +zone = ('wiz016', 0.0041574434074408912) + +[fips5510787175] +centroid = (0.79114865676362667, -1.5904516488722036) +description = Willard town, WI +station = ('krcx', 0.0033005411607805288) +zone = ('wiz016', 0.0025429855293858735) + +[fips5510787450] +centroid = (0.79560018883400829, -1.5967893233586303) +description = Wilson town, WI +station = ('krpd', 0.004532041417978621) +zone = ('wiz016', 0.0047554246763626077) + +[fips55109] +centroid = (0.78590359329553339, -1.6135094903262734) +description = St. Croix County, WI +station = ('krnh', 0.0023647256565550562) +zone = ('wiz023', 0.0001112201979158831) + +[fips5510904400] +centroid = (0.78461072319882608, -1.6121664594668639) +description = Baldwin village, WI +station = ('krnh', 0.0039593552867702234) +zone = ('wiz023', 0.0017154444763490136) + +[fips5510904425] +centroid = (0.78536980179710347, -1.6111538368881493) +description = Baldwin town, WI +station = ('krnh', 0.0038199027841781729) +zone = ('wiz023', 0.0018414322527662438) + +[fips5510911775] +centroid = (0.78377195286690249, -1.6090438734488284) +description = Cady town, WI +station = ('klum', 0.0040093207483165262) +zone = ('wiz025', 0.0037111385514852139) + +[fips5510918300] +centroid = (0.78818177156816149, -1.6116278857662836) +description = Cylon town, WI +station = ('krnh', 0.0024518881928193947) +zone = ('wiz023', 0.0025973735150879203) + +[fips5510919325] +centroid = (0.78868880716915846, -1.6124867797444824) +description = Deer Park village, WI +station = ('krnh', 0.0019673867329757931) +zone = ('wiz023', 0.0028104604128202054) + +[fips5510922400] +centroid = (0.78363855735217269, -1.6110823656552802) +description = Eau Galle town, WI +station = ('krnh', 0.0051911881130468638) +zone = ('wiz023', 0.0029536699424912208) + +[fips5510923925] +centroid = (0.7868700693688252, -1.6110964853689287) +description = Emerald town, WI +station = ('krnh', 0.0030338605586994012) +zone = ('wiz023', 0.0019782528513533825) + +[fips5510924275] +centroid = (0.78665633634862597, -1.6131415225600756) +description = Erin Prairie town, WI +station = ('krnh', 0.0019154939460596261) +zone = ('wiz023', 0.00074126048060727467) + +[fips5510926525] +centroid = (0.78819816020983779, -1.6097135562828184) +description = Forest town, WI +station = ('krnh', 0.0037999743362832268) +zone = ('wiz023', 0.0035239085179803891) + +[fips5510929600] +centroid = (0.7867949678511118, -1.6093102805058528) +description = Glenwood town, WI +station = ('klum', 0.0053147895014140504) +zone = ('wiz023', 0.0031388936163436049) + +[fips5510929625] +centroid = (0.786393402496813, -1.6086911773135852) +description = Glenwood City city, WI +station = ('klum', 0.0047232676320813757) +zone = ('wiz025', 0.0039008171371203741) + +[fips5510932325] +centroid = (0.78485239894034964, -1.6133462496813347) +description = Hammond village, WI +station = ('krnh', 0.0033689630108208676) +zone = ('wiz023', 0.0011538608052245017) + +[fips5510932350] +centroid = (0.78535191217227041, -1.6134719308407706) +description = Hammond town, WI +station = ('krnh', 0.0028733003252302864) +zone = ('wiz023', 0.00064662164551636714) + +[fips5510936250] +centroid = (0.78485533109349304, -1.618408175751016) +description = Hudson city, WI +station = ('k21d', 0.0016013811703719581) +zone = ('mnz063', 0.0022738936990287693) + +[fips5510936275] +centroid = (0.78510658869261019, -1.6174668847788305) +description = Hudson town, WI +station = ('k21d', 0.0021915541997903653) +zone = ('mnz063', 0.0027618636551766432) + +[fips5510939825] +centroid = (0.78381549883173984, -1.6153341622460635) +description = Kinnickinnic town, WI +station = ('krnh', 0.0041750284086982626) +zone = ('wiz023', 0.0024960902601024815) + +[fips5510957100] +centroid = (0.78753109536972554, -1.6150127947708939) +description = New Richmond city, WI +station = ('krnh', 0.00045953572713752967) +zone = ('wiz023', 0.0018322914526232282) + +[fips5510958050] +centroid = (0.78532424870362627, -1.6188801127807553) +description = North Hudson village, WI +station = ('k21d', 0.0011748228857073652) +zone = ('mnz063', 0.0017550885807029177) + +[fips5510963425] +centroid = (0.78375460429413779, -1.6138406316452543) +description = Pleasant Valley town, WI +station = ('krnh', 0.0043241371676562123) +zone = ('wiz023', 0.0022431339920950017) + +[fips5510967650] +centroid = (0.78665576038997276, -1.6155662037701159) +description = Richmond town, WI +station = ('krnh', 0.0013724273204034037) +zone = ('wiz023', 0.0015359846314645397) + +[fips5510968275] +centroid = (0.78322034155680975, -1.6165557356428268) +description = River Falls city, WI +station = ('k21d', 0.0035623325694952323) +zone = ('wiz023', 0.0034695515910412719) + +[fips5510968475] +centroid = (0.7849557049787752, -1.6154550786566415) +description = Roberts village, WI +station = ('krnh', 0.0030420884897762682) +zone = ('wiz023', 0.0016681586269240735) + +[fips5510970200] +centroid = (0.78374880980102113, -1.6127774119715244) +description = Rush River town, WI +station = ('krnh', 0.0045434586712988639) +zone = ('wiz023', 0.0023180684678578761) + +[fips5510970825] +centroid = (0.78623614833120825, -1.6179410034701347) +description = St. Joseph town, WI +station = ('k21d', 0.0020179526312885747) +zone = ('mnz063', 0.0022595429094912252) + +[fips5510974675] +centroid = (0.78761912977719606, -1.6174655583285991) +description = Somerset village, WI +station = ('krnh', 0.0017130615593687799) +zone = ('mnz063', 0.0030173632528416264) + +[fips5510974700] +centroid = (0.7879344584131539, -1.6179858584319109) +description = Somerset town, WI +station = ('krnh', 0.0020404581695029327) +zone = ('mnz063', 0.0029009279820503922) + +[fips5510975950] +centroid = (0.78531740701295849, -1.609314155136792) +description = Springfield town, WI +station = ('klum', 0.0045598791840973287) +zone = ('wiz025', 0.0039273971701882897) + +[fips5510976300] +centroid = (0.78314145267461965, -1.6099558603428727) +description = Spring Valley village, WI +station = ('klum', 0.0046638236669899339) +zone = ('wiz024', 0.0034430574755599961) + +[fips5510976675] +centroid = (0.78840948467566929, -1.6135702801441205) +description = Stanton town, WI +station = ('krnh', 0.001154305360299519) +zone = ('wiz023', 0.0024180390351085557) + +[fips5510976825] +centroid = (0.78884538065635479, -1.6149894248122096) +description = Star Prairie village, WI +station = ('krnh', 0.00086145757505214017) +zone = ('wiz023', 0.0030162219081209282) + +[fips5510976850] +centroid = (0.7884150348226906, -1.6161941208751061) +description = Star Prairie town, WI +station = ('krnh', 0.00088609610454948588) +zone = ('wiz023', 0.003034938829634023) + +[fips5510980800] +centroid = (0.78377713649478098, -1.6176971809736311) +description = Troy town, WI +station = ('k21d', 0.0025826323128963374) +zone = ('mnz063', 0.0033375223902657744) + +[fips5510983400] +centroid = (0.78539357318151559, -1.615614566843689) +description = Warren town, WI +station = ('krnh', 0.0026194447018390221) +zone = ('wiz023', 0.0015408001296414783) + +[fips5510987475] +centroid = (0.78466950588803308, -1.6086802690057604) +description = Wilson village, WI +station = ('klum', 0.0039154156759944091) +zone = ('wiz025', 0.0033927787441983483) + +[fips5510989025] +centroid = (0.78450033112363737, -1.6106821092979202) +description = Woodville village, WI +station = ('krnh', 0.0046767652163410191) +zone = ('wiz023', 0.0025493097613199) + +[fips5511062] +centroid = (0.77183976508954799, -1.6033622158683485) +description = Buffalo City city, WI +station = ('kona', 0.0032048441830629325) +zone = ('wiz032', 0.0030690997459465277) + +[fips55111] +centroid = (0.75796155264951248, -1.5698072312544991) +description = Sauk County, WI +station = ('kdll', 0.0027315877598999188) +zone = ('wiz056', 6.7592192800372062e-05) + +[fips5511104625] +centroid = (0.75868429349276323, -1.5662111548636899) +description = Baraboo city, WI +station = ('kdll', 0.0010105167847115576) +zone = ('wiz056', 0.0027764405264718902) + +[fips5511104650] +centroid = (0.75838336382313432, -1.5669590808080469) +description = Baraboo town, WI +station = ('kdll', 0.0012235547243646015) +zone = ('wiz056', 0.0021777835031964567) + +[fips5511105600] +centroid = (0.75578978710137823, -1.5734695603437137) +description = Bear Creek town, WI +station = ('klnr', 0.0015643841615159855) +zone = ('wiz056', 0.0033729080778178745) + +[fips5511113300] +centroid = (0.7596250783194658, -1.574141930984752) +description = Cazenovia village, WI +station = ('klnr', 0.0053530030787027113) +zone = ('wiz056', 0.0035117003055513516) + +[fips5511119550] +centroid = (0.76100697766131731, -1.5687651998778882) +description = Dellona town, WI +station = ('kdll', 0.0020027492247439685) +zone = ('wiz056', 0.0031740477269269138) + +[fips5511119675] +centroid = (0.7599500935327721, -1.5672370070381345) +description = Delton town, WI +station = ('kdll', 0.00047291417026885105) +zone = ('wiz056', 0.0027855356859140977) + +[fips5511124675] +centroid = (0.75956839002536103, -1.5686921229421071) +description = Excelsior town, WI +station = ('kdll', 0.0013748673588087003) +zone = ('wiz056', 0.0018472901914957126) + +[fips5511124900] +centroid = (0.75983603626615437, -1.5646232543102254) +description = Fairfield town, WI +station = ('kdll', 0.0015931492205001434) +zone = ('wiz057', 0.0041350598729754072) + +[fips5511127350] +centroid = (0.75583938935871997, -1.5714774240821949) +description = Franklin town, WI +station = ('klnr', 0.0024119286026922024) +zone = ('wiz056', 0.0023952903443136145) + +[fips5511127675] +centroid = (0.75773553251137915, -1.5690596369226997) +description = Freedom town, WI +station = ('kdll', 0.0024856137963361522) +zone = ('wiz056', 0.00064098253615461973) + +[fips5511131250] +centroid = (0.75854393411431786, -1.5646695229886958) +description = Greenfield town, WI +station = ('kdll', 0.0018706098788258769) +zone = ('wiz057', 0.0039933652330668987) + +[fips5511135625] +centroid = (0.7562338163163782, -1.5694282330074285) +description = Honey Creek town, WI +station = ('klnr', 0.0038607743870036717) +zone = ('wiz056', 0.0017403228330432718) + +[fips5511137225] +centroid = (0.75998964269362235, -1.5733349430985075) +description = Ironton village, WI +station = ('klnr', 0.0057366787643601709) +zone = ('wiz056', 0.0032287712470030322) + +[fips5511137250] +centroid = (0.75960898638376229, -1.5733173850862323) +description = Ironton town, WI +station = ('klnr', 0.0053586230051814688) +zone = ('wiz056', 0.002991445791441184) + +[fips5511141300] +centroid = (0.76086028273768713, -1.5670415825217887) +description = Lake Delton village, WI +station = ('kdll', 0.0012715088355026865) +zone = ('wiz056', 0.0035789754962719041) + +[fips5511142825] +centroid = (0.76066217041429329, -1.5730780131793212) +description = La Valle village, WI +station = ('kdll', 0.004674402374015515) +zone = ('wiz056', 0.0035685142329621362) + +[fips5511142850] +centroid = (0.76091353273316542, -1.5731313329879697) +description = La Valle town, WI +station = ('kdll', 0.0047743978006406498) +zone = ('wiz056', 0.0037873954853402873) + +[fips5511144225] +centroid = (0.75865210962135654, -1.5735508577802715) +description = Lime Ridge village, WI +station = ('klnr', 0.0043909403354357654) +zone = ('wiz056', 0.0027473684740045501) + +[fips5511145400] +centroid = (0.7581190162546273, -1.5714484690699042) +description = Loganville village, WI +station = ('klnr', 0.0042691325393298153) +zone = ('wiz056', 0.0011416027095256826) + +[fips5511151325] +centroid = (0.75704670341549452, -1.5642838401305901) +description = Merrimac village, WI +station = ('kdll', 0.0031390229869152882) +zone = ('wiz057', 0.004039767466074322) + +[fips5511151350] +centroid = (0.75724211047854784, -1.5650773017151318) +description = Merrimac town, WI +station = ('kdll', 0.002668923364322466) +zone = ('wiz057', 0.0045109323073997338) + +[fips5511158025] +centroid = (0.75848455801316494, -1.5682470116229712) +description = North Freedom village, WI +station = ('kdll', 0.001534338126336923) +zone = ('wiz056', 0.001314858203628564) + +[fips5511163125] +centroid = (0.75534430926309926, -1.5715307962507208) +description = Plain village, WI +station = ('klnr', 0.0020909532687809346) +zone = ('wiz056', 0.0028556071366434071) + +[fips5511165100] +centroid = (0.75556668166309582, -1.5661214274868447) +description = Prairie du Sac village, WI +station = ('kdll', 0.0040642551566814206) +zone = ('wiz056', 0.0036285277178000684) + +[fips5511165125] +centroid = (0.75544920355114409, -1.5672717565435417) +description = Prairie du Sac town, WI +station = ('kdll', 0.0041663498686733084) +zone = ('wiz056', 0.0031380604210378472) + +[fips5511166800] +centroid = (0.75983017195986768, -1.5707505991684945) +description = Reedsburg city, WI +station = ('kdll', 0.0028758917090263218) +zone = ('wiz056', 0.0019887377611095655) + +[fips5511166825] +centroid = (0.75936261570655084, -1.5710817928473528) +description = Reedsburg town, WI +station = ('kdll', 0.0031167271612698756) +zone = ('wiz056', 0.0016622201069758295) + +[fips5511168975] +centroid = (0.75884732469819205, -1.5695244181025059) +description = Rock Springs village, WI +station = ('kdll', 0.0021174262796704673) +zone = ('wiz056', 0.00094590214794630255) + +[fips5511171650] +centroid = (0.75526107451107161, -1.5661268031009408) +description = Sauk City village, WI +station = ('kc29', 0.0038414975040611276) +zone = ('wiz056', 0.0038329279203935945) + +[fips5511176025] +centroid = (0.75359613512442414, -1.5720140255607205) +description = Spring Green village, WI +station = ('klnr', 0.0015956643953940679) +zone = ('wiz062', 0.0032068594466174139) + +[fips5511176050] +centroid = (0.75394069802535291, -1.5726128829336647) +description = Spring Green town, WI +station = ('klnr', 0.0010615923083307382) +zone = ('wiz062', 0.0034634673499132828) + +[fips5511178525] +centroid = (0.75689348096046194, -1.5670309185600588) +description = Sumpter town, WI +station = ('kdll', 0.0027130849591606924) +zone = ('wiz056', 0.0023301641597643814) + +[fips5511180825] +centroid = (0.75478568172941352, -1.5694408691912127) +description = Troy town, WI +station = ('klnr', 0.0033582552301776197) +zone = ('wiz056', 0.0031722611052390918) + +[fips5511183700] +centroid = (0.75786905019915662, -1.5731112791548643) +description = Washington town, WI +station = ('klnr', 0.0036530910689320717) +zone = ('wiz056', 0.0023364736515630161) + +[fips5511185325] +centroid = (0.75883383330307408, -1.5667044547234734) +description = West Baraboo village, WI +station = ('kdll', 0.00077030036777523184) +zone = ('wiz056', 0.0024829173216836752) + +[fips5511185625] +centroid = (0.75793273726356192, -1.5709249750140613) +description = Westfield town, WI +station = ('kdll', 0.0034291688061392298) +zone = ('wiz056', 0.00074753207456860918) + +[fips5511187775] +centroid = (0.76097903493999286, -1.5711944887571541) +description = Winfield town, WI +station = ('kdll', 0.0034719460412685034) +zone = ('wiz056', 0.0031810264886707085) + +[fips5511188150] +centroid = (0.76148017132811807, -1.567225068986051) +description = Wisconsin Dells city, WI +station = ('kdll', 0.0019044102106110761) +zone = ('wiz056', 0.004034552140797446) + +[fips5511188775] +centroid = (0.76096852805789583, -1.5752090427427139) +description = Woodland town, WI +station = ('kvok', 0.0058154055703953152) +zone = ('wiz055', 0.0045147296270335834) + +[fips5511200] +centroid = (0.74482414521048568, -1.5406356585103256) +description = Burlington city, WI +station = ('kbuu', 0.00049818870375203505) +zone = ('wiz071', 0.0030543778421559553) + +[fips5511250] +centroid = (0.75933160120574283, -1.5482543697611311) +description = Burnett CDP, WI +station = ('kunu', 0.0013947861210278851) +zone = ('wiz058', 0.0015725170278556031) + +[fips55113] +centroid = (0.80049374299075005, -1.5908175222432992) +description = Sawyer County, WI +station = ('khyr', 0.0045307417073117643) +zone = ('wiz008', 0.00026496841081329492) + +[fips5511305200] +centroid = (0.8016869024272909, -1.5961316483898937) +description = Bass Lake town, WI +station = ('khyr', 0.0014555722187822948) +zone = ('wiz008', 0.0038414688370192853) + +[fips5511317225] +centroid = (0.79931608207796678, -1.5934280810186772) +description = Couderay village, WI +station = ('khyr', 0.004255133339534564) +zone = ('wiz008', 0.0023436142567813062) + +[fips5511317250] +centroid = (0.79946232321599142, -1.594298686156157) +description = Couderay town, WI +station = ('khyr', 0.0038883932872060115) +zone = ('wiz008', 0.0027751585013827654) + +[fips5511320825] +centroid = (0.8013923955693093, -1.5847922093331017) +description = Draper town, WI +station = ('kpbh', 0.0061784388322358033) +zone = ('wiz008', 0.0042119025814348482) + +[fips5511322625] +centroid = (0.79748291040471964, -1.59654822357576) +description = Edgewater town, WI +station = ('khyr', 0.0056678995776330279) +zone = ('wiz008', 0.0051891346497581915) + +[fips5511324700] +centroid = (0.79704703187732662, -1.5924641880326782) +description = Exeland village, WI +station = ('krcx', 0.0041908957282576105) +zone = ('wiz016', 0.0036085236865185939) + +[fips5511333450] +centroid = (0.80300652842143128, -1.5966871692375111) +description = Hayward city, WI +station = ('khyr', 0.00042743823003317863) +zone = ('wiz008', 0.0046861741588593818) + +[fips5511333475] +centroid = (0.80268006458484575, -1.5953359004240322) +description = Hayward town, WI +station = ('khyr', 0.00070573716525294957) +zone = ('wiz008', 0.003709299880027505) + +[fips5511336450] +centroid = (0.80142955362908441, -1.5913623616758943) +description = Hunter town, WI +station = ('khyr', 0.003713993841208929) +zone = ('wiz008', 0.00078693493363077608) + +[fips5511343400] +centroid = (0.80499688444711304, -1.5957402233985492) +description = Lenroot town, WI +station = ('khyr', 0.0018715973074074773) +zone = ('wiz008', 0.0054654718573392989) + +[fips5511350300] +centroid = (0.79718335954519981, -1.5905681495997741) +description = Meadowbrook town, WI +station = ('krcx', 0.0035122360379950253) +zone = ('wiz016', 0.0034931382935506241) + +[fips5511351425] +centroid = (0.79719257488365036, -1.5944214875223273) +description = Meteor town, WI +station = ('krcx', 0.0053290147331731454) +zone = ('wiz008', 0.0043787059352341845) + +[fips5511359600] +centroid = (0.80015162355077407, -1.590137978299035) +description = Ojibwa town, WI +station = ('khyr', 0.0051147320773782838) +zone = ('wiz008', 0.00075060787354564178) + +[fips5511366050] +centroid = (0.79880630631004435, -1.592051731823847) +description = Radisson village, WI +station = ('khyr', 0.0051724564065450309) +zone = ('wiz008', 0.0021440345740480113) + +[fips5511366075] +centroid = (0.79975422953338748, -1.5917848535279246) +description = Radisson town, WI +station = ('khyr', 0.0045283283778388859) +zone = ('wiz008', 0.001224873242945733) + +[fips5511369750] +centroid = (0.80365877541619413, -1.5902599768137495) +description = Round Lake town, WI +station = ('khyr', 0.0040897475462591077) +zone = ('wiz008', 0.0029237251722542658) + +[fips5511371500] +centroid = (0.79965469340614626, -1.5964480242234029) +description = Sand Lake town, WI +station = ('khyr', 0.0034958723144593428) +zone = ('wiz008', 0.004102400273869905) + +[fips5511375450] +centroid = (0.80495958676099799, -1.5902480562149586) +description = Spider Lake town, WI +station = ('khyr', 0.0044504630490568714) +zone = ('wiz008', 0.0042184437319867122) + +[fips5511385100] +centroid = (0.79762347922267529, -1.5923365870110651) +description = Weirgor town, WI +station = ('krcx', 0.0045616772796874721) +zone = ('wiz008', 0.00331734980564902) + +[fips5511387975] +centroid = (0.79974635809846095, -1.588478257446851) +description = Winter village, WI +station = ('krcx', 0.0056818793347774123) +zone = ('wiz008', 0.0018923364244680953) + +[fips5511388000] +centroid = (0.79872232106643837, -1.5862971194806339) +description = Winter town, WI +station = ('krcx', 0.0048527215021927292) +zone = ('wiz008', 0.0037254266348773772) + +[fips5511475] +centroid = (0.75238437047805706, -1.5371504279803105) +description = Butler village, WI +station = ('kmwc', 0.00051594836821849943) +zone = ('wiz066', 0.0022226307508585235) + +[fips55115] +centroid = (0.78172670623624563, -1.549081167134386) +description = Shawano County, WI +station = ('kcli', 0.0030823807875328046) +zone = ('wiz031', 0.00012147191083593036) + +[fips5511500] +centroid = (0.76979945774067415, -1.5473612498763005) +description = Butte des Morts CDP, WI +station = ('kosh', 0.002783407578932833) +zone = ('wiz048', 0.00067111868133108807) + +[fips5511501375] +centroid = (0.78359783882072365, -1.5542598033711483) +description = Almon town, WI +station = ('kaig', 0.0044569620840820678) +zone = ('wiz020', 0.0046285967425361866) + +[fips5511501975] +centroid = (0.78059929335262734, -1.5412094005953336) +description = Angelica town, WI +station = ('kezs', 0.0033599193646282372) +zone = ('wiz074', 0.0034359513874453978) + +[fips5511502075] +centroid = (0.78557246942984504, -1.5569723766413055) +description = Aniwa village, WI +station = ('kaig', 0.0027823377865598443) +zone = ('wiz019', 0.0047131168689188915) + +[fips5511502100] +centroid = (0.78510505280286846, -1.5562119017796263) +description = Aniwa town, WI +station = ('kaig', 0.00301732151772875) +zone = ('wiz019', 0.0050041559489424018) + +[fips5511505000] +centroid = (0.7835334187180325, -1.5519202418687275) +description = Bartelme town, WI +station = ('kaig', 0.0050109506572253099) +zone = ('wiz031', 0.0026213766535024717) + +[fips5511506275] +centroid = (0.780640099150539, -1.5475494312762508) +description = Belle Plaine town, WI +station = ('kezs', 0.0017284545593227541) +zone = ('wiz031', 0.001620374973369451) + +[fips5511507600] +centroid = (0.78421029230854089, -1.5569895506811449) +description = Birnamwood village, WI +station = ('kaig', 0.0040359968832991144) +zone = ('wiz019', 0.0060096243350417069) + +[fips5511507625] +centroid = (0.78384173113039735, -1.5560398821285499) +description = Birnamwood town, WI +station = ('kaig', 0.0042282436370870233) +zone = ('wiz020', 0.0057277821448681919) + +[fips5511508725] +centroid = (0.78082096762092312, -1.5436860926170837) +description = Bonduel village, WI +station = ('kezs', 0.0016742478637107397) +zone = ('wiz074', 0.0045753593724188685) + +[fips5511509025] +centroid = (0.7830054740725968, -1.553019694577729) +description = Bowler village, WI +station = ('kaig', 0.0052197836541417195) +zone = ('wiz031', 0.0029657894682902021) + +[fips5511513325] +centroid = (0.78210594882941131, -1.5437310872051999) +description = Cecil village, WI +station = ('kezs', 0.0014210480656139232) +zone = ('wiz074', 0.0040372942272214026) + +[fips5511522975] +centroid = (0.78307691039888083, -1.5569895506811449) +description = Eland village, WI +station = ('kaig', 0.0051188733865068633) +zone = ('wiz020', 0.0066143720846066059) + +[fips5511524775] +centroid = (0.78047617782719159, -1.5541324117890452) +description = Fairbanks town, WI +station = ('kcli', 0.0042985756918679056) +zone = ('wiz031', 0.0036818934611875559) + +[fips5511525] +centroid = (0.80308161248585208, -1.5794751161267786) +description = Butternut village, WI +station = ('kpbh', 0.0055925265670882397) +zone = ('wiz004', 0.0053323129023692493) + +[fips5511528825] +centroid = (0.78059496493608238, -1.5561950768056372) +description = Germania town, WI +station = ('kste', 0.0055324524829356379) +zone = ('wiz031', 0.0050567921215640878) + +[fips5511530400] +centroid = (0.78062931301576155, -1.5521192617633326) +description = Grant town, WI +station = ('kcli', 0.0031545412658578187) +zone = ('wiz031', 0.0023092870192005176) + +[fips5511531500] +centroid = (0.78220145324608059, -1.5414965945237491) +description = Green Valley town, WI +station = ('kezs', 0.0029934844066240207) +zone = ('wiz074', 0.00253271416132088) + +[fips5511531675] +centroid = (0.78273901465569473, -1.5495440109987222) +description = Gresham village, WI +station = ('kezs', 0.0029306279358039238) +zone = ('wiz031', 0.001040827279511751) + +[fips5511533075] +centroid = (0.78050775083336021, -1.5431729483637049) +description = Hartland town, WI +station = ('kezs', 0.0021515894990268261) +zone = ('wiz074', 0.0044700400081887576) + +[fips5511534025] +centroid = (0.78197182027639567, -1.5496545950601286) +description = Herman town, WI +station = ('kcli', 0.0033879030835678101) +zone = ('wiz031', 0.00038149402136074782) + +[fips5511536700] +centroid = (0.78509540113210485, -1.5539415251287545) +description = Hutchins town, WI +station = ('kaig', 0.0030309917778108724) +zone = ('wiz020', 0.0040205911496395399) + +[fips5511543675] +centroid = (0.7789627853794947, -1.543042572268581) +description = Lessor town, WI +station = ('kezs', 0.0033381840527121221) +zone = ('wiz038', 0.0038176122554631126) + +[fips5511548900] +centroid = (0.77880844591374088, -1.5411097073884596) +description = Maple Grove town, WI +station = ('kgrb', 0.0031849502599458198) +zone = ('wiz038', 0.0041505597582885733) + +[fips5511549400] +centroid = (0.77987929267630196, -1.5515143830044686) +description = Marion city, WI +station = ('kcli', 0.0023721229833675288) +zone = ('wiz031', 0.0024428101594186871) + +[fips5511550000] +centroid = (0.78547801221072711, -1.554065705305034) +description = Mattoon village, WI +station = ('kaig', 0.0026388791941110361) +zone = ('wiz020', 0.0040896725613744451) + +[fips5511554250] +centroid = (0.78211690949711399, -1.5540815703479347) +description = Morris town, WI +station = ('kcli', 0.0051795077937274135) +zone = ('wiz031', 0.0034499198196888867) + +[fips5511555675] +centroid = (0.77906130921576988, -1.5454728210789352) +description = Navarino town, WI +station = ('kcli', 0.0023001332143647744) +zone = ('wiz031', 0.0037783465856474061) + +[fips5511561700] +centroid = (0.7806673088335776, -1.5496642816374773) +description = Pella town, WI +station = ('kcli', 0.0021325030901090318) +zone = ('wiz031', 0.0010916886003649153) + +[fips5511565675] +centroid = (0.77962135046614978, -1.5403232620275111) +description = Pulaski village, WI +station = ('kgrb', 0.0035712153584957153) +zone = ('wiz074', 0.0039957894419728295) + +[fips5511566750] +centroid = (0.78373201973361695, -1.5499933285613556) +description = Red Springs town, WI +station = ('kezs', 0.0036632610555440591) +zone = ('wiz031', 0.0020804990606208378) + +[fips5511567675] +centroid = (0.782060046670084, -1.5477410160682421) +description = Richmond town, WI +station = ('kezs', 0.0015099497235223213) +zone = ('wiz031', 0.0011250894724201602) + +[fips5511572550] +centroid = (0.78226788047741136, -1.5524701602094459) +description = Seneca town, WI +station = ('kcli', 0.0045135509165415066) +zone = ('wiz031', 0.0023483721814796851) + +[fips5511572925] +centroid = (0.78152168240901387, -1.5461177027842545) +description = Shawano city, WI +station = ('kezs', 0.00038539865478173427) +zone = ('wiz031', 0.0022333612256605685) + +[fips5511579825] +centroid = (0.78088884347553322, -1.5541432153771151) +description = Tigerton village, WI +station = ('kcli', 0.0044945871233331063) +zone = ('wiz031', 0.0035706008266802058) + +[fips5511583725] +centroid = (0.78164544370627265, -1.5428091693877117) +description = Washington town, WI +station = ('kezs', 0.002027738842364383) +zone = ('wiz074', 0.0036158517577560951) + +[fips5511584225] +centroid = (0.78036941603684717, -1.5452537124446399) +description = Waukechon town, WI +station = ('kezs', 0.0013942786585825968) +zone = ('wiz031', 0.0031438949969846033) + +[fips5511585275] +centroid = (0.78224779173772097, -1.5456369343885004) +description = Wescott town, WI +station = ('kezs', 0.00051516692230790014) +zone = ('wiz031', 0.0026188774026145571) + +[fips5511588325] +centroid = (0.78238171085122654, -1.5562508749818236) +description = Wittenberg village, WI +station = ('kaig', 0.0056941167011592539) +zone = ('wiz020', 0.0064355400672179491) + +[fips5511588350] +centroid = (0.78189383896541653, -1.5561535903293173) +description = Wittenberg town, WI +station = ('kaig', 0.0061685193774635725) +zone = ('wiz037', 0.0062349924575138532) + +[fips5511650] +centroid = (0.80636380886398251, -1.5933678497061909) +description = Cable CDP, WI +station = ('khyr', 0.0037383372842671229) +zone = ('wiz002', 0.0057443554178405482) + +[fips55117] +centroid = (0.76351176948402444, -1.5311868822723413) +description = Sheboygan County, WI +station = ('ksbm', 0.0016405922196017816) +zone = ('wiz052', 0.0027439012173939843) + +[fips5511700000] +centroid = (0.76303498043896467, -1.5257936578040461) +description = County subdivisions not defined, WI +station = ('ksbm', 0.0055183922444100785) +zone = ('wiz052', 0.0066081215360468629) + +[fips5511700450] +centroid = (0.76131953122376439, -1.5349452219237081) +description = Adell village, WI +station = ('ksbm', 0.0030904434887710011) +zone = ('wiz052', 0.0017593722654264455) + +[fips5511712825] +centroid = (0.7620364775738987, -1.5360434354489407) +description = Cascade village, WI +station = ('ksbm', 0.0029216159270974017) +zone = ('wiz052', 0.0013141238446980441) + +[fips5511713475] +centroid = (0.76040935947214194, -1.532799967926912) +description = Cedar Grove village, WI +station = ('ksbm', 0.0037694403929031638) +zone = ('wiz052', 0.0030850244886958338) + +[fips5511723275] +centroid = (0.7650253713712315, -1.5361471952729717) +description = Elkhart Lake village, WI +station = ('ksbm', 0.0022470385532629522) +zone = ('wiz052', 0.0021336774646709212) + +[fips5511729350] +centroid = (0.76442618238572935, -1.536706416218603) +description = Glenbeulah village, WI +station = ('ksbm', 0.0024932802929193503) +zone = ('wiz052', 0.0018570773684575635) + +[fips5511731100] +centroid = (0.76405413054908167, -1.5376566607298514) +description = Greenbush town, WI +station = ('ksbm', 0.0031677853467894958) +zone = ('wiz052', 0.0021934861596357145) + +[fips5511734050] +centroid = (0.7654182624391479, -1.5334928985465388) +description = Herman town, WI +station = ('ksbm', 0.0012650420708251533) +zone = ('wiz052', 0.0025610821963099996) + +[fips5511735375] +centroid = (0.76079870752167689, -1.5333441441343911) +description = Holland town, WI +station = ('ksbm', 0.0033650238969283311) +zone = ('wiz052', 0.0025547974972422497) + +[fips5511736025] +centroid = (0.76496267914449978, -1.5327587083433949) +description = Howards Grove village, WI +station = ('ksbm', 0.00088094015866671809) +zone = ('wiz052', 0.0024539877553372566) + +[fips5511740275] +centroid = (0.76336711659561907, -1.5320095606685613) +description = Kohler village, WI +station = ('ksbm', 0.0012103543277315193) +zone = ('wiz052', 0.0021347979886313906) + +[fips5511744150] +centroid = (0.76215905204726631, -1.5335628338896661) +description = Lima town, WI +station = ('ksbm', 0.0020152805612861611) +zone = ('wiz052', 0.0013538737439197377) + +[fips5511746575] +centroid = (0.76232693526801565, -1.5354330763562256) +description = Lyndon town, WI +station = ('ksbm', 0.0024106932763558815) +zone = ('wiz052', 0.00083317300689555681) + +[fips5511750] +centroid = (0.7845220430195321, -1.5909332375727065) +description = Cadott village, WI +station = ('keau', 0.0043245661838200323) +zone = ('wiz027', 0.0026037979770163694) + +[fips5511753375] +centroid = (0.76219252746231947, -1.5377223200163117) +description = Mitchell town, WI +station = ('ketb', 0.004341589834446981) +zone = ('wiz052', 0.0022004048168663948) + +[fips5511754475] +centroid = (0.76517480646178726, -1.5318098077356705) +description = Mosel town, WI +station = ('ksbm', 0.001461513407935896) +zone = ('wiz052', 0.0030805500531612706) + +[fips5511760100] +centroid = (0.76137436946886217, -1.5322003949689744) +description = Oostburg village, WI +station = ('ksbm', 0.002894500015207789) +zone = ('wiz052', 0.0026120438545540192) + +[fips5511763700] +centroid = (0.76349742287757305, -1.5352842346776154) +description = Plymouth city, WI +station = ('ksbm', 0.0015986870044835501) +zone = ('wiz052', 0.00048805092259814785) + +[fips5511763725] +centroid = (0.76385198651511577, -1.5356276980211157) +description = Plymouth town, WI +station = ('ksbm', 0.0017294139960431364) +zone = ('wiz052', 0.00092022577736142934) + +[fips5511766200] +centroid = (0.7602012987720117, -1.535082177910112) +description = Random Lake village, WI +station = ('ketb', 0.0032172530569338307) +zone = ('wiz052', 0.002879517075791883) + +[fips5511767150] +centroid = (0.76547339739021847, -1.5354112422872832) +description = Rhine town, WI +station = ('ksbm', 0.0020246442757933508) +zone = ('wiz052', 0.0024188749854626209) + +[fips5511770350] +centroid = (0.76547517762605544, -1.5373554867141273) +description = Russell town, WI +station = ('ksbm', 0.003225291697153266) +zone = ('wiz052', 0.0029649181979745326) + +[fips5511772350] +centroid = (0.76080364680345991, -1.5377179217865966) +description = Scott town, WI +station = ('ketb', 0.0029576549035228374) +zone = ('wiz052', 0.0030373415555415115) + +[fips5511772975] +centroid = (0.76351176948402444, -1.5311868822723413) +description = Sheboygan city, WI +station = ('ksbm', 0.0016405922196017816) +zone = ('wiz052', 0.0027439012173939843) + +[fips5511773000] +centroid = (0.76412054032712007, -1.5318163178137805) +description = Sheboygan town, WI +station = ('ksbm', 0.0010516566523574539) +zone = ('wiz052', 0.0024831224721168768) + +[fips5511773025] +centroid = (0.76322091036417961, -1.5328569703802819) +description = Sheboygan Falls city, WI +station = ('ksbm', 0.0009888867858821016) +zone = ('wiz052', 0.0015097033203822913) + +[fips5511773050] +centroid = (0.76399478935451381, -1.5335465325144526) +description = Sheboygan Falls town, WI +station = ('ksbm', 0.00026032004468131721) +zone = ('wiz052', 0.0013592340478331322) + +[fips5511773425] +centroid = (0.76074959395652575, -1.5355673096289966) +description = Sherman town, WI +station = ('ketb', 0.0034331063466254467) +zone = ('wiz052', 0.0023735505535861842) + +[fips5511783100] +centroid = (0.76230527573199836, -1.5349701626787191) +description = Waldo village, WI +station = ('ksbm', 0.0022267828433134764) +zone = ('wiz052', 0.00077399330511404769) + +[fips5511787500] +centroid = (0.76220292962466141, -1.5317000265257199) +description = Wilson town, WI +station = ('ksbm', 0.0022656475920546384) +zone = ('wiz052', 0.0024987938878298674) + +[fips55119] +centroid = (0.78909225747904943, -1.5796076738834675) +description = Taylor County, WI +station = ('kmdz', 0.0031422899113448415) +zone = ('wiz017', 4.4998580757547506e-05) + +[fips5511903900] +centroid = (0.78843386692531958, -1.5860274661112008) +description = Aurora town, WI +station = ('krcx', 0.0058462603597248565) +zone = ('wiz027', 0.005336508336668112) + +[fips5511910400] +centroid = (0.78813183769826189, -1.5746279353682622) +description = Browning town, WI +station = ('kmdz', 0.0014154835112147309) +zone = ('wiz017', 0.0035948531854365869) + +[fips5511914200] +centroid = (0.78991811237450815, -1.5768929538583305) +description = Chelsea town, WI +station = ('kmdz', 0.0028126899688348836) +zone = ('wiz017', 0.002042422382045537) + +[fips5511915450] +centroid = (0.78968259764524396, -1.5840130769017191) +description = Cleveland town, WI +station = ('krcx', 0.0053007438480650515) +zone = ('wiz017', 0.0032029296099371778) + +[fips5511919225] +centroid = (0.78687064532747841, -1.5751323878819661) +description = Deer Creek town, WI +station = ('kmdz', 0.00073681763703224191) +zone = ('wiz017', 0.0038215170900286338) + +[fips5511926425] +centroid = (0.78834160882105919, -1.5838140570071142) +description = Ford town, WI +station = ('kmdz', 0.0055745492576308054) +zone = ('wiz017', 0.0031009583845909953) + +[fips5511929175] +centroid = (0.78829898788072539, -1.5848842056379744) +description = Gilman village, WI +station = ('krcx', 0.0062353252354244264) +zone = ('wiz017', 0.0038458141011039728) + +[fips5511929837] +centroid = (0.78826357515020251, -1.5726442465003232) +description = Goodrich town, WI +station = ('kmdz', 0.0026687680063357914) +zone = ('wiz030', 0.0063118715848724874) + +[fips5511931600] +centroid = (0.78967415025166432, -1.5742882768425317) +description = Greenwood town, WI +station = ('kmdz', 0.0028143611397953659) +zone = ('wiz017', 0.0037473456629849807) + +[fips5511931750] +centroid = (0.78897354018332877, -1.5815831422506297) +description = Grover town, WI +station = ('kmdz', 0.0042758023153211628) +zone = ('wiz017', 0.0014413761268362096) + +[fips5511932300] +centroid = (0.78805968578698449, -1.5796338538222474) +description = Hammel town, WI +station = ('kmdz', 0.0026559679175144975) +zone = ('wiz017', 0.0010317982066840206) + +[fips5511935525] +centroid = (0.78671073826141058, -1.5795690322938285) +description = Holway town, WI +station = ('kmdz', 0.0024971856196870559) +zone = ('wiz017', 0.002378862462958777) + +[fips5511938627] +centroid = (0.79124313143603719, -1.5837203153729893) +description = Jump River town, WI +station = ('krcx', 0.0042546685512683492) +zone = ('wiz017', 0.0036436168560678331) + +[fips5511944900] +centroid = (0.78664513133482816, -1.5771797463610182) +description = Little Black town, WI +station = ('kmdz', 0.00092710282958143064) +zone = ('wiz017', 0.0029590458663017682) + +[fips5511946150] +centroid = (0.78670695089693377, -1.5834258608748855) +description = Lublin village, WI +station = ('kmdz', 0.0051989365982275963) +zone = ('wiz017', 0.0036295669447856021) + +[fips5511946925] +centroid = (0.7913447270517957, -1.5857720720817563) +description = McKinley town, WI +station = ('krcx', 0.0032318527435435491) +zone = ('wiz016', 0.0041060979913362678) + +[fips5511948925] +centroid = (0.78685806150357152, -1.581580663883092) +description = Maplehurst town, WI +station = ('kmdz', 0.0038878390585904651) +zone = ('wiz017', 0.0026538563399945174) + +[fips5511950] +centroid = (0.74696077728077714, -1.5336583383063354) +description = Caledonia village, WI +station = ('krac', 0.00089358608947637112) +zone = ('wiz071', 0.0025010732813941072) + +[fips5511950425] +centroid = (0.78776116467172341, -1.5768033835611182) +description = Medford city, WI +station = ('kmdz', 0.00078166262905917793) +zone = ('wiz017', 0.0023445873583221597) + +[fips5511950450] +centroid = (0.78835956825906228, -1.5772016153365458) +description = Medford town, WI +station = ('kmdz', 0.0014305348407361188) +zone = ('wiz017', 0.0018049345845456805) + +[fips5511953550] +centroid = (0.78980183853974029, -1.5796677481163213) +description = Molitor town, WI +station = ('kmdz', 0.0036500642338557639) +zone = ('wiz017', 0.00071762223556634172) + +[fips5511962100] +centroid = (0.78973387541866757, -1.5859373896685054) +description = Pershing town, WI +station = ('krcx', 0.0046284208092514283) +zone = ('wiz016', 0.0051244311059888831) + +[fips5511967275] +centroid = (0.79097468234378787, -1.5743260108609598) +description = Rib Lake village, WI +station = ('kmdz', 0.0040093713871991203) +zone = ('wiz017', 0.0041280573530010503) + +[fips5511967300] +centroid = (0.7911461958493814, -1.5731011562452029) +description = Rib Lake town, WI +station = ('kmdz', 0.0045056892834780989) +zone = ('wiz017', 0.0049788015273156336) + +[fips5511969400] +centroid = (0.78676980020329812, -1.5838781454972473) +description = Roosevelt town, WI +station = ('kmdz', 0.0055120870412271455) +zone = ('wiz017', 0.0038374935888393852) + +[fips5511977100] +centroid = (0.78673281667644834, -1.5762697491423208) +description = Stetsonville village, WI +station = ('kmdz', 0.00044830309183370209) +zone = ('wiz017', 0.0032995841538984083) + +[fips5511978950] +centroid = (0.78706976994183842, -1.5860670676319284) +description = Taft town, WI +station = ('krcx', 0.0071640534208010087) +zone = ('wiz027', 0.0050116119639140849) + +[fips5511985450] +centroid = (0.79124782637172497, -1.5789016882010358) +description = Westboro town, WI +station = ('kmdz', 0.0045396084921947317) +zone = ('wiz017', 0.0022051039984687234) + +[fips55121] +centroid = (0.77323409117567377, -1.5945130300415944) +description = Trempealeau County, WI +station = ('kona', 0.0057383754602784841) +zone = ('wiz033', 1.7202627454323276e-05) + +[fips5512100925] +centroid = (0.77760472723522545, -1.5966017877305037) +description = Albion town, WI +station = ('keau', 0.0054666532717372414) +zone = ('wiz028', 0.0038560722922941159) + +[fips5512102500] +centroid = (0.77229749513917612, -1.5968858575195584) +description = Arcadia city, WI +station = ('kona', 0.0038727282425346636) +zone = ('wiz033', 0.0019520176328663098) + +[fips5512102525] +centroid = (0.77213784987249623, -1.5963293941941448) +description = Arcadia town, WI +station = ('kona', 0.0040385083925891258) +zone = ('wiz033', 0.001715173495580446) + +[fips5512108075] +centroid = (0.77310457029188329, -1.5922227217306648) +description = Blair city, WI +station = ('kbck', 0.0047860997352114215) +zone = ('wiz033', 0.0016410941524654065) + +[fips5512111325] +centroid = (0.77468020118070624, -1.5964472562785321) +description = Burnside town, WI +station = ('kona', 0.0060151801551396235) +zone = ('wiz033', 0.0019923931970717065) + +[fips5512111975] +centroid = (0.76826325383965377, -1.5945236940033241) +description = Caledonia town, WI +station = ('klse', 0.0027269887663742194) +zone = ('wiz041', 0.0036360912657765264) + +[fips5512114525] +centroid = (0.77579998697549335, -1.5964140950227441) +description = Chimney Rock town, WI +station = ('kona', 0.0070279039942261132) +zone = ('wiz033', 0.0028909829279927775) + +[fips5512120300] +centroid = (0.77013063396624015, -1.5971993884663864) +description = Dodge town, WI +station = ('kona', 0.0024576631574752014) +zone = ('wiz033', 0.0036687180588815074) + +[fips5512123175] +centroid = (0.77800784593255867, -1.5964570999355132) +description = Eleva village, WI +station = ('keau', 0.0050658091105386599) +zone = ('wiz028', 0.0034797926533472519) + +[fips5512124400] +centroid = (0.77091252401784105, -1.5928872907499467) +description = Ettrick village, WI +station = ('klse', 0.0050077572361920744) +zone = ('wiz033', 0.0026101664498142923) + +[fips5512124425] +centroid = (0.7712851867197269, -1.592601877057368) +description = Ettrick town, WI +station = ('kbck', 0.0050989634486901447) +zone = ('wiz033', 0.0023926538911848757) + +[fips5512128150] +centroid = (0.7697544631525578, -1.5934055313647413) +description = Gale town, WI +station = ('klse', 0.0038878506418947773) +zone = ('wiz033', 0.0035842043266880214) + +[fips5512128200] +centroid = (0.76939464607396668, -1.5945100804351586) +description = Galesville city, WI +station = ('klse', 0.0037437364087743777) +zone = ('wiz033', 0.0038560265256656285) + +[fips5512132050] +centroid = (0.77609602972321656, -1.5933570112115358) +description = Hale town, WI +station = ('keau', 0.0073657550506862285) +zone = ('wiz033', 0.0029615938956482494) + +[fips5512136800] +centroid = (0.77425479462882507, -1.5955651145146965) +description = Independence city, WI +station = ('kona', 0.0059929557572179432) +zone = ('wiz033', 0.0012575806798953574) + +[fips5512144500] +centroid = (0.77441014638554517, -1.5946293736895323) +description = Lincoln town, WI +station = ('kona', 0.0065273696329785219) +zone = ('wiz033', 0.0011627937228608175) + +[fips5512160575] +centroid = (0.77805380045176364, -1.5919429803581551) +description = Osseo city, WI +station = ('keau', 0.0060437311647152702) +zone = ('wiz028', 0.0027366739182517938) + +[fips5512162650] +centroid = (0.77487869747653548, -1.5921306556126222) +description = Pigeon town, WI +station = ('kbck', 0.0053126881866371748) +zone = ('wiz033', 0.0023530944689298884) + +[fips5512162675] +centroid = (0.77536086213569155, -1.5918934653672761) +description = Pigeon Falls village, WI +station = ('kbck', 0.0054200910752880156) +zone = ('wiz033', 0.002818321735276132) + +[fips5512165500] +centroid = (0.77306889576197257, -1.5925987180114218) +description = Preston town, WI +station = ('kbck', 0.0050463517730635482) +zone = ('wiz033', 0.0013775488164705161) + +[fips5512177825] +centroid = (0.77759545953689735, -1.5950179887007814) +description = Strum village, WI +station = ('keau', 0.0056023508619388674) +zone = ('wiz028', 0.0032872771027833234) + +[fips5512178500] +centroid = (0.77768281326595978, -1.5920286585711354) +description = Sumner town, WI +station = ('keau', 0.0063233268774534942) +zone = ('wiz028', 0.0030708042656383086) + +[fips5512180475] +centroid = (0.76800794707667208, -1.5957647103679546) +description = Trempealeau village, WI +station = ('klse', 0.0030914363388218256) +zone = ('wiz041', 0.0043098634231409126) + +[fips5512180500] +centroid = (0.7691923624136604, -1.5963077695647125) +description = Trempealeau town, WI +station = ('kona', 0.0029950966423181089) +zone = ('wiz033', 0.0042588627788926704) + +[fips5512181875] +centroid = (0.77756948903762779, -1.5942761190489287) +description = Unity town, WI +station = ('keau', 0.0057618543262913501) +zone = ('wiz028', 0.0031477722911737831) + +[fips5512186725] +centroid = (0.77432218179124457, -1.593970058111299) +description = Whitehall city, WI +station = ('kbck', 0.0062976797647774372) +zone = ('wiz033', 0.0011381687932807182) + +[fips5512200] +centroid = (0.7599400578895732, -1.5552887622316616) +description = Cambria village, WI +station = ('kunu', 0.0055426805959145967) +zone = ('wiz057', 0.0031028750354595842) + +[fips5512225] +centroid = (0.75060598469002993, -1.5537167441743902) +description = Cambridge village, WI +station = ('kmsn', 0.0047379158883148684) +zone = ('wiz064', 0.003143131340980532) + +[fips5512250] +centroid = (0.79244136978070134, -1.6011595230858691) +description = Cameron village, WI +station = ('krpd', 0.00048676620181999092) +zone = ('wiz015', 0.0013781011846396188) + +[fips55123] +centroid = (0.76096107550198977, -1.5850247046427599) +description = Vernon County, WI +station = ('ky51', 0.0011157097758331532) +zone = ('wiz053', 0.00026372295962645732) + +[fips5512306900] +centroid = (0.76199401371319764, -1.5918799739721583) +description = Bergen town, WI +station = ('klse', 0.0039502585577611106) +zone = ('wiz041', 0.0044744856488141927) + +[fips5512314150] +centroid = (0.76200467767492741, -1.5899729225116741) +description = Chaseburg village, WI +station = ('ky51', 0.0028615931691371621) +zone = ('wiz053', 0.0035312040012252634) + +[fips5512314675] +centroid = (0.7623742685973296, -1.5855632608900476) +description = Christiana town, WI +station = ('ky51', 0.0018631283549465352) +zone = ('wiz053', 0.0015243398626505638) + +[fips5512315675] +centroid = (0.76247139617020321, -1.5837249928553847) +description = Clinton town, WI +station = ('ky51', 0.0027186233210173857) +zone = ('wiz053', 0.0020012316428107118) + +[fips5512316875] +centroid = (0.76265411468959443, -1.5878649662009927) +description = Coon town, WI +station = ('ky51', 0.0022446335620842717) +zone = ('wiz053', 0.0025527865018137438) + +[fips5512316900] +centroid = (0.76274192220426229, -1.588448848648955) +description = Coon Valley village, WI +station = ('ky51', 0.002532503426539978) +zone = ('wiz053', 0.0029240798542907735) + +[fips5512319850] +centroid = (0.75804058115804274, -1.591749562970449) +description = De Soto village, WI +station = ('ky51', 0.0046097891288784483) +zone = ('iaz011', 0.0034307593120080529) + +[fips5512325] +centroid = (0.76091988573164282, -1.540786996009766) +description = Campbellsport village, WI +station = ('ketb', 0.0036175124193261994) +zone = ('wiz051', 0.003780331686891427) + +[fips5512326550] +centroid = (0.7625205446419393, -1.579353274691697) +description = Forest town, WI +station = ('kvok', 0.0051074195121328467) +zone = ('wiz042', 0.0047563812945554144) + +[fips5512327400] +centroid = (0.75888931731999509, -1.5863668628375436) +description = Franklin town, WI +station = ('ky51', 0.0017520499896014053) +zone = ('wiz053', 0.0020989424249331068) + +[fips5512328625] +centroid = (0.76049821418436092, -1.5921949884488504) +description = Genoa village, WI +station = ('ky51', 0.0041284952505781141) +zone = ('mnz096', 0.0037798872252913754) + +[fips5512328650] +centroid = (0.76001957509029405, -1.5912710635027223) +description = Genoa town, WI +station = ('ky51', 0.0035125584297370769) +zone = ('wiz053', 0.0043643436676912015) + +[fips5512331625] +centroid = (0.76110201083908846, -1.5773555533765715) +description = Greenwood town, WI +station = ('kvok', 0.0058435345475665833) +zone = ('wiz055', 0.0041115538065183491) + +[fips5512332225] +centroid = (0.76245551367400999, -1.5896967416108385) +description = Hamburg town, WI +station = ('ky51', 0.0029420728744968339) +zone = ('wiz053', 0.0035224846985791769) + +[fips5512332725] +centroid = (0.76053565149681623, -1.5897570427364949) +description = Harmony town, WI +station = ('ky51', 0.0023621577348220246) +zone = ('wiz053', 0.0032016678049836688) + +[fips5512334825] +centroid = (0.76192896529197573, -1.5766613661198834) +description = Hillsboro city, WI +station = ('kvok', 0.004930437699476496) +zone = ('wiz055', 0.0050231926633875542) + +[fips5512334850] +centroid = (0.76252293574301455, -1.5772312161206594) +description = Hillsboro town, WI +station = ('kvok', 0.0044480310494283181) +zone = ('wiz043', 0.0052092032118355638) + +[fips5512337975] +centroid = (0.76066320015855193, -1.5878049617813095) +description = Jefferson town, WI +station = ('ky51', 0.00094601865842414026) +zone = ('wiz053', 0.0017819626372444081) + +[fips5512339475] +centroid = (0.75877267696608419, -1.5833161843846901) +description = Kickapoo town, WI +station = ('ky51', 0.0029679851686244007) +zone = ('wiz053', 0.0025571062565212426) + +[fips5512340875] +centroid = (0.76057132602672706, -1.5819143010229031) +description = La Farge village, WI +station = ('ky51', 0.0033222458988737395) +zone = ('wiz053', 0.0025117110451749508) + +[fips5512343900] +centroid = (0.75979957633808015, -1.5834223004032115) +description = Liberty town, WI +station = ('ky51', 0.0023826220815380389) +zone = ('wiz053', 0.0017573978189425632) + +[fips5512350] +centroid = (0.76654290024925553, -1.5755044920784913) +description = Camp Douglas village, WI +station = ('kvok', 0.00024156383555220767) +zone = ('wiz043', 0.001959895408702931) + +[fips5512360075] +centroid = (0.76309144184026667, -1.5811499689835773) +description = Ontario village, WI +station = ('kcmy', 0.004509677694377958) +zone = ('wiz042', 0.0039180554177915862) + +[fips5512366450] +centroid = (0.75832365610942365, -1.5840448069875204) +description = Readstown village, WI +station = ('ky51', 0.0029203180173672182) +zone = ('wiz053', 0.002706819761633361) + +[fips5512376725] +centroid = (0.76085401700567257, -1.5815082327191343) +description = Stark town, WI +station = ('ky51', 0.0036216434726643303) +zone = ('wiz053', 0.0027891614054295416) + +[fips5512377075] +centroid = (0.75890738147775316, -1.5889504911825632) +description = Sterling town, WI +station = ('ky51', 0.0024809796200135998) +zone = ('wiz053', 0.0032524448371136772) + +[fips5512377550] +centroid = (0.76205049256779223, -1.5919627898451654) +description = Stoddard village, WI +station = ('klse', 0.003886618600270249) +zone = ('wiz041', 0.0044361785698428359) + +[fips5512381675] +centroid = (0.76087262221549878, -1.5794262469077227) +description = Union town, WI +station = ('ky51', 0.0051285538294903819) +zone = ('wiz055', 0.0039130236105989757) + +[fips5512382900] +centroid = (0.75931803999745484, -1.5826176512581644) +description = Viola village, WI +station = ('ky51', 0.0031082514233142337) +zone = ('wiz053', 0.0025134261741722266) + +[fips5512382925] +centroid = (0.76022236489608319, -1.5862725976046432) +description = Viroqua city, WI +station = ('ky51', 0.00044762959033160424) +zone = ('wiz053', 0.00091684511118641479) + +[fips5512382950] +centroid = (0.76045229457174102, -1.5852780391836869) +description = Viroqua town, WI +station = ('ky51', 0.00090428452060034115) +zone = ('wiz053', 0.00040905739294046337) + +[fips5512385050] +centroid = (0.76091763425690773, -1.5837110127680762) +description = Webster town, WI +station = ('ky51', 0.002038824870366098) +zone = ('wiz053', 0.0011953033170086522) + +[fips5512385475] +centroid = (0.761886204725302, -1.5857746202624643) +description = Westby city, WI +station = ('ky51', 0.0013533494266412163) +zone = ('wiz053', 0.0010721213896636383) + +[fips5512386525] +centroid = (0.75845279302077873, -1.5914740103881442) +description = Wheatland town, WI +station = ('ky51', 0.0042179278900001029) +zone = ('iaz011', 0.0038747274333236505) + +[fips5512386900] +centroid = (0.76248188559900765, -1.5819087683291744) +description = Whitestown town, WI +station = ('ky51', 0.0037995425993910046) +zone = ('wiz053', 0.0029792025870236244) + +[fips5512400] +centroid = (0.74229741459908105, -1.5384373988641462) +description = Camp Lake CDP, WI +station = ('kenw', 0.0029903349459884953) +zone = ('wiz072', 0.0015632214671275439) + +[fips55125] +centroid = (0.80372146764292562, -1.562091566963745) +description = Vilas County, WI +station = ('klnl', 0.003944025791163837) +zone = ('wiz005', 0.00017251007082581506) + +[fips5512502450] +centroid = (0.80226462386299358, -1.565285030802704) +description = Arbor Vitae town, WI +station = ('karv', 0.00082929362355128519) +zone = ('wiz005', 0.0025492010455893314) + +[fips5512508950] +centroid = (0.80458650518009178, -1.565307824802735) +description = Boulder Junction town, WI +station = ('kd25', 0.0024135884972246208) +zone = ('wiz005', 0.002220797123361362) + +[fips5512515850] +centroid = (0.80184848500944061, -1.5596965912575731) +description = Cloverland town, WI +station = ('kegv', 0.0011669781274607749) +zone = ('wiz005', 0.0026555622719217757) + +[fips5512516750] +centroid = (0.80387048385446103, -1.5583746963354053) +description = Conover town, WI +station = ('klnl', 0.0019057559012306694) +zone = ('wiz005', 0.0027450944345105599) + +[fips5512521625] +centroid = (0.80153692628466711, -1.5578444129487719) +description = Eagle River city, WI +station = ('kegv', 0.00018311450673481083) +zone = ('wiz005', 0.0038356405513526762) + +[fips5512540687] +centroid = (0.80231136378036194, -1.5686737795316688) +description = Lac du Flambeau town, WI +station = ('karv', 0.0018673453954660714) +zone = ('wiz005', 0.0046438711101961776) + +[fips5512542325] +centroid = (0.80540382541550803, -1.5601707972153402) +description = Land O'Lakes town, WI +station = ('klnl', 0.0021715371875468273) +zone = ('wiz005', 0.002211648253487276) + +[fips5512544525] +centroid = (0.80123210453080618, -1.5576457595733098) +description = Lincoln town, WI +station = ('kegv', 0.00050757851313958406) +zone = ('wiz005', 0.0041293635691769283) + +[fips5512548462] +centroid = (0.80480931391240129, -1.5684883382986443) +description = Manitowish Waters town, WI +station = ('kd25', 0.00024556521181929848) +zone = ('miz009', 0.0055853423336906117) + +[fips5512562425] +centroid = (0.80367561784347585, -1.5545156860927833) +description = Phelps town, WI +station = ('klnl', 0.0025563466073707701) +zone = ('miz010', 0.0070760360688815844) + +[fips5512563625] +centroid = (0.80372146764292562, -1.562091566963745) +description = Plum Lake town, WI +station = ('klnl', 0.003944025791163837) +zone = ('wiz005', 0.00017251007082581506) + +[fips5512565425] +centroid = (0.80638307729892467, -1.5653589105899408) +description = Presque Isle town, WI +station = ('kd25', 0.0027313980819482398) +zone = ('wiz005', 0.003349019048321431) + +[fips5512570725] +centroid = (0.80154546094470935, -1.5623472576991622) +description = St. Germain town, WI +station = ('karv', 0.0026433382397166956) +zone = ('wiz005', 0.0022293143454506685) + +[fips5512583750] +centroid = (0.80186911480119916, -1.5556417899794626) +description = Washington town, WI +station = ('kegv', 0.0016816244057214012) +zone = ('wiz005', 0.0050204754604961802) + +[fips5512587600] +centroid = (0.80679418960423177, -1.5686464476755826) +description = Winchester town, WI +station = ('kd25', 0.0018151435655827024) +zone = ('miz009', 0.0038776972654591189) + +[fips5512675] +centroid = (0.78056932604937057, -1.5515901302940052) +description = Caroline CDP, WI +station = ('kcli', 0.0028294932036699904) +zone = ('wiz031', 0.0020195280155019253) + +[fips55127] +centroid = (0.74469900510311771, -1.5453447313651314) +description = Walworth County, WI +station = ('kbuu', 0.0030661750383866059) +zone = ('wiz070', 7.1439529858802245e-06) + +[fips5512708275] +centroid = (0.74245102102654903, -1.5422654993257152) +description = Bloomfield town, WI +station = ('kbuu', 0.0027520301500990212) +zone = ('wiz070', 0.0031985640707161496) + +[fips5512711200] +centroid = (0.74514034651106953, -1.5413318878022386) +description = Burlington city, WI +station = ('kbuu', 0.00010359215675615692) +zone = ('wiz071', 0.0034253989431190577) + +[fips5512718825] +centroid = (0.74352315933275659, -1.5483281448286128) +description = Darien village, WI +station = ('kbuu', 0.00546673637829351) +zone = ('wiz070', 0.0024912966533452174) + +[fips5512718850] +centroid = (0.74390325713725602, -1.5484894307047896) +description = Darien town, WI +station = ('kjvl', 0.0040010099753252388) +zone = ('wiz070', 0.0024463337302052007) + +[fips5512719450] +centroid = (0.7440127940011112, -1.5469141837884022) +description = Delavan city, WI +station = ('kbuu', 0.0043324156510177146) +zone = ('wiz070', 0.0013445566241679665) + +[fips5512719475] +centroid = (0.74359801650437463, -1.5459217895757182) +description = Delavan town, WI +station = ('kbuu', 0.0037747293469619619) +zone = ('wiz070', 0.0011855759219588243) + +[fips5512722100] +centroid = (0.74673842233407306, -1.5427623247505882) +description = East Troy village, WI +station = ('kbuu', 0.0020044488053391199) +zone = ('wiz070', 0.0027818073972899165) + +[fips5512722125] +centroid = (0.74655097397240888, -1.5418370209943508) +description = East Troy town, WI +station = ('kbuu', 0.0015315413308941187) +zone = ('wiz070', 0.0031712166680583948) + +[fips5512723300] +centroid = (0.74481822854432145, -1.5451381541948652) +description = Elkhorn city, WI +station = ('kbuu', 0.0029018458819408711) +zone = ('wiz070', 0.00019070989201324978) + +[fips5512726350] +centroid = (0.74255577568825382, -1.5458295838313356) +description = Fontana-on-Geneva Lake village, WI +station = ('kbuu', 0.0042416787839802284) +zone = ('wiz070', 0.0021790959230875546) + +[fips5512728550] +centroid = (0.74402572689086843, -1.5443032061340038) +description = Geneva town, WI +station = ('kbuu', 0.0025129183126919928) +zone = ('wiz070', 0.0010260080349697334) + +[fips5512728675] +centroid = (0.74184252943613371, -1.5414990205314094) +description = Genoa City village, WI +station = ('kbuu', 0.0032552740824809152) +zone = ('ilz005', 0.0035671437737782022) + +[fips5512740950] +centroid = (0.74548902838903297, -1.5444451537620685) +description = Lafayette town, WI +station = ('kbuu', 0.0024119568607759109) +zone = ('wiz070', 0.0010264001807505755) + +[fips5512741050] +centroid = (0.74684179818566876, -1.5462204503173194) +description = La Grange town, WI +station = ('kbuu', 0.0040764379387836129) +zone = ('wiz070', 0.0022301236284289518) + +[fips5512741450] +centroid = (0.74322057160033839, -1.5433625085737639) +description = Lake Geneva city, WI +station = ('kbuu', 0.0024514107520946116) +zone = ('wiz070', 0.0020831457848106195) + +[fips5512744750] +centroid = (0.74233459011214853, -1.5442154335259211) +description = Linn town, WI +station = ('kbuu', 0.0035348079644824935) +zone = ('wiz070', 0.0025134255116401505) + +[fips5512746725] +centroid = (0.74379194003756366, -1.5422970897851764) +description = Lyons town, WI +station = ('kbuu', 0.0015258855101524303) +zone = ('wiz070', 0.0024229567761588681) + +[fips5512755050] +centroid = (0.74764122879625217, -1.5414410756002432) +description = Mukwonago village, WI +station = ('kbuu', 0.0025562013046260598) +zone = ('wiz065', 0.0031709983683452952) + +[fips5512767725] +centroid = (0.74545537844105447, -1.548210160571178) +description = Richmond town, WI +station = ('kbuu', 0.0051586956772686592) +zone = ('wiz070', 0.0022335483896933944) + +[fips5512772875] +centroid = (0.74173883942527274, -1.5486314481460246) +description = Sharon village, WI +station = ('kjvl', 0.0044108857220577094) +zone = ('ilz004', 0.0032892709989990098) + +[fips5512772900] +centroid = (0.74241412476616186, -1.5484138928547633) +description = Sharon town, WI +station = ('kjvl', 0.0042885613699687906) +zone = ('wiz070', 0.0032164479215919979) + +[fips5512776175] +centroid = (0.74540663139504637, -1.5423148572369618) +description = Spring Prairie town, WI +station = ('kbuu', 0.0008725272653388195) +zone = ('wiz070', 0.0023368395156892177) + +[fips5512778100] +centroid = (0.74554592612264792, -1.5464660006897826) +description = Sugar Creek town, WI +station = ('kbuu', 0.0038905647984012436) +zone = ('wiz070', 0.0011753394883057715) + +[fips5512780875] +centroid = (0.74703690854274918, -1.5442412993054355) +description = Troy town, WI +station = ('kbuu', 0.0029578737805426667) +zone = ('wiz070', 0.002468680684477126) + +[fips5512783250] +centroid = (0.74230821818715087, -1.5463044355609254) +description = Walworth village, WI +station = ('kbuu', 0.0046701480443095845) +zone = ('wiz070', 0.0024988889152338521) + +[fips5512783275] +centroid = (0.74295245412064703, -1.5468653494759315) +description = Walworth town, WI +station = ('kbuu', 0.0046794175318540208) +zone = ('wiz070', 0.0020788356075483231) + +[fips5512786925] +centroid = (0.74754813293395084, -1.5487298149026669) +description = Whitewater city, WI +station = ('kjvl', 0.005348338954585424) +zone = ('wiz064', 0.0033479082699633357) + +[fips5512786950] +centroid = (0.74658624707659171, -1.5486802475519104) +description = Whitewater town, WI +station = ('kjvl', 0.0047554274253470705) +zone = ('wiz070', 0.0030870778925101822) + +[fips5512787200] +centroid = (0.74314091477327726, -1.5454127992059592) +description = Williams Bay village, WI +station = ('kbuu', 0.0036565567675404596) +zone = ('wiz070', 0.0015656304912806947) + +[fips5512825] +centroid = (0.7620364775738987, -1.5360434354489407) +description = Cascade village, WI +station = ('ksbm', 0.0029216159270974017) +zone = ('wiz052', 0.0013141238446980441) + +[fips5512850] +centroid = (0.77763469453848222, -1.5292624298792148) +description = Casco village, WI +station = ('ksue', 0.0057320212962825856) +zone = ('wiz040', 0.00068487895674914018) + +[fips55129] +centroid = (0.80097458119967446, -1.6021498229034508) +description = Washburn County, WI +station = ('khyr', 0.0047295459206628497) +zone = ('wiz007', 0.00013514524505709293) + +[fips5512904950] +centroid = (0.79722837158660875, -1.6051976564696233) +description = Barronett town, WI +station = ('kube', 0.0031121794596656763) +zone = ('wiz007', 0.0044422289340208549) + +[fips5512905125] +centroid = (0.79886123182160462, -1.6052810483012838) +description = Bashaw town, WI +station = ('kube', 0.0047395782784204216) +zone = ('wiz007', 0.0031662832392379547) + +[fips5512905225] +centroid = (0.8018012913064666, -1.5986689033366881) +description = Bass Lake town, WI +station = ('khyr', 0.0022308007221166159) +zone = ('wiz007', 0.0024619588376314405) + +[fips5512905875] +centroid = (0.79860311507852721, -1.6026968090910259) +description = Beaver Brook town, WI +station = ('kube', 0.0048965467864658498) +zone = ('wiz007', 0.002530175151718684) + +[fips5512907550] +centroid = (0.79687387776223628, -1.5978609031594773) +description = Birchwood village, WI +station = ('krpd', 0.0049893115391312663) +zone = ('wiz007', 0.0051361307761503897) + +[fips5512907575] +centroid = (0.7979061702016208, -1.5987274940396774) +description = Birchwood town, WI +station = ('khyr', 0.0055457882620565469) +zone = ('wiz007', 0.0039437981285460636) + +[fips5512910150] +centroid = (0.80296275556379126, -1.6031523923856736) +description = Brooklyn town, WI +station = ('khyr', 0.0048987699170266758) +zone = ('wiz007', 0.0020176262963672031) + +[fips5512912925] +centroid = (0.80193728736178205, -1.6051745134037418) +description = Casey town, WI +station = ('krzn', 0.0053565877900109997) +zone = ('wiz007', 0.0023257454068225858) + +[fips5512914425] +centroid = (0.80331189122736024, -1.6055028796492121) +description = Chicog town, WI +station = ('krzn', 0.0058615071002922721) +zone = ('wiz007', 0.0032636527957848444) + +[fips5512917850] +centroid = (0.80047231034753541, -1.6010306305206092) +description = Crystal town, WI +station = ('khyr', 0.0043437976319266117) +zone = ('wiz007', 0.00094792138621649824) + +[fips5512924600] +centroid = (0.80024655200879002, -1.6052625827177975) +description = Evergreen town, WI +station = ('kube', 0.0061245587673762333) +zone = ('wiz007', 0.0023861711296153131) + +[fips5512928025] +centroid = (0.80457704549554587, -1.5997566448864087) +description = Frog Creek town, WI +station = ('khyr', 0.0029128021696679016) +zone = ('wiz007', 0.0038326865187308309) + +[fips5512931825] +centroid = (0.80350684450480803, -1.6013428524704985) +description = Gull Lake town, WI +station = ('khyr', 0.0036559200940706397) +zone = ('wiz007', 0.002463694381916274) + +[fips5512945650] +centroid = (0.79745783002336845, -1.6007643281833399) +description = Long Lake town, WI +station = ('kube', 0.0047139360707607152) +zone = ('wiz007', 0.0037463950390629122) + +[fips5512947025] +centroid = (0.79876063104351969, -1.6013632728227469) +description = Madge town, WI +station = ('kube', 0.0054747820592899819) +zone = ('wiz007', 0.0023830541548447428) + +[fips5512950] +centroid = (0.76341542730931433, -1.5845619131383011) +description = Cashton village, WI +station = ('ky51', 0.0031104280369353967) +zone = ('wiz053', 0.0026225633511089853) + +[fips5512953250] +centroid = (0.80455289013869824, -1.6026721999485725) +description = Minong village, WI +station = ('khyr', 0.0047714761407628018) +zone = ('wiz007', 0.0034851402029842534) + +[fips5512953275] +centroid = (0.80488214650208689, -1.604428943653875) +description = Minong town, WI +station = ('krzn', 0.0074470100757512243) +zone = ('wiz007', 0.0041305005589520926) + +[fips5512971637] +centroid = (0.79710550040726835, -1.6027283646439019) +description = Sarona town, WI +station = ('kube', 0.00356713439978905) +zone = ('wiz007', 0.0040156580600901898) + +[fips5512973200] +centroid = (0.79807571148515954, -1.6041325518403013) +description = Shell Lake city, WI +station = ('kube', 0.0040697588374352944) +zone = ('wiz007', 0.0033464917960594177) + +[fips5512975625] +centroid = (0.79983039570194459, -1.6037916366775091) +description = Spooner city, WI +station = ('kube', 0.0058332588253147532) +zone = ('wiz007', 0.0017472346938081284) + +[fips5512975650] +centroid = (0.80002906653069905, -1.602705675363626) +description = Spooner town, WI +station = ('kube', 0.0062250288942834837) +zone = ('wiz007', 0.0011562244776980391) + +[fips5512975800] +centroid = (0.80196027334803077, -1.6008332861420862) +description = Springbrook town, WI +station = ('khyr', 0.0034926490469055112) +zone = ('wiz007', 0.001215379769873027) + +[fips5512977350] +centroid = (0.80331655125646306, -1.5989060586754491) +description = Stinnett town, WI +station = ('khyr', 0.0019537702896321105) +zone = ('wiz007', 0.0031213098580268059) + +[fips5512977650] +centroid = (0.80042136418666976, -1.5986616078604148) +description = Stone Lake town, WI +station = ('khyr', 0.0032508824286047928) +zone = ('wiz007', 0.0024586763589029099) + +[fips5512980450] +centroid = (0.80134762787399572, -1.6028302918722181) +description = Trego town, WI +station = ('khyr', 0.0050082908719829827) +zone = ('wiz007', 0.00059385034468129657) + +[fips5513050] +centroid = (0.74552039195569131, -1.5880600241981957) +description = Cassville village, WI +station = ('kpdc', 0.0056280891890600829) +zone = ('iaz042', 0.0045134150797139201) + +[fips55131] +centroid = (0.75731853844649266, -1.5399549102888777) +description = Washington County, WI +station = ('ketb', 0.0014359184363629898) +zone = ('wiz059', 0.00039807400065701231) + +[fips5513100425] +centroid = (0.75770020704731877, -1.5418474231566928) +description = Addison town, WI +station = ('ketb', 0.0027087863454390588) +zone = ('wiz059', 0.0016039029115715237) + +[fips5513105050] +centroid = (0.75855772221540863, -1.5399252745981786) +description = Barton town, WI +station = ('ketb', 0.0014815032940744216) +zone = ('wiz059', 0.0016363595156988259) + +[fips5513124225] +centroid = (0.75471061511828519, -1.5420247835152803) +description = Erin town, WI +station = ('kues', 0.0037933299024212859) +zone = ('wiz059', 0.0026903564741910997) + +[fips5513125375] +centroid = (0.7593118440786103, -1.5377321287667076) +description = Farmington town, WI +station = ('ketb', 0.0014788118200410646) +zone = ('wiz059', 0.0028694199367157872) + +[fips5513128875] +centroid = (0.75458484669238646, -1.5380713858667103) +description = Germantown village, WI +station = ('kmwc', 0.0023648871625445442) +zone = ('wiz059', 0.0026954203627183792) + +[fips5513128900] +centroid = (0.75532514554791241, -1.5386450232319633) +description = Germantown town, WI +station = ('ketb', 0.0025636722329773487) +zone = ('wiz059', 0.0018454081600314815) + +[fips5513133000] +centroid = (0.75608811623042171, -1.5424229280242452) +description = Hartford city, WI +station = ('ketb', 0.0035922517787069178) +zone = ('wiz059', 0.0020032328669843825) + +[fips5513133025] +centroid = (0.75629430942825238, -1.5420270349900154) +description = Hartford town, WI +station = ('ketb', 0.0032401743373494858) +zone = ('wiz059', 0.0016568932196514864) + +[fips5513137675] +centroid = (0.75624477698408066, -1.538831180049981) +description = Jackson village, WI +station = ('ketb', 0.0016955911023331758) +zone = ('wiz059', 0.0010403563939372338) + +[fips5513137700] +centroid = (0.756220551814063, -1.5377534915967521) +description = Jackson town, WI +station = ('ketb', 0.0016622436913260089) +zone = ('wiz059', 0.001722959992341407) + +[fips5513139300] +centroid = (0.75951241731624952, -1.5399016951999842) +description = Kewaskum village, WI +station = ('ketb', 0.0020954993193418275) +zone = ('wiz059', 0.0025910729113582244) + +[fips5513139325] +centroid = (0.7594451523268777, -1.5397156605550144) +description = Kewaskum town, WI +station = ('ketb', 0.0019604917771132322) +zone = ('wiz059', 0.002528051943556096) + +[fips5513150] +centroid = (0.7694586822042222, -1.5854294115897123) +description = Cataract CDP, WI +station = ('kcmy', 0.0025724251344337564) +zone = ('wiz042', 0.0037039975744864412) + +[fips5513153000] +centroid = (0.75387332831622589, -1.5370233156508877) +description = Milwaukee city, WI +station = ('kmwc', 0.0014044552707260217) +zone = ('wiz066', 0.0034901420995552333) + +[fips5513156450] +centroid = (0.75803682870015088, -1.5367387920762277) +description = Newburg village, WI +station = ('ketb', 0.0010218218794969976) +zone = ('wiz060', 0.0014946958634610846) + +[fips5513163875] +centroid = (0.75660855596007381, -1.539575405896324) +description = Polk town, WI +station = ('ketb', 0.001636900626570059) +zone = ('wiz059', 0.00039985470903901814) + +[fips5513167475] +centroid = (0.75466972205391092, -1.5399741089106496) +description = Richfield village, WI +station = ('kues', 0.0034608202657398666) +zone = ('wiz059', 0.0022520199705906682) + +[fips5513174400] +centroid = (0.75634534285558064, -1.5407147917386108) +description = Slinger village, WI +station = ('ketb', 0.002416683805340871) +zone = ('wiz059', 0.00081702609044403734) + +[fips5513175] +centroid = (0.79477236171649479, -1.5801079027003815) +description = Catawba village, WI +station = ('kpbh', 0.0032771454021972009) +zone = ('wiz009', 0.0032666661396635582) + +[fips5513180575] +centroid = (0.75747214487396064, -1.5375466002672207) +description = Trenton town, WI +station = ('ketb', 0.00057218346263920449) +zone = ('wiz060', 0.0018408363927721388) + +[fips5513184900] +centroid = (0.7590370419878838, -1.5417762486297963) +description = Wayne town, WI +station = ('ketb', 0.0028999318309524389) +zone = ('wiz059', 0.0025094444317694089) + +[fips5513185350] +centroid = (0.75780122670442429, -1.5390609351927136) +description = West Bend city, WI +station = ('ketb', 0.00068259043522372182) +zone = ('wiz059', 0.0010779493079971954) + +[fips5513185375] +centroid = (0.75731853844649266, -1.5399549102888777) +description = West Bend town, WI +station = ('ketb', 0.0014359184363629898) +zone = ('wiz059', 0.00039807400065701231) + +[fips55133] +centroid = (0.75082856652953678, -1.5412427887439244) +description = Waukesha County, WI +station = ('kues', 0.00096798428565877742) +zone = ('wiz065', 3.5180350880257275e-05) + +[fips5513300] +centroid = (0.75965895516024695, -1.5743574966006659) +description = Cazenovia village, WI +station = ('klnr', 0.0053922334384808885) +zone = ('wiz056', 0.0036654438393328216) + +[fips5513307200] +centroid = (0.74869411612081027, -1.5396188995012838) +description = Big Bend village, WI +station = ('kues', 0.0025324976971705651) +zone = ('wiz065', 0.0024109202150505112) + +[fips5513310025] +centroid = (0.75161417413244447, -1.5379456348941043) +description = Brookfield city, WI +station = ('kmwc', 0.0014119423730680899) +zone = ('wiz066', 0.0021708749046847509) + +[fips5513310050] +centroid = (0.75118784255605975, -1.5389595141098802) +description = Brookfield town, WI +station = ('kues', 0.00077917123413002185) +zone = ('wiz065', 0.0016844407476372582) + +[fips5513311475] +centroid = (0.75238437047805706, -1.5371504279803105) +description = Butler village, WI +station = ('kmwc', 0.00051594836821849943) +zone = ('wiz066', 0.0022226307508585235) + +[fips5513314225] +centroid = (0.75264067207871244, -1.5425462006293136) +description = Chenequa village, WI +station = ('kues', 0.0023323126650335426) +zone = ('wiz065', 0.0020788373957420603) + +[fips5513319400] +centroid = (0.75166829679254887, -1.5426761578454171) +description = Delafield city, WI +station = ('kues', 0.0019907559267409694) +zone = ('wiz065', 0.0013777435101324394) + +[fips5513319425] +centroid = (0.75135021053637285, -1.541949350385009) +description = Delafield town, WI +station = ('kues', 0.0014132601551850651) +zone = ('wiz065', 0.00076887148259397787) + +[fips5513320550] +centroid = (0.7505954778079329, -1.5442429224616399) +description = Dousman village, WI +station = ('kues', 0.0031439266463884679) +zone = ('wiz065', 0.0022319862285238956) + +[fips5513321425] +centroid = (0.7484030999213328, -1.5440702046788626) +description = Eagle village, WI +station = ('kbuu', 0.003922192760835292) +zone = ('wiz065', 0.003190858541959963) + +[fips5513321450] +centroid = (0.74862416332439041, -1.5443637516057553) +description = Eagle town, WI +station = ('kues', 0.0040939829814320237) +zone = ('wiz065', 0.0031802404916139761) + +[fips5513323575] +centroid = (0.75132095881810934, -1.5374086843497281) +description = Elm Grove village, WI +station = ('kmwc', 0.0013874339480835797) +zone = ('wiz066', 0.0016895857719105517) + +[fips5513325] +centroid = (0.78210594882941131, -1.5437310872051999) +description = Cecil village, WI +station = ('kezs', 0.0014210480656139232) +zone = ('wiz074', 0.0040372942272214026) + +[fips5513328487] +centroid = (0.75000983257742615, -1.5422303658478729) +description = Genesee town, WI +station = ('kues', 0.0020096397435854694) +zone = ('wiz065', 0.001095213452854925) + +[fips5513333100] +centroid = (0.75227736434161718, -1.5417454435684987) +description = Hartland village, WI +station = ('kues', 0.0016493376340054114) +zone = ('wiz065', 0.0015221345918424493) + +[fips5513340750] +centroid = (0.7530362335003844, -1.5450587417138997) +description = Lac La Belle village, WI +station = ('kryv', 0.0024629915737970614) +zone = ('wiz065', 0.0035906511627081701) + +[fips5513342450] +centroid = (0.75319097439186611, -1.5385636734355279) +description = Lannon village, WI +station = ('kmwc', 0.0016645381809330174) +zone = ('wiz065', 0.0030659593195252691) + +[fips5513344850] +centroid = (0.75324193800602446, -1.5402602381882216) +description = Lisbon town, WI +station = ('kues', 0.0020400666161780115) +zone = ('wiz065', 0.002530195270229272) + +[fips5513351000] +centroid = (0.75327298741341742, -1.5380107880350811) +description = Menomonee Falls village, WI +station = ('kmwc', 0.0013479356402564305) +zone = ('wiz066', 0.0033101966935703509) + +[fips5513351375] +centroid = (0.75299930233341217, -1.5413411729538591) +description = Merton village, WI +station = ('kues', 0.002031826382246239) +zone = ('wiz065', 0.002194099085409503) + +[fips5513351400] +centroid = (0.75323488687584639, -1.5421526288829888) +description = Merton town, WI +station = ('kues', 0.0025528050055092072) +zone = ('wiz065', 0.0025242777886524429) + +[fips5513353000] +centroid = (0.75263976450750125, -1.5370728655483519) +description = Milwaukee city, WI +station = ('kmwc', 0.0004529945855766994) +zone = ('wiz066', 0.0023998144093332376) + +[fips5513355050] +centroid = (0.74814749645237821, -1.5415535446172419) +description = Mukwonago village, WI +station = ('kbuu', 0.0030672374665821414) +zone = ('wiz065', 0.0026722468008822781) + +[fips5513355075] +centroid = (0.7485677019230883, -1.5423966084591252) +description = Mukwonago town, WI +station = ('kues', 0.0031604267904874399) +zone = ('wiz065', 0.0024037844666853236) + +[fips5513355275] +centroid = (0.74824624718145605, -1.5382340330997035) +description = Muskego city, WI +station = ('kues', 0.0032399067102431432) +zone = ('wiz071', 0.0023846104975276177) + +[fips5513355550] +centroid = (0.75204130856028506, -1.5430116275809431) +description = Nashotah village, WI +station = ('kues', 0.0023351476812823436) +zone = ('wiz065', 0.0018073427912542719) + +[fips5513356375] +centroid = (0.75000288616700328, -1.5381441486432261) +description = New Berlin city, WI +station = ('kues', 0.0018295209061143364) +zone = ('wiz066', 0.0021627561170229053) + +[fips5513358400] +centroid = (0.74941687441735361, -1.5427900754856947) +description = North Prairie village, WI +station = ('kues', 0.0027022819112104807) +zone = ('wiz065', 0.0018110341413207112) + +[fips5513359250] +centroid = (0.75224449979180219, -1.5444887695400757) +description = Oconomowoc city, WI +station = ('kues', 0.0034211245737161881) +zone = ('wiz065', 0.0027971617406238815) + +[fips5513359275] +centroid = (0.75327063121892723, -1.5442644249180244) +description = Oconomowoc town, WI +station = ('kues', 0.0037189832032066533) +zone = ('wiz065', 0.0033258872374232842) + +[fips5513359300] +centroid = (0.75212934296775569, -1.543776902098065) +description = Oconomowoc Lake village, WI +station = ('kues', 0.0028911666684008517) +zone = ('wiz065', 0.0022980253490729411) + +[fips5513360700] +centroid = (0.74983695771501624, -1.5444687331602629) +description = Ottawa town, WI +station = ('kues', 0.003527506225459282) +zone = ('wiz065', 0.0025775502822387342) + +[fips5513362240] +centroid = (0.75164913307736181, -1.5401555707929795) +description = Pewaukee city, WI +station = ('kues', 0.0004502240086850808) +zone = ('wiz065', 0.001138335970267141) + +[fips5513362250] +centroid = (0.75200600054951716, -1.5402983387257927) +description = Pewaukee village, WI +station = ('kues', 0.00082150289931931639) +zone = ('wiz065', 0.0013691877078999698) + +[fips5513375] +centroid = (0.75570220647951325, -1.5356996230395903) +description = Cedarburg city, WI +station = ('ketb', 0.0027871266849874678) +zone = ('wiz060', 0.0015626438990274758) + +[fips5513378375] +centroid = (0.75129771103247289, -1.5442227290021944) +description = Summit town, WI +station = ('kues', 0.0030689731763280672) +zone = ('wiz065', 0.0022602103265116778) + +[fips5513378750] +centroid = (0.75286953710352633, -1.5397842519946177) +description = Sussex village, WI +station = ('kues', 0.0016697324756145178) +zone = ('wiz065', 0.0023082268105003622) + +[fips5513382575] +centroid = (0.74841241997953845, -1.5403321632066962) +description = Vernon town, WI +station = ('kues', 0.0028056900101304729) +zone = ('wiz065', 0.0024786703379768723) + +[fips5513383175] +centroid = (0.75059345322600057, -1.5423536908128186) +description = Wales village, WI +station = ('kues', 0.0018102047118087571) +zone = ('wiz065', 0.00086729367251175374) + +[fips5513384250] +centroid = (0.75065012406681286, -1.5401668805265325) +description = Waukesha city, WI +station = ('kues', 0.00056849333482056352) +zone = ('wiz065', 0.00077468056569126404) + +[fips5513384275] +centroid = (0.7498008119462074, -1.5402410919263272) +description = Waukesha town, WI +station = ('kues', 0.0014171138593623554) +zone = ('wiz065', 0.0012287278249026627) + +[fips5513475] +centroid = (0.76040935947214194, -1.532799967926912) +description = Cedar Grove village, WI +station = ('ksbm', 0.0037694403929031638) +zone = ('wiz052', 0.0030850244886958338) + +[fips55135] +centroid = (0.776287614515208, -1.5527671803415501) +description = Waupaca County, WI +station = ('kpcz', 0.002591008709355587) +zone = ('wiz037', 0.00013552870959404544) + +[fips5513505625] +centroid = (0.77750030418607863, -1.5497490522792465) +description = Bear Creek town, WI +station = ('kcli', 0.0013966115401220359) +zone = ('wiz037', 0.0025150113371133665) + +[fips5513507250] +centroid = (0.77868904793961191, -1.553696254008972) +description = Big Falls village, WI +station = ('kpcz', 0.0049219524249990137) +zone = ('wiz037', 0.0026263043822579847) + +[fips5513512000] +centroid = (0.77308161921221963, -1.5496304746098659) +description = Caledonia town, WI +station = ('kpcz', 0.0029286551531556102) +zone = ('wiz037', 0.0037878669590607323) + +[fips5513515725] +centroid = (0.77880291322001216, -1.5490096260883468) +description = Clintonville city, WI +station = ('kcli', 0.00029051235597277289) +zone = ('wiz031', 0.0029211789603016771) + +[fips5513519025] +centroid = (0.77284463840638373, -1.5562014647106994) +description = Dayton town, WI +station = ('kpcz', 0.0020716005330588807) +zone = ('wiz045', 0.0030887822593960107) + +[fips5513521200] +centroid = (0.77902654225707013, -1.5520709685029297) +description = Dupont town, WI +station = ('kcli', 0.002458902866129709) +zone = ('wiz037', 0.0029096389581557188) + +[fips5513523850] +centroid = (0.77964683227322895, -1.5481628970550341) +description = Embarrass village, WI +station = ('kcli', 0.0010477836076079059) +zone = ('wiz031', 0.002211913913401975) + +[fips5513525400] +centroid = (0.77449352076391298, -1.5563762070754092) +description = Farmington town, WI +station = ('kpcz', 0.0021071761442485433) +zone = ('wiz037', 0.0030897285395721399) + +[fips5513527800] +centroid = (0.77248155756209136, -1.5510765148017285) +description = Fremont village, WI +station = ('kpcz', 0.0022227957373843932) +zone = ('wiz037', 0.0038585619251841992) + +[fips5513527850] +centroid = (0.77250463081480281, -1.5524279930547176) +description = Fremont town, WI +station = ('kpcz', 0.0015199048649884898) +zone = ('wiz037', 0.0036565925454928312) + +[fips5513532925] +centroid = (0.77909050857415574, -1.556319099902284) +description = Harrison town, WI +station = ('kste', 0.0047605200451537582) +zone = ('wiz037', 0.0038940430793463301) + +[fips5513533850] +centroid = (0.77745579829015277, -1.5540125949358961) +description = Helvetia town, WI +station = ('kpcz', 0.0036995170037497534) +zone = ('wiz037', 0.0015908241886862585) + +[fips5513537025] +centroid = (0.77684095370126027, -1.5553893281031614) +description = Iola village, WI +station = ('kpcz', 0.0033259213928479303) +zone = ('wiz037', 0.0020182167778133122) + +[fips5513537050] +centroid = (0.77758210776811976, -1.5563369197139467) +description = Iola town, WI +station = ('kpcz', 0.0042828228030993105) +zone = ('wiz037', 0.0029423907792496904) + +[fips5513542650] +centroid = (0.77905162263842131, -1.5499847939013134) +description = Larrabee town, WI +station = ('kcli', 0.0010246231885392672) +zone = ('wiz031', 0.0027177471058566459) + +[fips5513543075] +centroid = (0.77595715387463526, -1.549631574167295) +description = Lebanon town, WI +station = ('kcli', 0.0027903434378960573) +zone = ('wiz037', 0.0022191741124812539) + +[fips5513544575] +centroid = (0.77292246263773023, -1.5541108220661983) +description = Lind town, WI +station = ('kpcz', 0.00091796364094091617) +zone = ('wiz037', 0.0033800221764459164) + +[fips5513545300] +centroid = (0.77556998748666539, -1.5523677442889388) +description = Little Wolf town, WI +station = ('kpcz', 0.002009172256570187) +zone = ('wiz037', 0.00063914094580356465) + +[fips5513548350] +centroid = (0.77599986208143168, -1.5519548692010869) +description = Manawa city, WI +station = ('kpcz', 0.0025261643446512325) +zone = ('wiz037', 0.0005735919709893842) + +[fips5513549400] +centroid = (0.7796790685045133, -1.5514144978113773) +description = Marion city, WI +station = ('kcli', 0.0022125064711395514) +zone = ('wiz031', 0.0025537357196376217) + +[fips5513549975] +centroid = (0.7790752369432008, -1.5475591876667694) +description = Matteson town, WI +station = ('kcli', 0.00088383272337362899) +zone = ('wiz031', 0.0029045888976814709) + +[fips5513555025] +centroid = (0.77410878038360331, -1.5498701955826275) +description = Mukwa town, WI +station = ('kpcz', 0.0026960338068559987) +zone = ('wiz037', 0.0028906640304037436) + +[fips5513556925] +centroid = (0.77480794182865975, -1.5489490631633025) +description = New London city, WI +station = ('kpcz', 0.0034906357344647518) +zone = ('wiz037', 0.003016403282370227) + +[fips5513559475] +centroid = (0.77592444640445302, -1.5537682488406166) +description = Ogdensburg village, WI +station = ('kpcz', 0.0021599368861395752) +zone = ('wiz037', 0.0007769010517225082) + +[fips5513569900] +centroid = (0.77436391261365978, -1.5521362787235393) +description = Royalton town, WI +station = ('kpcz', 0.0012106964435926002) +zone = ('wiz037', 0.001840288287194516) + +[fips5513570900] +centroid = (0.77613329250274654, -1.5542215981138221) +description = St. Lawrence town, WI +station = ('kpcz', 0.0024058649071768065) +zone = ('wiz037', 0.0010655964569823001) + +[fips5513571975] +centroid = (0.77598617870009601, -1.5559006746674107) +description = Scandinavia village, WI +station = ('kpcz', 0.0027571992676254406) +zone = ('wiz037', 0.0022700418176059903) + +[fips5513572000] +centroid = (0.77599385814880484, -1.5563312648471703) +description = Scandinavia town, WI +station = ('kpcz', 0.002956034994183592) +zone = ('wiz037', 0.0025760916856892532) + +[fips5513581700] +centroid = (0.77753051583543065, -1.551851214096811) +description = Union town, WI +station = ('kcli', 0.0025410454328056316) +zone = ('wiz037', 0.0015112505537535645) + +[fips5513584375] +centroid = (0.77405436101752612, -1.554564817111227) +description = Waupaca city, WI +station = ('kpcz', 0.00074089087578291734) +zone = ('wiz037', 0.0024764215963520844) + +[fips5513584400] +centroid = (0.77461354705657259, -1.5538992183476865) +description = Waupaca town, WI +station = ('kpcz', 0.00087102195219924971) +zone = ('wiz037', 0.0017534449125937803) + +[fips5513586400] +centroid = (0.77359263416391111, -1.5521759500574372) +description = Weyauwega city, WI +station = ('kpcz', 0.0010404089639461705) +zone = ('wiz037', 0.002592522630799832) + +[fips5513586425] +centroid = (0.77309516296721514, -1.5520174916146487) +description = Weyauwega town, WI +station = ('kpcz', 0.0013228313670211832) +zone = ('wiz037', 0.0031016656411247271) + +[fips5513589375] +centroid = (0.77921001126803979, -1.5540605914903256) +description = Wyoming town, WI +station = ('kcli', 0.0038862592553325827) +zone = ('wiz037', 0.0031991229036540539) + +[fips55137] +centroid = (0.76991403860606766, -1.5575274960631946) +description = Waushara County, WI +station = ('ky50', 0.0014874335581491309) +zone = ('wiz045', 3.9738256755670224e-05) + +[fips5513703925] +centroid = (0.7685550903438797, -1.5526119682111703) +description = Aurora town, WI +station = ('kpcz', 0.0052612660861313318) +zone = ('wiz048', 0.003977013712767854) + +[fips5513706925] +centroid = (0.76779370791098989, -1.5522470198645784) +description = Berlin city, WI +station = ('kpcz', 0.0060532258015496493) +zone = ('wiz047', 0.0035993521202406353) + +[fips5513708300] +centroid = (0.77135000824814592, -1.5522613315644449) +description = Bloomfield town, WI +station = ('kpcz', 0.0026031802783130268) +zone = ('wiz048', 0.0042850935190758945) + +[fips5513716375] +centroid = (0.76861608960123695, -1.5626221994162288) +description = Coloma village, WI +station = ('ky50', 0.0028511569207739927) +zone = ('wiz044', 0.0032314773674005748) + +[fips5513716400] +centroid = (0.76840535854735115, -1.5626629179476779) +description = Coloma town, WI +station = ('ky50', 0.0028921434035499411) +zone = ('wiz044', 0.0031316582635810318) + +[fips5513718475] +centroid = (0.76849985067305415, -1.5588793757419122) +description = Dakota town, WI +station = ('ky50', 0.00023166985501993186) +zone = ('wiz045', 0.0016975786119737299) + +[fips5513719300] +centroid = (0.7699304796076214, -1.5606270960949815) +description = Deerfield town, WI +station = ('ky50', 0.0018972897618603933) +zone = ('wiz045', 0.0021859820610753396) + +[fips5513732450] +centroid = (0.77023926325888425, -1.5623449713178419) +description = Hancock village, WI +station = ('ky50', 0.0030806148282953778) +zone = ('wiz044', 0.004265983156148203) + +[fips5513732475] +centroid = (0.76964396635761401, -1.5627271809707362) +description = Hancock town, WI +station = ('ky50', 0.0030834903861093076) +zone = ('wiz044', 0.0036761061432965597) + +[fips5513743500] +centroid = (0.76994475640090265, -1.554722350529512) +description = Leon town, WI +station = ('kpcz', 0.0039049988938035353) +zone = ('wiz045', 0.0020535870588281276) + +[fips5513745425] +centroid = (0.76861076634701841, -1.5554576402900844) +description = Lohrville village, WI +station = ('ky50', 0.0023002833431196084) +zone = ('wiz045', 0.0020102887981263977) + +[fips5513749425] +centroid = (0.7683850254615654, -1.5563897508304048) +description = Marion town, WI +station = ('ky50', 0.0016539688210588479) +zone = ('wiz045', 0.0017569689708712588) + +[fips5513754825] +centroid = (0.76989374042686698, -1.5565200222057736) +description = Mount Morris town, WI +station = ('ky50', 0.0019647704117642163) +zone = ('wiz045', 0.00076320243997233736) + +[fips5513759225] +centroid = (0.77144575701091034, -1.5607396000185652) +description = Oasis town, WI +station = ('ky50', 0.003155336643596904) +zone = ('wiz045', 0.0027316605562590561) + +[fips5513763150] +centroid = (0.77174790841101559, -1.5620218410601279) +description = Plainfield village, WI +station = ('ky50', 0.003914707236027706) +zone = ('wiz045', 0.0036724147938377335) + +[fips5513763175] +centroid = (0.77154923758226113, -1.5627502542234477) +description = Plainfield town, WI +station = ('ky50', 0.0041159551158733076) +zone = ('wiz036', 0.0047266281482607597) + +[fips5513764975] +centroid = (0.76979957991372183, -1.5524604387255123) +description = Poysippi town, WI +station = ('kpcz', 0.0040524822260169973) +zone = ('wiz048', 0.0038767020597272142) + +[fips5513766625] +centroid = (0.76887586440710387, -1.5553389229943639) +description = Redgranite village, WI +station = ('ky50', 0.0023937332587435959) +zone = ('wiz045', 0.0019196351999467929) + +[fips5513767550] +centroid = (0.76839520073110457, -1.560403885936944) +description = Richford town, WI +station = ('ky50', 0.0012853054797464789) +zone = ('wiz045', 0.0025359444422956303) + +[fips5513769425] +centroid = (0.77142357387611749, -1.5585741874689083) +description = Rose town, WI +station = ('ky50', 0.0027569653520528844) +zone = ('wiz045', 0.0016644801572820872) + +[fips5513771825] +centroid = (0.77143783321610637, -1.5542906782456161) +description = Saxeville town, WI +station = ('kpcz', 0.0023801428524137113) +zone = ('wiz045', 0.0028079636899103286) + +[fips5513776400] +centroid = (0.77143205617628219, -1.5567824150055185) +description = Springwater town, WI +station = ('ky50', 0.0030747942542975995) +zone = ('wiz045', 0.0016184156355851177) + +[fips5513783425] +centroid = (0.76840111739726891, -1.5544492065015747) +description = Warren town, WI +station = ('ky50', 0.0030365004146425782) +zone = ('wiz045', 0.0027150374876490071) + +[fips5513784625] +centroid = (0.76912082136762128, -1.5584240193400665) +description = Wautoma city, WI +station = ('ky50', 0.00048339499031671026) +zone = ('wiz045', 0.0010011012171356754) + +[fips5513784650] +centroid = (0.76980488571464789, -1.5585124377199726) +description = Wautoma town, WI +station = ('ky50', 0.0011423468839111032) +zone = ('wiz045', 0.00067739877198083392) + +[fips5513787075] +centroid = (0.77107000507624845, -1.5575858947799666) +description = Wild Rose village, WI +station = ('ky50', 0.0025227484650779323) +zone = ('wiz045', 0.0011511694856021662) + +[fips5513850] +centroid = (0.79322931612480674, -1.6154399990119046) +description = Centuria village, WI +station = ('koeo', 0.0029326362734037486) +zone = ('wiz014', 0.0014433716883744735) + +[fips5513880] +centroid = (0.77374952181037282, -1.5562238049251251) +description = Chain O' Lakes CDP, WI +station = ('kpcz', 0.0018699399886769128) +zone = ('wiz037', 0.0034671862144190504) + +[fips55139] +centroid = (0.76944074021951181, -1.5475511416989176) +description = Winnebago County, WI +station = ('kosh', 0.0025524442933734679) +zone = ('wiz048', 0.00041620961738285709) + +[fips5513901025] +centroid = (0.76835327792247177, -1.5467777863073591) +description = Algoma town, WI +station = ('kosh', 0.001356467920861608) +zone = ('wiz048', 0.0008357437127320379) + +[fips5513902375] +centroid = (0.7721048107897559, -1.5431127868643886) +description = Appleton city, WI +station = ('katw', 0.001301512688980344) +zone = ('wiz038', 0.0031671727076399325) + +[fips5513908000] +centroid = (0.76696816717479643, -1.5442543892748255) +description = Black Wolf town, WI +station = ('kosh', 0.00097260047550099579) +zone = ('wiz048', 0.0030095173684171659) + +[fips5513915150] +centroid = (0.7714510628118364, -1.5460476627213722) +description = Clayton town, WI +station = ('katw', 0.0011842689040178936) +zone = ('wiz048', 0.0024334365216819305) + +[fips5513950825] +centroid = (0.77164955910766575, -1.5435307059537784) +description = Menasha city, WI +station = ('katw', 0.0011860431453448296) +zone = ('wiz038', 0.0035736934330182326) + +[fips5513950850] +centroid = (0.77182847280928757, -1.5441589197647414) +description = Menasha town, WI +station = ('katw', 0.00071945494229095654) +zone = ('wiz038', 0.0033805358395522624) + +[fips5513955750] +centroid = (0.77086999034396997, -1.5441974915412104) +description = Neenah city, WI +station = ('katw', 0.0015255434428327612) +zone = ('wiz048', 0.0027258234622437988) + +[fips5513955775] +centroid = (0.7706687887878001, -1.5436168379523645) +description = Neenah town, WI +station = ('katw', 0.0018823984635614262) +zone = ('wiz048', 0.0029518930399811938) + +[fips5513955850] +centroid = (0.76660473726465361, -1.5462485501182766) +description = Nekimi town, WI +station = ('kosh', 0.00093495635790008058) +zone = ('wiz048', 0.0026223145657497042) + +[fips5513956100] +centroid = (0.76686728714403118, -1.5503837238084417) +description = Nepeuskun town, WI +station = ('kosh', 0.0035584599494405209) +zone = ('wiz048', 0.0032622511571000017) + +[fips5513959875] +centroid = (0.76862898758440923, -1.5487829427250976) +description = Omro city, WI +station = ('kosh', 0.0026862810624112576) +zone = ('wiz048', 0.0012894624462150863) + +[fips5513959900] +centroid = (0.76847648071436991, -1.5481089838344402) +description = Omro town, WI +station = ('kosh', 0.002188971022053416) +zone = ('wiz048', 0.00096697326072558781) + +[fips5513960500] +centroid = (0.76833980398064627, -1.5457046357101851) +description = Oshkosh city, WI +station = ('kosh', 0.00098894633052621847) +zone = ('wiz048', 0.0013102886076939186) + +[fips5513960525] +centroid = (0.76872210090000304, -1.5447585974424343) +description = Oshkosh town, WI +station = ('kosh', 0.0014570309516577708) +zone = ('wiz048', 0.0017635470525517913) + +[fips5513964875] +centroid = (0.76999212463680189, -1.5504329944532258) +description = Poygan town, WI +station = ('kpcz', 0.0044085575240952824) +zone = ('wiz048', 0.0025112971831846875) + +[fips5513970125] +centroid = (0.76826925777228061, -1.5501566041128798) +description = Rushford town, WI +station = ('kosh', 0.0034780886131963191) +zone = ('wiz048', 0.0023393408135754987) + +[fips5513982175] +centroid = (0.76684156099085676, -1.5481709953827634) +description = Utica town, WI +station = ('kosh', 0.001999993357038161) +zone = ('wiz048', 0.0024221340564425835) + +[fips5513982875] +centroid = (0.77000772788031457, -1.5452855472501963) +description = Vinland town, WI +station = ('katw', 0.0023164037002179325) +zone = ('wiz048', 0.0015856578009057838) + +[fips5513987650] +centroid = (0.77149827396810289, -1.5480852124500279) +description = Winchester town, WI +station = ('katw', 0.0024169979506352209) +zone = ('wiz048', 0.0024467619636177672) + +[fips5513987900] +centroid = (0.76989576500879919, -1.5483170270812776) +description = Winneconne village, WI +station = ('kosh', 0.0032476471300231613) +zone = ('wiz048', 0.0011289690208179058) + +[fips5513987925] +centroid = (0.76944074021951181, -1.5475511416989176) +description = Winneconne town, WI +station = ('kosh', 0.0025524442933734679) +zone = ('wiz048', 0.00041620961738285709) + +[fips5513988475] +centroid = (0.77121992885899482, -1.5503171394974782) +description = Wolf River town, WI +station = ('kpcz', 0.0034713565074454295) +zone = ('wiz048', 0.0030814896833770704) + +[fips55141] +centroid = (0.77599804693900964, -1.5714739508769835) +description = Wood County, WI +station = ('kmfi', 0.0034977573464165393) +zone = ('wiz035', 0.00011215268277267877) + +[fips5514103025] +centroid = (0.77736036368665373, -1.5713532439059155) +description = Arpin village, WI +station = ('kmfi', 0.0024953243481469836) +zone = ('wiz035', 0.0014739544487733212) + +[fips5514103050] +centroid = (0.77763261759667235, -1.5711757613742801) +description = Arpin town, WI +station = ('kmfi', 0.0024288779259077613) +zone = ('wiz035', 0.00175872300360995) + +[fips5514103775] +centroid = (0.77888373941767197, -1.5710457692515916) +description = Auburndale village, WI +station = ('kmfi', 0.0021027640356485163) +zone = ('wiz035', 0.003011605006566327) + +[fips5514103800] +centroid = (0.77915768629706494, -1.5711907362992623) +description = Auburndale town, WI +station = ('kmfi', 0.0020025138976594564) +zone = ('wiz035', 0.00327487117362815) + +[fips5514107650] +centroid = (0.77542109344817789, -1.5667081548214876) +description = Biron village, WI +station = ('kisw', 0.0013671975210637218) +zone = ('wiz035', 0.0034691939563414546) + +[fips5514112275] +centroid = (0.77870335963947834, -1.5737204165171028) +description = Cameron town, WI +station = ('kmfi', 0.00035451064196412253) +zone = ('wiz035', 0.0032190330223007481) + +[fips5514112775] +centroid = (0.77596615977357564, -1.5751526162479967) +description = Cary town, WI +station = ('kmfi', 0.0031424807796508448) +zone = ('wiz035', 0.002592233017174401) + +[fips5514117525] +centroid = (0.77403736151061175, -1.5710110546527696) +description = Cranmoor town, WI +station = ('kisw', 0.002254348386459762) +zone = ('wiz035', 0.0018896423195107215) + +[fips5514120075] +centroid = (0.77481766331259339, -1.5733398649269981) +description = Dexter town, WI +station = ('kmfi', 0.0042070651697547409) +zone = ('wiz035', 0.0016845195571699024) + +[fips5514130125] +centroid = (0.77457469602742313, -1.566515051593047) +description = Grand Rapids town, WI +station = ('kisw', 0.0010076522916569886) +zone = ('wiz035', 0.0038111828849354016) + +[fips5514132575] +centroid = (0.77622701668357874, -1.571129370522762) +description = Hansen town, WI +station = ('kisw', 0.0029842102608232646) +zone = ('wiz035', 0.00043742530887416471) + +[fips5514134250] +centroid = (0.77915896038741894, -1.5726268979275584) +description = Hewitt village, WI +station = ('kmfi', 0.00098737423656018752) +zone = ('wiz035', 0.0033610746926970581) + +[fips5514134675] +centroid = (0.77481356178885108, -1.5756315171414514) +description = Hiles town, WI +station = ('kmfi', 0.0043445067609976396) +zone = ('wiz035', 0.003126296146540536) + +[fips5514144550] +centroid = (0.77912953413623032, -1.5752548925421639) +description = Lincoln town, WI +station = ('kmfi', 0.00090523876498890691) +zone = ('wiz035', 0.0041906409075453321) + +[fips5514149675] +centroid = (0.77944194807233735, -1.5737617808203752) +description = Marshfield city, WI +station = ('kmfi', 0.00047363332718107899) +zone = ('wiz035', 0.0038926753336342547) + +[fips5514149700] +centroid = (0.77871536750473203, -1.5723931285275461) +description = Marshfield town, WI +station = ('kmfi', 0.0011754975996850618) +zone = ('wiz035', 0.0028914150920791794) + +[fips5514150] +centroid = (0.76200467767492741, -1.5899729225116741) +description = Chaseburg village, WI +station = ('ky51', 0.0028615931691371621) +zone = ('wiz053', 0.0035312040012252634) + +[fips5514151875] +centroid = (0.77851580655805908, -1.5682679904805801) +description = Milladore village, WI +station = ('kcwa', 0.0038836663077832347) +zone = ('wiz035', 0.0035028638520682932) + +[fips5514151900] +centroid = (0.77926561745800837, -1.5690101393851132) +description = Milladore town, WI +station = ('kcwa', 0.0037060155350917439) +zone = ('wiz035', 0.0038197737456363225) + +[fips5514155875] +centroid = (0.77341084066902333, -1.5691887214741773) +description = Nekoosa city, WI +station = ('kisw', 0.0013182264559499627) +zone = ('wiz035', 0.0029890564814650826) + +[fips5514163100] +centroid = (0.77565250665369978, -1.5731776714796102) +description = Pittsville city, WI +station = ('kmfi', 0.0033965878845712248) +zone = ('wiz035', 0.0012055749972065414) + +[fips5514164175] +centroid = (0.77418094974817331, -1.5681847208219672) +description = Port Edwards village, WI +station = ('kisw', 0.00026812361483544216) +zone = ('wiz035', 0.0029344334153164949) + +[fips5514164200] +centroid = (0.77293658235137885, -1.5704370333150812) +description = Port Edwards town, WI +station = ('kisw', 0.0023040406611209868) +zone = ('wiz035', 0.00305493214915595) + +[fips5514167000] +centroid = (0.77310052112801875, -1.5743269184321709) +description = Remington town, WI +station = ('kmfi', 0.0059028253608347349) +zone = ('wiz035', 0.0034361596561900821) + +[fips5514167500] +centroid = (0.77750505148164417, -1.573091260228344) +description = Richfield town, WI +station = ('kmfi', 0.0016266439595031277) +zone = ('wiz035', 0.0019636992445928878) + +[fips5514168625] +centroid = (0.77752463407585137, -1.5751395611851922) +description = Rock town, WI +station = ('kmfi', 0.0016839620294199086) +zone = ('wiz035', 0.0030534036397962257) + +[fips5514170000] +centroid = (0.77662041389697833, -1.567336351179158) +description = Rudolph village, WI +station = ('kisw', 0.0023097727356095428) +zone = ('wiz035', 0.0030745964655798106) + +[fips5514170025] +centroid = (0.77618624579225204, -1.5671712779385043) +description = Rudolph town, WI +station = ('kisw', 0.0019115432322471839) +zone = ('wiz035', 0.0031193262206252411) + +[fips5514171600] +centroid = (0.77291839602057311, -1.5672708315190382) +description = Saratoga town, WI +station = ('kisw', 0.0014926819110409157) +zone = ('wiz035', 0.0042514697810593187) + +[fips5514172575] +centroid = (0.77493112716726553, -1.5700275267126855) +description = Seneca town, WI +station = ('kisw', 0.0016381356418773908) +zone = ('wiz035', 0.0014358450624904697) + +[fips5514173475] +centroid = (0.77753313382930866, -1.5689662094478405) +description = Sherry town, WI +station = ('kisw', 0.0032803692701544969) +zone = ('wiz035', 0.0024534055500998507) + +[fips5514173900] +centroid = (0.77613292598360373, -1.5690879112565819) +description = Sigel town, WI +station = ('kisw', 0.001983427179907629) +zone = ('wiz035', 0.0017542258775359531) + +[fips5514175] +centroid = (0.79050944737837636, -1.5761257594790312) +description = Chelsea CDP, WI +station = ('kmdz', 0.0033466544560577568) +zone = ('wiz017', 0.0027940332690350846) + +[fips5514182650] +centroid = (0.77633040998846681, -1.5702288155353181) +description = Vesper village, WI +station = ('kisw', 0.002596217268154771) +zone = ('wiz035', 0.0010222368968117004) + +[fips5514188200] +centroid = (0.77480270584090372, -1.5677723693328913) +description = Wisconsin Rapids city, WI +station = ('kisw', 0.00046561597308923387) +zone = ('wiz035', 0.0028909842238253759) + +[fips5514188575] +centroid = (0.77620801004802453, -1.573261377470536) +description = Wood town, WI +station = ('kmfi', 0.0028393014839808639) +zone = ('wiz035', 0.0012808547321241941) + +[fips5514225] +centroid = (0.75264067207871244, -1.5425462006293136) +description = Chenequa village, WI +station = ('kues', 0.0023323126650335426) +zone = ('wiz065', 0.0020788373957420603) + +[fips5514325] +centroid = (0.790914869910322, -1.5996509302936153) +description = Chetek city, WI +station = ('krpd', 0.0023120926648614289) +zone = ('wiz015', 0.0030430433273194368) + +[fips5514440] +centroid = (0.80178216249786471, -1.5941129656704522) +description = Chief Lake CDP, WI +station = ('khyr', 0.0019400518985697572) +zone = ('wiz008', 0.0025386351000168399) + +[fips5514450] +centroid = (0.77900074629072569, -1.5771128478907892) +description = Chili CDP, WI +station = ('kmfi', 0.0022179324413772379) +zone = ('wiz029', 0.0035723076559296047) + +[fips5514475] +centroid = (0.76847175087209707, -1.5387113631968317) +description = Chilton city, WI +station = ('ksbm', 0.0058242242082185095) +zone = ('wiz049', 0.0011434860626405737) + +[fips5514575] +centroid = (0.78426174461488973, -1.595044831864677) +description = Chippewa Falls city, WI +station = ('keau', 0.0016637578205064879) +zone = ('wiz027', 0.0027084252236574857) + +[fips5514850] +centroid = (0.80567346133164874, -1.586604000723012) +description = Clam Lake CDP, WI +station = ('kasx', 0.0067785897523298475) +zone = ('wiz003', 0.0038328736606379884) + +[fips5515100] +centroid = (0.79111327893968875, -1.6085743973333344) +description = Clayton village, WI +station = ('kube', 0.0036934294106997314) +zone = ('wiz015', 0.0042248100449392111) + +[fips5515250] +centroid = (0.78978742212011877, -1.6103998371979953) +description = Clear Lake village, WI +station = ('krnh', 0.0037657402337653058) +zone = ('wiz014', 0.0042293327130417877) + +[fips5515400] +centroid = (0.76651380561062477, -1.5314617716295302) +description = Cleveland village, WI +station = ('ksbm', 0.0026885804348558986) +zone = ('wiz050', 0.0036104748047038528) + +[fips5515625] +centroid = (0.742763400056071, -1.5510411718843755) +description = Clinton village, WI +station = ('kjvl', 0.0023631341253809016) +zone = ('wiz069', 0.0032847361712468721) + +[fips5515725] +centroid = (0.77880291322001216, -1.5490096260883468) +description = Clintonville city, WI +station = ('kcli', 0.00029051235597277289) +zone = ('wiz031', 0.0029211789603016771) + +[fips5515900] +centroid = (0.75592955306787801, -1.5485143190999233) +description = Clyman village, WI +station = ('kunu', 0.0020247298750485703) +zone = ('wiz058', 0.0018405760446673785) + +[fips5515975] +centroid = (0.7499055491546196, -1.5765384076740805) +description = Cobb village, WI +station = ('kmrj', 0.0018825968630499564) +zone = ('wiz062', 0.0025423853289171187) + +[fips5516025] +centroid = (0.77190793765013088, -1.6029287808019084) +description = Cochrane village, WI +station = ('kona', 0.0030680474453000984) +zone = ('wiz032', 0.0028781943574930236) + +[fips5516150] +centroid = (0.78385609519014121, -1.5763114799647362) +description = Colby city, WI +station = ('kmdz', 0.0033104791827256647) +zone = ('wiz029', 0.0047931258985142722) + +[fips5516250] +centroid = (0.78663560183711234, -1.5365649049228516) +description = Coleman village, WI +station = ('kmnm', 0.0051111470446578459) +zone = ('wiz073', 0.0023227154281524639) + +[fips5516275] +centroid = (0.78536126713706111, -1.6009342185327293) +description = Colfax village, WI +station = ('klum', 0.0025367338174373615) +zone = ('wiz025', 0.0022776830093680033) + +[fips5516350] +centroid = (0.76938750767732589, -1.5356103843549358) +description = Collins CDP, WI +station = ('kmtw', 0.0038702869675930084) +zone = ('wiz049', 0.0029338840684361095) + +[fips5516375] +centroid = (0.76861608960123695, -1.5626221994162288) +description = Coloma village, WI +station = ('ky50', 0.0028511569207739927) +zone = ('wiz044', 0.0032314773674005748) + +[fips5516450] +centroid = (0.75635382515574523, -1.5538614843292584) +description = Columbus city, WI +station = ('kunu', 0.0044328869120157663) +zone = ('wiz057', 0.0044796488309715278) + +[fips5516500] +centroid = (0.7725570081456552, -1.5412435392355024) +description = Combined Locks village, WI +station = ('katw', 0.0026357931975189404) +zone = ('wiz038', 0.0033046364014924479) + +[fips5516575] +centroid = (0.74375897076799358, -1.5447058186858538) +description = Como CDP, WI +station = ('kbuu', 0.0028967541959492291) +zone = ('wiz070', 0.0010580369826891042) + +[fips5516775] +centroid = (0.79210160653521555, -1.5888686701472299) +description = Conrath village, WI +station = ('krcx', 0.0020117276140538417) +zone = ('wiz016', 0.0019883934514645331) + +[fips5516900] +centroid = (0.76274192220426229, -1.588448848648955) +description = Coon Valley village, WI +station = ('ky51', 0.002532503426539978) +zone = ('wiz053', 0.0029240798542907735) + +[fips5517100] +centroid = (0.78825703016550752, -1.5908745596032543) +description = Cornell city, WI +station = ('krcx', 0.0060946131337870045) +zone = ('wiz027', 0.0022931523608587553) + +[fips5517150] +centroid = (0.8178033600066692, -1.5901370881811165) +description = Cornucopia CDP, WI +station = ('kasx', 0.0058225896215863097) +zone = ('wiz002', 0.0059092240140868509) + +[fips5517175] +centroid = (0.75203137763684114, -1.5568411104282629) +description = Cottage Grove village, WI +station = ('kmsn', 0.002062027268397216) +zone = ('wiz063', 0.0028012245438252944) + +[fips5517225] +centroid = (0.79931608207796678, -1.5934280810186772) +description = Couderay village, WI +station = ('khyr', 0.004255133339534564) +zone = ('wiz008', 0.0023436142567813062) + +[fips5517425] +centroid = (0.79530863158246268, -1.5515159538007954) +description = Crandon city, WI +station = ('krhi', 0.0072708881499149976) +zone = ('wiz011', 0.0023107327276972768) + +[fips5517725] +centroid = (0.78948151826212165, -1.536011216670949) +description = Crivitz village, WI +station = ('kmnm', 0.0049203532514831196) +zone = ('wiz073', 0.0010930953695402138) + +[fips5517775] +centroid = (0.752500277793682, -1.564656206126503) +description = Cross Plains village, WI +station = ('kc29', 0.0015085805509990093) +zone = ('wiz063', 0.003046090151677745) + +[fips5517950] +centroid = (0.74358232599439922, -1.5783419785632138) +description = Cuba City city, WI +station = ('kpvb', 0.0015019593166609134) +zone = ('wiz067', 0.0039837369594905581) + +[fips5517975] +centroid = (0.74956178910514681, -1.5335140693903653) +description = Cudahy city, WI +station = ('kmke', 0.00046491384804913879) +zone = ('wiz066', 0.001683443378609991) + +[fips5518025] +centroid = (0.79475440227849192, -1.6061349331845294) +description = Cumberland city, WI +station = ('kube', 0.00075961480168690049) +zone = ('wiz015', 0.0029150076888009775) + +[fips5518125] +centroid = (0.78457449016355463, -1.5784670139508266) +description = Curtiss village, WI +station = ('kmdz', 0.0030856202381658831) +zone = ('wiz029', 0.0043649827139322535) + +[fips5518500] +centroid = (0.77275611530672261, -1.5476358774341019) +description = Dale CDP, WI +station = ('katw', 0.002004755506679029) +zone = ('wiz048', 0.0036261876005152438) + +[fips5518575] +centroid = (0.78990421955366219, -1.6024674030141435) +description = Dallas village, WI +station = ('krpd', 0.0028353801915936318) +zone = ('wiz015', 0.0029202040397315158) + +[fips5518625] +centroid = (0.7619479195676524, -1.5569669137607467) +description = Dalton CDP, WI +station = ('ky50', 0.0068289193717395221) +zone = ('wiz047', 0.0032426866997781801) + +[fips5518650] +centroid = (0.80300015796966151, -1.6122939732220145) +description = Danbury CDP, WI +station = ('krzn', 0.00324241407686291) +zone = ('wiz006', 0.002547955200477773) + +[fips5518700] +centroid = (0.75478683364671972, -1.562062297792189) +description = Dane village, WI +station = ('kc29', 0.0024067451637396369) +zone = ('wiz063', 0.0032860905424375469) + +[fips5518825] +centroid = (0.74352315933275659, -1.5483281448286128) +description = Darien village, WI +station = ('kbuu', 0.00546673637829351) +zone = ('wiz070', 0.0024912966533452174) + +[fips5518875] +centroid = (0.74487753483230423, -1.5728634773076662) +description = Darlington city, WI +station = ('kmrj', 0.0038934401631080307) +zone = ('wiz067', 0.00035482255543278801) + +[fips5519250] +centroid = (0.75135193841233228, -1.5546697812124417) +description = Deerfield village, WI +station = ('kmsn', 0.0037875879719548406) +zone = ('wiz064', 0.0038606026710547958) + +[fips5519325] +centroid = (0.78868880716915846, -1.6124867797444824) +description = Deer Park village, WI +station = ('krnh', 0.0019673867329757931) +zone = ('wiz023', 0.0028104604128202054) + +[fips5519350] +centroid = (0.75458742977967941, -1.5593250281131161) +description = DeForest village, WI +station = ('kmsn', 0.0017711552297928099) +zone = ('wiz063', 0.0030739329954729607) + +[fips5519400] +centroid = (0.75166829679254887, -1.5426761578454171) +description = Delafield city, WI +station = ('kues', 0.0019907559267409694) +zone = ('wiz065', 0.0013777435101324394) + +[fips5519450] +centroid = (0.7440127940011112, -1.5469141837884022) +description = Delavan city, WI +station = ('kbuu', 0.0043324156510177146) +zone = ('wiz070', 0.0013445566241679665) + +[fips5519500] +centroid = (0.74349078347513209, -1.5467892705738371) +description = Delavan Lake CDP, WI +station = ('kbuu', 0.0044060580572370866) +zone = ('wiz070', 0.0016127971875175659) + +[fips5519600] +centroid = (0.76698678983791524, -1.5695397420933384) +description = Delwood CDP, WI +station = ('kvok', 0.0042611778907572862) +zone = ('wiz043', 0.0023652304429873498) + +[fips5519700] +centroid = (0.77403877522730591, -1.5329425613267997) +description = Denmark village, WI +station = ('kmtw', 0.00419574648454475) +zone = ('wiz039', 0.0028164980987798668) + +[fips5519775] +centroid = (0.77551785450190847, -1.5372384100279037) +description = De Pere city, WI +station = ('kgrb', 0.0011099976280053382) +zone = ('wiz039', 0.00098556323382948145) + +[fips5519850] +centroid = (0.75804058115804274, -1.591749562970449) +description = De Soto village, WI +station = ('ky51', 0.0046097891288784483) +zone = ('iaz011', 0.0034307593120080529) + +[fips5520125] +centroid = (0.77927073127271673, -1.616504283336478) +description = Diamond Bluff CDP, WI +station = ('krgk', 0.0019411052170856277) +zone = ('wiz024', 0.0027323526136245006) + +[fips5520167] +centroid = (0.81347176696248458, -1.5831753886739317) +description = Diaperville CDP, WI +station = ('kasx', 0.0026894052743362154) +zone = ('wiz003', 0.0051396923606375532) + +[fips5520175] +centroid = (0.74396891642371588, -1.5811445061030185) +description = Dickeyville village, WI +station = ('kpvb', 0.0022558140208851765) +zone = ('wiz061', 0.0044534771115644755) + +[fips5520275] +centroid = (0.77029274014716531, -1.5978238672727501) +description = Dodge CDP, WI +station = ('kona', 0.002097549169824861) +zone = ('wiz033', 0.0037949069622004914) + +[fips5520350] +centroid = (0.74988699630467082, -1.5730721488730344) +description = Dodgeville city, WI +station = ('kmrj', 0.0019073171044145646) +zone = ('wiz062', 0.00061662898808001422) + +[fips5520450] +centroid = (0.78542146354296238, -1.5765750421350797) +description = Dorchester village, WI +station = ('kmdz', 0.0017747489050400735) +zone = ('wiz017', 0.0042243890856307528) + +[fips5520550] +centroid = (0.7505954778079329, -1.5442429224616399) +description = Dousman village, WI +station = ('kues', 0.0031439266463884679) +zone = ('wiz065', 0.0022319862285238956) + +[fips5520675] +centroid = (0.78626669159311824, -1.6078728447872028) +description = Downing village, WI +station = ('klum', 0.0041946517376060082) +zone = ('wiz025', 0.0033399142825759403) + +[fips5520725] +centroid = (0.78147213251154968, -1.6044577764931178) +description = Downsville CDP, WI +station = ('klum', 0.0021793690182033303) +zone = ('wiz025', 0.0030205056883484314) + +[fips5520775] +centroid = (0.75796636975824794, -1.555906189907847) +description = Doylestown village, WI +station = ('kunu', 0.0056219023049287652) +zone = ('wiz057', 0.0024609401476696291) + +[fips5520850] +centroid = (0.79173678036167128, -1.6167800802648782) +description = Dresser village, WI +station = ('koeo', 0.001169476185143081) +zone = ('wiz014', 0.0029234524885277122) + +[fips5520875] +centroid = (0.8088501176499111, -1.5926110923958186) +description = Drummond CDP, WI +station = ('kasx', 0.0053873196040804365) +zone = ('wiz002', 0.0032039530044596335) + +[fips5520975] +centroid = (0.79667728387529158, -1.5390242134652516) +description = Dunbar CDP, WI +station = ('kimt', 0.0030716035769995315) +zone = ('wiz013', 0.0018710311378626471) + +[fips5521225] +centroid = (0.77880525196120975, -1.6049819163207844) +description = Durand city, WI +station = ('klum', 0.0048446751374846709) +zone = ('wiz026', 0.00086954231032665961) + +[fips5521375] +centroid = (0.77912222120666441, -1.5317925115227833) +description = Dyckesville CDP, WI +station = ('kgrb', 0.0053355292055829121) +zone = ('wiz040', 0.0028596985409036881) + +[fips5521425] +centroid = (0.7484030999213328, -1.5440702046788626) +description = Eagle village, WI +station = ('kbuu', 0.003922192760835292) +zone = ('wiz065', 0.003190858541959963) + +[fips5521525] +centroid = (0.74517858667498071, -1.5381384937764495) +description = Eagle Lake CDP, WI +station = ('kenw', 0.0030137516863642643) +zone = ('wiz071', 0.00131199182959785) + +[fips5521625] +centroid = (0.80153692628466711, -1.5578444129487719) +description = Eagle River city, WI +station = ('kegv', 0.00018311450673481083) +zone = ('wiz005', 0.0038356405513526762) + +[fips5521900] +centroid = (0.75337414669686309, -1.5888227505346098) +description = Eastman village, WI +station = ('kpdc', 0.0027602959495478456) +zone = ('wiz054', 0.001833613427251724) + +[fips5522100] +centroid = (0.74673842233407306, -1.5427623247505882) +description = East Troy village, WI +station = ('kbuu', 0.0020044488053391199) +zone = ('wiz070', 0.0027818073972899165) + +[fips5522300] +centroid = (0.78227938219718207, -1.5968862763985787) +description = Eau Claire city, WI +station = ('keau', 0.00080438812209120678) +zone = ('wiz028', 0.0030685770730088189) + +[fips5522475] +centroid = (0.7626052978304162, -1.5422787638280304) +description = Eden village, WI +station = ('kfld', 0.0019475624250116484) +zone = ('wiz051', 0.0018581945445368157) + +[fips5522550] +centroid = (0.78404982673711254, -1.570146470901209) +description = Edgar village, WI +station = ('kcwa', 0.0043980234550902988) +zone = ('wiz030', 0.0025545520028436692) + +[fips5522575] +centroid = (0.74766821158648811, -1.554583684120441) +description = Edgerton city, WI +station = ('kjvl', 0.0038972330199812623) +zone = ('wiz069', 0.0029152833093046772) + +[fips5522700] +centroid = (0.74990202358953051, -1.5754116405622853) +description = Edmund CDP, WI +station = ('kmrj', 0.0014724943534092005) +zone = ('wiz062', 0.0017528202161817784) + +[fips5522850] +centroid = (0.78631737595459616, -1.5237029104397894) +description = Egg Harbor village, WI +station = ('ksue', 0.0038113963675337464) +zone = ('wiz022', 0.0019149694405879562) + +[fips5522975] +centroid = (0.78307691039888083, -1.5569895506811449) +description = Eland village, WI +station = ('kaig', 0.0051188733865068633) +zone = ('wiz020', 0.0066143720846066059) + +[fips5523025] +centroid = (0.7930211507049213, -1.5566386522350315) +description = Elcho CDP, WI +station = ('krhi', 0.0049733172050520141) +zone = ('wiz019', 0.0033642526858759072) + +[fips5523075] +centroid = (0.78168649385027966, -1.5577427300665507) +description = Elderon village, WI +station = ('kste', 0.0054602243627012784) +zone = ('wiz036', 0.0062548682709797796) + +[fips5523175] +centroid = (0.77800784593255867, -1.5964570999355132) +description = Eleva village, WI +station = ('keau', 0.0050658091105386599) +zone = ('wiz028', 0.0034797926533472519) + +[fips5523275] +centroid = (0.7650253713712315, -1.5361471952729717) +description = Elkhart Lake village, WI +station = ('ksbm', 0.0022470385532629522) +zone = ('wiz052', 0.0021336774646709212) + +[fips5523300] +centroid = (0.74481822854432145, -1.5451381541948652) +description = Elkhorn city, WI +station = ('kbuu', 0.0029018458819408711) +zone = ('wiz070', 0.00019070989201324978) + +[fips5523325] +centroid = (0.78316630616316807, -1.6000792166387621) +description = Elk Mound village, WI +station = ('klum', 0.002375610413514701) +zone = ('wiz025', 0.0029986306182923235) + +[fips5523475] +centroid = (0.78985320357962641, -1.5197081833945323) +description = Ellison Bay CDP, WI +station = ('ksue', 0.0082460437643752833) +zone = ('wiz022', 0.0062188965225695681) + +[fips5523525] +centroid = (0.78079360085825189, -1.6140848381141935) +description = Ellsworth village, WI +station = ('krgk', 0.0025474788311831099) +zone = ('wiz024', 0.0007734736220536331) + +[fips5523575] +centroid = (0.75132095881810934, -1.5374086843497281) +description = Elm Grove village, WI +station = ('kmwc', 0.0013874339480835797) +zone = ('wiz066', 0.0016895857719105517) + +[fips5523700] +centroid = (0.78155976549329231, -1.6083026495687989) +description = Elmwood village, WI +station = ('klum', 0.003992678953805711) +zone = ('wiz026', 0.0038970366041797626) + +[fips5523725] +centroid = (0.74510952399647934, -1.5328254148274061) +description = Elmwood Park village, WI +station = ('krac', 0.0013133932551395466) +zone = ('wiz071', 0.0031155086372951241) + +[fips5523800] +centroid = (0.76343176359111309, -1.5755155749192415) +description = Elroy city, WI +station = ('kvok', 0.003349882940452787) +zone = ('wiz043', 0.0037533270118646797) + +[fips5523850] +centroid = (0.77964683227322895, -1.5481628970550341) +description = Embarrass village, WI +station = ('kcli', 0.0010477836076079059) +zone = ('wiz031', 0.002211913913401975) + +[fips5523900] +centroid = (0.7869109275266144, -1.6100571417993661) +description = Emerald CDP, WI +station = ('krnh', 0.0037134568882836974) +zone = ('wiz023', 0.0026698871212144492) + +[fips5524075] +centroid = (0.76298574470076586, -1.5615641633703772) +description = Endeavor village, WI +station = ('kdll', 0.0050797495252890698) +zone = ('wiz046', 0.0020265799935162065) + +[fips5524150] +centroid = (0.78834546599870614, -1.5214506503065535) +description = Ephraim village, WI +station = ('kmnm', 0.0057036206735387868) +zone = ('wiz022', 0.0043185741875345291) + +[fips5524400] +centroid = (0.77091252401784105, -1.5928872907499467) +description = Ettrick village, WI +station = ('klse', 0.0050077572361920744) +zone = ('wiz033', 0.0026101664498142923) + +[fips5524475] +centroid = (0.76815013905083207, -1.550573790163984) +description = Eureka CDP, WI +station = ('kosh', 0.0037420208732239827) +zone = ('wiz048', 0.0026621354729399332) + +[fips5524550] +centroid = (0.74661186851001105, -1.5585294721334721) +description = Evansville city, WI +station = ('kjvl', 0.0043991841174833473) +zone = ('wiz069', 0.0034379677052982244) + +[fips5524700] +centroid = (0.79704703187732662, -1.5924641880326782) +description = Exeland village, WI +station = ('krcx', 0.0041908957282576105) +zone = ('wiz016', 0.0036085236865185939) + +[fips5524825] +centroid = (0.77850852853507824, -1.5874945724271345) +description = Fairchild village, WI +station = ('kbck', 0.0063414572259015709) +zone = ('wiz028', 0.0046048863688245706) + +[fips5525075] +centroid = (0.76343862273507335, -1.5511002861861405) +description = Fairwater village, WI +station = ('kosh', 0.0056368267293848166) +zone = ('wiz047', 0.0024132006990430716) + +[fips5525125] +centroid = (0.78130210253582033, -1.5931410616231867) +description = Fall Creek village, WI +station = ('keau', 0.0030741867034758817) +zone = ('wiz028', 0.00067593534892157112) + +[fips5525150] +centroid = (0.75722594872967441, -1.5541366005792501) +description = Fall River village, WI +station = ('kunu', 0.0043962985222335124) +zone = ('wiz057', 0.0039164780015267494) + +[fips5525600] +centroid = (0.75014247760057784, -1.5821564305500324) +description = Fennimore city, WI +station = ('kovs', 0.0029958017365715847) +zone = ('wiz061', 0.0020868470388745136) + +[fips5525650] +centroid = (0.78305565228859153, -1.5710501500280143) +description = Fenwood village, WI +station = ('kmfi', 0.0045647233114499142) +zone = ('wiz030', 0.0032107803398377043) + +[fips5525725] +centroid = (0.75665754735217738, -1.589918206439624) +description = Ferryville village, WI +station = ('ky51', 0.0046910821048676207) +zone = ('wiz054', 0.0028837034017685607) + +[fips5525950] +centroid = (0.75024342744451311, -1.560766512995631) +description = Fitchburg city, WI +station = ('kc29', 0.0025460605268699957) +zone = ('wiz063', 0.0014273271521527927) + +[fips5526175] +centroid = (0.8015409230886541, -1.5403001538682146) +description = Florence CDP, WI +station = ('kimt', 0.002510370205826588) +zone = ('wiz012', 0.0022153945646607135) + +[fips5526275] +centroid = (0.7639681905367135, -1.5435738330395952) +description = Fond du Lac city, WI +station = ('kfld', 0.00055118210495015381) +zone = ('wiz051', 0.00068550424799918193) + +[fips5526350] +centroid = (0.74255577568825382, -1.5458295838313356) +description = Fontana-on-Geneva Lake village, WI +station = ('kbuu', 0.0042416787839802284) +zone = ('wiz070', 0.0021790959230875546) + +[fips5526400] +centroid = (0.74475860809707339, -1.5569739299843397) +description = Footville village, WI +station = ('kjvl', 0.0024386756989020182) +zone = ('wiz069', 0.0017508239223560154) + +[fips5526575] +centroid = (0.77169921372488492, -1.5384931621337472) +description = Forest Junction CDP, WI +station = ('kgrb', 0.0046855832155980456) +zone = ('wiz049', 0.0024828640602358211) + +[fips5526625] +centroid = (0.78000321105319359, -1.5267853189784442) +description = Forestville village, WI +station = ('ksue', 0.0028802333833874163) +zone = ('wiz040', 0.003493835582656746) + +[fips5526675] +centroid = (0.74917594916740837, -1.5506327124795314) +description = Fort Atkinson city, WI +station = ('kryv', 0.0045292181875226491) +zone = ('wiz064', 0.0018962849074218517) + +[fips5526850] +centroid = (0.77000980482212456, -1.6002863174078037) +description = Fountain City city, WI +station = ('kona', 0.00062411760698280027) +zone = ('mnz088', 0.0025533070260194725) + +[fips5527000] +centroid = (0.76028126975833799, -1.5518349999880601) +description = Fox Lake city, WI +station = ('kunu', 0.0035463940290185948) +zone = ('wiz058', 0.0036292856137511422) + +[fips5527075] +centroid = (0.75325237507495135, -1.5341696674172922) +description = Fox Point village, WI +station = ('kmwc', 0.0018293156628672394) +zone = ('wiz066', 0.002764963228275367) + +[fips5527125] +centroid = (0.77144652495578114, -1.5310257534757972) +description = Francis Creek village, WI +station = ('kmtw', 0.0012671470684442775) +zone = ('wiz050', 0.0017922518643077698) + +[fips5527300] +centroid = (0.74846488457685334, -1.5360912923770305) +description = Franklin city, WI +station = ('kmke', 0.0018342938842356696) +zone = ('wiz066', 0.0022256298572953062) + +[fips5527412] +centroid = (0.81248851827508106, -1.5812494003910635) +description = Franks Field CDP, WI +station = ('kasx', 0.0038140578649277436) +zone = ('wiz003', 0.0042508477193570673) + +[fips5527500] +centroid = (0.79678997978509292, -1.6137774681796246) +description = Frederic village, WI +station = ('krzn', 0.0031649342203375194) +zone = ('wiz014', 0.0033489397631753272) + +[fips5527550] +centroid = (0.7587239124667835, -1.5349989431580846) +description = Fredonia village, WI +station = ('ketb', 0.0024279708961869933) +zone = ('wiz060', 0.001534098043741755) + +[fips5527800] +centroid = (0.77248155756209136, -1.5510765148017285) +description = Fremont village, WI +station = ('kpcz', 0.0022227957373843932) +zone = ('wiz037', 0.0038585619251841992) + +[fips5527875] +centroid = (0.76549697678841289, -1.592876487161877) +description = French Island CDP, WI +station = ('klse', 0.00045340176030156778) +zone = ('wiz041', 0.0020546637524593825) + +[fips5527950] +centroid = (0.76745174555064655, -1.5676550133939871) +description = Friendship village, WI +station = ('kisw', 0.0068946818950581948) +zone = ('wiz044', 0.00062184594352496312) + +[fips5528000] +centroid = (0.7607841514757151, -1.554498023360753) +description = Friesland village, WI +station = ('kunu', 0.0054032014201756268) +zone = ('wiz047', 0.0036849987433377101) + +[fips5528200] +centroid = (0.76939464607396668, -1.5945100804351586) +description = Galesville city, WI +station = ('klse', 0.0037437364087743777) +zone = ('wiz033', 0.0038560265256656285) + +[fips5528450] +centroid = (0.75611752502831775, -1.5856067195884225) +description = Gays Mills village, WI +station = ('kovs', 0.0036691020161123398) +zone = ('wiz054', 0.0017853441655815417) + +[fips5528625] +centroid = (0.76049821418436092, -1.5921949884488504) +description = Genoa village, WI +station = ('ky51', 0.0041284952505781141) +zone = ('mnz096', 0.0037798872252913754) + +[fips5528675] +centroid = (0.74185153533507397, -1.5414642710260023) +description = Genoa City village, WI +station = ('kbuu', 0.0032447008831754517) +zone = ('ilz005', 0.0035872620777940719) + +[fips5528875] +centroid = (0.75458484669238646, -1.5380713858667103) +description = Germantown village, WI +station = ('kmwc', 0.0023648871625445442) +zone = ('wiz059', 0.0026954203627183792) + +[fips5528925] +centroid = (0.76182080723822965, -1.5330089536515457) +description = Gibbsville CDP, WI +station = ('ksbm', 0.0023502048330668475) +zone = ('wiz052', 0.0018778491737897326) + +[fips5529050] +centroid = (0.78347690495685285, -1.5412335210455961) +description = Gillett city, WI +station = ('kezs', 0.0035928871711218744) +zone = ('wiz074', 0.0020708895915217537) + +[fips5529175] +centroid = (0.78829898788072539, -1.5848842056379744) +description = Gilman village, WI +station = ('krcx', 0.0062353252354244264) +zone = ('wiz017', 0.0038458141011039728) + +[fips5529350] +centroid = (0.76442618238572935, -1.536706416218603) +description = Glenbeulah village, WI +station = ('ksbm', 0.0024932802929193503) +zone = ('wiz052', 0.0018570773684575635) + +[fips5529400] +centroid = (0.7526931715826124, -1.5346190547930956) +description = Glendale city, WI +station = ('kmwc', 0.0013622016830085518) +zone = ('wiz066', 0.0021378638638153602) + +[fips5529475] +centroid = (0.79407169928828181, -1.586390477142323) +description = Glen Flora village, WI +station = ('krcx', 0.0013065717825666988) +zone = ('wiz016', 0.0029567636274179829) + +[fips5529500] +centroid = (0.74762564300603185, -1.5893096624893313) +description = Glen Haven CDP, WI +station = ('kpdc', 0.0033502579945406115) +zone = ('wiz061', 0.0045700207109854391) + +[fips5529625] +centroid = (0.786393402496813, -1.6086911773135852) +description = Glenwood City city, WI +station = ('klum', 0.0047232676320813757) +zone = ('wiz025', 0.0039008171371203741) + +[fips5529675] +centroid = (0.80520183846117477, -1.5807830484149306) +description = Glidden CDP, WI +station = ('kpbh', 0.0078692162057147838) +zone = ('wiz003', 0.003394023130039074) + +[fips5529750] +centroid = (0.79618527555915442, -1.5420493228445633) +description = Goodman CDP, WI +station = ('kimt', 0.0045060151189928272) +zone = ('wiz013', 0.0032003875986770587) + +[fips5529900] +centroid = (0.80703679037025899, -1.6022106127212976) +description = Gordon CDP, WI +station = ('khyr', 0.005751536327676241) +zone = ('wiz001', 0.0036107753457713361) + +[fips5529950] +centroid = (0.75437474395703141, -1.5759792041817415) +description = Gotham CDP, WI +station = ('klnr', 0.0014487271420174667) +zone = ('wiz055', 0.0031584195263987709) + +[fips5530000] +centroid = (0.75608832566993189, -1.5349756604658629) +description = Grafton village, WI +station = ('ketb', 0.0028950840691517599) +zone = ('wiz060', 0.0011029221666221261) + +[fips5530100] +centroid = (0.76594217537401166, -1.5656853744265267) +description = Grand Marsh CDP, WI +station = ('kdll', 0.0063916328274814319) +zone = ('wiz044', 0.0016742086653646245) + +[fips5530150] +centroid = (0.8092750006030166, -1.5900549529865178) +description = Grand View CDP, WI +station = ('kasx', 0.0038894808646051577) +zone = ('wiz002', 0.0029637803073256151) + +[fips5530425] +centroid = (0.778216011352444, -1.5788593465133824) +description = Granton village, WI +station = ('kmfi', 0.0035494606361079093) +zone = ('wiz029', 0.0031598665566869252) + +[fips5530450] +centroid = (0.79901787512197109, -1.6176268791113608) +description = Grantsburg village, WI +station = ('kros', 0.0035873239700174556) +zone = ('wiz006', 0.0040988372506069737) + +[fips5530575] +centroid = (0.74316379603977101, -1.5712039309884074) +description = Gratiot village, WI +station = ('kmrj', 0.0059591764896029537) +zone = ('wiz067', 0.0019755938307720864) + +[fips5531000] +centroid = (0.77703238141361908, -1.5356134386811267) +description = Green Bay city, WI +station = ('kgrb', 0.0019678808954752998) +zone = ('wiz039', 0.0011927273376614021) + +[fips5531075] +centroid = (0.76407156638830909, -1.5375324980068645) +description = Greenbush CDP, WI +station = ('ksbm', 0.0030776000061263969) +zone = ('wiz052', 0.0021216109306474752) + +[fips5531125] +centroid = (0.74944425863331754, -1.5359046992266996) +description = Greendale village, WI +station = ('kmke', 0.0013003269158788928) +zone = ('wiz066', 0.0012498226251102618) + +[fips5531175] +centroid = (0.74980398844544593, -1.535988701923598) +description = Greenfield city, WI +station = ('kmke', 0.0013624375210327978) +zone = ('wiz066', 0.00095190127266618315) + +[fips5531300] +centroid = (0.7651847199319386, -1.5526063831575641) +description = Green Lake city, WI +station = ('ky50', 0.0055773115433392657) +zone = ('wiz047', 0.001316050659831149) + +[fips5531375] +centroid = (0.77347627306268063, -1.5375834790743153) +description = Greenleaf CDP, WI +station = ('kgrb', 0.0029393978710868058) +zone = ('wiz039', 0.0026586893414938888) + +[fips5531475] +centroid = (0.78185401055188597, -1.540569946863988) +description = Green Valley CDP, WI +station = ('kezs', 0.0036167301301833076) +zone = ('wiz074', 0.0021922624953333155) + +[fips5531575] +centroid = (0.78130320209324922, -1.5812499938030091) +description = Greenwood city, WI +station = ('kmdz', 0.0069048507277662532) +zone = ('wiz029', 0.00055965482573224238) + +[fips5531675] +centroid = (0.78273901465569473, -1.5495440109987222) +description = Gresham village, WI +station = ('kezs', 0.0029306279358039238) +zone = ('wiz031', 0.001040827279511751) + +[fips5531975] +centroid = (0.77842730091169043, -1.6149823038688615) +description = Hager City CDP, WI +station = ('krgk', 0.00059417863543471028) +zone = ('wiz024', 0.002480703310388107) + +[fips5532075] +centroid = (0.74946590071604213, -1.5367527896168287) +description = Hales Corners village, WI +station = ('kmke', 0.0019154550084219115) +zone = ('wiz066', 0.0015614663340719436) + +[fips5532325] +centroid = (0.78485239894034964, -1.6133462496813347) +description = Hammond village, WI +station = ('krnh', 0.0033689630108208676) +zone = ('wiz023', 0.0011538608052245017) + +[fips5532450] +centroid = (0.77023926325888425, -1.5623449713178419) +description = Hancock village, WI +station = ('ky50', 0.0030806148282953778) +zone = ('wiz044', 0.004265983156148203) + +[fips5532550] +centroid = (0.74418964821421563, -1.5563311950340004) +description = Hanover CDP, WI +station = ('kjvl', 0.0018126636955558861) +zone = ('wiz069', 0.0013971584230145463) + +[fips5533000] +centroid = (0.75609726175570213, -1.5424827579110036) +description = Hartford city, WI +station = ('ketb', 0.0036256735958800799) +zone = ('wiz059', 0.0020391604036958649) + +[fips5533100] +centroid = (0.75227736434161718, -1.5417454435684987) +description = Hartland village, WI +station = ('kues', 0.0016493376340054114) +zone = ('wiz065', 0.0015221345918424493) + +[fips5533150] +centroid = (0.77521355634682321, -1.5837300543102157) +description = Hatfield CDP, WI +station = ('kbck', 0.0032079881102053545) +zone = ('wiz034', 0.0018784063696768393) + +[fips5533175] +centroid = (0.78340581769641915, -1.5592259632247731) +description = Hatley village, WI +station = ('kauw', 0.0035540598772043903) +zone = ('wiz030', 0.0052215382387688063) + +[fips5533225] +centroid = (0.7960064491239951, -1.6018385783379425) +description = Haugen village, WI +station = ('kube', 0.0031962882355460712) +zone = ('wiz015', 0.0033231233421370859) + +[fips5533275] +centroid = (0.79433168353365891, -1.5833130078854514) +description = Hawkins village, WI +station = ('krcx', 0.0034733786347351226) +zone = ('wiz009', 0.0052467749833197469) + +[fips5533450] +centroid = (0.80300652842143128, -1.5966871692375111) +description = Hayward city, WI +station = ('khyr', 0.00042743823003317863) +zone = ('wiz008', 0.0046861741588593818) + +[fips5533500] +centroid = (0.74235935633423433, -1.5784077076628438) +description = Hazel Green village, WI +station = ('kpvb', 0.0027221623180240166) +zone = ('ilz001', 0.0041159384599728493) + +[fips5533675] +centroid = (0.74907400448579942, -1.5479234378816606) +description = Hebron CDP, WI +station = ('kryv', 0.0043403317115820062) +zone = ('wiz064', 0.0020963801662244237) + +[fips5533825] +centroid = (0.75078502056469953, -1.5481070814255553) +description = Helenville CDP, WI +station = ('kryv', 0.0026240500951972595) +zone = ('wiz064', 0.00097112817365223444) + +[fips5533975] +centroid = (0.81755056651781022, -1.5924715707754142) +description = Herbster CDP, WI +station = ('kasx', 0.0064160135440700979) +zone = ('wiz002', 0.0055738192682006082) + +[fips5534250] +centroid = (0.77915896038741894, -1.5726268979275584) +description = Hewitt village, WI +station = ('kmfi', 0.00098737423656018752) +zone = ('wiz035', 0.0033610746926970581) + +[fips5534450] +centroid = (0.75131882951642204, -1.5774317719050062) +description = Highland village, WI +station = ('kmrj', 0.0034044921362187657) +zone = ('wiz062', 0.0032287942998014772) + +[fips5534575] +centroid = (0.77042262755009872, -1.5386940146240669) +description = Hilbert village, WI +station = ('kgrb', 0.00596777635106967) +zone = ('wiz049', 0.0012737313854695861) + +[fips5534825] +centroid = (0.76192896529197573, -1.5766613661198834) +description = Hillsboro city, WI +station = ('kvok', 0.004930437699476496) +zone = ('wiz055', 0.0050231926633875542) + +[fips5535000] +centroid = (0.76192034336547099, -1.5343243908554813) +description = Hingham CDP, WI +station = ('ksbm', 0.0023684920080080233) +zone = ('wiz052', 0.0012402980772396777) + +[fips5535075] +centroid = (0.77463237915920169, -1.5885137748971292) +description = Hixton village, WI +station = ('kbck', 0.0031071358942839382) +zone = ('wiz034', 0.0028486777212997057) + +[fips5535150] +centroid = (0.77657327255388187, -1.5386009536683507) +description = Hobart village, WI +station = ('kgrb', 0.00033495747892212633) +zone = ('wiz039', 0.0020233808322351462) + +[fips5535225] +centroid = (0.78932930809805524, -1.5903442587633283) +description = Holcombe CDP, WI +station = ('krcx', 0.0049596696428460913) +zone = ('wiz027', 0.0033572751856523566) + +[fips5535400] +centroid = (0.74832073783393116, -1.5696480572267169) +description = Hollandale village, WI +station = ('kmrj', 0.0038115664529617646) +zone = ('wiz062', 0.0033703083456111151) + +[fips5535450] +centroid = (0.76744719024129882, -1.5929559170961352) +description = Holmen village, WI +station = ('klse', 0.0015582403208621949) +zone = ('wiz041', 0.002248174255246347) + +[fips5535750] +centroid = (0.75825441889799705, -1.5470085886476426) +description = Horicon city, WI +station = ('kunu', 0.00089740173488023819) +zone = ('wiz058', 0.001020954494261061) + +[fips5535850] +centroid = (0.77380509309375622, -1.5470004903199135) +description = Hortonville village, WI +station = ('katw', 0.0021179109806395858) +zone = ('wiz038', 0.0025600409038934384) + +[fips5535900] +centroid = (0.7865017525367769, -1.6195053246254048) +description = Houlton CDP, WI +station = ('k21d', 0.0013231578346900111) +zone = ('mnz063', 0.0012274294964900953) + +[fips5535950] +centroid = (0.77786917952348766, -1.5371415617077104) +description = Howard village, WI +station = ('kgrb', 0.0016743558580445566) +zone = ('wiz039', 0.0021795425435818558) + +[fips5536025] +centroid = (0.76496267914449978, -1.5327587083433949) +description = Howards Grove village, WI +station = ('ksbm', 0.00088094015866671809) +zone = ('wiz052', 0.0024539877553372566) + +[fips5536250] +centroid = (0.78485533109349304, -1.618408175751016) +description = Hudson city, WI +station = ('k21d', 0.0016013811703719581) +zone = ('mnz063', 0.0022738936990287693) + +[fips5536400] +centroid = (0.77718616237401228, -1.5862598043412262) +description = Humbird CDP, WI +station = ('kbck', 0.0048985794731757262) +zone = ('wiz034', 0.0038075361017525793) + +[fips5536525] +centroid = (0.81057446804429645, -1.574454920879512) +description = Hurley city, WI +station = ('kiwd', 0.0018313759109035114) +zone = ('wiz004', 0.0031691079247270133) + +[fips5536625] +centroid = (0.75649617420953796, -1.5465120599287427) +description = Hustisford village, WI +station = ('kunu', 0.0018770257386062253) +zone = ('wiz058', 0.0017800450958501363) + +[fips5536675] +centroid = (0.76579984377351151, -1.5754354817598677) +description = Hustler village, WI +station = ('kvok', 0.00098153421691916584) +zone = ('wiz043', 0.002080610200312609) + +[fips5536800] +centroid = (0.77425479462882507, -1.5955651145146965) +description = Independence city, WI +station = ('kona', 0.0059929557572179432) +zone = ('wiz033', 0.0012575806798953574) + +[fips5536925] +centroid = (0.79422296697455208, -1.5849978440255716) +description = Ingram village, WI +station = ('krcx', 0.0022878981061115137) +zone = ('wiz016', 0.0039442451484194294) + +[fips5537025] +centroid = (0.77684095370126027, -1.5553893281031614) +description = Iola village, WI +station = ('kpcz', 0.0033259213928479303) +zone = ('wiz037', 0.0020182167778133122) + +[fips5537125] +centroid = (0.80988448703110549, -1.5763696517887049) +description = Iron Belt CDP, WI +station = ('kiwd', 0.0031900562518974119) +zone = ('wiz004', 0.0026259436694931883) + +[fips5537150] +centroid = (0.75743905343134288, -1.5451736367385582) +description = Iron Ridge village, WI +station = ('kunu', 0.0022297804682039021) +zone = ('wiz058', 0.0022490757012200305) + +[fips5537175] +centroid = (0.81296260205980031, -1.5952283183289393) +description = Iron River CDP, WI +station = ('kasx', 0.0058206215117989875) +zone = ('wiz002', 0.0025784551386450294) + +[fips5537225] +centroid = (0.75998964269362235, -1.5733349430985075) +description = Ironton village, WI +station = ('klnr', 0.0057366787643601709) +zone = ('wiz056', 0.0032287712470030322) + +[fips5537575] +centroid = (0.75288604791825031, -1.5462974193373324) +description = Ixonia CDP, WI +station = ('kryv', 0.0016164521022778546) +zone = ('wiz064', 0.0030595422034099457) + +[fips5537675] +centroid = (0.75624477698408066, -1.538831180049981) +description = Jackson village, WI +station = ('ketb', 0.0016955911023331758) +zone = ('wiz059', 0.0010403563939372338) + +[fips5537825] +centroid = (0.74498853777273111, -1.5535728941374409) +description = Janesville city, WI +station = ('kjvl', 0.0012152718836383062) +zone = ('wiz069', 0.00078587646212631402) + +[fips5537900] +centroid = (0.75056039668996788, -1.5499889652382257) +description = Jefferson city, WI +station = ('kryv', 0.003068579102007374) +zone = ('wiz064', 0.00050358252293967076) + +[fips5538225] +centroid = (0.78622023092843007, -1.5929889736321678) +description = Jim Falls CDP, WI +station = ('keau', 0.0040938060087251545) +zone = ('wiz027', 0.00040259167625297722) + +[fips5538350] +centroid = (0.75187131349114078, -1.5493474345650702) +description = Johnson Creek village, WI +station = ('kryv', 0.0016788629232141628) +zone = ('wiz064', 0.0010168298384875586) + +[fips5538600] +centroid = (0.74333555389145978, -1.5622344570696056) +description = Juda CDP, WI +station = ('keft', 0.0011330855636633105) +zone = ('wiz068', 0.0019714239040839526) + +[fips5538625] +centroid = (0.79160336739364867, -1.5846969143559428) +description = Jump River CDP, WI +station = ('krcx', 0.0035073679424107444) +zone = ('wiz017', 0.0044118715878872635) + +[fips5538650] +centroid = (0.77833792260069579, -1.566778823202901) +description = Junction City village, WI +station = ('kste', 0.0031058603441652915) +zone = ('wiz035', 0.004174053892952766) + +[fips5538675] +centroid = (0.75752357972701689, -1.5481638744394153) +description = Juneau city, WI +station = ('kunu', 0.00041473793117886181) +zone = ('wiz058', 0.00024161779278892561) + +[fips5538800] +centroid = (0.77277784465591004, -1.5405210078317619) +description = Kaukauna city, WI +station = ('kgrb', 0.0039613198607204008) +zone = ('wiz049', 0.0034582089632737515) + +[fips5538900] +centroid = (0.75966986346807197, -1.5457121406259686) +description = Kekoskee village, WI +station = ('kunu', 0.0024833481817887119) +zone = ('wiz058', 0.0026478104086048032) + +[fips5539000] +centroid = (0.7718747763943431, -1.5324534502572211) +description = Kellnersville village, WI +station = ('kmtw', 0.00219472899335818) +zone = ('wiz050', 0.0018407920345894296) + +[fips5539150] +centroid = (0.76432481366277349, -1.5772151241849559) +description = Kendall village, WI +station = ('kvok', 0.0027664181157343983) +zone = ('wiz042', 0.0041287586345712659) + +[fips5539175] +centroid = (0.79464882731203867, -1.5810387915102253) +description = Kennan village, WI +station = ('kpbh', 0.0037422364877937515) +zone = ('wiz009', 0.0038034511683903952) + +[fips5539225] +centroid = (0.74324392410573004, -1.5336853210965711) +description = Kenosha city, WI +station = ('kenw', 0.00081124022558664991) +zone = ('wiz072', 0.0021649058406060201) + +[fips5539250] +centroid = (0.78307307067452647, -1.5461049618807152) +description = Keshena CDP, WI +station = ('kezs', 0.0013761738620452053) +zone = ('wiz020', 0.0028536318958781288) + +[fips5539300] +centroid = (0.75952461716772102, -1.5399184329075111) +description = Kewaskum village, WI +station = ('ketb', 0.0021125872443778409) +zone = ('wiz059', 0.0026032458683041952) + +[fips5539350] +centroid = (0.77596300072762947, -1.5273520797464444) +description = Kewaunee city, WI +station = ('kmtw', 0.0060853458040074689) +zone = ('wiz040', 0.0016353775068418807) + +[fips5539525] +centroid = (0.76647916082497269, -1.5363522016469111) +description = Kiel city, WI +station = ('ksbm', 0.0032090730127452981) +zone = ('wiz052', 0.0035503248514718675) + +[fips5539550] +centroid = (0.74320144279173661, -1.5813587627219934) +description = Kieler CDP, WI +station = ('kpvb', 0.0028339506427746256) +zone = ('iaz042', 0.0040791052598600393) + +[fips5539650] +centroid = (0.77260030976439709, -1.5417981874184938) +description = Kimberly village, WI +station = ('katw', 0.0022458080091805666) +zone = ('wiz038', 0.0030469693193738772) + +[fips5539700] +centroid = (0.77391539790248232, -1.5555220778460681) +description = King CDP, WI +station = ('kpcz', 0.0013757797614456964) +zone = ('wiz037', 0.0029996263810549788) + +[fips5539750] +centroid = (0.76259620466501332, -1.5556358035001281) +description = Kingston village, WI +station = ('ky50', 0.006449834125620617) +zone = ('wiz047', 0.002158109511092971) + +[fips5539975] +centroid = (0.78450406612823664, -1.607112247752476) +description = Knapp village, WI +station = ('klum', 0.0028109644655412622) +zone = ('wiz025', 0.0022775053315446806) + +[fips5540125] +centroid = (0.78047961612581795, -1.5652176087336995) +description = Knowlton CDP, WI +station = ('kcwa', 0.0011496044330014154) +zone = ('wiz030', 0.0032909018018897722) + +[fips5540275] +centroid = (0.76336711659561907, -1.5320095606685613) +description = Kohler village, WI +station = ('ksbm', 0.0012103543277315193) +zone = ('wiz052', 0.0021347979886313906) + +[fips5540450] +centroid = (0.78118331542692965, -1.5404465520858721) +description = Krakow CDP, WI +station = ('kgrb', 0.0050581084923548023) +zone = ('wiz074', 0.0026453539928369438) + +[fips5540550] +centroid = (0.78226548937633622, -1.5636192711113082) +description = Kronenwetter village, WI +station = ('kcwa', 0.0011624370238976737) +zone = ('wiz030', 0.0025055526647455766) + +[fips5540675] +centroid = (0.80219310027024682, -1.5689962814708522) +description = Lac du Flambeau CDP, WI +station = ('kd25', 0.0027927233255394626) +zone = ('wiz005', 0.0048941557098135325) + +[fips5540750] +centroid = (0.7530340867454044, -1.5449187663078896) +description = Lac La Belle village, WI +station = ('kryv', 0.0025643324983125031) +zone = ('wiz065', 0.0035097082612686793) + +[fips5540775] +centroid = (0.76490565923783715, -1.5921634328959746) +description = La Crosse city, WI +station = ('klse', 0.0010540706759296855) +zone = ('wiz041', 0.0019655295773525539) + +[fips5540850] +centroid = (0.79344367746353661, -1.5899525894258884) +description = Ladysmith city, WI +station = ('krcx', 0.0013437945832366076) +zone = ('wiz016', 0.00049988307708933384) + +[fips5540875] +centroid = (0.76057132602672706, -1.5819143010229031) +description = La Farge village, WI +station = ('ky51', 0.0033222458988737395) +zone = ('wiz053', 0.0025117110451749508) + +[fips5541160] +centroid = (0.77149839614115046, -1.5680845563761956) +description = Lake Arrowhead CDP, WI +station = ('kisw', 0.0028495112570100837) +zone = ('wiz044', 0.0041882180433786484) + +[fips5541210] +centroid = (0.77173869307256515, -1.5666228256743575) +description = Lake Camelot CDP, WI +station = ('kisw', 0.0027584699754756399) +zone = ('wiz044', 0.0043261197890312186) + +[fips5541300] +centroid = (0.76086028273768713, -1.5670415825217887) +description = Lake Delton village, WI +station = ('kdll', 0.0012715088355026865) +zone = ('wiz056', 0.0035789754962719041) + +[fips5541450] +centroid = (0.74322057160033839, -1.5433625085737639) +description = Lake Geneva city, WI +station = ('kbuu', 0.0024514107520946116) +zone = ('wiz070', 0.0020831457848106195) + +[fips5541525] +centroid = (0.78350880957557945, -1.5955850636280469) +description = Lake Hallie village, WI +station = ('keau', 0.00089416115870223308) +zone = ('wiz028', 0.0033246001865646002) + +[fips5541560] +centroid = (0.74316035774114453, -1.5418519610127479) +description = Lake Ivanhoe CDP, WI +station = ('kbuu', 0.0019876531037916634) +zone = ('wiz070', 0.0030007623769131172) + +[fips5541583] +centroid = (0.74805687895761463, -1.5522980881984918) +description = Lake Koshkonong CDP, WI +station = ('kjvl', 0.0044202572090412612) +zone = ('wiz064', 0.0034985738850268114) + +[fips5541645] +centroid = (0.74581596346451651, -1.5488553564357628) +description = Lake Lorraine CDP, WI +station = ('kjvl', 0.0042368750042217863) +zone = ('wiz070', 0.0028067124594081012) + +[fips5541675] +centroid = (0.75181827293517267, -1.551730332592818) +description = Lake Mills city, WI +station = ('kryv', 0.0029016551531393432) +zone = ('wiz064', 0.0019356777638574252) + +[fips5541725] +centroid = (0.81158621795838504, -1.6005154791385907) +description = Lake Nebagamon village, WI +station = ('ksuw', 0.005745076545456783) +zone = ('wiz001', 0.0028221257861327223) + +[fips5541765] +centroid = (0.75064052475592691, -1.5531706131981489) +description = Lake Ripley CDP, WI +station = ('kryv', 0.0044459153792292512) +zone = ('wiz064', 0.0027422809746780229) + +[fips5541770] +centroid = (0.74185507835345554, -1.537093844405961) +description = Lake Shangrila CDP, WI +station = ('kenw', 0.0024045138645189352) +zone = ('wiz072', 0.0012965570276306749) + +[fips5541772] +centroid = (0.77154485680583851, -1.5670972410716348) +description = Lake Sherwood CDP, WI +station = ('kisw', 0.0028561323215655471) +zone = ('wiz044', 0.0041363599905991401) + +[fips5541875] +centroid = (0.79952110590519865, -1.5634203733897507) +description = Lake Tomahawk CDP, WI +station = ('karv', 0.0028785957576262606) +zone = ('wiz010', 0.0019308968046153616) + +[fips5541975] +centroid = (0.77443990424929166, -1.5665022757829223) +description = Lake Wazeecha CDP, WI +station = ('kisw', 0.00099477671237988008) +zone = ('wiz035', 0.0038684992301899371) + +[fips5542012] +centroid = (0.75690950308299521, -1.5632705892333447) +description = Lake Wisconsin CDP, WI +station = ('kdll', 0.0037147118064633166) +zone = ('wiz057', 0.0034421761875027823) + +[fips5542025] +centroid = (0.78413529551058281, -1.5933134652466987) +description = Lake Wissota CDP, WI +station = ('keau', 0.0026149381395936065) +zone = ('wiz027', 0.002477350105039126) + +[fips5542050] +centroid = (0.79064341885175937, -1.5448697225559087) +description = Lakewood CDP, WI +station = ('kezs', 0.0089280830336588412) +zone = ('wiz021', 0.0020573987342863828) + +[fips5542250] +centroid = (0.74782694928195692, -1.5831254897106171) +description = Lancaster city, WI +station = ('kpvb', 0.0043807444072433092) +zone = ('wiz061', 0.00035207797113886205) + +[fips5542450] +centroid = (0.75319097439186611, -1.5385636734355279) +description = Lannon village, WI +station = ('kmwc', 0.0016645381809330174) +zone = ('wiz065', 0.0030659593195252691) + +[fips5542475] +centroid = (0.79516642215501021, -1.5475774438107452) +description = Laona CDP, WI +station = ('kimt', 0.0080977742832019743) +zone = ('wiz011', 0.002245179324933858) + +[fips5542805] +centroid = (0.74649863154814156, -1.5459895432572808) +description = Lauderdale Lakes CDP, WI +station = ('kbuu', 0.0037838380330739432) +zone = ('wiz070', 0.0018537998358975547) + +[fips5542825] +centroid = (0.76066217041429329, -1.5730780131793212) +description = La Valle village, WI +station = ('kdll', 0.004674402374015515) +zone = ('wiz056', 0.0035685142329621362) + +[fips5543025] +centroid = (0.75498512050303879, -1.546928146422418) +description = Lebanon CDP, WI +station = ('kryv', 0.0019127607994170704) +zone = ('wiz058', 0.0029330324065465199) + +[fips5543207] +centroid = (0.78356759226478656, -1.5453683107633258) +description = Legend Lake CDP, WI +station = ('kezs', 0.0018465277595499326) +zone = ('wiz020', 0.0028087446366299135) + +[fips5543325] +centroid = (0.78457361749892862, -1.536732421624458) +description = Lena village, WI +station = ('kmnm', 0.0060098450530568486) +zone = ('wiz074', 0.0016563789355829941) + +[fips5543575] +centroid = (0.78131239997840718, -1.5506304784580889) +description = Leopolis CDP, WI +station = ('kcli', 0.0030019642522226865) +zone = ('wiz031', 0.0010596386907919737) + +[fips5543725] +centroid = (0.79799746837479268, -1.6125483549604926) +description = Lewis CDP, WI +station = ('krzn', 0.0017771575255930627) +zone = ('wiz006', 0.0024758387214199231) + +[fips5543985] +centroid = (0.74293152762291548, -1.539616194240943) +description = Lily Lake CDP, WI +station = ('kbuu', 0.0024564573083413225) +zone = ('wiz072', 0.0022137094603819065) + +[fips5544225] +centroid = (0.75865210962135654, -1.5735508577802715) +description = Lime Ridge village, WI +station = ('klnr', 0.0043909403354357654) +zone = ('wiz056', 0.0027473684740045501) + +[fips5544625] +centroid = (0.74906915247047878, -1.5755815134583819) +description = Linden village, WI +station = ('kmrj', 0.00079226406306528269) +zone = ('wiz062', 0.0022781571268335938) + +[fips5544950] +centroid = (0.77299402113706206, -1.541412260214293) +description = Little Chute village, WI +station = ('katw', 0.0025949206958773632) +zone = ('wiz038', 0.0028865100369288004) + +[fips5545220] +centroid = (0.80231792621834941, -1.594687231354236) +description = Little Round Lake CDP, WI +station = ('khyr', 0.0012837263068172439) +zone = ('wiz008', 0.0031371434367399678) + +[fips5545225] +centroid = (0.78264106677807288, -1.528463191254849) +description = Little Sturgeon CDP, WI +station = ('ksue', 0.0019579265634033683) +zone = ('wiz022', 0.0036398901927979965) + +[fips5545325] +centroid = (0.74874809915457452, -1.5783656452278707) +description = Livingston village, WI +station = ('kmrj', 0.0025926289529168271) +zone = ('wiz062', 0.0041941560334659107) + +[fips5545350] +centroid = (0.7559986157463795, -1.5627681438482806) +description = Lodi city, WI +station = ('kc29', 0.0035894383866467813) +zone = ('wiz057', 0.0037126159759819093) + +[fips5545400] +centroid = (0.7581190162546273, -1.5714484690699042) +description = Loganville village, WI +station = ('klnr', 0.0042691325393298153) +zone = ('wiz056', 0.0011416027095256826) + +[fips5545425] +centroid = (0.76861076634701841, -1.5554576402900844) +description = Lohrville village, WI +station = ('ky50', 0.0023002833431196084) +zone = ('wiz045', 0.0020102887981263977) + +[fips5545475] +centroid = (0.76086379084948375, -1.5436263499967879) +description = Lomira village, WI +station = ('kfld', 0.0030508364803931687) +zone = ('wiz051', 0.0028378327528879683) + +[fips5545575] +centroid = (0.753745971640708, -1.574305171629691) +description = Lone Rock village, WI +station = ('klnr', 0.00057328070131610449) +zone = ('wiz062', 0.0033517564898205027) + +[fips5545600] +centroid = (0.80011176023065855, -1.5475364285733233) +description = Long Lake CDP, WI +station = ('klnl', 0.0085464201507462634) +zone = ('wiz012', 0.0032730896725974503) + +[fips5545950] +centroid = (0.75631322879734397, -1.5500911193593447) +description = Lowell village, WI +station = ('kunu', 0.0021448199913769225) +zone = ('wiz058', 0.0019761331769120247) + +[fips5546075] +centroid = (0.78080091378781769, -1.5794492503472641) +description = Loyal city, WI +station = ('kmfi', 0.0042755304225601809) +zone = ('wiz029', 0.0014425823254173758) + +[fips5546150] +centroid = (0.78670695089693377, -1.5834258608748855) +description = Lublin village, WI +station = ('kmdz', 0.0051989365982275963) +zone = ('wiz017', 0.0036295669447856021) + +[fips5546200] +centroid = (0.79546440221820314, -1.6137751119851345) +description = Luck village, WI +station = ('krzn', 0.0044318825061492265) +zone = ('wiz014', 0.0020297622623827068) + +[fips5546400] +centroid = (0.77745218545860117, -1.5307627149042291) +description = Luxemburg village, WI +station = ('kgrb', 0.0054223115773393542) +zone = ('wiz040', 0.0012357962367078768) + +[fips5546600] +centroid = (0.76287050061025674, -1.5689580413069411) +description = Lyndon Station village, WI +station = ('kdll', 0.0036244805805706114) +zone = ('wiz043', 0.0046627773681656602) + +[fips5546675] +centroid = (0.75490125743248049, -1.5891110440204543) +description = Lynxville village, WI +station = ('kpdc', 0.0041394990106606109) +zone = ('wiz054', 0.0015221128140482489) + +[fips5546850] +centroid = (0.75083600163215025, -1.5584335837443677) +description = McFarland village, WI +station = ('kmsn', 0.0021175615016558935) +zone = ('wiz063', 0.0018169156276766532) + +[fips5548000] +centroid = (0.75202408216056782, -1.5608500619069239) +description = Madison city, WI +station = ('kmsn', 0.0012936600532299552) +zone = ('wiz063', 0.00038672250075881987) + +[fips5548175] +centroid = (0.77785684004567612, -1.6111017737165623) +description = Maiden Rock village, WI +station = ('krgk', 0.0022320519132283511) +zone = ('wiz024', 0.0029967003014926361) + +[fips5548350] +centroid = (0.77599986208143168, -1.5519548692010869) +description = Manawa city, WI +station = ('kpcz', 0.0025261643446512325) +zone = ('wiz037', 0.0005735919709893842) + +[fips5548500] +centroid = (0.76966562589363119, -1.5303273774289039) +description = Manitowoc city, WI +station = ('kmtw', 0.00060688570225986933) +zone = ('wiz050', 0.0016498768305156823) + +[fips5548750] +centroid = (0.75254087415208337, -1.5598192180908186) +description = Maple Bluff village, WI +station = ('kmsn', 0.00038617926752076715) +zone = ('wiz063', 0.0010604586019338702) + +[fips5549100] +centroid = (0.78422671585680226, -1.5681959956489353) +description = Marathon City village, WI +station = ('kauw', 0.0028955201393411917) +zone = ('wiz030', 0.0012874593995446249) + +[fips5549175] +centroid = (0.81021840342359708, -1.58490003577429) +description = Marengo CDP, WI +station = ('kasx', 0.0025857522883108654) +zone = ('wiz003', 0.0024407551978664821) + +[fips5549250] +centroid = (0.77281027287341209, -1.5324312671224281) +description = Maribel village, WI +station = ('kmtw', 0.0029396193842513348) +zone = ('wiz050', 0.0027761943210389854) + +[fips5549300] +centroid = (0.78692728126170552, -1.5293788957002004) +description = Marinette city, WI +station = ('kmnm', 0.00080184481158041682) +zone = ('wiz073', 0.0043136533801124768) + +[fips5549400] +centroid = (0.77972125311253404, -1.5514735597532647) +description = Marion city, WI +station = ('kcli', 0.0022692778520558296) +zone = ('wiz031', 0.0025459411860041009) + +[fips5549450] +centroid = (0.76289783246634291, -1.5531896896468731) +description = Markesan city, WI +station = ('kunu', 0.0061522091600600438) +zone = ('wiz047', 0.0017024678856795415) + +[fips5549500] +centroid = (0.76351731963104574, -1.5557577147483799) +description = Marquette village, WI +station = ('ky50', 0.0055574830000422563) +zone = ('wiz047', 0.0015072168498270846) + +[fips5549575] +centroid = (0.75347699894968312, -1.5544041071937031) +description = Marshall village, WI +station = ('kmsn', 0.0037407884826997232) +zone = ('wiz064', 0.0044778266715721528) + +[fips5549675] +centroid = (0.77953048862529095, -1.5738166539720577) +description = Marshfield city, WI +station = ('kmfi', 0.00054697226598389773) +zone = ('wiz035', 0.0039894336894409823) + +[fips5549900] +centroid = (0.81045157941166346, -1.5892992254204041) +description = Mason village, WI +station = ('kasx', 0.0026398079775090356) +zone = ('wiz002', 0.0022898682062718065) + +[fips5550000] +centroid = (0.78547801221072711, -1.554065705305034) +description = Mattoon village, WI +station = ('kaig', 0.0026388791941110361) +zone = ('wiz020', 0.0040896725613744451) + +[fips5550025] +centroid = (0.76447697146696236, -1.5722332912746484) +description = Mauston city, WI +station = ('kvok', 0.0032695427867357883) +zone = ('wiz043', 0.0021867925551309836) + +[fips5550200] +centroid = (0.75918635490539188, -1.5454202692151577) +description = Mayville city, WI +station = ('kunu', 0.0023509765070219304) +zone = ('wiz058', 0.0024940502081627438) + +[fips5550225] +centroid = (0.75350138119933341, -1.5672108794592321) +description = Mazomanie village, WI +station = ('kc29', 0.0035412311419924757) +zone = ('wiz056', 0.0048502636371219061) + +[fips5550425] +centroid = (0.78776116467172341, -1.5768033835611182) +description = Medford city, WI +station = ('kmdz', 0.00078166262905917793) +zone = ('wiz017', 0.0023445873583221597) + +[fips5550700] +centroid = (0.80850518822983941, -1.5823284327478164) +description = Mellen city, WI +station = ('kasx', 0.0050043240008628264) +zone = ('wiz003', 0.00026306413148390945) + +[fips5550750] +centroid = (0.7702339574579582, -1.5881957060942458) +description = Melrose village, WI +station = ('kbck', 0.0027717454502912478) +zone = ('wiz034', 0.0040631622758257428) + +[fips5550800] +centroid = (0.76449891025565986, -1.5844324620676808) +description = Melvina village, WI +station = ('kcmy', 0.0027733054235817719) +zone = ('wiz042', 0.0032353079245761728) + +[fips5550825] +centroid = (0.77168162080602487, -1.5433482841403601) +description = Menasha city, WI +station = ('katw', 0.0012807786621875695) +zone = ('wiz049', 0.0034947408330273707) + +[fips5551000] +centroid = (0.75327298741341742, -1.5380107880350811) +description = Menomonee Falls village, WI +station = ('kmwc', 0.0013479356402564305) +zone = ('wiz066', 0.0033101966935703509) + +[fips5551025] +centroid = (0.78346433858623865, -1.6041246105922047) +description = Menomonie city, WI +station = ('klum', 0.00051944008574510224) +zone = ('wiz025', 0.0010149555498699359) + +[fips5551150] +centroid = (0.75421120660611951, -1.536128782049363) +description = Mequon city, WI +station = ('kmwc', 0.001701871212413789) +zone = ('wiz060', 0.00308192638303399) + +[fips5551175] +centroid = (0.80566726541280409, -1.5715266074605161) +description = Mercer CDP, WI +station = ('kd25', 0.002047627989732959) +zone = ('wiz004', 0.0029915280369780801) + +[fips5551250] +centroid = (0.78855047237264531, -1.565604059536676) +description = Merrill city, WI +station = ('krrl', 5.6588399102219461e-05) +zone = ('wiz018', 0.0027664213470969608) + +[fips5551300] +centroid = (0.77580888815467841, -1.5853605408974287) +description = Merrillan village, WI +station = ('kbck', 0.0035060570472684707) +zone = ('wiz034', 0.0023235294550280712) + +[fips5551325] +centroid = (0.75704670341549452, -1.5642838401305901) +description = Merrimac village, WI +station = ('kdll', 0.0031390229869152882) +zone = ('wiz057', 0.004039767466074322) + +[fips5551375] +centroid = (0.75299930233341217, -1.5413411729538591) +description = Merton village, WI +station = ('kues', 0.002031826382246239) +zone = ('wiz065', 0.002194099085409503) + +[fips5551575] +centroid = (0.75235836507220233, -1.5621803344095013) +description = Middleton city, WI +station = ('kc29', 0.00030611141221752316) +zone = ('wiz063', 0.001317580335595698) + +[fips5551617] +centroid = (0.78422720454899286, -1.5484925024842733) +description = Middle Village CDP, WI +station = ('kezs', 0.0032003004929948308) +zone = ('wiz020', 0.0012566451282166578) + +[fips5551875] +centroid = (0.77851708064841296, -1.5682628766658717) +description = Milladore village, WI +station = ('kcwa', 0.0038804599870655575) +zone = ('wiz035', 0.0035062324410581199) + +[fips5552025] +centroid = (0.77124815083299958, -1.5820657606953912) +description = Millston CDP, WI +station = ('kbck', 0.0027666845850005577) +zone = ('wiz034', 0.0030184649223653267) + +[fips5552075] +centroid = (0.79449188730569931, -1.6143936566720414) +description = Milltown village, WI +station = ('koeo', 0.0043911055410178193) +zone = ('wiz014', 0.0012497241952968221) + +[fips5552200] +centroid = (0.74658759098011584, -1.5524784679766854) +description = Milton city, WI +station = ('kjvl', 0.0029823176798763787) +zone = ('wiz069', 0.0024038133553408361) + +[fips5553000] +centroid = (0.75159720953211506, -1.5353084598476334) +description = Milwaukee city, WI +station = ('kmwc', 0.0012599217622061621) +zone = ('wiz066', 0.00098171279978074666) + +[fips5553100] +centroid = (0.74808913264219146, -1.5740017286859393) +description = Mineral Point city, WI +station = ('kmrj', 0.00073594557735100056) +zone = ('wiz062', 0.0024887770920520276) + +[fips5553200] +centroid = (0.80071407335552169, -1.5656141824463377) +description = Minocqua CDP, WI +station = ('karv', 0.0010408156412884777) +zone = ('wiz010', 0.0037252888966200909) + +[fips5553250] +centroid = (0.80455289013869824, -1.6026721999485725) +description = Minong village, WI +station = ('khyr', 0.0047714761407628018) +zone = ('wiz007', 0.0034851402029842534) + +[fips5553325] +centroid = (0.77193352417696515, -1.529603153055789) +description = Mishicot village, WI +station = ('kmtw', 0.0017485913313296908) +zone = ('wiz050', 0.0028494071835917065) + +[fips5553500] +centroid = (0.79387978288373251, -1.5529682771779649) +description = Mole Lake CDP, WI +station = ('kaig', 0.0060501667288217834) +zone = ('wiz011', 0.0040597746644400745) + +[fips5553600] +centroid = (0.77789769820346533, -1.5998883648850566) +description = Mondovi city, WI +station = ('keau', 0.0056518648172189665) +zone = ('wiz032', 0.0034970477219344932) + +[fips5553675] +centroid = (0.75143183958548865, -1.5591639342231571) +description = Monona city, WI +station = ('kmsn', 0.0014026728850890552) +zone = ('wiz063', 0.0011066737542773546) + +[fips5553750] +centroid = (0.74352850004026771, -1.5645808602626943) +description = Monroe city, WI +station = ('keft', 0.00072363976041357227) +zone = ('wiz068', 0.0014782806653662872) + +[fips5553875] +centroid = (0.76435539183126844, -1.5591836040838269) +description = Montello city, WI +station = ('ky50', 0.0043285305917570615) +zone = ('wiz046', 0.00092058658745998152) + +[fips5553950] +centroid = (0.74996393041809883, -1.5783559411972297) +description = Montfort village, WI +station = ('kmrj', 0.0029639801613817233) +zone = ('wiz062', 0.0038390068388476791) + +[fips5554000] +centroid = (0.74605945434846221, -1.5636306681113237) +description = Monticello village, WI +station = ('keft', 0.0022874636724696676) +zone = ('wiz068', 0.0011644875062788783) + +[fips5554075] +centroid = (0.81038647863056412, -1.5749686585448368) +description = Montreal city, WI +station = ('kiwd', 0.002181585097516002) +zone = ('wiz004', 0.0029572366519145356) + +[fips5554500] +centroid = (0.78174559069875216, -1.5652912441748412) +description = Mosinee city, WI +station = ('kcwa', 0.00025667603224078064) +zone = ('wiz030', 0.0020912552162397555) + +[fips5554625] +centroid = (0.78865025284598189, -1.5440588251321394) +description = Mountain CDP, WI +station = ('kezs', 0.0070097727507434432) +zone = ('wiz021', 0.0005774054213414896) + +[fips5554650] +centroid = (0.76487024650731417, -1.5400977829414457) +description = Mount Calvary village, WI +station = ('kfld', 0.0032106269362972319) +zone = ('wiz051', 0.0033459410291363217) + +[fips5554675] +centroid = (0.74996073646556771, -1.5857905725718273) +description = Mount Hope village, WI +station = ('kovs', 0.0038651518228444573) +zone = ('wiz061', 0.0026446337496159834) + +[fips5554725] +centroid = (0.75059657736536167, -1.5661000995633854) +description = Mount Horeb village, WI +station = ('kc29', 0.0031399230535280771) +zone = ('wiz063', 0.0041295310147421022) + +[fips5554875] +centroid = (0.74540752151296485, -1.5338723854857998) +description = Mount Pleasant village, WI +station = ('krac', 0.0013332578930698202) +zone = ('wiz071', 0.0022917315675852847) + +[fips5554900] +centroid = (0.75601107739723861, -1.5870141530972308) +description = Mount Sterling village, WI +station = ('kovs', 0.0042654841083617084) +zone = ('wiz054', 0.0013396279357087691) + +[fips5555050] +centroid = (0.74796437650725889, -1.5415507520904388) +description = Mukwonago village, WI +station = ('kbuu', 0.0028846062520103879) +zone = ('wiz065', 0.0028543999012066537) + +[fips5555200] +centroid = (0.7537608767525199, -1.5783668495050547) +description = Muscoda village, WI +station = ('klnr', 0.0032269527576076294) +zone = ('wiz055', 0.0032866038056146877) + +[fips5555275] +centroid = (0.74824624718145605, -1.5382340330997035) +description = Muskego city, WI +station = ('kues', 0.0032399067102431432) +zone = ('wiz071', 0.0023846104975276177) + +[fips5555550] +centroid = (0.75204130856028506, -1.5430116275809431) +description = Nashotah village, WI +station = ('kues', 0.0023351476812823436) +zone = ('wiz065', 0.0018073427912542719) + +[fips5555650] +centroid = (0.77860516741576125, -1.5445048091159017) +description = Navarino CDP, WI +station = ('kcli', 0.0029548291758531536) +zone = ('wiz038', 0.0034167127426044065) + +[fips5555700] +centroid = (0.7683306060954882, -1.5721061440386408) +description = Necedah village, WI +station = ('kvok', 0.0028622184704249903) +zone = ('wiz043', 0.0017723306233131638) + +[fips5555750] +centroid = (0.77086999034396997, -1.5441974915412104) +description = Neenah city, WI +station = ('katw', 0.0015255434428327612) +zone = ('wiz048', 0.0027258234622437988) + +[fips5555800] +centroid = (0.7777242299291095, -1.5811074004031214) +description = Neillsville city, WI +station = ('kbck', 0.0063071493001723112) +zone = ('wiz029', 0.0030550653589910617) + +[fips5555875] +centroid = (0.77341084066902333, -1.5691887214741773) +description = Nekoosa city, WI +station = ('kisw', 0.0013182264559499627) +zone = ('wiz035', 0.0029890564814650826) + +[fips5555950] +centroid = (0.77526849931167596, -1.6056550898132784) +description = Nelson village, WI +station = ('kona', 0.0069467500544171997) +zone = ('wiz026', 0.0028504078116508885) + +[fips5556000] +centroid = (0.77650078903004649, -1.5586410859391373) +description = Nelsonville village, WI +station = ('kste', 0.00297910784667636) +zone = ('wiz036', 0.0024772926159291383) + +[fips5556050] +centroid = (0.78513091858238293, -1.5501067575094429) +description = Neopit CDP, WI +station = ('kezs', 0.0046320298095035338) +zone = ('wiz020', 0.0013357834595756795) + +[fips5556075] +centroid = (0.75585220007542964, -1.5449861011104316) +description = Neosho village, WI +station = ('kunu', 0.0031133907568665887) +zone = ('wiz058', 0.0030374011199126535) + +[fips5556125] +centroid = (0.76733623966074949, -1.5571088264822261) +description = Neshkoro village, WI +station = ('ky50', 0.0017352306054658074) +zone = ('wiz045', 0.0026049435315179188) + +[fips5556250] +centroid = (0.79830640910568806, -1.5481155462724274) +description = Newald CDP, WI +station = ('klnl', 0.0095294850365702771) +zone = ('wiz011', 0.001522489773571748) + +[fips5556350] +centroid = (0.78886335754765036, -1.5981306088887881) +description = New Auburn village, WI +station = ('krpd', 0.0046004326476823485) +zone = ('wiz027', 0.0041834086486264672) + +[fips5556375] +centroid = (0.75000288616700328, -1.5381441486432261) +description = New Berlin city, WI +station = ('kues', 0.0018295209061143364) +zone = ('wiz066', 0.0021627561170229053) + +[fips5556450] +centroid = (0.75803419325298049, -1.5367204486657893) +description = Newburg village, WI +station = ('ketb', 0.0010345031237221521) +zone = ('wiz060', 0.0014822320706969186) + +[fips5556700] +centroid = (0.74722575316781503, -1.5644020861874124) +description = New Glarus village, WI +station = ('keft', 0.0034970398502913074) +zone = ('wiz068', 0.0023539696784863127) + +[fips5556800] +centroid = (0.76705862758992727, -1.5375457101493022) +description = New Holstein city, WI +station = ('ksbm', 0.0042281769189011845) +zone = ('wiz049', 0.0027810548368643558) + +[fips5556900] +centroid = (0.76576830567392795, -1.5736303749809926) +description = New Lisbon city, WI +station = ('kvok', 0.001657115061993546) +zone = ('wiz043', 0.001052510075485721) + +[fips5556925] +centroid = (0.7748548039190758, -1.5487809181431653) +description = New London city, WI +station = ('kpcz', 0.0036192850301885481) +zone = ('wiz037', 0.0031043228481937532) + +[fips5557008] +centroid = (0.81337020625331102, -1.5823048009897445) +description = New Odanah CDP, WI +station = ('kasx', 0.0032206578669139552) +zone = ('wiz003', 0.005029488674521734) + +[fips5557050] +centroid = (0.80105242288431344, -1.5916109838278409) +description = New Post CDP, WI +station = ('khyr', 0.0037579999751966449) +zone = ('wiz008', 0.00065249381627122181) + +[fips5557100] +centroid = (0.78753109536972554, -1.6150127947708939) +description = New Richmond city, WI +station = ('krnh', 0.00045953572713752967) +zone = ('wiz023', 0.0018322914526232282) + +[fips5557325] +centroid = (0.79899696607753212, -1.5359451734120533) +description = Niagara city, WI +station = ('kimt', 0.0015283261660927947) +zone = ('wiz013', 0.0041843505449918961) + +[fips5557375] +centroid = (0.77784226654642197, -1.5440547934215674) +description = Nichols village, WI +station = ('kezs', 0.0040553925954304277) +zone = ('wiz038', 0.0026353319419685152) + +[fips5557700] +centroid = (0.74639366744692659, -1.5320589011265151) +description = North Bay village, WI +station = ('krac', 0.00046398990260796417) +zone = ('wiz071', 0.0035321262840714803) + +[fips5558000] +centroid = (0.76464558772599756, -1.5443626345950343) +description = North Fond du Lac village, WI +station = ('kfld', 0.00077361637595672384) +zone = ('wiz051', 0.0010018028264569075) + +[fips5558025] +centroid = (0.75848455801316494, -1.5682470116229712) +description = North Freedom village, WI +station = ('kdll', 0.001534338126336923) +zone = ('wiz056', 0.001314858203628564) + +[fips5558050] +centroid = (0.78532424870362627, -1.6188801127807553) +description = North Hudson village, WI +station = ('k21d', 0.0011748228857073652) +zone = ('mnz063', 0.0017550885807029177) + +[fips5558375] +centroid = (0.77501371614746983, -1.550048760218399) +description = Northport CDP, WI +station = ('kpcz', 0.0028342084736225734) +zone = ('wiz037', 0.0022279488574625025) + +[fips5558400] +centroid = (0.74941687441735361, -1.5427900754856947) +description = North Prairie village, WI +station = ('kues', 0.0027022819112104807) +zone = ('wiz065', 0.0018110341413207112) + +[fips5558575] +centroid = (0.76504806065150732, -1.5817350557087235) +description = Norwalk village, WI +station = ('kcmy', 0.0025801592636833836) +zone = ('wiz042', 0.0019522675750524529) + +[fips5558800] +centroid = (0.74840131968549573, -1.5341577642717936) +description = Oak Creek city, WI +station = ('kmke', 0.0012176333097262729) +zone = ('wiz066', 0.0023690119333196267) + +[fips5558850] +centroid = (0.76728775441412911, -1.5774059759386616) +description = Oakdale village, WI +station = ('kvok', 0.0014961777081742415) +zone = ('wiz042', 0.0030193983951325278) + +[fips5558900] +centroid = (0.76243072999863171, -1.5454641118859678) +description = Oakfield village, WI +station = ('kfld', 0.0016599897931750089) +zone = ('wiz051', 0.0014327858274291968) + +[fips5559250] +centroid = (0.75224449979180219, -1.5444887695400757) +description = Oconomowoc city, WI +station = ('kues', 0.0034211245737161881) +zone = ('wiz065', 0.0027971617406238815) + +[fips5559300] +centroid = (0.75212934296775569, -1.543776902098065) +description = Oconomowoc Lake village, WI +station = ('kues', 0.0028911666684008517) +zone = ('wiz065', 0.0022980253490729411) + +[fips5559350] +centroid = (0.78350093814065291, -1.5335934295114535) +description = Oconto city, WI +station = ('kmnm', 0.0051244061489610013) +zone = ('wiz074', 0.0033489645197586843) + +[fips5559400] +centroid = (0.783221859993259, -1.5384285325915459) +description = Oconto Falls city, WI +station = ('kgrb', 0.0068428866884344616) +zone = ('wiz074', 0.00015475518740868624) + +[fips5559450] +centroid = (0.81350997221981081, -1.5830349245757314) +description = Odanah CDP, WI +station = ('kasx', 0.0027931813626799677) +zone = ('wiz003', 0.005171694564201767) + +[fips5559475] +centroid = (0.77592444640445302, -1.5537682488406166) +description = Ogdensburg village, WI +station = ('kpcz', 0.0021599368861395752) +zone = ('wiz037', 0.0007769010517225082) + +[fips5559500] +centroid = (0.79336595795194542, -1.57590148467015) +description = Ogema CDP, WI +station = ('kpbh', 0.0044477847874901102) +zone = ('wiz009', 0.0039970719809260197) + +[fips5559650] +centroid = (0.752691513519823, -1.5435932236475851) +description = Okauchee Lake CDP, WI +station = ('kues', 0.0029980696246886779) +zone = ('wiz065', 0.0025680751707391277) + +[fips5559800] +centroid = (0.81418316316559747, -1.6089779698162729) +description = Oliver village, WI +station = ('ksuw', 0.0013180775407892493) +zone = ('mnz037', 0.0050256636025757121) + +[fips5559875] +centroid = (0.76862898758440923, -1.5487829427250976) +description = Omro city, WI +station = ('kosh', 0.0026862810624112576) +zone = ('wiz048', 0.0012894624462150863) + +[fips5559925] +centroid = (0.76603315938791805, -1.5917665624773636) +description = Onalaska city, WI +station = ('klse', 0.00062257099106317122) +zone = ('wiz041', 0.0011209018361510936) + +[fips5560075] +centroid = (0.76309144184026667, -1.5811499689835773) +description = Ontario village, WI +station = ('kcmy', 0.004509677694377958) +zone = ('wiz042', 0.0039180554177915862) + +[fips5560100] +centroid = (0.76137436946886217, -1.5322003949689744) +description = Oostburg village, WI +station = ('ksbm', 0.002894500015207789) +zone = ('wiz052', 0.0026120438545540192) + +[fips5560200] +centroid = (0.74918671784889324, -1.5601299216042583) +description = Oregon village, WI +station = ('kmsn', 0.0036656497632576732) +zone = ('wiz063', 0.0025095115461292701) + +[fips5560250] +centroid = (0.74402035127677235, -1.5578279719472181) +description = Orfordville village, WI +station = ('kjvl', 0.0028803993323580934) +zone = ('wiz069', 0.0024897770740990124) + +[fips5560450] +centroid = (0.79097065063321581, -1.617848466113194) +description = Osceola village, WI +station = ('koeo', 0.0001997432512808787) +zone = ('mnz053', 0.0041230109118821851) + +[fips5560500] +centroid = (0.76833980398064627, -1.5457046357101851) +description = Oshkosh city, WI +station = ('kosh', 0.00098894633052621847) +zone = ('wiz048', 0.0013102886076939186) + +[fips5560575] +centroid = (0.77805380045176364, -1.5919429803581551) +description = Osseo city, WI +station = ('keau', 0.0060437311647152702) +zone = ('wiz028', 0.0027366739182517938) + +[fips5560825] +centroid = (0.78452752335338349, -1.5807565892234703) +description = Owen city, WI +station = ('kmdz', 0.0042215630432134599) +zone = ('wiz029', 0.0037944972963776221) + +[fips5560875] +centroid = (0.7641116391479349, -1.5631793957799278) +description = Oxford village, WI +station = ('kdll', 0.0052147687458587279) +zone = ('wiz046', 0.0021857708559072748) + +[fips5560950] +centroid = (0.76384861802965931, -1.5613678836426981) +description = Packwaukee CDP, WI +station = ('ky50', 0.0051995517231348395) +zone = ('wiz046', 0.0012200508136835718) + +[fips5560975] +centroid = (0.7429701343059697, -1.5376252098967305) +description = Paddock Lake village, WI +station = ('kenw', 0.0022017688722258824) +zone = ('wiz072', 0.00075270454506282136) + +[fips5561025] +centroid = (0.74836559279570736, -1.5461548782973222) +description = Palmyra village, WI +station = ('kbuu', 0.004889264079704486) +zone = ('wiz064', 0.0034578561383629921) + +[fips5561100] +centroid = (0.75986874373633673, -1.5586252208962366) +description = Pardeeville village, WI +station = ('kmsn', 0.0070756408599358415) +zone = ('wiz057', 0.0012966392496936193) + +[fips5561200] +centroid = (0.80178230212420487, -1.5785151501315966) +description = Park Falls city, WI +station = ('kpbh', 0.0041984144790875614) +zone = ('wiz009', 0.0046149703339831809) + +[fips5561325] +centroid = (0.77702145565250147, -1.5628771571133602) +description = Park Ridge village, WI +station = ('kste', 0.00047873697334027107) +zone = ('wiz036', 0.00094954740857218186) + +[fips5561425] +centroid = (0.74945157156288333, -1.5877659885791122) +description = Patch Grove village, WI +station = ('kpdc', 0.0024110414438291085) +zone = ('wiz061', 0.0036320445456409249) + +[fips5561675] +centroid = (0.78090229996406602, -1.5501763612400123) +description = Pella CDP, WI +station = ('kcli', 0.0024903219544210654) +zone = ('wiz031', 0.0010477331457563216) + +[fips5561725] +centroid = (0.74244182314139107, -1.542199194267432) +description = Pell Lake CDP, WI +station = ('kbuu', 0.0027475011002179453) +zone = ('wiz070', 0.0032397900003650441) + +[fips5561750] +centroid = (0.79651025586587576, -1.5357380028298415) +description = Pembine CDP, WI +station = ('kimt', 0.0034930561124678502) +zone = ('wiz013', 0.0020728763159622342) + +[fips5561800] +centroid = (0.81001294326405227, -1.5754999891290211) +description = Pence CDP, WI +station = ('kiwd', 0.0026996875808409917) +zone = ('wiz004', 0.0026046547276814902) + +[fips5561925] +centroid = (0.77566714996612396, -1.6082940625488789) +description = Pepin village, WI +station = ('krgk', 0.0049308998692451618) +zone = ('mnz079', 0.0029447726238680753) + +[fips5562175] +centroid = (0.78642394575872299, -1.5314378606187782) +description = Peshtigo city, WI +station = ('kmnm', 0.0018930848587267871) +zone = ('wiz073', 0.0033560651242506459) + +[fips5562240] +centroid = (0.75164913307736181, -1.5401555707929795) +description = Pewaukee city, WI +station = ('kues', 0.0004502240086850808) +zone = ('wiz065', 0.001138335970267141) + +[fips5562250] +centroid = (0.75200600054951716, -1.5402983387257927) +description = Pewaukee village, WI +station = ('kues', 0.00082150289931931639) +zone = ('wiz065', 0.0013691877078999698) + +[fips5562450] +centroid = (0.79751621128684769, -1.5778003854430274) +description = Phillips city, WI +station = ('kpbh', 0.00010051977869513588) +zone = ('wiz009', 0.00054374680093631673) + +[fips5562675] +centroid = (0.77536086213569155, -1.5918934653672761) +description = Pigeon Falls village, WI +station = ('kbck', 0.0054200910752880156) +zone = ('wiz033', 0.002818321735276132) + +[fips5562975] +centroid = (0.77052959877995353, -1.5546570926687797) +description = Pine River CDP, WI +station = ('kpcz', 0.0033236970892818077) +zone = ('wiz045', 0.0021867065237897759) + +[fips5563100] +centroid = (0.77565250665369978, -1.5731776714796102) +description = Pittsville city, WI +station = ('kmfi', 0.0033965878845712248) +zone = ('wiz035', 0.0012055749972065414) + +[fips5563125] +centroid = (0.75534430926309926, -1.5715307962507208) +description = Plain village, WI +station = ('klnr', 0.0020909532687809346) +zone = ('wiz056', 0.0028556071366434071) + +[fips5563150] +centroid = (0.77174790841101559, -1.5620218410601279) +description = Plainfield village, WI +station = ('ky50', 0.003914707236027706) +zone = ('wiz045', 0.0036724147938377335) + +[fips5563250] +centroid = (0.74583610456408456, -1.5790142270312044) +description = Platteville city, WI +station = ('kpvb', 0.00085242487808410256) +zone = ('wiz061', 0.0038174045971504588) + +[fips5563300] +centroid = (0.7422305684887297, -1.5339402438871172) +description = Pleasant Prairie village, WI +station = ('kenw', 0.0014045307336458439) +zone = ('wiz072', 0.0021580416468417784) + +[fips5563525] +centroid = (0.77600864108756928, -1.5627323995051996) +description = Plover village, WI +station = ('kste', 0.0014514368410919235) +zone = ('wiz036', 0.00051563585049411163) + +[fips5563600] +centroid = (0.7790378868972081, -1.6090487952773189) +description = Plum City village, WI +station = ('krgk', 0.0037423177329951023) +zone = ('wiz026', 0.0025347509933898887) + +[fips5563700] +centroid = (0.76349742287757305, -1.5352842346776154) +description = Plymouth city, WI +station = ('ksbm', 0.0015986870044835501) +zone = ('wiz052', 0.00048805092259814785) + +[fips5563925] +centroid = (0.77807734494337299, -1.5605098099692474) +description = Polonia CDP, WI +station = ('kste', 0.0016120624645704312) +zone = ('wiz036', 0.0021466349614770609) + +[fips5563975] +centroid = (0.81300663671682805, -1.6019036965723343) +description = Poplar village, WI +station = ('ksuw', 0.0041905707771932536) +zone = ('wiz001', 0.0030772861096689474) + +[fips5564100] +centroid = (0.76007258073967709, -1.5614739298480493) +description = Portage city, WI +station = ('kdll', 0.0038873511426279861) +zone = ('wiz057', 0.0022058180773112824) + +[fips5564175] +centroid = (0.77418094974817331, -1.5681847208219672) +description = Port Edwards village, WI +station = ('kisw', 0.00026812361483544216) +zone = ('wiz035', 0.0029344334153164949) + +[fips5564450] +centroid = (0.75719791874188735, -1.5338081399160339) +description = Port Washington city, WI +station = ('ketb', 0.0032054374738375363) +zone = ('wiz060', 0.00089767502587329701) + +[fips5564500] +centroid = (0.81638802015634937, -1.5948925518874406) +description = Port Wing CDP, WI +station = ('ktwm', 0.0065064315865324719) +zone = ('wiz002', 0.0048905261472247628) + +[fips5564550] +centroid = (0.79289288645819234, -1.5549147556262517) +description = Post Lake CDP, WI +station = ('kaig', 0.004878258383788461) +zone = ('wiz019', 0.0029234718274210023) + +[fips5564625] +centroid = (0.74500286692588991, -1.5831425415774092) +description = Potosi village, WI +station = ('kpvb', 0.003431240098066648) +zone = ('wiz061', 0.003176186513310841) + +[fips5564675] +centroid = (0.77001275442856043, -1.5376648114174583) +description = Potter village, WI +station = ('kgrb', 0.0063801186073839684) +zone = ('wiz049', 0.0015927130996623662) + +[fips5564700] +centroid = (0.74723863369769472, -1.5418826788075828) +description = Potter Lake CDP, WI +station = ('kbuu', 0.0022042494615714015) +zone = ('wiz070', 0.0035904258713388057) + +[fips5564750] +centroid = (0.78707821733541805, -1.5364646357573244) +description = Pound village, WI +station = ('kmnm', 0.004964124580240402) +zone = ('wiz073', 0.00190699386576523) + +[fips5564825] +centroid = (0.74252085164992132, -1.5411478253793232) +description = Powers Lake CDP, WI +station = ('kbuu', 0.0025702856649328617) +zone = ('wiz070', 0.0037854459448769437) + +[fips5564900] +centroid = (0.75733614881864519, -1.5604079001942235) +description = Poynette village, WI +station = ('kmsn', 0.0045708165452867109) +zone = ('wiz057', 0.0015788563788825438) + +[fips5564950] +centroid = (0.77032825759744339, -1.5532969750359931) +description = Poy Sippi CDP, WI +station = ('kpcz', 0.0034465157100856568) +zone = ('wiz045', 0.0031033361471873569) + +[fips5565050] +centroid = (0.75125315277666949, -1.5906714730914921) +description = Prairie du Chien city, WI +station = ('kpdc', 0.00041880642840677135) +zone = ('wiz054', 0.0043228053003162622) + +[fips5565100] +centroid = (0.75556668166309582, -1.5661214274868447) +description = Prairie du Sac village, WI +station = ('kdll', 0.0040642551566814206) +zone = ('wiz056', 0.0036285277178000684) + +[fips5565150] +centroid = (0.78952328399112193, -1.6053543695831598) +description = Prairie Farm village, WI +station = ('krpd', 0.0040586750265154976) +zone = ('wiz015', 0.0036485369824577167) + +[fips5565325] +centroid = (0.79484505467984046, -1.5759068253776611) +description = Prentice village, WI +station = ('kpbh', 0.0030638632323753668) +zone = ('wiz009', 0.0025686674682852163) + +[fips5565375] +centroid = (0.78108208633031395, -1.6194829669576867) +description = Prescott city, WI +station = ('ksgs', 0.0035213861473643191) +zone = ('mnz070', 0.003703778106340554) + +[fips5565600] +centroid = (0.76537220320018784, -1.5556042654005446) +description = Princeton city, WI +station = ('ky50', 0.0039606575216412495) +zone = ('wiz047', 0.0014024129994482004) + +[fips5565675] +centroid = (0.77960756236505901, -1.5400283188372164) +description = Pulaski village, WI +station = ('kgrb', 0.0034753565136760962) +zone = ('wiz074', 0.0039391105953455862) + +[fips5565725] +centroid = (0.78278044877213704, -1.5422364919535472) +description = Pulcifer CDP, WI +station = ('kezs', 0.0026469952749324467) +zone = ('wiz074', 0.0028374873072025456) + +[fips5566000] +centroid = (0.74574923952721284, -1.5325227572818176) +description = Racine city, WI +station = ('krac', 0.00068106508171122374) +zone = ('wiz071', 0.0031972567498073728) + +[fips5566050] +centroid = (0.79880630631004435, -1.592051731823847) +description = Radisson village, WI +station = ('khyr', 0.0051724564065450309) +zone = ('wiz008', 0.0021440345740480113) + +[fips5566150] +centroid = (0.75990714097988066, -1.5533920954802267) +description = Randolph village, WI +station = ('kunu', 0.0042730907813210203) +zone = ('wiz047', 0.0045833589336117609) + +[fips5566200] +centroid = (0.7602012987720117, -1.535082177910112) +description = Random Lake village, WI +station = ('ketb', 0.0032172530569338307) +zone = ('wiz052', 0.002879517075791883) + +[fips5566450] +centroid = (0.75832365610942365, -1.5840448069875204) +description = Readstown village, WI +station = ('ky51', 0.0029203180173672182) +zone = ('wiz053', 0.002706819761633361) + +[fips5566625] +centroid = (0.76887586440710387, -1.5553389229943639) +description = Redgranite village, WI +station = ('ky50', 0.0023937332587435959) +zone = ('wiz045', 0.0019196351999467929) + +[fips5566800] +centroid = (0.75983017195986768, -1.5707505991684945) +description = Reedsburg city, WI +station = ('kdll', 0.0028758917090263218) +zone = ('wiz056', 0.0019887377611095655) + +[fips5566875] +centroid = (0.77060330403426514, -1.5350355950723764) +description = Reedsville village, WI +station = ('kmtw', 0.0033695062472355085) +zone = ('wiz050', 0.001860610603911694) + +[fips5566900] +centroid = (0.7558349736757124, -1.5506297977796806) +description = Reeseville village, WI +station = ('kunu', 0.0027630049063195037) +zone = ('wiz058', 0.0025935274016002734) + +[fips5567050] +centroid = (0.79976351468500806, -1.5946239282622663) +description = Reserve CDP, WI +station = ('khyr', 0.0035321459372886855) +zone = ('wiz008', 0.00285896815338275) + +[fips5567100] +centroid = (0.74772814619300154, -1.5777116354505636) +description = Rewey village, WI +station = ('kmrj', 0.0022351219724295272) +zone = ('wiz062', 0.0043355506706068041) + +[fips5567200] +centroid = (0.79650070891486724, -1.5607697069481621) +description = Rhinelander city, WI +station = ('krhi', 0.00070726798590638391) +zone = ('wiz010', 0.0016870655901564129) + +[fips5567275] +centroid = (0.79097468234378787, -1.5743260108609598) +description = Rib Lake village, WI +station = ('kmdz', 0.0040093713871991203) +zone = ('wiz017', 0.0041280573530010503) + +[fips5567320] +centroid = (0.78395772571248479, -1.5654307657952455) +description = Rib Mountain CDP, WI +station = ('kauw', 0.00097805308327577299) +zone = ('wiz030', 0.00088662343326154926) + +[fips5567350] +centroid = (0.79380962064780225, -1.6012657961840231) +description = Rice Lake city, WI +station = ('krpd', 0.0011659493348895366) +zone = ('wiz015', 0.0016151020989076143) + +[fips5567475] +centroid = (0.75466972205391092, -1.5399741089106496) +description = Richfield village, WI +station = ('kues', 0.0034608202657398666) +zone = ('wiz059', 0.0022520199705906682) + +[fips5567625] +centroid = (0.75640238021553585, -1.5774887394517914) +description = Richland Center city, WI +station = ('klnr', 0.0033165438875259199) +zone = ('wiz055', 0.00087012793016603984) + +[fips5567800] +centroid = (0.78892669554620531, -1.6039217509732455) +description = Ridgeland village, WI +station = ('krpd', 0.0040652524689058838) +zone = ('wiz015', 0.0039156839409183776) + +[fips5567875] +centroid = (0.75046576493792461, -1.5706783774440467) +description = Ridgeway village, WI +station = ('kmrj', 0.0036342413986440204) +zone = ('wiz062', 0.0018149230064223563) + +[fips5568100] +centroid = (0.75835505458266705, -1.5575716354399778) +description = Rio village, WI +station = ('kmsn', 0.0057029804315522686) +zone = ('wiz057', 0.0011924172983310594) + +[fips5568175] +centroid = (0.76521442543580742, -1.5505144838760012) +description = Ripon city, WI +station = ('kfld', 0.0046638218297609521) +zone = ('wiz047', 0.0027145468310942511) + +[fips5568275] +centroid = (0.78294091434356539, -1.6165511977867717) +description = River Falls city, WI +station = ('k21d', 0.0037424213142930648) +zone = ('wiz024', 0.0034674226460184331) + +[fips5568325] +centroid = (0.75351937554392145, -1.5347351890015231) +description = River Hills village, WI +station = ('kmwc', 0.0016087837436312765) +zone = ('wiz066', 0.0029339104396538676) + +[fips5568475] +centroid = (0.7849557049787752, -1.6154550786566415) +description = Roberts village, WI +station = ('krnh', 0.0030420884897762682) +zone = ('wiz023', 0.0016681586269240735) + +[fips5568550] +centroid = (0.74583003081828769, -1.5402587022984797) +description = Rochester village, WI +station = ('kbuu', 0.0010164728792406352) +zone = ('wiz071', 0.0025157091883963841) + +[fips5568725] +centroid = (0.74996714182392243, -1.5538776286248392) +description = Rockdale village, WI +station = ('kmsn', 0.0049721249699834318) +zone = ('wiz064', 0.003371137442811028) + +[fips5568900] +centroid = (0.76632532750470195, -1.5868057258779575) +description = Rockland village, WI +station = ('kcmy', 0.0024261188808303823) +zone = ('wiz041', 0.0024888964428220876) + +[fips5568975] +centroid = (0.75884732469819205, -1.5695244181025059) +description = Rock Springs village, WI +station = ('kdll', 0.0021174262796704673) +zone = ('wiz056', 0.00094590214794630255) + +[fips5569300] +centroid = (0.75023466589166821, -1.5472281161609585) +description = Rome CDP, WI +station = ('kryv', 0.0032790868132765599) +zone = ('wiz064', 0.0017273114885238442) + +[fips5569525] +centroid = (0.76461104766010046, -1.5476098894815398) +description = Rosendale village, WI +station = ('kfld', 0.0024834054088937762) +zone = ('wiz051', 0.0025040673879718469) + +[fips5569575] +centroid = (0.77894353439784536, -1.5586695871658223) +description = Rosholt village, WI +station = ('kste', 0.0031682526952150998) +zone = ('wiz036', 0.0036334755220576503) + +[fips5569725] +centroid = (0.78320180616015367, -1.5640291616861388) +description = Rothschild village, WI +station = ('kauw', 0.0010342335596275052) +zone = ('wiz030', 0.0018627193531650739) + +[fips5570000] +centroid = (0.77662041389697833, -1.567336351179158) +description = Rudolph village, WI +station = ('kisw', 0.0023097727356095428) +zone = ('wiz035', 0.0030745964655798106) + +[fips5570500] +centroid = (0.76484678928216743, -1.5388868909597047) +description = St. Cloud village, WI +station = ('kfld', 0.0040448336399416026) +zone = ('wiz052', 0.0033558075655998458) + +[fips5570550] +centroid = (0.79255200620198529, -1.6166260724116821) +description = St. Croix Falls city, WI +station = ('koeo', 0.0019347306730341514) +zone = ('wiz014', 0.002431350451029293) + +[fips5570650] +centroid = (0.74999653316852599, -1.5336750236539844) +description = St. Francis city, WI +station = ('kmke', 0.0005104843330441713) +zone = ('wiz066', 0.0013456886804087671) + +[fips5570815] +centroid = (0.76420084292600432, -1.5890103734291992) +description = St. Joseph CDP, WI +station = ('klse', 0.0031096322919459329) +zone = ('wiz041', 0.0022964521833782419) + +[fips5571025] +centroid = (0.76807306531106401, -1.5345770272647075) +description = St. Nazianz village, WI +station = ('ksbm', 0.0040212919369739348) +zone = ('wiz050', 0.0024370291098375235) + +[fips5571050] +centroid = (0.76512223714471728, -1.5418820679423446) +description = St. Peter CDP, WI +station = ('kfld', 0.002161464663569652) +zone = ('wiz051', 0.0023483380515077375) + +[fips5571585] +centroid = (0.74257881403438009, -1.5815608543960817) +description = Sandy Hook CDP, WI +station = ('kdbq', 0.0027744897353628529) +zone = ('iaz042', 0.0036778474873370563) + +[fips5571650] +centroid = (0.75526107451107161, -1.5661268031009408) +description = Sauk City village, WI +station = ('kc29', 0.0038414975040611276) +zone = ('wiz056', 0.0038329279203935945) + +[fips5571700] +centroid = (0.75727994921673103, -1.5349105422314711) +description = Saukville village, WI +station = ('ketb', 0.0024062781270856887) +zone = ('wiz060', 0.0001317798553440087) + +[fips5571850] +centroid = (0.81147484849881524, -1.5779513913299099) +description = Saxon CDP, WI +station = ('kiwd', 0.0033923919161076414) +zone = ('wiz004', 0.0045227238396865609) + +[fips5571950] +centroid = (0.80267842397534883, -1.5628370843537345) +description = Sayner CDP, WI +station = ('karv', 0.0025018854174208779) +zone = ('wiz005', 0.0011518972019512693) + +[fips5571975] +centroid = (0.77598617870009601, -1.5559006746674107) +description = Scandinavia village, WI +station = ('kpcz', 0.0027571992676254406) +zone = ('wiz037', 0.0022700418176059903) + +[fips5572150] +centroid = (0.78397189778601106, -1.5640694787918601) +description = Schofield city, WI +station = ('kauw', 0.00026397518795387247) +zone = ('wiz030', 0.0018189303598794028) + +[fips5572650] +centroid = (0.75537436383281864, -1.5758981859978638) +description = Sextonville CDP, WI +station = ('klnr', 0.0017698148196308777) +zone = ('wiz055', 0.002414842625916696) + +[fips5572670] +centroid = (0.78236293110847499, -1.5957829141520528) +description = Seymour CDP, WI +station = ('keau', 0.00095438293901971283) +zone = ('wiz028', 0.0025017024915911941) + +[fips5572725] +centroid = (0.7769231238024441, -1.5416029025284883) +description = Seymour city, WI +station = ('kgrb', 0.0024753295280785965) +zone = ('wiz038', 0.0024249399587863516) + +[fips5572875] +centroid = (0.74173883942527274, -1.5486314481460246) +description = Sharon village, WI +station = ('kjvl', 0.0044108857220577094) +zone = ('ilz004', 0.0032892709989990098) + +[fips5572925] +centroid = (0.78152168240901387, -1.5461177027842545) +description = Shawano city, WI +station = ('kezs', 0.00038539865478173427) +zone = ('wiz031', 0.0022333612256605685) + +[fips5572975] +centroid = (0.76351176948402444, -1.5311868822723413) +description = Sheboygan city, WI +station = ('ksbm', 0.0016405922196017816) +zone = ('wiz052', 0.0027439012173939843) + +[fips5573025] +centroid = (0.76322091036417961, -1.5328569703802819) +description = Sheboygan Falls city, WI +station = ('ksbm', 0.0009888867858821016) +zone = ('wiz052', 0.0015097033203822913) + +[fips5573175] +centroid = (0.79084191514758861, -1.5874932808834881) +description = Sheldon village, WI +station = ('krcx', 0.0032687019054995822) +zone = ('wiz016', 0.0035761687372151034) + +[fips5573200] +centroid = (0.79807571148515954, -1.6041325518403013) +description = Shell Lake city, WI +station = ('kube', 0.0040697588374352944) +zone = ('wiz007', 0.0033464917960594177) + +[fips5573525] +centroid = (0.77103293428293607, -1.5406897288105523) +description = Sherwood village, WI +station = ('katw', 0.0032808963622969487) +zone = ('wiz049', 0.0018091164037830482) + +[fips5573625] +centroid = (0.77571230163387317, -1.5459506922281312) +description = Shiocton village, WI +station = ('katw', 0.0034849249995359947) +zone = ('wiz038', 0.0014792054977097108) + +[fips5573725] +centroid = (0.75208550029694543, -1.5339109747155613) +description = Shorewood village, WI +station = ('kmke', 0.0024724839441151465) +zone = ('wiz066', 0.0017899622423148821) + +[fips5573750] +centroid = (0.75186640911594271, -1.5611385648322786) +description = Shorewood Hills village, WI +station = ('kc29', 0.0011939377184204587) +zone = ('wiz063', 0.00041236464355877135) + +[fips5573825] +centroid = (0.74304349049443108, -1.5748484053593743) +description = Shullsburg city, WI +station = ('kpvb', 0.0033576547479506054) +zone = ('wiz067', 0.0019959168453930298) + +[fips5574025] +centroid = (0.74261239416918834, -1.5387901299059741) +description = Silver Lake village, WI +station = ('kbuu', 0.0030509509537559264) +zone = ('wiz072', 0.0016726587479557044) + +[fips5574175] +centroid = (0.79906864674991163, -1.6123644147106251) +description = Siren village, WI +station = ('krzn', 0.00069867587535349948) +zone = ('wiz006', 0.0013970023527069065) + +[fips5574225] +centroid = (0.78866362206805218, -1.5206941024356915) +description = Sister Bay village, WI +station = ('kmnm', 0.0062729335779397738) +zone = ('wiz022', 0.0048418647149680374) + +[fips5574400] +centroid = (0.75634534285558064, -1.5407147917386108) +description = Slinger village, WI +station = ('ketb', 0.002416683805340871) +zone = ('wiz059', 0.00081702609044403734) + +[fips5574500] +centroid = (0.78055922059300153, -1.537039599572809) +description = Sobieski CDP, WI +station = ('kgrb', 0.0042618284958533936) +zone = ('wiz074', 0.0029381649820471481) + +[fips5574550] +centroid = (0.75733597428572008, -1.5842962216662699) +description = Soldiers Grove village, WI +station = ('ky51', 0.0036692520532943412) +zone = ('wiz054', 0.0033315932337125011) + +[fips5574575] +centroid = (0.80892562059335238, -1.6027264796883096) +description = Solon Springs village, WI +station = ('ksuw', 0.0067612995315903578) +zone = ('wiz001', 0.0017734624499900614) + +[fips5574675] +centroid = (0.78761912977719606, -1.6174655583285991) +description = Somerset village, WI +station = ('krnh', 0.0017130615593687799) +zone = ('mnz063', 0.0030173632528416264) + +[fips5575125] +centroid = (0.74896691108289704, -1.533486632814524) +description = South Milwaukee city, WI +station = ('kmke', 0.00081058788214866757) +zone = ('wiz066', 0.0021202857562198103) + +[fips5575275] +centroid = (0.74293116110377266, -1.5686337591319204) +description = South Wayne village, WI +station = ('keft', 0.0037605886353588849) +zone = ('wiz068', 0.00403419241848547) + +[fips5575325] +centroid = (0.76692931614564708, -1.5848775210269392) +description = Sparta city, WI +station = ('kcmy', 0.00091388186530070876) +zone = ('wiz042', 0.0023747385549848961) + +[fips5575400] +centroid = (0.7810979339199221, -1.5760055237468613) +description = Spencer village, WI +station = ('kmfi', 0.0025392130539824542) +zone = ('wiz029', 0.0039019099295910381) + +[fips5575625] +centroid = (0.79983039570194459, -1.6037916366775091) +description = Spooner city, WI +station = ('kube', 0.0058332588253147532) +zone = ('wiz007', 0.0017472346938081284) + +[fips5575975] +centroid = (0.74421985986356765, -1.5431071494509045) +description = Springfield CDP, WI +station = ('kbuu', 0.0016456986372302687) +zone = ('wiz070', 0.0017179652221756198) + +[fips5576025] +centroid = (0.75359613512442414, -1.5720140255607205) +description = Spring Green village, WI +station = ('klnr', 0.0015956643953940679) +zone = ('wiz062', 0.0032068594466174139) + +[fips5576300] +centroid = (0.78281996302640233, -1.6099464355649122) +description = Spring Valley village, WI +station = ('klum', 0.0046947826436239109) +zone = ('wiz024', 0.0032083594033687907) + +[fips5576625] +centroid = (0.78468926301516584, -1.587267330558525) +description = Stanley city, WI +station = ('keau', 0.0068631504929691197) +zone = ('wiz027', 0.0045707648834399173) + +[fips5576825] +centroid = (0.78884538065635479, -1.6149894248122096) +description = Star Prairie village, WI +station = ('krnh', 0.00086145757505214017) +zone = ('wiz023', 0.0030162219081209282) + +[fips5577100] +centroid = (0.78673281667644834, -1.5762697491423208) +description = Stetsonville village, WI +station = ('kmdz', 0.00044830309183370209) +zone = ('wiz017', 0.0032995841538984083) + +[fips5577175] +centroid = (0.75369031309086176, -1.5857520706085284) +description = Steuben village, WI +station = ('kovs', 0.0022845374029432791) +zone = ('wiz054', 0.001360683647651724) + +[fips5577200] +centroid = (0.77711626193746974, -1.5630072365025114) +description = Stevens Point city, WI +station = ('kste', 0.0004484276932871466) +zone = ('wiz036', 0.0010809192467116759) + +[fips5577400] +centroid = (0.76913949639061752, -1.5412951486214841) +description = Stockbridge village, WI +station = ('katw', 0.004093383394864738) +zone = ('wiz049', 0.0011729431147571732) + +[fips5577475] +centroid = (0.77651211621689198, -1.6104535584323716) +description = Stockholm village, WI +station = ('krgk', 0.0031767908866260912) +zone = ('mnz079', 0.0036446667775035871) + +[fips5577550] +centroid = (0.76205049256779223, -1.5919627898451654) +description = Stoddard village, WI +station = ('klse', 0.003886618600270249) +zone = ('wiz041', 0.0044361785698428359) + +[fips5577625] +centroid = (0.80004032390437441, -1.5978854773953455) +description = Stone Lake CDP, WI +station = ('khyr', 0.0033404580857509403) +zone = ('wiz007', 0.0030908968300767475) + +[fips5577675] +centroid = (0.74913001210149588, -1.557255608672319) +description = Stoughton city, WI +station = ('kmsn', 0.0040228789956059316) +zone = ('wiz063', 0.003547139348753317) + +[fips5577750] +centroid = (0.78186586133750713, -1.5720281103677842) +description = Stratford village, WI +station = ('kmfi', 0.0031901049552938007) +zone = ('wiz030', 0.0042370532961067391) + +[fips5577825] +centroid = (0.77759545953689735, -1.5950179887007814) +description = Strum village, WI +station = ('keau', 0.0056023508619388674) +zone = ('wiz028', 0.0032872771027833234) + +[fips5577875] +centroid = (0.78230327575464187, -1.5248907815286967) +description = Sturgeon Bay city, WI +station = ('ksue', 0.00075086376695330398) +zone = ('wiz022', 0.0022064787815683951) + +[fips5577925] +centroid = (0.74525995392470867, -1.5341714651064216) +description = Sturtevant village, WI +station = ('krac', 0.0015899261262956365) +zone = ('wiz071', 0.0021358660531586751) + +[fips5577975] +centroid = (0.77888335544523646, -1.5364664858063315) +description = Suamico village, WI +station = ('kgrb', 0.002796303330622113) +zone = ('wiz039', 0.0030426622271772412) + +[fips5578175] +centroid = (0.75070702180042781, -1.5462814321213842) +description = Sullivan village, WI +station = ('kryv', 0.0031054236652930003) +zone = ('wiz064', 0.0023082093851896713) + +[fips5578425] +centroid = (0.7919874794554278, -1.5568198872245587) +description = Summit Lake CDP, WI +station = ('kaig', 0.0041541156153166595) +zone = ('wiz019', 0.0025454589231815091) + +[fips5578600] +centroid = (0.75366739691778317, -1.5574570720278766) +description = Sun Prairie city, WI +station = ('kmsn', 0.001684457518615793) +zone = ('wiz063', 0.0030671554949291049) + +[fips5578650] +centroid = (0.8150523894929681, -1.6067848065315093) +description = Superior city, WI +station = ('ksuw', 0.00042441531525481513) +zone = ('wiz001', 0.0050029004121042641) + +[fips5578660] +centroid = (0.81425419806615362, -1.6076123369430502) +description = Superior village, WI +station = ('ksuw', 0.00065906260602937444) +zone = ('wiz001', 0.0045314463034518727) + +[fips5578725] +centroid = (0.78541230056438949, -1.5423380003028431) +description = Suring village, WI +station = ('kezs', 0.0043689105665779193) +zone = ('wiz074', 0.0035129300975886846) + +[fips5578750] +centroid = (0.75286953710352633, -1.5397842519946177) +description = Sussex village, WI +station = ('kues', 0.0016697324756145178) +zone = ('wiz065', 0.0023082268105003622) + +[fips5578980] +centroid = (0.78520781778922577, -1.6030536242033036) +description = Tainter Lake CDP, WI +station = ('klum', 0.0017079315780227347) +zone = ('wiz025', 0.00095089628273148906) + +[fips5579100] +centroid = (0.76467279740903615, -1.5426718294288724) +description = Taycheedah CDP, WI +station = ('kfld', 0.0014372348970733211) +zone = ('wiz051', 0.0016227160235032332) + +[fips5579150] +centroid = (0.77355997905360618, -1.5903514669731391) +description = Taylor village, WI +station = ('kbck', 0.0036031977570982572) +zone = ('wiz033', 0.0029892093960231713) + +[fips5579250] +centroid = (0.74509226269017703, -1.5827833353640564) +description = Tennyson village, WI +station = ('kpvb', 0.0031662007491367293) +zone = ('wiz061', 0.0030967375071198427) + +[fips5579375] +centroid = (0.75951086397321532, -1.543810202980193) +description = Theresa village, WI +station = ('kunu', 0.0035301064957240615) +zone = ('wiz059', 0.0038329903354130898) + +[fips5579475] +centroid = (0.7546228425102024, -1.5354695013777147) +description = Thiensville village, WI +station = ('kmwc', 0.0022188214225006184) +zone = ('wiz060', 0.0025859766296396232) + +[fips5579600] +centroid = (0.78188146458101981, -1.5479536844375976) +description = Thornton CDP, WI +station = ('kezs', 0.001631918693992397) +zone = ('wiz031', 0.00093554535625344274) + +[fips5579625] +centroid = (0.78467179226935335, -1.5848007265398514) +description = Thorp city, WI +station = ('keau', 0.0085673789203842676) +zone = ('wiz029', 0.004559160715615085) + +[fips5579675] +centroid = (0.79940455281775036, -1.5563150856450045) +description = Three Lakes CDP, WI +station = ('kegv', 0.0025545658682226469) +zone = ('wiz005', 0.0060490125715839558) + +[fips5579740] +centroid = (0.74719360420299319, -1.5395336750739088) +description = Tichigan CDP, WI +station = ('kbuu', 0.0024359519201323349) +zone = ('wiz071', 0.0022578574986273242) + +[fips5579825] +centroid = (0.78088884347553322, -1.5541432153771151) +description = Tigerton village, WI +station = ('kcli', 0.0044945871233331063) +zone = ('wiz031', 0.0035706008266802058) + +[fips5579900] +centroid = (0.78217841489995421, -1.5518171801763974) +description = Tilleda CDP, WI +station = ('kcli', 0.0041754426741896881) +zone = ('wiz031', 0.001877197356093205) + +[fips5580075] +centroid = (0.76774354714828741, -1.5795546158742069) +description = Tomah city, WI +station = ('kcmy', 0.0030101242149720795) +zone = ('wiz042', 0.0016381783674251293) + +[fips5580125] +centroid = (0.79375760983609278, -1.5657658166517507) +description = Tomahawk city, WI +station = ('ktkv', 0.0011611732560667574) +zone = ('wiz018', 0.0024847529603653331) + +[fips5580225] +centroid = (0.79378124159416485, -1.5882000170574981) +description = Tony village, WI +station = ('krcx', 0.00028793200395320465) +zone = ('wiz016', 0.0016661482638133103) + +[fips5580300] +centroid = (0.79111542569466875, -1.5461945321779276) +description = Townsend CDP, WI +station = ('kaig', 0.0069875366701145853) +zone = ('wiz021', 0.0030009548653511641) + +[fips5580425] +centroid = (0.80121276628269411, -1.6027377196086925) +description = Trego CDP, WI +station = ('khyr', 0.0049990618784316104) +zone = ('wiz007', 0.00048725888242034791) + +[fips5580475] +centroid = (0.76800794707667208, -1.5957647103679546) +description = Trempealeau village, WI +station = ('klse', 0.0030914363388218256) +zone = ('wiz041', 0.0043098634231409126) + +[fips5581025] +centroid = (0.76803142175511141, -1.5807094304270815) +description = Tunnel City CDP, WI +station = ('kcmy', 0.0022824537209321055) +zone = ('wiz042', 0.0012094817826889094) + +[fips5581075] +centroid = (0.79224941846956698, -1.6082080701766333) +description = Turtle Lake village, WI +station = ('kube', 0.0026554719404212118) +zone = ('wiz015', 0.0036572231597210448) + +[fips5581090] +centroid = (0.74576803672325676, -1.5478289108493726) +description = Turtle Lake CDP, WI +station = ('kbuu', 0.0049118292087894332) +zone = ('wiz070', 0.0021103453546350505) + +[fips5581150] +centroid = (0.77090447804998929, -1.5515326391484445) +description = Tustin CDP, WI +station = ('kpcz', 0.0032264826878416202) +zone = ('wiz048', 0.0036098328055706691) + +[fips5581250] +centroid = (0.74203678458188072, -1.5402595051499357) +description = Twin Lakes village, WI +station = ('kbuu', 0.0031327771767371937) +zone = ('wiz072', 0.0028862606909353049) + +[fips5581325] +centroid = (0.77062719759172504, -1.5284970506423377) +description = Two Rivers city, WI +station = ('kmtw', 0.0013852245197697453) +zone = ('wiz050', 0.0029799363645140516) + +[fips5581725] +centroid = (0.76240418354070882, -1.5753987251258208) +description = Union Center village, WI +station = ('kvok', 0.0043772942068041852) +zone = ('wiz043', 0.004624832095404611) + +[fips5581775] +centroid = (0.74502740625517294, -1.5367629823396602) +description = Union Grove village, WI +station = ('kenw', 0.0021322345773659222) +zone = ('wiz071', 0.0010626945803825958) + +[fips5581850] +centroid = (0.7828008691243854, -1.5762600451116797) +description = Unity village, WI +station = ('kmfi', 0.0041282987646859715) +zone = ('wiz029', 0.0042252872883998685) + +[fips5582200] +centroid = (0.76914492436459125, -1.5338941846481571) +description = Valders village, WI +station = ('kmtw', 0.0027750620131490591) +zone = ('wiz050', 0.0013048617632433765) + +[fips5582450] +centroid = (0.76595866873544294, -1.5445778860516826) +description = Van Dyne CDP, WI +station = ('kosh', 0.0015501858345008757) +zone = ('wiz051', 0.0023174405579901667) + +[fips5582600] +centroid = (0.75024463172169698, -1.5627066908053178) +description = Verona city, WI +station = ('kc29', 0.0021683932722169979) +zone = ('wiz063', 0.0020736697684847153) + +[fips5582650] +centroid = (0.77633040998846681, -1.5702288155353181) +description = Vesper village, WI +station = ('kisw', 0.002596217268154771) +zone = ('wiz035', 0.0010222368968117004) + +[fips5582900] +centroid = (0.7593356503696076, -1.5825387274693894) +description = Viola village, WI +station = ('ky51', 0.0031527908519651073) +zone = ('wiz053', 0.0025483232285024764) + +[fips5582925] +centroid = (0.76022236489608319, -1.5862725976046432) +description = Viroqua city, WI +station = ('ky51', 0.00044762959033160424) +zone = ('wiz053', 0.00091684511118641479) + +[fips5583000] +centroid = (0.79306565660084716, -1.547369383110615) +description = Wabeno CDP, WI +station = ('kaig', 0.0074149869443444136) +zone = ('wiz011', 0.0042105956413903065) + +[fips5583100] +centroid = (0.76230527573199836, -1.5349701626787191) +description = Waldo village, WI +station = ('ksbm', 0.0022267828433134764) +zone = ('wiz052', 0.00077399330511404769) + +[fips5583175] +centroid = (0.75059345322600057, -1.5423536908128186) +description = Wales village, WI +station = ('kues', 0.0018102047118087571) +zone = ('wiz065', 0.00086729367251175374) + +[fips5583250] +centroid = (0.74230821818715087, -1.5463044355609254) +description = Walworth village, WI +station = ('kbuu', 0.0046701480443095845) +zone = ('wiz070', 0.0024988889152338521) + +[fips5583450] +centroid = (0.77016885667685886, -1.579888986052304) +description = Warrens village, WI +station = ('kcmy', 0.0040134820997930146) +zone = ('wiz042', 0.0033968756175179853) + +[fips5583525] +centroid = (0.81461137969757424, -1.5863897441040373) +description = Washburn city, WI +station = ('kasx', 0.0021784890219961541) +zone = ('wiz002', 0.0045160224223141088) + +[fips5583825] +centroid = (0.74640789188033041, -1.5396730047080953) +description = Waterford village, WI +station = ('kbuu', 0.0017339333573078979) +zone = ('wiz071', 0.0020962591355364402) + +[fips5583925] +centroid = (0.75369474622716193, -1.5531692692946246) +description = Waterloo city, WI +station = ('kryv', 0.0034919933728119142) +zone = ('wiz064', 0.0039374269945885469) + +[fips5583975] +centroid = (0.75380182217677172, -1.5486104518351229) +description = Watertown city, WI +station = ('kryv', 0.000430241905775901) +zone = ('wiz064', 0.0030058857315045048) + +[fips5584150] +centroid = (0.75869829103336428, -1.5357757019416847) +description = Waubeka CDP, WI +station = ('ketb', 0.0019000049508981209) +zone = ('wiz060', 0.0015992003545692013) + +[fips5584200] +centroid = (0.7676764566918407, -1.5493657605222162) +description = Waukau CDP, WI +station = ('kosh', 0.0028073577527656731) +zone = ('wiz048', 0.0021735938186045567) + +[fips5584250] +centroid = (0.75065012406681286, -1.5401668805265325) +description = Waukesha city, WI +station = ('kues', 0.00056849333482056352) +zone = ('wiz065', 0.00077468056569126404) + +[fips5584300] +centroid = (0.77322150735176698, -1.600557751013074) +description = Waumandee CDP, WI +station = ('kona', 0.003822750169751781) +zone = ('wiz032', 0.0014871444560098123) + +[fips5584350] +centroid = (0.75376051023337709, -1.5610411231001398) +description = Waunakee village, WI +station = ('kmsn', 0.0014937371278974224) +zone = ('wiz063', 0.0021125818870330257) + +[fips5584375] +centroid = (0.77405436101752612, -1.554564817111227) +description = Waupaca city, WI +station = ('kpcz', 0.00074089087578291734) +zone = ('wiz037', 0.0024764215963520844) + +[fips5584425] +centroid = (0.76147156685490558, -1.548739658559648) +description = Waupun city, WI +station = ('kunu', 0.0035577126401412609) +zone = ('wiz058', 0.0037302193313484377) + +[fips5584475] +centroid = (0.78473259954049279, -1.5645739836654415) +description = Wausau city, WI +station = ('kauw', 0.00059811829312433516) +zone = ('wiz030', 0.0018077986421136047) + +[fips5584525] +centroid = (0.79199981893323934, -1.5351014463450543) +description = Wausaukee village, WI +station = ('kmnm', 0.0058201487860460553) +zone = ('wiz073', 0.0033321258917425123) + +[fips5584625] +centroid = (0.76912082136762128, -1.5584240193400665) +description = Wautoma city, WI +station = ('ky50', 0.00048339499031671026) +zone = ('wiz045', 0.0010011012171356754) + +[fips5584675] +centroid = (0.75159323018142044, -1.5365105553699445) +description = Wauwatosa city, WI +station = ('kmwc', 0.00093500034560496637) +zone = ('wiz066', 0.0013144900198180684) + +[fips5584725] +centroid = (0.7519899784269839, -1.5864859117458221) +description = Wauzeka village, WI +station = ('kovs', 0.0029663188073043296) +zone = ('wiz054', 0.0027125318205051246) + +[fips5585025] +centroid = (0.80075749714731148, -1.6120403943349924) +description = Webster village, WI +station = ('krzn', 0.001005650680997201) +zone = ('wiz006', 0.00030725963685470498) + +[fips5585300] +centroid = (0.75061699771760992, -1.5363956428919932) +description = West Allis city, WI +station = ('kmwc', 0.0019116020755839606) +zone = ('wiz066', 0.00079496048476963377) + +[fips5585325] +centroid = (0.75883383330307408, -1.5667044547234734) +description = West Baraboo village, WI +station = ('kdll', 0.00077030036777523184) +zone = ('wiz056', 0.0024829173216836752) + +[fips5585350] +centroid = (0.75780122670442429, -1.5390609351927136) +description = West Bend city, WI +station = ('ketb', 0.00068259043522372182) +zone = ('wiz059', 0.0010779493079971954) + +[fips5585425] +centroid = (0.79169524152547377, -1.5759170530070779) +description = Westboro CDP, WI +station = ('kmdz', 0.0045340018868712069) +zone = ('wiz017', 0.0036470627546789825) + +[fips5585475] +centroid = (0.761886204725302, -1.5857746202624643) +description = Westby city, WI +station = ('ky51', 0.0013533494266412163) +zone = ('wiz053', 0.0010721213896636383) + +[fips5585575] +centroid = (0.76594058712439228, -1.5619386412146852) +description = Westfield village, WI +station = ('ky50', 0.0036076899652281091) +zone = ('wiz046', 0.0016431491883691339) + +[fips5585875] +centroid = (0.7507076152123735, -1.5353840849641223) +description = West Milwaukee village, WI +station = ('kmke', 0.0014169573865928532) +zone = ('wiz066', 0.0001074097013109724) + +[fips5586025] +centroid = (0.78349959423712878, -1.5629362539618326) +description = Weston village, WI +station = ('kauw', 0.0011074190764712782) +zone = ('wiz030', 0.002591335932258694) + +[fips5586275] +centroid = (0.76617395509867636, -1.5897759621055865) +description = West Salem village, WI +station = ('klse', 0.0020616416296233759) +zone = ('wiz041', 0.00037561037250349215) + +[fips5586400] +centroid = (0.77359263416391111, -1.5521759500574372) +description = Weyauwega city, WI +station = ('kpcz', 0.0010404089639461705) +zone = ('wiz037', 0.002592522630799832) + +[fips5586450] +centroid = (0.79282707009209963, -1.595496924500821) +description = Weyerhaeuser village, WI +station = ('krpd', 0.0043920914307887882) +zone = ('wiz016', 0.0035607088498444428) + +[fips5586575] +centroid = (0.78611716923609987, -1.6039515786501619) +description = Wheeler village, WI +station = ('klum', 0.0026297129176477952) +zone = ('wiz025', 0.0016515006955842258) + +[fips5586700] +centroid = (0.75246818118873782, -1.5341540816270718) +description = Whitefish Bay village, WI +station = ('kmwc', 0.0016927411754243894) +zone = ('wiz066', 0.002035662818272675) + +[fips5586725] +centroid = (0.77432218179124457, -1.593970058111299) +description = Whitehall city, WI +station = ('kbck', 0.0062976797647774372) +zone = ('wiz033', 0.0011381687932807182) + +[fips5586750] +centroid = (0.78818533203983554, -1.5492138994240001) +description = White Lake village, WI +station = ('kaig', 0.0041460819534169576) +zone = ('wiz020', 0.0027891741692972613) + +[fips5586775] +centroid = (0.77048757125156542, -1.5328500239698593) +description = Whitelaw village, WI +station = ('kmtw', 0.0017978729828749334) +zone = ('wiz050', 0.0004954691413828591) + +[fips5586925] +centroid = (0.74765435367222721, -1.548705380293139) +description = Whitewater city, WI +station = ('kjvl', 0.005435799347726423) +zone = ('wiz064', 0.0032458672042430066) + +[fips5586975] +centroid = (0.77649794414336581, -1.5631174191381896) +description = Whiting village, WI +station = ('kste', 0.0010279728735323667) +zone = ('wiz036', 0.00076901343488248661) + +[fips5587000] +centroid = (0.78924869133990561, -1.5764376672696552) +description = Whittlesey CDP, WI +station = ('kmdz', 0.0021001223877300918) +zone = ('wiz017', 0.0021939320409074974) + +[fips5587075] +centroid = (0.77107000507624845, -1.5575858947799666) +description = Wild Rose village, WI +station = ('ky50', 0.0025227484650779323) +zone = ('wiz045', 0.0011511694856021662) + +[fips5587200] +centroid = (0.74314091477327726, -1.5454127992059592) +description = Williams Bay village, WI +station = ('kbuu', 0.0036565567675404596) +zone = ('wiz070', 0.0015656304912806947) + +[fips5587325] +centroid = (0.74191288365828156, -1.5391473813505649) +description = Wilmot CDP, WI +station = ('kbuu', 0.0035213558679532044) +zone = ('wiz072', 0.0022107037038501319) + +[fips5587475] +centroid = (0.78466950588803308, -1.6086802690057604) +description = Wilson village, WI +station = ('klum', 0.0039154156759944091) +zone = ('wiz025', 0.0033927787441983483) + +[fips5587525] +centroid = (0.7646873709082902, -1.5799944388457094) +description = Wilton village, WI +station = ('kcmy', 0.0036648584347765715) +zone = ('wiz042', 0.002577293809836467) + +[fips5587625] +centroid = (0.77140416581483529, -1.5474079199804989) +description = Winchester CDP, WI +station = ('katw', 0.0020071237024358924) +zone = ('wiz048', 0.0022649323248464634) + +[fips5587675] +centroid = (0.74739948324155847, -1.5386396127112822) +description = Wind Lake CDP, WI +station = ('kbuu', 0.0029810994751104099) +zone = ('wiz071', 0.001855260419963041) + +[fips5587700] +centroid = (0.74665921929261758, -1.5319035144632103) +description = Wind Point village, WI +station = ('krac', 0.00062522345326225493) +zone = ('wiz066', 0.0046770773939931983) + +[fips5587725] +centroid = (0.75425513654339227, -1.559276787212591) +description = Windsor CDP, WI +station = ('kmsn', 0.0014421042612329305) +zone = ('wiz063', 0.0027728128230931071) + +[fips5587900] +centroid = (0.76989576500879919, -1.5483170270812776) +description = Winneconne village, WI +station = ('kosh', 0.0032476471300231613) +zone = ('wiz048', 0.0011289690208179058) + +[fips5587975] +centroid = (0.79974635809846095, -1.588478257446851) +description = Winter village, WI +station = ('krcx', 0.0056818793347774123) +zone = ('wiz008', 0.0018923364244680953) + +[fips5588150] +centroid = (0.76157639132978039, -1.5669998691526659) +description = Wisconsin Dells city, WI +station = ('kdll', 0.0019806446642825662) +zone = ('wiz056', 0.004198403052882712) + +[fips5588200] +centroid = (0.77480270584090372, -1.5677723693328913) +description = Wisconsin Rapids city, WI +station = ('kisw', 0.00046561597308923387) +zone = ('wiz035', 0.0028909842238253759) + +[fips5588275] +centroid = (0.78454003736412026, -1.5812468871169405) +description = Withee village, WI +station = ('kmdz', 0.0044901489247114231) +zone = ('wiz029', 0.0037758360072350987) + +[fips5588325] +centroid = (0.78238171085122654, -1.5562508749818236) +description = Wittenberg village, WI +station = ('kaig', 0.0056941167011592539) +zone = ('wiz020', 0.0064355400672179491) + +[fips5588500] +centroid = (0.76189690359361673, -1.5747100880161538) +description = Wonewoc village, WI +station = ('kvok', 0.0049135708111946461) +zone = ('wiz043', 0.0049299563695048738) + +[fips5588675] +centroid = (0.74433594171211792, -1.5683041013428038) +description = Woodford CDP, WI +station = ('keft', 0.0034666289439196575) +zone = ('wiz068', 0.0033221586139285325) + +[fips5588825] +centroid = (0.75210572866297609, -1.5847065660267063) +description = Woodman village, WI +station = ('kovs', 0.001761940254964886) +zone = ('wiz054', 0.0030812025984932054) + +[fips5588925] +centroid = (0.80100901654581624, -1.5654059472132822) +description = Woodruff CDP, WI +station = ('karv', 0.000850421087604966) +zone = ('wiz005', 0.0034964457705429042) + +[fips5589025] +centroid = (0.78450033112363737, -1.6106821092979202) +description = Woodville village, WI +station = ('krnh', 0.0046767652163410191) +zone = ('wiz023', 0.0025493097613199) + +[fips5589150] +centroid = (0.77364047363870825, -1.5389251311236158) +description = Wrightstown village, WI +station = ('kgrb', 0.0027864841685712764) +zone = ('wiz039', 0.0030781255324165277) + +[fips5589275] +centroid = (0.76843565746316578, -1.5775373294181667) +description = Wyeville village, WI +station = ('kvok', 0.002234197355701446) +zone = ('wiz042', 0.003245424332181853) + +[fips5589300] +centroid = (0.75907767325287034, -1.558725664594689) +description = Wyocena village, WI +station = ('kmsn', 0.0062812428031379262) +zone = ('wiz057', 0.00054837579822119317) + +[fips5589625] +centroid = (0.75985448439634784, -1.5782449033502177) +description = Yuba village, WI +station = ('klnr', 0.0063787835495413107) +zone = ('wiz055', 0.0028076621041012691) + +[fips5589760] +centroid = (0.78549387725362774, -1.5511584405568171) +description = Zoar CDP, WI +station = ('kaig', 0.0037500755714117975) +zone = ('wiz020', 0.0020341601652370984) + +[fips56001] +centroid = (0.72720040383579265, -1.8451949497582203) +description = Albany County, WY +station = ('klar', 0.0061311783751422716) +zone = ('wyz115', 0.0046540923066327343) + +[fips5600191100] +centroid = (0.72609426651575615, -1.8407671716189584) +description = East Albany CCD, WY +station = ('klar', 0.0056181642534510164) +zone = ('wyz115', 0.005203307372490952) + +[fips5600192090] +centroid = (0.72122945793179483, -1.8433984649058499) +description = Laramie CCD, WY +station = ('klar', 0.00063640185193123712) +zone = ('wyz115', 0.0023005574165041284) + +[fips5600192695] +centroid = (0.73329198689768826, -1.8453460254582728) +description = Rock River CCD, WY +station = ('klar', 0.012208552976801408) +zone = ('wyz103', 0.0060740736908652549) + +[fips5600193135] +centroid = (0.71874656999120023, -1.8482973597701027) +description = South Albany CCD, WY +station = ('klar', 0.0038653074313486895) +zone = ('wyz115', 0.0042359792931887554) + +[fips5600245] +centroid = (0.74576863013520234, -1.9361224673567976) +description = Afton town, WY +station = ('ku78', 0.008474408461251387) +zone = ('wyz023', 0.0024261031423618525) + +[fips56003] +centroid = (0.77711926390378328, -1.8848390216131352) +description = Big Horn County, WY +station = ('kgey', 0.0011310476307297922) +zone = ('wyz004', 0.003839776979154609) + +[fips5600390688] +centroid = (0.77819122767706561, -1.8864981141467885) +description = Central Big Horn CCD, WY +station = ('kgey', 0.0012304243671274356) +zone = ('wyz004', 0.002742914024844962) + +[fips5600392393] +centroid = (0.78262048934619188, -1.8896257092597772) +description = North Big Horn CCD, WY +station = ('kgey', 0.0061026321508145711) +zone = ('wyz004', 0.0051852195437633126) + +[fips5600393142] +centroid = (0.77381570469560834, -1.8816358013836576) +description = South Big Horn CCD, WY +station = ('kgey', 0.0046396602135861421) +zone = ('wyz008', 0.0045153780860003124) + +[fips56005] +centroid = (0.77215671688171017, -1.8422304382105379) +description = Campbell County, WY +station = ('kgcc', 0.0016061182376419618) +zone = ('wyz054', 0.0061903844204269981) + +[fips5600591210] +centroid = (0.77931523716864259, -1.8421802949011279) +description = Gillette North CCD, WY +station = ('kgcc', 0.005552612060543952) +zone = ('wyz054', 0.000968227531427741) + +[fips5600591265] +centroid = (0.76597064169411155, -1.8420237039606391) +description = Gillette South CCD, WY +station = ('kgcc', 0.0077929642308535788) +zone = ('wyz055', 0.00076152005827941549) + +[fips5600680] +centroid = (0.71884649009087687, -1.8522389764462219) +description = Albany CDP, WY +station = ('k33v', 0.0078282004530033696) +zone = ('wyz114', 0.0032860239508750067) + +[fips56007] +centroid = (0.72786495540178198, -1.866335599388852) +description = Carbon County, WY +station = ('krwl', 0.003860560903551853) +zone = ('wyz109', 0.003007612844236156) + +[fips5600791650] +centroid = (0.73255591173895218, -1.85809439900703) +description = Hanna CCD, WY +station = ('krwl', 0.010062770592413135) +zone = ('wyz110', 0.0055782039224498529) + +[fips5600792640] +centroid = (0.72792157388271672, -1.8739131208693105) +description = Rawlins CCD, WY +station = ('krwl', 0.002718432713809948) +zone = ('wyz109', 0.0039709831428986833) + +[fips5600792860] +centroid = (0.72061625395239914, -1.8640665840947965) +description = Saratoga CCD, WY +station = ('krwl', 0.010326797641989337) +zone = ('wyz113', 0.0017678963922128628) + +[fips5600825] +centroid = (0.72286198655423284, -1.8169147864762105) +description = Albin town, WY +station = ('kibm', 0.0070098772598182922) +zone = ('wyz119', 0.0028796974712894689) + +[fips56009] +centroid = (0.75001752947942757, -1.841450939260012) +description = Converse County, WY +station = ('kdgw', 0.0034081980971103049) +zone = ('wyz101', 0.0018690843994202504) + +[fips5600990990] +centroid = (0.75037359410012694, -1.838261227878945) +description = Douglas CCD, WY +station = ('kdgw', 0.0034552400695120845) +zone = ('wyz101', 0.0022224688658528807) + +[fips5600991375] +centroid = (0.74887606669533069, -1.8488934595228288) +description = Glenrock CCD, WY +station = ('kcpr', 0.0068137691699811957) +zone = ('wyz022', 0.0067479172344700857) + +[fips56011] +centroid = (0.77822950274756197, -1.8250436400140815) +description = Crook County, WY +station = ('kspf', 0.0099268137187010688) +zone = ('wyz056', 0.0029369884483095559) + +[fips5601115] +centroid = (0.74269557656133844, -1.8627800844498592) +description = Alcova CDP, WY +station = ('kcpr', 0.0069253753179896391) +zone = ('wyz104', 0.005291145044472755) + +[fips5601191760] +centroid = (0.78255095542879238, -1.8247437924485888) +description = Hulett CCD, WY +station = ('kspf', 0.011343934214302803) +zone = ('wyz056', 0.0050223781535750226) + +[fips5601192200] +centroid = (0.77536850667781521, -1.8298722853759415) +description = Moorcroft CCD, WY +station = ('kgcc', 0.0089525437987814996) +zone = ('wyz056', 0.003288092326671749) + +[fips5601193190] +centroid = (0.77544315440992306, -1.8208734375658289) +description = Sundance CCD, WY +station = ('kspf', 0.0068543011961986694) +zone = ('wyz057', 0.00070316838258617606) + +[fips56013] +centroid = (0.75145679779379215, -1.8955241018267697) +description = Fremont County, WY +station = ('kriw', 0.0019932003369597141) +zone = ('wyz017', 0.0044352255336880201) + +[fips5601391045] +centroid = (0.76144102359299581, -1.9145185724361016) +description = Dubois CCD, WY +station = ('kpna', 0.014593619666643501) +zone = ('wyz016', 0.0054481394617364922) + +[fips5601391842] +centroid = (0.7442846639386943, -1.8836748346421774) +description = Jeffrey City CCD, WY +station = ('kriw', 0.0099581561399250968) +zone = ('wyz019', 0.0036074081325711909) + +[fips5601392035] +centroid = (0.74329979209508645, -1.8970647214107976) +description = Lander CCD, WY +station = ('kfwz', 0.0016941376804920901) +zone = ('wyz018', 0.0037163619552796792) + +[fips5601393080] +centroid = (0.75465432824990841, -1.8806986119352143) +description = Shoshoni CCD, WY +station = ('ktbx', 0.0072484700766405393) +zone = ('wyz007', 0.0084108017354618623) + +[fips5601393685] +centroid = (0.75469968935716769, -1.8999065363120649) +description = Wind River CCD, WY +station = ('kriw', 0.0060061951976975664) +zone = ('wyz016', 0.0071302856082422657) + +[fips56015] +centroid = (0.73460175178155485, -1.8213118468206373) +description = Goshen County, WY +station = ('ktor', 0.0027253335682407634) +zone = ('wyz108', 2.7676775950030863e-05) + +[fips5601591430] +centroid = (0.72972189845944135, -1.8228827653204798) +description = Goshen Hole CCD, WY +station = ('ktor', 0.0056630834822744948) +zone = ('wyz108', 0.0049915091911219697) + +[fips5601592585] +centroid = (0.73976464514846441, -1.8209511570774202) +description = Rawhide Creek CCD, WY +station = ('ktor', 0.0063126623858429896) +zone = ('wyz108', 0.0051972143018021921) + +[fips5601593465] +centroid = (0.73342578383814616, -1.8193920893631987) +description = Torrington CCD, WY +station = ('ktor', 0.0013053900368535964) +zone = ('wyz108', 0.001828636527153104) + +[fips5601695] +centroid = (0.75329719513014259, -1.9376321247998951) +description = Alpine town, WY +station = ('kjac', 0.0084750030212620286) +zone = ('wyz023', 0.005210194068217636) + +[fips56017] +centroid = (0.76307315078970583, -1.8925591539467743) +description = Hot Springs County, WY +station = ('ktbx', 0.0051209950136624112) +zone = ('wyz005', 0.0022201720874509482) + +[fips5601793355] +centroid = (0.76191828387695359, -1.8842991389156158) +description = Thermopolis East CCD, WY +station = ('ktbx', 0.0047447913489557098) +zone = ('wyz005', 0.0045196482058755027) + +[fips5601793410] +centroid = (0.76482971996208293, -1.8966555638742526) +description = Thermopolis West CCD, WY +station = ('ktbx', 0.0082959097668736399) +zone = ('wyz005', 0.0050034784028786892) + +[fips5601793744] +centroid = (0.76075661018011875, -1.8945788489571822) +description = Wind River Reservation CCD, WY +station = ('ktbx', 0.0045488928282154889) +zone = ('wyz005', 0.0047775580551785192) + +[fips5601888] +centroid = (0.7538785817572744, -1.9374432976281217) +description = Alpine Northeast CDP, WY +station = ('kjac', 0.0078911359340374382) +zone = ('wyz023', 0.0057801603458125473) + +[fips56019] +centroid = (0.7687136535064234, -1.8603209853469693) +description = Johnson County, WY +station = ('kbyg', 0.0061347217564082018) +zone = ('wyz011', 0.0043412965937952089) + +[fips5601936] +centroid = (0.75363779613366921, -1.937819869867532) +description = Alpine Northwest CDP, WY +station = ('kjac', 0.00822918179875789) +zone = ('wyz023', 0.0055626221148200074) + +[fips5601985] +centroid = (0.76399386433001026, -1.9378610945444643) +description = Alta CDP, WY +station = ('kdij', 0.0010465453173567254) +zone = ('wyz013', 0.0048894474691209937) + +[fips5601990495] +centroid = (0.77414883568993653, -1.8609923087904563) +description = Buffalo CCD, WY +station = ('kbyg', 0.0012198523919821614) +zone = ('wyz010', 0.0024692036494451067) + +[fips5601991870] +centroid = (0.76459942376728229, -1.8598045249680115) +description = Kaycee CCD, WY +station = ('kjpd', 0.0096858850429160179) +zone = ('wyz011', 0.0015532205834050939) + +[fips56021] +centroid = (0.72069584096629014, -1.8266684891878107) +description = Laramie County, WY +station = ('kfew', 0.002955150676965205) +zone = ('wyz118', 0.00061331986267064214) + +[fips5602190715] +centroid = (0.71811072909140616, -1.8289946465615761) +description = Cheyenne CCD, WY +station = ('kcys', 0.00012419303769938694) +zone = ('wyz118', 0.0036785288744016044) + +[fips5602190770] +centroid = (0.72129424455362878, -1.8262691404016618) +description = Cheyenne East CCD, WY +station = ('kfew', 0.0036130662751260355) +zone = ('wyz118', 0.00022416986020956542) + +[fips5602190825] +centroid = (0.72096193386404916, -1.8340696102407701) +description = Cheyenne West CCD, WY +station = ('kfew', 0.0045406925643189299) +zone = ('wyz117', 0.00068911928546351163) + +[fips5602192420] +centroid = (0.72049149781746669, -1.8193603069175199) +description = Pine Bluffs CCD, WY +station = ('kfew', 0.0076285308069898436) +zone = ('wyz119', 0.00012545398149870401) + +[fips56023] +centroid = (0.73703138972667126, -1.9317276584871057) +description = Lincoln County, WY +station = ('kbpi', 0.0097020321386500959) +zone = ('wyz024', 0.0058290914701967208) + +[fips5602390055] +centroid = (0.74830768277112625, -1.9346812268203781) +description = Afton CCD, WY +station = ('ku78', 0.010194426568014461) +zone = ('wyz023', 0.0017121587660053048) + +[fips5602391925] +centroid = (0.73160332848650622, -1.9251556037354287) +description = Kemmerer East CCD, WY +station = ('kbpi', 0.011909235765831683) +zone = ('wyz027', 0.0037056338183084894) + +[fips5602391980] +centroid = (0.73391805395367116, -1.9338531029968919) +description = Kemmerer West CCD, WY +station = ('kbpi', 0.012980807431022983) +zone = ('wyz027', 0.0051062559779878119) + +[fips56025] +centroid = (0.75003152702002851, -1.8633986291367659) +description = Natrona County, WY +station = ('kcpr', 0.0040213514913481491) +zone = ('wyz020', 0.0019542089028409888) + +[fips5602590550] +centroid = (0.74764203164770815, -1.8560776536030581) +description = Casper CCD, WY +station = ('kcpr', 0.0019039318227367899) +zone = ('wyz022', 0.0041594382572520587) + +[fips5602590605] +centroid = (0.75412849545286742, -1.8558955983087826) +description = Casper North CCD, WY +station = ('kcpr', 0.0056381591660049288) +zone = ('wyz020', 0.0050292687328772493) + +[fips5602590660] +centroid = (0.74326977243195214, -1.8565341619222098) +description = Casper South CCD, WY +station = ('kcpr', 0.0056104816556332574) +zone = ('wyz022', 0.0014287188818311208) + +[fips5602591705] +centroid = (0.74979707694160813, -1.8684430844606352) +description = Hells Half Acre CCD, WY +station = ('kcpr', 0.0075775175046575004) +zone = ('wyz020', 0.0051366941127340329) + +[fips56027] +centroid = (0.75157645756730884, -1.8233170730515462) +description = Niobrara County, WY +station = ('kcut', 0.015933550577268054) +zone = ('wyz102', 0.00013336060434694817) + +[fips5602791128] +centroid = (0.75043806656269563, -1.8189703829093318) +description = East Niobrara CCD, WY +station = ('kcut', 0.014955245243218385) +zone = ('wyz102', 0.0034286554368944643) + +[fips5602793603] +centroid = (0.7520460384025579, -1.8254658526134313) +description = West Niobrara CCD, WY +station = ('kdgw', 0.011304782407958321) +zone = ('wyz102', 0.0015854376492692077) + +[fips5602877] +centroid = (0.7519076686994598, -1.8555046271030433) +description = Antelope Hills CDP, WY +station = ('kcpr', 0.0037234423347455303) +zone = ('wyz020', 0.0046700735771091247) + +[fips56029] +centroid = (0.77653864522152238, -1.9127691242070726) +description = Park County, WY +station = ('kcod', 0.0071938883622612469) +zone = ('wyz002', 0.0048307583324272334) + +[fips5602900] +centroid = (0.77186770781087244, -1.8408673011581453) +description = Antelope Valley-Crestview CDP, WY +station = ('kgcc', 0.0021199890767655814) +zone = ('wyz054', 0.0065478340192597273) + +[fips5602990935] +centroid = (0.77809413501077729, -1.9111584471068694) +description = Cody CCD, WY +station = ('kcod', 0.0061333788524145887) +zone = ('wyz002', 0.0063898707866735438) + +[fips5602992145] +centroid = (0.77037136722996769, -1.9045372089768711) +description = Meeteetse CCD, WY +station = ('kcod', 0.0067208219677928147) +zone = ('wyz002', 0.0055544691568407377) + +[fips5602992530] +centroid = (0.78099775202085764, -1.8986969184206777) +description = Powell CCD, WY +station = ('kcod', 0.0049394563766114114) +zone = ('wyz003', 0.005975473245919816) + +[fips5602993850] +centroid = (0.78044495388687352, -1.9263649423741354) +description = Yellowstone National Park CCD, WY +station = ('kp60', 0.0029519973123953397) +zone = ('wyz001', 0.0030285952299983331) + +[fips5603000] +centroid = (0.75036418677545857, -1.8928896320406394) +description = Arapahoe CDP, WY +station = ('kriw', 0.0012922702428357349) +zone = ('wyz017', 0.0033837178118767811) + +[fips56031] +centroid = (0.73531278146552492, -1.831911702606897) +description = Platte County, WY +station = ('ktor', 0.010594650903269918) +zone = ('wyz107', 0.0021266172288514152) + +[fips5603190880] +centroid = (0.72928963276359993, -1.8317497535056044) +description = Chugwater CCD, WY +station = ('kfew', 0.011090572792266103) +zone = ('wyz106', 0.0038979603459068394) + +[fips5603191320] +centroid = (0.74043382183697148, -1.8347027807868088) +description = Glendo CCD, WY +station = ('kdgw', 0.007382737461928455) +zone = ('wyz107', 0.0044796693476394618) + +[fips5603191595] +centroid = (0.73958363705174002, -1.8292394464424608) +description = Guernsey CCD, WY +station = ('ktor', 0.010220711168473536) +zone = ('wyz107', 0.0025884249463587325) + +[fips5603193630] +centroid = (0.73419287349769025, -1.8328092730813201) +description = Wheatland CCD, WY +station = ('ktor', 0.011176776439211026) +zone = ('wyz107', 0.0034290039285102534) + +[fips5603245] +centroid = (0.72614894768122118, -1.8535348834158274) +description = Arlington CDP, WY +station = ('klar', 0.0086013610928245068) +zone = ('wyz110', 0.0016748711760829816) + +[fips56033] +centroid = (0.78158233260052057, -1.865429040468781) +description = Sheridan County, WY +station = ('kshr', 0.0010894400658829177) +zone = ('wyz099', 0.0028186852111408071) + +[fips5603392915] +centroid = (0.78171508234342724, -1.8584226605327452) +description = Sheridan CCD, WY +station = ('kshr', 0.0060446956421803246) +zone = ('wyz099', 0.0021649989339779688) + +[fips5603392970] +centroid = (0.77892400416351548, -1.8677338350125021) +description = Sheridan South CCD, WY +station = ('kshr', 0.0024703249110078953) +zone = ('wyz099', 0.0053047110767472571) + +[fips5603393025] +centroid = (0.7825049136431248, -1.8751468068510826) +description = Sheridan West CCD, WY +station = ('kshr', 0.0059549916834344416) +zone = ('wyz098', 0.0011846684365652514) + +[fips56035] +centroid = (0.74644115785587339, -1.9183990676818155) +description = Sublette County, WY +station = ('kpna', 0.0014783440320614576) +zone = ('wyz025', 0.0040268011149172675) + +[fips5603590330] +centroid = (0.74274015227043433, -1.9252948286498601) +description = Big Piney CCD, WY +station = ('kbpi', 0.0027575105582419812) +zone = ('wyz024', 0.0045541305499767421) + +[fips5603590385] +centroid = (0.74216405399093621, -1.9115110385223573) +description = Boulder CCD, WY +station = ('kpna', 0.0060021728534338159) +zone = ('wyz026', 0.0045146350449901517) + +[fips5603592475] +centroid = (0.75163450721823022, -1.9206674895639253) +description = Pinedale CCD, WY +station = ('kpna', 0.0056199633657751215) +zone = ('wyz025', 0.0014893942927018896) + +[fips5603652] +centroid = (0.72445430279070477, -1.9051156285442745) +description = Arrowhead Springs CDP, WY +station = ('krks', 0.0021100433464757372) +zone = ('wyz029', 0.0059327572892100338) + +[fips56037] +centroid = (0.72711008304700198, -1.9002390215345697) +description = Sweetwater County, WY +station = ('krks', 0.0025061374150473891) +zone = ('wyz030', 0.0061178665262819803) + +[fips5603725] +centroid = (0.7795020746650686, -1.8525269557728008) +description = Arvada CDP, WY +station = ('kbyg', 0.0086501878304606466) +zone = ('wyz010', 0.0062611499176883495) + +[fips5603791485] +centroid = (0.73116305172939811, -1.9141158551644963) +description = Green River North CCD, WY +station = ('krks', 0.009561067159777446) +zone = ('wyz028', 0.0058409009627497762) + +[fips5603791540] +centroid = (0.72044390268876479, -1.9157124998175135) +description = Green River South CCD, WY +station = ('krks', 0.010878805715981113) +zone = ('wyz028', 0.0050183026343564386) + +[fips5603792750] +centroid = (0.73289138147447808, -1.9031822924252555) +description = Rock Springs North CCD, WY +station = ('krks', 0.0068348132309598427) +zone = ('wyz030', 0.010850415170136747) + +[fips5603792805] +centroid = (0.72087154326208835, -1.9016093493434805) +description = Rock Springs South CCD, WY +station = ('krks', 0.0053347439560544989) +zone = ('wyz029', 0.006427148516127499) + +[fips5603793575] +centroid = (0.72814515055989726, -1.8861560645199826) +description = Wamsutter CCD, WY +station = ('krks', 0.012963735646833495) +zone = ('wyz030', 0.0051776049254739723) + +[fips56039] +centroid = (0.76880568471788113, -1.9301264934313263) +description = Teton County, WY +station = ('kjac', 0.008052529464174488) +zone = ('wyz012', 0.0063861484337942049) + +[fips5603990110] +centroid = (0.76422552188162762, -1.9362922180798465) +description = Alta CCD, WY +station = ('kdij', 0.0021605199689055826) +zone = ('wyz013', 0.0040508803212518599) + +[fips5603991815] +centroid = (0.76217380007944557, -1.9284373986878312) +description = Jackson Hole CCD, WY +station = ('kjac', 0.0032878809390351313) +zone = ('wyz012', 0.00037616502164666615) + +[fips5603993905] +centroid = (0.77473023977036093, -1.9309556819056561) +description = Yellowstone National Park CCD, WY +station = ('kp60', 0.0039184990336503106) +zone = ('wyz001', 0.0037083413332460922) + +[fips5604015] +centroid = (0.7417857887821514, -1.8977470753351575) +description = Atlantic City CDP, WY +station = ('kfwz', 0.00070267530105360191) +zone = ('wyz018', 0.0053022021213699746) + +[fips56041] +centroid = (0.72055439948370847, -1.9296176426879073) +description = Uinta County, WY +station = ('kevw', 0.0062304565355141501) +zone = ('wyz021', 0.00015704027613880272) + +[fips5604160] +centroid = (0.74690246583046804, -1.9375503212178542) +description = Auburn CDP, WY +station = ('ku78', 0.0077291883039324978) +zone = ('wyz023', 0.0012704819872043881) + +[fips5604190440] +centroid = (0.72074273796329114, -1.9255055946103312) +description = Bridger Valley CCD, WY +station = ('kevw', 0.0093256794448532028) +zone = ('wyz021', 0.002944076154023915) + +[fips5604191155] +centroid = (0.72043252314204176, -1.9343038517295121) +description = Evanston CCD, WY +station = ('kevw', 0.0027076479106350562) +zone = ('wyz021', 0.0036743658622303641) + +[fips56043] +centroid = (0.76583007287615601, -1.8791794599009857) +description = Washakie County, WY +station = ('kwrl', 0.0038502064683434154) +zone = ('wyz006', 0.0021943402414707192) + +[fips5604393300] +centroid = (0.76543969508236243, -1.8740590478480699) +description = Ten Sleep CCD, WY +station = ('kjpd', 0.0057560143029204026) +zone = ('wyz009', 0.004492826084835466) + +[fips5604393795] +centroid = (0.76751426324445293, -1.8850299606333034) +description = Worland CCD, WY +station = ('kwrl', 0.0006981344589638359) +zone = ('wyz006', 0.0023893217965022481) + +[fips56045] +centroid = (0.7652607813807405, -1.8250911478763208) +description = Weston County, WY +station = ('kcut', 0.01217195936742458) +zone = ('wyz058', 0.00093750903272248314) + +[fips5604592255] +centroid = (0.76351341009352136, -1.8229958801093016) +description = Newcastle CCD, WY +station = ('kcut', 0.010510101357783543) +zone = ('wyz058', 0.0024069966370351926) + +[fips5604593520] +centroid = (0.76786112997999434, -1.8289110801969908) +description = Upton CCD, WY +station = ('kgcc', 0.011208536142243845) +zone = ('wyz058', 0.0039004540436141403) + +[fips5604740] +centroid = (0.71618985462324625, -1.878974366260584) +description = Baggs town, WY +station = ('kcag', 0.0095148709602515084) +zone = ('wyz111', 0.0044439334723923186) + +[fips5604885] +centroid = (0.73717824172993407, -1.8772944344956617) +description = Bairoil town, WY +station = ('krwl', 0.0089522454674697376) +zone = ('wyz019', 0.0057418873689507989) + +[fips5605245] +centroid = (0.74913008191466601, -1.8561127696276081) +description = Bar Nunn town, WY +station = ('kcpr', 0.0015718141172803427) +zone = ('wyz020', 0.0049150789981591411) + +[fips5605320] +centroid = (0.77458696569206464, -1.8857775375118102) +description = Basin town, WY +station = ('kgey', 0.002417971921340991) +zone = ('wyz004', 0.0042654479404870627) + +[fips5605625] +centroid = (0.72231847357186929, -1.937789047352942) +description = Bear River town, WY +station = ('kevw', 0.0020808559034503453) +zone = ('wyz021', 0.0065136476255718383) + +[fips5606045] +centroid = (0.74871741626632438, -1.9363228660615117) +description = Bedford CDP, WY +station = ('ku78', 0.0092767526077756294) +zone = ('wyz023', 0.00078689277312374794) + +[fips5606407] +centroid = (0.74626060354475454, -1.8591897676455815) +description = Bessemer Bend CDP, WY +station = ('kcpr', 0.0025907296168472356) +zone = ('wyz022', 0.0042568384012040012) + +[fips5606480] +centroid = (0.77747368791498572, -1.8165873801618289) +description = Beulah CDP, WY +station = ('kspf', 0.0038838536422967102) +zone = ('wyz057', 0.0039352772147746079) + +[fips5606770] +centroid = (0.77979698294877808, -1.8674511789401418) +description = Big Horn CDP, WY +station = ('kshr', 0.0015745547075307011) +zone = ('wyz099', 0.0047010855308135353) + +[fips5607060] +centroid = (0.74244512181367728, -1.9218682062761272) +description = Big Piney town, WY +station = ('kbpi', 0.00079770720549691) +zone = ('wyz026', 0.0055555909578420505) + +[fips5608365] +centroid = (0.75389254439129039, -1.9268885062431489) +description = Bondurant CDP, WY +station = ('kjac', 0.008221485529802508) +zone = ('wyz025', 0.0059562098107209258) + +[fips5609235] +centroid = (0.7460596637879725, -1.9147414684348736) +description = Boulder CDP, WY +station = ('kpna', 0.001546045235916628) +zone = ('wyz014', 0.0039536340995268088) + +[fips5609307] +centroid = (0.74901801432339543, -1.8989059914117741) +description = Boulder Flats CDP, WY +station = ('klnd', 0.0019214254022553213) +zone = ('wyz018', 0.0029153754340542275) + +[fips5610175] +centroid = (0.74806532635119427, -1.8540421284563346) +description = Brookhurst CDP, WY +station = ('kcpr', 0.0031175651987367455) +zone = ('wyz022', 0.0044710559428254954) + +[fips5610685] +centroid = (0.77386443428832408, -1.8625285999579393) +description = Buffalo city, WY +station = ('kbyg', 0.00077113653074438676) +zone = ('wyz010', 0.0035937459594103699) + +[fips5611120] +centroid = (0.77574764455122591, -1.8924958159482195) +description = Burlington town, WY +station = ('kgey', 0.0045087572848806533) +zone = ('wyz004', 0.0023606262668054625) + +[fips5611265] +centroid = (0.71891632071424927, -1.8214087649540007) +description = Burns town, WY +station = ('kfew', 0.0058179734698712285) +zone = ('wyz119', 0.0023260729272040807) + +[fips5611700] +centroid = (0.78185055479996701, -1.893829945628444) +description = Byron town, WY +station = ('kgey', 0.0071938264565077096) +zone = ('wyz004', 0.0050984019007853654) + +[fips5612860] +centroid = (0.71638098562963215, -1.8215018782695944) +description = Carpenter CDP, WY +station = ('kfew', 0.0060671363948711834) +zone = ('wyz119', 0.0045188027885096991) + +[fips5613005] +centroid = (0.72327226110149911, -1.9273729398303323) +description = Carter CDP, WY +station = ('kevw', 0.0084622464107911612) +zone = ('wyz021', 0.0030783340342336154) + +[fips5613150] +centroid = (0.74770833670599146, -1.8556369928735144) +description = Casper city, WY +station = ('kcpr', 0.0021421659213425241) +zone = ('wyz022', 0.0041551755721912671) + +[fips5613222] +centroid = (0.74603641600233594, -1.8556447595886858) +description = Casper Mountain CDP, WY +station = ('kcpr', 0.0032922510835803618) +zone = ('wyz022', 0.0025274939380092358) + +[fips5613440] +centroid = (0.72094624335407376, -1.8524592020912383) +description = Centennial CDP, WY +station = ('klar', 0.0061824518325468763) +zone = ('wyz114', 0.0023172291754374828) + +[fips5613900] +centroid = (0.71824129717274787, -1.8288125040008381) +description = Cheyenne city, WY +station = ('kfew', 0.00025898792833011267) +zone = ('wyz118', 0.0034975754356977484) + +[fips5614097] +centroid = (0.73397158320182987, -1.8309882838062517) +description = Chugcreek CDP, WY +station = ('ktor', 0.0098223801116756222) +zone = ('wyz107', 0.0032256949575388441) + +[fips5614165] +centroid = (0.72877530168632976, -1.8295053648072948) +description = Chugwater town, WY +station = ('ktor', 0.010138435609096346) +zone = ('wyz106', 0.0056386362694282625) + +[fips5615325] +centroid = (0.77911595547464985, -1.8567023418489319) +description = Clearmont town, WY +station = ('kbyg', 0.0061243737348269604) +zone = ('wyz099', 0.0043285296498216568) + +[fips5615400] +centroid = (0.72578185257964922, -1.9072953004339204) +description = Clearview Acres CDP, WY +station = ('krks', 0.0030144217807375803) +zone = ('wyz028', 0.0051433691759645989) + +[fips5615760] +centroid = (0.77703321917166002, -1.9033631259890547) +description = Cody city, WY +station = ('kcod', 0.00047825679281935708) +zone = ('wyz003', 0.0010753719781446838) + +[fips5615905] +centroid = (0.73445037937552948, -1.9364701718503798) +description = Cokeville town, WY +station = ('ku78', 0.01284626262445914) +zone = ('wyz027', 0.006837386216780361) + +[fips5617210] +centroid = (0.7497525361390972, -1.9197153426437921) +description = Cora CDP, WY +station = ('kpna', 0.0036890285686474924) +zone = ('wyz025', 0.00072521377349910932) + +[fips5617645] +centroid = (0.78336572748350086, -1.8931479407699345) +description = Cowley town, WY +station = ('kgey', 0.0079962180171773232) +zone = ('wyz004', 0.0062727955658644398) + +[fips5618225] +centroid = (0.75642185808998796, -1.9064188833500313) +description = Crowheart CDP, WY +station = ('klnd', 0.011108868833117704) +zone = ('wyz016', 0.0023777599063132251) + +[fips5618950] +centroid = (0.74814826439724913, -1.9211969002859328) +description = Daniel CDP, WY +station = ('kpna', 0.0036625220103081212) +zone = ('wyz025', 0.0020554500785939065) + +[fips5619385] +centroid = (0.78318747700699476, -1.8720839110934653) +description = Dayton town, WY +station = ('kshr', 0.0041085423054306172) +zone = ('wyz098', 0.0032905210609063631) + +[fips5619530] +centroid = (0.7834612668067551, -1.8953580686550275) +description = Deaver town, WY +station = ('kcod', 0.008334543421540979) +zone = ('mtz039', 0.0066256135943934527) + +[fips5620110] +centroid = (0.72916409123050396, -1.9292148905097171) +description = Diamondville town, WY +station = ('kevw', 0.011041216750165441) +zone = ('wyz027', 0.00080302252406772631) + +[fips5620690] +centroid = (0.71619385142723335, -1.8768546289774517) +description = Dixon town, WY +station = ('kcag', 0.009338947166639985) +zone = ('wyz111', 0.0049454919157326544) + +[fips5621125] +centroid = (0.74620977955693657, -1.8392942533566152) +description = Douglas city, WY +station = ('kdgw', 0.00079116269095728259) +zone = ('wyz101', 0.0056562829066741597) + +[fips5621415] +centroid = (0.75989115376393224, -1.9136380189218853) +description = Dubois town, WY +station = ('kpna', 0.013138671733549099) +zone = ('wyz016', 0.0041490124600699349) + +[fips5622720] +centroid = (0.76173279028405172, -1.8884095463836952) +description = East Thermopolis town, WY +station = ('ktbx', 0.0031286088974102101) +zone = ('wyz007', 0.0013199824920540257) + +[fips5623010] +centroid = (0.73408754287733236, -1.9100737947899251) +description = Eden CDP, WY +station = ('krks', 0.009492320041650076) +zone = ('wyz026', 0.0065780981134376231) + +[fips5623155] +centroid = (0.7577200688942064, -1.8543717164322813) +description = Edgerton town, WY +station = ('kcpr', 0.0093969822066551651) +zone = ('wyz011', 0.0074853847801933677) + +[fips5624025] +centroid = (0.72759805965256708, -1.8572659610242783) +description = Elk Mountain town, WY +station = ('krwl', 0.010425918708696665) +zone = ('wyz110', 0.0020140153726578634) + +[fips5624750] +centroid = (0.71922850775755354, -1.8639212156213982) +description = Encampment town, WY +station = ('k33v', 0.010666191079234862) +zone = ('wyz113', 0.0031209478328894486) + +[fips5625185] +centroid = (0.74012629482277015, -1.8393311845235873) +description = Esterbrook CDP, WY +station = ('kdgw', 0.006874704969772852) +zone = ('wyz103', 0.0032051966409981391) + +[fips5625330] +centroid = (0.75050608204364577, -1.897574793884693) +description = Ethete CDP, WY +station = ('klnd', 0.0032169730220750459) +zone = ('wyz018', 0.0037169396644915788) + +[fips5625475] +centroid = (0.75107511173967345, -1.9375414723985467) +description = Etna CDP, WY +station = ('ku78', 0.0099028234016878425) +zone = ('wyz023', 0.0029938755542604305) + +[fips5625620] +centroid = (0.72012372203748631, -1.9366851789609332) +description = Evanston city, WY +station = ('kevw', 0.00091838361396524382) +zone = ('wyz021', 0.0054816830881376588) + +[fips5625765] +centroid = (0.74829593670526029, -1.8545236124370823) +description = Evansville town, WY +station = ('kcpr', 0.0027266303026010699) +zone = ('wyz022', 0.0046801519744394723) + +[fips5625910] +centroid = (0.7450300766089285, -1.9370821540992993) +description = Fairview CDP, WY +station = ('ku78', 0.0076848543321389913) +zone = ('wyz023', 0.0030779540728969219) + +[fips5626055] +centroid = (0.73568621211228169, -1.9098109831111598) +description = Farson CDP, WY +station = ('krks', 0.010786958456165995) +zone = ('wyz026', 0.0056300502205998337) + +[fips5627650] +centroid = (0.73309521847781844, -1.920947667268748) +description = Fontenelle CDP, WY +station = ('kbpi', 0.010135912979509885) +zone = ('wyz026', 0.0070122533482036512) + +[fips5627940] +centroid = (0.72114098719201125, -1.9266582624082256) +description = Fort Bridger CDP, WY +station = ('kevw', 0.0084924103343248375) +zone = ('wyz021', 0.0021426353329174119) + +[fips5628230] +centroid = (0.73676206796979604, -1.8241784977571605) +description = Fort Laramie town, WY +station = ('ktor', 0.0055482749356120719) +zone = ('wyz108', 0.0030518383659104832) + +[fips5628665] +centroid = (0.75061221551545954, -1.9010200389215446) +description = Fort Washakie CDP, WY +station = ('klnd', 0.004092023676901666) +zone = ('wyz015', 0.0047170735566449936) + +[fips5629300] +centroid = (0.71753986679966386, -1.8288546711555662) +description = Fox Farm-College CDP, WY +station = ('kcys', 0.0006894168065147289) +zone = ('wyz118', 0.0041390916467982618) + +[fips5629390] +centroid = (0.71698357800717571, -1.8527261152937458) +description = Fox Park CDP, WY +station = ('k33v', 0.0059310009092543373) +zone = ('wyz114', 0.0045390959192262983) + +[fips5629825] +centroid = (0.78489252405985299, -1.8957860582942017) +description = Frannie town, WY +station = ('kcod', 0.0093273605728455555) +zone = ('mtz039', 0.0051797424420057378) + +[fips5630115] +centroid = (0.7502363239544575, -1.9378319300926634) +description = Freedom CDP, WY +station = ('ku78', 0.0091933835735328682) +zone = ('wyz023', 0.0022140468331283865) + +[fips5630985] +centroid = (0.78151864553611539, -1.8963727507222594) +description = Garland CDP, WY +station = ('kcod', 0.0064047833537984773) +zone = ('wyz004', 0.0059818225308450506) + +[fips5631855] +centroid = (0.77280554303113913, -1.8413435316978446) +description = Gillette city, WY +station = ('kgcc', 0.0011346048622173604) +zone = ('wyz054', 0.005574335789973797) + +[fips5632290] +centroid = (0.74183722363520765, -1.8330390456773451) +description = Glendo town, WY +station = ('kdgw', 0.0069118843570633755) +zone = ('wyz107', 0.0050104386128156332) + +[fips5632435] +centroid = (0.74798479685950725, -1.8476530016635591) +description = Glenrock town, WY +station = ('kcpr', 0.0077617979244989851) +zone = ('wyz022', 0.0067458352069339183) + +[fips5632870] +centroid = (0.72600427733952333, -1.919210680690578) +description = Granger town, WY +station = ('kevw', 0.015149772000287996) +zone = ('wyz028', 0.0038519956263626831) + +[fips5633740] +centroid = (0.72452835711086694, -1.9106207809775002) +description = Green River city, WY +station = ('krks', 0.0057007442925629632) +zone = ('wyz028', 0.0027532743754716889) + +[fips5633885] +centroid = (0.77649904370079459, -1.8860906670329103) +description = Greybull town, WY +station = ('kgey', 0.00051631906106102321) +zone = ('wyz004', 0.0030848364883154563) + +[fips5634030] +centroid = (0.74690831268346225, -1.9360854838299477) +description = Grover CDP, WY +station = ('ku78', 0.0087552395728080681) +zone = ('wyz023', 0.0013744342615435103) + +[fips5634320] +centroid = (0.73765976061726679, -1.828108281100951) +description = Guernsey town, WY +station = ('ktor', 0.0085379155417989808) +zone = ('wyz107', 0.0018613739973396622) + +[fips5635335] +centroid = (0.73076581479164415, -1.8598166375530205) +description = Hanna town, WY +station = ('krwl', 0.008415752395377089) +zone = ('wyz110', 0.0050114162482628429) + +[fips5635552] +centroid = (0.74845970094897485, -1.8561442902738992) +description = Hartrandt CDP, WY +station = ('kcpr', 0.0015287060434408474) +zone = ('wyz022', 0.004965513183793447) + +[fips5635625] +centroid = (0.7387553561486212, -1.8277878561035772) +description = Hartville town, WY +station = ('ktor', 0.0088694990160582306) +zone = ('wyz107', 0.0025732559574935501) + +[fips5636060] +centroid = (0.72929022617554562, -1.8197689932151668) +description = Hawk Springs CDP, WY +station = ('ktor', 0.0048564278860373572) +zone = ('wyz108', 0.0054066550510410609) + +[fips5637510] +centroid = (0.71921487673609541, -1.8234220895126387) +description = Hillsdale CDP, WY +station = ('kfew', 0.0043581905463007664) +zone = ('wyz118', 0.0031551781218019988) + +[fips5637727] +centroid = (0.76473114376593021, -1.8177895454973101) +description = Hill View Heights CDP, WY +station = ('kcut', 0.0068944856365246044) +zone = ('sdz029', 0.0061347345610128206) + +[fips5637945] +centroid = (0.75586064746900927, -1.9328625762865075) +description = Hoback CDP, WY +station = ('kjac', 0.005104998648022884) +zone = ('wyz013', 0.005948537038305988) + +[fips5638307] +centroid = (0.75025538294988925, -1.8565592946634384) +description = Homa Hills CDP, WY +station = ('kcpr', 0.0019259397073296801) +zone = ('wyz020', 0.0041351378336379118) + +[fips5638960] +centroid = (0.74879333808878623, -1.8951132862274351) +description = Hudson town, WY +station = ('klnd', 0.0024501911367415933) +zone = ('wyz018', 0.0019828177802337613) + +[fips5639105] +centroid = (0.77986672630568776, -1.82558046838541) +description = Hulett town, WY +station = ('kspf', 0.010710782217734208) +zone = ('wyz056', 0.0028208208273628899) + +[fips5639250] +centroid = (0.73184484714839726, -1.8176558358233148) +description = Huntley CDP, WY +station = ('ktor', 0.002067564935326447) +zone = ('wyz108', 0.0038491445952049913) + +[fips5639395] +centroid = (0.77230431937655142, -1.8782354462151671) +description = Hyattville CDP, WY +station = ('kjpd', 0.0058734022403713225) +zone = ('wyz008', 0.0018351326901587155) + +[fips5640120] +centroid = (0.75876532912993344, -1.933339487504615) +description = Jackson town, WY +station = ('kjac', 0.0022525384103400125) +zone = ('wyz013', 0.0031879310489531915) + +[fips5640265] +centroid = (0.72542981966952202, -1.9117753162776945) +description = James Town CDP, WY +station = ('krks', 0.0063842602204491911) +zone = ('wyz028', 0.0017746866340490838) + +[fips5640555] +centroid = (0.7414460429899582, -1.8819361550946332) +description = Jeffrey City CDP, WY +station = ('kriw', 0.012958673262194301) +zone = ('wyz019', 0.0013533158948983415) + +[fips5640945] +centroid = (0.75235450789455538, -1.8969864608471383) +description = Johnstown CDP, WY +station = ('kriw', 0.0031296122728308425) +zone = ('wyz017', 0.0052972004880050359) + +[fips5641353] +centroid = (0.76288109475881638, -1.8611842426482983) +description = Kaycee town, WY +station = ('kjpd', 0.010157092558102404) +zone = ('wyz011', 0.003188513389233167) + +[fips5641860] +centroid = (0.76136848770928289, -1.9307963333449492) +description = Kelly CDP, WY +station = ('kjac', 0.0014096768545947438) +zone = ('wyz013', 0.00085349828341273052) + +[fips5642005] +centroid = (0.72913583434991425, -1.929572246674063) +description = Kemmerer city, WY +station = ('kevw', 0.01086274034227947) +zone = ('wyz027', 0.0007818817448863296) + +[fips5642730] +centroid = (0.76450983601677747, -1.8881153536849788) +description = Kirby town, WY +station = ('kwrl', 0.0040727955073557084) +zone = ('wyz005', 0.0013006885286257189) + +[fips5643455] +centroid = (0.73758973800767669, -1.9233040188385728) +description = La Barge town, WY +station = ('kbpi', 0.0057672504744809344) +zone = ('wyz026', 0.0056476340639788052) + +[fips5643745] +centroid = (0.72672804792703294, -1.8179873785680236) +description = La Grange town, WY +station = ('ktor', 0.0071848921999524661) +zone = ('nez020', 0.0061242655377047543) + +[fips5644252] +centroid = (0.73473097595937253, -1.8318736718824959) +description = Lakeview North CDP, WY +station = ('ktor', 0.010508076622841814) +zone = ('wyz107', 0.0026415142130484857) + +[fips5644615] +centroid = (0.75127245611819649, -1.8267285285140793) +description = Lance Creek CDP, WY +station = ('kdgw', 0.010139284241867661) +zone = ('wyz102', 0.0024120482959641828) + +[fips5644760] +centroid = (0.74754062801816723, -1.8977041925954359) +description = Lander city, WY +station = ('klnd', 0.00025155957416534406) +zone = ('wyz018', 0.001314212187493595) + +[fips5645050] +centroid = (0.72099972024235481, -1.8432356780465164) +description = Laramie city, WY +station = ('klar', 0.00075614096110652529) +zone = ('wyz115', 0.0025367906720218125) + +[fips5646790] +centroid = (0.73545844664489635, -1.8211830938817175) +description = Lingle town, WY +station = ('ktor', 0.0029740839646972498) +zone = ('wyz108', 0.00088916431923743414) + +[fips5646935] +centroid = (0.72515979978094602, -1.9177170453700139) +description = Little America CDP, WY +station = ('krks', 0.010836295591262257) +zone = ('wyz028', 0.0026797232678816927) + +[fips5647370] +centroid = (0.71618543894023867, -1.9223762367147978) +description = Lonetree CDP, WY +station = ('kevw', 0.012370068871738771) +zone = ('wyz021', 0.0069026759214113895) + +[fips5647805] +centroid = (0.74639295186193333, -1.8312953046749703) +description = Lost Springs town, WY +station = ('kdgw', 0.005896187812282171) +zone = ('wyz102', 0.0076783776980861715) + +[fips5647950] +centroid = (0.78253236767225864, -1.8917952233331763) +description = Lovell town, WY +station = ('kgey', 0.0067593136243401641) +zone = ('wyz004', 0.0052048618878024677) + +[fips5648240] +centroid = (0.763023443812609, -1.888179407268527) +description = Lucerne CDP, WY +station = ('ktbx', 0.0044298347171113561) +zone = ('wyz005', 0.0015666667864656948) + +[fips5648530] +centroid = (0.74632465712830287, -1.8231431858981699) +description = Lusk town, WY +station = ('ktor', 0.013034441362910413) +zone = ('wyz102', 0.0051576072818739381) + +[fips5648675] +centroid = (0.72128832788746466, -1.9250773780783543) +description = Lyman town, WY +station = ('kevw', 0.0096885306454009938) +zone = ('wyz021', 0.0033326931394775262) + +[fips5649400] +centroid = (0.71613374228779469, -1.918785309045282) +description = McKinnon CDP, WY +station = ('kvel', 0.011940383714889632) +zone = ('wyz029', 0.0075426043733472468) + +[fips5649775] +centroid = (0.78493058969083906, -1.9319563140724096) +description = Mammoth CDP, WY +station = ('kwys', 0.0072873821042284811) +zone = ('wyz001', 0.0069514662785336769) + +[fips5649980] +centroid = (0.77265301870780734, -1.884330799188247) +description = Manderson town, WY +station = ('kgey', 0.004558309770839525) +zone = ('wyz006', 0.0059952537818395357) + +[fips5650270] +centroid = (0.74664221978570322, -1.8259188877273718) +description = Manville town, WY +station = ('kdgw', 0.0098161055422468918) +zone = ('wyz102', 0.0051650782904434853) + +[fips5650415] +centroid = (0.74276521519849315, -1.9216305971517607) +description = Marbleton town, WY +station = ('kbpi', 0.00045447619274700384) +zone = ('wyz026', 0.0056245713910636798) + +[fips5651285] +centroid = (0.74803684257780179, -1.8517003852923488) +description = Meadow Acres CDP, WY +station = ('kcpr', 0.0048109157362026811) +zone = ('wyz022', 0.0049230089936292314) + +[fips5651575] +centroid = (0.73128489316447987, -1.8535731061264462) +description = Medicine Bow town, WY +station = ('klar', 0.012340112347523741) +zone = ('wyz110', 0.0037249549221853554) + +[fips5651720] +centroid = (0.77061332222417156, -1.8999823708680641) +description = Meeteetse town, WY +station = ('kcod', 0.0066399299016551222) +zone = ('wyz003', 0.0058289011116320188) + +[fips5652445] +centroid = (0.75767085060930017, -1.8548849654054151) +description = Midwest town, WY +station = ('kcpr', 0.009245269816622579) +zone = ('wyz011', 0.0074225371352268348) + +[fips5653460] +centroid = (0.74780342224363994, -1.8567153794584443) +description = Mills town, WY +station = ('kcpr', 0.001436305987080338) +zone = ('wyz022', 0.0044527765954301473) + +[fips5654185] +centroid = (0.77256097004305713, -1.8316805337474702) +description = Moorcroft town, WY +station = ('kgcc', 0.0076206060387659629) +zone = ('wyz056', 0.0063204937123861795) + +[fips5654402] +centroid = (0.75976779389240134, -1.9344327268414792) +description = Moose Wilson Road CDP, WY +station = ('kjac', 0.0017542556568101949) +zone = ('wyz013', 0.0027388649325182863) + +[fips5655200] +centroid = (0.74819437599608685, -1.8572330790211709) +description = Mountain View CDP, WY +station = ('kcpr', 0.00089453257400295603) +zone = ('wyz020', 0.0048473222305261765) + +[fips5655345] +centroid = (0.72033623332720931, -1.925698069520241) +description = Mountain View town, WY +station = ('kevw', 0.0091695847139453904) +zone = ('wyz021', 0.0028095553629281359) + +[fips5656215] +centroid = (0.76533160684178636, -1.8185780328934833) +description = Newcastle city, WY +station = ('kcut', 0.007589141576340025) +zone = ('sdz029', 0.0069054700129918198) + +[fips5656520] +centroid = (0.75187592116036606, -1.9371640449478029) +description = Nordic CDP, WY +station = ('kjac', 0.0096596865076887164) +zone = ('wyz023', 0.0037703432391471923) + +[fips5656700] +centroid = (0.72724995373325685, -1.9074349965872499) +description = North Rock Springs CDP, WY +station = ('krks', 0.0033256348996190091) +zone = ('wyz028', 0.0053727619900290008) + +[fips5657375] +centroid = (0.72869192730796195, -1.9290436038969263) +description = Oakley CDP, WY +station = ('kevw', 0.010742695966572881) +zone = ('wyz027', 0.0012909780755235275) + +[fips5657810] +centroid = (0.7289900819040801, -1.9255184053270407) +description = Opal town, WY +station = ('kevw', 0.01274694723090683) +zone = ('wyz027', 0.0031720513154427023) + +[fips5658100] +centroid = (0.74441271874591308, -1.8356984911250713) +description = Orin CDP, WY +station = ('kdgw', 0.0036938777617014432) +zone = ('wyz103', 0.0077505349719149894) + +[fips5658680] +centroid = (0.76768106436106598, -1.8225937038897646) +description = Osage CDP, WY +station = ('kcut', 0.011101772418247521) +zone = ('wyz058', 0.0039480686905810141) + +[fips5658970] +centroid = (0.74486980302371786, -1.9362792328302119) +description = Osmond CDP, WY +station = ('ku78', 0.0082628967599146265) +zone = ('wyz023', 0.003280758692199859) + +[fips5659332] +centroid = (0.76413771436695965, -1.89486592071255) +description = Owl Creek CDP, WY +station = ('ktbx', 0.0069370178976930954) +zone = ('wyz005', 0.0036542232996218905) + +[fips5659985] +centroid = (0.78465685225095627, -1.8729583210487146) +description = Parkman CDP, WY +station = ('kshr', 0.0054232401951228122) +zone = ('wyz098', 0.0038366647572878926) + +[fips5660130] +centroid = (0.75474681324697146, -1.8969892359206488) +description = Pavillion town, WY +station = ('kriw', 0.0043422730280045143) +zone = ('wyz017', 0.0055967771689046505) + +[fips5661435] +centroid = (0.71873175214585083, -1.8163500153835577) +description = Pine Bluffs town, WY +station = ('kibm', 0.0052877132147377054) +zone = ('wyz119', 0.0028299093000703681) + +[fips5661580] +centroid = (0.74818776119822172, -1.9176094458216284) +description = Pinedale town, WY +station = ('kpna', 0.0015105317287585399) +zone = ('wyz025', 0.0029097187543776618) + +[fips5661610] +centroid = (0.7741131786133183, -1.8292863957993395) +description = Pine Haven town, WY +station = ('kgcc', 0.0092384060253208247) +zone = ('wyz056', 0.0045022206930293443) + +[fips5662305] +centroid = (0.75140122651040864, -1.8673376452722994) +description = Powder River CDP, WY +station = ('kcpr', 0.0071974912846050889) +zone = ('wyz020', 0.003989455925797916) + +[fips5662450] +centroid = (0.78124049241322502, -1.8981778749544271) +description = Powell city, WY +station = ('kcod', 0.0053529886746768287) +zone = ('wyz003', 0.0063813425710165976) + +[fips5662812] +centroid = (0.72520854682695413, -1.9079977081913855) +description = Purple Sage CDP, WY +station = ('krks', 0.0036286406240853336) +zone = ('wyz028', 0.0045998668930781498) + +[fips5663100] +centroid = (0.75800544768020006, -1.9336758299047669) +description = Rafter J Ranch CDP, WY +station = ('kjac', 0.0030482340568941972) +zone = ('wyz013', 0.0039856687004171769) + +[fips5663465] +centroid = (0.78028199249461472, -1.9004090340570066) +description = Ralston CDP, WY +station = ('kcod', 0.0036985059892784191) +zone = ('wyz003', 0.0047596259910711487) + +[fips5663755] +centroid = (0.78379183216708281, -1.8703945545505825) +description = Ranchester town, WY +station = ('kshr', 0.0034857376643560637) +zone = ('wyz098', 0.0046296114748578514) + +[fips5663800] +centroid = (0.71939642588488784, -1.8286322987555697) +description = Ranchettes CDP, WY +station = ('kfew', 0.0010792312466498455) +zone = ('wyz118', 0.002459491856651471) + +[fips5663900] +centroid = (0.72928877755226651, -1.8714128145427811) +description = Rawlins city, WY +station = ('krwl', 0.00040619012548630024) +zone = ('wyz109', 0.001690768717763956) + +[fips5664400] +centroid = (0.74710920008036674, -1.8576346443754697) +description = Red Butte CDP, WY +station = ('kcpr', 0.0016876040691784792) +zone = ('wyz022', 0.0041234717420811353) + +[fips5665060] +centroid = (0.72724719611303856, -1.9058595227780595) +description = Reliance CDP, WY +station = ('krks', 0.0022647600188827419) +zone = ('wyz028', 0.0064851942645296739) + +[fips5666075] +centroid = (0.7193446768725662, -1.8636860150513994) +description = Riverside town, WY +station = ('k33v', 0.01063793523940107) +zone = ('wyz113', 0.0029924034213915126) + +[fips5666220] +centroid = (0.75094983200596532, -1.8916105849516078) +description = Riverton city, WY +station = ('kriw', 0.0011248159822479095) +zone = ('wyz017', 0.0023390710501321583) + +[fips5666655] +centroid = (0.7187540225471063, -1.9273216446036163) +description = Robertson CDP, WY +station = ('kevw', 0.0080917534026509006) +zone = ('wyz021', 0.0024317935535352981) + +[fips5667090] +centroid = (0.72835624813292588, -1.8496152404349913) +description = Rock River town, WY +station = ('klar', 0.0082902755837204016) +zone = ('wyz110', 0.0037680544157023561) + +[fips5667235] +centroid = (0.72597052267178985, -1.906312261186027) +description = Rock Springs city, WY +station = ('krks', 0.0022680951494549574) +zone = ('wyz028', 0.0058935092841525261) + +[fips5667440] +centroid = (0.74880852245327856, -1.8473114930888213) +description = Rolling Hills town, WY +station = ('kcpr', 0.0079718073649355757) +zone = ('wyz101', 0.0057327015901981098) + +[fips5667670] +centroid = (0.72105061404334292, -1.8585944183844338) +description = Ryan Park CDP, WY +station = ('k33v', 0.010283334534933668) +zone = ('wyz114', 0.0022924049576731808) + +[fips5668685] +centroid = (0.72347089702366851, -1.8642105563047937) +description = Saratoga town, WY +station = ('krwl', 0.0079138812792943214) +zone = ('wyz113', 0.0012520092516053174) + +[fips5669700] +centroid = (0.77727398734197262, -1.8811940760032702) +description = Shell CDP, WY +station = ('kgey', 0.0037316790368079433) +zone = ('wyz098', 0.0055922961946815869) + +[fips5669845] +centroid = (0.78181706193162126, -1.8668154776666879) +description = Sheridan city, WY +station = ('kshr', 0.00049695882522308109) +zone = ('wyz099', 0.0037930402111674751) + +[fips5670570] +centroid = (0.75464661389461463, -1.8868194641686657) +description = Shoshoni town, WY +station = ('ktbx', 0.0043009141995080718) +zone = ('wyz017', 0.0027920973918627609) + +[fips5671150] +centroid = (0.7291302143897227, -1.8695956475387747) +description = Sinclair town, WY +station = ('krwl', 0.0011223622823121513) +zone = ('wyz109', 0.00080425259437218741) + +[fips5671295] +centroid = (0.7309024915253679, -1.8289085669228677) +description = Slater CDP, WY +station = ('ktor', 0.008818417434449664) +zone = ('wyz107', 0.0063929715836075042) + +[fips5671350] +centroid = (0.77200586807446037, -1.8401156751157739) +description = Sleepy Hollow CDP, WY +station = ('kgcc', 0.0023026457214950806) +zone = ('wyz054', 0.0065119345770539867) + +[fips5671440] +centroid = (0.74384285129184446, -1.9359121377286397) +description = Smoot CDP, WY +station = ('ku78', 0.0085396034132539274) +zone = ('wyz023', 0.0043389790935059579) + +[fips5671800] +centroid = (0.71721720778084774, -1.8292203350871516) +description = South Greeley CDP, WY +station = ('kcys', 0.00098959711746239598) +zone = ('wyz118', 0.0045484875154334333) + +[fips5671947] +centroid = (0.75791795432479758, -1.9337994864822705) +description = South Park CDP, WY +station = ('kjac', 0.0031554826213954865) +zone = ('wyz013', 0.0040984429208914671) + +[fips5673180] +centroid = (0.75013706707989669, -1.9366787910558707) +description = Star Valley Ranch town, WY +station = ('ku78', 0.0098020417188072334) +zone = ('wyz023', 0.0020433036874359977) + +[fips5673615] +centroid = (0.77794693394166403, -1.866004650056089) +description = Story CDP, WY +station = ('kshr', 0.0034410021479001408) +zone = ('wyz099', 0.0050313435275863424) + +[fips5674195] +centroid = (0.77501036511530597, -1.8215339748745385) +description = Sundance town, WY +station = ('kspf', 0.0073910371073971203) +zone = ('wyz057', 0.00071424334865569105) + +[fips5674775] +centroid = (0.72884377095288555, -1.9017866049823133) +description = Superior town, WY +station = ('krks', 0.0030021505462131839) +zone = ('wyz030', 0.0077669095747342704) + +[fips5675355] +centroid = (0.72644067946569213, -1.8920075251833888) +description = Table Rock CDP, WY +station = ('krks', 0.0084379666323177345) +zone = ('wyz030', 0.00075562861990881281) + +[fips5675572] +centroid = (0.73426444945031444, -1.9371366956384239) +description = Taylor CDP, WY +station = ('ku78', 0.012687906575405989) +zone = ('wyz027', 0.0071010468291689563) + +[fips5675790] +centroid = (0.76855587574204309, -1.8753270295496436) +description = Ten Sleep town, WY +station = ('kjpd', 0.0040612087496306728) +zone = ('wyz008', 0.0037919142136867263) + +[fips5675935] +centroid = (0.76084378937625585, -1.9345947108493569) +description = Teton Village CDP, WY +station = ('kjac', 0.0014053441217384078) +zone = ('wyz013', 0.0021944624082732653) + +[fips5676370] +centroid = (0.74908014804476641, -1.9372602998560502) +description = Thayne town, WY +station = ('ku78', 0.0088600940659670242) +zone = ('wyz023', 0.00099102419050750568) + +[fips5676515] +centroid = (0.76180399971753299, -1.888699567745499) +description = Thermopolis town, WY +station = ('ktbx', 0.0031764762754734181) +zone = ('wyz007', 0.0013336749962047313) + +[fips5677530] +centroid = (0.73418030712707583, -1.8177618471220809) +description = Torrington city, WY +station = ('ktor', 0.00026935875956824454) +zone = ('wyz108', 0.0026619229510999234) + +[fips5678400] +centroid = (0.74808766656561976, -1.9355826370191558) +description = Turnerville CDP, WY +station = ('ku78', 0.0094999090598560324) +zone = ('wyz023', 0.0010400536734332718) + +[fips5679125] +centroid = (0.76973413006677205, -1.8262690880417844) +description = Upton town, WY +station = ('kcut', 0.014360791555704818) +zone = ('wyz058', 0.0051583266027407579) + +[fips5679270] +centroid = (0.72097556488550729, -1.9257124510332773) +description = Urie CDP, WY +station = ('kevw', 0.0091852554217081283) +zone = ('wyz021', 0.002809725087646982) + +[fips5679705] +centroid = (0.7446321066328887, -1.8167363963733643) +description = Van Tassell town, WY +station = ('ktor', 0.010747826711513819) +zone = ('nez095', 0.0041895163567687889) + +[fips5680285] +centroid = (0.73238666716138634, -1.8218837563099308) +description = Veteran CDP, WY +station = ('ktor', 0.0034221512992770107) +zone = ('wyz108', 0.0022288325135227131) + +[fips5680575] +centroid = (0.74808337305565997, -1.8576608417675422) +description = Vista West CDP, WY +station = ('kcpr', 0.00076939343923877084) +zone = ('wyz020', 0.0047160759338096322) + +[fips5681300] +centroid = (0.72725121037031815, -1.8845458237520927) +description = Wamsutter town, WY +station = ('krwl', 0.010371096643188566) +zone = ('wyz111', 0.0075283917802619546) + +[fips5681640] +centroid = (0.7181515523426103, -1.8301807723212316) +description = Warren AFB CDP, WY +station = ('kfew', 0.00084088977529989486) +zone = ('wyz117', 0.0036706493581847143) + +[fips5681703] +centroid = (0.71568210343725602, -1.9146149320641042) +description = Washam CDP, WY +station = ('kvel', 0.010329586806918858) +zone = ('utz023', 0.0048859575959887477) + +[fips5682967] +centroid = (0.73408660039953622, -1.8337845630673346) +description = Westview Circle CDP, WY +station = ('ktor', 0.011899197242076325) +zone = ('wyz106', 0.0037718863746212914) + +[fips5683040] +centroid = (0.73393969603639597, -1.83188824538175) +description = Wheatland town, WY +station = ('ktor', 0.010490633961565349) +zone = ('wyz107', 0.0033913999107190616) + +[fips5683100] +centroid = (0.7331932710751955, -1.8320904592288862) +description = Whiting CDP, WY +station = ('ktor', 0.01066849444309324) +zone = ('wyz107', 0.0041496441471023677) + +[fips5683765] +centroid = (0.75876660322028733, -1.9358558159536781) +description = Wilson CDP, WY +station = ('kjac', 0.0031921212393794408) +zone = ('wyz013', 0.0041758191281046544) + +[fips5684852] +centroid = (0.71735580437674862, -1.8505517142984411) +description = Woods Landing-Jelm CDP, WY +station = ('klar', 0.0060594992562053723) +zone = ('wyz114', 0.0052309911236374917) + +[fips5684925] +centroid = (0.76830095295149681, -1.8842863107456136) +description = Worland city, WY +station = ('kwrl', 0.00094920355009737089) +zone = ('wyz006', 0.0022441852733494074) + +[fips5685015] +centroid = (0.76355561215483458, -1.8412567539274352) +description = Wright town, WY +station = ('kgcc', 0.010229282067941107) +zone = ('wyz055', 0.0017821473016704269) + +[fips5686665] +centroid = (0.73158927858602774, -1.8202979326982762) +description = Yoder town, WY +station = ('ktor', 0.0029913247620293685) +zone = ('wyz108', 0.0030779461303687083) + +[fips5686737] +centroid = (0.73365194360261954, -1.8312513921909901) +description = Y-O Ranch CDP, WY +station = ('ktor', 0.010022350865715013) +zone = ('wyz107', 0.0035674535722439384) + +[fips72001] +centroid = (0.31732808514890026, -1.1651494676803749) +description = Adjuntas Municipio, PR +station = ('tjps', 0.0042864077793095942) +zone = ('prz009', 0.0017935117341409544) + +[fips7200100401] +centroid = (0.31701769579472555, -1.1645455313993074) +description = Adjuntas barrio-pueblo, PR +station = ('tjps', 0.0036559842621478509) +zone = ('prz007', 0.0022491550744584807) + +[fips7200113645] +centroid = (0.31768497007434804, -1.1648818214395815) +description = Capáez barrio, PR +station = ('tjps', 0.0043591612731863228) +zone = ('prz009', 0.0018596136027488443) + +[fips7200130458] +centroid = (0.31681274178066382, -1.165006804467317) +description = Garzas barrio, PR +station = ('tjps', 0.0038511104137306938) +zone = ('prz009', 0.0022203655130502119) + +[fips7200132049] +centroid = (0.31773924981408502, -1.1662954683205269) +description = Guayabo Dulce barrio, PR +station = ('tjps', 0.005386426834197257) +zone = ('prz009', 0.00070920353427290342) + +[fips7200132608] +centroid = (0.31727637104316364, -1.1662633019024129) +description = Guayo barrio, PR +station = ('tjps', 0.0050917361286333309) +zone = ('prz009', 0.0011323730921420504) + +[fips7200132780] +centroid = (0.31693589221268459, -1.165475076305627) +description = Guilarte barrio, PR +station = ('tjps', 0.0042817458847997734) +zone = ('prz009', 0.001822713872546809) + +[fips7200139273] +centroid = (0.31748570583364788, -1.1645486555386686) +description = Juan González barrio, PR +station = ('tjps', 0.0040003690272800473) +zone = ('prz009', 0.0022266407106702598) + +[fips7200145422] +centroid = (0.31699303429239484, -1.1659091396905978) +description = Limaní barrio, PR +station = ('tjps', 0.0046548532533686546) +zone = ('prz009', 0.0015365257836567397) + +[fips7200160773] +centroid = (0.31784766966721895, -1.1642925284709382) +description = Pellejas barrio, PR +station = ('tjps', 0.0041378150884614686) +zone = ('prz009', 0.0023550655223544448) + +[fips7200163955] +centroid = (0.3181399250504654, -1.1658806210106203) +description = Portillo barrio, PR +station = ('tjps', 0.0053478539377752555) +zone = ('prz009', 0.00081883467558745507) + +[fips7200163998] +centroid = (0.31663374081257933, -1.1638365961104398) +description = Portugués barrio, PR +station = ('tjps', 0.0029135458235430445) +zone = ('prz007', 0.0016136285955445312) + +[fips7200174963] +centroid = (0.31653219755669826, -1.1644482816533863) +description = Saltillo barrio, PR +station = ('tjps', 0.0032614727368363143) +zone = ('prz007', 0.0017954950118018746) + +[fips7200181714] +centroid = (0.31800221857248306, -1.1653127606851916) +description = Tanamá barrio, PR +station = ('tjps', 0.0048698775849791752) +zone = ('prz009', 0.0013754034047987059) + +[fips7200185584] +centroid = (0.31739189438635312, -1.164155293231854) +description = Vegas Abajo barrio, PR +station = ('tjps', 0.0036924057843753166) +zone = ('prz007', 0.0024289135443770408) + +[fips7200185627] +centroid = (0.31713782680714031, -1.1639361496909737) +description = Vegas Arriba barrio, PR +station = ('tjps', 0.0033641734252777356) +zone = ('prz007', 0.0021231983323071997) + +[fips7200186] +centroid = (0.32193564965441018, -1.1705387302512682) +description = Aceitunas comunidad, PR +station = ('tjbq', 0.0014530534367589536) +zone = ('prz008', 0.0020926880400299001) + +[fips7200187949] +centroid = (0.31762353448467784, -1.1658093243106764) +description = Yahuecas barrio, PR +station = ('tjps', 0.0049535754430298133) +zone = ('prz009', 0.0011126109366154907) + +[fips7200188250] +centroid = (0.31747362815522406, -1.1652762658505322) +description = Yayales barrio, PR +station = ('tjps', 0.0044734687616860879) +zone = ('prz009', 0.0016134893188802994) + +[fips72003] +centroid = (0.32071613574616414, -1.1725768908451619) +description = Aguada Municipio, PR +station = ('tjmz', 0.0019829290991668414) +zone = ('prz010', 0.002338423933729494) + +[fips7200300000] +centroid = (0.32135073746218923, -1.1730953583527595) +description = Municipio subdivision not defined, PR +station = ('tjbq', 0.0020284034585673705) +zone = ('prz010', 0.0030519866790179131) + +[fips7200300659] +centroid = (0.32079519916127947, -1.1726628483108228) +description = Aguada barrio-pueblo, PR +station = ('tjmz', 0.0020825253388652132) +zone = ('prz010', 0.0024270059327114088) + +[fips7200304185] +centroid = (0.32086071882139933, -1.1723780280301899) +description = Asomante barrio, PR +station = ('tjmz', 0.0020803528067849476) +zone = ('prz010', 0.0024699252119395878) + +[fips7200304400] +centroid = (0.31992384353222131, -1.1726230373505848) +description = Atalaya barrio, PR +station = ('tjmz', 0.0012632323146184097) +zone = ('prz010', 0.0015610837560971968) + +[fips7200314591] +centroid = (0.32109504672677208, -1.1724926787087533) +description = Carrizal barrio, PR +station = ('tjbq', 0.0019431653135269663) +zone = ('prz010', 0.0027090375883241356) + +[fips7200317085] +centroid = (0.31994970931173589, -1.1718823719759159) +description = Cerro Gordo barrio, PR +station = ('tjmz', 0.0011406993903284404) +zone = ('prz010', 0.0016095780187740758) + +[fips7200321772] +centroid = (0.3202811996965671, -1.1730939795426505) +description = Cruces barrio, PR +station = ('tjmz', 0.0018043040358279522) +zone = ('prz010', 0.0020315382493153425) + +[fips7200327233] +centroid = (0.32127858555091188, -1.1722103367956582) +description = Espinar barrio, PR +station = ('tjbq', 0.0016792728712610601) +zone = ('prz010', 0.002888384665893706) + +[fips7200330931] +centroid = (0.32081223357477895, -1.1720792451155408) +description = Guanábano barrio, PR +station = ('tjmz', 0.0020006085705097823) +zone = ('prz010', 0.002430266492093261) + +[fips7200331318] +centroid = (0.3209560137985582, -1.1728097701272557) +description = Guaniquilla barrio, PR +station = ('tjbq', 0.0021994089213123427) +zone = ('prz010', 0.0026081952037735928) + +[fips7200331963] +centroid = (0.32071215639546957, -1.1730330326451706) +description = Guayabo barrio, PR +station = ('tjmz', 0.0021419736307154266) +zone = ('prz010', 0.0024204094385902909) + +[fips7200337596] +centroid = (0.32027364242090606, -1.1728817824121929) +description = Jagüey barrio, PR +station = ('tjmz', 0.001688533723097228) +zone = ('prz010', 0.0019592196122613314) + +[fips7200340907] +centroid = (0.32005598240988981, -1.172390786387022) +description = Lagunas barrio, PR +station = ('tjmz', 0.0012998570171175829) +zone = ('prz010', 0.0016661493370224052) + +[fips7200349421] +centroid = (0.32054696098176833, -1.1723263488310383) +description = Mal Paso barrio, PR +station = ('tjmz', 0.0017628897645406932) +zone = ('prz010', 0.0021553426798868406) + +[fips7200349550] +centroid = (0.32074228077835903, -1.1718164683433605) +description = Mamey barrio, PR +station = ('tjmz', 0.0019357128568655503) +zone = ('prz010', 0.0023964620843807383) + +[fips7200351098] +centroid = (0.32043091403980317, -1.1717827660355045) +description = Marías barrio, PR +station = ('tjmz', 0.0016291978551010613) +zone = ('prz010', 0.0020993088685813031) + +[fips7200356215] +centroid = (0.32017377468110686, -1.172095494130877) +description = Naranjo barrio, PR +station = ('tjmz', 0.0013640788657217939) +zone = ('prz010', 0.0017934700992134455) + +[fips7200358] +centroid = (0.31701769579472555, -1.1645455313993074) +description = Adjuntas zona urbana, PR +station = ('tjps', 0.0036559842621478509) +zone = ('prz007', 0.0022491550744584807) + +[fips7200361719] +centroid = (0.32049561339517468, -1.1726178013628288) +description = Piedras Blancas barrio, PR +station = ('tjmz', 0.0017850471773082186) +zone = ('prz010', 0.0021243862721693706) + +[fips7200370921] +centroid = (0.32065185526981321, -1.1733975272061572) +description = Río Grande barrio, PR +station = ('tjmz', 0.0022734596515414035) +zone = ('prz010', 0.0024856228193423668) + +[fips72005] +centroid = (0.32254131381143719, -1.171882302162746) +description = Aguadilla Municipio, PR +station = ('tjbq', 0.00038651856137466906) +zone = ('prz008', 0.0034496823903217293) + +[fips7200500000] +centroid = (0.32290041530503505, -1.1723089478983959) +description = Municipio subdivision not defined, PR +station = ('tjbq', 0.00057983658273293669) +zone = ('prz008', 0.0039336804210348079) + +[fips7200500530] +centroid = (0.32288495168786235, -1.1712959413472459) +description = Aguacate barrio, PR +station = ('tjbq', 0.00038100277712089983) +zone = ('prz008', 0.0030214700172050799) + +[fips7200500788] +centroid = (0.32165953856674462, -1.1720879717618007) +description = Aguadilla barrio-pueblo, PR +station = ('tjbq', 0.0012810233277776718) +zone = ('prz010', 0.0032745165262681418) + +[fips7200503626] +centroid = (0.32235784480046753, -1.1712441574283392) +description = Arenales barrio, PR +station = ('tjbq', 0.00068108835595196403) +zone = ('prz008', 0.002818881487253338) + +[fips7200508313] +centroid = (0.32240156529823005, -1.1721842266700484) +description = Borinquen barrio, PR +station = ('tjbq', 0.00066895275184145108) +zone = ('prz008', 0.0037023391169258828) + +[fips7200510592] +centroid = (0.32188276617807471, -1.1712363732598752) +description = Caimital Alto barrio, PR +station = ('tjbq', 0.0010944238759080321) +zone = ('prz008', 0.0027497588775879361) + +[fips7200510635] +centroid = (0.32163030430177375, -1.1717610541396097) +description = Caimital Bajo barrio, PR +station = ('tjbq', 0.0012570442991019972) +zone = ('prz008', 0.0032472079819594671) + +[fips7200511237] +centroid = (0.32228221968397863, -1.1717819108241712) +description = Camaceyes barrio, PR +station = ('tjbq', 0.00060895158728534453) +zone = ('prz008', 0.0033062149075746348) + +[fips7200516225] +centroid = (0.32249097851580966, -1.1709010431506897) +description = Ceiba Alta barrio, PR +station = ('tjbq', 0.00085253558832784431) +zone = ('prz008', 0.002537090578652295) + +[fips7200516268] +centroid = (0.32218465577879218, -1.1707790620892675) +description = Ceiba Baja barrio, PR +station = ('tjbq', 0.0011184254331397926) +zone = ('prz008', 0.0023521787216210072) + +[fips7200520955] +centroid = (0.32206232565151993, -1.1716501908255232) +description = Corrales barrio, PR +station = ('tjbq', 0.00082481795532772767) +zone = ('prz008', 0.0031541888244404587) + +[fips7200532694] +centroid = (0.32255976194163077, -1.1706392437628905) +description = Guerrero barrio, PR +station = ('tjbq', 0.0010554735436485968) +zone = ('prz008', 0.0023233542597778005) + +[fips7200549292] +centroid = (0.32288231624069186, -1.1714444165067128) +description = Maleza Alta barrio, PR +station = ('tjbq', 0.00024022605185405828) +zone = ('prz008', 0.0031516096435969566) + +[fips7200549335] +centroid = (0.32282821103388004, -1.1717796244428509) +description = Maleza Baja barrio, PR +station = ('tjbq', 9.6771297007655624e-05) +zone = ('prz008', 0.003433212120180227) + +[fips7200554108] +centroid = (0.32285503674448318, -1.1710667796164589) +description = Montaña barrio, PR +station = ('tjbq', 0.00059912016346469563) +zone = ('prz008', 0.0028091816088194489) + +[fips7200557935] +centroid = (0.32111270945880227, -1.171790602563846) +description = Palmar barrio, PR +station = ('tjbq', 0.0017753905638071322) +zone = ('prz010', 0.0027649940776153532) + +[fips7200585842] +centroid = (0.3212514980409209, -1.171970493649849) +description = Victoria barrio, PR +station = ('tjbq', 0.0016547706907038236) +zone = ('prz010', 0.0028776991662304088) + +[fips7200616] +centroid = (0.32079748554259957, -1.1726586071607403) +description = Aguada zona urbana, PR +station = ('tjmz', 0.0020834684759399088) +zone = ('prz010', 0.0024287150765754679) + +[fips72007] +centroid = (0.31863645376936522, -1.1541599845919002) +description = Aguas Buenas Municipio, PR +station = ('tjig', 0.0034096281073653419) +zone = ('prz004', 0.001726467723427884) + +[fips7200700917] +centroid = (0.31863549383827666, -1.1537573720400502) +description = Aguas Buenas barrio-pueblo, PR +station = ('tjig', 0.0033789497670478016) +zone = ('prz004', 0.0014679093506779174) + +[fips7200704529] +centroid = (0.31873595499002144, -1.1535193265833708) +description = Bairoa barrio, PR +station = ('tjig', 0.0032801133354062911) +zone = ('prz004', 0.0014319975836247418) + +[fips7200706894] +centroid = (0.3182691841348681, -1.1547733456509286) +description = Bayamoncito barrio, PR +station = ('tjig', 0.0038896661592631217) +zone = ('prz004', 0.0020180480035673024) + +[fips7200710506] +centroid = (0.31830951869388163, -1.1535923511592741) +description = Cagüitas barrio, PR +station = ('tjig', 0.0037043290775983905) +zone = ('prz004', 0.0011157155341615995) + +[fips7200737682] +centroid = (0.31906720102875741, -1.1533502216321447) +description = Jagüeyes barrio, PR +station = ('tjig', 0.0029609288616238489) +zone = ('prz001', 0.001589497002721127) + +[fips7200739230] +centroid = (0.31874616516614562, -1.1547849869970392) +description = Juan Asencio barrio, PR +station = ('tjig', 0.0034363588232883447) +zone = ('prz001', 0.0021837820822404497) + +[fips7200745] +centroid = (0.32181157419788586, -1.1720726826775534) +description = Aguadilla zona urbana, PR +station = ('tjbq', 0.0011316793441108202) +zone = ('prz010', 0.0034271712072123221) + +[fips7200755441] +centroid = (0.31849468067422576, -1.1541977884234984) +description = Mula barrio, PR +station = ('tjig', 0.0035550407811720231) +zone = ('prz004', 0.0016616401039466703) + +[fips7200755527] +centroid = (0.31857847393161404, -1.154438085354913) +description = Mulita barrio, PR +station = ('tjig', 0.0035127452557172372) +zone = ('prz004', 0.0018941999150942147) + +[fips7200780467] +centroid = (0.318909283638037, -1.1540161345549509) +description = Sonadora barrio, PR +station = ('tjig', 0.0031220426437117573) +zone = ('prz001', 0.0017637704592892622) + +[fips7200780811] +centroid = (0.31810686851443259, -1.1540646023482786) +description = Sumidero barrio, PR +station = ('tjig', 0.0039249682358061914) +zone = ('prz004', 0.0013412537661060214) + +[fips7200874] +centroid = (0.31866490263617275, -1.1537747555194) +description = Aguas Buenas zona urbana, PR +station = ('tjig', 0.0033500349757122389) +zone = ('prz004', 0.0015013285790030388) + +[fips72009] +centroid = (0.31643948566683233, -1.156524521755917) +description = Aibonito Municipio, PR +station = ('tjps', 0.0054019492007871756) +zone = ('prz006', 0.0028045708996185196) + +[fips7200901261] +centroid = (0.31653851564859048, -1.1565280298677134) +description = Aibonito barrio-pueblo, PR +station = ('tjps', 0.0054360432345542508) +zone = ('prz006', 0.0027521839104037282) + +[fips7200901605] +centroid = (0.31595292277796133, -1.1566154185033608) +description = Algarrobo barrio, PR +station = ('tjps', 0.0051599703417644065) +zone = ('prz006', 0.003015528758417364) + +[fips7200904271] +centroid = (0.31649116486598389, -1.1572890457814606) +description = Asomante barrio, PR +station = ('tjps', 0.0047557152124683786) +zone = ('prz006', 0.0021791384193989728) + +[fips7200913344] +centroid = (0.31695166998912261, -1.156523614184706) +description = Caonillas barrio, PR +station = ('tjps', 0.0056112065672605741) +zone = ('prz006', 0.0025804597759233774) + +[fips7200922890] +centroid = (0.31592192573044592, -1.1561000925884171) +description = Cuyón barrio, PR +station = ('tjps', 0.0056223107953554527) +zone = ('prz003', 0.0030220277697994066) + +[fips7200945895] +centroid = (0.31678451980665912, -1.1569048813598042) +description = Llanos barrio, PR +station = ('tjps', 0.005212400898762592) +zone = ('prz006', 0.0023199788728271538) + +[fips7200960042] +centroid = (0.31630883031902807, -1.1566237611771855) +description = Pasto barrio, PR +station = ('tjps', 0.0052669338514147188) +zone = ('prz006', 0.0027952191802503457) + +[fips7200962536] +centroid = (0.31698029338885531, -1.1560878752836532) +description = Plata barrio, PR +station = ('tjig', 0.0055346314789994078) +zone = ('prz006', 0.0029618194613222279) + +[fips7200971867] +centroid = (0.31648765675418739, -1.1560856238089181) +description = Robles barrio, PR +station = ('tjps', 0.00580858793720766) +zone = ('prz006', 0.0031482942752590502) + +[fips7201003] +centroid = (0.318429736972759, -1.1460916416191957) +description = Aguas Claras comunidad, PR +station = ('tjnr', 0.00055287049199883253) +zone = ('prz002', 0.0020135003338216917) + +[fips7201089] +centroid = (0.31465745214066859, -1.1612383942661659) +description = Aguilita comunidad, PR +station = ('tjps', 0.00057953130736128724) +zone = ('prz007', 0.0020179920750319096) + +[fips72011] +centroid = (0.31916724330148177, -1.1716612736662733) +description = Añasco Municipio, PR +station = ('tjmz', 0.00047090505493413084) +zone = ('prz010', 0.00098926378292317789) + +[fips7201100000] +centroid = (0.31900110540998444, -1.1731493239332311) +description = Municipio subdivision not defined, PR +station = ('tjmz', 0.0011180614869709378) +zone = ('prz010', 0.001004859194967846) + +[fips7201102637] +centroid = (0.3190969065326264, -1.1718379882530379) +description = Añasco barrio-pueblo, PR +station = ('tjmz', 0.0003174648083071777) +zone = ('prz010', 0.00083458891284290937) + +[fips7201102723] +centroid = (0.31896649553091738, -1.1723976280776895) +description = Añasco Abajo barrio, PR +station = ('tjmz', 0.00041746827722352793) +zone = ('prz010', 0.00058107602351395362) + +[fips7201102766] +centroid = (0.31897986475298762, -1.1719327247248359) +description = Añasco Arriba barrio, PR +station = ('tjmz', 0.00017464082621108755) +zone = ('prz010', 0.00068771294696930033) + +[fips7201110248] +centroid = (0.31939755694957495, -1.1730923563864459) +description = Caguabo barrio, PR +station = ('tjmz', 0.0011998087933810548) +zone = ('prz010', 0.0012516114947385868) + +[fips7201113989] +centroid = (0.31940509677194356, -1.1721519904387641) +description = Caracol barrio, PR +station = ('tjmz', 0.00061162521847693118) +zone = ('prz010', 0.0010241771903658722) + +[fips7201114462] +centroid = (0.31917504492323817, -1.1715523302143638) +description = Carreras barrio, PR +station = ('tjmz', 0.00054985238714765246) +zone = ('prz010', 0.0010623446360137055) + +[fips7201114978] +centroid = (0.31883597980945327, -1.1712062837835708) +description = Casey Abajo barrio, PR +station = ('tjmz', 0.00074322479972645608) +zone = ('prz010', 0.0011366820664588549) + +[fips7201115021] +centroid = (0.31871345769596326, -1.1708735542149706) +description = Casey Arriba barrio, PR +station = ('tjmz', 0.0010635802725777511) +zone = ('prz010', 0.0013997523290552383) + +[fips7201117128] +centroid = (0.31944232464488859, -1.1707849787554321) +description = Cerro Gordo barrio, PR +station = ('tjmz', 0.0013044306167301523) +zone = ('prz010', 0.0017875584949119134) + +[fips7201118031] +centroid = (0.31910181090782452, -1.171167746913687) +description = Cidra barrio, PR +station = ('tjmz', 0.00083106590612388456) +zone = ('prz010', 0.0012948906788016628) + +[fips7201120439] +centroid = (0.31927965995860269, -1.1703574778084485) +description = Corcovada barrio, PR +station = ('tjmz', 0.0016174392795775016) +zone = ('prz010', 0.0020540596764490123) + +[fips7201123148] +centroid = (0.31949665674450317, -1.1715977611347932) +description = Dagüey barrio, PR +station = ('tjmz', 0.0007774615176287681) +zone = ('prz010', 0.0012945193017380677) + +[fips7201127276] +centroid = (0.31908742939478807, -1.1713739575648099) +description = Espino barrio, PR +station = ('tjmz', 0.00064473337223086493) +zone = ('prz010', 0.0011272959724995962) + +[fips7201133253] +centroid = (0.31938300090361332, -1.1726575774164816) +description = Hatillo barrio, PR +station = ('tjmz', 0.00085314358316607001) +zone = ('prz010', 0.0010454187385707369) + +[fips7201135661] +centroid = (0.31955676588394183, -1.1712269484819147) +description = Humatas barrio, PR +station = ('tjmz', 0.0010370440647889992) +zone = ('prz010', 0.0015527799899794589) + +[fips7201151141] +centroid = (0.31940089052844622, -1.17182906962056) +description = Marías barrio, PR +station = ('tjmz', 0.00060662845426498284) +zone = ('prz010', 0.0011069353728741266) + +[fips7201153463] +centroid = (0.31903103780665615, -1.1707693755119193) +description = Miraflores barrio, PR +station = ('tjmz', 0.0011780014247600489) +zone = ('prz010', 0.0015948861458889958) + +[fips7201157591] +centroid = (0.31872865951374812, -1.1713514777240441) +description = Ovejas barrio, PR +station = ('tjmz', 0.00061093426631734116) +zone = ('prz010', 0.0009688724362576052) + +[fips7201161934] +centroid = (0.31940207735233761, -1.1723844159352521) +description = Piñales barrio, PR +station = ('tjmz', 0.00069836001076572043) +zone = ('prz010', 0.0010129916634475623) + +[fips7201162665] +centroid = (0.31913505943007497, -1.1727072494869935) +description = Playa barrio, PR +station = ('tjmz', 0.00075438277809009718) +zone = ('prz010', 0.00083447783004595962) + +[fips7201167567] +centroid = (0.31951458127592119, -1.1719745777202988) +description = Quebrada Larga barrio, PR +station = ('tjmz', 0.00070123085468252761) +zone = ('prz010', 0.0011666702820060586) + +[fips7201170147] +centroid = (0.31894082173762051, -1.17021439571637) +description = Río Arriba barrio, PR +station = ('tjmz', 0.0016895621467698553) +zone = ('prz010', 0.0020626294617033677) + +[fips7201170534] +centroid = (0.31850960323933031, -1.1715295536676253) +description = Río Cañas barrio, PR +station = ('tjmz', 0.00053138796702128794) +zone = ('prz010', 0.00074864027107128257) + +[fips7201218] +centroid = (0.31659789174974334, -1.1565546810453915) +description = Aibonito zona urbana, PR +station = ('tjps', 0.0054358009719752617) +zone = ('prz006', 0.0027014543740048152) + +[fips72013] +centroid = (0.32173453536470287, -1.1636997622970833) +description = Arecibo Municipio, PR +station = ('tjps', 0.0075028389612447309) +zone = ('prz005', 0.0024095484358487734) + +[fips7201300000] +centroid = (0.32312036169737135, -1.1636707200183303) +description = Municipio subdivision not defined, PR +station = ('tjbq', 0.0076154883027680208) +zone = ('prz005', 0.0029145013649705038) + +[fips7201303411] +centroid = (0.32241626097053183, -1.1644887209321548) +description = Arecibo barrio-pueblo, PR +station = ('tjbq', 0.0068530968320581944) +zone = ('prz005', 0.0032933639780844564) + +[fips7201303540] +centroid = (0.32160688198321197, -1.1636009417548354) +description = Arenalejos barrio, PR +station = ('tjps', 0.0073566748538894796) +zone = ('prz005', 0.0023022886318149953) + +[fips7201304056] +centroid = (0.32084307354266173, -1.1631925521631612) +description = Arrozal barrio, PR +station = ('tjps', 0.0065269161795279045) +zone = ('prz005', 0.0019889008667916212) + +[fips7201311323] +centroid = (0.32218854786302409, -1.1639809348395795) +description = Cambalache barrio, PR +station = ('tjbq', 0.0073519950070827528) +zone = ('prz005', 0.0027660784867822707) + +[fips7201314505] +centroid = (0.32088082501438236, -1.1637791922313416) +description = Carreras barrio, PR +station = ('tjps', 0.0066978944220651713) +zone = ('prz005', 0.0025192814410441751) + +[fips7201323750] +centroid = (0.32176919760364742, -1.1639041752590771) +description = Domingo Ruíz barrio, PR +station = ('tjps', 0.0075851407721888049) +zone = ('prz005', 0.0026063848201488826) + +[fips7201323836] +centroid = (0.32116843782181848, -1.1648816818132415) +description = Dominguito barrio, PR +station = ('tjbq', 0.0066898670782838459) +zone = ('prz008', 0.0033342745923024076) + +[fips7201327061] +centroid = (0.32051526580255213, -1.164979682050741) +description = Esperanza barrio, PR +station = ('tjps', 0.006772562564201918) +zone = ('prz009', 0.0027467710451633373) + +[fips7201327835] +centroid = (0.32215172141580706, -1.1629797965273432) +description = Factor barrio, PR +station = ('tjps', 0.0077816328818948411) +zone = ('prz005', 0.0018589859977761313) + +[fips7201330329] +centroid = (0.32218245666393464, -1.1623254900440632) +description = Garrochales barrio, PR +station = ('tjps', 0.0077479376076495191) +zone = ('prz005', 0.0013311123314612256) + +[fips7201333511] +centroid = (0.32229658374372255, -1.165016909923686) +description = Hato Abajo barrio, PR +station = ('tjbq', 0.0063635262688144061) +zone = ('prz008', 0.0031989697311348925) + +[fips7201333554] +centroid = (0.32178434706155473, -1.1649233951823641) +description = Hato Arriba barrio, PR +station = ('tjbq', 0.0065191605679041156) +zone = ('prz008', 0.0032421829392039634) + +[fips7201334199] +centroid = (0.32047306374123891, -1.1641813684508788) +description = Hato Viejo barrio, PR +station = ('tjps', 0.0064312944211685477) +zone = ('prz005', 0.0029951306846296879) + +[fips7201336865] +centroid = (0.3225390623367021, -1.1632013137160062) +description = Islote barrio, PR +station = ('tjps', 0.0081965018456063941) +zone = ('prz005', 0.0022228275496188514) + +[fips7201353549] +centroid = (0.32143376277470664, -1.1632114889855454) +description = Miraflores barrio, PR +station = ('tjps', 0.0071098046638474544) +zone = ('prz005', 0.0019245131658031825) + +[fips7201370190] +centroid = (0.32011401460751859, -1.1638530720185787) +description = Río Arriba barrio, PR +station = ('tjps', 0.0059880187405543959) +zone = ('prz005', 0.0028455683960172955) + +[fips7201373759] +centroid = (0.32062600694359111, -1.1626853769358243) +description = Sabana Hoyos barrio, PR +station = ('tjps', 0.0062319091317632486) +zone = ('prz005', 0.0016264561040638893) + +[fips7201378704] +centroid = (0.32205883499301585, -1.1635508333520106) +description = Santana barrio, PR +station = ('tjps', 0.0077867601646368781) +zone = ('prz005', 0.0023381049559062297) + +[fips7201381757] +centroid = (0.3215318677319613, -1.1644141779198023) +description = Tanamá barrio, PR +station = ('tjbq', 0.0070401413246819321) +zone = ('prz005', 0.003067851165753342) + +[fips72015] +centroid = (0.31367162036597207, -1.1526493846710064) +description = Arroyo Municipio, PR +station = ('tjnr', 0.0083352840584367677) +zone = ('prz003', 0.0010917030486785645) + +[fips7201500000] +centroid = (0.31290128439401937, -1.1524521450122385) +description = Municipio subdivision not defined, PR +station = ('tjnr', 0.0086630688453125486) +zone = ('prz003', 0.0018641910364609331) + +[fips7201502809] +centroid = (0.31406077642928931, -1.1526865427307813) +description = Ancones barrio, PR +station = ('tjsj', 0.0079859657166275657) +zone = ('prz003', 0.00075827278760409267) + +[fips7201503970] +centroid = (0.31351323173635359, -1.1530120989961559) +description = Arroyo barrio-pueblo, PR +station = ('tjig', 0.0085224492621012778) +zone = ('prz003', 0.001116959393096355) + +[fips7201531748] +centroid = (0.3137428297994535, -1.1530847046930388) +description = Guásimas barrio, PR +station = ('tjig', 0.0082886171350786235) +zone = ('prz003', 0.00087871423330293096) + +[fips7201558408] +centroid = (0.31367162036597207, -1.1526493846710064) +description = Palmas barrio, PR +station = ('tjnr', 0.0083352840584367677) +zone = ('prz003', 0.0010917030486785645) + +[fips7201562192] +centroid = (0.31422571004360272, -1.1530842858140185) +description = Pitahaya barrio, PR +station = ('tjig', 0.0078068876325395886) +zone = ('prz003', 0.00041032919391584526) + +[fips7201588164] +centroid = (0.3146572427011583, -1.1531228575904875) +description = Yaurel barrio, PR +station = ('tjig', 0.0073738467664934788) +zone = ('prz003', 0.0001183554218560378) + +[fips72017] +centroid = (0.322362120857135, -1.1616602577996653) +description = Barceloneta Municipio, PR +station = ('tjps', 0.0079132030961774104) +zone = ('prz005', 0.001054752917424175) + +[fips7201700000] +centroid = (0.32315006720124034, -1.1616475867092959) +description = Municipio subdivision not defined, PR +station = ('tjig', 0.0076579365341338749) +zone = ('prz005', 0.0017955562469795744) + +[fips7201705389] +centroid = (0.32209424772353884, -1.1613164279370225) +description = Barceloneta barrio-pueblo, PR +station = ('tjig', 0.0072607408803092698) +zone = ('prz005', 0.00069643913272354643) + +[fips7201729039] +centroid = (0.3215718357718319, -1.1617018315424481) +description = Florida Afuera barrio, PR +station = ('tjps', 0.0071223895260913378) +zone = ('prz005', 0.00051813583718773924) + +[fips7201730415] +centroid = (0.32217530081400148, -1.1618497132899694) +description = Garrochales barrio, PR +station = ('tjps', 0.0077252512567448943) +zone = ('prz005', 0.00099317383868650455) + +[fips7201758580] +centroid = (0.32247446770108584, -1.1617170508135253) +description = Palmas Altas barrio, PR +station = ('tjps', 0.0080247739632967798) +zone = ('prz005', 0.0011793452177439449) + +[fips7201863] +centroid = (0.32207293725337205, -1.1668504306627836) +description = Alianza comunidad, PR +station = ('tjbq', 0.004668735762068929) +zone = ('prz008', 0.0014488010381523133) + +[fips72019] +centroid = (0.31763271491654327, -1.1573240221796706) +description = Barranquitas Municipio, PR +station = ('tjps', 0.0053186901725749891) +zone = ('prz006', 0.0016662842871898219) + +[fips7201905604] +centroid = (0.31797733017734958, -1.1574308014233077) +description = Barrancas barrio, PR +station = ('tjig', 0.0053928364835261131) +zone = ('prz006', 0.001550048387831507) + +[fips7201905733] +centroid = (0.31738402295142659, -1.1573308638703383) +description = Barranquitas barrio-pueblo, PR +station = ('tjps', 0.0051685058372356665) +zone = ('prz006', 0.0017142346995856254) + +[fips7201912097] +centroid = (0.31803077215904563, -1.1577969889536686) +description = Cañabón barrio, PR +station = ('tjps', 0.0052296662207919082) +zone = ('prz006', 0.001208783570549377) + +[fips7201934500] +centroid = (0.31712637744724725, -1.1575301979242087) +description = Helechal barrio, PR +station = ('tjps', 0.0048675363050586081) +zone = ('prz006', 0.0016349709639045455) + +[fips7201934887] +centroid = (0.31728946101255356, -1.1564933501754764) +description = Honduras barrio, PR +station = ('tjig', 0.0054346895520620622) +zone = ('prz006', 0.0025073000618961224) + +[fips7201958795] +centroid = (0.31749068002201603, -1.1580203038314612) +description = Palo Hincado barrio, PR +station = ('tjps', 0.0047119794725537746) +zone = ('prz006', 0.0010597563500047411) + +[fips7201967309] +centroid = (0.31763016673583544, -1.1568127454285915) +description = Quebrada Grande barrio, PR +station = ('tjig', 0.005306006062227012) +zone = ('prz006', 0.0021481970646044534) + +[fips7201967997] +centroid = (0.31808862982374925, -1.1569621805191472) +description = Quebradillas barrio, PR +station = ('tjig', 0.005021152910018551) +zone = ('prz006', 0.0020031159451054745) + +[fips72021] +centroid = (0.32026669601048308, -1.1548480981027915) +description = Bayamón Municipio, PR +station = ('tjig', 0.0020774367836591998) +zone = ('prz001', 0.0012136429360532124) + +[fips7202106636] +centroid = (0.3210842605919948, -1.1545416880993113) +description = Bayamón barrio-pueblo, PR +station = ('tjig', 0.0012484266966638197) +zone = ('prz001', 0.00097555439242613228) + +[fips7202109130] +centroid = (0.31995581796411787, -1.1552534333682747) +description = Buena Vista barrio, PR +station = ('tjig', 0.0025518128640568951) +zone = ('prz001', 0.0016841439057426102) + +[fips7202117171] +centroid = (0.3204705330138235, -1.1549384712514599) +description = Cerro Gordo barrio, PR +station = ('tjig', 0.0019609802365196135) +zone = ('prz001', 0.0012530841501273765) + +[fips7202123191] +centroid = (0.31939792346871787, -1.1552537300742474) +description = Dajaos barrio, PR +station = ('tjig', 0.0030199211836636646) +zone = ('prz001', 0.00197638308580268) + +[fips7202131619] +centroid = (0.3199223949089422, -1.1544355546274974) +description = Guaraguao Abajo barrio, PR +station = ('tjig', 0.0022157630583029202) +zone = ('prz001', 0.0010451628889749144) + +[fips7202131662] +centroid = (0.31923646305961584, -1.1546531273720511) +description = Guaraguao Arriba barrio, PR +station = ('tjig', 0.0029315791824920888) +zone = ('prz001', 0.0017025122776647926) + +[fips7202134156] +centroid = (0.32128811504862775, -1.1550207111658137) +description = Hato Tejas barrio, PR +station = ('tjig', 0.0014784651221128641) +zone = ('prz001', 0.0014731587353013207) + +[fips7202139402] +centroid = (0.32117746117405127, -1.1543081106855169) +description = Juan Sánchez barrio, PR +station = ('tjig', 0.001036123066258074) +zone = ('prz001', 0.00084237823115944181) + +[fips7202153162] +centroid = (0.32045409201226971, -1.1545908365710476) +description = Minillas barrio, PR +station = ('tjig', 0.0017907072462586056) +zone = ('prz001', 0.00093004718388900497) + +[fips7202156774] +centroid = (0.31914965038262166, -1.1553107499809101) +description = Nuevo barrio, PR +station = ('tjig', 0.0032629340588374877) +zone = ('prz001', 0.002179851737753757) + +[fips7202157763] +centroid = (0.32072091794831464, -1.1551728864232951) +description = Pájaros barrio, PR +station = ('tjig', 0.0019296140388579436) +zone = ('prz001', 0.0014672828694420013) + +[fips7202178790] +centroid = (0.31969373932363837, -1.1547906942236932) +description = Santa Olaya barrio, PR +station = ('tjig', 0.0025546161990280666) +zone = ('prz001', 0.0014490621480557633) + +[fips72023] +centroid = (0.31431412842350881, -1.1730337656834566) +description = Cabo Rojo Municipio, PR +station = ('tjmz', 0.004607673659992379) +zone = ('prz011', 0.0024696507877662805) + +[fips7202300000] +centroid = (0.31431412842350881, -1.1730337656834566) +description = Municipio subdivision not defined, PR +station = ('tjmz', 0.004607673659992379) +zone = ('prz011', 0.0024696507877662805) + +[fips7202304787] +centroid = (0.31602758796336172, -1.1716907522773394) +description = Bajura barrio, PR +station = ('tjmz', 0.0028002219800869876) +zone = ('prz011', 0.0019556008459093088) + +[fips7202308012] +centroid = (0.31410985508785533, -1.1725271489614801) +description = Boquerón barrio, PR +station = ('tjmz', 0.0047313854262759194) +zone = ('prz011', 0.0020158464396370082) + +[fips7202309818] +centroid = (0.31568131463976601, -1.1719303336237608) +description = Cabo Rojo barrio-pueblo, PR +station = ('tjmz', 0.0031326511102072008) +zone = ('prz011', 0.0018603197907634662) + +[fips7202331017] +centroid = (0.31650123541576791, -1.1722757517360229) +description = Guanajibo barrio, PR +station = ('tjmz', 0.0023282773424486876) +zone = ('prz010', 0.0018907014318679529) + +[fips7202346067] +centroid = (0.31379712699248302, -1.1718333631305198) +description = Llanos Costa barrio, PR +station = ('tjmz', 0.0050185186119215399) +zone = ('prz011', 0.0014858850810245043) + +[fips7202346153] +centroid = (0.31504170382878766, -1.1716201711623888) +description = Llanos Tuna barrio, PR +station = ('tjmz', 0.0037879838478155205) +zone = ('prz011', 0.0012559845935429805) + +[fips7202353377] +centroid = (0.31562532447736202, -1.1723537679535871) +description = Miradero barrio, PR +station = ('tjmz', 0.0032069755931179865) +zone = ('prz011', 0.0021517455079355374) + +[fips7202354409] +centroid = (0.31546124607438208, -1.1715933629050781) +description = Monte Grande barrio, PR +station = ('tjmz', 0.0033731981292929713) +zone = ('prz011', 0.0014743572914929235) + +[fips7202360601] +centroid = (0.31504627659142787, -1.1724434778771395) +description = Pedernales barrio, PR +station = ('tjmz', 0.0037919150109181573) +zone = ('prz011', 0.001987282262191485) + +[fips72025] +centroid = (0.31784381248957205, -1.1528067959162438) +description = Caguas Municipio, PR +station = ('tjig', 0.0042478461545367337) +zone = ('prz004', 0.00037928268381718267) + +[fips7202504615] +centroid = (0.31869310715688498, -1.1526185272498313) +description = Bairoa barrio, PR +station = ('tjsj', 0.003386189480893313) +zone = ('prz004', 0.0012437290580549333) + +[fips7202507152] +centroid = (0.31718036048101145, -1.153262414117477) +description = Beatriz barrio, PR +station = ('tjig', 0.0048477992477851941) +zone = ('prz004', 0.0005037594291168395) + +[fips7202508356] +centroid = (0.3171196055697495, -1.1526250024213562) +description = Borinquen barrio, PR +station = ('tjsj', 0.0049395475498452534) +zone = ('prz004', 0.00039408453365329907) + +[fips7202510377] +centroid = (0.31824211407816966, -1.1524968778009674) +description = Caguas barrio-pueblo, PR +station = ('tjsj', 0.0038110473819460808) +zone = ('prz004', 0.00083732187680613055) + +[fips7202512140] +centroid = (0.3183163254779644, -1.1530834306026849) +description = Cañabón barrio, PR +station = ('tjig', 0.0037375763940618854) +zone = ('prz004', 0.00088612177298600596) + +[fips7202512226] +centroid = (0.31789988991843859, -1.153339278417735) +description = Cañaboncito barrio, PR +station = ('tjig', 0.0041247936173732678) +zone = ('prz004', 0.00065420909872839254) + +[fips7202570577] +centroid = (0.31911203853724118, -1.1527381346634706) +description = Río Cañas barrio, PR +station = ('tjsj', 0.0030039761401549269) +zone = ('prz004', 0.001649178687066473) + +[fips7202575651] +centroid = (0.31942063020228628, -1.1525550670782287) +description = San Antonio barrio, PR +station = ('tjsj', 0.0026623257424019985) +zone = ('prz001', 0.0015853810057255102) + +[fips7202577371] +centroid = (0.31655563732855252, -1.1527423060003827) +description = San Salvador barrio, PR +station = ('tjsj', 0.0055135348948209617) +zone = ('prz004', 0.00091266018256447225) + +[fips7202582918] +centroid = (0.31767554529638725, -1.1521404292078323) +description = Tomás de Castro barrio, PR +station = ('tjsj', 0.0043428698057837219) +zone = ('prz004', 0.00068348697865489342) + +[fips7202583950] +centroid = (0.31769163723209065, -1.1527288320585574) +description = Turabo barrio, PR +station = ('tjsj', 0.0043897351229972388) +zone = ('prz004', 0.00024438984592752222) + +[fips7202680] +centroid = (0.31915286178844532, -1.1718422294031201) +description = Añasco zona urbana, PR +station = ('tjmz', 0.00036673924714232471) +zone = ('prz010', 0.00088034558910160662) + +[fips72027] +centroid = (0.32193416612454595, -1.1669818365021662) +description = Camuy Municipio, PR +station = ('tjbq', 0.0045730160733838112) +zone = ('prz008', 0.001301396169115077) + +[fips7202700000] +centroid = (0.32318863897770939, -1.1670914780857766) +description = Municipio subdivision not defined, PR +station = ('tjbq', 0.0043784496524334332) +zone = ('prz008', 0.001858673287793288) + +[fips7202700100] +centroid = (0.32149064305502911, -1.166665321042317) +description = Abra Honda barrio, PR +station = ('tjbq', 0.0049731785157823291) +zone = ('prz008', 0.0016117265769782689) + +[fips7202711968] +centroid = (0.3226170785542663, -1.1666938222690022) +description = Camuy barrio-pueblo, PR +station = ('tjbq', 0.0047531213436977264) +zone = ('prz008', 0.0017835393252898961) + +[fips7202712011] +centroid = (0.32193580673404282, -1.1673983593281547) +description = Camuy Arriba barrio, PR +station = ('tjbq', 0.0041870392253236409) +zone = ('prz008', 0.00091186712243326981) + +[fips7202717859] +centroid = (0.32076235206475695, -1.16717551568926) +description = Cibao barrio, PR +station = ('tjbq', 0.0047868321934719099) +zone = ('prz008', 0.0014870467816672013) + +[fips7202718375] +centroid = (0.32182204617339782, -1.1670363605879985) +description = Ciénagas barrio, PR +station = ('tjbq', 0.0045474437853619187) +zone = ('prz008', 0.001239260557054979) + +[fips7202752990] +centroid = (0.3225848946828595, -1.1670535695344233) +description = Membrillo barrio, PR +station = ('tjbq', 0.0044146389102455007) +zone = ('prz008', 0.0014754348245842419) + +[fips7202761633] +centroid = (0.32141728686656779, -1.1674093898090272) +description = Piedra Gorda barrio, PR +station = ('tjbq', 0.0043247084743177162) +zone = ('prz008', 0.00094664629463674793) + +[fips7202765116] +centroid = (0.32241823319258656, -1.1666956548647167) +description = Puente barrio, PR +station = ('tjbq', 0.0047669296484684175) +zone = ('prz008', 0.0016950263136268589) + +[fips7202765847] +centroid = (0.32107495798708163, -1.1674332310066096) +description = Puertos barrio, PR +station = ('tjbq', 0.0044321773783537778) +zone = ('prz008', 0.0010983249174386304) + +[fips7202766707] +centroid = (0.32061626800636506, -1.1665570408155235) +description = Quebrada barrio, PR +station = ('tjbq', 0.0053791296363130976) +zone = ('prz008', 0.0020409350137859618) + +[fips7202779349] +centroid = (0.32102469250462423, -1.1664144299623429) +description = Santiago barrio, PR +station = ('tjbq', 0.005346249336799282) +zone = ('prz008', 0.0019689114220083482) + +[fips7202788336] +centroid = (0.32244453530441408, -1.1674626747110906) +description = Yeguada barrio, PR +station = ('tjbq', 0.0040406540171359206) +zone = ('prz008', 0.00108030448167423) + +[fips7202788508] +centroid = (0.32205946331154661, -1.1666255973485418) +description = Zanja barrio, PR +station = ('tjbq', 0.0048811368113470827) +zone = ('prz008', 0.0016550812579312173) + +[fips72029] +centroid = (0.31991586737753969, -1.1499126560440018) +description = Canóvanas Municipio, PR +station = ('tjsj', 0.0028315460433849544) +zone = ('prz002', 0.0019081003614074285) + +[fips7202912850] +centroid = (0.32039581546854562, -1.1502999446050193) +description = Canóvanas barrio, PR +station = ('tjsj', 0.0022296218027585525) +zone = ('prz002', 0.0024544466684373726) + +[fips7202912871] +centroid = (0.32077830437412014, -1.1502108979065826) +description = Canóvanas barrio-pueblo, PR +station = ('tjsj', 0.0020362585785858992) +zone = ('prz002', 0.0026020036337242873) + +[fips7202922202] +centroid = (0.3189586764558684, -1.1494824323833852) +description = Cubuy barrio, PR +station = ('tjsj', 0.0038302266406845128) +zone = ('prz002', 0.0013545405016064951) + +[fips7202933812] +centroid = (0.3197916697479678, -1.1498981523579177) +description = Hato Puerco barrio, PR +station = ('tjsj', 0.0029337280061728574) +zone = ('prz002', 0.0018490120860225722) + +[fips7202946669] +centroid = (0.31907412998588786, -1.1500455454132488) +description = Lomas barrio, PR +station = ('tjsj', 0.0034342507941316899) +zone = ('prz002', 0.0018768808373835725) + +[fips7202983047] +centroid = (0.32100699486600898, -1.150492541687977) +description = Torrecilla Alta barrio, PR +station = ('tjsj', 0.0016851690347090998) +zone = ('prz002', 0.0029535858660593357) + +[fips7203024] +centroid = (0.32193900068657394, -1.1630251227280175) +description = Animas comunidad, PR +station = ('tjps', 0.0075776186114348424) +zone = ('prz005', 0.0018258932085149424) + +[fips72031] +centroid = (0.32108431295187234, -1.1513723796171997) +description = Carolina Municipio, PR +station = ('tjsj', 0.0010631109834062158) +zone = ('prz001', 0.0021886383471225383) + +[fips7203100000] +centroid = (0.3225988922234605, -1.152152803592229) +description = Municipio subdivision not defined, PR +station = ('tjsj', 0.00062679734039413596) +zone = ('prz001', 0.0024128323232253494) + +[fips7203105819] +centroid = (0.31963200702799532, -1.150844766584322) +description = Barrazas barrio, PR +station = ('tjsj', 0.0025896428529056902) +zone = ('prz002', 0.0026771313641452705) + +[fips7203109150] +centroid = (0.32129047124311794, -1.1509911124421017) +description = Buena Vista barrio, PR +station = ('tjsj', 0.0011377640835022759) +zone = ('prz001', 0.0025881511818424815) + +[fips7203109947] +centroid = (0.32015689734724012, -1.1512251610947941) +description = Cacao barrio, PR +station = ('tjsj', 0.0019691072757107827) +zone = ('prz001', 0.0023313910683201021) + +[fips7203112699] +centroid = (0.32181619932040367, -1.1519081258843922) +description = Cangrejo Arriba barrio, PR +station = ('tjsj', 0.00019724003030610791) +zone = ('prz001', 0.0020159939163462808) + +[fips7203113086] +centroid = (0.3203709619799972, -1.1505234863756149) +description = Canovanillas barrio, PR +station = ('tjsj', 0.0021086039464717397) +zone = ('prz002', 0.0026280070517833471) + +[fips7203114333] +centroid = (0.32082265319041336, -1.1511652264882806) +description = Carolina barrio-pueblo, PR +station = ('tjsj', 0.0013880518752131205) +zone = ('prz001', 0.0023461477600343803) + +[fips7203114763] +centroid = (0.31962801022400827, -1.1504557501473449) +description = Carruzos barrio, PR +station = ('tjsj', 0.002759180201293739) +zone = ('prz002', 0.0023138798566888067) + +[fips7203115709] +centroid = (0.31913666513298683, -1.1505152135149606) +description = Cedro barrio, PR +station = ('tjsj', 0.0031694453473719107) +zone = ('prz002', 0.0023212250216499428) + +[fips7203151571] +centroid = (0.32072882428982619, -1.1514584243493231) +description = Martín González barrio, PR +station = ('tjsj', 0.0013562097790175034) +zone = ('prz001', 0.0020625323382892908) + +[fips7203173286] +centroid = (0.32142842206719557, -1.1516289430172431) +description = Sabana Abajo barrio, PR +station = ('tjsj', 0.00064564675060236059) +zone = ('prz001', 0.0020576807762982853) + +[fips7203174] +centroid = (0.31658803063946955, -1.1621538718187145) +description = Anon Raices comunidad, PR +station = ('tjps', 0.0021630848001906113) +zone = ('prz007', 0.0018493157034789646) + +[fips7203175479] +centroid = (0.32092067088120535, -1.1517943129638695) +description = San Antón barrio, PR +station = ('tjsj', 0.0010987901344275913) +zone = ('prz001', 0.001764916096487821) + +[fips7203177973] +centroid = (0.32025201779147378, -1.1508664435736318) +description = Santa Cruz barrio, PR +station = ('tjsj', 0.0020239116315073809) +zone = ('prz001', 0.0026501182417783173) + +[fips7203183735] +centroid = (0.32055636830643658, -1.1509594521694706) +description = Trujillo Bajo barrio, PR +station = ('tjsj', 0.0017171160840760444) +zone = ('prz001', 0.0025351812921295966) + +[fips7203196] +centroid = (0.31744517928841648, -1.1485641972106184) +description = Antón Ruíz comunidad, PR +station = ('tjnr', 0.0030877739814587678) +zone = ('prz002', 0.00177066096055346) + +[fips72033] +centroid = (0.32187883918725768, -1.154454264557079) +description = Cataño Municipio, PR +station = ('tjig', 0.00076288973024766604) +zone = ('prz001', 0.001470030443421428) + +[fips7203315236] +centroid = (0.32189594341392724, -1.1539503181888582) +description = Cataño barrio-pueblo, PR +station = ('tjig', 0.00029704403012195235) +zone = ('prz001', 0.0012977193000331983) + +[fips7203358451] +centroid = (0.32187883918725768, -1.154454264557079) +description = Palmas barrio, PR +station = ('tjig', 0.00076288973024766604) +zone = ('prz001', 0.001470030443421428) + +[fips7203368] +centroid = (0.32209992004360782, -1.1647507123061718) +description = Arecibo zona urbana, PR +station = ('tjbq', 0.006635576492840585) +zone = ('prz005', 0.0034541112690518261) + +[fips72035] +centroid = (0.31596784534306593, -1.1545643948328799) +description = Cayey Municipio, PR +station = ('tjig', 0.0061057409529980287) +zone = ('prz003', 0.0018541922636705047) + +[fips7203507238] +centroid = (0.31676717123389431, -1.1535998735283501) +description = Beatriz barrio, PR +station = ('tjig', 0.0052464141645851307) +zone = ('prz004', 0.0010144301760103929) + +[fips7203515537] +centroid = (0.31616016317334317, -1.1547487190551828) +description = Cayey barrio-pueblo, PR +station = ('tjig', 0.0059432385438986214) +zone = ('prz003', 0.0021143325490209728) + +[fips7203515752] +centroid = (0.31593128069523663, -1.1540997358261214) +description = Cedro barrio, PR +station = ('tjig', 0.0060961120083438429) +zone = ('prz003', 0.0015556496725389302) + +[fips7203516913] +centroid = (0.3153279203728222, -1.1553306641876753) +description = Cercadillo barrio, PR +station = ('tjps', 0.0062206189780909084) +zone = ('prz003', 0.0021165191277146846) + +[fips7203522718] +centroid = (0.31540480212637256, -1.1542021691999209) +description = Culebras Alto barrio, PR +station = ('tjig', 0.0066282771699732292) +zone = ('prz003', 0.0012144683074653919) + +[fips7203522761] +centroid = (0.31556715265339308, -1.1544035627423086) +description = Culebras Bajo barrio, PR +station = ('tjig', 0.0064843794588098054) +zone = ('prz003', 0.0014654795034498183) + +[fips7203528093] +centroid = (0.31606876028041625, -1.1536050571562284) +description = Farallón barrio, PR +station = ('tjig', 0.0059447381254500659) +zone = ('prz003', 0.0015006166177310403) + +[fips7203531834] +centroid = (0.31646596231158508, -1.1532910898770872) +description = Guavate barrio, PR +station = ('tjig', 0.005558490422032691) +zone = ('prz004', 0.0010927730662500916) + +[fips7203537854] +centroid = (0.31515729698514722, -1.1544432340762061) +description = Jájome Alto barrio, PR +station = ('tjig', 0.0068959118770631628) +zone = ('prz003', 0.0012711987258612774) + +[fips7203537897] +centroid = (0.3153501558674926, -1.1549380872790243) +description = Jájome Bajo barrio, PR +station = ('tjps', 0.0065933435574728177) +zone = ('prz003', 0.0017790868422546419) + +[fips7203541638] +centroid = (0.31563703563664292, -1.1553208030774016) +description = Lapa barrio, PR +station = ('tjps', 0.0062806093659065771) +zone = ('prz003', 0.0022319670033921412) + +[fips7203552087] +centroid = (0.31634614545843565, -1.1554493814833959) +description = Matón Abajo barrio, PR +station = ('tjig', 0.0059155855066344437) +zone = ('prz003', 0.0027276474911100985) + +[fips7203552130] +centroid = (0.31603268432477749, -1.1553752398967714) +description = Matón Arriba barrio, PR +station = ('tjig', 0.0061977103903336018) +zone = ('prz003', 0.0024816322042668934) + +[fips7203554452] +centroid = (0.31614490899568076, -1.1543458621572376) +description = Monte Llano barrio, PR +station = ('tjig', 0.0059040878649025963) +zone = ('prz003', 0.0018625319925394547) + +[fips7203560300] +centroid = (0.31584172785131681, -1.1556783686812575) +description = Pasto Viejo barrio, PR +station = ('tjps', 0.005991134971575148) +zone = ('prz003', 0.0026280432259923599) + +[fips7203560644] +centroid = (0.31586827430923964, -1.1553249569610213) +description = Pedro Avila barrio, PR +station = ('tjps', 0.0063243074955458053) +zone = ('prz003', 0.0023506809177773467) + +[fips7203561676] +centroid = (0.31620641439852104, -1.1556991206460641) +description = Piedras barrio, PR +station = ('tjps', 0.0060669680666287544) +zone = ('prz003', 0.0028336636071295282) + +[fips7203567051] +centroid = (0.31579188124787982, -1.1545591413918312) +description = Quebrada Arriba barrio, PR +station = ('tjig', 0.0062793397123942088) +zone = ('prz003', 0.001725827743769702) + +[fips7203569459] +centroid = (0.31634068257787695, -1.1546106460580576) +description = Rincón barrio, PR +station = ('tjig', 0.0057435371202902378) +zone = ('prz004', 0.002035483921933901) + +[fips7203580854] +centroid = (0.31570836724317197, -1.1549317168272546) +description = Sumido barrio, PR +station = ('tjig', 0.0064190181864913409) +zone = ('prz003', 0.0019504313137527311) + +[fips7203582746] +centroid = (0.31641245051671896, -1.1551103687294886) +description = Toíta barrio, PR +station = ('tjig', 0.0057670125069506813) +zone = ('prz004', 0.0024132542119996753) + +[fips7203585498] +centroid = (0.31639323444165451, -1.1539231085058195) +description = Vegas barrio, PR +station = ('tjig', 0.0056254516033524089) +zone = ('prz004', 0.0014958189649713993) + +[fips72037] +centroid = (0.31893708673302124, -1.1437298795286894) +description = Ceiba Municipio, PR +station = ('tjnr', 0.0017477019604751802) +zone = ('prz013', 0.0030183156944656861) + +[fips7203700000] +centroid = (0.31893708673302124, -1.1437298795286894) +description = Municipio subdivision not defined, PR +station = ('tjnr', 0.0017477019604751802) +zone = ('prz013', 0.0030183156944656861) + +[fips7203715967] +centroid = (0.31876077357198479, -1.14577584174434) +description = Ceiba barrio-pueblo, PR +station = ('tjnr', 0.00034175833927814692) +zone = ('prz002', 0.0022139759747797916) + +[fips7203717644] +centroid = (0.31863572073107937, -1.146114173819839) +description = Chupacallos barrio, PR +station = ('tjnr', 0.00057758569469707746) +zone = ('prz002', 0.0019283667256500107) + +[fips7203723019] +centroid = (0.31835809120696468, -1.1463473847144905) +description = Daguao barrio, PR +station = ('tjnr', 0.00080489825162782238) +zone = ('prz002', 0.0018191119014907759) + +[fips7203732178] +centroid = (0.31806459663994935, -1.1455559477118811) +description = Guayacán barrio, PR +station = ('tjnr', 0.00045942531602862922) +zone = ('prz002', 0.0026242839711442378) + +[fips7203748260] +centroid = (0.31857957348904276, -1.145298406927457) +description = Machos barrio, PR +station = ('tjnr', 0.00021597620578867787) +zone = ('prz002', 0.0026941083743905231) + +[fips7203767825] +centroid = (0.31823892012563854, -1.1460486716130116) +description = Quebrada Seca barrio, PR +station = ('tjnr', 0.00057854128378699576) +zone = ('prz002', 0.0021264397362185565) + +[fips7203769846] +centroid = (0.31885765679876299, -1.1472124571582414) +description = Río Abajo barrio, PR +station = ('tjnr', 0.0016438685989844176) +zone = ('prz002', 0.00086660266646525468) + +[fips7203774490] +centroid = (0.31898023127213054, -1.1461424307004286) +description = Saco barrio, PR +station = ('tjnr', 0.00074921423139226722) +zone = ('prz002', 0.0018389535933973763) + +[fips72039] +centroid = (0.31923970937202456, -1.1608761860864996) +description = Ciales Municipio, PR +station = ('tjps', 0.0048706261554199047) +zone = ('prz005', 0.0021891418932280205) + +[fips7203917730] +centroid = (0.32002659106528619, -1.1601007188465458) +description = Ciales barrio-pueblo, PR +station = ('tjps', 0.0058074343376362733) +zone = ('prz005', 0.0017226397504929263) + +[fips7203917816] +centroid = (0.31866891689345234, -1.1612651152570139) +description = Cialitos barrio, PR +station = ('tjps', 0.0042501343236332652) +zone = ('prz006', 0.0022398683073295888) + +[fips7203920568] +centroid = (0.31982912451371559, -1.1606122399437204) +description = Cordillera barrio, PR +station = ('tjps', 0.0054975490897765881) +zone = ('prz005', 0.0016705782297171798) + +[fips7203927] +centroid = (0.31361158103970355, -1.1529945409838811) +description = Arroyo zona urbana, PR +station = ('tjig', 0.0084256009941197293) +zone = ('prz003', 0.0010242258168140291) + +[fips7203929684] +centroid = (0.31954072630811603, -1.1616683386741022) +description = Frontón barrio, PR +station = ('tjps', 0.0050922898899964444) +zone = ('prz005', 0.0019245141801406537) + +[fips7203934285] +centroid = (0.32013836195058393, -1.1610351157681862) +description = Hato Viejo barrio, PR +station = ('tjps', 0.0057353487693802673) +zone = ('prz005', 0.0012787527321629639) + +[fips7203937338] +centroid = (0.31971264123943749, -1.1600379219000592) +description = Jaguas barrio, PR +station = ('tjps', 0.0055245605203554614) +zone = ('prz005', 0.0020150477380066556) + +[fips7203961375] +centroid = (0.31943288241363532, -1.160502999785838) +description = Pesas barrio, PR +station = ('tjps', 0.005134590794102536) +zone = ('prz006', 0.0020739610993686956) + +[fips7203964170] +centroid = (0.31889657764108248, -1.1602512185879454) +description = Pozas barrio, PR +station = ('tjps', 0.0046859189307301248) +zone = ('prz006', 0.0015236792485053773) + +[fips7203982961] +centroid = (0.31790142580818037, -1.1611533094651312) +description = Toro Negro barrio, PR +station = ('tjps', 0.003506832689042466) +zone = ('prz006', 0.0019893472056747479) + +[fips72041] +centroid = (0.31720085064642983, -1.1547331332649624) +description = Cidra Municipio, PR +station = ('tjig', 0.0049185357920859107) +zone = ('prz004', 0.0018321088796273161) + +[fips7204103755] +centroid = (0.31705940916384823, -1.1543984140210151) +description = Arenas barrio, PR +station = ('tjig', 0.0050028449857238352) +zone = ('prz004', 0.0015490259852565711) + +[fips7204106722] +centroid = (0.3173343857874999, -1.1539640713833639) +description = Bayamón barrio, PR +station = ('tjig', 0.0046876040876957705) +zone = ('prz004', 0.0010901345967334365) + +[fips7204107281] +centroid = (0.31691411050361973, -1.1538115470600319) +description = Beatriz barrio, PR +station = ('tjig', 0.0051010959981155945) +zone = ('prz004', 0.001087291553512058) + +[fips7204116010] +centroid = (0.31767821565014281, -1.1548703685040467) +description = Ceiba barrio, PR +station = ('tjig', 0.0044840733446290726) +zone = ('prz004', 0.0019548804994484665) + +[fips7204117417] +centroid = (0.31750755735588276, -1.1540532751614332) +description = Certenejas barrio, PR +station = ('tjig', 0.0045209246722635451) +zone = ('prz004', 0.0011677848696205113) + +[fips7204118117] +centroid = (0.31722647207984911, -1.1547226787427431) +description = Cidra barrio-pueblo, PR +station = ('tjig', 0.0048914176196165936) +zone = ('prz004', 0.0018187369613169076) + +[fips7204134930] +centroid = (0.31681347481894967, -1.1555620948464898) +description = Honduras barrio, PR +station = ('tjig', 0.0055036184027159102) +zone = ('prz004', 0.0026810639208806196) + +[fips7204154495] +centroid = (0.31770601874512705, -1.1546111696568333) +description = Monte Llano barrio, PR +station = ('tjig', 0.004400338274811305) +zone = ('prz004', 0.0017140053451410236) + +[fips7204168341] +centroid = (0.31722575649485579, -1.1554147716043288) +description = Rabanal barrio, PR +station = ('tjig', 0.0050682299678329011) +zone = ('prz004', 0.0024721689027081958) + +[fips7204169502] +centroid = (0.31679429365047029, -1.1548749063601023) +description = Rincón barrio, PR +station = ('tjig', 0.0053443590098152484) +zone = ('prz004', 0.0020600180767757822) + +[fips7204169889] +centroid = (0.31742598066664462, -1.1552322276178628) +description = Río Abajo barrio, PR +station = ('tjig', 0.0048232000116769464) +zone = ('prz004', 0.0022874003926267755) + +[fips7204175006] +centroid = (0.31711988482242981, -1.1558465311546873) +description = Salto barrio, PR +station = ('tjig', 0.0053144777049749237) +zone = ('prz004', 0.0028914834818835797) + +[fips7204180725] +centroid = (0.31703640572430691, -1.1548028591685797) +description = Sud barrio, PR +station = ('tjig', 0.0050932087839439585) +zone = ('prz004', 0.0019275096328141043) + +[fips7204182789] +centroid = (0.31677877767342005, -1.1552352470374689) +description = Toíta barrio, PR +station = ('tjig', 0.0054432473065660061) +zone = ('prz004', 0.0023907567704767253) + +[fips72043] +centroid = (0.31597091712254943, -1.158158359375294) +description = Coamo Municipio, PR +station = ('tjps', 0.0037880276671665475) +zone = ('prz006', 0.0020892917044000999) + +[fips7204318762] +centroid = (0.31552716716022988, -1.1582016959006209) +description = Coamo barrio-pueblo, PR +station = ('tjps', 0.0035935921719866251) +zone = ('prz006', 0.0024869332097209799) + +[fips7204318848] +centroid = (0.31663236200247025, -1.1583310422514863) +description = Coamo Arriba barrio, PR +station = ('tjps', 0.003960289889406673) +zone = ('prz006', 0.0014238233626525125) + +[fips7204322933] +centroid = (0.315721596838902, -1.1571874676189946) +description = Cuyón barrio, PR +station = ('tjps', 0.0045729014970813733) +zone = ('prz006', 0.002794339296669026) + +[fips7204334371] +centroid = (0.3169872747058633, -1.1583935948518778) +description = Hayales barrio, PR +station = ('tjps', 0.004119237991942375) +zone = ('prz006', 0.0010913962143190041) + +[fips7204347056] +centroid = (0.31515689555941928, -1.1590221053688134) +description = Los Llanos barrio, PR +station = ('tjps', 0.0027411913141255767) +zone = ('prz006', 0.0027201494622361802) + +[fips7204358021] +centroid = (0.31530278763159347, -1.1576361568630971) +description = Palmarejo barrio, PR +station = ('tjps', 0.0040568733366100704) +zone = ('prz006', 0.0029076419144534005) + +[fips7204360085] +centroid = (0.31626348666506127, -1.158022817105584) +description = Pasto barrio, PR +station = ('tjps', 0.0040291599154381958) +zone = ('prz006', 0.0018901056705952282) + +[fips7204360687] +centroid = (0.31669323908677977, -1.158979798587745) +description = Pedro García barrio, PR +station = ('tjps', 0.0035010226963607229) +zone = ('prz006', 0.0011859788726254308) + +[fips7204366062] +centroid = (0.31676046916956663, -1.1576965278019238) +description = Pulguillas barrio, PR +station = ('tjps', 0.0045397655762534983) +zone = ('prz006', 0.0017094771716031907) + +[fips7204376253] +centroid = (0.31489239091127952, -1.1580482290994931) +description = San Ildefonso barrio, PR +station = ('tjps', 0.003601940230552195) +zone = ('prz006', 0.0031352683221417673) + +[fips7204377801] +centroid = (0.31592166393105819, -1.158994267367244) +description = Santa Catalina barrio, PR +station = ('tjps', 0.0030527228976157924) +zone = ('prz006', 0.0019561258345687895) + +[fips72045] +centroid = (0.31808695430766737, -1.1557622317518159) +description = Comerío Municipio, PR +station = ('tjig', 0.0044031498392497629) +zone = ('prz004', 0.0028587827147389844) + +[fips7204515666] +centroid = (0.31867408306803824, -1.1553656580391778) +description = Cedrito barrio, PR +station = ('tjig', 0.0037098130736027222) +zone = ('prz001', 0.0025611847161660099) + +[fips7204516397] +centroid = (0.31780356519702102, -1.1552239023973307) +description = Cejas barrio, PR +station = ('tjig', 0.0044629477641797768) +zone = ('prz004', 0.0023040411239470477) + +[fips7204519708] +centroid = (0.31798113499511893, -1.1558266169479219) +description = Comerío barrio-pueblo, PR +station = ('tjig', 0.0045251926091551421) +zone = ('prz004', 0.0028978492828333579) + +[fips7204523879] +centroid = (0.31855110716894269, -1.1558236847947787) +description = Doña Elena barrio, PR +station = ('tjig', 0.0040241313649537584) +zone = ('prz001', 0.0029461125964967997) + +[fips7204556301] +centroid = (0.31814322372275167, -1.1552915339058458) +description = Naranjo barrio, PR +station = ('tjig', 0.0041674586109675523) +zone = ('prz004', 0.0024393405528340103) + +[fips7204559010] +centroid = (0.31823366668459002, -1.1561228691351555) +description = Palomas barrio, PR +station = ('tjig', 0.0044428131745390866) +zone = ('prz006', 0.0028117903228984218) + +[fips7204562020] +centroid = (0.31756401875718482, -1.1558664104548677) +description = Piñas barrio, PR +station = ('tjig', 0.0049165318588028388) +zone = ('prz004', 0.0028911987071655295) + +[fips7204571265] +centroid = (0.31781511927666928, -1.1564082304678567) +description = Río Hondo barrio, PR +station = ('tjig', 0.004941357137652919) +zone = ('prz006', 0.0025189341609404168) + +[fips7204585412] +centroid = (0.31776145040217041, -1.1555740328985733) +description = Vega Redonda barrio, PR +station = ('tjig', 0.0046227629667875431) +zone = ('prz004', 0.0026284326530676616) + +[fips7204620] +centroid = (0.31875937730858317, -1.1522925346521438) +description = Bairoa La Vienticinco comunidad, PR +station = ('tjsj', 0.0032733010075117405) +zone = ('prz004', 0.0013897079006834538) + +[fips7204658] +centroid = (0.32149685642716624, -1.1636455523705163) +description = Bajadero comunidad, PR +station = ('tjps', 0.0072597656294432307) +zone = ('prz005', 0.0023378055487756361) + +[fips72047] +centroid = (0.31946349548871528, -1.1576102212704125) +description = Corozal Municipio, PR +station = ('tjig', 0.0045316400544759437) +zone = ('prz006', 0.0021002338805377403) + +[fips7204700143] +centroid = (0.32037164265840551, -1.1573881979362663) +description = Abras barrio, PR +station = ('tjig', 0.0038976066360221382) +zone = ('prz006', 0.0029566101188323113) + +[fips7204701] +centroid = (0.31695427052970809, -1.1481317569818519) +description = Bajandas comunidad, PR +station = ('tjnr', 0.0029369431531124832) +zone = ('prz002', 0.0021991491456213475) + +[fips7204717945] +centroid = (0.32011663260139661, -1.1578950240977532) +description = Cibuco barrio, PR +station = ('tjig', 0.0044414300476238473) +zone = ('prz006', 0.002497752478416322) + +[fips7204720826] +centroid = (0.32008881205311984, -1.1574457065351196) +description = Corozal barrio-pueblo, PR +station = ('tjig', 0.0040730710226663022) +zone = ('prz006', 0.0026907686674525195) + +[fips7204722288] +centroid = (0.31927527918218024, -1.1582232332635907) +description = Cuchillas barrio, PR +station = ('tjig', 0.005121462744943725) +zone = ('prz006', 0.001608094969098654) + +[fips7204724094] +centroid = (0.31973567958556381, -1.1575035816531158) +description = Dos Bocas barrio, PR +station = ('tjig', 0.0042979797602266823) +zone = ('prz006', 0.0023743555750152024) + +[fips7204748905] +centroid = (0.318980178912253, -1.1583594038518312) +description = Magueyes barrio, PR +station = ('tjig', 0.0053916337945341042) +zone = ('prz006', 0.0012880664172805192) + +[fips7204750066] +centroid = (0.31879161353986757, -1.1573130440586754) +description = Maná barrio, PR +station = ('tjig', 0.0047310252756735524) +zone = ('prz006', 0.0018939928344461191) + +[fips7204756516] +centroid = (0.3192149955098163, -1.1576501194971134) +description = Negros barrio, PR +station = ('tjig', 0.0047064899310803997) +zone = ('prz006', 0.001892475748409967) + +[fips7204757677] +centroid = (0.31961771278142154, -1.1580947246707662) +description = Padilla barrio, PR +station = ('tjig', 0.0048403150243548701) +zone = ('prz006', 0.0019671219543548808) + +[fips7204758107] +centroid = (0.31990438311106156, -1.157015447967918) +description = Palmarejo barrio, PR +station = ('tjig', 0.0038170474602841477) +zone = ('prz006', 0.0028066653813846629) + +[fips7204758322] +centroid = (0.3186973308536748, -1.1579065607241088) +description = Palmarito barrio, PR +station = ('tjig', 0.0052172922316375539) +zone = ('prz006', 0.0013681000888457872) + +[fips7204759096] +centroid = (0.31923770224338482, -1.1571975556220711) +description = Palos Blancos barrio, PR +station = ('tjig', 0.0043540962544954889) +zone = ('prz006', 0.002231086533577102) + +[fips7204764557] +centroid = (0.3202021711880369, -1.1572478211045285) +description = Pueblo barrio, PR +station = ('tjig', 0.0038539776047220868) +zone = ('prz006', 0.0028923265602515116) + +[fips72049] +centroid = (0.31981833837893825, -1.1398176541971741) +description = Culebra Municipio, PR +station = ('tist', 0.0053605168437293191) +zone = ('prz012', 0.00034745248622447973) + +[fips7204922632] +centroid = (0.31949752940912918, -1.1397377704773104) +description = Culebra barrio-pueblo, PR +station = ('tist', 0.0053043343099084504) +zone = ('prz012', 0.000296890299942607) + +[fips7204928566] +centroid = (0.32024994084966396, -1.1404947895870705) +description = Flamenco barrio, PR +station = ('tjnr', 0.0050721467231537474) +zone = ('prz012', 0.0011186346320969818) + +[fips7204929426] +centroid = (0.31935120100464198, -1.1388296058543277) +description = Fraile barrio, PR +station = ('tist', 0.0044646671727291655) +zone = ('prz012', 0.00070067706451926301) + +[fips7204963396] +centroid = (0.3194390957857724, -1.1398419840869467) +description = Playa Sardinas I barrio, PR +station = ('tist', 0.0054084193844855235) +zone = ('prz012', 0.00041140083710902926) + +[fips7204963439] +centroid = (0.31900740604858413, -1.1394603329394135) +description = Playa Sardinas II barrio, PR +station = ('tist', 0.0051124388515470572) +zone = ('prz012', 0.00066577743401233301) + +[fips7204976382] +centroid = (0.32022189340858442, -1.1385945623639615) +description = San Isidro barrio, PR +station = ('tist', 0.0042039828700898198) +zone = ('prz012', 0.0010082248380437959) + +[fips72051] +centroid = (0.32241921057696765, -1.1564620389686957) +description = Dorado Municipio, PR +station = ('tjig', 0.0026861884411315592) +zone = ('prz001', 0.0032260767360762829) + +[fips7205100000] +centroid = (0.32289912376138857, -1.1562596156820493) +description = Municipio subdivision not defined, PR +station = ('tjig', 0.0026175931382176917) +zone = ('prz001', 0.0033696609116472083) + +[fips7205124051] +centroid = (0.32217622583850503, -1.1564803823791341) +description = Dorado barrio-pueblo, PR +station = ('tjig', 0.0026778066804845728) +zone = ('prz001', 0.0031134711530113749) + +[fips7205127448] +centroid = (0.32098564948925712, -1.1569183727549222) +description = Espinosa barrio, PR +station = ('tjig', 0.003255363775198708) +zone = ('prz001', 0.0031407981980715238) + +[fips7205134758] +centroid = (0.32208539890423127, -1.1569221077595213) +description = Higuillar barrio, PR +station = ('tjig', 0.0030927403474061968) +zone = ('prz001', 0.003444578181836605) + +[fips7205148819] +centroid = (0.32143119714070623, -1.1568391348068814) +description = Maguayo barrio, PR +station = ('tjig', 0.0030692157169088107) +zone = ('prz001', 0.0031481718660197801) + +[fips7205149808] +centroid = (0.32227593649867148, -1.1560442595056457) +description = Mameyal barrio, PR +station = ('tjig', 0.0022743313507101143) +zone = ('prz001', 0.0028184429985168135) + +[fips7205171480] +centroid = (0.32110777017701914, -1.1565638614772569) +description = Río Lajas barrio, PR +station = ('tjig', 0.0028976278539271046) +zone = ('prz001', 0.0028245614056918488) + +[fips7205217] +centroid = (0.32030785087424513, -1.1596714202104328) +description = Barahona comunidad, PR +station = ('tjig', 0.0059511402835294895) +zone = ('prz005', 0.0018087681698348739) + +[fips72053] +centroid = (0.32090283361624999, -1.1447344735928449) +description = Fajardo Municipio, PR +station = ('tjnr', 0.0024936933595827442) +zone = ('prz002', 0.0036182008928611399) + +[fips7205309732] +centroid = (0.32090283361624999, -1.1447344735928449) +description = Cabezas barrio, PR +station = ('tjnr', 0.0024936933595827442) +zone = ('prz002', 0.0036182008928611399) + +[fips7205323406] +centroid = (0.31917722658480313, -1.1459017323432863) +description = Demajagua barrio, PR +station = ('tjnr', 0.00074932899944391397) +zone = ('prz002', 0.0020594821923275827) + +[fips7205328007] +centroid = (0.31990544776190533, -1.1457950752726966) +description = Fajardo barrio-pueblo, PR +station = ('tjnr', 0.0014077027104267086) +zone = ('prz002', 0.002287749093537642) + +[fips7205328695] +centroid = (0.3196352009805265, -1.1461682790266507) +description = Florencio barrio, PR +station = ('tjnr', 0.0012725695338443991) +zone = ('prz002', 0.0018694647968085561) + +[fips7205346] +centroid = (0.32206543233758844, -1.161308521595511) +description = Barceloneta zona urbana, PR +station = ('tjps', 0.0076300114692058234) +zone = ('prz005', 0.00066674476358113488) + +[fips7205356344] +centroid = (0.31969592098520333, -1.1466327809537766) +description = Naranjo barrio, PR +station = ('tjnr', 0.001580381400694616) +zone = ('prz002', 0.0014692209390244075) + +[fips7205367223] +centroid = (0.32046515739972736, -1.1460355467370364) +description = Quebrada Fajardo barrio, PR +station = ('tjnr', 0.0020038021963873489) +zone = ('prz002', 0.0023355472321577335) + +[fips7205367868] +centroid = (0.31943904342589485, -1.1455830701284571) +description = Quebrada Vueltas barrio, PR +station = ('tjnr', 0.00091855043978056653) +zone = ('prz002', 0.0023791028698028618) + +[fips7205370233] +centroid = (0.31923150632454017, -1.1471442496910735) +description = Río Arriba barrio, PR +station = ('tjnr', 0.001699415465967241) +zone = ('prz002', 0.00088308788988006423) + +[fips7205379779] +centroid = (0.32019665594760055, -1.1456817510443649) +description = Sardinera barrio, PR +station = ('tjnr', 0.0016812918748275532) +zone = ('prz002', 0.0024965922640633161) + +[fips72054] +centroid = (0.32066150694057671, -1.1616621951151351) +description = Florida Municipio, PR +station = ('tjps', 0.0062128871759581641) +zone = ('prz005', 0.0008751163675404061) + +[fips7205428996] +centroid = (0.32066150694057671, -1.1616621951151351) +description = Florida Adentro barrio, PR +station = ('tjps', 0.0062128871759581641) +zone = ('prz005', 0.0008751163675404061) + +[fips72055] +centroid = (0.31325260171915331, -1.1680265033259474) +description = Guánica Municipio, PR +station = ('tjps', 0.0060352151886145121) +zone = ('prz011', 0.0026019031144698633) + +[fips7205500000] +centroid = (0.31257810177642759, -1.1680372021942622) +description = Municipio subdivision not defined, PR +station = ('tjps', 0.0062146953011692737) +zone = ('prz011', 0.0029708960602769048) + +[fips7205503454] +centroid = (0.31446029974836326, -1.1683428442528714) +description = Arena barrio, PR +station = ('tjmz', 0.0055635383544140344) +zone = ('prz011', 0.0019964789033616185) + +[fips7205512785] +centroid = (0.31412978674791314, -1.1676286729762477) +description = Caño barrio, PR +station = ('tjps', 0.0055452853865435685) +zone = ('prz011', 0.0026977048813241608) + +[fips7205514032] +centroid = (0.31345132490778538, -1.167316398666481) +description = Carenero barrio, PR +station = ('tjps', 0.0053339765234689503) +zone = ('prz011', 0.0031438214530307455) + +[fips7205518246] +centroid = (0.31410477617973204, -1.1682775689388469) +description = Ciénaga barrio, PR +station = ('tjmz', 0.0058830069184341062) +zone = ('prz011', 0.002091376384897631) + +[fips7205526760] +centroid = (0.31358545346080113, -1.1681200529738542) +description = Ensenada barrio, PR +station = ('tjps', 0.0060658133351847703) +zone = ('prz011', 0.0023804359681716667) + +[fips7205531232] +centroid = (0.31361292494322751, -1.1678782725125756) +description = Guánica barrio-pueblo, PR +station = ('tjps', 0.0058342655748955374) +zone = ('prz011', 0.0025859312723498875) + +[fips7205554022] +centroid = (0.31325884999787545, -1.1684154499497543) +description = Montalva barrio, PR +station = ('tjps', 0.0063970543338410426) +zone = ('prz011', 0.0022784810169487919) + +[fips7205581112] +centroid = (0.31432638063485779, -1.1674966388183345) +description = Susúa Baja barrio, PR +station = ('tjps', 0.0054116995739429234) +zone = ('prz011', 0.0028050621606058876) + +[fips7205690] +centroid = (0.31738402295142659, -1.1573308638703383) +description = Barranquitas zona urbana, PR +station = ('tjps', 0.0051685058372356665) +zone = ('prz006', 0.0017142346995856254) + +[fips72057] +centroid = (0.31370424056969187, -1.154316575532389) +description = Guayama Municipio, PR +station = ('tjps', 0.0071634268579547893) +zone = ('prz003', 0.0013690266359378713) + +[fips7205700000] +centroid = (0.31267371091285184, -1.1542582815353726) +description = Municipio subdivision not defined, PR +station = ('tjps', 0.0073975905783205875) +zone = ('prz003', 0.0021660244356145435) + +[fips7205701691] +centroid = (0.31384482684094001, -1.1533940992095399) +description = Algarrobo barrio, PR +station = ('tjig', 0.0081724018746349211) +zone = ('prz003', 0.00077923271400531834) + +[fips7205710549] +centroid = (0.31415874176020375, -1.1536789194901729) +description = Caimital barrio, PR +station = ('tjig', 0.0078545204614516705) +zone = ('prz003', 0.0006164700095137144) + +[fips7205714075] +centroid = (0.31559218067486666, -1.1535335335634818) +description = Carite barrio, PR +station = ('tjig', 0.0064222365692167774) +zone = ('prz003', 0.0010223257685288158) + +[fips7205714161] +centroid = (0.31479027169674534, -1.1547545135482995) +description = Carmen barrio, PR +station = ('tjps', 0.0067154057392807007) +zone = ('prz003', 0.0014544710664374221) + +[fips7205730845] +centroid = (0.31478438993716618, -1.1537700082238345) +description = Guamaní barrio, PR +station = ('tjig', 0.0072295762913587597) +zone = ('prz003', 0.00053634045330926865) + +[fips7205732264] +centroid = (0.31375263854984969, -1.1539105770417901) +description = Guayama barrio-pueblo, PR +station = ('tjps', 0.0075428843085390881) +zone = ('prz003', 0.0010700298710798097) + +[fips7205738714] +centroid = (0.31332817447576466, -1.1550724427248427) +description = Jobos barrio, PR +station = ('tjps', 0.0065034981545174673) +zone = ('prz003', 0.0021656929218895333) + +[fips7205748217] +centroid = (0.3133570073150076, -1.1540424366667785) +description = Machete barrio, PR +station = ('tjps', 0.0074660902126908041) +zone = ('prz003', 0.0014683540965256456) + +[fips7205758494] +centroid = (0.31434638210808563, -1.1542492930897246) +description = Palmas barrio, PR +station = ('tjps', 0.0071884760672948451) +zone = ('prz003', 0.00099818127887525828) + +[fips7205764256] +centroid = (0.3141344118704309, -1.1548495467260704) +description = Pozo Hondo barrio, PR +station = ('tjps', 0.0066246532308279985) +zone = ('prz003', 0.0016056450627079434) + +[fips72059] +centroid = (0.31425112203751177, -1.1658512645726018) +description = Guayanilla Municipio, PR +station = ('tjps', 0.003850751087931785) +zone = ('prz007', 0.002562077347831036) + +[fips7205900000] +centroid = (0.31299984313687945, -1.1660650499526788) +description = Municipio subdivision not defined, PR +station = ('tjps', 0.0043015996398118126) +zone = ('prz007', 0.0033587585892741341) + +[fips7205905905] +centroid = (0.31540551771136582, -1.1653784374249441) +description = Barrero barrio, PR +station = ('tjps', 0.0035271577666193808) +zone = ('prz007', 0.0019909657085102729) + +[fips7205907840] +centroid = (0.31362648615151556, -1.1661175843631637) +description = Boca barrio, PR +station = ('tjps', 0.0041812199849809578) +zone = ('prz007', 0.0030503813437304517) + +[fips7205915795] +centroid = (0.31460231718959808, -1.1649754409006585) +description = Cedro barrio, PR +station = ('tjps', 0.0030163665874273953) +zone = ('prz007', 0.0016607788663232234) + +[fips7205920052] +centroid = (0.31510732820866266, -1.1661248972927296) +description = Consejo barrio, PR +station = ('tjps', 0.0041575239625672444) +zone = ('prz007', 0.0026771975681847272) + +[fips7205932350] +centroid = (0.31455795092001243, -1.1657255834131657) +description = Guayanilla barrio-pueblo, PR +station = ('tjps', 0.0037274547783434412) +zone = ('prz007', 0.0023608098207533201) + +[fips7205936220] +centroid = (0.31430613481553465, -1.1660574926770175) +description = Indios barrio, PR +station = ('tjps', 0.0040442553513077443) +zone = ('prz007', 0.0027313550639401661) + +[fips7205937252] +centroid = (0.31609022783021573, -1.1654612532979511) +description = Jagua Pasto barrio, PR +station = ('tjps', 0.0038413776512852839) +zone = ('prz007', 0.0022729327194158659) + +[fips7205937381] +centroid = (0.31486750251614609, -1.1657359157623375) +description = Jaguas barrio, PR +station = ('tjps', 0.0037587747482201563) +zone = ('prz007', 0.0023191313688672353) + +[fips7205945852] +centroid = (0.31516438302191035, -1.1658458016920432) +description = Llano barrio, PR +station = ('tjps', 0.0039056985287208267) +zone = ('prz007', 0.00241267025866228) + +[fips7205948088] +centroid = (0.31504421710291053, -1.1654801028538728) +description = Macaná barrio, PR +station = ('tjps', 0.0035423481115187819) +zone = ('prz007', 0.0020649148588786771) + +[fips7205948518] +centroid = (0.31462689142546618, -1.165461811803312) +description = Magas barrio, PR +station = ('tjps', 0.003479514687424805) +zone = ('prz007', 0.0021008734627494209) + +[fips7205960128] +centroid = (0.31614232590838776, -1.1657758314423305) +description = Pasto barrio, PR +station = ('tjps', 0.0041348214980328193) +zone = ('prz009', 0.0023573662573322177) + +[fips7205962708] +centroid = (0.31426735359955532, -1.1653388009976313) +description = Playa barrio, PR +station = ('tjps', 0.0033632152653937119) +zone = ('prz007', 0.0021020050434705879) + +[fips7205967438] +centroid = (0.31559727703628249, -1.1655282215813503) +description = Quebrada Honda barrio, PR +station = ('tjps', 0.0037189537362742149) +zone = ('prz007', 0.0021675353698646753) + +[fips7205967696] +centroid = (0.31480905143949683, -1.1660657480843795) +description = Quebradas barrio, PR +station = ('tjps', 0.0040650839413204796) +zone = ('prz007', 0.0026371764180618401) + +[fips7205972813] +centroid = (0.31418291457034386, -1.1656490332721734) +description = Rufina barrio, PR +station = ('tjps', 0.0036630843054279703) +zone = ('prz007', 0.0024066694668638572) + +[fips7205980209] +centroid = (0.31551788200860931, -1.1658381571499195) +description = Sierra Baja barrio, PR +station = ('tjps', 0.0039783086112153785) +zone = ('prz007', 0.002440448168020535) + +[fips72061] +centroid = (0.32016942881126942, -1.1539079590479122) +description = Guaynabo Municipio, PR +station = ('tjig', 0.0018584548686599693) +zone = ('prz001', 0.00053487710793143409) + +[fips7206111280] +centroid = (0.32003753427969622, -1.1538623535945574) +description = Camarones barrio, PR +station = ('tjig', 0.0019847812496444923) +zone = ('prz001', 0.00063651248521507569) + +[fips7206129469] +centroid = (0.32063550153472203, -1.1538189647093531) +description = Frailes barrio, PR +station = ('tjig', 0.0013857069346996152) +zone = ('prz001', 0.00017983626228769509) + +[fips7206131490] +centroid = (0.3196634404078238, -1.1542522950560381) +description = Guaraguao barrio, PR +station = ('tjig', 0.0024155143030546939) +zone = ('prz001', 0.001136803060636663) + +[fips7206132565] +centroid = (0.32043932652679785, -1.1538792483817168) +description = Guaynabo barrio-pueblo, PR +station = ('tjig', 0.0015872836455468706) +zone = ('prz001', 0.00030702082196235373) + +[fips7206133726] +centroid = (0.3193034487963074, -1.1536561603967268) +description = Hato Nuevo barrio, PR +station = ('tjig', 0.0027098051644192829) +zone = ('prz001', 0.001331229124155131) + +[fips7206149593] +centroid = (0.31965593549204019, -1.1539414344629653) +description = Mamey barrio, PR +station = ('tjig', 0.0023721121551007179) +zone = ('prz001', 0.0010223236892047663) + +[fips7206165073] +centroid = (0.3213794830349696, -1.1538998432668903) +description = Pueblo Viejo barrio, PR +station = ('tjig', 0.00067253202497037222) +zone = ('prz001', 0.00078798209303667223) + +[fips7206169717] +centroid = (0.31976784600367808, -1.1535360817441898) +description = Río barrio, PR +station = ('tjig', 0.0022486102669878067) +zone = ('prz001', 0.00087111296585953629) + +[fips7206179048] +centroid = (0.32028678475017353, -1.1541335428537325) +description = Santa Rosa barrio, PR +station = ('tjig', 0.0017833479617609138) +zone = ('prz001', 0.00059138388746279229) + +[fips7206180510] +centroid = (0.31920019511775943, -1.154109195510667) +description = Sonadora barrio, PR +station = ('tjig', 0.0028447972772597729) +zone = ('prz001', 0.0015047993536414005) + +[fips72063] +centroid = (0.31891671874065047, -1.1515887829911546) +description = Gurabo Municipio, PR +station = ('tjsj', 0.0031121865365046305) +zone = ('prz004', 0.0018671119112577857) + +[fips7206316483] +centroid = (0.31891671874065047, -1.1515887829911546) +description = Celada barrio, PR +station = ('tjsj', 0.0031121865365046305) +zone = ('prz004', 0.0018671119112577857) + +[fips7206332866] +centroid = (0.31861994295464141, -1.1514441301027492) +description = Gurabo barrio-pueblo, PR +station = ('tjsj', 0.0034228950408616483) +zone = ('prz004', 0.0017476034673772497) + +[fips7206333769] +centroid = (0.3188504834955373, -1.1510294922323532) +description = Hato Nuevo barrio, PR +station = ('tjsj', 0.0032730852661429447) +zone = ('prz004', 0.0021972189914909544) + +[fips7206337295] +centroid = (0.31840118338619644, -1.1513978439709864) +description = Jaguar barrio, PR +station = ('tjsj', 0.0036455602480304772) +zone = ('prz004', 0.0016474264185919118) + +[fips7206337424] +centroid = (0.31922688120202242, -1.1520975813746959) +description = Jaguas barrio, PR +station = ('tjsj', 0.0027916134211464607) +zone = ('prz004', 0.0018925248041570719) + +[fips7206349636] +centroid = (0.31841146337549064, -1.1511240890778112) +description = Mamey barrio, PR +station = ('tjsj', 0.0036796328812420415) +zone = ('prz004', 0.001872416164876329) + +[fips7206351786] +centroid = (0.31928362185600473, -1.1512600502265415) +description = Masa barrio, PR +station = ('tjsj', 0.0027999866635334109) +zone = ('prz004', 0.002348708901018006) + +[fips7206356473] +centroid = (0.31811568242715521, -1.1519026979104183) +description = Navarro barrio, PR +station = ('tjsj', 0.0038975892324196646) +zone = ('prz004', 0.0010912730144753964) + +[fips7206367524] +centroid = (0.31937654318538095, -1.1518318549960798) +description = Quebrada Infierno barrio, PR +station = ('tjsj', 0.0026379505904679181) +zone = ('prz001', 0.0021198969816931638) + +[fips7206369545] +centroid = (0.31851122639553464, -1.1517426512180104) +description = Rincón barrio, PR +station = ('tjsj', 0.0035059420098621456) +zone = ('prz004', 0.0014667931778699821) + +[fips7206421] +centroid = (0.3204774096110764, -1.1491486207106487) +description = Bartolo comunidad, PR +station = ('tjsj', 0.0030430534596099694) +zone = ('prz002', 0.0016739899146928289) + +[fips72065] +centroid = (0.32185862827451961, -1.1658486989386014) +description = Hatillo Municipio, PR +station = ('tjbq', 0.0056420125777904891) +zone = ('prz008', 0.0023664182582071257) + +[fips7206500000] +centroid = (0.32319898878017372, -1.1658933095542823) +description = Municipio subdivision not defined, PR +station = ('tjbq', 0.0055130525998572013) +zone = ('prz008', 0.0027329572115417471) + +[fips7206501347] +centroid = (0.32025454851888918, -1.1654495072320854) +description = Aibonito barrio, PR +station = ('tjbq', 0.0064856941391799464) +zone = ('prz009', 0.0022788291732814586) + +[fips7206507066] +centroid = (0.32031381990028696, -1.1659971740980688) +description = Bayaney barrio, PR +station = ('tjbq', 0.005988739943828242) +zone = ('prz009', 0.0021072214631353827) + +[fips7206509216] +centroid = (0.32126663004553568, -1.166037159591232) +description = Buena Vista barrio, PR +station = ('tjbq', 0.0056083316514709113) +zone = ('prz008', 0.0022399156521393693) + +[fips7206511624] +centroid = (0.32140081095842898, -1.1655370180407802) +description = Campo Alegre barrio, PR +station = ('tjbq', 0.0060295279137864196) +zone = ('prz008', 0.0026838040861574502) + +[fips7206513688] +centroid = (0.3222057568094488, -1.1660967800384798) +description = Capáez barrio, PR +station = ('tjbq', 0.0053554585522657449) +zone = ('prz008', 0.0021756040008789586) + +[fips7206514677] +centroid = (0.3225440888849479, -1.1656841667500157) +description = Carrizales barrio, PR +station = ('tjbq', 0.0057133398431817957) +zone = ('prz008', 0.0026401710863898065) + +[fips7206520525] +centroid = (0.32196556459778936, -1.1655312410009562) +description = Corcovado barrio, PR +station = ('tjbq', 0.0059206715143531171) +zone = ('prz008', 0.0026735075466790092) + +[fips7206533339] +centroid = (0.32255382782217401, -1.1661189108133954) +description = Hatillo barrio, PR +station = ('tjbq', 0.005301206750172688) +zone = ('prz008', 0.0022533463217181272) + +[fips7206533382] +centroid = (0.32260459945011455, -1.1663181750540954) +description = Hatillo barrio-pueblo, PR +station = ('tjbq', 0.0051095243329809048) +zone = ('prz008', 0.0020976209697860771) + +[fips7206556086] +centroid = (0.3218928192745662, -1.166057178517752) +description = Naranjito barrio, PR +station = ('tjbq', 0.0054413230810216734) +zone = ('prz008', 0.0021707047768568907) + +[fips7206593] +centroid = (0.32079247644764636, -1.1547666086800157) +description = Bayamón zona urbana, PR +station = ('tjig', 0.0016085445699896325) +zone = ('prz001', 0.0010906636121294751) + +[fips7206679] +centroid = (0.31726832507531189, -1.1538323862913007) +description = Bayamón comunidad, PR +station = ('tjig', 0.0047476577478289947) +zone = ('prz004', 0.00097717451436827229) + +[fips72067] +centroid = (0.31650926393032708, -1.1713979383887323) +description = Hormigueros Municipio, PR +station = ('tjmz', 0.0023715465115946707) +zone = ('prz010', 0.0020714774385391988) + +[fips7206707453] +centroid = (0.31618995594367472, -1.1711959688876916) +description = Benavente barrio, PR +station = ('tjmz', 0.0027294469226747998) +zone = ('prz011', 0.0018600961150140791) + +[fips7206731060] +centroid = (0.31671390378512343, -1.1717588375714598) +description = Guanajibo barrio, PR +station = ('tjmz', 0.0021108862300171522) +zone = ('prz010', 0.0017570222756381388) + +[fips7206735075] +centroid = (0.31655771427036244, -1.1714686242234382) +description = Hormigueros barrio, PR +station = ('tjmz', 0.0023092098945299623) +zone = ('prz010', 0.0019998344481442607) + +[fips7206735102] +centroid = (0.31659963707899536, -1.1715705689050471) +description = Hormigueros barrio-pueblo, PR +station = ('tjmz', 0.0022491725130839978) +zone = ('prz010', 0.0019241199866624442) + +[fips7206737768] +centroid = (0.31678987796746272, -1.1712113103318165) +description = Jaguitas barrio, PR +station = ('tjmz', 0.0021540953095480703) +zone = ('prz010', 0.0019108151027550783) + +[fips7206745035] +centroid = (0.31650277130550969, -1.1711304841341568) +description = Lavadero barrio, PR +station = ('tjmz', 0.0024502800874112189) +zone = ('prz011', 0.0021322138443971433) + +[fips72069] +centroid = (0.31652249352605721, -1.1481862985209768) +description = Humacao Municipio, PR +station = ('tjnr', 0.0032291330001026257) +zone = ('prz002', 0.0026324540045919473) + +[fips7206900000] +centroid = (0.31608733058365746, -1.1474650412075902) +description = Municipio subdivision not defined, PR +station = ('tjnr', 0.0030583045238958624) +zone = ('prz002', 0.0031188351969803898) + +[fips7206903239] +centroid = (0.31725659646273857, -1.1481663319543338) +description = Antón Ruíz barrio, PR +station = ('tjnr', 0.0028164363717480359) +zone = ('prz002', 0.0018982348014925157) + +[fips7206909302] +centroid = (0.31620903239239906, -1.1484191079899002) +description = Buena Vista barrio, PR +station = ('tjnr', 0.0035986888163337043) +zone = ('prz002', 0.0029621790866752504) + +[fips7206912570] +centroid = (0.31572667574702534, -1.1485913370804872) +description = Candelero Abajo barrio, PR +station = ('tjnr', 0.0040429364275853799) +zone = ('prz002', 0.0034615115906726666) + +[fips7206912656] +centroid = (0.31600187926347983, -1.149020827702818) +description = Candelero Arriba barrio, PR +station = ('tjnr', 0.0041750585291818179) +zone = ('prz002', 0.0032775382167673423) + +[fips7206915279] +centroid = (0.3163168413802947, -1.1489553953091607) +description = Cataño barrio, PR +station = ('tjnr', 0.0039409910666094415) +zone = ('prz002', 0.0029577482701108123) + +[fips7206919106] +centroid = (0.31720830320233584, -1.148779780279825) +description = Collores barrio, PR +station = ('tjnr', 0.0033658110056739403) +zone = ('prz002', 0.0020577190687967135) + +[fips7206935575] +centroid = (0.3168130559399292, -1.1488511991528165) +description = Humacao barrio-pueblo, PR +station = ('tjnr', 0.003598634371639404) +zone = ('prz002', 0.0024542783439628233) + +[fips7206948002] +centroid = (0.31705598831851434, -1.149079139153127) +description = Mabú barrio, PR +station = ('tjnr', 0.0036872673616746279) +zone = ('prz002', 0.0023051353442706062) + +[fips7206949507] +centroid = (0.31760445803595355, -1.1486028737068428) +description = Mambiche barrio, PR +station = ('tjnr', 0.0030708331361150114) +zone = ('prz002', 0.0016286372630186679) + +[fips7206950883] +centroid = (0.31636119019658787, -1.1493464363280699) +description = Mariana barrio, PR +station = ('tjnr', 0.0042310942367005354) +zone = ('prz002', 0.003043208877879748) + +[fips7206966535] +centroid = (0.31702869136901313, -1.1475635126839876) +description = Punta Santiago barrio, PR +station = ('tjnr', 0.0024511687620779811) +zone = ('prz002', 0.0021778880607322818) + +[fips7206969975] +centroid = (0.31662361790291771, -1.1482027046159455) +description = Río Abajo barrio, PR +station = ('tjnr', 0.0031799467784307286) +zone = ('prz002', 0.0025321456841400991) + +[fips7206981800] +centroid = (0.31674598293677508, -1.1492085902237474) +description = Tejas barrio, PR +station = ('tjnr', 0.0039306166299834929) +zone = ('prz002', 0.0026382785604320324) + +[fips72071] +centroid = (0.32262519433528802, -1.169617423299018) +description = Isabela Municipio, PR +station = ('tjbq', 0.0019900183977871345) +zone = ('prz008', 0.0014901492699672912) + +[fips7207100000] +centroid = (0.32352311387556154, -1.169818869201283) +description = Municipio subdivision not defined, PR +station = ('tjbq', 0.0018920784603562006) +zone = ('prz008', 0.0022550349599746661) + +[fips7207103669] +centroid = (0.32156841492649801, -1.1697918340511697) +description = Arenales Altos barrio, PR +station = ('tjbq', 0.0022369321381050301) +zone = ('prz008', 0.0013893752175555749) + +[fips7207103712] +centroid = (0.32214367544795536, -1.169870897466285) +description = Arenales Bajos barrio, PR +station = ('tjbq', 0.00188490954889898) +zone = ('prz008', 0.0015021352353416712) + +[fips7207104805] +centroid = (0.32308819527925714, -1.1705055515421876) +description = Bajura barrio, PR +station = ('tjbq', 0.0011484634654271649) +zone = ('prz008', 0.0024471112151974801) + +[fips7207107324] +centroid = (0.32282095046419174, -1.1701009144084054) +description = Bejucos barrio, PR +station = ('tjbq', 0.0015156829966792942) +zone = ('prz008', 0.0019798211834960214) + +[fips7207121084] +centroid = (0.32255234429230983, -1.1690428783625537) +description = Coto barrio, PR +station = ('tjbq', 0.0025397750142096046) +zone = ('prz008', 0.0010375500251252076) + +[fips7207129899] +centroid = (0.32123839061823839, -1.1692934203766776) +description = Galateo Alto barrio, PR +station = ('tjbq', 0.0028134971845109966) +zone = ('prz008', 0.0010418295071866381) + +[fips7207129985] +centroid = (0.32223387406369841, -1.1693617849234781) +description = Galateo Bajo barrio, PR +station = ('tjbq', 0.0023094086299846649) +zone = ('prz008', 0.0010796418444010338) + +[fips7207132092] +centroid = (0.32282299249941654, -1.1693126364517421) +description = Guayabos barrio, PR +station = ('tjbq', 0.0022627151698707726) +zone = ('prz008', 0.0014094796180325053) + +[fips7207132737] +centroid = (0.32243226563977262, -1.1702087408495936) +description = Guerrero barrio, PR +station = ('tjbq', 0.0014832046659651887) +zone = ('prz008', 0.0018962567789221234) + +[fips7207136521] +centroid = (0.32289886196200074, -1.1697715707785541) +description = Isabela barrio-pueblo, PR +station = ('tjbq', 0.001826640098101165) +zone = ('prz008', 0.0017737292983256788) + +[fips7207138757] +centroid = (0.32283679805379983, -1.170517245248176) +description = Jobos barrio, PR +station = ('tjbq', 0.0011205434732938992) +zone = ('prz008', 0.0023298287164493004) + +[fips7207145809] +centroid = (0.32186536524543236, -1.1689074757191842) +description = Llanadas barrio, PR +station = ('tjbq', 0.0028364467743458846) +zone = ('prz008', 0.00054841008155764664) + +[fips7207154925] +centroid = (0.32262519433528802, -1.169617423299018) +description = Mora barrio, PR +station = ('tjbq', 0.0019900183977871345) +zone = ('prz008', 0.0014901492699672912) + +[fips7207162407] +centroid = (0.32108689603916529, -1.1686091291368483) +description = Planas barrio, PR +station = ('tjbq', 0.0034380911833402183) +zone = ('prz008', 0.00071652192569697569) + +[fips72073] +centroid = (0.31784360305006176, -1.1621603993501171) +description = Jayuya Municipio, PR +station = ('tjps', 0.0034099846830346675) +zone = ('prz006', 0.0029460421379749083) + +[fips7207318676] +centroid = (0.31789634690005708, -1.1617285001734183) +description = Coabey barrio, PR +station = ('tjps', 0.0034470112929386627) +zone = ('prz006', 0.002535644391347749) + +[fips7207319192] +centroid = (0.31749998262692913, -1.162849682231607) +description = Collores barrio, PR +station = ('tjps', 0.0032066665324235141) +zone = ('prz007', 0.0024393740494292578) + +[fips7207338198] +centroid = (0.31712122872595383, -1.1628676765761952) +description = Jauca barrio, PR +station = ('tjps', 0.0028548553007868151) +zone = ('prz007', 0.0020643096195936722) + +[fips7207338413] +centroid = (0.31799604010693094, -1.1622595340516304) +description = Jayuya barrio-pueblo, PR +station = ('tjps', 0.0035718175546215962) +zone = ('prz006', 0.0030422843409801774) + +[fips7207338542] +centroid = (0.31823919937831879, -1.1626290551608625) +description = Jayuya Abajo barrio, PR +station = ('tjps', 0.0038686548253300825) +zone = ('prz007', 0.0032050217886091348) + +[fips7207349937] +centroid = (0.31874112116460734, -1.1619980488230965) +description = Mameyes Arriba barrio, PR +station = ('tjps', 0.004294786430697058) +zone = ('prz005', 0.0027780701902297366) + +[fips7207361461] +centroid = (0.31702343792796461, -1.163172637956396) +description = Pica barrio, PR +station = ('tjps', 0.002881959323926439) +zone = ('prz007', 0.0019278063407364718) + +[fips7207371007] +centroid = (0.31817697839048525, -1.1618953361966164) +description = Río Grande barrio, PR +station = ('tjps', 0.0037277595220267484) +zone = ('prz006', 0.0027105926634563666) + +[fips7207374748] +centroid = (0.3173031269405967, -1.161562257562166) +description = Saliente barrio, PR +station = ('tjps', 0.00286248129896619) +zone = ('prz006', 0.0024461130643997266) + +[fips7207385670] +centroid = (0.31757843517680628, -1.1621673283072473) +description = Veguitas barrio, PR +station = ('tjps', 0.0031469212192268589) +zone = ('prz007', 0.0027055628093537736) + +[fips7207388465] +centroid = (0.31743109448135293, -1.1624850829508655) +description = Zamas barrio, PR +station = ('tjps', 0.0030497207287630435) +zone = ('prz007', 0.0024591236259907281) + +[fips7207496] +centroid = (0.318915863529317, -1.1498025083149086) +description = Benítez comunidad, PR +station = ('tjsj', 0.0036908479205500009) +zone = ('prz002', 0.0016614732674642028) + +[fips72075] +centroid = (0.31412741310013043, -1.1604951283509115) +description = Juana Díaz Municipio, PR +station = ('tjps', 0.0012891452814263406) +zone = ('prz007', 0.0028470942271477985) + +[fips7207500000] +centroid = (0.31231384147438312, -1.1602924432648776) +description = Municipio subdivision not defined, PR +station = ('tjps', 0.002577032537363755) +zone = ('prz007', 0.0039995174939363191) + +[fips7207502551] +centroid = (0.31478531496166967, -1.1607031366911642) +description = Amuelas barrio, PR +station = ('tjps', 0.0011023475870725412) +zone = ('prz007', 0.0024976613970813812) + +[fips7207510979] +centroid = (0.31526747962082563, -1.1613462381606467) +description = Callabo barrio, PR +station = ('tjps', 0.00092756901713996517) +zone = ('prz007', 0.0018736424074891444) + +[fips7207513903] +centroid = (0.31384859675212429, -1.161038205000962) +description = Capitanejo barrio, PR +station = ('tjps', 0.00094719747693367061) +zone = ('prz007', 0.0024958854862200059) + +[fips7207518504] +centroid = (0.31435823289370662, -1.1606824196329433) +description = Cintrona barrio, PR +station = ('tjps', 0.0010738762715758346) +zone = ('prz007', 0.0026054503980743921) + +[fips7207519278] +centroid = (0.31622193037557128, -1.1613615621514792) +description = Collores barrio, PR +station = ('tjps', 0.0018217932522909834) +zone = ('prz007', 0.0021647139457349742) + +[fips7207526588] +centroid = (0.31544847026425743, -1.1595935087126239) +description = Emajagual barrio, PR +station = ('tjps', 0.00232981967649471) +zone = ('prz006', 0.0024808617550096013) + +[fips7207531920] +centroid = (0.31553620796575521, -1.1603779818515179) +description = Guayabal barrio, PR +station = ('tjps', 0.0017398011954090175) +zone = ('prz006', 0.0026549874509169112) + +[fips7207536994] +centroid = (0.31528760326710115, -1.1611256634497797) +description = Jacaguas barrio, PR +station = ('tjps', 0.0010590757833193519) +zone = ('prz007', 0.0020843044156685087) + +[fips7207539015] +centroid = (0.31505498578439534, -1.1607581320158946) +description = Juana Díaz barrio-pueblo, PR +station = ('tjps', 0.0011668197731725218) +zone = ('prz007', 0.0024257792619564399) + +[fips7207546712] +centroid = (0.31520435106178096, -1.1607594584661263) +description = Lomas barrio, PR +station = ('tjps', 0.0012497585473846408) +zone = ('prz007', 0.0024262865702429871) + +[fips7207570749] +centroid = (0.31401113926536256, -1.1600741898419156) +description = Río Cañas Abajo barrio, PR +station = ('tjps', 0.0017059006993226235) +zone = ('prz007', 0.0032631821340766052) + +[fips7207570835] +centroid = (0.31497785968474967, -1.1596249944523298) +description = Río Cañas Arriba barrio, PR +station = ('tjps', 0.0021413578235284806) +zone = ('prz006', 0.0029484036419381039) + +[fips7207573845] +centroid = (0.31464626458016326, -1.1611124687606345) +description = Sabana Llana barrio, PR +station = ('tjps', 0.00068941665562209957) +zone = ('prz007', 0.0021373238959880025) + +[fips7207582316] +centroid = (0.31486718835688077, -1.1603136839218742) +description = Tijeras barrio, PR +station = ('tjps', 0.0014804308658434983) +zone = ('prz007', 0.0028575172695715335) + +[fips7207668] +centroid = (0.31467534176550149, -1.1717014162390691) +description = Betances comunidad, PR +station = ('tjmz', 0.0041471230906086013) +zone = ('prz011', 0.0012143000352251487) + +[fips72077] +centroid = (0.31807112417135175, -1.1503210630889684) +description = Juncos Municipio, PR +station = ('tjsj', 0.0042232839506987216) +zone = ('prz002', 0.0023952709975306029) + +[fips7207710678] +centroid = (0.31839734366184202, -1.149591916887363) +description = Caimito barrio, PR +station = ('tjnr', 0.003871323910318831) +zone = ('prz002', 0.0016302053260625247) + +[fips7207716311] +centroid = (0.31805792948220668, -1.1500584783030059) +description = Ceiba Norte barrio, PR +station = ('tjsj', 0.0043310271053290219) +zone = ('prz002', 0.0021822775883429172) + +[fips7207716354] +centroid = (0.31772780045419197, -1.1503619387000501) +description = Ceiba Sur barrio, PR +station = ('tjsj', 0.0045326615975049443) +zone = ('prz004', 0.0023544857447015703) + +[fips7207732952] +centroid = (0.31859807397911394, -1.1503319713967934) +description = Gurabo Abajo barrio, PR +station = ('tjsj', 0.0037319614850214026) +zone = ('prz002', 0.0022178283856598481) + +[fips7207732995] +centroid = (0.31845089036329322, -1.1498547634727132) +description = Gurabo Arriba barrio, PR +station = ('tjsj', 0.0040648397164370423) +zone = ('prz002', 0.0018338464436916996) + +[fips7207739617] +centroid = (0.31816085154819679, -1.150550818231701) +description = Juncos barrio-pueblo, PR +station = ('tjsj', 0.0040648946108673136) +zone = ('prz004', 0.0022695123676366282) + +[fips7207745723] +centroid = (0.31786248751256835, -1.1508449934771248) +description = Lirios barrio, PR +station = ('tjsj', 0.004273747675068394) +zone = ('prz004', 0.001922385754471013) + +[fips7207749679] +centroid = (0.31829381073061375, -1.150808847708316) +description = Mamey barrio, PR +station = ('tjsj', 0.0038653837674398764) +zone = ('prz004', 0.002086717837484018) + +[fips7207784810] +centroid = (0.31751680760091838, -1.15056958052116) +description = Valenciano Abajo barrio, PR +station = ('tjsj', 0.0046749171098982743) +zone = ('prz004', 0.0021432093182758524) + +[fips7207784853] +centroid = (0.31702694603976111, -1.150578202447665) +description = Valenciano Arriba barrio, PR +station = ('tjnr', 0.0050343734868179002) +zone = ('prz004', 0.0021790305819641849) + +[fips72079] +centroid = (0.31378421155601827, -1.1700706678524682) +description = Lajas Municipio, PR +station = ('tjmz', 0.0053493957855403011) +zone = ('prz011', 0.00077452747551583711) + +[fips7207900000] +centroid = (0.31276104718862163, -1.1702704556919441) +description = Municipio subdivision not defined, PR +station = ('tjmz', 0.0062689046434348805) +zone = ('prz011', 0.0017201555099935826) + +[fips7207912398] +centroid = (0.31507964728672605, -1.1707226705011358) +description = Candelaria barrio, PR +station = ('tjmz', 0.0039228016164987063) +zone = ('prz011', 0.00066227910692724364) + +[fips7207921041] +centroid = (0.31388599915799453, -1.1693907922956466) +description = Costa barrio, PR +station = ('tjmz', 0.0055113917796343337) +zone = ('prz011', 0.0011597459214040858) + +[fips7207940993] +centroid = (0.31509059050113597, -1.1703238976736401) +description = Lajas barrio, PR +station = ('tjmz', 0.0040449837859098626) +zone = ('prz011', 0.00062733899795388746) + +[fips7207941036] +centroid = (0.31501884001558655, -1.1704112514027023) +description = Lajas barrio-pueblo, PR +station = ('tjmz', 0.0040799067589759345) +zone = ('prz011', 0.00054621031318541032) + +[fips7207941165] +centroid = (0.31489312394956537, -1.1696034432117093) +description = Lajas Arriba barrio, PR +station = ('tjmz', 0.0045283338828421968) +zone = ('prz011', 0.00090128304362705597) + +[fips7207945981] +centroid = (0.31413931624562902, -1.1710596761264034) +description = Llanos barrio, PR +station = ('tjmz', 0.0047567933338221674) +zone = ('prz011', 0.00067559520758117325) + +[fips7207958193] +centroid = (0.31406615204338545, -1.1707110815149024) +description = Palmarejo barrio, PR +station = ('tjmz', 0.0049001104619385196) +zone = ('prz011', 0.00048087906550978344) + +[fips7207959526] +centroid = (0.31373940895411956, -1.1701022757652217) +description = Parguera barrio, PR +station = ('tjmz', 0.0053814615079794811) +zone = ('prz011', 0.00080206996973632432) + +[fips7207959569] +centroid = (0.31503306444899026, -1.1711347427375316) +description = París barrio, PR +station = ('tjmz', 0.0038664929246720017) +zone = ('prz011', 0.0008641797017325813) + +[fips7207962579] +centroid = (0.31451077467033101, -1.1691243328787444) +description = Plata barrio, PR +station = ('tjmz', 0.0050913349885804175) +zone = ('prz011', 0.0012538164025830375) + +[fips7207969] +centroid = (0.3147539863015964, -1.1723657409122559) +description = Boquerón comunidad, PR +station = ('tjmz', 0.0040752791076972082) +zone = ('prz011', 0.0018504886165245269) + +[fips7207974318] +centroid = (0.31447799738697851, -1.1703683512096885) +description = Sabana Yeguas barrio, PR +station = ('tjmz', 0.0046007636270860427) +zone = ('prz011', 7.0405280741943677e-05) + +[fips7207979091] +centroid = (0.31505709763279027, -1.1700618015798681) +description = Santa Rosa barrio, PR +station = ('tjmz', 0.0041787925384268211) +zone = ('prz011', 0.000686679669434073) + +[fips7208099] +centroid = (0.31768559839287874, -1.1492455737505971) +description = Boquerón comunidad, PR +station = ('tjnr', 0.0036383654689148433) +zone = ('prz002', 0.0018432308285244851) + +[fips72081] +centroid = (0.31888734484933945, -1.1670384026232234) +description = Lares Municipio, PR +station = ('tjmz', 0.004701262640550573) +zone = ('prz009', 0.00064070788533227181) + +[fips7208106378] +centroid = (0.31757566010329558, -1.1667532507300324) +description = Bartolo barrio, PR +station = ('tjmz', 0.0051242859764471516) +zone = ('prz009', 0.00074683672576102177) + +[fips7208109517] +centroid = (0.31877042524274835, -1.1666643960178134) +description = Buenos Aires barrio, PR +station = ('tjmz', 0.0050561183482899603) +zone = ('prz009', 0.00045178073877619272) + +[fips7208111022] +centroid = (0.31987041900381774, -1.1667321671526683) +description = Callejones barrio, PR +station = ('tjmz', 0.0051013653592245876) +zone = ('prz009', 0.0015485784625464292) + +[fips7208127319] +centroid = (0.31896539597348861, -1.1676202081293756) +description = Espino barrio, PR +station = ('tjmz', 0.0041509295268578822) +zone = ('prz009', 0.0010691261040898291) + +[fips7208142541] +centroid = (0.31929568208113607, -1.1666486880545457) +description = Lares barrio, PR +station = ('tjmz', 0.0050932894765781432) +zone = ('prz009', 0.00097623716774397271) + +[fips7208142584] +centroid = (0.31932557957122271, -1.1673007779696756) +description = Lares barrio-pueblo, PR +station = ('tjmz', 0.004480570873328254) +zone = ('prz009', 0.0011447009165891048) + +[fips7208144777] +centroid = (0.31856784487646939, -1.1671779766035053) +description = La Torre barrio, PR +station = ('tjmz', 0.004574982973475617) +zone = ('prz009', 0.00049870060259737232) + +[fips7208153721] +centroid = (0.31841963151639002, -1.1667597608081424) +description = Mirasol barrio, PR +station = ('tjmz', 0.0049812567832932027) +zone = ('prz009', 0.00010439454701414938) + +[fips7208161418] +centroid = (0.31841451770168167, -1.1676291267618535) +description = Pezuela barrio, PR +station = ('tjmz', 0.004159234377956204) +zone = ('prz009', 0.00086727375762980774) + +[fips7208161848] +centroid = (0.32000332582635715, -1.1673159099742907) +description = Piletas barrio, PR +station = ('tjmz', 0.0045931349952470623) +zone = ('prz009', 0.0017737377725322346) + +[fips7208164600] +centroid = (0.3194376297092007, -1.1675545313896232) +description = Pueblo barrio, PR +station = ('tjmz', 0.0042561990807660393) +zone = ('prz009', 0.0013678860448107422) + +[fips7208171609] +centroid = (0.31785746096432266, -1.167429687988228) +description = Río Prieto barrio, PR +station = ('tjmz', 0.0044341407872475168) +zone = ('prz009', 0.00081765020749358433) + +[fips72083] +centroid = (0.31813153001676331, -1.1689792960179037) +description = Las Marías Municipio, PR +station = ('tjmz', 0.0029382075449375252) +zone = ('prz009', 0.0021531613766198137) + +[fips7208302379] +centroid = (0.31886107764409688, -1.1696442315563285) +description = Alto Sano barrio, PR +station = ('tjmz', 0.0022267153935239142) +zone = ('prz010', 0.0025728600791362507) + +[fips7208303110] +centroid = (0.31878368974506349, -1.1701299741404509) +description = Anones barrio, PR +station = ('tjmz', 0.0017652190357879962) +zone = ('prz010', 0.0021052312422188339) + +[fips7208308829] +centroid = (0.31778234199331679, -1.1684196387399592) +description = Bucarabones barrio, PR +station = ('tjmz', 0.0035430481899595676) +zone = ('prz009', 0.0017010950746754671) + +[fips7208309345] +centroid = (0.31851450761452843, -1.1687023995320747) +description = Buena Vista barrio, PR +station = ('tjmz', 0.0031350370627338995) +zone = ('prz009', 0.0018914533230783661) + +[fips7208317386] +centroid = (0.31786676356923571, -1.1680387555372966) +description = Cerrote barrio, PR +station = ('tjmz', 0.0038689964651801418) +zone = ('prz009', 0.0013316530955560953) + +[fips7208317472] +centroid = (0.31807035622648089, -1.1678967555493542) +description = Chamorro barrio, PR +station = ('tjmz', 0.0039565306261808257) +zone = ('prz009', 0.001144533186137613) + +[fips7208327362] +centroid = (0.31849344149045683, -1.1678961097775311) +description = Espino barrio, PR +station = ('tjmz', 0.003899614002461417) +zone = ('prz009', 0.0011289757071020407) + +[fips7208329770] +centroid = (0.31848963667268748, -1.1695877876083189) +description = Furnias barrio, PR +station = ('tjmz', 0.002302829491640727) +zone = ('prz010', 0.0025852977232670642) + +[fips7208343831] +centroid = (0.31856262634200588, -1.169210150718065) +description = Las Marías barrio-pueblo, PR +station = ('tjmz', 0.0026504373923664989) +zone = ('prz009', 0.0023760556246560376) + +[fips7208350539] +centroid = (0.31872066590577397, -1.1690445364253432) +description = Maravilla Este barrio, PR +station = ('tjmz', 0.0027972821993902369) +zone = ('prz009', 0.0022422301344999155) + +[fips7208350582] +centroid = (0.31881496604525922, -1.1692734887166196) +description = Maravilla Norte barrio, PR +station = ('tjmz', 0.0025782841694175743) +zone = ('prz009', 0.0024735263589239177) + +[fips7208350600] +centroid = (0.31817406369063439, -1.1693339818284938) +description = Maravilla Sur barrio, PR +station = ('tjmz', 0.0026009270965138493) +zone = ('prz009', 0.0024859897625972233) + +[fips7208355957] +centroid = (0.31782482330731032, -1.1697030316988282) +description = Naranjales barrio, PR +station = ('tjmz', 0.0023852779136617382) +zone = ('prz010', 0.0025383677353447999) + +[fips7208357892] +centroid = (0.31810372692177902, -1.1687650219456365) +description = Palma Escrita barrio, PR +station = ('tjmz', 0.0031426812842685805) +zone = ('prz009', 0.0019534434584988435) + +[fips7208366621] +centroid = (0.31843635177062413, -1.1684054666664332) +description = Purísima Concepción barrio, PR +station = ('tjmz', 0.0034236109629293974) +zone = ('prz009', 0.0016037235938211039) + +[fips7208370663] +centroid = (0.31820514800461241, -1.170001378281164) +description = Río Cañas barrio, PR +station = ('tjmz', 0.0019828840655749407) +zone = ('prz010', 0.0021986745994819965) + +[fips72085] +centroid = (0.31742653917200525, -1.1496692524265186) +description = Las Piedras Municipio, PR +station = ('tjnr', 0.00409286302058219) +zone = ('prz002', 0.0022988839041499934) + +[fips7208508141] +centroid = (0.31776579627200785, -1.1491526349679284) +description = Boquerón barrio, PR +station = ('tjnr', 0.0035344349788101722) +zone = ('prz002', 0.0017260909359300195) + +[fips7208516096] +centroid = (0.31741535161149992, -1.1500814293826698) +description = Ceiba barrio, PR +station = ('tjnr', 0.0044740706213652354) +zone = ('prz002', 0.0025817963959391182) + +[fips7208519321] +centroid = (0.31743041380294462, -1.149317236969684) +description = Collores barrio, PR +station = ('tjnr', 0.0037706432279282524) +zone = ('prz002', 0.0020899778822330902) + +[fips7208526158] +centroid = (0.31832363840753031, -1.149216025326361) +description = El Río barrio, PR +station = ('tjnr', 0.0035179789535406195) +zone = ('prz002', 0.0013676343695421869) + +[fips7208544433] +centroid = (0.31734819134188319, -1.1495791585305308) +description = Las Piedras barrio-pueblo, PR +station = ('tjnr', 0.0040326406732572101) +zone = ('prz002', 0.0023041284385030098) + +[fips7208554710] +centroid = (0.31686162845301225, -1.1501978777503628) +description = Montones barrio, PR +station = ('tjnr', 0.0047460435718528707) +zone = ('prz004', 0.0025678496623908866) + +[fips7208566793] +centroid = (0.3176263968246511, -1.1497354702183393) +description = Quebrada Arenas barrio, PR +station = ('tjnr', 0.0041051586204265507) +zone = ('prz002', 0.0021976422374701161) + +[fips7208581843] +centroid = (0.31677275628750068, -1.1497946892398596) +description = Tejas barrio, PR +station = ('tjnr', 0.0044237490057097845) +zone = ('prz002', 0.0028889199125880574) + +[fips72087] +centroid = (0.32245025998436067, -1.1502292238637286) +description = Loíza Municipio, PR +station = ('tjsj', 0.0016597641700035204) +zone = ('prz001', 0.0037019164564685444) + +[fips7208700] +centroid = (0.32241989125537596, -1.1577573350730632) +description = Breñas comunidad, PR +station = ('tjig', 0.0039051983054595569) +zone = ('prz005', 0.0034034204142694186) + +[fips7208700000] +centroid = (0.32245025998436067, -1.1502292238637286) +description = Municipio subdivision not defined, PR +station = ('tjsj', 0.0016597641700035204) +zone = ('prz001', 0.0037019164564685444) + +[fips7208713043] +centroid = (0.32098435794561059, -1.1495516870481042) +description = Canóvanas barrio, PR +station = ('tjsj', 0.0024690070750430938) +zone = ('prz002', 0.0023090276647919142) + +[fips7208746411] +centroid = (0.32171711697876787, -1.1497880395354094) +description = Loíza barrio-pueblo, PR +station = ('tjsj', 0.0020415142046613056) +zone = ('prz002', 0.0030386572484500701) + +[fips7208752732] +centroid = (0.32160808626039583, -1.1491303122067953) +description = Medianía Alta barrio, PR +station = ('tjsj', 0.0026747854154847229) +zone = ('prz002', 0.0026534442290273609) + +[fips7208752775] +centroid = (0.32154054201834364, -1.1493991801780652) +description = Medianía Baja barrio, PR +station = ('tjsj', 0.0024352027957322219) +zone = ('prz002', 0.0027003909667075898) + +[fips7208783090] +centroid = (0.32153904103518699, -1.1505395259514406) +description = Torrecilla Alta barrio, PR +station = ('tjsj', 0.0013904290469385183) +zone = ('prz001', 0.0030684050264907195) + +[fips7208783133] +centroid = (0.32193475953649159, -1.1509162029106059) +description = Torrecilla Baja barrio, PR +station = ('tjsj', 0.00095289721010865028) +zone = ('prz001', 0.0028841899694500928) + +[fips72089] +centroid = (0.32058137887461763, -1.1468548915543855) +description = Luquillo Municipio, PR +station = ('tjnr', 0.0024186946038018201) +zone = ('prz002', 0.0018365943935970553) + +[fips7208900000] +centroid = (0.3212056656947635, -1.1465900203871027) +description = Municipio subdivision not defined, PR +station = ('tjnr', 0.0028696615762972577) +zone = ('prz002', 0.0024879371829165673) + +[fips7208939316] +centroid = (0.32029455146534491, -1.1464098151418343) +description = Juan Martín barrio, PR +station = ('tjnr', 0.0019639613459551514) +zone = ('prz002', 0.0019467064994061764) + +[fips7208947830] +centroid = (0.32074095432812755, -1.1469445665713529) +description = Luquillo barrio-pueblo, PR +station = ('tjnr', 0.0025992135802783878) +zone = ('prz002', 0.0019144788446194174) + +[fips7208949980] +centroid = (0.32042279825878145, -1.1476807639031366) +description = Mameyes I barrio, PR +station = ('tjnr', 0.0027978340105672406) +zone = ('prz002', 0.0013229605184766357) + +[fips7208951872] +centroid = (0.32056553128500959, -1.147243663645267) +description = Mata de Plátano barrio, PR +station = ('tjnr', 0.0026188541646284531) +zone = ('prz002', 0.0016163054068830077) + +[fips7208962364] +centroid = (0.32013687842071975, -1.1468007688942812) +description = Pitahaya barrio, PR +station = ('tjnr', 0.0020223259308481639) +zone = ('prz002', 0.0015562640466435199) + +[fips7208973071] +centroid = (0.319696008251666, -1.1473120107387753) +description = Sabana barrio, PR +station = ('tjnr', 0.0020686664549512306) +zone = ('prz002', 0.00090219127242893694) + +[fips7209087] +centroid = (0.31409351880605668, -1.1528233241842603) +description = Buena Vista comunidad, PR +station = ('tjig', 0.007959751525015166) +zone = ('prz003', 0.00064876635416062417) + +[fips72091] +centroid = (0.32200340333597255, -1.1604691054917644) +description = Manatí Municipio, PR +station = ('tjig', 0.0064566355515526634) +zone = ('prz005', 0.00090106128904039989) + +[fips7209100000] +centroid = (0.32299234179673758, -1.1603414172036883) +description = Municipio subdivision not defined, PR +station = ('tjig', 0.0064096775427269891) +zone = ('prz005', 0.0017729800333708141) + +[fips7209104873] +centroid = (0.32133649557549304, -1.1610028446303167) +description = Bajura Adentro barrio, PR +station = ('tjps', 0.0069286308189611392) +zone = ('prz005', 0.00018604181235254663) + +[fips7209104916] +centroid = (0.32176078511665285, -1.1609087888369267) +description = Bajura Afuera barrio, PR +station = ('tjig', 0.0068786248312984752) +zone = ('prz005', 0.00043738492200023969) + +[fips7209121342] +centroid = (0.32173774677052647, -1.1599429061755806) +description = Coto Norte barrio, PR +station = ('tjig', 0.0059641051418392998) +zone = ('prz005', 0.0012217313477549275) + +[fips7209121471] +centroid = (0.32136157595684417, -1.1600476259307002) +description = Coto Sur barrio, PR +station = ('tjig', 0.0060924130755286741) +zone = ('prz005', 0.0010785466265244232) + +[fips7209150195] +centroid = (0.32169416589910421, -1.1604085076601351) +description = Manatí barrio-pueblo, PR +station = ('tjig', 0.0064074246881633407) +zone = ('prz005', 0.00078828949691768665) + +[fips7209170319] +centroid = (0.32082577732977441, -1.1609010221217555) +description = Río Arriba Poniente barrio, PR +station = ('tjps', 0.0064335163215546503) +zone = ('prz005', 0.00064210170012982072) + +[fips7209170362] +centroid = (0.3208536327846363, -1.1601007188465458) +description = Río Arriba Saliente barrio, PR +station = ('tjig', 0.0062174427574318404) +zone = ('prz005', 0.0011678936196467412) + +[fips7209182230] +centroid = (0.32224195493813518, -1.1609113719242197) +description = Tierras Nuevas Poniente barrio, PR +station = ('tjig', 0.0068796914354704039) +zone = ('prz005', 0.00087162856613184328) + +[fips7209182273] +centroid = (0.32211498223505258, -1.1602043215909443) +description = Tierras Nuevas Saliente barrio, PR +station = ('tjig', 0.0062061721114260266) +zone = ('prz005', 0.001166352789365545) + +[fips7209250] +centroid = (0.31617183942603899, -1.1484101893574226) +description = Buena Vista comunidad, PR +station = ('tjnr', 0.0036162815590911378) +zone = ('prz002', 0.0029982186974768072) + +[fips72093] +centroid = (0.31719537031257861, -1.1682456817734128) +description = Maricao Municipio, PR +station = ('tjmz', 0.0039061538973071486) +zone = ('prz009', 0.0018347264215857599) + +[fips7209308872] +centroid = (0.31748818420118569, -1.1682385084701872) +description = Bucarabones barrio, PR +station = ('tjmz', 0.0038004529898696851) +zone = ('prz009', 0.0016650400558686179) + +[fips7209336091] +centroid = (0.31701031305198962, -1.1671498942558409) +description = Indiera Alta barrio, PR +station = ('tjmz', 0.004937280447495365) +zone = ('prz009', 0.001373336685163597) + +[fips7209336134] +centroid = (0.31707653084381027, -1.1677229033025629) +description = Indiera Baja barrio, PR +station = ('tjmz', 0.0044084923776955814) +zone = ('prz009', 0.0015672899360196419) + +[fips7209336156] +centroid = (0.31697004830614611, -1.1684523113035563) +description = Indiera Fría barrio, PR +station = ('tjmz', 0.0038316816637604897) +zone = ('prz009', 0.00212882179852857) + +[fips7209351313] +centroid = (0.31733728303405823, -1.1690170125830393) +description = Maricao barrio-pueblo, PR +station = ('tjmz', 0.0031852442590882151) +zone = ('prz009', 0.0023927979695838424) + +[fips7209351399] +centroid = (0.31714440669842037, -1.1691599550487777) +description = Maricao Afuera barrio, PR +station = ('tjmz', 0.0031630490227660497) +zone = ('prz009', 0.0025987522186543804) + +[fips7209354753] +centroid = (0.31722552960205302, -1.1696967659668134) +description = Montoso barrio, PR +station = ('tjmz', 0.0026945309515537014) +zone = ('prz010', 0.0027409122967135941) + +[fips72095] +centroid = (0.31415553035438004, -1.1501091975710691) +description = Maunabo Municipio, PR +station = ('tjnr', 0.0061735102415019045) +zone = ('prz003', 0.0030087417506873891) + +[fips7209500000] +centroid = (0.31364247336746376, -1.1494754510663772) +description = Municipio subdivision not defined, PR +station = ('tjnr', 0.0061615983990381271) +zone = ('prz003', 0.0037056873344644605) + +[fips7209511108] +centroid = (0.3139775067706766, -1.1505155276742258) +description = Calzada barrio, PR +station = ('tjnr', 0.0065741464496639731) +zone = ('prz003', 0.0026640124172402197) + +[fips7209526545] +centroid = (0.31424890546936174, -1.1497674271969436) +description = Emajagua barrio, PR +station = ('tjnr', 0.0058801111070182106) +zone = ('prz003', 0.0033189100925527077) + +[fips7209545766] +centroid = (0.31453707678215853, -1.1508498105858602) +description = Lizas barrio, PR +station = ('tjnr', 0.0064467294524199461) +zone = ('prz003', 0.0022709896506401357) + +[fips7209552173] +centroid = (0.314915132551433, -1.1513989784350003) +description = Matuyas Alto barrio, PR +station = ('tjnr', 0.00665185709937525) +zone = ('prz003', 0.0017740210877457718) + +[fips7209552216] +centroid = (0.31474182135670997, -1.1510007292062803) +description = Matuyas Bajo barrio, PR +station = ('tjnr', 0.0064375804611943701) +zone = ('prz003', 0.0021303585838810981) + +[fips7209552302] +centroid = (0.31429568029331517, -1.1501843689019524) +description = Maunabo barrio-pueblo, PR +station = ('tjnr', 0.0061266199243690993) +zone = ('prz003', 0.0029196549785494214) + +[fips7209559182] +centroid = (0.31423021299307291, -1.1508343120621025) +description = Palo Seco barrio, PR +station = ('tjnr', 0.0066297824860819671) +zone = ('prz003', 0.0023159637705023372) + +[fips7209566836] +centroid = (0.31460594747444226, -1.150114171759437) +description = Quebrada Arenas barrio, PR +station = ('tjnr', 0.0058668203809215703) +zone = ('prz003', 0.0029693413994787963) + +[fips7209581370] +centroid = (0.31457694010227411, -1.1503491105300481) +description = Talante barrio, PR +station = ('tjnr', 0.0060537703788953829) +zone = ('prz003', 0.0027461384669466527) + +[fips7209583798] +centroid = (0.31452210185717644, -1.1505424406512916) +description = Tumbao barrio, PR +station = ('tjnr', 0.0062293752733878277) +zone = ('prz003', 0.0025636179346298412) + +[fips7209603] +centroid = (0.32144456636277652, -1.1619516928781635) +description = Búfalo comunidad, PR +station = ('tjps', 0.0069957536027608225) +zone = ('prz005', 0.00072992807333622882) + +[fips7209689] +centroid = (0.32192337998976861, -1.1717390106311572) +description = Cabán comunidad, PR +station = ('tjbq', 0.00096332862693754447) +zone = ('prz008', 0.0032279846263735257) + +[fips72097] +centroid = (0.31562272393677659, -1.1848400977684497) +description = Mayagüez Municipio, PR +station = ('mdpc', 0.011590608557714694) +zone = ('prz010', 0.012225359198447434) + +[fips7209700000] +centroid = (0.31702380444710754, -1.1849622010029193) +description = Municipio subdivision not defined, PR +station = ('mdpc', 0.010527691979095845) +zone = ('prz010', 0.01209848796789195) + +[fips7209701820] +centroid = (0.31816753615923193, -1.1722909186472228) +description = Algarrobos barrio, PR +station = ('tjmz', 0.00070687909337209553) +zone = ('prz010', 0.00022473814428616794) + +[fips7209706464] +centroid = (0.31779026578812086, -1.170575783591288) +description = Bateyes barrio, PR +station = ('tjmz', 0.0016874531589677832) +zone = ('prz010', 0.0017517832228092273) + +[fips7209731103] +centroid = (0.3171002498683449, -1.1721482379808723) +description = Guanajibo barrio, PR +station = ('tjmz', 0.0017199249489958713) +zone = ('prz010', 0.0013003243980106896) + +[fips7209736650] +centroid = (0.31562272393677659, -1.1848400977684497) +description = Isla de Mona e Islote Monito barrio, PR +station = ('mdpc', 0.011590608557714694) +zone = ('prz010', 0.012225359198447434) + +[fips7209739101] +centroid = (0.31751876236968063, -1.1710901844817281) +description = Juan Alonso barrio, PR +station = ('tjmz', 0.0015506244664823016) +zone = ('prz010', 0.0014491726179058713) + +[fips7209745250] +centroid = (0.31838681932645252, -1.1710157985490082) +description = Leguísamo barrio, PR +station = ('tjmz', 0.0010176017854713042) +zone = ('prz010', 0.0012272547587858194) + +[fips7209745551] +centroid = (0.31735196125306753, -1.1705395505560166) +description = Limón barrio, PR +station = ('tjmz', 0.0020075796368645136) +zone = ('prz010', 0.0019755776789119463) + +[fips7209749378] +centroid = (0.3170782063598922, -1.1712144344711777) +description = Malezas barrio, PR +station = ('tjmz', 0.0018846519684259022) +zone = ('prz010', 0.001674626829573984) + +[fips7209752474] +centroid = (0.31770809568693698, -1.1719218687768884) +description = Mayagüez barrio-pueblo, PR +station = ('tjmz', 0.0011071961581500308) +zone = ('prz010', 0.00077576295016477731) + +[fips7209752560] +centroid = (0.31774469524135124, -1.1714775254026233) +description = Mayagüez Arriba barrio, PR +station = ('tjmz', 0.0011738424482647129) +zone = ('prz010', 0.0010202049598026705) + +[fips7209753420] +centroid = (0.31809660597843087, -1.1718083176557539) +description = Miradero barrio, PR +station = ('tjmz', 0.00073703242212947633) +zone = ('prz010', 0.00055883812659032685) + +[fips7209754796] +centroid = (0.31752694796387249, -1.1699818655001266) +description = Montoso barrio, PR +station = ('tjmz', 0.0022995702757798099) +zone = ('prz010', 0.0023727164150577303) + +[fips7209756000] +centroid = (0.3177904228677535, -1.1701623849046605) +description = Naranjales barrio, PR +station = ('tjmz', 0.0020137127703366035) +zone = ('prz010', 0.0021248130230409022) + +[fips7209767352] +centroid = (0.31732752664353958, -1.1714931286461361) +description = Quebrada Grande barrio, PR +station = ('tjmz', 0.0015586927409803658) +zone = ('prz010', 0.001315894841651348) + +[fips7209768126] +centroid = (0.31791736066425108, -1.1710364108874742) +description = Quemado barrio, PR +station = ('tjmz', 0.0012731230222399435) +zone = ('prz010', 0.0012975655961120196) + +[fips7209770792] +centroid = (0.31817282450686546, -1.1712922936091092) +description = Río Cañas Abajo barrio, PR +station = ('tjmz', 0.00092072138146500801) +zone = ('prz010', 0.00098919662140813732) + +[fips7209770878] +centroid = (0.31814118168752681, -1.1703910055833793) +description = Río Cañas Arriba barrio, PR +station = ('tjmz', 0.0016595261985694733) +zone = ('prz010', 0.001837862716114727) + +[fips7209771308] +centroid = (0.31704968767991459, -1.1715929265727651) +description = Río Hondo barrio, PR +station = ('tjmz', 0.0018033871093716598) +zone = ('prz010', 0.0015041203657419275) + +[fips7209772340] +centroid = (0.31708703772590729, -1.1709521987510656) +description = Rosario barrio, PR +station = ('tjmz', 0.0019873925460665342) +zone = ('prz010', 0.0018332654648265129) + +[fips7209772899] +centroid = (0.31735108858844147, -1.1719744380939587) +description = Sábalos barrio, PR +station = ('tjmz', 0.0014624499098458911) +zone = ('prz010', 0.0010877666797912092) + +[fips7209774361] +centroid = (0.31862612142019348, -1.1725030808710952) +description = Sabanetas barrio, PR +station = ('tjmz', 0.00052326823786889918) +zone = ('prz010', 0.00029881010816323411) + +[fips7209861] +centroid = (0.31567276252643123, -1.1719583287049629) +description = Cabo Rojo zona urbana, PR +station = ('tjmz', 0.0031408457914529312) +zone = ('prz011', 0.0018751626337038542) + +[fips72099] +centroid = (0.32075226406168039, -1.1707728661704231) +description = Moca Municipio, PR +station = ('tjmz', 0.0022562863621511469) +zone = ('prz008', 0.0025167100381396391) + +[fips7209900229] +centroid = (0.32180272537857824, -1.17053811938603) +description = Aceitunas barrio, PR +station = ('tjbq', 0.00154369256222021) +zone = ('prz008', 0.00208499654682612) + +[fips7209913602] +centroid = (0.32059151923757173, -1.1702314475831619) +description = Capá barrio, PR +station = ('tjmz', 0.0024380363133267246) +zone = ('prz008', 0.0021391003786301872) + +[fips7209916698] +centroid = (0.32148364428472864, -1.1711122803500584) +description = Centro barrio, PR +station = ('tjbq', 0.0015082153572070817) +zone = ('prz008', 0.0026434582449904541) + +[fips7209917257] +centroid = (0.32000564711426233, -1.1708220320954519) +description = Cerro Gordo barrio, PR +station = ('tjmz', 0.001627253174781044) +zone = ('prz010', 0.00214370906014511) + +[fips7209921858] +centroid = (0.32063701997117128, -1.1712304216871259) +description = Cruz barrio, PR +station = ('tjmz', 0.0019604457352510787) +zone = ('prz010', 0.0024674073361329392) + +[fips7209922331] +centroid = (0.32120154671772883, -1.1707856245272552) +description = Cuchillas barrio, PR +station = ('tjbq', 0.0018935784606273376) +zone = ('prz008', 0.0023850282307954556) + +[fips7209951184] +centroid = (0.32052591231098931, -1.1715238988008487) +description = Marías barrio, PR +station = ('tjmz', 0.0017683469434473004) +zone = ('prz010', 0.0022603249241617642) + +[fips7209953850] +centroid = (0.32100051969448407, -1.1713713919308095) +description = Moca barrio-pueblo, PR +station = ('tjbq', 0.0019106339957953048) +zone = ('prz010', 0.0027561871000455485) + +[fips7209956387] +centroid = (0.32013733220632523, -1.1713178452293584) +description = Naranjo barrio, PR +station = ('tjmz', 0.0014690532968779843) +zone = ('prz010', 0.0019826932446917475) + +[fips7209962622] +centroid = (0.31994349593959875, -1.1703174225021151) +description = Plata barrio, PR +station = ('tjmz', 0.0019479307529444156) +zone = ('prz010', 0.0024454733111460526) + +[fips7209964643] +centroid = (0.32114416029192322, -1.1711978712965765) +description = Pueblo barrio, PR +station = ('tjbq', 0.0018051337519418651) +zone = ('prz008', 0.0027790184215507642) + +[fips7209971953] +centroid = (0.32115547002547618, -1.1702583954668127) +description = Rocha barrio, PR +station = ('tjbq', 0.0022042098407803481) +zone = ('prz008', 0.0019160829028363544) + +[fips7209987648] +centroid = (0.32070147498044738, -1.170695356098342) +description = Voladoras barrio, PR +station = ('tjmz', 0.0022520538266410633) +zone = ('prz008', 0.0024707301283337455) + +[fips7210048] +centroid = (0.32205571085365481, -1.1686501443742701) +description = Cacao comunidad, PR +station = ('tjbq', 0.0030073368553511096) +zone = ('prz008', 0.00041893021743474141) + +[fips72101] +centroid = (0.31971614935123399, -1.1592133760015395) +description = Morovis Municipio, PR +station = ('tjig', 0.0057465327491410742) +zone = ('prz006', 0.0018451508545844005) + +[fips7210105260] +centroid = (0.32047849171521259, -1.1597242862334758) +description = Barahona barrio, PR +station = ('tjig', 0.0059527994929109923) +zone = ('prz005', 0.0016683202798874516) + +[fips7210122374] +centroid = (0.31947311225289377, -1.1586526715260439) +description = Cuchillas barrio, PR +station = ('tjig', 0.0053737981937457685) +zone = ('prz006', 0.0016423146649682256) + +[fips7210129598] +centroid = (0.32036062963082546, -1.1592211078101258) +description = Fránquez barrio, PR +station = ('tjig', 0.005527071676267317) +zone = ('prz005', 0.0021370243617333871) + +[fips7210154538] +centroid = (0.31983107928247784, -1.1587203553944361) +description = Monte Llano barrio, PR +station = ('tjig', 0.0052722875565524912) +zone = ('prz006', 0.0019805734783913515) + +[fips7210155140] +centroid = (0.31984930051986865, -1.1590367661345302) +description = Morovis barrio-pueblo, PR +station = ('tjig', 0.0055398535733912763) +zone = ('prz006', 0.0019725988227244943) + +[fips7210155183] +centroid = (0.32012089120477144, -1.1590343575801623) +description = Morovis Norte barrio, PR +station = ('tjig', 0.0054371568005301745) +zone = ('prz006', 0.0022441984531140252) + +[fips7210155226] +centroid = (0.31964703431285502, -1.1591020414485547) +description = Morovis Sud barrio, PR +station = ('tjig', 0.0056783520007483868) +zone = ('prz006', 0.0017706852176181255) + +[fips7210160214] +centroid = (0.31895616318174558, -1.1594959448074373) +description = Pasto barrio, PR +station = ('tjps', 0.0050128999125209038) +zone = ('prz006', 0.0011563067111747772) + +[fips7210161160] +centroid = (0.3190057828923798, -1.158965801047144) +description = Perchas barrio, PR +station = ('tjps', 0.0052958161432941978) +zone = ('prz006', 0.0011324451141108513) + +[fips7210171050] +centroid = (0.31932357244258291, -1.1590817607226467) +description = Río Grande barrio, PR +station = ('tjps', 0.0055189174421266928) +zone = ('prz006', 0.0014469145045281143) + +[fips7210176984] +centroid = (0.31950224179810954, -1.1596425350113124) +description = San Lorenzo barrio, PR +station = ('tjps', 0.0054548429507508796) +zone = ('prz006', 0.0017172325579812122) + +[fips7210183219] +centroid = (0.31994972676502842, -1.1596901650465994) +description = Torrecillas barrio, PR +station = ('tjps', 0.005855960644000611) +zone = ('prz005', 0.0020342973271855556) + +[fips7210183993] +centroid = (0.32001060384933794, -1.1586035230543077) +description = Unibón barrio, PR +station = ('tjig', 0.0050982846047278908) +zone = ('prz006', 0.0021772156793173837) + +[fips7210184638] +centroid = (0.3189927103762823, -1.1597877114984934) +description = Vaga barrio, PR +station = ('tjps', 0.0049313945087322286) +zone = ('prz006', 0.0013129868221340201) + +[fips72103] +centroid = (0.31784313181116375, -1.14730525631457) +description = Naguabo Municipio, PR +station = ('tjnr', 0.0018286821591668311) +zone = ('prz002', 0.0014977178880140323) + +[fips7210300000] +centroid = (0.31665871647417537, -1.1464648104665647) +description = Municipio subdivision not defined, PR +station = ('tjnr', 0.002069649509049688) +zone = ('prz002', 0.0029234121119118576) + +[fips7210323105] +centroid = (0.31773364730718612, -1.1462565926868016) +description = Daguao barrio, PR +station = ('tjnr', 0.0010558823701994826) +zone = ('prz002', 0.0022319583700131022) + +[fips7210324438] +centroid = (0.31834290684247235, -1.1473678438215464) +description = Duque barrio, PR +station = ('tjnr', 0.0017662329861110465) +zone = ('prz002', 0.0010493113951978786) + +[fips7210334] +centroid = (0.31821511383464129, -1.1525971295132018) +description = Caguas zona urbana, PR +station = ('tjsj', 0.003852559047050225) +zone = ('prz004', 0.0007807660670097374) + +[fips7210335489] +centroid = (0.31757548557037041, -1.1469602221747432) +description = Húcares barrio, PR +station = ('tjnr', 0.0016655973175634053) +zone = ('prz002', 0.0018972598432371898) + +[fips7210349163] +centroid = (0.31823485350848135, -1.1477137331727068) +description = Maizales barrio, PR +station = ('tjnr', 0.0021053619499435245) +zone = ('prz002', 0.00097836919354445302) + +[fips7210350969] +centroid = (0.31811229648840633, -1.1467974178621172) +description = Mariana barrio, PR +station = ('tjnr', 0.0012827531701405514) +zone = ('prz002', 0.0015950721260706707) + +[fips7210355871] +centroid = (0.31785123013889299, -1.1472935102487041) +description = Naguabo barrio-pueblo, PR +station = ('tjnr', 0.0018153164336955259) +zone = ('prz002', 0.0014961130090653941) + +[fips7210360988] +centroid = (0.31803108631831101, -1.1486706273884051) +description = Peña Pobre barrio, PR +station = ('tjnr', 0.0030345804744497549) +zone = ('prz002', 0.0012580217236749416) + +[fips7210369803] +centroid = (0.31744308489331413, -1.147452317757343) +description = Río barrio, PR +station = ('tjnr', 0.0021311939592681063) +zone = ('prz002', 0.0018076104114986616) + +[fips7210370491] +centroid = (0.31855147368808562, -1.1482622203434383) +description = Río Blanco barrio, PR +station = ('tjnr', 0.0026065537132148719) +zone = ('prz002', 0.00062811279895503061) + +[fips7210379521] +centroid = (0.31733264045824794, -1.14659415681743) +description = Santiago y Lima barrio, PR +station = ('tjnr', 0.0015688773598889765) +zone = ('prz002', 0.0022975871850831561) + +[fips72105] +centroid = (0.31921944609940889, -1.156340668772512) +description = Naranjito Municipio, PR +station = ('tjig', 0.0037768858019102242) +zone = ('prz006', 0.0029100053595846618) + +[fips7210500315] +centroid = (0.31960895122857647, -1.1562005886467468) +description = Achiote barrio, PR +station = ('tjig', 0.0034031375998796872) +zone = ('prz001', 0.0026471933193972395) + +[fips7210503153] +centroid = (0.3189132280821465, -1.1561844618044583) +description = Anones barrio, PR +station = ('tjig', 0.0039164603039930712) +zone = ('prz006', 0.0029203399793177433) + +[fips7210515838] +centroid = (0.31914855082519294, -1.1566272692889821) +description = Cedro Abajo barrio, PR +station = ('tjig', 0.0040153184948914069) +zone = ('prz006', 0.0026365843380915708) + +[fips7210515881] +centroid = (0.31865125416142215, -1.1568142987716254) +description = Cedro Arriba barrio, PR +station = ('tjig', 0.004500122609556019) +zone = ('prz006', 0.0022684452219729982) + +[fips7210530673] +centroid = (0.31965495810765904, -1.1558186058866555) +description = Guadiana barrio, PR +station = ('tjig', 0.0031220928438455892) +zone = ('prz001', 0.0022971836972881673) + +[fips7210546755] +centroid = (0.31967260338639675, -1.1566095891036594) +description = Lomas barrio, PR +station = ('tjig', 0.0036468359544723937) +zone = ('prz006', 0.0029387114962295359) + +[fips7210556172] +centroid = (0.31942127597410952, -1.1562773656805421) +description = Naranjito barrio-pueblo, PR +station = ('tjig', 0.0035882689204415974) +zone = ('prz001', 0.0027909109993096131) + +[fips7210556817] +centroid = (0.31919654737962277, -1.1558967093706822) +description = Nuevo barrio, PR +station = ('tjig', 0.0035255063962934411) +zone = ('prz001', 0.0025883373350258851) + +[fips72107] +centroid = (0.31792875766426659, -1.1594915465777222) +description = Orocovis Municipio, PR +station = ('tjps', 0.0041165206470681502) +zone = ('prz006', 0.00041396060244814286) + +[fips7210701433] +centroid = (0.31729764660674542, -1.1608266885489129) +description = Ala de la Piedra barrio, PR +station = ('tjps', 0.0029962280830002829) +zone = ('prz006', 0.0017761848737105812) + +[fips7210706335] +centroid = (0.31847912979059045, -1.1591193725680271) +description = Barros barrio, PR +station = ('tjps', 0.0047706231835572665) +zone = ('prz006', 0.00060501915823341155) + +[fips7210706507] +centroid = (0.31754935799146805, -1.160085220322788) +description = Bauta Abajo barrio, PR +station = ('tjps', 0.0035049765806203074) +zone = ('prz006', 0.0010282136700088854) + +[fips7210706550] +centroid = (0.31733253573849279, -1.1586871068721856) +description = Bauta Arriba barrio, PR +station = ('tjps', 0.004135852834043695) +zone = ('prz006', 0.00064898990782825971) + +[fips7210707625] +centroid = (0.31721401042898989, -1.1592907464472804) +description = Bermejales barrio, PR +station = ('tjps', 0.0036553908917519957) +zone = ('prz006', 0.00069835640407341743) + +[fips7210708614] +centroid = (0.31807393415144747, -1.1582600248042225) +description = Botijas barrio, PR +station = ('tjps', 0.0049496528465379722) +zone = ('prz006', 0.0007842820729905991) + +[fips7210710205] +centroid = (0.31810802043173897, -1.1605870897491992) +description = Cacaos barrio, PR +station = ('tjps', 0.0038373577820070754) +zone = ('prz006', 0.0014695960616594281) + +[fips7210719364] +centroid = (0.31837151278891251, -1.1604191018086947) +description = Collores barrio, PR +station = ('tjps', 0.0041374007662351104) +zone = ('prz006', 0.0013831644284615537) + +[fips7210723234] +centroid = (0.31833224288074269, -1.1600696694391528) +description = Damián Abajo barrio, PR +station = ('tjps', 0.0042188056519893062) +zone = ('prz006', 0.0010623516697214834) + +[fips7210723277] +centroid = (0.31838833776290176, -1.1594924716022259) +description = Damián Arriba barrio, PR +station = ('tjps', 0.0045110698269830969) +zone = ('prz006', 0.00065651824955043861) + +[fips7210730501] +centroid = (0.31870925145246592, -1.1587209138997969) +description = Gato barrio, PR +station = ('tjps', 0.005171420775526246) +zone = ('prz006', 0.00089228572352794712) + +[fips7210751829] +centroid = (0.31863439428084789, -1.1583782359544601) +description = Mata de Cañas barrio, PR +station = ('tjps', 0.0053036065442546246) +zone = ('prz006', 0.00099610473852215363) + +[fips7210757333] +centroid = (0.31803785819580876, -1.158576854423337) +description = Orocovis barrio, PR +station = ('tjps', 0.0047222065977390862) +zone = ('prz006', 0.00048564099358602386) + +[fips7210757376] +centroid = (0.31808887416984455, -1.1587547383807004) +description = Orocovis barrio-pueblo, PR +station = ('tjps', 0.0046538313222253304) +zone = ('prz006', 0.00035860920918128814) + +[fips7210760816] +centroid = (0.31798546341166389, -1.1596679644585139) +description = Pellejas barrio, PR +station = ('tjps', 0.004078402323785966) +zone = ('prz006', 0.00058837982272281336) + +[fips7210773114] +centroid = (0.31772837641284513, -1.1585346872686089) +description = Sabana barrio, PR +station = ('tjps', 0.0045191864370150844) +zone = ('prz006', 0.00051988359613733813) + +[fips7210775178] +centroid = (0.31768812912029415, -1.1591214320565446) +description = Saltos barrio, PR +station = ('tjps', 0.0041233938451786826) +zone = ('prz006', 0.00019773321522532293) + +[fips72109] +centroid = (0.31416469333295299, -1.1516841826880686) +description = Patillas Municipio, PR +station = ('tjnr', 0.0073031405720460612) +zone = ('prz003', 0.0015420573116999995) + +[fips7210900000] +centroid = (0.31316100684000864, -1.1509701859443704) +description = Municipio subdivision not defined, PR +station = ('tjnr', 0.0074570119805105178) +zone = ('prz003', 0.0025973023091730306) + +[fips7210903282] +centroid = (0.31449696911594766, -1.1516230612576639) +description = Apeadero barrio, PR +station = ('tjnr', 0.007061805642352593) +zone = ('prz003', 0.0015386615257197843) + +[fips7210904744] +centroid = (0.31372745344874342, -1.1517325806682266) +description = Bajo barrio, PR +station = ('tjnr', 0.0076081627673562123) +zone = ('prz003', 0.0016806671563788984) + +[fips7210910119] +centroid = (0.31441856892594811, -1.1524007625190598) +description = Cacao Alto barrio, PR +station = ('tjsj', 0.0076085467639330799) +zone = ('prz003', 0.00081762367196930102) + +[fips7210910162] +centroid = (0.31409765523638389, -1.1523913901009768) +description = Cacao Bajo barrio, PR +station = ('tjnr', 0.0078901882505856696) +zone = ('prz003', 0.00095309792161636859) + +[fips7210924481] +centroid = (0.31513815072325285, -1.1518942679701309) +description = Egozcue barrio, PR +station = ('tjsj', 0.0068751310831635486) +zone = ('prz003', 0.0013816182321731291) + +[fips7210931705] +centroid = (0.31371340354826488, -1.150796595496967) +description = Guardarraya barrio, PR +station = ('tjnr', 0.0069498988816489252) +zone = ('prz003', 0.0024877627720686192) + +[fips7210936908] +centroid = (0.31384863165870941, -1.1512834899983957) +description = Jacaboa barrio, PR +station = ('tjnr', 0.007202442935428612) +zone = ('prz003', 0.0020074480612957491) + +[fips7210937123] +centroid = (0.31470253399524761, -1.1524483751010544) +description = Jagual barrio, PR +station = ('tjsj', 0.0073280915105881908) +zone = ('prz003', 0.00075543506363958161) + +[fips7210949722] +centroid = (0.31443329950483495, -1.151946261328548) +description = Mamey barrio, PR +station = ('tjnr', 0.0073515316752097021) +zone = ('prz003', 0.0012398004791692912) + +[fips7210951442] +centroid = (0.31488788796180939, -1.1519329619196479) +description = Marín barrio, PR +station = ('tjnr', 0.0070974638056403765) +zone = ('prz003', 0.0012706207735760798) + +[fips7210955484] +centroid = (0.31526828247228161, -1.1523945316936304) +description = Mulas barrio, PR +station = ('tjsj', 0.0067601729403684117) +zone = ('prz003', 0.00103693027438677) + +[fips7210955699] +centroid = (0.31557209193517621, -1.1527368431198239) +description = Muñoz Rivera barrio, PR +station = ('tjsj', 0.0064879996520700563) +zone = ('prz003', 0.0010734969997278113) + +[fips7210960515] +centroid = (0.31431987055674782, -1.1521695936596332) +description = Patillas barrio-pueblo, PR +station = ('tjnr', 0.0075911365922522161) +zone = ('prz003', 0.001055385735073122) + +[fips7210963740] +centroid = (0.3140757513542714, -1.1518521531752806) +description = Pollos barrio, PR +station = ('tjnr', 0.0074844219286583072) +zone = ('prz003', 0.0014208621356815773) + +[fips7210967094] +centroid = (0.3150122601243065, -1.153154186250561) +description = Quebrada Arriba barrio, PR +station = ('tjig', 0.0070176195793798359) +zone = ('prz003', 0.00041028542084353789) + +[fips7210971695] +centroid = (0.31435695880335274, -1.1513160403889453) +description = Ríos barrio, PR +station = ('tjnr', 0.0069077321180288148) +zone = ('prz003', 0.0018439190492390849) + +[fips72111] +centroid = (0.31462383709927516, -1.1646254849323414) +description = Peñuelas Municipio, PR +station = ('tjps', 0.0026853512281482038) +zone = ('prz007', 0.0013392080430050441) + +[fips7211100000] +centroid = (0.31306747464539425, -1.1648654327979053) +description = Municipio subdivision not defined, PR +station = ('tjps', 0.003220556615012814) +zone = ('prz007', 0.0025144016024240901) + +[fips7211105862] +centroid = (0.31599311771063482, -1.165060351168768) +description = Barreal barrio, PR +station = ('tjps', 0.0034561145120674502) +zone = ('prz007', 0.0018892513594722033) + +[fips7211121127] +centroid = (0.31512139556243374, -1.1646845643275212) +description = Coto barrio, PR +station = ('tjps', 0.0028168340865858204) +zone = ('prz007', 0.0013079425508463101) + +[fips7211122460] +centroid = (0.31496489188840737, -1.1644233583516677) +description = Cuebas barrio, PR +station = ('tjps', 0.0025400819730535228) +zone = ('prz007', 0.0010680297198782935) + +[fips7211126631] +centroid = (0.31400848636489953, -1.164214913679102) +description = Encarnación barrio, PR +station = ('tjps', 0.0023317404485636638) +zone = ('prz007', 0.0013904686092345634) + +[fips7211137510] +centroid = (0.31574206955102796, -1.1646042617286372) +description = Jaguas barrio, PR +station = ('tjps', 0.002956291339879874) +zone = ('prz007', 0.0013886473521478816) + +[fips7211148174] +centroid = (0.31551681735776554, -1.1652130674783177) +description = Macaná barrio, PR +station = ('tjps', 0.0034091789073478385) +zone = ('prz007', 0.001857502263479379) + +[fips7211151] +centroid = (0.31429011269300133, -1.1618159760755282) +description = Calzada comunidad, PR +station = ('tjps', 0.00016024348148411746) +zone = ('prz007', 0.0016345211909205037) + +[fips7211161117] +centroid = (0.31515684319954174, -1.1645261582446103) +description = Peñuelas barrio-pueblo, PR +station = ('tjps', 0.0026799061086668742) +zone = ('prz007', 0.0011585497552420133) + +[fips7211167137] +centroid = (0.31555153195658775, -1.1642990734556333) +description = Quebrada Ceiba barrio, PR +station = ('tjps', 0.0026124830077658158) +zone = ('prz007', 0.0010438986089793658) + +[fips7211172770] +centroid = (0.31593239770595793, -1.1640631922072262) +description = Rucio barrio, PR +station = ('tjps', 0.0026069533879604298) +zone = ('prz007', 0.0010985576331774582) + +[fips7211179607] +centroid = (0.31527746290414704, -1.1649593838715402) +description = Santo Domingo barrio, PR +station = ('tjps', 0.0031090214435193619) +zone = ('prz007', 0.0015790198697404419) + +[fips7211181499] +centroid = (0.31509580903559947, -1.1640350051398065) +description = Tallaboa Alta barrio, PR +station = ('tjps', 0.0022142783961457912) +zone = ('prz007', 0.00069020686204169623) + +[fips7211181585] +centroid = (0.31370734725576044, -1.1649578479817986) +description = Tallaboa Poniente barrio, PR +station = ('tjps', 0.0030869349489384443) +zone = ('prz007', 0.0020971317323893674) + +[fips7211181628] +centroid = (0.31468008906106698, -1.1642296442579889) +description = Tallaboa Saliente barrio, PR +station = ('tjps', 0.0023147356026335911) +zone = ('prz007', 0.00097081945810528877) + +[fips72113] +centroid = (0.31418923266223603, -1.1625055731162839) +description = Ponce Municipio, PR +station = ('tjps', 0.00071330176376991543) +zone = ('prz007', 0.0011888088830237359) + +[fips7211300000] +centroid = (0.31282785839238797, -1.1634597620716416) +description = Municipio subdivision not defined, PR +station = ('tjps', 0.0022587474272420791) +zone = ('prz007', 0.002276655392392391) + +[fips7211303067] +centroid = (0.31665363756605208, -1.1622263553425498) +description = Anón barrio, PR +station = ('tjps', 0.0022391695901903758) +zone = ('prz007', 0.0018635824820863122) + +[fips7211308786] +centroid = (0.3138438145499739, -1.1623237796213963) +description = Bucaná barrio, PR +station = ('tjps', 0.00078021520309838697) +zone = ('prz007', 0.0015671351740758547) + +[fips7211312312] +centroid = (0.314008468911607, -1.1636037691882237) +description = Canas barrio, PR +station = ('tjps', 0.0017644847678984739) +zone = ('prz007', 0.0011269291932461205) + +[fips7211312355] +centroid = (0.314274055663883, -1.162937088320547) +description = Canas Urbano barrio, PR +station = ('tjps', 0.0010885645283481961) +zone = ('prz007', 0.00089849590820620634) + +[fips7211313946] +centroid = (0.31394966876910735, -1.1614872433109151) +description = Capitanejo barrio, PR +station = ('tjps', 0.00058588056659070588) +zone = ('prz007', 0.0020795805323247651) + +[fips7211317042] +centroid = (0.31513185008465316, -1.16190928137734) +description = Cerrillos barrio, PR +station = ('tjps', 0.00068853141123972959) +zone = ('prz007', 0.0013312451014350385) + +[fips7211321256] +centroid = (0.31479194721282727, -1.1616019638026489) +description = Coto Laurel barrio, PR +station = ('tjps', 0.00039373152063835223) +zone = ('prz007', 0.0016521126616544134) + +[fips7211321901] +centroid = (0.31428997306666118, -1.1625759971516019) +description = Cuarto barrio, PR +station = ('tjps', 0.00074817699680051748) +zone = ('prz007', 0.0010686675130112358) + +[fips7211331576] +centroid = (0.31630216316128545, -1.1636303505527317) +description = Guaraguao barrio, PR +station = ('tjps', 0.0025363411261881868) +zone = ('prz007', 0.0012403515560283494) + +[fips7211348389] +centroid = (0.31460317240093155, -1.1623262754422266) +description = Machuelo Abajo barrio, PR +station = ('tjps', 0.00051650756408171616) +zone = ('prz007', 0.001058344922763139) + +[fips7211348432] +centroid = (0.31511549634956193, -1.1622607208755216) +description = Machuelo Arriba barrio, PR +station = ('tjps', 0.00079271404363036508) +zone = ('prz007', 0.00099685236098630129) + +[fips7211349034] +centroid = (0.31523482451052082, -1.1632754378493386) +description = Magueyes barrio, PR +station = ('tjps', 0.0016012183676127471) +zone = ('prz007', 0.00013856656707278189) + +[fips7211349077] +centroid = (0.31459057112373218, -1.163030445982236) +description = Magueyes Urbano barrio, PR +station = ('tjps', 0.00117139557391223) +zone = ('prz007', 0.00057419736391043524) + +[fips7211350453] +centroid = (0.31586993237202904, -1.1621976097697695) +description = Maragüez barrio, PR +station = ('tjps', 0.0014674234422572413) +zone = ('prz007', 0.0013073692850996547) + +[fips7211351743] +centroid = (0.31558837585709731, -1.163577187823716) +description = Marueño barrio, PR +station = ('tjps', 0.0020314237363795551) +zone = ('prz007', 0.00055089503284099243) + +[fips7211354581] +centroid = (0.31587391172272355, -1.1627376670002141) +description = Monte Llano barrio, PR +station = ('tjps', 0.0016760542115743268) +zone = ('prz007', 0.00094552158577470647) + +[fips7211362751] +centroid = (0.31364277007343666, -1.1624668791667672) +description = Playa barrio, PR +station = ('tjps', 0.001022327467539856) +zone = ('prz007', 0.0016628226917588845) + +[fips7211364041] +centroid = (0.31514624905098215, -1.1626434192206063) +description = Portugués barrio, PR +station = ('tjps', 0.0010565572683550546) +zone = ('prz007', 0.00063456108014307031) + +[fips7211364084] +centroid = (0.31460936831977615, -1.1628043909375179) +description = Portugués Urbano barrio, PR +station = ('tjps', 0.00096125747601566761) +zone = ('prz007', 0.00068628899766821937) + +[fips7211364299] +centroid = (0.31429780959500264, -1.162729202153342) +description = Primero barrio, PR +station = ('tjps', 0.00088966505394952691) +zone = ('prz007', 0.00097341541865705275) + +[fips7211367610] +centroid = (0.31513232132355118, -1.1636411890473866) +description = Quebrada Limón barrio, PR +station = ('tjps', 0.0018722761488609708) +zone = ('prz007', 0.00031741540122964102) + +[fips7211368298] +centroid = (0.31441003426590586, -1.1625783009862145) +description = Quinto barrio, PR +station = ('tjps', 0.000734102713423303) +zone = ('prz007', 0.00097923012940016527) + +[fips7211368900] +centroid = (0.31566361700115081, -1.1617081321810476) +description = Real barrio, PR +station = ('tjps', 0.001217136123531254) +zone = ('prz007', 0.0016229847776371936) + +[fips7211374447] +centroid = (0.31447042265802488, -1.1620232164709101) +description = Sabanetas barrio, PR +station = ('tjps', 0.00020613228958119261) +zone = ('prz007', 0.001375241273326417) + +[fips7211375565] +centroid = (0.31425593914624728, -1.1624142574898195) +description = San Antón barrio, PR +station = ('tjps', 0.00060882704155304068) +zone = ('prz007', 0.0011985080925587563) + +[fips7211377242] +centroid = (0.31653355891351487, -1.1631345723254101) +description = San Patricio barrio, PR +station = ('tjps', 0.0024355966352719361) +zone = ('prz007', 0.0014431249207869003) + +[fips7211379908] +centroid = (0.31441137816942988, -1.1627524673922709) +description = Segundo barrio, PR +station = ('tjps', 0.00089946910987427392) +zone = ('prz007', 0.00086851093412743639) + +[fips7211380080] +centroid = (0.31453189315428015, -1.1625925428729107) +description = Sexto barrio, PR +station = ('tjps', 0.0007509960546240417) +zone = ('prz007', 0.00088709059297462512) + +[fips7211381929] +centroid = (0.31435151337608652, -1.1625661534946206) +description = Tercero barrio, PR +station = ('tjps', 0.00072817251410476616) +zone = ('prz007', 0.0010292066231632612) + +[fips7211382058] +centroid = (0.31567347811142454, -1.1629897623573722) +description = Tibes barrio, PR +station = ('tjps', 0.0016613369011708383) +zone = ('prz007', 0.00064886628490247119) + +[fips7211385068] +centroid = (0.3138629259052832, -1.1618798725794439) +description = Vayas barrio, PR +station = ('tjps', 0.00059124720124547161) +zone = ('prz007', 0.0018378014856737749) + +[fips72115] +centroid = (0.32229862577894741, -1.1681070677242196) +description = Quebradillas Municipio, PR +station = ('tjbq', 0.0034556894730270616) +zone = ('prz008', 0.00058556204158159437) + +[fips7211500000] +centroid = (0.32312053623029652, -1.168089527165237) +description = Municipio subdivision not defined, PR +station = ('tjbq', 0.0034296202866332315) +zone = ('prz008', 0.0013845276542155886) + +[fips7211510076] +centroid = (0.32209742422277748, -1.168366999609719) +description = Cacao barrio, PR +station = ('tjbq', 0.0032559189961029931) +zone = ('prz008', 0.00034164208044411032) + +[fips7211517515] +centroid = (0.32128760890314462, -1.1681954861041255) +description = Charcas barrio, PR +station = ('tjbq', 0.0036866071541449643) +zone = ('prz008', 0.00048893021283757661) + +[fips7211518934] +centroid = (0.32212761841883697, -1.1678455999489781) +description = Cocos barrio, PR +station = ('tjbq', 0.0037313677289414074) +zone = ('prz008', 0.00059859324248530312) + +[fips7211530716] +centroid = (0.32097137269597581, -1.167791512195459) +description = Guajataca barrio, PR +station = ('tjbq', 0.0041708902756729385) +zone = ('prz008', 0.00094254044160690801) + +[fips7211568083] +centroid = (0.3224053701159994, -1.1682941321134481) +description = Quebradillas barrio-pueblo, PR +station = ('tjbq', 0.0032635202754134718) +zone = ('prz008', 0.00065019878638001389) + +[fips7211575823] +centroid = (0.32161300808888643, -1.1679275082507743) +description = San Antonio barrio, PR +station = ('tjbq', 0.0037959140643410998) +zone = ('prz008', 0.00041763507111712865) + +[fips7211576597] +centroid = (0.32252691484510826, -1.1679384340118917) +description = San José barrio, PR +station = ('tjbq', 0.0035832478098543055) +zone = ('prz008', 0.0008596314428505502) + +[fips7211581] +centroid = (0.32153818582385346, -1.1560770891488756) +description = Campanilla comunidad, PR +station = ('tjig', 0.0023392781362174789) +zone = ('prz001', 0.0024921644083986559) + +[fips7211581972] +centroid = (0.32269533911792569, -1.1682882678071618) +description = Terranova barrio, PR +station = ('tjbq', 0.0032389636413699767) +zone = ('prz008', 0.0009399799128090115) + +[fips72117] +centroid = (0.32010319356615624, -1.1742104317585662) +description = Rincón Municipio, PR +station = ('tjmz', 0.0024724581110853548) +zone = ('prz010', 0.0024883786092605303) + +[fips7211700000] +centroid = (0.32010319356615624, -1.1742104317585662) +description = Municipio subdivision not defined, PR +station = ('tjmz', 0.0024724581110853548) +zone = ('prz010', 0.0024883786092605303) + +[fips7211704443] +centroid = (0.31964795933735857, -1.1728202770093528) +description = Atalaya barrio, PR +station = ('tjmz', 0.0011488830998596072) +zone = ('prz010', 0.001347160017960198) + +[fips7211705948] +centroid = (0.31944502990522922, -1.1733538241616874) +description = Barrero barrio, PR +station = ('tjmz', 0.0014419610771467088) +zone = ('prz010', 0.0014476791821023242) + +[fips7211710] +centroid = (0.32004322405305774, -1.1501256385726228) +description = Campo Rico comunidad, PR +station = ('tjsj', 0.0026022000139616797) +zone = ('prz002', 0.0021446256433378216) + +[fips7211711065] +centroid = (0.31968009084888782, -1.1733154618247283) +description = Calvache barrio, PR +station = ('tjmz', 0.0015291106631821236) +zone = ('prz010', 0.0016047212023553767) + +[fips7211721815] +centroid = (0.32008022503319999, -1.1732441651247847) +description = Cruces barrio, PR +station = ('tjmz', 0.0017394364791678174) +zone = ('prz010', 0.0019082078383826804) + +[fips7211726846] +centroid = (0.32022274861991784, -1.1737702771745055) +description = Ensenada barrio, PR +station = ('tjmz', 0.0022016460974691719) +zone = ('prz010', 0.0022979043925220963) + +[fips7211737639] +centroid = (0.31983776389351298, -1.1729137393907969) +description = Jagüey barrio, PR +station = ('tjmz', 0.0013493376763578269) +zone = ('prz010', 0.0015562624089128473) + +[fips7211764686] +centroid = (0.31996232804222779, -1.1735903162753325) +description = Pueblo barrio, PR +station = ('tjmz', 0.001905898984972761) +zone = ('prz010', 0.0019873014133366227) + +[fips7211766449] +centroid = (0.3204698523354152, -1.1738627447182763) +description = Puntas barrio, PR +station = ('tjmz', 0.0024308871359513154) +zone = ('prz010', 0.0025490504938943475) + +[fips7211769631] +centroid = (0.32007558245738971, -1.1737473784547194) +description = Rincón barrio-pueblo, PR +station = ('tjmz', 0.0020931248740182545) +zone = ('prz010', 0.0021687037631764692) + +[fips7211771093] +centroid = (0.32051137371832017, -1.1734768000607829) +description = Río Grande barrio, PR +station = ('tjmz', 0.0022088245077927235) +zone = ('prz010', 0.002392582652891558) + +[fips72119] +centroid = (0.32072814361141788, -1.1483993159561827) +description = Río Grande Municipio, PR +station = ('tjnr', 0.0035139756783561429) +zone = ('prz002', 0.0016060940647105683) + +[fips7211900000] +centroid = (0.32183295448122279, -1.147911025191352) +description = Municipio subdivision not defined, PR +station = ('tjsj', 0.0038047471633792006) +zone = ('prz002', 0.002684577542060018) + +[fips7211918289] +centroid = (0.31982376635291199, -1.1494948242210745) +description = Ciénaga Alta barrio, PR +station = ('tjsj', 0.0031746379932097802) +zone = ('prz002', 0.001509539819737954) + +[fips7211918332] +centroid = (0.32078498898515528, -1.1493206578150179) +description = Ciénaga Baja barrio, PR +station = ('tjsj', 0.0027528825908601168) +zone = ('prz002', 0.0020180603688614998) + +[fips7211925] +centroid = (0.32258664001211146, -1.1667637750654221) +description = Camuy zona urbana, PR +station = ('tjbq', 0.0046887563386034019) +zone = ('prz008', 0.0017107485128137643) + +[fips7211933081] +centroid = (0.32035219969053824, -1.14921110349787) +description = Guzmán Abajo barrio, PR +station = ('tjsj', 0.0030582264915279354) +zone = ('prz002', 0.0016159025292566999) + +[fips7211933124] +centroid = (0.31922305893096053, -1.1489215359216718) +description = Guzmán Arriba barrio, PR +station = ('tjnr', 0.0033072149974821608) +zone = ('prz002', 0.0008110168988767814) + +[fips7211934543] +centroid = (0.3211498326119922, -1.1487441930163769) +description = Herreras barrio, PR +station = ('tjsj', 0.0031318184676618721) +zone = ('prz002', 0.0020970258217021518) + +[fips7211938585] +centroid = (0.31972007634205096, -1.148494855279437) +description = Jiménez barrio, PR +station = ('tjnr', 0.0030699615625269425) +zone = ('prz002', 0.00069585338022836861) + +[fips7211950023] +centroid = (0.31997777420610796, -1.1478609866016976) +description = Mameyes II barrio, PR +station = ('tjnr', 0.0026584562276605567) +zone = ('prz002', 0.0008487801614728461) + +[fips7211971179] +centroid = (0.32079101037107471, -1.1489648549937064) +description = Río Grande barrio-pueblo, PR +station = ('tjsj', 0.0030562974173139424) +zone = ('prz002', 0.001845207299315136) + +[fips7211988637] +centroid = (0.32090473602513464, -1.1482546979743624) +description = Zarzal barrio, PR +station = ('tjnr', 0.0035249780746353008) +zone = ('prz002', 0.0017607767536259951) + +[fips72121] +centroid = (0.3156078886381346, -1.1683816254688508) +description = Sabana Grande Municipio, PR +station = ('tjmz', 0.0046925681149906683) +zone = ('prz011', 0.0022639422750492114) + +[fips7212148346] +centroid = (0.31514495750733562, -1.1683394234075375) +description = Machuchal barrio, PR +station = ('tjmz', 0.0050478397465084316) +zone = ('prz011', 0.0021092227989245697) + +[fips7212168857] +centroid = (0.31515843144916106, -1.1687683206179225) +description = Rayo barrio, PR +station = ('tjmz', 0.0047667531222412201) +zone = ('prz011', 0.0017327904518701647) + +[fips7212169674] +centroid = (0.31570649974087234, -1.1683849415944296) +description = Rincón barrio, PR +station = ('tjmz', 0.0046233908433496338) +zone = ('prz011', 0.0023122354580608052) + +[fips7212173587] +centroid = (0.31553702827050362, -1.1686817522870236) +description = Sabana Grande barrio-pueblo, PR +station = ('tjmz', 0.0045394505753344654) +zone = ('prz011', 0.0019831891699193215) + +[fips7212178747] +centroid = (0.31609418972761777, -1.1687723348752022) +description = Santana barrio, PR +station = ('tjmz', 0.0040903436453437461) +zone = ('prz011', 0.0022687667611910683) + +[fips7212181026] +centroid = (0.31481289116385119, -1.1677918438080168) +description = Susúa barrio, PR +station = ('tjmz', 0.005648709363191555) +zone = ('prz011', 0.0025430306737180769) + +[fips7212181327] +centroid = (0.31639464815834861, -1.1682383862971397) +description = Tabonuco barrio, PR +station = ('tjmz', 0.0043061771028665681) +zone = ('prz009', 0.0024066437915636258) + +[fips7212183004] +centroid = (0.3152656644784036, -1.167966202200291) +description = Torre barrio, PR +station = ('tjmz', 0.0052147921812580921) +zone = ('prz011', 0.0024840226200019142) + +[fips72123] +centroid = (0.31366158472277317, -1.1564944671861976) +description = Salinas Municipio, PR +station = ('tjps', 0.0051143282928716727) +zone = ('prz003', 0.003240054260304099) + +[fips7212300000] +centroid = (0.31225696119406066, -1.1564472560299313) +description = Municipio subdivision not defined, PR +station = ('tjps', 0.0055508783675834554) +zone = ('prz003', 0.0038551327330725153) + +[fips7212301175] +centroid = (0.31330621823377458, -1.1562935274294155) +description = Aguirre barrio, PR +station = ('tjps', 0.0053678890341368538) +zone = ('prz003', 0.0031861090422801832) + +[fips7212341681] +centroid = (0.31488437985001289, -1.1563822076087094) +description = Lapa barrio, PR +station = ('tjps', 0.0051771540221978345) +zone = ('prz003', 0.0030035114085044333) + +[fips7212358537] +centroid = (0.31526390169585905, -1.1557826695573568) +description = Palmas barrio, PR +station = ('tjps', 0.0057861651546584859) +zone = ('prz003', 0.0025075564285647685) + +[fips7212367911] +centroid = (0.31475958880849531, -1.1553334567144784) +description = Quebrada Yeguas barrio, PR +station = ('tjps', 0.0061640647549142478) +zone = ('prz003', 0.0019993588106252329) + +[fips7212371394] +centroid = (0.31421536024113839, -1.1575046986638369) +description = Río Jueyes barrio, PR +station = ('tjps', 0.0040987118924380997) +zone = ('prz006', 0.0039483258032437596) + +[fips7212374920] +centroid = (0.31380131578268777, -1.1570905843922163) +description = Salinas barrio-pueblo, PR +station = ('tjps', 0.0045327855760587425) +zone = ('prz003', 0.0037531951199628846) + +[fips7212441] +centroid = (0.32121449706077859, -1.1556939719247705) +description = Candelaria comunidad, PR +station = ('tjig', 0.0020861529314005721) +zone = ('prz001', 0.0020431630134769814) + +[fips72125] +centroid = (0.31604073029262925, -1.1700209608753713) +description = San Germán Municipio, PR +station = ('tjmz', 0.0033440278437749708) +zone = ('prz011', 0.0016176693436589945) + +[fips7212502852] +centroid = (0.31539134563783966, -1.1701880063380798) +description = Ancones barrio, PR +station = ('tjmz', 0.0038259460286319646) +zone = ('prz011', 0.00094921447783205591) + +[fips7212510807] +centroid = (0.31621245323773295, -1.1696474604154445) +description = Caín Alto barrio, PR +station = ('tjmz', 0.0034222779113843105) +zone = ('prz011', 0.001896080753282731) + +[fips7212510850] +centroid = (0.31605762507978852, -1.1701778136152481) +description = Caín Bajo barrio, PR +station = ('tjmz', 0.0032487204587900577) +zone = ('prz011', 0.0016040217108384833) + +[fips7212521514] +centroid = (0.3153400155045385, -1.1707353415915052) +description = Cotuí barrio, PR +station = ('tjmz', 0.0036719044514584203) +zone = ('prz011', 0.00091030310546752458) + +[fips7212524309] +centroid = (0.31647732440501558, -1.170487208131749) +description = Duey Alto barrio, PR +station = ('tjmz', 0.0027371277118483097) +zone = ('prz011', 0.0020043558894006089) + +[fips7212524352] +centroid = (0.31646601467146263, -1.1708135323419946) +description = Duey Bajo barrio, PR +station = ('tjmz', 0.0025993565202655174) +zone = ('prz011', 0.0020236127199187246) + +[fips7212530802] +centroid = (0.31593848890504739, -1.1694264668255572) +description = Guamá barrio, PR +station = ('tjmz', 0.0037670570250637248) +zone = ('prz011', 0.0017547160324400601) + +[fips7212534801] +centroid = (0.31666437134095182, -1.1695957812162932) +description = Hoconuco Alto barrio, PR +station = ('tjmz', 0.0031281544947096419) +zone = ('prz011', 0.0023340334437928615) + +[fips7212534844] +centroid = (0.31623870298968293, -1.1704253362097661) +description = Hoconuco Bajo barrio, PR +station = ('tjmz', 0.0029723746416137442) +zone = ('prz011', 0.0017653514334340073) + +[fips7212550625] +centroid = (0.31554687192748487, -1.1705361122573901) +description = Maresúa barrio, PR +station = ('tjmz', 0.0035461505781431372) +zone = ('prz011', 0.0010771521513537727) + +[fips7212553248] +centroid = (0.31568349630133102, -1.1691706364637999) +description = Minillas barrio, PR +station = ('tjmz', 0.0041188444900591772) +zone = ('prz011', 0.0017105396516925585) + +[fips7212560] +centroid = (0.32144166911621819, -1.155766228555803) +description = Candelaria Arenas comunidad, PR +station = ('tjig', 0.0020758986992434145) +zone = ('prz001', 0.0021823657448317613) + +[fips7212568] +centroid = (0.31580278955570479, -1.1487138591939772) +description = Candelero Abajo comunidad, PR +station = ('tjnr', 0.0040766109363829101) +zone = ('prz002', 0.0034051488117737118) + +[fips7212569244] +centroid = (0.31536462464699161, -1.1697375194048476) +description = Retiro barrio, PR +station = ('tjmz', 0.0040582332061727391) +zone = ('prz011', 0.0011149937300915359) + +[fips7212572426] +centroid = (0.31683242909462639, -1.1699324901355879) +description = Rosario Alto barrio, PR +station = ('tjmz', 0.0027819525656397827) +zone = ('prz011', 0.0024082560068198625) + +[fips7212572469] +centroid = (0.31695463704885102, -1.1706272358976368) +description = Rosario Bajo barrio, PR +station = ('tjmz', 0.0022644037985718921) +zone = ('prz010', 0.0021481213193533808) + +[fips7212572512] +centroid = (0.31686628848211501, -1.170332153081002) +description = Rosario Peñón barrio, PR +station = ('tjmz', 0.0025034692519797213) +zone = ('prz011', 0.0023951506668321316) + +[fips7212573415] +centroid = (0.31569358430440753, -1.17099101487363) +description = Sabana Eneas barrio, PR +station = ('tjmz', 0.0032606812155901821) +zone = ('prz011', 0.0013270384124633946) + +[fips7212573673] +centroid = (0.31582385567977639, -1.1704717794211614) +description = Sabana Grande Abajo barrio, PR +station = ('tjmz', 0.0033188196318859179) +zone = ('prz011', 0.0013507232365857511) + +[fips7212576210] +centroid = (0.31557331366565261, -1.1701260995095117) +description = San Germán barrio-pueblo, PR +station = ('tjmz', 0.0036918928459746601) +zone = ('prz011', 0.001140219650744176) + +[fips7212583821] +centroid = (0.31530392209560731, -1.1710558189487565) +description = Tuna barrio, PR +station = ('tjmz', 0.0036197329484981789) +zone = ('prz011', 0.001014939903886121) + +[fips7212613] +centroid = (0.31593368924960435, -1.1490242834547368) +description = Candelero Arriba comunidad, PR +station = ('tjnr', 0.0042192003890032387) +zone = ('prz002', 0.0033440342988239865) + +[fips72127] +centroid = (0.32153089034758014, -1.1531057708171106) +description = San Juan Municipio, PR +station = ('tjig', 0.00071536874286448192) +zone = ('prz001', 0.0010249767879217627) + +[fips7212700000] +centroid = (0.32276419235691689, -1.1533139187837034) +description = Municipio subdivision not defined, PR +station = ('tjig', 0.00082055797339305417) +zone = ('prz001', 0.0021506927147730789) + +[fips7212710721] +centroid = (0.32002788260893267, -1.1531841884604026) +description = Caimito barrio, PR +station = ('tjig', 0.0020366129436505003) +zone = ('prz001', 0.0007392754319618341) + +[fips7212722847] +centroid = (0.32018763259536775, -1.152816936279198) +description = Cupey barrio, PR +station = ('tjig', 0.0019941998354443121) +zone = ('prz001', 0.00089126874882966057) + +[fips7212724868] +centroid = (0.32098830238972015, -1.1530066535688899) +description = El Cinco barrio, PR +station = ('tjig', 0.0011991067537009804) +zone = ('prz001', 0.00068887895617488078) + +[fips7212730587] +centroid = (0.32130415462445355, -1.1535129037717231) +description = Gobernador Piñero barrio, PR +station = ('tjig', 0.00072318107773876111) +zone = ('prz001', 0.0006787916003924804) + +[fips7212733984] +centroid = (0.32152200662168745, -1.1527990466543652) +description = Hato Rey Central barrio, PR +station = ('tjig', 0.00095525738503875635) +zone = ('prz001', 0.0011868896353699069) + +[fips7212734027] +centroid = (0.32155879816231953, -1.1533643413457935) +description = Hato Rey Norte barrio, PR +station = ('tjig', 0.00053535347483687091) +zone = ('prz001', 0.00095798604651332398) + +[fips7212734070] +centroid = (0.32122362513276653, -1.1529407499363344) +description = Hato Rey Sur barrio, PR +station = ('tjig', 0.0010452516104062055) +zone = ('prz001', 0.00087993378577107403) + +[fips7212753893] +centroid = (0.32045110749924882, -1.1530690490896485) +description = Monacillo barrio, PR +station = ('tjig', 0.0016605720823142632) +zone = ('prz001', 0.00056258837865185926) + +[fips7212753936] +centroid = (0.32079364581824521, -1.1533351419874076) +description = Monacillo Urbano barrio, PR +station = ('tjig', 0.00125856115338289) +zone = ('prz001', 0.00032151151276383055) + +[fips7212757247] +centroid = (0.32138564404722919, -1.1525239129510807) +description = Oriente barrio, PR +station = ('tjsj', 0.00085151111198633329) +zone = ('prz001', 0.0012903077075164546) + +[fips7212764729] +centroid = (0.32103327952454402, -1.1527504915945745) +description = Pueblo barrio, PR +station = ('tjsj', 0.001259050733095475) +zone = ('prz001', 0.00092458067346840728) + +[fips7212766879] +centroid = (0.3196205227615172, -1.1532157265599861) +description = Quebrada Arenas barrio, PR +station = ('tjig', 0.0024300197071857482) +zone = ('prz001', 0.001087316265463019) + +[fips7212774017] +centroid = (0.32123898403018408, -1.15213175492145) +description = Sabana Llana Norte barrio, PR +station = ('tjsj', 0.00080054728134838576) +zone = ('prz001', 0.0015444799549380484) + +[fips7212774060] +centroid = (0.3208620627249234, -1.1522970899614915) +description = Sabana Llana Sur barrio, PR +station = ('tjsj', 0.0012062604704189124) +zone = ('prz001', 0.001284757922641292) + +[fips7212776812] +centroid = (0.32230286692902976, -1.1538019477491461) +description = San Juan Antiguo barrio, PR +station = ('tjig', 0.00031834266870097756) +zone = ('prz001', 0.0016764355683151439) + +[fips7212779693] +centroid = (0.32196692595460585, -1.1531047934327294) +description = Santurce barrio, PR +station = ('tjig', 0.00053119672755811917) +zone = ('prz001', 0.0014224494227246809) + +[fips7212783348] +centroid = (0.32014153844982257, -1.1535135146369613) +description = Tortugo barrio, PR +station = ('tjig', 0.0018770495952786788) +zone = ('prz001', 0.00050503645498875104) + +[fips7212784079] +centroid = (0.32126924803941365, -1.1527248178012777) +description = Universidad barrio, PR +station = ('tjsj', 0.0010679159525760914) +zone = ('prz001', 0.0010676797326105178) + +[fips7212828] +centroid = (0.32076680265434954, -1.1502849173201597) +description = Canóvanas zona urbana, PR +station = ('tjsj', 0.0019880703249674728) +zone = ('prz002', 0.0026502102059729189) + +[fips72129] +centroid = (0.31672718574073111, -1.1515034712973171) +description = San Lorenzo Municipio, PR +station = ('tjsj', 0.0053006433931196461) +zone = ('prz004', 0.0014562277343059661) + +[fips7212915451] +centroid = (0.31668269729809778, -1.1514330298087065) +description = Cayaguas barrio, PR +station = ('tjsj', 0.0053503427684207551) +zone = ('prz004', 0.0015364858161242875) + +[fips7212917300] +centroid = (0.31686597432284969, -1.1509776035936912) +description = Cerro Gordo barrio, PR +station = ('tjsj', 0.0052240186929708634) +zone = ('prz004', 0.0018545197838851382) + +[fips7212927405] +centroid = (0.3161242966572147, -1.1521508488234669) +description = Espino barrio, PR +station = ('tjsj', 0.0058931240618464711) +zone = ('prz004', 0.0014857635386538596) + +[fips7212928910] +centroid = (0.31739547231131976, -1.1509472174114139) +description = Florida barrio, PR +station = ('tjsj', 0.004708710911850998) +zone = ('prz004', 0.001785204716190814) + +[fips7212933425] +centroid = (0.31759911732844237, -1.1516095000493758) +description = Hato barrio, PR +station = ('tjsj', 0.0044237903412936959) +zone = ('prz004', 0.0011623919771311406) + +[fips7212937209] +centroid = (0.31682604118956409, -1.1520365646640462) +description = Jagual barrio, PR +station = ('tjsj', 0.0051884413975313353) +zone = ('prz004', 0.00098446164223465484) + +[fips7212966750] +centroid = (0.31794467506704477, -1.1513301077427167) +description = Quebrada barrio, PR +station = ('tjsj', 0.0041065757678634112) +zone = ('prz004', 0.0014988206377898009) + +[fips7212966922] +centroid = (0.31609743604002655, -1.1511844949232226) +description = Quebrada Arenas barrio, PR +station = ('tjnr', 0.0059048306091118909) +zone = ('prz004', 0.002073583468376283) + +[fips7212967481] +centroid = (0.31670938338236077, -1.1517550081491146) +description = Quebrada Honda barrio, PR +station = ('tjsj', 0.0053061015248176881) +zone = ('prz004', 0.0012665603465160324) + +[fips7212968212] +centroid = (0.31729202664655398, -1.1517707859255526) +description = Quemados barrio, PR +station = ('tjsj', 0.0047232689804265473) +zone = ('prz004', 0.0010162615914026637) + +[fips7212977070] +centroid = (0.31749284423028845, -1.1512712552403395) +description = San Lorenzo barrio-pueblo, PR +station = ('tjsj', 0.0045618179466439465) +zone = ('prz004', 0.0014762448600348546) + +[fips72131] +centroid = (0.31994344357972121, -1.1688588333929311) +description = San Sebastián Municipio, PR +station = ('tjmz', 0.0031790839052604236) +zone = ('prz008', 0.0018786846176749943) + +[fips7213101390] +centroid = (0.32062721122077503, -1.1683686576725085) +description = Aibonito barrio, PR +station = ('tjbq', 0.0038827797393447537) +zone = ('prz008', 0.0011297804252109098) + +[fips7213102422] +centroid = (0.31929964397853805, -1.1699106909732304) +description = Alto Sano barrio, PR +station = ('tjmz', 0.0020320483358820373) +zone = ('prz010', 0.002450854815847215) + +[fips7213104486] +centroid = (0.32010265251408809, -1.1692714466813952) +description = Bahomamey barrio, PR +station = ('tjmz', 0.002883867368422945) +zone = ('prz008', 0.0018750056349889136) + +[fips7213110893] +centroid = (0.31942823983782498, -1.1689732397253991) +description = Calabazas barrio, PR +station = ('tjmz', 0.0029283692997742481) +zone = ('prz008', 0.0024045472404462137) + +[fips7213117902] +centroid = (0.32018070363823731, -1.1677030589089676) +description = Cibao barrio, PR +station = ('tjmz', 0.0042922349525645895) +zone = ('prz008', 0.0016881967682449252) + +[fips7213118203] +centroid = (0.31978039492099991, -1.1685822336130749) +description = Cidral barrio, PR +station = ('tjmz', 0.0033756345967450798) +zone = ('prz008', 0.0019895196986980828) + +[fips7213122804] +centroid = (0.319573521044761, -1.1693185705711988) +description = Culebrinas barrio, PR +station = ('tjmz', 0.0026466362201291137) +zone = ('prz008', 0.0023721626472445762) + +[fips7213126674] +centroid = (0.31996227568235025, -1.1682276176156547) +description = Eneas barrio, PR +station = ('tjmz', 0.0037510218339839221) +zone = ('prz008', 0.0017976225803432145) + +[fips7213130630] +centroid = (0.31911634950049367, -1.1694213530108488) +description = Guacio barrio, PR +station = ('tjmz', 0.0024564922015554856) +zone = ('prz009', 0.0026844351931484475) + +[fips7213130759] +centroid = (0.32036227024032227, -1.1680371498343844) +description = Guajataca barrio, PR +station = ('tjmz', 0.0040585057456346352) +zone = ('prz008', 0.0014238819137385849) + +[fips7213131791] +centroid = (0.32031448312540273, -1.1694873439098665) +description = Guatemala barrio, PR +station = ('tjmz', 0.002809238956652214) +zone = ('prz008', 0.0018065157751192406) + +[fips7213133640] +centroid = (0.32040988282231669, -1.169912087236632) +description = Hato Arriba barrio, PR +station = ('tjmz', 0.0025366743026520957) +zone = ('prz008', 0.0020091675413639308) + +[fips7213135274] +centroid = (0.32029798976397134, -1.1687299582809638) +description = Hoya Mala barrio, PR +station = ('tjmz', 0.003431405998273596) +zone = ('prz008', 0.0015046975813707594) + +[fips7213139488] +centroid = (0.3195432395822389, -1.1679786463978579) +description = Juncal barrio, PR +station = ('tjmz', 0.0038767234149579533) +zone = ('prz009', 0.0017080609521765947) + +[fips7213148776] +centroid = (0.31954091829433373, -1.1683869312697768) +description = Magos barrio, PR +station = ('tjmz', 0.0034962691656355732) +zone = ('prz009', 0.0019969896753093178) + +[fips7213153334] +centroid = (0.31903428411906481, -1.1686446640404187) +description = Mirabales barrio, PR +station = ('tjmz', 0.0031829735976164966) +zone = ('prz009', 0.0019606372772107946) + +[fips7213161246] +centroid = (0.31920415701516147, -1.1681002260335516) +description = Perchas 1 barrio, PR +station = ('tjmz', 0.0037127976096840475) +zone = ('prz009', 0.0015790453897986973) + +[fips7213161289] +centroid = (0.31889031190906786, -1.168098288718082) +description = Perchas 2 barrio, PR +station = ('tjmz', 0.0036950156343257827) +zone = ('prz009', 0.0014259894069040381) + +[fips7213161805] +centroid = (0.32001405960125689, -1.1688691133822253) +description = Piedras Blancas barrio, PR +station = ('tjmz', 0.0031957838776598482) +zone = ('prz008', 0.0018132938574772781) + +[fips7213164213] +centroid = (0.31996494603610576, -1.169692716802949) +description = Pozas barrio, PR +station = ('tjmz', 0.0024652113139545799) +zone = ('prz008', 0.0022036505277635279) + +[fips7213171910] +centroid = (0.32070412788091041, -1.169054362629032) +description = Robles barrio, PR +station = ('tjbq', 0.003323931529107193) +zone = ('prz008', 0.0012514857597145884) + +[fips7213175049] +centroid = (0.32077408067733032, -1.1695859899191896) +description = Salto barrio, PR +station = ('tjbq', 0.0029108452132735616) +zone = ('prz008', 0.0015366473775250697) + +[fips7213177543] +centroid = (0.32003756918628123, -1.1691965895097771) +description = San Sebastián barrio-pueblo, PR +station = ('tjmz', 0.0029197594633660708) +zone = ('prz008', 0.0019012581920707346) + +[fips7213180424] +centroid = (0.31965537698667951, -1.1698532870941323) +description = Sonador barrio, PR +station = ('tjmz', 0.0021952751527539267) +zone = ('prz008', 0.0025447253078967214) + +[fips72133] +centroid = (0.31333759925372545, -1.1586820105107698) +description = Santa Isabel Municipio, PR +station = ('tjps', 0.003174143549249742) +zone = ('prz006', 0.0045533564428962654) + +[fips7213300000] +centroid = (0.31243803910395507, -1.1585971875091228) +description = Municipio subdivision not defined, PR +station = ('tjps', 0.0036571737631048524) +zone = ('prz007', 0.0052127581795222986) + +[fips7213307926] +centroid = (0.31360514077476359, -1.159231422706005) +description = Boca Velázquez barrio, PR +station = ('tjps', 0.0025917292159186979) +zone = ('prz007', 0.0041559782459766846) + +[fips7213323492] +centroid = (0.31412266580456499, -1.1593071176356642) +description = Descalabrado barrio, PR +station = ('tjps', 0.0024003567544459477) +zone = ('prz006', 0.0037615394119857415) + +[fips7213328179] +centroid = (0.3133760139505618, -1.1587242474786681) +description = Felicia 1 barrio, PR +station = ('tjps', 0.0031231139562161257) +zone = ('prz006', 0.0045120509458378569) + +[fips7213328222] +centroid = (0.31404990302804936, -1.1586709625766047) +description = Felicia 2 barrio, PR +station = ('tjps', 0.0030096743573051477) +zone = ('prz006', 0.0038446635854702533) + +[fips7213338284] +centroid = (0.31287901399276391, -1.1580646875543394) +description = Jauca 1 barrio, PR +station = ('tjps', 0.0038914676259157463) +zone = ('prz003', 0.0049074853978951271) + +[fips7213338327] +centroid = (0.31425379239126733, -1.158171955490167) +description = Jauca 2 barrio, PR +station = ('tjps', 0.0034629683218803846) +zone = ('prz006', 0.0037198711024566565) + +[fips7213362794] +centroid = (0.31334929295971381, -1.1589877049292565) +description = Playa barrio, PR +station = ('tjps', 0.0028991551909846838) +zone = ('prz007', 0.0044671258489136197) + +[fips7213378188] +centroid = (0.31361618870892877, -1.1589839699246574) +description = Santa Isabel barrio-pueblo, PR +station = ('tjps', 0.0028119651250008344) +zone = ('prz006', 0.0042612279380620389) + +[fips72135] +centroid = (0.32052196786687975, -1.1561875859438195) +description = Toa Alta Municipio, PR +station = ('tjig', 0.0028219842063128189) +zone = ('prz001', 0.0024303881247483726) + +[fips7213520267] +centroid = (0.32084083952121917, -1.1565092850315473) +description = Contorno barrio, PR +station = ('tjig', 0.0029443474273621356) +zone = ('prz001', 0.0027407323375984419) + +[fips7213529856] +centroid = (0.32045513920982094, -1.1563072631706288) +description = Galateo barrio, PR +station = ('tjig', 0.0029537286307907778) +zone = ('prz001', 0.0025477096309626064) + +[fips7213555398] +centroid = (0.3208502642991799, -1.1558062664088438) +description = Mucarabones barrio, PR +station = ('tjig', 0.0023428709766311075) +zone = ('prz001', 0.002077023171445821) + +[fips7213557548] +centroid = (0.32023871838257362, -1.1556819291529319) +description = Ortíz barrio, PR +station = ('tjig', 0.0026115644858241247) +zone = ('prz001', 0.0019877681024080122) + +[fips7213562063] +centroid = (0.32050423532167949, -1.1560333511978209) +description = Piñas barrio, PR +station = ('tjig', 0.0027086962616971666) +zone = ('prz001', 0.0022851264508049894) + +[fips7213566965] +centroid = (0.32040077220362129, -1.1567981195694597) +description = Quebrada Arenas barrio, PR +station = ('tjig', 0.0033839931312561154) +zone = ('prz001', 0.0030163380395448144) + +[fips7213567180] +centroid = (0.32009568865037269, -1.1564139376945106) +description = Quebrada Cruz barrio, PR +station = ('tjig', 0.0032392718916479032) +zone = ('prz001', 0.0026971457120661666) + +[fips7213571523] +centroid = (0.3207222269452536, -1.1570551891149861) +description = Río Lajas barrio, PR +station = ('tjig', 0.0034681190463437058) +zone = ('prz001', 0.0032522630323305189) + +[fips7213582531] +centroid = (0.32092906591490744, -1.1562397014752839) +description = Toa Alta barrio-pueblo, PR +station = ('tjig', 0.0026746405812853244) +zone = ('prz001', 0.0024945377204264271) + +[fips72137] +centroid = (0.322131981741967, -1.1552864724510148) +description = Toa Baja Municipio, PR +station = ('tjig', 0.0015449109140271578) +zone = ('prz001', 0.0021712492581026717) + +[fips7213700000] +centroid = (0.32276963778418311, -1.1547097458529858) +description = Municipio subdivision not defined, PR +station = ('tjig', 0.0012483993486734591) +zone = ('prz001', 0.0023684180908073835) + +[fips7213712484] +centroid = (0.32126528614201161, -1.1557134497992225) +description = Candelaria barrio, PR +station = ('tjig', 0.0020844617936219751) +zone = ('prz001', 0.0020757439906258558) + +[fips7213752646] +centroid = (0.32156426104287827, -1.1561812678519274) +description = Media Luna barrio, PR +station = ('tjig', 0.0024311726135364154) +zone = ('prz001', 0.0025937616257928633) + +[fips7213759268] +centroid = (0.32223823738682839, -1.1544044703135194) +description = Palo Seco barrio, PR +station = ('tjig', 0.0007387717082467908) +zone = ('prz001', 0.0017643259350499912) + +[fips7213774232] +centroid = (0.32192765604643597, -1.1554023448600548) +description = Sabana Seca barrio, PR +station = ('tjig', 0.0016525301441033917) +zone = ('prz001', 0.0021218065526771011) + +[fips7213782660] +centroid = (0.32187969439859115, -1.1563498317510847) +description = Toa Baja barrio-pueblo, PR +station = ('tjig', 0.0025526276328934898) +zone = ('prz001', 0.0028658619306954174) + +[fips72139] +centroid = (0.32004212449562897, -1.1519208667879315) +description = Trujillo Alto Municipio, PR +station = ('tjsj', 0.0019711253927712437) +zone = ('prz001', 0.0017264728748510095) + +[fips7213914376] +centroid = (0.3200115637804265, -1.1523509508222078) +description = Carraízo barrio, PR +station = ('tjsj', 0.0020435414387968542) +zone = ('prz001', 0.0013640118562025729) + +[fips7213922546] +centroid = (0.32051430587146351, -1.1522717826873374) +description = Cuevas barrio, PR +station = ('tjsj', 0.0015362126416871812) +zone = ('prz001', 0.0012941113317858982) + +[fips7213924137] +centroid = (0.32025974960006015, -1.1516288208441952) +description = Dos Bocas barrio, PR +station = ('tjsj', 0.001774735247680446) +zone = ('prz001', 0.0019354245433476352) + +[fips7213925] +centroid = (0.31438828746342601, -1.1612660053749324) +description = Capitanejo comunidad, PR +station = ('tjps', 0.00051865657866566621) +zone = ('prz007', 0.0020689652407347397) + +[fips7213940606] +centroid = (0.31985961541574792, -1.1520252025706157) +description = La Gloria barrio, PR +station = ('tjsj', 0.0021560640266608962) +zone = ('prz001', 0.0017085035127021812) + +[fips7213967395] +centroid = (0.31963178013519261, -1.1511824354347051) +description = Quebrada Grande barrio, PR +station = ('tjsj', 0.0024814745838790957) +zone = ('prz001', 0.002529884907844517) + +[fips7213967653] +centroid = (0.31973314885814841, -1.1517156684277745) +description = Quebrada Negrito barrio, PR +station = ('tjsj', 0.0022881129595066834) +zone = ('prz001', 0.0020278420254444913) + +[fips7213974670] +centroid = (0.32062228939228443, -1.1519658962826331) +description = St. Just barrio, PR +station = ('tjsj', 0.001391721432449728) +zone = ('prz001', 0.0015788447621314988) + +[fips7213983649] +centroid = (0.32034087250369281, -1.1520393048309718) +description = Trujillo Alto barrio-pueblo, PR +station = ('tjsj', 0.0016763760972561183) +zone = ('prz001', 0.0015374875218721845) + +[fips72141] +centroid = (0.31888682125056383, -1.1641868138781448) +description = Utuado Municipio, PR +station = ('tjps', 0.0049795734281596511) +zone = ('prz009', 0.0024722436655301235) + +[fips7214102981] +centroid = (0.31922647977629448, -1.1658304777012107) +description = Angeles barrio, PR +station = ('tjps', 0.0061177214997078138) +zone = ('prz009', 0.0012384465235950679) + +[fips7214103884] +centroid = (0.3183485617092488, -1.1642673084632471) +description = Arenas barrio, PR +station = ('tjps', 0.0045455948419578091) +zone = ('prz009', 0.0023307448982484609) + +[fips7214110291] +centroid = (0.31932043084992928, -1.1649534322987909) +description = Caguana barrio, PR +station = ('tjps', 0.005714494704437717) +zone = ('prz009', 0.0019532154805958078) + +[fips7214112742] +centroid = (0.31969503086728485, -1.1636589215925868) +description = Caníaco barrio, PR +station = ('tjps', 0.0055320210472059915) +zone = ('prz005', 0.0029084954692013068) + +[fips7214113387] +centroid = (0.31901339252791844, -1.1630620713482822) +description = Caonillas Abajo barrio, PR +station = ('tjps', 0.0047163965481924926) +zone = ('prz005', 0.0029867820713393189) + +[fips7214113473] +centroid = (0.31852164601116911, -1.1629418879759901) +description = Caonillas Arriba barrio, PR +station = ('tjps', 0.0042117960787448269) +zone = ('prz005', 0.003335522302475353) + +[fips7214120095] +centroid = (0.31726045364038546, -1.1635782350212669) +description = Consejo barrio, PR +station = ('tjps', 0.0032757781102015684) +zone = ('prz007', 0.0021755491931138896) + +[fips7214123922] +centroid = (0.31954723638622595, -1.1630473233161029) +description = Don Alonso barrio, PR +station = ('tjps', 0.0052314469907091179) +zone = ('prz005', 0.0025685450328407082) + +[fips7214131404] +centroid = (0.3183029737091867, -1.164836146173057) +description = Guaonico barrio, PR +station = ('tjps', 0.0048092588893601951) +zone = ('prz009', 0.0017904473330160309) + +[fips7214144304] +centroid = (0.31826977754681374, -1.1633831770240644) +description = Las Palmas barrio, PR +station = ('tjps', 0.0041026775177517025) +zone = ('prz007', 0.0031705618860252867) + +[fips7214145594] +centroid = (0.31983786861326807, -1.1629596379744827) +description = Limón barrio, PR +station = ('tjps', 0.0054977981355845548) +zone = ('prz005', 0.0023047111417764604) + +[fips7214149894] +centroid = (0.31944520443815438, -1.1622759925064765) +description = Mameyes Abajo barrio, PR +station = ('tjps', 0.0050148472776206845) +zone = ('prz005', 0.0022211538176580108) + +[fips7214159827] +centroid = (0.31781258854925387, -1.1631821674541118) +description = Paso Palma barrio, PR +station = ('tjps', 0.0036073558564314119) +zone = ('prz007', 0.0027152703593672145) + +[fips7214170018] +centroid = (0.31968260412301064, -1.164016626822783) +description = Río Abajo barrio, PR +station = ('tjps', 0.0056377611714146453) +zone = ('prz009', 0.0029063359911098742) + +[fips7214172082] +centroid = (0.31870124039119929, -1.1649847609588644) +description = Roncador barrio, PR +station = ('tjps', 0.0052142405931844176) +zone = ('prz009', 0.0016921631346538473) + +[fips7214173630] +centroid = (0.31929446035065967, -1.1637668178469451) +description = Sabana Grande barrio, PR +station = ('tjps', 0.005189747281953966) +zone = ('prz009', 0.0029693006825313832) + +[fips7214175092] +centroid = (0.31910184581440953, -1.1643406995582934) +description = Salto Abajo barrio, PR +station = ('tjps', 0.0052376156659743496) +zone = ('prz009', 0.0023913803097958437) + +[fips7214175135] +centroid = (0.31886914106524117, -1.1647139382188323) +description = Salto Arriba barrio, PR +station = ('tjps', 0.0052111109458811561) +zone = ('prz009', 0.0019832408939629187) + +[fips7214178231] +centroid = (0.31855269541856207, -1.1660042252282465) +description = Santa Isabel barrio, PR +station = ('tjps', 0.0057216352728441944) +zone = ('prz009', 0.00071897741429963603) + +[fips7214179134] +centroid = (0.31984207485676536, -1.1651119431014569) +description = Santa Rosa barrio, PR +station = ('tjps', 0.0062394023013956166) +zone = ('prz009', 0.002155421524877531) + +[fips7214182015] +centroid = (0.31883519441128988, -1.1626096296462876) +description = Tetuán barrio, PR +station = ('tjps', 0.0044507980542058991) +zone = ('prz005', 0.0029085056909380147) + +[fips7214184552] +centroid = (0.31880103831782836, -1.1642435545321272) +description = Utuado barrio-pueblo, PR +station = ('tjps', 0.0049284086058697376) +zone = ('prz009', 0.0024012700764303226) + +[fips7214187562] +centroid = (0.31868567205427145, -1.1638355838194736) +description = Viví Abajo barrio, PR +station = ('tjps', 0.0046533968931314514) +zone = ('prz009', 0.0027645150744783219) + +[fips7214187605] +centroid = (0.3179286005846339, -1.1637966455238618) +description = Viví Arriba barrio, PR +station = ('tjps', 0.0039590028333780771) +zone = ('prz007', 0.0028663027819184179) + +[fips7214290] +centroid = (0.32135133087413498, -1.1515642785684566) +description = Carolina zona urbana, PR +station = ('tjsj', 0.00074182462798904789) +zone = ('prz001', 0.0020867207978229421) + +[fips72143] +centroid = (0.3217705764137565, -1.1577862028188912) +description = Vega Alta Municipio, PR +station = ('tjig', 0.0039192946411463472) +zone = ('prz005', 0.0032430817340831667) + +[fips7214300000] +centroid = (0.32311088455953302, -1.157694922099012) +description = Municipio subdivision not defined, PR +station = ('tjig', 0.003978728456614733) +zone = ('prz005', 0.0037206309507544512) + +[fips7214304830] +centroid = (0.32139395181446867, -1.1579714695189904) +description = Bajura barrio, PR +station = ('tjig', 0.0041344275617703008) +zone = ('prz005', 0.0030473643493754712) + +[fips7214312527] +centroid = (0.32070451185334586, -1.1581641887749954) +description = Candelaria barrio, PR +station = ('tjig', 0.0044671158388762964) +zone = ('prz006', 0.0029526205511280715) + +[fips7214318418] +centroid = (0.32012277616036366, -1.1583103077399726) +description = Cienegueta barrio, PR +station = ('tjig', 0.0047982786261624426) +zone = ('prz006', 0.0023558444433335202) + +[fips7214327534] +centroid = (0.32137306022332224, -1.1573628208489424) +description = Espinosa barrio, PR +station = ('tjig', 0.0035682688568596725) +zone = ('prz001', 0.0036188244034793949) + +[fips7214351356] +centroid = (0.32094599560865178, -1.1577061969259796) +description = Maricao barrio, PR +station = ('tjig', 0.0039820884241979597) +zone = ('prz006', 0.0033271547725333785) + +[fips7214352388] +centroid = (0.32049439166469823, -1.1579675948880508) +description = Mavilla barrio, PR +station = ('tjig', 0.0043579630304997159) +zone = ('prz006', 0.0028153071932456759) + +[fips7214373157] +centroid = (0.32209070470515733, -1.157619698408251) +description = Sabana barrio, PR +station = ('tjig', 0.0037544209325518839) +zone = ('prz005', 0.0034486661612316101) + +[fips7214385240] +centroid = (0.3213405272860651, -1.1576586192505705) +description = Vega Alta barrio-pueblo, PR +station = ('tjig', 0.0038502405012183147) +zone = ('prz005', 0.0033448937746564768) + +[fips72145] +centroid = (0.32210098469445159, -1.1588597548417929) +description = Vega Baja Municipio, PR +station = ('tjig', 0.0049306963096433691) +zone = ('prz005', 0.002310223097953602) + +[fips7214501734] +centroid = (0.32201689473109046, -1.1592546355850568) +description = Algarrobo barrio, PR +station = ('tjig', 0.0053045696384595355) +zone = ('prz005', 0.0019279026270301589) + +[fips7214502121] +centroid = (0.32140096803806167, -1.1583285464306561) +description = Almirante Norte barrio, PR +station = ('tjig', 0.0044686799388890149) +zone = ('prz005', 0.0027085429870805319) + +[fips7214502164] +centroid = (0.32072123210757991, -1.1585874485718968) +description = Almirante Sur barrio, PR +station = ('tjig', 0.0048480175404741485) +zone = ('prz005', 0.0025574795324592873) + +[fips7214509775] +centroid = (0.32226654662729576, -1.1585762784646838) +description = Cabo Caribe barrio, PR +station = ('tjig', 0.0046677629503198157) +zone = ('prz005', 0.002617464535960597) + +[fips7214516182] +centroid = (0.32198387310164273, -1.1581982925085796) +description = Ceiba barrio, PR +station = ('tjig', 0.0043026460364532495) +zone = ('prz005', 0.0028895282247007248) + +[fips7214517988] +centroid = (0.32272357854522299, -1.158511160230292) +description = Cibuco barrio, PR +station = ('tjig', 0.0046533016031961392) +zone = ('prz005', 0.0028551547915887038) + +[fips7214565503] +centroid = (0.32277110386075475, -1.158784566057617) +description = Puerto Nuevo barrio, PR +station = ('tjig', 0.0049168065870134701) +zone = ('prz005', 0.0026517013190797711) + +[fips7214565933] +centroid = (0.321009211434159, -1.1594019937338027) +description = Pugnado Adentro barrio, PR +station = ('tjig', 0.0055370581936487386) +zone = ('prz005', 0.0017368843545944473) + +[fips7214566019] +centroid = (0.32144990707028759, -1.1591558674026863) +description = Pugnado Afuera barrio, PR +station = ('tjig', 0.0052417291091806321) +zone = ('prz005', 0.0019239856985793812) + +[fips7214567008] +centroid = (0.32072931298201673, -1.1589094792721821) +description = Quebrada Arenas barrio, PR +station = ('tjig', 0.0051411253481972903) +zone = ('prz005', 0.0022622217055533614) + +[fips7214570104] +centroid = (0.3216506373875595, -1.1585868028000734) +description = Río Abajo barrio, PR +station = ('tjig', 0.0046854004561913366) +zone = ('prz005', 0.0024751833417306032) + +[fips7214570276] +centroid = (0.32114674337921617, -1.1587290296808184) +description = Río Arriba barrio, PR +station = ('tjig', 0.0048841541958743948) +zone = ('prz005', 0.0023434150498190024) + +[fips7214585369] +centroid = (0.32191543874167206, -1.1586702120850265) +description = Vega Baja barrio-pueblo, PR +station = ('tjig', 0.0047512718879320322) +zone = ('prz005', 0.0024372754996856813) + +[fips7214588379] +centroid = (0.32267816507808605, -1.1592086810658517) +description = Yeguada barrio, PR +station = ('tjig', 0.0053022517704226103) +zone = ('prz005', 0.0022623516371214343) + +[fips7214634] +centroid = (0.3225558349508138, -1.1656684238801629) +description = Carrizales comunidad, PR +station = ('tjbq', 0.0057275432170557777) +zone = ('prz008', 0.0026579315009002636) + +[fips72147] +centroid = (0.31634822240024557, -1.1420121090255841) +description = Vieques Municipio, PR +station = ('tjnr', 0.0039774567862506686) +zone = ('prz013', 0.00015508708590436835) + +[fips7214700000] +centroid = (0.31549067232557071, -1.1436637490033315) +description = Municipio subdivision not defined, PR +station = ('tjnr', 0.0035065473845180854) +zone = ('prz013', 0.0016384554755542332) + +[fips7214728953] +centroid = (0.31698802519744163, -1.1429681305766566) +description = Florida barrio, PR +station = ('tjnr', 0.0028672212918171465) +zone = ('prz013', 0.0010190763813630005) + +[fips7214736564] +centroid = (0.31673121745130323, -1.1421893297578316) +description = Isabel II barrio-pueblo, PR +station = ('tjnr', 0.0036341302147288247) +zone = ('prz013', 0.00042386489824369853) + +[fips7214746196] +centroid = (0.31580240558326939, -1.1436697878425433) +description = Llave barrio, PR +station = ('tjnr', 0.0032376312050676056) +zone = ('prz013', 0.0015127501857262072) + +[fips7214755312] +centroid = (0.31627387137411062, -1.1434863188315738) +description = Mosquito barrio, PR +station = ('tjnr', 0.0029633662047791505) +zone = ('prz013', 0.0012518224733324272) + +[fips7214765331] +centroid = (0.31669775948954243, -1.1406890447328173) +description = Puerto Diablo barrio, PR +station = ('tjnr', 0.0049368496164787223) +zone = ('prz013', 0.0014601033330155827) + +[fips7214765374] +centroid = (0.31619142202024642, -1.1417165898766366) +description = Puerto Ferro barrio, PR +station = ('tjnr', 0.0042983994070016837) +zone = ('prz013', 0.00044602611172476418) + +[fips7214765675] +centroid = (0.31599330969685252, -1.1427751146146785) +description = Puerto Real barrio, PR +station = ('tjnr', 0.0036314352903350704) +zone = ('prz013', 0.00065577587134571275) + +[fips7214766148] +centroid = (0.31603636696949922, -1.1443872577914533) +description = Punta Arenas barrio, PR +station = ('tjnr', 0.0027083109278583221) +zone = ('prz013', 0.0021250954588399457) + +[fips72149] +centroid = (0.31641770395776747, -1.1601818068435936) +description = Villalba Municipio, PR +station = ('tjps', 0.0025019575541712462) +zone = ('prz006', 0.0018074023974811201) + +[fips7214913430] +centroid = (0.31593532985910128, -1.1597032724692817) +description = Caonillas Abajo barrio, PR +station = ('tjps', 0.0024915925256440239) +zone = ('prz006', 0.0020356627108859995) + +[fips7214913516] +centroid = (0.31663855792131484, -1.159512281089236) +description = Caonillas Arriba barrio, PR +station = ('tjps', 0.0030902773422428159) +zone = ('prz006', 0.0013109516378708771) + +[fips7214933855] +centroid = (0.31588207986362293, -1.1603867957642402) +description = Hato Puerco Abajo barrio, PR +station = ('tjps', 0.0019684741885064444) +zone = ('prz006', 0.0023601624192196554) + +[fips7214933898] +centroid = (0.31633679049364505, -1.1604781986571673) +description = Hato Puerco Arriba barrio, PR +station = ('tjps', 0.0022707777804085606) +zone = ('prz006', 0.0020468203122600676) + +[fips7214984595] +centroid = (0.31683569286032759, -1.1602297510381459) +description = Vacas barrio, PR +station = ('tjps', 0.0028178399517345765) +zone = ('prz006', 0.0015233890734263384) + +[fips7214986874] +centroid = (0.31640262431303023, -1.1605113424596627) +description = Villalba barrio-pueblo, PR +station = ('tjps', 0.0023087868874914078) +zone = ('prz006', 0.0020191342489554206) + +[fips7214986917] +centroid = (0.31587825759256105, -1.1608726256148254) +description = Villalba Abajo barrio, PR +station = ('tjps', 0.0016821131306610701) +zone = ('prz007', 0.0024434482183382411) + +[fips7214986960] +centroid = (0.31654909234385759, -1.1608001595442827) +description = Villalba Arriba barrio, PR +station = ('tjps', 0.0023070736235059437) +zone = ('prz006', 0.0021210656149403006) + +[fips72151] +centroid = (0.31514773258084633, -1.1495115095687234) +description = Yabucoa Municipio, PR +station = ('tjnr', 0.0050785189376020869) +zone = ('prz003', 0.0035827593747200688) + +[fips7215100573] +centroid = (0.31575580529224112, -1.149443424274603) +description = Aguacate barrio, PR +station = ('tjnr', 0.0046440464425848409) +zone = ('prz002', 0.0036386231352736127) + +[fips7215110936] +centroid = (0.31510984148278548, -1.1503810500553595) +description = Calabazas barrio, PR +station = ('tjnr', 0.0057448022292938489) +zone = ('prz003', 0.0027610391164327877) + +[fips7215111452] +centroid = (0.31468213109629178, -1.1489715221514489) +description = Camino Nuevo barrio, PR +station = ('tjnr', 0.0050518587586065389) +zone = ('prz003', 0.0040565038257763322) + +[fips7215132135] +centroid = (0.31540975886144823, -1.1513679115743145) +description = Guayabota barrio, PR +station = ('tjnr', 0.0063709551319996224) +zone = ('prz003', 0.0019487694617214568) + +[fips7215137080] +centroid = (0.31585373571657055, -1.1504712835776876) +description = Jácanas barrio, PR +station = ('tjnr', 0.0054104637844530805) +zone = ('prz004', 0.0027564796550804647) + +[fips7215139359] +centroid = (0.31507964728672605, -1.1495482487494779) +description = Juan Martín barrio, PR +station = ('tjnr', 0.0051499572327423984) +zone = ('prz003', 0.0035385785733758417) + +[fips7215145680] +centroid = (0.31555544149411219, -1.1499771808664481) +description = Limones barrio, PR +station = ('tjnr', 0.0051727699859728639) +zone = ('prz003', 0.0032402590658339179) + +[fips7215162837] +centroid = (0.31542307572364092, -1.1489254105526112) +description = Playa barrio, PR +station = ('tjnr', 0.0044822852596914185) +zone = ('prz002', 0.0038169772901449368) + +[fips7215181886] +centroid = (0.31607144808746429, -1.1499925397638657) +description = Tejas barrio, PR +station = ('tjnr', 0.0049073927759924413) +zone = ('prz004', 0.0030307597056159329) + +[fips7215187906] +centroid = (0.31498487590834273, -1.149824307477266) +description = Yabucoa barrio-pueblo, PR +station = ('tjnr', 0.0054094628693590573) +zone = ('prz003', 0.0032664099452707311) + +[fips7215193] +centroid = (0.32182225561290806, -1.154341882806543) +description = Cataño zona urbana, PR +station = ('tjig', 0.00067206438612325598) +zone = ('prz001', 0.0013666914230094089) + +[fips72153] +centroid = (0.31564370279438553, -1.1668923883780014) +description = Yauco Municipio, PR +station = ('tjps', 0.0049797637935205053) +zone = ('prz009', 0.0026831085132508082) + +[fips7215300831] +centroid = (0.31637771846460427, -1.1663221544047899) +description = Aguas Blancas barrio, PR +station = ('tjps', 0.0047049103161482036) +zone = ('prz009', 0.0019807752870233297) + +[fips7215301777] +centroid = (0.31561734832268046, -1.1670487524256876) +description = Algarrobo barrio, PR +station = ('tjps', 0.005118168805703256) +zone = ('prz009', 0.0027223779447846084) + +[fips7215301949] +centroid = (0.31527550813538485, -1.1672368989190527) +description = Almácigo Alto barrio, PR +station = ('tjps', 0.0052280383358809948) +zone = ('prz009', 0.00308553084784686) + +[fips7215302035] +centroid = (0.31500267826671308, -1.1670572696324375) +description = Almácigo Bajo barrio, PR +station = ('tjps', 0.0050223857681806995) +zone = ('prz009', 0.0033345267460303451) + +[fips7215305432] +centroid = (0.31409765523638389, -1.1667920144927195) +description = Barina barrio, PR +station = ('tjps', 0.0047534607090973149) +zone = ('prz007', 0.0034603546559075337) + +[fips7215310764] +centroid = (0.31536998280779521, -1.1668237096719356) +description = Caimito barrio, PR +station = ('tjps', 0.0048574151689402536) +zone = ('prz009', 0.0029534998486361705) + +[fips7215319407] +centroid = (0.3156814193595211, -1.1674002442837468) +description = Collores barrio, PR +station = ('tjmz', 0.0053678623713069003) +zone = ('prz009', 0.002718146232167728) + +[fips7215323621] +centroid = (0.31516488916739344, -1.1666971558478734) +description = Diego Hernández barrio, PR +station = ('tjps', 0.004703969487190025) +zone = ('prz009', 0.0031570690602089253) + +[fips7215324266] +centroid = (0.31578601694159314, -1.1665752271463292) +description = Duey barrio, PR +station = ('tjps', 0.0047256991397592041) +zone = ('prz009', 0.002539648261605743) + +[fips7215329512] +centroid = (0.3163815930955437, -1.1678250399703898) +description = Frailes barrio, PR +station = ('tjmz', 0.0046431299833147041) +zone = ('prz009', 0.0022055681969245025) + +[fips7215337037] +centroid = (0.3147106323229768, -1.1664735966239854) +description = Jácana barrio, PR +station = ('tjps', 0.0044447475109908423) +zone = ('prz007', 0.0030340009449901775) + +[fips7215356430] +centroid = (0.31634392889028562, -1.1668268512645892) +description = Naranjo barrio, PR +station = ('tjps', 0.0051338140155633783) +zone = ('prz009', 0.0019804925537065623) + +[fips7215367739] +centroid = (0.31520407180910071, -1.1663774638887858) +description = Quebradas barrio, PR +station = ('tjps', 0.0044102617675573037) +zone = ('prz007', 0.0029191286301754847) + +[fips7215368814] +centroid = (0.31609747094661156, -1.1675665043482917) +description = Ranchera barrio, PR +station = ('tjmz', 0.0050026146823130384) +zone = ('prz009', 0.0023649551842261545) + +[fips7215371652] +centroid = (0.31673718647734506, -1.1663989488918776) +description = Río Prieto barrio, PR +station = ('tjps', 0.0049275713354323524) +zone = ('prz009', 0.0016139876100840958) + +[fips7215372684] +centroid = (0.31648645247700347, -1.1672686988180241) +description = Rubias barrio, PR +station = ('tjmz', 0.005051652662109783) +zone = ('prz009', 0.0019077068702213326) + +[fips7215380166] +centroid = (0.31573514059389751, -1.1661808700018408) +description = Sierra Alta barrio, PR +station = ('tjps', 0.0043520795232199405) +zone = ('prz009', 0.0026371897997773332) + +[fips7215381069] +centroid = (0.31528044741716799, -1.1676091252886254) +description = Susúa Alta barrio, PR +station = ('tjmz', 0.0054587378349315631) +zone = ('prz011', 0.0028121027993867355) + +[fips7215381155] +centroid = (0.3146216030778326, -1.1670276863016162) +description = Susúa Baja barrio, PR +station = ('tjps', 0.0049670385111502896) +zone = ('prz011', 0.0032503942462793391) + +[fips7215385541] +centroid = (0.31596344711335089, -1.1671534372742225) +description = Vegas barrio, PR +station = ('tjps', 0.0053030519317569724) +zone = ('prz009', 0.0023939200086659121) + +[fips7215388078] +centroid = (0.31479357036903161, -1.1667433547131736) +description = Yauco barrio-pueblo, PR +station = ('tjps', 0.0047061117912309313) +zone = ('prz007', 0.0032797079274900004) + +[fips7215494] +centroid = (0.31617156017335873, -1.1547600462420282) +description = Cayey zona urbana, PR +station = ('tjig', 0.0059338936528499616) +zone = ('prz003', 0.0021300096812111018) + +[fips7215623] +centroid = (0.31926068822963355, -1.1647428059646603) +description = Cayuco comunidad, PR +station = ('tjps', 0.0055606433115195798) +zone = ('prz009', 0.0021002119766134488) + +[fips7215924] +centroid = (0.31878396899774381, -1.145787901969471) +description = Ceiba zona urbana, PR +station = ('tjnr', 0.00036623906337795282) +zone = ('prz002', 0.0021986894350569225) + +[fips7216139] +centroid = (0.32188690260840197, -1.1579504906613813) +description = Ceiba comunidad, PR +station = ('tjig', 0.0040695073322401963) +zone = ('prz005', 0.0031039328194977026) + +[fips7216440] +centroid = (0.31881386648783044, -1.151263523431753) +description = Celada comunidad, PR +station = ('tjsj', 0.0032589977456433457) +zone = ('prz004', 0.0020047342578916197) + +[fips7216526] +centroid = (0.31340352033957325, -1.1559022246111184) +description = Central Aguirre comunidad, PR +station = ('tjps', 0.0057133633081479368) +zone = ('prz003', 0.0028073756743203131) + +[fips7217050] +centroid = (0.31530488202669588, -1.1618455244997645) +description = Cerillos Hoyos comunidad, PR +station = ('tjps', 0.00085549257773976934) +zone = ('prz007', 0.0014064455478575073) + +[fips7217773] +centroid = (0.32001062130263047, -1.1601236175663321) +description = Ciales zona urbana, PR +station = ('tjps', 0.0057860493205811377) +zone = ('prz005', 0.0017227115075126324) + +[fips7218074] +centroid = (0.31725731204773183, -1.1546834088345732) +description = Cidra zona urbana, PR +station = ('tjig', 0.0048536598363279858) +zone = ('prz004', 0.0017778832828336316) + +[fips7218719] +centroid = (0.31551177335622727, -1.1582906029727176) +description = Coamo zona urbana, PR +station = ('tjps', 0.0035083557135745275) +zone = ('prz006', 0.0024752510914865292) + +[fips7218891] +centroid = (0.31418157066681979, -1.1564673796762066) +description = Coco comunidad, PR +station = ('tjps', 0.0050855995152744504) +zone = ('prz003', 0.003101919238019989) + +[fips7219665] +centroid = (0.31799574340095815, -1.1558459377427417) +description = Comerío zona urbana, PR +station = ('tjig', 0.0045205571615377074) +zone = ('prz004', 0.0029185261506238214) + +[fips7219837] +centroid = (0.31567892353869081, -1.1491331047335986) +description = Comunas comunidad, PR +station = ('tjnr', 0.0044594019903664312) +zone = ('prz002', 0.0036174207757607123) + +[fips7220310] +centroid = (0.31379766804455117, -1.1558533553920627) +description = Coquí comunidad, PR +station = ('tjps', 0.0057002640733314581) +zone = ('prz003', 0.0026175751625358797) + +[fips7220353] +centroid = (0.31405719850432268, -1.1533882872631309) +description = Corazón comunidad, PR +station = ('tjig', 0.0079603149638960303) +zone = ('prz003', 0.00057084587436053867) + +[fips7220482] +centroid = (0.32220443035921725, -1.1654921107191265) +description = Corcovado comunidad, PR +station = ('tjbq', 0.0059249032902815753) +zone = ('prz008', 0.0027391903274585679) + +[fips7220783] +centroid = (0.32011127444059295, -1.1573705177509437) +description = Corozal zona urbana, PR +station = ('tjig', 0.0039995896046954209) +zone = ('prz006', 0.0027502659120517796) + +[fips7221020] +centroid = (0.31547620354607164, -1.1633027173455472) +description = Corral Viejo comunidad, PR +station = ('tjps', 0.0017532521282635606) +zone = ('prz007', 0.00037625420079415606) + +[fips7221213] +centroid = (0.31501636164804869, -1.161520701272676) +description = Coto Laurel comunidad, PR +station = ('tjps', 0.00062846290220078249) +zone = ('prz007', 0.001702398275284511) + +[fips7221385] +centroid = (0.32171350414721628, -1.1596110841781915) +description = Coto Norte comunidad, PR +station = ('tjig', 0.0056509359611417861) +zone = ('prz005', 0.0015222822744475908) + +[fips7222589] +centroid = (0.31957556307998586, -1.1397471428953936) +description = Culebra zona urbana, PR +station = ('tist', 0.0053066539789967185) +zone = ('prz012', 0.00026688535382739752) + +[fips7223062] +centroid = (0.31802499511922155, -1.1463378901233596) +description = Daguao comunidad, PR +station = ('tjnr', 0.00092430478843423406) +zone = ('prz002', 0.0019948280528789253) + +[fips7224008] +centroid = (0.32234444067181228, -1.1566490335447543) +description = Dorado zona urbana, PR +station = ('tjig', 0.0028520362895724338) +zone = ('prz001', 0.003336390534893389) + +[fips7224395] +centroid = (0.31830279917626153, -1.1474206051248341) +description = Duque comunidad, PR +station = ('tjnr', 0.001820506614639533) +zone = ('prz002', 0.0010503610453280504) + +[fips7224954] +centroid = (0.31386435707526983, -1.173017202508855) +description = El Combate comunidad, PR +station = ('tjmz', 0.0050447425430269789) +zone = ('prz011', 0.0025235390142140045) + +[fips7225556] +centroid = (0.31825136432320522, -1.1497375995200267) +description = El Mangó comunidad, PR +station = ('tjnr', 0.0040169183839319413) +zone = ('prz002', 0.0018216417847365593) + +[fips7225685] +centroid = (0.31480385035832587, -1.1492896433142099) +description = El Negro comunidad, PR +station = ('tjnr', 0.0051649276955129551) +zone = ('prz003', 0.0037583023879332873) + +[fips7225771] +centroid = (0.31422571004360272, -1.1587562393638571) +description = El Ojo comunidad, PR +station = ('tjps', 0.0029104249533972171) +zone = ('prz006', 0.0036624437274185738) + +[fips7225835] +centroid = (0.31529095429926496, -1.1624257941161751) +description = El Paraiso comunidad, PR +station = ('tjps', 0.0010259445420439191) +zone = ('prz007', 0.00086119982521882545) + +[fips7226287] +centroid = (0.31418507877861629, -1.1676422341845358) +description = El Tumbao comunidad, PR +station = ('tjps', 0.0055551982949151044) +zone = ('prz011', 0.0026783744645903695) + +[fips7226502] +centroid = (0.31418574200373206, -1.1498745729597233) +description = Emajagua comunidad, PR +station = ('tjnr', 0.0059960660481481248) +zone = ('prz003', 0.0032253629123192495) + +[fips7227190] +centroid = (0.3159428696814699, -1.1428545620022295) +description = Esperanza comunidad, PR +station = ('tjnr', 0.0036135083606866599) +zone = ('prz013', 0.00074627328434877607) + +[fips7227263] +centroid = (0.31899353068103081, -1.1714409956613789) +description = Espino comunidad, PR +station = ('tjmz', 0.00055027811284456883) +zone = ('prz010', 0.0010198505943654081) + +[fips7227964] +centroid = (0.31997454534699171, -1.145967688335719) +description = Fajardo zona urbana, PR +station = ('tjnr', 0.001513495578521071) +zone = ('prz002', 0.0021590066294341257) + +[fips7228824] +centroid = (0.32058699883480907, -1.16171888340924) +description = Florida zona urbana, PR +station = ('tjps', 0.0061374227576784061) +zone = ('prz005', 0.00096675547683368573) + +[fips7229555] +centroid = (0.32009460654623645, -1.1593807356235131) +description = Fránquez comunidad, PR +station = ('tjig', 0.0057551556285280444) +zone = ('prz005', 0.0021574778441258327) + +[fips7229727] +centroid = (0.31390472654086848, -1.1679444204912262) +description = Fuig comunidad, PR +station = ('tjps', 0.0058619475260107161) +zone = ('prz011', 0.0024426600391570866) + +[fips7229813] +centroid = (0.32055818344885867, -1.1564411473775493) +description = Galateo comunidad, PR +station = ('tjig', 0.0030112247940916911) +zone = ('prz001', 0.00266950098298012) + +[fips7230372] +centroid = (0.32213889324580486, -1.1618229573925365) +description = Garrochales comunidad, PR +station = ('tjps', 0.007688753684257206) +zone = ('prz005', 0.00094894716973344573) + +[fips7230544] +centroid = (0.31635666979382521, -1.1537081537551439) +description = G. L. García comunidad, PR +station = ('tjig', 0.005656742304216842) +zone = ('prz004', 0.0013901892645429214) + +[fips7231189] +centroid = (0.3136516014394517, -1.1681398275542794) +description = Guánica zona urbana, PR +station = ('tjps', 0.0060753174464716455) +zone = ('prz011', 0.0023389205826564977) + +[fips7231877] +centroid = (0.3154864835353659, -1.1606729599483971) +description = Guayabal comunidad, PR +station = ('tjps', 0.0014958757370972676) +zone = ('prz007', 0.0025357901813093634) + +[fips7232221] +centroid = (0.31370968599695809, -1.153837761905397) +description = Guayama zona urbana, PR +station = ('tjps', 0.0076159515150703147) +zone = ('prz003', 0.0010660527905852802) + +[fips7232307] +centroid = (0.31453938061677111, -1.1657219880349066) +description = Guayanilla zona urbana, PR +station = ('tjps', 0.0037235571528318801) +zone = ('prz007', 0.0023618283024975117) + +[fips7232522] +centroid = (0.3208611377004198, -1.1539215900693702) +description = Guaynabo zona urbana, PR +station = ('tjig', 0.001178015325071397) +zone = ('prz001', 0.00035811029840614883) + +[fips7232823] +centroid = (0.31856808922256463, -1.151544521441324) +description = Gurabo zona urbana, PR +station = ('tjsj', 0.003463279528840367) +zone = ('prz004', 0.0016419559629842545) + +[fips7233184] +centroid = (0.31835844027281507, -1.1532020606319431) +description = Hacienda San Jose comunidad, PR +station = ('tjig', 0.0036808595409114266) +zone = ('prz004', 0.00096267684753353748) + +[fips7233296] +centroid = (0.32259849079773256, -1.1662619579988887) +description = Hatillo zona urbana, PR +station = ('tjbq', 0.0051631004666810231) +zone = ('prz008', 0.0021440990756305019) + +[fips7233597] +centroid = (0.32027416601968162, -1.1699535562596595) +description = Hato Arriba comunidad, PR +station = ('tjmz', 0.0024220477932507304) +zone = ('prz008', 0.002130664171198512) + +[fips7233683] +centroid = (0.3206725897813269, -1.1482626043158739) +description = Hato Candal comunidad, PR +station = ('tjnr', 0.0033783029962587358) +zone = ('prz002', 0.0015308263170286844) + +[fips7235059] +centroid = (0.31666484257984984, -1.171475064488378) +description = Hormigueros zona urbana, PR +station = ('tjmz', 0.0022033156545517491) +zone = ('prz010', 0.0018995080027925609) + +[fips7235403] +centroid = (0.32026854605949018, -1.1566944295585986) +description = H. Rivera Colón comunidad, PR +station = ('tjig', 0.0033645110800860955) +zone = ('prz001', 0.0029318492826934067) + +[fips7235532] +centroid = (0.31680811665814607, -1.1487861681848872) +description = Humacao zona urbana, PR +station = ('tjnr', 0.0035467816317251532) +zone = ('prz002', 0.0024410720970612968) + +[fips7235962] +centroid = (0.321787209401528, -1.1616300461503135) +description = Imbéry comunidad, PR +station = ('tjps', 0.0073389916911044354) +zone = ('prz005', 0.00056784038943330213) + +[fips7236177] +centroid = (0.31411133861771956, -1.1662180106083235) +description = Indios comunidad, PR +station = ('tjps', 0.0042081356526143601) +zone = ('prz007', 0.0029375354853602756) + +[fips7236263] +centroid = (0.32193147831749785, -1.1558545073093689) +description = Ingenio comunidad, PR +station = ('tjig', 0.002080845483670951) +zone = ('prz001', 0.0024777809086165754) + +[fips7236478] +centroid = (0.32291643742756837, -1.1697846258413589) +description = Isabela zona urbana, PR +station = ('tjbq', 0.0018144652532584233) +zone = ('prz008', 0.0017945258645203188) + +[fips7237166] +centroid = (0.31697004830614611, -1.1519019474188401) +description = Jagual comunidad, PR +station = ('tjsj', 0.0050432197670950236) +zone = ('prz004', 0.0010068861177763969) + +[fips7238241] +centroid = (0.31350570936727756, -1.1583136238655514) +description = Jauca comunidad, PR +station = ('tjps', 0.0034546775641559543) +zone = ('prz006', 0.0044281902996072689) + +[fips7238370] +centroid = (0.31797944202574446, -1.1623338327178876) +description = Jayuya zona urbana, PR +station = ('tjps', 0.0035645628579079264) +zone = ('prz007', 0.0030249182731855537) + +[fips7238671] +centroid = (0.3134734905892857, -1.1548063498270837) +description = Jobos comunidad, PR +station = ('tjps', 0.0067301624434072654) +zone = ('prz003', 0.0018759369532848366) + +[fips7238972] +centroid = (0.31509031124845571, -1.1607265939163109) +description = Juana Díaz zona urbana, PR +station = ('tjps', 0.0012108600863652325) +zone = ('prz007', 0.0024553521341630262) + +[fips7239470] +centroid = (0.3196269106665795, -1.1679523966459078) +description = Juncal comunidad, PR +station = ('tjmz', 0.0039176666708291138) +zone = ('prz009', 0.0017521177984565668) + +[fips7239574] +centroid = (0.31811196487584842, -1.150459746951332) +description = Juncos zona urbana, PR +station = ('tjsj', 0.0041393449998737624) +zone = ('prz004', 0.0023380235240179114) + +[fips7239875] +centroid = (0.32104188399775641, -1.1623794381712422) +description = La Alianza comunidad, PR +station = ('tjps', 0.0066140824581390964) +zone = ('prz005', 0.0011930006900660358) + +[fips7240348] +centroid = (0.32066255413812789, -1.1493810287538444) +description = La Dolores comunidad, PR +station = ('tjsj', 0.0027596005150883657) +zone = ('prz002', 0.0019563222714358034) + +[fips7240563] +centroid = (0.31719191456065959, -1.149341846112137) +description = La Fermina comunidad, PR +station = ('tjnr', 0.003868578995311291) +zone = ('prz002', 0.0023026948600158117) + +[fips7240950] +centroid = (0.31496838254691134, -1.1703521371009373) +description = Lajas zona urbana, PR +station = ('tjmz', 0.0041476126870779945) +zone = ('prz011', 0.00050231710856292239) + +[fips7241274] +centroid = (0.31922876615761459, -1.1527811744828247) +description = La Liga comunidad, PR +station = ('tjsj', 0.0029026676237569196) +zone = ('prz001', 0.0016199829765380809) + +[fips7241294] +centroid = (0.3219929662670456, -1.1607808387494629) +description = La Luisa comunidad, PR +station = ('tjig', 0.0067523807951169884) +zone = ('prz005', 0.00069738480290761963) + +[fips7241466] +centroid = (0.31389334699414545, -1.1516569555517375) +description = Lamboglia comunidad, PR +station = ('tjnr', 0.0074481462641547017) +zone = ('prz003', 0.0016644295471914766) + +[fips7241767] +centroid = (0.3137168418468913, -1.1701756494069757) +description = La Parguera comunidad, PR +station = ('tjmz', 0.0053800096196333202) +zone = ('prz011', 0.00079793467350533563) + +[fips7242068] +centroid = (0.31917961768587844, -1.172626737448599) +description = La Playa comunidad, PR +station = ('tjmz', 0.00070797985899376237) +zone = ('prz010', 0.00084406934930201052) + +[fips7242197] +centroid = (0.31486931765856818, -1.15549886156769) +description = La Plena comunidad, PR +station = ('tjps', 0.0060135258180049351) +zone = ('prz003', 0.0021665937643172489) + +[fips7242498] +centroid = (0.31931048247319294, -1.1673133967001676) +description = Lares zona urbana, PR +station = ('tjmz', 0.0044669738463060981) +zone = ('prz009', 0.0011373642535123536) + +[fips7242842] +centroid = (0.3185883524951803, -1.1530398322779702) +description = Las Carolinas comunidad, PR +station = ('tjig', 0.0034755336510225842) +zone = ('prz004', 0.0011418365089805749) + +[fips7243057] +centroid = (0.32057444991748724, -1.1454649636979746) +description = Las Croabas comunidad, PR +station = ('tjnr', 0.0020524736885745806) +zone = ('prz002', 0.0028529955612966399) + +[fips7243702] +centroid = (0.3192692228896758, -1.1719031937538922) +description = Las Marías comunidad, PR +station = ('tjmz', 0.00046290397270629612) +zone = ('prz010', 0.00095803160916663351) + +[fips7243788] +centroid = (0.31860156463761791, -1.1691384525923931) +description = Las Marías zona urbana, PR +station = ('tjmz', 0.0027148934518477033) +zone = ('prz009', 0.0023126936954590343) + +[fips7244003] +centroid = (0.31387818008294566, -1.1574620602702108) +description = Las Ochenta comunidad, PR +station = ('tjps', 0.00417214976731473) +zone = ('prz003', 0.0040843905925630778) + +[fips7244089] +centroid = (0.31441502590756659, -1.1592679349939568) +description = Las Ollas comunidad, PR +station = ('tjps', 0.0024153158010573259) +zone = ('prz006', 0.0034674711673668914) + +[fips7244390] +centroid = (0.31727321199721747, -1.1496624980023133) +description = Las Piedras zona urbana, PR +station = ('tjnr', 0.0041305408700264105) +zone = ('prz002', 0.0024121301891765591) + +[fips7245170] +centroid = (0.31542871313712489, -1.1625242481392801) +description = La Yuca comunidad, PR +station = ('tjps', 0.0011924794256717851) +zone = ('prz007', 0.00081534124222743128) + +[fips7245336] +centroid = (0.3219214426742989, -1.1549835705593312) +description = Levittown comunidad, PR +station = ('tjig', 0.0012564168519638922) +zone = ('prz001', 0.0018185494699029883) + +[fips7245379] +centroid = (0.31491141500012632, -1.1683722879573526) +description = Liborio Negrón Torres comunidad, PR +station = ('tjmz', 0.0051994290972995879) +zone = ('prz011', 0.0020164341807715493) + +[fips7246282] +centroid = (0.3148246372297171, -1.1676716255291393) +description = Lluveras comunidad, PR +station = ('tjps', 0.0055888022329075452) +zone = ('prz011', 0.0026578893945371136) + +[fips7246368] +centroid = (0.32171711697876787, -1.1497880395354094) +description = Loíza zona urbana, PR +station = ('tjsj', 0.0020415142046613056) +zone = ('prz002', 0.0030386572484500701) + +[fips7246626] +centroid = (0.31885004716322429, -1.1503307322130247) +description = Lomas comunidad, PR +station = ('tjsj', 0.0035033290920807921) +zone = ('prz002', 0.0021673347799742271) + +[fips7247013] +centroid = (0.31517091055331281, -1.1590580591514046) +description = Los Llanos comunidad, PR +station = ('tjps', 0.0027118599669266347) +zone = ('prz006', 0.0027059063271481073) + +[fips7247336] +centroid = (0.31742491601580086, -1.153247945337978) +description = Los Panes comunidad, PR +station = ('tjig', 0.0046051884894509924) +zone = ('prz004', 0.00040391546229395612) + +[fips7247422] +centroid = (0.31822652828794934, -1.1530012954080862) +description = Los Prados comunidad, PR +station = ('tjig', 0.0038383979265170592) +zone = ('prz004', 0.00077982834212661446) + +[fips7247615] +centroid = (0.31514614433122695, -1.1611105663517498) +description = Luis Lloréns Torres comunidad, PR +station = ('tjps', 0.00096102137746466288) +zone = ('prz007', 0.002090755078411991) + +[fips7247701] +centroid = (0.31941944337839495, -1.1455963869906498) +description = Luis M. Cintrón comunidad, PR +station = ('tjnr', 0.0008999567409726651) +zone = ('prz002', 0.0023642672156847224) + +[fips7247787] +centroid = (0.32071590885336138, -1.1470464414397918) +description = Luquillo zona urbana, PR +station = ('tjnr', 0.0026299804898716273) +zone = ('prz002', 0.0018409027105088004) + +[fips7247873] +centroid = (0.32039852072888619, -1.1720818282028338) +description = Luyando comunidad, PR +station = ('tjmz', 0.0015875135599974462) +zone = ('prz010', 0.0020182863682302685) + +[fips7248604] +centroid = (0.31456809128296642, -1.1652942601951204) +description = Magas Arriba comunidad, PR +station = ('tjps', 0.0033178203463522711) +zone = ('prz007', 0.0019611243118086864) + +[fips7248862] +centroid = (0.3143335888446685, -1.1708617906958121) +description = Maguayo comunidad, PR +station = ('tjmz', 0.0046060855126185286) +zone = ('prz011', 0.00042278801351217874) + +[fips7250152] +centroid = (0.32163667475354352, -1.1603236322986106) +description = Manatí zona urbana, PR +station = ('tjig', 0.0063302290601683874) +zone = ('prz005', 0.00084666061229716225) + +[fips7250754] +centroid = (0.31378829562646793, -1.1674274190602005) +description = María Antonia comunidad, PR +station = ('tjps', 0.0053857470192400572) +zone = ('prz011', 0.0029480014461458152) + +[fips7251055] +centroid = (0.3146597385219887, -1.1577751548847259) +description = Mariano Colón comunidad, PR +station = ('tjps', 0.0038402230869403775) +zone = ('prz006', 0.0034407635185626558) + +[fips7251270] +centroid = (0.31733290225763572, -1.1689762067851275) +description = Maricao zona urbana, PR +station = ('tjmz', 0.0032216523557020171) +zone = ('prz009', 0.002359357812538342) + +[fips7251657] +centroid = (0.31543372223207811, -1.150131293439399) +description = Martorell comunidad, PR +station = ('tjnr', 0.0053626303180824477) +zone = ('prz003', 0.0030655248732503301) + +[fips7251700] +centroid = (0.31518307549819918, -1.1633792500332472) +description = Marueño comunidad, PR +station = ('tjps', 0.0016645419067122208) +zone = ('prz007', 0.00010655480816238671) + +[fips7252345] +centroid = (0.3142584000604926, -1.1501907568070147) +description = Maunabo zona urbana, PR +station = ('tjnr', 0.0061567967244606798) +zone = ('prz003', 0.002917884560986587) + +[fips7252431] +centroid = (0.31767123433313482, -1.1718451266496783) +description = Mayagüez zona urbana, PR +station = ('tjmz', 0.0011503412531632189) +zone = ('prz010', 0.00084400642957154349) + +[fips7253678] +centroid = (0.3209145796821159, -1.1584181690877458) +description = Miranda comunidad, PR +station = ('tjig', 0.0046437636043884069) +zone = ('prz005', 0.0026699549647890477) + +[fips7253807] +centroid = (0.32109104992278509, -1.1713912188711122) +description = Moca zona urbana, PR +station = ('tjbq', 0.0018182560776360682) +zone = ('prz010', 0.0028361909973172355) + +[fips7253979] +centroid = (0.32180841515193975, -1.1581254599188937) +description = Monserrate comunidad, PR +station = ('tjig', 0.0042385325714630433) +zone = ('prz005', 0.0029283373772371131) + +[fips7254366] +centroid = (0.31571964207013981, -1.1714656222571247) +description = Monte Grande comunidad, PR +station = ('tjmz', 0.0031334792387467804) +zone = ('prz011', 0.0015810751433230938) + +[fips7254688] +centroid = (0.31587391172272355, -1.1627376670002141) +description = Monte Verde comunidad, PR +station = ('tjps', 0.0016760542115743268) +zone = ('prz007', 0.00094552158577470647) + +[fips7254882] +centroid = (0.32223506088758974, -1.1699307971662134) +description = Mora comunidad, PR +station = ('tjbq', 0.0017977355413697671) +zone = ('prz008', 0.0015822762762498846) + +[fips7255097] +centroid = (0.31986052298695894, -1.1590031510931369) +description = Morovis zona urbana, PR +station = ('tjig', 0.0055060971448069856) +zone = ('prz006', 0.0019844200325387462) + +[fips7255355] +centroid = (0.32097744644177273, -1.1557174116966249) +description = Mucarabones comunidad, PR +station = ('tjig', 0.002207583051107099) +zone = ('prz001', 0.0020108847138058357) + +[fips7255828] +centroid = (0.31785405757228125, -1.1473277885152131) +description = Naguabo zona urbana, PR +station = ('tjnr', 0.0018445776223446665) +zone = ('prz002', 0.0014778401588088433) + +[fips7256129] +centroid = (0.31943209701547193, -1.1562098563450751) +description = Naranjito zona urbana, PR +station = ('tjig', 0.0035363578651644821) +zone = ('prz001', 0.0027285525540438776) + +[fips7257075] +centroid = (0.31420956574802178, -1.1538220015822516) +description = Olimpo comunidad, PR +station = ('tjps', 0.0075980524110161769) +zone = ('prz003', 0.00068536869217554496) + +[fips7257290] +centroid = (0.3180984734807305, -1.1587522949197475) +description = Orocovis zona urbana, PR +station = ('tjps', 0.0046627835930634414) +zone = ('prz006', 0.00036621230499857022) + +[fips7257806] +centroid = (0.32045915346710047, -1.1557291577624906) +description = Pájaros comunidad, PR +station = ('tjig', 0.0025019962292455421) +zone = ('prz001', 0.0020004266349889265) + +[fips7257862] +centroid = (0.32087443710932007, -1.1616197836143116) +description = Pajonal comunidad, PR +station = ('tjps', 0.0064267581542383776) +zone = ('prz005', 0.00067654521583949707) + +[fips7257978] +centroid = (0.31534954500225437, -1.157618057798754) +description = Palmarejo comunidad, PR +station = ('tjps', 0.0040837125540701931) +zone = ('prz006', 0.0028744814742304417) + +[fips7258150] +centroid = (0.31487778250544035, -1.1707035242392414) +description = Palmarejo comunidad, PR +station = ('tjmz', 0.0041207736207107531) +zone = ('prz011', 0.00047459363205790242) + +[fips7258516] +centroid = (0.31395558543527158, -1.1523556806644808) +description = Palmas comunidad, PR +station = ('tjnr', 0.0079430634731316851) +zone = ('prz003', 0.0010629307408960829) + +[fips7258602] +centroid = (0.31572065436110597, -1.1484636487924111) +description = Palmas del Mar comunidad, PR +station = ('tjnr', 0.0039604526660121661) +zone = ('prz002', 0.0034522522689433332) + +[fips7258666] +centroid = (0.32061626800636506, -1.1479655143705993) +description = Palmer comunidad, PR +station = ('tjnr', 0.0031278803028927543) +zone = ('prz002', 0.0014670112258316262) + +[fips7258967] +centroid = (0.31826553639673139, -1.156340668772512) +description = Palomas comunidad, PR +station = ('tjig', 0.004528456475289956) +zone = ('prz006', 0.0026112596794803013) + +[fips7259053] +centroid = (0.31439287767935875, -1.1670742691393519) +description = Palomas comunidad, PR +station = ('tjps', 0.0050088899007195284) +zone = ('prz011', 0.0032038494189782951) + +[fips7259139] +centroid = (0.31432137153990458, -1.1508174870881134) +description = Palo Seco comunidad, PR +station = ('tjnr', 0.0065587856589658967) +zone = ('prz003', 0.0023186302523331122) + +[fips7259386] +centroid = (0.31817535523428087, -1.1519899120131405) +description = Parcelas de Navarro comunidad, PR +station = ('tjsj', 0.0038385104922561116) +zone = ('prz004', 0.0010648031691979042) + +[fips7259420] +centroid = (0.31715264465248977, -1.1551784191170238) +description = Parcelas La Milagrosa comunidad, PR +station = ('tjig', 0.0050691487430349997) +zone = ('prz004', 0.0022577492700482905) + +[fips7259422] +centroid = (0.31557373254467308, -1.1617382914705221) +description = Parcelas Mandry comunidad, PR +station = ('tjps', 0.0011255045198332017) +zone = ('prz007', 0.0015666682951168305) + +[fips7259425] +centroid = (0.31660246451238355, -1.1548884850216825) +description = Parcelas Nuevas comunidad, PR +station = ('tjig', 0.0055345455147514655) +zone = ('prz004', 0.0021420624510907738) + +[fips7259440] +centroid = (0.31431411097021628, -1.1581520587366942) +description = Parcelas Peñuelas comunidad, PR +station = ('tjps', 0.0034789453152286307) +zone = ('prz006', 0.0036655485482305597) + +[fips7259450] +centroid = (0.31719359007674153, -1.1526262590584178) +description = Parcelas Viejas Borinquen comunidad, PR +station = ('tjsj', 0.004866424752040131) +zone = ('prz004', 0.00033049623639975383) + +[fips7260257] +centroid = (0.31624130353026841, -1.1564567331677695) +description = Pastos comunidad, PR +station = ('tjps', 0.0053930485636010722) +zone = ('prz006', 0.0029646865970163511) + +[fips7260472] +centroid = (0.31427993742346216, -1.1521521229138207) +description = Patillas zona urbana, PR +station = ('tjnr', 0.0075995709816063621) +zone = ('prz003', 0.0010828579904654471) + +[fips7260945] +centroid = (0.31795425692463825, -1.1488140410930416) +description = Peña Pobre comunidad, PR +station = ('tjnr', 0.0031819297295090977) +zone = ('prz002', 0.0013909135646625133) + +[fips7261074] +centroid = (0.3152000750051136, -1.1645035736840894) +description = Peñuelas zona urbana, PR +station = ('tjps', 0.0026709943752431888) +zone = ('prz007', 0.0011400748490033724) + +[fips7261545] +centroid = (0.31477100326180329, -1.1605548186113299) +description = Piedra Aguza comunidad, PR +station = ('tjps', 0.0012336549747105163) +zone = ('prz007', 0.0026393721706825966) + +[fips7261590] +centroid = (0.3217373802513836, -1.1673824244720841) +description = Piedra Gorda comunidad, PR +station = ('tjbq', 0.0042511554982263338) +zone = ('prz008', 0.0009094525793718497) + +[fips7263310] +centroid = (0.32076051946904233, -1.1474464185444713) +description = Playa Fortuna comunidad, PR +station = ('tjnr', 0.0028914975873684566) +zone = ('prz002', 0.0017135629247273087) + +[fips7263503] +centroid = (0.31350228852194356, -1.1569922001822812) +description = Playita comunidad, PR +station = ('tjps', 0.0046769566572030042) +zone = ('prz003', 0.0037394362434155452) + +[fips7263525] +centroid = (0.31486580954677168, -1.1502960525207875) +description = Playita comunidad, PR +station = ('tjnr', 0.0058300617669533161) +zone = ('prz003', 0.0028079840533485963) + +[fips7263568] +centroid = (0.31378405447638558, -1.1596594123451791) +description = Playita Cortada comunidad, PR +station = ('tjps', 0.0021488320083255783) +zone = ('prz007', 0.0037118115530047876) + +[fips7263697] +centroid = (0.31367996303979662, -1.1725446546138778) +description = Pole Ojea comunidad, PR +station = ('tjmz', 0.0051606452688040677) +zone = ('prz011', 0.0021512531990163113) + +[fips7263820] +centroid = (0.3139398600187111, -1.1625586485788368) +description = Ponce zona urbana, PR +station = ('tjps', 0.00087790993527609459) +zone = ('prz007', 0.00136204208466706) + +[fips7264127] +centroid = (0.31402024988405797, -1.1605866708701786) +description = Potala Pastillo comunidad, PR +station = ('tjps', 0.0012380886524873114) +zone = ('prz007', 0.0028049660727241014) + +[fips7264400] +centroid = (0.31470982947152093, -1.1548071701318321) +description = Pueblito del Carmen comunidad, PR +station = ('tjps', 0.0066618653808085682) +zone = ('prz003', 0.0014966538254916639) + +[fips7264500] +centroid = (0.31813900002596179, -1.1495011772195516) +description = Pueblito del Río comunidad, PR +station = ('tjnr', 0.0038026777007952738) +zone = ('prz002', 0.0016950462457413073) + +[fips7265589] +centroid = (0.31547786160886104, -1.172637279237281) +description = Puerto Real comunidad, PR +station = ('tjmz', 0.0033920786855179221) +zone = ('prz011', 0.002316185325255642) + +[fips7266492] +centroid = (0.31696802372421379, -1.1477075372538621) +description = Punta Santiago comunidad, PR +station = ('tjnr', 0.0025968676078337552) +zone = ('prz002', 0.0022116794762029718) + +[fips7266660] +centroid = (0.32044936216999681, -1.1664987119119217) +description = Quebrada comunidad, PR +station = ('tjmz', 0.0054625297349029968) +zone = ('prz009', 0.0021379465498722956) + +[fips7267200] +centroid = (0.31483346859573219, -1.1638541192161298) +description = Quebrada del Agua comunidad, PR +station = ('tjps', 0.0019835299540979096) +zone = ('prz007', 0.00058275766384215469) + +[fips7268040] +centroid = (0.32241481234725267, -1.1682604821654698) +description = Quebradillas zona urbana, PR +station = ('tjbq', 0.0032937205056197006) +zone = ('prz008', 0.00066252993099689863) + +[fips7268513] +centroid = (0.32115327091061863, -1.1656141965003035) +description = Rafael Capó comunidad, PR +station = ('tjbq', 0.0060252974103292816) +zone = ('prz008', 0.0026564303141896361) + +[fips7268556] +centroid = (0.32158352947782026, -1.1656069708372003) +description = Rafael González comunidad, PR +station = ('tjbq', 0.0059222235622716519) +zone = ('prz008', 0.0025994328052245047) + +[fips7268599] +centroid = (0.32239468870097721, -1.1707421658288806) +description = Rafael Hernández comunidad, PR +station = ('tjbq', 0.0010308058320535245) +zone = ('prz008', 0.0023655001195906035) + +[fips7268771] +centroid = (0.32007436072691325, -1.1468750675605384) +description = Ramos comunidad, PR +station = ('tjnr', 0.0020171117012794167) +zone = ('prz002', 0.0014621022806297305) + +[fips7269588] +centroid = (0.32007270266412391, -1.1737624406461642) +description = Rincón zona urbana, PR +station = ('tjmz', 0.0021028255267746144) +zone = ('prz010', 0.0021755187975415987) + +[fips7270448] +centroid = (0.31786505314656882, -1.1483041082454863) +description = Río Blanco comunidad, PR +station = ('tjnr', 0.002726935178918026) +zone = ('prz002', 0.001306556738654431) + +[fips7270706] +centroid = (0.31483826825117517, -1.1600833877270738) +description = Río Cañas Abajo comunidad, PR +station = ('tjps', 0.001684787969827906) +zone = ('prz006', 0.0031906459409026715) + +[fips7271136] +centroid = (0.32077226553490823, -1.1491054412649544) +description = Río Grande zona urbana, PR +station = ('tjsj', 0.0029423895767287218) +zone = ('prz002', 0.0018942276413547146) + +[fips7271437] +centroid = (0.32110777017701914, -1.1565638614772569) +description = Río Lajas comunidad, PR +station = ('tjig', 0.0028976278539271046) +zone = ('prz001', 0.0028245614056918488) + +[fips7271996] +centroid = (0.31768542385995358, -1.155097662732534) +description = Rodríguez Hevia zona urbana, PR +station = ('tjig', 0.0045371538442556076) +zone = ('prz004', 0.0021703659188198375) + +[fips7272555] +centroid = (0.31520283262533177, -1.1503340483386033) +description = Rosa Sánchez comunidad, PR +station = ('tjnr', 0.0056537823030105537) +zone = ('prz003', 0.0028230297685123361) + +[fips7273200] +centroid = (0.32226302106220667, -1.1580551231500384) +description = Sabana comunidad, PR +station = ('tjig', 0.0041740205468307218) +zone = ('prz005', 0.0030878698103147689) + +[fips7273372] +centroid = (0.31557252826748922, -1.1708575495457298) +description = Sabana Eneas comunidad, PR +station = ('tjmz', 0.0034144626265567397) +zone = ('prz011', 0.0011678866983506045) + +[fips7273544] +centroid = (0.31559256464730207, -1.1687993700253154) +description = Sabana Grande zona urbana, PR +station = ('tjmz', 0.0044222023822656359) +zone = ('prz011', 0.0019215482250987165) + +[fips7273716] +centroid = (0.32163065336762414, -1.1625941834824076) +description = Sabana Hoyos comunidad, PR +station = ('tjps', 0.0072192742821585772) +zone = ('prz005', 0.0013567906788850574) + +[fips7274189] +centroid = (0.32161686526653332, -1.1550745196666528) +description = Sabana Seca comunidad, PR +station = ('tjig', 0.0013968236448055275) +zone = ('prz001', 0.0016867981640159703) + +[fips7274877] +centroid = (0.31377908028801743, -1.1570728518470159) +description = Salinas zona urbana, PR +station = ('tjps', 0.0045527178321548289) +zone = ('prz003', 0.0037416134771842808) + +[fips7275608] +centroid = (0.32275845022367783, -1.1711308681065922) +description = San Antonio comunidad, PR +station = ('tjbq', 0.00055246056250778206) +zone = ('prz008', 0.0028296507705549362) + +[fips7275694] +centroid = (0.32193737753036961, -1.1571169039573366) +description = San Antonio comunidad, PR +station = ('tjig', 0.0032776391851634086) +zone = ('prz001', 0.003556260494056461) + +[fips7275780] +centroid = (0.32180728068792597, -1.1682563631884351) +description = San Antonio comunidad, PR +station = ('tjbq', 0.0034376955433478378) +zone = ('prz008', 9.4788432170038648e-05) + +[fips7276167] +centroid = (0.31560237339769831, -1.1701688600761855) +description = San Germán zona urbana, PR +station = ('tjmz', 0.0036469762641317635) +zone = ('prz011', 0.0011584826729161603) + +[fips7276339] +centroid = (0.32099816349999388, -1.1499149424253219) +description = San Isidro comunidad, PR +station = ('tjsj', 0.0021539493579577624) +zone = ('prz002', 0.0025437685370392005) + +[fips7276683] +centroid = (0.32120898182034224, -1.1562638393788391) +description = San José comunidad, PR +station = ('tjig', 0.0025955814015922625) +zone = ('prz001', 0.0025650419301182148) + +[fips7276770] +centroid = (0.32125244051871693, -1.1530343868507038) +description = San Juan zona urbana, PR +station = ('tjig', 0.00096647873476602721) +zone = ('prz001', 0.00083714751746539031) + +[fips7277027] +centroid = (0.31742446223019538, -1.1513483987932775) +description = San Lorenzo zona urbana, PR +station = ('tjsj', 0.0046204576163044967) +zone = ('prz004', 0.001403291437178483) + +[fips7277500] +centroid = (0.32001428649405961, -1.1692799813414374) +description = San Sebastián zona urbana, PR +station = ('tjmz', 0.0028381533692207759) +zone = ('prz008', 0.0019570814476833542) + +[fips7277672] +centroid = (0.32106193783086179, -1.150478875759934) +description = Santa Bárbara comunidad, PR +station = ('tjsj', 0.0016635586638806864) +zone = ('prz002', 0.0029784030306064962) + +[fips7277826] +centroid = (0.31777750743128874, -1.1542887200775274) +description = Santa Clara comunidad, PR +station = ('tjig', 0.0042772313241294692) +zone = ('prz004', 0.0014253220037596379) + +[fips7278145] +centroid = (0.31361618870892877, -1.1589839699246574) +description = Santa Isabel zona urbana, PR +station = ('tjps', 0.0028119651250008344) +zone = ('prz006', 0.0042612279380620389) + +[fips7279564] +centroid = (0.31546492871910375, -1.1648836365820037) +description = Santo Domingo comunidad, PR +station = ('tjps', 0.0030958534922345075) +zone = ('prz007', 0.00154079389643942) + +[fips7280596] +centroid = (0.31978022038807469, -1.1736777049109799) +description = Stella comunidad, PR +station = ('tjmz', 0.0018725836939885603) +zone = ('prz010', 0.0019025037333225627) + +[fips7280639] +centroid = (0.32167573522220316, -1.1493240961136444) +description = Suárez comunidad, PR +station = ('tjsj', 0.0024831028878554485) +zone = ('prz002', 0.0027895034643438798) + +[fips7281413] +centroid = (0.31409093571876373, -1.1642833305857803) +description = Tallaboa comunidad, PR +station = ('tjps', 0.0023818083816027386) +zone = ('prz007', 0.0013698564995560201) + +[fips7281456] +centroid = (0.31503378003398358, -1.1641764466223883) +description = Tallaboa Alta comunidad, PR +station = ('tjps', 0.0023269488990618268) +zone = ('prz007', 0.00082733445643251103) + +[fips7282055] +centroid = (0.31574339600125945, -1.1629544892531893) +description = Tibes comunidad, PR +station = ('tjps', 0.0016916547720877586) +zone = ('prz007', 0.00072635361110051535) + +[fips7282125] +centroid = (0.32180471505392549, -1.1620533408537996) +description = Tiburones comunidad, PR +station = ('tjps', 0.0073582672301585987) +zone = ('prz005', 0.00091526282840370785) + +[fips7282187] +centroid = (0.32225117027658567, -1.1604431524457872) +description = Tierras Nuevas Poniente comunidad, PR +station = ('tjig', 0.006436142181056914) +zone = ('prz005', 0.0010961731107064017) + +[fips7282488] +centroid = (0.32094077707418833, -1.1562770515212768) +description = Toa Alta zona urbana, PR +station = ('tjig', 0.002702399989751819) +zone = ('prz001', 0.0025311237049654672) + +[fips7282617] +centroid = (0.32190737532052782, -1.156365347728135) +description = Toa Baja zona urbana, PR +station = ('tjig', 0.0025660234882128297) +zone = ('prz001', 0.0028911980851598781) + +[fips7283606] +centroid = (0.32043400327257926, -1.1521390503977234) +description = Trujillo Alto zona urbana, PR +station = ('tjsj', 0.001593197930168776) +zone = ('prz001', 0.0014286424358498126) + +[fips7284509] +centroid = (0.31886388762419265, -1.1642255427342465) +description = Utuado zona urbana, PR +station = ('tjps', 0.0049760424001821634) +zone = ('prz009', 0.0024312449986355067) + +[fips7285025] +centroid = (0.31510188278139639, -1.1621403455170114) +description = Vayas comunidad, PR +station = ('tjps', 0.00072450984392618948) +zone = ('prz007', 0.0011111843710125426) + +[fips7285111] +centroid = (0.31535886506046007, -1.1559996663432572) +description = Vázquez comunidad, PR +station = ('tjps', 0.0055965101682767145) +zone = ('prz003', 0.0027317352723417688) + +[fips7285197] +centroid = (0.32140545353423927, -1.1575225708353774) +description = Vega Alta zona urbana, PR +station = ('tjig', 0.0037120033992327018) +zone = ('prz005', 0.0034732330522062147) + +[fips7285326] +centroid = (0.32185854100805705, -1.1588749741128703) +description = Vega Baja zona urbana, PR +station = ('tjig', 0.0049469720178945626) +zone = ('prz005', 0.002235507934413042) + +[fips7285971] +centroid = (0.32162288665245276, -1.1490437089693115) +description = Vieques comunidad, PR +station = ('tjsj', 0.002753879368518803) +zone = ('prz002', 0.0026372477392067437) + +[fips7286014] +centroid = (0.31673549350797059, -1.1422151780840537) +description = Vieques zona urbana, PR +station = ('tjnr', 0.003610665373406958) +zone = ('prz013', 0.00042991128137366037) + +[fips7286831] +centroid = (0.31639140184593989, -1.1603206128790047) +description = Villalba zona urbana, PR +station = ('tjps', 0.0024013608429648767) +zone = ('prz006', 0.0019086376512105927) + +[fips7287863] +centroid = (0.31498138524983876, -1.1498115491204339) +description = Yabucoa zona urbana, PR +station = ('tjnr', 0.0054025861950669357) +zone = ('prz003', 0.0032780653588216678) + +[fips7288035] +centroid = (0.3147665177656257, -1.166964313396476) +description = Yauco zona urbana, PR +station = ('tjps', 0.0049138937711701433) +zone = ('prz011', 0.0033201624900918471) + +[fips7288121] +centroid = (0.31468399859859142, -1.1528952841093199) +description = Yaurel comunidad, PR +station = ('tjig', 0.0073653934543696743) +zone = ('prz003', 0.00033314854189719667) \ No newline at end of file diff --git a/qa.log b/qa.log new file mode 100644 index 0000000..e69de29 diff --git a/slist b/slist new file mode 100644 index 0000000..882188d --- /dev/null +++ b/slist @@ -0,0 +1,5274 @@ +# Copyright (c) 2006-2012 Jeremy Stanley . Permission to +# use, copy, modify, and distribute this software is granted under terms +# provided in the LICENSE file distributed with this software. +# +# generated by manually on 2012-06-25 by running: +# +# wget -qO- http://weather.noaa.gov/pub/data/observations/metar/decoded/ \ +# | grep '.*-'$( date +%b-%Y )' ' \ +# | sed 's,.*.*,\1,' \ +# | tr A-Z a-z + +aggh +aygn +aymh +aymo +aynz +aypy +ayvn +aywk +bgaa +bgbw +bgco +bggh +bgjn +bgkk +bgmq +bgpt +bgqq +bgsf +bgss +bgtl +bguk +bguq +biar +bieg +bihn +biis +bikf +birk +bivm +bkpr +cahr +cbbc +cerm +cmfm +cmgb +cpbt +cpeh +cpfi +cpir +cpro +cpry +cpst +cpsv +cpxl +ctnk +ctra +cwae +cwaf +cwaj +cwaq +cwar +cwav +cwba +cwbe +cwbk +cwbo +cwbs +cwbt +cwbu +cwbv +cwby +cwbz +cwca +cwcf +cwci +cwcj +cwcl +cwco +cwct +cwda +cwdc +cwdj +cwdk +cwdl +cwdm +cwdo +cwdq +cwdt +cwdv +cwdz +cweb +cwee +cwef +cweh +cwek +cwel +cwep +cweq +cwer +cweu +cwew +cwez +cwfd +cwff +cwfj +cwfq +cwgb +cwgd +cwgl +cwgm +cwgr +cwgt +cwgw +cwgx +cwgy +cwgz +cwhi +cwhl +cwhm +cwhn +cwho +cwhp +cwhq +cwht +cwhv +cwid +cwig +cwii +cwij +cwik +cwil +cwip +cwiq +cwis +cwit +cwiw +cwix +cwiy +cwiz +cwjb +cwjc +cwjd +cwjh +cwji +cwjo +cwjr +cwjt +cwju +cwjv +cwjw +cwjx +cwkd +cwkg +cwkh +cwkk +cwkm +cwko +cwkp +cwkw +cwkx +cwlb +cwlc +cwle +cwli +cwlm +cwlp +cwls +cwlx +cwly +cwme +cwmj +cwmm +cwmq +cwmt +cwmz +cwnb +cwnc +cwnd +cwne +cwnh +cwnk +cwnl +cwnm +cwnp +cwnq +cwnz +cwob +cwoc +cwod +cwoe +cwoy +cwpd +cwpe +cwpf +cwpk +cwpo +cwpr +cwps +cwpx +cwpz +cwqh +cwqk +cwqo +cwqp +cwqr +cwqs +cwqv +cwra +cwrf +cwrh +cwrj +cwrk +cwrm +cwrn +cwro +cwrt +cwru +cwrx +cwry +cwrz +cwsa +cwsd +cwsf +cwsg +cwsk +cwsl +cwsp +cwsr +cwss +cwst +cwsw +cwta +cwtg +cwtn +cwtt +cwtu +cwty +cwup +cwus +cwuw +cwux +cwvd +cwvf +cwvh +cwvi +cwvn +cwvp +cwvq +cwvt +cwvu +cwvv +cwwa +cwwb +cwwe +cwwf +cwwk +cwwl +cwws +cwwu +cwwz +cwxa +cwxc +cwxi +cwxl +cwxr +cwyj +cwyk +cwyl +cwym +cwyy +cwza +cwzg +cwzl +cwzn +cwzo +cwzq +cwzs +cwzv +cwzw +cwzz +cxaf +cxag +cxaj +cxak +cxat +cxba +cxbi +cxbk +cxbo +cxbr +cxbw +cxca +cxcd +cxch +cxck +cxcp +cxcs +cxdb +cxde +cxdi +cxdk +cxdp +cxdw +cxea +cxec +cxeg +cxet +cxfm +cxfr +cxgh +cxhd +cxhf +cxhm +cxhp +cxhr +cxib +cxka +cxke +cxki +cxkm +cxkt +cxlb +cxlc +cxll +cxmd +cxmg +cxmi +cxmm +cxmo +cxmy +cxnm +cxnp +cxol +cxox +cxoy +cxpa +cxpc +cxpl +cxrb +cxrh +cxrl +cxsc +cxse +cxsh +cxsl +cxsp +cxsr +cxsw +cxtd +cxth +cxtn +cxto +cxtp +cxtv +cxvm +cxvn +cxvw +cxwb +cxwm +cxwn +cxyh +cxzc +cxzu +cxzv +cyab +cyad +cyah +cyam +cyas +cyaw +cyay +cyaz +cybb +cybc +cybd +cybg +cybk +cybl +cybn +cybq +cybr +cybu +cybv +cybw +cybx +cycb +cycd +cycg +cyco +cycp +cycq +cycs +cycx +cycy +cyda +cydb +cydc +cydf +cydn +cydp +cydq +cyed +cyeg +cyek +cyen +cyet +cyev +cyfb +cyfc +cyfo +cyfr +cyfs +cyft +cyge +cygh +cygk +cygl +cygp +cygq +cygr +cygt +cygv +cygw +cygx +cyha +cyhd +cyhe +cyhh +cyhi +cyhk +cyhm +cyhu +cyhy +cyhz +cyik +cyio +cyiv +cyjf +cyjt +cyka +cykd +cykf +cykg +cykj +cykl +cyko +cykq +cyky +cykz +cyla +cylc +cyld +cylj +cylk +cyll +cylt +cylu +cylw +cyma +cymh +cymj +cymm +cymo +cymt +cymu +cymx +cyna +cync +cynd +cyne +cynm +cyoa +cyoc +cyod +cyoj +cyoo +cyow +cyoy +cypa +cypc +cypd +cype +cypg +cyph +cypl +cypq +cypr +cypw +cypx +cypy +cyqa +cyqb +cyqd +cyqf +cyqg +cyqh +cyqi +cyqk +cyql +cyqm +cyqq +cyqr +cyqt +cyqu +cyqv +cyqw +cyqx +cyqy +cyqz +cyra +cyrb +cyrj +cyrl +cyrt +cyrv +cysb +cysc +cysd +cysf +cysj +cysk +cysl +cysm +cysn +cysp +cysy +cyte +cyth +cytl +cytq +cytr +cyts +cytz +cyua +cyub +cyul +cyus +cyut +cyux +cyuy +cyvc +cyvm +cyvo +cyvp +cyvq +cyvr +cyvt +cyvv +cywa +cywg +cywh +cywj +cywk +cywl +cywy +cyxc +cyxd +cyxe +cyxh +cyxj +cyxl +cyxn +cyxp +cyxq +cyxr +cyxs +cyxt +cyxu +cyxx +cyxy +cyxz +cyyb +cyyc +cyyd +cyye +cyyf +cyyg +cyyh +cyyj +cyyl +cyyn +cyyq +cyyr +cyyt +cyyu +cyyy +cyyz +cyze +cyzf +cyzg +cyzh +cyzp +cyzr +cyzs +cyzt +cyzu +cyzv +cyzw +cyzx +cyzy +czbf +czcp +czcr +czdb +czel +czem +czev +czfa +czfm +czfn +czfs +czhy +czmj +czmt +czmu +czol +czpc +czps +czrp +czsm +czsp +czst +cztb +czum +czzj +daad +daae +daag +daaj +daap +daas +daat +daav +daay +dabb +dabc +dabs +dabt +daef +daen +dafh +daob +daof +daoi +daon +daoo +daor +daov +datm +daua +daub +daue +daug +dauh +daui +dauk +daul +dauo +daut +dauu +dauz +dbbb +dffd +dgaa +diad +diap +dibu +didk +didl +diga +disp +diss +ditb +diyo +dnaa +dnca +dnib +dnil +dnka +dnkn +dnkt +dnmm +dnpo +drrm +drrn +drrt +drza +drzr +dtka +dtmb +dtta +dttb +dttd +dttf +dttg +dttj +dttk +dttl +dttn +dttr +dttx +dttz +dxng +dxsk +dxxx +ebaw +ebbe +ebbl +ebbr +ebci +ebcv +ebdt +ebfn +ebfs +eblb +eblg +ebos +edac +edah +edbc +eddb +eddc +edde +eddf +eddg +eddh +eddk +eddl +eddm +eddn +eddp +eddr +edds +eddt +eddv +eddw +edfe +edfh +edfm +edgs +edhi +edhk +edhl +edja +edln +edlp +edlv +edlw +edma +edmo +edny +edop +edqm +edrz +edsb +edtd +edtl +edve +edvk +edxw +eeka +eeke +eepu +eetn +eetu +efet +efha +efhf +efhk +efiv +efjo +efjy +efka +efke +efki +efkk +efks +efkt +efku +eflp +efma +efmi +efou +efpo +efro +efsa +efsi +eftp +eftu +efut +efva +efvr +egaa +egac +egae +egbb +egbe +egbj +egcc +egcn +egdl +egdm +egdr +egdx +egdy +egec +egeo +egff +eggd +eggp +eggw +eghe +eghh +eghi +eghk +eghq +egja +egjb +egjj +egka +egkb +egkk +eglc +eglf +egll +egmc +egmd +egmh +egnc +egnh +egnj +egnm +egno +egnr +egns +egnt +egnv +egnx +egom +egop +egos +egov +egow +egpa +egpb +egpc +egpd +egpe +egpf +egph +egpi +egpk +egpl +egpm +egpn +egpo +egpu +egqa +egqk +egql +egqs +egsc +egsh +egss +egtc +egte +egtg +egub +egul +egun +eguo +eguw +eguy +egva +egvn +egvo +egvp +egwc +egwu +egxc +egxd +egxe +egxg +egxp +egxs +egxt +egxu +egxw +egxz +egyd +egye +egyh +egym +egyp +ehak +eham +ehbk +ehdl +ehdv +eheh +ehfd +ehfs +ehfz +ehgg +ehgr +ehja +ehjr +ehkd +ehkv +ehlw +ehma +ehmg +ehpg +ehqe +ehrd +ehsa +ehsc +ehvk +ehvl +ehwo +eick +eidw +eikn +einn +ekah +ekbi +ekch +ekeb +ekgf +ekhn +ekhr +ekka +ekod +ekrk +ekrn +eksb +eksn +eksp +ekvd +ekvg +ekvj +ekyt +ellx +enal +enan +enat +enbl +enbn +enbo +enbr +enbs +enbv +encn +endr +endu +enek +enev +enfb +enfg +enfl +engc +engm +enhd +enhe +enhf +enhk +enhm +enhv +enkb +enkr +enlk +enmh +enml +enms +enna +enne +ennk +ennm +enno +enoa +enol +enov +enqa +enqc +enqr +enra +enrm +enro +enrs +enry +ensb +ensd +ense +ensf +ensg +ensh +ensk +ensl +ensn +enso +ensr +enss +enst +entc +ento +enva +envd +enzv +epgd +epkk +epkt +epll +eppo +eprz +epsc +epwa +epwr +escf +esdf +esgg +esgj +esgl +esgp +esgr +esgt +esib +eskn +esmk +esmq +esms +esmt +esmx +esng +esnk +esnl +esnn +esno +esnq +esns +esnu +esnx +esnz +esoe +esok +esow +espa +essa +essb +essd +essk +essl +essp +essv +esta +estl +esud +esut +etad +etar +eteb +etgg +etgy +etgz +etha +ethb +ethc +ethe +ethf +ethl +ethn +ethr +eths +etic +etie +etih +etik +etmn +etnd +etng +etnh +etnj +etnl +etnn +etns +etnt +etnu +etnw +etor +etou +etsa +etsb +etse +etsh +etsi +etsl +etsn +etuo +etwm +evla +evra +evva +eyka +eypa +eysa +eyvi +fabl +fabm +fact +facv +fady +fael +faeo +fagc +fagg +fahs +fair +fajb +fajs +fakm +fakn +fala +fale +falm +famm +fape +fapn +fapp +fapr +fasb +fasi +faup +faut +favv +fawk +fbft +fbke +fbmn +fbsk +fbsp +fcbb +fcpp +fdjr +fdms +fdmy +fdnd +fdnh +fdny +fdot +fdpp +fdst +fdvv +feff +fefg +fefo +feft +fgbt +fgsl +fhaw +fimp +fimr +fjdg +fkkd +fkkl +fkkn +fkkr +fkys +flcp +fllc +flli +flls +flmf +flnd +fmch +fmcz +fmee +fmep +fmmi +fmms +fmmt +fmna +fmnm +fmnn +fmsd +fnlu +fogr +foog +fool +foon +fpst +fqbr +fqch +fqlc +fqma +fqnp +fqpb +fqql +fqvl +fsia +ftta +fttc +fttd +fttj +ftty +fvbu +fvcz +fvfa +fvha +fvkb +fvmv +fvwn +fwcl +fwki +fxmm +fyab +fyan +fyas +fybg +fybp +fyen +fygb +fygf +fygo +fyhd +fyhn +fykb +fykm +fykt +fykx +fylz +fymh +fyml +fymp +fynd +fyoa +fyoh +fyoj +fyok +fyom +fyos +fyot +fyow +fyoy +fyrh +fyrn +fyru +fyte +fytk +fytm +fytn +fywb +fywe +fywh +fyww +fzaa +fzqa +fzwa +gabs +gbyd +gcfv +gcgm +gchi +gcla +gclp +gcrr +gcts +gcxo +geml +gfll +ggov +glrb +gmad +gmae +gmff +gmfk +gmfm +gmfo +gmmc +gmme +gmmh +gmmi +gmml +gmmn +gmmo +gmmt +gmmw +gmmx +gmmz +gmta +gmtn +gmto +gmtt +gogg +gogk +gogs +good +goog +gook +gooy +gosm +gosp +goss +gotk +gott +gqnn +gqno +gqon +gqpp +gqqp +gucy +gvac +gvba +gvnp +haab +hdam +hear +heat +heax +heba +hebl +heca +hegn +heis +helx +hema +hemm +heps +hesc +hesh +hesn +hetb +hkel +hkem +hkga +hkjk +hkkg +hkki +hkkr +hkks +hkkt +hklo +hklu +hkma +hkmb +hkme +hkml +hkmo +hkms +hkmu +hkmy +hknc +hknh +hkni +hknk +hkno +hknw +hkre +hkvo +hkwj +hllb +hllm +hlls +hllt +hryr +hsss +huak +huar +huen +hugu +huji +huka +hukb +huks +huli +huma +humi +huso +huto +huwn +k0a9 +k0e0 +k0f2 +k0j4 +k0vg +k04v +k04w +k05u +k06d +k08d +k1a5 +k1a6 +k1f0 +k1h2 +k1j0 +k1m4 +k1p1 +k1r7 +k1v4 +k2c8 +k2d5 +k2dp +k2g4 +k2i0 +k2j9 +k2v5 +k2w6 +k2wx +k3a1 +k3du +k3i2 +k3j7 +k3lf +k3r7 +k3t5 +k4a6 +k4a9 +k4bl +k4bm +k4cr +k4hv +k4i3 +k4m9 +k4mr +k4o4 +k4sl +k5c1 +k5h4 +k5sm +k5t6 +k5w8 +k6a2 +k6r3 +k6r6 +k7bm +k7l2 +k7r3 +k7r4 +k8a0 +k8d3 +k8s0 +k9a1 +k9a4 +k9d7 +k9f2 +k9l2 +k9mn +k9v9 +k11r +k12n +k14y +k19a +k20u +k20v +k21d +k33v +k36u +k40b +k40j +k42j +k46d +k65s +k79j +k96d +kaaa +kaaf +kaao +kaat +kabe +kabh +kabi +kabq +kabr +kaby +kacb +kacj +kack +kacp +kacq +kact +kacv +kacy +kadc +kadg +kadh +kadm +kads +kadu +kadw +kaeg +kaej +kael +kaex +kaff +kafj +kafk +kafn +kafp +kafw +kagc +kags +kahn +kahq +kaia +kaid +kaig +kaik +kaio +kait +kaiz +kajg +kajo +kajz +kakh +kako +kakq +kakr +kalb +kali +kalk +kalm +kaln +kalo +kals +kalw +kalx +kama +kamg +kamn +kamw +kanb +kand +kane +kanj +kank +kanw +kaoh +kaoo +kapa +kapc +kapf +kapg +kapn +kapy +kaqo +kaqp +kaqr +kaqv +kaqw +kara +karb +karg +karm +karr +kart +karv +karw +kasd +kase +kasg +kash +kasj +kasl +kast +kasw +kasx +katl +katp +kats +katt +katw +katy +kaug +kauh +kaum +kaun +kauo +kaus +kauw +kavc +kavk +kavl +kavp +kavx +kawg +kawm +kawo +kaxa +kaxh +kaxn +kaxo +kaxs +kaxx +kays +kazo +kbab +kbac +kbad +kbaf +kbak +kban +kbax +kbaz +kbbb +kbbd +kbbf +kbbg +kbbp +kbbw +kbcb +kbce +kbck +kbct +kbde +kbdh +kbdl +kbdn +kbdr +kbdu +kbea +kbed +kbeh +kbfd +kbff +kbfi +kbfl +kbfm +kbfw +kbgd +kbge +kbgf +kbgm +kbgr +kbhb +kbhk +kbhm +kbid +kbie +kbif +kbih +kbij +kbil +kbis +kbiv +kbix +kbjc +kbji +kbjj +kbjn +kbkb +kbkd +kbke +kbkf +kbkl +kbkn +kbks +kbkv +kbkw +kbkx +kblf +kblh +kbli +kblm +kblu +kblv +kbmg +kbmi +kbml +kbmq +kbmt +kbna +kbnl +kbno +kbnw +kboi +kbok +kbos +kbow +kbpc +kbpg +kbpi +kbpk +kbpt +kbqk +kbqp +kbrd +kbrl +kbro +kbta +kbtl +kbtm +kbtp +kbtr +kbtv +kbuf +kbur +kbuu +kbuy +kbve +kbvi +kbvn +kbvo +kbvs +kbvu +kbvx +kbvy +kbwd +kbwg +kbwi +kbwp +kbxk +kbyg +kbyh +kbyi +kbys +kbyy +kbzn +kc09 +kc29 +kc75 +kcad +kcae +kcag +kcak +kcao +kcar +kcav +kcbe +kcbf +kcbg +kcbk +kcbm +kcca +kccr +kccu +kccy +kcda +kcdc +kcdd +kcdh +kcdj +kcdn +kcdr +kcds +kcdw +kcec +kcef +kceu +kcew +kcey +kcez +kcfe +kcfs +kcfv +kcgc +kcge +kcgf +kcgi +kcgs +kcgz +kcha +kchd +kchk +kcho +kchs +kcic +kcid +kcin +kcir +kciu +kcjr +kckb +kckc +kcki +kckm +kckn +kckp +kckv +kcle +kcli +kclk +kcll +kclm +kcls +kclt +kcma +kcmb +kcmh +kcmi +kcmr +kcmx +kcmy +kcnb +kcnc +kcni +kcnk +kcnm +kcno +kcnu +kcnw +kcny +kcod +kcoe +kcof +kcom +kcon +kcoq +kcos +kcot +kcou +kcpc +kcpk +kcpr +kcps +kcpt +kcpw +kcqb +kcqc +kcqf +kcqm +kcqt +kcqw +kcqx +kcre +kcrg +kcrh +kcrp +kcrq +kcrs +kcrw +kcrx +kcsg +kcsm +kcsq +kcsv +kctb +kctj +kcty +kctz +kcub +kcuh +kcul +kcut +kcvb +kcvg +kcvh +kcvn +kcvo +kcvs +kcvx +kcwa +kcwc +kcwf +kcwi +kcwv +kcxo +kcxp +kcxy +kcys +kczk +kczz +kd07 +kd25 +kd39 +kd50 +kd55 +kd60 +kd95 +kdaa +kdab +kdag +kdal +kdan +kdaw +kday +kdbn +kdbq +kdca +kdcm +kdcu +kddc +kddh +kdec +kded +kdeh +kden +kdeq +kdet +kdew +kdfi +kdfw +kdgw +kdhn +kdht +kdij +kdik +kdkb +kdkk +kdkr +kdlf +kdlh +kdll +kdln +kdlp +kdls +kdlz +kdma +kdmh +kdmn +kdmo +kdmw +kdnk +kdnl +kdnn +kdns +kdnv +kdov +kdpa +kdpl +kdqh +kdra +kdri +kdrm +kdro +kdrt +kdsm +kdsv +kdtl +kdtn +kdto +kdts +kdtw +kdua +kduc +kdug +kduh +kduj +kdux +kdvk +kdvl +kdvn +kdvo +kdvp +kdvt +kdwh +kdxr +kdxx +kdyb +kdyl +kdyr +kdys +kdyt +kdzb +ke11 +ke16 +ke33 +ke38 +ke80 +kear +keat +keau +kebg +kebs +kecg +kecp +kecu +kedc +kede +kedj +kedu +kedw +keed +keen +keeo +keet +kefd +kefk +keft +kege +kegi +kegv +keha +kehc +keho +kehr +keik +keir +kekm +kekn +keko +kekq +keld +kelm +keln +kelo +kelp +kely +kelz +kemk +kemp +kemt +kemv +kend +kenl +kenv +kenw +keoe +keok +keph +keqy +keri +kerv +kery +kesc +kesf +kesn +kest +ketb +ketc +keth +keuf +keug +keul +kevb +kevm +kevv +kevw +kewb +kewk +kewn +kewr +kexx +keye +keyf +keyw +kezf +kezm +kezs +kf05 +kfaf +kfam +kfar +kfat +kfay +kfbg +kfbl +kfci +kfcm +kfcs +kfdk +kfdr +kfdw +kfdy +kfep +kfet +kfew +kffa +kffc +kffl +kffm +kffo +kfft +kffx +kffz +kfgn +kfhb +kfhr +kfhu +kfig +kfit +kfka +kfkl +kfkn +kfks +kfld +kflg +kfll +kflo +kflp +kfly +kfme +kfmh +kfmn +kfmy +kfnb +kfnl +kfnt +kfoa +kfod +kfoe +kfok +kfot +kfoz +kfpk +kfpr +kfqd +kfrg +kfri +kfrm +kfsd +kfse +kfsi +kfsm +kfso +kfst +kfsw +kftg +kftk +kftn +kftw +kfty +kful +kfve +kfvx +kfwa +kfwc +kfwn +kfws +kfwz +kfxe +kfxy +kfyg +kfyj +kfyv +kfzg +kfzy +kgad +kgaf +kgag +kgai +kgao +kgbd +kgbg +kgbk +kgbn +kgcc +kgcd +kgck +kgcm +kgcn +kgdb +kgdj +kgdp +kgdv +kged +kgeg +kgeu +kgev +kgey +kgez +kgfa +kgfk +kgfl +kgge +kggg +kggi +kggp +kggw +kghb +kghg +kghw +kgic +kgif +kgjt +kgkj +kgky +kgld +kgle +kglh +kglr +kgls +kglw +kgly +kgmj +kgmu +kgna +kgnc +kgnr +kgnt +kgnv +kgok +kgon +kgoo +kgop +kgov +kgpi +kgpm +kgpt +kgpz +kgrb +kgrd +kgrf +kgri +kgrk +kgrr +kgry +kgsb +kgsh +kgso +kgsp +kgtb +kgtf +kgtr +kgtu +kguc +kgul +kgup +kgus +kguy +kgvl +kgvt +kgvx +kgwb +kgwo +kgwr +kgww +kgxa +kgxy +kgyb +kgyh +kgyi +kgyl +kgyr +kgyy +kgzh +kgzl +kh08 +kh21 +kh78 +khaf +khai +khao +khbg +khbi +khbr +khbv +khcd +khco +khdc +khde +khdn +khdo +khef +khei +kheq +khez +khfd +khff +khfj +khgr +khhf +khhr +khhw +khib +khie +khif +khio +khjh +khjo +khka +khks +khky +khlc +khlg +khln +khlr +khlx +khmn +khms +khnb +khnd +khnr +khnz +khob +khoe +khon +khop +khot +khou +khpn +khqi +khqm +khqu +khqz +khri +khrj +khrl +khro +khrt +khrx +khsa +khsb +khse +khsi +khsp +khst +khsv +khtl +khto +khts +khua +khuf +khul +khum +khut +khvn +khvr +khvs +khwd +khwo +khwv +khwy +khxd +khya +khyi +khyr +khys +khyw +khyx +khze +khzr +khzx +khzy +ki16 +ki35 +ki39 +ki75 +kiab +kiad +kiag +kiah +kibm +kicl +kicr +kict +kida +kidi +kidp +kien +kier +kifa +kifp +kigm +kigq +kigx +kiib +kiiy +kijd +kijx +kikk +kikv +kikw +kile +kilg +kilm +kiln +kiml +kimt +kind +kinf +kinj +kink +kinl +kins +kint +kinw +kiob +kiow +kipj +kipl +kipn +kipt +kirk +kirs +kism +kisn +kiso +kisp +kisq +kisw +kith +kitr +kiwa +kiwd +kiwi +kixa +kixd +kiya +kiyk +kiza +kizg +kjac +kjan +kjas +kjax +kjbr +kjct +kjdd +kjdn +kjef +kjer +kjes +kjfk +kjfx +kjfz +kjgg +kjhw +kjka +kjkj +kjkl +kjln +kjmr +kjms +kjnx +kjot +kjpd +kjqf +kjso +kjst +kjsv +kjvl +kjvw +kjwg +kjwy +kjxi +kjxn +kjyg +kjyl +kjym +kjyo +kjyr +kjzi +kk22 +kkls +kl35 +klaa +klaf +klal +klam +klan +klar +klas +klaw +klax +klbb +klbe +klbf +klbl +klbr +klbt +klbx +klcg +klch +klci +klck +kldm +kleb +klee +klew +klex +klfi +klfk +klft +klga +klgb +klgc +klgd +klgu +klhb +klhm +klhq +klhw +klhx +klhz +klic +klit +kljf +klkr +klku +klkv +kllj +kllq +klmo +klmt +klnc +klnd +klnk +klnl +klnp +klnr +klns +klol +klom +klor +klot +klou +kloz +klpc +klpr +klqk +klrd +klrf +klrj +klro +klru +klsb +klse +klsf +klsv +klts +klua +klud +kluf +kluk +klum +klux +klvj +klvk +klvm +klvn +klvs +klwa +klwb +klwc +klwd +klwm +klws +klwt +klwv +klxl +klxn +klxt +klxv +klyh +klyv +klzu +klzz +km19 +km30 +km40 +km46 +km63 +km89 +kmae +kmaf +kmai +kman +kmao +kmbg +kmbl +kmbs +kmcb +kmcc +kmcd +kmce +kmcf +kmci +kmcj +kmck +kmcn +kmco +kmcw +kmdd +kmdh +kmdj +kmdq +kmds +kmdt +kmdw +kmdz +kmeb +kmeh +kmei +kmem +kmer +kmez +kmfd +kmfe +kmfi +kmfr +kmfv +kmgc +kmge +kmgg +kmgj +kmgm +kmgn +kmgr +kmgw +kmgy +kmhe +kmhk +kmhr +kmhs +kmht +kmhv +kmia +kmib +kmic +kmie +kmis +kmiv +kmiw +kmjq +kmkc +kmke +kmkg +kmkj +kmkl +kmkn +kmko +kmks +kmkt +kmlb +kmlc +kmle +kmlf +kmli +kmlj +kmlp +kmls +kmlt +kmlu +kmmh +kmmk +kmml +kmmt +kmmu +kmmv +kmne +kmnh +kmni +kmnm +kmnn +kmnz +kmob +kmod +kmop +kmot +kmox +kmpo +kmpv +kmpz +kmqb +kmqe +kmqi +kmqs +kmqy +kmrb +kmrf +kmrh +kmrj +kmrt +kmry +kmsl +kmsn +kmso +kmsp +kmss +kmsv +kmsy +kmtc +kmth +kmtj +kmtn +kmto +kmtp +kmtv +kmtw +kmui +kmuo +kmut +kmve +kmvl +kmvn +kmvy +kmwa +kmwc +kmwh +kmwk +kmwl +kmwm +kmwn +kmwo +kmws +kmwt +kmxf +kmxo +kmyf +kmyl +kmyp +kmyr +kmyt +kmyv +kmzg +kmzh +kmzz +kn60 +knak +knbc +knbg +knbt +knca +kndz +knel +knew +knfg +knfl +knfw +kngp +kngu +knhk +knid +knip +knjk +knjm +knkt +knkx +knlc +knmm +knog +knpa +knqa +knqi +knqx +knrb +knrs +knse +knsi +kntd +kntu +knuc +knui +knuq +knuw +knxf +knxp +knyc +knyg +knyl +knzy +ko22 +ko54 +ko69 +ko86 +koaj +koak +kobe +kocf +koch +kocw +kodo +kodx +koeb +koeo +koff +kofk +kofp +koga +kogb +kogd +koja +kojc +kokb +kokc +kokk +kokm +kokv +kole +kolf +kolm +kols +kolu +kolv +koly +kolz +koma +komh +komk +komn +kona +konl +konm +kono +konp +kont +konx +konz +kooa +kopf +kopm +kopn +koqt +koqu +korb +korc +kord +kore +korf +korg +korh +korl +kors +kosa +kosc +kosh +kosu +kotg +koth +kotm +koun +kove +kovl +kovs +kowa +kowb +kowd +koxb +koxc +koxi +koxr +koxv +koza +kozr +kozw +kp28 +kp53 +kp58 +kp59 +kp60 +kp68 +kp69 +kp92 +kpae +kpah +kpam +kpan +kpao +kpbf +kpbg +kpbh +kpbi +kpcm +kpcz +kpdc +kpdk +kpdt +kpdx +kpea +kpeo +kpeq +kpex +kpez +kpga +kpgd +kpgv +kphd +kphf +kphl +kphn +kphp +kphx +kpia +kpib +kpie +kpih +kpil +kpir +kpit +kpkb +kpkd +kpkv +kpln +kplu +kpmd +kpmp +kpmv +kpna +kpnc +kpne +kpnm +kpns +kpnt +kpob +kpoc +kpoe +kpof +kpou +kpov +kppa +kppf +kppo +kppq +kpqi +kpql +kpqn +kprb +kprc +kprg +kprn +kpro +kprx +kpsc +kpsf +kpsk +kpsm +kpsn +kpso +kpsp +kpsx +kptb +kptk +kptn +kpts +kptt +kptv +kptw +kpub +kpuc +kpuj +kpuw +kpvb +kpvc +kpvd +kpvf +kpvg +kpvj +kpvu +kpvw +kpwa +kpwc +kpwg +kpwk +kpwm +kpwt +kpym +kpyx +kpzq +kqa4 +kqa7 +kqar +kqay +kqaz +kqb6 +kqbl +kqbr +kqbs +kqbu +kqc3 +kqca +kqcc +kqcj +kqck +kqcn +kqd2 +kqd9 +kqdd +kqdm +kqdp +kqdx +kqea +kqeb +kqei +kqej +kqel +kqen +kqep +kqeq +kqer +kqes +kqev +kqew +kqex +kqey +kqfb +kqfs +kqft +kqfu +kqfv +kqfw +kqfx +kqgv +kqgx +kqht +kqhy +kqir +kqiu +kqka +kqkg +kql5 +kqld +kqlt +kqly +kqm1 +kqmh +kqml +kqms +kqow +kqox +kqpd +kqqn +kqqr +kqqs +kqqy +kqrh +kqry +kqsa +kqsb +kqsd +kqsn +kqsr +kqtd +kqth +kqts +kqtz +kqud +kqve +kqvf +kqvp +kqwl +kqwm +kqxt +kqyk +kqyu +kqz4 +krac +kral +krap +kras +krbd +krbg +krbl +krbo +krbw +krca +krce +krcm +krcr +krcx +krcz +krdd +krdg +krdk +krdm +krdr +krdu +kreo +krfd +krfi +krgk +krhi +krhp +krhv +kric +kril +kriv +kriw +krkd +krkp +krkr +krks +krme +krmg +krmn +krmy +krnd +krnh +krnm +krno +krnp +krnt +kroa +kroc +krog +kros +krow +krox +krpd +krph +krpj +krqb +krqe +krqo +krrl +krrt +krsl +krsn +krsp +krst +krsv +krsw +krtn +krts +krue +krug +kruq +krut +krvs +krwf +krwi +krwl +krwv +krxe +kryn +kryt +kryv +kryw +kryy +krzl +krzn +ks32 +ksac +ksad +ksaf +ksan +ksar +ksat +ksav +ksaw +ksaz +ksba +ksbd +ksbm +ksbn +ksbo +ksbp +ksbs +ksby +kscf +ksch +ksck +ksda +ksdb +ksdf +ksdl +ksdm +ksdy +ksea +ksee +kseg +ksep +kset +ksez +ksfb +ksff +ksfm +ksfo +ksfq +ksfy +ksfz +ksgf +ksgh +ksgj +ksgr +ksgs +ksgt +ksgu +kshd +kshl +kshn +kshr +kshv +ksif +ksiy +ksjc +ksjn +ksjt +ksjx +kska +kskf +kskx +kslb +kslc +ksle +kslg +kslh +ksli +kslk +ksln +kslo +kslr +ksme +ksmf +ksmn +ksmo +ksmp +ksmq +ksms +ksmx +ksna +ksnc +ksnk +ksnl +ksns +ksnt +ksny +ksoa +ksop +ksow +kspa +kspb +kspd +kspf +kspg +kspi +kspl +kspr +ksps +kspw +ksqi +ksql +ksrb +ksrc +ksrq +ksrr +kssc +kssf +kssi +kstc +kste +kstf +kstj +kstk +kstl +kstp +ksts +kstz +ksua +ksue +ksun +ksus +ksut +ksuu +ksuw +ksux +ksvc +ksvh +ksvn +kswf +kswo +ksww +ksxt +ksyf +ksyn +ksyr +kszl +kszt +kt35 +kt65 +kt82 +ktad +ktan +ktaz +ktbn +ktbr +ktbx +ktcc +ktcl +ktcm +ktcs +ktdf +ktdr +ktdz +kteb +ktew +ktex +ktfp +ktha +kthv +ktif +ktik +ktip +ktiw +ktix +ktkc +ktki +ktkv +ktlh +ktma +ktmb +ktme +ktmk +ktnb +ktnu +ktoa +ktob +ktoc +ktoi +ktol +ktop +ktor +ktpa +ktpf +ktph +ktpl +ktqe +ktqh +ktri +ktrk +ktrl +ktrm +ktsp +ktta +kttd +kttf +kttn +ktts +ktul +ktup +ktus +ktvc +ktvf +ktvi +ktvk +ktvl +ktvr +ktwf +ktwm +ktxk +ktyq +ktyr +ktys +ktzr +ku16 +ku24 +ku78 +kuao +kube +kucp +kues +kugn +kuil +kuin +kukf +kuki +kukt +kulm +kuni +kuno +kunu +kunv +kuox +kuta +kuts +kuuu +kuva +kuxl +kuza +kvad +kvaf +kvay +kvbg +kvbs +kvbt +kvcb +kvct +kvcv +kvdf +kvdi +kvel +kver +kves +kvgt +kvih +kvis +kvji +kvky +kvld +kvll +kvnc +kvnp +kvny +kvoa +kvok +kvpc +kvps +kvpz +kvqq +kvqt +kvrb +kvsf +kvta +kvti +kvtn +kvuj +kvuo +kvvg +kvvv +kvwu +kvys +kw22 +kw29 +kw99 +kwal +kwdg +kwdr +kwhp +kwjf +kwld +kwmc +kwrb +kwri +kwrl +kwst +kwvi +kwvl +kwwd +kwwr +kwys +kxbp +kxfl +kxih +kxll +kxmr +kxna +kxpy +kxsa +kxvg +ky19 +ky50 +ky51 +ky63 +ky70 +kyip +kykm +kykn +kyng +kzzv +lati +lbbg +lbgo +lbpd +lbsf +lbwn +lcen +lclk +lcph +lcra +lddu +ldlo +ldos +ldpl +ldri +ldsb +ldsp +ldza +ldzd +leab +leal +leam +leao +leas +leba +lebb +lebg +lebl +lebt +lebz +leco +lecv +leda +leec +lega +lege +legr +legt +lehc +leib +lejr +lelc +lell +leln +lelo +lemd +lemg +lemh +lemo +lepa +lepp +leri +lers +lert +lesa +leso +lest +leto +levc +levd +levs +levt +levx +lexj +lezg +lezl +lfaq +lfba +lfbc +lfbd +lfbe +lfbg +lfbh +lfbi +lfbl +lfbm +lfbo +lfbp +lfbt +lfbu +lfby +lfbz +lfcr +lfdh +lfgj +lfhp +lfjl +lfjr +lfkb +lfkc +lfkf +lfkj +lfks +lflb +lflc +lfld +lfll +lflm +lfln +lflp +lflq +lfls +lflv +lflw +lflx +lfly +lfmc +lfmd +lfmh +lfmi +lfmk +lfml +lfmn +lfmo +lfmp +lfmt +lfmu +lfmv +lfmy +lfoa +lfob +lfoc +lfoe +lfoh +lfoj +lfok +lfop +lfor +lfot +lfpb +lfpc +lfpg +lfpm +lfpn +lfpo +lfpt +lfpv +lfqb +lfqg +lfqi +lfqq +lfrb +lfrc +lfrd +lfrg +lfrh +lfri +lfrj +lfrk +lfrl +lfrm +lfrn +lfro +lfrq +lfrs +lfrt +lfrz +lfsb +lfsd +lfsf +lfsi +lfsl +lfso +lfst +lfsx +lfth +lftw +lfvp +lfxa +lfyr +lgad +lgal +lgav +lgbl +lgel +lghi +lgio +lgir +lgkc +lgkf +lgkl +lgko +lgkp +lgkr +lgkv +lgkz +lglm +lglr +lgmk +lgmt +lgnx +lgpa +lgpz +lgrp +lgrx +lgsa +lgsk +lgsm +lgso +lgsr +lgsy +lgtg +lgts +lgza +lhbc +lhbp +lhdc +lhke +lhpa +lhpp +lhpr +lhsm +lhsn +lhud +liba +libc +libd +libf +libg +libh +libn +libp +libq +libr +libt +libv +liby +lica +licc +licd +licf +licg +licj +licl +licr +lict +licz +liea +lieb +liec +lied +liee +lieo +lima +limc +lime +limf +limg +limh +limj +limk +liml +limn +limp +lims +limt +limu +limv +limy +limz +lipa +lipb +lipc +lipe +lipf +liph +lipi +lipk +lipl +lipo +lipq +lipr +lips +lipu +lipx +lipy +lipz +liqc +liqn +liqo +liqw +lira +lire +lirf +lirg +lirh +liri +lirk +lirl +lirm +lirn +lirp +lirq +lirs +lirt +liru +lirv +lirx +lirz +livc +livd +live +livf +livm +livo +livp +livr +livt +liyw +ljce +ljlj +ljmb +ljpz +lkcv +lkkb +lkku +lkkv +lklb +lkln +lkmt +lkna +lkpd +lkpo +lkpr +lktb +llbg +llet +llha +llib +llov +llsd +lmml +loan +loav +loih +lowg +lowi +lowk +lowl +lows +loww +lowz +loxa +loxn +loxt +loxz +lpar +lpaz +lpbj +lpfl +lpfr +lphr +lpla +lpma +lpmr +lpmt +lpov +lppd +lppr +lpps +lppt +lpst +lqbk +lqmo +lqsa +lqtz +lrar +lrbc +lrbm +lrbs +lrck +lrcl +lrcv +lria +lrod +lrop +lrsb +lrsm +lrsv +lrtc +lrtm +lrtr +lsgc +lsgg +lsgs +lsma +lsmd +lsme +lsmm +lsmp +lsms +lsza +lszb +lszc +lszg +lszh +lszl +lszr +lszs +ltac +ltaf +ltag +ltai +ltaj +ltan +ltap +ltar +ltat +ltau +ltaz +ltba +ltbj +ltbr +ltbs +ltbu +ltca +ltcc +ltcd +ltce +ltcf +ltcg +ltci +ltcj +ltck +ltfc +ltfe +ltfh +ltfj +lubl +lubm +lukk +lwoh +lwsk +lxgb +lybe +lybt +lykv +lyni +lypg +lytv +lyuz +lyvr +lzib +lzkc +lzkz +lzlu +lzni +lzpe +lzpp +lzsl +lztt +lzzi +mbgt +mbpv +mdab +mdbh +mdcy +mdjb +mdlr +mdpc +mdpp +mdsd +mdst +mgcb +mgcp +mges +mggt +mght +mgmm +mgmt +mgpb +mgpc +mgqz +mgrt +mgsj +mgtu +mgza +mham +mhca +mhch +mhcl +mhlc +mhle +mhlm +mhno +mhpl +mhro +mhsc +mhsr +mhte +mhtg +mhtr +mhyr +mkjp +mkjs +mlrm +mmaa +mman +mmas +mmbt +mmcb +mmce +mmcl +mmcm +mmcn +mmcp +mmcs +mmct +mmcu +mmcv +mmcz +mmdo +mmep +mmgl +mmgm +mmho +mmia +mmio +mmit +mmlm +mmlo +mmlp +mmlt +mmma +mmmd +mmml +mmmm +mmmt +mmmv +mmmx +mmmy +mmmz +mmnl +mmox +mmpa +mmpb +mmpg +mmpn +mmpr +mmps +mmqt +mmrx +mmsd +mmsl +mmsp +mmtb +mmtc +mmtg +mmtj +mmtm +mmto +mmtp +mmun +mmva +mmvr +mmzc +mmzh +mmzo +mnbl +mnch +mnjg +mnju +mnmg +mnpc +mnrs +mpbo +mpch +mpda +mpmg +mppa +mpto +mrlb +mrlm +mroc +mrpv +mslp +msss +mtpp +mucc +mucf +mucl +mucm +mucu +mugm +muha +muhg +mumz +musc +muvr +mwcb +mwcr +myeg +mygf +mynn +mzbz +ncrg +nffn +nfna +nftf +nftl +nftv +ngfu +ngtt +niue +nmmg +nsfa +nstu +ntaa +nvvv +nwww +nzaa +nzch +nzsp +nzwn +oafz +oahr +oakb +oakn +oams +oauz +obbi +oeab +oeah +oeao +oeba +oebh +oedf +oedm +oedr +oegn +oegs +oegt +oehl +oejn +oekj +oekk +oekm +oema +oemk +oeng +oepa +oerf +oerk +oerr +oesh +oesk +oetb +oetf +oetr +oewd +oewj +oeyn +oiaa +oiad +oiag +oiah +oiai +oiam +oiaw +oiba +oibb +oibj +oibk +oibl +oibp +oibq +oibs +oibv +oicc +oici +oicj +oick +oics +oifk +oifm +oifs +oigg +oigk +oihh +oihm +oihs +oiie +oiii +oiik +oiip +oiis +oikb +oikk +oikm +oiko +oikq +oimb +oimc +oimd +oimm +oimq +oims +oimt +oinb +oine +oing +oink +oinn +oinr +oinz +oisa +oisf +oisl +oisr +oiss +oisy +oitk +oitl +oitm +oitr +oitt +oitu +oitz +oiyy +oizb +oizc +oizh +oizi +oizj +ojai +ojam +ojaq +okbk +olba +omaa +omad +omah +omal +omam +omdb +omdl +omdm +omdw +omfj +omlw +ommz +omrk +omsj +omsn +omth +ooms +oosa +opfa +opkc +opla +opmt +opnh +opps +oprn +opsk +opst +orbb +orbi +orbm +orbs +orer +ormb +ormm +orn1 +orni +orsu +osap +osdi +osdz +oskl +oslk +otbd +oyaa +oyag +oyar +oyas +oyat +oydm +oyhd +oyhj +oyib +oymb +oyrn +oysd +oysh +oysn +oysq +oysy +oytz +paak +paap +paaq +paba +pabe +pabi +pabl +pabn +pabr +pabt +pabv +pacd +pacm +pacv +pacz +pade +padg +padk +padl +padm +padq +padu +paec +paed +paeg +paeh +paei +pael +paem +paen +paer +pafa +pafb +pafe +pafk +pafm +pafs +paga +pagb +pagh +pagk +pagl +pagm +pagn +pags +pagy +pahc +pahl +pahn +paho +pahp +pahv +pahy +paig +paii +paik +pail +paim +pain +paiw +pajc +pajn +pajz +pakf +paki +pakk +pakn +pakp +pakt +paku +pakv +pakw +palg +palh +palj +palp +palu +pamb +pamc +pamd +pamh +pamk +paml +pamm +pamo +pamr +pamx +pamy +panc +pani +pann +pant +panv +panw +paoh +paom +paoo +paor +paot +paou +papb +papc +papg +paph +papm +papn +papo +papr +papt +paqt +parc +pars +pary +pasa +pasc +pasd +pash +pasi +pask +pasl +pasm +pasn +paso +pasv +pasw +pasx +pasy +pata +patc +pate +patg +patk +patl +pato +patq +paun +pava +pavc +pavd +pavl +pawd +pawg +pawi +pawm +pawn +paws +paya +pazk +pfno +pfsh +pfyu +pgro +pgsn +pgua +pgum +pgwt +phbk +phhi +phjh +phjr +phko +phli +phmk +phng +phnl +phny +phog +phsf +phto +pkmj +pkmr +pkwa +plch +pmdy +ppiz +prni +ptkk +ptkr +ptpn +ptro +ptsa +pttp +ptya +pwak +rckh +rcss +rctp +rjaa +rjaf +rjah +rjai +rjak +rjat +rjaw +rjbb +rjbd +rjbe +rjbt +rjca +rjcb +rjcc +rjch +rjck +rjcm +rjcn +rjco +rjct +rjcw +rjdc +rjdm +rjdt +rjeb +rjec +rjfe +rjff +rjfg +rjfk +rjfm +rjfo +rjfr +rjfs +rjft +rjfu +rjfy +rjgg +rjka +rjng +rjnk +rjns +rjnt +rjnw +rjny +rjoa +rjob +rjoc +rjoe +rjof +rjoh +rjoi +rjok +rjom +rjoo +rjop +rjor +rjos +rjot +rjow +rjoy +rjoz +rjsa +rjsc +rjsf +rjsh +rjsi +rjsk +rjsn +rjso +rjsr +rjss +rjsu +rjsy +rjtc +rjte +rjtf +rjth +rjti +rjtk +rjtl +rjto +rjtr +rjtt +rjtu +rjty +rkjb +rkjj +rkjk +rkjy +rkny +rkpc +rkpk +rkps +rkpu +rksg +rksi +rksm +rkso +rkss +rkth +rktn +rktu +roah +rodn +roig +romy +rors +rotm +rplb +rplc +rpli +rpll +rpmd +rpmz +rpvm +saac +saag +saaj +saap +saar +saav +sabe +saco +sadf +sadp +saez +same +samm +samr +sane +sant +saoc +saou +sarc +sare +sarf +sari +sarl +sarp +sasa +sasj +satr +savc +save +sawc +sawe +sawg +sawh +sawj +saza +sazb +sazm +sazn +sazr +sazs +sazt +sbaa +sbaf +sban +sbaq +sbar +sbat +sbau +sbbe +sbbg +sbbh +sbbi +sbbq +sbbr +sbbu +sbbv +sbbw +sbca +sbcb +sbcc +sbcf +sbcg +sbci +sbcj +sbcm +sbco +sbcp +sbcr +sbct +sbcx +sbcy +sbcz +sbdn +sbeg +sbek +sbes +sbfi +sbfl +sbfn +sbfz +sbgl +sbgm +sbgo +sbgr +sbgu +sbgw +sbht +sbic +sbih +sbil +sbiz +sbjf +sbjp +sbjr +sbjv +sbkg +sbkp +sblo +sblp +sbls +sbma +sbmd +sbme +sbmg +sbmk +sbml +sbmn +sbmo +sbmq +sbms +sbmt +sbmy +sbnf +sbnm +sbnt +sboi +sbpa +sbpb +sbpc +sbpf +sbpj +sbpk +sbpl +sbpn +sbpp +sbpr +sbps +sbpv +sbqv +sbrb +sbrf +sbrj +sbrp +sbsc +sbsj +sbsl +sbsm +sbsn +sbsp +sbst +sbsv +sbta +sbte +sbtf +sbtk +sbtt +sbtu +sbua +sbuf +sbug +sbul +sbur +sbvh +sbvt +sbya +sbys +scap +scar +scas +scat +scba +sccc +sccf +scch +scci +sccy +scda +scel +scfa +scfm +scft +scge +scgz +schr +scic +scie +scip +scir +scjo +scmk +scnt +scon +scrd +scrg +scrm +scse +scsn +sctb +sctc +scte +scvd +scvm +seco +secu +segu +selt +semt +sequ +sgaj +sgas +sgbn +sgco +sgen +sges +sggr +sglv +sgme +sgpc +sgpg +sgpi +sgpj +sgsj +sgsp +sgvr +skar +skbg +skbo +skbq +skcc +skcg +skcl +skej +skib +skip +sklc +sklt +skmd +skmr +skmz +sknv +skpc +skpe +skps +skpv +skrg +skrh +sksm +sksp +skuc +skui +skvp +skvv +slas +slbj +slca +slcb +slco +slcp +slet +slje +sljo +sljv +sllp +slmg +slor +slpo +slps +slrb +slri +slrq +slry +slsa +slsb +slsi +slsr +slsu +slti +sltj +sltr +slvg +slvm +slvr +slya +smjp +smzo +soca +spay +spcl +spgm +sphi +spho +sphy +spim +spji +spjj +spjl +spjr +splo +spme +spmf +spms +spnc +spqt +spqu +spru +spso +spst +sptn +sptu +spur +spwt +spyl +spza +spzo +suaa +suag +suca +sudu +suls +sume +sumu +surv +suso +svac +svbc +svbi +svbm +svbs +svcb +svcl +svcn +svcp +svcr +svcs +svcu +svfm +svgd +svgi +svgu +svjc +svjm +svlf +svmc +svmd +svmg +svmi +svmn +svmp +svmt +svpa +svpm +svpr +svs0 +svsa +svse +svso +svsp +svsr +svst +svsz +svva +svvg +svvl +svvp +sycj +tapa +tbpb +tcna +tdcf +tdpd +tfff +tffr +tgpy +tist +tisx +tjbq +tjig +tjmz +tjnr +tjps +tjsj +tkpk +tkpn +tlpc +tlpl +tnca +tncb +tncc +tnce +tncm +tnnc +tpdp +tqpf +trpg +ttcp +ttpp +tupj +tvsc +tvsm +tvsv +txkf +uaaa +uacc +uacp +uafm +uafo +uaii +uakd +uakk +uaoo +uarr +uask +uasp +uate +uatg +uatt +uauu +ubbb +ubbg +ubbl +ubbn +ubbq +ubby +udsg +udyz +ueee +uell +uerp +uerr +ueso +uest +ugko +ugms +ugsb +ugtb +uhbb +uhhh +uhma +uhmd +uhmm +uhmp +uhnn +uhpp +uhsh +uhss +uhww +uiaa +uibb +uiii +uiuu +ukbb +ukcc +ukcm +ukcw +ukdd +ukde +ukdr +ukff +ukhh +ukke +ukkk +ukkm +ukli +ukll +ukln +uklr +uklu +ukon +ukoo +ulaa +uldd +ulkk +ulli +ulmm +uloo +ulpb +ulww +umbb +umgg +umii +umkk +ummg +ummm +umms +umoo +unaa +unbb +unee +unkl +unnt +unoo +unww +uohh +uoii +uooo +urka +urkk +urkm +urml +urmm +urmn +urmo +urmt +urrr +urss +urwa +urwi +urww +uscc +uscm +usdd +ushh +usmm +usmu +usnn +uspp +usrk +usrr +usss +ustr +utaa +utak +utam +utat +utav +utdd +utdl +utfa +utff +utfn +utnn +utnu +utsa +utsb +utsk +utss +utst +uttt +uubi +uubp +uudd +uudl +uuee +uumo +uuob +uuok +uuoo +uuww +uuyh +uuys +uuyw +uuyy +uwgg +uwkd +uwke +uwks +uwll +uwlw +uwoo +uwor +uwpp +uwss +uwuu +uwww +vaah +vabb +vanp +vapr +vcbi +vdpp +vdsr +veat +vebs +vecc +vemn +vept +vgeg +vghs +vhhh +viar +vibn +vidp +vijp +vilk +vlvt +vmmc +vnkt +vobl +vocb +voci +vocl +vohs +vohy +vomm +votr +votv +vqpr +vrmm +vtbd +vtbo +vtbs +vtbu +vtcc +vtch +vtcl +vtcn +vtcp +vtct +vtph +vtpo +vtpp +vtsb +vtsc +vtsf +vtsg +vtsh +vtsm +vtsp +vtss +vtst +vtud +vtui +vtuk +vtul +vtuo +vtuu +vtuv +vtuw +vvdn +vvnb +vvpb +vvts +vymd +vyyy +waaa +wabb +wadd +wadl +wall +wamm +waoo +wapp +warr +watt +wbgb +wbgg +wbgr +wbgs +wbgy +wbkk +wbkl +wbks +wbkt +wbkw +wbsb +wibb +widd +wihh +wiii +wimm +wioo +wipp +wipt +wmau +wmba +wmka +wmkb +wmkc +wmkd +wmki +wmkj +wmkk +wmkl +wmkm +wmkn +wmkp +wmsa +wsap +wssl +wsss +yamb +ybas +ybbn +ybcg +ybcs +ybhm +ybma +ybrk +ybrm +ybtl +ycfs +ycin +yfrt +ygel +yhid +ymav +ymhb +ymlt +ymml +ypad +ypcc +ypdn +ypea +ypgv +ypjt +ypkg +ypku +yplm +yppd +ypph +yptn +ypwr +ypxm +yrmd +yscb +ysdu +ysnf +ysnw +ysri +yssy +ystw +yswg +ytef +ytnk +ytre +ywgt +ywha +ywlm +zbaa +zbhh +zbsj +zbtj +zbyn +zggg +zgha +zgkl +zgnn +zgow +zgsz +zhcc +zhhh +zjhk +zjsy +zlll +zlxy +zmub +zppp +zsam +zsfz +zshc +zsnb +zsnj +zsof +zspd +zsqd +zsss +zswz +zuck +zuuu +zwsh +zwww +zycc +zyhb +zytl +zytx diff --git a/stations b/stations new file mode 100644 index 0000000..6efeaa7 --- /dev/null +++ b/stations @@ -0,0 +1,28972 @@ +# Copyright (c) 2006-2012 Jeremy Stanley . Permission to +# use, copy, modify, and distribute this software is granted under terms +# provided in the LICENSE file distributed with this software. +# +# generated by weather on 2012-06-26 from these public domain sources: +# +# http://www.census.gov/geo/www/gazetteer/gazetteer2010.html +# a410aa212529e11b103bd5d222a952fc 2011-03-02 Gaz_counties_national.zip +# 680d807fce3bfe6aea8df5df5a6ebb04 2011-03-02 Gaz_cousubs_national.zip +# 41f34b79edfc3814b48419421d56e2a1 2011-03-02 Gaz_places_national.zip +# 8b298a6117e7942fd20f3e15076bd38a 2011-05-16 Gaz_zcta_national.zip +# +# http://www.weather.gov/geodata/catalog/wsom/html/cntyzone.htm +# 7e64372572d4923ad1be3c33ec79d7b6 2012-04-05 bp03ap12.dbx +# +# http://weather.noaa.gov/data/nsd_cccc.txt +# 6561bd4dc1ffd4147e35cf6dee7503d5 2011-05-04 nsd_cccc.txt +# +# http://weather.noaa.gov/pub/data/zonecatalog.curr.tar +# 748043471973d418cb415fccc3a0000b 2007-06-07 zonecatalog.curr.tar +# +# http://www.nco.ncep.noaa.gov/pmb/codes/nwprod/dictionaries/metar.tbl +# 2bbef16bbf41add353650c5d09f35066 2012-04-04 metar.tbl +# +# ftp://ftp.ncdc.noaa.gov/pub/data/inventories/COOP-ACT.TXT +# 23919279dec601f31f47f46fc60db095 2012-06-25 COOP-ACT.TXT +# +# ...and these manually-generated or hand-compiled adjustments: +# f4934ba2494d41fc4de1360ac2e09a49 2012-06-26 overrides.conf +# d115dda76af5661fb8afd793a9b8ff9d 2012-06-25 slist +# 12c0635d5b8157b564dc665e8a1cd124 2012-06-25 zlist + +[aggh] +description = Honiara / Henderson, Solomon Islands +location = (-0.1643518378961327, 2.7933994678169247) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/AGGH.TXT + +[aygn] +description = Gurney W. O., NG +location = (-0.17976891295541594, 2.6237534645230758) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/AYGN.TXT + +[aymh] +description = Mount Hagen, NG +location = (-0.10175269539126941, 2.5185101106278176) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/AYMH.TXT + +[aymo] +description = Manus Island/Momote, Papua New Guinea +location = (-0.035987719548760858, 2.5730371053422068) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/AYMO.TXT + +[aynz] +description = Nadzab, NG +location = (-0.11466813185602745, 2.5607470785260804) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/AYNZ.TXT + +[aypy] +description = Moresby, Papua New Guinea +location = (-0.16464272610479844, 2.569415547144319) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/AYPY.TXT + +[ayvn] +description = Vanimo, NG +location = (-0.047123889803846901, 2.4664992989183863) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/AYVN.TXT + +[aywk] +description = Wewak, Papua New Guinea +location = (-0.062250076654464415, 2.5068745822811884) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/AYWK.TXT + +[bgaa] +description = Aasiaat Mittarfia, GL +location = (1.1993902619705032, -0.92153384505300595) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/BGAA.TXT + +[bgbw] +description = Narsarsuaq, Greenland +location = (1.0675597258031981, -0.79267036861409135) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/BGBW.TXT + +[bgco] +description = Constable Pynt, Greenland +location = (1.2348204457859882, -0.39531707557671564) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/BGCO.TXT + +[bggh] +description = Godthaab / Nuuk, Greenland +location = (1.1199196033630283, -0.90320788790706552) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/BGGH.TXT + +[bgjn] +description = Jacobshavn Lufthavn, Greenland +location = (1.2083496187974074, -0.89128147135177105) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/BGJN.TXT + +[bgkk] +description = Kulusuk Lufthavn, Greenland +location = (1.1446451010996144, -0.64838981711589339) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/BGKK.TXT + +[bgmq] +description = Maniitsoq, GL +location = (1.1417943966546904, -0.92380277308059866) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/BGMQ.TXT + +[bgpt] +description = Fredickshab/Paamiut, GL +location = (1.0817550703860854, -0.86742863824118188) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/BGPT.TXT + +[bgqq] +description = Jakobshavn Lufthavn, GL +location = (1.2082914411556744, -0.89133964899350415) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/BGQQ.TXT + +[bgsf] +description = Sdr Stroemfjord, Greenland +location = (1.1696614870448665, -0.88488193076112509) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/BGSF.TXT + +[bgss] +description = Sisimiut, GL +location = (1.1684979342102038, -0.93776540709655321) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/BGSS.TXT + +[bgtl] +description = Thule A. B., Greenland +location = (1.3357586541929936, -1.1999138607461015) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/BGTL.TXT + +[bguk] +description = Upernavik, GL +location = (1.2702506296014731, -0.98035144084521497) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/BGUK.TXT + +[bguq] +description = Uummanaq/Qaarsut, GL +location = (1.2344713799355893, -0.91978851580101173) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/BGUQ.TXT + +[biar] +description = Akureyri, Iceland +location = (1.1463904303516088, -0.3156137064023079) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/BIAR.TXT + +[bieg] +description = Egilsstadir, Iceland +location = (1.1394091133436315, -0.25132741228718347) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/BIEG.TXT + +[bihn] +description = Akurnes, Iceland +location = (1.1222467090323538, -0.26558093451180381) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/BIHN.TXT + +[biis] +description = Isafjordur, IC +location = (1.1527899709422547, -0.4036946559862884) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/BIIS.TXT + +[bikf] +description = Keflavikurflugvollur, Iceland +location = (1.1164289448590394, -0.39444441095071853) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/BIKF.TXT + +[birk] +description = Reykjavik, Iceland +location = (1.1193378269456968, -0.38222710618675815) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/BIRK.TXT + +[bivm] +description = Vestmannaeyjar, Iceland +location = (1.1065387457644049, -0.35401094994618321) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/BIVM.TXT + +[bkpr] +description = Pristina, YG +location = (0.74298666257398605, 0.36704274169440754) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/BKPR.TXT + +[cahr] +description = Harrington Cda Cs, PE, CN +location = (0.80896010829937182, -1.102524488484818) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CAHR.TXT +zone = ('mez002', 0.060950984826647694) + +[cbbc] +description = Bella Bella, BC, CN +location = (0.91071280369064112, -2.2366394364307336) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CBBC.TXT +zone = ('akz029', 0.067924713670542217) + +[cerm] +description = Edmunston, NB, CN +location = (0.82763513129571109, -1.1924089449625259) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CERM.TXT +zone = ('mez002', 0.012165929681518549) + +[cmfm] +description = Fort Montmorency Rc, QB, CN +location = (0.82588980204371676, -1.2418017627939655) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CMFM.TXT +zone = ('mez003', 0.023577453436509785) + +[cmgb] +description = Granby, QB, CN +location = (0.79185588162982723, -1.2700760966762736) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CMGB.TXT +zone = ('vtz016', 0.008810031666930368) + +[cpbt] +description = Blood Tribe Agdm, AB, CN +location = (0.86515971021358917, -1.9730947193795896) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CPBT.TXT +zone = ('mtz010', 0.015228617116272099) + +[cpeh] +description = Enchant Agdm, AB, CN +location = (0.87563168572555516, -1.9620991450920253) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CPEH.TXT +zone = ('mtz010', 0.02497849112179228) + +[cpfi] +description = Finecastle Agdm, AB, CN +location = (0.8691739674931761, -1.955117828084048) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CPFI.TXT +zone = ('mtz010', 0.019636133791578834) + +[cpir] +description = Iron Springs Agdm, AB, CN +location = (0.87091929674517043, -1.9673351328480082) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CPIR.TXT +zone = ('mtz010', 0.020199278835784675) + +[cpro] +description = Rosemary Agdm, AB, CN +location = (0.88697632586351827, -1.9556414268596463) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CPRO.TXT +zone = ('mtz010', 0.0367823024538513) + +[cpry] +description = Raymond Agdm, AB, CN +location = (0.86341438096159484, -1.9664624682220111) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CPRY.TXT +zone = ('mtz010', 0.012674873777531345) + +[cpst] +description = Strathmore Agdm, AB, CN +location = (0.89046698436750704, -1.9769344437339771) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CPST.TXT +zone = ('mtz010', 0.040385239281713191) + +[cpsv] +description = Seven Persons Agdm, AB, CN +location = (0.87126836259556939, -1.9359192063121105) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CPSV.TXT +zone = ('mtz045', 0.023736744076293045) + +[cpxl] +description = Bow Island Agdm, AB, CN +location = (0.87039569796957206, -1.9437731879460849) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CPXL.TXT +zone = ('mtz044', 0.021524288544734035) + +[ctnk] +description = Algonquin Park Egat, ON, CN +location = (0.79447387550781889, -1.3660692055359616) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CTNK.TXT +zone = ('nyz002', 0.039583533751801958) + +[ctra] +description = Rawson Lake (Aut), ON, CN +location = (0.86655597361518455, -1.6357225749690856) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CTRA.TXT +zone = ('mnz006', 0.020431312081204391) + +[cwae] +description = Whistler, Canada +location = (0.87499173166649058, -2.1458823153270283) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWAE.TXT +zone = ('waz503', 0.022881229488624713) + +[cwaf] +description = Ile Rouge Meteorological Aeronautical Presentation System, Canada +location = (0.83921248200060683, -1.2138764947620562) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWAF.TXT +zone = ('mez001', 0.020489633359413839) + +[cwaj] +description = Erieau Meteorological Aeronautical Presentation System, Canada +location = (0.73740160896760421, -1.429424657383356) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWAJ.TXT +zone = ('ohz012', 0.01293174428165254) + +[cwaq] +description = Coronach Spc, Canada +location = (0.85608399810321856, -1.8410314726453521) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWAQ.TXT +zone = ('mtz018', 0.004705802499662899) + +[cwar] +description = Argentia, Nfld, Canada +location = (0.8255407361933178, -0.94247779607693793) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWAR.TXT + +[cwav] +description = Sundre, Canada +location = (0.90349877611573126, -2.0016017638288304) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWAV.TXT +zone = ('mtz010', 0.057557098072412126) + +[cwba] +description = Banff, Alta., Canada +location = (0.8933176888124309, -2.0170188388881134) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWBA.TXT +zone = ('idz001', 0.04814785031324726) + +[cwbe] +description = Killarney Meteorological Aeronautical Presentation System, Canada +location = (0.80226967950006023, -1.4221524521667128) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWBE.TXT +zone = ('miz024', 0.030872512619557559) + +[cwbk] +description = Caribou Point Meteorological Aeronautical Presentation System, Canada +location = (0.79877902099607145, -1.0940305527917789) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWBK.TXT +zone = ('mez002', 0.06885709899261179) + +[cwbo] +description = Brooks Automatic Weather Reporting System, Canada +location = (0.88226393688313354, -1.9521507683556576) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWBO.TXT +zone = ('mtz010', 0.032681289011545704) + +[cwbs] +description = Lac St Pierre, QB, CN +location = (0.80599304857098142, -1.2726940905542652) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWBS.TXT +zone = ('vtz016', 0.023053129388264336) + +[cwbt] +description = Longue Point De Mingan, Que., Canada +location = (0.87731883733581628, -1.1210831561976911) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWBT.TXT +zone = ('mez002', 0.077060058389385136) + +[cwbu] +description = Nipawin (Auto8), SA, CN +location = (0.93078409008857588, -1.8154914879245014) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWBU.TXT +zone = ('ndz001', 0.079018973909268861) + +[cwbv] +description = Beaven Island, N. S., Canada +location = (0.78219839310212547, -1.0879219004097989) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWBV.TXT +zone = ('mez032', 0.067553180946340635) + +[cwby] +description = Port Menier, Que., Canada +location = (0.86975574391050758, -1.1222467090323538) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWBY.TXT +zone = ('mez002', 0.070772690428450358) + +[cwbz] +description = St Anicet, Canada +location = (0.78743438085810835, -1.2964887460231211) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWBZ.TXT +zone = ('nyz027', 0.0041448817881510891) + +[cwca] +description = Cartwright, Nfld., Canada +location = (0.93724180832095505, -0.99541945005409926) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWCA.TXT + +[cwcf] +description = Berens River Cs , Man., Canada +location = (0.91367986341903151, -1.6935511508518311) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWCF.TXT +zone = ('mnz004', 0.062429406239212136) + +[cwci] +description = Caribou Island, Ont., Canada +location = (0.8261225126106494, -1.4980742746284661) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWCI.TXT +zone = ('miz007', 0.015445245761271761) + +[cwcj] +description = Pukaskwa, Canada +location = (0.84823001646924423, -1.5062191444711064) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWCJ.TXT +zone = ('miz001', 0.030242193260172419) + +[cwcl] +description = Clinton, B. C., Canada +location = (0.89273591239509953, -2.1205750411731104) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWCL.TXT +zone = ('waz503', 0.041463207919275304) + +[cwco] +description = Collingwood Automatic Weather Reporting System, Canada +location = (0.77667151713747662, -1.4000449483081181) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWCO.TXT +zone = ('nyz001', 0.029293978949588281) + +[cwct] +description = Coronation Automated Reporting Station, Canada +location = (0.90873476387171426, -1.9454603395563461) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWCT.TXT +zone = ('mtz010', 0.059375080817312444) + +[cwda] +description = Englee Meteorological Aeronautical Presentation System, Canada +location = (0.88517281896979083, -0.97942059857748465) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWDA.TXT + +[cwdc] +description = Uranium City, Sask., Canada +location = (1.039634457771289, -1.8933913502051818) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWDC.TXT + +[cwdj] +description = Regina University, Canada +location = (0.87964594300514209, -1.825323509377403) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWDJ.TXT +zone = ('mtz019', 0.029314136813276059) + +[cwdk] +description = Claresholm Automatic Weather Reporting System, Canada +location = (0.87295551420583051, -1.9832758066828899) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWDK.TXT +zone = ('mtz010', 0.02502287798277962) + +[cwdl] +description = Dease Lake B. C., Canada +location = (1.0195631713733542, -2.2689280275926285) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWDL.TXT +zone = ('akz026', 0.04226224990720686) + +[cwdm] +description = Chevery, Que., Canada +location = (0.88080949583980506, -1.0407980106059518) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWDM.TXT + +[cwdo] +description = Twillingate Meteorological Aeronautical Presentation System, Canada +location = (0.86713775003251603, -0.95644043009289259) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWDO.TXT + +[cwdq] +description = La Tuque, Canada +location = (0.82757695365397788, -1.2705996954518719) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWDQ.TXT +zone = ('vtz016', 0.04452315057232132) + +[cwdt] +description = Chute Des Passes, Canada +location = (0.87091929674517043, -1.2435470920459597) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWDT.TXT +zone = ('mez001', 0.05717953201484309) + +[cwdv] +description = Upsala, Ont., Canada +location = (0.85579310989455293, -1.5789411966375368) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWDV.TXT +zone = ('mnz021', 0.021477569584027602) + +[cwdz] +description = Drumheller East, Canada +location = (0.89768101194241678, -1.9664042905802781) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWDZ.TXT +zone = ('mtz010', 0.046930488997347884) + +[cweb] +description = Estevan Point, B. C., Canada +location = (0.86190176227653303, -2.2087141683988238) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWEB.TXT +zone = ('waz515', 0.034652783689068656) + +[cwee] +description = Chamouchouane Automatic Weather Reporting System, Canada +location = (0.8601564330245387, -1.2801990063378406) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWEE.TXT +zone = ('mez003', 0.066308665943954972) + +[cwef] +description = Saint Paul Island Meteorological Aeronautical Presentation System, Canada +location = (0.82437718335865495, -1.0495246568659236) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWEF.TXT + +[cweh] +description = Eastend Cypress, Sask, Canada +location = (0.86277442690253014, -1.9021179964651536) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWEH.TXT +zone = ('mtz047', 0.017466648280884189) + +[cwek] +description = Grey Islet Meteorological Aeronautical Presentation System, Canada +location = (0.9526588833802383, -2.2811453323565885) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWEK.TXT +zone = ('akz029', 0.020319662090056357) + +[cwel] +description = Entrance Island Automatic Weather Reporting System, Canada +location = (0.85899288018987585, -2.1607176139689801) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWEL.TXT +zone = ('waz001', 0.014707459176591824) + +[cwep] +description = East Point, P. E. I, Canada +location = (0.81070543755136615, -1.081522359819153) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWEP.TXT +zone = ('mez030', 0.074772744647191539) + +[cweq] +description = Swan River, Man., Canada +location = (0.90960742849771148, -1.766854979435593) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWEQ.TXT +zone = ('ndz004', 0.058194238336351178) + +[cwer] +description = Ile D'Orleans Automated Reporting Station, Canada +location = (0.82030474843733492, -1.2359839986206509) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWER.TXT +zone = ('mez003', 0.016737549107590257) + +[cweu] +description = Eureka, N. W. T., Canada +location = (1.395972513386798, -1.4998196038804605) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWEU.TXT + +[cwew] +description = L'Assomption, Canada +location = (0.79965168562206868, -1.2816534473811694) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWEW.TXT +zone = ('vtz002', 0.017539963237021217) + +[cwez] +description = Saturna Island Meteorological Aeronautical Presentation System, Canada +location = (0.85142978676456704, -2.1476276445790226) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWEZ.TXT +zone = ('waz001', 0.0037121836838975696) + +[cwfd] +description = Cape Dyer, N. W. T., Canada +location = (1.1620983936195577, -1.0754137074371728) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWFD.TXT + +[cwff] +description = Melfort Automatic Weather Reporting System, Canada +location = (0.9218247332616718, -1.8256143975860686) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWFF.TXT +zone = ('ndz001', 0.070911199969185823) + +[cwfj] +description = Cardston Automated Reporting Station, Canada +location = (0.85870199198121022, -1.9771671543009097) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWFJ.TXT +zone = ('mtz010', 0.011017293515047539) + +[cwfq] +description = Frelighsburg, Canada +location = (0.78627082802344539, -1.2711814718692032) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWFQ.TXT +zone = ('vtz016', 0.0034733778366298619) + +[cwgb] +description = Ballenas Island Automatic Weather Reporting System, Canada +location = (0.86131998585920166, -2.1671171545596257) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWGB.TXT +zone = ('waz515', 0.02034298236066558) + +[cwgd] +description = Goderich Automatic Weather Reporting System, Canada +location = (0.76387243595618493, -1.426224887088033) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWGD.TXT +zone = ('miz063', 0.018893903308649287) + +[cwgl] +description = Lagoon City, Canada +location = (0.7772532935548081, -1.3825916557881748) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWGL.TXT +zone = ('nyz001', 0.024005013103871771) + +[cwgm] +description = Waterton Park Gate, Canada +location = (1.0320713643459802, -1.9861846887695469) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWGM.TXT + +[cwgr] +description = Iles-De-La-Madelein, Canada +location = (0.82757695365397788, -1.0786134777324956) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWGR.TXT + +[cwgt] +description = Sisters Island Automatic Weather Reporting System, Canada +location = (0.86364709152852737, -2.1717713658982776) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWGT.TXT +zone = ('waz515', 0.022905148823676599) + +[cwgw] +description = Sparwood Automatic Weather Reporting System, Canada +location = (0.86830130286717899, -2.0053833105414847) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWGW.TXT +zone = ('mtz001', 0.02550929641550485) + +[cwgx] +description = Gillam, Man., Canada +location = (0.98378392170747042, -1.65282680163863) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWGX.TXT + +[cwgy] +description = Esther 1, Canada +location = (0.90175344686373693, -1.9233528356977512) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWGY.TXT +zone = ('mtz011', 0.053040514266194258) + +[cwgz] +description = Grise Fiord Airport, Canada +location = (1.3337224367323335, -1.4468779499032993) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWGZ.TXT + +[cwhi] +description = Three Hills, Canada +location = (0.90233522328106841, -1.9760036014662468) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWHI.TXT +zone = ('mtz010', 0.052013222868513335) + +[cwhl] +description = Holland Rock Automatic Weather Reporting System, Canada +location = (0.94538667816359512, -2.2753275681832745) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWHL.TXT +zone = ('akz029', 0.027909571641364456) + +[cwhm] +description = Varennes, Canada +location = (0.79790635637007434, -1.2807807827551723) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWHM.TXT +zone = ('vtz002', 0.015694132239254224) + +[cwhn] +description = Jimmy Lake, Canada +location = (0.95847664755355255, -1.9189895125677654) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWHN.TXT + +[cwho] +description = Hopedale Meteorological Aeronautical Presentation System, Canada +location = (0.9677850702308558, -1.0512699861179178) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWHO.TXT + +[cwhp] +description = Heath Point Meteorological Aeronautical Presentation System, Canada +location = (0.85666577452055015, -1.0768681484805014) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWHP.TXT + +[cwhq] +description = Deschambaults , Que., Canada +location = (0.81477787247268607, -1.2557643968099201) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWHQ.TXT +zone = ('nhz001', 0.030880250920157358) + +[cwht] +description = Haines Junction, Canada +location = (1.0605784087952208, -2.4012821625355318) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWHT.TXT +zone = ('akz020', 0.036876934220336714) + +[cwhv] +description = Beauceville, Canada +location = (0.80634211442138026, -1.2354022222033196) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWHV.TXT +zone = ('mez003', 0.0098233641886850253) + +[cwid] +description = Fort Providence, Canada +location = (1.0701777196811897, -2.0525072003453313) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWID.TXT + +[cwig] +description = Ile Aux Grues, Que., Canada +location = (0.82146830127199788, -1.2310388990733336) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWIG.TXT +zone = ('mez003', 0.015974100329360173) + +[cwii] +description = Victoria Beach, Canada +location = (0.88488193076112509, -1.6854062810091908) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWII.TXT +zone = ('mnz004', 0.033657864426131744) + +[cwij] +description = Lupin, N. W. T., Canada +location = (1.1478448713949374, -1.941387904635026) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWIJ.TXT + +[cwik] +description = Broadview, Sask., Canada +location = (0.87935505479647635, -1.7921622535895108) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWIK.TXT +zone = ('ndz002', 0.02785584260661423) + +[cwil] +description = Hat Island, N. W. T., Canada +location = (1.1923507673207927, -1.7467836930376581) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWIL.TXT + +[cwip] +description = Pointe Noire , Que., Canada +location = (0.87557350808382195, -1.1594803997415664) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWIP.TXT +zone = ('mez002', 0.063495079662360371) + +[cwiq] +description = Primrose Lake, Canada +location = (0.95556776546689548, -1.9207348418197596) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWIQ.TXT + +[cwis] +description = Charlevoix Cs , Que., Canada +location = (0.82524984798465217, -1.2327842283253283) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWIS.TXT +zone = ('mez003', 0.019908443154328118) + +[cwit] +description = Saint Clothilde Automated Reporting Station, Canada +location = (0.78830704548410546, -1.2860167705111551) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWIT.TXT +zone = ('nyz028', 0.0066926448299313678) + +[cwiw] +description = Watrous East Automated Reporting Station, Canada +location = (0.90175344686373693, -1.8395770316020235) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWIW.TXT +zone = ('mtz018', 0.050342799896410745) + +[cwix] +description = Mistook Automated Reporting Station, Canada +location = (0.85113889855590141, -1.2516919618886) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWIX.TXT +zone = ('mez001', 0.044051929828515829) + +[cwiy] +description = St Leonard Automatic Weather Reporting System, Canada +location = (0.82292274231532636, -1.1836241210608212) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWIY.TXT +zone = ('mez002', 0.0088065636453825927) + +[cwiz] +description = L'Acadie, Canada +location = (0.79063415115343127, -1.2801990063378406) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWIZ.TXT +zone = ('vtz002', 0.0087400333845970655) + +[cwjb] +description = Ste Foy Cs , Que., Canada +location = (0.8255407361933178, -1.2438379802546256) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWJB.TXT +zone = ('mez003', 0.02416869179754522) + +[cwjc] +description = Ennadai Lake Meteorological Aeronautical Presentation System, Canada +location = (1.0669779493858669, -1.7610372152622786) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWJC.TXT + +[cwjd] +description = Grand Rapids, Man., Canada +location = (0.92822427385231754, -1.7325301708130378) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWJD.TXT +zone = ('ndz005', 0.077242959200528497) + +[cwjh] +description = Southend Automatic Weather Reporting System, Canada +location = (0.98320214529013905, -1.8026342291014767) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWJH.TXT + +[cwji] +description = Assiniboia Airport Automated Reporting Station, Canada +location = (0.86801041465851325, -1.8488854542793265) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWJI.TXT +zone = ('mtz018', 0.01714236357954883) + +[cwjo] +description = Jonquiere Automated Reporting Station, Canada +location = (0.8450302461739212, -1.2429653156286284) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWJO.TXT +zone = ('mez001', 0.035650452554651775) + +[cwjr] +description = Creston Automatic Weather Reporting System, Canada +location = (0.85666577452055015, -2.033308578573394) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWJR.TXT +zone = ('idz001', 0.010204433851602586) + +[cwjt] +description = St Jovite Automatic Weather Reporting System, Canada +location = (0.80401500875205456, -1.3008520691531069) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWJT.TXT +zone = ('nyz027', 0.020376773501028178) + +[cwju] +description = Langara, B. C., Canada +location = (0.94684111920692382, -2.3221605697784558) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWJU.TXT +zone = ('akz027', 0.018245452611801046) + +[cwjv] +description = Vernon, B. C., Canada +location = (0.87673706091848491, -2.0821777976292353) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWJV.TXT +zone = ('waz038', 0.030454094099885753) + +[cwjw] +description = Jasper Warden Automated Reporting Station, Canada +location = (0.92386095072233176, -2.0650153933179576) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWJW.TXT +zone = ('waz038', 0.076917600001309303) + +[cwjx] +description = Leader Airport Automatic Weather Reporting System, Canada +location = (0.88837258926511375, -1.911135530933791) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWJX.TXT +zone = ('mtz011', 0.040244444240884206) + +[cwkd] +description = Bonnard 1, Que., Canada +location = (0.88546370717845657, -1.2394746571246398) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWKD.TXT +zone = ('mez001', 0.069604222311080904) + +[cwkg] +description = Kejimkujik 1, N. S., Canada +location = (0.77550796430281366, -1.1379546723003029) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWKG.TXT +zone = ('mez032', 0.036290636821932128) + +[cwkh] +description = Malahat Automatic Weather Reporting System, Canada +location = (0.84793912826057849, -2.1569360672563254) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWKH.TXT +zone = ('waz515', 0.0095524201087747469) + +[cwkk] +description = Katatota Island, Canada +location = (0.86771952644984751, -1.5417075059283243) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWKK.TXT +zone = ('miz001', 0.036909827802988376) + +[cwkm] +description = Komakuk Beach, Y. T., Canada +location = (1.2150400475967189, -2.4469516112960497) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWKM.TXT +zone = ('akz204', 0.02214675190737974) + +[cwko] +description = Rockglen, Sask., Canada +location = (0.85812021556387863, -1.8497581189053236) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWKO.TXT +zone = ('mtz018', 0.0083347226827631838) + +[cwkp] +description = Keats Point, NT, CN +location = (1.2159708898644495, -2.123542100901501) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWKP.TXT + +[cwkw] +description = Cape Kakkiviak, Canada +location = (1.046906662987932, -1.1199196033630283) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWKW.TXT + +[cwkx] +description = Dease Lake Coastal Station, Canada +location = (1.0195631713733542, -2.2689280275926285) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWKX.TXT +zone = ('akz026', 0.04226224990720686) + +[cwlb] +description = Lac La Biche, Alta., Canada +location = (0.95585865367556111, -1.9550596504423148) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWLB.TXT + +[cwlc] +description = Lucy Island, B. C., Canada +location = (0.94771378383292093, -2.2794000031045942) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWLC.TXT +zone = ('akz029', 0.025320122309065694) + +[cwle] +description = Lucky Lake Automatic Weather Reporting System, Canada +location = (0.88924525389111098, -1.8701202935119241) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWLE.TXT +zone = ('mtz061', 0.0383361990862124) + +[cwli] +description = Liverpool Bay, Canada +location = (1.2147491593880533, -2.2846359908605773) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWLI.TXT + +[cwlm] +description = Victoria Automatic Weather Reporting System, Canada +location = (0.8450302461739212, -2.152281855917674) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWLM.TXT +zone = ('waz001', 0.0049746113739376398) + +[cwlp] +description = Herbert Island Meteorological Aeronautical Presentation System, Canada +location = (0.88895436568244512, -2.2276219019620962) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWLP.TXT +zone = ('waz515', 0.062106044670299669) + +[cwls] +description = Mount Forest, Ont., Canada +location = (0.76765398266883933, -1.4093533709854211) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWLS.TXT +zone = ('miz063', 0.030478095340164216) + +[cwlx] +description = Longstaff Bluff, N. W. T., Canada +location = (1.2022409664154274, -1.3113240446650731) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWLX.TXT + +[cwly] +description = Lytton, B. C., Canada +location = (0.87673706091848491, -2.1220294822164387) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWLY.TXT +zone = ('waz503', 0.026037740207152764) + +[cwme] +description = Cathedral Point Meteorological Aeronautical Presentation System, Canada +location = (0.91077098133237422, -2.2247130198754386) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWME.TXT +zone = ('akz029', 0.070970120004905726) + +[cwmj] +description = Maniwaki, Canada +location = (0.80779655546470885, -1.3264502315156905) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWMJ.TXT +zone = ('nyz026', 0.02836018188933025) + +[cwmm] +description = P. Meadows Coastal Station Automatic Weather Reporting System, Canada +location = (0.85870199198121022, -2.1412281039883765) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWMM.TXT +zone = ('waz503', 0.0064052453441113448) + +[cwmq] +description = Maplecreek Automatic Weather Reporting System, Canada +location = (0.87091929674517043, -1.9105537545164595) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWMQ.TXT +zone = ('mtz011', 0.023379603480058443) + +[cwmt] +description = Lac La Martre, Canada +location = (1.1021754226344191, -2.0466894361720169) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWMT.TXT + +[cwmz] +description = Western Island Meteorological Aeronautical Presentation System, Canada +location = (0.78597993981477976, -1.4026629421861094) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWMZ.TXT +zone = ('nyz001', 0.037902942351523014) + +[cwnb] +description = S. E. Shoal Meteorological Aeronautical Presentation System, Canada +location = (0.73012940375096125, -1.4393148564779905) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWNB.TXT +zone = ('ohz009', 0.0084340521069753028) + +[cwnc] +description = Cobourg, Ont., Canada +location = (0.76707220625150785, -1.3642656986422343) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWNC.TXT +zone = ('nyz002', 0.01220618761631361) + +[cwnd] +description = Pelly Island Automatic Weather Reporting System, Canada +location = (1.215330935805385, -2.3637575836176539) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWND.TXT + +[cwne] +description = North Point, Prince Edward Island, Canada +location = (0.82175918948066351, -1.1170107212763709) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWNE.TXT +zone = ('mez002', 0.05067700073302616) + +[cwnh] +description = Riviere Du Loup, Que., Canada +location = (0.83426738245328946, -1.2138764947620562) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWNH.TXT +zone = ('mez001', 0.015762308432418836) + +[cwnk] +description = Carman U Of M, Canada +location = (0.86393797973719311, -1.7110044433717744) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWNK.TXT +zone = ('ndz007', 0.013625317832213884) + +[cwnl] +description = Great Duck Island, Canada +location = (0.79645191532674575, -1.4480415027379621) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWNL.TXT +zone = ('miz018', 0.012695902209738257) + +[cwnm] +description = Nelson Automatic Weather Reporting System, Canada +location = (0.86393797973719311, -2.0472712125893486) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWNM.TXT +zone = ('waz037', 0.019394853819757748) + +[cwnp] +description = Nakusp Automatic Weather Reporting System, Canada +location = (0.87731883733581628, -2.056288747057986) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWNP.TXT +zone = ('waz038', 0.031874602792675809) + +[cwnq] +description = Nicolet Automatic Weather Reporting System, Canada +location = (0.806633002630046, -1.2679817015738806) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWNQ.TXT +zone = ('vtz016', 0.023588148710871379) + +[cwnz] +description = Nagagami, Ont., Canada +location = (0.86830130286717899, -1.468985453761894) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWNZ.TXT +zone = ('miz007', 0.059440709780197325) + +[cwob] +description = Brevoort Island, Canada +location = (1.1053751929297422, -1.1196287151543625) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWOB.TXT + +[cwoc] +description = New Carlisle1, Canada +location = (0.83804892916594387, -1.1402817779696286) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWOC.TXT +zone = ('mez002', 0.040859961347704268) + +[cwod] +description = Normandin, Canada +location = (0.85230245139056426, -1.2662363723218861) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWOD.TXT +zone = ('mez003', 0.054555677352664221) + +[cwoe] +description = Onefour Automatic Weather Reporting System, Canada +location = (0.85724755093788152, -1.9280070470364028) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWOE.TXT +zone = ('mtz011', 0.0094511059249266106) + +[cwoy] +description = Wynyard Marine Aviation Reporting Station, Canada +location = (0.90349877611573126, -1.8189239687867571) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWOY.TXT +zone = ('ndz001', 0.052155306114058692) + +[cwpd] +description = Parc Des Laurentid, Canada +location = (0.83019494753196943, -1.2432562038372941) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWPD.TXT +zone = ('mez003', 0.027662784546511103) + +[cwpe] +description = Point Lepreau, N. B., Canada +location = (0.78656171623211124, -1.1600621761588978) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWPE.TXT +zone = ('mez032', 0.017219732033548037) + +[cwpf] +description = Esquimalt Harbour, B. C., Canada +location = (0.84532113438258694, -2.154318073378334) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWPF.TXT +zone = ('waz001', 0.0060037816696467718) + +[cwpk] +description = Parent, Que., Canada +location = (0.83630359991394954, -1.3023065101964355) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWPK.TXT +zone = ('nyz027', 0.052672895256934929) + +[cwpo] +description = Pilot Mound, Man., Canada +location = (0.85870199198121022, -1.726130630222392) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWPO.TXT +zone = ('ndz007', 0.0089761722285719783) + +[cwpr] +description = Princeton Automatic Weather Reporting System, Canada +location = (0.88313660150913076, -2.1034126368618327) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWPR.TXT +zone = ('waz503', 0.037583624052370694) + +[cwps] +description = Long Point Meteorological Aeronautical Presentation System, Canada +location = (0.74292848493225305, -1.3971360662214607) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWPS.TXT +zone = ('paz001', 0.0081701907549942675) + +[cwpx] +description = Cape Peel West, N. W. T., Canada +location = (1.2048589602934188, -1.8817558218585528) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWPX.TXT + +[cwpz] +description = Burns Lake Cs , B. C., Canada +location = (0.94916822487624952, -2.1982421928868581) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWPZ.TXT +zone = ('akz029', 0.053998520943799123) + +[cwqh] +description = Lennoxville, Canada +location = (0.79179770398809413, -1.2534372911405942) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWQH.TXT +zone = ('nhz001', 0.0094631888398725317) + +[cwqk] +description = Race Rocks Automatic Weather Reporting System, Canada +location = (0.84299402871326112, -2.1560634026303283) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWQK.TXT +zone = ('waz514', 0.0050288330385894111) + +[cwqo] +description = Ile Bicquette, Que., Canada +location = (0.84501085362667683, -1.2024154993406271) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWQO.TXT +zone = ('mez001', 0.025737203193729654) + +[cwqp] +description = Point Petre , Ont., Canada +location = (0.76503598879084778, -1.3465215179136254) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWQP.TXT +zone = ('nyz004', 0.011909837451256946) + +[cwqr] +description = Ile Aux Perroquets, Que., Canada +location = (0.8765673761300965, -1.1206468238846925) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWQR.TXT +zone = ('mez002', 0.076645565010983269) + +[cwqs] +description = Kindakun Rocks, B. C., Canada +location = (0.93055137952164346, -2.3169245820224726) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWQS.TXT +zone = ('akz027', 0.034629528569040703) + +[cwqv] +description = Puinte Claveau, Canada +location = (0.84241225229592975, -1.2237666938566907) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWQV.TXT +zone = ('mez001', 0.025896391800181683) + +[cwra] +description = Cape Race, Nfld, Canada +location = (0.8141960960553547, -0.92618805639165758) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWRA.TXT + +[cwrf] +description = Pelly Bay 1, Canada +location = (1.2118402773013963, -1.5661421154562452) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWRF.TXT + +[cwrh] +description = Resolution Island, N. W. T., Canada +location = (1.0748319310198413, -1.1283553614143342) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWRH.TXT + +[cwrj] +description = Rosetown East, Sask, Canada +location = (0.90000811761174271, -1.8835011511105473) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWRJ.TXT +zone = ('mtz059', 0.04865199120421973) + +[cwrk] +description = Bancroft Automatic Weather Reporting System, Canada +location = (0.78656171623211124, -1.3590297108862512) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWRK.TXT +zone = ('nyz002', 0.031995549812634971) + +[cwrm] +description = Rocky House Marine Aviation Reporting Station, Canada +location = (0.9151343044623601, -2.0059650869588164) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWRM.TXT +zone = ('mtz010', 0.069297279284368143) + +[cwrn] +description = Hart Island Meteorological Aeronautical Presentation System, Canada +location = (0.7915068157794285, -1.0643599555078753) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWRN.TXT + +[cwro] +description = Rose Spit Meteorological Aeronautical Presentation System, Canada +location = (0.94538667816359512, -2.2980168484592003) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWRO.TXT +zone = ('akz027', 0.023883769479584181) + +[cwrt] +description = Crowsnest, Canada +location = (0.86626508540651892, -1.9981111053248417) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWRT.TXT +zone = ('mtz009', 0.023673493205008694) + +[cwru] +description = Solander Island Meteorological Aeronautical Presentation System, Canada +location = (0.87470084345782484, -2.2328578897180789) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWRU.TXT +zone = ('waz515', 0.054804614322467068) + +[cwrx] +description = Rowley Island, N. W. T., Canada +location = (1.2054407367107502, -1.3799736619101832) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWRX.TXT + +[cwry] +description = Milk River, Canada +location = (0.85753843914654726, -1.9556414268596463) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWRY.TXT +zone = ('mtz044', 0.0092825994672302778) + +[cwrz] +description = Cap D'Espoir , Que., Canada +location = (0.8450302461739212, -1.1225375972410196) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWRZ.TXT +zone = ('mez002', 0.054587097086590902) + +[cwsa] +description = Sable Island, N. S., Canada +location = (0.76678131804284211, -1.0474884394052635) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWSA.TXT + +[cwsd] +description = Summerside Automatic Weather Reporting System, Canada +location = (0.8104145493427003, -1.1143927273983794) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWSD.TXT +zone = ('mez002', 0.052644780982404001) + +[cwsf] +description = Cap Madeleine Meteorological Aeronautical Presentation System, Canada +location = (0.85957465660720733, -1.1402817779696286) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWSF.TXT +zone = ('mez002', 0.055448911541581589) + +[cwsg] +description = Cap Chat Cs, Que., Canada +location = (0.85724755093788152, -1.1632619464542207) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWSG.TXT +zone = ('mez002', 0.045569579967181105) + +[cwsk] +description = Squamish Airport, B. C, Canada +location = (0.86888307928451036, -2.1496638620396826) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWSK.TXT +zone = ('waz503', 0.017941320494652219) + +[cwsl] +description = Salmon Arm Automatic Weather Reporting System, Canada +location = (0.88488193076112509, -2.0818869094205694) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWSL.TXT +zone = ('waz038', 0.03839609899861867) + +[cwsp] +description = Sheringham Automatic Weather Reporting System, Canada +location = (0.84444846975658983, -2.1627538314296402) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWSP.TXT +zone = ('waz515', 0.0043866545336892927) + +[cwsr] +description = Spiritwood West, Sask, Canada +location = (0.93142404414764057, -1.8771016105199014) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWSR.TXT +zone = ('mtz059', 0.080055123681826518) + +[cwss] +description = St. Stephen, N. B., Canada +location = (0.78917971011010268, -1.1737339219661866) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWSS.TXT +zone = ('mez017', 0.0059536254606811275) + +[cwst] +description = La Pocatiere, Canada +location = (0.82641340081931502, -1.2223122528133621) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWST.TXT +zone = ('mez001', 0.013036157834220857) + +[cwsw] +description = Sparwood / Elk Valley, Canada +location = (0.86830130286717899, -2.0050924223328193) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWSW.TXT +zone = ('mtz001', 0.025533952451441504) + +[cwta] +description = Mc Tavish Automated Reporting Station, Canada +location = (0.79412480965741994, -1.2842714412591607) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWTA.TXT +zone = ('nyz028', 0.012202584922404915) + +[cwtg] +description = Pointe-Des-Monts , Que., Canada +location = (0.86073820944187029, -1.1760610276355126) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWTG.TXT +zone = ('mez001', 0.045959262996368128) + +[cwtn] +description = Cap Tourmente, Canada +location = (0.82146830127199788, -1.2356931104119853) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWTN.TXT +zone = ('mez003', 0.017560607409623299) + +[cwtt] +description = Lac Memphremagoc, QB, CN +location = (0.79011055237783301, -1.2596041211643076) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWTT.TXT +zone = ('vtz003', 0.0077539757835025265) + +[cwtu] +description = Tukialik Bay, Nfld., Canada +location = (0.954985989049564, -1.0183996185386912) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWTU.TXT + +[cwty] +description = Trois Rivieres, Canada +location = (0.80896010829937182, -1.2656545959045546) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWTY.TXT +zone = ('vtz016', 0.026022387131537147) + +[cwup] +description = Cape Hooper, N. W. T., Canada +location = (1.1949687611987843, -1.165879940332212) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWUP.TXT + +[cwus] +description = Summerland Automatic Weather Reporting System, Canada +location = (0.86510153257185607, -2.0882864500112155) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWUS.TXT +zone = ('waz038', 0.021069740849759957) + +[cwuw] +description = Dewar Lakes, N. W. T., Canada +location = (1.1981685314941073, -1.2420926510026313) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWUW.TXT + +[cwux] +description = La Baie , Que., Canada +location = (0.84299402871326112, -1.2380202160813112) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWUX.TXT +zone = ('mez001', 0.03190446848070938) + +[cwvd] +description = Broughton Island, Canada +location = (1.1786790215135039, -1.1132291745637164) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWVD.TXT + +[cwvf] +description = Sand Heads Cs, B. C., Canada +location = (0.85695666272921578, -2.1519909677090081) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWVF.TXT +zone = ('waz001', 0.0098906595921094045) + +[cwvh] +description = Storm Hills , N. W. T., Canada +location = (1.2025318546240931, -2.3375776448377388) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWVH.TXT + +[cwvi] +description = Vegreville Automatic Weather Reporting System, Canada +location = (0.93578736727762635, -1.9553505386509804) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWVI.TXT +zone = ('mtz010', 0.085272562010228439) + +[cwvn] +description = Val Marie Southeast, Sask, Canada +location = (0.85637488631188441, -1.8776833869372327) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWVN.TXT +zone = ('mtz059', 0.0052942505424141365) + +[cwvp] +description = Cypress Hills Park, Canada +location = (0.86655597361518455, -1.9114264191424566) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWVP.TXT +zone = ('mtz011', 0.019082395708560289) + +[cwvq] +description = Ste Anne De Bell 1, Canada +location = (0.79296125682275698, -1.2903800936411411) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWVQ.TXT +zone = ('nyz027', 0.011083724753516953) + +[cwvt] +description = Buffalo Narrows, Sask., Canada +location = (0.97447549903016739, -1.8925186855791847) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWVT.TXT + +[cwvu] +description = Brier Island, N. S., Canada +location = (0.77293360365612207, -1.1579677810565046) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWVU.TXT +zone = ('mez030', 0.016384202003623324) + +[cwvv] +description = Vic. Hartland Automatic Weather Reporting System, Canada +location = (0.84706646363458127, -2.1548998497956657) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWVV.TXT +zone = ('waz001', 0.0058752380272022627) + +[cwwa] +description = W Vancouver Automatic Weather Reporting System, Canada +location = (0.86131998585920166, -2.1499547502483485) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWWA.TXT +zone = ('waz503', 0.011772688505392641) + +[cwwb] +description = Burlington Piers, Canada +location = (0.75572756611354464, -1.3927727430914749) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWWB.TXT +zone = ('nyz085', 0.017750445543165346) + +[cwwe] +description = Western Head, N. S., Canada +location = (0.76765398266883933, -1.1286462496229999) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWWE.TXT +zone = ('mez032', 0.046181400045503321) + +[cwwf] +description = Weyburn Automatic Weather Reporting System, Canada +location = (0.86742863824118188, -1.8116517635701139) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWWF.TXT +zone = ('ndz001', 0.015853214287184426) + +[cwwk] +description = White Rock Automatic Weather Reporting System, Canada +location = (0.85550222168588719, -2.1429734332403712) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWWK.TXT +zone = ('waz503', 0.0044620358260904248) + +[cwwl] +description = Bonilla Island Meteorological Aeronautical Presentation System, Canada +location = (0.93375114981696627, -2.2799817795219255) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWWL.TXT +zone = ('akz028', 0.038403075738684858) + +[cwws] +description = George Island Meteorological Aeronautical Presentation System, Canada +location = (0.92153384505300595, -1.7037322381551312) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWWS.TXT +zone = ('ndz008', 0.070389280588983374) + +[cwwu] +description = Ingenika Point, Canada +location = (0.99134701513277912, -2.1799162357409179) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWWU.TXT + +[cwwz] +description = Port Weller, Ont., Canada +location = (0.75485490148754752, -1.3825916557881748) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWWZ.TXT +zone = ('nyz001', 0.0060903372412901601) + +[cwxa] +description = Bow Valley, Canada +location = (0.89157235956043668, -2.0082921926281418) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWXA.TXT +zone = ('idz001', 0.048122221884309396) + +[cwxc] +description = Onatchiway, Que., Canada +location = (0.85317511601656137, -1.2397655453333054) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWXC.TXT +zone = ('mez001', 0.040596633564764284) + +[cwxi] +description = Ferolle Point Meteorological Aeronautical Presentation System, Canada +location = (0.89040880672577383, -0.99658300288876223) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWXI.TXT + +[cwxl] +description = Bow Island, Canada +location = (0.86626508540651892, -1.9451694513476803) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWXL.TXT +zone = ('mtz044', 0.017300558854638624) + +[cwxr] +description = Croker River, N. W. T., Canada +location = (1.2089313952147389, -2.0807233565859065) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWXR.TXT + +[cwyj] +description = Victoria University, Canada +location = (0.84561202259125268, -2.1519909677090081) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWYJ.TXT +zone = ('waz001', 0.0044995191920929149) + +[cwyk] +description = Cape Kiglapait, Nfld., Canada +location = (0.9971647793060936, -1.0730866017678469) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWYK.TXT + +[cwyl] +description = Yoho Park Automatic Weather Reporting System, Canada +location = (0.89797190015108264, -2.0303996964867368) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWYL.TXT +zone = ('idz001', 0.051549963527651448) + +[cwym] +description = Cape Mercy, Canada +location = (1.1335913491703171, -1.109738516059728) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWYM.TXT + +[cwyy] +description = Osoyoos Automatic Weather Reporting System, Canada +location = (0.85579310989455293, -2.0845049032985612) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWYY.TXT +zone = ('waz043', 0.011935314800016287) + +[cwza] +description = Agassiz Automated Reporting Station, Canada +location = (0.85957465660720733, -2.1252292525117618) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWZA.TXT +zone = ('waz503', 0.010614336486701533) + +[cwzg] +description = Banff Marine Aviation Reporting Station, Canada +location = (0.89360857702109675, -2.0167279506794475) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWZG.TXT +zone = ('idz001', 0.048473974673453803) + +[cwzl] +description = Cumshewa Island Meteorological Aeronautical Presentation System, Canada +location = (0.9256062799743261, -2.2968532956245378) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWZL.TXT +zone = ('akz027', 0.042011397135455236) + +[cwzn] +description = Sagona Island Meteorological Aeronautical Presentation System, Canada +location = (0.82670428902798077, -0.9738937226128358) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWZN.TXT + +[cwzo] +description = Kelp Reefs, B. C., Canada +location = (0.8473573518432469, -2.1508274148743456) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWZO.TXT +zone = ('waz001', 0.0031654783163336279) + +[cwzq] +description = Grand Etang, N. S., Canada +location = (0.81245076680336037, -1.0655235083425381) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWZQ.TXT + +[cwzs] +description = Amqui , Que., Canada +location = (0.84590291079991842, -1.1769336922615097) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWZS.TXT +zone = ('mez002', 0.031746556017538063) + +[cwzv] +description = Virginia Falls, Canada +location = (1.0757045956458384, -2.1956241990088667) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWZV.TXT + +[cwzw] +description = Teslin Marine Aviation Reporting Station, Canada +location = (1.0501064332832548, -2.3172154702311385) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWZW.TXT +zone = ('akz025', 0.038550274149265207) + +[cwzz] +description = Saglek Bay, Canada +location = (1.0181087303300256, -1.0922852235397846) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CWZZ.TXT + +[cxaf] +description = Abee Agdm, AB, CN +location = (0.94736471798252209, -1.971698455977994) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CXAF.TXT +zone = ('mtz010', 0.096686501249178103) + +[cxag] +description = Andrew Agdm, AB, CN +location = (0.94108153267534256, -1.9596556841392332) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CXAG.TXT +zone = ('mtz010', 0.090402383408304574) + +[cxaj] +description = Atmore Agdm, AB, CN +location = (0.95609136424249375, -1.9692549950252021) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CXAJ.TXT + +[cxak] +description = Stettler Agdm, AB, CN +location = (0.91367986341903151, -1.9652407377456149) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CXAK.TXT +zone = ('mtz010', 0.062926396218985853) + +[cxat] +description = Arctic Bay Cs, NU, CN +location = (1.2739158210306611, -1.4837043971203796) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CXAT.TXT + +[cxba] +description = Bodo Agdm, AB, CN +location = (0.90966560613944447, -1.9216075064457567) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CXBA.TXT +zone = ('mtz011', 0.060943536408389877) + +[cxbi] +description = Barrie-Oro, ON, CN +location = (0.77614791836187835, -1.3884094199614891) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CXBI.TXT +zone = ('nyz001', 0.024368001927464678) + +[cxbk] +description = Bratts Lake, Sask., Canada +location = (0.87615528450115343, -1.827359726838063) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CXBK.TXT +zone = ('mtz019', 0.025904913553217012) + +[cxbo] +description = Beauport Cs, Que., Canada +location = (0.81739586635067774, -1.2426744274199626) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CXBO.TXT +zone = ('mez003', 0.018054883396919019) + +[cxbr] +description = Brocket Agdm, AB, CN +location = (0.86603237483958628, -1.9865337546199457) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CXBR.TXT +zone = ('mtz009', 0.019702503349645704) + +[cxbw] +description = Barnwell Agdm, AB, CN +location = (0.8691739674931761, -1.960004749989632) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CXBW.TXT +zone = ('mtz010', 0.018771421523276679) + +[cxca] +description = Cameron Falls (Aut), ON, CN +location = (0.857829327355213, -1.5416493282865913) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CXCA.TXT +zone = ('miz001', 0.027026526788550855) + +[cxcd] +description = Cleardale Agdm, AB, CN +location = (0.98279490179800699, -2.0900317792632097) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CXCD.TXT + +[cxch] +description = Cheticamp, N. S., Canada +location = (0.8141960960553547, -1.0637781790905438) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CXCH.TXT + +[cxck] +description = Carmacks Cs, Y. T., Canada +location = (1.0841403536971443, -2.376847553007611) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CXCK.TXT +zone = ('akz018', 0.045021472211049955) + +[cxcp] +description = Champion Agdm, AB, CN +location = (0.87755154790274892, -1.9783307071355725) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CXCP.TXT +zone = ('mtz010', 0.028053909457137805) + +[cxcs] +description = Consort Agdm, AB, CN +location = (0.90652401348585476, -1.9322540148829221) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CXCS.TXT +zone = ('mtz011', 0.05818560014538194) + +[cxdb] +description = Del Bonita Agdm, AB, CN +location = (0.85608399810321856, -1.9690804621000024) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CXDB.TXT +zone = ('mtz010', 0.0058150875746531784) + +[cxde] +description = Deline , N. W. T., Canada +location = (1.1382455605089685, -2.154318073378334) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CXDE.TXT + +[cxdi] +description = Delhi Cs, Ont., Canada +location = (0.74816447268823594, -1.4058627124814325) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CXDI.TXT +zone = ('paz001', 0.014429136426104654) + +[cxdk] +description = Deadman Valley, NT, CN +location = (1.0691886997717261, -2.1724113199573418) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CXDK.TXT + +[cxdp] +description = Dapp Agdm, AB, CN +location = (0.94806284968331977, -1.9888026826475387) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CXDP.TXT +zone = ('mtz010', 0.098373953581731177) + +[cxdw] +description = Deerwood Rcs , Man., Canada +location = (0.86219265048519877, -1.7159495429190916) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CXDW.TXT +zone = ('ndz007', 0.011087579906086421) + +[cxea] +description = Ear Falls (Aut), ON, CN +location = (0.88366020028472914, -1.626995928709114) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CXEA.TXT +zone = ('mnz006', 0.037594711524714414) + +[cxec] +description = Edmonton Municipal Cr10 , Alta., Canada +location = (0.93491470265162924, -1.9812395892222296) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CXEC.TXT +zone = ('mtz010', 0.084732799594184172) + +[cxeg] +description = Edmonton International Cs , Alta., Canada +location = (0.93026049131297761, -1.9826940302655582) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CXEG.TXT +zone = ('mtz010', 0.080233060679611196) + +[cxet] +description = Egbert Cs, ON, CN +location = (0.77195912815709189, -1.3924236772410761) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CXET.TXT +zone = ('nyz001', 0.022220564647015304) + +[cxfm] +description = Foremost Agdm, AB, CN +location = (0.86358891388679415, -1.945867583048478) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CXFM.TXT +zone = ('mtz044', 0.01458635781625644) + +[cxfr] +description = Fairview Agdm, AB, CN +location = (0.97878064451841995, -2.0671679660620841) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CXFR.TXT + +[cxgh] +description = Gimli Harbour Cs, Man., Canada +location = (0.88367959283197339, -1.6926590936785895) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CXGH.TXT +zone = ('mnz004', 0.032445626686584031) + +[cxhd] +description = Holden Agdm, AB, CN +location = (0.92834062913578386, -1.9591320853636349) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CXHD.TXT +zone = ('mtz010', 0.077691594346284823) + +[cxhf] +description = High Falls , Que., Canada +location = (0.79994257383073442, -1.3203415791337103) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CXHF.TXT +zone = ('nyz026', 0.019435421732150373) + +[cxhm] +description = Hamilton Rbg Cs, ON, CN +location = (0.75555303318834521, -1.3946926052686688) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CXHM.TXT +zone = ('nyz085', 0.018716227029961577) + +[cxhp] +description = High Prairie Agdm, AB, CN +location = (0.96691240560485858, -2.0329595127229951) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CXHP.TXT + +[cxhr] +description = Hussar Agdm, AB, CN +location = (0.89325951117069791, -1.9634954084936207) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CXHR.TXT +zone = ('mtz010', 0.042526165094342087) + +[cxib] +description = Ingonish Beach Cs, NS, CN +location = (0.81454516190575366, -1.054178868204575) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CXIB.TXT + +[cxka] +description = Kapukasing Cda, ON, CN +location = (0.8623671834103982, -1.4388494353441252) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CXKA.TXT +zone = ('miz008', 0.059772924409148984) + +[cxke] +description = Kemptville Cs, ON, CN +location = (0.78539816339744828, -1.3199925132833115) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CXKE.TXT +zone = ('nyz087', 0.0093321354307642421) + +[cxki] +description = Kirkland Lake Cs, ON, CN +location = (0.84037603483526968, -1.3962634015954636) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CXKI.TXT +zone = ('miz008', 0.063099125088618369) + +[cxkm] +description = Killam Agdm, AB, CN +location = (0.92240650967900317, -1.9524998342060564) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CXKM.TXT +zone = ('mtz010', 0.072124447862414273) + +[cxkt] +description = Kentville , N. S., Canada +location = (0.78656171623211124, -1.1254464793276768) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CXKT.TXT +zone = ('mez030', 0.038416541440935204) + +[cxlb] +description = Lunenberg, NS, CN +location = (0.77405352325948518, -1.1222467090323538) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CXLB.TXT +zone = ('mez032', 0.046860835076676301) + +[cxlc] +description = Lower Carp Lake , N. W. T., Canada +location = (1.1100294042683936, -1.9873482416042099) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CXLC.TXT + +[cxll] +description = Lindberg Landing , N. W. T., Canada +location = (1.066687061177201, -2.1441369860750337) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CXLL.TXT + +[cxmd] +description = Morden Cda Cs , Man., Canada +location = (0.85841110377254437, -1.7118771079977715) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CXMD.TXT +zone = ('ndz007', 0.0084026903624970627) + +[cxmg] +description = Manning Agdm, AB, CN +location = (0.99431407486116952, -2.04988920646734) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CXMG.TXT + +[cxmi] +description = Mcnabs Island , N. S., Canada +location = (0.77841684638947095, -1.1088658514337306) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CXMI.TXT +zone = ('mez002', 0.068120149951601788) + +[cxmm] +description = Fort Mcmurray Cs, Alta., Canada +location = (0.98872902125478768, -1.9410970164263601) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CXMM.TXT + +[cxmo] +description = Morrin Agdm, AB, CN +location = (0.90163709158027061, -1.9666370011472107) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CXMO.TXT +zone = ('mtz010', 0.050888129056877437) + +[cxmy] +description = Malay Falls , N. S., Canada +location = (0.78510727518878254, -1.0905398942877902) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CXMY.TXT +zone = ('mez006', 0.071173071571595664) + +[cxnm] +description = North Mountain , N. S., Canada +location = (0.817104978142012, -1.0588330795432266) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CXNM.TXT + +[cxnp] +description = Nappan Auto, NS, CN +location = (0.79848813278740571, -1.1210249785559578) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CXNP.TXT +zone = ('mez002', 0.051064560119796425) + +[cxol] +description = Olds Agdm, AB, CN +location = (0.90338242083226494, -1.9910716106751312) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CXOL.TXT +zone = ('mtz010', 0.05509860234720982) + +[cxox] +description = La Ronge , Sask., Canada +location = (0.9625490824748727, -1.8372499259326975) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CXOX.TXT + +[cxoy] +description = Oyen Agdm, AB, CN +location = (0.89675016967468657, -1.9259708295757425) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CXOY.TXT +zone = ('mtz011', 0.048102481212944609) + +[cxpa] +description = Peoria Agdm, AB, CN +location = (0.97075212995924609, -2.0645499721840928) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CXPA.TXT + +[cxpc] +description = Parry Sound Ccg, ON, CN +location = (0.79133228285422907, -1.3969615332962615) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CXPC.TXT +zone = ('nyz001', 0.040699016930241257) + +[cxpl] +description = Pollockville Agdm, AB, CN +location = (0.8923868465447008, -1.9497073074028655) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CXPL.TXT +zone = ('mtz010', 0.04286180711342949) + +[cxrb] +description = Resolute Cs, NU, CN +location = (1.3041100170901629, -1.6577137235442143) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CXRB.TXT + +[cxrh] +description = Rocky Harbour Cs, Nfld., Canada +location = (0.86510153257185607, -1.0102547486960511) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CXRH.TXT + +[cxrl] +description = Rich Lake Agdm, AB, CN +location = (0.95120444233690959, -1.9495327744776663) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CXRL.TXT + +[cxsc] +description = Schuler Agdm, AB, CN +location = (0.87807514667834718, -1.9214329735205575) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CXSC.TXT +zone = ('mtz011', 0.029353941168504195) + +[cxse] +description = Stefansson Island, NT, CN +location = (1.2875293891962167, -1.8374826364996302) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CXSE.TXT + +[cxsh] +description = Shawinigan Cs , Que., Canada +location = (0.81303254322069185, -1.2668181487392174) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CXSH.TXT +zone = ('vtz016', 0.030019631985942423) + +[cxsl] +description = Smoky Lake Agdm, AB, CN +location = (0.94736471798252209, -1.9634954084936207) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CXSL.TXT +zone = ('mtz010', 0.096619333288133338) + +[cxsp] +description = St Paul Agdm, AB, CN +location = (0.94265232900213736, -1.9420278586940904) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CXSP.TXT +zone = ('mtz010', 0.093058811274193465) + +[cxsr] +description = Spirit River Auto Station, Alta, Canada +location = (0.97206597503505288, -2.0810287892050057) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CXSR.TXT + +[cxsw] +description = St. John'S West Cda Cs, Nfld., Canada +location = (0.82930289035872795, -0.9212671975283957) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CXSW.TXT + +[cxtd] +description = Tracadie, NS, CN +location = (0.79604467183461369, -1.0765190826301025) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CXTD.TXT + +[cxth] +description = Two Hills Agdm, AB, CN +location = (0.93602007784455898, -1.9491837086272674) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CXTH.TXT +zone = ('mtz010', 0.085878628622913497) + +[cxtn] +description = Tuktut Nogait , N. W. T., Canada +location = (1.2074769541714103, -2.1354103398150621) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CXTN.TXT + +[cxto] +description = Toronto, ON, CN +location = (0.81454516190575366, -1.3857914260834978) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CXTO.TXT +zone = ('nyz001', 0.061085630108338652) + +[cxtp] +description = Terra Nova National Park Cs, Nfld., Canada +location = (0.84747855526352434, -0.94203176749031714) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CXTP.TXT + +[cxtv] +description = Trail Valley , N. W. T., Canada +location = (1.1999138607461015, -2.3300145514124297) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CXTV.TXT + +[cxvm] +description = Vermilion Agdm, AB, CN +location = (0.93095862301377541, -1.9352210746113125) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CXVM.TXT +zone = ('mtz044', 0.082253113096734803) + +[cxvn] +description = Vineland Station Rcs, ON, CN +location = (0.75363317101115146, -1.3857914260834978) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CXVN.TXT +zone = ('nyz010', 0.0099679376607140335) + +[cxvw] +description = Valleyview Agdm, AB, CN +location = (0.96167641784887559, -2.0455258833373544) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CXVW.TXT + +[cxwb] +description = Wager Bay (Aut), NU, CN +location = (1.1498229112138643, -1.5611970159089279) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CXWB.TXT + +[cxwm] +description = Wrentham Agdm, AB, CN +location = (0.86393797973719311, -1.9568631573360424) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CXWM.TXT +zone = ('mtz010', 0.014356173842931166) + +[cxwn] +description = Winnipeg The Forks, Man., Canada +location = (0.87062840853650469, -1.6952964801038255) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CXWN.TXT +zone = ('mnz004', 0.0197237358086889) + +[cxyh] +description = Yohin, NU, CN +location = (1.0688396339213275, -2.1596704164177831) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CXYH.TXT + +[cxzc] +description = Moosonee Rcs, ON, CN +location = (0.89483030749749282, -1.4067353771074296) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CXZC.TXT +zone = ('miz008', 0.098031616476094069) + +[cxzu] +description = Whitecourt , Alta., Canada +location = (0.94509578995492938, -2.0208003856007677) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CXZU.TXT +zone = ('idz001', 0.098972585025898133) + +[cxzv] +description = Sept-Iles, QB, CN +location = (0.87650435035155227, -1.1562806294462433) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CXZV.TXT +zone = ('mez002', 0.065082894154005921) + +[cyab] +description = Arctic Bay, Nunavut, Canada +location = (1.2747659979244137, -1.4868134086611933) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYAB.TXT + +[cyad] +description = La Grande Iii Supplementary Aviation Weather Reporting Station, Canada +location = (0.93491470265162924, -1.3299408900196792) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYAD.TXT + +[cyah] +description = La Grande Iv, Que., Canada +location = (0.93811447294695216, -1.2857258823024895) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYAH.TXT + +[cyam] +description = Sault Ste Marie, Ont., Canada +location = (0.81128721396869752, -1.4748032179352084) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYAM.TXT +zone = ('miz008', 0.0033450047298128798) + +[cyas] +description = Kangirsuk Supplementary Aviation Weather Reporting Station, Canada +location = (1.0474884394052635, -1.2217304763960306) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYAS.TXT + +[cyaw] +description = Shearwater, N. S., Canada +location = (0.77899862280680243, -1.1082840750163994) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYAW.TXT +zone = ('mez002', 0.068133488268611736) + +[cyay] +description = Saint Anthony Airport, Canada +location = (0.89709923552508541, -0.97883882216015317) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYAY.TXT + +[cyaz] +description = Tofino Airport, Canada +location = (0.85666577452055015, -2.195042422591535) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYAZ.TXT +zone = ('waz515', 0.024387683402037643) + +[cybb] +description = Pelly Bay Airport, Canada +location = (1.1961323140334472, -1.5675965564995735) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYBB.TXT + +[cybc] +description = Baie Comeau, Que., Canada +location = (0.85753843914654726, -1.1903145498601329) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYBC.TXT +zone = ('mez001', 0.03958391253190225) + +[cybd] +description = Bella Coola Airport, Canada +location = (0.91426163983636299, -2.2092959448161555) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYBD.TXT +zone = ('akz029', 0.072855335900038329) + +[cybg] +description = Bagotville, Que., Canada +location = (0.8435758051305926, -1.2391837689159739) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYBG.TXT +zone = ('mez001', 0.032858125841091032) + +[cybk] +description = Baker Lake, N. W. T., Canada +location = (1.1222467090323538, -1.6769705229578848) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYBK.TXT + +[cybl] +description = Campbell River Airport, Canada +location = (0.87179196137116766, -2.1863157763315635) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYBL.TXT +zone = ('waz515', 0.033363775715049268) + +[cybn] +description = Borden, Ont., Canada +location = (0.77230819400749084, -1.3948089605521352) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYBN.TXT +zone = ('nyz001', 0.023546384486321768) + +[cybq] +description = Tadoule Lake Airport, Tadoule Lake, Canada +location = (1.0246149279912609, -1.7193626273555933) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYBQ.TXT + +[cybr] +description = Brandon, Man., Canada +location = (0.87121018495383618, -1.7444565873683324) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYBR.TXT +zone = ('ndz005', 0.020009567437212564) + +[cybu] +description = Nipawin, Sask., Canada +location = (0.93084226773030909, -1.8151424220741028) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYBU.TXT +zone = ('ndz001', 0.079061123176630416) + +[cybv] +description = Berens River Airport, Canada +location = (0.91367986341903151, -1.6935511508518311) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYBV.TXT +zone = ('mnz004', 0.062429406239212136) + +[cybw] +description = Calgary / Springbank, Canada +location = (0.89186324776910242, -1.9960748878641814) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYBW.TXT +zone = ('mtz010', 0.045563772701835821) + +[cybx] +description = Blanc Sablon, Que., Canada +location = (0.89797190015108264, -0.99803744393209071) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYBX.TXT + +[cycb] +description = Cambridge Bay, N. W. T., Canada +location = (1.2060225131280815, -1.834631932054706) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYCB.TXT + +[cycd] +description = Nanaimo Airport, Canada +location = (0.85608399810321856, -2.1618811668036426) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYCD.TXT +zone = ('waz515', 0.015449899642706126) + +[cycg] +description = Castlegar Airport, Canada +location = (0.86044732123320444, -2.053088976762663) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYCG.TXT +zone = ('waz037', 0.015566239093257536) + +[cyco] +description = Coppermine, N. W. T., Canada +location = (1.1836241210608212, -2.0094557454628048) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYCO.TXT + +[cycp] +description = Blue River, B. C., Canada +location = (0.90989831670637711, -2.0821777976292353) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYCP.TXT +zone = ('waz038', 0.063194850874566791) + +[cycq] +description = Chetwynd Airport, Canada +location = (0.97214839336084158, -2.1229021468424363) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYCQ.TXT + +[cycs] +description = Chesterfield Inlet, Canada +location = (1.1053751929297422, -1.5833045197675226) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYCS.TXT + +[cycx] +description = Gagetown Can-Mil, Canada +location = (0.79994257383073442, -1.1594803997415664) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYCX.TXT +zone = ('mez032', 0.017134738772929255) + +[cycy] +description = Clyde, N. W. T., Canada +location = (1.2301662344473365, -1.1958414258247814) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYCY.TXT + +[cyda] +description = Dawson, Y. T., Canada +location = (1.117883385902368, -2.4283347659414436) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYDA.TXT +zone = ('akz224', 0.029092983400040077) + +[cydb] +description = Burwash Airport, Canada +location = (1.0710503843071868, -2.4265894366894494) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYDB.TXT +zone = ('akz017', 0.028037089160280453) + +[cydc] +description = Princeton Airport, Canada +location = (0.86335620331986174, -2.1034126368618327) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYDC.TXT +zone = ('waz518', 0.020392139875921301) + +[cydf] +description = Deer Lake, Nfld., Canada +location = (0.85899288018987585, -1.0018189906447452) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYDF.TXT + +[cydn] +description = Dauphin, Man., Canada +location = (0.89186324776910242, -1.7462019166203266) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYDN.TXT +zone = ('ndz005', 0.040691958497331711) + +[cydp] +description = Nain, Nfld, Canada +location = (0.98698369200279334, -1.0765772602718355) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYDP.TXT + +[cydq] +description = Dawson Creek Airport, Canada +location = (0.97302105798683869, -2.0975948726885183) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYDQ.TXT + +[cyed] +description = Edmonton Namao Alta., Canada +location = (0.93666003190362346, -1.9803669245962325) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYED.TXT +zone = ('mtz010', 0.08640503166315823) + +[cyeg] +description = Edmonton International, Alta., Canada +location = (0.93026049131297761, -1.9824031420568926) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYEG.TXT +zone = ('mtz010', 0.080208737095464513) + +[cyek] +description = Arviat Airport, Canada +location = (1.0663961729685354, -1.6417730497093326) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYEK.TXT + +[cyen] +description = Estevan, Sask., Canada +location = (0.85899288018987585, -1.797107353136828) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYEN.TXT +zone = ('ndz002', 0.0090317887061491849) + +[cyet] +description = Edson, Alta., Canada +location = (0.93520559086029498, -2.0327268021560627) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYET.TXT +zone = ('idz001', 0.088726793774640364) + +[cyev] +description = Inuvik, N. W. T., Canada +location = (1.1920598791121271, -2.3297236632037639) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYEV.TXT + +[cyfb] +description = Iqaluit, N. W. T., Canada +location = (1.1126473981463851, -1.1964232022421128) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYFB.TXT + +[cyfc] +description = Fredericton, N. B., Canada +location = (0.80052435024806579, -1.1612257289935606) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYFC.TXT +zone = ('mez032', 0.016235535126031049) + +[cyfo] +description = Flin Flon Airport, Canada +location = (0.95440421263223252, -1.7747089610695674) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYFO.TXT + +[cyfr] +description = Fort Resolution, Canada +location = (1.067850614011864, -1.9841484713088871) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYFR.TXT + +[cyfs] +description = Fort Simpson, N. W. T., Canada +location = (1.0777408131064985, -2.1159208298344589) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYFS.TXT + +[cyft] +description = Makkovik Airport, Canada +location = (0.96138552964020985, -1.0329440289719773) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYFT.TXT + +[cyge] +description = Golden Airport, Canada +location = (0.89535390627309097, -2.0417443366246997) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYGE.TXT +zone = ('idz001', 0.049100167038513047) + +[cygh] +description = Fort Good Hope Airport, Canada +location = (1.156571517654909, -2.2447843062733734) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYGH.TXT + +[cygk] +description = Kingston, Ont., Canada +location = (0.77172641759015936, -1.3369222070276563) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYGK.TXT +zone = ('nyz007', 0.0091698383930018754) + +[cygl] +description = La Grande Riviere, Que, Canada +location = (0.93607825548629209, -1.3561208287995941) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYGL.TXT + +[cygp] +description = Gaspe, Que., Canada +location = (0.85113889855590141, -1.1254464793276768) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYGP.TXT +zone = ('mez002', 0.056461718709472551) + +[cygq] +description = Geraldton, Ont., Canada +location = (0.86888307928451036, -1.5172728964004039) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYGQ.TXT +zone = ('miz001', 0.041742861041435403) + +[cygr] +description = Iles De La Madeleineque., Canada +location = (0.82757695365397788, -1.07832258952383) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYGR.TXT + +[cygt] +description = Igloolik Airport, Canada +location = (1.2106767244667331, -1.4279702163400272) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYGT.TXT + +[cygv] +description = Havre St Pierre, Canada +location = (0.87760972554448202, -1.1103202924770592) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYGV.TXT +zone = ('mez002', 0.08173205726644435) + +[cygw] +description = Kuujjuarapik, Que., Canada +location = (0.96487618814419851, -1.357284381634257) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYGW.TXT + +[cygx] +description = Gillam, Man., Canada +location = (0.98349303349880468, -1.65282680163863) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYGX.TXT + +[cyha] +description = Quaqtaq Airport, Canada +location = (1.0655235083425381, -1.215330935805385) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYHA.TXT + +[cyhd] +description = Dryden Airport, Canada +location = (0.86975574391050758, -1.6187928812247407) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYHD.TXT +zone = ('mnz011', 0.029679401036384379) + +[cyhe] +description = Hope, B. C., Canada +location = (0.8616108740678674, -2.1202841529644445) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYHE.TXT +zone = ('waz503', 0.014404354401332109) + +[cyhh] +description = Nemiscau Airport Supplementary Aviation Weather Reporting Station, Canada +location = (0.90233522328106841, -1.3284864489763504) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYHH.TXT + +[cyhi] +description = Holman Island Airport, Canada +location = (1.2351113339946538, -2.0559978588493202) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYHI.TXT + +[cyhk] +description = Gjoa Haven Airport, Canada +location = (1.1978776432854417, -1.6728980880365647) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYHK.TXT + +[cyhm] +description = Hamilton Airport, Canada +location = (0.75340046044421893, -1.3950998487608008) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYHM.TXT +zone = ('nyz085', 0.017726582371084827) + +[cyhu] +description = Saint Hubert Airport, Canada +location = (0.79441569786608568, -1.2813625591725037) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYHU.TXT +zone = ('nyz028', 0.012519191457310674) + +[cyhy] +description = Hay River, N. W. T., Canada +location = (1.0617419616298838, -2.0208003856007677) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYHY.TXT + +[cyhz] +description = Halifax International Airport, Canada +location = (0.78336194593678821, -1.1082840750163994) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYHZ.TXT +zone = ('mez002', 0.065787306509602517) + +[cyik] +description = Ivujivik Airport Supplementary Aviation Weather Reporting Station, Canada +location = (1.0893763414531272, -1.3604841519295798) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYIK.TXT + +[cyio] +description = Pond Inlet, N. W. T., Canada +location = (1.2688543661998777, -1.3607750401382457) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYIO.TXT + +[cyiv] +description = Island Lake, Man., Canada +location = (0.93985980219894649, -1.6519541370126329) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYIV.TXT +zone = ('mnz006', 0.088673089056831592) + +[cyjf] +description = Fort Liard Airport, Canada +location = (1.0512699861179178, -2.1551907380043311) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYJF.TXT + +[cyjt] +description = Stephenville, Nfld., Canada +location = (0.84706646363458127, -1.0218902770426799) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYJT.TXT + +[cyka] +description = Kamloops, B. C., Canada +location = (0.88488193076112509, -2.1022490840271701) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYKA.TXT +zone = ('waz503', 0.03942552602675467) + +[cykd] +description = Aklavik Airport, Canada +location = (1.1906054380687985, -2.3561944901923448) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYKD.TXT + +[cykf] +description = Waterloo Well, Canada +location = (0.75863644820020193, -1.4029538303947753) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYKF.TXT +zone = ('paz001', 0.024050994957891689) + +[cykg] +description = Kangiqsujuaq Supplementary Aviation Weather Reporting Station, Canada +location = (1.0748319310198413, -1.2554735086012545) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYKG.TXT + +[cykj] +description = Key Lake, Canada +location = (0.99920099676675367, -1.8433585783146775) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYKJ.TXT + +[cykl] +description = Schefferville, Que., Canada +location = (0.95644043009289259, -1.165879940332212) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYKL.TXT + +[cyko] +description = Akulivik Airport, Canada +location = (1.0614510734212181, -1.3639748104335687) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYKO.TXT + +[cykq] +description = Waskaganish Airport, Canada +location = (0.89855367656841401, -1.3744467859455345) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYKQ.TXT + +[cyky] +description = Kindersley, Sask., Canada +location = (0.89913545298574538, -1.9053177667604766) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYKY.TXT +zone = ('mtz059', 0.050331563087647253) + +[cykz] +description = Toronto Buttonville, Canada +location = (0.76561776520817926, -1.3852096496661661) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYKZ.TXT +zone = ('nyz001', 0.014046659296803814) + +[cyla] +description = Aupaluk, Que., Canada +location = (1.0349220687909042, -1.2147443112512422) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYLA.TXT + +[cylc] +description = Kimmirut A Nwt, Canada +location = (1.096939434878436, -1.2196942589353708) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYLC.TXT + +[cyld] +description = Chapleau, Ont., Canada +location = (0.83455827066195531, -1.4547319315372735) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYLD.TXT +zone = ('miz008', 0.030228284826838092) + +[cylj] +description = Meadow Lake, Sask., Canada +location = (0.94480490174626375, -1.8939731266225133) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYLJ.TXT +zone = ('mtz059', 0.09378807115692106) + +[cylk] +description = Lutsel Ke, N. W. T., Canada +location = (1.0893763414531272, -1.9314977055403915) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYLK.TXT + +[cyll] +description = Lloydminister, Alta., Canada +location = (0.93055137952164346, -1.9210257300284252) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYLL.TXT +zone = ('mtz011', 0.081830645883227304) + +[cylt] +description = Alert Airport, Canada +location = (1.4401875211039876, -1.0870492357838015) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYLT.TXT + +[cylu] +description = Kangiksualujjuaq A, Canada +location = (1.0247991591293373, -1.1516264181075917) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYLU.TXT + +[cylw] +description = Kelowna Airport, Canada +location = (0.8720828495798334, -2.0836322386725641) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYLW.TXT +zone = ('waz038', 0.02621107606243353) + +[cyma] +description = Mayo Airport, Canada +location = (1.1103202924770592, -2.3713206770429625) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYMA.TXT +zone = ('akz018', 0.070762268752699323) + +[cymh] +description = Mary'S Harbour, Canada +location = (0.91280719879303429, -0.97476638723883313) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYMH.TXT + +[cymj] +description = Moose Jaw, Sask., Canada +location = (0.87848239017047924, -1.8421950254800148) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYMJ.TXT +zone = ('mtz018', 0.027044463866237791) + +[cymm] +description = Fort Mcmurray, Alta., Canada +location = (0.98872902125478768, -1.9410970164263601) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYMM.TXT + +[cymo] +description = Moosonee, Ont., Canada +location = (0.8947721298557596, -1.4076080417334269) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYMO.TXT +zone = ('miz008', 0.097714937211943062) + +[cymt] +description = Chibougamau-Chapais, Que, Canada +location = (0.86859219107584462, -1.3008520691531069) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYMT.TXT +zone = ('mez003', 0.081417923802975189) + +[cymu] +description = Umiujaq, Canada +location = (0.9866928037941276, -1.3354677659843277) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYMU.TXT + +[cymx] +description = Montreal / Mirabel, Canada +location = (0.79732457995274286, -1.2921254228931354) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYMX.TXT +zone = ('nyz027', 0.014469725387165889) + +[cyna] +description = Natashquan, Que., Canada +location = (0.87586439629248769, -1.0789043659411615) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYNA.TXT + +[cync] +description = Aeroport De Wemindji, Que., Canada +location = (0.92521358089262729, -1.3758478974839412) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYNC.TXT + +[cynd] +description = Gatineau Airport, Canada +location = (0.79441569786608568, -1.3188871380903817) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYND.TXT +zone = ('nyz026', 0.014174541690669481) + +[cyne] +description = Norway House, Man., Canada +location = (0.94189601965960656, -1.7075137848677857) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYNE.TXT +zone = ('ndz008', 0.090799485189547779) + +[cynm] +description = Matagami, Que., Canada +location = (0.86859219107584462, -1.3581570462602541) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYNM.TXT +zone = ('nyz026', 0.092461317516674774) + +[cyoa] +description = Ekati, N. W. T., Canada +location = (1.1292280260403313, -1.9306250409143941) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYOA.TXT + +[cyoc] +description = Old Crow Airport, Canada +location = (1.1792607979308352, -2.4402611824967382) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYOC.TXT +zone = ('akz224', 0.059228445395030395) + +[cyod] +description = Cold Lake, Alta., Canada +location = (0.949750001293581, -1.9248072767410798) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYOD.TXT + +[cyoj] +description = High Level, Alta, Canada +location = (1.0230538298773428, -2.0449441069200227) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYOJ.TXT + +[cyoo] +description = Oshawa, CN +location = (0.76637407455071005, -1.376715713973127) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYOO.TXT +zone = ('nyz001', 0.012494269474726075) + +[cyow] +description = Ottawa Int'L. Ont., Canada +location = (0.79092503936209702, -1.3206324673423762) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYOW.TXT +zone = ('nyz026', 0.012369158091722277) + +[cyoy] +description = Valcartier Airport, Canada +location = (0.81855941918534059, -1.2479104151759457) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYOY.TXT +zone = ('mez003', 0.021687817298494963) + +[cypa] +description = Prince Albert, Sask., Canada +location = (0.92880605026964902, -1.8445221311493407) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYPA.TXT +zone = ('mtz018', 0.077382252038940252) + +[cypc] +description = Paulatuk Airport, Canada +location = (1.2103858362580675, -2.1647900488903002) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYPC.TXT + +[cypd] +description = Port Hawkesbury, Canada +location = (0.79703369174407712, -1.0713412725158526) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYPD.TXT + +[cype] +description = Peace River, Alta., Canada +location = (0.98145681603814472, -2.0495983182586746) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYPE.TXT + +[cypg] +description = Portage Southport A, Canada +location = (0.87091929674517043, -1.7150768782930945) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYPG.TXT +zone = ('ndz007', 0.019812620524317783) + +[cyph] +description = Inukjuak Airport Supplementary Aviation Weather Reporting Station, Canada +location = (1.0204358359993513, -1.3628112575989055) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYPH.TXT + +[cypl] +description = Pickle Lake Man, Canada +location = (0.89797190015108264, -1.5742869852988852) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYPL.TXT +zone = ('mnz011', 0.063459894528886451) + +[cypq] +description = Peterborough Airport, Canada +location = (0.7720173057988251, -1.3677563571462228) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYPQ.TXT +zone = ('nyz002', 0.017208980909125954) + +[cypr] +description = Prince Rupert, B. C., Canada +location = (0.94771378383292093, -2.276491121017937) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYPR.TXT +zone = ('akz029', 0.025507495811564952) + +[cypw] +description = Powell River Airport, Canada +location = (0.86975574391050758, -2.1729349187329401) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYPW.TXT +zone = ('waz001', 0.028049901701233126) + +[cypx] +description = Povungnituq, Canada +location = (1.0480702158225947, -1.3488486235829509) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYPX.TXT + +[cypy] +description = Fort Chipewyan, Alta., Canada +location = (1.0256718237553344, -1.9393516871743657) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYPY.TXT + +[cyqa] +description = Muskoka, Ont., Canada +location = (0.78481638698011691, -1.3840460968315034) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYQA.TXT +zone = ('nyz001', 0.031597442294868418) + +[cyqb] +description = Quebec, Que, Canada +location = (0.81681408993334614, -1.2458741977152856) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYQB.TXT +zone = ('mez003', 0.019599579249382455) + +[cyqd] +description = The Pas, Man., Canada +location = (0.94189601965960656, -1.7645278737662671) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYQD.TXT +zone = ('ndz004', 0.09035969450223022) + +[cyqf] +description = Red Deer, Alta., Canada +location = (0.91077098133237422, -1.9879300180215413) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYQF.TXT +zone = ('mtz010', 0.061682981839930782) + +[cyqg] +description = Windsor, Ont., Canada +location = (0.73769249717626995, -1.4480415027379621) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYQG.TXT +zone = ('miz076', 0.0041414065701580773) + +[cyqh] +description = Watson Lake, Y. T., Canada +location = (1.0492337686572577, -2.2482749647773623) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYQH.TXT +zone = ('akz026', 0.072229739499526491) + +[cyqi] +description = Yarmouth, N. S., Canada +location = (0.76503598879084778, -1.1533717473595859) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYQI.TXT +zone = ('mez030', 0.023456202663628391) + +[cyqk] +description = Kenora, Ont., Canada +location = (0.86888307928451036, -1.6470090374653155) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYQK.TXT +zone = ('mnz006', 0.018687024205908544) + +[cyql] +description = Lethbridge, Alta., Canada +location = (0.86626508540651892, -1.9687313962496036) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYQL.TXT +zone = ('mtz010', 0.015650532190672865) + +[cyqm] +description = Moncton, N. B., Canada +location = (0.80488767337805167, -1.1289371378316655) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYQM.TXT +zone = ('mez002', 0.043836262561264709) + +[cyqq] +description = Comox, B. C., Canada +location = (0.86771952644984751, -2.1799162357409179) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYQQ.TXT +zone = ('waz515', 0.028096758997058595) + +[cyqr] +description = Regina, Sask., Canada +location = (0.88022771942247346, -1.8267779504207318) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYQR.TXT +zone = ('mtz019', 0.029938577088532339) + +[cyqt] +description = Thunder Bay, Ont., Canada +location = (0.84415758154792409, -1.558869910239602) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYQT.TXT +zone = ('miz001', 0.016941469257779951) + +[cyqu] +description = Grande Prairie, Alta., Canada +location = (0.96313085889220418, -2.0749055924125921) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYQU.TXT + +[cyqv] +description = Yorkton, Sask., Canada +location = (0.8947721298557596, -1.7883807068768565) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYQV.TXT +zone = ('ndz002', 0.043214154534199488) + +[cyqw] +description = North Battleford, Sask., Canada +location = (0.92095206863567458, -1.8893189152838616) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYQW.TXT +zone = ('mtz059', 0.069782647255946267) + +[cyqx] +description = Gander Int. Airport, Nfld., Canada +location = (0.85433866885122434, -0.95236799517157256) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYQX.TXT + +[cyqy] +description = Sydney, N. S., Canada +location = (0.80576033800404878, -1.0480702158225947) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYQY.TXT + +[cyqz] +description = Quesnel Airport, Canada +location = (0.9256062799743261, -2.1383192219017193) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYQZ.TXT +zone = ('waz503', 0.072860640776349156) + +[cyra] +description = Rae Lakes Arpt, NT, CN +location = (1.1191051163787642, -2.0474457455145481) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYRA.TXT + +[cyrb] +description = Resolute, N. W. T., Canada +location = (1.30405183944843, -1.6577719011859473) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYRB.TXT + +[cyrj] +description = Roberval, Que., Canada +location = (0.84677557542591553, -1.2612912727745689) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYRJ.TXT +zone = ('mez003', 0.048154984348438748) + +[cyrl] +description = Red Lake, Ont., Canada +location = (0.89128147135177105, -1.6371188383706812) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYRL.TXT +zone = ('mnz006', 0.041931057094109443) + +[cyrt] +description = Rankin Inlet, N. W. T., Canada +location = (1.0963576584611048, -1.607739129295443) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYRT.TXT + +[cyrv] +description = Revelstoke, B. C., Canada +location = (0.88953614209977661, -2.0626882876486317) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYRV.TXT +zone = ('waz038', 0.04287268040323268) + +[cysb] +description = Sudbury, Ont., Canada +location = (0.81361431963802333, -1.4102260356114182) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYSB.TXT +zone = ('miz008', 0.04571013802936031) + +[cysc] +description = Sherbrooke, Que., Canada +location = (0.79237948040542561, -1.2546008439752574) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYSC.TXT +zone = ('nhz001', 0.010451375338890888) + +[cysd] +description = Suffield Airport, Canada +location = (0.87731883733581628, -1.9405152400090289) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYSD.TXT +zone = ('mtz044', 0.02871949838121781) + +[cysf] +description = Stony Rapids Airport, Canada +location = (1.0341075818066403, -1.847140125027332) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYSF.TXT + +[cysj] +description = Saint John, N. B., Canada +location = (0.79121592757076276, -1.1498810888555975) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYSJ.TXT +zone = ('mez032', 0.022910842467720353) + +[cysk] +description = Sanikiluaq Airport, Canada +location = (0.9866928037941276, -1.3831734322055063) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYSK.TXT + +[cysl] +description = Saint Leonard Airport, Canada +location = (0.82292274231532636, -1.1839150092694868) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYSL.TXT +zone = ('mez002', 0.0087002474079736717) + +[cysm] +description = Fort Smith, N. W. T., Canada +location = (1.0474884394052635, -1.953896097607652) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYSM.TXT + +[cysn] +description = Saint Catharines Airport, Canada +location = (0.75398223686155041, -1.3817189911621777) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYSN.TXT +zone = ('nyz001', 0.005396610952564951) + +[cysp] +description = Marathon, On, CN +location = (0.85084801034723567, -1.5070918090971035) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYSP.TXT +zone = ('miz001', 0.031342895555369135) + +[cysy] +description = Sachs Harbour Airport, Canada +location = (1.2566370614359172, -2.1866066645402293) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYSY.TXT + +[cyte] +description = Cape Dorset, N. W. T., Canada +location = (1.1207922679890254, -1.3357586541929936) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYTE.TXT + +[cyth] +description = Thompson Weather Office, Man, Canada +location = (0.9738937226128358, -1.7078046730764513) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYTH.TXT + +[cytl] +description = Big Trout Lake, Canada +location = (0.93956891399028075, -1.5684692211255706) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYTL.TXT + +[cytq] +description = Tasiujaq A, Canada +location = (1.0239264945033399, -1.2208578117700335) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYTQ.TXT + +[cytr] +description = Trenton, Ont., Canada +location = (0.76998108833816503, -1.3532119467129369) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYTR.TXT +zone = ('nyz003', 0.017058404704989528) + +[cyts] +description = Timmins, Ont., Canada +location = (0.84764824005191275, -1.4201162347060527) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYTS.TXT +zone = ('miz008', 0.054770861839338991) + +[cytz] +description = Toronto Island Airport Automated Reporting Station, Canada +location = (0.76154533028685911, -1.3857914260834978) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYTZ.TXT +zone = ('nyz001', 0.011242276605016196) + +[cyua] +description = Shingle Point, Y. T., Canada +location = (1.2034045192500902, -2.3948826219448858) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYUA.TXT +zone = ('akz224', 0.088298882176558) + +[cyub] +description = Tuktoyaktuk, Canada +location = (1.2121311655100619, -2.321578793361124) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYUB.TXT + +[cyul] +description = Montreal / Pierre Elliot Trudeau International Airport, Que, Canada +location = (0.79354303324008857, -1.2871803233458181) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYUL.TXT +zone = ('nyz028', 0.011951519622545764) + +[cyus] +description = Shepherd Bay, N. W. T., Canada +location = (1.2010774135807645, -1.6307192977800353) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYUS.TXT + +[cyut] +description = Repulse Bay Airport, Canada +location = (1.1612257289935606, -1.5053464798451093) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYUT.TXT + +[cyux] +description = Hall Beach, N. W. T., Canada +location = (1.200495637163433, -1.4180800172453927) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYUX.TXT + +[cyuy] +description = Rouyn Airport, Canada +location = (0.8412486994612669, -1.3759012269888631) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYUY.TXT +zone = ('nyz026', 0.075072091044110417) + +[cyvc] +description = La Ronge, Sask, Canada +location = (0.9625490824748727, -1.8372499259326975) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYVC.TXT + +[cyvm] +description = Broughton Island Airport, Canada +location = (1.1789699097221695, -1.1175924976937024) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYVM.TXT + +[cyvo] +description = Val D'Or, Que., Canada +location = (0.83892159379194109, -1.3575752698429226) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYVO.TXT +zone = ('nyz026', 0.065923594427907059) + +[cyvp] +description = Kuujjuaq, Que., Canada +location = (1.0140362954087054, -1.1940960965727871) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYVP.TXT + +[cyvq] +description = Norman Wells, N. W. T., Canada +location = (1.1394091133436315, -2.2130774915288098) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYVQ.TXT + +[cyvr] +description = Vancouver International Air-Port, B. C., Canada +location = (0.85841110377254437, -2.1496638620396826) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYVR.TXT +zone = ('waz503', 0.0097136293948229431) + +[cyvt] +description = Buffalo Narrows Man, Canada +location = (0.97447549903016739, -1.8928095737878505) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYVT.TXT + +[cyvv] +description = Wiarton, Ont., Canada +location = (0.7810348402674625, -1.4154620233674011) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYVV.TXT +zone = ('miz055', 0.031637243632986811) + +[cywa] +description = Petawawa, Ont., Canada +location = (0.80197879129139449, -1.3494304000002824) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYWA.TXT +zone = ('nyz087', 0.035153579697897855) + +[cywg] +description = Winnipeg Int. Airportman., Canada +location = (0.87091929674517043, -1.6970418093558197) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYWG.TXT +zone = ('ndz008', 0.020099876724442623) + +[cywh] +description = Victoria Harbour, Canada +location = (0.8450302461739212, -2.1525727441263398) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYWH.TXT +zone = ('waz001', 0.0051344050492557573) + +[cywj] +description = Fort Franklin Airport, Canada +location = (1.1379546723003029, -2.154318073378334) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYWJ.TXT + +[cywk] +description = Wabush Lake, Nfld., Canada +location = (0.92386095072233176, -1.1670434931668749) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYWK.TXT + +[cywl] +description = Williams Lake, B. C., Canada +location = (0.91077098133237422, -2.130174352059079) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYWL.TXT +zone = ('waz503', 0.05821708435662367) + +[cywy] +description = Wrigley Airport, Canada +location = (1.1033389754690821, -2.154318073378334) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYWY.TXT + +[cyxc] +description = Cranbrook, B. C., Canada +location = (0.86597419719785318, -2.0208003856007677) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYXC.TXT +zone = ('idz001', 0.021417994796249572) + +[cyxd] +description = Edmonton Municipal Alta., Canada +location = (0.93491470265162924, -1.9812395892222296) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYXD.TXT +zone = ('mtz010', 0.084732799594184172) + +[cyxe] +description = Saskatoon, Sask., Canada +location = (0.91048009312370859, -1.861975423669284) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYXE.TXT +zone = ('mtz061', 0.059130311345393281) + +[cyxh] +description = Medicine Hat, Alta., Canada +location = (0.87295551420583051, -1.9323703701663886) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYXH.TXT +zone = ('mtz011', 0.025192621974798709) + +[cyxj] +description = Fort St John, B. C., Canada +location = (0.98145681603814472, -2.1071941835744874) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYXJ.TXT + +[cyxl] +description = Sioux Lookout, Ont., Canada +location = (0.87470084345782484, -1.603957582582789) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYXL.TXT +zone = ('mnz011', 0.035256994637261875) + +[cyxn] +description = Whale Cove Airport, Canada +location = (1.0861765711578044, -1.616174887346749) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYXN.TXT + +[cyxp] +description = Pangnirtung Airport, Canada +location = (1.1545353001942491, -1.1469722067689403) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYXP.TXT + +[cyxq] +description = Beaver Creek Airport, Canada +location = (1.0893763414531272, -2.4585871396426788) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYXQ.TXT +zone = ('akz141', 0.034319411876993888) + +[cyxr] +description = Earlton, Ont., Canada +location = (0.83252205320129524, -1.393645407717472) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYXR.TXT +zone = ('miz008', 0.061306748382857185) + +[cyxs] +description = Prince George, B. C., Canada +location = (0.94044157861627786, -2.1412281039883765) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYXS.TXT +zone = ('waz503', 0.0877233009232746) + +[cyxt] +description = Terrace, B. C., Canada +location = (0.95062266591957822, -2.2442025298560422) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYXT.TXT +zone = ('akz029', 0.031452213048134024) + +[cyxu] +description = London, Ont., Canada +location = (0.75107335477489312, -1.4163346879933985) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYXU.TXT +zone = ('ohz089', 0.020746822196870431) + +[cyxx] +description = Abbotsford, B. C., Canada +location = (0.85579310989455293, -2.135701228023728) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYXX.TXT +zone = ('waz503', 0.0032991746317757439) + +[cyxy] +description = Whitehorse, Y. T., Canada +location = (1.0597057441692237, -2.3573580430270078) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYXY.TXT +zone = ('akz018', 0.020153484912177624) + +[cyxz] +description = Wawa, Ont., Canada +location = (0.83717626453994676, -1.4797483174825257) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYXZ.TXT +zone = ('miz007', 0.027623549576584718) + +[cyyb] +description = North Bay, Ont., Canada +location = (0.80896010829937182, -1.3863732025008291) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYYB.TXT +zone = ('nyz001', 0.05562051152393057) + +[cyyc] +description = Calgary International, Alta., Canada +location = (0.89215413597776816, -1.9899662354822014) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYYC.TXT +zone = ('mtz010', 0.044282483745272778) + +[cyyd] +description = Smithers, B. C., Canada +location = (0.95673131830155833, -2.2197679203281213) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYYD.TXT +zone = ('akz028', 0.050153589374406997) + +[cyye] +description = Fort Nelson, B. C., Canada +location = (1.0268353765899974, -2.1394827747363823) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYYE.TXT + +[cyyf] +description = Penticton, B. C., Canada +location = (0.86335620331986174, -2.0874137853852179) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYYF.TXT +zone = ('waz038', 0.019289824295259574) + +[cyyg] +description = Charlottetown, P. E. I., Canada +location = (0.80779655546470885, -1.1018845344257533) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYYG.TXT +zone = ('mez002', 0.061560801691236941) + +[cyyh] +description = Spence Bay Airport, Canada +location = (1.2138764947620562, -1.6333372916580267) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYYH.TXT + +[cyyj] +description = Victoria Int. Airport, B. C., Canada +location = (0.84910268109524134, -2.154318073378334) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYYJ.TXT +zone = ('waz001', 0.0055716811334592638) + +[cyyl] +description = Lynn Lake, Man., Canada +location = (0.99251056796744208, -1.7642369855576014) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYYL.TXT + +[cyyn] +description = Swift Current, Sask., Canada +location = (0.87760972554448202, -1.8794287161892274) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYYN.TXT +zone = ('mtz059', 0.02622162069050251) + +[cyyq] +description = Churchill, Man., Canada +location = (1.0250900473380029, -1.6417730497093326) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYYQ.TXT + +[cyyr] +description = Goose, Nfld., Canada +location = (0.93055137952164346, -1.0544697564132408) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYYR.TXT + +[cyyt] +description = St. John'S, Nfld, Canada +location = (0.83106761215796654, -0.9203702922183431) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYYT.TXT + +[cyyu] +description = Kapuskasing, Ont., Canada +location = (0.86248353869386452, -1.4393148564779905) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYYU.TXT +zone = ('miz008', 0.059748461197459309) + +[cyyy] +description = Mont Joli, Que., Canada +location = (0.84823001646924423, -1.1906054380687985) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYYY.TXT +zone = ('mez001', 0.030668052248434611) + +[cyyz] +description = Toronto Pearson Int'L. Ont., Canada +location = (0.76212710670419048, -1.389863861004818) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYYZ.TXT +zone = ('nyz001', 0.013910315672245779) + +[cyze] +description = Gore Bay, Ont., Canada +location = (0.80081523845673153, -1.4410601857299847) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYZE.TXT +zone = ('miz018', 0.019010363363124949) + +[cyzf] +description = Yellowknife, N. W. T., Canada +location = (1.0902490060791246, -1.9975293289075102) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYZF.TXT + +[cyzg] +description = Salliut Airport Supplementary Aviation Weather Reporting Station, Canada +location = (1.0853039065318073, -1.3206324673423762) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYZG.TXT + +[cyzh] +description = Slave Lake, Alta, Canada +location = (0.96516707635286414, -2.0033470930808246) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYZH.TXT + +[cyzp] +description = Sandspit, B. C., Canada +location = (0.9293878266869805, -2.3006348423371921) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYZP.TXT +zone = ('akz027', 0.037699127937949592) + +[cyzr] +description = Sarnia Airport, Canada +location = (0.75049157835756175, -1.436696862599999) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYZR.TXT +zone = ('miz063', 0.0047722002778767961) + +[cyzs] +description = Coral Harbour, N. W. T., Canada +location = (1.1205013797803596, -1.4550228197459394) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYZS.TXT + +[cyzt] +description = Port Hardy, B. C., Canada +location = (0.88459104255245935, -2.2229676906234443) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYZT.TXT +zone = ('waz515', 0.056883213850624899) + +[cyzu] +description = Whitecourt, Alta., Canada +location = (0.94509578995492938, -2.0208003856007677) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYZU.TXT +zone = ('idz001', 0.098972585025898133) + +[cyzv] +description = Sept-Iles, Que., Canada +location = (0.87644617270981917, -1.156571517654909) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYZV.TXT +zone = ('mez002', 0.064961480776357952) + +[cyzw] +description = Teslin, Y. T., Canada +location = (1.0501064332832548, -2.3166336938138063) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYZW.TXT +zone = ('akz025', 0.038623006310668603) + +[cyzx] +description = Greenwood, N. S., Canada +location = (0.78510727518878254, -1.1330095727529856) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYZX.TXT +zone = ('mez032', 0.03577603039564755) + +[cyzy] +description = Mackenzie, B. C., Canada +location = (0.96516707635286414, -2.1490820856223514) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CYZY.TXT + +[czbf] +description = Bathurst Airport Aviation Weather Reporting Station, Canada +location = (0.83135850036663228, -1.1475539831862718) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CZBF.TXT +zone = ('mez002', 0.033282670552073096) + +[czcp] +description = Cape Parry, N. W. T., Canada +location = (1.2234758056480248, -2.1767164654455948) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CZCP.TXT + +[czcr] +description = Charlo Auto, NB, CN +location = (0.83740897510687928, -1.1576768928478387) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CZCR.TXT +zone = ('mez002', 0.031258063466056162) + +[czdb] +description = Debert, NS, CN +location = (0.79272854625582456, -1.1077604762408009) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CZDB.TXT +zone = ('mez002', 0.061834861024034612) + +[czel] +description = Elora Rcs, CN +location = (0.76183621849552485, -1.4035937844538398) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CZEL.TXT +zone = ('paz001', 0.027284176271036936) + +[czem] +description = Eastmain River Airport, Canada +location = (0.91164364595837144, -1.3703743510242143) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CZEM.TXT + +[czev] +description = Inuvik Climate, CN +location = (1.1924089449625259, -2.330363617262829) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CZEV.TXT + +[czfa] +description = Faro Airport, Canada +location = (1.0855947947404729, -2.3276874457431043) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CZFA.TXT +zone = ('akz018', 0.048859858678590259) + +[czfm] +description = Fort Mcpherson Airport, Canada +location = (1.1763519158441782, -2.3535764963143535) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CZFM.TXT + +[czfn] +description = Fort Norman Airport, Canada +location = (1.1330095727529856, -2.1915517640875466) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CZFN.TXT + +[czfs] +description = Ft Simpson Climate, CN +location = (1.0777408131064985, -2.115862652192726) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CZFS.TXT + +[czhy] +description = Hay River, NT, CN +location = (1.0616837839881506, -2.0205676750338353) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CZHY.TXT + +[czmj] +description = Moose Jaw Cs, SA, CN +location = (0.87842421252874603, -1.8423695584052142) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CZMJ.TXT +zone = ('mtz018', 0.026986594885548564) + +[czmt] +description = Masset Arpt, BC, CN +location = (0.94282686192733689, -2.3059290077349082) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CZMT.TXT +zone = ('akz027', 0.023990279348517895) + +[czmu] +description = Mundare, AB, CN +location = (0.93497288029336234, -1.960004749989632) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CZMU.TXT +zone = ('mtz010', 0.084290515757794199) + +[czol] +description = Oliver, AB, CN +location = (0.93636914369495783, -1.9783307071355725) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CZOL.TXT +zone = ('mtz010', 0.085988198443775019) + +[czpc] +description = Pincher Creek Airport, Canada +location = (0.86422886794585885, -1.9893844590648699) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CZPC.TXT +zone = ('mtz009', 0.018836707569161875) + +[czps] +description = Prentiss, AB, CN +location = (0.91490159389542758, -1.9826940302655582) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CZPS.TXT +zone = ('mtz010', 0.065063828749763727) + +[czrp] +description = Rae Point (Auto8), NT, CN +location = (1.3154546572281263, -1.8451620852084052) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CZRP.TXT + +[czsm] +description = Ft Smith, NT, CN +location = (1.0475466170469967, -1.9533724988320535) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CZSM.TXT + +[czsp] +description = St Peters, PE, CN +location = (0.81070543755136615, -1.092052512972852) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CZSP.TXT +zone = ('mez002', 0.067904427833031286) + +[czst] +description = Stewart Airport, Canada +location = (0.97622082828216161, -2.2686371393839626) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CZST.TXT +zone = ('akz029', 0.0086648188581714535) + +[cztb] +description = Thunder Bay, ON, CN +location = (0.84421575918965719, -1.5591026208065346) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CZTB.TXT +zone = ('miz001', 0.017083345364020133) + +[czum] +description = Churchill Falls, Nfld., Canada +location = (0.93462381444296339, -1.1187560505283651) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CZUM.TXT + +[czzj] +description = Edson Cr10, AB, CN +location = (0.93497288029336234, -2.0327849797977957) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/CZZJ.TXT +zone = ('idz001', 0.08849368610662478) + +[daad] +description = Bou-Saada, Algeria +location = (0.61668300237132978, 0.073303828583761846) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/DAAD.TXT + +[daae] +description = Bejaia, Algeria +location = (0.64082672369058469, 0.088430015434379367) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/DAAE.TXT + +[daag] +description = Dar-El-Beida, Algeria +location = (0.64082672369058469, 0.056723200689815713) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/DAAG.TXT + +[daaj] +description = Djanet, Algeria +location = (0.42847833136460789, 0.16522450252212986) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/DAAJ.TXT + +[daap] +description = Illizi, Algeria +location = (0.46251225177849731, 0.1468985453761894) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/DAAP.TXT + +[daas] +description = Setif, Algeria +location = (0.63151830101328155, 0.094538667816359528) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/DAAS.TXT + +[daat] +description = Tamanrasset / Aguenna, Algeria +location = (0.39822595766337288, 0.095411332442356681) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/DAAT.TXT + +[daav] +description = Jijel Achouat, Algeria +location = (0.64373560577724187, 0.10151998482433683) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/DAAV.TXT + +[daay] +description = Mecheria, Algeria +location = (0.60970168536335245, -0.0075630934253087612) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/DAAY.TXT + +[dabb] +description = Annaba, Algeria +location = (0.64286294115124476, 0.13642656986422341) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/DABB.TXT + +[dabc] +description = Constantine, Algeria +location = (0.63326363026527588, 0.11548261884029148) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/DABC.TXT + +[dabs] +description = Tebessa, Algeria +location = (0.61930099624932133, 0.14195344582887212) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/DABS.TXT + +[dabt] +description = Batna, Algeria +location = (0.62046454908398407, 0.10791952541498272) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/DABT.TXT + +[daef] +description = unknown station in Algeria +location = None +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/DAEF.TXT +zone = ('sdz069', 0.0016180468144731306) + +[daen] +description = unknown station in Algeria +location = None +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/DAEN.TXT +zone = ('nyz027', 0.014469725387165889) + +[dafh] +description = Tilrempt/Hassi R'Mel, Algeria +location = (0.57473692268173271, 0.057809183335501071) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/DAFH.TXT + +[daob] +description = Tiaret, Algeria +location = (0.61522856132800119, 0.025016385945252056) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/DAOB.TXT + +[daof] +description = Tindouf, Algeria +location = (0.48287442638509787, -0.14195344582887212) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/DAOF.TXT + +[daoi] +description = Chlef, Algeria +location = (0.63210007743061303, 0.023271056693257727) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/DAOI.TXT + +[daon] +description = Tlemcen Zenata, Algeria +location = (0.61115612640668104, -0.025598162362583502) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/DAON.TXT + +[daoo] +description = Oran / Es Senia, Algeria +location = (0.62191899012731278, -0.010471975511965976) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/DAOO.TXT + +[daor] +description = Bechar, Algeria +location = (0.55181493183887387, -0.038979019961206694) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/DAOR.TXT + +[daov] +description = Mascara-Ghriss, Algeria +location = (0.61435589670200408, 0.0023271056693257726) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/DAOV.TXT + +[datm] +description = Bordj Mokhtar, Algeria +location = (0.37306412761378793, 0.016124903033703168) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/DATM.TXT + +[daua] +description = Adrar, Algeria +location = (0.48665597309775221, -0.0049450995473172667) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/DAUA.TXT + +[daub] +description = Biskra, Algeria +location = (0.60737457969402664, 0.10006554378100822) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/DAUB.TXT + +[daue] +description = El Golea, Algeria +location = (0.53348897469293344, 0.050032771890504112) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/DAUE.TXT + +[daug] +description = Ghardaia, Algeria +location = (0.56519578943749704, 0.066613399784450245) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/DAUG.TXT + +[dauh] +description = Hassi-Messaoud, Algeria +location = (0.55268759646487109, 0.10733774899765128) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/DAUH.TXT + +[daui] +description = In Salah North, Algeria +location = (0.4756022211684548, 0.043924119508523957) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/DAUI.TXT + +[dauk] +description = Touggourt, Algeria +location = (0.57799487061878885, 0.10704686078898555) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/DAUK.TXT + +[daul] +description = Laghouat, Algeria +location = (0.58933951075675195, 0.051196324725167004) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/DAUL.TXT + +[dauo] +description = El Oued, Algeria +location = (0.58468529941810043, 0.10675597258031981) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/DAUO.TXT + +[daut] +description = Timimoun, Algeria +location = (0.51050880620834138, 0.0049450995473172667) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/DAUT.TXT + +[dauu] +description = Ouargla, Algeria +location = (0.55705091959485686, 0.094247779607693802) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/DAUU.TXT + +[dauz] +description = In Amenas, Algeria +location = (0.48956485518440945, 0.16813338460878707) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/DAUZ.TXT + +[dbbb] +description = Cotonou, Benin +location = (0.11082840750163991, 0.041597013839198185) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/DBBB.TXT + +[dffd] +description = Ouagadougou, Burkina Faso +location = (0.21554816262129969, -0.026470826988580665) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/DFFD.TXT + +[dgaa] +description = Accra, Ghana +location = (0.097738438111682452, -0.0029088820866572159) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/DGAA.TXT + +[diad] +description = Adiake, Cote D'Ivoire +location = (0.09250245035569947, -0.057595865315812872) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/DIAD.TXT + +[diap] +description = Abidjan, Cote D'Ivoire +location = (0.091629785729702304, -0.068649617245110303) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/DIAP.TXT + +[dibu] +description = Bondoukou, Cote D'Ivoire +location = (0.14049900478554353, -0.048578330847175506) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/DIBU.TXT + +[didk] +description = Dimbokro, Cote D'Ivoire +location = (0.11606439525762292, -0.082030474843733492) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/DIDK.TXT + +[didl] +description = Daloa, Cote D'Ivoire +location = (0.1198459419702773, -0.11286462496229997) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/DIDL.TXT + +[diga] +description = Gagnoa, Cote D'Ivoire +location = (0.10704686078898555, -0.10384709049366261) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/DIGA.TXT + +[disp] +description = San Pedro, Cote D'Ivoire +location = (0.082903139469730658, -0.11606439525762292) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/DISP.TXT + +[diss] +description = Sassandra, Cote D'Ivoire +location = (0.086393797973719322, -0.10617419616298837) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/DISS.TXT + +[ditb] +description = Tabou, Cote D'Ivoire +location = (0.077085375296416223, -0.12857258823024895) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/DITB.TXT + +[diyo] +description = Yamoussoukro, Cote D'Ivoire +location = (0.12042771838760874, -0.093375114981696622) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/DIYO.TXT + +[dnaa] +description = Abuja International, NI +location = (0.15742869852988853, 0.12688543661998775) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/DNAA.TXT + +[dnca] +description = Calabar, Nigeria +location = (0.086684686182385035, 0.1457349925415265) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/DNCA.TXT + +[dnib] +description = Ibadan, Nigeria +location = (0.12973614106491183, 0.06806784082777885) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/DNIB.TXT + +[dnil] +description = Ilorin, Nigeria +location = (0.14806209821085228, 0.079994257383073433) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/DNIL.TXT + +[dnka] +description = Kaduna, Nigeria +location = (0.18500490071139894, 0.13002702927357757) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/DNKA.TXT + +[dnkn] +description = Kano, Nigeria +location = (0.21031217486531673, 0.14893476283684945) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/DNKN.TXT + +[dnkt] +description = Katsina, Ni, NI +location = (0.22706733568446227, 0.13369222070276565) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/DNKT.TXT + +[dnmm] +description = Lagos / Ikeja, Nigeria +location = (0.11490084242296002, 0.058177641733144318) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/DNMM.TXT + +[dnpo] +description = Port Harcourt, Nigeria +location = (0.084648468721724976, 0.12246393584826878) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/DNPO.TXT + +[drrm] +description = Maradi, Niger +location = (0.23503767260190306, 0.12362748868293168) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/DRRM.TXT + +[drrn] +description = Niamey-Aero, Niger +location = (0.23532856081056874, 0.037815467126543802) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/DRRN.TXT + +[drrt] +description = Tahoua, Niger +location = (0.26005405854715513, 0.091629785729702304) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/DRRT.TXT + +[drza] +description = Agadez, Niger +location = (0.29612419642170457, 0.13933545195088065) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/DRZA.TXT + +[drzr] +description = Zinder, Niger +location = (0.24056454856655177, 0.15678874447082392) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/DRZR.TXT + +[dtka] +description = Tabarka, Tunisia +location = (0.64489915861190483, 0.15271630954950383) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/DTKA.TXT + +[dtmb] +description = Habib Bourguiba, Tunisia +location = (0.62424609579663848, 0.18762289458939044) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/DTMB.TXT + +[dtta] +description = Tunis-Carthage, Tunisia +location = (0.64286294115124476, 0.17860536012075304) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/DTTA.TXT + +[dttb] +description = Bizerte, Tunisia +location = (0.65013514636788772, 0.17104226669544431) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/DTTB.TXT + +[dttd] +description = Remada, Tunisia +location = (0.56403223660283419, 0.18151424220741028) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/DTTD.TXT + +[dttf] +description = Gafsa, Tunisia +location = (0.60068415089471505, 0.1538798623841667) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/DTTF.TXT + +[dttg] +description = Gabes, Tunisia +location = (0.59137572821741202, 0.17627825445142728) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/DTTG.TXT + +[dttj] +description = Djerba Mellita, Tunisia +location = (0.59108484000874628, 0.18791378279805615) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/DTTJ.TXT + +[dttk] +description = Kairouan, Tunisia +location = (0.62250076654464415, 0.17627825445142728) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/DTTK.TXT + +[dttl] +description = Kelibia, Tunisia +location = (0.6431538293599105, 0.19344065876270486) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/DTTL.TXT + +[dttn] +description = Jendouba, Tunisia +location = (0.63675428876926454, 0.15358897417550102) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/DTTN.TXT + +[dttr] +description = El Borma, Tunisia +location = (0.55297848467353672, 0.15998851476614687) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/DTTR.TXT + +[dttx] +description = Sfax El-Maou, Tunisia +location = (0.60592013865069816, 0.18645934175472753) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/DTTX.TXT + +[dttz] +description = Tozeur, Tunisia +location = (0.59195750463474339, 0.1413716694115407) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/DTTZ.TXT + +[dxng] +description = Niamtougou, Togo +location = (0.17046049027811286, 0.019198621771937627) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/DXNG.TXT + +[dxsk] +description = Sokode, Togo +location = (0.15678874447082392, 0.02007128639793479) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/DXSK.TXT + +[dxxx] +description = Lome, Togo +location = (0.10762863720631699, 0.021816615649929118) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/DXXX.TXT + +[ebaw] +description = Antwerpen / Deurne, Belgium +location = (0.89360857702109675, 0.077958039922413389) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EBAW.TXT + +[ebbe] +description = Beauvechain, Belgium +location = (0.8857545953871222, 0.083194027678396371) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EBBE.TXT + +[ebbl] +description = Kleine Brogel, Belgium +location = (0.89302680060376527, 0.095411332442356681) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EBBL.TXT + +[ebbr] +description = Bruxelles National, Belgium +location = (0.88837258926511375, 0.079121592757076267) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EBBR.TXT + +[ebci] +description = Charleroi / Gosselies, Belgium +location = (0.88080949583980506, 0.077667151713747662) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EBCI.TXT + +[ebcv] +description = Chievres, Belgium +location = (0.88255482509179939, 0.066904287993115971) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EBCV.TXT + +[ebdt] +description = Schaffen, Belgium +location = (0.89011791851710809, 0.088430015434379367) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EBDT.TXT + +[ebfn] +description = Koksijde, Belgium +location = (0.89157235956043668, 0.046251225177849735) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EBFN.TXT + +[ebfs] +description = Florennes, Belgium +location = (0.87673706091848491, 0.081157810217736326) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EBFS.TXT + +[eblb] +description = Elsenborn, Belgium +location = (0.88080949583980506, 0.10791952541498272) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EBLB.TXT + +[eblg] +description = Bierset, Belgium +location = (0.88400926613512787, 0.095120444233690968) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EBLG.TXT + +[ebos] +description = Oostende Airport, Belgium +location = (0.89360857702109675, 0.050032771890504112) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EBOS.TXT + +[edac] +description = Altenburg Nobitz, Germany +location = (0.88953614209977661, 0.21816615649929119) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EDAC.TXT + +[edah] +description = Heringsdorf, Germany +location = (0.94044157861627786, 0.24696408915719764) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EDAH.TXT + +[edbc] +description = Cochstedt, DL +location = (0.90495321715905985, 0.19914206765255302) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EDBC.TXT + +[eddb] +description = Berlin-Schoenefeld, Germany +location = (0.91426163983636299, 0.23591033722790022) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EDDB.TXT + +[eddc] +description = Dresden-Klotzsche, Germany +location = (0.89244502418643379, 0.23998277214922031) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EDDC.TXT + +[edde] +description = Erfurt-Bindersleben, Germany +location = (0.88982703030844235, 0.19140444130204481) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EDDE.TXT + +[eddf] +description = Frankfurt / M-Flughafen, Germany +location = (0.87353729062316188, 0.15009831567151233) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EDDF.TXT + +[eddg] +description = Muenster / Osnabrueck, Germany +location = (0.90989831670637711, 0.13439035240356337) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EDDG.TXT + +[eddh] +description = Hamburg-Fuhlsbuettel, Germany +location = (0.93607825548629209, 0.17453292519943295) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EDDH.TXT + +[eddk] +description = Koeln / Bonn, Germany +location = (0.88779081284778227, 0.12508192972626028) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EDDK.TXT + +[eddl] +description = Duesseldorf, Germany +location = (0.89535390627309097, 0.11810061271828297) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EDDL.TXT + +[eddm] +description = Munchen, Germany +location = (0.84386669333925834, 0.20565796352666516) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EDDM.TXT + +[eddn] +description = Nuernberg, Germany +location = (0.86393797973719311, 0.19285888234537343) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EDDN.TXT + +[eddp] +description = Leipzig-Schkeuditz, Germany +location = (0.89739012373375104, 0.21351194516063962) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EDDP.TXT + +[eddr] +description = Saarbruecken / Ensheim, Germany +location = (0.85899288018987585, 0.12420926510026312) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EDDR.TXT + +[edds] +description = Stuttgart-Echterdingen, Germany +location = (0.84968445751257271, 0.16086117939214403) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EDDS.TXT + +[eddt] +description = Berlin-Tegel, Germany +location = (0.91746141013168592, 0.23241967872391156) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EDDT.TXT + +[eddv] +description = Hannover, Germany +location = (0.91571608087969159, 0.16900604923478424) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EDDV.TXT + +[eddw] +description = Bremen, Germany +location = (0.92589716818299173, 0.15358897417550102) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EDDW.TXT + +[edfe] +description = Egelsbach, DL +location = (0.8721410272215665, 0.15062191444711065) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EDFE.TXT + +[edfh] +description = Hahn, Germany +location = (0.87179196137116766, 0.12682725897825461) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EDFH.TXT + +[edfm] +description = Baden Wurttemberg, Neuostheim, Germany +location = (0.8634580141928947, 0.14862448208093937) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EDFM.TXT + +[edgs] +description = Hessen, Germany +location = (0.88501767859183578, 0.14107593306606386) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EDGS.TXT + +[edhi] +description = Hamburg-Finkenwerder, Germany +location = (0.93433292623429776, 0.17162404311277574) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EDHI.TXT + +[edhk] +description = Kiel / Holtenau Civilian, Germany +location = (0.94916822487624952, 0.17744180728609016) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EDHK.TXT + +[edhl] +description = Luebeck-Blankensee, Germany +location = (0.93927802578161512, 0.18675022996339324) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EDHL.TXT + +[edja] +description = Allgau, DL +location = (0.83740897510687928, 0.17854718247901993) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EDJA.TXT + +[edln] +description = Monchengladbach, Germany +location = (0.89413702393350614, 0.11352397156860894) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EDLN.TXT + +[edlp] +description = Paderborn / Lippstadt, Germany +location = (0.90088078223773982, 0.15038920388017807) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EDLP.TXT + +[edlv] +description = Niederrhein, Germany +location = (0.90063352726037393, 0.10720200116694059) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EDLV.TXT + +[edlw] +description = Dortmund / Wickede, Germany +location = (0.89913545298574538, 0.13293591136023478) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EDLW.TXT + +[edma] +description = Augsburg, Germany +location = (0.84532113438258694, 0.19082266488471336) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EDMA.TXT + +[edmo] +description = Oberpfaffenhofen, Germany +location = (0.83921248200060683, 0.19693131726669352) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EDMO.TXT + +[edny] +description = Friedrichshafen, Germany +location = (0.83194027678396376, 0.16609716714812706) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EDNY.TXT + +[edop] +description = Mecklenburg-Vorpommern, Parchim, Germany +location = (0.93247608983564823, 0.20566281166347625) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EDOP.TXT + +[edqm] +description = Hof, Germany +location = (0.8781915019618135, 0.20740329277865949) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EDQM.TXT + +[edrz] +description = Zweibrucken, Rheinland-Pfalz, Germany +location = (0.85886682863278752, 0.12917375719482477) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EDRZ.TXT + +[edsb] +description = Karlsruhe, Baden Wurttemberg, Germany +location = (0.85134736843877845, 0.1410177554243307) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EDSB.TXT + +[edtd] +description = Donaueschingen / Villingen, Germany +location = (0.83717626453994676, 0.14864387462818374) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EDTD.TXT + +[edtl] +description = Lahr, Can-Afb, Germany +location = (0.84420121477922383, 0.13662049533666723) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EDTL.TXT + +[edve] +description = Braunschweig, Germany +location = (0.91280719879303429, 0.18238690683340741) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EDVE.TXT + +[edvk] +description = Kassel / Calden, Germany +location = (0.89709923552508541, 0.16377006147880124) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EDVK.TXT + +[edxw] +description = Westerland / Sylt, Germany +location = (0.95847664755355255, 0.1457349925415265) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EDXW.TXT + +[eeka] +description = Kardla, Estonia +location = (1.0294533704679887, 0.39822595766337288) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EEKA.TXT + +[eeke] +description = Kuressaare, Estonia +location = (1.0163052234362981, 0.39286391835030138) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EEKE.TXT + +[eepu] +description = Parnu, Estonia +location = (1.019606804604654, 0.42713054933112338) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EEPU.TXT + +[eetn] +description = Tallinn, Estonia +location = (1.0367255756846316, 0.43313254270325946) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EETN.TXT + +[eetu] +description = Tartu/Ulenurme, Estonia +location = (1.0175269539126941, 0.46658468669981745) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EETU.TXT + +[efet] +description = Enontekio, Finland +location = (1.1931846468523013, 0.40888701051097159) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EFET.TXT + +[efha] +description = Halli, Finland +location = (1.0794861423584929, 0.43284165449459372) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EFHA.TXT + +[efhf] +description = Helsinki-Malmi, Finland +location = (1.0515608743265836, 0.43720497762457955) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EFHF.TXT + +[efhk] +description = Helsinki-Vantaa, Finland +location = (1.0527244271612466, 0.4357505365812509) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EFHK.TXT + +[efiv] +description = Ivalo, Finland +location = (1.1975867550767756, 0.47851110325511204) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EFIV.TXT + +[efjo] +description = Joensuu, Finland +location = (1.0937396645831132, 0.51719923500765297) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EFJO.TXT + +[efjy] +description = Jyvaskyla, Finland +location = (1.0890854532444616, 0.44825872955387697) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EFJY.TXT + +[efka] +description = Kauhava, Finland +location = (1.101302758008422, 0.40200750437602728) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EFKA.TXT + +[efke] +description = Kemi, Finland +location = (1.148135759603603, 0.42906010778193931) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EFKE.TXT + +[efki] +description = Kajaani, Finland +location = (1.1219558208236882, 0.48316531459376355) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EFKI.TXT + +[efkk] +description = Kruunupyy, Finland +location = (1.1120656217290537, 0.40404372183668724) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EFKK.TXT + +[efks] +description = Kuusamo, Finland +location = (1.1513355298989261, 0.50934525337367853) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EFKS.TXT + +[efkt] +description = Kittila, Finland +location = (1.1815879036001611, 0.43371431912059094) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EFKT.TXT + +[efku] +description = Kuopio, Finland +location = (1.0998483169650932, 0.48520153205442362) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EFKU.TXT + +[eflp] +description = Lappeenranta, Finland +location = (1.0654507862903717, 0.4912859437523483) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EFLP.TXT + +[efma] +description = Mariehamn / Aland Island, Finland +location = (1.0492337686572577, 0.34732052114687156) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EFMA.TXT + +[efmi] +description = Mikkeli, Finland +location = (1.0774499248978329, 0.47647488579445196) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EFMI.TXT + +[efou] +description = Oulu, Finland +location = (1.1333004609616515, 0.44273185358922829) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EFOU.TXT + +[efpo] +description = Pori, Finland +location = (1.0727957135591812, 0.38048177693476387) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EFPO.TXT + +[efro] +description = Rovaniemi, Finland +location = (1.1618075054108921, 0.45087672343186846) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EFRO.TXT + +[efsa] +description = Savonlinna, Finland +location = (1.0812314716104872, 0.50527281845235839) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EFSA.TXT + +[efsi] +description = Seinajoki-Ilmajok, Finland +location = (1.0942099338537894, 0.39849260518798313) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EFSI.TXT + +[eftp] +description = Tampere / Pirkkala, Finland +location = (1.0719230489331841, 0.41160681526199605) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EFTP.TXT + +[eftu] +description = Turku, Finland +location = (1.056215085665235, 0.38862664677740405) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EFTU.TXT + +[efut] +description = Utti, Finland +location = (1.0629055144645467, 0.47007534520380612) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EFUT.TXT + +[efva] +description = Vaasa, Finland +location = (1.1004300933824247, 0.37990000051743239) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EFVA.TXT + +[efvr] +description = Varkaus, Finland +location = (1.0850130183231415, 0.48636508488908653) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EFVR.TXT + +[egaa] +description = Belfast / Aldergrove Airport, United Kingdom +location = (0.95382243621490104, -0.10850130183231416) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGAA.TXT + +[egac] +description = Belfast / Harbour, United Kingdom +location = (0.95294977158890393, -0.10268353765899971) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGAC.TXT + +[egae] +description = Eglinton / Londonderr, United Kingdom +location = (0.96080375322287837, -0.12479104151759457) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGAE.TXT + +[egbb] +description = Birmingham / Airport, United Kingdom +location = (0.91542519267102584, -0.030252373701235045) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGBB.TXT + +[egbe] +description = Coventry Airport, United Kingdom +location = (0.91397075162769725, -0.025889050571249222) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGBE.TXT + +[egbj] +description = Staverton Private, United Kingdom +location = (0.90582588178505696, -0.037815467126543802) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGBJ.TXT + +[egcc] +description = Manchester Airport, United Kingdom +location = (0.93113315593897483, -0.039851684587203853) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGCC.TXT + +[egcn] +description = Doncaster Sheffield, UK +location = (0.93340208396656743, 0.017453292519943295) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGCN.TXT + +[egdl] +description = Lyneham, United Kingdom +location = (0.89884456477707975, -0.034615696831220871) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGDL.TXT + +[egdm] +description = Boscombe Down, United Kingdom +location = (0.89302680060376527, -0.030543261909900768) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGDM.TXT + +[egdr] +description = Culdrose, United Kingdom +location = (0.87411906704049347, -0.091629785729702304) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGDR.TXT + +[egdx] +description = St Athan Royal Air Force Base, United Kingdom +location = (0.89709923552508541, -0.05992297098513865) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGDX.TXT + +[egdy] +description = Yeovilton, United Kingdom +location = (0.89011791851710809, -0.045960336969184008) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGDY.TXT + +[egec] +description = Campbeltown, United Kingdom +location = (0.9675620559375453, -0.099246208659933111) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGEC.TXT + +[egeo] +description = Oban, UK +location = (0.98454023105000121, -0.09529497715889039) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGEO.TXT + +[egff] +description = Cardiff-Wales Airport, United Kingdom +location = (0.89709923552508541, -0.058468529941810038) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGFF.TXT + +[eggd] +description = Bristol / Lulsgate, United Kingdom +location = (0.89680834731641967, -0.047414778012512621) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGGD.TXT + +[eggp] +description = Liverpool Airport, United Kingdom +location = (0.93084226773030909, -0.049741883681838392) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGGP.TXT + +[eggw] +description = Luton Airport, United Kingdom +location = (0.90524410536772559, -0.0063995405906458747) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGGW.TXT + +[eghe] +description = Scilly, Saint Mary'S, United Kingdom +location = (0.87121018495383618, -0.10995574287564276) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGHE.TXT + +[eghh] +description = Bournemouth Airport, United Kingdom +location = (0.88633637180445368, -0.03199770295322938) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGHH.TXT + +[eghi] +description = Southampton / Weather Centre, United Kingdom +location = (0.88837258926511375, -0.024434609527920613) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGHI.TXT + +[eghk] +description = Penzance Heliport, UK +location = (0.87475902109955794, -0.096342174710086978) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGHK.TXT + +[eghq] +description = Newquay, UK +location = (0.88016954178074036, -0.087266462599716474) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGHQ.TXT + +[egja] +description = Alderney / Channel Island, United Kingdom +location = (0.86771952644984751, -0.038397243543875255) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGJA.TXT + +[egjb] +description = Guernsey Airport, United Kingdom +location = (0.86277442690253014, -0.045378560551852569) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGJB.TXT + +[egjj] +description = Jersey Airport, United Kingdom +location = (0.85899288018987585, -0.038397243543875255) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGJJ.TXT + +[egka] +description = Shoreham Airport, United Kingdom +location = (0.8872090364304509, -0.0049450995473172667) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGKA.TXT + +[egkb] +description = Biggin Hill, United Kingdom +location = (0.89564479448175682, 0.00058177641733144316) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGKB.TXT + +[egkk] +description = London / Gatwick Airport, United Kingdom +location = (0.89273591239509953, -0.0031997702953229373) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGKK.TXT + +[eglc] +description = London City Airport, United Kingdom +location = (0.89884456477707975, -0.0087266462599716477) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGLC.TXT + +[eglf] +description = Farnborough, United Kingdom +location = (0.89506301806442534, -0.013380857598623194) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGLF.TXT + +[egll] +description = London / Heathrow Airport, United Kingdom +location = (0.89855367656841401, -0.0078539816339744835) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGLL.TXT + +[egmc] +description = Southend-On-Sea, United Kingdom +location = (0.90000811761174271, 0.012217304763960306) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGMC.TXT + +[egmd] +description = Lydd Airport, United Kingdom +location = (0.88924525389111098, 0.01628973968528041) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGMD.TXT + +[egmh] +description = Manston, South East, United Kingdom +location = (0.8960859749315665, 0.023494070986568114) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGMH.TXT + +[egnc] +description = Carlisle, United Kingdom +location = (0.95876753576221829, -0.051487212933832724) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGNC.TXT + +[egnh] +description = Blackpool Airport, United Kingdom +location = (0.93840536115561779, -0.052941653977161329) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGNH.TXT + +[egnj] +description = Humberside, United Kingdom +location = (0.93520559086029498, -0.0061086523819801532) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGNJ.TXT + +[egnm] +description = Leeds And Bradford, United Kingdom +location = (0.94015069040761223, -0.028797932657906436) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGNM.TXT + +[egno] +description = Warton, Warton, United Kingdom +location = (0.93802889945372692, -0.050318906985840239) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGNO.TXT + +[egnr] +description = Hawarden, United Kingdom +location = (0.9279333856436518, -0.052068989351164163) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGNR.TXT + +[egns] +description = Isle Of Man / Ronaldsway Airport, United Kingdom +location = (0.94393223712026664, -0.080866922009070599) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGNS.TXT + +[egnt] +description = Newcastle, United Kingdom +location = (0.96051286501421262, -0.029670597283903602) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGNT.TXT + +[egnv] +description = Tees-Side, United Kingdom +location = (0.95149533054557534, -0.024725497736586336) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGNV.TXT + +[egnx] +description = East Midlands, United Kingdom +location = (0.92211562147033743, -0.023271056693257727) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGNX.TXT + +[egom] +description = Spadeadam, United Kingdom +location = (0.96080375322287837, -0.044505895925855403) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGOM.TXT + +[egop] +description = Pembrey Sands, United Kingdom +location = (0.90262611148973415, -0.076212710670419057) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGOP.TXT + +[egos] +description = Shawbury, United Kingdom +location = (0.92153384505300595, -0.046542113386515455) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGOS.TXT + +[egov] +description = Valley, United Kingdom +location = (0.9293878266869805, -0.079121592757076267) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGOV.TXT + +[egow] +description = Woodvale, United Kingdom +location = (0.93517650203942837, -0.053329504922048958) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGOW.TXT + +[egpa] +description = Kirkwall Airport, United Kingdom +location = (1.0288715940506574, -0.050614548307835558) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGPA.TXT + +[egpb] +description = Sumburgh Cape, United Kingdom +location = (1.0451613337359376, -0.022689280275926284) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGPB.TXT + +[egpc] +description = Wick, United Kingdom +location = (1.0201449477906857, -0.053814318603158495) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGPC.TXT + +[egpd] +description = Aberdeen / Dyce, United Kingdom +location = (0.99832833214075656, -0.038688131752540975) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGPD.TXT + +[egpe] +description = Inverness / Dalcross, United Kingdom +location = (1.0041460963140709, -0.070685834705770348) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGPE.TXT + +[egpf] +description = Glasgow Airport, United Kingdom +location = (0.97505727544749876, -0.077376263505081949) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGPF.TXT + +[egph] +description = Edinburgh Airport, United Kingdom +location = (0.97651171649082746, -0.058468529941810038) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGPH.TXT + +[egpi] +description = Islay, United Kingdom +location = (0.97183326446812024, -0.10919943353311189) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGPI.TXT + +[egpk] +description = Prestwick Airport, United Kingdom +location = (0.96865773485685291, -0.079994257383073433) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGPK.TXT + +[egpl] +description = Benbecula, United Kingdom +location = (1.0029825434794082, -0.12857258823024895) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGPL.TXT + +[egpm] +description = Scatsa / Shetland Island, United Kingdom +location = (1.0547606446219064, -0.022689280275926284) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGPM.TXT + +[egpn] +description = Dundee / Riverside, United Kingdom +location = (0.98523836275079912, -0.05265076576849561) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGPN.TXT + +[egpo] +description = Stornoway, United Kingdom +location = (1.0160725128693655, -0.11024663108430847) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGPO.TXT + +[egpu] +description = Tiree, United Kingdom +location = (0.98611102737679623, -0.12013683017894301) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGPU.TXT + +[egqa] +description = Tain Range, United Kingdom +location = (1.0090911958613882, -0.069231393662441743) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGQA.TXT + +[egqk] +description = Kinloss, United Kingdom +location = (1.006182313774731, -0.062250076654464415) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGQK.TXT + +[egql] +description = Leuchars, United Kingdom +location = (0.98407480991613616, -0.050032771890504112) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGQL.TXT + +[egqs] +description = Lossiemouth, United Kingdom +location = (1.007345866609394, -0.057886753524478592) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGQS.TXT + +[egsc] +description = Cambridge, United Kingdom +location = (0.91106186954104007, 0.0031997702953229373) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGSC.TXT + +[egsh] +description = Norwich Weather Centre, United Kingdom +location = (0.91862496296634877, 0.022689280275926284) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGSH.TXT + +[egss] +description = Stansted Airport, United Kingdom +location = (0.90553499357639133, 0.0040724349213201025) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGSS.TXT + +[egtc] +description = Cranfield, United Kingdom +location = (0.90873476387171426, -0.010762863720631699) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGTC.TXT + +[egte] +description = Exeter Airport, United Kingdom +location = (0.88546370717845657, -0.059632082776472924) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGTE.TXT + +[egtg] +description = Filton Private, United Kingdom +location = (0.89913545298574538, -0.045087672343186849) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGTG.TXT + +[egub] +description = Benson, United Kingdom +location = (0.90088078223773982, -0.018907733563271901) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGUB.TXT + +[egul] +description = Lakenheath Royal Air Force Base, United Kingdom +location = (0.91484341625369436, 0.0098901990946345334) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGUL.TXT + +[egun] +description = Mildenhall Royal Air Force Base, United Kingdom +location = (0.91397075162769725, 0.0084357580513059263) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGUN.TXT + +[eguo] +description = Colerne, United Kingdom +location = (0.89778282281544985, -0.039905014092125907) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGUO.TXT + +[eguw] +description = Wattisham, United Kingdom +location = (0.90960742849771148, 0.016871516102611853) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGUW.TXT + +[eguy] +description = Wyton Royal Air Force Base, United Kingdom +location = (0.91367986341903151, -0.0020362174606600512) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGUY.TXT + +[egva] +description = Fairford Royal Air Force Base, United Kingdom +location = (0.90204433507240256, -0.031125038327232207) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGVA.TXT + +[egvn] +description = Brize Norton, United Kingdom +location = (0.90320788790706552, -0.027634379823243554) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGVN.TXT + +[egvo] +description = Odiham, United Kingdom +location = (0.89419035343842823, -0.016580627893946129) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGVO.TXT + +[egvp] +description = Middle Wallop, United Kingdom +location = (0.89273591239509953, -0.027343491614577831) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGVP.TXT + +[egwc] +description = Cosford Royal Air Force Base, United Kingdom +location = (0.91862496296634877, -0.04014257279586958) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGWC.TXT + +[egwu] +description = Northolt, United Kingdom +location = (0.89971722940307686, -0.0072722052166430398) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGWU.TXT + +[egxc] +description = Coningsby Royal Air Force Base, United Kingdom +location = (0.92647894460032332, -0.0029088820866572159) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGXC.TXT + +[egxd] +description = Disforth, United Kingdom +location = (0.94480490174626375, -0.024725497736586336) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGXD.TXT + +[egxe] +description = Leeming, United Kingdom +location = (0.94771378383292093, -0.026761715197246384) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGXE.TXT + +[egxg] +description = Church Fenton, United Kingdom +location = (0.93956891399028075, -0.020943951023931952) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGXG.TXT + +[egxp] +description = Scampton, United Kingdom +location = (0.93039139100687718, -0.0096138552964021001) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGXP.TXT + +[egxs] +description = Swinderby Raf, GB +location = (0.92764249743498617, -0.012042771838760872) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGXS.TXT + +[egxt] +description = Wittering, United Kingdom +location = (0.91833407475768303, -0.0081448698426402049) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGXT.TXT + +[egxu] +description = Linton-On-Ouse, United Kingdom +location = (0.94335046070293505, -0.021816615649929118) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGXU.TXT + +[egxw] +description = Waddington, United Kingdom +location = (0.9279333856436518, -0.0090175344686373709) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGXW.TXT + +[egxz] +description = Topcliffe Royal Air Force Base, United Kingdom +location = (0.94596845458092671, -0.024143721319254893) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGXZ.TXT + +[egyd] +description = Cranwell, United Kingdom +location = (0.9256062799743261, -0.0087266462599716477) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGYD.TXT + +[egye] +description = Barkston Heath Royal Air Force Base, United Kingdom +location = (0.92444272713966325, -0.0098901990946345334) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGYE.TXT + +[egyh] +description = Holbeach, United Kingdom +location = (0.92269739788766891, 0.0026179938779914941) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGYH.TXT + +[egym] +description = Marham, United Kingdom +location = (0.91891585117501451, 0.0098901990946345334) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGYM.TXT + +[egyp] +description = Mount Pleasant Airport, South Georgia And The Islands +location = (-0.90437144074172848, -1.0201449477906857) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EGYP.TXT + +[ehak] +description = A12-CPP Sea, Netherlands +location = (0.96689786701218938, 0.066501896516304504) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EHAK.TXT + +[eham] +description = Amsterdam Airport Schiphol, Netherlands +location = (0.91280719879303429, 0.083194027678396371) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EHAM.TXT + +[ehbk] +description = Maastricht Airport Zuid Limburg, Netherlands +location = (0.88866347747377938, 0.10093820840700539) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EHBK.TXT + +[ehdl] +description = Deelen, Netherlands +location = (0.90873476387171426, 0.10268353765899971) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EHDL.TXT + +[ehdv] +description = D15-FA-1 Sea, Netherlands +location = (0.94815982017656064, 0.051239952138702687) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EHDV.TXT + +[eheh] +description = Eindhoven, Netherlands +location = (0.89797190015108264, 0.094538667816359528) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EHEH.TXT + +[ehfd] +description = F3-FB-1 Sea, Netherlands +location = (0.95738097057349991, 0.081962598989123434) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EHFD.TXT + +[ehfs] +description = Vlissingen, NL +location = (0.89797190015108264, 0.062831853071795868) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EHFS.TXT + +[ehfz] +description = F16-A Sea, Netherlands +location = (0.94451401935536217, 0.070026484220951937) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EHFZ.TXT + +[ehgg] +description = Groningen Airport Eelde, Netherlands +location = (0.92735160922632043, 0.11490084242296002) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EHGG.TXT + +[ehgr] +description = Gilze-Rijen, Netherlands +location = (0.90000811761174271, 0.086102909765053595) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EHGR.TXT + +[ehja] +description = J6-A Sea, Netherlands +location = (0.93940893129327885, 0.051404798486553549) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EHJA.TXT + +[ehjr] +description = K13-A Sea, Netherlands +location = (0.9288254466954029, 0.056204453929537955) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EHJR.TXT + +[ehkd] +description = De Kooy, Netherlands +location = (0.92357006251366602, 0.083484915887062097) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EHKD.TXT + +[ehkv] +description = K14-FA-1C Sea, Netherlands +location = (0.9297271885067383, 0.063316670631414856) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EHKV.TXT + +[ehlw] +description = Leeuwarden, Netherlands +location = (0.92880605026964902, 0.10064732019833968) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EHLW.TXT + +[ehma] +description = AWG-1 Sea, Netherlands +location = (0.93360571153039762, 0.10370165220709392) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EHMA.TXT + +[ehmg] +description = L9-FF-1 Sea, Netherlands +location = (0.9357485744261187, 0.08657318291423928) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EHMG.TXT + +[ehpg] +description = P11-B Sea, Netherlands +location = (0.91385439634423093, 0.058323091655241355) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EHPG.TXT + +[ehqe] +description = Hoorn-A Sea, Netherlands +location = (0.92359431095474043, 0.072436015973085216) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EHQE.TXT + +[ehrd] +description = Rotterdam Airport Zestienhoven, Netherlands +location = (0.9066985464110543, 0.077667151713747662) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EHRD.TXT + +[ehsa] +description = Euro Platform, Netherlands +location = (0.90753242982107196, 0.057159533002814289) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EHSA.TXT + +[ehsc] +description = Goeree Le Sea, Netherlands +location = (0.90627675269072472, 0.064053583548191892) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EHSC.TXT + +[ehvk] +description = Volkel, Netherlands +location = (0.90146255865507119, 0.099483767363676784) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EHVK.TXT + +[ehvl] +description = Vlieland, Netherlands +location = (0.9293878266869805, 0.085812021556387869) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EHVL.TXT + +[ehwo] +description = Woensdrecht, Netherlands +location = (0.89797190015108264, 0.075630934253087603) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EHWO.TXT + +[eick] +description = Cork Airport, Ireland +location = (0.90495321715905985, -0.14806209821085228) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EICK.TXT + +[eidw] +description = Dublin Airport, Ireland +location = (0.93258759698230331, -0.1090830782496456) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EIDW.TXT + +[eikn] +description = Connaught, Ireland +location = (0.94091184788695414, -0.15390410306822219) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EIKN.TXT + +[einn] +description = Shannon Airport, Ireland +location = (0.91978851580101173, -0.15562519163616104) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EINN.TXT + +[ekah] +description = Tirstrup, Denmark +location = (0.98262036887280746, 0.18529578892006465) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EKAH.TXT + +[ekbi] +description = Billund Lufthavn, Denmark +location = (0.97273016977817306, 0.15998851476614687) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EKBI.TXT + +[ekch] +description = Koebenhavn / Kastrup, Denmark +location = (0.97069395231751299, 0.22078415037728269) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EKCH.TXT + +[ekeb] +description = Esbjerg, Denmark +location = (0.96923951127418428, 0.1495165392541809) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EKEB.TXT + +[ekgf] +description = Tyra Oest, DN +location = (0.97249745921124042, 0.08377580409572781) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EKGF.TXT + +[ekhn] +description = Horns Rev B, FO +location = (0.97005399825844829, 0.13281955607676849) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EKHN.TXT + +[ekhr] +description = Horns Rev A, FO +location = (0.96865773485685291, 0.13718287920675432) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EKHR.TXT + +[ekka] +description = Karup, Denmark +location = (0.98262036887280746, 0.15911585014014973) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EKKA.TXT + +[ekod] +description = Odense / Beldringe, Denmark +location = (0.96836684664818717, 0.1803506893727474) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EKOD.TXT + +[ekrk] +description = Koebenhavn / Roskilde, Denmark +location = (0.97011217590018151, 0.21176661590864532) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EKRK.TXT + +[ekrn] +description = Roenne, Denmark +location = (0.96109464143154422, 0.25743606466916363) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EKRN.TXT + +[eksb] +description = Soenderborg Lufthavn, Denmark +location = (0.95934931217954988, 0.17075137848677857) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EKSB.TXT + +[eksn] +description = Sindal Flyveplads, Denmark +location = (1.0035643198967394, 0.17831447191208732) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EKSN.TXT + +[eksp] +description = Skrydstrup, Denmark +location = (0.9640035235182014, 0.16173384401814123) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EKSP.TXT + +[ekvd] +description = Vamdrup, Denmark +location = (0.96749418202218995, 0.1628973968528041) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EKVD.TXT + +[ekvg] +description = Soervaag / Vagar, Denmark +location = (1.0832676890711472, -0.12711814718692033) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EKVG.TXT + +[ekvj] +description = Stauning Lufthavn, Denmark +location = (0.97738438111682457, 0.1457349925415265) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EKVJ.TXT + +[ekyt] +description = Aalborg, Denmark +location = (0.99658300288876223, 0.17191493132144145) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EKYT.TXT + +[ellx] +description = Luxembourg / Luxembourg, Luxembourg +location = (0.86597419719785318, 0.10850130183231416) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ELLX.TXT + +[enal] +description = Alesund / Vigra, Norway +location = (1.091994335331119, 0.10675597258031981) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ENAL.TXT + +[enan] +description = Andoya, Norway +location = (1.2095131716320704, 0.28187067419708417) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ENAN.TXT + +[enat] +description = Alta Lufthavn, Norway +location = (1.221439588187365, 0.4078252685493417) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ENAT.TXT + +[enbl] +description = Forde / Bringeland, Norway +location = (1.0725048253505156, 0.10239264945033401) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ENBL.TXT + +[enbn] +description = Bronnoysund / Bronnoy, Norway +location = (1.1426088836389545, 0.21322105695197394) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ENBN.TXT + +[enbo] +description = Bodo Vi, Norway +location = (1.1740248101748523, 0.25074563586985205) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ENBO.TXT + +[enbr] +description = Bergen / Flesland, Norway +location = (1.0521426507439149, 0.091338897521036577) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ENBR.TXT + +[enbs] +description = Batsfjord, Norway +location = (1.2327842283253283, 0.5189445642596473) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ENBS.TXT + +[enbv] +description = Berlevag, Norway +location = (1.236856663246648, 0.50672725949568709) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ENBV.TXT + +[encn] +description = Kristiansand / Kjevik, Norway +location = (1.0157816246606999, 0.14108078120287498) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ENCN.TXT + +[endr] +description = Draugen, Norway +location = (1.1232163363945729, 0.13599023755122486) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ENDR.TXT + +[endu] +description = Bardufoss, Norway +location = (1.2054407367107502, 0.32346768803628245) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ENDU.TXT + +[enek] +description = Ekofisk Oil Platform, Norway +location = (0.98698369200279334, 0.056723200689815713) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ENEK.TXT + +[enev] +description = Evenes, Norway +location = (1.1958414258247814, 0.29117909687438731) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ENEV.TXT + +[enfb] +description = Oslo / Fornebu, Norway +location = (1.0454522219446034, 0.18558667712873037) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ENFB.TXT + +[enfg] +description = Fagernes Leirin, Norway +location = (1.064650843716541, 0.16231562043547265) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ENFG.TXT + +[enfl] +description = Floro, Norway +location = (1.0748319310198413, 0.087848239017047913) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ENFL.TXT + +[engc] +description = Gullfax Platform, Norway +location = (1.0652326201338724, 0.03548836145721803) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ENGC.TXT + +[engm] +description = Oslo / Gardermoen, Norway +location = (1.0506882097005865, 0.19344065876270486) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ENGM.TXT + +[enhd] +description = Haugesund / Karmoy, Norway +location = (1.0358529110586345, 0.091048009312370864) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ENHD.TXT + +[enhe] +description = Heidrun, Norway +location = (1.1401363338652959, 0.040607993929734729) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ENHE.TXT + +[enhf] +description = Hammerfest, Norway +location = (1.2333660047426596, 0.4130612563053247) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ENHF.TXT + +[enhk] +description = Hasvik, Norway +location = (1.2301662344473365, 0.38659042931674398) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ENHK.TXT + +[enhm] +description = Heimdal, NO +location = (1.039692635413022, 0.03874630939427412) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ENHM.TXT + +[enhv] +description = Honningsvag / Valan, Norway +location = (1.2394746571246398, 0.45349471730985996) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ENHV.TXT + +[enkb] +description = Kristiansund / Kvernberget, Norway +location = (1.1015936462170877, 0.13671745807288915) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ENKB.TXT + +[enkr] +description = Kirkenes Lufthavn, Norway +location = (1.2170762650573792, 0.52185344634630448) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ENKR.TXT + +[enlk] +description = Leknes, Norway +location = (1.1894418852341357, 0.23765566647989456) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ENLK.TXT + +[enmh] +description = Mehamn, Norway +location = (1.2397655453333054, 0.48578330847175505) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ENMH.TXT + +[enml] +description = Molde / Aro, Norway +location = (1.0951941056264418, 0.12682725897825461) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ENML.TXT + +[enms] +description = Mosjoen Kjaerstad, Norway +location = (1.1484266478122689, 0.22921990842858861) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ENMS.TXT + +[enna] +description = Banak, Norway +location = (1.2228940292306936, 0.4360414247899167) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ENNA.TXT + +[enne] +description = Norne, NO +location = (1.1522663721666564, 0.14102260356114182) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ENNE.TXT + +[ennk] +description = Narvik Iii, Norway +location = (1.1949687611987843, 0.30543261909900765) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ENNK.TXT + +[ennm] +description = Namsos Lufthavn, Norway +location = (1.1251555911190112, 0.20216730502267652) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ENNM.TXT + +[enno] +description = Notodden, Norway +location = (1.039634457771289, 0.16086117939214403) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ENNO.TXT + +[enoa] +description = Oseberg, Norway +location = (1.0352711346413033, 0.18238690683340741) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ENOA.TXT + +[enol] +description = Orland Iii, Norway +location = (1.111774733520388, 0.16755160819145562) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ENOL.TXT + +[enov] +description = Orsta-Volda / Hovden, Norway +location = (1.0853039065318073, 0.10588330795432266) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ENOV.TXT + +[enqa] +description = Troll A, NO +location = (1.0581931254841621, 0.064926248174189058) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ENQA.TXT + +[enqc] +description = Troll-C Helipad, NO +location = (1.0627309815393473, 0.063180918922194726) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ENQC.TXT + +[enqr] +description = Snorre B, NO +location = (1.073901088752111, 0.038397243543875255) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ENQR.TXT + +[enra] +description = Mo I Rana / Rossvoll, Norway +location = (1.1583168469069032, 0.24958208303518914) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ENRA.TXT + +[enrm] +description = Rorvik / Ryum, Norway +location = (1.1315551317096568, 0.19460421159736774) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ENRM.TXT + +[enro] +description = Roros Lufthavn, Norway +location = (1.0922852235397846, 0.1980948701013564) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ENRO.TXT + +[enrs] +description = Rost Flyplass, Norway +location = (1.178388133304838, 0.21118483949131386) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ENRS.TXT + +[enry] +description = Rygge, Norway +location = (1.036434687475966, 0.18820467100672186) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ENRY.TXT + +[ensb] +description = Svalbard Lufthavn, Norway +location = (1.3657201396855629, 0.26994425764178964) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ENSB.TXT + +[ensd] +description = Sandane / Anda, Norway +location = (1.0791952541498271, 0.10675597258031981) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ENSD.TXT + +[ense] +description = Snorre A, NO +location = (1.0725048253505156, 0.037175513067479217) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ENSE.TXT + +[ensf] +description = Statfjord Oil Rig &, NO +location = (1.068316035145729, 0.031939525311496235) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ENSF.TXT + +[ensg] +description = Sogndal / Haukasen, Norway +location = (1.0672688375945325, 0.12450015330892884) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ENSG.TXT + +[ensh] +description = Svolvaer / Helle, Norway +location = (1.19118721448613, 0.25598162362583499) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ENSH.TXT + +[ensk] +description = Storkmarknes / Skagen, Norway +location = (1.1970049786594443, 0.26209027600781515) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ENSK.TXT + +[ensl] +description = Sleipner A Oil Platf, NO +location = (1.0185741514638906, 0.033161255787892259) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ENSL.TXT + +[ensn] +description = Skien-Geiteryggen, Norway +location = (1.0329440289719773, 0.16696983177412419) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ENSN.TXT + +[enso] +description = Stord / Soerstokken, Norway +location = (1.043706892692609, 0.093375114981696622) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ENSO.TXT + +[ensr] +description = Sorkjosen, Norway +location = (1.2179489296833763, 0.36593736650147773) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ENSR.TXT + +[enss] +description = Svartnes, Norway +location = (1.2278391287780108, 0.54192473274423936) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ENSS.TXT + +[enst] +description = Sandnessjoen / Stokka, Norway +location = (1.1513355298989261, 0.21758438008195974) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ENST.TXT + +[entc] +description = Tromso / Langnes, Norway +location = (1.2162036004313821, 0.33015811683559404) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ENTC.TXT + +[ento] +description = Torp, Norway +location = (1.0332349171806432, 0.17918713653808452) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ENTO.TXT + +[enva] +description = Trondheim / Vaernes, Norway +location = (1.1077022985990679, 0.19082266488471336) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ENVA.TXT + +[envd] +description = Vadso, Norway +location = (1.2228940292306936, 0.52098078172030737) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ENVD.TXT + +[enzv] +description = Stavanger / Sola, Norway +location = (1.0277080412159945, 0.098320214529013891) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ENZV.TXT + +[epgd] +description = Gdansk-Rebiechowo, Poland +location = (0.94916822487624952, 0.32230413520161949) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EPGD.TXT + +[epkk] +description = Krakow, Poland +location = (0.87411906704049347, 0.34557519189487729) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EPKK.TXT + +[epkt] +description = Katowice, Poland +location = (0.87673706091848491, 0.33219433429625411) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EPKT.TXT + +[epll] +description = Lublinek, PL +location = (0.90268428913146725, 0.3385938748868999) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EPLL.TXT + +[eppo] +description = Poznan, Poland +location = (0.91484341625369436, 0.29379709075237881) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EPPO.TXT + +[eprz] +description = Rzeszow-Jasionka, Poland +location = (0.8744099552491591, 0.3848451000647497) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EPRZ.TXT + +[epsc] +description = Szczecin, Poland +location = (0.93200582056497194, 0.25510895899983782) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EPSC.TXT + +[epwa] +description = Warszawa-Okecie, Poland +location = (0.91048009312370859, 0.36593736650147773) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EPWA.TXT + +[epwr] +description = Wroclaw Ii, Poland +location = (0.89186324776910242, 0.29466975537837597) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EPWR.TXT + +[escf] +description = Linkoping / Malmen, Sweden +location = (1.0192722831646885, 0.27081692226778681) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ESCF.TXT + +[esdf] +description = Ronneby, Sweden +location = (0.98203859245547609, 0.26674448734646672) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ESDF.TXT + +[esgg] +description = Goteborg / Landvetter, Sweden +location = (1.0064732019833966, 0.21467549799530256) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ESGG.TXT + +[esgj] +description = Jonkoping Flygplats, Sweden +location = (1.0082185312353911, 0.24580053632253476) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ESGJ.TXT + +[esgl] +description = Lidkoping, SN +location = (1.0204940136410845, 0.22985986248765319) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ESGL.TXT + +[esgp] +description = Goteborg / Save, Sweden +location = (1.0085094194440567, 0.20740329277865949) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ESGP.TXT + +[esgr] +description = Skovde Flygplats, Sweden +location = (1.0201449477906857, 0.24376431886187469) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ESGR.TXT + +[esgt] +description = Trollhattan Private, Sweden +location = (1.01781784212136, 0.21554816262129969) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ESGT.TXT + +[esib] +description = Satenas, Sweden +location = (1.0198540595820198, 0.22165681500327983) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ESIB.TXT + +[eskn] +description = Stockholm/Skavsta, Sweden +location = (1.025962711964, 0.29525153179570746) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ESKN.TXT + +[esmk] +description = Kristianstad / Everod, Sweden +location = (0.97592994007349587, 0.24580053632253476) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ESMK.TXT + +[esmq] +description = Kalmar, Sweden +location = (0.99018346229811627, 0.28448866807507572) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ESMQ.TXT + +[esms] +description = Malmo / Sturup, Sweden +location = (0.96953039948285002, 0.23329234334990873) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ESMS.TXT + +[esmt] +description = Halmstad Swedish Air Force Base, Sweden +location = (0.98931079767211905, 0.22398392067260564) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ESMT.TXT + +[esmx] +description = Vaxjo, Sweden +location = (0.99221967975877634, 0.25889050571249222) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ESMX.TXT + +[esng] +description = Gallivare, Sweden +location = (1.1719885927141924, 0.36041049053682905) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ESNG.TXT + +[esnk] +description = Kramfors Flygplats, Sweden +location = (1.1004300933824247, 0.31008683043765922) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ESNK.TXT + +[esnl] +description = Lycksele, Sweden +location = (1.1265663989310399, 0.32668200274203857) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ESNL.TXT + +[esnn] +description = Sundsvall-Harnosand Flygplats, Sweden +location = (1.0914125589137873, 0.30455995447301049) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ESNN.TXT + +[esno] +description = Ornskoldsvik Airport, Sweden +location = (1.1065387457644049, 0.33103078146159115) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ESNO.TXT + +[esnq] +description = Kiruna Airport, Sweden +location = (1.1836241210608212, 0.35488361457218032) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ESNQ.TXT + +[esns] +description = Skelleftea Airport, Sweden +location = (1.1280644732056684, 0.36797358396213781) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ESNS.TXT + +[esnu] +description = Umea Flygplats, Sweden +location = (1.1135200627723822, 0.35401094994618321) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ESNU.TXT + +[esnx] +description = Arvidsjaur, SN +location = (1.1445869234578814, 0.33649947978450678) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ESNX.TXT + +[esnz] +description = Ostersund Froson, SN +location = (1.1030480872604163, 0.2530727415391778) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ESNZ.TXT + +[esoe] +description = Orebro Private, Sweden +location = (1.0338166935979745, 0.26267205242514663) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ESOE.TXT + +[esok] +description = Karlstad, Sweden +location = (1.0375061257112181, 0.23278328898474371) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ESOK.TXT + +[esow] +description = Vasteras / Hasslo, Sweden +location = (1.0399253459799547, 0.29030643224839014) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ESOW.TXT + +[espa] +description = Lulea / Kallax, Sweden +location = (1.1440633246822829, 0.38629954110807829) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ESPA.TXT + +[essa] +description = Stockholm / Arlanda, Sweden +location = (1.0410888988146176, 0.31328660073298215) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ESSA.TXT + +[essb] +description = Stockholm / Bromma, Sweden +location = (1.0358529110586345, 0.31328660073298215) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ESSB.TXT + +[essd] +description = Borlange, Sweden +location = (1.0547606446219064, 0.27081692226778681) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ESSD.TXT + +[essk] +description = Gavle / Sandviken Air Force Base, Sweden +location = (1.0576695267085636, 0.29583330821303883) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ESSK.TXT + +[essl] +description = Linkoping / Saab, Sweden +location = (1.0192722831646885, 0.27372580435444405) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ESSL.TXT + +[essp] +description = Norrkoping, Sweden +location = (1.0224720534600114, 0.28187067419708417) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ESSP.TXT + +[essv] +description = Visby Flygplats, Sweden +location = (1.0064732019833966, 0.32026791774095947) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ESSV.TXT + +[esta] +description = Angelholm, SN +location = (0.98262036887280746, 0.22427480888127135) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ESTA.TXT + +[estl] +description = Ljungbyhed, Sweden +location = (0.97854793395148754, 0.23038346126325149) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ESTL.TXT + +[esud] +description = Storuman, SN +location = (1.1335913491703171, 0.30892327760299632) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ESUD.TXT + +[esut] +description = Hemavan-Gierevarto, SN +location = (1.14807758196187, 0.26302111827554547) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ESUT.TXT + +[etad] +description = Spangdahlem, Germany +location = (0.87237373778849903, 0.11693705988362008) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ETAD.TXT + +[etar] +description = Ramstein, Germany +location = (0.86277442690253014, 0.13264502315156904) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ETAR.TXT + +[eteb] +description = Ansbach / Katterbach, Germany +location = (0.86073820944187029, 0.18558667712873037) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ETEB.TXT + +[etgg] +description = Gluecksburg / Meierwik, Germany +location = (0.95702220651022407, 0.16580627893946132) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ETGG.TXT + +[etgy] +description = Kalkar, Germany +location = (0.90291699969839978, 0.10937396645831132) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ETGY.TXT + +[etgz] +description = Messstetten, Germany +location = (0.84095781125260105, 0.15707963267948966) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ETGZ.TXT + +[etha] +description = Altenstadt, Germany +location = (0.83484915887062106, 0.18965911205005048) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ETHA.TXT + +[ethb] +description = Bueckeburg, Germany +location = (0.91251631058436855, 0.15853407372281828) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ETHB.TXT + +[ethc] +description = Celle, Germany +location = (0.9180431865490174, 0.17482381340809869) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ETHC.TXT + +[ethe] +description = Rheine-Bentlage, Germany +location = (0.91280719879303429, 0.12886347643891466) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ETHE.TXT + +[ethf] +description = Fritzlar, Germany +location = (0.89215413597776816, 0.16202473222680691) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ETHF.TXT + +[ethl] +description = Laupheim, Germany +location = (0.84153958766993264, 0.17307848415610433) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ETHL.TXT + +[ethn] +description = Niederstetten, Germany +location = (0.86219265048519877, 0.17395114878210152) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ETHN.TXT + +[ethr] +description = Roth, Germany +location = (0.85899288018987585, 0.19373154697137057) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ETHR.TXT + +[eths] +description = Fassberg, Germany +location = (0.92357006251366602, 0.1777326954947559) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ETHS.TXT + +[etic] +description = Grafenwoehr, Germany +location = (0.86742863824118188, 0.20856684561332237) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ETIC.TXT + +[etie] +description = Heidelberg, Germany +location = (0.86219265048519877, 0.15097098029750952) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ETIE.TXT + +[etih] +description = Hohenfels, Germany +location = (0.85899288018987585, 0.20653062815266235) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ETIH.TXT + +[etik] +description = Illesheim, Germany +location = (0.86335620331986174, 0.18122335399874454) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ETIK.TXT + +[etmn] +description = Nordholz, Germany +location = (0.93840536115561779, 0.15126186850617521) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ETMN.TXT + +[etnd] +description = Diepholz, Germany +location = (0.91775229834035166, 0.1457349925415265) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ETND.TXT + +[etng] +description = Geilenkirchen, Germany +location = (0.88953614209977661, 0.10559241974565693) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ETNG.TXT + +[etnh] +description = Hohn, Germany +location = (0.94800467204158667, 0.16638805535679274) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ETNH.TXT + +[etnj] +description = Jever, Germany +location = (0.93433292623429776, 0.13759012269888629) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ETNJ.TXT + +[etnl] +description = Laage, Germany +location = (0.94102335503360934, 0.21438460978663681) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ETNL.TXT + +[etnn] +description = Noervenich, Germany +location = (0.8872090364304509, 0.11635528346628864) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ETNN.TXT + +[etns] +description = Schleswig-Jagel, Germany +location = (0.95062266591957822, 0.16609716714812706) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ETNS.TXT + +[etnt] +description = Wittmundhaven, Germany +location = (0.93462381444296339, 0.13380857598623194) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ETNT.TXT + +[etnu] +description = Trollenhagen, Germany +location = (0.93549647906896061, 0.23241967872391156) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ETNU.TXT + +[etnw] +description = Wunstorf, Germany +location = (0.91542519267102584, 0.16464272610479844) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ETNW.TXT + +[etor] +description = Coleman Mannheim, Germany +location = (0.86510153257185607, 0.14777121000218657) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ETOR.TXT + +[etou] +description = Wiesbaden, Germany +location = (0.87353729062316188, 0.14544410433286081) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ETOU.TXT + +[etsa] +description = Landsberg, Germany +location = (0.83892159379194109, 0.19024088846738194) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ETSA.TXT + +[etsb] +description = Buechel, Germany +location = (0.87557350808382195, 0.12333660047426595) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ETSB.TXT + +[etse] +description = Erding, Germany +location = (0.84328491692192697, 0.20856684561332237) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ETSE.TXT + +[etsh] +description = Holzdorf, Germany +location = (0.90349877611573126, 0.23009257305458578) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ETSH.TXT + +[etsi] +description = Ingolstadt, Germany +location = (0.85026623392990419, 0.20129464039667935) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ETSI.TXT + +[etsl] +description = Lechfeld, Germany +location = (0.84095781125260105, 0.18965911205005048) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ETSL.TXT + +[etsn] +description = Neuburg / Donau, Germany +location = (0.85026623392990419, 0.19576776443203064) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ETSN.TXT + +[etuo] +description = Guetersloh, Germany +location = (0.9061167699937227, 0.14486232791552936) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ETUO.TXT + +[etwm] +description = Meppen-Mil, Germany +location = (0.92019575929314368, 0.12786960839264011) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ETWM.TXT + +[evla] +description = Liepaja International Airport, Latvia +location = (0.98640191558546186, 0.36797358396213781) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EVLA.TXT + +[evra] +description = Riga International Airport, Latvia +location = (0.99338323259343919, 0.41829724406130764) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EVRA.TXT + +[evva] +description = Ventspils, LV +location = (1.0009463260187481, 0.3757693879543792) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EVVA.TXT + +[eyka] +description = Kaunas, Lithuania +location = (0.95818575934488692, 0.41748275707704363) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EYKA.TXT + +[eypa] +description = Palanga Intl., Lithuania +location = (0.97598811771522898, 0.36739180754480638) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EYPA.TXT + +[eysa] +description = Siauliai Intl./Mil., Lithuania +location = (0.97553239285498616, 0.40831977850407342) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EYSA.TXT + +[eyvi] +description = Vilnius, Lithuania +location = (0.95353154800623541, 0.43807764225057672) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/EYVI.TXT + +[fabl] +description = Bloemfontein, Bloemfontein Airport, South Africa +location = (-0.50789081233034994, 0.4590215932745087) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FABL.TXT + +[fabm] +description = Bethlehem Airport, South Africa +location = (-0.49305551368839812, 0.49450995473172671) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FABM.TXT + +[fact] +description = Cape Town, Cape Town International Airport, South Africa +location = (-0.59312105746940635, 0.3246312408709453) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FACT.TXT + +[facv] +description = Calvinia, South Africa +location = (-0.54919693796088231, 0.34499341547754581) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FACV.TXT + +[fady] +description = De Aar, South Africa +location = (-0.53465252752759629, 0.41742457943531053) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FADY.TXT + +[fael] +description = East London, East London Airport, South Africa +location = (-0.57654042957546014, 0.48578330847175505) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FAEL.TXT + +[faeo] +description = Ermelo, South Africa +location = (-0.46251225177849731, 0.52330788738963319) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FAEO.TXT + +[fagc] +description = Grand Central, ZA +location = (-0.4534365396681268, 0.28623399732707) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FAGC.TXT + +[fagg] +description = George, George Airport, South Africa +location = (-0.59341194567807209, 0.39066286423806407) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FAGG.TXT + +[fahs] +description = Hoedspruit, South Africa +location = (-0.42527856106928497, 0.54163384453557362) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FAHS.TXT + +[fair] +description = Pretoria Irene, South Africa +location = (-0.45233116447519711, 0.49247373727106664) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FAIR.TXT + +[fajb] +description = Johannesburg B/G, ZA +location = (-0.45640359939651715, 0.48869219055841229) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FAJB.TXT + +[fajs] +description = Johannesburg International Airport, South Africa +location = (-0.45611271118785146, 0.49276462547973238) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FAJS.TXT + +[fakm] +description = Kimberley, Kim-Apt, South Africa +location = (-0.50265482457436694, 0.43225987807726229) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FAKM.TXT + +[fakn] +description = Kruger Mpumalanga I, ZA +location = (-0.44296456415616081, 0.54279739737023647) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FAKN.TXT + +[fala] +description = Lanseria, South Africa +location = (-0.4526220526838628, 0.48752863772374938) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FALA.TXT + +[fale] +description = King Shaka Intl Arpt, SF +location = (-0.51714105736591987, 0.54332099614583473) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FALE.TXT + +[falm] +description = Makhado Afb, SF +location = (-0.40421825476188672, 0.51836278784231582) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FALM.TXT + +[famm] +description = Mafikeng Intl. Ad, South Africa +location = (-0.45000405880587135, 0.44564073567588552) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FAMM.TXT + +[fape] +description = Port Elizabeth, Port E Apt, South Africa +location = (-0.59312105746940635, 0.44680428851054838) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FAPE.TXT + +[fapn] +description = Pilanesberg Intl, ZA +location = (-0.44209189953016365, 0.47420595776685937) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FAPN.TXT + +[fapp] +description = Polokwane Intl Arpt, ZA +location = (-0.41626102660064762, 0.51399946471233005) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FAPP.TXT + +[fapr] +description = Pretoria, South Africa +location = (-0.44913139417987413, 0.49189196085373521) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FAPR.TXT + +[fasb] +description = Springbok, South Africa +location = (-0.51778101142498445, 0.31183215968965355) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FASB.TXT + +[fasi] +description = Springs, South Africa +location = (-0.45811983982764498, 0.49562987433508976) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FASI.TXT + +[faup] +description = Upington, Up-Apt, South Africa +location = (-0.49567350756638956, 0.37117335425746073) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FAUP.TXT + +[faut] +description = Umtata, South Africa +location = (-0.55036049079554528, 0.50032771890504113) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FAUT.TXT + +[favv] +description = Vereeniging, South Africa +location = (-0.46381640058068196, 0.4880376920889144) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FAVV.TXT + +[fawk] +description = Waterkloof (Saaf), South Africa +location = (-0.45087672343186846, 0.49247373727106664) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FAWK.TXT + +[fbft] +description = Francistown, Botswana +location = (-0.37030068963146356, 0.47996554429844063) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FBFT.TXT + +[fbke] +description = Kasane, Botswana +location = (-0.31095949506365639, 0.43895030687657388) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FBKE.TXT + +[fbmn] +description = Maun, Botswana +location = (-0.34877496219020021, 0.40869793317533887) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FBMN.TXT + +[fbsk] +description = Seretse Khama International Airport, Botswana +location = (-0.42266056719129347, 0.45233116447519711) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FBSK.TXT + +[fbsp] +description = Selebi Phikwe, Botswana +location = (-0.38493721466416048, 0.48555544604163359) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FBSP.TXT + +[fcbb] +description = Brazzaville / Maya-Maya, Congo, Republic Of The +location = (-0.074176493209759012, 0.26616271092913524) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FCBB.TXT + +[fcpp] +description = Pointe-Noire, Congo, Republic Of The +location = (-0.084066692304393537, 0.20769418098732523) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FCPP.TXT + +[fdjr] +description = Jericho, Swaziland +location = (-0.47406633142669979, 0.54871231820524524) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FDJR.TXT + +[fdms] +description = Manzini / Matsapa Airport, Swaziland +location = (-0.46309402819582879, 0.54628805587422513) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FDMS.TXT + +[fdmy] +description = Mayiwane Meteorological Station, Swaziland +location = (-0.45176800490322022, 0.54979267701222978) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FDMY.TXT + +[fdnd] +description = Ndzevane, Swaziland +location = (-0.47048142514310348, 0.55772345313329197) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FDND.TXT + +[fdnh] +description = Nhlangano Airport, WZ +location = (-0.47315876021566272, 0.54489179247262964) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FDNH.TXT + +[fdny] +description = Nyonyane, Swaziland +location = (-0.45578575284131118, 0.54890604975221668) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FDNY.TXT + +[fdot] +description = unknown station in Swaziland +location = None +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FDOT.TXT + +[fdpp] +description = Piggs Peak Meteorological Station, Swaziland +location = (-0.45322186417013155, 0.54542935388224401) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FDPP.TXT + +[fdst] +description = Siteki, SV +location = (-0.4612905213021013, 0.55763269601218823) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FDST.TXT + +[fdvv] +description = Vuvulane, Swaziland +location = (-0.45521503017590903, 0.55651219463240797) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FDVV.TXT + +[feff] +description = Bangui, Central African Republic +location = (0.07679448708775051, 0.32317679982761666) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FEFF.TXT + +[fefg] +description = Bangassou, Central African Republic +location = (0.082612251261064931, 0.39851684587203856) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FEFG.TXT + +[fefo] +description = Bouar, Central African Republic +location = (0.10413797870232833, 0.27285313972844683) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FEFO.TXT + +[feft] +description = Berberati, Central African Republic +location = (0.074176493209759012, 0.27576202181510406) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FEFT.TXT + +[fgbt] +description = Bata (Rio Muni), GQ +location = (0.033161255787892259, 0.17104226669544431) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FGBT.TXT + +[fgsl] +description = Malabo/Fernando Poo, Equatorial Guinea +location = (0.065449846949787352, 0.15300719775816957) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FGSL.TXT + +[fhaw] +description = Wide Awake Field Ascension Island, Saint Helena +location = (-0.13904456374221491, -0.25132741228718347) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FHAW.TXT + +[fimp] +description = Plaisance Mauritius, Mauritius +location = (-0.35662894382417465, 1.0064732019833966) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FIMP.TXT + +[fimr] +description = Rodrigues, Mauritius +location = (-0.34353897443421721, 1.1068296339730705) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FIMR.TXT + +[fjdg] +description = Nsf Diego Garcia, IO, British Indian Ocean Territory +location = (-0.12740903539558607, 1.2636183784438948) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FJDG.TXT + +[fkkd] +description = Douala Obs., Cameroon +location = (0.069813170079773182, 0.16987871386078141) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FKKD.TXT + +[fkkl] +description = Maroua Salak, CM +location = (0.18238690683340741, 0.24870941840919197) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FKKL.TXT + +[fkkn] +description = Ngaoundere, Cameroon +location = (0.12828170002158321, 0.23678300185389736) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FKKN.TXT + +[fkkr] +description = Garoua, Cameroon +location = (0.1628973968528041, 0.23358323155857444) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FKKR.TXT + +[fkys] +description = Yaounde, Cameroon +location = (0.066904287993115971, 0.20100375218801364) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FKYS.TXT + +[flcp] +description = Chipata, Zambia +location = (-0.23649211364523168, 0.56868644794148571) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FLCP.TXT + +[fllc] +description = Lusaka City Airport, Zambia +location = (-0.25220007691318058, 0.49683706040105247) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FLLC.TXT + +[flli] +description = Livingstone, Zambia +location = (-0.31095949506365639, 0.45058583522320272) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FLLI.TXT + +[flls] +description = Lusaka Internationalairport, Zambia +location = (-0.26732626376379814, 0.49654617219238673) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FLLS.TXT + +[flmf] +description = Mfuwe, Zambia +location = (-0.23141126626720371, 0.55739998544525571) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FLMF.TXT + +[flnd] +description = Ndola, Zambia +location = (-0.22689280275926285, 0.50003683069637539) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FLND.TXT + +[fmch] +description = Hahaya International Airport, Comoros +location = (-0.20129464039667935, 0.75514578969621327) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FMCH.TXT + +[fmcz] +description = Dzaoudzi / Pamanzi Mayotte, Comoros +location = (-0.22340214425527419, 0.79034326294476553) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FMCZ.TXT + +[fmee] +description = Saint-Denis / Gillot, Reunion +location = (-0.36448292545814914, 0.96894862306551865) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FMEE.TXT + +[fmep] +description = Saint-Pierre, Reunion +location = (-0.37233690709212364, 0.96836684664818717) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FMEP.TXT + +[fmmi] +description = Antananarivo / Ivato, Madagascar +location = (-0.32812189937493397, 0.82874050648864084) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FMMI.TXT + +[fmms] +description = Sainte-Marie Aerodrome, Madagascar +location = (-0.29816041388236458, 0.86946485570184184) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FMMS.TXT + +[fmmt] +description = Tamatave, Madagascar +location = (-0.31619548281963938, 0.86219265048519877) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FMMT.TXT + +[fmna] +description = Diego-Suarez, Madagascar +location = (-0.21554816262129969, 0.86044732123320444) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FMNA.TXT + +[fmnm] +description = Majunga, Madagascar +location = (-0.27343491614577831, 0.80896010829937182) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FMNM.TXT + +[fmnn] +description = Fascene Nossi-Be, Madagascar +location = (-0.23241967872391156, 0.84328491692192697) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FMNN.TXT + +[fmsd] +description = Fort-Dauphin, Madagascar +location = (-0.43691408941591386, 0.81943208381133781) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FMSD.TXT + +[fnlu] +description = Luanda, Angola +location = (-0.15446163880149816, 0.23096523768058294) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FNLU.TXT + +[fogr] +description = Lambarene, Gabon +location = (-0.012508192972626028, 0.17860536012075304) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FOGR.TXT + +[foog] +description = Port-Gentil, Gabon +location = (-0.012217304763960306, 0.15271630954950383) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FOOG.TXT + +[fool] +description = Libreville, Gabon +location = (0.0078539816339744835, 0.1643518378961327) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FOOL.TXT + +[foon] +description = Franceville / Mvengue, Gabon +location = (-0.028797932657906436, 0.2344558961845716) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FOON.TXT + +[fpst] +description = S. Tome, Sao Tome And Principe +location = (0.0066904287993115969, 0.1172279480922858) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FPST.TXT + +[fqbr] +description = Beira, Mozambique +location = (-0.34557519189487729, 0.60911990894602097) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FQBR.TXT + +[fqch] +description = Chimoio, Mozambique +location = (-0.33364877533958265, 0.58410352300076895) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FQCH.TXT + +[fqlc] +description = Lichinga, Mozambique +location = (-0.23212879051524585, 0.61493767311933545) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FQLC.TXT + +[fqma] +description = Maputo / Mavalane, Mozambique +location = (-0.45233116447519711, 0.56839555973282008) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FQMA.TXT + +[fqnp] +description = Nampula, Mozambique +location = (-0.26354471705114374, 0.68562350782510573) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FQNP.TXT + +[fqpb] +description = Pemba, Mozambique +location = (-0.22660191455059711, 0.70744012347503493) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FQPB.TXT + +[fqql] +description = Quelimane, Mozambique +location = (-0.31212304789831924, 0.64373560577724187) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FQQL.TXT + +[fqvl] +description = Vilanculos, Mozambique +location = (-0.38397243543875248, 0.61639211416266415) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FQVL.TXT + +[fsia] +description = Seychelles Inter-National Airport, Seychelles +location = (-0.081448698426402052, 0.96894862306551865) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FSIA.TXT + +[ftta] +description = Sarh, Chad +location = (0.15969762655748115, 0.3208496941582909) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FTTA.TXT + +[fttc] +description = Abeche, Chad +location = (0.24172810140121465, 0.36390114904081772) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FTTC.TXT + +[fttd] +description = Moundou, Chad +location = (0.15038920388017807, 0.28041623315375563) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FTTD.TXT + +[fttj] +description = Ndjamena, Chad +location = (0.21176661590864532, 0.26238116421648089) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FTTJ.TXT + +[ftty] +description = Faya, Chad +location = (0.31415926535897931, 0.33452143996557987) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FTTY.TXT + +[fvbu] +description = Bulawayo Airport, Zimbabwe +location = (-0.34935673860753164, 0.49945505427904396) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FVBU.TXT + +[fvcz] +description = Buffalo Range, Zimbabwe +location = (-0.3668100311274749, 0.55123315542154239) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FVCZ.TXT + +[fvfa] +description = Victoria Falls, Zimbabwe +location = (-0.3159045946109737, 0.45116761164053421) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FVFA.TXT + +[fvha] +description = Harare Kutsaga, Zimbabwe +location = (-0.31270482431565072, 0.54337917378756795) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FVHA.TXT + +[fvkb] +description = Kariba, Zimbabwe +location = (-0.28827021478773007, 0.50410926561769553) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FVKB.TXT + +[fvmv] +description = Masvingo, Zimbabwe +location = (-0.3502294032335288, 0.53872496244891643) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FVMV.TXT + +[fvwn] +description = Hwange National Park, Zimbabwe +location = (-0.32521301728827673, 0.47123889803846897) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FVWN.TXT + +[fwcl] +description = Chileka, Malawi +location = (-0.27372580435444405, 0.61028346178068393) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FWCL.TXT + +[fwki] +description = Lilongwe International Airport, Malawi +location = (-0.24056454856655177, 0.58933951075675195) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FWKI.TXT + +[fxmm] +description = Maseru / Moshoeshoe, Lesotho +location = (-0.51399946471233005, 0.48083820892443779) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FXMM.TXT + +[fyab] +description = Aroab, Namibia +location = (-0.46774822621867485, 0.342957191358983) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FYAB.TXT + +[fyan] +description = Aranos, Namibia +location = (-0.42120612392866397, 0.33364877755888356) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FYAN.TXT + +[fyas] +description = Aus, WA +location = (-0.46530477858168828, 0.28431413514987625) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FYAS.TXT + +[fybg] +description = Bagani, Namibia +location = (-0.31584927409722996, 0.37738986688289) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FYBG.TXT + +[fybp] +description = unknown station in Namibia +location = None +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FYBP.TXT + +[fyen] +description = Eenhana Airport, Eenhana, Namibia +location = (-0.30513619237884892, 0.28487187256564361) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FYEN.TXT + +[fygb] +description = Gobabis, WA +location = (-0.39269908169872414, 0.33091442617812489) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FYGB.TXT + +[fygf] +description = Grootfontein, Namibia +location = (-0.34208453339088862, 0.31619548281963938) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FYGF.TXT + +[fygo] +description = Gobabeb, NM +location = (-0.41137410469506347, 0.26267205242514663) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FYGO.TXT + +[fyhd] +description = unknown station in Namibia +location = None +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FYHD.TXT +zone = ('ndz052', 0.0019401342762502001) + +[fyhn] +description = Henties Bay, NM +location = (-0.38606683054114571, 0.24923301718479024) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FYHN.TXT + +[fykb] +description = Karasburg Airport, Karasburg, Namibia +location = (-0.48923516248870774, 0.32701652999976838) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FYKB.TXT + +[fykm] +description = Katima Mulilo, Namibia +location = (-0.30777911731557783, 0.42196243549049578) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FYKM.TXT + +[fykt] +description = Keetmanshoop, Namibia +location = (-0.46309402819582879, 0.31619548281963938) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FYKT.TXT + +[fykx] +description = Khorixas, NM +location = (-0.35552356863124496, 0.26127578902355114) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FYKX.TXT + +[fylz] +description = Luderitz / Diaz Point, Namibia +location = (-0.46571202207382029, 0.26616271092913524) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FYLZ.TXT + +[fymh] +description = Maltahohe, Namibia +location = (-0.4334234087189161, 0.29641508906897213) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FYMH.TXT + +[fyml] +description = Mariental, NM +location = (-0.42935099599060511, 0.3129375348825833) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FYML.TXT + +[fymp] +description = Mpacha Airport, Mpacha, Namibia +location = (-0.30775390700416011, 0.42207297300978869) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FYMP.TXT + +[fynd] +description = Noordoewer, Namibia +location = (-0.50117995264687554, 0.30750209500308101) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FYND.TXT + +[fyoa] +description = Ondangwa, Namibia +location = (-0.31203578143571958, 0.27842364892439542) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FYOA.TXT + +[fyoh] +description = Okahao, Namibia +location = (-0.31219128918195166, 0.26287427290461907) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FYOH.TXT + +[fyoj] +description = Outjo, NM +location = (-0.35028758087526196, 0.28152160834668533) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FYOJ.TXT + +[fyok] +description = Okakarara, WA +location = (-0.35953782591083189, 0.30473448739820996) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FYOK.TXT + +[fyom] +description = Omaruru, Namibia +location = (-0.3738848139932095, 0.27840150074518977) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FYOM.TXT + +[fyos] +description = Oshakati Airport, Oshakati, Namibia +location = (-0.31061525213975716, 0.27400215397044059) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FYOS.TXT + +[fyot] +description = Ootmoed, Namibia +location = (-0.41916991450506902, 0.34441163324245017) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FYOT.TXT + +[fyow] +description = Otjiwarongo, NM +location = (-0.35657076618244155, 0.29094638630745479) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FYOW.TXT + +[fyoy] +description = unknown station in Namibia +location = None +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FYOY.TXT +zone = ('njz104', 0.00093165345617292523) + +[fyrh] +description = Rehoboth, Namibia +location = (-0.40695261945845085, 0.29816039168935554) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FYRH.TXT + +[fyrn] +description = unknown station in Namibia +location = None +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FYRN.TXT + +[fyru] +description = Rundu, Namibia +location = (-0.31270482431565072, 0.34499341547754581) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FYRU.TXT + +[fyte] +description = Terrace Bay, WA +location = (-0.34871678454846705, 0.22689280275926285) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FYTE.TXT + +[fytk] +description = Tsumkwe, WA +location = (-0.34173546754048967, 0.35831609543443588) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FYTK.TXT + +[fytm] +description = Tsumeb Airport, Tsumeb, Namibia +location = (-0.33618366245635833, 0.30949050960989449) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FYTM.TXT + +[fytn] +description = Otjinene, WA +location = (-0.36878807094640181, 0.32742376767413622) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FYTN.TXT + +[fywb] +description = Walvis Bay, Namibia +location = (-0.40112999161321899, 0.2556907354171693) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FYWB.TXT + +[fywe] +description = Windhoek Eros, NM +location = (-0.39479347680111737, 0.29810223624063148) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FYWE.TXT + +[fywh] +description = J. G. Strijdom, Namibia +location = (-0.39240819349005845, 0.30485084268167623) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FYWH.TXT + +[fyww] +description = Windhoek, Town Met, Namibia +location = (-0.39386263453338705, 0.29845130209103038) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FYWW.TXT + +[fzaa] +description = Kinshasa / N'Djili, Congo, Democratic Republic Of The +location = (-0.076503598879084783, 0.26936248122445822) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FZAA.TXT + +[fzqa] +description = Lubumbashi-Luano, Congo, Democratic Republic Of The +location = (-0.20362174606600511, 0.47967465608977494) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FZQA.TXT + +[fzwa] +description = Mbuji-Mayi, Congo, Democratic Republic Of The +location = (-0.10762863720631699, 0.41218859167932748) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/FZWA.TXT + +[gabs] +description = Bamako / Senou, Mali +location = (0.21874793291662264, -0.1387536755335492) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/GABS.TXT + +[gbyd] +description = Banjul / Yundum, Gambia, The +location = (0.23300145514124299, -0.29321531433504738) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/GBYD.TXT + +[gcfv] +description = Fuerteventura / Aeropuerto, Spain +location = (0.49654617219238673, -0.24201898960988036) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/GCFV.TXT + +[gcgm] +description = La Gomera Airport, ES +location = (0.48921578933401061, -0.30054569719342356) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/GCGM.TXT + +[gchi] +description = Hierro / Aeropuerto, Spain +location = (0.48549242026308931, -0.31212304789831924) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/GCHI.TXT + +[gcla] +description = La Palma / Aeropuerto, Spain +location = (0.49945505427904396, -0.30979594222899348) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/GCLA.TXT + +[gclp] +description = Gran Canaria - Canary Islands, Spain +location = (0.48752863772374938, -0.268489816598461) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/GCLP.TXT + +[gcrr] +description = Lanzarote / Aeropuerto, Spain +location = (0.50527281845235839, -0.23736477827122882) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/GCRR.TXT + +[gcts] +description = Tenerife Sur, Spain +location = (0.48956485518440945, -0.28914287941372724) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/GCTS.TXT + +[gcxo] +description = Tenerife / Los Rodeos, Spain +location = (0.49683706040105247, -0.28477955628374141) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/GCXO.TXT + +[geml] +description = Melilla, Spain +location = (0.61581033774533256, -0.051487212933832724) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/GEML.TXT + +[gfll] +description = Lungi, Sierra Leone +location = (0.15038920388017807, -0.23038346126325149) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/GFLL.TXT + +[ggov] +description = Bissau Aeroport, Guinea-Bissau +location = (0.20740329277865949, -0.27314402793711257) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/GGOV.TXT + +[glrb] +description = Grand Bassa, Roberts Field, Liberia +location = (0.1090830782496456, -0.18064157758141311) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/GLRB.TXT + +[gmad] +description = Agadir Al Massira, Morocco +location = (0.52941653977161329, -0.16406094968746698) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/GMAD.TXT + +[gmae] +description = unknown station in Morocco +location = None +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/GMAE.TXT +zone = ('gaz020', 0.0018301793687658771) + +[gmff] +description = Fes-Sais, Morocco +location = (0.59224839284340913, -0.086975574391050761) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/GMFF.TXT + +[gmfk] +description = Errachidia, Morocco +location = (0.5573418078035226, -0.07679448708775051) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/GMFK.TXT + +[gmfm] +description = Meknes, Morocco +location = (0.59137572821741202, -0.096574885277019573) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/GMFM.TXT + +[gmfo] +description = Oujda, Morocco +location = (0.6070836914853609, -0.033743032205223705) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/GMFO.TXT + +[gmmc] +description = Casablanca, Morocco +location = (0.5858488522527634, -0.13380857598623194) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/GMMC.TXT + +[gmme] +description = Rabat-Sale, Morocco +location = (0.59428461030406921, -0.11810061271828297) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/GMME.TXT + +[gmmh] +description = Dakhla, WI +location = (0.41381756564785555, -0.27803094984269672) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/GMMH.TXT + +[gmmi] +description = Essaouira, Morocco +location = (0.55006960258687954, -0.17075137848677857) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/GMMI.TXT + +[gmml] +description = Laayoune/Hassan Isl, Morocco +location = (0.47414778012512621, -0.23066950133510611) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/GMML.TXT + +[gmmn] +description = Nouasseur, Morocco +location = (0.58235819374877462, -0.13235413494290332) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/GMMN.TXT + +[gmmo] +description = unknown station in Morocco +location = None +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/GMMO.TXT + +[gmmt] +description = Casablanca T-M, MC +location = (0.58625609574489534, -0.13037609512397641) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/GMMT.TXT + +[gmmw] +description = Nador/Arwi, Morocco +location = (0.61067131272557151, -0.052854387514561611) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/GMMW.TXT + +[gmmx] +description = Marrakech, Morocco +location = (0.55181493183887387, -0.14020811657687782) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/GMMX.TXT + +[gmmz] +description = Ouarzazate, Morocco +location = (0.53988851528357928, -0.12042771838760874) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/GMMZ.TXT + +[gmta] +description = Al Hoceima, Morocco +location = (0.61406500849333823, -0.067195176201781684) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/GMTA.TXT + +[gmtn] +description = Tetuan / Sania Ramel, Morocco +location = (0.62104632550131567, -0.093084226773030909) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/GMTN.TXT + +[gmto] +description = unknown station in Morocco +location = None +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/GMTO.TXT + +[gmtt] +description = Tanger Aerodrome, Morocco +location = (0.62366431937930711, -0.10297442586766545) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/GMTT.TXT + +[gogg] +description = Ziguinchor, Senegal +location = (0.21903882112528836, -0.28390689165774424) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/GOGG.TXT + +[gogk] +description = Kolda, Senegal +location = (0.22485658529860278, -0.26121761138181798) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/GOGK.TXT + +[gogs] +description = Cap-Skirring, Senegal +location = (0.21642082724729686, -0.29234264970905022) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/GOGS.TXT + +[good] +description = Diourbel, Senegal +location = (0.2556907354171693, -0.28332511524041287) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/GOOD.TXT + +[goog] +description = Linguere, Senegal +location = (0.268489816598461, -0.26383560525980948) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/GOOG.TXT + +[gook] +description = Kaolack, Senegal +location = (0.2466732009485319, -0.28041623315375563) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/GOOK.TXT + +[gooy] +description = Dakar / Yoff, Senegal +location = (0.25714517646049789, -0.30543261909900765) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/GOOY.TXT + +[gosm] +description = Matam, Senegal +location = (0.27314402793711257, -0.23125612588924865) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/GOSM.TXT + +[gosp] +description = Podor, Senegal +location = (0.29059732045705583, -0.26121761138181798) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/GOSP.TXT + +[goss] +description = Saint-Louis, Senegal +location = (0.28012534494508989, -0.28710666195306722) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/GOSS.TXT + +[gotk] +description = Kedougou, Senegal +location = (0.21932970933395407, -0.21322105695197394) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/GOTK.TXT + +[gott] +description = Tambacounda, Senegal +location = (0.24027366035788605, -0.23881921931455743) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/GOTT.TXT + +[gqnn] +description = Nouakchott, Mauritania +location = (0.3159045946109737, -0.27838001569309556) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/GQNN.TXT + +[gqno] +description = unknown station in Mauritania +location = None +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/GQNO.TXT + +[gqon] +description = unknown station in Mauritania +location = None +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/GQON.TXT +zone = ('nmz510', 0.0044364770325273162) + +[gqpp] +description = Nouadhibou, Mauritania +location = (0.36535559008414631, -0.29728774925636747) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/GQPP.TXT + +[gqqp] +description = unknown station in Mauritania +location = None +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/GQQP.TXT + +[gucy] +description = Conakry / Gbessia, Guinea +location = (0.16696983177412419, -0.23765566647989456) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/GUCY.TXT + +[gvac] +description = Sal, Cape Verde +location = (0.29205176150038448, -0.40055306333269863) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/GVAC.TXT + +[gvba] +description = Boa Vista Rabil, CV +location = (0.28152160834668533, -0.39933133285630257) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/GVBA.TXT + +[gvnp] +description = Praia, CV +location = (0.26040312439755398, -0.41189770347066179) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/GVNP.TXT + +[haab] +description = Addis Ababa, Ethiopia +location = (0.15678874447082392, 0.67718774977379981) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/HAAB.TXT + +[hdam] +description = Djibouti \ Ambouli, Djibouti +location = (0.20158552860534507, 0.75340046044421893) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/HDAM.TXT + +[hear] +description = El Arish, Egypt +location = (0.54250650916157073, 0.59021217538274917) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/HEAR.TXT + +[heat] +description = Asyut, Egypt +location = (0.47211156266446613, 0.54134295632690788) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/HEAT.TXT + +[heax] +description = Alexandria / Nouzha, Egypt +location = (0.5445427266222308, 0.52272611097230171) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/HEAX.TXT + +[heba] +description = Alexandria Borg El Arab, Egypt +location = (0.55006960258687954, 0.52650765768495611) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/HEBA.TXT + +[hebl] +description = Abu Simbel, EG +location = (0.39043015367113154, 0.55187310948060697) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/HEBL.TXT + +[heca] +description = Cairo Airport, Egypt +location = (0.52592588126762463, 0.54803338512621946) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/HECA.TXT + +[hegn] +description = Hurguada, Egypt +location = (0.47385689191646047, 0.58846684613075484) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/HEGN.TXT + +[heis] +description = Ismalia, EG +location = (0.53372168525986596, 0.56286868376817123) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/HEIS.TXT + +[helx] +description = Luxor, Egypt +location = (0.44796784134521128, 0.57072266540214578) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/HELX.TXT + +[hema] +description = Marsa Alam Intl, EG +location = (0.44593162388455121, 0.60353485533963913) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/HEMA.TXT + +[hemm] +description = Mersa Matruh, Egypt +location = (0.54686983229155661, 0.47502044475112332) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/HEMM.TXT + +[heps] +description = Port Said, Egypt +location = (0.54570627945689365, 0.56374134839416834) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/HEPS.TXT + +[hesc] +description = St Catherine Intl, EG +location = (0.50056042947197366, 0.59463367615446805) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/HESC.TXT + +[hesh] +description = Sharm El Sheikhintl, Egypt +location = (0.48811041414108081, 0.60010237447738368) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/HESH.TXT + +[hesn] +description = Asswan, Egypt +location = (0.41829724406130764, 0.57217710644547437) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/HESN.TXT + +[hetb] +description = Taba, Egypt +location = (0.51660291417988824, 0.60696733620189458) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/HETB.TXT + +[hkel] +description = Eldoret, Kenya +location = (0.0093084226773030906, 0.61581033774533256) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/HKEL.TXT + +[hkem] +description = Embu, Kenya +location = (-0.0087266462599716477, 0.65362580487187649) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/HKEM.TXT + +[hkga] +description = Garissa, Kenya +location = (-0.0081448698426402049, 0.69173216020708594) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/HKGA.TXT + +[hkjk] +description = Nairobi/Jomo Kenyatta Airport Twr/App/Nof/Civil Airlines, Kenya +location = (-0.022980168484592004, 0.64431738219457324) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/HKJK.TXT + +[hkkg] +description = Kakamega, Kenya +location = (0.0049450995473172667, 0.6070836914853609) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/HKKG.TXT + +[hkki] +description = Kisumu, Kenya +location = (-0.0017453292519943296, 0.60650191506802953) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/HKKI.TXT + +[hkkr] +description = Kericho, Kenya +location = (-0.0063995405906458747, 0.61697389057999552) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/HKKR.TXT + +[hkks] +description = Kisii, Kenya +location = (-0.011635528346628864, 0.6070836914853609) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/HKKS.TXT + +[hkkt] +description = Kitale, Kenya +location = (0.017744180728609015, 0.6108652381980153) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/HKKT.TXT + +[hklo] +description = Lodwar, Kenya +location = (0.054396095020489935, 0.62162810191864704) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/HKLO.TXT + +[hklu] +description = Lamu, Kenya +location = (-0.039560796378538134, 0.71267611123101793) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/HKLU.TXT + +[hkma] +description = Mandera, Kenya +location = (0.068649617245110303, 0.73071118016829262) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/HKMA.TXT + +[hkmb] +description = Marsabit, Kenya +location = (0.04014257279586958, 0.66147978650585082) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/HKMB.TXT + +[hkme] +description = Meru, Kenya +location = (0.001454441043328608, 0.65711646337586505) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/HKME.TXT + +[hkml] +description = Malindi, Kenya +location = (-0.056432312481149986, 0.69987703004972612) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/HKML.TXT + +[hkmo] +description = Mombasa, Kenya +location = (-0.070394946497104621, 0.6914412719984202) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/HKMO.TXT + +[hkms] +description = unknown station in Kenya +location = None +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/HKMS.TXT + +[hkmu] +description = Makindu, Kenya +location = (-0.039851684587203853, 0.66031623367118808) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/HKMU.TXT + +[hkmy] +description = Moyale, Kenya +location = (0.061668300237132975, 0.68155107290378569) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/HKMY.TXT + +[hknc] +description = Nairobi / Dagoretti, Kenya +location = (-0.022689280275926284, 0.64140850010791606) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/HKNC.TXT + +[hknh] +description = unknown station in Kenya +location = None +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/HKNH.TXT + +[hkni] +description = Nyeri, Kenya +location = (-0.0087266462599716477, 0.64519004682057057) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/HKNI.TXT + +[hknk] +description = Nakuru, Kenya +location = (-0.0046542113386515453, 0.63006385996995296) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/HKNK.TXT + +[hkno] +description = Narok, Kenya +location = (-0.019780398189269067, 0.62540964863130144) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/HKNO.TXT + +[hknw] +description = Nairobi / Wilson, Kenya +location = (-0.022980168484592004, 0.64257205294257902) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/HKNW.TXT + +[hkre] +description = Moi Airbase, KN +location = (-0.022514747350726852, -0.64367742813550877) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/HKRE.TXT + +[hkvo] +description = Voi, Kenya +location = (-0.059341194567807204, 0.67311531485247977) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/HKVO.TXT + +[hkwj] +description = Wajir, Kenya +location = (0.030543261909900768, 0.69929525363239475) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/HKWJ.TXT + +[hllb] +description = Benina, Libya +location = (0.56025068989017979, 0.35372006173751747) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/HLLB.TXT + +[hllm] +description = Mitiga, LY +location = (0.57421332390613444, 0.23160519173964753) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/HLLM.TXT + +[hlls] +description = Sebha, Libya +location = (0.47152978624713471, 0.25220007691318058) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/HLLS.TXT + +[hllt] +description = Tripoli Inter-National Airport, Libya +location = (0.5701408889848143, 0.22951079663725435) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/HLLT.TXT + +[hryr] +description = Kigali, Rwanda +location = (-0.034324808622555152, 0.52563499305895889) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/HRYR.TXT + +[hsss] +description = Khartoum, Sudan +location = (0.2722713633111154, 0.56810467152415423) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/HSSS.TXT + +[huak] +description = unknown station in Uganda +location = None +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/HUAK.TXT + +[huar] +description = Arua, Uganda +location = (0.053232542185827049, 0.53959762707491354) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/HUAR.TXT + +[huen] +description = Entebbe Airport, Uganda +location = (0.0008726646259971648, 0.56635934227216) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/HUEN.TXT + +[hugu] +description = Gulu, Uganda +location = (0.04799655442984406, 0.56432312481149993) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/HUGU.TXT + +[huji] +description = Jinja, Uganda +location = (0.0078539816339744835, 0.57915842345345159) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/HUJI.TXT + +[huka] +description = unknown station in Uganda +location = None +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/HUKA.TXT + +[hukb] +description = Kabale, Uganda +location = (-0.021816615649929118, 0.52330788738963319) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/HUKB.TXT + +[huks] +description = Kasese, Uganda +location = (0.0031997702953229373, 0.52534410485029326) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/HUKS.TXT + +[huli] +description = Lira, Uganda +location = (0.039269908169872414, 0.57421332390613444) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/HULI.TXT + +[huma] +description = Mbarara, Uganda +location = (-0.010762863720631699, 0.53494341573626203) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/HUMA.TXT + +[humi] +description = Masindi, Uganda +location = (0.029379709075237882, 0.5535602610908682) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/HUMI.TXT + +[huso] +description = Soroti, Uganda +location = (0.029961485492569325, 0.58672151687876051) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/HUSO.TXT + +[huto] +description = Tororo, Uganda +location = (0.011926416555294585, 0.59632082776472917) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/HUTO.TXT + +[huwn] +description = unknown station in Uganda +location = None +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/HUWN.TXT + +[k04v] +description = Saguache, Saguache Municipal Airport, CO, United States +location = (0.66492196364172862, -1.8529918261583243) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/K04V.TXT +zone = ('coz065', 0.0023916993387356907) + +[k04w] +description = Field Of Dreams Ap, Hin, US +location = (0.80320052176779055, -1.6212363421775327) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/K04W.TXT +zone = ('mnz038', 0.0025164940117398597) + +[k05u] +description = Eureka Airport, United States +location = (0.69118686117112116, -2.0246910153916717) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/K05U.TXT +zone = ('nvz037', 0.0094596534300600624) + +[k06d] +description = Rolla Municipal Airport, ND, United States +location = (0.85319450856380574, -1.7387115452471842) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/K06D.TXT +zone = ('ndz005', 0.003198307596846374) + +[k08d] +description = Stanley Municipal Airport, ND, United States +location = (0.84300857312369437, -1.7873286611888488) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/K08D.TXT +zone = ('ndz010', 0.0018347209959801364) + +[k0a9] +description = Elizabethton, Tn, US +location = (0.63477624895033757, -1.4341370463637406) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/K0A9.TXT +zone = ('tnz046', 9.8211056344513337e-05) + +[k0e0] +description = Moriarty Arpt, US +location = (0.61051617234761646, -1.8500490071139892) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/K0E0.TXT +zone = ('nmz522', 0.0031637159292151355) + +[k0f2] +description = Bowie, Tx, US +location = (0.58625609574489534, -1.7065829426000554) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/K0F2.TXT +zone = ('txz091', 0.0016986385114513144) + +[k0j4] +description = Florala Airport, AL, United States +location = (0.54163384453557362, -1.5062191444711064) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/K0J4.TXT +zone = ('flz007', 0.0034545822209101863) + +[k0vg] +description = Lee County Airport, VA, United States +location = (0.63973104477127707, -1.4524242184151923) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/K0VG.TXT +zone = ('vaz001', 0.0015404659685553687) + +[k11r] +description = Brenham, Brenham Municipal Airport, TX, United States +location = (0.52741910740544196, -1.6820465221991017) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/K11R.TXT +zone = ('txz197', 0.00045047063424261786) + +[k12n] +description = Aeroflex-Andover Airport, NJ, United States +location = (0.71587588152634085, -1.3043427276570956) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/K12N.TXT +zone = ('njz001', 0.0022159954842217197) + +[k14y] +description = Todd Field Airport, MN, United States +location = (0.80110612666539727, -1.6557356837252872) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/K14Y.TXT +zone = ('mnz042', 0.0030010702931637838) + +[k19a] +description = Jefferson Jackson County, GA, United States +location = (0.59648128170062931, -1.4584250482344936) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/K19A.TXT +zone = ('gaz025', 0.00073547949002181689) + +[k1a5] +description = Franklin, Macon County Airport, NC, United States +location = (0.61464678491066971, -1.4558954843719367) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/K1A5.TXT +zone = ('ncz062', 0.0011591655312953527) + +[k1a6] +description = Middlesboro, Middlesboro-Bell County Airport, KY, United States +location = (0.63897473542874628, -1.4614902342519407) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/K1A6.TXT +zone = ('kyz087', 0.0022760410590182373) + +[k1f0] +description = Ardmore, Ardmore Downtown Executive Airport, OK, United States +location = (0.59597661005114144, -1.6951074027681925) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/K1F0.TXT +zone = ('okz046', 0.0029746996480786362) + +[k1h2] +description = Effingham, Effingham County Memorial Airport, IL, United States +location = (0.68190983502780678, -1.5451981644323132) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/K1H2.TXT +zone = ('ilz066', 0.00078961731187150697) + +[k1j0] +description = Tri County Airport, FL, United States +location = (0.53814318603158495, -1.494001839707146) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/K1J0.TXT +zone = ('flz009', 0.0032672070083875045) + +[k1m4] +description = Haleyville, Posey Field Airport, AL, United States +location = (0.59830371572046726, -1.5289132728838437) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/K1M4.TXT +zone = ('alz014', 0.0039909346329880012) + +[k1p1] +description = Plymouth, Plymouth Municipal Airport, NH, United States +location = (0.7640906021126842, -1.2523367640844758) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/K1P1.TXT +zone = ('nhz005', 0.0023108676301860061) + +[k1r7] +description = Brookhaven, Ms, US +location = (0.55152404363020813, -1.5781267096532727) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/K1R7.TXT +zone = ('msz062', 0.0012836152721847549) + +[k1v4] +description = St Johnsbury Fairbanks, VT, United States +location = (0.77521707609414803, -1.2569279496445829) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/K1V4.TXT +zone = ('vtz007', 0.0013560420565441943) + +[k20u] +description = Beach Airport Beach, ND, United States +location = (0.81900059963515015, -1.8148272931813816) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/K20U.TXT +zone = ('ndz031', 0.0016327610813304822) + +[k20v] +description = Kremmling, Mc Elroy Airfield, CO, United States +location = (0.69906739120227324, -1.8564873327991238) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/K20V.TXT +zone = ('coz032', 0.0021612982474193006) + +[k21d] +description = Lake Elmo Airport, MN, United States +location = (0.78539816339744828, -1.620538210476735) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/K21D.TXT +zone = ('mnz063', 0.00078851626944449445) + +[k2c8] +description = Cavalier Municipal Airport, ND, United States +location = (0.85143463490137816, -1.7039988856797417) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/K2C8.TXT +zone = ('ndz008', 0.00096638910887180448) + +[k2d5] +description = Oakes Municipal Airport, ND, United States +location = (0.80587184515070387, -1.7118189303560385) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/K2D5.TXT +zone = ('ndz049', 0.0070954058993143868) + +[k2dp] +description = Dare County Gunnery Range, NC, United States +location = (0.62250076654464415, -1.3247049022636963) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/K2DP.TXT +zone = ('ncz047', 0.0019884945575903549) + +[k2g4] +description = Garrett Cnty Airport, MD, US +location = (0.69080131793935562, -1.3847442285323011) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/K2G4.TXT +zone = ('mdz001', 0.0012633267985862741) + +[k2i0] +description = Madisonville Municipal Airport, United States +location = (0.65198397364452532, -1.5253866993823584) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/K2I0.TXT +zone = ('kyz016', 0.002144126550309784) + +[k2j9] +description = Qunicy, Fl, US +location = (0.53407075111026492, -1.4756758825612055) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/K2J9.TXT +zone = ('flz016', 0.0010217459813232882) + +[k2v5] +description = Wray, Co, US +location = (0.69987703004972612, -1.7842500943138031) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/K2V5.TXT +zone = ('coz090', 0.003100063640322575) + +[k2w6] +description = St Marys Cnty Rgnl Arpt, MD, US +location = (0.6688101693642271, -1.3360495424016592) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/K2W6.TXT +zone = ('mdz017', 0.00083982900449964583) + +[k2wx] +description = Buffalo, SD, United States +location = (0.79587013890941427, -1.8072884404401282) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/K2WX.TXT +zone = ('sdz001', 0.00074405458555820876) + +[k33v] +description = Walden Jackson Airpo, US +location = (0.71122167018768934, -1.8545868631691746) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/K33V.TXT +zone = ('coz030', 0.0014357415608552485) + +[k36u] +description = Heber, Heber City Municipal-Russ Mcdonald Field Airport, UT, United States +location = (0.70654321816498222, -1.9448009929500372) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/K36U.TXT +zone = ('utz008', 0.0052637962643643727) + +[k3a1] +description = Cullman, Folsom Field Airport, AL, United States +location = (0.59810009397440134, -1.5159638994614082) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/K3A1.TXT +zone = ('alz016', 0.0023880630605886007) + +[k3du] +description = Drummond, MT, United States +location = (0.81448698426402044, -1.974840048631584) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/K3DU.TXT +zone = ('mtz007', 0.0055929224992648831) + +[k3i2] +description = Point Pleasant, Mason County Airport, WV, United States +location = (0.67918518213997114, -1.4328862270664779) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/K3I2.TXT +zone = ('wvz007', 0.0027067990951992566) + +[k3j7] +description = Greensboro, Greene County Regional Airport, GA, United States +location = (0.58638699543879491, -1.4510473475608414) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/K3J7.TXT +zone = ('gaz050', 0.00051854177529490268) + +[k3lf] +description = Litchfield, Litchfield Municipal Airport, IL, United States +location = (0.68350972017546818, -1.5651143104522929) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/K3LF.TXT +zone = ('ilz060', 0.002904584859826176) + +[k3r7] +description = Jennings Airport, United States +location = (0.52783468969288905, -1.6174577043469651) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/K3R7.TXT +zone = ('laz042', 0.002156926317319703) + +[k3t5] +description = La Grange, Fayette Regional Air Center Airport, TX, United States +location = (0.52199404231382629, -1.6920967098085025) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/K3T5.TXT +zone = ('txz209', 0.00071161956632239559) + +[k40b] +description = Clayton Lake, ME, United States +location = (0.81361431963802333, -1.2135856065533905) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/K40B.TXT +zone = ('mez001', 0.0077018369117949157) + +[k40j] +description = Perry-Foley Airport, FL, United States +location = (0.52476232843296178, -1.4588043664585937) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/K40J.TXT +zone = ('flz028', 0.00051139973932709667) + +[k42j] +description = Keystone Heights, Fl, US +location = (0.51923545246831304, -1.4320426512613473) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/K42J.TXT +zone = ('flz031', 0.0039304763497651669) + +[k46d] +description = Carrington Municipal Airport, ND, United States +location = (0.82817812261855372, -1.7305181940364331) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/K46D.TXT +zone = ('ndz025', 0.0031679552883129925) + +[k4a6] +description = Scottsboro Muni Word, US +location = (0.60528018459163346, -1.5009831567151235) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/K4A6.TXT +zone = ('alz009', 0.0017348863325757032) + +[k4a9] +description = Fort Payne, Isbell Field Airport, AL, United States +location = (0.6016780189409896, -1.4961204754935948) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/K4A9.TXT +zone = ('alz010', 0.0012143329937710434) + +[k4bl] +description = Blanding, UT, United States +location = (0.65653468695853368, -1.9105537545164595) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/K4BL.TXT +zone = ('utz022', 0.0065247425333126337) + +[k4bm] +description = Wilkerson Pass, CO, United States +location = (0.6815559210405967, -1.8415744639681948) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/K4BM.TXT +zone = ('coz037', 0.0024449402342290013) + +[k4cr] +description = Corona / Lincoln, NM, United States +location = (0.59515727493006643, -1.8445221311493407) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/K4CR.TXT +zone = ('nmz524', 0.0069777561083855296) + +[k4hv] +description = Hanksville, UT, United States +location = (0.66962465634849111, -1.9323703701663886) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/K4HV.TXT +zone = ('utz013', 0.0030562786003054863) + +[k4i3] +description = Knox County, OH, US +location = (0.70389128732931305, -1.4402456987457206) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/K4I3.TXT +zone = ('ohz047', 0.0017760116651569619) + +[k4m9] +description = Corning, Ar, US +location = (0.63529984772593595, -1.5821409669328599) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/K4M9.TXT +zone = ('arz009', 0.0033155415010262842) + +[k4mr] +description = Melrose Gunnery Range, NM, United States +location = (0.59864793343405498, -1.8116517635701139) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/K4MR.TXT +zone = ('nmz536', 0.0067075852310735365) + +[k4o4] +description = Idabel, Mc Curtain County Regional Airport, OK, United States +location = (0.59182660494084383, -1.6556047840313877) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/K4O4.TXT +zone = ('okz077', 0.0038128733727304173) + +[k4sl] +description = Torreon, NM, United States +location = (0.62482787221396996, -1.8707020699292556) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/K4SL.TXT +zone = ('nmz504', 0.0058524422691292859) + +[k5c1] +description = Boerne Stage Field, US +location = (0.51871185369271477, -1.7224654387932037) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/K5C1.TXT +zone = ('txz189', 0.0039353668097256746) + +[k5h4] +description = Harvey Municipal Airport, ND, United States +location = (0.83411224207533441, -1.7441366103388001) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/K5H4.TXT +zone = ('ndz023', 0.0047674377384133333) + +[k5sm] +description = Sunlight, CO, United States +location = (0.68810575387238659, -1.8741200063810777) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/K5SM.TXT +zone = ('coz008', 0.0058953144832044049) + +[k5t6] +description = Santa Teresa, Dona Ana County Airport At Santa Teresa, NM, United States +location = (0.55642550994622553, -1.8623487302037385) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/K5T6.TXT +zone = ('txz418', 0.0018782744759564137) + +[k5w8] +description = Siler City Municipal Airport, United States +location = (0.62316045445978474, -1.3876071095576399) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/K5W8.TXT +zone = ('ncz039', 0.0042807810907236343) + +[k65s] +description = Bonners Ferry, Id, US +location = (0.85049894449683672, -2.0298179200694051) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/K65S.TXT +zone = ('idz001', 0.0050114344154604086) + +[k6a2] +description = Griffin Spalding County Airport, United States +location = (0.57992006186796541, -1.4708752497338402) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/K6A2.TXT +zone = ('gaz056', 0.00060705038280400327) + +[k6r3] +description = Cleveland Muni, Clevela, US +location = (0.52988196090547846, -1.6582373223198126) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/K6R3.TXT +zone = ('txz178', 0.0045011797432525213) + +[k6r6] +description = Dryden-Terrell County Airport, TX, United States +location = (0.52447144022429604, -1.7840173837468705) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/K6R6.TXT +zone = ('txz082', 0.0037155066458842436) + +[k79j] +description = Opp/Andalusia, AL, United States +location = (0.54628805587422513, -1.5076735855144352) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/K79J.TXT +zone = ('alz060', 0.001353822379419877) + +[k7bm] +description = Cottonwood Pass, CO, United States +location = (0.67688231715470082, -1.8538547945106991) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/K7BM.TXT +zone = ('coz061', 0.0008816591871014008) + +[k7l2] +description = Linton Municipal Airport, ND, United States +location = (0.80670087654540135, -1.7496150049353378) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/K7L2.TXT +zone = ('ndz046', 0.001129459517882903) + +[k7r3] +description = Amelia / Lake Palourd, LA, United States +location = (0.51836278784231582, -1.5899949485668341) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/K7R3.TXT +zone = ('laz056', 0.0035466551153353555) + +[k7r4] +description = Intracoastal City, LA, United States +location = (0.51981722888564452, -1.6080300175041091) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/K7R4.TXT +zone = ('laz052', 0.0029786100694019022) + +[k8a0] +description = Albertville, Albertville Municipal Airport, AL, United States +location = (0.59740681041041466, -1.5054434425813312) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/K8A0.TXT +zone = ('alz008', 0.0025186782980914008) + +[k8d3] +description = Sisseton Municipal Airport, SD, United States +location = (0.79703369174407712, -1.6926784862258339) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/K8D3.TXT +zone = ('sdz008', 0.00079050457240707804) + +[k8s0] +description = Browning, Starr-Browning Airstrip, MT, United States +location = (0.84824940901648849, -1.9742243352565747) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/K8S0.TXT +zone = ('mtz009', 0.001238781229136493) + +[k96d] +description = Walhalla Municipal Airport, ND, United States +location = (0.85417383219964704, -1.7087258190705596) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/K96D.TXT +zone = ('ndz008', 0.0050407730178855499) + +[k9a1] +description = Covington Muni, Covingt, US +location = (0.58695422744569303, -1.4634585777972453) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/K9A1.TXT +zone = ('gaz048', 0.001307258885690316) + +[k9a4] +description = Courtland Airport, US +location = (0.6047565858160352, -1.5243705686918474) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/K9A4.TXT +zone = ('alz004', 0.0022725509883357031) + +[k9d7] +description = Cando Municipal Airport, ND, United States +location = (0.84613562136685105, -1.7320017239006285) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/K9D7.TXT +zone = ('ndz006', 0.0035900768720179541) + +[k9f2] +description = Fourchon Supplementary Aviation Weather Reporting Station, LA, United States +location = (0.50789081233034994, -1.5742869852988852) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/K9F2.TXT +zone = ('laz067', 0.0048491423249411043) + +[k9l2] +description = Edwards, Edwards Air Force Auxiliary North Base, CA, United States +location = (0.61057434998934967, -2.0568705234753173) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/K9L2.TXT +zone = ('caz099', 0.0030084647106958327) + +[k9mn] +description = St Mary Hospital, Mn, US +location = (0.76829393672790391, -1.6142550251695553) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/K9MN.TXT +zone = ('mnz087', 0.0011435202441215995) + +[k9v9] +description = Chamberlain Municipal Airport, SD, United States +location = (0.76387243595618493, -1.733402835439035) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/K9V9.TXT +zone = ('sdz057', 0.0030901074721869375) + +[kaaa] +description = Lincoln, Logan County Airport, IL, United States +location = (0.70089998691686717, -1.5591898872691341) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KAAA.TXT +zone = ('ilz042', 0.00073731312136051004) + +[kaaf] +description = Apalachicola Municipal Airport, FL, United States +location = (0.5189445642596473, -1.4838207524038458) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KAAF.TXT +zone = ('flz115', 0.0038921420983032227) + +[kaao] +description = Wichita Jabara Airport, KS, United States +location = (0.65886179262785938, -1.6967509211471541) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KAAO.TXT +zone = ('ksz083', 0.0035613934605939414) + +[kaat] +description = Alturas, CA, United States +location = (0.72402075136898103, -2.1042853014878298) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KAAT.TXT +zone = ('caz085', 0.0028506032184236621) + +[kabe] +description = Lehigh Valley International Airport, PA, United States +location = (0.70947634093569489, -1.3168509206297216) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KABE.TXT +zone = ('paz061', 0.0019942164938544001) + +[kabh] +description = Bullseye Airfield, CO, US +location = (0.67666415099820165, -1.8203784098300857) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KABH.TXT +zone = ('coz085', 0.0029451831933690518) + +[kabi] +description = Abilene Regional Airport, TX, United States +location = (0.56577756585482841, -1.7398023760296808) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KABI.TXT +zone = ('txz127', 0.0036513992746151865) + +[kabq] +description = Albuquerque International Airport, NM, United States +location = (0.61144701461534678, -1.8605209826259552) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KABQ.TXT +zone = ('nmz519', 0.0021325238066776339) + +[kabr] +description = Aberdeen Regional Airport, SD, United States +location = (0.79325214503142283, -1.7176948721710861) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KABR.TXT +zone = ('sdz006', 0.0025664327572824416) + +[kaby] +description = Albany Southwest Georgia, GA, United States +location = (0.55036049079554528, -1.4695672301792255) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KABY.TXT +zone = ('gaz125', 0.00024396828920284486) + +[kacb] +description = Bellaire, Antrim County Airport, MI, United States +location = (0.78519454165138236, -1.4869914338783023) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KACB.TXT +zone = ('miz021', 0.00077696879901135768) + +[kacj] +description = Americus, Ga, US +location = (0.56042522281537921, -1.4695672301792255) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KACJ.TXT +zone = ('gaz104', 0.0012224830361831835) + +[kack] +description = Nantucket Memorial Airport, MA, United States +location = (0.71994831644766089, -1.2228940292306936) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KACK.TXT +zone = ('maz024', 0.00050082152269230831) + +[kacp] +description = Oakdale, Allen Parish Airport, LA, United States +location = (0.53669844126187849, -1.6177214429894886) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KACP.TXT +zone = ('laz031', 0.0026982125804160986) + +[kacq] +description = Waseca, Waseca Municipal Airport, MN, United States +location = (0.76922477899563424, -1.6328088447456175) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KACQ.TXT +zone = ('mnz084', 0.0009920292742877845) + +[kact] +description = Waco Regional Airport, TX, United States +location = (0.55152404363020813, -1.6967509211471541) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KACT.TXT +zone = ('txz159', 0.00085968349341580201) + +[kacv] +description = Arcata/Eureka Arcata Airport, CA, United States +location = (0.71529410510900937, -2.1659536017249628) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KACV.TXT +zone = ('caz001', 0.00071734809298621121) + +[kacy] +description = Atlantic City International, NJ, United States +location = (0.68882327812042876, -1.301724733779104) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KACY.TXT +zone = ('njz022', 0.001595015351494078) + +[kadc] +description = Wadena, Wadena Municipal Airport, MN, United States +location = (0.81071028568817716, -1.6617425252342346) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KADC.TXT +zone = ('mnz032', 0.0037419941912806556) + +[kadg] +description = Adrian Lenawee County Airport, MI, United States +location = (0.73071118016829262, -1.4675310127185655) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KADG.TXT +zone = ('miz082', 0.00054285131895381053) + +[kadh] +description = Ada, Ada Municipal Airport, OK, United States +location = (0.60745214988300422, -1.687234028586974) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KADH.TXT +zone = ('okz042', 0.0013454571877463584) + +[kadm] +description = Ardmore, Ardmore Municipal Airport, OK, United States +location = (0.59870126293897707, -1.6933087440112764) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KADM.TXT +zone = ('okz041', 0.0032052986881053029) + +[kads] +description = Dallas / Addison Airport, TX, United States +location = (0.57537687674079729, -1.6900604923478424) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KADS.TXT +zone = ('txz119', 0.0035851349383754882) + +[kadu] +description = Audubon, Audubon County Airport, IA, United States +location = (0.7278216906288798, -1.6566713741298289) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KADU.TXT +zone = ('iaz057', 0.000344450151281342) + +[kadw] +description = Camp Springs / Andrews Air Force Base, MD, United States +location = (0.67747863798246566, -1.3412855301576421) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KADW.TXT +zone = ('mdz013', 0.00026981880102926268) + +[kaeg] +description = Albuquerque, Double Eagle Ii Airport, NM, United States +location = (0.61339596561340703, -1.8639243746673442) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KAEG.TXT +zone = ('nmz519', 0.0025937381442114383) + +[kaej] +description = Buena Vista, CO, United States +location = (0.67743500475116569, -1.8521530984900048) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KAEJ.TXT +zone = ('coz063', 0.0013073358167738779) + +[kael] +description = Albert Lea, Albert Lea Municipal Airport, MN, United States +location = (0.76241799491285622, -1.6295557449453721) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KAEL.TXT +zone = ('mnz093', 0.00027924675501492496) + +[kaex] +description = Alexandria International Airport, LA, United States +location = (0.55065137900421102, -1.6219926515200636) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KAEX.TXT +zone = ('laz018', 0.0038787167413053829) + +[kaff] +description = Air Force Academy, CO, United States +location = (0.6800966318604571, -1.8293959442987231) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KAFF.TXT +zone = ('coz082', 0.0040854999626680029) + +[kafj] +description = Washington, Washington County Airport, PA, United States +location = (0.7004588064670576, -1.4012085011427808) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KAFJ.TXT +zone = ('paz029', 0.0010849706486548295) + +[kafk] +description = Nebraska City, Nebraska City Municipal Airport, NE, United States +location = (0.70860367630969778, -1.6728980880365647) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KAFK.TXT +zone = ('nez091', 0.003698399365556047) + +[kafn] +description = Jaffrey Muni-Silver Ranch, NH, United States +location = (0.74700091985357298, -1.2566370614359172) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KAFN.TXT +zone = ('nhz015', 0.0035605242827042418) + +[kafp] +description = Wadesboro, Anson County Airport, NC, United States +location = (0.61122400032203639, -1.3976063354921369) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KAFP.TXT +zone = ('ncz083', 0.00089527501166781164) + +[kafw] +description = Fort Worth Alliance Airport, TX, United States +location = (0.57566776494946303, -1.6984962503991483) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KAFW.TXT +zone = ('txz118', 0.0037340765214214392) + +[kagc] +description = Pittsburgh Allegheny Cty., PA, United States +location = (0.70424035317971201, -1.3948089605521352) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KAGC.TXT +zone = ('paz021', 0.0022438143824761092) + +[kags] +description = Augusta Bush Field, GA, United States +location = (0.58235819374877462, -1.4305882102180187) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KAGS.TXT +zone = ('gaz065', 0.001562188279558838) + +[kahn] +description = Athens Ben Epps Airport, GA, United States +location = (0.59253928105207498, -1.4544410433286079) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KAHN.TXT +zone = ('gaz036', 0.00049373322939337072) + +[kahq] +description = Wahoo, Ne, US +location = (0.71959925059726204, -1.6859880574265222) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KAHQ.TXT +zone = ('nez051', 0.00049432682105024083) + +[kaia] +description = Alliance Municipal Airport, NE, United States +location = (0.73391095046361554, -1.7941984710501708) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KAIA.TXT +zone = ('nez003', 0.0047387857579710355) + +[kaid] +description = Anderson Municipal, IN, United States +location = (0.70016791825839186, -1.4942927279158118) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KAID.TXT +zone = ('inz040', 0.0015792264056860893) + +[kaig] +description = Antigo, Langlade County Airport, WI, United States +location = (0.78801615727543972, -1.5550883635269475) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KAIG.TXT +zone = ('wiz019', 0.0019919493148268246) + +[kaik] +description = Aiken, Sc, US +location = (0.58730329329609188, -1.4257594659541677) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KAIK.TXT +zone = ('scz030', 0.002010192281629815) + +[kaio] +description = Atlantic, IA, United States +location = (0.72256631032565244, -1.6589354540206103) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KAIO.TXT +zone = ('iaz070', 0.0019978730857214406) + +[kait] +description = Aitkin, Aitkin Municipal Airport-Steve Kurtz Field, MN, United States +location = (0.81245076680336037, -1.6350826209100211) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KAIT.TXT +zone = ('mnz036', 0.0040743722621663526) + +[kaiz] +description = Kaiser Lake Ozark, Lee C Fine Memorial Airport, MO, United States +location = (0.66497044500983959, -1.6153022227207519) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KAIZ.TXT +zone = ('moz057', 0.0026035675487125287) + +[kajg] +description = Mount Carmel, Mount Carmel Municipal Airport, IL, United States +location = (0.67380859841646634, -1.5311191751328923) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KAJG.TXT +zone = ('ilz073', 0.0019828881638404433) + +[kajo] +description = Corona Muni Arpt, CA, US +location = (0.59166661642607765, -2.0525072003453313) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KAJO.TXT +zone = ('caz042', 0.004408089728814229) + +[kajz] +description = Blake Field Airport, Delta, Colorado, United States +location = (0.67695067646551366, -1.8860658152896914) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KAJZ.TXT +zone = ('coz011', 0.002775224522094534) + +[kakh] +description = Gastonia Municipal Airport, NC, United States +location = (0.61435589670200408, -1.4163346879933985) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KAKH.TXT +zone = ('ncz070', 0.0017042236910991253) + +[kako] +description = Colorado Plains Regional, CO, United States +location = (0.70104058288438897, -1.8014706762668138) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KAKO.TXT +zone = ('coz049', 0.0034211896616622795) + +[kakq] +description = Wakefield Municipal Airpor, VA, United States +location = (0.6454809350292362, -1.3439035240356338) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KAKQ.TXT +zone = ('vaz089', 0.0028027370683048549) + +[kakr] +description = Akron Fulton International, OH, United States +location = (0.71616676973500648, -1.4218615639580472) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KAKR.TXT +zone = ('ohz021', 0.0018306324174053624) + +[kalb] +description = Albany International Airport, NY, United States +location = (0.74612825522757587, -1.2880529879718152) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KALB.TXT +zone = ('nyz052', 0.0024516110127244008) + +[kali] +description = Alice International Airport, TX, United States +location = (0.48403797921976072, -1.7107135551631087) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KALI.TXT +zone = ('txz241', 0.0011367077140305563) + +[kalk] +description = Pioneer Airfield, AZ, US +location = (0.55152404363020813, -1.9271925600521387) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KALK.TXT +zone = ('azz513', 0.00055068694867831363) + +[kalm] +description = Alamogordo-White, NM, United States +location = (0.57304977107147159, -1.8497581189053236) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KALM.TXT +zone = ('nmz414', 0.0020283470209188311) + +[kaln] +description = Alton/St. Louis, St. Louis Regional Airport, IL, United States +location = (0.67893307902579414, -1.5716689914208937) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KALN.TXT +zone = ('ilz100', 0.0023182709038734751) + +[kalo] +description = Waterloo Municipal Airport, IA, United States +location = (0.7426375967235872, -1.6126842288427605) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KALO.TXT +zone = ('iaz039', 0.0018249763751588355) + +[kals] +description = San Luis Valley Regional, CO, United States +location = (0.65333491666321064, -1.8477219014446635) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KALS.TXT +zone = ('coz070', 0.0022645102657026166) + +[kalw] +description = Walla Walla Regional Airport, WA, United States +location = (0.80459678516938593, -2.0644336169006259) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KALW.TXT +zone = ('waz029', 0.0037948743930622778) + +[kalx] +description = Alexander City, Thomas C Russell Field Airport, AL, United States +location = (0.57447027515712246, -1.5003335063824366) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KALX.TXT +zone = ('alz037', 0.0025887319307284218) + +[kama] +description = Amarillo International Airport, TX, United States +location = (0.61464678491066971, -1.7752907374868989) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KAMA.TXT +zone = ('txz012', 0.0040943160877601999) + +[kamg] +description = Alma Bacon County Airport, GA, United States +location = (0.55036049079554528, -1.4398966328953218) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KAMG.TXT +zone = ('gaz134', 0.00078826025893624825) + +[kamn] +description = Alma, Gratiot Community Airport, MI, United States +location = (0.75611056892162132, -1.4780805584195089) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KAMN.TXT +zone = ('miz052', 0.0011709567040036827) + +[kamw] +description = Ames Municipal Airport, IA, United States +location = (0.73274739762895269, -1.6339190680753581) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KAMW.TXT +zone = ('iaz048', 0.0021713641455965264) + +[kanb] +description = Anniston Metro Airport, AL, United States +location = (0.58613974046142903, -1.4983651628371317) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KANB.TXT +zone = ('alz019', 0.0033006866597234267) + +[kand] +description = Anderson County Airport, SC, United States +location = (0.60213859193804364, -1.4436781796079763) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KAND.TXT +zone = ('scz010', 0.0011808579815150194) + +[kane] +description = Minneapolis / Blaine, MN, United States +location = (0.78801615727543972, -1.6269377510673808) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KANE.TXT +zone = ('mnz061', 0.0021811036807777824) + +[kanj] +description = Sault Ste. Marie Muni, MI, United States +location = (0.81128721396869752, -1.4721852240572169) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KANJ.TXT +zone = ('miz008', 0.0042031883466101608) + +[kank] +description = Harriet- Alexander F, US +location = (0.67247536079341519, -1.8509216717399863) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KANK.TXT +zone = ('coz062', 0.0028067726558659674) + +[kanw] +description = Ainsworth Municipal, NE, United States +location = (0.74321937314091868, -1.7453292519943295) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KANW.TXT +zone = ('nez008', 0.0028257223980713924) + +[kaoh] +description = Lima Allen County Airport, OH, United States +location = (0.71034900556169223, -1.4663674598839025) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KAOH.TXT +zone = ('ohz025', 0.0017157130252581187) + +[kaoo] +description = Altoona-Blair County Airport, PA, United States +location = (0.70336768855371479, -1.3668836925202257) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KAOO.TXT +zone = ('paz025', 0.003192628478092993) + +[kapa] +description = Denver Centennial Airport, CO, United States +location = (0.69056860737242309, -1.8299777207160544) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KAPA.TXT +zone = ('coz040', 0.0035266154570902835) + +[kapc] +description = Napa County Airport, CA, United States +location = (0.66671577426183393, -2.1342467869803992) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KAPC.TXT +zone = ('caz506', 0.0057370032164178256) + +[kapf] +description = Naples Municipal Airport, FL, United States +location = (0.45640359939651715, -1.4270975517140301) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KAPF.TXT +zone = ('flz069', 0.0034984328383461522) + +[kapg] +description = Phillips Army Air Field / Aberdeen, MD, United States +location = (0.68882327812042876, -1.3293591136023477) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KAPG.TXT +zone = ('mdz007', 0.0030176519869925321) + +[kapn] +description = Alpena County Regional Airport, MI, United States +location = (0.78685260444077698, -1.4585134782499281) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KAPN.TXT +zone = ('miz024', 0.0011408824863625364) + +[kapy] +description = Zapata, Tx, US +location = (0.47071529926287065, -1.732239282604372) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KAPY.TXT +zone = ('txz248', 0.0013754153606459895) + +[kaqo] +description = Llano, Llano Municipal Airport, TX, United States +location = (0.53727536954239896, -1.7219757769752833) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KAQO.TXT +zone = ('txz171', 0.0014011693793941156) + +[kaqp] +description = Appleton, Appleton Municipal Airport, MN, United States +location = (0.78936878744573535, -1.6755888039667228) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KAQP.TXT +zone = ('mnz054', 0.0045547745141809315) + +[kaqr] +description = Atoka, Atoka Municipal Airport, FL, United States +location = (0.60036417386518282, -1.6781001388348702) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KAQR.TXT +zone = ('okz048', 0.0016452184572710246) + +[kaqv] +description = Ft. Polk, Peason Ridge, LA, United States +location = (0.55268759646487109, -1.631010185988701) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KAQV.TXT +zone = ('laz017', 0.0023732720900053457) + +[kaqw] +description = N Adams Harriman-And-West, MA, United States +location = (0.74525559060157875, -1.276999236042518) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KAQW.TXT +zone = ('maz001', 0.0024509071806547347) + +[kara] +description = New Iberia Acadiana Regional, LA, United States +location = (0.5241805520156303, -1.6036666943741233) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KARA.TXT +zone = ('laz053', 0.0033513673078716844) + +[karb] +description = Ann Arbor Municipal Airport, MI, United States +location = (0.73681983255027284, -1.4617132485452511) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KARB.TXT +zone = ('miz075', 0.0013110713388839715) + +[karg] +description = Walnut Ridge, Walnut Ridge Regional Airport, AR, United States +location = (0.63064563638728444, -1.5867951782715113) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KARG.TXT +zone = ('arz017', 0.003129603689895229) + +[karm] +description = Wharton, Wharton Regional Airport, TX, United States +location = (0.51058152826050784, -1.6782067978447144) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KARM.TXT +zone = ('txz226', 0.0011141829377943363) + +[karr] +description = Chicago Aurora Municipal, IL, United States +location = (0.72896585091629829, -1.5440346115976502) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KARR.TXT +zone = ('ilz012', 0.003048012943214337) + +[kart] +description = Watertown International Airport, NY, United States +location = (0.76765398266883933, -1.3270320079330218) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KART.TXT +zone = ('nyz007', 0.0018434669168991074) + +[karv] +description = Minocqua/Woodruff, Lakeland Airport/Noble F. Lee Memorial Field, WI, United States +location = (0.80168790308272864, -1.5661421154562452) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KARV.TXT +zone = ('wiz005', 0.0033729108194530438) + +[karw] +description = Beaufort, Sc, US +location = (0.56566121057136209, -1.4070844429578286) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KARW.TXT +zone = ('scz048', 0.0014245485133719585) + +[kasd] +description = Slidell Airport, LA, United States +location = (0.52970742798027903, -1.5675965564995735) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KASD.TXT +zone = ('laz040', 0.0025267027821754382) + +[kase] +description = Aspen-Pitkin County Airport, CO, United States +location = (0.68475084319910862, -1.8651751939646066) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KASE.TXT +zone = ('coz010', 0.0035941114467508781) + +[kasg] +description = Springdale Municipal, AR, United States +location = (0.63151830101328155, -1.6426457143353297) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KASG.TXT +zone = ('arz001', 0.0033641506515783353) + +[kash] +description = Nashua, Boire Field Airport, NH, United States +location = (0.74668094282404074, -1.2481673664269337) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KASH.TXT +zone = ('nhz012', 0.0013239242268389486) + +[kasj] +description = Ahoskie, Tri-County Airport, NC, United States +location = (0.63351088524264176, -1.3468851281744574) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KASJ.TXT +zone = ('ncz013', 0.002840490672009941) + +[kasl] +description = Marshall, Tx, US +location = (0.56758107274855607, -1.6458454846306527) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KASL.TXT +zone = ('txz138', 0.0011595894407562994) + +[kast] +description = Port Of Astoria Airport, OR, United States +location = (0.80546944979538304, -2.1621720550123089) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KAST.TXT +zone = ('waz021', 0.0059462859021083914) + +[kasw] +description = Warsaw, Warsaw Municipal Airport, IN, United States +location = (0.72037495248703731, -1.4981906299119323) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KASW.TXT +zone = ('inz016', 0.00059518699132721806) + +[kasx] +description = Ashland Kennedy Memorial, WI, United States +location = (0.81245076680336037, -1.5867951782715113) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KASX.TXT +zone = ('wiz002', 0.0034387045122795121) + +[katl] +description = Hartsfield-Jackson Atlanta, GA, United States +location = (0.58730329329609188, -1.4736396651005457) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KATL.TXT +zone = ('gaz055', 0.0021837237570136885) + +[katp] +description = Atlantis, LA, United States +location = (0.4746519863534801, -1.5712665960655727) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KATP.TXT +zone = ('laz067', 0.038178226389467058) + +[kats] +description = Artesia, Artesia Municipal Airport, NM, United States +location = (0.57338429251143708, -1.8233018363271762) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KATS.TXT +zone = ('nmz028', 0.0069205735947242717) + +[katt] +description = Camp Mabry/Austin City Asos, TX, United States +location = (0.52912565156294755, -1.7063502320331227) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KATT.TXT +zone = ('txz192', 0.00038952366093357785) + +[katw] +description = Appleton / Outagamie, WI, United States +location = (0.77230819400749084, -1.5449072762236473) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KATW.TXT +zone = ('wiz038', 0.0029701530627802481) + +[katy] +description = Watertown Municipal Airport, SD, United States +location = (0.78365283414545395, -1.6955873683124913) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KATY.TXT +zone = ('sdz020', 0.0014391727649453949) + +[kaug] +description = Augusta State Airport, ME, United States +location = (0.77347174684215381, -1.2182398178920419) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KAUG.TXT +zone = ('mez021', 0.001667754498559292) + +[kauh] +description = Aurora, Aurora Municipal Airport, NE, United States +location = (0.7137330050558367, -1.7103257042182209) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KAUH.TXT +zone = ('nez063', 0.00052116195939880478) + +[kaum] +description = Austin Municipal, MN, United States +location = (0.76212710670419048, -1.6219926515200636) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KAUM.TXT +zone = ('mnz094', 0.0022844553567015037) + +[kaun] +description = Auburn, Auburn Municipal Airport, CA, United States +location = (0.67980574365179136, -2.1130119477478018) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KAUN.TXT +zone = ('caz067', 0.0070459979762467241) + +[kauo] +description = Auburn-Opelika Airport, AL, United States +location = (0.56926822435881719, -1.491092957620489) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KAUO.TXT +zone = ('alz047', 0.0011742916244402593) + +[kaus] +description = Austin-Bergstrom International Airport, TX, United States +location = (0.52679854589362185, -1.7048957909897944) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KAUS.TXT +zone = ('txz192', 0.0030310628566801311) + +[kauw] +description = Wausau Downtown Airport, WI, United States +location = (0.78423461056278532, -1.5641058979955849) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KAUW.TXT +zone = ('wiz030', 0.0018623967709102821) + +[kavc] +description = South Hill, Mecklenburg-Brunswick Regional Airport, VA, United States +location = (0.64033706187266393, -1.3623022032337406) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KAVC.TXT +zone = ('vaz079', 0.0030367558051346993) + +[kavk] +description = Alva, Alva Regional Airport, OK, United States +location = (0.641810895463237, -1.7221163729428051) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KAVK.TXT +zone = ('okz005', 0.0027297832170878659) + +[kavl] +description = Asheville Regional Airport, NC, United States +location = (0.618428331623324, -1.4404784093126533) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KAVL.TXT +zone = ('ncz065', 0.0018579878489620894) + +[kavp] +description = Wilkes-Barre/Scranton International, PA, United States +location = (0.72140275749098959, -1.3217960201770389) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KAVP.TXT +zone = ('paz044', 0.0024322716781504301) + +[kavx] +description = Avalon Catalina Airport, CA, United States +location = (0.58293997016610599, -2.0667607225699518) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KAVX.TXT +zone = ('caz087', 0.00039502283656503689) + +[kawg] +description = Washington, IA, United States +location = (0.72053009286499237, -1.5998851476614688) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KAWG.TXT +zone = ('iaz077', 0.0011328297513142479) + +[kawm] +description = West Memphis Municipal Airport, AR, United States +location = (0.61319234386734112, -1.5748687617162167) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KAWM.TXT +zone = ('arz036', 0.0016899864772721817) + +[kawo] +description = Arlington Municipal, WA, United States +location = (0.84066692304393531, -2.1322105695197395) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KAWO.TXT +zone = ('waz507', 0.002202927385004536) + +[kaxa] +description = Algona, IA, United States +location = (0.75194601940089034, -1.6452637082133212) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KAXA.TXT +zone = ('iaz005', 0.00224348946154797) + +[kaxh] +description = Houston, Tx, US +location = (0.51504666226352669, -1.6664403698041859) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KAXH.TXT +zone = ('txz227', 0.0044255147037705568) + +[kaxn] +description = Chandler Field, MN, United States +location = (0.80052435024806579, -1.6650441064025905) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KAXN.TXT +zone = ('mnz041', 0.0013382965952027424) + +[kaxo] +description = Grand Isle Supplementary Aviation Weather Reporting Station, LA, United States +location = (0.51050880620834138, -1.5702145503775651) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KAXO.TXT +zone = ('laz068', 0.0046793861080791747) + +[kaxs] +description = Altus, Altus/Quartz Mountain Regional Airport, OK, United States +location = (0.60560500975797682, -1.7337761419734894) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KAXS.TXT +zone = ('okz036', 0.002222186166461746) + +[kaxx] +description = Angel Fire, NM, US +location = (0.63564891357633491, -1.8374826364996302) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KAXX.TXT +zone = ('nmz515', 0.0038324205310715006) + +[kays] +description = Waycross / Ware County, Ga, GA, United States +location = (0.54541539124822802, -1.4381513036433275) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KAYS.TXT +zone = ('gaz151', 0.0033710525438409118) + +[kazo] +description = Kalamazoo/Battle Creek Airport, MI, United States +location = (0.73711072075893858, -1.4931291750811488) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KAZO.TXT +zone = ('miz072', 0.00032150442581426884) + +[kbab] +description = Marysville, Beale Air Force Base, CA, United States +location = (0.68300551394711428, -2.1194114883384474) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBAB.TXT +zone = ('caz016', 0.0078949047222386989) + +[kbac] +description = Barnes County Municipal Airport, ND, United States +location = (0.81927694343338253, -1.7107377958471641) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBAC.TXT +zone = ('ndz038', 0.00064404390446479198) + +[kbad] +description = Barksdale Air Force Base, LA, United States +location = (0.56723200689815712, -1.6347917327013555) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBAD.TXT +zone = ('laz002', 0.0032589753068099948) + +[kbaf] +description = Westfield Barnes Municipal, MA, United States +location = (0.73594716792427561, -1.2691452544085433) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBAF.TXT +zone = ('maz009', 0.0028037454317211999) + +[kbak] +description = Columbus / Bakalar, IN, United States +location = (0.6853326196164401, -1.4992378274631293) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBAK.TXT +zone = ('inz064', 0.0010610340642071253) + +[kban] +description = Mcmwtc Bridgeport, Ca, CA +location = (0.66933376813982537, -2.0859593443418896) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBAN.TXT +zone = ('caz073', 0.011235076654846693) + +[kbax] +description = Bad Axe, Huron County Memorial Airport, MI, United States +location = (0.76411969093355081, -1.4483711760411164) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBAX.TXT +zone = ('miz049', 0.0010095482927967891) + +[kbaz] +description = New Braunfels Municipal Airport, TX, United States +location = (0.51865367605098156, -1.71129533158044) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBAZ.TXT +zone = ('txz207', 0.0027945114103336568) + +[kbbb] +description = Benson Municipal, MN, United States +location = (0.79092503936209702, -1.6694074295325763) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBBB.TXT +zone = ('mnz055', 0.00070714001080932152) + +[kbbd] +description = Brady, Curtis Field Airport, TX, United States +location = (0.54417911636139871, -1.7335288869961234) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBBD.TXT +zone = ('txz154', 0.00049284509196381189) + +[kbbf] +description = Brazos 133, TX, United States +location = (0.4858123972926216, -1.6757439443446778) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBBF.TXT +zone = ('txz247', 0.015064783408414988) + +[kbbg] +description = Branson, MO, US +location = (0.63756877575352855, -1.6266468628587152) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBBG.TXT +zone = ('moz104', 0.0031146820795120477) + +[kbbp] +description = Marlboro County Jetport, SC, US +location = (0.60423298704043682, -1.391551012615079) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBBP.TXT +zone = ('scz017', 0.00080239505970705995) + +[kbbw] +description = Broken Bow Municipal Airport, NE, United States +location = (0.72314808674298381, -1.7389297114036837) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBBW.TXT +zone = ('nez038', 0.001392293195365201) + +[kbcb] +description = Virginia Tech Airport, VA, United States +location = (0.64955336995055635, -1.4035356068121068) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBCB.TXT +zone = ('vaz014', 0.00085194237093441899) + +[kbce] +description = Bryce Canyon Airport, UT, United States +location = (0.65798912800186227, -1.9573867561116407) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBCE.TXT +zone = ('utz518', 0.0046314130879638636) + +[kbck] +description = Black River Falls Ar, US +location = (0.77230819400749084, -1.5856316254368483) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBCK.TXT +zone = ('wiz034', 0.0013295914018765201) + +[kbct] +description = Boca Raton, Boca Raton Airport, FL, United States +location = (0.4603936159920487, -1.3981444786781685) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBCT.TXT +zone = ('flz172', 0.0040043584308169988) + +[kbde] +description = Baudette International Airport, MN, United States +location = (0.85055712213856993, -1.6513723605953015) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBDE.TXT +zone = ('mnz006', 0.003386612556345152) + +[kbdh] +description = Willmar Muni Arpt, MN, US +location = (0.78749255849984146, -1.6603317174222056) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBDH.TXT +zone = ('mnz057', 0.0016419101802871029) + +[kbdl] +description = Bradley International Airport, CT, United States +location = (0.73187473300295547, -1.2685634779912118) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBDL.TXT +zone = ('ctz002', 0.0023068049553633487) + +[kbdn] +description = Bend, Or, US +location = (0.76951566720429998, -2.1153390534171272) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBDN.TXT +zone = ('orz509', 0.0053343489039915162) + +[kbdr] +description = Sikorsky Memorial Airport, CT, United States +location = (0.71849387540433229, -1.2764174596251865) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBDR.TXT +zone = ('ctz005', 0.0044326170523081489) + +[kbdu] +description = Boulder Muni, Co, US +location = (0.69865529957333017, -1.8366099718736331) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBDU.TXT +zone = ('coz039', 0.0015640185212752501) + +[kbea] +description = Beevile Muni Arpt, TX, US +location = (0.49497537586559187, -1.706757475525255) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBEA.TXT +zone = ('txz232', 0.0012510331033648656) + +[kbed] +description = Bedford Hanscom Field, MA, United States +location = (0.74118315568025861, -1.2444197566719568) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBED.TXT +zone = ('maz005', 0.0010278280693411142) + +[kbeh] +description = Southwest Michigan Regional, MI, United States +location = (0.73536539150694413, -1.5082553619317665) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBEH.TXT +zone = ('miz077', 0.0031199985443309238) + +[kbfd] +description = Bradford Regional Airport, PA, United States +location = (0.72954762733362966, -1.3724105684848746) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBFD.TXT +zone = ('paz005', 0.00084798961812331854) + +[kbff] +description = Scottsbluff Heilig Field, NE, United States +location = (0.73071118016829262, -1.8081611050661253) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBFF.TXT +zone = ('nez019', 0.0014316339491431264) + +[kbfi] +description = Seattle Boeing Field, WA, United States +location = (0.82990405932330369, -2.1348285633977309) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBFI.TXT +zone = ('waz508', 0.0016495019601255117) + +[kbfl] +description = Bakersfield Meadows Field, CA, United States +location = (0.618428331623324, -2.0778144744992493) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBFL.TXT +zone = ('caz092', 0.0063440804838707345) + +[kbfm] +description = Mobile Downtown Airport, AL, United States +location = (0.53465252752759629, -1.5370532945896729) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBFM.TXT +zone = ('alz063', 0.0031396287149531616) + +[kbfw] +description = Silver Bay, MN, United States +location = (0.82379540694132358, -1.5952309363228172) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBFW.TXT +zone = ('mnz020', 0.0015396094116007779) + +[kbgd] +description = Borger Hutchinson Co Airport, TX, United States +location = (0.62308254296197574, -1.7697638615222502) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBGD.TXT +zone = ('txz008', 0.0025262658355981243) + +[kbge] +description = Bainbridge, Decatur County Industrial Air Park Airport, GA, United States +location = (0.54047029170091065, -1.4771303236045343) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBGE.TXT +zone = ('gaz156', 0.0017472193384307528) + +[kbgf] +description = Winchester Municipal Airport, Winchester, Tennessee, United States +location = (0.61396368282183733, -1.5021379834853026) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBGF.TXT +zone = ('tnz097', 0.00054215818830343138) + +[kbgm] +description = Binghamton Regional Airport, NY, United States +location = (0.73652894434160709, -1.3261593433070247) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBGM.TXT +zone = ('nyz056', 0.0022286722009413709) + +[kbgr] +description = Bangor Int'L Airport, ME, United States +location = (0.78190750489345962, -1.2010774135807645) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBGR.TXT +zone = ('mez015', 0.0024012372604524795) + +[kbhb] +description = Bar Harbor, Hancock County-Bar Harbor Airport, ME, United States +location = (0.77579885251147951, -1.1932234319467898) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBHB.TXT +zone = ('mez029', 0.00041892664291282445) + +[kbhk] +description = Baker Municipal Airport, MT, United States +location = (0.80896010829937182, -1.8195057452040886) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBHK.TXT +zone = ('mtz033', 0.0020362283485057873) + +[kbhm] +description = Birmingham Int'L Airport, AL, United States +location = (0.5858488522527634, -1.5140731261050808) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBHM.TXT +zone = ('alz024', 0.0021415820676353192) + +[kbid] +description = Block Island, Block Island State Airport, RI, United States +location = (0.71849387540433229, -1.2490739680106084) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBID.TXT +zone = ('riz008', 0.00025158491881671771) + +[kbie] +description = Beatrice Municipal, NE, United States +location = (0.70336768855371479, -1.6886060513045138) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBIE.TXT +zone = ('nez089', 0.0010466082824967758) + +[kbif] +description = Biggs Army Air Field / Ft. Bliss, TX, United States +location = (0.55588736676019401, -1.8567394359133009) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBIF.TXT +zone = ('txz419', 0.0013420087340016947) + +[kbih] +description = Bishop Airport, CA, United States +location = (0.65217136382854779, -2.0658880579439547) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBIH.TXT +zone = ('caz521', 0.0077100942945273207) + +[kbij] +description = Early Cnty Arpt, GA, US +location = (0.54803338512621946, -1.4816100020179863) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBIJ.TXT +zone = ('gaz142', 0.0013610506322850862) + +[kbil] +description = Logan International Airport, MT, United States +location = (0.79965168562206868, -1.8945549030398448) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBIL.TXT +zone = ('mtz035', 0.0039547607790922923) + +[kbis] +description = Bismarck Municipal Airport, ND, United States +location = (0.81652320172468051, -1.7584192213842871) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBIS.TXT +zone = ('ndz035', 0.004767183374700174) + +[kbiv] +description = Holland Tulip City Airport, MI, United States +location = (0.74612825522757587, -1.5027284859671177) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBIV.TXT +zone = ('miz064', 0.0038788425724991821) + +[kbix] +description = Keesler Air Force Base / Biloxi, MS, United States +location = (0.53087098081494188, -1.5518885932316249) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBIX.TXT +zone = ('msz081', 0.0034821241360940298) + +[kbjc] +description = Broomfield / Jeffco, CO, United States +location = (0.6966772597544032, -1.834631932054706) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBJC.TXT +zone = ('coz039', 0.00093005765139049892) + +[kbji] +description = Bemidji, MN, United States +location = (0.82903139469730658, -1.6568992365599502) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBJI.TXT +zone = ('mnz017', 0.0027633946760468858) + +[kbjj] +description = Wooster Wayne County Airport, OH, United States +location = (0.7132578876483493, -1.4291337691746904) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBJJ.TXT +zone = ('ohz031', 0.00066240623830784962) + +[kbjn] +description = Las Vegas, Tonopah Range #74 Nellis Afb, NV, United States +location = (0.65654438323215591, -2.0291925104207742) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBJN.TXT +zone = ('nvz040', 0.0080290706243569699) + +[kbkb] +description = Ft. Polk, Fullerton Landing Strip, LA, United States +location = (0.54105206811824214, -1.6339190680753581) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBKB.TXT +zone = ('txz260', 0.0025808828869718038) + +[kbkd] +description = Breckenridge, Tx, US +location = (0.57107173125254462, -1.7259560972971926) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBKD.TXT +zone = ('txz115', 0.00083724805299981706) + +[kbke] +description = Baker Municipal Airport, OR, United States +location = (0.7824892813107911, -2.056288747057986) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBKE.TXT +zone = ('orz062', 0.0027860350303022122) + +[kbkf] +description = Aurora, Buckley Air Force Base Airport, CO, United States +location = (0.69307024596694833, -1.8283729874315819) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBKF.TXT +zone = ('coz040', 0.0011497451453225411) + +[kbkl] +description = Cleveland Burke Lakefront, OH, United States +location = (0.72489341599497814, -1.4253522224620359) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBKL.TXT +zone = ('ohz011', 0.0019058397909068815) + +[kbkn] +description = Blackwell Tonkawa, OK, US +location = (0.64140850010791606, -1.6990780268164798) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBKN.TXT +zone = ('okz008', 0.0031158161632687201) + +[kbks] +description = Falfurrias, Brooks County Airport, TX, United States +location = (0.47484591182592395, -1.7125364546040804) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBKS.TXT +zone = ('txz250', 0.0034109017113602889) + +[kbkv] +description = Brooksville Hernando Co Airport, FL, United States +location = (0.49683706040105247, -1.4390239682693247) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBKV.TXT +zone = ('flz048', 0.0015681604236447439) + +[kbkw] +description = Raleigh County Mem Airport, WV, United States +location = (0.65973445725385649, -1.415752911576067) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBKW.TXT +zone = ('wvz035', 0.0018870363739723203) + +[kbkx] +description = Brookings, Brookings Municipal Airport, SD, United States +location = (0.77318085863348796, -1.6897696041391768) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBKX.TXT +zone = ('sdz040', 0.0012595891387121459) + +[kblf] +description = Bluefield Mercer County Airport, WV, United States +location = (0.65100781099388483, -1.4172073526193956) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBLF.TXT +zone = ('wvz042', 0.0022139251357183439) + +[kblh] +description = Blythe Airport, CA, United States +location = (0.58672151687876051, -2.0021835402461616) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBLH.TXT +zone = ('azz020', 0.0035844154075759583) + +[kbli] +description = Bellingham International Airport, WA, United States +location = (0.85172067497323278, -2.1386101101103852) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBLI.TXT +zone = ('waz503', 0.001212086327576976) + +[kblm] +description = Belmar-Farmingdale, NJ, United States +location = (0.70133147109305471, -1.2938707521451298) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBLM.TXT +zone = ('njz014', 0.0018735268100695372) + +[kblu] +description = Blue Canyon Airport, CA, United States +location = (0.68562350782510573, -2.1066124071571557) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBLU.TXT +zone = ('caz069', 0.0099901667273657041) + +[kblv] +description = Belleville, Scott Afb/Midamerica Airport, IL, United States +location = (0.67282442664381403, -1.568178332916905) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBLV.TXT +zone = ('ilz101', 0.0017553921365082085) + +[kbmg] +description = Monroe County Airport, IN, United States +location = (0.68329640215578002, -1.5117460204357549) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBMG.TXT +zone = ('inz062', 0.0012805327029299497) + +[kbmi] +description = Bloomington/Normal, Central Illinois Regional Airport At Bloomington-Normal, IL, United States +location = (0.70645595170238262, -1.5518740488211915) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBMI.TXT +zone = ('ilz038', 0.00094135607059528197) + +[kbml] +description = Berlin Municipal Airport, NH, United States +location = (0.77812595818080532, -1.242383539211297) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBML.TXT +zone = ('nhz002', 0.0026117370840842294) + +[kbmq] +description = Burnet Municipal Craddock Field, TX, United States +location = (0.53639785677959062, -1.714495101875763) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBMQ.TXT +zone = ('txz172', 0.0012263257105939243) + +[kbmt] +description = Beaumont, Tx, US +location = (0.52482050607469488, -1.6444492212290573) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBMT.TXT +zone = ('txz215', 0.0033291836170529702) + +[kbna] +description = Nashville International Airport, TN, United States +location = (0.6303547481786187, -1.5129095732704181) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBNA.TXT +zone = ('tnz027', 0.0017006727875043992) + +[kbnl] +description = Barnwell, Sc, US +location = (0.58032197628811455, -1.4205234781981848) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBNL.TXT +zone = ('scz035', 0.00071434568549675844) + +[kbno] +description = Burns Municipal Airport, OR, United States +location = (0.76096355386952774, -2.0760691452472551) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBNO.TXT +zone = ('orz061', 0.0093577243971584602) + +[kbnw] +description = Boone Municipal, IA, United States +location = (0.73391095046361554, -1.6379915029966783) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBNW.TXT +zone = ('iaz047', 0.0010857382737043545) + +[kboi] +description = Boise Air Terminal, ID, United States +location = (0.76038177745219626, -2.0286543672347426) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBOI.TXT +zone = ('idz012', 0.0070402350364508551) + +[kbok] +description = Brookings, Brookings Airport, OR, United States +location = (0.73433758650299197, -2.1692697273037522) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBOK.TXT +zone = ('orz022', 0.0046718901360436058) + +[kbos] +description = Boston Logan International, MA, United States +location = (0.73943782642826428, -1.2394746571246398) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBOS.TXT +zone = ('maz015', 0.0010560168284349976) + +[kbow] +description = Bartow Municipal, FL, United States +location = (0.48781952593241512, -1.4273884399226957) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBOW.TXT +zone = ('flz052', 0.0013188555072179812) + +[kbpc] +description = Pampa, TX, US +location = (0.62622413561556545, -1.7633061432898711) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBPC.TXT +zone = ('txz009', 0.0031482947631410064) + +[kbpg] +description = Big Spring, Big Spring Mcmahon-Wrinkle Airport, TX, United States +location = (0.56199601914217412, -1.7718000789829103) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBPG.TXT +zone = ('txz052', 0.0022070127310512624) + +[kbpi] +description = Big Piney-Marbleton Airport, WY, United States +location = (0.74321937314091868, -1.9216075064457567) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBPI.TXT +zone = ('wyz026', 0.0059226626651211868) + +[kbpk] +description = Ozark Regional Airport, AR, United States +location = (0.63471807130860447, -1.6138477816774235) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBPK.TXT +zone = ('arz005', 0.0022908453352082779) + +[kbpt] +description = Southeast Texas Rgnl Airport, TX, United States +location = (0.53377986290159907, -1.6429366025439958) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBPT.TXT +zone = ('txz261', 0.004057151456914084) + +[kbqk] +description = Brunswick / Glynco, GA, United States +location = (0.54541539124822802, -1.4218615639580472) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBQK.TXT +zone = ('gaz154', 0.00095765962781261616) + +[kbqp] +description = Morehouse Mem Arpt/Bastrop, LA, US +location = (0.57176986295334231, -1.6036085167323899) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBQP.TXT +zone = ('laz007', 0.0015603861239151175) + +[kbrd] +description = Brainerd-Crow Wing Co Airport, MN, United States +location = (0.80983277292536893, -1.6429366025439958) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBRD.TXT +zone = ('mnz034', 0.0016223784412865232) + +[kbrl] +description = Burlington Regional Airport, IA, United States +location = (0.71151255839635497, -1.5905767249841658) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBRL.TXT +zone = ('iaz089', 0.0028050625190361705) + +[kbro] +description = Brownsville/South Padre Is, TX, United States +location = (0.45204027626653132, -1.7002415796511428) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBRO.TXT +zone = ('txz255', 0.0046127938864528855) + +[kbta] +description = Blair Muni Airport, NE, US +location = (0.72291537617605128, -1.6776104770169495) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBTA.TXT +zone = ('nez052', 0.0022225926167698524) + +[kbtl] +description = W.K.Kellogg Regional Airport, MI, United States +location = (0.73827427359360132, -1.487893187325166) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBTL.TXT +zone = ('miz073', 0.0032922617350428802) + +[kbtm] +description = Bert Mooney Airport, MT, United States +location = (0.80226967950006023, -1.9634954084936207) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBTM.TXT +zone = ('mtz052', 0.0058554782218467336) + +[kbtp] +description = Butler, Butler County Airport/K W Scholter Field, PA, United States +location = (0.71180344660502071, -1.3953907369694665) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBTP.TXT +zone = ('paz014', 0.0022930578198136174) + +[kbtr] +description = Baton Rouge Metro Ryan Field, LA, United States +location = (0.53290719827560196, -1.5908676131928314) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBTR.TXT +zone = ('laz048', 0.00082086682517731728) + +[kbtv] +description = Burlington International, VT, United States +location = (0.77608974072014525, -1.2767083478338521) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBTV.TXT +zone = ('vtz005', 0.00023362304036205609) + +[kbuf] +description = Greater Buffalo International Airport, NY, United States +location = (0.74932802552289879, -1.3741558977368689) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBUF.TXT +zone = ('nyz010', 0.00052934058656521025) + +[kbur] +description = Burbank-Glendale-Pasadena, CA, United States +location = (0.59690260418206076, -2.0658880579439547) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBUR.TXT +zone = ('caz547', 0.0016362350566743236) + +[kbuu] +description = Burlington, Burlington Municipal Airport, WI, United States +location = (0.74509075395000146, -1.5412081478367816) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBUU.TXT +zone = ('wiz071', 0.0033526222223721216) + +[kbuy] +description = Burlington Alamance Regional, NC, United States +location = (0.62890030713528999, -1.3869549789181606) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBUY.TXT +zone = ('ncz023', 0.00096603708533151463) + +[kbve] +description = Boothville, LA, United States +location = (0.51196324725166997, -1.5603243512829308) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBVE.TXT +zone = ('laz069', 0.0047602543966678715) + +[kbvi] +description = Beaver Falls Airport, PA, United States +location = (0.71151255839635497, -1.4032447186034411) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBVI.TXT +zone = ('paz020', 0.0016179947695380856) + +[kbvn] +description = Albion, Albion Municipal Airport, NE, United States +location = (0.72829680803636709, -1.711392294316662) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBVN.TXT +zone = ('nez030', 0.00040577879397637041) + +[kbvo] +description = Bartlesville Municipal Airport, OK, United States +location = (0.6416993883165818, -1.6758069701232221) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBVO.TXT +zone = ('okz055', 0.0018089617235742467) + +[kbvs] +description = Burlington/Mount Vernon, Skagit Regional Airport, WA, United States +location = (0.84597563285208488, -2.1366466147018914) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBVS.TXT +zone = ('waz506', 0.00063468170673230766) + +[kbvu] +description = Boulder City Muni, US +location = (0.62727133316676198, -2.004685178840687) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBVU.TXT +zone = ('nvz021', 0.0037672851956314451) + +[kbvx] +description = Batesville, Batesville Regional Airport, AR, United States +location = (0.62366431937930711, -1.5995942594528032) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBVX.TXT +zone = ('arz016', 0.0011450892039427635) + +[kbvy] +description = Beverly Municipal Airport, MA, United States +location = (0.74321937314091868, -1.2377293278726456) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBVY.TXT +zone = ('maz007', 0.0011333004681379254) + +[kbwd] +description = Brownwood, Brownwood Regional Airport, TX, United States +location = (0.55501470213419679, -1.7270032948483891) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBWD.TXT +zone = ('txz140', 0.00086431068888255871) + +[kbwg] +description = Bowling Green-Warren Co Rgnl, KY, United States +location = (0.64519004682057057, -1.5082553619317665) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBWG.TXT +zone = ('kyz071', 0.0004807719270451434) + +[kbwi] +description = Baltimore-Washington International, MD, United States +location = (0.68358729036444565, -1.3383766480709851) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBWI.TXT +zone = ('mdz011', 0.0030396578577266621) + +[kbwp] +description = Wahpeton, Harry Stern Airport, ND, United States +location = (0.80710812003753329, -1.6861141089836107) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBWP.TXT +zone = ('mnz029', 0.0025883094383786455) + +[kbxk] +description = Buckeye, Az, US +location = (0.58311450309130541, -1.9668115340724099) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBXK.TXT +zone = ('azz022', 0.0056121427175386679) + +[kbyg] +description = Buffalo Johnson County Airport, WY, United States +location = (0.77463529967681655, -1.8625572000866153) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBYG.TXT +zone = ('wyz010', 0.0035874327233398509) + +[kbyh] +description = Eaker Air Force Base, AR, United States +location = (0.62773675430062725, -1.5699236621688994) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBYH.TXT +zone = ('arz028', 0.0038324836600060331) + +[kbyi] +description = Burley Municipal Airport, ID, United States +location = (0.7426375967235872, -1.9856029123522156) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBYI.TXT +zone = ('idz017', 0.0072383499076653047) + +[kbys] +description = Fort Irwin/Barstow, Bicycle Lake Army Airfield, CA, United States +location = (0.61581033774533256, -2.035344796034054) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBYS.TXT +zone = ('caz523', 0.0054812378098818828) + +[kbyy] +description = Bay City, Bay City Municipal Airport, TX, United States +location = (0.50567521380767932, -1.6731307986034973) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBYY.TXT +zone = ('txz236', 0.0026375045708797954) + +[kbzn] +description = Bozeman Gallatin Field, MT, United States +location = (0.79906990920473719, -1.9399334635916974) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KBZN.TXT +zone = ('mtz055', 0.0037642456134602265) + +[kc09] +description = Morris, Morris Municipal-James R Washburn Field Airport, IL, United States +location = (0.723007490775462, -1.5431958839293309) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KC09.TXT +zone = ('ilz021', 0.0024500548512902845) + +[kc29] +description = Morey Fld Ap, Middleton, US +location = (0.7524114405347555, -1.5625932793105233) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KC29.TXT +zone = ('wiz063', 0.0016061870031622196) + +[kc75] +description = Lacon, Marshall County Airport, IL, United States +location = (0.7159195147576406, -1.5600867925791873) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KC75.TXT +zone = ('ilz030', 0.0005998777769292351) + +[kcad] +description = Cadillac / Wexford County, MI, United States +location = (0.77288997042482221, -1.4908020694118231) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCAD.TXT +zone = ('miz032', 0.0022379938068931154) + +[kcae] +description = Columbia Metropolitan Airport, SC, United States +location = (0.59253928105207498, -1.415752911576067) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCAE.TXT +zone = ('scz027', 0.0024019712886860661) + +[kcag] +description = Craig Moffat Airport, CO, United States +location = (0.70685834705770345, -1.87651983410257) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCAG.TXT +zone = ('coz002', 0.0055258402817506174) + +[kcak] +description = Akron-Canton Regional Airport, OH, United States +location = (0.71413055227434652, -1.4215706757493816) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCAK.TXT +zone = ('ohz032', 0.0021108091221680291) + +[kcao] +description = Clayton Municipal Airpark, NM, United States +location = (0.63617251235193317, -1.800307123432151) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCAO.TXT +zone = ('nmz530', 0.0038285316441298454) + +[kcar] +description = Caribou Municipal Airport, ME, United States +location = (0.81797764276800911, -1.1871147795648098) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCAR.TXT +zone = ('mez002', 0.003433903273763003) + +[kcav] +description = Clarion, IA, United States +location = (0.74612825522757587, -1.6365370619533497) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCAV.TXT +zone = ('iaz025', 0.00049968697001080275) + +[kcbe] +description = Cumberland, Greater Cumberland Regional Airport, MD, United States +location = (0.69141703131436472, -1.3746358632811673) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCBE.TXT +zone = ('mdz502', 0.0022182600346247047) + +[kcbf] +description = Council Bluffs, IA, United States +location = (0.72023920465632663, -1.6714436469932363) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCBF.TXT +zone = ('iaz069', 0.0031836540268230353) + +[kcbg] +description = Cambridge Municipal, MN, United States +location = (0.7952883624920829, -1.6278104156933779) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCBG.TXT +zone = ('mnz052', 0.0003601283403708889) + +[kcbk] +description = Colby-Shaltz, Ks, US +location = (0.68818332406136418, -1.76365520914027) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCBK.TXT +zone = ('ksz014', 0.0013825473098612183) + +[kcbm] +description = Columbus Air Force Base, MS, United States +location = (0.58730329329609188, -1.5437437233889846) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCBM.TXT +zone = ('msz031', 0.0030925136611267378) + +[kcca] +description = Clinton Muni Arpt, AR, US +location = (0.6213372137099813, -1.6135568934687576) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCCA.TXT +zone = ('arz023', 0.00099145629609664844) + +[kccr] +description = Concord Buchanan Field, CA, United States +location = (0.66322511575784526, -2.130174352059079) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCCR.TXT +zone = ('caz510', 0.0031358657136249662) + +[kccu] +description = Copper Mountain, Red Cliff Pass, CO, United States +location = (0.688832974394051, -1.8526718491287921) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCCU.TXT +zone = ('coz058', 0.0038112847020310139) + +[kccy] +description = Charles City, IA, United States +location = (0.7516551311922246, -1.6164657755554148) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCCY.TXT +zone = ('iaz018', 0.0022005631336799907) + +[kcda] +description = Lyndonville, Vt, US +location = (0.77789324761387268, -1.2568115943611169) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCDA.TXT +zone = ('vtz007', 0.0021666075481326648) + +[kcdc] +description = Cedar City Mun Airport, UT, United States +location = (0.65798912800186227, -1.9739673840055867) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCDC.TXT +zone = ('utz016', 0.0085611876724175102) + +[kcdd] +description = Crane Lake, Scotts Seaplane Base, MN, United States +location = (0.84240740415911863, -1.6141435180229002) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCDD.TXT +zone = ('mnz011', 0.002286267153029375) + +[kcdh] +description = Camden / Harrell Field, AR, United States +location = (0.58672151687876051, -1.6190837694334064) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCDH.TXT +zone = ('arz066', 0.0017254188767772472) + +[kcdj] +description = Chillicothe Agri-Science Ctr, MO, United States +location = (0.69493193050240898, -1.6333372916580267) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCDJ.TXT +zone = ('moz023', 0.00076462818061093913) + +[kcdn] +description = Camden Woodward, Sc, US +location = (0.59829886758365614, -1.4062117783318313) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCDN.TXT +zone = ('scz022', 0.0010671661574396486) + +[kcdr] +description = Chadron Municipal Airport, NE, United States +location = (0.74758269627090457, -1.7994344588061537) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCDR.TXT +zone = ('nez002', 0.0020344652864224722) + +[kcds] +description = Childress Municipal Airport, TX, United States +location = (0.60097503910338079, -1.7502743515416468) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCDS.TXT +zone = ('txz026', 0.0019966788814865053) + +[kcdw] +description = Caldwell Essex County Airport, NJ, United States +location = (0.71354877585701504, -1.2964887460231211) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCDW.TXT +zone = ('njz105', 0.0013978463118103784) + +[kcec] +description = Crescent City Mc Namara, CA, United States +location = (0.72925673912496403, -2.1682807073942887) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCEC.TXT +zone = ('orz022', 0.0097899139575981439) + +[kcef] +description = Chicopee Falls / Westover Air Force Base, MA, United States +location = (0.73652894434160709, -1.2659454841132203) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCEF.TXT +zone = ('maz011', 0.0014873163594557013) + +[kceu] +description = Clemson-Oconee County Airport, SC, United States +location = (0.60504747402470083, -1.4465870616946337) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCEU.TXT +zone = ('scz004', 0.0016048647431632828) + +[kcew] +description = Crestview Sikes Airport, FL, United States +location = (0.53697963319692199, -1.5100006911837607) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCEW.TXT +zone = ('flz005', 0.0018415537825342758) + +[kcey] +description = Kyle Oakley Fld/M, US +location = (0.63983770378112115, -1.5421729270621896) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCEY.TXT +zone = ('kyz009', 0.0014033527863983484) + +[kcez] +description = Cortez Montezuma County Airport, CO, United States +location = (0.65100781099388483, -1.8960093440831733) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCEZ.TXT +zone = ('coz021', 0.0019266420958711562) + +[kcfe] +description = Buffalo, Buffalo Municipal Airport, MN, United States +location = (0.78817129765339489, -1.6378702995764007) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCFE.TXT +zone = ('mnz059', 0.0014990423862795352) + +[kcfs] +description = Caro, Tuscola Area Airport, MI, United States +location = (0.75849585223268012, -1.4563948424634794) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCFS.TXT +zone = ('miz054', 0.00037449160008082793) + +[kcfv] +description = Coffeyville Municipal Airport, KS, United States +location = (0.64722626428123053, -1.6679529884892474) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCFV.TXT +zone = ('ksz099', 0.0031052599668818246) + +[kcgc] +description = Crystal River, Fl, US +location = (0.50387655505076301, -1.4411183633717177) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCGC.TXT +zone = ('flz042', 0.0016055614106888249) + +[kcge] +description = Cambridge-Dorchester Arpt, MD, US +location = (0.67264989371861461, -1.3269738302912888) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCGE.TXT +zone = ('mdz021', 0.0010911262161928542) + +[kcgf] +description = Cleveland / Cuyahoga, OH, United States +location = (0.72547519241230973, -1.4221524521667128) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCGF.TXT +zone = ('ohz011', 0.0033807764085971867) + +[kcgi] +description = Cape Girardeau Regional, MO, United States +location = (0.64984425815922209, -1.5635241215782534) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCGI.TXT +zone = ('moz087', 0.0029796157720663268) + +[kcgs] +description = College Park Airport, MD, US +location = (0.68032934242738963, -1.3425072606340382) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCGS.TXT +zone = ('dcz001', 0.0017809064269100248) + +[kcgz] +description = Casa Grande, Casa Grande Municipal Airport, AZ, United States +location = (0.57508598853213166, -1.950696327312329) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCGZ.TXT +zone = ('azz028', 0.0021262240615387206) + +[kcha] +description = Lovell Field, TN, United States +location = (0.61144701461534678, -1.4870205226991688) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCHA.TXT +zone = ('gaz003', 0.002431198233919918) + +[kchd] +description = Chandler, Chandler Municipal Airport, AZ, United States +location = (0.58065649772808015, -1.9514720292021042) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCHD.TXT +zone = ('azz028', 0.0039857146559070114) + +[kchk] +description = Chickasha, Chickasha Municipal Airport, OK, United States +location = (0.6125426935346544, -1.7098311942634894) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCHK.TXT +zone = ('okz027', 0.0018108932456611315) + +[kcho] +description = Charlottesville-Albemarle, VA, United States +location = (0.66555222142717096, -1.3692107981895516) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCHO.TXT +zone = ('vaz037', 0.0024088125858796432) + +[kchs] +description = Charleston Int'L Airport, SC, United States +location = (0.57421332390613444, -1.3968451780127951) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCHS.TXT +zone = ('scz050', 0.0016682946651360338) + +[kcic] +description = Chico Municipal, CA, United States +location = (0.69464104229374313, -2.1266836935550906) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCIC.TXT +zone = ('caz066', 0.005581852858374879) + +[kcid] +description = Cedar Rapids Airport, IA, United States +location = (0.73100206837695836, -1.6007578122874659) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCID.TXT +zone = ('iaz052', 0.0037396580578769796) + +[kcin] +description = Carroll, IA, United States +location = (0.73391095046361554, -1.6542812426819586) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCIN.TXT +zone = ('iaz045', 0.001031310143316463) + +[kcir] +description = Cairo, Cairo Regional Airport, IL, United States +location = (0.64689659097807595, -1.5571730623557187) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCIR.TXT +zone = ('ilz092', 0.0027605750857555658) + +[kciu] +description = Sault Ste Marie, Chippewa County International Airport, MI, United States +location = (0.80721477904737737, -1.4742214415178772) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCIU.TXT +zone = ('miz008', 0.0015479448378803214) + +[kcjr] +description = Culpeper, Culpeper County Airport, VA, United States +location = (0.67241718315168197, -1.3588939630555406) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCJR.TXT +zone = ('vaz051', 0.0015022747632541988) + +[kckb] +description = Harrison/Marion Regional, WV, United States +location = (0.68591439603377147, -1.4000449483081181) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCKB.TXT +zone = ('wvz031', 0.0022222860208449585) + +[kckc] +description = Grand Marais, Grand Marais/Cook County Airport, MN, United States +location = (0.83493642533322077, -1.5774819074573969) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCKC.TXT +zone = ('mnz021', 0.00069753284505664885) + +[kcki] +description = Kingstree, Sc, US +location = (0.58852502377248794, -1.393645407717472) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCKI.TXT +zone = ('scz039', 0.0024916001946503523) + +[kckm] +description = Clarksdale/Fletcher Fld, US +location = (0.59864793343405498, -1.5796975059800678) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCKM.TXT +zone = ('msz010', 0.0018206696295361435) + +[kckn] +description = Crookston Municipal Field, MN, United States +location = (0.83514004707928668, -1.6862789456351879) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCKN.TXT +zone = ('mnz001', 0.0010339951028520173) + +[kckp] +description = Cherokee, Cherokee Municipal Airport, IA, United States +location = (0.74580827819804363, -1.6677639111536147) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCKP.TXT +zone = ('iaz021', 0.00087543039241826711) + +[kckv] +description = Clarksville Outlaw Field, TN, United States +location = (0.63908139443859036, -1.5257086544517098) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCKV.TXT +zone = ('tnz006', 0.0021432576412169285) + +[kcle] +description = Cleveland-Hopkins International, OH, United States +location = (0.72256631032565244, -1.4285519927573587) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCLE.TXT +zone = ('ohz011', 0.0025396762235235086) + +[kcli] +description = Clintonville, Clintonville Municipal Airport, WI, United States +location = (0.77865925323002572, -1.548654885978624) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCLI.TXT +zone = ('wiz031', 0.003089049385681665) + +[kclk] +description = Clinton, Clinton Regional Airport, OK, United States +location = (0.62025607920110704, -1.7265039367568464) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCLK.TXT +zone = ('okz016', 0.0020954007890915116) + +[kcll] +description = College Stn Easterwood Field, TX, United States +location = (0.53377986290159907, -1.6819156225052021) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCLL.TXT +zone = ('txz196', 0.0016663780232702742) + +[kclm] +description = Port Angeles Fairchild International, WA, United States +location = (0.8397942584179382, -2.155481626212997) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCLM.TXT +zone = ('waz514', 0.0028692954504789319) + +[kcls] +description = Chehalis-Centralia Arpt, WA, US +location = (0.81471969483095308, -2.1464059141026266) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCLS.TXT +zone = ('waz504', 0.0012173795549645287) + +[kclt] +description = Charlotte/Douglas International, NC, United States +location = (0.61464678491066971, -1.4128440294894098) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCLT.TXT +zone = ('ncz071', 0.0017516552973285782) + +[kcma] +description = Camarillo Airport, CA, United States +location = (0.5971934923907265, -2.0783962509165805) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCMA.TXT +zone = ('caz040', 0.00054995889599968137) + +[kcmb] +description = East Cameron 47, LA, United States +location = (0.51383462806075275, -1.6227925940938943) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCMB.TXT +zone = ('laz074', 0.0064287706157941417) + +[kcmh] +description = Port Columbus International Airport, OH, United States +location = (0.69813170079773179, -1.4465870616946337) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCMH.TXT +zone = ('ohz055', 0.0017661312346776547) + +[kcmi] +description = Univ Of Illinois-Willard, IL, United States +location = (0.69871347721506327, -1.5405439530936615) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCMI.TXT +zone = ('ilz045', 0.0020703543713088352) + +[kcmr] +description = Williams Clark, Az, US +location = (0.6161012259539983, -1.9582594207376378) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCMR.TXT +zone = ('azz015', 0.0062650467623835701) + +[kcmx] +description = Hancock Houghton Cty. Memo, MI, United States +location = (0.8232136305239921, -1.5443254998063158) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCMX.TXT +zone = ('miz003', 0.0025673514073359109) + +[kcmy] +description = Sparta, Sparta / Fort Mccoy Airport, WI, United States +location = (0.76721765035584077, -1.5836729781651659) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCMY.TXT +zone = ('wiz042', 0.0015223166099236876) + +[kcnb] +description = Myers Field Airport, MN, United States +location = (0.78045306385013102, -1.6801702932532079) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCNB.TXT +zone = ('mnz054', 0.005001207687642879) + +[kcnc] +description = Chariton, IA, United States +location = (0.71616676973500648, -1.6295557449453721) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCNC.TXT +zone = ('iaz084', 0.00051783854210228945) + +[kcni] +description = Cherokee County Airport, Canton, United States +location = (0.59886116903541753, -1.473444576850969) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCNI.TXT +zone = ('gaz021', 0.0014260924327571057) + +[kcnk] +description = Concordia, Blosser Municipal Airport, KS, United States +location = (0.69030195984781273, -1.7043237108460849) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCNK.TXT +zone = ('ksz020', 0.0012390713547359138) + +[kcnm] +description = Carlsbad Cavern City, NM, United States +location = (0.56432312481149993, -1.8197966334127542) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCNM.TXT +zone = ('nmz028', 0.0029032522905055092) + +[kcno] +description = Chino Airport, CA, United States +location = (0.59283016926074061, -2.053088976762663) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCNO.TXT +zone = ('caz042', 0.0051343236353435266) + +[kcnu] +description = Chanute Johnson Airport, KS, United States +location = (0.65740735158453079, -1.6664985474459191) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCNU.TXT +zone = ('ksz096', 0.0030845506435097083) + +[kcnw] +description = Tstc Waco Arpt, TX, US +location = (0.55222217533100593, -1.6941911049108955) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCNW.TXT +zone = ('txz159', 0.00248527485711606) + +[kcny] +description = Moab Canyonlands Field, UT, United States +location = (0.67660597335646844, -1.9154988540637767) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCNY.TXT +zone = ('utz027', 0.0030460096674251721) + +[kcod] +description = Cody, WY, United States +location = (0.77696240534614236, -1.9026997728824848) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCOD.TXT +zone = ('wyz003', 0.0010654208476629386) + +[kcoe] +description = Coeur D'Alene, Coeur D'Alene Air Terminal, ID, United States +location = (0.83368560603595809, -2.0388354545380425) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCOE.TXT +zone = ('idz002', 0.0029037019935441075) + +[kcof] +description = Cocoa / Patrick Air Force Base, FL, United States +location = (0.49276462547973238, -1.4067353771074296) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCOF.TXT +zone = ('flz047', 0.0037059906754965091) + +[kcom] +description = Coleman, Tx, US +location = (0.55571283383499448, -1.7348572764823638) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCOM.TXT +zone = ('txz139', 0.0014111429586773721) + +[kcon] +description = Concord, Concord Municipal Airport, NH, United States +location = (0.75389981853576171, -1.2479298077231902) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCON.TXT +zone = ('nhz008', 0.0028947044690455421) + +[kcoq] +description = Cloquet, Cloquet Carlton County Airport, MN, United States +location = (0.81506876068135192, -1.6144295580947547) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCOQ.TXT +zone = ('mnz037', 0.0013150826910214818) + +[kcos] +description = Colorado Springs Muni, CO, United States +location = (0.67747863798246566, -1.8276506150467289) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCOS.TXT +zone = ('coz085', 0.0034247086212163221) + +[kcot] +description = Cotulla-Lasalle County Airport, TX, United States +location = (0.49654617219238673, -1.7316575061870407) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCOT.TXT +zone = ('txz229', 0.0025645506566529816) + +[kcou] +description = Columbia Regional Airport, MO, United States +location = (0.67747863798246566, -1.6094844585474375) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCOU.TXT +zone = ('moz041', 0.0032892818228340034) + +[kcpc] +description = Whiteville, Columbus County Municipal Airport, NC, United States +location = (0.59817281602656769, -1.3738359207073365) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCPC.TXT +zone = ('ncz099', 0.00087467801452118443) + +[kcpk] +description = Chesapeake, Chesapeake Municipal Airport, VA, United States +location = (0.6399346665173431, -1.3320449813956945) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCPK.TXT +zone = ('vaz097', 0.00033206215303985422) + +[kcpr] +description = Natrona County International Airport, WY, United States +location = (0.74874624910556731, -1.8581938769566295) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCPR.TXT +zone = ('wyz020', 0.0039617692661807619) + +[kcps] +description = St Louis Downtown Airport, IL, United States +location = (0.67311531485247977, -1.5734143206728881) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCPS.TXT +zone = ('moz064', 0.0017705815583221535) + +[kcpt] +description = Cleburne, Cleburne Municipal Airport, TX, United States +location = (0.5646770387987099, -1.7005373159966197) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCPT.TXT +zone = ('txz133', 0.0010867328516314398) + +[kcpw] +description = Pagosa Springs, Wolf Creek Pass, CO, United States +location = (0.65365004555593198, -1.864016489266755) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCPW.TXT +zone = ('coz068', 0.0014496993531378124) + +[kcqb] +description = Chandler, Chandler Municipal Airport, OK, United States +location = (0.62349948272772993, -1.6898326299177209) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCQB.TXT +zone = ('okz026', 0.00093324558336024929) + +[kcqc] +description = Clines Corners, NM, United States +location = (0.6108652381980153, -1.8442312429406749) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCQC.TXT +zone = ('nmz523', 0.0028050629939087336) + +[kcqf] +description = Fairhope, Al, US +location = (0.53162729015747279, -1.5339698795778163) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCQF.TXT +zone = ('alz064', 0.0033634653483865158) + +[kcqm] +description = Cook, Cook Municipal Airport, MN, United States +location = (0.83465038526136615, -1.617735987399922) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCQM.TXT +zone = ('mnz011', 0.0058410193937981541) + +[kcqt] +description = Los Angeles Usc Campus, CA, United States +location = (0.59399372209540346, -2.0644336169006259) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCQT.TXT +zone = ('caz041', 0.0018532024663968528) + +[kcqw] +description = Cheraw, Sc, US +location = (0.60597831629243115, -1.395216204044267) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCQW.TXT +zone = ('scz016', 0.0034362744588906022) + +[kcqx] +description = Chatham Municipal Airport, MA, United States +location = (0.72751140987296969, -1.2217304763960306) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCQX.TXT +zone = ('maz022', 0.0039621325007678128) + +[kcre] +description = N. Myrtle Bch.Grand Strand, SC, United States +location = (0.59021217538274917, -1.373865009528203) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCRE.TXT +zone = ('scz054', 0.0024852469453027735) + +[kcrg] +description = Jacksonville Craig Mun, FL, United States +location = (0.52941653977161329, -1.4227342285840443) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCRG.TXT +zone = ('flz025', 0.002370733114073017) + +[kcrh] +description = West Cameron, TX, United States +location = (0.50455044606750521, -1.6284212809315759) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCRH.TXT +zone = ('laz074', 0.015481948578532285) + +[kcrp] +description = Corpus Christi International, TX, United States +location = (0.48461975563709214, -1.701986908903137) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCRP.TXT +zone = ('txz243', 0.0018647971786388056) + +[kcrq] +description = Carlsbad Mcclellan-Palomar, CA, United States +location = (0.57828575882745448, -2.0469803243806828) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCRQ.TXT +zone = ('caz043', 0.0027905074098395185) + +[kcrs] +description = Corsicana Airfield, TX, United States +location = (0.5587962488468512, -1.6822065107138682) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCRS.TXT +zone = ('txz146', 0.0014202041806797426) + +[kcrw] +description = Yeager Airport, WV, United States +location = (0.66962465634849111, -1.4241886696273729) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCRW.TXT +zone = ('wvz015', 0.0011161004731334607) + +[kcrx] +description = Corinth/R Thurner, Ms, US +location = (0.60946897479641993, -1.5463617172669759) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCRX.TXT +zone = ('msz005', 0.00074000433534732429) + +[kcsg] +description = Columbus Metropolitan Airport, GA, United States +location = (0.56752289510682286, -1.4826571995691831) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCSG.TXT +zone = ('gaz089', 0.0010806797135696372) + +[kcsm] +description = Clinton-Sherman Airport, OK, United States +location = (0.61697389057999552, -1.7313666179783749) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCSM.TXT +zone = ('okz022', 0.0031353827630361802) + +[kcsq] +description = Creston, IA, United States +location = (0.71587588152634085, -1.6470090374653155) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCSQ.TXT +zone = ('iaz082', 0.001647602267909288) + +[kcsv] +description = Crossville Memorial Airport, TN, United States +location = (0.62744586609196151, -1.4849843052385086) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCSV.TXT +zone = ('tnz066', 0.0012014495449932051) + +[kctb] +description = Cut Bank Municipal Airport, MT, United States +location = (0.84823001646924423, -1.9614591910329608) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCTB.TXT +zone = ('mtz010', 0.0036941976582365965) + +[kctj] +description = Carrollton, Ga, US +location = (0.58695422744569303, -1.4861478580731717) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCTJ.TXT +zone = ('gaz042', 0.0013125924921023114) + +[kcty] +description = Cross City Airport, FL, United States +location = (0.51719923500765297, -1.4503686084072878) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCTY.TXT +zone = ('flz034', 0.00074935450174326893) + +[kctz] +description = Clinton, Sampson County Airport, NC, United States +location = (0.61043860215863899, -1.3677224201885452) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCTZ.TXT +zone = ('ncz089', 0.00029329493533635404) + +[kcub] +description = Owens Downtown Airport, SC, United States +location = (0.59283016926074061, -1.4137166941154069) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCUB.TXT +zone = ('scz028', 0.0017006054117491547) + +[kcuh] +description = Cushing, Cushing Municipal Airport, OK, United States +location = (0.62744101795515039, -1.6890035985230236) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCUH.TXT +zone = ('okz020', 0.0036283456648797748) + +[kcul] +description = Carmi, Carmi Municipal Airport, IL, United States +location = (0.66478621581101793, -1.5380374663623253) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCUL.TXT +zone = ('ilz083', 0.00077610688150046511) + +[kcut] +description = Custer County Airport, SD, United States +location = (0.76329065953885344, -1.8084519932747911) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCUT.TXT +zone = ('sdz029', 0.0015635015669160821) + +[kcvb] +description = Castroville, Tx, US +location = (0.51207960253513629, -1.7252579655963947) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCVB.TXT +zone = ('txz204', 0.0039664656217785112) + +[kcvg] +description = Cincinnati/Northern Ky International, KY, United States +location = (0.68155107290378569, -1.4777121000218658) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCVG.TXT +zone = ('kyz091', 0.0016245541063273658) + +[kcvh] +description = Hollister, Ca, US +location = (0.64385196106070819, -2.1190042448463156) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCVH.TXT +zone = ('caz528', 0.0039478465522957357) + +[kcvn] +description = Clovis, Clovis Municipal Airport, NM, United States +location = (0.60097503910338079, -1.7991435705974879) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCVN.TXT +zone = ('nmz535', 0.0045171472799264414) + +[kcvo] +description = Corvallis, Corvallis Municipal Airport, OR, United States +location = (0.77667151713747662, -2.1517000795003427) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCVO.TXT +zone = ('orz008', 0.0024086454301888694) + +[kcvs] +description = Cannon Air Force Base / Clovis, NM, United States +location = (0.60010237447738368, -1.803216005518808) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCVS.TXT +zone = ('nmz535', 0.0033593443614754748) + +[kcvx] +description = Charlevoix, Charlevoix Municipal Airport, MI, United States +location = (0.79071656947921987, -1.4883246715013534) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCVX.TXT +zone = ('miz019', 0.0017980812597719346) + +[kcwa] +description = Mosinee / Central Wisconsin, WI, United States +location = (0.78161661668479387, -1.5649785626215822) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCWA.TXT +zone = ('wiz030', 0.002309100044779877) + +[kcwc] +description = Kickapoo Downtown Arpt, TX, US +location = (0.55606189968539343, -1.718974780289215) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCWC.TXT +zone = ('txz141', 0.0018384955650303111) + +[kcwf] +description = Chenault Airpark, LA, United States +location = (0.52738032231095322, -1.6257741982327181) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCWF.TXT +zone = ('laz041', 0.0031429456329445113) + +[kcwi] +description = Clinton, Clinton Municipal Airport, IA, United States +location = (0.73012940375096125, -1.5766140909682109) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCWI.TXT +zone = ('iaz066', 0.0028180866977301601) + +[kcwv] +description = Claxton, Ga, US +location = (0.56199601914217412, -1.4289010586077577) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCWV.TXT +zone = ('gaz115', 0.00079423912402208717) + +[kcxo] +description = Lone Star Executive Airport, TX, United States +location = (0.52970742798027903, -1.6653349946112561) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCXO.TXT +zone = ('txz199', 0.001564323117570625) + +[kcxp] +description = Carson City, NV, United States +location = (0.68403331895106645, -2.0897263466441105) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCXP.TXT +zone = ('nvz002', 0.0024995542625908126) + +[kcxy] +description = Harrisburg Capital City, PA, United States +location = (0.7019132475103862, -1.3412855301576421) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCXY.TXT +zone = ('paz057', 0.0035959273993305418) + +[kcys] +description = Cheyenne Airport, WY, United States +location = (0.71820298719566655, -1.8291050560900572) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCYS.TXT +zone = ('wyz118', 0.0036414968758312826) + +[kczk] +description = Cascade Locks State, OR, United States +location = (0.79703369174407712, -2.1272654699724223) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCZK.TXT +zone = ('orz009', 0.00071528551902114634) + +[kczz] +description = Campo, CA, United States +location = (0.56943306101039448, -2.032755890976929) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KCZZ.TXT +zone = ('caz058', 0.0078265904834283369) + +[kd07] +description = Faith, South Dakota, SD, United States +location = (0.78597993981477976, -1.7805267252428818) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KD07.TXT +zone = ('sdz014', 0.0044239636583892966) + +[kd25] +description = Manitowish Waters Airport, United States +location = (0.80498026891263408, -1.5687426502239525) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KD25.TXT +zone = ('miz009', 0.0054972919501036326) + +[kd39] +description = Sauk Centre Muni, Mn, US +location = (0.79779000108660802, -1.6568410589182172) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KD39.TXT +zone = ('mnz049', 0.004749039724692059) + +[kd50] +description = Crosby Municipal Airport, ND, United States +location = (0.85396536231676989, -1.8028766359420314) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KD50.TXT +zone = ('ndz001', 0.0029496032786054407) + +[kd55] +description = Roberston Field Landon, ND, United States +location = (0.85090133985215766, -1.7172924768157651) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KD55.TXT +zone = ('ndz007', 0.00088668524020316607) + +[kd60] +description = Tioga Municipal Airport, ND, United States +location = (0.84439514025166773, -1.7959001670708654) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KD60.TXT +zone = ('ndz002', 0.0083981060999774645) + +[kd95] +description = Dupont-Lapeer, MI, United States +location = (0.75165187324428751, -1.453362546206159) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KD95.TXT +zone = ('miz062', 0.00075632519884791792) + +[kdaa] +description = Fort Belvoir, VA, United States +location = (0.67573330873047133, -1.3471032943309567) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KDAA.TXT +zone = ('vaz053', 0.0024968543699490997) + +[kdab] +description = Daytona Beach International, FL, United States +location = (0.50905436516501279, -1.4148802469500699) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KDAB.TXT +zone = ('flz141', 0.0023136497964269852) + +[kdag] +description = Barstow-Daggett Airport, CA, United States +location = (0.60824724432002386, -2.0382536781207112) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KDAG.TXT +zone = ('caz060', 0.0063048107088133475) + +[kdal] +description = Dallas Love Field, TX, United States +location = (0.57334065928013733, -1.690351380556508) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KDAL.TXT +zone = ('txz119', 0.0017992829983279356) + +[kdan] +description = Danville Regional Airport, VA, United States +location = (0.63820872981259325, -1.3846278732488346) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KDAN.TXT +zone = ('ncz006', 0.0030240781950727374) + +[kdaw] +description = Skyhaven Airport, NH, United States +location = (0.75543667790487889, -1.2377293278726456) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KDAW.TXT +zone = ('nhz010', 0.0014521027793019258) + +[kday] +description = Cox Dayton International, OH, United States +location = (0.69638637154573746, -1.4698581183878912) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KDAY.TXT +zone = ('ohz051', 0.0026823297806611358) + +[kdbn] +description = Dublin, W H 'Bud' Barron Airport, GA, United States +location = (0.56835677463833112, -1.4483614797674944) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KDBN.TXT +zone = ('gaz097', 0.0019864463807877574) + +[kdbq] +description = Dubuque Regional Airport, IA, United States +location = (0.74001960284559576, -1.583013631558857) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KDBQ.TXT +zone = ('iaz042', 0.0026386280886241801) + +[kdca] +description = Washington National Airport, VA, United States +location = (0.67806041439979703, -1.3444853004529651) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KDCA.TXT +zone = ('dcz001', 0.001065817797886103) + +[kdcm] +description = Chester, Sc, US +location = (0.60720004676882722, -1.4170328196941961) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KDCM.TXT +zone = ('scz014', 0.0017637811542920291) + +[kdcu] +description = Pryor Field, AL, United States +location = (0.6047565858160352, -1.5175637846090695) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KDCU.TXT +zone = ('alz005', 0.0028301104877790418) + +[kddc] +description = Dodge City Regional Airport, KS, United States +location = (0.65915268083652512, -1.7447474755769981) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KDDC.TXT +zone = ('ksz078', 0.0017012240541063092) + +[kddh] +description = Bennington Morse State Airport, VT, United States +location = (0.74845536089690168, -1.2784536770858463) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KDDH.TXT +zone = ('vtz013', 0.0033286460280477492) + +[kdec] +description = Decatur Airport, IL, United States +location = (0.69522281871107461, -1.5510159286056273) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KDEC.TXT +zone = ('ilz053', 0.0013552332966981634) + +[kded] +description = DeLand Municipal Airport-Sidney H Taylor Field, DeLand, Florida, United States +location = (0.50731533887872382, -1.4186690658679408) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KDED.TXT +zone = ('flz041', 0.0012988397757268772) + +[kdeh] +description = Decorah, IA, United States +location = (0.75543667790487889, -1.6010487004961316) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KDEH.TXT +zone = ('iaz010', 0.0014079052474706417) + +[kden] +description = Denver International Airport, CO, United States +location = (0.69580459512840609, -1.8267779504207318) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KDEN.TXT +zone = ('coz040', 0.0025497219987903677) + +[kdeq] +description = De Queen Helms Sevier County, AR, United States +location = (0.59428461030406921, -1.6475908138826472) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KDEQ.TXT +zone = ('arz050', 0.002474410384909218) + +[kdet] +description = Detroit City Airport, MI, United States +location = (0.74031049105426139, -1.4489141673639592) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KDET.TXT +zone = ('miz076', 0.0041803347738885981) + +[kdew] +description = Deer Park Airport, WA, United States +location = (0.83717626453994676, -2.0495983182586746) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KDEW.TXT +zone = ('waz036', 0.0064380613483024807) + +[kdfi] +description = Defiance Memorial Airport, OH, United States +location = (0.72140275749098959, -1.4736396651005457) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KDFI.TXT +zone = ('ohz004', 0.00076802619387311569) + +[kdfw] +description = Dallas/Ft. Worth International Airport, TX, United States +location = (0.57421332390613444, -1.6935511508518311) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KDFW.TXT +zone = ('txz118', 0.004415249754606501) + +[kdgw] +description = Douglas Converse County, WY, United States +location = (0.74700091985357298, -1.8392861433933578) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KDGW.TXT +zone = ('wyz101', 0.0048797188389982614) + +[kdhn] +description = Dothan Airport, AL, United States +location = (0.54657894408289087, -1.4913838458291546) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KDHN.TXT +zone = ('alz066', 0.003129485383934272) + +[kdht] +description = Dalhart Municipal Airport, TX, United States +location = (0.62860941892662436, -1.7898351479201848) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KDHT.TXT +zone = ('txz006', 0.0031727579108920883) + +[kdij] +description = Driggs-Reed Memorial Arpt, ID, US +location = (0.76340701482231976, -1.9390607989657) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KDIJ.TXT +zone = ('wyz013', 0.0054722973429577257) + +[kdik] +description = Theodore Roosevelt Regional, ND, United States +location = (0.81681408993334614, -1.7941984710501708) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KDIK.TXT +zone = ('ndz033', 0.0017422672146783997) + +[kdkb] +description = De Kalb, De Kalb Taylor Municipal Airport, IL, United States +location = (0.73185049231889998, -1.5482524906233033) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KDKB.TXT +zone = ('ilz011', 0.0010499549928065339) + +[kdkk] +description = Chautauqua County/Dunkirk, NY, United States +location = (0.74176493209759009, -1.3837552086228375) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KDKK.TXT +zone = ('nyz019', 0.0048632478126631679) + +[kdkr] +description = Crockett, Houston County Airport, TX, United States +location = (0.54640925929450257, -1.6651071321811348) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KDKR.TXT +zone = ('txz163', 0.00034192918391444871) + +[kdlf] +description = Laughlin, Laughlin Air Force Base Auxiliary Airfield, TX, United States +location = (0.50818170053901568, -1.7534741218369698) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KDLF.TXT +zone = ('txz202', 0.0041427724744448197) + +[kdlh] +description = Duluth, Duluth International Airport, MN, United States +location = (0.81756070300225503, -1.6096492951990147) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KDLH.TXT +zone = ('mnz037', 0.0045189993601512648) + +[kdll] +description = Baraboo, Baraboo Wisconsin Dells Airport, WI, United States +location = (0.75960122742560987, -1.5667966139257428) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KDLL.TXT +zone = ('wiz056', 0.0027956101386200703) + +[kdln] +description = Dillon Airport, MT, United States +location = (0.78976148652743416, -1.9643680731196178) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KDLN.TXT +zone = ('mtz008', 0.0047529377945706979) + +[kdlp] +description = West Delta, MS, United States +location = (0.50826411886480427, -1.5628938637928111) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KDLP.TXT +zone = ('laz069', 0.0064311264098516792) + +[kdls] +description = The Dalles Municipal Airport, OR, United States +location = (0.79616102711808001, -2.114757276999796) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KDLS.TXT +zone = ('waz024', 0.0040006189990936343) + +[kdlz] +description = Delaware, Oh, US +location = (0.70319315562851537, -1.4507176742576868) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KDLZ.TXT +zone = ('ohz046', 0.0015415894182150727) + +[kdma] +description = Davis-Monthan Air Force Base, AZ, United States +location = (0.56141424272484264, -1.9352792522530458) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KDMA.TXT +zone = ('azz504', 0.0025635699675113275) + +[kdmh] +description = Baltimore Downtown, MD, United States +location = (0.68562350782510573, -1.3372130952363221) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KDMH.TXT +zone = ('mdz011', 0.00084086401210725561) + +[kdmn] +description = Deming Municipal Airport, NM, United States +location = (0.56315957197683697, -1.8800104926065586) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KDMN.TXT +zone = ('nmz407', 0.001721260747211073) + +[kdmo] +description = Sedalia Memorial Airport, MO, United States +location = (0.67573330873047133, -1.6260650864413837) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KDMO.TXT +zone = ('moz045', 0.0016254138503713853) + +[kdmw] +description = Carroll Cnty Rgnl Arpt, MD, US +location = (0.69132491671495389, -1.3440780569608333) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KDMW.TXT +zone = ('mdz005', 0.00083619369970054918) + +[kdnk] +description = Ft. Polk, Self Strip, LA, United States +location = (0.54396095020489943, -1.6231562043547265) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KDNK.TXT +zone = ('laz027', 0.002934230238620958) + +[kdnl] +description = Augusta Daniel Field, GA, United States +location = (0.58410352300076895, -1.4317517630526817) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KDNL.TXT +zone = ('gaz065', 0.0019581471248733481) + +[kdnn] +description = Dalton, Dalton Municipal Airport, GA, United States +location = (0.60600740511329787, -1.4812463917571541) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KDNN.TXT +zone = ('gaz004', 0.0020311917408823159) + +[kdns] +description = Denison, IA, United States +location = (0.73274739762895269, -1.6647532181939249) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KDNS.TXT +zone = ('iaz044', 0.00094028672931292866) + +[kdnv] +description = Danville, Vermilion County Airport, IL, United States +location = (0.70161266302809822, -1.5288308545580551) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KDNV.TXT +zone = ('ilz046', 0.0018518975585203939) + +[kdov] +description = Dover Air Force Base, DE, United States +location = (0.68300551394711428, -1.3171418088383875) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KDOV.TXT +zone = ('dez002', 0.0016048548035464223) + +[kdpa] +description = Chicago/West Ch Dupage, IL, United States +location = (0.7312929565856241, -1.5402530648849959) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KDPA.TXT +zone = ('ilz012', 0.0024184898485043334) + +[kdpl] +description = Kenansville, Duplin County Airport, NC, United States +location = (0.6108652381980153, -1.3610368395260448) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KDPL.TXT +zone = ('ncz090', 0.0013064561179893443) + +[kdqh] +description = Douglas, Douglas Municipal Airport, GA, United States +location = (0.54937147088608185, -1.4461846663393123) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KDQH.TXT +zone = ('gaz132', 0.0012764397849498448) + +[kdra] +description = Desert Rock Airport, NV, United States +location = (0.6393722826472561, -2.0251637087307537) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KDRA.TXT +zone = ('nvz017', 0.0021567933079713712) + +[kdri] +description = De Ridder, Beauregard Parish Airport, LA, United States +location = (0.53811409721071835, -1.6290854756746962) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KDRI.TXT +zone = ('laz030', 0.0031973374334703787) + +[kdrm] +description = Drummond Island Arpt, MI, US +location = (0.80302598884259102, -1.4615387156200514) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KDRM.TXT +zone = ('miz008', 0.011271270649854736) + +[kdro] +description = Durango-La Plata County Airport, CO, United States +location = (0.64838981711589339, -1.8808831572325557) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KDRO.TXT +zone = ('coz022', 0.0015419871375885901) + +[kdrt] +description = Del Rio International Airport, TX, United States +location = (0.51254502366900145, -1.7613281034709443) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KDRT.TXT +zone = ('txz202', 0.0075910348910078335) + +[kdsm] +description = Des Moines International, IA, United States +location = (0.72489341599497814, -1.6347917327013555) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KDSM.TXT +zone = ('iaz060', 0.0029214110609557119) + +[kdsv] +description = Dansville Municipal Airport, NY, United States +location = (0.74292848493225305, -1.3564117170082599) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KDSV.TXT +zone = ('nyz013', 0.002916685067522305) + +[kdtl] +description = Detroit Lakes, Detroit Lakes Airport-Wething Field, MN, United States +location = (0.81739586635067774, -1.6734798644538964) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KDTL.TXT +zone = ('mnz027', 0.0018496144049082381) + +[kdtn] +description = Shreveport Downtown Airport, LA, United States +location = (0.56781378331548849, -1.6362461737446838) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KDTN.TXT +zone = ('laz001', 0.0021050503661004917) + +[kdto] +description = Denton Municipal Airport, TX, United States +location = (0.57944931166211744, -1.6964600329384885) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KDTO.TXT +zone = ('txz103', 0.0012129899894031181) + +[kdts] +description = Destin-Ft Walton Beach Airport, FL, United States +location = (0.53058009260627614, -1.5091280265577636) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KDTS.TXT +zone = ('flz006', 0.003510423452302334) + +[kdtw] +description = Detroit Metropolitan, MI, United States +location = (0.73711072075893858, -1.4544410433286079) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KDTW.TXT +zone = ('miz076', 0.001071435052347784) + +[kdua] +description = Durant, Eaker Field Airport, OK, United States +location = (0.59240353322136419, -1.6824004361863119) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KDUA.TXT +zone = ('okz052', 0.0019777201569197724) + +[kduc] +description = Duncan, Halliburton Field Airport, OK, United States +location = (0.60162953757287874, -1.7097245352536454) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KDUC.TXT +zone = ('okz039', 0.0015835925171547793) + +[kdug] +description = Bisbee Douglas International Airport, AZ, United States +location = (0.54919693796088231, -1.9128808601857852) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KDUG.TXT +zone = ('azz512', 0.00778781011636268) + +[kduh] +description = Lambertville, Toledo Suburban Airport, MI, United States +location = (0.72842770773026666, -1.4600600338926675) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KDUH.TXT +zone = ('ohz003', 0.0020221368595222276) + +[kduj] +description = Du Bois-Jefferson County, PA, United States +location = (0.71878476361299803, -1.3767738916148604) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KDUJ.TXT +zone = ('paz016', 0.0018054486093462539) + +[kdux] +description = Dumas, Moore County Airport, TX, United States +location = (0.62583628467067776, -1.7804636994643375) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KDUX.TXT +zone = ('txz007', 0.0017356109133335564) + +[kdvk] +description = Stuart Powell Fld, KY, US +location = (0.65589473289946898, -1.479515606915593) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KDVK.TXT +zone = ('kyz055', 0.0015454571827347257) + +[kdvl] +description = Devils Lake, Devils Lake Municipal Airport, ND, United States +location = (0.8397942584179382, -1.7264215184310576) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KDVL.TXT +zone = ('ndz015', 0.0035070229044688759) + +[kdvn] +description = Davenport Municipal Airport, IA, United States +location = (0.72634785703830684, -1.5809774140981967) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KDVN.TXT +zone = ('iaz068', 0.00063062898566891145) + +[kdvo] +description = Gnoss Field Arpt, CA, US +location = (0.66566857671063728, -2.1390755312442504) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KDVO.TXT +zone = ('caz506', 0.0041648764282175904) + +[kdvp] +description = Slayton, Slayton Municipal Airport, MN, United States +location = (0.76771216031057243, -1.6717199907914686) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KDVP.TXT +zone = ('mnz080', 0.00066419753058111197) + +[kdvt] +description = Phoenix-Deer Valley Mun, AZ, United States +location = (0.58788506971342325, -1.9559323150683119) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KDVT.TXT +zone = ('azz023', 0.0029385447109625267) + +[kdwh] +description = Houston Hooks Memorial, TX, United States +location = (0.52476232843296178, -1.6676621002805818) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KDWH.TXT +zone = ('txz199', 0.0041371456003989702) + +[kdxr] +description = Danbury Municipal Airport, CT, United States +location = (0.72198453390832096, -1.2825261120071665) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KDXR.TXT +zone = ('ctz005', 0.0015956056942770188) + +[kdxx] +description = Madison, Madison-Lac Qui Parle County Airport, MN, United States +location = (0.78515575655689362, -1.6786188894736573) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KDXX.TXT +zone = ('mnz054', 0.00017216402434238085) + +[kdyb] +description = Summerville, SC, US +location = (0.57718038363452484, -1.4011503235010478) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KDYB.TXT +zone = ('scz044', 0.0018385602047310211) + +[kdyl] +description = Doylestown Airport, PA, United States +location = (0.70394946497104627, -1.3110331564564071) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KDYL.TXT +zone = ('paz069', 0.00014723324563508189) + +[kdyr] +description = Dyersburg, Dyersburg Municipal Airport, TN, United States +location = (0.62831853071795862, -1.5603243512829308) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KDYR.TXT +zone = ('tnz019', 0.0010480046441312444) + +[kdys] +description = Abilene, Dyess Air Force Base, TX, United States +location = (0.56583574349656152, -1.7428324615366153) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KDYS.TXT +zone = ('txz127', 0.0021251921653324462) + +[kdyt] +description = Duluth, Sky Harbor Airport, MN, United States +location = (0.81545176348942849, -1.6064592211773141) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KDYT.TXT +zone = ('wiz001', 0.0053089299238751253) + +[kdzb] +description = Horshoe Bay, TX, US +location = (0.53284902063386885, -1.7167058522616225) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KDZB.TXT +zone = ('txz190', 0.0046395373463178806) + +[ke11] +description = Andrews County Airport, United States +location = (0.56428433777775644, -1.7894778441157166) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KE11.TXT +zone = ('txz050', 0.0016607268375573253) + +[ke16] +description = San Martin South County Airport, CA, United States +location = (0.64719576756143404, -2.1222646246087962) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KE16.TXT +zone = ('caz513', 0.0036831904730467747) + +[ke33] +description = Chama, NM, United States +location = (0.64402649398590761, -1.8602300944172896) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KE33.TXT +zone = ('nmz510', 0.0044364770325273162) + +[ke38] +description = Alpine, Alpine-Casparis Municipal Airport, TX, United States +location = (0.53030374880804376, -1.8096155461094541) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KE38.TXT +zone = ('txz074', 0.0064354766480354767) + +[ke80] +description = Belen Alexander Muni, NM, United States +location = (0.60473719326879083, -1.8645643287264089) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KE80.TXT +zone = ('nmz519', 0.0062939137477347751) + +[kear] +description = Kearney, Kearney Municipal Airport, NE, United States +location = (0.7109307819790236, -1.7278759594743862) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KEAR.TXT +zone = ('nez061', 0.0023449222529123301) + +[keat] +description = Wenatchee Pangborn Memo, WA, United States +location = (0.82728606544531214, -2.0978857608971841) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KEAT.TXT +zone = ('waz041', 0.0040158116453115423) + +[keau] +description = Eau Claire Chippewa Valley, WI, United States +location = (0.78307105772812258, -1.5966853773661458) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KEAU.TXT +zone = ('wiz028', 0.0034542974051397723) + +[kebg] +description = Edinburg, Edinburg International Airport, TX, United States +location = (0.46149899118497839, -1.7126818987084131) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KEBG.TXT +zone = ('txz253', 0.0011281464404898176) + +[kebs] +description = Webster City, IA, United States +location = (0.74060137926292713, -1.6382823912053439) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KEBS.TXT +zone = ('iaz036', 0.0022348746601969084) + +[kecg] +description = Elizabeth City C/G Regn Airport, NC, United States +location = (0.63268185384794451, -1.3293591136023477) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KECG.TXT +zone = ('ncz015', 0.0018806971910715138) + +[kecp] +description = Northwest Florida Beaches International Airport, FL, United States +location = (0.52977045375882326, -1.4974779538007015) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KECP.TXT +zone = ('flz112', 0.0030654455476976038) + +[kecu] +description = Rocksprings, Edwards County Airport, TX, United States +location = (0.52266793333056849, -1.7483593375012643) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KECU.TXT +zone = ('txz184', 0.0020789653818360674) + +[kedc] +description = Austin Exec Ap, Austin,, US +location = (0.53058009260627614, -1.7029177511708673) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KEDC.TXT +zone = ('txz192', 0.0033883691243866395) + +[kede] +description = Edenton, Northeastern Regional Airport, NC, United States +location = (0.62880334439906815, -1.3363501268839471) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KEDE.TXT +zone = ('ncz031', 0.0022211494926288435) + +[kedj] +description = Bellefontaine Regional Airport, Bellefontaine, Ohio, United States +location = (0.70462917413981274, -1.4629218890522571) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KEDJ.TXT +zone = ('ohz044', 0.00076495585837472221) + +[kedu] +description = University Airport, CA, US +location = (0.67247536079341519, -2.125636496003894) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KEDU.TXT +zone = ('caz017', 0.0035340487515973223) + +[kedw] +description = Edwards Air Force Base, CA, United States +location = (0.60941079715468671, -2.0577431881013148) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KEDW.TXT +zone = ('caz099', 0.0032971448152242641) + +[keed] +description = Needles Airport, CA, United States +location = (0.60679280327669527, -2.0004382109941674) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KEED.TXT +zone = ('azz002', 0.004149092841835786) + +[keen] +description = Keene, Dillant-Hopkins Airport, NH, United States +location = (0.74874624910556731, -1.2612912727745689) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KEEN.TXT +zone = ('nhz011', 0.0003905868438033641) + +[keeo] +description = Meeker Airport, CO, United States +location = (0.6990043654237289, -1.882919374693216) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KEEO.TXT +zone = ('coz002', 0.0062018921700053827) + +[keet] +description = Shelby County Airport, AL, United States +location = (0.57915842345345159, -1.5146549025224123) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KEET.TXT +zone = ('alz025', 0.0022809620443748199) + +[kefd] +description = Houston / Ellington, TX, United States +location = (0.5166174585903216, -1.6609716714812703) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KEFD.TXT +zone = ('txz238', 0.0047232032069516117) + +[kefk] +description = Newport State, VT, US +location = (0.7833037682950551, -1.2606513187155044) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KEFK.TXT +zone = ('vtz003', 0.00090977435075329882) + +[keft] +description = Monroe, Monroe Municipal Airport, WI, United States +location = (0.74377206073738356, -1.5636550212721529) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KEFT.TXT +zone = ('wiz068', 0.0011438099404715368) + +[kege] +description = Eagle County Regional, CO, United States +location = (0.69202304841575168, -1.8660478585906042) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KEGE.TXT +zone = ('coz008', 0.0015579227695308277) + +[kegi] +description = Duke Field / Eglin Auxiliary, FL, United States +location = (0.53494341573626203, -1.5100006911837607) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KEGI.TXT +zone = ('flz006', 0.002000791620468637) + +[kegv] +description = Eagle River, Eagle River Union Airport, WI, United States +location = (0.80165881426186214, -1.5580408788449047) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KEGV.TXT +zone = ('wiz005', 0.0036535622711082478) + +[keha] +description = Elkhart, Elkhart-Morton County Airport, KS, United States +location = (0.64577182323790194, -1.7781996195735561) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KEHA.TXT +zone = ('ksz084', 0.0035394754875256872) + +[kehc] +description = East Cameron 278, LA, United States +location = (0.49617771379474351, -1.6210278722946554) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KEHC.TXT +zone = ('laz074', 0.023961830733110565) + +[keho] +description = Shelby, Shelby Municipal Airport, NC, United States +location = (0.61522856132800119, -1.4241886696273729) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KEHO.TXT +zone = ('ncz068', 0.001597829833448284) + +[kehr] +description = Henderson City, KY, United States +location = (0.66002534546252234, -1.5303628657903614) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KEHR.TXT +zone = ('kyz018', 0.0015645669710935292) + +[keik] +description = Erie Muni, Co, US +location = (0.69848076664813075, -1.8334683792200432) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KEIK.TXT +zone = ('coz039', 0.0017560984038863556) + +[keir] +description = Eugene Island, LA, United States +location = (0.49977018317176519, -1.5967871882391786) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KEIR.TXT +zone = ('laz066', 0.016040910530644995) + +[kekm] +description = Elkhart Municipal, IN, United States +location = (0.72809318629030118, -1.5009831567151235) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KEKM.TXT +zone = ('inz005', 0.0027799341344671934) + +[kekn] +description = Jennings Randolph Field, WV, United States +location = (0.67864219081712851, -1.393645407717472) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KEKN.TXT +zone = ('wvz047', 0.0019281867782277255) + +[keko] +description = Elko Regional Airport, NV, United States +location = (0.71267611123101793, -2.0208003856007677) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KEKO.TXT +zone = ('nvz038', 0.0021245902650282649) + +[kekq] +description = Monticello, Wayne County Airport, KY, United States +location = (0.64324594395932122, -1.4810185293270326) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KEKQ.TXT +zone = ('kyz083', 0.001017999967372181) + +[keld] +description = South Arkansas Regional, AR, United States +location = (0.57974019987078318, -1.6199564340594035) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KELD.TXT +zone = ('arz073', 0.0033003045806761144) + +[kelm] +description = Elmira County Airport, NY, United States +location = (0.73594716792427561, -1.3421581947836396) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KELM.TXT +zone = ('nyz024', 0.0018647634186832447) + +[keln] +description = Ellensburg Bowers Field, WA, United States +location = (0.82088652485466629, -2.1037035250704985) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KELN.TXT +zone = ('waz026', 0.0030512713467232997) + +[kelo] +description = Ely, Ely Municipal Airport, MN, United States +location = (0.83455827066195531, -1.6027940297481258) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KELO.TXT +zone = ('mnz012', 0.0074454270254865184) + +[kelp] +description = El Paso International Airport, TX, United States +location = (0.55530559034286253, -1.8567394359133009) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KELP.TXT +zone = ('txz419', 0.0012372420550366744) + +[kely] +description = Ely Airport (Yelland Field), NV, United States +location = (0.68591439603377147, -2.0045106459154876) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KELY.TXT +zone = ('nvz035', 0.0024981206972126625) + +[kelz] +description = Wellsville Municipal Airport, NY, United States +location = (0.73478361508961276, -1.3613568165555769) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KELZ.TXT +zone = ('nyz021', 0.0027702443123244535) + +[kemk] +description = East Breaks, TX, United States +location = (0.48552635722076698, -1.6462430318491625) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KEMK.TXT +zone = ('txz238', 0.029204565907351421) + +[kemp] +description = Emporia Municipal Airport, KS, United States +location = (0.66904287993115974, -1.6790067404185451) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KEMP.TXT +zone = ('ksz054', 0.0022415820936076089) + +[kemt] +description = El Monte, CA, United States +location = (0.59486638672140069, -2.0600702937706403) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KEMT.TXT +zone = ('caz548', 0.00091402791690196417) + +[kemv] +description = Emporia, Emporia-Greensville Regional Airport, VA, United States +location = (0.64030797305179743, -1.3523295858133175) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KEMV.TXT +zone = ('vaz087', 0.001082934713926676) + +[kend] +description = Vance Air Force Base / Enid, OK, United States +location = (0.6341362948912731, -1.7089682259111145) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KEND.TXT +zone = ('okz012', 0.0020434714699270355) + +[kenl] +description = Centralia, Centralia Municipal Airport, IL, United States +location = (0.67220871326880494, -1.554952615696237) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KENL.TXT +zone = ('ilz070', 0.0033357232343031846) + +[kenv] +description = Wendover / Air Force Auxillary Field, UT, United States +location = (0.7109307819790236, -1.990257123690867) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KENV.TXT +zone = ('nvz033', 0.0030326125479132253) + +[kenw] +description = Kenosha Regional Airport, WI, United States +location = (0.74351026134958442, -1.5347261889203472) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KENW.TXT +zone = ('wiz072', 0.0014518807668512854) + +[keoe] +description = Newberry, Sc, US +location = (0.59882246635925451, -1.4248868013281706) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KEOE.TXT +zone = ('scz020', 0.00067472074278167229) + +[keok] +description = Keokuk Municipal, IA, United States +location = (0.70627657064037208, -1.5958127127401487) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KEOK.TXT +zone = ('iaz099', 0.0031200038575731033) + +[keph] +description = Ephrata Municipal Airport, WA, United States +location = (0.8255407361933178, -2.0859593443418896) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KEPH.TXT +zone = ('waz034', 0.0050561129029405892) + +[keqy] +description = Monroe Airport, NC, United States +location = (0.61115612640668104, -1.4070262653160952) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KEQY.TXT +zone = ('ncz082', 0.0013243404877885843) + +[keri] +description = Erie International Airport, PA, United States +location = (0.73449272688094702, -1.3994631718907866) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KERI.TXT +zone = ('paz001', 0.00082733782144395825) + +[kerv] +description = Kerrville, Kerrville Municipal Airport/Louis Schreiner Field, TX, United States +location = (0.52301699918096745, -1.7293304005177148) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KERV.TXT +zone = ('txz187', 0.0045559952025128322) + +[kery] +description = Newberry, Luce County Airport, MI, United States +location = (0.80828136914581838, -1.4915098973862433) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KERY.TXT +zone = ('miz007', 0.0029760741211876203) + +[kesc] +description = Escanaba, MI, United States +location = (0.79848813278740571, -1.5190182256523981) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KESC.TXT +zone = ('miz013', 0.0032445490811478976) + +[kesf] +description = Alexandria Esler Rgnl Airport, LA, United States +location = (0.54803338512621946, -1.6109388995907661) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KESF.TXT +zone = ('laz028', 0.0049447650070999875) + +[kesn] +description = Easton / Newman Field, MD, United States +location = (0.67718774977379981, -1.3276137843503533) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KESN.TXT +zone = ('mdz019', 0.0005778501058210676) + +[kest] +description = Estherville Municipal Airport, IA, United States +location = (0.75747289536553897, -1.6536994662646272) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KEST.TXT +zone = ('iaz004', 0.00098665347605105956) + +[ketb] +description = West Bend, West Bend Municipal Airport, WI, United States +location = (0.75786074631042655, -1.5381247328249248) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KETB.TXT +zone = ('wiz059', 0.0016063231448524536) + +[ketc] +description = Tarboro Edgecombe, US +location = (0.62709680024156256, -1.3533283019964033) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KETC.TXT +zone = ('ncz028', 0.00086047124490576333) + +[keth] +description = Wheaton, Wheaton Municipal Airport, MN, United States +location = (0.79877902099607145, -1.6848245045918595) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KETH.TXT +zone = ('mnz039', 0.00075753204554804385) + +[keuf] +description = Weedon Field Airport, AL, United States +location = (0.55765693669624372, -1.4858327291804503) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KEUF.TXT +zone = ('gaz120', 0.0022268570548471113) + +[keug] +description = Mahlon Sweet Field, OR, United States +location = (0.77027197654683077, -2.1505365266656797) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KEUG.TXT +zone = ('orz008', 0.0048925774031792655) + +[keul] +description = Caldwell, Caldwell Industrial Airport, ID, United States +location = (0.76154533028685911, -2.0356356842427199) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KEUL.TXT +zone = ('idz012', 0.0029373229634049943) + +[kevb] +description = New Smyrna Beach, New Smyrna Beach Municipal Airport, FL, United States +location = (0.50711511044057467, -1.4128149406685433) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KEVB.TXT +zone = ('flz141', 0.0016275820461834596) + +[kevm] +description = Eveleth, Eveleth-Virginia Municipal Airport, MN, United States +location = (0.82757695365397788, -1.6144295580947547) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KEVM.TXT +zone = ('mnz019', 0.00092153808968016429) + +[kevv] +description = Evansville Regional, IN, United States +location = (0.66380689217517663, -1.5277448719123699) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KEVV.TXT +zone = ('inz086', 0.00073312450089719951) + +[kevw] +description = Evanston-Uinta County Field, WY, United States +location = (0.72023920465632663, -1.9378972461310373) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KEVW.TXT +zone = ('wyz021', 0.0063816425493482933) + +[kewb] +description = New Bedford Regional Airport, MA, United States +location = (0.72751140987296969, -1.2386019924986427) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KEWB.TXT +zone = ('maz020', 0.00094742562437289996) + +[kewk] +description = Newton, Newton City/County Airport, KS, United States +location = (0.66409778038384237, -1.6979144739818168) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KEWK.TXT +zone = ('ksz068', 0.0019836975115939503) + +[kewn] +description = New Bern, Craven County Regional Airport, NC, United States +location = (0.61204333544311151, -1.34472770729352) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KEWN.TXT +zone = ('ncz093', 0.0012461382709533573) + +[kewr] +description = Newark International Airport, NJ, United States +location = (0.71005811735302637, -1.2944525285624611) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KEWR.TXT +zone = ('njz108', 0.0010815739544744519) + +[kexx] +description = Lexington, Davidson County Airport, NC, United States +location = (0.62449819891081548, -1.4015672632668019) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KEXX.TXT +zone = ('ncz038', 0.0013081813064826397) + +[keye] +description = Indianapolis Eagle Creek, IN, United States +location = (0.69522281871107461, -1.5062191444711064) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KEYE.TXT +zone = ('inz047', 0.0023472798093428122) + +[keyf] +description = Elizabethtown, Curtis L Brown Jr. Field Airport, NC, United States +location = (0.60388392119003809, -1.3715379038588773) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KEYF.TXT +zone = ('ncz096', 0.00038201974749988061) + +[keyw] +description = Key West International Airport, FL, United States +location = (0.42847833136460789, -1.4270975517140301) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KEYW.TXT +zone = ('flz078', 0.0038289892332321355) + +[kezf] +description = Fredericksburg, Shannon Airport, VA, United States +location = (0.66787932709649678, -1.3517575056696083) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KEZF.TXT +zone = ('vaz055', 0.0027025411300369479) + +[kezm] +description = Eastman, Heart Of Georgia Regional Airport, GA, United States +location = (0.56224327411954, -1.4508534220883971) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KEZM.TXT +zone = ('gaz109', 0.0009468257359744578) + +[kezs] +description = Shawano Arpt, WI, US +location = (0.78173297196826019, -1.5456635855661782) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KEZS.TXT +zone = ('wiz031', 0.0025467179771023873) + +[kf05] +description = Vernon, Wilbarger County Airport, TX, United States +location = (0.59734863276868155, -1.7328259071585146) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KF05.TXT +zone = ('txz085', 0.002602037595949752) + +[kfaf] +description = Fort Eustis / Felker, VA, United States +location = (0.64809892890722764, -1.3372130952363221) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KFAF.TXT +zone = ('vaz091', 0.0019242499207791795) + +[kfam] +description = Farmington Airport, MO, United States +location = (0.65915268083652512, -1.5783594202202054) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KFAM.TXT +zone = ('moz074', 0.00093832071374157927) + +[kfar] +description = Hector International Airport, ND, United States +location = (0.81914119560267196, -1.6897696041391768) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KFAR.TXT +zone = ('mnz003', 0.003952631966806887) + +[kfat] +description = Fresno Air Terminal, CA, United States +location = (0.64199027652524754, -2.089450002845878) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KFAT.TXT +zone = ('caz090', 0.0072789874369666059) + +[kfay] +description = Fayetteville Regional Airport, NC, United States +location = (0.61057434998934967, -1.3767738916148604) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KFAY.TXT +zone = ('ncz088', 0.0013910906524463814) + +[kfbg] +description = Fort Bragg / Simmons Army Airfield, NC, United States +location = (0.61319234386734112, -1.3776465562408575) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KFBG.TXT +zone = ('ncz088', 0.0021178351762709659) + +[kfbl] +description = Faribault, Faribault Municipal Airport, MN, United States +location = (0.77376263505081944, -1.628683080319375) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KFBL.TXT +zone = ('mnz077', 0.00044057099324197222) + +[kfci] +description = Chesterfield Airport, US +location = (0.65275314024587927, -1.3528047032208048) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KFCI.TXT +zone = ('vaz070', 0.0010986774164321873) + +[kfcm] +description = Minneapolis, Flying Cloud Airport, MN, United States +location = (0.78246988876354684, -1.6313640999759109) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KFCM.TXT +zone = ('mnz060', 0.0030078947290371268) + +[kfcs] +description = Fort Carson, CO, United States +location = (0.67544242052180559, -1.828523279672726) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KFCS.TXT +zone = ('coz085', 0.0035922926411779297) + +[kfdk] +description = Frederick, Frederick Municipal Airport, MD, United States +location = (0.68796515790486479, -1.3504388124569902) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KFDK.TXT +zone = ('mdz004', 0.0010065267285631939) + +[kfdr] +description = Frederick Municipal Airport, OK, United States +location = (0.5995205980600522, -1.7275850712657206) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KFDR.TXT +zone = ('okz037', 0.00094032060828542574) + +[kfdw] +description = Fairfield County, SC, US +location = (0.59899699928445393, -1.4158110892178002) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KFDW.TXT +zone = ('scz021', 0.0013108562981004441) + +[kfdy] +description = Findlay Airport, OH, United States +location = (0.71587588152634085, -1.4602588075019225) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KFDY.TXT +zone = ('ohz017', 0.00025773630089953906) + +[kfep] +description = Freeport, Albertus Airport, IL, United States +location = (0.73733858318905998, -1.5635047290310091) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KFEP.TXT +zone = ('ilz002', 0.0021100471781917195) + +[kfet] +description = Fremont Municipal Airport, NE, United States +location = (0.72343897495164966, -1.6845336163831937) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KFET.TXT +zone = ('nez044', 0.0028632469896528435) + +[kfew] +description = Warren Afb/Chynn, Wy, US +location = (0.71837752012086598, -1.8291050560900572) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KFEW.TXT +zone = ('wyz118', 0.0034939654864306418) + +[kffa] +description = Kill Devil Hills, First Flight Airport, NC, United States +location = (0.62860941892662436, -1.3206324673423762) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KFFA.TXT +zone = ('ncz103', 0.0045361425616982764) + +[kffc] +description = Peachtree City-Falcon Field, GA, United States +location = (0.58235819374877462, -1.4759667707698714) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KFFC.TXT +zone = ('gaz054', 0.0013419135559836187) + +[kffl] +description = Fair Field, IA, United States +location = (0.71645765794367222, -1.6054120236261176) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KFFL.TXT +zone = ('iaz087', 0.00055350182816118001) + +[kffm] +description = Fergus Falls, Fergus Falls Municipal Airport-Einar Mickelson Field, MN, United States +location = (0.80779655546470885, -1.678134075792548) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KFFM.TXT +zone = ('mnz030', 0.0026720001618146939) + +[kffo] +description = Dayton / Wright-Patterson Air Force Base, OH, United States +location = (0.69522281871107461, -1.466949236301234) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KFFO.TXT +zone = ('ohz062', 0.0032783243553990904) + +[kfft] +description = Frankfort Capital City Airport, KY, United States +location = (0.66642488605316808, -1.481784534943186) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KFFT.TXT +zone = ('kyz035', 0.0010231434273781279) + +[kffx] +description = Fremont, Mi, US +location = (0.75817102706633677, -1.5008086237899239) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KFFX.TXT +zone = ('miz044', 0.0031152321652748245) + +[kffz] +description = Mesa / Falcon Field, AZ, United States +location = (0.58410352300076895, -1.9501145508949975) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KFFZ.TXT +zone = ('azz023', 0.0054125192283056706) + +[kfgn] +description = Flag Island, MN, United States +location = (0.86073820944187029, -1.6563174601426189) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KFGN.TXT +zone = ('mnz006', 0.0095081509953458074) + +[kfhb] +description = Fernandina Beach, Fl, US +location = (0.53441981696066376, -1.4219197415997802) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KFHB.TXT +zone = ('gaz166', 0.0048524939382695483) + +[kfhr] +description = Friday Harbor Airport, WA, United States +location = (0.84677557542591553, -2.1473367563703567) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KFHR.TXT +zone = ('waz001', 0.001354419009142149) + +[kfhu] +description = Fort Huachuca, Libby Aaf Ft Huachuca, AZ, United States +location = (0.83135850036663228, -1.9256799413670769) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KFHU.TXT +zone = ('mtz013', 0.0044780753111821892) + +[kfig] +description = Clearfield-Lawrence Airport, PA, United States +location = (0.71645765794367222, -1.3686290217722201) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KFIG.TXT +zone = ('paz017', 0.001152107652809568) + +[kfit] +description = Fitchburg, Fitchburg Municipal Airport, MA, United States +location = (0.74267153368126493, -1.2523755491789643) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KFIT.TXT +zone = ('maz026', 0.0019518833794115703) + +[kfka] +description = Preston, Fillmore County Airport, MN, United States +location = (0.7623016396293899, -1.6088396563515619) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KFKA.TXT +zone = ('mnz095', 0.0011322893142168241) + +[kfkl] +description = Franklin, Venango Regional Airport, PA, United States +location = (0.7222754221169867, -1.3939362959261377) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KFKL.TXT +zone = ('paz008', 0.001455852480053913) + +[kfkn] +description = Franklin / J B Rose, VA, United States +location = (0.64053583548191895, -1.3421581947836396) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KFKN.TXT +zone = ('vaz092', 0.002872605162246758) + +[kfks] +description = Frankfort, Frankfort Dow Memorial Field Airport, MI, United States +location = (0.77885317870246951, -1.5044835114927342) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KFKS.TXT +zone = ('miz025', 0.0023086315975553002) + +[kfld] +description = Fond Du Lac County Airport, WI, United States +location = (0.76387243595618493, -1.5443254998063158) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KFLD.TXT +zone = ('wiz051', 0.0002361633421093903) + +[kflg] +description = Flagstaff Pulliam Airport, AZ, United States +location = (0.61319234386734112, -1.9489509980603348) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KFLG.TXT +zone = ('azz015', 0.0022248183790543976) + +[kfll] +description = Fort Lauderdale/Hollywood, FL, United States +location = (0.45494915835318855, -1.3988813954734551) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KFLL.TXT +zone = ('flz172', 0.0014965799389003913) + +[kflo] +description = Florence Regional Airport, SC, United States +location = (0.59661171597339491, -1.3916091902568122) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KFLO.TXT +zone = ('scz032', 0.0028070635612029689) + +[kflp] +description = Flippin, Marion County Regional Airport, AR, United States +location = (0.63355451847394162, -1.6158839991380833) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KFLP.TXT +zone = ('arz004', 0.0015224945673553254) + +[kfly] +description = Colorado Springs Meadow, Co, US +location = (0.67980574365179136, -1.8250907988104703) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KFLY.TXT +zone = ('coz084', 0.0019610210037411466) + +[kfme] +description = Fort Meade / Tipton, MD, United States +location = (0.68213284932111717, -1.3398310891143137) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KFME.TXT +zone = ('mdz010', 0.0036794579918475131) + +[kfmh] +description = Otis Air National Guard Base, MA, United States +location = (0.72692963345563821, -1.230748010864668) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KFMH.TXT +zone = ('maz021', 0.0037391593253774187) + +[kfmn] +description = Farmington Four Corners, NM, United States +location = (0.64140850010791606, -1.889028027075196) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KFMN.TXT +zone = ('nmz501', 0.006583787805492302) + +[kfmy] +description = Fort Myers Page Field, FL, United States +location = (0.4639666928218259, -1.4288428809660243) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KFMY.TXT +zone = ('flz065', 0.00072086447591216297) + +[kfnb] +description = Falls City Brenner Fld Airport, NE, United States +location = (0.69958614184106049, -1.6682438766979133) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KFNB.TXT +zone = ('nez093', 0.0019225250410271632) + +[kfnl] +description = Fort Collins/Loveland, Fort Collins-Loveland Municipal Airport, CO, United States +location = (0.70598568243170634, -1.8328866028027118) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KFNL.TXT +zone = ('coz038', 0.0052220248490634424) + +[kfnt] +description = Flint Bishop International Airport, MI, United States +location = (0.74990980194023027, -1.4617132485452511) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KFNT.TXT +zone = ('miz061', 0.0011082078288004752) + +[kfoa] +description = Flora, Flora Municipal Airport, IL, United States +location = (0.6748315552836075, -1.5437970528939067) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KFOA.TXT +zone = ('ilz071', 0.0016369621544537721) + +[kfod] +description = Fort Dodge, IA, United States +location = (0.7426375967235872, -1.6438092671699929) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KFOD.TXT +zone = ('iaz035', 0.0021328836427382805) + +[kfoe] +description = Forbes Field, KS, United States +location = (0.67951485544312562, -1.6694074295325763) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KFOE.TXT +zone = ('ksz039', 0.0023764574354265618) + +[kfok] +description = The Gabreski Airport, NY, United States +location = (0.71296699943968367, -1.2673999251565489) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KFOK.TXT +zone = ('nyz079', 0.0025250632828290429) + +[kfot] +description = Rohnerville Airport, Fortuna, California, United States +location = (0.70779985445071625, -2.1665237431957243) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KFOT.TXT +zone = ('caz003', 0.0062418670749156474) + +[kfoz] +description = Bigfork, Bigfork Municipal Airport, MN, United States +location = (0.83396679797100159, -1.634505692629501) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KFOZ.TXT +zone = ('mnz018', 0.0022672514245679403) + +[kfpk] +description = Charlotte, Fitch H Beach Airport, MI, United States +location = (0.74306423276296363, -1.4802379793004463) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KFPK.TXT +zone = ('miz066', 0.00051316113897098765) + +[kfpr] +description = Fort Pierce St Lucie, FL, United States +location = (0.47996554429844063, -1.4029538303947753) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KFPR.TXT +zone = ('flz059', 0.0026581616702621622) + +[kfqd] +description = Rutherfordton, Rutherford County-Marchman Field Airport, NC, United States +location = (0.61834106516072429, -1.430035522621554) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KFQD.TXT +zone = ('ncz508', 0.00087111911549812122) + +[kfrg] +description = Farmingdale Republic Airport, NY, United States +location = (0.7109307819790236, -1.2813625591725037) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KFRG.TXT +zone = ('nyz179', 0.0023326818579622382) + +[kfri] +description = Fort Riley, Marshall Aaf Ft Riley, KS, United States +location = (0.68164803564000753, -1.6888533062818798) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KFRI.TXT +zone = ('ksz036', 0.00094090063586881295) + +[kfrm] +description = Fairmont, Fairmont Municipal Airport, MN, United States +location = (0.76183621849552485, -1.6478817020913128) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KFRM.TXT +zone = ('mnz091', 0.001749134025331191) + +[kfsd] +description = Sioux Falls Foss Field, SD, United States +location = (0.760672665660862, -1.6886060513045138) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KFSD.TXT +zone = ('sdz062', 0.0016699375714484582) + +[kfse] +description = Fosston, Fosston Municipal Airport, MN, United States +location = (0.83065067239221246, -1.6715600022767025) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KFSE.TXT +zone = ('mnz015', 0.002044460057999309) + +[kfsi] +description = Fort Sill, OK, United States +location = (0.60388392119003809, -1.7174039839624204) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KFSI.TXT +zone = ('okz038', 0.0014949875444728489) + +[kfsm] +description = Fort Smith Regional Airport, AR, United States +location = (0.61668300237132978, -1.6470090374653155) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KFSM.TXT +zone = ('arz029', 0.0026862990658592018) + +[kfso] +description = Franklin Cnty Airport, VT, US +location = (0.78417643292105221, -1.2758356832078548) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KFSO.TXT +zone = ('vtz002', 0.0015917160499955168) + +[kfst] +description = Fort Stockton Pecos Co Airport, TX, United States +location = (0.53959762707491354, -1.7962346885108309) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KFST.TXT +zone = ('txz075', 0.0037372896738962205) + +[kfsw] +description = Fort Madison, IA, United States +location = (0.70976722914436063, -1.5940673834881542) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KFSW.TXT +zone = ('iaz099', 0.0019788206524955442) + +[kftg] +description = Denver Nexrad, CO, United States +location = (0.69435015408507739, -1.8247417329600715) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KFTG.TXT +zone = ('coz040', 0.00342119738798362) + +[kftk] +description = Fort Knox, KY, United States +location = (0.66147978650585082, -1.500401380297792) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KFTK.TXT +zone = ('kyz028', 0.0035275807548872263) + +[kftn] +description = Faith Ranch Airport, US +location = (0.4921828490624009, -1.7455037849195292) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KFTN.TXT +zone = ('txz228', 0.0054980837930844618) + +[kftw] +description = Fort Worth Meacham International ., TX, United States +location = (0.57304977107147159, -1.6993689150251454) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KFTW.TXT +zone = ('txz118', 0.001552274179846412) + +[kfty] +description = Atlanta Fulton County Airport, GA, United States +location = (0.58963039896541758, -1.4750941061438743) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KFTY.TXT +zone = ('gaz032', 0.0028943931563547801) + +[kful] +description = Fullerton Municipal Airport, CA, United States +location = (0.59108484000874628, -2.0591976291446432) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KFUL.TXT +zone = ('caz548', 0.0034765268760517387) + +[kfve] +description = Northern Aroostook Regional, ME, United States +location = (0.82524984798465217, -1.1920598791121271) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KFVE.TXT +zone = ('mez002', 0.0097689541518639397) + +[kfvx] +description = Farmville, VA, United States +location = (0.65188047561988216, -1.368919909980886) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KFVX.TXT +zone = ('vaz060', 0.0021965280931864092) + +[kfwa] +description = Fort Wayne International, IN, United States +location = (0.71558499331767511, -1.4870205226991688) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KFWA.TXT +zone = ('inz018', 0.0023663188463238982) + +[kfwc] +description = Fairfield, Fairfield Municipal Airport, IL, United States +location = (0.66983312623136826, -1.5430940730562976) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KFWC.TXT +zone = ('ilz076', 0.0009053270084900865) + +[kfwn] +description = Sussex Airport, NJ, United States +location = (0.71907565182166377, -1.3025973984051014) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KFWN.TXT +zone = ('njz001', 0.0012949366624309278) + +[kfws] +description = Fort Worth, Forth Worth Spinks Airport, TX, United States +location = (0.56839555973282008, -1.6982053621904827) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KFWS.TXT +zone = ('txz133', 0.0034177876121991623) + +[kfwz] +description = South Pass, United States +location = (0.74205640208267309, -1.8986267561847474) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KFWZ.TXT +zone = ('wyz018', 0.0052319455451879998) + +[kfxe] +description = Fort Lauderdale Executive, FL, United States +location = (0.45727626402251431, -1.3994631718907866) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KFXE.TXT +zone = ('flz172', 0.0012479312012106845) + +[kfxy] +description = Forest City, Ia, US +location = (0.75450583563714857, -1.6339772457170914) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KFXY.TXT +zone = ('iaz006', 0.0029548650549850214) + +[kfyg] +description = Washington Regional Airport, Washington, Missouri, United States +location = (0.67348037897257884, -1.5881415066396545) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KFYG.TXT +zone = ('moz062', 0.0032721498200473016) + +[kfyj] +description = West Point, Middle Peninsula Regional Airport, VA, United States +location = (0.65486692789551681, -1.339792304019825) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KFYJ.TXT +zone = ('vaz090', 0.0034012069387683967) + +[kfyv] +description = Fayetteville Drake Field, AR, United States +location = (0.62831853071795862, -1.643518378961327) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KFYV.TXT +zone = ('arz010', 0.00076286375308674294) + +[kfzg] +description = Fitzgerald Muni Arpt, GA, US +location = (0.55292030703180362, -1.4533356681356782) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KFZG.TXT +zone = ('gaz131', 0.0013594510257181293) + +[kfzy] +description = Fulton Oswego County Airport, NY, United States +location = (0.75660023073954186, -1.3331406603150022) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KFZY.TXT +zone = ('nyz006', 0.0033453397338893387) + +[kgad] +description = Gadsden, Gadsden Municipal Airport, AL, United States +location = (0.59283016926074061, -1.5024375977584519) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGAD.TXT +zone = ('alz018', 0.0015416212428305946) + +[kgaf] +description = Huston Field, ND, United States +location = (0.84482177629104405, -1.6994416370773118) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGAF.TXT +zone = ('ndz016', 0.001624374945486167) + +[kgag] +description = Gage Airport, OK, United States +location = (0.63355451847394162, -1.7412568170730094) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGAG.TXT +zone = ('okz009', 0.0014360106287001589) + +[kgai] +description = Montgomery Cnty Airport, MD, US +location = (0.68364546800617887, -1.3468705837640242) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGAI.TXT +zone = ('mdz009', 0.00074763147567238474) + +[kgao] +description = Galliano, South Lafourche Airport, LA, United States +location = (0.51390735011291921, -1.5753535753973262) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGAO.TXT +zone = ('laz067', 0.0012416285992141211) + +[kgbd] +description = Great Bend, Great Bend Municipal Airport, KS, United States +location = (0.66933376813982537, -1.7255488538050603) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGBD.TXT +zone = ('ksz047', 0.0027090332017451649) + +[kgbg] +description = Galesburg, Galesburg Municipal Airport, IL, United States +location = (0.71450385880880074, -1.5783206351257169) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGBG.TXT +zone = ('ilz027', 0.0028739488691582964) + +[kgbk] +description = Magnolia, LA, United States +location = (0.47479743045781292, -1.6092372035700717) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGBK.TXT +zone = ('laz066', 0.043089211109180021) + +[kgbn] +description = Gila Bend U. S. Army Airfield, AZ, United States +location = (0.56606845406349415, -1.9666951787889437) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGBN.TXT +zone = ('azz501', 0.0057448619122218566) + +[kgcc] +description = Gillette-Campbell Cty Airport, WY, United States +location = (0.77376263505081944, -1.8421950254800148) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGCC.TXT +zone = ('wyz054', 0.0045843996915231819) + +[kgcd] +description = Grant Cnty Rgnl Arpt, OR, US +location = (0.77492618788548229, -2.0762436781724545) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGCD.TXT +zone = ('orz503', 0.010146655292793077) + +[kgck] +description = Garden City Regional Airport, KS, United States +location = (0.66177067471451656, -1.7578374449669556) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGCK.TXT +zone = ('ksz063', 0.0022466769298815649) + +[kgcm] +description = Claremore, Claremore Regional Airport, OK, United States +location = (0.63345755573771967, -1.6664355216673747) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGCM.TXT +zone = ('okz061', 0.0022105078939293858) + +[kgcn] +description = Grand Canyon Natl Park Airport, AZ, United States +location = (0.62744586609196151, -1.9573867561116407) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGCN.TXT +zone = ('azz006', 0.0047248257050587477) + +[kgdb] +description = Granite Falls, Granite Falls Municipal Airport/Lenzen-Roe Memorial Field, MN, United States +location = (0.78108816977238449, -1.6677639111536147) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGDB.TXT +zone = ('mnz056', 0.0047010876167078971) + +[kgdj] +description = Granbury, Granbury Municipal Airport, TX, United States +location = (0.56625753139912682, -1.7072228966591199) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGDJ.TXT +zone = ('txz131', 0.00033916279630272862) + +[kgdp] +description = Guadalupe Pass, TX, United States +location = (0.55559647855152827, -1.8293959442987231) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGDP.TXT +zone = ('txz258', 0.0020349636040530952) + +[kgdv] +description = Glendive, Dawson Community Airport, MT, United States +location = (0.82263185410666062, -1.8291050560900572) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGDV.TXT +zone = ('mtz025', 0.0026044573089432721) + +[kged] +description = Georgetown Sussex Co Airport, DE, United States +location = (0.67515153231313974, -1.3153964795863928) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGED.TXT +zone = ('dez003', 0.00076825991663661327) + +[kgeg] +description = Spokane International Airport, WA, United States +location = (0.83106761215796654, -2.0513436475106688) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGEG.TXT +zone = ('waz036', 0.00093760299983273044) + +[kgeu] +description = Glendale, Glendale Municipal Airport, AZ, United States +location = (0.58516041682558773, -1.9599223316638432) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGEU.TXT +zone = ('azz023', 0.0028437194586565036) + +[kgev] +description = Jefferson, Ashe County Airport, NC, United States +location = (0.63588162414326732, -1.4209888993320501) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGEV.TXT +zone = ('ncz001', 0.0011844069092700543) + +[kgey] +description = South Big Horn County Airport, WY, United States +location = (0.77696240534614236, -1.8864100331972045) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGEY.TXT +zone = ('wyz004', 0.00274960448854199) + +[kgez] +description = Shelbyville Municipal Airport, IN, United States +location = (0.69085949558108883, -1.4974924982111346) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGEZ.TXT +zone = ('inz056', 0.001048366922552476) + +[kgfa] +description = Malmstrom Air Force Base, MT, United States +location = (0.82903139469730658, -1.9405152400090289) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGFA.TXT +zone = ('mtz012', 0.0038699403437058764) + +[kgfk] +description = Grand Forks International, ND, United States +location = (0.83688537633128102, -1.6961691447298226) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGFK.TXT +zone = ('ndz027', 0.0032373537677612284) + +[kgfl] +description = Floyd Bennett Memorial Airport, NY, United States +location = (0.75630934253087623, -1.2848532176764922) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGFL.TXT +zone = ('nyz083', 0.0015529752651510687) + +[kgge] +description = Georgetown, Sc, US +location = (0.58136917383931119, -1.384395162681902) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGGE.TXT +zone = ('scz056', 0.0013343289905204171) + +[kggg] +description = Longview Gregg County Airport, TX, United States +location = (0.56519578943749704, -1.6531176898472959) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGGG.TXT +zone = ('txz137', 0.0022488749456451543) + +[kggi] +description = Grinnell Rgnl Arpt, IA, US +location = (0.72797683100683486, -1.6184438153743419) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGGI.TXT +zone = ('iaz062', 0.0026206589972414718) + +[kggp] +description = Logansport/Cass County Airport, Logansport, Indiana, United States +location = (0.71054584030407353, -1.5074879010988682) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGGP.TXT +zone = ('inz022', 0.00094496258838781843) + +[kggw] +description = Glasgow International Airport, MT, United States +location = (0.84153958766993264, -1.8608118708346209) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGGW.TXT +zone = ('mtz017', 0.00097768796846291477) + +[kghb] +description = Salsa, LA, United States +location = (0.48590451189203238, -1.605489593815095) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGHB.TXT +zone = ('laz066', 0.031818907244966624) + +[kghg] +description = Marshfield Airport, MA, US +location = (0.73478361508961276, -1.2335987153095922) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGHG.TXT +zone = ('maz019', 0.0013601292944775472) + +[kghw] +description = Glenwood, Glenwood Municipal Airport, MN, United States +location = (0.79674280353541138, -1.6635896653592617) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGHW.TXT +zone = ('mnz048', 0.0019191027273762985) + +[kgic] +description = Idaho County Airport, Grangeville, Idaho, United States +location = (0.80184886200055894, -2.0267359600803685) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGIC.TXT +zone = ('idz007', 0.0047000269580006662) + +[kgif] +description = Winter Havens Gilbert Airport, FL, United States +location = (0.48985574339307514, -1.4268066635053644) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGIF.TXT +zone = ('flz052', 0.0022072001958187665) + +[kgjt] +description = Grand Junction Walker Field, CO, United States +location = (0.68300551394711428, -1.8942640148311789) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGJT.TXT +zone = ('coz006', 0.0020301030462150198) + +[kgkj] +description = Port Meadville Airport, PA, United States +location = (0.72663874524697247, -1.4000449483081181) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGKJ.TXT +zone = ('paz003', 0.0016964629941848255) + +[kgky] +description = Arlington Municipal Airport, TX, United States +location = (0.5701408889848143, -1.6947147036864938) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGKY.TXT +zone = ('txz118', 0.0033493705581268711) + +[kgld] +description = Goodland Renner Field, KS, United States +location = (0.68707794886843443, -1.7749998492782333) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGLD.TXT +zone = ('ksz013', 0.00037926229205122896) + +[kgle] +description = Gainesville, Gainesville Municipal Airport, TX, United States +location = (0.58732753398014736, -1.6964067034335664) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGLE.TXT +zone = ('txz092', 0.00031025646977553419) + +[kglh] +description = Greenville Municipal Airport, MS, United States +location = (0.58439441120943469, -1.5879587311061742) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGLH.TXT +zone = ('msz034', 0.0035251190837804593) + +[kglr] +description = Gaylord Regional Airport, MI, United States +location = (0.78568905160611402, -1.4780029882305314) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGLR.TXT +zone = ('miz022', 0.0010461749452326985) + +[kgls] +description = Scholes Field, TX, United States +location = (0.51079969441700712, -1.6557356837252872) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGLS.TXT +zone = ('txz238', 0.002679724960195235) + +[kglw] +description = Glasgow, Glasgow Municipal Airport, KY, United States +location = (0.64632451083436682, -1.5001735178676705) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGLW.TXT +zone = ('kyz074', 0.00118633928045962) + +[kgly] +description = Clinton, Mo, US +location = (0.66950830106502479, -1.6350244432682881) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGLY.TXT +zone = ('moz054', 0.0016035930774514124) + +[kgmj] +description = Grove, Grove Municipal Airport, OK, United States +location = (0.63888262082933545, -1.6535006926553724) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGMJ.TXT +zone = ('okz063', 0.0035552196636238647) + +[kgmu] +description = Greenville Downtown Airport, SC, United States +location = (0.60824724432002386, -1.4372786390173302) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGMU.TXT +zone = ('scz006', 0.0011004261956610217) + +[kgna] +description = Grand Marais, The Bay Of Grand Marais, MN, United States +location = (0.83484915887062106, -1.5774867555942083) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGNA.TXT +zone = ('mnz021', 0.00062071379002765718) + +[kgnc] +description = Seminole, Gaines County Airport, TX, United States +location = (0.57029118122595823, -1.7916241104034791) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGNC.TXT +zone = ('txz045', 0.0011697571777357473) + +[kgnr] +description = Greenville, ME, United States +location = (0.79354303324008857, -1.2144582711793876) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGNR.TXT +zone = ('mez010', 0.0025118511301528076) + +[kgnt] +description = Grants-Milan Municipal Airport, NM, United States +location = (0.61377412028467249, -1.8832102629018816) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGNT.TXT +zone = ('nmz506', 0.0027683322592464187) + +[kgnv] +description = Gainesville Regional Airport, FL, United States +location = (0.51836278784231582, -1.4361150861826675) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGNV.TXT +zone = ('flz036', 0.0012082717811818838) + +[kgok] +description = Guthrie Municipal Airport, OK, United States +location = (0.62570053683996718, -1.7002415796511428) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGOK.TXT +zone = ('okz019', 0.0012684572184585262) + +[kgon] +description = Groton/New London Airport, CT, United States +location = (0.72140275749098959, -1.2575097260619144) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGON.TXT +zone = ('ctz012', 0.00085511064312976609) + +[kgoo] +description = Nevada County Air Park, Grass Valley, California, United States +location = (0.68458843100378786, -2.1119022086499655) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGOO.TXT +zone = ('caz067', 0.011021260060125191) + +[kgop] +description = Gatesville, City-County Airport, TX, United States +location = (0.54840184352386279, -1.7068786789455324) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGOP.TXT +zone = ('txz157', 0.00052835278560843285) + +[kgov] +description = Grayling, Grayling Army Airfield, MI, United States +location = (0.77981795792787745, -1.4787980826675511) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGOV.TXT +zone = ('miz028', 0.0014727895608407874) + +[kgpi] +description = Glacier Park International Airport, MT, United States +location = (0.84299402871326112, -1.9943295586121872) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGPI.TXT +zone = ('mtz002', 0.0053935146857536876) + +[kgpm] +description = Grand Prairie, Grand Prairie Municipal Airport, TX, United States +location = (0.57069842471809018, -1.6937838614187637) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGPM.TXT +zone = ('txz118', 0.0038121683978532871) + +[kgpt] +description = Gulfport-Biloxi Reg Airport, MS, United States +location = (0.53087098081494188, -1.5547974753182818) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGPT.TXT +zone = ('msz081', 0.0017912653740710988) + +[kgpz] +description = Grand Rapids, Grand Rapids/Itasca County Airport-Gordon Newstrom Field, MN, United States +location = (0.82408629514998932, -1.6321737388233639) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGPZ.TXT +zone = ('mnz026', 0.00090262464232928404) + +[kgrb] +description = Austin Straubel International Airport, WI, United States +location = (0.77638062892881099, -1.5382168474243358) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGRB.TXT +zone = ('wiz039', 0.001701365136019295) + +[kgrd] +description = Greenwood County Airport, SC, United States +location = (0.59748438059939213, -1.4337879805133418) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGRD.TXT +zone = ('scz019', 0.0014310552374135756) + +[kgrf] +description = Fort Lewis / Gray U. S. Army Airfield, WA, United States +location = (0.82234096589799499, -2.138900998319051) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGRF.TXT +zone = ('waz509', 0.001083116387473931) + +[kgri] +description = Central Nebraska Regional, NE, United States +location = (0.71500321690034374, -1.7159495429190916) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGRI.TXT +zone = ('nez062', 0.0029475832850074089) + +[kgrk] +description = Fort Hood, Robert Gray Aaf Ft Hood, TX, United States +location = (0.5422156209529051, -1.7072228966591199) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGRK.TXT +zone = ('txz157', 0.0056649400910547491) + +[kgrr] +description = Gerald R. Ford International, MI, United States +location = (0.74845536089690168, -1.4925473986638174) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGRR.TXT +zone = ('miz057', 0.00263123572161548) + +[kgry] +description = Green Canyon 338, LA, United States +location = (0.48214235772662245, -1.5784951680509161) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGRY.TXT +zone = ('laz067', 0.030664358633205352) + +[kgsb] +description = Seymour-Johnson Air Force Base, NC, United States +location = (0.61668300237132978, -1.3607750401382457) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGSB.TXT +zone = ('ncz078', 0.00075180375402137398) + +[kgsh] +description = Goshen Municipal Airport, IN, United States +location = (0.72489341599497814, -1.497201610002469) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGSH.TXT +zone = ('inz005', 0.0014896043112221059) + +[kgso] +description = Piedmont Triad International Airport, NC, United States +location = (0.63006385996995296, -1.3953907369694665) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGSO.TXT +zone = ('ncz022', 0.0022990204158167596) + +[kgsp] +description = Greer Greenville Spartburg, SC, United States +location = (0.60882902073735523, -1.4349515333480047) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGSP.TXT +zone = ('scz006', 0.002378196688929577) + +[kgtb] +description = Fort Drum / Wheeler-Sack U. S. Army Airfield, NY, United States +location = (0.76881753550350207, -1.3217960201770389) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGTB.TXT +zone = ('nyz007', 0.0022245090865923357) + +[kgtf] +description = Great Falls International, MT, United States +location = (0.8284496182799751, -1.9440058985130175) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGTF.TXT +zone = ('mtz012', 0.0028019781428042746) + +[kgtr] +description = Columbus/West Point/Starkville, Golden Triangle Regional Airport, MS, United States +location = (0.58381263479210332, -1.5460708290583103) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGTR.TXT +zone = ('msz031', 0.0020777633280187088) + +[kgtu] +description = Georgetown, Georgetown Municipal Airport, TX, United States +location = (0.5355251921535934, -1.7048957909897944) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGTU.TXT +zone = ('txz173', 0.0013832441845032528) + +[kguc] +description = Gunnison, Gunnison-Crested Butte Regional Airport, CO, United States +location = (0.67253353843514829, -1.8663387467992698) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGUC.TXT +zone = ('coz014', 0.003613021496679622) + +[kgul] +description = Gunnison, TX, United States +location = (0.47654275970980731, -1.6325518934946293) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGUL.TXT +zone = ('txz238', 0.042554795189092373) + +[kgup] +description = Gallup Municipal Airport, NM, United States +location = (0.6198827726666527, -1.8986273379611649) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGUP.TXT +zone = ('nmz505', 0.0085696519329416451) + +[kgus] +description = Grissom Air Force Base / Peru, IN, United States +location = (0.70947634093569489, -1.5036011505931151) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGUS.TXT +zone = ('inz023', 0.0025052096127270392) + +[kguy] +description = Guymon Municipal Airport, OK, United States +location = (0.64024494727325321, -1.7715091907742444) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGUY.TXT +zone = ('okz002', 0.0011355526738583619) + +[kgvl] +description = Gilmer Memorial Airport, GA, United States +location = (0.59806615701672361, -1.4631676895885795) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGVL.TXT +zone = ('gaz023', 0.00089680366350296974) + +[kgvt] +description = Greenville / Majors, TX, United States +location = (0.57712220599279174, -1.6766796347492192) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGVT.TXT +zone = ('txz105', 0.0010307362819613538) + +[kgvx] +description = Galveston 424, TX, United States +location = (0.49875692257824628, -1.6576555459024811) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGVX.TXT +zone = ('txz237', 0.012982027392744023) + +[kgwb] +description = Auburn/De Kalb Cnty, IN, US +location = (0.72082098107365811, -1.4847515946715761) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGWB.TXT +zone = ('inz009', 0.0019402717685632908) + +[kgwo] +description = Greenwood-Leflore Airport, MS, United States +location = (0.58468529941810043, -1.5722507678382251) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGWO.TXT +zone = ('msz027', 0.0025393584527225962) + +[kgwr] +description = Gwinner-Roger Melroe Field Airport, ND, United States +location = (0.80666693958772373, -1.7041976592889967) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGWR.TXT +zone = ('ndz052', 0.0019401342762502001) + +[kgww] +description = Goldsboro, Goldsboro-Wayne Municipal Airport, NC, United States +location = (0.61890344903081151, -1.3607459513173792) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGWW.TXT +zone = ('ncz078', 0.0017774903601879702) + +[kgxa] +description = Gray Butte Field Airport, Palmdale, California, United States +location = (0.6033013686829658, -2.0537356206687503) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGXA.TXT +zone = ('caz059', 0.0059694218356810217) + +[kgxy] +description = Greeley, Greeley-Weld County Airport, CO, United States +location = (0.70569479422304049, -1.8261961740034003) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGXY.TXT +zone = ('coz043', 0.0029571102001634689) + +[kgyb] +description = Giddings, Giddings-Lee County Airport, TX, United States +location = (0.52655129091625597, -1.692620308584101) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGYB.TXT +zone = ('txz194', 0.0024796152817154636) + +[kgyh] +description = Donaldson Center Arpt, SC, US +location = (0.60667644799322895, -1.4378022377929287) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGYH.TXT +zone = ('scz006', 0.00080582760121764116) + +[kgyi] +description = Sherman/Denison, Grayson County Airport, TX, United States +location = (0.58846684613075484, -1.6871516102611852) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGYI.TXT +zone = ('txz093', 0.0015764883887896264) + +[kgyl] +description = Glencoe, Glencoe Municipal Airport, MN, United States +location = (0.78114149927730658, -1.6420251528235097) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGYL.TXT +zone = ('mnz066', 0.002645265289414213) + +[kgyr] +description = Goodyear Municipal, AZ, United States +location = (0.58323085837477173, -1.9614591910329608) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGYR.TXT +zone = ('azz023', 0.004480880366013045) + +[kgyy] +description = Gary Regional, IN, United States +location = (0.72634785703830684, -1.5257086544517098) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGYY.TXT +zone = ('inz001', 0.0035389018751513178) + +[kgzh] +description = Evergreen Middleton Field, AL, United States +location = (0.5483242733348852, -1.5193091138610639) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGZH.TXT +zone = ('alz056', 0.00086845714567094958) + +[kgzl] +description = Stigler, OK, US +location = (0.61575216010359946, -1.6598081186466074) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGZL.TXT +zone = ('okz074', 0.00099204751000547104) + +[kh08] +description = High Island 264C, LA, United States +location = (0.49683706040105247, -1.6359552855360182) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KH08.TXT +zone = ('laz074', 0.024734264215750788) + +[kh21] +description = Camdenton, Mo, US +location = (0.66270151698224689, -1.617745683673544) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KH21.TXT +zone = ('moz069', 0.0014442239655997281) + +[kh78] +description = Mississippi Canyon, LA, US +location = (0.49131018443640373, -1.6292648567367065) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KH78.TXT +zone = ('laz074', 0.028700571426648988) + +[khaf] +description = Half Moon Bay, Ca, US +location = (0.6544984694978736, -2.1380283336930539) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHAF.TXT +zone = ('caz509', 0.0026577766179397932) + +[khai] +description = Three Rivers Muni Arpt, MI, US +location = (0.73234015413682074, -1.4938273067819468) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHAI.TXT +zone = ('miz079', 0.0011325942863091771) + +[khao] +description = Butler County Regional Airport, OH, United States +location = (0.68707794886843443, -1.4750941061438743) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHAO.TXT +zone = ('ohz070', 0.0014851804036259831) + +[khbg] +description = Hattiesburg Chain Municipal, MS, United States +location = (0.54570627945689365, -1.557706357404939) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHBG.TXT +zone = ('msz074', 0.0013623957586785299) + +[khbi] +description = Asheboro, Asheboro Municipal Airport, NC, United States +location = (0.62227775225133375, -1.3944308058808699) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHBI.TXT +zone = ('ncz039', 0.0016004104164527599) + +[khbr] +description = Hobart Municipal Airport, OK, United States +location = (0.61057434998934967, -1.7287486241003833) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHBR.TXT +zone = ('okz035', 0.0015325772251031308) + +[khbv] +description = Hebbronville, Jim Hogg County Airport, TX, United States +location = (0.47705666221178339, -1.7232217481357348) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHBV.TXT +zone = ('txz249', 0.0050911186453474833) + +[khcd] +description = Hutchinson, Hutchinson Municipal Airport-Butler Field, MN, United States +location = (0.78307105772812258, -1.6472999256739815) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHCD.TXT +zone = ('mnz066', 0.0015659148747603432) + +[khco] +description = Hallock, Hallock Municipal Airport, MN, United States +location = (0.85089649171534665, -1.6919755063882251) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHCO.TXT +zone = ('mnz004', 0.0018921880244418456) + +[khdc] +description = Hammond, Hammond Municipal Airport, LA, United States +location = (0.53268903211910268, -1.5780830764219731) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHDC.TXT +zone = ('laz072', 0.00047528758510313604) + +[khde] +description = Brewster Field Airport, NE, United States +location = (0.70598568243170634, -1.7336937236477006) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHDE.TXT +zone = ('nez073', 0.0015159999138862855) + +[khdn] +description = Hayden, Yampa Valley Airport, CO, United States +location = (0.70656745884903771, -1.8712838463465871) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHDN.TXT +zone = ('coz004', 0.003752236293217619) + +[khdo] +description = Hondo Municipal Airport, TX, United States +location = (0.51254502366900145, -1.7307848415610436) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHDO.TXT +zone = ('txz204', 0.00088148688655510484) + +[khef] +description = Manassas, Manassas Regional Airport/Harry P. Davis Field, VA, United States +location = (0.67573330873047133, -1.352921058504271) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHEF.TXT +zone = ('vaz052', 0.00051269572501432329) + +[khei] +description = Hettinger Municipal Airport, ND, United States +location = (0.80314234412605734, -1.7915804771721793) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHEI.TXT +zone = ('ndz044', 0.0020313629272981828) + +[kheq] +description = Holyoke, US +location = (0.70790554460890009, -1.7847736930894016) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHEQ.TXT +zone = ('coz051', 0.0014214818878364992) + +[khez] +description = Natchez, Hardy-Anders Field Natchez-Adams County Airport, MS, United States +location = (0.55181493183887387, -1.5934856070708228) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHEZ.TXT +zone = ('msz060', 0.0024596762193329182) + +[khfd] +description = Hartford-Brainard Airport, CT, United States +location = (0.72838407449896692, -1.2679817015738806) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHFD.TXT +zone = ('ctz002', 0.0016697196794856943) + +[khff] +description = Mackall U. S. Army Airfield, NC, United States +location = (0.61144701461534678, -1.387536755335492) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHFF.TXT +zone = ('ncz085', 0.0033666852431498764) + +[khfj] +description = Monett Municipal, MO, US +location = (0.64402649398590761, -1.6409585627250687) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHFJ.TXT +zone = ('moz102', 0.0042573509683082296) + +[khgr] +description = Hagerstown Regional Airport, MD, United States +location = (0.69289571304174891, -1.3567026052169255) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHGR.TXT +zone = ('mdz003', 0.0020014493575402376) + +[khhf] +description = Canadian, Hemphill County Airport, TX, United States +location = (0.62657320146596429, -1.7523105690023069) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHHF.TXT +zone = ('txz010', 0.0021309120480873778) + +[khhr] +description = Hawthorne Municipal Airport, CA, United States +location = (0.59195750463474339, -2.0653062815266234) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHHR.TXT +zone = ('caz041', 0.00051702263259649234) + +[khhw] +description = Stan Stamper Municipal Airport, Hugo, Oklahoma, United States +location = (0.5939991110903573, -1.6675235438272538) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHHW.TXT +zone = ('okz053', 0.00019136950176126458) + +[khib] +description = Chisholm-Hibbing Airport, MN, United States +location = (0.82699517723664651, -1.6202473222680691) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHIB.TXT +zone = ('mnz019', 0.004828038617349613) + +[khie] +description = Mt Washington Regional Airport, NH, United States +location = (0.77434441146815092, -1.2487830798019428) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHIE.TXT +zone = ('nhz002', 0.0033718403944270631) + +[khif] +description = Hill Air Force Base / Ogden, UT, United States +location = (0.71762121077833518, -1.9541869858163177) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHIF.TXT +zone = ('utz002', 0.0045812916719682167) + +[khio] +description = Portland-Hillsboro Airport, OR, United States +location = (0.79499747428341705, -2.1458823153270283) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHIO.TXT +zone = ('orz006', 0.002321758308662119) + +[khjh] +description = Hebron, Hebron Municipal Airport, NE, United States +location = (0.70078847977021208, -1.703213487516344) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHJH.TXT +zone = ('nez087', 0.00043310120735116269) + +[khjo] +description = Hanford, Hanford Municipal Airport, CA, United States +location = (0.63387934364028509, -2.0879179916135717) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHJO.TXT +zone = ('caz091', 0.0096040320671241259) + +[khka] +description = Blytheville Municipal Airport, AR, United States +location = (0.62715497788329566, -1.5678874447082394) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHKA.TXT +zone = ('tnz048', 0.0041495372063075605) + +[khks] +description = Hawkins Field, MS, United States +location = (0.56432312481149993, -1.5745778735075511) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHKS.TXT +zone = ('msz048', 0.0035315596051756926) + +[khky] +description = Hickory Regional Airport, NC, United States +location = (0.62395520758797285, -1.4204071229147186) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHKY.TXT +zone = ('ncz056', 0.0028388472638071322) + +[khlc] +description = Hill City Municipal Airport, KS, United States +location = (0.68707794886843443, -1.7424203699076724) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHLC.TXT +zone = ('ksz016', 0.00073644997049386357) + +[khlg] +description = Wheeling Ohio County Airport, WV, United States +location = (0.70104058288438897, -1.4076080417334269) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHLG.TXT +zone = ('wvz003', 0.0012864364753352568) + +[khln] +description = Helena Regional Airport, MT, United States +location = (0.81332343142935759, -1.9541869858163177) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHLN.TXT +zone = ('mtz014', 0.0070536010793573814) + +[khlr] +description = Fort Hood, Hood Aaf Ft Hood, TX, United States +location = (0.54337917378756795, -1.70518667919846) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHLR.TXT +zone = ('txz158', 0.0037117012913674041) + +[khlx] +description = Hillsville, VA, United States +location = (0.6416993883165818, -1.4105169238200839) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHLX.TXT +zone = ('vaz016', 0.0012813743707094291) + +[khmn] +description = Holloman Air Force Base, NM, United States +location = (0.57334065928013733, -1.8517943363659835) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHMN.TXT +zone = ('nmz414', 0.0034825111168410882) + +[khms] +description = Hanford, WA, United States +location = (0.81274165501202622, -2.0874137853852179) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHMS.TXT +zone = ('waz028', 0.0064219058018914867) + +[khnb] +description = Huntingburg, IN, United States +location = (0.66758843888783104, -1.5175637846090695) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHNB.TXT +zone = ('inz083', 0.0022145016639157356) + +[khnd] +description = Las Vegas, Henderson Executive Airport, NV, United States +location = (0.62784341331047133, -2.0094751380100493) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHND.TXT +zone = ('nvz020', 0.0030244593603018801) + +[khnr] +description = Harlan, Harlan Municipal Airport, IA, United States +location = (0.72578547316821973, -1.6639920607145826) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHNR.TXT +zone = ('iaz056', 0.0017982060054746261) + +[khnz] +description = Oxford, Henderson-Oxford Airport, NC, United States +location = (0.63463080484600476, -1.3705925171807138) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHNZ.TXT +zone = ('ncz009', 0.0016996234689822054) + +[khob] +description = Hobbs / Lea County, NM, United States +location = (0.57043177719347993, -1.8014706762668138) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHOB.TXT +zone = ('nmz033', 0.0034310193313523492) + +[khoe] +description = Homerville Arpt, GA, US +location = (0.54209926566943878, -1.4446090218757064) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHOE.TXT +zone = ('gaz163', 0.0027026193849130115) + +[khon] +description = Huron Regional Airport, SD, United States +location = (0.77463529967681655, -1.714495101875763) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHON.TXT +zone = ('sdz038', 0.00078033720857488098) + +[khop] +description = Fort Campbell U. S. Army Airfield, KY, United States +location = (0.63995405906458747, -1.5271630954950384) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHOP.TXT +zone = ('tnz006', 0.0033871414795335437) + +[khot] +description = Hot Springs Memorial Field, AR, United States +location = (0.60184770372937801, -1.6249015336067207) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHOT.TXT +zone = ('arz042', 0.0017834264877037557) + +[khou] +description = Houston Hobby Airport, TX, United States +location = (0.51719923500765297, -1.6630078889419304) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHOU.TXT +zone = ('txz213', 0.0042434096409396408) + +[khpn] +description = White Plains Westchester, NY, United States +location = (0.71674854615233807, -1.286307658719821) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHPN.TXT +zone = ('nyz071', 0.0017955263504674023) + +[khqi] +description = High Island 376, TX, United States +location = (0.48802799581529221, -1.6348644547535218) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHQI.TXT +zone = ('txz238', 0.031896530420638732) + +[khqm] +description = Hoquiam Bowerman Airport, WA, United States +location = (0.81972297202000344, -2.163044719638306) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHQM.TXT +zone = ('waz517', 0.0040577783442163791) + +[khqu] +description = Thomson, Thomson-Mcduffie County Airport, GA, United States +location = (0.58519920192007646, -1.4401826729671765) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHQU.TXT +zone = ('gaz063', 0.00095874763708886661) + +[khqz] +description = Mesquite, Mesquite Metro Airport, TX, United States +location = (0.57154200052322091, -1.6847711750869374) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHQZ.TXT +zone = ('txz120', 0.0031881871218999418) + +[khri] +description = Hermiston Municipal Airport, OR, United States +location = (0.79994257383073442, -2.0815960212119036) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHRI.TXT +zone = ('orz044', 0.0028952391717515019) + +[khrj] +description = Erwin, Harnett County Airport, NC, United States +location = (0.6174732486715383, -1.37416074587368) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHRJ.TXT +zone = ('ncz077', 0.0019387629819185494) + +[khrl] +description = Rio Grande Valley, TX, United States +location = (0.45756715223118005, -1.7043140145724629) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHRL.TXT +zone = ('txz255', 0.0020152427586951887) + +[khro] +description = Harrison Boone County Airport, AR, United States +location = (0.63297274205661014, -1.6257741982327181) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHRO.TXT +zone = ('arz003', 0.0011013470264663271) + +[khrt] +description = Hurlburt Field, FL, United States +location = (0.53087098081494188, -1.5129095732704181) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHRT.TXT +zone = ('flz006', 0.0028227918278100187) + +[khrx] +description = Hereford Muni Arpt, TX, US +location = (0.60842177724522328, -1.7859954235657973) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHRX.TXT +zone = ('txz016', 0.0043476547027109479) + +[khsa] +description = Bay St. Louis, Stennis International Airport, MS, United States +location = (0.53001770873618914, -1.5612794342347165) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHSA.TXT +zone = ('msz080', 0.00099086733460717214) + +[khsb] +description = Harrisburg, Harrisburg-Raleigh Airport, IL, United States +location = (0.6599332308631114, -1.5454745082305454) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHSB.TXT +zone = ('ilz086', 0.0010203901055050055) + +[khse] +description = Mitchell Field, NC, United States +location = (0.61493767311933545, -1.3197598027163788) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHSE.TXT +zone = ('ncz104', 0.0046093958550499151) + +[khsi] +description = Hastings Municipal Airport, NE, United States +location = (0.70860367630969778, -1.7179857603797517) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHSI.TXT +zone = ('nez075', 0.001595665014981649) + +[khsp] +description = Hot Springs / Ingalls, VA, United States +location = (0.66235245113184815, -1.3933545195088064) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHSP.TXT +zone = ('vaz020', 0.0022821516847637341) + +[khst] +description = Homestead Air Force Base, FL, United States +location = (0.4447680710498883, -1.4029538303947753) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHST.TXT +zone = ('flz173', 0.0020513915267655921) + +[khsv] +description = Huntsville International Jones Field, AL, United States +location = (0.6047565858160352, -1.5146549025224123) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHSV.TXT +zone = ('alz007', 0.0035723903368289527) + +[khtl] +description = Roscommon County Airport, MI, United States +location = (0.77405352325948518, -1.4777121000218658) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHTL.TXT +zone = ('miz034', 0.00073185457544814214) + +[khto] +description = East Hampton, East Hampton Airport, NY, United States +location = (0.71487716534325529, -1.2610343215235809) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHTO.TXT +zone = ('nyz081', 0.002861019036557839) + +[khts] +description = Tri-State Airport, WV, United States +location = (0.66962465634849111, -1.4407692975213189) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHTS.TXT +zone = ('kyz103', 0.0018884567761170959) + +[khua] +description = Redstone Army Airfield, AL, US +location = (0.60528018459163346, -1.5128513956286849) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHUA.TXT +zone = ('alz006', 0.0023602383815438249) + +[khuf] +description = Terre Haute International -Hulman Fld, IN, United States +location = (0.68853238991176302, -1.5239633251997153) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHUF.TXT +zone = ('inz051', 0.0010448404748255175) + +[khul] +description = Houlton Int'L Airport, ME, United States +location = (0.80488767337805167, -1.1833332328521553) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHUL.TXT +zone = ('mez006', 0.0043238719057879715) + +[khum] +description = Houma-Terrebonne, LA, United States +location = (0.51603568217299012, -1.5824318551415255) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHUM.TXT +zone = ('laz065', 0.0028943921757766597) + +[khut] +description = Hutchinson Municipal Airport, KS, United States +location = (0.66438866859250822, -1.708095561285117) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHUT.TXT +zone = ('ksz067', 0.0036122293972816115) + +[khvn] +description = Tweed-New Haven Airport, CT, United States +location = (0.72023920465632663, -1.2720541364952007) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHVN.TXT +zone = ('ctz010', 0.0011777172418055014) + +[khvr] +description = Havre City-County Airport, MT, United States +location = (0.8473573518432469, -1.9157897422724424) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHVR.TXT +zone = ('mtz011', 0.0042062271942322283) + +[khvs] +description = Hartsville, SC, US +location = (0.60039326268604931, -1.3983577966978569) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHVS.TXT +zone = ('scz023', 0.0026190239629082972) + +[khwd] +description = Hayward Air Terminal, CA, United States +location = (0.65740735158453079, -2.131337904893742) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHWD.TXT +zone = ('caz508', 0.0014365649066010401) + +[khwo] +description = Hollywood North Perry Airport, FL, United States +location = (0.4537856055185257, -1.4003358365167837) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHWO.TXT +zone = ('flz072', 0.0022703511408541173) + +[khwv] +description = Shirley Brookhaven Airport, NY, United States +location = (0.71238522302235219, -1.2717632482865346) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHWV.TXT +zone = ('nyz080', 0.0043354092156492816) + +[khwy] +description = Warrenton, VA, US +location = (0.6733480254194123, -1.3564698946499929) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHWY.TXT +zone = ('vaz502', 0.0002743102566814987) + +[khxd] +description = Hilton Head Island, Hilton Head Airport, SC, United States +location = (0.56228690735083986, -1.408480706359424) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHXD.TXT +zone = ('scz048', 0.0024477851014082334) + +[khya] +description = Hyannis Barnstable Boardmn, MA, United States +location = (0.72722052166430395, -1.2263846877346822) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHYA.TXT +zone = ('maz022', 0.0011192926476798135) + +[khyi] +description = San Marcos, San Marcos Municipal Airport, TX, United States +location = (0.52174193919964929, -1.7080616243274394) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHYI.TXT +zone = ('txz191', 0.0038182731511157367) + +[khyr] +description = Hayward Municipal Airport, WI, United States +location = (0.80314234412605734, -1.5961036009488143) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHYR.TXT +zone = ('wiz008', 0.0044063678265361195) + +[khys] +description = Hays, Hays Regional Airport, KS, United States +location = (0.67806041439979703, -1.7325301708130378) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHYS.TXT +zone = ('ksz031', 0.0013237567859098259) + +[khyw] +description = Conway-Horry Cty, Sc, US +location = (0.5904448859496817, -1.3809045041779135) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHYW.TXT +zone = ('scz053', 0.0026046779160556299) + +[khyx] +description = Saginaw, Saginaw County H.W. Browne Airport, MI, United States +location = (0.75805467178287045, -1.4636767439537446) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHYX.TXT +zone = ('miz053', 0.002965915478243306) + +[khze] +description = Mercer County Regional Airport, ND, United States +location = (0.82536620326811838, -1.7729199985862731) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHZE.TXT +zone = ('ndz019', 0.0029858058832364603) + +[khzr] +description = False River Regional Airport, New Roads, Louisiana, United States +location = (0.53613557335381223, -1.596603929249496) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHZR.TXT +zone = ('laz034', 0.0018402592475214754) + +[khzx] +description = Mc Gregor, Isedor Iverson Airport, MN, United States +location = (0.81364825659570106, -1.6285618768990977) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHZX.TXT +zone = ('mnz035', 0.0038464995158052095) + +[khzy] +description = Ashtabula County Airport, OH, United States +location = (0.72925673912496403, -1.408480706359424) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KHZY.TXT +zone = ('ohz014', 0.0018951377876231272) + +[ki16] +description = Pineville, Kee Field Airport, WV, United States +location = (0.65624864688667894, -1.4234759935161418) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KI16.TXT +zone = ('wvz034', 0.00021411955228338621) + +[ki35] +description = Harlan Tucker-Guthrie Memorial, KY, United States +location = (0.64331668603241399, -1.4548798307380877) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KI35.TXT +zone = ('kyz088', 0.0019635060521837589) + +[ki39] +description = Madison / Richmond, US +location = (0.6567673975254662, -1.471836158206818) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KI39.TXT +zone = ('kyz057', 0.001730428055734691) + +[ki75] +description = Osceola Muni, Ia, US +location = (0.71645765794367222, -1.6350244432682881) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KI75.TXT +zone = ('iaz083', 0.0014312887438717909) + +[kiab] +description = Mcconnell Air Force Base, KS, United States +location = (0.65653468695853368, -1.6976235857731512) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KIAB.TXT +zone = ('ksz083', 0.0029381932822070368) + +[kiad] +description = Dulles International Airport, VA, United States +location = (0.67951485544312562, -1.3517575056696083) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KIAD.TXT +zone = ('vaz053', 0.0028493206472852695) + +[kiag] +description = Niagara Falls International Airport, NY, United States +location = (0.75252779581822171, -1.3776465562408575) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KIAG.TXT +zone = ('nyz001', 0.0028415686642183613) + +[kiah] +description = Houston Intercontinental, TX, United States +location = (0.52359877559829882, -1.6644623299852588) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KIAH.TXT +zone = ('txz213', 0.0025205840836588517) + +[kibm] +description = Kimball, Kimball Municipal Airport/Robert E Arraj Field, NE, United States +location = (0.71878476361299803, -1.8093246579007884) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KIBM.TXT +zone = ('nez054', 0.0006825381514872095) + +[kicl] +description = Clarinda, IA, United States +location = (0.71063989377035786, -1.6586445658119444) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KICL.TXT +zone = ('iaz091', 0.0015945426507003866) + +[kicr] +description = Winner Regional Airport, SD, United States +location = (0.75718200715687334, -1.742711258116338) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KICR.TXT +zone = ('sdz049', 0.00078291819654512063) + +[kict] +description = Wichita Mid-Continent Airport, KS, United States +location = (0.65711646337586505, -1.7005324678598084) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KICT.TXT +zone = ('ksz083', 0.00071837410392849551) + +[kida] +description = Idaho Falls Regional Airport, ID, United States +location = (0.75950911282619904, -1.9559323150683119) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KIDA.TXT +zone = ('idz020', 0.0054406451378095641) + +[kidi] +description = Indiana / Stewart Field, PA, United States +location = (0.70918545272702926, -1.3805554383275145) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KIDI.TXT +zone = ('paz023', 0.00036699657813668855) + +[kidp] +description = Independence Municip, US +location = (0.64838981711589339, -1.6715018246349693) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KIDP.TXT +zone = ('ksz099', 0.00083202218473531491) + +[kien] +description = Pine Ridge Airport, SD, United States +location = (0.75107335477489312, -1.7892533715028536) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KIEN.TXT +zone = ('sdz042', 0.0052942469021732838) + +[kier] +description = Natchitoches, Natchitoches Regional Airport, LA, United States +location = (0.5538947825308338, -1.6248869891962874) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KIER.TXT +zone = ('laz018', 0.00021771141794363534) + +[kifa] +description = Iowa Falls Muni Arpt, IA, US +location = (0.74124133332199171, -1.6278685933351111) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KIFA.TXT +zone = ('iaz037', 0.0015520496111445065) + +[kifp] +description = Bullhead City, Laughlin/Bullhead International Airport, AZ, United States +location = (0.61361413176990642, -1.9994394948110816) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KIFP.TXT +zone = ('azz002', 0.0089228833001409082) + +[kigm] +description = Kingman Airport, AZ, United States +location = (0.61522856132800119, -1.9885117944388728) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KIGM.TXT +zone = ('azz003', 0.0016767346015355946) + +[kigq] +description = Chicago, Lansing Municipal Airport, IL, United States +location = (0.72500977127844446, -1.5277254793651254) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KIGQ.TXT +zone = ('inz001', 0.002930548446075861) + +[kigx] +description = Chapel Hill Williams Airport, NC, United States +location = (0.62715497788329566, -1.3799736619101832) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KIGX.TXT +zone = ('ncz024', 0.0023609073051117091) + +[kiib] +description = Independence, Independence Municipal Airport, IA, United States +location = (0.74089226747159298, -1.6045393590001205) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KIIB.TXT +zone = ('iaz040', 0.0012808165606781397) + +[kiiy] +description = Washington, Washington-Wilkes County Airport, GA, United States +location = (0.58956737318687336, -1.4454186607231594) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KIIY.TXT +zone = ('gaz039', 0.001062470133943824) + +[kijd] +description = Willimantic Windham Airport, CT, United States +location = (0.72867496270763255, -1.2598368317312403) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KIJD.TXT +zone = ('ctz003', 0.0027073152708788459) + +[kijx] +description = Jacksonville, Jacksonville Municipal Airport, IL, United States +location = (0.69419016557031132, -1.5749608763156275) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KIJX.TXT +zone = ('ilz050', 0.0011370499216060857) + +[kikk] +description = Kankakee, Greater Kankakee Airport, IL, United States +location = (0.71683096447812666, -1.5332087220984743) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KIKK.TXT +zone = ('ilz023', 0.0011749595283886026) + +[kikv] +description = Ankeny, Ankeny Regional Airport, IA, United States +location = (0.7276277651564359, -1.6330318590389277) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KIKV.TXT +zone = ('iaz060', 0.00012607477724631944) + +[kikw] +description = Midland, Mi, US +location = (0.76201075142072427, -1.4706144277304221) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KIKW.TXT +zone = ('miz047', 0.0016314643686025597) + +[kile] +description = Killeen, Skylark Field Airport, TX, United States +location = (0.54250650916157073, -1.7048957909897944) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KILE.TXT +zone = ('txz158', 0.0031686534987778966) + +[kilg] +description = Wilmington New Castle Co, DE, United States +location = (0.69231393662441731, -1.319468914507713) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KILG.TXT +zone = ('dez001', 0.0016332998572441328) + +[kilm] +description = Wilmington Int'L Airport, NC, United States +location = (0.59806615701672361, -1.3596114873035827) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KILM.TXT +zone = ('ncz107', 0.00026352424033406385) + +[kiln] +description = Wilmington Industrial Airport, OH, United States +location = (0.68824150170309728, -1.4622950249625823) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KILN.TXT +zone = ('ohz072', 0.00046539864085534091) + +[kiml] +description = Imperial Municipal Airport, NE, United States +location = (0.70714923526636919, -1.7735454082349045) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KIML.TXT +zone = ('nez069', 0.0010857572046477815) + +[kimt] +description = Iron Mountain Ford Airport, MI, United States +location = (0.79965168562206868, -1.53792595921567) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KIMT.TXT +zone = ('miz011', 0.0044969913057001073) + +[kind] +description = Indianapolis International Airport, IN, United States +location = (0.69318660125041454, -1.5059282562624405) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KIND.TXT +zone = ('inz047', 0.0022509651975957225) + +[kinf] +description = Inverness Airport, Inverness, Florida, United States +location = (0.50271787459359518, -1.4367244393839569) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KINF.TXT +zone = ('flz042', 0.0024227395397064359) + +[kinj] +description = Hillsboro, Hillsboro Municipal Airport, TX, United States +location = (0.55995980168151416, -1.6946662223183828) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KINJ.TXT +zone = ('txz145', 0.0016984654499224653) + +[kink] +description = Winkler County Airport, TX, United States +location = (0.55472381392553105, -1.8011797880581482) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KINK.TXT +zone = ('txz060', 0.0025342138932010479) + +[kinl] +description = Falls International Airport, MN, United States +location = (0.84764824005191275, -1.6301375213627038) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KINL.TXT +zone = ('mnz010', 0.0072261798544528515) + +[kins] +description = Indian Springs, Indian Springs Auxiliary Afld Nellis Afb, NV, United States +location = (0.63849961802125899, -2.0187641681401081) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KINS.TXT +zone = ('nvz017', 0.0046050661612533992) + +[kint] +description = Winston Salem Smith Reynolds, NC, United States +location = (0.63064563638728444, -1.4003358365167837) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KINT.TXT +zone = ('ncz021', 0.00032776947393061654) + +[kinw] +description = Winslow Municipal Airport, AZ, United States +location = (0.61144701461534678, -1.9323703701663886) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KINW.TXT +zone = ('azz013', 0.0066565042427468501) + +[kiob] +description = Mount Sterling-Montgomery County Airport, United States +location = (0.66422868007774194, -1.4657781203731457) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KIOB.TXT +zone = ('kyz050', 0.0010448890950825486) + +[kiow] +description = Iowa City Municipal Airport, IA, United States +location = (0.72663874524697247, -1.5978489302008088) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KIOW.TXT +zone = ('iaz064', 0.00083102578572763464) + +[kipj] +description = Lincolnton, Lincolnton-Lincoln County Regional Airport, NC, United States +location = (0.61929614811251021, -1.4165334616026535) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KIPJ.TXT +zone = ('ncz069', 0.00089008361928253775) + +[kipl] +description = Imperial, Imperial County Airport, CA, United States +location = (0.57306431548190484, -2.0172273087709907) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KIPL.TXT +zone = ('caz033', 0.00396352591408459) + +[kipn] +description = Independence, LA, United States +location = (0.49017572042260743, -1.5356424867776441) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KIPN.TXT +zone = ('laz069', 0.03535734327550269) + +[kipt] +description = Williamsport-Lycoming County, PA, United States +location = (0.71994831644766089, -1.3424490829923053) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KIPT.TXT +zone = ('paz046', 0.00037192909605607955) + +[kirk] +description = Kirksville Regional Airport, MO, United States +location = (0.69987703004972612, -1.6153022227207519) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KIRK.TXT +zone = ('moz017', 0.0017198678446278344) + +[kirs] +description = Sturgis, Kirsch Municipal Airport, MI, United States +location = (0.72977064162694005, -1.4911947684935218) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KIRS.TXT +zone = ('miz079', 0.0021164238760972053) + +[kism] +description = Orlando, Kissimmee Municipal Airport, FL, United States +location = (0.49374879725238474, -1.4213476614560712) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KISM.TXT +zone = ('flz045', 0.0042969831708701304) + +[kisn] +description = Sloulin Field International Airport, ND, United States +location = (0.84095781125260105, -1.8090337696921226) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KISN.TXT +zone = ('ndz009', 0.0034243495636277579) + +[kiso] +description = Kinston, Kinston Regional Jetport At Stallings Field, NC, United States +location = (0.61668300237132978, -1.3546663877562652) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KISO.TXT +zone = ('ncz091', 0.0016791927485644868) + +[kisp] +description = Islip Long Island Mac Art, NY, United States +location = (0.71209433481368645, -1.2758356832078548) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KISP.TXT +zone = ('nyz080', 0.0013964500560672856) + +[kisq] +description = Manistique, Schoolcraft County Airport, MI, United States +location = (0.80241027546758203, -1.5039841534011915) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KISQ.TXT +zone = ('miz014', 0.0013698438234706243) + +[kisw] +description = Wi Rapids Alexander Field, WI, United States +location = (0.77434441146815092, -1.5678874447082394) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KISW.TXT +zone = ('wiz035', 0.0030224555944773175) + +[kith] +description = Ithaca, Ithaca Tompkins Regional Airport, NY, United States +location = (0.74160494358282392, -1.3344496572539979) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KITH.TXT +zone = ('nyz025', 0.00070605041559720309) + +[kitr] +description = Burlington Carson County, CO, United States +location = (0.68504173140777436, -1.7851809365815334) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KITR.TXT +zone = ('coz091', 0.0044244056970534707) + +[kiwa] +description = Mesa, Williams Gateway Airport, AZ, United States +location = (0.58148552912277751, -1.9486601098516689) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KIWA.TXT +zone = ('azz028', 0.0045546744447822838) + +[kiwd] +description = Ironwood, Gogebic-Iron County Airport, MI, United States +location = (0.81215987859469463, -1.5731234324642225) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KIWD.TXT +zone = ('wiz004', 0.0049079227578450934) + +[kiwi] +description = Wiscasset Municipal Airport, ME, United States +location = (0.76736309446017359, -1.2167853768487134) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KIWI.TXT +zone = ('mez025', 0.0018180419764057274) + +[kixa] +description = Roanoke Rapids, Nc, US +location = (0.63407811724953989, -1.3550736312483975) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KIXA.TXT +zone = ('ncz011', 0.0012763886837596551) + +[kixd] +description = New Century Aircenter, KS, United States +location = (0.67747863798246566, -1.6560265719339531) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KIXD.TXT +zone = ('ksz105', 0.0014356517622325616) + +[kiya] +description = Abbeville Chris Crusta Memorial Airport, Abbeville, Louisiana, United States +location = (0.5231760184562223, -1.6071728665280562) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KIYA.TXT +zone = ('laz044', 0.0040350585102402036) + +[kiyk] +description = Inyokern, CA, United States +location = (0.62250076654464415, -2.0565796352666514) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KIYK.TXT +zone = ('caz098', 0.00082506315534884144) + +[kiza] +description = Santa Ynez, Santa Ynez Airport, CA, United States +location = (0.60400512461031541, -2.0957137956058132) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KIZA.TXT +zone = ('caz036', 0.0013354789765493997) + +[kizg] +description = Fryeburg Eastern Slopes Rgnl, ME, United States +location = (0.76765398266883933, -1.2383111042899768) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KIZG.TXT +zone = ('nhz004', 0.0032262197081377527) + +[kjac] +description = Jackson, Jackson Hole Airport, WY, United States +location = (0.76096355386952774, -1.9326612583750542) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KJAC.TXT +zone = ('wyz013', 0.00099528628881121839) + +[kjan] +description = Jackson, Jackson International Airport, MS, United States +location = (0.56408556610775629, -1.5721489569651923) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KJAN.TXT +zone = ('msz049', 0.0021734241651419671) + +[kjas] +description = Jasper, Jasper County-Bell Field Airport, TX, United States +location = (0.53905463575207091, -1.6412155139760565) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KJAS.TXT +zone = ('txz259', 0.0003745860721924759) + +[kjax] +description = Jacksonville International, FL, United States +location = (0.53232542185827048, -1.4259339988793673) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KJAX.TXT +zone = ('flz024', 0.0025123149150027917) + +[kjbr] +description = Jonesboro Municipal Airport, AR, United States +location = (0.62540964863130144, -1.5821409669328599) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KJBR.TXT +zone = ('arz026', 0.00024736398597848474) + +[kjct] +description = Kimble County Airport, TX, United States +location = (0.53261631006693622, -1.7412568170730094) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KJCT.TXT +zone = ('txz169', 0.00058713102320313891) + +[kjdd] +description = Mineola/Quitman, Wood County Airport, TX, United States +location = (0.57145473406062108, -1.6667264098760404) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KJDD.TXT +zone = ('txz124', 0.0018481281847092248) + +[kjdn] +description = Jordan Airport, MT, United States +location = (0.8261225126106494, -1.8666296350079354) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KJDN.TXT +zone = ('mtz022', 0.0010951653666058606) + +[kjef] +description = Jefferson City Memorial Airport, MO, United States +location = (0.67369709126981125, -1.6083209057127748) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KJEF.TXT +zone = ('moz048', 0.0024385876354982121) + +[kjer] +description = Jerome County Airport, ID, United States +location = (0.74583736701891012, -1.9975293289075102) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KJER.TXT +zone = ('idz016', 0.00187458903948508) + +[kjes] +description = Jesup-Wayne County Airport, GA, United States +location = (0.55071925291956625, -1.4291192247642568) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KJES.TXT +zone = ('gaz136', 0.00051184436840714974) + +[kjfk] +description = Kennedy International Airport, NY, United States +location = (0.70918545272702926, -1.2874712115544837) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KJFK.TXT +zone = ('nyz178', 0.00064354817610925183) + +[kjfx] +description = Walker Co Bevill Fld, US +location = (0.59166661642607765, -1.5238469699162491) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KJFX.TXT +zone = ('alz015', 0.0016960076371152347) + +[kjfz] +description = Richlands, Va, US +location = (0.64681902078909859, -1.4276793281313616) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KJFZ.TXT +zone = ('vaz007', 0.0035206747888654314) + +[kjgg] +description = Williamsburg, Williamsburg-Jamestown Airport, VA, United States +location = (0.64994606903225505, -1.3389438800778832) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KJGG.TXT +zone = ('vaz090', 0.0017267765528539299) + +[kjhw] +description = Jamestown, Chautauqua County/Jamestown Airport, NY, United States +location = (0.73565627971560987, -1.3834643204141719) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KJHW.TXT +zone = ('nyz019', 0.0018778156557588889) + +[kjka] +description = Jack Edwards Arpt/Gulf Shores, AL, US +location = (0.52866023042908239, -1.5301301552234288) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KJKA.TXT +zone = ('alz064', 0.0035604719923871733) + +[kjkj] +description = Moorhead, Moorhead Municipal Airport, MN, United States +location = (0.81749767722371069, -1.6870885844826411) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KJKJ.TXT +zone = ('mnz003', 0.0022579216324403609) + +[kjkl] +description = Jackson Carroll Airport, KY, United States +location = (0.65595291054120219, -1.4541501551199423) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KJKL.TXT +zone = ('kyz112', 0.0010823480640799069) + +[kjln] +description = Joplin Regional Airport, MO, United States +location = (0.64838981711589339, -1.6493361431346414) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KJLN.TXT +zone = ('moz088', 0.002405311836604568) + +[kjmr] +description = Mora, Mora Municipal Airport, MN, United States +location = (0.8008637198248425, -1.6278976821559776) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KJMR.TXT +zone = ('mnz045', 0.0010665167728556664) + +[kjms] +description = Jamestown Municipal Airport, ND, United States +location = (0.81914119560267196, -1.7220581953010718) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KJMS.TXT +zone = ('ndz037', 0.0035710242131033192) + +[kjnx] +description = Smithfield, Johnston County Airport, NC, United States +location = (0.62030456056921801, -1.3681684487751662) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KJNX.TXT +zone = ('ncz042', 0.00053506869420216351) + +[kjot] +description = Joliet, Joliet Regional Airport, IL, United States +location = (0.724626768470368, -1.5389489160828111) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KJOT.TXT +zone = ('ilz022', 0.0028692257012391366) + +[kjpd] +description = Ten Sleep, United States +location = (0.77056286475549651, -1.870411187538354) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KJPD.TXT +zone = ('wyz008', 0.004170282845554661) + +[kjqf] +description = Concord, Concord Regional Airport, NC, United States +location = (0.61758960395500462, -1.4086503911478123) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KJQF.TXT +zone = ('ncz072', 0.0022458293574558587) + +[kjso] +description = Jacksonville, Cherokee County Airport, TX, United States +location = (0.55622188820015961, -1.6618540323808897) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KJSO.TXT +zone = ('txz149', 0.00095392484870881848) + +[kjst] +description = Johnstown-Cambria Co Airport, PA, United States +location = (0.70365857676238064, -1.3759012269888631) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KJST.TXT +zone = ('paz024', 0.003501904792632272) + +[kjsv] +description = Sallisaw, Sallisaw Municipal Airport, OK, United States +location = (0.61851074994911259, -1.6546206122587352) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KJSV.TXT +zone = ('okz072', 0.001208881374479658) + +[kjvl] +description = Janesville / Rock County, WI, United States +location = (0.74380114955825016, -1.5539248106922847) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KJVL.TXT +zone = ('wiz069', 0.0010710976923494341) + +[kjvw] +description = John Bell Williams Airport, Raymond, Mississippi, United States +location = (0.56381940300897615, -1.5779613885758652) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KJVW.TXT +zone = ('msz048', 0.00081237234410500361) + +[kjwg] +description = Watonga, Watonga Airport, OK, United States +location = (0.62595748809095531, -1.7177675942232524) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KJWG.TXT +zone = ('okz017', 0.00025600008779111649) + +[kjwy] +description = Midlothian/Waxahachie, Mid-Way Regional Airport, TX, United States +location = (0.56646115314519307, -1.6914373632021935) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KJWY.TXT +zone = ('txz134', 0.0025544518146670562) + +[kjxi] +description = Gilmer, Fox Stephens Field - Gilmer Municipal Airport, TX, United States +location = (0.57070327285490141, -1.6571658840845607) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KJXI.TXT +zone = ('txz125', 0.00066147750645010077) + +[kjxn] +description = Jackson County-Reynolds, MI, United States +location = (0.73769249717626995, -1.4742214415178772) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KJXN.TXT +zone = ('miz074', 0.00064370261660763768) + +[kjyg] +description = St. James, St. James Municipal Airport, MN, United States +location = (0.76770731217376131, -1.6503494037281603) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KJYG.TXT +zone = ('mnz082', 0.00071785808391092057) + +[kjyl] +description = Sylvania, Plantation Airpark, GA, United States +location = (0.56976758245035997, -1.4241256438488286) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KJYL.TXT +zone = ('gaz088', 0.0018540151527824155) + +[kjym] +description = Hillsdale, Hillsdale Municipal Airport, MI, United States +location = (0.73166626312007832, -1.4763012922098369) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KJYM.TXT +zone = ('miz081', 0.00059358219304146329) + +[kjyo] +description = Leesburg / Godfrey, VA, United States +location = (0.68213284932111717, -1.3537937231302681) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KJYO.TXT +zone = ('vaz042', 0.00094399541673092916) + +[kjyr] +description = York, York Municipal Airport, NE, United States +location = (0.71378148642394768, -1.7038388971649754) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KJYR.TXT +zone = ('nez064', 0.00053695100410899475) + +[kjzi] +description = Charleston, Sc, US +location = (0.57072266540214578, -1.3962634015954636) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KJZI.TXT +zone = ('scz050', 0.0025975660998421874) + +[kk22] +description = Prestonsburg Big Sandy Regional Airport, United States +location = (0.65887924592037928, -1.4422824979827982) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KK22.TXT +zone = ('kyz119', 0.0019189998046937017) + +[kkls] +description = Kelso, Kelso-Longview Airport, WA, United States +location = (0.80488767337805167, -2.1450096507010312) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KKLS.TXT +zone = ('waz022', 0.0013079730871320228) + +[kl35] +description = Big Bear City Arpt, CA, US +location = (0.59794980173325729, -2.0395917638805736) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KL35.TXT +zone = ('caz055', 0.0034395879141423504) + +[klaa] +description = Lamar Municipal Airport, CO, United States +location = (0.66438866859250822, -1.7921622535895108) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLAA.TXT +zone = ('coz098', 0.0044375309317984781) + +[klaf] +description = Lafayette Purdue Univ Airport, IN, United States +location = (0.70540390601437486, -1.5175637846090695) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLAF.TXT +zone = ('inz029', 0.00088991256171702107) + +[klal] +description = Lakeland Regional, FL, United States +location = (0.48840130234974655, -1.4314608748440159) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLAL.TXT +zone = ('flz052', 0.0049519898344865315) + +[klam] +description = Los Alamos, Los Alamos Airport, NM, United States +location = (0.62621928747875433, -1.8547468516839407) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLAM.TXT +zone = ('nmz517', 0.0049411988050364706) + +[klan] +description = Capital City Airport, MI, United States +location = (0.74671003164490735, -1.476257658978537) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLAN.TXT +zone = ('miz059', 0.0028068190059478771) + +[klar] +description = Laramie Regional Airport, WY, United States +location = (0.72111186928232385, -1.8442312429406749) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLAR.TXT +zone = ('wyz115', 0.0019185969940434572) + +[klas] +description = Mccarran International Airport, NV, United States +location = (0.6303547481786187, -2.0117828511321303) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLAS.TXT +zone = ('nvz020', 0.0014249251230237891) + +[klaw] +description = Lawton - Fort Sill Regional, OK, United States +location = (0.60330214477270661, -1.7176948721710861) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLAW.TXT +zone = ('okz038', 0.0018436901421408833) + +[klax] +description = Los Angeles Interntl Airport, CA, United States +location = (0.59224839284340913, -2.0661789461526205) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLAX.TXT +zone = ('caz041', 0.0012044446725262377) + +[klbb] +description = Lubbock International Airport, TX, United States +location = (0.58759418150475762, -1.7770360667388931) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLBB.TXT +zone = ('txz035', 0.00098710208314901795) + +[klbe] +description = Latrobe / Westmorland, PA, United States +location = (0.70307680034504905, -1.3857914260834978) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLBE.TXT +zone = ('paz073', 0.0025602844192729006) + +[klbf] +description = North Platte Regional Airport, NE, United States +location = (0.71762121077833518, -1.7569647803409585) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLBF.TXT +zone = ('nez059', 0.0015849631685031871) + +[klbl] +description = Liberal, Liberal Municipal Airport, KS, United States +location = (0.64664448786389905, -1.7622007680969414) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLBL.TXT +zone = ('ksz086', 0.0029720207229183087) + +[klbr] +description = Clarksville, Clarksville/Red River County-J D Trissell Field Airport, TX, United States +location = (0.58630942524981744, -1.6591681645875429) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLBR.TXT +zone = ('txz096', 0.00051781963806794872) + +[klbt] +description = Lumberton Municipal Airport, NC, United States +location = (0.60388392119003809, -1.3799736619101832) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLBT.TXT +zone = ('ncz087', 0.00087732947731158949) + +[klbx] +description = Brazoria County Airport, TX, United States +location = (0.50818170053901568, -1.6662076592372532) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLBX.TXT +zone = ('txz237', 0.001314474102317355) + +[klcg] +description = Wayne, Wayne Municipal Airport, NE, United States +location = (0.73725616486327139, -1.6926445492681563) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLCG.TXT +zone = ('nez018', 0.0018703060561598088) + +[klch] +description = Lake Charles Regional Airport, LA, United States +location = (0.52708943410228748, -1.6298466331540382) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLCH.TXT +zone = ('laz041', 0.00063786426312871188) + +[klci] +description = Laconia, Laconia Municipal Airport, NH, United States +location = (0.76038177745219626, -1.2464559741326171) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLCI.TXT +zone = ('nhz009', 0.00083963525278513585) + +[klck] +description = Rickenbacker Air National Guard Base, OH, United States +location = (0.69493193050240898, -1.4474597263206308) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLCK.TXT +zone = ('ohz055', 0.0028564657073806244) + +[kldm] +description = Ludington, Mason County Airport, MI, United States +location = (0.76736309446017359, -1.5079644737231008) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLDM.TXT +zone = ('miz037', 0.0019530780255575867) + +[kleb] +description = Lebanon Municipal Airport, NH, United States +location = (0.76154533028685911, -1.2618730491919001) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLEB.TXT +zone = ('nhz007', 0.0048504281004289893) + +[klee] +description = Leesburg Regional Airport, FL, United States +location = (0.50294571278303257, -1.4279702163400272) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLEE.TXT +zone = ('flz044', 0.0034833052799316971) + +[klew] +description = Auburn-Lewiston, ME, United States +location = (0.76881753550350207, -1.2266755759433479) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLEW.TXT +zone = ('mez020', 0.0022433607168471214) + +[klex] +description = Lexington Blue Grass Airport, KY, United States +location = (0.66380689217517663, -1.4765485471872026) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLEX.TXT +zone = ('kyz040', 0.0019787902157400563) + +[klfi] +description = Langley Air Force Base, VA, United States +location = (0.64722626428123053, -1.3325588838976705) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLFI.TXT +zone = ('vaz094', 0.0021721902708560885) + +[klfk] +description = Lufkin Angelina County Airport, TX, United States +location = (0.54512450303956228, -1.6536994662646272) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLFK.TXT +zone = ('txz165', 0.0020959735709899065) + +[klft] +description = Lafayette Regional Airport, LA, United States +location = (0.52708943410228748, -1.6057029118347832) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLFT.TXT +zone = ('laz044', 0.00097011640837081344) + +[klga] +description = New York La Guardia Airport, NY, United States +location = (0.71180344660502071, -1.289507429015144) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLGA.TXT +zone = ('nyz176', 0.00080832836185865933) + +[klgb] +description = Long Beach Airport, CA, United States +location = (0.59021217538274917, -2.0621065112313004) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLGB.TXT +zone = ('caz041', 0.0029210657390862614) + +[klgc] +description = La Grange, Callaway Airport, GA, United States +location = (0.57611379353608383, -1.4847952279028758) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLGC.TXT +zone = ('gaz066', 0.00077646065721613273) + +[klgd] +description = La Grande, La Grande/Union County Airport, OR, United States +location = (0.79034326294476553, -2.0594885173533091) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLGD.TXT +zone = ('orz049', 0.0016857361433654735) + +[klgu] +description = Logan Cache Airport, UT, United States +location = (0.72925673912496403, -1.9521507683556576) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLGU.TXT +zone = ('utz001', 0.00076144487220850476) + +[klhb] +description = Hearne, Hearne Municipal Airport, TX, United States +location = (0.53881222891151614, -1.6863759083714098) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLHB.TXT +zone = ('txz175', 0.003167420711167442) + +[klhm] +description = Lincoln Rgnl Arpt, CA, US +location = (0.67910761195099356, -2.117957047295119) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLHM.TXT +zone = ('caz017', 0.0057265109331347376) + +[klhq] +description = Lancaster Fairfield Co Airport, OH, United States +location = (0.69376837766774602, -1.4428055149819792) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLHQ.TXT +zone = ('ohz065', 0.00048611116569838877) + +[klhw] +description = Ft. Stewart, GA, United States +location = (0.55646914317752538, -1.4236068932100414) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLHW.TXT +zone = ('gaz138', 0.00073481938254482801) + +[klhx] +description = La Junta Municipal Airport, CO, United States +location = (0.66409778038384237, -1.8067066640227969) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLHX.TXT +zone = ('coz093', 0.0037630150342368093) + +[klhz] +description = Louisburg, Franklin County Airport, NC, United States +location = (0.62872577421009068, -1.3671212512239694) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLHZ.TXT +zone = ('ncz026', 0.0012121279055204738) + +[klic] +description = Limon Municipal Airport, CO, United States +location = (0.6853326196164401, -1.8093246579007884) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLIC.TXT +zone = ('coz046', 0.001571803512438223) + +[klit] +description = Little Rock Adams Field, AR, United States +location = (0.60621102685936379, -1.6097753467561033) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLIT.TXT +zone = ('arz044', 0.0012936155363428743) + +[kljf] +description = Litchfield, Litchfield Municipal Airport, MN, United States +location = (0.78709501128133164, -1.6494621946917301) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLJF.TXT +zone = ('mnz058', 0.00051552190584579476) + +[klkr] +description = Lancaster, Sc, US +location = (0.60597831629243115, -1.4110987002374153) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLKR.TXT +zone = ('scz015', 0.0021541925093917281) + +[klku] +description = Louisa, Louisa County Airport/Freeman Field, VA, United States +location = (0.66339480054623357, -1.3608380659167898) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLKU.TXT +zone = ('vaz049', 0.00055919917716316676) + +[klkv] +description = Lakeview, Lake County Airport, OR, United States +location = (0.73594716792427561, -2.101376419401173) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLKV.TXT +zone = ('caz070', 0.010510717715310985) + +[kllj] +description = Challis, Challis Airport, ID, United States +location = (0.77706906435598644, -1.9934278051653236) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLLJ.TXT +zone = ('idz018', 0.006819241719323044) + +[kllq] +description = Monticello Municipal Airport, AR, United States +location = (0.58701240508742614, -1.6013395887047974) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLLQ.TXT +zone = ('arz069', 0.00088058350859895852) + +[klmo] +description = Vance Brand Airport, US +location = (0.70092422760092266, -1.8353882413972369) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLMO.TXT +zone = ('coz039', 0.0034805966903260219) + +[klmt] +description = Klamath Falls International Airport, OR, United States +location = (0.73565627971560987, -2.1243565878857646) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLMT.TXT +zone = ('orz029', 0.0035001152392704865) + +[klnc] +description = Lancaster, Lancaster Airport, TX, United States +location = (0.56861372588931935, -1.6880630599816711) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLNC.TXT +zone = ('txz119', 0.0033842610584152179) + +[klnd] +description = Lander Hunt Field, WY, United States +location = (0.74729180806223883, -1.8977546733351678) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLND.TXT +zone = ('wyz018', 0.0012581865089207759) + +[klnk] +description = Lincoln Municipal Airport, NE, United States +location = (0.71267611123101793, -1.6888969395131797) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLNK.TXT +zone = ('nez066', 0.0013504917719192292) + +[klnl] +description = Land O' Lakes, Kings Land O' Lakes Airport, WI, United States +location = (0.80553732371073838, -1.5570421626618189) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLNL.TXT +zone = ('wiz005', 0.0040667847315517727) + +[klnp] +description = Wise / Lonesome Pine, VA, United States +location = (0.6454809350292362, -1.4404784093126533) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLNP.TXT +zone = ('vaz002', 0.0012361430322805635) + +[klnr] +description = Lone Rock Tri-County Reg, WI, United States +location = (0.75427312507021615, -1.5739960970902196) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLNR.TXT +zone = ('wiz062', 0.0038219369982079973) + +[klns] +description = Lancaster Airport, PA, United States +location = (0.70016791825839186, -1.3316862192716734) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLNS.TXT +zone = ('paz066', 0.0014723929997428051) + +[klol] +description = Lovelock Derby Field, NV, United States +location = (0.69929525363239475, -2.0693787164479431) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLOL.TXT +zone = ('nvz004', 0.0013624642583752928) + +[klom] +description = Philadelphia, Wings Field Airport, PA, United States +location = (0.70053152851922407, -1.3136220615135321) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLOM.TXT +zone = ('paz068', 0.0018704808641711317) + +[klor] +description = Fort Rucker, Lowe Army Heliport, AL, United States +location = (0.54731586087817741, -1.496590744764271) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLOR.TXT +zone = ('alz066', 0.0024094486600709833) + +[klot] +description = Chicago/Romeoville, Lewis University Airport, IL, United States +location = (0.72620241293397392, -1.5375332601339713) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLOT.TXT +zone = ('ilz022', 0.0032253330660145666) + +[klou] +description = Bowman Field, KY, United States +location = (0.6672975506791653, -1.4951653925418091) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLOU.TXT +zone = ('kyz030', 0.0008111547267788447) + +[kloz] +description = London-Corbin Airport, KY, United States +location = (0.64722626428123053, -1.4672401245098996) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLOZ.TXT +zone = ('kyz080', 0.00085722652239782508) + +[klpc] +description = Lompoc, Lompoc Airport, CA, United States +location = (0.60504747402470083, -2.1025399722358356) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLPC.TXT +zone = ('caz035', 0.0011216661757152879) + +[klpr] +description = Lorain County Regional Airport, OH, United States +location = (0.72169364569965533, -1.4343697569306733) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLPR.TXT +zone = ('ohz010', 0.0010402825353259088) + +[klqk] +description = Pickens, Sc, US +location = (0.60754911261922617, -1.4433872913993107) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLQK.TXT +zone = ('scz005', 0.00014330352989718376) + +[klrd] +description = Laredo, Laredo International Airport, TX, United States +location = (0.48072670177778259, -1.7359287147176157) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLRD.TXT +zone = ('txz239', 0.0042935878670641798) + +[klrf] +description = Little Rock Air Force Base, AR, United States +location = (0.60941079715468671, -1.6083209057127748) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLRF.TXT +zone = ('arz044', 0.003454437427286532) + +[klrj] +description = Le Mars, Le Mars Municipal Airport, IA, United States +location = (0.74661791704549652, -1.6788952332718898) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLRJ.TXT +zone = ('iaz020', 0.00075049805530193246) + +[klro] +description = Mount Pleasant, Sc, US +location = (0.57421332390613444, -1.3924236772410761) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLRO.TXT +zone = ('scz052', 0.0022902974240961607) + +[klru] +description = Las Cruces, Las Cruces International Airport, NM, United States +location = (0.56355711919534679, -1.866139973190015) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLRU.TXT +zone = ('nmz411', 0.0029575028648752698) + +[klsb] +description = Lordsburg Municipal Airport, Lordsburg, New Mexico, United States +location = (0.5643254036297265, -1.8970287135229997) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLSB.TXT +zone = ('nmz404', 0.0020516663970894262) + +[klse] +description = La Crosse Municipal Airport, WI, United States +location = (0.76590865341684489, -1.5926129424448257) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLSE.TXT +zone = ('wiz041', 0.0017429361638785737) + +[klsf] +description = Fort Benning, GA, United States +location = (0.56432312481149993, -1.4806209821085228) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLSF.TXT +zone = ('gaz090', 0.00072367439415749776) + +[klsv] +description = Nellis Air Force Base, NV, United States +location = (0.63239096563927877, -2.0077104162108106) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLSV.TXT +zone = ('nvz020', 0.0024959365129819011) + +[klts] +description = Altus Air Force Base, OK, United States +location = (0.6047565858160352, -1.7325301708130378) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLTS.TXT +zone = ('okz036', 0.0023857455200610948) + +[klua] +description = Luray Caverns Airport, Luray, Virginia, United States +location = (0.67486743227171142, -1.3700936433210755) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLUA.TXT +zone = ('vaz029', 0.00085145865819374639) + +[klud] +description = Decatur, Decatur Municipal Airport, TX, United States +location = (0.58039954647709213, -1.7031019803696887) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLUD.TXT +zone = ('txz102', 0.0012706977991740788) + +[kluf] +description = Luke Air Force Base / Phoenix, AZ, United States +location = (0.5852670758354318, -1.9614591910329608) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLUF.TXT +zone = ('azz023', 0.0041290241864152004) + +[kluk] +description = Cincinnati Mun Lunken Fld, OH, United States +location = (0.68242373752978291, -1.47334877689188) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLUK.TXT +zone = ('ohz077', 0.0023828315009831137) + +[klum] +description = Menomonie, Menomonie Municipal Airport-Score Field, WI, United States +location = (0.78351708631474326, -1.6033951987127018) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLUM.TXT +zone = ('wiz025', 0.0010128491179969092) + +[klux] +description = Laurens, Sc, US +location = (0.60213859193804364, -1.4302973220093531) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLUX.TXT +zone = ('scz012', 0.00085490848959597578) + +[klvj] +description = Pearland Regional Airport, TX, United States +location = (0.5151630175469929, -1.6624261125245989) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLVJ.TXT +zone = ('txz238', 0.0048320539617459609) + +[klvk] +description = Livermore Municipal Airport, CA, United States +location = (0.65798912800186227, -2.1261019171377589) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLVK.TXT +zone = ('caz510', 0.0032661907906603887) + +[klvm] +description = Livingston Mission Field, MT, United States +location = (0.7976154681614086, -1.9274252706190713) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLVM.TXT +zone = ('mtz065', 0.00082917550498928262) + +[klvn] +description = Minneapolis, Airlake Airport, MN, United States +location = (0.77890166007058059, -1.6271365246766358) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLVN.TXT +zone = ('mnz070', 0.0021585118762418093) + +[klvs] +description = Las Vegas Municipal Airport, NM, United States +location = (0.62220987833597841, -1.8349228202633718) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLVS.TXT +zone = ('nmz529', 0.002749447240813861) + +[klwa] +description = South Haven, South Haven Area Regional Airport, MI, United States +location = (0.7391614826300319, -1.5054531388549532) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLWA.TXT +zone = ('miz071', 0.0035205521642767473) + +[klwb] +description = Lewisburg / Greenbrier, WV, United States +location = (0.66089801008851945, -1.4032447186034411) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLWB.TXT +zone = ('wvz045', 0.0015784866263657859) + +[klwc] +description = Lawrence Municipal Airport, KS, United States +location = (0.68096929648645421, -1.6618443361072675) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLWC.TXT +zone = ('ksz040', 0.0025254179955124865) + +[klwd] +description = Lamoni Municipal Airport, IA, United States +location = (0.70918545272702926, -1.6388641676226756) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLWD.TXT +zone = ('iaz094', 0.0023627170505892969) + +[klwm] +description = Lawrence Municipal Airport, MA, United States +location = (0.7455464788102445, -1.2415108745852999) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLWM.TXT +zone = ('maz006', 0.00086505195828497799) + +[klws] +description = Lewiston Nez Perce Co Airport, ID, United States +location = (0.80925099650803745, -2.0423261130420314) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLWS.TXT +zone = ('idz026', 0.004048527894901283) + +[klwt] +description = Lewistown Municipal Airport, MT, United States +location = (0.82117741306333203, -1.9102628663077938) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLWT.TXT +zone = ('mtz051', 0.0045905580503731187) + +[klwv] +description = Lawrenceville-Vincennes International, IL, United States +location = (0.67660597335646844, -1.5289084247470326) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLWV.TXT +zone = ('ilz073', 0.0019061580271006833) + +[klxl] +description = Little Falls, Little Falls/Morrison County Airport-Lindbergh Field, MN, United States +location = (0.80197879129139449, -1.6467181492566498) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLXL.TXT +zone = ('mnz043', 0.0014741596886002372) + +[klxn] +description = Lexington, Jim Kelly Field Airport, NE, United States +location = (0.71193919443573128, -1.7414410462718311) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLXN.TXT +zone = ('nez060', 0.0014841464906571507) + +[klxt] +description = Lee'S Summit Municipal, MO, United States +location = (0.6800966318604571, -1.6470090374653155) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLXT.TXT +zone = ('moz037', 0.00078162370962079155) + +[klxv] +description = Leadville Lake Co, CO, United States +location = (0.68475084319910862, -1.855575883078638) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLXV.TXT +zone = ('coz059', 0.0008878071951661879) + +[klyh] +description = Lynchburg Regional Airport, VA, United States +location = (0.65129869920255068, -1.3823007675795091) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLYH.TXT +zone = ('vaz045', 0.0021012345075659281) + +[klyv] +description = Luverne, Quentin Aanenson Field Airport, MN, United States +location = (0.76133201226717095, -1.6792782360799663) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLYV.TXT +zone = ('mnz098', 0.0010491955039339089) + +[klzu] +description = Lawrenceville, Gwinnett County-Briscoe Field Airport, GA, United States +location = (0.59302894286999552, -1.465422073205739) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLZU.TXT +zone = ('gaz034', 0.00092794629006395226) + +[klzz] +description = Lampasas, Lampasas Airport, TX, United States +location = (0.54290405638008055, -1.7138406034062652) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KLZZ.TXT +zone = ('txz156', 0.0017133330544318998) + +[km19] +description = Newport, Newport Municipal Airport, AR, United States +location = (0.62199171217947924, -1.5913233380530745) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KM19.TXT +zone = ('arz025', 0.00086045915904763449) + +[km30] +description = Metropolis, Metropolis Municipal Airport, IL, United States +location = (0.64901522676452461, -1.5489894074185895) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KM30.TXT +zone = ('ilz094', 0.00082967782064420159) + +[km40] +description = Aberdeen/Amory Monroe County, MS, United States +location = (0.59120846749742928, -1.544436043143373) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KM40.TXT +zone = ('msz024', 0.00035049786524257698) + +[km46] +description = Colstrip, Mt, US +location = (0.80023346203940016, -1.8626153777283485) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KM46.TXT +zone = ('mtz058', 0.0078450563710407255) + +[km63] +description = McGregor Range Base, NM, United States +location = (0.55972709111458152, -1.852667000991981) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KM63.TXT +zone = ('txz419', 0.004896294703591101) + +[km89] +description = Arkadelphia, Dexter B Florence Memorial Field Airport, AR, United States +location = (0.59515242679325531, -1.6243100609157672) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KM89.TXT +zone = ('arz053', 0.0018069949643405594) + +[kmae] +description = Madera Municipal Airport, CA, United States +location = (0.6454809350292362, -2.0964313198538553) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMAE.TXT +zone = ('caz090', 0.0011810062185709821) + +[kmaf] +description = Midland International Airport, TX, United States +location = (0.5573418078035226, -1.7837264955382048) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMAF.TXT +zone = ('txz062', 0.0027347715646821808) + +[kmai] +description = Marianna Municipal Airport, FL, United States +location = (0.53814318603158495, -1.4867296344905032) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMAI.TXT +zone = ('flz011', 0.0040368317764779135) + +[kman] +description = Nampa, ID, United States +location = (0.76063872870318439, -2.0337109739287147) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMAN.TXT +zone = ('idz012', 0.0043130406210060927) + +[kmao] +description = Marion, Sc, US +location = (0.5965535383316618, -1.3845696956071016) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMAO.TXT +zone = ('scz033', 0.0018056988455628013) + +[kmbg] +description = Mobridge Municipal Airport, SD, United States +location = (0.79499747428341705, -1.7526014572109727) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMBG.TXT +zone = ('sdz004', 0.0058916068230186833) + +[kmbl] +description = Manistee, Manistee County-Blacker Airport, MI, United States +location = (0.77259908221615659, -1.5053464798451093) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMBL.TXT +zone = ('miz031', 0.0026747694021023857) + +[kmbs] +description = Mbs International Airport, MI, United States +location = (0.75980000103486478, -1.4675310127185655) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMBS.TXT +zone = ('miz048', 0.0032461118651657284) + +[kmcb] +description = Mccomb/Pike County Airport, MS, United States +location = (0.54425183841356506, -1.5789411966375368) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMCB.TXT +zone = ('msz070', 0.00094430756986525603) + +[kmcc] +description = Sacramento, Mcclellan Airfield Airport, CA, United States +location = (0.67486064410447411, -2.1188297119211161) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMCC.TXT +zone = ('caz017', 0.0023217862282272298) + +[kmcd] +description = Macinac Island, Mackinac Island Airport, MI, United States +location = (0.80049526142719929, -1.4771981975198898) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMCD.TXT +zone = ('miz016', 0.0067591603311401727) + +[kmce] +description = Merced Municipal Airport, CA, United States +location = (0.6507169227852192, -2.1031217486531673) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMCE.TXT +zone = ('caz090', 0.0066979161988858608) + +[kmcf] +description = Macdill Air Force Base, Fl., FL, United States +location = (0.48607419668042079, -1.4398966328953218) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMCF.TXT +zone = ('flz051', 0.0029078706829555184) + +[kmci] +description = Kansas City International Airport, MO, United States +location = (0.68591439603377147, -1.6534085780559615) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMCI.TXT +zone = ('moz028', 0.0015048329258834457) + +[kmcj] +description = Mem Hermann Hosptl Helipad, TX, US +location = (0.51853732076751535, -1.6650441064025905) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMCJ.TXT +zone = ('txz213', 0.0025735145206872891) + +[kmck] +description = Mc Cook Municipal Airport, NE, United States +location = (0.70162235930172057, -1.7555103392976297) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMCK.TXT +zone = ('nez081', 0.001481890005843196) + +[kmcn] +description = Middle Georgia Regional Airport, GA, United States +location = (0.57043177719347993, -1.4599679192932569) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMCN.TXT +zone = ('gaz082', 0.0022650620354893393) + +[kmco] +description = Orlando International Airport, FL, United States +location = (0.49596439577505536, -1.4195344582887213) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMCO.TXT +zone = ('flz045', 0.0017189843829486817) + +[kmcw] +description = Mason City Municipal Airport, IA, United States +location = (0.75310957223555319, -1.6289739685280409) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMCW.TXT +zone = ('iaz017', 0.0015096835206371017) + +[kmdd] +description = Midland, Midland Airpark, TX, United States +location = (0.55914046656043892, -1.7819957106966435) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMDD.TXT +zone = ('txz062', 0.0030928744536826247) + +[kmdh] +description = Southern Illinois Airport, IL, United States +location = (0.65944356904519086, -1.557706357404939) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMDH.TXT +zone = ('ilz084', 0.0018224445955351697) + +[kmdj] +description = Mississippi Canyon, LA, United States +location = (0.49990593100247582, -1.567203857417875) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMDJ.TXT +zone = ('laz067', 0.014563225401604403) + +[kmdq] +description = Huntsville, Madison County Executive Airport, AL, United States +location = (0.60844601792927877, -1.5107085191581806) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMDQ.TXT +zone = ('alz006', 0.0017184134513286748) + +[kmds] +description = Madison Municipal, SD, US +location = (0.76829393672790391, -1.6943656378360952) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMDS.TXT +zone = ('sdz055', 0.00062097179431428308) + +[kmdt] +description = Harrisburg International Airport, PA, United States +location = (0.70162235930172057, -1.3398310891143137) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMDT.TXT +zone = ('paz057', 0.0037648818834587461) + +[kmdw] +description = Chicago Midway Airport, IL, United States +location = (0.72925673912496403, -1.5315264186250241) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMDW.TXT +zone = ('ilz014', 0.0013143722295491157) + +[kmdz] +description = Medford, Taylor County Airport, WI, United States +location = (0.78716288519668698, -1.5760904921926127) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMDZ.TXT +zone = ('wiz017', 0.0031052382770819153) + +[kmeb] +description = Laurinburg Maxton Airport, NC, United States +location = (0.6070836914853609, -1.3852096496661661) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMEB.TXT +zone = ('ncz085', 0.0019176246470739211) + +[kmeh] +description = Meacham, OR, United States +location = (0.79441569786608568, -2.0667607225699518) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMEH.TXT +zone = ('orz507', 0.0051184666604172915) + +[kmei] +description = Meridian Key Field, MS, United States +location = (0.56432312481149993, -1.5489797111449675) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMEI.TXT +zone = ('msz052', 0.0017872051907637132) + +[kmem] +description = Memphis International Airport, TN, United States +location = (0.61144701461534678, -1.5705054385862309) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMEM.TXT +zone = ('msz001', 0.0027591161738362451) + +[kmer] +description = Merced / Castle Air Force Base, CA, United States +location = (0.65217136382854779, -2.1042853014878298) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMER.TXT +zone = ('caz090', 0.0083351733641236856) + +[kmez] +description = Mena, Mena Intermountain Municipal Airport, AR, United States +location = (0.60292883823825227, -1.6441437886099584) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMEZ.TXT +zone = ('arz040', 0.0011014327527372196) + +[kmfd] +description = Lahm Municipal Airport, OH, United States +location = (0.71238522302235219, -1.4401875211039876) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMFD.TXT +zone = ('ohz029', 0.00077792413219166803) + +[kmfe] +description = Mcallen Miller International Airport, TX, United States +location = (0.45698537581384863, -1.7147859900844289) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMFE.TXT +zone = ('txz253', 0.0038785574778655821) + +[kmfi] +description = Marshfield Municipal Airport, WI, United States +location = (0.77899862280680243, -1.5739960970902196) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMFI.TXT +zone = ('wiz035', 0.0035725897041245596) + +[kmfr] +description = Rogue Valley International Airport, OR, United States +location = (0.73972871463693002, -2.1447187624923654) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMFR.TXT +zone = ('orz026', 0.0015088638518342926) + +[kmfv] +description = Melfa / Accomack Airport, VA, United States +location = (0.65711646337586505, -1.3223777965943704) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMFV.TXT +zone = ('vaz099', 0.0026101764446643701) + +[kmgc] +description = Michigan City Municipal Airport, Michigan City, United States +location = (0.72785989394695116, -1.5153140552032489) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMGC.TXT +zone = ('inz003', 0.002942706370699268) + +[kmge] +description = Marietta / Dobbins Air Force Base, GA, United States +location = (0.59195750463474339, -1.4750941061438743) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMGE.TXT +zone = ('gaz032', 0.00097142430015910095) + +[kmgg] +description = Maple Lake, Maple Lake Municipal Airport, MN, United States +location = (0.7895190796868794, -1.6403573937604927) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMGG.TXT +zone = ('mnz059', 0.0011206561206517762) + +[kmgj] +description = Montgomery Orange Co Airport, NY, United States +location = (0.72460252778631251, -1.2961978578144553) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMGJ.TXT +zone = ('nyz067', 0.002061702210747448) + +[kmgm] +description = Montgomery Dannelly Field, AL, United States +location = (0.56374134839416834, -1.5079644737231008) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMGM.TXT +zone = ('alz044', 0.0031628184020778549) + +[kmgn] +description = Harbor Springs, Harbor Springs Airport, MI, United States +location = (0.7928255089920464, -1.4820172455101186) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMGN.TXT +zone = ('miz016', 0.0016804923107752051) + +[kmgr] +description = Moultrie, Moultrie Municipal Airport, GA, United States +location = (0.54253074984562621, -1.4626392426761703) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMGR.TXT +zone = ('gaz146', 0.001880488328183259) + +[kmgw] +description = Morgantown Muni-Hart Field, WV, United States +location = (0.69202304841575168, -1.3948089605521352) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMGW.TXT +zone = ('wvz022', 0.0017785363515651191) + +[kmgy] +description = Dayton Wright Brothers Airport, OH, United States +location = (0.69115038378975457, -1.470149006596557) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMGY.TXT +zone = ('ohz061', 0.0028041142900663814) + +[kmhe] +description = Mitchell Municipal Airport, SD, United States +location = (0.76387243595618493, -1.7110044433717744) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMHE.TXT +zone = ('sdz059', 0.0021407683880455422) + +[kmhk] +description = Manhattan Regional Airport, KS, United States +location = (0.68300551394711428, -1.6874424984698511) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMHK.TXT +zone = ('ksz036', 0.002470468762069254) + +[kmhr] +description = Sacramento, Sacramento Mather Airport, CA, United States +location = (0.67282442664381403, -2.1170843826691219) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMHR.TXT +zone = ('caz017', 0.0038237435260108123) + +[kmhs] +description = Mount Shasta, CA, United States +location = (0.72111186928232385, -2.1348285633977309) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMHS.TXT +zone = ('caz082', 0.0019108411162825896) + +[kmht] +description = Manchester Airport, NH, United States +location = (0.74932802552289879, -1.2467468623412827) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMHT.TXT +zone = ('nhz012', 0.0015755474212533638) + +[kmhv] +description = Mojave, CA, United States +location = (0.61202879103267827, -2.0621065112313004) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMHV.TXT +zone = ('caz099', 0.0017173969369579975) + +[kmia] +description = Miami International Airport, FL, United States +location = (0.45000405880587135, -1.4017902775601123) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMIA.TXT +zone = ('flz074', 0.00067705787314949856) + +[kmib] +description = Minot Air Force Base, ND, United States +location = (0.8450302461739212, -1.7688911968962528) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMIB.TXT +zone = ('ndz011', 0.0040647881728494003) + +[kmic] +description = Crystal Airport, MN, United States +location = (0.78656171623211124, -1.6292648567367065) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMIC.TXT +zone = ('mnz060', 0.001903435335188887) + +[kmie] +description = Muncie Delaware Johnson, IN, United States +location = (0.70220413571905194, -1.4905111812031575) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMIE.TXT +zone = ('inz041', 0.00010825600185121527) + +[kmis] +description = Main Pass, MS, United States +location = (0.51130390064536102, -1.550589292566251) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMIS.TXT +zone = ('laz070', 0.014406928941157597) + +[kmiv] +description = Millville Municipal Airport, NJ, United States +location = (0.68707794886843443, -1.3104513800390756) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMIV.TXT +zone = ('njz021', 0.00037777163259157401) + +[kmiw] +description = Marshalltown Municipal Airport, IA, United States +location = (0.7350745032982785, -1.6217017633113979) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMIW.TXT +zone = ('iaz049', 0.0017675281555136798) + +[kmjq] +description = Jackson, Jackson Municipal Airport, MN, United States +location = (0.76183621849552485, -1.6577719011859473) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMJQ.TXT +zone = ('mnz090', 0.0021967689347370013) + +[kmkc] +description = Kansas City Downtown Airport, MO, United States +location = (0.68271462573844854, -1.6510814723866356) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMKC.TXT +zone = ('ksz104', 0.0022292629844459758) + +[kmke] +description = Gen Mitchell International Airport, WI, United States +location = (0.74961891373156464, -1.5341444125030157) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMKE.TXT +zone = ('wiz066', 0.0013109368949008472) + +[kmkg] +description = Muskegon County Airport, MI, United States +location = (0.75340046044421893, -1.5050555916364434) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMKG.TXT +zone = ('miz050', 0.0024287886840002504) + +[kmkj] +description = Marion / Wytheville, VA, United States +location = (0.64402649398590761, -1.4198253464973869) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMKJ.TXT +zone = ('vaz009', 0.0027884963036588842) + +[kmkl] +description = Jackson Mckellar-Sipes Rgnl, TN, United States +location = (0.6213372137099813, -1.5518885932316249) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMKL.TXT +zone = ('tnz052', 0.0011184232619779147) + +[kmkn] +description = Comanche, Comanche County-City Airport, TX, United States +location = (0.55705091959485686, -1.72089949060322) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMKN.TXT +zone = ('txz141', 0.0008291696102483378) + +[kmko] +description = Muskogee Davis Field, OK, United States +location = (0.62220987833597841, -1.6644623299852588) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMKO.TXT +zone = ('okz070', 0.00061862408058487061) + +[kmks] +description = Moncks Corner, Sc, US +location = (0.57910024581171848, -1.3969615332962615) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMKS.TXT +zone = ('scz045', 0.0014517021085356161) + +[kmkt] +description = Mankato, Mankato Regional Airport, MN, United States +location = (0.77172641759015936, -1.6391550558313412) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMKT.TXT +zone = ('mnz076', 0.0035680723203313372) + +[kmlb] +description = Melbourne International, FL, United States +location = (0.49043751981040662, -1.4076080417334269) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMLB.TXT +zone = ('flz047', 0.001374173513359777) + +[kmlc] +description = Mcalester Regional Airport, OK, United States +location = (0.60882902073735523, -1.671734535201902) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMLC.TXT +zone = ('okz073', 0.00086678771544615853) + +[kmle] +description = Omaha, Millard Airport, NE, United States +location = (0.71900292976949731, -1.6774747291862389) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMLE.TXT +zone = ('nez053', 0.0014439752764130761) + +[kmlf] +description = Milford Municipal Airport, UT, United States +location = (0.67049732097448822, -1.9725129429622581) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMLF.TXT +zone = ('utz016', 0.0081846368561077059) + +[kmli] +description = Moline Quad-City Airport, IL, United States +location = (0.72343897495164966, -1.579813861263534) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMLI.TXT +zone = ('ilz015', 0.0007297844976312521) + +[kmlj] +description = Milledgeville, Baldwin County Airport, GA, United States +location = (0.57864936908828668, -1.4528217656337021) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMLJ.TXT +zone = ('gaz073', 0.0014927027547432462) + +[kmlp] +description = Mullan Pass Vor, ID, United States +location = (0.82815873007130947, -2.0187641681401081) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMLP.TXT +zone = ('idz004', 0.006058008439875826) + +[kmls] +description = Miles City Wiley Field, MT, United States +location = (0.8104145493427003, -1.8480127896533294) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMLS.TXT +zone = ('mtz032', 0.0049018773804776622) + +[kmlt] +description = Millinocket Municipal Airport, ME, United States +location = (0.79674280353541138, -1.1990411961201044) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMLT.TXT +zone = ('mez005', 0.0051980239054208463) + +[kmlu] +description = Monroe Regional Airport, LA, United States +location = (0.56752289510682286, -1.6062846882521147) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMLU.TXT +zone = ('laz014', 0.0019039486258935307) + +[kmmh] +description = Mammoth / June Lakes, CA, United States +location = (0.65653468695853368, -2.074032927786595) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMMH.TXT +zone = ('caz073', 0.0056737421136229425) + +[kmmk] +description = Meriden Markham Municipal Airport, CT, United States +location = (0.72460252778631251, -1.2711814718692032) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMMK.TXT +zone = ('ctz006', 0.0023064804583825954) + +[kmml] +description = Marshall, Southwest Minnesota Regional Airport - Marshall/Ryan Field, MN, United States +location = (0.77579885251147951, -1.6723163116192334) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMML.TXT +zone = ('mnz072', 0.00069519891226352726) + +[kmmt] +description = Mcentire Air National Guard Weather Facility Base, SC, United States +location = (0.59195750463474339, -1.4102260356114182) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMMT.TXT +zone = ('scz028', 0.0023651671069532111) + +[kmmu] +description = Morristown Municipal, NJ, United States +location = (0.71209433481368645, -1.2988158516924471) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMMU.TXT +zone = ('njz105', 0.0018501517894568204) + +[kmmv] +description = Mcminnville Municipal Airport, OR, United States +location = (0.78888882190143705, -2.1490820856223514) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMMV.TXT +zone = ('orz007', 0.0027605020280961055) + +[kmne] +description = Minden, La, US +location = (0.56985000077614856, -1.6283921921107094) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMNE.TXT +zone = ('laz003', 0.0012217400135503165) + +[kmnh] +description = Elbert Mountain, Monument Pass, CO, United States +location = (0.68445995499044299, -1.8262058702770223) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMNH.TXT +zone = ('coz041', 0.002314513722416024) + +[kmni] +description = Manning / Cooper Regional, SC, United States +location = (0.58613974046142903, -1.4000449483081181) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMNI.TXT +zone = ('scz038', 0.0014393200740811297) + +[kmnm] +description = Menominee, Menominee-Marinette Twin County Airport, MI, United States +location = (0.78772526906677409, -1.5294902011643643) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMNM.TXT +zone = ('wiz073', 0.0039798566786903586) + +[kmnn] +description = Marion Municipal Airport, OH, United States +location = (0.70889456451836352, -1.4497868319899563) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMNN.TXT +zone = ('ohz036', 0.0013498187468848984) + +[kmnz] +description = Hamilton, TX, US +location = (0.55274577410660419, -1.7130406608324344) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMNZ.TXT +zone = ('txz143', 0.00084235750185399083) + +[kmob] +description = Mobile Regional Airport, AL, United States +location = (0.5355251921535934, -1.5399621766763301) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMOB.TXT +zone = ('alz063', 0.0027062090812189424) + +[kmod] +description = Modesto City Co Sham Fld, CA, United States +location = (0.65653468695853368, -2.1109757302871417) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMOD.TXT +zone = ('caz019', 0.0027700380972431821) + +[kmop] +description = Mount Pleasant, Mount Pleasant Municipal Airport, MI, United States +location = (0.76125444207819337, -1.4788756528565286) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMOP.TXT +zone = ('miz046', 0.0014918529903078042) + +[kmot] +description = Minot International Airport, ND, United States +location = (0.84241225229592975, -1.7677276440615901) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMOT.TXT +zone = ('ndz011', 0.0031045723607412727) + +[kmox] +description = Morris, Morris Municipal Airport, MN, United States +location = (0.7952883624920829, -1.674934305497225) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMOX.TXT +zone = ('mnz047', 0.00053279047654309416) + +[kmpo] +description = Mt Pocono Pocono Mountains, PA, United States +location = (0.71791209898700092, -1.3156873677950589) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMPO.TXT +zone = ('paz055', 0.0014329995285897537) + +[kmpv] +description = Knapp State Airport, VT, United States +location = (0.77143552938149373, -1.2665272605305518) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMPV.TXT +zone = ('vtz008', 0.0014159532717093989) + +[kmpz] +description = Mount Pleasant, Mount Pleasant Municipal Airport, IA, United States +location = (0.71465415104994479, -1.5971701910472553) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMPZ.TXT +zone = ('iaz088', 0.00084420844184577963) + +[kmqb] +description = Macomb, Macomb Municipal Airport, IL, United States +location = (0.70721226104491342, -1.5821846001641597) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMQB.TXT +zone = ('ilz035', 0.0011684688097069048) + +[kmqe] +description = Milton Blue Hill Observ, MA, United States +location = (0.73681983255027284, -1.241219986376634) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMQE.TXT +zone = ('maz016', 0.0013905511699041871) + +[kmqi] +description = Manteo / Dare County Regional, NC, United States +location = (0.62686408967463003, -1.3212142437597074) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMQI.TXT +zone = ('ncz103', 0.00296315436918133) + +[kmqs] +description = Coatesville/Carlson, PA, US +location = (0.69778263494733295, -1.3241813034880978) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMQS.TXT +zone = ('paz067', 0.0016318800008606692) + +[kmqy] +description = Smyrna, Smyrna Airport, TN, United States +location = (0.62847367109591368, -1.5100588688254939) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMQY.TXT +zone = ('tnz062', 0.0032472534331937741) + +[kmrb] +description = Martinsburg Eastern Wv Reg, WV, United States +location = (0.6876597252857658, -1.3610659283469113) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMRB.TXT +zone = ('wvz052', 0.0012673220469409583) + +[kmrf] +description = Marfa, TX, United States +location = (0.52999831618894477, -1.8154333102827684) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMRF.TXT +zone = ('txz080', 0.0049690465559214568) + +[kmrh] +description = Beaufort Smith Field, NC, United States +location = (0.60621102685936379, -1.3377948716536536) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMRH.TXT +zone = ('ncz095', 0.0017594769812552249) + +[kmrj] +description = Mineral Point, Iowa County Airport, WI, United States +location = (0.74848929785457941, -1.5748445210321613) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMRJ.TXT +zone = ('wiz062', 0.00235916164526263) + +[kmrt] +description = Marysville, Oh, US +location = (0.7019714251521193, -1.4547319315372735) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMRT.TXT +zone = ('ohz045', 0.0014167778232657758) + +[kmry] +description = Monterey Peninsula Airport, CA, United States +location = (0.63849961802125899, -2.1266836935550906) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMRY.TXT +zone = ('caz530', 0.0014310116399360033) + +[kmsl] +description = North West Alabama Regional, AL, United States +location = (0.60650191506802953, -1.5289084247470326) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMSL.TXT +zone = ('alz001', 0.0027566510252050361) + +[kmsn] +description = Madison Dane County Rgnl, WI, United States +location = (0.75281868402688745, -1.5594516866569335) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMSN.TXT +zone = ('wiz063', 0.0014428499540620864) + +[kmso] +description = Missoula International Airport, MT, United States +location = (0.81885030739400622, -1.99142067652553) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMSO.TXT +zone = ('mtz005', 0.0074682806988962853) + +[kmsp] +description = Minneapolis-St Paul International, MN, United States +location = (0.78307105772812258, -1.6269377510673808) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMSP.TXT +zone = ('mnz062', 0.0029987100578815267) + +[kmss] +description = Massena International -Richards Fld, NY, United States +location = (0.78423461056278532, -1.3063789451177557) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMSS.TXT +zone = ('nyz026', 0.0017147025404951966) + +[kmsv] +description = Monticello, Sullivan County International Airport, NY, United States +location = (0.72780229808163543, -1.3055062804917585) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMSV.TXT +zone = ('nyz062', 0.00050466909907202577) + +[kmsy] +description = New Orleans International Airport, LA, United States +location = (0.52359877559829882, -1.5751596499248823) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMSY.TXT +zone = ('laz060', 0.002654790305672242) + +[kmtc] +description = Selfridge Air National Guard Base, MI, United States +location = (0.74380114955825016, -1.4457143970686361) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMTC.TXT +zone = ('miz070', 0.0018730556404446988) + +[kmth] +description = Marathon Airport, FL, United States +location = (0.43167810165993087, -1.414589358741404) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMTH.TXT +zone = ('flz077', 0.0010186801852580234) + +[kmtj] +description = Montrose Regional Airport, CO, United States +location = (0.67195176201781692, -1.8832102629018816) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMTJ.TXT +zone = ('coz011', 0.0030405368554884205) + +[kmtn] +description = Baltimore / Martin, MD, United States +location = (0.68649617245110295, -1.3337224367323335) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMTN.TXT +zone = ('mdz011', 0.0026048331991362448) + +[kmto] +description = Mattoon/Charleston Coles Co, IL, United States +location = (0.68882327812042876, -1.5405439530936615) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMTO.TXT +zone = ('ilz056', 0.0011127214927452282) + +[kmtp] +description = Montauk Airport, NY, United States +location = (0.71674854615233807, -1.2551826203925887) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMTP.TXT +zone = ('riz008', 0.0048521765665550881) + +[kmtv] +description = Martinsville, VA, United States +location = (0.6393722826472561, -1.3965542898041294) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMTV.TXT +zone = ('vaz043', 0.0021812482008263467) + +[kmtw] +description = Manitowoc, Manitowoc County Airport, WI, United States +location = (0.77027197654683077, -1.5303628657903614) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMTW.TXT +zone = ('wiz050', 0.0015994103432039545) + +[kmui] +description = Muir Army Air Field / Indiantown, PA, United States +location = (0.70569479422304049, -1.3363404306103248) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMUI.TXT +zone = ('paz059', 0.0018519925902495012) + +[kmuo] +description = Mountain Home Air Force Base, ID, United States +location = (0.75136424298355886, -2.0222548266440965) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMUO.TXT +zone = ('idz014', 0.00093423847949926538) + +[kmut] +description = Muscatine, IA, United States +location = (0.72198453390832096, -1.5908676131928314) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMUT.TXT +zone = ('iaz067', 0.002103529205272812) + +[kmve] +description = Montevideo, Montevideo-Chippewa County Airport, MN, United States +location = (0.78481638698011691, -1.6705709823672392) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMVE.TXT +zone = ('mnz056', 0.0020912825808266796) + +[kmvl] +description = Morrisville Stowe State Airport, VT, United States +location = (0.7772532935548081, -1.2673999251565489) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMVL.TXT +zone = ('vtz006', 0.0012999363176213075) + +[kmvn] +description = Mount Vernon, Mount Vernon Airport, IL, United States +location = (0.668751991722494, -1.5510159286056273) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMVN.TXT +zone = ('ilz075', 0.00083376735825068694) + +[kmvy] +description = Vineyard Haven Marthas Vin, MA, United States +location = (0.72256631032565244, -1.2324933401166622) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMVY.TXT +zone = ('maz023', 0.00051967027368990545) + +[kmwa] +description = Marion, Williamson County Regional Airport, IL, United States +location = (0.6588666407646705, -1.5533624268221977) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMWA.TXT +zone = ('ilz085', 0.0010428683178396536) + +[kmwc] +description = Milwaukee / Timmerman, WI, United States +location = (0.75252779581822171, -1.5364715181723414) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMWC.TXT +zone = ('wiz066', 0.0020925709838411979) + +[kmwh] +description = Grant County Airport, WA, United States +location = (0.82379540694132358, -2.0824686858379007) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMWH.TXT +zone = ('waz034', 0.0039029232910279634) + +[kmwk] +description = Mount Airy, Mount Airy/Surry County Airport, NC, United States +location = (0.63634219714032147, -1.4059160419863546) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMWK.TXT +zone = ('ncz003', 0.0020531981833493223) + +[kmwl] +description = Mineral Wells Airport, TX, United States +location = (0.57217710644547437, -1.7115862197891059) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMWL.TXT +zone = ('txz116', 0.0036532147534208683) + +[kmwm] +description = Windom, Windom Municipal Airport, MN, United States +location = (0.76643225219244326, -1.6599729552981846) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMWM.TXT +zone = ('mnz081', 0.0018684020188661668) + +[kmwn] +description = Mount Washington, NH, United States +location = (0.77259908221615659, -1.2444197566719568) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMWN.TXT +zone = ('nhz004', 0.0035465897342252836) + +[kmwo] +description = Hook Field Muni Arpt, OH, US +location = (0.68992865331335851, -1.4730578886832142) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMWO.TXT +zone = ('ohz070', 0.0028519360394313725) + +[kmws] +description = Mount Wilson, CA, United States +location = (0.59748438059939213, -2.0606520701879716) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMWS.TXT +zone = ('caz548', 0.0032185825269575837) + +[kmwt] +description = Mt Ida, AR, United States +location = (0.60301125656404075, -1.6333372916580267) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMWT.TXT +zone = ('arz041', 0.0011122873922965683) + +[kmxf] +description = Maxwell Air Force Base / Montgomery, AL, United States +location = (0.56519578943749704, -1.5073826973057691) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMXF.TXT +zone = ('alz044', 0.0036896010206460259) + +[kmxo] +description = Monticello Municipal, IA, United States +location = (0.73711072075893858, -1.5911585014014973) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMXO.TXT +zone = ('iaz053', 0.0020095499575435967) + +[kmyf] +description = San Diego Montgomery Field, CA, United States +location = (0.57275888286280585, -2.0443623305026914) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMYF.TXT +zone = ('caz043', 0.0032020028618830166) + +[kmyl] +description = Mccall Airport, ID, United States +location = (0.78336194593678821, -2.0260363733567508) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMYL.TXT +zone = ('idz011', 0.0030242067619221389) + +[kmyp] +description = Salida Mountain, Monarch Pass, CO, United States +location = (0.67168026635639544, -1.8555807312154491) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMYP.TXT +zone = ('coz061', 0.0045630507146852363) + +[kmyr] +description = Myrtle Beach Air Force Base, SC, United States +location = (0.58788506971342325, -1.3776465562408575) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMYR.TXT +zone = ('scz054', 0.0014363881250754236) + +[kmyt] +description = Innovator, MS, United States +location = (0.49254161118642192, -1.5640768091747184) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMYT.TXT +zone = ('laz069', 0.021900858053884736) + +[kmyv] +description = Marysville Yuba County, CA, United States +location = (0.68242373752978291, -2.1217385940077733) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMYV.TXT +zone = ('caz016', 0.006845917450562425) + +[kmzg] +description = Mustang Island A85A, TX, United States +location = (0.48392647207310546, -1.67885160004059) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMZG.TXT +zone = ('txz245', 0.014327193241560484) + +[kmzh] +description = Moose Lake, Moose Lake Carlton County Airport, MN, United States +location = (0.81012366113403456, -1.6196655458507379) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMZH.TXT +zone = ('mnz038', 0.0052120228759833208) + +[kmzz] +description = Marion, In, US +location = (0.70668381413250403, -1.4953981031087418) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KMZZ.TXT +zone = ('inz032', 0.00056089986533684917) + +[kn60] +description = Garrison Municipal Airport, ND, United States +location = (0.83164938857529802, -1.7703456379395817) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KN60.TXT +zone = ('ndz021', 0.0015113944365119062) + +[knak] +description = Annapolis Us Naval Academy, MD, United States +location = (0.68038752006912284, -1.3348859895669964) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KNAK.TXT +zone = ('mdz014', 0.0010673409521304562) + +[knbc] +description = Beaufort Mcas, SC, United States +location = (0.56694111868949137, -1.4087715945680896) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KNBC.TXT +zone = ('scz048', 0.0022350949423462795) + +[knbg] +description = New Orleans Naval Air Stn, LA, United States +location = (0.52068989351164163, -1.5710872150035622) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KNBG.TXT +zone = ('laz063', 0.0011012826530351889) + +[knbt] +description = Piney Island Bt11 Bomb Range, NC, United States +location = (0.61115612640668104, -1.3345951013583306) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KNBT.TXT +zone = ('ncz095', 0.0043398356899783204) + +[knca] +description = Mcas New River, NC, United States +location = (0.60562925044203242, -1.3517575056696083) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KNCA.TXT +zone = ('ncz098', 0.00069098741948102902) + +[kndz] +description = Milton Whiting Field (South), FL, United States +location = (0.53581608036225914, -1.5187273374437325) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KNDZ.TXT +zone = ('flz004', 0.0021489272970118658) + +[knel] +description = Lakehurst Naval Air Station, NJ, United States +location = (0.69871347721506327, -1.2970705224404524) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KNEL.TXT +zone = ('njz020', 0.001995800789265435) + +[knew] +description = New Orleans Lakefront Airport, LA, United States +location = (0.52447144022429604, -1.571378103212228) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KNEW.TXT +zone = ('laz062', 0.0019702935143417503) + +[knfg] +description = Mcas Camp Pendleton, CA, United States +location = (0.58119464091411166, -2.0481438772153457) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KNFG.TXT +zone = ('caz043', 0.0058537881445789447) + +[knfl] +description = Fallon Naval Air Station, NV, United States +location = (0.68824150170309728, -2.0714149339086037) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KNFL.TXT +zone = ('nvz004', 0.010481852311699427) + +[knfw] +description = Nas Fort Worth Tx, TX, United States +location = (0.57188621823680863, -1.7008233560684742) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KNFW.TXT +zone = ('txz118', 0.0023211656233015254) + +[kngp] +description = Corpus Christi Naval Air Stn, TX, United States +location = (0.48316531459376355, -1.6979144739818168) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KNGP.TXT +zone = ('txz243', 0.0053601134920565159) + +[kngu] +description = Norfolk, Naval Air Station, VA, United States +location = (0.64461311854004999, -1.3316134972195071) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KNGU.TXT +zone = ('vaz095', 0.0010199008829366917) + +[knhk] +description = Nas Patuxent River Md, MD, United States +location = (0.66846110351382815, -1.3334315485236679) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KNHK.TXT +zone = ('mdz017', 0.0028513709933657779) + +[knid] +description = Naws China Lake, CA, United States +location = (0.62279165475330989, -2.054252529597326) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KNID.TXT +zone = ('caz098', 0.001742179569623145) + +[knip] +description = Jacksonville Naval Air Stn, FL, United States +location = (0.52767121051961896, -1.4253522224620359) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KNIP.TXT +zone = ('flz025', 0.0016942513231396055) + +[knjk] +description = El Centro, Naval Air Facility, CA, United States +location = (0.57290432696713878, -2.0186575091302639) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KNJK.TXT +zone = ('caz033', 0.0047068151790357234) + +[knjm] +description = Bogue Field, Mcalf, NC, United States +location = (0.60562925044203242, -1.3444853004529651) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KNJM.TXT +zone = ('ncz095', 0.0056918090327086612) + +[knkt] +description = Cherry Point, Marine Corps Air Station, NC, United States +location = (0.60908112385153224, -1.3418236733436737) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KNKT.TXT +zone = ('ncz095', 0.0032164168873828067) + +[knkx] +description = Mcas Miramar, CA, United States +location = (0.57363154748880296, -2.0446532187113573) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KNKX.TXT +zone = ('caz043', 0.0023258386397061624) + +[knlc] +description = Lemoore Naval Air Station, CA, United States +location = (0.6341362948912731, -2.0935224377671982) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KNLC.TXT +zone = ('caz089', 0.0092336112278586027) + +[knmm] +description = Meridian Naval Air Station, MS, United States +location = (0.57450421211480007, -1.5521794814402905) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KNMM.TXT +zone = ('msz038', 0.0033440616118952365) + +[knog] +description = Orange Grove, Nalf, TX, United States +location = (0.49712794860971821, -1.7115862197891059) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KNOG.TXT +zone = ('txz231', 0.0024695346796738287) + +[knpa] +description = Pensacola, Naval Air Station, FL, United States +location = (0.52981408699012311, -1.5240796804831815) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KNPA.TXT +zone = ('flz002', 0.0026877784520719836) + +[knqa] +description = Millington, Millington Municipal Airport, TN, United States +location = (0.61709024586346184, -1.568532246904115) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KNQA.TXT +zone = ('tnz049', 0.0029071335715012258) + +[knqi] +description = Kingsville Nas, TX, United States +location = (0.48578330847175505, -1.7165313193364231) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KNQI.TXT +zone = ('txz240', 0.0036144210949618856) + +[knqx] +description = Key West Naval Air Station, FL, United States +location = (0.42906010778193931, -1.4256431106707015) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KNQX.TXT +zone = ('flz078', 0.0023890630183016669) + +[knrb] +description = Mayport Naval Air Facility, FL, United States +location = (0.53058009260627614, -1.4209888993320501) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KNRB.TXT +zone = ('flz025', 0.0040621790805303289) + +[knrs] +description = Imperial Beach, Nolf, CA, United States +location = (0.56839555973282008, -2.0440714422940256) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KNRS.TXT +zone = ('caz043', 0.0073971535691578424) + +[knse] +description = Milton Whiting Field (North), FL, United States +location = (0.53639785677959062, -1.5187273374437325) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KNSE.TXT +zone = ('flz003', 0.0020619294696294361) + +[knsi] +description = San Nicolas Island, CA, United States +location = (0.58003108807944892, -2.0850866797158925) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KNSI.TXT +zone = ('caz087', 0.015297511335504228) + +[kntd] +description = Nawcwpns Point Mugu, Ca, CA, United States +location = (0.59544816313873206, -2.0789780273339122) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KNTD.TXT +zone = ('caz040', 0.0017716647153309336) + +[kntu] +description = Oceana, Naval Air Station, VA, United States +location = (0.64257205294257902, -1.3270320079330218) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KNTU.TXT +zone = ('vaz098', 0.0012201253290402793) + +[knuc] +description = San Clemente Island Nalf, CA, United States +location = (0.5762495413667944, -2.069669604656609) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KNUC.TXT +zone = ('caz087', 0.0067431973463089262) + +[knui] +description = Knui Webster Field Annex, MD, United States +location = (0.66584310963583671, -1.3337224367323335) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KNUI.TXT +zone = ('mdz017', 0.0037642545526604117) + +[knuq] +description = Moffett Field, CA, United States +location = (0.65333491666321064, -2.130174352059079) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KNUQ.TXT +zone = ('caz508', 0.0032215606276517271) + +[knuw] +description = Nas Whidbey Island, WA, United States +location = (0.84386669333925834, -2.1406463275710452) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KNUW.TXT +zone = ('waz506', 0.0038427340625105688) + +[knxf] +description = Oceanside, Ca, US +location = (0.58102010798891224, -2.0500637393925394) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KNXF.TXT +zone = ('caz057', 0.0058577774316488631) + +[knxp] +description = Twentynine Palms Marine, CA, United States +location = (0.59864793343405498, -2.0274908144000796) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KNXP.TXT +zone = ('caz525', 0.0012742649528561826) + +[knyc] +description = New York City Central Park, NY, United States +location = (0.71180344660502071, -1.2909618700584724) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KNYC.TXT +zone = ('nyz072', 8.2641608936897146e-05) + +[knyg] +description = Quantico Marine Corps Airfac, VA, United States +location = (0.67195176201781692, -1.3491395117916167) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KNYG.TXT +zone = ('vaz055', 0.0025857450660423473) + +[knyl] +description = Mcas Yuma, AZ, United States +location = (0.56985000077614856, -2.0001473227855016) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KNYL.TXT +zone = ('azz025', 0.0010136213381773613) + +[knzy] +description = Nas North Island, San Diego, CA, United States +location = (0.57072266540214578, -2.0458167715460198) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KNZY.TXT +zone = ('caz043', 0.0048661270274682677) + +[ko22] +description = Columbia, Ca, US +location = (0.66374871453344353, -2.1017254852515719) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KO22.TXT +zone = ('caz019', 0.0097814310092475786) + +[ko54] +description = Weaverville, CA, United States +location = (0.71117318881957825, -2.1453975016459186) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KO54.TXT +zone = ('caz004', 0.0025853300619982774) + +[ko69] +description = Petaluma, Ca, US +location = (0.66758843888783104, -2.1397736629450481) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KO69.TXT +zone = ('caz506', 0.0021682144738019676) + +[ko86] +description = Trinity Center Airport, United States +location = (0.71528392402170615, -2.1414094204266019) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KO86.TXT +zone = ('caz004', 0.0072947389862526605) + +[koaj] +description = Jacksonville, Albert J Ellis Airport, NC, United States +location = (0.60795635611135812, -1.3546663877562652) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KOAJ.TXT +zone = ('ncz098', 0.0031055528918015039) + +[koak] +description = Metro Oakland International Airport, CA, United States +location = (0.65828001621052801, -2.133374122354402) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KOAK.TXT +zone = ('caz508', 0.0023430990609431689) + +[kobe] +description = Okeechobee County Airport, FL, United States +location = (0.47589310937712048, -1.4111083965110374) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KOBE.TXT +zone = ('flz058', 0.0029295007408663091) + +[kocf] +description = Ocala, Ocala International Airport-Jim Taylor Field, FL, United States +location = (0.50905436516501279, -1.4349515333480047) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KOCF.TXT +zone = ('flz040', 0.0025521678940045303) + +[koch] +description = Nacogdoches, A L Mangham Jr. Regional Airport, TX, United States +location = (0.55123315542154239, -1.6531176898472959) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KOCH.TXT +zone = ('txz152', 0.0016041691637639251) + +[kocw] +description = Washington, Warren Field Airport, NC, United States +location = (0.62082331120800527, -1.3447713405248196) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KOCW.TXT +zone = ('ncz080', 0.0029628803442992907) + +[kodo] +description = Odessa Schlemeyer Field, TX, United States +location = (0.55705091959485686, -1.7872171540421935) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KODO.TXT +zone = ('txz061', 0.0022724706552560824) + +[kodx] +description = Ord Evelyn Sharp Fld Airport, NE, United States +location = (0.72634785703830684, -1.7270032948483891) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KODX.TXT +zone = ('nez039', 0.0009569528338030398) + +[koeb] +description = Coldwater, Branch County Memorial Airport, MI, United States +location = (0.73187473300295547, -1.4844461620524771) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KOEB.TXT +zone = ('miz080', 0.00031239742963288478) + +[koeo] +description = Osceola, L O Simenstad Municipal Airport, WI, United States +location = (0.7907844433945751, -1.617745683673544) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KOEO.TXT +zone = ('mnz053', 0.0043135746912144925) + +[koff] +description = Omaha / Offutt Air Force Base, NE, United States +location = (0.71762121077833518, -1.673770752662562) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KOFF.TXT +zone = ('nez053', 0.002787006165485534) + +[kofk] +description = Karl Stefan Memorial Airport, NE, United States +location = (0.73274739762895269, -1.7005324678598084) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KOFK.TXT +zone = ('nez031', 0.0024661680020387879) + +[kofp] +description = Hanover County Municipal, VA, United States +location = (0.65798912800186227, -1.3514666174609427) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KOFP.TXT +zone = ('vaz063', 0.0013159547355496837) + +[koga] +description = Ogallala, Searle Field Airport, NE, United States +location = (0.71767454028325717, -1.7762021872073848) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KOGA.TXT +zone = ('nez057', 0.0019757397544548608) + +[kogb] +description = Orangeburg Municipal Airport, SC, United States +location = (0.58410352300076895, -1.4110987002374153) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KOGB.TXT +zone = ('scz036', 0.00087003060921408406) + +[kogd] +description = Ogden-Hinckley Airport, UT, United States +location = (0.71907565182166377, -1.9550596504423148) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KOGD.TXT +zone = ('utz002', 0.0030778119328605793) + +[koja] +description = Weatherford, Thomas P Stafford Airport, OK, United States +location = (0.62037243448457324, -1.7220872841219383) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KOJA.TXT +zone = ('okz016', 0.0050060875733692247) + +[kojc] +description = Olathe Johnson Co Executive, KS, United States +location = (0.6777695261911314, -1.6534085780559615) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KOJC.TXT +zone = ('ksz105', 0.0014959351014401368) + +[kokb] +description = Oceanside, CA, United States +location = (0.57974019987078318, -2.0481438772153457) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KOKB.TXT +zone = ('caz043', 0.0044779765215328046) + +[kokc] +description = Will Rogers World Airport, OK, United States +location = (0.61755566699732689, -1.7034413499464656) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KOKC.TXT +zone = ('okz025', 0.0040156556699973249) + +[kokk] +description = Kokomo, Kokomo Municipal Airport, IN, United States +location = (0.70744012347503493, -1.5021467095497862) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KOKK.TXT +zone = ('inz031', 0.0010944344652524265) + +[kokm] +description = Okmulgee, Okmulgee Municipal Airport, OK, United States +location = (0.62252500722869963, -1.6746191766045038) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KOKM.TXT +zone = ('okz066', 0.00043407794010024981) + +[kokv] +description = Winchester Regional, VA, United States +location = (0.68329640215578002, -1.3639748104335687) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KOKV.TXT +zone = ('vaz028', 0.0017675314248236866) + +[kole] +description = Olean Municipal, NY, United States +location = (0.73711072075893858, -1.3677563571462228) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KOLE.TXT +zone = ('nyz021', 0.0044008948848215787) + +[kolf] +description = Wolf Point Clayton Airport, MT, United States +location = (0.83950337020927257, -1.8427768018973463) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KOLF.TXT +zone = ('mtz020', 0.004273651229823123) + +[kolm] +description = Olympia Airport, WA, United States +location = (0.81972297202000344, -2.1450096507010312) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KOLM.TXT +zone = ('waz504', 0.0042947944652510801) + +[kols] +description = Nogales International Airport, AZ, United States +location = (0.5483242733348852, -1.9346974758357143) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KOLS.TXT +zone = ('azz503', 0.005862433944555618) + +[kolu] +description = Columbus, Columbus Municipal Airport, NE, United States +location = (0.72343897495164966, -1.6987871386078139) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KOLU.TXT +zone = ('nez042', 0.0032145118308301588) + +[kolv] +description = Olive Branch, Olive Branch Airport, MS, United States +location = (0.61049677980037209, -1.5670778058607864) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KOLV.TXT +zone = ('msz001', 0.0034431907481500771) + +[koly] +description = Olney-Noble, Olney-Noble Airport, IL, United States +location = (0.67582542332988205, -1.5389683086300556) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KOLY.TXT +zone = ('ilz072', 0.0012556156107918989) + +[kolz] +description = Oelwein, Oelwein Municipal Airport, IA, United States +location = (0.74492106916161316, -1.6052568832481624) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KOLZ.TXT +zone = ('iaz029', 0.0035823751255621753) + +[koma] +description = Omaha Eppley Airfield, NE, United States +location = (0.72082098107365811, -1.673770752662562) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KOMA.TXT +zone = ('nez052', 0.0033368285543373139) + +[komh] +description = Orange, Orange County Airport, VA, United States +location = (0.66753995751972006, -1.3621519109925966) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KOMH.TXT +zone = ('vaz050', 0.00044104925617589251) + +[komk] +description = Omak Airport, WA, United States +location = (0.84590291079991842, -2.0859593443418896) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KOMK.TXT +zone = ('waz043', 0.0021766316429189) + +[komn] +description = Ormond Beach, Ormond Beach Municipal Airport, FL, United States +location = (0.51140086338158297, -1.4156995820711449) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KOMN.TXT +zone = ('flz038', 0.0041319484055491679) + +[kona] +description = Winona, Winona Municipal Airport-Max Conrad Field, MN, United States +location = (0.76939931192083366, -1.6004669240788003) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KONA.TXT +zone = ('mnz088', 0.0019539221591676568) + +[konl] +description = O'Neill / Baker Field, NE, United States +location = (0.74118315568025861, -1.7223490835097377) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KONL.TXT +zone = ('nez010', 0.0013076826097217565) + +[konm] +description = Socorro Municipal, NM, United States +location = (0.59370283388673772, -1.8657569703819383) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KONM.TXT +zone = ('nmz520', 0.0021850397596938965) + +[kono] +description = Ontario Municipal Airport, OR, United States +location = (0.7682357590861707, -2.0423261130420314) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KONO.TXT +zone = ('orz064', 0.0020970594024054628) + +[konp] +description = Newport, Newport Municipal Airport, OR, United States +location = (0.77807262867588323, -2.1652215330664877) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KONP.TXT +zone = ('orz002', 0.0011909255802846869) + +[kont] +description = Ontario International Airport, CA, United States +location = (0.59428461030406921, -2.0522163121366659) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KONT.TXT +zone = ('caz548', 0.0056526236117281446) + +[konx] +description = Currituck, Currituck County Airport, NC, United States +location = (0.63528045517869158, -1.3267314234507341) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KONX.TXT +zone = ('ncz017', 0.00025452040408240355) + +[konz] +description = Detroit/Grosse Ile, Grosse Ile Airport, MI, United States +location = (0.73475937440555728, -1.4514351985057288) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KONZ.TXT +zone = ('miz076', 0.0036191787637268975) + +[kooa] +description = Oskaloosa, Oskaloosa Municipal Airport, IA, United States +location = (0.71953137668190681, -1.6143180509480997) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KOOA.TXT +zone = ('iaz075', 0.0027111598721449377) + +[kopf] +description = Miami Opa Locka Airport, FL, United States +location = (0.45204027626653132, -1.4012085011427808) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KOPF.TXT +zone = ('flz074', 0.0014332335303992854) + +[kopm] +description = N. Padre Island, TX, United States +location = (0.4683203196781896, -1.691922176883303) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KOPM.TXT +zone = ('txz256', 0.010005661611544392) + +[kopn] +description = Thomaston, Thomaston-Upson County Airport, GA, United States +location = (0.57517325499473138, -1.4706919979193998) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KOPN.TXT +zone = ('gaz069', 0.0013839705222221642) + +[koqt] +description = Oak Ridge, TN, United States +location = (0.62860941892662436, -1.470149006596557) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KOQT.TXT +zone = ('tnz036', 0.0018423324751345007) + +[koqu] +description = N. Kingston / Quonset, RI, United States +location = (0.7260569688296411, -1.2464559741326171) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KOQU.TXT +zone = ('riz004', 0.0016280918368664328) + +[korb] +description = Orr, MN, United States +location = (0.83804892916594387, -1.6208290986854006) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KORB.TXT +zone = ('mnz011', 0.0044750264949417516) + +[korc] +description = Orange City, IA, United States +location = (0.75020069014889601, -1.6766796347492192) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KORC.TXT +zone = ('iaz012', 0.0022395187886684394) + +[kord] +description = Chicago O'Hare International, IL, United States +location = (0.73274739762895269, -1.5344353007116815) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KORD.TXT +zone = ('ilz014', 0.0028200654120746934) + +[kore] +description = Orange, Orange Municipal Airport, MA, United States +location = (0.74301575139485276, -1.2614803501102017) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KORE.TXT +zone = ('maz003', 0.0022461231826653777) + +[korf] +description = Norfolk International Airport, VA, United States +location = (0.64402649398590761, -1.3299408900196792) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KORF.TXT +zone = ('vaz095', 0.0013777532906657877) + +[korg] +description = Orange, Orange County Airport, TX, United States +location = (0.52480596166426163, -1.6371818641492253) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KORG.TXT +zone = ('txz216', 0.0017393429150540016) + +[korh] +description = Worcester Regional Airport, MA, United States +location = (0.73769249717626995, -1.2543099557665913) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KORH.TXT +zone = ('maz012', 0.0023636898286487507) + +[korl] +description = Orlando Executive Airport, FL, United States +location = (0.49829150144438111, -1.4195344582887213) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KORL.TXT +zone = ('flz045', 0.00063150747109583022) + +[kors] +description = Eastsound, Orcas Island Airport, WA, United States +location = (0.85011594168876037, -2.1451890317630418) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KORS.TXT +zone = ('waz001', 0.0023389045237737537) + +[kosa] +description = Mount Pleasant, Mount Pleasant Regional Airport, TX, United States +location = (0.57762156408433452, -1.6573888983778708) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KOSA.TXT +zone = ('txz109', 0.0021184090016544612) + +[kosc] +description = Oscoda, Oscoda-Wurtsmith Airport, MI, United States +location = (0.77579885251147951, -1.4550228197459394) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KOSC.TXT +zone = ('miz036', 0.0037384617974626343) + +[kosh] +description = Wittman Regional Airport, WI, United States +location = (0.76736309446017359, -1.5454890526409788) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KOSH.TXT +zone = ('wiz048', 0.0021432482539651678) + +[kosu] +description = Ohio State University Airport, OH, United States +location = (0.69958614184106049, -1.4500777201986221) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KOSU.TXT +zone = ('ohz055', 0.0022179501332989988) + +[kotg] +description = Worthington, Worthington Municipal Airport, MN, United States +location = (0.76183621849552485, -1.6682438766979133) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KOTG.TXT +zone = ('mnz089', 0.0021884292496592512) + +[koth] +description = North Bend, North Bend Municipal Airport, OR, United States +location = (0.75776378357420471, -2.1685715956029545) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KOTH.TXT +zone = ('orz021', 0.0042804890434227838) + +[kotm] +description = Ottumwa Industrial Airport, IA, United States +location = (0.71733032256966944, -1.6135568934687576) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KOTM.TXT +zone = ('iaz086', 0.0013233201546788964) + +[koun] +description = Norman / Max Westheimer, OK, United States +location = (0.61464678491066971, -1.7008233560684742) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KOUN.TXT +zone = ('okz029', 0.0017673407448920435) + +[kove] +description = Oroville Municipal Airport, CA, United States +location = (0.68940505453776013, -2.1226112586337704) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KOVE.TXT +zone = ('caz016', 0.0046946004029224872) + +[kovl] +description = Olivia, Olivia Regional Airport, MN, United States +location = (0.78153419835900528, -1.6586348695383224) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KOVL.TXT +zone = ('mnz065', 0.0013938371128842228) + +[kovs] +description = Boscobel Airport, WI, United States +location = (0.75310957223555319, -1.5827227433501911) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KOVS.TXT +zone = ('wiz054', 0.0035172150821802376) + +[kowa] +description = Owatonna, Owatonna Degner Regional Airport, MN, United States +location = (0.76998108833816503, -1.6275195274847123) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KOWA.TXT +zone = ('mnz085', 0.0016742812108428715) + +[kowb] +description = Owensboro, Owensboro-Daviess County Airport, KY, United States +location = (0.65868725970265996, -1.521345331321724) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KOWB.TXT +zone = ('kyz019', 0.0011047885384543284) + +[kowd] +description = Norwood Memorial Airport, MA, United States +location = (0.73623805613294124, -1.2420926510026313) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KOWD.TXT +zone = ('maz013', 0.0014689082062336026) + +[koxb] +description = Ocean City Municipal Airport, MD, United States +location = (0.668751991722494, -1.3110331564564071) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KOXB.TXT +zone = ('mdz025', 0.0012894717964366928) + +[koxc] +description = Oxford, Waterbury-Oxford Airport, CT, United States +location = (0.72402075136898103, -1.2764174596251865) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KOXC.TXT +zone = ('ctz006', 0.0018299507828775118) + +[koxi] +description = Knox, In, US +location = (0.72134457984925637, -1.512502329778286) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KOXI.TXT +zone = ('inz012', 0.00087004107971845417) + +[koxr] +description = Oxnard Airport, CA, United States +location = (0.59690260418206076, -2.0804324683772411) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KOXR.TXT +zone = ('caz040', 0.001177652649590206) + +[koxv] +description = Knoxville, IA, United States +location = (0.72082098107365811, -1.6251924218153864) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KOXV.TXT +zone = ('iaz074', 0.00064117922641554481) + +[koza] +description = Ozana, TX, US +location = (0.53651421206305683, -1.7662732030182615) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KOZA.TXT +zone = ('txz076', 0.0031958016346981064) + +[kozr] +description = Cairns Army Air Field / Ozark, AL, United States +location = (0.5459971676655595, -1.4960380571678062) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KOZR.TXT +zone = ('alz066', 0.003032268647191447) + +[kozw] +description = Howell, Livingston County Airport, MI, United States +location = (0.74402416385156056, -1.4658002278770044) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KOZW.TXT +zone = ('miz068', 0.0010412126971421699) + +[kp28] +description = Medicine Lodge, KS, United States +location = (0.6507169227852192, -1.7200219778404118) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KP28.TXT +zone = ('ksz090', 0.0020998156040872989) + +[kp53] +description = Munising Lakeshore, MI, United States +location = (0.81012366113403456, -1.5123277968530866) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KP53.TXT +zone = ('miz006', 0.00059072301170205841) + +[kp58] +description = Port Hope, MI, United States +location = (0.7682357590861707, -1.4451326206513049) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KP58.TXT +zone = ('miz049', 0.0042239712622052679) + +[kp59] +description = Copper Harbor, MI, United States +location = (0.8284496182799751, -1.5338535242943501) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KP59.TXT +zone = ('miz001', 0.0067768584209973153) + +[kp60] +description = Yellowstone Lake, WY, United States +location = (0.77754418176347373, -1.9271343824104057) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KP60.TXT +zone = ('wyz001', 0.001684916912731258) + +[kp68] +description = Eureka, NV, United States +location = (0.69115038378975457, -2.0245819323134224) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KP68.TXT +zone = ('nvz037', 0.0095446495855690452) + +[kp69] +description = Lowell, ID, United States +location = (0.80536763892235008, -2.0175375895269005) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KP69.TXT +zone = ('idz007', 0.0058500756126865037) + +[kp92] +description = Salt Point, LA, United States +location = (0.51603568217299012, -1.5975580419921429) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KP92.TXT +zone = ('laz054', 0.0029447810274916492) + +[kpae] +description = Everett Snohomish County, WA, United States +location = (0.83630359991394954, -2.1342467869803992) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPAE.TXT +zone = ('waz507', 0.0024360250611862827) + +[kpah] +description = Barkley Regional Airport, KY, United States +location = (0.64664448786389905, -1.5492705993536331) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPAH.TXT +zone = ('kyz005', 0.00075479280177901146) + +[kpam] +description = Tyndall Air Force Base, FL, United States +location = (0.52476232843296178, -1.4937109514984803) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPAM.TXT +zone = ('flz112', 0.0029695219948428636) + +[kpan] +description = Payson, Az, US +location = (0.59777526880805787, -1.943075056245287) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPAN.TXT +zone = ('azz018', 0.006933118958664262) + +[kpao] +description = Palo Alto Airport, CA, United States +location = (0.65391669308054212, -2.131337904893742) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPAO.TXT +zone = ('caz508', 0.0023175490008924553) + +[kpbf] +description = Pine Bluff Grider Field, AR, United States +location = (0.59661171597339491, -1.6045393590001205) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPBF.TXT +zone = ('arz056', 0.0014919093329796281) + +[kpbg] +description = Plattsburgh International Airport, NY, United States +location = (0.77928951101546817, -1.2822352237985009) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPBG.TXT +zone = ('nyz028', 0.002724899110839661) + +[kpbh] +description = Phillips / Price County, WI, United States +location = (0.7976154681614086, -1.5777776438028741) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPBH.TXT +zone = ('wiz009', 0.00058179791898031047) + +[kpbi] +description = Palm Beach International, FL, United States +location = (0.46571202207382029, -1.3980087308474578) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPBI.TXT +zone = ('flz168', 0.00048836233753161995) + +[kpcm] +description = Plant City, Plant City Municipal Airport, FL, United States +location = (0.48869219055841229, -1.4337879805133418) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPCM.TXT +zone = ('flz051', 0.0060978824038284678) + +[kpcz] +description = Waupaca, Waupaca Municipal Airport, WI, United States +location = (0.77376748318763056, -1.5536096817995637) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPCZ.TXT +zone = ('wiz037', 0.0024689958525676648) + +[kpdc] +description = Prairie Du Chien, Prairie Du Chien Municipal Airport, WI, United States +location = (0.75087458116563821, -1.5904264327430215) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPDC.TXT +zone = ('iaz030', 0.0041516149352505936) + +[kpdk] +description = Atlanta De Kalb-Peachtree, GA, United States +location = (0.59137572821741202, -1.4713125594312197) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPDK.TXT +zone = ('gaz033', 0.0012099995351792935) + +[kpdt] +description = Pendleton Municipal Airport, OR, United States +location = (0.80576033800404878, -2.0836322386725641) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPDT.TXT +zone = ('waz028', 0.0038405501266948893) + +[kpdx] +description = Portland International Airport, OR, United States +location = (0.79557925070074864, -2.1397736629450481) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPDX.TXT +zone = ('orz006', 0.0027732541939146801) + +[kpea] +description = Pella, Pella Municipal Airport, IA, United States +location = (0.72256631032565244, -1.6219926515200636) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPEA.TXT +zone = ('iaz074', 0.0024593058860318852) + +[kpeo] +description = Penn Yan Airport, NY, United States +location = (0.74438292597558153, -1.344776188661631) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPEO.TXT +zone = ('nyz015', 0.00076854211102928504) + +[kpeq] +description = Pecos, Pecos Municipal Airport, TX, United States +location = (0.54772310437030935, -1.8066000050129527) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPEQ.TXT +zone = ('txz058', 0.005111275676233552) + +[kpex] +description = Paynesville, Paynesville Municipal Airport, MN, United States +location = (0.79189466672431608, -1.653636440486083) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPEX.TXT +zone = ('mnz049', 0.0035402547959863589) + +[kpez] +description = Pleasanton Muni Arpt, TX, US +location = (0.50527281845235839, -1.7194983790648135) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPEZ.TXT +zone = ('txz220', 0.0010419929371261441) + +[kpga] +description = Page Municipal Airport, AZ, United States +location = (0.64460827040323898, -1.9451694513476803) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPGA.TXT +zone = ('azz005', 0.004081100899396466) + +[kpgd] +description = Punta Gorda Charlotte County, FL, United States +location = (0.46978445699514038, -1.4311699866353502) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPGD.TXT +zone = ('flz062', 0.0016679489778884705) + +[kpgv] +description = Pitt-Greenville Airport, NC, United States +location = (0.62191899012731278, -1.3508848410436112) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPGV.TXT +zone = ('ncz044', 0.00078178271573011598) + +[kphd] +description = New Philadelphia Clever Fld, OH, United States +location = (0.70627657064037208, -1.4209888993320501) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPHD.TXT +zone = ('ohz039', 0.00088114102293434507) + +[kphf] +description = Williamsburg International Airport, VA, United States +location = (0.64809892890722764, -1.3351768777756621) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPHF.TXT +zone = ('vaz094', 0.00098651117880695668) + +[kphl] +description = Philadelphia International Airpt, PA, United States +location = (0.69580459512840609, -1.3130693739170674) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPHL.TXT +zone = ('paz071', 0.0027972404542459337) + +[kphn] +description = St. Clair County International, MI, United States +location = (0.74903713731423305, -1.4404784093126533) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPHN.TXT +zone = ('miz063', 0.0019526024071604966) + +[kphp] +description = Philip Airport, SD, United States +location = (0.76881753550350207, -1.7732545200262386) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPHP.TXT +zone = ('sdz032', 0.0043314252275767681) + +[kphx] +description = Phoenix, Phoenix Sky Harbor International Airport, AZ, United States +location = (0.58353629099387072, -1.9556608194068907) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPHX.TXT +zone = ('azz023', 0.0016173962802027144) + +[kpia] +description = Greater Peoria Regional Airport, IL, United States +location = (0.70976722914436063, -1.565269450830248) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPIA.TXT +zone = ('ilz029', 0.0023495028999171905) + +[kpib] +description = Hattiesburg/Laurel, Hattiesburg-Laurel Regional Airport, MS, United States +location = (0.54919693796088231, -1.5591607984482676) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPIB.TXT +zone = ('msz066', 0.0036600775472826531) + +[kpie] +description = St Petersburg/Clearwater, FL, United States +location = (0.4872377495150837, -1.4430964031906448) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPIE.TXT +zone = ('flz050', 0.00062845509391718673) + +[kpih] +description = Pocatello Regional Airport, ID, United States +location = (0.74903713731423305, -1.9652407377456149) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPIH.TXT +zone = ('idz021', 0.0018269586268327847) + +[kpil] +description = Port Isabel Cameron, TX, United States +location = (0.45669448760518294, -1.6987871386078139) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPIL.TXT +zone = ('txz257', 0.00029522271295749647) + +[kpir] +description = Pierre Regional Airport, SD, United States +location = (0.77463529967681655, -1.7502743515416468) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPIR.TXT +zone = ('sdz035', 0.003583980927974803) + +[kpit] +description = Greater Pittsburgh International, PA, United States +location = (0.70656745884903771, -1.4003358365167837) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPIT.TXT +zone = ('paz021', 0.0033569987759472526) + +[kpkb] +description = Mid-Ohio Valley Rgnl Airport, WV, United States +location = (0.68649617245110295, -1.4215706757493816) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPKB.TXT +zone = ('ohz076', 0.0022146711280618412) + +[kpkd] +description = Park Rapids Municipal Airport, MN, United States +location = (0.81855941918534059, -1.6592263422292759) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPKD.TXT +zone = ('mnz024', 0.0040568478277627175) + +[kpkv] +description = Port Lavaca, Calhoun County Airport, TX, United States +location = (0.50010470461173073, -1.6874037133753623) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPKV.TXT +zone = ('txz247', 0.0028856614814626587) + +[kpln] +description = Pellston Regional Airport, MI, United States +location = (0.7952883624920829, -1.4800392056911915) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPLN.TXT +zone = ('miz016', 0.001368585878868815) + +[kplu] +description = Pierce Cnty Arpt-Thun Field, WA, US +location = (0.82205007768932925, -2.1343631422638656) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPLU.TXT +zone = ('waz509', 0.0028226269194485871) + +[kpmd] +description = Palmdale Prod Flight Plant, CA, United States +location = (0.60446569760736946, -2.0609429583966374) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPMD.TXT +zone = ('caz059', 0.00061820033525038795) + +[kpmp] +description = Pompano Beach Airpark, FL, United States +location = (0.45814892864851153, -1.3982996190561237) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPMP.TXT +zone = ('flz172', 0.0017557246732384242) + +[kpmv] +description = Plattsmouth, Plattsmouth Municipal Airport, NE, United States +location = (0.714712328691678, -1.6740810334184724) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPMV.TXT +zone = ('nez053', 0.0038256161148827366) + +[kpna] +description = Pinedale, Ralph Wenz Field Airport, WY, United States +location = (0.74691850152778438, -1.9164927221100512) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPNA.TXT +zone = ('wyz025', 0.0043873853306037091) + +[kpnc] +description = Ponca City Municipal Airport, OK, United States +location = (0.64111761189925043, -1.6947147036864938) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPNC.TXT +zone = ('okz008', 0.0016000871262677461) + +[kpne] +description = N.E. Philadelphia Airport, PA, United States +location = (0.69958614184106049, -1.3092878272044128) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPNE.TXT +zone = ('paz071', 0.0020485261550137902) + +[kpnm] +description = Princeton, MN, United States +location = (0.79499747428341705, -1.6336281798666923) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPNM.TXT +zone = ('mnz051', 0.002826044173868118) + +[kpns] +description = Pensacola Regional Airport, FL, United States +location = (0.53203453364960485, -1.5216362195303896) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPNS.TXT +zone = ('flz002', 0.0020575000622513238) + +[kpnt] +description = Pontiac, Pontiac Municipal Airport, IL, United States +location = (0.71425175569462385, -1.5468028977167856) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPNT.TXT +zone = ('ilz032', 0.001052753732355716) + +[kpob] +description = Pope Air Force Base, NC, United States +location = (0.61377412028467249, -1.3793918854928517) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPOB.TXT +zone = ('ncz088', 0.003592690383269002) + +[kpoc] +description = La Verne / Brackett, CA, United States +location = (0.59515727493006643, -2.0557069706406543) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPOC.TXT +zone = ('caz548', 0.0028175850443443139) + +[kpoe] +description = Fort Polk, Polk Aaf Ft Polk, LA, United States +location = (0.54192473274423936, -1.6265402038488712) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPOE.TXT +zone = ('laz027', 0.001027782356202071) + +[kpof] +description = Poplar Bluff Mun Airport, MO, United States +location = (0.6416993883165818, -1.5763232027595453) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPOF.TXT +zone = ('moz109', 0.0015324050088499363) + +[kpou] +description = Poughkeepsie Dutchess Cty, NY, United States +location = (0.72663874524697247, -1.289507429015144) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPOU.TXT +zone = ('nyz065', 0.0024625311772513599) + +[kpov] +description = Ravena/Portage, Oh, US +location = (0.71942471767206262, -1.4180800172453927) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPOV.TXT +zone = ('ohz022', 0.0011557050696513155) + +[kppa] +description = Pampa, Perry Lefors Field Airport, TX, United States +location = (0.62156022800329169, -1.7627146705989174) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPPA.TXT +zone = ('txz014', 0.004520414059023703) + +[kppf] +description = Parsons Tri-City Airport, KS, United States +location = (0.65158958741121642, -1.6667894356545847) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPPF.TXT +zone = ('ksz100', 0.0037482597161683584) + +[kppo] +description = La Porte Muni, La Porte, US +location = (0.72553337005404284, -1.513724060254682) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPPO.TXT +zone = ('inz003', 0.00043837956956196961) + +[kppq] +description = Pittsfield, Pittsfield Penstone Municipal Airport, IL, United States +location = (0.69182912294330778, -1.5843808061395859) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPPQ.TXT +zone = ('ilz097', 0.0014792109543014245) + +[kpqi] +description = Presque Isle, ME, United States +location = (0.81477787247268607, -1.1876965559821413) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPQI.TXT +zone = ('mez002', 0.0021488842013866988) + +[kpql] +description = Pascagoula Lott International Airport, MS, United States +location = (0.53174364544093899, -1.5451981644323132) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPQL.TXT +zone = ('msz082', 0.0020760726537454293) + +[kpqn] +description = Pipestone, Pipestone Municipal Airport, MN, United States +location = (0.76765398266883933, -1.681042957879205) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPQN.TXT +zone = ('mnz097', 0.0010053403638913268) + +[kprb] +description = Paso Robles Airport, CA, United States +location = (0.62250076654464415, -2.1054488543224932) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPRB.TXT +zone = ('caz037', 0.0050307275327625195) + +[kprc] +description = Prescott Love Field, AZ, United States +location = (0.6047565858160352, -1.9620409674502921) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPRC.TXT +zone = ('azz037', 0.0040766301754208327) + +[kprg] +description = Paris, Edgar County Airport, IL, United States +location = (0.69290056117855992, -1.5301253070866179) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPRG.TXT +zone = ('ilz057', 0.0010870517525186035) + +[kprn] +description = Greenville Airport, AL, United States +location = (0.55472381392553105, -1.5001104920891264) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPRN.TXT +zone = ('alz049', 0.00035911485589813411) + +[kpro] +description = Perry, Ia, US +location = (0.73007122610922803, -1.6434020236778606) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPRO.TXT +zone = ('iaz059', 0.0029769981242063872) + +[kprx] +description = Paris / Cox Field, TX, United States +location = (0.58701240508742614, -1.6659167710285876) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPRX.TXT +zone = ('txz095', 0.0018555104410756609) + +[kpsc] +description = Tri-Cities Airport, WA, United States +location = (0.80750566725604311, -2.0789780273339122) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPSC.TXT +zone = ('waz028', 0.0014655932921987347) + +[kpsf] +description = Pittsfield Municipal Airport, MA, United States +location = (0.74060137926292713, -1.2790354535031778) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPSF.TXT +zone = ('maz001', 0.0027843271086506818) + +[kpsk] +description = Dublin / New River Valley, VA, United States +location = (0.64809892890722764, -1.4081898181507584) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPSK.TXT +zone = ('vaz013', 0.0012407611911983659) + +[kpsm] +description = Pease Air Force Base / Portsmouth, NH, United States +location = (0.75194601940089034, -1.2359839986206509) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPSM.TXT +zone = ('nhz014', 0.0014543875754113413) + +[kpsn] +description = Palestine, Palestine Municipal Airport, TX, United States +location = (0.55465594001017571, -1.6703867531684176) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPSN.TXT +zone = ('txz148', 0.00099180019383793478) + +[kpso] +description = Pagosa Springs, Co, US +location = (0.65065874514348609, -1.8683749642599297) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPSO.TXT +zone = ('coz023', 0.0032383723465140009) + +[kpsp] +description = Palm Springs Regional Airport, CA, United States +location = (0.59050306359141491, -2.033308578573394) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPSP.TXT +zone = ('caz061', 0.00327633980877799) + +[kpsx] +description = Palacios Municipal Airport, TX, United States +location = (0.50120038353103824, -1.6798794050445423) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPSX.TXT +zone = ('txz236', 0.0048160913406758016) + +[kptb] +description = Petersburg, Dinwiddie County Airport, VA, United States +location = (0.64897159353322487, -1.352921058504271) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPTB.TXT +zone = ('vaz080', 0.0024708052723225633) + +[kptk] +description = Oakland County International, MI, United States +location = (0.74467381418424727, -1.4558954843719367) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPTK.TXT +zone = ('miz069', 0.00041468337289422602) + +[kptn] +description = Patterson Memorial, LA, United States +location = (0.51865367605098156, -1.5940673834881542) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPTN.TXT +zone = ('laz054', 0.001562253326687524) + +[kpts] +description = Pittsburg, Ks, US +location = (0.65362580487187649, -1.6533504004142285) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPTS.TXT +zone = ('ksz097', 0.0019611527096770592) + +[kptt] +description = Pratt Municipal, KS, United States +location = (0.65798912800186227, -1.7235126363444004) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPTT.TXT +zone = ('ksz081', 0.0009223201590985217) + +[kptv] +description = Porterville, Porterville Municipal Airport, CA, United States +location = (0.62890030713528999, -2.0781053627079151) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPTV.TXT +zone = ('caz094', 0.0045283385931102803) + +[kptw] +description = Pottstown Limerick Airport, PA, United States +location = (0.70220413571905194, -1.3185962498817159) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPTW.TXT +zone = ('paz068', 0.002467330589314505) + +[kpub] +description = Pueblo Memorial Airport, CO, United States +location = (0.66817021530516241, -1.8238690683340744) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPUB.TXT +zone = ('coz086', 0.0017755480417594124) + +[kpuc] +description = Price Carbon County Airport, UT, United States +location = (0.6914412719984202, -1.9329521465837201) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPUC.TXT +zone = ('utz010', 0.0032723944664171368) + +[kpuj] +description = Paulding County Airp, US +location = (0.59184114935127707, -1.4824826666439834) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPUJ.TXT +zone = ('gaz031', 0.0010693491945136342) + +[kpuw] +description = Pullman/Moscow Rgnl Airport, WA, United States +location = (0.81594142530734903, -2.0440714422940256) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPUW.TXT +zone = ('idz003', 0.0042476252212682456) + +[kpvb] +description = Platteville, Wi, US +location = (0.74508105767637922, -1.5784757755036716) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPVB.TXT +zone = ('wiz067', 0.0039894030312432292) + +[kpvc] +description = Provincetown, Provincetown Municipal Airport, MA, United States +location = (0.73420183867228139, -1.2255120231086851) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPVC.TXT +zone = ('maz022', 0.0060368455789011777) + +[kpvd] +description = Providence Green State Airport, RI, United States +location = (0.72838407449896692, -1.2467468623412827) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPVD.TXT +zone = ('riz004', 0.00092012084423191991) + +[kpvf] +description = Placerville, Ca, US +location = (0.67579148637220443, -2.1074850717831528) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPVF.TXT +zone = ('caz067', 0.001779861341653284) + +[kpvg] +description = Hampton Roads Execut, US +location = (0.64193209888351443, -1.334304213149665) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPVG.TXT +zone = ('vaz096', 0.0020112525122649178) + +[kpvj] +description = Pauls Valley, Pauls Valley Municipal Airport, OK, United States +location = (0.60582317591447621, -1.6968672764306203) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPVJ.TXT +zone = ('okz040', 0.0012388149691148021) + +[kpvu] +description = Provo, Provo Municipal Airport, UT, United States +location = (0.7019132475103862, -1.9498236626863319) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPVU.TXT +zone = ('utz008', 0.0014360918297544154) + +[kpvw] +description = Plainview, Hale County Airport, TX, United States +location = (0.59634506844878477, -1.7753004337605209) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPVW.TXT +zone = ('txz029', 0.002326044087306823) + +[kpwa] +description = Wiley Post, OK, United States +location = (0.62017366087531844, -1.7043140145724629) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPWA.TXT +zone = ('okz025', 0.0034626678133556003) + +[kpwc] +description = Pine River, Pine River Regional Airport, MN, United States +location = (0.81550509299435048, -1.6473047738107927) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPWC.TXT +zone = ('mnz033', 0.0034522131775959566) + +[kpwg] +description = Waco, Mc Gregor Executive Airport, TX, United States +location = (0.54948782616954805, -1.6984962503991483) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPWG.TXT +zone = ('txz159', 0.0020913942674621959) + +[kpwk] +description = Chicago Executive Airport, IL, United States +location = (0.7350745032982785, -1.5341444125030157) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPWK.TXT +zone = ('ilz006', 0.0038437344535783469) + +[kpwm] +description = Portland International Jetport, ME, United States +location = (0.76183621849552485, -1.2269664641520137) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPWM.TXT +zone = ('mez024', 0.0021937996983260547) + +[kpwt] +description = Bremerton, Bremerton National Airport, WA, United States +location = (0.82903139469730658, -2.1423916568230394) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPWT.TXT +zone = ('waz511', 0.0025590472118346723) + +[kpym] +description = Plymouth Municipal Airport, MA, United States +location = (0.7312929565856241, -1.2345295575773225) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPYM.TXT +zone = ('maz019', 0.0022282947264833058) + +[kpyx] +description = Perryton, Perryton Ochiltree County Airport, TX, United States +location = (0.63529984772593595, -1.7581283331756212) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPYX.TXT +zone = ('txz004', 0.0024170108854343849) + +[kpzq] +description = Rogers City, Presque Isle County Airport, MI, United States +location = (0.79250068382570293, -1.4628089274645584) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KPZQ.TXT +zone = ('miz018', 0.0017262964535871726) + +[kqa4] +description = Fob Shindand, AF +location = (0.58293997016610599, 1.08646745936647) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KQA4.TXT + +[kqa7] +description = Tarin Kowt, AH +location = (0.56897733615015145, 1.149299312438266) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KQA7.TXT + +[kqar] +description = Port Au Prince, HA +location = (0.3242821750205464, 1.2618730491919001) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KQAR.TXT + +[kqay] +description = Camp Arifjan, KW +location = (0.49096111858600489, 0.84072510068566852) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KQAY.TXT + +[kqaz] +description = Tikrit, IQ +location = (0.60336032241443971, 0.76305794897192081) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KQAZ.TXT + +[kqb6] +description = Fob Tellier, AF +location = (0.5822418384653083, 1.2112585008840648) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KQB6.TXT + +[kqbl] +description = Afcwc Ntfs, FL, US +location = (0.5309291584566751, -1.5128513956286849) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KQBL.TXT +zone = ('flz006', 0.0027488720324529972) + +[kqbr] +description = Herrera Hlz, AH +location = (0.59219021520167603, 1.2164944886400477) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KQBR.TXT + +[kqbs] +description = Cob Basra, IQ +location = (0.53337261940946712, 0.83356925075249177) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KQBS.TXT + +[kqbu] +description = unknown or classified United States Department of Defense +location = None +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KQBU.TXT +zone = ('mtz010', 0.02502287798277962) + +[kqc3] +description = Fob Warrior, AF +location = (0.57124626417774405, 1.1803661731237649) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KQC3.TXT + +[kqca] +description = Granite Peak, UT, United States +location = (0.70104058288438897, -1.9783307071355725) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KQCA.TXT +zone = ('utz005', 0.013911800034820478) + +[kqcc] +description = Asadabad Fob, AH +location = (0.60824724432002386, 1.2414526969435666) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KQCC.TXT + +[kqcj] +description = Eagle Range, UT, United States +location = (0.71645765794367222, -1.9736764957969208) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KQCJ.TXT +zone = ('utz005', 0.0023628659732000189) + +[kqck] +description = Superior Valley G R, US +location = (0.61662482472959657, -2.0437805540853597) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KQCK.TXT +zone = ('caz523', 0.001481123092741541) + +[kqcn] +description = Fob Connoly, AF +location = (0.59777526880805787, 1.2245230031992216) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KQCN.TXT + +[kqd2] +description = Panjshir, AH +location = (0.61575216010359946, 1.2126547642856602) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KQD2.TXT + +[kqd9] +description = Fob Salerno, AH +location = (0.58241637139050773, 1.2212068776204323) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KQD9.TXT + +[kqdd] +description = Dira Dawa, ET +location = (0.16772614111665507, 0.73042029195962699) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KQDD.TXT + +[kqdm] +description = Orgun E, AH +location = (0.57473692268173271, 1.2068951777540791) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KQDM.TXT + +[kqdp] +description = Fob Kutschbach, AF +location = (0.60824724432002386, 1.2152727581636515) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KQDP.TXT + +[kqdx] +description = Fob Ramrod, AF +location = (0.55204764240580639, 1.1335913491703171) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KQDX.TXT + +[kqea] +description = unknown or classified United States Department of Defense +location = None +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KQEA.TXT +zone = ('gaz154', 0.0012195245817366474) + +[kqeb] +description = unknown or classified United States Department of Defense +location = None +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KQEB.TXT +zone = ('kyz112', 0.0010823480640799069) + +[kqei] +description = Sinnam TMQ-53P, Korea, South +location = (0.66235245113184815, 2.2351849953874048) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KQEI.TXT + +[kqej] +description = Bangsan TMQ-53P, Korea, South +location = (0.66671577426183393, 2.2331487779267447) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KQEJ.TXT + +[kqel] +description = unknown or classified United States Department of Defense +location = None +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KQEL.TXT + +[kqen] +description = Daegwallyeog, Korea, South +location = (0.65740735158453079, 2.2471114119426994) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KQEN.TXT + +[kqep] +description = Gwangjuup, Korea, South +location = (0.65275314024587927, 2.2212223613714501) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KQEP.TXT + +[kqeq] +description = Munsan TMQ-53P, Korea, South +location = (0.66060712187985371, 2.2261674609187674) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KQEQ.TXT + +[kqer] +description = unknown or classified United States Department of Defense +location = None +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KQER.TXT + +[kqes] +description = Daesan TMQ-53P, Korea, South +location = (0.64519004682057057, 2.2069688391468296) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KQES.TXT + +[kqev] +description = unknown or classified United States Department of Defense +location = None +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KQEV.TXT + +[kqew] +description = Sangju TMQ-53P, Korea, South +location = (0.63529984772593595, 2.2366394364307336) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KQEW.TXT + +[kqex] +description = Gumi TMQ-53P, Korea, South +location = (0.63006385996995296, 2.2392574303087249) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KQEX.TXT + +[kqey] +description = unknown or classified United States Department of Defense +location = None +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KQEY.TXT +zone = ('ksz083', 0.00071837410392849551) + +[kqfb] +description = Cheongdo TMQ-53P, Korea, South +location = (0.62220987833597841, 2.2465296355253677) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KQFB.TXT + +[kqfs] +description = Walker Tmq-53P, KO +location = (0.62570053683996718, 2.2441443522143092) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KQFS.TXT + +[kqft] +description = Yangsu-Ri, Korea, South +location = (0.65624379874986793, 2.2226768024147785) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KQFT.TXT + +[kqfu] +description = Kwangjeok, Korea, South +location = (0.65973445725385649, 2.215986373615467) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KQFU.TXT + +[kqfv] +description = Sachang-Ri, Korea, South +location = (0.66409778038384237, 2.2252947962927703) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KQFV.TXT + +[kqfw] +description = Hongchon, Korea, South +location = (0.65740735158453079, 2.2319852250920817) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KQFW.TXT + +[kqfx] +description = unknown or classified United States Department of Defense +location = None +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KQFX.TXT + +[kqgv] +description = Ali Al Salem, KW +location = (0.51190506960993687, 0.82938046054770542) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KQGV.TXT + +[kqgx] +description = Al Dhafra, ER +location = (0.42324234360862489, 0.95207710696290671) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KQGX.TXT + +[kqht] +description = Manas,Kyrgystan, KZ +location = (0.75171330883395771, 1.2950343049797925) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KQHT.TXT + +[kqhy] +description = 2 Cwss Fmq-22, US +location = (0.53075462553147557, -1.512502329778286) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KQHY.TXT +zone = ('flz006', 0.0028027616123227342) + +[kqir] +description = Al Udeid, Qatar +location = (0.43836853045924246, 0.89535390627309097) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KQIR.TXT + +[kqiu] +description = Fob Skhin, AH +location = (0.56775560567375538, 1.2077678423800762) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KQIU.TXT + +[kqka] +description = unknown or classified United States Department of Defense +location = None +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KQKA.TXT +zone = ('ndz008', 0.00096638910887180448) + +[kqkg] +description = Khelegay, AF +location = (0.62604960269036591, 1.2006119924468994) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KQKG.TXT + +[kql5] +description = Jalalabad, AH +location = (0.60039326268604931, 1.2304571226560024) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KQL5.TXT + +[kqld] +description = Cop Cherokee, AF +location = (0.58730329329609188, 1.2025318546240931) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KQLD.TXT + +[kqlt] +description = Qalat, AH +location = (0.56025068989017979, 1.1676252695842066) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KQLT.TXT + +[kqly] +description = Fob Kunduz, AF +location = (0.63983770378112115, 1.2025318546240931) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KQLY.TXT + +[kqm1] +description = Methar Lam Prt, AF +location = (0.60493111874123451, 1.2252211349000195) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KQM1.TXT + +[kqmh] +description = Korean Village, IQ +location = (0.57683131778412589, 0.70371675440411363) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KQMH.TXT + +[kqml] +description = Camp Marmal, AF +location = (0.64071036840711837, 1.1730357902653887) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KQML.TXT + +[kqms] +description = unknown or classified United States Department of Defense +location = None +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KQMS.TXT +zone = ('flz052', 0.0022072001958187665) + +[kqow] +description = Camp Torkham, AF +location = (0.59568087370566469, 1.2402309664671707) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KQOW.TXT + +[kqox] +description = Gardez, AH +location = (0.58643062867009477, 1.2081169082304748) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KQOX.TXT + +[kqpd] +description = Haditha Dam, IQ +location = (0.5972516700324596, 0.5995205980600522) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KQPD.TXT + +[kqqn] +description = Qal-E-Naw, AF +location = (0.9595820227464823, 1.0995574287564276) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KQQN.TXT + +[kqqr] +description = Fob Kalagush, AF +location = (0.60999257357201819, 1.2283627275536091) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KQQR.TXT + +[kqqs] +description = Camp Airborne Hlz, AF +location = (0.60004419683565058, 1.2018337229232954) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KQQS.TXT + +[kqqy] +description = Apiay (Tmq 53), CO +location = (0.07103490055616922, -1.2836896648418292) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KQQY.TXT + +[kqrh] +description = Ambouli Ab, DJ +location = (0.20158552860534507, 0.75310957223555319) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KQRH.TXT + +[kqry] +description = Ghazni, AH +location = (0.58468529941810043, 1.1938052083641215) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KQRY.TXT + +[kqsa] +description = Bagram, AH +location = (0.60999257357201819, 1.2091641057816715) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KQSA.TXT + +[kqsb] +description = Fob Spin Buldak, AF +location = (0.54122660104344167, 1.1588986233242349) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KQSB.TXT + +[kqsd] +description = Fob Wolverine, AF +location = (0.55763269601218823, 1.1698941976117991) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KQSD.TXT + +[kqsn] +description = unknown or classified United States Department of Defense +location = None +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KQSN.TXT + +[kqsr] +description = Sharana, AH +location = (0.57805304826052195, 1.2011355912224975) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KQSR.TXT + +[kqtd] +description = Fob Todd, AF +location = (0.6213372137099813, 1.1047934165124105) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KQTD.TXT + +[kqth] +description = unknown or classified United States Department of Defense +location = None +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KQTH.TXT +zone = ('txz215', 0.0033291836170529702) + +[kqts] +description = unknown or classified United States Department of Defense +location = None +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KQTS.TXT +zone = ('azz501', 0.0057448619122218566) + +[kqtz] +description = Baghdad, IQ +location = (0.58032197628811455, 0.77195912815709189) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KQTZ.TXT + +[kqud] +description = Entebbe, UG +location = (0.0010471975511965976, 0.56635934227216) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KQUD.TXT + +[kqve] +description = Naray Rmws 1015, AF +location = (0.61522856132800119, 1.2480849481011451) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KQVE.TXT + +[kqvf] +description = Manda Bay, KE +location = (-0.037524578917878082, 0.71383966406568078) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KQVF.TXT + +[kqvp] +description = unknown or classified United States Department of Defense +location = None +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KQVP.TXT + +[kqwl] +description = Fob Wilson, AF +location = (0.55117497777980928, 1.14196892957989) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KQWL.TXT + +[kqwm] +description = Camp Udari, KW +location = (0.51783918906671755, 0.82763513129571109) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KQWM.TXT + +[kqxt] +description = Fob Dwyer, AH +location = (0.54279739737023647, 1.1184069846779663) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KQXT.TXT + +[kqyk] +description = Fob Tillman, AF +location = (0.57473692268173271, 1.2121311655100619) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KQYK.TXT + +[kqyu] +description = Riohacha, CO +location = (0.20123646275494619, -1.2726940905542652) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KQYU.TXT + +[kqz4] +description = unknown or classified United States Department of Defense +location = None +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KQZ4.TXT + +[krac] +description = Batten International Airport, WI, United States +location = (0.74641914343624161, -1.5326899714596871) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KRAC.TXT +zone = ('wiz071', 0.0030733683291310821) + +[kral] +description = Riverside Municipal Airport, CA, United States +location = (0.59253928105207498, -2.04988920646734) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KRAL.TXT +zone = ('caz048', 0.0035044885788433908) + +[krap] +description = Rapid City Regional Airport, SD, United States +location = (0.76881753550350207, -1.7985617941801566) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KRAP.TXT +zone = ('sdz026', 0.0023353522993878554) + +[kras] +description = Port Aransas, Mustang Beach Airport, TX, United States +location = (0.48540515380048965, -1.694515930077239) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KRAS.TXT +zone = ('txz245', 0.0058373436750449384) + +[krbd] +description = Dallas Executive Airport, TX, United States +location = (0.57043177719347993, -1.6906422687651739) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KRBD.TXT +zone = ('txz119', 0.0019521193620203321) + +[krbg] +description = Roseburg Regional Airport, OR, United States +location = (0.75456401327888178, -2.1528636323350052) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KRBG.TXT +zone = ('orz023', 0.0013580233835850527) + +[krbl] +description = Red Bluff Municipal Airport, CA, United States +location = (0.70074969467572323, -2.1336650105630679) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KRBL.TXT +zone = ('caz015', 0.001357398573047773) + +[krbo] +description = Robstown, Nueces County Airport, TX, United States +location = (0.48482337738315817, -1.7050169944100717) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KRBO.TXT +zone = ('txz243', 0.0013632525053574255) + +[krbw] +description = Walterboro, Sc, US +location = (0.57438785683133375, -1.4070844429578286) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KRBW.TXT +zone = ('scz043', 0.0012224368737203718) + +[krca] +description = Ellsworth Air Force Base, SD, United States +location = (0.77056286475549651, -1.7994344588061537) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KRCA.TXT +zone = ('sdz026', 0.0030279870028023684) + +[krce] +description = Oklahoma City, OK, US +location = (0.61924281860758812, -1.7072810743008531) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KRCE.TXT +zone = ('okz024', 0.0025533744035505326) + +[krcm] +description = Skyhaven Arpt, MO, US +location = (0.67683868392340096, -1.6371188383706812) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KRCM.TXT +zone = ('moz044', 0.00063241207486294316) + +[krcr] +description = Fulton Co Arpt, US +location = (0.71663219086887175, -1.5041247493687133) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KRCR.TXT +zone = ('inz015', 0.0011234490628902638) + +[krcx] +description = Ladysmith, Ruck County Airport, WI, United States +location = (0.79406663201568684, -1.588254467451651) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KRCX.TXT +zone = ('wiz016', 0.0016682636884944484) + +[krcz] +description = Richmond Cnty Arpt, NC, US +location = (0.60894537602082155, -1.3920746113906772) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KRCZ.TXT +zone = ('ncz084', 0.0020301081563694361) + +[krdd] +description = Redding Municipal Airport, CA, United States +location = (0.70685834705770345, -2.1342467869803992) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KRDD.TXT +zone = ('caz015', 0.0048928312867191895) + +[krdg] +description = Reading Regional Airport, PA, United States +location = (0.70453124138837775, -1.325868455098359) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KRDG.TXT +zone = ('paz060', 0.0010225809965411681) + +[krdk] +description = Red Oak, IA, United States +location = (0.71587588152634085, -1.6627170007332646) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KRDK.TXT +zone = ('iaz080', 0.001472043306450234) + +[krdm] +description = Redmond Roberts Field, OR, United States +location = (0.77230819400749084, -2.1141755005824647) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KRDM.TXT +zone = ('orz509', 0.0052332236914072287) + +[krdr] +description = Grand Forks Air Force Base, ND, United States +location = (0.83717626453994676, -1.6999506914424771) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KRDR.TXT +zone = ('ndz027', 0.0010269138240500929) + +[krdu] +description = Raleigh-Durham International Airport, NC, United States +location = (0.62657320146596429, -1.3747376741542001) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KRDU.TXT +zone = ('ncz041', 0.0025268332298987953) + +[kreo] +description = Rome, OR, United States +location = (0.74321937314091868, -2.0571614116839831) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KREO.TXT +zone = ('orz063', 0.0097817123639904659) + +[krfd] +description = Greater Rockford Airport, IL, United States +location = (0.73652894434160709, -1.5550883635269475) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KRFD.TXT +zone = ('ilz003', 0.0025055451520576699) + +[krfi] +description = Henderson, Tx, US +location = (0.56094882159097748, -1.6554447955166214) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KRFI.TXT +zone = ('txz150', 0.0014203674495604757) + +[krgk] +description = Red Wing, Red Wing Municipal Airport, MN, United States +location = (0.77824716160108265, -1.6141871512542001) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KRGK.TXT +zone = ('wiz024', 0.0023916890419474752) + +[krhi] +description = Rhinelander-Oneida Co Airport, WI, United States +location = (0.79645191532674575, -1.5617787923262592) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KRHI.TXT +zone = ('wiz010', 0.0013452937844649743) + +[krhp] +description = Andrews, Andrews-Murphy Airport, NC, United States +location = (0.61426863023940415, -1.4636961365009891) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KRHP.TXT +zone = ('ncz058', 0.0027425209553660203) + +[krhv] +description = San Jose / Reid / Hillv, CA, United States +location = (0.65158958741121642, -2.1261019171377589) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KRHV.TXT +zone = ('caz513', 0.0020035349291352123) + +[kric] +description = Richmond International Airport, VA, United States +location = (0.65478935770653923, -1.3494304000002824) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KRIC.TXT +zone = ('vaz071', 0.0014703802165254441) + +[kril] +description = Rifle Garfield County Rgnl, CO, United States +location = (0.68969594274642587, -1.8803013808152245) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KRIL.TXT +zone = ('coz007', 0.0035342178787795527) + +[kriv] +description = Riverside / March Air Force Base, CA, United States +location = (0.59166661642607765, -2.0463985479633515) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KRIV.TXT +zone = ('caz048', 0.0009061170831309622) + +[kriw] +description = Riverton Regional Airport, WY, United States +location = (0.7516551311922246, -1.8928095737878505) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KRIW.TXT +zone = ('wyz017', 0.0025302895470969288) + +[krkd] +description = Rockland, Knox County Regional Airport, ME, United States +location = (0.76910842371216792, -1.2060225131280815) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KRKD.TXT +zone = ('mez027', 0.0017182287102736778) + +[krkp] +description = Rockport Aransas County Airport, TX, United States +location = (0.49014663160174088, -1.6938420390604967) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KRKP.TXT +zone = ('txz245', 0.0012344863268326934) + +[krkr] +description = Poteau, Robert S Kerr Airport, OK, United States +location = (0.61124339286928075, -1.65145477892109) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KRKR.TXT +zone = ('okz076', 0.0024251211253018198) + +[krks] +description = Rock Springs-Sweetwater Co, WY, United States +location = (0.7260569688296411, -1.9032815492998163) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KRKS.TXT +zone = ('wyz029', 0.0080419630172329729) + +[krme] +description = Griffiss Airfield, NY, United States +location = (0.75456401327888178, -1.3159782560037245) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KRME.TXT +zone = ('nyz037', 0.0019799323760721901) + +[krmg] +description = Rome R. B. Russell Airport, GA, United States +location = (0.5995205980600522, -1.4864387462818374) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KRMG.TXT +zone = ('gaz019', 0.0016633275192459098) + +[krmn] +description = Stafford, Stafford Regional Airport, VA, United States +location = (0.67017249580814497, -1.3518496202690191) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KRMN.TXT +zone = ('vaz055', 0.00041146529341135946) + +[krmy] +description = Marshall, Brooks Field Airport, MI, United States +location = (0.73742100151484857, -1.482754162305405) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KRMY.TXT +zone = ('miz073', 0.00065004190947358484) + +[krnd] +description = Randolph Air Force Base, TX, United States +location = (0.51545390575565864, -1.7153677665017601) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KRND.TXT +zone = ('txz205', 0.0038829638905711508) + +[krnh] +description = New Richmond, New Richmond Municipal Airport, WI, United States +location = (0.78798706845457323, -1.615093752837875) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KRNH.TXT +zone = ('wiz023', 0.002255110978660743) + +[krnm] +description = Ramona Airport, CA, United States +location = (0.57654042957546014, -2.0405807837900372) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KRNM.TXT +zone = ('caz050', 0.00081201020352194924) + +[krno] +description = Reno/Tahoe International Airport, NV, United States +location = (0.6891141663290945, -2.0903226674718751) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KRNO.TXT +zone = ('nvz003', 0.0019117585936473719) + +[krnp] +description = Owosso, Owosso Community Airport, MI, United States +location = (0.7503655268004733, -1.4685006400807847) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KRNP.TXT +zone = ('miz060', 0.00068929146809441411) + +[krnt] +description = Renton Municipal Airport, WA, United States +location = (0.82903139469730658, -2.1330832341457366) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KRNT.TXT +zone = ('waz508', 0.0027738879353022832) + +[kroa] +description = Roanoke Regional Airport, VA, United States +location = (0.65129869920255068, -1.3956816251781323) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KROA.TXT +zone = ('vaz022', 0.0014240806956108674) + +[kroc] +description = Greater Rochester International, NY, United States +location = (0.75252779581822171, -1.3558299405909284) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KROC.TXT +zone = ('nyz003', 0.00054306893783886306) + +[krog] +description = Rogers, Rogers Municipal Airport-Carter Field, AR, United States +location = (0.63471807130860447, -1.6423548261266641) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KROG.TXT +zone = ('arz001', 0.0022624654909831781) + +[kros] +description = Rush City, Rush City Regional Airport, MN, United States +location = (0.79758153120373099, -1.6223368692336515) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KROS.TXT +zone = ('mnz053', 0.0034565679430357578) + +[krow] +description = Roswell Industrial Air Centr, NM, United States +location = (0.58119464091411166, -1.8244508447514058) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KROW.TXT +zone = ('nmz538', 0.0047383558602047127) + +[krox] +description = Roseau, Roseau Municipal Airport/Rudy Billberg Field, MN, United States +location = (0.85259333959923, -1.6702800941585734) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KROX.TXT +zone = ('mnz005', 0.0018242007746141009) + +[krpd] +description = Rice Lake, Rice Lake Regional-Carl'S Field Airport, WI, United States +location = (0.79269460929814684, -1.6017516803337404) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KRPD.TXT +zone = ('wiz015', 0.00092165890037423774) + +[krph] +description = Graham, Graham Municipal Airport, TX, United States +location = (0.57787851533532253, -1.7201140924398226) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KRPH.TXT +zone = ('txz100', 0.0022596017344431812) + +[krpj] +description = Rochelle, Rochelle Municipal-Koritz Field Airport, IL, United States +location = (0.73117175316534666, -1.5547102088556821) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KRPJ.TXT +zone = ('ilz010', 0.0038638083498664937) + +[krqb] +description = Big Rapids, Roben-Hood Airport, MI, United States +location = (0.76310158220322077, -1.4923292325073181) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KRQB.TXT +zone = ('miz045', 0.0026778753871777843) + +[krqe] +description = Window Rock Airport, AZ, United States +location = (0.62220987833597841, -1.9035724375084819) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KRQE.TXT +zone = ('azz011', 0.0045048015960597633) + +[krqo] +description = El Reno, El Reno Regional Airport, OK, United States +location = (0.61911191891368866, -1.7105196296906648) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KRQO.TXT +zone = ('okz024', 0.0012648812668237454) + +[krrl] +description = Merrill, Merrill Municipal Airport, WI, United States +location = (0.7885979336927712, -1.5655603390389137) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KRRL.TXT +zone = ('wiz018', 0.0027240837343728815) + +[krrt] +description = Warroad, Warroad International Airport-Swede Carlston Field, MN, United States +location = (0.85418837661008029, -1.6641423529557267) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KRRT.TXT +zone = ('mnz005', 0.0060507922930900047) + +[krsl] +description = Russell Municipal Airport, KS, United States +location = (0.67835130260846277, -1.7246761891790632) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KRSL.TXT +zone = ('ksz032', 0.0011198835477799914) + +[krsn] +description = Ruston, Ruston Regional Airport, LA, United States +location = (0.56748411001233401, -1.615971265600683) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KRSN.TXT +zone = ('laz005', 0.0018910056262489328) + +[krsp] +description = Camp David, Md, US +location = (0.69202304841575168, -1.3521065715200071) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KRSP.TXT +zone = ('mdz004', 0.0032505054668189224) + +[krst] +description = Rochester International Airport, MN, United States +location = (0.76619954162551063, -1.6144295580947547) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KRST.TXT +zone = ('mnz087', 0.0021890460202015375) + +[krsv] +description = Robinson, Robinson Municipal Airport, IL, United States +location = (0.68095475207602096, -1.5297762412362188) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KRSV.TXT +zone = ('ilz068', 0.0015060804810193105) + +[krsw] +description = Fort Myers Sw Fl International Airport, FL, United States +location = (0.46309402819582879, -1.4270975517140301) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KRSW.TXT +zone = ('flz065', 0.001155710518229572) + +[krtn] +description = Raton, Raton Municipal \ Crews Field Airport, NM, United States +location = (0.64126790414039425, -1.8266228100427766) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KRTN.TXT +zone = ('nmz527', 0.0048927006767001289) + +[krts] +description = Reno/Stead Airport, Reno, Nevada, United States +location = (0.69234029516855744, -2.0922385665881142) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KRTS.TXT +zone = ('nvz003', 0.0053232443990802259) + +[krue] +description = Russelville Municipal Airport, AR, United States +location = (0.61522856132800119, -1.6249015336067207) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KRUE.TXT +zone = ('arz022', 0.0035737150748849601) + +[krug] +description = Rugby Municipal Airport, ND, United States +location = (0.84457452131367827, -1.7457558880337058) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KRUG.TXT +zone = ('ndz013', 0.0025348736376177828) + +[kruq] +description = Salisbury, Rowan County Airport, NC, United States +location = (0.62220987833597841, -1.405280936064101) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KRUQ.TXT +zone = ('ncz057', 0.00021431197729869844) + +[krut] +description = Rutland, Rutland-Southern Vermont Regional Airport, VT, United States +location = (0.75980000103486478, -1.2732176893298635) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KRUT.TXT +zone = ('vtz019', 0.0011728037387749716) + +[krvs] +description = Tulsa Jones Jr. Airport, OK, United States +location = (0.62919119534395573, -1.6752251937058906) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KRVS.TXT +zone = ('okz060', 0.0013740665091314741) + +[krwf] +description = Redwood Falls Municipal, MN, United States +location = (0.77754418176347373, -1.6595172304379415) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KRWF.TXT +zone = ('mnz073', 0.0033214386738888778) + +[krwi] +description = Rocky Mount-Wilson Airport, NC, United States +location = (0.62570053683996718, -1.3596114873035827) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KRWI.TXT +zone = ('ncz027', 0.002383149619504366) + +[krwl] +description = Rawlins Municipal Airport, WY, United States +location = (0.72954762733362966, -1.8709929581379212) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KRWL.TXT +zone = ('wyz109', 0.0013111361551311487) + +[krwv] +description = Caldwell, Caldwell Municipal Airport, TX, United States +location = (0.53259206938288073, -1.6878012605938721) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KRWV.TXT +zone = ('txz195', 0.0013088494355378761) + +[krxe] +description = Rexburg-Madison County Airport, ID, United States +location = (0.76503598879084778, -1.9512781037296605) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KRXE.TXT +zone = ('idz019', 0.0060292154372029822) + +[kryn] +description = Tucson, Az, US +location = (0.56094882159097748, -1.9402825294420962) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KRYN.TXT +zone = ('azz504', 0.0017914897092355657) + +[kryt] +description = Fountain Dale, Pa, US +location = (0.69341931181734706, -1.3514084398192094) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KRYT.TXT +zone = ('paz064', 0.0037666484273645153) + +[kryv] +description = Watertown, WI, United States +location = (0.75340046044421893, -1.548397934727636) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KRYV.TXT +zone = ('wiz064', 0.0026537531838648413) + +[kryw] +description = Lago Vista, Tx, US +location = (0.53232542185827048, -1.7098990681788446) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KRYW.TXT +zone = ('txz192', 0.0040420909012074731) + +[kryy] +description = Marietta, Cobb County-Mccollum Field Airport, GA, United States +location = (0.5936398081081935, -1.4765243065031473) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KRYY.TXT +zone = ('gaz032', 0.001288514783421388) + +[krzl] +description = Rensselaer, In, US +location = (0.714712328691678, -1.5217525748138558) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KRZL.TXT +zone = ('inz011', 0.0016027110749118163) + +[krzn] +description = Siren, Burnett County Airport, WI, United States +location = (0.79975834463191275, -1.6122042632984619) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KRZN.TXT +zone = ('wiz006', 0.00069931658618563016) + +[ks32] +description = Rands Airport, KS, United States +location = (0.82768361266382195, -1.7122698070794702) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KS32.TXT +zone = ('ndz028', 0.0016619574851379092) + +[ksac] +description = Sacramento Executive Airport, CA, United States +location = (0.67195176201781692, -2.1205750411731104) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSAC.TXT +zone = ('caz017', 0.0023717545579832171) + +[ksad] +description = Safford Municipal Airport, AZ, United States +location = (0.57334065928013733, -1.9134626366031167) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSAD.TXT +zone = ('azz509', 0.0016589397847658807) + +[ksaf] +description = Santa Fe County Municipal, NM, United States +location = (0.62162810191864704, -1.8515034481573178) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSAF.TXT +zone = ('nmz518', 0.0016009514473556172) + +[ksan] +description = San Diego International \Lindbergh Fld, CA, United States +location = (0.57130444181947726, -2.0452349951286886) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSAN.TXT +zone = ('caz043', 0.0043464794174747938) + +[ksar] +description = Sparta, Sparta Community-Hunter Field Airport, IL, United States +location = (0.66582371708859234, -1.5655360983548583) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSAR.TXT +zone = ('ilz079', 0.0024251425894595289) + +[ksat] +description = San Antonio International Airport, TX, United States +location = (0.51545390575565864, -1.7185675367970832) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSAT.TXT +zone = ('txz205', 0.001677902771520567) + +[ksav] +description = Savannah International Airport, GA, United States +location = (0.56054157809884553, -1.4172073526193956) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSAV.TXT +zone = ('gaz118', 0.00080214105245778641) + +[ksaw] +description = Marquette, Sawyer International Airport, MI, United States +location = (0.80902313407791604, -1.5253353479172553) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSAW.TXT +zone = ('miz005', 0.0032601196037994212) + +[ksaz] +description = Staples, Staples Municipal Airport, MN, United States +location = (0.80949825148540333, -1.6546884861740905) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSAZ.TXT +zone = ('mnz032', 0.0040770180614470991) + +[ksba] +description = Santa Barbara Municipal, CA, United States +location = (0.60097503910338079, -2.0917771085152039) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSBA.TXT +zone = ('caz039', 0.00087345373833755033) + +[ksbd] +description = Norton Air Force Base / San Bern, CA, United States +location = (0.59515727493006643, -2.0461076597546857) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSBD.TXT +zone = ('caz055', 0.0030216376033300467) + +[ksbm] +description = Sheboygan Co Memorial Airport, WI, United States +location = (0.76416332416485055, -1.5332717478770184) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSBM.TXT +zone = ('wiz052', 0.0016194231607771744) + +[ksbn] +description = South Bend Regional Airport, IN, United States +location = (0.72780229808163543, -1.506510032679772) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSBN.TXT +zone = ('inz004', 0.0014954733975145291) + +[ksbo] +description = Swainsboro, Ga, US +location = (0.56932640200055029, -1.4376277048677293) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSBO.TXT +zone = ('gaz086', 0.0011328228561920813) + +[ksbp] +description = San Luis Obispo Mc Chesney, CA, United States +location = (0.61493767311933545, -2.1054488543224932) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSBP.TXT +zone = ('caz034', 0.0022388917264104841) + +[ksbs] +description = Steamboat Springs, CO, United States +location = (0.70714923526636919, -1.8651751939646066) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSBS.TXT +zone = ('coz004', 0.0014489192949473015) + +[ksby] +description = Salisbury-Wicomico Cty Reg, MD, United States +location = (0.66904287993115974, -1.3177235852557188) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSBY.TXT +zone = ('mdz022', 0.0017783483985700471) + +[kscf] +description = South Marsh 268, LA, United States +location = (0.50816715612858232, -1.6034533763544347) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSCF.TXT +zone = ('laz054', 0.012339190352736475) + +[ksch] +description = Schenectady Airport, NY, United States +location = (0.7478735844795702, -1.2903800936411411) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSCH.TXT +zone = ('nyz049', 0.00056064252466014354) + +[ksck] +description = Stockton Metropolitan Airport, CA, United States +location = (0.66147978650585082, -2.1159208298344589) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSCK.TXT +zone = ('caz019', 0.0036281544748028188) + +[ksda] +description = Shenandoah Municipal, IA, United States +location = (0.71122167018768934, -1.6653349946112561) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSDA.TXT +zone = ('iaz090', 0.0024874448402088852) + +[ksdb] +description = Sandberg, CA, United States +location = (0.60650191506802953, -2.0719967103259349) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSDB.TXT +zone = ('caz088', 0.0056568529973152846) + +[ksdf] +description = Standiford Field, KY, United States +location = (0.66642488605316808, -1.4963289453764719) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSDF.TXT +zone = ('kyz030', 0.0010151330926234917) + +[ksdl] +description = Scottsdale Airport, AZ, United States +location = (0.58672151687876051, -1.9533143211903206) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSDL.TXT +zone = ('azz023', 0.0031830364398742132) + +[ksdm] +description = San Diego, Brown Field Municipal Airport, CA, United States +location = (0.5685458519739639, -2.0419140214130884) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSDM.TXT +zone = ('caz050', 0.0075101309552046127) + +[ksdy] +description = Sidney-Richland, MT, United States +location = (0.83252205320129524, -1.8186330805780915) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSDY.TXT +zone = ('mtz024', 0.0045104438254444795) + +[ksea] +description = Seattle-Tacoma International Airport, WA, United States +location = (0.82815873007130947, -2.1348285633977309) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSEA.TXT +zone = ('waz508', 0.0020012369496248648) + +[ksee] +description = San Diego/El Cajon, Gillespie Field Airport, CA, United States +location = (0.57292371951438315, -2.0415504111522562) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSEE.TXT +zone = ('caz050', 0.0031217732844171691) + +[kseg] +description = Selinsgrove Penn Valley Airport, PA, United States +location = (0.71238522302235219, -1.3415764183663079) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSEG.TXT +zone = ('paz052', 0.002170165700395845) + +[ksep] +description = Stephenville, Clark Field Municipal Airport, TX, United States +location = (0.56228690735083986, -1.7136224372497659) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSEP.TXT +zone = ('txz130', 0.00061595315146014838) + +[kset] +description = St. Charles Co Smartt Airport, MO, United States +location = (0.67951485544312562, -1.5783594202202054) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSET.TXT +zone = ('ilz099', 0.002854041591271258) + +[ksez] +description = Sedona Airport, AZ, United States +location = (0.60824724432002386, -1.9509872155209946) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSEZ.TXT +zone = ('azz038', 0.0017491139216797237) + +[ksfb] +description = Orlando Sanford Airport, FL, United States +location = (0.5023639363657012, -1.4180800172453927) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSFB.TXT +zone = ('flz046', 0.001176835055489074) + +[ksff] +description = Felts Field, WA, United States +location = (0.83223116499262939, -2.047562100798014) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSFF.TXT +zone = ('waz036', 0.0036654099303309313) + +[ksfm] +description = Sanford, Sanford Regional Airport, ME, United States +location = (0.75747289536553897, -1.2342386693686567) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSFM.TXT +zone = ('mez023', 0.001871736204449497) + +[ksfo] +description = San Francisco International Airport, CA, United States +location = (0.65653468695853368, -2.135701228023728) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSFO.TXT +zone = ('caz006', 0.0026435014516300159) + +[ksfq] +description = Suffolk, Suffolk Municipal Airport, VA, United States +location = (0.64022555472600884, -1.3369561439853341) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSFQ.TXT +zone = ('vaz096', 0.0040927963037400757) + +[ksfy] +description = Savanna, Tri-Township Airport, IL, United States +location = (0.73383822841144919, -1.5726774038776015) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSFY.TXT +zone = ('ilz007', 0.0022809406222895198) + +[ksfz] +description = Pawtucket, North Central State Airport, RI, United States +location = (0.73158384479428973, -1.2479104151759457) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSFZ.TXT +zone = ('riz001', 0.0016265942761173498) + +[ksgf] +description = Springfield-Branson National, MO, United States +location = (0.64984425815922209, -1.6298466331540382) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSGF.TXT +zone = ('moz090', 0.00071877353816509682) + +[ksgh] +description = Springfield, Springfield-Beckley Municipal Airport, OH, United States +location = (0.69534402213135205, -1.4632840448720457) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSGH.TXT +zone = ('ohz053', 0.001535056585461959) + +[ksgj] +description = St. Augustine, St. Augustine Airport, FL, United States +location = (0.52288609948706777, -1.4196459654353766) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSGJ.TXT +zone = ('flz033', 0.001871636185056792) + +[ksgr] +description = Sugarland Regional Airport, TX, United States +location = (0.51690834679898723, -1.6694074295325763) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSGR.TXT +zone = ('txz227', 0.0024050567047281808) + +[ksgs] +description = South St. Paul, South St. Paul Municipal-Richard E. Fleming Field Airport, MN, United States +location = (0.78290622107654539, -1.6237282844984358) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSGS.TXT +zone = ('mnz062', 0.0029092615841731081) + +[ksgt] +description = Stuttgart, Stuttgart Municipal Airport, AR, United States +location = (0.60388392119003809, -1.5981398184094744) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSGT.TXT +zone = ('arz046', 0.0040139541872103645) + +[ksgu] +description = St George, St George Municipal Airport, UT, United States +location = (0.64722626428123053, -1.9826940302655582) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSGU.TXT +zone = ('utz019', 0.001676420203657008) + +[kshd] +description = Staunton / Shenandoah, VA, United States +location = (0.66787932709649678, -1.377064779823526) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSHD.TXT +zone = ('vaz025', 0.0036230326450521315) + +[kshl] +description = Sheldon, IA, United States +location = (0.75427312507021615, -1.6726071998278991) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSHL.TXT +zone = ('iaz013', 0.0035234542840496242) + +[kshn] +description = Shelton Sanderson Field, WA, United States +location = (0.82437718335865495, -2.1490820856223514) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSHN.TXT +zone = ('waz511', 0.0050171741455929597) + +[kshr] +description = Sheridan County Airport, WY, United States +location = (0.78132572847612813, -1.8669205232166013) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSHR.TXT +zone = ('wyz099', 0.0038986847146236705) + +[kshv] +description = Shreveport Regional Airport, LA, United States +location = (0.56635934227216, -1.6377006147880124) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSHV.TXT +zone = ('laz001', 0.002374748390762663) + +[ksif] +description = Rockingham Cnty Shiloh Arpt, NC, US +location = (0.63599797942673364, -1.393645407717472) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSIF.TXT +zone = ('ncz005', 0.001301410517695392) + +[ksiy] +description = Montague Siskiyou County, CA, United States +location = (0.72896585091629829, -2.1374465572757222) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSIY.TXT +zone = ('caz081', 0.001363597034616714) + +[ksjc] +description = San Jose International Airport, CA, United States +location = (0.65217136382854779, -2.1278472463897535) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSJC.TXT +zone = ('caz513', 0.0030568959971274123) + +[ksjn] +description = St Johns Industrial Airprk, AZ, United States +location = (0.60242948014670938, -1.9090993134731309) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSJN.TXT +zone = ('azz014', 0.0011731671113242002) + +[ksjt] +description = Mathis Field, TX, United States +location = (0.54716072050022235, -1.7540558982543013) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSJT.TXT +zone = ('txz072', 0.0011047207781896913) + +[ksjx] +description = Beaver Island, Beaver Island Airport, MI, United States +location = (0.79747972033069792, -1.4934152151530034) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSJX.TXT +zone = ('miz019', 0.0086665310513646277) + +[kska] +description = Fairchild Air Force Base, WA, United States +location = (0.83106761215796654, -2.0533798649713288) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSKA.TXT +zone = ('waz036', 0.0004360190194879939) + +[kskf] +description = Kelly Air Force Base, TX, United States +location = (0.51283591187766719, -1.720603754257743) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSKF.TXT +zone = ('txz205', 0.0014991950228793282) + +[kskx] +description = Taos, Taos Regional Airport, NM, United States +location = (0.63617251235193317, -1.8442312429406749) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSKX.TXT +zone = ('nmz516', 0.00377519424114917) + +[kslb] +description = Storm Lake, IA, United States +location = (0.74351026134958442, -1.6621352243159331) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSLB.TXT +zone = ('iaz022', 0.0025886593235600083) + +[kslc] +description = Salt Lake City International Airport, UT, United States +location = (0.71180344660502071, -1.9541869858163177) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSLC.TXT +zone = ('utz006', 0.0058678371608116677) + +[ksle] +description = Salem Mcnary Field, OR, United States +location = (0.78365283414545395, -2.1467549799530254) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSLE.TXT +zone = ('orz007', 0.002748424143822759) + +[kslg] +description = Siloam Springs, Smith Field Airport, AR, United States +location = (0.6318091892219474, -1.6490452549259758) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSLG.TXT +zone = ('arz001', 0.0040023690063677262) + +[kslh] +description = Cheboygan, Cheboygan County Airport, MI, United States +location = (0.79680582931395572, -1.4751377393751739) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSLH.TXT +zone = ('miz017', 0.0036172079349116328) + +[ksli] +description = Los Alamitos U. S. Army Airfield, CA, United States +location = (0.58963039896541758, -2.0603611819793062) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSLI.TXT +zone = ('caz041', 0.0044221830265511472) + +[kslk] +description = Adirondack Regional Airport, NY, United States +location = (0.77492618788548229, -1.2950343049797925) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSLK.TXT +zone = ('nyz030', 0.0022246731213133369) + +[ksln] +description = Salina Municipal Airport, KS, United States +location = (0.67689686156513407, -1.7043140145724629) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSLN.TXT +zone = ('ksz049', 9.9833331793525114e-06) + +[kslo] +description = Salem, Salem-Leckrone Airport, IL, United States +location = (0.67444370433871992, -1.5527176246263221) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSLO.TXT +zone = ('ilz070', 0.00062708956967655555) + +[kslr] +description = Sulphur Springs, Sulphur Springs Municipal Airport, TX, United States +location = (0.57877057250856412, -1.6689032233042222) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSLR.TXT +zone = ('txz107', 0.00085874687947826807) + +[ksme] +description = Somerset, Somerset-Pulaski County - J.T. Wilson Field Airport, KY, United States +location = (0.64671720991606552, -1.4768103465750018) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSME.TXT +zone = ('kyz079', 0.0010158458032033296) + +[ksmf] +description = Sacramento International Airport, CA, United States +location = (0.67544242052180559, -2.1223203704251046) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSMF.TXT +zone = ('caz017', 0.0013760040290181428) + +[ksmn] +description = Salmon, Lemhi County Airport, ID, United States +location = (0.78743438085810835, -1.9876391298128757) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSMN.TXT +zone = ('idz010', 0.0065237270991754144) + +[ksmo] +description = Santa Monica Municipal Airport, CA, United States +location = (0.59370283388673772, -2.0673424989872835) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSMO.TXT +zone = ('caz041', 0.0026604681908438529) + +[ksmp] +description = Stampede Pass, WA, United States +location = (0.82524984798465217, -2.1176661590864532) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSMP.TXT +zone = ('waz519', 0.0076574253503737871) + +[ksmq] +description = Somerville Somerset Airport, NJ, United States +location = (0.70889456451836352, -1.3031791748224328) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSMQ.TXT +zone = ('njz010', 0.0011402684669386011) + +[ksms] +description = Sumter, Sc, US +location = (0.59341194567807209, -1.4025465869026432) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSMS.TXT +zone = ('scz031', 0.0014977900692095688) + +[ksmx] +description = Santa Maria Public Airport, CA, United States +location = (0.60911990894602097, -2.1025399722358356) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSMX.TXT +zone = ('caz035', 0.0031652269431598156) + +[ksna] +description = Santa Ana Wayne Orange Cty, CA, United States +location = (0.58788506971342325, -2.0571614116839831) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSNA.TXT +zone = ('caz042', 0.0011653937538663684) + +[ksnc] +description = Chester, Chester Airport, CT, United States +location = (0.72228511839060894, -1.2654655185689219) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSNC.TXT +zone = ('ctz011', 0.0013190406066677387) + +[ksnk] +description = Snyder, Winston Field Airport, TX, United States +location = (0.57060631011867935, -1.7619147280250869) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSNK.TXT +zone = ('txz048', 0.0010497893725945576) + +[ksnl] +description = Shawnee, Shawnee Municipal Airport, OK, United States +location = (0.61709994213708408, -1.691970658251414) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSNL.TXT +zone = ('okz030', 0.0026265416958200171) + +[ksns] +description = Salinas Municipal Airport, CA, United States +location = (0.63995405906458747, -2.1223203704251046) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSNS.TXT +zone = ('caz528', 0.00134598440501219) + +[ksnt] +description = Stanley, Stanley Ranger Station, ID, United States +location = (0.77158582162263756, -2.0059844795060604) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSNT.TXT +zone = ('idz018', 0.0045203274367031634) + +[ksny] +description = Sidney Municipal Airport, NE, United States +location = (0.71733032256966944, -1.7973982413454936) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSNY.TXT +zone = ('nez055', 0.0020965168323903516) + +[ksoa] +description = Sonora, Sonora Municipal Airport, TX, United States +location = (0.53381864799608791, -1.7566448033114261) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSOA.TXT +zone = ('txz078', 0.0022494206720345637) + +[ksop] +description = Pinehurst/Southern Pines, Moore County Airport, NC, United States +location = (0.61493767311933545, -1.3857914260834978) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSOP.TXT +zone = ('ncz075', 0.0017791429268300429) + +[ksow] +description = Show Low, Show Low Regional Airport, AZ, United States +location = (0.59804191633266812, -1.9199591399299845) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSOW.TXT +zone = ('azz017', 0.0078407556284827238) + +[kspa] +description = Spartanburg Memorial, SC, United States +location = (0.60941079715468671, -1.4302973220093531) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSPA.TXT +zone = ('scz007', 0.00063596121406932931) + +[kspb] +description = Scappoose Industrial Airpark, OR, United States +location = (0.79877902099607145, -2.1444278742836995) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSPB.TXT +zone = ('orz006', 0.0049676092201266335) + +[kspd] +description = Springfield Comanche Natl, CO, United States +location = (0.6507169227852192, -1.7909987007548478) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSPD.TXT +zone = ('coz099', 0.0009999642644881858) + +[kspf] +description = Spearfish / Clyde Ice, SD, United States +location = (0.77638062892881099, -1.8113608753614483) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSPF.TXT +zone = ('sdz025', 0.00038715531308755325) + +[kspg] +description = St Petersburg Whitted Airport, FL, United States +location = (0.48461975563709214, -1.4422237385646477) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSPG.TXT +zone = ('flz050', 0.0031346911703125156) + +[kspi] +description = Abraham Lincoln Capital Airport, IL, United States +location = (0.69551370691974035, -1.565269450830248) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSPI.TXT +zone = ('ilz051', 0.0016353628450933187) + +[kspl] +description = South Padre Island Heliport, TX, United States +location = (0.4550170322685439, -1.6957134198695798) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSPL.TXT +zone = ('txz257', 0.0029876088273157859) + +[kspr] +description = Ship Shoal, LA, United States +location = (0.49914477352313386, -1.5918517849654839) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSPR.TXT +zone = ('laz066', 0.014488459288974114) + +[ksps] +description = Wichita Falls Sheppard Afb, TX, United States +location = (0.59312105746940635, -1.7191493132144147) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSPS.TXT +zone = ('txz086', 0.0029418125245060443) + +[kspw] +description = Spencer Municipal Airport, IA, United States +location = (0.75340046044421893, -1.6618443361072675) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSPW.TXT +zone = ('iaz014', 0.0016889430152277811) + +[ksqi] +description = Sterling Rockfalls, IL, United States +location = (0.72867496270763255, -1.5649785626215822) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSQI.TXT +zone = ('ilz009', 0.0032235850416169527) + +[ksql] +description = San Carlos Airport, CA, United States +location = (0.65478935770653923, -2.1336650105630679) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSQL.TXT +zone = ('caz508', 0.0017876043029814409) + +[ksrb] +description = Sparta Upper Cumberland Regional Airport, United States +location = (0.62929416976982344, -1.4927923265355139) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSRB.TXT +zone = ('tnz032', 0.0015645236309128224) + +[ksrc] +description = Searcy, Searcy Municipal Airport, AR, United States +location = (0.61456436658488112, -1.601116574411487) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSRC.TXT +zone = ('arz033', 0.00078352770408707771) + +[ksrq] +description = Sarasota/Bradenton International ., FL, United States +location = (0.4782202150464463, -1.4407692975213189) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSRQ.TXT +zone = ('flz055', 0.0041000629980427862) + +[ksrr] +description = Ruidoso Regional, NM, United States +location = (0.58410352300076895, -1.8419041372713492) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSRR.TXT +zone = ('nmz526', 0.0022344969570971293) + +[kssc] +description = Shaw Air Force Base, SC, United States +location = (0.59283016926074061, -1.4046991596467695) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSSC.TXT +zone = ('scz031', 0.0017076031249283771) + +[kssf] +description = San Antonio Stinson Muni, TX, United States +location = (0.51196324725166997, -1.7185675367970832) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSSF.TXT +zone = ('txz205', 0.0021766414153878023) + +[kssi] +description = Brunswick Mc Kinnon Airport, GA, United States +location = (0.54367006199623358, -1.4204071229147186) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSSI.TXT +zone = ('gaz154', 0.0012195245817366474) + +[kstc] +description = St. Cloud Regional Airport, MN, United States +location = (0.79499747428341705, -1.6414821615006669) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSTC.TXT +zone = ('mnz050', 0.0026759916544691407) + +[kste] +description = Stevens Point, Stevens Point Municipal Airport, WI, United States +location = (0.77745691530087402, -1.5625981274473344) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSTE.TXT +zone = ('wiz036', 0.0012564134205103313) + +[kstf] +description = George M Bryan, US +location = (0.58346356894170437, -1.5505505074717625) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSTF.TXT +zone = ('msz033', 0.00057906625342185082) + +[kstj] +description = Rosecrans Memorial Airport, MO, United States +location = (0.69405926587641165, -1.6566083483512846) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSTJ.TXT +zone = ('moz020', 0.002382966833846166) + +[kstk] +description = Sterling Muni, US +location = (0.70877820923489721, -1.8022269856093447) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSTK.TXT +zone = ('coz048', 0.0028187887546903588) + +[kstl] +description = Lambert-St Louis International Airport, MO, United States +location = (0.6763150851478027, -1.5771958673855424) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSTL.TXT +zone = ('moz063', 0.0021726281061691197) + +[kstp] +description = Downtown Holman Field, MN, United States +location = (0.78423461056278532, -1.6240288689807236) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSTP.TXT +zone = ('mnz062', 0.0015841292405817792) + +[ksts] +description = Santa Rosa Sonoma County, CA, United States +location = (0.67195176201781692, -2.1435552096577024) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSTS.TXT +zone = ('caz507', 0.0019020618458789971) + +[kstz] +description = South Timbalier, United States, 4 +location = (0.49148471736160321, -1.5824900327832587) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSTZ.TXT +zone = ('laz066', 0.021370146861265593) + +[ksua] +description = Stuart, Witham Field Airport, FL, United States +location = (0.47440957951292539, -1.4001225184970956) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSUA.TXT +zone = ('flz064', 0.0031155376429726394) + +[ksue] +description = Sturgeon Bay, WI, United States +location = (0.78278016951945684, -1.5257086544517098) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSUE.TXT +zone = ('wiz022', 0.0020426247610333707) + +[ksun] +description = Hailey, Friedman Memorial Airport, ID, United States +location = (0.7592182246175333, -1.9949113350295187) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSUN.TXT +zone = ('idz031', 0.0016523414822183851) + +[ksus] +description = Spirit Of St. Louis Airport, MO, United States +location = (0.67456975589580837, -1.5821409669328599) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSUS.TXT +zone = ('moz061', 0.0023275273916261185) + +[ksut] +description = Oak Island, Brunswick County Airport, NC, United States +location = (0.59217567079124278, -1.3626609653577617) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSUT.TXT +zone = ('ncz110', 0.001555128413093583) + +[ksuu] +description = Fairfield / Travis Air Force Base, CA, United States +location = (0.66787932709649678, -2.1284290228070848) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSUU.TXT +zone = ('caz018', 0.0033571562524348777) + +[ksuw] +description = Superior, Richard I. Bong Airport, WI, United States +location = (0.81488937961934127, -1.6073561264873666) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSUW.TXT +zone = ('wiz001', 0.005007322137660683) + +[ksux] +description = Sioux Gateway Airport, IA, United States +location = (0.73972871463693002, -1.6822065107138682) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSUX.TXT +zone = ('nez014', 0.0023406551813254248) + +[ksvc] +description = Silver City / Grant, NM, United States +location = (0.56955911256748282, -1.8875735860318674) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSVC.TXT +zone = ('nmz403', 0.0014882257555050024) + +[ksvh] +description = Statesville, Statesville Municipal Airport, NC, United States +location = (0.62422185511258299, -1.412960384772876) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSVH.TXT +zone = ('ncz036', 0.0013851010651761732) + +[ksvn] +description = Hunter U. S. Army Airfield, GA, United States +location = (0.5587962488468512, -1.4163346879933985) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSVN.TXT +zone = ('gaz118', 0.0015623319907573116) + +[kswf] +description = Newburgh / Stewart, NY, United States +location = (0.72431163957764677, -1.2932889757277981) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSWF.TXT +zone = ('nyz067', 0.0031855049102860454) + +[kswo] +description = Stillwater Regional Airport, OK, United States +location = (0.63122741280461581, -1.6944238154778282) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSWO.TXT +zone = ('okz020', 0.0021760946076432239) + +[ksww] +description = Sweetwater, Avenger Field Airport, TX, United States +location = (0.56665992675444787, -1.7534692737001587) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSWW.TXT +zone = ('txz054', 0.0029924624621443432) + +[ksxt] +description = Sexton Summit, OR, United States +location = (0.74351026134958442, -2.1531545205436711) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSXT.TXT +zone = ('orz024', 0.0060848127983114189) + +[ksyf] +description = Cheyenne County Municipal Airport, United States +location = (0.69397607184873322, -1.7766806013479037) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSYF.TXT +zone = ('ksz001', 0.00096777492818328698) + +[ksyn] +description = Stanton, Stanton Airfield, MN, United States +location = (0.77624003296128918, -1.6234373962897701) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSYN.TXT +zone = ('mnz070', 0.0034847098388072905) + +[ksyr] +description = Syracuse Hancock International Airport, NY, United States +location = (0.75252779581822171, -1.3281955607676847) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSYR.TXT +zone = ('nyz018', 0.0022802164741948733) + +[kszl] +description = Whiteman Air Force Base, MO, United States +location = (0.67602419693913696, -1.6327555152406952) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSZL.TXT +zone = ('moz044', 0.0034942474297190193) + +[kszt] +description = Sandpoint, Sandpoint Airport, ID, United States +location = (0.84298433243963888, -2.0343557761245905) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KSZT.TXT +zone = ('idz001', 0.0035003547775763083) + +[kt35] +description = Cameron Municipal Airpark, United States +location = (0.53894643309546619, -1.6924649219207957) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KT35.TXT +zone = ('txz174', 0.0016264603181068958) + +[kt65] +description = Weslaco, Mid Valley Airport, TX, United States +location = (0.45688356494081567, -1.7099523976837667) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KT65.TXT +zone = ('txz253', 0.0050247824314240486) + +[kt82] +description = Fredericksburg, Gillespie County Airport, TX, United States +location = (0.5278505915816295, -1.7262954668739692) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KT82.TXT +zone = ('txz188', 0.0014143699792966316) + +[ktad] +description = Trinidad, Perry Stokes Airport, CO, United States +location = (0.65042603457655346, -1.8227055154994116) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KTAD.TXT +zone = ('coz088', 0.0016181724349567904) + +[ktan] +description = Taunton Municipal Airport, MA, United States +location = (0.73100206837695836, -1.2394746571246398) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KTAN.TXT +zone = ('maz018', 0.0021792110982323106) + +[ktaz] +description = Taylorville, Taylorville Municipal Airport, IL, United States +location = (0.69000137536552486, -1.5590638357120457) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KTAZ.TXT +zone = ('ilz052', 0.00070910280680912675) + +[ktbn] +description = Fort Leonard Wood, MO, United States +location = (0.65857090441919375, -1.6080300175041091) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KTBN.TXT +zone = ('moz070', 0.0018939163801720792) + +[ktbr] +description = Statesboro, Statesboro-Bulloch County Airport, GA, United States +location = (0.56693627055268037, -1.4265836492120541) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KTBR.TXT +zone = ('gaz100', 0.0015062738949414725) + +[ktbx] +description = Boysen/Thermopol, US +location = (0.75863645401796609, -1.889028021257432) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KTBX.TXT +zone = ('wyz007', 0.0018558640299112293) + +[ktcc] +description = Tucumcari Municipal Airport, NM, United States +location = (0.61406500849333823, -1.8081611050661253) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KTCC.TXT +zone = ('nmz534', 0.0015550099883627638) + +[ktcl] +description = Tuscaloosa Regional Airport, AL, United States +location = (0.57974019987078318, -1.5291993129556982) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KTCL.TXT +zone = ('alz023', 0.0018455126990794257) + +[ktcm] +description = Tacoma / Mcchord Air Force Base, WA, United States +location = (0.82292274231532636, -2.137737445484388) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KTCM.TXT +zone = ('waz509', 0.00043158487349098272) + +[ktcs] +description = Truth Or Consequences Muni, NM, United States +location = (0.58003108807944892, -1.8721565109725842) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KTCS.TXT +zone = ('nmz409', 0.0035165462243673022) + +[ktdf] +description = Roxboro, Person County Airport, NC, United States +location = (0.63329271908614237, -1.378533765277288) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KTDF.TXT +zone = ('ncz007', 0.0018426957558485267) + +[ktdr] +description = Tyndall Drone Runway, FL, United States +location = (0.52417997023921303, -1.4928377050960657) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KTDR.TXT +zone = ('flz112', 0.0038396514673794545) + +[ktdz] +description = Toledo Metcalf Field, OH, United States +location = (0.72547519241230973, -1.4570590372065995) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KTDZ.TXT +zone = ('ohz003', 0.0024698583475358262) + +[kteb] +description = Teterboro Airport, NJ, United States +location = (0.7132578876483493, -1.292416311101801) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KTEB.TXT +zone = ('njz104', 0.00093165345617292523) + +[ktew] +description = Mason, Mason Jewett Field Airport, MI, United States +location = (0.74291394052181958, -1.473465132175346) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KTEW.TXT +zone = ('miz067', 0.00084040608805507975) + +[ktex] +description = Telluride, Telluride Regional Airport, CO, United States +location = (0.66242032504720338, -1.8833605551430255) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KTEX.TXT +zone = ('coz018', 0.0052554736231010934) + +[ktfp] +description = Ingleside, TX, US +location = (0.48729592715681685, -1.6964600329384885) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KTFP.TXT +zone = ('txz245', 0.0049035818563561194) + +[ktha] +description = Tullahoma Regional Airport/William Northern Field, Tullahoma, Tennessee, United States +location = (0.61749777384426185, -1.5052887024655512) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KTHA.TXT +zone = ('tnz076', 0.0023055719732711067) + +[kthv] +description = York Airport, PA, United States +location = (0.6966772597544032, -1.3418673065749738) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KTHV.TXT +zone = ('paz065', 0.0021001266479350402) + +[ktif] +description = Thedford, Thomas County Airport, NE, United States +location = (0.73237409109449836, -1.7552582361834526) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KTIF.TXT +zone = ('nez025', 0.00086242274784232317) + +[ktik] +description = Tinker Air Force Base, OK, United States +location = (0.61813744341465837, -1.6996598032338113) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KTIK.TXT +zone = ('okz025', 0.0023776042353073372) + +[ktip] +description = Rantoul, Rantoul National Aviation Center Airport-Frank Elliott Field, IL, United States +location = (0.70325618140705959, -1.5383768359391021) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KTIP.TXT +zone = ('ilz045', 0.0027834382217373282) + +[ktiw] +description = Tacoma, Tacoma Narrows Airport, WA, United States +location = (0.82497350418641968, -2.1393567231792936) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KTIW.TXT +zone = ('waz509', 0.0018991247295551195) + +[ktix] +description = Titusville, FL, United States +location = (0.49770972502704963, -1.4102260356114182) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KTIX.TXT +zone = ('flz147', 0.00079001305987375233) + +[ktkc] +description = Tracy, Tracy Municipal Airport, MN, United States +location = (0.77228880146024648, -1.6686608164636674) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KTKC.TXT +zone = ('mnz072', 0.0040776590021814633) + +[ktki] +description = Collin Cnty Regional Airport, TX, United States +location = (0.57915842345345159, -1.6856971692178566) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KTKI.TXT +zone = ('txz104', 0.00017771189647985619) + +[ktkv] +description = Tomahawk, Tomahawk Regional Airport, WI, United States +location = (0.7935818183345773, -1.5674026310271298) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KTKV.TXT +zone = ('wiz018', 0.0024524796693514298) + +[ktlh] +description = Tallahassee Regional Airport, FL, United States +location = (0.53058009260627614, -1.4721852240572169) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KTLH.TXT +zone = ('flz017', 0.001485126500633807) + +[ktma] +description = Henry Tift Myers Air, US +location = (0.54838245097661842, -1.4570008595648665) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KTMA.TXT +zone = ('gaz129', 0.00095388765490439715) + +[ktmb] +description = Kendall-Tamiami Exec Airport, FL, United States +location = (0.44767695313654549, -1.4038264950207724) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KTMB.TXT +zone = ('flz173', 0.0022569211544506982) + +[ktme] +description = Houston, Tx, US +location = (0.52028265001950957, -1.673770752662562) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KTME.TXT +zone = ('txz212', 0.0037522571698862944) + +[ktmk] +description = Tillamook Arpt, OR, US +location = (0.79272854625582456, -2.1608921468941795) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KTMK.TXT +zone = ('orz001', 0.0050921726580101497) + +[ktnb] +description = Boone, Watauga County Hospital Heliport, NC, United States +location = (0.6318091892219474, -1.4250613342533702) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KTNB.TXT +zone = ('ncz018', 0.0008570739684663931) + +[ktnu] +description = Newton Municipal, IA, United States +location = (0.72751140987296969, -1.6234470925633921) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KTNU.TXT +zone = ('iaz061', 0.00048494590334814978) + +[ktoa] +description = Torrance, Zamperini Field Airport, CA, United States +location = (0.58992128717408332, -2.0653062815266234) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KTOA.TXT +zone = ('caz041', 0.00228614450952697) + +[ktob] +description = Dodge Center, Dodge Center Airport, MN, United States +location = (0.76825999977022619, -1.6202133853103915) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KTOB.TXT +zone = ('mnz086', 0.00039193925326835345) + +[ktoc] +description = Toccoa RG Letourneau Field Airport, Toccoa, United States +location = (0.60375846168741687, -1.4537959411300263) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KTOC.TXT +zone = ('gaz018', 0.00067864793104063803) + +[ktoi] +description = Troy Municipal Airport, AL, United States +location = (0.55617825496885964, -1.5012740449237891) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KTOI.TXT +zone = ('alz049', 0.0015875427767148734) + +[ktol] +description = Toledo Express Airport, OH, United States +location = (0.72576608062097536, -1.4625859131712482) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KTOL.TXT +zone = ('ohz003', 0.001953250768878108) + +[ktop] +description = Topeka Billard Municipal Airport, KS, United States +location = (0.68184196111245143, -1.6691165413239106) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KTOP.TXT +zone = ('ksz039', 0.0017248346647155558) + +[ktor] +description = Torrington Municipal Airport, WY, United States +location = (0.73391095046361554, -1.8177604159520944) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KTOR.TXT +zone = ('wyz108', 0.0027162197086128739) + +[ktpa] +description = Tampa International Airport, FL, United States +location = (0.48811041414108081, -1.4404784093126533) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KTPA.TXT +zone = ('flz050', 0.0029834110095521213) + +[ktpf] +description = Tampa, Peter O Knight Airport, FL, United States +location = (0.48721835696783922, -1.4390094238588915) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KTPF.TXT +zone = ('flz051', 0.0035807776653165781) + +[ktph] +description = Tonopah Airport, NV, United States +location = (0.66380689217517663, -2.0434896658766939) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KTPH.TXT +zone = ('nvz014', 0.0081825041096496801) + +[ktpl] +description = Temple, Draughon-Miller Central Texas Regional Airport, TX, United States +location = (0.54367006199623358, -1.6999506914424771) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KTPL.TXT +zone = ('txz158', 0.0022820151959857681) + +[ktqe] +description = Tekamah Municipal Airport, NE, United States +location = (0.72896585091629829, -1.6787158522098793) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KTQE.TXT +zone = ('nez034', 0.0024017683826200223) + +[ktqh] +description = Tahlequah, Tahlequah Municipal Airport, OK, United States +location = (0.62707740769431819, -1.6581403595835906) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KTQH.TXT +zone = ('okz068', 0.00039475246954009832) + +[ktri] +description = Tri-City Regional Airport, TN, United States +location = (0.63646340056059891, -1.4381513036433275) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KTRI.TXT +zone = ('tnz017', 0.0015678406245155836) + +[ktrk] +description = Truckee-Tahoe, CA, United States +location = (0.68620528424243732, -2.0967222080625212) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KTRK.TXT +zone = ('nvz002', 0.003441217266003624) + +[ktrl] +description = Terrell Municipal Airport, TX, United States +location = (0.57101355361081152, -1.6801702932532079) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KTRL.TXT +zone = ('txz121', 0.0020668834155007478) + +[ktrm] +description = Palm Springs, Jacqueline Cochran Regional Airport, CA, United States +location = (0.58689604980395982, -2.0273647628429909) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KTRM.TXT +zone = ('caz061', 0.0028966269188092932) + +[ktsp] +description = Tehachapi, Ca, US +location = (0.61330869915080743, -2.0669934331368847) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KTSP.TXT +zone = ('caz095', 0.004218867507964387) + +[ktta] +description = Sanford, Sanford-Lee County Regional Airport, NC, United States +location = (0.62103178109088242, -1.3805796790115699) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KTTA.TXT +zone = ('ncz076', 0.0021248026172907934) + +[kttd] +description = Portland-Troutdale Airport, OR, United States +location = (0.79499747428341705, -2.1365738926497251) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KTTD.TXT +zone = ('waz039', 0.003564744301656595) + +[kttf] +description = Monroe, Custer Airport, MI, United States +location = (0.73199108828642179, -1.4562106132646577) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KTTF.TXT +zone = ('miz083', 0.0013451062990911245) + +[kttn] +description = Trenton Mercer County Airport, NJ, United States +location = (0.70307680034504905, -1.3057971687004242) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KTTN.TXT +zone = ('njz015', 0.0015333704506457486) + +[ktts] +description = Titusville, Nasa Shuttle Landing Facility, FL, United States +location = (0.49945505427904396, -1.408480706359424) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KTTS.TXT +zone = ('flz147', 0.0015977782484176716) + +[ktul] +description = Tulsa International Airport, OK, United States +location = (0.6318091892219474, -1.6734798644538964) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KTUL.TXT +zone = ('okz060', 0.0016025338018711424) + +[ktup] +description = Tupelo Regional Airport, MS, United States +location = (0.59806615701672361, -1.5492705993536331) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KTUP.TXT +zone = ('msz016', 0.0013085404202539408) + +[ktus] +description = Tucson International Airport, AZ, United States +location = (0.56083246630751127, -1.9364428050877087) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KTUS.TXT +zone = ('azz504', 0.0017417130921350012) + +[ktvc] +description = Cherry Capital Airport, MI, United States +location = (0.78074395205879676, -1.4934200632898147) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KTVC.TXT +zone = ('miz026', 0.0010938099108262851) + +[ktvf] +description = Thief River Falls, Thief River Falls Regional Airport, MN, United States +location = (0.83892159379194109, -1.6787158522098793) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KTVF.TXT +zone = ('mnz013', 0.001710274896628594) + +[ktvi] +description = Thomasville, GA, United States +location = (0.5393358276871143, -1.464006417256899) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KTVI.TXT +zone = ('gaz158', 0.00087365121935028915) + +[ktvk] +description = Centerville Muni, Ia, US +location = (0.70999993971129327, -1.6214108751027323) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KTVK.TXT +zone = ('iaz096', 0.0011782120212574451) + +[ktvl] +description = South Lake Tahoe Airport, CA, United States +location = (0.67864219081712851, -2.0941042141845299) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KTVL.TXT +zone = ('caz072', 0.0011486787174832787) + +[ktvr] +description = Vicksburg, Vicksburg / Tallulah Regional Airport, LA, United States +location = (0.56458007606248806, -1.5887732180904381) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KTVR.TXT +zone = ('msz047', 0.0026280251108145476) + +[ktwf] +description = Joslin Fld-Magic Valley Regl, ID, United States +location = (0.74147404388892435, -1.9981111053248417) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KTWF.TXT +zone = ('idz016', 0.0048808939106124915) + +[ktwm] +description = Two Harbors, MN, United States +location = (0.82117741306333203, -1.6013395887047974) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KTWM.TXT +zone = ('mnz020', 0.0054079593796998587) + +[ktxk] +description = Texarkana Rgnl Webb Field, AR, United States +location = (0.58381263479210332, -1.640318608666004) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KTXK.TXT +zone = ('arz070', 0.0027472029632652712) + +[ktyq] +description = Indianapolis, In, US +location = (0.69865529957333017, -1.5053464798451093) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KTYQ.TXT +zone = ('inz039', 0.0027473028621408501) + +[ktyr] +description = Tyler Pounds Fields, TX, United States +location = (0.56461401302016567, -1.6650441064025905) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KTYR.TXT +zone = ('txz136', 0.0019770581870732482) + +[ktys] +description = Mcghee Tyson Airport, TN, United States +location = (0.62511876042263581, -1.465785683466571) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KTYS.TXT +zone = ('tnz071', 0.001630802870416696) + +[ktzr] +description = Columbus, Bolton Field Airport, OH, United States +location = (0.69640091595617071, -1.4510182587399749) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KTZR.TXT +zone = ('ohz055', 0.0020907494394421413) + +[ku16] +description = Eagle Range, UT, United States +location = (0.71645765794367222, -1.9733856075882552) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KU16.TXT +zone = ('utz005', 0.0025269003748070165) + +[ku24] +description = Delta, UT, United States +location = (0.68649617245110295, -1.9649498495369493) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KU24.TXT +zone = ('utz015', 0.0074551359695349097) + +[ku78] +description = Soda Springs / Tigert, ID, United States +location = (0.74438292597558153, -1.947496557017006) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KU78.TXT +zone = ('idz023', 0.0048898914043005674) + +[kuao] +description = Aurora State Airport, OR, United States +location = (0.78976148652743416, -2.1426825450317053) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KUAO.TXT +zone = ('orz006', 0.0041632568558956631) + +[kube] +description = Cumberland, Wi, US +location = (0.79412480965741994, -1.6055283789095836) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KUBE.TXT +zone = ('wiz015', 0.0021848062933318957) + +[kucp] +description = New Castle, New Castle Municipal Airport, PA, United States +location = (0.71602617376748467, -1.4034774291703738) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KUCP.TXT +zone = ('paz013', 0.0011999949949927336) + +[kues] +description = Waukesha, Waukesha County Airport, WI, United States +location = (0.7512091026056037, -1.5400252024548744) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KUES.TXT +zone = ('wiz065', 0.00095087784826899729) + +[kugn] +description = Chicago/Waukegan Regional, IL, United States +location = (0.74031049105426139, -1.5335626360856842) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KUGN.TXT +zone = ('ilz006', 0.0024051123903186017) + +[kuil] +description = Quillayute State Airport, WA, United States +location = (0.83659448812261528, -2.1740984715676031) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KUIL.TXT +zone = ('waz516', 0.0018722835698814673) + +[kuin] +description = Quincy Muni. Baldwin Field, IL, United States +location = (0.69696814796306883, -1.5917402778188285) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KUIN.TXT +zone = ('ilz095', 0.00096277801969283326) + +[kukf] +description = North Wilkesboro, Wilkes County Airport, NC, United States +location = (0.63210007743061303, -1.4151711351587355) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KUKF.TXT +zone = ('ncz019', 0.0011469429948051074) + +[kuki] +description = Ukiah Municipal Airport, CA, United States +location = (0.68300551394711428, -2.1502456384570139) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KUKI.TXT +zone = ('caz002', 0.0055655405449509072) + +[kukt] +description = Quakertown, Quakertown Airport, PA, United States +location = (0.7057238830439071, -1.3156582789741922) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KUKT.TXT +zone = ('paz068', 0.0039160171366125224) + +[kulm] +description = New Ulm, New Ulm Municipal Airport, MN, United States +location = (0.77347174684215381, -1.6493361431346414) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KULM.TXT +zone = ('mnz074', 0.0031287587672887084) + +[kuni] +description = Ohio Univ Arpt-Snyder Field, OH, US +location = (0.68434359970697667, -1.4351842439149372) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KUNI.TXT +zone = ('ohz075', 0.0033008752347953437) + +[kuno] +description = West Plains Municipal Airport, MO, United States +location = (0.64373560577724187, -1.603957582582789) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KUNO.TXT +zone = ('moz097', 0.001917523881109436) + +[kunu] +description = Juneau, Dodge County Airport, WI, United States +location = (0.75793831649940413, -1.5481652241607033) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KUNU.TXT +zone = ('wiz058', 0.00018680979573526543) + +[kunv] +description = State College, University Park Airport, PA, United States +location = (0.71296699943968367, -1.3587388226775854) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KUNV.TXT +zone = ('paz019', 0.0019950141723065868) + +[kuox] +description = Oxford, University-Oxford Airport, MS, United States +location = (0.60012176702462794, -1.562690242046745) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KUOX.TXT +zone = ('msz013', 0.0008748254448855741) + +[kuta] +description = Tunica, Tunica Municipal Airport, MS, United States +location = (0.60529472900206671, -1.5768419533983324) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KUTA.TXT +zone = ('msz007', 0.00065412361292309872) + +[kuts] +description = Huntsville Municipal Airport, TX, United States +location = (0.53668874498825636, -1.6682438766979133) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KUTS.TXT +zone = ('txz177', 0.00025445810507069563) + +[kuuu] +description = Newport State Airport, RI, United States +location = (0.72489341599497814, -1.2441288684632912) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KUUU.TXT +zone = ('riz007', 0.00072744256140259197) + +[kuva] +description = Uvalde, Garner Field Airport, TX, United States +location = (0.50983006705478806, -1.7408495735808776) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KUVA.TXT +zone = ('txz203', 0.0025675909449164231) + +[kuxl] +description = Southland Field Arpt, LA, US +location = (0.52586770362589152, -1.6297884555123048) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KUXL.TXT +zone = ('laz041', 0.001763181597438105) + +[kuza] +description = Rock Hill-York County Airport, SC, United States +location = (0.61057434998934967, -1.414589358741404) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KUZA.TXT +zone = ('scz009', 0.0019293189821326764) + +[kvad] +description = Moody Air Force Base, GA, United States +location = (0.54047029170091065, -1.4521139376592822) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KVAD.TXT +zone = ('gaz161', 0.0024031517366114273) + +[kvaf] +description = Boomvang, TX, United States +location = (0.47741057619899341, -1.6515226528364453) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KVAF.TXT +zone = ('txz236', 0.033692076251104867) + +[kvay] +description = Mt Holly South Jersey Rgnl, NJ, United States +location = (0.69696814796306883, -1.3060880569090898) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KVAY.TXT +zone = ('njz019', 0.0013603394981458066) + +[kvbg] +description = Lompoc, Vandenberg Air Force Base, CA, United States +location = (0.60614315294400845, -2.1044598344130296) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KVBG.TXT +zone = ('caz035', 0.0021611931248161622) + +[kvbs] +description = Sabine 13B, LA, United States +location = (0.5144939746670617, -1.6342972227466237) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KVBS.TXT +zone = ('laz073', 0.0074373216251221392) + +[kvbt] +description = Bentonville, Bentonville Municipal Airport/Louise M Thaden Field, AR, United States +location = (0.63442718309993884, -1.6443910435873241) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KVBT.TXT +zone = ('arz001', 0.0006015224707254887) + +[kvcb] +description = Vacaville Nut Tree Airport, CA, United States +location = (0.66991554455715685, -2.1284290228070848) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KVCB.TXT +zone = ('caz018', 0.0049174917923131122) + +[kvct] +description = Victoria Regional Airport, TX, United States +location = (0.50381837740902979, -1.6918058215998368) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KVCT.TXT +zone = ('txz234', 0.0013574905342130588) + +[kvcv] +description = Victorville, Southern California Logistics Airport, CA, United States +location = (0.60383543982192711, -2.0487159573590548) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KVCV.TXT +zone = ('caz060', 0.0053804427643512212) + +[kvdf] +description = Tampa, Vandenberg Airport, FL, United States +location = (0.48893459739896705, -1.4371962206915416) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KVDF.TXT +zone = ('flz051', 0.005188737616253194) + +[kvdi] +description = Vidalia, Vidalia Municipal Airport, GA, United States +location = (0.56186511944827444, -1.4376616418254069) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KVDI.TXT +zone = ('gaz113', 0.0013956911982427132) + +[kvel] +description = Vernal Airport, UT, United States +location = (0.70569479422304049, -1.911135530933791) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KVEL.TXT +zone = ('utz024', 0.0038405757357910042) + +[kver] +description = Jesse Viertel Mem, US +location = (0.67963121072659194, -1.6175711507483448) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KVER.TXT +zone = ('moz046', 0.0024385018846538337) + +[kves] +description = Versailles, Oh, US +location = (0.70162235930172057, -1.4753268167108067) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KVES.TXT +zone = ('ohz042', 0.00166545541964316) + +[kvgt] +description = North Las Vegas, NV, United States +location = (0.6318091892219474, -2.0103284100888019) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KVGT.TXT +zone = ('nvz020', 0.0010008189040588977) + +[kvih] +description = Rolla/Vichy Rolla National, MO, United States +location = (0.66555222142717096, -1.6016304769134631) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KVIH.TXT +zone = ('moz058', 0.0022271879019316182) + +[kvis] +description = Visalia, Visalia Municipal Airport, CA, United States +location = (0.63384540668260736, -2.0839231268812295) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KVIS.TXT +zone = ('caz094', 0.0069628601688308204) + +[kvji] +description = Abingdon, VA, United States +location = (0.64024494727325321, -1.4317517630526817) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KVJI.TXT +zone = ('vaz008', 0.0011805262749210578) + +[kvky] +description = Main Pass 289C Oil Platform, LA, US +location = (0.51050880620834138, -1.5435691904637849) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KVKY.TXT +zone = ('laz070', 0.019786696973571657) + +[kvld] +description = Valdosta Regional Airport, GA, United States +location = (0.53727052140558784, -1.4532774904939449) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KVLD.TXT +zone = ('gaz160', 0.0008826907498611609) + +[kvll] +description = Troy, Oakland/Troy Airport, MI, United States +location = (0.74251154516649875, -1.4517260867143946) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KVLL.TXT +zone = ('miz069', 0.0033668709759718841) + +[kvnc] +description = Venice, Fl, US +location = (0.47246062851486503, -1.4385003694937264) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KVNC.TXT +zone = ('flz060', 0.0024593302484403404) + +[kvnp] +description = Vermillion 26, LA, United States +location = (0.51429035292099579, -1.6121363893831067) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KVNP.TXT +zone = ('laz052', 0.0067334622366181868) + +[kvny] +description = Van Nuys Airport, CA, United States +location = (0.5971934923907265, -2.0679242754046148) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KVNY.TXT +zone = ('caz547', 0.00022145471284903303) + +[kvoa] +description = Visco Knoll 768 Oil Platform, AL, US +location = (0.51015974035794254, -1.5320500174006224) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KVOA.TXT +zone = ('alz064', 0.022123809164235616) + +[kvok] +description = Volk / Camp Douglas, WI, United States +location = (0.76678131804284211, -1.5754505381335482) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KVOK.TXT +zone = ('wiz043', 0.001925184386772757) + +[kvpc] +description = Cartersville Airport, GA, United States +location = (0.5957390513473978, -1.4809118703171886) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KVPC.TXT +zone = ('gaz020', 0.0018301793687658771) + +[kvps] +description = Valparaiso / Eglin Air Force Base, FL, United States +location = (0.53203453364960485, -1.5100006911837607) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KVPS.TXT +zone = ('flz006', 0.0019062464978227625) + +[kvpz] +description = Valparaiso Porter Co Muni, IN, United States +location = (0.72343897495164966, -1.5184364492350666) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KVPZ.TXT +zone = ('inz002', 0.00089664712139212106) + +[kvqq] +description = Jacksonville, Cecil Field Airport, FL, United States +location = (0.52741425926863084, -1.4290174138912239) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KVQQ.TXT +zone = ('flz025', 0.0036228326159074976) + +[kvqt] +description = Vermillion 331A Oil Platform, LA, US +location = (0.49340457953879696, -1.6102407678899686) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KVQT.TXT +zone = ('laz052', 0.0275818005229021) + +[kvrb] +description = Vero Beach Municipal Airport, FL, United States +location = (0.48258353817643207, -1.4035356068121068) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KVRB.TXT +zone = ('flz054', 0.0031677780604366275) + +[kvsf] +description = Hartness State Airport, VT, United States +location = (0.75660023073954186, -1.2656545959045546) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KVSF.TXT +zone = ('nhz007', 0.0037407424626694215) + +[kvta] +description = Newark Heath Airport, OH, United States +location = (0.69842258900639753, -1.4393148564779905) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KVTA.TXT +zone = ('ohz056', 0.0013304672069794719) + +[kvti] +description = Vinton, Vinton Veterans Memorial Airpark Airport, IA, United States +location = (0.73685376950795056, -1.6061537885582151) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KVTI.TXT +zone = ('iaz051', 0.0024719030317396245) + +[kvtn] +description = Miller Field - Valentine, Ne, NE, United States +location = (0.74816447268823594, -1.7549285628802984) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KVTN.TXT +zone = ('nez005', 0.0054198299405844802) + +[kvuj] +description = Albemarle, Stanly County Airport, NC, United States +location = (0.61813744341465837, -1.3988959398838885) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KVUJ.TXT +zone = ('ncz073', 0.0023146247368920794) + +[kvuo] +description = Pearson Airfield, WA, United States +location = (0.79616102711808001, -2.1406463275710452) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KVUO.TXT +zone = ('waz039', 0.0026298126022824158) + +[kvvg] +description = The Villages, FL, United States +location = (0.50556370666102413, -1.4305882102180187) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KVVG.TXT +zone = ('flz040', 0.0044688976895312666) + +[kvvv] +description = Ortonville, Ortonville Muncipal-Martinson Field Airport, MN, United States +location = (0.79073111388965311, -1.6829240349619101) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KVVV.TXT +zone = ('mnz046', 0.0021103466929456487) + +[kvwu] +description = Waskish, Waskish Municipal Airport, MN, United States +location = (0.84044875688743614, -1.6496318794801184) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KVWU.TXT +zone = ('mnz009', 0.0057703142513069626) + +[kvys] +description = Peru, Illinois Valley Regional-Walter A Duncan Field Airport, IL, United States +location = (0.72172758265733306, -1.5560143576578671) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KVYS.TXT +zone = ('ilz018', 0.0031070678913673599) + +[kw22] +description = Buckhannon, Upshur County Regional Airport, WV, United States +location = (0.68067840827778847, -1.4009176129341152) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KW22.TXT +zone = ('wvz039', 0.0018399930486213581) + +[kw29] +description = Bay Bridge Arpt/Stevensville, MD, US +location = (0.68032934242738963, -1.3322098180472717) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KW29.TXT +zone = ('mdz014', 0.0028096863533105519) + +[kw99] +description = Petersburg, Grant County Airport, WV, United States +location = (0.68038752006912284, -1.3811372147448462) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KW99.TXT +zone = ('wvz502', 0.0013039002684312505) + +[kwal] +description = Wallops Flight Fac Airport, VA, United States +location = (0.6620615629231823, -1.3171418088383875) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KWAL.TXT +zone = ('vaz099', 0.0038379531778411149) + +[kwdg] +description = Enid, Enid Woodring Regional Airport, OK, United States +location = (0.63493623746510386, -1.7067768680724991) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KWDG.TXT +zone = ('okz012', 0.00011682251605122646) + +[kwdr] +description = Winder, Winder-Barrow Airport, GA, United States +location = (0.59310166492216199, -1.4602830481859779) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KWDR.TXT +zone = ('gaz035', 0.00067388476910782845) + +[kwhp] +description = Los Angeles, Whiteman Airport, CA, United States +location = (0.59777526880805787, -2.0664698343612864) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KWHP.TXT +zone = ('caz547', 0.0014020042524223778) + +[kwjf] +description = Lancaster Fox Airfield, CA, United States +location = (0.60621102685936379, -2.0632700640659634) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KWJF.TXT +zone = ('caz059', 0.0024334214173570329) + +[kwld] +description = Strother Field, KS, United States +location = (0.64868070532455913, -1.6935511508518311) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KWLD.TXT +zone = ('ksz093', 0.0029914092012007839) + +[kwmc] +description = Winnemucca Municipal Airport, NV, United States +location = (0.71383966406568078, -2.0559978588493202) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KWMC.TXT +zone = ('nvz030', 0.0097493887001493737) + +[kwrb] +description = Warner Robins Air Force Base, GA, United States +location = (0.56955911256748282, -1.4590952546672593) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KWRB.TXT +zone = ('gaz083', 0.0026072357175079301) + +[kwri] +description = Mcguire Air Force Base, NJ, United States +location = (0.69842258900639753, -1.3020156219877697) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KWRI.TXT +zone = ('njz019', 0.0021731922800776195) + +[kwrl] +description = Worland Municipal Airport, WY, United States +location = (0.76736309446017359, -1.8840829275278788) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KWRL.TXT +zone = ('wyz006', 0.0016914860564389864) + +[kwst] +description = Westerly State Airport, RI, United States +location = (0.72169364569965533, -1.2531464029319286) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KWST.TXT +zone = ('riz006', 0.0032015068426778084) + +[kwvi] +description = Watsonville Municipal Airport, CA, United States +location = (0.64460827040323898, -2.1255201407204276) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KWVI.TXT +zone = ('caz529', 0.0017936515302809214) + +[kwvl] +description = Waterville, Waterville Robert Lafleur Airport, ME, United States +location = (0.7772532935548081, -1.2162036004313821) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KWVL.TXT +zone = ('mez021', 0.0024036148445852365) + +[kwwd] +description = Wildwood, Cape May County Airport, NJ, United States +location = (0.68096929648645421, -1.3075424979524186) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KWWD.TXT +zone = ('njz024', 0.0023944913331620916) + +[kwwr] +description = Woodward, West Woodward Airport, OK, United States +location = (0.63593980178500042, -1.7369710641320011) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KWWR.TXT +zone = ('okz010', 0.0036047366361183714) + +[kwys] +description = West Yellowstone, MT, United States +location = (0.77987128743279954, -1.9393516871743657) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KWYS.TXT +zone = ('wyz001', 0.0073447306739621307) + +[kxbp] +description = Bridgeport, Bridgeport Municipal Airport, TX, United States +location = (0.57901782748592978, -1.707426518405186) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KXBP.TXT +zone = ('txz102', 0.0026373845249680751) + +[kxfl] +description = Palm Coast, Fl, US +location = (0.51434853056272889, -1.417381885544595) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KXFL.TXT +zone = ('flz038', 0.0015965920328777554) + +[kxih] +description = High Island 179A Oil Platform, LA, US +location = (0.50928707573194532, -1.6496852089850402) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KXIH.TXT +zone = ('txz238', 0.0077349353188338812) + +[kxll] +description = Allentown, Pa, US +location = (0.70808007753409952, -1.3175490523305193) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KXLL.TXT +zone = ('paz061', 0.0015499979196171693) + +[kxmr] +description = Cocoa Beach, Cape Canaveral Air Force Station Skid Strip, FL, United States +location = (0.49683706040105247, -1.4061536006900981) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KXMR.TXT +zone = ('flz147', 0.0036523015623409214) + +[kxna] +description = Northwest Arkansas Regional, AR, United States +location = (0.63326363026527588, -1.6458454846306527) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KXNA.TXT +zone = ('arz001', 0.0011451549427075934) + +[kxpy] +description = Port Function, La, US +location = (0.50806534525554936, -1.5742869852988852) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KXPY.TXT +zone = ('laz067', 0.0046771662746722059) + +[kxsa] +description = Essex Cnty Arpt, VA, US +location = (0.66060712187985371, -1.3418091289332406) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KXSA.TXT +zone = ('vaz074', 0.0012739532121937654) + +[kxvg] +description = Longville, Longville Municipal Airport, MN, United States +location = (0.82013506364894651, -1.644168029294014) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KXVG.TXT +zone = ('mnz025', 0.0020160056652245291) + +[ky19] +description = Mandan Municipal Airport, ND, United States +location = (0.81625655420007026, -1.7609305562524344) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KY19.TXT +zone = ('ndz034', 0.0047191570590743668) + +[ky50] +description = Wautoma, Wautoma Municipal Airport, WI, United States +location = (0.76866724326235825, -1.5586565922199138) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KY50.TXT +zone = ('wiz045', 0.0014703643143739661) + +[ky51] +description = Viroqua Municipal Airport, WI, United States +location = (0.76063872870318439, -1.5864994419260345) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KY51.TXT +zone = ('wiz053', 0.00085417133350992229) + +[ky63] +description = Elbow Lake Municipal, Pride Of The Prairie, MN, United States +location = (0.80256056770872586, -1.6752251937058906) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KY63.TXT +zone = ('mnz040', 0.00092908169897852025) + +[ky70] +description = Ionia Cnty Ap, Ionia, M, US +location = (0.74944438080636511, -1.4845770617463767) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KY70.TXT +zone = ('miz058', 0.00020668548548700573) + +[kyip] +description = Willow Run Airport, MI, United States +location = (0.73711072075893858, -1.4579317018325966) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KYIP.TXT +zone = ('miz076', 0.0033088163647085785) + +[kykm] +description = Yakima Air Terminal, WA, United States +location = (0.81274165501202622, -2.1037035250704985) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KYKM.TXT +zone = ('waz027', 0.0035362794303853938) + +[kykn] +description = Yankton, Chan Gurney Municipal Airport, SD, United States +location = (0.74903713731423305, -1.6996598032338113) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KYKN.TXT +zone = ('sdz069', 0.0016180468144731306) + +[kyng] +description = Youngstown-Warren Reg Airprt, OH, United States +location = (0.71994831644766089, -1.4078989299420925) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KYNG.TXT +zone = ('ohz023', 0.001701494638118803) + +[kzzv] +description = Zanesville Municipal Airport, OH, United States +location = (0.69725903617173468, -1.429424657383356) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KZZV.TXT +zone = ('ohz057', 0.0006519767528126569) + +[lati] +description = Tirana, Albania +location = (0.72140275749098959, 0.34528430368621155) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LATI.TXT + +[lbbg] +description = Burgas, Bulgaria +location = (0.74147404388892435, 0.47967465608977494) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LBBG.TXT + +[lbgo] +description = Gorna Orechovista, Bulgaria +location = (0.75310957223555319, 0.44680428851054838) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LBGO.TXT + +[lbpd] +description = Plovdiv, Bulgaria +location = (0.73536539150694413, 0.43196898986859655) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LBPD.TXT + +[lbsf] +description = Sofia Observ., Bulgaria +location = (0.74438292597558153, 0.40811615675800739) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LBSF.TXT + +[lbwn] +description = Varna, Bulgaria +location = (0.75398223686155041, 0.4872377495150837) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LBWN.TXT + +[lcen] +description = Ercan, Cyprus +location = (0.61348323207600686, 0.58468529941810043) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LCEN.TXT + +[lclk] +description = Larnaca Airport, Cyprus +location = (0.60882902073735523, 0.58701240508742614) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LCLK.TXT + +[lcph] +description = Paphos Airport, Cyprus +location = (0.60592013865069816, 0.56694111868949137) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LCPH.TXT + +[lcra] +description = Akrotiri, Cyprus +location = (0.60359303298137235, 0.57566776494946303) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LCRA.TXT + +[lddu] +description = Dubrovnik / Cilipi, Croatia +location = (0.74292848493225305, 0.31881347669763083) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LDDU.TXT + +[ldlo] +description = Losinj Island, Croatia +location = (0.77782052556170622, 0.25120620886690609) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LDLO.TXT + +[ldos] +description = Osijek / Cepin, Croatia +location = (0.79325214503142283, 0.32812189937493397) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LDOS.TXT + +[ldpl] +description = Pula Aerodrome, Croatia +location = (0.80110612666539727, 0.24289165423587752) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LDPL.TXT + +[ldri] +description = Rijeka / Omisalj, Croatia +location = (0.78917971011010268, 0.25452718258250639) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LDRI.TXT + +[ldsb] +description = Brac, Croatia +location = (0.75548031113617875, 0.29111607109584309) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LDSB.TXT + +[ldsp] +description = Split / Resnik, Croatia +location = (0.75980000103486478, 0.28448866807507572) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LDSP.TXT + +[ldza] +description = Zagreb / Pleso, Croatia +location = (0.79819724457874008, 0.28041623315375563) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LDZA.TXT + +[ldzd] +description = Zadar / Zemunik, Croatia +location = (0.7696902001294994, 0.26790804018112957) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LDZD.TXT + +[leab] +description = Albacete / Los Llanos, Spain +location = (0.67980574365179136, -0.0322885911618951) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LEAB.TXT + +[leal] +description = Alicante / El Altet, Spain +location = (0.66817021530516241, -0.0095993108859688137) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LEAL.TXT + +[leam] +description = Almeria / Aeropuerto, Spain +location = (0.6431538293599105, -0.041597013839198185) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LEAM.TXT + +[leao] +description = Ciudad Real, SP +location = (0.68015480950219021, -0.068416906678177722) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LEAO.TXT + +[leas] +description = Asturias / Aviles, Spain +location = (0.76009088924353052, -0.10530153153699122) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LEAS.TXT + +[leba] +description = Cordoba / Aeropuerto, Spain +location = (0.66060712187985371, -0.084648468721724976) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LEBA.TXT + +[lebb] +description = Bilbao / Sondica, Spain +location = (0.75572756611354464, -0.051196324725167004) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LEBB.TXT + +[lebg] +description = Burgos / Villafria, Spain +location = (0.73943782642826428, -0.063413629489127307) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LEBG.TXT + +[lebl] +description = Barcelona / Aeropuerto, Spain +location = (0.72053009286499237, 0.036070137874549484) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LEBL.TXT + +[lebt] +description = Valencia Heliport, Valenciana, Spain +location = (0.69157701207211197, -0.0082466632623806879) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LEBT.TXT + +[lebz] +description = Badajoz / Talavera La Real, Spain +location = (0.67864219081712851, -0.11897327734428012) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LEBZ.TXT + +[leco] +description = La Coruna / Alvedro, Spain +location = (0.75572756611354464, -0.14631676895885795) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LECO.TXT + +[lecv] +description = Madri-Colmenar, Spain +location = (0.70947634093569489, -0.065158958741121639) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LECV.TXT + +[leda] +description = Lleida-Alguaire Airp, SP +location = (0.72815136393203428, 0.009250245035569947) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LEDA.TXT + +[leec] +description = Sevilla El Copero, Spain +location = (0.65123644912589618, -0.10470055649788783) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LEEC.TXT + +[lega] +description = Granada / Armilla, Spain +location = (0.64809892890722764, -0.063452414583616071) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LEGA.TXT + +[lege] +description = Gerona / Costa Brava, Spain +location = (0.7312929565856241, 0.048287442638509787) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LEGE.TXT + +[legr] +description = Granada / Aeropuerto, Spain +location = (0.64897159353322487, -0.066031623367118805) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LEGR.TXT + +[legt] +description = Madrid / Getafe, Spain +location = (0.70336768855371479, -0.064868070532455913) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LEGT.TXT + +[lehc] +description = Huesca-Pirineos, SP +location = (0.73443454923921381, -0.0055850536063818549) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LEHC.TXT + +[leib] +description = Ibiza / Es Codola, Spain +location = (0.67835130260846277, 0.024143721319254893) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LEIB.TXT + +[lejr] +description = Jerez De La Fronteraaeropuerto, Spain +location = (0.64140850010791606, -0.10588330795432266) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LEJR.TXT + +[lelc] +description = Murcia / San Javier, Spain +location = (0.65944356904519086, -0.013962634015954637) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LELC.TXT + +[lell] +description = Sabadell, Spain +location = (0.72460252778631251, 0.036651914291880923) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LELL.TXT + +[leln] +description = Leon / Virgen Del Camino, Spain +location = (0.74321937314091868, -0.098611102737679632) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LELN.TXT + +[lelo] +description = Logrono / Agoncillo, Spain +location = (0.74089226747159298, -0.040724349213201026) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LELO.TXT + +[lemd] +description = Madrid / Barajas, Spain +location = (0.70598568243170634, -0.061959188445798695) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LEMD.TXT + +[lemg] +description = Malaga / Aeropuerto, Spain +location = (0.63995405906458747, -0.078248928131079115) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LEMG.TXT + +[lemh] +description = Menorca / Mahon, Spain +location = (0.69580459512840609, 0.073885605001093285) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LEMH.TXT + +[lemo] +description = Moron De La Frontera, Spain +location = (0.64838981711589339, -0.098029326320348179) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LEMO.TXT + +[lepa] +description = Palma De Mallorca / Son San Juan, Spain +location = (0.69027771916375724, 0.04770566622117834) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LEPA.TXT + +[lepp] +description = Pamplona / Noain, Spain +location = (0.74641914343624161, -0.028507044449240716) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LEPP.TXT + +[leri] +description = Murcia / Alcantarilla, Spain +location = (0.66235245113184815, -0.021525727441263399) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LERI.TXT + +[lers] +description = Reus / Aeropuerto, Spain +location = (0.71820298719566655, 0.020362174606600513) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LERS.TXT + +[lert] +description = Rota, Spain +location = (0.63966317085592173, -0.11082840750163991) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LERT.TXT + +[lesa] +description = Salamanca / Matacan, Spain +location = (0.714712328691678, -0.09599310885968812) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LESA.TXT + +[leso] +description = San Sebastian / Fuenterrabia, Spain +location = (0.75660023073954186, -0.031415926535897934) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LESO.TXT + +[lest] +description = Santiago / Labacolla, Spain +location = (0.74874624910556731, -0.14718943358485512) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LEST.TXT + +[leto] +description = Madrid / Torrejon, Spain +location = (0.70656745884903771, -0.06021385919380437) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LETO.TXT + +[levc] +description = Valencia / Aeropuerto, Spain +location = (0.68940505453776013, -0.0081448698426402049) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LEVC.TXT + +[levd] +description = Valladolid / Villanubla, Spain +location = (0.72809318629030118, -0.084648468721724976) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LEVD.TXT + +[levs] +description = Madrid / Cuatro Vientos, Spain +location = (0.70482212959704338, -0.066031623367118805) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LEVS.TXT + +[levt] +description = Vitoria, Spain +location = (0.74845536089690168, -0.047414778012512621) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LEVT.TXT + +[levx] +description = Vigo / Peinador, Spain +location = (0.73681983255027284, -0.15068009208884378) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LEVX.TXT + +[lexj] +description = Santander / Parayas, Spain +location = (0.75805467178287045, -0.066613399784450245) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LEXJ.TXT + +[lezg] +description = Zaragoza / Aeropuerto, Spain +location = (0.72722052166430395, -0.017744180728609015) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LEZG.TXT + +[lezl] +description = Sevilla / San Pablo, Spain +location = (0.6530440284545449, -0.10297442586766545) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LEZL.TXT + +[lfaq] +description = Bray, FR +location = (0.8721410272215665, 0.047123889803846901) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFAQ.TXT + +[lfba] +description = Agen, France +location = (0.77114464117282788, 0.010471975511965976) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFBA.TXT + +[lfbc] +description = Cazaux, France +location = (0.7772532935548081, -0.019780398189269067) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFBC.TXT + +[lfbd] +description = Bordeaux / Merignac, France +location = (0.7824892813107911, -0.012217304763960306) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFBD.TXT + +[lfbe] +description = Bergerac, France +location = (0.78219839310212547, 0.0090175344686373709) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFBE.TXT + +[lfbg] +description = Cognac, France +location = (0.79703369174407712, -0.0055268759646487104) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFBG.TXT + +[lfbh] +description = La Rochelle, France +location = (0.80546944979538304, -0.02007128639793479) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFBH.TXT + +[lfbi] +description = Poitiers, France +location = (0.81303254322069185, 0.0055268759646487104) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFBI.TXT + +[lfbl] +description = Limoges, France +location = (0.80052435024806579, 0.020653062815266233) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFBL.TXT + +[lfbm] +description = Mont-De-Marsan, France +location = (0.76649042983417637, -0.0087266462599716477) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFBM.TXT + +[lfbo] +description = Toulouse / Blagnac, France +location = (0.76154533028685911, 0.02385283311058917) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFBO.TXT + +[lfbp] +description = Pau, France +location = (0.75718200715687334, -0.0072722052166430398) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFBP.TXT + +[lfbt] +description = Tarbes Ossun Lourdes, France +location = (0.75369134865288456, -0.0) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFBT.TXT + +[lfbu] +description = Brie Champniers, FR +location = (0.79796453401180745, 0.0038397243543875251) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFBU.TXT + +[lfby] +description = Dax, France +location = (0.76241799491285622, -0.018616845354606181) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFBY.TXT + +[lfbz] +description = Biarritz, France +location = (0.75863644820020193, -0.026761715197246384) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFBZ.TXT + +[lfcr] +description = Rodez, France +location = (0.77492618788548229, 0.043342343091192517) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFCR.TXT + +[lfdh] +description = Auch, France +location = (0.76241799491285622, 0.010471975511965976) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFDH.TXT + +[lfgj] +description = Dole Tavaux, France +location = (0.82105136150624358, 0.094858644845891821) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFGJ.TXT + +[lfhp] +description = Le Puy, France +location = (0.78685260444077698, 0.065740735158453079) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFHP.TXT + +[lfjl] +description = Metz-Nancy-Lorraine, France +location = (0.85492044526855582, 0.1090830782496456) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFJL.TXT + +[lfjr] +description = Marce, FR +location = (0.83025312517370253, -0.0055850536063818549) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFJR.TXT + +[lfkb] +description = Bastia, France +location = (0.7426375967235872, 0.16551539073079558) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFKB.TXT + +[lfkc] +description = Calvi, France +location = (0.74234670851492146, 0.15358897417550102) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFKC.TXT + +[lfkf] +description = Figari, France +location = (0.72431163957764677, 0.15882496193148399) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFKF.TXT + +[lfkj] +description = Ajaccio, France +location = (0.73158384479428973, 0.15358897417550102) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFKJ.TXT + +[lfks] +description = Solenzara, France +location = (0.73158384479428973, 0.16406094968746698) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFKS.TXT + +[lflb] +description = Chambery / Aix-Les-Bains, France +location = (0.79674280353541138, 0.10268353765899971) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFLB.TXT + +[lflc] +description = Clermont-Ferrand, France +location = (0.79906990920473719, 0.055268759646487101) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFLC.TXT + +[lfld] +description = Bourges, France +location = (0.82146830127199788, 0.041306125630532466) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFLD.TXT + +[lfll] +description = Lyon / Satolas, France +location = (0.79819724457874008, 0.088720903643045079) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFLL.TXT + +[lflm] +description = Macon, France +location = (0.80808744367337448, 0.08377580409572781) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFLM.TXT + +[lfln] +description = Saint-Yan, France +location = (0.81012366113403456, 0.070104058288438909) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFLN.TXT + +[lflp] +description = Annecy/Meythet, FR +location = (0.80162972544099553, 0.1064650843716541) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFLP.TXT + +[lflq] +description = Montelimar, France +location = (0.77812595818080532, 0.082612251261064931) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFLQ.TXT + +[lfls] +description = Grenoble / St. Geoirs, France +location = (0.79179770398809413, 0.093084226773030909) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFLS.TXT + +[lflv] +description = Vichy, France +location = (0.80576033800404878, 0.059341194567807204) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFLV.TXT + +[lflw] +description = Aurillac, France +location = (0.78365283414545395, 0.042178790256529632) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFLW.TXT + +[lflx] +description = Chateauroux, France +location = (0.81768675455934337, 0.029961485492569325) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFLX.TXT + +[lfly] +description = Lyon / Bron, France +location = (0.79790635637007434, 0.086393797973719322) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFLY.TXT + +[lfmc] +description = Le Luc, France +location = (0.75718200715687334, 0.11141018391897138) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFMC.TXT + +[lfmd] +description = Cannes, France +location = (0.76009088924353052, 0.12130038301360591) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFMD.TXT + +[lfmh] +description = St-Etienne Boutheon, France +location = (0.79470658607475131, 0.075049157835756164) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFMH.TXT + +[lfmi] +description = Istres, France +location = (0.75950911282619904, 0.086102909765053595) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFMI.TXT + +[lfmk] +description = Carcassonne, France +location = (0.75427312507021615, 0.0404334610045353) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFMK.TXT + +[lfml] +description = Marseille / Marignane, France +location = (0.75834555999153619, 0.091338897521036577) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFML.TXT + +[lfmn] +description = Nice, France +location = (0.76183621849552485, 0.12566370614359174) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFMN.TXT + +[lfmo] +description = Orange, France +location = (0.77027197654683077, 0.084357580513059263) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFMO.TXT + +[lfmp] +description = Perpignan, France +location = (0.74583736701891012, 0.050032771890504112) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFMP.TXT + +[lfmt] +description = Montpellier, France +location = (0.760672665660862, 0.069231393662441743) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFMT.TXT + +[lfmu] +description = Beziers / Vias, France +location = (0.75601845432221049, 0.058468529941810038) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFMU.TXT + +[lfmv] +description = Avignon-Coumant, FR +location = (0.76619954162551063, 0.085521133347722156) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFMV.TXT + +[lfmy] +description = Salon, France +location = (0.76096355386952774, 0.089011791851710806) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFMY.TXT + +[lfoa] +description = Avord, France +location = (0.82123559070506513, 0.045945792558750725) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFOA.TXT + +[lfob] +description = Beauvais, France +location = (0.86335620331986174, 0.036942802500546643) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFOB.TXT + +[lfoc] +description = Chateaudun, France +location = (0.83863070558327535, 0.024143721319254893) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFOC.TXT + +[lfoe] +description = Evreux, France +location = (0.85550222168588719, 0.021234839232597679) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFOE.TXT + +[lfoh] +description = La Heve, France +location = (0.86422886794585885, 0.0011635528346628863) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFOH.TXT + +[lfoj] +description = Orleans, France +location = (0.8374671527486125, 0.030543261909900768) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFOJ.TXT + +[lfok] +description = Chalons-Vatry, France +location = (0.85130373520747871, 0.073032332922340515) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFOK.TXT + +[lfop] +description = Rouen, France +location = (0.86190176227653303, 0.020653062815266233) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFOP.TXT + +[lfor] +description = Chartres, France +location = (0.84590291079991842, 0.026470826988580665) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFOR.TXT + +[lfot] +description = Tours, France +location = (0.82815873007130947, 0.012508192972626028) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFOT.TXT + +[lfpb] +description = Paris / Le Bourget, France +location = (0.85462955705989008, 0.042760566673861078) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFPB.TXT + +[lfpc] +description = Creil Fafb, France +location = (0.85957465660720733, 0.043924119508523957) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFPC.TXT + +[lfpg] +description = Paris-Aeroport Charles De Gaulle, France +location = (0.85550222168588719, 0.044215007717189683) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFPG.TXT + +[lfpm] +description = Melun, France +location = (0.84852090467790986, 0.046833001595181181) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFPM.TXT + +[lfpn] +description = Toussus Le Noble, France +location = (0.85113889855590141, 0.019198621771937627) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFPN.TXT + +[lfpo] +description = Paris-Orly, France +location = (0.85055712213856993, 0.041887902047863905) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFPO.TXT + +[lfpt] +description = Cormeilles Vexin, FR +location = (0.85695666272921578, 0.035430183815484885) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFPT.TXT + +[lfpv] +description = Villacoublay, France +location = (0.85113889855590141, 0.038397243543875255) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFPV.TXT + +[lfqb] +description = Troyes, France +location = (0.8435758051305926, 0.070104058288438909) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFQB.TXT + +[lfqg] +description = Nevers, France +location = (0.82030474843733492, 0.054105206811824215) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFQG.TXT + +[lfqi] +description = Cambrai, France +location = (0.87644617270981917, 0.054977871437821381) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFQI.TXT + +[lfqq] +description = Lille, France +location = (0.88255482509179939, 0.054105206811824215) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFQQ.TXT + +[lfrb] +description = Brest, France +location = (0.84561202259125268, -0.077085375296416223) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFRB.TXT + +[lfrc] +description = Cherbourg / Maupertus, France +location = (0.86655597361518455, -0.025598162362583502) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFRC.TXT + +[lfrd] +description = Dinard, France +location = (0.84793912826057849, -0.036070137874549484) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFRD.TXT + +[lfrg] +description = Deauville/St Gatien, FR +location = (0.8616690517096004, 0.0029670597283903604) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFRG.TXT + +[lfrh] +description = Lann Bihoue, France +location = (0.83368560603595809, -0.06021385919380437) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFRH.TXT + +[lfri] +description = La Roche-Sur-Yon, France +location = (0.81506876068135192, -0.024143721319254893) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFRI.TXT + +[lfrj] +description = Landivisiau, France +location = (0.84677557542591553, -0.07243116395776468) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFRJ.TXT + +[lfrk] +description = Caen, France +location = (0.85841110377254437, -0.0078539816339744835) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFRK.TXT + +[lfrl] +description = Lanveoc Poulmic, France +location = (0.84270314050459538, -0.077376263505081949) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFRL.TXT + +[lfrm] +description = Le Mans, France +location = (0.83659448812261528, 0.0034906585039886592) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFRM.TXT + +[lfrn] +description = Rennes, France +location = (0.83892159379194109, -0.030252373701235045) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFRN.TXT + +[lfro] +description = Lannion / Servel, France +location = (0.85084801034723567, -0.06050474740247009) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFRO.TXT + +[lfrq] +description = Quimper, France +location = (0.83717626453994676, -0.072722052166430406) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFRQ.TXT + +[lfrs] +description = Nantes, France +location = (0.8232136305239921, -0.027925268031909273) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFRS.TXT + +[lfrt] +description = Saint-Brieuc, France +location = (0.84706646363458127, -0.049741883681838392) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFRT.TXT + +[lfrz] +description = St-Nazaire, France +location = (0.82583162440198365, -0.037815467126543802) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFRZ.TXT + +[lfsb] +description = Bale-Mulhouse, France +location = (0.83077672394930091, 0.13119058210824044) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFSB.TXT + +[lfsd] +description = Dijon, France +location = (0.82495895977598643, 0.088720903643045079) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFSD.TXT + +[lfsf] +description = Metz / Frescaty, France +location = (0.85666577452055015, 0.10704686078898555) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFSF.TXT + +[lfsi] +description = St-Dizier, France +location = (0.8488117928865756, 0.085521133347722156) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFSI.TXT + +[lfsl] +description = Toul / Rosieres, France +location = (0.85142978676456704, 0.095702220651022407) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFSL.TXT + +[lfso] +description = Nancy / Ochey, France +location = (0.84793912826057849, 0.10413797870232833) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFSO.TXT + +[lfst] +description = Strasbourg, France +location = (0.8473573518432469, 0.13322679956890049) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFST.TXT + +[lfsx] +description = Luxeuil, France +location = (0.83397649424462372, 0.11082840750163991) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFSX.TXT + +[lfth] +description = Hyeres, France +location = (0.75223690760955608, 0.10733774899765128) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFTH.TXT + +[lftw] +description = Nimes / Garons, France +location = (0.76358154774751918, 0.077085375296416223) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFTW.TXT + +[lfvp] +description = Saint-Pierre, Saint Pierre And Miquelon +location = (0.81623231351601477, -0.98029326320348176) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFVP.TXT + +[lfxa] +description = Amberieu, France +location = (0.80256056770872586, 0.093084226773030909) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFXA.TXT + +[lfyr] +description = Romorantin, France +location = (0.82583162440198365, 0.029379709075237882) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LFYR.TXT + +[lgad] +description = Andravida Airport, Greece +location = (0.66177067471451656, 0.37146424246612653) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LGAD.TXT + +[lgal] +description = Alexandroupoli Airport, Greece +location = (0.71296699943968367, 0.45233116447519711) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LGAL.TXT + +[lgav] +description = Athens Eleftherios Venizelos International Airport, Greece +location = (0.6620615629231823, 0.41771546764397621) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LGAV.TXT + +[lgbl] +description = Anchialos Airport, Greece +location = (0.68445995499044299, 0.39793506945470714) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LGBL.TXT + +[lgel] +description = Elefsis Airport, Greece +location = (0.66438866859250822, 0.41102503884466463) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LGEL.TXT + +[lghi] +description = Chios Airport, Greece +location = (0.66904287993115974, 0.45611271118785146) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LGHI.TXT + +[lgio] +description = Ioannina, GR +location = (0.69289571304174891, 0.3633775502652194) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LGIO.TXT + +[lgir] +description = Heraklion Airport, Greece +location = (0.61668300237132978, 0.43953208329390531) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LGIR.TXT + +[lgkc] +description = Kithira Airport, Greece +location = (0.63336544113830895, 0.4018329714508278) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LGKC.TXT + +[lgkf] +description = Kefalhnia Airport, Greece +location = (0.66526133321850534, 0.35779249665883756) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LGKF.TXT + +[lgkl] +description = Kalamata Airport, Greece +location = (0.6469353760725649, 0.38426332364741822) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LGKL.TXT + +[lgko] +description = Kos Airport, Greece +location = (0.64199027652524754, 0.47240245087313187) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LGKO.TXT + +[lgkp] +description = Karpathos Airport, Greece +location = (0.61809381018335852, 0.47382780309559391) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LGKP.TXT + +[lgkr] +description = Kerkyra Airport, Greece +location = (0.6914412719984202, 0.3476114093555373) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LGKR.TXT + +[lgkv] +description = Chrysoupoli Airport, Greece +location = (0.71529410510900937, 0.42935099599060511) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LGKV.TXT + +[lgkz] +description = Kozani Airport, Greece +location = (0.70336768855371479, 0.38019088872609813) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LGKZ.TXT + +[lglm] +description = Limnos Airport, Greece +location = (0.6966772597544032, 0.44040474791990253) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LGLM.TXT + +[lglr] +description = Larissa Airport, Greece +location = (0.69173216020708594, 0.39124464065539555) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LGLR.TXT + +[lgmk] +description = Mikonos Island, Mikonos Airport, Greece +location = (0.6533785498945105, 0.44236824332839608) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LGMK.TXT + +[lgmt] +description = Mytilini Airport, Greece +location = (0.68184196111245143, 0.4642575810304917) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LGMT.TXT + +[lgnx] +description = Cyclades Islands, Naxos Airport, Greece +location = (0.64716323850268631, 0.44273670172603941) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LGNX.TXT + +[lgpa] +description = Paros Community Airport, Greece +location = (0.64596574871034573, 0.43852367083719751) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LGPA.TXT + +[lgpz] +description = Aktion Airport, Greece +location = (0.67398797947847688, 0.36244670799748907) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LGPZ.TXT + +[lgrp] +description = Rhodes Airport, Greece +location = (0.63529984772593595, 0.49014663160174088) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LGRP.TXT + +[lgrx] +description = Araxos Airport, Greece +location = (0.66584310963583671, 0.37379134813545228) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LGRX.TXT + +[lgsa] +description = Souda Airport, Greece +location = (0.61930099624932133, 0.42091523793929914) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LGSA.TXT + +[lgsk] +description = Skiathos Island, Greece +location = (0.68387817857311139, 0.41015237421866746) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LGSK.TXT + +[lgsm] +description = Samos Airport, Greece +location = (0.65798912800186227, 0.46978445699514038) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LGSM.TXT + +[lgso] +description = Syros Airport, Greece +location = (0.65312159864352248, 0.43543055955171867) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LGSO.TXT + +[lgsr] +description = Santorini Island, Greece +location = (0.63529984772593595, 0.4447680710498883) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LGSR.TXT + +[lgsy] +description = Skiros, GR +location = (0.68015480950219021, 0.42725660088821188) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LGSY.TXT + +[lgtg] +description = Tanagra Airport, Greece +location = (0.668751991722494, 0.41073415063599894) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LGTG.TXT + +[lgts] +description = Thessaloniki Airport, Greece +location = (0.70714923526636919, 0.40084395154136432) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LGTS.TXT + +[lgza] +description = Zakinthos Airport, Greece +location = (0.65886179262785938, 0.36448292545814914) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LGZA.TXT + +[lhbc] +description = Bekescsaba, Hungary +location = (0.81477787247268607, 0.36942802500546645) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LHBC.TXT + +[lhbp] +description = Budapest / Ferihegy, Hungary +location = (0.82786784186264362, 0.33626676921757415) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LHBP.TXT + +[lhdc] +description = Debrecen, Hungary +location = (0.82874050648864084, 0.37699111843077521) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LHDC.TXT + +[lhke] +description = Kecskemet, Hungary +location = (0.81885030739400622, 0.34470252726888007) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LHKE.TXT + +[lhpa] +description = Papa, Hungary +location = (0.82379540694132358, 0.30543261909900765) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LHPA.TXT + +[lhpp] +description = Pecs / Pogany, Hungary +location = (0.80459678516938593, 0.31823170028029946) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LHPP.TXT + +[lhpr] +description = Gyor, HU +location = (0.83112578979969964, 0.3103195410045918) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LHPR.TXT + +[lhsm] +description = Balaton, HU +location = (0.81471969483095308, 0.29932396671702749) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LHSM.TXT + +[lhsn] +description = Szolnok, Hungary +location = (0.82234096589799499, 0.35313828532018604) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LHSN.TXT + +[lhud] +description = Szeged, Hungary +location = (0.80721477904737737, 0.35081117965086028) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LHUD.TXT + +[liba] +description = Amendola, Italy +location = (0.72489341599497814, 0.27430758077177547) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LIBA.TXT + +[libc] +description = Crotone, Italy +location = (0.68067840827778847, 0.2978695256736989) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LIBC.TXT + +[libd] +description = Bari / Palese Macchie, Italy +location = (0.71791209898700092, 0.2929244261263817) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LIBD.TXT + +[libf] +description = Gina Lisa, IT +location = (0.72308990910125071, 0.27104963283471939) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LIBF.TXT + +[libg] +description = Grottaglie, Italy +location = (0.70714923526636919, 0.30368728984701332) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LIBG.TXT + +[libh] +description = Marina Di Ginosa, Italy +location = (0.70569479422304049, 0.29466975537837597) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LIBH.TXT + +[libn] +description = Lecce, Italy +location = (0.70220413571905194, 0.31677725923697081) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LIBN.TXT + +[libp] +description = Pescara, Italy +location = (0.74060137926292713, 0.24783675378319478) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LIBP.TXT + +[libq] +description = Monte Scuro, Italy +location = (0.68649617245110295, 0.28623399732707) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LIBQ.TXT + +[libr] +description = Brindisi, Italy +location = (0.70947634093569489, 0.31328660073298215) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LIBR.TXT + +[libt] +description = Termoli, Italy +location = (0.73303828583761843, 0.26179938779914941) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LIBT.TXT + +[libv] +description = Gioia Del Colle, Italy +location = (0.71151255839635497, 0.29554242000437314) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LIBV.TXT + +[liby] +description = S. Maria Di Leuca, Italy +location = (0.69493193050240898, 0.32026791774095947) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LIBY.TXT + +[lica] +description = Lamezia Terme, Italy +location = (0.67893307902579414, 0.28361600344907856) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LICA.TXT + +[licc] +description = Catania / Fontanarossa, Italy +location = (0.65391669308054212, 0.26267205242514663) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LICC.TXT + +[licd] +description = Lampedusa, Italy +location = (0.61959188445798696, 0.21991148575128552) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LICD.TXT + +[licf] +description = Messina, Italy +location = (0.66671577426183393, 0.27139869868511823) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LICF.TXT + +[licg] +description = Pantelleria, Italy +location = (0.64257205294257902, 0.20885773382198811) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LICG.TXT + +[licj] +description = Palermo / Punta Raisi, Italy +location = (0.66642488605316808, 0.22863813201125716) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LICJ.TXT + +[licl] +description = Gela, Italy +location = (0.64722626428123053, 0.24812764199186052) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LICL.TXT + +[licr] +description = Reggio Calabria, Italy +location = (0.66438866859250822, 0.27314402793711257) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LICR.TXT + +[lict] +description = Trapani / Birgi, Italy +location = (0.66177067471451656, 0.21816615649929119) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LICT.TXT + +[licz] +description = Catania / Sigonella, Italy +location = (0.65275314024587927, 0.26034494675582082) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LICZ.TXT + +[liea] +description = Alghero, Italy +location = (0.70918545272702926, 0.14457143970686362) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LIEA.TXT + +[lieb] +description = Capo Bellavista, Italy +location = (0.69696814796306883, 0.16958782565211569) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LIEB.TXT + +[liec] +description = Capo Carbonara, Italy +location = (0.68242373752978291, 0.16609716714812706) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LIEC.TXT + +[lied] +description = Decimomannu, Italy +location = (0.68678706065976869, 0.15649785626215823) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LIED.TXT + +[liee] +description = Cagliari / Elmas, Italy +location = (0.68504173140777436, 0.15824318551415253) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LIEE.TXT + +[lieo] +description = Olbia / Costa Smeralda, Italy +location = (0.71383966406568078, 0.16609716714812706) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LIEO.TXT + +[lima] +description = Aeritalia-Torino, IT +location = (0.78679442679904377, 0.13264502315156904) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LIMA.TXT + +[limc] +description = Milano / Malpensa, Italy +location = (0.79616102711808001, 0.15242542134083811) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LIMC.TXT + +[lime] +description = Bergamo / Orio Al Serio, Italy +location = (0.79703369174407712, 0.16929693744344995) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LIME.TXT + +[limf] +description = Torino / Caselle, Italy +location = (0.78917971011010268, 0.13351768777756623) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LIMF.TXT + +[limg] +description = Albenga, Italy +location = (0.76881753550350207, 0.14166255762020644) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LIMG.TXT + +[limh] +description = Pian Rosa, Italy +location = (0.80168790308272864, 0.13439035240356337) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LIMH.TXT + +[limj] +description = Genova / Sestri, Italy +location = (0.77521707609414803, 0.15446163880149816) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LIMJ.TXT + +[limk] +description = Torino / Bric Della Croce, Italy +location = (0.78597993981477976, 0.13497212882089482) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LIMK.TXT + +[liml] +description = Milano / Linate, Italy +location = (0.79296125682275698, 0.16202473222680691) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LIML.TXT + +[limn] +description = Novara / Cameri, Italy +location = (0.79441569786608568, 0.15126186850617521) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LIMN.TXT + +[limp] +description = Parma, Italy +location = (0.78228081142791406, 0.17967679835600511) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LIMP.TXT + +[lims] +description = Piacenza, Italy +location = (0.78394372235411969, 0.16987871386078141) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LIMS.TXT + +[limt] +description = Passo Della Cisa, Italy +location = (0.77550796430281366, 0.17336937236477007) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LIMT.TXT + +[limu] +description = Capo Mele, Italy +location = (0.76707220625150785, 0.14253522224620357) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LIMU.TXT + +[limv] +description = Passo Dei Giovi, Italy +location = (0.77899862280680243, 0.15591607984482678) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LIMV.TXT + +[limy] +description = Monte Malanotte, Italy +location = (0.77230819400749084, 0.1361356816555577) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LIMY.TXT + +[limz] +description = Cuneo / Levaldigi, Italy +location = (0.77748115598492951, 0.13303287409645667) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LIMZ.TXT + +[lipa] +description = Aviano, Italy +location = (0.80343323233472297, 0.21991148575128552) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LIPA.TXT + +[lipb] +description = Bolzano, Italy +location = (0.81099632576003178, 0.19780398189269069) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LIPB.TXT + +[lipc] +description = Cervia, Italy +location = (0.77172641759015936, 0.21467549799530256) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LIPC.TXT + +[lipe] +description = Bologna / Borgo Panigale, Italy +location = (0.7772532935548081, 0.19722220547535926) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LIPE.TXT + +[lipf] +description = Ferrara, Italy +location = (0.7824892813107911, 0.20274908144000794) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LIPF.TXT + +[liph] +description = Treviso / S. Angelo, Italy +location = (0.79674280353541138, 0.21263928053464248) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LIPH.TXT + +[lipi] +description = Udine / Rivolto, Italy +location = (0.80256056770872586, 0.22747457917659428) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LIPI.TXT + +[lipk] +description = Forli, Italy +location = (0.77143552938149373, 0.21060306307398244) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LIPK.TXT + +[lipl] +description = Brescia / Ghedi, Italy +location = (0.79267036861409135, 0.17947802474675023) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LIPL.TXT + +[lipo] +description = Brescia / Montichia, Italy +location = (0.79238917667904785, 0.18005495302727059) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LIPO.TXT + +[lipq] +description = Ronchi Dei Legionari, Italy +location = (0.79965168562206868, 0.23532856081056874) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LIPQ.TXT + +[lipr] +description = Rimini, Italy +location = (0.76852664729483644, 0.22020237395995126) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LIPR.TXT + +[lips] +description = Treviso / Istrana, Italy +location = (0.79732457995274286, 0.21118483949131386) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LIPS.TXT + +[lipu] +description = Padova (Civ/It-Afb), IY +location = (0.79237948040542561, 0.20682151636132803) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LIPU.TXT + +[lipx] +description = Verona / Villafranca, Italy +location = (0.79208859219675987, 0.18965911205005048) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LIPX.TXT + +[lipy] +description = Falconara, Italy +location = (0.76125444207819337, 0.23329234334990873) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LIPY.TXT + +[lipz] +description = Venezia / Tessera, Italy +location = (0.79412480965741994, 0.21525727441263398) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LIPZ.TXT + +[liqc] +description = Capri, Italy +location = (0.70773101168370056, 0.24783675378319478) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LIQC.TXT + +[liqn] +description = Rieti, Italy +location = (0.74031049105426139, 0.22427480888127135) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LIQN.TXT + +[liqo] +description = Monte Argentario, Italy +location = (0.73972871463693002, 0.19489509980603345) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LIQO.TXT + +[liqw] +description = Sarzana / Luni, Italy +location = (0.76939931192083366, 0.17424203699076721) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LIQW.TXT + +[lira] +description = Roma / Ciampino, Italy +location = (0.72925673912496403, 0.21962059754261981) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LIRA.TXT + +[lire] +description = Pratica Di Mare, Italy +location = (0.72692963345563821, 0.21729349187329403) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LIRE.TXT + +[lirf] +description = Roma Fiumicino, Italy +location = (0.72954762733362966, 0.21351194516063962) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LIRF.TXT + +[lirg] +description = Guidonia, Italy +location = (0.73303828583761843, 0.22223859142061128) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LIRG.TXT + +[lirh] +description = Frosinone, Italy +location = (0.72663874524697247, 0.23212879051524585) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LIRH.TXT + +[liri] +description = Pontecagnano Air Force Base, Italy +location = (0.70889456451836352, 0.26034494675582082) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LIRI.TXT + +[lirk] +description = Monte Terminillo, Italy +location = (0.74118315568025861, 0.22660191455059711) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LIRK.TXT + +[lirl] +description = Latina, Italy +location = (0.72518430420364388, 0.22514747350726852) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LIRL.TXT + +[lirm] +description = Grazzanise, Italy +location = (0.71645765794367222, 0.24550964811386902) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LIRM.TXT + +[lirn] +description = Napoli / Capodichino, Italy +location = (0.71296699943968367, 0.24958208303518914) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LIRN.TXT + +[lirp] +description = Pisa / S. Giusto, Italy +location = (0.76241799491285622, 0.18122335399874454) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LIRP.TXT + +[lirq] +description = Firenze / Peretola, Italy +location = (0.7644542123735163, 0.1954768762233649) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LIRQ.TXT + +[lirs] +description = Grosseto, Italy +location = (0.74612825522757587, 0.19314977055403915) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LIRS.TXT + +[lirt] +description = Trevico, Italy +location = (0.71645765794367222, 0.2658718227204695) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LIRT.TXT + +[liru] +description = Roma / Urbe, Italy +location = (0.73216562121162132, 0.21816615649929119) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LIRU.TXT + +[lirv] +description = Viterbo, Italy +location = (0.74060137926292713, 0.21031217486531673) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LIRV.TXT + +[lirx] +description = Monte Calamita, IY +location = (0.74577918937717691, 0.18151424220741028) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LIRX.TXT + +[lirz] +description = Perugia, Italy +location = (0.75194601940089034, 0.21816615649929119) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LIRZ.TXT + +[livc] +description = Monte Cimone, Italy +location = (0.77143552938149373, 0.18675022996339324) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LIVC.TXT + +[livd] +description = Dobbiaco, Italy +location = (0.8156505370986834, 0.21322105695197394) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LIVD.TXT + +[live] +description = Resia Pass, Italy +location = (0.81739586635067774, 0.18325957145940461) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LIVE.TXT + +[livf] +description = Frontone, Italy +location = (0.75950911282619904, 0.22223859142061128) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LIVF.TXT + +[livm] +description = Punta Marina, Italy +location = (0.77579885251147951, 0.21467549799530256) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LIVM.TXT + +[livo] +description = Tarvisio, Italy +location = (0.81157810217736326, 0.2370738900625631) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LIVO.TXT + +[livp] +description = Paganella, Italy +location = (0.80546944979538304, 0.19256799413670769) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LIVP.TXT + +[livr] +description = Passo Rolle, Italy +location = (0.80808744367337448, 0.20565796352666516) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LIVR.TXT + +[livt] +description = Trieste, Italy +location = (0.79674280353541138, 0.23998277214922031) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LIVT.TXT + +[liyw] +description = Aviano Usaf, Italy +location = (0.80343323233472297, 0.22020237395995126) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LIYW.TXT + +[ljce] +description = Cerklje, LJ +location = (0.80093159374019784, 0.27087509990951991) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LJCE.TXT + +[ljlj] +description = Ljubljana / Brnik, Slovenia +location = (0.806633002630046, 0.25278185333051206) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LJLJ.TXT + +[ljmb] +description = Maribor / Slivnica, Slovenia +location = (0.81128721396869752, 0.27372580435444405) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LJMB.TXT + +[ljpz] +description = Portoroz, Slovenia +location = (0.79441569786608568, 0.23678300185389736) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LJPZ.TXT + +[lkcv] +description = Caslav, CZ +location = (0.8714428955207687, 0.26843163895672789) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LKCV.TXT + +[lkkb] +description = Kbely, CZ +location = (0.87475902109955794, 0.25359634031477607) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LKKB.TXT + +[lkku] +description = Kunovice, Czech Republic +location = (0.85572523597919758, 0.304380573411) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LKKU.TXT + +[lkkv] +description = Karlovy Vary, Czech Republic +location = (0.87615528450115343, 0.22543836171593423) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LKKV.TXT + +[lklb] +description = Liberec, Czech Republic +location = (0.88607457241665455, 0.26223572011214802) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LKLB.TXT + +[lkln] +description = Plzen Line, CZ +location = (0.8555603993276204, 0.23160519173964753) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LKLN.TXT + +[lkmt] +description = Ostrava / Mosnov, Czech Republic +location = (0.86713775003251603, 0.31619548281963938) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LKMT.TXT + +[lkna] +description = Namest Nad Oslavou, CZ +location = (0.85817839320561184, 0.28152160834668533) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LKNA.TXT + +[lkpd] +description = Pardubice, CZ +location = (0.87301369184756372, 0.27454029133870805) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LKPD.TXT + +[lkpo] +description = Prerov, CZ +location = (0.86271624926079704, 0.30368728984701332) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LKPO.TXT + +[lkpr] +description = Praha / Ruzyne, Czech Republic +location = (0.8744099552491591, 0.24870941840919197) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LKPR.TXT + +[lktb] +description = Brno / Turany, Czech Republic +location = (0.857829327355213, 0.291469985083053) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LKTB.TXT + +[llbg] +description = Ben-Gurion International Airport, Israel +location = (0.55850536063818546, 0.60911990894602097) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LLBG.TXT + +[llet] +description = Eilat, Israel +location = (0.51574479396432438, 0.60999257357201819) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LLET.TXT + +[llha] +description = Sde-Haifa Haifa, Israel +location = (0.57246799465414, 0.61144701461534678) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LLHA.TXT + +[llib] +description = Galilee / Pina, Israel +location = (0.57560958730772993, 0.62081361493438303) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LLIB.TXT + +[llov] +description = Ovda, Israel +location = (0.52359877559829882, 0.60795635611135812) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LLOV.TXT + +[llsd] +description = Tel Aviv / Sde-Dov Airport, Israel +location = (0.56050764114116791, 0.60706429893811664) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LLSD.TXT + +[lmml] +description = Luqa, Malta +location = (0.62570053683996718, 0.25278185333051206) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LMML.TXT + +[loan] +description = Niederosterreich / Wiener Neustadt-Ost Flugplatz, Austria +location = (0.83502369179582037, 0.28375659941660031) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LOAN.TXT + +[loav] +description = Niederosterreich / Lugplatz Voslau, Austria +location = (0.83713747944545802, 0.2837808401006558) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LOAV.TXT + +[loih] +description = Hohenems-Dornbirn, Austria +location = (0.82701941792070199, 0.16930663371707214) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LOIH.TXT + +[lowg] +description = Graz-Thalerhof-Flughafen, Austria +location = (0.82030474843733492, 0.26936248122445822) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LOWG.TXT + +[lowi] +description = Innsbruck-Flughafen, Austria +location = (0.82495895977598643, 0.1980948701013564) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LOWI.TXT + +[lowk] +description = Klagenfurt-Flughafen, Austria +location = (0.8141960960553547, 0.25016385945252056) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LOWK.TXT + +[lowl] +description = Linz / Hoersching-Flughafen, Austria +location = (0.84183047587859827, 0.24754586557452907) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LOWL.TXT + +[lows] +description = Salzburg-Flughafen, Austria +location = (0.83426738245328946, 0.22689280275926285) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LOWS.TXT + +[loww] +description = Wien / Schwechat-Flughafen, Austria +location = (0.8397942584179382, 0.28914287941372724) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LOWW.TXT + +[lowz] +description = Zell Am See, Austria +location = (0.82540983649941824, 0.22318397809877488) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LOWZ.TXT + +[loxa] +description = Aigen Im Ennstal, Austria +location = (0.82961317111463795, 0.2466732009485319) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LOXA.TXT + +[loxn] +description = Wiener Neustadt, OS +location = (0.83514004707928668, 0.28361600344907856) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LOXN.TXT + +[loxt] +description = Tulln, Austria +location = (0.84328491692192697, 0.2812888977797528) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LOXT.TXT + +[loxz] +description = Zeltweg, Austria +location = (0.82379540694132358, 0.25743606466916363) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LOXZ.TXT + +[lpar] +description = Alverca, PO +location = (0.67858401317539541, -0.15760323145508795) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LPAR.TXT + +[lpaz] +description = Santa Maria Acores, Portugal +location = (0.64519004682057057, -0.43924119508523962) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LPAZ.TXT + +[lpbj] +description = Beja, Portugal +location = (0.66351600396651089, -0.13729923449022061) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LPBJ.TXT + +[lpfl] +description = Flores Acores, Portugal +location = (0.68853238991176302, -0.54337917378756795) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LPFL.TXT + +[lpfr] +description = Faro / Aeroporto, Portugal +location = (0.64606271144656768, -0.13904456374221491) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LPFR.TXT + +[lphr] +description = Horta / Castelo Branco Acores, Portugal +location = (0.67224265022648255, -0.50120038353103824) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LPHR.TXT + +[lpla] +description = Lajes Acores, Portugal +location = (0.67660597335646844, -0.47298422729046335) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LPLA.TXT + +[lpma] +description = Aeroporto Da Madeira, Portugal +location = (0.57068388030765693, -0.29276928574842659) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LPMA.TXT + +[lpmr] +description = Monte Real Mil., Portugal +location = (0.69518403361658587, -0.15511128913418495) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LPMR.TXT + +[lpmt] +description = Montijo Mil., Portugal +location = (0.67551029443716093, -0.15770504232812094) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LPMT.TXT + +[lpov] +description = Ovar Mil., Portugal +location = (0.71411600786391316, -0.15089825824534306) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LPOV.TXT + +[lppd] +description = Ponta Delgada / Nordela Acores, Portugal +location = (0.65857090441919375, -0.44854961776254271) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LPPD.TXT + +[lppr] +description = Porto / Pedras Rubras, Portugal +location = (0.71965742823899526, -0.15155275671484095) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LPPR.TXT + +[lpps] +description = Porto Santo, Portugal +location = (0.57712220599279174, -0.28536133270107289) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LPPS.TXT + +[lppt] +description = Lisboa / Portela, Portugal +location = (0.67660597335646844, -0.15940673834881541) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LPPT.TXT + +[lpst] +description = Sintra Mil., Portugal +location = (0.67773074109664255, -0.16300405586264818) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LPST.TXT + +[lqbk] +description = Banja Luka, Bosnia And Herzegovina +location = (0.78161661668479387, 0.3004875195516904) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LQBK.TXT + +[lqmo] +description = Mostar, Bosnia And Herzegovina +location = (0.75660023073954186, 0.31066860685499065) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LQMO.TXT + +[lqsa] +description = Sarajevo, Bosnia And Herzegovina +location = (0.76474510058218215, 0.31997702953229373) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LQSA.TXT + +[lqtz] +description = Tuzla, Bosnia And Herzegovina +location = (0.77754418176347373, 0.32637657012293964) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LQTZ.TXT + +[lrar] +description = Arad, Romania +location = (0.80634211442138026, 0.37350045992678649) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LRAR.TXT + +[lrbc] +description = Bacau, Romania +location = (0.81303254322069185, 0.47065712162113749) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LRBC.TXT + +[lrbm] +description = Baia Mare, Romania +location = (0.83194027678396376, 0.41160681526199605) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LRBM.TXT + +[lrbs] +description = Bucuresti / Imh, Romania +location = (0.77667151713747662, 0.45611271118785146) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LRBS.TXT + +[lrck] +description = Kogalniceanu, Romania +location = (0.77376263505081944, 0.49625528398372104) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LRCK.TXT + +[lrcl] +description = Cluj-Napoca, Romania +location = (0.81652320172468051, 0.41131592705333031) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LRCL.TXT + +[lrcv] +description = Craiova, Romania +location = (0.7720173057988251, 0.41655191480931331) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LRCV.TXT + +[lria] +description = Iasi, Romania +location = (0.8232136305239921, 0.48229264996776638) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LRIA.TXT + +[lrod] +description = Oradea, Romania +location = (0.82117741306333203, 0.38280888260408963) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LROD.TXT + +[lrop] +description = Bucuresti Otopeni, Romania +location = (0.77754418176347373, 0.45553093477052004) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LROP.TXT + +[lrsb] +description = Sibiu, Romania +location = (0.79936079741340293, 0.42149701435663056) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LRSB.TXT + +[lrsm] +description = Satu Mare, Romania +location = (0.83426738245328946, 0.39938951049803573) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LRSM.TXT + +[lrsv] +description = Suceava / Salcea, Romania +location = (0.83164938857529802, 0.45814892864851153) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LRSV.TXT + +[lrtc] +description = Tulcea, Romania +location = (0.7885979336927712, 0.50294571278303257) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LRTC.TXT + +[lrtm] +description = Tirgu Mures, Romania +location = (0.81215987859469463, 0.4281874431559422) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LRTM.TXT + +[lrtr] +description = Timisoara, Romania +location = (0.79877902099607145, 0.37088246604879505) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LRTR.TXT + +[lsgc] +description = Les Eplatures, Switzerland +location = (0.82177373389109676, 0.11857088198895921) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LSGC.TXT + +[lsgg] +description = Geneve-Cointrin, Switzerland +location = (0.80721477904737737, 0.10704686078898555) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LSGG.TXT + +[lsgs] +description = Sion, Switzerland +location = (0.806633002630046, 0.12799081181291749) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LSGS.TXT + +[lsma] +description = Alpnach, SW +location = (0.81943208381133781, 0.14451326206513049) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LSMA.TXT + +[lsmd] +description = Dubendorf, SW +location = (0.82728606544531214, 0.15079644737231007) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LSMD.TXT + +[lsme] +description = Emmen, SW +location = (0.82205007768932925, 0.14486232791552936) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LSME.TXT + +[lsmm] +description = Meiringen, SW +location = (0.81594142530734903, 0.14172073526193954) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LSMM.TXT + +[lsmp] +description = Payerne, Switzerland +location = (0.817104978142012, 0.12130038301360591) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LSMP.TXT + +[lsms] +description = Sion (Mil), SW +location = (0.80669118027177911, 0.12775810124598494) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LSMS.TXT + +[lsza] +description = Lugano, Switzerland +location = (0.8028514559173916, 0.15649785626215823) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LSZA.TXT + +[lszb] +description = Bern / Belp, Switzerland +location = (0.81885030739400622, 0.1308996938995747) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LSZB.TXT + +[lszc] +description = Buochs, SW +location = (0.81978114966173654, 0.14625859131712482) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LSZC.TXT + +[lszg] +description = Grenchen, Switzerland +location = (0.82347058177498023, 0.12944040471943502) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LSZG.TXT + +[lszh] +description = Zurich-Kloten, Switzerland +location = (0.82874050648864084, 0.14893476283684945) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LSZH.TXT + +[lszl] +description = Locarno Airport, Locarno, Switzerland +location = (0.80565794535459856, 0.15496097750049376) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LSZL.TXT + +[lszr] +description = Saint Gallen-Altenrhein, Switzerland +location = (0.82876959530950733, 0.16688741344833558) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LSZR.TXT + +[lszs] +description = Samedan, SW +location = (0.81210170095296152, 0.17243853009703977) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LSZS.TXT + +[ltac] +description = Ankara / Esenboga, Turkey +location = (0.70016791825839186, 0.57566776494946303) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LTAC.TXT + +[ltaf] +description = Adana / Sakirpasa, Turkey +location = (0.6454809350292362, 0.6161012259539983) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LTAF.TXT + +[ltag] +description = Adana / Incirlik, Turkey +location = (0.64577182323790194, 0.61813744341465837) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LTAG.TXT + +[ltai] +description = Antalya, Turkey +location = (0.64053583548191895, 0.53639785677959062) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LTAI.TXT + +[ltaj] +description = Gaziantep, Turkey +location = (0.64722626428123053, 0.65217136382854779) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LTAJ.TXT + +[ltan] +description = Konya, Turkey +location = (0.66264333934051378, 0.56810467152415423) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LTAN.TXT + +[ltap] +description = Merzifon, Turkey +location = (0.71296699943968367, 0.62104632550131567) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LTAP.TXT + +[ltar] +description = Sivas, Turkey +location = (0.69376837766774602, 0.64606271144656768) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LTAR.TXT + +[ltat] +description = Malatya / Erhac, Turkey +location = (0.67078820918315396, 0.66467955680117385) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LTAT.TXT + +[ltau] +description = Kayseri / Erkilet, Turkey +location = (0.67689686156513407, 0.61930099624932133) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LTAU.TXT + +[ltaz] +description = Nevsehir, Turkey +location = (0.67666415099820154, 0.60286581245970794) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LTAZ.TXT + +[ltba] +description = Istanbul / Ataturk, Turkey +location = (0.71500321690034374, 0.50294571278303257) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LTBA.TXT + +[ltbj] +description = Izmir / Adnan Menderes, Turkey +location = (0.66787932709649678, 0.47385689191646047) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LTBJ.TXT + +[ltbr] +description = Bursa / Yenisehir, Mil-Civ, Turkey +location = (0.70258713852712851, 0.51596296012082365) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LTBR.TXT + +[ltbs] +description = Dalaman, Turkey +location = (0.64053583548191895, 0.5023639363657012) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LTBS.TXT + +[ltbu] +description = Corlu, Turkey +location = (0.71791209898700092, 0.4872377495150837) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LTBU.TXT + +[ltca] +description = Elazig, Turkey +location = (0.67369709126981125, 0.68562350782510573) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LTCA.TXT + +[ltcc] +description = Diyarbakir, Turkey +location = (0.66118889829718519, 0.70133147109305471) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LTCC.TXT + +[ltcd] +description = Erzincan, Turkey +location = (0.69347748945908028, 0.68940505453776013) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LTCD.TXT + +[ltce] +description = Erzurum, Turkey +location = (0.6966772597544032, 0.72023920465632663) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LTCE.TXT + +[ltcf] +description = Kars, Turkey +location = (0.70860367630969778, 0.75194601940089034) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LTCF.TXT + +[ltcg] +description = Trabzon, Turkey +location = (0.71558499331767511, 0.69318660125041454) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LTCG.TXT + +[ltci] +description = Van, Turkey +location = (0.67107909739181981, 0.75601845432221049) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LTCI.TXT + +[ltcj] +description = Batman, Turkey +location = (0.66089801008851945, 0.71849387540433229) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LTCJ.TXT + +[ltck] +description = Mus Tur-Afb, Turkey +location = (0.6763150851478027, 0.72722052166430395) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LTCK.TXT + +[ltfc] +description = Suleyman Demirel, Turkey +location = (0.66060712187985371, 0.52999831618894477) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LTFC.TXT + +[ltfe] +description = Bodrum Milas Airport, Turkey +location = (0.65010120941021021, 0.48314107390970812) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LTFE.TXT + +[ltfh] +description = Samsun / Carsamba, Turkey +location = (0.72002103849982746, 0.63822327422302649) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LTFH.TXT + +[ltfj] +description = Istanbul / Sabiha Gokcen, Turkey +location = (0.71381542338162529, 0.51154145934910467) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LTFJ.TXT + +[lubl] +description = Baltsi-Leadoveni - The North Of Moldova, Moldova +location = (0.8348637032810543, 0.48466338886839205) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LUBL.TXT + +[lubm] +description = Marculesti International Airport, FR, Moldova +location = (0.83536170389428988, 0.49240625120665621) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LUBM.TXT + +[lukk] +description = Chisinau International Airport, Moldova +location = (0.81904423286645012, 0.5049382970123929) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LUKK.TXT + +[lwoh] +description = Ohrid, Macedonia, The Republic Of +location = (0.71762121077833518, 0.36302848441482055) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LWOH.TXT + +[lwsk] +description = Skopje-Petrovec, Macedonia, The Republic Of +location = (0.73245650942028695, 0.37786378305677232) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LWSK.TXT + +[lxgb] +description = Gibraltar, Gibraltar +location = (0.63093652459595007, -0.093375114981696622) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LXGB.TXT + +[lybe] +description = Beograd / Surcin, Serbia And Montenegro +location = (0.78219839310212547, 0.35401094994618321) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LYBE.TXT + +[lybt] +description = Beograd/Batajnica, YG +location = (0.78417643292105221, 0.35342917352885173) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LYBT.TXT + +[lykv] +description = Kraljevo Airport, YG +location = (0.76480327822391525, 0.35918876006043299) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LYKV.TXT + +[lyni] +description = Nis, Serbia And Montenegro +location = (0.75630934253087623, 0.38222710618675815) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LYNI.TXT + +[lypg] +description = Podgorica Titograd, Serbia And Montenegro +location = (0.74060137926292713, 0.33655765742623989) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LYPG.TXT + +[lytv] +description = Tivat, Serbia And Montenegro +location = (0.74001960284559576, 0.32695834654027106) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LYTV.TXT + +[lyuz] +description = Uzice-Ponikve, YG +location = (0.76619954162551063, 0.3438298626428829) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LYUZ.TXT + +[lyvr] +description = Vrsac, Serbia And Montenegro +location = (0.78801615727543972, 0.3720460188834579) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LYVR.TXT + +[lzib] +description = Bratislava Ivanka, Slovakia +location = (0.8412486994612669, 0.30019663134302466) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LZIB.TXT + +[lzkc] +description = Kamenica Nad Cirochou, Slovakia +location = (0.85404778064255849, 0.38397243543875248) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LZKC.TXT + +[lzkz] +description = Kosice, Barca, Slovakia +location = (0.84933054352536275, 0.37072732567083999) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LZKZ.TXT + +[lzlu] +description = Lucenec, Slovakia +location = (0.8435758051305926, 0.34441163906021438) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LZLU.TXT + +[lzni] +description = Nitra, Slovakia +location = (0.84263526658924015, 0.31647667475468294) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LZNI.TXT + +[lzpe] +description = Prievidza, Slovakia +location = (0.85113405041909029, 0.32442761912487927) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LZPE.TXT + +[lzpp] +description = Piestany, Slovakia +location = (0.84866634878224279, 0.31116796494653348) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LZPP.TXT + +[lzsl] +description = Sliac, Slovakia +location = (0.84889421121236419, 0.33395420795868164) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LZSL.TXT + +[lztt] +description = Poprad / Tatry, Slovakia +location = (0.85637488631188441, 0.35342917352885173) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LZTT.TXT + +[lzzi] +description = Dolny Hricov, Slovakia +location = (0.85928376839854159, 0.324868799574689) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/LZZI.TXT + +[mbgt] +description = Turks Island, BA +location = (0.37402405870238481, -1.2418017627939655) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MBGT.TXT +zone = ('prz010', 0.08582846519981846) + +[mbpv] +description = Providenciales, Turks And Caicos Islands +location = (0.38002120393770972, -1.2612767283641355) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MBPV.TXT + +[mdab] +description = Arroyo Barril Intl, Samana, Dominican Republic +location = (0.33507853742728805, -1.2117781203089684) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MDAB.TXT +zone = ('prz010', 0.040936544934813954) + +[mdbh] +description = Barahona, Dominican Republic +location = (0.31764992386296798, -1.2409290981679681) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MDBH.TXT +zone = ('prz010', 0.065183151103904505) + +[mdcy] +description = El Catey Intl, DR +location = (0.33632494685930731, -1.217018087415646) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MDCY.TXT +zone = ('prz010', 0.045976339926055987) + +[mdjb] +description = Joaquin Balaguer, DR +location = (0.32410764209534698, -1.221381410545632) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MDJB.TXT +zone = ('prz010', 0.046911883924447256) + +[mdlr] +description = La Romana International Airport, Dominican Republic +location = (0.32143147057562238, -1.2034045192500902) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MDLR.TXT +zone = ('prz010', 0.029674763969873952) + +[mdpc] +description = Punta Cana, Dominican Republic +location = (0.32404946445361382, -1.1932234319467898) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MDPC.TXT +zone = ('prz010', 0.020636298566322295) + +[mdpp] +description = Puerto Plata International, Dominican Republic +location = (0.34470252726888007, -1.2313297872819995) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MDPP.TXT +zone = ('prz010', 0.061695980360451264) + +[mdsd] +description = Las Americas, Dominican Republic +location = (0.32172235878428806, -1.2159127122227162) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MDSD.TXT +zone = ('prz010', 0.041523810220936076) + +[mdst] +description = Santiago, Dominican Republic +location = (0.33946653951289707, -1.233947781159991) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MDST.TXT +zone = ('prz010', 0.062023089966064746) + +[mgcb] +description = Coban, Guatemala +location = (0.26994425764178964, -1.5763232027595453) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MGCB.TXT + +[mgcp] +description = Champerico, GU +location = (0.24958208303518914, -1.6037830496575893) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MGCP.TXT + +[mges] +description = Esquipulas, GU +location = (0.25429447201557381, -1.5594516866569335) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MGES.TXT + +[mggt] +description = Guatemala Aeropuertola Aurora, Guatemala +location = (0.25452718258250639, -1.579813861263534) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MGGT.TXT + +[mght] +description = Huehuetenango, Guatemala +location = (0.26732626376379814, -1.5963944891574802) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MGHT.TXT + +[mgmm] +description = Melchor de Mencos, El Petén, Guatemala +location = (0.29757863746503321, -1.5559610281529448) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MGMM.TXT + +[mgmt] +description = unknown station in Guatemala +location = None +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MGMT.TXT + +[mgpb] +description = Puerto Barrios, Guatemala +location = (0.27430758077177547, -1.5463617172669759) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MGPB.TXT + +[mgpc] +description = Paso Caballos, Guatemala +location = (0.30141836181942072, -1.5751596499248823) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MGPC.TXT + +[mgqz] +description = Quezaltenango, Guatemala +location = (0.25889050571249222, -1.5972671537834773) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MGQZ.TXT + +[mgrt] +description = Retalhuleu, Guatemala +location = (0.25365451795650923, -1.5998851476614688) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MGRT.TXT + +[mgsj] +description = San Jose, Guatemala +location = (0.24289165423587752, -1.5850498490195168) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MGSJ.TXT + +[mgtu] +description = unknown station in Guatemala +location = None +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MGTU.TXT +zone = ('scz023', 0.0026190239629082972) + +[mgza] +description = Zacapa, Guatemala +location = (0.26121761138181798, -1.5626514569522563) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MGZA.TXT + +[mham] +description = Amapala, Honduras +location = (0.23154701409791439, -1.5297810893730299) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MHAM.TXT + +[mhca] +description = Catacamas, Honduras +location = (0.26005405854715513, -1.4998196038804605) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MHCA.TXT + +[mhch] +description = Choluteca, Honduras +location = (0.23212879051524585, -1.5216362195303896) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MHCH.TXT + +[mhcl] +description = Colon Airport, Honduras +location = (0.24717178333818493, -1.536490135017696) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MHCL.TXT + +[mhlc] +description = La Ceiba Airport, Honduras +location = (0.27459846898044116, -1.5161093435657409) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MHLC.TXT + +[mhle] +description = La Esperanza, Honduras +location = (0.24987297124385485, -1.5385077356330017) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MHLE.TXT + +[mhlm] +description = La Mesa San Pedro Sula, Honduras +location = (0.2696533694331239, -1.5347261889203472) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MHLM.TXT + +[mhno] +description = Guanaja, Honduras +location = (0.28739755016173291, -1.5021467095497862) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MHNO.TXT + +[mhpl] +description = Puerto Lempira, Honduras +location = (0.26558093451180381, -1.4625859131712482) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MHPL.TXT + +[mhro] +description = Roatan, Honduras +location = (0.28477955628374141, -1.5100006911837607) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MHRO.TXT + +[mhsc] +description = Coronel Enrique Soto Cano Air Base, Honduras +location = (0.25103652407851773, -1.5291993129556982) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MHSC.TXT + +[mhsr] +description = Santa Rosa De Copan, Honduras +location = (0.25801784108649506, -1.5495614875622989) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MHSR.TXT + +[mhte] +description = Tela, Honduras +location = (0.27430758077177547, -1.5268722072863727) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MHTE.TXT + +[mhtg] +description = Tegucigalpa, Honduras +location = (0.24521875990520331, -1.5222179959477211) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MHTG.TXT + +[mhtr] +description = Trujillo, HO +location = (0.27803094984269672, -1.4997614262387275) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MHTR.TXT + +[mhyr] +description = Yoro, Honduras +location = (0.26470826988580665, -1.5204726666957267) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MHYR.TXT + +[mkjp] +description = Kingston / Norman Manley, Jamaica +location = (0.31299571252431646, -1.3401219773229793) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MKJP.TXT + +[mkjs] +description = Montego Bay / Sangster, Jamaica +location = (0.32288591161895097, -1.3599023755122486) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MKJS.TXT + +[mlrm] +description = unknown station +location = None +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MLRM.TXT +zone = ('akz152', 0.0096537968401540688) + +[mmaa] +description = Acapulco / G. Alvarez, Mexico +location = (0.2926335379177159, -1.7409659288643438) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MMAA.TXT + +[mman] +description = Aerop. Internacional Monterrey, N. L., Mexico +location = (0.45145849984919989, -1.7494016869156497) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MMAN.TXT +zone = ('txz248', 0.025859173223218648) + +[mmas] +description = Aguascalientes, Ags., Mexico +location = (0.38193621797809246, -1.7854718247901991) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MMAS.TXT +zone = ('txz252', 0.099392700931277667) + +[mmbt] +description = Bahias De Huatulco, Mexico +location = (0.27547113360643832, -1.6801702932532079) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MMBT.TXT + +[mmcb] +description = Cuernavaca, Mor., Mexico +location = (0.32957634041826256, -1.7319483943957064) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MMCB.TXT + +[mmce] +description = Ciudad Del Carmen, Mexico +location = (0.32550390549694241, -1.6022122533307945) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MMCE.TXT + +[mmcl] +description = Culiacan, Sin., Mexico +location = (0.43313254270325946, -1.8744836166419101) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MMCL.TXT +zone = ('txz079', 0.099044438857190081) + +[mmcm] +description = Chetumal, Q. Roo, Mexico +location = (0.32259502341028529, -1.541125729510993) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MMCM.TXT + +[mmcn] +description = Ciudad Obregon, Mexico +location = (0.47809416348935779, -1.916948446970294) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MMCN.TXT +zone = ('nmz406', 0.07376689596494769) + +[mmcp] +description = Campeche, Camp., Mexico +location = (0.34644785652087445, -1.5803956376808654) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MMCP.TXT + +[mmcs] +description = Ciudad Juarez International, Mexico +location = (0.55210582004753961, -1.857612100539298) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MMCS.TXT +zone = ('txz419', 0.0038120958764742332) + +[mmct] +description = Chichen-Itza, Mexico +location = (0.36026504643249618, -1.5437340271153623) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MMCT.TXT + +[mmcu] +description = Chihuahua International Airport, Mexico +location = (0.50090949532237261, -1.849467230696658) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MMCU.TXT +zone = ('txz079', 0.030773686978546894) + +[mmcv] +description = Ciudad Victoria Airport, Mexico +location = (0.41393392093132181, -1.7272941830570547) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MMCV.TXT +zone = ('txz255', 0.0473485673288081) + +[mmcz] +description = Cozumel Civ / Mil, Mexico +location = (0.35837427307616904, -1.5172728964004039) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MMCZ.TXT + +[mmdo] +description = Durango Airport, Mexico +location = (0.42120612614796488, -1.8244508447514058) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MMDO.TXT +zone = ('txz248', 0.098159744245937208) + +[mmep] +description = Tepic, Nay., Mexico +location = (0.37553667738744656, -1.8308503853420517) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MMEP.TXT + +[mmgl] +description = Don Miguel / Guadalaj, Mexico +location = (0.35808338486750324, -1.803216005518808) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MMGL.TXT + +[mmgm] +description = Guaymas International Airport, Mexico +location = (0.48811041414108081, -1.9361519168790429) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MMGM.TXT +zone = ('azz503', 0.063869648773701548) + +[mmho] +description = Hermosillo, Son., Mexico +location = (0.50730903591301846, -1.9364428050877087) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MMHO.TXT +zone = ('azz503', 0.044691557918692018) + +[mmia] +description = Colima, Mexico +location = (0.33626676921757415, -1.8078702168574596) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MMIA.TXT + +[mmio] +description = Saltillo, Coah., Mexico +location = (0.44418629463255688, -1.7624916563056072) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MMIO.TXT +zone = ('txz248', 0.039240077544268982) + +[mmit] +description = Ixtepec Ox, Mexico +location = (0.28710666195306722, -1.6595172304379415) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MMIT.TXT + +[mmlm] +description = Los Mochis Airport, Mexico +location = (0.44825872955387697, -1.9038633257171478) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MMLM.TXT + +[mmlo] +description = Del Bajio / Leon, Mexico +location = (0.36651914291880922, -1.7712183025655788) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MMLO.TXT + +[mmlp] +description = La Paz International Airport, Mexico +location = (0.42004257331330197, -1.9262617177844084) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MMLP.TXT + +[mmlt] +description = Loreto, B. C. S., Mexico +location = (0.45407649372719139, -1.9434241220956858) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MMLT.TXT +zone = ('azz503', 0.097850561501938535) + +[mmma] +description = Matamoros International, Mexico +location = (0.44971317059720556, -1.7022777971118028) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MMMA.TXT +zone = ('txz255', 0.0062123509482812861) + +[mmmd] +description = Merida / Lic Manuel Crecencio, Mexico +location = (0.36535559008414631, -1.5646876744129166) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MMMD.TXT + +[mmml] +description = Mexicali International Airport, Mexico +location = (0.56955911256748282, -2.0420352248333655) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MMML.TXT +zone = ('caz050', 0.0065075439704659109) + +[mmmm] +description = Morelia New, Mexico +location = (0.34644785652087445, -1.7633643209316043) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MMMM.TXT + +[mmmt] +description = Minatitlan, Mexico +location = (0.3159045946109737, -1.65079058417797) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MMMT.TXT + +[mmmv] +description = Monclova, Coah., Mexico +location = (0.46920268057780889, -1.770054749730916) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MMMV.TXT +zone = ('txz239', 0.035776542164787574) + +[mmmx] +description = Mexico City / Licenci, Mexico +location = (0.33917565130423138, -1.7296212887263804) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MMMX.TXT + +[mmmy] +description = Monterrey / Gen Maria, Mexico +location = (0.45000405880587135, -1.7470745812463238) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MMMY.TXT +zone = ('txz252', 0.02529036516719874) + +[mmmz] +description = Mazatlan / G. Buelna, Mexico +location = (0.40433461004535304, -1.8547032184526409) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MMMZ.TXT + +[mmnl] +description = Nuevo Laredo International, Mexico +location = (0.47880199146377772, -1.7377661585690207) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MMNL.TXT +zone = ('txz239', 0.0067782823277361187) + +[mmox] +description = Oaxaca / Xoxocotlan, Mexico +location = (0.29612419642170457, -1.6883151630958482) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MMOX.TXT + +[mmpa] +description = Poza Rica / Palizada, Mexico +location = (0.35808338486750324, -1.7011142442771399) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MMPA.TXT +zone = ('txz255', 0.09781674551344953) + +[mmpb] +description = Puebla, Pue., Mexico +location = (0.3324852225049198, -1.7133315490411003) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MMPB.TXT + +[mmpg] +description = Piedras Negras, Coah., Mexico +location = (0.50090949532237261, -1.7543467864629669) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MMPG.TXT +zone = ('txz217', 0.0031824285217787926) + +[mmpn] +description = Uruapan / Gen Rayon, Mexico +location = (0.3385938748868999, -1.7808176134515477) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MMPN.TXT + +[mmpr] +description = Puerto Vallarta / Lic, Mexico +location = (0.36099226695416048, -1.8369590377240319) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MMPR.TXT + +[mmps] +description = Puerto Escondido, Mexico +location = (0.27692557464976697, -1.6944238154778282) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MMPS.TXT + +[mmqt] +description = Queretaro, Qro., Mexico +location = (0.35953782591083189, -1.7520196807936412) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MMQT.TXT + +[mmrx] +description = Reynosa International Airport, Mexico +location = (0.45407649372719139, -1.714495101875763) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MMRX.TXT +zone = ('txz253', 0.0066848065191281074) + +[mmsd] +description = San Jose Del Cabo, Mexico +location = (0.40404372183668724, -1.9146261894377796) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MMSD.TXT + +[mmsl] +description = Cabo San Lucas, MX +location = (0.40055306333269863, -1.9186404467173666) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MMSL.TXT + +[mmsp] +description = San Luis Potosi, S. L. P., Mexico +location = (0.38659042931674398, -1.7624916563056072) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MMSP.TXT +zone = ('txz252', 0.08486998610292322) + +[mmtb] +description = Tuxtla Gutierrez, MX +location = (0.28710666195306722, -1.6243779348311225) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MMTB.TXT + +[mmtc] +description = Torreon, Coah., Mexico +location = (0.44564073567588552, -1.8055431111881339) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MMTC.TXT +zone = ('txz081', 0.073315340061873221) + +[mmtg] +description = Tuxtla Gutierrez, Chis., Mexico +location = (0.29234264970905022, -1.6251924218153864) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MMTG.TXT + +[mmtj] +description = Tijuana International Airport, Mexico +location = (0.56810467152415423, -2.0414534484160343) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MMTJ.TXT +zone = ('caz050', 0.007936544880781991) + +[mmtm] +description = Tampico / Gen Fj Mina, Mexico +location = (0.38891753498606979, -1.708095561285117) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MMTM.TXT +zone = ('txz255', 0.067121936340383243) + +[mmto] +description = Toluca / Jose Maria, Mexico +location = (0.33772121026090279, -1.7377661585690207) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MMTO.TXT + +[mmtp] +description = Tapachula, Mexico +location = (0.25801784108649506, -1.6123933406340949) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MMTP.TXT + +[mmun] +description = Cancun International Airport, Mexico +location = (0.3671009193361407, -1.5161093435657409) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MMUN.TXT + +[mmva] +description = Villahermosa, Mexico +location = (0.31415926535897931, -1.6199564340594035) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MMVA.TXT + +[mmvr] +description = Veracruz / Las Bajadas / General Heriberto Jara, Mexico +location = (0.33423055175691407, -1.6787158522098793) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MMVR.TXT + +[mmzc] +description = Zacatecas Airport, Mexico +location = (0.39968039870670147, -1.7921622535895108) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MMZC.TXT +zone = ('txz252', 0.089407228931843483) + +[mmzh] +description = Ixtapa-Zihuatanejo, Mexico +location = (0.30717794835100204, -1.7709274143569131) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MMZH.TXT + +[mmzo] +description = Manzanillo International, Mexico +location = (0.33423055175691407, -1.8250326211687371) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MMZO.TXT + +[mnbl] +description = Bluefields, Nicaragua +location = (0.20943951023931956, -1.5143640143137467) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MNBL.TXT + +[mnch] +description = Chinandega, Nicaragua +location = (0.22049326216861695, -1.5207635549043925) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MNCH.TXT + +[mnjg] +description = Jinotega, Nicaragua +location = (0.22834724380259147, -1.5006922685064576) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MNJG.TXT + +[mnju] +description = Juigalpa, Nicaragua +location = (0.21118483949131386, -1.4899294047858258) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MNJU.TXT + +[mnmg] +description = Managua A. C. Sandino, Nicaragua +location = (0.21205750411731106, -1.5038920388017807) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MNMG.TXT + +[mnpc] +description = Puerto Cabezas, Nicaragua +location = (0.24521875990520331, -1.4550228197459394) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MNPC.TXT + +[mnrs] +description = Rivas, Nicaragua +location = (0.19925842293601928, -1.4980742746284661) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MNRS.TXT + +[mpbo] +description = Bocas Del Toro International, Panama +location = (0.16318828506146982, -1.435533309765336) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MPBO.TXT + +[mpch] +description = Changuinola / Captain Manuel Nino, Panama +location = (0.16522450252212986, -1.4401875211039876) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MPCH.TXT + +[mpda] +description = David, Panama +location = (0.14660765716752369, -1.4384421918519934) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MPDA.TXT + +[mpmg] +description = Marcos A. Gelabert, Panama +location = (0.15678874447082392, -1.3878276435441577) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MPMG.TXT + +[mppa] +description = Panama Pacifico, Panama +location = (0.15559318811544365, -1.3892747716579206) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MPPA.TXT + +[mpto] +description = Tocumen, Panama +location = (0.15795229730548685, -1.3852096496661661) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MPTO.TXT + +[mrlb] +description = Liberia, Costa Rica +location = (0.18529578892006465, -1.491092957620489) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MRLB.TXT + +[mrlm] +description = Puerto Limon, Costa Rica +location = (0.17453292519943295, -1.4494959437812907) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MRLM.TXT + +[mroc] +description = Juan Santamaria, Costa Rica +location = (0.17453292519943295, -1.4698581183878912) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MROC.TXT + +[mrpv] +description = Tobias Bolanos International, Costa Rica +location = (0.17366026057343578, -1.4686945655532284) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MRPV.TXT + +[mslp] +description = El Salvador Intl. Airport / Comalapa, El Salvador +location = (0.2344558961845716, -1.5542156989009503) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MSLP.TXT + +[msss] +description = San Salvador / Ilopango, El Salvador +location = (0.23911010752322315, -1.5553792517356133) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MSSS.TXT + +[mtpp] +description = Port-Au-Prince / Aeroport International, Haiti +location = (0.32404946445361382, -1.2618730491919001) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MTPP.TXT +zone = ('prz008', 0.088724628721152041) + +[mucc] +description = Cayo Coco / Jardines Del Ray, Cuba +location = (0.39202034254517082, -1.3670873142662918) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MUCC.TXT +zone = ('flz076', 0.057555007131654297) + +[mucf] +description = Cienfuegos, Las Villas, Cuba +location = (0.38659042931674398, -1.4032447186034411) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MUCF.TXT +zone = ('flz077', 0.046294119917217581) + +[mucl] +description = Cayo Largo Del Sur, Cuba +location = (0.37728200663944089, -1.4233160050013758) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MUCL.TXT +zone = ('flz078', 0.052966106307519245) + +[mucm] +description = Camaguey Aeropuerto, Cuba +location = (0.37379134813545228, -1.3587388226775854) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MUCM.TXT +zone = ('flz077', 0.076911785245571865) + +[mucu] +description = Santiago De Cuba, Oriente, Cuba +location = (0.34848407398153441, -1.323832237637699) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MUCU.TXT + +[mugm] +description = Guantanamo Bay, Cuba Naval, CU, Cuba +location = (0.3476114093555373, -1.3124875974997359) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MUGM.TXT + +[muha] +description = Aeropuerto Jose Marti, Rancho-Boyeros, Habana, Cuba +location = (0.40113483975003011, -1.4381513036433275) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MUHA.TXT +zone = ('flz078', 0.032102777780297284) + +[muhg] +description = Holguin Civ / Mil, Cuba +location = (0.36273759620615487, -1.331977107480339) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MUHG.TXT + +[mumz] +description = Manzanillo, Oriente, Cuba +location = (0.35488361457218032, -1.3459397414962937) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MUMZ.TXT +zone = ('flz077', 0.099120644822145734) + +[musc] +description = Abel Santamaria, CU +location = (0.39269908169872414, -1.3953907369694665) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MUSC.TXT +zone = ('flz077', 0.042584000217261289) + +[muvr] +description = Varadero, Matanzas, Cuba +location = (0.40375283362802156, -1.4186617936627242) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MUVR.TXT +zone = ('flz078', 0.026841646593792432) + +[mwcb] +description = Gerrard Smith Intl. / Cayman Brac, Cayman Islands +location = (0.34360200021276149, -1.3942174878611813) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MWCB.TXT +zone = ('flz077', 0.090100960598993723) + +[mwcr] +description = Owen Roberts Airportgrand Cayman, Cayman Islands +location = (0.33655765742623989, -1.4198253464973869) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MWCR.TXT +zone = ('flz078', 0.093747804812643873) + +[myeg] +description = Georgetown, Exuma, Bahamas, The +location = (0.40971604190566885, -1.3223777965943704) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MYEG.TXT +zone = ('flz076', 0.079545906064198979) + +[mygf] +description = Freeport, Grand Bahama, Bahamas, The +location = (0.46338491640449453, -1.3735741213195374) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MYGF.TXT +zone = ('flz168', 0.021710095742987604) + +[mynn] +description = Nassau Airport, Bahamas, The +location = (0.43720497762457955, -1.3520483938782739) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MYNN.TXT +zone = ('flz172', 0.046056156333406047) + +[mzbz] +description = Belize / Phillip Goldston Intl. Airport, Belize +location = (0.30601439551633913, -1.541125729510993) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/MZBZ.TXT + +[ncrg] +description = Rarotonga, Cook Islands +location = (-0.37000980142279788, -2.7893270328956041) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/NCRG.TXT + +[nffn] +description = Nandi, Fiji +location = (-0.30979594222899348, 3.0970867576639374) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/NFFN.TXT + +[nfna] +description = Nausori, Fiji +location = (-0.31503192998497648, 3.116576267644541) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/NFNA.TXT + +[nftf] +description = Fua'Amotu, Tonga +location = (-0.3705915778401293, -3.0569441848680685) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/NFTF.TXT + +[nftl] +description = Haapai, Tonga +location = (-0.34557519189487729, -3.0429815508521134) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/NFTL.TXT + +[nftv] +description = Vava'U Island, TO +location = (-0.32550390549694241, -3.0365238326197344) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/NFTV.TXT +zone = ('asz001', 0.093434816041302757) + +[ngfu] +description = Funafuti, Tuvalu +location = (-0.14864387462818374, 3.1279209077825043) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/NGFU.TXT + +[ngtt] +description = Tarawa Kiribati, FJ +location = (0.02356194490192345, 3.0180233425485943) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/NGTT.TXT + +[niue] +description = Alofi / Niue, Cook Islands +location = (-0.33277611071358548, -2.9656052873470315) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/NIUE.TXT +zone = ('asz001', 0.084167594509379245) + +[nmmg] +description = unknown station +location = None +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/NMMG.TXT +zone = ('scz023', 0.0026190239629082972) + +[nsfa] +description = Faleolo Intl / Apia, Samoa +location = (-0.24114632498388319, -3.001966313430247) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/NSFA.TXT +zone = ('asz001', 0.023336998213012359) + +[nstu] +description = Pago Pago / Int. Airport, United States Minor Outlying Islands +location = (-0.25016385945252056, -2.9795679213629862) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/NSTU.TXT +zone = ('asz001', 0.00048581601339893406) + +[ntaa] +description = Tahiti-Faaa, French Polynesia +location = (-0.30630528372500487, -2.6113034491921829) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/NTAA.TXT + +[nvvv] +description = Bauerfield Efate, Vanuatu +location = (-0.30892327760299632, 2.9373891311064568) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/NVVV.TXT + +[nwww] +description = La Tontouta Nlle-Caledonie, New Caledonia +location = (-0.38426332364741822, 2.9010281050232414) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/NWWW.TXT + +[nzaa] +description = Auckland Airport, New Zealand +location = (-0.64606271144656768, 3.0508355324860883) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/NZAA.TXT + +[nzch] +description = Christchurch, New Zealand +location = (-0.75892733640886767, 3.0115656243162157) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/NZCH.TXT + +[nzsp] +description = Amundsen-Scott South Pole Station, Antarctica +location = (-1.5707963267948966, 0.0) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/NZSP.TXT + +[nzwn] +description = Wellington Airport, New Zealand +location = (-0.72140275749098959, 3.0508355324860883) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/NZWN.TXT + +[oafz] +description = Faizabad, Afghanistan +location = (0.64780804069856202, 1.230748010864668) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OAFZ.TXT + +[oahr] +description = Herat, Afghanistan +location = (0.5971934923907265, 1.0858856829491388) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OAHR.TXT + +[oakb] +description = Kabul Airport, Afghanistan +location = (0.60446569760736946, 1.2077678423800762) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OAKB.TXT + +[oakn] +description = Kandahar Intl Ar, AF +location = (0.5497787143782138, 1.1489502465878672) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OAKN.TXT + +[oams] +description = Mazar-I-Sharif, Afghanistan +location = (0.64053583548191895, 1.1728612573401895) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OAMS.TXT + +[oauz] +description = Kunduz, AF +location = (0.63983770378112115, 1.2028809204744919) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OAUZ.TXT + +[obbi] +description = Bahrain International Airport, Bahrain +location = (0.45843981685717722, 0.88400926613512787) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OBBI.TXT + +[oeab] +description = Abha, Saudi Arabia +location = (0.31823170028029946, 0.74438292597558153) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OEAB.TXT + +[oeah] +description = Al Ahsa, Saudi Arabia +location = (0.44156830075456538, 0.86364709152852737) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OEAH.TXT + +[oeao] +description = Alula, Sd, SD +location = (0.46216318592809846, 0.66531951086023833) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OEAO.TXT + +[oeba] +description = Al Baha, Saudi Arabia +location = (0.35430183815484889, 0.72663874524697247) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OEBA.TXT + +[oebh] +description = Bisha, Saudi Arabia +location = (0.34877496219020021, 0.74380114955825016) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OEBH.TXT + +[oedf] +description = Dammam-King Fahd International Airport, Saudi Arabia +location = (0.46193047536116588, 0.86888307928451036) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OEDF.TXT + +[oedm] +description = Prince Salman Bin, SD +location = (0.42673300211261356, 0.77003926597989814) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OEDM.TXT + +[oedr] +description = Dhahran, Saudi Arabia +location = (0.45843981685717722, 0.87528261987515621) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OEDR.TXT + +[oegn] +description = Gizan, Saudi Arabia +location = (0.29496064358704166, 0.74321937314091868) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OEGN.TXT + +[oegs] +description = Gassim, Saudi Arabia +location = (0.4590215932745087, 0.76387243595618493) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OEGS.TXT + +[oegt] +description = Guriat, Saudi Arabia +location = (0.54803338512621946, 0.65042603457655346) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OEGT.TXT + +[oehl] +description = Hail, Saudi Arabia +location = (0.47880199146377772, 0.72751140987296969) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OEHL.TXT + +[oejn] +description = Jeddah King Abdul Aziz International Airport, Saudi Arabia +location = (0.37873644768276948, 0.68387817857311139) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OEJN.TXT + +[oekj] +description = Prince Sultan Ab, SD +location = (0.42010075095503513, 0.83042765809890196) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OEKJ.TXT + +[oekk] +description = Hafr Al-Batin, Saudi Arabia +location = (0.4869468613064179, 0.79470658607475131) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OEKK.TXT + +[oekm] +description = Khamis Mushait, Saudi Arabia +location = (0.31939525311496231, 0.74700091985357298) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OEKM.TXT + +[oema] +description = Madinah, Saudi Arabia +location = (0.42847833136460789, 0.69289571304174891) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OEMA.TXT + +[oemk] +description = Makkah, Saudi Arabia +location = (0.37408223634411797, 0.69405926587641165) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OEMK.TXT + +[oeng] +description = Najran, Saudi Arabia +location = (0.30746883655966772, 0.77521707609414803) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OENG.TXT + +[oepa] +description = Al Qaysumah, Saudi Arabia +location = (0.49421906652306097, 0.80488767337805167) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OEPA.TXT + +[oerf] +description = Rafha, Saudi Arabia +location = (0.51690834679898723, 0.75892733640886767) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OERF.TXT + +[oerk] +description = King Khaled International Airport, Saudi Arabia +location = (0.43516876016391948, 0.81535964889001766) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OERK.TXT + +[oerr] +description = Arar, Saudi Arabia +location = (0.5393067388662478, 0.71791209898700092) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OERR.TXT + +[oesh] +description = Sharurah, Saudi Arabia +location = (0.30485084268167623, 0.82234096589799499) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OESH.TXT + +[oesk] +description = Al-Jouf, Saudi Arabia +location = (0.51981722888564452, 0.69987703004972612) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OESK.TXT + +[oetb] +description = Tabuk, Saudi Arabia +location = (0.49509173114905813, 0.63879050622992462) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OETB.TXT + +[oetf] +description = Taif, Saudi Arabia +location = (0.37495490097011513, 0.70773101168370056) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OETF.TXT + +[oetr] +description = Turaif, Saudi Arabia +location = (0.55297848467353672, 0.67602419693913696) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OETR.TXT + +[oewd] +description = Wadi Al Dawasser Airport, Saudi Arabia +location = (0.35779249665883756, 0.78888882190143705) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OEWD.TXT + +[oewj] +description = Wejh, Saudi Arabia +location = (0.45727626402251431, 0.63646340056059891) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OEWJ.TXT + +[oeyn] +description = Yenbo, Saudi Arabia +location = (0.42149701435663056, 0.66438866859250822) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OEYN.TXT + +[oiaa] +description = Abadan, Iran +location = (0.52999831618894477, 0.84212136408726401) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OIAA.TXT + +[oiad] +description = Dezful, IR +location = (0.56601027642176105, 0.84473935796525546) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OIAD.TXT + +[oiag] +description = Omidieh, Iran +location = (0.53697963319692199, 0.86684686182385029) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OIAG.TXT + +[oiah] +description = Gach Saran Du Gunbadan, Iran +location = (0.53116186902360762, 0.88604548359578794) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OIAH.TXT + +[oiai] +description = Masjed-Soleyman, Iran +location = (0.55821447242951971, 0.85986554481587296) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OIAI.TXT + +[oiam] +description = Bandar Mahshahr / Mahshahr, Iran +location = (0.5333095936309229, 0.85786326431289062) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OIAM.TXT + +[oiaw] +description = Ahwaz, Iran +location = (0.54686983229155661, 0.84939356930390697) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OIAW.TXT + +[oiba] +description = Abumusa Island / Abumusa, Iran +location = (0.45161848836396606, 0.96051771315102374) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OIBA.TXT + +[oibb] +description = Bushehr Civ / Afb, Iran +location = (0.50585459486968987, 0.8872090364304509) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OIBB.TXT + +[oibj] +description = Jam, IR +location = (0.48555059790482247, 0.91367986341903151) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OIBJ.TXT + +[oibk] +description = Kish Island / Kish, Iran +location = (0.46297767291236247, 0.9421578190474057) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OIBK.TXT + +[oibl] +description = Bandar Lengeh, Iran +location = (0.4639666928218259, 0.95702220651022407) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OIBL.TXT + +[oibp] +description = Persian Gulf Airport, IR +location = (0.47752208334564855, 0.95521869961649652) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OIBP.TXT + +[oibq] +description = Kharg, IR +location = (0.5106833391335408, 0.87720248205234996) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OIBQ.TXT + +[oibs] +description = Sirri Island / Sirri, Iran +location = (0.45220511291810855, 0.95189287776408504) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OIBS.TXT + +[oibv] +description = Lavan Island, IR +location = (0.4680973053848792, 0.93113315593897483) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OIBV.TXT + +[oicc] +description = Kermanshah, Iran +location = (0.59806615701672361, 0.82234096589799499) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OICC.TXT + +[oici] +description = Ilam, Iran +location = (0.58618337369272888, 0.80992973566159077) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OICI.TXT + +[oicj] +description = Boroujerd, IR +location = (0.60911990894602097, 0.8487536152448425) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OICJ.TXT + +[oick] +description = Khorram Abad, Iran +location = (0.58357507608835946, 0.84274677373589524) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OICK.TXT + +[oics] +description = Sanandaj, Iran +location = (0.61668300237132978, 0.82030474843733492) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OICS.TXT + +[oifk] +description = Kashan, Iran +location = (0.59312105746940635, 0.89797190015108264) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OIFK.TXT + +[oifm] +description = Esfahan, Iran +location = (0.56665023048082575, 0.90262611148973415) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OIFM.TXT + +[oifs] +description = Shahre-Kord, Iran +location = (0.56432312481149993, 0.88749992463911664) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OIFS.TXT + +[oigg] +description = Rasht, Iran +location = (0.64926248174189061, 0.86626508540651892) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OIGG.TXT + +[oigk] +description = Kermanshah, IR +location = (0.59829886758365614, 0.82239914353972798) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OIGK.TXT + +[oihh] +description = Hamadan, Iran +location = (0.60856237321274509, 0.84739613693773574) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OIHH.TXT + +[oihm] +description = Malayer, IR +location = (0.59829886758365614, 0.85206974082363174) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OIHM.TXT + +[oihs] +description = Hamedan Hamadan Air Base, HMD, Iran +location = (0.61455835489523525, 0.84916202228980908) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OIHS.TXT + +[oiie] +description = Imam Khomeni, IR +location = (0.61784655520599263, 0.89273591239509953) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OIIE.TXT + +[oiii] +description = Tehran-Mehrabad, Iran +location = (0.62279165475330989, 0.89622657089908819) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OIII.TXT + +[oiik] +description = Ghazvin, Iran +location = (0.63268185384794451, 0.87266462599716477) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OIIK.TXT + +[oiip] +description = Karaj / Payam, Iran +location = (0.62441093244821577, 0.88709268114698459) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OIIP.TXT + +[oiis] +description = Semnan, Iran +location = (0.62046454908398407, 0.9317149323563062) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OIIS.TXT + +[oikb] +description = Bandarabbass, Iran +location = (0.47502044475112332, 0.98378392170747042) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OIKB.TXT + +[oikk] +description = Kerman, Iran +location = (0.5279620987282847, 0.99425589721943641) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OIKK.TXT + +[oikm] +description = Bam, Iran +location = (0.50789081233034994, 1.0192722831646885) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OIKM.TXT + +[oiko] +description = Minab, IR +location = (0.4733332931408622, 0.99658300288876223) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OIKO.TXT + +[oikq] +description = Gheshm Island / Dayrestan, Iran +location = (0.46696284137108285, 0.97567783695931898) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OIKQ.TXT + +[oimb] +description = Birjand, Iran +location = (0.57363154748880296, 1.0332349171806432) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OIMB.TXT + +[oimc] +description = Sarakhs, Iran +location = (0.63706456952517465, 1.0657853077303372) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OIMC.TXT + +[oimd] +description = Gonabad, IR +location = (0.5995205980600522, 1.0241592050702726) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OIMD.TXT + +[oimm] +description = Mashhad, Iran +location = (0.63297274205661014, 1.0407980106059518) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OIMM.TXT + +[oimq] +description = Kāshmar, Khorasan Razavi, Iran +location = (0.61492209806556031, 1.0202871739087014) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OIMQ.TXT + +[oims] +description = Sabzevar, Iran +location = (0.63210007743061303, 1.0064732019833966) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OIMS.TXT + +[oimt] +description = Tabas, Iran +location = (0.58643062867009477, 0.99338323259343919) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OIMT.TXT + +[oinb] +description = Babulsar, IR +location = (0.64088490133231779, 0.91891585117501451) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OINB.TXT + +[oine] +description = Kalaleh, Kalaleh, Iran +location = (0.65246118156860555, 0.96782011644223576) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OINE.TXT + +[oing] +description = Gorgan, Iran +location = (0.64257205294257902, 0.95062266591957822) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OING.TXT + +[oink] +description = Gonbad Ghabus, IR +location = (0.65013514636788772, 0.96167641784887559) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OINK.TXT + +[oinn] +description = Noshahr, Iran +location = (0.63989588142285436, 0.89822885140207076) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OINN.TXT + +[oinr] +description = Ramsar, Iran +location = (0.64402649398590761, 0.88430015434379361) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OINR.TXT + +[oinz] +description = Sari Desht E Naz, IR +location = (0.63931410500552299, 0.92816609621058443) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OINZ.TXT + +[oisa] +description = Abadeh, Iran +location = (0.54425183841356506, 0.91920673938368014) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OISA.TXT + +[oisf] +description = Fasa, Iran +location = (0.50556370666102413, 0.9369509201122892) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OISF.TXT + +[oisl] +description = Lar, Iran +location = (0.48300047794218631, 0.94913428791857191) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OISL.TXT + +[oisr] +description = Lamerd, IR +location = (0.47752208334564855, 0.92816609621058443) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OISR.TXT + +[oiss] +description = Shiraz, Iran +location = (0.51545390575565864, 0.91775229834035166) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OISS.TXT + +[oisy] +description = Yasouj / National, Iran +location = (0.53576275085733716, 0.89971722940307686) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OISY.TXT + +[oitk] +description = Khoy, Iran +location = (0.67282442664381403, 0.78481638698011691) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OITK.TXT + +[oitl] +description = Ardabil, Iran +location = (0.6689216765108823, 0.84516599400463177) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OITL.TXT + +[oitm] +description = Maragheh / Sahand, Iran +location = (0.65185623493582656, 0.80505735816643997) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OITM.TXT + +[oitr] +description = Orumieh, Iran +location = (0.65508024591520497, 0.78685260444077698) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OITR.TXT + +[oitt] +description = Tabriz, Iran +location = (0.66467955680117385, 0.80779655546470885) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OITT.TXT + +[oitu] +description = Maku, IR +location = (0.68643799480936973, 0.77544978666108066) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OITU.TXT + +[oitz] +description = Zanjan, Iran +location = (0.64024494727325321, 0.84619379900858416) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OITZ.TXT + +[oiyy] +description = Yazd, Iran +location = (0.55676003138619112, 0.94945911308491526) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OIYY.TXT + +[oizb] +description = Zabol, Iran +location = (0.54686983229155661, 1.0730866017678469) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OIZB.TXT + +[oizc] +description = Chahbahar, Iran +location = (0.44360451821522545, 1.0602875205865552) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OIZC.TXT + +[oizh] +description = Zahedan, Iran +location = (0.51429035292099579, 1.0626146262558809) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OIZH.TXT + +[oizi] +description = Iranshahr, Iran +location = (0.47472955654245763, 1.0594148559605581) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OIZI.TXT + +[oizj] +description = Jask, Iran +location = (0.46483935744782312, 1.0082185312353911) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OIZJ.TXT + +[ojai] +description = Queen Alia Airport, Jordan +location = (0.55268759646487109, 0.62773675430062725) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OJAI.TXT + +[ojam] +description = Amman Airport, Jordan +location = (0.55821447242951971, 0.62802764250929288) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OJAM.TXT + +[ojaq] +description = Aqaba Airport, Jordan +location = (0.51719923500765297, 0.61115612640668104) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OJAQ.TXT + +[okbk] +description = Kuwait Internationalairport, Kuwait +location = (0.5099270297910099, 0.8374671527486125) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OKBK.TXT + +[olba] +description = Beyrouth Aeroport, Lebanon +location = (0.59021217538274917, 0.61930099624932133) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OLBA.TXT + +[omaa] +description = Abu Dhabi International Airport, United Arab Emirates +location = (0.42644211390394787, 0.95382243621490104) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OMAA.TXT + +[omad] +description = Abu Dhabi Bateen Airport, United Arab Emirates +location = (0.42644211390394787, 0.95062266591957822) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OMAD.TXT + +[omah] +description = Al Hamra Aux, ER +location = (0.42027528388023455, 0.91577425852142469) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OMAH.TXT + +[omal] +description = Al Ain International Airport, United Arab Emirates +location = (0.42353323181729063, 0.97040306410884725) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OMAL.TXT + +[omam] +description = Al Dhafra, Abu Dhabi, United Arab Emirates +location = (0.42321178289342254, 0.95203734836254639) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OMAM.TXT + +[omdb] +description = Dubai International Airport, United Arab Emirates +location = (0.44069563612856821, 0.96574885277019573) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OMDB.TXT + +[omdl] +description = Delma, United Arab Emirates +location = (0.4270820679630124, 0.91315626464343325) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OMDL.TXT + +[omdm] +description = Minhad HB, Minhad AB, United Arab Emirates +location = (0.43680250469906967, 0.96632091352135763) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OMDM.TXT + +[omdw] +description = Al Maktoum Intl Airp, ER +location = (0.43423791789618915, 0.96289814832527165) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OMDW.TXT + +[omfj] +description = Fujairah, United Arab Emirates +location = (0.43807764225057672, 0.98320214529013905) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OMFJ.TXT + +[omlw] +description = unknown station in United Arab Emirates +location = None +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OMLW.TXT + +[ommz] +description = unknown station in United Arab Emirates +location = None +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OMMZ.TXT +zone = ('mtz010', 0.02502287798277962) + +[omrk] +description = Ras Al Khaimah International Airport, United Arab Emirates +location = (0.44709517671921412, 0.97622082828216161) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OMRK.TXT + +[omsj] +description = Sharjah International Airport, United Arab Emirates +location = (0.4421500771718968, 0.96894862306551865) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OMSJ.TXT + +[omsn] +description = unknown station in United Arab Emirates +location = None +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OMSN.TXT + +[omth] +description = unknown station in United Arab Emirates +location = None +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OMTH.TXT +zone = ('ctz002', 0.0023068049553633487) + +[ooms] +description = Seeb, International Airport, Oman +location = (0.41160681526199605, 1.0172360657040285) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OOMS.TXT + +[oosa] +description = Salalah, Oman +location = (0.29728774925636747, 0.94393223712026664) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OOSA.TXT + +[opfa] +description = Faisalabad Intl, Faisalabad, Pakistan +location = (0.54742276423411673, 1.2740003298730429) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OPFA.TXT + +[opkc] +description = Karachi Airport, Pakistan +location = (0.43458698374658805, 1.1716977045055268) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OPKC.TXT + +[opla] +description = Lahore Airport, Pakistan +location = (0.55006960258687954, 1.2985249634837812) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OPLA.TXT + +[opmt] +description = Multan, Pakistan +location = (0.52708943410228748, 1.2467468623412827) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OPMT.TXT + +[opnh] +description = Nawabshah, Pakistan +location = (0.45814892864851153, 1.1932234319467898) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OPNH.TXT + +[opps] +description = Peshawar, Pakistan +location = (0.59370283388673772, 1.2493648562192741) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OPPS.TXT + +[oprn] +description = Islamabad Airport, Pakistan +location = (0.58672151687876051, 1.2758356832078548) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OPRN.TXT + +[opsk] +description = Sukkur, Pakistan +location = (0.48383920561050581, 1.2006459294045768) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OPSK.TXT + +[opst] +description = Sialkot, PK +location = (0.56723200689815712, 1.3007938915113739) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OPST.TXT + +[orbb] +description = Baghdad, Iraq +location = (0.58003108807944892, 0.7720173057988251) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ORBB.TXT + +[orbi] +description = Baghdad Intl Airport, IQ +location = (0.58119464091411166, 0.77492618788548229) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ORBI.TXT + +[orbm] +description = Mosul, Iraq +location = (0.63384540668260736, 0.75310957223555319) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ORBM.TXT + +[orbs] +description = Saddam Irq-Afb / Civ, Iraq +location = (0.58061286449678029, 0.7720173057988251) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ORBS.TXT + +[orer] +description = Erbil Intl, IQ +location = (0.63233278799754555, 0.87196649429636708) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ORER.TXT + +[ormb] +description = unknown station in Iraq +location = None +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ORMB.TXT + +[ormm] +description = Basrah/Magal, IQ +location = (0.53354715233466654, 0.79901173156300409) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ORMM.TXT + +[orn1] +description = unknown station in Iraq +location = None +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ORN1.TXT + +[orni] +description = Al Najaf International Airport, Najaf, Iraq +location = (0.5583599223516168, 0.77499891575541291) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ORNI.TXT + +[orsu] +description = Sulymaniyah, IQ +location = (0.62046454908398407, 0.79325214503142283) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ORSU.TXT + +[osap] +description = Aleppo International Airport, Syria +location = (0.63151830101328155, 0.64926248174189061) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OSAP.TXT + +[osdi] +description = Damascus Int. Airport, Syria +location = (0.58323085837477173, 0.63733606518659602) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OSDI.TXT + +[osdz] +description = Deir Ezzor, Syria +location = (0.61639211416266415, 0.70074969467572323) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OSDZ.TXT + +[oskl] +description = Kamishli, Syria +location = (0.64664448786389905, 0.71936654003032952) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OSKL.TXT + +[oslk] +description = Lattakia, Syria +location = (0.62017366087531844, 0.62424609579663848) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OSLK.TXT + +[otbd] +description = Doha International Airport, Qatar +location = (0.44069563612856821, 0.90000811761174271) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OTBD.TXT + +[oyaa] +description = Aden, Yemen +location = (0.2210750385859484, 0.78597993981477976) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OYAA.TXT + +[oyag] +description = Al-Ghaida, DY +location = (0.28064894372068816, 0.90896747443864678) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OYAG.TXT + +[oyar] +description = Riyan, Yemen +location = (0.2556907354171693, 0.86190176227653303) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OYAR.TXT + +[oyas] +description = Abbs, YE +location = (0.28047441079548874, 0.75345863808595215) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OYAS.TXT + +[oyat] +description = Ataq, Yemen +location = (0.25336362974784354, 0.81768675455934337) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OYAT.TXT + +[oydm] +description = Dhamar, YE +location = (0.25446900494077324, 0.77527525373588124) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OYDM.TXT + +[oyhd] +description = Hodeidah, Yemen +location = (0.25743606466916363, 0.75020069014889601) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OYHD.TXT + +[oyhj] +description = Hajjah, YE +location = (0.27628562059070239, 0.76061448801912879) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OYHJ.TXT + +[oyib] +description = Ibb, YE +location = (0.24434609527920614, 0.77370445740908622) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OYIB.TXT + +[oymb] +description = Marib, Yemen +location = (0.26936248122445822, 0.79121592757076276) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OYMB.TXT + +[oyrn] +description = Riyan, YE +location = (0.2556907354171693, 0.8616690517096004) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OYRN.TXT + +[oysd] +description = unknown station in Yemen +location = None +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OYSD.TXT + +[oysh] +description = Sa'Ada / Sadah, Yemen +location = (0.29612419642170457, 0.76329065953885344) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OYSH.TXT + +[oysn] +description = Sana'A, Yemen +location = (0.27081692226778681, 0.77114464117282788) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OYSN.TXT + +[oysq] +description = Socotra, Yemen +location = (0.22049326216861695, 0.9407324668249436) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OYSQ.TXT + +[oysy] +description = Sayun, Yemen +location = (0.2786709039017613, 0.85172067497323278) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OYSY.TXT + +[oytz] +description = Taiz, Yemen +location = (0.23881921931455743, 0.77027197654683077) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/OYTZ.TXT + +[paak] +description = Atka, Atka Airport, AK, United States +location = (0.91141578352825003, -3.0404750641207769) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAAK.TXT +zone = ('akz187', 0.0070814989133461143) + +[paap] +description = Port Alexander, Port Alexander Seaplane Base, AK, United States +location = (0.98174770424681035, -2.3500858378103646) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAAP.TXT +zone = ('akz023', 0.011256471134325896) + +[paaq] +description = Palmer Municipal Airport, AK, United States +location = (1.0751228192285069, -2.6022859147235451) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAAQ.TXT +zone = ('akz111', 0.0005804657686013146) + +[paba] +description = Barter Island, Barter Island Lrrs Airport, AK, United States +location = (1.2240672783389788, -2.5058904105085364) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PABA.TXT +zone = ('akz204', 0.0044878484497454163) + +[pabe] +description = Bethel Airport, AK, United States +location = (1.0608692970038867, -2.8245245061441566) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PABE.TXT +zone = ('akz155', 0.0088696790280565329) + +[pabi] +description = Allen Army Airfield, AK, United States +location = (1.1170107212763709, -2.5432356083644039) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PABI.TXT +zone = ('akz223', 0.0078136379095607687) + +[pabl] +description = Buckland, Buckland Airport, AK, United States +location = (1.1516070255603474, -2.8126320265465394) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PABL.TXT +zone = ('akz209', 0.011771383391405373) + +[pabn] +description = Nabesna, Devil Mountain Lodge, AK, United States +location = (1.0890466681499729, -2.4957481082997246) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PABN.TXT +zone = ('akz141', 0.01799568174159271) + +[pabr] +description = Post Rogers Memorial Airport, AK, United States +location = (1.2441288684632912, -2.7360944907097777) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PABR.TXT +zone = ('akz202', 0.013083116670441316) + +[pabt] +description = Bettles Airport, AK, United States +location = (1.1676252695842066, -2.6444647049800754) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PABT.TXT +zone = ('akz219', 0.011434365367343369) + +[pabv] +description = Birchwood, Birchwood Airport, AK, United States +location = (1.0719230489331841, -2.6095581199401887) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PABV.TXT +zone = ('akz101', 0.0038723251518983522) + +[pacd] +description = Cold Bay Airport, AK, United States +location = (0.96371263530953566, -2.8402324694121055) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PACD.TXT +zone = ('akz181', 0.016641011025929429) + +[pacm] +description = Scammon Bay, AK, US +location = (1.0794861423584929, -2.8897416425270115) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PACM.TXT +zone = ('akz214', 0.014354141546920829) + +[pacv] +description = Merle K. Smith Airport, AK, United States +location = (1.0559241974565694, -2.5391631734430837) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PACV.TXT +zone = ('akz135', 0.0025954990013002527) + +[pacz] +description = Cape Romanzof, Cape Romanzof Lrrs Airport, AK, United States +location = (1.07832258952383, -2.8978283347279183) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PACZ.TXT +zone = ('akz214', 0.018321616724581734) + +[pade] +description = Deering Airport, AK, United States +location = (1.1530808591509203, -2.8408142458294372) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PADE.TXT +zone = ('akz210', 0.010128930708708081) + +[padg] +description = Red Dog, Ak, US +location = (1.1873474901317425, -2.8429668185735633) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PADG.TXT +zone = ('akz208', 0.0057684485886525553) + +[padk] +description = Adak Island, Adak Airport, AK, United States +location = (0.90543803084016949, -3.0830514015958164) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PADK.TXT +zone = ('akz187', 0.019844762678053754) + +[padl] +description = Dillingham, Dillingham Airport, AK, United States +location = (1.0306169233026516, -2.7666377526196784) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PADL.TXT +zone = ('akz161', 0.01217047610073598) + +[padm] +description = Marshall, AK, US +location = (1.0796606752836921, -2.8279569870064121) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PADM.TXT +zone = ('akz214', 0.01673710289919584) + +[padq] +description = Kodiak Airport, AK, United States +location = (1.0079276430267252, -2.6613362210826867) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PADQ.TXT +zone = ('akz171', 0.018171131655806815) + +[padu] +description = Unalaska, Unalaska Airport, AK, United States +location = (0.9407324668249436, -2.9065549809878899) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PADU.TXT +zone = ('akz185', 0.008380735930325232) + +[paec] +description = Chulitna, Chulitna River, AK, United States +location = (1.0965127988390597, -2.6163600558861555) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAEC.TXT +zone = ('akz225', 0.013344517692436372) + +[paed] +description = Anchorage, Elmendorf Air Force Base, AK, United States +location = (1.0690674963514488, -2.6143965604776613) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAED.TXT +zone = ('akz101', 0.0025296119021460416) + +[paeg] +description = Eagle Airport, AK, United States +location = (1.1306824670836597, -2.4635322391899961) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAEG.TXT +zone = ('akz224', 0.014493544864307111) + +[paeh] +description = Cape Newenham, Cape Newenham Lrrs Airport, AK, United States +location = (1.0236356062946743, -2.8285969410654768) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAEH.TXT +zone = ('akz155', 0.035942336104491164) + +[paei] +description = Fairbanks, Eielson Air Force Base, AK, United States +location = (1.1283553614143342, -2.5673793296836585) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAEI.TXT +zone = ('akz222', 0.0062699615517751535) + +[pael] +description = Elfin Cove, Elfin Cove Seaplane Base, AK, United States +location = (1.0157816246606999, -2.3797564350942682) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAEL.TXT +zone = ('akz022', 0.0013932202284193721) + +[paem] +description = Emmonak, Emmonak Airport, AK, United States +location = (1.0957758820437733, -2.871066619530672) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAEM.TXT +zone = ('akz214', 0.011469971182184993) + +[paen] +description = Kenai Municipal Airport, AK, United States +location = (1.057378638499898, -2.6395196054327577) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAEN.TXT +zone = ('akz121', 0.0063741577213979666) + +[paer] +description = Merrill Pass West, AK, United States +location = (1.0690141668465269, -2.6846072777759447) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAER.TXT +zone = ('akz145', 0.030039907605482811) + +[pafa] +description = Fairbanks, Fairbanks International Airport, AK, United States +location = (1.131041229207681, -2.5809250239338595) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAFA.TXT +zone = ('akz222', 0.0051214489272945413) + +[pafb] +description = Ft. Wainwright Aaf, AK, United States +location = (1.1315551317096568, -2.575815087734965) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAFB.TXT +zone = ('akz222', 0.0032920161946244151) + +[pafe] +description = Kake, Kake Airport, AK, United States +location = (0.99396500901077067, -2.3369958684204075) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAFE.TXT +zone = ('akz026', 0.010705865324757046) + +[pafk] +description = Farewell Lake, Farewell Lake Seaplane Base, AK, United States +location = (1.0915725474285536, -2.6812184301449888) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAFK.TXT +zone = ('akz227', 0.0092091915256954076) + +[pafm] +description = Ambler, Ambler Airport, AK, United States +location = (1.1711159280881951, -2.7550022242730492) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAFM.TXT +zone = ('akz217', 0.0058644825914927106) + +[pafs] +description = Nikolai, AK, US +location = (1.0999064946068264, -2.6940902333784473) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAFS.TXT +zone = ('akz227', 0.001051871940583994) + +[paga] +description = Galena, Edward G. Pitka Sr. Airport, AK, United States +location = (1.1298098024576626, -2.7390033727964345) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAGA.TXT +zone = ('akz216', 0.0024490879308601428) + +[pagb] +description = Galbraith Lake, Galbraith Lake Airport, AK, United States +location = (1.1952596494074501, -2.6089763435228566) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAGB.TXT +zone = ('akz206', 0.012483984816334665) + +[pagh] +description = Shungnak, Ak, US +location = (1.1671016708086082, -2.7431339853594876) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAGH.TXT +zone = ('akz217', 0.0084909573793867533) + +[pagk] +description = Gulkana Airport, AK, United States +location = (1.0847221301144758, -2.538581397025752) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAGK.TXT +zone = ('akz141', 0.0060642030833568056) + +[pagl] +description = Golovin, Golovin Airport, AK, United States +location = (1.1264936768788736, -2.8455751161779328) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAGL.TXT +zone = ('akz211', 0.01095629967012827) + +[pagm] +description = Gambell, Gambell Airport, AK, United States +location = (1.1129382863550508, -2.9973121020915952) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAGM.TXT +zone = ('akz213', 0.029074850595183967) + +[pagn] +description = Angoon, AK, United States +location = (1.0035643198967394, -2.3489222849757021) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAGN.TXT +zone = ('akz024', 0.0034153786742232789) + +[pags] +description = Gustavus, Gustavus Airport, AK, United States +location = (1.0195631713733542, -2.3684117949563048) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAGS.TXT +zone = ('akz022', 0.0073949942164735832) + +[pagy] +description = Skagway Airport, AK, United States +location = (1.0378891285192946, -2.3617213661569934) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAGY.TXT +zone = ('akz018', 0.0018152994393913979) + +[pahc] +description = Holy Cross, AK, US +location = (1.0854202618152735, -2.7886870788365399) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAHC.TXT +zone = ('akz215', 0.0083489681585502684) + +[pahl] +description = Huslia, Huslia Airport, AK, United States +location = (1.1466376853289748, -2.7288416780403781) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAHL.TXT +zone = ('akz216', 0.016800510054701893) + +[pahn] +description = Haines Airport, AK, United States +location = (1.0341075818066403, -2.3652120246609827) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAHN.TXT +zone = ('akz019', 0.0027421885796070173) + +[paho] +description = Homer Airport, AK, United States +location = (1.0410888988146176, -2.6438829285627432) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAHO.TXT +zone = ('akz121', 0.013588434681059783) + +[pahp] +description = Hooper Bay, Hooper Bay Airport, AK, United States +location = (1.0736683781851784, -2.8995736639799126) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAHP.TXT +zone = ('akz214', 0.02126776070836878) + +[pahv] +description = Healy, Healy, AK, United States +location = (1.1148775410794889, -2.6007393590808059) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAHV.TXT +zone = ('akz225', 0.0098305238122781292) + +[pahy] +description = Hydaburg, Hydaburg Seaplane Base, AK, United States +location = (0.96342174710086992, -2.3183790230658015) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAHY.TXT +zone = ('akz027', 0.0023994701980934482) + +[paig] +description = Igiugig, AK, US +location = (1.0353293122830363, -2.7209683038591597) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAIG.TXT +zone = ('akz161', 0.011988205319476293) + +[paii] +description = Egegik, Egegik Airport, AK, United States +location = (1.0155246734097116, -2.7468961395248979) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAII.TXT +zone = ('akz161', 0.0194692341950733) + +[paik] +description = Kiana Kinana/Bob Baker Mem, AK, United States +location = (1.169079710627535, -2.8000898966162362) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAIK.TXT +zone = ('akz209', 0.0065822042096770356) + +[pail] +description = Iliamna Airport, AK, United States +location = (1.0428342280666119, -2.703805899547882) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAIL.TXT +zone = ('akz171', 0.026347220781228042) + +[paim] +description = Utopia Creek, Indian Mountain Lrrs Airport, AK, United States +location = (1.169079710627535, -2.6825710603152841) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAIM.TXT +zone = ('akz219', 0.013342555062532407) + +[pain] +description = Mckinley Park, Mckinley National Park Airport, AK, United States +location = (1.1123565099377193, -2.5990861444282221) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAIN.TXT +zone = ('akz225', 0.0095133097676607659) + +[paiw] +description = Wales, AK, United States +location = (1.1452268775169459, -2.9338984726024679) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAIW.TXT +zone = ('akz213', 0.019451604064188058) + +[pajc] +description = Chignik, Chignik Airport, AK, United States +location = (0.98281914248206237, -2.764136114025153) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAJC.TXT +zone = ('akz181', 0.030233161511621295) + +[pajn] +description = Juneau International Airport, AK, United States +location = (1.0183996185386912, -2.3486313967670363) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAJN.TXT +zone = ('akz025', 0.0090879127128411352) + +[pajz] +description = Koliganek, AK, US +location = (1.042485162216213, -2.7447047816862824) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAJZ.TXT +zone = ('akz161', 0.007533996252544666) + +[pakf] +description = False Pass Airport, US +location = (0.95731309471888981, -2.8520425306839337) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAKF.TXT +zone = ('akz181', 0.025656728650110219) + +[paki] +description = Kipnuk, Kipnuk Airport, AK, United States +location = (1.0460243020883127, -2.8628684201831103) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAKI.TXT +zone = ('akz155', 0.016455809624464825) + +[pakk] +description = Koyuk, Koyuk Airport, AK, United States +location = (1.1333101572352735, -2.8127386855563841) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAKK.TXT +zone = ('akz210', 0.014227730437852533) + +[pakn] +description = King Salmon Airport, AK, United States +location = (1.0242173827120056, -2.7340582732491172) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAKN.TXT +zone = ('akz161', 0.01199448331686302) + +[pakp] +description = Anaktuvuk Pass, Anaktuvuk Pass Airport, AK, United States +location = (1.1891558451622812, -2.6484207846179286) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAKP.TXT +zone = ('akz219', 0.031069238364399111) + +[pakt] +description = Ketchikan International Airport, AK, United States +location = (0.96603974097886147, -2.2988895130851978) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAKT.TXT +zone = ('akz028', 0.0047112987444973909) + +[paku] +description = Kuparuk, Ugnu-Kuparuk Airport, AK, United States +location = (1.2272573523606793, -2.6107216727748512) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAKU.TXT +zone = ('akz203', 0.0019200679647157866) + +[pakv] +description = Kaltag Airport, AK, United States +location = (1.1225375972410196, -2.7704192993323322) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAKV.TXT +zone = ('akz212', 0.018930550482808901) + +[pakw] +description = Klawock, Klawock Airport, AK, United States +location = (0.97011217590018151, -2.322742346195787) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAKW.TXT +zone = ('akz027', 0.0050863409795799588) + +[palg] +description = Kalskag, AK, US +location = (1.0740756216773104, -2.798460922647708) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PALG.TXT +zone = ('akz215', 0.020311025578201122) + +[palh] +description = Lake Hood, AK, United States +location = (1.067850614011864, -2.6177029897828286) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PALH.TXT +zone = ('akz101', 0.0039173930009483438) + +[palj] +description = Port Alsworth, Port Alsworth Airport, AK, United States +location = (1.0506882097005865, -2.6933339240359162) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PALJ.TXT +zone = ('akz171', 0.033344817885493441) + +[palp] +description = Deadhorse, Alpine Airstrip, AK, United States +location = (1.227548240569345, -2.634283617676775) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PALP.TXT +zone = ('akz203', 0.0083778661428370593) + +[palu] +description = Cape Lisburne, Cape Lisburne Lrrs Airport, AK, United States +location = (1.2022409664154274, -2.8989918875625813) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PALU.TXT +zone = ('akz207', 0.036706240210118098) + +[pamb] +description = Manokotak, AK, US +location = (1.0295697257514551, -2.7759461752969812) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAMB.TXT +zone = ('akz161', 0.017028826175652167) + +[pamc] +description = Mcgrath Airport, AK, United States +location = (1.0986847641304305, -2.7157323161031766) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAMC.TXT +zone = ('akz227', 0.010700033114451536) + +[pamd] +description = Middleton Island, Middleton Island Airport, AK, United States +location = (1.0373073521019631, -2.5534166956677042) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAMD.TXT +zone = ('akz135', 0.022225903595757813) + +[pamh] +description = Minchumina, Minchumina Airport, AK, United States +location = (1.1149260224475999, -2.6581461470609864) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAMH.TXT +zone = ('akz221', 0.015676955454409131) + +[pamk] +description = St Michael, AK, US +location = (1.1081095420911999, -2.8293532504080079) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAMK.TXT +zone = ('akz212', 0.011211998826387983) + +[paml] +description = Manley Hot Springs, Manly Hot Springs Airport, AK, United States +location = (1.1344397731122589, -2.6291300482465805) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAML.TXT +zone = ('akz221', 0.0080992814698768924) + +[pamm] +description = Metlakatla, Metlakatla Seaplane Base, AK, United States +location = (0.96221940917171822, -2.2964702928164611) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAMM.TXT +zone = ('akz028', 0.0085621388132438789) + +[pamo] +description = Mountain Village, AK, US +location = (1.0838494654884787, -2.8567549196643189) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAMO.TXT +zone = ('akz214', 0.0026371508472714219) + +[pamr] +description = Anchorage Merrill Field, AK, United States +location = (1.0684323904291955, -2.6153758841135026) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAMR.TXT +zone = ('akz101', 0.0028153136789627929) + +[pamx] +description = Mccarthy, AK, United States +location = (1.0722139371418498, -2.4946572775172284) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAMX.TXT +zone = ('akz141', 0.01845865286979656) + +[pamy] +description = Mekoryuk, Mekoryuk Airport, AK, United States +location = (1.0535970917872437, -2.9019007696492389) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAMY.TXT +zone = ('akz214', 0.037019460739767258) + +[panc] +description = Ted Stevens Anchorage International, AK, United States +location = (1.0675597258031981, -2.6185756544088257) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PANC.TXT +zone = ('akz101', 0.0043617016335614047) + +[pani] +description = Aniak, Aniak Airport, AK, United States +location = (1.0747979940621637, -2.7845467699998645) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PANI.TXT +zone = ('akz215', 0.019018354558210725) + +[pann] +description = Nenana Municipal Airport, AK, United States +location = (1.1266100321623396, -2.6017041383062138) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PANN.TXT +zone = ('akz225', 0.018590307977302233) + +[pant] +description = Annette Island Airport, AK, United States +location = (0.96051286501421262, -2.2965624074158719) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PANT.TXT +zone = ('akz028', 0.01000671826817698) + +[panv] +description = Anvik, Anvik Airport, AK, United States +location = (1.0934196875535809, -2.7958380806329055) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PANV.TXT +zone = ('akz215', 0.0037350623811356204) + +[panw] +description = New Stuyahok, AK, US +location = (1.037598240310629, -2.7459265121626788) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PANW.TXT +zone = ('akz161', 0.0027514913127084113) + +[paoh] +description = Hoonah, Hoonah Seaplane Base, AK, United States +location = (1.0143271836173713, -2.3640484718263193) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAOH.TXT +zone = ('akz021', 0.0030889496828081071) + +[paom] +description = Nome Airport, AK, United States +location = (1.1260282557450083, -2.8873563592159526) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAOM.TXT +zone = ('akz211', 0.0072571192726280176) + +[paoo] +description = Toksook Bay, AK, US +location = (1.0564477962321677, -2.8817131279678376) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAOO.TXT +zone = ('akz214', 0.030283245707994174) + +[paor] +description = Northway Airport, AK, United States +location = (1.0989756523390961, 2.4772039849972853) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAOR.TXT + +[paot] +description = Wien Memorial Airport, AK, United States +location = (1.1673343813755408, -2.8379053637427796) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAOT.TXT +zone = ('akz208', 0.016528272044156377) + +[paou] +description = Nelson Lagoon, AK, US +location = (0.977558914042024, -2.8127726225140615) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAOU.TXT +zone = ('akz181', 0.0070009528083678453) + +[papb] +description = St. George Airport, AK, United States +location = (0.98756546842012483, -2.9612419642170456) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAPB.TXT +zone = ('akz195', 0.0064251086466934051) + +[papc] +description = Port Clarence, Port Clarence Coast Guard Station, AK, United States +location = (1.1388273369263, -2.9120818569525388) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAPC.TXT +zone = ('akz213', 0.016905349227898173) + +[papg] +description = Petersburg, AK, United States +location = (0.99163790334144497, -2.3207061287351269) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAPG.TXT +zone = ('akz026', 0.0037892715223763977) + +[paph] +description = Port Heiden, Port Heiden Airport, AK, United States +location = (0.99396500901077067, -2.768673970080338) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAPH.TXT +zone = ('akz161', 0.042935585838991132) + +[papm] +description = Platinum, AK, United States +location = (1.0300351468853202, -2.8242336179354908) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAPM.TXT +zone = ('akz155', 0.030258080027039422) + +[papn] +description = Pilot Point, AK, US +location = (1.0049605832983348, -2.7501153023674649) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAPN.TXT +zone = ('akz161', 0.030138138853456467) + +[papo] +description = Point Hope, Point Hope Airport, AK, United States +location = (1.1929325437381242, -2.9112091923265417) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAPO.TXT +zone = ('akz207', 0.028823153170885376) + +[papr] +description = Prospect Creek, Prospect Creek Airport, AK, United States +location = (1.1661029546255224, -2.6292318591196131) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAPR.TXT +zone = ('akz219', 0.015037218222469244) + +[papt] +description = Puntilla, AK, United States +location = (1.0838494654884787, -2.6659904324213386) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAPT.TXT +zone = ('akz145', 0.016842638336882872) + +[paqt] +description = Nuiqsut Airport, AK, United States +location = (1.2255120231086851, -2.6351562823027717) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAQT.TXT +zone = ('akz203', 0.0084021548548453666) + +[parc] +description = Arctic Village, Arctic Village Airport, AK, United States +location = (1.1888213237223153, -2.5408357806429116) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PARC.TXT +zone = ('akz218', 0.0094232530964251573) + +[pars] +description = Russian Mission, AK, US +location = (1.0780898789568973, -2.8155651493172522) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PARS.TXT +zone = ('akz215', 0.020338111213990241) + +[pary] +description = Ruby, AK, US +location = (1.1297516248159296, -2.7134633880755841) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PARY.TXT +zone = ('akz216', 0.0084566609265131262) + +[pasa] +description = Savoonga Airport, AK, United States +location = (1.1114838453117222, -2.9757863746503319) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PASA.TXT +zone = ('akz213', 0.022016417427550727) + +[pasc] +description = Deadhorse Airport, AK, United States +location = (1.2252211349000195, -2.5915230510029135) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PASC.TXT +zone = ('akz203', 0.0063747997960642826) + +[pasd] +description = Sand Point, AK, United States +location = (0.96545796456152999, -2.801544337659565) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PASD.TXT +zone = ('akz181', 0.0084997123189462804) + +[pash] +description = Shishmaref, Shishmaref Airport, AK, United States +location = (1.156571517654909, -2.8987009993539159) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PASH.TXT +zone = ('akz207', 0.01087327353738082) + +[pasi] +description = Sitka Airport, AK, United States +location = (0.995710338262765, -2.3625940307829909) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PASI.TXT +zone = ('akz023', 0.0046111911808242607) + +[pask] +description = Selawik, AK, United States +location = (1.1626801700368892, -2.7925268031909272) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PASK.TXT +zone = ('akz209', 0.0060159353933593764) + +[pasl] +description = Sleetmute, AK, United States +location = (1.077159036689167, -2.7427849195090892) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PASL.TXT +zone = ('akz152', 0.007718539183703718) + +[pasm] +description = St. Mary'S, St. Mary'S Airport, AK, United States +location = (1.0829768008624814, -2.8501226685067405) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PASM.TXT +zone = ('akz214', 0.0058170591761470217) + +[pasn] +description = St Paul Island Airport, AK, United States +location = (0.99774655572342497, -2.9708412751030147) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PASN.TXT +zone = ('akz195', 0.005028549438556313) + +[paso] +description = Seldovia Airport, AK, United States +location = (1.037598240310629, -2.6476644752753979) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PASO.TXT +zone = ('akz121', 0.01757037774556517) + +[pasv] +description = Sparrevohn Airways Facilities Sector, AK, United States +location = (1.0663961729685354, -2.7151505396858453) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PASV.TXT +zone = ('akz152', 0.0096537968401540688) + +[pasw] +description = Skwentna, AK, United States +location = (1.0817065890179745, -2.6392384134977145) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PASW.TXT +zone = ('akz145', 0.0050169737494625798) + +[pasx] +description = Soldotna, AK, United States +location = (1.0556333092479038, -2.6360289469287692) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PASX.TXT +zone = ('akz121', 0.003926038655234939) + +[pasy] +description = Shemya Eareckson As, AK, United States +location = (0.92007940400967747, 3.0389091159307937) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PASY.TXT + +[pata] +description = Tanana Calhoun Memorial Airport, AK, United States +location = (1.1373728958829714, -2.6546457922833753) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PATA.TXT +zone = ('akz221', 0.0092233525380552867) + +[patc] +description = Tin City Airways Facilities Sector, AK, United States +location = (1.1443542128909487, -2.9306987023071449) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PATC.TXT +zone = ('akz213', 0.018742789019132126) + +[pate] +description = Teller, AK, United States +location = (1.1385364487176344, -2.9030643224839014) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PATE.TXT +zone = ('akz207', 0.028379368549338112) + +[patg] +description = Togiac Village, Togiak Airport, AK, United States +location = (1.0306169233026516, -2.7995081201989045) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PATG.TXT +zone = ('akz161', 0.028544431480828442) + +[patk] +description = Talkeetna Airport, AK, United States +location = (1.087631012201133, -2.6197392072434886) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PATK.TXT +zone = ('akz145', 0.0058630939271129617) + +[patl] +description = Takotna, Tatalina Lrrs Airport, AK, United States +location = (1.0978120995044334, -2.722422744902488) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PATL.TXT +zone = ('akz227', 0.013814077397588794) + +[pato] +description = Portage Glacier, AK, United States +location = (1.0608692970038867, -2.5979225915935595) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PATO.TXT +zone = ('akz125', 0.0068326319972318106) + +[patq] +description = Atqasuk, AK, US +location = (1.2299335238804041, -2.7478463743398724) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PATQ.TXT +zone = ('akz202', 0.012590206959305624) + +[paun] +description = Unalakleet, AK, United States +location = (1.1149745038157108, -2.8064894372068823) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAUN.TXT +zone = ('akz212', 0.0021486130851384551) + +[pava] +description = Chevak, Ak, US +location = (1.0740756216773104, -2.8902652413026098) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAVA.TXT +zone = ('akz214', 0.017467524768102247) + +[pavc] +description = King Cove, AK, US +location = (0.96202548369927443, -2.8321457772111986) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAVC.TXT +zone = ('akz181', 0.013603600554666943) + +[pavd] +description = Valdez 2, AK, United States +location = (1.0669779493858669, -2.552834919250373) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAVD.TXT +zone = ('akz131', 0.0021563833983423968) + +[pavl] +description = Kivalina Airport, AK, United States +location = (1.1821696800174926, -2.8719392841566695) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAVL.TXT +zone = ('akz207', 0.016983873796171958) + +[pawd] +description = Seward, AK, United States +location = (1.0492337686572577, -2.6083945671055253) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAWD.TXT +zone = ('akz125', 0.0063042512876871747) + +[pawg] +description = Wrangell, AK, United States +location = (0.98582013916813049, -2.3102341532231612) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAWG.TXT +zone = ('akz026', 0.0062505981282926981) + +[pawi] +description = Wainwright Airport, AK, United States +location = (1.2327842283253283, -2.7931085796082589) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAWI.TXT +zone = ('akz201', 0.0097931299363120915) + +[pawm] +description = White Mountain Airport, White Mountain, United States +location = (1.1290389545224626, -2.8520910159305544) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAWM.TXT +zone = ('akz211', 0.0081711913816516837) + +[pawn] +description = Noatak, Noatak Airport, AK, United States +location = (1.1792607979308352, -2.8445957925420911) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAWN.TXT +zone = ('akz208', 0.0067312323431661927) + +[paws] +description = Wasilla, Wasilla Airport, AK, United States +location = (1.0746331574105865, -2.6099750597059428) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAWS.TXT +zone = ('akz111', 0.0031279413988372666) + +[paya] +description = Yakutat Airport, AK, United States +location = (1.0384709049366261, -2.4376431886187468) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAYA.TXT +zone = ('akz017', 0.010493779901826568) + +[pazk] +description = Eureka, Skelton Airport, AK, United States +location = (1.0809405834018213, -2.5685428825183214) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PAZK.TXT +zone = ('akz131', 0.014394003450096919) + +[pfno] +description = Noorvik, Ak, US +location = (1.1644836769306166, -2.8103291615612696) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PFNO.TXT +zone = ('akz209', 0.0016638608824092057) + +[pfsh] +description = Shaktoolik Airport, US +location = (1.12346843950875, -2.813819820065258) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PFSH.TXT +zone = ('akz212', 0.0077459903064831161) + +[pfyu] +description = Fort Yukon, Fort Yukon Airport, AK, United States +location = (1.1618075054108921, -2.5353816267304294) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PFYU.TXT +zone = ('akz220', 0.0035288148081521324) + +[pgro] +description = Rota Island, N. Mariana Is, Rota International Airport, GU, United States +location = (0.24754586557452907, 2.5350907385217636) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PGRO.TXT +zone = ('guz002', 0.00079465706363179768) + +[pgsn] +description = Saipan Island, Saipan International Airport, Northern Mariana Islands, United States +location = (0.26383560525980948, 2.5435264965730693) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PGSN.TXT +zone = ('guz004', 0.0013005700511888995) + +[pgua] +description = Andersen, Mariana Is, Andersen Air Force Base, GU, United States +location = (0.2370738900625631, 2.5295638625571151) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PGUA.TXT +zone = ('guz001', 0.0036499527077057427) + +[pgum] +description = Agana, Guam International Airport, GU, United States +location = (0.23532856081056874, 2.5272367568877896) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PGUM.TXT +zone = ('guz001', 0.00083931719942712457) + +[pgwt] +description = Tinian Island, N. Mariana Is, West Tinian Airport, GU, United States +location = (0.26150849959048372, 2.5414902791124097) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PGWT.TXT +zone = ('guz003', 0.00033931338383280451) + +[phbk] +description = Pmrf Barking Sands, HI, United States +location = (0.38455421185608396, -2.7887452564782729) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PHBK.TXT +zone = ('hiz003', 0.0018988542661676122) + +[phhi] +description = Wheeler Air Force Base / Oahu, HI, United States +location = (0.37495490097011513, -2.7582019945683722) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PHHI.TXT +zone = ('hiz010', 0.00010423200571916837) + +[phjh] +description = Lahaina / West Maui, HI, United States +location = (0.3668100311274749, -2.7337673850404514) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PHJH.TXT +zone = ('hiz017', 0.0019346861168572454) + +[phjr] +description = Kalaeloa Airport, HI, United States +location = (0.3720460188834579, -2.7587837709857035) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PHJR.TXT +zone = ('hiz005', 0.0019135781527402993) + +[phko] +description = Kona International Airport, HI, United States +location = (0.34441163906021438, -2.7235862977371514) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PHKO.TXT +zone = ('hiz023', 0.0044527350181149204) + +[phli] +description = Lihue Airport, HI, United States +location = (0.38368154723008679, -2.7808912748442984) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PHLI.TXT +zone = ('hiz002', 0.0021021690244537655) + +[phmk] +description = Kaunakakai, Molokai Airport, HI, United States +location = (0.36913713679680066, -2.7419122548830916) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PHMK.TXT +zone = ('hiz013', 0.000231797727164622) + +[phng] +description = Mcbh Kaneohe Bay Hawaii, HI, United States +location = (0.37437312455278365, -2.753256895021055) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PHNG.TXT +zone = ('hiz009', 0.0012078610216929681) + +[phnl] +description = Honolulu International Airport, HI, United States +location = (0.37233690709212364, -2.7567475535250434) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PHNL.TXT +zone = ('hiz005', 1.8727611974535563e-05) + +[phny] +description = Lanai City, Lanai Airport, HI, United States +location = (0.3627763813006436, -2.7393185016891555) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PHNY.TXT +zone = ('hiz015', 0.0008311858288004918) + +[phog] +description = Kahului Airport, HI, United States +location = (0.36477381366681483, -2.7302767265364629) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PHOG.TXT +zone = ('hiz019', 0.00096606812977984491) + +[phsf] +description = Bradshaw Army Air Field / Hawaii, HI, United States +location = (0.34528430368621155, -2.7148596514771799) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PHSF.TXT +zone = ('hiz027', 0.003439724695387409) + +[phto] +description = Hilo International Airport, HI, United States +location = (0.34412075085154864, -2.7061330052172083) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PHTO.TXT +zone = ('hiz025', 0.0040787863070676812) + +[pkmj] +description = Majuro Atoll, Marshall Islands Int. Airp., Marshall Islands +location = (0.12333660047426595, 2.9894581204576207) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PKMJ.TXT + +[pkmr] +description = Majuro Atoll, Nws Office, Marshall Islands +location = (0.12362748868293168, 2.9880036794142919) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PKMR.TXT + +[pkwa] +description = Kwajalein, Bucholz Aaf, Kwajalein Kmr Atol Airport, Marshall Islands +location = (0.1521345331321724, 2.9274989320118219) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PKWA.TXT + +[plch] +description = Christmas / Cassidy, New Zealand +location = (0.034615696831220871, -2.7486026836824031) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PLCH.TXT + +[pmdy] +description = Sand Island, Henderson Field Airport, HI, United States +location = (0.49247373727106664, -3.0956323166206094) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PMDY.TXT + +[ppiz] +description = Point Lay, Point Lay Lrrs Airport, AK, United States +location = (1.2167853768487134, -2.8448866807507573) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PPIZ.TXT +zone = ('akz201', 0.017218944936663354) + +[prni] +description = unknown station +location = None +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PRNI.TXT + +[ptkk] +description = Weno Island, Chuuk Int. Airp., Micronesia, Federated States Of +location = (0.13031791748224328, 2.6502824691533893) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PTKK.TXT + +[ptkr] +description = Koror, Palau, Nws Office, Palau +location = (0.12799081181291749, 2.3471769557237074) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PTKR.TXT + +[ptpn] +description = Pohnpei Island, Pohnpei Int. Airp., Micronesia, Federated States Of +location = (0.12188215943093735, 2.761110876655029) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PTPN.TXT + +[ptro] +description = Babelthuap Island, Babelthuap/Koror Airport, Palau +location = (0.12857258823024895, 2.3480496203497045) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PTRO.TXT + +[ptsa] +description = Kosrae Island, Kosrae Airport, Micronesia, Federated States Of +location = (0.093375114981696622, 2.8440140161247598) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PTSA.TXT + +[pttp] +description = Pohnpei, Nws Office, Micronesia, Federated States Of +location = (0.12159127122227163, 2.7614017648636953) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PTTP.TXT + +[ptya] +description = Yap Island, Yap Int. Airp., Micronesia, Federated States Of +location = (0.16551539073079558, 2.4100088087955034) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PTYA.TXT + +[pwak] +description = Wake Island, Wake Island Army Airfield Airport, GU, United States +location = (0.33655765742623989, 2.9085911984485504) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/PWAK.TXT + +[rckh] +description = Kaohsiung International Airport, Taiwan +location = (0.39415352274205273, 2.1005037547751755) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RCKH.TXT + +[rcss] +description = Sungshan / Taipei, Taiwan +location = (0.43749586583324529, 2.1214477057991075) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RCSS.TXT + +[rctp] +description = Chiang Kai Shek, Taiwan +location = (0.43778675404191097, 2.1156299416257931) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RCTP.TXT + +[rjaa] +description = New Tokyo Inter-National Airport, Japan +location = (0.62424609579663848, 2.4501513815913727) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RJAA.TXT + +[rjaf] +description = Matsumoto Airport, Japan +location = (0.63122741280461581, 2.4073908149175121) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RJAF.TXT + +[rjah] +description = Hyakuri Ab, Japan +location = (0.63151830101328155, 2.4507331580087044) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RJAH.TXT + +[rjai] +description = Ichikawa, Japan +location = (0.62366431937930711, 2.4420065117487324) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RJAI.TXT + +[rjak] +description = Kasumigaura Ab, Japan +location = (0.62890030713528999, 2.4469516112960497) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RJAK.TXT + +[rjat] +description = Fuji Ab, Japan +location = (0.61639211416266415, 2.4236805546027926) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RJAT.TXT + +[rjaw] +description = Iwojima, Japan +location = (0.43255076628592803, 2.4664411212766533) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RJAW.TXT + +[rjbb] +description = Kansai International Airport, Japan +location = (0.60068415089471505, 2.3605578133223308) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RJBB.TXT + +[rjbd] +description = Nankishirahama Airport, Japan +location = (0.58759418150475762, 2.3623031425743251) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RJBD.TXT + +[rjbe] +description = Kobe, JP +location = (0.60562925044203242, 2.3596851486963333) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RJBE.TXT + +[rjbt] +description = Tajima, Japan +location = (0.6198827726666527, 2.3527038316883564) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RJBT.TXT + +[rjca] +description = Asahikawa Ab, Japan +location = (0.7644542123735163, 2.4847670784225939) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RJCA.TXT + +[rjcb] +description = Obihiro Airport, Japan +location = (0.74583736701891012, 2.4996023770645457) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RJCB.TXT + +[rjcc] +description = Chitose Ab, Japan +location = (0.74700091985357298, 2.4725497736586335) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RJCC.TXT + +[rjch] +description = Hakodate Airport, Japan +location = (0.72896585091629829, 2.4577144750166817) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RJCH.TXT + +[rjck] +description = Kushiro Airport, Japan +location = (0.75107335477489312, 2.5167647813758229) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RJCK.TXT + +[rjcm] +description = Memambetsu Airport, Japan +location = (0.76590865341684489, 2.5161830049584917) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RJCM.TXT + +[rjcn] +description = Nakashibetsu Airport, Japan +location = (0.76038177745219626, 2.5301456389744463) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RJCN.TXT + +[rjco] +description = Sapporo Ab, Japan +location = (0.75252779581822171, 2.4676046741113162) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RJCO.TXT + +[rjct] +description = Tokachi Japanese Ground Self Defense Force, Japan +location = (0.74874624910556731, 2.4987297124385481) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RJCT.TXT + +[rjcw] +description = Wakkanai Airport, Japan +location = (0.79237948040542561, 2.4748768793279594) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RJCW.TXT + +[rjdc] +description = Yamaguchi Ube Airport, Japan +location = (0.59224839284340913, 2.2913264196598888) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RJDC.TXT + +[rjdm] +description = Metabaru Ab, Japan +location = (0.58148552912277751, 2.2762002328092712) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RJDM.TXT + +[rjdt] +description = Tsushima Airport, Japan +location = (0.59835704522538924, 2.2572924992459997) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RJDT.TXT + +[rjeb] +description = Mombetsu Airport, Japan +location = (0.77230819400749084, 2.5051292530291942) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RJEB.TXT + +[rjec] +description = Asahikawa Airport, Japan +location = (0.76212710670419048, 2.4862215194659223) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RJEC.TXT + +[rjfe] +description = Fukue Airport, Japan +location = (0.5701408889848143, 2.2485658529860282) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RJFE.TXT + +[rjff] +description = Fukuoka Airport, Japan +location = (0.58613974046142903, 2.2767820092266029) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RJFF.TXT + +[rjfg] +description = Tanegashima Airport, Japan +location = (0.5331980864842677, 2.2855086554865744) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RJFG.TXT + +[rjfk] +description = Kagoshima Airport, Japan +location = (0.55501470213419679, 2.2814362205652543) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RJFK.TXT + +[rjfm] +description = Miyazaki Airport, Japan +location = (0.55617825496885964, 2.294235301746546) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RJFM.TXT + +[rjfo] +description = Oita Airport, Japan +location = (0.58439441120943469, 2.2991804012938633) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RJFO.TXT + +[rjfr] +description = Kitakyushu Airport, Japan +location = (0.59050306359141491, 2.2855086554865744) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RJFR.TXT + +[rjfs] +description = Saga Airport, Japan +location = (0.57857664703612022, 2.2741640153486116) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RJFS.TXT + +[rjft] +description = Kumamoto Airport, Japan +location = (0.57304977107147159, 2.2837633262345802) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RJFT.TXT + +[rjfu] +description = Nagasaki Airport, Japan +location = (0.57450421211480007, 2.2674735865492996) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RJFU.TXT + +[rjfy] +description = Kanoya Ab, Japan +location = (0.54745160870888809, 2.2834724380259148) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RJFY.TXT + +[rjgg] +description = Nagoya Airport, Japan +location = (0.61522856132800119, 2.3899375223975685) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RJGG.TXT + +[rjka] +description = Amami Airport, Japan +location = (0.49625528398372104, 2.2639829280453112) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RJKA.TXT + +[rjng] +description = Gifu Ab, Japan +location = (0.61755566699732689, 2.388773969562906) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RJNG.TXT + +[rjnk] +description = Komatsu Ab, Japan +location = (0.63500895951727021, 2.3809199879289311) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RJNK.TXT + +[rjns] +description = Shizuoka Airport, JP +location = (0.60737457969402664, 2.4116959604057646) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RJNS.TXT + +[rjnt] +description = Toyama Airport, Japan +location = (0.63966317085592173, 2.3943008455275545) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RJNT.TXT + +[rjnw] +description = Noto, JP +location = (0.65065874514348609, 2.3902284106062339) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RJNW.TXT + +[rjny] +description = Shizuhama Ab, Japan +location = (0.60766546790269249, 2.4137903555081581) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RJNY.TXT + +[rjoa] +description = Hiroshima Airport, Japan +location = (0.60097503910338079, 2.3198334641091294) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RJOA.TXT + +[rjob] +description = Okayama Airport, Japan +location = (0.60650191506802953, 2.33612320379441) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RJOB.TXT + +[rjoc] +description = Izumo Airport, Japan +location = (0.61813744341465837, 2.319542575900464) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RJOC.TXT + +[rjoe] +description = Akeno Ab, Japan +location = (0.60272036835537512, 2.385574199267583) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RJOE.TXT + +[rjof] +description = Hofu Ab, Japan +location = (0.59399372209540346, 2.2959806309985407) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RJOF.TXT + +[rjoh] +description = Miho Ab, Japan +location = (0.61930099624932133, 2.3256512282824442) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RJOH.TXT + +[rjoi] +description = Mcas Iwakuni,Japan, JA, Japan +location = (0.59602993955606354, 2.3079070475538348) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RJOI.TXT + +[rjok] +description = Kochi Airport, Japan +location = (0.5852670758354318, 2.3329234334990869) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RJOK.TXT + +[rjom] +description = Matsuyama Airport, Japan +location = (0.59021217538274917, 2.3160519173964751) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RJOM.TXT + +[rjoo] +description = Osaka International Airport, Japan +location = (0.6070836914853609, 2.3640484718263193) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RJOO.TXT + +[rjop] +description = Komatsujima Ab, Japan +location = (0.59341194567807209, 2.3497949496016988) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RJOP.TXT + +[rjor] +description = Tottori Airport, Japan +location = (0.62017366087531844, 2.3416500797590585) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RJOR.TXT + +[rjos] +description = Tokushima Ab, Japan +location = (0.5957390513473978, 2.3495040613930334) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RJOS.TXT + +[rjot] +description = Takamatsu Airport, Japan +location = (0.5971934923907265, 2.3390320858810676) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RJOT.TXT + +[rjow] +description = Iwami Airport, Japan +location = (0.60504747402470083, 2.3003439541285267) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RJOW.TXT + +[rjoy] +description = Yao Airport, Japan +location = (0.60388392119003809, 2.3666664657043106) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RJOY.TXT + +[rjoz] +description = Ozuki Ab, Japan +location = (0.59428461030406921, 2.2872539847385691) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RJOZ.TXT + +[rjsa] +description = Aomori Airport, Japan +location = (0.7109307819790236, 2.4556782575560216) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RJSA.TXT + +[rjsc] +description = Yamagata Airport, Japan +location = (0.67049732097448822, 2.4498604933827073) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RJSC.TXT + +[rjsf] +description = Fukushima Airport, Japan +location = (0.64984425815922209, 2.4510240462173702) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RJSF.TXT + +[rjsh] +description = Hachinohe Ab, Japan +location = (0.70773101168370056, 2.469059115154645) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RJSH.TXT + +[rjsi] +description = Hanamaki Airport, Japan +location = (0.68824150170309728, 2.4632413509813302) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RJSI.TXT + +[rjsk] +description = Akita Airport, Japan +location = (0.6914412719984202, 2.447242499504716) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RJSK.TXT + +[rjsn] +description = Niigata Airport, Japan +location = (0.66235245113184815, 2.4280438777327782) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RJSN.TXT + +[rjso] +description = Ominato Ab, Japan +location = (0.71965742823899526, 2.4632413509813302) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RJSO.TXT + +[rjsr] +description = Odate-Noshiro Airport, Japan +location = (0.70133147109305471, 2.4469516112960497) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RJSR.TXT + +[rjss] +description = Sendai Airport, Japan +location = (0.66555222142717096, 2.4594598042686759) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RJSS.TXT + +[rjsu] +description = Kasuminome Ab, Japan +location = (0.6672975506791653, 2.4594598042686759) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RJSU.TXT + +[rjsy] +description = Shonai, Japan +location = (0.67747863798246566, 2.4396794060794069) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RJSY.TXT + +[rjtc] +description = Tachikawa Ab, Japan +location = (0.62308254296197574, 2.4329889772800954) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RJTC.TXT + +[rjte] +description = Tateyama Ab, Japan +location = (0.61057434998934967, 2.4405520707054045) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RJTE.TXT + +[rjtf] +description = Chofu Airport, Japan +location = (0.62250076654464415, 2.4353160829494209) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RJTF.TXT + +[rjth] +description = Hachijojima Airport, Japan +location = (0.57799487061878885, 2.4396794060794069) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RJTH.TXT + +[rjti] +description = Tokyo Heliport, Japan +location = (0.62191899012731278, 2.4408429589140699) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RJTI.TXT + +[rjtk] +description = Kisarazu Ab, Japan +location = (0.61784655520599263, 2.4420065117487324) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RJTK.TXT + +[rjtl] +description = Shimofusa Ab, Japan +location = (0.62482787221396996, 2.4437518410007275) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RJTL.TXT + +[rjto] +description = Oshima Airport, Japan +location = (0.6070836914853609, 2.4324072008627642) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RJTO.TXT + +[rjtr] +description = Zama Airfield, Japan +location = (0.6198827726666527, 2.4329889772800954) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RJTR.TXT + +[rjtt] +description = Tokyo International Airport, Japan +location = (0.62046454908398407, 2.4396794060794069) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RJTT.TXT + +[rjtu] +description = Utsunomiya Ab, Japan +location = (0.63733606518659602, 2.4411338471227357) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RJTU.TXT + +[rjty] +description = Yokota Ab, Japan +location = (0.62395520758797285, 2.4321163126540983) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RJTY.TXT + +[rkjb] +description = Muan Intl Airport, KO +location = (0.61051617234761646, 2.2057471086704337) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RKJB.TXT + +[rkjj] +description = Kwangju Ab, Korea, South +location = (0.61290145565867538, 2.2133683797374757) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RKJJ.TXT + +[rkjk] +description = Kunsan Ab, Korea, South +location = (0.62686408967463003, 2.2098777212334868) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RKJK.TXT + +[rkjy] +description = Yosu Airport, Korea, South +location = (0.60795635611135812, 2.2273310137534299) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RKJY.TXT + +[rkny] +description = Yangyang, KO +location = (0.66409778038384237, 2.2457151485411035) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RKNY.TXT + +[rkpc] +description = Cheju International Airport, Korea, South +location = (0.58468529941810043, 2.2078415037728267) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RKPC.TXT + +[rkpk] +description = Pusan / Kimhae International Airport, Korea, South +location = (0.61406500849333823, 2.2503111822380224) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RKPK.TXT + +[rkps] +description = Sach'On Ab, Korea, South +location = (0.61231967924134401, 2.2354758835960706) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RKPS.TXT + +[rkpu] +description = Ulsan, Korea, South +location = (0.62046454908398407, 2.2570016110373339) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RKPU.TXT + +[rksg] +description = Pyongtaek Ab, Korea, South +location = (0.64460827040323898, 2.2165681500327987) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RKSG.TXT + +[rksi] +description = Incheon International Airport, Korea, South +location = (0.65391669308054212, 2.2069688391468296) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RKSI.TXT + +[rksm] +description = Seoul E Ab, Korea, South +location = (0.65333491666321064, 2.2186043674934584) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RKSM.TXT + +[rkso] +description = Osan Ab, Korea, South +location = (0.64751715248989627, 2.21714992645013) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RKSO.TXT + +[rkss] +description = Seoul / Kimp'O International Airport, Korea, South +location = (0.65537113412387071, 2.2130774915288098) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RKSS.TXT + +[rkth] +description = Pohang Ab, Korea, South +location = (0.62802764250929288, 2.2587469402893281) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RKTH.TXT + +[rktn] +description = Taegu Ab, Korea, South +location = (0.62657320146596429, 2.2453660826907051) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RKTN.TXT + +[rktu] +description = Chongju Ab, Korea, South +location = (0.64053583548191895, 2.2252947962927703) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RKTU.TXT + +[roah] +description = Naha Airport, Japan +location = (0.45698537581384863, 2.2279127901707616) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ROAH.TXT + +[rodn] +description = Kadena Ab, Japan +location = (0.45989425790050587, 2.2299490076314217) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RODN.TXT + +[roig] +description = Ishigakijima, Japan +location = (0.42469678465195349, 2.1671171545596257) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ROIG.TXT + +[romy] +description = Miyakojima, Japan +location = (0.43255076628592803, 2.1866066645402293) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ROMY.TXT + +[rors] +description = Shimoji-Shima Island, Japan +location = (0.43342343091192514, 2.1842795588709034) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RORS.TXT + +[rotm] +description = Futenma Marine Corps Air Facility, Japan +location = (0.45843981685717722, 2.2296581194227558) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ROTM.TXT + +[rplb] +description = Subic Bay Weather Station, Philippines +location = (0.2583087292951608, 2.0990493137318471) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RPLB.TXT + +[rplc] +description = Clarkfield Pampanga International Airport, Philippines +location = (0.26499915809447239, 2.1039944132791644) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RPLC.TXT + +[rpli] +description = Laoag, Philippines +location = (0.31735903565430224, 2.1037035250704985) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RPLI.TXT + +[rpll] +description = Ninoy Aquino Inter-National Airport, Philippines +location = (0.25336362974784354, 2.1118483949131388) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RPLL.TXT + +[rpmd] +description = Davao Airport, Philippines +location = (0.12420926510026312, 2.193006205130875) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RPMD.TXT + +[rpmz] +description = Zamboanga, Philippines +location = (0.12042771838760874, 2.1304652402677449) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RPMZ.TXT + +[rpvm] +description = Masbate, Philippines +location = (0.21583905082996543, 2.1575178436736571) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/RPVM.TXT + +[saac] +description = Concordia Aerodrome, Argentina +location = (-0.54628805587422513, -1.0125818543653768) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SAAC.TXT + +[saag] +description = Gualeguaychu Aerodrome, Argentina +location = (-0.57595865315812877, -1.0230538298773428) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SAAG.TXT + +[saaj] +description = Junin Aerodrome, Argentina +location = (-0.60301125656404075, -1.0631964026732124) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SAAJ.TXT + +[saap] +description = Parana Aerodrome, Argentina +location = (-0.55472381392553105, -1.0556333092479038) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SAAP.TXT + +[saar] +description = Rosario Aerodrome, Argentina +location = (-0.57450421211480007, -1.0608692970038867) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SAAR.TXT + +[saav] +description = Sauce Viejo Aerodrome, Argentina +location = (-0.55326937288220246, -1.0614510734212181) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SAAV.TXT + +[sabe] +description = Aeroparque Bs. As. Aerodrome, Argentina +location = (-0.60330214477270661, -1.0195631713733542) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SABE.TXT + +[saco] +description = Cordoba Aerodrome, Argentina +location = (-0.54657894408289087, -1.1207922679890254) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SACO.TXT + +[sadf] +description = San Fernando, Ba, Argentina +location = (-0.60131925681696863, -1.0225835606066667) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SADF.TXT + +[sadp] +description = El Palomar Aerodrome, Argentina +location = (-0.60388392119003809, -1.0227629416686772) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SADP.TXT + +[saez] +description = Ezeiza Aerodrome, Argentina +location = (-0.60766546790269249, -1.0215993888340142) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SAEZ.TXT + +[same] +description = Mendoza Aerodrome, Argentina +location = (-0.57304977107147159, -1.200495637163433) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SAME.TXT + +[samm] +description = Malargue Aerodrome, Argentina +location = (-0.61959188445798696, -1.2144582711793876) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SAMM.TXT + +[samr] +description = San Rafael Aerodrome, Argentina +location = (-0.60359303298137235, -1.1938052083641215) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SAMR.TXT + +[sane] +description = Santiago Del Estero Aero., Argentina +location = (-0.48461975563709214, -1.1222467090323538) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SANE.TXT + +[sant] +description = Tucuman Aerodrome, Argentina +location = (-0.46862090416047752, -1.1362093430483085) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SANT.TXT + +[saoc] +description = Rio Cuarto Aerodrome, Argentina +location = (-0.57799487061878885, -1.1210831561976911) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SAOC.TXT + +[saou] +description = San Luis Aerodrome, Argentina +location = (-0.58061286449678029, -1.1580259586982375) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SAOU.TXT + +[sarc] +description = Corrientes Aero., Argentina +location = (-0.47909287967244346, -1.0256718237553344) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SARC.TXT + +[sare] +description = Resistencia Aero., Argentina +location = (-0.47909287967244346, -1.0306169233026516) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SARE.TXT + +[sarf] +description = Formosa Aerodrome, Argentina +location = (-0.45727626402251431, -1.0163634010780314) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SARF.TXT + +[sari] +description = Iguazu Aerodrome, Argentina +location = (-0.44913139417987413, -0.95062266591957822) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SARI.TXT + +[sarl] +description = Paso De Los Libres Aerodrome, Argentina +location = (-0.51807189963365019, -0.99745566751475934) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SARL.TXT + +[sarp] +description = Posadas Aero., Argentina +location = (-0.47763843862911487, -0.97680260469949309) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SARP.TXT + +[sasa] +description = Salta Aerodrome, Argentina +location = (-0.43371431912059094, -1.1428997718476201) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SASA.TXT + +[sasj] +description = Jujuy Aerodrome, Argentina +location = (-0.42556944927795071, -1.1359184548396428) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SASJ.TXT + +[satr] +description = Reconquista, Sf, Argentina +location = (-0.5098155226443547, -1.0418015749258485) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SATR.TXT + +[savc] +description = Comodoro Rivadavia Aerodrome, Argentina +location = (-0.79906990920473719, -1.1780972450961724) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SAVC.TXT + +[save] +description = Esquel Aerodrome, Argentina +location = (-0.74932802552289879, -1.2418017627939655) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SAVE.TXT + +[sawc] +description = El Calafate, AG +location = (-0.87755154790274892, -1.2575097260619144) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SAWC.TXT + +[sawe] +description = Rio Grande B. A., Argentina +location = (-0.93898713757294927, -1.1824605682261582) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SAWE.TXT + +[sawg] +description = Rio Gallegos Aerodrome, Argentina +location = (-0.90088078223773982, -1.2092222834234045) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SAWG.TXT + +[sawh] +description = Ushuaia Aerodrome, Argentina +location = (-0.95644043009289259, -1.1923507673207927) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SAWH.TXT + +[sawj] +description = San Julian Aerodrome, Argentina +location = (-0.86073820944187029, -1.1824605682261582) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SAWJ.TXT + +[saza] +description = Azul Airport, Argentina +location = (-0.64140850010791606, -1.0442886691099404) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SAZA.TXT + +[sazb] +description = Bahia Blanca Aerodrome, Argentina +location = (-0.67602419693913696, -1.0850130183231415) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SAZB.TXT + +[sazm] +description = Mar Del Plata Aerodrome, Argentina +location = (-0.6620615629231823, -1.005018760940068) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SAZM.TXT + +[sazn] +description = Neuquen Aerodrome, Argentina +location = (-0.67980574365179136, -1.1891509970254699) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SAZN.TXT + +[sazr] +description = Santa Rosa Aerodrome, Argentina +location = (-0.63820872981259325, -1.1216649326150225) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SAZR.TXT + +[sazs] +description = Bariloche Aerodrome, Argentina +location = (-0.71820298719566655, -1.2420926510026313) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SAZS.TXT + +[sazt] +description = Tandil Aerodrome, Argentina +location = (-0.64984425815922209, -1.0341075818066403) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SAZT.TXT + +[sbaa] +description = Conceicao Do Araguaia, Brazil +location = (-0.14398966328953219, -0.8601564330245387) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBAA.TXT + +[sbaf] +description = Afonsos Aeroporto, Brazil +location = (-0.39909862228937004, -0.7568911189482076) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBAF.TXT + +[sban] +description = Anapolis Braz-Afb, Brazil +location = (-0.28332511524041287, -0.85462955705989008) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBAN.TXT + +[sbaq] +description = Araraquara, BZ +location = (-0.38083084278516272, -0.84002696898487084) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBAQ.TXT + +[sbar] +description = Aracaju Aeroporto, Brazil +location = (-0.19169532951071053, -0.6469353760725649) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBAR.TXT + +[sbat] +description = Alta Floresta Aeroporto, Brazil +location = (-0.17220581953010719, -0.97912971036881891) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBAT.TXT + +[sbau] +description = Aracatuba, BZ +location = (-0.37000980142279788, -0.88016954178074036) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBAU.TXT + +[sbbe] +description = Belem Aeroporto, Brazil +location = (-0.024143721319254893, -0.84619379900858416) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBBE.TXT + +[sbbg] +description = Bage Aeroporto, Brazil +location = (-0.54716072050022235, -0.94451401353759801) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBBG.TXT + +[sbbh] +description = Belo Horizonte Aeroporto, Brazil +location = (-0.34644785652087445, -0.76707220625150785) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBBH.TXT + +[sbbi] +description = Curitiba, Brazil +location = (-0.44389540642389114, -0.85986554481587296) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBBI.TXT + +[sbbq] +description = Barbacena, Brazil +location = (-0.37088246604879505, -0.76387243595618493) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBBQ.TXT + +[sbbr] +description = Brasilia Aeroporto, Brazil +location = (-0.27692557464976697, -0.83659448812261528) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBBR.TXT + +[sbbu] +description = Bauru, Brazil +location = (-0.38949931140340122, -0.85637488631188441) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBBU.TXT + +[sbbv] +description = Boa Vista, Boa Vista Intl, Brazil +location = (0.049450995473172672, -1.0594148559605581) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBBV.TXT + +[sbbw] +description = Barra Do Garcas, Brazil +location = (-0.27692557464976697, -0.91426163983636299) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBBW.TXT + +[sbca] +description = Cascavel, BZ +location = (-0.43633231299858238, -0.93375114981696627) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBCA.TXT + +[sbcb] +description = Cabo Frio, BZ +location = (-0.40002946455710037, -0.73443454923921381) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBCB.TXT + +[sbcc] +description = Cachimbo, Brazil +location = (-0.1628973968528041, -0.95905842397088414) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBCC.TXT + +[sbcf] +description = Belo Horizonte, Brazil +location = (-0.34790229756420304, -0.76678131804284211) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBCF.TXT + +[sbcg] +description = Campo Grande Aeroporto, Brazil +location = (-0.35721072024150607, -0.95411332442356678) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBCG.TXT + +[sbci] +description = Maranhao / Carolina Airport, Brazil +location = (-0.12769992360425178, -0.8284496182799751) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBCI.TXT + +[sbcj] +description = Carajas / Maraba, Brazil +location = (-0.10675597258031981, -0.87266462599716477) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBCJ.TXT + +[sbcm] +description = Cricium/Forquilhinh, BZ +location = (-0.50143309409797088, -0.86254171633559773) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBCM.TXT + +[sbco] +description = Porto Alegre, Brazil +location = (-0.52388966380696456, -0.89389946522976249) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBCO.TXT + +[sbcp] +description = Campos, Brazil +location = (-0.37960911230876665, -0.72140275749098959) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBCP.TXT + +[sbcr] +description = Corumba, Brazil +location = (-0.33306699892225122, -1.0035643198967394) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBCR.TXT + +[sbct] +description = Curitiba Aeroporto, Brazil +location = (-0.44534984746721973, -0.85812021556387863) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBCT.TXT + +[sbcx] +description = Caxias Do Sul, BZ +location = (-0.50928707573194532, -0.89325951117069791) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBCX.TXT + +[sbcy] +description = Cuiaba Aeroporto, Brazil +location = (-0.27314402793711257, -0.97912971036881891) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBCY.TXT + +[sbcz] +description = Cruzeiro Do Sul, Brazil +location = (-0.13322679956890049, -1.2682725897825462) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBCZ.TXT + +[sbdn] +description = Presidente Prudente, Brazil +location = (-0.38600865289941255, -0.89680834731641967) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBDN.TXT + +[sbeg] +description = Eduardo Gomes International, Brazil +location = (-0.052941653977161329, -1.0480702158225947) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBEG.TXT + +[sbek] +description = Jacareacanga, Brazil +location = (-0.10937396645831132, -1.0076367548180596) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBEK.TXT + +[sbes] +description = S. P. Aldeia Aerodrome, Brazil +location = (-0.39822595766337288, -0.73478361508961276) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBES.TXT + +[sbfi] +description = Foz Do Iguacu Aeroporto, Brazil +location = (-0.44534984746721973, -0.9526588833802383) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBFI.TXT + +[sbfl] +description = Florianopolis Aeroporto, Brazil +location = (-0.48287442638509787, -0.8473573518432469) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBFL.TXT + +[sbfn] +description = Fernando De Noronha, Brazil +location = (-0.067195176201781684, -0.56577756585482841) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBFN.TXT + +[sbfz] +description = Fortaleza / Pinto Martins, Brazil +location = (-0.066031623367118805, -0.67253353843514829) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBFZ.TXT + +[sbgl] +description = Galeao, Brazil +location = (-0.39822595766337288, -0.75485490148754752) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBGL.TXT + +[sbgm] +description = Guajara Mirim, BZ +location = (-0.1881464933649887, -1.1393509357018983) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBGM.TXT + +[sbgo] +description = Goiania Aeroporto, Brazil +location = (-0.29030643224839014, -0.85899288018987585) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBGO.TXT + +[sbgr] +description = Guarulhos Civ / Mil, Brazil +location = (-0.40898882138400455, -0.81099632576003178) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBGR.TXT + +[sbgu] +description = Tancredo Thomas De, BZ +location = (-0.44296456415616081, -0.89919363062747859) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBGU.TXT + +[sbgw] +description = Guaratingueta, Brazil +location = (-0.39764418124604145, -0.78888882190143705) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBGW.TXT + +[sbht] +description = Altamira, Brazil +location = (-0.055850536063818547, -0.91106186954104007) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBHT.TXT + +[sbic] +description = Itacoatiara, BZ +location = (-0.054628805587422516, -1.0197958819402868) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBIC.TXT + +[sbih] +description = Itaituba, Brazil +location = (-0.074176493209759012, -0.97738438111682457) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBIH.TXT + +[sbil] +description = Ilheus Aeroporto, Brazil +location = (-0.25859961750382648, -0.68126018469511995) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBIL.TXT + +[sbiz] +description = Imperatriz, Brazil +location = (-0.096574885277019573, -0.82903139469730658) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBIZ.TXT + +[sbjf] +description = Juiz De Fora, Brazil +location = (-0.37990000051743239, -0.75660023073954186) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBJF.TXT + +[sbjp] +description = Joao Pessoa, Brazil +location = (-0.12391837689159739, -0.6085381325286896) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBJP.TXT + +[sbjr] +description = Rio / Jacarepagua, Brazil +location = (-0.40113483975003011, -0.7568911189482076) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBJR.TXT + +[sbjv] +description = Lauro Carneiro De L, BZ +location = (-0.45762532987291321, -0.85172067497323278) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBJV.TXT + +[sbkg] +description = Campina Grande, Brazil +location = (-0.12595459435225745, -0.62628231325729855) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBKG.TXT + +[sbkp] +description = Campinas Aeroporto, Brazil +location = (-0.4014257279586958, -0.82263185410666062) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBKP.TXT + +[sblo] +description = Londrina Aeroporto, Brazil +location = (-0.40724349213201022, -0.89244502418643379) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBLO.TXT + +[sblp] +description = Bom Jesus Da Lapa, Brazil +location = (-0.23154701409791439, -0.75776378357420471) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBLP.TXT + +[sbls] +description = Lagoa Santa, BZ +location = (-0.34330626386728463, -0.76619954162551063) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBLS.TXT + +[sbma] +description = Maraba, Brazil +location = (-0.093375114981696622, -0.857829327355213) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBMA.TXT + +[sbmd] +description = Monte Dourado, BZ +location = (-0.015533430342749533, -0.9180431865490174) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBMD.TXT + +[sbme] +description = Macae, Brazil +location = (-0.3900810878207327, -0.72896585091629829) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBME.TXT + +[sbmg] +description = Maringa, Brazil +location = (-0.40869793317533887, -0.9066985464110543) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBMG.TXT + +[sbmk] +description = Montes Claros, Brazil +location = (-0.29176087329171874, -0.76561776520817926) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBMK.TXT + +[sbml] +description = Marilia, BZ +location = (-0.3871140280923423, -0.87126836259556939) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBML.TXT + +[sbmn] +description = Manaus Aeroporto, Brazil +location = (-0.054977871437821381, -1.046906662987932) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBMN.TXT + +[sbmo] +description = Maceio Aeroporto, Brazil +location = (-0.16609716714812706, -0.62453698400530422) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBMO.TXT + +[sbmq] +description = Macapa, Brazil +location = (0.00058177641733144316, -0.87353729062316188) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBMQ.TXT + +[sbms] +description = Mocoro / 17 Rosado, Brazil +location = (-0.090757121103705138, -0.65217136382854779) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBMS.TXT + +[sbmt] +description = Marte Civ / Mil, Brazil +location = (-0.41044326242733314, -0.81390520784668896) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBMT.TXT + +[sbmy] +description = Manicore, Brazil +location = (-0.10151998482433683, -1.0698868314725241) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBMY.TXT + +[sbnf] +description = Ministro Victor Kon, BZ +location = (-0.46896997001087637, -0.84910268109524134) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBNF.TXT + +[sbnm] +description = Santo Angelo Arp, BZ +location = (-0.49340457953879696, -0.94544485580532833) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBNM.TXT + +[sbnt] +description = Natal Aeroporto, Brazil +location = (-0.10326531407633117, -0.61522856132800119) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBNT.TXT + +[sboi] +description = Oiapoque, Brazil +location = (0.066904287993115971, -0.90466232895039422) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBOI.TXT + +[sbpa] +description = Porto Alegre Aero-Porto, Brazil +location = (-0.52359877559829882, -0.8933176888124309) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBPA.TXT + +[sbpb] +description = Parnaiba Aeroporto, Brazil +location = (-0.050905436516501278, -0.72867496270763255) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBPB.TXT + +[sbpc] +description = Pocos De Caldas, Brazil +location = (-0.38135444156076104, -0.81274165501202622) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBPC.TXT + +[sbpf] +description = Passo Fundo, Brazil +location = (-0.49305551368839812, -0.91455252804502862) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBPF.TXT + +[sbpj] +description = Tocantins, BZ +location = (-0.17941984710501707, -0.84386669333925834) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBPJ.TXT + +[sbpk] +description = Pelotas, Brazil +location = (-0.55617825496885964, -0.91367986341903151) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBPK.TXT + +[sbpl] +description = Petrolina, Brazil +location = (-0.16318828506146982, -0.70773101168370056) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBPL.TXT + +[sbpn] +description = Porto Nacional Aeroporto, Brazil +location = (-0.18675022996339324, -0.84473935796525546) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBPN.TXT + +[sbpp] +description = Ponta Pora Intl, Brazil +location = (-0.39357174632472131, -0.97214839336084158) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBPP.TXT + +[sbpr] +description = Belo Horizonte, BZ +location = (-0.34732052114687156, -0.76759580502710612) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBPR.TXT + +[sbps] +description = Porto Seguro, Brazil +location = (-0.28681577374440148, -0.68184196111245143) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBPS.TXT + +[sbpv] +description = Porto Velho Aeroporto, Brazil +location = (-0.15300719775816957, -1.1155562802330423) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBPV.TXT + +[sbqv] +description = Vitoria Da Conquista, Brazil +location = (-0.26092672317315224, -0.71354877585701504) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBQV.TXT + +[sbrb] +description = Rio Branco, Brazil +location = (-0.17453292519943295, -1.1833332328521553) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBRB.TXT + +[sbrf] +description = Recife Aeroporto, Brazil +location = (-0.14078989299420924, -0.60824724432002386) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBRF.TXT + +[sbrj] +description = Rio De Janeiro Aeroporto, Brazil +location = (-0.39968039870670147, -0.75340046044421893) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBRJ.TXT + +[sbrp] +description = Leite Lopes / Ribeir, Brazil +location = (-0.36884624858813497, -0.83397649424462372) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBRP.TXT + +[sbsc] +description = Rio De Janeiro-Santa Cruz Ab, Brazil +location = (-0.40026217512403289, -0.76299977133018781) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBSC.TXT + +[sbsj] +description = Sao Jose Dos Campo, Brazil +location = (-0.40549816288001589, -0.80052435024806579) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBSJ.TXT + +[sbsl] +description = Sao Luiz Aeroporto, Brazil +location = (-0.045378560551852569, -0.7720173057988251) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBSL.TXT + +[sbsm] +description = Santa Maria Aero-Porto, Brazil +location = (-0.51865367605098156, -0.93724180832095505) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBSM.TXT + +[sbsn] +description = Santarem-Aeroporto, Brazil +location = (-0.042469678465195358, -0.954985989049564) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBSN.TXT + +[sbsp] +description = Sao Paulo/Congonhas Aeroporto, Brazil +location = (-0.41218859167932748, -0.8141960960553547) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBSP.TXT + +[sbst] +description = Santos Aeroporto, Brazil +location = (-0.41771546764397621, -0.80808744367337448) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBST.TXT + +[sbsv] +description = Salvador Aeroporto, Brazil +location = (-0.22514747350726852, -0.66904287993115974) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBSV.TXT + +[sbta] +description = Taubate, BZ +location = (-0.40177479380909464, -0.795346540133816) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBTA.TXT + +[sbte] +description = Teresina Aeroporto, Brazil +location = (-0.08813912722571364, -0.74729180806223883) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBTE.TXT + +[sbtf] +description = Tefe, Brazil +location = (-0.058759418150475765, -1.1289371378316655) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBTF.TXT + +[sbtk] +description = Tarauaca, Brazil +location = (-0.14253522224620357, -1.2351113339946538) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBTK.TXT + +[sbtt] +description = Tabatinga, Brazil +location = (-0.063995405906458747, -1.2159127122227162) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBTT.TXT + +[sbtu] +description = Tucurui, Brazil +location = (-0.064868070532455913, -0.86771952644984751) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBTU.TXT + +[sbua] +description = Sao Gabriel Da Cachoeira, Brazil +location = (-0.0023271056693257726, -1.1708250398795292) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBUA.TXT + +[sbuf] +description = Paulo Afonso, Brazil +location = (-0.16406094968746698, -0.66700666247049967) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBUF.TXT + +[sbug] +description = Uruguaiana Aeroporto, Brazil +location = (-0.51981722888564452, -0.99541945005409926) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBUG.TXT + +[sbul] +description = Uberlandia, Brazil +location = (-0.32957634041826256, -0.84183047587859827) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBUL.TXT + +[sbur] +description = Uberaba, Brazil +location = (-0.34528430368621155, -0.83717626453994676) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBUR.TXT + +[sbvh] +description = Vilhena Aeroporto, Brazil +location = (-0.22165681500327983, -1.0489428804485921) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBVH.TXT + +[sbvt] +description = Vitoria Aeroporto, Brazil +location = (-0.35372006173751747, -0.70307680034504905) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBVT.TXT + +[sbya] +description = Iauarete, Brazil +location = (0.010762863720631699, -1.2077678423800762) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBYA.TXT + +[sbys] +description = Pirassununga, Brazil +location = (-0.38368154723008679, -0.8261225126106494) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SBYS.TXT + +[scap] +description = Alto Palena, CH +location = (-0.76131261971992648, -1.2527973370815297) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SCAP.TXT + +[scar] +description = Arica, Chile +location = (-0.31997702953229373, -1.227548240569345) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SCAR.TXT + +[scas] +description = Puerto Aisen, CH +location = (-0.79237948040542561, -1.2681562344990798) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SCAS.TXT + +[scat] +description = Desierto De Atacama, CH +location = (-0.4756022211684548, -1.235169511636387) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SCAT.TXT + +[scba] +description = Balmaceda, Chile +location = (-0.8013970148740629, -1.2511101854712687) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SCBA.TXT + +[sccc] +description = Chile Chico, Chile +location = (-0.81245076680336037, -1.2514010736799344) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SCCC.TXT + +[sccf] +description = Calama/El Loa, CH +location = (-0.39269908169872414, -1.2025318546240931) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SCCF.TXT + +[scch] +description = Chillan, Chile +location = (-0.63820872981259325, -1.2572188378532487) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SCCH.TXT + +[scci] +description = Punta Arenas, Chile +location = (-0.92502450355699462, -1.2365657750379824) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SCCI.TXT + +[sccy] +description = Coyhaique, Chile +location = (-0.79557925070074864, -1.2586732788965773) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SCCY.TXT + +[scda] +description = Iquique / Diego Arac, Chile +location = (-0.35837427307616904, -1.2249302466913536) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SCDA.TXT + +[scel] +description = Pudahuel, Chile +location = (-0.58264908195744036, -1.2354022222033196) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SCEL.TXT + +[scfa] +description = Antofagasta, Chile +location = (-0.40898882138400455, -1.2292935698213394) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SCFA.TXT + +[scfm] +description = Capt Fuentes Mar, CH +location = (-0.9293878266869805, -1.2273155300024123) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SCFM.TXT + +[scft] +description = Futaleufu, CH +location = (-0.75345863808595215, -1.2534954687823274) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SCFT.TXT + +[scge] +description = Maria Dolores, CH +location = (-0.65240407439548043, -1.2639674442942934) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SCGE.TXT + +[scgz] +description = Guardiamarina Zanart, CH +location = (-0.95870935812048519, -1.1803661731237649) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SCGZ.TXT + +[schr] +description = Cochrane, Chile +location = (-0.82437718335865495, -1.2662363723218861) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SCHR.TXT + +[scic] +description = Curico, Chile +location = (-0.61028346178068393, -1.2432562038372941) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SCIC.TXT + +[scie] +description = Concepcion, Chile +location = (-0.6416993883165818, -1.2749630185818577) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SCIE.TXT + +[scip] +description = Isla De Pascua, Chile +location = (-0.47385689191646047, -1.9096810898904624) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SCIP.TXT + +[scir] +description = Isla Robinsón Crusoe Airport, Juan Fernández Islands, Valparaíso, Chile +location = (-0.58757961382326762, -1.3775641185225218) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SCIR.TXT + +[scjo] +description = Osorno/Canal Bajo, CH +location = (-0.70860367630969778, -1.2749630185818577) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SCJO.TXT + +[scmk] +description = Ad Melinka, CH +location = (-0.76602500870031121, -1.2870057904206185) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SCMK.TXT + +[scnt] +description = Puerto Natales, CH +location = (-0.90198615743066946, -1.2657127735462876) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SCNT.TXT + +[scon] +description = Quellon, CH +location = (-0.75258597345995482, -1.2849113953182254) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SCON.TXT + +[scrd] +description = Vina Del Mar, CH +location = (-0.57683131778412589, -1.2493066785775411) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SCRD.TXT + +[scrg] +description = De La Independen, CH +location = (-0.59637900540646238, -1.2349949787111876) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SCRG.TXT + +[scrm] +description = Centro Met Antartico, AY +location = (-1.0852457288900741, -1.0293951928262555) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SCRM.TXT + +[scse] +description = La Serena, Chile +location = (-0.52185344634630448, -1.2426744274199626) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SCSE.TXT + +[scsn] +description = Santo Domingo, CH +location = (-0.58695422744569303, -1.250004810278339) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SCSN.TXT + +[sctb] +description = Eulogio Sanchez, CH +location = (-0.58381263479210332, -1.2309807214316006) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SCTB.TXT + +[sctc] +description = Temuco, Chile +location = (-0.6763150851478027, -1.2676908133652147) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SCTC.TXT + +[scte] +description = Puerto Montt, Chile +location = (-0.72285719853431807, -1.2755447949991892) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SCTE.TXT + +[scvd] +description = Valdivia, Chile +location = (-0.6914412719984202, -1.2755447949991892) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SCVD.TXT + +[scvm] +description = Vina Del Mar, CH +location = (-0.57508598853213166, -1.2475613493255469) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SCVM.TXT + +[seco] +description = Coca/Francisco, EQ +location = (0.0078539816339744835, -1.3430308594096367) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SECO.TXT + +[secu] +description = Cuenca / Mariscal Lamar, Ecuador +location = (-0.050323660099169838, -1.3785192208668546) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SECU.TXT + +[segu] +description = Guayaquil / Simon Bolivar, Ecuador +location = (-0.037524578917878082, -1.3942271841348037) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SEGU.TXT + +[selt] +description = Latacunga, Ecuador +location = (-0.015998851476614687, -1.3721196802762086) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SELT.TXT + +[semt] +description = Manta, Ecuador +location = (-0.016580627893946129, -1.4081898181507584) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SEMT.TXT + +[sequ] +description = Quito / Mariscal Sucre, Ecuador +location = (-0.0026179938779914941, -1.3697925746068831) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SEQU.TXT + +[sgaj] +description = Silvio Pettirossi International, Paraguay +location = (-0.44052110320336874, -1.0038959324546184) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SGAJ.TXT + +[sgas] +description = Asuncion / Aeropuerto, Paraguay +location = (-0.4409865243372339, -1.0058914255660651) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SGAS.TXT + +[sgbn] +description = Bahia Negra, Paraguay +location = (-0.35284797888793762, -1.0152004300197857) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SGBN.TXT + +[sgco] +description = Concepcion, Paraguay +location = (-0.40869793317533887, -1.0000736613927508) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SGCO.TXT + +[sgen] +description = Encarnacion, Paraguay +location = (-0.4767657740031177, -0.97447549903016739) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SGEN.TXT + +[sges] +description = Aeropuerto Guarany, Paraguay +location = (-0.44418629463255688, -0.95731309471888981) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SGES.TXT + +[sggr] +description = Saltos Del Guaira, Paraguay +location = (-0.41946021511955323, -0.94858644845891815) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SGGR.TXT + +[sglv] +description = Puerto Casado, Paraguay +location = (-0.38891695320965247, -1.011126831545631) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SGLV.TXT + +[sgme] +description = Mariscal Estigarribia, Paraguay +location = (-0.38426332364741822, -1.0576695267085636) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SGME.TXT + +[sgpc] +description = Pozo Colorado, Paraguay +location = (-0.41015237421866746, -1.0259621301875828) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SGPC.TXT + +[sgpg] +description = Pelayo Prats Gill, Paraguay +location = (-0.39357174632472131, -1.0742501546025098) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SGPG.TXT + +[sgpi] +description = Carlos Miguel Gimenez, Pilar, Paraguay +location = (-0.46917010691620253, -1.0178417414965839) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SGPI.TXT + +[sgpj] +description = Dr. Augusto Roberto Fuster International Airport, Pedro Juan Caballero, Paraguay +location = (-0.3951667852748264, -0.97441246937311354) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SGPJ.TXT + +[sgsj] +description = San Juan Bautista, Paraguay +location = (-0.46542171564157186, -0.99716419752967622) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SGSJ.TXT + +[sgsp] +description = San Pedro, Paraguay +location = (-0.42033287974555039, -0.99629153290367911) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SGSP.TXT + +[sgvr] +description = Villarrica, Paraguay +location = (-0.44942228238853987, -0.98494689276571601) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SGVR.TXT + +[skar] +description = Armenia / El Eden, Colombia +location = (0.078539816339744828, -1.3215051319683733) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SKAR.TXT + +[skbg] +description = Bucaramanga / Palonegro, Colombia +location = (0.12391837689159739, -1.2775810124598492) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SKBG.TXT + +[skbo] +description = Bogota / Eldorado, Colombia +location = (0.082321363052399218, -1.2941616403537954) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SKBO.TXT + +[skbq] +description = Barranquilla / Ernestocortissoz, Colombia +location = (0.1899500002587162, -1.3052153922830927) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SKBQ.TXT + +[skcc] +description = Cucuta / Camilo Daza, Colombia +location = (0.13846278732488349, -1.2656545959045546) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SKCC.TXT + +[skcg] +description = Cartagena / Rafael Nunez, Colombia +location = (0.18238690683340741, -1.3180144734643846) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SKCG.TXT + +[skcl] +description = Cali / Alfonso Bonillaaragon, Colombia +location = (0.061959188445798695, -1.3331406603150022) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SKCL.TXT + +[skej] +description = Barrancabermeja / Yariguies, Colombia +location = (0.12246393584826878, -1.2880529879718152) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SKEJ.TXT + +[skib] +description = Ibague / Perales, Colombia +location = (0.077376263505081949, -1.3116149328737388) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SKIB.TXT + +[skip] +description = Ipiales / San Luis, Colombia +location = (0.014253522224620358, -1.3549572759649313) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SKIP.TXT + +[sklc] +description = Apartado / Los Cedros, Colombia +location = (0.13642656986422341, -1.3386675362796507) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SKLC.TXT + +[sklt] +description = Leticia / Vasquez Cobo, Colombia +location = (-0.072722052166430406, -1.2208578117700335) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SKLT.TXT + +[skmd] +description = Medellin / Olaya Herrera, Colombia +location = (0.10850130183231416, -1.319468914507713) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SKMD.TXT + +[skmr] +description = Monteria / Los Garzones, Colombia +location = (0.1538798623841667, -1.323832237637699) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SKMR.TXT + +[skmz] +description = Manizales Lnubia, CO +location = (0.087790061375314782, -1.3171999864801205) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SKMZ.TXT + +[sknv] +description = Neiva / Benito Salas, Colombia +location = (0.051778101142498444, -1.3142329267517301) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SKNV.TXT + +[skpc] +description = Puerto Carreno / A. Guauquea, Colombia +location = (0.10762863720631699, -1.1780972450961724) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SKPC.TXT + +[skpe] +description = Pereira / Matecana, Colombia +location = (0.084066692304393537, -1.3217960201770389) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SKPE.TXT + +[skps] +description = Pasto / Antonio Narin, Colombia +location = (0.024725497736586336, -1.3485577353742852) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SKPS.TXT + +[skpv] +description = Providencia Isla / El Embrujo, Colombia +location = (0.23329234334990873, -1.4198253464973869) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SKPV.TXT + +[skrg] +description = Rionegro / J. M. Cordova, Colombia +location = (0.10704686078898555, -1.316560032421056) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SKRG.TXT + +[skrh] +description = Riohacha / Almirante Padilla, Colombia +location = (0.20129464039667935, -1.2729268011211978) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SKRH.TXT + +[sksm] +description = Santa Marta / Simon Bolivar, Colombia +location = (0.19431332338870203, -1.295616081397124) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SKSM.TXT + +[sksp] +description = San Andres Isla / Sesquicentenario, Colombia +location = (0.21962059754261981, -1.426224887088033) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SKSP.TXT + +[skuc] +description = Arauca / Santiago Perez, Colombia +location = (0.12333660047426595, -1.2345295575773225) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SKUC.TXT + +[skui] +description = Quibdo / El Carano, Colombia +location = (0.09977465557234251, -1.3372130952363221) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SKUI.TXT + +[skvp] +description = Valledupar / Alfonso Lopez, Colombia +location = (0.18209601862474173, -1.2784536770858463) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SKVP.TXT + +[skvv] +description = Villavicencio / Vanguardia, Colombia +location = (0.072722052166430406, -1.2848532176764922) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SKVV.TXT + +[slas] +description = Ascencion De Guarayos, Bolivia +location = (-0.27430758077177547, -1.101302758008422) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SLAS.TXT + +[slbj] +description = Bermejo, Bermejo, Bolivia +location = (-0.39746969486295536, -1.1224715248933033) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SLBJ.TXT + +[slca] +description = Camiri, Bolivia +location = (-0.3490658503988659, -1.1088658514337306) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SLCA.TXT + +[slcb] +description = Cochabamba, Bolivia +location = (-0.30397817805567906, -1.1551170766115806) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SLCB.TXT + +[slco] +description = Cobija, Bolivia +location = (-0.19256799413670769, -1.200495637163433) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SLCO.TXT + +[slcp] +description = Concepcion, Bolivia +location = (-0.28187067419708417, -1.0823950244451501) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SLCP.TXT + +[slet] +description = Santa Cruz / El Trompillo, Bolivia +location = (-0.31066860685499065, -1.1027571990517504) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SLET.TXT + +[slje] +description = San Jose De Chiquitos, Bolivia +location = (-0.31066860685499065, -1.0599966323778895) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SLJE.TXT + +[sljo] +description = San Joaquin, Bolivia +location = (-0.22805635559392573, -1.1312642435009912) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SLJO.TXT + +[sljv] +description = San Javier, Bolivia +location = (-0.28390689165774424, -1.0902490060791246) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SLJV.TXT + +[sllp] +description = La Paz / Alto, Bolivia +location = (-0.28827021478773007, -1.190023661651467) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SLLP.TXT + +[slmg] +description = Magdalena, Bolivia +location = (-0.23271056693257727, -1.1190469387370308) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SLMG.TXT + +[slor] +description = Oruro, Bolivia +location = (-0.31357748894164783, -1.1705341516708636) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SLOR.TXT + +[slpo] +description = Potosi, Bolivia +location = (-0.34121186876489146, -1.1472630949776059) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SLPO.TXT + +[slps] +description = Puerto Suarez, Bolivia +location = (-0.33132166967025689, -1.0090911958613882) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SLPS.TXT + +[slrb] +description = Robore, Bolivia +location = (-0.31968614132362805, -1.0431251162752777) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SLRB.TXT + +[slri] +description = Riberalta, Bolivia +location = (-0.19198621771937624, -1.1539535237769174) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SLRI.TXT + +[slrq] +description = Rurrenabaque, Bolivia +location = (-0.25249096512184632, -1.1792607979308352) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SLRQ.TXT + +[slry] +description = Reyes, Bolivia +location = (-0.24987297124385485, -1.1760610276355126) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SLRY.TXT + +[slsa] +description = Santa Ana, Bolivia +location = (-0.24027366035788605, -1.142027107221623) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SLSA.TXT + +[slsb] +description = San Borja, Bolivia +location = (-0.25947228212982365, -1.1670434931668749) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SLSB.TXT + +[slsi] +description = San Ignacio De Velasco, Bolivia +location = (-0.28594310911840431, -1.0640690672992097) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SLSI.TXT + +[slsr] +description = Santa Rosa de Yacuma, Bolivia +location = (-0.22718370317408357, -1.1376638018460443) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SLSR.TXT + +[slsu] +description = Sucre, Bolivia +location = (-0.33190344608758832, -1.1397000015522971) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SLSU.TXT + +[slti] +description = San Matías Airport, San Matías, Bolivia +location = (-0.28508967220299997, -1.0190201529009453) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SLTI.TXT + +[sltj] +description = Tarija, Bolivia +location = (-0.37611845380477804, -1.1292280260403313) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SLTJ.TXT + +[sltr] +description = Trinidad, Bolivia +location = (-0.25859961750382648, -1.1330095727529856) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SLTR.TXT + +[slvg] +description = Vallegrande, BL +location = (-0.32218777991815323, -1.1185815176031659) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SLVG.TXT + +[slvm] +description = Villamontes, Bolivia +location = (-0.37088246604879505, -1.1074114103904023) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SLVM.TXT + +[slvr] +description = Viru-Viru, Bolivia +location = (-0.30775972476833341, -1.1018845344257533) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SLVR.TXT + +[slya] +description = Yacuiba, Bolivia +location = (-0.38309977081275531, -1.1109020688943907) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SLYA.TXT + +[smjp] +description = Johan A. Pengel, Suriname +location = (0.095120444233690968, -0.96313085889220418) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SMJP.TXT + +[smzo] +description = Zorg En Hoop, SM +location = (0.10157816246606999, -0.96307268125047107) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SMZO.TXT + +[soca] +description = Cayenne / Rochambeau, French Guiana +location = (0.084357580513059263, -0.91397075162769725) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SOCA.TXT + +[spay] +description = Atalaya, Peru +location = (-0.1873320063807247, -1.2877620997631494) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SPAY.TXT + +[spcl] +description = Pucallpa, Peru +location = (-0.1468985453761894, -1.3020156219877697) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SPCL.TXT + +[spgm] +description = Tingo Maria, Peru +location = (-0.15940673834881541, -1.3255775668896934) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SPGM.TXT + +[sphi] +description = Chiclayo, Peru +location = (-0.11839150092694868, -1.3933545195088064) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SPHI.TXT + +[spho] +description = Ayacucho, Peru +location = (-0.22921990842858861, -1.2953251931884582) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SPHO.TXT + +[sphy] +description = Andahuayla, Peru +location = (-0.23940099573188886, -1.2801990063378406) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SPHY.TXT + +[spim] +description = Lima-Callao / Aerop. Internacional Jorgechavez, Peru +location = (-0.20943951023931956, -1.3459397414962937) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SPIM.TXT + +[spji] +description = Juanjui, Peru +location = (-0.12595459435225745, -1.3389584244883166) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SPJI.TXT + +[spjj] +description = Jauja, PR +location = (-0.205599785884932, -1.3171999864801205) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SPJJ.TXT + +[spjl] +description = Juliaca, Peru +location = (-0.27023514585045533, -1.2243484702740224) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SPJL.TXT + +[spjr] +description = Cajamarca, Peru +location = (-0.12450015330892884, -1.3695016863982172) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SPJR.TXT + +[splo] +description = Ilo, PR +location = (-0.30892327760299632, -1.2452924212979539) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SPLO.TXT + +[spme] +description = Tumbes, Peru +location = (-0.061959188445798695, -1.4032447186034411) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SPME.TXT + +[spmf] +description = Mazamari, PR +location = (-0.19774580425095753, -1.3011429573617725) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SPMF.TXT + +[spms] +description = Yurimaguas, Peru +location = (-0.10297442586766545, -1.3279046725590189) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SPMS.TXT + +[spnc] +description = Huanuco, Peru +location = (-0.17278759594743864, -1.3220869083857045) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SPNC.TXT + +[spqt] +description = Iquitos, Peru +location = (-0.065449846949787352, -1.2784536770858463) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SPQT.TXT + +[spqu] +description = Arequipa, Peru +location = (-0.28477955628374141, -1.2487830798019428) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SPQU.TXT + +[spru] +description = Trujillo, Peru +location = (-0.1413716694115407, -1.3793918854928517) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SPRU.TXT + +[spso] +description = Pisco, Peru +location = (-0.23998277214922031, -1.3313953310630078) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SPSO.TXT + +[spst] +description = Tarapoto, Peru +location = (-0.11257373675363426, -1.3331406603150022) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SPST.TXT + +[sptn] +description = Tacna, Peru +location = (-0.31532281819364222, -1.2269664641520137) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SPTN.TXT + +[sptu] +description = Puerto Maldonado, Peru +location = (-0.22049326216861695, -1.2077678423800762) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SPTU.TXT + +[spur] +description = Piura, Peru +location = (-0.090466232895039425, -1.4067353771074296) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SPUR.TXT + +[spwt] +description = unknown station in Peru +location = None +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SPWT.TXT +zone = ('ncz023', 0.00096603708533151463) + +[spyl] +description = Talara, Peru +location = (-0.079703369174407707, -1.4180800172453927) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SPYL.TXT + +[spza] +description = Nazca, PR +location = (-0.25935592684635739, -1.3082988072949493) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SPZA.TXT + +[spzo] +description = Cuzco, Peru +location = (-0.23649211364523168, -1.2563461732272516) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SPZO.TXT + +[suaa] +description = Melilla, Uruguay +location = (-0.6070836914853609, -0.98174770424681035) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SUAA.TXT + +[suag] +description = Artigas, Uruguay +location = (-0.5302892043976104, -0.98611102737679623) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SUAG.TXT + +[suca] +description = Colonia, Uruguay +location = (-0.60126592731204653, -1.009382084070054) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SUCA.TXT + +[sudu] +description = Durazno, Uruguay +location = (-0.58206730554010888, -0.98611102737679623) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SUDU.TXT + +[suls] +description = Capitan Corbeta, Uruguay +location = (-0.6085381325286896, -0.96167641784887559) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SULS.TXT + +[sume] +description = Mercedes, Uruguay +location = (-0.58032197628811455, -1.0134545189913742) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SUME.TXT + +[sumu] +description = Carrasco, Uruguay +location = (-0.60795635611135812, -0.97738438111682457) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SUMU.TXT + +[surv] +description = Rivera, Uruguay +location = (-0.53901585065758206, -0.96923951127418428) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SURV.TXT + +[suso] +description = Salto, Uruguay +location = (-0.54774249691755372, -1.0114183015307141) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SUSO.TXT + +[svac] +description = Acarigua, Venezuela +location = (0.16667894356545848, -1.2083496187974074) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SVAC.TXT + +[svbc] +description = Barcelona, Venezuela +location = (0.17656914266009302, -1.1289371378316655) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SVBC.TXT + +[svbi] +description = Barinas, Venezuela +location = (0.15038920388017807, -1.2255120231086851) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SVBI.TXT + +[svbm] +description = Barquisimeto, Venezuela +location = (0.17569647803409583, -1.209804059840736) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SVBM.TXT + +[svbs] +description = Maracay-B. A. Sucre, Venezuela +location = (0.17889624832941878, -1.180715238974164) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SVBS.TXT + +[svcb] +description = Ciudad Bolivar, Venezuela +location = (0.14224433403753786, -1.1091567396423965) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SVCB.TXT + +[svcl] +description = Calabozo, Venezuela +location = (0.15591607984482678, -1.1766428040528438) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SVCL.TXT + +[svcn] +description = Canaima Arpt, VN +location = (0.10873401239924674, -1.096939434878436) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SVCN.TXT + +[svcp] +description = Carupano / Gen. Jose, Venezuela +location = (0.18616845354606182, -1.1042116400950792) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SVCP.TXT + +[svcr] +description = Coro, Venezuela +location = (0.19925842293601928, -1.2162036004313821) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SVCR.TXT + +[svcs] +description = Caracas / Oscar Macha, Venezuela +location = (0.17976891295541594, -1.1661708285408778) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SVCS.TXT + +[svcu] +description = Cumana, Venezuela +location = (0.18238690683340741, -1.1202104915716939) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SVCU.TXT + +[svfm] +description = Caracas / La Carlota, Venezuela +location = (0.18325957145940461, -1.1673343813755408) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SVFM.TXT + +[svgd] +description = Guasdualito, Venezuela +location = (0.12624548256092316, -1.2356931104119853) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SVGD.TXT + +[svgi] +description = Guiria, Venezuela +location = (0.18471401250273323, -1.087631012201133) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SVGI.TXT + +[svgu] +description = Guanare, Venezuela +location = (0.1573705208881554, -1.2170762650573792) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SVGU.TXT + +[svjc] +description = Paraguana / Josefa, Venezuela +location = (0.20565796352666516, -1.2243484702740224) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SVJC.TXT + +[svjm] +description = San Juan De Los Morros, Venezuela +location = (0.17307848415610433, -1.1751883630095152) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SVJM.TXT + +[svlf] +description = La Fria, Venezuela +location = (0.14398966328953219, -1.2612912727745689) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SVLF.TXT + +[svmc] +description = Maracaibo-La Chinita, Venezuela +location = (0.18442312429406749, -1.2519828500972658) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SVMC.TXT + +[svmd] +description = Merida, Venezuela +location = (0.15009831567151233, -1.242383539211297) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SVMD.TXT + +[svmg] +description = Margarita / Del Carib, Venezuela +location = (0.19053177667604762, -1.1167198330677053) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SVMG.TXT + +[svmi] +description = Caracas / Maiquetia Aerop. Intl. Simon Bolivar, Venezuela +location = (0.18500490071139894, -1.169079710627535) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SVMI.TXT + +[svmn] +description = Mene Grande, Venezuela +location = (0.17133315490411002, -1.2380202160813112) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SVMN.TXT + +[svmp] +description = Metropolitano Private, Venezuela +location = (0.17686003086875873, -1.1655890521235464) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SVMP.TXT + +[svmt] +description = Maturin, Venezuela +location = (0.17016960206944712, -1.1027571990517504) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SVMT.TXT + +[svpa] +description = Puerto Ayacucho, Venezuela +location = (0.097738438111682452, -1.1780972450961724) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SVPA.TXT + +[svpm] +description = Paramillo Private, Venezuela +location = (0.1361356816555577, -1.2601277199399059) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SVPM.TXT + +[svpr] +description = Guayana / Manuel Car, Venezuela +location = (0.14486232791552936, -1.0949032174177762) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SVPR.TXT + +[svs0] +description = unknown station in Venezuela +location = None +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SVS0.TXT +zone = ('wiz004', 0.0049079227578450934) + +[svsa] +description = San Antonio Del Tachira, Venezuela +location = (0.13700834628155487, -1.2644910430698919) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SVSA.TXT + +[svse] +description = Santa Elena De Uairen, Venezuela +location = (0.08028514559173916, -1.066687061177201) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SVSE.TXT + +[svso] +description = Sto. Domingo, Venezuela +location = (0.13235413494290332, -1.25780061427058) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SVSO.TXT + +[svsp] +description = San Felipe, Venezuela +location = (0.17947802474675023, -1.1999138607461015) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SVSP.TXT + +[svsr] +description = San Fernando De Apure, Venezuela +location = (0.13788101090755203, -1.1766428040528438) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SVSR.TXT + +[svst] +description = San Tome Private, Venezuela +location = (0.15620696805349249, -1.1196287151543625) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SVST.TXT + +[svsz] +description = Santa Barbara Zulia, Venezuela +location = (0.15678874447082392, -1.2557643968099201) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SVSZ.TXT + +[svva] +description = Valencia, Venezuela +location = (0.17744180728609016, -1.1856603385214812) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SVVA.TXT + +[svvg] +description = El Vigia / Perez Alph, Venezuela +location = (0.15068009208884378, -1.2508192972626029) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SVVG.TXT + +[svvl] +description = Valera, Venezuela +location = (0.16318828506146982, -1.2324933401166622) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SVVL.TXT + +[svvp] +description = Valle De La Pascua, Venezuela +location = (0.16086117939214403, -1.1522081945249232) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SVVP.TXT + +[sycj] +description = Georgetown/Cheddi Jagan International Airport, Guyana +location = (0.1131555131709657, -1.016654289286697) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/SYCJ.TXT + +[tapa] +description = Vc Bird International Airport Antigua, Antigua And Barbuda +location = (0.29874219029969606, -1.07832258952383) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/TAPA.TXT +zone = ('viz002', 0.050847929945112016) + +[tbpb] +description = Grantley Adams, Barbados +location = (0.22805635559392573, -1.0381800167279605) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/TBPB.TXT + +[tcna] +description = unknown station +location = None +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/TCNA.TXT + +[tdcf] +description = Canefield Airport, Dominica +location = (0.27110781047645255, -1.0716321607245183) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/TDCF.TXT +zone = ('viz002', 0.068157540478768749) + +[tdpd] +description = Melville Hall Airport, Dominica +location = (0.27110781047645255, -1.0698868314725241) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/TDPD.TXT +zone = ('viz002', 0.069545443889394723) + +[tfff] +description = Le Lamentin, Martinique +location = (0.25481807079117214, -1.064650843716541) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/TFFF.TXT +zone = ('viz002', 0.083535797741636497) + +[tffr] +description = Le Raizet, Guadeloupe, Guadeloupe +location = (0.28390689165774424, -1.0736683781851784) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/TFFR.TXT +zone = ('viz002', 0.059994320625283794) + +[tgpy] +description = Point Salines Airport, Grenada +location = (0.20943951023931956, -1.07832258952383) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/TGPY.TXT + +[tist] +description = Charlotte Amalie St. Thomas, Cyril E. King Airport, Virgin Islands +location = (0.31997702953229373, -1.1341731255876486) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/TIST.TXT +zone = ('viz001', 0.0021095165635138489) + +[tisx] +description = Christiansted, Henry E. Rohlsen Airport, Virgin Islands +location = (0.30892327760299632, -1.1309733552923256) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/TISX.TXT +zone = ('viz002', 0.00079130360509302932) + +[tjbq] +description = Aquadilla, Rafael Hernandez Airport, PR, United States +location = (0.32288591161895097, -1.1716977045055268) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/TJBQ.TXT +zone = ('prz008', 0.0033782967704795567) + +[tjig] +description = Fern Luis Ribas, Pr, US +location = (0.32201324699295381, -1.1536626355682518) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/TJIG.TXT +zone = ('prz001', 0.0013791690614553852) + +[tjmz] +description = Mayaguez, Eugenio Maria De Hostos Airport, PR, United States +location = (0.31881347669763083, -1.1719885927141924) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/TJMZ.TXT +zone = ('prz010', 0.00051952757297808315) + +[tjnr] +description = Roosevelt Roads Puerto Rico, PR, United States +location = (0.31852258848896514, -1.1455177657256117) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/TJNR.TXT +zone = ('prz002', 0.0025047145947882446) + +[tjps] +description = Ponce, Mercedita Airport, PR, United States +location = (0.314450153567645, -1.1618075054108921) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/TJPS.TXT +zone = ('prz007', 0.0015687171309632527) + +[tjsj] +description = San Juan, Luis Munoz Marin International Airport, PR, United States +location = (0.32201324699295381, -1.1519173063162575) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/TJSJ.TXT +zone = ('prz001', 0.0021307825183485493) + +[tkpk] +description = Golden Rock, Saint Kitts And Nevis +location = (0.30194196059501904, -1.0940305527917789) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/TKPK.TXT +zone = ('viz002', 0.035506579095583038) + +[tkpn] +description = Charlestown / Newcast, Antigua And Barbuda +location = (0.30019663134302466, -1.0922852235397846) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/TKPN.TXT +zone = ('viz002', 0.037538441872289816) + +[tlpc] +description = Vigie, Saint Lucia +location = (0.24463698348787188, -1.064650843716541) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/TLPC.TXT +zone = ('viz002', 0.090590294734356605) + +[tlpl] +description = Hewanorra International Airport, Saint Lucia +location = (0.23998277214922031, -1.0637781790905438) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/TLPL.TXT +zone = ('viz002', 0.094573086180623059) + +[tnca] +description = Queen Beatrix Airport, Aruba +location = (0.21816615649929119, -1.2220213646046965) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/TNCA.TXT + +[tncb] +description = Flamingo Airport, Bonaire, Netherlands Antilles +location = (0.21205750411731106, -1.1917689909034612) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/TNCB.TXT + +[tncc] +description = Hato Airport, Curacao, Netherlands Antilles +location = (0.2129301687433082, -1.203695407458756) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/TNCC.TXT + +[tnce] +description = Roosevelt Airport Saint Eustatius, Netherlands Antilles +location = (0.30514173089034197, -1.099266540547762) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/TNCE.TXT +zone = ('viz002', 0.03000267098037868) + +[tncm] +description = Juliana Airport, Saint Maarten, Netherlands Antilles +location = (0.31503192998497648, -1.1015936462170877) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/TNCM.TXT +zone = ('viz002', 0.027973802206582563) + +[tnnc] +description = unknown station in Caribbean +location = None +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/TNNC.TXT +zone = ('akz141', 0.01799568174159271) + +[tpdp] +description = unknown station +location = None +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/TPDP.TXT + +[tqpf] +description = Wallblake, Anguilla +location = (0.31773234218875662, -1.1005173598450244) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/TQPF.TXT +zone = ('viz002', 0.029600518419183146) + +[trpg] +description = John A Osborne Arpt, MH +location = (0.29286624848464854, -1.0925761117484503) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/TRPG.TXT +zone = ('viz002', 0.039776715991651286) + +[ttcp] +description = Crown Pt./ Scarborou, Trinidad And Tobago +location = (0.19460421159736774, -1.0620328498385496) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/TTCP.TXT + +[ttpp] +description = Piarco International Airport, Trinidad, Trinidad And Tobago +location = (0.18529578892006465, -1.0707594960985212) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/TTPP.TXT + +[tupj] +description = Beef Island, Tortola, British Virgin Islands +location = (0.32201324699295381, -1.1263191439536739) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/TUPJ.TXT +zone = ('viz001', 0.0056675453507264752) + +[tvsc] +description = Canouan, Canouan Island, Saint Vincent and the Grenadines +location = (0.22164009474904575, -1.0706273921274376) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/TVSC.TXT + +[tvsm] +description = Mustique, VG +location = (0.22479840765686965, -1.0677924363701308) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/TVSM.TXT + +[tvsv] +description = Arnos Vale, Saint Vincent And The Grenadines +location = (0.22921990842858861, -1.0681415022205298) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/TVSV.TXT + +[txkf] +description = Bermuda, Bermuda +location = (0.5649049012288313, -1.1289371378316655) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/TXKF.TXT + +[uaaa] +description = Almaty, Kazakhstan +location = (0.75456401327888178, 1.3427399712009709) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UAAA.TXT + +[uacc] +description = Astana, Kazakhstan +location = (0.89360857702109675, 1.2470377505499486) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UACC.TXT + +[uacp] +description = Petropavlovsk, RA +location = (0.95696402886849086, 1.2068951777540791) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UACP.TXT + +[uafm] +description = Bishkek/Manas Airport, Kyrgyzstan +location = (0.7478735844795702, 1.301724733779104) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UAFM.TXT + +[uafo] +description = Osh, KG +location = (0.70895274216009663, 1.2705996954518719) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UAFO.TXT + +[uaii] +description = Shymkent, Kazakhstan +location = (0.73856516180226717, 1.2164944886400477) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UAII.TXT + +[uakd] +description = Zhezhazgan, KZ +location = (0.83252205320129524, 1.1821115023757596) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UAKD.TXT + +[uakk] +description = Karaganda, Kazakhstan +location = (0.8691739674931761, 1.2767083478338521) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UAKK.TXT + +[uaoo] +description = Kzyl-Orda, Kazakhstan +location = (0.78278016951945684, 1.1431906600562858) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UAOO.TXT + +[uarr] +description = Uralsk, Kazakhstan +location = (0.89448124164709386, 0.89506301806442534) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UARR.TXT + +[uask] +description = Ust Kamenogorsk, KZ +location = (0.87318822477276314, 1.4398966328953218) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UASK.TXT + +[uasp] +description = Pavlodar, KZ +location = (0.91280719879303429, 1.3426817935592379) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UASP.TXT + +[uate] +description = Aktau, Kazakhstan +location = (0.76567594284991236, 0.89186324776910242) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UATE.TXT + +[uatg] +description = Atyrau, KZ +location = (0.82239914353972798, 0.90442961838346159) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UATG.TXT + +[uatt] +description = Aktjubinsk, Kazakhstan +location = (0.87760972554448202, 0.99745566751475934) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UATT.TXT + +[uauu] +description = Kostanay, Kazakhstan +location = (0.92862666920763848, 1.1091712840528296) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UAUU.TXT + +[ubbb] +description = Baku / Bine Airport, Azerbaijan +location = (0.70598568243170634, 0.87382817883182773) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UBBB.TXT + +[ubbg] +description = Gyanca Airport, Azerbaijan +location = (0.7109307819790236, 0.80983277292536893) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UBBG.TXT + +[ubbl] +description = Lankaran, AJ +location = (0.6763150851478027, 0.85189520789843232) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UBBL.TXT + +[ubbn] +description = Nakhchivan, AZ +location = (0.68382000093137829, 0.79325214503142283) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UBBN.TXT + +[ubbq] +description = Gabala International Airport, Azerbaijan +location = (0.71224942477101871, 0.83296318516973678) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UBBQ.TXT + +[ubby] +description = Zakatala, AJ +location = (0.72518430420364388, 0.81437062898055412) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UBBY.TXT + +[udsg] +description = Shirak, GG +location = (0.71122167018768934, 0.76532687699951352) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UDSG.TXT + +[udyz] +description = Zvartnots, AM +location = (0.70074969467572323, 0.77492618788548229) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UDYZ.TXT + +[ueee] +description = Jakutsk, Russia +location = (1.0823950244451501, 2.2639829280453112) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UEEE.TXT + +[uell] +description = Cul'Man, Russia +location = (0.99192879155011071, 2.1793344593235862) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UELL.TXT + +[uerp] +description = Polyarny, Russia +location = (1.1589083195978571, 1.9552972091460585) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UERP.TXT + +[uerr] +description = Mirny, Russia +location = (1.0913543812720543, 1.9901989460491341) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UERR.TXT + +[ueso] +description = Chokurdakh, AL, RS +location = (1.2327260506835949, 2.581691029550012) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UESO.TXT + +[uest] +description = Tiksi, Russia +location = (1.2514010736799344, 2.2497294058206907) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UEST.TXT + +[ugko] +description = Kopitnari, GG +location = (0.73617987849120825, 0.74141586624719114) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UGKO.TXT + +[ugms] +description = Mestia, Georgia +location = (0.75169585554143781, 0.74619806839765557) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UGMS.TXT + +[ugsb] +description = Batumi, GG +location = (0.72640603468003995, 0.7260569688296411) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UGSB.TXT + +[ugtb] +description = Tbilisi/Novo-Al, GG +location = (0.72727869930603717, 0.78452549877145117) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UGTB.TXT + +[uhbb] +description = Ignatyevo, RS +location = (0.87982047593034152, 2.2235494670407761) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UHBB.TXT +zone = ('akz191', 0.069378824375080111) + +[uhhh] +description = Habarovsk, Russia +location = (0.84677557542591553, 2.359103372279002) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UHHH.TXT +zone = ('akz191', 0.069952669386772637) + +[uhma] +description = Anadyr, Russia +location = (1.1306824670836597, 3.0991229751245979) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UHMA.TXT + +[uhmd] +description = Buhta Providenja, Russia +location = (1.1242829264930141, -3.0234920408715098) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UHMD.TXT +zone = ('akz213', 0.037067404865388009) + +[uhmm] +description = Magadan, Russia +location = (1.0393435695626232, 2.6316656237987832) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UHMM.TXT + +[uhmp] +description = Pevek, AL, RA +location = (1.1780972450961724, 2.9845130209103035) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UHMP.TXT + +[uhnn] +description = Nikolaevsk-On-Amur, RA +location = (0.92764249743498617, 2.4556782575560216) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UHNN.TXT + +[uhpp] +description = Petropavlovsk-Kamchatskij, Russia +location = (0.92647894460032332, 2.7678013054543409) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UHPP.TXT + +[uhsh] +description = Okha, MS, RS +location = (0.93584554491935945, 2.4949481657258938) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UHSH.TXT + +[uhss] +description = Yuzhno-Sakhalinsk, Russia +location = (0.81943208381133781, 2.4908757308045741) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UHSS.TXT + +[uhww] +description = Vladivostok, Russia +location = (0.75252779581822171, 2.3026710597978521) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UHWW.TXT + +[uiaa] +description = Chita, Russia +location = (0.90902565208038, 1.9806578128048984) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UIAA.TXT + +[uibb] +description = Bratsk / Irkutsk, Russia +location = (0.98385664375963688, 1.7749756085941779) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UIBB.TXT + +[uiii] +description = Irkutsk, Russia +location = (0.91222542237570292, 1.8206692980387513) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UIII.TXT + +[uiuu] +description = Ulan-Ude, Russia +location = (0.90466232895039422, 1.8779742751458985) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UIUU.TXT + +[ukbb] +description = Boryspil, Ukraine +location = (0.87848239017047924, 0.54047029170091065) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UKBB.TXT + +[ukcc] +description = Donetsk, Ukraine +location = (0.83921248200060683, 0.65886179262785938) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UKCC.TXT + +[ukcm] +description = Mariupol, UR +location = (0.82082834721293318, 0.6544984694978736) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UKCM.TXT + +[ukcw] +description = Luhansk, KI, UR +location = (0.84508842381565441, 0.68713612651016753) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UKCW.TXT + +[ukdd] +description = Dnipropetrovs'K, Ukraine +location = (0.84706646363458127, 0.60504747402470083) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UKDD.TXT + +[ukde] +description = Zaporizhzhia / Mokraya, Ukraine +location = (0.83544063156157466, 0.61638726602585292) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UKDE.TXT + +[ukdr] +description = Krivyy Rih / Dnipropetrovs'K, Ukraine +location = (0.83863070558327535, 0.57979837751251628) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UKDR.TXT + +[ukff] +description = Simferopol, Ukraine +location = (0.77987128743279954, 0.5957390513473978) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UKFF.TXT + +[ukhh] +description = Kharkiv, Ukraine +location = (0.8720828495798334, 0.63064563638728444) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UKHH.TXT + +[ukke] +description = Cherkasy, Ukraine +location = (0.86247384242024228, 0.55844233485964123) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UKKE.TXT + +[ukkk] +description = Kyiv, Ukraine +location = (0.87964594300514209, 0.53348897469293344) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UKKK.TXT + +[ukkm] +description = Hostomel, Ukraine +location = (0.88314144964594188, 0.52697792695563228) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UKKM.TXT + +[ukli] +description = Ivano-Frankivsk, Ukraine +location = (0.85318966042699473, 0.43085391840204462) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UKLI.TXT + +[ukll] +description = L'Viv, Ukraine +location = (0.86946485570184184, 0.4180063558526419) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UKLL.TXT + +[ukln] +description = Chernovsty, Ukraine +location = (0.84229589701246343, 0.45346562848899336) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UKLN.TXT + +[uklr] +description = Rivne, Ukraine +location = (0.88284571330046502, 0.45611271118785146) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UKLR.TXT + +[uklu] +description = Uzhhorod, Ukraine +location = (0.84883603357063109, 0.38859270981972638) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UKLU.TXT + +[ukon] +description = Mykolaiv, Ukraine +location = (0.82131800903085384, 0.55712364164702333) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UKON.TXT + +[ukoo] +description = Odesa, Ukraine +location = (0.8104145493427003, 0.53697963319692199) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UKOO.TXT + +[ulaa] +description = Arhangel'Sk, Russia +location = (1.1257373675363425, 0.7109307819790236) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ULAA.TXT + +[uldd] +description = Amderma, DK, RA +location = (1.2173671532660448, 1.0768681484805014) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ULDD.TXT + +[ulkk] +description = Kotlas, RS +location = (1.0686651009961279, 0.81541782653175077) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ULKK.TXT + +[ulli] +description = St. Peterburg, Russia +location = (1.0466157747792664, 0.52883476335428181) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ULLI.TXT + +[ulmm] +description = Murmansk, Russia +location = (1.203695407458756, 0.57683131778412589) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ULMM.TXT + +[uloo] +description = Pskov, AL, RS +location = (1.0084512418023237, 0.49567350756638956) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ULOO.TXT + +[ulpb] +description = Petrozavodsk, RS +location = (1.0801842740592906, 0.59602993955606354) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ULPB.TXT + +[ulww] +description = Vologda, Russia +location = (1.0352711346413033, 0.6966772597544032) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ULWW.TXT + +[umbb] +description = Brest, Belarus +location = (0.90946198439337855, 0.41707551358491157) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UMBB.TXT + +[umgg] +description = Gomel', Belarus +location = (0.91676327843088812, 0.54137204514777437) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UMGG.TXT + +[umii] +description = Vitebsk, Belarus +location = (0.96283997068353844, 0.52738032231095322) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UMII.TXT + +[umkk] +description = Kaliningrad/Khrabrovo Airport, Russia +location = (0.9550441666912971, 0.35779249665883756) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UMKK.TXT + +[ummg] +description = Grodno, Belarus +location = (0.93552556788982721, 0.41983895156723594) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UMMG.TXT + +[ummm] +description = Loshitsa / Minsk International 1, Belarus +location = (0.94012160158674563, 0.48069276482010492) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UMMM.TXT + +[umms] +description = Minsk, Belarus +location = (0.94131424324227497, 0.48229264996776638) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UMMS.TXT + +[umoo] +description = Mogilev, BY +location = (0.94160513145094082, 0.52534410485029326) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UMOO.TXT + +[unaa] +description = Abakan, Russia +location = (0.93811447294695216, 1.5952309363228172) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UNAA.TXT + +[unbb] +description = Barnaul, Russia +location = (0.93258759698230331, 1.4576408136239309) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UNBB.TXT + +[unee] +description = Kemerovo, Russia +location = (0.96569067512846263, 1.5023794201167189) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UNEE.TXT + +[unkl] +description = Krasnoyarsk, RA +location = (0.98035144084521497, 1.6144295580947547) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UNKL.TXT + +[unnt] +description = Novosibirsk/Tolmach, RA +location = (0.96045468737247952, 1.4468779499032993) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UNNT.TXT + +[unoo] +description = Omsk, Russia +location = (0.95934931217954988, 1.2793263417118435) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UNOO.TXT + +[unww] +description = Novokuznetsk, Russia +location = (0.93782358473828642, 1.5216362195303896) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UNWW.TXT + +[uohh] +description = Khatanga, AL, RS +location = (1.2562879955855184, 1.7884388845185895) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UOHH.TXT + +[uoii] +description = Igarka, AL, RS +location = (1.1775736463205742, 1.510931533451491) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UOII.TXT + +[uooo] +description = Alykel, AL, RA +location = (1.2095131716320704, 1.5240215028414485) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UOOO.TXT + +[urka] +description = Anapa / Vitiazevo, Russia +location = (0.78365283414545395, 0.65129869920255068) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/URKA.TXT + +[urkk] +description = Krasnodar, Russia +location = (0.78597993981477976, 0.68329640215578002) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/URKK.TXT + +[urkm] +description = Maykop, RS +location = (0.77928951101546817, 0.69987703004972612) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/URKM.TXT + +[urml] +description = Uytash, RS +location = (0.74734998570397193, 0.83164938857529802) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/URML.TXT + +[urmm] +description = Mineral'Nye Vody, Russia +location = (0.7720173057988251, 0.7516551311922246) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/URMM.TXT + +[urmn] +description = Nalchik, Russia +location = (0.7594412389108437, 0.76160350792859222) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/URMN.TXT + +[urmo] +description = Beslan Airport, Beslan, Russia +location = (0.75407124865340214, 0.77853203812010263) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/URMO.TXT + +[urmt] +description = Stavropol / Shpakovskoye, Russia +location = (0.79121592757076276, 0.73303828583761843) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/URMT.TXT + +[urrr] +description = Rostov-Na-Donu, Russia +location = (0.82495895977598643, 0.69493193050240898) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/URRR.TXT + +[urss] +description = Adler, Russia +location = (0.75805467178287045, 0.69638637154573746) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/URSS.TXT + +[urwa] +description = Astrakhan, Russia +location = (0.80779655546470885, 0.83786954810393333) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/URWA.TXT + +[urwi] +description = Elista, Russia +location = (0.80925099650803745, 0.77376263505081944) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/URWI.TXT + +[urww] +description = Volgograd, Russia +location = (0.85142978676456704, 0.77434441146815092) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/URWW.TXT + +[uscc] +description = Chelyabinsk-Balandino, Russia +location = (0.96283997068353844, 1.0716321607245183) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/USCC.TXT + +[uscm] +description = Magnitogorsk, RS +location = (0.93200582056497194, 1.0253809355466685) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/USCM.TXT + +[usdd] +description = Salekhard, RA +location = (1.1620402159778245, 1.1623892818282233) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/USDD.TXT + +[ushh] +description = Hanty-Mansijsk, Russia +location = (1.0649417319252068, 1.2048589602934188) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/USHH.TXT + +[usmm] +description = Madym, RS +location = (1.1395254686270979, 1.2688543661998777) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/USMM.TXT + +[usmu] +description = Novyi Urengoi, AL, RA +location = (1.1531390367926535, 1.3346532790000638) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/USMU.TXT + +[usnn] +description = Nizhnevartovsk, Russia +location = (1.063487290881878, 1.3348859895669964) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/USNN.TXT + +[uspp] +description = Perm'/Bolshoe Savino, Russia +location = (1.0122909661567112, 0.98174770424681035) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/USPP.TXT + +[usrk] +description = Kogalym, RA +location = (1.0852457288900741, 1.3007938915113739) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/USRK.TXT + +[usrr] +description = Surgut, Russia +location = (1.0690141668465269, 1.2828170002158321) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/USRR.TXT + +[usss] +description = Ekaterinburg, Russia +location = (0.99192879155011071, 1.0582513031258951) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/USSS.TXT + +[ustr] +description = Roschino, RA +location = (0.9979792662903576, 1.140049067402696) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/USTR.TXT + +[utaa] +description = Ashgabat, Turkmenistan +location = (0.66293422754917952, 1.0186905067473571) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UTAA.TXT + +[utak] +description = Turkmenbashi, TM +location = (0.6990043654237289, 0.92502450355699462) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UTAK.TXT + +[utam] +description = Mary, TM +location = (0.65659286460026678, 1.08035880698449) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UTAM.TXT + +[utat] +description = Dashoguz, TM +location = (0.72867496270763255, 1.0442304914682072) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UTAT.TXT + +[utav] +description = Chardzhev, TM +location = (0.68207467167938396, 1.1100294042683936) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UTAV.TXT + +[utdd] +description = Dushanbe, Tajikistan +location = (0.67282442664381403, 1.200495637163433) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UTDD.TXT + +[utdl] +description = Khudzhand, TJ +location = (0.7019714251521193, 1.2161454227896489) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UTDL.TXT + +[utfa] +description = Andizhan, Uzbekistan +location = (0.71093077616125944, 1.2624548197914676) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UTFA.TXT + +[utff] +description = Republic Airport, NY, United States +location = (0.710945332207221, -1.2813673995522958) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UTFF.TXT +zone = ('nyz179', 0.0023339279784403153) + +[utfn] +description = Namangan, UZ +location = (0.71523592746727616, 1.2493066785775411) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UTFN.TXT + +[utnn] +description = Nukus / Karakalpakstan, Uzbekistan +location = (0.74141586624719125, 1.0407398329642188) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UTNN.TXT + +[utnu] +description = Urgench, Uzbekistan +location = (0.72576608062097536, 1.058454924871961) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UTNU.TXT + +[utsa] +description = Navoi, UZ +location = (0.7004006288253245, 1.1405726661782942) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UTSA.TXT + +[utsb] +description = Bukhara, UZ +location = (0.69411744351814486, 1.1252137687607442) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UTSB.TXT + +[utsk] +description = Karshi Khanabad, UZ +location = (0.67771134854939818, 1.1505210429146622) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UTSK.TXT + +[utss] +description = Samarkand, Uzbekistan +location = (0.69056860737242309, 1.1684979342102038) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UTSS.TXT + +[utst] +description = Termez, Uzbekistan +location = (0.64984425815922209, 1.1740248101748523) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UTST.TXT + +[uttt] +description = Tashkent, Uzbekistan +location = (0.72023920465632663, 1.2089313952147389) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UTTT.TXT + +[uubi] +description = Ivanovo South, RS +location = (0.99361594316037183, 0.71436326284127905) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UUBI.TXT + +[uubp] +description = Brjansk, Russia +location = (0.9293878266869805, 0.59893882164272083) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UUBP.TXT + +[uudd] +description = Moscow / Domodedovo, Russia +location = (0.96691240560485858, 0.66147978650585082) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UUDD.TXT + +[uudl] +description = Tunoshna, Yaroslavl, Russia +location = (1.0046231531508214, 0.70087831591984684) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UUDL.TXT + +[uuee] +description = Moscow / Sheremet'Ye, Russia +location = (0.97709349290815883, 0.6544984694978736) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UUEE.TXT + +[uumo] +description = Ostafyevo, RS +location = (0.96865773485685291, 0.6544984694978736) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UUMO.TXT + +[uuob] +description = Belgorod, RS +location = (0.88366020028472914, 0.63844144037952577) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UUOB.TXT + +[uuok] +description = Kursk, RS +location = (0.90320788790706552, 0.63320545262354277) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UUOK.TXT + +[uuoo] +description = Voronez, Russia +location = (0.90146255865507119, 0.68504173140777436) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UUOO.TXT + +[uuww] +description = Moscow / Vnukovo, Russia +location = (0.97127572873484436, 0.65042603457655346) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UUWW.TXT + +[uuyh] +description = Ukhta, RA +location = (1.1091567396423965, 0.93933620342334812) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UUYH.TXT + +[uuys] +description = Usinsk, AL, RS +location = (1.1519173063162575, 1.0012953918691467) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UUYS.TXT + +[uuyw] +description = Vorkuta, RS +location = (1.177922712170973, -1.1170107212763709) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UUYW.TXT + +[uuyy] +description = Syktyvkar, Russia +location = (1.077159036689167, 0.8872090364304509) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UUYY.TXT + +[uwgg] +description = Nizhny Novgorod/Strigino, Russia +location = (0.98314396764840595, 0.76794487087750496) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UWGG.TXT + +[uwkd] +description = Kazan', Russia +location = (0.97360283440417017, 0.85870199198121022) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UWKD.TXT + +[uwke] +description = Begishevo, AL, RA +location = (0.96987946533324898, 1.0835003996380796) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UWKE.TXT + +[uwks] +description = Cheboksary, RS +location = (0.97878064451841995, 0.82641340081931502) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UWKS.TXT + +[uwll] +description = Ulyanovsk, MS, RS +location = (0.94806284968331977, 0.84351762748885939) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UWLL.TXT + +[uwlw] +description = Ulyanovsk, Russia +location = (0.94858644845891815, 0.84444846975658983) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UWLW.TXT + +[uwoo] +description = Orenburg / Tsentralny, Russia +location = (0.9037314866826639, 0.96202548369927443) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UWOO.TXT + +[uwor] +description = Orsk, AL, RA +location = (0.89133964899350415, 1.0227629416686772) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UWOR.TXT + +[uwpp] +description = Penza, Russia +location = (0.92706072101765469, 0.78568905160611402) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UWPP.TXT + +[uwss] +description = Saratov / Tsentralny, Russia +location = (0.9000662952534757, 0.80407318639378766) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UWSS.TXT + +[uwuu] +description = Ufa, Russia +location = (0.95521869961649664, 0.97616265064042851) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UWUU.TXT + +[uwww] +description = Samara, Russia +location = (0.92851516206098339, 0.87528261987515621) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/UWWW.TXT + +[vaah] +description = Ahmadabad, India +location = (0.40258928079335871, 1.2676908133652147) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/VAAH.TXT + +[vabb] +description = Bombay / Santacruz, India +location = (0.33364877533958265, 1.271472360077869) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/VABB.TXT + +[vanp] +description = Nagpur Sonegaon, India +location = (0.36826447217080355, 1.3796827737015174) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/VANP.TXT + +[vapr] +description = Porbandar Airport, Porbandar, India +location = (0.37784065744418344, 1.215747819332752) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/VAPR.TXT + +[vcbi] +description = Katunayake, Sri Lanka +location = (0.12508192972626028, 1.3942271841348037) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/VCBI.TXT + +[vdpp] +description = Phnom-Penh / Pochentong, Cambodia +location = (0.20158552860534507, 1.8299777207160544) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/VDPP.TXT + +[vdsr] +description = Siemreap, Cambodia +location = (0.23329234334990873, 1.812524428196111) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/VDSR.TXT + +[veat] +description = Agartala, India +location = (0.41684280301797905, 1.5926129424448257) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/VEAT.TXT + +[vebs] +description = Bhubaneswar, India +location = (0.35342917352885173, 1.4980742746284661) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/VEBS.TXT + +[vecc] +description = Calcutta / Dum Dum, India +location = (0.39531707557671564, 1.5437437233889846) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/VECC.TXT + +[vemn] +description = Dibrugarh / Mohanbari, India +location = (0.47967465608977494, 1.6583536776032788) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/VEMN.TXT + +[vept] +description = Patna, India +location = (0.44680428851054838, 1.4852751934471744) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/VEPT.TXT + +[vgeg] +description = Chittagong Patenga, Bangladesh +location = (0.38862664677740405, 1.6025031415394602) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/VGEG.TXT + +[vghs] +description = Shaka, BW +location = (0.4105014400690663, 1.5777776438028741) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/VGHS.TXT + +[vhhh] +description = Hong Kong Inter-National Airport, Hong Kong +location = (0.3897901996120669, 1.9928751175688586) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/VHHH.TXT + +[viar] +description = Amritsar, India +location = (0.55210582004753961, 1.3066698333264213) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/VIAR.TXT + +[vibn] +description = Varanasi / Babatpur, India +location = (0.44418629463255688, 1.4462961734859676) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/VIBN.TXT + +[vidp] +description = New Delhi / Palam, India +location = (0.4985823896530468, 1.3459397414962937) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/VIDP.TXT + +[vijp] +description = Jaipur / Sanganer, India +location = (0.46803912774314604, 1.3229595730117016) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/VIJP.TXT + +[vilk] +description = Lucknow / Amausi, India +location = (0.46687557490848314, 1.4116804766547471) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/VILK.TXT + +[vlvt] +description = Vientiane, Laos +location = (0.31328660073298215, 1.7901260361288507) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/VLVT.TXT + +[vmmc] +description = Taipa, Macau +location = (0.38688131752540972, 1.9821122538482268) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/VMMC.TXT + +[vnkt] +description = Kathmandu Airport, Nepal +location = (0.48345620280242929, 1.4899294047858258) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/VNKT.TXT + +[vobl] +description = Bengaluru, IN +location = (0.23038346126325149, 1.3559462958743946) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/VOBL.TXT + +[vocb] +description = Coimbatore / Peelamedu, India +location = (0.19256799413670769, 1.344776188661631) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/VOCB.TXT + +[voci] +description = Cochin Intl Arpt, IN +location = (0.17715091907742445, 1.3334315485236679) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/VOCI.TXT + +[vocl] +description = Calicut, IN +location = (0.19425514574696889, 1.3255775668896934) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/VOCL.TXT + +[vohs] +description = Rajiv Gandhi Inl, IN +location = (0.30072023011862298, 1.3688617323391528) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/VOHS.TXT + +[vohy] +description = Hyderabad Airport, India +location = (0.30455995447301049, 1.3695016863982172) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/VOHY.TXT + +[vomm] +description = Madras / Minambakkam, India +location = (0.22689280275926285, 1.3994631718907866) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/VOMM.TXT + +[votr] +description = Tiruchchirapalli, India +location = (0.18791378279805615, 1.373865009528203) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/VOTR.TXT + +[votv] +description = Thiruvananthapuram, India +location = (0.14777121000218657, 1.3430308594096367) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/VOTV.TXT + +[vqpr] +description = unknown station in Bhutan +location = None +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/VQPR.TXT +zone = ('sdz025', 0.00038715531308755325) + +[vrmm] +description = Male, Maldives +location = (0.073303828583761846, 1.2833987766331636) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/VRMM.TXT + +[vtbd] +description = Don Muang, Thailand +location = (0.24289165423587752, 1.7558012275062955) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/VTBD.TXT + +[vtbo] +description = Trat, TH +location = (0.2839650692994774, 1.7858208906405979) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/VTBO.TXT + +[vtbs] +description = Chon Buri, Thailand +location = (0.23329234334990873, 1.7624916563056072) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/VTBS.TXT + +[vtbu] +description = Rayong, Thailand +location = (0.22049326216861695, 1.7688911968962528) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/VTBU.TXT + +[vtcc] +description = Chiang Mai, Thailand +location = (0.32783101116626828, 1.7275850712657206) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/VTCC.TXT + +[vtch] +description = Mae Hong Son, Thailand +location = (0.33684854563490563, 1.7075137848677857) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/VTCH.TXT + +[vtcl] +description = Lampang, Thailand +location = (0.31910436490629662, 1.7368934939430236) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/VTCL.TXT + +[vtcn] +description = Nan, Thailand +location = (0.32754012295760249, 1.7587101095929527) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/VTCN.TXT + +[vtcp] +description = Phrae, Thailand +location = (0.31706814744563655, 1.7482381340809869) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/VTCP.TXT + +[vtct] +description = Chiang Rai Intl, TH +location = (0.34854225162326757, 1.7434093898171359) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/VTCT.TXT + +[vtph] +description = Hua Hin, Thailand +location = (0.21962059754261981, 1.7444565873683324) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/VTPH.TXT + +[vtpo] +description = Sukhothai, TH +location = (0.30072023011862298, 1.7421876593407397) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/VTPO.TXT + +[vtpp] +description = Phitsanulok, TH +location = (0.29321531433504738, 1.7587682872346859) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/VTPP.TXT + +[vtsb] +description = Surat Thani, Thailand +location = (0.15911585014014973, 1.7339846118563662) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/VTSB.TXT + +[vtsc] +description = Narathiwat, TH +location = (0.11205013797803595, 1.7770942443806261) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/VTSC.TXT + +[vtsf] +description = Nakhon Si Thammarat, TH +location = (0.14887658519511629, 1.7444565873683324) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/VTSF.TXT + +[vtsg] +description = Krabi, TH +location = (0.14102260356114182, 1.7275268936239874) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/VTSG.TXT + +[vtsh] +description = Songkhla, Thailand +location = (0.12566370614359174, 1.7558012275062955) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/VTSH.TXT + +[vtsm] +description = Samui, TH +location = (0.16667894356545848, 1.7465509824707255) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/VTSM.TXT + +[vtsp] +description = Phuket Airport, Thailand +location = (0.14166255762020644, 1.7159495429190916) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/VTSP.TXT + +[vtss] +description = Hat Yai, Thailand +location = (0.12071860659627447, 1.7528923454196383) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/VTSS.TXT + +[vtst] +description = Trang, Thailand +location = (0.13119058210824044, 1.7386388231950178) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/VTST.TXT + +[vtud] +description = Udon Thani, Thailand +location = (0.30339640163834763, 1.7941984710501708) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/VTUD.TXT + +[vtui] +description = Sakon Nakhon, TH +location = (0.29984756549262581, 1.8172368171764961) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/VTUI.TXT + +[vtuk] +description = Khon Kaen, Thailand +location = (0.28681577374440148, 1.7947802474675021) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/VTUK.TXT + +[vtul] +description = Loei, Thailand +location = (0.30455995447301049, 1.7755816256955645) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/VTUL.TXT + +[vtuo] +description = Buri Ram, TH +location = (0.26563911215353697, 1.8020524526841453) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/VTUO.TXT + +[vtuu] +description = Ubon Ratchathani, Thailand +location = (0.26616271092913524, 1.8302686089247202) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/VTUU.TXT + +[vtuv] +description = Roi Et, TH +location = (0.28134707542148596, 1.8111281647945157) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/VTUV.TXT + +[vtuw] +description = Nakhon Phanom, TH +location = (0.30333822399661448, 1.8264870622120659) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/VTUW.TXT + +[vvdn] +description = Da Nang, Vietnam +location = (0.27983445673642421, 1.8881553624491989) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/VVDN.TXT + +[vvnb] +description = Ha Noi, Vietnam +location = (0.3668100311274749, 1.8465583486100006) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/VVNB.TXT + +[vvpb] +description = Hue, Vietnam +location = (0.28623399732707, 1.8794287161892274) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/VVPB.TXT + +[vvts] +description = Ho Chi Minh, Vietnam +location = (0.18878644742405332, 1.8616845354606182) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/VVTS.TXT + +[vymd] +description = Mandalay Intl, BM +location = (0.37873644768276948, 1.6924457756589013) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/VYMD.TXT + +[vyyy] +description = Yangon, Myanmar +location = (0.2926335379177159, 1.6784249640012137) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/VYYY.TXT + +[waaa] +description = Ujung Pandang / Hasanuddin, Indonesia +location = (-0.088430015434379367, 2.0865411207592208) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/WAAA.TXT + +[wabb] +description = Biak / Mokmer, Indonesia +location = (-0.020653062815266233, 2.3756840001729485) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/WABB.TXT + +[wadd] +description = Bali Denpasar Ngura, ID +location = (-0.15271630954950383, 2.0100956995218695) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/WADD.TXT + +[wadl] +description = Lombok International Airport, Praya, Indonesia +location = (-0.15284410604799337, 2.0294108220213776) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/WADL.TXT + +[wall] +description = Balikpapan/Sepingga, ID +location = (-0.022165681500327987, 2.0402898955813713) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/WALL.TXT + +[wamm] +description = Menado / Dr. Sam Ratulangi, Indonesia +location = (0.026761715197246384, 2.1802071239495833) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/WAMM.TXT + +[waoo] +description = Syamsudin Noor, ID +location = (-0.06021385919380437, 2.0031143825138917) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/WAOO.TXT + +[wapp] +description = Ambon / Pattimura, Indonesia +location = (-0.0645771823237902, 2.2354758835960706) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/WAPP.TXT + +[warr] +description = Juanda, ID +location = (-0.12880529879718153, 1.968382330399205) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/WARR.TXT + +[watt] +description = El Tari, ID +location = (-0.17749998492782332, 2.1584486859413872) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/WATT.TXT + +[wbgb] +description = Bintulu, Malaysia +location = (0.055850536063818547, 1.9728038311709237) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/WBGB.TXT + +[wbgg] +description = Kuching, Malaysia +location = (0.025889050571249222, 1.9256799413670769) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/WBGG.TXT + +[wbgr] +description = Miri, Malaysia +location = (0.075630934253087603, 1.9893844590648699) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/WBGR.TXT + +[wbgs] +description = Sibu, Malaysia +location = (0.040724349213201026, 1.9518598801469917) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/WBGS.TXT + +[wbgy] +description = Sri Aman/Simangga, MS +location = (0.021293016874330821, 1.9451694513476803) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/WBGY.TXT + +[wbkk] +description = Kota Kinabalu, Malaysia +location = (0.10355620228499689, 2.0254545969394195) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/WBKK.TXT + +[wbkl] +description = Labuan, Malaysia +location = (0.09250245035569947, 2.0114919629234649) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/WBKL.TXT + +[wbks] +description = Sandakan, Malaysia +location = (0.10297442586766545, 2.0606520701879716) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/WBKS.TXT + +[wbkt] +description = Kudat, Malaysia +location = (0.12071860659627447, 2.0391263427467083) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/WBKT.TXT + +[wbkw] +description = Tawau, Malaysia +location = (0.074467381418424725, 2.057452299892649) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/WBKW.TXT + +[wbsb] +description = Brunei Airport, Brunei +location = (0.086102909765053595, 2.0059650869588164) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/WBSB.TXT + +[wibb] +description = Pakanbaru / Simpangtiga, Indonesia +location = (0.0081448698426402049, 1.7706365261482473) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/WIBB.TXT + +[widd] +description = Batam/Hang Nadim, ID +location = (0.019198621771937627, 1.816887751326097) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/WIDD.TXT + +[wihh] +description = Halim Perdanakusuma, ID +location = (-0.10943214410004445, 1.8655824374567389) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/WIHH.TXT + +[wiii] +description = Jakarta / Soekarno-Hatta, Indonesia +location = (-0.10675597258031981, 1.8613936472519526) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/WIII.TXT + +[wimm] +description = Medan / Polonia, Indonesia +location = (0.062250076654464415, 1.7223490835097377) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/WIMM.TXT + +[wioo] +description = Pontianak / Supadio, Indonesia +location = (-0.0026179938779914941, 1.9093902016817965) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/WIOO.TXT + +[wipp] +description = Palembang / Talangbetutu, Indonesia +location = (-0.050614548307835558, 1.827359726838063) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/WIPP.TXT + +[wipt] +description = Minangkabau, ID +location = (-0.013613568165555772, 1.7502161738999138) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/WIPT.TXT + +[wmau] +description = Mersing, MS +location = (0.042760566673861078, 1.8121753623457124) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/WMAU.TXT + +[wmba] +description = Sitiawan, Malaysia +location = (0.073594716792427559, 1.75754655675829) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/WMBA.TXT + +[wmka] +description = Alor Setar(Civ/Mil), MS +location = (0.10821041362364843, 1.7523105690023069) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/WMKA.TXT + +[wmkb] +description = Butterworth Ab, MS +location = (0.095469510084089826, 1.751961503151908) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/WMKB.TXT + +[wmkc] +description = Kota Bharu, Malaysia +location = (0.10762863720631699, 1.7851809365815334) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/WMKC.TXT + +[wmkd] +description = Kuantan, Malaysia +location = (0.063122741280461581, 1.8014706762668138) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/WMKD.TXT + +[wmki] +description = Sultan Azlan Shah, MS +location = (0.079761546816140866, 1.7641788079158682) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/WMKI.TXT + +[wmkj] +description = Johore Bharu / Senai, Malaysia +location = (0.028507044449240716, 1.8093246579007884) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/WMKJ.TXT + +[wmkk] +description = Sepang/Kl International Airport, Malaysia +location = (0.04770566622117834, 1.7749998492782333) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/WMKK.TXT + +[wmkl] +description = Langkawi, Malaysia +location = (0.1105375192929742, 1.7406750406556779) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/WMKL.TXT + +[wmkm] +description = Malacca, Malaysia +location = (0.039560796378538134, 1.7845991601642019) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/WMKM.TXT + +[wmkn] +description = Kuala Trengganu, MS +location = (0.09389871375729493, 1.7994344588061537) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/WMKN.TXT + +[wmkp] +description = Penang / Bayan Lepas, Malaysia +location = (0.09250245035569947, 1.7499834633329812) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/WMKP.TXT + +[wmsa] +description = Subang/Sultan Abdul Aziz Shah Airport, Malaysia +location = (0.054396095020489935, 1.7720909671915759) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/WMSA.TXT + +[wsap] +description = Singapore / Paya Lebar, Singapore +location = (0.02385283311058917, 1.8136879810307742) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/WSAP.TXT + +[wssl] +description = Singapore/Seletar, SR +location = (0.024783675378319478, 1.8132225598969089) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/WSSL.TXT + +[wsss] +description = Singapore / Changi Airport, Singapore +location = (0.02385283311058917, 1.814851533865437) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/WSSS.TXT + +[yamb] +description = Amberley, QU, AU +location = (-0.48223447232603323, 2.665117767795341) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/YAMB.TXT + +[ybas] +description = Alice Springs Aerodrome, Australia +location = (-0.41538836197465046, 2.3367049802117412) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/YBAS.TXT + +[ybbn] +description = Brisbane Airport M. O, Australia +location = (-0.47792932683778055, 2.6720990848033184) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/YBBN.TXT + +[ybcg] +description = Coolangatta Airport Aws, Australia +location = (-0.49160107264506953, 2.6790804018112957) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/YBCG.TXT + +[ybcs] +description = Cairns Airport, Australia +location = (-0.29466975537837597, 2.5438173847817351) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/YBCS.TXT + +[ybhm] +description = Hamilton Island, QU, AU +location = (-0.35517450278084611, 2.5996679208455538) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/YBHM.TXT + +[ybma] +description = Mount Isa Amo, Australia +location = (-0.36070137874549479, 2.4341525301147584) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/YBMA.TXT + +[ybrk] +description = Rockhampton Airport, Australia +location = (-0.40811615675800739, 2.6261387478341347) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/YBRK.TXT + +[ybrm] +description = Broome Airport, Australia +location = (-0.31328660073298215, 2.1330832341457366) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/YBRM.TXT + +[ybtl] +description = Townsville Amo, Australia +location = (-0.33597588100890846, 2.5612706773016787) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/YBTL.TXT + +[ycfs] +description = Coffs Harbour, AU +location = (-0.52918382920468077, 2.6724481506537177) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/YCFS.TXT + +[ycin] +description = Curtin, WE, AU +location = (-0.30682888250060308, 2.1610666798193789) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/YCIN.TXT + +[yfrt] +description = Forrest, WE, AU +location = (-0.53808500838985174, 2.2361158376551349) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/YFRT.TXT + +[ygel] +description = Geraldton, AU +location = (-0.50265482457436694, 2.0018926520374962) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/YGEL.TXT + +[yhid] +description = Horn Island, AU +location = (-0.18465583486100007, 2.483603525587931) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/YHID.TXT + +[ymav] +description = Avalon, Avalon Airport, Australia +location = (-0.66380689217517663, 2.5217098809231402) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/YMAV.TXT + +[ymhb] +description = Hobart Airport, Australia +location = (-0.74758269627090457, 2.5740697584829699) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/YMHB.TXT + +[ymlt] +description = Launceston Airport, Australia +location = (-0.72489341599497814, 2.5691246589356531) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/YMLT.TXT + +[ymml] +description = Melbourne Airport, Australia +location = (-0.65740735158453079, 2.5278185333051209) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/YMML.TXT + +[ypad] +description = Adelaide Airport, Australia +location = (-0.60970168536335245, 2.4175719022208124) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/YPAD.TXT + +[ypcc] +description = Cocos Island Airport, Christmas Island +location = (-0.21263928053464248, 1.6897696041391768) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/YPCC.TXT + +[ypdn] +description = Darwin Airport, Australia +location = (-0.21642082724729686, 2.2840542144432461) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/YPDN.TXT + +[ypea] +description = Bullsbrook Pearce Amo, Australia +location = (-0.55268759646487109, 2.0248728205220878) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/YPEA.TXT + +[ypgv] +description = Gove, NT, AU +location = (-0.21415189921970423, 2.3879594825786414) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/YPGV.TXT + +[ypjt] +description = Jandakot, AU +location = (-0.56025068989017979, 2.0224875372110289) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/YPJT.TXT + +[ypkg] +description = Kalgoorlie Boulder Amo, Australia +location = (-0.53727052140558784, 2.1197023765471132) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/YPKG.TXT + +[ypku] +description = Kununurra Kununurra Aws, Australia +location = (-0.27518024539777264, 2.2462387473167018) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/YPKU.TXT + +[yplm] +description = Learmonth Airport, Australia +location = (-0.38804487036007262, 1.9911297883168642) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/YPLM.TXT + +[yppd] +description = Port Hedland Pardoo, Australia +location = (-0.35081117965086028, 2.0868320089678867) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/YPPD.TXT + +[ypph] +description = Belmont Perth Airport, Australia +location = (-0.5573418078035226, 2.0237092676874253) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/YPPH.TXT + +[yptn] +description = Tindal / Katherine, Australia +location = (-0.2519091887045149, 2.3084888239711669) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/YPTN.TXT + +[ypwr] +description = Woomera Aerodrome, Australia +location = (-0.54337917378756795, 2.3879013049369084) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/YPWR.TXT + +[ypxm] +description = Christmas Island Aerodrome, Christmas Island +location = (-0.18209601862474173, 1.8445221311493407) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/YPXM.TXT + +[yrmd] +description = Richmond Airport, QLD, Australia +location = (-0.36131282576011009, 2.4978576295889687) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/YRMD.TXT + +[yscb] +description = Canberra, Australia +location = (-0.6161012259539983, 2.6037403557668739) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/YSCB.TXT + +[ysdu] +description = Dubbo, Australia +location = (-0.56199601914217412, 2.5929774920462423) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/YSDU.TXT + +[ysnf] +description = Norfolk Island Airport, Australia +location = (-0.50672725949568709, 2.9309895905158108) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/YSNF.TXT + +[ysnw] +description = Nowra Ran Air Station, Australia +location = (-0.60999257357201819, 2.6273023006687972) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/YSNW.TXT + +[ysri] +description = Richmond Aus-Afb, Australia +location = (-0.58643062867009477, 2.6316656237987832) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/YSRI.TXT + +[yssy] +description = Sydney Airport, Australia +location = (-0.59253928105207498, 2.6386469408067605) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/YSSY.TXT + +[ystw] +description = Tamworth Airport, Australia +location = (-0.54250650916157073, 2.6325382884247808) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/YSTW.TXT + +[yswg] +description = Wagga Airport, Australia +location = (-0.61348323207600686, 2.5734879820656387) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/YSWG.TXT + +[ytef] +description = Telfer, WE, AU +location = (-0.37908551353316838, 2.1331414117874696) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/YTEF.TXT + +[ytnk] +description = Tennant Creek, AU +location = (-0.34260813216648689, 2.3418827903259913) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/YTNK.TXT + +[ytre] +description = Taree, NW, AU +location = (-0.5565854984609917, 2.6619761751417514) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/YTRE.TXT + +[ywgt] +description = Wangaratta, VC, AU +location = (-0.63564891357633491, 2.5534166956677042) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/YWGT.TXT + +[ywha] +description = Whyalla, SA, AU +location = (-0.57718038363452484, 2.4001767873426023) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/YWHA.TXT + +[ywlm] +description = Williamtown Aus-Ab, NW, AU +location = (-0.57211892880374127, 2.649758870377791) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/YWLM.TXT + +[zbaa] +description = Beijing, China +location = (0.69696814796306883, 2.0295270318607397) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ZBAA.TXT + +[zbhh] +description = Hohhot, China +location = (0.71238522302235219, 1.9492418862690004) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ZBHH.TXT + +[zbsj] +description = Zhengding, CI +location = (0.66811203766342941, 2.0015435861870974) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ZBSJ.TXT + +[zbtj] +description = Tianjin / Zhangguizhu, China +location = (0.68387817857311139, 2.0481438772153457) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ZBTJ.TXT + +[zbyn] +description = Taiyuan, China +location = (0.65944356904519086, 1.9643680731196178) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ZBYN.TXT + +[zggg] +description = Guangzhou, China +location = (0.40433461004535304, 1.9780398189269068) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ZGGG.TXT + +[zgha] +description = Changsha, China +location = (0.49276462547973238, 1.9698949490842665) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ZGHA.TXT + +[zgkl] +description = Guilin, China +location = (0.4421500771718968, 1.9250981649497454) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ZGKL.TXT + +[zgnn] +description = Nanning, China +location = (0.39822595766337288, 1.8910642445358559) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ZGNN.TXT + +[zgow] +description = Shantou, China +location = (0.40840704496667307, 2.036508348868717) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ZGOW.TXT + +[zgsz] +description = Shenzhen, China +location = (0.39357174632472131, 1.99142067652553) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ZGSZ.TXT + +[zhcc] +description = Zhengzhou, China +location = (0.60592013865069816, 1.9835666948915556) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ZHCC.TXT + +[zhhh] +description = Wuhan, China +location = (0.53436163931893055, 1.9920024529428615) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ZHHH.TXT + +[zjhk] +description = Meilan, BJ, CI +location = (0.34784411992246989, 1.9277161588277369) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ZJHK.TXT + +[zjsy] +description = Sanya/Fenghuang, China +location = (0.31939525311496231, 1.9093902016817965) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ZJSY.TXT + +[zlll] +description = Lanzhou / Zhongchuan, China +location = (0.62866759656835747, 1.8107790989441168) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ZLLL.TXT + +[zlxy] +description = Xian/Xianyang, China +location = (0.60097503910338079, 1.8980455615438334) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ZLXY.TXT + +[zmub] +description = Ulan-Bator, Mongolia +location = (0.83514004707928668, 1.8634298647126124) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ZMUB.TXT + +[zppp] +description = Kunming, China +location = (0.43662320120724807, 1.7921622535895108) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ZPPP.TXT + +[zsam] +description = Xiamen, China +location = (0.42731477852994504, 2.0609429583966374) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ZSAM.TXT + +[zsfz] +description = Fuzhou, China +location = (0.45524004656185429, 2.0818869094205694) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ZSFZ.TXT + +[zshc] +description = Hangzhou, China +location = (0.52767121051961896, 2.0973039844798529) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ZSHC.TXT + +[zsnb] +description = Ningbo/Lishe, CI +location = (0.52063171586990853, 2.1200514423975121) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ZSNB.TXT + +[zsnj] +description = Nanjing, China +location = (0.55850536063818546, 2.0734511513692633) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ZSNJ.TXT + +[zsof] +description = Hefei, China +location = (0.55617825496885964, 2.0461076597546857) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ZSOF.TXT + +[zspd] +description = Shanghai / Pudong, China +location = (0.54308828557890221, 2.1252292525117618) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ZSPD.TXT + +[zsqd] +description = Qingdao, China +location = (0.62948208355262159, 2.1002128665665096) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ZSQD.TXT + +[zsss] +description = Shanghai / Hongqiao, China +location = (0.54396095020489943, 2.1194114883384474) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ZSSS.TXT + +[zswz] +description = Wenzhou Yongqiang Airport, Wenzhou, China +location = (0.48715979147516125, 2.1092653076201873) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ZSWZ.TXT + +[zuck] +description = Chongqing, China +location = (0.5151630175469929, 1.8584847651652954) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ZUCK.TXT + +[zuuu] +description = Chengdu, China +location = (0.53523430394492777, 1.8154333102827684) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ZUUU.TXT + +[zwsh] +description = Kashi, China +location = (0.68882327812042876, 1.3261593433070247) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ZWSH.TXT + +[zwww] +description = Urum-Qi / Diwopu, China +location = (0.76619954162551063, 1.5265813190777069) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ZWWW.TXT + +[zycc] +description = Changchun, China +location = (0.76619954162551063, 2.1854431117055664) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ZYCC.TXT + +[zyhb] +description = Harbin, China +location = (0.80320052176779044, 2.2092377671744221) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ZYHB.TXT + +[zytl] +description = Dalian, China +location = (0.67893307902579414, 2.1229021468424363) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ZYTL.TXT + +[zytx] +description = Shenyang / Taokian, China +location = (0.72954762733362966, 2.1537362969610028) +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/ZYTX.TXT \ No newline at end of file diff --git a/weather b/weather index dc0601c..67a13c8 100755 --- a/weather +++ b/weather @@ -2,7 +2,7 @@ # distributions may wish to edit the above to refer to a specific interpreter # path, such as #!/usr/bin/python -# Copyright (c) 2006-2010 Jeremy Stanley . Permission to +# Copyright (c) 2006-2012 Jeremy Stanley . Permission to # use, copy, modify, and distribute this software is granted under terms # provided in the LICENSE file distributed with this software. @@ -11,67 +11,105 @@ # added so distributors can consistently specify a private module location private_module_path = None if private_module_path: - import sys - sys.path.insert(1, private_module_path) + import sys + sys.path.insert(1, private_module_path) import weather # initialize options and configs selections = weather.Selections() -get = selections.get -get_bool = selections.get_bool # this mode just lists the aliases defined in the config -if get_bool("list"): print weather.list_aliases(selections.config) +if selections.get_bool("list"): + print( weather.list_aliases(selections.config) ) + +# this mode lists details of aliases defined in the config +elif selections.get_bool("longlist"): + print( weather.list_aliases(selections.config, detail=True) ) + +# this mode builds the correlation data files +elif selections.get_bool("build_sets"): + weather.correlate() + +# if no arguments were provided +elif not selections.arguments: + import sys + + # substitute defaults if we have any + if selections.config.has_option("default", "defargs"): + sys.argv += selections.config.get("default", "defargs").split(",") + selections = weather.Selections() + + # otherwise be helpful + else: + sys.argv += ("--help",) + selections = weather.Selections() + +# these modes analyze correlations +if selections.get_bool("info"): + weather.guess( + selections.arguments[0], + path=selections.get("setpath"), + info=selections.get_bool("info"), + cache_search=( + selections.get_bool("cache") \ + and selections.get_bool("cache_search") + ), + cacheage=selections.getint("cacheage"), + cachedir=selections.get("cachedir") + ) # normal operation else: - output = "" - for argument in selections.arguments: - if get_bool("conditions", argument) or not ( - get_bool("alert", argument) or get_bool("forecast", argument) - ): - partial = weather.get_metar( - id=get("id", argument), - verbose=get_bool("verbose", argument), - quiet=get_bool("quiet", argument), - headers=get("headers", argument), - murl=get("murl", argument), - imperial=get_bool("imperial", argument), - metric=get_bool("metric", argument) - ) - if partial: output += partial + "\n" - if get_bool("forecast", argument) or not ( - get_bool("alert", argument) or get_bool("conditions", argument) - ): - partial = weather.get_forecast( - city=get("city", argument), - st=get("st", argument), - verbose=get_bool("verbose", argument), - quiet=get_bool("quiet", argument), - flines=get("flines", argument), - furl=get("furl", argument), - imperial=get_bool("imperial", argument), - metric=get_bool("metric", argument) - ) - if partial: output += partial + "\n" - if get_bool("alert", argument) or not ( - get_bool("conditions", argument) or get_bool("forecast", argument) - ): - alert_text = "" - for atype in get("atypes", argument).split(","): - for zone in get("zones", argument).split(","): - partial = weather.get_alert( - zone=zone, - verbose=get_bool("verbose", argument), - quiet=get_bool("quiet", argument), - atype=atype, - aurl=get("aurl", argument), - imperial=get_bool("imperial", argument), - metric=get_bool("metric", argument) - ) - if partial: alert_text += partial + "\n" - if not alert_text: alert_text = "(no current alerts for your zones)\n" - output += alert_text - output = output.strip() - if output: print( output ) + output = "" + for argument in selections.arguments: + if selections.get_bool("conditions", argument) or not ( + selections.get_bool("alert", argument) \ + or selections.get_bool("forecast", argument) + ): + partial = weather.get_metar( + uri=selections.get("metar", argument), + verbose=selections.get_bool("verbose", argument), + quiet=selections.get_bool("quiet", argument), + headers=selections.get("headers", argument), + imperial=selections.get_bool("imperial", argument), + metric=selections.get_bool("metric", argument), + cache_data=( + selections.get_bool("cache") \ + and selections.get_bool("cache_data") + ), + cacheage=selections.getint("cacheage"), + cachedir=selections.get("cachedir") + ) + if partial: output += partial + "\n" + if selections.get_bool("forecast", argument) \ + or selections.get_bool("alert", argument): + alert_text = "" + if selections.get_bool("alert", argument): + atypes = selections.get("atypes", argument).split(",") + else: + atypes = [] + if selections.get_bool("forecast", argument): + atypes = ["zone_forecast"] + atypes + for atype in atypes: + partial = weather.get_alert( + uri=selections.get(atype, argument), + verbose=selections.get_bool("verbose", argument), + quiet=selections.get_bool("quiet", argument), + cache_data=( + selections.get_bool("cache") \ + and selections.get_bool("cache_data") + ), + cacheage=selections.getint("cacheage"), + cachedir=selections.get("cachedir") + ) + if partial: + alert_text += "***** %s *****\n%s\n" % ( + atype.replace("_", " ").title(), + partial + ) + if not alert_text: + alert_text = "(no current alerts for this zone)\n" + output += alert_text + output = output.strip() + if output: print( output ) diff --git a/weather.1 b/weather.1 index bbffa8c..7321ff5 100644 --- a/weather.1 +++ b/weather.1 @@ -1,127 +1,215 @@ -.TH WEATHER 1 "March 15, 2010" "" \" -*- nroff -*- -\" Copyright (c) 2006-2010 Jeremy Stanley . +.TH weather 1 "2012\-06\-24" "2.0" \" -*- nroff -*- +\" Copyright (c) 2006-2012 Jeremy Stanley . \" Permission to use, copy, modify, and distribute this software is \" granted under terms provided in the LICENSE file distributed with \" this software. .SH NAME -weather \- command\-line tool to obtain weather conditions and forecasts +weather \- command-line tool to obtain weather conditions and forecasts .SH SYNOPSIS -.B weather [ options ] [ alias [ alias [...] ] ] +.B weather +[ +.I options +] [ +.I alias1 +| +.I search1 +[ +.I alias2 +| +.I search2 +[...]]] .SH DESCRIPTION -This utility is intended to provide quick access to current weather -conditions and forecasts. Presently, it is capable of providing data for -localities throughout the United States of America by retrieving and -processing METAR data from the National Oceanic and Atmospheric -Administration and forecasts from the National Weather Service. Behavior -can be determined by command\-line options and specification of zero or -more aliases. Aliases are defined in weatherrc files, as a convenient -means of grouping option combinations together using a short name. -Specifying multiple aliases on the command line causes the utility to -output data for each, as if it had been invoked multiple times. If no -alias is specified, then an alias of "default" is used (assuming it has -been defined) or the built\-in default values are chosen (if it has not). +. +This command-line utility is intended to provide quick access to current +weather conditions and forecasts. +. +Presently, it is capable of returning data for localities throughout the +USA and some select locations globally by retrieving and formatting +decoded METARs (Meteorological Aerodrome Reports) from NOAA (the USA +National Oceanic and Atmospheric Administration) and forecasts/alerts +from NWS (the USA National Weather Service). +. +The tool is written to function in the same spirit as other command-line +informational utilities like \fIcal\fR(1), \fIcalendar\fR(1) and +\fIdict\fR(1). +. +It retrieves arbitrary weather data via precompiled correlations or +custom-tailored aliases (system-wide or on a per-user basis). + +Behavior can be determined by command-line options and specification of +zero or more location aliases and search terms. + +Aliases are defined in \fIweatherrc\fR(5) files, as a convenient means +of grouping URIs together using a short name. +. +Specifying multiple aliases or location search terms on the command line +causes the utility to output data for each, as if it had been invoked +multiple times. +. +If none are specified, then an alias of \fIdefault\fR is checked for a +\fIdefargs\fR option and any alias names listed within it +(comma-separated) are applied instead. + +Searches utilize location correlation sets in INI-style text files named +\fIairports\fR, \fIplaces\fR, \fIstations\fR, \fIzctas\fR and +\fIzones\fR. +. +A precomputed copy is distributed with the source, but can be rebuilt +from updated data sources as needed by placing them in the current +working directory and running with the \fI\-\-build\-sets\fR option (see +the comments at the top of any location correlation set file for +instructions on where to find updated data sources). +. +Positive search results are cached and sourced as aliases on subsequent +runs for as long as the correlation sets remain unchanged, and are +cleared automatically once the correlation sets are updated. + +Retrieved data is also cached automatically for a short period of time, +adjustable with the \fIcacheage\fR configuration option or +\fI\-\-cacheage\fR command-line option. +. +This helps throttle load against NOAA/NWS servers in case the utility is +repeatedly re-run requesting the same data, but can be overridden with +the \fIcache_data\fR configuration option or \fI\-\-no\-cache\-data\fR +command-line option. +. .SH OPTIONS A summary of options is included below. .TP -.B \-\-version +.BR \-\-version show program's version number and exit .TP -.B \-h, \-\-help +.BR \-h ", " \-\-help show a help message and exit .TP -.B \-a, \-\-alert +.BR \-a ", " \-\-alert include local alert notices .TP -.B \-\-atypes=ATYPES -alert notification types to display +.BR \-\-atypes =\fIATYPES\fR +list of alert notification types to display (ex: +.BR tornado_warning,urgent_weather_message ) .TP -.B \-\-aurl=AURL -alert URL (including %atype% and %zone%) +.BR \-\-build\-sets +(re)build location correlation sets .TP -.B \-c CITY, \-\-city=CITY -the city name (ex: "Raleigh Durham") +.BR \-\-cacheage =\fICACHEAGE\fR +duration in seconds to refresh cached data (ex: +.BR 900 ) .TP -.B \-\-flines=FLINES -maximum number of forecast lines to show +.BR \-\-cachedir =\fICACHEDIR\fR +directory for storing cached searches and data (ex: +.BR ~/.weather ) .TP -.B \-f, \-\-forecast +.BR \-f ", " \-\-forecast include a local forecast .TP -.B \-\-furl=FURL -forecast URL (including %city% and %st%) -.TP -.B \-\-headers=HEADERS -the conditions headers to display +.BR \-\-headers =\fIHEADERS\fR +list of conditions headers to display (ex: +.BR temperature,wind ) .TP -.B \-i ID, \-\-id=ID -the METAR station ID (ex: KRDU) +.BR \-\-imperial +filter/convert conditions for US/UK units .TP -.B \-\-imperial -filter/convert for US/UK units +.BR \-\-info +output detailed information for your search .TP -.B \-l, \-\-list -print a list of configured aliases +.BR \-l ", " \-\-list +list all configured aliases and cached searches .TP -.B \-m, \-\-metric -filter/convert for metric units +.BR \-\-longlist +display details of all configured aliases .TP -.B \-\-murl=MURL -METAR URL (including %id%) +.BR \-m ", " \-\-metric +filter/convert conditions for metric units .TP -.B \-n, \-\-no\-conditions -disable output of current conditions (forces \-f) +.BR \-n ", " \-\-no\-conditions +disable output of current conditions .TP -.B \-o, \-\-omit\-forecast -omit the local forecast (cancels \-f) -.TP -.B \-\-quiet -skip preambles and don't indent +.BR \-\-no\-cache +disable all caching (searches and data) .TP -.B \-s ST, \-\-st=ST -the state abbreviation (ex: NC) +.BR \-\-no\-cache\-data +disable retrieved data caching .TP -.B \-v, \-\-verbose -show full decoded feeds (cancels \-q) -.TP -.B \-z ZONES, \-\-zones=ZONES -alert zones (ex: nc/ncc183,nc/ncz041) -.SH FILES -.B weather -may additionally obtain configuration data from a system\-wide -configuration file, a per\-user configuration file, and a local -directory configuration file. The file format and configuration options -are described in -.BR weatherrc (5) . -They are aggregated in the following order: +.BR \-\-no\-cache\-search +disable search result caching .TP -.B /etc/weatherrc -the system\-wide configuration +.BR \-q ", " \-\-quiet +skip preambles and don't indent .TP -.B ~/.weatherrc -the per\-user configuration (can be used to override the above) +.BR \-\-setpath =\fISETPATH\fR +directory search path for correlation sets (ex: +.BR .:~/.weather ) .TP -.B ./weatherrc -the local directory configuration (can be used to override the above) +.BR \-v ", " \-\-verbose +show full decoded feeds .SH EXAMPLES .TP .B weather -View output for the defined default alias, or the built-in default values -if there is no default alias defined in the configuration files. -.TP -.B weather -i kavl -Display current conditions at the KAVL METAR station. +View output for the default alias, if one has been defined (otherwise +display usage/syntax similar to \-\-help) +.TP +.BR weather " " rdu +Display weather conditions at the airport with IATA/FAA code \fIRDU\fR. +.TP +.BR weather " " \-\-info " " raleigh +Show a list of FIPS codes for United States Census Bureau places +containing the word \fIraleigh\fR (or the proximity information if only +one match was found). +.TP +.BR weather " " \(dq ^ral[ie]{2}gh " " city.*nc$ \(dq +Get the current weather conditions from the nearest station to the +Census place name matching the regular expression provided. +.TP +.BR weather " " \-fv " " fips3755000 +Get the full decoded METAR from the nearest station, and the forecast +data for the nearest zone to the Census place with FIPS code +\fI3755000\fR with no special filtering or formatting. +.TP +.BR weather " " \-\-forecast " " \-\-no\-cache\-data " " 27613 +Ignore any recent cached METAR or forecast data and display fresh output +for the nearest station and zone to the Census ZCTA (essentially USPS +ZIP code) \fI27613\fR. +.TP +.BR weather " " home " " work +Show current conditions for both the \fIhome\fR and \fIwork\fR aliases +in that order. +.TP +.BR weather " " 35.878573,\-78.727813 +.TP +.BR weather " " 35\-52\-43n,78\-43\-40w +.TP +.BR weather " " \(dq 35\-52n, " " 78\-43w \(dq +Display weather conditions for the nearest station to an arbitrary set +of global coordinates in latitude,longitude order either in decimal +format or degree, degree\-minute or degree\-minute\-second formats, +optionally using signed or cardinal hemisphere designations with or +without spacing. +. +Note that the cut-off for maximum acceptable distance is hard-coded at +0.1 radians (roughly 637km or 396mi). +. +.SH INPUT FILES +. +.B weather +may additionally obtain configuration data from a system-wide +configuration file, a per-user configuration file, and a local +directory configuration file. +. +The file format and configuration options are described in +.IR weatherrc (5). +. +They are aggregated in the following order: .TP -.B weather -n -c asheville -s nc -See a forecast for the Asheville, NC area. +.I /etc/weatherrc +the system-wide configuration .TP -.B weather -fv gso -Get the full decoded METAR for the station associated with the gso alias, -and the forecast data for the city/state associated with the gso alias, -without filtering or fancy formatting. +.IR ~/.weather/weatherrc " or " ~/.weatherrc +the per-user configuration .TP -.B weather home work -Show current conditions for both the home and work aliases in that order. -.SH SEE ALSO -.BR weatherrc (5) +.I ./weatherrc +the local directory configuration .SH AUTHOR Utility and manual written by Jeremy Stanley . +.SH SEE ALSO +.IR weatherrc (5) diff --git a/weather.py b/weather.py index 4920a3a..0e0d436 100644 --- a/weather.py +++ b/weather.py @@ -1,564 +1,2063 @@ -# Copyright (c) 2006-2010 Jeremy Stanley . Permission to +"""Contains various object definitions needed by the weather utility.""" + +weather_copyright = """\ +# Copyright (c) 2006-2012 Jeremy Stanley . Permission to # use, copy, modify, and distribute this software is granted under terms # provided in the LICENSE file distributed with this software. +#""" -"""Contains various object definitions needed by the weather utility.""" +weather_version = "2.0" -version = "1.5" +radian_to_km = 6372.795484 +radian_to_mi = 3959.871528 + +def pyversion(ref=None): + """Determine the Python version and optionally compare to a reference.""" + import platform + ver = platform.python_version() + if ref: + return [ + int(x) for x in ver.split(".")[:2] + ] >= [ + int(x) for x in ref.split(".")[:2] + ] + else: return ver class Selections: - """An object to contain selection data.""" - def __init__(self): - """Store the config, options and arguments.""" - self.config = get_config() - self.options, self.arguments = get_options(self.config) - if self.arguments: - self.arguments = [(x.lower()) for x in self.arguments] - else: self.arguments = [ None ] - def get(self, option, argument=None): - """Retrieve data from the config or options.""" - if not argument: return self.options.__dict__[option] - elif not self.config.has_section(argument): - import sys - sys.stderr.write("weather: error: no alias defined for " \ - + argument + "\n") - sys.exit(1) - elif self.config.has_option(argument, option): - return self.config.get(argument, option) - else: return self.options.__dict__[option] - def get_bool(self, option, argument=None): - """Get data and coerce to a boolean if necessary.""" - return bool(self.get(option, argument)) - -def bool(data): - """Coerce data to a boolean value.""" - if type(data) is str: - if eval(data): return True - else: return False - else: - if data: return True - else: return False - -def quote(words): - """Wrap a string in quotes if it contains spaces.""" - if words.find(" ") != -1: words = "\"" + words + "\"" - return words - -def titlecap(words): - """Perform English-language title capitalization.""" - words = words.lower().strip() - for separator in [" ", "-", "'"]: - newwords = [] - wordlist = words.split(separator) - for word in wordlist: - if word: - newwords.append(word[0].upper() + word[1:]) - words = separator.join(newwords) - end = len(words) - for prefix in ["Mac", "Mc"]: - position = 0 - offset = len(prefix) - while position < end: - position = words.find(prefix, position) - if position == -1: - position = end - position += offset - import string - if position < end and words[position] in string.letters: - words = words[:position] \ - + words[position].upper() \ - + words[position+1:] - return words + """An object to contain selection data.""" + def __init__(self): + """Store the config, options and arguments.""" + self.config = get_config() + self.options, self.arguments = get_options(self.config) + if self.get_bool("cache") and self.get_bool("cache_search") \ + and not self.get_bool("longlist"): + integrate_search_cache( + self.config, + self.get("cachedir"), + self.get("setpath") + ) + if not self.arguments: + if "id" in self.options.__dict__ \ + and self.options.__dict__["id"]: + self.arguments.append( self.options.__dict__["id"] ) + del( self.options.__dict__["id"] ) + import sys + message = "WARNING: the --id option is deprecated and will eventually be removed\n" + sys.stderr.write(message) + elif "city" in self.options.__dict__ \ + and self.options.__dict__["city"] \ + and "st" in self.options.__dict__ \ + and self.options.__dict__["st"]: + self.arguments.append( + "^%s city, %s" % ( + self.options.__dict__["city"], + self.options.__dict__["st"] + ) + ) + del( self.options.__dict__["city"] ) + del( self.options.__dict__["st"] ) + import sys + message = "WARNING: the --city/--st options are deprecated and will eventually be removed\n" + sys.stderr.write(message) + def get(self, option, argument=None): + """Retrieve data from the config or options.""" + if argument: + if self.config.has_section(argument) and ( + self.config.has_option(argument, "city") \ + or self.config.has_option(argument, "id") \ + or self.config.has_option(argument, "st") + ): + self.config.remove_section(argument) + import sys + message = "WARNING: the city/id/st options are now unsupported in aliases\n" + sys.stderr.write(message) + if not self.config.has_section(argument): + guessed = guess( + argument, + path=self.get("setpath"), + info=self.get("info"), + cache_search=( + self.get("cache") and self.get("cache_search") + ), + cachedir=self.get("cachedir") + ) + self.config.add_section(argument) + for item in guessed.items(): + self.config.set(argument, *item) + if self.config.has_option(argument, option): + return self.config.get(argument, option) + if option in self.options.__dict__: + return self.options.__dict__[option] + else: + import os, sys + message = "%s error: no URI defined for %s\n" % ( + os.path.basename( sys.argv[0] ), + option + ) + sys.stderr.write(message) + exit(1) + def get_bool(self, option, argument=None): + """Get data and coerce to a boolean if necessary.""" + return bool(self.get(option, argument)) + def getint(self, option, argument=None): + """Get data and coerce to an integer if necessary.""" + value = self.get(option, argument) + if value: return int(value) + else: return 0 + +def average(coords): + """Average a list of coordinates.""" + x = 0 + y = 0 + for coord in coords: + x += coord[0] + y += coord[1] + count = len(coords) + return (x/count, y/count) def filter_units(line, units="imperial"): - """Filter or convert units in a line of text between US/UK and metric.""" - import re - # filter lines with both pressures in the form of "X inches (Y hPa)" or - # "X in. Hg (Y hPa)" - dual_p = re.match( - "(.* )(\d*(\.\d+)? (inches|in\. Hg)) \((\d*(\.\d+)? hPa)\)(.*)", - line - ) - if dual_p: - preamble, in_hg, i_fr, i_un, hpa, h_fr, trailer = dual_p.groups() - if units == "imperial": line = preamble + in_hg + trailer - elif units == "metric": line = preamble + hpa + trailer - # filter lines with both temperatures in the form of "X F (Y C)" - dual_t = re.match( - "(.* )(\d*(\.\d+)? F) \((\d*(\.\d+)? C)\)(.*)", - line - ) - if dual_t: - preamble, fahrenheit, f_fr, celsius, c_fr, trailer = dual_t.groups() - if units == "imperial": line = preamble + fahrenheit + trailer - elif units == "metric": line = preamble + celsius + trailer - # if metric is desired, convert distances in the form of "X mile(s)" to - # "Y kilometer(s)" - if units == "metric": - imperial_d = re.match( - "(.* )(\d+)( mile\(s\))(.*)", - line - ) - if imperial_d: - preamble, mi, m_u, trailer = imperial_d.groups() - line = preamble + str(int(round(int(mi)*1.609344))) \ - + " kilometer(s)" + trailer - # filter speeds in the form of "X MPH (Y KT)" to just "X MPH"; if metric is - # desired, convert to "Z KPH" - imperial_s = re.match( - "(.* )(\d+)( MPH)( \(\d+ KT\))(.*)", - line - ) - if imperial_s: - preamble, mph, m_u, kt, trailer = imperial_s.groups() - if units == "imperial": line = preamble + mph + m_u + trailer - elif units == "metric": - line = preamble + str(int(round(int(mph)*1.609344))) + " KPH" + \ - trailer - # if imperial is desired, qualify given forcast temperatures like "X F"; if - # metric is desired, convert to "Y C" - imperial_t = re.match( - "(.* )(High |high |Low |low )(\d+)(\.|,)(.*)", - line - ) - if imperial_t: - preamble, parameter, fahrenheit, sep, trailer = imperial_t.groups() - if units == "imperial": - line = preamble + parameter + fahrenheit + " F" + sep + trailer - elif units == "metric": - line = preamble + parameter \ - + str(int(round((int(fahrenheit)-32)*5/9))) + " C" + sep + trailer - # hand off the resulting line - return line - -def sorted(data): - """Return a sorted copy of a list.""" - new_copy = data[:] - new_copy.sort() - return new_copy - -def get_url(url, ignore_fail=False): - """Return a string containing the results of a URL GET.""" - import urllib2 - try: return urllib2.urlopen(url).read() - except urllib2.URLError: - if ignore_fail: return "" - else: - import sys, traceback - sys.stderr.write("weather: error: failed to retrieve\n " \ - + url + "\n " + \ - traceback.format_exception_only(sys.exc_type, sys.exc_value)[0]) - sys.exit(1) + """Filter or convert units in a line of text between US/UK and metric.""" + import re + # filter lines with both pressures in the form of "X inches (Y hPa)" or + # "X in. Hg (Y hPa)" + dual_p = re.match( + "(.* )(\d*(\.\d+)? (inches|in\. Hg)) \((\d*(\.\d+)? hPa)\)(.*)", + line + ) + if dual_p: + preamble, in_hg, i_fr, i_un, hpa, h_fr, trailer = dual_p.groups() + if units == "imperial": line = preamble + in_hg + trailer + elif units == "metric": line = preamble + hpa + trailer + # filter lines with both temperatures in the form of "X F (Y C)" + dual_t = re.match( + "(.* )(-?\d*(\.\d+)? F) \((-?\d*(\.\d+)? C)\)(.*)", + line + ) + if dual_t: + preamble, fahrenheit, f_fr, celsius, c_fr, trailer = dual_t.groups() + if units == "imperial": line = preamble + fahrenheit + trailer + elif units == "metric": line = preamble + celsius + trailer + # if metric is desired, convert distances in the form of "X mile(s)" to + # "Y kilometer(s)" + if units == "metric": + imperial_d = re.match( + "(.* )(\d+)( mile\(s\))(.*)", + line + ) + if imperial_d: + preamble, mi, m_u, trailer = imperial_d.groups() + line = preamble + str(int(round(int(mi)*1.609344))) \ + + " kilometer(s)" + trailer + # filter speeds in the form of "X MPH (Y KT)" to just "X MPH"; if metric is + # desired, convert to "Z KPH" + imperial_s = re.match( + "(.* )(\d+)( MPH)( \(\d+ KT\))(.*)", + line + ) + if imperial_s: + preamble, mph, m_u, kt, trailer = imperial_s.groups() + if units == "imperial": line = preamble + mph + m_u + trailer + elif units == "metric": + line = preamble + str(int(round(int(mph)*1.609344))) + " KPH" + \ + trailer + imperial_s = re.match( + "(.* )(\d+)( MPH)( \(\d+ KT\))(.*)", + line + ) + if imperial_s: + preamble, mph, m_u, kt, trailer = imperial_s.groups() + if units == "imperial": line = preamble + mph + m_u + trailer + elif units == "metric": + line = preamble + str(int(round(int(mph)*1.609344))) + " KPH" + \ + trailer + # if imperial is desired, qualify given forcast temperatures like "X F"; if + # metric is desired, convert to "Y C" + imperial_t = re.match( + "(.* )(High |high |Low |low )(\d+)(\.|,)(.*)", + line + ) + if imperial_t: + preamble, parameter, fahrenheit, sep, trailer = imperial_t.groups() + if units == "imperial": + line = preamble + parameter + fahrenheit + " F" + sep + trailer + elif units == "metric": + line = preamble + parameter \ + + str(int(round((int(fahrenheit)-32)*5/9))) + " C" + sep \ + + trailer + # hand off the resulting line + return line + +def get_uri( + uri, + ignore_fail=False, + cache_data=False, + cacheage=900, + cachedir="." +): + """Return a string containing the results of a URI GET.""" + if pyversion("3"): + import urllib, urllib.error, urllib.request + URLError = urllib.error.URLError + urlopen = urllib.request.urlopen + else: + import urllib2 as urllib + URLError = urllib.URLError + urlopen = urllib.urlopen + import os, time + if cache_data: + dcachedir = os.path.join( os.path.expanduser(cachedir), "datacache" ) + if not os.path.exists(dcachedir): + try: os.makedirs(dcachedir) + except (IOError, OSError): pass + dcache_fn = os.path.join( + dcachedir, + uri.split(":")[1].replace("/","_") + ) + now = time.time() + if cache_data and os.access(dcache_fn, os.R_OK) \ + and now-cacheage < os.stat(dcache_fn).st_mtime <= now: + dcache_fd = open(dcache_fn) + data = dcache_fd.read() + dcache_fd.close() + else: + try: + if pyversion("3"): data = urlopen(uri).read().decode("utf-8") + else: data = urlopen(uri).read() + except URLError: + if ignore_fail: return "" + else: + import os, sys, traceback + message = "%s error: failed to retrieve\n %s\n %s" % ( + os.path.basename( sys.argv[0] ), + uri, + traceback.format_exception_only( + sys.exc_type, + sys.exc_value + )[0] + ) + sys.stderr.write(message) + sys.exit(1) + if cache_data: + try: + import codecs + dcache_fd = codecs.open(dcache_fn, "w", "utf-8") + dcache_fd.write(data) + dcache_fd.close() + except (IOError, OSError): pass + return data def get_metar( - id, - verbose=False, - quiet=False, - headers=None, - murl=None, - imperial=False, - metric=False + uri=None, + verbose=False, + quiet=False, + headers=None, + imperial=False, + metric=False, + cache_data=False, + cacheage=900, + cachedir="." ): - """Return a summarized METAR for the specified station.""" - if not id: - import sys - sys.stderr.write("weather: error: id required for conditions\n") - sys.exit(1) - if not murl: - murl = \ - "http://weather.noaa.gov/pub/data/observations/metar/decoded/%ID%.TXT" - murl = murl.replace("%ID%", id.upper()) - murl = murl.replace("%Id%", id.capitalize()) - murl = murl.replace("%iD%", id) - murl = murl.replace("%id%", id.lower()) - murl = murl.replace(" ", "_") - metar = get_url(murl) - if verbose: return metar - else: - lines = metar.split("\n") - if not headers: - headers = \ - "relative_humidity," \ - + "precipitation_last_hour," \ - + "sky conditions," \ - + "temperature," \ - + "weather," \ - + "wind" - headerlist = headers.lower().replace("_"," ").split(",") - output = [] - if not quiet: - title = "Current conditions at %s" - place = lines[0].split(", ") - if len(place) > 1: - place = "%s, %s (%s)" % (titlecap(place[0]), place[1], id.upper()) - else: place = id.upper() - output.append(title%place) - output.append("Last updated " + lines[1]) - for header in headerlist: - for line in lines: - if line.lower().startswith(header + ":"): - if line.endswith(":0") or line.endswith(":1"): - line = line[:-2] - if imperial: line = filter_units(line, units="imperial") - elif metric: line = filter_units(line, units="metric") - if quiet: output.append(line) - else: output.append(" " + line) - return "\n".join(output) + """Return a summarized METAR for the specified station.""" + if not uri: + import os, sys + message = "%s error: METAR URI required for conditions\n" % \ + os.path.basename( sys.argv[0] ) + sys.stderr.write(message) + sys.exit(1) + metar = get_uri( + uri, + cache_data=cache_data, + cacheage=cacheage, + cachedir=cachedir + ) + if pyversion("3") and type(metar) is bytes: metar = metar.decode("utf-8") + if verbose: return metar + else: + import re + lines = metar.split("\n") + if not headers: + headers = \ + "relative_humidity," \ + + "precipitation_last_hour," \ + + "sky conditions," \ + + "temperature," \ + + "heat index," \ + + "windchill," \ + + "weather," \ + + "wind" + headerlist = headers.lower().replace("_"," ").split(",") + output = [] + if not quiet: + title = "Current conditions at %s" + place = lines[0].split(", ") + if len(place) > 1: + place = "%s, %s" % ( place[0].title(), place[1] ) + else: place = "" + output.append(title%place) + output.append("Last updated " + lines[1]) + header_match = False + for header in headerlist: + for line in lines: + if line.lower().startswith(header + ":"): + if re.match(r".*:\d+$", line): line = line[:line.rfind(":")] + if imperial: line = filter_units(line, units="imperial") + elif metric: line = filter_units(line, units="metric") + if quiet: output.append(line) + else: output.append(" " + line) + header_match = True + if not header_match: + output.append( + "(no conditions matched your header list, try with --verbose)" + ) + return "\n".join(output) def get_alert( - zone, - verbose=False, - quiet=False, - atype=None, - aurl=None, - imperial=False, - metric=False -): - """Return alert notice for the specified zone and type.""" - if not zone: - import sys - sys.stderr.write("weather: error: zone required for alerts\n") - sys.exit(1) - if not atype: atype = "severe_weather_stmt" - if not aurl: - aurl = \ - "http://weather.noaa.gov/pub/data/watches_warnings/%atype%/%zone%.txt" - aurl = aurl.replace("%ATYPE%", atype.upper()) - aurl = aurl.replace("%Atype%", atype.capitalize()) - aurl = aurl.replace("%atypE%", atype) - aurl = aurl.replace("%atype%", atype.lower()) - aurl = aurl.replace("%ZONE%", zone.upper()) - aurl = aurl.replace("%Zone%", zone.capitalize()) - aurl = aurl.replace("%zonE%", zone) - aurl = aurl.replace("%zone%", zone.lower()) - aurl = aurl.replace(" ", "_") - alert = get_url(aurl, ignore_fail=True).strip() - if alert: - if verbose: return alert - else: - lines = alert.split("\n") - muted = True - import calendar, re, time - valid_time = time.strftime("%Y%m%d%H%M") - #if not quiet: output = [ lines[3], lines[5] ] - #if not quiet: output = [ lines[8], lines[10] ] - #else: output = [] - output = [] - for line in lines: - if line.startswith("Expires:") and "Expires:"+valid_time > line: - return "" - if muted and line.find("...") != -1: - muted = False - if line == "$$" \ - or line.startswith("LAT...LON") \ - or line.startswith("TIME...MOT...LOC"): - muted = True - if line and not ( - muted \ - or line == "&&" - or re.match("^/.*/$", line) \ - or re.match("^"+zone.split("/")[1][:3].upper()+".*", line) - ): - if quiet: output.append(line) - else: output.append(" " + line) - return "\n".join(output) - -def get_forecast( - city, - st, - verbose=False, - quiet=False, - flines="0", - furl=None, - imperial=False, - metric=False + uri=None, + verbose=False, + quiet=False, + cache_data=False, + cacheage=900, + cachedir="." ): - """Return the forecast for a specified city/st combination.""" - if not city or not st: - import sys - sys.stderr.write("weather: error: city and st required for forecast\n") - sys.exit(1) - if not furl: - furl = "http://weather.noaa.gov/pub/data/forecasts/city/%st%/%city%.txt" - furl = furl.replace("%CITY%", city.upper()) - furl = furl.replace("%City%", city.capitalize()) - furl = furl.replace("%citY%", city) - furl = furl.replace("%city%", city.lower()) - furl = furl.replace("%ST%", st.upper()) - furl = furl.replace("%St%", st.capitalize()) - furl = furl.replace("%sT%", st) - furl = furl.replace("%st%", st.lower()) - furl = furl.replace(" ", "_") - forecast = get_url(furl) - if verbose: return forecast - else: - lines = forecast.split("\n") - output = [] - if not quiet: output += lines[2:4] - flines = int(flines) - if not flines: flines = len(lines) - 5 - for line in lines[5:flines+5]: - if imperial: line = filter_units(line, units="imperial") - elif metric: line = filter_units(line, units="metric") - if line.startswith("."): - if quiet: output.append(line.replace(".", "", 1)) - else: output.append(line.replace(".", " ", 1)) - return "\n".join(output) + """Return alert notice for the specified URI.""" + if not uri: + import os, sys + message = "%s error: Alert URI required for alerts\n" % \ + os.path.basename( sys.argv[0] ) + sys.stderr.write(message) + sys.exit(1) + alert = get_uri( + uri, + ignore_fail=True, + cache_data=cache_data, + cacheage=cacheage, + cachedir=cachedir + ).strip() + if pyversion("3") and type(alert) is bytes: alert = alert.decode("utf-8") + if alert: + if verbose: return alert + else: + if alert.find("\nNATIONAL WEATHER SERVICE") == -1: + muted = False + else: + muted = True + lines = alert.split("\n") + import time + valid_time = time.strftime("%Y%m%d%H%M") + output = [] + for line in lines: + if line.startswith("Expires:") \ + and "Expires:" + valid_time > line: + return "" + if muted and line.startswith("NATIONAL WEATHER SERVICE"): + muted = False + line = "" + elif line == "&&": + line = "" + elif line == "$$": + muted = True + if line and not muted: + if quiet: output.append(line) + else: output.append(" " + line) + return "\n".join(output) def get_options(config): - """Parse the options passed on the command line.""" - - # for optparse's builtin -h/--help option - usage = "usage: %prog [ options ] [ alias [ alias [...] ] ]" - - # for optparse's builtin --version option - verstring = "%prog " + version - - # create the parser - import optparse - option_parser = optparse.OptionParser(usage=usage, version=verstring) - - # the -a/--alert option - if config.has_option("default", "alert"): - default_alert = bool(config.get("default", "alert")) - else: default_alert = False - option_parser.add_option("-a", "--alert", - dest="alert", - action="store_true", - default=default_alert, - help="include local alert notices") - - # the --atypes option - if config.has_option("default", "atypes"): - default_atypes = config.get("default", "atypes") - else: - default_atypes = \ - "flash_flood/statement," \ - + "flash_flood/warning," \ - + "flash_flood/watch," \ - + "flood/coastal," \ - + "flood/statement," \ - + "flood/warning," \ - + "non_precip," \ - + "severe_weather_stmt," \ - + "special_weather_stmt," \ - + "thunderstorm," \ - + "tornado," \ - + "urgent_weather_message" - option_parser.add_option("--atypes", - dest="atypes", - default=default_atypes, - help="alert notification types to display") - - # the --aurl option - if config.has_option("default", "aurl"): - default_aurl = config.get("default", "aurl") - else: - default_aurl = \ - "http://weather.noaa.gov/pub/data/watches_warnings/%atype%/%zone%.txt" - option_parser.add_option("--aurl", - dest="aurl", - default=default_aurl, - help="alert URL (including %atype% and %zone%)") - - # separate options object from list of arguments and return both - # the -c/--city option - if config.has_option("default", "city"): - default_city = config.get("default", "city") - else: default_city = "" - option_parser.add_option("-c", "--city", - dest="city", - default=default_city, - help="the city name (ex: \"Raleigh Durham\")") - - # the --flines option - if config.has_option("default", "flines"): - default_flines = config.get("default", "flines") - else: default_flines = "0" - option_parser.add_option("--flines", - dest="flines", - default=default_flines, - help="maximum number of forecast lines to show") - - # the -f/--forecast option - if config.has_option("default", "forecast"): - default_forecast = bool(config.get("default", "forecast")) - else: default_forecast = False - option_parser.add_option("-f", "--forecast", - dest="forecast", - action="store_true", - default=default_forecast, - help="include a local forecast") - - # the --furl option - if config.has_option("default", "furl"): - default_furl = config.get("default", "furl") - else: - default_furl = \ - "http://weather.noaa.gov/pub/data/forecasts/city/%st%/%city%.txt" - option_parser.add_option("--furl", - dest="furl", - default=default_furl, - help="forecast URL (including %city% and %st%)") - - # the --headers option - if config.has_option("default", "headers"): - default_headers = config.get("default", "headers") - else: - default_headers = \ - "temperature," \ - + "relative_humidity," \ - + "wind," \ - + "weather," \ - + "sky_conditions," \ - + "precipitation_last_hour" - option_parser.add_option("--headers", - dest="headers", - default=default_headers, - help="the conditions headers to display") - - # the -i/--id option - if config.has_option("default", "id"): - default_id = config.get("default", "id") - else: default_id = "" - option_parser.add_option("-i", "--id", - dest="id", - default=default_id, - help="the METAR station ID (ex: KRDU)") - - # the --imperial option - if config.has_option("default", "imperial"): - default_imperial = bool(config.get("default", "imperial")) - else: default_imperial = False - option_parser.add_option("--imperial", - dest="imperial", - action="store_true", - default=default_imperial, - help="filter/convert for US/UK units") - - # the -l/--list option - option_parser.add_option("-l", "--list", - dest="list", - action="store_true", - default=False, - help="print a list of configured aliases") - - # the -m/--metric option - if config.has_option("default", "metric"): - default_metric = bool(config.get("default", "metric")) - else: default_metric = False - option_parser.add_option("-m", "--metric", - dest="metric", - action="store_true", - default=default_metric, - help="filter/convert for metric units") - - # the --murl option - if config.has_option("default", "murl"): - default_murl = config.get("default", "murl") - else: - default_murl = \ - "http://weather.noaa.gov/pub/data/observations/metar/decoded/%ID%.TXT" - option_parser.add_option("--murl", - dest="murl", - default=default_murl, - help="METAR URL (including %id%)") - - # the -n/--no-conditions option - if config.has_option("default", "conditions"): - default_conditions = bool(config.get("default", "conditions")) - else: default_conditions = True - option_parser.add_option("-n", "--no-conditions", - dest="conditions", - action="store_false", - default=default_conditions, - help="disable output of current conditions (forces -f)") - - # the -o/--omit-forecast option - option_parser.add_option("-o", "--omit-forecast", - dest="forecast", - action="store_false", - default=default_forecast, - help="omit the local forecast (cancels -f)") - - # the -q/--quiet option - if config.has_option("default", "quiet"): - default_quiet = bool(config.get("default", "quiet")) - else: default_quiet = False - option_parser.add_option("-q", "--quiet", - dest="quiet", - action="store_true", - default=default_quiet, - help="skip preambles and don't indent") - - # the -s/--st option - if config.has_option("default", "st"): - default_st = config.get("default", "st") - else: default_st = "" - option_parser.add_option("-s", "--st", - dest="st", - default=default_st, - help="the state abbreviation (ex: NC)") - - # the -v/--verbose option - if config.has_option("default", "verbose"): - default_verbose = bool(config.get("default", "verbose")) - else: default_verbose = False - option_parser.add_option("-v", "--verbose", - dest="verbose", - action="store_true", - default=default_verbose, - help="show full decoded feeds (cancels -q)") - - # the -z/--zones option - if config.has_option("default", "zones"): - default_zones = config.get("default", "zones") - else: default_zones = "" - option_parser.add_option("-z", "--zones", - dest="zones", - default=default_zones, - help="alert zones (ex: nc/ncc183,nc/ncz041)") - - options, arguments = option_parser.parse_args() - return options, arguments + """Parse the options passed on the command line.""" + + # for optparse's builtin -h/--help option + usage = \ + "usage: %prog [options] [alias1|search1 [alias2|search2 [...]]]" + + # for optparse's builtin --version option + verstring = "%prog " + weather_version + + # create the parser + import optparse + option_parser = optparse.OptionParser(usage=usage, version=verstring) + # separate options object from list of arguments and return both + + # the -a/--alert option + if config.has_option("default", "alert"): + default_alert = bool(config.get("default", "alert")) + else: default_alert = False + option_parser.add_option("-a", "--alert", + dest="alert", + action="store_true", + default=default_alert, + help="include local alert notices") + + # the --atypes option + if config.has_option("default", "atypes"): + default_atypes = config.get("default", "atypes") + else: + default_atypes = \ + "coastal_flood_statement," \ + + "flash_flood_statement," \ + + "flash_flood_warning," \ + + "flash_flood_watch," \ + + "flood_statement," \ + + "flood_warning," \ + + "marine_weather_statement," \ + + "river_statement," \ + + "severe_thunderstorm_warning," \ + + "severe_weather_statement," \ + + "short_term_forecast," \ + + "special_marine_warning," \ + + "special_weather_statement," \ + + "tornado_warning," \ + + "urgent_weather_message" + option_parser.add_option("--atypes", + dest="atypes", + default=default_atypes, + help="list of alert notification types to display") + + # the --build-sets option + option_parser.add_option("--build-sets", + dest="build_sets", + action="store_true", + default=False, + help="(re)build location correlation sets") + + # the --cacheage option + if config.has_option("default", "cacheage"): + default_cacheage = config.getint("default", "cacheage") + else: default_cacheage = 900 + option_parser.add_option("--cacheage", + dest="cacheage", + default=default_cacheage, + help="duration in seconds to refresh cached data") + + # the --cachedir option + if config.has_option("default", "cachedir"): + default_cachedir = config.get("default", "cachedir") + else: default_cachedir = "~/.weather" + option_parser.add_option("--cachedir", + dest="cachedir", + default=default_cachedir, + help="directory for storing cached searches and data") + + # the -f/--forecast option + if config.has_option("default", "forecast"): + default_forecast = bool(config.get("default", "forecast")) + else: default_forecast = False + option_parser.add_option("-f", "--forecast", + dest="forecast", + action="store_true", + default=default_forecast, + help="include a local forecast") + + # the --headers option + if config.has_option("default", "headers"): + default_headers = config.get("default", "headers") + else: + default_headers = \ + "temperature," \ + + "relative_humidity," \ + + "wind," \ + + "heat_index," \ + + "windchill," \ + + "weather," \ + + "sky_conditions," \ + + "precipitation_last_hour" + option_parser.add_option("--headers", + dest="headers", + default=default_headers, + help="list of conditions headers to display") + + # the --imperial option + if config.has_option("default", "imperial"): + default_imperial = bool(config.get("default", "imperial")) + else: default_imperial = False + option_parser.add_option("--imperial", + dest="imperial", + action="store_true", + default=default_imperial, + help="filter/convert conditions for US/UK units") + + # the --info option + option_parser.add_option("--info", + dest="info", + action="store_true", + default=False, + help="output detailed information for your search") + + # the -l/--list option + option_parser.add_option("-l", "--list", + dest="list", + action="store_true", + default=False, + help="list all configured aliases and cached searches") + + # the --longlist option + option_parser.add_option("--longlist", + dest="longlist", + action="store_true", + default=False, + help="display details of all configured aliases") + + # the -m/--metric option + if config.has_option("default", "metric"): + default_metric = bool(config.get("default", "metric")) + else: default_metric = False + option_parser.add_option("-m", "--metric", + dest="metric", + action="store_true", + default=default_metric, + help="filter/convert conditions for metric units") + + # the -n/--no-conditions option + if config.has_option("default", "conditions"): + default_conditions = bool(config.get("default", "conditions")) + else: default_conditions = True + option_parser.add_option("-n", "--no-conditions", + dest="conditions", + action="store_false", + default=default_conditions, + help="disable output of current conditions") + + # the --no-cache option + if config.has_option("default", "cache"): + default_cache = bool(config.get("default", "cache")) + else: default_cache = True + option_parser.add_option("--no-cache", + dest="cache", + action="store_false", + default=True, + help="disable all caching (searches and data)") + + # the --no-cache-data option + if config.has_option("default", "cache_data"): + default_cache_data = bool(config.get("default", "cache_data")) + else: default_cache_data = True + option_parser.add_option("--no-cache-data", + dest="cache_data", + action="store_false", + default=True, + help="disable retrieved data caching") + + # the --no-cache-search option + if config.has_option("default", "cache_search"): + default_cache_search = bool(config.get("default", "cache_search")) + else: default_cache_search = True + option_parser.add_option("--no-cache-search", + dest="cache_search", + action="store_false", + default=True, + help="disable search result caching") + + # the -q/--quiet option + if config.has_option("default", "quiet"): + default_quiet = bool(config.get("default", "quiet")) + else: default_quiet = False + option_parser.add_option("-q", "--quiet", + dest="quiet", + action="store_true", + default=default_quiet, + help="skip preambles and don't indent") + + # the --setpath option + if config.has_option("default", "setpath"): + default_setpath = config.get("default", "setpath") + else: default_setpath = ".:~/.weather" + option_parser.add_option("--setpath", + dest="setpath", + default=default_setpath, + help="directory search path for correlation sets") + + # the -v/--verbose option + if config.has_option("default", "verbose"): + default_verbose = bool(config.get("default", "verbose")) + else: default_verbose = False + option_parser.add_option("-v", "--verbose", + dest="verbose", + action="store_true", + default=default_verbose, + help="show full decoded feeds") + + # deprecated options + if config.has_option("default", "city"): + default_city = config.get("default", "city") + else: default_city = "" + option_parser.add_option("-c", "--city", + dest="city", + default=default_city, + help=optparse.SUPPRESS_HELP) + if config.has_option("default", "id"): + default_id = config.get("default", "id") + else: default_id = "" + option_parser.add_option("-i", "--id", + dest="id", + default=default_id, + help=optparse.SUPPRESS_HELP) + if config.has_option("default", "st"): + default_st = config.get("default", "st") + else: default_st = "" + option_parser.add_option("-s", "--st", + dest="st", + default=default_st, + help=optparse.SUPPRESS_HELP) + + options, arguments = option_parser.parse_args() + return options, arguments def get_config(): - """Parse the aliases and configuration.""" - import ConfigParser - config = ConfigParser.ConfigParser() - import os.path - rcfiles = [ - "/etc/weatherrc", - os.path.expanduser("~/.weatherrc"), - "weatherrc" - ] - import os - for rcfile in rcfiles: - if os.access(rcfile, os.R_OK): config.read(rcfile) - for section in config.sections(): - if section != section.lower(): - if config.has_section(section.lower()): - config.remove_section(section.lower()) - config.add_section(section.lower()) - for option,value in config.items(section): - config.set(section.lower(), option, value) - return config - -def list_aliases(config): - """Return a formatted list of aliases defined in the config.""" - sections = [] - for section in sorted(config.sections()): - if section.lower() not in sections and section != "default": - sections.append(section.lower()) - output = "configured aliases..." - for section in sorted(sections): - output += "\n " \ - + section \ - + ": --id=" \ - + quote(config.get(section, "id")) \ - + " --city=" \ - + quote(config.get(section, "city")) \ - + " --st=" \ - + quote(config.get(section, "st")) - return output + """Parse the aliases and configuration.""" + if pyversion("3"): import configparser + else: import ConfigParser as configparser + config = configparser.ConfigParser() + import os + rcfiles = [ + "/etc/weatherrc", + os.path.expanduser("~/.weather/weatherrc"), + os.path.expanduser("~/.weatherrc"), + "weatherrc" + ] + for rcfile in rcfiles: + if os.access(rcfile, os.R_OK): config.read(rcfile) + for section in config.sections(): + if section != section.lower(): + if config.has_section(section.lower()): + config.remove_section(section.lower()) + config.add_section(section.lower()) + for option,value in config.items(section): + config.set(section.lower(), option, value) + return config + +def integrate_search_cache(config, cachedir, setpath): + """Add cached search results into the configuration.""" + if pyversion("3"): import configparser + else: import ConfigParser as configparser + import os, time + scache_fn = os.path.join( os.path.expanduser(cachedir), "searches" ) + if not os.access(scache_fn, os.R_OK): return config + scache_fd = open(scache_fn) + created = float( scache_fd.readline().split(":")[1].strip().split()[0] ) + scache_fd.close() + now = time.time() + datafiles = data_index(setpath) + if datafiles: + data_freshness = sorted( + [ x[1] for x in datafiles.values() ], + reverse=True + )[0] + else: data_freshness = now + if created < data_freshness <= now: + try: + os.remove(scache_fn) + print( "[clearing outdated %s]" % scache_fn ) + except (IOError, OSError): + pass + return config + scache = configparser.ConfigParser() + scache.read(scache_fn) + for section in scache.sections(): + if not config.has_section(section): + config.add_section(section) + for option,value in scache.items(section): + config.set(section, option, value) + return config + +def list_aliases(config, detail=False): + """Return a formatted list of aliases defined in the config.""" + if detail: + output = "\n# configured alias details..." + for section in sorted(config.sections()): + output += "\n\n[%s]" % section + for item in sorted(config.items(section)): + output += "\n%s = %s" % item + output += "\n" + else: + output = "configured aliases and cached searches..." + for section in sorted(config.sections()): + if config.has_option(section, "description"): + description = config.get(section, "description") + else: description = "(no description provided)" + output += "\n %s: %s" % (section, description) + return output + +def data_index(path): + import os + datafiles = {} + for filename in ("airports", "places", "stations", "zctas", "zones"): + for dirname in path.split(":"): + for extension in ("", ".gz", ".txt"): + candidate = os.path.expanduser( + os.path.join( dirname, "".join( (filename, extension) ) ) + ) + if os.path.exists(candidate): + datafiles[filename] = ( + candidate, + os.stat(candidate).st_mtime + ) + break + return datafiles + +def guess( + expression, + path=".", + max_results=20, + info=False, + cache_search=False, + cacheage=900, + cachedir="." +): + """Find URIs using airport, gecos, placename, station, ZCTA/ZIP, zone.""" + import codecs, datetime, time, os, re, sys + if pyversion("3"): import configparser + else: import ConfigParser as configparser + datafiles = data_index(path) + if re.match("[A-Za-z]{3}$", expression): searchtype = "airport" + elif re.match("[A-Za-z0-9]{4}$", expression): searchtype = "station" + elif re.match("[A-Za-z]{2}[Zz][0-9]{3}$", expression): searchtype = "zone" + elif re.match("[0-9]{5}$", expression): searchtype = "ZCTA" + elif re.match( + r"[\+-]?\d+(\.\d+)?(-\d+){,2}[ENSWensw]?, *[\+-]?\d+(\.\d+)?(-\d+){,2}[ENSWensw]?$", + expression + ): + searchtype = "coordinates" + elif re.match(r"(FIPS|fips)\d+$", expression): searchtype = "FIPS" + else: + searchtype = "name" + cache_search = False + if cache_search: action = "caching" + else: action = "using" + if info: + scores = [ + (0.005, "bad"), + (0.025, "poor"), + (0.160, "suspect"), + (0.500, "mediocre"), + (0.840, "good"), + (0.975, "great"), + (0.995, "excellent"), + (1.000, "ideal"), + ] + print("Searching via %s..."%searchtype) + stations = configparser.ConfigParser() + dataname = "stations" + if dataname in datafiles: + datafile = datafiles[dataname][0] + if datafile.endswith(".gz"): + import gzip + stations.readfp( gzip.open(datafile) ) + else: + stations.read(datafile) + else: + message = "%s error: can't find \"%s\" data file\n" % ( + os.path.basename( sys.argv[0] ), + dataname + ) + sys.stderr.write(message) + exit(1) + zones = configparser.ConfigParser() + dataname = "zones" + if dataname in datafiles: + datafile = datafiles[dataname][0] + if datafile.endswith(".gz"): + import gzip + zones.readfp( gzip.open(datafile) ) + else: + zones.read(datafile) + else: + message = "%s error: can't find \"%s\" data file\n" % ( + os.path.basename( sys.argv[0] ), + dataname + ) + sys.stderr.write(message) + exit(1) + search = None + station = ("", 0) + zone = ("", 0) + dataset = None + possibilities = [] + uris = {} + if searchtype == "airport": + expression = expression.lower() + airports = configparser.ConfigParser() + dataname = "airports" + if dataname in datafiles: + datafile = datafiles[dataname][0] + if datafile.endswith(".gz"): + import gzip + airports.readfp( gzip.open(datafile) ) + else: + airports.read(datafile) + else: + message = "%s error: can't find \"%s\" data file\n" % ( + os.path.basename( sys.argv[0] ), + dataname + ) + sys.stderr.write(message) + exit(1) + if airports.has_section(expression) \ + and airports.has_option(expression, "station"): + search = (expression, "IATA/FAA airport code %s" % expression) + station = ( airports.get(expression, "station"), 0 ) + if stations.has_option(station[0], "zone"): + zone = eval( stations.get(station[0], "zone") ) + dataset = stations + if not info and stations.has_option( station[0], "description" ): + print( + "[%s result %s]" % ( + action, + stations.get(station[0], "description") + ) + ) + else: + message = "No IATA/FAA airport code \"%s\" in the %s file.\n" % ( + expression, + datafiles["airports"][0] + ) + sys.stderr.write(message) + exit(1) + elif searchtype == "station": + expression = expression.lower() + if stations.has_section(expression): + station = (expression, 0) + if not search: + search = (expression, "ICAO station code %s" % expression) + if stations.has_option(expression, "zone"): + zone = eval( stations.get(expression, "zone") ) + dataset = stations + if not info and stations.has_option(expression, "description"): + print( + "[%s result %s]" % ( + action, + stations.get(expression, "description") + ) + ) + else: + message = "No ICAO weather station \"%s\" in the %s file.\n" % ( + expression, + datafiles["stations"][0] + ) + sys.stderr.write(message) + exit(1) + elif searchtype == "zone": + expression = expression.lower() + if zones.has_section(expression) \ + and zones.has_option(expression, "station"): + zone = (expression, 0) + station = eval( zones.get(expression, "station") ) + dataset = zones + search = (expression, "NWS/NOAA weather zone %s" % expression) + if not info and zones.has_option(expression, "description"): + print( + "[%s result %s]" % ( + action, + zones.get(expression, "description") + ) + ) + else: + message = "No usable NWS weather zone \"%s\" in the %s file.\n" % ( + expression, + datafiles["zones"][0] + ) + sys.stderr.write(message) + exit(1) + elif searchtype == "ZCTA": + zctas = configparser.ConfigParser() + dataname = "zctas" + if dataname in datafiles: + datafile = datafiles[dataname][0] + if datafile.endswith(".gz"): + import gzip + zctas.readfp( gzip.open(datafile) ) + else: + zctas.read(datafile) + else: + message = "%s error: can't find \"%s\" data file\n" % ( + os.path.basename( sys.argv[0] ), + dataname + ) + sys.stderr.write(message) + exit(1) + dataset = zctas + if zctas.has_section(expression) \ + and zctas.has_option(expression, "station"): + station = eval( zctas.get(expression, "station") ) + search = (expression, "Census ZCTA (ZIP code) %s" % expression) + if zctas.has_option(expression, "zone"): + zone = eval( zctas.get(expression, "zone") ) + else: + message = "No census ZCTA (ZIP code) \"%s\" in the %s file.\n" % ( + expression, + datafiles["zctas"][0] + ) + sys.stderr.write(message) + exit(1) + elif searchtype == "coordinates": + search = (expression, "Geographic coordinates %s" % expression) + stationtable = {} + for station in stations.sections(): + if stations.has_option(station, "location"): + stationtable[station] = { + "location": eval( stations.get(station, "location") ) + } + station = closest( gecos(expression), stationtable, "location", 0.1 ) + if not station[0]: + message = "No ICAO weather station found near %s.\n" % expression + sys.stderr.write(message) + exit(1) + zonetable = {} + for zone in zones.sections(): + if zones.has_option(zone, "centroid"): + zonetable[zone] = { + "centroid": eval( zones.get(zone, "centroid") ) + } + zone = closest( gecos(expression), zonetable, "centroid", 0.1 ) + if not zone[0]: + message = "No NWS weather zone near %s; forecasts unavailable.\n" \ + % expression + sys.stderr.write(message) + elif searchtype in ("FIPS", "name"): + places = configparser.ConfigParser() + dataname = "places" + if dataname in datafiles: + datafile = datafiles[dataname][0] + if datafile.endswith(".gz"): + import gzip + places.readfp( gzip.open(datafile) ) + else: + places.read(datafile) + else: + message = "%s error: can't find \"%s\" data file\n" % ( + os.path.basename( sys.argv[0] ), + dataname + ) + sys.stderr.write(message) + exit(1) + dataset = places + place = expression.lower() + if places.has_section(place) and places.has_option(place, "station"): + station = eval( places.get(place, "station") ) + search = (expression, "Census Place %s" % expression) + if places.has_option(place, "description"): + search = ( + search[0], + search[1] + ", %s" % places.get(place, "description") + ) + if places.has_option(place, "zone"): + zone = eval( places.get(place, "zone") ) + if not info and places.has_option(place, "description"): + print( + "[%s result %s]" % ( + action, + places.get(place, "description") + ) + ) + else: + for place in places.sections(): + if places.has_option(place, "description") \ + and places.has_option(place, "station") \ + and re.search( + expression, + places.get(place, "description"), + re.I + ): + possibilities.append(place) + for place in stations.sections(): + if stations.has_option(place, "description") \ + and re.search( + expression, + stations.get(place, "description"), + re.I + ): + possibilities.append(place) + for place in zones.sections(): + if zones.has_option(place, "description") \ + and zones.has_option(place, "station") \ + and re.search( + expression, + zones.get(place, "description"), + re.I + ): + possibilities.append(place) + if len(possibilities) == 1: + place = possibilities[0] + if places.has_section(place): + station = eval( places.get(place, "station") ) + description = places.get(place, "description") + if places.has_option(place, "zone"): + zone = eval( places.get(place, "zone" ) ) + search = ( expression, "%s: %s" % (place, description) ) + elif stations.has_section(place): + station = (place, 0.0) + description = stations.get(place, "description") + if stations.has_option(place, "zone"): + zone = eval( stations.get(place, "zone" ) ) + search = ( expression, "ICAO station code %s" % place ) + elif zones.has_section(place): + station = eval( zones.get(place, "station") ) + description = zones.get(place, "description") + zone = (place, 0.0) + search = ( expression, "NWS/NOAA weather zone %s" % place ) + if not info: print( "[%s result %s]" % (action, description) ) + if not possibilities and not station[0]: + message = "No FIPS code/census area match in the %s file.\n" % ( + datafiles["places"][0] + ) + sys.stderr.write(message) + exit(1) + if station[0]: + uris["metar"] = stations.get( station[0], "metar" ) + if zone[0]: + for key,value in zones.items( zone[0] ): + if key not in ("centroid", "description", "station"): + uris[key] = value + elif possibilities: + count = len(possibilities) + if count <= max_results: + print( "Your search is ambiguous, returning %s matches:" % count ) + for place in sorted(possibilities): + if places.has_section(place): + print( + " [%s] %s" % ( + place, + places.get(place, "description") + ) + ) + elif stations.has_section(place): + print( + " [%s] %s" % ( + place, + stations.get(place, "description") + ) + ) + elif zones.has_section(place): + print( + " [%s] %s" % ( + place, + zones.get(place, "description") + ) + ) + else: + print( + "Your search is too ambiguous, returning %s matches." % count + ) + exit(0) + if info: + stationlist = [] + zonelist = [] + if dataset: + for section in dataset.sections(): + if dataset.has_option(section, "station"): + stationlist.append( + eval( dataset.get(section, "station") )[1] + ) + if dataset.has_option(section, "zone"): + zonelist.append( eval( dataset.get(section, "zone") )[1] ) + stationlist.sort() + zonelist.sort() + scount = len(stationlist) + zcount = len(zonelist) + sranks = [] + zranks = [] + for score in scores: + if stationlist: + sranks.append( stationlist[ int( (1-score[0]) * scount ) ] ) + if zonelist: + zranks.append( zonelist[ int( (1-score[0]) * zcount ) ] ) + description = search[1] + uris["description"] = description + print( + "%s\n%s" % ( description, "-" * len(description) ) + ) + print( + "%s: %s" % ( + station[0], + stations.get( station[0], "description" ) + ) + ) + km = radian_to_km*station[1] + mi = radian_to_mi*station[1] + if sranks and not description.startswith("ICAO station code "): + for index in range(0, len(scores)): + if station[1] >= sranks[index]: + score = scores[index][1] + break + print( + " (proximity %s, %.3gkm, %.3gmi)" % ( score, km, mi ) + ) + elif searchtype is "coordinates": + print( " (%.3gkm, %.3gmi)" % (km, mi) ) + if zone[0]: + print( + "%s: %s" % ( zone[0], zones.get( zone[0], "description" ) ) + ) + km = radian_to_km*zone[1] + mi = radian_to_mi*zone[1] + if zranks and not description.startswith("NWS/NOAA weather zone "): + for index in range(0, len(scores)): + if zone[1] >= zranks[index]: + score = scores[index][1] + break + print( + " (proximity %s, %.3gkm, %.3gmi)" % ( score, km, mi ) + ) + elif searchtype is "coordinates" and zone[0]: + print( " (%.3gkm, %.3gmi)" % (km, mi) ) + if cache_search: + now = time.time() + nowstamp = "%s (%s)" % ( + now, + datetime.datetime.isoformat( + datetime.datetime.fromtimestamp(now), + " " + ) + ) + search_cache = ["\n"] + search_cache.append( "[%s]\n" % search[0] ) + search_cache.append( "description = cached %s\n" % nowstamp ) + for uriname in sorted(uris.keys()): + search_cache.append( "%s = %s\n" % ( uriname, uris[uriname] ) ) + real_cachedir = os.path.expanduser(cachedir) + if not os.path.exists(real_cachedir): + try: os.makedirs(real_cachedir) + except (IOError, OSError): pass + scache_fn = os.path.join(real_cachedir, "searches") + if not os.path.exists(scache_fn): + then = sorted( + [ x[1] for x in datafiles.values() ], + reverse=True + )[0] + thenstamp = "%s (%s)" % ( + then, + datetime.datetime.isoformat( + datetime.datetime.fromtimestamp(then), + " " + ) + ) + search_cache.insert( + 0, + "# based on data files from: %s\n" % thenstamp + ) + try: + scache_existing = configparser.ConfigParser() + scache_existing.read(scache_fn) + if not scache_existing.has_section(search[0]): + scache_fd = codecs.open(scache_fn, "a", "utf-8") + scache_fd.writelines(search_cache) + scache_fd.close() + except (IOError, OSError): pass + if not info: + return(uris) + +def closest(position, nodes, fieldname, angle=None): + import math + if not angle: angle = 2*math.pi + match = None + for name in nodes: + if fieldname in nodes[name]: + node = nodes[name][fieldname] + if node and abs( position[0]-node[0] ) < angle: + if abs( position[1]-node[1] ) < angle \ + or abs( abs( position[1]-node[1] ) - 2*math.pi ) < angle: + if position == node: + angle = 0 + match = name + else: + candidate = math.acos( + math.sin( position[0] ) * math.sin( node[0] ) \ + + math.cos( position[0] ) \ + * math.cos( node[0] ) \ + * math.cos( position[1] - node[1] ) + ) + if candidate < angle: + angle = candidate + match = name + if match: match = str(match) + return (match, angle) + +def gecos(formatted): + import math, re + coordinates = formatted.split(",") + for coordinate in range(0, 2): + degrees, foo, minutes, bar, seconds, hemisphere = re.match( + r"([\+-]?\d+\.?\d*)(-(\d+))?(-(\d+))?([ensw]?)$", + coordinates[coordinate].strip().lower() + ).groups() + value = float(degrees) + if minutes: value += float(minutes)/60 + if seconds: value += float(seconds)/3600 + if hemisphere and hemisphere in "sw": value *= -1 + coordinates[coordinate] = math.radians(value) + return tuple(coordinates) +def correlate(): + import codecs, datetime, hashlib, os, re, sys, tarfile, time, zipfile + if pyversion("3"): import configparser + else: import ConfigParser as configparser + gcounties_an = "Gaz_counties_national.zip" + gcounties_fn = "Gaz_counties_national.txt" + gcousubs_an = "Gaz_cousubs_national.zip" + gcousubs_fn = "Gaz_cousubs_national.txt" + gplaces_an = "Gaz_places_national.zip" + gplaces_fn = "Gaz_places_national.txt" + gzcta_an = "Gaz_zcta_national.zip" + gzcta_fn = "Gaz_zcta_national.txt" + for filename in os.listdir("."): + if re.match("bp[0-9][0-9][a-z][a-z][0-9][0-9].dbx$", filename): + cpfzcf_fn = filename + break + nsdcccc_fn = "nsd_cccc.txt" + zcatalog_an = "zonecatalog.curr.tar" + metartbl_fn = "metar.tbl" + coopact_fn = "COOP-ACT.TXT" + overrides_fn = "overrides.conf" + overrideslog_fn = "overrides.log" + slist_fn = "slist" + zlist_fn = "zlist" + qalog_fn = "qa.log" + airports_fn = "airports" + places_fn = "places" + stations_fn = "stations" + zctas_fn = "zctas" + zones_fn = "zones" + header = """\ +%s +# generated by %s on %s from these public domain sources: +# +# http://www.census.gov/geo/www/gazetteer/gazetteer2010.html +# %s %s %s +# %s %s %s +# %s %s %s +# %s %s %s +# +# http://www.weather.gov/geodata/catalog/wsom/html/cntyzone.htm +# %s %s %s +# +# http://weather.noaa.gov/data/nsd_cccc.txt +# %s %s %s +# +# http://weather.noaa.gov/pub/data/zonecatalog.curr.tar +# %s %s %s +# +# http://www.nco.ncep.noaa.gov/pmb/codes/nwprod/dictionaries/metar.tbl +# %s %s %s +# +# ftp://ftp.ncdc.noaa.gov/pub/data/inventories/COOP-ACT.TXT +# %s %s %s +# +# ...and these manually-generated or hand-compiled adjustments: +# %s %s %s +# %s %s %s +# %s %s %s\ +""" % ( + weather_copyright, + os.path.basename( sys.argv[0] ), + datetime.date.isoformat( + datetime.datetime.fromtimestamp( time.time() ) + ), + hashlib.md5( open(gcounties_an, "rb").read() ).hexdigest(), + datetime.date.isoformat( + datetime.datetime.fromtimestamp( os.path.getmtime(gcounties_an) ) + ), + gcounties_an, + hashlib.md5( open(gcousubs_an, "rb").read() ).hexdigest(), + datetime.date.isoformat( + datetime.datetime.fromtimestamp( os.path.getmtime(gcousubs_an) ) + ), + gcousubs_an, + hashlib.md5( open(gplaces_an, "rb").read() ).hexdigest(), + datetime.date.isoformat( + datetime.datetime.fromtimestamp( os.path.getmtime(gplaces_an) ) + ), + gplaces_an, + hashlib.md5( open(gzcta_an, "rb").read() ).hexdigest(), + datetime.date.isoformat( + datetime.datetime.fromtimestamp( os.path.getmtime(gzcta_an) ) + ), + gzcta_an, + hashlib.md5( open(cpfzcf_fn, "rb").read() ).hexdigest(), + datetime.date.isoformat( + datetime.datetime.fromtimestamp( os.path.getmtime(cpfzcf_fn) ) + ), + cpfzcf_fn, + hashlib.md5( open(nsdcccc_fn, "rb").read() ).hexdigest(), + datetime.date.isoformat( + datetime.datetime.fromtimestamp( os.path.getmtime(nsdcccc_fn) ) + ), + nsdcccc_fn, + hashlib.md5( open(zcatalog_an, "rb").read() ).hexdigest(), + datetime.date.isoformat( + datetime.datetime.fromtimestamp( os.path.getmtime(zcatalog_an) ) + ), + zcatalog_an, + hashlib.md5( open(metartbl_fn, "rb").read() ).hexdigest(), + datetime.date.isoformat( + datetime.datetime.fromtimestamp( os.path.getmtime(metartbl_fn) ) + ), + metartbl_fn, + hashlib.md5( open(coopact_fn, "rb").read() ).hexdigest(), + datetime.date.isoformat( + datetime.datetime.fromtimestamp( os.path.getmtime(coopact_fn) ) + ), + coopact_fn, + hashlib.md5( open(overrides_fn, "rb").read() ).hexdigest(), + datetime.date.isoformat( + datetime.datetime.fromtimestamp( os.path.getmtime(overrides_fn) ) + ), + overrides_fn, + hashlib.md5( open(slist_fn, "rb").read() ).hexdigest(), + datetime.date.isoformat( + datetime.datetime.fromtimestamp( os.path.getmtime(slist_fn) ) + ), + slist_fn, + hashlib.md5( open(zlist_fn, "rb").read() ).hexdigest(), + datetime.date.isoformat( + datetime.datetime.fromtimestamp( os.path.getmtime(zlist_fn) ) + ), + zlist_fn + ) + airports = {} + places = {} + stations = {} + zctas = {} + zones = {} + message = "Reading %s:%s..." % (gcounties_an, gcounties_fn) + sys.stdout.write(message) + sys.stdout.flush() + count = 0 + gcounties = zipfile.ZipFile(gcounties_an).open(gcounties_fn, "rU") + for line in gcounties: + fields = line.decode("latin1").strip().split("\t") + if len(fields) == 10 and fields[0] != "STUSPS": + fips = "fips%s" % fields[1] + description = "%s, %s" % ( fields[3], fields[0] ) + centroid = gecos( ",".join( fields[8:10] ) ) + if fips not in places: places[fips] = {} + places[fips]["centroid"] = centroid + places[fips]["description"] = description + count += 1 + gcounties.close() + print("done (%s lines)." % count) + message = "Reading %s:%s..." % (gcousubs_an, gcousubs_fn) + sys.stdout.write(message) + sys.stdout.flush() + count = 0 + gcousubs = zipfile.ZipFile(gcousubs_an).open(gcousubs_fn, "rU") + for line in gcousubs: + fields = line.decode("latin1").strip().split("\t") + if len(fields) == 10 and fields[0] != "STUSPS": + fips = "fips%s" % fields[1] + description = "%s, %s" % ( fields[3], fields[0] ) + centroid = gecos( ",".join( fields[8:10] ) ) + if fips not in places: places[fips] = {} + places[fips]["centroid"] = centroid + places[fips]["description"] = description + count += 1 + gcousubs.close() + print("done (%s lines)." % count) + message = "Reading %s:%s..." % (gplaces_an, gplaces_fn) + sys.stdout.write(message) + sys.stdout.flush() + count = 0 + gplaces = zipfile.ZipFile(gplaces_an).open(gplaces_fn, "rU") + for line in gplaces: + fields = line.decode("latin1").strip().split("\t") + if len(fields) == 10 and fields[0] != "STUSPS": + fips = "fips%s" % fields[1] + description = "%s, %s" % ( fields[3], fields[0] ) + centroid = gecos( ",".join( fields[8:10] ) ) + if fips not in places: places[fips] = {} + places[fips]["centroid"] = centroid + places[fips]["description"] = description + count += 1 + gplaces.close() + print("done (%s lines)." % count) + message = "Reading %s..." % slist_fn + sys.stdout.write(message) + sys.stdout.flush() + count = 0 + slist = codecs.open(slist_fn, "rU") + for line in slist: + icao = line.split("#")[0].strip() + if icao: + stations[icao] = { + "metar": "http://weather.noaa.gov/pub/data/observations/"\ + + "metar/decoded/%s.TXT" % icao.upper() + } + count += 1 + slist.close() + print("done (%s lines)." % count) + message = "Reading %s..." % metartbl_fn + sys.stdout.write(message) + sys.stdout.flush() + count = 0 + metartbl = codecs.open(metartbl_fn, "rU") + for line in metartbl: + icao = line[:4].strip().lower() + if icao in stations: + description = [] + name = " ".join( + line[16:48].replace("_", " ").strip().title().split() + ) + if name: description.append(name) + st = line[49:51].strip() + if st: description.append(st) + cn = line[52:54].strip() + if cn: description.append(cn) + if description: + stations[icao]["description"] = ", ".join(description) + lat = line[55:60].strip() + if lat: + lat = int(lat)/100.0 + lon = line[61:67].strip() + if lon: + lon = int(lon)/100.0 + stations[icao]["location"] = gecos( "%s,%s" % (lat, lon) ) + count += 1 + metartbl.close() + print("done (%s lines)." % count) + message = "Reading %s..." % nsdcccc_fn + sys.stdout.write(message) + sys.stdout.flush() + count = 0 + nsdcccc = codecs.open(nsdcccc_fn, "rU", "latin1") + for line in nsdcccc: + line = str(line) + fields = line.split(";") + icao = fields[0].strip().lower() + if icao in stations: + description = [] + name = " ".join( fields[3].strip().title().split() ) + if name: description.append(name) + st = fields[4].strip() + if st: description.append(st) + country = " ".join( fields[5].strip().title().split() ) + if country: description.append(country) + if description: + stations[icao]["description"] = ", ".join(description) + lat, lon = fields[7:9] + if lat and lon: + stations[icao]["location"] = gecos( "%s,%s" % (lat, lon) ) + elif "location" not in stations[icao]: + lat, lon = fields[5:7] + if lat and lon: + stations[icao]["location"] = gecos( "%s,%s" % (lat, lon) ) + count += 1 + nsdcccc.close() + print("done (%s lines)." % count) + message = "Reading %s..." % coopact_fn + sys.stdout.write(message) + sys.stdout.flush() + count = 0 + coopact = open(coopact_fn) + for line in coopact: + icao = line[33:37].strip().lower() + if icao in stations: + iata = line[22:26].strip().lower() + if len(iata) == 3: airports[iata] = { "station": icao } + if "description" not in stations[icao]: + description = [] + name = " ".join( line[99:129].strip().title().split() ) + if name: description.append(name) + st = line[59:61].strip() + if st: description.append(st) + country = " ".join( line[38:58].strip().title().split() ) + if country: description.append(country) + if description: + stations[icao]["description"] = ", ".join(description) + if "location" not in stations[icao]: + lat = line[130:139].strip() + if lat: + lat = lat.replace(" ", "-") + lon = line[140:150].strip() + if lon: + lon = lon.replace(" ", "-") + stations[icao]["location"] = gecos( + "%s,%s" % (lat, lon) + ) + count += 1 + coopact.close() + print("done (%s lines)." % count) + message = "Reading %s..." % zlist_fn + sys.stdout.write(message) + sys.stdout.flush() + count = 0 + zlist = codecs.open(zlist_fn, "rU") + for line in zlist: + line = line.split("#")[0].strip() + if line: + zones[line] = {} + count += 1 + zlist.close() + print("done (%s lines)." % count) + message = "Reading %s:*..." % zcatalog_an + sys.stdout.write(message) + sys.stdout.flush() + count = 0 + zcatalog = tarfile.open(zcatalog_an) + for entry in zcatalog.getmembers(): + if entry.isfile(): + fnmatch = re.match( + r"([a-z]+z[0-9]+)\.txt$", + os.path.basename(entry.name) + ) + if fnmatch: + zone = fnmatch.group(1) + if zone in zones: + data = zcatalog.extractfile(entry).readlines() + description = data[0].decode("ascii").strip() + zones[zone]["description"] = description + for line in data[1:]: + line = line.decode("latin1").strip() + urimatch = re.match("/webdocs/(.+):(.+) for ", line) + if urimatch: + uritype = urimatch.group(2).lower().replace(" ","_") + zones[zone][uritype] \ + = "http://weather.noaa.gov/%s" \ + % urimatch.group(1) + count += 1 + zcatalog.close() + print("done (%s files)." % count) + message = "Reading %s..." % cpfzcf_fn + sys.stdout.write(message) + sys.stdout.flush() + count = 0 + cpfz = {} + cpfzcf = open(cpfzcf_fn) + for line in cpfzcf: + fields = line.split("|") + if len(fields) == 11 \ + and fields[0] and fields[1] and fields[9] and fields[10]: + zone = "z".join( fields[:2] ).lower() + if zone in zones: + zones[zone]["centroid"] = gecos( ",".join( fields[9:] ) ) + elif fields[6]: + state = fields[0] + description = fields[3] + county = fields[5] + fips = "fips%s"%fields[6] + possible = [ + "%s, %s" % (county, state), + "%s County, %s" % (county, state), + ] + if description.endswith(" Counties"): + description = description[:-9] + for addition in description.split(" and "): + possible.append( "%s, %s" % (addition, state) ) + possible.append( "%s County, %s" % (addition, state) ) + if fips in places and "centroid" in places[fips]: + for candidate in zones: + if "centroid" not in zones[candidate] and \ + "description" in zones[candidate] and \ + zones[candidate]["description"] in possible: + zones[candidate]["centroid"] = \ + places[fips]["centroid"] + count += 1 + cpfzcf.close() + print("done (%s lines)." % count) + message = "Reading %s:%s..." % (gzcta_an, gzcta_fn) + sys.stdout.write(message) + sys.stdout.flush() + count = 0 + gzcta = zipfile.ZipFile(gzcta_an).open(gzcta_fn, "rU") + for line in gzcta: + fields = line.decode("latin1").strip().split("\t") + if len(fields) == 7 and fields[0] != "GEOID": + zcta = fields[0] + if zcta not in zctas: zctas[zcta] = {} + zctas[zcta]["centroid"] = gecos( + ",".join( ( fields[6], fields[5] ) ) + ) + count += 1 + gzcta.close() + print("done (%s lines)." % count) + message = "Reading %s..." % overrides_fn + sys.stdout.write(message) + sys.stdout.flush() + count = 0 + added = 0 + removed = 0 + changed = 0 + overrides = configparser.ConfigParser() + overrides.readfp( codecs.open(overrides_fn, "r", "utf8") ) + overrideslog = [] + for section in overrides.sections(): + addopt = 0 + chgopt = 0 + if section.startswith("-"): + section = section[1:] + delete = True + else: delete = False + if re.match("[A-Za-z]{3}$", section): + if delete: + if section in airports: + del( airports[section] ) + logact = "removed airport %s" % section + removed += 1 + else: + logact = "tried to remove nonexistent airport %s" % section + else: + if section in airports: + logact = "changed airport %s" % section + changed += 1 + else: + airports[section] = {} + logact = "added airport %s" % section + added += 1 + for key,value in overrides.items(section): + if key in airports[section]: chgopt += 1 + else: addopt += 1 + if key in ("centroid", "location"): + airports[section][key] = eval(value) + else: + airports[section][key] = value + if addopt and chgopt: + logact += " (+%s/!%s options)" % (addopt, chgopt) + elif addopt: logact += " (+%s options)" % addopt + elif chgopt: logact += " (!%s options)" % chgopt + elif re.match("[A-Za-z0-9]{4}$", section): + if delete: + if section in stations: + del( stations[section] ) + logact = "removed station %s" % section + removed += 1 + else: + logact = "tried to remove nonexistent station %s" % section + else: + if section in stations: + logact = "changed station %s" % section + changed += 1 + else: + stations[section] = {} + logact = "added station %s" % section + added += 1 + for key,value in overrides.items(section): + if key in stations[section]: chgopt += 1 + else: addopt += 1 + if key in ("centroid", "location"): + stations[section][key] = eval(value) + else: + stations[section][key] = value + if addopt and chgopt: + logact += " (+%s/!%s options)" % (addopt, chgopt) + elif addopt: logact += " (+%s options)" % addopt + elif chgopt: logact += " (!%s options)" % chgopt + elif re.match("[0-9]{5}$", section): + if delete: + if section in zctas: + del( zctas[section] ) + logact = "removed zcta %s" % section + removed += 1 + else: + logact = "tried to remove nonexistent zcta %s" % section + else: + if section in zctas: + logact = "changed zcta %s" % section + changed += 1 + else: + zctas[section] = {} + logact = "added zcta %s" % section + added += 1 + for key,value in overrides.items(section): + if key in zctas[section]: chgopt += 1 + else: addopt += 1 + if key in ("centroid", "location"): + zctas[section][key] = eval(value) + else: + zctas[section][key] = value + if addopt and chgopt: + logact += " (+%s/!%s options)" % (addopt, chgopt) + elif addopt: logact += " (+%s options)" % addopt + elif chgopt: logact += " (!%s options)" % chgopt + elif re.match("[A-Za-z]{2}[Zz][0-9]{3}$", section): + if delete: + if section in zones: + del( zones[section] ) + logact = "removed zone %s" % section + removed += 1 + else: + logact = "tried to remove nonexistent zone %s" % section + else: + if section in zones: + logact = "changed zone %s" % section + changed += 1 + else: + zones[section] = {} + logact = "added zone %s" % section + added += 1 + for key,value in overrides.items(section): + if key in zones[section]: chgopt += 1 + else: addopt += 1 + if key in ("centroid", "location"): + zones[section][key] = eval(value) + else: + zones[section][key] = value + if addopt and chgopt: + logact += " (+%s/!%s options)" % (addopt, chgopt) + elif addopt: logact += " (+%s options)" % addopt + elif chgopt: logact += " (!%s options)" % chgopt + elif re.match("fips[0-9]+$", section): + if delete: + if section in places: + del( places[section] ) + logact = "removed place %s" % section + removed += 1 + else: + logact = "tried to remove nonexistent place %s" % section + else: + if section in places: + logact = "changed place %s" % section + changed += 1 + else: + places[section] = {} + logact = "added place %s" % section + added += 1 + for key,value in overrides.items(section): + if key in places[section]: chgopt += 1 + else: addopt += 1 + if key in ("centroid", "location"): + places[section][key] = eval(value) + else: + places[section][key] = value + if addopt and chgopt: + logact += " (+%s/!%s options)" % (addopt, chgopt) + elif addopt: logact += " (+%s options)" % addopt + elif chgopt: logact += " (!%s options)" % chgopt + count += 1 + overrideslog.append("%s\n" % logact) + overrideslog.sort() + if os.path.exists(overrideslog_fn): + os.rename(overrideslog_fn, "%s_old"%overrideslog_fn) + overrideslog_fd = codecs.open(overrideslog_fn, "w", "utf8") + overrideslog_fd.writelines(overrideslog) + overrideslog_fd.close() + print("done (%s overridden sections: +%s/-%s/!%s)." % ( + count, + added, + removed, + changed + ) ) + estimate = 2*len(places) + len(stations) + 2*len(zctas) + len(zones) + print( + "Correlating places, stations, ZCTAs and zones (upper bound is %s):" % \ + estimate + ) + count = 0 + milestones = list( range(51) ) + message = " " + sys.stdout.write(message) + sys.stdout.flush() + for fips in places: + centroid = places[fips]["centroid"] + if centroid: + station = closest(centroid, stations, "location", 0.1) + if station[0]: + places[fips]["station"] = station + count += 1 + if not count%100: + level = int(50*count/estimate) + if level in milestones: + for remaining in milestones[:milestones.index(level)+1]: + if remaining%5: + message = "." + sys.stdout.write(message) + sys.stdout.flush() + else: + message = "%s%%" % (remaining*2,) + sys.stdout.write(message) + sys.stdout.flush() + milestones.remove(remaining) + if centroid: + zone = closest(centroid, zones, "centroid", 0.1) + if zone[0]: + places[fips]["zone"] = zone + count += 1 + if not count%100: + level = int(50*count/estimate) + if level in milestones: + for remaining in milestones[:milestones.index(level)+1]: + if remaining%5: + message = "." + sys.stdout.write(message) + sys.stdout.flush() + else: + message = "%s%%" % (remaining*2,) + sys.stdout.write(message) + sys.stdout.flush() + milestones.remove(remaining) + for station in stations: + if "location" in stations[station]: + location = stations[station]["location"] + if location: + zone = closest(location, zones, "centroid", 0.1) + if zone[0]: + stations[station]["zone"] = zone + count += 1 + if not count%100: + level = int(50*count/estimate) + if level in milestones: + for remaining in milestones[:milestones.index(level)+1]: + if remaining%5: + message = "." + sys.stdout.write(message) + sys.stdout.flush() + else: + message = "%s%%" % (remaining*2,) + sys.stdout.write(message) + sys.stdout.flush() + milestones.remove(remaining) + for zcta in zctas.keys(): + centroid = zctas[zcta]["centroid"] + if centroid: + station = closest(centroid, stations, "location", 0.1) + if station[0]: + zctas[zcta]["station"] = station + count += 1 + if not count%100: + level = int(50*count/estimate) + if level in milestones: + for remaining in milestones[ : milestones.index(level)+1 ]: + if remaining%5: + message = "." + sys.stdout.write(message) + sys.stdout.flush() + else: + message = "%s%%" % (remaining*2,) + sys.stdout.write(message) + sys.stdout.flush() + milestones.remove(remaining) + if centroid: + zone = closest(centroid, zones, "centroid", 0.1) + if zone[0]: + zctas[zcta]["zone"] = zone + count += 1 + if not count%100: + level = int(50*count/estimate) + if level in milestones: + for remaining in milestones[:milestones.index(level)+1]: + if remaining%5: + message = "." + sys.stdout.write(message) + sys.stdout.flush() + else: + message = "%s%%" % (remaining*2,) + sys.stdout.write(message) + sys.stdout.flush() + milestones.remove(remaining) + for zone in zones.keys(): + if "centroid" in zones[zone]: + centroid = zones[zone]["centroid"] + if centroid: + station = closest(centroid, stations, "location", 0.1) + if station[0]: + zones[zone]["station"] = station + count += 1 + if not count%100: + level = int(50*count/estimate) + if level in milestones: + for remaining in milestones[:milestones.index(level)+1]: + if remaining%5: + message = "." + sys.stdout.write(message) + sys.stdout.flush() + else: + message = "%s%%" % (remaining*2,) + sys.stdout.write(message) + sys.stdout.flush() + milestones.remove(remaining) + for remaining in milestones: + if remaining%5: + message = "." + sys.stdout.write(message) + sys.stdout.flush() + else: + message = "%s%%" % (remaining*2,) + sys.stdout.write(message) + sys.stdout.flush() + print("\n done (%s correlations)." % count) + message = "Writing %s..." % airports_fn + sys.stdout.write(message) + sys.stdout.flush() + count = 0 + if os.path.exists(airports_fn): + os.rename(airports_fn, "%s_old"%airports_fn) + airports_fd = codecs.open(airports_fn, "w", "utf8") + airports_fd.write(header) + for airport in sorted( airports.keys() ): + airports_fd.write("\n\n[%s]" % airport) + for key, value in sorted( airports[airport].items() ): + airports_fd.write( "\n%s = %s" % (key, value) ) + count += 1 + airports_fd.close() + print("done (%s sections)." % count) + message = "Writing %s..." % places_fn + sys.stdout.write(message) + sys.stdout.flush() + count = 0 + if os.path.exists(places_fn): + os.rename(places_fn, "%s_old"%places_fn) + places_fd = codecs.open(places_fn, "w", "utf8") + places_fd.write(header) + for fips in sorted( places.keys() ): + places_fd.write("\n\n[%s]" % fips) + for key, value in sorted( places[fips].items() ): + places_fd.write( "\n%s = %s" % (key, value) ) + count += 1 + places_fd.close() + print("done (%s sections)." % count) + message = "Writing %s..." % stations_fn + sys.stdout.write(message) + sys.stdout.flush() + count = 0 + if os.path.exists(stations_fn): + os.rename(stations_fn, "%s_old"%stations_fn) + stations_fd = codecs.open(stations_fn, "w", "utf8") + stations_fd.write(header) + for station in sorted( stations.keys() ): + stations_fd.write("\n\n[%s]" % station) + for key, value in sorted( stations[station].items() ): + stations_fd.write( "\n%s = %s" % (key, value) ) + count += 1 + stations_fd.close() + print("done (%s sections)." % count) + message = "Writing %s..." % zctas_fn + sys.stdout.write(message) + sys.stdout.flush() + count = 0 + if os.path.exists(zctas_fn): + os.rename(zctas_fn, "%s_old"%zctas_fn) + zctas_fd = codecs.open(zctas_fn, "w", "utf8") + zctas_fd.write(header) + for zcta in sorted( zctas.keys() ): + zctas_fd.write("\n\n[%s]" % zcta) + for key, value in sorted( zctas[zcta].items() ): + zctas_fd.write( "\n%s = %s" % (key, value) ) + count += 1 + zctas_fd.close() + print("done (%s sections)." % count) + message = "Writing %s..." % zones_fn + sys.stdout.write(message) + sys.stdout.flush() + count = 0 + if os.path.exists(zones_fn): + os.rename(zones_fn, "%s_old"%zones_fn) + zones_fd = codecs.open(zones_fn, "w", "utf8") + zones_fd.write(header) + for zone in sorted( zones.keys() ): + zones_fd.write("\n\n[%s]" % zone) + for key, value in sorted( zones[zone].items() ): + zones_fd.write( "\n%s = %s" % (key, value) ) + count += 1 + zones_fd.close() + print("done (%s sections)." % count) + message = "Starting QA check..." + sys.stdout.write(message) + sys.stdout.flush() + airports = configparser.ConfigParser() + airports.read(airports_fn) + places = configparser.ConfigParser() + places.read(places_fn) + stations = configparser.ConfigParser() + stations.read(stations_fn) + zctas = configparser.ConfigParser() + zctas.read(zctas_fn) + zones = configparser.ConfigParser() + zones.read(zones_fn) + qalog = [] + places_nocentroid = 0 + places_nodescription = 0 + for place in sorted( places.sections() ): + if not places.has_option(place, "centroid"): + qalog.append("%s: no centroid\n" % place) + places_nocentroid += 1 + if not places.has_option(place, "description"): + qalog.append("%s: no description\n" % place) + places_nodescription += 1 + stations_nodescription = 0 + stations_nolocation = 0 + stations_nometar = 0 + for station in sorted( stations.sections() ): + if not stations.has_option(station, "description"): + qalog.append("%s: no description\n" % station) + stations_nodescription += 1 + if not stations.has_option(station, "location"): + qalog.append("%s: no location\n" % station) + stations_nolocation += 1 + if not stations.has_option(station, "metar"): + qalog.append("%s: no metar\n" % station) + stations_nometar += 1 + airports_badstation = 0 + airports_nostation = 0 + for airport in sorted( airports.sections() ): + if not airports.has_option(airport, "station"): + qalog.append("%s: no station\n" % airport) + airports_nostation += 1 + else: + station = airports.get(airport, "station") + if station not in stations.sections(): + qalog.append( "%s: bad station %s\n" % (airport, station) ) + airports_badstation += 1 + zctas_nocentroid = 0 + for zcta in sorted( zctas.sections() ): + if not zctas.has_option(zcta, "centroid"): + qalog.append("%s: no centroid\n" % zcta) + zctas_nocentroid += 1 + zones_nocentroid = 0 + zones_nodescription = 0 + zones_noforecast = 0 + zones_overlapping = 0 + zonetable = {} + for zone in zones.sections(): + if zones.has_option(zone, "centroid"): + zonetable[zone] = { + "centroid": eval( zones.get(zone, "centroid") ) + } + for zone in sorted( zones.sections() ): + if zones.has_option(zone, "centroid"): + zonetable_local = zonetable.copy() + del( zonetable_local[zone] ) + centroid = eval( zones.get(zone, "centroid") ) + if centroid: + nearest = closest(centroid, zonetable_local, "centroid", 0.1) + if nearest[1]*radian_to_km < 1: + qalog.append( "%s: within one km of %s\n" % ( + zone, + nearest[0] + ) ) + zones_overlapping += 1 + else: + qalog.append("%s: no centroid\n" % zone) + zones_nocentroid += 1 + if not zones.has_option(zone, "description"): + qalog.append("%s: no description\n" % zone) + zones_nodescription += 1 + if not zones.has_option(zone, "zone_forecast"): + qalog.append("%s: no forecast\n" % zone) + zones_noforecast += 1 + if os.path.exists(qalog_fn): + os.rename(qalog_fn, "%s_old"%qalog_fn) + qalog_fd = codecs.open(qalog_fn, "w", "utf8") + qalog_fd.writelines(qalog) + qalog_fd.close() + if qalog: + print("issues found (see %s for details):"%qalog_fn) + if airports_badstation: + print(" %s airports with invalid station"%airports_badstation) + if airports_nostation: + print(" %s airports with no station"%airports_nostation) + if places_nocentroid: + print(" %s places with no centroid"%places_nocentroid) + if places_nodescription: + print(" %s places with no description"%places_nodescription) + if stations_nodescription: + print(" %s stations with no description"%stations_nodescription) + if stations_nolocation: + print(" %s stations with no location"%stations_nolocation) + if stations_nometar: + print(" %s stations with no METAR"%stations_nometar) + if zctas_nocentroid: + print(" %s ZCTAs with no centroid"%zctas_nocentroid) + if zones_nocentroid: + print(" %s zones with no centroid"%zones_nocentroid) + if zones_nodescription: + print(" %s zones with no description"%zones_nodescription) + if zones_noforecast: + print(" %s zones with no forecast"%zones_noforecast) + if zones_overlapping: + print(" %s zones within one km of another"%zones_overlapping) + else: print("no issues found.") + print("Indexing complete!") diff --git a/weatherrc b/weatherrc index 3fa719b..3d229c7 100644 --- a/weatherrc +++ b/weatherrc @@ -1,1114 +1,10 @@ -# Copyright (c) 2006-2010 Jeremy Stanley . Permission to +# Copyright (c) 2006-2012 Jeremy Stanley . Permission to # use, copy, modify, and distribute this software is granted under terms # provided in the LICENSE file distributed with this software. -[ABE] -City = Allentown -ID = KABE -St = PA - -[ABI] -City = Abilene -ID = KABI -St = TX - -[ABQ] -City = Albuquerque -ID = KABQ -St = NM - -[ABR] -City = Aberdeen -ID = KABR -St = SD - -[ABY] -City = Albany -ID = KABY -St = GA - -[ACT] -City = Waco -ID = KACT -St = TX - -[ACY] -City = Atlantic City -ID = KACY -St = NJ - -[AED] -City = Anchorage -ID = PAED -St = AK - -[AEI] -City = Fairbanks -ID = PAEI -St = AK - -[AFA] -City = Fairbanks -ID = PAFA -St = AK - -[AGS] -City = Augusta -ID = KAGS -St = GA - -[AHN] -City = Athens -ID = KAHN -St = GA - -[AJN] -City = Juneau -ID = PAJN -St = AK - -[AKT] -City = Ketchikan -ID = PAKT -St = AK - -[ALB] -City = Albany -ID = KALB -St = NY - -[ALO] -City = Waterloo -ID = KALO -St = IA - -[ALS] -City = Alamosa -ID = KALS -St = CO - -[AMA] -City = Amarillo -ID = KAMA -St = TX - -[ANC] -City = Anchorage -ID = PANC -St = AK - -[AOM] -City = Nome -ID = PAOM -St = AK - -[APN] -City = Alpena -ID = KAPN -St = MI - -[ASI] -City = Sitka -ID = PASI -St = AK - -[AST] -City = Astoria -ID = KAST -St = OR - -[ATL] -City = Atlanta -ID = KATL -St = GA - -[AVL] -City = Asheville -ID = KAVL -St = NC - -[AYA] -City = Yakutat -ID = PAYA -St = AK - -[BDL] -City = Windsor Locks -ID = KBDL -St = CT - -[BDR] -City = Bridgeport -ID = KBDR -St = CT - -[BFF] -City = Scottsbluff -ID = KBFF -St = NE - -[BFL] -City = Bakersfield -ID = KBFL -St = CA - -[BGM] -City = Binghamton -ID = KBGM -St = NY - -[BHM] -City = Birmingham -ID = KBHM -St = AL - -[BIH] -City = Bishop -ID = KBIH -St = CA - -[BIL] -City = Billings -ID = KBIL -St = MT - -[BIS] -City = Bismarck -ID = KBIS -St = ND - -[BJI] -City = Bemidji -ID = KBJI -St = MN - -[BJN] -City = Las Vegas -ID = KBJN -St = NV - -[BKW] -City = Beckley -ID = KBKW -St = WV - -[BML] -City = Berlin -ID = KBML -St = NH - -[BNA] -City = Nashville -ID = KBNA -St = TN - -[BNO] -City = Burns -ID = KBNO -St = OR - -[BOI] -City = Boise -ID = KBOI -St = ID - -[BOS] -City = Boston -ID = KBOS -St = MA - -[BRO] -City = Brownsville -ID = KBRO -St = TX - -[BTV] -City = Burlington -ID = KBTV -St = VT - -[BUF] -City = Buffalo -ID = KBUF -St = NY - -[CAE] -City = Columbia -ID = KCAE -St = SC - -[CAK] -City = Akron -ID = KCAK -St = OH - -[CAR] -City = Caribou -ID = KCAR -St = ME - -[CHA] -City = Chattanooga -ID = KCHA -St = TN - -[CHS] -City = Charleston -ID = KCHS -St = SC - -[CLE] -City = Cleveland -ID = KCLE -St = OH - -[CLT] -City = Charlotte -ID = KCLT -St = NC - -[CMH] -City = Columbus -ID = KCMH -St = OH - -[CMX] -City = Hancock -ID = KCMX -St = MI - -[CNK] -City = Concordia -ID = KCNK -St = KS - -[COD] -City = Cody -ID = KCOD -St = WY - -[CON] -City = Concord -ID = KCON -St = NH - -[COS] -City = Colorado Springs -ID = KCOS -St = CO - -[COU] -City = Columbia -ID = KCOU -St = MO - -[CPR] -City = Casper -ID = KCPR -St = WY - -[CRP] -City = Corpus Christi -ID = KCRP -St = TX - -[CRW] -City = Charleston -ID = KCRW -St = WV - -[CTY] -City = Cross City -ID = KCTY -St = FL - -[CYS] -City = Cheyenne -ID = KCYS -St = WY - -[DAY] -City = Dayton -ID = KDAY -St = OH - -[DBQ] -City = Dubuque -ID = KDBQ -St = IA - -[DDC] -City = Dodge City -ID = KDDC -St = KS - -[DEN] -City = Denver -ID = KDEN -St = CO - -[DGW] -City = Douglas -ID = KDGW -St = WY - -[DLH] -City = Duluth -ID = KDLH -St = MN - -[DRT] -City = Del Rio -ID = KDRT -St = TX - -[DSM] -City = Des Moines -ID = KDSM -St = IA - -[DTW] -City = Detroit -ID = KDTW -St = MI - -[EKN] -City = Elkins -ID = KEKN -St = WV - -[ELP] -City = El Paso -ID = KELP -St = TX - -[ELY] -City = Ely -ID = KELY -St = NV - -[ERI] -City = Erie -ID = KERI -St = PA - -[ESC] -City = Escanaba -ID = KESC -St = MI - -[EUG] -City = Eugene -ID = KEUG -St = OR - -[EVV] -City = Evansville -ID = KEVV -St = IN - -[EWR] -City = Newark -ID = KEWR -St = NJ - -[EYW] -City = Key West -ID = KEYW -St = FL - -[FAR] -City = Fargo -ID = KFAR -St = ND - -[FAT] -City = Fresno -ID = KFAT -St = CA - -[FNT] -City = Flint -ID = KFNT -St = MI - -[FOD] -City = Fort Dodge -ID = KFOD -St = IA - -[FSD] -City = Sioux Falls -ID = KFSD -St = SD - -[FSM] -City = Fort Smith -ID = KFSM -St = AR - -[FWA] -City = Fort Wayne -ID = KFWA -St = IN - -[GCC] -City = Gillette -ID = KGCC -St = WY - -[GEG] -City = Spokane -ID = KGEG -St = WA - -[GGG] -City = Longview -ID = KGGG -St = TX - -[GJT] -City = Grand Junction -ID = KGJT -St = CO - -[GLD] -City = Goodland -ID = KGLD -St = KS - -[GLS] -City = Galveston -ID = KGLS -St = TX - -[GPI] -City = Kalispell -ID = KGPI -St = MT - -[GRB] -City = Green Bay -ID = KGRB -St = WI - -[GRI] -City = Grand Island -ID = KGRI -St = NE - -[GRR] -City = Grand Rapids -ID = KGRR -St = MI - -[GSO] -City = Greensboro -ID = KGSO -St = NC - -[GTF] -City = Great Falls -ID = KGTF -St = MT - -[HLN] -City = Helena -ID = KHLN -St = MT - -[HNL] -City = Honolulu -ID = PHNL -St = HI - -[HON] -City = Huron -ID = KHON -St = SD - -[HSV] -City = Huntsville -ID = KHSV -St = AL - -[HTS] -City = Huntington -ID = KHTS -St = WV - -[HVR] -City = Havre -ID = KHVR -St = MT - -[IAH] -City = Houston -ID = KIAH -St = TX - -[ICT] -City = Wichita -ID = KICT -St = KS - -[IGM] -City = Kingman -ID = KIGM -St = AZ - -[IND] -City = Indianapolis -ID = KIND -St = IN - -[INL] -City = International Falls -ID = KINL -St = MN - -[INW] -City = Winslow -ID = KINW -St = AZ - -[IPT] -City = Williamsport -ID = KIPT -St = PA - -[ISN] -City = Williston -ID = KISN -St = ND - -[JAN] -City = Jackson -ID = KJAN -St = MS - -[JAX] -City = Jacksonville -ID = KJAX -St = FL - -[JCT] -City = Junction -ID = KJCT -St = TX - -[JFK] -City = New York -ID = KJFK -St = NY - -[LAN] -City = Lansing -ID = KLAN -St = MI - -[LAS] -City = Las Vegas -ID = KLAS -St = NV - -[LBB] -City = Lubbock -ID = KLBB -St = TX - -[LBF] -City = North Platte -ID = KLBF -St = NE - -[LCH] -City = Lake Charles -ID = KLCH -St = LA - -[LEX] -City = Lexington -ID = KLEX -St = KY - -[LGA] -City = New York -ID = KLGA -St = NY - -[LND] -City = Lander -ID = KLND -St = WY - -[LNK] -City = Lincoln -ID = KLNK -St = NE - -[LRD] -City = Laredo -ID = KLRD -St = TX - -[LSE] -City = La Crosse -ID = KLSE -St = WI - -[LYH] -City = Lynchburg -ID = KLYH -St = VA - -[MAF] -City = Midland -ID = KMAF -St = TX - -[MCI] -City = Kansas City -ID = KMCI -St = MO - -[MCN] -City = Macon -ID = KMCN -St = GA - -[MCO] -City = Orlando -ID = KMCO -St = FL - -[MDW] -City = Chicago -ID = KMDW -St = IL - -[MEI] -City = Meridian -ID = KMEI -St = MS - -[MEM] -City = Memphis -ID = KMEM -St = TN - -[MFR] -City = Medford -ID = KMFR -St = OR - -[MGM] -City = Montgomery -ID = KMGM -St = AL - -[MIA] -City = Miami -ID = KMIA -St = FL - -[MKE] -City = Milwaukee -ID = KMKE -St = WI - -[MKG] -City = Muskegon -ID = KMKG -St = MI - -[MLB] -City = Melbourne -ID = KMLB -St = FL - -[MLI] -City = Moline -ID = KMLI -St = IL - -[MLS] -City = Miles City -ID = KMLS -St = MT - -[MOB] -City = Mobile -ID = KMOB -St = AL - -[MQT] -City = Marquette -ID = KMQT -St = MI - -[MRF] -City = Marfa -ID = KMRF -St = TX - -[MSN] -City = Madison -ID = KMSN -St = WI - -[MSO] -City = Missoula -ID = KMSO -St = MT - -[MSP] -City = Minneapolis -ID = KMSP -St = MN - -[MSY] -City = New Orleans -ID = KMSY -St = LA - -[NKX] -City = San Diego -ID = KNKX -St = CA - -[OKC] -City = Oklahoma City -ID = KOKC -St = OK - -[OMA] -City = Omaha -ID = KOMA -St = NE - -[ORD] -City = Chicago -ID = KORD -St = IL - -[PAH] -City = Paducah -ID = KPAH -St = KY - -[PAO] -City = San Francisco -ID = KPAO -St = CA - -[PBI] -City = West Palm Beach -ID = KPBI -St = FL - -[PDT] -City = Pendleton -ID = KPDT -St = OR - -[PDX] -City = Portland -ID = KPDX -St = OR - -[PGA] -City = Page -ID = KPGA -St = AZ - -[PHL] -City = Philadelphia -ID = KPHL -St = PA - -[PHX] -City = Phoenix -ID = KPHX -St = AZ - -[PIA] -City = Peoria -ID = KPIA -St = IL - -[PIE] -City = Saint Petersburg -ID = KPIE -St = FL - -[PIH] -City = Pocatello -ID = KPIH -St = ID - -[PIT] -City = Pittsburgh -ID = KPIT -St = PA - -[PNC] -City = Ponca City -ID = KPNC -St = OK - -[PNS] -City = Pensacola -ID = KPNS -St = FL - -[PQI] -City = Presque Isle -ID = KPQI -St = ME - -[PUB] -City = Pueblo -ID = KPUB -St = CO - -[PVD] -City = Providence -ID = KPVD -St = RI - -[PWM] -City = Portland -ID = KPWM -St = ME - -[RAP] -City = Rapid City -ID = KRAP -St = SD - -[RBL] -City = Red Bluff -ID = KRBL -St = CA - -[RDU] -City = Raleigh Durham -ID = KRDU -St = NC - -[RFD] -City = Rockford -ID = KRFD -St = IL - -[RIC] -City = Richmond -ID = KRIC -St = VA - -[RIW] -City = Riverton -ID = KRIW -St = WY - -[RKS] -City = Rock Springs -ID = KRKS -St = WY - -[RMG] -City = Rome -ID = KRMG -St = GA - -[RNO] -City = Reno -ID = KRNO -St = NV - -[ROC] -City = Rochester -ID = KROC -St = NY - -[RST] -City = Rochester -ID = KRST -St = MN - -[RUE] -City = Russellville -ID = KRUE -St = AR - -[SAC] -City = Sacramento -ID = KSAC -St = CA - -[SAN] -City = San Diego -ID = KSAN -St = CA - -[SAT] -City = San Antonio -ID = KSAT -St = TX - -[SAV] -City = Savannah -ID = KSAV -St = GA - -[SBN] -City = South Bend -ID = KSBN -St = IN - -[SDF] -City = Louisville -ID = KSDF -St = KY - -[SEA] -City = Seattle -ID = KSEA -St = WA - -[SFO] -City = San Francisco -ID = KSFO -St = CA - -[SGF] -City = Springfield -ID = KSGF -St = MO - -[SHR] -City = Sheridan -ID = KSHR -St = WY - -[SHV] -City = Shreveport -ID = KSHV -St = LA - -[SJC] -City = San Jose -ID = KSJC -St = CA - -[SJT] -City = San Angelo -ID = KSJT -St = TX - -[SLC] -City = Salt Lake City -ID = KSLC -St = UT - -[SLE] -City = Salem -ID = KSLE -St = OR - -[SLO] -City = Salem -ID = KSLO -St = IL - -[SNY] -City = Sidney -ID = KSNY -St = NE - -[SPS] -City = Wichita Falls -ID = KSPS -St = TX - -[SUX] -City = Sioux City -ID = KSUX -St = IA - -[SYR] -City = Syracuse -ID = KSYR -St = NY - -[TLH] -City = Tallahassee -ID = KTLH -St = FL - -[TOL] -City = Toledo -ID = KTOL -St = OH - -[TOP] -City = Topeka -ID = KTOP -St = KS - -[TPA] -City = Tampa -ID = KTPA -St = FL - -[TUL] -City = Tulsa -ID = KTUL -St = OK - -[TUP] -City = Tupelo -ID = KTUP -St = MS - -[TUS] -City = Tucson -ID = KTUS -St = AZ - -[TYS] -City = Knoxville -ID = KTYS -St = TN - -[VCT] -City = Victoria -ID = KVCT -St = TX - -[VTN] -City = Valentine -ID = KVTN -St = NE - -[WMC] -City = Winnemucca -ID = KWMC -St = NV - -[WWR] -City = Woodward -ID = KWWR -St = OK - -[YKM] -City = Yakima -ID = KYKM -St = WA - -[YNG] -City = Youngstown -ID = KYNG -St = OH +# NOTE: Predefined IATA/FAA airport codes are now in the airports file. +[default] +description = default settings +#cachedir = ~/.weather +#setpath = .:~/.weather:/var/lib/weather-util:/usr/share/weather-util diff --git a/weatherrc.5 b/weatherrc.5 index d490d76..ea545d0 100644 --- a/weatherrc.5 +++ b/weatherrc.5 @@ -1,5 +1,5 @@ -.TH WEATHERRC 5 "March 15, 2010" "" \" -*- nroff -*- -\" Copyright (c) 2006-2010 Jeremy Stanley . +.TH weatherrc 5 "2012\-06\-24" "2.0" \" -*- nroff -*- +\" Copyright (c) 2006-2012 Jeremy Stanley . \" Permission to use, copy, modify, and distribute this software is \" granted under terms provided in the LICENSE file distributed with \" this software. @@ -8,114 +8,109 @@ weatherrc \- configuration file format for the .BR weather (1) utility .SH DESCRIPTION -The weatherrc file format is intended to specify a set of macros -by which to group a METAR station ID for current conditions data with a -city/state combination for a forecast, but many of the other -command\-line options and flags for the weather utility can be specified -as well. The file is organized as an INI-format config, with the alias -name in [] brackets and the associated parameter/value pairs on following -lines. Parameters and their values as separated by = or : characters. +. +The \fIweatherrc\fR file format is intended to specify a set of aliases +by which to group URIs for METAR station conditions and alert/forecast +zones, but other command-line options and flags for the weather utility +can be specified as well. +. +The file is organized as an INI-format config, with the alias name in [] +brackets and the associated parameter/value pairs on following lines. +. +Parameters and their values are separated by = or : characters. +. Multi-word values do not need quoting. -.SH PARAMETERS +. These parameters are supported... .TP .B alert -include local alert notices +include local alert notices (possible values are +.BR False " and " True " or " 0 " and " 1 ) .TP .B atypes -alert notification types to display +list of alert notification types to display (ex: +.BR tornado_warning,urgent_weather_message ) .TP -.B aurl -alert URL (including %atype% and %zone%) +.B cache +control all caching (possible values are +.BR False " and " True " or " 0 " and " 1 ) .TP -.B city -the city name (ex: Raleigh Durham) +.B cache_data +control retrieved data caching (possible values are +.BR False " and " True " or " 0 " and " 1 ) +.TP +.B cache_search +control search result caching (possible values are +.BR False " and " True " or " 0 " and " 1 ) +.TP +.B cacheage +duration in seconds to refresh cached data (ex: +.BR 900 ) +.TP +.B cachedir +directory for storing cached searches and data (ex: +.BR ~/.weather ) .TP .B conditions -output current conditions (possible values are False and True or 0 and 1) +output current conditions (possible values are +.BR False " and " True " or " 0 " and " 1 ) .TP -.B flines -maximum number of forecast lines to show (integer value, 0 means unlimited) +.B defargs +list of default command-line arguments (ex: +.BR avl,rdu ) .TP .B forecast -include a local forecast (possible values are False and True or 0 and 1) -.TP -.B furl -forecast URL (ex: http://forecast.org/%st%/%city%.txt) +include a local forecast (possible values are +.BR False " and " True " or " 0 " and " 1 ) .TP .B headers -the conditions headers to display (ex: temperature,wind) -.TP -.B id -the METAR station ID (ex: KRDU) +list of conditions headers to display (ex: +.BR temperature,wind ) .TP .B imperial -filter/convert for US/UK units +filter/convert conditions for US/UK units (possible values are +.BR False " and " True " or " 0 " and " 1 ) .TP .B metric -filter/convert for metric units -.TP -.B murl -METAR URL (ex: http://metar.org/%id%.txt) +filter/convert conditions for metric units (possible values are +.BR False " and " True " or " 0 " and " 1 ) .TP .B quiet -skip preambles and don't indent (possible values are False and True or 0 and 1) +skip preambles and don't indent (possible values are +.BR False " and " True " or " 0 " and " 1 ) .TP -.B st -the state abbreviation (ex: NC) +.B setpath +directory search path for correlation sets (ex: +.BR .:~/.weather ) .TP .B verbose -show full decoded feeds (possible values are False and True or 0 and 1) -.TP -.B zones -alert zones (ex: nc/ncc183,nc/ncz041) -.SH URL FORMAT -The placeholders %city% and %st% in the furl URL and %id% in the murl URL -will be replaced with the city, st and id definitions respectively. If the -placeholder has all letters lowercased, the replacement will be forced to -all lowercase. If the placeholder has all letters uppercased, the -replacement will be forced to all uppercase. If the placeholder has its -first letter uppercased and the remainder lowercased, then all words in the -replacement will start with an uppercase letter and the rest will be -lowercase. If the placeholder has its last letter uppercased and the -remainder lowercased, then case will be preserved in the replacement. Also, -after replacement, any spaces in the resulting URL will be converted to -underscore characters prior to use. +show full decoded feeds (possible values are +.BR False " and " True " or " 0 " and " 1 ) .SH EXAMPLES -Following is an example -.B ~/.weatherrc -defining the default settings to be used when running the utility with no -aliases specified, and a couple definitions for aliases named home and -work... +The following is an example \fI~/.weather/weatherrc\fR defining a couple +aliases named home and work to be displayed when running the utility +with no aliases specified... .P -.RS +.in 0 +.nf [default] -.br -City = Asheville -.br -Forecast = True -.br -ID = KAVL -.br -St = NC -.P +defargs = home,work + [home] -.br -City = Raleigh Durham -.br -ID = KRDU -.br -St = NC -.P +description = Conditions and Forecast at Home +forecast = True +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KRDU.TXT +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz041.txt + [work] -.br -City = Greensboro -.br -ID = KGSO -.br -St = NC -.RE -.SH SEE ALSO -.BR weather (1) +description = Conditions at Work +metar = http://weather.noaa.gov/pub/data/observations/metar/decoded/KGSO.TXT +.fi +.P +Now if +.B weather is invoked by itself on the command line, it will output +conditions for home and work, and also a forecast for home only. .SH AUTHOR Specification and manual written by Jeremy Stanley . +.SH SEE ALSO +.BR weather (1) diff --git a/zctas b/zctas new file mode 100644 index 0000000..d1f10a7 --- /dev/null +++ b/zctas @@ -0,0 +1,165631 @@ +# Copyright (c) 2006-2012 Jeremy Stanley . Permission to +# use, copy, modify, and distribute this software is granted under terms +# provided in the LICENSE file distributed with this software. +# +# generated by weather on 2012-06-26 from these public domain sources: +# +# http://www.census.gov/geo/www/gazetteer/gazetteer2010.html +# a410aa212529e11b103bd5d222a952fc 2011-03-02 Gaz_counties_national.zip +# 680d807fce3bfe6aea8df5df5a6ebb04 2011-03-02 Gaz_cousubs_national.zip +# 41f34b79edfc3814b48419421d56e2a1 2011-03-02 Gaz_places_national.zip +# 8b298a6117e7942fd20f3e15076bd38a 2011-05-16 Gaz_zcta_national.zip +# +# http://www.weather.gov/geodata/catalog/wsom/html/cntyzone.htm +# 7e64372572d4923ad1be3c33ec79d7b6 2012-04-05 bp03ap12.dbx +# +# http://weather.noaa.gov/data/nsd_cccc.txt +# 6561bd4dc1ffd4147e35cf6dee7503d5 2011-05-04 nsd_cccc.txt +# +# http://weather.noaa.gov/pub/data/zonecatalog.curr.tar +# 748043471973d418cb415fccc3a0000b 2007-06-07 zonecatalog.curr.tar +# +# http://www.nco.ncep.noaa.gov/pmb/codes/nwprod/dictionaries/metar.tbl +# 2bbef16bbf41add353650c5d09f35066 2012-04-04 metar.tbl +# +# ftp://ftp.ncdc.noaa.gov/pub/data/inventories/COOP-ACT.TXT +# 23919279dec601f31f47f46fc60db095 2012-06-25 COOP-ACT.TXT +# +# ...and these manually-generated or hand-compiled adjustments: +# f4934ba2494d41fc4de1360ac2e09a49 2012-06-26 overrides.conf +# d115dda76af5661fb8afd793a9b8ff9d 2012-06-25 slist +# 12c0635d5b8157b564dc665e8a1cd124 2012-06-25 zlist + +[00601] +centroid = (0.31731054458991764, -1.1650065950278066) +station = ('tjps', 0.0041747272632087868) +zone = ('prz009', 0.0019171705062335483) + +[00602] +centroid = (0.32048203473359416, -1.1724446472477383) +station = ('tjmz', 0.0017238139981039791) +zone = ('prz010', 0.0020943686789844942) + +[00603] +centroid = (0.32210370740808469, -1.1714630217165394) +station = ('tjbq', 0.00081325716455421082) +zone = ('prz008', 0.002982030960378584) + +[00606] +centroid = (0.31692290696304976, -1.1681996748943304) +station = ('tjmz', 0.0040654425536773052) +zone = ('prz009', 0.0019823787973497482) + +[00610] +centroid = (0.31923738808411944, -1.1715674098591009) +station = ('tjmz', 0.00058279100572128373) +zone = ('prz010', 0.0010998999794126245) + +[00612] +centroid = (0.32117966028890882, -1.1643335786149451) +station = ('tjps', 0.0071445197025253801) +zone = ('prz005', 0.0029979221221370623) + +[00616] +centroid = (0.32149683897387371, -1.1636455523705163) +station = ('tjps', 0.0072597486895841215) +zone = ('prz005', 0.0023378049023890474) + +[00617] +centroid = (0.32192854616435451, -1.1616858443264997) +station = ('tjps', 0.007479285293496207) +zone = ('prz005', 0.00070490848079624089) + +[00622] +centroid = (0.31400646178296721, -1.1720582837112243) +station = ('tjmz', 0.0048074711629283009) +zone = ('prz011', 0.0016062903154674775) + +[00623] +centroid = (0.31561548082038082, -1.172056259129292) +station = ('tjmz', 0.003198642037163637) +zone = ('prz011', 0.0019129187249914243) + +[00624] +centroid = (0.31526362244317874, -1.1644132703485912) +station = ('tjps', 0.0026077895744428354) +zone = ('prz007', 0.0010624820265048719) + +[00627] +centroid = (0.32140290535353139, -1.1669599326200537) +station = ('tjbq', 0.0047324228344794005) +zone = ('prz008', 0.0013570575640974632) + +[00631] +centroid = (0.31748598508632814, -1.1664391612778438) +station = ('tjps', 0.0053476270734708975) +zone = ('prz009', 0.00087777064622587136) + +[00637] +centroid = (0.31549815978806178, -1.1684523636634341) +station = ('tjmz', 0.0047201692856462425) +zone = ('prz011', 0.002151655717127725) + +[00638] +centroid = (0.31923970937202456, -1.1608761860864996) +station = ('tjps', 0.0048706261554199047) +zone = ('prz005', 0.0021891418932280205) + +[00641] +centroid = (0.31874881806660865, -1.1643793062413474) +station = ('tjps', 0.0049448507350625419) +zone = ('prz009', 0.0022646826975885109) + +[00646] +centroid = (0.32171945571996563, -1.1569079182327024) +station = ('tjig', 0.0030926128364754894) +zone = ('prz001', 0.0032945918035014975) + +[00647] +centroid = (0.3135241924040561, -1.1684477909007938) +station = ('tjmz', 0.0062691081052824865) +zone = ('prz011', 0.0021211700653417749) + +[00650] +centroid = (0.32025772501812783, -1.1620066882028939) +station = ('tjps', 0.00581065370408797) +zone = ('prz005', 0.0013917163274219701) + +[00652] +centroid = (0.32204700166068739, -1.162443613927838) +station = ('tjps', 0.0076208343044365558) +zone = ('prz005', 0.0013550825007093083) + +[00653] +centroid = (0.31390535485939913, -1.1674321139958881) +station = ('tjps', 0.0053769587183472543) +zone = ('prz011', 0.002918581242389996) + +[00656] +centroid = (0.31509369718720459, -1.1657565630073885) +station = ('tjps', 0.0038097750405101734) +zone = ('prz007', 0.002327002188037346) + +[00659] +centroid = (0.32126663004553568, -1.166037159591232) +station = ('tjbq', 0.0056083316514709113) +zone = ('prz008', 0.0022399156521393693) + +[00660] +centroid = (0.3165092464770346, -1.1713979383887323) +station = ('tjmz', 0.0023715634697043303) +zone = ('prz010', 0.0020714932999791724) + +[00662] +centroid = (0.32231834799949494, -1.1696493977309144) +station = ('tjbq', 0.0020238544014294806) +zone = ('prz008', 0.0013624347937075012) + +[00664] +centroid = (0.31788412959529305, -1.1622079944788188) +station = ('tjps', 0.0034550074995720508) +zone = ('prz007', 0.0029742760909212598) + +[00667] +centroid = (0.31421899052598257, -1.1699956012413399) +station = ('tjmz', 0.0049695568643648609) +zone = ('prz011', 0.00049512064766777655) + +[00669] +centroid = (0.31888734484933945, -1.1670384026232234) +station = ('tjmz', 0.004701262640550573) +zone = ('prz009', 0.00064070788533227181) + +[00670] +centroid = (0.31829276353306252, -1.1691980555863488) +station = ('tjmz', 0.0027008155631731115) +zone = ('prz009', 0.0023526249935798328) + +[00674] +centroid = (0.32154040239200349, -1.1604578481180892) +station = ('tjig', 0.0064637651091253179) +zone = ('prz005', 0.00070061228318542539) + +[00676] +centroid = (0.32075226406168039, -1.1707728661704231) +station = ('tjmz', 0.0022562863621511469) +zone = ('prz008', 0.0025167100381396391) + +[00677] +centroid = (0.31996353231941166, -1.1733326009579832) +station = ('tjmz', 0.001717818956413244) +zone = ('prz010', 0.0018485549839920533) + +[00678] +centroid = (0.3217357221885942, -1.1681032105465727) +station = ('tjbq', 0.0035981848715582717) +zone = ('prz008', 0.00022642160812136772) + +[00680] +centroid = (0.31733468249347274, -1.1717058842819543) +station = ('tjmz', 0.0015029768363038749) +zone = ('prz010', 0.0012018233739947881) + +[00682] +centroid = (0.31802417481447315, -1.1720943945734483) +station = ('tjmz', 0.00079567227558426459) +zone = ('prz010', 0.00041978918959434836) + +[00683] +centroid = (0.31604073029262925, -1.1700209608753713) +station = ('tjmz', 0.0033440278437749708) +zone = ('prz011', 0.0016176693436589945) + +[00685] +centroid = (0.31996993767776649, -1.168670285473838) +station = ('tjmz', 0.0033560365607681049) +zone = ('prz008', 0.001813888331403853) + +[00687] +centroid = (0.31971614935123399, -1.1592133760015395) +station = ('tjig', 0.0057465327491410742) +zone = ('prz006', 0.0018451508545844005) + +[00688] +centroid = (0.32083103077082292, -1.1628507119758655) +station = ('tjps', 0.0064573764286083813) +zone = ('prz005', 0.0016846000535931235) + +[00690] +centroid = (0.32280754633553643, -1.1710927326624361) +station = ('tjbq', 0.00057904394370406065) +zone = ('prz008', 0.002813795295958316) + +[00692] +centroid = (0.32131839651114985, -1.1577913166335996) +station = ('tjig', 0.0039780758301294558) +zone = ('prz005', 0.0032195790806168393) + +[00693] +centroid = (0.32154242697393581, -1.1588502777039544) +station = ('tjig', 0.0049438540379938495) +zone = ('prz005', 0.0022174591924762994) + +[00694] +centroid = (0.32257821007182436, -1.1587429225016646) +station = ('tjig', 0.0048517123535272398) +zone = ('prz005', 0.002593270566308121) + +[00698] +centroid = (0.31529107647231264, -1.1668628923136428) +station = ('tjps', 0.0048798478368180563) +zone = ('prz009', 0.0030337888020900484) + +[00703] +centroid = (0.31849468067422576, -1.1541977884234984) +station = ('tjig', 0.0035550407811720231) +zone = ('prz004', 0.0016616401039466703) + +[00704] +centroid = (0.31356183915602165, -1.1557492639554736) +station = ('tjps', 0.0058300882038583701) +zone = ('prz003', 0.0026091744936283952) + +[00705] +centroid = (0.31641005941564371, -1.1565718027253535) +station = ('tjps', 0.005349356637251234) +zone = ('prz006', 0.0027815058640158156) + +[00707] +centroid = (0.31439746789529149, -1.1505334696589362) +station = ('tjnr', 0.0063037625617471654) +zone = ('prz003', 0.0025794429150882256) + +[00714] +centroid = (0.31416272111089827, -1.1526668030569414) +station = ('tjsj', 0.0078827376222146903) +zone = ('prz003', 0.00070247280505995641) + +[00715] +centroid = (0.31435531819385587, -1.1616922845914395) +station = ('tjps', 0.00014491361269707123) +zone = ('prz007', 0.0017082316317656981) + +[00716] +centroid = (0.31399462845063869, -1.1625209145604087) +station = ('tjps', 0.00081721245597832627) +zone = ('prz007', 0.0013355039618470719) + +[00717] +centroid = (0.3142154998674786, -1.1626342736953259) +station = ('tjps', 0.00082052762454675322) +zone = ('prz007', 0.0010927357885030188) + +[00718] +centroid = (0.31820821978409597, -1.1477219362201911) +station = ('tjnr', 0.002116880119842133) +zone = ('prz002', 0.001000792720115717) + +[00719] +centroid = (0.31921944609940889, -1.156340668772512) +station = ('tjig', 0.0037768858019102242) +zone = ('prz006', 0.0029100053595846618) + +[00720] +centroid = (0.31796314065053088, -1.1593886419650248) +station = ('tjps', 0.0041983567020617537) +zone = ('prz006', 0.00032462686445706323) + +[00723] +centroid = (0.31492410354378825, -1.1521891937071334) +station = ('tjsj', 0.0070938445060462971) +zone = ('prz003', 0.0010445943136244396) + +[00725] +centroid = (0.31797837737490081, -1.1526568895867901) +station = ('tjsj', 0.0040954891718226871) +zone = ('prz004', 0.00053768517220844064) + +[00727] +centroid = (0.3179170988648633, -1.1532012577804871) +station = ('tjig', 0.0041194950097994268) +zone = ('prz004', 0.00057645964774619282) + +[00728] +centroid = (0.31398216679977947, -1.1635083171314322) +station = ('tjps', 0.001683876837838473) +zone = ('prz007', 0.001133774943069196) + +[00729] +centroid = (0.31991586737753969, -1.1499126560440018) +station = ('tjsj', 0.0028315460433849544) +zone = ('prz002', 0.0019081003614074285) + +[00730] +centroid = (0.31469736782066166, -1.1626831603676744) +station = ('tjps', 0.00086860773079332828) +zone = ('prz007', 0.00071853580659045747) + +[00731] +centroid = (0.31604490162954152, -1.1629940907739171) +station = ('tjps', 0.0019534209125873113) +zone = ('prz007', 0.00099121079141598046) + +[00735] +centroid = (0.31856803686268709, -1.1463757812214206) +station = ('tjnr', 0.00081611691770163309) +zone = ('prz002', 0.0017122816942875241) + +[00736] +centroid = (0.31596784534306593, -1.1545643948328799) +station = ('tjig', 0.0061057409529980287) +zone = ('prz003', 0.0018541922636705047) + +[00738] +centroid = (0.31947305989301622, -1.1466588212662163) +station = ('tjnr', 0.0014412998557358546) +zone = ('prz002', 0.0013781783437032092) + +[00739] +centroid = (0.31725312325752703, -1.1547199036692326) +station = ('tjig', 0.0048647945257195716) +zone = ('prz004', 0.0018128088091169073) + +[00740] +centroid = (0.31993909770988377, -1.1455314956490605) +station = ('tjnr', 0.001416569206375542) +zone = ('prz002', 0.0025356157984220582) + +[00741] +centroid = (0.3170171547426574, -1.1476241628754942) +station = ('tjnr', 0.0025040144718455051) +zone = ('prz002', 0.002177191345759626) + +[00745] +centroid = (0.32031748509171609, -1.1487375433119267) +station = ('tjsj', 0.0034610627758139899) +zone = ('prz002', 0.0013257839141609135) + +[00751] +centroid = (0.31418225134522809, -1.1563187299838145) +station = ('tjps', 0.0052267390662860879) +zone = ('prz003', 0.0029618735327019727) + +[00754] +centroid = (0.31672716828743858, -1.1515034712973171) +station = ('tjsj', 0.0053006607984768849) +zone = ('prz004', 0.0014562365794547119) + +[00757] +centroid = (0.31407969579838091, -1.158747373091257) +station = ('tjps', 0.002933742453943389) +zone = ('prz006', 0.0038086703361057571) + +[00765] +centroid = (0.3164298689026539, -1.1421324494775091) +station = ('tjnr', 0.0038370590480582599) +zone = ('prz013', 0.00012711655988626046) + +[00766] +centroid = (0.31648397410946572, -1.1602410607716989) +station = ('tjps', 0.0025207086283857969) +zone = ('prz006', 0.0017891187422219804) + +[00767] +centroid = (0.31537075075266618, -1.1501107160075181) +station = ('tjnr', 0.0053833208157732402) +zone = ('prz003', 0.0030681772038227677) + +[00769] +centroid = (0.31597091712254943, -1.158158359375294) +station = ('tjps', 0.0037880276671665475) +zone = ('prz006', 0.0020892917044000999) + +[00771] +centroid = (0.31742653917200525, -1.1496692524265186) +station = ('tjnr', 0.00409286302058219) +zone = ('prz002', 0.0022988839041499934) + +[00772] +centroid = (0.32182071972316634, -1.1502622803997613) +station = ('tjsj', 0.0015817688857431777) +zone = ('prz002', 0.003383094808365501) + +[00773] +centroid = (0.32015968987404331, -1.1471417015103655) +station = ('tjnr', 0.0022488554944318419) +zone = ('prz002', 0.0013385716202325686) + +[00775] +centroid = (0.31987495685987294, -1.1396297869564893) +station = ('tist', 0.0051807882376485401) +zone = ('prz012', 0.0002443156242477989) + +[00777] +centroid = (0.31807112417135175, -1.1503210630889684) +station = ('tjsj', 0.0042232839506987216) +zone = ('prz002', 0.0023952709975306029) + +[00778] +centroid = (0.31874988271745236, -1.1515521485301552) +station = ('tjsj', 0.0032817162834617528) +zone = ('prz004', 0.0017642308010049033) + +[00780] +centroid = (0.31595405724197517, -1.1618326090633) +station = ('tjps', 0.0015040930456275501) +zone = ('prz007', 0.0016429953745113449) + +[00782] +centroid = (0.31809861310707072, -1.15578553189733) +station = ('tjig', 0.0044028335513553148) +zone = ('prz004', 0.0028829249969457419) + +[00783] +centroid = (0.31946349548871528, -1.1576102038171201) +station = ('tjig', 0.0045316263618359522) +zone = ('prz006', 0.0021002447397742117) + +[00784] +centroid = (0.31434638210808563, -1.1542492930897246) +station = ('tjps', 0.0071884760672948451) +zone = ('prz003', 0.00099818127887525828) + +[00786] +centroid = (0.31687192589559898, -1.1559299404396401) +station = ('tjig', 0.0055737662209952273) +zone = ('prz004', 0.0030091956581028388) + +[00791] +centroid = (0.31654603801766662, -1.1488016667086449) +station = ('tjnr', 0.0036931665157100536) +zone = ('prz002', 0.0026975348445278905) + +[00794] +centroid = (0.31763271491654327, -1.1573240221796706) +station = ('tjps', 0.0053186901725749891) +zone = ('prz006', 0.0016662842871898219) + +[00795] +centroid = (0.31521574806179647, -1.1606347546910711) +station = ('tjps', 0.0013526271770190937) +zone = ('prz007', 0.0025452320926775333) + +[00901] +centroid = (0.3222824465767814, -1.1537450674688237) +station = ('tjig', 0.00028032536820876529) +zone = ('prz001', 0.0016516548928901117) + +[00906] +centroid = (0.32226562160279215, -1.1535752818391896) +station = ('tjig', 0.00026562900594340357) +zone = ('prz001', 0.0016319948705404608) + +[00907] +centroid = (0.3220600043636147, -1.1532806353548679) +station = ('tjig', 0.00036536685911897767) +zone = ('prz001', 0.0014634861816303993) + +[00909] +centroid = (0.32186681386871147, -1.1530889807497064) +station = ('tjig', 0.00056353979719833984) +zone = ('prz001', 0.0013348260257445047) + +[00911] +centroid = (0.32203293430691632, -1.1528985827816063) +station = ('tjig', 0.00072504557629724865) +zone = ('prz001', 0.0015609966892246334) + +[00912] +centroid = (0.32193102453189232, -1.1529669298751144) +station = ('tjig', 0.00066505784264267204) +zone = ('prz001', 0.001440948024764014) + +[00913] +centroid = (0.32201272339417819, -1.1526619335883284) +station = ('tjsj', 0.00070635382945054108) +zone = ('prz001', 0.0016560298169220617) + +[00915] +centroid = (0.32178947832955562, -1.1527126703096837) +station = ('tjsj', 0.00078699342431513353) +zone = ('prz001', 0.0014459836355768718) + +[00917] +centroid = (0.32150141173651398, -1.1527918035379694) +station = ('tjig', 0.00097184659555711063) +zone = ('prz001', 0.0011762038806425513) + +[00918] +centroid = (0.3215074854823109, -1.1530655409778521) +station = ('tjig', 0.00075938287535465916) +zone = ('prz001', 0.0010239932192433875) + +[00920] +centroid = (0.32139002482365164, -1.1534539290962984) +station = ('tjig', 0.00065391872703264521) +zone = ('prz001', 0.0007737320476425253) + +[00921] +centroid = (0.32100572077565503, -1.1534628302754837) +station = ('tjig', 0.0010252047535341297) +zone = ('prz001', 0.00040355969078368763) + +[00923] +centroid = (0.32130302016043971, -1.1525960299557731) +station = ('tjsj', 0.00095866932344576344) +zone = ('prz001', 0.001186891120138381) + +[00924] +centroid = (0.32112654991977058, -1.1521346347147157) +station = ('tjsj', 0.00091035448255134095) +zone = ('prz001', 0.0015014763368269167) + +[00925] +centroid = (0.32114574854154254, -1.1528004778243517) +station = ('tjig', 0.0011923146199501672) +zone = ('prz001', 0.00093824604763201324) + +[00926] +centroid = (0.32018763259536775, -1.152816936279198) +station = ('tjig', 0.0019941998354443121) +zone = ('prz001', 0.00089126874882966057) + +[00927] +centroid = (0.32093032255196885, -1.1531756538003604) +station = ('tjig', 0.0011773704116271749) +zone = ('prz001', 0.00052251848062754387) + +[00934] +centroid = (0.32133803146523476, -1.1540855986591803) +station = ('tjig', 0.00078545021461657715) +zone = ('prz001', 0.00082606604734898571) + +[00936] +centroid = (0.32106139677879364, -1.1532048706120388) +station = ('tjig', 0.0010462502054077074) +zone = ('prz001', 0.00058707047612687011) + +[00949] +centroid = (0.32167632863414886, -1.1556319429231547) +station = ('tjig', 0.0018983279053341967) +zone = ('prz001', 0.0021669935742331023) + +[00950] +centroid = (0.3222522174741369, -1.1560111331564429) +station = ('tjig', 0.0022404772010100201) +zone = ('prz001', 0.0027790873429653323) + +[00951] +centroid = (0.32162107151003066, -1.1563467599716013) +station = ('tjig', 0.0025763510244608103) +zone = ('prz001', 0.002760702955050849) + +[00952] +centroid = (0.32161951816699641, -1.155094364060248) +station = ('tjig', 0.0014141439751966798) +zone = ('prz001', 0.0017036721752536163) + +[00953] +centroid = (0.32045513920982094, -1.1563072631706288) +station = ('tjig', 0.0029537286307907778) +zone = ('prz001', 0.0025477096309626064) + +[00956] +centroid = (0.31973627299750945, -1.1548650103432432) +station = ('tjig', 0.0025468614406402032) +zone = ('prz001', 0.0014771672890633307) + +[00957] +centroid = (0.32059137961123158, -1.1551931671492031) +station = ('tjig', 0.0020323902673025193) +zone = ('prz001', 0.0014846353520843146) + +[00959] +centroid = (0.32094726969900572, -1.1546225492035562) +station = ('tjig', 0.0014020512226531709) +zone = ('prz001', 0.0009929800929205845) + +[00960] +centroid = (0.32143587462310158, -1.1544619090992028) +station = ('tjig', 0.00095305988884498462) +zone = ('prz001', 0.0011252788388979931) + +[00961] +centroid = (0.32135403613447555, -1.1548000317351914) +station = ('tjig', 0.0012644816554515958) +zone = ('prz001', 0.0013234909774348822) + +[00962] +centroid = (0.32187883918725768, -1.154454264557079) +station = ('tjig', 0.00076288973024766604) +zone = ('prz001', 0.001470030443421428) + +[00965] +centroid = (0.32172975316255237, -1.1539201065395059) +station = ('tjig', 0.0003742006293529943) +zone = ('prz001', 0.0011294985216007685) + +[00966] +centroid = (0.32116739062426725, -1.1539695342639225) +station = ('tjig', 0.0008945670302096465) +zone = ('prz001', 0.00062303712948797438) + +[00968] +centroid = (0.32124664602560032, -1.1536839809450039) +station = ('tjig', 0.00076686839740664468) +zone = ('prz001', 0.00061439022722070951) + +[00969] +centroid = (0.32058315911045465, -1.1538033440125477) +station = ('tjig', 0.0014363062687510661) +zone = ('prz001', 0.00017279378895979951) + +[00971] +centroid = (0.31972393351969791, -1.1539980005840225) +station = ('tjig', 0.0023113282524559429) +zone = ('prz001', 0.00097538433150567256) + +[00976] +centroid = (0.32003069258902839, -1.1518135813988115) +station = ('tjsj', 0.0019849961288062605) +zone = ('prz001', 0.001826205764844736) + +[00979] +centroid = (0.32191531656862443, -1.1524431565665909) +station = ('tjsj', 0.00050835178257957231) +zone = ('prz001', 0.0017051887720182434) + +[00982] +centroid = (0.32133712389402369, -1.1517784653742615) +station = ('tjsj', 0.00068883411783410189) +zone = ('prz001', 0.0018918113095762982) + +[00983] +centroid = (0.32145486380536326, -1.1515171023187751) +station = ('tjsj', 0.00067523350050286497) +zone = ('prz001', 0.0021658466926566724) + +[00985] +centroid = (0.32129047124311794, -1.1509911124421017) +station = ('tjsj', 0.0011377640835022759) +zone = ('prz001', 0.0025881511818424815) + +[00987] +centroid = (0.32006128821081586, -1.15088901068086) +station = ('tjsj', 0.0021822574326179397) +zone = ('prz001', 0.0026634440821029733) + +[01001] +centroid = (0.73412618446697153, -1.2676025113405922) +station = ('kbaf', 0.0021507366349342413) +zone = ('maz011', 0.0020222951932420889) + +[01002] +centroid = (0.73939088288914978, -1.2646395182293588) +station = ('kcef', 0.0030206373909974823) +zone = ('maz010', 0.0012668750737306383) + +[01003] +centroid = (0.73984404017613759, -1.2657844716719597) +station = ('kcef', 0.0033172345402670356) +zone = ('maz010', 0.0014980013005191104) + +[01005] +centroid = (0.74034856250301162, -1.2584975475119582) +station = ('kore', 0.0034570061260551428) +zone = ('maz004', 0.0017682487215942289) + +[01007] +centroid = (0.7379079289836078, -1.263626546584794) +station = ('kcef', 0.0022020482273593552) +zone = ('maz010', 0.0015387151298538212) + +[01008] +centroid = (0.73638663019439943, -1.2733455346975719) +station = ('kbaf', 0.0031434773826076192) +zone = ('maz009', 0.00052564875594084267) + +[01009] +centroid = (0.73673784279977828, -1.262596191460879) +station = ('kcef', 0.0024897150956451975) +zone = ('maz011', 0.002531763048159988) + +[01010] +centroid = (0.73529808579322309, -1.2602202572968468) +station = ('korh', 0.0049904426167335985) +zone = ('maz011', 0.003727723025354057) + +[01011] +centroid = (0.73827917796879949, -1.2735443451526667) +station = ('kbaf', 0.0040058963471418518) +zone = ('maz008', 0.0020168436245690505) + +[01012] +centroid = (0.73959068818191809, -1.2716153374501924) +station = ('kbaf', 0.0040762780578235645) +zone = ('maz008', 0.00027444015480389917) + +[01013] +centroid = (0.73574187066212771, -1.2671579759801093) +station = ('kcef', 0.0011945119982358786) +zone = ('maz011', 0.0015448063639513533) + +[01020] +centroid = (0.73605243454922753, -1.2664429320388597) +station = ('kcef', 0.00060242935420034226) +zone = ('maz011', 0.0012778815593417255) + +[01022] +centroid = (0.73648951735380452, -1.2661091901792934) +station = ('kcef', 0.00012752429603208183) +zone = ('maz011', 0.0014984076646473289) + +[01026] +centroid = (0.74116270623918934, -1.272663843998328) +station = ('kaqw', 0.0051905187776343283) +zone = ('maz008', 0.0014783680862656171) + +[01027] +centroid = (0.73818714675734187, -1.2697597906559346) +station = ('kbaf', 0.0022857288322859367) +zone = ('maz008', 0.0022289233359609685) + +[01028] +centroid = (0.73407874641790238, -1.2653852450588585) +station = ('kcef', 0.002485176083648176) +zone = ('maz011', 0.0010627894952296827) + +[01029] +centroid = (0.73641366534451291, -1.2748695911069985) +station = ('kbaf', 0.0042675258960949971) +zone = ('maz009', 0.0015081238550486214) + +[01030] +centroid = (0.73431106719463524, -1.2686269847049276) +station = ('kbaf', 0.0016806566962467881) +zone = ('maz011', 0.0026440934814355708) + +[01031] +centroid = (0.73878736548710267, -1.2600961294804447) +station = ('kore', 0.0043499909425910996) +zone = ('maz004', 0.0035766355127080829) + +[01032] +centroid = (0.74102513938754722, -1.2708576551153166) +station = ('kbaf', 0.0052334786894649918) +zone = ('maz008', 0.0013829225517884814) + +[01033] +centroid = (0.73731360946671864, -1.2653643011078346) +station = ('kcef', 0.00089494957513248517) +zone = ('maz010', 0.0010543742249484568) + +[01034] +centroid = (0.73475232133612456, -1.2734144228431481) +station = ('kbaf', 0.0033839617190240057) +zone = ('maz009', 0.0012620496670903312) + +[01035] +centroid = (0.73926007046171283, -1.2665605846837364) +station = ('kcef', 0.0027687848796546315) +zone = ('maz010', 0.0011451256013073991) + +[01036] +centroid = (0.73413690078857874, -1.2639202680446122) +station = ('kcef', 0.0028244677359305697) +zone = ('maz011', 0.001399956878267942) + +[01037] +centroid = (0.73946041680654928, -1.2599306722673558) +station = ('kore', 0.0037345766106526121) +zone = ('maz004', 0.0031042510567281831) + +[01038] +centroid = (0.73976646029088655, -1.2672299708117538) +station = ('kcef', 0.0033740632180900292) +zone = ('maz010', 0.0018498301525526509) + +[01039] +centroid = (0.74009426803099598, -1.2686610186253418) +station = ('kcef', 0.0040921009429322986) +zone = ('maz008', 0.0023322796173086157) + +[01040] +centroid = (0.73673237991921947, -1.2678498943087699) +station = ('kbaf', 0.0012400493705800699) +zone = ('maz010', 0.0023124803575119476) + +[01050] +centroid = (0.73804301746771206, -1.2718160677674644) +station = ('kbaf', 0.0028816545895942111) +zone = ('maz008', 0.0017863904260552006) + +[01053] +centroid = (0.73925691141576677, -1.2690914517254683) +station = ('kbaf', 0.0033099830037224428) +zone = ('maz008', 0.0020803875787846655) + +[01054] +centroid = (0.7412341425654736, -1.265093216568415) +station = ('kore', 0.0032038498498863778) +zone = ('maz003', 0.0016192804888354793) + +[01056] +centroid = (0.73633460192939748, -1.2646494840593878) +station = ('kcef', 0.00097963784704592082) +zone = ('maz011', 0.0012762744636292365) + +[01057] +centroid = (0.73467184420431497, -1.2622481902613238) +station = ('kcef', 0.0033111040863531781) +zone = ('maz011', 0.0022687701193129764) + +[01060] +centroid = (0.73864930994326994, -1.2676428982594834) +station = ('kcef', 0.0024645676591980919) +zone = ('maz010', 0.0015264009804947132) + +[01062] +centroid = (0.73876844611801107, -1.2689228354664335) +station = ('kbaf', 0.002826078305224728) +zone = ('maz008', 0.0023752224069047089) + +[01063] +centroid = (0.73860382666296298, -1.2677815123086766) +station = ('kcef', 0.0024802477612946741) +zone = ('maz010', 0.0016193637086636386) + +[01066] +centroid = (0.74014008292386091, -1.2680692821957456) +station = ('kcef', 0.0039379613216412035) +zone = ('maz010', 0.0025456791577368326) + +[01068] +centroid = (0.73916198295775071, -1.2574093347233397) +station = ('korh', 0.0027226833426488399) +zone = ('maz004', 0.0019918481176904156) + +[01069] +centroid = (0.73631590945310854, -1.2620208611262518) +station = ('kcef', 0.0029154524253287967) +zone = ('maz011', 0.0026631813113509885) + +[01070] +centroid = (0.74208687553141284, -1.272676933967718) +station = ('kaqw', 0.004490046313653415) +zone = ('maz008', 0.0023486614438992218) + +[01071] +centroid = (0.73583185983836052, -1.2718886734643473) +station = ('kbaf', 0.0020367816699804293) +zone = ('maz009', 0.00078122031897881114) + +[01072] +centroid = (0.74101388201387197, -1.2639193430201083) +station = ('kore', 0.0026906448898579923) +zone = ('maz003', 0.0018359119465108788) + +[01073] +centroid = (0.73699929312172696, -1.2695802137291969) +station = ('kbaf', 0.0011003651794529536) +zone = ('maz008', 0.0032712553804382215) + +[01074] +centroid = (0.73980323437822593, -1.2582642318975517) +station = ('korh', 0.0036057905484744865) +zone = ('maz004', 0.0018843351513329711) + +[01075] +centroid = (0.73751236756193583, -1.2667732879596771) +station = ('kcef', 0.0011588141145725214) +zone = ('maz010', 0.0011972286995442865) + +[01077] +centroid = (0.73395580542539185, -1.2702044307361728) +station = ('kbaf', 0.0021407823294813475) +zone = ('maz009', 0.0028471006603804049) + +[01079] +centroid = (0.7364839846600757, -1.2623446371557892) +station = ('kcef', 0.0026679565494757496) +zone = ('maz011', 0.0025353630557343526) + +[01080] +centroid = (0.73621858989401745, -1.2630189276590047) +station = ('kcef', 0.0021904093207731016) +zone = ('maz011', 0.0019715055203644643) + +[01081] +centroid = (0.73410839956189367, -1.2607283051888096) +station = ('kcef', 0.0045639136709477749) +zone = ('maz011', 0.0035033430823979725) + +[01082] +centroid = (0.73816140315087486, -1.261499531278681) +station = ('kcef', 0.0036737625672208824) +zone = ('maz011', 0.0041030272599563425) + +[01083] +centroid = (0.73659250923296471, -1.2600334547070056) +station = ('korh', 0.0043780694814088373) +zone = ('maz004', 0.0051868279970833904) + +[01084] +centroid = (0.73988643422366851, -1.2720349669622493) +station = ('kbaf', 0.0044820654656650971) +zone = ('maz008', 0.00018356872165830847) + +[01085] +centroid = (0.73571741859930728, -1.2701040568508906) +station = ('kbaf', 0.00074694524904014208) +zone = ('maz009', 0.00210747758991398) + +[01086] +centroid = (0.73531499803367495, -1.2704943997380991) +station = ('kbaf', 0.0011832883610862128) +zone = ('maz009', 0.001916653505762776) + +[01088] +centroid = (0.73987489759731284, -1.2679205103303055) +station = ('kcef', 0.0036509706497619221) +zone = ('maz010', 0.0022839749342471599) + +[01089] +centroid = (0.73522781883753774, -1.2679770589980701) +station = ('kbaf', 0.0011259069621237516) +zone = ('maz011', 0.0020310306916518518) + +[01092] +centroid = (0.73638701416683483, -1.2607404701336959) +station = ('kcef', 0.0038587554853536524) +zone = ('maz011', 0.0035634743925640486) + +[01093] +centroid = (0.74063257993218867, -1.2680683222646567) +station = ('kcef', 0.0043935982098043461) +zone = ('maz008', 0.0028689442621963714) + +[01094] +centroid = (0.73930590280787023, -1.2590246718526454) +station = ('korh', 0.0038416533013546296) +zone = ('maz004', 0.0026335850981146504) + +[01095] +centroid = (0.73526056121430527, -1.2640966684721111) +station = ('kcef', 0.001867293908337331) +zone = ('maz011', 0.00085820704875735811) + +[01096] +centroid = (0.73996968642898875, -1.2699639069119553) +station = ('kbaf', 0.0040678612805771491) +zone = ('maz008', 0.0013623344711332095) + +[01097] +centroid = (0.73614563513128406, -1.2711688822275322) +station = ('kbaf', 0.0015128431969392041) +zone = ('maz009', 0.0013166075095115894) + +[01098] +centroid = (0.7399203808776198, -1.2730975234108637) +station = ('kbaf', 0.0049332436853349931) +zone = ('maz008', 0.00096353136588829709) + +[01103] +centroid = (0.73485527830869968, -1.2669698818466217) +station = ('kcef', 0.0018379140501024013) +zone = ('maz011', 0.0013125545077579974) + +[01104] +centroid = (0.73537718411492348, -1.2665047690542577) +station = ('kcef', 0.0012240884724419141) +zone = ('maz011', 0.00096739202957641995) + +[01105] +centroid = (0.73469996145856464, -1.2667177166762935) +station = ('kcef', 0.0019165043109897978) +zone = ('maz011', 0.0011788345466207928) + +[01106] +centroid = (0.73386845169632953, -1.2666051603928323) +station = ('kbdl', 0.0024684985153369918) +zone = ('maz011', 0.0016221365582871864) + +[01107] +centroid = (0.73515118143008273, -1.2672323968194141) +station = ('kbaf', 0.0016264078742517208) +zone = ('maz011', 0.0014767671262648919) + +[01108] +centroid = (0.73444662691763762, -1.2664247108014688) +station = ('kcef', 0.0021124199646999566) +zone = ('maz011', 0.0011163101869591028) + +[01109] +centroid = (0.73512699116665015, -1.2662315901197359) +station = ('kcef', 0.0014179040902255399) +zone = ('maz011', 0.00073442359791691986) + +[01118] +centroid = (0.73467421785209774, -1.265815835238618) +station = ('kcef', 0.0018572157647003009) +zone = ('maz011', 0.0006284402858238575) + +[01119] +centroid = (0.73521956343017592, -1.2655593591050376) +station = ('kcef', 0.0013402970450438415) +zone = ('maz011', 0.00025004946875594418) + +[01128] +centroid = (0.73464915492403904, -1.2651740776726599) +station = ('kcef', 0.0019648747207425474) +zone = ('maz011', 0.00048958134638030747) + +[01129] +centroid = (0.73511630975162789, -1.2651438136634303) +station = ('kcef', 0.001532541299081686) +zone = ('maz011', 7.5156145177322106e-05) + +[01151] +centroid = (0.73568874283969699, -1.2655230737098884) +station = ('kcef', 0.0008966238347448088) +zone = ('maz011', 0.00059069668780616232) + +[01199] +centroid = (0.73514250714370033, -1.2671870182588623) +station = ('kbaf', 0.0016600235176848128) +zone = ('maz011', 0.0014430515795129189) + +[01201] +centroid = (0.74086147986358775, -1.2788677913574671) +station = ('kpsf', 0.00028803048252463428) +zone = ('maz001', 0.0025032579482412959) + +[01220] +centroid = (0.74392563225826647, -1.2761277815114687) +station = ('kaqw', 0.0014762999953932406) +zone = ('maz001', 0.0012011958592829035) + +[01222] +centroid = (0.73406284646841669, -1.2797133684734734) +station = ('kpsf', 0.0065577624218712298) +zone = ('maz025', 0.0028920517577957173) + +[01223] +centroid = (0.73848764009465762, -1.2760123803413268) +station = ('kpsf', 0.0030750347649874639) +zone = ('maz025', 0.0024795028246637815) + +[01224] +centroid = (0.74199803827248645, -1.2775041132530063) +station = ('kpsf', 0.0017962277192074328) +zone = ('maz001', 0.00098992256571307801) + +[01225] +centroid = (0.74287082507153124, -1.2767705862749781) +station = ('kaqw', 0.0023906914280836578) +zone = ('maz001', 6.2932880490916044e-05) + +[01226] +centroid = (0.74143539648152101, -1.2764478225364069) +station = ('kpsf', 0.0020833313810910171) +zone = ('maz001', 0.0013934463346363536) + +[01229] +centroid = (0.73786129378599452, -1.2799528451001396) +station = ('kpsf', 0.0028227061887336562) +zone = ('maz025', 0.0015220534498787109) + +[01230] +centroid = (0.73605667569930999, -1.2797533016067588) +station = ('kpsf', 0.0045756093506320022) +zone = ('maz025', 0.0012080763005856878) + +[01235] +centroid = (0.74055402266255632, -1.2752086387674908) +station = ('kpsf', 0.0028248873928055397) +zone = ('maz001', 0.0025245929753645539) + +[01236] +centroid = (0.73768951848101316, -1.2806945576723596) +station = ('kpsf', 0.0031594900887509793) +zone = ('maz025', 0.0018676527835258209) + +[01237] +centroid = (0.74259951363930865, -1.2787684123098586) +station = ('kpsf', 0.002007813663268423) +zone = ('maz001', 0.0015094356387443204) + +[01238] +centroid = (0.73823065781559405, -1.2781071943227404) +station = ('kpsf', 0.0024679378705317703) +zone = ('maz025', 0.0014514103047049318) + +[01240] +centroid = (0.73945868893058986, -1.2787986937723805) +station = ('kpsf', 0.0011559880616351481) +zone = ('maz025', 0.002664903801062686) + +[01242] +centroid = (0.73886304296346916, -1.2784396969985381) +station = ('kpsf', 0.001793170746143041) +zone = ('maz025', 0.0020584829979822788) + +[01243] +centroid = (0.73914906752128595, -1.2745111877451014) +station = ('kpsf', 0.003643378316705412) +zone = ('maz008', 0.0021163151994915553) + +[01244] +centroid = (0.73509941496446862, -1.2785845244198684) +station = ('kpsf', 0.0055120715107375142) +zone = ('maz025', 0.0017072981082070409) + +[01245] +centroid = (0.73630018403654818, -1.2779842707835225) +station = ('kpsf', 0.0043708774432574269) +zone = ('maz025', 0.00062092896953416289) + +[01247] +centroid = (0.74522831110537002, -1.2755580013238628) +station = ('kaqw', 0.0010595489504721055) +zone = ('maz001', 0.0025678655847453484) + +[01253] +centroid = (0.73664558469551777, -1.2760663110152135) +station = ('kpsf', 0.0045241514199036914) +zone = ('maz025', 0.001789565083791372) + +[01254] +centroid = (0.73970577519279457, -1.2804693927455597) +station = ('kpsf', 0.001386759301127774) +zone = ('nyz061', 0.0031260322850331446) + +[01255] +centroid = (0.7349144449703422, -1.2761604366217734) +station = ('kbaf', 0.0053035639715853485) +zone = ('maz025', 0.0025517131467852937) + +[01256] +centroid = (0.74340843884102303, -1.2744799114449057) +station = ('kaqw', 0.0026164512803572588) +zone = ('maz001', 0.0017676973833710542) + +[01257] +centroid = (0.73452609175848094, -1.2805041247976743) +station = ('kpsf', 0.0061717602462213013) +zone = ('maz025', 0.0027312863385095748) + +[01258] +centroid = (0.73494558164419777, -1.282169238717247) +station = ('kpsf', 0.006112715949141285) +zone = ('nyz061', 0.0027101194332888857) + +[01259] +centroid = (0.73435546837080601, -1.2781809868435148) +station = ('kpsf', 0.0062778490169585694) +zone = ('maz025', 0.0024587809284987707) + +[01260] +centroid = (0.73819915462259555, -1.2800688571355197) +station = ('kpsf', 0.0025206540238632284) +zone = ('maz025', 0.0018275327910086696) + +[01262] +centroid = (0.73813817281853089, -1.2796616020078591) +station = ('kpsf', 0.0025062795300849266) +zone = ('maz025', 0.001597588064161727) + +[01264] +centroid = (0.737080293852312, -1.2776233890540876) +station = ('kpsf', 0.0036725603110230602) +zone = ('maz025', 0.00068678560445277514) + +[01266] +centroid = (0.7384896123167124, -1.280859159674115) +station = ('kpsf', 0.0025049545031778629) +zone = ('maz025', 0.0024408150813315589) + +[01267] +centroid = (0.74476019634669266, -1.2784009855957288) +station = ('kaqw', 0.0011433034787244984) +zone = ('maz001', 0.002299889865827786) + +[01270] +centroid = (0.74203147878095466, -1.2746343032705372) +station = ('kpsf', 0.0035472517747976821) +zone = ('maz001', 0.0017367138598849518) + +[01301] +centroid = (0.74397732891071067, -1.2671357404854386) +station = ('kore', 0.0042725771551960657) +zone = ('maz002', 0.0024353153555124302) + +[01330] +centroid = (0.74200835316836578, -1.2709752379470236) +station = ('kaqw', 0.0054956902925712703) +zone = ('maz002', 0.0018434253138833957) + +[01331] +centroid = (0.74285415717717462, -1.259972036570628) +station = ('kore', 0.0011225442402983464) +zone = ('maz004', 0.0033341710870487202) + +[01337] +centroid = (0.74506896254466293, -1.2667992235523617) +station = ('kore', 0.0044192179309181451) +zone = ('maz003', 0.0028263403644424394) + +[01338] +centroid = (0.74303294870574899, -1.2710260444815491) +station = ('kaqw', 0.0049244106413524093) +zone = ('maz002', 0.00088859544082291132) + +[01339] +centroid = (0.74357616498213974, -1.2721642784065297) +station = ('kaqw', 0.0039326605761216202) +zone = ('maz002', 0.0012920515875225551) + +[01340] +centroid = (0.74516354193682854, -1.269047731227706) +station = ('kaqw', 0.0058446429227885519) +zone = ('maz002', 0.0016970684788806707) + +[01341] +centroid = (0.74171147266260151, -1.2690186714956602) +station = ('kcef', 0.0056583783417358076) +zone = ('maz002', 0.0023431807095164849) + +[01342] +centroid = (0.74253093965299788, -1.267274110188537) +station = ('kore', 0.0042951051856406153) +zone = ('maz002', 0.0026566676056081285) + +[01343] +centroid = (0.74451600733104617, -1.2737226305357578) +station = ('kaqw', 0.0025198259322135436) +zone = ('maz002', 0.002518183274464222) + +[01344] +centroid = (0.74374444962861708, -1.2640796166053192) +station = ('kore', 0.0020475938567685618) +zone = ('maz003', 0.0010008686903103452) + +[01346] +centroid = (0.74513821720938211, -1.2710030934018854) +station = ('kaqw', 0.004408451117748219) +zone = ('maz002', 0.0013930831942768735) + +[01347] +centroid = (0.74279980762426756, -1.2656910092905156) +station = ('kore', 0.003108678771125797) +zone = ('maz003', 0.00086587842009809904) + +[01349] +centroid = (0.74286555417719013, -1.2650516777322174) +station = ('kore', 0.0026345046991055141) +zone = ('maz003', 0.00040094672846417451) + +[01350] +centroid = (0.7457403034414426, -1.2738345934072735) +station = ('kaqw', 0.0023752054226139226) +zone = ('maz002', 0.0031575129108686703) + +[01351] +centroid = (0.74246096940328532, -1.2657422521573538) +station = ('kore', 0.0031880408772166392) +zone = ('maz003', 0.00096400441390895916) + +[01354] +centroid = (0.74393046682029462, -1.2655145565031389) +station = ('kore', 0.0031073510841191586) +zone = ('maz003', 0.0013516823947733413) + +[01355] +centroid = (0.74104100443044785, -1.2623481103610006) +station = ('kore', 0.0020757518813392627) +zone = ('maz003', 0.0023736499541309182) + +[01360] +centroid = (0.74485575312323926, -1.2645586920316989) +station = ('kore', 0.0029182442262126762) +zone = ('maz003', 0.0020595769601992973) + +[01364] +centroid = (0.74377471363784664, -1.2616968058440339) +station = ('kore', 0.00077551007554074107) +zone = ('maz003', 0.0022942740604078404) + +[01366] +centroid = (0.74133943827924631, -1.2599962617406457) +station = ('kore', 0.0020015891951309858) +zone = ('maz004', 0.0027897638133386263) + +[01367] +centroid = (0.74517760929059962, -1.2725046874238388) +station = ('kaqw', 0.0033041472869525328) +zone = ('maz002', 0.0020458201144496328) + +[01368] +centroid = (0.74489703016004905, -1.2597251597479335) +station = ('kore', 0.002281902215465992) +zone = ('nhz011', 0.0042927435542186969) + +[01370] +centroid = (0.74339398751481656, -1.2693245753536573) +station = ('kcef', 0.007304515892529403) +zone = ('maz002', 0.00091807511890285487) + +[01373] +centroid = (0.74130873793770369, -1.2673815177507046) +station = ('kcef', 0.0048962462029813088) +zone = ('maz003', 0.0025837752131831846) + +[01375] +centroid = (0.74118481956081228, -1.2661814817169108) +station = ('kore', 0.0039189697497040979) +zone = ('maz003', 0.0020261723006712684) + +[01376] +centroid = (0.7434278818088903, -1.2663236736910708) +station = ('kore', 0.003589835908891479) +zone = ('maz003', 0.0014736418517095006) + +[01378] +centroid = (0.74479365430845335, -1.2628017912467639) +station = ('kore', 0.0020264289242491718) +zone = ('maz003', 0.0023620610801468101) + +[01379] +centroid = (0.74274772699938807, -1.2637431345788273) +station = ('kore', 0.0016880057247001951) +zone = ('maz003', 0.000570985429990612) + +[01420] +centroid = (0.74324715296484622, -1.2534407003504) +station = ('kfit', 0.00097298613919922464) +zone = ('maz026', 0.0022243391013892456) + +[01430] +centroid = (0.74450518628968376, -1.2553008722671755) +station = ('kafn', 0.0026818078264583432) +zone = ('maz004', 0.003613082195425589) + +[01431] +centroid = (0.74484182539580845, -1.2537140363645547) +station = ('kfit', 0.0023833705520191206) +zone = ('maz026', 0.002312528526258639) + +[01432] +centroid = (0.74292685014052018, -1.2492217683094315) +station = ('kfit', 0.0023369943126941364) +zone = ('maz026', 0.0016623336605190863) + +[01434] +centroid = (0.7424471463956096, -1.2498584295139741) +station = ('kfit', 0.00186798947052965) +zone = ('maz026', 0.001843883188777924) + +[01436] +centroid = (0.74356914875854674, -1.2581798452282178) +station = ('kore', 0.0024921961204690552) +zone = ('maz004', 0.0029714204209758521) + +[01438] +centroid = (0.74285127738390888, -1.2571851297276286) +station = ('kfit', 0.0035473103238880788) +zone = ('maz004', 0.0020127812204748987) + +[01440] +centroid = (0.74327492115324556, -1.2564287040298141) +station = ('kfit', 0.0030453613264793326) +zone = ('maz004', 0.0023183471843897753) + +[01450] +centroid = (0.74371551206961883, -1.2490495741254297) +station = ('kfit', 0.0026621907554713296) +zone = ('maz026', 0.0013012250017624544) + +[01451] +centroid = (0.74179823297971814, -1.2491007471790982) +station = ('kfit', 0.0025665418281728184) +zone = ('maz005', 0.0025181214563536453) + +[01452] +centroid = (0.74158338294879766, -1.2566872920117895) +station = ('korh', 0.0042688528983881062) +zone = ('maz004', 0.00070172557296425465) + +[01453] +centroid = (0.74211329981628804, -1.2525019401056297) +station = ('kfit', 0.00056594923449712706) +zone = ('maz026', 0.0024595145065940574) + +[01460] +centroid = (0.7423920463511241, -1.2477458131741899) +station = ('kbed', 0.0027339668011835765) +zone = ('maz005', 0.0019084809610207555) + +[01462] +centroid = (0.74320669623278501, -1.2517582378580625) +station = ('kfit', 0.00070220804528668484) +zone = ('maz026', 0.0012499006335946472) + +[01463] +centroid = (0.74474321429307067, -1.249705625937962) +station = ('kash', 0.0022431495283583036) +zone = ('maz026', 0.00092032437853852153) + +[01464] +centroid = (0.74305043690485395, -1.2503710850751624) +station = ('kfit', 0.0015242074766140046) +zone = ('maz026', 0.0011590008679795887) + +[01467] +centroid = (0.74163171111578541, -1.249818112408253) +station = ('kfit', 0.0021526660427323321) +zone = ('maz026', 0.002633497623172049) + +[01468] +centroid = (0.74251135705879046, -1.2578299067131926) +station = ('kore', 0.0027358229650526304) +zone = ('maz004', 0.0019399116664971002) + +[01469] +centroid = (0.74464575510763942, -1.2513196191637439) +station = ('kfit', 0.0021216806205997677) +zone = ('maz026', 0.00064908018906672811) + +[01473] +centroid = (0.74271788186917898, -1.2549866780952315) +station = ('kfit', 0.0019240432380294103) +zone = ('maz004', 0.0019889294273300485) + +[01474] +centroid = (0.74472649403883662, -1.2523217523136538) +station = ('kfit', 0.0020553417385973604) +zone = ('maz026', 0.0013106908792816098) + +[01475] +centroid = (0.74469987776774371, -1.2576082324448969) +station = ('kafn', 0.0024090749128884178) +zone = ('maz004', 0.003871123585969043) + +[01501] +centroid = (0.73650639468767132, -1.2539493591076012) +station = ('korh', 0.0012157814675061724) +zone = ('maz012', 0.001276079263047131) + +[01503] +centroid = (0.73975656427402769, -1.2502472190581482) +station = ('kfit', 0.0033108637809143083) +zone = ('maz005', 0.0035490268234602816) + +[01504] +centroid = (0.73373626045878348, -1.2484760065733469) +station = ('ksfz', 0.0021930980581164141) +zone = ('riz001', 0.002842745607848491) + +[01505] +centroid = (0.73923505989353178, -1.251683066527179) +station = ('korh', 0.0024805578401884288) +zone = ('maz012', 0.0036257297299276273) + +[01506] +centroid = (0.73621117224469645, -1.2585128191429131) +station = ('korh', 0.0034468480897228461) +zone = ('maz004', 0.0050353794333986802) + +[01507] +centroid = (0.735375892571277, -1.2560789924075921) +station = ('korh', 0.0026615926401918266) +zone = ('maz012', 0.0025689767178803261) + +[01510] +centroid = (0.74022707013378031, -1.2512266280211974) +station = ('kfit', 0.0025871508172443962) +zone = ('maz004', 0.0037791126707843645) + +[01515] +centroid = (0.73669792711978521, -1.2573382998227836) +station = ('korh', 0.0024527492184694705) +zone = ('maz004', 0.0043377266808379104) + +[01516] +centroid = (0.73396456697823687, -1.2523128511344686) +station = ('korh', 0.0040111156875142382) +zone = ('maz012', 0.0017313452886089117) + +[01518] +centroid = (0.73526317920818318, -1.2587108267465519) +station = ('korh', 0.0040658768026395333) +zone = ('ctz004', 0.0054643671999076923) + +[01519] +centroid = (0.73658835534934497, -1.2510474525201878) +station = ('korh', 0.0026559260630193348) +zone = ('maz012', 0.0014890360487495933) + +[01520] +centroid = (0.73890908474913675, -1.2540299933190433) +station = ('korh', 0.0012340829701241146) +zone = ('maz004', 0.0026257612524780202) + +[01521] +centroid = (0.73385506502096676, -1.2597812546300926) +station = ('kijd', 0.0051802674884228964) +zone = ('ctz003', 0.0039146652891555835) + +[01522] +centroid = (0.73959433592005475, -1.2543224406885076) +station = ('korh', 0.0019018611465855117) +zone = ('maz004', 0.0019723766896362592) + +[01523] +centroid = (0.74146506707880488, -1.2509736949059984) +station = ('kfit', 0.0015884596110292137) +zone = ('maz026', 0.0027263846022042614) + +[01524] +centroid = (0.73739468001047381, -1.2552271321062787) +station = ('korh', 0.00074127976449097992) +zone = ('maz012', 0.0025731369242208966) + +[01525] +centroid = (0.73490219275899327, -1.2501883840090635) +station = ('ksfz', 0.0037250697393987147) +zone = ('maz012', 0.0019761687326509559) + +[01527] +centroid = (0.73639361151140736, -1.2527563043908152) +station = ('korh', 0.0017350961876462915) +zone = ('maz012', 0.00071995501143286159) + +[01529] +centroid = (0.73367780938213423, -1.2492853681073741) +station = ('ksfz', 0.002330129918899524) +zone = ('riz001', 0.0026018330177037708) + +[01531] +centroid = (0.73860806781304533, -1.2589201964436212) +station = ('korh', 0.0035310260073085228) +zone = ('maz004', 0.0030698654986176179) + +[01532] +centroid = (0.73868166834760185, -1.250462714860892) +station = ('korh', 0.0030127777549604821) +zone = ('maz012', 0.0034075148083932139) + +[01534] +centroid = (0.73551794491909683, -1.2504123097520945) +station = ('korh', 0.003614492039941936) +zone = ('maz012', 0.0016584073876581692) + +[01535] +centroid = (0.73770815859742456, -1.2578042678264809) +station = ('korh', 0.0025858980181036871) +zone = ('maz004', 0.0034491052074443751) + +[01536] +centroid = (0.73707538947711404, -1.2512726523535727) +station = ('korh', 0.0023314558804358762) +zone = ('maz012', 0.0017245526209262931) + +[01537] +centroid = (0.7358127659363437, -1.2548402624242818) +station = ('korh', 0.0019203282860063124) +zone = ('maz012', 0.0016376988635050272) + +[01540] +centroid = (0.7350657824697826, -1.2541476808705054) +station = ('korh', 0.0026294648598707156) +zone = ('maz012', 0.0012761429717019356) + +[01541] +centroid = (0.74096426230323764, -1.254499731233925) +station = ('kfit', 0.0023167303525566873) +zone = ('maz004', 0.0012910917100451909) + +[01542] +centroid = (0.7366031382881093, -1.255047188660398) +station = ('korh', 0.001218459200637292) +zone = ('maz012', 0.0020100404995200311) + +[01543] +centroid = (0.73982721520214834, -1.2561224336526742) +station = ('korh', 0.0025204255211724821) +zone = ('maz004', 0.0011370019293207674) + +[01545] +centroid = (0.73800840758864517, -1.2516493991259081) +station = ('korh', 0.0019937756693458324) +zone = ('maz012', 0.0024419017040889831) + +[01550] +centroid = (0.73407970634899089, -1.2572311715132962) +station = ('korh', 0.0042119841182157369) +zone = ('maz012', 0.0037639926595616777) + +[01560] +centroid = (0.73609950607915386, -1.2509511801586477) +station = ('korh', 0.0029537456794801065) +zone = ('maz012', 0.0013195157700875725) + +[01561] +centroid = (0.74078702411769759, -1.2511494495616742) +station = ('kfit', 0.002090119715381325) +zone = ('maz026', 0.0034130764296518121) + +[01562] +centroid = (0.73735293173476613, -1.2564951138078526) +station = ('korh', 0.0016525779991174896) +zone = ('maz004', 0.0036119638338802228) + +[01564] +centroid = (0.74085603443632153, -1.2527283093096133) +station = ('kfit', 0.0018340338758383249) +zone = ('maz004', 0.0026002958451394964) + +[01566] +centroid = (0.73483970997177184, -1.2580253835894162) +station = ('korh', 0.0039645583463182284) +zone = ('maz012', 0.0040824058725645413) + +[01568] +centroid = (0.73611924575299392, -1.2497183668415015) +station = ('korh', 0.0037466242104380399) +zone = ('maz012', 0.0022088159070036396) + +[01569] +centroid = (0.73401378526314309, -1.250201927764059) +station = ('ksfz', 0.0029674588087944404) +zone = ('maz012', 0.0024578277477239614) + +[01570] +centroid = (0.73386787573767631, -1.2539658699223251) +station = ('korh', 0.0038331176990167022) +zone = ('maz012', 0.0020615623969542727) + +[01571] +centroid = (0.73397688900275593, -1.2555039064190598) +station = ('korh', 0.0038195599215774521) +zone = ('maz012', 0.0027233824551034175) + +[01581] +centroid = (0.73772320333557673, -1.2498880302980879) +station = ('korh', 0.0032724215930382181) +zone = ('maz012', 0.0028860494678665362) + +[01583] +centroid = (0.73948582880045832, -1.2528852318626602) +station = ('korh', 0.0020798635199194581) +zone = ('maz004', 0.0028886473328096126) + +[01585] +centroid = (0.73724096886325075, -1.2594757521978235) +station = ('korh', 0.0038501561545890147) +zone = ('maz004', 0.0044180171351454155) + +[01588] +centroid = (0.73511920699818623, -1.2509092748033075) +station = ('korh', 0.0036013601276626513) +zone = ('maz012', 0.0013991873637468602) + +[01590] +centroid = (0.73534301056816942, -1.2522792884529528) +station = ('korh', 0.002789826348360083) +zone = ('maz012', 0.00042873736833849122) + +[01602] +centroid = (0.73777795431421178, -1.2540189104782931) +station = ('korh', 0.00023170647795885262) +zone = ('maz012', 0.0023347551244252982) + +[01603] +centroid = (0.73730800695981968, -1.253913038805867) +station = ('korh', 0.00048387881459796355) +zone = ('maz012', 0.0018828935527225065) + +[01604] +centroid = (0.73745840198146406, -1.2525871470797121) +station = ('korh', 0.0012963641750776385) +zone = ('maz012', 0.0017798397562207389) + +[01605] +centroid = (0.73809420797467307, -1.2529333505901377) +station = ('korh', 0.0010948883845667463) +zone = ('maz012', 0.0024250885737479152) + +[01606] +centroid = (0.738540418851238, -1.2530720693590862) +station = ('korh', 0.001247997240841299) +zone = ('maz012', 0.0028793998924159683) + +[01607] +centroid = (0.73698203181542477, -1.2529528459178825) +station = ('korh', 0.0012304528280686839) +zone = ('maz012', 0.0013237129378134195) + +[01608] +centroid = (0.7376106994119932, -1.2531719196455928) +station = ('korh', 0.00084616655137585782) +zone = ('maz012', 0.0019717234914503022) + +[01609] +centroid = (0.73801446388114955, -1.2536697748147243) +station = ('korh', 0.00057274282109072297) +zone = ('maz012', 0.0024572017175648981) + +[01610] +centroid = (0.73735010430137782, -1.2532924171771507) +station = ('korh', 0.00082729709819633849) +zone = ('maz012', 0.0017399304252554127) + +[01611] +centroid = (0.73718525795352696, -1.2544700257300561) +station = ('korh', 0.00052089324509876802) +zone = ('maz012', 0.002027342445715848) + +[01612] +centroid = (0.73821556071756433, -1.2554084718155609) +station = ('korh', 0.00096650446505838956) +zone = ('maz004', 0.0028142314679451522) + +[01701] +centroid = (0.73862628905043615, -1.2468703560213896) +station = ('kbed', 0.0031325883468909322) +zone = ('maz005', 0.0026178087023730734) + +[01702] +centroid = (0.73797016742473387, -1.2468066689569846) +station = ('kbed', 0.003665058596342956) +zone = ('maz005', 0.0032388982530383685) + +[01718] +centroid = (0.74211078654216522, -1.2466761706888128) +station = ('kbed', 0.0019049070169866364) +zone = ('maz005', 0.0011748011617292351) + +[01719] +centroid = (0.74152032420292302, -1.2482766725194765) +station = ('kfit', 0.0032329972879341961) +zone = ('maz005', 0.0018613762430466575) + +[01720] +centroid = (0.74148485911252249, -1.2468369504195065) +station = ('kbed', 0.0018081933033603482) +zone = ('maz005', 0.00083833954534096923) + +[01721] +centroid = (0.73753695925109641, -1.2474483567097727) +station = ('kbed', 0.0042781562261153937) +zone = ('maz013', 0.003357670474226184) + +[01730] +centroid = (0.74175325584489415, -1.2441039393438085) +station = ('kbed', 0.0006158412532984342) +zone = ('maz005', 0.0014071340200752743) + +[01731] +centroid = (0.74101004228951739, -1.2440616849226178) +station = ('kbed', 0.00031583009172475541) +zone = ('maz005', 0.0012954523280457502) + +[01740] +centroid = (0.74071663498896467, -1.2496884868047073) +station = ('kfit', 0.0027833308469114504) +zone = ('maz005', 0.0028900628588964853) + +[01741] +centroid = (0.74240407166967037, -1.2454989286550502) +station = ('kbed', 0.0014572781740917434) +zone = ('maz005', 0.0013001669930517317) + +[01742] +centroid = (0.7411176069313179, -1.2455454242263233) +station = ('kbed', 0.000832979442607025) +zone = ('maz005', 0.00019587690913806257) + +[01745] +centroid = (0.7381533746363157, -1.2478958067701063) +station = ('kbed', 0.0039714978962867818) +zone = ('maz005', 0.003346531851207148) + +[01746] +centroid = (0.73645827596019386, -1.2470976153432918) +station = ('ksfz', 0.0049116474567434129) +zone = ('maz013', 0.0026015072762456165) + +[01747] +centroid = (0.73520389037349299, -1.248493634398792) +station = ('ksfz', 0.0036458824347249327) +zone = ('maz013', 0.0034783567480535654) + +[01748] +centroid = (0.73694963850450768, -1.2486169942703231) +station = ('kbed', 0.0052484343236427252) +zone = ('maz012', 0.0032393570217678484) + +[01749] +centroid = (0.73982885581164526, -1.2487108929840802) +station = ('kfit', 0.0039227252106630991) +zone = ('maz005', 0.0025022085425901266) + +[01752] +centroid = (0.7391402536085635, -1.2487344549289823) +station = ('kbed', 0.0037845397965677562) +zone = ('maz005', 0.0029320876749046312) + +[01754] +centroid = (0.74047260305295093, -1.2471469383479532) +station = ('kbed', 0.0021341735593535141) +zone = ('maz005', 0.0011819504669212792) + +[01756] +centroid = (0.73468709838197743, -1.248694102916676) +station = ('ksfz', 0.003157420577337294) +zone = ('riz001', 0.0036868083303726201) + +[01757] +centroid = (0.73580798373419332, -1.2482842472484301) +station = ('ksfz', 0.0042332537296588283) +zone = ('maz013', 0.0033199572672186818) + +[01760] +centroid = (0.73800936751973367, -1.2452716693331478) +station = ('kowd', 0.0029457982397002743) +zone = ('maz013', 0.0027090589264648513) + +[01770] +centroid = (0.73711485137150157, -1.2457233430902714) +station = ('kmqe', 0.0033478038852161776) +zone = ('maz013', 0.002126132693968814) + +[01772] +centroid = (0.73832448671618134, -1.2484484652777503) +station = ('kbed', 0.0041263797523528037) +zone = ('maz005', 0.0034110836548733019) + +[01773] +centroid = (0.74046476652460935, -1.2446084616706825) +station = ('kbed', 0.00073176015964413962) +zone = ('maz005', 0.0011055737730083859) + +[01775] +centroid = (0.74053775619392781, -1.2481288256785401) +station = ('kbed', 0.0028119452374916116) +zone = ('maz005', 0.0018083031267349455) + +[01776] +centroid = (0.73972930223111155, -1.2465328267973466) +station = ('kbed', 0.0021322802803681231) +zone = ('maz005', 0.0014934436810833777) + +[01778] +centroid = (0.73903675558392024, -1.245836719678481) +station = ('kbed', 0.0023878292579332162) +zone = ('maz005', 0.0020877285192055822) + +[01801] +centroid = (0.74156699430712136, -1.2418789936133663) +station = ('kbed', 0.0019128231837098944) +zone = ('maz014', 0.0012109969807591648) + +[01803] +centroid = (0.74182125387255193, -1.2427043249100493) +station = ('kbed', 0.0014168729783149826) +zone = ('maz014', 0.0015738802437436803) + +[01810] +centroid = (0.74434878733541254, -1.2420068564343671) +station = ('klwm', 0.0012519599461764865) +zone = ('maz006', 0.0017000988598194194) + +[01821] +centroid = (0.74262590301759879, -1.2435771989755566) +station = ('kbed', 0.0015707669231341951) +zone = ('maz005', 0.0022284141049028982) + +[01824] +centroid = (0.74334951652547565, -1.2453828642597924) +station = ('kbed', 0.0022796633894197902) +zone = ('maz005', 0.0022473565357437101) + +[01826] +centroid = (0.74490169018915187, -1.2444316249108704) +station = ('klwm', 0.0022413141721159381) +zone = ('maz006', 0.0030749144871892939) + +[01827] +centroid = (0.7448380729379166, -1.2479194385281784) +station = ('kash', 0.001851847043517578) +zone = ('maz026', 0.0021465653154402816) + +[01830] +centroid = (0.74693656956405197, -1.2401164030550698) +station = ('klwm', 0.0017264678736468499) +zone = ('maz006', 0.0014229369188762402) + +[01832] +centroid = (0.74684582989624082, -1.2415025959068811) +station = ('klwm', 0.0012993653053380689) +zone = ('maz006', 0.0015771008795123398) + +[01833] +centroid = (0.74574227566349738, -1.2388702030625607) +station = ('klwm', 0.0019498270163611697) +zone = ('maz006', 0.0010975515806029507) + +[01834] +centroid = (0.74619632306840367, -1.2394618871322793) +station = ('klwm', 0.0016392821833298259) +zone = ('maz006', 0.00092959321790358682) + +[01835] +centroid = (0.74614844868702146, -1.2408286021096384) +station = ('klwm', 0.00078326691186074752) +zone = ('maz006', 0.00072365003762499172) + +[01840] +centroid = (0.74537362721889111, -1.2419833293960505) +station = ('klwm', 0.00038780110297936853) +zone = ('maz006', 0.0012210689803873929) + +[01841] +centroid = (0.74546529191120581, -1.2420613456136147) +station = ('klwm', 0.00041252364606983726) +zone = ('maz006', 0.0012705099046257391) + +[01843] +centroid = (0.7450806038907738, -1.2419829803302) +station = ('klwm', 0.00058086659070093953) +zone = ('maz006', 0.0012899487509338953) + +[01844] +centroid = (0.74600173631009881, -1.2423007175205256) +station = ('klwm', 0.00073748150385753741) +zone = ('maz006', 0.0015221074854342655) + +[01845] +centroid = (0.74480021674644092, -1.2407778479349905) +station = ('klwm', 0.00092041385486608127) +zone = ('maz006', 0.00079266767604851452) + +[01850] +centroid = (0.74448843112886454, -1.2444775096169054) +station = ('klwm', 0.0024238244037738631) +zone = ('maz006', 0.0032166573369290436) + +[01851] +centroid = (0.74399567232114905, -1.2450363814966865) +station = ('kbed', 0.002848968162005618) +zone = ('maz005', 0.002927410746271814) + +[01852] +centroid = (0.7440661312630521, -1.2443461910439853) +station = ('klwm', 0.0025567351881481204) +zone = ('maz005', 0.00313337193317131) + +[01854] +centroid = (0.74437386771676373, -1.2452615115169015) +station = ('kash', 0.003143389090043578) +zone = ('maz005', 0.0032745634873137712) + +[01860] +centroid = (0.74767466930472037, -1.2393931560663356) +station = ('klwm', 0.0026354002517634) +zone = ('maz006', 0.0022601181221353303) + +[01862] +centroid = (0.74313576605198406, -1.2443428225585291) +station = ('kbed', 0.0019534334629309389) +zone = ('maz005', 0.0022838968912826788) + +[01863] +centroid = (0.74409983357090814, -1.2459813027537163) +station = ('kash', 0.003040155387647357) +zone = ('maz005', 0.002978087977391439) + +[01864] +centroid = (0.74313016354508499, -1.240656791898072) +station = ('klwm', 0.0024966427726388104) +zone = ('maz006', 0.0024042189980610076) + +[01867] +centroid = (0.7423789912883193, -1.2410237473733039) +station = ('kbed', 0.0027746801395694162) +zone = ('maz014', 0.0021287250253098173) + +[01876] +centroid = (0.74371622765461221, -1.2431556321480299) +station = ('klwm', 0.002193762238090717) +zone = ('maz006', 0.0027510649393969223) + +[01879] +centroid = (0.74469293135732084, -1.246668089814376) +station = ('kash', 0.0022727238130609336) +zone = ('nhz012', 0.0031115267852007689) + +[01880] +centroid = (0.74179160072856054, -1.24036186616107) +station = ('kbvy', 0.0024084336370184746) +zone = ('maz014', 0.0018405693605465588) + +[01886] +centroid = (0.7432536106830786, -1.2468601807518505) +station = ('kbed', 0.00274252783598389) +zone = ('maz005', 0.0022653242758699367) + +[01887] +centroid = (0.74289323509912686, -1.2420551147881851) +station = ('kbed', 0.0024417778014015029) +zone = ('maz014', 0.0025386271500237442) + +[01890] +centroid = (0.74094029893260771, -1.2417026106391595) +station = ('kbed', 0.0020192378252697398) +zone = ('maz014', 0.0006062668619305669) + +[01901] +centroid = (0.74107920968777408, -1.2382425652102509) +station = ('kbos', 0.0018765912619799867) +zone = ('maz015', 0.0028701362453448006) + +[01902] +centroid = (0.74125946729291992, -1.2381633621687955) +station = ('kbvy', 0.0019858358699776008) +zone = ('maz015', 0.0030489892351005612) + +[01904] +centroid = (0.74163326445881961, -1.2387287615799789) +station = ('kbvy', 0.001748726555446022) +zone = ('maz007', 0.0028735397988087761) + +[01905] +centroid = (0.74117148524532694, -1.2387612596106512) +station = ('kbos', 0.0018118938333440031) +zone = ('maz015', 0.0027318582391271241) + +[01906] +centroid = (0.74121396655932048, -1.2394271725334571) +station = ('kbos', 0.0017764860393692462) +zone = ('maz014', 0.0020322364058154439) + +[01907] +centroid = (0.74131615558702468, -1.2375415537161873) +station = ('kbvy', 0.001908241457269801) +zone = ('maz007', 0.0028861466337583024) + +[01908] +centroid = (0.74051276307903924, -1.2378929408544914) +station = ('kbos', 0.0015874146518491776) +zone = ('maz015', 0.0026395745596980926) + +[01913] +centroid = (0.74789599450716582, -1.2384129791584157) +station = ('klwm', 0.0032694804423308108) +zone = ('maz006', 0.0027605333983610407) + +[01915] +centroid = (0.74299135750967404, -1.2368624111976514) +station = ('kbvy', 0.00067787196644615935) +zone = ('maz007', 0.0011681778507322488) + +[01921] +centroid = (0.74496076958433177, -1.2395036877678647) +station = ('klwm', 0.0015871404370362357) +zone = ('maz006', 0.00082945379886517135) + +[01922] +centroid = (0.74625589115577429, -1.2376869920027562) +station = ('klwm', 0.002896761420485997) +zone = ('maz006', 0.0020778282420471556) + +[01923] +centroid = (0.74305951261696435, -1.238320110188917) +station = ('kbvy', 0.00046346412949023637) +zone = ('maz007', 0.0015329874740545805) + +[01929] +centroid = (0.74411102113141336, -1.2352845637406784) +station = ('kbvy', 0.0020081368332660779) +zone = ('maz007', 0.001166976836836992) + +[01930] +centroid = (0.74385775640365637, -1.2336305501151485) +station = ('kbvy', 0.0030838182485501825) +zone = ('maz007', 0.0024020908723245884) + +[01937] +centroid = (0.74326108069227714, -1.2389054063535734) +station = ('kbvy', 0.00086692670216570607) +zone = ('maz007', 0.0017470924736929616) + +[01938] +centroid = (0.74497389446030693, -1.2364377376840561) +station = ('kbvy', 0.0019953114770393104) +zone = ('maz007', 0.00087406781613009446) + +[01940] +centroid = (0.74236040353178545, -1.2398570122216381) +station = ('kbvy', 0.0017871777193690552) +zone = ('maz014', 0.0025178979130420992) + +[01944] +centroid = (0.74310248262314849, -1.2351198395658753) +station = ('kbvy', 0.0019250055988826017) +zone = ('maz007', 0.0016660232357541391) + +[01945] +centroid = (0.74179695888936414, -1.2367250537855194) +station = ('kbvy', 0.0016033557183321367) +zone = ('maz007', 0.0023649574111936928) + +[01949] +centroid = (0.74362660499752231, -1.2393638170816097) +station = ('kbvy', 0.0012702843643113456) +zone = ('maz006', 0.0020257944393162002) + +[01950] +centroid = (0.74721660764253461, -1.2372830180940897) +station = ('klwm', 0.003524685310333231) +zone = ('maz006', 0.0028082996207346692) + +[01951] +centroid = (0.74653580706120903, -1.2365694576827042) +station = ('kbvy', 0.0034243004546373403) +zone = ('maz007', 0.002386487817552544) + +[01952] +centroid = (0.74778270518541889, -1.2364170031725426) +station = ('kpsm', 0.0041753548274116202) +zone = ('nhz014', 0.0027221989783248563) + +[01960] +centroid = (0.74236186960835715, -1.2386555275645654) +station = ('kbvy', 0.001095783560211388) +zone = ('maz007', 0.0022272929866176661) + +[01966] +centroid = (0.74422132594013934, -1.2325557414551855) +station = ('kbvy', 0.0039371493923639938) +zone = ('maz007', 0.0031739312814403849) + +[01969] +centroid = (0.7456199629895176, -1.2372852346622396) +station = ('kbvy', 0.0024227078884786466) +zone = ('maz007', 0.0014920826681200734) + +[01970] +centroid = (0.74219140330031486, -1.2369298332666558) +station = ('kbvy', 0.001184725034305495) +zone = ('maz007', 0.0019686224756769993) + +[01982] +centroid = (0.74396793903933489, -1.2366919623429018) +station = ('kbvy', 0.0010692749783879428) +zone = ('maz007', 0.00023185914781976151) + +[01983] +centroid = (0.74423246114076713, -1.2381966106910458) +station = ('kbvy', 0.0010698656989238063) +zone = ('maz007', 0.00097901450109704824) + +[01984] +centroid = (0.74352064605863377, -1.2371488197279037) +station = ('kbvy', 0.00052288296930998353) +zone = ('maz007', 0.0006711367702225894) + +[01985] +centroid = (0.74699247245999334, -1.2385626236884817) +station = ('klwm', 0.0026032194519338787) +zone = ('maz006', 0.0019626284757278136) + +[02019] +centroid = (0.7343766392146327, -1.2474651816837619) +station = ('ksfz', 0.002812328002149372) +zone = ('maz013', 0.0029347937923072751) + +[02021] +centroid = (0.73610547510519564, -1.241372149998587) +station = ('kowd', 0.0005501379812131058) +zone = ('maz016', 0.0017018757979387572) + +[02025] +centroid = (0.73716464561506101, -1.2359450661428033) +station = ('kghg', 0.0029484972820446099) +zone = ('maz016', 0.0025314065141060515) + +[02026] +centroid = (0.7373470150686019, -1.242315971698188) +station = ('kmqe', 0.00096770752236824843) +zone = ('maz015', 0.0019260657368534988) + +[02030] +centroid = (0.7371439809167174, -1.2442108931203708) +station = ('kowd', 0.0018117324773164745) +zone = ('maz013', 0.0016473749448522828) + +[02032] +centroid = (0.73577639327473221, -1.2429569438659831) +station = ('kowd', 0.00078960040435823169) +zone = ('maz013', 0.00069058872292636863) + +[02035] +centroid = (0.73410883589420672, -1.243473823123961) +station = ('kowd', 0.0023628468114382062) +zone = ('maz013', 0.0014365872719547177) + +[02038] +centroid = (0.73451933733427566, -1.2463495846791797) +station = ('ksfz', 0.0031563431992934613) +zone = ('maz013', 0.0021256475261301642) + +[02043] +centroid = (0.73680990744459318, -1.2371115394950811) +station = ('kmqe', 0.0030427823528181943) +zone = ('maz016', 0.0016577517109199612) + +[02045] +centroid = (0.73813906293644949, -1.2378559049677642) +station = ('kbos', 0.0017660471113862283) +zone = ('maz016', 0.0016531088904543842) + +[02047] +centroid = (0.7353723844594805, -1.2337009916037591) +station = ('kghg', 0.00059363715623099423) +zone = ('maz019', 0.0019046030818225769) + +[02048] +centroid = (0.7333402277982134, -1.2429763693805576) +station = ('kowd', 0.0029710845106357977) +zone = ('maz017', 0.0017986532088307935) + +[02050] +centroid = (0.7350478404850721, -1.2341280911250145) +station = ('kghg', 0.00047334716955753885) +zone = ('maz019', 0.0015390710113544453) + +[02052] +centroid = (0.73626014618350744, -1.2445123812953602) +station = ('kowd', 0.0017931379784817164) +zone = ('maz013', 0.00089791236080653922) + +[02053] +centroid = (0.73575778806490588, -1.2467372223060476) +station = ('ksfz', 0.0042639253021686113) +zone = ('maz013', 0.0021735558296186882) + +[02054] +centroid = (0.73604986891522717, -1.245516015428427) +station = ('kmqe', 0.0032745968851631128) +zone = ('maz013', 0.0013616735311008971) + +[02056] +centroid = (0.73506714382659921, -1.2449321853403423) +station = ('kowd', 0.0024089302680802859) +zone = ('maz013', 0.00094003009108683437) + +[02061] +centroid = (0.73591055673433292, -1.2360220002562312) +station = ('kghg', 0.0021212202548812247) +zone = ('maz019', 0.0027372997924414873) + +[02062] +centroid = (0.73630833472415491, -1.2426038288517194) +station = ('kowd', 0.00038523541512403876) +zone = ('maz013', 0.001197881590543814) + +[02066] +centroid = (0.73656861567550491, -1.2349632835319713) +station = ('kghg', 0.0020517508468494454) +zone = ('maz019', 0.0031032710287658438) + +[02067] +centroid = (0.73491943661200299, -1.2423562713506167) +station = ('kowd', 0.0013330272969452356) +zone = ('maz013', 0.0012434329459221128) + +[02071] +centroid = (0.73484339261649356, -1.2439587977632127) +station = ('kowd', 0.0019646063204359658) +zone = ('maz013', 0.00068594798373075659) + +[02072] +centroid = (0.7351153323672468, -1.240992802685666) +station = ('kowd', 0.001387583816478413) +zone = ('maz016', 0.0021684222040344037) + +[02081] +centroid = (0.73559042844293221, -1.2439027552409312) +station = ('kowd', 0.0014898081308338416) +zone = ('maz013', 9.0594582277907904e-05) + +[02090] +centroid = (0.7368718142731614, -1.2429671016822295) +station = ('kowd', 0.00090623981385886884) +zone = ('maz013', 0.0014914508744721894) + +[02093] +centroid = (0.73395756820793623, -1.245412115978056) +station = ('ksfz', 0.0030138304486746277) +zone = ('maz013', 0.0019590069420752326) + +[02108] +centroid = (0.73928249794260104, -1.2403155800293073) +station = ('kbos', 0.00064047829266960837) +zone = ('maz015', 0.00052341596966625045) + +[02109] +centroid = (0.73944753627666959, -1.2400674814761363) +station = ('kbos', 0.00043811246557967214) +zone = ('maz015', 0.0007577208211502663) + +[02110] +centroid = (0.73935571450472215, -1.2400188391498832) +station = ('kbos', 0.00041038125455708854) +zone = ('maz015', 0.0007048301810659548) + +[02111] +centroid = (0.73915597902512387, -1.2402145952787869) +station = ('kbos', 0.00061514003619559223) +zone = ('maz015', 0.00045895740090830527) + +[02113] +centroid = (0.73941458446039188, -1.2401478189816055) +station = ('kbos', 0.00049791197830550656) +zone = ('maz015', 0.00069849563571223626) + +[02114] +centroid = (0.73937688534854884, -1.2403818676342979) +station = ('kbos', 0.00067307336795146037) +zone = ('maz015', 0.00059302702592924864) + +[02115] +centroid = (0.73890856115036119, -1.2410019831175314) +station = ('kbos', 0.001246659717895353) +zone = ('maz015', 0.00029470178383666416) + +[02116] +centroid = (0.73915704367596768, -1.24051714810462) +station = ('kbos', 0.00081991668709177059) +zone = ('maz015', 0.00035436234001848602) + +[02118] +centroid = (0.73893505524840641, -1.2404020960003286) +station = ('kbos', 0.00085002491841508184) +zone = ('maz015', 0.0002059971246579422) + +[02119] +centroid = (0.73869360639968562, -1.2406676652993121) +station = ('kbos', 0.0011538399869937869) +zone = ('maz015', 0.00012228606868859408) + +[02120] +centroid = (0.73883436720385887, -1.240868797042312) +station = ('kbos', 0.0011940535266639612) +zone = ('maz015', 0.00018133141773449878) + +[02121] +centroid = (0.73838365337782386, -1.2406829543835596) +station = ('kbos', 0.0013816818463276163) +zone = ('maz015', 0.00043029045288860547) + +[02122] +centroid = (0.73812440217073261, -1.2399195648220298) +station = ('kbos', 0.0013539825715906972) +zone = ('maz015', 0.00086314558008305186) + +[02124] +centroid = (0.73802652410628089, -1.2404154652223989) +station = ('kmqe', 0.0013456358672934105) +zone = ('maz015', 0.00080051198962511044) + +[02125] +centroid = (0.73854912804420547, -1.2401593381546687) +station = ('kbos', 0.0010226932872092881) +zone = ('maz015', 0.00043331312779446983) + +[02126] +centroid = (0.73782076724076329, -1.2408730730989792) +station = ('kmqe', 0.0010333546575414284) +zone = ('maz015', 0.0010078527484979991) + +[02127] +centroid = (0.73888499920545925, -1.2398660704804561) +station = ('kbos', 0.00062393406748271823) +zone = ('maz015', 0.00056608624722717779) + +[02128] +centroid = (0.73934117591205295, -1.2393055056313005) +station = ('kbos', 0.00015799363726528418) +zone = ('maz015', 0.0011098920983436886) + +[02129] +centroid = (0.73966455051586255, -1.2402569195131476) +station = ('kbos', 0.00062079551167211347) +zone = ('maz015', 0.00089514001452451896) + +[02130] +centroid = (0.73843439009917933, -1.2411705644699815) +station = ('kmqe', 0.0016149717782160012) +zone = ('maz015', 0.00055221534770503685) + +[02131] +centroid = (0.73800083285969142, -1.2413868631241813) +station = ('kmqe', 0.0011874426118275354) +zone = ('maz015', 0.00098733752491843947) + +[02132] +centroid = (0.73793314899129914, -1.2420114990101778) +station = ('kmqe', 0.0012580772892243279) +zone = ('maz015', 0.001350156816001209) + +[02134] +centroid = (0.73928684381243837, -1.2414284019603787) +station = ('kbos', 0.001451492658346419) +zone = ('maz015', 0.00076017982704818096) + +[02135] +centroid = (0.73914149279233232, -1.2418709476455145) +station = ('kmqe', 0.0023710850444352461) +zone = ('maz015', 0.00097788968031613634) + +[02136] +centroid = (0.73749032405348314, -1.2414390833754012) +station = ('kmqe', 0.00068983537505890513) +zone = ('maz015', 0.0014521213710506223) + +[02138] +centroid = (0.73966420145001222, -1.2415426163066294) +station = ('kbos', 0.0015444291751510672) +zone = ('maz014', 0.00074733045109299731) + +[02139] +centroid = (0.73937358667626252, -1.2409876190577878) +station = ('kbos', 0.0011197251215769154) +zone = ('maz015', 0.00062227700501234402) + +[02140] +centroid = (0.73988271667236172, -1.2415224403004763) +station = ('kbos', 0.0015767578854943226) +zone = ('maz014', 0.00055884952117904365) + +[02141] +centroid = (0.73950124005775342, -1.2406247127464205) +station = ('kbos', 0.00085205417428183851) +zone = ('maz015', 0.00068940524759252019) + +[02142] +centroid = (0.73934714493809484, -1.240614834182854) +station = ('kbos', 0.0008473182146058008) +zone = ('maz015', 0.00053536700837046201) + +[02143] +centroid = (0.73968772848832909, -1.2408689192153597) +station = ('kbos', 0.0010599113431337711) +zone = ('maz015', 0.00089418683202503279) + +[02144] +centroid = (0.74001358145967644, -1.2413226699142932) +station = ('kbos', 0.001481496070838576) +zone = ('maz014', 0.00056093079832689326) + +[02145] +centroid = (0.7398725937627002, -1.2407529944464422) +station = ('kbos', 0.0010395874825446776) +zone = ('maz015', 0.0010649396911181469) + +[02148] +centroid = (0.74054564508214682, -1.2401907191746195) +station = ('kbos', 0.0012275522060675918) +zone = ('maz014', 0.0012933117216864202) + +[02149] +centroid = (0.74012324049657918, -1.2401375738988962) +station = ('kbos', 0.00084234256395916143) +zone = ('maz015', 0.001360033893156145) + +[02150] +centroid = (0.7399641711885524, -1.2397308947298891) +station = ('kbos', 0.00055934234149285743) +zone = ('maz015', 0.0013284282392402983) + +[02151] +centroid = (0.74033889337895564, -1.2392057077046714) +station = ('kbos', 0.00092270032429965705) +zone = ('maz015', 0.0018525426416365375) + +[02152] +centroid = (0.73954932387864591, -1.238744068117519) +station = ('kbos', 0.00055116192090763985) +zone = ('maz015', 0.0015738381651195089) + +[02155] +centroid = (0.74043568933927117, -1.2410630172814738) +station = ('kbos', 0.0015400356886999887) +zone = ('maz014', 0.00064045194575329686) + +[02163] +centroid = (0.73942912305306108, -1.241327905902049) +station = ('kbos', 0.0013693012480662) +zone = ('maz015', 0.00080659750873538004) + +[02169] +centroid = (0.7373734393534771, -1.2392235449696269) +station = ('kmqe', 0.0015784767972749376) +zone = ('maz016', 0.00047451293059363808) + +[02170] +centroid = (0.73768805240444157, -1.239455569040387) +station = ('kmqe', 0.0015684511434008207) +zone = ('maz016', 0.00078456928782477751) + +[02171] +centroid = (0.73813712562097966, -1.2395411250803199) +station = ('kbos', 0.0013016286762394379) +zone = ('maz015', 0.0010479296602916284) + +[02176] +centroid = (0.74099215266468454, -1.2402138447872086) +station = ('kbos', 0.001647356506697983) +zone = ('maz014', 0.0014131305970646287) + +[02180] +centroid = (0.7413147767769156, -1.2408883447299344) +station = ('kbos', 0.0021475690800412091) +zone = ('maz014', 0.0012256996590720517) + +[02184] +centroid = (0.73662347137389506, -1.2392216076541571) +station = ('kmqe', 0.0014931174449697385) +zone = ('maz016', 0.00029878853530647837) + +[02186] +centroid = (0.73725480932421894, -1.2406263009960399) +station = ('kmqe', 0.0006184292661041991) +zone = ('maz016', 0.0010094757311426366) + +[02188] +centroid = (0.73660884551476336, -1.2384463498537139) +station = ('kmqe', 0.0020651828231498092) +zone = ('maz016', 0.00073032647876977534) + +[02189] +centroid = (0.73668085779970061, -1.2379798582512409) +station = ('kmqe', 0.002403840078938616) +zone = ('maz016', 0.0010369742904999233) + +[02190] +centroid = (0.73594829075276103, -1.2383523464202015) +station = ('kmqe', 0.0022964488897152849) +zone = ('maz016', 0.0012093255688525345) + +[02191] +centroid = (0.73728734226147619, -1.2381720539084704) +station = ('kmqe', 0.0023047615587935789) +zone = ('maz016', 0.00094857173021796817) + +[02199] +centroid = (0.73910265921647544, -1.2406156195810174) +station = ('kbos', 0.00090730294377199992) +zone = ('maz015', 0.000290914254740719) + +[02203] +centroid = (0.73933190821372496, -1.2402095861838336) +station = ('kbos', 0.00055326005882921794) +zone = ('maz015', 0.00060409440979638032) + +[02210] +centroid = (0.73910840134971445, -1.2398742560746481) +station = ('kbos', 0.00044239723581959782) +zone = ('maz015', 0.00062947009658056866) + +[02215] +centroid = (0.73910492814450313, -1.2409803061282219) +station = ('kbos', 0.0011613486866088867) +zone = ('maz015', 0.00039334415069926107) + +[02301] +centroid = (0.73440611782569887, -1.2399221130027376) +station = ('kowd', 0.0024386755789418007) +zone = ('maz016', 0.0025377546581998311) + +[02302] +centroid = (0.73457632233435344, -1.2391539761456425) +station = ('kmqe', 0.0027164911270459112) +zone = ('maz016', 0.0023357043073985091) + +[02322] +centroid = (0.73534910176725887, -1.2401250249815745) +station = ('kmqe', 0.0016797461719144364) +zone = ('maz016', 0.00166204344888044) + +[02324] +centroid = (0.73255634807126513, -1.2388133751421158) +station = ('ktan', 0.001630286616893972) +zone = ('maz018', 0.0011132529039760402) + +[02330] +centroid = (0.73090978700164122, -1.2347181345852363) +station = ('kpym', 0.00040807676280617548) +zone = ('maz021', 0.0024191772842880655) + +[02332] +centroid = (0.73381274078660585, -1.2340545080437504) +station = ('kghg', 0.001028138019724811) +zone = ('maz019', 0.00033340974945421207) + +[02333] +centroid = (0.73368890967617684, -1.2381445824260442) +station = ('ktan', 0.0028631002158552698) +zone = ('maz018', 0.0013571705544762401) + +[02338] +centroid = (0.73309959925424095, -1.2367984972404433) +station = ('kpym', 0.0024721184345008976) +zone = ('maz018', 0.00073243850446859219) + +[02339] +centroid = (0.73518427287270061, -1.2366759053137832) +station = ('kghg', 0.0023176804085514894) +zone = ('maz019', 0.0024599660799447158) + +[02341] +centroid = (0.73391679731660975, -1.2368652909909172) +station = ('kghg', 0.0025749543778252832) +zone = ('maz018', 0.0014778593498975181) + +[02343] +centroid = (0.73563730798664073, -1.2392489918701211) +station = ('kmqe', 0.001879223272350369) +zone = ('maz016', 0.0012724083111754806) + +[02346] +centroid = (0.73090905396335537, -1.2369020476249641) +station = ('ktan', 0.0019176593978891495) +zone = ('maz018', 0.0015994671024052395) + +[02347] +centroid = (0.73014931213996226, -1.2384339754693172) +station = ('ktan', 0.0011523701894861069) +zone = ('maz018', 0.0024719840036925272) + +[02351] +centroid = (0.73513205262148096, -1.2384370472488007) +station = ('kmqe', 0.0026651662665606469) +zone = ('maz016', 0.0018991489571112987) + +[02356] +centroid = (0.73409394823568719, -1.2413649068821915) +station = ('kowd', 0.0022110094611759315) +zone = ('maz013', 0.0023162222034515765) + +[02357] +centroid = (0.73400059057399791, -1.2406047461797778) +station = ('kowd', 0.0024948554079049861) +zone = ('maz017', 0.0027579886275754073) + +[02359] +centroid = (0.7342216888836407, -1.2357928210721516) +station = ('kghg', 0.0017226153308629621) +zone = ('maz019', 0.001350446282875089) + +[02360] +centroid = (0.73100251634479974, -1.2327501536805652) +station = ('kpym', 0.0013560713527709602) +zone = ('maz019', 0.0027443921908472291) + +[02364] +centroid = (0.73281481388019298, -1.2346798071548624) +station = ('kpym', 0.0015259551254529263) +zone = ('maz019', 0.00076736326564553873) + +[02366] +centroid = (0.73043024033636328, -1.2331806391405695) +station = ('kpym', 0.0013240493073274067) +zone = ('maz021', 0.002462524547000142) + +[02367] +centroid = (0.73232444617355275, -1.2357411593262926) +station = ('kpym', 0.001369845810428264) +zone = ('maz018', 0.0011838052407200132) + +[02368] +centroid = (0.73611784948959225, -1.24008378285135) +station = ('kmqe', 0.0010960493885800553) +zone = ('maz016', 0.00096046542644921207) + +[02370] +centroid = (0.73531417772892649, -1.2376237063640789) +station = ('kmqe', 0.0030611402990914013) +zone = ('maz016', 0.0020416958835596933) + +[02375] +centroid = (0.73309136130017161, -1.2405264158029481) +station = ('ktan', 0.0022309521600734909) +zone = ('maz017', 0.0020526882677356006) + +[02379] +centroid = (0.73341557366202204, -1.2396500685322294) +station = ('ktan', 0.0024170283035472636) +zone = ('maz018', 0.0019693804943768599) + +[02382] +centroid = (0.73441664216108848, -1.2381259248563403) +station = ('kmqe', 0.0033223017433038171) +zone = ('maz018', 0.002029002781586475) + +[02420] +centroid = (0.74101540045032099, -1.242944325135491) +station = ('kbed', 0.001101316880641521) +zone = ('maz014', 0.0010006513024014136) + +[02421] +centroid = (0.74069237491236195, -1.2433651065648543) +station = ('kbed', 0.00091999820122621407) +zone = ('maz014', 0.0011155301501793585) + +[02445] +centroid = (0.73871903584688714, -1.2415407488043297) +station = ('kmqe', 0.0019139776415760693) +zone = ('maz015', 0.00068304299892004577) + +[02446] +centroid = (0.73903354417809641, -1.241317399019952) +station = ('kbos', 0.0014205012778755576) +zone = ('maz015', 0.00055749563228957679) + +[02451] +centroid = (0.73998160702777982, -1.2436467154396635) +station = ('kbed', 0.0013301357577323797) +zone = ('maz014', 0.0013261027544604427) + +[02452] +centroid = (0.73988125059579024, -1.2429963184939079) +station = ('kbed', 0.0016729700354196791) +zone = ('maz014', 0.00092348160625886492) + +[02453] +centroid = (0.73948801046202339, -1.2433815126598233) +station = ('kbed', 0.0018603767394689906) +zone = ('maz014', 0.0013830893796718759) + +[02457] +centroid = (0.73826359217857918, -1.2439701947632282) +station = ('kowd', 0.0024565920312981191) +zone = ('maz014', 0.0025819276086699655) + +[02458] +centroid = (0.7392064539470915, -1.2424629284212061) +station = ('kbed', 0.0024484263144623547) +zone = ('maz014', 0.0012169570370451255) + +[02459] +centroid = (0.73853221580375361, -1.2425350977857761) +station = ('kmqe', 0.0019696257496564251) +zone = ('maz015', 0.0014393736264050213) + +[02460] +centroid = (0.739178773025155, -1.2428226058734568) +station = ('kbed', 0.0023255494777617174) +zone = ('maz014', 0.0013518618691432994) + +[02461] +centroid = (0.73857729765833269, -1.2427880134476825) +station = ('kmqe', 0.0021059768132081357) +zone = ('maz015', 0.001616026125143786) + +[02462] +centroid = (0.73877532271526392, -1.2436500664718275) +station = ('kbed', 0.0024740130885335916) +zone = ('maz014', 0.0020312797308552001) + +[02464] +centroid = (0.73850073006404771, -1.243003980489324) +station = ('kmqe', 0.0021373894931392642) +zone = ('maz015', 0.0017859573851565396) + +[02465] +centroid = (0.73912794903733681, -1.2431339726120127) +station = ('kbed', 0.0022638878946415011) +zone = ('maz014', 0.0015192327772567723) + +[02466] +centroid = (0.73905019461916044, -1.2435229541424047) +station = ('kbed', 0.0022333870630989413) +zone = ('maz014', 0.0017610816018267228) + +[02467] +centroid = (0.73852923129073278, -1.2418551698690765) +station = ('kmqe', 0.0017728502926188641) +zone = ('maz015', 0.00095214604432442625) + +[02468] +centroid = (0.73877261745492329, -1.2431902245738045) +station = ('kmqe', 0.0024369631772262644) +zone = ('maz014', 0.0018394737218904178) + +[02472] +centroid = (0.7394864222124039, -1.2422891459875849) +station = ('kbed', 0.0023136424407156765) +zone = ('maz014', 0.00091087717985013103) + +[02474] +centroid = (0.74038523187059602, -1.2419129402673175) +station = ('kbed', 0.0020146298026170613) +zone = ('maz014', 2.9903244710125839e-05) + +[02476] +centroid = (0.74029251998072998, -1.2422497888129524) +station = ('kbed', 0.0018323827143349027) +zone = ('maz014', 0.00024891113907885167) + +[02478] +centroid = (0.73993786907672476, -1.2423303183046395) +station = ('kbed', 0.0019821961155766523) +zone = ('maz014', 0.00051502170714807659) + +[02481] +centroid = (0.73848243901348676, -1.2439926920572866) +station = ('kmqe', 0.0026409696381708334) +zone = ('maz014', 0.002418325055469473) + +[02482] +centroid = (0.73815449164703706, -1.2443869793886047) +station = ('kowd', 0.0025608654715182505) +zone = ('maz013', 0.0026655473054887223) + +[02492] +centroid = (0.73785590071860585, -1.2434518494286784) +station = ('kowd', 0.0019053388824498776) +zone = ('maz015', 0.0022986116394340277) + +[02493] +centroid = (0.73933023269764298, -1.244479673825178) +station = ('kbed', 0.0018534509572647217) +zone = ('maz005', 0.002045697077531224) + +[02494] +centroid = (0.73826388888455208, -1.2432452548051198) +station = ('kmqe', 0.0020813808662630169) +zone = ('maz015', 0.0020132544910492112) + +[02532] +centroid = (0.72870580267551532, -1.2321604941927786) +station = ('kfmh', 0.0020656611829847462) +zone = ('maz021', 0.0023313469812114539) + +[02534] +centroid = (0.72724072094151382, -1.2325577311305327) +station = ('kfmh', 0.0013873955303135108) +zone = ('maz021', 0.0024024917124612468) + +[02535] +centroid = (0.72142160122914689, -1.235048368333006) +station = ('kmvy', 0.0022332143363079128) +zone = ('maz023', 0.0017722687815363962) + +[02536] +centroid = (0.72600419007306072, -1.2316417997923785) +station = ('kfmh', 0.0011414216906997033) +zone = ('maz023', 0.0036824743509298189) + +[02537] +centroid = (0.72829837301492972, -1.2293369354354873) +station = ('kfmh', 0.0017273720795682257) +zone = ('maz022', 0.0017877894221175177) + +[02538] +centroid = (0.72913503149845826, -1.2330563193379498) +station = ('kpym', 0.0024210297106979023) +zone = ('maz021', 0.0017640073734558601) + +[02539] +centroid = (0.72217640377075687, -1.2308426833410604) +station = ('kmvy', 0.0012983194881506679) +zone = ('maz023', 0.0017856451731917242) + +[02540] +centroid = (0.72560649934970134, -1.2326961182869234) +station = ('kfmh', 0.0019677721024610904) +zone = ('maz023', 0.0031207923554920835) + +[02542] +centroid = (0.72793911444169923, -1.2312515965315101) +station = ('kfmh', 0.0010772732753621017) +zone = ('maz021', 0.0030605187660990344) + +[02543] +centroid = (0.72394466664912249, -1.2351155984157929) +station = ('kmvy', 0.0024008729768704336) +zone = ('maz023', 0.0020418459991762817) + +[02553] +centroid = (0.72802074349081503, -1.2325647473541255) +station = ('kfmh', 0.0017411304618740774) +zone = ('maz021', 0.0020857318456686974) + +[02554] +centroid = (0.7206668161408295, -1.2233505957274871) +station = ('kack', 0.00079624010884215472) +zone = ('maz024', 0.00033228231610496289) + +[02556] +centroid = (0.72674541395309034, -1.232630319374123) +station = ('kfmh', 0.0014186227543371086) +zone = ('maz021', 0.0026600400195145118) + +[02557] +centroid = (0.72328711385343358, -1.2317502894586825) +station = ('kmvy', 0.00091105551362904817) +zone = ('maz023', 0.0013268875491481858) + +[02558] +centroid = (0.72858799295100563, -1.2331364299506165) +station = ('kfmh', 0.0024352627126535387) +zone = ('maz021', 0.0015975718249239322) + +[02559] +centroid = (0.72763200630651836, -1.2324866438700988) +station = ('kfmh', 0.0014764938026553633) +zone = ('maz021', 0.0022661615387295827) + +[02561] +centroid = (0.72901264901130847, -1.2310260127256898) +station = ('kfmh', 0.0020933286335546261) +zone = ('maz021', 0.0032074871906407881) + +[02562] +centroid = (0.72932438226900709, -1.2309234222722578) +station = ('kfmh', 0.0023983254089294252) +zone = ('maz021', 0.0033431098001259277) + +[02563] +centroid = (0.72829338137326904, -1.2300478254931173) +station = ('kfmh', 0.0014605497064933139) +zone = ('maz022', 0.0023181720061557572) + +[02564] +centroid = (0.7203083429657624, -1.2214925356591064) +station = ('kack', 0.0011133504714403739) +zone = ('maz024', 0.0011620857765798063) + +[02568] +centroid = (0.72358896854756594, -1.2324803083249143) +station = ('kmvy', 0.0010227048983719297) +zone = ('maz023', 0.0012029955086083077) + +[02571] +centroid = (0.72887021269105323, -1.2338778109102786) +station = ('kpym', 0.0024709357674312028) +zone = ('maz021', 0.0010982257545756506) + +[02575] +centroid = (0.72257070855536754, -1.2331961376643272) +station = ('kmvy', 0.00052719354039462631) +zone = ('maz023', 6.4667896195042679e-05) + +[02576] +centroid = (0.72906279232071824, -1.2350464310175362) +station = ('kpym', 0.0022631690377062077) +zone = ('maz021', 0.00056286191221631746) + +[02584] +centroid = (0.72009995065307419, -1.2218551278112082) +station = ('kack', 0.00079561885787659203) +zone = ('maz024', 0.00094512948557231636) + +[02601] +centroid = (0.72706686869472259, -1.2269392719222676) +station = ('khya', 0.00044189081208145797) +zone = ('maz022', 0.0011927074284933687) + +[02630] +centroid = (0.72788094261773029, -1.2270281964476568) +station = ('khya', 0.00081676737982747452) +zone = ('maz022', 0.00038405607070144738) + +[02631] +centroid = (0.72862288208275316, -1.22293089640226) +station = ('kcqx', 0.0014276931756196042) +zone = ('maz022', 0.0030151271397790003) + +[02632] +centroid = (0.72708837115110714, -1.2277846046921785) +station = ('khya', 0.0010541506499526035) +zone = ('maz022', 0.0013295008573894439) + +[02633] +centroid = (0.72762303531416306, -1.2212440182269149) +station = ('kcqx', 0.00038004700207697802) +zone = ('maz022', 0.0043011850345896895) + +[02635] +centroid = (0.72645673649481046, -1.2293786138980249) +station = ('kfmh', 0.0011274258596325603) +zone = ('maz022', 0.0025617375230409067) + +[02637] +centroid = (0.72790221818131207, -1.2264590794851664) +station = ('khya', 0.00068395655576626037) +zone = ('maz022', 0.00050760542094583716) + +[02638] +centroid = (0.72832945732890775, -1.2251759483256852) +station = ('khya', 0.0014297788686628268) +zone = ('maz022', 0.0013198964542943815) + +[02639] +centroid = (0.72722466391239537, -1.2240979282598983) +station = ('kcqx', 0.0017914117052505445) +zone = ('maz022', 0.002362379046377542) + +[02641] +centroid = (0.72869670951011245, -1.2244090681056512) +station = ('khya', 0.0020867111250578384) +zone = ('maz022', 0.0019399581073405957) + +[02642] +centroid = (0.73026898936677143, -1.2213366603036107) +station = ('kcqx', 0.0027731814355674792) +zone = ('maz022', 0.0046376528211713557) + +[02643] +centroid = (0.72950882866435796, -1.2206366261939283) +station = ('kcqx', 0.0021577431348884153) +zone = ('maz022', 0.0048663905625013146) + +[02644] +centroid = (0.72751410931554605, -1.2306453738691223) +station = ('kfmh', 0.00058948339631208907) +zone = ('maz021', 0.0036019452488385627) + +[02645] +centroid = (0.72790422530995191, -1.2227440065459563) +station = ('kcqx', 0.00085267592109845814) +zone = ('maz022', 0.0031537059513960905) + +[02646] +centroid = (0.72728910146837911, -1.222977496693288) +station = ('kcqx', 0.00095756924789453229) +zone = ('maz022', 0.0031151678334273248) + +[02647] +centroid = (0.72660493240159729, -1.2271130194493036) +station = ('khya', 0.00082166753988808724) +zone = ('maz022', 0.0016595631087121749) + +[02648] +centroid = (0.72729521012076104, -1.2289800505100394) +station = ('kfmh', 0.0013704956798041292) +zone = ('maz022', 0.001801544423812227) + +[02649] +centroid = (0.72635784613939236, -1.2302705993188416) +station = ('kfmh', 0.00067398978473768364) +zone = ('maz022', 0.0031302392598301582) + +[02650] +centroid = (0.727833836181219, -1.2210987370199788) +station = ('kcqx', 0.00057139552275896777) +zone = ('maz022', 0.0043825999956745264) + +[02651] +centroid = (0.73085636247323771, -1.2217914232935103) +station = ('kcqx', 0.0033452613535303348) +zone = ('maz022', 0.0046352919120019051) + +[02652] +centroid = (0.73390286958917883, -1.2233883471992075) +station = ('kpvc', 0.0016048503015742789) +zone = ('maz022', 0.0062326274813160783) + +[02653] +centroid = (0.72900636582600131, -1.2212688193555858) +station = ('kcqx', 0.0015341474124569879) +zone = ('maz022', 0.0042980709199484752) + +[02655] +centroid = (0.72658496583495435, -1.2285815220286394) +station = ('kfmh', 0.0016553678446176012) +zone = ('maz022', 0.002074552155218473) + +[02657] +centroid = (0.73408249887579413, -1.225228238390075) +station = ('kpvc', 0.00024213525650870158) +zone = ('maz022', 0.0059610344432064468) + +[02659] +centroid = (0.72747834751917273, -1.2221411698223175) +station = ('kcqx', 0.00030850015034369378) +zone = ('maz022', 0.0036684401699049012) + +[02660] +centroid = (0.72793668843403903, -1.2244978704579927) +station = ('khya', 0.0015806067734636014) +zone = ('maz022', 0.0018527730487001815) + +[02663] +centroid = (0.73119598609238323, -1.2219430574989236) +station = ('kcqx', 0.0036879838086444805) +zone = ('maz022', 0.0047440112465038341) + +[02664] +centroid = (0.72736120101977886, -1.2251451781709726) +station = ('khya', 0.00093651316792303955) +zone = ('maz022', 0.0016145998986881714) + +[02666] +centroid = (0.73287734902729207, -1.2225284583833351) +station = ('kpvc', 0.0025818400480681022) +zone = ('maz022', 0.0056682887059143552) + +[02667] +centroid = (0.73167687666118519, -1.2221381154961266) +station = ('kpvc', 0.0035585252854887853) +zone = ('maz022', 0.0049490673483287362) + +[02668] +centroid = (0.72799171866535439, -1.228060715779844) +station = ('khya', 0.0014701224636202046) +zone = ('maz022', 0.00087692282282863512) + +[02669] +centroid = (0.72722016096292519, -1.2215507423896601) +station = ('kcqx', 0.00032070013041920825) +zone = ('maz022', 0.0041575869588334723) + +[02670] +centroid = (0.72710613860289253, -1.2247093694567495) +station = ('khya', 0.0012567843505489537) +zone = ('maz022', 0.0020272782530609129) + +[02671] +centroid = (0.7272932902585838, -1.2237096972210848) +station = ('kcqx', 0.0014942931914858299) +zone = ('maz022', 0.0025996895603373699) + +[02672] +centroid = (0.72667732865897006, -1.2272120843376466) +station = ('khya', 0.00082296632895061995) +zone = ('maz022', 0.0015950490667346444) + +[02673] +centroid = (0.72702007641747668, -1.2260497474156962) +station = ('khya', 0.00032061490094181805) +zone = ('maz022', 0.0014072390370733123) + +[02675] +centroid = (0.72787481651205577, -1.2257761670554461) +station = ('khya', 0.00079663326223342133) +zone = ('maz022', 0.00095153130578146713) + +[02702] +centroid = (0.72928780016788541, -1.2402143334793991) +station = ('ktan', 0.0018006789017047567) +zone = ('maz020', 0.0019474738795232289) + +[02703] +centroid = (0.73184540565375777, -1.244323815922975) +station = ('ksfz', 0.0026813243451277108) +zone = ('maz017', 0.001445761126092348) + +[02713] +centroid = (0.72328704404026345, -1.2374771336134962) +station = ('kewb', 0.0043073950265451284) +zone = ('maz023', 0.0033143094814050834) + +[02715] +centroid = (0.72981031683934738, -1.2419335176991986) +station = ('ktan', 0.0021851953186944276) +zone = ('maz017', 0.0018162222637456719) + +[02717] +centroid = (0.72885138058842425, -1.238710330903078) +station = ('kewb', 0.0013424083657089764) +zone = ('maz020', 0.0017192957734774544) + +[02718] +centroid = (0.73063821377003091, -1.2393877979055321) +station = ('ktan', 0.00036955836456986499) +zone = ('maz018', 0.0023985733244942437) + +[02719] +centroid = (0.72662320599886565, -1.236934737641854) +station = ('kewb', 0.0015298862673017769) +zone = ('maz021', 0.00227099834599989) + +[02720] +centroid = (0.72826207016648825, -1.2412911841745871) +station = ('kewb', 0.0021434451124220577) +zone = ('maz020', 0.001402510782348571) + +[02721] +centroid = (0.72736814743020184, -1.2417717605841236) +station = ('kewb', 0.0023717644161998504) +zone = ('maz020', 0.001432480474158293) + +[02723] +centroid = (0.72767497631270239, -1.2414479147414161) +station = ('kewb', 0.0021315546770359936) +zone = ('maz020', 0.0012316246429871969) + +[02724] +centroid = (0.72752192839059515, -1.2422817283382639) +station = ('kewb', 0.0027481497937582914) +zone = ('maz020', 0.0018205437759723673) + +[02725] +centroid = (0.72819885434098108, -1.2424206216401377) +station = ('kewb', 0.0029327079701324658) +zone = ('riz005', 0.001291527679429577) + +[02726] +centroid = (0.72884425964507604, -1.2417073753880177) +station = ('kewb', 0.0026737203243681509) +zone = ('maz020', 0.0020297722087765997) + +[02738] +centroid = (0.72787451980608298, -1.2348592793618449) +station = ('kewb', 0.0028182141190138529) +zone = ('maz021', 0.0007224607562394997) + +[02739] +centroid = (0.72720529075769824, -1.2359467242055926) +station = ('kewb', 0.0020067937284036341) +zone = ('maz021', 0.0014130327526746488) + +[02740] +centroid = (0.7267112054997511, -1.2381062899022552) +station = ('kewb', 0.00088174680981650941) +zone = ('maz020', 0.0014576279597385382) + +[02743] +centroid = (0.7281202447114713, -1.2374585284036701) +station = ('kewb', 0.0010485981069676006) +zone = ('maz020', 0.0019438931420617859) + +[02744] +centroid = (0.7261660868144757, -1.2376763629476117) +station = ('kewb', 0.0015127284644575691) +zone = ('maz020', 0.0020177745557523638) + +[02745] +centroid = (0.72781516115822253, -1.2383206337876929) +station = ('kewb', 0.00036933251215190888) +zone = ('maz020', 0.0012325925045286357) + +[02746] +centroid = (0.72713373225836642, -1.2381576549421416) +station = ('kewb', 0.00050279095804069943) +zone = ('maz020', 0.0012870294579741301) + +[02747] +centroid = (0.72722656632128002, -1.2394624107310548) +station = ('kewb', 0.0007029646863460768) +zone = ('maz020', 0.00032106826446548666) + +[02748] +centroid = (0.72524668227111011, -1.238679979627386) +station = ('kewb', 0.0022654779237068433) +zone = ('maz020', 0.0022874029075439194) + +[02760] +centroid = (0.73255819812027234, -1.2450342521949991) +station = ('ksfz', 0.0023507065910505004) +zone = ('maz017', 0.0021776121870210052) + +[02762] +centroid = (0.73326168798187363, -1.2450585820847719) +station = ('ksfz', 0.0027040098936394223) +zone = ('maz013', 0.0024392158148769335) + +[02763] +centroid = (0.73245702138353419, -1.2445624896981851) +station = ('ksfz', 0.002638918346648898) +zone = ('maz017', 0.0018195090266836913) + +[02764] +centroid = (0.73045395936089785, -1.2418645597404523) +station = ('ktan', 0.001862222840441456) +zone = ('maz017', 0.0012079821563877086) + +[02766] +centroid = (0.73229549116126225, -1.2423090776476426) +station = ('ktan', 0.0024740446651569099) +zone = ('maz017', 0.00070814430311660047) + +[02767] +centroid = (0.73200847176577166, -1.2400302361498989) +station = ('ktan', 0.0010880186483852115) +zone = ('maz018', 0.0020696893612393483) + +[02769] +centroid = (0.73036728631024384, -1.2434511512969775) +station = ('kpvd', 0.0031577212076679064) +zone = ('maz017', 0.0014485600896165269) + +[02770] +centroid = (0.72884680782578404, -1.2363641720560845) +station = ('kewb', 0.0021384865687162102) +zone = ('maz021', 0.00087271036169602129) + +[02771] +centroid = (0.73020650657955011, -1.2447762925315544) +station = ('kpvd', 0.0023409886367073349) +zone = ('riz005', 0.0021749403370017765) + +[02777] +centroid = (0.72881764337398314, -1.2429222990803308) +station = ('ktan', 0.0033723897127072773) +zone = ('riz005', 0.0011706190075238881) + +[02779] +centroid = (0.73021191710023137, -1.2405384062149092) +station = ('ktan', 0.0011189260784601354) +zone = ('maz017', 0.0019613193112798842) + +[02780] +centroid = (0.73145199098706581, -1.2412492962725392) +station = ('ktan', 0.00139548274111639) +zone = ('maz017', 0.00087557555712302465) + +[02790] +centroid = (0.72604258731660465, -1.2406214140741341) +station = ('kewb', 0.0021059399942213721) +zone = ('maz020', 0.0014359225376130861) + +[02791] +centroid = (0.72480972163958091, -1.2405467139821489) +station = ('kewb', 0.003068158228484389) +zone = ('maz020', 0.002601361374539746) + +[02802] +centroid = (0.73220279672468869, -1.2471465369222252) +station = ('ksfz', 0.00084024847662876601) +zone = ('riz001', 0.0023843961182350923) + +[02804] +centroid = (0.7231585703540242, -1.2526282844901815) +station = ('kwst', 0.0015156145613270525) +zone = ('riz006', 0.0020529234747470784) + +[02806] +centroid = (0.72840885235658093, -1.2447641450399605) +station = ('kpvd', 0.0014797958466499356) +zone = ('riz005', 0.00056587296843475224) + +[02807] +centroid = (0.71867143356690188, -1.249255994216063) +station = ('kbid', 0.00022427867009820374) +zone = ('riz008', 2.73873857077982e-05) + +[02808] +centroid = (0.72271031744223446, -1.2522680485325699) +station = ('kwst', 0.001211610941124857) +zone = ('riz006', 0.0020374222840195467) + +[02809] +centroid = (0.72737870667217641, -1.2439542948137425) +station = ('kpvd', 0.0023146340568803215) +zone = ('riz005', 0.00071868621448995841) + +[02812] +centroid = (0.72394421286351696, -1.2505691450386787) +station = ('kwst', 0.0029666072526157482) +zone = ('riz006', 0.00036041696942628855) + +[02813] +centroid = (0.72246995069764974, -1.2508750488966758) +station = ('kwst', 0.0018729529922929921) +zone = ('riz006', 0.0015724412638589648) + +[02814] +centroid = (0.73122195659165301, -1.2514107428039902) +station = ('ksfz', 0.0026300926174642101) +zone = ('riz001', 0.0010465030797766706) + +[02815] +centroid = (0.72910483730239883, -1.2504926996174413) +station = ('ksfz', 0.0031378233562588524) +zone = ('riz003', 0.0019347811727229952) + +[02816] +centroid = (0.72766347459293179, -1.2499893815677512) +station = ('kpvd', 0.002525496778184312) +zone = ('riz003', 0.00075537688540948909) + +[02817] +centroid = (0.72670455579530113, -1.2510235415094355) +station = ('kpvd', 0.0036085380566847824) +zone = ('riz003', 0.00051337938409626348) + +[02818] +centroid = (0.72680604669130455, -1.2476611647054683) +station = ('koqu', 0.0011716694817504006) +zone = ('riz004', 0.00080193259313127813) + +[02822] +centroid = (0.72553703524547208, -1.2501268611529308) +station = ('koqu', 0.0027945092408251963) +zone = ('riz006', 0.0016096231975974266) + +[02825] +centroid = (0.72923463743886952, -1.2518693978781219) +station = ('ksfz', 0.0037703664906201819) +zone = ('riz003', 0.0022122252572760312) + +[02826] +centroid = (0.73273714672847934, -1.2505832822056198) +station = ('ksfz', 0.0022982243458174092) +zone = ('riz001', 0.0016604488011402621) + +[02827] +centroid = (0.72778044655940044, -1.2520838115767294) +station = ('ksfz', 0.0049135346803263497) +zone = ('riz003', 0.0011514429282716945) + +[02828] +centroid = (0.73094533935850436, -1.2490328538711957) +station = ('ksfz', 0.0010515186238894362) +zone = ('riz001', 0.00075116229367712167) + +[02830] +centroid = (0.73260160445876943, -1.2506021666681264) +station = ('ksfz', 0.002245905217718371) +zone = ('riz001', 0.0015338310606025005) + +[02831] +centroid = (0.72910714113701147, -1.250009854279877) +station = ('ksfz', 0.00292917074200638) +zone = ('riz003', 0.0020074843500475694) + +[02832] +centroid = (0.72456848223037029, -1.251918040204375) +station = ('kwst', 0.0030187466248512672) +zone = ('riz006', 0.0015126956998800182) + +[02833] +centroid = (0.7240251088743469, -1.2526596655101325) +station = ('kwst', 0.0023598632717289295) +zone = ('riz006', 0.0019286585534523072) + +[02835] +centroid = (0.72448770839258803, -1.2457875013935749) +station = ('koqu', 0.001647060688536288) +zone = ('riz007', 0.0020180898763337376) + +[02836] +centroid = (0.72351880631163579, -1.2500106047714554) +station = ('kwst', 0.0029771874422291804) +zone = ('riz006', 0.00041301552188413468) + +[02837] +centroid = (0.72463922042495355, -1.242102779730057) +station = ('kuuu', 0.0015379919079770994) +zone = ('riz007', 0.0011149685848523892) + +[02838] +centroid = (0.73243176646925789, -1.2474980462335767) +station = ('ksfz', 0.00090169668245783006) +zone = ('riz001', 0.0022762108086775926) + +[02839] +centroid = (0.73200430042885933, -1.2503802829603203) +station = ('ksfz', 0.0018850139495026226) +zone = ('riz001', 0.00091440490716906443) + +[02840] +centroid = (0.72393143705339236, -1.2448102740920906) +station = ('kuuu', 0.0010889474634718788) +zone = ('riz007', 0.0017605485512061996) + +[02841] +centroid = (0.72451870544010344, -1.2449813163587862) +station = ('kuuu', 0.00074009217707411289) +zone = ('riz007', 0.0014671688983011353) + +[02842] +centroid = (0.72463646280473537, -1.2441000996194542) +station = ('kuuu', 0.00025785427136010243) +zone = ('riz007', 0.00087906594280636038) + +[02852] +centroid = (0.7258571635368728, -1.2472092291489567) +station = ('koqu', 0.00059771714718840957) +zone = ('riz004', 0.0017037208929036032) + +[02857] +centroid = (0.7299448817246762, -1.2502422623230727) +station = ('ksfz', 0.0023877675131033496) +zone = ('riz001', 0.001200033986859119) + +[02858] +centroid = (0.73243396558411544, -1.2505881691275254) +station = ('ksfz', 0.0021656361830705842) +zone = ('riz001', 0.0013708051581296692) + +[02859] +centroid = (0.7323239051214846, -1.252401548767055) +station = ('ksfz', 0.003421805725176088) +zone = ('riz001', 0.0021414299528754888) + +[02860] +centroid = (0.73077595515459837, -1.2459673924795778) +station = ('ksfz', 0.0016566969864590087) +zone = ('riz002', 0.0013135849046106692) + +[02861] +centroid = (0.73091950848557485, -1.2453470675568341) +station = ('ksfz', 0.0020203477383845475) +zone = ('riz002', 0.001737750747378392) + +[02863] +centroid = (0.73111954067114593, -1.2460513079100137) +station = ('ksfz', 0.0014595047252900244) +zone = ('riz002', 0.0015627871938696538) + +[02864] +centroid = (0.73247278170667973, -1.2465224769948822) +station = ('ksfz', 0.0013623545082054867) +zone = ('riz002', 0.0027458741378761169) + +[02865] +centroid = (0.73152238011579873, -1.2470087780843653) +station = ('ksfz', 0.00067375170543410435) +zone = ('riz002', 0.0017644370270998391) + +[02871] +centroid = (0.72583459642964454, -1.243743773199367) +station = ('kuuu', 0.00098430247489761542) +zone = ('riz007', 0.0006335646060626832) + +[02872] +centroid = (0.726004800938299, -1.2447949501012581) +station = ('kuuu', 0.0012180075449722497) +zone = ('riz007', 0.0013194601884938034) + +[02873] +centroid = (0.72488873269481868, -1.2528064826068102) +station = ('kwst', 0.0032052318789482204) +zone = ('riz006', 0.0022508975238551871) + +[02874] +centroid = (0.72446325632976749, -1.2475937600897564) +station = ('koqu', 0.0018068929083983145) +zone = ('riz006', 0.0019439438588536306) + +[02875] +centroid = (0.72355217700693397, -1.2503340666417275) +station = ('kwst', 0.0028113967443324519) +zone = ('riz006', 0.00041812599986959439) + +[02876] +centroid = (0.73293841809781934, -1.2494024971534754) +station = ('ksfz', 0.0017510280630596519) +zone = ('riz001', 0.001861711126298844) + +[02878] +centroid = (0.72623389285591577, -1.2423335820703407) +station = ('kuuu', 0.001897575705296228) +zone = ('riz007', 0.0011957078308054169) + +[02879] +centroid = (0.72298541623893386, -1.2485085744171891) +station = ('koqu', 0.0034346563693907852) +zone = ('riz006', 0.0015133713505359769) + +[02881] +centroid = (0.72392911576548713, -1.2483418082071609) +station = ('koqu', 0.0025534764047239113) +zone = ('riz006', 0.0013087035058132405) + +[02882] +centroid = (0.72286493616066871, -1.2474427716561662) +station = ('koqu', 0.0032764535192955631) +zone = ('riz006', 0.0022499964734306733) + +[02885] +centroid = (0.72823791480964062, -1.2436932284642295) +station = ('kpvd', 0.0022836077937734103) +zone = ('riz005', 0.00037027928254087736) + +[02886] +centroid = (0.72786947580454464, -1.2471349304826995) +station = ('kpvd', 0.00059052205357536334) +zone = ('riz004', 0.00033185290340069816) + +[02888] +centroid = (0.72863431398935363, -1.2462718651675884) +station = ('kpvd', 0.00043386484329503467) +zone = ('riz002', 0.0012769032128774531) + +[02889] +centroid = (0.72781261297751476, -1.2457623861056386) +station = ('kpvd', 0.00093090174785478118) +zone = ('riz005', 0.0012381465252272307) + +[02891] +centroid = (0.72190013560345878, -1.2529660406070275) +station = ('kwst', 0.00024691450959701627) +zone = ('riz006', 0.0029608711332418315) + +[02892] +centroid = (0.72413443629869179, -1.2495302203481367) +station = ('koqu', 0.0029983589248621192) +zone = ('riz006', 0.00046660925142620179) + +[02893] +centroid = (0.72743588365847178, -1.2482365823065582) +station = ('kpvd', 0.001461505689825546) +zone = ('riz004', 0.00071453327222248657) + +[02894] +centroid = (0.72334245824401433, -1.2514575699878214) +station = ('kwst', 0.0020793103065767948) +zone = ('riz006', 0.0011810947789217723) + +[02895] +centroid = (0.73306806115465739, -1.2479095250580272) +station = ('ksfz', 0.0014842165079404909) +zone = ('riz001', 0.0024874976059915191) + +[02896] +centroid = (0.73260519983702854, -1.248679564324007) +station = ('ksfz', 0.0011706559915886326) +zone = ('riz001', 0.0017744988001603883) + +[02898] +centroid = (0.72459171256271426, -1.2509199911249147) +station = ('kwst', 0.0033444038875336643) +zone = ('riz006', 0.00091034565662228043) + +[02903] +centroid = (0.72986580085626829, -1.2463237014463724) +station = ('kpvd', 0.0015149590162520286) +zone = ('riz002', 0.0005760241461407054) + +[02904] +centroid = (0.73056569533961058, -1.2467987975220578) +station = ('ksfz', 0.0013120480475087824) +zone = ('riz002', 0.00083422964561872517) + +[02905] +centroid = (0.72928102829038766, -1.246097070443001) +station = ('kpvd', 0.0010195457611700664) +zone = ('riz002', 0.0008767275959257469) + +[02906] +centroid = (0.73024870864086344, -1.2459976739420999) +station = ('kpvd', 0.0019465131896499502) +zone = ('riz002', 0.00094564153119837174) + +[02907] +centroid = (0.72952307055105414, -1.2465949605187174) +station = ('kpvd', 0.0011446172857691927) +zone = ('riz002', 0.00043357617335104725) + +[02908] +centroid = (0.73024270470823649, -1.2468072623689301) +station = ('ksfz', 0.0015726739781539965) +zone = ('riz002', 0.00052574753509822725) + +[02909] +centroid = (0.72992323964195138, -1.2471052773387081) +station = ('kpvd', 0.0015622003582400645) +zone = ('riz002', 0.00016525393157414253) + +[02910] +centroid = (0.72911127756733862, -1.246786318417906) +station = ('kpvd', 0.00072779852800782148) +zone = ('riz002', 0.00068430199905078373) + +[02911] +centroid = (0.7305056036534644, -1.2474358950589135) +station = ('ksfz', 0.001134637926402837) +zone = ('riz002', 0.00079169623067310631) + +[02912] +centroid = (0.7299943094490926, -1.2462041638459034) +station = ('kpvd', 0.0016603123842724857) +zone = ('riz002', 0.0006961003475202726) + +[02914] +centroid = (0.72979712215020232, -1.2455746235847092) +station = ('kpvd', 0.0016616215840834587) +zone = ('riz002', 0.0011249754824275888) + +[02915] +centroid = (0.72907371808183574, -1.2453768777804581) +station = ('kpvd', 0.0012329515371724464) +zone = ('riz005', 0.0013517085488880607) + +[02916] +centroid = (0.73029206261948287, -1.2453347280790226) +station = ('kpvd', 0.0021792282334910343) +zone = ('riz002', 0.0014077401147720363) + +[02917] +centroid = (0.73139373189663426, -1.2483171641581228) +station = ('ksfz', 0.00035744514464093233) +zone = ('riz001', 0.0012868824295245551) + +[02919] +centroid = (0.73002654568037706, -1.2482573691779497) +station = ('ksfz', 0.0015785840857687197) +zone = ('riz002', 0.00091513775838170846) + +[02920] +centroid = (0.72897767261309854, -1.2473084162103478) +station = ('kpvd', 0.00072655153271611349) +zone = ('riz002', 0.00079899559219947212) + +[02921] +centroid = (0.7289691204997637, -1.2482122873233705) +station = ('kpvd', 0.0012399841078791793) +zone = ('riz002', 0.0011542989069162853) + +[03031] +centroid = (0.74830754314478609, -1.2496645234340775) +station = ('kash', 0.0019625102785571194) +zone = ('nhz012', 0.0019045129505517622) + +[03032] +centroid = (0.75044377378934957, -1.2455267142967417) +station = ('kmht', 0.001429020405457437) +zone = ('nhz013', 0.0023331382320764494) + +[03033] +centroid = (0.74612806324135816, -1.2509792275997274) +station = ('kash', 0.0021370421604698514) +zone = ('maz026', 0.0019549494510890594) + +[03034] +centroid = (0.7515640133697421, -1.2447687701624783) +station = ('kmht', 0.0026632149019975839) +zone = ('nhz013', 0.0022121614883157084) + +[03036] +centroid = (0.75022379249042814, -1.2436380760598662) +station = ('kmht', 0.0024451284865905946) +zone = ('nhz013', 0.00094248536186202609) + +[03037] +centroid = (0.75295727480502417, -1.2435156237595464) +station = ('kcon', 0.0033546076240352622) +zone = ('nhz013', 0.0028523991920070403) + +[03038] +centroid = (0.74861990472101547, -1.2440141945136711) +station = ('kmht', 0.0021229522517319738) +zone = ('nhz013', 0.0020231785781396616) + +[03042] +centroid = (0.75133827248428919, -1.2405579888091167) +station = ('kpsm', 0.0033964283353493246) +zone = ('nhz013', 0.0017127455329303501) + +[03043] +centroid = (0.75043921848000184, -1.2534568620992732) +station = ('kafn', 0.0041532309712648636) +zone = ('nhz015', 0.0011060706317115845) + +[03044] +centroid = (0.75048906508343882, -1.2412731723767065) +station = ('kpsm', 0.0041310822014486506) +zone = ('nhz013', 0.00082745310212537307) + +[03045] +centroid = (0.75086708594612828, -1.2490180360258463) +station = ('kmht', 0.0022648966509985287) +zone = ('nhz012', 0.0033689008756798166) + +[03046] +centroid = (0.75245427091459938, -1.249786295055989) +station = ('kcon', 0.0019808719850241915) +zone = ('nhz008', 0.0033629069658390161) + +[03047] +centroid = (0.74942238965779007, -1.2545326132370327) +station = ('kafn', 0.0028709578089973048) +zone = ('nhz015', 0.0011063804883430992) + +[03048] +centroid = (0.7459946153667506, -1.252484225013722) +station = ('kfit', 0.00332404295064068) +zone = ('maz026', 0.0022359442608391291) + +[03049] +centroid = (0.74612172769617346, -1.2494009438104414) +station = ('kash', 0.0010643588951204214) +zone = ('maz026', 0.0021600450812500381) + +[03051] +centroid = (0.7463116544253755, -1.2463307874831355) +station = ('kash', 0.0013978444940354838) +zone = ('nhz012', 0.0015939511541588913) + +[03052] +centroid = (0.74780504539984438, -1.2473570934431859) +station = ('kash', 0.0012715753183474611) +zone = ('nhz012', 0.0001412034193154295) + +[03053] +centroid = (0.74821689074343745, -1.2459542326970179) +station = ('kmht', 0.0012536910302063838) +zone = ('nhz012', 0.00098926416662795222) + +[03054] +centroid = (0.74793913904627507, -1.2482761663739936) +station = ('kash', 0.001260724741623055) +zone = ('nhz012', 0.00082813553313828333) + +[03055] +centroid = (0.74732633649260738, -1.2509360132474479) +station = ('kash', 0.0021314910976485898) +zone = ('nhz015', 0.0025601813208252547) + +[03057] +centroid = (0.74890132160960698, -1.251299827130026) +station = ('kash', 0.0031945095472911385) +zone = ('nhz015', 0.0013491556498813114) + +[03060] +centroid = (0.74597632431618977, -1.2471911998977838) +station = ('kash', 0.0010050518481001481) +zone = ('nhz012', 0.001806591010105176) + +[03062] +centroid = (0.74567244504012498, -1.247829903137551) +station = ('kash', 0.0010384943507599142) +zone = ('nhz012', 0.0021657511090360242) + +[03063] +centroid = (0.74668930876892192, -1.2482233527108284) +station = ('kash', 4.1933810957182462e-05) +zone = ('nhz012', 0.0013402888957976501) + +[03064] +centroid = (0.74664099805522677, -1.2474726516929604) +station = ('kash', 0.00051145560805203241) +zone = ('nhz012', 0.0011636498216511569) + +[03070] +centroid = (0.7501635786312344, -1.2510087934772562) +station = ('kmht', 0.0032291193105219852) +zone = ('nhz015', 0.0016691674022366525) + +[03071] +centroid = (0.74606292755367376, -1.254445521307358) +station = ('kafn', 0.0018621850566686101) +zone = ('maz026', 0.0033334065021242815) + +[03076] +centroid = (0.74579650304335676, -1.2450668025855489) +station = ('klwm', 0.0026242372478655642) +zone = ('nhz012', 0.0025141214959459373) + +[03077] +centroid = (0.75115546669843536, -1.242763561384862) +station = ('kmht', 0.0034395097179538568) +zone = ('nhz013', 0.00096890073525213443) + +[03079] +centroid = (0.74679627999877674, -1.2430535129334959) +station = ('klwm', 0.0016867490564566818) +zone = ('maz006', 0.0023685738511255664) + +[03082] +centroid = (0.74881878498928023, -1.2526474831119534) +station = ('kafn', 0.0034437073326755029) +zone = ('nhz015', 0.00062462390860668169) + +[03084] +centroid = (0.74747032615589692, -1.2544605311389252) +station = ('kafn', 0.0016642100317983289) +zone = ('nhz015', 0.0021809359878942635) + +[03086] +centroid = (0.74756052477163992, -1.2524450598253072) +station = ('kash', 0.0032592525748706214) +zone = ('nhz015', 0.0018678293124022986) + +[03087] +centroid = (0.74719451177420426, -1.2444666711222507) +station = ('kmht', 0.0027100590201444446) +zone = ('nhz012', 0.0020658868103044033) + +[03101] +centroid = (0.75030006337874033, -1.2473189405457372) +station = ('kmht', 0.0010583620302257357) +zone = ('nhz012', 0.0025196972465521372) + +[03102] +centroid = (0.7506995343379369, -1.247755412485076) +station = ('kmht', 0.0015574289117768168) +zone = ('nhz012', 0.0029483658946703926) + +[03103] +centroid = (0.7496283036029403, -1.246977484330877) +station = ('kmht', 0.00034448366003288249) +zone = ('nhz012', 0.0018506858142700218) + +[03104] +centroid = (0.75065829220771219, -1.2468594128069797) +station = ('kmht', 0.0013328133308715259) +zone = ('nhz012', 0.0028842661684837533) + +[03106] +centroid = (0.75193294106702868, -1.2469832613707013) +station = ('kcon', 0.0020846253832402361) +zone = ('nhz013', 0.0037886074594205422) + +[03109] +centroid = (0.74985861725103353, -1.2461711945763334) +station = ('kmht', 0.0006775541319245966) +zone = ('nhz012', 0.0022001941910483615) + +[03110] +centroid = (0.74936730706659704, -1.2485539355244486) +station = ('kmht', 0.0013236015166698573) +zone = ('nhz012', 0.0018823602966682312) + +[03215] +centroid = (0.76694341840600322, -1.246998899520799) +station = ('k1p1', 0.0047907437326775619) +zone = ('nhz006', 0.0044284730693517228) + +[03216] +centroid = (0.75836606761024716, -1.2531104491493374) +station = ('k1p1', 0.005751873478348545) +zone = ('nhz008', 0.0030669664257082048) + +[03217] +centroid = (0.76316397772397959, -1.2503976489863777) +station = ('k1p1', 0.0016794498750051642) +zone = ('nhz005', 0.0034785330971308132) + +[03218] +centroid = (0.75639138464124822, -1.2440229037066384) +station = ('kcon', 0.0037817087877616701) +zone = ('nhz009', 0.0036578933463608117) + +[03220] +centroid = (0.75877484117435667, -1.247602748535404) +station = ('klci', 0.0018093451194011029) +zone = ('nhz009', 0.0010745131709784539) + +[03221] +centroid = (0.7549945801875847, -1.2559418793415553) +station = ('kcon', 0.0059397497050296599) +zone = ('nhz007', 0.0037850691273042239) + +[03222] +centroid = (0.76170896653976206, -1.2529568427218696) +station = ('k1p1', 0.0024234446670047959) +zone = ('nhz005', 0.0021250973377237039) + +[03223] +centroid = (0.76542136912521652, -1.2511474773396194) +station = ('k1p1', 0.0015834550629650471) +zone = ('nhz005', 0.0037563451927607877) + +[03224] +centroid = (0.75681822236311602, -1.2489230552079527) +station = ('kcon', 0.0030066537567317655) +zone = ('nhz008', 0.0019195884355023094) + +[03225] +centroid = (0.75683291803541775, -1.2433556992401862) +station = ('klci', 0.0042020966210092898) +zone = ('nhz009', 0.0035798660991824007) + +[03226] +centroid = (0.76289514465929487, -1.2481803652513517) +station = ('klci', 0.0028061356558947387) +zone = ('nhz009', 0.0035455334975796706) + +[03227] +centroid = (0.76517601073897112, -1.2475801988814683) +station = ('k1p1', 0.0036000307211396946) +zone = ('nhz006', 0.0036756056973487332) + +[03229] +centroid = (0.75404988582335764, -1.2513646835650301) +station = ('kcon', 0.0025084264378719572) +zone = ('nhz008', 0.0016529501227266052) + +[03230] +centroid = (0.75936919559783089, -1.2547214229555133) +station = ('k1p1', 0.0050268776382384611) +zone = ('nhz005', 0.0037212685568762584) + +[03231] +centroid = (0.75875293729224413, -1.252489094482335) +station = ('k1p1', 0.0053388036160825934) +zone = ('nhz008', 0.0032377230814697997) + +[03233] +centroid = (0.75789250742430347, -1.255436065471035) +station = ('kleb', 0.0059265432376753718) +zone = ('nhz007', 0.0038515419045003609) + +[03234] +centroid = (0.75406622210515628, -1.2452673409166028) +station = ('kcon', 0.0019479735067274146) +zone = ('nhz013', 0.0043837149828376545) + +[03235] +centroid = (0.75833048034679895, -1.2509519481035185) +station = ('klci', 0.0038523834866979068) +zone = ('nhz008', 0.0026441283732218874) + +[03237] +centroid = (0.75787549046409664, -1.2459425389910295) +station = ('klci', 0.0025338121264143177) +zone = ('nhz009', 0.0017321293504938087) + +[03238] +centroid = (0.76767308820638447, -1.2550884482439153) +station = ('k1p1', 0.0040948513848738976) +zone = ('nhz003', 0.0028004270414271038) + +[03240] +centroid = (0.76055676998076538, -1.2559833658178754) +station = ('kleb', 0.0043778572428583009) +zone = ('nhz005', 0.0025784427190434396) + +[03241] +centroid = (0.76360779749946917, -1.2534499855020205) +station = ('k1p1', 0.00093777807694065654) +zone = ('nhz005', 0.0013788764038298914) + +[03242] +centroid = (0.753448532629583, -1.253690753672333) +station = ('kcon', 0.0042249318785644889) +zone = ('nhz008', 0.0029493859638668137) + +[03243] +centroid = (0.75971902939310065, -1.2525997134503264) +station = ('k1p1', 0.0043757105480158112) +zone = ('nhz005', 0.00384994756890253) + +[03244] +centroid = (0.752727397489244, -1.2551873909592108) +station = ('kcon', 0.0054221373768052134) +zone = ('nhz015', 0.0037027862310898881) + +[03245] +centroid = (0.76350901186380626, -1.2495619329806451) +station = ('k1p1', 0.0020867051234241042) +zone = ('nhz005', 0.0041038020264229265) + +[03246] +centroid = (0.7605520575917849, -1.2475792389503797) +station = ('klci', 0.00083144484270298029) +zone = ('nhz009', 0.0012428568323657513) + +[03249] +centroid = (0.75960889911729979, -1.2455940316459915) +station = ('klci', 0.00099381992435415198) +zone = ('nhz009', 0.00071172235717844906) + +[03251] +centroid = (0.76970194619536525, -1.2478069869644723) +station = ('kmwn', 0.0037806730795864538) +zone = ('nhz003', 0.0032261793613211232) + +[03253] +centroid = (0.76150828858236763, -1.24788571876703) +station = ('klci', 0.0015300582021663121) +zone = ('nhz009', 0.0021806874830620866) + +[03254] +centroid = (0.7630181729182679, -1.2456271579951941) +station = ('klci', 0.0027037606052512588) +zone = ('nhz006', 0.0019934178630720348) + +[03255] +centroid = (0.75597236599442941, -1.2570655572205744) +station = ('kleb', 0.0065748908006230877) +zone = ('nhz007', 0.0026418345555222493) + +[03256] +centroid = (0.76137066937084785, -1.2502251580964032) +station = ('k1p1', 0.0031190552130562102) +zone = ('nhz009', 0.0032147455076101924) + +[03257] +centroid = (0.7577821851622849, -1.2564731575658625) +station = ('kleb', 0.0054305289973499895) +zone = ('nhz007', 0.0030997698459624954) + +[03258] +centroid = (0.75512122127810932, -1.2463192857633649) +station = ('kcon', 0.0016937470950182055) +zone = ('nhz008', 0.0034941148526881484) + +[03259] +centroid = (0.76577563605678634, -1.2460781336206168) +station = ('klci', 0.0054007663381980949) +zone = ('nhz006', 0.0031224552252672802) + +[03260] +centroid = (0.75649954269499431, -1.2552693865274696) +station = ('kcon', 0.0059429740829999265) +zone = ('nhz007', 0.0038271796134285458) + +[03261] +centroid = (0.75416704977604399, -1.2429532263146763) +station = ('kcon', 0.0036374251458503402) +zone = ('nhz010', 0.0028163320905574989) + +[03262] +centroid = (0.76794293356203536, -1.25165322139697) +station = ('k1p1', 0.0038836999207541982) +zone = ('nhz003', 0.0017470576575095479) + +[03263] +centroid = (0.75552687070285784, -1.244583259116284) +station = ('kcon', 0.0029309419403647976) +zone = ('nhz009', 0.0042712209548323972) + +[03264] +centroid = (0.76338605341800325, -1.2514485815421734) +station = ('k1p1', 0.0009528401298971366) +zone = ('nhz005', 0.0027354771174415062) + +[03266] +centroid = (0.76415556908520754, -1.2546254996598238) +station = ('k1p1', 0.0016537192138326125) +zone = ('nhz005', 0.0011612137013300404) + +[03268] +centroid = (0.7572726711937503, -1.2526218791318269) +station = ('kcon', 0.0047999779217858824) +zone = ('nhz008', 0.0019521003059202447) + +[03269] +centroid = (0.75964034995042073, -1.2496837918690196) +station = ('klci', 0.0024542829686891908) +zone = ('nhz009', 0.0022585500588867798) + +[03273] +centroid = (0.75576215853931927, -1.255362150777213) +station = ('kcon', 0.0057249933038420213) +zone = ('nhz007', 0.0038893934602333671) + +[03275] +centroid = (0.75327769980239778, -1.2464575158401228) +station = ('kcon', 0.001240869905644097) +zone = ('nhz008', 0.0041268202890800921) + +[03276] +centroid = (0.75801448848572539, -1.2492368305008763) +station = ('klci', 0.0031101681982676028) +zone = ('nhz009', 0.0024671615866741631) + +[03278] +centroid = (0.7558852915180474, -1.253765436311026) +station = ('kcon', 0.0046912203560608556) +zone = ('nhz008', 0.0019820108619544551) + +[03279] +centroid = (0.76712056932508055, -1.2545095399843211) +station = ('k1p1', 0.0034109510094820065) +zone = ('nhz003', 0.0029685589586080545) + +[03280] +centroid = (0.75360048099426169, -1.2581564927228259) +station = ('keen', 0.0053677751622829752) +zone = ('nhz007', 0.0036281474125571208) + +[03281] +centroid = (0.75185399982496093, -1.2514641149725165) +station = ('kcon', 0.0032919559036189024) +zone = ('nhz015', 0.0027240229333334886) + +[03282] +centroid = (0.76547910461687241, -1.2553057068292035) +station = ('k1p1', 0.0025528204745504887) +zone = ('nhz005', 0.0024064525106300876) + +[03284] +centroid = (0.75870336994148757, -1.2571179520047193) +station = ('kleb', 0.0044669222657461455) +zone = ('nhz007', 0.0031200879819486987) + +[03285] +centroid = (0.76703503073844037, -1.2502806072067389) +station = ('k1p1', 0.0032965711939164748) +zone = ('nhz003', 0.002970682343159412) + +[03287] +centroid = (0.75822539407253631, -1.2552868223666969) +station = ('kleb', 0.0058152622913628773) +zone = ('nhz007', 0.0040599785314694966) + +[03290] +centroid = (0.75275783603139879, -1.2414851426143614) +station = ('kdaw', 0.0038302078617160834) +zone = ('nhz013', 0.0026007238769630856) + +[03291] +centroid = (0.75361800409995161, -1.2416729400418758) +station = ('kdaw', 0.0034004999609891224) +zone = ('nhz010', 0.0025187459605682094) + +[03293] +centroid = (0.76743209314326899, -1.2510504893930863) +station = ('k1p1', 0.0034677501833447334) +zone = ('nhz003', 0.0023714643289851197) + +[03301] +centroid = (0.75454545461116895, -1.2488356491190127) +station = ('kcon', 0.00092340925606630838) +zone = ('nhz008', 0.0019791629790903431) + +[03303] +centroid = (0.7559315078366402, -1.250797556277887) +station = ('kcon', 0.0029138081058798036) +zone = ('nhz008', 0.00030791516018327449) + +[03304] +centroid = (0.7528159554954903, -1.2485604106959736) +station = ('kcon', 0.0011774215420440998) +zone = ('nhz008', 0.0033987978804607779) + +[03307] +centroid = (0.75632076861971254, -1.2469794216463468) +station = ('kcon', 0.0025179268418264954) +zone = ('nhz008', 0.0030325573366020244) + +[03431] +centroid = (0.74988148106423458, -1.2617823444306742) +station = ('keen', 0.0011908070629044758) +zone = ('nhz011', 0.0009735354344765501) + +[03440] +centroid = (0.75141082582129459, -1.2564407991615305) +station = ('kafn', 0.0044122469143340502) +zone = ('nhz015', 0.0032212028603056378) + +[03441] +centroid = (0.74666353025587007, -1.2644385784725769) +station = ('keen', 0.0031086160715591842) +zone = ('nhz011', 0.0034829412938104957) + +[03442] +centroid = (0.75084554858315866, -1.2549561871931991) +station = ('kafn', 0.0040369288993566321) +zone = ('nhz015', 0.0020371155744198731) + +[03443] +centroid = (0.74832260533623074, -1.2645977525003587) +station = ('keen', 0.0024593768465933515) +zone = ('vtz015', 0.0020667023713661558) + +[03444] +centroid = (0.7485591323564611, -1.2578561564651429) +station = ('kafn', 0.0017963788564419481) +zone = ('nhz011', 0.0023769324305347585) + +[03445] +centroid = (0.75085139543615276, -1.2603785935665877) +station = ('keen', 0.0022085653136147128) +zone = ('nhz011', 0.0018297692504590009) + +[03446] +centroid = (0.74801794066200267, -1.2618095192071277) +station = ('keen', 0.00082137416583363614) +zone = ('nhz011', 0.0012116320632155446) + +[03447] +centroid = (0.74619576456304293, -1.2593104520643672) +station = ('kafn', 0.0021210390719802073) +zone = ('nhz011', 0.0031481194207255677) + +[03448] +centroid = (0.75141000551654613, -1.2614279553260566) +station = ('keen', 0.0026656328629282942) +zone = ('nhz011', 0.0023458431574582251) + +[03449] +centroid = (0.75009606929576733, -1.2565990307115162) +station = ('kafn', 0.0030952748640329024) +zone = ('nhz011', 0.0033917781692125895) + +[03450] +centroid = (0.74958955729354604, -1.2578336242644994) +station = ('kafn', 0.0027331295898503378) +zone = ('nhz011', 0.0023881690153563966) + +[03451] +centroid = (0.74716320056742347, -1.2654478674724201) +station = ('keen', 0.0034338004524509286) +zone = ('vtz015', 0.0028445719591222913) + +[03452] +centroid = (0.7475114984729514, -1.2576825311111544) +station = ('kafn', 0.00092132669129068527) +zone = ('nhz011', 0.0029080760039242644) + +[03455] +centroid = (0.74877712398003515, -1.2596548055257857) +station = ('keen', 0.0011991627369238081) +zone = ('nhz011', 0.0010465905909432817) + +[03456] +centroid = (0.75290962731644473, -1.2602807678620134) +station = ('keen', 0.0042284214055025564) +zone = ('nhz011', 0.0038646338924364768) + +[03457] +centroid = (0.75048737211406435, -1.2587588233009817) +station = ('keen', 0.002543115464820357) +zone = ('nhz011', 0.0021710816454779684) + +[03458] +centroid = (0.74819418400986903, -1.2555916441205577) +station = ('kafn', 0.0014183090637238807) +zone = ('nhz015', 0.0022242798873692384) + +[03461] +centroid = (0.74624454651563632, -1.2568682652019292) +station = ('kafn', 0.00077517667827672171) +zone = ('nhz011', 0.0041631158251537259) + +[03462] +centroid = (0.74855801534573974, -1.263425240308869) +station = ('keen', 0.001574650544843035) +zone = ('nhz011', 0.0018374689998841905) + +[03464] +centroid = (0.75203020826624234, -1.2588064882428536) +station = ('keen', 0.0037533229948109601) +zone = ('nhz011', 0.0033628841334807382) + +[03465] +centroid = (0.74750331287875971, -1.2599346865246355) +station = ('keen', 0.0015917238243223805) +zone = ('nhz011', 0.0017691488988667197) + +[03466] +centroid = (0.74857630639630068, -1.2654154741615031) +station = ('keen', 0.0030261675410897053) +zone = ('vtz015', 0.0015222495108538556) + +[03467] +centroid = (0.74993438199386253, -1.2641569172378901) +station = ('keen', 0.0024111124200191895) +zone = ('vtz015', 0.0016276461666291176) + +[03470] +centroid = (0.7465006386767814, -1.262827639572986) +station = ('keen', 0.002512380377437215) +zone = ('nhz011', 0.0029022500080686949) + +[03561] +centroid = (0.77393749377081267, -1.2530612134111387) +station = ('k1v4', 0.0030454760102348738) +zone = ('nhz003', 0.0043446774230000169) + +[03570] +centroid = (0.77675173246989826, -1.2418971624908794) +station = ('kbml', 0.0014172720916574718) +zone = ('nhz002', 0.0021620855352108875) + +[03574] +centroid = (0.77249031911493649, -1.2498163670790008) +station = ('khie', 0.0019960685334405397) +zone = ('nhz003', 0.003371122580694063) + +[03575] +centroid = (0.77342073668588207, -1.2462155084860413) +station = ('kmwn', 0.0015255891982065793) +zone = ('nhz002', 0.0029289340454433693) + +[03576] +centroid = (0.78387004037086461, -1.2459052413049145) +station = ('kbml', 0.0062649959094906926) +zone = ('nhz001', 0.0016790653262507022) + +[03579] +centroid = (0.7847833013552632, -1.2396299274326614) +station = ('kbml', 0.0069383896634776215) +zone = ('mez007', 0.0027922483824250354) + +[03580] +centroid = (0.7707964247159983, -1.2512841191667581) +station = ('khie', 0.0039744215251342821) +zone = ('nhz003', 0.0013771197922833702) + +[03581] +centroid = (0.77300250343722665, -1.2418392699195908) +station = ('kmwn', 0.0018910524651681653) +zone = ('nhz004', 0.0034882202272097807) + +[03582] +centroid = (0.77775442412516904, -1.2468881409264676) +station = ('kbml', 0.0032303365429783106) +zone = ('nhz002', 0.0021626280013254629) + +[03583] +centroid = (0.77486930760515982, -1.2472942092302364) +station = ('khie', 0.0011865088079510884) +zone = ('nhz002', 0.0021976386084444355) + +[03584] +centroid = (0.77638969882315723, -1.248710910437373) +station = ('khie', 0.0020459366588994415) +zone = ('nhz002', 0.00278625618820815) + +[03585] +centroid = (0.77182676238662073, -1.2544933258755702) +station = ('k1v4', 0.0038116007238569961) +zone = ('nhz003', 0.002705062628639648) + +[03586] +centroid = (0.77175684449678583, -1.2531505917221335) +station = ('khie', 0.0040581475697643882) +zone = ('nhz003', 0.0022155499259471343) + +[03588] +centroid = (0.77881897024913049, -1.2428811791231538) +station = ('kbml', 0.00077833380368845973) +zone = ('nhz002', 0.0029832891362591945) + +[03590] +centroid = (0.78105105437621347, -1.2475041025260813) +station = ('kbml', 0.0046710327926683054) +zone = ('vtz004', 0.0033836002018551646) + +[03592] +centroid = (0.7874274751720346, -1.2437387117445364) +station = ('cysc', 0.0091094996182904519) +zone = ('nhz001', 0.002461743269746932) + +[03593] +centroid = (0.77321880209142635, -1.2444049388266074) +station = ('kmwn', 0.00061981065668632505) +zone = ('nhz002', 0.0029699799630076074) + +[03595] +centroid = (0.77327377996286417, -1.247863326192727) +station = ('khie', 0.0012565937499508537) +zone = ('nhz002', 0.0036261249026372411) + +[03597] +centroid = (0.78093893442506535, -1.2458595660383898) +station = ('kbml', 0.0037450060294572127) +zone = ('nhz001', 0.0042246344138240797) + +[03598] +centroid = (0.77455788850672647, -1.2501566364699697) +station = ('khie', 0.0010047651156274893) +zone = ('nhz002', 0.0041412813724588807) + +[03601] +centroid = (0.75462743272613508, -1.2616713938501247) +station = ('kvsf', 0.0035067280845163641) +zone = ('nhz007', 0.0023253715824320372) + +[03602] +centroid = (0.75294956044973038, -1.2627032674104888) +station = ('kvsf', 0.0042366396488285867) +zone = ('vtz015', 0.0040465631459829718) + +[03603] +centroid = (0.75479615370492537, -1.2633379214863918) +station = ('kvsf', 0.0024693088397983298) +zone = ('nhz007', 0.0028657717142654047) + +[03604] +centroid = (0.75271395845400368, -1.263214579068153) +station = ('keen', 0.0042095604886377529) +zone = ('vtz015', 0.0036245337154977349) + +[03605] +centroid = (0.7546203990492496, -1.2598636341707867) +station = ('kvsf', 0.0046567864015999317) +zone = ('nhz007', 0.0022266629235075707) + +[03607] +centroid = (0.75392132487065577, -1.2613207048435218) +station = ('kvsf', 0.0041392667862890529) +zone = ('nhz007', 0.002933342675031409) + +[03608] +centroid = (0.75182684250179987, -1.2635472737301683) +station = ('keen', 0.0034947636088092783) +zone = ('vtz015', 0.0028128624020356693) + +[03609] +centroid = (0.75300356093678711, -1.2644280541371873) +station = ('kvsf', 0.003705972649729908) +zone = ('vtz015', 0.0033938724395165048) + +[03740] +centroid = (0.77116189666136603, -1.2562670341812019) +station = ('k1v4', 0.0040826726544636316) +zone = ('nhz003', 0.0032352734093590925) + +[03741] +centroid = (0.76227153851755725, -1.2567911391022832) +station = ('kleb', 0.0037478908133746322) +zone = ('nhz005', 0.001396857161963295) + +[03743] +centroid = (0.75678741730181831, -1.26234304890617) +station = ('kvsf', 0.0024151225182374135) +zone = ('nhz007', 0.0013276932924710376) + +[03745] +centroid = (0.75880728684515131, -1.2624690791314561) +station = ('kleb', 0.0027719061320552849) +zone = ('nhz007', 0.0024610991549486498) + +[03746] +centroid = (0.75912006730040127, -1.261125193060713) +station = ('kleb', 0.0024850668746494785) +zone = ('nhz007', 0.0023659644986618834) + +[03748] +centroid = (0.76077210870387635, -1.2589396568647808) +station = ('kleb', 0.002260256215879523) +zone = ('nhz005', 0.0035469875207803864) + +[03750] +centroid = (0.76285179068067532, -1.2600412737820548) +station = ('kleb', 0.0018607402333512557) +zone = ('nhz005', 0.0034994899799687743) + +[03751] +centroid = (0.75834124902828381, -1.2582481923217257) +station = ('kleb', 0.0041436972566840065) +zone = ('nhz007', 0.0022595236910826319) + +[03752] +centroid = (0.7552440226442797, -1.2583908555347838) +station = ('kleb', 0.0067894410298471415) +zone = ('nhz007', 0.0021910125213159735) + +[03753] +centroid = (0.75950777474043918, -1.259239225177593) +station = ('kleb', 0.0027915238371631628) +zone = ('nhz007', 0.0028663613289819498) + +[03754] +centroid = (0.75707951560543196, -1.2590524225877522) +station = ('kleb', 0.0049121159620341892) +zone = ('nhz007', 0.001101791277364881) + +[03755] +centroid = (0.76342417140886687, -1.2590654078373871) +station = ('kleb', 0.0027662290044999055) +zone = ('nhz005', 0.0028083003307596641) + +[03765] +centroid = (0.76855969801310497, -1.2575132690802959) +station = ('k1p1', 0.005820805625847145) +zone = ('nhz003', 0.0038963926238990698) + +[03766] +centroid = (0.76154476596373433, -1.260751605334324) +station = ('kleb', 0.00081166841425780306) +zone = ('nhz007', 0.0047521085243243597) + +[03768] +centroid = (0.76473995767865288, -1.2582778803723023) +station = ('kleb', 0.0041177422880352404) +zone = ('nhz005', 0.0027724873891375942) + +[03770] +centroid = (0.75976451267340761, -1.2611542353394665) +station = ('kleb', 0.0018553806156494067) +zone = ('nhz007', 0.0030046450459392296) + +[03771] +centroid = (0.77312263444964147, -1.2562993227723638) +station = ('k1v4', 0.0021421270090497204) +zone = ('vtz007', 0.0033015377453876563) + +[03773] +centroid = (0.75695882608765652, -1.260083981988851) +station = ('kleb', 0.0047665542693825008) +zone = ('nhz007', 0.00035450253451136261) + +[03774] +centroid = (0.76968588916624692, -1.256383552362065) +station = ('k1v4', 0.0055449119106266587) +zone = ('nhz003', 0.002934496452841621) + +[03777] +centroid = (0.76595835457617756, -1.2577041208340016) +station = ('kleb', 0.0053423588887111118) +zone = ('nhz005', 0.003400479205901931) + +[03779] +centroid = (0.76727454227169156, -1.2566618102047105) +station = ('k1p1', 0.0044563610048207938) +zone = ('nhz003', 0.0039216152532307634) + +[03780] +centroid = (0.76876248781889434, -1.2564443247266195) +station = ('k1p1', 0.0055301438056762856) +zone = ('nhz003', 0.003101901279345788) + +[03781] +centroid = (0.76026643445969611, -1.2618618441781024) +station = ('kleb', 0.0012789215717542847) +zone = ('nhz007', 0.0036054007090434801) + +[03782] +centroid = (0.75729989833008127, -1.2582624691150071) +station = ('kleb', 0.0049880123820109827) +zone = ('nhz007', 0.0017145018937127143) + +[03784] +centroid = (0.76162971113842892, -1.2619848375304905) +station = ('kleb', 0.00011690117476615622) +zone = ('vtz012', 0.0036711761184280065) + +[03785] +centroid = (0.76870436835480283, -1.2551046623526663) +station = ('k1p1', 0.005026228763255796) +zone = ('nhz003', 0.0022176445296013246) + +[03801] +centroid = (0.75179729407756368, -1.2357881086831712) +station = ('kpsm', 0.00020637635482134928) +zone = ('nhz014', 0.0013316362156579919) + +[03809] +centroid = (0.75848249852464777, -1.2426592605087627) +station = ('klci', 0.003344980983922663) +zone = ('nhz009', 0.0030313735876008872) + +[03810] +centroid = (0.75945637479396788, -1.2443127330822248) +station = ('klci', 0.0018083410049565733) +zone = ('nhz009', 0.0016406595794524451) + +[03811] +centroid = (0.74768549034608278, -1.242086600527891) +station = ('klwm', 0.0021803536765838019) +zone = ('maz006', 0.0025165326335726767) + +[03812] +centroid = (0.76936085649964803, -1.2443715332247243) +station = ('kmwn', 0.0032384104221822745) +zone = ('nhz004', 0.0017274536186940854) + +[03813] +centroid = (0.77016821090503562, -1.24024585412569) +station = ('kizg', 0.0028730945093828225) +zone = ('nhz004', 0.0014034248894702352) + +[03814] +centroid = (0.76394696733300926, -1.2423516287748062) +station = ('klci', 0.0046394623647015177) +zone = ('nhz006', 0.000579054951229933) + +[03816] +centroid = (0.7624734382054279, -1.2438787220571312) +station = ('klci', 0.0028027326151031417) +zone = ('nhz006', 0.0012916510868045672) + +[03817] +centroid = (0.76597561588247975, -1.243187589126634) +station = ('kizg', 0.0038921404308285166) +zone = ('nhz006', 0.0023880697981781729) + +[03818] +centroid = (0.7672386059423929, -1.2439890094125647) +station = ('kizg', 0.0041073638130161997) +zone = ('nhz004', 0.0026980458772244181) + +[03819] +centroid = (0.74923338795309158, -1.2412813754241907) +station = ('klwm', 0.0036907497620880178) +zone = ('nhz013', 0.0012707063457915728) + +[03820] +centroid = (0.75381931037587679, -1.2372230834875759) +station = ('kdaw', 0.0016588852308312939) +zone = ('nhz010', 0.0025922070807766606) + +[03823] +centroid = (0.75353904540459149, -1.2381619309988088) +station = ('kdaw', 0.0019236327008936484) +zone = ('nhz010', 0.0024183150515072385) + +[03824] +centroid = (0.75253965242160692, -1.237759929312197) +station = ('kpsm', 0.0014261338111444363) +zone = ('nhz014', 0.0023358797566184176) + +[03825] +centroid = (0.75425396717279336, -1.2398640808051089) +station = ('kdaw', 0.0019535956891919637) +zone = ('nhz010', 0.0014352485851677479) + +[03826] +centroid = (0.74857175108695306, -1.2414644779160176) +station = ('klwm', 0.003025463785986345) +zone = ('nhz013', 0.0017850850079744356) + +[03827] +centroid = (0.7488115069662995, -1.2391064508301106) +station = ('klwm', 0.0037110328344538324) +zone = ('nhz013', 0.002768224804344019) + +[03830] +centroid = (0.76120027287597569, -1.2390877758071144) +station = ('ksfm', 0.0051247171043554158) +zone = ('mez018', 0.0028931692896801155) + +[03832] +centroid = (0.76632101654144946, -1.2400131493765219) +station = ('kizg', 0.0018106902765080161) +zone = ('nhz006', 0.003470467487498644) + +[03833] +centroid = (0.75011484903851866, -1.2389659867319101) +station = ('kpsm', 0.0028468703808605627) +zone = ('nhz013', 0.0024784064734295493) + +[03835] +centroid = (0.75699397701879179, -1.240636912597892) +station = ('kdaw', 0.0026265515927665823) +zone = ('nhz010', 0.0014783206620805048) + +[03836] +centroid = (0.76518821059044262, -1.240494895156657) +station = ('kizg', 0.0029248891975821867) +zone = ('nhz006', 0.0024038732878873055) + +[03837] +centroid = (0.75786124857740034, -1.2450495936391244) +station = ('klci', 0.0027191847236138302) +zone = ('nhz009', 0.0020149070686524407) + +[03838] +centroid = (0.7699055039460253, -1.2431185788080101) +station = ('kmwn', 0.002850585975325815) +zone = ('nhz004', 0.00090820917495711465) + +[03839] +centroid = (0.75508168957055166, -1.239030232301676) +station = ('kdaw', 0.0010115175139365634) +zone = ('nhz010', 0.00077266895023105824) + +[03840] +centroid = (0.75118503257596414, -1.2364893645233304) +station = ('kpsm', 0.00084583234393524598) +zone = ('nhz014', 0.00071644934059659246) + +[03841] +centroid = (0.7484224032628598, -1.2423783148590695) +station = ('klwm', 0.0029455123225730385) +zone = ('nhz013', 0.0018127319501068579) + +[03842] +centroid = (0.74943741694264976, -1.2363341349396577) +station = ('kpsm', 0.002521633463868547) +zone = ('nhz014', 0.00106734285253169) + +[03844] +centroid = (0.74917928274627965, -1.2371983172654901) +station = ('kpsm', 0.0029057598985050424) +zone = ('nhz014', 0.0015092240040160952) + +[03845] +centroid = (0.76961029895634303, -1.2412871699173074) +station = ('kizg', 0.0028989856526653586) +zone = ('nhz004', 0.00050390587365103739) + +[03846] +centroid = (0.77121689198609633, -1.2419027475444859) +station = ('kmwn', 0.0022723487622810013) +zone = ('nhz004', 0.0017020433963606571) + +[03847] +centroid = (0.76919932627737586, -1.2413485531471) +station = ('kizg', 0.0026753840780466766) +zone = ('nhz004', 0.00055083741116858939) + +[03848] +centroid = (0.74898590026515866, -1.2404682439789791) +station = ('klwm', 0.0035234314850998848) +zone = ('nhz013', 0.0018592994855792849) + +[03849] +centroid = (0.7662423894586472, -1.2414504454688315) +station = ('kizg', 0.0026649790777183357) +zone = ('nhz006', 0.0028723257783491198) + +[03850] +centroid = (0.76254545049036526, -1.2443779211297865) +station = ('klci', 0.0026351369376110515) +zone = ('nhz006', 0.0014520989833967898) + +[03851] +centroid = (0.75812310032507702, -1.2396276934112187) +station = ('kdaw', 0.0030202375396537143) +zone = ('nhz010', 0.0024396603502515463) + +[03852] +centroid = (0.75913118504773636, -1.2389401209523956) +station = ('ksfm', 0.0037947803881570046) +zone = ('mez018', 0.0028550632176213894) + +[03853] +centroid = (0.76169879127022277, -1.2441274663821256) +station = ('klci', 0.0021395121778425594) +zone = ('nhz006', 0.002065550900394304) + +[03854] +centroid = (0.75154366283066387, -1.2342768804437472) +station = ('kpsm', 0.0013103499677494153) +zone = ('nhz014', 0.0017512520275257074) + +[03855] +centroid = (0.7585841814068689, -1.2418404392901896) +station = ('klci', 0.0037993078434133375) +zone = ('nhz010', 0.0032928068059225155) + +[03856] +centroid = (0.75116368719921212, -1.2386244607038799) +station = ('kpsm', 0.0020817873971020625) +zone = ('nhz014', 0.0018919575967597413) + +[03857] +centroid = (0.75173816232250612, -1.2383349280342664) +station = ('kpsm', 0.0017297280939247062) +zone = ('nhz014', 0.0019912515622037752) + +[03858] +centroid = (0.74822909059490883, -1.2399851368420272) +station = ('klwm', 0.0029068711334110991) +zone = ('nhz013', 0.0026498275047355108) + +[03860] +centroid = (0.76864717391521498, -1.2412949017258939) +station = ('kizg', 0.0023646299807013474) +zone = ('nhz004', 0.00099699744289918186) + +[03861] +centroid = (0.75256043929299832, -1.2392974073035714) +station = ('kpsm', 0.0024960905963156373) +zone = ('nhz014', 0.0030598165214886911) + +[03862] +centroid = (0.75011313861585172, -1.2362186115964682) +station = ('kpsm', 0.0018408866982502154) +zone = ('nhz014', 0.00038738062473069447) + +[03864] +centroid = (0.76250476686550128, -1.240936271471194) +station = ('kizg', 0.0054863587542963903) +zone = ('nhz006', 0.0018370478004515313) + +[03865] +centroid = (0.74771132121901229, -1.240841709532321) +station = ('klwm', 0.0022198594620141364) +zone = ('maz006', 0.0022202004527928183) + +[03867] +centroid = (0.7557891413295551, -1.2389784832893542) +station = ('kdaw', 0.00097512774454655354) +zone = ('nhz010', 0.00053207170621350581) + +[03868] +centroid = (0.75615065137752069, -1.2381396605975534) +station = ('kdaw', 0.0007739032643048194) +zone = ('nhz010', 0.0012242913313744988) + +[03869] +centroid = (0.75432859745160863, -1.2364455567591053) +station = ('kdaw', 0.0014498746491692451) +zone = ('nhz010', 0.002727195375701469) + +[03870] +centroid = (0.75064253188456664, -1.2349658317126793) +station = ('kpsm', 0.0015009124513329405) +zone = ('nhz014', 0.00091440720955563392) + +[03871] +centroid = (0.75015905822847173, -1.2352980027759188) +station = ('kpsm', 0.0018559836057881463) +zone = ('nhz014', 0.00074345413473345416) + +[03872] +centroid = (0.76044971148444807, -1.2399383271114888) +station = ('ksfm', 0.0050953748723976261) +zone = ('mez018', 0.0033553007430310463) + +[03873] +centroid = (0.74933997521051088, -1.2423882806890982) +station = ('kmht', 0.0031911248437883899) +zone = ('nhz013', 0.00089548276035131291) + +[03874] +centroid = (0.74845168988770827, -1.2367546720229257) +station = ('kpsm', 0.003539519069683215) +zone = ('nhz014', 0.0020883251374256015) + +[03875] +centroid = (0.76611363651972753, -1.2424872408576861) +station = ('kizg', 0.0033786876424973843) +zone = ('nhz006', 0.0025470712249227936) + +[03878] +centroid = (0.75491556913234681, -1.2372280227693593) +station = ('kdaw', 0.0006362374748976878) +zone = ('nhz010', 0.0019536711056576052) + +[03882] +centroid = (0.76352452784085656, -1.2399152364054848) +station = ('kizg', 0.0042883527759196701) +zone = ('nhz006', 0.0022186317534698885) + +[03883] +centroid = (0.76460321113175911, -1.2447746868286425) +station = ('klci', 0.0043930152365813215) +zone = ('nhz006', 0.0016407383063078089) + +[03884] +centroid = (0.75530168832276556, -1.2421332182722118) +station = ('kdaw', 0.0032089529713456872) +zone = ('nhz010', 0.0018154487655607841) + +[03885] +centroid = (0.75075332538548334, -1.2374835738784362) +station = ('kpsm', 0.0016196876043003971) +zone = ('nhz014', 0.00097142578979016463) + +[03886] +centroid = (0.76557188631990847, -1.2443511303257686) +station = ('kizg', 0.0048229854665233184) +zone = ('nhz006', 0.0022117251617417826) + +[03887] +centroid = (0.7592118890723486, -1.2403720763371942) +station = ('kdaw', 0.004235590899823549) +zone = ('nhz010', 0.003562076537895083) + +[03890] +centroid = (0.76446471925561332, -1.2427004153725247) +station = ('kizg', 0.0044918678667477821) +zone = ('nhz006', 0.00089658092100582207) + +[03894] +centroid = (0.76102940514220541, -1.2422754276996641) +station = ('klci', 0.0030966553299182557) +zone = ('nhz006', 0.0026135093064704297) + +[03901] +centroid = (0.7557159073141414, -1.236427492601347) +station = ('kdaw', 0.00098786027447917237) +zone = ('mez023', 0.0031264441847018002) + +[03902] +centroid = (0.75424257017277785, -1.232705211452326) +station = ('kpsm', 0.0033160814185688985) +zone = ('mez023', 0.0021075833763067333) + +[03903] +centroid = (0.7530493932829444, -1.235246009417502) +station = ('kpsm', 0.0012278653945881409) +zone = ('nhz014', 0.0026428197875169273) + +[03904] +centroid = (0.75237742406763419, -1.2344468580595986) +station = ('kpsm', 0.0012024905956150649) +zone = ('nhz014', 0.0022729927898184092) + +[03905] +centroid = (0.75199594745302567, -1.2337182005501837) +station = ('kpsm', 0.0016555647757228917) +zone = ('nhz014', 0.0023514762039527613) + +[03906] +centroid = (0.75661960389423899, -1.2353221406794739) +station = ('ksfm', 0.0011611743939469665) +zone = ('mez023', 0.0022823413658419416) + +[03907] +centroid = (0.75495714287512938, -1.2323992377811592) +station = ('ksfm', 0.0028494642546667008) +zone = ('mez023', 0.001368949880891022) + +[03908] +centroid = (0.75451442265706847, -1.2348627874736415) +station = ('kpsm', 0.0026954892000493878) +zone = ('mez023', 0.0026426356100935481) + +[03909] +centroid = (0.7533968534304315, -1.2335813318302424) +station = ('kpsm', 0.0022759856802883499) +zone = ('mez023', 0.003088082907190726) + +[03910] +centroid = (0.75372583054113984, -1.232262753033653) +station = ('kpsm', 0.0032468667092237047) +zone = ('mez023', 0.0025936741546609566) + +[03911] +centroid = (0.75297383797962558, -1.2326624334323599) +station = ('kpsm', 0.0026336177196204127) +zone = ('mez023', 0.0033615084687737946) + +[04001] +centroid = (0.75956449794112901, -1.2378513671117091) +station = ('ksfm', 0.0033542855745598201) +zone = ('mez018', 0.0019607778703349338) + +[04002] +centroid = (0.75902744267699784, -1.2332829154347362) +station = ('ksfm', 0.0017023913577567692) +zone = ('mez018', 0.001913919101161059) + +[04003] +centroid = (0.76318467732890816, -1.2209782220351286) +station = ('kiwi', 0.0051577879797404316) +zone = ('mez024', 0.0029054474851574405) + +[04005] +centroid = (0.75908077993893885, -1.2302017460798504) +station = ('ksfm', 0.0033429669484421726) +zone = ('mez023', 0.0031235924896566522) + +[04006] +centroid = (0.75824593659783235, -1.2277443573996276) +station = ('kpwm', 0.0036342838679618529) +zone = ('mez023', 0.0037747971334162866) + +[04008] +centroid = (0.76854245416009537, -1.2194100262489191) +station = ('kiwi', 0.0022260799908692202) +zone = ('mez025', 0.0011147934566749773) + +[04009] +centroid = (0.76875192857691976, -1.2344438735465779) +station = ('kizg', 0.0029900378273928527) +zone = ('mez019', 0.0037984965011739267) + +[04010] +centroid = (0.7667370855818324, -1.2377627916521703) +station = ('kizg', 0.00099824593754027158) +zone = ('nhz004', 0.0041114317201219035) + +[04011] +centroid = (0.76613725082450701, -1.2212659744689049) +station = ('kiwi', 0.0034517883083537682) +zone = ('mez025', 0.0019120441219710787) + +[04015] +centroid = (0.76753100095197957, -1.2308255442078058) +station = ('klew', 0.0032500544523471112) +zone = ('mez019', 0.0014165286116925913) + +[04017] +centroid = (0.76338877613163636, -1.2232732776416237) +station = ('kpwm', 0.0030888379219557909) +zone = ('mez024', 0.0012350871136251602) + +[04019] +centroid = (0.76246830693742718, -1.2235253380921967) +station = ('kpwm', 0.0025681452555220336) +zone = ('mez024', 0.0014661551951657705) + +[04020] +centroid = (0.763881500032767, -1.2358477814902971) +station = ('kizg', 0.004169493491120814) +zone = ('mez018', 0.0036538299830796012) + +[04021] +centroid = (0.764319630034895, -1.2263822500914936) +station = ('kpwm', 0.0025190476505920984) +zone = ('mez024', 0.0013092691563484555) + +[04022] +centroid = (0.76785114669667287, -1.2359470034582729) +station = ('kizg', 0.0017122965980133084) +zone = ('mez012', 0.0050193610693571901) + +[04024] +centroid = (0.76508811595784065, -1.2336902578288591) +station = ('kizg', 0.0042030850140535158) +zone = ('mez019', 0.0024316375115893182) + +[04027] +centroid = (0.7574713071159197, -1.2376615800088471) +station = ('kdaw', 0.0020352257081152751) +zone = ('nhz010', 0.0023198118741082547) + +[04029] +centroid = (0.76624373336217122, -1.233765638599253) +station = ('kizg', 0.003563778338936736) +zone = ('mez019', 0.0022577972106263538) + +[04030] +centroid = (0.7607726497559445, -1.2338827676453541) +station = ('ksfm', 0.0033098396485289365) +zone = ('mez018', 0.0011634643218399339) + +[04032] +centroid = (0.76521348295801139, -1.223330925866817) +station = ('kpwm', 0.0042782551062800099) +zone = ('mez024', 0.0020911913289099913) + +[04037] +centroid = (0.76959167629322422, -1.2382519027217491) +station = ('kizg', 0.0019381609263337939) +zone = ('nhz004', 0.0026760173319735842) + +[04038] +centroid = (0.76277201168056663, -1.22982496440093) +station = ('kpwm', 0.0022693287767855371) +zone = ('mez019', 0.0033998756386707527) + +[04039] +centroid = (0.76627897155976887, -1.2281363059897479) +station = ('klew', 0.0027475897663048979) +zone = ('mez019', 0.0018087103277453069) + +[04040] +centroid = (0.77044858059607602, -1.2360448640694324) +station = ('kizg', 0.0032344447606905791) +zone = ('mez012', 0.0028014427432958167) + +[04041] +centroid = (0.76530790527054438, -1.2362440934035475) +station = ('kizg', 0.0027786952186401627) +zone = ('mez019', 0.0041231260287646395) + +[04042] +centroid = (0.76150493755020388, -1.2324532382682156) +station = ('ksfm', 0.0042348309616830225) +zone = ('mez018', 0.0024246468110200921) + +[04043] +centroid = (0.75735555687992739, -1.2318009214602827) +station = ('ksfm', 0.0017751861768872082) +zone = ('mez023', 0.0010783912231167655) + +[04046] +centroid = (0.75798741842902695, -1.2300053092725387) +station = ('ksfm', 0.0031178502318116421) +zone = ('mez023', 0.0023136838178890689) + +[04047] +centroid = (0.76328112422337346, -1.2374236741785076) +station = ('kizg', 0.0044194282948921519) +zone = ('mez018', 0.0033949748920503761) + +[04048] +centroid = (0.76250783864498484, -1.2353769091114013) +station = ('ksfm', 0.0051020924362181535) +zone = ('mez018', 0.002260298166147234) + +[04049] +centroid = (0.76349435109808961, -1.2339997919717003) +station = ('kizg', 0.0051927413115943344) +zone = ('mez018', 0.0033832091152014836) + +[04050] +centroid = (0.76246347237539902, -1.2244168697274078) +station = ('kpwm', 0.0019480070985714571) +zone = ('mez024', 0.0011057816501106443) + +[04051] +centroid = (0.77130412354211098, -1.237190655270074) +station = ('kizg', 0.0037378082070149842) +zone = ('mez012', 0.0029569014058022343) + +[04055] +centroid = (0.76752196014645424, -1.2328883313974452) +station = ('kizg', 0.0039043909701962634) +zone = ('mez019', 0.0021427356218342276) + +[04056] +centroid = (0.76200740038856041, -1.2370456009559407) +station = ('ksfm', 0.0049702321877440831) +zone = ('mez018', 0.0021595643205525048) + +[04057] +centroid = (0.76971728763949021, -1.233928914150777) +station = ('kizg', 0.0037656184521607794) +zone = ('mez012', 0.0028412700335174934) + +[04061] +centroid = (0.76158305848752306, -1.2346770320813518) +station = ('ksfm', 0.0041224374271851836) +zone = ('mez018', 0.0014130378248467306) + +[04062] +centroid = (0.76436151793694285, -1.2288048019998468) +station = ('kpwm', 0.0028534561005745768) +zone = ('mez019', 0.0022003856556738976) + +[04063] +centroid = (0.75920344167876896, -1.2286104072277597) +station = ('kpwm', 0.0028896352988827412) +zone = ('mez023', 0.0038935281812343277) + +[04064] +centroid = (0.75965532487540288, -1.2285067172168986) +station = ('kpwm', 0.0024496828200981165) +zone = ('mez023', 0.0042856704419549493) + +[04066] +centroid = (0.76391574339269108, -1.221127273153249) +station = ('kiwi', 0.0046564593105218894) +zone = ('mez024', 0.0028124478341545298) + +[04068] +centroid = (0.7651321506148685, -1.2382595298105805) +station = ('kizg', 0.0025221057490480985) +zone = ('nhz006', 0.0037426046773918441) + +[04069] +centroid = (0.76626785381243379, -1.2249072897939257) +station = ('klew', 0.0028495807415667832) +zone = ('mez024', 0.0027757707637080858) + +[04071] +centroid = (0.76668908902740263, -1.2295886817267951) +station = ('klew', 0.0029871517638222849) +zone = ('mez019', 0.00094496481126925269) + +[04072] +centroid = (0.76009806254675616, -1.2298696622830736) +station = ('kpwm', 0.0027278740033059795) +zone = ('mez018', 0.0039499821798552525) + +[04073] +centroid = (0.75779829455128089, -1.2347811933311108) +station = ('ksfm', 0.00051109487317938776) +zone = ('mez018', 0.0024802259000244143) + +[04074] +centroid = (0.76078251086621829, -1.2281217150372012) +station = ('kpwm', 0.0013452651709985176) +zone = ('mez024', 0.0035382877828776952) + +[04076] +centroid = (0.76016099911958313, -1.2362655085934695) +station = ('ksfm', 0.0030641608161932924) +zone = ('mez018', 0.00069349275876563743) + +[04079] +centroid = (0.7642899943441962, -1.221233581157988) +station = ('kiwi', 0.0044412072469663683) +zone = ('mez024', 0.002818330942887724) + +[04083] +centroid = (0.75859201793521025, -1.2359444029176874) +station = ('ksfm', 0.0016693650125924567) +zone = ('mez018', 0.0017174962922890597) + +[04084] +centroid = (0.76379355289175888, -1.2316209082012322) +station = ('kpwm', 0.0038925741823399433) +zone = ('mez019', 0.0024333000472890401) + +[04085] +centroid = (0.76398855852908421, -1.2324906755806708) +station = ('kpwm', 0.0045361819094858653) +zone = ('mez019', 0.0025170340055055878) + +[04086] +centroid = (0.76733360421357899, -1.2209559690871656) +station = ('kiwi', 0.0030019444651808208) +zone = ('mez025', 0.0011887817544502638) + +[04087] +centroid = (0.76043876827003809, -1.2347161623631815) +station = ('ksfm', 0.0029860387755397096) +zone = ('mez018', 0.00047475595870372214) + +[04088] +centroid = (0.77148497455920262, -1.234338071687322) +station = ('kizg', 0.0047768989499022722) +zone = ('mez012', 0.0012331130030858168) + +[04090] +centroid = (0.75627615800403158, -1.2329980777008107) +station = ('ksfm', 0.0014985291955179646) +zone = ('mez023', 0.00057399450725387864) + +[04091] +centroid = (0.76514103434076108, -1.2347189897965696) +station = ('kizg', 0.0036071661551319674) +zone = ('mez019', 0.0031018374168258474) + +[04092] +centroid = (0.76284758443717793, -1.227884751684658) +station = ('kpwm', 0.0012099265507243509) +zone = ('mez024', 0.0021981785422902638) + +[04093] +centroid = (0.7615986268244509, -1.2311348514578442) +station = ('kpwm', 0.0030258022927641174) +zone = ('mez018', 0.003315643066831559) + +[04095] +centroid = (0.76146811110298673, -1.237557715465061) +station = ('ksfm', 0.004664251715949733) +zone = ('mez018', 0.0020308571046522626) + +[04096] +centroid = (0.76424161381733091, -1.2245133515284581) +station = ('kpwm', 0.0029881949028112689) +zone = ('mez024', 0.00082044351902985015) + +[04097] +centroid = (0.76534429538544835, -1.2258164492545822) +station = ('klew', 0.0035278834582762849) +zone = ('mez024', 0.0019484133086252453) + +[04101] +centroid = (0.76205625215432382, -1.2262325357482575) +station = ('kpwm', 0.00057477649785428909) +zone = ('mez024', 0.0016991244886300407) + +[04102] +centroid = (0.76197544340995649, -1.2270415307631419) +station = ('kpwm', 0.00014944365140341238) +zone = ('mez024', 0.0021283175029997753) + +[04103] +centroid = (0.76260643229442993, -1.2267582638255432) +station = ('kpwm', 0.00078479760132179872) +zone = ('mez024', 0.0015629808226185384) + +[04105] +centroid = (0.76341537494943679, -1.2265680403903683) +station = ('kpwm', 0.0016052163274020289) +zone = ('mez024', 0.0011521897319504693) + +[04106] +centroid = (0.76151162216123891, -1.2267219260705167) +station = ('kpwm', 0.00036970307864660191) +zone = ('mez024', 0.0023487177589834253) + +[04107] +centroid = (0.76073968048637441, -1.2258577611979766) +station = ('kpwm', 0.0013589083048526785) +zone = ('mez024', 0.0028256559248482148) + +[04108] +centroid = (0.76201520201031681, -1.2249776963759513) +station = ('kpwm', 0.0014499784387243982) +zone = ('mez024', 0.0014773340911027296) + +[04109] +centroid = (0.76161854103121618, -1.2247224245195545) +station = ('kpwm', 0.0016384122257742052) +zone = ('mez024', 0.001882998928752666) + +[04110] +centroid = (0.76351220581633739, -1.2248732035136343) +station = ('kpwm', 0.0022581712335833309) +zone = ('mez024', 7.7373926180051428e-05) + +[04210] +centroid = (0.76942031986726345, -1.2260876734203421) +station = ('klew', 0.00073606334129277585) +zone = ('mez020', 0.0015204579443700416) + +[04216] +centroid = (0.78031250084993953, -1.2366593595924744) +station = ('kbml', 0.004622390281741523) +zone = ('mez007', 0.002365287484090808) + +[04217] +centroid = (0.77457886736433545, -1.2359590811366967) +station = ('kbml', 0.0057958514193029616) +zone = ('mez012', 0.0027236371273128804) + +[04219] +centroid = (0.77493936512133477, -1.2314713334843361) +station = ('klew', 0.0070204840472074762) +zone = ('mez012', 0.0027847710802420471) + +[04220] +centroid = (0.77394416092855511, -1.2278693578806554) +station = ('klew', 0.0051975776456188267) +zone = ('mez020', 0.0036159753150167245) + +[04221] +centroid = (0.77601403415495784, -1.2269762903557024) +station = ('klew', 0.0071997208627896875) +zone = ('mez013', 0.0037063668849318014) + +[04222] +centroid = (0.76732707668217648, -1.2239400283224704) +station = ('klew', 0.0024683397808264204) +zone = ('mez020', 0.003638197341079365) + +[04224] +centroid = (0.7777178943839248, -1.2289866653079047) +station = ('klew', 0.0090527161097967764) +zone = ('mez013', 0.0033652513193720372) + +[04226] +centroid = (0.77837970578298854, -1.2335448195422907) +station = ('kbml', 0.0062995188753780951) +zone = ('mez007', 0.0049591695371753964) + +[04227] +centroid = (0.77786048778381278, -1.2268467171120343) +station = ('kaug', 0.0075512215111138243) +zone = ('mez013', 0.0020797192011124906) + +[04228] +centroid = (0.77551068119868272, -1.2237419683589541) +station = ('kaug', 0.0044299221716887858) +zone = ('mez013', 0.0039895747609565834) + +[04231] +centroid = (0.77253576748865838, -1.2370113925026018) +station = ('kizg', 0.0049701397144277853) +zone = ('mez012', 0.0025577049511600301) + +[04234] +centroid = (0.77883277580351384, -1.22507964105756) +station = ('kaug', 0.007250136719011085) +zone = ('mez013', 0.00059402759804693468) + +[04236] +centroid = (0.7712567029463343, -1.2242627397011643) +station = ('klew', 0.0029916275375401792) +zone = ('mez020', 0.00085657615160158053) + +[04237] +centroid = (0.77657700755848114, -1.2345531835176302) +station = ('kbml', 0.0057922134982551507) +zone = ('mez012', 0.0041177858989392933) + +[04238] +centroid = (0.77159709451035075, -1.2285176778846012) +station = ('klew', 0.0030780112553136911) +zone = ('mez020', 0.0024311607141288892) + +[04239] +centroid = (0.7769664254211861, -1.2252593052507603) +station = ('kaug', 0.0061115260796050629) +zone = ('mez013', 0.0024600904317441637) + +[04240] +centroid = (0.76950858116753673, -1.2247356715685771) +station = ('klew', 0.0015557132430641062) +zone = ('mez020', 0.0013836155865674454) + +[04250] +centroid = (0.76812847951481478, -1.2239552475935478) +station = ('klew', 0.0020736718628255918) +zone = ('mez020', 0.0028704725910345904) + +[04252] +centroid = (0.76858519727347663, -1.2227567125429106) +station = ('klew', 0.0028264986164974141) +zone = ('mez025', 0.0027353245158148248) + +[04253] +centroid = (0.77499821762371213, -1.2254927081316296) +station = ('klew', 0.0062385321808190964) +zone = ('mez020', 0.0041688630988122909) + +[04254] +centroid = (0.77571163840875734, -1.2241340565754146) +station = ('kaug', 0.0047711104475501994) +zone = ('mez013', 0.0037421790215882785) + +[04255] +centroid = (0.77396208545997314, -1.2334212153246644) +station = ('klew', 0.0070608304316325775) +zone = ('mez012', 0.0014253159797504469) + +[04256] +centroid = (0.76977566890296956, -1.2287934748130014) +station = ('klew', 0.0017980481995153045) +zone = ('mez020', 0.00272077671178045) + +[04257] +centroid = (0.77760289463951093, -1.2303833126819357) +station = ('klew', 0.0091773387928992013) +zone = ('mez013', 0.0043010634497203425) + +[04258] +centroid = (0.77035237804770595, -1.2276006120824332) +station = ('klew', 0.0016724581295725072) +zone = ('mez020', 0.00171907818098935) + +[04259] +centroid = (0.77202030194737437, -1.2219874412218019) +station = ('kaug', 0.0030506884316224172) +zone = ('mez020', 0.0026554871435251061) + +[04260] +centroid = (0.76720324557174757, -1.2268968429681515) +station = ('klew', 0.0016221167124352393) +zone = ('mez019', 0.0029029716310860145) + +[04261] +centroid = (0.77673029982668385, -1.2385113110084731) +station = ('kbml', 0.003092640812885281) +zone = ('mez012', 0.0055427045080982135) + +[04263] +centroid = (0.77309971827656276, -1.2240530558448295) +station = ('klew', 0.0046770898170150404) +zone = ('mez020', 0.0024376329898190287) + +[04265] +centroid = (0.77281879008016174, -1.2224782627140476) +station = ('kaug', 0.0031030059394499599) +zone = ('mez020', 0.0028349519286391149) + +[04267] +centroid = (0.77155056403249267, -1.2355596625373779) +station = ('kizg', 0.0043689934712487733) +zone = ('mez012', 0.0018109226885593115) + +[04268] +centroid = (0.77188699369910707, -1.2323773513523391) +station = ('klew', 0.0051152414161670118) +zone = ('mez012', 0.0010008345813273432) + +[04270] +centroid = (0.76999275295533254, -1.2309367042278654) +station = ('klew', 0.0032787301467016869) +zone = ('mez012', 0.0031134946380591967) + +[04271] +centroid = (0.77254575077197973, -1.2304255321965412) +station = ('klew', 0.0045975596988525481) +zone = ('mez012', 0.0021587182735781671) + +[04274] +centroid = (0.76878447896746938, -1.2285994465600572) +station = ('klew', 0.0013831669943515639) +zone = ('mez019', 0.0030404235237539343) + +[04275] +centroid = (0.78020041580537647, -1.2330127384665277) +station = ('kbml', 0.006982592319699589) +zone = ('mez007', 0.0037874772126317733) + +[04276] +centroid = (0.77771791183721728, -1.2326442471015542) +station = ('kbml', 0.0069499884555861424) +zone = ('mez012', 0.0052121597786768791) + +[04280] +centroid = (0.770036874878823, -1.2227664689334294) +station = ('klew', 0.0030612662944510117) +zone = ('mez020', 0.001983994839976801) + +[04281] +centroid = (0.77227330487574353, -1.2302968316174991) +station = ('klew', 0.0043236329267404335) +zone = ('mez012', 0.0022665382284581159) + +[04282] +centroid = (0.77257186089758967, -1.2260585438751261) +station = ('klew', 0.0037803332907914667) +zone = ('mez020', 0.0018232326263385086) + +[04284] +centroid = (0.774271741775862, -1.2227991414970267) +station = ('kaug', 0.0033575705502780929) +zone = ('mez020', 0.0038782597534308002) + +[04285] +centroid = (0.7801187693029682, -1.2295665684051722) +station = ('kaug', 0.010461019282425557) +zone = ('mez013', 0.0033900043136159109) + +[04286] +centroid = (0.77495128572012595, -1.2368289532358907) +station = ('kbml', 0.0050772551261893057) +zone = ('mez012', 0.0034214455900141673) + +[04287] +centroid = (0.76908636856818691, -1.2212938299237668) +station = ('kiwi', 0.0036717476547296559) +zone = ('mez025', 0.0021861834193250356) + +[04289] +centroid = (0.77351732320668742, -1.2308523873717017) +station = ('klew', 0.005573064150698262) +zone = ('mez012', 0.0020956537541815183) + +[04290] +centroid = (0.77621280970346751, -1.2292393191704232) +station = ('klew', 0.0076197820052547761) +zone = ('mez013', 0.0044481732771824763) + +[04292] +centroid = (0.77468025354058379, -1.2295774068998271) +station = ('klew', 0.006220662846315588) +zone = ('mez012', 0.0034970700608340315) + +[04294] +centroid = (0.77907857052207219, -1.2265377065679688) +station = ('kaug', 0.0081542395750958813) +zone = ('mez013', 0.0012099175248531954) + +[04330] +centroid = (0.77408624818296001, -1.2173259460424053) +station = ('kaug', 0.00089715980720368803) +zone = ('mez021', 0.0010315299216957039) + +[04342] +centroid = (0.76944732011079175, -1.2171406269824285) +station = ('kiwi', 0.0020998195028448649) +zone = ('mez025', 0.0025498643977714701) + +[04343] +centroid = (0.77368333892513708, -1.2198352059079975) +station = ('kaug', 0.001160812776067655) +zone = ('mez021', 0.0020918972959728093) + +[04344] +centroid = (0.77249229133699115, -1.2187251066905591) +station = ('kaug', 0.0010392350185780544) +zone = ('mez021', 0.0027042054748675159) + +[04345] +centroid = (0.77134934502303021, -1.218133614607058) +station = ('kaug', 0.0021237644678863089) +zone = ('mez021', 0.0037540184585604674) + +[04346] +centroid = (0.77207444206077125, -1.217390819930702) +station = ('kaug', 0.0015237973390088348) +zone = ('mez021', 0.00302054700606389) + +[04347] +centroid = (0.77295817207422601, -1.2185546752891017) +station = ('kaug', 0.00056083356926815773) +zone = ('mez021', 0.0022228224709558882) + +[04348] +centroid = (0.77162514195143039, -1.212989029744002) +station = ('kiwi', 0.0050596740677983911) +zone = ('mez026', 0.0024309195139042756) + +[04349] +centroid = (0.77551972200420805, -1.2229004404068127) +station = ('kaug', 0.0039104572383846341) +zone = ('mez013', 0.0041471511050240155) + +[04350] +centroid = (0.77094935046505819, -1.2205872857359743) +station = ('kaug', 0.0030315743496705932) +zone = ('mez025', 0.0036370854864274322) + +[04351] +centroid = (0.77392328679070133, -1.2193264075244561) +station = ('kaug', 0.00089891056005983135) +zone = ('mez021', 0.0016625112387896497) + +[04352] +centroid = (0.77608662239854831, -1.2210401986768669) +station = ('kaug', 0.0032927039802534063) +zone = ('mez021', 0.002606892882487769) + +[04353] +centroid = (0.77140146055449477, -1.215091732613635) +station = ('kaug', 0.0030610026340002435) +zone = ('mez026', 0.0023486277264592788) + +[04354] +centroid = (0.77485836439074973, -1.2117930952339504) +station = ('kwvl', 0.0039552065884016895) +zone = ('mez022', 0.0041017784028221718) + +[04355] +centroid = (0.77460454115763233, -1.2207835829169462) +station = ('kaug', 0.0021429167939271223) +zone = ('mez021', 0.0022786245290659641) + +[04357] +centroid = (0.76998399140248752, -1.2187565575236798) +station = ('kiwi', 0.0029794034649301328) +zone = ('mez025', 0.0025847572691826571) + +[04358] +centroid = (0.77517878938812346, -1.2136194252165298) +station = ('kwvl', 0.0027755822891443898) +zone = ('mez021', 0.0028929522050393274) + +[04359] +centroid = (0.7710478219414556, -1.2175874836308167) +station = ('kaug', 0.0024685566159090891) +zone = ('mez025', 0.0038235561446728328) + +[04360] +centroid = (0.77762865569927031, -1.2217240361310908) +station = ('kaug', 0.0048445109412303166) +zone = ('mez013', 0.0028825986638202168) + +[04363] +centroid = (0.77347185737967306, -1.2142784789953756) +station = ('kaug', 0.0028342955001996305) +zone = ('mez021', 0.002912633405087039) + +[04364] +centroid = (0.77335523447905463, -1.2210863277289972) +station = ('kaug', 0.0020400933315778604) +zone = ('mez021', 0.0029965898944472828) + +[04401] +centroid = (0.78275428628664978, -1.2016662585815663) +station = ('kbgr', 0.00094417764986646493) +zone = ('mez015', 0.0015323414017287659) + +[04406] +centroid = (0.78940020337227135, -1.2146953508872145) +station = ('kgnr', 0.0041461791066926467) +zone = ('mez010', 0.006146222647086144) + +[04408] +centroid = (0.78353348853120253, -1.192108486531795) +station = ('kbgr', 0.006563526014412048) +zone = ('mez016', 0.0007808376038589992) + +[04410] +centroid = (0.78693859099525842, -1.2026484600714189) +station = ('kbgr', 0.0051525059086085052) +zone = ('mez015', 0.0027639973096540036) + +[04411] +centroid = (0.78311275946171688, -1.1969550040651957) +station = ('kbgr', 0.0031620939649911464) +zone = ('mez015', 0.0034633583114781646) + +[04412] +centroid = (0.78164031243827181, -1.1996533703552412) +station = ('kbgr', 0.0010453185214029837) +zone = ('mez015', 0.0029684525448001975) + +[04413] +centroid = (0.79519670361753225, -1.18271587498914) +station = ('cwss', 0.0087174280649527473) +zone = ('mez032', 0.001506168185485266) + +[04414] +centroid = (0.79312754597612289, -1.2062768076000974) +station = ('kmlt', 0.0062247635000042068) +zone = ('mez031', 0.0034488191607820579) + +[04415] +centroid = (0.79238604284341319, -1.2052873280872642) +station = ('kmlt', 0.0061750057336794825) +zone = ('mez031', 0.0029313538011378325) + +[04416] +centroid = (0.77883219984486063, -1.1999093577966313) +station = ('kbgr', 0.0031853628369567268) +zone = ('mez015', 0.0055763438338554214) + +[04417] +centroid = (0.78943884496191041, -1.1927909277226174) +station = ('kmlt', 0.0085193807309860321) +zone = ('mez011', 0.002880586253940482) + +[04418] +centroid = (0.78694131370889164, -1.1948769452446011) +station = ('kbgr', 0.0066782766282497061) +zone = ('mez016', 0.0044780620872904558) + +[04419] +centroid = (0.78191542868826369, -1.2043315857888721) +station = ('kbgr', 0.0023090693756421766) +zone = ('mez015', 0.0030793199269056326) + +[04421] +centroid = (0.77509492631756516, -1.2010342224995418) +station = ('kbgr', 0.0068126479755644424) +zone = ('mez028', 0.0031404010129075749) + +[04422] +centroid = (0.78675346392149936, -1.2048258630330368) +station = ('kbgr', 0.0055248256364097822) +zone = ('mez031', 0.003341807680842461) + +[04424] +centroid = (0.7972718302849835, -1.1846631562888825) +station = ('khul', 0.0076718749559641763) +zone = ('mez032', 0.0039156943628994223) + +[04426] +centroid = (0.78911674444845492, -1.2075781949035542) +station = ('kgnr', 0.0065558203747727089) +zone = ('mez031', 0.00072061689611462043) + +[04427] +centroid = (0.78505848741842521, -1.204467058245412) +station = ('kbgr', 0.0039617570909934556) +zone = ('mez015', 0.0022003389115898466) + +[04428] +centroid = (0.78200840237751745, -1.19649271870622) +station = ('kbgr', 0.0032545652977038824) +zone = ('mez016', 0.0029553524243902916) + +[04429] +centroid = (0.78052192290688638, -1.1975791338057087) +station = ('kbgr', 0.0028442938334147299) +zone = ('mez015', 0.0047025506438587968) + +[04430] +centroid = (0.7965131356591415, -1.1968629728537379) +station = ('kmlt', 0.0015400642930394331) +zone = ('mez011', 0.0047730574938513208) + +[04431] +centroid = (0.77767649517406745, -1.1984969326461625) +station = ('kbgr', 0.0046117451675327676) +zone = ('mez029', 0.0040487407447339866) + +[04434] +centroid = (0.78165673598653307, -1.2065966391855254) +station = ('kbgr', 0.0039247855274298603) +zone = ('mez022', 0.0043025590736689885) + +[04435] +centroid = (0.78475619639197969, -1.2064587407213252) +station = ('kbgr', 0.0047596391793493465) +zone = ('mez015', 0.0035015456755584495) + +[04438] +centroid = (0.77839857279220259, -1.2030264285742307) +station = ('kbgr', 0.0037725124565781477) +zone = ('mez022', 0.0031832634937821731) + +[04441] +centroid = (0.79765763531613676, -1.2151546517331693) +station = ('kgnr', 0.0041433651344603252) +zone = ('mez010', 0.0034310451424705572) + +[04442] +centroid = (0.79408688365277413, -1.2169705097402366) +station = ('kgnr', 0.0018434545433178751) +zone = ('mez009', 0.0041805724362782518) + +[04443] +centroid = (0.78937833439674376, -1.2104473591142004) +station = ('kgnr', 0.0050290003160510348) +zone = ('mez031', 0.0024414759749087941) + +[04444] +centroid = (0.78066804187186334, -1.2034038385716819) +station = ('kbgr', 0.0020651003442293055) +zone = ('mez015', 0.0038466385385714352) + +[04448] +centroid = (0.79056775882868546, -1.1992342295353751) +station = ('kmlt', 0.0061765281654915464) +zone = ('mez011', 0.0040752770292778219) + +[04449] +centroid = (0.78526968971120892, -1.202330879960726) +station = ('kbgr', 0.0034774582484108398) +zone = ('mez015', 0.001127271653208697) + +[04450] +centroid = (0.78393292458381403, -1.2030203722817261) +station = ('kbgr', 0.0024493306728388753) +zone = ('mez015', 0.0010946905889120261) + +[04451] +centroid = (0.79599248648997911, -1.1907015417151774) +station = ('kmlt', 0.0058800443619839628) +zone = ('mez011', 0.0044089855810920909) + +[04453] +centroid = (0.78822996010880908, -1.200097661369629) +station = ('kbgr', 0.0063603228660826135) +zone = ('mez015', 0.0040776686106492035) + +[04454] +centroid = (0.79503442290368187, -1.1791629256841476) +station = ('cwss', 0.0069869007541504356) +zone = ('mez032', 0.0025746394809768318) + +[04455] +centroid = (0.79062531978741624, -1.1913574888079543) +station = ('kmlt', 0.0081519120958699221) +zone = ('mez011', 0.002399737104423337) + +[04456] +centroid = (0.78324912203617514, -1.2042198149035743) +station = ('kbgr', 0.0026009843510842617) +zone = ('mez015', 0.002152035378726084) + +[04457] +centroid = (0.79261386067067596, -1.1951991504778117) +station = ('kmlt', 0.004928671224936924) +zone = ('mez011', 0.00098251355173867945) + +[04459] +centroid = (0.79567352756917709, -1.192757749013537) +station = ('kmlt', 0.0045229858171689204) +zone = ('mez011', 0.0035622001980473916) + +[04460] +centroid = (0.79781434842967336, -1.1962480235450903) +station = ('kmlt', 0.0022263045979493325) +zone = ('mez005', 0.0042814522371604474) + +[04461] +centroid = (0.7846090476827442, -1.1969893521448747) +station = ('kbgr', 0.0039610847885397709) +zone = ('mez015', 0.0032485674442035502) + +[04462] +centroid = (0.80237618530878096, -1.2044943901014982) +station = ('kmlt', 0.006795764179583573) +zone = ('mez004', 0.0045814114929723475) + +[04463] +centroid = (0.79032575147460393, -1.2025761859870938) +station = ('kmlt', 0.0068793079939478679) +zone = ('mez031', 0.0031819734526590403) + +[04464] +centroid = (0.79267688450996543, -1.2091006630633614) +station = ('kgnr', 0.0038575672228163297) +zone = ('mez010', 0.0031226740482024548) + +[04468] +centroid = (0.78580711149448312, -1.1996244677028283) +station = ('kbgr', 0.0040330763555799414) +zone = ('mez015', 0.0020457387638798501) + +[04469] +centroid = (0.78367131718223249, -1.1984882059999027) +station = ('kbgr', 0.0025456858252336772) +zone = ('mez015', 0.002257404619834159) + +[04471] +centroid = (0.80125081446038759, -1.1844053537050705) +station = ('khul', 0.0037122976805217442) +zone = ('mez006', 0.0035181384111731013) + +[04472] +centroid = (0.7779996254317818, -1.1985197266461936) +station = ('kbgr', 0.0043102206704131764) +zone = ('mez029', 0.0042413077857675965) + +[04473] +centroid = (0.78333307237319605, -1.1997157484227077) +station = ('kbgr', 0.0017217602802764849) +zone = ('mez015', 0.0016138555343256835) + +[04474] +centroid = (0.78028356329094151, -1.2002689130758346) +station = ('kbgr', 0.0017224503025761023) +zone = ('mez015', 0.0041039458249820379) + +[04475] +centroid = (0.78860236101130721, -1.1971145969719978) +station = ('kbgr', 0.0072577670823902726) +zone = ('mez011', 0.0042455868833972078) + +[04476] +centroid = (0.77636961008346672, -1.1991459333285166) +station = ('kbgr', 0.0057058670897453621) +zone = ('mez028', 0.0048953924074610668) + +[04478] +centroid = (0.80049927568447876, -1.2185133982522922) +station = ('kgnr', 0.0075113304443649841) +zone = ('mez003', 0.0067511980163361858) + +[04479] +centroid = (0.78786221923541389, -1.209893513782665) +station = ('kgnr', 0.0065252972357862284) +zone = ('mez031', 0.0027498086357438944) + +[04481] +centroid = (0.78969130683821143, -1.2058964130896253) +station = ('kbgr', 0.0084964337848999413) +zone = ('mez031', 0.00078719205819853999) + +[04485] +centroid = (0.79165448808743966, -1.2151743390471317) +station = ('kgnr', 0.0019542996380170494) +zone = ('mez010', 0.0042727296752601424) + +[04487] +centroid = (0.79216545067925359, -1.1886472542789952) +station = ('kmlt', 0.0086017585516547992) +zone = ('mez011', 0.003707185958125447) + +[04488] +centroid = (0.78322405910811654, -1.2061045086963404) +station = ('kbgr', 0.0038000941743962392) +zone = ('mez015', 0.0033915065558381241) + +[04489] +centroid = (0.7838340691349811, -1.1988696826145109) +station = ('kbgr', 0.0024821367520794853) +zone = ('mez015', 0.0019548422497842458) + +[04490] +centroid = (0.7930188992301862, -1.1845134768522314) +station = ('cwss', 0.0084956315300246839) +zone = ('mez032', 0.0016898439898155896) + +[04491] +centroid = (0.79539354185057221, -1.1776322195702711) +station = ('cwss', 0.0067900872578946303) +zone = ('mez032', 0.0036872088283235937) + +[04492] +centroid = (0.79180430715043082, -1.1812619110024736) +station = ('cwss', 0.0059105854554297741) +zone = ('mez032', 0.002051049771904922) + +[04493] +centroid = (0.78953152194519127, -1.1959794697330859) +station = ('kmlt', 0.0075244294743599316) +zone = ('mez011', 0.0030401599960826614) + +[04495] +centroid = (0.7933240351433124, -1.1926498702124713) +station = ('kmlt', 0.0056319462883464176) +zone = ('mez011', 0.0014318702834281087) + +[04496] +centroid = (0.7792962130797958, -1.2026870143945954) +station = ('kbgr', 0.0028507324325383085) +zone = ('mez022', 0.003778213461237463) + +[04497] +centroid = (0.79856859246592271, -1.1878875648154796) +station = ('khul', 0.0070684474330053437) +zone = ('mez006', 0.0043906934289495462) + +[04530] +centroid = (0.76599429090547622, -1.2187058557089094) +station = ('kiwi', 0.0019459617260922568) +zone = ('mez025', 0.0015001285495119111) + +[04535] +centroid = (0.76966351404523636, -1.2152583591973227) +station = ('kiwi', 0.0025489574200524118) +zone = ('mez026', 0.0011529815747929927) + +[04537] +centroid = (0.76577221521145233, -1.2150701952506651) +station = ('kiwi', 0.0020142499202618551) +zone = ('mez025', 0.0034745819809333649) + +[04538] +centroid = (0.76535314420475609, -1.2152310622478215) +station = ('kiwi', 0.0023008330797533931) +zone = ('mez025', 0.0035982043034944382) + +[04539] +centroid = (0.7675079626058533, -1.213017496064102) +station = ('kiwi', 0.0027155855133969113) +zone = ('mez026', 0.0018282256750673544) + +[04541] +centroid = (0.76609904556718078, -1.2126003274662907) +station = ('kiwi', 0.0032683327942458185) +zone = ('mez026', 0.0032659561219423551) + +[04543] +centroid = (0.76834394041097354, -1.2129617327945008) +station = ('kiwi', 0.0029203824232770254) +zone = ('mez026', 0.0010771659452578929) + +[04544] +centroid = (0.76523193108820509, -1.2144433602498115) +station = ('kiwi', 0.0027182928245600107) +zone = ('mez026', 0.0040557149423868372) + +[04547] +centroid = (0.76759336156615343, -1.2101231642056425) +station = ('krkd', 0.0033150672447042188) +zone = ('mez026', 0.0030970681892564553) + +[04548] +centroid = (0.76503797264843088, -1.2171675050529094) +station = ('kiwi', 0.0023413681639325745) +zone = ('mez025', 0.0028467906664010599) + +[04551] +centroid = (0.76752100021536573, -1.2117936362860187) +station = ('kiwi', 0.0035959676049588298) +zone = ('mez026', 0.0022374083860954865) + +[04553] +centroid = (0.76885727665057002, -1.2141823113535906) +station = ('kiwi', 0.0023953436297787629) +zone = ('mez026', 0.00050386100453465497) + +[04554] +centroid = (0.76558808297536707, -1.2132190641394149) +station = ('kiwi', 0.003122588666136046) +zone = ('mez026', 0.0036895732293131893) + +[04555] +centroid = (0.76971117898710828, -1.2127030575460627) +station = ('kiwi', 0.003758601720015518) +zone = ('mez026', 0.00088204892381121684) + +[04556] +centroid = (0.76746061182324665, -1.2151599400808029) +station = ('kiwi', 0.0011739004290740854) +zone = ('mez026', 0.0020608984658245654) + +[04558] +centroid = (0.76593997625915411, -1.213256396732115) +station = ('kiwi', 0.0029129913480101439) +zone = ('mez026', 0.0033368102424841139) + +[04562] +centroid = (0.7639448729379068, -1.2185745022294043) +station = ('kiwi', 0.0036534779267674957) +zone = ('mez025', 0.0035251969483761497) + +[04563] +centroid = (0.76818789052255276, -1.2087924553707519) +station = ('krkd', 0.002193663785493659) +zone = ('mez027', 0.0026067475682124428) + +[04564] +centroid = (0.76675542899227078, -1.2122613321656757) +station = ('kiwi', 0.0033133057971157474) +zone = ('mez026', 0.0027231625620425964) + +[04568] +centroid = (0.76581562154994942, -1.2140243590562851) +station = ('kiwi', 0.002519846755556394) +zone = ('mez026', 0.0034471478999864415) + +[04570] +centroid = (0.76460336821139174, -1.2152861099324295) +station = ('kiwi', 0.0029637166955697202) +zone = ('mez025', 0.004049464832897318) + +[04571] +centroid = (0.76614117781532398, -1.2160436700942576) +station = ('kiwi', 0.0013335666246619517) +zone = ('mez025', 0.0026819842260488056) + +[04572] +centroid = (0.77007562118821726, -1.2109679035636076) +station = ('krkd', 0.0036810871559550496) +zone = ('mez026', 0.0021630430263638906) + +[04573] +centroid = (0.76709589036945747, -1.2139171609336277) +station = ('kiwi', 0.0020818651309880264) +zone = ('mez026', 0.0021645708128989641) + +[04574] +centroid = (0.77249387958661042, -1.2111105667766657) +station = ('krkd', 0.0049782759824819464) +zone = ('mez026', 0.0037518016880074474) + +[04575] +centroid = (0.76536197557077101, -1.2158427477907678) +station = ('kiwi', 0.0021132110625372734) +zone = ('mez025', 0.0032426764927171794) + +[04576] +centroid = (0.76468712656219495, -1.2158464129821973) +station = ('kiwi', 0.0027602003104203843) +zone = ('mez025', 0.0037084274027653894) + +[04578] +centroid = (0.76763847832731735, -1.216368022082448) +station = ('kiwi', 0.00040748688437016004) +zone = ('mez025', 0.0021271490371366606) + +[04579] +centroid = (0.76724073524408043, -1.2177048919295983) +station = ('kiwi', 0.00067306978476989793) +zone = ('mez025', 0.00117048785388577) + +[04605] +centroid = (0.77968760316455554, -1.1936628069504511) +station = ('kbhb', 0.0039013310659265399) +zone = ('mez016', 0.0032219740646147583) + +[04606] +centroid = (0.77738231992864382, -1.1818036961088776) +station = ('kbhb', 0.008298233794913441) +zone = ('mez030', 0.0032253757939286845) + +[04607] +centroid = (0.77610103881816983, -1.1883558017472047) +station = ('kbhb', 0.0034874155873122086) +zone = ('mez029', 0.0038422199842294649) + +[04609] +centroid = (0.77488203105540687, -1.1914282095492452) +station = ('kbhb', 0.001576193110924509) +zone = ('mez029', 0.0017357034501965529) + +[04611] +centroid = (0.77609480799274022, -1.180062416020748) +station = ('kbhb', 0.0093984106344911413) +zone = ('mez030', 0.0038162868896093817) + +[04612] +centroid = (0.77198583169464741, -1.1940585254517557) +station = ('kbhb', 0.00385951290774793) +zone = ('mez029', 0.0035598124698644831) + +[04613] +centroid = (0.774436256511155, -1.1873001568024282) +station = ('kbhb', 0.0044452106118744476) +zone = ('mez029', 0.004688270854907286) + +[04614] +centroid = (0.77496423606317577, -1.1967599984278703) +station = ('kbhb', 0.0026599818915381225) +zone = ('mez029', 0.0022731061807330084) + +[04616] +centroid = (0.77250583509198667, -1.1962548652357581) +station = ('kbhb', 0.0039423438676832881) +zone = ('mez029', 0.0035453187117344058) + +[04617] +centroid = (0.77408191976641516, -1.2001056724308958) +station = ('kbhb', 0.0052082342784664087) +zone = ('mez028', 0.0036222500384516924) + +[04619] +centroid = (0.78802186450209377, -1.1735452344207535) +station = ('cwss', 0.001165458672364525) +zone = ('mez017', 0.0054506358159806551) + +[04622] +centroid = (0.78104635944052569, -1.1862470949449451) +station = ('kbhb', 0.0072256612942651725) +zone = ('mez016', 0.0047547582681674453) + +[04623] +centroid = (0.78093827119994963, -1.1821753465197975) +station = ('cwss', 0.010177101554021446) +zone = ('mez030', 0.0026430852236075616) + +[04624] +centroid = (0.77534421169462753, -1.1865773810525926) +station = ('kbhb', 0.0047671444984274478) +zone = ('mez029', 0.0050753427755785858) + +[04625] +centroid = (0.77247911410113868, -1.191391609994831) +station = ('kbhb', 0.0035687841639942403) +zone = ('mez029', 0.0034665914398037271) + +[04626] +centroid = (0.77956124132671112, -1.1731991181767905) +station = ('cwss', 0.0096259149596502076) +zone = ('mez030', 0.0040008525956329831) + +[04627] +centroid = (0.77208147573765673, -1.197432787947929) +station = ('kbhb', 0.0047834281642592513) +zone = ('mez029', 0.004374424561253018) + +[04628] +centroid = (0.78318356746947015, -1.1742763353911214) +station = ('cwss', 0.0060083775226274679) +zone = ('mez030', 0.0046674669786407807) + +[04629] +centroid = (0.7753081531922813, -1.1956656769868699) +station = ('kbhb', 0.0018115685315916437) +zone = ('mez029', 0.0014364230953530035) + +[04630] +centroid = (0.78286858789936287, -1.1777117542242845) +station = ('cwss', 0.0069088221074292359) +zone = ('mez030', 0.0031609653362450435) + +[04631] +centroid = (0.78384408732488753, -1.1695261600324312) +station = ('cwss', 0.0061075110447405042) +zone = ('mez030', 0.0077298327746683181) + +[04634] +centroid = (0.77930528879190608, -1.1906991506141023) +station = ('kbhb', 0.0039409482276455618) +zone = ('mez016', 0.003713559769115807) + +[04635] +centroid = (0.77095092126138498, -1.1929584095176389) +station = ('kbhb', 0.0048516388956570478) +zone = ('mez029', 0.0046133433065018549) + +[04637] +centroid = (0.7888234244143647, -1.18361300913125) +station = ('cwss', 0.0069694508058594905) +zone = ('mez017', 0.0039606161478755912) + +[04640] +centroid = (0.77709345048414624, -1.1918140669402761) +station = ('kbhb', 0.0016391823138752137) +zone = ('mez029', 0.0020492487517074069) + +[04642] +centroid = (0.77371465013191798, -1.2009601332727946) +station = ('krkd', 0.0058642528832498339) +zone = ('mez028', 0.0030285980957053655) + +[04643] +centroid = (0.77733521349213253, -1.1836567819888901) +station = ('kbhb', 0.0069949110544133518) +zone = ('mez030', 0.0042413378705331573) + +[04644] +centroid = (0.77516765418749567, -1.1912234475214014) +station = ('kbhb', 0.0015614211483748399) +zone = ('mez029', 0.0017921987934944629) + +[04645] +centroid = (0.76907347058501463, -1.1976621242116412) +station = ('kbhb', 0.0074388809980264108) +zone = ('mez029', 0.0070635226146990304) + +[04646] +centroid = (0.77223080610845729, -1.1907500793216754) +station = ('kbhb', 0.0039823748382232498) +zone = ('mez029', 0.0039127240160373739) + +[04648] +centroid = (0.7795587280525883, -1.1797785207646185) +station = ('cwss', 0.010529429559939248) +zone = ('mez030', 0.00072877510102622913) + +[04649] +centroid = (0.77749374174809127, -1.1779197451112446) +station = ('cwss', 0.012056455883766132) +zone = ('mez030', 0.0023985194545564446) + +[04650] +centroid = (0.77296506612477145, -1.1992814057850565) +station = ('kbhb', 0.0051753302948093927) +zone = ('mez028', 0.0043476525805997571) + +[04652] +centroid = (0.7822515616489053, -1.1704584276523837) +station = ('cwss', 0.0073048051463843848) +zone = ('mez030', 0.0064185403301774153) + +[04653] +centroid = (0.77160075970177988, -1.1926646007913582) +station = ('kbhb', 0.0042170820994558798) +zone = ('mez029', 0.0040009882256020141) + +[04654] +centroid = (0.78115968366885769, -1.1787935267479632) +station = ('cwss', 0.0087821515029466186) +zone = ('mez030', 0.0013536378267892336) + +[04655] +centroid = (0.77934195815949059, -1.1759601068803978) +station = ('cwss', 0.0099631756584518498) +zone = ('mez030', 0.0020825228757162199) + +[04657] +centroid = (0.78487995768923868, -1.1766272066270953) +station = ('cwss', 0.0047602240286748459) +zone = ('mez017', 0.0027759309601054706) + +[04658] +centroid = (0.77680957268130946, -1.1846946594818812) +station = ('kbhb', 0.0061687008210046133) +zone = ('mez030', 0.0051489908468653513) + +[04660] +centroid = (0.7738489008579813, -1.1928645457104665) +station = ('kbhb', 0.0019667416949626228) +zone = ('mez029', 0.0017841497546577008) + +[04662] +centroid = (0.77319759634101459, -1.1919281416601866) +station = ('kbhb', 0.0027611060130353321) +zone = ('mez029', 0.0026518737100803894) + +[04664] +centroid = (0.77742785556882832, -1.1890466205184365) +station = ('kbhb', 0.0033955505538588665) +zone = ('mez029', 0.0038085539339780786) + +[04666] +centroid = (0.78505929026988108, -1.1732744116807214) +station = ('cwss', 0.0041331671212882278) +zone = ('mez030', 0.0065599752266909603) + +[04667] +centroid = (0.78514187925008538, -1.1711780967161511) +station = ('cwss', 0.0044225181544570733) +zone = ('mez030', 0.0076025204264180335) + +[04668] +centroid = (0.7891144231605498, -1.1795976348409418) +station = ('cwss', 0.0041312109916349848) +zone = ('mez017', 0.0036024522337244763) + +[04669] +centroid = (0.77507763010467778, -1.1870968783044487) +station = ('kbhb', 0.0044341038019952818) +zone = ('mez029', 0.0047236040225279823) + +[04671] +centroid = (0.78657407898097942, -1.1720265012655455) +station = ('cwss', 0.0028704924041673906) +zone = ('mez030', 0.0083033412990491419) + +[04673] +centroid = (0.77343134828773419, -1.1986771902513083) +station = ('kbhb', 0.0045604244448398078) +zone = ('mez028', 0.004684110634175293) + +[04674] +centroid = (0.77273150616426955, -1.1948319506564846) +station = ('kbhb', 0.0032758324183103696) +zone = ('mez029', 0.0029223758132329242) + +[04675] +centroid = (0.77320436821851235, -1.1912072508659428) +station = ('kbhb', 0.0029678490187349735) +zone = ('mez029', 0.0029251997573747661) + +[04676] +centroid = (0.77399906898682291, -1.1978956492655579) +station = ('kbhb', 0.0037925167360242196) +zone = ('mez029', 0.0033818252868782666) + +[04677] +centroid = (0.77626698472344935, -1.1899917686682688) +station = ('kbhb', 0.0023534592599733077) +zone = ('mez029', 0.0027320945608859679) + +[04679] +centroid = (0.77270970700191211, -1.1924989864986364) +station = ('kbhb', 0.0031322640077141571) +zone = ('mez029', 0.0029489982190946634) + +[04680] +centroid = (0.77669738291699131, -1.1858893897147487) +station = ('kbhb', 0.0053097564904067427) +zone = ('mez030', 0.0059201648894785892) + +[04681] +centroid = (0.7705709630832257, -1.1980869722581615) +station = ('kbhb', 0.0062806517091102783) +zone = ('mez029', 0.0058819319735636463) + +[04683] +centroid = (0.77222450546985766, -1.2005740664422533) +station = ('krkd', 0.0049989940102106063) +zone = ('mez028', 0.0037557799564819721) + +[04684] +centroid = (0.77610185912291818, -1.1956062136192545) +station = ('kbhb', 0.001727505321858155) +zone = ('mez029', 0.0014874690930298336) + +[04685] +centroid = (0.77059230845997773, -1.1949433724759317) +station = ('kbhb', 0.0053500728340692225) +zone = ('mez029', 0.0050250935815569628) + +[04686] +centroid = (0.78533772264545165, -1.1814836550839396) +station = ('cwss', 0.0066841667165914633) +zone = ('mez017', 0.00077590732529670249) + +[04691] +centroid = (0.78121499315285337, -1.1738220087335349) +station = ('cwss', 0.0079649605978042524) +zone = ('mez030', 0.0038170099124823207) + +[04693] +centroid = (0.77451591333821612, -1.1884579384150313) +station = ('kbhb', 0.0036377783673811909) +zone = ('mez029', 0.0038671074372889315) + +[04694] +centroid = (0.78740674066052085, -1.177705261599467) +station = ('cwss', 0.0033141389704468764) +zone = ('mez017', 0.0026682402591308913) + +[04730] +centroid = (0.80618578528027918, -1.1843983723880627) +station = ('khul', 0.0014931556518264575) +zone = ('mez006', 0.0045143973017356372) + +[04732] +centroid = (0.80856728704462533, -1.2032159887842899) +station = ('k40b', 0.0087449887543203861) +zone = ('mez004', 0.0044251059013724961) + +[04733] +centroid = (0.79861864850886988, -1.1938776744346642) +station = ('kmlt', 0.0040647629231661663) +zone = ('mez005', 0.004401446550588912) + +[04734] +centroid = (0.81101961427001756, -1.1860618282448459) +station = ('kpqi', 0.0039226536661816679) +zone = ('mez002', 0.005495579623870519) + +[04735] +centroid = (0.81011876257660076, -1.1844989033529774) +station = ('kpqi', 0.0051520193692300422) +zone = ('mez002', 0.0068595661643337004) + +[04736] +centroid = (0.81872578396964069, -1.1872793350244519) +station = ('kcar', 0.00075654663953803047) +zone = ('mez002', 0.0039345176689639704) + +[04739] +centroid = (0.82023329465775818, -1.1985686831317119) +station = ('kfve', 0.0066908359069262494) +zone = ('mez002', 0.0071815303412764483) + +[04740] +centroid = (0.81390469588344183, -1.1841644110018326) +station = ('kpqi', 0.0025767348393733193) +zone = ('mez002', 0.0047255044852918381) + +[04741] +centroid = (0.82822351669314342, -1.2081678892979257) +station = ('cwnh', 0.0071645087359650901) +zone = ('mez001', 0.0089314644337824597) + +[04742] +centroid = (0.81639941715636488, -1.1843664154094584) +station = ('kcar', 0.0024551125171967708) +zone = ('mez002', 0.0043803435982622402) + +[04743] +centroid = (0.82380004951713381, -1.1975460249097984) +station = ('cerm', 0.0051807051006715074) +zone = ('mez001', 0.0073332611056251239) + +[04745] +centroid = (0.82522833971050336, -1.1936094347819253) +station = ('kfve', 0.0010514095806190948) +zone = ('mez002', 0.0099090343013889352) + +[04746] +centroid = (0.8247843977619661, -1.1892000175063944) +station = ('kfve', 0.0019955825011812802) +zone = ('mez002', 0.0093062842387192334) + +[04747] +centroid = (0.80293823368780082, -1.1909039650018238) +station = ('khul', 0.0056033250384191205) +zone = ('mez006', 0.0014123780492042504) + +[04750] +centroid = (0.81952046728465877, -1.184340689256284) +station = ('kcar', 0.0024436913762844593) +zone = ('mez002', 0.0058692594038021774) + +[04756] +centroid = (0.82603080719398536, -1.1921214019682598) +station = ('kfve', 0.00078207267078218672) +zone = ('mez002', 0.010550227025096582) + +[04757] +centroid = (0.81450351834980106, -1.1897671273402446) +station = ('kpqi', 0.0014469290154800385) +zone = ('mez002', 0.0011852080240266146) + +[04758] +centroid = (0.81261259373160533, -1.1842621843465293) +station = ('kpqi', 0.0032019198484414279) +zone = ('mez002', 0.0052568177469499719) + +[04760] +centroid = (0.80877407365440157, -1.1860362940778892) +station = ('khul', 0.0043128651966677289) +zone = ('mez006', 0.0061881659166659938) + +[04761] +centroid = (0.80489792427852502, -1.1863925157782211) +station = ('khul', 0.0021206841033914741) +zone = ('mez006', 0.0026320517970772599) + +[04762] +centroid = (0.81957603856804218, -1.1890008579854492) +station = ('kcar', 0.0020530133191393007) +zone = ('mez002', 0.0041975430936697557) + +[04763] +centroid = (0.80414975398807265, -1.1888147186207239) +station = ('khul', 0.0038721411934002884) +zone = ('mez006', 0.0012448096620771767) + +[04764] +centroid = (0.8098140804490801, -1.1970397048937949) +station = ('kpqi', 0.0081202847048238505) +zone = ('mez002', 0.00721629667533886) + +[04765] +centroid = (0.8056227944234633, -1.1971408641772405) +station = ('kmlt', 0.0089779077439179275) +zone = ('mez005', 0.0037823011144572415) + +[04766] +centroid = (0.81842787371961778, -1.1905899628160974) +station = ('kcar', 0.0024176972885770528) +zone = ('mez002', 0.0028984902766166381) + +[04768] +centroid = (0.81791638752902829, -1.202387411175198) +station = ('k40b', 0.0087977929520440309) +zone = ('mez001', 0.0029706967171194559) + +[04769] +centroid = (0.81486776856469223, -1.1867019975611848) +station = ('kpqi', 0.00068816132846573309) +zone = ('mez002', 0.0027750897772028165) + +[04772] +centroid = (0.82432047179349344, -1.1922597018581877) +station = ('kfve', 0.00093921967679884693) +zone = ('mez002', 0.0088607937039485111) + +[04773] +centroid = (0.82497366126605232, -1.1907184190490443) +station = ('kfve', 0.0009511290522241472) +zone = ('mez002', 0.0094443167308778803) + +[04774] +centroid = (0.82164935009307127, -1.2069737175704187) +station = ('k40b', 0.0092201703446366176) +zone = ('mez001', 0.0023200127110810367) + +[04776] +centroid = (0.80061211122062026, -1.1924919004618733) +station = ('kmlt', 0.0059873622395045165) +zone = ('mez006', 0.0034059246478267708) + +[04777] +centroid = (0.8001029288646434, -1.1955693173588671) +station = ('kmlt', 0.0041425120438060492) +zone = ('mez005', 0.0025112023384416373) + +[04779] +centroid = (0.82230239993929011, -1.1926091691343148) +station = ('kfve', 0.002970983216925419) +zone = ('mez002', 0.0069061616864412034) + +[04780] +centroid = (0.80702705143303288, -1.1918029840995259) +station = ('khul', 0.0062426505133062462) +zone = ('mez006', 0.0045952462618631881) + +[04781] +centroid = (0.82292621552053791, -1.1975313990506666) +station = ('kfve', 0.0043830198422509913) +zone = ('mez001', 0.0068552888634284999) + +[04783] +centroid = (0.82100504434640509, -1.1898790902117602) +station = ('kcar', 0.003567286848511258) +zone = ('mez002', 0.0054996580429635252) + +[04785] +centroid = (0.82225866198823505, -1.1867252802534063) +station = ('cwiy', 0.0022118400293107275) +zone = ('mez002', 0.0072389388421136222) + +[04786] +centroid = (0.81672544466063746, -1.1901758136378919) +station = ('kcar', 0.0024400334793125132) +zone = ('mez002', 0.0012361088874111581) + +[04787] +centroid = (0.81218360925475763, -1.1863495981319145) +station = ('kpqi', 0.002754346365084094) +zone = ('mez002', 0.0044546381700715241) + +[04841] +centroid = (0.77027551374744818, -1.2066128183876912) +station = ('krkd', 0.0012416929190930636) +zone = ('mez027', 0.00056864239293956994) + +[04843] +centroid = (0.77210584053401454, -1.2053948752757719) +station = ('krkd', 0.0030310554971437471) +zone = ('mez028', 0.0019368818015807084) + +[04847] +centroid = (0.77214793787557268, -1.2075805161914595) +station = ('krkd', 0.0032385454093175306) +zone = ('mez027', 0.0015980900361333421) + +[04848] +centroid = (0.7731613109458656, -1.2027980173350221) +station = ('krkd', 0.0046661367187568513) +zone = ('mez028', 0.0019096225939645864) + +[04849] +centroid = (0.7734619613628142, -1.204730934575021) +station = ('krkd', 0.0044509450887796637) +zone = ('mez028', 0.00065466920574470911) + +[04851] +centroid = (0.76580003575972921, -1.2019852175023684) +station = ('krkd', 0.0044031458141011075) +zone = ('mez027', 0.0061053608257152165) + +[04852] +centroid = (0.7638702775656766, -1.2096837252065751) +station = ('krkd', 0.0058646185204879655) +zone = ('mez026', 0.0061339069636714514) + +[04853] +centroid = (0.77033532618091405, -1.2019661410536442) +station = ('krkd', 0.003160736462759709) +zone = ('mez028', 0.0043550026405896787) + +[04854] +centroid = (0.76926303079507374, -1.2056708990969749) +station = ('krkd', 0.00029618169147286016) +zone = ('mez027', 0.0017469815061761246) + +[04855] +centroid = (0.76682538178869086, -1.208876580240698) +station = ('krkd', 0.0030703554640765748) +zone = ('mez027', 0.0039062293000286814) + +[04856] +centroid = (0.7710943524193139, -1.2064011797625944) +station = ('krkd', 0.0020044450565661347) +zone = ('mez027', 0.00083369711674701223) + +[04858] +centroid = (0.76878008073775439, -1.2070059188951179) +station = ('krkd', 0.00077927017999517858) +zone = ('mez027', 0.0017949641282716635) + +[04859] +centroid = (0.76792942471362491, -1.2067966713710963) +station = ('krkd', 0.0013037688246384323) +zone = ('mez027', 0.0026578202407840511) + +[04860] +centroid = (0.76758875389692804, -1.2080479677250211) +station = ('krkd', 0.0021048893934704042) +zone = ('mez027', 0.0030227176192863083) + +[04861] +centroid = (0.76982286260594346, -1.2072684513212029) +station = ('krkd', 0.0011451343138743305) +zone = ('mez027', 0.0007402779899028329) + +[04862] +centroid = (0.77252995554224924, -1.2091243646346035) +station = ('krkd', 0.0040814032503521695) +zone = ('mez027', 0.0023634864088475974) + +[04863] +centroid = (0.76914754235846927, -1.2017160702784182) +station = ('krkd', 0.0030945003932439656) +zone = ('mez028', 0.005479960252917776) + +[04864] +centroid = (0.77018842181777358, -1.2085217024438901) +station = ('krkd', 0.0020946893090452159) +zone = ('mez027', 0.00095560691973895233) + +[04901] +centroid = (0.77737580985053401, -1.2143158639479534) +station = ('kwvl', 0.0013511438030699083) +zone = ('mez021', 0.0033092201552903889) + +[04910] +centroid = (0.77681192887579964, -1.2120483147304697) +station = ('kwvl', 0.0029954017873329909) +zone = ('mez021', 0.0043652290210404194) + +[04911] +centroid = (0.78138263202750746, -1.2212513486097734) +station = ('kwvl', 0.0054723075395959964) +zone = ('mez013', 0.0032578348504791557) + +[04912] +centroid = (0.78506140211827602, -1.2163178264131607) +station = ('kwvl', 0.0078085298440748229) +zone = ('mez014', 0.0024812659760587159) + +[04915] +centroid = (0.77603450686708375, -1.2049329215293543) +station = ('kbgr', 0.0064822853818000802) +zone = ('mez028', 0.0020056489251045642) + +[04917] +centroid = (0.77645698126582152, -1.2189290135070696) +station = ('kwvl', 0.0021003578277091822) +zone = ('mez021', 0.0016382762641670298) + +[04918] +centroid = (0.77694605742881528, -1.219395784362223) +station = ('kwvl', 0.0022965123266084205) +zone = ('mez021', 0.0022298589972563707) + +[04920] +centroid = (0.78788248250802961, -1.2191902892960931) +station = ('kgnr', 0.0065664830406824137) +zone = ('mez014', 0.0057840324751327306) + +[04921] +centroid = (0.77773431793218606, -1.2066603960631006) +station = ('kbgr', 0.0057596930071161772) +zone = ('mez022', 0.00055498417427197533) + +[04922] +centroid = (0.7799622481756493, -1.2109934377305642) +station = ('kwvl', 0.0045929956931427471) +zone = ('mez022', 0.003705480499167088) + +[04923] +centroid = (0.78590446596015939, -1.2120569192036821) +station = ('kgnr', 0.0078234235210149477) +zone = ('mez014', 0.0042572155640995847) + +[04924] +centroid = (0.78159755187159796, -1.2138121793791203) +station = ('kwvl', 0.004665422354686765) +zone = ('mez014', 0.0017617582228303813) + +[04925] +centroid = (0.78910475403649372, -1.2200444359787266) +station = ('kgnr', 0.0059258677038191414) +zone = ('mez009', 0.00508870536216381) + +[04926] +centroid = (0.77632458058876519, -1.2132465705284263) +station = ('kwvl', 0.002304298903324768) +zone = ('mez021', 0.0033895299224626012) + +[04927] +centroid = (0.77946034384265328, -1.2135566631766284) +station = ('kwvl', 0.002902332630362491) +zone = ('mez014', 0.0035395881516913199) + +[04928] +centroid = (0.78441542085552796, -1.2087839207107096) +station = ('kbgr', 0.0060097812530809603) +zone = ('mez015', 0.0051177788726572285) + +[04929] +centroid = (0.7814207151117859, -1.2095511499965939) +station = ('kbgr', 0.0060338277021086701) +zone = ('mez022', 0.0043569103248963592) + +[04930] +centroid = (0.78587938557880821, -1.2098268072986538) +station = ('kbgr', 0.0073597993979305394) +zone = ('mez031', 0.0043210132535346423) + +[04932] +centroid = (0.78011976414064188, -1.2067852569177884) +station = ('kbgr', 0.0044304129842518804) +zone = ('mez022', 0.0027604004809653276) + +[04933] +centroid = (0.78219539695357621, -1.2083149681939911) +station = ('kbgr', 0.005142881409027667) +zone = ('mez022', 0.0048733617377074824) + +[04936] +centroid = (0.79276251036306822, -1.2326287660310888) +station = ('cwhv', 0.013716507388894773) +zone = ('mez008', 0.0062340815363089701) + +[04937] +centroid = (0.77931836130800369, -1.2158186273405054) +station = ('kwvl', 0.0020831852782445975) +zone = ('mez014', 0.0032838712362470682) + +[04938] +centroid = (0.77949643725158457, -1.2235299806680069) +station = ('kaug', 0.0071090840426708277) +zone = ('mez013', 0.00098048916053942742) + +[04939] +centroid = (0.78674656987095404, -1.2070482605827713) +station = ('kbgr', 0.0064249574355753208) +zone = ('mez031', 0.0029713824278015072) + +[04940] +centroid = (0.77883562069019452, -1.2231842134898943) +station = ('kaug', 0.0064203212801050239) +zone = ('mez013', 0.0013529055764682871) + +[04941] +centroid = (0.77609887460989735, -1.2092629263239194) +station = ('kwvl', 0.0050832322136507247) +zone = ('mez022', 0.0019189268827779545) + +[04942] +centroid = (0.78674245089391937, -1.2145125974612381) +station = ('kgnr', 0.0068006898101664864) +zone = ('mez014', 0.0042474345263392834) + +[04943] +centroid = (0.78330067906227907, -1.2133616226327177) +station = ('kwvl', 0.0063757824803654757) +zone = ('mez014', 0.0018985865320547851) + +[04944] +centroid = (0.78003384158156619, -1.2155645423080002) +station = ('kwvl', 0.0028175171528357764) +zone = ('mez014', 0.0025764123165237045) + +[04945] +centroid = (0.80057762351460093, -1.2263790910455474) +station = ('cwhv', 0.0085127550291061518) +zone = ('mez009', 0.0072191639419295871) + +[04947] +centroid = (0.78626295658851897, -1.22643389438406) +station = ('kgnr', 0.011138201671076334) +zone = ('mez008', 0.0031724578397493135) + +[04949] +centroid = (0.77442056600117948, -1.2101007192714617) +station = ('kaug', 0.0058975580372289498) +zone = ('mez028', 0.0035456120573979948) + +[04950] +centroid = (0.78236746896453024, -1.2182348087970887) +station = ('kwvl', 0.0053142007138966812) +zone = ('mez014', 0.0017058738230428532) + +[04951] +centroid = (0.77854802533605083, -1.2055121788547987) +station = ('kbgr', 0.0046066598208052171) +zone = ('mez022', 0.001707062672294924) + +[04952] +centroid = (0.77514952021656747, -1.2069787964785419) +station = ('krkd', 0.0060798201741412861) +zone = ('mez028', 0.0017057340159008173) + +[04953] +centroid = (0.78295993843241229, -1.208408343308973) +station = ('kbgr', 0.0053045383682040152) +zone = ('mez015', 0.0050313010924190179) + +[04955] +centroid = (0.77924076396945996, -1.2216141851079703) +station = ('kwvl', 0.004335499182794759) +zone = ('mez013', 0.0023463251951826663) + +[04956] +centroid = (0.78204549062412232, -1.2236475460464213) +station = ('kwvl', 0.0071406993249890326) +zone = ('mez013', 0.00277917253610435) + +[04957] +centroid = (0.78019825159710399, -1.2189968020952171) +station = ('kwvl', 0.0035532815048647075) +zone = ('mez014', 0.0032806199846545396) + +[04958] +centroid = (0.78363655022353285, -1.2203138973619421) +station = ('kwvl', 0.0070197433992403692) +zone = ('mez014', 0.0033269629150186534) + +[04961] +centroid = (0.78780286058755356, -1.2242488643336109) +station = ('kgnr', 0.0089649935801728586) +zone = ('mez008', 0.0048283611693722495) + +[04962] +centroid = (0.77648087482328132, -1.2152020025157757) +station = ('kwvl', 0.0010520397895272871) +zone = ('mez021', 0.0022441235537951185) + +[04963] +centroid = (0.77822498234479931, -1.2197636474086657) +station = ('kwvl', 0.0027162855539599596) +zone = ('mez021', 0.0034746417778907992) + +[04964] +centroid = (0.78307540941572418, -1.2352410352291336) +station = ('kbml', 0.0070886690569474577) +zone = ('mez007', 0.0013616616406574274) + +[04965] +centroid = (0.78266063191898771, -1.2107062088955638) +station = ('kwvl', 0.0066718990190883223) +zone = ('mez014', 0.0036492909026438667) + +[04966] +centroid = (0.78216405084021023, -1.2291884602760201) +station = ('kbml', 0.010211501135472976) +zone = ('mez013', 0.0041025635186154111) + +[04967] +centroid = (0.7813811310443507, -1.2118461532432112) +station = ('kwvl', 0.0051621809840269109) +zone = ('mez014', 0.0030935048686491938) + +[04969] +centroid = (0.78165067969402868, -1.2084009605662371) +station = ('kbgr', 0.0052035731655843505) +zone = ('mez022', 0.0043469849953109065) + +[04970] +centroid = (0.78554264175292832, -1.2325157385087295) +station = ('kbml', 0.010199993940881953) +zone = ('mez008', 0.0015944187999254048) + +[04971] +centroid = (0.78417084786744584, -1.2111062732667057) +station = ('kbgr', 0.007459805606209232) +zone = ('mez014', 0.0037105339445747806) + +[04973] +centroid = (0.77426631380188826, -1.20766190089448) +station = ('krkd', 0.0052900339134913715) +zone = ('mez028', 0.0017959984856942034) + +[04974] +centroid = (0.77616599997292901, -1.2030106857043779) +station = ('kbgr', 0.0059040159216495322) +zone = ('mez028', 0.0026301467835181695) + +[04975] +centroid = (0.77885935716802168, -1.2145455492775157) +station = ('kwvl', 0.001993536752097637) +zone = ('mez014', 0.0038561782078478796) + +[04976] +centroid = (0.78172040559764577, -1.2159305727587282) +station = ('kwvl', 0.0044713311725785767) +zone = ('mez014', 0.00088349106393777947) + +[04978] +centroid = (0.77915009411481884, -1.2182427674984779) +station = ('kwvl', 0.0023889064518655715) +zone = ('mez014', 0.0038470612843605791) + +[04979] +centroid = (0.78434295478498506, -1.2183713459044723) +station = ('kwvl', 0.0072549591842669837) +zone = ('mez014', 0.0024931226697684932) + +[04981] +centroid = (0.77691799253444327, -1.2014680240851248) +station = ('kbgr', 0.0049972426843379898) +zone = ('mez028', 0.003911101694690524) + +[04982] +centroid = (0.78710830681172239, -1.2292454278228053) +station = ('kgnr', 0.012233387161507221) +zone = ('mez008', 0.0012496211223506461) + +[04983] +centroid = (0.78504876593449158, -1.2281602868136705) +station = ('kwvl', 0.011526312054133339) +zone = ('mez008', 0.0025078919752579048) + +[04984] +centroid = (0.78013807264449531, -1.2264629715693984) +station = ('kaug', 0.0088786533631902646) +zone = ('mez013', 0.0013246811448662332) + +[04985] +centroid = (0.79184612523930875, -1.2205278572749441) +station = ('kgnr', 0.0045859130891256024) +zone = ('mez009', 0.0025565252428233444) + +[04986] +centroid = (0.77753475698551311, -1.2079649249592113) +station = ('kbgr', 0.0065657393936005976) +zone = ('mez022', 0.00052569226256882423) + +[04987] +centroid = (0.77971097312323978, -1.2086726908774801) +station = ('kbgr', 0.0058252449017376588) +zone = ('mez022', 0.0025385946968566869) + +[04988] +centroid = (0.77789583070116564, -1.2106029726703083) +station = ('kwvl', 0.0040424918233308025) +zone = ('mez022', 0.0024373287401541262) + +[04989] +centroid = (0.77541453101019031, -1.2156132369941306) +station = ('kwvl', 0.0018863909916853815) +zone = ('mez021', 0.0015029281466285749) + +[04992] +centroid = (0.77952787063141304, -1.2245697256632975) +station = ('kaug', 0.0075542533342465214) +zone = ('mez013', 0.00026354262978266782) + +[05001] +centroid = (0.76222347214995734, -1.2632726810789521) +station = ('kleb', 0.0012187725931989799) +zone = ('vtz012', 0.0030541480307316716) + +[05031] +centroid = (0.76270769629763058, -1.2669314671497853) +station = ('kleb', 0.0038392866719020951) +zone = ('vtz012', 0.0020974107972449034) + +[05032] +centroid = (0.76448154422960257, -1.2681167900579848) +station = ('krut', 0.0059608092033863348) +zone = ('vtz012', 0.0039764663510318187) + +[05033] +centroid = (0.76815745198039798, -1.2594001270813344) +station = ('kmpv', 0.0060775026325323124) +zone = ('vtz010', 0.002746329288407086) + +[05034] +centroid = (0.76051849491026913, -1.2678637347697381) +station = ('krut', 0.0039461108317751601) +zone = ('vtz012', 0.00073591298600301505) + +[05035] +centroid = (0.76116723379323536, -1.2686170014216065) +station = ('krut', 0.0036027219668020301) +zone = ('vtz012', 0.0013914032305918102) + +[05036] +centroid = (0.76836193475556158, -1.2668837149414509) +station = ('kmpv', 0.0030842312882002733) +zone = ('vtz010', 0.0026575015278956825) + +[05037] +centroid = (0.75848073574210317, -1.2652495457095161) +station = ('kvsf', 0.0019033916898370115) +zone = ('vtz012', 0.0024279594160854061) + +[05038] +centroid = (0.76783868504581365, -1.2646654363687511) +station = ('kmpv', 0.0038373299416490383) +zone = ('vtz010', 0.001062956073194139) + +[05039] +centroid = (0.76904959448084731, -1.262101338258061) +station = ('kmpv', 0.0039728940894120544) +zone = ('vtz010', 0.0012865751326718803) + +[05040] +centroid = (0.76916450695879857, -1.2601054495386506) +station = ('kmpv', 0.0051380782830159942) +zone = ('vtz010', 0.0025012657967095125) + +[05041] +centroid = (0.76716900221182338, -1.2660426756814995) +station = ('kmpv', 0.004280705975762935) +zone = ('vtz010', 0.0022142014084023105) + +[05042] +centroid = (0.77182238161019812, -1.2583257722069769) +station = ('k1v4', 0.0035389416487947118) +zone = ('vtz007', 0.004233579668367367) + +[05043] +centroid = (0.76454318925878306, -1.2602092791758517) +station = ('kleb', 0.0032300274689545201) +zone = ('nhz005', 0.0038985307978912967) + +[05045] +centroid = (0.76651101308382152, -1.259783820264093) +station = ('kleb', 0.0051897664153304802) +zone = ('vtz010', 0.0029062536133524926) + +[05046] +centroid = (0.77200194108364339, -1.2611315635124829) +station = ('kmpv', 0.0039084246411171088) +zone = ('vtz010', 0.0042324729634963089) + +[05048] +centroid = (0.76062522179402858, -1.2641020266329148) +station = ('kleb', 0.0018578255467870575) +zone = ('vtz012', 0.0019950304476153654) + +[05050] +centroid = (0.77260161876133615, -1.2577541768769489) +station = ('k1v4', 0.0026813772891515855) +zone = ('vtz007', 0.0034865194170900669) + +[05051] +centroid = (0.76976847814645122, -1.2587618776271727) +station = ('k1v4', 0.0056046631136584995) +zone = ('vtz010', 0.0036361659831701718) + +[05052] +centroid = (0.76091098455245765, -1.2629152376481436) +station = ('kleb', 0.00098575605349057738) +zone = ('vtz012', 0.002870033772178409) + +[05053] +centroid = (0.76304829730115742, -1.2651756484689867) +station = ('kleb', 0.0028221206351441313) +zone = ('vtz012', 0.0027237251584818064) + +[05055] +centroid = (0.76406374731326021, -1.2622916489596985) +station = ('kleb', 0.0025365320139797932) +zone = ('vtz010', 0.0040341439092993576) + +[05056] +centroid = (0.7593353362103421, -1.2689282285338221) +station = ('krut', 0.003144948142652071) +zone = ('vtz012', 0.001970681244480087) + +[05058] +centroid = (0.76587251928356448, -1.2613894010028801) +station = ('kleb', 0.0043412663524544362) +zone = ('vtz010', 0.002537229098162615) + +[05059] +centroid = (0.7616235850327544, -1.2641024280586428) +station = ('kleb', 0.0016153949448285902) +zone = ('vtz012', 0.0022361431702540486) + +[05060] +centroid = (0.7673701688614083, -1.2690045343287191) +station = ('kmpv', 0.0044377613890001551) +zone = ('vtz018', 0.0035328609361966364) + +[05061] +centroid = (0.76649211116802252, -1.2665886495781087) +station = ('kmpv', 0.0049436150587434677) +zone = ('vtz010', 0.0028810377997458897) + +[05062] +centroid = (0.75915701592066598, -1.2671084958958152) +station = ('kvsf', 0.002766261530228561) +zone = ('vtz012', 0.0014654605154755945) + +[05065] +centroid = (0.76414837832868943, -1.264026139717038) +station = ('kleb', 0.00303286347195708) +zone = ('vtz010', 0.003937833092221581) + +[05067] +centroid = (0.76231396747167335, -1.2656789665186767) +station = ('kleb', 0.0028588664712713373) +zone = ('vtz012', 0.0019041833639451978) + +[05068] +centroid = (0.76412191913722916, -1.2661926692774161) +station = ('kleb', 0.0040483617685403879) +zone = ('vtz012', 0.0035435406538369581) + +[05069] +centroid = (0.77150659918863485, -1.2589270032277038) +station = ('k1v4', 0.0039766609349151461) +zone = ('vtz007', 0.0045632046130560057) + +[05070] +centroid = (0.7653545928280352, -1.262648080099541) +station = ('kleb', 0.0038501942275445838) +zone = ('vtz010', 0.0027188714453720126) + +[05071] +centroid = (0.76029259694518347, -1.266172353644923) +station = ('kleb', 0.0033561334375300585) +zone = ('vtz012', 0.00058880701158060171) + +[05072] +centroid = (0.76618083169592921, -1.2631308905305201) +station = ('kleb', 0.0047236650654663868) +zone = ('vtz010', 0.0018627669050649577) + +[05075] +centroid = (0.76527579121230771, -1.2616742038302204) +station = ('kleb', 0.0037332261468673877) +zone = ('vtz010', 0.0029811263233185765) + +[05076] +centroid = (0.77042069023462911, -1.2606680564230308) +station = ('kmpv', 0.0043233894212808778) +zone = ('vtz010', 0.0030006867033265396) + +[05077] +centroid = (0.7663530607865161, -1.2646534634100823) +station = ('kleb', 0.0052101207795266511) +zone = ('vtz010', 0.0019815407893439972) + +[05079] +centroid = (0.76719027777540516, -1.2623362421220869) +station = ('kmpv', 0.0052045079987388327) +zone = ('vtz010', 0.0010613641328503206) + +[05081] +centroid = (0.77009106735209742, -1.2577866050944508) +station = ('k1v4', 0.0051627514058750264) +zone = ('nhz003', 0.0039679268322364621) + +[05083] +centroid = (0.76652935649426002, -1.2613162018940516) +station = ('kleb', 0.0050002176912306417) +zone = ('vtz010', 0.0020392022134346679) + +[05084] +centroid = (0.76322982899665726, -1.2645162107177055) +station = ('kleb', 0.0025478197057435645) +zone = ('vtz012', 0.0031183290490394548) + +[05086] +centroid = (0.76984673871011078, -1.2618855981092221) +station = ('kmpv', 0.003689803071412567) +zone = ('vtz010', 0.0020415421889298136) + +[05089] +centroid = (0.75914127305081291, -1.2643568796102909) +station = ('kvsf', 0.0027102144938568194) +zone = ('vtz012', 0.0023328362841346295) + +[05091] +centroid = (0.76156764723022796, -1.2667096881617343) +station = ('kleb', 0.003500649043097174) +zone = ('vtz012', 0.00096249531626542775) + +[05101] +centroid = (0.75367059087031429, -1.2652453918258963) +station = ('kvsf', 0.0029447542958859836) +zone = ('vtz015', 0.0038370211693282571) + +[05141] +centroid = (0.75312995768121649, -1.2665718944172897) +station = ('kvsf', 0.0035340044431329499) +zone = ('vtz015', 0.0032086367547813108) + +[05142] +centroid = (0.75742955884021201, -1.2667682614114315) +station = ('kvsf', 0.0011589192505371431) +zone = ('vtz012', 0.00318207475324953) + +[05143] +centroid = (0.75533713595987362, -1.2678132423944779) +station = ('kvsf', 0.002015524520671982) +zone = ('vtz014', 0.0051672401368161496) + +[05146] +centroid = (0.75371986151509807, -1.267702431440269) +station = ('kvsf', 0.0032434651648644438) +zone = ('vtz014', 0.0037471498590359348) + +[05148] +centroid = (0.7545296070215608, -1.2704427554455326) +station = ('kvsf', 0.00405391871509356) +zone = ('vtz014', 0.0040122241429272178) + +[05149] +centroid = (0.75713348118590362, -1.2690659524650969) +station = ('kvsf', 0.002536706178381168) +zone = ('vtz012', 0.0038294419756848904) + +[05150] +centroid = (0.75632855278817646, -1.2659010945725779) +station = ('kvsf', 0.00032549467900129411) +zone = ('nhz007', 0.00394313448658883) + +[05151] +centroid = (0.75739116159666808, -1.265310876579431) +station = ('kvsf', 0.00082945575133147598) +zone = ('vtz012', 0.0034093950308791295) + +[05152] +centroid = (0.75456399000782504, -1.2730259300049469) +station = ('krut', 0.0052378654178193177) +zone = ('vtz013', 0.0039703300025864504) + +[05153] +centroid = (0.75779466426643671, -1.2678517094511919) +station = ('kvsf', 0.001994087559268198) +zone = ('vtz012', 0.0029074810599632648) + +[05154] +centroid = (0.75285121114638043, -1.2661694389450722) +station = ('kvsf', 0.0037677319473542236) +zone = ('vtz015', 0.0029309538758892579) + +[05155] +centroid = (0.75211335575180727, -1.2726223749753007) +station = ('kddh', 0.0056192439824500175) +zone = ('vtz014', 0.0022937210309146722) + +[05156] +centroid = (0.75591304225315403, -1.2646939026888511) +station = ('kvsf', 0.00098008880341449948) +zone = ('nhz007', 0.0031637149471883553) + +[05158] +centroid = (0.75195859740703308, -1.2648353092648477) +station = ('keen', 0.0041278415426143087) +zone = ('vtz015', 0.0023271013461559557) + +[05161] +centroid = (0.7561017821584648, -1.2706503623600574) +station = ('krut', 0.0041416433883015268) +zone = ('vtz019', 0.004451669187178652) + +[05201] +centroid = (0.74821359207115123, -1.276345249536267) +station = ('kddh', 0.0015639052446279221) +zone = ('vtz013', 0.0029344401192200318) + +[05250] +centroid = (0.75230242726967589, -1.2771105415066817) +station = ('kddh', 0.0039705220680940111) +zone = ('vtz013', 0.0015694746645825506) + +[05251] +centroid = (0.75510244153535788, -1.2752009244121971) +station = ('krut', 0.0049136061959827856) +zone = ('vtz013', 0.0040086338896161066) + +[05252] +centroid = (0.75190548703789473, -1.2752904248962393) +station = ('kddh', 0.0041543392435786823) +zone = ('vtz013', 0.00085188883697773058) + +[05253] +centroid = (0.75478095188714045, -1.2741256445133358) +station = ('krut', 0.0050622328633948884) +zone = ('vtz013', 0.0038479560190483935) + +[05254] +centroid = (0.75317601692017666, -1.2751533641900803) +station = ('kddh', 0.0053015996355669798) +zone = ('vtz013', 0.0021047229587029697) + +[05255] +centroid = (0.75288903243127114, -1.2744778170498032) +station = ('kddh', 0.0053018494751087249) +zone = ('vtz013', 0.0019932189273807015) + +[05257] +centroid = (0.74977108898904599, -1.2786413872468985) +station = ('kddh', 0.0013228890115790084) +zone = ('vtz013', 0.0025272392932983172) + +[05260] +centroid = (0.74715513714627924, -1.2787263149683004) +station = ('kddh', 0.0013154995976768749) +zone = ('nyz054', 0.0024108682858740727) + +[05261] +centroid = (0.74669571412727687, -1.2774963988977124) +station = ('kaqw', 0.0014856901235501796) +zone = ('nyz054', 0.0029339519004020556) + +[05262] +centroid = (0.7500333945223282, -1.2754038887509116) +station = ('kddh', 0.0027343683026355217) +zone = ('vtz013', 0.0011010416524065564) + +[05301] +centroid = (0.74774737972135841, -1.2680789687730942) +station = ('kore', 0.0067749191476238445) +zone = ('vtz015', 0.0025071141943696965) + +[05340] +centroid = (0.7534407310078266, -1.2736079274973167) +station = ('kddh', 0.0061157785778722211) +zone = ('vtz013', 0.0027904141121544413) + +[05341] +centroid = (0.74986835618825953, -1.2705623454058792) +station = ('kaqw', 0.0066000304764372098) +zone = ('vtz014', 0.00066485111847297388) + +[05342] +centroid = (0.74660818586528932, -1.2705093048499112) +station = ('kaqw', 0.0049547584163932229) +zone = ('maz002', 0.0027999722422460574) + +[05343] +centroid = (0.75229085573673515, -1.2709532991583261) +station = ('kvsf', 0.0057859501526040099) +zone = ('vtz014', 0.0018240255898811953) + +[05345] +centroid = (0.75027723447212424, -1.2685755323985788) +station = ('kvsf', 0.0066722296367966432) +zone = ('vtz014', 0.0013326116354093435) + +[05346] +centroid = (0.75114935804605343, -1.2660011368453024) +station = ('keen', 0.0042014333051021494) +zone = ('vtz015', 0.0012561541601811064) + +[05350] +centroid = (0.74684284538321988, -1.2736128318725148) +station = ('kaqw', 0.0029502566941283282) +zone = ('maz002', 0.0038277055258668789) + +[05352] +centroid = (0.74714122687214091, -1.2754260020725343) +station = ('kaqw', 0.0022113520200576068) +zone = ('vtz013', 0.0039754546550964292) + +[05353] +centroid = (0.75173130317854575, -1.2685435056068048) +station = ('kvsf', 0.0053046971329678855) +zone = ('vtz014', 0.0018028409339000239) + +[05354] +centroid = (0.74637492261076022, -1.2657491811144843) +station = ('keen', 0.0040386709819052952) +zone = ('vtz015', 0.0035795279894153156) + +[05355] +centroid = (0.75084305276232832, -1.2708358384996667) +station = ('kvsf', 0.0068860273977897927) +zone = ('vtz014', 0.00047229491277490585) + +[05356] +centroid = (0.75006447883630623, -1.2717268465361025) +station = ('kaqw', 0.0061702823849477369) +zone = ('vtz014', 0.0010927465323810719) + +[05358] +centroid = (0.74653570234145394, -1.268949818256669) +station = ('kaqw', 0.0060491301255275161) +zone = ('maz002', 0.0029379937615435794) + +[05359] +centroid = (0.75316219391250094, -1.269132554229353) +station = ('kvsf', 0.0042704891948068023) +zone = ('vtz014', 0.0027940673242993373) + +[05360] +centroid = (0.75049365529937151, -1.2731648233068207) +station = ('kddh', 0.0043754528448697585) +zone = ('vtz014', 0.0020458987234245325) + +[05361] +centroid = (0.74666396658818301, -1.2719807919422677) +station = ('kaqw', 0.0039456444180756825) +zone = ('maz002', 0.0030723117954495464) + +[05362] +centroid = (0.74936240269139887, -1.2681563043122499) +station = ('keen', 0.0050651015525563945) +zone = ('vtz015', 0.0014155490973279351) + +[05363] +centroid = (0.7484457208616665, -1.2722250507710842) +station = ('kaqw', 0.0047382531507569603) +zone = ('vtz014', 0.0024783611743396223) + +[05401] +centroid = (0.77626347661165296, -1.2777555104784637) +station = ('kbtv', 0.00076718332264143132) +zone = ('vtz005', 0.00067159083593664229) + +[05403] +centroid = (0.77570924730768209, -1.2771179417027101) +station = ('kbtv', 0.00047984608956641806) +zone = ('vtz005', 0.00063832099289240756) + +[05404] +centroid = (0.77659451321087858, -1.2773166648913421) +station = ('kbtv', 0.00066571095078798829) +zone = ('vtz005', 0.0004561855818203263) + +[05405] +centroid = (0.77621307150285535, -1.2775043750523942) +station = ('kbtv', 0.0005812908896980774) +zone = ('vtz005', 0.00050030859443696458) + +[05408] +centroid = (0.776878373560423, -1.2784468877550561) +station = ('kbtv', 0.0014697426412517657) +zone = ('vtz005', 0.0012942830704620371) + +[05439] +centroid = (0.77657620470702526, -1.2769599370455271) +station = ('kbtv', 0.00051852631840737973) +zone = ('vtz005', 0.00028496183488830061) + +[05440] +centroid = (0.78466306562309329, -1.2791862615860785) +station = ('kfso', 0.002420946114669917) +zone = ('vtz001', 0.0028116285119626186) + +[05441] +centroid = (0.78200463246633312, -1.2692040952753922) +station = ('cwfq', 0.0044900278145353642) +zone = ('vtz016', 0.0010604373203023383) + +[05442] +centroid = (0.78116027708080338, -1.2683540501165009) +station = ('kmvl', 0.0039655177943578972) +zone = ('vtz016', 0.0020173811315633656) + +[05443] +centroid = (0.77037861034636346, -1.2747872639261819) +station = ('kbtv', 0.0058742794685473212) +zone = ('vtz018', 0.0018580487661191477) + +[05444] +centroid = (0.77928476371990274, -1.272291914334728) +station = ('kmvl', 0.0040327691901809399) +zone = ('vtz002', 0.0039129935915537054) + +[05445] +centroid = (0.77335460616052409, -1.2779471476303326) +station = ('kbtv', 0.0028748311221509404) +zone = ('nyz035', 0.0028730065242236623) + +[05446] +centroid = (0.77739382164841442, -1.2772826309709282) +station = ('kbtv', 0.0013668878063478119) +zone = ('vtz005', 0.0011334153750260966) + +[05447] +centroid = (0.7842192633008962, -1.2688873878293254) +station = ('cwfq', 0.0026155554218749008) +zone = ('vtz016', 0.0011926156106143308) + +[05448] +centroid = (0.78103991917558568, -1.2723601218018958) +station = ('kfso', 0.0039888796398915146) +zone = ('vtz002', 0.0024188904271384803) + +[05450] +centroid = (0.7835582023934109, -1.2705167224992322) +station = ('cwfq', 0.002753088601077295) +zone = ('vtz016', 0.00099464137073772621) + +[05452] +centroid = (0.77734996152431179, -1.274964502111722) +station = ('kbtv', 0.001770605501015607) +zone = ('vtz005', 0.0016809153619884401) + +[05454] +centroid = (0.78034175256820304, -1.2745943701372515) +station = ('kfso', 0.0039344676253785342) +zone = ('vtz002', 0.0024689030938471706) + +[05455] +centroid = (0.78193694859794083, -1.2735212544466628) +station = ('kfso', 0.0027759894550948281) +zone = ('vtz002', 0.0012007262732237627) + +[05456] +centroid = (0.77180930909410073, -1.2787084253434675) +station = ('kbtv', 0.0045130955695743564) +zone = ('nyz035', 0.0021781229054259332) + +[05457] +centroid = (0.78465976695080708, -1.2726578400657012) +station = ('cwfq', 0.0019196879782976991) +zone = ('vtz002', 0.0023412051149867075) + +[05458] +centroid = (0.78047366455306877, -1.2794569970596479) +station = ('kpbg', 0.0023030561301441255) +zone = ('vtz001', 0.0013869301578584613) + +[05459] +centroid = (0.78452654596900229, -1.2741840257768153) +station = ('kfso', 0.0012204181110714426) +zone = ('vtz002', 0.0017528208687028514) + +[05461] +centroid = (0.77375308228204687, -1.2756144452718721) +station = ('kbtv', 0.0024639031554403498) +zone = ('vtz017', 0.0025363875202410388) + +[05462] +centroid = (0.77339970546839554, -1.2732544808704953) +station = ('kbtv', 0.0036507462704517156) +zone = ('vtz017', 0.0019619843150728085) + +[05463] +centroid = (0.78315234352915208, -1.2801850437038247) +station = ('kpbg', 0.0041280311501421755) +zone = ('vtz001', 0.0014646293569348411) + +[05464] +centroid = (0.77922427060802857, -1.2709312556498733) +station = ('kmvl', 0.0031951781424346785) +zone = ('vtz006', 0.0023168548402727764) + +[05465] +centroid = (0.77605899383648924, -1.2733819422657686) +station = ('kbtv', 0.0023741506699833498) +zone = ('vtz017', 0.00081463729467737755) + +[05468] +centroid = (0.77941815923463265, -1.2766121452854819) +station = ('kbtv', 0.0033291242091179028) +zone = ('vtz001', 0.0030652715967331612) + +[05471] +centroid = (0.78239586547146023, -1.2667139991249867) +station = ('cwfq', 0.0050015682415226817) +zone = ('vtz016', 0.0019506419004866162) + +[05472] +centroid = (0.76973838867014688, -1.2767992620345885) +station = ('kbtv', 0.0063516854990906882) +zone = ('vtz009', 0.0017681670304847783) + +[05473] +centroid = (0.77216745065661008, -1.2774878642376704) +station = ('kbtv', 0.0039616950958052529) +zone = ('nyz035', 0.003001095570368826) + +[05474] +centroid = (0.78169338790082499, -1.2792912955004634) +station = ('kpbg', 0.0031866119193540276) +zone = ('vtz001', 0.00016312993813776387) + +[05476] +centroid = (0.7846167445847454, -1.2678619370806083) +station = ('cwfq', 0.0028714347181504774) +zone = ('vtz016', 0.0018576324170199695) + +[05477] +centroid = (0.77521886214774927, -1.2734344941295461) +station = ('kbtv', 0.0024943764842183364) +zone = ('vtz017', 0.00043742403094599002) + +[05478] +centroid = (0.7820702742995006, -1.2755127798429433) +station = ('kfso', 0.0021185548233742628) +zone = ('vtz002', 0.0009447870508320907) + +[05481] +centroid = (0.78143488718531207, -1.2776751031598244) +station = ('kfso', 0.0030358809334851133) +zone = ('vtz001', 0.0011833804509280008) + +[05482] +centroid = (0.7745886761147317, -1.2777731033973236) +station = ('kbtv', 0.001682691242923627) +zone = ('vtz005', 0.0018521211065027981) + +[05483] +centroid = (0.7834765733442951, -1.2734469383271128) +station = ('kfso', 0.0018307980159495332) +zone = ('vtz002', 0.0011012963953163492) + +[05485] +centroid = (0.78365875081161829, -1.273582515503408) +station = ('kfso', 0.0016774662016713546) +zone = ('vtz002', 0.0011531043488758016) + +[05486] +centroid = (0.77915419563856103, -1.2794614301959479) +station = ('kpbg', 0.0019780781997649597) +zone = ('vtz001', 0.0027022280215585849) + +[05487] +centroid = (0.7719318137542982, -1.2739180550521036) +station = ('kbtv', 0.0046119249354023518) +zone = ('vtz018', 0.0031863623971741268) + +[05488] +centroid = (0.78402509542161181, -1.2762788746648139) +station = ('kfso', 0.00034837796135772626) +zone = ('vtz002', 0.0016595391807372199) + +[05489] +centroid = (0.77790888576397055, -1.2723731943179935) +station = ('kmvl', 0.0036041399396580633) +zone = ('vtz017', 0.0025910894907589994) + +[05491] +centroid = (0.76989895896133043, -1.2795147674578888) +station = ('kbtv', 0.0065085640249564376) +zone = ('vtz009', 0.0018150500727960562) + +[05492] +centroid = (0.78081866378631049, -1.2699315659609161) +station = ('kmvl', 0.0039946499930963702) +zone = ('vtz016', 0.0022886319317234863) + +[05494] +centroid = (0.77854638472655402, -1.2741539188472182) +station = ('kbtv', 0.0030578370347921604) +zone = ('vtz005', 0.0029328635498946745) + +[05495] +centroid = (0.77543352019245204, -1.2757701460944424) +station = ('kbtv', 0.00093766642372068905) +zone = ('vtz005', 0.0011517580254316927) + +[05602] +centroid = (0.77274370601574094, -1.2672744068945099) +station = ('kmpv', 0.0014134596241745746) +zone = ('vtz008', 7.3012171282636672e-05) + +[05640] +centroid = (0.77391180252422331, -1.2653609500756708) +station = ('kmpv', 0.0026133071608130396) +zone = ('vtz008', 0.0018691029057848994) + +[05641] +centroid = (0.77124076809026354, -1.2648778603920112) +station = ('kmpv', 0.0011985147973726383) +zone = ('vtz008', 0.0023161323943063717) + +[05647] +centroid = (0.77497331177528617, -1.2615653825513586) +station = ('k1v4', 0.0033217255965820487) +zone = ('vtz007', 0.0024925714472356576) + +[05648] +centroid = (0.77462517094939087, -1.2652308183266421) +station = ('kmvl', 0.0030502519027419688) +zone = ('vtz008', 0.0024458854345224173) + +[05649] +centroid = (0.7708534795292461, -1.262696617706039) +station = ('kmpv', 0.0028079915094794522) +zone = ('vtz010', 0.0028354448430716779) + +[05650] +centroid = (0.77458405099221395, -1.2642528928934573) +station = ('kmvl', 0.0034886423824771308) +zone = ('vtz008', 0.0029080536780651985) + +[05651] +centroid = (0.77287205752893273, -1.2651762942408098) +station = ('kmpv', 0.0017321480860673672) +zone = ('vtz008', 0.0015776382245377026) + +[05652] +centroid = (0.78056770289316624, -1.2673024543355893) +station = ('kmvl', 0.0033151351646926288) +zone = ('vtz006', 0.0020856099522291696) + +[05653] +centroid = (0.78042130467550885, -1.2648847893491417) +station = ('kmvl', 0.0036387826829099774) +zone = ('vtz006', 0.002832360280687425) + +[05654] +centroid = (0.77039332347195777, -1.2649388771026608) +station = ('kmpv', 0.0015440888377281233) +zone = ('vtz010', 0.0026569599907852637) + +[05655] +centroid = (0.77884998474993838, -1.2665339684126438) +station = ('kmvl', 0.001711686830837565) +zone = ('vtz006', 0.00098212023590977886) + +[05656] +centroid = (0.77925676863870075, -1.268659587455355) +station = ('kmvl', 0.0021951354928715348) +zone = ('vtz006', 0.00094630436466403825) + +[05657] +centroid = (0.77729126610156729, -1.2658300596720218) +station = ('kmvl', 0.0011196900390767932) +zone = ('vtz006', 0.0018798647828416732) + +[05658] +centroid = (0.77431050553854885, -1.2628300132207688) +station = ('kmpv', 0.0039078741731796368) +zone = ('vtz007', 0.0036005431636808127) + +[05660] +centroid = (0.77237791991110805, -1.2694561382726726) +station = ('kmpv', 0.0023006476132987745) +zone = ('vtz008', 0.0015325002287595766) + +[05661] +centroid = (0.77724171620410321, -1.2674615236436162) +station = ('kmvl', 4.5410867620194846e-05) +zone = ('vtz006', 0.001301595146794969) + +[05663] +centroid = (0.77052120374625144, -1.2687020862226412) +station = ('kmpv', 0.0018080702175749931) +zone = ('vtz008', 0.0023943030142859305) + +[05664] +centroid = (0.77086259014794145, -1.268036470005808) +station = ('kmpv', 0.0012245679783752001) +zone = ('vtz008', 0.0019147098941241986) + +[05667] +centroid = (0.77264053960365553, -1.2634241232981476) +station = ('kmpv', 0.0025289150391148872) +zone = ('vtz008', 0.0028257912432183168) + +[05669] +centroid = (0.76907266773355876, -1.2693759927534212) +station = ('kmpv', 0.0031246797377742939) +zone = ('vtz008', 0.0039179682535648184) + +[05672] +centroid = (0.77653145446500405, -1.2690813637223919) +station = ('kmvl', 0.0013995412813462586) +zone = ('vtz006', 0.0021755411689465586) + +[05673] +centroid = (0.77141884403384464, -1.2713126449980192) +station = ('kmpv', 0.0034307597024425033) +zone = ('vtz018', 0.0030972527895333449) + +[05674] +centroid = (0.76990882007160422, -1.2718917277905382) +station = ('kmpv', 0.0041404448510039193) +zone = ('vtz018', 0.0016414850080117927) + +[05675] +centroid = (0.76927420090228649, -1.2640133988134985) +station = ('kmpv', 0.002815339637850149) +zone = ('vtz010', 0.0013586888952222985) + +[05676] +centroid = (0.77315583061201443, -1.2710852984096541) +station = ('kmpv', 0.0036904544585666462) +zone = ('vtz017', 0.0025207806839499876) + +[05677] +centroid = (0.77508686289642093, -1.268998617662555) +station = ('kmvl', 0.0024484510429040574) +zone = ('vtz008', 0.0026412765108898882) + +[05678] +centroid = (0.77069545741877055, -1.2649763667749938) +station = ('kmpv', 0.0013359682385218777) +zone = ('vtz008', 0.0026506529620865123) + +[05679] +centroid = (0.76984628492450513, -1.2659205899003227) +station = ('kmpv', 0.0016477721395597655) +zone = ('vtz010', 0.0026520166907126265) + +[05680] +centroid = (0.77738005100061625, -1.2648739508544868) +station = ('kmvl', 0.0018049658596389026) +zone = ('vtz006', 0.0023937728594758843) + +[05681] +centroid = (0.77585499975351613, -1.2637429774991944) +station = ('kmvl', 0.0029597496207363601) +zone = ('vtz006', 0.0039469438102346282) + +[05682] +centroid = (0.77495730710604538, -1.2665060780511967) +station = ('kmvl', 0.0023829516593440315) +zone = ('vtz008', 0.0023241705171159607) + +[05701] +centroid = (0.76139250343979037, -1.2725231355540323) +station = ('krut', 0.0016700975535100589) +zone = ('vtz019', 0.0010391705689683868) + +[05730] +centroid = (0.75812894717807122, -1.2704017227548181) +station = ('krut', 0.0026394625804729171) +zone = ('vtz019', 0.0025689918822792172) + +[05732] +centroid = (0.76172823497470399, -1.2777690542334592) +station = ('krut', 0.0038191113958807635) +zone = ('vtz011', 0.0013552064074363024) + +[05733] +centroid = (0.76463954888678565, -1.2756669622290646) +station = ('krut', 0.0051536069475390045) +zone = ('vtz011', 0.0039766176317846194) + +[05734] +centroid = (0.76762589450341057, -1.2798837475150528) +station = ('kbtv', 0.0087643976576688293) +zone = ('vtz009', 0.0013533743003158218) + +[05735] +centroid = (0.76158613026700661, -1.2770179343365708) +station = ('krut', 0.0032814355583200487) +zone = ('vtz011', 0.00094252474895341494) + +[05736] +centroid = (0.76154982741856514, -1.2742379389974092) +station = ('krut', 0.0018994922219529435) +zone = ('vtz019', 0.0020226853312156215) + +[05737] +centroid = (0.76398913448773742, -1.2724530082246872) +station = ('krut', 0.0042255111372009845) +zone = ('vtz019', 0.0035505497669629385) + +[05738] +centroid = (0.75971716189080096, -1.2716597560796556) +station = ('krut', 0.0011325388295785163) +zone = ('vtz019', 0.00076276444555044656) + +[05739] +centroid = (0.75647144289403723, -1.2740937748011945) +station = ('krut', 0.0033888014167021054) +zone = ('vtz019', 0.0043018760605630464) + +[05740] +centroid = (0.76745183281710905, -1.2759277493258978) +station = ('kmpv', 0.0078398779334759704) +zone = ('vtz009', 0.0018946823557683247) + +[05742] +centroid = (0.75781590492343343, -1.2725335377163742) +station = ('krut', 0.0020452649780031899) +zone = ('vtz019', 0.0026885443038685971) + +[05743] +centroid = (0.76231321698009491, -1.2794123166307967) +station = ('krut', 0.0051416522180302744) +zone = ('vtz011', 0.0026295284681407626) + +[05744] +centroid = (0.76260439025920512, -1.2754945935121376) +station = ('krut', 0.0032530183037611507) +zone = ('vtz011', 0.0020352172774423935) + +[05747] +centroid = (0.76803721624822796, -1.2713207607790409) +station = ('kmpv', 0.0048370561457945285) +zone = ('vtz018', 0.00173881451870431) + +[05748] +centroid = (0.76629518566851995, -1.2727254366676308) +station = ('krut', 0.0065049206085113628) +zone = ('vtz018', 0.0025287330150458908) + +[05751] +centroid = (0.76196858426599612, -1.2703275986214859) +station = ('krut', 0.0030139228057273542) +zone = ('vtz019', 0.0018802066883856678) + +[05753] +centroid = (0.76776141931982789, -1.2772060110167658) +station = ('kbtv', 0.0083359525655867118) +zone = ('vtz009', 0.00094676496596572397) + +[05757] +centroid = (0.75887093900297153, -1.2762482964963189) +station = ('krut', 0.0023863590721361952) +zone = ('vtz011', 0.0018526049553938603) + +[05758] +centroid = (0.75835933063933447, -1.269862922161435) +station = ('krut', 0.0028282185090397175) +zone = ('vtz019', 0.0025630538837356316) + +[05759] +centroid = (0.75977947014509717, -1.2734754395537979) +station = ('krut', 0.00018798846468815901) +zone = ('vtz019', 0.0013414716966572723) + +[05760] +centroid = (0.76446494614841609, -1.2791465902521806) +station = ('krut', 0.0063367999093250187) +zone = ('vtz009', 0.0039067061294166937) + +[05761] +centroid = (0.75679094286690718, -1.276739030722102) +station = ('krut', 0.0039484474021304079) +zone = ('vtz011', 0.0039242074633769278) + +[05762] +centroid = (0.76453240312400561, -1.2712443502643884) +station = ('krut', 0.0049429831905000556) +zone = ('vtz019', 0.0040958373644612361) + +[05763] +centroid = (0.76323625180830457, -1.2740067701379825) +station = ('krut', 0.0034833899656024044) +zone = ('vtz011', 0.0031151205139863481) + +[05764] +centroid = (0.75991530912077987, -1.2773923598210011) +station = ('krut', 0.0030285557065432246) +zone = ('vtz011', 0.001012552391193526) + +[05765] +centroid = (0.76186529568086303, -1.274695093088384) +station = ('krut', 0.0023260265288505715) +zone = ('vtz011', 0.0017591973036421534) + +[05766] +centroid = (0.76768209410532473, -1.2740336831150483) +station = ('kmpv', 0.0065691408079372885) +zone = ('vtz018', 0.0011374217292483518) + +[05767] +centroid = (0.76571001167691133, -1.2711555828186321) +station = ('krut', 0.0060951287977471739) +zone = ('vtz018', 0.0034916385665548994) + +[05769] +centroid = (0.76675928616991773, -1.2761816423721852) +station = ('krut', 0.007281369079889328) +zone = ('vtz009', 0.0021660576806542087) + +[05770] +centroid = (0.7658845969619883, -1.2797537728456569) +station = ('krut', 0.0077036013871596525) +zone = ('vtz009', 0.0026598606752442746) + +[05772] +centroid = (0.76359545802165751, -1.2699175160604375) +station = ('krut', 0.0044843132948896866) +zone = ('vtz019', 0.0034402500638256342) + +[05773] +centroid = (0.75782601037980246, -1.2738633564333461) +station = ('krut', 0.0020288320783618257) +zone = ('vtz019', 0.0030027772954214563) + +[05774] +centroid = (0.75822314259780121, -1.2774254338103264) +station = ('krut', 0.0034359840604911572) +zone = ('vtz011', 0.0025723364745281925) + +[05775] +centroid = (0.75687871547498997, -1.2780764416213204) +station = ('krut', 0.0045799650943284089) +zone = ('nyz043', 0.00365093924817751) + +[05776] +centroid = (0.75490258388271203, -1.2775349532208891) +station = ('kgfl', 0.0055092673989471357) +zone = ('nyz084', 0.0034704185707244185) + +[05777] +centroid = (0.76020339316711405, -1.2749414463123032) +station = ('krut', 0.0013129444250359397) +zone = ('vtz011', 0.0012586160142258203) + +[05778] +centroid = (0.76578801044118294, -1.2777998243881716) +station = ('krut', 0.0068431381745350656) +zone = ('vtz009', 0.0025545062727315303) + +[05819] +centroid = (0.7750088641321492, -1.2563416644600172) +station = ('k1v4', 0.00046770980143738625) +zone = ('vtz007', 0.0018163954112125761) + +[05820] +centroid = (0.78127222249902628, -1.2631847513912366) +station = ('kefk', 0.0027122454584471299) +zone = ('vtz003', 0.001985333618583455) + +[05821] +centroid = (0.77337886623712682, -1.2586416418950028) +station = ('k1v4', 0.0022090676633721579) +zone = ('vtz007', 0.0026811988515408327) + +[05822] +centroid = (0.78108231322311661, -1.2591309798573846) +station = ('kefk', 0.0024694096700377901) +zone = ('vtz003', 0.0018235693964246268) + +[05824] +centroid = (0.77566828443013769, -1.2538957949528575) +station = ('k1v4', 0.0022118074547927934) +zone = ('vtz007', 0.0032531356879063338) + +[05825] +centroid = (0.7829640225028619, -1.2609884465138192) +station = ('kefk', 0.00041534578574534657) +zone = ('vtz003', 0.00055805312900843727) + +[05826] +centroid = (0.77924983968157036, -1.2636548732785537) +station = ('kmvl', 0.0033315342463482106) +zone = ('vtz003', 0.0037200441068820566) + +[05827] +centroid = (0.77975896967766956, -1.2629639497875669) +station = ('kefk', 0.0039064558294771021) +zone = ('vtz003', 0.0030320694606199984) + +[05828] +centroid = (0.77558075616815025, -1.2588156163148416) +station = ('k1v4', 0.0013962569176735227) +zone = ('vtz007', 0.00055203254747992407) + +[05829] +centroid = (0.78482586993571934, -1.257828510449791) +station = ('kefk', 0.0025122771871187609) +zone = ('vtz003', 0.0032473637077856947) + +[05830] +centroid = (0.78493076422376418, -1.2563901671599302) +station = ('kefk', 0.00342769090276056) +zone = ('vtz003', 0.004064783840390794) + +[05832] +centroid = (0.77803329283305267, -1.2552007078214036) +station = ('kcda', 0.0011560202169857894) +zone = ('vtz007', 0.0030303567520468229) + +[05833] +centroid = (0.78264607587302615, -1.2559312851929958) +station = ('kefk', 0.0034096762457787046) +zone = ('vtz003', 0.003525831229299785) + +[05836] +centroid = (0.77693879685912703, -1.2612564592737558) +station = ('k1v4', 0.0035365120294674969) +zone = ('vtz007', 0.0022073616376958064) + +[05837] +centroid = (0.77951608965896202, -1.2532347689519572) +station = ('kcda', 0.0030192845497028615) +zone = ('vtz004', 0.0010340926135728986) + +[05839] +centroid = (0.77970257808953769, -1.2601675134468515) +station = ('kcda', 0.0029965139103778804) +zone = ('vtz003', 0.0027560559121472678) + +[05841] +centroid = (0.77855071314309887, -1.2616741165637579) +station = ('kmvl', 0.0042803574177227412) +zone = ('vtz007', 0.0034065003472373225) + +[05842] +centroid = (0.77770002221238432, -1.2606786854781755) +station = ('k1v4', 0.003650310752572323) +zone = ('vtz007', 0.0023015676650496942) + +[05843] +centroid = (0.77694701735990401, -1.2627127445483273) +station = ('kmvl', 0.0033557296974914674) +zone = ('vtz006', 0.00397051002958013) + +[05845] +centroid = (0.78192097883528511, -1.2617084995500223) +station = ('kefk', 0.0015729066841347176) +zone = ('vtz003', 0.00075805383843122794) + +[05846] +centroid = (0.78192298596392484, -1.2542404974801262) +station = ('kcda', 0.0044249670610349628) +zone = ('vtz004', 0.0023265826419900126) + +[05847] +centroid = (0.78179295893465117, -1.2646385408449778) +station = ('kefk', 0.0032057463224574308) +zone = ('vtz003', 0.002728521923051255) + +[05850] +centroid = (0.77739141309404669, -1.2568936073826678) +station = ('kcda', 0.00050522580833714298) +zone = ('vtz007', 0.0017237339751395805) + +[05851] +centroid = (0.7776686586457261, -1.2580436222800995) +station = ('kcda', 0.00090606191931153456) +zone = ('vtz007', 0.0016355100918400212) + +[05853] +centroid = (0.78345039340551514, -1.2555783447116575) +station = ('kefk', 0.0035973643413857027) +zone = ('vtz003', 0.0039077027777302143) + +[05855] +centroid = (0.78414650052438062, -1.2599731012214719) +station = ('kefk', 0.00097002917106019234) +zone = ('vtz003', 0.0018544587056044111) + +[05857] +centroid = (0.784157426285498, -1.2620947060069037) +station = ('kefk', 0.0013318743197981468) +zone = ('vtz003', 0.0019439749629575195) + +[05858] +centroid = (0.77769754384484657, -1.2534416602814886) +station = ('kcda', 0.0024089130795103006) +zone = ('vtz004', 0.0026433231638494834) + +[05859] +centroid = (0.78481646261105109, -1.2643694808874903) +station = ('kefk', 0.0030362967484203322) +zone = ('vtz003', 0.0034434999300497434) + +[05860] +centroid = (0.78195393065156271, -1.2584521340448211) +station = ('kefk', 0.0020624402530499408) +zone = ('vtz003', 0.0017900250999870497) + +[05862] +centroid = (0.77352425216381782, -1.2604385456263936) +station = ('k1v4', 0.0030271572415664257) +zone = ('vtz007', 0.0029130130911305496) + +[05866] +centroid = (0.77914344441036865, -1.25855823261005) +station = ('kcda', 0.0017633353453999771) +zone = ('vtz007', 0.0030895813341297734) + +[05867] +centroid = (0.77955254958703613, -1.2572649087277372) +station = ('kcda', 0.0016903850409673426) +zone = ('vtz007', 0.0035927865839334313) + +[05868] +centroid = (0.78369065543034466, -1.2632320323606732) +station = ('kefk', 0.0018687917188410675) +zone = ('vtz003', 0.0020952300915136964) + +[05871] +centroid = (0.7799755126779645, -1.2555367186089974) +station = ('kcda', 0.0022713401361505597) +zone = ('vtz004', 0.0024507267036167307) + +[05872] +centroid = (0.78310352666997385, -1.2574753954355278) +station = ('kefk', 0.0022595295418620918) +zone = ('vtz003', 0.0025196781503118671) + +[05873] +centroid = (0.77535471857672456, -1.2600457243716472) +station = ('k1v4', 0.0022310295505140031) +zone = ('vtz007', 0.001355277772216076) + +[05874] +centroid = (0.7833636505416911, -1.2650991855944567) +station = ('kefk', 0.0031521706258187719) +zone = ('vtz003', 0.0031309830122160758) + +[05875] +centroid = (0.78033168201841907, -1.2609495954846701) +station = ('kefk', 0.002979614029645312) +zone = ('vtz003', 0.0020788774443527623) + +[05901] +centroid = (0.78434579967166573, -1.2507042160694906) +station = ('cwqh', 0.0076971219508401995) +zone = ('vtz004', 0.0042990487771002129) + +[05902] +centroid = (0.785565488112837, -1.2476997015753524) +station = ('cwqh', 0.0074291423283281421) +zone = ('nhz001', 0.0025936305041140313) + +[05903] +centroid = (0.78426530508656378, -1.2494464445440407) +station = ('kbml', 0.0079273685220925989) +zone = ('vtz004', 0.0045140480321454639) + +[05904] +centroid = (0.77520922793027824, -1.2515152182130147) +station = ('khie', 0.0021352923666826899) +zone = ('vtz004', 0.0049703963937820774) + +[05905] +centroid = (0.7801971694929678, -1.2510419023731665) +station = ('kcda', 0.0047078823812239361) +zone = ('vtz004', 0.00075233168194847075) + +[05906] +centroid = (0.77616528438793575, -1.2515048684105503) +station = ('khie', 0.0026636023517789399) +zone = ('vtz004', 0.004019242758254612) + +[05907] +centroid = (0.783872972524008, -1.2534654316659006) +station = ('kefk', 0.0051220965916166372) +zone = ('vtz004', 0.0038353104653376284) + +[06001] +centroid = (0.72932350960438119, -1.271508069514365) +station = ('kbdl', 0.0033642578671383427) +zone = ('ctz002', 0.0015875144336919117) + +[06002] +centroid = (0.73033180376655071, -1.2695690959818617) +station = ('kbdl', 0.0017149527168123892) +zone = ('ctz002', 0.00068077990939907239) + +[06010] +centroid = (0.72748077352683305, -1.2730562289207614) +station = ('kmmk', 0.0032015281081805773) +zone = ('ctz002', 0.0034755286021064028) + +[06013] +centroid = (0.72880615910750501, -1.2733496536746067) +station = ('kmmk', 0.0045051410726936469) +zone = ('ctz002', 0.0030470696273378955) + +[06016] +centroid = (0.7313261003881194, -1.2661915522666949) +station = ('kbdl', 0.001848268601933117) +zone = ('ctz003', 0.0028606824913961033) + +[06018] +centroid = (0.73346814297909202, -1.2794941725727154) +station = ('kpsf', 0.007141318554262005) +zone = ('ctz001', 0.0025544335628144245) + +[06019] +centroid = (0.73055133127986671, -1.2723932830576838) +station = ('kbdl', 0.0031429743440496778) +zone = ('ctz002', 0.0023835166594273071) + +[06020] +centroid = (0.73015159852128242, -1.2728482903936789) +station = ('kbdl', 0.003625673129855718) +zone = ('ctz002', 0.0025968813424036377) + +[06021] +centroid = (0.73333898861444446, -1.2759198255310935) +station = ('kbaf', 0.0056635068823955269) +zone = ('ctz001', 0.002979768293057647) + +[06022] +centroid = (0.73068964862308727, -1.272821953375266) +station = ('kbdl', 0.0033839588986450484) +zone = ('ctz002', 0.0027313427047496487) + +[06023] +centroid = (0.72627670578246717, -1.2692050901130658) +station = ('kmmk', 0.0022337310983077418) +zone = ('ctz007', 0.0029435691653530052) + +[06024] +centroid = (0.73325011644893301, -1.2788771637755503) +station = ('kpsf', 0.007352197302183402) +zone = ('ctz001', 0.002239109714623367) + +[06026] +centroid = (0.7318116509860243, -1.2696463617078475) +station = ('kbdl', 0.0008080708019068309) +zone = ('ctz002', 0.0021585221092005058) + +[06027] +centroid = (0.7331243305697418, -1.272619023943137) +station = ('kbaf', 0.0038229089031563725) +zone = ('maz009', 0.0028466300811423773) + +[06029] +centroid = (0.73155767067327404, -1.264391454582773) +station = ('kbdl', 0.0031202554354161091) +zone = ('ctz003', 0.0017505832743564794) + +[06031] +centroid = (0.73225737317039863, -1.2796192952267906) +station = ('kpsf', 0.008355210042992809) +zone = ('ctz001', 0.0014990176821180654) + +[06032] +centroid = (0.72824252247886589, -1.2711286872948588) +station = ('khfd', 0.0023528510714071037) +zone = ('ctz002', 0.0019022700216276131) + +[06033] +centroid = (0.72793251709712681, -1.2660431643736902) +station = ('khfd', 0.001515750834772093) +zone = ('ctz002', 0.0030582917251743484) + +[06035] +centroid = (0.73235205728231922, -1.2706668208149035) +station = ('kbdl', 0.0016355891908454486) +zone = ('ctz002', 0.0028465834976115541) + +[06037] +centroid = (0.72615256051277288, -1.2702237340776998) +station = ('kmmk', 0.0017076751495839785) +zone = ('ctz002', 0.0035568770758263074) + +[06039] +centroid = (0.73216438202785228, -1.2819147173524286) +station = ('kpou', 0.0079106492049055427) +zone = ('ctz001', 0.0028106012255845782) + +[06040] +centroid = (0.72887419204174775, -1.2658106516107397) +station = ('khfd', 0.0016923201414110578) +zone = ('ctz003', 0.0029530188462973282) + +[06042] +centroid = (0.72959611258025026, -1.265729999946005) +station = ('khfd', 0.0020711123548509572) +zone = ('ctz003', 0.0025665685311629591) + +[06043] +centroid = (0.72892957133891356, -1.2642742033636241) +station = ('khfd', 0.0028193263949103618) +zone = ('ctz003', 0.0020540213168107747) + +[06051] +centroid = (0.72719389375768273, -1.2700731645231302) +station = ('khfd', 0.0019634345802310243) +zone = ('ctz002', 0.002512167797781835) + +[06052] +centroid = (0.72702681338838937, -1.2706539228317313) +station = ('kmmk', 0.0024561876471597757) +zone = ('ctz002', 0.0027872443520644712) + +[06053] +centroid = (0.72763029588385142, -1.2704590219141612) +station = ('khfd', 0.0019970430933124034) +zone = ('ctz002', 0.0021702566495284408) + +[06057] +centroid = (0.73026392791194072, -1.2740673156097342) +station = ('kbdl', 0.0044026447681617476) +zone = ('ctz001', 0.0033585231574106596) + +[06058] +centroid = (0.73251315117227833, -1.2772051383521399) +station = ('kbaf', 0.0068986441240191567) +zone = ('ctz001', 0.0017489496159527101) + +[06059] +centroid = (0.7322909358519144, -1.2730771903250779) +station = ('kbdl', 0.0033829252300339985) +zone = ('maz009', 0.0036724479333813832) + +[06060] +centroid = (0.73319800091746845, -1.271428115981331) +station = ('kbdl', 0.0025074078116776462) +zone = ('maz009', 0.0029794282057719005) + +[06061] +centroid = (0.73086709624813739, -1.2735116027758993) +station = ('kbdl', 0.0038180508442737459) +zone = ('ctz001', 0.0036859031222371825) + +[06062] +centroid = (0.72734221183751724, -1.2716421631607957) +station = ('kmmk', 0.0027612622713876918) +zone = ('ctz002', 0.0028463130271803119) + +[06063] +centroid = (0.73173272719724902, -1.2735892001144431) +station = ('kbdl', 0.003741682120243256) +zone = ('ctz002', 0.0037292694385776268) + +[06065] +centroid = (0.73259537363333982, -1.2742246221352165) +station = ('kbaf', 0.0050449210911599485) +zone = ('maz009', 0.0035012415340252307) + +[06066] +centroid = (0.73020252722885559, -1.2646502694575512) +station = ('khfd', 0.0030785309120775783) +zone = ('ctz003', 0.0016232147225342729) + +[06067] +centroid = (0.72704524406529036, -1.2681872839064727) +station = ('khfd', 0.0013476021306195296) +zone = ('ctz002', 0.00277292946105452) + +[06068] +centroid = (0.73316461276887779, -1.2814596052966787) +station = ('kpsf', 0.007650382499948552) +zone = ('ctz001', 0.0030872416633011051) + +[06069] +centroid = (0.73060810684043398, -1.2819305998486219) +station = ('kpou', 0.0069073971567150194) +zone = ('ctz001', 0.0026210630030258863) + +[06070] +centroid = (0.73084363902299065, -1.2707557278870003) +station = ('kbdl', 0.0019301132482542945) +zone = ('ctz002', 0.001543619067667118) + +[06071] +centroid = (0.73291229051891693, -1.2645543985217391) +station = ('kbdl', 0.0031564554025885734) +zone = ('maz011', 0.0022816525954447611) + +[06073] +centroid = (0.72718169390621135, -1.2663243369161867) +station = ('khfd', 0.001725415336052364) +zone = ('ctz007', 0.0029101970068336012) + +[06074] +centroid = (0.73021242324571445, -1.2667222021724713) +station = ('khfd', 0.0020554402180526393) +zone = ('ctz002', 0.0020900494484932964) + +[06076] +centroid = (0.73276674751259319, -1.2612351837101738) +station = ('kijd', 0.0042222143698427356) +zone = ('ctz003', 0.0024502749431699554) + +[06078] +centroid = (0.73291141785429093, -1.2680071833809596) +station = ('kbdl', 0.0011161629437734348) +zone = ('maz011', 0.0030275716945217888) + +[06081] +centroid = (0.73138348681392495, -1.2701206200254922) +station = ('kbdl', 0.001258487378635391) +zone = ('ctz002', 0.001799931300954265) + +[06082] +centroid = (0.73275891098425161, -1.2663332904552493) +station = ('kbdl', 0.0018794027662084182) +zone = ('maz011', 0.0025116826459960751) + +[06084] +centroid = (0.73098731452701482, -1.2629039802744682) +station = ('kijd', 0.0032515115177960533) +zone = ('ctz003', 0.00056231747497021442) + +[06085] +centroid = (0.72865672401694925, -1.2721602816025426) +station = ('kmmk', 0.0041196739637529411) +zone = ('ctz002', 0.0022716528059144301) + +[06088] +centroid = (0.73150564240827209, -1.266848075318125) +station = ('kbdl', 0.0013286340643912163) +zone = ('ctz002', 0.0026641441276102512) + +[06089] +centroid = (0.73020191636361742, -1.2709830395687798) +station = ('kbdl', 0.0024582641028269396) +zone = ('ctz002', 0.0012803685412586469) + +[06090] +centroid = (0.73210425543512114, -1.2717024817397447) +station = ('kbdl', 0.0023461893713745022) +zone = ('ctz002', 0.0029746775499437301) + +[06091] +centroid = (0.7334611442087916, -1.2736874796046227) +station = ('kbaf', 0.0041881150833979015) +zone = ('maz009', 0.002563291065039496) + +[06092] +centroid = (0.73082960657580465, -1.2716560385283489) +station = ('kbdl', 0.0025278720753528316) +zone = ('ctz002', 0.0020316860100604026) + +[06093] +centroid = (0.7332688438318069, -1.2691575473442416) +station = ('kbdl', 0.0014623996802240471) +zone = ('ctz002', 0.0036150743612061889) + +[06095] +centroid = (0.73078745687436897, -1.2684194650568656) +station = ('kbdl', 0.0010925467453330865) +zone = ('ctz002', 0.001354971324494258) + +[06096] +centroid = (0.73177519105795008, -1.2681510508712013) +station = ('kbdl', 0.00032257066038814949) +zone = ('ctz002', 0.0023193765768062019) + +[06098] +centroid = (0.73227356982585701, -1.2755976552044679) +station = ('kbaf', 0.0060368437994717432) +zone = ('ctz001', 0.0024629807870277108) + +[06103] +centroid = (0.72897529896531577, -1.2684050660905366) +station = ('khfd', 0.00067030545729031342) +zone = ('ctz002', 0.0010238786518931345) + +[06105] +centroid = (0.72910570996702473, -1.268942191167838) +station = ('khfd', 0.0010169468758491492) +zone = ('ctz002', 0.00066110678456712455) + +[06106] +centroid = (0.72865030120530194, -1.268784657749553) +station = ('khfd', 0.00065562204297648947) +zone = ('ctz002', 0.0011169048569480097) + +[06107] +centroid = (0.72871517509359862, -1.2698683675887013) +station = ('khfd', 0.001446132353635583) +zone = ('ctz002', 0.00099991832863775745) + +[06108] +centroid = (0.7292051064679258, -1.2675269560372735) +station = ('khfd', 0.00088835268209637615) +zone = ('ctz002', 0.0014875063975909333) + +[06109] +centroid = (0.72784565206025498, -1.2683185675728079) +station = ('khfd', 0.000594242619911083) +zone = ('ctz002', 0.0019932323650816955) + +[06110] +centroid = (0.72837274149435727, -1.2694408317351329) +station = ('khfd', 0.0010889418371372703) +zone = ('ctz002', 0.0012866292666236991) + +[06111] +centroid = (0.72757528310582853, -1.2693925908346078) +station = ('khfd', 0.0013279661730393362) +zone = ('ctz002', 0.002084201898471927) + +[06112] +centroid = (0.72943131859227683, -1.2687814637970218) +station = ('khfd', 0.0012052325372192013) +zone = ('ctz002', 0.00053240441973689974) + +[06114] +centroid = (0.72851533489424514, -1.2683428974625806) +station = ('khfd', 0.00029979010869749418) +zone = ('ctz002', 0.0014007859186013661) + +[06117] +centroid = (0.72928862047263376, -1.2699637672856152) +station = ('khfd', 0.0017332712087581258) +zone = ('ctz002', 0.00054558420483039754) + +[06118] +centroid = (0.72865230833394168, -1.2672780895392313) +station = ('khfd', 0.00058956186356643229) +zone = ('ctz002', 0.0018925563452144537) + +[06119] +centroid = (0.72890920334654274, -1.2693292353827603) +station = ('khfd', 0.00113424636782877) +zone = ('ctz002', 0.00075364697367491409) + +[06120] +centroid = (0.72935691520626433, -1.2682322610412966) +station = ('khfd', 0.00099063126854606999) +zone = ('ctz002', 0.00094050283137116838) + +[06160] +centroid = (0.72896461755029351, -1.2686994856820555) +station = ('khfd', 0.0007898097695557114) +zone = ('ctz002', 0.00088133448615139616) + +[06226] +centroid = (0.72794607830541469, -1.2602769281376591) +station = ('kijd', 0.0007994672488745657) +zone = ('ctz003', 0.0030551971830853984) + +[06231] +centroid = (0.72663715117958905, -1.2630460326222879) +station = ('kijd', 0.0031457138117266274) +zone = ('ctz007', 0.0034082961490750985) + +[06232] +centroid = (0.72837794257552824, -1.2631760771048541) +station = ('kijd', 0.0025092395207207525) +zone = ('ctz003', 0.0021867318393840505) + +[06234] +centroid = (0.72944097026304033, -1.2558213992632903) +station = ('kijd', 0.0030911326231353861) +zone = ('ctz004', 0.00077171657761035092) + +[06235] +centroid = (0.72938862783877301, -1.2588979609489508) +station = ('kijd', 0.00099981876649780682) +zone = ('ctz004', 0.001969832499603899) + +[06237] +centroid = (0.72770677621167379, -1.2619675413176032) +station = ('kijd', 0.0018618528737375597) +zone = ('ctz003', 0.0028298582267822668) + +[06238] +centroid = (0.72920028935919035, -1.2626413605819207) +station = ('kijd', 0.0021568027377794228) +zone = ('ctz003', 0.0013109244499178107) + +[06239] +centroid = (0.72944360571021094, -1.2540982182395037) +station = ('ksfz', 0.0050815614154809327) +zone = ('ctz004', 0.0018400312197292498) + +[06241] +centroid = (0.73048837725374727, -1.2539731828518907) +station = ('ksfz', 0.0046446582327622516) +zone = ('ctz004', 0.0018691689255519669) + +[06242] +centroid = (0.73121609228536621, -1.2582655408944905) +station = ('kijd', 0.0027979356508811806) +zone = ('ctz004', 0.001789444885156703) + +[06243] +centroid = (0.7303307565689996, -1.2532341755400116) +station = ('ksfz', 0.0041570852596709276) +zone = ('riz001', 0.0025312526567586664) + +[06247] +centroid = (0.72898564876778005, -1.2579465121605184) +station = ('kijd', 0.0014439123934197008) +zone = ('ctz004', 0.0015733376887467753) + +[06248] +centroid = (0.72760294657447266, -1.2637773255788738) +station = ('khfd', 0.0032343535665539731) +zone = ('ctz003', 0.0030545038181949494) + +[06249] +centroid = (0.72663214208463589, -1.2608274224370304) +station = ('kijd', 0.0021726222827479582) +zone = ('ctz008', 0.0025507374750326013) + +[06250] +centroid = (0.72907560303742791, -1.2601005975233299) +station = ('kijd', 0.00044634395968993172) +zone = ('ctz003', 0.0022968456312597533) + +[06254] +centroid = (0.72642718807057416, -1.2591260580288937) +station = ('kijd', 0.0023095993581119779) +zone = ('ctz008', 0.0016619066574679185) + +[06255] +centroid = (0.73288272464138815, -1.2549258010109219) +station = ('korh', 0.0048314093725056904) +zone = ('ctz004', 0.0030231046365634985) + +[06256] +centroid = (0.7283634388894441, -1.259383529000148) +station = ('kijd', 0.00045983829477734577) +zone = ('ctz004', 0.0027935275329280182) + +[06259] +centroid = (0.73079557265539075, -1.256421443460126) +station = ('kijd', 0.0033132121125024087) +zone = ('ctz004', 0.00072434903301754898) + +[06260] +centroid = (0.73143305416468163, -1.2543760222965437) +station = ('ksfz', 0.0048138539657419785) +zone = ('ctz004', 0.0020417740412261281) + +[06262] +centroid = (0.73337532636947111, -1.2557361922892079) +station = ('korh', 0.0044448055459191888) +zone = ('maz012', 0.0032545150100619282) + +[06263] +centroid = (0.73016261154886253, -1.2548890792834599) +station = ('kijd', 0.0039775285800266623) +zone = ('ctz004', 0.001143517813904184) + +[06264] +centroid = (0.72770124351794496, -1.2583887785929737) +station = ('kijd', 0.001454736191188263) +zone = ('ctz004', 0.0027885226296849802) + +[06266] +centroid = (0.72734259580995264, -1.2596532172761663) +station = ('kijd', 0.0013393988466625394) +zone = ('ctz008', 0.002657427185943145) + +[06268] +centroid = (0.72956715756795953, -1.260920081967019) +station = ('kijd', 0.0012035883800271781) +zone = ('ctz003', 0.00151264571038009) + +[06269] +centroid = (0.72962443927400999, -1.261753005445948) +station = ('kijd', 0.0017156512343345744) +zone = ('ctz003', 0.0010479226917728089) + +[06277] +centroid = (0.73231201942927848, -1.2539129515394045) +station = ('ksfz', 0.0045241131239900046) +zone = ('ctz004', 0.0029156068409782391) + +[06278] +centroid = (0.73124274346304419, -1.2596290270127335) +station = ('kijd', 0.0025724460122650851) +zone = ('ctz003', 0.0022676957527378613) + +[06279] +centroid = (0.73124525673716712, -1.26103263825048) +station = ('kijd', 0.0027203856312863974) +zone = ('ctz003', 0.0013245434523826631) + +[06280] +centroid = (0.72764497410286066, -1.2589076300730069) +station = ('kijd', 0.0012417313376123166) +zone = ('ctz008', 0.0028091433687186963) + +[06281] +centroid = (0.73257535470681945, -1.2568837986322718) +station = ('kijd', 0.0044777143208104232) +zone = ('ctz004', 0.0025279224853130772) + +[06282] +centroid = (0.7320631354779441, -1.2581066286660965) +station = ('kijd', 0.0036250397767208348) +zone = ('ctz004', 0.0023550748112822471) + +[06320] +centroid = (0.7216561211207374, -1.258425168707878) +station = ('kgon', 0.00073252271435562271) +zone = ('ctz012', 0.00023856163958252226) + +[06330] +centroid = (0.72667778244457548, -1.2579901628451109) +station = ('kijd', 0.0024269785169954042) +zone = ('ctz008', 0.0018348198780922863) + +[06331] +centroid = (0.72772735364355479, -1.2566966469765806) +station = ('kijd', 0.002528065735048018) +zone = ('ctz004', 0.0023530109357598728) + +[06332] +centroid = (0.72834712006093805, -1.2549324856219568) +station = ('kijd', 0.0036741131737877252) +zone = ('ctz004', 0.0020496660594070491) + +[06333] +centroid = (0.72237378305586497, -1.2606880055363812) +station = ('kgon', 0.0025755458119488353) +zone = ('ctz012', 0.0017524506406961782) + +[06334] +centroid = (0.72509572874410522, -1.259671298887217) +station = ('kijd', 0.0035813706777751788) +zone = ('ctz008', 0.0010021587376041949) + +[06335] +centroid = (0.72317206174914217, -1.257658655006987) +station = ('kgon', 0.0017728292456236834) +zone = ('ctz012', 0.001406263793836069) + +[06336] +centroid = (0.72571797352902623, -1.2600555854819211) +station = ('kijd', 0.0029615013743920283) +zone = ('ctz008', 0.0015236964212935319) + +[06339] +centroid = (0.72329828396064633, -1.2564720405551411) +station = ('kgon', 0.0020491766537590584) +zone = ('ctz012', 0.0020381015994852267) + +[06340] +centroid = (0.7218241439678269, -1.2573662599974005) +station = ('kgon', 0.00043493345425210569) +zone = ('ctz012', 0.00081027399182554132) + +[06350] +centroid = (0.72690357568990605, -1.2578316345891523) +station = ('kijd', 0.0023193404286362793) +zone = ('ctz008', 0.0020778218893010309) + +[06351] +centroid = (0.72587873580642737, -1.2557362097425004) +station = ('kijd', 0.0041474721266497767) +zone = ('ctz008', 0.0022151812571191845) + +[06353] +centroid = (0.72369077360283485, -1.2592481787166561) +station = ('kgon', 0.0026335479191233694) +zone = ('ctz008', 0.001346388237729261) + +[06354] +centroid = (0.7279568993467771, -1.2541086727617232) +station = ('kijd', 0.0043347892626390012) +zone = ('riz003', 0.002613016989890987) + +[06355] +centroid = (0.72198858888994977, -1.2562246575869636) +station = ('kgon', 0.0011286331402449883) +zone = ('ctz012', 0.0016666336085613095) + +[06357] +centroid = (0.72124914524575734, -1.260478129693829) +station = ('kgon', 0.0022343519149602689) +zone = ('ctz012', 0.0016594342822057681) + +[06359] +centroid = (0.72380870550039211, -1.2544094977115969) +station = ('kwst', 0.0023175131576409947) +zone = ('ctz012', 0.003578890289729934) + +[06360] +centroid = (0.72514695415765129, -1.258198921676942) +station = ('kijd', 0.0037342686758222348) +zone = ('ctz008', 0.00030926801140175917) + +[06365] +centroid = (0.72463717838972874, -1.2567522008066714) +station = ('kgon', 0.0032839157213030695) +zone = ('ctz008', 0.0012312554418207721) + +[06370] +centroid = (0.7237586843640299, -1.2598849271876609) +station = ('kgon', 0.0029537491733408255) +zone = ('ctz008', 0.0015854817711130492) + +[06371] +centroid = (0.72190982218080735, -1.2622876347024188) +station = ('ksnc', 0.0024141006219881782) +zone = ('ctz011', 0.0018020027498586665) + +[06373] +centroid = (0.72748724869835801, -1.2531060683729152) +station = ('ksfz', 0.005637755304987664) +zone = ('riz003', 0.0017734277428937211) + +[06374] +centroid = (0.72748600951458897, -1.2550825141244586) +station = ('kijd', 0.0037427407825161292) +zone = ('ctz004', 0.0027707764071897489) + +[06375] +centroid = (0.7226769292936438, -1.258787935392905) +station = ('kgon', 0.0015948862303972917) +zone = ('ctz012', 0.00082455428507513073) + +[06376] +centroid = (0.72071730851608962, -1.2610693250713569) +station = ('kgon', 0.0027601037822866398) +zone = ('ctz012', 0.0022975782248469767) + +[06377] +centroid = (0.72833540890165704, -1.2534834783703661) +station = ('ksfz', 0.0052725821450920248) +zone = ('riz003', 0.002333495495714689) + +[06378] +centroid = (0.72227328699753512, -1.2550384794674305) +station = ('kwst', 0.0015337450640854713) +zone = ('ctz012', 0.0025818605290233326) + +[06379] +centroid = (0.72192877645648401, -1.2540748308275269) +station = ('kwst', 0.00073548526920750787) +zone = ('ctz012', 0.0032777305101879114) + +[06380] +centroid = (0.72541847502938406, -1.2575381923820144) +station = ('kijd', 0.0036816013788662379) +zone = ('ctz008', 0.00083217473683024155) + +[06382] +centroid = (0.72374014896737371, -1.2587704646470925) +station = ('kgon', 0.0025214532471764806) +zone = ('ctz008', 0.0011643677423064359) + +[06384] +centroid = (0.72569380071888612, -1.2536914343507413) +station = ('kwst', 0.0040209516833564088) +zone = ('riz003', 0.0026437068071948405) + +[06385] +centroid = (0.72189837282091418, -1.2593698281655199) +station = ('kgon', 0.0014817531628712132) +zone = ('ctz012', 0.00069659788084679142) + +[06387] +centroid = (0.72852086758797407, -1.2551189915058252) +station = ('kijd', 0.003523391350871301) +zone = ('ctz004', 0.0018284106508317888) + +[06389] +centroid = (0.72543142537243377, -1.2588909621786502) +station = ('kijd', 0.0033196307959857574) +zone = ('ctz008', 0.00068838418646973104) + +[06390] +centroid = (0.72035979527211114, -1.2560958871947514) +station = ('kgon', 0.001488572394344657) +zone = ('ctz012', 0.0023364685512642395) + +[06401] +centroid = (0.72159327181437305, -1.2753090301060654) +station = ('koxc', 0.0025658650834647135) +zone = ('ctz006', 0.0023175472387029208) + +[06403] +centroid = (0.72332875740938618, -1.2749966161699586) +station = ('koxc', 0.0012698599150772108) +zone = ('ctz006', 0.00082381130465015171) + +[06405] +centroid = (0.72055930385890665, -1.2704870868085332) +station = ('khvn', 0.00122043055516745) +zone = ('ctz010', 0.00053362616247874133) + +[06409] +centroid = (0.72171251270886938, -1.2639703589941444) +station = ('ksnc', 0.001259753160447314) +zone = ('ctz011', 0.00065162230642173838) + +[06410] +centroid = (0.72451805966828009, -1.2724081532629108) +station = ('kmmk', 0.00092240356180478262) +zone = ('ctz006', 0.0014559903223422298) + +[06412] +centroid = (0.72273531055712303, -1.265097283185572) +station = ('ksnc', 0.00052818235600961901) +zone = ('ctz011', 0.0016123656936283127) + +[06413] +centroid = (0.72074436111949558, -1.2658720348405321) +station = ('ksnc', 0.0015706969893837983) +zone = ('ctz011', 0.0011311400387933551) + +[06414] +centroid = (0.7255723083496548, -1.2662768465072398) +station = ('khfd', 0.0030868598721585554) +zone = ('ctz007', 0.0013013186514228767) + +[06415] +centroid = (0.72520348537212331, -1.2627120813232116) +station = ('ksnc', 0.0035740457316967402) +zone = ('ctz007', 0.0028612265344010799) + +[06416] +centroid = (0.72634583827413868, -1.2681842295802819) +station = ('khfd', 0.0020438421464858375) +zone = ('ctz007', 0.0024975328930198523) + +[06417] +centroid = (0.7220046459190681, -1.2649699963232239) +station = ('ksnc', 0.00046575306027650109) +zone = ('ctz011', 0.00089222385708602242) + +[06418] +centroid = (0.72127775119219761, -1.2755314723192324) +station = ('koxc', 0.002822350585495419) +zone = ('ctz006', 0.0026740853909383031) + +[06419] +centroid = (0.72223014245842576, -1.2667016596471754) +station = ('ksnc', 0.00092912325450599442) +zone = ('ctz011', 0.0019611157576083162) + +[06420] +centroid = (0.72412577946560186, -1.2611466431572202) +station = ('ksnc', 0.0037244369564479098) +zone = ('ctz008', 0.0022078192188029781) + +[06422] +centroid = (0.723769226152712, -1.2685842764981314) +station = ('kmmk', 0.0021163586685897205) +zone = ('ctz007', 0.0017652118165045129) + +[06423] +centroid = (0.7235698920988417, -1.2634302843104073) +station = ('ksnc', 0.0019949494260260597) +zone = ('ctz011', 0.0025093110094569818) + +[06424] +centroid = (0.72536936146423292, -1.2654043564141679) +station = ('ksnc', 0.0030845835180101926) +zone = ('ctz007', 0.0012964236160674892) + +[06426] +centroid = (0.72172134407488442, -1.2635769094208671) +station = ('ksnc', 0.0015253779246638868) +zone = ('ctz011', 0.000866398087980596) + +[06437] +centroid = (0.72137559435006438, -1.2687987949164941) +station = ('ksnc', 0.0026621381079816302) +zone = ('ctz010', 0.0015969053449848922) + +[06438] +centroid = (0.72353084908347454, -1.2654404498230991) +station = ('ksnc', 0.0012458725251856461) +zone = ('ctz007', 0.00099405790203229436) + +[06441] +centroid = (0.72380690781126245, -1.2667665684420568) +station = ('ksnc', 0.0018076171643043705) +zone = ('ctz007', 0.0005701562003637983) + +[06442] +centroid = (0.72155154099195795, -1.2642236411751937) +station = ('ksnc', 0.0011861302319708113) +zone = ('ctz011', 0.00041295261308988313) + +[06443] +centroid = (0.72163690504567302, -1.2675533279622708) +station = ('ksnc', 0.0016957098464924032) +zone = ('ctz010', 0.0025673017803981399) + +[06444] +centroid = (0.72540564685938191, -1.2729256957460047) +station = ('kmmk', 0.0015327914658670914) +zone = ('ctz006', 0.0018926328723780628) + +[06447] +centroid = (0.72669294935577533, -1.2645608911465567) +station = ('khfd', 0.0030637278726323449) +zone = ('ctz007', 0.0027579420629377936) + +[06450] +centroid = (0.72493667688937102, -1.2701753360975419) +station = ('kmmk', 0.00082403564108715741) +zone = ('ctz007', 0.0029584460424851708) + +[06451] +centroid = (0.72504303725398744, -1.2710082595764711) +station = ('kmmk', 0.0004591980067095206) +zone = ('ctz006', 0.002622363245587653) + +[06455] +centroid = (0.72455883055960679, -1.2691658027516035) +station = ('kmmk', 0.0015099198475160634) +zone = ('ctz007', 0.0021464712269269985) + +[06456] +centroid = (0.72460293502980455, -1.2663018396221284) +station = ('ksnc', 0.0024010855442178937) +zone = ('ctz007', 0.00033190668174477964) + +[06457] +centroid = (0.72517617096932963, -1.2681164235388418) +station = ('kmmk', 0.0023650348147340305) +zone = ('ctz007', 0.0016175600786457493) + +[06460] +centroid = (0.71932464049275335, -1.2749771906553837) +station = ('kbdr', 0.0013656040615443335) +zone = ('ctz010', 0.0035181681234591798) + +[06461] +centroid = (0.71977139242138621, -1.2754062100388168) +station = ('kbdr', 0.0014869192795995967) +zone = ('ctz010', 0.0036281071217219383) + +[06467] +centroid = (0.7254957582086623, -1.2723407835537839) +station = ('kmmk', 0.0012453010409416577) +zone = ('ctz006', 0.0021916463172602001) + +[06468] +centroid = (0.72150577845897057, -1.2779794362214947) +station = ('koxc', 0.0027744165312201569) +zone = ('ctz005', 0.0018509840503594952) + +[06469] +centroid = (0.72449324108631674, -1.2644004953882984) +station = ('ksnc', 0.0023479985472008823) +zone = ('ctz007', 0.0014585209129901369) + +[06470] +centroid = (0.72248049248633184, -1.2796346192176233) +station = ('koxc', 0.0028616478808242279) +zone = ('ctz005', 0.00094366188007209229) + +[06471] +centroid = (0.72138138884318104, -1.2702680828939932) +station = ('khvn', 0.0017621122441848413) +zone = ('ctz010', 0.0005844950495065321) + +[06472] +centroid = (0.72226552028236368, -1.2701667490776223) +station = ('kmmk', 0.0024576560573357576) +zone = ('ctz010', 0.0013620455306504224) + +[06473] +centroid = (0.72224040499442754, -1.2715831361254932) +station = ('khvn', 0.0020322197909304679) +zone = ('ctz010', 0.0013427721933998618) + +[06475] +centroid = (0.72081918338452855, -1.2633170298952452) +station = ('ksnc', 0.002179650987343205) +zone = ('ctz011', 0.00095393466804090615) + +[06477] +centroid = (0.72055832647452545, -1.2745203507236744) +station = ('khvn', 0.0018807370280636497) +zone = ('ctz010', 0.0027804564083878554) + +[06478] +centroid = (0.72333427264982242, -1.2766734237955197) +station = ('koxc', 0.00071277302555144289) +zone = ('ctz006', 0.0020263041335057473) + +[06479] +centroid = (0.72561634300668254, -1.2725522825525404) +station = ('kmmk', 0.0014423582919605505) +zone = ('ctz006', 0.0022090352041757217) + +[06480] +centroid = (0.72603661829056276, -1.2669182899139328) +station = ('khfd', 0.0024782301673461774) +zone = ('ctz007', 0.0018200407874566467) + +[06481] +centroid = (0.72494901636718256, -1.2688235785918722) +station = ('kmmk', 0.0017989159848665716) +zone = ('ctz007', 0.0019894624971695148) + +[06482] +centroid = (0.72270867683273765, -1.2783230217380421) +station = ('koxc', 0.0019395355646894923) +zone = ('ctz005', 0.0018472290942640722) + +[06483] +centroid = (0.72230681477246594, -1.275548210026759) +station = ('koxc', 0.0018336516525737873) +zone = ('ctz006', 0.0018048685163009617) + +[06484] +centroid = (0.7208997826893857, -1.2765170772011261) +station = ('kbdr', 0.0024070732870480668) +zone = ('ctz005', 0.0030535488116750953) + +[06488] +centroid = (0.72390780529532028, -1.2781060249521417) +station = ('koxc', 0.0012700811872792582) +zone = ('ctz013', 0.0027509567881450251) + +[06489] +centroid = (0.72630826133534321, -1.2718138686526068) +station = ('kmmk', 0.0017701426130145722) +zone = ('ctz006', 0.0030867523275272201) + +[06492] +centroid = (0.72364822247567129, -1.2706958805469493) +station = ('kmmk', 0.0010212786007967576) +zone = ('ctz010', 0.0026419212746880668) + +[06498] +centroid = (0.72088547098951927, -1.2649800319664228) +station = ('ksnc', 0.0014463267660407707) +zone = ('ctz011', 0.00047865831317325629) + +[06510] +centroid = (0.72093479399418059, -1.2727988801225549) +station = ('khvn', 0.00089275556470437578) +zone = ('ctz010', 0.0014519724997964709) + +[06511] +centroid = (0.72111848989795302, -1.272821412323198) +station = ('khvn', 0.001051424416230799) +zone = ('ctz010', 0.0014709027558513698) + +[06512] +centroid = (0.72044179084036986, -1.2719130382607051) +station = ('khvn', 0.00022866368463524817) +zone = ('ctz010', 0.00096860225167539379) + +[06513] +centroid = (0.72111220671264586, -1.2718352314826511) +station = ('khvn', 0.00088836090319642318) +zone = ('ctz010', 0.00073336639295319759) + +[06514] +centroid = (0.72214378356703712, -1.2731030386513) +station = ('khvn', 0.0020610589434124668) +zone = ('ctz006', 0.0016969232848391825) + +[06515] +centroid = (0.72131035394262477, -1.2735814159459788) +station = ('khvn', 0.0015697042953643249) +zone = ('ctz010', 0.0020596222248458525) + +[06516] +centroid = (0.72034228961971369, -1.2734789127590094) +station = ('khvn', 0.0010758318510728729) +zone = ('ctz010', 0.0020717476277922024) + +[06517] +centroid = (0.72167978778539443, -1.2724702346244043) +station = ('khvn', 0.001474101225371728) +zone = ('ctz010', 0.001376960551470692) + +[06518] +centroid = (0.72310397645502178, -1.2725550052661736) +station = ('kmmk', 0.0018179025372730823) +zone = ('ctz006', 0.0012438882830335348) + +[06519] +centroid = (0.72071510940123218, -1.2729040187566951) +station = ('khvn', 0.00079648980182093847) +zone = ('ctz010', 0.0015572497407905187) + +[06524] +centroid = (0.72296710773508044, -1.273988897966442) +station = ('koxc', 0.0021031625473433343) +zone = ('ctz006', 0.0007304099245472594) + +[06525] +centroid = (0.72192992837379022, -1.2741582821703481) +station = ('khvn', 0.0023143504876431999) +zone = ('ctz006', 0.001770684752821307) + +[06604] +centroid = (0.71877754958542317, -1.2777211100389068) +station = ('kbdr', 0.0010214447548591756) +zone = ('ctz009', 0.0031218357323930862) + +[06605] +centroid = (0.71841403240881774, -1.2778894470452615) +station = ('kbdr', 0.001111020464307123) +zone = ('ctz009', 0.0029103893794154511) + +[06606] +centroid = (0.71928701119408034, -1.2776974782808348) +station = ('kbdr', 0.0012477725833389584) +zone = ('ctz005', 0.00320078925242126) + +[06607] +centroid = (0.71856503829570029, -1.2770231703243267) +station = ('kbdr', 0.00046148344313470184) +zone = ('ctz009', 0.0035794249245553124) + +[06608] +centroid = (0.71883959604033154, -1.2772537806783928) +station = ('kbdr', 0.00071817470288343974) +zone = ('ctz009', 0.0034765250738053783) + +[06610] +centroid = (0.71923767073612643, -1.2769632182645207) +station = ('kbdr', 0.0008496564741840468) +zone = ('ctz005', 0.0036133139306825765) + +[06611] +centroid = (0.72026004970535973, -1.2778199654877398) +station = ('kbdr', 0.0020572724983639046) +zone = ('ctz005', 0.0024565155042491306) + +[06612] +centroid = (0.7202091559043714, -1.2793347018389605) +station = ('kbdr', 0.002785278559320013) +zone = ('ctz005', 0.0017411516401123477) + +[06614] +centroid = (0.71964667119303882, -1.276355215366296) +station = ('kbdr', 0.001153746734534273) +zone = ('ctz005', 0.0037085780282768398) + +[06615] +centroid = (0.71858022266019261, -1.2763969810952962) +station = ('kbdr', 8.7712538476757138e-05) +zone = ('ctz005', 0.0043802056602198708) + +[06702] +centroid = (0.72529706992661525, -1.2748912157364307) +station = ('koxc', 0.0017131369128701806) +zone = ('ctz006', 0.001729523318873821) + +[06704] +centroid = (0.72585960699782559, -1.2747080259781416) +station = ('koxc', 0.0022402472898443676) +zone = ('ctz006', 0.0022239487333747328) + +[06705] +centroid = (0.72513374201521363, -1.2739634161593631) +station = ('kmmk', 0.0021492104232365356) +zone = ('ctz006', 0.0014369490849930043) + +[06706] +centroid = (0.72488372359986553, -1.2745019025934807) +station = ('koxc', 0.0016740605845948077) +zone = ('ctz006', 0.0012415376651814488) + +[06708] +centroid = (0.72519952347472127, -1.2752885748472322) +station = ('koxc', 0.0014505068726837287) +zone = ('ctz006', 0.0017799984589206813) + +[06710] +centroid = (0.72551844748893823, -1.2748900114592467) +station = ('koxc', 0.0018843427715532536) +zone = ('ctz006', 0.001935795303571185) + +[06712] +centroid = (0.72429851470167184, -1.273665104483612) +station = ('kmmk', 0.0018845847213133675) +zone = ('ctz006', 0.00065545840596306745) + +[06716] +centroid = (0.72599247891377994, -1.2735601927422746) +station = ('kmmk', 0.0022583994984967611) +zone = ('ctz006', 0.0023201524701020682) + +[06750] +centroid = (0.7282164821664262, -1.2787703496253284) +station = ('koxc', 0.0045496808010320328) +zone = ('ctz013', 0.0016117684933784162) + +[06751] +centroid = (0.72668123819649444, -1.2777801719807942) +station = ('koxc', 0.0028491962650615708) +zone = ('ctz013', 0.00033204484103162209) + +[06752] +centroid = (0.72466583669604645, -1.2803926157117644) +station = ('koxc', 0.0030462184622998432) +zone = ('ctz013', 0.0025689684055871342) + +[06754] +centroid = (0.72911883484299977, -1.2804255675280423) +station = ('koxc', 0.005913183864878534) +zone = ('ctz001', 0.00241140331680023) + +[06755] +centroid = (0.72694104790894631, -1.2824566595384654) +station = ('kdxr', 0.0049567868671261317) +zone = ('nyz066', 0.0026069917550238303) + +[06756] +centroid = (0.73041221108519017, -1.2781744593121125) +station = ('koxc', 0.00652483454518749) +zone = ('ctz001', 0.00065542435285784596) + +[06757] +centroid = (0.72852516109793386, -1.2820807679774635) +station = ('kpou', 0.0058581470619309536) +zone = ('nyz066', 0.0021211377316459651) + +[06758] +centroid = (0.7273854436430891, -1.2783860455773317) +station = ('koxc', 0.0036728192396903248) +zone = ('ctz013', 0.00073816639449334311) + +[06759] +centroid = (0.72873849269240509, -1.2777909406622792) +station = ('koxc', 0.0048281858701985361) +zone = ('ctz013', 0.0021060225348795646) + +[06762] +centroid = (0.72484475039766838, -1.2762122554472652) +station = ('koxc', 0.00083820617597997102) +zone = ('ctz006', 0.0020071321826330216) + +[06763] +centroid = (0.72770319828670715, -1.2777555453850487) +station = ('koxc', 0.0038160181382409222) +zone = ('ctz013', 0.0011026677433237375) + +[06770] +centroid = (0.72410967007660598, -1.2750220630704527) +station = ('koxc', 0.0010490930792387734) +zone = ('ctz006', 0.00086080757061854861) + +[06776] +centroid = (0.72608000717576748, -1.2814701645386533) +station = ('kdxr', 0.0041711705452539315) +zone = ('ctz013', 0.0024950501979963805) + +[06777] +centroid = (0.72765050679658938, -1.2799269095074548) +station = ('koxc', 0.0044794048409801173) +zone = ('ctz013', 0.0016143574296841043) + +[06778] +centroid = (0.7280377429977295, -1.2760435344684748) +station = ('koxc', 0.0040267124151271679) +zone = ('ctz013', 0.0021345547743096306) + +[06779] +centroid = (0.72596031249566562, -1.2755229202058975) +station = ('koxc', 0.0020518815735061533) +zone = ('ctz013', 0.0021358283825330597) + +[06782] +centroid = (0.72695644171294893, -1.2748363774913329) +station = ('koxc', 0.0031650576191680239) +zone = ('ctz013', 0.0025486508541356684) + +[06783] +centroid = (0.72528026240591859, -1.2792567205279815) +station = ('koxc', 0.0024709458451471706) +zone = ('ctz013', 0.0015791479617703694) + +[06784] +centroid = (0.72565992387810485, -1.2826866066674159) +station = ('kdxr', 0.0036773567603902175) +zone = ('ctz013', 0.0034832189913537931) + +[06785] +centroid = (0.72771592173695421, -1.2822025046927901) +station = ('kpou', 0.0055624598871354403) +zone = ('nyz066', 0.002287968015487377) + +[06786] +centroid = (0.72732641660778663, -1.2744053509792603) +station = ('koxc', 0.0036322074855049263) +zone = ('ctz013', 0.00293008645516537) + +[06787] +centroid = (0.72729754886195874, -1.2755747041248042) +station = ('koxc', 0.0033368918166284366) +zone = ('ctz013', 0.0020799619636460102) + +[06790] +centroid = (0.73014548986890038, -1.2763858109880835) +station = ('koxc', 0.0061247841417561635) +zone = ('ctz001', 0.0017797325528736128) + +[06791] +centroid = (0.7288729703112713, -1.2751452833156436) +station = ('koxc', 0.0049445350366773789) +zone = ('ctz013', 0.0031923031774255136) + +[06793] +centroid = (0.72664519714744069, -1.2791326101648721) +station = ('koxc', 0.0033189556570907344) +zone = ('ctz013', 0.00067973510967133028) + +[06794] +centroid = (0.72692010395792239, -1.2797374889237358) +station = ('koxc', 0.0038179188616982015) +zone = ('ctz013', 0.0011616790857743426) + +[06795] +centroid = (0.72644495552235944, -1.2762913363156732) +station = ('koxc', 0.0024260408187645847) +zone = ('ctz013', 0.001459617437954734) + +[06796] +centroid = (0.73069992861238142, -1.2800607937143751) +station = ('koxc', 0.0072122751038424717) +zone = ('ctz001', 0.0012396114129064532) + +[06798] +centroid = (0.72538732090223601, -1.2776874077310509) +station = ('koxc', 0.0016647946428094953) +zone = ('ctz013', 0.0013317666920619571) + +[06801] +centroid = (0.72203883691911463, -1.2808884637522562) +station = ('kdxr', 0.0012302175697910388) +zone = ('ctz005', 0.00045518795640351527) + +[06804] +centroid = (0.72378603367340866, -1.280961139262309) +station = ('kdxr', 0.0021500404883322915) +zone = ('ctz005', 0.0020793999440553469) + +[06807] +centroid = (0.71657515350891643, -1.28442320927315) +station = ('khpn', 0.0014314204198940142) +zone = ('ctz009', 0.0024302077931908994) + +[06810] +centroid = (0.7221174814552096, -1.2820771725992044) +station = ('kdxr', 0.00036219003223000152) +zone = ('ctz005', 0.0012950615881884783) + +[06811] +centroid = (0.7229605103905079, -1.2824393807788708) +station = ('kdxr', 0.00097814280302929929) +zone = ('ctz005', 0.0019393160676116944) + +[06812] +centroid = (0.72399889402898188, -1.2826009284544355) +station = ('kdxr', 0.0020151411504464715) +zone = ('ctz005', 0.0027821166576463109) + +[06820] +centroid = (0.71691496911427988, -1.2824693306288351) +station = ('khpn', 0.0028984621439805246) +zone = ('ctz009', 0.0011119387874961788) + +[06824] +centroid = (0.71860509360203362, -1.278991552654726) +station = ('kbdr', 0.0019408668090372513) +zone = ('ctz009', 0.0021603846742578045) + +[06825] +centroid = (0.71901601392112302, -1.2783359371745067) +station = ('kbdr', 0.0015354037725310698) +zone = ('ctz009', 0.0027738030044441807) + +[06830] +centroid = (0.71624132438288757, -1.2849871251544696) +station = ('khpn', 0.0011175653731127202) +zone = ('nyz071', 0.002257366449947919) + +[06831] +centroid = (0.71713351924321456, -1.2855892462931151) +station = ('khpn', 0.00066444265183915839) +zone = ('nyz071', 0.00243427777724331) + +[06840] +centroid = (0.71839591589118201, -1.2828376649141757) +station = ('khpn', 0.0030900529912780521) +zone = ('ctz009', 0.0010239739961362116) + +[06850] +centroid = (0.71779602877397908, -1.2818999867735419) +station = ('kbdr', 0.0041870556661379498) +zone = ('ctz009', 0.00017431143810859833) + +[06851] +centroid = (0.71799761430258446, -1.2810983046882234) +station = ('kbdr', 0.0035592598589066944) +zone = ('ctz009', 0.00046235521226197808) + +[06853] +centroid = (0.71673865595324338, -1.2817350007993509) +station = ('kbdr', 0.0043737443828902193) +zone = ('ctz009', 0.0011177101991048269) + +[06854] +centroid = (0.71704949909302362, -1.2815361903442561) +station = ('kbdr', 0.0041174523300499324) +zone = ('ctz009', 0.00081367404142583641) + +[06855] +centroid = (0.71705960454939255, -1.2809976166436758) +station = ('kbdr', 0.0037363440965403586) +zone = ('ctz009', 0.00094870763476467032) + +[06856] +centroid = (0.71752620087162078, -1.281435746645804) +station = ('kbdr', 0.0039012684565615527) +zone = ('ctz009', 0.00037830064706016633) + +[06870] +centroid = (0.7159814972171431, -1.284049534280298) +station = ('khpn', 0.0018678376446961825) +zone = ('ctz009', 0.0025877245297440772) + +[06877] +centroid = (0.72093004669861527, -1.2828347851209101) +station = ('kdxr', 0.0010796566310034891) +zone = ('ctz005', 0.0019855992265086593) + +[06878] +centroid = (0.71611021524947782, -1.2842781724123093) +station = ('khpn', 0.0016583252816673949) +zone = ('ctz009', 0.0026219761644332858) + +[06880] +centroid = (0.71791038274656971, -1.2801627209426918) +station = ('kbdr', 0.0028798737711880447) +zone = ('ctz009', 0.0011460316466513974) + +[06883] +centroid = (0.71956614170135169, -1.2804914711605975) +station = ('kdxr', 0.00286099238928184) +zone = ('ctz009', 0.001931156856447263) + +[06890] +centroid = (0.71817741812212499, -1.2791141620346784) +station = ('kbdr', 0.0020548667455217114) +zone = ('ctz009', 0.0019608512715568651) + +[06896] +centroid = (0.7209154906526537, -1.28094223734651) +station = ('kdxr', 0.0015991152177153862) +zone = ('ctz005', 0.00091712029554380449) + +[06897] +centroid = (0.71918965672840407, -1.2817280369356354) +station = ('kdxr', 0.0028584897744500576) +zone = ('ctz009', 0.0013344297143970515) + +[06901] +centroid = (0.71652061196979167, -1.2834826862458353) +station = ('khpn', 0.0021422476091929178) +zone = ('ctz009', 0.0019034159829453754) + +[06902] +centroid = (0.71662089858861133, -1.283590826846289) +station = ('khpn', 0.0020524306290619848) +zone = ('ctz009', 0.0018954890775289119) + +[06903] +centroid = (0.71795895525965281, -1.2840586623522858) +station = ('khpn', 0.0020825914390188607) +zone = ('ctz009', 0.0017926380650821467) + +[06905] +centroid = (0.71712599687413847, -1.2835617147543656) +station = ('khpn', 0.0021040840755403183) +zone = ('ctz009', 0.0015928398936846137) + +[06906] +centroid = (0.71682457851231896, -1.2832118111459259) +station = ('khpn', 0.0023352613494238028) +zone = ('ctz009', 0.0015463370568317056) + +[06907] +centroid = (0.71734634469220271, -1.2831750894184639) +station = ('khpn', 0.0024356710949209226) +zone = ('ctz009', 0.001234437770674698) + +[07001] +centroid = (0.70829503228477508, -1.2962823201147236) +station = ('kewr', 0.0022442702015136179) +zone = ('njz108', 0.0012690192424756415) + +[07002] +centroid = (0.70969295374915997, -1.2934674880036923) +station = ('kewr', 0.00083156390032499653) +zone = ('njz006', 0.0014383721394142213) + +[07003] +centroid = (0.71225364846780848, -1.2948101174373738) +station = ('kcdw', 0.0018137853982346244) +zone = ('njz106', 0.0010931459469671714) + +[07004] +centroid = (0.71353437107292195, -1.296859797204331) +station = ('kcdw', 0.00028090231269411846) +zone = ('njz105', 0.0014289691578552553) + +[07005] +centroid = (0.71441162591485186, -1.2988269752575463) +station = ('kmmu', 0.00231730636949159) +zone = ('njz008', 0.0020826025178703319) + +[07006] +centroid = (0.71298771649790482, -1.2964805720644577) +station = ('kcdw', 0.00056109340905493253) +zone = ('njz105', 0.00083800510878022838) + +[07008] +centroid = (0.7083207584379495, -1.2955135200325125) +station = ('kewr', 0.0019148690581023448) +zone = ('njz108', 0.0011531729823658808) + +[07009] +centroid = (0.71310702720557118, -1.2955542560172542) +station = ('kcdw', 0.00083336475624300871) +zone = ('njz004', 0.0011120994082835993) + +[07010] +centroid = (0.71247972096581924, -1.2913313097190064) +station = ('knyc', 0.0007318145748671167) +zone = ('nyz072', 0.00080954092367463534) + +[07011] +centroid = (0.71346015967312715, -1.2940581946890297) +station = ('kteb', 0.0012579090845385897) +zone = ('njz004', 0.0010069583425473419) + +[07012] +centroid = (0.71293903926506674, -1.2943408158548049) +station = ('kteb', 0.0014900901918273584) +zone = ('njz004', 0.0013161714488557756) + +[07013] +centroid = (0.71330568058103316, -1.2945641481858903) +station = ('kteb', 0.0016249372569427825) +zone = ('njz004', 0.00091264936614112704) + +[07014] +centroid = (0.71264153044077172, -1.2939072411620247) +station = ('kteb', 0.0012852287503206581) +zone = ('njz106', 0.0015429029927144381) + +[07016] +centroid = (0.70958788492818992, -1.2968639336346581) +station = ('kewr', 0.0018884765018805964) +zone = ('njz107', 0.00072486548598883066) + +[07017] +centroid = (0.71160719596616229, -1.2951592880075278) +station = ('kewr', 0.0016390567549231577) +zone = ('njz106', 0.00062877389721297623) + +[07018] +centroid = (0.71132445262733934, -1.2953487260445391) +station = ('kewr', 0.0014370000320924725) +zone = ('njz106', 0.00062062449124050819) + +[07020] +centroid = (0.71250972317566108, -1.2910939973006126) +station = ('knyc', 0.00071332282449357472) +zone = ('nyz072', 0.0007954837932567379) + +[07021] +centroid = (0.71258524357239494, -1.2963641935099346) +station = ('kcdw', 0.00096812670284413113) +zone = ('njz105', 0.00043161870454318685) + +[07022] +centroid = (0.71246179643440133, -1.2915970710042075) +station = ('knyc', 0.00081524236492056771) +zone = ('nyz072', 0.00088451082894981247) + +[07023] +centroid = (0.70933147860777945, -1.2982749625217256) +station = ('kmmu', 0.0027931028365592637) +zone = ('njz107', 0.00056932446284489507) + +[07024] +centroid = (0.71297816954689641, -1.2910376231657732) +station = ('knyc', 0.0011761210496979571) +zone = ('nyz072', 0.0012587438334252278) + +[07026] +centroid = (0.71348705519690048, -1.2934329653910877) +station = ('kteb', 0.00080218342810744743) +zone = ('njz104', 0.0012952189687458324) + +[07027] +centroid = (0.70949814009805234, -1.2971834510608209) +station = ('kewr', 0.0021457781444967163) +zone = ('njz107', 0.00053256770519628403) + +[07028] +centroid = (0.71217807571119707, -1.2951140490733162) +station = ('kcdw', 0.0017205549612626533) +zone = ('njz105', 0.00095325226402767074) + +[07029] +centroid = (0.71110988184909907, -1.2942473883799457) +station = ('kewr', 0.0010631963258261018) +zone = ('njz106', 0.00024106390872884198) + +[07030] +centroid = (0.71113908120748492, -1.292102518355585) +station = ('knyc', 0.0010898418084442671) +zone = ('njz006', 0.00060598139887135599) + +[07031] +centroid = (0.71185445676129233, -1.2937466010576713) +station = ('kteb', 0.0017271086312501311) +zone = ('njz106', 0.00091114057828037265) + +[07032] +centroid = (0.71128659643586345, -1.2936533132091519) +station = ('kewr', 0.0013697030896783339) +zone = ('njz106', 0.00068985279952307721) + +[07033] +centroid = (0.70995491021659174, -1.2965935995868167) +station = ('kewr', 0.0016269741867801673) +zone = ('njz108', 0.00086575797790664681) + +[07034] +centroid = (0.71348152250317154, -1.2981777127758045) +station = ('kmmu', 0.0014687970635332526) +zone = ('njz105', 0.001904544774111447) + +[07035] +centroid = (0.71431964706327178, -1.296925089971648) +station = ('kcdw', 0.00083845130664931308) +zone = ('njz004', 0.0014403910688441371) + +[07036] +centroid = (0.70904402287997603, -1.2956944408627744) +station = ('kewr', 0.0013842307349296746) +zone = ('njz108', 0.00042675309769550369) + +[07039] +centroid = (0.7118469867520939, -1.2972875250441172) +station = ('kmmu', 0.0011832019917898833) +zone = ('njz105', 0.00075725266696558848) + +[07040] +centroid = (0.71088630517191853, -1.2962371684469745) +station = ('kewr', 0.0015862240677552303) +zone = ('njz105', 0.0012715375609047225) + +[07041] +centroid = (0.71074079707217985, -1.2968066170220227) +station = ('kmmu', 0.0020367002281690191) +zone = ('njz107', 0.0012272817889396636) + +[07042] +centroid = (0.71232972736990297, -1.2953661095238891) +station = ('kcdw', 0.0014856772289894393) +zone = ('njz105', 0.00078216387218341978) + +[07043] +centroid = (0.71287688809040317, -1.2950430665326376) +station = ('kcdw', 0.0012832655829208249) +zone = ('njz105', 0.0012392775205227386) + +[07044] +centroid = (0.71268786893241221, -1.2957826498031699) +station = ('kcdw', 0.0010130932436282199) +zone = ('njz105', 0.00069637888078250953) + +[07045] +centroid = (0.71405076163870951, -1.297981223608615) +station = ('kcdw', 0.0012347770570523319) +zone = ('njz105', 0.0022535546636279417) + +[07046] +centroid = (0.71366034893833097, -1.299228837317818) +station = ('kmmu', 0.0015968733066642677) +zone = ('njz008', 0.0014568413203864311) + +[07047] +centroid = (0.7119926693847578, -1.2919792806571015) +station = ('knyc', 0.00079320579275485856) +zone = ('nyz072', 0.00081896571889937954) + +[07050] +centroid = (0.71153652758474906, -1.2956572478964143) +station = ('kewr', 0.001737596382103768) +zone = ('njz105', 0.00082130729797503361) + +[07052] +centroid = (0.71184567775515484, -1.2961697987378473) +station = ('kcdw', 0.0017201094230632262) +zone = ('njz105', 0.00034426981288972577) + +[07054] +centroid = (0.71305262529278646, -1.2985863118069887) +station = ('kmmu', 0.00097390368630137958) +zone = ('njz105', 0.0019007627410936798) + +[07055] +centroid = (0.71307892740461409, -1.2937591674282856) +station = ('kteb', 0.0010312395252386295) +zone = ('njz004', 0.0014377786664088949) + +[07057] +centroid = (0.71302082539381517, -1.2933993328964017) +station = ('kteb', 0.00078035094223967384) +zone = ('njz104', 0.0015570641316314873) + +[07058] +centroid = (0.71335994286747761, -1.2975087629800999) +station = ('kcdw', 0.00079402139045130042) +zone = ('njz105', 0.0014810364253168319) + +[07059] +centroid = (0.70920735079137764, -1.3006026732385252) +station = ('ksmq', 0.00198037056031365) +zone = ('njz010', 0.0017865673101049274) + +[07060] +centroid = (0.70889457033612768, -1.2989096689575059) +station = ('kmmu', 0.0032005546945668467) +zone = ('njz107', 0.0012170032281970796) + +[07062] +centroid = (0.70916842994905815, -1.2985456281821248) +station = ('kmmu', 0.0029330647377732678) +zone = ('njz107', 0.00082806217652690037) + +[07063] +centroid = (0.70869300226081478, -1.2993020189733542) +station = ('kmmu', 0.0034212429862908928) +zone = ('njz107', 0.0015708965452559873) + +[07064] +centroid = (0.70813784793234047, -1.2958308732504027) +station = ('kewr', 0.0021867204375253576) +zone = ('njz108', 0.0013386773862715954) + +[07065] +centroid = (0.70872850225780037, -1.296439836079716) +station = ('kewr', 0.0020103702921472661) +zone = ('njz108', 0.00095363706724526612) + +[07066] +centroid = (0.70896356320145903, -1.2970491479748798) +station = ('kewr', 0.0022536560959616528) +zone = ('njz107', 0.00097988034575774039) + +[07067] +centroid = (0.70841608832169345, -1.2969770309701876) +station = ('kewr', 0.0025231568059887232) +zone = ('njz108', 0.0014580978155234227) + +[07068] +centroid = (0.71244097465642509, -1.2969570993101298) +station = ('kcdw', 0.0011630681064517712) +zone = ('njz105', 0.00052725336132072723) + +[07069] +centroid = (0.70935146262771476, -1.2991573486316563) +station = ('kmmu', 0.0027550560929126481) +zone = ('njz107', 0.001116997328977129) + +[07070] +centroid = (0.71244888099793668, -1.2933944110679112) +station = ('kteb', 0.001096353173947149) +zone = ('njz006', 0.0014347599600488298) + +[07071] +centroid = (0.71205949804181667, -1.2935202318536874) +station = ('kteb', 0.0014607494032649459) +zone = ('njz006', 0.0011014274453014631) + +[07072] +centroid = (0.71255552061523353, -1.292631649824912) +station = ('kteb', 0.00072100939595679946) +zone = ('njz006', 0.001504333970439123) + +[07073] +centroid = (0.71239273375589984, -1.2930275952190196) +station = ('kteb', 0.00098099357919763873) +zone = ('njz006', 0.0013318605213157074) + +[07074] +centroid = (0.71275977649759437, -1.2925082550467961) +station = ('kteb', 0.00050294272443685624) +zone = ('njz104', 0.0014233498321611021) + +[07075] +centroid = (0.71297019339221479, -1.2930632697489304) +station = ('kteb', 0.00056762255098144086) +zone = ('njz104', 0.0014281899354016895) + +[07076] +centroid = (0.7091800887484615, -1.2980520665229534) +station = ('kmmu', 0.0029711889966884072) +zone = ('njz107', 0.000618747501754636) + +[07077] +centroid = (0.70780339048778085, -1.2959603766809007) +station = ('kewr', 0.0025285913373064252) +zone = ('njz108', 0.0016826960220427116) + +[07078] +centroid = (0.71108808268674162, -1.2973771826077922) +station = ('kmmu', 0.0014831171393224914) +zone = ('njz105', 0.0013091363606196789) + +[07079] +centroid = (0.71120091822288312, -1.2961078919092792) +station = ('kewr', 0.0016971232790885409) +zone = ('njz105', 0.00097367484361040365) + +[07080] +centroid = (0.70815709891399004, -1.2987832722130763) +station = ('kmmu', 0.0039373134029631589) +zone = ('njz107', 0.0017767893826902137) + +[07081] +centroid = (0.71031233619410772, -1.2973821218895754) +station = ('kmmu', 0.0020869266767757091) +zone = ('njz107', 0.00062782791180663222) + +[07082] +centroid = (0.71430938452727, -1.2975215911501021) +station = ('kcdw', 0.0010899044053308429) +zone = ('njz105', 0.0023241388973271977) + +[07083] +centroid = (0.71026638167490264, -1.296239943520485) +station = ('kewr', 0.0013712262797327091) +zone = ('njz108', 0.00091452606543792681) + +[07086] +centroid = (0.71153282748673485, -1.291906517880586) +station = ('knyc', 0.00076483327749086506) +zone = ('njz006', 0.00088395760287346328) + +[07087] +centroid = (0.71152490369193078, -1.2921078416098035) +station = ('knyc', 0.00091142314027259916) +zone = ('njz006', 0.00075405536829112471) + +[07088] +centroid = (0.71066201290974473, -1.2965380457567257) +station = ('kewr', 0.0016924910040173283) +zone = ('njz107', 0.00130540194045071) + +[07090] +centroid = (0.70950503414859767, -1.2975379274319008) +station = ('kmmu', 0.0027644883781453604) +zone = ('njz107', 0.00032365955170142073) + +[07092] +centroid = (0.71001254098849276, -1.2978319281443993) +station = ('kmmu', 0.0022112499332225025) +zone = ('njz107', 0.00024850087805392202) + +[07093] +centroid = (0.71188627411355632, -1.291741863518953) +station = ('knyc', 0.00059635823400149219) +zone = ('nyz072', 0.00061545465525464035) + +[07094] +centroid = (0.71177944251004166, -1.2927243442614855) +station = ('knyc', 0.0013347488040248729) +zone = ('njz006', 0.00072661716747708064) + +[07095] +centroid = (0.70778064884762737, -1.2965518513111092) +station = ('kewr', 0.0027796003391824141) +zone = ('njz108', 0.0018226360876040721) + +[07102] +centroid = (0.7109713725196608, -1.2945736253237285) +station = ('kewr', 0.00091785686911966978) +zone = ('njz106', 0.00020727782962715597) + +[07103] +centroid = (0.71102498903428202, -1.2949570392538066) +station = ('kewr', 0.0010397540873425201) +zone = ('njz106', 0.00034252017382030051) + +[07104] +centroid = (0.71153425865672149, -1.2944824318703119) +station = ('kewr', 0.0014763152490609374) +zone = ('njz106', 0.00036016444587038532) + +[07105] +centroid = (0.71075158320695719, -1.2939633011375988) +station = ('kewr', 0.00078641499635709875) +zone = ('njz106', 0.00061745340845422521) + +[07106] +centroid = (0.71107851828244073, -1.2955636458886299) +station = ('kewr', 0.001323082673359077) +zone = ('njz106', 0.00077243673215513994) + +[07107] +centroid = (0.71144713182046193, -1.2947997152750319) +station = ('kewr', 0.0014137166424981621) +zone = ('njz106', 0.00032780217645989642) + +[07108] +centroid = (0.71075256059133818, -1.2950379876245142) +station = ('kewr', 0.00082416077809817953) +zone = ('njz106', 0.00056241066543736239) + +[07109] +centroid = (0.71201605679673452, -1.2943684618701568) +station = ('kteb', 0.0019297399892176631) +zone = ('njz106', 0.00084954265142330333) + +[07110] +centroid = (0.71245331413423663, -1.2942677389190242) +station = ('kteb', 0.0016152458915260572) +zone = ('njz106', 0.0012933878906498102) + +[07111] +centroid = (0.71076544112121798, -1.2956018336926636) +station = ('kewr', 0.0011222462825768713) +zone = ('njz106', 0.00089572384499452765) + +[07112] +centroid = (0.71051250800601895, -1.2952026419861473) +station = ('kewr', 0.00072794978331893758) +zone = ('njz106', 0.00082800755330027242) + +[07114] +centroid = (0.71030296377602453, -1.2945123293603984) +station = ('kewr', 0.00024900966541684322) +zone = ('njz106', 0.00087560509653686) + +[07201] +centroid = (0.71015653065178219, -1.2944306654046978) +station = ('kewr', 9.9799946162795598e-05) +zone = ('njz106', 0.001025677968446898) + +[07202] +centroid = (0.70951849063713057, -1.2953283580521686) +station = ('kewr', 0.00085586997040316515) +zone = ('njz108', 0.00024792789662043962) + +[07203] +centroid = (0.70951493016545653, -1.2960842601512073) +station = ('kewr', 0.0013516209628187858) +zone = ('njz108', 0.0003336130940722686) + +[07204] +centroid = (0.70974276544601189, -1.2961985443106279) +station = ('kewr', 0.0013612562776099736) +zone = ('njz108', 0.00049876483993672126) + +[07205] +centroid = (0.7102772550761427, -1.2955369598043671) +station = ('kewr', 0.00085097227255217513) +zone = ('njz108', 0.00081232529673356212) + +[07206] +centroid = (0.709505208681523, -1.2947517536271873) +station = ('kewr', 0.00059767918457495975) +zone = ('njz108', 0.00068142356266309332) + +[07208] +centroid = (0.7098922528964452, -1.2954952115286593) +station = ('kewr', 0.00080795618207482069) +zone = ('njz108', 0.00043862074992626852) + +[07302] +centroid = (0.7106874074503613, -1.2923546835259132) +station = ('knyc', 0.0015358489345673792) +zone = ('njz006', 0.00055741086487625594) + +[07304] +centroid = (0.71063689762180859, -1.292810633339704) +station = ('kewr', 0.0013727565136018201) +zone = ('njz006', 0.00043258917889644615) + +[07305] +centroid = (0.7103019165784733, -1.2929795812112972) +station = ('kewr', 0.0011431541396864544) +zone = ('njz006', 0.00076528294581603188) + +[07306] +centroid = (0.71095854434965866, -1.2927981018756749) +station = ('knyc', 0.0016273873339998381) +zone = ('njz006', 0.00012953477527880014) + +[07307] +centroid = (0.71123697672522934, -1.2925361279549505) +station = ('knyc', 0.001320021666811869) +zone = ('njz006', 0.00032274694034949565) + +[07310] +centroid = (0.71087480345214793, -1.2921873413572318) +station = ('knyc', 0.0013130430138477681) +zone = ('njz006', 0.00056972160896086473) + +[07311] +centroid = (0.7107018413232753, -1.2921147880202266) +station = ('knyc', 0.0014058231417919561) +zone = ('njz006', 0.00069447034148528881) + +[07401] +centroid = (0.71615517493100911, -1.2938793508005777) +station = ('kteb', 0.0031008586044080988) +zone = ('njz103', 0.00031124075023189257) + +[07403] +centroid = (0.71595011619719229, -1.297353009797652) +station = ('kcdw', 0.0024884747251608134) +zone = ('njz002', 0.0012893592357485404) + +[07405] +centroid = (0.71531743434334438, -1.2981905409458065) +station = ('kcdw', 0.0021865583131262002) +zone = ('njz002', 0.0019358176038067128) + +[07407] +centroid = (0.71391865766762597, -1.2936295592780322) +station = ('kteb', 0.0011304607576486051) +zone = ('njz104', 0.0012959686233069588) + +[07410] +centroid = (0.71446506789654796, -1.2935944781600672) +station = ('kteb', 0.0015000942147747841) +zone = ('njz004', 0.0011321820324929916) + +[07416] +centroid = (0.71754950101713488, -1.302010996865252) +station = ('kfwn', 0.0015887318488205116) +zone = ('njz001', 0.001278281357769052) + +[07417] +centroid = (0.71571639915705776, -1.2951329509891152) +station = ('kcdw', 0.0023973580232166795) +zone = ('njz103', 0.00073205265362529556) + +[07418] +centroid = (0.71981160480735229, -1.3000267669452448) +station = ('kfwn', 0.0020688820102088669) +zone = ('njz002', 0.0031389032614643512) + +[07419] +centroid = (0.71826730257860261, -1.3014655814740037) +station = ('kfwn', 0.0011743752143203309) +zone = ('njz001', 0.0016189928687433384) + +[07420] +centroid = (0.71614882193253193, -1.2968160417999834) +station = ('kcdw', 0.0026117681979210276) +zone = ('njz002', 0.0012510049821292505) + +[07421] +centroid = (0.71862193602931523, -1.2976958273693286) +station = ('kfwn', 0.003716544538049254) +zone = ('njz002', 0.0014068347702840508) + +[07422] +centroid = (0.71879699255329033, -1.2992207913499663) +station = ('kfwn', 0.0025561532325576956) +zone = ('njz002', 0.0019601854140083165) + +[07423] +centroid = (0.71557600487202733, -1.2932291807476248) +station = ('kteb', 0.0023980803567225542) +zone = ('njz103', 0.0008795338844302164) + +[07424] +centroid = (0.71353342859512592, -1.2951361274883537) +station = ('kcdw', 0.0010227608984138253) +zone = ('njz004', 0.00061838831284712645) + +[07430] +centroid = (0.71703639167034117, -1.2947881262887988) +station = ('kcdw', 0.0037163962888789757) +zone = ('njz103', 0.0011062907595431131) + +[07432] +centroid = (0.71551184656872402, -1.294009133483756) +station = ('kteb', 0.0025550796069204792) +zone = ('njz103', 0.00052781756085907737) + +[07435] +centroid = (0.71620509134761612, -1.299382373932116) +station = ('kcdw', 0.00343963180038394) +zone = ('njz002', 0.0016310957178889587) + +[07436] +centroid = (0.71610824302742304, -1.2957994922304519) +station = ('kcdw', 0.0026118616904878414) +zone = ('njz103', 0.001177888792920401) + +[07438] +centroid = (0.71607602424943118, -1.3005995840057494) +station = ('k12n', 0.0028311086612684954) +zone = ('njz002', 0.0024761707508966116) + +[07439] +centroid = (0.7169744324818953, -1.3020289912098399) +station = ('k12n', 0.0020619333926942761) +zone = ('njz001', 0.0015723105416546529) + +[07440] +centroid = (0.71465068366249751, -1.2966581593158482) +station = ('kcdw', 0.0011093198984160146) +zone = ('njz004', 0.0013274541797002825) + +[07442] +centroid = (0.71563901125802443, -1.2965257760920843) +station = ('kcdw', 0.0020904225429270512) +zone = ('njz103', 0.001761291421447226) + +[07444] +centroid = (0.71501613815457266, -1.2969012313207733) +station = ('kcdw', 0.0015000944234836674) +zone = ('njz004', 0.001657740398567457) + +[07446] +centroid = (0.71661711122413452, -1.2940906229065319) +station = ('kcdw', 0.0035627546858495941) +zone = ('njz103', 0.00061886382777726122) + +[07450] +centroid = (0.71526369565567549, -1.2935246998965726) +station = ('kteb', 0.0021736207984460482) +zone = ('njz103', 0.00092197825774144304) + +[07452] +centroid = (0.71487762882513439, -1.2937288336058859) +station = ('kteb', 0.0018993114460999507) +zone = ('njz103', 0.0011963511565686858) + +[07456] +centroid = (0.7173710236478259, -1.2963113623934766) +station = ('kcdw', 0.0038245920062373122) +zone = ('njz002', 0.0010458716759422382) + +[07457] +centroid = (0.71550636623487274, -1.2970527433531389) +station = ('kcdw', 0.0020034156881922958) +zone = ('njz002', 0.0017737917095790761) + +[07458] +centroid = (0.71639922432031555, -1.2932280811901962) +station = ('kteb', 0.0032005982989135469) +zone = ('njz103', 0.00085967566691209907) + +[07460] +centroid = (0.71753648086091504, -1.3001846494293801) +station = ('kfwn', 0.0023809912454313487) +zone = ('njz002', 0.0019117396451820013) + +[07461] +centroid = (0.71988318075997648, -1.3021974154826577) +station = ('kfwn', 0.00086174921738897887) +zone = ('njz001', 0.0021393804524813768) + +[07462] +centroid = (0.71904872139130549, -1.3001930793696672) +station = ('kfwn', 0.001809267060504949) +zone = ('njz002', 0.002633020786987668) + +[07463] +centroid = (0.71582261989533413, -1.2937413476166226) +station = ('kteb', 0.0027531257333522079) +zone = ('njz103', 0.0004223958272061998) + +[07465] +centroid = (0.71654239367885664, -1.2973514739079102) +station = ('kcdw', 0.003063672158026678) +zone = ('njz002', 0.00071784892099973979) + +[07470] +centroid = (0.71463998479418278, -1.295821047046714) +station = ('kcdw', 0.0012022183541981059) +zone = ('njz004', 0.00077333192312056267) + +[07480] +centroid = (0.71712540346219278, -1.2981128912473854) +station = ('kcdw', 0.0037809244604775564) +zone = ('njz002', 0.00033567144372817167) + +[07481] +centroid = (0.71556916318135955, -1.2944906174645037) +station = ('kcdw', 0.0025219243565766034) +zone = ('njz103', 0.00047778058984967743) + +[07495] +centroid = (0.71739816351769448, -1.2944121474613342) +station = ('kcdw', 0.0041562552265490193) +zone = ('njz103', 0.001394851328344537) + +[07501] +centroid = (0.71404906866933504, -1.2945275486314758) +station = ('kteb', 0.0017813819315989088) +zone = ('njz004', 0.00039395463302313642) + +[07502] +centroid = (0.71416384152094625, -1.2949311211144146) +station = ('kcdw', 0.0013283019404095764) +zone = ('njz004', 7.8514115125594131e-05) + +[07503] +centroid = (0.71379686859242186, -1.2942335653722701) +station = ('kteb', 0.0014758852138124343) +zone = ('njz004', 0.00069794007627343654) + +[07504] +centroid = (0.714058667980221, -1.2940152944960157) +station = ('kteb', 0.0014499706269021165) +zone = ('njz004', 0.00077376843367893227) + +[07505] +centroid = (0.71412476359899402, -1.2945392423374642) +station = ('kteb', 0.001823994478834739) +zone = ('njz004', 0.00037343317380920471) + +[07506] +centroid = (0.71483375124773929, -1.2943110579910586) +station = ('kteb', 0.0021292412705599703) +zone = ('njz004', 0.00087687804144409066) + +[07508] +centroid = (0.71480088669792419, -1.2947487342075812) +station = ('kcdw', 0.0018156297440609006) +zone = ('njz004', 0.00068829294908194613) + +[07512] +centroid = (0.71389926705963647, -1.2953795136525446) +station = ('kcdw', 0.00090880589290871555) +zone = ('njz004', 0.00036061707206270138) + +[07513] +centroid = (0.71394756032003914, -1.2941387067274241) +station = ('kteb', 0.0014735100529437235) +zone = ('njz004', 0.00070428255032037096) + +[07514] +centroid = (0.71431076333737908, -1.2940540931652875) +station = ('kteb', 0.0016251607646353096) +zone = ('njz004', 0.00075728196181838162) + +[07522] +centroid = (0.71427528079368607, -1.2946694613529557) +station = ('kcdw', 0.0015551548500686329) +zone = ('njz004', 0.00030293623936492671) + +[07524] +centroid = (0.71439312542478073, -1.2942815444734073) +station = ('kteb', 0.00181010226997941) +zone = ('njz004', 0.00061858727521436581) + +[07601] +centroid = (0.71365462425838433, -1.2923412270373802) +station = ('kteb', 0.00040077790496614678) +zone = ('njz104', 0.00055389086757227251) + +[07603] +centroid = (0.71339088755511548, -1.2920626201288845) +station = ('kteb', 0.00029870164104053572) +zone = ('njz104', 0.00073097251237597496) + +[07604] +centroid = (0.71318954637260545, -1.2928558199140383) +station = ('kteb', 0.0003393345753903087) +zone = ('njz104', 0.0011585568220127669) + +[07605] +centroid = (0.7132007164798182, -1.2913424274663414) +station = ('kteb', 0.00081413750385383738) +zone = ('njz104', 0.0010183804188653078) + +[07606] +centroid = (0.71311495100037514, -1.2923896599241231) +station = ('kteb', 0.000144350756623648) +zone = ('njz104', 0.0010579715448424982) + +[07607] +centroid = (0.71389001681460074, -1.292651180059242) +station = ('kteb', 0.00065659534766334857) +zone = ('njz104', 0.00058659083807888408) + +[07608] +centroid = (0.71301934186395088, -1.2925970399458451) +station = ('kteb', 0.00027493189869260911) +zone = ('njz104', 0.0012050836718459654) + +[07620] +centroid = (0.71502908849762237, -1.2900976411905267) +station = ('kteb', 0.002491395294673078) +zone = ('njz104', 0.0016613805648330818) + +[07621] +centroid = (0.71422946590082115, -1.2915087573440565) +station = ('kteb', 0.0011893728440932358) +zone = ('njz104', 0.00034139236242354375) + +[07624] +centroid = (0.71511183455745941, -1.2908510125621497) +station = ('kteb', 0.0021991116642813232) +zone = ('njz104', 0.001289475059071041) + +[07626] +centroid = (0.7145340607618792, -1.2908207485529202) +station = ('kteb', 0.0017558299631634945) +zone = ('njz104', 0.00093993052702030463) + +[07627] +centroid = (0.71479219495824931, -1.2907855278086151) +station = ('kteb', 0.0019679924954497459) +zone = ('njz104', 0.0011007080936529094) + +[07628] +centroid = (0.71462923356599051, -1.291411490144843) +station = ('kteb', 0.001567584699922775) +zone = ('njz104', 0.00064822117955852347) + +[07630] +centroid = (0.71514848647175133, -1.2919494006203074) +station = ('kteb', 0.001923235550603711) +zone = ('njz104', 0.0010331208706125165) + +[07631] +centroid = (0.71368602273162773, -1.2910639427308932) +station = ('kteb', 0.0011085315829162628) +zone = ('njz104', 0.00078576279622906311) + +[07632] +centroid = (0.71365958099346005, -1.2905321758143957) +station = ('kteb', 0.0014801494497453601) +zone = ('njz104', 0.0011538455177945511) + +[07640] +centroid = (0.7154397993772017, -1.291198106190494) +station = ('kteb', 0.0023680864884252331) +zone = ('njz104', 0.0014364383730419796) + +[07641] +centroid = (0.71491675910696406, -1.2914989136870754) +station = ('kteb', 0.001797908891092867) +zone = ('njz104', 0.00086628862260995144) + +[07642] +centroid = (0.71570938293346464, -1.2923311215810112) +station = ('kteb', 0.0024523398366251116) +zone = ('njz103', 0.0014738726678120268) + +[07643] +centroid = (0.71286807417768061, -1.292174827346495) +station = ('kteb', 0.00043048255123383006) +zone = ('njz104', 0.0012605065132280432) + +[07644] +centroid = (0.71345420810037785, -1.2929835431086991) +station = ('kteb', 0.0004717174754596619) +zone = ('njz104', 0.0010324124200782106) + +[07645] +centroid = (0.71653783836950891, -1.2923691523054122) +station = ('kteb', 0.0032801440480347563) +zone = ('njz103', 0.001509497800712852) + +[07646] +centroid = (0.71443588599145458, -1.2918831653751943) +station = ('kteb', 0.0012450184417223979) +zone = ('njz104', 0.0003228077540921244) + +[07647] +centroid = (0.71569606607127201, -1.2905448294514725) +station = ('kteb', 0.0028184211347408537) +zone = ('njz104', 0.001897328707332494) + +[07648] +centroid = (0.71544976520723058, -1.2906869865190476) +station = ('kteb', 0.0025517356832034685) +zone = ('njz104', 0.0016334874678025474) + +[07649] +centroid = (0.71482841054022805, -1.2921171267614242) +station = ('kteb', 0.0015867145849637705) +zone = ('njz104', 0.00072619546410901414) + +[07650] +centroid = (0.71291493626809666, -1.2914923512490879) +station = ('kteb', 0.00077844988398244688) +zone = ('njz104', 0.0012461856337311998) + +[07652] +centroid = (0.71466536188150676, -1.2927826382585021) +station = ('kteb', 0.0014344460099382395) +zone = ('njz104', 0.00084433918108819072) + +[07656] +centroid = (0.71621854783614902, -1.292303929351265) +station = ('kteb', 0.0029618766015418146) +zone = ('njz103', 0.0014781808635995434) + +[07657] +centroid = (0.71265872193390389, -1.2918077846048008) +station = ('kteb', 0.00075556789250294065) +zone = ('nyz072', 0.0011368562267173137) + +[07660] +centroid = (0.71304911718098996, -1.2918914207825563) +station = ('kteb', 0.00044852531584700238) +zone = ('njz104', 0.0010668084900408836) + +[07661] +centroid = (0.71431708142927131, -1.2922349888458111) +station = ('kteb', 0.001068024671089984) +zone = ('njz104', 0.0003036162754769713) + +[07662] +centroid = (0.71402630957588908, -1.2929904371592444) +station = ('kteb', 0.00088252692414795371) +zone = ('njz104', 0.00080285938448281479) + +[07663] +centroid = (0.71389160506422022, -1.2933074936711619) +station = ('kteb', 0.00092495812402450673) +zone = ('njz104', 0.0010614256386142511) + +[07666] +centroid = (0.71367066383421018, -1.2917439753673476) +station = ('kteb', 0.00065483313695084591) +zone = ('njz104', 0.0004675167088239041) + +[07670] +centroid = (0.71415921639842839, -1.2906800750152094) +station = ('kteb', 0.0015921748019795874) +zone = ('njz104', 0.00094900352982344284) + +[07675] +centroid = (0.71564618456125006, -1.2915746784299043) +station = ('kteb', 0.0024714813770496803) +zone = ('njz104', 0.0015547019437134706) + +[07676] +centroid = (0.71538089451494691, -1.2926727523287966) +station = ('kteb', 0.0021318296655551483) +zone = ('njz103', 0.0013416410048557577) + +[07677] +centroid = (0.71603837749746568, -1.292609361970364) +station = ('kteb', 0.0027843106943229541) +zone = ('njz103', 0.0012333053071533629) + +[07701] +centroid = (0.70444398074354209, -1.2929063297425909) +station = ('kblm', 0.0031983067715126625) +zone = ('njz014', 0.0019592173382281439) + +[07702] +centroid = (0.7038225911699546, -1.2925850320805914) +station = ('kblm', 0.0026774054743190414) +zone = ('njz014', 0.0012920832089347914) + +[07703] +centroid = (0.70364317132284959, -1.2922378162791994) +station = ('kblm', 0.0026262642079872903) +zone = ('njz014', 0.0010575454563985466) + +[07704] +centroid = (0.7044487454924, -1.2922203978932647) +station = ('kblm', 0.0033619839686447849) +zone = ('njz014', 0.0018583423360204138) + +[07711] +centroid = (0.70229485211580644, -1.2916834124423036) +station = ('kblm', 0.0019283096200116956) +zone = ('njz014', 0.000414444505542204) + +[07712] +centroid = (0.7024899275663018, -1.2924810977236352) +station = ('kblm', 0.0015710087301132757) +zone = ('njz014', 0.00033904539269733028) + +[07716] +centroid = (0.70513200698797085, -1.2921192211565267) +station = ('kblm', 0.0040285156871742653) +zone = ('njz014', 0.0025379212296332485) + +[07717] +centroid = (0.70147257514531425, -1.2918072784593178) +station = ('kblm', 0.0015826689790873893) +zone = ('njz014', 0.0011382140408286025) + +[07718] +centroid = (0.70546878572043559, -1.2930336864181091) +station = ('kblm', 0.0041862760431796882) +zone = ('nyz074', 0.0029413287736439822) + +[07719] +centroid = (0.70107970153069044, -1.2928216812738693) +station = ('kblm', 0.00084016878927118484) +zone = ('njz014', 0.0016230487694245271) + +[07720] +centroid = (0.70165035438292256, -1.2917540633704243) +station = ('kblm', 0.0016480428966388996) +zone = ('njz014', 0.00097234530815914046) + +[07721] +centroid = (0.70575044695512246, -1.295639445538044) +station = ('kewr', 0.0044010386053853203) +zone = ('njz012', 0.0023468376735649673) + +[07722] +centroid = (0.70312140514296584, -1.2945384394860084) +station = ('kblm', 0.0018610950006554318) +zone = ('njz013', 0.0012809573846089607) + +[07723] +centroid = (0.70248980539325423, -1.2914992802062182) +station = ('kblm', 0.0021496560550657395) +zone = ('njz014', 0.00043946665922439497) + +[07724] +centroid = (0.7033436902764999, -1.2928382968083483) +station = ('kblm', 0.002161050739418113) +zone = ('njz014', 0.00095665882289491192) + +[07726] +centroid = (0.70305969030061533, -1.2975923293446856) +station = ('kblm', 0.0033254858375743814) +zone = ('njz013', 0.001201627225772656) + +[07727] +centroid = (0.70169920614868575, -1.2941482187718476) +station = ('kblm', 0.00042444155232667334) +zone = ('njz014', 0.0018294413322056621) + +[07728] +centroid = (0.70207253207568743, -1.296531535678616) +station = ('kblm', 0.0021630627404401006) +zone = ('njz013', 0.00067356438477661734) + +[07730] +centroid = (0.70555798949850501, -1.2946165255167426) +station = ('kblm', 0.0042646127770807141) +zone = ('nyz074', 0.0027136011352190429) + +[07731] +centroid = (0.70073779153022475, -1.2951077484347164) +station = ('kblm', 0.0011162496392680401) +zone = ('njz013', 0.0020702631119720377) + +[07732] +centroid = (0.70564478472220671, -1.2913765137466329) +station = ('kjfk', 0.0046202296282547564) +zone = ('njz014', 0.0030942516764941898) + +[07733] +centroid = (0.7046760571741798, -1.2945778839271036) +station = ('kblm', 0.0033878144533325554) +zone = ('njz013', 0.0023262768319612659) + +[07734] +centroid = (0.70588359812375712, -1.2939314314254573) +station = ('kewr', 0.0041932471944881233) +zone = ('nyz074', 0.0023876960016186708) + +[07735] +centroid = (0.70598758484059099, -1.2945503949913846) +station = ('kewr', 0.0040712113631245304) +zone = ('nyz074', 0.0022811414005217967) + +[07737] +centroid = (0.70532896739405848, -1.2926913575386227) +station = ('kblm', 0.0040974505931919624) +zone = ('njz014', 0.0027766854365502821) + +[07738] +centroid = (0.70402929051326835, -1.2937613665431429) +station = ('kblm', 0.0026991104910728788) +zone = ('njz014', 0.001935304425480658) + +[07739] +centroid = (0.70401262261891173, -1.2921463959329802) +station = ('kblm', 0.0029866586190028222) +zone = ('njz014', 0.0014196979509344964) + +[07740] +centroid = (0.70328691471593252, -1.2913673507680599) +station = ('kblm', 0.0027341527618172899) +zone = ('njz014', 0.00087034281621150341) + +[07746] +centroid = (0.70367708307021581, -1.2958776131677712) +station = ('kblm', 0.0028014218789333915) +zone = ('njz013', 0.0010293487573593419) + +[07747] +centroid = (0.70538050696686982, -1.2959751421663726) +station = ('kblm', 0.0043555253211752815) +zone = ('njz013', 0.0027197593468860203) + +[07748] +centroid = (0.70504844062338534, -1.2935555573177477) +station = ('kblm', 0.0037247371215243952) +zone = ('njz014', 0.0027063555998767235) + +[07750] +centroid = (0.70399417448871815, -1.2912924586898569) +station = ('kblm', 0.0033107800658452187) +zone = ('njz014', 0.0015167257671967619) + +[07751] +centroid = (0.70444773320143395, -1.2961331642768483) +station = ('kblm', 0.0035624068316883997) +zone = ('njz013', 0.0017852783955865455) + +[07753] +centroid = (0.70191492884423234, -1.2929719192158808) +station = ('kblm', 0.00090096549767331542) +zone = ('njz014', 0.00097366579142940809) + +[07755] +centroid = (0.70273299957122703, -1.2919429254487824) +station = ('kblm', 0.0020324703740197811) +zone = ('njz014', 0.00016419905503358049) + +[07756] +centroid = (0.70182865721930621, -1.2916648421390624) +station = ('kblm', 0.0017567490980595056) +zone = ('njz014', 0.00082270922883395171) + +[07757] +centroid = (0.70365240411459262, -1.2918211014669934) +station = ('kblm', 0.0027989214193118572) +zone = ('njz014', 0.0010732869809314974) + +[07758] +centroid = (0.70564855463339105, -1.2933464843266516) +station = ('kblm', 0.004335556519255354) +zone = ('nyz074', 0.0027006240639255029) + +[07760] +centroid = (0.70458158250176939, -1.2915849758724911) +station = ('kblm', 0.0036884131473250686) +zone = ('njz014', 0.0020196165695419693) + +[07762] +centroid = (0.70080050121024895, -1.2921348942132096) +station = ('kblm', 0.0014287886262899642) +zone = ('njz014', 0.0017949545536594719) + +[07764] +centroid = (0.70315657352739358, -1.2918930439387606) +station = ('kblm', 0.0023686298823827521) +zone = ('njz014', 0.00057607144504375808) + +[07801] +centroid = (0.71416591846275601, -1.301204934003511) +station = ('kmmu', 0.002748883797033007) +zone = ('njz008', 0.00099492702617561208) + +[07803] +centroid = (0.71345874595643299, -1.3020292355559353) +station = ('kmmu', 0.002787790480033889) +zone = ('njz008', 0.00079400833774347069) + +[07820] +centroid = (0.71437614337115873, -1.3057153011229774) +station = ('k12n', 0.0018229501165964435) +zone = ('njz007', 0.0027563089742362384) + +[07821] +centroid = (0.71499048181456826, -1.3047102881798014) +station = ('k12n', 0.00092784939830808455) +zone = ('njz001', 0.0031431811624137622) + +[07822] +centroid = (0.71801995451700995, -1.3039117825937214) +station = ('kfwn', 0.0014468747800363948) +zone = ('njz001', 0.00024241443029642402) + +[07823] +centroid = (0.71260835173169124, -1.3096862916904073) +station = ('k12n', 0.005194077487554476) +zone = ('njz007', 0.00074349845502929429) + +[07825] +centroid = (0.71508324606431173, -1.308572998520438) +station = ('k12n', 0.0032898315190697121) +zone = ('njz007', 0.002006834324203316) + +[07826] +centroid = (0.71895688216606557, -1.3051252227561705) +station = ('kfwn', 0.0019057758969164671) +zone = ('njz001', 0.0014890861657129207) + +[07827] +centroid = (0.7204869948679965, -1.3042920025712685) +station = ('kfwn', 0.0019014784129382681) +zone = ('njz001', 0.0025248764024266112) + +[07828] +centroid = (0.71355927692134791, -1.3046390612930274) +station = ('k12n', 0.0023273911794231151) +zone = ('njz007', 0.0032885559986531162) + +[07830] +centroid = (0.7106855574013542, -1.3054019272557817) +station = ('ksmq', 0.0024596943498977103) +zone = ('njz009', 0.003082069515743292) + +[07832] +centroid = (0.71492396731677477, -1.3099346694962588) +station = ('kmpo', 0.0052679401569061604) +zone = ('njz007', 0.0019750402341903528) + +[07833] +centroid = (0.7137098464759174, -1.3102064521673793) +station = ('k12n', 0.0049297943166657972) +zone = ('njz007', 0.0011344708955744983) + +[07834] +centroid = (0.71361706477288134, -1.3001038232317201) +station = ('kmmu', 0.001807777102046228) +zone = ('njz008', 0.00083737565114429279) + +[07836] +centroid = (0.71284662408117361, -1.303948085442163) +station = ('k12n', 0.003043895196755182) +zone = ('njz008', 0.0022192998417962266) + +[07838] +centroid = (0.71362860139923712, -1.3074547486153922) +station = ('k12n', 0.0032518462895887636) +zone = ('njz007', 0.0012460479184463764) + +[07840] +centroid = (0.71303210022078301, -1.3061304625921493) +station = ('k12n', 0.0031481841244591774) +zone = ('njz007', 0.0021294513166150554) + +[07842] +centroid = (0.71457481419991331, -1.3004827342123284) +station = ('kmmu', 0.0027823658724050217) +zone = ('njz008', 0.0014602892026217467) + +[07843] +centroid = (0.71452454871745597, -1.303053639107101) +station = ('k12n', 0.0016653056858446584) +zone = ('njz008', 0.0020280991553049969) + +[07846] +centroid = (0.71499053417444591, -1.3068513708396854) +station = ('k12n', 0.0020903009274280105) +zone = ('njz007', 0.0024679986033635591) + +[07847] +centroid = (0.71365371668717337, -1.3024323891598537) +station = ('k12n', 0.0026494570229304167) +zone = ('njz008', 0.0011504425542219062) + +[07848] +centroid = (0.71739825078415709, -1.3035341282501751) +station = ('k12n', 0.0016399210685277782) +zone = ('njz001', 0.0006211544605423708) + +[07849] +centroid = (0.71507059242723481, -1.3021604145025152) +station = ('k12n', 0.0018334850131552498) +zone = ('njz008', 0.0020710282112111752) + +[07850] +centroid = (0.71395935874578254, -1.3030983369892446) +station = ('k12n', 0.0021345002514995544) +zone = ('njz008', 0.0017365271801626345) + +[07851] +centroid = (0.71962431352532075, -1.3063235658205901) +station = ('kfwn', 0.0028561436511005448) +zone = ('njz001', 0.0026101319727705016) + +[07852] +centroid = (0.71354763557523715, -1.3032029520246091) +station = ('k12n', 0.0024822962448603461) +zone = ('njz008', 0.0016716215124600825) + +[07853] +centroid = (0.71175844619914008, -1.3053184481576587) +station = ('ksmq', 0.0032912509193821953) +zone = ('njz007', 0.0030528586836982264) + +[07856] +centroid = (0.714115129381523, -1.3024811885657395) +station = ('k12n', 0.0022530142093435237) +zone = ('njz008', 0.0014329871628284085) + +[07857] +centroid = (0.71378302813145356, -1.3037665711999555) +station = ('k12n', 0.0021376064338949354) +zone = ('njz008', 0.0021433745356781103) + +[07860] +centroid = (0.71657192464980035, -1.3058398652716923) +station = ('k12n', 0.0013265522150892838) +zone = ('njz001', 0.0022284358432067821) + +[07863] +centroid = (0.71223633480162862, -1.3082621204740725) +station = ('k12n', 0.0046924727163415213) +zone = ('njz007', 0.0010029551832053134) + +[07865] +centroid = (0.71198626402640297, -1.307222741997925) +station = ('ksmq', 0.0043537110902347976) +zone = ('njz007', 0.0017115645592812795) + +[07866] +centroid = (0.71479823379746121, -1.3000781319851309) +station = ('kmmu', 0.002867401784453427) +zone = ('njz008', 0.0017778296712528791) + +[07869] +centroid = (0.71282198003213537, -1.3016374091388625) +station = ('kmmu', 0.0022558125814118491) +zone = ('njz008', 0.00057126677421666361) + +[07870] +centroid = (0.71216379891791592, -1.3058492551430678) +station = ('ksmq', 0.0038450381569348916) +zone = ('njz007', 0.002520819978253353) + +[07871] +centroid = (0.71649874299426419, -1.3025022197832259) +station = ('k12n', 0.0015216412962279439) +zone = ('njz001', 0.0017262636507094338) + +[07874] +centroid = (0.7142421893510682, -1.3043856045790529) +station = ('k12n', 0.0016340129209185641) +zone = ('njz008', 0.0027389228600218089) + +[07876] +centroid = (0.71304901246123475, -1.3029946993382611) +station = ('k12n', 0.0030047042413641153) +zone = ('njz008', 0.0014787801520104768) + +[07878] +centroid = (0.71336854734069, -1.2998122310735896) +station = ('kmmu', 0.0014805036360936779) +zone = ('njz008', 0.0009529423523448623) + +[07880] +centroid = (0.71334140747082142, -1.3070577211171488) +station = ('k12n', 0.0032602463891443219) +zone = ('njz007', 0.0014478775665299861) + +[07881] +centroid = (0.71765551231590097, -1.307147588120334) +station = ('k12n', 0.0027638661273306593) +zone = ('njz001', 0.0027041545638760889) + +[07882] +centroid = (0.71126774687994199, -1.3092375675397194) +station = ('k12n', 0.0059101227426585235) +zone = ('njz007', 0.0018418076851472369) + +[07885] +centroid = (0.71402302835689524, -1.3020140686447357) +station = ('k12n', 0.0025544361298904341) +zone = ('njz008', 0.0011172859589709525) + +[07901] +centroid = (0.71060946104596723, -1.2979380441629205) +station = ('kmmu', 0.0016269513190641193) +zone = ('njz107', 0.00085081490920535041) + +[07920] +centroid = (0.70998238169901828, -1.3013893105856917) +station = ('ksmq', 0.0017399893607272766) +zone = ('njz010', 0.0021277024123286968) + +[07921] +centroid = (0.70958139230337247, -1.3033884456175111) +station = ('ksmq', 0.00070494824814723079) +zone = ('njz010', 0.0018107542682457942) + +[07922] +centroid = (0.70993698568517383, -1.2989617670356779) +station = ('kmmu', 0.0021601802598395464) +zone = ('njz107', 0.00090488913036398271) + +[07924] +centroid = (0.71087935876149566, -1.3018859614776392) +station = ('ksmq', 0.0022139134997563666) +zone = ('njz008', 0.0023849564186642258) + +[07926] +centroid = (0.71211636086884667, -1.301494152513859) +station = ('kmmu', 0.0020275605886324287) +zone = ('njz008', 0.0011144302757960154) + +[07927] +centroid = (0.71247589869475747, -1.299472502734689) +station = ('kmmu', 0.00062657777475794249) +zone = ('njz008', 0.0013827280862520731) + +[07928] +centroid = (0.71080254682111532, -1.2987450844090427) +station = ('kmmu', 0.0012928995370770976) +zone = ('njz107', 0.001264297907002073) + +[07930] +centroid = (0.7117661431011415, -1.3034807386283565) +station = ('ksmq', 0.0028806657060055679) +zone = ('njz008', 0.0023207576829457812) + +[07931] +centroid = (0.71002484555971923, -1.3023040376466619) +station = ('ksmq', 0.0013108786717433883) +zone = ('njz010', 0.0020547259304438889) + +[07932] +centroid = (0.71169713278251756, -1.2984017955984679) +station = ('kmmu', 0.00050601064407695625) +zone = ('njz105', 0.0016024445434555132) + +[07933] +centroid = (0.71031964912367362, -1.2996093190947529) +station = ('kmmu', 0.0018737243887859824) +zone = ('njz107', 0.0014864440876608076) + +[07934] +centroid = (0.71074386885166341, -1.3033348989160598) +station = ('ksmq', 0.0018530723997710972) +zone = ('njz010', 0.0028827374483966248) + +[07935] +centroid = (0.71097739390558023, -1.2993258427176437) +station = ('kmmu', 0.0011818390228908208) +zone = ('njz107', 0.0016800935930263985) + +[07936] +centroid = (0.712418145749809, -1.2978921420035932) +station = ('kmmu', 0.0007704923973607358) +zone = ('njz105', 0.0011798370337930025) + +[07939] +centroid = (0.70977971406627671, -1.3012111648289408) +station = ('ksmq', 0.0017359363199633041) +zone = ('njz010', 0.0019894503635727572) + +[07940] +centroid = (0.7114057151573121, -1.2990024506605418) +station = ('kmmu', 0.00070296637245178737) +zone = ('njz107', 0.0018795703400032013) + +[07945] +centroid = (0.71177926797711644, -1.3020069127948024) +station = ('kmmu', 0.0024364029905672405) +zone = ('njz008', 0.0015762850415174067) + +[07946] +centroid = (0.70995995421813007, -1.3004193089473108) +station = ('kmmu', 0.0024559367569167599) +zone = ('njz107', 0.0020034697489076619) + +[07950] +centroid = (0.71289764005520939, -1.2999616138042678) +station = ('kmmu', 0.0011819685568540989) +zone = ('njz008', 0.00086754822335890092) + +[07960] +centroid = (0.71181859024516392, -1.3002707290680884) +station = ('kmmu', 0.0011354569046730218) +zone = ('njz008', 0.0014810590602512589) + +[07961] +centroid = (0.7117560900046499, -1.2990964017341766) +station = ('kmmu', 0.00039940688023714152) +zone = ('njz008', 0.0020496817002369212) + +[07970] +centroid = (0.71223216346471641, -1.3015411367773226) +station = ('kmmu', 0.0020675035719771892) +zone = ('njz008', 0.0010172257448390822) + +[07974] +centroid = (0.71029507488780552, -1.2985924553659558) +station = ('kmmu', 0.001807201933524014) +zone = ('njz107', 0.00080622598714164191) + +[07976] +centroid = (0.7108387449498017, -1.2999097775254835) +station = ('kmmu', 0.0015043245821006561) +zone = ('njz107', 0.0019321237545671928) + +[07977] +centroid = (0.71043955324328556, -1.3032386614611049) +station = ('ksmq', 0.0015456475833053823) +zone = ('njz010', 0.0025700947832164129) + +[07979] +centroid = (0.71040103382669406, -1.3041970566599599) +station = ('ksmq', 0.0016928304463314846) +zone = ('njz010', 0.0028251928848341762) + +[07980] +centroid = (0.7100073224540292, -1.300076822988192) +station = ('kmmu', 0.0022953048824789768) +zone = ('njz107', 0.0017509720385538675) + +[07981] +centroid = (0.71245015508829046, -1.2989171215134119) +station = ('kmmu', 0.000363982326393968) +zone = ('njz105', 0.0019482536050891191) + +[08001] +centroid = (0.6902407181836151, -1.3150424802719751) +station = ('kilg', 0.0039910076506941275) +zone = ('njz016', 0.00068629435650499615) + +[08002] +centroid = (0.69694449293394023, -1.3094778993777192) +station = ('kvay', 0.0025994364056961638) +zone = ('paz071', 0.0019394656554206956) + +[08003] +centroid = (0.69608448194502004, -1.3085088751237195) +station = ('kvay', 0.0020564843099896042) +zone = ('njz018', 0.001386686761199967) + +[08004] +centroid = (0.69402576137253758, -1.3067389367292721) +station = ('kvay', 0.0029845170181794279) +zone = ('njz018', 0.0013777675873174783) + +[08005] +centroid = (0.69407777218424704, -1.2969993362780279) +station = ('knel', 0.0046360266921737997) +zone = ('njz026', 0.0020181127303918064) + +[08006] +centroid = (0.69381653130180843, -1.2933964356498435) +station = ('knel', 0.0056503381776140454) +zone = ('njz026', 0.0010083879641759851) + +[08007] +centroid = (0.69578990527386841, -1.3099363275590479) +station = ('kphl', 0.0024047919831538043) +zone = ('njz018', 0.0016602493140482932) + +[08008] +centroid = (0.69014854734581732, -1.2967477645196455) +station = ('kacy', 0.0040623460860560673) +zone = ('njz025', 0.0032741746926716292) + +[08009] +centroid = (0.6939543599528385, -1.3078251249359583) +station = ('kvay', 0.0032956837820194542) +zone = ('njz018', 0.00083579275968017654) + +[08010] +centroid = (0.69906293867342595, -1.3075734135512354) +station = ('kpne', 0.0014124763599346242) +zone = ('njz019', 0.0024633289804672177) + +[08011] +centroid = (0.69765634292265866, -1.3039898860777481) +station = ('kvay', 0.0017494432521224187) +zone = ('njz019', 0.00062705836015297829) + +[08012] +centroid = (0.6943585607543078, -1.3099755102007553) +station = ('kphl', 0.0027815145122794096) +zone = ('njz017', 0.0016353107005886212) + +[08014] +centroid = (0.69494389182554916, -1.3150972312506102) +station = ('kphl', 0.0017790761689327899) +zone = ('paz070', 0.0018563168900840015) + +[08015] +centroid = (0.69694643024940994, -1.3010622358838682) +station = ('kwri', 0.0016470687543606248) +zone = ('njz027', 0.003222830185331471) + +[08016] +centroid = (0.69934508860030331, -1.3059285803575711) +station = ('kvay', 0.0023800778788164501) +zone = ('njz019', 0.0017256534100854582) + +[08019] +centroid = (0.69424471292720036, -1.3008675269525154) +station = ('kwri', 0.0042697171061192776) +zone = ('njz027', 0.00062391774063855481) + +[08020] +centroid = (0.69449377141145985, -1.3129089199811674) +station = ('kphl', 0.0013166026162332383) +zone = ('njz017', 0.0017022378476277136) + +[08021] +centroid = (0.69474914798761167, -1.3089995744429177) +station = ('kvay', 0.0031491888633319292) +zone = ('njz018', 0.00054130456227751604) + +[08022] +centroid = (0.69931136883915479, -1.3038611505921212) +station = ('kwri', 0.0016691827335539435) +zone = ('njz019', 0.0015971276473206648) + +[08023] +centroid = (0.69266356679794105, -1.3176585542877894) +station = ('kilg', 0.0014365567926916676) +zone = ('njz016', 0.0026647266425503689) + +[08026] +centroid = (0.6952147669254588, -1.3084240346687799) +station = ('kvay', 0.0025074846029384617) +zone = ('njz018', 0.00051668950084669699) + +[08027] +centroid = (0.69522005527309227, -1.3140632807484363) +station = ('kphl', 0.00096121197664254918) +zone = ('paz070', 0.0020605312067878022) + +[08028] +centroid = (0.69282350877059384, -1.3111160305070562) +station = ('kphl', 0.0033377032090340973) +zone = ('njz017', 0.00046437285786859794) + +[08029] +centroid = (0.69535552772963205, -1.3101699922393051) +station = ('kphl', 0.0022706520680121699) +zone = ('njz018', 0.0015777579585945192) + +[08030] +centroid = (0.6961925701855961, -1.3110577888699169) +station = ('kphl', 0.0015917255189615664) +zone = ('paz071', 0.0020824280408520144) + +[08031] +centroid = (0.69579917297219662, -1.31064924219861) +station = ('kphl', 0.0018575554814251861) +zone = ('njz018', 0.0021105618146445909) + +[08033] +centroid = (0.69625409304172881, -1.3096366196198956) +station = ('kvay', 0.0028139270194278694) +zone = ('njz018', 0.0018574325721279436) + +[08034] +centroid = (0.69650037645247775, -1.3089998362423054) +station = ('kvay', 0.0022816304694182263) +zone = ('njz018', 0.0018724174246285438) + +[08035] +centroid = (0.69602206897096863, -1.3101474251320768) +station = ('kphl', 0.0022530237296432792) +zone = ('njz018', 0.001935707919358902) + +[08036] +centroid = (0.69761803294557734, -1.3060684335905335) +station = ('kvay', 0.00065005905835575028) +zone = ('njz019', 0.0010343309902279528) + +[08037] +centroid = (0.69185499066207712, -1.3049003719886361) +station = ('kacy', 0.0038969833290595658) +zone = ('njz022', 0.002768084955856398) + +[08038] +centroid = (0.688881525575332, -1.3175541312386427) +station = ('kilg', 0.003736326190201675) +zone = ('njz016', 0.0028217237982216098) + +[08039] +centroid = (0.69264487432165223, -1.3138379587420039) +station = ('kphl', 0.0032144604878951112) +zone = ('njz017', 0.0019012605363027246) + +[08041] +centroid = (0.69881367074965606, -1.3033891612025044) +station = ('kwri', 0.0011221181560143029) +zone = ('njz019', 0.0014113512344183239) + +[08042] +centroid = (0.69840025460973609, -1.3031025781393268) +station = ('kwri', 0.00083276078904826172) +zone = ('njz019', 0.0013754626526088127) + +[08043] +centroid = (0.6954882076593687, -1.3081853259869847) +station = ('kvay', 0.0021862369470827831) +zone = ('njz018', 0.00078554395228441992) + +[08045] +centroid = (0.69581240256792665, -1.3095161046350454) +station = ('kvay', 0.0028726223835534208) +zone = ('njz018', 0.0014482291301263302) + +[08046] +centroid = (0.69861952032366414, -1.3070244376883131) +station = ('kvay', 0.0018005151045409782) +zone = ('njz019', 0.0018900572593514961) + +[08048] +centroid = (0.6974135850769988, -1.3055495297506228) +station = ('kvay', 0.00060734554351481087) +zone = ('njz019', 0.00075828410332926194) + +[08049] +centroid = (0.69559032687390288, -1.309669658702636) +station = ('kvay', 0.0030740010301559331) +zone = ('njz018', 0.0013750427413206192) + +[08050] +centroid = (0.69313379340501347, -1.2955804359560341) +station = ('knel', 0.0056956691041600048) +zone = ('njz026', 0.0015900808552205409) + +[08051] +centroid = (0.69440627805605737, -1.3120656641530664) +station = ('kphl', 0.0015967082574446778) +zone = ('njz017', 0.001291509032584653) + +[08052] +centroid = (0.69730059246122467, -1.3089078573907253) +station = ('kvay', 0.0021873101503806563) +zone = ('paz071', 0.0020928048543965385) + +[08053] +centroid = (0.69563024255389594, -1.3072657469106941) +station = ('kvay', 0.0016144319452235088) +zone = ('njz018', 0.0012161239396113314) + +[08054] +centroid = (0.69724144325287452, -1.3072559207070051) +station = ('kvay', 0.0009361848873853249) +zone = ('njz019', 0.0020140248160807712) + +[08055] +centroid = (0.69573290282049827, -1.3058813168414272) +station = ('kvay', 0.0012453863729574033) +zone = ('njz019', 0.002303736870855166) + +[08056] +centroid = (0.69435601257360002, -1.3134523282437756) +station = ('kphl', 0.0014781379982001491) +zone = ('njz017', 0.0019121431514561363) + +[08057] +centroid = (0.69777666592129117, -1.3079725703511667) +station = ('kvay', 0.0016554146441336258) +zone = ('paz071', 0.0026196511710013283) + +[08059] +centroid = (0.69611441434169163, -1.3106073193899774) +station = ('kphl', 0.0019147083870057729) +zone = ('paz071', 0.0022205925887618812) + +[08060] +centroid = (0.69826673692195862, -1.3053332834563007) +station = ('kvay', 0.0014215925243452638) +zone = ('njz019', 0.00059232258875181742) + +[08061] +centroid = (0.69462123280673305, -1.3125811995075203) +station = ('kphl', 0.0012413216916661112) +zone = ('njz017', 0.001658801815864711) + +[08062] +centroid = (0.69317615254595932, -1.3128233988478195) +station = ('kphl', 0.0026352290641146691) +zone = ('njz017', 0.0010385359553539294) + +[08063] +centroid = (0.69581559652045777, -1.3122366366065916) +station = ('kphl', 0.00063924942750616571) +zone = ('paz071', 0.0025450517060001238) + +[08064] +centroid = (0.6974821241567245, -1.3027269134711277) +station = ('kwri', 0.001086949215940728) +zone = ('njz019', 0.0016050259066908313) + +[08065] +centroid = (0.69817734115767149, -1.3096125689828031) +station = ('kpne', 0.001430568511536218) +zone = ('paz071', 0.001320077465803637) + +[08066] +centroid = (0.69524019637266021, -1.3129830790210846) +station = ('kphl', 0.00056827374473494223) +zone = ('njz017', 0.0023490234436615268) + +[08067] +centroid = (0.69359183761390675, -1.3161816741280443) +station = ('kilg', 0.0028335980265878531) +zone = ('njz016', 0.0028074827030554294) + +[08068] +centroid = (0.69745845749206759, -1.3031632632374188) +station = ('kwri', 0.0013048723486210564) +zone = ('njz019', 0.0012904483402078402) + +[08069] +centroid = (0.69288276269869908, -1.3167667957597755) +station = ('kilg', 0.0021559160353470451) +zone = ('njz016', 0.002367570234840367) + +[08070] +centroid = (0.69148396856968819, -1.3179371611962853) +station = ('kilg', 0.0014422477775851777) +zone = ('dez001', 0.0019545199168009633) + +[08071] +centroid = (0.69345236835337987, -1.3113275469591053) +station = ('kphl', 0.0027062575940052041) +zone = ('njz017', 0.00027837189148221652) + +[08072] +centroid = (0.69017837502273383, -1.3163047023870176) +station = ('kilg', 0.0032409635727525402) +zone = ('njz016', 0.0012328556563558505) + +[08073] +centroid = (0.69829824011495722, -1.3066717939129477) +station = ('kvay', 0.0014033075091178643) +zone = ('njz019', 0.0015264593766284331) + +[08074] +centroid = (0.69317786296862627, -1.3118495051252066) +station = ('kphl', 0.0027889591053272952) +zone = ('njz017', 0.00028985744907524859) + +[08075] +centroid = (0.69864807391022687, -1.3081057040665089) +station = ('kpne', 0.001303323340169726) +zone = ('paz071', 0.0025005757043260884) + +[08077] +centroid = (0.6981345282311201, -1.3088508898439402) +station = ('kpne', 0.001489657035836874) +zone = ('paz071', 0.0019051057512577028) + +[08078] +centroid = (0.69554404074213994, -1.3103024976361166) +station = ('kphl', 0.0021398362595045697) +zone = ('njz018', 0.0017527116375860379) + +[08079] +centroid = (0.69014521376694593, -1.3165312461239265) +station = ('kilg', 0.0031346719503859192) +zone = ('njz016', 0.001394043884010678) + +[08080] +centroid = (0.6939131003693213, -1.3110426394120098) +station = ('kphl', 0.0024497859513889992) +zone = ('njz017', 0.00078845908410375687) + +[08081] +centroid = (0.69348151535188818, -1.3085915164638013) +station = ('kvay', 0.0039814991044454613) +zone = ('njz018', 0.0012465676931860676) + +[08083] +centroid = (0.69536126986287106, -1.3094959809887698) +station = ('kvay', 0.0030691828167797273) +zone = ('njz018', 0.0011293709653546744) + +[08084] +centroid = (0.69514643728524317, -1.3092667319915203) +station = ('kvay', 0.0030444231740862386) +zone = ('njz018', 0.00086459103584486674) + +[08085] +centroid = (0.69396261536020043, -1.3146528529697601) +station = ('kphl', 0.0022073310019325204) +zone = ('njz017', 0.0025616379819929018) + +[08086] +centroid = (0.69559542323531864, -1.3124646813266572) +station = ('kphl', 0.00050911905131442855) +zone = ('njz017', 0.0025158201640075946) + +[08087] +centroid = (0.69108118148491293, -1.2981865790484046) +station = ('kacy', 0.0035418899608941059) +zone = ('njz027', 0.003585550049591902) + +[08088] +centroid = (0.69553931089986709, -1.3036459689486426) +station = ('kvay', 0.0023563311609434701) +zone = ('njz019', 0.0024820833769530373) + +[08089] +centroid = (0.69320638164860382, -1.3059709220452245) +station = ('kvay', 0.0037628418056177598) +zone = ('njz018', 0.0023346177693183662) + +[08090] +centroid = (0.69462493290474725, -1.3116270105521626) +station = ('kphl', 0.0016181506377776946) +zone = ('njz017', 0.0014321444650209102) + +[08091] +centroid = (0.69476523992331507, -1.3076735954503) +station = ('kvay', 0.0025166730598341408) +zone = ('njz018', 0.00048244501898726707) + +[08092] +centroid = (0.6920505373514706, -1.2964501335223029) +station = ('kacy', 0.005191526599548876) +zone = ('njz026', 0.002862789527243087) + +[08093] +centroid = (0.69576927548210987, -1.3113959289591983) +station = ('kphl', 0.0012849373311225546) +zone = ('paz071', 0.0024955489476396497) + +[08094] +centroid = (0.69203329349846088, -1.3082864503638454) +station = ('kvay', 0.0052159488790045165) +zone = ('njz018', 0.0026740837611107593) + +[08095] +centroid = (0.69199128342336547, -1.3065720657994888) +station = ('kacy', 0.0048992946404512201) +zone = ('njz018', 0.0030227896901284523) + +[08096] +centroid = (0.6951097330110737, -1.3112076253862006) +station = ('kphl', 0.0015893248071492583) +zone = ('njz017', 0.0019229717687993403) + +[08097] +centroid = (0.69487449753448993, -1.3116257015552235) +station = ('kphl', 0.0014470183566369086) +zone = ('njz017', 0.0016809155815344671) + +[08098] +centroid = (0.69184039970953048, -1.3147538900801579) +station = ('kilg', 0.0036609549945275204) +zone = ('njz016', 0.00093856667233130158) + +[08102] +centroid = (0.6973036816940007, -1.3111087699373678) +station = ('kphl', 0.0021234317083075188) +zone = ('paz071', 0.0009757995415722603) + +[08103] +centroid = (0.69701179282989711, -1.3109852355329117) +station = ('kphl', 0.0020034079970814287) +zone = ('paz071', 0.0012804638417661721) + +[08104] +centroid = (0.69667321640830271, -1.310972285189862) +station = ('kphl', 0.0018285023432175608) +zone = ('paz071', 0.0016148651038604296) + +[08105] +centroid = (0.69729088843058351, -1.3105936709152268) +station = ('kphl', 0.0024114994722022045) +zone = ('paz071', 0.0011259968746231614) + +[08106] +centroid = (0.69622915228671778, -1.3102767714829422) +station = ('kphl', 0.0021846982405940999) +zone = ('njz018', 0.0021508186487495876) + +[08107] +centroid = (0.69652329262555646, -1.3104553884785912) +station = ('kphl', 0.0021306063037818861) +zone = ('paz071', 0.001866269840523046) + +[08108] +centroid = (0.69664237644042004, -1.3100591812850959) +station = ('kpne', 0.0030024851265576238) +zone = ('paz071', 0.0018928402473875443) + +[08109] +centroid = (0.69728156837237787, -1.3098718550964794) +station = ('kpne', 0.0023475766414869344) +zone = ('paz071', 0.0014893125422482268) + +[08110] +centroid = (0.69764114110487385, -1.3100070657536314) +station = ('kpne', 0.002021471869476133) +zone = ('paz071', 0.0011912719880137457) + +[08201] +centroid = (0.68807097721741328, -1.3001485560204489) +station = ('kacy', 0.0014309007611455335) +zone = ('njz025', 0.00084110620279853577) + +[08202] +centroid = (0.68234109618970085, -1.3043092464242783) +station = ('kwwd', 0.0028610387026618976) +zone = ('njz024', 0.00054703541450162191) + +[08203] +centroid = (0.68810700081317444, -1.2984016210655427) +station = ('kacy', 0.0026642701141078771) +zone = ('njz025', 0.0009019229437988997) + +[08204] +centroid = (0.68017378123115935, -1.3076177623675287) +station = ('kwwd', 0.0007976630625528378) +zone = ('njz024', 0.0029635713247944812) + +[08205] +centroid = (0.68909089527240119, -1.2994436524421533) +station = ('kacy', 0.0017810091396156674) +zone = ('njz025', 0.0015569309959484745) + +[08210] +centroid = (0.682801915472105, -1.3061046142659272) +station = ('kwwd', 0.0021458643230002896) +zone = ('njz024', 0.00096407424582650877) + +[08212] +centroid = (0.67951682184741624, -1.3081922549441152) +station = ('kwwd', 0.0015378045354788221) +zone = ('njz024', 0.0037507335013231276) + +[08215] +centroid = (0.69091486906049038, -1.3013812995244249) +station = ('kacy', 0.002108299096373297) +zone = ('njz022', 0.0024601249236348962) + +[08217] +centroid = (0.69069994921639977, -1.3041085335602989) +station = ('kacy', 0.0026274110006110703) +zone = ('njz022', 0.0014895577969938746) + +[08221] +centroid = (0.68667741907615842, -1.301510331716025) +station = ('kacy', 0.0021522442584729208) +zone = ('njz025', 0.0019082988894232708) + +[08223] +centroid = (0.68554351356772281, -1.3029878227410083) +station = ('kacy', 0.003422022103127201) +zone = ('njz023', 0.0028746780567720509) + +[08224] +centroid = (0.69118316107310696, -1.2997006696278022) +station = ('kacy', 0.0028294720934229755) +zone = ('njz027', 0.0028375456802184193) + +[08225] +centroid = (0.68700814151611878, -1.3008101928865874) +station = ('kacy', 0.0019478014025886582) +zone = ('njz025', 0.0012769510777096596) + +[08226] +centroid = (0.68527902637287552, -1.3020959943998243) +station = ('kacy', 0.0035558551405695587) +zone = ('njz025', 0.0031233922035757986) + +[08230] +centroid = (0.68433056209746412, -1.3040871707302546) +station = ('kwwd', 0.0042995175779321675) +zone = ('njz023', 0.001516633813820559) + +[08232] +centroid = (0.68744199546157947, -1.3005355129689087) +station = ('kacy', 0.0016588417218801887) +zone = ('njz025', 0.00095434143638559014) + +[08234] +centroid = (0.68745714491948684, -1.3023773938351233) +station = ('kacy', 0.0014561834068881495) +zone = ('njz022', 0.0020629480520334771) + +[08240] +centroid = (0.68919664477177955, -1.3008632334425556) +station = ('kacy', 0.0007626201191586455) +zone = ('njz025', 0.0020487267647584756) + +[08241] +centroid = (0.6900051161878884, -1.2998685353952588) +station = ('kacy', 0.0018569219476384825) +zone = ('njz025', 0.0025053738622801153) + +[08242] +centroid = (0.68100262063963901, -1.3070579654632439) +station = ('kwwd', 0.00037793071823044594) +zone = ('njz024', 0.0020754239002880497) + +[08243] +centroid = (0.68331408234110269, -1.3036967056699984) +station = ('kwwd', 0.0037959724500116645) +zone = ('njz024', 0.001411892330986801) + +[08244] +centroid = (0.68624545008628979, -1.3018141760855046) +station = ('kacy', 0.002578754591429254) +zone = ('njz025', 0.002329825446144167) + +[08246] +centroid = (0.68383684335866002, -1.3049094826073315) +station = ('kwwd', 0.0035211081723220431) +zone = ('njz023', 0.00077316641017362298) + +[08247] +centroid = (0.68159063951792842, -1.305220535186622) +station = ('kwwd', 0.0019076498791396784) +zone = ('njz024', 0.00076626925327859252) + +[08248] +centroid = (0.68409326713236307, -1.3030137234271078) +station = ('kwwd', 0.004702018808848081) +zone = ('njz024', 0.0023411247718700657) + +[08251] +centroid = (0.68116212627997874, -1.3077667262191863) +station = ('kwwd', 0.00025986566242756763) +zone = ('njz024', 0.0024403880510403173) + +[08260] +centroid = (0.68058965828532458, -1.3061599761098004) +station = ('kwwd', 0.0011394372054936337) +zone = ('njz024', 0.0019635600242075254) + +[08270] +centroid = (0.68541730880951102, -1.3052606253995405) +station = ('kmiv', 0.0043455376711371676) +zone = ('njz023', 0.0017263149478842076) + +[08302] +centroid = (0.68833364926983831, -1.3135460698779002) +station = ('kmiv', 0.0027009258671275996) +zone = ('njz021', 0.0023289810075051822) + +[08310] +centroid = (0.68995212799179784, -1.307192669974913) +station = ('kmiv', 0.0038200628796797036) +zone = ('njz022', 0.0027726443580103981) + +[08311] +centroid = (0.68640074948313223, -1.3125580215350539) +station = ('kmiv', 0.0017642487339653448) +zone = ('njz021', 0.001499484120750358) + +[08312] +centroid = (0.69226313590765598, -1.3103496564325054) +station = ('kphl', 0.0041124693905156915) +zone = ('njz017', 0.001273299702607602) + +[08314] +centroid = (0.684550491036508, -1.3079561642561981) +station = ('kmiv', 0.0031807257026506006) +zone = ('njz023', 0.0017751754914324912) + +[08316] +centroid = (0.68538262911727388, -1.3081188463957765) +station = ('kmiv', 0.0024759798631642264) +zone = ('njz023', 0.0023595691830823437) + +[08317] +centroid = (0.68767173315101959, -1.3060234913622946) +station = ('kmiv', 0.0034735065131921029) +zone = ('njz022', 0.0023726250095989936) + +[08318] +centroid = (0.69041259820835144, -1.3120986857825139) +station = ('kmiv', 0.0035689407526828206) +zone = ('njz017', 0.002826356735759648) + +[08319] +centroid = (0.68714326490680822, -1.3056950553036542) +station = ('kmiv', 0.003677607706203) +zone = ('njz022', 0.0025942038745020856) + +[08320] +centroid = (0.68739932216136834, -1.31179993777445) +station = ('kmiv', 0.0010908500817446165) +zone = ('njz021', 0.00071321667142369488) + +[08321] +centroid = (0.68458089467207772, -1.311495709432535) +station = ('kmiv', 0.0026245887884677487) +zone = ('njz021', 0.0026546242724498842) + +[08322] +centroid = (0.69133572030302382, -1.3098505271730201) +station = ('kmiv', 0.0042829478466632851) +zone = ('njz017', 0.0022422831057291349) + +[08323] +centroid = (0.68759467686454401, -1.3154119141147449) +station = ('kmiv', 0.003868850272951605) +zone = ('njz016', 0.0033450404265780182) + +[08324] +centroid = (0.68442433863817387, -1.3089378072406896) +station = ('kmiv', 0.0029006670781329975) +zone = ('njz023', 0.0024432456954565059) + +[08326] +centroid = (0.6900625549735715, -1.3077450666831694) +station = ('kmiv', 0.0036434440732138543) +zone = ('njz021', 0.0037684127431564895) + +[08327] +centroid = (0.68506876655788773, -1.3083476939672978) +station = ('kmiv', 0.0025857753562497235) +zone = ('njz023', 0.0023002752061174166) + +[08328] +centroid = (0.69077271199291546, -1.3100220930384909) +station = ('kmiv', 0.0037095938383292877) +zone = ('njz017', 0.002670090340030943) + +[08329] +centroid = (0.68549525521390509, -1.3091305963098649) +station = ('kmiv', 0.0018838578484858277) +zone = ('njz021', 0.0021913827552456498) + +[08330] +centroid = (0.68909000515448271, -1.3044133378608671) +station = ('kacy', 0.0020924291819732202) +zone = ('njz022', 0.00055669201657248103) + +[08332] +centroid = (0.68725901514280041, -1.3094048922551085) +station = ('kmiv', 0.00082899793138525597) +zone = ('njz021', 0.0011690024731160732) + +[08340] +centroid = (0.6883097731656711, -1.3068414399162416) +station = ('kmiv', 0.0030493246707289615) +zone = ('njz022', 0.002584169546498575) + +[08341] +centroid = (0.6898487870467872, -1.3081769833131602) +station = ('kmiv', 0.0032805906242488257) +zone = ('njz021', 0.0033913268648805214) + +[08343] +centroid = (0.6917842175609088, -1.3119222329951374) +station = ('kphl', 0.0041159773813232289) +zone = ('njz017', 0.0014550099328323241) + +[08344] +centroid = (0.69048270808440415, -1.3087532386722911) +station = ('kmiv', 0.0036484389535296666) +zone = ('njz017', 0.0034291858018725405) + +[08345] +centroid = (0.68551352881117344, -1.3118856159874304) +station = ('kmiv', 0.0019179286863857195) +zone = ('njz021', 0.0018434949763078247) + +[08346] +centroid = (0.69053943128509399, -1.3064494913261213) +station = ('kmiv', 0.004639684387352027) +zone = ('njz022', 0.002474119688822191) + +[08348] +centroid = (0.68608775958837209, -1.3084971639644387) +station = ('kmiv', 0.0018068962850390853) +zone = ('njz021', 0.0021743010002292116) + +[08349] +centroid = (0.68545825423376283, -1.3102414809254668) +station = ('kmiv', 0.0016278139918496912) +zone = ('njz021', 0.0018153468309580624) + +[08350] +centroid = (0.68919345081924843, -1.3069377995442442) +station = ('kmiv', 0.0034410945969352495) +zone = ('njz022', 0.0024844949939181195) + +[08352] +centroid = (0.68898149803488618, -1.3112306113724495) +station = ('kmiv', 0.0019964591448534694) +zone = ('njz021', 0.0018008578689739231) + +[08353] +centroid = (0.68874634982476501, -1.314102376123681) +station = ('kmiv', 0.0032771462916927987) +zone = ('njz016', 0.0022959940072641285) + +[08360] +centroid = (0.68932693360044095, -1.3091481717754323) +station = ('kmiv', 0.0024639686940275524) +zone = ('njz021', 0.002529424886314878) + +[08361] +centroid = (0.68852137688418291, -1.3082783345828235) +station = ('kmiv', 0.0022141583376701001) +zone = ('njz021', 0.0024296878704255648) + +[08401] +centroid = (0.68726348318568553, -1.299416512572285) +station = ('kacy', 0.0023690344339997432) +zone = ('njz025', 0.00028687107369788841) + +[08402] +centroid = (0.68637490115691024, -1.3003483613132174) +station = ('kacy', 0.0026694269285817084) +zone = ('njz025', 0.001414284269150957) + +[08403] +centroid = (0.68624044099133652, -1.3010292491610054) +station = ('kacy', 0.0026381684381194368) +zone = ('njz025', 0.0018590693903960693) + +[08406] +centroid = (0.68663975487090034, -1.2999362716235288) +station = ('kacy', 0.0025840826527471533) +zone = ('njz025', 0.0010211792367844138) + +[08501] +centroid = (0.70095405527783938, -1.3013521001660391) +station = ('kwri', 0.0025818601509590535) +zone = ('njz015', 0.0028214147330021012) + +[08502] +centroid = (0.70595456321114325, -1.3029449050947017) +station = ('ksmq', 0.0029453880581229472) +zone = ('njz010', 0.0020743271057389379) + +[08505] +centroid = (0.69992984371289146, -1.3043448511410189) +station = ('kwri', 0.0023345094158785957) +zone = ('njz019', 0.0020842312280810221) + +[08510] +centroid = (0.70147637996308376, -1.2988230657200217) +station = ('knel', 0.003070840876936307) +zone = ('njz013', 0.002389729112633058) + +[08511] +centroid = (0.6988713538814344, -1.3012657761812354) +station = ('kwri', 0.00072873683973733838) +zone = ('njz019', 0.0028569150578844522) + +[08512] +centroid = (0.70379279839962305, -1.3007158054806396) +station = ('kttn', 0.0039407629909502624) +zone = ('njz015', 0.0024494312227418321) + +[08514] +centroid = (0.70047614922205825, -1.3001269488443092) +station = ('kwri', 0.0025111211130214232) +zone = ('njz015', 0.0038175742989146233) + +[08515] +centroid = (0.70023031959691484, -1.3029492160579541) +station = ('kwri', 0.0019437948285439815) +zone = ('njz019', 0.0027370123427293493) + +[08518] +centroid = (0.70014629944672391, -1.3055427229665402) +station = ('kttn', 0.0029369381947272444) +zone = ('njz019', 0.0023540689612729241) + +[08520] +centroid = (0.70258691551283514, -1.3007952528681905) +station = ('kttn', 0.0038478459864391967) +zone = ('njz015', 0.0023346970576990536) + +[08525] +centroid = (0.70507196766170221, -1.3051469521053578) +station = ('kttn', 0.0020558000820462682) +zone = ('njz015', 0.0022488408048166523) + +[08527] +centroid = (0.70002686656600988, -1.2977845773617926) +station = ('knel', 0.0014225245303179383) +zone = ('njz013', 0.0029311447770679023) + +[08528] +centroid = (0.70488783542561684, -1.3023459430020023) +station = ('kttn', 0.0031938659588561292) +zone = ('njz015', 0.0021186842887126914) + +[08530] +centroid = (0.70460137453548699, -1.3073998231038322) +station = ('kttn', 0.0019537484021199007) +zone = ('njz015', 0.0031482734002938276) + +[08533] +centroid = (0.6993714256187159, -1.3002727536500207) +station = ('kwri', 0.0016372329231933906) +zone = ('njz020', 0.0036744953797873711) + +[08534] +centroid = (0.70388119932623661, -1.3053804247993972) +station = ('kttn', 0.00086490417241130843) +zone = ('njz015', 0.0014575034293627304) + +[08535] +centroid = (0.70239560997352402, -1.2990851443605014) +station = ('knel', 0.0039912590016301409) +zone = ('njz013', 0.0022893804878654886) + +[08536] +centroid = (0.70393118555601375, -1.3016846901082992) +station = ('kttn', 0.0032503931593470263) +zone = ('njz015', 0.0018169962060824915) + +[08540] +centroid = (0.70446742051539646, -1.3029811555832655) +station = ('kttn', 0.0025579685888181222) +zone = ('njz015', 0.0015208648760127975) + +[08542] +centroid = (0.70429119462082257, -1.3030692074440287) +station = ('kttn', 0.0024085331397821212) +zone = ('njz015', 0.0013325927779728258) + +[08550] +centroid = (0.70302132796365657, -1.3022717141489148) +station = ('kttn', 0.0026900503682829192) +zone = ('njz015', 0.001157375431468013) + +[08551] +centroid = (0.7058317443916805, -1.3062888163151827) +station = ('kttn', 0.0027802977002846065) +zone = ('njz009', 0.0023746999459900993) + +[08553] +centroid = (0.70511907409821351, -1.3026949390392311) +station = ('kttn', 0.0031243823054012149) +zone = ('njz015', 0.0022059589816108799) + +[08554] +centroid = (0.70017752338704198, -1.3051195853426867) +station = ('kttn', 0.002945105614751295) +zone = ('njz019', 0.0023240453250110331) + +[08555] +centroid = (0.70194151020874018, -1.299760516967853) +station = ('knel', 0.0038276404513927836) +zone = ('njz015', 0.0032759966365997653) + +[08558] +centroid = (0.70535408268199462, -1.3038212523654207) +station = ('kttn', 0.0027301466223614468) +zone = ('njz015', 0.0022780125435766007) + +[08559] +centroid = (0.70562307282631187, -1.3086315543168423) +station = ('kdyl', 0.0024794635621787344) +zone = ('paz069', 0.0023388474829069005) + +[08560] +centroid = (0.70364222884505356, -1.3065059876340084) +station = ('kttn', 0.00078227553692513968) +zone = ('njz015', 0.0021494616998296743) + +[08561] +centroid = (0.70249395927687386, -1.3016384388831215) +station = ('kttn', 0.0032263776069472176) +zone = ('njz015', 0.0017398695316701248) + +[08562] +centroid = (0.6992130544423899, -1.3018738663459228) +station = ('kwri', 0.00079788097855374406) +zone = ('njz019', 0.0025858005577021823) + +[08608] +centroid = (0.70195915548747778, -1.3049437608738408) +station = ('kttn', 0.0012935873917497341) +zone = ('njz015', 0.0014237610624664423) + +[08609] +centroid = (0.70207172922423144, -1.304474895623585) +station = ('kttn', 0.0014242609112789986) +zone = ('njz015', 0.0011333610641302316) + +[08610] +centroid = (0.70146831654193942, -1.304050728255473) +station = ('kttn', 0.0020891666134878035) +zone = ('njz015', 0.0016204443558271589) + +[08611] +centroid = (0.70133638710378121, -1.3044646505408757) +station = ('kttn', 0.0020159053610115311) +zone = ('njz015', 0.0018150871513956997) + +[08618] +centroid = (0.70248362692770216, -1.305331276327661) +station = ('kttn', 0.00069154446575838649) +zone = ('njz015', 0.0013188840591902137) + +[08619] +centroid = (0.70236065102860656, -1.3036982590130326) +station = ('kttn', 0.0017544686339826985) +zone = ('njz015', 0.00071877401792008993) + +[08620] +centroid = (0.70109959828416313, -1.3029105919216075) +station = ('kwri', 0.0027631723313936768) +zone = ('njz015', 0.0020868399731824006) + +[08628] +centroid = (0.70274666549927012, -1.3059783396945452) +station = ('kttn', 0.00035790454329694864) +zone = ('njz015', 0.0017039833652333764) + +[08629] +centroid = (0.70198310140481524, -1.3043055114196789) +station = ('kttn', 0.0015786829380790776) +zone = ('njz015', 0.0011625104636027784) + +[08638] +centroid = (0.70256515125706276, -1.3048672281861409) +station = ('kttn', 0.00087479546020762064) +zone = ('njz015', 0.00096973853316225354) + +[08640] +centroid = (0.69820877453749985, -1.3018632372907781) +station = ('kwri', 0.00024359621945971063) +zone = ('njz019', 0.0022443987318436797) + +[08641] +centroid = (0.69848572338320625, -1.3018441957486389) +station = ('kwri', 0.00014567632031451969) +zone = ('njz019', 0.0023163574760916707) + +[08648] +centroid = (0.70309381148749195, -1.3040746916261026) +station = ('kttn', 0.0013141032994842014) +zone = ('njz015', 0.00022007014830852082) + +[08690] +centroid = (0.70205005223492167, -1.3030676890075796) +station = ('kttn', 0.0023224004105993237) +zone = ('njz015', 0.0011638277702848028) + +[08691] +centroid = (0.70177743180576024, -1.3019121065098342) +station = ('kttn', 0.0032375616311672139) +zone = ('njz015', 0.0019326333091343065) + +[08701] +centroid = (0.69947631990676085, -1.2950409895908277) +station = ('knel', 0.0017306504526275566) +zone = ('njz020', 0.0031213638807658746) + +[08720] +centroid = (0.70049428319298646, -1.2932549418073842) +station = ('kblm', 0.00096040678577221001) +zone = ('njz014', 0.0022904420958903431) + +[08721] +centroid = (0.69643440300675241, -1.2942112775177221) +station = ('knel', 0.0031616631233621429) +zone = ('njz026', 0.0019916934236487026) + +[08722] +centroid = (0.69688213231976648, -1.2950725102371188) +station = ('knel', 0.0023869996011521817) +zone = ('njz020', 0.001450820772055942) + +[08723] +centroid = (0.69880511863632133, -1.2934914339210295) +station = ('kblm', 0.0025429541289647257) +zone = ('njz020', 0.0033737855190582632) + +[08724] +centroid = (0.69963678547818919, -1.2934783439516395) +station = ('kblm', 0.0017210357396925484) +zone = ('njz014', 0.0031504240873920101) + +[08730] +centroid = (0.69996537861646202, -1.2926389278478929) +station = ('kblm', 0.0016591827307826366) +zone = ('njz014', 0.0026662634209025041) + +[08731] +centroid = (0.69579034160618147, -1.2961343336474469) +station = ('knel', 0.0030099504226627364) +zone = ('njz020', 0.001121490471471252) + +[08732] +centroid = (0.69711577954673098, -1.2940536742862672) +station = ('knel', 0.0028098902097180222) +zone = ('njz026', 0.0026813614886659382) + +[08733] +centroid = (0.69854700189324381, -1.2971428197958343) +station = ('knel', 0.00017543871190353133) +zone = ('njz020', 0.0018330890873348646) + +[08734] +centroid = (0.69573632366583216, -1.2945467297999556) +station = ('knel', 0.0035506216787804519) +zone = ('njz026', 0.0012910464630829671) + +[08735] +centroid = (0.69781843165029134, -1.2927761805402695) +station = ('knel', 0.0034088855518939485) +zone = ('njz026', 0.0035972501903947392) + +[08736] +centroid = (0.70022641005939046, -1.2924731564755385) +station = ('kblm', 0.0015369752435046217) +zone = ('njz014', 0.0023891882067953677) + +[08738] +centroid = (0.69852830941695498, -1.2925740888661812) +station = ('kblm', 0.0029734463524190256) +zone = ('njz014', 0.0040852560203221977) + +[08740] +centroid = (0.69686930414976433, -1.2938549685509275) +station = ('knel', 0.0030776724696616811) +zone = ('njz026', 0.0024585632096576584) + +[08741] +centroid = (0.69703416795090778, -1.2944571420494506) +station = ('knel', 0.0026133649017910233) +zone = ('njz020', 0.0019391691133329827) + +[08742] +centroid = (0.69954164758066295, -1.2925755723960455) +station = ('kblm', 0.0020454950592878047) +zone = ('njz014', 0.0030783218263800926) + +[08750] +centroid = (0.70044970748389057, -1.2922717105732733) +station = ('kblm', 0.0015069925652808945) +zone = ('njz014', 0.0021509736637198001) + +[08751] +centroid = (0.69729231960057014, -1.2930821542114368) +station = ('knel', 0.0033699191461696817) +zone = ('njz026', 0.0030225181432116596) + +[08752] +centroid = (0.69538280722584078, -1.2931743599558199) +station = ('knel', 0.0044740994274543363) +zone = ('njz026', 0.0013359233465309371) + +[08753] +centroid = (0.69776572270688109, -1.2943436607414858) +station = ('knel', 0.0022936734862907954) +zone = ('njz020', 0.0022569375837216605) + +[08755] +centroid = (0.69827900658660014, -1.2954162528332991) +station = ('knel', 0.0013392869149792546) +zone = ('njz020', 0.0019538705187519181) + +[08757] +centroid = (0.69712633878870556, -1.2959256795353709) +station = ('knel', 0.0018133976857160035) +zone = ('njz020', 0.00088612384453070259) + +[08758] +centroid = (0.69447281000714334, -1.2954418219068407) +station = ('knel', 0.0044208502720686988) +zone = ('njz026', 0.00078690555318974224) + +[08759] +centroid = (0.69771128588751141, -1.2976783915301013) +station = ('knel', 0.0011050757319646053) +zone = ('njz020', 0.0011370728415480574) + +[08801] +centroid = (0.70900150665939732, -1.3070129185152501) +station = ('ksmq', 0.0029119559087563327) +zone = ('njz009', 0.0010295580300528386) + +[08802] +centroid = (0.70984334877080435, -1.3093108015551334) +station = ('kdyl', 0.0060376339606439131) +zone = ('njz009', 0.0022899993225728808) + +[08804] +centroid = (0.70941795967221577, -1.3106674808892935) +station = ('kukt', 0.0052944194842349419) +zone = ('njz009', 0.0027981332011505359) + +[08805] +centroid = (0.70814769158932178, -1.3009249133783212) +station = ('ksmq', 0.001867563582533402) +zone = ('njz010', 0.0010596195963367308) + +[08807] +centroid = (0.70846836093279064, -1.3023528719591326) +station = ('ksmq', 0.00075842781691311473) +zone = ('njz010', 0.0004998480916606436) + +[08808] +centroid = (0.71090977985035786, -1.3098526564747075) +station = ('k12n', 0.0064822969236397882) +zone = ('njz007', 0.0022919069745259528) + +[08809] +centroid = (0.70950831536759151, -1.3078486170676902) +station = ('ksmq', 0.0035963135749376282) +zone = ('njz009', 0.0015053542998242587) + +[08810] +centroid = (0.70455953899331669, -1.3001135272623614) +station = ('kttn', 0.0045797420150968191) +zone = ('njz012', 0.0016318588560096795) + +[08812] +centroid = (0.70858152808149, -1.299900160761305) +station = ('ksmq', 0.0025089788540797915) +zone = ('njz107', 0.0019917773103586252) + +[08816] +centroid = (0.70562124023059736, -1.2988092252590535) +station = ('ksmq', 0.0046635799750925676) +zone = ('njz012', 0.00019127685956489465) + +[08817] +centroid = (0.7071141774194607, -1.2984046055785636) +station = ('kewr', 0.0042037149853586826) +zone = ('njz012', 0.0013355295556865326) + +[08820] +centroid = (0.7081988646429902, -1.2979271882149732) +station = ('kewr', 0.0032265612993529471) +zone = ('njz107', 0.0015706474119775908) + +[08821] +centroid = (0.7072081983062658, -1.3035107059316131) +station = ('ksmq', 0.0017050674275136859) +zone = ('njz010', 0.0011945167500645038) + +[08822] +centroid = (0.70729680867238953, -1.3066455092544127) +station = ('ksmq', 0.0030798836659567249) +zone = ('njz009', 0.00096350199647050612) + +[08823] +centroid = (0.7058109749735817, -1.3014746920926992) +station = ('ksmq', 0.0033446933195905712) +zone = ('njz010', 0.0022485198136812461) + +[08824] +centroid = (0.70549849122430464, -1.3011994536696596) +station = ('ksmq', 0.003714593083044334) +zone = ('njz012', 0.0019097322444581138) + +[08825] +centroid = (0.70710593946539146, -1.3094711449535139) +station = ('kdyl', 0.0033730274190429594) +zone = ('njz009', 0.0017825330707921549) + +[08826] +centroid = (0.71068510361574866, -1.3071950959825731) +station = ('ksmq', 0.0035333509783877872) +zone = ('njz009', 0.0026618607626229737) + +[08827] +centroid = (0.70980130378912376, -1.3084399171649732) +station = ('ksmq', 0.0040934676457586661) +zone = ('njz009', 0.0019181857034972964) + +[08828] +centroid = (0.70472948170258343, -1.2989275411290464) +station = ('kblm', 0.0051408846691600382) +zone = ('njz012', 0.0010825482699416814) + +[08829] +centroid = (0.70981826838945317, -1.3070866412228543) +station = ('ksmq', 0.0031054671432187886) +zone = ('njz009', 0.0018101457369183377) + +[08830] +centroid = (0.70807224100575794, -1.2970393392244837) +station = ('kewr', 0.0027925439549277239) +zone = ('njz108', 0.0017511566832544108) + +[08831] +centroid = (0.70370757397224815, -1.2990276357616481) +station = ('kblm', 0.0045974451450818757) +zone = ('njz012', 0.0021059971052313485) + +[08832] +centroid = (0.70715857859563147, -1.2968980373682419) +station = ('kewr', 0.0034431108759906959) +zone = ('njz012', 0.0019414341259874162) + +[08833] +centroid = (0.70939853415764098, -1.3057900884814253) +station = ('ksmq', 0.0020445547444059324) +zone = ('njz009', 0.0018678879140627228) + +[08835] +centroid = (0.70757862698670904, -1.3018284005189085) +station = ('ksmq', 0.0016685972550669664) +zone = ('njz010', 0.00053077887013427429) + +[08836] +centroid = (0.70854042557760555, -1.3012707154630188) +station = ('ksmq', 0.0014915484400220703) +zone = ('njz010', 0.00096772643208492526) + +[08837] +centroid = (0.70708707245617741, -1.2975488880996033) +station = ('kewr', 0.0037887306584960686) +zone = ('njz012', 0.0015656834343066098) + +[08840] +centroid = (0.70761126464372126, -1.2978090468779055) +station = ('kewr', 0.0035326189118517867) +zone = ('njz012', 0.0019391960391337074) + +[08844] +centroid = (0.70681806485856746, -1.3032461663768886) +station = ('ksmq', 0.0020771233407303712) +zone = ('njz010', 0.0013580420276942098) + +[08846] +centroid = (0.70816083391858931, -1.3002399065534984) +station = ('ksmq', 0.0023493618501026709) +zone = ('njz010', 0.0015765526135203304) + +[08848] +centroid = (0.70850359913038841, -1.3106839567974324) +station = ('kdyl', 0.0045618769910771425) +zone = ('njz009', 0.0024890276482070779) + +[08850] +centroid = (0.70594939703655735, -1.2992070032488754) +station = ('ksmq', 0.0042176293702997567) +zone = ('njz012', 0.00039781223652977894) + +[08852] +centroid = (0.70490841285749783, -1.3011363774704927) +station = ('kttn', 0.0039971039287046879) +zone = ('njz012', 0.0020432390211142936) + +[08853] +centroid = (0.70738077646270292, -1.304499469859453) +station = ('ksmq', 0.0018158432344241033) +zone = ('njz010', 0.001772107284195343) + +[08854] +centroid = (0.70765491532831371, -1.2995864203749667) +station = ('ksmq', 0.0029970357630404831) +zone = ('njz012', 0.0019672735144614165) + +[08857] +centroid = (0.70498716211334789, -1.2973101619645158) +station = ('kblm', 0.0044996985472013345) +zone = ('njz012', 0.0013481639738798078) + +[08858] +centroid = (0.71004489939282456, -1.3044073688348252) +station = ('ksmq', 0.0014804038566980419) +zone = ('njz010', 0.0026197069799986697) + +[08859] +centroid = (0.70614010916392278, -1.296827944945482) +station = ('kewr', 0.0043135261882818717) +zone = ('njz012', 0.0014809081508049776) + +[08861] +centroid = (0.70721603483460715, -1.2963074004960746) +station = ('kewr', 0.003171871310092392) +zone = ('nyz074', 0.001871738451485057) + +[08863] +centroid = (0.7073415938209956, -1.2970629011693857) +station = ('kewr', 0.0033626020462496392) +zone = ('njz012', 0.0019917743470318884) + +[08865] +centroid = (0.71049252398608354, -1.3115638645398253) +station = ('kabe', 0.0041363199021660991) +zone = ('paz062', 0.0022678059266686475) + +[08867] +centroid = (0.70815432384047938, -1.3084062672169947) +station = ('kdyl', 0.0046557845091874071) +zone = ('njz009', 0.00072455027122697655) + +[08869] +centroid = (0.70811720068728945, -1.3028274444360424) +station = ('ksmq', 0.00082196524721733734) +zone = ('njz010', 0.00042672914187438327) + +[08872] +centroid = (0.70588680952958083, -1.2977724473234913) +station = ('kewr', 0.004874492396973862) +zone = ('njz012', 0.00072792590492545481) + +[08873] +centroid = (0.70679933747569357, -1.3008289551760464) +station = ('ksmq', 0.002752885653764729) +zone = ('njz010', 0.0016189640833303251) + +[08876] +centroid = (0.70842135921603444, -1.3035063251551908) +station = ('ksmq', 0.00053443242462064609) +zone = ('njz010', 0.0010212599916873395) + +[08879] +centroid = (0.70626147936010641, -1.2963939164670961) +station = ('kewr', 0.0040729471979250483) +zone = ('njz012', 0.0018306250149388572) + +[08880] +centroid = (0.70779989982927682, -1.3007494728819107) +station = ('ksmq', 0.0021454796672916855) +zone = ('njz010', 0.0011903138765989058) + +[08882] +centroid = (0.70590979551582966, -1.2981490021096092) +station = ('kewr', 0.0050093964326133177) +zone = ('njz012', 0.00044966580456564336) + +[08884] +centroid = (0.70503774175507061, -1.298351983901616) +station = ('kblm', 0.0050418893314734189) +zone = ('njz012', 0.00081333268053942662) + +[08886] +centroid = (0.7101308743117779, -1.3107619381084115) +station = ('kukt', 0.0057670130724790372) +zone = ('njz007', 0.0032691109753469456) + +[08887] +centroid = (0.70724614176420408, -1.3054423839878431) +station = ('ksmq', 0.0023817761663083485) +zone = ('njz009', 0.0017267458058876329) + +[08889] +centroid = (0.70876112246152023, -1.3047071989470254) +station = ('ksmq', 0.0011676122445673106) +zone = ('njz010', 0.0019918048319133952) + +[08890] +centroid = (0.70753970614438955, -1.3015866724175071) +station = ('ksmq', 0.0018162136287582749) +zone = ('njz010', 0.00069218204832846011) + +[08901] +centroid = (0.70657277628549209, -1.2992660302841779) +station = ('ksmq', 0.0037724673468926672) +zone = ('njz012', 0.00087598526120065228) + +[08902] +centroid = (0.70579701233956582, -1.2999976199467365) +station = ('ksmq', 0.0039297356363277329) +zone = ('njz012', 0.00097073178074937397) + +[08904] +centroid = (0.70687222242525671, -1.2990121023313053) +station = ('ksmq', 0.0037566895726379229) +zone = ('njz012', 0.0010940072604667588) + +[10001] +centroid = (0.71123339880026271, -1.2914961909734421) +station = ('knyc', 0.00069908498456741023) +zone = ('nyz072', 0.00063494762368133007) + +[10002] +centroid = (0.71062410435839141, -1.2913038033299948) +station = ('knyc', 0.0012074555977614127) +zone = ('nyz072', 0.0011274169426626951) + +[10003] +centroid = (0.71090452640930935, -1.2913548193040307) +station = ('knyc', 0.00094691784550294741) +zone = ('nyz072', 0.00086964217053133017) + +[10004] +centroid = (0.71015056162574042, -1.2918620643445375) +station = ('knyc', 0.0017880961988231087) +zone = ('njz006', 0.0012041361767898015) + +[10005] +centroid = (0.71045327153120619, -1.2916966769446188) +station = ('knyc', 0.0014604441697489098) +zone = ('njz006', 0.0010955550519921669) + +[10006] +centroid = (0.71051680151597885, -1.291769736427107) +station = ('knyc', 0.0014247992610694385) +zone = ('njz006', 0.0010143727175536566) + +[10007] +centroid = (0.71059097800918869, -1.2916798868772146) +station = ('knyc', 0.0013288972700737363) +zone = ('njz006', 0.001036357489211716) + +[10009] +centroid = (0.71080991211055877, -1.2911707743344076) +station = ('knyc', 0.0010060580943281525) +zone = ('nyz072', 0.00092494622325693481) + +[10010] +centroid = (0.7110304693681333, -1.2912335363743095) +station = ('knyc', 0.00079989699272244182) +zone = ('nyz072', 0.00072101309643748794) + +[10011] +centroid = (0.71108207875411478, -1.2915540137315609) +station = ('knyc', 0.0008494265412782745) +zone = ('nyz072', 0.00078176610074950643) + +[10012] +centroid = (0.71079547823764477, -1.2915101012475807) +station = ('knyc', 0.0010901689700606291) +zone = ('nyz072', 0.0010151845049783013) + +[10013] +centroid = (0.71069993891439065, -1.2916296563013423) +station = ('knyc', 0.0012139366039322511) +zone = ('njz006', 0.0010267619554859653) + +[10014] +centroid = (0.71093714661302909, -1.2916663954820968) +station = ('knyc', 0.001017479108445694) +zone = ('njz006', 0.00094056625412706563) + +[10016] +centroid = (0.71113824344944399, -1.291164805308366) +station = ('knyc', 0.00068272984425855475) +zone = ('nyz072', 0.00060309271872463965) + +[10017] +centroid = (0.71126263306523363, -1.2910622323082261) +station = ('knyc', 0.00054612899956406813) +zone = ('nyz072', 0.000464829241198391) + +[10018] +centroid = (0.71131467878352816, -1.2914236899963143) +station = ('knyc', 0.00060101901203107899) +zone = ('nyz072', 0.00053744482857881579) + +[10019] +centroid = (0.71149731003645678, -1.2913179230436433) +station = ('knyc', 0.00040794837953372936) +zone = ('nyz072', 0.00035194239096304351) + +[10020] +centroid = (0.71136541550488352, -1.2911742126330341) +station = ('knyc', 0.00046661768778348604) +zone = ('nyz072', 0.00039102258461806455) + +[10021] +centroid = (0.71155605781907894, -1.2908216037642537) +station = ('knyc', 0.00026922789924735765) +zone = ('nyz072', 0.00019486257355103673) + +[10022] +centroid = (0.71137098310519742, -1.2909819471626345) +station = ('knyc', 0.00043273071092805057) +zone = ('nyz072', 0.00035028410251696158) + +[10023] +centroid = (0.7116740769830987, -1.2912400813590046) +station = ('knyc', 0.00024722057462521577) +zone = ('nyz072', 0.00021795394540431945) + +[10024] +centroid = (0.71206731711686555, -1.2910970865333886) +station = ('knyc', 0.00028303307873180225) +zone = ('nyz072', 0.00036192115480482127) + +[10025] +centroid = (0.71206991765745098, -1.2909611079313656) +station = ('knyc', 0.00026647167729189504) +zone = ('nyz072', 0.00034908708767659682) + +[10026] +centroid = (0.71213587364988395, -1.2907177741270526) +station = ('knyc', 0.00038034000434973629) +zone = ('nyz072', 0.00045343320969531818) + +[10027] +centroid = (0.71230061527797961, -1.2907272512648911) +station = ('knyc', 0.00052794187318483952) +zone = ('nyz072', 0.00060573646144750375) + +[10028] +centroid = (0.71168289089582137, -1.2907319462005789) +station = ('knyc', 0.00021176843869753889) +zone = ('nyz072', 0.00017604506947526907) + +[10029] +centroid = (0.71194943757918583, -1.2905640978864146) +station = ('knyc', 0.0003346873825364479) +zone = ('nyz072', 0.00037635931693706415) + +[10030] +centroid = (0.71241315410814821, -1.2905462955280442) +station = ('knyc', 0.00068608043821057421) +zone = ('nyz072', 0.00075953680471193988) + +[10031] +centroid = (0.71253579839468584, -1.290671959234188) +station = ('knyc', 0.00076452340307096931) +zone = ('nyz072', 0.00084342462952628609) + +[10032] +centroid = (0.71277194144248079, -1.290546120995119) +station = ('knyc', 0.0010183309036320908) +zone = ('nyz072', 0.0010965709869291389) + +[10033] +centroid = (0.71297638931105933, -1.2903893380684124) +station = ('knyc', 0.0012504149683438225) +zone = ('nyz073', 0.00088476343816937025) + +[10034] +centroid = (0.71326771966980218, -1.2902244393606839) +station = ('klga', 0.0015615613481669299) +zone = ('nyz073', 0.00080099419701480385) + +[10035] +centroid = (0.71201844789780966, -1.2903172210637199) +station = ('knyc', 0.00053333023150480116) +zone = ('nyz072', 0.00056979053383738318) + +[10036] +centroid = (0.71138363674227434, -1.2913675253009851) +station = ('knyc', 0.00052021087511578302) +zone = ('nyz072', 0.00045765324018949148) + +[10037] +centroid = (0.71232094836376536, -1.2904490632354157) +station = ('knyc', 0.00064692319912214779) +zone = ('nyz072', 0.0007135433757855436) + +[10038] +centroid = (0.71051167024797801, -1.2915878382124644) +station = ('knyc', 0.0013760768497856608) +zone = ('njz006', 0.0011353351910616623) + +[10039] +centroid = (0.71263287360768179, -1.2904278400317115) +station = ('knyc', 0.00092268022010807515) +zone = ('nyz072', 0.00099671541895525136) + +[10040] +centroid = (0.71311182686101404, -1.2903309917115182) +station = ('knyc', 0.001392763636166973) +zone = ('nyz073', 0.00084571595649056148) + +[10044] +centroid = (0.71143198236255467, -1.290669812479208) +station = ('knyc', 0.00043232508571671048) +zone = ('nyz072', 0.00036247561345860316) + +[10065] +centroid = (0.71147620900580011, -1.2908981015453689) +station = ('knyc', 0.00033078165603128956) +zone = ('nyz072', 0.00024892943374225842) + +[10069] +centroid = (0.71167507182077239, -1.291378328889055) +station = ('knyc', 0.00034048223705944632) +zone = ('nyz072', 0.00032084819757766076) + +[10075] +centroid = (0.71162932674107759, -1.2907793318897707) +station = ('knyc', 0.00022231516458346963) +zone = ('nyz072', 0.00016394258918242164) + +[10103] +centroid = (0.71140981668105419, -1.2911539144538335) +station = ('knyc', 0.00041963875130958877) +zone = ('nyz072', 0.00034428381270359748) + +[10110] +centroid = (0.71130019255073651, -1.2912339552533301) +station = ('knyc', 0.00054380771814526872) +zone = ('nyz072', 0.00046938001069347663) + +[10111] +centroid = (0.71138073949571601, -1.2911526229101871) +station = ('knyc', 0.0004467106870662495) +zone = ('nyz072', 0.00037037349158035857) + +[10112] +centroid = (0.71138166452021956, -1.2911887861322884) +station = ('knyc', 0.00045544715362394244) +zone = ('nyz072', 0.00038122476651519484) + +[10115] +centroid = (0.71228373794411282, -1.290910859902201) +station = ('knyc', 0.00048184123485544504) +zone = ('nyz072', 0.00056408024922836321) + +[10119] +centroid = (0.71122708070837048, -1.2914211069090213) +station = ('knyc', 0.00067318053078757123) +zone = ('nyz072', 0.00060523810878268546) + +[10128] +centroid = (0.71177022717159111, -1.2906699695588404) +station = ('knyc', 0.00022350831755181441) +zone = ('nyz072', 0.00022433611172928159) + +[10152] +centroid = (0.71136834765802692, -1.2910554953373137) +station = ('knyc', 0.00044083852816143043) +zone = ('nyz072', 0.00035998891998739301) + +[10153] +centroid = (0.71145941893839593, -1.2910626162806615) +station = ('knyc', 0.00035238606753653799) +zone = ('nyz072', 0.00027294753039466748) + +[10154] +centroid = (0.7113574393502019, -1.2910634540387027) +station = ('knyc', 0.00045259375458283729) +zone = ('nyz072', 0.00037191239110128841) + +[10162] +centroid = (0.71155848382673914, -1.2906699695588404) +station = ('knyc', 0.00032995169672604918) +zone = ('nyz072', 0.00027249491746945796) + +[10165] +centroid = (0.71125886315404929, -1.2911722753175645) +station = ('knyc', 0.00056741920745939092) +zone = ('nyz072', 0.00048940745805671135) + +[10167] +centroid = (0.71130279309132205, -1.2911033173588182) +station = ('knyc', 0.0005119860220731703) +zone = ('nyz072', 0.00043210178061348119) + +[10168] +centroid = (0.71124694255525822, -1.2911440184369747) +station = ('knyc', 0.00057334790851283992) +zone = ('nyz072', 0.00049418478627064153) + +[10169] +centroid = (0.71129830759514434, -1.2911264778779921) +station = ('knyc', 0.00052029507467784967) +zone = ('nyz072', 0.00044116402347403269) + +[10170] +centroid = (0.71126748508055415, -1.2911226207003452) +station = ('knyc', 0.0005496152048004078) +zone = ('nyz072', 0.00046998942574509004) + +[10171] +centroid = (0.71132462716026446, -1.2910873825027476) +station = ('knyc', 0.00048816355977886623) +zone = ('nyz072', 0.00040797069342053742) + +[10172] +centroid = (0.71131370139914696, -1.2910953586574292) +station = ('knyc', 0.00050007094945888665) +zone = ('nyz072', 0.00042003438310208782) + +[10173] +centroid = (0.7112937697390892, -1.2911834803313624) +station = ('knyc', 0.00053660015269071817) +zone = ('nyz072', 0.00045967360090080922) + +[10174] +centroid = (0.71124682038221054, -1.2911073665226829) +station = ('knyc', 0.00056742886133441181) +zone = ('nyz072', 0.00048715838850479801) + +[10177] +centroid = (0.71131136265794925, -1.2911236155380188) +station = ('knyc', 0.00050710175326997204) +zone = ('nyz072', 0.00042804011282786882) + +[10199] +centroid = (0.7112459826241696, -1.2914952834022311) +station = ('knyc', 0.00068845753767486824) +zone = ('nyz072', 0.00062489080505104581) + +[10271] +centroid = (0.71049275087888641, -1.2917276216322566) +station = ('knyc', 0.0014333490270239373) +zone = ('njz006', 0.0010542351773485238) + +[10278] +centroid = (0.71061398144872989, -1.2916095850149441) +station = ('knyc', 0.0012867033678385094) +zone = ('njz006', 0.0010741587504548853) + +[10279] +centroid = (0.71056937083304894, -1.2916949490686591) +station = ('knyc', 0.0013532851820944026) +zone = ('njz006', 0.0010363746539917664) + +[10280] +centroid = (0.71050221056343221, -1.2918370014164791) +station = ('knyc', 0.0014604091530414393) +zone = ('njz006', 0.00098016086652658475) + +[10282] +centroid = (0.7106396203354417, -1.2918119908482981) +station = ('knyc', 0.001330133650107497) +zone = ('njz006', 0.00092507033789627244) + +[10301] +centroid = (0.70908287390912539, -1.2931913594627342) +station = ('kewr', 0.0013662060468286495) +zone = ('nyz074', 0.0011575451981480872) + +[10302] +centroid = (0.70913928295054984, -1.2939482913060316) +station = ('kewr', 0.00099528031371789918) +zone = ('nyz074', 0.00091262825807818921) + +[10303] +centroid = (0.70912526795665631, -1.2945827883023018) +station = ('kewr', 0.00093806882775984376) +zone = ('njz108', 0.00087895663484523841) + +[10304] +centroid = (0.70874319793010221, -1.2931643417659133) +station = ('kewr', 0.0016383993276027754) +zone = ('nyz074', 0.0009638064268314596) + +[10305] +centroid = (0.70854592336474931, -1.292850304673602) +station = ('kewr', 0.0019403311830820844) +zone = ('nyz074', 0.0011093675399582771) + +[10306] +centroid = (0.70811093495527477, -1.2937418886686909) +station = ('kewr', 0.0020204982412870003) +zone = ('nyz074', 0.00042094558111096755) + +[10307] +centroid = (0.70700357590476193, -1.2956824679041057) +station = ('kewr', 0.0031941227636473153) +zone = ('nyz074', 0.0016554202819762244) + +[10308] +centroid = (0.70776389368680825, -1.2941205553032034) +station = ('kewr', 0.0023080211845865062) +zone = ('nyz074', 0.00050561232360800314) + +[10309] +centroid = (0.70740838757146951, -1.2954003179772284) +station = ('kewr', 0.0027456908489582902) +zone = ('nyz074', 0.0012129104892112767) + +[10310] +centroid = (0.70917349140388897, -1.2935708114954101) +station = ('kewr', 0.0011090379842386771) +zone = ('nyz074', 0.0010548002448451384) + +[10311] +centroid = (0.70869514901579478, -1.2946765648430112) +station = ('kewr', 0.0013735282338596694) +zone = ('nyz074', 0.00053900836189908036) + +[10312] +centroid = (0.70765062181835381, -1.2947011914387569) +station = ('kewr', 0.0024148842191487273) +zone = ('nyz074', 0.00069339636800530503) + +[10314] +centroid = (0.70859081323311057, -1.2944364948043994) +station = ('kewr', 0.0014673545593154676) +zone = ('nyz074', 0.00035837517556916811) + +[10451] +centroid = (0.71245176079120232, -1.2902361156133797) +station = ('knyc', 0.0008497800048624033) +zone = ('nyz072', 0.00091305806209457591) + +[10452] +centroid = (0.71274691342100716, -1.2902072478675517) +station = ('klga', 0.0010819828897270032) +zone = ('nyz073', 0.00079217492871948064) + +[10453] +centroid = (0.71301550213959652, -1.2900135512271655) +station = ('klga', 0.0012711368275078636) +zone = ('nyz073', 0.00059978154285631694) + +[10454] +centroid = (0.71219064208181149, -1.2900878673467153) +station = ('klga', 0.00058567516585288982) +zone = ('nyz072', 0.00080972202535013131) + +[10455] +centroid = (0.71235107274665477, -1.2899482759131409) +station = ('klga', 0.0006413002283883817) +zone = ('nyz073', 0.00086048726759915372) + +[10456] +centroid = (0.71261585664747484, -1.2899400379590715) +station = ('klga', 0.00087591878155336179) +zone = ('nyz073', 0.00067338754275503981) + +[10457] +centroid = (0.71291725755600177, -1.2897752439710983) +station = ('klga', 0.0011321030259288107) +zone = ('nyz073', 0.00043018515560067137) + +[10458] +centroid = (0.71318595099434623, -1.2895914084409854) +station = ('klga', 0.001383964230540654) +zone = ('nyz073', 0.00032981486111025677) + +[10459] +centroid = (0.71254593875764005, -1.2896756380306869) +station = ('klga', 0.0007533300327718437) +zone = ('nyz073', 0.00057971727744942085) + +[10460] +centroid = (0.71282325412248937, -1.2894417290043347) +station = ('klga', 0.0010210190819247449) +zone = ('nyz073', 0.00025247822804185064) + +[10461] +centroid = (0.71292221429107749, -1.288760788796669) +station = ('klga', 0.0012533743739927621) +zone = ('nyz073', 0.00035931869130565559) + +[10462] +centroid = (0.71284971331394964, -1.289106974853802) +station = ('klga', 0.0010892805498113327) +zone = ('nyz073', 0.00018398148335139843) + +[10463] +centroid = (0.71350243154761051, -1.28991246175689) +station = ('klga', 0.0017264030322366923) +zone = ('nyz073', 0.00071686152823397116) + +[10464] +centroid = (0.71327744115373581, -1.2880515917084137) +station = ('klga', 0.0018401803068348037) +zone = ('nyz073', 0.00092301837039514951) + +[10465] +centroid = (0.71250059510367314, -1.2884998271669108) +station = ('klga', 0.0010333174593239549) +zone = ('nyz073', 0.00074786033626467044) + +[10466] +centroid = (0.71368195611447049, -1.2888600107646448) +station = ('klga', 0.0019413189965591404) +zone = ('nyz073', 0.00072297206912340709) + +[10467] +centroid = (0.71331524498533405, -1.2891995994772054) +station = ('klga', 0.0015296377250004533) +zone = ('nyz073', 0.00030328367282125634) + +[10468] +centroid = (0.71329801858561692, -1.2897973398394285) +station = ('klga', 0.001510586171903411) +zone = ('nyz073', 0.0005213854562546253) + +[10469] +centroid = (0.7132911070817789, -1.2888945508305418) +station = ('klga', 0.0015582717692227907) +zone = ('nyz073', 0.00037215930508776408) + +[10470] +centroid = (0.71365687573311942, -1.2893211442063142) +station = ('klga', 0.001858780080673554) +zone = ('nyz073', 0.00064896560320222855) + +[10471] +centroid = (0.71381896446075221, -1.2898560876220506) +station = ('klga', 0.002032704227304265) +zone = ('nyz073', 0.00093886300072851812) + +[10472] +centroid = (0.71261018432740586, -1.2892635308877061) +station = ('klga', 0.00082759123044440317) +zone = ('nyz073', 0.00040350209814198101) + +[10473] +centroid = (0.71242053685088413, -1.2890735517986265) +station = ('klga', 0.00069905065262055731) +zone = ('nyz073', 0.000602209133933458) + +[10474] +centroid = (0.71227958406049319, -1.2895262553000086) +station = ('klga', 0.00047635070854379498) +zone = ('nyz073', 0.00076841904188746637) + +[10475] +centroid = (0.71340785215544489, -1.2884686730397628) +station = ('klga', 0.0017865863209269664) +zone = ('nyz073', 0.00069266247776435274) + +[10501] +centroid = (0.72074432621291051, -1.2873285017993124) +station = ('khpn', 0.0040689764788956369) +zone = ('nyz070', 0.0012911813010989652) + +[10502] +centroid = (0.71578748641749157, -1.2887761302407938) +station = ('khpn', 0.0020952812553008369) +zone = ('nyz071', 0.00094920900433098838) + +[10503] +centroid = (0.71604848295383472, -1.2893673954314921) +station = ('khpn', 0.0024114323415287092) +zone = ('nyz071', 0.0014660028121115281) + +[10504] +centroid = (0.71782718290112713, -1.2864389249328634) +station = ('khpn', 0.0010831632435070414) +zone = ('nyz070', 0.001716109042609775) + +[10505] +centroid = (0.72155559015582249, -1.2871008934115598) +station = ('kdxr', 0.0034606867868868835) +zone = ('nyz068', 0.0014776755900517281) + +[10506] +centroid = (0.71891663487351454, -1.2852339147107015) +station = ('khpn', 0.0023140294275702071) +zone = ('nyz070', 0.0015304472541715437) + +[10507] +centroid = (0.7195625288698001, -1.2860641329292901) +station = ('khpn', 0.0028199515718480457) +zone = ('nyz070', 0.00081171508636857621) + +[10509] +centroid = (0.72275576581595635, -1.2844635438321637) +station = ('kdxr', 0.0016454718464715525) +zone = ('nyz068', 0.0020494966879617397) + +[10510] +centroid = (0.71801094861806969, -1.2886619508011286) +station = ('khpn', 0.0021773486005149459) +zone = ('nyz070', 0.0018505600946686733) + +[10511] +centroid = (0.72021758584465867, -1.2905521598343308) +station = ('kswf', 0.0045801703846098437) +zone = ('nyz069', 0.0022328923566320561) + +[10512] +centroid = (0.72333778076161892, -1.2865561063388422) +station = ('kpou', 0.003971953214495806) +zone = ('nyz068', 0.00055338225594761471) + +[10514] +centroid = (0.71859271921763701, -1.2875110283324858) +station = ('khpn', 0.0020549450567853276) +zone = ('nyz070', 0.00091358238410555652) + +[10516] +centroid = (0.72365015979114089, -1.2893620372706887) +station = ('kpou', 0.0029905656630496401) +zone = ('nyz068', 0.0017543476552309267) + +[10517] +centroid = (0.72079031563870055, -1.2891349699350041) +station = ('khpn', 0.0045676862575941887) +zone = ('nyz070', 0.0020066144043083488) + +[10518] +centroid = (0.72023036165478316, -1.2843572707340096) +station = ('kdxr', 0.0022290518115529105) +zone = ('nyz070', 0.0022256241343937668) + +[10519] +centroid = (0.72173459112390703, -1.2854814547585118) +station = ('kdxr', 0.0022322526955657358) +zone = ('nyz068', 0.0018143599589095618) + +[10520] +centroid = (0.71953778010100689, -1.2892360943118648) +station = ('khpn', 0.0035556581762647812) +zone = ('nyz070', 0.0015821954095068061) + +[10522] +centroid = (0.71576493676355568, -1.2891655655567915) +station = ('khpn', 0.0023694354133072591) +zone = ('nyz071', 0.0012008838871890918) + +[10523] +centroid = (0.71662068914910115, -1.2883925766843758) +station = ('khpn', 0.0015771933665100386) +zone = ('nyz071', 0.0014257236383828592) + +[10524] +centroid = (0.72213420170944365, -1.2902542321310155) +station = ('kswf', 0.0031491586584208972) +zone = ('nyz068', 0.002480576640175852) + +[10526] +centroid = (0.72066589111632584, -1.2857933450958432) +station = ('kdxr', 0.0027853753623585686) +zone = ('nyz070', 0.0015710114902481769) + +[10527] +centroid = (0.72119069416910797, -1.2875272598945295) +station = ('khpn', 0.0045359569104820611) +zone = ('nyz070', 0.0017542822151856905) + +[10528] +centroid = (0.71514433258813159, -1.2867575522411074) +station = ('khpn', 0.0016397302604616798) +zone = ('nyz071', 0.00072858235018260901) + +[10530] +centroid = (0.71599884578990802, -1.2882765646489958) +station = ('khpn', 0.0016634529674990183) +zone = ('nyz071', 0.00082787592480441637) + +[10532] +centroid = (0.71731772129247007, -1.2880586951984692) +station = ('khpn', 0.0014373544550517388) +zone = ('nyz071', 0.002041980435158203) + +[10533] +centroid = (0.716229491050559, -1.2890105454126295) +station = ('khpn', 0.0021033414605171915) +zone = ('nyz071', 0.0013604302658722794) + +[10535] +centroid = (0.72143479591829196, -1.2879468545000015) +station = ('khpn', 0.0048458281309886504) +zone = ('nyz068', 0.0017001283047687304) + +[10536] +centroid = (0.72028163942820678, -1.2861103317945903) +station = ('khpn', 0.0035362145729204977) +zone = ('nyz070', 0.0011253237723525167) + +[10537] +centroid = (0.72151457491840065, -1.2894902491575402) +station = ('kswf', 0.0039922481110045011) +zone = ('nyz068', 0.0023086941735121851) + +[10538] +centroid = (0.71451400692877387, -1.2872834024914408) +station = ('khpn', 0.0023527453711838825) +zone = ('nyz071', 0.00084122148394486613) + +[10541] +centroid = (0.72219183248134444, -1.2872579381376541) +station = ('kdxr', 0.0035569352772354245) +zone = ('nyz068', 0.00084297221261129531) + +[10543] +centroid = (0.71475933040843409, -1.2869366753822398) +station = ('khpn', 0.0020450615065642315) +zone = ('nyz071', 0.0007870575244364787) + +[10545] +centroid = (0.71870199428210424, -1.2886717071916471) +station = ('khpn', 0.0026433633497168203) +zone = ('nyz070', 0.0013833389541593548) + +[10546] +centroid = (0.71902742837443123, -1.2880602834480883) +station = ('khpn', 0.0026336076567434834) +zone = ('nyz070', 0.00082031086018497694) + +[10547] +centroid = (0.72105370327611895, -1.288856520106141) +station = ('kswf', 0.0046547139164269842) +zone = ('nyz070', 0.0020518176149494729) + +[10548] +centroid = (0.71987319747665512, -1.2903738744512396) +station = ('khpn', 0.0043745141282191865) +zone = ('nyz069', 0.0020137185152603126) + +[10549] +centroid = (0.71908584454449542, -1.2867172002288014) +station = ('khpn', 0.0023575643407486844) +zone = ('nyz070', 0.0004896734956298008) + +[10550] +centroid = (0.71393474960332948, -1.2886682688930207) +station = ('klga', 0.0022238350016763535) +zone = ('nyz073', 0.0010125112038088275) + +[10552] +centroid = (0.7142665716007186, -1.2885087807059736) +station = ('klga', 0.0025763441156692692) +zone = ('nyz071', 0.001194038076649209) + +[10553] +centroid = (0.71398948312867194, -1.2884308866614571) +station = ('klga', 0.0023328004078755683) +zone = ('nyz073', 0.0011451000002386752) + +[10560] +centroid = (0.72152831065961387, -1.2845205986454116) +station = ('kdxr', 0.0015651230029593306) +zone = ('nyz068', 0.0024936554447062857) + +[10562] +centroid = (0.71897930964695367, -1.2884937534211138) +station = ('khpn', 0.0027726472860458468) +zone = ('nyz070', 0.0011302184802218717) + +[10566] +centroid = (0.72063719790342318, -1.2901093872563925) +station = ('kswf', 0.0043807370588114704) +zone = ('nyz070', 0.0025264084753153799) + +[10567] +centroid = (0.72063850690036202, -1.2897464809450254) +station = ('kswf', 0.0045336590958075448) +zone = ('nyz070', 0.0022891320308660568) + +[10570] +centroid = (0.71785509071586651, -1.2878203355825244) +station = ('khpn', 0.0015886699434308634) +zone = ('nyz070', 0.0016870894051673674) + +[10573] +centroid = (0.7158617501771638, -1.2859132841220402) +station = ('khpn', 0.00093535271651758753) +zone = ('nyz071', 0.0014648070442156017) + +[10576] +centroid = (0.7194522415143666, -1.2840794317703847) +station = ('kdxr', 0.0027882840615111957) +zone = ('ctz009', 0.0024091320795996407) + +[10577] +centroid = (0.71625294827570585, -1.2865126127338826) +station = ('khpn', 0.0005191389915858611) +zone = ('nyz071', 0.0013138618047879211) + +[10578] +centroid = (0.72117486403279252, -1.2859409824972694) +station = ('kdxr', 0.0026885723668904436) +zone = ('nyz070', 0.0019342565382760607) + +[10579] +centroid = (0.72246551756134969, -1.2887277322606363) +station = ('kpou', 0.004213868754880455) +zone = ('nyz068', 0.0012974390795669108) + +[10580] +centroid = (0.71521746188379021, -1.2861910707257878) +station = ('khpn', 0.0015336087924392931) +zone = ('nyz071', 0.0011433056749826087) + +[10583] +centroid = (0.71538745695293438, -1.2878645622257698) +station = ('khpn', 0.0017977908666904209) +zone = ('nyz071', 0.00015443235946690568) + +[10588] +centroid = (0.72146017300561605, -1.2884021759952617) +station = ('kswf', 0.0046432943822734265) +zone = ('nyz068', 0.0018232294063062942) + +[10589] +centroid = (0.72131728289975527, -1.2863575402298431) +station = ('kdxr', 0.0029526947142354469) +zone = ('nyz068', 0.0018205654372768772) + +[10590] +centroid = (0.7200432798122619, -1.2835032985843013) +station = ('kdxr', 0.0020753852752405286) +zone = ('ctz009', 0.0025812550392974886) + +[10591] +centroid = (0.71715748261384449, -1.2887688173112282) +station = ('khpn', 0.0018997837278105004) +zone = ('nyz071', 0.0020301854632629275) + +[10594] +centroid = (0.71756463302174966, -1.2876042987277125) +station = ('khpn', 0.0012731897760493317) +zone = ('nyz070', 0.0019293642656002022) + +[10595] +centroid = (0.71708417878526076, -1.2877500860801316) +station = ('khpn', 0.0011379742688314937) +zone = ('nyz071', 0.0017910200858980477) + +[10596] +centroid = (0.72005753915225079, -1.2908311507152621) +station = ('kswf', 0.0046366642270078105) +zone = ('nyz069', 0.0019952379318090925) + +[10597] +centroid = (0.72069917454516152, -1.2845024297678982) +station = ('kdxr', 0.0019633065625713933) +zone = ('nyz070', 0.0023342239740824044) + +[10598] +centroid = (0.72061543364765079, -1.2879169046500372) +station = ('khpn', 0.0040521487861017664) +zone = ('nyz070', 0.0012951623751494715) + +[10601] +centroid = (0.71615976514694191, -1.2874433619173862) +station = ('khpn', 0.0010393352694400698) +zone = ('nyz071', 0.00088798609844641053) + +[10603] +centroid = (0.71653445243076008, -1.2876914779238495) +station = ('khpn', 0.001065159712292254) +zone = ('nyz071', 0.0012409553527817857) + +[10604] +centroid = (0.71666847626402064, -1.287064782549336) +station = ('khpn', 0.00057643829047868697) +zone = ('nyz071', 0.0014566203518105471) + +[10605] +centroid = (0.71576868922144754, -1.2870952385447834) +station = ('khpn', 0.0011458664707347961) +zone = ('nyz071', 0.00066001754524990788) + +[10606] +centroid = (0.71594404245139542, -1.2876314211442885) +station = ('khpn', 0.0012821926543714159) +zone = ('nyz071', 0.00065270706470517978) + +[10607] +centroid = (0.7162672250689871, -1.288251397001182) +station = ('khpn', 0.0015427837619669065) +zone = ('nyz071', 0.001058228881545909) + +[10701] +centroid = (0.71463239261193656, -1.2894574718741876) +station = ('klga', 0.0028291982753535631) +zone = ('nyz073', 0.0016298773480622169) + +[10703] +centroid = (0.71488387710385648, -1.2894545222677516) +station = ('kteb', 0.0027664977406449752) +zone = ('nyz071', 0.0013850474981277824) + +[10704] +centroid = (0.71418400007380667, -1.2891464542014821) +station = ('klga', 0.0023961610287163444) +zone = ('nyz073', 0.0011729627346001676) + +[10705] +centroid = (0.71418358119478631, -1.2896225276615487) +station = ('klga', 0.0023817263380050951) +zone = ('nyz073', 0.0012099764153293232) + +[10706] +centroid = (0.71540733625311459, -1.2892319927881224) +station = ('khpn', 0.002581785339153497) +zone = ('nyz071', 0.0011603970570866328) + +[10707] +centroid = (0.71489616422179048, -1.2884497362173786) +station = ('khpn', 0.0024584106624692481) +zone = ('nyz071', 0.0006902725008930869) + +[10708] +centroid = (0.71450754921054149, -1.2885752253905969) +station = ('klga', 0.002794500426981125) +zone = ('nyz071', 0.0010258745399771836) + +[10709] +centroid = (0.71479322470250795, -1.2881958257177983) +station = ('khpn', 0.0024193591718383828) +zone = ('nyz071', 0.00062388422544236303) + +[10710] +centroid = (0.71501177483144263, -1.2888617560938969) +station = ('khpn', 0.002594246016741368) +zone = ('nyz071', 0.00091969432278806731) + +[10801] +centroid = (0.71414631841525611, -1.2877887102164782) +station = ('klga', 0.0026794091594261661) +zone = ('nyz071', 0.0011490651059832837) + +[10803] +centroid = (0.71384765767365488, -1.2881775695738225) +station = ('klga', 0.0022783672088898207) +zone = ('nyz073', 0.0011487771730548555) + +[10804] +centroid = (0.71465719374060743, -1.2878444385794943) +station = ('khpn', 0.0023913731833822877) +zone = ('nyz071', 0.00064533332092479357) + +[10805] +centroid = (0.71379988801202776, -1.2876909717783664) +station = ('klga', 0.0024236804933145946) +zone = ('nyz073', 0.0013992637110001836) + +[10901] +centroid = (0.71804192821229251, -1.2933758233113772) +station = ('kteb', 0.0048385306962915433) +zone = ('nyz069', 0.0010838068374836771) + +[10910] +centroid = (0.72049931689251556, -1.2939514678052702) +station = ('kswf', 0.0038445838882649368) +zone = ('nyz069', 0.002697715440412449) + +[10911] +centroid = (0.72115535125175523, -1.2916860478894743) +station = ('kswf', 0.0033774885210740347) +zone = ('nyz069', 0.0029092825067631987) + +[10913] +centroid = (0.71677632015850146, -1.2907578119800935) +station = ('khpn', 0.0033552471219811435) +zone = ('nyz069', 0.001734541862124579) + +[10914] +centroid = (0.72287553030922835, -1.2950347587653979) +station = ('kmgj', 0.0019344561256973588) +zone = ('nyz067', 0.0014082398692194581) + +[10915] +centroid = (0.72510330347305885, -1.2978149809973623) +station = ('kmgj', 0.0013100626720261692) +zone = ('nyz067', 0.0025954773808514091) + +[10916] +centroid = (0.72330742948592675, -1.2959187331249482) +station = ('kmgj', 0.0013118726763407572) +zone = ('nyz067', 0.0010052599145200368) + +[10917] +centroid = (0.72116175661010995, -1.2935968692611426) +station = ('kswf', 0.0031583360250830163) +zone = ('nyz067', 0.0028538824234890319) + +[10918] +centroid = (0.72159227697669948, -1.2961194983488049) +station = ('kmgj', 0.0030108240701254545) +zone = ('nyz067', 0.0011612333788068709) + +[10919] +centroid = (0.72476470959817196, -1.2983088568157992) +station = ('kmgj', 0.0015888233791206128) +zone = ('nyz067', 0.0024117047298831519) + +[10920] +centroid = (0.71831142450209307, -1.2904571441098522) +station = ('khpn', 0.003495236103143326) +zone = ('nyz069', 0.001136243814467051) + +[10921] +centroid = (0.72138056853843258, -1.2978863824170614) +station = ('kmgj', 0.0034617973820648597) +zone = ('nyz067', 0.0014394258491053594) + +[10922] +centroid = (0.72139275093661148, -1.2914817221939432) +station = ('kswf', 0.0032181892599228898) +zone = ('nyz069', 0.0031600489703715283) + +[10923] +centroid = (0.71912040206368499, -1.2915544849704588) +station = ('khpn', 0.0046088875074611754) +zone = ('nyz069', 0.00092004033886446525) + +[10924] +centroid = (0.7222347850342361, -1.2976954259436007) +station = ('kmgj', 0.0026203444798678804) +zone = ('nyz067', 0.00071657710237473232) + +[10925] +centroid = (0.71904390428256992, -1.2970372273760886) +station = ('kfwn', 0.0041837318327059992) +zone = ('njz002', 0.0018924626796472874) + +[10926] +centroid = (0.72084543313647853, -1.2936851829212936) +station = ('kswf', 0.0034789240258525367) +zone = ('nyz069', 0.0028970339954945681) + +[10927] +centroid = (0.71891947976019532, -1.2909774965730421) +station = ('khpn', 0.0041334655472584107) +zone = ('nyz069', 0.00099755590101920652) + +[10928] +centroid = (0.72167566880835976, -1.2915173792705614) +station = ('kswf', 0.0029517735538820279) +zone = ('nyz069', 0.003438521376305913) + +[10930] +centroid = (0.72189743034311815, -1.2935210521584359) +station = ('kswf', 0.0024204715124004055) +zone = ('nyz067', 0.0026157478236059901) + +[10931] +centroid = (0.71818190361830248, -1.2943801904827301) +station = ('kcdw', 0.0048986741870989349) +zone = ('njz103', 0.0021752303832762291) + +[10932] +centroid = (0.72400027283909096, -1.2996469483934259) +station = ('kmgj', 0.0026525146310326093) +zone = ('nyz067', 0.0025015911388463798) + +[10933] +centroid = (0.72200752571233395, -1.3004966270331741) +station = ('kfwn', 0.0033298534578112883) +zone = ('nyz067', 0.0027803550913919318) + +[10940] +centroid = (0.72337865637270071, -1.2998992531900939) +station = ('kmgj', 0.0030310408292240241) +zone = ('nyz067', 0.0023944263982413733) + +[10941] +centroid = (0.72409029692190885, -1.2975552061914957) +station = ('kmgj', 0.0011383232163444897) +zone = ('nyz067', 0.0015700768356768726) + +[10950] +centroid = (0.72111924038953146, -1.295068530886424) +station = ('kswf', 0.0034601735127085566) +zone = ('nyz067', 0.002012434168917067) + +[10952] +centroid = (0.71752436827590615, -1.2929144280703202) +station = ('kteb', 0.0042830164585530564) +zone = ('nyz069', 0.001021735264406192) + +[10953] +centroid = (0.72265294846972139, -1.2928950898222082) +station = ('kswf', 0.0016847583364427224) +zone = ('nyz067', 0.0029873784622105443) + +[10954] +centroid = (0.71731337542263263, -1.2917582521606292) +station = ('kteb', 0.0040858001667553939) +zone = ('nyz069', 0.0009529472452991794) + +[10956] +centroid = (0.71832849382217745, -1.2914287339978525) +station = ('khpn', 0.0041693051104014951) +zone = ('nyz069', 0.00041011856638836802) + +[10958] +centroid = (0.72207609969864472, -1.2990918289715365) +station = ('kmgj', 0.0033299815802917726) +zone = ('nyz067', 0.0017434846057770828) + +[10960] +centroid = (0.7171918830534012, -1.2902285059778411) +station = ('khpn', 0.0029885998497788829) +zone = ('nyz069', 0.0016843282252068685) + +[10962] +centroid = (0.71645880986097865, -1.2908208183660903) +station = ('khpn', 0.0034154171761824836) +zone = ('nyz069', 0.0019909064232229118) + +[10963] +centroid = (0.72367510054615192, -1.3010281670568691) +station = ('kfwn', 0.004747987853211978) +zone = ('nyz067', 0.0032909212575967686) + +[10964] +centroid = (0.7158678064696683, -1.2900479691200148) +station = ('khpn', 0.0029553592382826756) +zone = ('njz104', 0.0022583842912152481) + +[10965] +centroid = (0.71665943545849531, -1.2916803406628199) +station = ('kteb', 0.0034466477078871766) +zone = ('nyz069', 0.0016084572263361755) + +[10968] +centroid = (0.71621914124809472, -1.2901758843008935) +station = ('khpn', 0.0029647535797669078) +zone = ('nyz071', 0.0020835448422033783) + +[10969] +centroid = (0.72073015413938424, -1.3000604692531008) +station = ('kfwn', 0.0025250154008582683) +zone = ('nyz067', 0.0030370996348922622) + +[10970] +centroid = (0.71871965701413454, -1.2932853803495392) +station = ('kteb', 0.0055009832925566552) +zone = ('nyz069', 0.0010983201063676502) + +[10973] +centroid = (0.72222625037419386, -1.2999292903065209) +station = ('kmgj', 0.0036700545001582246) +zone = ('nyz067', 0.0023206489914671534) + +[10974] +centroid = (0.71851815875199176, -1.2946505594371567) +station = ('kcdw', 0.0051592485411517302) +zone = ('njz103', 0.0025277180240418163) + +[10975] +centroid = (0.72024640123060912, -1.2945502030051668) +station = ('kswf', 0.0041739241225099777) +zone = ('nyz069', 0.0027849261976732849) + +[10976] +centroid = (0.71598572091393298, -1.2902955266211178) +station = ('khpn', 0.0031028637410318136) +zone = ('njz104', 0.002242688688561961) + +[10977] +centroid = (0.71766053886414682, -1.2923841621369794) +station = ('kteb', 0.004402718086951838) +zone = ('nyz069', 0.00067211037543100959) + +[10979] +centroid = (0.71877597878909638, -1.2970400548094769) +station = ('kfwn', 0.0041926975058915817) +zone = ('njz002', 0.0016343914834618804) + +[10980] +centroid = (0.71975461980727462, -1.292416537994604) +station = ('kswf', 0.0046038138161197881) +zone = ('nyz069', 0.0015391129540855667) + +[10983] +centroid = (0.71612758127553511, -1.2906308916368885) +station = ('kteb', 0.0031707471415068013) +zone = ('njz104', 0.0022400108662099139) + +[10984] +centroid = (0.71912631872984911, -1.2919322440337604) +station = ('khpn', 0.0048579265078648806) +zone = ('nyz069', 0.00087304983584447163) + +[10985] +centroid = (0.72576932111561998, -1.2980570058047365) +station = ('kmgj', 0.0018158298703715354) +zone = ('nyz067', 0.0032856519378497802) + +[10986] +centroid = (0.72056328320960117, -1.2915211317284532) +station = ('kswf', 0.003976060155493664) +zone = ('nyz069', 0.0023336099506369025) + +[10987] +centroid = (0.71884750238184314, -1.2956861854554125) +station = ('kfwn', 0.0052056164278206024) +zone = ('njz002', 0.0022198392031531917) + +[10988] +centroid = (0.72085730137539217, -1.301117754807374) +station = ('kfwn', 0.0021004262818520138) +zone = ('njz001', 0.0033940315326159683) + +[10989] +centroid = (0.7177309628994647, -1.2904620833916354) +station = ('khpn', 0.0032813836915364667) +zone = ('nyz069', 0.0012462264168238933) + +[10990] +centroid = (0.72025284149554891, -1.2978968369392809) +station = ('kfwn', 0.0037258057838501554) +zone = ('nyz067', 0.0024733033463309531) + +[10992] +centroid = (0.72302290591126672, -1.2944120252882865) +station = ('kswf', 0.0015391926794749782) +zone = ('nyz067', 0.0018955867498399012) + +[10993] +centroid = (0.71924836960444116, -1.2910871032500673) +station = ('khpn', 0.0043824181118035568) +zone = ('nyz069', 0.0011939022552889802) + +[10994] +centroid = (0.71729667262169106, -1.291066281472091) +station = ('khpn', 0.0036285237463205967) +zone = ('nyz069', 0.0011718659286578158) + +[10996] +centroid = (0.72245635458277679, -1.2910580086114363) +station = ('kswf', 0.0024977096340836019) +zone = ('nyz068', 0.0029711416799099452) + +[10998] +centroid = (0.7212406978521777, -1.300989228761257) +station = ('kfwn', 0.0024796719594618213) +zone = ('njz001', 0.0037697746261770399) + +[11001] +centroid = (0.7107559639833797, -1.286394035064502) +station = ('kjfk', 0.0017702675875064255) +zone = ('nyz178', 0.0015395083435922) + +[11003] +centroid = (0.71033462404865566, -1.2864152757214988) +station = ('kjfk', 0.0014007533555698505) +zone = ('nyz178', 0.0012847550311063166) + +[11004] +centroid = (0.71115531276952848, -1.2865078305317319) +station = ('kjfk', 0.0021009415802790313) +zone = ('nyz178', 0.0017758263381300228) + +[11005] +centroid = (0.71133647794588539, -1.2865551115011686) +station = ('kjfk', 0.0022603870370095079) +zone = ('nyz178', 0.001904171496153411) + +[11010] +centroid = (0.71035925064440131, -1.2858716405660875) +station = ('kjfk', 0.0016881575408893975) +zone = ('nyz179', 0.0012229710963225161) + +[11020] +centroid = (0.71159590368590198, -1.286566299061674) +station = ('klga', 0.0022368279521698831) +zone = ('nyz177', 0.0018898268735320473) + +[11021] +centroid = (0.71182064973368131, -1.2868572279946888) +station = ('klga', 0.0020067513123289251) +zone = ('nyz176', 0.0016142903842636159) + +[11023] +centroid = (0.71207164553341051, -1.286895869584328) +station = ('klga', 0.0019953119215602175) +zone = ('nyz177', 0.0018975804906168332) + +[11024] +centroid = (0.71237515829033238, -1.287030469376242) +station = ('klga', 0.0019602759930719359) +zone = ('nyz176', 0.0018008743024918164) + +[11030] +centroid = (0.7119793001626874, -1.2861078010671749) +station = ('klga', 0.0025799520146730071) +zone = ('nyz177', 0.0013902952438910948) + +[11040] +centroid = (0.71114046001759401, -1.2859636892308377) +station = ('kjfk', 0.0022646634774011239) +zone = ('nyz179', 0.0015997153756555098) + +[11042] +centroid = (0.71137068639922463, -1.2862592083797857) +station = ('kjfk', 0.0023705809523136981) +zone = ('nyz177', 0.0018559165092666414) + +[11050] +centroid = (0.71279063391876951, -1.2861877196936238) +station = ('klga', 0.0026995391181820964) +zone = ('nyz177', 0.0012663515055841886) + +[11096] +centroid = (0.70897623429182854, -1.2873023218605324) +station = ('kjfk', 0.00024536224210389758) +zone = ('nyz178', 0.00088891020879680062) + +[11101] +centroid = (0.71117157923815699, -1.2904918412553819) +station = ('knyc', 0.00072525123496125802) +zone = ('nyz072', 0.000653344706693965) + +[11102] +centroid = (0.71162107133371566, -1.2902572515506214) +station = ('knyc', 0.00056387603487200832) +zone = ('nyz072', 0.00054066852612907955) + +[11103] +centroid = (0.71144112788783509, -1.2900330116483254) +station = ('klga', 0.00053823708849854302) +zone = ('nyz072', 0.00075497473477411444) + +[11104] +centroid = (0.71112771911405437, -1.2901511180788077) +station = ('klga', 0.00083324474837290533) +zone = ('nyz072', 0.00085216846255723204) + +[11105] +centroid = (0.7117256689157877, -1.2899164585608769) +station = ('klga', 0.0003193379942547631) +zone = ('nyz176', 0.00099162593598276752) + +[11106] +centroid = (0.71143479234265028, -1.2903485846303784) +station = ('knyc', 0.00059297097117625515) +zone = ('nyz072', 0.00054360137663156459) + +[11109] +centroid = (0.71113641085372936, -1.290791898260385) +station = ('knyc', 0.00067934522955244306) +zone = ('nyz072', 0.00059796555402973073) + +[11201] +centroid = (0.7102387356595512, -1.2913637553898007) +station = ('knyc', 0.0015940654671608623) +zone = ('nyz075', 0.0010850396794493636) + +[11203] +centroid = (0.70946920253905432, -1.2903982043410125) +station = ('knyc', 0.0023730190600583893) +zone = ('nyz075', 0.00016100770401264344) + +[11204] +centroid = (0.70893143168992989, -1.2912788102151063) +station = ('knyc', 0.002882048531427016) +zone = ('nyz075', 0.00069899695792849219) + +[11205] +centroid = (0.71025646820475141, -1.2909554879711744) +station = ('knyc', 0.0015469859579340414) +zone = ('nyz075', 0.00095859319421995369) + +[11206] +centroid = (0.71038310929527615, -1.2905376037883693) +station = ('knyc', 0.0014562571174697365) +zone = ('nyz075', 0.0010324370354946836) + +[11207] +centroid = (0.70983844439560617, -1.2896972452068267) +station = ('klga', 0.0019702603467586558) +zone = ('nyz075', 0.00080525874716607835) + +[11208] +centroid = (0.70981997881212011, -1.289298646912256) +station = ('kjfk', 0.0015247508360679914) +zone = ('nyz178', 0.0010542075709259633) + +[11209] +centroid = (0.70898733458587126, -1.292072882664886) +station = ('kewr', 0.0020990343405508797) +zone = ('nyz075', 0.001217408033331374) + +[11210] +centroid = (0.70909493413425662, -1.2906068235465034) +station = ('knyc', 0.0027218525404856886) +zone = ('nyz075', 0.00026045601061927651) + +[11211] +centroid = (0.71056886468756586, -1.2907250521500335) +station = ('knyc', 0.0012475498408988409) +zone = ('nyz072', 0.0011655207222488586) + +[11212] +centroid = (0.70970211672773298, -1.2900257161720519) +station = ('klga', 0.0021377265534103318) +zone = ('nyz075', 0.00052614419826006189) + +[11213] +centroid = (0.70984422143543036, -1.2904325000608141) +station = ('knyc', 0.0019998750354883379) +zone = ('nyz075', 0.00050046445052471904) + +[11214] +centroid = (0.70858880610447084, -1.2914754041020509) +station = ('kewr', 0.0026948428825257086) +zone = ('nyz075', 0.0010404726948102761) + +[11215] +centroid = (0.70969778831118802, -1.2913122158169894) +station = ('knyc', 0.0021223327361028122) +zone = ('nyz075', 0.00067977466093226341) + +[11216] +centroid = (0.71001334383994863, -1.290659043797723) +station = ('knyc', 0.0018047508099124749) +zone = ('nyz075', 0.00066860542225654837) + +[11217] +centroid = (0.71004018700384419, -1.2911614019163247) +station = ('knyc', 0.0017697302208845944) +zone = ('nyz075', 0.00083445145457626969) + +[11218] +centroid = (0.70936247565529487, -1.2911255179469037) +station = ('knyc', 0.0024441206187073446) +zone = ('nyz075', 0.00044305042586295353) + +[11219] +centroid = (0.70917382301644671, -1.2914855095584199) +station = ('knyc', 0.00265941392045012) +zone = ('nyz075', 0.00073762142571290356) + +[11220] +centroid = (0.70932311848066243, -1.2918379613475677) +station = ('knyc', 0.0025676874988778348) +zone = ('nyz075', 0.00098388453103315644) + +[11221] +centroid = (0.71019786004846941, -1.2902848975659731) +station = ('knyc', 0.001685533735418226) +zone = ('nyz075', 0.00086930912821931859) + +[11222] +centroid = (0.71083403256082134, -1.2906291812142214) +station = ('knyc', 0.0010016355580263873) +zone = ('nyz072', 0.00092131770488141111) + +[11223] +centroid = (0.70855374243979818, -1.2910798775869639) +station = ('knyc', 0.0032509357993390393) +zone = ('nyz075', 0.00089548802789137557) + +[11224] +centroid = (0.70820874320655647, -1.2913465289900836) +station = ('kewr', 0.0029961122388196411) +zone = ('nyz075', 0.0012950696308561176) + +[11225] +centroid = (0.70970403658991021, -1.2907446172909482) +station = ('knyc', 0.0021058565511753451) +zone = ('nyz075', 0.00038539955673202721) + +[11226] +centroid = (0.70941434684066407, -1.2907870287917718) +station = ('knyc', 0.0023927724805318526) +zone = ('nyz075', 0.00019664286108844387) + +[11228] +centroid = (0.70889505902831829, -1.2917713595833116) +station = ('kewr', 0.002343227634592826) +zone = ('nyz075', 0.0010384242082007744) + +[11229] +centroid = (0.70862624341692604, -1.2905748665678993) +station = ('kjfk', 0.0024213642242730663) +zone = ('nyz075', 0.00072486772767380568) + +[11230] +centroid = (0.7089905110851098, -1.2909346138333204) +station = ('knyc', 0.0028130114110810874) +zone = ('nyz075', 0.0004675202407372818) + +[11231] +centroid = (0.70996356704968178, -1.2916336007454516) +station = ('knyc', 0.0019089960546391487) +zone = ('nyz075', 0.0010303175921222672) + +[11232] +centroid = (0.70959025857597258, -1.2916715965632675) +station = ('knyc', 0.0022776182340444799) +zone = ('nyz075', 0.00089001611014439251) + +[11233] +centroid = (0.70997040874034956, -1.2901462660634873) +station = ('klga', 0.0018958851614379697) +zone = ('nyz075', 0.0006885541854424733) + +[11234] +centroid = (0.70869233903569917, -1.2900028872654359) +station = ('kjfk', 0.0019839354693271557) +zone = ('nyz075', 0.00077507120016677823) + +[11235] +centroid = (0.70832353351146016, -1.2906552040733685) +station = ('kjfk', 0.0025662745799604346) +zone = ('nyz075', 0.0010307432437736787) + +[11236] +centroid = (0.70929156292778628, -1.289809906210043) +station = ('kjfk', 0.0017779063220235418) +zone = ('nyz075', 0.00055852210177774681) + +[11237] +centroid = (0.71042161125857517, -1.2901672623743885) +station = ('klga', 0.0014694837372215494) +zone = ('nyz075', 0.001107972570001889) + +[11238] +centroid = (0.7099854709317942, -1.2909119070997519) +station = ('knyc', 0.0018183698720907675) +zone = ('nyz075', 0.00069409999077357104) + +[11239] +centroid = (0.70943680922813723, -1.2894401233014225) +station = ('kjfk', 0.0015150278601505788) +zone = ('nyz075', 0.00084035136233832875) + +[11351] +centroid = (0.71175830657279993, -1.2884945737258622) +station = ('klga', 0.00076826112027109377) +zone = ('nyz176', 0.00062166039141550971) + +[11354] +centroid = (0.71153945973789245, -1.2885312605467394) +station = ('klga', 0.00078494694752227257) +zone = ('nyz176', 0.0004139877536541978) + +[11355] +centroid = (0.71124741379415624, -1.2884200481668022) +station = ('klga', 0.00099368024571803775) +zone = ('nyz176', 0.00030710151801386151) + +[11356] +centroid = (0.7118299174320093, -1.288773442433746) +station = ('klga', 0.00055638739708368905) +zone = ('nyz176', 0.00064401658857041937) + +[11357] +centroid = (0.71185686531566017, -1.2882425656351668) +station = ('klga', 0.00095920222389737854) +zone = ('nyz176', 0.00079912699154910806) + +[11358] +centroid = (0.71140442361366563, -1.2879896499732602) +station = ('klga', 0.0012167274234088305) +zone = ('nyz176', 0.00066376817866323765) + +[11359] +centroid = (0.71195097346892766, -1.2876492409559512) +station = ('klga', 0.0014146163155539339) +zone = ('nyz176', 0.0011690818151306509) + +[11360] +centroid = (0.71175040023128844, -1.2877249707921954) +station = ('klga', 0.0013507236397508444) +zone = ('nyz176', 0.0010011725000238225) + +[11361] +centroid = (0.71146934986183974, -1.2875778220829597) +station = ('klga', 0.001498986303127384) +zone = ('nyz176', 0.00098060618720808017) + +[11362] +centroid = (0.71133640813271537, -1.286968178575238) +station = ('klga', 0.0019789698217859302) +zone = ('nyz178', 0.0017546925169783872) + +[11363] +centroid = (0.71161639385132036, -1.2871196906076039) +station = ('klga', 0.0018177553783689281) +zone = ('nyz176', 0.0013558278748511514) + +[11364] +centroid = (0.71113956989967553, -1.2873654504195771) +station = ('klga', 0.0017529158841235347) +zone = ('nyz176', 0.0011010454128996502) + +[11365] +centroid = (0.71104074935742756, -1.2879568203300302) +station = ('klga', 0.001400399697597747) +zone = ('nyz176', 0.00066818648590092949) + +[11366] +centroid = (0.71084035065271356, -1.2877915201965739) +station = ('klga', 0.0016177248499240737) +zone = ('nyz176', 0.00085103605149488117) + +[11367] +centroid = (0.71087513506470579, -1.2885247504686292) +station = ('klga', 0.0011898928528712768) +zone = ('nyz176', 0.0003824840179839553) + +[11368] +centroid = (0.71121132038522494, -1.2889741727510178) +station = ('klga', 0.00071674954850730656) +zone = ('nyz176', 0.00012124871321884426) + +[11369] +centroid = (0.71145442729673525, -1.2893173568418375) +station = ('klga', 0.00037753625894454261) +zone = ('nyz176', 0.00046373117158068759) + +[11370] +centroid = (0.71148992729372074, -1.2896803853262522) +station = ('klga', 0.00033977860825109267) +zone = ('nyz176', 0.00072055005656175661) + +[11371] +centroid = (0.71163768686819473, -1.2893340421894866) +station = ('klga', 0.00021145861918318615) +zone = ('nyz176', 0.00059702816256792352) + +[11372] +centroid = (0.71125116625204809, -1.2895127464515983) +station = ('klga', 0.00055229503634608799) +zone = ('nyz176', 0.0005306619315505654) + +[11373] +centroid = (0.71102662964377894, -1.2894232110609709) +station = ('klga', 0.0007794316823315692) +zone = ('nyz176', 0.00048608882191645457) + +[11374] +centroid = (0.71080956304470844, -1.2891265225414243) +station = ('klga', 0.0010349202968308855) +zone = ('nyz176', 0.00044398972342729923) + +[11375] +centroid = (0.71071440769388972, -1.2888584748749032) +station = ('klga', 0.0011948578267031642) +zone = ('nyz176', 0.00047337810299188861) + +[11377] +centroid = (0.71113070362707531, -1.2898887427323553) +station = ('klga', 0.00073211586733722524) +zone = ('nyz176', 0.00081355754257941707) + +[11378] +centroid = (0.71078086983180566, -1.2899665495104093) +station = ('klga', 0.0010801031594043697) +zone = ('nyz176', 0.00096066196672888848) + +[11379] +centroid = (0.71064131330481617, -1.2894422875096951) +station = ('klga', 0.0011631806050030492) +zone = ('nyz176', 0.00072229174825999597) + +[11385] +centroid = (0.71036071672097301, -1.2896138882817512) +station = ('klga', 0.0014449828619143702) +zone = ('nyz176', 0.0010230724645793785) + +[11411] +centroid = (0.71024465232571532, -1.2869397820683082) +station = ('kjfk', 0.0011333159674593769) +zone = ('nyz178', 0.00089735003376026877) + +[11412] +centroid = (0.71031575703944172, -1.2873371586324021) +station = ('kjfk', 0.0011348687803457772) +zone = ('nyz178', 0.00072706300134550369) + +[11413] +centroid = (0.70985436179838435, -1.2872251434010091) +station = ('kjfk', 0.00069447166133911303) +zone = ('nyz178', 0.00053556148185129697) + +[11414] +centroid = (0.70960905577201661, -1.2888349652898787) +station = ('kjfk', 0.0011181038447151486) +zone = ('nyz178', 0.00071029799847083079) + +[11415] +centroid = (0.71048718327857252, -1.2885453802603877) +station = ('klga', 0.0015045894039742024) +zone = ('nyz176', 0.00072932837914393078) + +[11416] +centroid = (0.71008116733468107, -1.2889177637095934) +station = ('kjfk', 0.0014165076130241375) +zone = ('nyz178', 0.00083687129625314419) + +[11417] +centroid = (0.70993791070967738, -1.288828664651279) +station = ('kjfk', 0.0012754369267601649) +zone = ('nyz178', 0.00072337290608270465) + +[11418] +centroid = (0.71035375285725755, -1.28868080035705) +station = ('kjfk', 0.0014854993976119012) +zone = ('nyz176', 0.00083942277994815667) + +[11419] +centroid = (0.71015131211731874, -1.2884529825297872) +station = ('kjfk', 0.00121964607718411) +zone = ('nyz178', 0.00058403038646064607) + +[11420] +centroid = (0.7098879593864853, -1.2883624872080714) +station = ('kjfk', 0.00097505537264702268) +zone = ('nyz178', 0.00037356346761589586) + +[11421] +centroid = (0.71024536791070869, -1.2890762046990893) +station = ('klga', 0.0015919690752860519) +zone = ('nyz176', 0.00096160639196355216) + +[11422] +centroid = (0.70965192105844566, -1.2869361866900491) +station = ('kjfk', 0.00061837216598180649) +zone = ('nyz178', 0.00074584980666626789) + +[11423] +centroid = (0.71062138164475841, -1.2875027031119539) +station = ('kjfk', 0.0014361275364815844) +zone = ('nyz178', 0.00093981442609691076) + +[11424] +centroid = (0.71059865745789741, -1.2885288170857865) +station = ('klga', 0.0014146215019686357) +zone = ('nyz176', 0.00062745896187771778) + +[11425] +centroid = (0.7087390091398974, -1.2919614259388539) +station = ('kewr', 0.0023049183842708421) +zone = ('nyz075', 0.0012389681104512521) + +[11426] +centroid = (0.71098533515367679, -1.2866981935932471) +station = ('kjfk', 0.0018929311932179707) +zone = ('nyz178', 0.0015533572896763331) + +[11427] +centroid = (0.71088808540775561, -1.2871048553089619) +station = ('kjfk', 0.001725150124968661) +zone = ('nyz178', 0.0013061982046081919) + +[11428] +centroid = (0.71071580395729128, -1.2870449730623259) +station = ('kjfk', 0.0015641194780172268) +zone = ('nyz178', 0.0011816037704891868) + +[11429] +centroid = (0.71051952422961195, -1.2869824902751044) +station = ('kjfk', 0.001384610539941832) +zone = ('nyz178', 0.0010555882949798132) + +[11430] +centroid = (0.70942618017299264, -1.2878021841583036) +station = ('kjfk', 0.00034788557086130016) +zone = ('nyz178', 0.00031979242577671413) + +[11432] +centroid = (0.71061707068150592, -1.2879320541079444) +station = ('kjfk', 0.0014736657328466526) +zone = ('nyz178', 0.00088253483746629144) + +[11433] +centroid = (0.71031692641004052, -1.2878242276667564) +station = ('kjfk', 0.001162727005410128) +zone = ('nyz178', 0.0005861869985372114) + +[11434] +centroid = (0.7099442288015696, -1.2876415266006576) +station = ('kjfk', 0.00076969865933045804) +zone = ('nyz178', 0.0002939943662863269) + +[11435] +centroid = (0.71037108397672988, -1.2882206268464693) +station = ('kjfk', 0.0013148540394554899) +zone = ('nyz178', 0.00067774713984921373) + +[11436] +centroid = (0.70992698494855988, -1.2879939434832202) +station = ('kjfk', 0.00084091538151702437) +zone = ('nyz178', 0.00020181279639083056) + +[11451] +centroid = (0.71037138068270267, -1.2879826861095449) +station = ('kjfk', 0.001247772188550539) +zone = ('nyz178', 0.00063889753593630871) + +[11501] +centroid = (0.71115679629939266, -1.2852414370797776) +station = ('kjfk', 0.0025970657470190325) +zone = ('nyz179', 0.0012206649988623028) + +[11507] +centroid = (0.71158551897685263, -1.2854744385349188) +station = ('kjfk', 0.002837574305329073) +zone = ('nyz177', 0.0013104355505647418) + +[11509] +centroid = (0.70839359102763533, -1.2868055662488298) +station = ('kjfk', 0.00093936048763370921) +zone = ('nyz178', 0.0015828321687287599) + +[11510] +centroid = (0.70947855750384492, -1.2846968768998628) +station = ('kjfk', 0.0021254636692495422) +zone = ('nyz179', 0.00077037038558179808) + +[11514] +centroid = (0.71121976777880458, -1.2847800767453055) +station = ('utff', 0.002600157386064718) +zone = ('nyz179', 0.0011079820620038209) + +[11516] +centroid = (0.70905374436390967, -1.2867733998307156) +station = ('kjfk', 0.00054572608050088391) +zone = ('nyz178', 0.001100807234411043) + +[11518] +centroid = (0.70925768608700512, -1.2857283315812065) +station = ('kjfk', 0.001324588609440587) +zone = ('nyz179', 0.0014365300365365744) + +[11520] +centroid = (0.70946588641347552, -1.2842647682836539) +station = ('utff', 0.0026485796507412589) +zone = ('nyz179', 0.00071387391104332017) + +[11530] +centroid = (0.71081769627902269, -1.2852082583706972) +station = ('kjfk', 0.002368403693399457) +zone = ('nyz179', 0.0009520142314601161) + +[11542] +centroid = (0.71336153111709699, -1.2850618776063323) +station = ('khpn', 0.0035152046910668466) +zone = ('nyz177', 0.00079595320943860954) + +[11545] +centroid = (0.71255372292610386, -1.2843767137018769) +station = ('utff', 0.0027891669065088095) +zone = ('nyz177', 0.00016591092481321951) + +[11547] +centroid = (0.71268198717283293, -1.2853073581656254) +station = ('klga', 0.0032981856994146021) +zone = ('nyz177', 0.00059539785862790728) + +[11548] +centroid = (0.71231892378183315, -1.2850406369493355) +station = ('klga', 0.0034204998123283608) +zone = ('nyz177', 0.00053350531538481699) + +[11549] +centroid = (0.71064990032473585, -1.2846102562090862) +station = ('utff', 0.0024752652565589047) +zone = ('nyz179', 0.00053409126400934498) + +[11550] +centroid = (0.71037474916815913, -1.2849307335663376) +station = ('kjfk', 0.0022644250442912942) +zone = ('nyz179', 0.00053328088527849322) + +[11552] +centroid = (0.71022646599490957, -1.2854771612485518) +station = ('kjfk', 0.0018362047304556421) +zone = ('nyz179', 0.00091188300408723136) + +[11553] +centroid = (0.71046123023259533, -1.2844161057830945) +station = ('utff', 0.0023607917713416682) +zone = ('nyz179', 0.00030086886672387781) + +[11554] +centroid = (0.71070007854073081, -1.2838443184668484) +station = ('utff', 0.0018930260534315035) +zone = ('nyz179', 0.00061475427471865008) + +[11556] +centroid = (0.71069253871836224, -1.284279708302051) +station = ('utff', 0.0022214585517137085) +zone = ('nyz179', 0.00051283740763584417) + +[11557] +centroid = (0.70925251991241911, -1.2861676135006408) +station = ('kjfk', 0.00099153319236631836) +zone = ('nyz179', 0.0017083161042842374) + +[11558] +centroid = (0.7086971735977271, -1.2854183436527598) +station = ('kjfk', 0.0016329435505921094) +zone = ('nyz179', 0.0017172656454085913) + +[11559] +centroid = (0.70869932035270711, -1.2865905416849841) +station = ('kjfk', 0.00082654768147579351) +zone = ('nyz178', 0.0014420899435487417) + +[11560] +centroid = (0.71350381035771959, -1.2843655261413716) +station = ('utff', 0.0034198795250251564) +zone = ('nyz177', 0.00083307116850992022) + +[11561] +centroid = (0.70841310380867251, -1.2854031941948525) +station = ('kjfk', 0.0017496228796045467) +zone = ('nyz179', 0.0019627457425297596) + +[11563] +centroid = (0.70960292966634209, -1.2858491258187368) +station = ('kjfk', 0.0012996450981840179) +zone = ('nyz179', 0.0013251462595348679) + +[11565] +centroid = (0.70991373789953727, -1.2858131371295609) +station = ('kjfk', 0.0014535230224394552) +zone = ('nyz179', 0.0011955472813235384) + +[11566] +centroid = (0.70970740507536645, -1.2837556208342624) +station = ('utff', 0.0021933614928258786) +zone = ('nyz179', 0.00061553249235643071) + +[11568] +centroid = (0.71186681369239646, -1.2845013302104693) +station = ('utff', 0.0025463603305270516) +zone = ('nyz177', 0.00081233521716387897) + +[11569] +centroid = (0.70842540837989909, -1.2842534934566863) +station = ('kjfk', 0.0025582103665399624) +zone = ('nyz179', 0.0017543840788546705) + +[11570] +centroid = (0.70975674553332035, -1.2852326929802249) +station = ('kjfk', 0.0017918885970205957) +zone = ('nyz179', 0.00083976183986307596) + +[11572] +centroid = (0.70915820231964144, -1.2852015388530769) +station = ('kjfk', 0.0017226732856723916) +zone = ('nyz179', 0.0012394789048119901) + +[11575] +centroid = (0.71000730500073672, -1.2842983833250476) +station = ('utff', 0.002411731321662313) +zone = ('nyz179', 0.00017323004895901799) + +[11576] +centroid = (0.71208410718426973, -1.2853907849038708) +station = ('klga', 0.0031292945899048701) +zone = ('nyz177', 0.00088757175427434207) + +[11577] +centroid = (0.71180227141665764, -1.2852406691349065) +station = ('kjfk', 0.0031155536382431767) +zone = ('nyz177', 0.0010324077018905797) + +[11579] +centroid = (0.71286255893724437, -1.2853303790584591) +station = ('klga', 0.0033340475391651966) +zone = ('nyz177', 0.00063965769252468177) + +[11580] +centroid = (0.70991092791944155, -1.2863452531119086) +station = ('kjfk', 0.0011207132497350106) +zone = ('nyz178', 0.0012023669940845066) + +[11581] +centroid = (0.70949428292040539, -1.2865751304276891) +station = ('kjfk', 0.00074678870823910698) +zone = ('nyz178', 0.0010432672863325946) + +[11590] +centroid = (0.71131211314952758, -1.2841144430751796) +station = ('utff', 0.0021133026137190808) +zone = ('nyz179', 0.0011390124177128127) + +[11596] +centroid = (0.71139039116647962, -1.2853007433677603) +station = ('kjfk', 0.0027513134252423813) +zone = ('nyz177', 0.0014175713803923464) + +[11598] +centroid = (0.7091433146611219, -1.2865229625363468) +station = ('kjfk', 0.00072086477839312154) +zone = ('nyz178', 0.0012093645264798698) + +[11691] +centroid = (0.70862598161753831, -1.287383671656968) +station = ('kjfk', 0.00056340343858276632) +zone = ('nyz178', 0.0011792931576577871) + +[11692] +centroid = (0.70850061461736757, -1.2879289997817536) +station = ('kjfk', 0.00076796438919379047) +zone = ('nyz178', 0.0012340921184708913) + +[11693] +centroid = (0.70844122106292207, -1.2882231401205921) +station = ('kjfk', 0.00093792893284304314) +zone = ('nyz178', 0.0013146229195408199) + +[11694] +centroid = (0.70822441626323951, -1.2888342322515929) +station = ('kjfk', 0.0014122422031085948) +zone = ('nyz178', 0.0016641385675763016) + +[11697] +centroid = (0.70783016383850639, -1.2901593909394622) +station = ('kjfk', 0.0024501847059103569) +zone = ('nyz075', 0.0015479920447843292) + +[11701] +centroid = (0.71002495027947432, -1.2812479317649967) +station = ('kfrg', 0.0009099898456635941) +zone = ('nyz179', 0.0023014506990879807) + +[11702] +centroid = (0.70948648129864911, -1.2786703248058964) +station = ('utff', 0.0025120075229335308) +zone = ('nyz080', 0.002034400961341329) + +[11703] +centroid = (0.7109192046283187, -1.2797788183204231) +station = ('utff', 0.0012040370277952117) +zone = ('nyz080', 0.0019174908898462626) + +[11704] +centroid = (0.71065450799396113, -1.280342175696382) +station = ('utff', 0.00082960177935941827) +zone = ('nyz179', 0.0030198233773325828) + +[11705] +centroid = (0.71110433170207765, -1.2750649632634667) +station = ('kisp', 0.0011492557913636598) +zone = ('nyz080', 0.0016832022386580009) + +[11706] +centroid = (0.71074235041521416, -1.2784917776234175) +station = ('utff', 0.0021886122661917032) +zone = ('nyz080', 0.0010376551261745237) + +[11709] +centroid = (0.71395272649462493, -1.2838555583872315) +station = ('khpn', 0.0033530288800133214) +zone = ('nyz177', 0.0013693494002867438) + +[11710] +centroid = (0.70985687507250728, -1.2834019298613455) +station = ('utff', 0.0018877680549915822) +zone = ('nyz179', 0.00073735268106286912) + +[11713] +centroid = (0.71167810869367087, -1.2731005951903471) +station = ('khwv', 0.0012349106166342123) +zone = ('nyz080', 0.0031981461185188668) + +[11714] +centroid = (0.71109169551829332, -1.282574067837247) +station = ('utff', 0.00092593073049670831) +zone = ('nyz179', 0.0015798549553697695) + +[11715] +centroid = (0.71123922819996432, -1.2746990724390785) +station = ('kisp', 0.0012132834444513404) +zone = ('nyz080', 0.0019558577670868759) + +[11716] +centroid = (0.71168762073809422, -1.2764440526252225) +station = ('kisp', 0.0006144762778637372) +zone = ('nyz080', 0.00078353500788690567) + +[11717] +centroid = (0.71181098060962522, -1.2784922139557304) +station = ('utff', 0.002343578231099866) +zone = ('nyz080', 0.001087615806005028) + +[11718] +centroid = (0.7107535205224268, -1.2787763535579553) +station = ('utff', 0.0019728615225649867) +zone = ('nyz080', 0.0012280961029690781) + +[11719] +centroid = (0.71178284590208307, -1.2725562793565277) +station = ('khwv', 0.00085044069844155995) +zone = ('nyz080', 0.003621197715143235) + +[11720] +centroid = (0.7133211441982058, -1.2755232169118704) +station = ('kisp', 0.0012493802483615837) +zone = ('nyz078', 0.0011871351192660133) + +[11721] +centroid = (0.71385291111470339, -1.2805907803950358) +station = ('utff', 0.0029663875613265751) +zone = ('nyz177', 0.0031951765466487815) + +[11722] +centroid = (0.71179820479950062, -1.2774924719068956) +station = ('kisp', 0.0012888229008908619) +zone = ('nyz080', 0.00059336260371081349) + +[11724] +centroid = (0.71321525507248729, -1.28205573995599) +station = ('utff', 0.0023289633430530481) +zone = ('nyz177', 0.0019399761647485769) + +[11725] +centroid = (0.71280087900147882, -1.2789910290559505) +station = ('utff', 0.00258463341849714) +zone = ('nyz078', 0.0015828476470058997) + +[11726] +centroid = (0.70997880377405165, -1.2809971279514853) +station = ('kfrg', 0.00099146506614400149) +zone = ('nyz179', 0.0024945773276562489) + +[11727] +centroid = (0.71352677889067573, -1.2741604114720355) +station = ('kisp', 0.0019126336616410381) +zone = ('nyz078', 0.0022114249908761203) + +[11729] +centroid = (0.71144329209610757, -1.2797006275699336) +station = ('utff', 0.0013573577903726898) +zone = ('nyz080', 0.0018457133689035292) + +[11730] +centroid = (0.7106437218591839, -1.2770542371850124) +station = ('kisp', 0.0017193711248928946) +zone = ('nyz080', 0.00060793217923180913) + +[11731] +centroid = (0.7131877486834759, -1.2796221401134715) +station = ('utff', 0.0026026827467248415) +zone = ('nyz078', 0.0019377625581688033) + +[11732] +centroid = (0.71287512530785857, -1.2834610441631107) +station = ('utff', 0.0024973460024855921) +zone = ('nyz177', 0.00082512829057206181) + +[11733] +centroid = (0.71454210672973095, -1.27605880609943) +station = ('kisp', 0.0024535800819180239) +zone = ('nyz078', 0.0013370561226417846) + +[11735] +centroid = (0.71092054853184272, -1.2816439469722742) +station = ('utff', 0.00021101522620351574) +zone = ('nyz179', 0.0021282793700710765) + +[11738] +centroid = (0.71276087605502303, -1.2747574362492653) +station = ('kisp', 0.0010536229463085336) +zone = ('nyz078', 0.0018903021825986883) + +[11739] +centroid = (0.71086162621629534, -1.276880681644194) +station = ('kisp', 0.0014649265455104865) +zone = ('nyz080', 0.00047470401982340827) + +[11740] +centroid = (0.71323579759778322, -1.2803960889169761) +station = ('utff', 0.0024055908256182578) +zone = ('nyz080', 0.0030976841352027421) + +[11741] +centroid = (0.71200406638477332, -1.2753178440187882) +station = ('kisp', 0.00040227564944557708) +zone = ('nyz080', 0.0016774622256956824) + +[11742] +centroid = (0.71226905972510368, -1.2748133740517917) +station = ('kisp', 0.00079330530262219511) +zone = ('nyz080', 0.002139392213072772) + +[11743] +centroid = (0.71354969506375443, -1.281484284252302) +station = ('utff', 0.0026058650609795883) +zone = ('nyz177', 0.0024558520619334359) + +[11746] +centroid = (0.71234335839136098, -1.2804132629568155) +station = ('utff', 0.0015737108273075873) +zone = ('nyz080', 0.0026215024810892986) + +[11747] +centroid = (0.71189411064189767, -1.2811990450926485) +station = ('utff', 0.00095730939200738602) +zone = ('nyz179', 0.002893918655169362) + +[11749] +centroid = (0.71221193509868586, -1.2770729645678862) +station = ('kisp', 0.00094392267572698666) +zone = ('nyz080', 0.00099752424484656887) + +[11751] +centroid = (0.71088108663745508, -1.277824032104897) +station = ('kisp', 0.0019338769014751113) +zone = ('nyz080', 0.00053757802297976841) + +[11752] +centroid = (0.71134583291067621, -1.277127436293841) +station = ('kisp', 0.0012316917792973686) +zone = ('nyz080', 0.00016626284183668353) + +[11753] +centroid = (0.71191494987316639, -1.2835135785735958) +station = ('utff', 0.0018927918816257089) +zone = ('nyz177', 0.001079135783687451) + +[11754] +centroid = (0.71358774324144791, -1.2784515826907441) +station = ('kisp', 0.0024792121855738681) +zone = ('nyz078', 0.0010431290775610024) + +[11755] +centroid = (0.71310308276146162, -1.2761292126814552) +station = ('kisp', 0.0010329096836997334) +zone = ('nyz078', 0.00080172807250913642) + +[11756] +centroid = (0.71077778059902963, -1.2831020648425604) +station = ('utff', 0.0013251644381697323) +zone = ('nyz179', 0.0010722606849109212) + +[11757] +centroid = (0.71015719387689802, -1.2806061567457461) +station = ('kfrg', 0.00096290104531407167) +zone = ('nyz179', 0.0027828290256285203) + +[11758] +centroid = (0.70980680157626752, -1.2820917810050436) +station = ('kfrg', 0.0012525823190175211) +zone = ('nyz179', 0.0016979652144555443) + +[11762] +centroid = (0.71004783154596796, -1.2818861114059885) +station = ('kfrg', 0.00096804504824008928) +zone = ('nyz179', 0.0018170872396417498) + +[11763] +centroid = (0.71256349676991504, -1.2738272979309999) +station = ('khwv', 0.0015721032710015127) +zone = ('nyz080', 0.0029365559987251906) + +[11764] +centroid = (0.714520220300911, -1.2737246551176902) +station = ('khwv', 0.0025995378693790213) +zone = ('nyz078', 0.0027540626867622584) + +[11765] +centroid = (0.71352875111273051, -1.2838457147302502) +station = ('utff', 0.0031926206196416771) +zone = ('nyz177', 0.00099119560945388086) + +[11766] +centroid = (0.71452416474502045, -1.2744161371140377) +station = ('kisp', 0.0026563869329960009) +zone = ('nyz078', 0.0022832314209596063) + +[11767] +centroid = (0.71284393627412546, -1.2766248512824367) +station = ('kisp', 0.00095841208992250733) +zone = ('nyz078', 0.00070025707930841425) + +[11768] +centroid = (0.71425210282121954, -1.2800124131875099) +station = ('utff', 0.0034620672897668799) +zone = ('nyz078', 0.0023538183811044953) + +[11769] +centroid = (0.71098215865443815, -1.2763564370967724) +station = ('kisp', 0.0011800360035658184) +zone = ('nyz080', 0.00074188148431866396) + +[11770] +centroid = (0.70940377014539702, -1.2768234697513134) +station = ('kisp', 0.0027927700881179946) +zone = ('nyz080', 0.0018558160922923744) + +[11771] +centroid = (0.71336491705584582, -1.2832536815946811) +station = ('utff', 0.0028094642631132996) +zone = ('nyz177', 0.001178359193077442) + +[11772] +centroid = (0.71142726997357431, -1.273870564643157) +station = ('khwv', 0.0018609814238850562) +zone = ('nyz080', 0.0025910103763569677) + +[11776] +centroid = (0.7140772906433398, -1.2749001692754933) +station = ('kisp', 0.0021054151189552912) +zone = ('nyz078', 0.0017648629511292245) + +[11777] +centroid = (0.714818235270689, -1.2752537729819475) +station = ('kisp', 0.0027592064111761883) +zone = ('nyz078', 0.0019436998207360435) + +[11778] +centroid = (0.71467825986467903, -1.2729923149635534) +station = ('khwv', 0.0024741680398177889) +zone = ('nyz078', 0.0033260270160608832) + +[11779] +centroid = (0.71231129669300186, -1.2761168208437661) +station = ('kisp', 0.00030390169724441978) +zone = ('nyz078', 0.001355185318534927) + +[11780] +centroid = (0.71400175279331346, -1.2771399503045777) +station = ('kisp', 0.0021474276053052551) +zone = ('nyz078', 0.00055120059553038679) + +[11782] +centroid = (0.71101376656719173, -1.2755157643559645) +station = ('kisp', 0.0011073988035814122) +zone = ('nyz080', 0.0013541370174210252) + +[11783] +centroid = (0.70995826124875572, -1.2826427116367281) +station = ('kfrg', 0.0013738868976393272) +zone = ('nyz179', 0.0012582625578233936) + +[11784] +centroid = (0.71329726809403859, -1.2748096914070699) +station = ('kisp', 0.0014316561124323123) +zone = ('nyz078', 0.0017263948942364095) + +[11786] +centroid = (0.71472079353855011, -1.2721121628750651) +station = ('khwv', 0.0023504205347408937) +zone = ('nyz078', 0.0039652714694557532) + +[11787] +centroid = (0.71301803286701193, -1.2777775365336237) +station = ('kisp', 0.0017356024982858197) +zone = ('nyz078', 0.0006811096769610115) + +[11788] +centroid = (0.71240980307598445, -1.27780937133918) +station = ('kisp', 0.0015268148538858221) +zone = ('nyz078', 0.0011781378275140368) + +[11789] +centroid = (0.71492225689410782, -1.2735843480991222) +station = ('khwv', 0.0028864957132191797) +zone = ('nyz078', 0.0030252983266053379) + +[11790] +centroid = (0.71394363332922206, -1.2763134496372959) +station = ('kisp', 0.0018842767697074415) +zone = ('nyz078', 0.00076187137117725301) + +[11791] +centroid = (0.71258805355249066, -1.2829203586141353) +station = ('utff', 0.0020202246821279389) +zone = ('nyz177', 0.0012141035255324641) + +[11792] +centroid = (0.71479954279440006, -1.2710462903008721) +station = ('khwv', 0.0024744165698973352) +zone = ('nyz079', 0.0032913319910490169) + +[11793] +centroid = (0.70948147220369584, -1.2830711376082151) +station = ('kfrg', 0.0019439123019183286) +zone = ('nyz179', 0.001150129029977041) + +[11794] +centroid = (0.71407208956216883, -1.2762696418730708) +station = ('kisp', 0.0020048054081464135) +zone = ('nyz078', 0.00087339478615899131) + +[11795] +centroid = (0.71050617246083414, -1.2792624103013428) +station = ('utff', 0.0016546884848413915) +zone = ('nyz080', 0.0016656520439873054) + +[11796] +centroid = (0.71089489219183832, -1.2758304646733913) +station = ('kisp', 0.0011994491340497561) +zone = ('nyz080', 0.0011479489410249619) + +[11797] +centroid = (0.71244947440988227, -1.2823296519287979) +station = ('utff', 0.0016713476933437259) +zone = ('nyz177', 0.0016735608980602166) + +[11798] +centroid = (0.71126703129494862, -1.2807006663247416) +station = ('utff', 0.0005988829260830848) +zone = ('nyz179', 0.0029197922022586109) + +[11801] +centroid = (0.71143641549885472, -1.2832437681245299) +station = ('utff', 0.0015039447524949007) +zone = ('nyz179', 0.001480323579517012) + +[11803] +centroid = (0.71177493956057147, -1.2823463721830319) +station = ('utff', 0.0011127174111222294) +zone = ('nyz179', 0.0021639742512475522) + +[11804] +centroid = (0.71137892435329408, -1.2820732107018025) +station = ('utff', 0.00068842807634010399) +zone = ('nyz179', 0.0020555358942448221) + +[11901] +centroid = (0.71428882454868159, -1.2679454685386091) +station = ('kfok', 0.0013846722144313329) +zone = ('nyz079', 0.0014583184072840579) + +[11930] +centroid = (0.71540300783656963, -1.2583482345944501) +station = ('khto', 0.0020950633371844981) +zone = ('nyz081', 0.0049548645048137739) + +[11931] +centroid = (0.71442440172497645, -1.2673419685898546) +station = ('kfok', 0.0014580606719642678) +zone = ('nyz079', 0.0011095321314178834) + +[11932] +centroid = (0.71443907994398581, -1.2619890612272804) +station = ('khto', 0.00084377090675492416) +zone = ('nyz081', 0.0020529991989525821) + +[11933] +centroid = (0.71455692457508035, -1.2700334582826474) +station = ('khwv', 0.0025351230352641317) +zone = ('nyz079', 0.0026185158179035765) + +[11934] +centroid = (0.71206569396066122, -1.2705001593246308) +station = ('khwv', 0.0010080270963151664) +zone = ('nyz079', 0.0044017158302219811) + +[11935] +centroid = (0.71595540454482587, -1.2651360818548438) +station = ('kfok', 0.0034431647194686143) +zone = ('nyz079', 0.0013351955839241462) + +[11937] +centroid = (0.71578792274980441, -1.259525354455165) +station = ('khto', 0.0014584189952733687) +zone = ('nyz081', 0.0042515984222167126) + +[11939] +centroid = (0.71773377287956053, -1.2621409572320814) +station = ('khto', 0.0029760495892018962) +zone = ('ctz011', 0.0038801500335807616) + +[11940] +centroid = (0.71231532840357403, -1.2697659691214866) +station = ('kfok', 0.001905157707532657) +zone = ('nyz079', 0.0038637054529882028) + +[11941] +centroid = (0.71262072611608795, -1.2693737936385636) +station = ('kfok', 0.001532927886723806) +zone = ('nyz079', 0.0034429644745181181) + +[11942] +centroid = (0.71298056064797166, -1.2667988395799263) +station = ('kfok', 0.00045487541353121989) +zone = ('nyz081', 0.0019330648310739822) + +[11944] +centroid = (0.71740065933852482, -1.2631216751920693) +station = ('khto', 0.0029744481045901479) +zone = ('nyz079', 0.00337575377909375) + +[11946] +centroid = (0.71332077767906288, -1.2657425139567418) +station = ('kfok', 0.0013024814926655057) +zone = ('nyz081', 0.0010876376987912109) + +[11947] +centroid = (0.7147238304114486, -1.2666038164893085) +station = ('kfok', 0.0018570255720106496) +zone = ('nyz079', 0.00073436910812516064) + +[11948] +centroid = (0.71495264307638506, -1.2662984013235021) +station = ('kfok', 0.0021531007177408917) +zone = ('nyz079', 0.00061028099728606573) + +[11949] +centroid = (0.71325342542322845, -1.2706792824657627) +station = ('khwv', 0.0011942553540294234) +zone = ('nyz079', 0.003677752749644706) + +[11950] +centroid = (0.71223451965920659, -1.2714201747332343) +station = ('khwv', 0.00030022172529708019) +zone = ('nyz080', 0.0045508166806460188) + +[11951] +centroid = (0.71145142533042183, -1.271129298160097) +station = ('khwv', 0.0010499282291229672) +zone = ('nyz080', 0.0046651052802771358) + +[11952] +centroid = (0.71561375634374802, -1.2661944669665457) +station = ('kfok', 0.0027990830773057416) +zone = ('nyz079', 0.00046679186184952196) + +[11953] +centroid = (0.7137222383136067, -1.2732486340175013) +station = ('khwv', 0.0017463839373391416) +zone = ('nyz078', 0.0029118488244233511) + +[11954] +centroid = (0.71641515917638621, -1.255701320610753) +station = ('kmtp', 0.00051393428701849801) +zone = ('riz008', 0.0053464390772632962) + +[11955] +centroid = (0.71225359610793093, -1.270880623648273) +station = ('khwv', 0.0006808572166859617) +zone = ('nyz079', 0.0044544010545080372) + +[11956] +centroid = (0.71504479646089036, -1.2647035369063222) +station = ('kfok', 0.0029102896006359619) +zone = ('nyz081', 0.00101564915357419) + +[11957] +centroid = (0.71893953359330065, -1.2592370435160281) +station = ('kgon', 0.0027844825791990455) +zone = ('ctz012', 0.0030146701951858442) + +[11958] +centroid = (0.71626684109655181, -1.2647427020947368) +station = ('khto', 0.0031247993710065169) +zone = ('nyz079', 0.0017369129411641062) + +[11959] +centroid = (0.71248853487854191, -1.2671325116263226) +station = ('kfok', 0.000519482160471265) +zone = ('nyz081', 0.0024281088924908447) + +[11960] +centroid = (0.71227960151378567, -1.2689601680591336) +station = ('kfok', 0.0013661002081601574) +zone = ('nyz079', 0.0035732383747699228) + +[11961] +centroid = (0.7139293565359407, -1.2721416763927165) +station = ('khwv', 0.0015704335940341684) +zone = ('nyz080', 0.0047355053791554415) + +[11962] +centroid = (0.71437888353808443, -1.261327092748584) +station = ('khto', 0.00054514959125629304) +zone = ('nyz081', 0.0025361803015278139) + +[11963] +centroid = (0.71547828388720824, -1.2622255358876329) +station = ('khto', 0.0010817366605794664) +zone = ('nyz081', 0.0023356248379282018) + +[11964] +centroid = (0.71655715916432849, -1.2621693362857187) +station = ('khto', 0.00188573188654227) +zone = ('nyz081', 0.003146173304842455) + +[11965] +centroid = (0.71726192311628378, -1.2616705909986687) +station = ('khto', 0.0024325841748555795) +zone = ('nyz081', 0.0039378949874504356) + +[11967] +centroid = (0.71200319372014731, -1.2719170176113996) +station = ('khwv', 0.00039936652420347692) +zone = ('nyz080', 0.0041355576790803681) + +[11968] +centroid = (0.71394309227715402, -1.2638917493646344) +station = ('kfok', 0.0028264419899357179) +zone = ('nyz081', 0.00058079743342545674) + +[11970] +centroid = (0.71451950471591763, -1.2667170185445928) +station = ('kfok', 0.0016360794586034902) +zone = ('nyz079', 0.00092854257516654772) + +[11971] +centroid = (0.71670264981077469, -1.2641581389683663) +station = ('khto', 0.0029813698210228029) +zone = ('nyz079', 0.0023377738230506554) + +[11972] +centroid = (0.71293237210732407, -1.2689053821739134) +station = ('kfok', 0.0011393079909700274) +zone = ('nyz079', 0.0029869904580012282) + +[11973] +centroid = (0.71326672483212861, -1.2720330121934873) +station = ('khwv', 0.00090481735991073406) +zone = ('nyz080', 0.0044651894491911648) + +[11975] +centroid = (0.71455711656129817, -1.2609037980450979) +station = ('khto', 0.00033488737480491727) +zone = ('nyz081', 0.0028803452534486712) + +[11976] +centroid = (0.7142304956450799, -1.2627580009358315) +station = ('khto', 0.0014537870019776977) +zone = ('nyz081', 0.0014449243218338384) + +[11977] +centroid = (0.71257372439933175, -1.268487550350986) +station = ('kfok', 0.00091199845629718538) +zone = ('nyz079', 0.0031522897329068615) + +[11978] +centroid = (0.71255375783268893, -1.2679643879077005) +station = ('kfok', 0.00059425593120788426) +zone = ('nyz079', 0.0030303966672478293) + +[11980] +centroid = (0.71264676642852764, -1.2727597149341401) +station = ('khwv', 0.00079811644293273853) +zone = ('nyz080', 0.0037057177410582723) + +[12007] +centroid = (0.74099114037371838, -1.2902720519426785) +station = ('kalb', 0.0053905317671524462) +zone = ('nyz059', 0.0025125532194235625) + +[12008] +centroid = (0.74793446156387977, -1.2899123744904275) +station = ('ksch', 0.00034825450253084912) +zone = ('nyz049', 0.00090833466559122364) + +[12009] +centroid = (0.74521310928758522, -1.2921639713985478) +station = ('ksch', 0.0029652579176020636) +zone = ('nyz048', 0.0022339461852932435) + +[12010] +centroid = (0.7494029466899228, -1.2945688605748706) +station = ('ksch', 0.0034287344297268267) +zone = ('nyz048', 0.0025859729771551235) + +[12015] +centroid = (0.73818501745565435, -1.2884864753981331) +station = ('kalb', 0.0079496600891470048) +zone = ('nyz060', 0.0014703210589752814) + +[12017] +centroid = (0.73864337582381312, -1.2820477987078933) +station = ('kpsf', 0.0029640650711945343) +zone = ('nyz061', 0.001552347163574634) + +[12018] +centroid = (0.74401349213281187, -1.2831795051014714) +station = ('kalb', 0.0041598534385829606) +zone = ('nyz053', 0.0018087650455239337) + +[12019] +centroid = (0.74934578715691991, -1.2894808069262869) +station = ('ksch', 0.001612905248938129) +zone = ('nyz050', 0.00013712838594251152) + +[12020] +centroid = (0.75051931163937591, -1.2892419586181512) +station = ('ksch', 0.0027738780357168861) +zone = ('nyz050', 0.0010580600075376291) + +[12022] +centroid = (0.7445041739987176, -1.2799169262241334) +station = ('kaqw', 0.0022728031079607561) +zone = ('nyz054', 0.0013928261050351555) + +[12023] +centroid = (0.74348509370177063, -1.2947379829793888) +station = ('ksch', 0.005432117458733253) +zone = ('nyz051', 0.0009525010614409809) + +[12024] +centroid = (0.74135980627161713, -1.2833978108843107) +station = ('kpsf', 0.0033067273076220218) +zone = ('nyz061', 0.0038745805028048458) + +[12025] +centroid = (0.75194624047592884, -1.293953806546468) +station = ('ksch', 0.0048399438474263064) +zone = ('nyz082', 0.003874933098010039) + +[12027] +centroid = (0.74936435746016117, -1.289934714704853) +station = ('ksch', 0.0015260649520215741) +zone = ('nyz050', 0.00040938336174718503) + +[12028] +centroid = (0.74934737540653917, -1.2818094041853634) +station = ('kddh', 0.0026147198816344301) +zone = ('nyz054', 0.0038288798794920806) + +[12029] +centroid = (0.74029808758104398, -1.2815073924115983) +station = ('kpsf', 0.0018497331564068724) +zone = ('nyz061', 0.0031564976157168515) + +[12031] +centroid = (0.74640815367971813, -1.2994257279107355) +station = ('kalb', 0.0083548474281855151) +zone = ('nyz040', 0.0023831182174419946) + +[12032] +centroid = (0.7526559262563749, -1.3007078467792506) +station = ('ksch', 0.0089412382115153337) +zone = ('nyz082', 0.0014575350758346502) + +[12033] +centroid = (0.74251783223031531, -1.2864036343753882) +station = ('kalb', 0.0038087984737733161) +zone = ('nyz052', 0.0026295736814059387) + +[12035] +centroid = (0.74579084817658037, -1.2977868811964053) +station = ('kalb', 0.0071568762249290575) +zone = ('nyz047', 0.0027122028729900495) + +[12036] +centroid = (0.74248948808326298, -1.3032906373662292) +station = ('kalb', 0.011783956084224516) +zone = ('nyz047', 0.003078587709195813) + +[12037] +centroid = (0.73905487210155585, -1.2839885699295259) +station = ('kpsf', 0.0039717480943850586) +zone = ('nyz061', 0.0016201046919824475) + +[12040] +centroid = (0.74416214182520424, -1.2802115901617475) +station = ('kaqw', 0.0026028165556521089) +zone = ('nyz054', 0.0015548260270565981) + +[12041] +centroid = (0.74312529407647199, -1.2907174076079098) +station = ('kalb', 0.0035855893814301367) +zone = ('nyz052', 0.0012167009999102221) + +[12042] +centroid = (0.74030789633144023, -1.2904651377178264) +station = ('kalb', 0.0060853028797544124) +zone = ('nyz059', 0.0018491975498692869) + +[12043] +centroid = (0.74515034724768348, -1.3008027228773889) +station = ('kalb', 0.00941752751887741) +zone = ('nyz047', 0.0021670573930149899) + +[12045] +centroid = (0.74146045940957961, -1.2880622731234359) +station = ('kalb', 0.004667800819227557) +zone = ('nyz052', 0.002642388820573883) + +[12046] +centroid = (0.74193012751129128, -1.2902088361171711) +station = ('kalb', 0.0044877782815110163) +zone = ('nyz052', 0.0020486714066892267) + +[12047] +centroid = (0.74672260965104997, -1.2867652665964013) +station = ('kalb', 0.0011166603737899636) +zone = ('nyz053', 0.0019719819109380705) + +[12051] +centroid = (0.73906883473557183, -1.2887955033954912) +station = ('kalb', 0.0070805823024409908) +zone = ('nyz059', 0.0010996451001938589) + +[12052] +centroid = (0.74620627144513996, -1.2824404803362994) +station = ('kddh', 0.0036891958754500811) +zone = ('nyz054', 0.0011407778559395323) + +[12053] +centroid = (0.74625990541305376, -1.2948748866059154) +station = ('ksch', 0.0036714006489361344) +zone = ('nyz048', 0.00072061387426458786) + +[12054] +centroid = (0.74365943464075235, -1.2891772592627799) +station = ('kalb', 0.002603499126980215) +zone = ('nyz052', 0.00030927619110564919) + +[12056] +centroid = (0.74638630215748325, -1.2932043272590765) +station = ('ksch', 0.0025505083882033344) +zone = ('nyz048', 0.00089629251903399789) + +[12057] +centroid = (0.74994864133385131, -1.2801342022627142) +station = ('kddh', 0.001934968317147043) +zone = ('nyz084', 0.0034668136414549937) + +[12058] +centroid = (0.73906192323173392, -1.290119038927156) +station = ('kalb', 0.0072284010307423346) +zone = ('nyz059', 0.00058015234314699683) + +[12059] +centroid = (0.74384587071145036, -1.2926064472705134) +station = ('kalb', 0.0040513232660106951) +zone = ('nyz051', 0.0012599820439060942) + +[12060] +centroid = (0.74020109963451064, -1.2829092583200925) +station = ('kpsf', 0.0028875127277361197) +zone = ('nyz061', 0.0027444755428174053) + +[12061] +centroid = (0.74342208731577364, -1.2856021617295796) +station = ('kalb', 0.0032512070485260511) +zone = ('nyz053', 0.0020059598619682805) + +[12062] +centroid = (0.7424451916268473, -1.2829038477994115) +station = ('kpsf', 0.0033967029208409128) +zone = ('nyz053', 0.0032336093550498725) + +[12063] +centroid = (0.74295460087562692, -1.2852264447015029) +station = ('kalb', 0.0037937839536517077) +zone = ('nyz053', 0.0024103309897866966) + +[12064] +centroid = (0.74375750469142188, -1.3029881019936886) +station = ('ksch', 0.010134478425391683) +zone = ('nyz047', 0.0027815454691466042) + +[12065] +centroid = (0.74791344779968572, -1.2878016081996504) +station = ('kalb', 0.001794695275753045) +zone = ('nyz050', 0.0019425679122699413) + +[12066] +centroid = (0.74701364330382003, -1.2982550483149602) +station = ('kalb', 0.007540679504976661) +zone = ('nyz040', 0.001908105630321476) + +[12067] +centroid = (0.74276781573907857, -1.2901525143422092) +station = ('kalb', 0.0036982235695109948) +zone = ('nyz052', 0.0012466188324892203) + +[12068] +centroid = (0.74972489012374566, -1.2985569728222626) +station = ('ksch', 0.0062691904458213148) +zone = ('nyz040', 0.0010559057348575236) + +[12069] +centroid = (0.74955203271462811, -1.2964242851960808) +station = ('ksch', 0.0047352155778330237) +zone = ('nyz039', 0.0024444396249901131) + +[12070] +centroid = (0.75024824455324868, -1.2961344209139094) +station = ('ksch', 0.0048370703238345093) +zone = ('nyz039', 0.0022313822795492228) + +[12071] +centroid = (0.74268417956132293, -1.2989204027324055) +station = ('ksch', 0.0081437690924029173) +zone = ('nyz047', 0.00066859502359089477) + +[12072] +centroid = (0.74848258221546859, -1.2977699515026611) +station = ('ksch', 0.0054503692227678225) +zone = ('nyz040', 0.0011034136603058713) + +[12074] +centroid = (0.75143784351811549, -1.2920673499711572) +station = ('ksch', 0.0037721372792408167) +zone = ('nyz050', 0.0027764370956367881) + +[12075] +centroid = (0.73827291223678493, -1.2851492313353947) +station = ('kpsf', 0.0050819644562809371) +zone = ('nyz061', 0.0014864768173059465) + +[12076] +centroid = (0.74019888306636061, -1.2984505077378912) +station = ('kalb', 0.0096835583218989902) +zone = ('nyz047', 0.0031622257315593949) + +[12077] +centroid = (0.74330366672602588, -1.2876636922821578) +station = ('kalb', 0.0028390551614762747) +zone = ('nyz052', 0.0014383021930559363) + +[12078] +centroid = (0.75283644566090868, -1.2974713431209373) +station = ('ksch', 0.007178675378903575) +zone = ('nyz082', 0.0011602118655142835) + +[12083] +centroid = (0.74045347424434893, -1.292006315807215) +station = ('kalb', 0.0063776769504241253) +zone = ('nyz059', 0.002441037571822245) + +[12084] +centroid = (0.74533522997534718, -1.2897883513937807) +station = ('kalb', 0.001501319845849565) +zone = ('nyz052', 0.0014581400699361354) + +[12085] +centroid = (0.74531341335969736, -1.2909024299619136) +station = ('kalb', 0.0022462056418997025) +zone = ('nyz052', 0.0017754276676222834) + +[12086] +centroid = (0.75064874525670378, -1.2930504241256355) +station = ('ksch', 0.0033947454194313271) +zone = ('nyz050', 0.00292497862050869) + +[12087] +centroid = (0.74058247152936396, -1.2896742941271628) +station = ('kalb', 0.005672777585522034) +zone = ('nyz059', 0.0021175088974239383) + +[12089] +centroid = (0.74817868548611133, -1.2795492726172009) +station = ('kddh', 0.00084922483579256188) +zone = ('nyz054', 0.002888773869121058) + +[12090] +centroid = (0.7483413676256897, -1.2802256226089335) +station = ('kddh', 0.0013034398189290071) +zone = ('nyz054', 0.0028794600232860046) + +[12092] +centroid = (0.74518715624160803, -1.2981534701524942) +station = ('kalb', 0.0074796625171714539) +zone = ('nyz047', 0.002051178120774095) + +[12093] +centroid = (0.74172646504087614, -1.3025059722411176) +station = ('kalb', 0.011509623802264172) +zone = ('nyz047', 0.002865297344416234) + +[12094] +centroid = (0.74873617855578334, -1.2826388893656662) +station = ('kddh', 0.0030791073022775196) +zone = ('nyz054', 0.0033655861342417859) + +[12095] +centroid = (0.75092471671802907, -1.2985915477947447) +station = ('ksch', 0.0067415463089620783) +zone = ('nyz039', 0.00035175294719192579) + +[12106] +centroid = (0.73983728575193231, -1.2864987897262066) +station = ('kalb', 0.0063942458950229332) +zone = ('nyz060', 0.002537204903120711) + +[12108] +centroid = (0.76049664338803413, -1.2994235811557555) +station = ('kgfl', 0.011375757720455867) +zone = ('nyz033', 0.0016389398056564938) + +[12110] +centroid = (0.74614413772376897, -1.2876202335837832) +station = ('kalb', 0.00031817560804145255) +zone = ('nyz052', 0.0026138738010743679) + +[12115] +centroid = (0.74136868999750982, -1.2841557375652821) +station = ('kpsf', 0.0038549015108765889) +zone = ('nyz061', 0.0039186189440585904) + +[12116] +centroid = (0.74244203258090125, -1.3074464583014456) +station = ('krme', 0.01363890002810559) +zone = ('nyz046', 0.0022769553402866836) + +[12117] +centroid = (0.7534462986081405, -1.2961005964330059) +station = ('ksch', 0.006967990937202009) +zone = ('nyz082', 0.0020630243355754456) + +[12118] +centroid = (0.7489798090660692, -1.2864531668195596) +station = ('kalb', 0.0030834779949506395) +zone = ('nyz050', 0.0022073437270169493) + +[12120] +centroid = (0.74088745036285741, -1.2941414643476423) +station = ('kalb', 0.0068957708519345046) +zone = ('nyz051', 0.0020282999803356546) + +[12121] +centroid = (0.74769725386524122, -1.2846913442061341) +station = ('kalb', 0.0029234491281002113) +zone = ('nyz053', 0.0023516883038583163) + +[12122] +centroid = (0.74249887795463865, -1.2972309763763528) +station = ('ksch', 0.0073647675931839606) +zone = ('nyz047', 0.0016974630815343001) + +[12123] +centroid = (0.74223285487004964, -1.2846654435200344) +station = ('kalb', 0.0046243158936597429) +zone = ('nyz053', 0.0031178805861629666) + +[12124] +centroid = (0.74094656466462239, -1.2880107684572093) +station = ('kalb', 0.0051817837522719849) +zone = ('nyz059', 0.00288884872090057) + +[12125] +centroid = (0.74149873448007597, -1.2810689482502049) +station = ('kpsf', 0.0017481245627763138) +zone = ('maz001', 0.0034504133025627043) + +[12130] +centroid = (0.74075653321566526, -1.2855987059776608) +station = ('kalb', 0.0056674106109152458) +zone = ('nyz060', 0.0035691166365083987) + +[12131] +centroid = (0.74102341151158779, -1.2996520447548416) +station = ('ksch', 0.0096656650772164142) +zone = ('nyz047', 0.0022991527280457214) + +[12132] +centroid = (0.74125044394068718, -1.2850864343889079) +station = ('kalb', 0.0053441424343980345) +zone = ('nyz061', 0.0039555140016039065) + +[12134] +centroid = (0.75513802879880598, -1.295532334681849) +station = ('kgfl', 0.0078597485145732397) +zone = ('nyz082', 0.0030735552086723688) + +[12136] +centroid = (0.74062760574382047, -1.2838555758405239) +station = ('kpsf', 0.0035576060336020335) +zone = ('nyz061', 0.0031568174574203248) + +[12137] +centroid = (0.74805424351044414, -1.2938659292186299) +station = ('ksch', 0.0025617572095352503) +zone = ('nyz048', 0.0012627898581171462) + +[12138] +centroid = (0.74610807922142275, -1.2805552803980502) +station = ('kaqw', 0.0027479375400789332) +zone = ('nyz054', 0.00072148979304231039) + +[12139] +centroid = (0.75922143602335701, -1.3016593653808528) +station = ('kgfl', 0.012549994200657106) +zone = ('nyz033', 0.0029950216693436621) + +[12140] +centroid = (0.74519771548358249, -1.2835162489273513) +station = ('kalb', 0.0034603268754815233) +zone = ('nyz053', 0.0009842637883192716) + +[12143] +centroid = (0.74158722267315202, -1.2890170729440318) +station = ('kalb', 0.0045961145820740262) +zone = ('nyz052', 0.0023333634760251977) + +[12144] +centroid = (0.74399609120016952, -1.2866190603649619) +station = ('kalb', 0.0023784538884624945) +zone = ('nyz053', 0.0018813578909143433) + +[12147] +centroid = (0.74208975532467869, -1.2943159274596716) +station = ('kalb', 0.0061269287410906205) +zone = ('nyz051', 0.00091303165515898904) + +[12148] +centroid = (0.74748599921257985, -1.2888936083527458) +station = ('ksch', 0.001156851927517347) +zone = ('nyz050', 0.0020146345277986233) + +[12149] +centroid = (0.74380091102991897, -1.3013776168797033) +station = ('kalb', 0.010067749527168596) +zone = ('nyz047', 0.0016360836061267163) + +[12150] +centroid = (0.74840627642057145, -1.2924631906455095) +station = ('ksch', 0.0016170749813075641) +zone = ('nyz049', 0.0011904571061020241) + +[12151] +centroid = (0.74914238648589249, -1.2878300221598731) +station = ('ksch', 0.002258531049254157) +zone = ('nyz050', 0.0011898054450138452) + +[12153] +centroid = (0.74403251622165867, -1.2823517128905431) +station = ('kpsf', 0.0042124421400952135) +zone = ('nyz054', 0.0017449960738450123) + +[12154] +centroid = (0.74940004944336447, -1.2846631222321292) +station = ('kalb', 0.0041088028833822553) +zone = ('nyz053', 0.0040540289604317657) + +[12155] +centroid = (0.74344667900493422, -1.3059889512963974) +station = ('krme', 0.013308430941585646) +zone = ('nyz046', 0.0027122614739020791) + +[12156] +centroid = (0.74147702258418113, -1.2871323966045582) +station = ('kalb', 0.0047003103590963803) +zone = ('nyz052', 0.002960338642315481) + +[12157] +centroid = (0.7447284662608914, -1.2965366320400318) +station = ('ksch', 0.005506682224618786) +zone = ('nyz048', 0.0026791895892939589) + +[12158] +centroid = (0.74249957608633943, -1.2884391246155265) +station = ('kalb', 0.003639777683058021) +zone = ('nyz052', 0.0015828033725426532) + +[12159] +centroid = (0.74440784927730008, -1.2895521210795231) +station = ('kalb', 0.0020429359071282545) +zone = ('nyz052', 0.00051476255418012842) + +[12160] +centroid = (0.74633107993995007, -1.2982309278646975) +station = ('kalb', 0.0074759266378429008) +zone = ('nyz040', 0.0025597642851196358) + +[12161] +centroid = (0.7423717656252159, -1.2890105279593367) +station = ('kalb', 0.0038219548563630476) +zone = ('nyz052', 0.0015604322879927807) + +[12164] +centroid = (0.7607540270928258, -1.2978042472224627) +station = ('kgfl', 0.010398211676969558) +zone = ('nyz033', 0.0021665591514071565) + +[12165] +centroid = (0.73837412388010792, -1.2830087420874563) +station = ('kpsf', 0.0036848243766204299) +zone = ('nyz061', 0.00094561653057563132) + +[12166] +centroid = (0.74758742029541325, -1.299318966120391) +station = ('kalb', 0.0083950402338701848) +zone = ('nyz040', 0.0012012592246654651) + +[12167] +centroid = (0.74045492286762815, -1.3016322778708618) +station = ('ksch', 0.011115561055613692) +zone = ('nyz047', 0.0033433690987841468) + +[12168] +centroid = (0.7428271743869389, -1.2807350667642983) +station = ('kpsf', 0.0025543164687394362) +zone = ('nyz054', 0.0027388904400802968) + +[12169] +centroid = (0.74338611607989002, -1.281910057323326) +station = ('kpsf', 0.0034992337053940479) +zone = ('nyz054', 0.0022279135041094358) + +[12170] +centroid = (0.75052571699773074, -1.2857364299089356) +station = ('ksch', 0.0043122463220107181) +zone = ('nyz050', 0.0028775846110191045) + +[12172] +centroid = (0.73807816839884732, -1.2869920372261128) +station = ('kpsf', 0.0063977937843797848) +zone = ('nyz060', 0.00076629242931319666) + +[12173] +centroid = (0.73967076388799957, -1.2873489221515606) +station = ('kalb', 0.0064782780914852045) +zone = ('nyz060', 0.0023796835467859742) + +[12174] +centroid = (0.73920713462549981, -1.2868039605459181) +station = ('kalb', 0.0069820136461365501) +zone = ('nyz060', 0.0018919643804132923) + +[12175] +centroid = (0.74254532116603433, -1.3012517088274644) +station = ('kalb', 0.010348171675694746) +zone = ('nyz047', 0.0016517720138303966) + +[12176] +centroid = (0.7397057402862095, -1.2912096253635572) +station = ('kalb', 0.0068303439781382024) +zone = ('nyz059', 0.0014905442687076233) + +[12177] +centroid = (0.74964025910831644, -1.2965538933463339) +station = ('ksch', 0.0048553426316645439) +zone = ('nyz039', 0.0023148941118980668) + +[12180] +centroid = (0.74610361117853774, -1.2845542311400973) +station = ('kalb', 0.0025693627461280369) +zone = ('nyz053', 0.00078410817744142792) + +[12182] +centroid = (0.74699566641252446, -1.2851010078881622) +station = ('kalb', 0.0023340048140895863) +zone = ('nyz053', 0.0016586970809392737) + +[12183] +centroid = (0.74609107971450839, -1.2861784170887107) +station = ('kalb', 0.0013770650439657796) +zone = ('nyz053', 0.0012324564444775557) + +[12184] +centroid = (0.74036934937440291, -1.2854904432041596) +station = ('kalb', 0.0060600932840483741) +zone = ('nyz060', 0.0032222819181075509) + +[12185] +centroid = (0.7480921171552124, -1.2837614327806715) +station = ('kalb', 0.0037107864427435144) +zone = ('nyz053', 0.0028558852371125009) + +[12186] +centroid = (0.74408908234271576, -1.291145501966839) +station = ('kalb', 0.0030536759328755742) +zone = ('nyz052', 0.0012674492555864016) + +[12187] +centroid = (0.74383908138066013, -1.2996341900365938) +station = ('kalb', 0.0088157027977807684) +zone = ('nyz047', 0.00060161370984532431) + +[12188] +centroid = (0.74737143580047893, -1.2862294854226239) +station = ('kalb', 0.0018265983755021901) +zone = ('nyz053', 0.0022660069603887703) + +[12189] +centroid = (0.74588986070504604, -1.2866134578580628) +station = ('kalb', 0.0010837411443523637) +zone = ('nyz053', 0.0014111627512419344) + +[12190] +centroid = (0.75879290533211485, -1.2965249906939209) +station = ('kgfl', 0.0088359693598992796) +zone = ('nyz033', 0.0042021758073802736) + +[12192] +centroid = (0.74017722353034332, -1.2885360252955971) +station = ('kalb', 0.0059616511690954175) +zone = ('nyz059', 0.0020316400807581323) + +[12193] +centroid = (0.74216216903534393, -1.2922988155365567) +station = ('kalb', 0.0050483798543757667) +zone = ('nyz051', 0.0012797770540676073) + +[12194] +centroid = (0.74226128628356469, -1.2993562638065062) +station = ('ksch', 0.0086619372043787671) +zone = ('nyz047', 0.0010454462784507635) + +[12195] +centroid = (0.74146454348002921, -1.2823822037925754) +station = ('kpsf', 0.0026156621492756595) +zone = ('nyz061', 0.0040559386002743374) + +[12196] +centroid = (0.74406503170562333, -1.2848057330853095) +station = ('kalb', 0.0031549516573371071) +zone = ('nyz053', 0.0012833063644570541) + +[12197] +centroid = (0.74368477682149137, -1.3041929027763404) +station = ('ksch', 0.010976921823846813) +zone = ('nyz047', 0.0036512089692337657) + +[12198] +centroid = (0.74478030253967553, -1.2851483063108911) +station = ('kalb', 0.0025243247621562818) +zone = ('nyz053', 0.00061138901567996107) + +[12202] +centroid = (0.74409934487871754, -1.2874115445651224) +station = ('kalb', 0.0020829687495913462) +zone = ('nyz052', 0.0015074481054263963) + +[12203] +centroid = (0.74488493502833264, -1.2888535530464125) +station = ('kalb', 0.0013754405616553877) +zone = ('nyz052', 0.0010763976072521134) + +[12204] +centroid = (0.74510767394747213, -1.2868975276471173) +station = ('kalb', 0.001327472879887825) +zone = ('nyz053', 0.0015312571428360208) + +[12205] +centroid = (0.74558345070156584, -1.2885633222450983) +station = ('kalb', 0.00066130190012714197) +zone = ('nyz052', 0.0018037296743860572) + +[12206] +centroid = (0.7448107759884155, -1.2877515870632883) +station = ('kalb', 0.0013359626262640909) +zone = ('nyz052', 0.0015417097818378879) + +[12207] +centroid = (0.7445138256694811, -1.2871179103717667) +station = ('kalb', 0.0017545860494508783) +zone = ('nyz052', 0.0018168785927472791) + +[12208] +centroid = (0.74443582690520949, -1.2882271369245792) +station = ('kalb', 0.0016972604020385716) +zone = ('nyz052', 0.0010424792611178875) + +[12209] +centroid = (0.74418545942401093, -1.2878866406408076) +station = ('kalb', 0.0019466390440590589) +zone = ('nyz052', 0.0011797234329363228) + +[12210] +centroid = (0.74455075683645333, -1.2872917800718504) +station = ('kalb', 0.0016737402227343652) +zone = ('nyz052', 0.001710751804124209) + +[12211] +centroid = (0.74530960854192785, -1.2874195381730964) +station = ('kalb', 0.00094165630740471521) +zone = ('nyz052', 0.0020496174209381221) + +[12222] +centroid = (0.74499834652312724, -1.2884584279570535) +station = ('kalb', 0.0011685142831091059) +zone = ('nyz052', 0.001315710791939524) + +[12302] +centroid = (0.74836545316936731, -1.2912383011231676) +station = ('ksch', 0.00079851477703236971) +zone = ('nyz049', 0.0006355651180710764) + +[12303] +centroid = (0.74618993516334142, -1.2902604978630301) +station = ('kalb', 0.001622150906346611) +zone = ('nyz049', 0.0016698262797580903) + +[12304] +centroid = (0.74655917701989327, -1.2897685942666481) +station = ('kalb', 0.0013312317992384764) +zone = ('nyz049', 0.0015391588730279903) + +[12305] +centroid = (0.74720995793808442, -1.2906754149861068) +station = ('ksch', 0.00069807306845724444) +zone = ('nyz049', 0.00061914197430676051) + +[12306] +centroid = (0.74709570868524888, -1.292315675417131) +station = ('ksch', 0.00161871385246412) +zone = ('nyz049', 0.0010849057286173725) + +[12307] +centroid = (0.74708785470361483, -1.2903711691908992) +station = ('ksch', 0.00078575703670573577) +zone = ('nyz049', 0.00084993623659556695) + +[12308] +centroid = (0.74736708993064138, -1.2901416234876768) +station = ('ksch', 0.00053583303298804859) +zone = ('nyz049', 0.00080747993805904575) + +[12309] +centroid = (0.74699793534055214, -1.2891867538539106) +station = ('kalb', 0.0012037131058098905) +zone = ('nyz049', 0.0015992752126328946) + +[12401] +centroid = (0.73282083526611241, -1.2917229441498612) +station = ('kpou', 0.0063988393538632997) +zone = ('nyz064', 0.002768250421255866) + +[12404] +centroid = (0.7298786639328555, -1.2956637056146467) +station = ('kmgj', 0.0052912027666573739) +zone = ('nyz063', 0.0025853488452563583) + +[12405] +centroid = (0.7385868446093411, -1.2930445423660564) +station = ('kalb', 0.0083905603125960168) +zone = ('nyz058', 0.002227497155278705) + +[12406] +centroid = (0.7344335893081253, -1.300690812365751) +station = ('kmsv', 0.0075381985110141688) +zone = ('nyz063', 0.0033398896021127208) + +[12407] +centroid = (0.73858207986048308, -1.2977945606451142) +station = ('kalb', 0.010415012950418924) +zone = ('nyz058', 0.0018822072237368961) + +[12409] +centroid = (0.73373547506062009, -1.2947261845536453) +station = ('kpou', 0.0080920757028016595) +zone = ('nyz063', 0.0032877600887662181) + +[12410] +centroid = (0.73419191356660152, -1.2989566357676769) +station = ('kmsv', 0.0080377161992933894) +zone = ('nyz063', 0.0025893201742412907) + +[12411] +centroid = (0.7308744091777033, -1.2923255888872824) +station = ('kpou', 0.0047287128397209416) +zone = ('nyz064', 0.00077188484343764896) + +[12412] +centroid = (0.73326044879810481, -1.2964233252649922) +station = ('kpou', 0.0083909500302378551) +zone = ('nyz063', 0.0020520379630111418) + +[12413] +centroid = (0.73851834043620024, -1.2919304114380459) +station = ('kalb', 0.0081286327571378509) +zone = ('nyz059', 0.0013873467671746814) + +[12414] +centroid = (0.73708783367468067, -1.2900403420311835) +station = ('kalb', 0.0091584217831779981) +zone = ('nyz059', 0.0013959208841568121) + +[12416] +centroid = (0.7348397448783569, -1.2964425064334715) +station = ('kpou', 0.0096915990023614187) +zone = ('nyz058', 0.0027412695738713334) + +[12417] +centroid = (0.73140504163018716, -1.2913817322810963) +station = ('kpou', 0.0049670621047563732) +zone = ('nyz064', 0.0015697003311855545) + +[12418] +centroid = (0.73929981160878078, -1.2943655122637208) +station = ('kalb', 0.008261362168157196) +zone = ('nyz058', 0.0020284266512021888) + +[12419] +centroid = (0.7305992231145414, -1.2933240044858858) +station = ('kpou', 0.0048778839702864731) +zone = ('nyz064', 0.00070169224201170101) + +[12420] +centroid = (0.72731849281298255, -1.2980321348628956) +station = ('kmgj', 0.0030427388415737978) +zone = ('nyz063', 0.0043526192417994184) + +[12421] +centroid = (0.73740237691247512, -1.301075570199353) +station = ('kmsv', 0.010149450082751107) +zone = ('nyz058', 0.0039877142168154491) + +[12422] +centroid = (0.7398769919924153, -1.2952662243307975) +station = ('kalb', 0.0082034463245136812) +zone = ('nyz058', 0.0023740299978020061) + +[12423] +centroid = (0.73965688852044631, -1.2934590755166975) +station = ('kalb', 0.0075981595645649687) +zone = ('nyz058', 0.0026967783976659071) + +[12424] +centroid = (0.73737141477154466, -1.2935534978292305) +station = ('kalb', 0.0096503160790782031) +zone = ('nyz058', 0.0015891390071678677) + +[12427] +centroid = (0.73538039552074719, -1.2939294592034025) +station = ('kpou', 0.0093410288034349587) +zone = ('nyz058', 0.0025092593050376915) + +[12428] +centroid = (0.72854987496014212, -1.2993505740331446) +station = ('kmgj', 0.0045972441065322616) +zone = ('nyz063', 0.0032422744279929682) + +[12429] +centroid = (0.73012932812002695, -1.2912884444325772) +station = ('kpou', 0.0037350540193498444) +zone = ('nyz064', 0.00099121844615318914) + +[12430] +centroid = (0.73654217393733723, -1.3002556319700589) +station = ('kmsv', 0.0095725842462906739) +zone = ('nyz058', 0.0035199280060347555) + +[12431] +centroid = (0.73935677915556586, -1.2919543748086757) +station = ('kalb', 0.0073560620092630166) +zone = ('nyz059', 0.0016534017243424761) + +[12432] +centroid = (0.73381356109135432, -1.290575529793015) +station = ('kpou', 0.0072188092858356829) +zone = ('nyz064', 0.0039810502576182721) + +[12433] +centroid = (0.73304744881619144, -1.2942743537168893) +station = ('kpou', 0.0073275454992212516) +zone = ('nyz064', 0.0031631506092080356) + +[12434] +centroid = (0.73938500112957051, -1.3003119188384356) +station = ('ksch', 0.01120225985017107) +zone = ('nyz058', 0.0038914977522978857) + +[12435] +centroid = (0.72834047035648786, -1.3005021422736105) +station = ('kmsv', 0.0037739521344105692) +zone = ('nyz063', 0.0037567066366730019) + +[12436] +centroid = (0.73645492492803, -1.2929017395266582) +station = ('kpou', 0.010135932048949844) +zone = ('nyz058', 0.0023253152172579769) + +[12438] +centroid = (0.73661697874907772, -1.3020344017305214) +station = ('kmsv', 0.0091850606115043004) +zone = ('nyz063', 0.0057197890709019573) + +[12439] +centroid = (0.73788712465892403, -1.2952156621423674) +station = ('kalb', 0.0097872816049704488) +zone = ('nyz058', 0.00050548566678917982) + +[12440] +centroid = (0.72921865022292132, -1.2945609018734816) +station = ('kpou', 0.004570455746820969) +zone = ('nyz064', 0.0017127904577659999) + +[12441] +centroid = (0.73538439232473429, -1.3004311248263467) +station = ('kmsv', 0.0084705192894794137) +zone = ('nyz063', 0.0040774033507177555) + +[12442] +centroid = (0.73621497706246586, -1.2954353118287307) +station = ('kpou', 0.010543549648893336) +zone = ('nyz058', 0.0013223841450525433) + +[12443] +centroid = (0.73190366474418933, -1.2930258673430601) +station = ('kpou', 0.0058823791554681671) +zone = ('nyz064', 0.0017953737637790271) + +[12444] +centroid = (0.73765002168004057, -1.2967363500663376) +station = ('kalb', 0.01062338584279738) +zone = ('nyz058', 0.00078421816633394493) + +[12446] +centroid = (0.72970564944410532, -1.2972411516458917) +station = ('kmgj', 0.005162298942694086) +zone = ('nyz063', 0.0020818367492460867) + +[12448] +centroid = (0.73460927415063093, -1.2943007430951794) +station = ('kpou', 0.0087334407735689939) +zone = ('nyz058', 0.0030911593005307145) + +[12449] +centroid = (0.73290485541630346, -1.291433777999391) +station = ('kpou', 0.0064284926329202892) +zone = ('nyz064', 0.0029077361227702685) + +[12450] +centroid = (0.73536388470602321, -1.2958071367725756) +station = ('kpou', 0.0099058196712557365) +zone = ('nyz058', 0.0021616237226052644) + +[12451] +centroid = (0.73835967255390145, -1.2906391470442504) +station = ('kalb', 0.0079989491408612758) +zone = ('nyz059', 0.00044953567878486782) + +[12452] +centroid = (0.73744323507026421, -1.2979130161414469) +station = ('kmsv', 0.011171966800601178) +zone = ('nyz058', 0.0016469588984963817) + +[12453] +centroid = (0.73466823137276338, -1.2904315401297255) +station = ('kpou', 0.0080589259216113686) +zone = ('nyz060', 0.0037317427168089179) + +[12454] +centroid = (0.73804652557950867, -1.2941528264410729) +station = ('kalb', 0.0092481050293997721) +zone = ('nyz058', 0.0012521863993436981) + +[12455] +centroid = (0.73549413862809965, -1.3030544943184343) +station = ('kmsv', 0.0079052175535887087) +zone = ('nyz063', 0.0052728356638670803) + +[12456] +centroid = (0.73361419213089896, -1.2915135919060845) +station = ('kpou', 0.007133804838003752) +zone = ('nyz064', 0.0035759320999833801) + +[12457] +centroid = (0.73380748734555734, -1.2959506202903819) +station = ('kpou', 0.0086275013213138983) +zone = ('nyz063', 0.0026988632998352848) + +[12458] +centroid = (0.72994762189160178, -1.2990848651078208) +station = ('kmsv', 0.0052483698855071564) +zone = ('nyz063', 0.0018529352104401269) + +[12459] +centroid = (0.73723374320014734, -1.3033925645945457) +station = ('kmsv', 0.0095614752399134344) +zone = ('nyz057', 0.0037896707697200769) + +[12460] +centroid = (0.74029213600829469, -1.2941195779188222) +station = ('kalb', 0.0073493292198811393) +zone = ('nyz051', 0.0026164813829922182) + +[12461] +centroid = (0.73137954236981551, -1.2962210939645638) +station = ('kmgj', 0.0067770367822254712) +zone = ('nyz063', 0.0014770167612404208) + +[12463] +centroid = (0.73662656060667109, -1.2919062211746133) +station = ('kalb', 0.0099175821435411975) +zone = ('nyz059', 0.0023079155595630619) + +[12464] +centroid = (0.73352146278774055, -1.297825941665065) +station = ('kmsv', 0.0080885467534177191) +zone = ('nyz063', 0.001868813401322825) + +[12465] +centroid = (0.73578112311700505, -1.2995724402876581) +station = ('kmsv', 0.00911868375809953) +zone = ('nyz058', 0.0033622580190408513) + +[12466] +centroid = (0.73136879114162323, -1.2911775636651979) +station = ('kpou', 0.004891315717705365) +zone = ('nyz064', 0.0016359650778214004) + +[12468] +centroid = (0.73834717599645727, -1.2989994312409356) +station = ('kalb', 0.011208091462727091) +zone = ('nyz058', 0.0025828666910296927) + +[12469] +centroid = (0.7408528404837903, -1.2957077402716746) +station = ('kalb', 0.0077188080742127676) +zone = ('nyz051', 0.0025091273877364114) + +[12470] +centroid = (0.7382810280178066, -1.2932099995791453) +station = ('kalb', 0.00871913854302994) +zone = ('nyz058', 0.0019853942496225328) + +[12471] +centroid = (0.73031332072977218, -1.2922652354017483) +station = ('kpou', 0.0042115581649464781) +zone = ('nyz064', 0.0003186068223399356) + +[12472] +centroid = (0.73036950287839386, -1.2929319686293026) +station = ('kpou', 0.004521951362310519) +zone = ('nyz064', 0.00033148118776034997) + +[12473] +centroid = (0.73754413255432216, -1.2922593536421692) +station = ('kalb', 0.0091270747419080946) +zone = ('nyz059', 0.0018821768809159998) + +[12474] +centroid = (0.73868978412862374, -1.3017195094268765) +station = ('kmsv', 0.011245149368268139) +zone = ('nyz058', 0.0046097843414354038) + +[12475] +centroid = (0.73330422165574471, -1.2918129856859717) +station = ('kpou', 0.0068833390384714513) +zone = ('nyz064', 0.0032263550035648639) + +[12477] +centroid = (0.73464299391177956, -1.2913692182703596) +station = ('kpou', 0.0081234546142457242) +zone = ('nyz059', 0.0039622075664728943) + +[12480] +centroid = (0.7354010602190908, -1.2983722820808166) +station = ('kmsv', 0.0092693188065997335) +zone = ('nyz058', 0.0029074314528930887) + +[12481] +centroid = (0.73281746678065607, -1.2955305893525972) +station = ('kpou', 0.0076374759400946726) +zone = ('nyz063', 0.0022718692470544374) + +[12482] +centroid = (0.73771826405379359, -1.2907660324808703) +station = ('kalb', 0.0086445226268606814) +zone = ('nyz059', 0.0009287975828910581) + +[12483] +centroid = (0.7273203079554047, -1.2989089533725124) +station = ('kmgj', 0.0033907481833992843) +zone = ('nyz063', 0.0043846528885816407) + +[12484] +centroid = (0.73062699130294062, -1.2946247111109344) +station = ('kpou', 0.0055211060971731033) +zone = ('nyz064', 0.0015734731410493533) + +[12485] +centroid = (0.73661617589762185, -1.2940603588973023) +station = ('kalb', 0.010493337746905933) +zone = ('nyz058', 0.0015102122633891516) + +[12486] +centroid = (0.73011341071724878, -1.2926603779443999) +station = ('kpou', 0.0041963622629907198) +zone = ('nyz064', 3.724847707889428e-05) + +[12487] +centroid = (0.73075886838122128, -1.2915226152583175) +station = ('kpou', 0.0043858468733082613) +zone = ('nyz064', 0.0010281339251843082) + +[12489] +centroid = (0.72868342755450477, -1.2977970390126519) +station = ('kmgj', 0.0042523334940721049) +zone = ('nyz063', 0.0029992250822462006) + +[12490] +centroid = (0.73517154942245355, -1.2902387859671354) +station = ('kpou', 0.0085501621135955514) +zone = ('nyz060', 0.0032833001083218756) + +[12491] +centroid = (0.73243066691182912, -1.2940122576231172) +station = ('kpou', 0.0066950943424938176) +zone = ('nyz064', 0.0025199590047826027) + +[12492] +centroid = (0.73626585341016137, -1.2974038163321775) +station = ('kmsv', 0.010390024150215905) +zone = ('nyz058', 0.0017866656951672204) + +[12493] +centroid = (0.72929610793512489, -1.2910915189330747) +station = ('kpou', 0.002908614893014091) +zone = ('nyz064', 0.0014135129428268487) + +[12494] +centroid = (0.7322807954889603, -1.2966556111351402) +station = ('kmgj', 0.0076858617464262181) +zone = ('nyz063', 0.0012795977327979009) + +[12495] +centroid = (0.73452047179828961, -1.2957443049195039) +station = ('kpou', 0.0091486943829160363) +zone = ('nyz058', 0.0030035744651127553) + +[12496] +centroid = (0.73892517668484015, -1.2962506598420924) +station = ('kalb', 0.0094001124202241337) +zone = ('nyz058', 0.001461350988426244) + +[12498] +centroid = (0.73384190523840676, -1.2934539966085743) +station = ('kpou', 0.0077801313106116944) +zone = ('nyz064', 0.0037595372862305313) + +[12501] +centroid = (0.73065577178230601, -1.2841016323584702) +station = ('kpou', 0.0056923265762244069) +zone = ('nyz066', 0.0019447366477599844) + +[12502] +centroid = (0.73454918246448486, -1.2856919763728876) +station = ('kpsf', 0.007803794288235133) +zone = ('nyz060', 0.002904461160611058) + +[12503] +centroid = (0.73366588878334305, -1.2842158117981355) +station = ('kpsf', 0.0079254076473549897) +zone = ('nyz061', 0.0038619822233534511) + +[12504] +centroid = (0.73364571277718993, -1.2900151743833699) +station = ('kpou', 0.0070171725753293704) +zone = ('nyz064', 0.0040103720032543047) + +[12507] +centroid = (0.73318108867701659, -1.2901291967434028) +station = ('kpou', 0.0065587315833103175) +zone = ('nyz064', 0.0035659239704516382) + +[12508] +centroid = (0.72424175659439682, -1.2907343722082392) +station = ('kswf', 0.001914619613943791) +zone = ('nyz068', 0.0029311084004685194) + +[12512] +centroid = (0.72515810681157145, -1.2909921573387586) +station = ('kpou', 0.0018507704819486744) +zone = ('nyz068', 0.0035650953811262481) + +[12513] +centroid = (0.73686591506028964, -1.286665119603922) +station = ('kpsf', 0.0067654918596952631) +zone = ('nyz060', 0.00047836055628957766) + +[12514] +centroid = (0.73089882633393866, -1.2874323663430987) +station = ('kpou', 0.0045326084500009562) +zone = ('nyz065', 0.0021278825524480285) + +[12515] +centroid = (0.72753655424972674, -1.292675317962797) +station = ('kpou', 0.0025313373270814993) +zone = ('nyz064', 0.0025978462036300833) + +[12516] +centroid = (0.73489313450017535, -1.2839267329141277) +station = ('kpsf', 0.0067590335464291487) +zone = ('nyz061', 0.0026166824905682288) + +[12517] +centroid = (0.7350331273594779, -1.2829470970582757) +station = ('kpsf', 0.0062755686454840903) +zone = ('nyz061', 0.0024798904161014118) + +[12518] +centroid = (0.72284830317289717, -1.2922952550648827) +station = ('kswf', 0.0016419446806893948) +zone = ('nyz067', 0.0034452328439484965) + +[12520] +centroid = (0.72305529922218359, -1.2914772366977654) +station = ('kswf', 0.0018497695679947808) +zone = ('nyz068', 0.0032284289860785866) + +[12521] +centroid = (0.73602864571152293, -1.285443493847281) +station = ('kpsf', 0.0065857216737942722) +zone = ('nyz060', 0.0016719389172265803) + +[12522] +centroid = (0.72806526684003336, -1.2845518923988997) +station = ('kpou', 0.0039668469635815275) +zone = ('nyz066', 0.00078298062702195428) + +[12523] +centroid = (0.73455459298516601, -1.2873461645313424) +station = ('kpou', 0.0080778462494587606) +zone = ('nyz060', 0.0027826954183470666) + +[12524] +centroid = (0.72482712257222337, -1.2896310972281759) +station = ('kpou', 0.0018139829015163457) +zone = ('nyz068', 0.0025723148492173982) + +[12525] +centroid = (0.72765483521313434, -1.2948283212214722) +station = ('kmgj', 0.0032195186812967983) +zone = ('nyz064', 0.0029770574774486179) + +[12526] +centroid = (0.73517167159550112, -1.2890787005199196) +station = ('kpou', 0.0085388951540260518) +zone = ('nyz060', 0.0026915005516385706) + +[12527] +centroid = (0.72465068723813919, -1.2904208761679958) +station = ('kpou', 0.0021022144980739122) +zone = ('nyz068', 0.0029234055156010237) + +[12528] +centroid = (0.72818721299487021, -1.291709138595478) +station = ('kpou', 0.0022587535494838985) +zone = ('nyz064', 0.0020616384943359942) + +[12529] +centroid = (0.73650695319303194, -1.2835627444986244) +station = ('kpsf', 0.0052887778451329998) +zone = ('nyz061', 0.0009822876969519214) + +[12530] +centroid = (0.73665926807685356, -1.2860940827792544) +station = ('kpsf', 0.006540563132563678) +zone = ('nyz060', 0.00087933204764241001) + +[12531] +centroid = (0.72501945785579303, -1.2858132243960234) +station = ('kpou', 0.0032026055188346236) +zone = ('nyz068', 0.0022325520503451565) + +[12533] +centroid = (0.7253875128884536, -1.2878366544110305) +station = ('kpou', 0.0017682501492985957) +zone = ('nyz068', 0.0024073038996544919) + +[12534] +centroid = (0.73683167170036556, -1.2872196979737431) +station = ('kpsf', 0.007129071621333632) +zone = ('nyz060', 0.00054459509154325728) + +[12538] +centroid = (0.72941402237938957, -1.2896786050904152) +station = ('kpou', 0.0027782172573473725) +zone = ('nyz065', 0.00071575984188689511) + +[12540] +centroid = (0.72729967816364616, -1.2867420886239347) +station = ('kpou', 0.002169373313491004) +zone = ('nyz066', 0.0020385863390014036) + +[12542] +centroid = (0.72629915071664775, -1.2918056902096982) +station = ('kpou', 0.0017512482146330283) +zone = ('nyz065', 0.0035280487346216246) + +[12543] +centroid = (0.72423379789300779, -1.2945648288642986) +station = ('kswf', 0.0009587556002272925) +zone = ('nyz067', 0.0023787534954010426) + +[12545] +centroid = (0.72924938547104901, -1.2857725931310369) +station = ('kpou', 0.0038196318733852998) +zone = ('nyz066', 0.00078905196697694625) + +[12546] +centroid = (0.73213071462658141, -1.2832246567692207) +station = ('kpou', 0.0072183468296290465) +zone = ('nyz066', 0.0035527417970265445) + +[12547] +centroid = (0.72711615679279895, -1.2913091963973833) +station = ('kpou', 0.0014285133832454471) +zone = ('nyz065', 0.0026674581004005981) + +[12548] +centroid = (0.72706404126133439, -1.2933204265609193) +station = ('kswf', 0.0027525022301978148) +zone = ('nyz064', 0.0031143324599274746) + +[12549] +centroid = (0.72480087282027328, -1.2960704196902391) +station = ('kmgj', 0.00022010068171745856) +zone = ('nyz067', 0.002277893844596173) + +[12550] +centroid = (0.72500233617583099, -1.2925423762336725) +station = ('kswf', 0.00088856159893830331) +zone = ('nyz067', 0.0040372353039068052) + +[12553] +centroid = (0.72353870306510859, -1.2928509155388401) +station = ('kswf', 0.00083972969935228474) +zone = ('nyz067', 0.0031601206481843415) + +[12561] +centroid = (0.72883740050111567, -1.2932201748486845) +station = ('kpou', 0.0035382715162555656) +zone = ('nyz064', 0.001371985992895515) + +[12563] +centroid = (0.72429748495741308, -1.2843393811091768) +station = ('kdxr', 0.0026828867971977919) +zone = ('nyz068', 0.0024708928695063217) + +[12564] +centroid = (0.72575357824576692, -1.2842584152851768) +station = ('kdxr', 0.0039862640611318155) +zone = ('nyz066', 0.003087860701687796) + +[12565] +centroid = (0.73735148311148691, -1.2853937694168915) +station = ('kpsf', 0.0057140060496270835) +zone = ('nyz061', 0.0014484588555319861) + +[12566] +centroid = (0.72664198574161709, -1.2971227834160215) +station = ('kmgj', 0.002153635918178715) +zone = ('nyz067', 0.0040414575772951492) + +[12567] +centroid = (0.73279736058767309, -1.2852992249313111) +station = ('kpou', 0.0069113618675935148) +zone = ('nyz066', 0.0040043391992689355) + +[12569] +centroid = (0.72840543151124715, -1.2879280223973724) +station = ('kpou', 0.0021242628806527825) +zone = ('nyz065', 0.00094429882378631509) + +[12570] +centroid = (0.72651635694205852, -1.2858828804864706) +station = ('kpou', 0.0027119397600865189) +zone = ('nyz066', 0.0024027958880315776) + +[12571] +centroid = (0.73308671872436126, -1.2882206792063469) +station = ('kpou', 0.0065188937762249094) +zone = ('nyz065', 0.0040619262133646172) + +[12572] +centroid = (0.73172728176998292, -1.2891641343868048) +station = ('kpou', 0.0050949720451631533) +zone = ('nyz065', 0.0026855030911983714) + +[12574] +centroid = (0.73160167042371682, -1.2905951996536851) +station = ('kpou', 0.0050287865603686) +zone = ('nyz064', 0.0021033667753764607) + +[12575] +centroid = (0.72373053220319516, -1.2946655343621387) +station = ('kswf', 0.001183703863819881) +zone = ('nyz067', 0.0020043090202487993) + +[12577] +centroid = (0.72298588747783188, -1.2936754265307748) +station = ('kswf', 0.0013570148090385886) +zone = ('nyz067', 0.0024313952703101144) + +[12578] +centroid = (0.72970688862787425, -1.2879807138874899) +station = ('kpou', 0.0032729226994477698) +zone = ('nyz065', 0.00092173458372613926) + +[12580] +centroid = (0.7306585119492317, -1.2893014917989367) +station = ('kpou', 0.0040227019393612139) +zone = ('nyz065', 0.0016413250017111001) + +[12581] +centroid = (0.73132575132226907, -1.2863190382665439) +station = ('kpou', 0.0052557782741883136) +zone = ('nyz066', 0.0027345864702959287) + +[12582] +centroid = (0.72508469826323263, -1.2869786156441652) +station = ('kpou', 0.0024479251759003942) +zone = ('nyz068', 0.0020574702395090411) + +[12583] +centroid = (0.7341442486247296, -1.2892511914098943) +station = ('kpou', 0.0075079300447443509) +zone = ('nyz060', 0.0036250806158009186) + +[12585] +centroid = (0.72826313481733207, -1.2861594802663265) +station = ('kpou', 0.002981791106979111) +zone = ('nyz066', 0.0010848822218198751) + +[12586] +centroid = (0.72540707802936855, -1.2945124864400313) +station = ('kswf', 0.0014278929685916204) +zone = ('nyz067', 0.0033154338777769453) + +[12589] +centroid = (0.72647220011198299, -1.2943147231824879) +station = ('kswf', 0.0022928332999314965) +zone = ('nyz064', 0.0038744276949198939) + +[12590] +centroid = (0.72592704652012263, -1.28956885878705) +station = ('kpou', 0.0007131791114620285) +zone = ('nyz065', 0.0031706147741875951) + +[12592] +centroid = (0.72958382546231604, -1.2841892478869203) +station = ('kpou', 0.0049428405654271257) +zone = ('nyz066', 0.00094245045077994978) + +[12594] +centroid = (0.72753004417161682, -1.283823653768505) +station = ('kpou', 0.004338964728120784) +zone = ('nyz066', 0.0015058869023242796) + +[12601] +centroid = (0.72783559896376349, -1.2899993966069316) +station = ('kpou', 0.0012520063591014471) +zone = ('nyz065', 0.0014880804445214198) + +[12603] +centroid = (0.72738111522654414, -1.2891784460866713) +station = ('kpou', 0.00078200578816236546) +zone = ('nyz065', 0.0016886605691467504) + +[12604] +centroid = (0.72759750114720634, -1.289663228739705) +station = ('kpou', 0.00096579558523836383) +zone = ('nyz065', 0.0015758234422595515) + +[12701] +centroid = (0.72693418876498594, -1.303767862743602) +station = ('kmsv', 0.0015619346774672414) +zone = ('nyz062', 0.0014530359252613765) + +[12719] +centroid = (0.72428109631573689, -1.3073263971022009) +station = ('kmsv', 0.0037751084045887042) +zone = ('paz048', 0.0033583452278627638) + +[12720] +centroid = (0.72685716738509543, -1.3073886006367419) +station = ('kmsv', 0.0016941421422523092) +zone = ('nyz062', 0.0021987830219020923) + +[12721] +centroid = (0.72573797500225401, -1.2989163012086633) +station = ('kmgj', 0.0023298518818846482) +zone = ('nyz067', 0.0034856665321697806) + +[12722] +centroid = (0.72589350129189933, -1.2980764836791887) +station = ('kmgj', 0.0019086648053574572) +zone = ('nyz067', 0.0034092228576249558) + +[12723] +centroid = (0.72872906791444447, -1.3087821587779969) +station = ('kmsv', 0.0026146442869734087) +zone = ('nyz062', 0.0029308959466272291) + +[12724] +centroid = (0.73020423765152254, -1.3082763100008912) +station = ('kmsv', 0.0031682237895230263) +zone = ('nyz062', 0.0032605551320046789) + +[12725] +centroid = (0.73274386624609944, -1.3014867872244156) +station = ('kmsv', 0.005778062573628966) +zone = ('nyz063', 0.0026922624849335291) + +[12726] +centroid = (0.72794557215993161, -1.3092971879869677) +station = ('kmsv', 0.0028338789727682216) +zone = ('paz040', 0.0037491455478304418) + +[12729] +centroid = (0.72388913027232393, -1.3024257569086959) +station = ('kmsv', 0.0045410863989915071) +zone = ('nyz062', 0.0046040372869077268) + +[12732] +centroid = (0.72521797160491497, -1.306808086674236) +station = ('kmsv', 0.0027614594178627001) +zone = ('nyz062', 0.003188996875794884) + +[12733] +centroid = (0.72823459868406193, -1.3023286118825299) +station = ('kmsv', 0.0024111813573282933) +zone = ('nyz062', 0.0019616892401355659) + +[12734] +centroid = (0.72840592020343775, -1.3046416443803206) +station = ('kmsv', 0.00088368349718151125) +zone = ('nyz062', 0.00039183475682210952) + +[12736] +centroid = (0.7304699116702611, -1.3093766179212261) +station = ('kmsv', 0.0039302541370105038) +zone = ('paz040', 0.0037276852370121448) + +[12737] +centroid = (0.72433748790386876, -1.3054824043875912) +station = ('kmsv', 0.0034648561792421087) +zone = ('nyz062', 0.0037721455066699488) + +[12738] +centroid = (0.72738654320051777, -1.3017733702875929) +station = ('kmsv', 0.0028184813554463168) +zone = ('nyz062', 0.0024732849403931198) + +[12740] +centroid = (0.73197220382391526, -1.2991176074845883) +station = ('kmsv', 0.0063290262722962625) +zone = ('nyz063', 0.00076897899931628187) + +[12741] +centroid = (0.73023076665615283, -1.3103534961568597) +station = ('kmsv', 0.0043551217302764539) +zone = ('paz040', 0.0029625636852653918) + +[12742] +centroid = (0.72822690178206062, -1.3041714177732482) +station = ('kmsv', 0.0010831631914379296) +zone = ('nyz062', 0.00059703290057926323) + +[12743] +centroid = (0.72516055027252435, -1.3060480830514549) +station = ('kmsv', 0.0026726131753751132) +zone = ('nyz062', 0.0030409312391769436) + +[12745] +centroid = (0.72925847863645188, -1.3094271277497787) +station = ('kmsv', 0.0032679229805761168) +zone = ('paz040', 0.0034526106074989783) + +[12746] +centroid = (0.72330603322252518, -1.303007422788508) +station = ('kfwn', 0.0042415741436529295) +zone = ('nyz062', 0.0049982791953981582) + +[12747] +centroid = (0.72869115936309115, -1.3036369281431173) +station = ('kmsv', 0.0016542649842040855) +zone = ('nyz062', 0.0011500502869176894) + +[12748] +centroid = (0.72910504674190901, -1.3076462112343361) +station = ('kmsv', 0.002060826768006068) +zone = ('nyz062', 0.0022542293710751081) + +[12749] +centroid = (0.72771946475533578, -1.3062247627316346) +station = ('kmsv', 0.00054282335667322557) +zone = ('nyz062', 0.001021090392490844) + +[12750] +centroid = (0.72831257999504095, -1.3084298466151891) +station = ('kmsv', 0.0022412131752193717) +zone = ('nyz062', 0.0026072658294982788) + +[12751] +centroid = (0.72773023343682053, -1.3031400852649524) +station = ('kmsv', 0.0017682173623505002) +zone = ('nyz062', 0.0013975738010727848) + +[12752] +centroid = (0.7274539129096449, -1.3088955353662064) +station = ('kmsv', 0.0025548044099803595) +zone = ('nyz062', 0.0030138974978906733) + +[12754] +centroid = (0.72953132595841619, -1.3043964605270004) +station = ('kmsv', 0.0019170584652913783) +zone = ('nyz062', 0.0015006211167946789) + +[12758] +centroid = (0.73199602756820492, -1.3044436891365594) +station = ('kmsv', 0.0042678389607017624) +zone = ('nyz062', 0.0039256321505077739) + +[12759] +centroid = (0.72922875567929046, -1.3030428006124459) +station = ('kmsv', 0.0023267158227263719) +zone = ('nyz062', 0.0018231121146442136) + +[12760] +centroid = (0.73136154802522746, -1.3108790147946352) +station = ('kmsv', 0.0053580952724412096) +zone = ('paz040', 0.0032377088567590298) + +[12762] +centroid = (0.72718033254939474, -1.3053702146232731) +station = ('kmsv', 0.00063021248025725671) +zone = ('nyz062', 0.00096099878113603261) + +[12763] +centroid = (0.72738949280695364, -1.3006677740196246) +station = ('kmsv', 0.0036367807010035699) +zone = ('nyz062', 0.0032726240344818978) + +[12764] +centroid = (0.72590954086772508, -1.3089193765637883) +station = ('kmsv', 0.0031760899849265414) +zone = ('nyz062', 0.0036805066957922954) + +[12765] +centroid = (0.73046099303778333, -1.3023848812976142) +station = ('kmsv', 0.0035337329240766077) +zone = ('nyz062', 0.0030472317319555045) + +[12766] +centroid = (0.72981305700627297, -1.3086278716721205) +station = ('kmsv', 0.0030766164775851744) +zone = ('nyz062', 0.0032405611603802172) + +[12767] +centroid = (0.73021247560559199, -1.3088994623570234) +station = ('kmsv', 0.00349480672393742) +zone = ('nyz062', 0.0036315105660170701) + +[12768] +centroid = (0.73067236986349249, -1.304284933987798) +station = ('kmsv', 0.0030111047889089691) +zone = ('nyz062', 0.0026309208891801285) + +[12769] +centroid = (0.72706826495812427, -1.2996992210045231) +station = ('kmgj', 0.003596957556295789) +zone = ('nyz063', 0.0047413394584285944) + +[12770] +centroid = (0.72342347642789184, -1.3062587791987559) +station = ('kmsv', 0.0044148587268532397) +zone = ('paz048', 0.0032246214446026863) + +[12771] +centroid = (0.72211915697129148, -1.3024393704768615) +station = ('kfwn', 0.0030458206947681392) +zone = ('njz001', 0.0041913879689734713) + +[12775] +centroid = (0.72633018267074823, -1.3018817726874343) +station = ('kmsv', 0.0030822421782338103) +zone = ('nyz062', 0.0028885478101601143) + +[12776] +centroid = (0.73239918117212321, -1.3082757864021155) +station = ('kmsv', 0.0050388158394614278) +zone = ('nyz057', 0.0040995986326761357) + +[12777] +centroid = (0.72539028796196425, -1.3039288170072212) +station = ('kmsv', 0.0026847664580487529) +zone = ('nyz062', 0.0028039990292383896) + +[12778] +centroid = (0.72680184044780716, -1.3058125857754834) +station = ('kmsv', 0.0010262871988474132) +zone = ('nyz062', 0.0014391273543682783) + +[12779] +centroid = (0.7278453379009896, -1.3025775307404492) +station = ('kmsv', 0.0021870976472433985) +zone = ('nyz062', 0.0017873800963344297) + +[12780] +centroid = (0.72326692039398799, -1.3042381766171371) +station = ('kfwn', 0.0043686651007442115) +zone = ('paz048', 0.0044327369918478405) + +[12781] +centroid = (0.72640039726655603, -1.2996835828544251) +station = ('kmgj', 0.0031675680369213969) +zone = ('nyz062', 0.0042806301998007581) + +[12783] +centroid = (0.72847657113155839, -1.3060948753287012) +station = ('kmsv', 0.00080477305275218321) +zone = ('nyz062', 0.00093875273655156253) + +[12784] +centroid = (0.72727655255105716, -1.3026830358937325) +station = ('kmsv', 0.0021729952657838694) +zone = ('nyz062', 0.0018771281916663332) + +[12785] +centroid = (0.72487696917566025, -1.301339673421765) +station = ('kmsv', 0.0042732583465873502) +zone = ('nyz062', 0.004194706273129744) + +[12786] +centroid = (0.72673118951968652, -1.3065046611837767) +station = ('kmsv', 0.0013051698021708702) +zone = ('nyz062', 0.0017864875325807415) + +[12787] +centroid = (0.72946727237486786, -1.3062920800808839) +station = ('kmsv', 0.001765178371460176) +zone = ('nyz062', 0.0017041113524704611) + +[12788] +centroid = (0.72933014185553879, -1.3018291161039017) +station = ('kmsv', 0.0031403612079750239) +zone = ('nyz062', 0.0026383413652345373) + +[12789] +centroid = (0.72787432781986527, -1.3015099128370047) +station = ('kmsv', 0.0029846133512876844) +zone = ('nyz062', 0.0025766510269284808) + +[12790] +centroid = (0.72591945433787641, -1.300577523044004) +station = ('kmsv', 0.0041364452705121534) +zone = ('nyz062', 0.0039211846424358219) + +[12791] +centroid = (0.72984913296191178, -1.3071271677680856) +station = ('kmsv', 0.002377284884923486) +zone = ('nyz062', 0.0023953736902844087) + +[12792] +centroid = (0.72455458940952433, -1.3082956657022957) +station = ('kmsv', 0.0038597441629962433) +zone = ('paz048', 0.0033173886947429404) + +[12801] +centroid = (0.75592234485806731, -1.2853527192728846) +station = ('kgfl', 0.000530867150167166) +zone = ('nyz083', 0.0013268570799139857) + +[12803] +centroid = (0.75555439454516182, -1.2850748104960896) +station = ('kgfl', 0.00077197422427081267) +zone = ('nyz083', 0.0016938361883746486) + +[12804] +centroid = (0.75644234825540646, -1.2860617592815076) +station = ('kgfl', 0.00088901197375895128) +zone = ('nyz083', 0.00066396772677644719) + +[12808] +centroid = (0.76375866376001156, -1.2865802442423975) +station = ('kgfl', 0.0075537599453471826) +zone = ('nyz042', 0.0034036714537829076) + +[12809] +centroid = (0.7546293700416048, -1.2820229801259297) +station = ('kgfl', 0.0026583865040113079) +zone = ('nyz084', 0.0014276480744418512) + +[12810] +centroid = (0.75907803977201316, -1.2912982706362659) +station = ('kgfl', 0.0054392251292986298) +zone = ('nyz042', 0.0023990325955583493) + +[12811] +centroid = (0.76105893611314923, -1.2920380633463089) +station = ('kgfl', 0.0070532102006395578) +zone = ('nyz042', 0.0020738830939544921) + +[12812] +centroid = (0.76577706722677286, -1.2983463639414248) +station = ('kslk', 0.0094528384340688588) +zone = ('nyz033', 0.0039846915282596151) + +[12814] +centroid = (0.76139184021467454, -1.2851941735636334) +station = ('kgfl', 0.0050885157371034087) +zone = ('nyz042', 0.0029242775365338086) + +[12815] +centroid = (0.76263823219340121, -1.2857469542443252) +station = ('kgfl', 0.0063619902458501186) +zone = ('nyz042', 0.0030198412221344711) + +[12816] +centroid = (0.75126364220547392, -1.2807580702038395) +station = ('kddh', 0.0032756846516525978) +zone = ('nyz084', 0.0020749263910083441) + +[12817] +centroid = (0.76165444245392955, -1.2884653743674763) +station = ('kgfl', 0.0059530141745373338) +zone = ('nyz042', 0.00089719948880655968) + +[12819] +centroid = (0.76080420530882065, -1.2822680418062025) +station = ('kgfl', 0.0048707939976516765) +zone = ('nyz043', 0.0013660847831954571) + +[12821] +centroid = (0.75840776352607731, -1.2813508363776942) +station = ('kgfl', 0.0032985555485447612) +zone = ('nyz043', 0.0011568844375415062) + +[12822] +centroid = (0.75447988259117149, -1.2901860595704326) +station = ('kgfl', 0.0042917662906943278) +zone = ('nyz041', 0.0011647873989619687) + +[12823] +centroid = (0.75363249033274315, -1.2812307926317421) +station = ('kgfl', 0.0037583931878630073) +zone = ('nyz084', 0.00053498208140546259) + +[12824] +centroid = (0.75965031578044961, -1.2867819868506354) +station = ('kgfl', 0.0036227226940224507) +zone = ('nyz042', 0.0021533913017534397) + +[12827] +centroid = (0.75853630702548669, -1.2833381380771853) +station = ('kgfl', 0.0024842071063687255) +zone = ('nyz043', 0.0016878010183427228) + +[12828] +centroid = (0.75494204577709956, -1.2838354871008335) +station = ('kgfl', 0.0015550585890192618) +zone = ('nyz084', 0.0023203342768206093) + +[12831] +centroid = (0.75390071253218971, -1.2861647337073752) +station = ('kgfl', 0.0025910632023570909) +zone = ('nyz083', 0.0027069492068929699) + +[12832] +centroid = (0.75674800776730822, -1.2798546703297147) +station = ('kgfl', 0.003661429831609398) +zone = ('nyz043', 0.0030523678115177508) + +[12833] +centroid = (0.75310957223555319, -1.2887667578227109) +station = ('kgfl', 0.0042855717121051597) +zone = ('nyz041', 0.00058094439273274781) + +[12834] +centroid = (0.75213590540574315, -1.2828267042464734) +station = ('kgfl', 0.0044270635067678865) +zone = ('nyz084', 0.0013617171806309099) + +[12835] +centroid = (0.75629907417711029, -1.2916542305372103) +station = ('kgfl', 0.0049469076200305403) +zone = ('nyz041', 0.0032524357512616008) + +[12836] +centroid = (0.76292425675121811, -1.2846599282795981) +station = ('kgfl', 0.006616398798292164) +zone = ('nyz042', 0.0038350418805150588) + +[12837] +centroid = (0.75880711231222608, -1.2785514329772505) +station = ('kgfl', 0.0052153665441594136) +zone = ('vtz011', 0.0024034520360785229) + +[12838] +centroid = (0.75623491587380687, -1.2811580473085191) +station = ('kgfl', 0.0026888934032067492) +zone = ('nyz084', 0.0030393903899636151) + +[12839] +centroid = (0.75667852620978637, -1.2837586577071609) +station = ('kgfl', 0.00087746057258395371) +zone = ('nyz083', 0.0023346026868677938) + +[12841] +centroid = (0.7610612050411768, -1.2834004463314814) +station = ('kgfl', 0.0048674237242982542) +zone = ('nyz043', 0.0020424284830907182) + +[12842] +centroid = (0.76337812962319929, -1.2979500171215892) +station = ('kslk', 0.011736534411838603) +zone = ('nyz033', 0.002125657714751632) + +[12843] +centroid = (0.76035450377375169, -1.2910680093480502) +station = ('kgfl', 0.0060596947020425196) +zone = ('nyz042', 0.0014802880972821265) + +[12844] +centroid = (0.75903314990365189, -1.2849322345494942) +station = ('kgfl', 0.0027244121308279334) +zone = ('nyz083', 0.0028933911249498347) + +[12845] +centroid = (0.75789261214405856, -1.286530013666525) +station = ('kgfl', 0.0019980197521030484) +zone = ('nyz083', 0.0013846159613498275) + +[12846] +centroid = (0.75652961471800617, -1.2878735506714178) +station = ('kgfl', 0.0022076981788480775) +zone = ('nyz083', 0.00066167671901551589) + +[12847] +centroid = (0.76809119928199221, -1.3021767333310212) +station = ('kslk', 0.0085400371740049896) +zone = ('nyz033', 0.0062229029807154661) + +[12849] +centroid = (0.75833800271587504, -1.2792970201804101) +station = ('kgfl', 0.0045185538208886737) +zone = ('nyz043', 0.0020057394187066899) + +[12850] +centroid = (0.75228256542278815, -1.2912197308199262) +station = ('ksch', 0.0044515711457971448) +zone = ('nyz041', 0.0020797388205229103) + +[12851] +centroid = (0.76518534825046924, -1.2921452091090888) +station = ('kslk', 0.0099591818843958891) +zone = ('nyz042', 0.004771806037073497) + +[12852] +centroid = (0.76683115882851483, -1.2944006981014411) +station = ('kslk', 0.0081077770127515325) +zone = ('nyz034', 0.004664781293212115) + +[12853] +centroid = (0.7619721098310851, -1.2926787562614235) +station = ('kgfl', 0.0080183106442972638) +zone = ('nyz042', 0.002741428773057658) + +[12855] +centroid = (0.76841628430846864, -1.2873208747104812) +station = ('kslk', 0.0085406948296279529) +zone = ('nyz034', 0.0015841823035556669) + +[12856] +centroid = (0.76211442397829277, -1.2940387866277474) +station = ('kgfl', 0.0088370893801485353) +zone = ('nyz042', 0.0037131799540486288) + +[12857] +centroid = (0.76479565113508408, -1.2896346053399725) +station = ('kgfl', 0.009166011614402789) +zone = ('nyz042', 0.0038878691668286025) + +[12858] +centroid = (0.76635545188759124, -1.2858849399749879) +station = ('kgfl', 0.01007383383309508) +zone = ('nyz034', 0.0038108723012644351) + +[12859] +centroid = (0.75349136300942698, -1.2901626023452859) +station = ('kgfl', 0.0047848642339120362) +zone = ('nyz041', 0.00081274604122073802) + +[12860] +centroid = (0.76370377315503635, -1.2888095532959698) +station = ('kgfl', 0.0079310169292539576) +zone = ('nyz042', 0.0027950107402270126) + +[12861] +centroid = (0.7635272156479046, -1.281377574821835) +station = ('kgfl', 0.007644952575609318) +zone = ('nyz043', 0.0039677232991514981) + +[12862] +centroid = (0.76245411741060842, -1.2899784526559077) +station = ('kgfl', 0.0071815870105064643) +zone = ('nyz042', 0.0016376468654465419) + +[12863] +centroid = (0.75154535580003834, -1.2903551470683658) +station = ('ksch', 0.0036718167145813278) +zone = ('nyz050', 0.0021940820579392684) + +[12864] +centroid = (0.76318553254024168, -1.2968746150496804) +station = ('kgfl', 0.011101473143965531) +zone = ('nyz033', 0.0026827650609990861) + +[12865] +centroid = (0.7542293580303403, -1.2801545178952074) +station = ('kgfl', 0.0040037450731285219) +zone = ('nyz084', 0.0015119771785660175) + +[12866] +centroid = (0.75177814781566932, -1.2870099093976533) +station = ('ksch', 0.0046182626275817866) +zone = ('nyz041', 0.0023981263742682193) + +[12870] +centroid = (0.76497878853349577, -1.2873761841944769) +station = ('kgfl', 0.0088599887018831723) +zone = ('nyz042', 0.004261574003134024) + +[12871] +centroid = (0.75203739902276057, -1.2847886114053477) +station = ('kgfl', 0.0042722030097451002) +zone = ('nyz084', 0.0025463158139612404) + +[12872] +centroid = (0.76575720537988523, -1.2869083661417724) +station = ('kgfl', 0.0095643471302222435) +zone = ('nyz034', 0.0039733741389581037) + +[12873] +centroid = (0.75254148501732165, -1.2795296027565308) +station = ('kddh', 0.004161199696927618) +zone = ('nyz084', 0.001723503850978298) + +[12874] +centroid = (0.76254412404013372, -1.2836852317055294) +station = ('kgfl', 0.0062920586060607239) +zone = ('nyz043', 0.0033812268874984504) + +[12878] +centroid = (0.75773513108565116, -1.2920227393554764) +station = ('kgfl', 0.005402926936173673) +zone = ('nyz042', 0.00379522653935927) + +[12883] +centroid = (0.76509340430547423, -1.2837386213273478) +station = ('kgfl', 0.0088210859378468499) +zone = ('vtz009', 0.0050922389816520303) + +[12884] +centroid = (0.75203437960315467, -1.2844103287432704) +station = ('kgfl', 0.0042871323556403895) +zone = ('nyz084', 0.0023069980240072322) + +[12885] +centroid = (0.75962055791670313, -1.2881674990240386) +station = ('kgfl', 0.0040935978819840119) +zone = ('nyz042', 0.001493890872484272) + +[12886] +centroid = (0.76240701097409713, -1.2904032483425507) +station = ('kgfl', 0.0073064709688481864) +zone = ('nyz042', 0.0017289635523254103) + +[12887] +centroid = (0.75985980765056649, -1.2804747334530708) +station = ('kgfl', 0.0047659930339658627) +zone = ('nyz043', 0.00079389798637954608) + +[12901] +centroid = (0.78023235533068791, -1.2823134378200467) +station = ('kpbg', 0.0009444832466107291) +zone = ('nyz028', 0.0017973824883843782) + +[12903] +centroid = (0.77981839813870002, -1.2818724803845303) +station = ('kpbg', 0.00058845726645591844) +zone = ('nyz028', 0.002291372249003075) + +[12910] +centroid = (0.78286797703412458, -1.2851978562083552) +station = ('kpbg', 0.0041511331085002413) +zone = ('nyz028', 0.0017796784121566337) + +[12911] +centroid = (0.77704571572910419, -1.282132918415513) +station = ('kpbg', 0.0022449779840953291) +zone = ('nyz035', 0.0047680226285989205) + +[12912] +centroid = (0.77633903191497178, -1.2875729526143467) +station = ('kpbg', 0.0048132120742861613) +zone = ('nyz031', 0.0039518768608197714) + +[12913] +centroid = (0.77545147963045513, -1.2915822531588579) +station = ('kslk', 0.0025210933103755871) +zone = ('nyz030', 0.0036966939310891182) + +[12914] +centroid = (0.78413138597305831, -1.3020669695743634) +station = ('kmss', 0.0030544734945713212) +zone = ('nyz027', 0.002235321757738459) + +[12916] +centroid = (0.78250182441034877, -1.3005436985631005) +station = ('kmss', 0.0044829318022961886) +zone = ('nyz027', 0.0016203592704863543) + +[12917] +centroid = (0.7841352082441202, -1.2946661975872544) +station = ('cwbz', 0.0035417637997778926) +zone = ('nyz027', 0.0030851561089912547) + +[12918] +centroid = (0.78017502126476002, -1.285900246512528) +station = ('kpbg', 0.002752530393308728) +zone = ('nyz031', 0.0014484728856833911) + +[12919] +centroid = (0.78477918237822852, -1.2818934068822618) +station = ('cwit', 0.0045746446849553642) +zone = ('nyz028', 0.0029418498276279651) + +[12920] +centroid = (0.78335207900875026, -1.2926957732216304) +station = ('cwbz', 0.0048845200818956047) +zone = ('nyz031', 0.0045658487858253726) + +[12921] +centroid = (0.7835016362723537, -1.2817361701699497) +station = ('kpbg', 0.0042269992381930386) +zone = ('nyz028', 0.0018057042384769962) + +[12922] +centroid = (0.77294722885981604, -1.3037978475001513) +station = ('kslk', 0.0065723743178144984) +zone = ('nyz029', 0.0020060958187151246) + +[12923] +centroid = (0.78470545967062422, -1.2904864132814082) +station = ('cwit', 0.0047893720886859146) +zone = ('nyz031', 0.0047792948876544629) + +[12924] +centroid = (0.77634608304514985, -1.2842240322989125) +station = ('kpbg', 0.0032667145225673292) +zone = ('nyz035', 0.0044479004282558382) + +[12926] +centroid = (0.78453975811143994, -1.2972857273549876) +station = ('cwbz', 0.0029489075113134401) +zone = ('nyz027', 0.0014726887689998163) + +[12927] +centroid = (0.77156339220249481, -1.3056756297890795) +station = ('kslk', 0.0083248363054319544) +zone = ('nyz029', 0.0020598792288869061) + +[12928] +centroid = (0.767313899446324, -1.284270876936036) +station = ('kbtv', 0.010314734234462761) +zone = ('nyz034', 0.004014138322654408) + +[12929] +centroid = (0.78051171273076225, -1.2866433553481496) +station = ('kpbg', 0.0033639857960624762) +zone = ('nyz031', 0.0009443661653291387) + +[12930] +centroid = (0.78051923509983834, -1.3010247811181201) +station = ('kmss', 0.0053126337741239687) +zone = ('nyz027', 0.0034798497461374835) + +[12932] +centroid = (0.77169523437419041, -1.28474035305153) +station = ('kpbg', 0.0078021134879079079) +zone = ('nyz035', 0.00227605919639091) + +[12933] +centroid = (0.78349564979301933, -1.2888443377079621) +station = ('cwit', 0.0052098984061167896) +zone = ('nyz031', 0.0032775375173421401) + +[12934] +centroid = (0.78322192980642913, -1.2893402206550384) +station = ('cwit', 0.0056015145768634322) +zone = ('nyz031', 0.0031044508768892118) + +[12935] +centroid = (0.78268691657752276, -1.2879994587236565) +station = ('kpbg', 0.0053199628685575212) +zone = ('nyz031', 0.0024047821649491158) + +[12936] +centroid = (0.77292014134982512, -1.2810969782379917) +station = ('kbtv', 0.0044593885972499334) +zone = ('nyz035', 0.00075430020060616846) + +[12937] +centroid = (0.78471481463541493, -1.2998942615484332) +station = ('cwbz', 0.0036313835323597142) +zone = ('nyz027', 0.0012217066747732157) + +[12939] +centroid = (0.77550136114047707, -1.2943506246052012) +station = ('kslk', 0.00075451555088738734) +zone = ('nyz030', 0.0020190190684639189) + +[12941] +centroid = (0.77402661028241937, -1.2864065665285316) +station = ('kpbg', 0.0060456727666703012) +zone = ('nyz035', 0.0038069571238605426) + +[12942] +centroid = (0.77200386094582052, -1.2885343323262228) +station = ('kslk', 0.0054926171744101903) +zone = ('nyz034', 0.0025966813791792349) + +[12943] +centroid = (0.77008740216066818, -1.2895106171499109) +station = ('kslk', 0.0062500048484251565) +zone = ('nyz034', 0.00074754016536500336) + +[12944] +centroid = (0.77566563152967472, -1.2830744537337939) +station = ('kpbg', 0.0036729052157810889) +zone = ('nyz035', 0.0035220694856668571) + +[12945] +centroid = (0.77333952651578686, -1.2957401161292992) +station = ('kslk', 0.0016649895901568058) +zone = ('nyz030', 0.0036380153083925915) + +[12946] +centroid = (0.77154222135866812, -1.2923513848536268) +station = ('kslk', 0.0038907317152995142) +zone = ('nyz034', 0.0031927580494410515) + +[12950] +centroid = (0.77350145816378679, -1.2842350104199074) +station = ('kpbg', 0.0059613008399353714) +zone = ('nyz035', 0.0021981687897588498) + +[12952] +centroid = (0.78030735212864621, -1.28989708540618) +station = ('kslk', 0.006508275567320739) +zone = ('nyz031', 0.0013964191394494826) + +[12953] +centroid = (0.78095085502385653, -1.2960834747530439) +station = ('kslk', 0.0060708481327178335) +zone = ('nyz027', 0.0034145787963100016) + +[12955] +centroid = (0.78202356928871719, -1.2910273955363565) +station = ('cwbz', 0.0066490489450912495) +zone = ('nyz031', 0.0028036792315564722) + +[12956] +centroid = (0.76964852166696163, -1.2824911996043626) +station = ('kbtv', 0.0076569369054222437) +zone = ('nyz035', 0.0027047741606592078) + +[12957] +centroid = (0.78275090034790085, -1.3015723781709332) +station = ('kmss', 0.0037144232426659048) +zone = ('nyz027', 0.0020620066190501119) + +[12958] +centroid = (0.78471495426175519, -1.2840767439633365) +station = ('cwit', 0.0038445772293313023) +zone = ('nyz028', 0.0028570645467125783) + +[12959] +centroid = (0.78456653146216548, -1.2866551886804778) +station = ('cwit', 0.0037675999990396105) +zone = ('nyz028', 0.0036569694992754885) + +[12960] +centroid = (0.76821986495444927, -1.2840797110230651) +station = ('kbtv', 0.0094774652491836104) +zone = ('nyz034', 0.0037476912147216723) + +[12961] +centroid = (0.76894164586661151, -1.2836816188739777) +station = ('kbtv', 0.0087197716016486661) +zone = ('nyz035', 0.0036441700760890569) + +[12962] +centroid = (0.78018645317136059, -1.2846572579258426) +station = ('kpbg', 0.0019418629494725944) +zone = ('nyz028', 0.002104798238964443) + +[12964] +centroid = (0.77014257201832381, -1.2850286988972519) +station = ('kbtv', 0.0084162111347534478) +zone = ('nyz034', 0.0029494920612270392) + +[12965] +centroid = (0.78022249422041423, -1.3035041958535032) +station = ('kmss', 0.0045005932673154161) +zone = ('nyz026', 0.0037919129173691465) + +[12966] +centroid = (0.78188818409864003, -1.2988510957078088) +station = ('cwbz', 0.0057926444375071013) +zone = ('nyz027', 0.0017947352828065353) + +[12967] +centroid = (0.78146979377035197, -1.303020338224973) +station = ('kmss', 0.0036487030532170324) +zone = ('nyz026', 0.0034295108655188634) + +[12969] +centroid = (0.78035205001078978, -1.2932576470677248) +station = ('kslk', 0.0055715986431516262) +zone = ('nyz030', 0.0040352039714241384) + +[12970] +centroid = (0.77628991834982064, -1.2969107782717817) +station = ('kslk', 0.0019117546160781714) +zone = ('nyz030', 0.00078848776980086188) + +[12972] +centroid = (0.77761540865024759, -1.2840264435742941) +station = ('kpbg', 0.0021045511450133543) +zone = ('nyz031', 0.0038524246181505179) + +[12973] +centroid = (0.77296578170976482, -1.3019232242571692) +station = ('kslk', 0.0053023731239478346) +zone = ('nyz029', 0.0033079919811646596) + +[12974] +centroid = (0.76899452934294699, -1.2822031853711984) +station = ('kbtv', 0.0081133530422484862) +zone = ('nyz035', 0.0033162870952492167) + +[12975] +centroid = (0.77717925087017437, -1.281604624704227) +station = ('kpbg', 0.0021575156572505136) +zone = ('vtz005', 0.0035236829505965539) + +[12976] +centroid = (0.77702887330182246, -1.2952715475850161) +station = ('kslk', 0.0021094923904736839) +zone = ('nyz030', 0.00074800790607876396) + +[12977] +centroid = (0.77277969470491703, -1.2928172306842767) +station = ('kslk', 0.0026686855398387384) +zone = ('nyz034', 0.004319241300140564) + +[12978] +centroid = (0.77870238225509725, -1.2882050410562489) +station = ('kpbg', 0.0042886141466999097) +zone = ('nyz031', 0.0015920615766549186) + +[12979] +centroid = (0.78525248076478427, -1.2806069421439095) +station = ('kfso', 0.0035434283127015647) +zone = ('vtz001', 0.0035368628938751518) + +[12980] +centroid = (0.77778592731816754, -1.3006905505663633) +station = ('kslk', 0.0049460965938410047) +zone = ('nyz030', 0.0032274449946160825) + +[12981] +centroid = (0.77888977825688388, -1.2888532214338546) +station = ('kslk', 0.0059276618017912383) +zone = ('nyz031', 0.0015390569192439514) + +[12983] +centroid = (0.7729438429210671, -1.2945385092991786) +station = ('kslk', 0.0020138062528594876) +zone = ('nyz030', 0.0042065493356424682) + +[12985] +centroid = (0.77773108907306998, -1.2869877611694456) +station = ('kpbg', 0.0037252561722164721) +zone = ('nyz031', 0.0026386079389015479) + +[12986] +centroid = (0.77188950697322989, -1.2999374759007127) +station = ('kslk', 0.0046400600794944133) +zone = ('nyz030', 0.0056881862963061025) + +[12987] +centroid = (0.77354460270289616, -1.2872407117379372) +station = ('kslk', 0.0057407926956177498) +zone = ('nyz034', 0.0043065030762723337) + +[12989] +centroid = (0.77702245049017515, -1.2927613626949204) +station = ('kslk', 0.0026506846527943645) +zone = ('nyz030', 0.0025350292992005227) + +[12992] +centroid = (0.78221208230122519, -1.2831258885868502) +station = ('kpbg', 0.0029902759560491679) +zone = ('nyz028', 0.00026537793029679079) + +[12993] +centroid = (0.77163353698513248, -1.2824019783730003) +station = ('kbtv', 0.0060365792823971892) +zone = ('nyz035', 0.0008377734604530278) + +[12996] +centroid = (0.774145659190698, -1.2819103540292986) +station = ('kpbg', 0.0051490676265285662) +zone = ('nyz035', 0.0018643654650377453) + +[12997] +centroid = (0.77445142342235485, -1.2896594413752283) +station = ('kslk', 0.0038703130244946565) +zone = ('nyz034', 0.0050424882005483656) + +[12998] +centroid = (0.76930273703555663, -1.2841529624917711) +station = ('kbtv', 0.0086300621477351496) +zone = ('nyz035', 0.0034757106693318069) + +[13020] +centroid = (0.74728757272992052, -1.3277505716215965) +station = ('ksyr', 0.0052503301391407103) +zone = ('nyz018', 0.0036443601821863278) + +[13021] +centroid = (0.74913509100961928, -1.336198576066487) +station = ('kith', 0.0076390283978645893) +zone = ('nyz017', 0.0021441010562830791) + +[13024] +centroid = (0.74935006321358733, -1.3364724705860025) +station = ('kfzy', 0.0076468939274709725) +zone = ('nyz017', 0.0023953638206371201) + +[13026] +centroid = (0.74602428596403458, -1.3378344208145037) +station = ('kith', 0.0050729398666162027) +zone = ('nyz017', 0.0018549518798299325) + +[13027] +centroid = (0.75339645200470351, -1.3328092513788692) +station = ('kfzy', 0.0032128571013993528) +zone = ('nyz018', 0.0035414549339663399) + +[13028] +centroid = (0.7557482831717659, -1.3251732613684688) +station = ('ksyr', 0.0039017972481098415) +zone = ('nyz006', 0.0034848124209052918) + +[13029] +centroid = (0.75443501017610282, -1.3290916651655362) +station = ('ksyr', 0.002016080237355819) +zone = ('nyz006', 0.0034940448755869211) + +[13030] +centroid = (0.75314854543775023, -1.325799136438234) +station = ('ksyr', 0.0018556963233258472) +zone = ('nyz018', 0.0039079113839540353) + +[13031] +centroid = (0.75126762155616844, -1.3318657438385337) +station = ('ksyr', 0.0029621066134160371) +zone = ('nyz018', 0.0016230113177571307) + +[13032] +centroid = (0.75191627317267218, -1.3223670337306499) +station = ('krme', 0.0053600708807343108) +zone = ('nyz036', 0.0031913931799293794) + +[13033] +centroid = (0.75378141927781583, -1.336269907673016) +station = ('kfzy', 0.0036245543264168153) +zone = ('nyz005', 0.00061332848742270973) + +[13034] +centroid = (0.74982810889570861, -1.3388628211696565) +station = ('kpeo', 0.0069621468304227547) +zone = ('nyz016', 0.0034711920471426822) + +[13035] +centroid = (0.74945932082476208, -1.3234857374213005) +station = ('ksyr', 0.0046118639182235804) +zone = ('nyz036', 0.0021077192165474355) + +[13036] +centroid = (0.75588911378910928, -1.329361004375704) +station = ('kfzy', 0.0028398637979164401) +zone = ('nyz006', 0.002063243930294814) + +[13037] +centroid = (0.75157897084143177, -1.3239366606868457) +station = ('ksyr', 0.0032517289860448219) +zone = ('nyz036', 0.0035292655694144832) + +[13039] +centroid = (0.75349602303852981, -1.3274319617666446) +station = ('ksyr', 0.0011170838188864181) +zone = ('nyz018', 0.0033968108414370009) + +[13040] +centroid = (0.74280600354311221, -1.3252417829949021) +station = ('kbgm', 0.0063135467985238553) +zone = ('nyz044', 0.001895306919642788) + +[13041] +centroid = (0.7538441638644251, -1.3298065345738606) +station = ('ksyr', 0.001764648035974945) +zone = ('nyz018', 0.0032514882977890507) + +[13042] +centroid = (0.75503728839438089, -1.3238772671324004) +station = ('ksyr', 0.0040262291729027027) +zone = ('nyz006', 0.004665771977286454) + +[13044] +centroid = (0.75557483235070266, -1.326384624589108) +station = ('ksyr', 0.0033206785084419948) +zone = ('nyz006', 0.0029857889867461627) + +[13045] +centroid = (0.74305310725860951, -1.329977576840556) +station = ('kith', 0.0035996126532527339) +zone = ('nyz044', 0.0017349001466547536) + +[13051] +centroid = (0.74834002372216568, -1.3248556812577759) +station = ('ksyr', 0.0048481439698843829) +zone = ('nyz036', 0.0031197161739552567) + +[13052] +centroid = (0.74547044063249923, -1.324097422964247) +station = ('ksyr', 0.0076690456520372343) +zone = ('nyz044', 0.0033341950944309707) + +[13053] +centroid = (0.74140843114457766, -1.3311263001943412) +station = ('kith', 0.0024586808555146279) +zone = ('nyz025', 0.0026927750412116167) + +[13054] +centroid = (0.75344732835239925, -1.3206351958737732) +station = ('krme', 0.0035736368247025097) +zone = ('nyz009', 0.0044710475616171084) + +[13057] +centroid = (0.75227102879643248, -1.3271120429147543) +station = ('ksyr', 0.00083165347861718117) +zone = ('nyz018', 0.0026094529044461308) + +[13060] +centroid = (0.75089059553115267, -1.3336387540124646) +station = ('ksyr', 0.0043002283303492555) +zone = ('nyz018', 0.0027886724325247112) + +[13061] +centroid = (0.74825495637442352, -1.3222977790659307) +station = ('ksyr', 0.0060717064916252002) +zone = ('nyz036', 0.0013815570522588024) + +[13062] +centroid = (0.74148733748006046, -1.3331588582813363) +station = ('kith', 0.00095910534820512633) +zone = ('nyz025', 0.0012791736169240084) + +[13063] +centroid = (0.74783604244735979, -1.3260655784018434) +station = ('ksyr', 0.0049437418537630869) +zone = ('nyz018', 0.0039070194352430103) + +[13064] +centroid = (0.75623364178345287, -1.3388754922600259) +station = ('kfzy', 0.0041870183438266675) +zone = ('nyz005', 0.0029534341179415897) + +[13066] +centroid = (0.75105837403214681, -1.3264618728618014) +station = ('ksyr', 0.0019398365667210244) +zone = ('nyz018', 0.0025181048005643997) + +[13068] +centroid = (0.74163282812650666, -1.3327194367355617) +station = ('kith', 0.0012761276935692896) +zone = ('nyz025', 0.0016342436953692703) + +[13069] +centroid = (0.75623856361194364, -1.333093966939747) +station = ('kfzy', 0.00036325802543425831) +zone = ('nyz006', 0.0034752619033944685) + +[13071] +centroid = (0.74482105597770965, -1.3359201436909165) +station = ('kith', 0.0033934717514584145) +zone = ('nyz017', 0.0022065276136390964) + +[13072] +centroid = (0.74634135992924444, -1.322331062494766) +station = ('ksyr', 0.0075301878220035276) +zone = ('nyz036', 0.0028936640581761043) + +[13073] +centroid = (0.74322524908273369, -1.3332207651099044) +station = ('kith', 0.0018561544262490589) +zone = ('nyz025', 0.0025492671357980178) + +[13074] +centroid = (0.75591810370798496, -1.3360468022347336) +station = ('kfzy', 0.0022212799006930141) +zone = ('nyz005', 0.0024446802118606417) + +[13076] +centroid = (0.75666510462783854, -1.3290563397014761) +station = ('kfzy', 0.0029706282590409726) +zone = ('nyz006', 0.0012657720039431206) + +[13077] +centroid = (0.7457438115532391, -1.3301336092756844) +station = ('kith', 0.0052173408187986469) +zone = ('nyz044', 0.0029417344902740112) + +[13078] +centroid = (0.74976698746530368, -1.327516226262931) +station = ('ksyr', 0.0028051032225815289) +zone = ('nyz018', 0.0018943345440748985) + +[13080] +centroid = (0.7521183997533456, -1.3349195813373331) +station = ('kfzy', 0.0046655374545662943) +zone = ('nyz005', 0.0021503648948586248) + +[13081] +centroid = (0.74479512038502504, -1.337396098826158) +station = ('kith', 0.0038579632488529142) +zone = ('nyz017', 0.0025500964981954198) + +[13082] +centroid = (0.75228455509813552, -1.3257501450461306) +station = ('ksyr', 0.00180176167768987) +zone = ('nyz018', 0.0034383261912229791) + +[13083] +centroid = (0.76176591663325455, -1.3260780575059952) +station = ('kart', 0.0059281656966822327) +zone = ('nyz006', 0.0043552617892437242) + +[13084] +centroid = (0.74840662548642178, -1.3286227126488179) +station = ('ksyr', 0.004132994319287089) +zone = ('nyz018', 0.0023626514844371045) + +[13087] +centroid = (0.74540563655737258, -1.3291389112283878) +station = ('kith', 0.0054522805215432985) +zone = ('nyz044', 0.0022559697157041236) + +[13088] +centroid = (0.75245369495594616, -1.3297568799566415) +station = ('ksyr', 0.0011421517892129494) +zone = ('nyz018', 0.001862042871119832) + +[13090] +centroid = (0.7531633981896847, -1.3301573457535114) +station = ('ksyr', 0.0015663598927633537) +zone = ('nyz018', 0.0025805887806601372) + +[13092] +centroid = (0.74446256534935007, -1.3337683098028401) +station = ('kith', 0.0029013380045150683) +zone = ('nyz017', 0.0029277662376758829) + +[13101] +centroid = (0.74332045679343006, -1.3274277380698549) +station = ('kbgm', 0.006855807771907382) +zone = ('nyz044', 0.00020921551034608872) + +[13102] +centroid = (0.74264290252451326, -1.331546627838099) +station = ('kith', 0.0023781059110574085) +zone = ('nyz025', 0.0029000189046917216) + +[13103] +centroid = (0.7561771629288585, -1.3283621349914951) +station = ('kfzy', 0.0035011664389374224) +zone = ('nyz006', 0.0017950182222816148) + +[13104] +centroid = (0.74984633013309943, -1.3255503223000695) +station = ('ksyr', 0.0033057662521980059) +zone = ('nyz036', 0.0036674544467135898) + +[13108] +centroid = (0.74987800785902303, -1.3322292435618466) +station = ('ksyr', 0.003963911513726371) +zone = ('nyz018', 0.001883820296146135) + +[13110] +centroid = (0.74866592905339058, -1.3313435064197519) +station = ('ksyr', 0.0044959267422314481) +zone = ('nyz018', 0.0022165819235423624) + +[13111] +centroid = (0.75500304503445681, -1.337171160792161) +station = ('kfzy', 0.0033397559686630983) +zone = ('nyz005', 0.0014154736635293434) + +[13112] +centroid = (0.75234626994048592, -1.3337324258334189) +station = ('kfzy', 0.0042757569212866402) +zone = ('nyz005', 0.0027335323170100487) + +[13113] +centroid = (0.75333035638593049, -1.3358509762926598) +station = ('kfzy', 0.0038194746996767608) +zone = ('nyz005', 0.00092524398978600518) + +[13114] +centroid = (0.75861968140385438, -1.3307225531784774) +station = ('kfzy', 0.0026766019908977686) +zone = ('nyz006', 0.0014843001241826091) + +[13115] +centroid = (0.757449263607467, -1.3348065014550965) +station = ('kfzy', 0.0014788726839667047) +zone = ('nyz005', 0.0041963474004714013) + +[13116] +centroid = (0.75179703227817585, -1.3265889328313465) +station = ('ksyr', 0.0013821607648374307) +zone = ('nyz018', 0.0026681815222532089) + +[13117] +centroid = (0.75065387652470461, -1.3387985755998906) +station = ('kfzy', 0.0072374926506163714) +zone = ('nyz005', 0.0031958772147985337) + +[13118] +centroid = (0.74622573186629981, -1.3332095077362289) +station = ('kith', 0.0047100308584686543) +zone = ('nyz017', 0.0019965003720809637) + +[13120] +centroid = (0.74932517481845384, -1.3295071058873884) +station = ('ksyr', 0.0033430679297123131) +zone = ('nyz018', 0.0012917496349342586) + +[13122] +centroid = (0.74771968134612943, -1.3239457713055411) +station = ('ksyr', 0.005725801162078957) +zone = ('nyz036', 0.0026972717351318805) + +[13123] +centroid = (0.7545680391716898, -1.3224197077674751) +station = ('krme', 0.0046930391649530837) +zone = ('nyz009', 0.0045992317555073568) + +[13124] +centroid = (0.74457620373694744, -1.3233715405283426) +station = ('kbgm', 0.0083061597865800446) +zone = ('nyz044', 0.0033701166783508545) + +[13126] +centroid = (0.75815004820872778, -1.3344343099921085) +station = ('kfzy', 0.0018126144186379881) +zone = ('nyz006', 0.0040145262571372941) + +[13131] +centroid = (0.75787856224358008, -1.3280524786756063) +station = ('kfzy', 0.0039124852141318488) +zone = ('nyz006', 0.00062801350620189016) + +[13132] +centroid = (0.75523759983263228, -1.3308318107896522) +station = ('kfzy', 0.0021631482616963418) +zone = ('nyz006', 0.0030289912344203442) + +[13134] +centroid = (0.74992204251605088, -1.3209468244117171) +station = ('krme', 0.0058914361982697885) +zone = ('nyz036', 0.00096971719120282596) + +[13135] +centroid = (0.75491925177706853, -1.3319371103516475) +station = ('kfzy', 0.0018954848731757437) +zone = ('nyz006', 0.0037251630818054657) + +[13136] +centroid = (0.74375631786753049, -1.3237412710770848) +station = ('kbgm', 0.00744464013207243) +zone = ('nyz044', 0.0029148482923746144) + +[13138] +centroid = (0.74873031424949665, -1.3267056429984274) +station = ('ksyr', 0.0039506845838916515) +zone = ('nyz018', 0.0029587301888616925) + +[13140] +centroid = (0.75154542561320836, -1.3377996538558039) +station = ('kfzy', 0.0060896285491543536) +zone = ('nyz005', 0.0021125766851265914) + +[13141] +centroid = (0.74617180119241322, -1.3296912555767664) +station = ('kith', 0.0057546587294985416) +zone = ('nyz044', 0.0031228928851343369) + +[13142] +centroid = (0.76017639292358574, -1.3288565518620001) +station = ('kfzy', 0.0047393216890579577) +zone = ('nyz006', 0.0022501065802077542) + +[13143] +centroid = (0.75460685529425409, -1.3389257228358984) +station = ('kfzy', 0.0046587036936662296) +zone = ('nyz005', 0.0016931754871413066) + +[13144] +centroid = (0.76041808611840189, -1.3260492072134598) +station = ('kfzy', 0.0064087255695656677) +zone = ('nyz006', 0.0032446363566742734) + +[13145] +centroid = (0.76184178609583875, -1.328529634239809) +station = ('kart', 0.0059117985278806882) +zone = ('nyz006', 0.0039250402942806765) + +[13146] +centroid = (0.75198636559543219, -1.3395435344845192) +station = ('kfzy', 0.006562038713624754) +zone = ('nyz005', 0.002414921929297487) + +[13147] +centroid = (0.74657167357733756, -1.3363917665613902) +station = ('kith', 0.0051681641608401063) +zone = ('nyz017', 0.00067634912774068069) + +[13148] +centroid = (0.74900581447192405, -1.3401237342877597) +station = ('kpeo', 0.0057472254299731993) +zone = ('nyz016', 0.0023926438547340139) + +[13152] +centroid = (0.74858635949279217, -1.3329536773744717) +station = ('ksyr', 0.0052576461034032837) +zone = ('nyz017', 0.0025522121355387064) + +[13153] +centroid = (0.75043148667141557, -1.3343675162416346) +station = ('ksyr', 0.0049731318961616141) +zone = ('nyz018', 0.0033102264395958986) + +[13155] +centroid = (0.74481133449377612, -1.3225533650815926) +station = ('kbgm', 0.0086994371790804232) +zone = ('nyz045', 0.0038054970796168298) + +[13156] +centroid = (0.75618124699930811, -1.3379921636722991) +station = ('kfzy', 0.0035533709208239298) +zone = ('nyz005', 0.0026775437710630117) + +[13157] +centroid = (0.75409833616339295, -1.3215882852717022) +station = ('krme', 0.0041146290579643753) +zone = ('nyz009', 0.0044224476495584274) + +[13158] +centroid = (0.74520209626000511, -1.3255962070061047) +station = ('ksyr', 0.007569065797832366) +zone = ('nyz044', 0.0023461147528758956) + +[13159] +centroid = (0.74704923056726824, -1.3284009685673519) +station = ('ksyr', 0.0054806271879235501) +zone = ('nyz044', 0.0036652269065481557) + +[13160] +centroid = (0.74748259582053844, -1.3377757428450519) +station = ('kpeo', 0.0060035816245695064) +zone = ('nyz017', 0.0015880723739376686) + +[13162] +centroid = (0.75372122287191468, -1.321471522744744) +station = ('krme', 0.0040915541805452175) +zone = ('nyz009', 0.0046330703240883581) + +[13163] +centroid = (0.75188223925225828, -1.3213978873036023) +station = ('krme', 0.0047772866501336175) +zone = ('nyz036', 0.0029571193601937201) + +[13164] +centroid = (0.75218264532311152, -1.3319057467849893) +station = ('ksyr', 0.0027306383463892524) +zone = ('nyz018', 0.0021889787995932591) + +[13165] +centroid = (0.74903665443980683, -1.3418666724386787) +station = ('kpeo', 0.0051202520902714774) +zone = ('nyz016', 0.0024871440349810534) + +[13166] +centroid = (0.75174685406218111, -1.3361685738566453) +station = ('kfzy', 0.0053315521364395357) +zone = ('nyz005', 0.0019563246470693158) + +[13167] +centroid = (0.75618869955521417, -1.3275019669229422) +station = ('ksyr', 0.0036956290660905425) +zone = ('nyz006', 0.0020186438171314) + +[13202] +centroid = (0.75125570095737737, -1.3290793780476022) +station = ('ksyr', 0.0014265149813776237) +zone = ('nyz018', 0.00086836250366879701) + +[13203] +centroid = (0.75155816651674789, -1.3288050995556513) +station = ('ksyr', 0.0010669269902088365) +zone = ('nyz018', 0.0012294421099965358) + +[13204] +centroid = (0.75137850232354775, -1.3295477196990824) +station = ('ksyr', 0.0015153036087568784) +zone = ('nyz018', 0.00081551594293455417) + +[13205] +centroid = (0.75058366192889692, -1.3289291226522981) +station = ('ksyr', 0.0020166581065995596) +zone = ('nyz018', 0.00067103317553402213) + +[13206] +centroid = (0.75177380194583188, -1.3282971389301508) +station = ('ksyr', 0.00075763356424608992) +zone = ('nyz018', 0.0016362493734521544) + +[13207] +centroid = (0.75071616732570834, -1.3293021169667416) +station = ('ksyr', 0.0019838237792451871) +zone = ('nyz018', 0.00041685132094900363) + +[13208] +centroid = (0.75186633930277258, -1.3289849557350693) +station = ('ksyr', 0.00087736580392144576) +zone = ('nyz018', 0.0014207341555437748) + +[13209] +centroid = (0.75168716380176293, -1.3303641498165801) +station = ('ksyr', 0.0017929008580896983) +zone = ('nyz018', 0.0011578818826277675) + +[13210] +centroid = (0.75103592909796613, -1.3286671661848661) +station = ('ksyr', 0.0015311247797377158) +zone = ('nyz018', 0.00096954213877224261) + +[13211] +centroid = (0.75229925077043724, -1.3285356207191434) +station = ('ksyr', 0.00033743862583389362) +zone = ('nyz018', 0.0019569486361619361) + +[13212] +centroid = (0.75275521803752077, -1.3287218473503313) +station = ('ksyr', 0.00044640342280211916) +zone = ('nyz018', 0.0023132735549751351) + +[13214] +centroid = (0.75116717785771614, -1.3277695433505656) +station = ('ksyr', 0.001395747531454094) +zone = ('nyz018', 0.0016235379560253882) + +[13215] +centroid = (0.7501563529681311, -1.3303490527185506) +station = ('ksyr', 0.0028461051105861022) +zone = ('nyz018', 0.00057055582468293982) + +[13219] +centroid = (0.75121180592668968, -1.3303631724321991) +station = ('ksyr', 0.0020587651926893781) +zone = ('nyz018', 0.00072509111442876375) + +[13224] +centroid = (0.75114019506748031, -1.3282461753159926) +station = ('ksyr', 0.0013880931813632198) +zone = ('nyz018', 0.0012918059013129687) + +[13290] +centroid = (0.75169822918922047, -1.3294699478276135) +station = ('ksyr', 0.0012466872061029062) +zone = ('nyz018', 0.0011391940697409407) + +[13301] +centroid = (0.75775302071048412, -1.3128048110912858) +station = ('krme', 0.0039369307164092262) +zone = ('nyz009', 0.0032406078411678385) + +[13302] +centroid = (0.75918523789467063, -1.3258405531013839) +station = ('kfzy', 0.0058985588180061124) +zone = ('nyz006', 0.002561736141575508) + +[13303] +centroid = (0.75690416237548408, -1.3171687799930947) +station = ('krme', 0.0024953937205895349) +zone = ('nyz009', 0.00024268032781039385) + +[13304] +centroid = (0.75474808733732546, -1.3117944748938912) +station = ('krme', 0.0030534669991396659) +zone = ('nyz038', 0.003719483196590575) + +[13305] +centroid = (0.76606495928688934, -1.3163477596596642) +station = ('kgtb', 0.0047907517493530442) +zone = ('nyz008', 0.001909723922757115) + +[13308] +centroid = (0.75487699735587777, -1.3204754109807533) +station = ('krme', 0.0032909268886355384) +zone = ('nyz009', 0.003298261641062796) + +[13309] +centroid = (0.75838055384303871, -1.3152005896489132) +station = ('krme', 0.0038582180506463331) +zone = ('nyz009', 0.0018980765307355892) + +[13310] +centroid = (0.7485650839292104, -1.3189722810690581) +station = ('krme', 0.00638531535566959) +zone = ('nyz036', 0.0013190523082116624) + +[13312] +centroid = (0.76265786714748618, -1.3123951125026725) +station = ('krme', 0.0085013848116573549) +zone = ('nyz032', 0.0028544623055381732) + +[13313] +centroid = (0.74840104043281541, -1.3137599774310247) +station = ('krme', 0.0063725463018376016) +zone = ('nyz037', 0.0045204883289763883) + +[13314] +centroid = (0.74728947513880528, -1.3145663544520312) +station = ('krme', 0.007347399830274313) +zone = ('nyz036', 0.00479002561552405) + +[13315] +centroid = (0.74602604874657907, -1.3115034237878289) +station = ('krme', 0.0091439044798622589) +zone = ('nyz046', 0.0023952403438769814) + +[13316] +centroid = (0.7578030593001388, -1.32190783760445) +station = ('krme', 0.0053942472012745886) +zone = ('nyz009', 0.0034929985495967446) + +[13317] +centroid = (0.74794505571243941, -1.3018556625618245) +station = ('ksch', 0.0084131636088013821) +zone = ('nyz040', 0.0021081470900567558) + +[13318] +centroid = (0.7490984914552048, -1.3135616382148281) +station = ('krme', 0.0057435011711580251) +zone = ('nyz037', 0.0039494722172840795) + +[13319] +centroid = (0.7509529735986189, -1.3136556591016331) +station = ('krme', 0.0039890816063118664) +zone = ('nyz037', 0.0024180318930011333) + +[13320] +centroid = (0.74661354402609292, -1.3044730106679927) +station = ('krme', 0.011575733563478147) +zone = ('nyz040', 0.0044237596268823084) + +[13321] +centroid = (0.75202361092166981, -1.3154657400688763) +station = ('krme', 0.0025677630913160453) +zone = ('nyz037', 0.00072707111942775179) + +[13322] +centroid = (0.74969474828756377, -1.3125165176054414) +station = ('krme', 0.0054863372049646295) +zone = ('nyz037', 0.003899703866590856) + +[13323] +centroid = (0.75118929117933897, -1.315618124765868) +station = ('krme', 0.0033849388698983089) +zone = ('nyz037', 0.0014398019037373726) + +[13324] +centroid = (0.75617922241737578, -1.3084149938632545) +station = ('krme', 0.0057381922170298815) +zone = ('nyz038', 0.0040794476719172908) + +[13325] +centroid = (0.76066386338366765, -1.3181964298566691) +station = ('krme', 0.0063091144386338577) +zone = ('nyz009', 0.0035929382953238378) + +[13326] +centroid = (0.74564848166949516, -1.307170818452678) +station = ('krme', 0.011000291854817221) +zone = ('nyz046', 0.0023447141047529848) + +[13327] +centroid = (0.76747239279569768, -1.3135750947033611) +station = ('kgtb', 0.0060635718726468118) +zone = ('nyz008', 0.0040369554941200453) + +[13328] +centroid = (0.7502314544858445, -1.316484872725701) +station = ('krme', 0.004348316792476937) +zone = ('nyz037', 0.0023715221325225021) + +[13329] +centroid = (0.75242852730813248, -1.3038222122965091) +station = ('krme', 0.0091189562767376095) +zone = ('nyz082', 0.0036823043681981499) + +[13331] +centroid = (0.7656115576538064, -1.3069179726039415) +station = ('kgtb', 0.011179410671096955) +zone = ('nyz032', 0.0029290534462806102) + +[13332] +centroid = (0.74637586508855636, -1.3191506362653196) +station = ('krme', 0.0085105164423610255) +zone = ('nyz036', 0.0028290142470329487) + +[13333] +centroid = (0.74764660441034836, -1.3058316796775005) +station = ('krme', 0.010141687416356179) +zone = ('nyz046', 0.0044832931239922819) + +[13334] +centroid = (0.74747283943001974, -1.3204537514447359) +station = ('ksyr', 0.0075920938433960182) +zone = ('nyz036', 0.0015081443375860395) + +[13335] +centroid = (0.7452950350426738, -1.3133292650782173) +station = ('krme', 0.0094694834201887318) +zone = ('nyz046', 0.0030141099788701373) + +[13337] +centroid = (0.74626446072240149, -1.3089889977476505) +station = ('krme', 0.0097475334729069697) +zone = ('nyz046', 0.0022054223453042711) + +[13338] +centroid = (0.75939937234059784, -1.3086888360228928) +station = ('krme', 0.0071733795397928108) +zone = ('nyz032', 0.0035071199204192321) + +[13339] +centroid = (0.74939020578638316, -1.3030394321269896) +station = ('krme', 0.010773324522961477) +zone = ('nyz039', 0.0035279438214587751) + +[13340] +centroid = (0.75156743421507599, -1.3112409088150363) +station = ('krme', 0.0045744711347704137) +zone = ('nyz038', 0.0022777776153069464) + +[13341] +centroid = (0.75112139787143628, -1.31592399371728) +station = ('krme', 0.0034428431309602527) +zone = ('nyz037', 0.0014700133103611032) + +[13342] +centroid = (0.74445523496649169, -1.3124044151075858) +station = ('krme', 0.010441807426093535) +zone = ('nyz046', 0.0021179082965929736) + +[13343] +centroid = (0.7636031723769513, -1.3144336396157095) +station = ('kgtb', 0.0074385091061126857) +zone = ('nyz008', 0.0018263946531172648) + +[13345] +centroid = (0.76248387527435491, -1.3146038790309489) +station = ('krme', 0.007982442568981651) +zone = ('nyz008', 0.0023427089953506836) + +[13346] +centroid = (0.747323875578362, -1.318472453677872) +station = ('krme', 0.0074662053632899303) +zone = ('nyz036', 0.0023119606275660703) + +[13348] +centroid = (0.74542980936751269, -1.3101650180509368) +station = ('krme', 0.010075981993042172) +zone = ('nyz046', 0.0014006915075982448) + +[13350] +centroid = (0.75155902172808142, -1.3090077251305245) +station = ('krme', 0.0059071221781971609) +zone = ('nyz038', 0.0007969248564616753) + +[13352] +centroid = (0.75596034067588314, -1.3110251512129047) +station = ('krme', 0.0038671978950128669) +zone = ('nyz038', 0.0043697084466276601) + +[13353] +centroid = (0.75829888988733785, -1.3036670176194218) +station = ('krme', 0.0097015313049339212) +zone = ('nyz033', 0.0044888723391334198) + +[13354] +centroid = (0.75511832403155099, -1.3136830956774743) +station = ('krme', 0.0017612514859064606) +zone = ('nyz037', 0.0030837957543627492) + +[13355] +centroid = (0.74717267770526175, -1.3165094295082764) +station = ('krme', 0.007401530004617349) +zone = ('nyz036', 0.0035503654988432651) + +[13357] +centroid = (0.74998476964936756, -1.3104138496423936) +station = ('krme', 0.006121724059999346) +zone = ('nyz038', 0.0026609277033156132) + +[13360] +centroid = (0.76308919036553158, -1.3040198882875902) +station = ('krme', 0.012164531454675064) +zone = ('nyz032', 0.0032154022804882746) + +[13361] +centroid = (0.74882220583461423, -1.3066854249344058) +station = ('krme', 0.008891262442526672) +zone = ('nyz038', 0.0034645932216701321) + +[13362] +centroid = (0.75018052577827121, -1.3181076100510352) +station = ('krme', 0.004650984624866147) +zone = ('nyz036', 0.0022410603045783842) + +[13363] +centroid = (0.75615566047247385, -1.3179523804673627) +station = ('krme', 0.0021445084652919602) +zone = ('nyz009', 0.0011368048551723437) + +[13364] +centroid = (0.74708778489044481, -1.3135534875272212) +station = ('krme', 0.0076835404713133269) +zone = ('nyz046', 0.004184297822669698) + +[13365] +centroid = (0.75268526524110091, -1.3064363839034387) +station = ('krme', 0.0072072241257911188) +zone = ('nyz038', 0.0014197929034727253) + +[13367] +centroid = (0.76371647915199081, -1.3182944650007535) +station = ('kgtb', 0.0056908411231126254) +zone = ('nyz008', 0.0011575412404338163) + +[13368] +centroid = (0.76163520892557268, -1.3140023163976642) +station = ('krme', 0.0072152944766054163) +zone = ('nyz008', 0.003269571866005259) + +[13402] +centroid = (0.74861344700278321, -1.3177325562480739) +station = ('krme', 0.0060870335579838323) +zone = ('nyz036', 0.0021924161677620291) + +[13403] +centroid = (0.75336322093574548, -1.3136682254722474) +station = ('krme', 0.0020682487238838959) +zone = ('nyz037', 0.0019350857103345462) + +[13404] +centroid = (0.76334392116986016, -1.3172306693683704) +station = ('kgtb', 0.0063862413726251573) +zone = ('nyz008', 0.00089153228843101172) + +[13406] +centroid = (0.75283929054758936, -1.3076860047412815) +station = ('krme', 0.0062875504673663464) +zone = ('nyz038', 0.00083008464923779355) + +[13407] +centroid = (0.74994701817764686, -1.3081345718123369) +station = ('krme', 0.0073563305851114006) +zone = ('nyz038', 0.0021562003459174224) + +[13408] +centroid = (0.74914678471560758, -1.3208084372553264) +station = ('krme', 0.0064647936440192632) +zone = ('nyz036', 0.00019717636008484372) + +[13409] +centroid = (0.75008074530493474, -1.3193840740527738) +station = ('krme', 0.0051266788122899349) +zone = ('nyz036', 0.0014622198278110331) + +[13410] +centroid = (0.74929033804658407, -1.3022341372101196) +station = ('krme', 0.011339243360055441) +zone = ('nyz040', 0.0022657082602582888) + +[13411] +centroid = (0.74409999065054078, -1.3143456226615313) +station = ('krme', 0.010532070976354198) +zone = ('nyz046', 0.0035164175212014917) + +[13413] +centroid = (0.75154498928089541, -1.3138737379916698) +station = ('krme', 0.0033870558134898366) +zone = ('nyz037', 0.001928622689710349) + +[13415] +centroid = (0.74344898283954686, -1.312460946322058) +station = ('krme', 0.011409610318730947) +zone = ('nyz046', 0.0022278041163499231) + +[13416] +centroid = (0.7537621508428739, -1.3084832187837152) +station = ('krme', 0.0055212508887518231) +zone = ('nyz038', 0.00167158284284535) + +[13417] +centroid = (0.75225375003683781, -1.3141245941650588) +station = ('krme', 0.002676786569916708) +zone = ('nyz037', 0.0014777145084832722) + +[13418] +centroid = (0.74779860513490448, -1.3156372186678849) +station = ('krme', 0.0067699982470662123) +zone = ('nyz036', 0.0038807117927796963) + +[13420] +centroid = (0.76301899322301636, -1.3087202519494283) +station = ('krme', 0.0099612383525712576) +zone = ('nyz032', 0.00022050852770977685) + +[13421] +centroid = (0.75157219896393401, -1.3205177177618217) +station = ('krme', 0.004463185290795456) +zone = ('nyz036', 0.0026036935577747598) + +[13424] +centroid = (0.75315090163224052, -1.3153711432234183) +station = ('krme', 0.0014808089411790285) +zone = ('nyz037', 0.00077437523164099826) + +[13425] +centroid = (0.74987710028781207, -1.3174977396505108) +station = ('krme', 0.0048164411810259081) +zone = ('nyz036', 0.0025032254804464044) + +[13428] +centroid = (0.74900928767713537, -1.3010772980753127) +station = ('kalb', 0.0099763135807270833) +zone = ('nyz040', 0.0013800460516794791) + +[13431] +centroid = (0.75414074766421657, -1.3102767540296496) +station = ('krme', 0.0041762727492782436) +zone = ('nyz038', 0.0025354168424004046) + +[13433] +centroid = (0.76078060845733364, -1.3132279138085543) +station = ('krme', 0.0065297641325394876) +zone = ('nyz032', 0.0040495791909882142) + +[13435] +centroid = (0.75581450096358649, -1.3116284068155641) +station = ('krme', 0.003405222742639095) +zone = ('nyz038', 0.0044709547058135396) + +[13436] +centroid = (0.76464660001696361, -1.3031714837381956) +station = ('kslk', 0.011824088605699494) +zone = ('nyz033', 0.0033741400212435454) + +[13437] +centroid = (0.76061984617993239, -1.3230269252675364) +station = ('kart', 0.0076052762723827728) +zone = ('nyz006', 0.0050488469711980561) + +[13438] +centroid = (0.7566724524639894, -1.3117827113747327) +station = ('krme', 0.0037108877989098072) +zone = ('nyz037', 0.0051553717637242416) + +[13439] +centroid = (0.74800127276764605, -1.3089144721885906) +station = ('krme', 0.0083497682221598171) +zone = ('nyz046', 0.0039303147356745819) + +[13440] +centroid = (0.75425749273788234, -1.3170565029623142) +station = ('krme', 0.00084336615135461332) +zone = ('nyz037', 0.001812120589491368) + +[13441] +centroid = (0.75444260235834892, -1.3161222107604289) +station = ('krme', 0.0001604428980569713) +zone = ('nyz037', 0.0018567203781510182) + +[13450] +centroid = (0.74528918818967971, -1.3056860144981288) +station = ('krme', 0.011947391364567359) +zone = ('nyz046', 0.0030907287349867755) + +[13452] +centroid = (0.75124304732030034, -1.3025474238108525) +station = ('krme', 0.010347895342790436) +zone = ('nyz082', 0.0033581030510314077) + +[13454] +centroid = (0.75432842291868352, -1.3047680062181648) +station = ('krme', 0.0081717355517003411) +zone = ('nyz038', 0.0033553793519731684) + +[13456] +centroid = (0.75049208450304472, -1.31345616796813) +station = ('krme', 0.0044687788050627279) +zone = ('nyz037', 0.0028473041989259644) + +[13459] +centroid = (0.74656467480703703, -1.301817945996689) +station = ('ksch', 0.0084920543336336387) +zone = ('nyz040', 0.0029276313610108709) + +[13460] +centroid = (0.74502934357064265, -1.316725989961864) +station = ('krme', 0.0095503591291674992) +zone = ('nyz045', 0.0040118091313482759) + +[13461] +centroid = (0.75172145952156455, -1.3194536603300506) +station = ('krme', 0.003809020297396052) +zone = ('nyz036', 0.0028938873154022967) + +[13464] +centroid = (0.7450456798524413, -1.3197444670900178) +station = ('ksyr', 0.0097110396903199413) +zone = ('nyz045', 0.0033928962202849347) + +[13468] +centroid = (0.74784311103083034, -1.3064125427058564) +station = ('krme', 0.0096978136324672171) +zone = ('nyz046', 0.0044014785125736384) + +[13469] +centroid = (0.75424103428303602, -1.3142742386951249) +station = ('krme', 0.0012830028573203116) +zone = ('nyz037', 0.0021228588738296224) + +[13470] +centroid = (0.75415067858766038, -1.3021910624841802) +station = ('ksch', 0.010674415726381106) +zone = ('nyz082', 0.002526800047208276) + +[13471] +centroid = (0.75673282340281589, -1.3190744177368849) +station = ('krme', 0.0031275959105009294) +zone = ('nyz009', 0.0014337323157649897) + +[13472] +centroid = (0.76266369654718791, -1.3101809005471301) +station = ('krme', 0.0091273723091277494) +zone = ('nyz032', 0.001266002902074374) + +[13473] +centroid = (0.76171301570362659, -1.3167876524443369) +station = ('krme', 0.0071731193421860264) +zone = ('nyz008', 0.0024743504153245575) + +[13475] +centroid = (0.74863700894768503, -1.3060391120590997) +station = ('krme', 0.0093732663940327022) +zone = ('nyz038', 0.0038119005446917839) + +[13476] +centroid = (0.75201879381293424, -1.3178896358807535) +station = ('krme', 0.0029020754519509485) +zone = ('nyz037', 0.0014264848043125207) + +[13477] +centroid = (0.75106568696171272, -1.317949570487267) +station = ('krme', 0.0037825720380148843) +zone = ('nyz037', 0.0020353216663368469) + +[13478] +centroid = (0.75300506191994376, -1.3191529575532246) +station = ('krme', 0.0027907169665571684) +zone = ('nyz037', 0.0022692572044221856) + +[13480] +centroid = (0.74905789509680354, -1.3153353290671674) +station = ('krme', 0.0055261094758779841) +zone = ('nyz037', 0.0035717502808085815) + +[13483] +centroid = (0.75742638234097337, -1.323414423268064) +station = ('ksyr', 0.0060100468464548973) +zone = ('nyz006', 0.0040267437968871962) + +[13484] +centroid = (0.74815850947995832, -1.3205019748919684) +station = ('krme', 0.0072082137716267345) +zone = ('nyz036', 0.00082392215249065502) + +[13485] +centroid = (0.7467832423892643, -1.3144986356770538) +station = ('krme', 0.0078556331938574031) +zone = ('nyz046', 0.004509523718285763) + +[13486] +centroid = (0.75651552991094251, -1.3150113261448271) +station = ('krme', 0.0020745584739869463) +zone = ('nyz009', 0.0017023015645589383) + +[13488] +centroid = (0.7450572862919671, -1.3046438958550557) +station = ('krme', 0.012616556472593002) +zone = ('nyz047', 0.0043313870935270298) + +[13489] +centroid = (0.75853360176514606, -1.3186392373411926) +station = ('krme', 0.0044161282031998476) +zone = ('nyz009', 0.001743009379840969) + +[13490] +centroid = (0.75241283679815707, -1.3164409602417209) +station = ('krme', 0.002177483589364225) +zone = ('nyz037', 0.0003050288709525933) + +[13491] +centroid = (0.74812028676933962, -1.3119314134270028) +station = ('krme', 0.0070899411619598967) +zone = ('nyz046', 0.0043793404551864283) + +[13492] +centroid = (0.7524917954935173, -1.3148905668138817) +station = ('krme', 0.0022188507697031273) +zone = ('nyz037', 0.00088561977965376823) + +[13493] +centroid = (0.75804611385177145, -1.3246614261120289) +station = ('ksyr', 0.0060887345178740962) +zone = ('nyz006', 0.0030910809237892161) + +[13494] +centroid = (0.7597859627699145, -1.3114628797893049) +station = ('krme', 0.0061675031516139648) +zone = ('nyz032', 0.0037993986642303611) + +[13495] +centroid = (0.75242697396509817, -1.3138401753101538) +station = ('krme', 0.0026454429369482898) +zone = ('nyz037', 0.0016550425967657735) + +[13501] +centroid = (0.75191023433346027, -1.3129384684054035) +station = ('krme', 0.0034582738176361289) +zone = ('nyz037', 0.0024031328376783877) + +[13502] +centroid = (0.75295710027209894, -1.3116970855216301) +station = ('krme', 0.0035108183733713158) +zone = ('nyz038', 0.0026852065106513501) + +[13601] +centroid = (0.76740193385379452, -1.3248183661183683) +station = ('kart', 0.0016128180971097168) +zone = ('nyz007', 0.0012576342851061011) + +[13602] +centroid = (0.76910609078873438, -1.3225810285502368) +station = ('kgtb', 0.00063364823921812437) +zone = ('nyz007', 0.0017137708670039201) + +[13603] +centroid = (0.76857273562261752, -1.322851589490881) +station = ('kgtb', 0.00079727519028192884) +zone = ('nyz007', 0.0014628027430643332) + +[13605] +centroid = (0.76458151668915675, -1.3273278703300559) +station = ('kart', 0.0030798541563679615) +zone = ('nyz007', 0.0044412378505397435) + +[13606] +centroid = (0.76572074545181101, -1.3267071614348764) +station = ('kart', 0.0019473424704394317) +zone = ('nyz007', 0.0032180946166966533) + +[13607] +centroid = (0.7731548881342184, -1.3253286131251889) +station = ('kgtb', 0.0050231481578518443) +zone = ('nyz007', 0.0045075280342365036) + +[13608] +centroid = (0.77238998013623927, -1.319736648014969) +station = ('kgtb', 0.0038659529698134368) +zone = ('nyz007', 0.0052495950439313153) + +[13612] +centroid = (0.76768720792003309, -1.3224249786618159) +station = ('kgtb', 0.0012174629772946615) +zone = ('nyz007', 0.0020170804139442605) + +[13613] +centroid = (0.78313993423817041, -1.3046413476743477) +station = ('kmss', 0.001647150111554649) +zone = ('nyz026', 0.0020830457711941788) + +[13614] +centroid = (0.77721068425000273, -1.3210600788268787) +station = ('cxke', 0.0082224884155613909) +zone = ('nyz087', 0.0047974158594441662) + +[13615] +centroid = (0.76845281404971288, -1.3262495710115885) +station = ('kart', 0.00097716515352984498) +zone = ('nyz007', 0.001003844463081028) + +[13616] +centroid = (0.76846983100991995, -1.3239644114219524) +station = ('kgtb', 0.001597066576576133) +zone = ('nyz007', 0.0006868110213178178) + +[13617] +centroid = (0.7780770482374002, -1.311488693208942) +station = ('kmss', 0.007147091861256105) +zone = ('nyz087', 0.0023119523629644635) + +[13618] +centroid = (0.76994791544684882, -1.331528808026436) +station = ('kart', 0.0039633648992187156) +zone = ('nyz007', 0.0049453637064314814) + +[13619] +centroid = (0.76757751397654528, -1.3194859663745051) +station = ('kgtb', 0.0020730644553146769) +zone = ('nyz008', 0.0038934748349252592) + +[13620] +centroid = (0.76635281644042086, -1.3168216863647506) +station = ('kgtb', 0.0043459719771160891) +zone = ('nyz008', 0.002165647695832479) + +[13621] +centroid = (0.78249552377174902, -1.3103979496929079) +station = ('kmss', 0.0033366821068407399) +zone = ('nyz026', 0.0020530023064965334) + +[13622] +centroid = (0.76967683090742911, -1.328357963654583) +station = ('kart', 0.0022361588470867669) +zone = ('nyz007', 0.0026963808808172889) + +[13623] +centroid = (0.77579511750688024, -1.3221298783918887) +station = ('kgtb', 0.0069816788411667004) +zone = ('nyz087', 0.0056816613994675165) + +[13624] +centroid = (0.77160098659458276, -1.3280743476511339) +station = ('kart', 0.0040173629154096968) +zone = ('nyz007', 0.0037289468445094198) + +[13625] +centroid = (0.777336505035779, -1.3077468818255913) +station = ('kmss', 0.0069662114276505234) +zone = ('nyz029', 0.0039015662960398935) + +[13626] +centroid = (0.76497931213227133, -1.3218211645537961) +station = ('kgtb', 0.003838266074547392) +zone = ('nyz007', 0.0042894369294938966) + +[13628] +centroid = (0.76847792933764902, -1.3209069610916013) +station = ('kgtb', 0.00072372843600700966) +zone = ('nyz007', 0.0028640574951926644) + +[13630] +centroid = (0.77664741414050653, -1.3144341981210701) +station = ('kgtb', 0.0094388010450411342) +zone = ('nyz087', 0.00033298140292310687) + +[13633] +centroid = (0.77662666217570042, -1.3169555182117938) +station = ('kgtb', 0.0085436769991695406) +zone = ('nyz087', 0.0018976746621474779) + +[13634] +centroid = (0.7681419185500552, -1.3277365042678251) +station = ('kart', 0.00070350749033550465) +zone = ('nyz007', 0.0021158715504787872) + +[13635] +centroid = (0.77294918362857834, -1.3138976315491295) +station = ('kgtb', 0.0070119828858061272) +zone = ('nyz087', 0.0040366329077832991) + +[13636] +centroid = (0.76346696688212567, -1.3284843603990122) +station = ('kart', 0.0043159694294502993) +zone = ('nyz006', 0.0055490455991934248) + +[13637] +centroid = (0.7697984454497081, -1.3232793522372521) +station = ('kgtb', 0.0014483499417501863) +zone = ('nyz007', 0.0016205835811085125) + +[13638] +centroid = (0.76827774007244543, -1.3219419936979115) +station = ('kgtb', 0.00054990201692394814) +zone = ('nyz007', 0.0021485060235617022) + +[13639] +centroid = (0.77254688523599346, -1.3116241656654819) +station = ('kgtb', 0.0081953213819650813) +zone = ('nyz087', 0.0048331335547499073) + +[13640] +centroid = (0.77324300980815153, -1.3269407213953786) +station = ('kart', 0.0055894110152685823) +zone = ('nyz007', 0.0048160372664116215) + +[13641] +centroid = (0.77272359982275796, -1.3265087174989247) +station = ('kart', 0.0050835123245360448) +zone = ('nyz007', 0.0042289224081846419) + +[13642] +centroid = (0.7737984957491838, -1.3169535285364464) +station = ('kgtb', 0.0060716626168728213) +zone = ('nyz087', 0.0036831577595657383) + +[13643] +centroid = (0.76850009501914951, -1.3215125903420435) +station = ('kgtb', 0.00037719909527634762) +zone = ('nyz007', 0.002428116111813902) + +[13646] +centroid = (0.77573050541797139, -1.3207638266396453) +station = ('kgtb', 0.0069523979714761113) +zone = ('nyz087', 0.004749201518066991) + +[13647] +centroid = (0.7785193844830256, -1.30865799605501) +station = ('kmss', 0.0059398403185697652) +zone = ('nyz026', 0.0042801928602958558) + +[13648] +centroid = (0.77056665211997333, -1.3145470860170891) +station = ('kgtb', 0.0054916318316232445) +zone = ('nyz087', 0.0064085291100310039) + +[13650] +centroid = (0.76465160911191687, -1.3302217309496176) +station = ('kart', 0.0037811581191153202) +zone = ('nyz007', 0.0055535838699128596) + +[13651] +centroid = (0.76560885239346566, -1.3295388010666047) +station = ('kart', 0.0027280874979125811) +zone = ('nyz007', 0.0045316675878035876) + +[13652] +centroid = (0.77549622987247624, -1.3122567427995746) +station = ('kgtb', 0.0095555121126415076) +zone = ('nyz087', 0.0020953903543217784) + +[13654] +centroid = (0.77801737543027449, -1.3166213749264992) +station = ('cxke', 0.0077588756793762577) +zone = ('nyz087', 0.0019325202804998626) + +[13655] +centroid = (0.78508498151647044, -1.3028897526903389) +station = ('kmss', 0.0026113880075322267) +zone = ('nyz027', 0.0031062871790087428) + +[13656] +centroid = (0.77130000456507619, -1.3256733156524576) +station = ('kgtb', 0.0037295992022258438) +zone = ('nyz007', 0.0027015592287309032) + +[13658] +centroid = (0.780914115843102, -1.3138733714725268) +station = ('cxke', 0.0062379825375522011) +zone = ('nyz087', 0.0039545877411700549) + +[13659] +centroid = (0.76337219550374247, -1.3240657626916159) +station = ('kart', 0.0047862191440163574) +zone = ('nyz007', 0.0053192157006511243) + +[13660] +centroid = (0.78145141545332852, -1.311806186053172) +station = ('kmss', 0.0047485632124646803) +zone = ('nyz026', 0.0032955534353427745) + +[13661] +centroid = (0.7628767837955639, -1.3281675656864826) +station = ('kart', 0.004846888070951693) +zone = ('nyz006', 0.0049796102406841668) + +[13662] +centroid = (0.78421716890579374, -1.3069730202885497) +station = ('kmss', 0.00042092824558430305) +zone = ('nyz026', 0.0015440853736524241) + +[13664] +centroid = (0.77813782060195458, -1.3202623411856698) +station = ('cxke', 0.0072628675272820489) +zone = ('nyz087', 0.0043785252745848994) + +[13665] +centroid = (0.76879065743302144, -1.3165780558544649) +station = ('kgtb', 0.0037504678477277278) +zone = ('nyz008', 0.0046070558623782457) + +[13666] +centroid = (0.77175815349372479, -1.3077067217995029) +station = ('kgtb', 0.010530876705071281) +zone = ('nyz029', 0.0019901254056550483) + +[13667] +centroid = (0.78255793674580032, -1.308300500264324) +station = ('kmss', 0.0021598175558854792) +zone = ('nyz026', 0.00057712159803350986) + +[13668] +centroid = (0.78112130387860623, -1.3087580732343191) +station = ('kmss', 0.003540930808950665) +zone = ('nyz026', 0.0018262854578467336) + +[13669] +centroid = (0.77968704465919492, -1.3174153950164016) +station = ('cxke', 0.0059963801420271851) +zone = ('nyz087', 0.0034873061082057949) + +[13670] +centroid = (0.77086618552620056, -1.3110343490980629) +station = ('kgtb', 0.0079940434352974796) +zone = ('nyz029', 0.0042224483684631317) + +[13672] +centroid = (0.77615739549971663, -1.3030751415634856) +station = ('kslk', 0.005872011444624895) +zone = ('nyz029', 0.0035694202111998764) + +[13673] +centroid = (0.77081194069304859, -1.3215245982072972) +station = ('kgtb', 0.0020039048875135348) +zone = ('nyz007', 0.0032329852200000688) + +[13674] +centroid = (0.76338189953438351, -1.3272911311493014) +station = ('kart', 0.0042761666280668499) +zone = ('nyz007', 0.005554888526810511) + +[13675] +centroid = (0.77286177753963836, -1.3237674161092801) +station = ('kgtb', 0.0042843501336271243) +zone = ('nyz007', 0.0042785700653814717) + +[13676] +centroid = (0.7793760793463671, -1.3077092699802106) +station = ('kmss', 0.00494939987118045) +zone = ('nyz026', 0.0033491815372143369) + +[13677] +centroid = (0.77688844411020697, -1.3121328244226829) +station = ('kmss', 0.0084071119020212009) +zone = ('nyz087', 0.0015757288146706402) + +[13678] +centroid = (0.78214776691828924, -1.308873334778121) +station = ('kmss', 0.0027348917126480709) +zone = ('nyz026', 0.0011185058768185784) + +[13679] +centroid = (0.77352802207500215, -1.3224465334780782) +station = ('kgtb', 0.0047335277415881429) +zone = ('nyz007', 0.0051733042290794846) + +[13680] +centroid = (0.77834682377988096, -1.3146412988901117) +station = ('cxke', 0.0080087354221905025) +zone = ('nyz087', 0.0013901114097228642) + +[13681] +centroid = (0.77541568292749663, -1.3155093383935912) +station = ('kgtb', 0.0079888218537295299) +zone = ('nyz087', 0.0017673851926459515) + +[13682] +centroid = (0.76521013192584764, -1.3247378889865586) +station = ('kart', 0.002950201000473478) +zone = ('nyz007', 0.0034501595010443097) + +[13684] +centroid = (0.77416864517694672, -1.3092262927127518) +station = ('kmss', 0.010267787118577553) +zone = ('nyz029', 0.0020651515717776368) + +[13685] +centroid = (0.76664402462611603, -1.3279428196387035) +station = ('kart', 0.0012041344679387996) +zone = ('nyz007', 0.0029843849911219611) + +[13687] +centroid = (0.77550151822010971, -1.3061460483823697) +station = ('kslk', 0.0079576051623143108) +zone = ('nyz029', 0.001973427622266744) + +[13690] +centroid = (0.76983619692142868, -1.3088434023814493) +station = ('kgtb', 0.0093604504617046582) +zone = ('nyz029', 0.0040762382059542236) + +[13691] +centroid = (0.77191060800388656, -1.3225036057446184) +station = ('kgtb', 0.0031344794565338228) +zone = ('nyz007', 0.0036730036327969778) + +[13692] +centroid = (0.77298525958421693, -1.3269091134826247) +station = ('kart', 0.0053320064420858378) +zone = ('nyz007', 0.0045641609206129776) + +[13693] +centroid = (0.76769610909921826, -1.330745574071311) +station = ('kart', 0.0026723432008417458) +zone = ('nyz007', 0.0043247734298717672) + +[13694] +centroid = (0.78291283199590089, -1.3115454338629242) +station = ('kmss', 0.0038912823030290969) +zone = ('nyz026', 0.0028598051866021322) + +[13695] +centroid = (0.76974132082329028, -1.3076400851286618) +station = ('kgtb', 0.010211623084360855) +zone = ('nyz029', 0.0038914898595397113) + +[13696] +centroid = (0.7800703015096403, -1.3070429032717994) +station = ('kmss', 0.0041908614460678941) +zone = ('nyz026', 0.0026738467837185164) + +[13697] +centroid = (0.78111711508840154, -1.3056868697094621) +station = ('kmss', 0.0031558779014945917) +zone = ('nyz026', 0.0020664191236945454) + +[13730] +centroid = (0.73693452395318559, -1.3182946569869713) +station = ('kbgm', 0.0058392197984786041) +zone = ('nyz056', 0.0038694063322064799) + +[13731] +centroid = (0.73527962020973703, -1.3052858454072316) +station = ('kmsv', 0.0074791211745416242) +zone = ('nyz057', 0.0026179472992157999) + +[13732] +centroid = (0.73390129879285204, -1.3293742688780192) +station = ('kbgm', 0.0035482657270690201) +zone = ('nyz055', 0.0027707864127399814) + +[13733] +centroid = (0.73830488666868144, -1.3173654611465022) +station = ('kbgm', 0.0067472069605358752) +zone = ('nyz045', 0.0037559017126617745) + +[13734] +centroid = (0.7342592309158511, -1.3336000251563629) +station = ('kelm', 0.0065686855248633042) +zone = ('nyz055', 0.0022039600666482846) + +[13736] +centroid = (0.73869461869065167, -1.3299764598298347) +station = ('kbgm', 0.003559568179323395) +zone = ('nyz055', 0.0030030958379627689) + +[13739] +centroid = (0.73913164913535112, -1.3053168948146245) +station = ('kmsv', 0.011330224503668249) +zone = ('nyz057', 0.0034906195607867126) + +[13740] +centroid = (0.7378172416756742, -1.3047556667403533) +station = ('kmsv', 0.010030472150956267) +zone = ('nyz057', 0.0030118032913487021) + +[13743] +centroid = (0.73673653380283932, -1.3323533190183707) +station = ('kbgm', 0.0045927842835405469) +zone = ('nyz055', 0.00083510759167460945) + +[13744] +centroid = (0.73728805784646945, -1.3248445111505631) +station = ('kbgm', 0.0012346423320128389) +zone = ('nyz056', 0.0018492340730455127) + +[13746] +centroid = (0.73773192998183668, -1.3244372909294877) +station = ('kbgm', 0.0017529460329797776) +zone = ('nyz056', 0.0020756724557925445) + +[13748] +centroid = (0.73378142957982517, -1.3233526386125434) +station = ('kbgm', 0.0034471365186022084) +zone = ('nyz056', 0.0020532221760579056) + +[13750] +centroid = (0.74125903096060697, -1.3065171926478063) +station = ('kmsv', 0.013477629474409128) +zone = ('nyz046', 0.0036216102936746223) + +[13751] +centroid = (0.74096544912712892, -1.3073014738004822) +station = ('kmsv', 0.013230417077520594) +zone = ('nyz046', 0.003551045913119564) + +[13752] +centroid = (0.7363641329003412, -1.3071995116655808) +station = ('kmsv', 0.0086539623404480633) +zone = ('nyz057', 0.00090833321855378639) + +[13753] +centroid = (0.73839574850954015, -1.307721365111927) +station = ('kmsv', 0.01072056657633755) +zone = ('nyz057', 0.0019658983332594719) + +[13754] +centroid = (0.734582588066368, -1.3168153508195661) +station = ('kbgm', 0.0071963696884060711) +zone = ('paz040', 0.0058064211679848014) + +[13755] +centroid = (0.73400247552959019, -1.3084193397330921) +station = ('kmsv', 0.0065686098992705777) +zone = ('nyz057', 0.0024950584203734917) + +[13756] +centroid = (0.73310982688365756, -1.3107539619537298) +station = ('kmsv', 0.0065915677933968599) +zone = ('nyz057', 0.0038072662696928068) + +[13757] +centroid = (0.74020472991935471, -1.3070985269150603) +station = ('kmsv', 0.012458649482269673) +zone = ('nyz057', 0.0038324086255361266) + +[13760] +centroid = (0.73536632816697611, -1.3279287522849323) +station = ('kbgm', 0.0017526115956156992) +zone = ('nyz055', 0.0029386762223546558) + +[13774] +centroid = (0.73234240561155584, -1.3116043910850566) +station = ('kmsv', 0.0064233251632133575) +zone = ('paz040', 0.0036759079693872141) + +[13775] +centroid = (0.73876139498783311, -1.3113359768993924) +station = ('kmsv', 0.011783963797266553) +zone = ('nyz057', 0.0031315931365027689) + +[13776] +centroid = (0.74124745942766623, -1.3147922873237017) +station = ('kbgm', 0.0096368797379734125) +zone = ('nyz046', 0.0047917689303289927) + +[13777] +centroid = (0.73754413255432216, -1.3262684903806803) +station = ('kbgm', 0.0010184001597467809) +zone = ('nyz056', 0.0027843530639555629) + +[13778] +centroid = (0.73930784012333994, -1.322252644851474) +station = ('kbgm', 0.0040096067452306252) +zone = ('nyz045', 0.0030226028380164497) + +[13780] +centroid = (0.74041204012790673, -1.3173148815047795) +station = ('kbgm', 0.0076063051648721713) +zone = ('nyz045', 0.0021350979951209842) + +[13782] +centroid = (0.73599890530106893, -1.3088449906310684) +station = ('kmsv', 0.0085646331666167988) +zone = ('nyz057', 0.00059282771029372649) + +[13783] +centroid = (0.73292766686962707, -1.3136396195258073) +station = ('kmsv', 0.0079358558713440493) +zone = ('paz040', 0.0037888644297594549) + +[13784] +centroid = (0.74048871244194681, -1.3303133956419324) +station = ('kith', 0.0032493214431025198) +zone = ('nyz025', 0.0032798903082826058) + +[13786] +centroid = (0.74073483877306301, -1.3036552017403857) +station = ('kalb', 0.012688775580000403) +zone = ('nyz047', 0.0041351181633209454) + +[13787] +centroid = (0.73674768645675948, -1.3207252723164686) +station = ('kbgm', 0.0040311224681939626) +zone = ('nyz056', 0.0021162668264609044) + +[13788] +centroid = (0.73895551050723984, -1.3031638915559494) +station = ('kmsv', 0.011288150239376104) +zone = ('nyz057', 0.0045962406246780035) + +[13790] +centroid = (0.73592437974200875, -1.3264841258097642) +station = ('kbgm', 0.00065070624709385463) +zone = ('nyz056', 0.0023606939830102844) + +[13794] +centroid = (0.73990154877499081, -1.3266896732357714) +station = ('kbgm', 0.0033953402734411011) +zone = ('nyz044', 0.0035956790688231413) + +[13795] +centroid = (0.73402680541936294, -1.3225919717646466) +station = ('kbgm', 0.0036415001357765781) +zone = ('nyz056', 0.0018826179497273756) + +[13796] +centroid = (0.74276305099022055, -1.3113030250831148) +station = ('krme', 0.012287933915090463) +zone = ('nyz046', 0.0018501839858416395) + +[13797] +centroid = (0.7388618386862853, -1.3271553619867886) +station = ('kbgm', 0.002446563647310821) +zone = ('nyz056', 0.004159802785274053) + +[13801] +centroid = (0.74185368209005398, -1.3225576236849677) +station = ('kbgm', 0.0059529423350915441) +zone = ('nyz045', 0.0021386907358993856) + +[13802] +centroid = (0.73726432136864239, -1.3271704590848183) +station = ('kbgm', 0.0010495069708293255) +zone = ('nyz055', 0.0036485839339478296) + +[13803] +centroid = (0.74101239848400757, -1.3276217663227992) +station = ('kbgm', 0.0046119704595089135) +zone = ('nyz044', 0.0024109210744779033) + +[13804] +centroid = (0.73697752886595458, -1.3157028430477598) +station = ('kbgm', 0.0077576122880023309) +zone = ('nyz045', 0.005518507375595812) + +[13806] +centroid = (0.73959260804409532, -1.308248437092737) +station = ('kmsv', 0.011964907903714534) +zone = ('nyz057', 0.0030974513187512131) + +[13807] +centroid = (0.74364048036507568, -1.3087916010092502) +station = ('krme', 0.012125159670748349) +zone = ('nyz046', 0.00073210535183712534) + +[13808] +centroid = (0.74220533102774577, -1.3135732272010614) +station = ('krme', 0.012483703892119528) +zone = ('nyz046', 0.003506752199814256) + +[13809] +centroid = (0.74008615224997432, -1.3159004492256707) +station = ('kbgm', 0.0083800039179732517) +zone = ('nyz045', 0.0031923102987713712) + +[13810] +centroid = (0.74362924044469281, -1.3108882301330858) +station = ('krme', 0.011552602064695867) +zone = ('nyz046', 0.0010810095481165376) + +[13811] +centroid = (0.7371385180361586, -1.3293135139667571) +station = ('kbgm', 0.0024142021185752992) +zone = ('nyz055', 0.0021574274341720737) + +[13812] +centroid = (0.73356293181076793, -1.3326418219437255) +station = ('kbgm', 0.0056498454231439172) +zone = ('nyz055', 0.0025267923006717335) + +[13813] +centroid = (0.73589549454288816, -1.3186195849338151) +station = ('kbgm', 0.005622879991956038) +zone = ('nyz056', 0.0034711265691200061) + +[13815] +centroid = (0.7426003513973497, -1.3182621065964217) +station = ('kbgm', 0.0084201650177874628) +zone = ('nyz045', 0.0014047108544883299) + +[13820] +centroid = (0.74147574849382714, -1.3096410527561957) +station = ('krme', 0.013888172300395634) +zone = ('nyz046', 0.0026250176322125023) + +[13825] +centroid = (0.74064053863357782, -1.3125670623405792) +station = ('kbgm', 0.010858877088089488) +zone = ('nyz046', 0.0041060472994588057) + +[13826] +centroid = (0.73478047349695919, -1.3201460324443168) +station = ('kbgm', 0.004788821627671986) +zone = ('nyz056', 0.0025666138836283026) + +[13827] +centroid = (0.73509475493536569, -1.3307989985997146) +station = ('kbgm', 0.0037263587232847901) +zone = ('nyz055', 0.0011770305830060338) + +[13830] +centroid = (0.74064066080662538, -1.3199510617135766) +station = ('kbgm', 0.0061627217578077969) +zone = ('nyz045', 0.001033635059319703) + +[13832] +centroid = (0.74452482124376873, -1.3207293214803335) +station = ('kbgm', 0.0089441354282436478) +zone = ('nyz045', 0.002975728333485242) + +[13833] +centroid = (0.73649761568153382, -1.3224120981319361) +station = ('kbgm', 0.0027761919181061266) +zone = ('nyz056', 0.00093516657879219546) + +[13834] +centroid = (0.7423056525531504, -1.3084016944543546) +station = ('krme', 0.013456894836795616) +zone = ('nyz046', 0.001988760388471135) + +[13835] +centroid = (0.73972663187735599, -1.3295743010635901) +station = ('kbgm', 0.0040751190604725032) +zone = ('nyz044', 0.0039526841992390356) + +[13838] +centroid = (0.73801420208176172, -1.3157710330616352) +station = ('kbgm', 0.0078326156619482716) +zone = ('nyz045', 0.0046404300740645688) + +[13839] +centroid = (0.73761172915625184, -1.3133960588286913) +station = ('kmsv', 0.011429002422817221) +zone = ('nyz057', 0.0038548001677066392) + +[13841] +centroid = (0.74014160136031015, -1.3236954212776353) +station = ('kbgm', 0.0040462360566018794) +zone = ('nyz045', 0.0033329857125711489) + +[13842] +centroid = (0.73961294112988107, -1.3041730060228673) +station = ('kmsv', 0.011852079267222582) +zone = ('nyz057', 0.0044205103688944826) + +[13843] +centroid = (0.74188206114369148, -1.3156537992957789) +station = ('kbgm', 0.0094302281924412475) +zone = ('nyz045', 0.0029696004054089375) + +[13844] +centroid = (0.74365301182910504, -1.3206612710927981) +station = ('kbgm', 0.0081996452273139734) +zone = ('nyz045', 0.0021290335167568541) + +[13845] +centroid = (0.73397083271025154, -1.3326448239100388) +station = ('kbgm', 0.0054479683689822788) +zone = ('nyz055', 0.0021346942562705438) + +[13846] +centroid = (0.73938644975284973, -1.309952436948044) +station = ('kmsv', 0.012045685463637937) +zone = ('nyz057', 0.003105535439980663) + +[13847] +centroid = (0.73619026320025749, -1.3140957089659382) +station = ('kmsv', 0.010544125445603701) +zone = ('nyz057', 0.0042222287421279439) + +[13849] +centroid = (0.73914861373568053, -1.3143955390781383) +station = ('kbgm', 0.0090899588141044943) +zone = ('nyz057', 0.0051602949891153341) + +[13850] +centroid = (0.73390039122164097, -1.3267573047442864) +station = ('kbgm', 0.002665705055880672) +zone = ('nyz056', 0.0032114080531804039) + +[13856] +centroid = (0.7360235144435221, -1.3121964067673331) +station = ('kmsv', 0.00961020779263916) +zone = ('nyz057', 0.0028437829676884246) + +[13859] +centroid = (0.7395393755019094, -1.3132774287994333) +station = ('kbgm', 0.0099940861804509711) +zone = ('nyz057', 0.0047124885724807598) + +[13860] +centroid = (0.74085666275485229, -1.3079844036834951) +station = ('kmsv', 0.013183318649092888) +zone = ('nyz046', 0.0034464802821065573) + +[13861] +centroid = (0.74191398321571045, -1.3116339918691706) +station = ('krme', 0.013044528731056266) +zone = ('nyz046', 0.0026643984899417565) + +[13862] +centroid = (0.73881459262343385, -1.3252460939581547) +station = ('kbgm', 0.0023834731187072763) +zone = ('nyz056', 0.0033096848932066924) + +[13863] +centroid = (0.74098817331398992, -1.3246859654413121) +station = ('kbgm', 0.0045903417852653783) +zone = ('nyz044', 0.0032836559655300768) + +[13864] +centroid = (0.73777978690992629, -1.3332329649613759) +station = ('kith', 0.0039293200540223864) +zone = ('nyz055', 0.002064519329581471) + +[13865] +centroid = (0.73359785584910031, -1.3197414825769971) +station = ('kbgm', 0.0055906522198833656) +zone = ('nyz056', 0.0034612707004309344) + +[13901] +centroid = (0.73623539741471411, -1.3242871577072313) +station = ('kbgm', 0.0014178289141341667) +zone = ('nyz056', 0.00083327429909099118) + +[13902] +centroid = (0.73458855709240989, -1.3259071374123474) +station = ('kbgm', 0.0019493772017547041) +zone = ('nyz056', 0.0022991880716455291) + +[13903] +centroid = (0.73376933444810877, -1.3245141901363306) +station = ('kbgm', 0.0030173629962733386) +zone = ('nyz056', 0.0022524374802635099) + +[13904] +centroid = (0.73537917379027085, -1.3233122342403598) +station = ('kbgm', 0.0024031493459215642) +zone = ('nyz056', 0.0004551970610165924) + +[13905] +centroid = (0.73601295520154753, -1.3254629685710073) +station = ('kbgm', 0.00072972527852116097) +zone = ('nyz056', 0.0016119182478782244) + +[14001] +centroid = (0.75113024669074402, -1.3702729357591452) +station = ('kbuf', 0.0033640014199694647) +zone = ('nyz010', 0.0028909336810078123) + +[14004] +centroid = (0.74859564464441275, -1.3701478131050697) +station = ('kbuf', 0.0030254864941306301) +zone = ('nyz010', 0.0025417822113612005) + +[14005] +centroid = (0.74910554258538298, -1.3657212741495768) +station = ('kroc', 0.008000711103009709) +zone = ('nyz011', 0.0015779491641396599) + +[14006] +centroid = (0.74408848893077018, -1.3791896309213665) +station = ('kdkk', 0.0040872204790358274) +zone = ('nyz085', 0.0033541144136419558) + +[14008] +centroid = (0.75594967671415347, -1.3722331150420599) +station = ('kiag', 0.0052224912911423916) +zone = ('nyz001', 0.0024691088886606249) + +[14009] +centroid = (0.74339274833104751, -1.3682948493981049) +station = ('kole', 0.0062945952253823829) +zone = ('nyz012', 0.0029248582974260606) + +[14011] +centroid = (0.74753628214832979, -1.3665877254034366) +station = ('kbuf', 0.0058278851623073452) +zone = ('nyz012', 0.0024389907577609367) + +[14012] +centroid = (0.75628909089378882, -1.3706528241241343) +station = ('kiag', 0.0063338875549565268) +zone = ('nyz001', 0.0035139793356778306) + +[14013] +centroid = (0.75199762296910755, -1.3682987938422144) +station = ('kbuf', 0.005046799033983077) +zone = ('nyz011', 0.0029994311323244816) + +[14020] +centroid = (0.75042508131306074, -1.3650815586188432) +station = ('kroc', 0.0070794512343554782) +zone = ('nyz011', 0.00026646646259606007) + +[14024] +centroid = (0.74318498433689029, -1.3656410413638624) +station = ('kole', 0.0062718522582458983) +zone = ('nyz012', 0.0021278463477138096) + +[14025] +centroid = (0.74389695649865617, -1.3740442432068545) +station = ('kbuf', 0.0054316873161139667) +zone = ('nyz085', 0.00043715865445397776) + +[14026] +centroid = (0.74948475027196371, -1.3733644549164954) +station = ('kbuf', 0.00060023214803221129) +zone = ('nyz010', 0.00010046521793158391) + +[14028] +centroid = (0.75604242351060458, -1.3738815959738613) +station = ('kiag', 0.0044587867122853992) +zone = ('nyz001', 0.0020653478401844974) + +[14030] +centroid = (0.74288867978977913, -1.3702165267177209) +station = ('kole', 0.0060568464276508967) +zone = ('nyz085', 0.0034190043666805416) + +[14031] +centroid = (0.75019710640616522, -1.3720777109254625) +station = ('kbuf', 0.001751715099887951) +zone = ('nyz010', 0.0012758215928249036) + +[14032] +centroid = (0.7513071532637261, -1.3723658822382594) +station = ('kbuf', 0.0023730430975683696) +zone = ('nyz010', 0.0020618767395968805) + +[14033] +centroid = (0.7444594063034039, -1.3734366591876503) +station = ('kbuf', 0.0048971422284768027) +zone = ('nyz085', 0.0010226650100822062) + +[14034] +centroid = (0.74169058107145502, -1.3765620551857816) +station = ('kdkk', 0.0053040455864744864) +zone = ('nyz085', 0.0026608483552350353) + +[14035] +centroid = (0.74160397783397114, -1.3761639979432791) +station = ('kdkk', 0.0055995478764251589) +zone = ('nyz085', 0.0025944794082460041) + +[14036] +centroid = (0.75003519221145776, -1.3681553452309929) +station = ('kbuf', 0.0044484052759593195) +zone = ('nyz011', 0.0025459108121162711) + +[14037] +centroid = (0.74704959708641117, -1.3692688827470578) +station = ('kbuf', 0.004245057120974071) +zone = ('nyz010', 0.003856415333247896) + +[14039] +centroid = (0.74789941535249982, -1.3643779116776091) +station = ('kroc', 0.0077797291448925571) +zone = ('nyz011', 0.0026227392059123538) + +[14040] +centroid = (0.74858695290473787, -1.3679302675706559) +station = ('kbuf', 0.0046194723016645149) +zone = ('nyz011', 0.0030269296607958007) + +[14041] +centroid = (0.73999926975981001, -1.3783141039553961) +station = ('kdkk', 0.0043859464039991995) +zone = ('nyz085', 0.0047847559410864474) + +[14042] +centroid = (0.74133844344157274, -1.3698881081123728) +station = ('kole', 0.004511689062697547) +zone = ('nyz085', 0.0043595145012983389) + +[14043] +centroid = (0.74878063209183165, -1.3736336545003229) +station = ('kbuf', 0.00066776655418035577) +zone = ('nyz010', 0.00063616866478169085) + +[14047] +centroid = (0.74503499843741916, -1.3785766363814809) +station = ('kdkk', 0.005022653263798864) +zone = ('nyz085', 0.0030980606113137667) + +[14048] +centroid = (0.74149194514928563, -1.3843428900708048) +station = ('kdkk', 0.00051215626240228289) +zone = ('nyz019', 0.0045159792604607145) + +[14051] +centroid = (0.75123931231570107, -1.3735638762368283) +station = ('kbuf', 0.0019597343876038807) +zone = ('nyz010', 0.0018408059386284554) + +[14052] +centroid = (0.7465216000810978, -1.3715564683443542) +station = ('kbuf', 0.0033922710024415076) +zone = ('nyz010', 0.0031930357489196367) + +[14054] +centroid = (0.74908810674615556, -1.3635699289536909) +station = ('kroc', 0.0066223515631464282) +zone = ('nyz011', 0.0016573986638616083) + +[14055] +centroid = (0.7428623776779516, -1.3718309911824005) +station = ('kole', 0.0064912019053883635) +zone = ('nyz085', 0.0023293968626421704) + +[14057] +centroid = (0.74432313099540826, -1.376624642692758) +station = ('kbuf', 0.005322701392262809) +zone = ('nyz085', 0.0015125000325199789) + +[14058] +centroid = (0.75227266940592941, -1.3643039271706172) +station = ('kroc', 0.006191689315266956) +zone = ('nyz011', 0.0017916475848550229) + +[14059] +centroid = (0.74758651272420218, -1.372423006864677) +station = ('kbuf', 0.002155260978336898) +zone = ('nyz010', 0.0019612307598328733) + +[14060] +centroid = (0.7408949727319335, -1.3665311418290873) +station = ('kole', 0.0038911029755118462) +zone = ('nyz012', 0.004496909315843586) + +[14061] +centroid = (0.74340341229277729, -1.380194190078937) +station = ('kdkk', 0.003093103594124999) +zone = ('nyz085', 0.0041264982633296907) + +[14062] +centroid = (0.74068987909153161, -1.3813077974081718) +station = ('kdkk', 0.0021011613241816883) +zone = ('nyz019', 0.0046647246619700138) + +[14063] +centroid = (0.74016640248898102, -1.3845889640420437) +station = ('kdkk', 0.0017128097369449411) +zone = ('nyz019', 0.0031780874037500091) + +[14065] +centroid = (0.74150147464700145, -1.366816398442033) +station = ('kole', 0.0044453508165074561) +zone = ('nyz012', 0.0039602880877199808) + +[14066] +centroid = (0.74401734931045871, -1.3645950306365573) +station = ('kole', 0.0072901237337188824) +zone = ('nyz012', 0.0013727053940110121) + +[14067] +centroid = (0.75421269013598369, -1.3712773203837905) +station = ('kbuf', 0.0053180312014532031) +zone = ('nyz001', 0.0022248115575706075) + +[14068] +centroid = (0.75096855938883922, -1.374562309288724) +station = ('kbuf', 0.0016672593917901838) +zone = ('nyz010', 0.0017698765935918786) + +[14069] +centroid = (0.74377595282161546, -1.3725779921022541) +station = ('kbuf', 0.0056715970722161111) +zone = ('nyz085', 0.001522888539628035) + +[14070] +centroid = (0.74036269966995272, -1.377374139433442) +station = ('kdkk', 0.0049120336048634732) +zone = ('nyz085', 0.0041087039035231981) + +[14072] +centroid = (0.75080400974696127, -1.378158350772948) +station = ('kiag', 0.0017638690504846401) +zone = ('nyz010', 0.0037265312440445861) + +[14075] +centroid = (0.74548688163405297, -1.3759009070118335) +station = ('kbuf', 0.0040487628081346738) +zone = ('nyz085', 0.0018040631205847595) + +[14080] +centroid = (0.7443538138836584, -1.3709267710035273) +station = ('kbuf', 0.0055098108495797368) +zone = ('nyz085', 0.0027592243137673903) + +[14081] +centroid = (0.74286806745131317, -1.379994000813733) +station = ('kdkk', 0.0029831110715164044) +zone = ('nyz085', 0.0040883159484617826) + +[14082] +centroid = (0.7445148030538622, -1.3680741176076052) +station = ('kbuf', 0.0065637447636175588) +zone = ('nyz012', 0.0022009209019182401) + +[14085] +centroid = (0.74563340202475792, -1.3773902837290231) +station = ('kbuf', 0.0043905726205867969) +zone = ('nyz085', 0.0026393041906706423) + +[14086] +centroid = (0.74890442829567572, -1.3723394055935065) +station = ('kbuf', 0.0013960188296061357) +zone = ('nyz010', 0.00094632731350720203) + +[14091] +centroid = (0.742432223830505, -1.3769427464022266) +station = ('kdkk', 0.0050652797213407933) +zone = ('nyz085', 0.0022724794117340019) + +[14092] +centroid = (0.75351483768786631, -1.378689227571527) +station = ('kiag', 0.0012461972323571731) +zone = ('nyz001', 0.0032256120689327112) + +[14094] +centroid = (0.7532438404149091, -1.3736103019949313) +station = ('kbuf', 0.0039360626724591593) +zone = ('nyz001', 0.00091579669136439312) + +[14098] +centroid = (0.75632748813733275, -1.3679998189413478) +station = ('kbuf', 0.0083171063897322858) +zone = ('nyz002', 0.0023790050780811514) + +[14101] +centroid = (0.73989133859886669, -1.370750230949688) +station = ('kole', 0.0035543211974992835) +zone = ('nyz020', 0.003101232710933266) + +[14102] +centroid = (0.74764714546241651, -1.3710909541262626) +station = ('kbuf', 0.0028051221067612385) +zone = ('nyz010', 0.0024569767853324827) + +[14103] +centroid = (0.75417703305936545, -1.367932693578316) +station = ('kbuf', 0.006646719894532486) +zone = ('nyz002', 0.0019848544154062518) + +[14105] +centroid = (0.75396762845571119, -1.3698024997125626) +station = ('kbuf', 0.0056250362367191312) +zone = ('nyz002', 0.0033444042562803811) + +[14108] +centroid = (0.75508778076964111, -1.3740444875529498) +station = ('kiag', 0.0036675011152463208) +zone = ('nyz001', 0.0011041946566726095) + +[14109] +centroid = (0.75289926006068786, -1.3794063135480017) +station = ('kiag', 0.0013369750345168948) +zone = ('nyz001', 0.0038727612464798944) + +[14111] +centroid = (0.7431657508085332, -1.3771468626582473) +station = ('kbuf', 0.0065418952637892854) +zone = ('nyz085', 0.0020048027277876903) + +[14112] +centroid = (0.74522003824471561, -1.3777620912195754) +station = ('kbuf', 0.004886015403505463) +zone = ('nyz085', 0.0026309913964770817) + +[14113] +centroid = (0.74475949821499188, -1.367289731735174) +station = ('kbuf', 0.0068007184885603084) +zone = ('nyz012', 0.0015750033350910696) + +[14120] +centroid = (0.75187592116036606, -1.3760639033106772) +station = ('kiag', 0.0013268097547814203) +zone = ('nyz001', 0.002478851126432501) + +[14125] +centroid = (0.7519736945050628, -1.3661496477611861) +station = ('kroc', 0.0075552934972188089) +zone = ('nyz011', 0.0017924797658992967) + +[14126] +centroid = (0.75635382515574523, -1.3740739138041385) +station = ('kiag', 0.0046276596866608776) +zone = ('nyz001', 0.0023589787633885094) + +[14127] +centroid = (0.7461771768065093, -1.3742669646727017) +station = ('kbuf', 0.0031519009340567786) +zone = ('nyz085', 0.0022521505402612321) + +[14129] +centroid = (0.74143649603894968, -1.3791135171126871) +station = ('kdkk', 0.003438449249749548) +zone = ('nyz085', 0.0041421100561014872) + +[14130] +centroid = (0.74274198486614906, -1.3639338301027315) +station = ('kole', 0.0062992395860453024) +zone = ('nyz012', 0.0027377836999854994) + +[14131] +centroid = (0.7546559863126977, -1.37706169059075) +station = ('kiag', 0.0021705070857313876) +zone = ('nyz001', 0.0021052912914938833) + +[14132] +centroid = (0.75309787852956478, -1.3766761299056918) +station = ('kiag', 0.0009091329050704641) +zone = ('nyz001', 0.0019439879022703091) + +[14134] +centroid = (0.74224795196807958, -1.3705022720228572) +station = ('kole', 0.0055231673827855271) +zone = ('nyz085', 0.0034828507859467088) + +[14135] +centroid = (0.74155015187983964, -1.3830145723369898) +station = ('kdkk', 0.00058682584003291467) +zone = ('nyz019', 0.0048095693645735377) + +[14136] +centroid = (0.74206767690964104, -1.3818611540475167) +station = ('kdkk', 0.0014286943715504355) +zone = ('nyz019', 0.0056187399873995833) + +[14138] +centroid = (0.73966201978844714, -1.3794498769661312) +station = ('kdkk', 0.0038101611894520793) +zone = ('nyz085', 0.0055598668437323489) + +[14139] +centroid = (0.74557681845040824, -1.3708060640324595) +station = ('kbuf', 0.0044841515008249462) +zone = ('nyz085', 0.0032559799667453608) + +[14141] +centroid = (0.74220068845193543, -1.373784887280008) +station = ('kole', 0.0067630828837616681) +zone = ('nyz085', 0.0018498884661138893) + +[14143] +centroid = (0.75000145499701665, -1.3624735829307582) +station = ('kroc', 0.0054732732038531703) +zone = ('nyz011', 0.0017309198831324676) + +[14145] +centroid = (0.74577231277992406, -1.3689372701891789) +station = ('kbuf', 0.0052239669081981868) +zone = ('nyz012', 0.0027325842474668237) + +[14150] +centroid = (0.75045813784909343, -1.3766852754309722) +station = ('kbuf', 0.0021686376611902299) +zone = ('nyz010', 0.0025996438264716763) + +[14167] +centroid = (0.74612881373293649, -1.3670235341176598) +station = ('kbuf', 0.006130627613042932) +zone = ('nyz012', 0.0015309354250965437) + +[14168] +centroid = (0.74212071746560904, -1.3786450183815742) +station = ('kdkk', 0.0037837755382313298) +zone = ('nyz085', 0.0034690164611900611) + +[14169] +centroid = (0.74641003863531041, -1.3704970534883938) +station = ('kbuf', 0.0039636009221685241) +zone = ('nyz010', 0.0036875954544034325) + +[14170] +centroid = (0.74525986665824617, -1.3731256938748224) +station = ('kbuf', 0.0041377500337298418) +zone = ('nyz085', 0.001723589617949025) + +[14171] +centroid = (0.74045024538523285, -1.3726985245403969) +station = ('kole', 0.0049499360760925683) +zone = ('nyz020', 0.0030958690877187687) + +[14172] +centroid = (0.75525060253555965, -1.3755453485366174) +station = ('kiag', 0.0031241366782895222) +zone = ('nyz001', 0.0015371049977194664) + +[14173] +centroid = (0.74221821155762546, -1.3696140041533471) +station = ('kole', 0.0052886174152913298) +zone = ('nyz085', 0.0040794031437291741) + +[14174] +centroid = (0.75483987420268783, -1.3787808748105492) +station = ('cysn', 0.0023063236872300765) +zone = ('nyz001', 0.003359792671808041) + +[14201] +centroid = (0.74867748313303872, -1.3768278339242754) +station = ('kbuf', 0.0020621424847493382) +zone = ('nyz010', 0.0025845183569789256) + +[14202] +centroid = (0.74842304903468304, -1.3766717665825619) +station = ('kbuf', 0.0020529848405610404) +zone = ('nyz010', 0.0025611944508677686) + +[14203] +centroid = (0.74820891458875594, -1.3765379172822263) +station = ('kbuf', 0.0020729369696908251) +zone = ('nyz010', 0.0025633528952027709) + +[14204] +centroid = (0.74843444603469855, -1.3763898086419022) +station = ('kbuf', 0.0018643317009567131) +zone = ('nyz010', 0.0023669436363460894) + +[14206] +centroid = (0.74839854461198507, -1.3755022214508006) +station = ('kbuf', 0.001355135405686019) +zone = ('nyz010', 0.0018128610551314058) + +[14207] +centroid = (0.74965263349271305, -1.3770452844957812) +station = ('kbuf', 0.0021398989714742022) +zone = ('nyz010', 0.0026512979463259433) + +[14208] +centroid = (0.74902358192370921, -1.3762461854977557) +station = ('kbuf', 0.001560597631659039) +zone = ('nyz010', 0.0020892833555924634) + +[14209] +centroid = (0.74898960036317297, -1.3764717169436984) +station = ('kbuf', 0.001729225950493251) +zone = ('nyz010', 0.0022578818961006409) + +[14210] +centroid = (0.74809450825628776, -1.3758210407452622) +station = ('kbuf', 0.0017348040765464794) +zone = ('nyz010', 0.0021792711759436307) + +[14211] +centroid = (0.74885603031551784, -1.3756677484770599) +station = ('kbuf', 0.0012035519844452651) +zone = ('nyz010', 0.001720068228279461) + +[14212] +centroid = (0.7486451421819994, -1.3756706282703255) +station = ('kbuf', 0.0013026906349504212) +zone = ('nyz010', 0.0018000739442513923) + +[14213] +centroid = (0.74906210134030082, -1.3769322395201296) +station = ('kbuf', 0.0020502593968656437) +zone = ('nyz010', 0.0025795831763969633) + +[14214] +centroid = (0.74943823724739811, -1.3760290665388075) +station = ('kbuf', 0.0013757855757066306) +zone = ('nyz010', 0.0018959827230502302) + +[14215] +centroid = (0.74936264703749422, -1.3755056597494271) +station = ('kbuf', 0.00098881420717461792) +zone = ('nyz010', 0.0015129671967089987) + +[14216] +centroid = (0.74961219421394443, -1.3763861783570581) +station = ('kbuf', 0.0016572220508630012) +zone = ('nyz010', 0.0021672130116937895) + +[14217] +centroid = (0.75000059978568312, -1.3766610502609546) +station = ('kbuf', 0.001953027574898927) +zone = ('nyz010', 0.0024327727871587225) + +[14218] +centroid = (0.74733902503626937, -1.3758596648816088) +station = ('kbuf', 0.0023484091876763754) +zone = ('nyz010', 0.0027194443556693049) + +[14219] +centroid = (0.74680378491456034, -1.3757814741311196) +station = ('kbuf', 0.0027913430309180953) +zone = ('nyz085', 0.0029837718567145353) + +[14220] +centroid = (0.74779919854685017, -1.3757047494572019) +station = ('kbuf', 0.0019039605466216855) +zone = ('nyz010', 0.0023062364822635435) + +[14221] +centroid = (0.75022143629593796, -1.373973295572761) +station = ('kbuf', 0.0009033500912354269) +zone = ('nyz010', 0.00090884449298409291) + +[14222] +centroid = (0.74909384887939456, -1.3766623592578937) +station = ('kbuf', 0.0018501769871343908) +zone = ('nyz010', 0.0023794879125232206) + +[14223] +centroid = (0.7500282283477423, -1.3761258101392455) +station = ('kbuf', 0.0016028276575343009) +zone = ('nyz010', 0.0020636087871255715) + +[14224] +centroid = (0.74766110809643238, -1.3744107448964809) +station = ('kbuf', 0.0016773436797897731) +zone = ('nyz010', 0.0018794968778839817) + +[14225] +centroid = (0.74924932280916223, -1.3744897035918411) +station = ('kbuf', 0.00025676320425323371) +zone = ('nyz010', 0.00078350797458873688) + +[14226] +centroid = (0.74998567722057852, -1.3752575786495485) +station = ('kbuf', 0.0010405279351478527) +zone = ('nyz010', 0.0014533811076808578) + +[14227] +centroid = (0.74851776805318881, -1.3741075462988244) +station = ('kbuf', 0.00081103100815048802) +zone = ('nyz010', 0.0010093948577180021) + +[14228] +centroid = (0.75126599839996411, -1.374923871696567) +station = ('kbuf', 0.0020177501350503455) +zone = ('nyz010', 0.0021581633757708236) + +[14261] +centroid = (0.75062476443278148, -1.375171394291085) +station = ('kbuf', 0.0014945386191282501) +zone = ('nyz010', 0.0017616939209318906) + +[14301] +centroid = (0.75216397030011517, -1.3795153442663737) +station = ('kiag', 0.0014120551410420764) +zone = ('nyz001', 0.0042150266978518893) + +[14302] +centroid = (0.75213037271201433, -1.379668688894454) +station = ('kiag', 0.0015289135000909209) +zone = ('nyz010', 0.0053097459453161052) + +[14303] +centroid = (0.75197468934273637, -1.3794803678681637) +station = ('kiag', 0.00144870490691091) +zone = ('nyz010', 0.0051122694937854145) + +[14304] +centroid = (0.75222655780709169, -1.3779720543285903) +station = ('kiag', 0.00038368585922786619) +zone = ('nyz001', 0.0032039387732079021) + +[14305] +centroid = (0.75263533137120131, -1.3792157585002689) +station = ('kiag', 0.0011504395169469861) +zone = ('nyz001', 0.0038262595750860671) + +[14411] +centroid = (0.75461006670007769, -1.3651350529604167) +station = ('kroc', 0.007098046969052159) +zone = ('nyz002', 0.00033949696920350104) + +[14414] +centroid = (0.74858848879447959, -1.3568845325203893) +station = ('kroc', 0.0040140921225642655) +zone = ('nyz013', 0.0028711905549671205) + +[14415] +centroid = (0.74622416106997302, -1.3442016960850445) +station = ('kpeo', 0.0018890172237708957) +zone = ('nyz015', 0.0024124522729267271) + +[14416] +centroid = (0.75193472130286576, -1.3610098800068655) +station = ('kroc', 0.0038284306769466913) +zone = ('nyz011', 0.0030737275511570012) + +[14418] +centroid = (0.74358757943544773, -1.3476809052291399) +station = ('kpeo', 0.0022804122408519017) +zone = ('nyz015', 0.0015123400370819788) + +[14420] +centroid = (0.75418712106244201, -1.3602147429062419) +station = ('kroc', 0.0036030818111073976) +zone = ('nyz003', 0.003244550707605035) + +[14422] +centroid = (0.75197093688484462, -1.362525576289175) +station = ('kroc', 0.004920451173441801) +zone = ('nyz011', 0.0021786196824831387) + +[14423] +centroid = (0.74933875348003443, -1.3582344748836366) +station = ('kroc', 0.0036414261331867174) +zone = ('nyz013', 0.0036400377466099146) + +[14424] +centroid = (0.74799043427299128, -1.3491967062312045) +station = ('kpeo', 0.0048528343004860617) +zone = ('nyz014', 7.9788482961965941e-05) + +[14425] +centroid = (0.75034346971723753, -1.3498030859732251) +station = ('kroc', 0.0049158300774733415) +zone = ('nyz014', 0.002468092500412594) + +[14427] +centroid = (0.74388706048179742, -1.3622976362888646) +station = ('kdsv', 0.0044377773397436746) +zone = ('nyz012', 0.0026035167911552561) + +[14428] +centroid = (0.75189686511138998, -1.3588010960252965) +station = ('kroc', 0.0022593572896530988) +zone = ('nyz003', 0.0023146574078653339) + +[14432] +centroid = (0.74974791101657945, -1.3464084729379735) +station = ('kpeo', 0.0054970228247191591) +zone = ('nyz014', 0.0027050770854809185) + +[14433] +centroid = (0.75192494745905458, -1.3417672061246078) +station = ('kfzy', 0.007834671048500795) +zone = ('nyz004', 0.0023280227243037987) + +[14435] +centroid = (0.74547466432928911, -1.3554805024036225) +station = ('kdsv', 0.002636720042410356) +zone = ('nyz013', 0.0014626395027301519) + +[14437] +centroid = (0.74306939118053061, -1.3567607188632527) +station = ('kdsv', 0.00029311065029067533) +zone = ('nyz013', 0.0027224341989919658) + +[14441] +centroid = (0.7449869844296968, -1.3431635567926659) +station = ('kpeo', 0.0013307660024358551) +zone = ('nyz015', 0.0020974242732720578) + +[14445] +centroid = (0.75246484760986643, -1.3524608908114546) +station = ('kroc', 0.0024601607232161799) +zone = ('nyz003', 0.0026826942853620246) + +[14450] +centroid = (0.75210857354965688, -1.3512517616122579) +station = ('kroc', 0.0033687446423742839) +zone = ('nyz014', 0.0044615474169659511) + +[14454] +centroid = (0.74696206882442362, -1.3574235076466976) +station = ('kdsv', 0.004101587955180671) +zone = ('nyz013', 0.0012160799016754588) + +[14456] +centroid = (0.74783335464031175, -1.3438855820509232) +station = ('kpeo', 0.0035118625423898801) +zone = ('nyz016', 0.0025279629889926555) + +[14462] +centroid = (0.74502056456450516, -1.357012953846751) +station = ('kdsv', 0.0021383397135932027) +zone = ('nyz013', 0.00078949616155394805) + +[14464] +centroid = (0.75619957295645401, -1.3601728550041943) +station = ('kroc', 0.0048474028422132035) +zone = ('nyz003', 0.0043549123633780107) + +[14466] +centroid = (0.74659106418532717, -1.3540446200280065) +station = ('kdsv', 0.0040550586272363595) +zone = ('nyz013', 0.0026303037622475533) + +[14467] +centroid = (0.75112743671064819, -1.3545850263243016) +station = ('kroc', 0.0016697005110406088) +zone = ('nyz003', 0.0021970655197683705) + +[14468] +centroid = (0.75562207841355422, -1.3579019198479616) +station = ('kroc', 0.0034431834865173956) +zone = ('nyz003', 0.0029077601508673916) + +[14469] +centroid = (0.74836086295343451, -1.3521242691586222) +station = ('kroc', 0.0049708030374339312) +zone = ('nyz014', 0.002233351229372898) + +[14470] +centroid = (0.75407320342216433, -1.3623636097345901) +station = ('kroc', 0.0050101813854351558) +zone = ('nyz002', 0.0023540452787500065) + +[14471] +centroid = (0.74619389706074335, -1.352493842627732) +station = ('kdsv', 0.0043547554908248591) +zone = ('nyz014', 0.0030105262280509517) + +[14472] +centroid = (0.74991246065845751, -1.3539415059757989) +station = ('kroc', 0.0029571703983655873) +zone = ('nyz003', 0.0034922214453660975) + +[14475] +centroid = (0.74940631517537903, -1.3526004473384439) +station = ('kroc', 0.0039137266108552572) +zone = ('nyz014', 0.0029390928072039507) + +[14476] +centroid = (0.75624032639448813, -1.3621038174754305) +station = ('kroc', 0.0058892706663099485) +zone = ('nyz002', 0.0027464452671332432) + +[14477] +centroid = (0.75630577624143791, -1.3638071366523294) +station = ('kroc', 0.0069326036104999248) +zone = ('nyz002', 0.0018236834166773981) + +[14478] +centroid = (0.74312319968136964, -1.346108258853338) +station = ('kpeo', 0.0015962222385151013) +zone = ('nyz015', 0.0010078884163547165) + +[14479] +centroid = (0.75461512815490861, -1.3668332234160223) +station = ('kbuf', 0.0075203047540805205) +zone = ('nyz002', 0.0010860596161159169) + +[14480] +centroid = (0.74767273198925077, -1.356301627456808) +station = ('kdsv', 0.0047449368171246491) +zone = ('nyz013', 0.0020991210663976259) + +[14481] +centroid = (0.74633411681284856, -1.3599858953347206) +station = ('kdsv', 0.0043018468688224695) +zone = ('nyz013', 0.0019622057968637849) + +[14482] +centroid = (0.75012338369856102, -1.3608599911307044) +station = ('kroc', 0.0043924118741271593) +zone = ('nyz011', 0.0028611402891816702) + +[14485] +centroid = (0.74844317268095861, -1.3543934066257253) +station = ('kroc', 0.0042175755807139339) +zone = ('nyz013', 0.0035014498337726449) + +[14486] +centroid = (0.74864641627235329, -1.3599882515292108) +station = ('kroc', 0.0049307489255222166) +zone = ('nyz013', 0.0034519014997115324) + +[14487] +centroid = (0.74720613566702254, -1.3550039227980728) +station = ('kdsv', 0.004401031315737187) +zone = ('nyz013', 0.0023068416757427569) + +[14489] +centroid = (0.75203411780376683, -1.3438048605730186) +station = ('kpeo', 0.0076842385382309922) +zone = ('nyz004', 0.0012707356456098558) + +[14502] +centroid = (0.75217536730013068, -1.3497573932534077) +station = ('kroc', 0.0044474515902940461) +zone = ('nyz014', 0.0042754086319975824) + +[14504] +centroid = (0.74995019467688562, -1.3479439787072931) +station = ('kpeo', 0.006032839470557546) +zone = ('nyz014', 0.0022061060312702709) + +[14505] +centroid = (0.75327396479779851, -1.3468524497930958) +station = ('kroc', 0.0065932983153089318) +zone = ('nyz004', 0.0017800687568900655) + +[14506] +centroid = (0.75058779835922418, -1.3529208025226473) +station = ('kroc', 0.002877724961318137) +zone = ('nyz003', 0.0033568525859278193) + +[14507] +centroid = (0.74499232513720792, -1.348352123952872) +station = ('kpeo', 0.0026990782132194626) +zone = ('nyz015', 0.0021169908733691231) + +[14510] +centroid = (0.74495905916166494, -1.3590705923150972) +station = ('kdsv', 0.0028197102742594962) +zone = ('nyz013', 0.0014355224027187156) + +[14511] +centroid = (0.75048065259644425, -1.3594681957719941) +station = ('kroc', 0.0033552258295960059) +zone = ('nyz003', 0.0035808065506186663) + +[14512] +centroid = (0.74429986575647911, -1.3508808267863315) +station = ('kpeo', 0.0044909354369169199) +zone = ('nyz014', 0.0038441430817972742) + +[14513] +centroid = (0.75199795458166552, -1.345511251529401) +station = ('kroc', 0.0075527262016159185) +zone = ('nyz004', 0.0014654246502554191) + +[14514] +centroid = (0.7524107598563472, -1.3581267357089113) +station = ('kroc', 0.0016807480126827053) +zone = ('nyz003', 0.0016441709822120091) + +[14516] +centroid = (0.75400541483401684, -1.3424957065543901) +station = ('kfzy', 0.0072885884054358372) +zone = ('nyz004', 0.0016014072582226271) + +[14517] +centroid = (0.74337807011203838, -1.3595390910462102) +station = ('kdsv', 0.0023462826120597951) +zone = ('nyz013', 0.0028279495024095772) + +[14519] +centroid = (0.75457516011503789, -1.3493948709144761) +station = ('kroc', 0.0051200177215092561) +zone = ('nyz004', 0.0038747204354514985) + +[14521] +centroid = (0.74484791659489791, -1.3405001843541224) +station = ('kpeo', 0.0031785482425142008) +zone = ('nyz016', 0.0018370967501417455) + +[14522] +centroid = (0.7515720244310089, -1.3477777360960406) +station = ('kroc', 0.0059576028772200312) +zone = ('nyz004', 0.0029605783845963558) + +[14525] +centroid = (0.74835379436996385, -1.3615894863981604) +station = ('kroc', 0.0059301796319998134) +zone = ('nyz011', 0.0031544149251918415) + +[14526] +centroid = (0.75313512385580239, -1.3516596974183264) +station = ('kroc', 0.0031032674598619825) +zone = ('nyz003', 0.0032037560648677976) + +[14527] +centroid = (0.74465359163598088, -1.3450608344093387) +station = ('kpeo', 0.00034216959429155094) +zone = ('nyz015', 0.00075179306525840215) + +[14529] +centroid = (0.74246264491936731, -1.3550404699926095) +station = ('kdsv', 0.0011123681371386831) +zone = ('nyz013', 0.0037267503042382136) + +[14530] +centroid = (0.74595215150604965, -1.361334930126757) +station = ('kdsv', 0.0047173247906508115) +zone = ('nyz012', 0.0029681825428867882) + +[14532] +centroid = (0.74986502260938825, -1.3444635652860137) +station = ('kpeo', 0.0054868922654429039) +zone = ('nyz004', 0.0033599431932229665) + +[14533] +centroid = (0.74767828213627208, -1.3594152948423659) +station = ('kdsv', 0.0052376145187179287) +zone = ('nyz013', 0.0024170419698995712) + +[14534] +centroid = (0.75148449616902135, -1.35299742247681) +station = ('kroc', 0.0023168429388726215) +zone = ('nyz003', 0.0027213695770096267) + +[14536] +centroid = (0.74253244063615464, -1.3628171509940132) +station = ('kdsv', 0.004734989080018355) +zone = ('nyz012', 0.0033025478110442672) + +[14537] +centroid = (0.75111654585611587, -1.3467519188281811) +station = ('kroc', 0.0067795009580737782) +zone = ('nyz004', 0.0027131326711963889) + +[14539] +centroid = (0.74760304099221864, -1.3591708091207468) +station = ('kdsv', 0.0050953826877987258) +zone = ('nyz013', 0.0022512647456776991) + +[14541] +centroid = (0.74626014975914912, -1.3412654414179519) +station = ('kpeo', 0.0031906208940512401) +zone = ('nyz016', 0.00052080161911010161) + +[14542] +centroid = (0.75306295449123239, -1.3414621749312368) +station = ('kfzy', 0.0070179220677006569) +zone = ('nyz004', 0.002158940364144336) + +[14543] +centroid = (0.75020674062363624, -1.3557424239644691) +station = ('kroc', 0.0023219360965367887) +zone = ('nyz003', 0.002848833649904097) + +[14544] +centroid = (0.74623735575911798, -1.3481575022879821) +station = ('kpeo', 0.0031005464866249808) +zone = ('nyz014', 0.0018332600158207234) + +[14545] +centroid = (0.74464222954255033, -1.3561384042651616) +station = ('kdsv', 0.0017255072775589231) +zone = ('nyz013', 0.0014591095811151149) + +[14546] +centroid = (0.75106186469065084, -1.3575171969209447) +station = ('kroc', 0.0019151921547626335) +zone = ('nyz003', 0.002255865847710814) + +[14548] +centroid = (0.7500739559741445, -1.3481598584824723) +station = ('kroc', 0.0061188786069642717) +zone = ('nyz014', 0.002265514243603895) + +[14549] +centroid = (0.7452561316536469, -1.361658287277274) +station = ('kdsv', 0.0045074230224442114) +zone = ('nyz012', 0.0026582787290004408) + +[14550] +centroid = (0.74490481432851285, -1.3629884725133889) +station = ('kdsv', 0.0052273167714333288) +zone = ('nyz012', 0.0017255659942387947) + +[14551] +centroid = (0.75429838580225661, -1.3447657515927041) +station = ('kroc', 0.0082616934550718141) +zone = ('nyz004', 0.0011039722078739884) + +[14555] +centroid = (0.75504317015396016, -1.3434801071591) +station = ('kroc', 0.0093490088159652405) +zone = ('nyz004', 0.0019414157333609624) + +[14559] +centroid = (0.75380758176330331, -1.3581987305405561) +station = ('kroc', 0.002150385584168421) +zone = ('nyz003', 0.0017425784125704325) + +[14560] +centroid = (0.74496637209123073, -1.3537804120858399) +station = ('kdsv', 0.0028109656406323227) +zone = ('nyz013', 0.0027977184566383862) + +[14561] +centroid = (0.74735752552634049, -1.3462034840173267) +station = ('kpeo', 0.003153928802164687) +zone = ('nyz014', 0.002223825440590473) + +[14564] +centroid = (0.75025943211375401, -1.3514845361745962) +station = ('kroc', 0.0039023477576763453) +zone = ('nyz014', 0.002900196910788392) + +[14568] +centroid = (0.75329473421589732, -1.3488157357620791) +station = ('kroc', 0.0051754106251555177) +zone = ('nyz004', 0.0032122769808367131) + +[14569] +centroid = (0.74586109767897313, -1.3642993195013919) +station = ('kdsv', 0.0065004096110428504) +zone = ('nyz012', 0.00091299762037210246) + +[14571] +centroid = (0.75645453065358548, -1.3657505433211325) +station = ('kroc', 0.0082260475973475085) +zone = ('nyz002', 0.0015828878247430938) + +[14572] +centroid = (0.74289808711444738, -1.3537227115007686) +station = ('kdsv', 0.0019806883367180727) +zone = ('nyz013', 0.0039463890445870231) + +[14580] +centroid = (0.75428388211617259, -1.3516621059726943) +station = ('kroc', 0.003510641178684183) +zone = ('nyz003', 0.0034299375513767542) + +[14585] +centroid = (0.74885552417003476, -1.3535577255265778) +station = ('kroc', 0.0040306441704072143) +zone = ('nyz013', 0.0042148880993805047) + +[14586] +centroid = (0.751218699977235, -1.3559455279295236) +station = ('kroc', 0.0013118154236443204) +zone = ('nyz003', 0.0018296094423704834) + +[14588] +centroid = (0.74492375115089704, -1.3416486110019346) +station = ('kpeo', 0.0023625145179582969) +zone = ('nyz016', 0.0018470595577856656) + +[14589] +centroid = (0.75484484839105603, -1.3469449522434516) +station = ('kroc', 0.0068805373560738414) +zone = ('nyz004', 0.0024557202428014328) + +[14590] +centroid = (0.75472482209839642, -1.3408708922872461) +station = ('kfzy', 0.0059305263311777764) +zone = ('nyz005', 0.002994675210887917) + +[14591] +centroid = (0.74756042005188483, -1.3632324520895254) +station = ('kdsv', 0.0068250914132569141) +zone = ('nyz012', 0.0027161370177778274) + +[14592] +centroid = (0.74826169334533621, -1.3595398066312032) +station = ('kroc', 0.005055937248784983) +zone = ('nyz013', 0.0029511872747981166) + +[14604] +centroid = (0.75321799208868701, -1.3544582456074368) +station = ('kroc', 0.001215853162820928) +zone = ('nyz003', 0.0011732972544635141) + +[14605] +centroid = (0.75343120151011067, -1.3544216111464376) +station = ('kroc', 0.0013682438696119099) +zone = ('nyz003', 0.0012480332940127193) + +[14606] +centroid = (0.75347602156530202, -1.3560844212313974) +station = ('kroc', 0.00096623433129654766) +zone = ('nyz003', 0.00043004628651127657) + +[14607] +centroid = (0.75312330797676641, -1.3541387630878594) +station = ('kroc', 0.0013703173026542318) +zone = ('nyz003', 0.0013959739675583928) + +[14608] +centroid = (0.75317746554345577, -1.3547827895818449) +station = ('kroc', 0.0010029930575158432) +zone = ('nyz003', 0.00093318043146550474) + +[14609] +centroid = (0.75358243428979599, -1.3535878848160523) +station = ('kroc', 0.0019463137109644901) +zone = ('nyz003', 0.0018736110966776449) + +[14610] +centroid = (0.75298116836248397, -1.3534260753410998) +station = ('kroc', 0.0018119960287364184) +zone = ('nyz003', 0.0019150873321330613) + +[14611] +centroid = (0.75308018089094964, -1.3551955774032343) +station = ('kroc', 0.00072072513728578687) +zone = ('nyz003', 0.00062374904737202725) + +[14612] +centroid = (0.75513991375439826, -1.3557142718036344) +station = ('kroc', 0.0026134788613625106) +zone = ('nyz003', 0.0021073674431773795) + +[14613] +centroid = (0.7536710621092122, -1.3550766855745884) +station = ('kroc', 0.0012684902769282706) +zone = ('nyz003', 0.00094499943984427881) + +[14614] +centroid = (0.75323945963848671, -1.3546434948542434) +station = ('kroc', 0.0011207269642679453) +zone = ('nyz003', 0.0010435235136609647) + +[14615] +centroid = (0.7540040883837853, -1.3553306484340462) +station = ('kroc', 0.0015205560803689395) +zone = ('nyz003', 0.0010914084037591141) + +[14616] +centroid = (0.75458652220846834, -1.3553819262074698) +station = ('kroc', 0.0020844901929366415) +zone = ('nyz003', 0.0016148242606185397) + +[14617] +centroid = (0.75442724346093126, -1.3542625243851181) +station = ('kroc', 0.002216904541253594) +zone = ('nyz003', 0.0018981642600421715) + +[14618] +centroid = (0.75247296339088832, -1.3535716358007164) +station = ('kroc', 0.0016494338514497964) +zone = ('nyz003', 0.0018970421557069994) + +[14619] +centroid = (0.7528731848416631, -1.3552390361016091) +station = ('kroc', 0.00055252735245033273) +zone = ('nyz003', 0.00061615040314072283) + +[14620] +centroid = (0.75273067870823773, -1.3544768159106781) +station = ('kroc', 0.0010082607755071021) +zone = ('nyz003', 0.0011901797707822041) + +[14621] +centroid = (0.75380663928550729, -1.3544391866120051) +station = ('kroc', 0.0016324325904033534) +zone = ('nyz003', 0.0013987337514567934) + +[14622] +centroid = (0.75425696913910678, -1.3535447577302355) +station = ('kroc', 0.0024016847539057168) +zone = ('nyz003', 0.0021908766618423401) + +[14623] +centroid = (0.75201582675320588, -1.3551062165455323) +station = ('kroc', 0.00073575719961518243) +zone = ('nyz003', 0.0012396237579201253) + +[14624] +centroid = (0.75273032964238729, -1.3566680593332643) +station = ('kroc', 0.00064439382337289736) +zone = ('nyz003', 0.00055136634333376535) + +[14625] +centroid = (0.7531102529139615, -1.352726529923608) +station = ('kroc', 0.0023384579428134913) +zone = ('nyz003', 0.0024250594438212556) + +[14626] +centroid = (0.75427068742702741, -1.3563094290785647) +station = ('kroc', 0.0017776325483397255) +zone = ('nyz003', 0.0012385614285148568) + +[14627] +centroid = (0.75273718878634766, -1.3548841583048008) +station = ('kroc', 0.00072137751153867518) +zone = ('nyz003', 0.00090479873095357074) + +[14701] +centroid = (0.73443734176601705, -1.383290543798315) +station = ('kjhw', 0.0012257352206751313) +zone = ('nyz019', 0.0029479228498191941) + +[14706] +centroid = (0.73501480140233189, -1.3706619696494147) +station = ('kole', 0.0030049967311092047) +zone = ('nyz020', 0.0030223123431019632) + +[14707] +centroid = (0.73438808857452575, -1.3624129327392513) +station = ('kelz', 0.00087790060485424561) +zone = ('nyz021', 0.0031713814288346636) + +[14708] +centroid = (0.73337372066655915, -1.3624671426658181) +station = ('kelz', 0.0016332087384675045) +zone = ('nyz021', 0.0041830951312751292) + +[14709] +centroid = (0.73926027990122301, -1.3610437743009391) +station = ('kelz', 0.0044826619888761821) +zone = ('nyz021', 0.0018266603987229296) + +[14710] +centroid = (0.73457016132209385, -1.386137821580141) +station = ('kjhw', 0.0022610321832209801) +zone = ('nyz019', 0.0025466461723319162) + +[14711] +centroid = (0.73874071283619691, -1.3634413505476963) +station = ('kelz', 0.0042476177317215718) +zone = ('nyz021', 0.0016940296529488151) + +[14712] +centroid = (0.73624524107169542, -1.3851268570642159) +station = ('kjhw', 0.0013657747119334416) +zone = ('nyz019', 0.00077804199193595898) + +[14714] +centroid = (0.73821716642047619, -1.3654344816468889) +station = ('kole', 0.0020437032003207912) +zone = ('nyz021', 0.0027477615065391683) + +[14715] +centroid = (0.73437402122075468, -1.3638832679143016) +station = ('kelz', 0.0019191310078363597) +zone = ('nyz021', 0.0035016981314041186) + +[14716] +centroid = (0.73985618766773142, -1.386577592191766) +station = ('kdkk', 0.0028250542353731008) +zone = ('nyz019', 0.0030112985662599026) + +[14717] +centroid = (0.73935021671757828, -1.3644931906747033) +station = ('kole', 0.003292562541252193) +zone = ('nyz021', 0.0026766508865766628) + +[14718] +centroid = (0.73907387873711006, -1.3838299727102288) +station = ('kdkk', 0.002691619232827883) +zone = ('nyz019', 0.0022909654941247063) + +[14719] +centroid = (0.73900657884115317, -1.3766450804982988) +station = ('kjhw', 0.0060586428280209274) +zone = ('nyz020', 0.0030210295928609354) + +[14720] +centroid = (0.73493357377894408, -1.3837176084129854) +station = ('kjhw', 0.00074671966471587746) +zone = ('nyz019', 0.0023607614126579667) + +[14721] +centroid = (0.73328067716413536, -1.3660084680779923) +station = ('kelz', 0.0037665943200142207) +zone = ('nyz021', 0.005255969954977611) + +[14722] +centroid = (0.73669455863432876, -1.3869845506134535) +station = ('kjhw', 0.0028076703228744524) +zone = ('nyz019', 0.0013577672815067543) + +[14723] +centroid = (0.73858326668437446, -1.3815543077117234) +station = ('kjhw', 0.0032507191407376737) +zone = ('nyz019', 0.0031204823563324735) + +[14724] +centroid = (0.73384686197348237, -1.3905008480041541) +station = ('keri', 0.0066847783492192765) +zone = ('nyz019', 0.005049543802147647) + +[14726] +centroid = (0.73746417902128825, -1.3791640443945323) +station = ('kjhw', 0.0036628355326306147) +zone = ('nyz020', 0.0044111372049757879) + +[14727] +centroid = (0.73665066360364118, -1.3665448426637152) +station = ('kole', 0.0010082840978790581) +zone = ('nyz021', 0.00359410372328535) + +[14728] +centroid = (0.73763431371677268, -1.3861959235909398) +station = ('kjhw', 0.0028296009705198995) +zone = ('nyz019', 0.00095608392041507298) + +[14729] +centroid = (0.74016580907703533, -1.3743348056207265) +station = ('kole', 0.0057438737954025086) +zone = ('nyz020', 0.0029108564778057735) + +[14731] +centroid = (0.73840257274691545, -1.3727975021622774) +station = ('kole', 0.0039476983860213906) +zone = ('nyz020', 0.0010689849685031798) + +[14732] +centroid = (0.73708504114787754, -1.3808419166709371) +station = ('kjhw', 0.0024117377346948229) +zone = ('nyz019', 0.0032312832431741633) + +[14733] +centroid = (0.73583294194249682, -1.3818155485941621) +station = ('kjhw', 0.0012349868453936667) +zone = ('nyz019', 0.0027780662933896741) + +[14735] +centroid = (0.74093921682847153, -1.3630352822439276) +station = ('kole', 0.0051801258766324418) +zone = ('nyz021', 0.0035213187327552469) + +[14736] +centroid = (0.73549649482258983, -1.3918321502509903) +station = ('keri', 0.005749249716060275) +zone = ('paz002', 0.0045763816841034614) + +[14737] +centroid = (0.7387812917413058, -1.3688374897158426) +station = ('kole', 0.0018521910800046743) +zone = ('nyz020', 0.0035234174119241324) + +[14738] +centroid = (0.73399832164597034, -1.380285627878449) +station = ('kjhw', 0.0028828741221268474) +zone = ('nyz019', 0.0047373728789130536) + +[14739] +centroid = (0.73639985979012967, -1.363910145984782) +station = ('kelz', 0.0024892096658007657) +zone = ('nyz021', 0.0019058522996997654) + +[14740] +centroid = (0.73693391308794731, -1.3819767472038762) +station = ('kjhw', 0.0016873848750015861) +zone = ('nyz019', 0.0023921180980078049) + +[14741] +centroid = (0.73687741678006025, -1.3720316691397949) +station = ('kole', 0.0031744185174296352) +zone = ('nyz020', 0.0010027783662476873) + +[14742] +centroid = (0.7351348276949915, -1.3841654598990472) +station = ('kjhw', 0.00073637669121439644) +zone = ('nyz019', 0.0020375605343007476) + +[14743] +centroid = (0.73666754093750786, -1.3682494184776757) +station = ('kole', 0.00057422782747751269) +zone = ('nyz021', 0.0048246093982247905) + +[14744] +centroid = (0.74051004036540613, -1.3649636092679933) +station = ('kole', 0.0039771738308767048) +zone = ('nyz021', 0.003769804570251258) + +[14747] +centroid = (0.73572111869732149, -1.3804597593779202) +station = ('kjhw', 0.0022284307503223563) +zone = ('nyz019', 0.0037484430128164803) + +[14748] +centroid = (0.73578030281225659, -1.3725803482967442) +station = ('kole', 0.0038135013151249708) +zone = ('nyz020', 0.0016627386581176829) + +[14750] +centroid = (0.7344304651687642, -1.3845565009179566) +station = ('kjhw', 0.0014693586220432889) +zone = ('nyz019', 0.0026348922127890093) + +[14752] +centroid = (0.73917709750907301, -1.3843926668610718) +station = ('kdkk', 0.0026302653192123975) +zone = ('nyz019', 0.002238149112740262) + +[14753] +centroid = (0.73366716287369693, -1.3729522954136368) +station = ('kbfd', 0.0041392102810975809) +zone = ('nyz020', 0.0037147722886397903) + +[14754] +centroid = (0.73342065257014544, -1.3648748592755295) +station = ('kelz', 0.0029461383075411011) +zone = ('nyz021', 0.0046863766303708396) + +[14755] +centroid = (0.73711809768391023, -1.3753996659039534) +station = ('kole', 0.0056591899976886472) +zone = ('nyz020', 0.0016446580288711524) + +[14756] +centroid = (0.73649471843497549, -1.3861627274285668) +station = ('kjhw', 0.0021684634385350484) +zone = ('nyz019', 0.00088333251829294482) + +[14757] +centroid = (0.73718656695046603, -1.3876189428899686) +station = ('kjhw', 0.0034374759930457283) +zone = ('nyz019', 0.0017949710796340142) + +[14760] +centroid = (0.73438266060055213, -1.3686597802914044) +station = ('kole', 0.0028090666745989724) +zone = ('nyz020', 0.0045080142712638797) + +[14767] +centroid = (0.73403926707022227, -1.3877834576252612) +station = ('kjhw', 0.0035893728239085221) +zone = ('nyz019', 0.0035421334298129515) + +[14769] +centroid = (0.73945989320777361, -1.3870535958386625) +station = ('kdkk', 0.0033525304933084547) +zone = ('nyz019', 0.0027959170310101365) + +[14770] +centroid = (0.73370027176960728, -1.366597970486146) +station = ('kole', 0.0035169675934999581) +zone = ('nyz021', 0.0052081263976464951) + +[14772] +centroid = (0.73578665581073399, -1.3779831371693405) +station = ('kjhw', 0.0040655461248479503) +zone = ('nyz020', 0.0038798541428238398) + +[14774] +centroid = (0.73458058093772816, -1.3639589802972529) +station = ('kelz', 0.001941564537948588) +zone = ('nyz021', 0.0033426380965506162) + +[14775] +centroid = (0.73703077886143298, -1.3910262444688819) +station = ('keri', 0.0067498006381965349) +zone = ('nyz019', 0.0043104721200269078) + +[14777] +centroid = (0.73977665301371809, -1.3661350393553469) +station = ('kole', 0.0029231445257446058) +zone = ('nyz021', 0.0038904566426995551) + +[14778] +centroid = (0.73439238208448576, -1.3697909281796219) +station = ('kole', 0.0031087414157154932) +zone = ('nyz020', 0.003913604913581786) + +[14779] +centroid = (0.7344560167890134, -1.3749352337899976) +station = ('kbfd', 0.0052553713172643702) +zone = ('nyz020', 0.0031900274159411593) + +[14781] +centroid = (0.73585879026871881, -1.389304564428252) +station = ('kjhw', 0.0043342353561380111) +zone = ('nyz019', 0.0032520379443584549) + +[14782] +centroid = (0.73767227462800344, -1.3834154221062951) +station = ('kjhw', 0.0020163202493486748) +zone = ('nyz019', 0.0014761200757420177) + +[14783] +centroid = (0.73447181201874401, -1.3768440829396114) +station = ('kbfd', 0.0059264618316313628) +zone = ('nyz020', 0.0039639945863293733) + +[14784] +centroid = (0.7384687556321512, -1.3855360669606382) +station = ('kjhw', 0.0032036263770587638) +zone = ('nyz019', 0.0014682123571892764) + +[14787] +centroid = (0.73847756954487365, -1.3887830076878784) +station = ('kjhw', 0.004844473982438249) +zone = ('nyz019', 0.0030218186274650403) + +[14788] +centroid = (0.73412023289422224, -1.3679909526687477) +station = ('kole', 0.0029955417522004113) +zone = ('nyz020', 0.0050550202727483538) + +[14801] +centroid = (0.73485440564407367, -1.3490167802386166) +station = ('kelm', 0.005202128503302348) +zone = ('nyz022', 0.0030898677680531736) + +[14802] +centroid = (0.737460513829859, -1.3576793554617475) +station = ('kelz', 0.0038200714318131807) +zone = ('nyz021', 0.0030792319529196433) + +[14803] +centroid = (0.73781029526525121, -1.3569113931375774) +station = ('kelz', 0.0044733007622725397) +zone = ('nyz021', 0.003656960514590234) + +[14804] +centroid = (0.73857549996920313, -1.3587027990818246) +station = ('kelz', 0.0042711708033891863) +zone = ('nyz021', 0.0025441512473123764) + +[14805] +centroid = (0.73917147754888157, -1.3390178762204035) +station = ('kelm', 0.0039746701387156315) +zone = ('nyz023', 0.002132689953282859) + +[14806] +centroid = (0.73603224108978194, -1.3573868382791132) +station = ('kelz', 0.0031978105228508396) +zone = ('nyz021', 0.0036216387052418501) + +[14807] +centroid = (0.74038589509571173, -1.356318644417015) +station = ('kdsv', 0.0025435158235388626) +zone = ('nyz021', 0.0049798815018146283) + +[14808] +centroid = (0.74280582901018688, -1.3520517681814945) +station = ('kdsv', 0.0032135833070839441) +zone = ('nyz022', 0.005204782680320718) + +[14809] +centroid = (0.74044403201309572, -1.351735776320421) +station = ('kdsv', 0.004249612230125252) +zone = ('nyz022', 0.0028573660906204162) + +[14810] +centroid = (0.73914247017671353, -1.3498965134480843) +station = ('kpeo', 0.0064586130084707651) +zone = ('nyz022', 0.0015224077220514279) + +[14812] +centroid = (0.73828696213726341, -1.3439951363680711) +station = ('kelm', 0.0027063768139024506) +zone = ('nyz023', 0.0023351481339968505) + +[14813] +centroid = (0.73744780783290453, -1.3612713652353994) +station = ('kelz', 0.0026649452534308832) +zone = ('nyz021', 0.00042790829494736353) + +[14814] +centroid = (0.73573461009243946, -1.3431849196227101) +station = ('kelm', 0.00079020171243647367) +zone = ('nyz024', 0.0025831232574780767) + +[14815] +centroid = (0.73957145465356111, -1.3454164452444326) +station = ('kelm', 0.004352988218567653) +zone = ('nyz023', 0.0027475088367407067) + +[14816] +centroid = (0.73649182118841716, -1.3392274902635681) +station = ('kelm', 0.0022389452939137943) +zone = ('nyz024', 0.0010513521236726897) + +[14817] +centroid = (0.73927914691043706, -1.3322967179907286) +station = ('kith', 0.002816912680651971) +zone = ('nyz025', 0.0024314805218558287) + +[14818] +centroid = (0.74097836456359367, -1.34074320399917) +station = ('kpeo', 0.0045185660908881077) +zone = ('nyz023', 0.0012899775566301208) + +[14819] +centroid = (0.73695120930083458, -1.3516168146786049) +station = ('kdsv', 0.0069474400666168241) +zone = ('nyz022', 0.0010693294579144433) + +[14820] +centroid = (0.73641165821587307, -1.3501849640135613) +station = ('kelm', 0.0059662528219920231) +zone = ('nyz022', 0.0013367903184946066) + +[14821] +centroid = (0.73725454752483122, -1.3477302282338015) +station = ('kelm', 0.0043296217750628304) +zone = ('nyz022', 0.002174376007002171) + +[14822] +centroid = (0.74044687689977651, -1.3587642521247871) +station = ('kdsv', 0.0030277363353143081) +zone = ('nyz021', 0.0036969285944800558) + +[14823] +centroid = (0.73738656422945204, -1.353659111702826) +station = ('kdsv', 0.0059028449255879708) +zone = ('nyz022', 0.0022858772530272038) + +[14824] +centroid = (0.73757252906125204, -1.3386593506854587) +station = ('kelm', 0.003058959443153598) +zone = ('nyz024', 0.0022109408881355276) + +[14825] +centroid = (0.73402083639332116, -1.3372396300587168) +station = ('kelm', 0.0041260676594833939) +zone = ('nyz024', 0.0023608906674032061) + +[14826] +centroid = (0.74161595079263987, -1.3525913890796259) +station = ('kdsv', 0.0031062564555645656) +zone = ('nyz022', 0.0041710939759022382) + +[14827] +centroid = (0.7361912405846387, -1.3463973377373459) +station = ('kelm', 0.0031511508380940891) +zone = ('nyz022', 0.0034653624522239549) + +[14830] +centroid = (0.73527438422198099, -1.3444615581573738) +station = ('kelm', 0.0018355076143085798) +zone = ('nyz024', 0.0035276083022778601) + +[14836] +centroid = (0.74251399250596095, -1.3592308833536002) +station = ('kdsv', 0.0021176457550555815) +zone = ('nyz013', 0.0034911435032579834) + +[14837] +centroid = (0.74160204051850143, -1.3443591771434518) +station = ('kpeo', 0.0027977917121140184) +zone = ('nyz023', 0.0025760568728016154) + +[14838] +centroid = (0.73632200065219799, -1.3380099311240843) +station = ('kelm', 0.0030969178288459032) +zone = ('nyz024', 0.0015050493368890139) + +[14839] +centroid = (0.73512297690937056, -1.3550905085822642) +station = ('kelz', 0.0046611031235825372) +zone = ('nyz022', 0.0042145629028984589) + +[14840] +centroid = (0.74073157500736175, -1.3472938959208027) +station = ('kpeo', 0.004095485864176393) +zone = ('nyz015', 0.0035517684569437002) + +[14841] +centroid = (0.7422071636234604, -1.3411269669950985) +station = ('kpeo', 0.0034572177685968249) +zone = ('nyz023', 0.0023378309368908942) + +[14842] +centroid = (0.74351907526230698, -1.3435742502189525) +station = ('kpeo', 0.0012362743191719973) +zone = ('nyz015', 0.0016979697677669942) + +[14843] +centroid = (0.73862471825410936, -1.3551842676696813) +station = ('kdsv', 0.004398051629210171) +zone = ('nyz022', 0.0035101068714969109) + +[14845] +centroid = (0.7368066611321844, -1.3410090874574188) +station = ('kelm', 0.0012097845051002266) +zone = ('nyz024', 0.0016173529725693728) + +[14846] +centroid = (0.74232500825455494, -1.3613841135050784) +station = ('kdsv', 0.0037125134097327154) +zone = ('nyz012', 0.0041260018567762843) + +[14847] +centroid = (0.74366004550599052, -1.339264648323343) +station = ('kpeo', 0.0041190461802644287) +zone = ('nyz016', 0.0032207757690366407) + +[14850] +centroid = (0.74058149414498287, -1.3351249367771227) +station = ('kith', 0.0011382559568569517) +zone = ('nyz025', 0.00045797402956523594) + +[14853] +centroid = (0.74087484908565804, -1.3347850688118821) +station = ('kith', 0.00077087600265964994) +zone = ('nyz025', 7.2093160749703021e-05) + +[14854] +centroid = (0.74186619610079085, -1.3371799747048834) +station = ('kith', 0.0020299368082419976) +zone = ('nyz025', 0.0020443014979341697) + +[14855] +centroid = (0.73558123055777414, -1.3525847219218834) +station = ('kelm', 0.0077380146926941543) +zone = ('nyz022', 0.0025880660968485014) + +[14856] +centroid = (0.73961323783585387, -1.350300260463948) +station = ('kdsv', 0.0055956886328670224) +zone = ('nyz022', 0.0019140152529390315) + +[14858] +centroid = (0.73355415280463032, -1.3462598756054587) +station = ('kelm', 0.0038715654951463961) +zone = ('paz037', 0.004753177946638279) + +[14859] +centroid = (0.73504258704402359, -1.3358425288990803) +station = ('kelm', 0.0047696192064876465) +zone = ('nyz024', 0.002908710064806668) + +[14860] +centroid = (0.74336923874602323, -1.3409613876089619) +station = ('kpeo', 0.0029845389858767588) +zone = ('nyz016', 0.0033015575669985593) + +[14861] +centroid = (0.73457787567738764, -1.3384273091614061) +station = ('kelm', 0.0030872967942627357) +zone = ('nyz024', 0.0013306272320900531) + +[14864] +centroid = (0.73784518439699864, -1.3411270717148536) +station = ('kelm', 0.0020458642392649135) +zone = ('nyz023', 0.0021130104270723695) + +[14865] +centroid = (0.7391153826667225, -1.3410058760515953) +station = ('kelm', 0.0032810004854783438) +zone = ('nyz023', 0.000957169747430092) + +[14867] +centroid = (0.73902738316583694, -1.3372380069025123) +station = ('kith', 0.0032986797595314279) +zone = ('nyz025', 0.0026594848125143771) + +[14869] +centroid = (0.73933597483088198, -1.3398712549581662) +station = ('kelm', 0.0037879335916480269) +zone = ('nyz023', 0.0014856255594269199) + +[14870] +centroid = (0.73583740998538194, -1.3461309830401988) +station = ('kelm', 0.002946802063814554) +zone = ('nyz022', 0.0038053952766502843) + +[14871] +centroid = (0.73372987255372113, -1.342357476477632) +station = ('kelm', 0.0022222195640650925) +zone = ('nyz024', 0.0026448374649547489) + +[14872] +centroid = (0.73729083291998021, -1.341720152047974) +station = ('kelm', 0.0013822884141581524) +zone = ('nyz024', 0.0023235345257696998) + +[14873] +centroid = (0.74215393108127459, -1.3490868901146693) +station = ('kpeo', 0.0038783249967231036) +zone = ('nyz015', 0.0031342884322397308) + +[14874] +centroid = (0.74229153283950178, -1.3469664023399586) +station = ('kpeo', 0.0026408273951881388) +zone = ('nyz015', 0.0020152675729386894) + +[14877] +centroid = (0.73404691161234592, -1.3557771211099987) +station = ('kelz', 0.0042063893855879128) +zone = ('nyz022', 0.0053055869466704791) + +[14878] +centroid = (0.74089684023423319, -1.3429157549454676) +station = ('kpeo', 0.0037458255254379509) +zone = ('nyz023', 0.0013203440618768979) + +[14879] +centroid = (0.73865730355124404, -1.3471700473570813) +station = ('kelm', 0.0045946021884724197) +zone = ('nyz022', 0.0027088472026789798) + +[14880] +centroid = (0.73613601836710563, -1.3608197089315683) +station = ('kelz', 0.0014098295442813852) +zone = ('nyz021', 0.0015857614319419833) + +[14881] +centroid = (0.74001787496963622, -1.332715858810595) +station = ('kith', 0.0020385452350340115) +zone = ('nyz025', 0.0017351196481228512) + +[14882] +centroid = (0.74316288846856005, -1.3361063703221043) +station = ('kith', 0.0019792563497306992) +zone = ('nyz025', 0.0024588375281344808) + +[14883] +centroid = (0.7372798198924001, -1.3346899658209408) +station = ('kith', 0.0043287664522761509) +zone = ('nyz055', 0.0024911015482222748) + +[14884] +centroid = (0.7414075235733667, -1.3595041844611699) +station = ('kdsv', 0.0027400558338720694) +zone = ('nyz021', 0.0042430834901468302) + +[14885] +centroid = (0.73384961959370054, -1.3538576254519481) +station = ('kelz', 0.0056443716039874013) +zone = ('nyz022', 0.00455459473796801) + +[14886] +centroid = (0.74186530598287215, -1.3384053878260012) +station = ('kith', 0.0029281475672975513) +zone = ('nyz025', 0.0028769066500956026) + +[14889] +centroid = (0.73712534080030612, -1.336553890195608) +station = ('kelm', 0.0043156000268970707) +zone = ('nyz024', 0.0028482262223798282) + +[14891] +centroid = (0.73961842146373236, -1.3429642227387952) +station = ('kelm', 0.0037193856685906073) +zone = ('nyz023', 0.00096081814586605556) + +[14892] +centroid = (0.73384157362584879, -1.3356850129340878) +station = ('kelm', 0.0052437697195183005) +zone = ('nyz024', 0.0034215084557574532) + +[14893] +centroid = (0.74120143509529113, -1.3457836101591745) +station = ('kpeo', 0.0032668823084773843) +zone = ('nyz015', 0.0028936524641289714) + +[14894] +centroid = (0.73337101540621863, -1.3400130455065982) +station = ('kelm', 0.0030282788752538513) +zone = ('nyz024', 0.0021448789499550112) + +[14895] +centroid = (0.73445968198044265, -1.3603257109400839) +station = ('kelz', 0.00083091141773360361) +zone = ('nyz021', 0.0032693614632674298) + +[14897] +centroid = (0.7333990279407131, -1.3577384348569275) +station = ('kelz', 0.0030222480478015929) +zone = ('paz006', 0.0049944291960561599) + +[14898] +centroid = (0.73396966333965274, -1.3513997131729494) +station = ('kelm', 0.0071353829164799249) +zone = ('nyz022', 0.0037890277546903011) + +[14901] +centroid = (0.73456804947369891, -1.3394867589239519) +station = ('kelm', 0.0024140176866007074) +zone = ('nyz024', 0.00095153515181500641) + +[14903] +centroid = (0.73533569763860362, -1.3416669020524956) +station = ('kelm', 0.00071173735758689883) +zone = ('nyz024', 0.0014574293412837132) + +[14904] +centroid = (0.73424516356208003, -1.3404249955699465) +station = ('kelm', 0.0021329928379006432) +zone = ('nyz024', 0.0013650814064039725) + +[14905] +centroid = (0.73456937592393046, -1.3411682789384933) +station = ('kelm', 0.0015611946125885844) +zone = ('nyz024', 0.0014272199886801139) + +[15001] +centroid = (0.70852100006303087, -1.4018986683244254) +station = ('kpit', 0.0022862479565248085) +zone = ('paz020', 0.0015588697167075477) + +[15003] +centroid = (0.70866720629447033, -1.4000407129757999) +station = ('kpit', 0.0021116901961675035) +zone = ('paz020', 0.0022318986654103457) + +[15004] +centroid = (0.70415486695294927, -1.4029182896734405) +station = ('kpit', 0.0031123335684290613) +zone = ('paz029', 0.0032444881845030038) + +[15005] +centroid = (0.70934601720044854, -1.3995129952231669) +station = ('kpit', 0.0028480069011214831) +zone = ('paz020', 0.0022683007923213765) + +[15006] +centroid = (0.7091899324054427, -1.394114709300041) +station = ('kbtp', 0.0027867688187951738) +zone = ('paz021', 0.0031914996822895335) + +[15007] +centroid = (0.70951531413789204, -1.3950709751972086) +station = ('kbtp', 0.0023009318405020946) +zone = ('paz021', 0.0032681532357025879) + +[15009] +centroid = (0.71031266780666558, -1.4026359826669303) +station = ('kbvi', 0.0012855023958294419) +zone = ('paz020', 0.00034372331336733126) + +[15010] +centroid = (0.7115861298420908, -1.402398181556346) +station = ('kbvi', 0.00064533319998158803) +zone = ('paz020', 0.0015463206246390223) + +[15012] +centroid = (0.70084453586727669, -1.392998955215826) +station = ('kagc', 0.0036660378452194422) +zone = ('paz075', 0.0036533029609834081) + +[15014] +centroid = (0.70874455928691882, -1.3917330155494769) +station = ('kbtp', 0.0041288660642557293) +zone = ('paz021', 0.0040134271584893865) + +[15015] +centroid = (0.70925377654948063, -1.3976788810721237) +station = ('kbtp', 0.0030836889243173551) +zone = ('paz021', 0.0032246732909261486) + +[15017] +centroid = (0.70405908328359978, -1.3985012104024934) +station = ('kpit', 0.0028711102209136924) +zone = ('paz021', 0.0029835570819625483) + +[15018] +centroid = (0.70277226947939686, -1.392721552584514) +station = ('kagc', 0.0021654412583103559) +zone = ('paz073', 0.0032618161850352912) + +[15019] +centroid = (0.7052347370677432, -1.4019980997319115) +station = ('kpit', 0.0018375095886888875) +zone = ('wvz001', 0.00382013838286346) + +[15020] +centroid = (0.70220549125810428, -1.3953959031440524) +station = ('kagc', 0.0020835296619024228) +zone = ('paz029', 0.0040442327304169067) + +[15021] +centroid = (0.70491343940574358, -1.4039695014819165) +station = ('kpit', 0.0032225534171269176) +zone = ('wvz002', 0.0026966817183205101) + +[15022] +centroid = (0.70031175665981282, -1.3952045626981564) +station = ('kagc', 0.0039401864975625823) +zone = ('paz075', 0.0038067627339181333) + +[15024] +centroid = (0.70834135332312298, -1.3935985456270561) +station = ('kbtp', 0.0037192858289481863) +zone = ('paz021', 0.0026954915523083392) + +[15025] +centroid = (0.7033260449977623, -1.3949238613945578) +station = ('kagc', 0.00091849511190811631) +zone = ('paz021', 0.0030854919291334881) + +[15026] +centroid = (0.70694545644067042, -1.4024409246697274) +station = ('kpit', 0.0016448821346170713) +zone = ('wvz001', 0.0029324137327550693) + +[15027] +centroid = (0.70976170226839608, -1.4004556650054616) +station = ('kbvi', 0.0027448661801967567) +zone = ('paz020', 0.001470759753387072) + +[15028] +centroid = (0.70356513765199291, -1.3925905307175668) +station = ('kagc', 0.001820969863787803) +zone = ('paz021', 0.003747674670871514) + +[15030] +centroid = (0.70845802858361895, -1.3924673628322537) +station = ('kbtp', 0.004013188409321914) +zone = ('paz021', 0.0033978402154640893) + +[15031] +centroid = (0.70420942594536662, -1.3990756157126172) +station = ('kpit', 0.0025457655761385741) +zone = ('paz029', 0.0030048210223966032) + +[15033] +centroid = (0.70125765530122375, -1.393902128197148) +station = ('kagc', 0.0030619136154124431) +zone = ('paz075', 0.0042117882788092996) + +[15034] +centroid = (0.70425459506640831, -1.394354046300367) +station = ('kagc', 0.0003469820970824782) +zone = ('paz021', 0.0023853602344455363) + +[15035] +centroid = (0.70484811173184148, -1.3929019149094151) +station = ('kagc', 0.0015749771730590822) +zone = ('paz021', 0.0027349968837705836) + +[15037] +centroid = (0.70262965862621651, -1.3936937533377525) +station = ('kagc', 0.0018214446424033286) +zone = ('paz021', 0.0040607851328879844) + +[15038] +centroid = (0.70250914364136618, -1.3949643181266191) +station = ('kagc', 0.0017352594302221635) +zone = ('paz021', 0.003875931133576736) + +[15042] +centroid = (0.71017997042363645, -1.3998382373292761) +station = ('kbvi', 0.0029051246025305387) +zone = ('paz020', 0.0019172139596921253) + +[15043] +centroid = (0.70776059501452193, -1.4047780950710729) +station = ('kpit', 0.0035816122568565903) +zone = ('wvz001', 0.0012585831230769212) + +[15044] +centroid = (0.70926665707936032, -1.3953541548683446) +station = ('kbtp', 0.0025369410779386985) +zone = ('paz021', 0.0029856817463442993) + +[15045] +centroid = (0.70381822784682468, -1.3942734644488024) +station = ('kagc', 0.00058719501896439558) +zone = ('paz021', 0.0027981437812882892) + +[15046] +centroid = (0.7078663270606077, -1.4002423159576978) +station = ('kpit', 0.0013008123131746081) +zone = ('paz020', 0.0027034408337773207) + +[15047] +centroid = (0.70369800956794726, -1.3929150572386826) +station = ('kagc', 0.0015421922094243699) +zone = ('paz021', 0.0034833037321904876) + +[15049] +centroid = (0.70783770366087506, -1.3928700277439809) +station = ('kagc', 0.0038881550143656887) +zone = ('paz021', 0.0027844285319159391) + +[15050] +centroid = (0.7079695109259857, -1.4038471539013517) +station = ('kpit', 0.0030149280119178188) +zone = ('wvz001', 0.0019910485708311654) + +[15051] +centroid = (0.70795095807603692, -1.3939405952538619) +station = ('kagc', 0.0037689739391621371) +zone = ('paz021', 0.0022315430900299318) + +[15052] +centroid = (0.70962575857295818, -1.4037817040544021) +station = ('kbvi', 0.0019302038340902022) +zone = ('paz020', 0.001155295330750483) + +[15053] +centroid = (0.70478142270112265, -1.4025444750542484) +station = ('kpit', 0.0024527979142360701) +zone = ('paz029', 0.0036597317772893035) + +[15054] +centroid = (0.70445637258123139, -1.4033788122498718) +station = ('kpit', 0.003134183695941292) +zone = ('wvz002', 0.0027320318322198119) + +[15055] +centroid = (0.70347752212354275, -1.3984191624743569) +station = ('kpit', 0.0034173855802025763) +zone = ('paz029', 0.0026307914415959325) + +[15056] +centroid = (0.70797343791680267, -1.4000335745791592) +station = ('kpit', 0.0014246287816203776) +zone = ('paz020', 0.0027181883260754174) + +[15057] +centroid = (0.70439142887976469, -1.4005203294542479) +station = ('kpit', 0.0021805581627797545) +zone = ('paz029', 0.0029546283327707987) + +[15059] +centroid = (0.70996361940955932, -1.4047378303252296) +station = ('kbvi', 0.0019182623385331004) +zone = ('paz020', 0.0018049969553855043) + +[15060] +centroid = (0.70453442370538055, -1.401361979579437) +station = ('kpit', 0.0021779430182839723) +zone = ('paz029', 0.0031518171010388226) + +[15061] +centroid = (0.70964919834481244, -1.4018432366673819) +station = ('kbvi', 0.0021448986164297511) +zone = ('paz020', 0.00055345710988593687) + +[15062] +centroid = (0.70072850637860418, -1.3941373462204392) +station = ('kagc', 0.0035490602113969968) +zone = ('paz075', 0.0037735721597652477) + +[15063] +centroid = (0.70146817691559937, -1.3949103525461477) +station = ('kagc', 0.0027732555102884795) +zone = ('paz029', 0.0043428761961767249) + +[15064] +centroid = (0.70435098960099585, -1.3988801388363938) +station = ('kpit', 0.0024780912912541701) +zone = ('paz021', 0.002979952188491934) + +[15065] +centroid = (0.70937266837812651, -1.3914702387772966) +station = ('kbtp', 0.003839190785014691) +zone = ('paz022', 0.0045329548560605493) + +[15066] +centroid = (0.7111706018537759, -1.4007339403013994) +station = ('kbvi', 0.0019323781727266242) +zone = ('paz020', 0.0016723709377519762) + +[15067] +centroid = (0.70174877349944242, -1.3956085540601153) +station = ('kagc', 0.0025651686348319163) +zone = ('paz029', 0.003821665626632503) + +[15068] +centroid = (0.70786932902692112, -1.3914825782551081) +station = ('kagc', 0.0044244875456455951) +zone = ('paz021', 0.0037254701016983137) + +[15071] +centroid = (0.70532416773861539, -1.3995411648372942) +station = ('kpit', 0.0013825656150709281) +zone = ('paz021', 0.0029173510197348014) + +[15072] +centroid = (0.70056198451467133, -1.3937558870591233) +station = ('kagc', 0.0037651685445730804) +zone = ('paz075', 0.0035154977985618562) + +[15074] +centroid = (0.71094269676005051, -1.3998998649051639) +station = ('kbvi', 0.0025972188297951047) +zone = ('paz020', 0.0020717247958545897) + +[15075] +centroid = (0.70835997598624179, -1.3932424810063568) +station = ('kbtp', 0.0038093641988451569) +zone = ('paz021', 0.0028941550767058225) + +[15076] +centroid = (0.70873188819654931, -1.3933778138365562) +station = ('kbtp', 0.0034298204854908295) +zone = ('paz021', 0.0031023757930743342) + +[15077] +centroid = (0.70903976427660109, -1.4035201490126981) +station = ('kbvi', 0.0024815960840257113) +zone = ('paz020', 0.0013324926670312495) + +[15078] +centroid = (0.70434358940496744, -1.402982517789914) +station = ('kpit', 0.0030009430153784687) +zone = ('wvz002', 0.0029284110789963053) + +[15081] +centroid = (0.70816643642548815, -1.4003836178139391) +station = ('kpit', 0.0015993899594219318) +zone = ('paz020', 0.0024000160778365315) + +[15082] +centroid = (0.7047262702967596, -1.3999794868256401) +station = ('kpit', 0.0018610620919366253) +zone = ('paz029', 0.0033222977054834578) + +[15083] +centroid = (0.70273909077031649, -1.3925240685796509) +station = ('kagc', 0.002299970446209026) +zone = ('paz073', 0.0031406258681649876) + +[15084] +centroid = (0.70910266594284299, -1.3928297106382601) +station = ('kbtp', 0.0033261616702586474) +zone = ('paz021', 0.0036532573152817196) + +[15085] +centroid = (0.70486406404120472, -1.3914159241309747) +station = ('kagc', 0.0026593353492239996) +zone = ('paz073', 0.0020882559167317515) + +[15086] +centroid = (0.7099118529439451, -1.3981198036010549) +station = ('kbtp', 0.0028027009679334153) +zone = ('paz021', 0.0039622425617653672) + +[15087] +centroid = (0.70143948370269649, -1.3937051328844754) +station = ('kagc', 0.0029247600816509748) +zone = ('paz075', 0.0043455962098954718) + +[15088] +centroid = (0.70288156199715679, -1.3944514007660431) +station = ('kagc', 0.0013858766517505579) +zone = ('paz021', 0.0036136370398781727) + +[15089] +centroid = (0.70206439884137306, -1.3918789250749437) +station = ('kagc', 0.0031193320786054254) +zone = ('paz073', 0.0031144156977511829) + +[15090] +centroid = (0.70905548969316157, -1.3974421097057981) +station = ('kbtp', 0.0031574711837134375) +zone = ('paz021', 0.002971169137307769) + +[15101] +centroid = (0.70826033513924547, -1.3954822096755635) +station = ('kbtp', 0.0035437904416486302) +zone = ('paz021', 0.0019767617974124998) + +[15102] +centroid = (0.70374029889572309, -1.3969012496238975) +station = ('kagc', 0.0016714350133353291) +zone = ('paz021', 0.0026765929450453451) + +[15104] +centroid = (0.70518078894056413, -1.393865406469686) +station = ('kagc', 0.0011836767956103689) +zone = ('paz021', 0.0019405470708974927) + +[15106] +centroid = (0.70528969748588854, -1.3982566548677038) +station = ('kpit', 0.0020337829107175652) +zone = ('paz021', 0.002042132000564962) + +[15108] +centroid = (0.70686658501177291, -1.3997855109325732) +station = ('kpit', 0.00051442840797263239) +zone = ('paz021', 0.002980124471536011) + +[15110] +centroid = (0.7046498248755223, -1.3936482351508603) +station = ('kagc', 0.00097462792058147687) +zone = ('paz021', 0.002408389918954605) + +[15112] +centroid = (0.70519126091607598, -1.3934308369392319) +station = ('kagc', 0.0014164770815982422) +zone = ('paz021', 0.0022121628656051151) + +[15116] +centroid = (0.7073135114733311, -1.3950805046949246) +station = ('kagc', 0.0030801000128246924) +zone = ('paz021', 0.0011924409044315695) + +[15120] +centroid = (0.7050409706141868, -1.3946491640235865) +station = ('kagc', 0.00080982030238059837) +zone = ('paz021', 0.0016057582596847289) + +[15122] +centroid = (0.70445860660267379, -1.3944899550892196) +station = ('kagc', 0.00032669344008362674) +zone = ('paz021', 0.0021570045496733877) + +[15126] +centroid = (0.70620248723138901, -1.4012280255593466) +station = ('kpit', 0.00077060888489212853) +zone = ('paz020', 0.0039327126548335803) + +[15129] +centroid = (0.70324984392262013, -1.3961942167439148) +station = ('kagc', 0.0014479526818404792) +zone = ('paz021', 0.0030703028015635395) + +[15131] +centroid = (0.70404468431727085, -1.3927041865584566) +station = ('kagc', 0.0016160782097081967) +zone = ('paz021', 0.0033470540671212837) + +[15132] +centroid = (0.70406175363735546, -1.3935194298520632) +station = ('kagc', 0.00099892623845726307) +zone = ('paz021', 0.0029079238866978161) + +[15133] +centroid = (0.70382803659722093, -1.3938968747560994) +station = ('kagc', 0.00080829670979562995) +zone = ('paz021', 0.0029306855330933491) + +[15135] +centroid = (0.70355681243146095, -1.3929977683919346) +station = ('kagc', 0.00154065127044843) +zone = ('paz021', 0.0035506052973746632) + +[15136] +centroid = (0.70625076303849921, -1.3980768859547483) +station = ('kpit', 0.0017473179034404353) +zone = ('paz021', 0.0016305101529665552) + +[15137] +centroid = (0.7046895311160053, -1.3929257212004122) +station = ('kagc', 0.0015036092850640721) +zone = ('paz021', 0.0028084802873288607) + +[15139] +centroid = (0.70723703114550873, -1.393404726813622) +station = ('kagc', 0.0031815761625925733) +zone = ('paz021', 0.0021343849373589713) + +[15140] +centroid = (0.70524878696822169, -1.3923598680036231) +station = ('kagc', 0.0021207625115988258) +zone = ('paz021', 0.0029222479210294508) + +[15142] +centroid = (0.70479988828460882, -1.3983347932583157) +station = ('kpit', 0.0023332875421089192) +zone = ('paz021', 0.0023724502580490503) + +[15143] +centroid = (0.70804749223696484, -1.3988257020170241) +station = ('kpit', 0.0018729960601918038) +zone = ('paz021', 0.0027988834383549255) + +[15144] +centroid = (0.70769696030999418, -1.3923879328979953) +station = ('kagc', 0.003916940037621725) +zone = ('paz021', 0.0030310691974233099) + +[15145] +centroid = (0.70537965175553641, -1.3931931056418179) +station = ('kagc', 0.0016771997330696667) +zone = ('paz021', 0.0022864964699584704) + +[15146] +centroid = (0.70557252809117421, -1.3920983129619193) +station = ('kagc', 0.0024571045332808209) +zone = ('paz021', 0.0030125547423808549) + +[15147] +centroid = (0.70681094391521926, -1.3933097809023136) +station = ('kagc', 0.0028125536930932193) +zone = ('paz021', 0.0020579003765842387) + +[15148] +centroid = (0.70499868128641097, -1.3926873964910524) +station = ('kagc', 0.0017853810774652111) +zone = ('paz021', 0.002800273568763465) + +[15201] +centroid = (0.70641171730211805, -1.3954076317566257) +station = ('kagc', 0.0022186936277151202) +zone = ('paz021', 0.00041316586656550355) + +[15202] +centroid = (0.7069484933135689, -1.3974472584270914) +station = ('kpit', 0.0022294819978198243) +zone = ('paz021', 0.0013134662175788077) + +[15203] +centroid = (0.70557073040204465, -1.3958380648567525) +station = ('kagc', 0.0015441209513487749) +zone = ('paz021', 0.00074674760459314136) + +[15204] +centroid = (0.70610553419144084, -1.3973215947209479) +station = ('kpit', 0.002339131567109581) +zone = ('paz021', 0.0010751118720275161) + +[15205] +centroid = (0.7057778137177938, -1.3979923072991967) +station = ('kpit', 0.0019501028893697805) +zone = ('paz021', 0.0016544870842029444) + +[15206] +centroid = (0.70637440216271041, -1.3947476878598617) +station = ('kagc', 0.0021345588853313264) +zone = ('paz021', 0.00090547838698137742) + +[15207] +centroid = (0.70517921814423734, -1.395021983805105) +station = ('kagc', 0.0009527867270265523) +zone = ('paz021', 0.0013306005671499524) + +[15208] +centroid = (0.70604137588813742, -1.3945093107906241) +station = ('kagc', 0.0018154209256199527) +zone = ('paz021', 0.0011186258490055133) + +[15209] +centroid = (0.70685435025371646, -1.3957501526223295) +station = ('kagc', 0.0027104125078594461) +zone = ('paz021', 0.0005585837957069145) + +[15210] +centroid = (0.70522880294828638, -1.3959968025522214) +station = ('kagc', 0.0013400887047493157) +zone = ('paz021', 0.001086011349561781) + +[15211] +centroid = (0.70564324883246499, -1.3965344163217133) +station = ('kagc', 0.0019222944782331427) +zone = ('paz021', 0.00081087367398762161) + +[15212] +centroid = (0.70610679082850214, -1.3960898111480602) +station = ('kagc', 0.0021059269747222714) +zone = ('paz021', 0.00023807075263260116) + +[15213] +centroid = (0.70588171316816506, -1.3954823143953186) +station = ('kagc', 0.0017196028270466848) +zone = ('paz021', 0.00055271519351794316) + +[15214] +centroid = (0.70662372244635785, -1.3965069273859945) +station = ('kagc', 0.0027113760568806405) +zone = ('paz021', 0.00053397136362145386) + +[15215] +centroid = (0.70692280206697955, -1.3947488048705829) +station = ('kagc', 0.002682839724927479) +zone = ('paz021', 0.0010886603138410464) + +[15216] +centroid = (0.70515888505845159, -1.3968716662930762) +station = ('kagc', 0.0018201486720323947) +zone = ('paz021', 0.0013571301307886462) + +[15217] +centroid = (0.7056509457344663, -1.3948686915369026) +station = ('kagc', 0.0014113259901724685) +zone = ('paz021', 0.0010479271946437275) + +[15218] +centroid = (0.70552509004210495, -1.3943401011196435) +station = ('kagc', 0.0013334491289240002) +zone = ('paz021', 0.0014476732049574993) + +[15219] +centroid = (0.70585005289553382, -1.3959631002443655) +station = ('kagc', 0.0018340460562518007) +zone = ('paz021', 0.00046423433476222765) + +[15220] +centroid = (0.70545342682301815, -1.3970964472474405) +station = ('kagc', 0.0021230908993456784) +zone = ('paz021', 0.0012333544702291272) + +[15221] +centroid = (0.70573768859829045, -1.3938944662017319) +station = ('kagc', 0.0016513993118635289) +zone = ('paz021', 0.0016563700354935156) + +[15222] +centroid = (0.70594517333976747, -1.3961492919689682) +station = ('kagc', 0.0019870338010806268) +zone = ('paz021', 0.00040299484886751263) + +[15223] +centroid = (0.70694877256624933, -1.3954295879986158) +station = ('kagc', 0.0027493149389811906) +zone = ('paz021', 0.00074236518454371444) + +[15224] +centroid = (0.70623411259743518, -1.3953000671148255) +station = ('kagc', 0.0020285266195085544) +zone = ('paz021', 0.00048978711517982476) + +[15225] +centroid = (0.70697481287868902, -1.3982503193225191) +station = ('kpit', 0.0016374367329230184) +zone = ('paz021', 0.0018806824956259544) + +[15226] +centroid = (0.70502706034004836, -1.3965069622925794) +station = ('kagc', 0.0015140549042051137) +zone = ('paz021', 0.0013583324060706837) + +[15227] +centroid = (0.70468895515735208, -1.3957497861031869) +station = ('kagc', 0.00084566313786043528) +zone = ('paz021', 0.001630973989484761) + +[15228] +centroid = (0.7046010778295142, -1.3970337026608313) +station = ('kagc', 0.0017331781920265062) +zone = ('paz021', 0.001905974483505651) + +[15229] +centroid = (0.70721339938743666, -1.3969100111767425) +station = ('kpit', 0.0026838372996790291) +zone = ('paz021', 0.0011656436305883336) + +[15232] +centroid = (0.70602961236897899, -1.3950755130532637) +station = ('kagc', 0.0018007364568158059) +zone = ('paz021', 0.00071322067042610729) + +[15233] +centroid = (0.70617526009505793, -1.3968728182103824) +station = ('kagc', 0.0024927344907871561) +zone = ('paz021', 0.00072661394047317588) + +[15234] +centroid = (0.70455683373297606, -1.3965741225621962) +station = ('kagc', 0.001381786497378876) +zone = ('paz021', 0.0018230472043547969) + +[15235] +centroid = (0.70615674215169422, -1.3931640459097721) +station = ('kagc', 0.0022894295049189274) +zone = ('paz021', 0.0021142254053414982) + +[15236] +centroid = (0.70419507933891523, -1.3958354643161672) +station = ('kagc', 0.00078362618984083809) +zone = ('paz021', 0.0021200877827275053) + +[15237] +centroid = (0.7077241525397403, -1.397022846712884) +station = ('kpit', 0.0027715112356257714) +zone = ('paz021', 0.0016348732450479232) + +[15238] +centroid = (0.70750762699273795, -1.3941593024624295) +station = ('kagc', 0.0033044708485760223) +zone = ('paz021', 0.0018024429730146049) + +[15239] +centroid = (0.70657340460402285, -1.3916919130455925) +station = ('kagc', 0.0033279114420316112) +zone = ('paz021', 0.0032382454094725026) + +[15241] +centroid = (0.70395305453154122, -1.3976817783186819) +station = ('kagc', 0.0022084190528956307) +zone = ('paz021', 0.0027096205399827372) + +[15243] +centroid = (0.70468560412518833, -1.3975265312817169) +station = ('kagc', 0.0021180078717524557) +zone = ('paz021', 0.0020294149589553164) + +[15260] +centroid = (0.70587947914672244, -1.3954475648899114) +station = ('kagc', 0.0017097555101601239) +zone = ('paz021', 0.00057127520013591185) + +[15290] +centroid = (0.70611359761258496, -1.3966001454213435) +station = ('kagc', 0.0023172157195875684) +zone = ('paz021', 0.00054402482915267604) + +[15301] +centroid = (0.70081067647978801, -1.4006871829307384) +station = ('kafj', 0.00053162490267701513) +zone = ('paz029', 0.00063059783318247906) + +[15310] +centroid = (0.69451405213736805, -1.4046793268887028) +station = ('kafj', 0.0065128292017171477) +zone = ('wvz004', 0.0027023312345431931) + +[15311] +centroid = (0.69893305127049254, -1.3994736380485342) +station = ('kafj', 0.002022247205835393) +zone = ('paz029', 0.0026471300723090057) + +[15312] +centroid = (0.70252169255868813, -1.4039551025155876) +station = ('kafj', 0.0029423497045226875) +zone = ('wvz002', 0.0018481095576400874) + +[15313] +centroid = (0.69931782655738717, -1.3966771318946489) +station = ('kafj', 0.0036490724555551133) +zone = ('paz029', 0.0036697959666278975) + +[15314] +centroid = (0.70068522221315466, -1.3965567739894313) +station = ('kafj', 0.0035633216390641357) +zone = ('paz029', 0.0031764097761960448) + +[15315] +centroid = (0.69391304800944376, -1.3959611803821883) +station = ('kmgw', 0.0020875623247179381) +zone = ('wvz022', 0.0023925904951286252) + +[15316] +centroid = (0.69331928699791534, -1.4006688220670076) +station = ('kmgw', 0.0046920174390886575) +zone = ('paz031', 0.0022951268535449433) + +[15317] +centroid = (0.70298280854706507, -1.3993186877175423) +station = ('kafj', 0.0029075302222546246) +zone = ('paz029', 0.0018270907657847628) + +[15320] +centroid = (0.69597154168912345, -1.3960934937927818) +station = ('kmgw', 0.004070083934689884) +zone = ('paz031', 0.0031409644585273289) + +[15321] +centroid = (0.70377534510710316, -1.3995436606581244) +station = ('kpit', 0.002856536302050672) +zone = ('paz029', 0.0024719078465779221) + +[15322] +centroid = (0.69781131070694324, -1.3971947790974979) +station = ('kafj', 0.0040554907696806614) +zone = ('paz031', 0.0031825928690130531) + +[15323] +centroid = (0.70009085033638796, -1.4033434867858112) +station = ('kafj', 0.0016735015786664392) +zone = ('paz029', 0.0024950872411298093) + +[15324] +centroid = (0.69989059125801412, -1.3974103447134116) +station = ('kafj', 0.0029596196492429681) +zone = ('paz029', 0.0028844242891883161) + +[15325] +centroid = (0.6972490703417058, -1.3956241573036283) +station = ('kmgw', 0.0052634171555555644) +zone = ('paz075', 0.0025633081148000196) + +[15327] +centroid = (0.69367885973041121, -1.3955801750064778) +station = ('kmgw', 0.0017589279183901805) +zone = ('wvz022', 0.0023068970518664023) + +[15329] +centroid = (0.69861541879992206, -1.4011490494106937) +station = ('kafj', 0.001843948841749197) +zone = ('paz029', 0.0028535390168901867) + +[15330] +centroid = (0.70126226297044891, -1.3978337266833605) +station = ('kafj', 0.0027015397472493589) +zone = ('paz029', 0.0021170239195360406) + +[15331] +centroid = (0.69997040516470788, -1.3966573398609312) +station = ('kafj', 0.0035143919609934627) +zone = ('paz029', 0.003348561331785405) + +[15332] +centroid = (0.70232371986163433, -1.3961499726473765) +station = ('kagc', 0.0021724747442621829) +zone = ('paz029', 0.003508399819867405) + +[15333] +centroid = (0.69866903531454327, -1.3964939595896522) +station = ('kafj', 0.004026808092945088) +zone = ('paz031', 0.0041731446974654024) + +[15334] +centroid = (0.69478611406116897, -1.3957030636391108) +station = ('kmgw', 0.0028473440813948188) +zone = ('wvz022', 0.0032812135943896727) + +[15337] +centroid = (0.69729677019016278, -1.4028640273869959) +station = ('kafj', 0.0034065823376015301) +zone = ('paz031', 0.002696302565773535) + +[15338] +centroid = (0.69437686925816133, -1.3961153104084321) +station = ('kmgw', 0.0025593352156275855) +zone = ('wvz022', 0.0027968531357576909) + +[15340] +centroid = (0.70307492702498531, -1.401804664890913) +station = ('kafj', 0.0026554429209371495) +zone = ('paz029', 0.0018798812853051941) + +[15341] +centroid = (0.6950634119727257, -1.4022649431212488) +station = ('kafj', 0.0054557878106703634) +zone = ('paz031', 0.0017014110878762277) + +[15342] +centroid = (0.70239433588317013, -1.4001238255547799) +station = ('kafj', 0.0021054369090569526) +zone = ('paz029', 0.0010224644100565239) + +[15344] +centroid = (0.69666120854304914, -1.3973354526352086) +station = ('kafj', 0.0048185103865289701) +zone = ('paz031', 0.0024177811672028158) + +[15345] +centroid = (0.69852654663441049, -1.3980968176148061) +station = ('kafj', 0.0030663672145523411) +zone = ('paz031', 0.0033420447133535834) + +[15346] +centroid = (0.6970048813260592, -1.3975784024670863) +station = ('kafj', 0.0044333649784129335) +zone = ('paz031', 0.0024360298461254038) + +[15347] +centroid = (0.70197695784584824, -1.4001223943847931) +station = ('kafj', 0.0017301531900795859) +zone = ('paz029', 0.00064932729881508671) + +[15348] +centroid = (0.69790297539925794, -1.396183762221695) +station = ('kafj', 0.0046176051610153706) +zone = ('paz031', 0.0038296745221849241) + +[15349] +centroid = (0.69398553153327913, -1.3979031209744197) +station = ('kmgw', 0.0030850906798177932) +zone = ('paz031', 0.0023519246970867794) + +[15350] +centroid = (0.7032508562135863, -1.3997681623598084) +station = ('kafj', 0.003000889666725477) +zone = ('paz029', 0.0019202698597545183) + +[15351] +centroid = (0.69611519973985503, -1.394942658590602) +station = ('kmgw', 0.0040934415173336357) +zone = ('paz075', 0.0023276619700601077) + +[15352] +centroid = (0.69380703671067767, -1.4029440681864924) +station = ('kafj', 0.0067835543871242986) +zone = ('paz031', 0.0027818726009864992) + +[15353] +centroid = (0.69747063989024649, -1.40169057271771) +station = ('kafj', 0.0030108673684894663) +zone = ('paz031', 0.0022280337077556136) + +[15357] +centroid = (0.69711256814090727, -1.3959214741417054) +station = ('kmgw', 0.0051607995105874705) +zone = ('paz031', 0.0035904575767742529) + +[15358] +centroid = (0.69909840376382648, -1.396315883646071) +station = ('kafj', 0.0039823440677231791) +zone = ('paz029', 0.0040223025865259131) + +[15359] +centroid = (0.69597600973200857, -1.4010764262605184) +station = ('kafj', 0.0044839381651886178) +zone = ('paz031', 0.00081139694956875613) + +[15360] +centroid = (0.69961369477218527, -1.3977011863799642) +station = ('kafj', 0.0028124372163229245) +zone = ('paz029', 0.0028672601265501987) + +[15361] +centroid = (0.70387404347630333, -1.4007735243688346) +station = ('kpit', 0.0027139575130487067) +zone = ('paz029', 0.0024404815105262398) + +[15362] +centroid = (0.69416046588420643, -1.399997114651085) +station = ('kmgw', 0.0045274174390691792) +zone = ('paz031', 0.0014246526492606255) + +[15363] +centroid = (0.70252642240096097, -1.3997200261790383) +station = ('kafj', 0.0023596269366595716) +zone = ('paz029', 0.0012777869920162757) + +[15364] +centroid = (0.69719484296184631, -1.4015828335429845) +station = ('kafj', 0.0032765210477020998) +zone = ('paz031', 0.0019518206543526304) + +[15366] +centroid = (0.70091633871270376, -1.3957926339363231) +station = ('kagc', 0.0034077336748792228) +zone = ('paz029', 0.0037064454242739294) + +[15367] +centroid = (0.70277371810267608, -1.3972767048525865) +station = ('kagc', 0.0023858683025402951) +zone = ('paz029', 0.0028645251751010002) + +[15368] +centroid = (0.69837381287156841, -1.39607637211282) +station = ('kafj', 0.0044463524783138553) +zone = ('paz075', 0.0031243408378658329) + +[15370] +centroid = (0.69604803947023841, -1.3992513529150006) +station = ('kafj', 0.0046585601641187515) +zone = ('paz031', 0.000835909099673699) + +[15376] +centroid = (0.70003236435315364, -1.4046228131275231) +station = ('khlg', 0.0024949796707491342) +zone = ('wvz003', 0.0018798913705254708) + +[15377] +centroid = (0.69793044688168437, -1.4041009247745917) +station = ('kafj', 0.0033605462399395564) +zone = ('wvz003', 0.0029549202694576253) + +[15378] +centroid = (0.70299041818260377, -1.4010644707551421) +station = ('kafj', 0.0025340003809634476) +zone = ('paz029', 0.0015938284367253237) + +[15379] +centroid = (0.70237623681882699, -1.4036841226959229) +station = ('kafj', 0.0026931694593462416) +zone = ('paz029', 0.0025386528078433519) + +[15380] +centroid = (0.69582022164297552, -1.404416166144087) +station = ('kafj', 0.0052492146613342568) +zone = ('paz031', 0.0032806634865048599) + +[15401] +centroid = (0.69638508000209098, -1.3918243660825262) +station = ('kmgw', 0.0049283909345223002) +zone = ('paz075', 0.00091712667247533441) + +[15410] +centroid = (0.69658903917847903, -1.3945551082301968) +station = ('kmgw', 0.0045701564077444525) +zone = ('paz075', 0.0018592182601704459) + +[15411] +centroid = (0.69374359399236762, -1.3848645166243485) +station = ('k2g4', 0.002943732774161551) +zone = ('paz076', 0.0033507187027457717) + +[15412] +centroid = (0.6996810470280197, -1.3938064492475537) +station = ('kagc', 0.0046231214818833058) +zone = ('paz075', 0.0027127872184072952) + +[15413] +centroid = (0.69787525957073626, -1.3940142656015886) +station = ('kmgw', 0.0058839572809065051) +zone = ('paz075', 0.0014758823266280707) + +[15417] +centroid = (0.69828181656669586, -1.3948369090912236) +station = ('kafj', 0.0053397656957858992) +zone = ('paz075', 0.0022220650494756112) + +[15419] +centroid = (0.6989512201480057, -1.3944305440814819) +station = ('kagc', 0.0052970247724819603) +zone = ('paz075', 0.0023802323748055797) + +[15420] +centroid = (0.69743603001117938, -1.3939112039092583) +station = ('kmgw', 0.0054567413109290431) +zone = ('paz075', 0.0012663851550292332) + +[15421] +centroid = (0.69544124084919745, -1.3892331804618456) +station = ('kmgw', 0.0054829302415299848) +zone = ('paz076', 0.0013235227816662928) + +[15422] +centroid = (0.69780329964567656, -1.3929749743919035) +station = ('kmgw', 0.0059494308843430288) +zone = ('paz075', 0.00078017309925653019) + +[15423] +centroid = (0.6997008390617373, -1.3950856708695103) +station = ('kagc', 0.004544428546990352) +zone = ('paz075', 0.0032719786454417097) + +[15424] +centroid = (0.69498187019007263, -1.3850819497425622) +station = ('k2g4', 0.0041886197525185017) +zone = ('paz076', 0.0024349727758455298) + +[15425] +centroid = (0.69864676491328781, -1.3883729425801226) +station = ('klbe', 0.0048495356718136172) +zone = ('paz076', 0.0024777975633059235) + +[15427] +centroid = (0.69935250624962431, -1.3958237007970087) +station = ('kafj', 0.0042648330415123049) +zone = ('paz075', 0.0034435175028699107) + +[15428] +centroid = (0.6996024373985098, -1.390713708359727) +station = ('klbe', 0.0051198276823876355) +zone = ('paz075', 0.0026561041037014084) + +[15429] +centroid = (0.6981953878621372, -1.3951830427884793) +station = ('kafj', 0.0051366897281838846) +zone = ('paz075', 0.0024235454227861004) + +[15430] +centroid = (0.69881848785839151, -1.3902294842120537) +station = ('klbe', 0.0054439703612876597) +zone = ('paz075', 0.0022323491600261341) + +[15431] +centroid = (0.69725643563114925, -1.3892181706302784) +station = ('klbe', 0.0063830924441949221) +zone = ('paz076', 0.0014993031874761659) + +[15432] +centroid = (0.70012301675450228, -1.3938247228448222) +station = ('kagc', 0.0041853387890568626) +zone = ('paz075', 0.0031226571428548526) + +[15433] +centroid = (0.69782946213116404, -1.3953686061945514) +station = ('kafj', 0.0051858123681074661) +zone = ('paz075', 0.0024408085241361213) + +[15434] +centroid = (0.69956054949646207, -1.3942979688715003) +station = ('kagc', 0.0046960429075617949) +zone = ('paz075', 0.0027938195076026877) + +[15435] +centroid = (0.69714932477495428, -1.3936501201064524) +station = ('kmgw', 0.0052030224444734336) +zone = ('paz075', 0.0010532887487869453) + +[15436] +centroid = (0.69495192034010844, -1.3914598715215398) +station = ('kmgw', 0.003900202948019195) +zone = ('paz075', 0.0023662763578657557) + +[15437] +centroid = (0.69429553691501833, -1.3894938802922157) +station = ('k2g4', 0.0050568475806126809) +zone = ('paz076', 0.0022996356669042085) + +[15438] +centroid = (0.69940940398323925, -1.3937810198003522) +station = ('kagc', 0.0048943125720040132) +zone = ('paz075', 0.0024613211358904706) + +[15440] +centroid = (0.69351125576234218, -1.3895777259094817) +station = ('k2g4', 0.0046033522778418457) +zone = ('paz076', 0.0030114256767527665) + +[15442] +centroid = (0.69848602008917926, -1.3934677157463267) +station = ('kagc', 0.0058448500358534595) +zone = ('paz075', 0.0015484930531667403) + +[15443] +centroid = (0.69672964290301975, -1.3941820441025827) +station = ('kmgw', 0.0047311857900086494) +zone = ('paz075', 0.0015424214734760476) + +[15444] +centroid = (0.69834072142895065, -1.394671731130815) +station = ('kafj', 0.0054320774009282537) +zone = ('paz075', 0.0021411652516790643) + +[15445] +centroid = (0.69596909822817066, -1.3904658890592365) +station = ('kmgw', 0.0051688351853512544) +zone = ('paz075', 0.0018800202874721074) + +[15446] +centroid = (0.69867243870658469, -1.3858436463347172) +station = ('klbe', 0.004404542462888004) +zone = ('paz076', 0.0028973690391926156) + +[15447] +centroid = (0.69715120973054645, -1.3951619766644074) +station = ('kmgw', 0.0051353289039022176) +zone = ('paz075', 0.0022105404667546176) + +[15448] +centroid = (0.70050498206130118, -1.391594855285889) +station = ('kagc', 0.0044690005651201068) +zone = ('paz075', 0.0033139681391527167) + +[15449] +centroid = (0.69750912440025292, -1.3924822330374804) +station = ('kmgw', 0.0057699050038603388) +zone = ('paz075', 0.00031657830821469913) + +[15450] +centroid = (0.69815154519132694, -1.3958130019286938) +station = ('kafj', 0.0047300150181764263) +zone = ('paz075', 0.0028586466561335102) + +[15451] +centroid = (0.69354378869959943, -1.3934020564598666) +station = ('kmgw', 0.0018667118174138355) +zone = ('wvz022', 0.0033861995703781764) + +[15454] +centroid = (0.69574323516967018, -1.3940247201238081) +station = ('kmgw', 0.0037687233572966609) +zone = ('paz075', 0.0020022652951219018) + +[15455] +centroid = (0.69818929666304763, -1.3900199399820594) +station = ('klbe', 0.0058597068300289806) +zone = ('paz075', 0.0019788385362113541) + +[15456] +centroid = (0.69684726064131164, -1.3901897779715711) +station = ('kmgw', 0.0059892853014105133) +zone = ('paz076', 0.0019245473567521725) + +[15458] +centroid = (0.696214020282103, -1.3936658455230129) +station = ('kmgw', 0.0042820803830480808) +zone = ('paz075', 0.0014720093355784624) + +[15459] +centroid = (0.69406745728836772, -1.3869565206256667) +station = ('k2g4', 0.0036833606699445505) +zone = ('paz076', 0.0022389833071698572) + +[15460] +centroid = (0.69478007522195706, -1.3946431775442523) +station = ('kmgw', 0.0027599733647980622) +zone = ('paz075', 0.0030501534703871163) + +[15461] +centroid = (0.6953860011783719, -1.3945192591673607) +station = ('kmgw', 0.0033703215106954468) +zone = ('paz075', 0.0025220806285784938) + +[15462] +centroid = (0.69925386024030156, -1.3854197233127004) +station = ('klbe', 0.0038334755897347118) +zone = ('paz076', 0.003562715109088187) + +[15463] +centroid = (0.69753066176322254, -1.3945151750969109) +station = ('kmgw', 0.0055122353087935748) +zone = ('paz075', 0.0017385865489486952) + +[15464] +centroid = (0.69691237887570356, -1.3864232701793044) +station = ('klbe', 0.0061833351095902439) +zone = ('paz076', 0.0012869387051089422) + +[15466] +centroid = (0.69944151804147592, -1.3943445342559435) +station = ('kagc', 0.0048119229684436653) +zone = ('paz075', 0.0027160974497559068) + +[15467] +centroid = (0.69437648528572582, -1.3949675295324429) +station = ('kmgw', 0.0023565954835627072) +zone = ('wvz022', 0.0031470358403357366) + +[15468] +centroid = (0.69726221267097321, -1.3933430992377343) +station = ('kmgw', 0.0053588384561371934) +zone = ('paz075', 0.00081508446154906176) + +[15469] +centroid = (0.69830307467698516, -1.3861124619461096) +station = ('klbe', 0.0047800289826954792) +zone = ('paz076', 0.0024749837337079924) + +[15470] +centroid = (0.69581310069962743, -1.3880955748553954) +station = ('k2g4', 0.0056357932802894063) +zone = ('paz076', 0.00044347791107091707) + +[15472] +centroid = (0.69672449418172633, -1.3913215192717343) +station = ('kmgw', 0.005411619734121925) +zone = ('paz075', 0.00089398723879418772) + +[15473] +centroid = (0.69889659134241833, -1.3926111605093252) +station = ('kagc', 0.0056012464518626435) +zone = ('paz075', 0.0016829021117245554) + +[15474] +centroid = (0.69380588479337135, -1.3943774162590512) +station = ('kmgw', 0.0018134899885330277) +zone = ('wvz022', 0.0029717866749333277) + +[15475] +centroid = (0.69728781665110007, -1.3941261586599338) +station = ('kmgw', 0.0052908379201294948) +zone = ('paz075', 0.001415910597798508) + +[15476] +centroid = (0.69585806038115872, -1.3948778021555976) +station = ('kmgw', 0.003835377082811584) +zone = ('paz075', 0.0024205607939129215) + +[15477] +centroid = (0.69949660063266894, -1.3938891604008057) +station = ('kagc', 0.0047954709906037618) +zone = ('paz075', 0.0025772864558703335) + +[15478] +centroid = (0.69442221291212802, -1.3928540230747404) +station = ('kmgw', 0.0028314589191664637) +zone = ('paz075', 0.0028448979167966537) + +[15479] +centroid = (0.7007712843985705, -1.3911589942117883) +station = ('kagc', 0.0044491345771406118) +zone = ('paz075', 0.0036410939530239187) + +[15480] +centroid = (0.69787335716185162, -1.3923165314782961) +station = ('kmgw', 0.0061555677724066549) +zone = ('paz075', 0.00064109397615798942) + +[15482] +centroid = (0.69920486884819799, -1.3921805005163959) +station = ('kagc', 0.0054208743767451923) +zone = ('paz075', 0.0019735014928802014) + +[15483] +centroid = (0.69958067314273742, -1.3936614996531755) +station = ('kagc', 0.0047413460330928839) +zone = ('paz075', 0.0025750331613396487) + +[15484] +centroid = (0.6962587705241241, -1.3924878529976719) +station = ('kmgw', 0.0045960878739261775) +zone = ('paz075', 0.00098697395820309536) + +[15486] +centroid = (0.6985834967279031, -1.3912222623971733) +station = ('klbe', 0.0061171098459517088) +zone = ('paz075', 0.001575346182629033) + +[15489] +centroid = (0.69754493855650379, -1.3909585606004895) +station = ('kmgw', 0.0062641881805933818) +zone = ('paz075', 0.0010603094355826177) + +[15490] +centroid = (0.69939500501691032, -1.3867425607126647) +station = ('klbe', 0.0037528285927752219) +zone = ('paz076', 0.0032961573325367812) + +[15492] +centroid = (0.70019651256930371, -1.3921496256419279) +station = ('kagc', 0.0045248427476046503) +zone = ('paz075', 0.0029653514883165068) + +[15501] +centroid = (0.6988253295490594, -1.3810758955104594) +station = ('klbe', 0.0055733219162919234) +zone = ('paz033', 0.0017942452127744266) + +[15502] +centroid = (0.69885979980178625, -1.3830283429847878) +station = ('klbe', 0.0047161337442834239) +zone = ('paz074', 0.0034122313848539464) + +[15510] +centroid = (0.69756432916449351, -1.3795066350734062) +station = ('kjst', 0.0066885069833453568) +zone = ('paz033', 0.00017817884055150554) + +[15520] +centroid = (0.69998815516320056, -1.3798667139513854) +station = ('kjst', 0.0047584252211273501) +zone = ('paz033', 0.002375801883887431) + +[15521] +centroid = (0.70175493451170201, -1.372503571262949) +station = ('kjst', 0.003216539479759464) +zone = ('paz034', 0.0040291382429967276) + +[15522] +centroid = (0.69711461017613208, -1.3709279403741261) +station = ('kcbe', 0.0063704555856660084) +zone = ('paz034', 0.0013739364268864325) + +[15530] +centroid = (0.69709862296018388, -1.3774841300829026) +station = ('kcbe', 0.0060886824556101327) +zone = ('paz033', 0.0015006658234858346) + +[15531] +centroid = (0.70134198961068017, -1.3802429720315301) +station = ('kjst', 0.0040431999909127658) +zone = ('paz074', 0.0022102121818662213) + +[15532] +centroid = (0.69397842804322352, -1.3798712867140255) +station = ('kcbe', 0.0047740858644939339) +zone = ('mdz501', 0.0033186183786771154) + +[15533] +centroid = (0.69800764279450001, -1.3652716424276781) +station = ('kaoo', 0.0054998652517712259) +zone = ('paz035', 0.001903836298556233) + +[15534] +centroid = (0.69637455566670148, -1.3734219286087637) +station = ('kcbe', 0.0050445961963760102) +zone = ('paz034', 0.0032776969595298242) + +[15535] +centroid = (0.69500956856530172, -1.3691022212567852) +station = ('kcbe', 0.005569891176173244) +zone = ('paz034', 0.0032964286453293534) + +[15536] +centroid = (0.69733853591916295, -1.364909521514474) +station = ('kaoo', 0.0062152385078697104) +zone = ('paz035', 0.0013210210977314875) + +[15537] +centroid = (0.698138420315352, -1.3677594347434707) +station = ('kaoo', 0.0052719362750766633) +zone = ('paz034', 0.0016527617229321015) + +[15538] +centroid = (0.69575307882665138, -1.3759208561251839) +station = ('kcbe', 0.0044472079390696908) +zone = ('paz033', 0.0032152344614159592) + +[15539] +centroid = (0.70037286063692517, -1.3716783446860212) +station = ('kjst', 0.0046035113328031368) +zone = ('paz034', 0.0025191512280851387) + +[15540] +centroid = (0.69459634441159956, -1.3829861932833523) +station = ('k2g4', 0.0040289488915448536) +zone = ('paz033', 0.0041615512485307015) + +[15541] +centroid = (0.69889748146033681, -1.3783107878298173) +station = ('kjst', 0.0051046154382558733) +zone = ('paz033', 0.0014596823428840347) + +[15542] +centroid = (0.69596215181774779, -1.3800587874355672) +station = ('kcbe', 0.0061679772312164104) +zone = ('paz033', 0.0017859781664807835) + +[15544] +centroid = (0.70049903048855189, -1.3804408749154138) +station = ('kjst', 0.004689993334396598) +zone = ('paz074', 0.0025649364512722061) + +[15545] +centroid = (0.69468057400130079, -1.3744905937097596) +station = ('kcbe', 0.0032654555990613669) +zone = ('mdz502', 0.003654651369022351) + +[15546] +centroid = (0.70051623943497654, -1.3796476576769674) +station = ('kjst', 0.0042492417416262231) +zone = ('paz033', 0.0028765539380118674) + +[15547] +centroid = (0.70096168236667056, -1.3800616497755405) +station = ('kjst', 0.0041664545525541708) +zone = ('paz074', 0.002512297307984994) + +[15550] +centroid = (0.69775214404530062, -1.3726947895357977) +station = ('kjst', 0.0063947713324323825) +zone = ('paz034', 0.0021883158519837632) + +[15551] +centroid = (0.69583744804269276, -1.3837523055585152) +station = ('k2g4', 0.0050935885519290212) +zone = ('paz076', 0.0031467015691186788) + +[15552] +centroid = (0.69451485498882393, -1.3786532039757662) +station = ('kcbe', 0.0043759889948376107) +zone = ('paz033', 0.0031763879809819646) + +[15554] +centroid = (0.70027702460769814, -1.37220901204509) +station = ('kjst', 0.0044026336261259354) +zone = ('paz034', 0.002685268290973146) + +[15555] +centroid = (0.6997445246529147, -1.380245590025408) +station = ('kjst', 0.0051311575757924588) +zone = ('paz033', 0.0022134824449523798) + +[15557] +centroid = (0.69686918197671677, -1.3826214020163929) +station = ('k2g4', 0.006283507040230645) +zone = ('paz033', 0.0026607842193096952) + +[15558] +centroid = (0.69374080146556449, -1.3807362020781435) +station = ('k2g4', 0.0042614622015323842) +zone = ('mdz501', 0.0035425887202281412) + +[15559] +centroid = (0.6991832267654734, -1.3734181761508715) +station = ('kjst', 0.0048607451245746072) +zone = ('paz034', 0.0028428705297397737) + +[15560] +centroid = (0.69842069241527704, -1.3771893788788259) +station = ('kjst', 0.0053295786894889136) +zone = ('paz033', 0.0017932827612801199) + +[15561] +centroid = (0.6998002181093459, -1.3803402741373287) +station = ('kjst', 0.0051361921321687216) +zone = ('paz033', 0.0022902998305928267) + +[15562] +centroid = (0.69358569405493975, -1.3811585543038338) +station = ('k2g4', 0.0039207998699233469) +zone = ('mdz501', 0.0036707430661907076) + +[15563] +centroid = (0.69983470581536522, -1.3775695290432028) +station = ('kjst', 0.0040305502704954966) +zone = ('paz033', 0.0025551941919993155) + +[15564] +centroid = (0.69341918964429949, -1.3759787312431799) +station = ('kcbe', 0.002253217633251045) +zone = ('mdz501', 0.0025518366361904749) + +[15601] +centroid = (0.70362997663370452, -1.3881605534634474) +station = ('klbe', 0.0018896612516077177) +zone = ('paz073', 0.00073243716390246588) + +[15610] +centroid = (0.70069656685329262, -1.3860916401681334) +station = ('klbe', 0.0023912480972993911) +zone = ('paz074', 0.0029210625042645614) + +[15611] +centroid = (0.70348141420777477, -1.3902008259057361) +station = ('klbe', 0.0033874126266831305) +zone = ('paz073', 0.0012306808881154109) + +[15612] +centroid = (0.70052885816546839, -1.3892771453057031) +station = ('klbe', 0.003684846193090546) +zone = ('paz073', 0.0036324476172327736) + +[15613] +centroid = (0.70779368645713969, -1.3887415386648512) +station = ('klbe', 0.0052243213091086246) +zone = ('paz073', 0.0036483862908517554) + +[15615] +centroid = (0.70450752818160722, -1.3916235484987918) +station = ('kagc', 0.0024419976277486534) +zone = ('paz073', 0.0021500677014037128) + +[15616] +centroid = (0.7020195089730118, -1.3884669809202199) +station = ('klbe', 0.002299464909785946) +zone = ('paz073', 0.0021457797422248263) + +[15617] +centroid = (0.70281235969231526, -1.390248525754193) +station = ('klbe', 0.0034107736135954455) +zone = ('paz073', 0.0017114157185375779) + +[15618] +centroid = (0.70809798461222506, -1.3864872714029752) +station = ('kidi', 0.0046331504767813158) +zone = ('paz022', 0.0042271024452408433) + +[15620] +centroid = (0.70377862632609689, -1.3847213472658075) +station = ('klbe', 0.0010763530294879574) +zone = ('paz074', 0.0020668037803772718) + +[15621] +centroid = (0.70186420957616924, -1.3872480080640421) +station = ('klbe', 0.0016450920059028506) +zone = ('paz073', 0.0025857950121147958) + +[15622] +centroid = (0.69899623218941476, -1.3845542494432215) +station = ('klbe', 0.0041886570913867317) +zone = ('paz074', 0.0035177968871358579) + +[15623] +centroid = (0.70454053235776248, -1.389637119463927) +station = ('klbe', 0.0032769634204686312) +zone = ('paz073', 0.00072281288567537568) + +[15624] +centroid = (0.70449970910655835, -1.3870166472183978) +station = ('klbe', 0.0017021219403407575) +zone = ('paz073', 0.001435444120653498) + +[15625] +centroid = (0.70283546785161166, -1.3906739672126593) +station = ('klbe', 0.0037328666049657672) +zone = ('paz073', 0.0019154440920648667) + +[15626] +centroid = (0.70523506868030106, -1.388865963187226) +station = ('klbe', 0.0031857640992335227) +zone = ('paz073', 0.0010891129647220372) + +[15627] +centroid = (0.704257911191987, -1.3840469345895443) +station = ('klbe', 0.0017788390690725248) +zone = ('paz074', 0.0021813934695366541) + +[15628] +centroid = (0.69988556470976848, -1.3853274303018548) +station = ('klbe', 0.00321085853788518) +zone = ('paz074', 0.003035119166926465) + +[15629] +centroid = (0.70855894352096915, -1.3886347070613365) +station = ('klbe', 0.0058937774370279522) +zone = ('paz022', 0.0039729678292572297) + +[15631] +centroid = (0.69965854973396158, -1.3890264985718244) +station = ('klbe', 0.004218123598463676) +zone = ('paz075', 0.0034777197094596492) + +[15632] +centroid = (0.70579622694140243, -1.3892841091694186) +station = ('klbe', 0.0038049979465263253) +zone = ('paz073', 0.0016840872093825431) + +[15633] +centroid = (0.70436809382766541, -1.3879540111997661) +station = ('klbe', 0.0020943034183697239) +zone = ('paz073', 0.00071239877012677685) + +[15634] +centroid = (0.70378560764310494, -1.3893680071465619) +station = ('klbe', 0.0028181900681071548) +zone = ('paz073', 0.00053904731100351197) + +[15635] +centroid = (0.70420377107859011, -1.3875639301119456) +station = ('klbe', 0.0017597354518915085) +zone = ('paz073', 0.00097598023804371201) + +[15636] +centroid = (0.70451035561499553, -1.3902783883376948) +station = ('klbe', 0.0037090603134530935) +zone = ('paz073', 0.001153420960861837) + +[15637] +centroid = (0.70275603791735342, -1.3912336768504812) +station = ('kagc', 0.0031043090506555284) +zone = ('paz073', 0.0022930913451154229) + +[15638] +centroid = (0.70274498998318824, -1.3857732921125694) +station = ('klbe', 0.00033209868892010447) +zone = ('paz073', 0.0027277888517278736) + +[15639] +centroid = (0.70168369017163557, -1.3891739788936177) +station = ('klbe', 0.0029337836444463714) +zone = ('paz073', 0.002475387217917784) + +[15640] +centroid = (0.70205216408331661, -1.3915381844450767) +station = ('kagc', 0.0033186013819400929) +zone = ('paz073', 0.0029349678591803906) + +[15641] +centroid = (0.70915500836711021, -1.3890937112013186) +station = ('kbtp', 0.005458941186517084) +zone = ('paz022', 0.0035624192523360304) + +[15642] +centroid = (0.70368851497681639, -1.3914416851907341) +station = ('kagc', 0.0026254632296809706) +zone = ('paz073', 0.0020337212334885038) + +[15644] +centroid = (0.70419467791318724, -1.389478346861873) +station = ('klbe', 0.003025362408604028) +zone = ('paz073', 0.00048721889479386941) + +[15646] +centroid = (0.69956589020397308, -1.3845084869102342) +station = ('klbe', 0.0036451593789053448) +zone = ('paz074', 0.0029799442904847036) + +[15647] +centroid = (0.70410947093910492, -1.3915370150744779) +station = ('kagc', 0.0024971319381370391) +zone = ('paz073', 0.0020542041509613788) + +[15650] +centroid = (0.70296935205853217, -1.3856676298796535) +station = ('klbe', 0.00014305460585234905) +zone = ('paz073', 0.002691657644326456) + +[15655] +centroid = (0.70145063635661686, -1.3816057600180722) +station = ('klbe', 0.0035852605865385879) +zone = ('paz074', 0.0012660284192683436) + +[15656] +centroid = (0.70959683846725263, -1.3897883173370273) +station = ('kbtp', 0.0047852347573023877) +zone = ('paz022', 0.0034796532019708269) + +[15658] +centroid = (0.70246859964284247, -1.3827626864193419) +station = ('klbe', 0.0023897778335480288) +zone = ('paz074', 0.00021486958102856222) + +[15660] +centroid = (0.70240079360140251, -1.3923257642700391) +station = ('kagc', 0.0026402555688109751) +zone = ('paz073', 0.0031789292831386888) + +[15661] +centroid = (0.70375455823571187, -1.38509558076402) +station = ('klbe', 0.00086079871156530437) +zone = ('paz074', 0.0022556095435737346) + +[15662] +centroid = (0.70396665064641428, -1.3871586297530474) +station = ('klbe', 0.0013707006657396115) +zone = ('paz073', 0.0012957889465808334) + +[15663] +centroid = (0.70252724270570943, -1.3906656245388347) +station = ('klbe', 0.0037595607851439012) +zone = ('paz073', 0.0021341611441328024) + +[15665] +centroid = (0.70405704124837498, -1.3903440476241549) +station = ('klbe', 0.0036072904582239336) +zone = ('paz073', 0.0011481111866226796) + +[15666] +centroid = (0.70094209977246313, -1.3877080419482828) +station = ('klbe', 0.0025881567354647506) +zone = ('paz073', 0.0033188820348918372) + +[15668] +centroid = (0.70617005901388696, -1.3905039721435148) +station = ('kagc', 0.0038039526980679231) +zone = ('paz073', 0.0023869735979489865) + +[15670] +centroid = (0.70521075624382079, -1.3864357667367491) +station = ('klbe', 0.0021897354668410666) +zone = ('paz073', 0.0021200297511546431) + +[15671] +centroid = (0.70435011693636984, -1.384426578608438) +station = ('klbe', 0.001644453081983469) +zone = ('paz074', 0.0023952727139878935) + +[15672] +centroid = (0.70238667388775378, -1.3896588662664069) +station = ('klbe', 0.0030307820453118364) +zone = ('paz073', 0.0018664253378295088) + +[15673] +centroid = (0.70849560552241431, -1.3885248909448011) +station = ('klbe', 0.0058044523084328217) +zone = ('paz022', 0.0040067688519723277) + +[15675] +centroid = (0.70398387704613141, -1.3899291479543707) +station = ('klbe', 0.003283067873524316) +zone = ('paz073', 0.00084417797858710728) + +[15676] +centroid = (0.7023350645017723, -1.3869383692014459) +station = ('klbe', 0.0011472557748031435) +zone = ('paz073', 0.0023213653811738622) + +[15677] +centroid = (0.70062972074294128, -1.382951949923428) +station = ('klbe', 0.0032695509733180811) +zone = ('paz074', 0.0016413574319645646) + +[15678] +centroid = (0.70314465292860251, -1.3914852311555712) +station = ('kagc', 0.0027609324891818272) +zone = ('paz073', 0.0022503498917500258) + +[15679] +centroid = (0.70120257271003072, -1.3902215080573723) +station = ('klbe', 0.0038667794118439703) +zone = ('paz073', 0.0031260506668947538) + +[15680] +centroid = (0.7072209741163904, -1.3875241715115851) +station = ('klbe', 0.0043491699647500628) +zone = ('paz073', 0.0032344092152526544) + +[15681] +centroid = (0.70686372267179953, -1.3864781433309874) +station = ('klbe', 0.0038228699744323764) +zone = ('paz073', 0.0032595389869587697) + +[15683] +centroid = (0.70000292064867253, -1.3894270690884494) +station = ('klbe', 0.0041425723035102037) +zone = ('paz075', 0.0035281029530155636) + +[15684] +centroid = (0.7061723628484996, -1.3878973927188316) +station = ('klbe', 0.003486650315911922) +zone = ('paz073', 0.0021502175929575787) + +[15686] +centroid = (0.70901288620612046, -1.3863379061255896) +station = ('kidi', 0.0043919856399640021) +zone = ('paz022', 0.0033286949315495954) + +[15687] +centroid = (0.70050924066467612, -1.3843331685868712) +station = ('klbe', 0.0027986743674442765) +zone = ('paz074', 0.0020855958322415096) + +[15688] +centroid = (0.70107443063634933, -1.3890166723681356) +station = ('klbe', 0.0031738486963150377) +zone = ('paz073', 0.0030745572377998548) + +[15689] +centroid = (0.7019962960939603, -1.3873873551515212) +station = ('klbe', 0.0016282096303588559) +zone = ('paz073', 0.0024194078520602177) + +[15690] +centroid = (0.70932536995539752, -1.3883993319584127) +station = ('kidi', 0.005953953016761394) +zone = ('paz022', 0.003191330581164047) + +[15691] +centroid = (0.70328700198239513, -1.390785528658447) +station = ('klbe', 0.0038152372062574386) +zone = ('paz073', 0.0017126833925689392) + +[15692] +centroid = (0.70392191785768565, -1.3906593937134053) +station = ('klbe', 0.0038072118703578808) +zone = ('paz073', 0.0014031115780970113) + +[15693] +centroid = (0.70254996689257043, -1.3859258338891938) +station = ('klbe', 0.00053672280794280359) +zone = ('paz073', 0.0027377330456016514) + +[15695] +centroid = (0.70157485143948117, -1.390909499395216) +station = ('kagc', 0.0039945499395727026) +zone = ('paz073', 0.0030164881873982492) + +[15696] +centroid = (0.70302057747207825, -1.3852009288376705) +station = ('klbe', 0.00045397032798863922) +zone = ('paz074', 0.0019309127319078832) + +[15697] +centroid = (0.70234019576977325, -1.388931831913196) +station = ('klbe', 0.0025070786596168965) +zone = ('paz073', 0.0018072014726514009) + +[15698] +centroid = (0.7018727442362116, -1.3908278703461003) +station = ('kagc', 0.0038508753430980553) +zone = ('paz073', 0.0027318217220245163) + +[15701] +centroid = (0.70909901820470622, -1.3814288185385051) +station = ('kidi', 0.00066843822861339627) +zone = ('paz023', 0.00092597187841896239) + +[15710] +centroid = (0.70934942059248995, -1.3765703105931435) +station = ('kidi', 0.0030285121921973775) +zone = ('paz024', 0.0033171810088489309) + +[15711] +centroid = (0.71590657023235504, -1.3780355319534852) +station = ('kduj', 0.0030311467655595868) +zone = ('paz016', 0.0019993642794459169) + +[15712] +centroid = (0.71192776058987606, -1.3761552363904341) +station = ('kidi', 0.004317959170746709) +zone = ('paz023', 0.0039845970896654976) + +[15713] +centroid = (0.70807583638401717, -1.383377286662139) +station = ('kidi', 0.0024127882992639087) +zone = ('paz023', 0.0027187202377073802) + +[15714] +centroid = (0.70949913493572603, -1.3757568126287889) +station = ('kidi', 0.00365463647457213) +zone = ('paz024', 0.0030963837608225836) + +[15715] +centroid = (0.71507403072586118, -1.376670859011351) +station = ('kduj', 0.0037115456310145012) +zone = ('paz016', 0.0031821481662009476) + +[15716] +centroid = (0.70625006490679842, -1.3820720770876203) +station = ('kidi', 0.0031534991778863733) +zone = ('paz023', 0.0035190658318062793) + +[15717] +centroid = (0.7061125853216188, -1.3830568791180582) +station = ('kidi', 0.0036132591198222231) +zone = ('paz074', 0.0038453546366818826) + +[15721] +centroid = (0.71237920745419692, -1.3751897377015234) +station = ('kidi', 0.0051706536564588281) +zone = ('paz023', 0.0048403694408473488) + +[15722] +centroid = (0.70852082553010565, -1.3739911851975939) +station = ('kidi', 0.005027107568522488) +zone = ('paz024', 0.0017481050982405635) + +[15723] +centroid = (0.71032713658616464, -1.3815795277194149) +station = ('kidi', 0.0013808871003898736) +zone = ('paz023', 0.0012451767270957644) + +[15724] +centroid = (0.71096154631597208, -1.3755574087617484) +station = ('kidi', 0.0041855891753914002) +zone = ('paz024', 0.0043883965010319747) + +[15725] +centroid = (0.70718905204437144, -1.3848974509873335) +station = ('kidi', 0.0038551288511003649) +zone = ('paz023', 0.0041706318516251022) + +[15727] +centroid = (0.70787079510349282, -1.3842163362467428) +station = ('kidi', 0.0030749920709836208) +zone = ('paz023', 0.0033719518568908467) + +[15728] +centroid = (0.70992427968821936, -1.3783175771606075) +station = ('kidi', 0.0018515522448140226) +zone = ('paz023', 0.0015862763007810298) + +[15729] +centroid = (0.71046149203198317, -1.3773287608728901) +station = ('kidi', 0.0027600442889663596) +zone = ('paz023', 0.0024708678530713196) + +[15730] +centroid = (0.71659019824706871, -1.3804670897607787) +station = ('kduj', 0.0035435424930892329) +zone = ('paz016', 0.0017578942490918765) + +[15731] +centroid = (0.70692409361062614, -1.3818890444089635) +station = ('kidi', 0.0024779031225182616) +zone = ('paz023', 0.0028445573224843146) + +[15732] +centroid = (0.7108322174183993, -1.3825079730683059) +station = ('kidi', 0.0022145775893404941) +zone = ('paz023', 0.0021093709301024288) + +[15733] +centroid = (0.71539059854558795, -1.378099672803496) +station = ('kduj', 0.0035382053430317666) +zone = ('paz016', 0.0024870965556638897) + +[15734] +centroid = (0.71078179485630921, -1.378832187490558) +station = ('kidi', 0.0020630574241637255) +zone = ('paz023', 0.0017065518080943544) + +[15736] +centroid = (0.71037082217734204, -1.385205780852991) +station = ('kidi', 0.0037211607118867664) +zone = ('paz022', 0.0023346598513692605) + +[15737] +centroid = (0.70862563255168787, -1.3746040924710168) +station = ('kidi', 0.0045520687177133526) +zone = ('paz024', 0.001943256009600365) + +[15738] +centroid = (0.7102015775997762, -1.3750597804854199) +station = ('kidi', 0.0042908436214390226) +zone = ('paz024', 0.0035523155555278636) + +[15739] +centroid = (0.7098995658260111, -1.3817550903888729) +station = ('kidi', 0.0011568450238456012) +zone = ('paz023', 0.0011428555280923584) + +[15741] +centroid = (0.71213775860547601, -1.3769082761494995) +station = ('kidi', 0.0040444303577049662) +zone = ('paz023', 0.0036935034230927795) + +[15742] +centroid = (0.71239065681409008, -1.3764365660125633) +station = ('kidi', 0.0044740285554052588) +zone = ('paz023', 0.0041251955405542046) + +[15744] +centroid = (0.71423339289163823, -1.3802763427268281) +station = ('kidi', 0.0050523624134533414) +zone = ('paz016', 0.0037559801045151673) + +[15745] +centroid = (0.70900511949094902, -1.3773299127901963) +station = ('kidi', 0.002454649444000164) +zone = ('paz023', 0.002337947472819831) + +[15746] +centroid = (0.71137018025374144, -1.3768779248738077) +station = ('kidi', 0.0035422014454218023) +zone = ('paz023', 0.0032134612391906802) + +[15747] +centroid = (0.71167175569519359, -1.381356108121867) +station = ('kidi', 0.0025593200081966143) +zone = ('paz023', 0.0022927343169621413) + +[15748] +centroid = (0.70727090798628989, -1.3802788036410734) +station = ('kidi', 0.0019260392119337289) +zone = ('paz023', 0.0022425244768910562) + +[15750] +centroid = (0.70659270794554996, -1.3819677238516435) +station = ('kidi', 0.0028059892914467526) +zone = ('paz023', 0.003172071918639319) + +[15752] +centroid = (0.70756682856096553, -1.3837537367285018) +station = ('kidi', 0.0029187752491850582) +zone = ('paz023', 0.0032430293488969904) + +[15753] +centroid = (0.71201837808463964, -1.3727691231086399) +station = ('kfig', 0.0054307430094292482) +zone = ('paz017', 0.0042861022926537302) + +[15754] +centroid = (0.70784718079871334, -1.3814547017713121) +station = ('kidi', 0.001502410260997504) +zone = ('paz023', 0.0018694042344949786) + +[15756] +centroid = (0.70800200895665788, -1.3839927770228548) +station = ('kidi', 0.0028656735889660643) +zone = ('paz023', 0.0031598328454241014) + +[15757] +centroid = (0.71368672086332852, -1.3742558120187813) +station = ('kfig', 0.0050722439469291312) +zone = ('paz017', 0.0039771016562948538) + +[15759] +centroid = (0.71162339262162089, -1.3793633609951101) +station = ('kidi', 0.0026000469960212927) +zone = ('paz023', 0.0022357884081055856) + +[15760] +centroid = (0.7094470892174316, -1.3753229237767433) +station = ('kidi', 0.0039790796918570612) +zone = ('paz024', 0.0029054738776412509) + +[15761] +centroid = (0.70916645772700337, -1.3768868784128703) +station = ('kidi', 0.0027841297014949097) +zone = ('paz024', 0.0033410802740866338) + +[15762] +centroid = (0.7085042972620893, -1.3758308494956586) +station = ('kidi', 0.0036506116003900847) +zone = ('paz024', 0.0023096760944115984) + +[15764] +centroid = (0.71545622292546296, -1.379311193103768) +station = ('kduj', 0.0038387915405530141) +zone = ('paz016', 0.0023955801123391948) + +[15765] +centroid = (0.70856763526064415, -1.378654512972705) +station = ('kidi', 0.0015696784942855404) +zone = ('paz023', 0.0015890000271010427) + +[15767] +centroid = (0.71492443855567278, -1.3782545882279031) +station = ('kduj', 0.0040184753998684626) +zone = ('paz016', 0.0029255327768318135) + +[15770] +centroid = (0.71573837285234043, -1.3811962708689696) +station = ('kduj', 0.0045152670411314983) +zone = ('paz016', 0.0027561575574752313) + +[15771] +centroid = (0.71264509091244577, -1.3786206535852163) +station = ('kidi', 0.0037574690653108737) +zone = ('paz023', 0.0033914038169652505) + +[15772] +centroid = (0.71331980029468167, -1.3770423348893452) +station = ('kidi', 0.0049168575671407607) +zone = ('paz023', 0.0045519584638570535) + +[15773] +centroid = (0.70907083113728664, -1.3741927358196142) +station = ('kidi', 0.0048302018662635142) +zone = ('paz024', 0.0023109916011618079) + +[15774] +centroid = (0.70955819687761357, -1.3844620960587162) +station = ('kidi', 0.0029876021476224215) +zone = ('paz023', 0.0031296830201361821) + +[15775] +centroid = (0.70917059415733064, -1.3751124719755377) +station = ('kidi', 0.0041306776388558451) +zone = ('paz024', 0.0025886314670523448) + +[15776] +centroid = (0.71577677009588425, -1.3807577568944058) +station = ('kduj', 0.0042498648638575028) +zone = ('paz016', 0.0025205807487345658) + +[15777] +centroid = (0.71024009701636759, -1.3782069058327386) +station = ('kidi', 0.0020702496933880802) +zone = ('paz023', 0.0017718239676795609) + +[15778] +centroid = (0.71504598328478164, -1.3822177946268692) +station = ('kduj', 0.0055515455353726418) +zone = ('paz016', 0.0037865160907315301) + +[15779] +centroid = (0.7048629993903609, -1.3826446498020293) +station = ('klbe', 0.0029907123240969394) +zone = ('paz074', 0.0025987974457366042) + +[15780] +centroid = (0.71405673066475128, -1.3800399727862307) +station = ('kidi', 0.0048868939004509879) +zone = ('paz016', 0.0038782963834176655) + +[15781] +centroid = (0.71495313176857556, -1.3785806506387606) +station = ('kduj', 0.0040665205723650301) +zone = ('paz016', 0.0028724562871135857) + +[15783] +centroid = (0.70873125987801855, -1.3849128098847512) +station = ('kidi', 0.0033384604901632656) +zone = ('paz023', 0.0035594328295361533) + +[15784] +centroid = (0.71601130744076724, -1.3812756658966427) +station = ('kduj', 0.004381650003259129) +zone = ('paz016', 0.0025986723057828637) + +[15801] +centroid = (0.71776764972034168, -1.3739656510306371) +station = ('kduj', 0.0023463536475375811) +zone = ('paz016', 0.0036429407653776271) + +[15821] +centroid = (0.72171036595388938, -1.3677885991952714) +station = ('kfig', 0.0052906327230947152) +zone = ('paz011', 0.0026259666522473694) + +[15823] +centroid = (0.72009864165613513, -1.3737561068006428) +station = ('kduj', 0.0026227296060079095) +zone = ('paz010', 0.003017835891012666) + +[15824] +centroid = (0.71996285504033009, -1.3760382818772579) +station = ('kduj', 0.0013015696689744802) +zone = ('paz016', 0.0029853288365746414) + +[15825] +centroid = (0.71863839448416167, -1.379410519791499) +station = ('kduj', 0.001989860827929962) +zone = ('paz016', 0.00093749561202257021) + +[15827] +centroid = (0.72115536870504771, -1.3704613964117756) +station = ('kfig', 0.0048959371475662764) +zone = ('paz010', 0.0024944885438295044) + +[15828] +centroid = (0.72230166605117252, -1.380829559739833) +station = ('kduj', 0.0046536611021378727) +zone = ('paz009', 0.0027385787270375033) + +[15829] +centroid = (0.71853980083471647, -1.3823381874386718) +station = ('kduj', 0.0041953291812797224) +zone = ('paz016', 0.0027585879730022294) + +[15832] +centroid = (0.72168483178693266, -1.364627284321134) +station = ('kfig', 0.0060323515132637302) +zone = ('paz011', 0.0015388445529562981) + +[15834] +centroid = (0.72432471209374416, -1.3669910011804027) +station = ('kbfd', 0.006608916238981819) +zone = ('paz011', 0.0019152975222756286) + +[15840] +centroid = (0.7185864709389147, -1.3757147501938158) +station = ('kduj', 0.00082147745970116595) +zone = ('paz016', 0.0024470833498156683) + +[15841] +centroid = (0.72017414459957652, -1.3706050195559221) +station = ('kfig', 0.0040032099755285726) +zone = ('paz010', 0.0032364107853132336) + +[15845] +centroid = (0.7242110737061469, -1.3733900763499145) +station = ('kbfd', 0.0053865141870291216) +zone = ('paz010', 0.0013133590131634858) + +[15846] +centroid = (0.72116458404349826, -1.3713469415676522) +station = ('kfig', 0.0051321635213089764) +zone = ('paz010', 0.0020999398235341448) + +[15847] +centroid = (0.71715905341017128, -1.3793770269231531) +station = ('kduj', 0.0025468813369327161) +zone = ('paz016', 0.00079118417994099115) + +[15848] +centroid = (0.71607537847760805, -1.3741043697995856) +station = ('kduj', 0.003374434151582696) +zone = ('paz016', 0.0039474965173132009) + +[15849] +centroid = (0.71845592031086569, -1.3715190659384842) +station = ('kfig', 0.0029554947675464729) +zone = ('paz017', 0.0032010410051115166) + +[15851] +centroid = (0.71738104183773233, -1.3772465907717062) +station = ('kduj', 0.0014481549732809755) +zone = ('paz016', 0.0012511715686566037) + +[15853] +centroid = (0.72243267046482718, -1.3751733839664322) +station = ('kduj', 0.003841032869837102) +zone = ('paz010', 0.0019511538517302941) + +[15856] +centroid = (0.71702061389390315, -1.3720624043879224) +station = ('kfig', 0.0026491118285531775) +zone = ('paz017', 0.0023265537265241827) + +[15857] +centroid = (0.72353118069603251, -1.3704303470043826) +station = ('kbfd', 0.006195846587720307) +zone = ('paz010', 0.0017711336402433373) + +[15860] +centroid = (0.72140730698257305, -1.3791359271402828) +station = ('kduj', 0.0031671173861989783) +zone = ('paz016', 0.0035953608750147843) + +[15861] +centroid = (0.72096985765885313, -1.362562036217249) +station = ('kfig', 0.0064195972781088935) +zone = ('paz011', 0.0028507065791701209) + +[15863] +centroid = (0.71583605893057445, -1.3760129746031042) +station = ('kduj', 0.0030039401766525468) +zone = ('paz016', 0.002891040817152986) + +[15864] +centroid = (0.71739280535689087, -1.3822577975733248) +station = ('kduj', 0.004358008059914046) +zone = ('paz016', 0.0026389308858527087) + +[15865] +centroid = (0.71636958862961664, -1.3758132391235061) +station = ('kduj', 0.0025212879679422039) +zone = ('paz016', 0.0026792492622599792) + +[15866] +centroid = (0.71600198738256149, -1.3751629818040902) +station = ('kduj', 0.0030359984198662505) +zone = ('paz016', 0.0032910023289507684) + +[15868] +centroid = (0.72085194321458856, -1.3670677258543202) +station = ('kfig', 0.0045487110203223709) +zone = ('paz011', 0.0028577426831933811) + +[15870] +centroid = (0.72595436092291632, -1.3712685588309454) +station = ('kbfd', 0.003693057002443865) +zone = ('paz010', 0.0031322179812345832) + +[15901] +centroid = (0.70386933108732297, -1.377314222280221) +station = ('kjst', 0.0010977063516125762) +zone = ('paz024', 0.0039463310461180633) + +[15902] +centroid = (0.70377269220664007, -1.3767032697755606) +station = ('kjst', 0.00062206862191353752) +zone = ('paz024', 0.0037256672483816432) + +[15904] +centroid = (0.70357005948048346, -1.3760348435786316) +station = ('kjst', 0.0001349652660414025) +zone = ('paz024', 0.0036273688105128953) + +[15905] +centroid = (0.70320490169438121, -1.3782847998772552) +station = ('kjst', 0.0018735348264222362) +zone = ('paz074', 0.0036214483336780615) + +[15906] +centroid = (0.70475831454182636, -1.3780365267911587) +station = ('kjst', 0.0019641117188933643) +zone = ('paz024', 0.0037974092581328557) + +[15909] +centroid = (0.70528304778143847, -1.3765366606451652) +station = ('kjst', 0.0016950893556023354) +zone = ('paz024', 0.0025564250744361606) + +[15920] +centroid = (0.70641328809844495, -1.3796397338821633) +station = ('kidi', 0.0028581392320078257) +zone = ('paz023', 0.0031446740662849056) + +[15921] +centroid = (0.70367029373942558, -1.3735891311511046) +station = ('kjst', 0.0017629571989728019) +zone = ('paz024', 0.0031123770302312818) + +[15922] +centroid = (0.70716549009946938, -1.3766576992287909) +station = ('kjst', 0.0035538911489645924) +zone = ('paz024', 0.0021984740963383095) + +[15923] +centroid = (0.70433145936666608, -1.3815765257531014) +station = ('klbe', 0.0034498881401232666) +zone = ('paz074', 0.0022853918486841888) + +[15924] +centroid = (0.69993677267002186, -1.3746712003807557) +station = ('kjst', 0.0038385155097884933) +zone = ('paz033', 0.0042192977025822687) + +[15925] +centroid = (0.70526170240468655, -1.3725391759796899) +station = ('kjst', 0.0030220161772199525) +zone = ('paz024', 0.0017990798736869076) + +[15926] +centroid = (0.6990614202369767, -1.3757319067803631) +station = ('kjst', 0.0045989760472930881) +zone = ('paz033', 0.0030777137851076787) + +[15927] +centroid = (0.70755646130520866, -1.3749467529630608) +station = ('kjst', 0.003965021424086103) +zone = ('paz024', 0.0011622118634510691) + +[15928] +centroid = (0.70231227050174128, -1.3773869501501517) +station = ('kjst', 0.0017599203379701951) +zone = ('paz033', 0.0048857534310995671) + +[15929] +centroid = (0.70630413520702517, -1.3789608531630149) +station = ('kidi', 0.0031256990845727937) +zone = ('paz023', 0.0033749441897304288) + +[15930] +centroid = (0.70327988103904704, -1.3739060829432668) +station = ('kjst', 0.0015679218080398209) +zone = ('paz024', 0.0034989226600899044) + +[15931] +centroid = (0.70697160147286542, -1.3746032372596835) +station = ('kjst', 0.0034572915021613931) +zone = ('paz024', 0.00063238779548910849) + +[15934] +centroid = (0.70300223406163964, -1.3753890193955161) +station = ('kjst', 0.00076380527950638331) +zone = ('paz024', 0.0039624064142744003) + +[15935] +centroid = (0.70176427202320013, -1.3781997150762204) +station = ('kjst', 0.0025816197004096251) +zone = ('paz074', 0.0036014262424609094) + +[15936] +centroid = (0.70094011009711588, -1.3769355381924158) +station = ('kjst', 0.0028308037744326046) +zone = ('paz033', 0.0037548534881511621) + +[15937] +centroid = (0.70171536789755928, -1.3785436322053257) +station = ('kjst', 0.0028003736930547712) +zone = ('paz074', 0.0033494512832674584) + +[15938] +centroid = (0.70544208218288018, -1.3720229774001198) +station = ('kjst', 0.0034513787581569489) +zone = ('paz024', 0.0019070355676461417) + +[15940] +centroid = (0.70715564644248818, -1.3722687546653858) +station = ('kjst', 0.0044584604316146538) +zone = ('paz024', 0.0012322676542174493) + +[15942] +centroid = (0.70508376608744572, -1.3755118382149791) +station = ('kjst', 0.0014557500734347171) +zone = ('paz024', 0.0021319064241643974) + +[15943] +centroid = (0.7064092389345803, -1.3760010365510205) +station = ('kjst', 0.0027517122834171555) +zone = ('paz024', 0.0017056765237204344) + +[15944] +centroid = (0.70448274450622894, -1.3801916942581065) +station = ('kjst', 0.0033725052049143485) +zone = ('paz074', 0.0030113748531006498) + +[15945] +centroid = (0.70438842691345116, -1.3764904268732796) +station = ('kjst', 0.00085696246245770306) +zone = ('paz024', 0.0031415107762021769) + +[15946] +centroid = (0.70459456775140417, -1.3724765884727133) +station = ('kjst', 0.0027729267874782668) +zone = ('paz024', 0.0024083319854210777) + +[15948] +centroid = (0.70668306364092559, -1.3747023021480265) +station = ('kjst', 0.0031592808452945687) +zone = ('paz024', 0.00068408403497561003) + +[15949] +centroid = (0.7050551077811279, -1.3809159186312217) +station = ('kidi', 0.0041394265854719911) +zone = ('paz074', 0.0031586168256679099) + +[15951] +centroid = (0.70394623029416592, -1.3748080691006974) +station = ('kjst', 0.00088165516935150533) +zone = ('paz024', 0.0029317245555698862) + +[15952] +centroid = (0.70342887979728974, -1.3749030324652982) +station = ('kjst', 0.00079507995375115018) +zone = ('paz024', 0.0034507990120914473) + +[15953] +centroid = (0.7017709391809428, -1.3768057555092377) +station = ('kjst', 0.0020098762230992611) +zone = ('paz033', 0.004541004593231702) + +[15954] +centroid = (0.70553283930398381, -1.3787772794322903) +station = ('kjst', 0.0028834284292824103) +zone = ('paz024', 0.0039781901863330162) + +[15955] +centroid = (0.70376675808718336, -1.3735284984128902) +station = ('kjst', 0.0018123069217331244) +zone = ('paz024', 0.0030190032848302667) + +[15956] +centroid = (0.70425003975706058, -1.3752486251104856) +station = ('kjst', 0.00077285569921152204) +zone = ('paz024', 0.0027546083722213527) + +[15957] +centroid = (0.70786407558587261, -1.3771046082370566) +station = ('kidi', 0.0029346157133159621) +zone = ('paz024', 0.0027285582630895964) + +[15958] +centroid = (0.70489527052823031, -1.3741050853845791) +station = ('kjst', 0.0018447312650956994) +zone = ('paz024', 0.001896004471913891) + +[15960] +centroid = (0.70680879716023937, -1.3767884767496428) +station = ('kjst', 0.003221851928199509) +zone = ('paz024', 0.0022640552350064007) + +[15961] +centroid = (0.70635387709070707, -1.377794240184397) +station = ('kjst', 0.0030566703906843699) +zone = ('paz024', 0.0030588200845639269) + +[15962] +centroid = (0.70490671988812337, -1.3738366013857448) +station = ('kjst', 0.0020083460838473152) +zone = ('paz024', 0.0018714396409479125) + +[15963] +centroid = (0.70210708959487689, -1.3746082463546365) +station = ('kjst', 0.0018385687190658701) +zone = ('paz024', 0.0047102613776056242) + +[16001] +centroid = (0.71401463332319315, -1.3953068040857379) +station = ('kbtp', 0.0022120980858020179) +zone = ('paz014', 0.00042560338348367931) + +[16002] +centroid = (0.71235849039597576, -1.3937389748186717) +station = ('kbtp', 0.0013680456860109529) +zone = ('paz014', 0.0018491389878085313) + +[16020] +centroid = (0.71759795135717019, -1.3944933235746761) +station = ('kfkl', 0.0046961819543144935) +zone = ('paz014', 0.0035591522476136062) + +[16022] +centroid = (0.71652991457470483, -1.3916154327177699) +station = ('kbtp', 0.0055206641955151759) +zone = ('paz014', 0.0034295516863742446) + +[16023] +centroid = (0.71184096536617447, -1.3919055413460366) +station = ('kbtp', 0.0026391616054374919) +zone = ('paz014', 0.0030766953354909527) + +[16024] +centroid = (0.711094540404974, -1.3969360165825973) +station = ('kbtp', 0.0013683682257638274) +zone = ('paz014', 0.0033833818233528108) + +[16025] +centroid = (0.71458024217388694, -1.3919590705941953) +station = ('kbtp', 0.0038008047882618916) +zone = ('paz014', 0.0021721320642755981) + +[16027] +centroid = (0.71244608847113344, -1.3965982081058737) +station = ('kbtp', 0.0011173322489316006) +zone = ('paz014', 0.0021253477020964401) + +[16028] +centroid = (0.71473531467792673, -1.3899026189497403) +station = ('kbtp', 0.005081383955881133) +zone = ('paz022', 0.0033113284523056037) + +[16029] +centroid = (0.7134758152765176, -1.3935785441538282) +station = ('kbtp', 0.0021626225944248499) +zone = ('paz014', 0.0010488497586689527) + +[16030] +centroid = (0.71796553515093275, -1.392719807255262) +station = ('kfkl', 0.0044058336693150388) +zone = ('paz014', 0.0042087749703914028) + +[16033] +centroid = (0.71181295283168, -1.3971550379504298) +station = ('kbtp', 0.0013359306786437594) +zone = ('paz014', 0.0028810875901337037) + +[16034] +centroid = (0.71316263339553976, -1.3916070027774829) +station = ('kbtp', 0.0031695278039603615) +zone = ('paz014', 0.0025307110354542018) + +[16035] +centroid = (0.71748728002930129, -1.3965169281226084) +station = ('kfkl', 0.0051663510884863446) +zone = ('paz014', 0.0036939057501535716) + +[16036] +centroid = (0.71793933775886043, -1.390444386602852) +station = ('kfkl', 0.0050687436529328568) +zone = ('paz015', 0.0033799686592844319) + +[16037] +centroid = (0.7128380370612537, -1.3985977969232986) +station = ('kbtp', 0.0026385480127544252) +zone = ('paz014', 0.0031528792833780623) + +[16038] +centroid = (0.71845576323123295, -1.3954490833263606) +station = ('kfkl', 0.0039852805416660548) +zone = ('paz014', 0.0044437468679794723) + +[16040] +centroid = (0.71722987887121714, -1.3934743654507766) +station = ('kfkl', 0.0050574858276442071) +zone = ('paz014', 0.0033271814379446933) + +[16041] +centroid = (0.71567815899314657, -1.3912879565902183) +station = ('kbtp', 0.0049630458730116353) +zone = ('paz014', 0.0030800234133554552) + +[16045] +centroid = (0.71301541487313391, -1.3948098564878177) +station = ('kbtp', 0.0012892318294082305) +zone = ('paz014', 0.0010296222700635093) + +[16046] +centroid = (0.71039708938258461, -1.3966807970860782) +station = ('kbtp', 0.0017126481627670091) +zone = ('paz014', 0.0039301345229792936) + +[16048] +centroid = (0.71651354338632112, -1.3930943549127399) +station = ('kbtp', 0.0050195698711453882) +zone = ('paz014', 0.0027662192179378989) + +[16049] +centroid = (0.71722677218514863, -1.3905356324161462) +station = ('kfkl', 0.0056593348275493244) +zone = ('paz015', 0.0037174726519617679) + +[16050] +centroid = (0.71635292073526013, -1.3921018559803009) +station = ('kbtp', 0.0051840990628160182) +zone = ('paz014', 0.0030518093837707378) + +[16051] +centroid = (0.71462321218007108, -1.3986744517840461) +station = ('kbtp', 0.003757406839113226) +zone = ('paz014', 0.0030248430927755868) + +[16052] +centroid = (0.71382879066444083, -1.3973380357225016) +station = ('kbtp', 0.0025044491561108943) +zone = ('paz014', 0.0019715833291054368) + +[16053] +centroid = (0.71230148794260573, -1.3959691739901625) +station = ('kbtp', 0.00066316862528273813) +zone = ('paz014', 0.0019730932822034941) + +[16054] +centroid = (0.71826470203801718, -1.3903817990958756) +station = ('kfkl', 0.0048190867570158816) +zone = ('paz015', 0.00325131477333282) + +[16055] +centroid = (0.71065422874128092, -1.3918600929723146) +station = ('kbtp', 0.0029111142774082889) +zone = ('paz014', 0.0040319559711395917) + +[16056] +centroid = (0.71078418595738435, -1.3935006501093117) +station = ('kbtp', 0.0017575181252061957) +zone = ('paz014', 0.0033929756306960014) + +[16057] +centroid = (0.71617969680699956, -1.3973158351344162) +station = ('kbtp', 0.0046117556778729482) +zone = ('paz014', 0.0028860816953068594) + +[16059] +centroid = (0.71047260977931836, -1.3949908471312495) +station = ('kbtp', 0.0013648860841480176) +zone = ('paz014', 0.0035761036520473482) + +[16061] +centroid = (0.71567416218915947, -1.3942517350996149) +station = ('kbtp', 0.0039653179302599085) +zone = ('paz014', 0.0016723043771570015) + +[16063] +centroid = (0.71143660748507243, -1.3984084112461648) +station = ('kbtp', 0.0023145545668326931) +zone = ('paz014', 0.0038052474340624282) + +[16066] +centroid = (0.71052296252823843, -1.3981072023238554) +station = ('kbtp', 0.0024238423243160812) +zone = ('paz020', 0.0032602128684321293) + +[16101] +centroid = (0.71530554865113827, -1.4013255021980704) +station = ('kucp', 0.0017766722919686161) +zone = ('paz013', 0.00059528816073439294) + +[16102] +centroid = (0.71489326697523214, -1.4036711199929957) +station = ('kucp', 0.0011423008063795662) +zone = ('paz013', 0.0013050868445716613) + +[16105] +centroid = (0.71658648069576192, -1.4022030537459731) +station = ('kucp', 0.0011125694273108084) +zone = ('paz013', 0.0011578811618676245) + +[16110] +centroid = (0.72440325191008392, -1.4029089521619424) +station = ('kgkj', 0.0030965548818444677) +zone = ('paz007', 0.0038928689936770905) + +[16111] +centroid = (0.72466732022591063, -1.4011959987675724) +station = ('kgkj', 0.0021512655500709093) +zone = ('paz003', 0.0036783458388430041) + +[16112] +centroid = (0.71489501230448427, -1.4049620702275258) +station = ('kucp', 0.0015922489140406482) +zone = ('paz013', 0.0022291208415981716) + +[16113] +centroid = (0.72048633164288067, -1.4036661807112125) +station = ('kyng', 0.0032267664834828521) +zone = ('paz007', 0.002214403800888976) + +[16114] +centroid = (0.72261601730274916, -1.3994736031419492) +station = ('kgkj', 0.0040454104681894934) +zone = ('paz007', 0.002004960698914498) + +[16115] +centroid = (0.71203508088558121, -1.404304046192939) +station = ('kbvi', 0.00095730784260298013) +zone = ('paz020', 0.002479926704713256) + +[16116] +centroid = (0.71635576562194081, -1.4041108382447431) +station = ('kucp', 0.00058044133791359804) +zone = ('paz013', 0.0017789915265085385) + +[16117] +centroid = (0.7133481618950267, -1.4007348827791954) +station = ('kbvi', 0.0026414179114206049) +zone = ('paz013', 0.0023233128751063161) + +[16120] +centroid = (0.71357941802091596, -1.4046229353005708) +station = ('kbvi', 0.0023150680852300331) +zone = ('paz013', 0.0026594871125423056) + +[16121] +centroid = (0.71927137304398236, -1.4049410739166242) +station = ('kyng', 0.0023252146589899094) +zone = ('ohz023', 0.0039189620410036881) + +[16123] +centroid = (0.71247712042523381, -1.3996932004684353) +station = ('kbtp', 0.0033257583002753539) +zone = ('paz020', 0.0031654216951630416) + +[16124] +centroid = (0.72145226666410445, -1.4010815924351041) +station = ('kgkj', 0.0052442956830596838) +zone = ('paz007', 0.00063988231153166563) + +[16125] +centroid = (0.72267724345290918, -1.4027704253792117) +station = ('kgkj', 0.0044561948395118456) +zone = ('paz007', 0.0023620958733751658) + +[16127] +centroid = (0.71860457000325795, -1.3975374570428345) +station = ('kfkl', 0.0045606291813758918) +zone = ('paz007', 0.0033106761834051333) + +[16130] +centroid = (0.72334528567740253, -1.4001545957094925) +station = ('kgkj', 0.003294482002211926) +zone = ('paz007', 0.002527229737382211) + +[16131] +centroid = (0.72519341482233934, -1.4028647604252817) +station = ('kgkj', 0.0025566567630822918) +zone = ('paz003', 0.004252252418536385) + +[16132] +centroid = (0.71566819316311769, -1.4050045689948119) +station = ('kucp', 0.0012066105964094671) +zone = ('paz013', 0.0022077065349626547) + +[16133] +centroid = (0.72025882797488328, -1.3982609483776638) +station = ('kfkl', 0.0038228359559006049) +zone = ('paz007', 0.0019723690093759751) + +[16134] +centroid = (0.72474668034699885, -1.4046210328916862) +station = ('kgkj', 0.0039111967143909106) +zone = ('ohz014', 0.0043785707241279989) + +[16136] +centroid = (0.71270413540104072, -1.401913154557217) +station = ('kbvi', 0.0015607271780904554) +zone = ('paz020', 0.0026854529206768083) + +[16137] +centroid = (0.71962749002455928, -1.4004285251355928) +station = ('kucp', 0.0042712511747672521) +zone = ('paz007', 0.0012569978338994217) + +[16140] +centroid = (0.71724869352055365, -1.4052349175494903) +station = ('kucp', 0.0018029568178199646) +zone = ('paz013', 0.0029843168181729928) + +[16141] +centroid = (0.71328271204807681, -1.4032179801593003) +station = ('kbvi', 0.0017702693096599367) +zone = ('paz013', 0.0023097732017571945) + +[16142] +centroid = (0.71812294639617014, -1.4020785070505508) +station = ('kucp', 0.0023469635714432687) +zone = ('paz013', 0.002691575451105775) + +[16143] +centroid = (0.71743197054530561, -1.4041641929599766) +station = ('kucp', 0.0014981229469107375) +zone = ('paz013', 0.002536602169321707) + +[16145] +centroid = (0.72222066532058748, -1.3976357016264291) +station = ('kfkl', 0.0027762829985522167) +zone = ('paz007', 0.0027128006609186172) + +[16146] +centroid = (0.71967103598939663, -1.4049843231754888) +station = ('kyng', 0.0022090546441079352) +zone = ('ohz023', 0.0037160533255713403) + +[16148] +centroid = (0.71957279140580188, -1.4035516871122817) +station = ('kucp', 0.0035470586974994207) +zone = ('paz007', 0.0024607121224679983) + +[16150] +centroid = (0.72056171241327438, -1.4041741064301279) +station = ('kyng', 0.0028661239336424194) +zone = ('paz007', 0.0025815249581215426) + +[16151] +centroid = (0.72333250986727793, -1.3998724981424926) +station = ('kgkj', 0.003308754162603446) +zone = ('paz007', 0.0025614549510102206) + +[16153] +centroid = (0.72120914229930166, -1.3977746123815955) +station = ('kfkl', 0.0030722259238986013) +zone = ('paz007', 0.0022703353207937571) + +[16154] +centroid = (0.72127303880321714, -1.4035958264890647) +station = ('kyng', 0.0034942128080953749) +zone = ('paz007', 0.0021689693131192846) + +[16155] +centroid = (0.71676713972663586, -1.4051773391374669) +station = ('kucp', 0.0014807558937917496) +zone = ('paz013', 0.0026807369154444507) + +[16156] +centroid = (0.71713426973479288, -1.40004085260214) +station = ('kucp', 0.0028183472316007825) +zone = ('paz013', 0.0023028754393462996) + +[16157] +centroid = (0.71363392465345576, -1.4020820326156398) +station = ('kbvi', 0.0022965654821598376) +zone = ('paz013', 0.0017975119640866266) + +[16159] +centroid = (0.71826255528303717, -1.4045583057583695) +station = ('kucp', 0.0023801347741388311) +zone = ('paz013', 0.0033853192760889207) + +[16160] +centroid = (0.71437300177850516, -1.4024923769760762) +station = ('kucp', 0.0018127418965941985) +zone = ('paz013', 0.0010998548403754324) + +[16161] +centroid = (0.71902486274043076, -1.4049175119717225) +station = ('kyng', 0.0024251543137614258) +zone = ('ohz023', 0.0040568427094171151) + +[16201] +centroid = (0.71218483013540235, -1.3870029114771845) +station = ('kidi', 0.005733706969138763) +zone = ('paz022', 0.00014322058364892932) + +[16210] +centroid = (0.71376814047293402, -1.3877204163326795) +station = ('kidi', 0.0071028407618742035) +zone = ('paz022', 0.0015773450262955343) + +[16211] +centroid = (0.7119973468671531, -1.3823453607418976) +station = ('kidi', 0.0031220874602285397) +zone = ('paz023', 0.0029134336597884947) + +[16212] +centroid = (0.71131167681721463, -1.3889962694691798) +station = ('kbtp', 0.0048677233313633769) +zone = ('paz022', 0.0018654573167025254) + +[16213] +centroid = (0.71777833113536393, -1.3885433041684097) +station = ('kfkl', 0.006054896235306589) +zone = ('paz015', 0.0021414474433292881) + +[16214] +centroid = (0.71912228701927705, -1.3850448440426646) +station = ('kfkl', 0.0073872659972354744) +zone = ('paz015', 0.00085615414423062194) + +[16217] +centroid = (0.72136538417394025, -1.3818413969203842) +station = ('kduj', 0.0046013118681194221) +zone = ('paz009', 0.0032799980423237371) + +[16218] +centroid = (0.71442321490108518, -1.3891188788491322) +station = ('kbtp', 0.0054189234448594878) +zone = ('paz022', 0.0026882799120075988) + +[16222] +centroid = (0.71338022359338582, -1.3832960939453365) +station = ('kidi', 0.00468042047246282) +zone = ('paz022', 0.0029400804162911824) + +[16223] +centroid = (0.71516590485768627, -1.385162304701324) +station = ('kidi', 0.0069228432164026143) +zone = ('paz022', 0.0031466800724255276) + +[16224] +centroid = (0.71672085359487303, -1.3839563869079508) +station = ('kduj', 0.0057907533235209948) +zone = ('paz015', 0.0027741005808652169) + +[16226] +centroid = (0.71055226660637938, -1.3872998268895338) +station = ('kidi', 0.0052947187897372239) +zone = ('paz022', 0.0017839372310518803) + +[16228] +centroid = (0.7114103926397074, -1.3881609723424677) +station = ('kidi', 0.006180623996257603) +zone = ('paz022', 0.0013041033457076732) + +[16229] +centroid = (0.71064787574280364, -1.3900281604828364) +station = ('kbtp', 0.0042236376950882931) +zone = ('paz022', 0.0028849471109868383) + +[16230] +centroid = (0.71594234948202096, -1.3837550457254406) +station = ('kduj', 0.0059793822282740933) +zone = ('paz015', 0.0035060710187521885) + +[16232] +centroid = (0.71931277225383972, -1.3884310969507989) +station = ('kfkl', 0.0050875699254716881) +zone = ('paz015', 0.0017494211514388184) + +[16233] +centroid = (0.72188982070757945, -1.3835411207190238) +station = ('kduj', 0.0059590309434023759) +zone = ('paz009', 0.0026913757828181868) + +[16235] +centroid = (0.72121655994862266, -1.3849594101757794) +station = ('kfkl', 0.0068212032863504959) +zone = ('paz015', 0.0024439545355014829) + +[16236] +centroid = (0.71188206787005892, -1.3879322643972865) +station = ('kidi', 0.0062079889373793705) +zone = ('paz022', 0.00088076598727213616) + +[16238] +centroid = (0.71188205041676644, -1.3879006215779477) +station = ('kidi', 0.0061863855750963525) +zone = ('paz022', 0.00085995626408493626) + +[16239] +centroid = (0.72425879100789636, -1.3812148062656255) +station = ('kduj', 0.006409529287871041) +zone = ('paz009', 0.0013159668791057105) + +[16240] +centroid = (0.71621353874119575, -1.3827370998925075) +station = ('kduj', 0.0051766906629171104) +zone = ('paz016', 0.0033740183253927374) + +[16242] +centroid = (0.71575744930106466, -1.3851935635482271) +station = ('kidi', 0.0074505266096820226) +zone = ('paz015', 0.0032690984387984171) + +[16244] +centroid = (0.71195778025301037, -1.3836387020775027) +station = ('kidi', 0.0036259801385909842) +zone = ('paz022', 0.002506913956398276) + +[16245] +centroid = (0.71570227944340914, -1.3840175781515258) +station = ('kidi', 0.007023782152665782) +zone = ('paz015', 0.0036214784047367121) + +[16246] +centroid = (0.71194982155162134, -1.3819892961211981) +station = ('kidi', 0.0029703502448864666) +zone = ('paz023', 0.002739661609485296) + +[16248] +centroid = (0.71617844016993826, -1.387588713787324) +station = ('kbtp', 0.007342207035896527) +zone = ('paz015', 0.0029689175090215603) + +[16249] +centroid = (0.711430184673425, -1.3842579623494029) +station = ('kidi', 0.0035942556613738344) +zone = ('paz022', 0.0021982305300266018) + +[16250] +centroid = (0.71154476553881851, -1.3828761677273065) +station = ('kidi', 0.0029431005842926496) +zone = ('paz023', 0.0027985524625568354) + +[16253] +centroid = (0.7147327141373413, -1.3847923298064859) +station = ('kidi', 0.0064079037316930511) +zone = ('paz022', 0.0029048721195077459) + +[16254] +centroid = (0.72000669771114023, -1.3868640705351882) +station = ('kfkl', 0.0057758352410516647) +zone = ('paz015', 0.0011873539657840946) + +[16255] +centroid = (0.71783320428704656, -1.3869565555322516) +station = ('kfkl', 0.006875011037101952) +zone = ('paz015', 0.0012637392436348283) + +[16256] +centroid = (0.71305892593138609, -1.3811568438811668) +station = ('kidi', 0.0039001800243760433) +zone = ('paz023', 0.0035998733196081663) + +[16258] +centroid = (0.71972030663418041, -1.3836680410622288) +station = ('kduj', 0.0052701545937463403) +zone = ('paz015', 0.0020272360623511581) + +[16259] +centroid = (0.71428840566966101, -1.3866965363802894) +station = ('kidi', 0.0069039441735065732) +zone = ('paz022', 0.001982935905467624) + +[16260] +centroid = (0.72250457803000934, -1.3828376832172999) +station = ('kduj', 0.0058818368346206127) +zone = ('paz009', 0.0020386407108516228) + +[16262] +centroid = (0.71277557172732497, -1.3901932511767825) +station = ('kbtp', 0.0040521420070065766) +zone = ('paz022', 0.0025218977994911373) + +[16263] +centroid = (0.71212430211694311, -1.384685044417366) +station = ('kidi', 0.0042934291587321217) +zone = ('paz022', 0.0016999715358136296) + +[16301] +centroid = (0.7235125580329137, -1.3896984154272569) +station = ('kfkl', 0.0034102698430730286) +zone = ('paz008', 0.0019860439585908094) + +[16311] +centroid = (0.72365131170844732, -1.3970031244923364) +station = ('kfkl', 0.0026798298478661864) +zone = ('paz008', 0.0038714030500273306) + +[16312] +centroid = (0.73185381814075245, -1.3841021917136624) +station = ('kjhw', 0.0038318570160738286) +zone = ('paz004', 0.0020842588324900308) + +[16313] +centroid = (0.72839035186650991, -1.3809465491595942) +station = ('kbfd', 0.0064709751421038533) +zone = ('paz004', 0.0024284523913376318) + +[16314] +centroid = (0.72467250385378912, -1.3976085617565608) +station = ('kgkj', 0.0026810217957659583) +zone = ('paz003', 0.0028897908522554881) + +[16316] +centroid = (0.72608791351727897, -1.4015627971631717) +station = ('kgkj', 0.00126136452430067) +zone = ('paz003', 0.0029536698344633837) + +[16317] +centroid = (0.72487984896892599, -1.393710019806381) +station = ('kfkl', 0.0026099419190579796) +zone = ('paz008', 0.002615070158595671) + +[16319] +centroid = (0.72124342056581081, -1.3896915039234192) +station = ('kfkl', 0.0033492854583757887) +zone = ('paz008', 0.0022141946974632734) + +[16321] +centroid = (0.72555187054411396, -1.3857842876868571) +station = ('kfkl', 0.0069309602269589125) +zone = ('paz009', 0.0023624342770019141) + +[16322] +centroid = (0.72603684518336553, -1.3853300308424406) +station = ('kfkl', 0.0074636891121966269) +zone = ('paz009', 0.0023361789242565098) + +[16323] +centroid = (0.7227743535724902, -1.3932669679757621) +station = ('kfkl', 0.00070783160267072172) +zone = ('paz008', 0.0009400161289562) + +[16326] +centroid = (0.72215018892539184, -1.3863453935880807) +station = ('kfkl', 0.0056971646896696176) +zone = ('paz015', 0.0032085301494206389) + +[16327] +centroid = (0.72670417182286562, -1.3955576951657123) +station = ('kgkj', 0.0033543648936107469) +zone = ('paz003', 0.0020866988390960623) + +[16328] +centroid = (0.72698595523060017, -1.39147317093044) +station = ('kfkl', 0.0050586916455351103) +zone = ('paz008', 0.004422575855956277) + +[16329] +centroid = (0.72952394321568015, -1.3833283127233282) +station = ('kjhw', 0.0061331700545252527) +zone = ('paz004', 0.0003431855857651023) + +[16331] +centroid = (0.72071156638285061, -1.3885608447273923) +station = ('kfkl', 0.0043283815689431626) +zone = ('paz015', 0.0025270742466321321) + +[16332] +centroid = (0.72181087946551181, -1.3852598860598029) +station = ('kfkl', 0.0065278131128146321) +zone = ('paz015', 0.0029445257528466912) + +[16333] +centroid = (0.72775568033731475, -1.3773574715390855) +station = ('kbfd', 0.0041027657800881377) +zone = ('paz005', 0.0049215781534739343) + +[16334] +centroid = (0.72065611727251477, -1.3866527635226493) +station = ('kfkl', 0.0057034516067861352) +zone = ('paz015', 0.0017513447315667095) + +[16335] +centroid = (0.72659831760373217, -1.3989838113939621) +station = ('kgkj', 0.00079415007490947639) +zone = ('paz003', 0.0011397008592162561) + +[16340] +centroid = (0.7295891312632421, -1.3860998083090326) +station = ('kjhw', 0.0063756595357062473) +zone = ('paz004', 0.001880069366042717) + +[16341] +centroid = (0.72546495314736459, -1.3883981625878139) +station = ('kfkl', 0.005233627909453053) +zone = ('paz008', 0.003967804493171522) + +[16342] +centroid = (0.72120298128704208, -1.3952423316231695) +station = ('kfkl', 0.0014530262973930701) +zone = ('paz008', 0.0027721059162298884) + +[16343] +centroid = (0.72302061952994656, -1.3919464169571183) +station = ('kfkl', 0.0016682153829359059) +zone = ('paz008', 0.00044242256535321611) + +[16344] +centroid = (0.72379489994600887, -1.3907576906568775) +station = ('kfkl', 0.0028264866925806365) +zone = ('paz008', 0.0015461601775580908) + +[16345] +centroid = (0.73206795258667967, -1.3802572662781039) +station = ('kjhw', 0.0043067141646862409) +zone = ('paz004', 0.0033610835513317953) + +[16346] +centroid = (0.72219109944305859, -1.3905381980501468) +station = ('kfkl', 0.0025510925450571882) +zone = ('paz008', 0.0011929499827098983) + +[16347] +centroid = (0.72709573644055059, -1.3800207567111662) +station = ('kbfd', 0.0061860759495183642) +zone = ('paz009', 0.003355453108760027) + +[16350] +centroid = (0.73228669470183216, -1.3846472929456453) +station = ('kjhw', 0.0034821909082448583) +zone = ('paz004', 0.0026033926838761805) + +[16351] +centroid = (0.72737212678089636, -1.3852738312405262) +station = ('kfkl', 0.0082479944821588248) +zone = ('paz004', 0.0027360019480439234) + +[16352] +centroid = (0.72897634616286699, -1.3794796871897554) +station = ('kbfd', 0.005302065619638586) +zone = ('paz004', 0.0031773351550738577) + +[16353] +centroid = (0.72423693948566137, -1.3853202046387518) +station = ('kfkl', 0.0067503537803987167) +zone = ('paz009', 0.0018152323990464115) + +[16354] +centroid = (0.72629651526947736, -1.3911402319223296) +station = ('kfkl', 0.0045337336634290633) +zone = ('paz008', 0.0037733598946827649) + +[16360] +centroid = (0.72752487799703092, -1.394359858246776) +station = ('kgkj', 0.0043388776204795632) +zone = ('paz003', 0.0028071886548233639) + +[16361] +centroid = (0.72228512032986369, -1.3848467317192708) +station = ('kfkl', 0.006819898476926615) +zone = ('paz009', 0.0026750488719558215) + +[16362] +centroid = (0.72344764923803195, -1.3956556604966268) +station = ('kfkl', 0.0017425879993472864) +zone = ('paz008', 0.0028455940873735883) + +[16364] +centroid = (0.72171827229540086, -1.3880139981661572) +station = ('kfkl', 0.0044793920472446305) +zone = ('paz015', 0.003104576317402631) + +[16365] +centroid = (0.73024966857195195, -1.3815569955187716) +station = ('kjhw', 0.0055893480124827684) +zone = ('paz004', 0.0015819478330174862) + +[16370] +centroid = (0.72561733784435622, -1.3868390425137147) +station = ('kfkl', 0.0062802360543078835) +zone = ('paz009', 0.0031164771120656943) + +[16371] +centroid = (0.73076843278552228, -1.3845020117387092) +station = ('kjhw', 0.0049482862736821157) +zone = ('paz004', 0.0011778349711281163) + +[16372] +centroid = (0.71907854906822211, -1.394044686690451) +station = ('kfkl', 0.0031979102252625603) +zone = ('paz008', 0.0038151451748746068) + +[16373] +centroid = (0.7192234637560152, -1.3909996456510814) +station = ('kfkl', 0.0037659482379257792) +zone = ('paz008', 0.0034499343033819814) + +[16374] +centroid = (0.7201839009900951, -1.3930360260091383) +station = ('kfkl', 0.0021980828101102697) +zone = ('paz008', 0.0025137697675040875) + +[16401] +centroid = (0.73091729191742483, -1.4033347775928438) +station = ('keri', 0.0045898518005253386) +zone = ('paz003', 0.0051531663844747748) + +[16402] +centroid = (0.73235809612153113, -1.3870096484480972) +station = ('kjhw', 0.0042198910012331775) +zone = ('paz004', 0.003603884459045414) + +[16403] +centroid = (0.72942541937940508, -1.3965098595391379) +station = ('kgkj', 0.0038378749657482008) +zone = ('paz003', 0.0022376906916105792) + +[16404] +centroid = (0.7282736416994291, -1.3925875287512535) +station = ('kgkj', 0.0058046945084097449) +zone = ('paz003', 0.0041945806059529734) + +[16405] +centroid = (0.73210528517937978, -1.3881640092153662) +station = ('kjhw', 0.0049788454024174422) +zone = ('paz004', 0.004107556371753078) + +[16406] +centroid = (0.72866644550088289, -1.4025839369486359) +station = ('kgkj', 0.0027760084048257887) +zone = ('paz003', 0.003519197542791121) + +[16407] +centroid = (0.73167979136103611, -1.3904034760851851) +station = ('kjhw', 0.0065095847632650481) +zone = ('paz002', 0.004616322192186338) + +[16410] +centroid = (0.73169003644374531, -1.4016478994174988) +station = ('keri', 0.003238949121289685) +zone = ('paz001', 0.0039318575501281483) + +[16411] +centroid = (0.73265354545730876, -1.4040662799889398) +station = ('keri', 0.0038823967654969343) +zone = ('ohz089', 0.0046947931409584394) + +[16412] +centroid = (0.73102993546734851, -1.3992369364953789) +station = ('keri', 0.0034668724540650128) +zone = ('paz002', 0.0025154293139440123) + +[16415] +centroid = (0.73369313337296671, -1.400283243928657) +station = ('keri', 0.0010050134122053308) +zone = ('paz001', 0.0017715356982260727) + +[16416] +centroid = (0.72999668309687538, -1.3870602106365275) +station = ('kjhw', 0.0062589696231534911) +zone = ('paz004', 0.0025902811064149461) + +[16417] +centroid = (0.73253931365776581, -1.4017405764007795) +station = ('keri', 0.0025841271253485378) +zone = ('paz001', 0.0033468734730065144) + +[16420] +centroid = (0.72773772089931166, -1.388361580486692) +station = ('kfkl', 0.006873683570989198) +zone = ('paz004', 0.0041133028184216916) + +[16421] +centroid = (0.73602737162116894, -1.395074046976692) +station = ('keri', 0.0035988320420163957) +zone = ('paz001', 0.0027724192926904859) + +[16422] +centroid = (0.72723607836570336, -1.401676976602837) +station = ('kgkj', 0.0013579106630906162) +zone = ('paz003', 0.0026747209624048574) + +[16423] +centroid = (0.7333987312347402, -1.4021900510430458) +station = ('keri', 0.002301451196154759) +zone = ('paz001', 0.0031261044933857405) + +[16424] +centroid = (0.72712874061670585, -1.4039246465201405) +station = ('kgkj', 0.002940216443887372) +zone = ('ohz014', 0.0039765846286343269) + +[16426] +centroid = (0.73267754373452376, -1.3987431653966973) +station = ('keri', 0.0018923283453719472) +zone = ('paz001', 0.0021495994651608455) + +[16427] +centroid = (0.73089804093577526, -1.395703273078621) +station = ('keri', 0.0045534410585717404) +zone = ('paz002', 0.0017238954742569298) + +[16428] +centroid = (0.73603089718625803, -1.3933223123663427) +station = ('keri', 0.0048071285814576337) +zone = ('paz001', 0.0039824327021730681) + +[16433] +centroid = (0.72842513627850214, -1.3987558015804815) +station = ('kgkj', 0.0020293089882045096) +zone = ('paz003', 0.0010074645283694142) + +[16434] +centroid = (0.72949359193998797, -1.3904798167866674) +station = ('kfkl', 0.0076671276103309621) +zone = ('paz004', 0.0051420887880876363) + +[16435] +centroid = (0.72984494417170698, -1.4029896561865545) +station = ('kgkj', 0.0038871441153534763) +zone = ('paz003', 0.00430491369341291) + +[16436] +centroid = (0.73022690947850599, -1.387719159695618) +station = ('kjhw', 0.0062831292669037345) +zone = ('paz004', 0.0031028073853884737) + +[16438] +centroid = (0.73115854877992803, -1.3935636215887237) +station = ('keri', 0.00550866639473588) +zone = ('paz002', 0.0025761257294344654) + +[16440] +centroid = (0.72924304992586431, -1.398462830612242) +station = ('kgkj', 0.0028596246284699144) +zone = ('paz003', 0.0017252633356054945) + +[16441] +centroid = (0.73231379966511556, -1.3959763123868032) +station = ('keri', 0.0033849418512579329) +zone = ('paz002', 0.00044328703705251389) + +[16442] +centroid = (0.73370997580024844, -1.3932213799757001) +station = ('keri', 0.0046997516282544973) +zone = ('paz002', 0.0027189126859450516) + +[16443] +centroid = (0.73198489236757724, -1.4047148966988583) +station = ('khzy', 0.0039126362960876593) +zone = ('ohz089', 0.0040198199373740239) + +[16444] +centroid = (0.73079180274420641, -1.3983654063333955) +station = ('keri', 0.0037898336517657553) +zone = ('paz002', 0.0022088203835497785) + +[16501] +centroid = (0.73515524804723986, -1.3978153309130446) +station = ('keri', 0.0013905818752737811) +zone = ('paz001', 0.00057269568908188261) + +[16502] +centroid = (0.73497040022616122, -1.3980324324187001) +station = ('keri', 0.001164138001846149) +zone = ('paz001', 0.00033754144835245478) + +[16503] +centroid = (0.73525373697692997, -1.3973379135494539) +station = ('keri', 0.0017508043825660736) +zone = ('paz001', 0.00092541461919415835) + +[16504] +centroid = (0.73494198626593865, -1.3971191539810091) +station = ('keri', 0.001796393117277965) +zone = ('paz001', 0.00098544583741921573) + +[16505] +centroid = (0.73533056637060268, -1.3986772443108493) +station = ('keri', 0.0010207583804962312) +zone = ('paz001', 0.00054562877926827007) + +[16506] +centroid = (0.7341264113597743, -1.3989111882437868) +station = ('keri', 0.00054960798001852892) +zone = ('paz001', 0.00077356485328582364) + +[16507] +centroid = (0.7354286538745648, -1.3977346094351397) +station = ('keri', 0.0015875676079319062) +zone = ('paz001', 0.00080464826943538702) + +[16508] +centroid = (0.73472797399305911, -1.3979045346911139) +station = ('keri', 0.0011803327212074291) +zone = ('paz001', 0.00040407789750598308) + +[16509] +centroid = (0.73408607680076077, -1.3969279357081605) +station = ('keri', 0.0019253572069910252) +zone = ('paz001', 0.0013359377522616242) + +[16510] +centroid = (0.73493612195965208, -1.3954705683294526) +station = ('keri', 0.0029955960475544136) +zone = ('paz001', 0.0022036745789766948) + +[16511] +centroid = (0.73594010515856922, -1.3960918357299927) +station = ('keri', 0.0028891616873779856) +zone = ('paz001', 0.0020708986148702231) + +[16546] +centroid = (0.73486955510198093, -1.3971961928141921) +station = ('keri', 0.0017238891531866939) +zone = ('paz001', 0.00092172193814543083) + +[16563] +centroid = (0.73508613300886094, -1.396027537800349) +station = ('keri', 0.0026173006980208953) +zone = ('paz001', 0.0018074477431665886) + +[16601] +centroid = (0.70782288581552566, -1.3678217953576444) +station = ('kaoo', 0.0045120649485410726) +zone = ('paz025', 0.0013229686268487314) + +[16602] +centroid = (0.70707832835662487, -1.3678826200820764) +station = ('kaoo', 0.0037878007649304185) +zone = ('paz025', 0.00064130207263997472) + +[16611] +centroid = (0.70825389487430568, -1.3633756563546515) +station = ('kaoo', 0.0055680714560429386) +zone = ('paz026', 0.0033577372124439274) + +[16613] +centroid = (0.70769664615072891, -1.3707390957490604) +station = ('kaoo', 0.0052301042840133018) +zone = ('paz025', 0.002764616522160146) + +[16616] +centroid = (0.71152792311153679, -1.3690376440744612) +station = ('kfig', 0.0049393980609691865) +zone = ('paz017', 0.0040853007023701178) + +[16617] +centroid = (0.70873405240482179, -1.3669831471987686) +station = ('kaoo', 0.0053668974378117268) +zone = ('paz025', 0.0022294020637506104) + +[16619] +centroid = (0.70964237410743713, -1.3691371103885324) +station = ('kaoo', 0.0065045787099086861) +zone = ('paz025', 0.003366668475657494) + +[16620] +centroid = (0.71280445692644545, -1.3674975306359165) +station = ('kfig', 0.0037518408898348093) +zone = ('paz017', 0.0032172457023413783) + +[16621] +centroid = (0.70218517562561111, -1.3635422131251693) +station = ('kaoo', 0.0028105859384544981) +zone = ('paz026', 0.0037509781325609543) + +[16622] +centroid = (0.703867550851486, -1.3625157675387787) +station = ('kaoo', 0.0033678721926501502) +zone = ('paz026', 0.0019135841412540498) + +[16623] +centroid = (0.70287342876284253, -1.3622676689856079) +station = ('kaoo', 0.003555750601249174) +zone = ('paz026', 0.0027063822241540853) + +[16624] +centroid = (0.70808749518342051, -1.37183708238149) +station = ('kjst', 0.0054020279369889753) +zone = ('paz024', 0.0019915946240569421) + +[16625] +centroid = (0.70293006469706976, -1.370170380212298) +station = ('kaoo', 0.0025450247795193773) +zone = ('paz025', 0.0041589285287938326) + +[16627] +centroid = (0.71135921958603887, -1.3700454495444403) +station = ('kfig', 0.0052096198214633986) +zone = ('paz017', 0.0042408339579267009) + +[16630] +centroid = (0.7060934739663095, -1.3714176099490658) +station = ('kaoo', 0.0043999010294025866) +zone = ('paz024', 0.0019454068459212198) + +[16631] +centroid = (0.70289236558522661, -1.3673887093570545) +station = ('kaoo', 0.00061183347795225611) +zone = ('paz025', 0.003639823174784037) + +[16633] +centroid = (0.70087860469427565, -1.3654570487541173) +station = ('kaoo', 0.0027169653747712288) +zone = ('paz034', 0.0043065710452128095) + +[16634] +centroid = (0.7018135426679839, -1.3643775800650513) +station = ('kaoo', 0.0024644214233658225) +zone = ('paz026', 0.004410574159070286) + +[16635] +centroid = (0.70530243838942819, -1.3700732177328396) +station = ('kaoo', 0.0031065796734940114) +zone = ('paz025', 0.0023503829785969932) + +[16636] +centroid = (0.7086092264567192, -1.3701044591264502) +station = ('kaoo', 0.0057862446810378783) +zone = ('paz025', 0.0029003053965588532) + +[16637] +centroid = (0.70408505378286945, -1.3695117278591804) +station = ('kaoo', 0.0021282535467219491) +zone = ('paz025', 0.0029108800106360587) + +[16638] +centroid = (0.70400656632640735, -1.3649106908850728) +station = ('kaoo', 0.001634379853999494) +zone = ('paz025', 0.0031764478839246125) + +[16639] +centroid = (0.7102704308387674, -1.3691782827055869) +station = ('kfig', 0.0062011513403339644) +zone = ('paz025', 0.003964411307903406) + +[16640] +centroid = (0.71047953873644876, -1.3714148174222625) +station = ('kfig', 0.0063383350402099799) +zone = ('paz024', 0.0041245802889748311) + +[16641] +centroid = (0.70668021875424503, -1.3698214016283616) +station = ('kaoo', 0.0039973196692903064) +zone = ('paz025', 0.0018164947616596614) + +[16645] +centroid = (0.71208319961305877, -1.3700653986577904) +station = ('kfig', 0.0045070748308069517) +zone = ('paz017', 0.0035205990236405979) + +[16646] +centroid = (0.71016281383708935, -1.374049932980216) +station = ('kidi', 0.005030757108572011) +zone = ('paz024', 0.0033895915076563193) + +[16647] +centroid = (0.70512305344890813, -1.3631686952119499) +station = ('kaoo', 0.0033312150074836415) +zone = ('paz026', 0.001654503961256767) + +[16648] +centroid = (0.70571424882643619, -1.3671338563796784) +station = ('kaoo', 0.0023542884729253759) +zone = ('paz025', 0.00085046858212922574) + +[16650] +centroid = (0.70024281615435913, -1.3663851624904504) +station = ('kaoo', 0.0031479790527625499) +zone = ('paz034', 0.0033572398957024004) + +[16651] +centroid = (0.7129894792804492, -1.3680061719398249) +station = ('kfig', 0.0034999371281110763) +zone = ('paz017', 0.0028744982730743605) + +[16652] +centroid = (0.707137983710458, -1.3604858274456619) +station = ('kunv', 0.0059776674908624565) +zone = ('paz026', 0.0017769231189115147) + +[16655] +centroid = (0.70210330223040007, -1.3701379694480884) +station = ('kaoo', 0.002786623148386983) +zone = ('paz034', 0.0038602650633694285) + +[16656] +centroid = (0.7122200857862927, -1.3710623132732371) +station = ('kfig', 0.0046191747078877876) +zone = ('paz017', 0.0035377547339453972) + +[16657] +centroid = (0.70380164721893068, -1.3645033310376575) +station = ('kaoo', 0.0018662473177651522) +zone = ('paz026', 0.0030973582091929899) + +[16659] +centroid = (0.70095135001749875, -1.3681588882493745) +station = ('kaoo', 0.0026050881940966933) +zone = ('paz034', 0.003018948987682955) + +[16661] +centroid = (0.71263692277154644, -1.3694015277702094) +station = ('kfig', 0.0038650405767380095) +zone = ('paz017', 0.0029566694229034617) + +[16662] +centroid = (0.70358978170103115, -1.3665133918305943) +station = ('kaoo', 0.00035926241483516302) +zone = ('paz025', 0.0030258170498849686) + +[16664] +centroid = (0.70128643578058913, -1.368750869025066) +station = ('kaoo', 0.002522512404403451) +zone = ('paz034', 0.0031667637170564198) + +[16665] +centroid = (0.70491588286669637, -1.3689356644862671) +station = ('kaoo', 0.0022006434050810333) +zone = ('paz025', 0.0019763429343745051) + +[16666] +centroid = (0.71359182731189763, -1.3670694537302797) +station = ('kfig', 0.003098339812693059) +zone = ('paz017', 0.002780590670302157) + +[16667] +centroid = (0.7012435704941602, -1.3706359816968525) +station = ('kaoo', 0.003565983600570173) +zone = ('paz034', 0.0030473713709634337) + +[16668] +centroid = (0.70956514328803644, -1.3721685727663213) +station = ('kidi', 0.0063750020651704691) +zone = ('paz024', 0.0030536896877494629) + +[16669] +centroid = (0.70958024038606615, -1.3597281974706636) +station = ('kunv', 0.0034686969635708978) +zone = ('paz027', 0.0039171694907763274) + +[16670] +centroid = (0.70271106078252943, -1.3702222513976674) +station = ('kaoo', 0.0026302030504183737) +zone = ('paz025', 0.0043690986767985791) + +[16671] +centroid = (0.71187707622839813, -1.3683074506753043) +station = ('kfig', 0.0045870222847971065) +zone = ('paz017', 0.0038439806312337349) + +[16672] +centroid = (0.70113806534087708, -1.3655659049395641) +station = ('kaoo', 0.0024460627420994623) +zone = ('paz034', 0.0044063816531998944) + +[16673] +centroid = (0.7035847551527854, -1.3681894838711619) +station = ('kaoo', 0.0010191779059629087) +zone = ('paz025', 0.0030018289288490517) + +[16674] +centroid = (0.70143765110698186, -1.3628974710461901) +station = ('kaoo', 0.0036031595324807326) +zone = ('paz026', 0.0042200137404269887) + +[16677] +centroid = (0.71230096434383006, -1.3656083862535575) +station = ('kfig', 0.0047419417294168069) +zone = ('paz018', 0.0044353115458129226) + +[16678] +centroid = (0.70201640228694329, -1.3655147493391881) +station = ('kaoo', 0.0017079995854615974) +zone = ('paz025', 0.0047481921610733422) + +[16679] +centroid = (0.70084341885655532, -1.3647540824912914) +station = ('kaoo', 0.0030025920917538191) +zone = ('paz035', 0.0041597938422617865) + +[16680] +centroid = (0.71110304015843129, -1.3679470227314749) +station = ('kfig', 0.0053793761893535302) +zone = ('paz025', 0.0045871798725775903) + +[16682] +centroid = (0.70277534125888041, -1.3693473178436424) +station = ('kaoo', 0.0019705384688208229) +zone = ('paz025', 0.004027574780466091) + +[16683] +centroid = (0.70945417525419463, -1.3628242719373613) +station = ('kunv', 0.0046817798749478031) +zone = ('paz026', 0.0042684870345637248) + +[16685] +centroid = (0.70314938277087535, -1.3627991042895478) +station = ('kaoo', 0.0031231126443284928) +zone = ('paz026', 0.0026323856462630649) + +[16686] +centroid = (0.70979645177380324, -1.3657425846197433) +station = ('kunv', 0.0061802950487435801) +zone = ('paz025', 0.0035101443173923066) + +[16689] +centroid = (0.70040036702593655, -1.3636081167577245) +station = ('kaoo', 0.003880924403807343) +zone = ('paz035', 0.0035758169208614187) + +[16691] +centroid = (0.69948420879497974, -1.3639038453461825) +station = ('kaoo', 0.0045014739545031325) +zone = ('paz035', 0.0026903978801668749) + +[16692] +centroid = (0.71123610406060334, -1.3737626517853379) +station = ('kidi', 0.0055436724687736782) +zone = ('paz024', 0.0044581962332555774) + +[16693] +centroid = (0.70643552359311534, -1.3650547503615327) +station = ('kaoo', 0.0033693060384966588) +zone = ('paz025', 0.001817685348638329) + +[16694] +centroid = (0.70084221457937157, -1.363953849029252) +station = ('kaoo', 0.0033736753732273449) +zone = ('paz035', 0.0040401658705148764) + +[16695] +centroid = (0.70167515551159321, -1.3672344746110558) +station = ('kaoo', 0.0017135761650395173) +zone = ('paz034', 0.0039935443614582174) + +[16699] +centroid = (0.70593700519886826, -1.371139474279468) +station = ('kaoo', 0.0041368219850765088) +zone = ('paz024', 0.0021998120222863232) + +[16701] +centroid = (0.73161509200566466, -1.3744575022671417) +station = ('kbfd', 0.0025687730760689999) +zone = ('paz005', 0.0030500333767231945) + +[16720] +centroid = (0.72612615368119016, -1.3616630345728393) +station = ('kelz', 0.0086604655364471133) +zone = ('paz006', 0.0029288480274683665) + +[16724] +centroid = (0.72836068126922604, -1.3678012528323482) +station = ('kbfd', 0.0036370832481707844) +zone = ('paz005', 0.0029175618607560488) + +[16725] +centroid = (0.73143567215855965, -1.3727943780229162) +station = ('kbfd', 0.0019095654159855088) +zone = ('paz005', 0.0020804795292792382) + +[16726] +centroid = (0.72980227087149574, -1.3713481807514214) +station = ('kbfd', 0.00083182932309751193) +zone = ('paz005', 0.00012678149472038029) + +[16727] +centroid = (0.7327067605462021, -1.3706077597228479) +station = ('kbfd', 0.0034323778973393633) +zone = ('paz005', 0.0030650795910097972) + +[16728] +centroid = (0.72545945536022083, -1.3774868527965358) +station = ('kbfd', 0.0055754762666250166) +zone = ('paz009', 0.0041768115327477894) + +[16729] +centroid = (0.73238466003274649, -1.3696824210600256) +station = ('kbfd', 0.0034891925139957382) +zone = ('paz005', 0.0029535044841730454) + +[16730] +centroid = (0.72985852283328756, -1.368736295525812) +station = ('kbfd', 0.0027562906951066617) +zone = ('paz005', 0.0019096734234438936) + +[16731] +centroid = (0.73218970675529882, -1.3676465817540366) +station = ('kbfd', 0.0044230599201452291) +zone = ('paz005', 0.0036917988157174897) + +[16732] +centroid = (0.73054691559685914, -1.3721301057096074) +station = ('kbfd', 0.0010209072845047597) +zone = ('paz005', 0.0010672253699620198) + +[16733] +centroid = (0.7277239327982209, -1.3715277053182815) +station = ('kbfd', 0.0019390031825109847) +zone = ('paz005', 0.0019679897814256419) + +[16734] +centroid = (0.72636426895103967, -1.3760213696368062) +station = ('kbfd', 0.0041713268224927262) +zone = ('paz010', 0.0041828026911067788) + +[16735] +centroid = (0.72668699778302592, -1.3755534817709314) +station = ('kbfd', 0.0036995562667526084) +zone = ('paz010', 0.0042589885774268746) + +[16738] +centroid = (0.72971854742727749, -1.3739186144072961) +station = ('kbfd', 0.0011370457914955043) +zone = ('paz005', 0.0019612927165413786) + +[16740] +centroid = (0.72851711513008222, -1.3732512179546259) +station = ('kbfd', 0.0012062545133083291) +zone = ('paz005', 0.0018722372304790457) + +[16743] +centroid = (0.72898280388109926, -1.3654229973804108) +station = ('kelz', 0.0065421211507339563) +zone = ('paz005', 0.0044286842771638765) + +[16744] +centroid = (0.7307184814623302, -1.3712542471310791) +station = ('kbfd', 0.0014536788005265859) +zone = ('paz005', 0.0010350192960184336) + +[16745] +centroid = (0.73168169376992076, -1.3697432108778722) +station = ('kbfd', 0.002915583267552617) +zone = ('paz005', 0.0023053802160214049) + +[16746] +centroid = (0.72944072591694509, -1.3634946878096375) +station = ('kelz', 0.0055744751301608124) +zone = ('paz006', 0.003071705849375697) + +[16748] +centroid = (0.73211724068475603, -1.363878590431906) +station = ('kelz', 0.0032586769897593264) +zone = ('paz006', 0.0047866612145052974) + +[16749] +centroid = (0.72919070750159687, -1.3690937040500353) +station = ('kbfd', 0.0024986601790872257) +zone = ('paz005', 0.0017084561051733177) + +[16750] +centroid = (0.73110058639546927, -1.3664460744813449) +station = ('kelz', 0.0052793042997199514) +zone = ('paz005', 0.0038749281500963071) + +[16801] +centroid = (0.71172659394029125, -1.3585880087769207) +station = ('kunv', 0.0012456459570023939) +zone = ('paz019', 0.0024748951425604734) + +[16802] +centroid = (0.71213980064070093, -1.3589245082567054) +station = ('kunv', 0.00083904717702628967) +zone = ('paz019', 0.0024341805650187173) + +[16803] +centroid = (0.71212365634511987, -1.359604785239255) +station = ('kunv', 0.0010679942209921736) +zone = ('paz019', 0.0028955358771159986) + +[16820] +centroid = (0.71376463236113763, -1.3507527545258202) +station = ('kunv', 0.0060912169591872609) +zone = ('paz045', 0.0032003218944540871) + +[16821] +centroid = (0.71496355138420997, -1.3648631830228337) +station = ('kfig', 0.0032106380409930961) +zone = ('paz018', 0.0026416426348485314) + +[16822] +centroid = (0.71817331659838268, -1.3560689925208098) +station = ('kunv', 0.0055826356729919919) +zone = ('paz012', 0.0025423048059211423) + +[16823] +centroid = (0.71452125004516953, -1.3573887581412905) +station = ('kunv', 0.0018593511551495418) +zone = ('paz019', 0.0014685195195251271) + +[16825] +centroid = (0.7153540862576363, -1.3668801902261936) +station = ('kfig', 0.0017201534926661825) +zone = ('paz017', 0.0020897734344093497) + +[16826] +centroid = (0.71652609230364306, -1.354033589547134) +station = ('kunv', 0.0050294800503688395) +zone = ('paz045', 0.0026457050702171419) + +[16827] +centroid = (0.71152705044691067, -1.3573048078042695) +station = ('kunv', 0.0018032036842363598) +zone = ('paz019', 0.0020494686368461527) + +[16828] +centroid = (0.7123056941861029, -1.3557814495265437) +station = ('kunv', 0.002333342162613895) +zone = ('paz019', 0.0011156640287643164) + +[16829] +centroid = (0.71700988011900324, -1.3594993149925572) +station = ('kunv', 0.0040834597961682756) +zone = ('paz018', 0.002160807916110776) + +[16830] +centroid = (0.71696141232567534, -1.3688373151829172) +station = ('kfig', 0.00052766686260317084) +zone = ('paz017', 0.0014978939015435654) + +[16832] +centroid = (0.71279785958187281, -1.3522469658050376) +station = ('kunv', 0.0049138671299197093) +zone = ('paz019', 0.0030165319957654339) + +[16833] +centroid = (0.7146129496440693, -1.3714199486902634) +station = ('kfig', 0.0027999985376931029) +zone = ('paz017', 0.0016658957461384728) + +[16834] +centroid = (0.71648949274922868, -1.3628765969083361) +station = ('kunv', 0.0047089739401784021) +zone = ('paz018', 0.0015502029972625276) + +[16835] +centroid = (0.71396934202910389, -1.3592171127058021) +station = ('kunv', 0.0010655840695867242) +zone = ('paz018', 0.002191279471081292) + +[16836] +centroid = (0.71837261574566802, -1.3661309901914822) +station = ('kfig', 0.0026851553252731338) +zone = ('paz017', 0.0038358303377365238) + +[16837] +centroid = (0.71463274167778701, -1.3696375486449568) +station = ('kfig', 0.0019772962498746855) +zone = ('paz017', 0.00095575349059097978) + +[16838] +centroid = (0.7154359072929698, -1.3724673556809703) +station = ('kfig', 0.0030708790000193464) +zone = ('paz017', 0.0021458721907076472) + +[16839] +centroid = (0.71565225830704693, -1.363286051150854) +station = ('kunv', 0.0043605272098893111) +zone = ('paz018', 0.0014359548978314428) + +[16840] +centroid = (0.71426302858233703, -1.364901266107112) +station = ('kfig', 0.0035685490268091676) +zone = ('paz018', 0.0028701508249973509) + +[16841] +centroid = (0.71636365451015993, -1.3560891859802555) +station = ('kunv', 0.003942393932496395) +zone = ('paz019', 0.0029799908164834742) + +[16843] +centroid = (0.71563309459186009, -1.369483854951026) +station = ('kfig', 0.0010468003663379047) +zone = ('paz017', 0.0001199707369146531) + +[16844] +centroid = (0.71399793052225158, -1.3601713016611598) +station = ('kunv', 0.0014952855702109976) +zone = ('paz018', 0.0016881171958337462) + +[16845] +centroid = (0.71771347470035973, -1.3616784807367195) +station = ('kunv', 0.0052395823570778651) +zone = ('paz018', 0.00232041447474126) + +[16847] +centroid = (0.71557328215839433, -1.3642442020036138) +station = ('kfig', 0.0034242009484247255) +zone = ('paz018', 0.0021440412532935786) + +[16848] +centroid = (0.71577039964411449, -1.3532563769779284) +station = ('kunv', 0.0050015374750122243) +zone = ('paz045', 0.0023489444223928637) + +[16849] +centroid = (0.71491717798598453, -1.3633580983423763) +station = ('kunv', 0.0039989439096015707) +zone = ('paz018', 0.0015466429460858182) + +[16851] +centroid = (0.71247598596121997, -1.3576424592013603) +station = ('kunv', 0.00096392510318290907) +zone = ('paz019', 0.0014434652887621131) + +[16852] +centroid = (0.71448597694098681, -1.3529559010939052) +station = ('kunv', 0.0046278511622367298) +zone = ('paz045', 0.0030603890974771645) + +[16853] +centroid = (0.71452399021209523, -1.3576402949930877) +station = ('kunv', 0.0017645887513698874) +zone = ('paz019', 0.0015975734103691661) + +[16854] +centroid = (0.7138051239997838, -1.3521606767268191) +station = ('kunv', 0.0050441806257404617) +zone = ('paz045', 0.0033769120540135238) + +[16855] +centroid = (0.71552315630227692, -1.367913390236789) +station = ('kfig', 0.0010792539695287616) +zone = ('paz017', 0.0012982928748994111) + +[16858] +centroid = (0.71555863884596993, -1.3648975834623904) +station = ('kfig', 0.0029551832784569482) +zone = ('paz018', 0.0026350144962388718) + +[16859] +centroid = (0.7162960928148151, -1.3617623961671557) +station = ('kunv', 0.0040371566794641482) +zone = ('paz018', 0.0009324765598040356) + +[16860] +centroid = (0.71450175471742494, -1.3644947963776153) +station = ('kfig', 0.003682742715208276) +zone = ('paz018', 0.0024953386676022809) + +[16861] +centroid = (0.71312968157926204, -1.3704422326965886) +station = ('kfig', 0.0035987005793662982) +zone = ('paz017', 0.0025339613685117783) + +[16863] +centroid = (0.71397667241196239, -1.3696408647705356) +station = ('kfig', 0.0025959234931144061) +zone = ('paz017', 0.0016118273391576147) + +[16865] +centroid = (0.71055923047009495, -1.3612854849490481) +station = ('kunv', 0.003084789133941163) +zone = ('paz018', 0.0048434587698732573) + +[16866] +centroid = (0.71260622243000393, -1.3645217617145584) +station = ('kunv', 0.0043898867345843126) +zone = ('paz018', 0.0036518340021672248) + +[16868] +centroid = (0.71090703968343238, -1.3592711306461513) +station = ('kunv', 0.0020990117759620221) +zone = ('paz019', 0.0034183029968129193) + +[16870] +centroid = (0.71212397050438536, -1.3624622557439128) +station = ('kunv', 0.0029409395410587083) +zone = ('paz018', 0.003372416721465734) + +[16871] +centroid = (0.71884203950128434, -1.3618058374122377) +station = ('kunv', 0.0063143430476969367) +zone = ('paz018', 0.0034530445159911666) + +[16872] +centroid = (0.71501732497846393, -1.3501592204070945) +station = ('kunv', 0.0068004985609483532) +zone = ('paz045', 0.0019695607263748461) + +[16874] +centroid = (0.71532010469709995, -1.3609380771614386) +station = ('kunv', 0.0028807868961595725) +zone = ('paz018', 0.00036742951225431639) + +[16875] +centroid = (0.71280621970898994, -1.3541541568918618) +station = ('kunv', 0.0034719182432685286) +zone = ('paz019', 0.0016228993802055859) + +[16876] +centroid = (0.71498526328010481, -1.3663771863357685) +station = ('kfig', 0.0022484432065611407) +zone = ('paz017', 0.0025296146896298102) + +[16877] +centroid = (0.7110243258091663, -1.3624176625815243) +station = ('kunv', 0.0033956966370717744) +zone = ('paz018', 0.0044428999911454116) + +[16878] +centroid = (0.71469384565489924, -1.3670041958695476) +station = ('kfig', 0.0021482082663680717) +zone = ('paz017', 0.0021759774733595776) + +[16879] +centroid = (0.71505936996014452, -1.3639789643171882) +station = ('kunv', 0.0044789548376508543) +zone = ('paz018', 0.0019674229158879982) + +[16881] +centroid = (0.71605260193086939, -1.3669463731114289) +station = ('kfig', 0.001332240659689587) +zone = ('paz017', 0.0020784973504836472) + +[16882] +centroid = (0.71405697501084653, -1.3495491580203522) +station = ('kunv', 0.0070329754887102696) +zone = ('paz045', 0.0030059918628362833) + +[16901] +centroid = (0.72817389613267758, -1.3497902228966379) +station = ('kelm', 0.0096253815071357385) +zone = ('paz037', 0.0013978775345663689) + +[16911] +centroid = (0.72703505134245872, -1.3461265673571914) +station = ('kipt', 0.0076038625862682539) +zone = ('paz037', 0.0026149285320663075) + +[16912] +centroid = (0.72742597018832045, -1.344658570923339) +station = ('kipt', 0.0076587648874775691) +zone = ('paz037', 0.0031983490780613647) + +[16914] +centroid = (0.73049387504089103, -1.3401277834516243) +station = ('kelm', 0.0056581255222891329) +zone = ('paz038', 0.0036686677277738473) + +[16915] +centroid = (0.72911660082155716, -1.3608542315441727) +station = ('kelz', 0.0056793327176774162) +zone = ('paz006', 0.0011151050403269338) + +[16917] +centroid = (0.72818106943590322, -1.3448941031058956) +station = ('kelm', 0.0080282793663325105) +zone = ('paz037', 0.0027186077537070382) + +[16920] +centroid = (0.73257765854143209, -1.3488050718003497) +station = ('kelm', 0.0059748850926617456) +zone = ('paz037', 0.0035338485757212155) + +[16921] +centroid = (0.72822337621697153, -1.3536120227196073) +station = ('kelz', 0.0087323314930484366) +zone = ('paz006', 0.0044372973789726456) + +[16922] +centroid = (0.72721258623397156, -1.3561610062789751) +station = ('kelz', 0.0085020088089915787) +zone = ('paz006', 0.002871919856287829) + +[16923] +centroid = (0.73217560449494268, -1.3590973831191151) +station = ('kelz', 0.003101419544517558) +zone = ('paz006', 0.0036029024570182091) + +[16925] +centroid = (0.73213947617942632, -1.3401274343857741) +station = ('kelm', 0.0040953528644646188) +zone = ('nyz024', 0.0033788880741778314) + +[16926] +centroid = (0.72827502050953807, -1.3386974337697375) +station = ('kelm', 0.008092414338345108) +zone = ('paz038', 0.0026491233136053472) + +[16927] +centroid = (0.73231767429605499, -1.3554001648981531) +station = ('kelz', 0.005065372288804759) +zone = ('paz006', 0.0048387231160520799) + +[16928] +centroid = (0.73222391520863783, -1.3514868923690866) +station = ('kelm', 0.0078633446660528548) +zone = ('paz037', 0.0039359935013666119) + +[16929] +centroid = (0.73235778196226586, -1.3462336258535088) +station = ('kelm', 0.004694451898996789) +zone = ('paz037', 0.0036518309943882831) + +[16930] +centroid = (0.72577391133155267, -1.3463264948230074) +station = ('kipt', 0.0065109435087791039) +zone = ('paz041', 0.0027799440245473849) + +[16932] +centroid = (0.72917447593955331, -1.3428440219132105) +station = ('kelm', 0.0067918582889326092) +zone = ('paz037', 0.0041016855148332445) + +[16933] +centroid = (0.72988664008753712, -1.3449943897247152) +station = ('kelm', 0.006416645162420481) +zone = ('paz037', 0.002628778938174179) + +[16935] +centroid = (0.7309001527841702, -1.3492219262388958) +station = ('kelm', 0.007280723068615446) +zone = ('paz037', 0.0019528734957047792) + +[16936] +centroid = (0.73218525616570618, -1.3433295376045304) +station = ('kelm', 0.003861127427763933) +zone = ('nyz024', 0.0042688144023298891) + +[16937] +centroid = (0.73247796533455822, -1.3563117852730548) +station = ('kelz', 0.0043997050426717544) +zone = ('paz006', 0.0045726329854918965) + +[16938] +centroid = (0.72572764265308232, -1.3503216232939923) +station = ('kipt', 0.0082617087562502911) +zone = ('paz037', 0.0036463159495392747) + +[16939] +centroid = (0.72713945693831306, -1.3444086048678683) +station = ('kipt', 0.0073395661550595369) +zone = ('paz037', 0.0035087012155120122) + +[16940] +centroid = (0.73278339795365721, -1.3480617709785101) +station = ('kelm', 0.0054047190892744018) +zone = ('paz037', 0.0037285555754998476) + +[16941] +centroid = (0.73283406486184255, -1.3571338877106216) +station = ('kelz', 0.0036926495032919057) +zone = ('paz006', 0.0046084103390725151) + +[16942] +centroid = (0.73238420624714107, -1.3500513590593211) +station = ('kelm', 0.0068579747366058746) +zone = ('paz037', 0.0035589897897897686) + +[16943] +centroid = (0.73007403608932375, -1.3545991285846579) +station = ('kelz', 0.0068867625896495517) +zone = ('paz006', 0.0039712936052693553) + +[16946] +centroid = (0.73144560308200357, -1.346307749986841) +station = ('kelm', 0.0054554638992053523) +zone = ('paz037', 0.002825675412418723) + +[16947] +centroid = (0.72884080389315709, -1.3404835688196435) +station = ('kelm', 0.0072146336342143649) +zone = ('paz038', 0.0037874582209714166) + +[16948] +centroid = (0.73050258423385839, -1.3571543255161624) +station = ('kelz', 0.0052997744237764117) +zone = ('paz006', 0.0026124551931418181) + +[16950] +centroid = (0.73129135088271235, -1.3531878204449101) +station = ('kelz', 0.0070035500775789995) +zone = ('paz037', 0.0042439953950186423) + +[17002] +centroid = (0.70690145669022775, -1.358711316288574) +station = ('kunv', 0.0060655786221523638) +zone = ('paz026', 0.0023095797257668992) + +[17003] +centroid = (0.70445604096867342, -1.3363916094817576) +station = ('kmui', 0.0012393662681976822) +zone = ('paz059', 0.0014904643318080705) + +[17004] +centroid = (0.70862912321019189, -1.3566362245277079) +station = ('kunv', 0.0046212763613179778) +zone = ('paz027', 0.0014979183155383652) + +[17005] +centroid = (0.70865340074008709, -1.3405821624690886) +station = ('kseg', 0.003807165943733746) +zone = ('paz057', 0.0032948093247090918) + +[17006] +centroid = (0.70313700838647875, -1.3534337547898085) +station = ('kryt', 0.0098407352273265237) +zone = ('paz028', 0.0046741013483665942) + +[17007] +centroid = (0.70032722027698557, -1.3459764690415199) +station = ('kcxy', 0.0039196526543597296) +zone = ('paz063', 0.0020613177760071002) + +[17009] +centroid = (0.70923394960917796, -1.3537696434043549) +station = ('kunv', 0.0053018710314635727) +zone = ('paz027', 0.00082005874904113763) + +[17010] +centroid = (0.70298357649193588, -1.3366227259813068) +station = ('kmui', 0.002719738630840201) +zone = ('paz059', 0.002279707734959906) + +[17011] +centroid = (0.70223025748019019, -1.3426616524596695) +station = ('kcxy', 0.0010974599693066701) +zone = ('paz057', 0.003729357564503068) + +[17013] +centroid = (0.70236737054622678, -1.3473467793971381) +station = ('kmdt', 0.0057867988633034618) +zone = ('paz063', 0.0016485301862981889) + +[17015] +centroid = (0.70123534999338333, -1.3479096829874915) +station = ('kmdt', 0.006183522497402047) +zone = ('paz063', 0.0005345506749064717) + +[17016] +centroid = (0.70297455313970314, -1.3334714642036609) +station = ('klns', 0.0031203621575981648) +zone = ('paz059', 0.0017309098144293674) + +[17017] +centroid = (0.70926320132744147, -1.3418473341905666) +station = ('kseg', 0.003128764957414079) +zone = ('paz050', 0.0033920940974529611) + +[17018] +centroid = (0.70549805489199158, -1.340868815345436) +station = ('kcxy', 0.0035988598490321621) +zone = ('paz057', 0.00063393742039784403) + +[17019] +centroid = (0.69977271172033439, -1.3442885262153312) +station = ('kcxy', 0.0031384337373335366) +zone = ('paz063', 0.0034638096739768834) + +[17020] +centroid = (0.7053603484140093, -1.344627888035089) +station = ('kcxy', 0.0042868963183553222) +zone = ('paz056', 0.0029459739764364267) + +[17021] +centroid = (0.70390046776117854, -1.3555656744711198) +station = ('kunv', 0.0093812680469975603) +zone = ('paz027', 0.0049316021986582446) + +[17022] +centroid = (0.70104730821977335, -1.3370778903969343) +station = ('kmdt', 0.0021805835893138593) +zone = ('paz059', 0.0040321748517900815) + +[17023] +centroid = (0.70832906620518898, -1.3406966735213119) +station = ('kseg', 0.0041106254914642067) +zone = ('paz057', 0.0029863065630518957) + +[17024] +centroid = (0.70523398657616487, -1.3492584210735552) +station = ('kcxy', 0.0069273926125986854) +zone = ('paz056', 0.00061135217952446659) + +[17025] +centroid = (0.7032645919547994, -1.3434581334638174) +station = ('kcxy', 0.0021390008747702569) +zone = ('paz057', 0.0033519938887337907) + +[17026] +centroid = (0.70613300567386716, -1.3339795295489165) +station = ('kmui', 0.0018493581129601486) +zone = ('paz059', 0.0016303652593467116) + +[17027] +centroid = (0.7008524247554957, -1.3438254903647773) +station = ('kcxy', 0.0022114500260161556) +zone = ('paz063', 0.0035982993049261591) + +[17028] +centroid = (0.70505123315018847, -1.3379553895849596) +station = ('kmui', 0.0013878183812036263) +zone = ('paz057', 0.0016291130315547186) + +[17029] +centroid = (0.70787093472983298, -1.3546721531605612) +station = ('kunv', 0.0059560098273134) +zone = ('paz027', 0.00091425684144977944) + +[17030] +centroid = (0.70876485746611939, -1.339114497647794) +station = ('kmui', 0.003724525862844883) +zone = ('paz057', 0.0034552789716778046) + +[17032] +centroid = (0.70668254004215014, -1.340986066564585) +station = ('kmui', 0.0036700066010114541) +zone = ('paz057', 0.0014815287921420819) + +[17033] +centroid = (0.70287590713038028, -1.3375777876012906) +station = ('kmdt', 0.0021284499683660472) +zone = ('paz057', 0.003136590406780037) + +[17034] +centroid = (0.70177263215031715, -1.3401603512954665) +station = ('kmdt', 0.00029295168060796745) +zone = ('paz057', 0.0036118948976141892) + +[17035] +centroid = (0.70517909597118955, -1.3540493847768647) +station = ('kunv', 0.008562626968498176) +zone = ('paz028', 0.0032567483373221167) + +[17036] +centroid = (0.70282560674133787, -1.3388966805571449) +station = ('kmdt', 0.0013988031999234811) +zone = ('paz057', 0.0027047276942497229) + +[17037] +centroid = (0.70570735477589075, -1.3512630538925183) +station = ('kunv', 0.0092130307915076932) +zone = ('paz028', 0.0017137990074475992) + +[17038] +centroid = (0.70629774730196293, -1.3361517488826562) +station = ('kmui', 0.00061981264494780314) +zone = ('paz059', 0.0021883562514343072) + +[17039] +centroid = (0.70324043659795199, -1.3306513611982884) +station = ('klns', 0.0031725455913170024) +zone = ('paz059', 0.0031663541798498296) + +[17040] +centroid = (0.70376558871658446, -1.3492109830244861) +station = ('kmdt', 0.0074718001124303244) +zone = ('paz056', 0.0014323146125118443) + +[17041] +centroid = (0.70191267736949725, -1.3358681154259144) +station = ('klns', 0.0036409587582693715) +zone = ('paz059', 0.0028451057204900484) + +[17042] +centroid = (0.70327722813858395, -1.3338647916038904) +station = ('kmui', 0.0030663896898463923) +zone = ('paz059', 0.0013369084316652193) + +[17043] +centroid = (0.70245275205323432, -1.3421607255110548) +station = ('kcxy', 0.00085877515758210924) +zone = ('paz057', 0.0033434887825302363) + +[17044] +centroid = (0.70820638701206629, -1.3542752827419502) +station = ('kunv', 0.0058403660287300605) +zone = ('paz027', 0.00065318917820074158) + +[17045] +centroid = (0.70855293958834231, -1.3439197206910922) +station = ('kseg', 0.0042239576728050742) +zone = ('paz050', 0.0031536081275898658) + +[17046] +centroid = (0.70479638017281232, -1.333948637221156) +station = ('kmui', 0.0020307756646979623) +zone = ('paz059', 0.0004525252320371819) + +[17047] +centroid = (0.70470368573623898, -1.3513788041285106) +station = ('kunv', 0.0099748619200113985) +zone = ('paz028', 0.0027199816919053601) + +[17048] +centroid = (0.70819862029689495, -1.3397382608691641) +station = ('kmui', 0.0035977474004247152) +zone = ('paz057', 0.0028250300803138169) + +[17049] +centroid = (0.70952936403837064, -1.3483730853571883) +station = ('kseg', 0.0058889092852290785) +zone = ('paz028', 0.0028755936234258553) + +[17050] +centroid = (0.70245997771633761, -1.3443673976442287) +station = ('kcxy', 0.0024154828960352625) +zone = ('paz056', 0.0040891734506741184) + +[17051] +centroid = (0.70615180286991119, -1.3574432996804153) +station = ('kunv', 0.0068857011905384185) +zone = ('paz027', 0.0033711446726396883) + +[17052] +centroid = (0.70296474438930689, -1.3611184918462171) +station = ('kaoo', 0.0044161060882278447) +zone = ('paz026', 0.0024459370281834062) + +[17053] +centroid = (0.70380471899841424, -1.3443655825018066) +station = ('kcxy', 0.0030167024004852379) +zone = ('paz056', 0.0033862856433832344) + +[17055] +centroid = (0.70132420470560231, -1.3439837917279329) +station = ('kcxy', 0.0021434536057447148) +zone = ('paz063', 0.0034901935594261) + +[17056] +centroid = (0.70750914542918708, -1.3500865274437488) +station = ('kseg', 0.0080889017513233272) +zone = ('paz028', 0.00064240613570827501) + +[17057] +centroid = (0.70150999500447708, -1.3390964160367433) +station = ('kmdt', 0.00057230599553454364) +zone = ('paz057', 0.0039411985441894651) + +[17058] +centroid = (0.70695306607620911, -1.3535454558619362) +station = ('kunv', 0.0071888590530258282) +zone = ('paz027', 0.0020228119057597383) + +[17059] +centroid = (0.7084239423033275, -1.3507293671138434) +station = ('kunv', 0.0075821659833150354) +zone = ('paz028', 0.0010329738725140328) + +[17060] +centroid = (0.70632185029893302, -1.3595059996035923) +station = ('kunv', 0.0066705845759035725) +zone = ('paz026', 0.0014747547749258071) + +[17061] +centroid = (0.70801677444212963, -1.3423216099615036) +station = ('kseg', 0.0044048379258330187) +zone = ('paz057', 0.0031494214038911774) + +[17062] +centroid = (0.70767711591639904, -1.3471755975041027) +station = ('kseg', 0.006339986407231742) +zone = ('paz056', 0.0027754037719647136) + +[17063] +centroid = (0.71141411019101419, -1.3523674458833028) +station = ('kunv', 0.0050665424900727179) +zone = ('paz027', 0.0031575730884564651) + +[17064] +centroid = (0.70235942929813011, -1.3347599360706532) +station = ('klns', 0.003212119852479013) +zone = ('paz059', 0.0021948434163905988) + +[17065] +centroid = (0.70005515835318466, -1.3472026326542161) +station = ('kthv', 0.0053016902828303672) +zone = ('paz063', 0.0013791599083166424) + +[17066] +centroid = (0.70428962382449578, -1.3590736990011656) +station = ('kaoo', 0.0060250521970110962) +zone = ('paz026', 0.0018633716710453063) + +[17067] +centroid = (0.70494494259874207, -1.331948769151051) +station = ('kmui', 0.0034268738866165558) +zone = ('paz059', 0.0019393322622609992) + +[17068] +centroid = (0.70529481130059679, -1.3470166503691237) +station = ('kcxy', 0.0055256118057749673) +zone = ('paz056', 0.0011337202472104738) + +[17069] +centroid = (0.70605526870898327, -1.3433806059384437) +station = ('kcxy', 0.0044392314062453751) +zone = ('paz057', 0.002622678591732) + +[17070] +centroid = (0.70166426465706089, -1.3415591628777699) +station = ('kcxy', 0.00032505538261655729) +zone = ('paz057', 0.0038932951822769775) + +[17071] +centroid = (0.70334002508507065, -1.3544092542153332) +station = ('kunv', 0.010173158459800548) +zone = ('paz028', 0.0048529679447769274) + +[17072] +centroid = (0.70221107631171065, -1.3453299467267037) +station = ('kcxy', 0.0031022893055977505) +zone = ('paz063', 0.0027330729594546707) + +[17073] +centroid = (0.70341722099788639, -1.3309036310883717) +station = ('klns', 0.0033038091535557818) +zone = ('paz059', 0.0029193842403005886) + +[17074] +centroid = (0.70649010003882518, -1.3464968215047095) +station = ('kcxy', 0.0060598411582131482) +zone = ('paz056', 0.0020619937718450439) + +[17075] +centroid = (0.70501316751920251, -1.358462275257607) +station = ('kunv', 0.007956601131632917) +zone = ('paz026', 0.0019940911535818243) + +[17076] +centroid = (0.70888617530242559, -1.3493447974182364) +station = ('kseg', 0.0068492301626802473) +zone = ('paz028', 0.0019069387839576292) + +[17077] +centroid = (0.70516553476290156, -1.3358040967489513) +station = ('kmui', 0.00066846670848384889) +zone = ('paz059', 0.0012134353613676766) + +[17078] +centroid = (0.70314868463917457, -1.3365919907331791) +station = ('kmui', 0.0025533149465675991) +zone = ('paz059', 0.0021522826473477433) + +[17080] +centroid = (0.70931364134282404, -1.3404669707384569) +station = ('kseg', 0.0031845674297358603) +zone = ('paz052', 0.0038920665833203074) + +[17081] +centroid = (0.7016401616600908, -1.3488507121602891) +station = ('kmdt', 0.0068891137136902481) +zone = ('paz063', 0.00069581256127869201) + +[17082] +centroid = (0.70684925389230058, -1.3515049914334296) +station = ('kunv', 0.0082174135810495954) +zone = ('paz028', 0.00070889933062163448) + +[17083] +centroid = (0.70297676970785317, -1.334087705055955) +station = ('kmui', 0.0032147489164932367) +zone = ('paz059', 0.0015864995012847159) + +[17084] +centroid = (0.70992162678775628, -1.3548405948866713) +station = ('kunv', 0.0042417073226575265) +zone = ('paz027', 0.0011434492025731487) + +[17086] +centroid = (0.71018536349102512, -1.3460329478961144) +station = ('kseg', 0.0040294209228330458) +zone = ('paz050', 0.0015461446809839688) + +[17087] +centroid = (0.70573686829354199, -1.3313514302145559) +station = ('krdg', 0.004345992442102882) +zone = ('paz059', 0.0026378280190435983) + +[17088] +centroid = (0.70337952188604325, -1.3315854090540782) +station = ('klns', 0.0032125262782908004) +zone = ('paz059', 0.0024654369988360105) + +[17090] +centroid = (0.70368546065062543, -1.3470633204733218) +station = ('kcxy', 0.0047515251551038711) +zone = ('paz056', 0.0017674766531430848) + +[17093] +centroid = (0.70349350933949106, -1.3426917593892667) +station = ('kcxy', 0.001910170092654466) +zone = ('paz057', 0.002761288612242496) + +[17094] +centroid = (0.70827501335825482, -1.3473641628764881) +station = ('kseg', 0.0060123122552060695) +zone = ('paz028', 0.0028392489858921717) + +[17097] +centroid = (0.70825632088196588, -1.3382735805608907) +station = ('kmui', 0.0029532727055588625) +zone = ('paz057', 0.0031744746297239514) + +[17098] +centroid = (0.70841093960040002, -1.3374864196149487) +station = ('kmui', 0.0028524654659465277) +zone = ('paz057', 0.0036006098020006849) + +[17099] +centroid = (0.70916640536712572, -1.3539642650692447) +station = ('kunv', 0.0052469904855932661) +zone = ('paz027', 0.00065991848331570821) + +[17101] +centroid = (0.70264608217447766, -1.3420600374665073) +station = ('kcxy', 0.00094159845037621807) +zone = ('paz057', 0.0031371255217632617) + +[17102] +centroid = (0.7028505474963489, -1.3422503307148521) +station = ('kcxy', 0.0011920031465038727) +zone = ('paz057', 0.0030379265012759572) + +[17103] +centroid = (0.70294819866799796, -1.341570577331078) +station = ('kcxy', 0.0010575727864143773) +zone = ('paz057', 0.0026970847235881531) + +[17104] +centroid = (0.70258089412691571, -1.3414969593432289) +station = ('kcxy', 0.0006868792376854367) +zone = ('paz057', 0.0030119213283008707) + +[17109] +centroid = (0.70319237023035197, -1.3408372772458523) +station = ('kcxy', 0.0013240809377454647) +zone = ('paz057', 0.0022718594643807229) + +[17110] +centroid = (0.70364367746833267, -1.341921458323899) +station = ('kcxy', 0.0017971783211427987) +zone = ('paz057', 0.0022496039446514042) + +[17111] +centroid = (0.70280420900470852, -1.3401884685497163) +station = ('kmdt', 0.0012129320496277389) +zone = ('paz057', 0.0025814982478759123) + +[17112] +centroid = (0.70464354169021515, -1.3400029051436442) +station = ('kcxy', 0.0029002687348680034) +zone = ('paz057', 0.00074086488418754267) + +[17113] +centroid = (0.7020758656545586, -1.3409014530024486) +station = ('kcxy', 0.00033533359298214396) +zone = ('paz057', 0.0033708048937832048) + +[17120] +centroid = (0.70276006962792548, -1.3418580854187592) +station = ('kcxy', 0.00095295411214620812) +zone = ('paz057', 0.0029634846450342259) + +[17201] +centroid = (0.6974519997738351, -1.3553557637219824) +station = ('khgr', 0.0046722063870867862) +zone = ('paz036', 0.0010489497828284019) + +[17202] +centroid = (0.69595222089430386, -1.3545338881772182) +station = ('khgr', 0.0034812964525143641) +zone = ('paz036', 0.0017576790103551957) + +[17210] +centroid = (0.70173310044275949, -1.3553956270420979) +station = ('kryt', 0.0088575807138796762) +zone = ('paz036', 0.0049384096442070232) + +[17211] +centroid = (0.69384079137841126, -1.3683549934441286) +station = ('kcbe', 0.0054072111883441904) +zone = ('mdz502', 0.0034053203069899676) + +[17212] +centroid = (0.69484344812709697, -1.3625082451697028) +station = ('khgr', 0.0048697195996957772) +zone = ('paz035', 0.0020829972270384393) + +[17213] +centroid = (0.70239365520476182, -1.3573639395593271) +station = ('kaoo', 0.0073284182559345138) +zone = ('paz026', 0.0041111500816986488) + +[17214] +centroid = (0.69373540839817582, -1.3521296098661335) +station = ('kryt', 0.0006383156950036566) +zone = ('paz064', 0.0040226501918731459) + +[17215] +centroid = (0.69949719404461463, -1.3594883543248544) +station = ('kaoo', 0.006848114600698646) +zone = ('paz036', 0.0034919375187075115) + +[17217] +centroid = (0.70229649272530326, -1.3564972439593717) +station = ('kaoo', 0.0079970635671120002) +zone = ('paz026', 0.0046504008491713537) + +[17219] +centroid = (0.70234122551403189, -1.3559041287196665) +station = ('khgr', 0.0094653133997368109) +zone = ('paz026', 0.0049676580581882413) + +[17220] +centroid = (0.70146622214683707, -1.3567966900991364) +station = ('kaoo', 0.0079305455040319887) +zone = ('paz036', 0.0046058377574572894) + +[17221] +centroid = (0.69932070635065302, -1.3581538581254873) +station = ('khgr', 0.0065207861468269011) +zone = ('paz036', 0.0027653156019288075) + +[17222] +centroid = (0.69632322553340043, -1.3525251014746351) +station = ('kryt', 0.0030279440484961614) +zone = ('paz064', 0.0037228694420116809) + +[17223] +centroid = (0.69964141060070695, -1.3603576504653954) +station = ('kaoo', 0.0062238135947173664) +zone = ('paz035', 0.0036110625997283498) + +[17224] +centroid = (0.69757216569283498, -1.3595674700998475) +station = ('khgr', 0.0051680673813341354) +zone = ('paz035', 0.0029696140243584447) + +[17225] +centroid = (0.69435411016471527, -1.3572180474871529) +station = ('khgr', 0.001511293538333682) +zone = ('paz036', 0.0025735050047620387) + +[17228] +centroid = (0.69790655332422447, -1.362986290851824) +station = ('kaoo', 0.0062209432142096644) +zone = ('paz035', 0.0011048807976437741) + +[17229] +centroid = (0.69959784718257711, -1.3615337754884367) +station = ('kaoo', 0.005559942972301171) +zone = ('paz035', 0.0030857921508957117) + +[17233] +centroid = (0.69770592772670781, -1.361132716279621) +station = ('khgr', 0.0058914953132858149) +zone = ('paz035', 0.0018901364780926006) + +[17235] +centroid = (0.69563924845283631, -1.3560868472390577) +station = ('khgr', 0.0027840486689510884) +zone = ('paz036', 0.0012656316073389906) + +[17236] +centroid = (0.69459772322170865, -1.3604303783353258) +station = ('khgr', 0.0033333871510365801) +zone = ('paz035', 0.0031471191270928227) + +[17237] +centroid = (0.69531538515683622, -1.3533589499780683) +station = ('kryt', 0.0024169717461504149) +zone = ('paz036', 0.0028602709742512203) + +[17238] +centroid = (0.6956552531220771, -1.3636421506781384) +station = ('khgr', 0.0060047960196173344) +zone = ('paz035', 0.0012020949393137781) + +[17239] +centroid = (0.70043195748539766, -1.3585079330708392) +station = ('kaoo', 0.0070374354343911826) +zone = ('paz036', 0.0038857638493605593) + +[17240] +centroid = (0.70076489649350826, -1.3540209533633496) +station = ('kryt', 0.0076137869246601922) +zone = ('paz063', 0.0042022771443890258) + +[17241] +centroid = (0.70121269561969235, -1.3510322864588196) +station = ('kryt', 0.0077987161738727823) +zone = ('paz063', 0.0019248444134969927) + +[17243] +centroid = (0.7029754607109141, -1.3582141941577286) +station = ('kaoo', 0.0066246641434792638) +zone = ('paz026', 0.0032444989465035428) + +[17244] +centroid = (0.69964601826993222, -1.3553985417419487) +station = ('khgr', 0.0068240505902417651) +zone = ('paz036', 0.0029028652882030783) + +[17246] +centroid = (0.69908105519106167, -1.3554368517190298) +station = ('khgr', 0.0062611499077229365) +zone = ('paz036', 0.0023573383952030669) + +[17247] +centroid = (0.69461967946369874, -1.354015123963648) +station = ('kryt', 0.0023357505350407029) +zone = ('paz036', 0.0029425529123081563) + +[17249] +centroid = (0.70234455909290328, -1.3596020450723294) +station = ('kaoo', 0.0056493050440799856) +zone = ('paz026', 0.0032523966585928047) + +[17250] +centroid = (0.69354394577923206, -1.3530541980373774) +station = ('kryt', 0.0012717513274756234) +zone = ('paz036', 0.0042429904112595979) + +[17251] +centroid = (0.70043207965844534, -1.3558686636292658) +station = ('khgr', 0.007563460361456437) +zone = ('paz036', 0.0035974272207892058) + +[17252] +centroid = (0.69661357850776218, -1.3582545287167422) +station = ('khgr', 0.0039043398639528205) +zone = ('paz036', 0.0013760543891660193) + +[17253] +centroid = (0.70185462771857587, -1.3614773315404274) +station = ('kaoo', 0.0043945891499280422) +zone = ('paz026', 0.0035715163909928365) + +[17254] +centroid = (0.69761209882612063, -1.3542072149011224) +station = ('kryt', 0.0047112936556832335) +zone = ('paz036', 0.001902890737547335) + +[17255] +centroid = (0.70094586968364747, -1.3589572680867652) +station = ('kaoo', 0.0065180482898763176) +zone = ('paz036', 0.0044953022155102993) + +[17256] +centroid = (0.69434283533774732, -1.3557247786857314) +station = ('khgr', 0.001630796407250558) +zone = ('paz036', 0.0025911188288948329) + +[17257] +centroid = (0.69894888140680811, -1.3525091142586871) +station = ('kryt', 0.0055936915499454412) +zone = ('paz063', 0.0036636298682506657) + +[17260] +centroid = (0.70329866078179837, -1.3595015490139994) +station = ('kaoo', 0.0056307096231933227) +zone = ('paz026', 0.0024105713579658317) + +[17261] +centroid = (0.69570415724771795, -1.3527725717092758) +station = ('kryt', 0.0025137721076229883) +zone = ('paz036', 0.0030804105105463227) + +[17262] +centroid = (0.70066239330653857, -1.3568226780516985) +station = ('khgr', 0.0077672261414316922) +zone = ('paz036', 0.0038045490528688087) + +[17263] +centroid = (0.69337082657072668, -1.3564324573375377) +station = ('khgr', 0.00051857317025103824) +zone = ('mdz003', 0.0025146135279771938) + +[17264] +centroid = (0.70127198445438255, -1.3612475763976948) +station = ('kaoo', 0.0047855783228697938) +zone = ('paz026', 0.0041411055136589764) + +[17265] +centroid = (0.69860848984279167, -1.3575407414125542) +station = ('khgr', 0.0057488858447289617) +zone = ('paz036', 0.0019189521787407232) + +[17266] +centroid = (0.69967806251499876, -1.3511104946626016) +station = ('kryt', 0.0062629219431638355) +zone = ('paz063', 0.0023685544267382534) + +[17267] +centroid = (0.69477988323573936, -1.365539620281029) +station = ('kcbe', 0.0077635713499636314) +zone = ('paz035', 0.0026673934616947559) + +[17268] +centroid = (0.69420247595930207, -1.3539499533693786) +station = ('kryt', 0.0021050596960617276) +zone = ('paz036', 0.0033017038048342917) + +[17270] +centroid = (0.69559626099335969, -1.3578279004343847) +station = ('khgr', 0.0028356461703929825) +zone = ('paz036', 0.0016326429608207107) + +[17271] +centroid = (0.69983782995472643, -1.3579201236320602) +station = ('khgr', 0.0070046721091191885) +zone = ('paz036', 0.0031667207899972968) + +[17272] +centroid = (0.69410915320419797, -1.3547562954837999) +station = ('khgr', 0.0019268244231844367) +zone = ('paz036', 0.0030619326939906122) + +[17301] +centroid = (0.69630329387334255, -1.3435364987472318) +station = ('kthv', 0.0013339278694870266) +zone = ('paz065', 0.0034073921279278011) + +[17302] +centroid = (0.69494280972141298, -1.3336702746587557) +station = ('klns', 0.0054418742558681923) +zone = ('paz066', 0.0045134191999891514) + +[17304] +centroid = (0.69773455112644056, -1.3479655858834327) +station = ('kthv', 0.0047932388645779769) +zone = ('paz064', 0.0018562548805438138) + +[17306] +centroid = (0.69779277531028705, -1.3482563402835226) +station = ('kryt', 0.0049982377460440547) +zone = ('paz064', 0.0019499418916405105) + +[17307] +centroid = (0.69722002806295258, -1.3496075567371242) +station = ('kryt', 0.0040444517061712631) +zone = ('paz064', 0.0019743222909909658) + +[17309] +centroid = (0.69588605546236071, -1.3343064646244001) +station = ('klns', 0.0047290576919222288) +zone = ('paz065', 0.0037965535498726425) + +[17311] +centroid = (0.6949298244717782, -1.3411541417715522) +station = ('kthv', 0.0018311626266509561) +zone = ('paz065', 0.0023806307397401475) + +[17313] +centroid = (0.69610669998639785, -1.3379598227212597) +station = ('kthv', 0.0030514859875879268) +zone = ('paz065', 0.0010950068606863123) + +[17314] +centroid = (0.69386447549636077, -1.3321452583182405) +station = ('kapg', 0.0054791193649908814) +zone = ('mdz007', 0.003009463006923957) + +[17315] +centroid = (0.69859597583205479, -1.3415310281702277) +station = ('kthv', 0.001935945861577528) +zone = ('paz065', 0.0026179408071910618) + +[17316] +centroid = (0.69752895134055559, -1.3440424696973849) +station = ('kthv', 0.0018725999374393898) +zone = ('paz064', 0.0032537655988173044) + +[17317] +centroid = (0.69762054621970027, -1.3355814800028596) +station = ('klns', 0.0039219387837437798) +zone = ('paz065', 0.0028614382757205245) + +[17318] +centroid = (0.69852017618264073, -1.3390692412602898) +station = ('kthv', 0.0028275059631772408) +zone = ('paz065', 0.0017870918074005598) + +[17319] +centroid = (0.70093333821961812, -1.3403070985789745) +station = ('kmdt', 0.0007791104875475033) +zone = ('paz065', 0.0042952392179434569) + +[17320] +centroid = (0.69409346269422245, -1.3506677744445406) +station = ('kryt', 0.00088247622245345549) +zone = ('paz064', 0.0028976703854667876) + +[17321] +centroid = (0.69379038626961365, -1.3341805042122836) +station = ('kapg', 0.0062023634269081016) +zone = ('mdz006', 0.0047075025847164737) + +[17322] +centroid = (0.69561683842524058, -1.3357481763997172) +station = ('klns', 0.0055134798659338697) +zone = ('paz065', 0.0028250535068439207) + +[17324] +centroid = (0.69868690748608364, -1.348004297286242) +station = ('kthv', 0.0051143582787126296) +zone = ('paz063', 0.0023368107111297596) + +[17325] +centroid = (0.69509926103556174, -1.3478765042784111) +station = ('kryt', 0.0031921995782964825) +zone = ('paz064', 0.00080039284956731865) + +[17327] +centroid = (0.69428337197013201, -1.339597063732678) +station = ('kthv', 0.0029611885870236164) +zone = ('paz065', 0.0024764126784409487) + +[17329] +centroid = (0.69397509446435224, -1.3413051651117271) +station = ('kthv', 0.0027364224342319374) +zone = ('paz065', 0.0032247683492481441) + +[17331] +centroid = (0.69446109884786256, -1.3435192723475149) +station = ('kthv', 0.0025533680307985676) +zone = ('mdz005', 0.004000098960901032) + +[17339] +centroid = (0.70048320035223632, -1.3419014917572563) +station = ('kcxy', 0.0015055014152043444) +zone = ('paz065', 0.0043084247644388871) + +[17340] +centroid = (0.69385964093433272, -1.3459417893492827) +station = ('kdmw', 0.0029124020589809778) +zone = ('paz064', 0.0024404464929812146) + +[17343] +centroid = (0.69584975261391924, -1.3497468514647257) +station = ('kryt', 0.0027453034300114116) +zone = ('paz064', 0.0015663794266676185) + +[17344] +centroid = (0.69474031662159663, -1.3442389588645747) +station = ('kthv', 0.002658174188273979) +zone = ('paz064', 0.0028998231827336261) + +[17345] +centroid = (0.69949461095732168, -1.3394966200342255) +station = ('kmdt', 0.0021430569808314781) +zone = ('paz065', 0.0027751629820291163) + +[17347] +centroid = (0.69913877322942508, -1.3384615176147454) +station = ('kmdt', 0.0026953225026153786) +zone = ('paz065', 0.0024590185901755728) + +[17349] +centroid = (0.69368097157880615, -1.3377496327194418) +station = ('kthv', 0.0043562290228074648) +zone = ('paz065', 0.0032315330688925748) + +[17350] +centroid = (0.69621337451027976, -1.3452892980084246) +station = ('kthv', 0.0026657743909126079) +zone = ('paz064', 0.0018831422610979672) + +[17352] +centroid = (0.69396387199726184, -1.3351742074219066) +station = ('kthv', 0.0058115949790640822) +zone = ('paz065', 0.0041106894699916444) + +[17353] +centroid = (0.69609280716555211, -1.3503934435927119) +station = ('kryt', 0.002784879770654856) +zone = ('paz064', 0.0020719892543601607) + +[17355] +centroid = (0.6939406067583328, -1.338598054722129) +station = ('kthv', 0.0037136144128172518) +zone = ('paz065', 0.0028227973966812449) + +[17356] +centroid = (0.69632676855178188, -1.33661256816506) +station = ('kthv', 0.0040460696539974268) +zone = ('paz065', 0.0019734988624349418) + +[17360] +centroid = (0.6955900127146375, -1.3395470076897307) +station = ('kthv', 0.0020861520544091477) +zone = ('paz065', 0.001187586560628922) + +[17361] +centroid = (0.6940392876742405, -1.3382667912301003) +station = ('kthv', 0.0038212154552131152) +zone = ('paz065', 0.0027747318680663904) + +[17362] +centroid = (0.69547319782780148, -1.3416119765409351) +station = ('kthv', 0.0012198992438063085) +zone = ('paz065', 0.0022838476373100388) + +[17363] +centroid = (0.69409341033434491, -1.3366845804499976) +station = ('kthv', 0.0047446101505331344) +zone = ('paz065', 0.0032398261767212135) + +[17364] +centroid = (0.69689939362606879, -1.342146466171066) +station = ('kthv', 0.00030850896074219222) +zone = ('paz065', 0.0023191846956267348) + +[17365] +centroid = (0.69911016728298481, -1.3428209835670841) +station = ('kthv', 0.0025402692285328341) +zone = ('paz065', 0.0036938785301086595) + +[17366] +centroid = (0.69695866500746639, -1.3361665318214204) +station = ('klns', 0.0046978901629589733) +zone = ('paz065', 0.0022837402209818876) + +[17368] +centroid = (0.6978499697498749, -1.3355033067056625) +station = ('klns', 0.0037296646685396136) +zone = ('paz065', 0.0029959297529560855) + +[17370] +centroid = (0.7002512286413537, -1.3400359093197993) +station = ('kmdt', 0.0013800367288180648) +zone = ('paz065', 0.0035852906103616862) + +[17371] +centroid = (0.69643370487505163, -1.3402028151561676) +station = ('kthv', 0.0012997818843601531) +zone = ('paz065', 0.00087583099928468665) + +[17372] +centroid = (0.69815730477785853, -1.3457562433965033) +station = ('kthv', 0.0033280911032681514) +zone = ('paz064', 0.0027169425034341455) + +[17401] +centroid = (0.69742417922555844, -1.3392514710874905) +station = ('kthv', 0.0021402265937001085) +zone = ('paz065', 0.00069673495817789365) + +[17402] +centroid = (0.69740712735876642, -1.3379461393399239) +station = ('kthv', 0.0030938550993063235) +zone = ('paz065', 0.0011302638266034702) + +[17403] +centroid = (0.69679177662439074, -1.338890833704151) +station = ('kthv', 0.0022856516645648724) +zone = ('paz065', 0.00019243494829278971) + +[17404] +centroid = (0.69817720153133123, -1.3399512084912002) +station = ('kthv', 0.0020992511210545396) +zone = ('paz065', 0.0015747590331660615) + +[17406] +centroid = (0.69838740898644147, -1.337628524322646) +station = ('kmdt', 0.0036473000831453344) +zone = ('paz065', 0.0020147172282540694) + +[17407] +centroid = (0.69610315696801628, -1.3388787560257271) +station = ('kthv', 0.0023634901708981574) +zone = ('paz065', 0.00065934645168120492) + +[17408] +centroid = (0.69689270901503364, -1.3404058842146371) +station = ('kthv', 0.0011412987459668118) +zone = ('paz065', 0.00099126498228289625) + +[17501] +centroid = (0.70086486895306244, -1.3300099876047655) +station = ('klns', 0.0014587559975525073) +zone = ('paz066', 0.0020769339797836244) + +[17502] +centroid = (0.69989280782616414, -1.3379719702128534) +station = ('kmdt', 0.002238449914898028) +zone = ('paz065', 0.0032812782473771117) + +[17505] +centroid = (0.69924000232604078, -1.3298088733150584) +station = ('klns', 0.0017099087069018806) +zone = ('paz066', 0.00082506222982947695) + +[17507] +centroid = (0.7015881857549664, -1.3267335508131668) +station = ('krdg', 0.0030161422285035627) +zone = ('paz060', 0.0039958161894033464) + +[17508] +centroid = (0.70030913866593492, -1.3302684185071083) +station = ('klns', 0.0010933346186572902) +zone = ('paz066', 0.0014884407085517723) + +[17509] +centroid = (0.69659677098706541, -1.3270872592393759) +station = ('kmqs', 0.0025238036732979155) +zone = ('paz066', 0.0036268859228004492) + +[17512] +centroid = (0.69883278210496536, -1.3349374535088736) +station = ('klns', 0.0028233615777335068) +zone = ('paz065', 0.003837616495099113) + +[17516] +centroid = (0.6971100025069068, -1.3329316164127267) +station = ('klns', 0.0032031615636448256) +zone = ('paz066', 0.0024161186939367081) + +[17517] +centroid = (0.70240341159528052, -1.3287694424790331) +station = ('krdg', 0.0030695182667926572) +zone = ('paz066', 0.003849616006388295) + +[17518] +centroid = (0.6947969001959462, -1.3308661588693314) +station = ('klns', 0.0054076705412205587) +zone = ('mdz007', 0.0032073046470555192) + +[17519] +centroid = (0.70060025958516758, -1.3268590399863849) +station = ('kmqs', 0.0034841359099259646) +zone = ('paz066', 0.0034576178402177249) + +[17520] +centroid = (0.69983371097769165, -1.332544799090607) +station = ('klns', 0.00073683103521080462) +zone = ('paz066', 0.0016622259051452001) + +[17522] +centroid = (0.70112466121222172, -1.3294022814125137) +station = ('klns', 0.0019908604177859852) +zone = ('paz066', 0.0024850579115009261) + +[17527] +centroid = (0.69828670348860145, -1.3262983180575969) +station = ('kmqs', 0.0016983851259471708) +zone = ('paz067', 0.0033080900644718325) + +[17529] +centroid = (0.69886356971297059, -1.3281456792576629) +station = ('klns', 0.003006712006362659) +zone = ('paz066', 0.0020117327837437015) + +[17532] +centroid = (0.69565605597353297, -1.3314769193877745) +station = ('klns', 0.0045147112083739217) +zone = ('paz066', 0.0032605754559848622) + +[17535] +centroid = (0.69781816985090361, -1.3268493185024515) +station = ('kmqs', 0.0020446946840186591) +zone = ('paz067', 0.00367530970458551) + +[17536] +centroid = (0.69547939374664614, -1.3277378307180567) +station = ('kmqs', 0.0035701913430567708) +zone = ('mdz007', 0.0038211651609187766) + +[17538] +centroid = (0.69957384890536212, -1.3336854590232479) +station = ('klns', 0.0016406041885905021) +zone = ('paz066', 0.0023366958003584529) + +[17540] +centroid = (0.69983414731000471, -1.3297645070454724) +station = ('klns', 0.0015072260408614125) +zone = ('paz066', 0.0012338407218052266) + +[17543] +centroid = (0.70129130524920225, -1.3316055850602313) +station = ('klns', 0.0011250765063637366) +zone = ('paz066', 0.0025018878186224445) + +[17545] +centroid = (0.70125006311897753, -1.3340314181875783) +station = ('klns', 0.0020939383470548233) +zone = ('paz059', 0.003305120165960713) + +[17547] +centroid = (0.6993268673629125, -1.3366842837440245) +station = ('kmdt', 0.0033252629185277173) +zone = ('paz065', 0.0031992800360133148) + +[17550] +centroid = (0.69945623116707034, -1.3366324125586553) +station = ('kmdt', 0.003266793776167537) +zone = ('paz065', 0.0033276349747794025) + +[17551] +centroid = (0.69782106709746183, -1.3329327159701554) +station = ('klns', 0.0025334105284390762) +zone = ('paz066', 0.001959338501137903) + +[17552] +centroid = (0.70000340934086314, -1.3353649370025644) +station = ('klns', 0.0028182403527088049) +zone = ('paz065', 0.0043596529121205582) + +[17554] +centroid = (0.69883512084616317, -1.3338534469637522) +station = ('klns', 0.0021274984089943078) +zone = ('paz066', 0.0023582977654683906) + +[17555] +centroid = (0.70026704132437678, -1.3257417500124284) +station = ('kmqs', 0.0027566362317368877) +zone = ('paz067', 0.0038369670585146742) + +[17557] +centroid = (0.69987441205584822, -1.3277198189201762) +station = ('klns', 0.0030477808577061816) +zone = ('paz066', 0.0025427910881904215) + +[17560] +centroid = (0.69660759202842781, -1.3304240146099238) +station = ('klns', 0.0036892306791441332) +zone = ('paz066', 0.0022799041593093514) + +[17562] +centroid = (0.69761574656425729, -1.3280571037981241) +station = ('klns', 0.0037725929638384261) +zone = ('paz066', 0.0024303159240381578) + +[17563] +centroid = (0.69395596565575035, -1.3298240576795508) +station = ('kapg', 0.0051451695363912168) +zone = ('mdz007', 0.0021615449088748526) + +[17565] +centroid = (0.69634626387952669, -1.3322277425786899) +station = ('klns', 0.0038440980759737696) +zone = ('paz066', 0.0027604701470193304) + +[17566] +centroid = (0.69581365920498806, -1.329024819055185) +station = ('klns', 0.004808018133288859) +zone = ('paz066', 0.0033389173955051792) + +[17569] +centroid = (0.70286910034629757, -1.328135818147389) +station = ('krdg', 0.0023981900288272419) +zone = ('paz060', 0.003398589281214461) + +[17570] +centroid = (0.70039961653435834, -1.3363785544189526) +station = ('kmdt', 0.0029079577569108951) +zone = ('paz065', 0.0042282884476027216) + +[17572] +centroid = (0.69769547320448833, -1.3285457610820974) +station = ('klns', 0.0034485854622469951) +zone = ('paz066', 0.0020724107752451717) + +[17576] +centroid = (0.69878087601301109, -1.3298843413519144) +station = ('klns', 0.0019557275303940672) +zone = ('paz066', 0.00068670598799482757) + +[17578] +centroid = (0.70207787278319844, -1.3292393723801326) +station = ('klns', 0.0026727565354067919) +zone = ('paz066', 0.0034139327726788794) + +[17579] +centroid = (0.69744065513369713, -1.3296049490452553) +station = ('klns', 0.0031586432059995144) +zone = ('paz066', 0.0016879303214000706) + +[17581] +centroid = (0.70092883527014793, -1.3273002417679969) +station = ('klns', 0.0034382844837207004) +zone = ('paz066', 0.0033599853570472635) + +[17582] +centroid = (0.69801197121104497, -1.3346388974870274) +station = ('klns', 0.0031234571799353566) +zone = ('paz065', 0.0036722684032987744) + +[17584] +centroid = (0.69733827411977523, -1.3309848412584671) +station = ('klns', 0.0028801495279956154) +zone = ('paz066', 0.0015419763430215342) + +[17601] +centroid = (0.69942745068770495, -1.3319465176763159) +station = ('klns', 0.00076677339483719289) +zone = ('paz066', 0.0010559497931272176) + +[17602] +centroid = (0.69838692029425098, -1.330749867581271) +station = ('klns', 0.0019197563674500527) +zone = ('paz066', 0.00048513521145375108) + +[17603] +centroid = (0.69866994288575435, -1.3322173578696404) +station = ('klns', 0.0015521341148224505) +zone = ('paz066', 0.0011237961388128014) + +[17606] +centroid = (0.70008070997343386, -1.3317544092855489) +station = ('klns', 0.00010161110891193561) +zone = ('paz066', 0.0014230651488054984) + +[17701] +centroid = (0.7216071646352189, -1.341412171248167) +station = ('kipt', 0.0018326635043174944) +zone = ('paz046', 0.0021709084415121697) + +[17702] +centroid = (0.71878746305557439, -1.3452521574019423) +station = ('kipt', 0.0024069688084480843) +zone = ('paz046', 0.0022623374937856041) + +[17721] +centroid = (0.71878985415664964, -1.3494607396404463) +station = ('kipt', 0.0054000390564863171) +zone = ('paz045', 0.0020104616684592223) + +[17723] +centroid = (0.72317757698957841, -1.3521305872505147) +station = ('kipt', 0.0079536585454963935) +zone = ('paz041', 0.0039151380025056418) + +[17724] +centroid = (0.72679922245392925, -1.3405021042162997) +station = ('kipt', 0.0070046244108518275) +zone = ('paz038', 0.0045515229005351748) + +[17727] +centroid = (0.72449818036809999, -1.3525682285604521) +station = ('kipt', 0.0088516099951088823) +zone = ('paz041', 0.0044854574287876486) + +[17728] +centroid = (0.72142790186774663, -1.3452747768690483) +station = ('kipt', 0.0025877946536126137) +zone = ('paz041', 0.0020181530831031146) + +[17729] +centroid = (0.72450753533289058, -1.3567511719122443) +station = ('kelz', 0.010834371569808193) +zone = ('paz012', 0.0038368424939101962) + +[17730] +centroid = (0.71751269202321033, -1.3417813781981338) +station = ('kipt', 0.0024869288688339187) +zone = ('paz046', 0.0021215256328241277) + +[17731] +centroid = (0.72307957675207901, -1.3365499282982061) +station = ('kipt', 0.0054241916108649559) +zone = ('paz042', 0.00092038316228397975) + +[17737] +centroid = (0.72080825762341105, -1.338419350460017) +station = ('kipt', 0.0031482902634100752) +zone = ('paz042', 0.0034270504768968107) + +[17739] +centroid = (0.72251772035927686, -1.3509055930084173) +station = ('kipt', 0.0068508370561616077) +zone = ('paz041', 0.0030380380038656264) + +[17740] +centroid = (0.71995931202194852, -1.3485767827341888) +station = ('kipt', 0.0046070363695232741) +zone = ('paz041', 0.0033141190277419124) + +[17742] +centroid = (0.71974816208904224, -1.3369618260016767) +station = ('kipt', 0.0041307500872746154) +zone = ('paz051', 0.0037483457046402491) + +[17744] +centroid = (0.7197907132162058, -1.3465786599933354) +station = ('kipt', 0.0031089911989000576) +zone = ('paz041', 0.0032477958624025317) + +[17745] +centroid = (0.72043343071325272, -1.3520175597281554) +station = ('kunv', 0.0090237770132587554) +zone = ('paz045', 0.0036377895626160672) + +[17747] +centroid = (0.71615358668138984, -1.3496938109087577) +station = ('kipt', 0.0066458223014378669) +zone = ('paz045', 0.0010452673578543782) + +[17748] +centroid = (0.71821000341925967, -1.350063506550915) +station = ('kipt', 0.0059870889159341547) +zone = ('paz045', 0.0013055179378996724) + +[17749] +centroid = (0.71684583662260826, -1.3407425407740543) +station = ('kipt', 0.0033579849032026351) +zone = ('paz051', 0.0022466082058201441) + +[17750] +centroid = (0.71659494554263414, -1.352320426713254) +station = ('kunv', 0.006054688096579804) +zone = ('paz045', 0.0013680397256447306) + +[17751] +centroid = (0.71826524309008533, -1.3534125315861043) +station = ('kunv', 0.0066505027490851194) +zone = ('paz045', 0.0025052892246717521) + +[17752] +centroid = (0.71872901197892514, -1.3426861743356602) +station = ('kipt', 0.0012322792257271457) +zone = ('paz046', 0.00086853238793596307) + +[17754] +centroid = (0.72102364870639968, -1.3419699086639343) +station = ('kipt', 0.0011340220320601253) +zone = ('paz046', 0.00148852640875292) + +[17756] +centroid = (0.71921534797499342, -1.3393622820416997) +station = ('kipt', 0.0024344857981055692) +zone = ('paz046', 0.0023385897685735137) + +[17758] +centroid = (0.72187161692348112, -1.335798511695345) +station = ('kipt', 0.0053533621464626662) +zone = ('paz042', 0.001529392716909351) + +[17760] +centroid = (0.72279774098446692, -1.3553960808277032) +station = ('kunv', 0.010148024250702718) +zone = ('paz012', 0.0023413639956243607) + +[17762] +centroid = (0.72054574265061866, -1.3386702938998689) +station = ('kipt', 0.0029024498956242263) +zone = ('paz042', 0.0037486973495053115) + +[17763] +centroid = (0.72444035760998138, -1.3434877866078088) +station = ('kipt', 0.004559154796696112) +zone = ('paz041', 0.0029288301177160907) + +[17764] +centroid = (0.72142748298872617, -1.3581041686016828) +station = ('kunv', 0.00847399289347338) +zone = ('paz012', 0.0012978343670949244) + +[17765] +centroid = (0.72545893176144516, -1.3434401565725218) +station = ('kipt', 0.0055605223583869816) +zone = ('paz041', 0.0035594102213621129) + +[17767] +centroid = (0.71704887077449286, -1.3519872084524631) +station = ('kunv', 0.0065308315911057112) +zone = ('paz045', 0.0010699571236232953) + +[17768] +centroid = (0.72533852149635014, -1.3396446588613797) +station = ('kipt', 0.0057860979303108809) +zone = ('paz042', 0.0037493510240443483) + +[17771] +centroid = (0.72321742285640145, -1.3445272698037114) +station = ('kipt', 0.0036223391661217613) +zone = ('paz041', 0.0017982053385522652) + +[17772] +centroid = (0.71776764972034168, -1.3388950050410631) +station = ('kipt', 0.003450949342936974) +zone = ('paz051', 0.0018391329819376079) + +[17774] +centroid = (0.72049270209465044, -1.335753063321623) +station = ('kipt', 0.0050624828370167971) +zone = ('paz042', 0.0028897245418564614) + +[17776] +centroid = (0.72282913945771021, -1.3490366420855042) +station = ('kipt', 0.0057242625716927191) +zone = ('paz041', 0.0016053215723736028) + +[17777] +centroid = (0.7174440656770219, -1.3407915321661579) +station = ('kipt', 0.0027978072399422772) +zone = ('paz046', 0.002464997191804381) + +[17778] +centroid = (0.7206083999707652, -1.3610114508031923) +station = ('kfig', 0.0070788829075751512) +zone = ('paz012', 0.0032399468003792694) + +[17779] +centroid = (0.71920340992290976, -1.3504814430935976) +station = ('kipt', 0.0060867659749164089) +zone = ('paz045', 0.0022423988507121748) + +[17801] +centroid = (0.71270038294314897, -1.3396276069945878) +station = ('kseg', 0.0015079705266511827) +zone = ('paz052', 0.00067699711197465842) + +[17810] +centroid = (0.71752859197269592, -1.3444510687285696) +station = ('kipt', 0.0028505111525306587) +zone = ('paz046', 0.0025494535840768096) + +[17812] +centroid = (0.71105645732069545, -1.347881303933854) +station = ('kseg', 0.0049557611840707044) +zone = ('paz050', 0.0021488466970294392) + +[17813] +centroid = (0.71175226773358802, -1.3469069389723431) +station = ('kseg', 0.0040846043750297108) +zone = ('paz050', 0.0013600774220900761) + +[17814] +centroid = (0.72035387860594691, -1.3327882550679677) +station = ('kipt', 0.0072734065213335653) +zone = ('paz042', 0.0035901939794338446) + +[17815] +centroid = (0.71593472239318978, -1.3337822200769784) +station = ('kseg', 0.0068765234682669624) +zone = ('paz053', 0.00053566950906960506) + +[17820] +centroid = (0.71376355025700133, -1.3334968063843999) +station = ('kseg', 0.0062645513465701096) +zone = ('paz053', 0.0026697424976017) + +[17821] +centroid = (0.7153962010524868, -1.337687778250751) +station = ('kseg', 0.0042076529115315361) +zone = ('paz051', 0.00070473550530412272) + +[17822] +centroid = (0.71502676720971725, -1.3370119518577941) +station = ('kseg', 0.0043455090444368622) +zone = ('paz051', 0.001261707496948697) + +[17823] +centroid = (0.71114304310488696, -1.3399973549966229) +station = ('kseg', 0.001724143257147102) +zone = ('paz052', 0.0020594100795857471) + +[17824] +centroid = (0.71300731654540472, -1.3352703052505213) +station = ('kseg', 0.0048115965137065612) +zone = ('paz052', 0.0026898054044537777) + +[17827] +centroid = (0.71127158660429635, -1.3433455771803562) +station = ('kseg', 0.0017420058596601857) +zone = ('paz050', 0.0013820750564784324) + +[17829] +centroid = (0.71384924592327414, -1.3466228168234111) +station = ('kseg', 0.0040878749472065112) +zone = ('paz049', 0.001647622014796719) + +[17830] +centroid = (0.71010577647713424, -1.3405030990539732) +station = ('kseg', 0.0024201229111699757) +zone = ('paz052', 0.0031623002848586526) + +[17832] +centroid = (0.71219809463771755, -1.3344616418481947) +station = ('kseg', 0.0053881787283001237) +zone = ('paz052', 0.0033990377944202051) + +[17834] +centroid = (0.71174893415471674, -1.3345987374609389) +station = ('kseg', 0.0053203747860444649) +zone = ('paz052', 0.0034361047075197955) + +[17835] +centroid = (0.71347291802995927, -1.3474694411369685) +station = ('kseg', 0.0045885501216158513) +zone = ('paz049', 0.0023806475429472658) + +[17836] +centroid = (0.71059932068301324, -1.3370349902039202) +station = ('kseg', 0.0038756220157468674) +zone = ('paz052', 0.0027590291260019191) + +[17837] +centroid = (0.71514825957894856, -1.3429462109409149) +station = ('kseg', 0.0029506744304960888) +zone = ('paz049', 0.0015553209683463254) + +[17840] +centroid = (0.71160724832603994, -1.3340096015719283) +station = ('kseg', 0.0057811075413088681) +zone = ('paz058', 0.0030949371661300974) + +[17841] +centroid = (0.71078305149337051, -1.3500567870332949) +station = ('kunv', 0.0069267875957220145) +zone = ('paz028', 0.0034447422640413419) + +[17842] +centroid = (0.71214582202662036, -1.3446042911836018) +station = ('kseg', 0.0023042158964172383) +zone = ('paz050', 0.00069810928292672483) + +[17844] +centroid = (0.71513082373972114, -1.3453941224832995) +station = ('kseg', 0.0039832537895389602) +zone = ('paz049', 0.00036198979527346081) + +[17845] +centroid = (0.71356686910359401, -1.347596117134078) +station = ('kseg', 0.0047042338964359068) +zone = ('paz049', 0.002401805327981104) + +[17846] +centroid = (0.71805891026591451, -1.3354757130501886) +station = ('kipt', 0.0055769948214651963) +zone = ('paz053', 0.0021931727430217034) + +[17847] +centroid = (0.71572432295186184, -1.3406053578948476) +station = ('kseg', 0.0034187880484037149) +zone = ('paz051', 0.0020374479823636596) + +[17850] +centroid = (0.71498453024181896, -1.3414155222803308) +station = ('kseg', 0.0026021513968882185) +zone = ('paz052', 0.0027856286633836298) + +[17851] +centroid = (0.71214875417976364, -1.3340301964571017) +station = ('kseg', 0.0057164884174668853) +zone = ('paz052', 0.0037280953337172108) + +[17853] +centroid = (0.71025700925681956, -1.3440204610955173) +station = ('kseg', 0.002820785731628282) +zone = ('paz050', 0.0015585106373172922) + +[17855] +centroid = (0.71367186811139405, -1.3433220501420393) +station = ('kseg', 0.0018435909187757482) +zone = ('paz049', 0.0017858701904746228) + +[17856] +centroid = (0.7167255659838534, -1.3429851666898194) +station = ('kipt', 0.0032479266710185887) +zone = ('paz049', 0.0023395339299610942) + +[17857] +centroid = (0.71440054307410172, -1.3399411379414159) +station = ('kseg', 0.0023644178140273648) +zone = ('paz052', 0.0016328941892882276) + +[17859] +centroid = (0.71762640022397783, -1.3333982825481248) +station = ('kseg', 0.0080995649796495438) +zone = ('paz053', 0.0011968334474042996) + +[17860] +centroid = (0.71326307709399195, -1.337114804110614) +station = ('kseg', 0.0034875792913668987) +zone = ('paz052', 0.0013205623164871335) + +[17861] +centroid = (0.71162700545317248, -1.345339999823195) +station = ('kseg', 0.0029483889248158529) +zone = ('paz050', 0.00017084144417746261) + +[17862] +centroid = (0.71315036373089813, -1.3448878024672959) +station = ('kseg', 0.0026194813553550313) +zone = ('paz050', 0.0015899670900302847) + +[17864] +centroid = (0.71043150727543392, -1.3422597554928128) +station = ('kseg', 0.0020211143726319228) +zone = ('paz050', 0.0024531112180944271) + +[17865] +centroid = (0.71541360198512927, -1.3401819410183138) +station = ('kseg', 0.0032065434049444274) +zone = ('paz051', 0.0018125001533166687) + +[17866] +centroid = (0.71220795574799134, -1.3357433592909818) +station = ('kseg', 0.0044183806660596419) +zone = ('paz052', 0.0024641947341605907) + +[17867] +centroid = (0.71059535878561109, -1.3384685163850458) +station = ('kseg', 0.0029570962174528615) +zone = ('paz052', 0.0024217527967610531) + +[17868] +centroid = (0.7148470855632244, -1.3375150604679737) +station = ('kseg', 0.0039354815002028976) +zone = ('paz051', 0.0012687956551004089) + +[17870] +centroid = (0.71239667820000951, -1.3419598555674428) +station = ('kseg', 0.00029041174668596596) +zone = ('paz052', 0.002446833431663754) + +[17872] +centroid = (0.71128094156908706, -1.3386276380529503) +station = ('kseg', 0.0024908738426601251) +zone = ('paz052', 0.0017275261873800811) + +[17876] +centroid = (0.71313706432199797, -1.3408782575766895) +station = ('kseg', 0.00091883648434735034) +zone = ('paz052', 0.0015578413289722636) + +[17878] +centroid = (0.7186570869604505, -1.3320961622063818) +station = ('kseg', 0.0095148821946119105) +zone = ('paz053', 0.002469836504751298) + +[17880] +centroid = (0.71370368546365792, -1.3460285496663993) +station = ('kseg', 0.003616382653364491) +zone = ('paz049', 0.0014647061887087507) + +[17881] +centroid = (0.71179598823135048, -1.3381441818501476) +station = ('kseg', 0.0026641712604037354) +zone = ('paz052', 0.0013117823638769529) + +[17884] +centroid = (0.71656208099281904, -1.3381345650859691) +station = ('kipt', 0.0046925686195954316) +zone = ('paz051', 0.00050889939166084194) + +[17885] +centroid = (0.71325234331909215, -1.3493841371395763) +station = ('kunv', 0.0070809812609169583) +zone = ('paz045', 0.0038166639576801818) + +[17886] +centroid = (0.71587662038239086, -1.3417254229423148) +station = ('kseg', 0.003493212506397668) +zone = ('paz049', 0.0026346086287836411) + +[17887] +centroid = (0.71784030777710217, -1.342786199155092) +station = ('kipt', 0.0021232192182026491) +zone = ('paz046', 0.0017563779851951919) + +[17888] +centroid = (0.71221258087050909, -1.333055936215346) +station = ('kseg', 0.0064511259472046466) +zone = ('paz058', 0.0027774114388756117) + +[17889] +centroid = (0.71344595269301592, -1.342535988753526) +station = ('kseg', 0.0012853176951162239) +zone = ('paz049', 0.0023792734948993076) + +[17901] +centroid = (0.71006675091505955, -1.3312942532282606) +station = ('kmui', 0.0058147973368833017) +zone = ('paz058', 0.00090090000551335209) + +[17920] +centroid = (0.71243757126438367, -1.3321560095464327) +station = ('kseg', 0.007129431787920173) +zone = ('paz058', 0.0024682984534426344) + +[17921] +centroid = (0.71124915912340825, -1.3327436444522867) +station = ('kmui', 0.0061895559317306642) +zone = ('paz058', 0.0020718326320192568) + +[17922] +centroid = (0.70829810406425864, -1.3283813685198522) +station = ('krdg', 0.0042241324299745163) +zone = ('paz058', 0.0025662766611261119) + +[17923] +centroid = (0.70917249656621528, -1.332034133204766) +station = ('kmui', 0.0047756055667693151) +zone = ('paz058', 0.0018788644018938509) + +[17925] +centroid = (0.7112806099565292, -1.3276335996551276) +station = ('krdg', 0.0068813008626549032) +zone = ('paz058', 0.0021280313400640865) + +[17929] +centroid = (0.70913954474993757, -1.3298368509429679) +station = ('krdg', 0.0055084136740090398) +zone = ('paz058', 0.0013442496670385221) + +[17930] +centroid = (0.71050022088808484, -1.3284628230360427) +station = ('krdg', 0.0062861864878921581) +zone = ('paz058', 0.0013330118395815497) + +[17931] +centroid = (0.71185855828503453, -1.3301952717581573) +station = ('kmui', 0.0077301597822384575) +zone = ('paz058', 0.001406704497735885) + +[17933] +centroid = (0.70868195432664971, -1.3306947849900781) +station = ('krdg', 0.0055410122741150029) +zone = ('paz058', 0.0018062811574526237) + +[17934] +centroid = (0.71203218363902288, -1.3301386881838075) +station = ('kmui', 0.0078946314914371384) +zone = ('paz058', 0.0015814079829739786) + +[17935] +centroid = (0.71202696510455954, -1.331331603274253) +station = ('kmui', 0.0073860070490022311) +zone = ('paz058', 0.0017859243958773302) + +[17936] +centroid = (0.71122369476962155, -1.3323831292419948) +station = ('kmui', 0.0062927666268934373) +zone = ('paz058', 0.0018117224180473526) + +[17938] +centroid = (0.70950384732470639, -1.3354607730317916) +station = ('kmui', 0.0038672652411466503) +zone = ('paz052', 0.0043285985326036863) + +[17941] +centroid = (0.71009980745109236, -1.3370824980661595) +station = ('kseg', 0.0041003502748316843) +zone = ('paz052', 0.003188488638868555) + +[17943] +centroid = (0.71133790911587202, -1.3332187928878496) +station = ('kmui', 0.0061207223865885523) +zone = ('paz058', 0.0024389072494535196) + +[17944] +centroid = (0.70986973814909449, -1.3313241681716399) +station = ('kmui', 0.0056530281109337457) +zone = ('paz058', 0.0010197061179235427) + +[17945] +centroid = (0.7118401450614259, -1.3330305765813146) +station = ('kseg', 0.0064919721967025383) +zone = ('paz058', 0.0025417705927293578) + +[17946] +centroid = (0.71227522073736316, -1.3309247670256132) +station = ('kmui', 0.0077587979209835997) +zone = ('paz058', 0.0018997573388134484) + +[17948] +centroid = (0.71288645249470406, -1.3285004348814231) +station = ('krdg', 0.0085908268957343211) +zone = ('paz058', 0.002760906966828883) + +[17949] +centroid = (0.71198832351492025, -1.3306799496914361) +station = ('kmui', 0.007620511610168146) +zone = ('paz058', 0.0015753374316672029) + +[17951] +centroid = (0.70997473715689452, -1.3307305816930364) +station = ('kmui', 0.006040213447000101) +zone = ('paz058', 0.00061445113782054904) + +[17952] +centroid = (0.7113165811924127, -1.3274721566993182) +station = ('krdg', 0.0068938526098360547) +zone = ('paz058', 0.0022547399837580789) + +[17953] +centroid = (0.7112548663500623, -1.3285484314358529) +station = ('krdg', 0.0070251444471801537) +zone = ('paz058', 0.0014998295104222839) + +[17954] +centroid = (0.71018180301935108, -1.3309826421436095) +station = ('kmui', 0.0060581154029559223) +zone = ('paz058', 0.00063811211475717428) + +[17957] +centroid = (0.70846097819005482, -1.3354947371390353) +station = ('kmui', 0.0028399220571116292) +zone = ('paz059', 0.0040018875543236876) + +[17959] +centroid = (0.71090871519951426, -1.3290673701823486) +station = ('krdg', 0.0068249781421781562) +zone = ('paz058', 0.00098588611192721907) + +[17960] +centroid = (0.7103008519276296, -1.3255259749570045) +station = ('krdg', 0.0057754793039011283) +zone = ('paz058', 0.0035619319652490009) + +[17961] +centroid = (0.7094710700413539, -1.3275139398816109) +station = ('krdg', 0.0050957931220437314) +zone = ('paz058', 0.0022747127753076366) + +[17963] +centroid = (0.70793306845120396, -1.3331176859642817) +station = ('kmui', 0.0033189952029713601) +zone = ('paz058', 0.003343667754462184) + +[17964] +centroid = (0.71059973956203359, -1.3352285569748137) +station = ('kmui', 0.0049771215160816125) +zone = ('paz052', 0.0036320391701574607) + +[17965] +centroid = (0.71032483275155189, -1.3293349291566792) +station = ('krdg', 0.0063645100390726829) +zone = ('paz058', 0.00068302676334579498) + +[17967] +centroid = (0.7130761872376884, -1.3302247503692235) +station = ('kseg', 0.008616164574989196) +zone = ('paz058', 0.0026242095694617019) + +[17968] +centroid = (0.70927875221107672, -1.3371368825256518) +station = ('kmui', 0.0036347136944392977) +zone = ('paz052', 0.0039370313523147361) + +[17970] +centroid = (0.71070166679035007, -1.3298003735616009) +station = ('krdg', 0.0068557789737402385) +zone = ('paz058', 0.0004044519639077454) + +[17972] +centroid = (0.70846504480721184, -1.3300386459110833) +station = ('krdg', 0.005053358322075787) +zone = ('paz058', 0.0019917012480136498) + +[17974] +centroid = (0.71027395640385638, -1.3305738685794999) +station = ('kmui', 0.0063371288400113903) +zone = ('paz058', 0.00032188001986446839) + +[17976] +centroid = (0.71244107937618018, -1.3301259996401456) +station = ('kmui', 0.0082315254103470445) +zone = ('paz058', 0.0019903770674108809) + +[17978] +centroid = (0.70904782769774533, -1.3371833606436323) +station = ('kmui', 0.0034136949948475859) +zone = ('paz052', 0.0041454169603840204) + +[17979] +centroid = (0.70793289391827874, -1.3299359332846035) +station = ('krdg', 0.0045986609706803348) +zone = ('paz058', 0.0025283025441249982) + +[17980] +centroid = (0.70718379860332292, -1.3377026659092708) +station = ('kmui', 0.0018140811433122945) +zone = ('paz057', 0.0025356581239429354) + +[17981] +centroid = (0.70920234169642438, -1.3332590227271079) +station = ('kmui', 0.0042175288382243726) +zone = ('paz058', 0.0026218726624620231) + +[17982] +centroid = (0.71184880189451594, -1.3268221437259979) +station = ('krdg', 0.0073533250314299315) +zone = ('paz058', 0.0029288992475347973) + +[17983] +centroid = (0.70934757054348285, -1.3360000797706579) +station = ('kmui', 0.0036619228137311365) +zone = ('paz052', 0.0042354214952587607) + +[17985] +centroid = (0.71405439192355369, -1.3302314524335512) +station = ('kseg', 0.0087405706723411389) +zone = ('paz053', 0.0034396141822126748) + +[18011] +centroid = (0.70647392083665927, -1.3202774208304071) +station = ('kxll', 0.0026231475324955027) +zone = ('paz061', 0.0024611051023634067) + +[18013] +centroid = (0.71294535735695885, -1.3120909190673427) +station = ('kabe', 0.0050037562553588572) +zone = ('paz062', 0.0023819567395562706) + +[18014] +centroid = (0.71147353865204466, -1.3161391928140509) +station = ('kabe', 0.0020687889247861524) +zone = ('paz062', 0.0013576515190554135) + +[18015] +centroid = (0.7083570438330985, -1.3154064686874787) +station = ('kabe', 0.0015668435717952401) +zone = ('paz062', 0.0030445326228011691) + +[18016] +centroid = (0.70916445059836353, -1.3158534126023294) +station = ('kabe', 0.00081865377390746234) +zone = ('paz062', 0.0024135351802334376) + +[18017] +centroid = (0.70965054224833657, -1.3157576638395649) +station = ('kabe', 0.00084749195470944314) +zone = ('paz062', 0.0019568099170342982) + +[18018] +centroid = (0.70908528246349312, -1.3159011822639564) +station = ('kabe', 0.00081995204755065101) +zone = ('paz062', 0.0025004698563260062) + +[18020] +centroid = (0.70984200486728033, -1.3146027271136429) +station = ('kabe', 0.0017442039503210429) +zone = ('paz062', 0.0014661059502377729) + +[18030] +centroid = (0.71213164995309408, -1.3205877927312892) +station = ('kabe', 0.0038820796614784645) +zone = ('paz054', 0.0021114994237409982) + +[18031] +centroid = (0.70776738434531217, -1.3203184360678288) +station = ('kxll', 0.0021270479892095229) +zone = ('paz061', 0.001297327778469801) + +[18032] +centroid = (0.70958863541976824, -1.3171628633269306) +station = ('kabe', 0.00026195082646621615) +zone = ('paz061', 0.0018159472648946382) + +[18034] +centroid = (0.70766735952588045, -1.3162449074068441) +station = ('kxll', 0.0010733398766712178) +zone = ('paz061', 0.0026194692507657074) + +[18035] +centroid = (0.7111418388277031, -1.3184063406058064) +station = ('kabe', 0.0020407182502059718) +zone = ('paz061', 0.0024181375761585834) + +[18036] +centroid = (0.70701806213755347, -1.3157328627108942) +station = ('kukt', 0.0012954221980133638) +zone = ('paz061', 0.0032822356641597872) + +[18037] +centroid = (0.71003165234380206, -1.3185285485600311) +station = ('kabe', 0.0013884065055902303) +zone = ('paz061', 0.0013499536804957918) + +[18038] +centroid = (0.71200499140927676, -1.3174807575968888) +station = ('kabe', 0.0025733104021542271) +zone = ('paz062', 0.0024656433509066479) + +[18040] +centroid = (0.71115197919065709, -1.3129355362522603) +station = ('kabe', 0.0034087539797697888) +zone = ('paz062', 0.001090347497498015) + +[18041] +centroid = (0.70547011217066713, -1.3178968266372717) +station = ('kukt', 0.0017228298289559026) +zone = ('paz061', 0.0035324789935612449) + +[18042] +centroid = (0.70954922588525826, -1.312891187435967) +station = ('kabe', 0.0030050510616008333) +zone = ('paz062', 0.0020729447953584542) + +[18045] +centroid = (0.71023468649568644, -1.3137581273820176) +station = ('kabe', 0.0024652824933164884) +zone = ('paz062', 0.0011564669186804259) + +[18046] +centroid = (0.7076962621782934, -1.3187768216461273) +station = ('kxll', 0.0010086602045521549) +zone = ('paz061', 0.0012096417117592288) + +[18049] +centroid = (0.70713292225562718, -1.3175366604928302) +station = ('kxll', 0.00094720208919004398) +zone = ('paz061', 0.0021783248309833626) + +[18051] +centroid = (0.70852764976748095, -1.3206392275843453) +station = ('kabe', 0.0030278316650998228) +zone = ('paz061', 0.0010340660183581242) + +[18052] +centroid = (0.70960598399253316, -1.3177978490153912) +station = ('kabe', 0.00073000157942799179) +zone = ('paz061', 0.0014024797745163327) + +[18053] +centroid = (0.71068463237685064, -1.3212860989650119) +station = ('kabe', 0.0035736986645693342) +zone = ('paz061', 0.002373061587982114) + +[18054] +centroid = (0.70428170002969182, -1.316654326742777) +station = ('kukt', 0.0016295290706024011) +zone = ('paz068', 0.0026464448205545288) + +[18055] +centroid = (0.70845539313644834, -1.31430945943943) +station = ('kabe', 0.0021825679126323328) +zone = ('paz062', 0.0028416064950810269) + +[18056] +centroid = (0.70600212343326008, -1.3186030392125061) +station = ('kxll', 0.0022271117493317429) +zone = ('paz061', 0.0028811114731252464) + +[18058] +centroid = (0.71365897012822177, -1.3176085506047199) +station = ('kabe', 0.004221801997348752) +zone = ('paz054', 0.002884968982767298) + +[18059] +centroid = (0.71075926265566591, -1.3184754905507705) +station = ('kabe', 0.0017786042981839556) +zone = ('paz061', 0.0020378589041189945) + +[18062] +centroid = (0.70692702576376942, -1.3192102567125674) +station = ('kxll', 0.0017098003321356255) +zone = ('paz061', 0.0019042062237013358) + +[18063] +centroid = (0.71179050789749931, -1.3119166304882384) +station = ('kabe', 0.0043980090710193384) +zone = ('paz062', 0.0019167689936049413) + +[18064] +centroid = (0.71134400031496148, -1.3145114638470561) +station = ('kabe', 0.0025755686418853048) +zone = ('paz062', 0.00012263812828489066) + +[18066] +centroid = (0.70972875045211836, -1.3219141207897571) +station = ('kabe', 0.0038493320880352007) +zone = ('paz061', 0.0021532326157412416) + +[18067] +centroid = (0.71061146817460707, -1.3172815806226514) +station = ('kabe', 0.0011811734784219754) +zone = ('paz062', 0.0023159202011717294) + +[18068] +centroid = (0.70659356315688338, -1.3180733666911111) +station = ('kxll', 0.0015390094538500186) +zone = ('paz061', 0.0024325413385621101) + +[18069] +centroid = (0.70904505262423467, -1.3197328955570773) +station = ('kxll', 0.0019185314644512179) +zone = ('paz061', 0.0003706649314443697) + +[18070] +centroid = (0.7057215443027095, -1.3183452191754017) +station = ('kukt', 0.0020451468308160278) +zone = ('paz061', 0.0031972947490390745) + +[18071] +centroid = (0.71269202281603194, -1.3186868848297721) +station = ('kabe', 0.0035036495713211811) +zone = ('paz054', 0.0025022891125363704) + +[18072] +centroid = (0.71286472314551685, -1.3135196979529027) +station = ('kabe', 0.0042249638034969547) +zone = ('paz062', 0.0016927140442253952) + +[18073] +centroid = (0.70487738090339735, -1.3172773045659838) +station = ('kukt', 0.0014954082051079993) +zone = ('paz068', 0.0033808684881042762) + +[18074] +centroid = (0.70365980431062114, -1.3179973576021866) +station = ('kptw', 0.001525696989301211) +zone = ('paz068', 0.0027060906389813973) + +[18076] +centroid = (0.70467324719408408, -1.3173883075064108) +station = ('kukt', 0.0016850352233251937) +zone = ('paz068', 0.0032357284251940841) + +[18077] +centroid = (0.70808121199811325, -1.313135358998321) +station = ('kukt', 0.0030392664807934551) +zone = ('paz062', 0.0033474474672221944) + +[18078] +centroid = (0.70988307246457971, -1.3198304943688488) +station = ('kabe', 0.0022965212762585219) +zone = ('paz061', 0.0011189601315027781) + +[18079] +centroid = (0.71111473386441959, -1.3204902637326876) +station = ('kabe', 0.0032090054336020371) +zone = ('paz061', 0.0024477132475329544) + +[18080] +centroid = (0.71097481081828717, -1.3200851553600073) +station = ('kabe', 0.0028738319725807263) +zone = ('paz061', 0.0022198772251502599) + +[18081] +centroid = (0.70797349027668022, -1.3139084525904918) +station = ('kukt', 0.0026136561135343228) +zone = ('paz062', 0.0033409985566355215) + +[18083] +centroid = (0.71130809889224811, -1.3136584690817288) +station = ('kabe', 0.0030352563269081616) +zone = ('paz062', 0.00053311621492809825) + +[18085] +centroid = (0.71106863971887435, -1.3134455563662779) +station = ('kabe', 0.0030334109654014765) +zone = ('paz062', 0.00073085070389218262) + +[18086] +centroid = (0.71099140889947365, -1.3185601215661995) +station = ('kabe', 0.0019937076191794919) +zone = ('paz061', 0.0022412671865572383) + +[18087] +centroid = (0.70779274397934366, -1.319365957535138) +station = ('kxll', 0.0014099018873431864) +zone = ('paz061', 0.0010363251055811387) + +[18088] +centroid = (0.71149554725391229, -1.3187273066552481) +station = ('kabe', 0.0024698929275452719) +zone = ('paz061', 0.0027064047270092596) + +[18091] +centroid = (0.71264215875930237, -1.3145784146771624) +station = ('kabe', 0.0036037522114693585) +zone = ('paz062', 0.0013553713322953819) + +[18092] +centroid = (0.7063294599344716, -1.317952921519431) +station = ('kxll', 0.0017773348838888217) +zone = ('paz061', 0.0027114500807777042) + +[18101] +centroid = (0.70865006716121581, -1.3171866521646352) +station = ('kxll', 0.00063295512244848293) +zone = ('paz061', 0.001641713568412797) + +[18102] +centroid = (0.70875155805721923, -1.3173095058906832) +station = ('kxll', 0.00069568480279997853) +zone = ('paz061', 0.0015405561272067957) + +[18103] +centroid = (0.7080854531481956, -1.317530307494353) +station = ('kxll', 1.5219718080685409e-05) +zone = ('paz061', 0.0015599046804534956) + +[18104] +centroid = (0.70880714679389523, -1.3185413243701556) +station = ('kxll', 0.0010470923873932018) +zone = ('paz061', 0.00060385732780705837) + +[18105] +centroid = (0.70862839017190604, -1.3176177833964628) +station = ('kxll', 0.00055079146893124639) +zone = ('paz061', 0.0013199638275584341) + +[18106] +centroid = (0.70804913284646165, -1.318775739541991) +station = ('kxll', 0.00093233225933510864) +zone = ('paz061', 0.00088831276715061998) + +[18109] +centroid = (0.70924836602879948, -1.3166745202022225) +station = ('kabe', 0.00026436342283801042) +zone = ('paz061', 0.0020633393310468835) + +[18195] +centroid = (0.70832917092494407, -1.3199015641759901) +station = ('kxll', 0.0018040844916998547) +zone = ('paz061', 0.00065869851422543392) + +[18201] +centroid = (0.71466230755531579, -1.3257019390521905) +station = ('kavp', 0.0073543382498483575) +zone = ('paz047', 0.0040371213952646841) + +[18202] +centroid = (0.71478969913741885, -1.3272528560788051) +station = ('kavp', 0.0077858112402844253) +zone = ('paz047', 0.0039599232660578751) + +[18210] +centroid = (0.71566238121670855, -1.3190593904520254) +station = ('kmpo', 0.0033947288362560185) +zone = ('paz054', 0.00230191337115245) + +[18211] +centroid = (0.71111834669597118, -1.323490257824063) +station = ('kabe', 0.0052947704895092481) +zone = ('paz054', 0.0034387314069549688) + +[18212] +centroid = (0.71166243563698783, -1.3213812543158308) +station = ('kabe', 0.0040707495055418031) +zone = ('paz054', 0.0024966443258849793) + +[18214] +centroid = (0.71209889012303418, -1.32791550523591) +station = ('krdg', 0.007725685040413534) +zone = ('paz058', 0.0024000497344660028) + +[18216] +centroid = (0.7145639058920884, -1.3245802508485187) +station = ('kavp', 0.0071530984636133284) +zone = ('paz054', 0.0024605531869172424) + +[18218] +centroid = (0.71243886280803015, -1.3249859351798521) +station = ('kxll', 0.0071268847870647077) +zone = ('paz054', 0.0032318660659638068) + +[18219] +centroid = (0.71542419613368879, -1.3274530278907164) +station = ('kavp', 0.0073403736263357314) +zone = ('paz047', 0.003376207987165823) + +[18220] +centroid = (0.71280169930622717, -1.3275040962246298) +station = ('krdg', 0.0083631682970357803) +zone = ('paz058', 0.0031227967764823187) + +[18221] +centroid = (0.71561602527177559, -1.3250074201829443) +station = ('kavp', 0.006271405987779562) +zone = ('paz047', 0.0032031559220199539) + +[18222] +centroid = (0.71621662797397179, -1.3264515056060444) +station = ('kavp', 0.0062587184918729824) +zone = ('paz047', 0.0024654710659483075) + +[18223] +centroid = (0.71527699506457576, -1.3255825759846465) +station = ('kavp', 0.0067566620530458742) +zone = ('paz047', 0.0034384548816420051) + +[18224] +centroid = (0.71604357857863654, -1.3242382535815902) +station = ('kavp', 0.0056656446185586453) +zone = ('paz054', 0.0028719952127723974) + +[18225] +centroid = (0.7152588087337699, -1.3259495140065858) +station = ('kavp', 0.0068940047652827265) +zone = ('paz047', 0.0034267303372890047) + +[18229] +centroid = (0.71438329922109201, -1.3207552047131403) +station = ('kmpo', 0.0052025692805603907) +zone = ('paz054', 0.00051433940108150486) + +[18230] +centroid = (0.71420763183187885, -1.3253075295478247) +station = ('kavp', 0.0076658993024271782) +zone = ('paz054', 0.0029773422154092751) + +[18231] +centroid = (0.71391478303668665, -1.3265895786031696) +station = ('kavp', 0.0083132679428888374) +zone = ('paz058', 0.0044207548630518243) + +[18232] +centroid = (0.71266983968123909, -1.3244400310964133) +station = ('kabe', 0.0065772752592258513) +zone = ('paz054', 0.0027593546700547828) + +[18234] +centroid = (0.71545573423327236, -1.3258280216373544) +station = ('kavp', 0.0066768984224175008) +zone = ('paz047', 0.0032381281787077112) + +[18235] +centroid = (0.71261437311761067, -1.3211768937137149) +station = ('kabe', 0.0045376812374240821) +zone = ('paz054', 0.001551418901154967) + +[18237] +centroid = (0.71357578773607178, -1.3260748461001715) +station = ('kavp', 0.0084649235665470845) +zone = ('paz054', 0.0036052204854933123) + +[18239] +centroid = (0.71539888885953495, -1.3262455393010164) +station = ('kavp', 0.0068751648833171222) +zone = ('paz047', 0.0032788383010778368) + +[18240] +centroid = (0.71322316141399889, -1.3242208351956555) +station = ('kabe', 0.0067233627845429645) +zone = ('paz054', 0.002351038837941619) + +[18241] +centroid = (0.71473892750947832, -1.3287331570838841) +station = ('kavp', 0.0084674939182111907) +zone = ('paz047', 0.0043590099986102184) + +[18242] +centroid = (0.71403842216089797, -1.3286200597483551) +station = ('kavp', 0.0089810198737596009) +zone = ('paz058', 0.0037854086317790007) + +[18244] +centroid = (0.71248607396429664, -1.3207004362812129) +station = ('kabe', 0.0041912473173289586) +zone = ('paz054', 0.0017474500032165466) + +[18245] +centroid = (0.71302309432184274, -1.327035230974374) +station = ('krdg', 0.0085379233720960825) +zone = ('paz058', 0.003525186026399495) + +[18246] +centroid = (0.71483825419720926, -1.3298568524161956) +station = ('kavp', 0.0089408619400693744) +zone = ('paz053', 0.0031931096877280273) + +[18248] +centroid = (0.71387713628472105, -1.3280555679083823) +station = ('kavp', 0.0088810104600308241) +zone = ('paz058', 0.0037968777675100669) + +[18249] +centroid = (0.71537195842917667, -1.3284768554832287) +station = ('kavp', 0.0078529618231842711) +zone = ('paz047', 0.0037052729999309019) + +[18250] +centroid = (0.71253002135486176, -1.3237659325794155) +station = ('kabe', 0.0060644708315817294) +zone = ('paz054', 0.0024376509837389444) + +[18251] +centroid = (0.71572550977575322, -1.3278007847441762) +station = ('kavp', 0.0072568733635942056) +zone = ('paz047', 0.0031733362289189139) + +[18252] +centroid = (0.71151410010386096, -1.3259925189193551) +station = ('krdg', 0.0069834946727043799) +zone = ('paz058', 0.0033748471312106121) + +[18254] +centroid = (0.71411739830955068, -1.3258507283709229) +station = ('kavp', 0.007899700798444419) +zone = ('paz054', 0.0033877906934575244) + +[18255] +centroid = (0.7144213299454929, -1.3234778485330816) +station = ('kmpo', 0.006835161087743076) +zone = ('paz054', 0.0016156692730964872) + +[18256] +centroid = (0.71455325938365122, -1.3290115894594547) +station = ('kavp', 0.0087433960475363469) +zone = ('paz053', 0.0038891156713393975) + +[18301] +centroid = (0.71633030126815433, -1.3120614055496913) +station = ('kmpo', 0.0031576522296343714) +zone = ('paz055', 0.0021730962493268936) + +[18302] +centroid = (0.71754238007378679, -1.3109656703919967) +station = ('kmpo', 0.0035760281593539556) +zone = ('paz055', 0.0031261304150961514) + +[18321] +centroid = (0.71603441560006365, -1.3139416312995722) +station = ('kmpo', 0.0022928960247530676) +zone = ('paz055', 0.00093055500842136399) + +[18322] +centroid = (0.71416316084253795, -1.3158622439683445) +station = ('kmpo', 0.00375125876834465) +zone = ('paz055', 0.0025391343123763459) + +[18323] +centroid = (0.719015944107953, -1.3137698734478835) +station = ('kmpo', 0.0018172048278648303) +zone = ('paz055', 0.0025659963306145462) + +[18324] +centroid = (0.71834510935665652, -1.3090089643142933) +station = ('k12n', 0.0042972316123587578) +zone = ('paz048', 0.0030668722908698191) + +[18325] +centroid = (0.71916094606220871, -1.3129264779934422) +station = ('kmpo', 0.0024246666465967668) +zone = ('paz055', 0.002968226973159435) + +[18326] +centroid = (0.71850353289286006, -1.3134132677751162) +station = ('kmpo', 0.0018116265589338632) +zone = ('paz055', 0.0022158893159477935) + +[18327] +centroid = (0.7150242888421795, -1.3113328353067388) +station = ('kmpo', 0.0043730198686772097) +zone = ('njz007', 0.0026410415653361327) + +[18328] +centroid = (0.71954065989427263, -1.3084909331390089) +station = ('k12n', 0.0048161799551365066) +zone = ('paz048', 0.0020158987389979717) + +[18330] +centroid = (0.71504003171203234, -1.3168372547016787) +station = ('kmpo', 0.0030001219767950373) +zone = ('paz055', 0.0021277932773889454) + +[18331] +centroid = (0.71401307998015895, -1.3167432512681663) +station = ('kmpo', 0.0039795673075098239) +zone = ('paz055', 0.0029307513908146655) + +[18332] +centroid = (0.71724197400293344, -1.3135575192377933) +station = ('kmpo', 0.001738938057774425) +zone = ('paz055', 0.0012111735876125891) + +[18333] +centroid = (0.71394586735066456, -1.317550518407091) +station = ('kmpo', 0.0042079716174499571) +zone = ('paz054', 0.0028926644994310266) + +[18334] +centroid = (0.71654412155481617, -1.3165329914531783) +station = ('kmpo', 0.00150913811098516) +zone = ('paz055', 0.0012171714542721468) + +[18335] +centroid = (0.71677357999157576, -1.3108109120472224) +station = ('kmpo', 0.0038470080023730309) +zone = ('njz007', 0.0039382332545783803) + +[18336] +centroid = (0.72212507363745571, -1.3045077776266925) +station = ('kfwn', 0.0033703951647195054) +zone = ('paz048', 0.0038832025707386184) + +[18337] +centroid = (0.7213290464189136, -1.3067592000018877) +station = ('kfwn', 0.0038553983739746667) +zone = ('paz048', 0.0021226532576113129) + +[18340] +centroid = (0.72287769451750084, -1.3049007036011941) +station = ('kfwn', 0.0041771938635901326) +zone = ('paz048', 0.0038204562644571912) + +[18342] +centroid = (0.7185626821012101, -1.3137694371155706) +station = ('kmpo', 0.0015839169132926911) +zone = ('paz055', 0.0021450507255737954) + +[18343] +centroid = (0.71381399027238401, -1.3109184068758526) +station = ('kmpo', 0.0054536467638698662) +zone = ('njz007', 0.0016560828571195753) + +[18344] +centroid = (0.71773167848445807, -1.3149841513683735) +station = ('kmpo', 0.0005595747931855915) +zone = ('paz055', 0.0011319177993370821) + +[18346] +centroid = (0.71807727112964548, -1.3163478992860043) +station = ('kmpo', 0.00052416793776517668) +zone = ('paz055', 0.0018267115119477413) + +[18347] +centroid = (0.71800864478345705, -1.318774360731882) +station = ('kmpo', 0.0023269691403242682) +zone = ('paz055', 0.0032273903308703421) + +[18349] +centroid = (0.71735255806433984, -1.3154035888942128) +station = ('kmpo', 0.00059899231594942094) +zone = ('paz055', 0.00083530585982223343) + +[18350] +centroid = (0.71774614726395702, -1.3171326691308711) +station = ('kmpo', 0.001101228102601957) +zone = ('paz055', 0.0020227062854910756) + +[18351] +centroid = (0.71423620287173384, -1.3107306443549231) +station = ('kmpo', 0.005243517849617821) +zone = ('njz007', 0.0017671356806860188) + +[18352] +centroid = (0.71570421675887885, -1.3152118295692963) +station = ('kmpo', 0.0022367999848065664) +zone = ('paz055', 0.00092308324138686145) + +[18353] +centroid = (0.71375751141778943, -1.3152465092615333) +station = ('kmpo', 0.0041678833922839656) +zone = ('paz062', 0.0025501769676782842) + +[18354] +centroid = (0.71423416083650915, -1.3146185572499585) +station = ('kmpo', 0.0037652815274156902) +zone = ('paz055', 0.0023775693485074533) + +[18355] +centroid = (0.71692840814952019, -1.3152592327117802) +station = ('kmpo', 0.0010352388307852168) +zone = ('paz055', 0.0004153678412268881) + +[18356] +centroid = (0.71577835834550363, -1.31105822520223) +station = ('kmpo', 0.0040904431569573118) +zone = ('njz007', 0.0031215253306296686) + +[18357] +centroid = (0.7196483467091207, -1.3127755593730224) +station = ('kmpo', 0.0027958941260993104) +zone = ('paz048', 0.0029581993150291559) + +[18360] +centroid = (0.71501582399530716, -1.3140229636427152) +station = ('kmpo', 0.0031565623119664578) +zone = ('paz055', 0.0017236072988356548) + +[18370] +centroid = (0.71719781717285802, -1.3149229775780913) +station = ('kmpo', 0.00091753114672319086) +zone = ('paz055', 0.00059704495157196719) + +[18371] +centroid = (0.71833071039032748, -1.3097202732509436) +station = ('kmpo', 0.0045129332462759703) +zone = ('paz048', 0.003052213686517832) + +[18372] +centroid = (0.71635332216098802, -1.3148673539348301) +station = ('kmpo', 0.0016768294664132345) +zone = ('paz055', 0.00025068788341344757) + +[18403] +centroid = (0.72448095396838275, -1.3183352358920801) +station = ('kavp', 0.0040261500173493746) +zone = ('paz044', 0.0015970031495784792) + +[18405] +centroid = (0.72604913230129964, -1.3108162702080262) +station = ('kmsv', 0.0043377977070318662) +zone = ('paz072', 0.003559285072630855) + +[18407] +centroid = (0.72594107896730864, -1.3182143892946721) +station = ('kavp', 0.0052725872610717905) +zone = ('paz044', 0.0029274841841218308) + +[18411] +centroid = (0.72351737514164927, -1.3219916308618382) +station = ('kavp', 0.0021197031470257198) +zone = ('paz044', 0.0017967506447891328) + +[18413] +centroid = (0.7268968910788709, -1.3192827751429881) +station = ('kavp', 0.0058077169159325061) +zone = ('paz044', 0.0036939351048609066) + +[18414] +centroid = (0.72502842884814833, -1.3219310853900865) +station = ('kavp', 0.0036270849878499603) +zone = ('paz044', 0.0025043151014799469) + +[18415] +centroid = (0.72856203990502855, -1.3111658247506155) +station = ('kmsv', 0.0042919763211286101) +zone = ('paz040', 0.0022342130834066324) + +[18417] +centroid = (0.72971804128179452, -1.3125067088550451) +station = ('kmsv', 0.0055626129030599582) +zone = ('paz040', 0.0012858271513983019) + +[18419] +centroid = (0.72581145336376296, -1.322826386936482) +station = ('kavp', 0.0044758080666854301) +zone = ('paz043', 0.0031557978451385899) + +[18420] +centroid = (0.7260919801344361, -1.3213910979728121) +station = ('kavp', 0.004699028859667405) +zone = ('paz044', 0.0031675696635801711) + +[18421] +centroid = (0.72717764474234659, -1.3175994225327319) +station = ('kavp', 0.0065748355062017596) +zone = ('paz040', 0.0033007799279114111) + +[18424] +centroid = (0.71960759327108659, -1.3181593067034791) +station = ('kmpo', 0.002517126574078433) +zone = ('paz044', 0.0037697448279711255) + +[18425] +centroid = (0.72322189089928657, -1.3097359986675041) +station = ('kmsv', 0.0055672394776108214) +zone = ('paz048', 0.0018441370964943011) + +[18426] +centroid = (0.72126616220596429, -1.3131693405588574) +station = ('kmpo', 0.0038517547516185007) +zone = ('paz048', 0.0026939685972849621) + +[18427] +centroid = (0.72265317536252427, -1.3160986313622345) +station = ('kmpo', 0.0047511425839074422) +zone = ('paz072', 0.0016744598123821447) + +[18428] +centroid = (0.72264139439007324, -1.3110574747106516) +station = ('kmpo', 0.0058716351595402526) +zone = ('paz048', 0.0016759999454396535) + +[18430] +centroid = (0.72878769352401884, -1.3172428692198421) +station = ('kavp', 0.008133253275978157) +zone = ('paz040', 0.0024054408319838412) + +[18431] +centroid = (0.72634512268914531, -1.3134946175715516) +station = ('kmsv', 0.0061435717742613352) +zone = ('paz072', 0.0025843069085764361) + +[18433] +centroid = (0.72559108809240624, -1.3191430615363657) +station = ('kavp', 0.0046363507487839411) +zone = ('paz044', 0.0024067341660733723) + +[18434] +centroid = (0.72350180680472143, -1.318458857562999) +station = ('kavp', 0.0032670294273071587) +zone = ('paz044', 0.00092408099949990751) + +[18435] +centroid = (0.72353687046939397, -1.3087043869065278) +station = ('kmsv', 0.0048905243947975057) +zone = ('paz048', 0.0022546198134372379) + +[18436] +centroid = (0.72331329379221354, -1.315863936937719) +station = ('kmpo', 0.0054028240449500208) +zone = ('paz072', 0.0011101690946106206) + +[18437] +centroid = (0.73080372334299759, -1.3145209758914791) +station = ('kmsv', 0.0073613633196717536) +zone = ('paz040', 0.0016883939199761906) + +[18438] +centroid = (0.72324976380744088, -1.3134734990876025) +station = ('kmpo', 0.005590889458159819) +zone = ('paz072', 0.0010671926590170835) + +[18439] +centroid = (0.72999273865276582, -1.3150875446732617) +station = ('kmsv', 0.0074748820596596596) +zone = ('paz040', 0.0011403367972597947) + +[18441] +centroid = (0.72703533059513903, -1.3197123879383663) +station = ('kavp', 0.0058447897982717156) +zone = ('paz039', 0.0037748368245992584) + +[18443] +centroid = (0.72715525216804366, -1.3107788154422781) +station = ('kmsv', 0.0039906142147616546) +zone = ('paz040', 0.0031566082387219163) + +[18444] +centroid = (0.72132841810038295, -1.3186445955019961) +station = ('kavp', 0.0023675861675182706) +zone = ('paz044', 0.0020234290479500183) + +[18445] +centroid = (0.7207846084120465, -1.3152689192891289) +station = ('kmpo', 0.0028897043804144047) +zone = ('paz072', 0.0031530205156616608) + +[18446] +centroid = (0.72703712828426859, -1.3222465885589694) +station = ('kavp', 0.0056444688056526728) +zone = ('paz039', 0.0029345685482403132) + +[18447] +centroid = (0.72454635145545487, -1.3195939848019111) +station = ('kavp', 0.0035508532485161249) +zone = ('paz044', 0.0013345343910236786) + +[18451] +centroid = (0.72251391554150768, -1.3128009713669315) +station = ('kmpo', 0.0050876190740331163) +zone = ('paz072', 0.0019349878229947431) + +[18452] +centroid = (0.7240258942725103, -1.3192993034110043) +station = ('kavp', 0.003222942639098374) +zone = ('paz044', 0.0008505986489322127) + +[18453] +centroid = (0.72882322842758962, -1.3154684278759246) +station = ('kmsv', 0.0075044903462442554) +zone = ('paz040', 0.001104182959494468) + +[18454] +centroid = (0.73002384042003643, -1.3164345548833658) +station = ('kmsv', 0.0084486668108252061) +zone = ('paz040', 0.0019768260545613005) + +[18455] +centroid = (0.73117080099127696, -1.3152660394958633) +station = ('kmsv', 0.0080179519728561521) +zone = ('paz040', 0.0022118121446373833) + +[18456] +centroid = (0.72628030116072639, -1.314938615728189) +station = ('kavp', 0.0070844577716533763) +zone = ('paz072', 0.0023953788765570384) + +[18457] +centroid = (0.72382458799658522, -1.3098550301224903) +station = ('kmsv', 0.0051382986978245849) +zone = ('paz048', 0.0024517299184961773) + +[18458] +centroid = (0.72249588629033445, -1.3075930135987355) +station = ('kfwn', 0.0050777972617828812) +zone = ('paz048', 0.0018648992860334423) + +[18459] +centroid = (0.72438323298356366, -1.316481591506707) +station = ('kavp', 0.0049764950712871178) +zone = ('paz072', 0.0014873153341167201) + +[18460] +centroid = (0.71994711217047702, -1.3144616346969114) +station = ('kmpo', 0.0022342914711749617) +zone = ('paz055', 0.0033641324646845926) + +[18461] +centroid = (0.73179915442858001, -1.314715929168927) +station = ('kmsv', 0.0079428738436119785) +zone = ('paz040', 0.0026931082876127891) + +[18462] +centroid = (0.73154330661353018, -1.3161368889794383) +station = ('kmsv', 0.0087626500786822416) +zone = ('paz040', 0.0028507035065560532) + +[18463] +centroid = (0.72182552277793599, -1.3159247442088584) +station = ('kmpo', 0.0039174917066805582) +zone = ('paz072', 0.0022967625871074472) + +[18464] +centroid = (0.72261887964272242, -1.3120852991071512) +station = ('kmpo', 0.0054299067334465431) +zone = ('paz048', 0.0022477690908466043) + +[18465] +centroid = (0.73009402010925906, -1.3180175336083397) +station = ('kbgm', 0.0088316925908112163) +zone = ('paz040', 0.0031005918315917119) + +[18466] +centroid = (0.71901355300687775, -1.3158776028657619) +station = ('kmpo', 0.0011107253314035608) +zone = ('paz055', 0.0025181648524533725) + +[18469] +centroid = (0.7278665960112789, -1.3112744540432597) +station = ('kmsv', 0.0043070925665531397) +zone = ('paz040', 0.0024403112865847699) + +[18470] +centroid = (0.7282329755278576, -1.318343386579687) +station = ('kavp', 0.0073029117818848577) +zone = ('paz040', 0.0033286270902561613) + +[18471] +centroid = (0.72481940821692947, -1.3210603057196817) +station = ('kavp', 0.0034608909870866202) +zone = ('paz044', 0.0019319601644719429) + +[18472] +centroid = (0.72576741870673522, -1.3159204332456058) +station = ('kavp', 0.0061999929716843429) +zone = ('paz072', 0.0021130390039945956) + +[18473] +centroid = (0.72469809038062338, -1.3127878988508341) +station = ('kmpo', 0.0071267403709723409) +zone = ('paz072', 0.0015785029401990478) + +[18503] +centroid = (0.72276014659237886, -1.320646470700741) +station = ('kavp', 0.0016083171531723112) +zone = ('paz044', 0.00088643029296937544) + +[18504] +centroid = (0.72301173580405398, -1.3212119224718022) +station = ('kavp', 0.0016676023639456224) +zone = ('paz044', 0.0012032296074182042) + +[18505] +centroid = (0.72232548979546218, -1.3203682303113884) +station = ('kavp', 0.0014141773963464181) +zone = ('paz044', 0.0010454705883680821) + +[18507] +centroid = (0.72185138855745046, -1.3208969952615723) +station = ('kavp', 0.00081042938177794518) +zone = ('paz044', 0.0016599735345074471) + +[18508] +centroid = (0.72352531638974571, -1.3204801059164413) +station = ('kavp', 0.00234088899460197) +zone = ('paz044', 0.00071039466613669207) + +[18509] +centroid = (0.72310450005379734, -1.3202177654765737) +station = ('kavp', 0.0020732193917316994) +zone = ('paz044', 0.0004539768821093712) + +[18510] +centroid = (0.72269509817115707, -1.3201079319067457) +station = ('kavp', 0.0018096973738535049) +zone = ('paz044', 0.0006292737081509686) + +[18512] +centroid = (0.72302568098477726, -1.319502040856916) +station = ('kavp', 0.0023657260494065009) +zone = ('paz044', 0.00020946430934532854) + +[18517] +centroid = (0.72247276067774557, -1.3214523241229719) +station = ('kavp', 0.0011006573319397694) +zone = ('paz044', 0.0015541178073876516) + +[18518] +centroid = (0.72213092049044991, -1.3219046785585038) +station = ('kavp', 0.00073271680782556351) +zone = ('paz044', 0.0020201525391579812) + +[18519] +centroid = (0.72364733235775269, -1.3200050622006332) +station = ('kavp', 0.0026159157540455763) +zone = ('paz044', 0.00051835387709470756) + +[18602] +centroid = (0.71878299501268927, -1.3221003648742375) +station = ('kavp', 0.0026297338181934717) +zone = ('paz047', 0.0031298532374494288) + +[18603] +centroid = (0.71701797844673254, -1.330955606993496) +station = ('kavp', 0.0081677248612482233) +zone = ('paz053', 0.0020216078081108876) + +[18610] +centroid = (0.71679511735454537, -1.3185813622231966) +station = ('kmpo', 0.0024501788408274753) +zone = ('paz054', 0.0033722588921717167) + +[18612] +centroid = (0.72162536841931724, -1.3262125176715687) +station = ('kavp', 0.003323397854377803) +zone = ('paz047', 0.0029478370760883583) + +[18614] +centroid = (0.72474704686614178, -1.335124448084932) +station = ('kipt', 0.0072956437625861991) +zone = ('paz042', 0.0013915960753643954) + +[18615] +centroid = (0.72364321338071802, -1.32395795370372) +station = ('kavp', 0.0027658124871369552) +zone = ('paz043', 0.0023057540443585712) + +[18616] +centroid = (0.7243969338181917, -1.3375445390790399) +station = ('kipt', 0.0057735775664264797) +zone = ('paz042', 0.0019171113279575847) + +[18617] +centroid = (0.718546398179289, -1.3278591660076553) +station = ('kavp', 0.0053793875521749752) +zone = ('paz047', 0.0012134853434511786) + +[18618] +centroid = (0.72195706824365879, -1.3271730945319888) +station = ('kavp', 0.0040744330912572601) +zone = ('paz043', 0.0026954982812980506) + +[18619] +centroid = (0.72364310866096293, -1.3389784841391861) +station = ('kipt', 0.0045208428190619361) +zone = ('paz042', 0.0027074925460720714) + +[18621] +centroid = (0.71992389929142553, -1.3281701836803608) +station = ('kavp', 0.0050124630692415812) +zone = ('paz047', 0.0019040532549206076) + +[18622] +centroid = (0.71909715427804832, -1.3312239688192828) +station = ('kavp', 0.0074520523942800884) +zone = ('paz053', 0.0031770852182259712) + +[18623] +centroid = (0.72718795963822591, -1.3291028527260416) +station = ('kavp', 0.0079634966867434594) +zone = ('paz043', 0.0031074982051753214) + +[18624] +centroid = (0.71664341333596204, -1.320292186315879) +station = ('kmpo', 0.0036948221066457868) +zone = ('paz054', 0.0026136649726521597) + +[18625] +centroid = (0.72454528680461128, -1.3238116776591105) +station = ('kavp', 0.0034871026011616289) +zone = ('paz043', 0.0021930514228594039) + +[18626] +centroid = (0.72253608122300794, -1.3355936798543309) +station = ('kipt', 0.0057620786854495707) +zone = ('paz042', 0.0008477084856304166) + +[18628] +centroid = (0.72309240492208116, -1.3319272143347887) +station = ('kipt', 0.0085024938936286085) +zone = ('paz042', 0.0026066157543558495) + +[18629] +centroid = (0.72461886988587532, -1.3289170624271667) +station = ('kavp', 0.0062332397931036338) +zone = ('paz043', 0.0016314688335413619) + +[18630] +centroid = (0.72714158624000036, -1.3268627575376917) +station = ('kavp', 0.0068800605618524477) +zone = ('paz043', 0.0025105347678697808) + +[18631] +centroid = (0.71610696893706904, -1.3317625599731555) +station = ('kseg', 0.0082967815799543775) +zone = ('paz053', 0.0013668145411716002) + +[18632] +centroid = (0.72360233776963623, -1.3330387621755064) +station = ('kipt', 0.0079528277500988519) +zone = ('paz042', 0.0017735854289288892) + +[18634] +centroid = (0.71882278851963488, -1.3268450075391991) +station = ('kavp', 0.0045893229270560403) +zone = ('paz047', 0.00046608048017637903) + +[18635] +centroid = (0.71609532759095829, -1.3299643996047035) +station = ('kavp', 0.0081217900119395572) +zone = ('paz053', 0.0027047877406444439) + +[18636] +centroid = (0.72241638654290607, -1.3284338156638746) +station = ('kavp', 0.0050840317415044335) +zone = ('paz043', 0.0025548725406881294) + +[18640] +centroid = (0.72079008874589778, -1.3218901225125423) +station = ('kavp', 0.00061673207717783665) +zone = ('paz044', 0.0029570949470244831) + +[18641] +centroid = (0.72156300780514349, -1.3216151109823053) +station = ('kavp', 0.00021007229012558591) +zone = ('paz044', 0.0022222905965523601) + +[18642] +centroid = (0.7218044392005718, -1.3224914931596092) +station = ('kavp', 0.00065875806560602654) +zone = ('paz044', 0.0025672515340020331) + +[18643] +centroid = (0.72205705815650545, -1.323665070001943) +station = ('kavp', 0.0015480947166356812) +zone = ('paz043', 0.0034555707467883523) + +[18644] +centroid = (0.72130811992118227, -1.3243978115818078) +station = ('kavp', 0.0019560050503545133) +zone = ('paz047', 0.0029785384403942165) + +[18651] +centroid = (0.72001882774944159, -1.3257493945545522) +station = ('kavp', 0.0032768930710466351) +zone = ('paz047', 0.0013943071207529946) + +[18653] +centroid = (0.72245738432703555, -1.3233832865942083) +station = ('kavp', 0.0015910430265672452) +zone = ('paz043', 0.0033248321085400795) + +[18655] +centroid = (0.71886139520268899, -1.3299969849018383) +station = ('kavp', 0.0066680838987213664) +zone = ('paz047', 0.0028211357549023318) + +[18656] +centroid = (0.72139758549863942, -1.3296762981050767) +station = ('kavp', 0.0059171523914326304) +zone = ('paz047', 0.0037426456801751681) + +[18657] +centroid = (0.72470453064556328, -1.3257430415560749) +station = ('kavp', 0.0044339499765921435) +zone = ('paz043', 0.00074854892185800283) + +[18660] +centroid = (0.71729075595552672, -1.3275325799980222) +station = ('kavp', 0.0059606893982974141) +zone = ('paz047', 0.0016873923807397453) + +[18661] +centroid = (0.71691894846497439, -1.3219275598249975) +station = ('kavp', 0.0044849010469395472) +zone = ('paz054', 0.0027920333596549137) + +[18701] +centroid = (0.71983745313357428, -1.32444360902138) +station = ('kavp', 0.002531372093764589) +zone = ('paz047', 0.001790256082165743) + +[18702] +centroid = (0.71960766308425672, -1.3222168830551007) +station = ('kavp', 0.0018227420496356097) +zone = ('paz047', 0.0031783759762056369) + +[18704] +centroid = (0.72016740762866371, -1.3249603486530181) +station = ('kavp', 0.0026791308624353376) +zone = ('paz047', 0.0017803652935831939) + +[18705] +centroid = (0.72032939163654131, -1.3237054394675416) +station = ('kavp', 0.0017915574458045222) +zone = ('paz047', 0.0025317142431118839) + +[18706] +centroid = (0.71913438215099335, -1.3249601217602154) +station = ('kavp', 0.0032865622014514044) +zone = ('paz047', 0.0010771530705337292) + +[18707] +centroid = (0.7179542777772574, -1.3252895701098217) +station = ('kavp', 0.0043352307676329535) +zone = ('paz047', 0.0010263387554776259) + +[18708] +centroid = (0.72074851500311532, -1.3258125405668895) +station = ('kavp', 0.003086918217269541) +zone = ('paz047', 0.0020975377354707594) + +[18709] +centroid = (0.72056736728005077, -1.3246418609711141) +station = ('kavp', 0.0022951050498472036) +zone = ('paz047', 0.0022461731531888186) + +[18801] +centroid = (0.73000820226993857, -1.3253979899629555) +station = ('kbgm', 0.0065452322639767899) +zone = ('paz039', 0.0018087953023956853) + +[18810] +centroid = (0.73187406396007559, -1.3353013197513293) +station = ('kelm', 0.0065203431662841102) +zone = ('paz038', 0.0025278599100234814) + +[18812] +centroid = (0.73257055505137647, -1.3258348633280224) +station = ('kbgm', 0.0039657072013682074) +zone = ('paz039', 0.0033993443252517872) + +[18814] +centroid = (0.72926947421073951, -1.3370491273708613) +station = ('kelm', 0.0076823220702735119) +zone = ('paz038', 0.0011943262634758834) + +[18816] +centroid = (0.72879987592219786, -1.3249777495856605) +station = ('kavp', 0.0077709654490020789) +zone = ('paz039', 0.0018682255353690187) + +[18817] +centroid = (0.73081686567226511, -1.3374739230575046) +station = ('kelm', 0.0061992259472024892) +zone = ('paz038', 0.0021042513763138656) + +[18818] +centroid = (0.73148944575281349, -1.3272183683727856) +station = ('kbgm', 0.0051004746452418528) +zone = ('paz039', 0.0035288008210051501) + +[18821] +centroid = (0.73286218211609222, -1.3216121439225772) +station = ('kbgm', 0.0049829897150566209) +zone = ('paz039', 0.0031106899727806701) + +[18822] +centroid = (0.73251756685528591, -1.3228564065996165) +station = ('kbgm', 0.00470105005620343) +zone = ('paz039', 0.0025979024674153079) + +[18823] +centroid = (0.72916906541887216, -1.3210412641775424) +station = ('kavp', 0.0077868172355619152) +zone = ('paz039', 0.0016249730373255886) + +[18824] +centroid = (0.72775632610913799, -1.3227358741614736) +station = ('kavp', 0.0063924237660050176) +zone = ('paz039', 0.0021720487145671201) + +[18825] +centroid = (0.72968521163856437, -1.3196037935523071) +station = ('kbgm', 0.0084004205199705757) +zone = ('paz039', 0.0025225433044296125) + +[18826] +centroid = (0.72860071640125268, -1.3220675875908849) +station = ('kavp', 0.0072008284001998223) +zone = ('paz039', 0.0014831838699298318) + +[18828] +centroid = (0.72966498327253393, -1.3281286273908708) +station = ('kbgm', 0.0070182213441524711) +zone = ('paz043', 0.0051382921133286234) + +[18829] +centroid = (0.73020565136821669, -1.3294784475810706) +station = ('kbgm', 0.0067870722821367704) +zone = ('paz043', 0.0059368078449245345) + +[18830] +centroid = (0.73232421928074987, -1.3284475863116727) +station = ('kbgm', 0.004534771623747714) +zone = ('nyz055', 0.0044462581546533524) + +[18831] +centroid = (0.73119212891473628, -1.3368893599311338) +station = ('kelm', 0.0061584744698201729) +zone = ('paz038', 0.0021323243412073576) + +[18832] +centroid = (0.72742801222354525, -1.3363744179886254) +station = ('kipt', 0.0087560089997536037) +zone = ('paz038', 0.0020405520320114093) + +[18833] +centroid = (0.72600755855851717, -1.334891010297478) +station = ('kipt', 0.0082965486027164487) +zone = ('paz042', 0.0026641493251242806) + +[18834] +centroid = (0.7300881208963873, -1.3215795935320276) +station = ('kbgm', 0.0072843443395043967) +zone = ('paz039', 0.0010520635218107934) + +[18837] +centroid = (0.73155569845121926, -1.331735751715845) +station = ('kbgm', 0.0064711181647033773) +zone = ('paz038', 0.0035396331210461331) + +[18840] +centroid = (0.73254177457201108, -1.3357871321486219) +station = ('kelm', 0.0058279109135246738) +zone = ('paz038', 0.0032029133175155459) + +[18842] +centroid = (0.72866963945341401, -1.3198779149646256) +station = ('kavp', 0.0074073373673090382) +zone = ('paz039', 0.0026256714568764767) + +[18843] +centroid = (0.72945088373319178, -1.3246976766005929) +station = ('kbgm', 0.0071609303498236868) +zone = ('paz039', 0.0013684776736652895) + +[18844] +centroid = (0.72764469485018035, -1.3247963400632081) +station = ('kavp', 0.0066339519998558829) +zone = ('paz039', 0.0026516336500836397) + +[18845] +centroid = (0.72932717479581033, -1.329629575641001) +station = ('kbgm', 0.0076496635191664842) +zone = ('paz043', 0.0051676465593025033) + +[18846] +centroid = (0.72643066127578559, -1.3304642444491821) +station = ('kavp', 0.0082131861873659829) +zone = ('paz043', 0.0033171056127964281) + +[18847] +centroid = (0.73179596047604889, -1.3191029364168625) +station = ('kbgm', 0.0070600325072903963) +zone = ('paz039', 0.0034382003874430544) + +[18848] +centroid = (0.72869341083782624, -1.3343869592095019) +station = ('kelm', 0.0092742618948989265) +zone = ('paz038', 0.0010290829089414707) + +[18850] +centroid = (0.73049459062588429, -1.3345203547242319) +station = ('kelm', 0.0078699986865462482) +zone = ('paz038', 0.0013394208602387425) + +[18851] +centroid = (0.73188465810863523, -1.3295300918736372) +station = ('kbgm', 0.005275504149278438) +zone = ('nyz055', 0.004455842868566485) + +[18853] +centroid = (0.72817604288765758, -1.3312834845467758) +station = ('kbgm', 0.0091809188290814282) +zone = ('paz038', 0.003322677026205134) + +[18854] +centroid = (0.72938503246051389, -1.3326591879697827) +station = ('kbgm', 0.0086238369658238265) +zone = ('paz038', 0.0020818040196156681) + +[18901] +centroid = (0.70347706833793722, -1.3115650862703017) +station = ('kdyl', 0.00062261002475567852) +zone = ('paz069', 0.00075983865699918356) + +[18902] +centroid = (0.70427759850594951, -1.3106668700240554) +station = ('kdyl', 0.00043082726144766755) +zone = ('paz069', 0.00030208928649129836) + +[18912] +centroid = (0.70378572981615251, -1.3099814268669194) +station = ('kdyl', 0.00081832844365781817) +zone = ('paz069', 0.00070684173601800321) + +[18913] +centroid = (0.70475330544687309, -1.310044311079869) +station = ('kdyl', 0.0011018026931069573) +zone = ('paz069', 0.0009658985194562704) + +[18914] +centroid = (0.70317263055651191, -1.3126588841125264) +station = ('kdyl', 0.0014629753255492612) +zone = ('paz069', 0.0016094066119319453) + +[18915] +centroid = (0.70288068933253089, -1.3134794332070592) +station = ('kdyl', 0.0021500763024073573) +zone = ('paz068', 0.0018174187217870653) + +[18917] +centroid = (0.70471017836105632, -1.312591427136937) +station = ('kdyl', 0.0014102402966065589) +zone = ('paz069', 0.0014925835632894275) + +[18920] +centroid = (0.70681851864417289, -1.3104636089793682) +station = ('kdyl', 0.002901638405264403) +zone = ('njz009', 0.0025807478934464245) + +[18923] +centroid = (0.70440338438514072, -1.3120324330841084) +station = ('kdyl', 0.00088660460259149811) +zone = ('paz069', 0.00097546738376534008) + +[18925] +centroid = (0.70317240366370926, -1.310009910640312) +station = ('kdyl', 0.0011012012925604646) +zone = ('paz069', 0.001061494396811189) + +[18929] +centroid = (0.7025912439293801, -1.3103958552978057) +station = ('kdyl', 0.0014425835538657086) +zone = ('paz069', 0.0014654666493188692) + +[18930] +centroid = (0.70722615774426878, -1.3128135028309607) +station = ('kukt', 0.002634246987483998) +zone = ('paz069', 0.0035404042164336315) + +[18932] +centroid = (0.70325626673426744, -1.3134424322269167) +station = ('kdyl', 0.001963543341888144) +zone = ('paz068', 0.0020807485759001885) + +[18935] +centroid = (0.70575906888162732, -1.3160388712886464) +station = ('kukt', 0.00029180963434942344) +zone = ('paz061', 0.0039630240066596024) + +[18936] +centroid = (0.70204211098682512, -1.3130279339828608) +station = ('klom', 0.0015773089255394512) +zone = ('paz068', 0.0018301748616334371) + +[18938] +centroid = (0.70425864423027285, -1.3089628876220407) +station = ('kdyl', 0.0016079466505435089) +zone = ('paz069', 0.0014659674924872006) + +[18940] +centroid = (0.70269250793258087, -1.3079109078686937) +station = ('kttn', 0.001657895433601205) +zone = ('paz069', 0.0026078954193077472) + +[18942] +centroid = (0.70635497664813574, -1.3117976164865448) +station = ('kdyl', 0.0024749505187691865) +zone = ('paz069', 0.0024481300000579491) + +[18944] +centroid = (0.70492614540269816, -1.3130887238007076) +station = ('kdyl', 0.0018458536780537637) +zone = ('paz069', 0.0019284423515462665) + +[18947] +centroid = (0.70551268075112339, -1.3110536175330048) +station = ('kdyl', 0.0015632934875286172) +zone = ('paz069', 0.0015065172661566128) + +[18950] +centroid = (0.70590227314675347, -1.3102960224645916) +station = ('kdyl', 0.0020319153845222977) +zone = ('paz069', 0.0019369059574059161) + +[18951] +centroid = (0.70602685474876092, -1.3150871257942411) +station = ('kukt', 0.00052984167410190383) +zone = ('paz068', 0.0042212499593468162) + +[18954] +centroid = (0.70206689466220351, -1.3088750277474954) +station = ('kpne', 0.0025007356460824198) +zone = ('paz069', 0.0024658409789975891) + +[18955] +centroid = (0.70645063814443765, -1.3144719321394982) +station = ('kukt', 0.0011588953281494818) +zone = ('paz069', 0.003675262213829879) + +[18960] +centroid = (0.7045237422903583, -1.3146840070969081) +station = ('kukt', 0.001410960806593146) +zone = ('paz068', 0.0027664817106942299) + +[18962] +centroid = (0.70418247806171586, -1.3137291898230194) +station = ('kukt', 0.0021294828084104499) +zone = ('paz068', 0.0026930259681976253) + +[18964] +centroid = (0.70342825147875898, -1.3148942145520184) +station = ('kukt', 0.0023682903767586125) +zone = ('paz068', 0.0016621514379068687) + +[18966] +centroid = (0.70142108793238045, -1.3091696916851097) +station = ('kpne', 0.0018371674542768052) +zone = ('paz069', 0.0028952642010554269) + +[18969] +centroid = (0.70382677996015941, -1.3154271159325297) +station = ('kukt', 0.0019052579358694553) +zone = ('paz068', 0.0020142455109997586) + +[18970] +centroid = (0.70532257948899613, -1.3156496105055739) +station = ('kukt', 0.0004013578089541525) +zone = ('paz068', 0.0035149000501278802) + +[18972] +centroid = (0.7073351710093484, -1.3111727711610386) +station = ('kdyl', 0.0033873735421813818) +zone = ('njz009', 0.0029011790091878933) + +[18974] +centroid = (0.70192014737869568, -1.3102675910510764) +station = ('kdyl', 0.0021117023655924513) +zone = ('paz069', 0.0021414209896896655) + +[18976] +centroid = (0.70247591257240827, -1.3115004567281003) +station = ('kdyl', 0.0015160499562387193) +zone = ('paz069', 0.0016134697965206296) + +[18977] +centroid = (0.70313838719658783, -1.3069394227004487) +station = ('kttn', 0.00087352681267984986) +zone = ('njz015', 0.0024054867962759064) + +[18980] +centroid = (0.70284347891287835, -1.3092968214678249) +station = ('kdyl', 0.0017253262835990257) +zone = ('paz069', 0.0016699024273339684) + +[19001] +centroid = (0.70032927976550297, -1.3111863149160341) +station = ('kpne', 0.001631206277202722) +zone = ('paz071', 0.0020679494741732483) + +[19002] +centroid = (0.70138825828915052, -1.3126058784631436) +station = ('klom', 0.0011563214174456333) +zone = ('paz068', 0.0021802917427954302) + +[19003] +centroid = (0.6981588057610153, -1.3142142342754413) +station = ('klom', 0.0024156106069787246) +zone = ('paz070', 0.0019963727906115469) + +[19004] +centroid = (0.69830192275967884, -1.3130375158404544) +station = ('klom', 0.0022740323505847744) +zone = ('paz071', 0.0013067300654750862) + +[19006] +centroid = (0.70075730431126204, -1.3095885881588809) +station = ('kpne', 0.0011935334734079646) +zone = ('paz071', 0.0028274970719623198) + +[19007] +centroid = (0.70010704699184656, -1.3065124628055333) +station = ('kpne', 0.0021859614210045508) +zone = ('njz019', 0.0026088151958717156) + +[19008] +centroid = (0.697653567849148, -1.315284627252397) +station = ('kphl', 0.0025110204304186526) +zone = ('paz070', 0.0011048893198202295) + +[19009] +centroid = (0.7005368517734426, -1.3101181734138132) +station = ('kpne', 0.0011433017684815752) +zone = ('paz071', 0.0024550604717679773) + +[19010] +centroid = (0.69854401738022298, -1.3147517607784707) +station = ('klom', 0.0021673368415357271) +zone = ('paz070', 0.0020835475098786326) + +[19012] +centroid = (0.69917483173177131, -1.3108448936077588) +station = ('kpne', 0.0012605247311459672) +zone = ('paz071', 0.0009839678586319909) + +[19013] +centroid = (0.69548164522138123, -1.3155959765376601) +station = ('kphl', 0.0019662286201439713) +zone = ('paz070', 0.0012285192871074502) + +[19014] +centroid = (0.69577388315133515, -1.3165534816185969) +station = ('kphl', 0.0026743958496132634) +zone = ('paz070', 0.0010118954813342965) + +[19015] +centroid = (0.69583891411926446, -1.3158551230249962) +station = ('kphl', 0.0021384133433644263) +zone = ('paz070', 0.00084283661778576809) + +[19017] +centroid = (0.69625074200956505, -1.3170279319224589) +station = ('kphl', 0.0030703646542494262) +zone = ('paz070', 0.00092332979962606065) + +[19018] +centroid = (0.69678910627063517, -1.3142084048757396) +station = ('kphl', 0.0013164141268915638) +zone = ('paz070', 0.0013485860005468318) + +[19020] +centroid = (0.69988734494560545, -1.3079311362347243) +station = ('kpne', 0.0010807069606932) +zone = ('paz071', 0.003067776406358962) + +[19021] +centroid = (0.69969640592543736, -1.3071151773561245) +station = ('kpne', 0.0016658892695721132) +zone = ('njz019', 0.0025670171521534869) + +[19022] +centroid = (0.6957133725861685, -1.3148790825474035) +station = ('kphl', 0.0013920654766524764) +zone = ('paz070', 0.0012724323781357974) + +[19023] +centroid = (0.6966855209795294, -1.3136637225227772) +station = ('kphl', 0.00099195876327342171) +zone = ('paz070', 0.0017618212444875656) + +[19025] +centroid = (0.70068763076752238, -1.3118241454911752) +station = ('klom', 0.0013832520617424366) +zone = ('paz071', 0.0024523484237643158) + +[19026] +centroid = (0.6972645863187561, -1.3143034729600958) +station = ('kphl', 0.0017400292679470521) +zone = ('paz070', 0.0013997363865876568) + +[19027] +centroid = (0.69940785064020505, -1.3111686696372962) +station = ('kpne', 0.0014501586679305323) +zone = ('paz071', 0.0011503371949978497) + +[19029] +centroid = (0.69583388757101861, -1.3141019572446604) +station = ('kphl', 0.00079307858651179498) +zone = ('paz070', 0.001657195140810756) + +[19030] +centroid = (0.70128146159222093, -1.306156642530929) +station = ('kttn', 0.0018161927192773832) +zone = ('njz015', 0.002548240344789893) + +[19031] +centroid = (0.70003681494274628, -1.3127843907390375) +station = ('klom', 0.00080933519654485906) +zone = ('paz071', 0.0020921462012171168) + +[19032] +centroid = (0.69623445808764384, -1.3138625155245796) +station = ('kphl', 0.00074514812039966382) +zone = ('paz070', 0.0016695884821242308) + +[19033] +centroid = (0.69622723242454065, -1.3147291936712422) +station = ('kphl', 0.0013420363825659102) +zone = ('paz070', 0.0010467504770291566) + +[19034] +centroid = (0.70047508457121443, -1.3125721936085799) +station = ('klom', 0.00080462493511318154) +zone = ('paz071', 0.0024057839066336916) + +[19035] +centroid = (0.69902790991533847, -1.3138427060375693) +station = ('klom', 0.0015130627218702239) +zone = ('paz071', 0.0020684311924036836) + +[19036] +centroid = (0.69644881942637393, -1.3141169496229352) +station = ('kphl', 0.0010301361256842662) +zone = ('paz070', 0.0014327531792079427) + +[19038] +centroid = (0.69988432552599944, -1.3119947339722653) +station = ('klom', 0.0014026686316900322) +zone = ('paz071', 0.0016975045843425948) + +[19040] +centroid = (0.70121882172536687, -1.3108399194193905) +station = ('kpne', 0.0020183921052119389) +zone = ('paz069', 0.0027946774080945275) + +[19041] +centroid = (0.69826095988213455, -1.3145093345453684) +station = ('klom', 0.0023699113851103448) +zone = ('paz070', 0.0019349248542173572) + +[19043] +centroid = (0.6963913108275207, -1.3143873883905317) +station = ('kphl', 0.0011692398282151506) +zone = ('paz070', 0.0012404649411708315) + +[19044] +centroid = (0.70137918257704013, -1.3116649714633934) +station = ('klom', 0.0017191611508302494) +zone = ('paz069', 0.0027050875775002136) + +[19046] +centroid = (0.6999015344724242, -1.3108385929691591) +station = ('kpne', 0.0012275550716299571) +zone = ('paz071', 0.0016802174562059846) + +[19047] +centroid = (0.70127278730583853, -1.3074627247700741) +station = ('kpne', 0.0021890502617823693) +zone = ('njz015', 0.0033356430049994051) + +[19050] +centroid = (0.69704151578705853, -1.313598761368018) +station = ('kphl', 0.0013018840814510732) +zone = ('paz070', 0.0018475058239773451) + +[19053] +centroid = (0.70081394024548915, -1.308560449603116) +station = ('kpne', 0.0013479193349915431) +zone = ('paz071', 0.003316334224139795) + +[19054] +centroid = (0.70115153928270246, -1.3058347863635689) +station = ('kttn', 0.0019254752690091572) +zone = ('njz015', 0.0024796013705585076) + +[19055] +centroid = (0.70075505283652695, -1.3061907637178056) +station = ('kttn', 0.0023411199670469209) +zone = ('njz015', 0.0029591566141558153) + +[19056] +centroid = (0.70073815804936757, -1.3070040347893572) +station = ('kpne', 0.0020922260076419864) +zone = ('njz019', 0.0033433566573442056) + +[19057] +centroid = (0.70058938618392774, -1.3064494564195361) +station = ('kttn', 0.0025368008098371579) +zone = ('njz019', 0.0030114587303783614) + +[19060] +centroid = (0.69551368946644776, -1.3176134898865028) +station = ('kilg', 0.0035032702845194594) +zone = ('paz070', 0.0017214994457173543) + +[19061] +centroid = (0.69514422071709314, -1.3165903255191063) +station = ('kphl', 0.0027827027080002467) +zone = ('paz070', 0.0016079231237614822) + +[19063] +centroid = (0.69674346591069547, -1.3162606851832823) +station = ('kphl', 0.0026223256122761768) +zone = ('paz070', 0.00023917603369078648) + +[19064] +centroid = (0.69696505291252864, -1.3149452479793466) +station = ('kphl', 0.0018486996682110302) +zone = ('paz070', 0.00083008595341531289) + +[19066] +centroid = (0.69817678265231087, -1.3133439258439343) +station = ('klom', 0.0023643458439180547) +zone = ('paz071', 0.0015434502173649659) + +[19067] +centroid = (0.70173088387460947, -1.3058281192058261) +station = ('kttn', 0.0013461237872108597) +zone = ('njz015', 0.0020583681917827985) + +[19070] +centroid = (0.69649541971740203, -1.3146645990356258) +station = ('kphl', 0.0014055317264965968) +zone = ('paz070', 0.0010108325318938225) + +[19072] +centroid = (0.6985486774093258, -1.3134953680631298) +station = ('klom', 0.0019852192559589128) +zone = ('paz071', 0.0016809306096689941) + +[19073] +centroid = (0.69777237241133128, -1.3165963818116109) +station = ('kphl', 0.0033449295757974158) +zone = ('paz070', 0.0011980869345065272) + +[19074] +centroid = (0.69614185091753311, -1.3141588549782754) +station = ('kphl', 0.00090155729993337066) +zone = ('paz070', 0.0014826384727536391) + +[19075] +centroid = (0.70011928174990301, -1.3122263391640048) +station = ('klom', 0.0011440692578703194) +zone = ('paz071', 0.0019771494564307947) + +[19076] +centroid = (0.69614371841983269, -1.3143615575176022) +station = ('kphl', 0.0010480428013644198) +zone = ('paz070', 0.0013380855966049654) + +[19078] +centroid = (0.69593918328479154, -1.3146190808487339) +station = ('kphl', 0.0011969829498331482) +zone = ('paz070', 0.0012669877835333433) + +[19079] +centroid = (0.69636806304188403, -1.313649847155224) +station = ('kphl', 0.00071826487874296233) +zone = ('paz070', 0.0017995454582013166) + +[19081] +centroid = (0.6963523027187386, -1.3150560065736783) +station = ('kphl', 0.0016198718379104187) +zone = ('paz070', 0.00076660652555036904) + +[19082] +centroid = (0.69744074240015974, -1.3137161871200922) +station = ('kphl', 0.0017097097163408571) +zone = ('paz070', 0.0018825334280961575) + +[19083] +centroid = (0.69773071140208609, -1.3144435181792757) +station = ('kphl', 0.0021955733817260758) +zone = ('paz070', 0.0015689471683331916) + +[19085] +centroid = (0.69877700138207177, -1.3151040729412782) +station = ('klom', 0.002089005955694763) +zone = ('paz070', 0.002199428196361289) + +[19086] +centroid = (0.69622285164811815, -1.3154552157334867) +station = ('kphl', 0.0018780709148868034) +zone = ('paz070', 0.00059786438718192707) + +[19087] +centroid = (0.69921157091252573, -1.3160212085566161) +station = ('klom', 0.0022605586077459167) +zone = ('paz070', 0.0025341520259766865) + +[19090] +centroid = (0.70087975661158197, -1.3111742895974876) +station = ('kpne', 0.0019376340416247704) +zone = ('paz071', 0.0026181995971388586) + +[19094] +centroid = (0.69594796229092903, -1.3150469832214453) +station = ('kphl', 0.0015245557073872028) +zone = ('paz070', 0.0010120552172736888) + +[19095] +centroid = (0.69963271886103195, -1.3116395071096068) +station = ('kpne', 0.0017998581682210284) +zone = ('paz071', 0.0013884490751358066) + +[19096] +centroid = (0.69809473472417449, -1.3137822478322803) +station = ('kphl', 0.0023544740561516667) +zone = ('paz070', 0.002190021602976724) + +[19102] +centroid = (0.69730760868481756, -1.3118869598909546) +station = ('kphl', 0.0017554653188668033) +zone = ('paz071', 0.001046927705225057) + +[19103] +centroid = (0.69730958090687245, -1.3120390129753881) +station = ('kphl', 0.0016998899100267313) +zone = ('paz071', 0.001097689627839194) + +[19104] +centroid = (0.69741121142921603, -1.3124713484843997) +station = ('kphl', 0.0016708144196461022) +zone = ('paz071', 0.0012205430866332608) + +[19106] +centroid = (0.69723510770768971, -1.3114890771813772) +station = ('kphl', 0.0018750536912818436) +zone = ('paz071', 0.0010362356295147929) + +[19107] +centroid = (0.69728931763425672, -1.3117659736672063) +station = ('kphl', 0.0017899660033192846) +zone = ('paz071', 0.0010301298966273675) + +[19109] +centroid = (0.69725296242593771, -1.3118532401298058) +station = ('kphl', 0.0017227893749749122) +zone = ('paz071', 0.0010873431467733979) + +[19111] +centroid = (0.69918957976395057, -1.310396274176826) +station = ('kpne', 0.0009363467923622237) +zone = ('paz071', 0.0011702843389281301) + +[19112] +centroid = (0.69620969186555803, -1.3119490063458628) +station = ('kphl', 0.00095043357200088707) +zone = ('paz071', 0.0021083649205948206) + +[19113] +centroid = (0.6958749551683181, -1.3133100490031531) +station = ('kphl', 0.00019766819075489345) +zone = ('paz070', 0.0021864984511276602) + +[19114] +centroid = (0.69934227862020759, -1.3090015466649725) +station = ('kpne', 0.00032780447207165527) +zone = ('paz071', 0.0020846851004728524) + +[19115] +centroid = (0.69971467952270572, -1.3097451267394922) +station = ('kpne', 0.00037272967902670555) +zone = ('paz071', 0.0018919335897706765) + +[19116] +centroid = (0.70014876036096918, -1.309228648907242) +station = ('kpne', 0.00056443663072163809) +zone = ('paz071', 0.0024784992799000444) + +[19118] +centroid = (0.69939606966775403, -1.3127042801263709) +station = ('klom', 0.0013349313086044388) +zone = ('paz071', 0.0015441105429211928) + +[19119] +centroid = (0.69906279904708579, -1.3123324726358185) +station = ('klom', 0.0017692791850701284) +zone = ('paz071', 0.0011064175056522219) + +[19120] +centroid = (0.69872767837741023, -1.3110773365575392) +station = ('kpne', 0.001616458354729814) +zone = ('paz071', 0.00050276038016090611) + +[19121] +centroid = (0.69781719246652241, -1.3121231727519194) +station = ('kphl', 0.0021394142638581884) +zone = ('paz071', 0.00075309443256898004) + +[19122] +centroid = (0.6977432952259931, -1.3115433569211143) +station = ('kphl', 0.0022645580802611058) +zone = ('paz071', 0.00054558848914520943) + +[19123] +centroid = (0.69751107916901511, -1.3115368468430044) +station = ('kphl', 0.0020721324286812762) +zone = ('paz071', 0.00076941510852683971) + +[19124] +centroid = (0.6984304837123807, -1.3106168488876933) +station = ('kpne', 0.0015396515204416179) +zone = ('paz071', 0.00057251912711728248) + +[19125] +centroid = (0.69771716764709069, -1.3111804331564547) +station = ('kpne', 0.0023649961669844695) +zone = ('paz071', 0.00055939405375752128) + +[19126] +centroid = (0.69909843867041155, -1.3113978139147904) +station = ('kpne', 0.0016867458585078147) +zone = ('paz071', 0.00083560501600541174) + +[19127] +centroid = (0.69862294116899815, -1.3129684182553676) +station = ('klom', 0.0019730223924720983) +zone = ('paz071', 0.0013033953516515043) + +[19128] +centroid = (0.69897788877897615, -1.3129751377729879) +station = ('klom', 0.0016305579134380803) +zone = ('paz071', 0.0014463208397268955) + +[19129] +centroid = (0.69835883794658637, -1.3122328143355295) +station = ('klom', 0.0024188139220098792) +zone = ('paz071', 0.00069625624097371626) + +[19130] +centroid = (0.69757206097307978, -1.3120699925696111) +station = ('kphl', 0.0019265130609726242) +zone = ('paz071', 0.00089376302932799901) + +[19131] +centroid = (0.69796037927835608, -1.3127981788401282) +station = ('kphl', 0.002165791939443139) +zone = ('paz071', 0.0011634408342452317) + +[19132] +centroid = (0.6980664603902923, -1.3119789212892421) +station = ('kphl', 0.0024114764801129768) +zone = ('paz071', 0.00053347066503158598) + +[19133] +centroid = (0.69801113345300403, -1.31146956440034) +station = ('kpne', 0.0022958204857823532) +zone = ('paz071', 0.0002742094990179199) + +[19134] +centroid = (0.69795025636869445, -1.3109009361300403) +station = ('kpne', 0.0020497501680737211) +zone = ('paz071', 0.00045584416138189207) + +[19135] +centroid = (0.69851759309534778, -1.3098440170949102) +station = ('kpne', 0.0011502384011622359) +zone = ('paz071', 0.001167554181888718) + +[19136] +centroid = (0.69881946524277272, -1.3093207848384547) +station = ('kpne', 0.00076709143650750594) +zone = ('paz071', 0.0016372737846244477) + +[19137] +centroid = (0.69801247735652816, -1.310254344002054) +station = ('kpne', 0.0017389622723872589) +zone = ('paz071', 0.00086323431060961013) + +[19138] +centroid = (0.69910912008543369, -1.311772850264459) +station = ('kpne', 0.001960609732825567) +zone = ('paz071', 0.00090966366856281959) + +[19139] +centroid = (0.697457165948421, -1.3129995723825156) +station = ('kphl', 0.0016534378332358685) +zone = ('paz071', 0.0015112077385387964) + +[19140] +centroid = (0.69834422954074715, -1.3115363057909362) +station = ('kpne', 0.0021224925800270248) +zone = ('paz071', 0.00017556605813175063) + +[19141] +centroid = (0.69878749081087621, -1.3115398313560254) +station = ('kpne', 0.0018996482351400061) +zone = ('paz071', 0.00054677685905402563) + +[19142] +centroid = (0.69676591084487616, -1.3130683907149221) +station = ('kphl', 0.00096131601236782739) +zone = ('paz071', 0.0020040098924830568) + +[19143] +centroid = (0.6971295152879442, -1.3129397250424648) +station = ('kphl', 0.0013286477331045127) +zone = ('paz071', 0.0016749326879245893) + +[19144] +centroid = (0.69872263437587212, -1.3120351208911563) +station = ('klom', 0.0021785851614174135) +zone = ('paz071', 0.00070697201611183153) + +[19145] +centroid = (0.69655840865010665, -1.3124573160372139) +station = ('kphl', 0.00088813683206468525) +zone = ('paz071', 0.0019115400099097516) + +[19146] +centroid = (0.69707570678710518, -1.3122108930001246) +station = ('kphl', 0.0014315848512391478) +zone = ('paz071', 0.00136613033225264) + +[19147] +centroid = (0.69700294401058949, -1.3116583741188208) +station = ('kphl', 0.0016148518406486794) +zone = ('paz071', 0.0012859325967231555) + +[19148] +centroid = (0.69658903917847903, -1.3116406764802055) +station = ('kphl', 0.0013479806211834976) +zone = ('paz071', 0.0016919110531611983) + +[19149] +centroid = (0.69879007389816916, -1.3101448071381989) +station = ('kpne', 0.0010314708307186198) +zone = ('paz071', 0.0010503287515061196) + +[19150] +centroid = (0.69939699469225769, -1.311995833529694) +station = ('klom', 0.0016835430635009385) +zone = ('paz071', 0.0012413868072231166) + +[19151] +centroid = (0.69777513003154945, -1.3134830634919032) +station = ('kphl', 0.0019959114025037859) +zone = ('paz071', 0.001718907115149784) + +[19152] +centroid = (0.6991954091636523, -1.3098169819447969) +station = ('kpne', 0.00056270620710679629) +zone = ('paz071', 0.0014875444160672474) + +[19153] +centroid = (0.69627198266656176, -1.313005052716367) +station = ('kphl', 0.00046998665436880435) +zone = ('paz070', 0.0023034179078279694) + +[19154] +centroid = (0.69981568172651853, -1.3087040552939702) +station = ('kpne', 0.00050214075198364342) +zone = ('paz071', 0.0025404146664217029) + +[19301] +centroid = (0.69883470196714259, -1.3173804709780692) +station = ('kptw', 0.0034952824623625742) +zone = ('paz070', 0.002415679996890028) + +[19310] +centroid = (0.69699828398148667, -1.3259761302776787) +station = ('kmqs', 0.0015836521648859973) +zone = ('paz067', 0.0030773053168044184) + +[19311] +centroid = (0.69500921949945138, -1.3224594838211279) +station = ('kmqs', 0.0030719100721955583) +zone = ('paz067', 0.0026743433394811884) + +[19312] +centroid = (0.69867783177397347, -1.3169372795211103) +station = ('klom', 0.0031416279836364606) +zone = ('paz070', 0.00213539864694463) + +[19316] +centroid = (0.69907560976379546, -1.3235499306311889) +station = ('kmqs', 0.001380432424814479) +zone = ('paz067', 0.0018151715779161554) + +[19317] +centroid = (0.69570220247895564, -1.3194581109196433) +station = ('kilg', 0.0033882760317287858) +zone = ('paz067', 0.0027980717373987823) + +[19319] +centroid = (0.69681498950344223, -1.3180891095609639) +station = ('kilg', 0.0046242174566340282) +zone = ('paz070', 0.0016380227224891415) + +[19320] +centroid = (0.6974774466743292, -1.3235246059037424) +station = ('kmqs', 0.000588576082239468) +zone = ('paz067', 0.0011402445224728561) + +[19330] +centroid = (0.69589589911934202, -1.3249566311017114) +station = ('kmqs', 0.0019782052394374402) +zone = ('paz067', 0.0028419164796481123) + +[19333] +centroid = (0.69886250506212688, -1.3163901013473176) +station = ('klom', 0.0026963109243260874) +zone = ('paz070', 0.0022092918161813113) + +[19335] +centroid = (0.69852645936794788, -1.3215845677203955) +station = ('kmqs', 0.0021236991087935754) +zone = ('paz067', 0.00093382258030918087) + +[19341] +centroid = (0.69882880275427084, -1.3201779719696283) +station = ('kmqs', 0.0032398371306876571) +zone = ('paz067', 0.0018506381330625026) + +[19342] +centroid = (0.69649192905889812, -1.3176700385542677) +station = ('kilg', 0.0044007298332274054) +zone = ('paz070', 0.0013241644276935642) + +[19343] +centroid = (0.69989137665617751, -1.3221712950550386) +station = ('kmqs', 0.0026105229053721281) +zone = ('paz067', 0.0022273912350181057) + +[19344] +centroid = (0.69959137201105226, -1.324387514139221) +station = ('kmqs', 0.0018156155734156711) +zone = ('paz067', 0.0026252857120373329) + +[19345] +centroid = (0.69864547336964145, -1.3188639659356793) +station = ('kptw', 0.0035645440729707612) +zone = ('paz070', 0.0029700896589082816) + +[19348] +centroid = (0.69586765969204478, -1.3214396181260175) +station = ('kmqs', 0.0028439157129144447) +zone = ('paz067', 0.0018593816832691281) + +[19350] +centroid = (0.69394320729891823, -1.3229015757206581) +station = ('kilg', 0.0031027671789339794) +zone = ('dez001', 0.0037018136496428122) + +[19352] +centroid = (0.69422074955657043, -1.3245243828591624) +station = ('kmqs', 0.0035716026289976978) +zone = ('mdz008', 0.0035690211931867269) + +[19355] +centroid = (0.69894910829961077, -1.3182709030558517) +station = ('kptw', 0.0032645158925983606) +zone = ('paz070', 0.0028795736461531139) + +[19358] +centroid = (0.6975255304952217, -1.3230555661205614) +station = ('kmqs', 0.00090020654788468529) +zone = ('paz067', 0.00077784110337166196) + +[19362] +centroid = (0.69378134546408832, -1.3276786466031218) +station = ('kmqs', 0.0048183256380801027) +zone = ('mdz007', 0.0022878568967868041) + +[19363] +centroid = (0.69446890046961895, -1.3259162480310427) +station = ('kmqs', 0.0035711531302624693) +zone = ('mdz007', 0.0036734735625773727) + +[19365] +centroid = (0.69754476402357868, -1.3251434860514297) +station = ('kmqs', 0.00077478266722850314) +zone = ('paz067', 0.0023683366496284309) + +[19367] +centroid = (0.69748578934815375, -1.324426051009105) +station = ('kmqs', 0.00035113844629513569) +zone = ('paz067', 0.0018243547685807436) + +[19372] +centroid = (0.69810372316982228, -1.322234510880546) +station = ('kmqs', 0.0015257342717466468) +zone = ('paz067', 0.00045860132730618795) + +[19373] +centroid = (0.69641806672495365, -1.3182905205566442) +station = ('kilg', 0.0042028439935651871) +zone = ('paz070', 0.0018058192082041542) + +[19374] +centroid = (0.69507295892373422, -1.3222570430811891) +station = ('kmqs', 0.003085681543396163) +zone = ('paz067', 0.0025972662248489116) + +[19375] +centroid = (0.69639438260700415, -1.3219206134145745) +station = ('kmqs', 0.0022207173184795627) +zone = ('paz067', 0.0012756239933999682) + +[19380] +centroid = (0.69794849358614997, -1.3195454122888279) +station = ('kmqs', 0.0035559604298176796) +zone = ('paz067', 0.0019453584181280748) + +[19382] +centroid = (0.69686930414976433, -1.3197035565723512) +station = ('kmqs', 0.003551903778654171) +zone = ('paz067', 0.0019722710085678767) + +[19383] +centroid = (0.69728685672001145, -1.3194973110146431) +station = ('kmqs', 0.003624013916639619) +zone = ('paz067', 0.0019983341450748445) + +[19390] +centroid = (0.69527105379383558, -1.3236988770295541) +station = ('kmqs', 0.0025386969231073965) +zone = ('paz067', 0.0027055886406857146) + +[19401] +centroid = (0.70040377041797808, -1.3147849569408436) +station = ('klom', 0.00089821333261960192) +zone = ('paz068', 0.0014865568074581557) + +[19403] +centroid = (0.70074475539394021, -1.3156007761931032) +station = ('klom', 0.0015275457413286592) +zone = ('paz068', 0.0010781863882517158) + +[19405] +centroid = (0.69993902414475695, -1.3149488957174831) +station = ('klom', 0.0011749511611445251) +zone = ('paz068', 0.0019058390655889487) + +[19406] +centroid = (0.69979479013537216, -1.3156791240232253) +station = ('klom', 0.0017370848976467135) +zone = ('paz068', 0.002028596514909364) + +[19422] +centroid = (0.70086855159778416, -1.3138732667527717) +station = ('klom', 0.00038788640360470895) +zone = ('paz068', 0.001504004269083394) + +[19425] +centroid = (0.69990806200382671, -1.3203601843435366) +station = ('kptw', 0.0026624929668530679) +zone = ('paz067', 0.0025915986840373511) + +[19426] +centroid = (0.70147049820350449, -1.3166249353981734) +station = ('kptw', 0.0016746577298831899) +zone = ('paz068', 0.00099201897397243363) + +[19428] +centroid = (0.69953384595890655, -1.3142409727195818) +station = ('klom', 0.0011042810695378851) +zone = ('paz068', 0.0024465326648393094) + +[19435] +centroid = (0.70384737484533288, -1.3189308993124935) +station = ('kptw', 0.0016629531364614749) +zone = ('paz068', 0.0033726652359136371) + +[19436] +centroid = (0.70164860905367044, -1.3133076753553705) +station = ('klom', 0.0011426205400159868) +zone = ('paz068', 0.0016107531170216707) + +[19437] +centroid = (0.7013157224054376, -1.313510412801282) +station = ('klom', 0.00078882239887880954) +zone = ('paz068', 0.0015306439252149005) + +[19438] +centroid = (0.70282537984853521, -1.3158206178656844) +station = ('kptw', 0.0022076307590542634) +zone = ('paz068', 0.0010611293044013367) + +[19440] +centroid = (0.70313367480760736, -1.3140746253885742) +station = ('klom', 0.0026249967536664523) +zone = ('paz068', 0.0016665846805203369) + +[19442] +centroid = (0.70039219888503734, -1.3191747392622895) +station = ('kptw', 0.0018650607082141097) +zone = ('paz068', 0.0032111967576513452) + +[19444] +centroid = (0.69966331448281949, -1.3134155541564363) +station = ('klom', 0.00088246150433776802) +zone = ('paz071', 0.0021214641801245355) + +[19446] +centroid = (0.70219524617539508, -1.3142883933153586) +station = ('klom', 0.0017398537729627639) +zone = ('paz068', 0.00093506410239721505) + +[19453] +centroid = (0.70058507522067526, -1.3176872300473998) +station = ('kptw', 0.0017617044493755138) +zone = ('paz068', 0.0021320159229766653) + +[19454] +centroid = (0.70202963188267331, -1.3132389093828418) +station = ('klom', 0.0015264361018678344) +zone = ('paz068', 0.0016688080982013576) + +[19456] +centroid = (0.70046874902602974, -1.317056363335974) +station = ('kptw', 0.0020965649891637591) +zone = ('paz068', 0.0018429868743874975) + +[19457] +centroid = (0.70173367640141271, -1.3192964236177387) +station = ('kptw', 0.00071215495702357985) +zone = ('paz068', 0.0029723205804815592) + +[19460] +centroid = (0.70034524952815869, -1.3182550031063662) +station = ('kptw', 0.001877080835485305) +zone = ('paz068', 0.0026255272421461143) + +[19462] +centroid = (0.70014383853247852, -1.3139163589320035) +station = ('klom', 0.00044826409069453844) +zone = ('paz068', 0.0020199882469882102) + +[19464] +centroid = (0.70265084692333568, -1.3197457411803719) +station = ('kptw', 0.00098455327538288532) +zone = ('paz068', 0.0034175265940949882) + +[19465] +centroid = (0.70145709407484913, -1.3209427228879747) +station = ('kptw', 0.0019413954471031729) +zone = ('paz067', 0.0038861102220009401) + +[19468] +centroid = (0.70175566754998786, -1.3182832599869558) +station = ('kptw', 0.00050817226577635338) +zone = ('paz068', 0.0021982382408156538) + +[19472] +centroid = (0.70401230845964635, -1.3190113415377178) +station = ('kptw', 0.0018356889276218481) +zone = ('paz068', 0.0035222393121190076) + +[19473] +centroid = (0.70260976187274371, -1.3174006120776371) +station = ('kptw', 0.00099870087631996878) +zone = ('paz068', 0.0017189038381631269) + +[19474] +centroid = (0.70203300036812977, -1.3160486974923351) +station = ('kptw', 0.0019525083754418902) +zone = ('paz068', 0.00053813154966413145) + +[19475] +centroid = (0.70113710540978846, -1.319468914507713) +station = ('kptw', 0.0012580897839668862) +zone = ('paz068', 0.0031764411512970191) + +[19477] +centroid = (0.70133115111602518, -1.3130366257225359) +station = ('klom', 0.00091628381819263706) +zone = ('paz068', 0.0018725830770933483) + +[19492] +centroid = (0.70311391768047482, -1.3175824230258175) +station = ('kptw', 0.0011942700364310646) +zone = ('paz068', 0.0021103128389348491) + +[19501] +centroid = (0.70239400427061216, -1.3276058314667283) +station = ('krdg', 0.0025146040668656707) +zone = ('paz060', 0.0035371844791476917) + +[19503] +centroid = (0.70522417782576863, -1.3189715305774796) +station = ('kukt', 0.0025714134192514953) +zone = ('paz061', 0.0036152970749313727) + +[19504] +centroid = (0.70539609275709003, -1.3192691441215298) +station = ('kukt', 0.0027682406636175931) +zone = ('paz061', 0.0034331103241978457) + +[19505] +centroid = (0.70475065254641012, -1.3198642839431673) +station = ('kptw', 0.0027239372638966845) +zone = ('paz061', 0.0040978903543927086) + +[19506] +centroid = (0.70603722200451768, -1.3286837991726377) +station = ('krdg', 0.0026197971640009032) +zone = ('paz060', 0.0027579261783785597) + +[19507] +centroid = (0.7069429431665476, -1.3311832153812486) +station = ('krdg', 0.0047095918704218804) +zone = ('paz059', 0.0034512106166628776) + +[19508] +centroid = (0.70272462199081742, -1.3235517632269034) +station = ('krdg', 0.0025267198439694548) +zone = ('paz060', 0.0029417421629029609) + +[19510] +centroid = (0.70594253789259698, -1.3243149258956306) +station = ('krdg', 0.0018414997163019623) +zone = ('paz060', 0.00084121769882138813) + +[19511] +centroid = (0.70658293410173878, -1.3219599182293293) +station = ('krdg', 0.0036141785792381991) +zone = ('paz061', 0.00300306983757259) + +[19512] +centroid = (0.70421115382132604, -1.320874864486657) +station = ('kptw', 0.0026549917242310222) +zone = ('paz060', 0.003472709959099225) + +[19518] +centroid = (0.70284777242283825, -1.3221307336032222) +station = ('krdg', 0.003309951754335913) +zone = ('paz060', 0.0034403749418124591) + +[19519] +centroid = (0.70372822121729928, -1.3218269939534977) +station = ('krdg', 0.0031832518122179559) +zone = ('paz060', 0.0030390461703841266) + +[19520] +centroid = (0.70098548865766774, -1.322845515745084) +station = ('kmqs', 0.0033620165161366788) +zone = ('paz067', 0.0033741548522686991) + +[19522] +centroid = (0.70593974536579374, -1.3233172956951906) +station = ('krdg', 0.0023994973193002546) +zone = ('paz060', 0.0015022281077521826) + +[19523] +centroid = (0.70164044091277122, -1.323840056712748) +station = ('krdg', 0.0032788809020223744) +zone = ('paz060', 0.0038909874258569906) + +[19525] +centroid = (0.70346628220315999, -1.3192073420127168) +station = ('kptw', 0.0013455193452839443) +zone = ('paz068', 0.003339329331050181) + +[19526] +centroid = (0.70768284059634567, -1.3263893020715034) +station = ('krdg', 0.0031764190707396474) +zone = ('paz060', 0.0024679768680536465) + +[19529] +centroid = (0.70915012144520473, -1.3240873000545854) +station = ('krdg', 0.0048133667620234438) +zone = ('paz061', 0.0036204117630210366) + +[19530] +centroid = (0.70754024719645769, -1.3226357271689944) +station = ('krdg', 0.0038865492861401879) +zone = ('paz061', 0.002817956348520733) + +[19533] +centroid = (0.70555114780783723, -1.3263214785767707) +station = ('krdg', 0.001076682398477583) +zone = ('paz060', 0.0008981738678723257) + +[19534] +centroid = (0.70813975034122523, -1.3242667897148606) +station = ('krdg', 0.003808671084997192) +zone = ('paz060', 0.002823183078679604) + +[19535] +centroid = (0.70406545373536966, -1.3230299970470198) +station = ('krdg', 0.0022126739232146485) +zone = ('paz060', 0.0020996707705751194) + +[19536] +centroid = (0.70651936921038117, -1.3222430804471732) +station = ('krdg', 0.0034014185964462728) +zone = ('paz060', 0.0024854570990617622) + +[19538] +centroid = (0.70768786714459131, -1.3212589590951436) +station = ('kxll', 0.0028457196015307059) +zone = ('paz061', 0.0018531552221024887) + +[19539] +centroid = (0.70679415384781508, -1.320926962564829) +station = ('kxll', 0.0028713568370248889) +zone = ('paz061', 0.0023665509189066836) + +[19540] +centroid = (0.7022554076747114, -1.3258684085562455) +station = ('krdg', 0.0022758337140097412) +zone = ('paz060', 0.0031900646320573009) + +[19541] +centroid = (0.70661455946778495, -1.3269788393862421) +station = ('krdg', 0.002248264498807323) +zone = ('paz060', 0.0018426511059822894) + +[19542] +centroid = (0.70269055316381857, -1.3223870352038776) +station = ('krdg', 0.0032303461708765332) +zone = ('paz060', 0.0034351527506840313) + +[19543] +centroid = (0.70122201567789799, -1.3247228093418215) +station = ('krdg', 0.0034227245706960102) +zone = ('paz067', 0.0040997246744861006) + +[19544] +centroid = (0.70540755957027579, -1.3316262846651599) +station = ('kmui', 0.0036001389265259407) +zone = ('paz059', 0.0023107614339969462) + +[19545] +centroid = (0.7040922270860952, -1.3198891548850082) +station = ('kptw', 0.002130154880947312) +zone = ('paz068', 0.0041105561259694619) + +[19547] +centroid = (0.70476478971335121, -1.3224115919864532) +station = ('krdg', 0.0026439100316014989) +zone = ('paz060', 0.0021861641929538682) + +[19549] +centroid = (0.70833346443490408, -1.326799890778035) +station = ('krdg', 0.0038676748166196549) +zone = ('paz060', 0.0031885786851140615) + +[19550] +centroid = (0.70607188424346234, -1.3308036411755249) +station = ('krdg', 0.004061292288702438) +zone = ('paz059', 0.0031630971515695765) + +[19551] +centroid = (0.70443233939743133, -1.3288483139079306) +station = ('krdg', 0.0022726479680787578) +zone = ('paz060', 0.0029719510055212063) + +[19554] +centroid = (0.70708393086352384, -1.3282609408014645) +station = ('krdg', 0.0031355805006389823) +zone = ('paz060', 0.0028997838940478245) + +[19555] +centroid = (0.7067602944603264, -1.3256459663430789) +station = ('krdg', 0.0022354774226970319) +zone = ('paz060', 0.0014106422977968266) + +[19559] +centroid = (0.70677497267933576, -1.3296337295246206) +station = ('krdg', 0.0036398822458057305) +zone = ('paz060', 0.003672495572262735) + +[19560] +centroid = (0.70522091406006748, -1.324596709303365) +station = ('krdg', 0.0011891114684080422) +zone = ('paz060', 0.00046357274929785921) + +[19562] +centroid = (0.70695222831816817, -1.3212605473447629) +station = ('kxll', 0.0030377856735243694) +zone = ('paz061', 0.0023788403999959445) + +[19564] +centroid = (0.70718526467989462, -1.3243263403489385) +station = ('krdg', 0.0029019397622802225) +zone = ('paz060', 0.0018949457128453503) + +[19565] +centroid = (0.70410737654400257, -1.3279840268623431) +station = ('krdg', 0.0016669657046786798) +zone = ('paz060', 0.0025102135032083511) + +[19567] +centroid = (0.70491036762626003, -1.3301116704869866) +station = ('krdg', 0.0032546058378448185) +zone = ('paz060', 0.0038033020599351265) + +[19601] +centroid = (0.70433275091031255, -1.3254032783105891) +station = ('krdg', 0.00040624739335075387) +zone = ('paz060', 0.0010826510875558285) + +[19602] +centroid = (0.70386929618073801, -1.3249662827724746) +station = ('krdg', 0.00095442491514821409) +zone = ('paz060', 0.0015369615888478733) + +[19604] +centroid = (0.70435947190116055, -1.3248836588856854) +station = ('krdg', 0.00076979472018663079) +zone = ('paz060', 0.0010606728666571214) + +[19605] +centroid = (0.70507654042434253, -1.3254588321406802) +station = ('krdg', 0.00062826031439027765) +zone = ('paz060', 0.00039544455221096641) + +[19606] +centroid = (0.70404162999107989, -1.3239746041447842) +station = ('krdg', 0.0015240411535018916) +zone = ('paz060', 0.0016299656533633206) + +[19607] +centroid = (0.70321903886132242, -1.3254866526889568) +station = ('krdg', 0.0013440957003279406) +zone = ('paz060', 0.0021944914398841662) + +[19608] +centroid = (0.70355614920634513, -1.327057117403194) +station = ('krdg', 0.0013310538061572816) +zone = ('paz060', 0.0023429492273519645) + +[19609] +centroid = (0.70386184362483195, -1.3264028458264989) +station = ('krdg', 0.00078356065297177668) +zone = ('paz060', 0.0018061194142090188) + +[19610] +centroid = (0.70409028977062549, -1.3260110892225963) +station = ('krdg', 0.00045415089511290183) +zone = ('paz060', 0.0014611719345170924) + +[19611] +centroid = (0.70379892450529757, -1.3254550622294958) +station = ('krdg', 0.00079721770142497878) +zone = ('paz060', 0.0016161784142630761) + +[19701] +centroid = (0.6908563481706711, -1.3212301088026079) +station = ('kilg', 0.0019911682512869394) +zone = ('dez001', 0.00070060607070801431) + +[19702] +centroid = (0.69146803371361754, -1.3217330254265702) +station = ('kilg', 0.0019378330455953002) +zone = ('dez001', 0.0012660772384686038) + +[19703] +centroid = (0.69466744912532585, -1.3169181681658009) +station = ('kilg', 0.0030637860105549408) +zone = ('paz070', 0.0021405019228216303) + +[19706] +centroid = (0.69068326386875079, -1.3194009164800553) +station = ('kilg', 0.0016315137507774912) +zone = ('dez001', 0.00072304608230129867) + +[19707] +centroid = (0.69439119841132013, -1.3209287078940812) +station = ('kilg', 0.0023612615807840011) +zone = ('paz067', 0.0033870856133167127) + +[19709] +centroid = (0.6893104925988871, -1.320777981259879) +station = ('kilg', 0.0031683788032465091) +zone = ('dez001', 0.001548663707277327) + +[19710] +centroid = (0.69455669053099423, -1.3192610807003857) +station = ('kilg', 0.0022484422307637196) +zone = ('paz070', 0.00330421268055135) + +[19711] +centroid = (0.69313304291343503, -1.3219311028433791) +station = ('kilg', 0.002064155128096374) +zone = ('dez001', 0.0026249221470482135) + +[19713] +centroid = (0.69238579764748609, -1.3214288843511177) +station = ('kilg', 0.0015103934406634203) +zone = ('dez001', 0.0017837918517891588) + +[19716] +centroid = (0.69271350066784065, -1.3222333589632396) +station = ('kilg', 0.0021648298023958482) +zone = ('dez001', 0.0023991354300846894) + +[19717] +centroid = (0.69251983893403934, -1.3221265797196025) +station = ('kilg', 0.0020559552703279774) +zone = ('dez001', 0.0021964774971145224) + +[19720] +centroid = (0.69196932718137538, -1.3195535978830197) +station = ('kilg', 0.00035072240088940705) +zone = ('dez001', 0.0012940341755163882) + +[19730] +centroid = (0.68877373404072872, -1.3202880498855518) +station = ('kilg', 0.0035960796686963204) +zone = ('dez001', 0.0020452086443334011) + +[19731] +centroid = (0.68981669044184302, -1.3192520398948604) +station = ('kilg', 0.0025028316730330252) +zone = ('dez001', 0.0012981724967781941) + +[19732] +centroid = (0.69435999192429454, -1.3189460487704008) +station = ('kilg', 0.0020852009303658527) +zone = ('paz070', 0.0032595911682967438) + +[19733] +centroid = (0.69037940204597859, -1.320360568315972) +station = ('kilg', 0.0020528716380660856) +zone = ('dez001', 0.00044035423863809594) + +[19734] +centroid = (0.68733935264826984, -1.3203995589714617) +station = ('kdov', 0.005014496377639014) +zone = ('dez001', 0.0034799284634577277) + +[19735] +centroid = (0.69469640413761646, -1.3194639926792224) +station = ('kilg', 0.002382470519721657) +zone = ('paz070', 0.0033402575593647677) + +[19736] +centroid = (0.69472724410549913, -1.3207736004834565) +station = ('kilg', 0.0026135550588298187) +zone = ('paz067', 0.0030991244213913584) + +[19801] +centroid = (0.69338058296124538, -1.3184342484205458) +station = ('kilg', 0.0013309828027200112) +zone = ('dez001', 0.0029455191761145441) + +[19802] +centroid = (0.69388643173835085, -1.3182350016331381) +station = ('kilg', 0.001836774748879594) +zone = ('paz070', 0.0032926450578585277) + +[19803] +centroid = (0.69465264873326893, -1.3184638666579522) +station = ('kilg', 0.0024631193995473442) +zone = ('paz070', 0.0027916409038661076) + +[19804] +centroid = (0.69319001046022011, -1.3197774363595882) +station = ('kilg', 0.00090767088829287639) +zone = ('dez001', 0.0024080761813619327) + +[19805] +centroid = (0.69366014980082991, -1.3193614371323752) +station = ('kilg', 0.001348750168081915) +zone = ('dez001', 0.0029360967546913815) + +[19806] +centroid = (0.69400059372472389, -1.3188430743445332) +station = ('kilg', 0.0017540165087696611) +zone = ('dez001', 0.003379420708393862) + +[19807] +centroid = (0.6946174803488413, -1.3197195088817144) +station = ('kilg', 0.0023115910254304329) +zone = ('paz067', 0.0035368500909540041) + +[19808] +centroid = (0.69355221863988648, -1.320639279944223) +station = ('kilg', 0.0015310628592415799) +zone = ('dez001', 0.0027443130327124369) + +[19809] +centroid = (0.69390426900330637, -1.3177402182434903) +station = ('kilg', 0.0020730613986769111) +zone = ('paz070', 0.003091864577488895) + +[19810] +centroid = (0.6949688151272676, -1.3178352863278464) +station = ('kilg', 0.0029370478973137475) +zone = ('paz070', 0.0022339809951582952) + +[19901] +centroid = (0.68384698372161412, -1.3172613697099131) +station = ('kdov', 0.00084656149529125713) +zone = ('dez002', 0.0020986222166049732) + +[19902] +centroid = (0.6828646251521292, -1.3174063367575839) +station = ('kdov', 0.00024891151463742392) +zone = ('dez002', 0.0013566701852416182) + +[19904] +centroid = (0.68366803511340712, -1.319251254496697) +station = ('kdov', 0.0017648840419829356) +zone = ('dez002', 0.0014980432092749608) + +[19930] +centroid = (0.67284819802822615, -1.3100632653555457) +station = ('koxb', 0.0041660662379165991) +zone = ('dez004', 0.0011290023975607045) + +[19931] +centroid = (0.67324274715893206, -1.3198710907272502) +station = ('kged', 0.0039827990339665401) +zone = ('dez003', 0.0032173281885966879) + +[19933] +centroid = (0.67594223045969914, -1.3198127792769412) +station = ('kged', 0.0035358673356627891) +zone = ('dez003', 0.0029602954308492538) + +[19934] +centroid = (0.68212169084943264, -1.3199711853598519) +station = ('kdov', 0.0023666990080332398) +zone = ('dez002', 0.00081555477768681546) + +[19936] +centroid = (0.68450308789402392, -1.3191919831152992) +station = ('kdov', 0.0021837187694180838) +zone = ('dez002', 0.0023207760675382546) + +[19938] +centroid = (0.68522767878628188, -1.3213024701533957) +station = ('kdov', 0.00391597740997614) +zone = ('dez002', 0.0035519736632013406) + +[19939] +centroid = (0.67309973488002361, -1.3127101793392428) +station = ('kged', 0.0029350171920140109) +zone = ('dez004', 0.0018309491631121207) + +[19940] +centroid = (0.67156014504025441, -1.3188568449923312) +station = ('ksby', 0.0026693211276725393) +zone = ('mdz022', 0.0019592454955937697) + +[19941] +centroid = (0.67707706099263842, -1.3164331237133793) +station = ('kged', 0.0020884162941195417) +zone = ('dez003', 0.002242891067491534) + +[19943] +centroid = (0.68075583108340698, -1.3195908432092576) +station = ('kdov', 0.0029455730282712022) +zone = ('dez002', 0.0015262304399107371) + +[19944] +centroid = (0.67157712709387629, -1.3100117781426117) +station = ('koxb', 0.0029363493231766985) +zone = ('dez004', 0.0023642640781984447) + +[19945] +centroid = (0.67204014549113777, -1.3129915089613715) +station = ('koxb', 0.0036285937025799116) +zone = ('dez004', 0.0026342103788029128) + +[19946] +centroid = (0.68128585267065267, -1.3168439393127138) +station = ('kdov', 0.0017351352183289082) +zone = ('dez002', 0.0018520109027480519) + +[19947] +centroid = (0.67485756068946234, -1.3159468575304811) +station = ('kged', 0.00052062098353176532) +zone = ('dez003', 0.00027196928966970819) + +[19950] +centroid = (0.67750978047408539, -1.3194120691339757) +station = ('kged', 0.0039202793859767606) +zone = ('dez003', 0.0036137134190394487) + +[19951] +centroid = (0.67529855303156372, -1.3134802535118075) +station = ('kged', 0.0015029495847111998) +zone = ('dez004', 0.0026501793694337591) + +[19952] +centroid = (0.67930699836474151, -1.3199650243475924) +station = ('kdov', 0.0042998990490853489) +zone = ('dez002', 0.0029958236289697525) + +[19953] +centroid = (0.68333980849427711, -1.3211118452924928) +station = ('kdov', 0.003097149748583842) +zone = ('dez002', 0.0020490340430096708) + +[19954] +centroid = (0.67888089368115956, -1.3180806272607992) +station = ('kdov', 0.0041886246437064538) +zone = ('dez002', 0.0033750394195470662) + +[19955] +centroid = (0.6846203216598804, -1.3206654424297102) +station = ('kdov', 0.0031730451097574867) +zone = ('dez002', 0.0027787297754045151) + +[19956] +centroid = (0.67278470295003867, -1.3183893061923071) +station = ('kged', 0.0033271934904656286) +zone = ('dez003', 0.002625195781500991) + +[19958] +centroid = (0.67596195268024672, -1.3119148502524014) +station = ('kged', 0.0028352132505670286) +zone = ('dez004', 0.0023065835727666593) + +[19960] +centroid = (0.67807634925586768, -1.3161303789013283) +station = ('kged', 0.0029802665106956139) +zone = ('dez003', 0.0032420745435669225) + +[19962] +centroid = (0.68188027690729691, -1.317516275047167) +station = ('kdov', 0.0011621557268488016) +zone = ('dez002', 0.0011365645946286862) + +[19963] +centroid = (0.67968798628715932, -1.3153249269048255) +station = ('kdov', 0.003605207380375485) +zone = ('dez002', 0.0037536184092715561) + +[19964] +centroid = (0.68223742363213247, -1.3215720362563663) +station = ('kdov', 0.003522275558200276) +zone = ('dez002', 0.0020555702090240303) + +[19966] +centroid = (0.67333793741633585, -1.3138349218691054) +station = ('kged', 0.0021856744640027775) +zone = ('dez003', 0.0024368283584070387) + +[19967] +centroid = (0.67262702990541356, -1.3111350022360253) +station = ('koxb', 0.003875859464703263) +zone = ('dez004', 0.0013359604393270315) + +[19968] +centroid = (0.67673253299829472, -1.3140039395538685) +station = ('kged', 0.0019182567103794227) +zone = ('dez003', 0.0026051354055407049) + +[19970] +centroid = (0.67298677717083455, -1.3106922994712569) +station = ('koxb', 0.0042431933171784642) +zone = ('dez004', 0.00091208435895872859) + +[19971] +centroid = (0.67519816169298896, -1.3105098078446684) +station = ('kged', 0.0038148081220195809) +zone = ('dez004', 0.0013040447621062903) + +[19973] +centroid = (0.67437595453566701, -1.3197464044054876) +station = ('kged', 0.0034840783737289656) +zone = ('dez003', 0.0027351411966357298) + +[19975] +centroid = (0.67140063939991468, -1.3118794200685859) +station = ('koxb', 0.0027304347012261296) +zone = ('dez004', 0.0026883401865207724) + +[19977] +centroid = (0.68589600026345554, -1.3185285660133237) +station = ('kdov', 0.0030837107075431329) +zone = ('dez002', 0.0037170710542875395) + +[19979] +centroid = (0.68153044311202704, -1.318990100880721) +station = ('kdov', 0.0020576061860073948) +zone = ('dez002', 0.00066313216398047447) + +[20001] +centroid = (0.67911377296325315, -1.3442131279916452) +station = ('kdca', 0.0010744558936905595) +zone = ('dcz001', 4.6423605730777331e-05) + +[20002] +centroid = (0.67902079927399939, -1.3436174122113544) +station = ('kdca', 0.0011742363479395608) +zone = ('dcz001', 0.00042749111062690532) + +[20003] +centroid = (0.67861724424435332, -1.3437453099389403) +station = ('kdca', 0.00080126754819776554) +zone = ('dcz001', 0.00057616310382423066) + +[20004] +centroid = (0.67884385779443224, -1.3444032990669423) +station = ('kdca', 0.0007860402815429) +zone = ('dcz001', 0.00031561171929907938) + +[20005] +centroid = (0.67901465571503239, -1.3444546641068285) +station = ('kdca', 0.00095453932157513828) +zone = ('dcz001', 0.00024431443275135095) + +[20006] +centroid = (0.67890887130906896, -1.3446272771698506) +station = ('kdca', 0.00085562639684968263) +zone = ('dcz001', 0.00040983085437501613) + +[20007] +centroid = (0.67918330688065265, -1.3452877970252679) +station = ('kdca', 0.0012849631580772211) +zone = ('dcz001', 0.00088323027279313057) + +[20008] +centroid = (0.67956555144013198, -1.3449503899742723) +station = ('kdca', 0.0015480544589176186) +zone = ('dcz001', 0.00077508698463961813) + +[20009] +centroid = (0.67926720485779601, -1.3445559455633216) +station = ('kdca', 0.001208042722856232) +zone = ('dcz001', 0.00035387661201360699) + +[20010] +centroid = (0.67951542558401457, -1.3444325682384981) +station = ('kdca', 0.0014555899481121799) +zone = ('dcz001', 0.00047110976694630236) + +[20011] +centroid = (0.67984962122918646, -1.3443047926839597) +station = ('kdca', 0.0017947129839862846) +zone = ('dcz001', 0.00076278210247199046) + +[20012] +centroid = (0.6802747659816798, -1.3444726584514164) +station = ('kcgs', 0.0015288407130300105) +zone = ('dcz001', 0.0012044419341230626) + +[20015] +centroid = (0.68010051230916069, -1.3449214524152744) +station = ('kdca', 0.0020681359304266177) +zone = ('dcz001', 0.0011672972040465543) + +[20016] +centroid = (0.67958047400523636, -1.3454945487284593) +station = ('kdca', 0.0017110259591623374) +zone = ('dcz001', 0.0011471591318116857) + +[20017] +centroid = (0.67959958536054577, -1.3437660968103318) +station = ('kcgs', 0.0012209510593645791) +zone = ('dcz001', 0.00058934791445577536) + +[20018] +centroid = (0.67939691772780419, -1.3434575225985792) +station = ('kcgs', 0.0011897505910572013) +zone = ('dcz001', 0.00062308564217005097) + +[20019] +centroid = (0.67878319014963295, -1.3429187220051959) +station = ('kdca', 0.0014177545824519259) +zone = ('dcz001', 0.0010139813671626459) + +[20020] +centroid = (0.67824215553480727, -1.3435358355221161) +station = ('kdca', 0.00076138906804424538) +zone = ('dcz001', 0.00098123390107665836) + +[20024] +centroid = (0.67851437453824082, -1.3443454937621162) +station = ('kdca', 0.00046683012273631417) +zone = ('dcz001', 0.00059900127507137653) + +[20032] +centroid = (0.67777625734427982, -1.3440185586866327) +station = ('kdca', 0.00046141468928357417) +zone = ('dcz001', 0.0013236189007243444) + +[20036] +centroid = (0.67905554877940666, -1.3446290399523952) +station = ('kdca', 0.0010014058229478855) +zone = ('dcz001', 0.00036843625545767772) + +[20037] +centroid = (0.67891419456328761, -1.3448712392926947) +station = ('kdca', 0.00090510669130389936) +zone = ('dcz001', 0.00058361719796832276) + +[20045] +centroid = (0.67887602421254656, -1.344441050538663) +station = ('kdca', 0.00081633704827753517) +zone = ('dcz001', 0.00031068677398724589) + +[20052] +centroid = (0.67893527814065169, -1.3447234971715132) +station = ('kdca', 0.00089430116299744357) +zone = ('dcz001', 0.00046803881473476505) + +[20053] +centroid = (0.67865571130106717, -1.3440995419639252) +station = ('kdca', 0.00066677612724637511) +zone = ('dcz001', 0.00044205846889939756) + +[20057] +centroid = (0.67909230541345367, -1.3452260298230398) +station = ('kdca', 0.0011820766071299444) +zone = ('dcz001', 0.00083081857543654183) + +[20064] +centroid = (0.6795675585687716, -1.3438890028962571) +station = ('kcgs', 0.0013171017199270156) +zone = ('dcz001', 0.0005165727956290265) + +[20105] +centroid = (0.6798603026442086, -1.3544233564756896) +station = ('kiad', 0.0021019963010680308) +zone = ('vaz042', 0.0024423532255409357) + +[20106] +centroid = (0.67532747313726915, -1.3614005545066319) +station = ('kcjr', 0.0035080194510525497) +zone = ('vaz040', 0.0021416914332819492) + +[20109] +centroid = (0.67707676428666552, -1.3531716412427441) +station = ('khef', 0.0013575928922717763) +zone = ('vaz052', 0.0016789876095132381) + +[20110] +centroid = (0.67627251656734655, -1.3523636061589484) +station = ('khef', 0.00069270915937869894) +zone = ('vaz052', 0.00073685435818852843) + +[20111] +centroid = (0.67629707334992206, -1.3513713166660195) +station = ('khef', 0.0013339021035058314) +zone = ('vaz052', 0.0010579989555658757) + +[20112] +centroid = (0.67477785150252367, -1.3514580944364285) +station = ('khef', 0.0014889131452913915) +zone = ('vaz052', 0.0010111746380025214) + +[20115] +centroid = (0.67736135767449579, -1.3598181517403112) +station = ('khwy', 0.004789150444286139) +zone = ('vaz501', 0.00085049557476192734) + +[20117] +centroid = (0.68065784829919995, -1.3567131411878433) +station = ('kjyo', 0.0027050254496979822) +zone = ('vaz042', 0.0020843840914859316) + +[20118] +centroid = (0.68012581958331464, -1.3567666878892946) +station = ('kjyo', 0.0030597938138059682) +zone = ('vaz042', 0.0025391543795767403) + +[20119] +centroid = (0.67387825644616817, -1.3547595767027936) +station = ('khwy', 0.001438058865257867) +zone = ('vaz502', 0.0013007593046382572) + +[20120] +centroid = (0.67817213292521716, -1.3522177664466517) +station = ('kiad', 0.0013896854907668014) +zone = ('vaz052', 0.0026365380098197348) + +[20121] +centroid = (0.67738076573577788, -1.3519885349026948) +station = ('khef', 0.0018007823021695625) +zone = ('vaz052', 0.0018615082252713346) + +[20124] +centroid = (0.67686193170903752, -1.3507335733573407) +station = ('khef', 0.0020455457326424469) +zone = ('vaz052', 0.0018100540441313277) + +[20129] +centroid = (0.68368068875048416, -1.3543973859764198) +station = ('kjyo', 0.0016171267565815671) +zone = ('vaz042', 0.0014939207381887551) + +[20130] +centroid = (0.6813238484884685, -1.3604722662373738) +station = ('kokv', 0.0033586589568215057) +zone = ('vaz031', 0.0014607883411074417) + +[20132] +centroid = (0.68357989598618152, -1.3564592306882635) +station = ('kjyo', 0.0025238585644055162) +zone = ('vaz042', 0.0017384556678536819) + +[20135] +centroid = (0.68233540641633939, -1.3589989116427177) +station = ('kokv', 0.0039781142646865978) +zone = ('vaz031', 0.0018089637473652008) + +[20136] +centroid = (0.67611131795763246, -1.3535822823091535) +station = ('khef', 0.0006395174701520342) +zone = ('vaz052', 0.0011440843179503135) + +[20137] +centroid = (0.67730522788575154, -1.3565128821094696) +station = ('khef', 0.0032117150150378793) +zone = ('vaz501', 0.0023601353374826765) + +[20139] +centroid = (0.67471610175358809, -1.3560722388332185) +station = ('khwy', 0.001402912320018018) +zone = ('vaz502', 0.0011286119203140902) + +[20141] +centroid = (0.68263998382410496, -1.3577039122443231) +station = ('kjyo', 0.0030766633586232174) +zone = ('vaz042', 0.0021332731504398092) + +[20143] +centroid = (0.6782271980631176, -1.3537496768377122) +station = ('kiad', 0.0020154456422555363) +zone = ('vaz052', 0.0029139298056842823) + +[20144] +centroid = (0.67933433022082768, -1.3604307972143466) +station = ('kokv', 0.0048245060179089531) +zone = ('vaz501', 0.0014682317089052743) + +[20147] +centroid = (0.68141052153912263, -1.3522484667881942) +station = ('kjyo', 0.0014004781922674042) +zone = ('vaz042', 0.0022985349642597793) + +[20148] +centroid = (0.68059522588563859, -1.3530200943037933) +station = ('kiad', 0.0014597794411503585) +zone = ('vaz042', 0.0022665984734241448) + +[20151] +centroid = (0.67887241138099486, -1.3516727001212538) +station = ('kiad', 0.00064582385632193059) +zone = ('vaz053', 0.0024717655281763658) + +[20152] +centroid = (0.67926722231108849, -1.3526725119832588) +station = ('kiad', 0.0007536776812682133) +zone = ('vaz042', 0.00349750389594054) + +[20155] +centroid = (0.6773642723743466, -1.354685976168237) +station = ('khef', 0.0021339857077448611) +zone = ('vaz052', 0.0026001216389319923) + +[20158] +centroid = (0.68311590020453872, -1.3553875985275388) +station = ('kjyo', 0.001579830316353943) +zone = ('vaz042', 0.00090621982351615684) + +[20164] +centroid = (0.68091051961501126, -1.35079874395161) +station = ('kiad', 0.0015822350106056669) +zone = ('mdz009', 0.0033621008728837677) + +[20165] +centroid = (0.68168965204639409, -1.3507573272884605) +station = ('kiad', 0.0023095422464208177) +zone = ('mdz009', 0.0028975933527594262) + +[20166] +centroid = (0.68044296336169452, -1.3518606371751087) +station = ('kiad', 0.00093156605930861498) +zone = ('vaz042', 0.0030409316308493963) + +[20169] +centroid = (0.67856945712943362, -1.3551687342393386) +station = ('kiad', 0.0028178558666254907) +zone = ('vaz042', 0.0036943330798557884) + +[20170] +centroid = (0.68033002310579793, -1.3505515006097726) +station = ('kiad', 0.0012425763332355199) +zone = ('vaz053', 0.0028278532309276403) + +[20171] +centroid = (0.67935262127138862, -1.3508233880006484) +station = ('kiad', 0.00074456646993772925) +zone = ('vaz053', 0.0021821265103227632) + +[20175] +centroid = (0.68181578699143575, -1.3544473722061969) +station = ('kjyo', 0.00059835708981183819) +zone = ('vaz042', 0.00061780856908605223) + +[20176] +centroid = (0.68390213612597717, -1.3534000524819527) +station = ('kjyo', 0.0017954442288628141) +zone = ('vaz042', 0.0020565063377114123) + +[20180] +centroid = (0.68536590886303983, -1.3550376425592214) +station = ('kjyo', 0.003373802437829566) +zone = ('vaz042', 0.0031046346047819851) + +[20181] +centroid = (0.6752526334189437, -1.3538450939879185) +station = ('khef', 0.00086663559808829312) +zone = ('vaz052', 0.0012280491958260459) + +[20184] +centroid = (0.68069011943706936, -1.3593279411133037) +station = ('kokv', 0.0044504332108897355) +zone = ('vaz031', 0.0024754986573023744) + +[20186] +centroid = (0.67541035882344647, -1.3587631525673582) +station = ('khwy', 0.0027316291585506068) +zone = ('vaz502', 0.0025806071092700127) + +[20187] +centroid = (0.67584161222832173, -1.3569593722387148) +station = ('khwy', 0.0025227166980336278) +zone = ('vaz502', 0.0022705681885346212) + +[20190] +centroid = (0.67996844324466232, -1.3498253912810654) +station = ('kiad', 0.0015696395835337177) +zone = ('vaz053', 0.002258467143537524) + +[20191] +centroid = (0.67953774834514769, -1.350041881921483) +station = ('kiad', 0.0013347293608376117) +zone = ('vaz053', 0.0019434471258893489) + +[20194] +centroid = (0.68034782546416828, -1.3498511697941173) +station = ('kiad', 0.0017003939198974622) +zone = ('vaz053', 0.0026220202948626561) + +[20197] +centroid = (0.6840897241139815, -1.3548610152389196) +station = ('kjyo', 0.0021247634556707095) +zone = ('vaz042', 0.0018314126620033065) + +[20198] +centroid = (0.67865574620765234, -1.3569020556260791) +station = ('kiad', 0.0040943636543161778) +zone = ('vaz501', 0.0019781246913396764) + +[20202] +centroid = (0.67870742540680384, -1.3442702177114778) +station = ('kdca', 0.00066833102965568501) +zone = ('dcz001', 0.00039761926524025428) + +[20204] +centroid = (0.67868103602851371, -1.3441553575934042) +station = ('kdca', 0.00067168804120508593) +zone = ('dcz001', 0.00041436512819542745) + +[20228] +centroid = (0.67869594114032572, -1.344431311601437) +station = ('kdca', 0.00063691537962242686) +zone = ('dcz001', 0.00045243248322664501) + +[20230] +centroid = (0.67882476389241542, -1.3444759571237028) +station = ('kdca', 0.00076438410615217809) +zone = ('dcz001', 0.00036652031295154099) + +[20240] +centroid = (0.67883631797206356, -1.3446471215634459) +station = ('kdca', 0.00078606531214460331) +zone = ('dcz001', 0.00046022718041230999) + +[20245] +centroid = (0.67881684009761145, -1.3446794974210705) +station = ('kdca', 0.00077138776096249636) +zone = ('dcz001', 0.00049202251665692444) + +[20260] +centroid = (0.67864806675894351, -1.3443398214420472) +station = ('kdca', 0.0005984693742237102) +zone = ('dcz001', 0.0004690965270447999) + +[20307] +centroid = (0.6802380966140954, -1.3444507545693039) +station = ('kcgs', 0.001513613793717998) +zone = ('dcz001', 0.0011651152897024569) + +[20317] +centroid = (0.67954136117669928, -1.3441527046929411) +station = ('kdca', 0.0015034014599531955) +zone = ('dcz001', 0.00044598809689866181) + +[20319] +centroid = (0.67831938635420796, -1.3442002823683503) +station = ('kdca', 0.0003410669189827071) +zone = ('dcz001', 0.00077669466884814514) + +[20373] +centroid = (0.67821094904778156, -1.3440407941813031) +station = ('kdca', 0.00037747179140568729) +zone = ('dcz001', 0.00088916620738979624) + +[20390] +centroid = (0.67856689149543326, -1.3437934810262955) +station = ('kdca', 0.00073938307549532888) +zone = ('dcz001', 0.00059996400008161975) + +[20405] +centroid = (0.67886984574699449, -1.344646824857473) +station = ('kdca', 0.00081914153094724278) +zone = ('dcz001', 0.00044201936913061966) + +[20418] +centroid = (0.67880741531965061, -1.3447371630995564) +station = ('kdca', 0.00077230912432169551) +zone = ('dcz001', 0.00053464326878324198) + +[20427] +centroid = (0.67896943423411316, -1.344733829520685) +station = ('kdca', 0.00092938262308819527) +zone = ('dcz001', 0.00046521030750836336) + +[20506] +centroid = (0.67888124274701001, -1.3445790013627406) +station = ('kdca', 0.00082406357297036721) +zone = ('dcz001', 0.00039118536675713069) + +[20510] +centroid = (0.67880706625380027, -1.3440237772210961) +station = ('kdca', 0.0008286140525371479) +zone = ('dcz001', 0.00030675739383731894) + +[20520] +centroid = (0.67884160631969714, -1.3447483855666467) +station = ('kdca', 0.00080759742469990639) +zone = ('dcz001', 0.00052465092946599298) + +[20535] +centroid = (0.67883650995828138, -1.3443371336349992) +station = ('kdca', 0.00078462160558965459) +zone = ('dcz001', 0.00029390663029915583) + +[20540] +centroid = (0.67872240033178599, -1.3439857814032801) +station = ('kdca', 0.00076777724131396922) +zone = ('dcz001', 0.0003964345972200741) + +[20551] +centroid = (0.67880745022623568, -1.3447028848330471) +station = ('kdca', 0.00076600226454049173) +zone = ('dcz001', 0.00051234928390643422) + +[20553] +centroid = (0.67870524374523888, -1.344304391258232) +station = ('kdca', 0.00066003385093275078) +zone = ('dcz001', 0.00040637101524001968) + +[20560] +centroid = (0.67872768867941957, -1.3443573620010298) +station = ('kdca', 0.00067466822782856007) +zone = ('dcz001', 0.00039899642034514594) + +[20565] +centroid = (0.67876954167488235, -1.3442388192382344) +station = ('kdca', 0.0007346346374495548) +zone = ('dcz001', 0.00033181738504445523) + +[20566] +centroid = (0.67885591801956346, -1.3448645721349519) +station = ('kdca', 0.00084853726181757208) +zone = ('dcz001', 0.00059950728400074262) + +[20593] +centroid = (0.67835291412913878, -1.3440808494876364) +station = ('kdca', 0.00042982185019925891) +zone = ('dcz001', 0.00074492658104217231) + +[20601] +centroid = (0.67393047669738781, -1.3413136648651844) +station = ('kadw', 0.0035482291947541429) +zone = ('mdz013', 0.0038051254406781462) + +[20602] +centroid = (0.67340726189422495, -1.3420630917926983) +station = ('kadw', 0.0041163512268322967) +zone = ('mdz016', 0.0035376904519415385) + +[20603] +centroid = (0.67422749682949223, -1.3434948202846944) +station = ('kdaa', 0.0031943865650053086) +zone = ('mdz013', 0.0039463980675222519) + +[20606] +centroid = (0.66781613454204625, -1.3393187011702772) +station = ('k2w6', 0.0027516777110617135) +zone = ('mdz017', 0.0019129725427141655) + +[20607] +centroid = (0.6749653522240654, -1.344227265158586) +station = ('kdaa', 0.0023724394915033841) +zone = ('vaz054', 0.0034095506052266274) + +[20608] +centroid = (0.67339000058792287, -1.3386849546655857) +station = ('kadw', 0.0045646619325158885) +zone = ('mdz018', 0.0018734904593747262) + +[20609] +centroid = (0.66793762691127756, -1.3398495256089789) +station = ('k2w6', 0.0031073607438623155) +zone = ('mdz017', 0.0022685469898729594) + +[20611] +centroid = (0.67116660820051466, -1.34352381020357) +station = ('knyg', 0.0044658255725997763) +zone = ('mdz016', 0.0010951681073753518) + +[20612] +centroid = (0.67204007567796775, -1.3382697757431212) +station = ('k2w6', 0.0036686204066971088) +zone = ('mdz018', 0.0016763338594802985) + +[20613] +centroid = (0.67494014966966664, -1.3405054901550484) +station = ('kadw', 0.0026103762170089301) +zone = ('mdz013', 0.0028420905482225431) + +[20615] +centroid = (0.67048971715671379, -1.336020692109124) +station = ('k2w6', 0.001679700104253566) +zone = ('mdz017', 0.0021129835728577683) + +[20616] +centroid = (0.67480822023150833, -1.345604870990478) +station = ('kdaa', 0.0014912062997590651) +zone = ('vaz054', 0.0033866396605000989) + +[20617] +centroid = (0.67279753112004081, -1.3414391540384027) +station = ('kadw', 0.0046826427004905899) +zone = ('mdz016', 0.0031956145159454758) + +[20618] +centroid = (0.66820307403721335, -1.3401854840366954) +station = ('k2w6', 0.0033019613180483823) +zone = ('mdz017', 0.0024734157102245628) + +[20619] +centroid = (0.66832783017214592, -1.3356636151974584) +station = ('k2w6', 0.00056952928368285915) +zone = ('mdz017', 0.0011192442331217196) + +[20620] +centroid = (0.66730777249081785, -1.3356817666216789) +station = ('k2w6', 0.0015298861839925495) +zone = ('mdz017', 0.0016427894989004786) + +[20621] +centroid = (0.66891255037814901, -1.340421452551565) +station = ('k2w6', 0.003431413588641046) +zone = ('mdz016', 0.0027277260063804745) + +[20622] +centroid = (0.67053090692706085, -1.3417115999346392) +station = ('k2w6', 0.0047610307422628175) +zone = ('mdz016', 0.0015270112787934581) + +[20623] +centroid = (0.67616388727470245, -1.3411499704346397) +station = ('kadw', 0.0013189909970286258) +zone = ('mdz013', 0.0015702606895004914) + +[20624] +centroid = (0.66912478241519158, -1.3392512092881026) +station = ('k2w6', 0.0025312151946062897) +zone = ('mdz017', 0.0018127384421584901) + +[20625] +centroid = (0.66780177048230227, -1.3412378826690627) +station = ('k2w6', 0.0041951812747913443) +zone = ('vaz075', 0.0027578788209628186) + +[20626] +centroid = (0.66723324693175767, -1.3398802259505214) +station = ('k2w6', 0.0033956390710728241) +zone = ('vaz075', 0.0017334382600094661) + +[20628] +centroid = (0.66590313150881275, -1.3323566875038271) +station = ('knui', 0.0010756706302285941) +zone = ('mdz017', 0.0045422064160464326) + +[20629] +centroid = (0.66909957986079283, -1.3343112642798431) +station = ('knhk', 0.00094023208408981936) +zone = ('mdz017', 0.0022303177200299635) + +[20630] +centroid = (0.66609229029314387, -1.3347540543110741) +station = ('knui', 0.00084859015981557416) +zone = ('mdz017', 0.0030477901830117844) + +[20632] +centroid = (0.67077888330718427, -1.3431703635767485) +station = ('knyg', 0.0048186014025471888) +zone = ('mdz016', 0.00077315007528436068) + +[20634] +centroid = (0.66792724220222821, -1.3352970436946618) +station = ('k2w6', 0.0010622393670793244) +zone = ('mdz017', 0.001516505343837323) + +[20636] +centroid = (0.66937113563911066, -1.3363495121401996) +station = ('k2w6', 0.00060831366660812187) +zone = ('mdz017', 0.0010011308483422849) + +[20637] +centroid = (0.67238997928640765, -1.3396440130895566) +station = ('k2w6', 0.0045547053426592101) +zone = ('mdz018', 0.0025847385855290689) + +[20639] +centroid = (0.67382411633277139, -1.3370929700416716) +station = ('kadw', 0.0049048849106433819) +zone = ('mdz018', 0.0011203267591357586) + +[20640] +centroid = (0.6723956865130617, -1.3476332926471457) +station = ('knyg', 0.0012594042053415853) +zone = ('mdz016', 0.0039398230971173674) + +[20645] +centroid = (0.66836511040496849, -1.3424156657548936) +station = ('k2w6', 0.0050152670012640734) +zone = ('mdz016', 0.0019322304719919278) + +[20646] +centroid = (0.67235769069524565, -1.3439556395670984) +station = ('knyg', 0.0040765446475494894) +zone = ('mdz016', 0.0023054939194989232) + +[20650] +centroid = (0.66791401260649808, -1.3375009058477401) +station = ('k2w6', 0.0014493483950468805) +zone = ('mdz017', 0.00071514552140255431) + +[20653] +centroid = (0.66734950331323306, -1.3340055175014787) +station = ('knhk', 0.0011994693792125534) +zone = ('mdz017', 0.0026804420233566334) + +[20657] +centroid = (0.66985312576534128, -1.3341799980668003) +station = ('knhk', 0.0015107430934288421) +zone = ('mdz017', 0.0026145190890511645) + +[20658] +centroid = (0.67300911738526004, -1.3467033637683905) +station = ('knyg', 0.0021794199734014056) +zone = ('mdz016', 0.0038266114798351171) + +[20659] +centroid = (0.67053233809704738, -1.3392338781686304) +station = ('k2w6', 0.0030329650084483127) +zone = ('mdz017', 0.0026191287626520618) + +[20660] +centroid = (0.66968688315408886, -1.3387829723563778) +station = ('k2w6', 0.0023161366350103645) +zone = ('mdz017', 0.0017694619854779483) + +[20662] +centroid = (0.67070334545715793, -1.3474873831216789) +station = ('knyg', 0.0017977688450117662) +zone = ('vaz057', 0.0027940318418132552) + +[20664] +centroid = (0.6694120461567773, -1.3426014211471833) +station = ('knyg', 0.0057170114100496853) +zone = ('mdz016', 0.0010061821585453938) + +[20667] +centroid = (0.66704866091006676, -1.3341373247665893) +station = ('knui', 0.0012488806106240112) +zone = ('mdz017', 0.0027399789441880087) + +[20670] +centroid = (0.66820417359464213, -1.3337057048425709) +station = ('knhk', 0.0003351305720938623) +zone = ('mdz017', 0.0026568503842912873) + +[20674] +centroid = (0.665577767229656, -1.3352388020575228) +station = ('knui', 0.0012217500828870923) +zone = ('mdz017', 0.0032921617229480916) + +[20675] +centroid = (0.67336429188804092, -1.3442955773455092) +station = ('kdaa', 0.0032280931682992357) +zone = ('mdz016', 0.0033408566644020556) + +[20676] +centroid = (0.67183349850770169, -1.3358972275178378) +station = ('k2w6', 0.0030256842587448171) +zone = ('mdz018', 0.0010849126945464615) + +[20677] +centroid = (0.67194005085853603, -1.3445142321941992) +station = ('knyg', 0.003619816094688668) +zone = ('mdz016', 0.0020090175554944444) + +[20678] +centroid = (0.67235004615312199, -1.3369457689725583) +station = ('k2w6', 0.0036088437488776231) +zone = ('mdz018', 0.00065951476574612931) + +[20680] +centroid = (0.66518014631946665, -1.3330463718110452) +station = ('knui', 0.0008498967401181104) +zone = ('vaz077', 0.0039875109581523722) + +[20684] +centroid = (0.665708544750508, -1.3336053658638738) +station = ('knui', 0.0001630472367317456) +zone = ('mdz017', 0.0039250361527117771) + +[20685] +centroid = (0.67081488944965284, -1.3356429854056997) +station = ('k2w6', 0.002029897065471715) +zone = ('mdz018', 0.0021150131462961612) + +[20686] +centroid = (0.66633551937770186, -1.333946490466176) +station = ('knui', 0.00052297230113340209) +zone = ('mdz017', 0.0032953744007608254) + +[20687] +centroid = (0.66434729265370751, -1.3323975631149088) +station = ('knui', 0.0018232520116891315) +zone = ('vaz077', 0.0033053192311616303) + +[20688] +centroid = (0.6689346986063569, -1.3345517531974753) +station = ('knhk', 0.00099841766568402584) +zone = ('mdz017', 0.0020096530451911543) + +[20689] +centroid = (0.67479581094052665, -1.3365627564682081) +station = ('kadw', 0.0045571366396378026) +zone = ('mdz018', 0.0019532781205642987) + +[20690] +centroid = (0.66597308430523272, -1.3357610220230121) +station = ('knui', 0.0016083143961753905) +zone = ('mdz017', 0.0027646151368572827) + +[20692] +centroid = (0.66638442350334282, -1.3352132504372736) +station = ('knui', 0.0012910802474731761) +zone = ('mdz017', 0.00260084534385024) + +[20693] +centroid = (0.6712024572633507, -1.3454670074328627) +station = ('knyg', 0.0029710284411337273) +zone = ('mdz016', 0.0018671194243960211) + +[20695] +centroid = (0.67354859865705152, -1.3433936086413709) +station = ('kdaa', 0.0036284444231861061) +zone = ('mdz016', 0.0034793016513510241) + +[20701] +centroid = (0.68286989604647019, -1.3401586757793846) +station = ('kfme', 0.00077965297887567489) +zone = ('mdz010', 0.0029490905836122975) + +[20705] +centroid = (0.68154100235400161, -1.3421645128755317) +station = ('kcgs', 0.0012405807423553085) +zone = ('dcz001', 0.0028953985304084671) + +[20706] +centroid = (0.68008290193700804, -1.3413045716997816) +station = ('kcgs', 0.0009669536631105194) +zone = ('mdz013', 0.002351066983636442) + +[20707] +centroid = (0.68241288158183544, -1.3418574047403509) +station = ('kfme', 0.0015974440049526838) +zone = ('mdz010', 0.0027272140605520377) + +[20708] +centroid = (0.68167961640319508, -1.3408628812259793) +station = ('kfme', 0.00092038550001664475) +zone = ('dcz001', 0.0036387191540775935) + +[20710] +centroid = (0.67967254012327916, -1.3426104095928313) +station = ('kcgs', 0.00066168136525425318) +zone = ('dcz001', 0.0013353895603874823) + +[20711] +centroid = (0.67720621535728587, -1.337709490146646) +station = ('kadw', 0.0027998811028802301) +zone = ('mdz013', 0.0027503988283251774) + +[20712] +centroid = (0.67967241795023148, -1.3432852935079924) +station = ('kcgs', 0.00089305461066995157) +zone = ('dcz001', 0.00089121502263254655) + +[20714] +centroid = (0.67585587156831051, -1.336097504049504) +station = ('kadw', 0.0043582910764463816) +zone = ('mdz018', 0.0030175142456575856) + +[20715] +centroid = (0.68049328120402952, -1.3393888983127926) +station = ('kfme', 0.0016751582763067764) +zone = ('mdz013', 0.0030890912611566731) + +[20716] +centroid = (0.67939433464051124, -1.3389298243596406) +station = ('kadw', 0.0026520964899835299) +zone = ('mdz013', 0.0024100303042582528) + +[20720] +centroid = (0.68037786258059507, -1.3401654476568825) +station = ('kfme', 0.00177410116302477) +zone = ('mdz013', 0.0027578150209389162) + +[20721] +centroid = (0.67919875304453281, -1.3401533176185809) +station = ('kadw', 0.0019328584186972986) +zone = ('mdz013', 0.0016663218678840356) + +[20722] +centroid = (0.67953622990869844, -1.3430413313851484) +station = ('kcgs', 0.00089526683496137709) +zone = ('dcz001', 0.00097445455765033143) + +[20723] +centroid = (0.68307944027646461, -1.3415986771320352) +station = ('kfme', 0.0016664693328620724) +zone = ('mdz010', 0.002158354405715452) + +[20724] +centroid = (0.68244249981924177, -1.3404827659681875) +station = ('kfme', 0.00059304663653061745) +zone = ('mdz010', 0.0031341123790542126) + +[20732] +centroid = (0.67465950072594583, -1.335919829531651) +station = ('kadw', 0.005046335244182687) +zone = ('mdz018', 0.0018495081243379194) + +[20733] +centroid = (0.67728641323641514, -1.3357393799402875) +station = ('knak', 0.0031714381294207705) +zone = ('mdz014', 0.0022233672333500294) + +[20735] +centroid = (0.6763191692182523, -1.342248341039505) +station = ('kadw', 0.001381181323198182) +zone = ('mdz013', 0.0016441674540362832) + +[20736] +centroid = (0.67525174330102522, -1.3374067976944726) +station = ('kadw', 0.0037561564291429396) +zone = ('mdz018', 0.0025320593280654213) + +[20737] +centroid = (0.68005471486958835, -1.3423944774577745) +station = ('kcgs', 0.00028828578115443079) +zone = ('dcz001', 0.0016741237227949827) + +[20740] +centroid = (0.68072842941415068, -1.3427106263984807) +station = ('kcgs', 0.00042924894321777328) +zone = ('dcz001', 0.0019834798202445678) + +[20742] +centroid = (0.68049740018106419, -1.3429556357188757) +station = ('kcgs', 0.0003869301442634559) +zone = ('dcz001', 0.00168537547862) + +[20743] +centroid = (0.67865784060275469, -1.3420415544297286) +station = ('kadw', 0.0013180219465581168) +zone = ('mdz013', 0.0011445460731087575) + +[20744] +centroid = (0.67646078523375919, -1.3436205363507152) +station = ('kdca', 0.0017357879478389611) +zone = ('vaz054', 0.0023362241464907137) + +[20745] +centroid = (0.67730658924256815, -1.3438312499513085) +station = ('kdca', 0.0009098715119910274) +zone = ('vaz054', 0.0016587743625997705) + +[20746] +centroid = (0.67782310198140328, -1.3424769791715163) +station = ('kadw', 0.00099005174286852151) +zone = ('mdz013', 0.0010190113671373186) + +[20747] +centroid = (0.67814761104922672, -1.341866846971604) +station = ('kadw', 0.00080781544951005714) +zone = ('mdz013', 0.00067999430723339872) + +[20748] +centroid = (0.677447838738932, -1.3427417630723362) +station = ('kadw', 0.001135064071362258) +zone = ('mdz013', 0.0012546332460995166) + +[20751] +centroid = (0.67709065710751148, -1.3362450018245902) +station = ('knak', 0.0034624065416680801) +zone = ('mdz014', 0.0024601052687129874) + +[20754] +centroid = (0.67597841113509305, -1.337736211137494) +station = ('kadw', 0.003147655878602865) +zone = ('mdz018', 0.0033027212911873232) + +[20755] +centroid = (0.6825595765054655, -1.339491261873422) +station = ('kfme', 0.00050165126292602913) +zone = ('mdz010', 0.0035306644881989203) + +[20758] +centroid = (0.67602483689319603, -1.3368025647074324) +station = ('kadw', 0.0037852788385613913) +zone = ('mdz018', 0.0031938894730964831) + +[20759] +centroid = (0.68336600588634955, -1.3427027724168468) +station = ('kfme', 0.0025464720930414354) +zone = ('mdz010', 0.0016931836108471966) + +[20762] +centroid = (0.67735884440037286, -1.3416199003357394) +station = ('kadw', 0.00028675958004927709) +zone = ('mdz013', 0.00051142364266060876) + +[20763] +centroid = (0.68303818069294742, -1.3407701693361134) +station = ('kfme', 0.0011621491215045849) +zone = ('mdz010', 0.0025179301519582566) + +[20764] +centroid = (0.67778737509161502, -1.3352839886318568) +station = ('knak', 0.0026185241527688207) +zone = ('mdz014', 0.0017470974780063478) + +[20765] +centroid = (0.67791886819746028, -1.335960809862488) +station = ('knak', 0.0026064683106855899) +zone = ('mdz014', 0.0016066894985073289) + +[20769] +centroid = (0.68062076005259509, -1.3407385439700672) +station = ('kcgs', 0.0014053244209481081) +zone = ('mdz013', 0.0029065230875684744) + +[20770] +centroid = (0.68073050635596055, -1.3417945554339865) +station = ('kcgs', 0.00068394798031744968) +zone = ('dcz001', 0.0024601556840252673) + +[20772] +centroid = (0.67684357084530655, -1.3398365229060514) +station = ('kadw', 0.0012956107489026185) +zone = ('mdz013', 0.0013707529293720334) + +[20774] +centroid = (0.67848877055811407, -1.3399617502798822) +station = ('kadw', 0.0014433821082117766) +zone = ('mdz013', 0.0012085532048100713) + +[20776] +centroid = (0.67845150777858387, -1.3364410022995892) +station = ('knak', 0.002282876067002052) +zone = ('mdz014', 0.001217589258086076) + +[20777] +centroid = (0.68373308353462903, -1.3433622625280053) +station = ('kgai', 0.0027212280513859411) +zone = ('mdz010', 0.0014196958007858999) + +[20778] +centroid = (0.67768834510985687, -1.3364441438922428) +station = ('knak', 0.0029590113631872269) +zone = ('mdz014', 0.001918921067439942) + +[20779] +centroid = (0.67657306226453995, -1.3364437424665148) +station = ('kadw', 0.0038810081960031608) +zone = ('mdz014', 0.0029978724225109554) + +[20781] +centroid = (0.67985566006839837, -1.3429662124141428) +station = ('kcgs', 0.00059305223978817266) +zone = ('dcz001', 0.0011991667645641984) + +[20782] +centroid = (0.68008175001970173, -1.3433146324927183) +station = ('kcgs', 0.0006747530365456266) +zone = ('dcz001', 0.0011847273843057825) + +[20783] +centroid = (0.68067416712770623, -1.3433921076582143) +station = ('kcgs', 0.00076935630976356203) +zone = ('dcz001', 0.0016874743522911951) + +[20784] +centroid = (0.67981529060279977, -1.3420136815215744) +station = ('kcgs', 0.00064150573398727157) +zone = ('dcz001', 0.0018170545441897621) + +[20785] +centroid = (0.67925231719927659, -1.3418431279470693) +station = ('kcgs', 0.0011944681953117672) +zone = ('mdz013', 0.0016052033482689136) + +[20794] +centroid = (0.68331626400266776, -1.3403191588041055) +station = ('kfme', 0.0012425227679235017) +zone = ('mdz010', 0.0025425581494537826) + +[20812] +centroid = (0.68010316520962377, -1.3464147212166957) +station = ('kdca', 0.0025351459647980257) +zone = ('vaz054', 0.0020037456974079646) + +[20814] +centroid = (0.68076548275417059, -1.3456748586934828) +station = ('kdca', 0.0028589808148707179) +zone = ('dcz001', 0.0020444722649613188) + +[20815] +centroid = (0.68038843927586223, -1.3452873606929552) +station = ('kdca', 0.0024102155700188171) +zone = ('dcz001', 0.0015630047039699422) + +[20816] +centroid = (0.67992704403480497, -1.3459980238577822) +station = ('kdca', 0.0022068361863753598) +zone = ('dcz001', 0.0016551582270108319) + +[20817] +centroid = (0.68063004520421566, -1.3465541730239301) +station = ('kgai', 0.0030254085805811915) +zone = ('dcz001', 0.0024138017014843399) + +[20818] +centroid = (0.68022354056813372, -1.3467334532446948) +station = ('kdca', 0.002781943960242516) +zone = ('vaz054', 0.0022030345233960661) + +[20832] +centroid = (0.68330739773006755, -1.3451376114431339) +station = ('kgai', 0.0013855912307022195) +zone = ('mdz009', 0.0018228614449739863) + +[20833] +centroid = (0.68429429415560772, -1.3448576955376992) +station = ('kgai', 0.0016896687369817363) +zone = ('mdz010', 0.0018324933539072411) + +[20837] +centroid = (0.68271182157611709, -1.3510090212198906) +station = ('kjyo', 0.0022372727205077531) +zone = ('vaz042', 0.0031285161083507819) + +[20838] +centroid = (0.68448498882968067, -1.3507248118044959) +station = ('kgai', 0.0031027972529666446) +zone = ('mdz009', 0.0029019135879404319) + +[20839] +centroid = (0.68396498543234152, -1.3514952001363261) +station = ('kjyo', 0.002556420838041965) +zone = ('vaz042', 0.003207123059150177) + +[20841] +centroid = (0.68402687480761726, -1.3496198438550582) +station = ('kgai', 0.0021649634575807244) +zone = ('mdz009', 0.0019312005035187203) + +[20842] +centroid = (0.68416695493338231, -1.3511512655539282) +station = ('kjyo', 0.0028875357124792883) +zone = ('vaz042', 0.0035403348100377535) + +[20850] +centroid = (0.6822734646811861, -1.3470834615728899) +station = ('kgai', 0.0013819049874256185) +zone = ('mdz009', 0.00083807030403271307) + +[20851] +centroid = (0.68205864955685069, -1.3460303473555291) +station = ('kgai', 0.0017154829986529409) +zone = ('mdz009', 0.0014959480102214543) + +[20852] +centroid = (0.68158472285176408, -1.3460335238547676) +station = ('kgai', 0.0021606747982568638) +zone = ('mdz009', 0.0018449998503566123) + +[20853] +centroid = (0.68245363501986944, -1.3455539422829046) +station = ('kgai', 0.0015695309099108973) +zone = ('mdz009', 0.0016013792803203262) + +[20854] +centroid = (0.68125427966448404, -1.3477836004023274) +station = ('kgai', 0.0024939513254136712) +zone = ('mdz009', 0.0018198153694165928) + +[20855] +centroid = (0.68308055728718586, -1.3462077251674092) +station = ('kgai', 0.00076376481356655852) +zone = ('mdz009', 0.00097604389422450554) + +[20860] +centroid = (0.68316316372068286, -1.3443470471051506) +station = ('kgai', 0.0020153810745277539) +zone = ('mdz010', 0.0022821988611352009) + +[20861] +centroid = (0.68329198647277245, -1.3438963856389929) +station = ('kgai', 0.0023330871004725545) +zone = ('mdz010', 0.0019927707074365313) + +[20862] +centroid = (0.68384146848117788, -1.3442317506547639) +station = ('kgai', 0.0020550267999634077) +zone = ('mdz010', 0.0016960489133737329) + +[20866] +centroid = (0.6825865942022864, -1.3427490236420245) +station = ('kcgs', 0.0022650478542783578) +zone = ('mdz010', 0.0024727952437654916) + +[20868] +centroid = (0.6828844171858468, -1.3433680744744143) +station = ('kcgs', 0.0026410726524160673) +zone = ('mdz010', 0.0022341379653143833) + +[20871] +centroid = (0.68523966919824308, -1.3488348994772661) +station = ('kgai', 0.0022040061669845513) +zone = ('mdz009', 0.0024266383431844193) + +[20872] +centroid = (0.68581779205967364, -1.3476756168815065) +station = ('kgai', 0.0022600509789401976) +zone = ('mdz009', 0.0027652850014437949) + +[20874] +centroid = (0.68294787735744933, -1.3491141696108777) +station = ('kgai', 0.0018745271806516598) +zone = ('mdz009', 0.0012833277903661535) + +[20876] +centroid = (0.68431539518626439, -1.3480426072633231) +station = ('kgai', 0.0011287071798410659) +zone = ('mdz009', 0.001335224663872448) + +[20877] +centroid = (0.68311668560270211, -1.3471365370354429) +station = ('kgai', 0.00056757574139425476) +zone = ('mdz009', 0.0002621564790187841) + +[20878] +centroid = (0.68268918465571871, -1.3482949469665766) +station = ('kgai', 0.001461111794439924) +zone = ('mdz009', 0.00074114482309251678) + +[20879] +centroid = (0.68361127700613233, -1.3469645871975366) +station = ('kgai', 8.0501269547828076e-05) +zone = ('mdz009', 0.00067670756593534278) + +[20880] +centroid = (0.68311708702843021, -1.3469326651255176) +station = ('kgai', 0.00053056947295874915) +zone = ('mdz009', 0.00041776984374847096) + +[20882] +centroid = (0.68485187449174245, -1.3465402103899142) +station = ('kgai', 0.0012332699779688352) +zone = ('mdz009', 0.0019326488435488609) + +[20886] +centroid = (0.68394941709541368, -1.3475187292350448) +station = ('kgai', 0.00058721367518747814) +zone = ('mdz009', 0.00089307059788176638) + +[20895] +centroid = (0.6811501707746026, -1.3452568348843377) +station = ('kcgs', 0.0022889529386174471) +zone = ('dcz001', 0.002225206772413231) + +[20896] +centroid = (0.68129594067372912, -1.3455171507422727) +station = ('kgai', 0.0025735926926942934) +zone = ('mdz009', 0.0023216402194172841) + +[20899] +centroid = (0.68318707473143503, -1.3476774145706361) +station = ('kgai', 0.00077559058404118926) +zone = ('mdz009', 0.00020927742867528443) + +[20901] +centroid = (0.68103211670399766, -1.3440435168949363) +station = ('kcgs', 0.0013853779787413028) +zone = ('dcz001', 0.0019387788172173634) + +[20902] +centroid = (0.68146815231102342, -1.3445888101131369) +station = ('kcgs', 0.0019780803518738266) +zone = ('dcz001', 0.0023962398286661102) + +[20903] +centroid = (0.68106550485258832, -1.3436360872343507) +station = ('kcgs', 0.0011452081512961915) +zone = ('dcz001', 0.0020115224639107527) + +[20904] +centroid = (0.68184088482607941, -1.3435707770137411) +station = ('kcgs', 0.0017226214309047213) +zone = ('dcz001', 0.0027832161735906308) + +[20905] +centroid = (0.68259207453613768, -1.3437024271992191) +station = ('kcgs', 0.0024457241742166674) +zone = ('mdz010', 0.002584736004865109) + +[20906] +centroid = (0.68220244723392254, -1.3449011367827812) +station = ('kgai', 0.0021015138215831649) +zone = ('mdz009', 0.0021657639750802512) + +[20910] +centroid = (0.68072872612012347, -1.3445424367149115) +station = ('kcgs', 0.0016314600643878075) +zone = ('dcz001', 0.0016604165187028132) + +[20912] +centroid = (0.68035719788225157, -1.3439232462561814) +station = ('kcgs', 0.0011010784586860584) +zone = ('dcz001', 0.0012749821690395257) + +[21001] +centroid = (0.68945825217336099, -1.3299774023076307) +station = ('kapg', 0.00079429400990506805) +zone = ('mdz007', 0.0024463901563728948) + +[21005] +centroid = (0.6891975697962831, -1.3289725813506728) +station = ('kapg', 0.00047865419219229313) +zone = ('mdz007', 0.002650952890439933) + +[21009] +centroid = (0.68882714111583976, -1.3316024434675777) +station = ('kapg', 0.0017318397432687005) +zone = ('mdz007', 0.0035159357719404703) + +[21010] +centroid = (0.687501458829195, -1.3315575710525089) +station = ('kapg', 0.0021519333010486309) +zone = ('mdz011', 0.0044025053118786142) + +[21012] +centroid = (0.68149583323296015, -1.3351093858934875) +station = ('knak', 0.0011218227038668764) +zone = ('mdz014', 0.0020332825113408542) + +[21013] +centroid = (0.68960580230832458, -1.3350160980449683) +station = ('kmtn', 0.0032662614949954681) +zone = ('mdz006', 0.0024498209945050327) + +[21014] +centroid = (0.69003483914504982, -1.3325965306496361) +station = ('kapg', 0.0027763258550751678) +zone = ('mdz007', 0.0031469315589536494) + +[21015] +centroid = (0.69017605373482871, -1.3315547785257058) +station = ('kapg', 0.0021679401131023601) +zone = ('mdz007', 0.0024327718277038744) + +[21017] +centroid = (0.68896484759382215, -1.3305414578152903) +station = ('kapg', 0.00092362410603806923) +zone = ('mdz007', 0.0030421089196937994) + +[21028] +centroid = (0.69055657041834839, -1.3308042869473482) +station = ('kapg', 0.0020608820610576303) +zone = ('mdz007', 0.0017544340841574911) + +[21029] +centroid = (0.68440671081272875, -1.343195758117365) +station = ('kgai', 0.0029480945617078192) +zone = ('mdz010', 0.00075397563264497454) + +[21030] +centroid = (0.68924411772743388, -1.3381560675423538) +station = ('kdmh', 0.0036932324602068391) +zone = ('mdz006', 0.00093673135217642084) + +[21031] +centroid = (0.68918179201984509, -1.3379346725267385) +station = ('kdmh', 0.0036017245828089202) +zone = ('mdz006', 0.0010066791611245615) + +[21032] +centroid = (0.68117308694768131, -1.3369945509251517) +station = ('knak', 0.0018171069835197697) +zone = ('mdz014', 0.0019586584545114982) + +[21034] +centroid = (0.69186106440787398, -1.3303428044398284) +station = ('kapg', 0.0031310374690804573) +zone = ('mdz007', 0.00084065817766780212) + +[21035] +centroid = (0.67960154012930796, -1.3373862551691766) +station = ('knak', 0.0020970146310502749) +zone = ('mdz014', 0.0013416315456212214) + +[21036] +centroid = (0.68474715473662273, -1.3438902246267337) +station = ('kgai', 0.0025588640233939249) +zone = ('mdz010', 0.00096733723689935536) + +[21037] +centroid = (0.67926704777816327, -1.3359362181733274) +station = ('knak', 0.0013865523106871796) +zone = ('mdz014', 0.00032076717227090236) + +[21040] +centroid = (0.68829677046274385, -1.3315110929345284) +station = ('kapg', 0.0017430942868719716) +zone = ('mdz007', 0.0039483765769395569) + +[21042] +centroid = (0.68551612935175887, -1.3420639819106168) +station = ('kbwi', 0.0034468098706987179) +zone = ('mdz010', 0.00067631537104927337) + +[21043] +centroid = (0.68522638724263529, -1.3404147155806523) +station = ('kbwi', 0.0022759919243533827) +zone = ('mdz010', 0.0017835897574344985) + +[21044] +centroid = (0.6842715001555767, -1.3417935955028977) +station = ('kfme', 0.0026249583147499767) +zone = ('mdz010', 0.0010593126275560876) + +[21045] +centroid = (0.68427451957518259, -1.340905641792653) +station = ('kbwi', 0.0020771873786964335) +zone = ('mdz010', 0.0016015321451657389) + +[21046] +centroid = (0.683699852465671, -1.3411463925096732) +station = ('kfme', 0.0018699109071973405) +zone = ('mdz010', 0.0018198120727519872) + +[21047] +centroid = (0.68977832810488415, -1.3341084570207613) +station = ('kmtn', 0.0032956718751405178) +zone = ('mdz006', 0.0031075071625649669) + +[21048] +centroid = (0.68919852972737161, -1.3424211809953299) +station = ('kdmw', 0.0024806728308355884) +zone = ('mdz005', 0.0019519160123383685) + +[21050] +centroid = (0.69089457088128969, -1.3332947845234815) +station = ('kapg', 0.0036750317680217877) +zone = ('mdz007', 0.003255113478129987) + +[21051] +centroid = (0.688928422572333, -1.334406157831274) +station = ('kmtn', 0.0024889662916314863) +zone = ('mdz011', 0.0032246502848246495) + +[21052] +centroid = (0.68427177940825712, -1.3342539127606226) +station = ('kmtn', 0.002262127372949038) +zone = ('mdz011', 0.0030989966080657051) + +[21053] +centroid = (0.69281773173076977, -1.3389305224913413) +station = ('kdmw', 0.0042350427041684393) +zone = ('mdz006', 0.0027135346767678038) + +[21054] +centroid = (0.68139455177646691, -1.3384228411185213) +station = ('kfme', 0.0013193634060554293) +zone = ('mdz014', 0.0028545480112167395) + +[21056] +centroid = (0.6819514688874857, -1.3339299796514523) +station = ('knak', 0.0017313246162822976) +zone = ('mdz014', 0.0027900886933815579) + +[21057] +centroid = (0.6885105558428205, -1.3353945901465558) +station = ('kmtn', 0.0023932749557809413) +zone = ('mdz011', 0.0024342344877561471) + +[21060] +centroid = (0.6836418202680421, -1.3365883779016274) +station = ('kbwi', 0.0013875084980691467) +zone = ('mdz011', 0.002843748284952975) + +[21061] +centroid = (0.68350482937505319, -1.3374361017726137) +station = ('kbwi', 0.00073388880909856975) +zone = ('mdz011', 0.0029662608397772786) + +[21071] +centroid = (0.68908489133977435, -1.3406040488979085) +station = ('kdmw', 0.0034919910741444899) +zone = ('mdz006', 0.0022180752223356654) + +[21074] +centroid = (0.69152758434769546, -1.3411083268786874) +station = ('kdmw', 0.002296653360722985) +zone = ('mdz006', 0.0026791851139813428) + +[21075] +centroid = (0.68422776220452175, -1.3395479501675267) +station = ('kbwi', 0.0011110644064842416) +zone = ('mdz010', 0.0025852368813234035) + +[21076] +centroid = (0.6836194975069092, -1.3389529848788144) +station = ('kbwi', 0.00044799422717611132) +zone = ('mdz011', 0.0031850119021597) + +[21077] +centroid = (0.68340346065209734, -1.3386271493607598) +station = ('kbwi', 0.000267430600640634) +zone = ('mdz011', 0.003279267330618829) + +[21078] +centroid = (0.69043893522676414, -1.3289149331254793) +station = ('kapg', 0.0016515977498240356) +zone = ('mdz007', 0.0014246535345384492) + +[21082] +centroid = (0.68902345575010415, -1.3347147669496116) +station = ('kmtn', 0.0026410331324588573) +zone = ('mdz011', 0.0031534712387098463) + +[21084] +centroid = (0.69138706788961746, -1.3345911627319853) +station = ('kapg', 0.0047804773915074384) +zone = ('mdz006', 0.0029642540891254483) + +[21085] +centroid = (0.68846063942621349, -1.3326812314782355) +station = ('kmtn', 0.002122890104814098) +zone = ('mdz011', 0.0039516625490248394) + +[21087] +centroid = (0.68852041695309429, -1.3336626301166319) +station = ('kmtn', 0.0020247721156774019) +zone = ('mdz011', 0.0033563235479897725) + +[21090] +centroid = (0.68431708815563885, -1.3381878674413252) +station = ('kbwi', 0.00074432148125373298) +zone = ('mdz011', 0.0023043955018679646) + +[21093] +centroid = (0.68834822276909258, -1.3376344933486879) +station = ('kdmh', 0.0027441251054143127) +zone = ('mdz006', 0.0018672176694890154) + +[21102] +centroid = (0.69259610982235142, -1.3412949200290181) +station = ('kdmw', 0.0024916667822529239) +zone = ('mdz005', 0.0031183021417006836) + +[21104] +centroid = (0.68673302526612701, -1.3423808464363163) +station = ('kbwi', 0.0044168828345240952) +zone = ('mdz010', 0.0016928750797573784) + +[21105] +centroid = (0.69313902939276928, -1.3378174911207594) +station = ('kthv', 0.0047112184059336934) +zone = ('mdz006', 0.0029672533858343753) + +[21108] +centroid = (0.68227130047291362, -1.3372904365932423) +station = ('kbwi', 0.0015626294153062421) +zone = ('mdz014', 0.0030371211404102215) + +[21111] +centroid = (0.69072342389483909, -1.3367422984883608) +station = ('kmtn', 0.0048276885387048187) +zone = ('mdz006', 0.0011819942578941704) + +[21113] +centroid = (0.68161343351795944, -1.3389568595097538) +station = ('kfme', 0.00085468658472604721) +zone = ('mdz014', 0.0033124187559694655) + +[21114] +centroid = (0.68084669292426581, -1.3383921407769785) +station = ('kfme', 0.0017038451742791435) +zone = ('mdz014', 0.002506567259733263) + +[21117] +centroid = (0.68814079038749298, -1.3400284742171857) +station = ('kdmh', 0.0033280193367812923) +zone = ('mdz006', 0.0025228545282166958) + +[21120] +centroid = (0.69195679571734592, -1.3382286557859442) +station = ('kdmw', 0.0045493052883276664) +zone = ('mdz006', 0.0017794180337495019) + +[21122] +centroid = (0.68280325937562902, -1.3350948473008184) +station = ('knak', 0.0024211779606679662) +zone = ('mdz014', 0.0033239234289635005) + +[21128] +centroid = (0.68782427492764386, -1.3342598817866644) +station = ('kmtn', 0.001391572220129066) +zone = ('mdz011', 0.00257876804382243) + +[21130] +centroid = (0.68900896951731261, -1.3298393991236757) +station = ('kapg', 0.00041465219052506242) +zone = ('mdz007', 0.0028668779456193817) + +[21131] +centroid = (0.68946884632192063, -1.3367454051744294) +station = ('kmtn', 0.0037802832024043326) +zone = ('mdz006', 0.0012663357332058957) + +[21132] +centroid = (0.69280329785785566, -1.3341361204894053) +station = ('kapg', 0.0054218029061273753) +zone = ('mdz007', 0.0038815125807733059) + +[21133] +centroid = (0.68719730030045001, -1.34067962165452) +station = ('kdmh', 0.0031091766707497877) +zone = ('mdz010', 0.0026522406166174053) + +[21136] +centroid = (0.68912173524028397, -1.3403124043799004) +station = ('kdmw', 0.0036449308788110021) +zone = ('mdz006', 0.0020057571941473405) + +[21140] +centroid = (0.67981558730877256, -1.336642064229419) +station = ('knak', 0.0014803123046946002) +zone = ('mdz014', 0.0008190340918439984) + +[21144] +centroid = (0.68278872078295982, -1.3382707880340874) +station = ('kbwi', 0.00080277891790464561) +zone = ('mdz011', 0.003782529014783861) + +[21146] +centroid = (0.68205959203464672, -1.3362013511399979) +station = ('knak', 0.0019595538083040909) +zone = ('mdz014', 0.0025843122785569861) + +[21152] +centroid = (0.6901215471022889, -1.3383165854736596) +station = ('kdmh', 0.0045781222605003015) +zone = ('mdz006', 0.00017418709324247509) + +[21153] +centroid = (0.68798060406874506, -1.3386835584021841) +station = ('kdmh', 0.002617029501377629) +zone = ('mdz011', 0.0019578958501488253) + +[21154] +centroid = (0.69215305799173277, -1.3327417071368168) +station = ('kapg', 0.0042294002398768566) +zone = ('mdz007', 0.0027055759885752854) + +[21155] +centroid = (0.69068994847978593, -1.3405189640968738) +station = ('kdmw', 0.0028151950540507178) +zone = ('mdz006', 0.0019305924966704581) + +[21156] +centroid = (0.68830912739384786, -1.3333702176537525) +station = ('kmtn', 0.0018332796228880933) +zone = ('mdz011', 0.0034187769170629435) + +[21157] +centroid = (0.69025274350216126, -1.3436165570000209) +station = ('kdmw', 0.0011296355810679005) +zone = ('mdz005', 0.00058459438189607446) + +[21158] +centroid = (0.6920882713698987, -1.3445159949767438) +station = ('kdmw', 0.00083454734506468542) +zone = ('mdz005', 0.0015906655109759959) + +[21160] +centroid = (0.69290016363134144, -1.3318003114448764) +station = ('kapg', 0.0044900709856851998) +zone = ('mdz007', 0.002230141088676192) + +[21161] +centroid = (0.69219588837157664, -1.3363123889870097) +station = ('kmtn', 0.0060399505065244063) +zone = ('mdz006', 0.0024431530258893935) + +[21162] +centroid = (0.68748693768981839, -1.3335289902558065) +station = ('kmtn', 0.0010019906790713446) +zone = ('mdz011', 0.0029387427106056388) + +[21163] +centroid = (0.68656945300863004, -1.3412550741621949) +station = ('kdmh', 0.0032673089819601569) +zone = ('mdz010', 0.0018828685409219377) + +[21201] +centroid = (0.68582353419291275, -1.3373101588137899) +station = ('kdmh', 0.00021366814878020978) +zone = ('mdz011', 0.00065788829081707466) + +[21202] +centroid = (0.68585376329555725, -1.3370446593279763) +station = ('kdmh', 0.00026459711095083569) +zone = ('mdz011', 0.00060618053987418897) + +[21204] +centroid = (0.68769930935320112, -1.3374858611095879) +station = ('kdmh', 0.0020864925185797197) +zone = ('mdz011', 0.0012776128189305558) + +[21205] +centroid = (0.6859544513401048, -1.3363020042779603) +station = ('kdmh', 0.00077891293977882972) +zone = ('mdz011', 0.00079116179482187051) + +[21206] +centroid = (0.6865850911587279, -1.3358554094289599) +station = ('kdmh', 0.0014241230112751317) +zone = ('mdz011', 0.00096301239429151227) + +[21207] +centroid = (0.68633618975410104, -1.3390075962311092) +station = ('kdmh', 0.0015607936433814954) +zone = ('mdz011', 0.0014885822600152461) + +[21208] +centroid = (0.68740424398985889, -1.3392104907566538) +station = ('kdmh', 0.0023574890215995962) +zone = ('mdz011', 0.0018927097615342578) + +[21209] +centroid = (0.68719181996659862, -1.33814398986393) +station = ('kdmh', 0.001725719395534428) +zone = ('mdz011', 0.0010962036034808827) + +[21210] +centroid = (0.68694686300608121, -1.3374926678936707) +station = ('kdmh', 0.0013409121795449164) +zone = ('mdz011', 0.00057892654066032901) + +[21211] +centroid = (0.68643480085683861, -1.3376100063792824) +station = ('kdmh', 0.00086747748572233102) +zone = ('mdz011', 0.00040313638642415104) + +[21212] +centroid = (0.68711101122223139, -1.3371822261796185) +station = ('kdmh', 0.0014876950480891666) +zone = ('mdz011', 0.00065598119604718156) + +[21213] +centroid = (0.68617518313060455, -1.3365354595187071) +station = ('kdmh', 0.00076113640605064475) +zone = ('mdz011', 0.00051418341436791518) + +[21214] +centroid = (0.68681842422642703, -1.3363009047205314) +station = ('kdmh', 0.001387751853006023) +zone = ('mdz011', 0.00070811954097359296) + +[21215] +centroid = (0.68670400044066626, -1.3383807088703781) +station = ('kdmh', 0.0014083773680038159) +zone = ('mdz011', 0.0010280781352018909) + +[21216] +centroid = (0.68609931366802035, -1.3381739048073091) +station = ('kdmh', 0.0008827518336790071) +zone = ('mdz011', 0.00091255514497127664) + +[21217] +centroid = (0.68606227778129303, -1.3376055732429823) +station = ('kdmh', 0.00053364110335861177) +zone = ('mdz011', 0.00056265157624161644) + +[21218] +centroid = (0.68643986231166942, -1.3369475317551027) +station = ('kdmh', 0.00084181845003027198) +zone = ('mdz011', 0.00011165436807025106) + +[21219] +centroid = (0.6846483167410824, -1.3341873633562438) +station = ('kmtn', 0.0018825737637773608) +zone = ('mdz011', 0.0028854457685884029) + +[21220] +centroid = (0.68674019856935264, -1.3332571726781011) +station = ('kmtn', 0.00043477373893733537) +zone = ('mdz011', 0.0029774585167795138) + +[21221] +centroid = (0.68572598774101878, -1.3340383995045861) +station = ('kmtn', 0.00080805184065206614) +zone = ('mdz011', 0.0024720758349157991) + +[21222] +centroid = (0.68530073826877025, -1.3350471299990687) +station = ('kmtn', 0.001574776731397371) +zone = ('mdz011', 0.0019596123090343492) + +[21223] +centroid = (0.685613815429993, -1.3378645451973932) +station = ('kdmh', 0.00050433331736441885) +zone = ('mdz011', 0.0010361635860504231) + +[21224] +centroid = (0.68547562025982012, -1.3359244546541689) +station = ('kdmh', 0.0010084027664128061) +zone = ('mdz011', 0.0013341716819999408) + +[21225] +centroid = (0.68462489442252061, -1.3371968345854577) +station = ('kdmh', 0.00099869277967993371) +zone = ('mdz011', 0.0018359162669705365) + +[21226] +centroid = (0.68432419164569447, -1.336275143660772) +station = ('kdmh', 0.0014885747140264225) +zone = ('mdz011', 0.0022259528503678094) + +[21227] +centroid = (0.68486667488379926, -1.3383088711183659) +station = ('kdmh', 0.0011369309932380584) +zone = ('mdz011', 0.0018508566781740685) + +[21228] +centroid = (0.68544066131490278, -1.3395007739178455) +station = ('kdmh', 0.0017802661569719718) +zone = ('mdz011', 0.0021254819476177293) + +[21229] +centroid = (0.68563989064901787, -1.338517525230442) +station = ('kdmh', 0.0010097867820623259) +zone = ('mdz011', 0.001375242668732565) + +[21230] +centroid = (0.685323218109536, -1.3373377175626786) +station = ('kdmh', 0.00031540588124298618) +zone = ('mdz011', 0.0011518163699613241) + +[21231] +centroid = (0.68569099388951626, -1.3367817603827485) +station = ('kdmh', 0.00034060709224444753) +zone = ('mdz011', 0.00080407152834271111) + +[21234] +centroid = (0.68754483026110702, -1.3357742690720347) +station = ('kmtn', 0.0019016294435095424) +zone = ('mdz011', 0.0014878156710147774) + +[21236] +centroid = (0.68745763361167744, -1.3348897711137089) +station = ('kmtn', 0.0013187089714211029) +zone = ('mdz011', 0.0019724944523966388) + +[21237] +centroid = (0.68664523520475151, -1.3350966275366554) +station = ('kmtn', 0.0010732347488835354) +zone = ('mdz011', 0.0015527756343921488) + +[21239] +centroid = (0.68708549450856726, -1.3367332053229579) +station = ('kdmh', 0.0015083807448672689) +zone = ('mdz011', 0.00068453957033529718) + +[21240] +centroid = (0.68371294243506098, -1.3381704490553903) +station = ('kbwi', 0.00020333172589564062) +zone = ('mdz011', 0.0028706810780823699) + +[21244] +centroid = (0.68652423152771092, -1.3400062561758079) +station = ('kdmh', 0.0023413653608307578) +zone = ('mdz010', 0.0025530868892773848) + +[21250] +centroid = (0.68513966183210373, -1.3388626466367313) +station = ('kdmh', 0.0013656326069746197) +zone = ('mdz011', 0.0019034291906242728) + +[21251] +centroid = (0.68669478510221571, -1.3365948181665674) +station = ('kdmh', 0.0011732243510563067) +zone = ('mdz011', 0.00044961883588360668) + +[21252] +centroid = (0.68755127052604692, -1.3370583950691897) +station = ('kdmh', 0.0019314721017426259) +zone = ('mdz011', 0.001092600881343655) + +[21286] +centroid = (0.68786630245603186, -1.3364550696533601) +station = ('kdmh', 0.0023181346079695193) +zone = ('mdz011', 0.001490438069340965) + +[21401] +centroid = (0.68046460544441922, -1.3360984116207153) +station = ('knak', 0.00094556873354508409) +zone = ('mdz014', 0.0010131084452682745) + +[21402] +centroid = (0.68046286011516721, -1.3346938753584652) +station = ('knak', 0.0001672602371326823) +zone = ('mdz014', 0.0012168261351657593) + +[21403] +centroid = (0.67966826406661185, -1.3349958522256451) +station = ('knak', 0.00072431105447761236) +zone = ('mdz014', 0.00054471866037023411) + +[21405] +centroid = (0.68115983989865858, -1.3361842992732058) +station = ('knak', 0.0012705721106896402) +zone = ('mdz014', 0.0016993383651397679) + +[21409] +centroid = (0.68100015972539363, -1.3341738894144184) +station = ('knak', 0.00082557712756108721) +zone = ('mdz014', 0.0018889772811676721) + +[21502] +centroid = (0.69191300540641343, -1.3745365133223795) +station = ('kcbe', 0.00050184188958344428) +zone = ('mdz502', 0.0021381690058773785) + +[21520] +centroid = (0.69158214334011292, -1.3840719102511403) +station = ('k2g4', 0.00093702994996006203) +zone = ('mdz001', 0.0017184519948125405) + +[21521] +centroid = (0.69030164762780222, -1.3795340192893701) +station = ('kcbe', 0.0039363319714399957) +zone = ('mdz501', 0.001754837241582242) + +[21522] +centroid = (0.6913291927716213, -1.3827851662601076) +station = ('k2g4', 0.0015992224714074738) +zone = ('mdz001', 0.0015543485364312216) + +[21523] +centroid = (0.68908527531220976, -1.3801975236578081) +station = ('k2g4', 0.0039041484976138205) +zone = ('wvz503', 0.0017267455614353162) + +[21524] +centroid = (0.69302879439721343, -1.3753439899008146) +station = ('kcbe', 0.0017014563900241626) +zone = ('mdz501', 0.0025184894699902581) + +[21529] +centroid = (0.69296451392086245, -1.3747464764313946) +station = ('kcbe', 0.0015498238195463625) +zone = ('mdz502', 0.0026219035557079003) + +[21530] +centroid = (0.6925403640060428, -1.370888461026446) +station = ('kcbe', 0.0030963936831074146) +zone = ('mdz502', 0.0010981554423283662) + +[21531] +centroid = (0.69190239380456131, -1.386280380073444) +station = ('k2g4', 0.0016164370955801337) +zone = ('mdz001', 0.0028792126803457519) + +[21532] +centroid = (0.69198487806501052, -1.3785266152451188) +station = ('kcbe', 0.0030498388198473602) +zone = ('mdz501', 0.0010987124577938883) + +[21536] +centroid = (0.69214452333169041, -1.3816997809048772) +station = ('k2g4', 0.0027025871699592348) +zone = ('mdz001', 0.0026724312479858023) + +[21538] +centroid = (0.68783109916501917, -1.3827273784085738) +station = ('k2g4', 0.0033532769311343542) +zone = ('wvz503', 0.0015193558658590978) + +[21539] +centroid = (0.69047460975667485, -1.3782815361115537) +station = ('kcbe', 0.0029633637694418493) +zone = ('mdz501', 0.00089532163592010263) + +[21540] +centroid = (0.6890238920824171, -1.3799003289927787) +station = ('kcbe', 0.0047123546181973555) +zone = ('wvz503', 0.0017491492549182122) + +[21541] +centroid = (0.69013807537030525, -1.3854473867813444) +station = ('k2g4', 0.00085659826787265112) +zone = ('mdz001', 0.0014510097439591238) + +[21542] +centroid = (0.69108184471002865, -1.377937235010013) +station = ('kcbe', 0.0025655319706085595) +zone = ('mdz501', 0.00030538107837895965) + +[21543] +centroid = (0.69213565705909041, -1.3781233394681531) +station = ('kcbe', 0.0027802331798004658) +zone = ('mdz501', 0.0010525245762919133) + +[21545] +centroid = (0.69296667812913493, -1.3762710215330116) +station = ('kcbe', 0.0019965080114498542) +zone = ('mdz501', 0.0020469720025055914) + +[21550] +centroid = (0.68746437058259013, -1.3856577338627949) +station = ('k2g4', 0.0034106157072780943) +zone = ('mdz001', 0.0029155017062843973) + +[21555] +centroid = (0.69072848534966991, -1.3711738398124396) +station = ('kcbe', 0.002755131266292149) +zone = ('mdz502', 0.0010596109809150084) + +[21557] +centroid = (0.69003743968563536, -1.3774625403600556) +station = ('kcbe', 0.0025788059273811636) +zone = ('mdz501', 0.0011416218210903066) + +[21561] +centroid = (0.6892579407351096, -1.3822030465946897) +station = ('k2g4', 0.0024945816971136538) +zone = ('mdz001', 0.0012504482911590983) + +[21562] +centroid = (0.68965147757484924, -1.3795193934302383) +station = ('kcbe', 0.0041581773326740817) +zone = ('mdz501', 0.0021463730961289442) + +[21601] +centroid = (0.67707974879968646, -1.3278890285911571) +station = ('kesn', 0.00024017079455380876) +zone = ('mdz019', 0.00037504018254002985) + +[21607] +centroid = (0.68299475690115785, -1.3239056636393305) +station = ('kesn', 0.0064833358620082285) +zone = ('mdz015', 0.0024894413133322336) + +[21610] +centroid = (0.68708525016247191, -1.3277169391269104) +station = ('kapg', 0.0021517965945546968) +zone = ('mdz012', 0.0019763835162679979) + +[21612] +centroid = (0.67634149197938542, -1.3312573220612882) +station = ('kesn', 0.0029638929894264046) +zone = ('mdz019', 0.0025159059708278011) + +[21613] +centroid = (0.672000439250655, -1.3278268599632008) +station = ('kcge', 0.00093123573282659442) +zone = ('mdz021', 0.0010473826396211164) + +[21617] +centroid = (0.68154065328815128, -1.3272271473789232) +station = ('kesn', 0.0043632837329400471) +zone = ('mdz015', 0.00049958135381861679) + +[21619] +centroid = (0.67969418220600386, -1.3312985641915129) +station = ('kw29', 0.00095156968421302715) +zone = ('mdz019', 0.003885118551433604) + +[21620] +centroid = (0.68417233054747839, -1.3281590310264406) +station = ('kapg', 0.0047426697993339399) +zone = ('mdz012', 0.0013011961105931383) + +[21622] +centroid = (0.67045889464212349, -1.3292297207093691) +station = ('kcge', 0.0028141351182557161) +zone = ('mdz021', 0.0023619513501106724) + +[21623] +centroid = (0.68284322741549963, -1.3258698746328172) +station = ('kesn', 0.0058157671607559679) +zone = ('mdz015', 0.0011770827127904292) + +[21624] +centroid = (0.67796744071054327, -1.3311607180871905) +station = ('kw29', 0.0024989889311506507) +zone = ('mdz019', 0.002706759339361865) + +[21625] +centroid = (0.67846541805272231, -1.3263808895845086) +station = ('kesn', 0.0015983441608777625) +zone = ('mdz019', 0.0021761200528117967) + +[21626] +centroid = (0.66918295423916052, -1.3281669548212445) +station = ('kcge', 0.0035906809512091364) +zone = ('mdz021', 0.0027154842225750641) + +[21627] +centroid = (0.66729223906047508, -1.3272590519976495) +station = ('knhk', 0.0049852268114283999) +zone = ('mdz021', 0.004340549240486948) + +[21628] +centroid = (0.68474137769679866, -1.3250870595567128) +station = ('kapg', 0.0052512111464310864) +zone = ('mdz012', 0.0016035967921009511) + +[21629] +centroid = (0.67821555671700673, -1.323395887871408) +station = ('kesn', 0.0034428060603187696) +zone = ('mdz020', 0.00024142679965194827) + +[21631] +centroid = (0.67338975624182751, -1.325385249059416) +station = ('kcge', 0.0014458238562677845) +zone = ('mdz021', 0.0020218327815511314) + +[21632] +centroid = (0.67599041900034673, -1.3224783508303419) +station = ('kesn', 0.0041793433804599945) +zone = ('mdz020', 0.0025780315674393504) + +[21634] +centroid = (0.6683243395136419, -1.3299261070809147) +station = ('knhk', 0.0027545329227077913) +zone = ('mdz021', 0.0041922451247145987) + +[21635] +centroid = (0.68652163098712538, -1.3237731058826412) +station = ('kapg', 0.004891756400830811) +zone = ('mdz012', 0.0028951413429285019) + +[21636] +centroid = (0.68111983695220291, -1.3230085469505128) +station = ('kesn', 0.0053199335072417432) +zone = ('mdz020', 0.0027092241774138289) + +[21638] +centroid = (0.67963471883838844, -1.3300736048560009) +station = ('kw29', 0.0018004736453130564) +zone = ('mdz019', 0.0032953122183971423) + +[21639] +centroid = (0.67995612122014315, -1.322651923824453) +station = ('kesn', 0.0047522599564342217) +zone = ('mdz020', 0.0016582860127066904) + +[21640] +centroid = (0.6818676930833899, -1.3233251845834095) +station = ('kesn', 0.0057472173766693196) +zone = ('mdz020', 0.0034316451536239132) + +[21641] +centroid = (0.67924591184092165, -1.3254059661176372) +station = ('kesn', 0.002681737765531936) +zone = ('mdz020', 0.0016798285409036649) + +[21643] +centroid = (0.67449264724945523, -1.3241794883456757) +station = ('kcge', 0.0028575917599623539) +zone = ('mdz021', 0.0034516821651251238) + +[21644] +centroid = (0.68264064704922078, -1.3242427565310604) +station = ('kesn', 0.0060502710337435109) +zone = ('mdz015', 0.002109790491825244) + +[21645] +centroid = (0.68619118779984534, -1.3256847650123509) +station = ('kapg', 0.0038718836793604858) +zone = ('mdz012', 0.0014868097317035174) + +[21647] +centroid = (0.67740390880165935, -1.3313908921089435) +station = ('kesn', 0.0029513135202160912) +zone = ('mdz019', 0.0026741571239141042) + +[21648] +centroid = (0.67169617600215492, -1.3306273280144885) +station = ('kcge', 0.0030136432150679252) +zone = ('mdz021', 0.0031619523766839115) + +[21649] +centroid = (0.68301872027178778, -1.3224242979834075) +station = ('kdov', 0.0040975151872173141) +zone = ('dez002', 0.0028388661367776389) + +[21650] +centroid = (0.68619816911685327, -1.3232016501789534) +station = ('kapg', 0.0054347018097322111) +zone = ('mdz012', 0.0031741956611699321) + +[21651] +centroid = (0.68513767215675647, -1.3238361995351011) +station = ('kapg', 0.0056407044084270577) +zone = ('mdz012', 0.0025135433827983321) + +[21652] +centroid = (0.67549806161835901, -1.3312347898606451) +station = ('kesn', 0.0032908152461591281) +zone = ('mdz019', 0.0027599559634162948) + +[21653] +centroid = (0.676323183475532, -1.3295871641401773) +station = ('kesn', 0.0017647510219340916) +zone = ('mdz019', 0.0012518044288055104) + +[21654] +centroid = (0.67524617570071122, -1.3286813382583922) +station = ('kesn', 0.0021125787742676534) +zone = ('mdz019', 0.0015607153122272936) + +[21655] +centroid = (0.67622726017984236, -1.3249277459025908) +station = ('kesn', 0.0023039009713911032) +zone = ('mdz020', 0.0024714561021615456) + +[21657] +centroid = (0.6801537448513465, -1.3262219773561148) +station = ('kesn', 0.0031576677563137576) +zone = ('mdz015', 0.0018101917618243721) + +[21658] +centroid = (0.67990236507918178, -1.3289057003337361) +station = ('kesn', 0.0028949345879228073) +zone = ('mdz015', 0.0025927884659627774) + +[21659] +centroid = (0.6734165819524307, -1.3225330145425143) +station = ('kcge', 0.0035560581980802843) +zone = ('mdz021', 0.003656183548881605) + +[21660] +centroid = (0.67991281960140126, -1.3245145392021811) +station = ('kesn', 0.0036396659284622566) +zone = ('mdz020', 0.0016670874456420498) + +[21661] +centroid = (0.68235600130151297, -1.3302810023310152) +station = ('kw29', 0.0025202859175853989) +zone = ('mdz015', 0.0027446889179167729) + +[21662] +centroid = (0.67567889518215829, -1.3301069580980063) +station = ('kesn', 0.0024610088546997417) +zone = ('mdz019', 0.0019062562974871337) + +[21663] +centroid = (0.67699510033096466, -1.3304493218840776) +station = ('kesn', 0.0022183937349861227) +zone = ('mdz019', 0.0018733949550551817) + +[21664] +centroid = (0.67382067803414492, -1.3254849597195824) +station = ('kcge', 0.0016509568528675388) +zone = ('mdz021', 0.0023820148829712803) + +[21665] +centroid = (0.67634650107433869, -1.3322551442479462) +station = ('kesn', 0.0037149139609600509) +zone = ('mdz019', 0.0032861365068346444) + +[21666] +centroid = (0.67961956938048107, -1.3323412587932395) +station = ('kw29', 0.00071709414760697074) +zone = ('mdz014', 0.002588164988276599) + +[21667] +centroid = (0.68679789915442346, -1.3271851547571203) +station = ('kapg', 0.0026312527210276349) +zone = ('mdz012', 0.0016289686497543794) + +[21668] +centroid = (0.68401532072796911, -1.3238845975152587) +station = ('kapg', 0.0064069171832117) +zone = ('mdz012', 0.0027332719081749786) + +[21669] +centroid = (0.67125504403371328, -1.33142722986397) +station = ('knhk', 0.0032054303781919959) +zone = ('mdz021', 0.0038031054527085236) + +[21671] +centroid = (0.6753651722491123, -1.3322993185313139) +station = ('kesn', 0.0040835761476788017) +zone = ('mdz018', 0.0040697094032305751) + +[21672] +centroid = (0.66796715788222127, -1.3273700898446616) +station = ('kcge', 0.004693020096609578) +zone = ('mdz021', 0.0036849134321388908) + +[21673] +centroid = (0.67443908309471157, -1.3272090657678723) +station = ('kcge', 0.0017986118175461147) +zone = ('mdz019', 0.0023894995342949943) + +[21675] +centroid = (0.6682687507769659, -1.3280140465254775) +station = ('knhk', 0.0042561972221103195) +zone = ('mdz021', 0.0035142325409599257) + +[21676] +centroid = (0.67672010625402057, -1.3326145424475166) +station = ('kw29', 0.0036229627965052563) +zone = ('mdz019', 0.0035431482755821403) + +[21677] +centroid = (0.67147500787934211, -1.3294737177387976) +station = ('kcge', 0.0022819526792805453) +zone = ('mdz021', 0.0022611847041805397) + +[21678] +centroid = (0.68614615830514392, -1.3284102362656802) +station = ('kapg', 0.0027757430355838842) +zone = ('mdz012', 0.0014170371838368712) + +[21679] +centroid = (0.67917353303684147, -1.3280492498164902) +station = ('kesn', 0.0020145288183896098) +zone = ('mdz019', 0.0024413671619911777) + +[21701] +centroid = (0.68841981617500936, -1.3497144232472236) +station = ('kfdk', 0.00072095142595241771) +zone = ('mdz004', 0.0010104642018261229) + +[21702] +centroid = (0.68905296926775539, -1.3518619985319251) +station = ('kfdk', 0.001546312199724112) +zone = ('mdz004', 0.00079113520049622931) + +[21703] +centroid = (0.68708430768467577, -1.3521673438845616) +station = ('kfdk', 0.0016001160579653076) +zone = ('mdz004', 0.002098150959338975) + +[21704] +centroid = (0.68687019069204114, -1.3504600104503832) +station = ('kfdk', 0.0010950897778273768) +zone = ('mdz004', 0.0020718785618896573) + +[21705] +centroid = (0.68781436145749253, -1.3510595135951506) +station = ('kfdk', 0.00050269662733311391) +zone = ('mdz004', 0.0011170828031625603) + +[21710] +centroid = (0.68586346732619841, -1.3517278699789093) +station = ('kfdk', 0.0023260542267408814) +zone = ('mdz004', 0.0031305121907769639) + +[21711] +centroid = (0.69234411918494854, -1.3616983600368999) +station = ('kmrb', 0.00470971913688674) +zone = ('mdz003', 0.0029823808597109385) + +[21713] +centroid = (0.68992120075745245, -1.3556931882262704) +station = ('khgr', 0.0030744736946454717) +zone = ('mdz003', 0.0022707648499102799) + +[21714] +centroid = (0.68799648656493817, -1.3527072963952511) +station = ('kfdk', 0.0017527511247204261) +zone = ('mdz004', 0.0017046902574421924) + +[21716] +centroid = (0.6861666484705623, -1.3547248970105565) +station = ('kfdk', 0.003770235242737523) +zone = ('vaz042', 0.0039109811438343056) + +[21717] +centroid = (0.68655800364873687, -1.3515124439893356) +station = ('kfdk', 0.0016336525649302128) +zone = ('mdz004', 0.0024164033235448312) + +[21718] +centroid = (0.6875435910773382, -1.3548601251210011) +station = ('kfdk', 0.0034421425511069223) +zone = ('wvz053', 0.0035073836417581841) + +[21719] +centroid = (0.69303457143703751, -1.3525294298911803) +station = ('krsp', 0.001062588337021097) +zone = ('mdz004', 0.0043130646453392301) + +[21722] +centroid = (0.69223620547729781, -1.3599736780299565) +station = ('khgr', 0.0026024038755692517) +zone = ('mdz003', 0.0017590389259537801) + +[21723] +centroid = (0.68642270572512232, -1.3439481346513147) +station = ('kgai', 0.003582572836464069) +zone = ('mdz010', 0.0016674678139425275) + +[21727] +centroid = (0.6926973563722596, -1.3496497413451447) +station = ('kryt', 0.0015335310888840025) +zone = ('paz064', 0.0035236745200547199) + +[21733] +centroid = (0.69026553676557834, -1.3571415846126229) +station = ('khgr', 0.0026518204146903134) +zone = ('mdz003', 0.0012096156602201149) + +[21734] +centroid = (0.69128681617738286, -1.3562575753464878) +station = ('khgr', 0.0016449763957702098) +zone = ('mdz003', 0.0014320805732729893) + +[21737] +centroid = (0.68502810038631623, -1.344368916080678) +station = ('kgai', 0.0023809702244903478) +zone = ('mdz010', 0.0012865952059758136) + +[21738] +centroid = (0.68556260746973952, -1.3443696316656715) +station = ('kgai', 0.0027256159106375005) +zone = ('mdz010', 0.0013814839968688294) + +[21740] +centroid = (0.69170742307382094, -1.3568819843396813) +station = ('khgr', 0.0011962858163486185) +zone = ('mdz003', 0.0010691999934950346) + +[21742] +centroid = (0.69251552797078686, -1.3552950786238904) +station = ('khgr', 0.0011479077276994234) +zone = ('mdz003', 0.0025305192729877467) + +[21746] +centroid = (0.69054063556227774, -1.3563209657049202) +station = ('khgr', 0.0023733476046696187) +zone = ('mdz003', 0.0015376159736167638) + +[21750] +centroid = (0.69263466414552799, -1.3650733032114815) +station = ('kmrb', 0.005856610221705973) +zone = ('wvz051', 0.0022574806658868783) + +[21754] +centroid = (0.68647506560268212, -1.3494225169298275) +station = ('kfdk', 0.0016845048202040781) +zone = ('mdz004', 0.0026826337092646967) + +[21755] +centroid = (0.68695557219904868, -1.3538192282084041) +station = ('kfdk', 0.0028008708171079846) +zone = ('mdz004', 0.0030190080972904406) + +[21756] +centroid = (0.68875443069920173, -1.3561911655684495) +station = ('kmrb', 0.0039211076983268712) +zone = ('mdz003', 0.0028728860332377817) + +[21757] +centroid = (0.69100332234698147, -1.3485839560374144) +station = ('kryt', 0.0032503803324458228) +zone = ('mdz004', 0.0027202832157594762) + +[21758] +centroid = (0.68684298100900254, -1.355367125815413) +station = ('kmrb', 0.0044802055958281153) +zone = ('wvz053', 0.002892489471975109) + +[21762] +centroid = (0.68907047492015283, -1.3482160406310941) +station = ('kfdk', 0.0020415068703154991) +zone = ('mdz004', 0.0020399789083339935) + +[21766] +centroid = (0.6923803347669274, -1.3681267741911378) +station = ('kcbe', 0.0051039585835029469) +zone = ('wvz051', 0.0025980446494049229) + +[21767] +centroid = (0.69284565699880174, -1.3569493889553934) +station = ('khgr', 0.00019636632709899916) +zone = ('mdz003', 0.0018609736996538712) + +[21769] +centroid = (0.6884005651933599, -1.3538329115897396) +station = ('kfdk', 0.0026575175777338892) +zone = ('mdz004', 0.0023596519870941733) + +[21770] +centroid = (0.68679048150510258, -1.3483756509911891) +station = ('kfdk', 0.0019805934606237107) +zone = ('mdz004', 0.0028624814409982892) + +[21771] +centroid = (0.68756638507736922, -1.3467655847562241) +station = ('kfdk', 0.0028660558996982726) +zone = ('mdz005', 0.0035022845680556846) + +[21773] +centroid = (0.69014812846679674, -1.3535327324116893) +station = ('krsp', 0.0021732421048890616) +zone = ('mdz004', 0.0024057309442506543) + +[21774] +centroid = (0.68779526755547571, -1.3485883717204219) +station = ('kfdk', 0.0014396976185210434) +zone = ('mdz004', 0.0020784500039791013) + +[21776] +centroid = (0.68971877747080612, -1.3456434078603619) +station = ('kdmw', 0.0020089621664327786) +zone = ('mdz005', 0.0013015524010557185) + +[21777] +centroid = (0.68541366107137436, -1.3529683452914718) +station = ('kfdk', 0.0032151040659217931) +zone = ('vaz042', 0.0035232488067309148) + +[21778] +centroid = (0.69142785623423664, -1.3497382120849284) +station = ('krsp', 0.0019186375121571795) +zone = ('mdz004', 0.002650911510638415) + +[21779] +centroid = (0.6881276131516405, -1.3552766304936967) +station = ('kmrb', 0.0044971284911652278) +zone = ('wvz053', 0.0035280870411583841) + +[21780] +centroid = (0.69250156533677087, -1.352029462873654) +station = ('krsp', 0.00048218448755099895) +zone = ('mdz004', 0.0036949710684999661) + +[21781] +centroid = (0.69064551239703009, -1.3571618827918237) +station = ('khgr', 0.0022778289927993982) +zone = ('mdz003', 0.00092879410326773934) + +[21782] +centroid = (0.68865126428711643, -1.3572089717750424) +station = ('kmrb', 0.0031398552117272594) +zone = ('mdz003', 0.0026570267675397031) + +[21783] +centroid = (0.69205497048777065, -1.353564776656756) +station = ('krsp', 0.0011231936285297521) +zone = ('mdz004', 0.0037687978192849445) + +[21784] +centroid = (0.6876786446548574, -1.3434451307608899) +station = ('kdmw', 0.0036788282781092365) +zone = ('mdz010', 0.0026808080402743648) + +[21787] +centroid = (0.69250528288807767, -1.3469158052449433) +station = ('kdmw', 0.0024835644958833922) +zone = ('mdz005', 0.0028383954637931385) + +[21788] +centroid = (0.69097548434541212, -1.3511267611312299) +station = ('krsp', 0.0012911317392048842) +zone = ('mdz004', 0.0020665512221502763) + +[21790] +centroid = (0.6852313614310036, -1.3523666430318466) +station = ('kfdk', 0.0031139544088895012) +zone = ('vaz042', 0.0036032476839585898) + +[21791] +centroid = (0.68998546378051084, -1.3471872388502133) +station = ('kdmw', 0.0027455502532864051) +zone = ('mdz005', 0.0022866589959815871) + +[21793] +centroid = (0.68925804545486469, -1.3499530795691415) +station = ('kfdk', 0.0013461870262658283) +zone = ('mdz004', 0.00077162379105088553) + +[21794] +centroid = (0.68588685473817512, -1.3433123635646906) +station = ('kgai', 0.0035524326590294889) +zone = ('mdz010', 0.0009507577112415291) + +[21795] +centroid = (0.69081192954120774, -1.3582797661777259) +station = ('khgr', 0.0024118874048102866) +zone = ('mdz003', 0.00042279160002875959) + +[21797] +centroid = (0.68640628217686117, -1.3451498811077753) +station = ('kgai', 0.0030655655582319421) +zone = ('mdz010', 0.0023208822094678365) + +[21798] +centroid = (0.69004229170095577, -1.3491849427120461) +station = ('kfdk', 0.0022915478749168639) +zone = ('mdz004', 0.0017069568726924837) + +[21801] +centroid = (0.66989750948821958, -1.3201596634657751) +station = ('ksby', 0.0020927143568875159) +zone = ('mdz022', 0.00031543466880647512) + +[21802] +centroid = (0.66924250487323866, -1.3191669027339481) +station = ('ksby', 0.0011495372371965909) +zone = ('mdz022', 0.00071125531167357068) + +[21804] +centroid = (0.66870688077909402, -1.3182839406653641) +station = ('ksby', 0.00055331033343516902) +zone = ('mdz022', 0.0015834475360002281) + +[21810] +centroid = (0.66847414112334058, -1.3214235610968992) +station = ('ksby', 0.0029581586996294458) +zone = ('mdz022', 0.0017976290650158417) + +[21811] +centroid = (0.6687905693167272, -1.3127797830698122) +station = ('koxb', 0.0013709182811372106) +zone = ('mdz025', 0.0014184437715818513) + +[21813] +centroid = (0.67062909915077795, -1.3117102976640675) +station = ('koxb', 0.0019507368286332007) +zone = ('mdz025', 0.0030237896554990654) + +[21814] +centroid = (0.6683883058307275, -1.3246535197705176) +station = ('kcge', 0.0046331522913308984) +zone = ('mdz021', 0.0035531180155767162) + +[21817] +centroid = (0.6628940093454494, -1.3235891656327736) +station = ('kmfv', 0.0058562631815426546) +zone = ('mdz023', 0.002711477867383392) + +[21821] +centroid = (0.66609784044016529, -1.3249956741170783) +station = ('kcge', 0.0067331923579879924) +zone = ('mdz023', 0.0024895037766288482) + +[21822] +centroid = (0.66810823284566001, -1.3201108815131817) +station = ('ksby', 0.0020935395549346808) +zone = ('mdz022', 0.0016565625448661798) + +[21824] +centroid = (0.66288955875585676, -1.3270880795441242) +station = ('knui', 0.00600050191205045) +zone = ('mdz023', 0.0046765916616981285) + +[21826] +centroid = (0.66875590707778254, -1.3199314616660767) +station = ('ksby', 0.0017557010814288126) +zone = ('mdz022', 0.00099639304996289226) + +[21829] +centroid = (0.66492958685205039, -1.3154800692220352) +station = ('kwal', 0.0031527038105438111) +zone = ('mdz024', 0.0020405087985117887) + +[21830] +centroid = (0.67024423659742072, -1.3218765263976691) +station = ('ksby', 0.0034706387134112813) +zone = ('mdz022', 0.0016974497952019893) + +[21835] +centroid = (0.67250829515640032, -1.32555067136592) +station = ('kcge', 0.001122189092833124) +zone = ('mdz021', 0.0012184346048165296) + +[21837] +centroid = (0.67115889384522087, -1.3223716588531675) +station = ('kcge', 0.0038982384390521163) +zone = ('mdz022', 0.0024564853537484689) + +[21838] +centroid = (0.66353763441370739, -1.3218760726120637) +station = ('kwal', 0.0040132004823409829) +zone = ('mdz023', 0.0017635423996147108) + +[21840] +centroid = (0.66756637792608586, -1.3247050593433287) +station = ('kcge', 0.0053855328178278273) +zone = ('mdz023', 0.0031098214935108338) + +[21841] +centroid = (0.66753510162589014, -1.3141597276429016) +station = ('koxb', 0.0027393941707982276) +zone = ('mdz024', 0.001328725032163552) + +[21842] +centroid = (0.66934312310461608, -1.3112463193357173) +station = ('koxb', 0.00061432460313857865) +zone = ('mdz025', 0.0017881071930129977) + +[21849] +centroid = (0.66980956234721145, -1.3170570440143821) +station = ('ksby', 0.00092790271767664574) +zone = ('mdz022', 0.0021557794215580008) + +[21850] +centroid = (0.66953851271437681, -1.315927257482981) +station = ('ksby', 0.0014934339678100987) +zone = ('mdz024', 0.0025818102888180458) + +[21851] +centroid = (0.66461912768470555, -1.3184639190178298) +station = ('kwal', 0.0027615873603054402) +zone = ('mdz024', 0.0032041409926857473) + +[21853] +centroid = (0.6667772273047966, -1.3215786859608165) +station = ('ksby', 0.003780757624512153) +zone = ('mdz023', 0.0015149530372137534) + +[21856] +centroid = (0.66899742573967347, -1.3228702994204622) +station = ('kcge', 0.0048654334088104141) +zone = ('mdz022', 0.0025175497149350174) + +[21861] +centroid = (0.67258781235712117, -1.3216914167772027) +station = ('kcge', 0.0041323298298016637) +zone = ('mdz022', 0.0032013065656515257) + +[21862] +centroid = (0.67017311443040195, -1.3129620478035979) +station = ('koxb', 0.0020754269436570358) +zone = ('mdz025', 0.0027279839415002504) + +[21863] +centroid = (0.66650481631514535, -1.3159615182961979) +station = ('ksby', 0.002890683983746388) +zone = ('mdz024', 0.0005070543774702282) + +[21864] +centroid = (0.66377557515063179, -1.3160752614035502) +station = ('kwal', 0.0019090660933191051) +zone = ('mdz024', 0.0032026503749828395) + +[21865] +centroid = (0.66824010992394067, -1.3236782821443804) +station = ('kcge', 0.0051101833350054009) +zone = ('mdz023', 0.0032243382609973628) + +[21866] +centroid = (0.6626513911261297, -1.3268231211103791) +station = ('kmfv', 0.0065551577017836102) +zone = ('mdz023', 0.0046312272625256539) + +[21867] +centroid = (0.66513913108204481, -1.3228492332963908) +station = ('kwal', 0.0054485880265078166) +zone = ('mdz023', 0.00068852992359089886) + +[21869] +centroid = (0.67087361977898241, -1.3246397665760119) +station = ('kcge', 0.0025481034958813658) +zone = ('mdz021', 0.0016913938324762926) + +[21871] +centroid = (0.66486197279682802, -1.3218371168631591) +station = ('kwal', 0.0046397038530920859) +zone = ('mdz023', 0.00045455448684554112) + +[21872] +centroid = (0.67047105958700992, -1.3142177947471154) +station = ('koxb', 0.003031497964337214) +zone = ('mdz025', 0.0034420890419869423) + +[21874] +centroid = (0.6700542924149262, -1.315139887097529) +station = ('ksby', 0.0022643219416967576) +zone = ('mdz024', 0.0031203371772077952) + +[21875] +centroid = (0.6709045470133278, -1.3185036601648978) +station = ('ksby', 0.0019595096275537923) +zone = ('mdz022', 0.0015427517090271297) + +[21890] +centroid = (0.66597081537720515, -1.3212900434091215) +station = ('ksby', 0.0041572887030407752) +zone = ('mdz023', 0.00087285857149418868) + +[21901] +centroid = (0.69089568789201095, -1.3257338611242095) +station = ('kapg', 0.0034805293156249884) +zone = ('mdz008', 0.00033178698159574608) + +[21902] +centroid = (0.69031211960331418, -1.3275523545784473) +station = ('kapg', 0.0020395469856045439) +zone = ('mdz007', 0.0020119627951454486) + +[21903] +centroid = (0.69068678943383977, -1.3271319920281046) +station = ('kapg', 0.0025346036116125868) +zone = ('mdz008', 0.001354446925530805) + +[21904] +centroid = (0.69155734221144205, -1.3278318865114467) +station = ('kapg', 0.0029769179433743183) +zone = ('mdz007', 0.0011292172588470361) + +[21911] +centroid = (0.69280265208603253, -1.3270779915410478) +station = ('kapg', 0.0043504492484511496) +zone = ('mdz007', 0.0019303648758672255) + +[21912] +centroid = (0.6879983017073602, -1.323284780211226) +station = ('kapg', 0.0047629311258983037) +zone = ('mdz008', 0.0031571557191952307) + +[21913] +centroid = (0.68774002788465005, -1.3241459256641601) +station = ('kapg', 0.0041695177910233399) +zone = ('mdz008', 0.003119982783930682) + +[21914] +centroid = (0.69067732974929397, -1.3260832760404588) +station = ('kapg', 0.0031342008029111735) +zone = ('mdz008', 0.00054697732514029157) + +[21915] +centroid = (0.68933773718851066, -1.3238001933926322) +station = ('kapg', 0.0043212775727350149) +zone = ('mdz008', 0.0018343243332526449) + +[21916] +centroid = (0.69187082079839268, -1.3240339802459369) +station = ('kilg', 0.0035425224139408163) +zone = ('mdz008', 0.0015523316319975525) + +[21917] +centroid = (0.69240059803954312, -1.3281501298472553) +station = ('kapg', 0.0036967216510805623) +zone = ('mdz007', 0.0010166060488676046) + +[21918] +centroid = (0.69251505673188885, -1.3295198118843428) +station = ('kapg', 0.0036938561016349311) +zone = ('mdz007', 0.00070615819557627883) + +[21919] +centroid = (0.68795360382521664, -1.3252917343180941) +station = ('kapg', 0.0032592868335650574) +zone = ('mdz008', 0.0027594524483368159) + +[21920] +centroid = (0.69215389574977371, -1.3234539200690365) +station = ('kilg', 0.0030719163387457615) +zone = ('mdz008', 0.0020660217701304394) + +[21921] +centroid = (0.69162415341520833, -1.3240048681540137) +station = ('kilg', 0.0035601059184548387) +zone = ('mdz008', 0.0013950346024412677) + +[21930] +centroid = (0.68723489469253785, -1.3244953754869944) +station = ('kapg', 0.0040791841129474201) +zone = ('mdz012', 0.0028748739695166319) + +[22003] +centroid = (0.67770815459686695, -1.3476615320744429) +station = ('kdaa', 0.0020222343453529081) +zone = ('vaz053', 0.00088089697984836514) + +[22015] +centroid = (0.67697506395115181, -1.3487725214097999) +station = ('kdaa', 0.0017990395486670375) +zone = ('vaz053', 0.00088812992246335958) + +[22025] +centroid = (0.67356476040592506, -1.3499574777988566) +station = ('knyg', 0.0017352307272862472) +zone = ('vaz052', 0.002697463068566558) + +[22026] +centroid = (0.67301379486765545, -1.3490714264974963) +station = ('knyg', 0.0010633675613252529) +zone = ('vaz055', 0.0033111528229733734) + +[22027] +centroid = (0.67884308984956132, -1.3477967427315949) +station = ('kdca', 0.0026942935339285914) +zone = ('vaz053', 0.0012409843360400047) + +[22030] +centroid = (0.67783593015140553, -1.3498457767267289) +station = ('kiad', 0.0022434856188205676) +zone = ('vaz053', 0.00083470212628354308) + +[22031] +centroid = (0.67822676173080454, -1.3484160204567874) +station = ('kdaa', 0.0026952369180603393) +zone = ('vaz053', 0.00045850852280682528) + +[22032] +centroid = (0.67752016518313474, -1.3489702323074657) +station = ('kdaa', 0.002304716413081026) +zone = ('vaz053', 0.00037531468808674092) + +[22033] +centroid = (0.67850049917068733, -1.3506178231213486) +station = ('kiad', 0.0013474064898680853) +zone = ('vaz053', 0.0015703713841485128) + +[22035] +centroid = (0.67813888440296666, -1.3501416100349417) +station = ('kiad', 0.0018641413308659299) +zone = ('vaz053', 0.0010996775042652395) + +[22039] +centroid = (0.67642102663339876, -1.3493833168348279) +station = ('kdaa', 0.00190682844124769) +zone = ('vaz053', 0.0015181592736816683) + +[22041] +centroid = (0.67796836573504682, -1.3464027831646121) +station = ('kdca', 0.0014962074245704611) +zone = ('vaz054', 0.00064326757229385639) + +[22042] +centroid = (0.67832263266661663, -1.3473440043236276) +station = ('kdca', 0.0022414874966646516) +zone = ('vaz054', 0.0013410127899557331) + +[22043] +centroid = (0.6789479492310212, -1.3473227811199233) +station = ('kdca', 0.0023806424109044941) +zone = ('vaz054', 0.0015180507791526347) + +[22044] +centroid = (0.67827062185490716, -1.3465978237085223) +station = ('kdca', 0.0016584501389578625) +zone = ('vaz054', 0.00075769928952505641) + +[22046] +centroid = (0.67869456233021663, -1.3470621336494306) +station = ('kdca', 0.0021041359374316245) +zone = ('vaz054', 0.0012221103742810215) + +[22060] +centroid = (0.6753279269228748, -1.3465753438677568) +station = ('kdaa', 0.00057799478614945507) +zone = ('vaz054', 0.002960159746399869) + +[22066] +centroid = (0.68088870299936133, -1.3491842969402228) +station = ('kiad', 0.0024268449043706522) +zone = ('mdz009', 0.0025461302433741205) + +[22079] +centroid = (0.67499921161155407, -1.3475641601554742) +station = ('kdaa', 0.00081748365180436323) +zone = ('vaz053', 0.0030155533694316092) + +[22101] +centroid = (0.67963532970362661, -1.3467815545188799) +station = ('kdca', 0.0023820833468690254) +zone = ('vaz054', 0.0016966945209684094) + +[22102] +centroid = (0.67980497570692044, -1.3479029809231637) +station = ('kdca', 0.0031808731928844596) +zone = ('vaz053', 0.0020569092635930241) + +[22124] +centroid = (0.67881085361827709, -1.3497076862763111) +station = ('kiad', 0.0017434224864277439) +zone = ('vaz053', 0.0011940406563920555) + +[22125] +centroid = (0.67512651592719453, -1.3484801089469207) +station = ('kdaa', 0.0012340129233332513) +zone = ('vaz053', 0.0027463027780375419) + +[22134] +centroid = (0.67233142349000319, -1.3506235303480025) +station = ('knyg', 0.0012217188541145622) +zone = ('vaz055', 0.002032672130906714) + +[22150] +centroid = (0.67671411977468621, -1.3471589645163311) +station = ('kdaa', 0.00098177164190712792) +zone = ('vaz053', 0.0017046344890832004) + +[22151] +centroid = (0.67725918610008407, -1.347530388034448) +station = ('kdaa', 0.0015617983882356937) +zone = ('vaz053', 0.0011422393120251138) + +[22152] +centroid = (0.67674256864149362, -1.3479531940457437) +station = ('kdaa', 0.0012074746274925178) +zone = ('vaz053', 0.0012906023657215247) + +[22153] +centroid = (0.67622727763313484, -1.3480162178850332) +station = ('kdaa', 0.0008667098143669606) +zone = ('vaz053', 0.0017394674302734874) + +[22172] +centroid = (0.67308146128275526, -1.3503870556876496) +station = ('knyg', 0.0014928494036421445) +zone = ('vaz055', 0.0027818247459135154) + +[22180] +centroid = (0.67885347455861078, -1.3483738882086445) +station = ('kdca', 0.003129579112977449) +zone = ('vaz053', 0.0010383003180115715) + +[22181] +centroid = (0.6790491608743443, -1.3490241106214746) +station = ('kiad', 0.0021770386232767228) +zone = ('vaz053', 0.0012017548986129022) + +[22182] +centroid = (0.6795871586162715, -1.3486712748598917) +station = ('kiad', 0.0024017281550130247) +zone = ('vaz053', 0.001725846394777767) + +[22185] +centroid = (0.67848945123652227, -1.3492091853353563) +station = ('kiad', 0.0022325202484267687) +zone = ('vaz053', 0.00071179731098291814) + +[22191] +centroid = (0.67409701601461325, -1.3484926578642427) +station = ('kdaa', 0.0019632004513847304) +zone = ('vaz053', 0.0037725991606674374) + +[22192] +centroid = (0.67515791440043793, -1.3493956039527619) +station = ('kdaa', 0.001879239207978066) +zone = ('vaz053', 0.0027482553040860313) + +[22193] +centroid = (0.67445929400744964, -1.3499882828601542) +station = ('knyg', 0.0025938524601084182) +zone = ('vaz052', 0.0021114632774986947) + +[22201] +centroid = (0.67869861149408128, -1.3455659501481583) +station = ('kdca', 0.001056040738900708) +zone = ('vaz054', 0.0005062421364404238) + +[22202] +centroid = (0.67817970765417079, -1.3448020893477306) +station = ('kdca', 0.0002740291723900448) +zone = ('vaz054', 0.00064461125656668815) + +[22203] +centroid = (0.67847391780617949, -1.3459514933799239) +station = ('kdca', 0.0012142444217592488) +zone = ('vaz054', 0.00037509906553574723) + +[22204] +centroid = (0.6782486481596246, -1.3456311207424279) +station = ('kdca', 0.00091192515049812433) +zone = ('vaz054', 5.3855509543011834e-05) + +[22205] +centroid = (0.67864532659201793, -1.3463386772211863) +station = ('kdca', 0.0015570880715713475) +zone = ('vaz054', 0.00071252810848551748) + +[22206] +centroid = (0.6779542460213982, -1.3454639880132568) +station = ('kdca', 0.00076958393310055907) +zone = ('vaz054', 0.00027297289313066032) + +[22207] +centroid = (0.67904940522043955, -1.3460718861917265) +station = ('kdca', 0.001582289165521905) +zone = ('vaz054', 0.00092133055893597632) + +[22209] +centroid = (0.67884621398892242, -1.3452206018490662) +station = ('kdca', 0.00097221232854393204) +zone = ('vaz054', 0.00072508167176642475) + +[22211] +centroid = (0.67858570614476976, -1.345138658640685) +station = ('kdca', 0.00073125179285674319) +zone = ('vaz054', 0.00054675690794103629) + +[22213] +centroid = (0.67884935558157611, -1.3467389335785462) +station = ('kdca', 0.0019237662773991895) +zone = ('vaz054', 0.0010836043332753181) + +[22214] +centroid = (0.67838867592551211, -1.3451941252043136) +station = ('kdca', 0.00064219000540608915) +zone = ('vaz054', 0.00039062839535020447) + +[22301] +centroid = (0.67753424999019829, -1.3449445256679857) +station = ('kdca', 0.00063624667699501694) +zone = ('vaz054', 0.00084918883828620539) + +[22302] +centroid = (0.67767448719559609, -1.3453544511494018) +station = ('kdca', 0.00077926740083565486) +zone = ('vaz054', 0.000562739095179901) + +[22303] +centroid = (0.67708966226983769, -1.3452794892580284) +station = ('kdca', 0.0011511774698074605) +zone = ('vaz054', 0.0011383138103715268) + +[22304] +centroid = (0.67741708603751183, -1.3458604919127251) +station = ('kdca', 0.0012495909941847069) +zone = ('vaz054', 0.00079823449574462448) + +[22305] +centroid = (0.67782493457711801, -1.3449880716328231) +station = ('kdca', 0.00045693986514608786) +zone = ('vaz054', 0.00062167787209158412) + +[22306] +centroid = (0.67641540667320732, -1.3456101593381116) +station = ('kdaa', 0.0013497326480805636) +zone = ('vaz054', 0.001779462930398012) + +[22307] +centroid = (0.67669874342397607, -1.3449031264581284) +station = ('kdca', 0.0014000530227975092) +zone = ('vaz054', 0.0015995814099633667) + +[22308] +centroid = (0.6760136493326907, -1.3449173683448246) +station = ('kdca', 0.0020742853263803181) +zone = ('vaz054', 0.0022506952404084757) + +[22309] +centroid = (0.67580068425736239, -1.3457652318421511) +station = ('kdaa', 0.0010461648495727011) +zone = ('vaz054', 0.002396451641044644) + +[22310] +centroid = (0.6769097362772496, -1.3460470850630555) +station = ('kdaa', 0.00143613758183909) +zone = ('vaz054', 0.0013255834884528044) + +[22311] +centroid = (0.67777432002881011, -1.3460927254229953) +station = ('kdca', 0.0012842639960588239) +zone = ('vaz054', 0.00055396848783008813) + +[22312] +centroid = (0.67746331980939734, -1.3465960609259777) +station = ('kdca', 0.0017492952555235573) +zone = ('vaz054', 0.0010496335888368511) + +[22314] +centroid = (0.67730747936048663, -1.3448885704121667) +station = ('kdca', 0.00081584711351646215) +zone = ('vaz054', 0.0010585905390051913) + +[22315] +centroid = (0.67646059324754138, -1.3465423222383088) +station = ('kdaa', 0.00084876984974925174) +zone = ('vaz054', 0.0018743771079839449) + +[22401] +centroid = (0.66844839751687368, -1.3523973084668044) +station = ('kezf', 0.00075899012547599144) +zone = ('vaz055', 0.0021601223064080174) + +[22405] +centroid = (0.66869651352333725, -1.3509520013132277) +station = ('kezf', 0.0010332012683310311) +zone = ('vaz055', 0.0020340734352119823) + +[22406] +centroid = (0.67019323807667752, -1.3533982722461155) +station = ('krmn', 0.0012138682759945758) +zone = ('vaz055', 0.001207799576355219) + +[22407] +centroid = (0.66817267040164363, -1.3539511052866846) +station = ('kezf', 0.0017468821789151645) +zone = ('vaz056', 0.0019682520598438796) + +[22408] +centroid = (0.66704633962216164, -1.3516531873402167) +station = ('kezf', 0.00083700706704443561) +zone = ('vaz055', 0.0035388739686484693) + +[22427] +centroid = (0.66485082014290786, -1.348635495610226) +station = ('kezf', 0.003898024336738283) +zone = ('vaz064', 0.0015576870030766376) + +[22432] +centroid = (0.66094787996301307, -1.3324253138500155) +station = ('knui', 0.0050007772858125989) +zone = ('vaz077', 0.0011463630226242758) + +[22433] +centroid = (0.66963146895033809, -1.3589026392811778) +station = ('kcjr', 0.0027857224888342205) +zone = ('vaz051', 0.0024613497266036707) + +[22435] +centroid = (0.66273207769744935, -1.3363602110085144) +station = ('knui', 0.0037405733651579829) +zone = ('vaz076', 0.0022197802047967501) + +[22436] +centroid = (0.66469515422692249, -1.3459501669296925) +station = ('kxsa', 0.0052316220752075945) +zone = ('vaz064', 0.0033169663874659072) + +[22437] +centroid = (0.65940071539429024, -1.3404109456694679) +station = ('kxsa', 0.001635679691026888) +zone = ('vaz073', 0.0017077726479138061) + +[22438] +centroid = (0.66394108472359836, -1.3435673910749921) +station = ('kxsa', 0.0036107958936637619) +zone = ('vaz074', 0.0034746735885467627) + +[22443] +centroid = (0.66618350119985315, -1.3436728962282751) +station = ('kxsa', 0.0057664897693216416) +zone = ('vaz057', 0.002952409688342351) + +[22448] +centroid = (0.6690952165376628, -1.344399930581486) +station = ('knyg', 0.0046850283051953203) +zone = ('mdz016', 0.0011736572854179584) + +[22454] +centroid = (0.66050390310789076, -1.3409999593854309) +station = ('kxsa', 0.00064724530994409661) +zone = ('vaz074', 0.00096923880435113754) + +[22460] +centroid = (0.66093077573634351, -1.3371863102500683) +station = ('kxsa', 0.0036641312598586907) +zone = ('vaz076', 0.0019922768882024025) + +[22469] +centroid = (0.66463984474292681, -1.3377977689002118) +station = ('knui', 0.00342468294939506) +zone = ('vaz075', 0.0014157516320912394) + +[22473] +centroid = (0.66126120147033107, -1.3337936868901641) +station = ('knui', 0.0045822519760025148) +zone = ('vaz077', 3.4920390394041859e-05) + +[22476] +centroid = (0.66411605398111073, -1.345176724271671) +station = ('kxsa', 0.0044004786559391461) +zone = ('vaz064', 0.00379686916620529) + +[22480] +centroid = (0.65733860888305895, -1.3336503255454053) +station = ('kfyj', 0.0054584287173844682) +zone = ('vaz085', 0.0011516971609741172) + +[22482] +centroid = (0.65861100626764035, -1.3324910429496457) +station = ('kfyj', 0.0068887840133311585) +zone = ('vaz078', 0.0016411592421251432) + +[22485] +centroid = (0.66806280192523049, -1.3467432096352134) +station = ('knyg', 0.0043187808404036134) +zone = ('vaz057', 0.00010611602878394165) + +[22488] +centroid = (0.66408373048336378, -1.3367116505066958) +station = ('knui', 0.0029374930867023539) +zone = ('vaz075', 0.0024263692150293748) + +[22503] +centroid = (0.65886873903828225, -1.3354119910791982) +station = ('kfyj', 0.0052959484619588149) +zone = ('vaz078', 0.00070808116468274037) + +[22504] +centroid = (0.65919213109538433, -1.3390284354623783) +station = ('kxsa', 0.0026131501065829875) +zone = ('vaz074', 0.0025203722189341125) + +[22508] +centroid = (0.66869126008228874, -1.3578394894206181) +station = ('komh', 0.003575630338342474) +zone = ('vaz056', 0.0029599930259792406) + +[22509] +centroid = (0.66532855166576366, -1.3452988973193107) +station = ('kxsa', 0.0054641796402842176) +zone = ('vaz057', 0.0028628768223479401) + +[22511] +centroid = (0.66306861208381895, -1.3352471796379326) +station = ('knui', 0.0030230269958287309) +zone = ('vaz077', 0.0021427740666070914) + +[22514] +centroid = (0.66332713025262435, -1.3496277152899847) +station = ('kezf', 0.0048506383351063654) +zone = ('vaz064', 0.00045936597846617857) + +[22520] +centroid = (0.66535939163364644, -1.340521285384779) +station = ('kxsa', 0.0048594588856518952) +zone = ('vaz075', 0.0011385965385654162) + +[22529] +centroid = (0.6633029923490692, -1.338388562852012) +station = ('kxsa', 0.0038141222706745402) +zone = ('vaz076', 0.0012127918093504991) + +[22530] +centroid = (0.66144184304791254, -1.3315648665287823) +station = ('knui', 0.0047180387453104556) +zone = ('vaz077', 0.001798452027257375) + +[22534] +centroid = (0.66457912473824987, -1.3556471289873102) +station = ('klku', 0.0042561704847308476) +zone = ('vaz056', 0.0019508263806198708) + +[22535] +centroid = (0.66581612684560088, -1.3467455658297036) +station = ('kezf', 0.0044459697277500227) +zone = ('vaz057', 0.0021733676986523932) + +[22538] +centroid = (0.66678986348858105, -1.3484220592959995) +station = ('kezf', 0.0028373997192502973) +zone = ('vaz057', 0.0018382657866604954) + +[22539] +centroid = (0.66079272019251079, -1.3314425887613874) +station = ('knui', 0.0053603655165271576) +zone = ('vaz077', 0.0019366583802816987) + +[22542] +centroid = (0.66834795381842149, -1.3592774836446286) +station = ('komh', 0.0023969913027190107) +zone = ('vaz050', 0.0019943311055464789) + +[22546] +centroid = (0.66222448359109176, -1.3517342229773868) +station = ('kofp', 0.0042406275461254429) +zone = ('vaz064', 0.0020281542994884188) + +[22548] +centroid = (0.66001027163554926, -1.3387510502843587) +station = ('kxsa', 0.0024879314540889302) +zone = ('vaz074', 0.0019931034102804784) + +[22551] +centroid = (0.66618934805284735, -1.356121230225322) +station = ('kezf', 0.0038222980553440887) +zone = ('vaz056', 0.00072650808557687605) + +[22553] +centroid = (0.66797290001546039, -1.3552095574905429) +station = ('krmn', 0.0034328129024058344) +zone = ('vaz056', 0.001464500162282835) + +[22554] +centroid = (0.67067355268682627, -1.3504772368501001) +station = ('krmn', 0.001186347737705591) +zone = ('vaz055', 0.00114781000017678) + +[22556] +centroid = (0.67146399485176211, -1.3528211791289435) +station = ('krmn', 0.0014990476118014531) +zone = ('vaz055', 0.0011242248487068616) + +[22560] +centroid = (0.66176099395493215, -1.3432263362858601) +station = ('kxsa', 0.001607041222324734) +zone = ('vaz074', 0.0021392952773519811) + +[22567] +centroid = (0.66723417195626133, -1.3601063405064007) +station = ('komh', 0.0016355159966479074) +zone = ('vaz050', 0.0012013288217704191) + +[22572] +centroid = (0.66261950396069569, -1.339907906872458) +station = ('kxsa', 0.0025099568887720462) +zone = ('vaz076', 0.00074601947865636259) + +[22576] +centroid = (0.65763266195543491, -1.3341679902015466) +station = ('kfyj', 0.0052445920356575214) +zone = ('vaz078', 0.0010522059956460746) + +[22578] +centroid = (0.65688539923619349, -1.3326672339376344) +station = ('kfyj', 0.0059966290650130946) +zone = ('vaz085', 0.0017437249784562465) + +[22579] +centroid = (0.65965762786018378, -1.3319469365553362) +station = ('knui', 0.006341855938429646) +zone = ('vaz077', 0.0021716941483822553) + +[22580] +centroid = (0.66513070114175765, -1.3516821598057998) +station = ('kezf', 0.0027492638552557816) +zone = ('vaz064', 0.0019665695707792594) + +[22601] +centroid = (0.68372344931715789, -1.3643833221982904) +station = ('kokv', 0.00053169170588508936) +zone = ('vaz028', 0.0012865126779450036) + +[22602] +centroid = (0.68319602827049786, -1.3663276364383046) +station = ('kokv', 0.0018274395781139995) +zone = ('vaz028', 0.0010914107114651862) + +[22603] +centroid = (0.68552494326448155, -1.364963696534456) +station = ('kokv', 0.0023565711858977026) +zone = ('vaz028', 0.0014799003266984061) + +[22610] +centroid = (0.67761807815417152, -1.3662287635361789) +station = ('klua', 0.0040807162936325461) +zone = ('vaz030', 0.0017627852429409447) + +[22611] +centroid = (0.68362595522514169, -1.3610882627435725) +station = ('kokv', 0.0022623363744028791) +zone = ('vaz031', 0.0010025067736191494) + +[22620] +centroid = (0.68186853084143084, -1.361920156478243) +station = ('kokv', 0.0021402361769049701) +zone = ('vaz031', 0.00090752952594197955) + +[22623] +centroid = (0.67804168701692313, -1.3638118490413098) +station = ('kokv', 0.005256241073836241) +zone = ('vaz030', 0.0013804420734601116) + +[22624] +centroid = (0.68538702734698898, -1.3629597443939012) +station = ('kokv', 0.0022336762283736845) +zone = ('vaz028', 0.0025547387224162674) + +[22625] +centroid = (0.68718518771544113, -1.3667802352199316) +station = ('kokv', 0.0044543076159003518) +zone = ('vaz028', 0.0030248540079504463) + +[22627] +centroid = (0.67644519944353887, -1.3638740351225584) +station = ('kcjr', 0.0055995509146522099) +zone = ('vaz040', 0.0012897436845042702) + +[22630] +centroid = (0.67946034299282176, -1.3644090134448799) +station = ('kokv', 0.0038508551702732697) +zone = ('vaz030', 0.00057756315382532424) + +[22637] +centroid = (0.68515781325632441, -1.3675177066420694) +station = ('kokv', 0.003316950583179231) +zone = ('vaz028', 0.0015517467166558071) + +[22639] +centroid = (0.67742823869143209, -1.3616895461241771) +station = ('kcjr', 0.0054657733945802063) +zone = ('vaz501', 0.0019519142765714382) + +[22640] +centroid = (0.67739745108342697, -1.3638372610352187) +station = ('kokv', 0.0058999200448762073) +zone = ('vaz030', 0.001905221467074661) + +[22641] +centroid = (0.68216448632269167, -1.3679011554787324) +station = ('kokv', 0.0032497637391836914) +zone = ('vaz028', 0.0025869343019265766) + +[22642] +centroid = (0.67975593195493933, -1.3615645980030269) +station = ('kokv', 0.0040048163595597947) +zone = ('vaz501', 0.0023684295202720338) + +[22643] +centroid = (0.67868119310814634, -1.3610660272489024) +station = ('kokv', 0.0051388363922720108) +zone = ('vaz501', 0.0014441689548250912) + +[22644] +centroid = (0.67980176430109684, -1.3698474593940941) +station = ('klua', 0.0049380597513370445) +zone = ('vaz027', 0.0019587928288212534) + +[22645] +centroid = (0.68105997215885949, -1.3661646750460459) +station = ('kokv', 0.0028090660932171231) +zone = ('vaz030', 0.0021815436263930019) + +[22646] +centroid = (0.68194408614474977, -1.3622456952903252) +station = ('kokv', 0.0019049428361961505) +zone = ('vaz031', 0.0010105841707408738) + +[22650] +centroid = (0.67657835061217353, -1.3677208455137091) +station = ('klua', 0.0025208874919930616) +zone = ('vaz029', 0.0030100834348746747) + +[22652] +centroid = (0.6778786732647869, -1.3688511905504706) +station = ('klua', 0.003163287053565915) +zone = ('vaz027', 0.0019448353403267601) + +[22654] +centroid = (0.68046587953477311, -1.3713649184589478) +station = ('klua', 0.0056853706674583225) +zone = ('vaz027', 0.0022574851163080869) + +[22655] +centroid = (0.68186072921967456, -1.3650067014472251) +station = ('kokv', 0.0016438577129579146) +zone = ('vaz028', 0.0024764778493446592) + +[22656] +centroid = (0.68450512992924861, -1.3629161809757713) +station = ('kokv', 0.0014609376764362979) +zone = ('vaz031', 0.002250826877474158) + +[22657] +centroid = (0.68072417081077585, -1.367921209311838) +station = ('kokv', 0.0040002632035176268) +zone = ('vaz030', 0.0028182902324718623) + +[22660] +centroid = (0.67970208854751535, -1.3688866730941636) +station = ('klua', 0.0049252977055638568) +zone = ('vaz027', 0.0024068701063615192) + +[22663] +centroid = (0.68163380151033026, -1.3632872205214528) +station = ('kokv', 0.0017461249431315537) +zone = ('vaz031', 0.0018415236341599761) + +[22664] +centroid = (0.67873967909138078, -1.3706498745176985) +station = ('klua', 0.0038964504636839013) +zone = ('vaz027', 0.0007400895440681861) + +[22701] +centroid = (0.67088321908986837, -1.3612915586948451) +station = ('kcjr', 0.0024239484510236295) +zone = ('vaz051', 0.00099318827286955214) + +[22709] +centroid = (0.66896255406121863, -1.3650872309389122) +station = ('komh', 0.0027077609135142569) +zone = ('vaz039', 0.0017325252680669347) + +[22711] +centroid = (0.67137875297109462, -1.3661560356662483) +station = ('klua', 0.0046528950629933473) +zone = ('vaz039', 0.00093499571994235908) + +[22712] +centroid = (0.67306891236543342, -1.3571199774364833) +station = ('khwy', 0.0005798476416511558) +zone = ('vaz502', 0.00079010920618960304) + +[22713] +centroid = (0.67301145612645774, -1.3634305469596266) +station = ('kcjr', 0.0035976334488765924) +zone = ('vaz040', 0.0022298504300011465) + +[22714] +centroid = (0.67229508573497676, -1.3595315337705489) +station = ('kcjr', 0.00051353354715360556) +zone = ('vaz051', 0.0010127780309012355) + +[22715] +centroid = (0.67039311318261585, -1.364596130193986) +station = ('komh', 0.0034375733364739184) +zone = ('vaz039', 0.0012811345544673216) + +[22716] +centroid = (0.67420775715565218, -1.3631722905902088) +station = ('kcjr', 0.0037937671514081252) +zone = ('vaz040', 0.0012236149641612038) + +[22718] +centroid = (0.67155349533580433, -1.358345425464186) +station = ('kcjr', 0.00096448777210273449) +zone = ('vaz051', 0.0017617111738963682) + +[22719] +centroid = (0.67256068994054519, -1.366265589983396) +station = ('klua', 0.0037777087034291546) +zone = ('vaz039', 0.0021153328980981125) + +[22720] +centroid = (0.67153197542612719, -1.3551064608916275) +station = ('khwy', 0.0021061136062970952) +zone = ('vaz502', 0.002312286473914705) + +[22722] +centroid = (0.67136292283477905, -1.3653199007814956) +station = ('komh', 0.0045592080890447442) +zone = ('vaz039', 0.0011616722310508565) + +[22723] +centroid = (0.66906507470148091, -1.3679953683517552) +station = ('kcho', 0.0036402751277778791) +zone = ('vaz038', 0.0013487910136356018) + +[22724] +centroid = (0.67395269473876585, -1.359506435935905) +station = ('kcjr', 0.001608445992482782) +zone = ('vaz051', 0.0023974457424281214) + +[22726] +centroid = (0.6702493329588366, -1.3582267430750505) +station = ('kcjr', 0.0022299116091935465) +zone = ('vaz051', 0.0023555734550588705) + +[22727] +centroid = (0.67033897306921908, -1.3665106342103761) +station = ('komh', 0.0044188549277120572) +zone = ('vaz039', 0.00024451971064430822) + +[22728] +centroid = (0.67363809914109385, -1.3556890867025282) +station = ('khwy', 0.00067574352447070116) +zone = ('vaz502', 0.00054798822124679911) + +[22729] +centroid = (0.66975603309905296, -1.3616667521241461) +station = ('komh', 0.0022485354968522137) +zone = ('vaz051', 0.0021283772188091707) + +[22730] +centroid = (0.66977374819096058, -1.364125135642043) +station = ('komh', 0.002717913265361944) +zone = ('vaz039', 0.0017810730521121646) + +[22731] +centroid = (0.66909926570152745, -1.3658480897730265) +station = ('komh', 0.0032935121191391852) +zone = ('vaz039', 0.0013791299510527272) + +[22732] +centroid = (0.66871644518339501, -1.3646709175524341) +station = ('komh', 0.0023008995561668273) +zone = ('vaz039', 0.0021174813893955328) + +[22733] +centroid = (0.669047324702988, -1.362154850902759) +station = ('komh', 0.0015073689493877733) +zone = ('vaz050', 0.0015865094071936432) + +[22734] +centroid = (0.67240877648245156, -1.35777128195345) +station = ('kcjr', 0.00087833716983123033) +zone = ('vaz502', 0.001619375237407888) + +[22735] +centroid = (0.67154798009536798, -1.3643981924035173) +station = ('komh', 0.004377953924578815) +zone = ('vaz039', 0.0018091871838981902) + +[22736] +centroid = (0.67017440597404843, -1.3562005379865325) +station = ('kcjr', 0.0030786208699113446) +zone = ('vaz502', 0.003443835408267966) + +[22737] +centroid = (0.67335689169201252, -1.3616195933277573) +station = ('kcjr', 0.002329462632686222) +zone = ('vaz051', 0.0018350212326142803) + +[22738] +centroid = (0.66835517948152467, -1.3662599874764971) +station = ('komh', 0.0033266617001703096) +zone = ('vaz039', 0.0020904976465286628) + +[22740] +centroid = (0.6744945322050474, -1.3663650912040524) +station = ('klua', 0.00293543086353285) +zone = ('vaz040', 0.0018668413972100239) + +[22741] +centroid = (0.67071168813098248, -1.3590641869567421) +station = ('kcjr', 0.0017106932474327265) +zone = ('vaz051', 0.0015547247124185674) + +[22742] +centroid = (0.67136414456525539, -1.3563838848244547) +station = ('khwy', 0.0019850217200478512) +zone = ('vaz502', 0.0022509206845752069) + +[22743] +centroid = (0.67263788585336093, -1.3680059974068999) +station = ('klua', 0.0027627076925797666) +zone = ('vaz029', 0.0019907699114820768) + +[22747] +centroid = (0.6756004775388661, -1.364248373340526) +station = ('kcjr', 0.0052569295311945922) +zone = ('vaz040', 0.00043728932703853985) + +[22749] +centroid = (0.67404013573429067, -1.364502510732909) +station = ('kcjr', 0.0046755435339813313) +zone = ('vaz040', 0.0011671767215276961) + +[22801] +centroid = (0.67027005001705764, -1.3766306291720924) +station = ('kshd', 0.0024148555869264472) +zone = ('vaz026', 0.0018667334433476203) + +[22802] +centroid = (0.67185555946944686, -1.3764197933984514) +station = ('kshd', 0.0040082492156953732) +zone = ('vaz026', 0.00033008277189692581) + +[22807] +centroid = (0.67079932111272511, -1.3765040055348601) +station = ('kshd', 0.0029529254099174623) +zone = ('vaz026', 0.0013417184970835789) + +[22810] +centroid = (0.67766057692145765, -1.3752589574596574) +station = ('klua', 0.0049020947462630948) +zone = ('wvz055', 0.0032571363038439213) + +[22811] +centroid = (0.67739036504666383, -1.378664251909931) +station = ('kw99', 0.0035619024239959994) +zone = ('wvz055', 0.003871482313694764) + +[22812] +centroid = (0.66982682365351376, -1.3792832154758585) +station = ('kshd', 0.0026118690420647251) +zone = ('vaz026', 0.0031015144060129759) + +[22815] +centroid = (0.6756607437579375, -1.3760386833029861) +station = ('klua', 0.0047076734112452782) +zone = ('vaz026', 0.0035552319564574907) + +[22820] +centroid = (0.67552682464443203, -1.3791425593914401) +station = ('kw99', 0.0051029264826059975) +zone = ('wvz506', 0.0038694168830212127) + +[22821] +centroid = (0.67153178343990949, -1.3810784785977523) +station = ('kshd', 0.0048210460727199688) +zone = ('wvz506', 0.0036642571934801713) + +[22824] +centroid = (0.67781735984816438, -1.3723841907421126) +station = ('klua', 0.003448625243957349) +zone = ('vaz027', 0.00092210168091134178) + +[22827] +centroid = (0.67039351460834384, -1.3717662045605665) +station = ('klua', 0.0046612720346974239) +zone = ('vaz038', 0.0026520066756290728) + +[22830] +centroid = (0.67474104250859901, -1.3783256405817517) +station = ('kw99', 0.0060564819318987351) +zone = ('vaz026', 0.0029183966049282574) + +[22831] +centroid = (0.67328510629987792, -1.3801388631416487) +station = ('kshd', 0.0059180148068786491) +zone = ('wvz506', 0.0031665538393300923) + +[22832] +centroid = (0.67116489777784771, -1.3746161177895631) +station = ('kshd', 0.003805459385261997) +zone = ('vaz026', 0.0018590695099541536) + +[22834] +centroid = (0.67298597431937857, -1.3763674509741841) +station = ('kshd', 0.0051357950161848359) +zone = ('vaz026', 0.00087568692161872131) + +[22835] +centroid = (0.67493440753642753, -1.3692704535433846) +station = ('klua', 0.00064620112277389999) +zone = ('vaz029', 0.00098179119726787226) + +[22840] +centroid = (0.67057939217368123, -1.3738666734087568) +station = ('kshd', 0.0036853467920956689) +zone = ('vaz026', 0.0026726165830461652) + +[22841] +centroid = (0.66919052896811426, -1.3769336881434087) +station = ('kshd', 0.0013152311284070559) +zone = ('vaz026', 0.0029551674180638768) + +[22842] +centroid = (0.676804615096402, -1.3735682046533733) +station = ('klua', 0.0033318303686785452) +zone = ('vaz027', 0.002249746212123109) + +[22843] +centroid = (0.66974227990454727, -1.3813824975001572) +station = ('kshd', 0.0038659771132211903) +zone = ('vaz025', 0.0036810047134032665) + +[22844] +centroid = (0.67467197983009763, -1.3729048748178601) +station = ('klua', 0.0022038363758457688) +zone = ('vaz029', 0.0025001801159757757) + +[22845] +centroid = (0.6769491458117598, -1.3756059114616614) +station = ('kw99', 0.0055100539092371864) +zone = ('wvz055', 0.003901080151433809) + +[22846] +centroid = (0.66983593427220911, -1.3751570127780486) +station = ('kshd', 0.0024634172993690568) +zone = ('vaz026', 0.0025776141388796515) + +[22847] +centroid = (0.67597713704473905, -1.3738775468099964) +station = ('klua', 0.0031547363622320425) +zone = ('vaz027', 0.0029963220549662963) + +[22849] +centroid = (0.67240006728948409, -1.3722124503437165) +station = ('klua', 0.0029715548148005473) +zone = ('vaz029', 0.0024998823449136507) + +[22850] +centroid = (0.67299332215552954, -1.3774896627766315) +station = ('kshd', 0.0051248198701309127) +zone = ('vaz026', 0.0010838481693556641) + +[22851] +centroid = (0.67305224447107681, -1.3703087324621035) +station = ('klua', 0.0018229512694210139) +zone = ('vaz029', 0.0010687811567883375) + +[22853] +centroid = (0.67457415412552346, -1.3745919973393004) +station = ('klua', 0.0035249015967892491) +zone = ('vaz026', 0.0029164522014799477) + +[22901] +centroid = (0.66475512374002099, -1.3710741989654434) +station = ('kcho', 0.0016688327941188949) +zone = ('vaz037', 0.0011269710243107887) + +[22902] +centroid = (0.66166079460257521, -1.3704737009830019) +station = ('kcho', 0.0040165898533079418) +zone = ('vaz037', 0.0020196455789967026) + +[22903] +centroid = (0.66334124996627286, -1.3717641101654641) +station = ('kcho', 0.002988135431793713) +zone = ('vaz037', 0.00063011559358134921) + +[22904] +centroid = (0.66383254269741676, -1.370509951471566) +station = ('kcho', 0.0020007368147860758) +zone = ('vaz037', 0.00047339848432083087) + +[22911] +centroid = (0.66491941158251122, -1.3685145688976386) +station = ('kcho', 0.0008369610114038361) +zone = ('vaz037', 0.0023788482077295361) + +[22920] +centroid = (0.66268371462387665, -1.3754119181153022) +station = ('kshd', 0.0053558714963028702) +zone = ('vaz036', 0.0033617240039884983) + +[22922] +centroid = (0.6578791897122791, -1.3774446507352225) +station = ('klyh', 0.007625174717928348) +zone = ('vaz036', 0.0017054647513091777) + +[22923] +centroid = (0.66651202452495617, -1.3669145383058725) +station = ('kcho', 0.0020447636390803982) +zone = ('vaz038', 0.0027902987956557519) + +[22931] +centroid = (0.66146125110919474, -1.3740549769817545) +station = ('kcho', 0.0055947358330549523) +zone = ('vaz036', 0.0029327702394753444) + +[22932] +centroid = (0.66579959857758442, -1.3735123017574318) +station = ('kshd', 0.0034810272984576317) +zone = ('vaz037', 0.0029093305224858943) + +[22935] +centroid = (0.6676569430609719, -1.3711778017098417) +station = ('kcho', 0.0026114582927284323) +zone = ('vaz038', 0.0015187779861732329) + +[22936] +centroid = (0.66601760765445117, -1.3700682435444713) +station = ('kcho', 0.00081932614372779951) +zone = ('vaz038', 0.0024436334856360259) + +[22937] +centroid = (0.6597043154176746, -1.3720728938167268) +station = ('kcho', 0.0062681228375876252) +zone = ('vaz037', 0.0040057648748617171) + +[22938] +centroid = (0.66088396600580512, -1.3752239287015702) +station = ('kcho', 0.0066517108743555809) +zone = ('vaz036', 0.0018681388174679298) + +[22939] +centroid = (0.66507118541426469, -1.3783581909723015) +station = ('kshd', 0.0029865014736164476) +zone = ('vaz025', 0.0023480511479530364) + +[22940] +centroid = (0.66601313961156605, -1.3710636571767614) +station = ('kcho', 0.0015283104764835596) +zone = ('vaz037', 0.0023848700804497041) + +[22942] +centroid = (0.66499838773116404, -1.3648852439845789) +station = ('komh', 0.0033281755259646135) +zone = ('vaz050', 0.0036174533574469471) + +[22943] +centroid = (0.66385039741566476, -1.3748665550839316) +station = ('kshd', 0.00438411678296488) +zone = ('vaz037', 0.0030128051107568272) + +[22946] +centroid = (0.66075695839613746, -1.3713293137422073) +station = ('kcho', 0.0050775760981060418) +zone = ('vaz037', 0.0028796381628062124) + +[22947] +centroid = (0.66402102080333969, -1.3670752482233963) +station = ('kcho', 0.0022736752207095741) +zone = ('vaz048', 0.0036218996786480154) + +[22948] +centroid = (0.66956776443264032, -1.3636113805234258) +station = ('komh', 0.0023288732062880448) +zone = ('vaz050', 0.0025868760770917619) + +[22949] +centroid = (0.65956020358133749, -1.3767051198245674) +station = ('kshd', 0.008323946014597846) +zone = ('vaz036', 0.00011064455264674082) + +[22952] +centroid = (0.66258915268500362, -1.3781598168495197) +station = ('kshd', 0.0053598693683618373) +zone = ('vaz036', 0.0032481777694494474) + +[22958] +centroid = (0.66147973414597327, -1.3770414622247193) +station = ('kshd', 0.0063996192687248163) +zone = ('vaz036', 0.0019720942875059936) + +[22959] +centroid = (0.66212950277319838, -1.3728155314134507) +station = ('kcho', 0.0044470262438600916) +zone = ('vaz037', 0.0020441008284913316) + +[22960] +centroid = (0.66704731700654263, -1.3626368235756972) +station = ('komh', 0.0006227185308173924) +zone = ('vaz050', 0.00094992351072134996) + +[22963] +centroid = (0.66057432714320874, -1.3666817113836565) +station = ('kcho', 0.0053621126445309673) +zone = ('vaz048', 0.00039683247748261135) + +[22964] +centroid = (0.6581536078305702, -1.3784200279876995) +station = ('klyh', 0.0075143428356699536) +zone = ('vaz036', 0.001851364668512951) + +[22967] +centroid = (0.65968742063051533, -1.3790558863407862) +station = ('kshd', 0.008340680268856494) +zone = ('vaz036', 0.0017653670800617427) + +[22968] +centroid = (0.66742441284472864, -1.368353632087312) +station = ('kcho', 0.0019897268717494368) +zone = ('vaz038', 0.0013458497943466276) + +[22969] +centroid = (0.65969050986329136, -1.3734586154296404) +station = ('kcho', 0.0067509053654621768) +zone = ('vaz036', 0.0026720836184636792) + +[22971] +centroid = (0.6587766380136546, -1.3752003667566681) +station = ('kcho', 0.0082596675385538249) +zone = ('vaz036', 0.001486439235349584) + +[22972] +centroid = (0.66699111740462846, -1.3653760480235322) +station = ('komh', 0.0025914002968823145) +zone = ('vaz050', 0.0030208275191727016) + +[22973] +centroid = (0.66908804323443705, -1.3697170483923851) +station = ('kcho', 0.0035581120899390722) +zone = ('vaz038', 0.00068737229560109124) + +[22974] +centroid = (0.66274757622120706, -1.3663212136266574) +station = ('kcho', 0.0036115601455392631) +zone = ('vaz048', 0.002283883931177586) + +[22976] +centroid = (0.65995768486518669, -1.3798001994535918) +station = ('kshd', 0.0082093643902137747) +zone = ('vaz036', 0.0023863261437375911) + +[22980] +centroid = (0.66496796664230173, -1.3767252958307206) +station = ('kshd', 0.0029235640841076748) +zone = ('vaz025', 0.003583211820749829) + +[22989] +centroid = (0.66826344497603984, -1.3636620823381962) +station = ('komh', 0.0013889735828501192) +zone = ('vaz050', 0.0017865773634826957) + +[23002] +centroid = (0.65189897610995318, -1.3607961295333739) +station = ('kfvx', 0.0064579277676415211) +zone = ('vaz068', 0.00028655408000796906) + +[23004] +centroid = (0.65779508229562555, -1.3683245549019738) +station = ('kfvx', 0.0059334262349006609) +zone = ('vaz047', 0.0027111390657787271) + +[23005] +centroid = (0.65903101975213274, -1.3523137421022189) +station = ('kofp', 0.0012387217533243284) +zone = ('vaz063', 0.0001247979180926554) + +[23009] +centroid = (0.66009989429263916, -1.3470654672283018) +station = ('kxsa', 0.0041821978455853738) +zone = ('vaz072', 0.002369305991556222) + +[23011] +centroid = (0.65411992503640848, -1.3405972246605333) +station = ('kfyj', 0.00098275584866172995) +zone = ('vaz090', 0.0026980816071698836) + +[23015] +centroid = (0.66199638651114878, -1.3548370867748747) +station = ('kofp', 0.0048112209927054887) +zone = ('vaz063', 0.0034988099539237671) + +[23021] +centroid = (0.65257769974946878, -1.3329694202443245) +station = ('kphf', 0.0048110251261800638) +zone = ('vaz086', 0.001262564308467831) + +[23022] +centroid = (0.65853024988315056, -1.3659497377486627) +station = ('klku', 0.0063203074560917328) +zone = ('vaz048', 0.0019454480864922147) + +[23023] +centroid = (0.65942597030856653, -1.3432481529015099) +station = ('kxsa', 0.0016393413150240196) +zone = ('vaz073', 0.0014632386685112712) + +[23024] +centroid = (0.66196415027986433, -1.35750442111082) +station = ('klku', 0.0029922387733714974) +zone = ('vaz049', 0.0026773915675633404) + +[23025] +centroid = (0.65301197257395005, -1.3327934561491386) +station = ('kphf', 0.005266410186240268) +zone = ('vaz086', 0.000807121563229298) + +[23027] +centroid = (0.65703509612613709, -1.3636647352386593) +station = ('kfvx', 0.0066297354537746102) +zone = ('vaz061', 0.0028015562428149372) + +[23030] +centroid = (0.65181921456313718, -1.3448601040920667) +station = ('kric', 0.0046896330751701612) +zone = ('vaz082', 0.0028307300196476945) + +[23032] +centroid = (0.65713330580314677, -1.3381109333278973) +station = ('kfyj', 0.0026290130795943037) +zone = ('vaz085', 0.0026148770001193258) + +[23035] +centroid = (0.65435728981467978, -1.3332261581772931) +station = ('kjgg', 0.0063332210934110879) +zone = ('vaz086', 0.00087961724044858245) + +[23038] +centroid = (0.65891361145335114, -1.3639644257245191) +station = ('klku', 0.0051156627462610252) +zone = ('vaz048', 0.0023505570760393524) + +[23039] +centroid = (0.65723104424125856, -1.3580837133428496) +station = ('kfci', 0.006130137881821273) +zone = ('vaz062', 0.0018343752150141474) + +[23040] +centroid = (0.65456934731879712, -1.3656439735170058) +station = ('kfvx', 0.0037413749589890548) +zone = ('vaz061', 0.00013884119990428123) + +[23043] +centroid = (0.6556039261395018, -1.3325633344872632) +station = ('kfyj', 0.005779064397853622) +zone = ('vaz086', 0.0018476205969852073) + +[23045] +centroid = (0.6531955463046748, -1.3311418161713915) +station = ('kphf', 0.0060236051166700534) +zone = ('vaz086', 0.0011559970983919809) + +[23047] +centroid = (0.66049165089654183, -1.3521749360668078) +station = ('kofp', 0.0025643915100037706) +zone = ('vaz063', 0.0014723268062597115) + +[23050] +centroid = (0.65447942795573433, -1.3340793798354229) +station = ('kfyj', 0.0045482943820518039) +zone = ('vaz086', 0.0015058513786484246) + +[23055] +centroid = (0.65921872991318475, -1.3652296672591673) +station = ('klku', 0.0054269092958090714) +zone = ('vaz048', 0.0014631558837950817) + +[23056] +centroid = (0.65199357295541127, -1.3327789873696396) +station = ('kphf', 0.0043372762015724039) +zone = ('vaz086', 0.0017904764339576028) + +[23059] +centroid = (0.65802811865735178, -1.3539218186618363) +station = ('kofp', 0.0019429747764065589) +zone = ('vaz063', 0.0015283955115085346) + +[23060] +centroid = (0.65722422000388325, -1.3532896778600565) +station = ('kofp', 0.0016330862661089118) +zone = ('vaz063', 0.0019259278572728597) + +[23061] +centroid = (0.65324972132465664, -1.3358514998914355) +station = ('kfyj', 0.003520886052220281) +zone = ('vaz084', 0.0018621938912896784) + +[23062] +centroid = (0.65025852369271131, -1.3352107022565656) +station = ('kphf', 0.002159762860070598) +zone = ('vaz091', 0.00076443578125429601) + +[23063] +centroid = (0.6582082191828651, -1.3614638052387242) +station = ('klku', 0.0052100558521895957) +zone = ('vaz062', 0.0012497577641259786) + +[23064] +centroid = (0.65442497368307218, -1.331676305801522) +station = ('kphf', 0.0069115722539923293) +zone = ('vaz086', 0.0008849089934107868) + +[23065] +centroid = (0.65983846142398295, -1.3601774626734195) +station = ('klku', 0.0035943307066135725) +zone = ('vaz062', 0.0014819543519138593) + +[23066] +centroid = (0.65444715681786492, -1.3313996711150808) +station = ('kphf', 0.0070231253843045871) +zone = ('vaz086', 0.0010572058527751451) + +[23068] +centroid = (0.65452121113802708, -1.3322911154838297) +station = ('kphf', 0.0068200270433631431) +zone = ('vaz086', 0.00076706582467878093) + +[23069] +centroid = (0.65923768418886142, -1.3495300641183356) +station = ('kofp', 0.0019759567401905417) +zone = ('vaz063', 0.0023336954922367368) + +[23070] +centroid = (0.65540951391412217, -1.3332393005065606) +station = ('kfyj', 0.0052245414919343093) +zone = ('vaz086', 0.0017750187256773584) + +[23071] +centroid = (0.65529137257705461, -1.3342793596611167) +station = ('kfyj', 0.004392317009091878) +zone = ('vaz085', 0.0014752096664204131) + +[23072] +centroid = (0.65087134369967148, -1.334277265266014) +station = ('kphf', 0.0028634907720059572) +zone = ('vaz084', 0.00098534338896807527) + +[23075] +centroid = (0.65550859625575786, -1.349368848055329) +station = ('kric', 0.00072089272191108765) +zone = ('vaz071', 0.001526345621896728) + +[23076] +centroid = (0.65410611948202524, -1.3318058441386051) +station = ('kphf', 0.0065784531104974989) +zone = ('vaz086', 0.00059273598447910376) + +[23079] +centroid = (0.65852264024761187, -1.3381673772759066) +station = ('kxsa', 0.0035535214120816262) +zone = ('vaz073', 0.0030899691197360962) + +[23083] +centroid = (0.65119018044742583, -1.3634618756196999) +station = ('kfvx', 0.0043945286195782116) +zone = ('vaz068', 0.0020546954288689291) + +[23084] +centroid = (0.66121781258512657, -1.3633652890988945) +station = ('klku', 0.002951432333398164) +zone = ('vaz049', 0.0026512979670120698) + +[23085] +centroid = (0.6582248870772216, -1.3409633249244317) +station = ('kxsa', 0.0024742492476164221) +zone = ('vaz073', 0.00087402150770927653) + +[23086] +centroid = (0.65741704397964362, -1.3448651306403125) +station = ('kxsa', 0.0040017450563250827) +zone = ('vaz072', 0.00082845744761222528) + +[23089] +centroid = (0.65382028691042615, -1.3422398761926326) +station = ('kfyj', 0.0022061048168761904) +zone = ('vaz083', 0.0014943892569310605) + +[23091] +centroid = (0.6572174481263855, -1.3404068266924332) +station = ('kfyj', 0.0024004313654451114) +zone = ('vaz073', 0.0017014670339244257) + +[23092] +centroid = (0.65634605759074227, -1.3354181869980428) +station = ('kfyj', 0.0037695831771952931) +zone = ('vaz085', 0.00056535352967729236) + +[23093] +centroid = (0.66332796801066529, -1.3620918270634694) +station = ('klku', 0.00099013017797794692) +zone = ('vaz049', 0.0011907004849767717) + +[23102] +centroid = (0.65810351688103785, -1.3584288347491389) +station = ('klku', 0.0056228015085959468) +zone = ('vaz062', 0.0011928556635595491) + +[23103] +centroid = (0.65708215020277094, -1.3565334246347656) +station = ('kofp', 0.0041116608460511255) +zone = ('vaz062', 0.0029589153167971964) + +[23106] +centroid = (0.65827024818448099, -1.3474205544646201) +station = ('kric', 0.0038276817339830127) +zone = ('vaz072', 0.0015703672631480683) + +[23108] +centroid = (0.65706000197456305, -1.339368669946762) +station = ('kfyj', 0.0022186205700447368) +zone = ('vaz073', 0.0024680816086341505) + +[23109] +centroid = (0.65330171468307363, -1.3322447246323115) +station = ('kphf', 0.0057019134156211012) +zone = ('vaz086', 0.00047738913803550175) + +[23110] +centroid = (0.65594395118437521, -1.3399086050041589) +station = ('kfyj', 0.0010809628357756459) +zone = ('vaz073', 0.0029103895743081754) + +[23111] +centroid = (0.65647945310547218, -1.3481434523875035) +station = ('kric', 0.0019740956020664027) +zone = ('vaz072', 0.002684141164092864) + +[23112] +centroid = (0.653336167482508, -1.3554726484219886) +station = ('kfci', 0.002197727235079975) +zone = ('vaz070', 0.001482245221056201) + +[23113] +centroid = (0.65517646009910324, -1.3557652703243777) +station = ('kfci', 0.0033754607794858303) +zone = ('vaz070', 0.0031308561351147701) + +[23114] +centroid = (0.654188254676624, -1.3554187002948093) +station = ('kfci', 0.0025233063992583034) +zone = ('vaz070', 0.0021266069825970312) + +[23115] +centroid = (0.65992618167218819, -1.3424118783904169) +station = ('kxsa', 0.00083085562487392921) +zone = ('vaz073', 0.0016477584263461013) + +[23116] +centroid = (0.65756717720190005, -1.3497783546577242) +station = ('kofp', 0.0014010595123893704) +zone = ('vaz063', 0.0025887163889346137) + +[23117] +centroid = (0.66283203270371105, -1.3591596913734116) +station = ('klku', 0.0014374362850521577) +zone = ('vaz049', 0.0012229173360048162) + +[23119] +centroid = (0.65359393515973507, -1.3312879002297835) +station = ('kphf', 0.0063061560591447024) +zone = ('vaz086', 0.00090794173879380109) + +[23120] +centroid = (0.65313894527703265, -1.3575400258275607) +station = ('kfci', 0.0037809881882846061) +zone = ('vaz070', 0.0028559065949023714) + +[23123] +centroid = (0.65714847271434662, -1.3666127359716178) +station = ('kfvx', 0.0055769228675982404) +zone = ('vaz061', 0.002561120751123093) + +[23124] +centroid = (0.65531633078535811, -1.3446397039141249) +station = ('kric', 0.0038354700356987548) +zone = ('vaz083', 0.00095724413370053101) + +[23125] +centroid = (0.65144377678774057, -1.3314463063126942) +station = ('klfi', 0.0043096026328999218) +zone = ('vaz086', 0.0024402464568597741) + +[23126] +centroid = (0.66188925820166133, -1.3464223133989419) +station = ('kxsa', 0.0038600030909669092) +zone = ('vaz064', 0.0033305430168977957) + +[23128] +centroid = (0.6534051079879617, -1.3339671551645198) +station = ('kjgg', 0.0052556124195366673) +zone = ('vaz086', 0.0012844905259091972) + +[23129] +centroid = (0.65766851101827084, -1.3573498896588485) +station = ('kofp', 0.0046665845420530913) +zone = ('vaz062', 0.0021354428869650704) + +[23130] +centroid = (0.65253123908478072, -1.330978296273772) +station = ('klfi', 0.0054521838118057079) +zone = ('vaz086', 0.0016754917036110404) + +[23138] +centroid = (0.65176088565953538, -1.3317509011737525) +station = ('kphf', 0.0045660936815835277) +zone = ('vaz086', 0.0020671929865324558) + +[23139] +centroid = (0.65529563118042944, -1.3602673296766048) +station = ('kfci', 0.0064453054807556845) +zone = ('vaz069', 0.00031956412833444506) + +[23140] +centroid = (0.65336423237688002, -1.3445721771253651) +station = ('kric', 0.0041104875211909718) +zone = ('vaz083', 0.0013508938909219833) + +[23141] +centroid = (0.65499920446027071, -1.3466287509428678) +station = ('kric', 0.0022319090320258713) +zone = ('vaz083', 0.0022382072531887051) + +[23146] +centroid = (0.65853873218331527, -1.3561998747614168) +station = ('kofp', 0.0037843895605831086) +zone = ('vaz063', 0.002990262751320377) + +[23148] +centroid = (0.66054477871897255, -1.3448571719389235) +station = ('kxsa', 0.002407660486811299) +zone = ('vaz072', 0.0024827855449905999) + +[23149] +centroid = (0.65581917759615016, -1.3370842259421192) +station = ('kfyj', 0.0023487625735566682) +zone = ('vaz085', 0.0019704794056363056) + +[23150] +centroid = (0.65451829643817627, -1.3483124351656817) +station = ('kric', 0.00092733552800245941) +zone = ('vaz071', 0.0023966314863057528) + +[23153] +centroid = (0.65922490837873693, -1.3604363124547827) +station = ('klku', 0.0041819285995050469) +zone = ('vaz062', 0.0009523390967674548) + +[23156] +centroid = (0.65486744955503773, -1.3387830421695479) +station = ('kfyj', 0.00080047482201610776) +zone = ('vaz090', 0.0035266996536169599) + +[23160] +centroid = (0.65673533582710708, -1.3586675434309341) +station = ('kfci', 0.0061224379734633461) +zone = ('vaz069', 0.0016642375815192506) + +[23161] +centroid = (0.65826604194098359, -1.3427703166588989) +station = ('kxsa', 0.0024612480610058953) +zone = ('vaz073', 0.00055989554756167637) + +[23163] +centroid = (0.65201470889265301, -1.3318536836134023) +station = ('kphf', 0.00472563104871485) +zone = ('vaz086', 0.0018009996379334315) + +[23168] +centroid = (0.6526726631140698, -1.3408368758201246) +station = ('kfyj', 0.0023457051710584955) +zone = ('vaz090', 0.0013881542925126339) + +[23169] +centroid = (0.65625219378357003, -1.3344439093029945) +station = ('kfyj', 0.0044602774985362309) +zone = ('vaz085', 0.00054927325371253684) + +[23173] +centroid = (0.65585417144765268, -1.3532754010667751) +station = ('kofp', 0.0025709166362383358) +zone = ('vaz071', 0.0017729093484323644) + +[23175] +centroid = (0.65720172270982502, -1.3373737586117325) +station = ('kfyj', 0.0030206331091511855) +zone = ('vaz085', 0.0020575235818096017) + +[23176] +centroid = (0.6558316217937169, -1.3336863840477515) +station = ('kfyj', 0.0049361690411347317) +zone = ('vaz085', 0.0012657694769820579) + +[23177] +centroid = (0.65889003205515673, -1.3441560731783975) +station = ('kxsa', 0.0025273114334035084) +zone = ('vaz072', 0.0012868909438842144) + +[23180] +centroid = (0.65801363242456024, -1.337247798199616) +station = ('kfyj', 0.0037369382185575241) +zone = ('vaz085', 0.0023079948362914444) + +[23181] +centroid = (0.6562011254496567, -1.3419611122045041) +station = ('kfyj', 0.0021762230920371697) +zone = ('vaz073', 0.0021019936442886254) + +[23185] +centroid = (0.64984643400302289, -1.3389649752907757) +station = ('kjgg', 0.00010104062186085733) +zone = ('vaz090', 0.0018077766346261512) + +[23187] +centroid = (0.65046424565164385, -1.3390330256783107) +station = ('kjgg', 0.00052301224152114694) +zone = ('vaz090', 0.0012496596311779367) + +[23188] +centroid = (0.65186136426457275, -1.3398814825875829) +station = ('kjgg', 0.0020554118292752596) +zone = ('vaz090', 0.00039873769279242551) + +[23192] +centroid = (0.66008985864944014, -1.3557859699293064) +station = ('kofp', 0.0040092254858952285) +zone = ('vaz063', 0.0028226903481916588) + +[23219] +centroid = (0.65519256948809923, -1.3515049216202597) +station = ('kric', 0.0016938960062331714) +zone = ('vaz071', 0.00022374670861529704) + +[23220] +centroid = (0.65535977203044027, -1.3519426152900746) +station = ('kric', 0.0020722462302626412) +zone = ('vaz071', 0.00060699005251046501) + +[23221] +centroid = (0.65542883470894164, -1.3525177361851919) +station = ('kric', 0.0025303386295889093) +zone = ('vaz071', 0.0010607995631168341) + +[23222] +centroid = (0.65594653427166827, -1.3512148304452858) +station = ('kric', 0.0018277151573076564) +zone = ('vaz071', 0.0008163956531773098) + +[23223] +centroid = (0.65551608371824888, -1.3505040625607037) +station = ('kric', 0.0011193545484877313) +zone = ('vaz071', 0.00069547852633533558) + +[23224] +centroid = (0.65445469664023359, -1.3520391145444175) +station = ('kfci', 0.0018068518318307934) +zone = ('vaz071', 0.00092968298787875735) + +[23225] +centroid = (0.65482351961776508, -1.3528559635409358) +station = ('kfci', 0.0020707791753557993) +zone = ('vaz071', 0.0013224613482397771) + +[23226] +centroid = (0.65589319700972726, -1.3530376523160685) +station = ('kofp', 0.0024373295169327685) +zone = ('vaz071', 0.0016206915272571445) + +[23227] +centroid = (0.65644088132900313, -1.3515513473783627) +station = ('kofp', 0.0015496991762786547) +zone = ('vaz071', 0.0013345330886552094) + +[23228] +centroid = (0.65670835303687125, -1.3525051000014074) +station = ('kofp', 0.0015219057228193144) +zone = ('vaz071', 0.0018722132237722275) + +[23229] +centroid = (0.65601292659641419, -1.3539245937353468) +station = ('kofp', 0.0027737022401882736) +zone = ('vaz071', 0.0023083230163547085) + +[23230] +centroid = (0.65600781278170572, -1.3524453573811117) +station = ('kofp', 0.0021274929106222351) +zone = ('vaz071', 0.0013008754510709535) + +[23231] +centroid = (0.65347087199417686, -1.3494072802054577) +station = ('kric', 0.001318613362101392) +zone = ('vaz071', 0.0022032550007903412) + +[23233] +centroid = (0.65705417257486143, -1.3547984800918205) +station = ('kofp', 0.0027980284883037218) +zone = ('vaz063', 0.0027066355690590765) + +[23234] +centroid = (0.65365064090713232, -1.3521180906930701) +station = ('kfci', 0.0010501544586498384) +zone = ('vaz071', 0.0016375193617128563) + +[23235] +centroid = (0.65475276396988913, -1.3537604106126118) +station = ('kfci', 0.0021387005488926422) +zone = ('vaz070', 0.00242372981854718) + +[23236] +centroid = (0.65407627435181614, -1.3541186743481688) +station = ('kfci', 0.0016849861799560981) +zone = ('vaz070', 0.0017334630430700148) + +[23237] +centroid = (0.65276846423671175, -1.3517409948548844) +station = ('kfci', 0.00084515944761008024) +zone = ('vaz070', 0.0019123283039549541) + +[23238] +centroid = (0.65616560799937862, -1.3552106221413864) +station = ('kofp', 0.0034803829096282475) +zone = ('vaz063', 0.0035988028705438032) + +[23250] +centroid = (0.6545819485959965, -1.3495042681519911) +station = ('kric', 0.0002155270930012351) +zone = ('vaz071', 0.0014773642429649063) + +[23294] +centroid = (0.65676608852852725, -1.3533606254941501) +station = ('kofp', 0.0019348643930180574) +zone = ('vaz071', 0.0023486830707159143) + +[23301] +centroid = (0.65766203584674598, -1.3200529714886007) +station = ('kmfv', 0.0019194752318101253) +zone = ('vaz099', 0.001489384921408496) + +[23302] +centroid = (0.66088061497364126, -1.3180886208687734) +station = ('kwal', 0.0013974352233974588) +zone = ('vaz099', 0.0024625092749292893) + +[23303] +centroid = (0.6616779686424149, -1.317810363026128) +station = ('kwal', 0.00065213478925917436) +zone = ('vaz099', 0.0032074990037363536) + +[23304] +centroid = (0.64570436626231242, -1.3364353823393977) +station = ('kfaf', 0.0024736712015964481) +zone = ('vaz094', 0.0016868130273246899) + +[23306] +centroid = (0.65556687279948189, -1.3242207130226078) +station = ('kmfv', 0.0021290535672296418) +zone = ('vaz100', 0.0035910933961818214) + +[23307] +centroid = (0.65331257063102111, -1.3242048654329999) +station = ('kmfv', 0.0040704257901675615) +zone = ('vaz100', 0.0013735335676617656) + +[23308] +centroid = (0.66037672096529798, -1.3204076572991907) +station = ('kwal', 0.0030793602124737428) +zone = ('vaz099', 0.0012407496932455863) + +[23310] +centroid = (0.65029210382751956, -1.3258159265056382) +station = ('klfi', 0.0061861618066324257) +zone = ('vaz100', 0.0019223338324658454) + +[23313] +centroid = (0.64922034949374752, -1.3254421991529086) +station = ('klfi', 0.0060133679526161807) +zone = ('vaz100', 0.0028380937992328772) + +[23314] +centroid = (0.64505545284642096, -1.3356038725771626) +station = ('kphf', 0.0030624981823191501) +zone = ('vaz096', 0.001335412796658389) + +[23315] +centroid = (0.64118841408923954, -1.3411199158649205) +station = ('kfkn', 0.0010576022497730062) +zone = ('vaz093', 0.0034789346279373305) + +[23316] +centroid = (0.65106188129411169, -1.3263263305920914) +station = ('klfi', 0.0062738898840890497) +zone = ('vaz100', 0.0015975508636667545) + +[23320] +centroid = (0.64143876411714562, -1.3302487137398533) +station = ('kcpk', 0.0020823132243673039) +zone = ('vaz097', 0.0017525699831068961) + +[23321] +centroid = (0.64228481247204994, -1.3337938614230893) +station = ('kpvg', 0.00053985982797993045) +zone = ('vaz096', 0.0017952592563937702) + +[23322] +centroid = (0.63911770310479599, -1.3304129143158812) +station = ('kcpk', 0.0015434742286300036) +zone = ('vaz097', 0.0014750333155189137) + +[23323] +centroid = (0.64048282983253579, -1.3330812260362075) +station = ('kcpk', 0.00099554381744050091) +zone = ('vaz097', 0.0011354519869346508) + +[23324] +centroid = (0.64227629526530017, -1.3312227819953915) +station = ('korf', 0.0020286509103682026) +zone = ('vaz095', 0.0013473919214943798) + +[23325] +centroid = (0.6425350752334934, -1.330611602597928) +station = ('korf', 0.0015850338555535083) +zone = ('vaz095', 0.0013101681865760426) + +[23336] +centroid = (0.66243282354390243, -1.3148354493161039) +station = ('kwal', 0.0018563280663477242) +zone = ('mdz024', 0.004580071293364219) + +[23337] +centroid = (0.66201514880060774, -1.3174821189537054) +station = ('kwal', 0.00027239985383699275) +zone = ('vaz099', 0.0036326312737627884) + +[23347] +centroid = (0.65168234584319562, -1.3259390594843665) +station = ('kmfv', 0.006124813016986641) +zone = ('vaz100', 0.0010365435580095698) + +[23350] +centroid = (0.65472354715821068, -1.3240549940101309) +station = ('kmfv', 0.0027372805813897765) +zone = ('vaz100', 0.0027749844833645687) + +[23354] +centroid = (0.65385852707433745, -1.3248589799300621) +station = ('kmfv', 0.0038056630630505634) +zone = ('vaz100', 0.0018673428190564827) + +[23356] +centroid = (0.66306437093373649, -1.3156711478685434) +station = ('kwal', 0.0015329886877055634) +zone = ('mdz024', 0.0038992594999642566) + +[23357] +centroid = (0.65896033391742703, -1.3207958534314195) +station = ('kmfv', 0.0022285460119469171) +zone = ('vaz099', 0.0004361785613517985) + +[23358] +centroid = (0.65723198671905458, -1.3240533883072192) +station = ('kmfv', 0.001331622610553187) +zone = ('vaz099', 0.0035339729360685788) + +[23359] +centroid = (0.66121706209354814, -1.3192591608382085) +station = ('kwal', 0.0018718855993053521) +zone = ('vaz099', 0.0022323923521030153) + +[23389] +centroid = (0.6572999498401273, -1.3235665636189604) +station = ('kmfv', 0.00095886731620121134) +zone = ('vaz099', 0.0031765900203129878) + +[23395] +centroid = (0.66280559096554337, -1.3170430464737812) +station = ('kwal', 0.00074809228896215022) +zone = ('mdz024', 0.0042928294676212609) + +[23398] +centroid = (0.65477995619963525, -1.3254741037716351) +station = ('kmfv', 0.0033882221593599677) +zone = ('vaz100', 0.0028519842048915214) + +[23401] +centroid = (0.65672362466782608, -1.322599965372621) +station = ('kmfv', 0.0004304343440739862) +zone = ('vaz099', 0.0030279414748747447) + +[23405] +centroid = (0.65295498757387249, -1.3250926446103193) +station = ('kmfv', 0.0046854066670510511) +zone = ('vaz100', 0.0010097215907072115) + +[23407] +centroid = (0.66044929175559597, -1.3190984509206847) +station = ('kwal', 0.0022324978532740551) +zone = ('vaz099', 0.0016144566287953454) + +[23408] +centroid = (0.65367664631298705, -1.3237183374507138) +station = ('kmfv', 0.0036002582182318907) +zone = ('vaz100', 0.0018517681777928839) + +[23409] +centroid = (0.66126373219774659, -1.3205668487802653) +station = ('kwal', 0.0028175765720474841) +zone = ('vaz099', 0.0021354388414374587) + +[23410] +centroid = (0.65690423133882248, -1.3218583400668633) +station = ('kmfv', 0.00046284346199369856) +zone = ('vaz099', 0.0025553839863657313) + +[23413] +centroid = (0.65402466496583467, -1.3239677275475314) +station = ('kmfv', 0.0033388122528995672) +zone = ('vaz100', 0.0021098770715862292) + +[23414] +centroid = (0.65985338398908755, -1.3191180509681848) +station = ('kwal', 0.0027036684266539875) +zone = ('vaz099', 0.0011712044920081151) + +[23415] +centroid = (0.66269371536049049, -1.3183292668660382) +station = ('kwal', 0.0011297636446818957) +zone = ('vaz099', 0.0038776750453456232) + +[23416] +centroid = (0.66206914928766436, -1.3188292687901497) +station = ('kwal', 0.0013309621339541509) +zone = ('vaz099', 0.0031494990260691963) + +[23417] +centroid = (0.65901977983174986, -1.3226770914722665) +station = ('kmfv', 0.001917989887869376) +zone = ('vaz099', 0.0018887729297238027) + +[23418] +centroid = (0.65741084806079897, -1.320990195843629) +station = ('kmfv', 0.0011372789216910109) +zone = ('vaz099', 0.0018143783192759587) + +[23420] +centroid = (0.65597267930386305, -1.3232227686629026) +station = ('kmfv', 0.0013252224034766161) +zone = ('vaz099', 0.0039250135394348594) + +[23421] +centroid = (0.6591169772177935, -1.3196721930056929) +station = ('kmfv', 0.002929829743313044) +zone = ('vaz099', 0.0004910427053369886) + +[23422] +centroid = (0.65686145331885626, -1.3233563736171425) +station = ('kmfv', 0.00081575464991042563) +zone = ('vaz099', 0.0033263280068151881) + +[23423] +centroid = (0.65494005525192067, -1.3214640003756679) +station = ('kmfv', 0.0022937064125123116) +zone = ('vaz100', 0.0039057926121074662) + +[23426] +centroid = (0.66190044576216656, -1.3210316997732414) +station = ('kwal', 0.0030724795453225258) +zone = ('vaz099', 0.0028221389796389091) + +[23427] +centroid = (0.66215922573035979, -1.321572699481482) +station = ('kwal', 0.003495991504387569) +zone = ('mdz023', 0.0031571568735679761) + +[23430] +centroid = (0.64579383183976957, -1.3378984045848821) +station = ('kfaf', 0.0023690699718216298) +zone = ('vaz093', 0.0018093410532801044) + +[23432] +centroid = (0.64361309529928024, -1.3361174182562694) +station = ('kpvg', 0.0022208517330004089) +zone = ('vaz096', 0.0011427464940245307) + +[23433] +centroid = (0.64434185752845052, -1.3345287148513489) +station = ('kpvg', 0.0024164459336807635) +zone = ('vaz096', 0.00046054136835543911) + +[23434] +centroid = (0.64058824771935641, -1.3367844132832116) +station = ('ksfq', 0.00038795392478246661) +zone = ('vaz096', 0.0037064012010662563) + +[23435] +centroid = (0.64300472588191249, -1.3349124429406924) +station = ('kpvg', 0.0011779894258198353) +zone = ('vaz096', 0.00091888339933278559) + +[23436] +centroid = (0.64393224620629985, -1.3352666749656772) +station = ('kpvg', 0.002143349617512232) +zone = ('vaz096', 0.00042260263178849034) + +[23437] +centroid = (0.63926375225660292, -1.3404686637078314) +station = ('kfkn', 0.0018587477067636483) +zone = ('ncz014', 0.0034922019503307168) + +[23438] +centroid = (0.63846610188185637, -1.3386129947405261) +station = ('ksfq', 0.0022053364822189636) +zone = ('ncz014', 0.0023922856148290146) + +[23440] +centroid = (0.66024156266802347, -1.3261731430436436) +station = ('kmfv', 0.0043329454189307906) +zone = ('vaz099', 0.0047755586248528535) + +[23441] +centroid = (0.65816833840945699, -1.3212087459725637) +station = ('kmfv', 0.0014008882981728689) +zone = ('vaz099', 0.0012114230927903669) + +[23442] +centroid = (0.6615627943650757, -1.3190402092835456) +station = ('kwal', 0.001578481872086069) +zone = ('vaz099', 0.0026176005474129551) + +[23451] +centroid = (0.64345765627609752, -1.3265764013673171) +station = ('kntu', 0.0009577262780954682) +zone = ('vaz098', 0.0021743330404794931) + +[23452] +centroid = (0.64307975758645586, -1.3280700192345887) +station = ('kntu', 0.00097367417075441549) +zone = ('vaz098', 0.0017542092446644624) + +[23453] +centroid = (0.64199582085450468, -1.3277032208389898) +station = ('kntu', 0.00078797637636400259) +zone = ('vaz098', 0.00063209669642712068) + +[23454] +centroid = (0.64259616175731316, -1.3269874962193318) +station = ('kntu', 4.3023314276279308e-05) +zone = ('vaz098', 0.0012533361606273691) + +[23455] +centroid = (0.64388344680041421, -1.3290084129602162) +station = ('korf', 0.0007593235117461201) +zone = ('vaz095', 0.0020742576934542349) + +[23456] +centroid = (0.64117363115047521, -1.3270694394277129) +station = ('kntu', 0.0013987431543228484) +zone = ('vaz098', 0.00037656383853560717) + +[23457] +centroid = (0.63901300080296886, -1.3268716063569994) +station = ('kntu', 0.0035613740718069987) +zone = ('vaz098', 0.0024292291146468499) + +[23459] +centroid = (0.6444592832805246, -1.3267771665911741) +station = ('kntu', 0.00189821011419272) +zone = ('vaz098', 0.0031078164381237762) + +[23460] +centroid = (0.64242038964834491, -1.3269461144627672) +station = ('kntu', 0.00016652504416034194) +zone = ('vaz098', 0.001098205048221852) + +[23461] +centroid = (0.64185184864450773, -1.3258088230155827) +station = ('kntu', 0.0012157718121767185) +zone = ('vaz098', 0.0013884930583291826) + +[23462] +centroid = (0.64293239943770997, -1.3290771963860373) +station = ('korf', 0.0012940158183195941) +zone = ('vaz098', 0.0020146748431035268) + +[23464] +centroid = (0.64222920628208147, -1.3297258654558335) +station = ('korf', 0.0018055055787763298) +zone = ('vaz095', 0.0020137012123501385) + +[23480] +centroid = (0.65657036730620855, -1.3210521201254897) +station = ('kmfv', 0.0011833737164687302) +zone = ('vaz099', 0.0026382808951907252) + +[23486] +centroid = (0.65472832936036129, -1.3232017723520011) +station = ('kmfv', 0.0024757984873745257) +zone = ('vaz100', 0.0029791799472731447) + +[23487] +centroid = (0.64310789229399801, -1.3391047063506902) +station = ('ksfq', 0.0033571466950085903) +zone = ('vaz093', 0.0010592053010856535) + +[23488] +centroid = (0.66230876554067064, -1.3194421411569877) +station = ('kwal', 0.001830923086014037) +zone = ('vaz099', 0.0032398318415661461) + +[23502] +centroid = (0.64334478583337107, -1.3300265507793672) +station = ('korf', 0.00068514295936777947) +zone = ('vaz095', 0.0012645307714197096) + +[23503] +centroid = (0.64488339828875929, -1.3311012023596975) +station = ('kngu', 0.00049061416867968925) +zone = ('vaz095', 0.0013445155161233996) + +[23504] +centroid = (0.643281273301891, -1.3310860354484977) +station = ('korf', 0.0011808600879004295) +zone = ('vaz095', 0.00050140046108200574) + +[23505] +centroid = (0.64426392857734893, -1.3314924179115319) +station = ('kngu', 0.00036235750386705111) +zone = ('vaz095', 0.00067362201180540878) + +[23507] +centroid = (0.64340801911217094, -1.3317423839670026) +station = ('kngu', 0.0012094990905597994) +zone = ('vaz095', 0.0002283005457434405) + +[23508] +centroid = (0.64376273982934618, -1.3318654645858534) +station = ('kngu', 0.00087391882380463519) +zone = ('vaz095', 0.00028653831002082187) + +[23509] +centroid = (0.64371926367767895, -1.3310573596888875) +station = ('kngu', 0.0009983606035488255) +zone = ('vaz095', 0.00043366486511987494) + +[23510] +centroid = (0.64319086524663782, -1.3315410427844925) +station = ('kngu', 0.0014234332373905373) +zone = ('vaz095', 0.00040377157634167705) + +[23511] +centroid = (0.64423998266001159, -1.3321366014851506) +station = ('kngu', 0.00056046014329872503) +zone = ('vaz095', 0.00078648831864484468) + +[23513] +centroid = (0.64385049498413649, -1.3306146220175339) +station = ('korf', 0.00056682492822668514) +zone = ('vaz095', 0.00081093449745271099) + +[23517] +centroid = (0.64349729270341038, -1.3315565413082502) +station = ('kngu', 0.0011167549935488181) +zone = ('vaz095', 9.7642713591254186e-05) + +[23518] +centroid = (0.64430780615474403, -1.3302092343921732) +station = ('korf', 0.00035380228023014536) +zone = ('vaz095', 0.0013058409893179238) + +[23523] +centroid = (0.64284645942534169, -1.3311989582511017) +station = ('korf', 0.0015509771868248712) +zone = ('vaz095', 0.00080588185765653113) + +[23551] +centroid = (0.64444621076442721, -1.331487688069259) +station = ('kngu', 0.00019486522342471125) +zone = ('vaz095', 0.00085549585859793934) + +[23601] +centroid = (0.64643532760634004, -1.3347690292360559) +station = ('kphf', 0.0016951180073769795) +zone = ('vaz094', 0.00079245819518860942) + +[23602] +centroid = (0.64775130586234386, -1.3354901120165177) +station = ('kphf', 0.00042804040306679433) +zone = ('vaz094', 0.00065769025892601501) + +[23603] +centroid = (0.64910639694688477, -1.3363032260084367) +station = ('kfaf', 0.001241274745690257) +zone = ('vaz091', 0.0006838157208097559) + +[23604] +centroid = (0.64760487273810152, -1.3364822618831063) +station = ('kfaf', 0.00076399798455981257) +zone = ('vaz094', 0.0010779048631048881) + +[23605] +centroid = (0.64609373176513984, -1.3340642303775156) +station = ('klfi', 0.0016510707753734535) +zone = ('vaz094', 0.0014082318172694852) + +[23606] +centroid = (0.64689494261156022, -1.3355242332033941) +station = ('kphf', 0.0012354510564138749) +zone = ('vaz094', 0.00029548549028717886) + +[23607] +centroid = (0.64527871536433601, -1.3338569201689638) +station = ('klfi', 0.0022060885566332505) +zone = ('vaz096', 0.00153686905655656) + +[23608] +centroid = (0.64835164676515233, -1.3359279976725504) +station = ('kphf', 0.00064990771638976752) +zone = ('vaz091', 0.0013348300233961988) + +[23651] +centroid = (0.64590825562553034, -1.3317613731492643) +station = ('kngu', 0.0013005145804990735) +zone = ('vaz095', 0.002319326889441896) + +[23661] +centroid = (0.64593415631162998, -1.3331902916611647) +station = ('klfi', 0.001386908750996272) +zone = ('vaz094', 0.0020428375220412692) + +[23662] +centroid = (0.64809867874336824, -1.3326117150141283) +station = ('klfi', 0.00087343125137455608) +zone = ('vaz094', 0.0023427136774433035) + +[23663] +centroid = (0.64633804295383401, -1.3319464129565608) +station = ('klfi', 0.0010138203100315047) +zone = ('vaz095', 0.0027602850910466003) + +[23664] +centroid = (0.64713970758585992, -1.3315086320202829) +station = ('klfi', 0.00084233466068722772) +zone = ('vaz094', 0.0030074527865397759) + +[23665] +centroid = (0.64724659154925213, -1.3328293750251448) +station = ('klfi', 0.00021674048545365608) +zone = ('vaz094', 0.0019579434274565968) + +[23666] +centroid = (0.64678657511830395, -1.3335475431057553) +station = ('klfi', 0.00090310579216746115) +zone = ('vaz094', 0.0014195478938706665) + +[23669] +centroid = (0.6466493224259271, -1.3324344942818809) +station = ('klfi', 0.00058541727143236061) +zone = ('vaz094', 0.0023165452232534077) + +[23690] +centroid = (0.64965345294762977, -1.3354753988909234) +station = ('kphf', 0.0015726149933227844) +zone = ('vaz091', 0.00029624591312149714) + +[23691] +centroid = (0.65022681106020253, -1.3360394718518753) +station = ('kphf', 0.0022360758049051774) +zone = ('vaz091', 0.00056356574995119286) + +[23692] +centroid = (0.64913049994385486, -1.3345412637686709) +station = ('kphf', 0.0011492240143064333) +zone = ('vaz091', 0.001177301009170183) + +[23693] +centroid = (0.64791973013516135, -1.3342541047468401) +station = ('kphf', 0.0007572242621210328) +zone = ('vaz094', 0.0011460649021532189) + +[23696] +centroid = (0.64911561228533532, -1.3337994639299882) +station = ('kphf', 0.0014961894586254815) +zone = ('vaz091', 0.0017259998387563356) + +[23701] +centroid = (0.64250629475412802, -1.3329264327848482) +station = ('kpvg', 0.0012437581525269106) +zone = ('vaz095', 0.0015329148773952697) + +[23702] +centroid = (0.64226254207079447, -1.3322031683428215) +station = ('kpvg', 0.0017147442802394812) +zone = ('vaz095', 0.0014225318104295528) + +[23703] +centroid = (0.64391023760443222, -1.3329654059870453) +station = ('kngu', 0.0012893437652282576) +zone = ('vaz095', 0.0011553268599045115) + +[23704] +centroid = (0.64270330752009319, -1.3318635621769686) +station = ('kngu', 0.0019202576537699187) +zone = ('vaz095', 0.00091954757420868033) + +[23707] +centroid = (0.64301945646079939, -1.3323778583476538) +station = ('kngu', 0.0017068979138663625) +zone = ('vaz095', 0.00086084585510474813) + +[23708] +centroid = (0.64314560885913352, -1.3317762433544915) +station = ('kngu', 0.0014732706035916012) +zone = ('vaz095', 0.00047575501570616094) + +[23709] +centroid = (0.64250372912012765, -1.3317814793422473) +station = ('kpvg', 0.0020994465683652525) +zone = ('vaz095', 0.0011022266313522326) + +[23801] +centroid = (0.64988296374426713, -1.3497572885336526) +station = ('kptb', 0.0026794761367027933) +zone = ('vaz081', 0.0015459845862718564) + +[23803] +centroid = (0.64942233644808078, -1.3525862578116252) +station = ('kptb', 0.00052373066588106852) +zone = ('vaz080', 0.0029878809646858937) + +[23805] +centroid = (0.64818987219678503, -1.350945491235118) +station = ('kptb', 0.0017578003055311244) +zone = ('vaz081', 0.0024685494164501105) + +[23806] +centroid = (0.64993637081937805, -1.3512031541925897) +station = ('kptb', 0.0016741162859578254) +zone = ('vaz081', 0.0026247843677428316) + +[23821] +centroid = (0.64374158643881207, -1.359820857000652) +station = ('kavc', 0.0039420735456217526) +zone = ('vaz079', 0.0022029303837642514) + +[23824] +centroid = (0.64726549346505113, -1.360871265957672) +station = ('kavc', 0.0070223224236775506) +zone = ('vaz067', 0.0014890728683471769) + +[23827] +centroid = (0.63900540862072264, -1.3473396933603752) +station = ('kfkn', 0.0044295486586578151) +zone = ('vaz092', 0.0022855923137154268) + +[23828] +centroid = (0.63846870242244191, -1.3487627650192813) +station = ('kemv', 0.003402248045219344) +zone = ('ncz012', 0.0033065576329583111) + +[23829] +centroid = (0.64110603454854542, -1.3476970146181357) +station = ('kfkn', 0.0044764088713138712) +zone = ('vaz092', 0.0016040065600204385) + +[23830] +centroid = (0.64606784853233268, -1.3507985694186848) +station = ('kptb', 0.0033611759541693083) +zone = ('vaz088', 0.0024922633809329555) + +[23831] +centroid = (0.65181507813280981, -1.3517673842331743) +station = ('kfci', 0.0012488092262237956) +zone = ('vaz070', 0.001918173820297205) + +[23832] +centroid = (0.65254123982139456, -1.3542374614570594) +station = ('kfci', 0.0011578515127995091) +zone = ('vaz070', 0.00023129869687664442) + +[23833] +centroid = (0.64939751786611744, -1.3556566061251485) +station = ('kptb', 0.0022203097739831486) +zone = ('vaz080', 0.0023709824403546557) + +[23834] +centroid = (0.65084347079151716, -1.350956608982453) +station = ('kfci', 0.0024094512152291574) +zone = ('vaz081', 0.0028740424205911724) + +[23836] +centroid = (0.65179715360139179, -1.3499553310438765) +station = ('kfci', 0.0024579382158587595) +zone = ('vaz081', 0.003072827522387214) + +[23837] +centroid = (0.64140122208493533, -1.3453722535077721) +station = ('kfkn', 0.0027175906065029422) +zone = ('vaz092', 0.00058644677984799186) + +[23838] +centroid = (0.65134308874319302, -1.3549543554473162) +station = ('kfci', 0.0022153279457999739) +zone = ('vaz070', 0.0012143576395707738) + +[23839] +centroid = (0.64716485778038124, -1.3425180467688156) +station = ('kakq', 0.0020146714566196241) +zone = ('vaz089', 0.000788252312435774) + +[23840] +centroid = (0.64691195957176728, -1.3555275564802562) +station = ('kptb', 0.0029259425466296313) +zone = ('vaz080', 0.00050439481454506521) + +[23841] +centroid = (0.64661031431714511, -1.3533970156090542) +station = ('kptb', 0.0023915868738004797) +zone = ('vaz080', 0.0013232367574508572) + +[23842] +centroid = (0.64807016006339058, -1.3477772648571427) +station = ('kakq', 0.0040324444049303085) +zone = ('vaz081', 0.0010702616113782211) + +[23843] +centroid = (0.64308679126334134, -1.3582513696707958) +station = ('kavc', 0.0042533610778723594) +zone = ('vaz079', 0.0015108502531549978) + +[23844] +centroid = (0.64018732813688062, -1.3496024603757082) +station = ('kemv', 0.0021903372180880403) +zone = ('vaz092', 0.0031934598929874406) + +[23845] +centroid = (0.63842089785422973, -1.360965182124722) +station = ('kavc', 0.0021960941049428487) +zone = ('vaz079', 0.0036456215577789579) + +[23846] +centroid = (0.6469342648796077, -1.3410066265431735) +station = ('kakq', 0.0027315255623666049) +zone = ('vaz089', 0.0011583080182031129) + +[23847] +centroid = (0.64001673965579076, -1.35350725060461) +station = ('kemv', 0.00098836741319923457) +zone = ('vaz087', 0.00016159521660673621) + +[23850] +centroid = (0.64962053603793724, -1.357259708496398) +station = ('kptb', 0.0035161781949919107) +zone = ('vaz080', 0.0031291517993100684) + +[23851] +centroid = (0.63976747173202098, -1.3430422040497745) +station = ('kfkn', 0.0010454833487298495) +zone = ('vaz092', 0.0024164373489808429) + +[23856] +centroid = (0.64200206913322677, -1.3561617916771385) +station = ('kemv', 0.0035074089833088138) +zone = ('vaz079', 0.0022155324528356059) + +[23857] +centroid = (0.63852261564303603, -1.3593287265114671) +station = ('kavc', 0.0029975532420386569) +zone = ('vaz079', 0.0031632986148751444) + +[23860] +centroid = (0.65051965985539462, -1.3478373739965812) +station = ('kric', 0.0044533249704058154) +zone = ('vaz081', 0.0014180082943307951) + +[23866] +centroid = (0.64443971813960976, -1.3415019684381821) +station = ('kakq', 0.0021833984146309689) +zone = ('vaz093', 0.0021596366598786048) + +[23867] +centroid = (0.64257092429632945, -1.3523094485922589) +station = ('kemv', 0.0022630087630820827) +zone = ('vaz087', 0.0026771741024827723) + +[23868] +centroid = (0.64091996499699033, -1.3581695137288774) +station = ('kavc', 0.0033641443639006842) +zone = ('vaz079', 0.00094688070851474209) + +[23872] +centroid = (0.64556227900790752, -1.356448915792384) +station = ('kptb', 0.0044208207535573057) +zone = ('vaz080', 0.0019509900016091057) + +[23874] +centroid = (0.63894681791773322, -1.3453994980973956) +station = ('kfkn', 0.0030474119515120569) +zone = ('vaz092', 0.0019528249742156703) + +[23875] +centroid = (0.64960739370866971, -1.3485707089883918) +station = ('kptb', 0.0035229587620244367) +zone = ('vaz081', 0.00063275477703387617) + +[23876] +centroid = (0.64499956740377207, -1.3584527632131835) +station = ('kavc', 0.0055887737568919519) +zone = ('vaz079', 0.003351565194081146) + +[23878] +centroid = (0.6427179159259323, -1.3443494731128107) +station = ('kakq', 0.0027859356183037578) +zone = ('vaz092', 0.0021361363447523715) + +[23879] +centroid = (0.63865719798165732, -1.3543218132198085) +station = ('kemv', 0.00229793181458283) +zone = ('vaz087', 0.0015583087176742406) + +[23881] +centroid = (0.6489117229221173, -1.3435270739692711) +station = ('kakq', 0.0034439075837883323) +zone = ('vaz082', 0.0014676823037451253) + +[23882] +centroid = (0.64448329901103207, -1.3512633505984912) +station = ('kemv', 0.00426170610544159) +zone = ('vaz088', 0.002232167010499084) + +[23883] +centroid = (0.64814773994864183, -1.3392922768854021) +station = ('kjgg', 0.0018196218273288361) +zone = ('vaz089', 0.0021485730008937868) + +[23884] +centroid = (0.64432728402919637, -1.3487807070039919) +station = ('kakq', 0.0040647839761378301) +zone = ('vaz088', 0.00025874659905035383) + +[23885] +centroid = (0.64909295791164434, -1.353898309076812) +station = ('kptb', 0.00078794803021863284) +zone = ('vaz080', 0.0021620387506322632) + +[23887] +centroid = (0.63832558542377837, -1.3581614154011483) +station = ('kavc', 0.0038843394325387714) +zone = ('vaz079', 0.0033927640326747491) + +[23888] +centroid = (0.64489277070684248, -1.3434672789890978) +station = ('kakq', 0.00068368659643826756) +zone = ('vaz089', 0.003159415939174496) + +[23889] +centroid = (0.64402837894149978, -1.3569212542478513) +station = ('kemv', 0.0052308437191225044) +zone = ('vaz079', 0.0028416484907846959) + +[23890] +centroid = (0.64593197465006491, -1.345968580153301) +station = ('kakq', 0.0017098697027402468) +zone = ('vaz088', 0.0025157647024097022) + +[23891] +centroid = (0.64665881701705796, -1.3476111095123529) +station = ('kakq', 0.0031860693118370628) +zone = ('vaz088', 0.0023546850507695743) + +[23893] +centroid = (0.639559725191156, -1.3599740969089771) +station = ('kavc', 0.0020227625496672054) +zone = ('vaz079', 0.0022775037072816839) + +[23894] +centroid = (0.64790473775688673, -1.3582295705084388) +station = ('kptb', 0.004363461963932308) +zone = ('vaz067', 0.0032262592267002245) + +[23897] +centroid = (0.64278896827978105, -1.3488508692399219) +station = ('kemv', 0.0037313450178767054) +zone = ('vaz088', 0.0016460303948079734) + +[23898] +centroid = (0.64288113911757883, -1.3414845849588324) +station = ('kfkn', 0.0024065804295765963) +zone = ('vaz093', 0.0024729821383691567) + +[23899] +centroid = (0.64984957559567647, -1.3433076337224179) +station = ('kjgg', 0.0034755221523692509) +zone = ('vaz082', 0.0008817001848339651) + +[23901] +centroid = (0.65137600565288556, -1.3687072183404736) +station = ('kfvx', 0.00053206045470715572) +zone = ('vaz060', 0.0017119866327617126) + +[23909] +centroid = (0.65101800371671659, -1.3682794730473946) +station = ('kfvx', 0.0010016102387323169) +zone = ('vaz060', 0.0014676714874253167) + +[23915] +centroid = (0.64042879443889411, -1.3663750744873737) +station = ('kavc', 0.0032671883478815342) +zone = ('vaz065', 0.0010780808278589191) + +[23917] +centroid = (0.63923650766697926, -1.3673756892008344) +station = ('kavc', 0.0042162366911138553) +zone = ('vaz065', 0.00098931398615787966) + +[23919] +centroid = (0.63869749763408579, -1.3636713674898169) +station = ('kavc', 0.0019735962073885605) +zone = ('ncz010', 0.0034757666775717864) + +[23920] +centroid = (0.64096373785463034, -1.3609248999255859) +station = ('kavc', 0.0012696325728447507) +zone = ('vaz079', 0.0017713592153819125) + +[23921] +centroid = (0.65600524714770525, -1.3722396774800476) +station = ('kfvx', 0.0048945128691605831) +zone = ('vaz047', 0.0013348323379432441) + +[23922] +centroid = (0.64900954862669158, -1.3651338661365255) +station = ('kfvx', 0.004161766309594017) +zone = ('vaz067', 0.0024140979240337992) + +[23923] +centroid = (0.64729251116187203, -1.3726975471560157) +station = ('kfvx', 0.0054862559074974589) +zone = ('vaz059', 0.0013284794033867134) + +[23924] +centroid = (0.64242059908785509, -1.3688344702962365) +station = ('kavc', 0.0056335669476427989) +zone = ('vaz065', 0.002409173745660821) + +[23927] +centroid = (0.63857228771354779, -1.3712106662596566) +station = ('khnz', 0.0039727020277191384) +zone = ('vaz065', 0.0032594438814198034) + +[23930] +centroid = (0.64875638861868978, -1.3630953564767812) +station = ('kfvx', 0.0055901392292781174) +zone = ('vaz067', 0.00083104160676801878) + +[23934] +centroid = (0.64886370891439493, -1.3722948822442882) +station = ('kfvx', 0.0040392403839205858) +zone = ('vaz059', 0.0029299800924977677) + +[23936] +centroid = (0.65509299845427293, -1.3696778308440927) +station = ('kfvx', 0.0032683977525757735) +zone = ('vaz047', 0.00097956370661232304) + +[23937] +centroid = (0.64481435306355039, -1.3703016813319255) +station = ('kfvx', 0.0071514422172000852) +zone = ('vaz059', 0.0023805365025859628) + +[23938] +centroid = (0.64411924078235849, -1.3612176440010229) +station = ('kavc', 0.0038806086852550248) +zone = ('vaz079', 0.0030769259829510065) + +[23942] +centroid = (0.6481169523406366, -1.3664042389391746) +station = ('kfvx', 0.0042631969979582728) +zone = ('vaz060', 0.0026316984267902356) + +[23943] +centroid = (0.65005739194971146, -1.3692747819599296) +station = ('kfvx', 0.0018448108511092761) +zone = ('vaz060', 0.00040985195271254127) + +[23944] +centroid = (0.64428923585150277, -1.3637712526829087) +station = ('kavc', 0.004123508531001554) +zone = ('vaz066', 0.0015267760274348197) + +[23947] +centroid = (0.64631448100893207, -1.3691184528188285) +station = ('kfvx', 0.0055682413773645066) +zone = ('vaz059', 0.0030414411372823931) + +[23950] +centroid = (0.6398197094365331, -1.3626788336507927) +station = ('kavc', 0.00059908552340850183) +zone = ('vaz079', 0.0035508290402057681) + +[23952] +centroid = (0.64454904556395476, -1.3664505774308149) +station = ('kavc', 0.005363953486283087) +zone = ('vaz066', 0.00076922341316287379) + +[23954] +centroid = (0.64760359864774752, -1.3679699039979685) +station = ('kfvx', 0.0043432550697821391) +zone = ('vaz060', 0.002255494195802182) + +[23958] +centroid = (0.65039507825338727, -1.3728695842603849) +station = ('kfvx', 0.0034750154506981712) +zone = ('vaz046', 0.0028259892750842372) + +[23959] +centroid = (0.64760776998465985, -1.3752278033325094) +station = ('kfvx', 0.006594108852987994) +zone = ('vaz059', 0.0024713361581879499) + +[23960] +centroid = (0.65124639750263258, -1.3711472759012242) +station = ('kfvx', 0.0018811456185874049) +zone = ('vaz060', 0.0022812479977488559) + +[23962] +centroid = (0.64585315558104484, -1.3742607338472719) +station = ('kfvx', 0.0073781351905456141) +zone = ('vaz059', 0.0010902373546037563) + +[23963] +centroid = (0.64928096477866926, -1.3752906002789964) +station = ('klyh', 0.0059330807827750057) +zone = ('vaz046', 0.0029930728130938803) + +[23964] +centroid = (0.64179992509926087, -1.3723015843086157) +station = ('khnz', 0.0072993455069207212) +zone = ('vaz059', 0.0042020600642271536) + +[23966] +centroid = (0.65090050815147238, -1.3660817369999911) +station = ('kfvx', 0.0024605958296038343) +zone = ('vaz060', 0.0026599539017353241) + +[23967] +centroid = (0.64425549863706177, -1.3724674429474326) +station = ('kfvx', 0.008132607904894824) +zone = ('vaz059', 0.0017538083976034572) + +[23968] +centroid = (0.64097675801085019, -1.3705810387319997) +station = ('khnz', 0.0063459598652980415) +zone = ('vaz065', 0.0024487444387867835) + +[23970] +centroid = (0.6414172442074686, -1.3646862240899738) +station = ('kavc', 0.0021951249698376387) +zone = ('vaz065', 0.002698829529404772) + +[23974] +centroid = (0.64525616571040023, -1.3658122232568981) +station = ('kavc', 0.0056648761300500949) +zone = ('vaz066', 0.00047021390019926873) + +[23976] +centroid = (0.64305657961398932, -1.3715723508405475) +station = ('khnz', 0.0084624112862789393) +zone = ('vaz059', 0.0031058034126444783) + +[24011] +centroid = (0.65049904751692866, -1.3952422094501218) +station = ('kroa', 0.00087272205056285928) +zone = ('vaz022', 0.0015348988732912638) + +[24012] +centroid = (0.65115419175824973, -1.3945244253419464) +station = ('kroa', 0.00093164394076102736) +zone = ('vaz022', 0.0022022784936081056) + +[24013] +centroid = (0.65042317805434435, -1.3949211561342174) +station = ('kroa', 0.0010642194222058171) +zone = ('vaz022', 0.0017924467534588383) + +[24014] +centroid = (0.64964045024470252, -1.394769417209049) +station = ('kroa', 0.0018101851873475361) +zone = ('vaz022', 0.0020996380693659891) + +[24015] +centroid = (0.65025313062532253, -1.3959375486241163) +station = ('kroa', 0.0010652104138924312) +zone = ('vaz022', 0.0010143349393509987) + +[24016] +centroid = (0.65054419918467765, -1.3954725405515076) +station = ('kroa', 0.00077261677436271875) +zone = ('vaz022', 0.001352020578859515) + +[24017] +centroid = (0.65096674339658545, -1.3961057285508385) +station = ('kroa', 0.00047327241295664013) +zone = ('vaz022', 0.00096342609239659209) + +[24018] +centroid = (0.64948546500712534, -1.3969823376209451) +station = ('kroa', 0.0020879149661631939) +zone = ('vaz022', 0.0010341431171745671) + +[24019] +centroid = (0.65181979052179018, -1.395453219756688) +station = ('kroa', 0.0005518331661813386) +zone = ('vaz022', 0.001893614181217546) + +[24020] +centroid = (0.6520238718712259, -1.3952891413537081) +station = ('kroa', 0.00078946418576202157) +zone = ('vaz022', 0.0021297590100128757) + +[24053] +centroid = (0.63891674589472136, -1.4055848386112226) +station = ('kmwk', 0.0025882665383899391) +zone = ('vaz016', 0.0035624345202505559) + +[24054] +centroid = (0.64008108994531188, -1.3910988850723498) +station = ('ksif', 0.0045668346289222906) +zone = ('vaz043', 0.0023776844128072421) + +[24055] +centroid = (0.64151616946947165, -1.3962207108419598) +station = ('kmtv', 0.0021605075421338711) +zone = ('vaz043', 0.0021556785770204855) + +[24058] +centroid = (0.64885517425435268, -1.4071237477725835) +station = ('kpsk', 0.001137468245021471) +zone = ('vaz013', 0.0022909929179724354) + +[24059] +centroid = (0.64863006168743043, -1.3985399567118875) +station = ('kroa', 0.0035070881237119923) +zone = ('vaz022', 0.0021719988931512275) + +[24060] +centroid = (0.65024119257323898, -1.4036278358275462) +station = ('kbcb', 0.00069173086938686154) +zone = ('vaz014', 0.0015130745254389633) + +[24064] +centroid = (0.65233461029125095, -1.3922555496742315) +station = ('kroa', 0.0029140172596015352) +zone = ('vaz023', 0.0032133826482467942) + +[24065] +centroid = (0.64781827414574278, -1.3962200650701366) +station = ('kroa', 0.0035067387195230463) +zone = ('vaz033', 0.0027226587568724603) + +[24066] +centroid = (0.65514516634561504, -1.3906958536414793) +station = ('kroa', 0.0055201172693580018) +zone = ('vaz023', 0.0018502568547610287) + +[24067] +centroid = (0.64632455155871604, -1.3973267608955335) +station = ('kroa', 0.0051439729587826706) +zone = ('vaz033', 0.0026013914555569543) + +[24069] +centroid = (0.63840335729524722, -1.3899896236129523) +station = ('ksif', 0.0037973619855647951) +zone = ('ncz005', 0.003691097546185497) + +[24070] +centroid = (0.65198901764606365, -1.4002050880847527) +station = ('kbcb', 0.0035991522482305381) +zone = ('vaz018', 0.0021911308759262754) + +[24072] +centroid = (0.64650444264471907, -1.4004934339304747) +station = ('kbcb', 0.0038959909469245954) +zone = ('vaz017', 0.0025549294219612659) + +[24073] +centroid = (0.64808351183216839, -1.4036793404937726) +station = ('kbcb', 0.0014743131482326073) +zone = ('vaz014', 0.00089741059235654995) + +[24076] +centroid = (0.63888112372468819, -1.403611918424768) +station = ('kmwk', 0.003142269482305342) +zone = ('vaz032', 0.0023020631881564683) + +[24077] +centroid = (0.65216341094492292, -1.3945882694859846) +station = ('kroa', 0.0012261045221974905) +zone = ('vaz022', 0.0026376097260173985) + +[24078] +centroid = (0.64089546057429236, -1.3945220516941639) +station = ('kmtv', 0.0022308297103697619) +zone = ('vaz043', 0.00075776373487997648) + +[24079] +centroid = (0.64676023809989136, -1.3990723170403307) +station = ('kbcb', 0.0045234733757327983) +zone = ('vaz017', 0.0035598000835661368) + +[24082] +centroid = (0.63916521096703527, -1.3982196538875613) +station = ('kmtv', 0.0013524544929604924) +zone = ('vaz032', 0.0026081687325609278) + +[24083] +centroid = (0.65284339122149992, -1.3948704194128618) +station = ('kroa', 0.001673858145207377) +zone = ('vaz022', 0.0029659102191574773) + +[24084] +centroid = (0.64800497201582863, -1.4110244539310357) +station = ('kpsk', 0.0022618971826572692) +zone = ('vaz013', 0.0021872294600527569) + +[24085] +centroid = (0.65762908403046838, -1.3931488266386949) +station = ('khsp', 0.00472616143295106) +zone = ('vaz023', 0.0021378578816665691) + +[24086] +centroid = (0.6505816015905479, -1.4072981759780276) +station = ('kpsk', 0.0025822500546875257) +zone = ('vaz011', 0.001198444251551294) + +[24087] +centroid = (0.64950701982338754, -1.4007449533289795) +station = ('kbcb', 0.0022228702402565682) +zone = ('vaz014', 0.0019392603756395756) + +[24088] +centroid = (0.6438153789595864, -1.3976234843216653) +station = ('kmtv', 0.0045249117987643927) +zone = ('vaz033', 0.0032935325082744846) + +[24089] +centroid = (0.64068450262760379, -1.3957669426897337) +station = ('kmtv', 0.0014562731860949753) +zone = ('vaz043', 0.0014424402747340677) + +[24090] +centroid = (0.65487718849226384, -1.3942833779189538) +station = ('kroa', 0.0037468387062896693) +zone = ('vaz023', 0.0011990579511185759) + +[24091] +centroid = (0.64438042930491957, -1.4020164431423499) +station = ('kbcb', 0.0053130639847402796) +zone = ('vaz017', 0.00050002840460873607) + +[24092] +centroid = (0.64598180380020942, -1.3920371042650519) +station = ('kroa', 0.0060584249301131893) +zone = ('vaz033', 0.0017517470765739654) + +[24093] +centroid = (0.65249443009085606, -1.4114259843787493) +station = ('kpsk', 0.0050945577103284727) +zone = ('vaz011', 0.0026044273580992528) + +[24095] +centroid = (0.6496675726612785, -1.3916778631451139) +station = ('kroa', 0.0035794094844506926) +zone = ('vaz034', 0.0033668343456449809) + +[24101] +centroid = (0.64877853684689757, -1.3927549756396895) +station = ('kroa', 0.0034320737046483279) +zone = ('vaz033', 0.0033471796057790008) + +[24102] +centroid = (0.64293191074551936, -1.3962338531712273) +station = ('kmtv', 0.0035688791471204079) +zone = ('vaz033', 0.0031577146517282962) + +[24104] +centroid = (0.64809396635438787, -1.3873615068252991) +station = ('klyh', 0.005148666158830314) +zone = ('vaz034', 0.0032145524949458268) + +[24105] +centroid = (0.64422823659414552, -1.4067996924903656) +station = ('khlx', 0.0039045590102170474) +zone = ('vaz013', 0.0030642460326058309) + +[24112] +centroid = (0.64091202374889378, -1.3936342725168445) +station = ('kmtv', 0.0028027176786041491) +zone = ('vaz043', 0.00075665802336487807) + +[24120] +centroid = (0.64038985614328214, -1.403487616075441) +station = ('kmwk', 0.0044929720696641751) +zone = ('vaz032', 0.0018288141041985855) + +[24121] +centroid = (0.64871938763854753, -1.3901060370740603) +station = ('kroa', 0.0051336159316911784) +zone = ('vaz034', 0.0030728751621137153) + +[24122] +centroid = (0.6532103641500242, -1.3908900564273488) +station = ('kroa', 0.0042608531490812198) +zone = ('vaz023', 0.0028265073271058509) + +[24124] +centroid = (0.65120332277669335, -1.4111771353340001) +station = ('kpsk', 0.0039109931316729466) +zone = ('vaz011', 0.0020938268864749842) + +[24127] +centroid = (0.65402948207457023, -1.4003079228842803) +station = ('kroa', 0.0045788717559312611) +zone = ('vaz018', 0.00030462166703179095) + +[24128] +centroid = (0.65170583797492754, -1.4046853831812072) +station = ('kbcb', 0.0023388294516517791) +zone = ('vaz014', 0.0031872754143390308) + +[24130] +centroid = (0.65641410797827748, -1.3963051673244637) +station = ('kroa', 0.0051392960611245948) +zone = ('vaz023', 0.002785205442304082) + +[24131] +centroid = (0.65572561049495082, -1.4003252889103377) +station = ('klwb', 0.0056645174973376979) +zone = ('vaz018', 0.0015790435310177044) + +[24132] +centroid = (0.64932857736066363, -1.4077694672359438) +station = ('kpsk', 0.0012744545800907647) +zone = ('vaz011', 0.0020219187321544136) + +[24133] +centroid = (0.64000708798502726, -1.398609490629287) +station = ('kmtv', 0.0017668274127309916) +zone = ('vaz032', 0.0021035392922852105) + +[24134] +centroid = (0.65009889587932379, -1.4098343662739781) +station = ('kpsk', 0.0023908604151504989) +zone = ('vaz011', 0.0015446940235810795) + +[24136] +centroid = (0.65156361109418259, -1.406763110389244) +station = ('kbcb', 0.0032614540539721874) +zone = ('vaz011', 0.0014506839007656397) + +[24137] +centroid = (0.64451104974613882, -1.3902126417847722) +station = ('kmtv', 0.0072253362079529428) +zone = ('vaz033', 0.0033674220055601796) + +[24138] +centroid = (0.64651946992957876, -1.4016112824097919) +station = ('kbcb', 0.0033997552975114872) +zone = ('vaz017', 0.0020951461086335856) + +[24139] +centroid = (0.6460016132872195, -1.387206416867967) +station = ('klyh', 0.0065834435954982753) +zone = ('vaz044', 0.0037141114369430945) + +[24141] +centroid = (0.64744981768735432, -1.4061883036533922) +station = ('kpsk', 0.0017230115856876397) +zone = ('vaz013', 0.0020345418565320536) + +[24142] +centroid = (0.64817831811713666, -1.4058785251644554) +station = ('kpsk', 0.0018442926666980123) +zone = ('vaz014', 0.0023668430607583328) + +[24147] +centroid = (0.65277921546490403, -1.4106382998340319) +station = ('kpsk', 0.0050697034755602379) +zone = ('vaz011', 0.0022570640690766906) + +[24148] +centroid = (0.63843796717431434, -1.3941335239493773) +station = ('kmtv', 0.0021562080888411204) +zone = ('vaz043', 0.0017987119216939416) + +[24149] +centroid = (0.64614961720778852, -1.4037539533192953) +station = ('kbcb', 0.0034082026672685611) +zone = ('vaz017', 0.0018267829349751818) + +[24150] +centroid = (0.65286834942980343, -1.4067812443601719) +station = ('kbcb', 0.0042015229466110162) +zone = ('vaz011', 0.0021383117750002284) + +[24151] +centroid = (0.64496935575442005, -1.3939106977637754) +station = ('kmtv', 0.0059840460446377681) +zone = ('vaz033', 0.00069849518955379707) + +[24153] +centroid = (0.65105039702763357, -1.3982654862337189) +station = ('kroa', 0.002070077279645787) +zone = ('vaz022', 0.0010255727290097464) + +[24161] +centroid = (0.64538933433232737, -1.388044873040625) +station = ('klyh', 0.0074755221460704223) +zone = ('vaz044', 0.0034443637630661096) + +[24162] +centroid = (0.64803106468814597, -1.4006214538311084) +station = ('kbcb', 0.0027765574204141187) +zone = ('vaz014', 0.002060947708862441) + +[24165] +centroid = (0.63852668226019316, -1.3971695939963915) +station = ('kmtv', 0.00097928320014559265) +zone = ('vaz043', 0.0030262268543371075) + +[24167] +centroid = (0.6502269332332502, -1.4089089403446933) +station = ('kpsk', 0.0022037591010479122) +zone = ('vaz011', 0.001066950005516239) + +[24168] +centroid = (0.64114238975686444, -1.3953288825007757) +station = ('kmtv', 0.0020245959726005324) +zone = ('vaz043', 0.0013643238905998722) + +[24171] +centroid = (0.64004611354710184, -1.4004353842795532) +station = ('kmtv', 0.003185759945999169) +zone = ('vaz032', 0.00064354846369325521) + +[24174] +centroid = (0.65191042546984634, -1.3905578330042316) +station = ('kroa', 0.0041196560303097731) +zone = ('vaz034', 0.0021623385440808743) + +[24175] +centroid = (0.65324104703827424, -1.3952116138283341) +station = ('kroa', 0.0019779366854982211) +zone = ('vaz023', 0.0028626694850785936) + +[24176] +centroid = (0.64587539107571534, -1.3908848902527629) +station = ('kroa', 0.0066351492052806813) +zone = ('vaz033', 0.002647977345739566) + +[24179] +centroid = (0.65092120775640094, -1.392956421541955) +station = ('kroa', 0.0022002822701080254) +zone = ('vaz022', 0.0033785942208094735) + +[24184] +centroid = (0.64734785555245278, -1.392417533682109) +station = ('kroa', 0.0047295071038223214) +zone = ('vaz033', 0.0022219632164064878) + +[24185] +centroid = (0.6424834833008044, -1.4009624911669483) +station = ('kmtv', 0.0047078801681185289) +zone = ('vaz032', 0.0023341634347467609) + +[24201] +centroid = (0.63897751825927573, -1.4341379190283667) +station = ('kvji', 0.0022959977977961188) +zone = ('tnz017', 0.002539924722107794) + +[24202] +centroid = (0.63977330113172259, -1.4348739069206402) +station = ('kvji', 0.0025482685578767138) +zone = ('tnz017', 0.0028154235989973188) + +[24210] +centroid = (0.6417380706305702, -1.4316584519331057) +station = ('kvji', 0.001494995243006987) +zone = ('vaz008', 0.0012093437184131997) + +[24211] +centroid = (0.63973451991574337, -1.4303858102024294) +station = ('kvji', 0.0012086969900711596) +zone = ('vaz008', 0.0011938912244432972) + +[24216] +centroid = (0.64486940074815824, -1.4451223406620106) +station = ('klnp', 0.0037605307297072566) +zone = ('vaz002', 0.002525672681736054) + +[24217] +centroid = (0.64725266529504899, -1.4342860800285684) +station = ('klnp', 0.0052511111574409346) +zone = ('vaz006', 0.0028785388762339022) + +[24219] +centroid = (0.64314410787597687, -1.4444081519320946) +station = ('klnp', 0.0039156294018197453) +zone = ('vaz002', 0.0029033196365656796) + +[24220] +centroid = (0.64828307277884145, -1.4354341401572379) +station = ('klnp', 0.0049044720518882055) +zone = ('vaz003', 0.0015080391972837487) + +[24221] +centroid = (0.6392326679426249, -1.4486084089500666) +station = ('k0vg', 0.0031021197082149459) +zone = ('vaz001', 0.0022884646426170915) + +[24224] +centroid = (0.64335333794670602, -1.4359129886908149) +station = ('klnp', 0.0042246745851238889) +zone = ('vaz006', 0.0027641406330801942) + +[24225] +centroid = (0.64563062610141553, -1.4336606412911161) +station = ('klnp', 0.005447851038890927) +zone = ('vaz006', 0.0012083601357985149) + +[24226] +centroid = (0.64822266693342989, -1.4367615503198421) +station = ('klnp', 0.0040390865133125113) +zone = ('vaz003', 0.0004884045040257993) + +[24228] +centroid = (0.64868804152518178, -1.4391369434318064) +station = ('klnp', 0.0033809809408172791) +zone = ('vaz003', 0.0016434701762651743) + +[24230] +centroid = (0.64501354749108042, -1.4390933102005066) +station = ('klnp', 0.0012012797777650609) +zone = ('vaz002', 0.0023543255242970437) + +[24236] +centroid = (0.63970739749916739, -1.4267452279156942) +station = ('kvji', 0.0040516084188874733) +zone = ('vaz008', 0.0032801771630038622) + +[24237] +centroid = (0.64640291684213047, -1.4357417544379019) +station = ('klnp', 0.0038931227799626927) +zone = ('vaz003', 0.0019903120950331226) + +[24239] +centroid = (0.64782576160823391, -1.433762236906875) +station = ('klnp', 0.0058506387422786969) +zone = ('vaz004', 0.0030336454662157428) + +[24243] +centroid = (0.64181168861841931, -1.4473321194812532) +station = ('k0vg', 0.0045816816571043941) +zone = ('vaz001', 0.0030679008469902762) + +[24244] +centroid = (0.64095068279182543, -1.4448230690551711) +station = ('klnp', 0.0057104269700814468) +zone = ('vaz005', 0.0025134878132751443) + +[24245] +centroid = (0.64294458183588887, -1.440120069946162) +station = ('klnp', 0.002552485103562306) +zone = ('vaz005', 0.0025019020396294914) + +[24246] +centroid = (0.64342978336794332, -1.4441823063268866) +station = ('klnp', 0.0036020419423709272) +zone = ('vaz002', 0.0025698931532329556) + +[24248] +centroid = (0.63923308682164526, -1.4576044642333761) +station = ('k1a6', 0.003129519186965456) +zone = ('kyz087', 0.0028913081689765957) + +[24250] +centroid = (0.64152601312645285, -1.4415813294091018) +station = ('klnp', 0.0040521498852179412) +zone = ('vaz005', 0.00074784345070213934) + +[24251] +centroid = (0.63976523771057836, -1.4417494569759466) +station = ('ktri', 0.0043880340761849376) +zone = ('vaz005', 0.0010193938400192269) + +[24256] +centroid = (0.6495471449428909, -1.4361754513037299) +station = ('klnp', 0.0053209479386040768) +zone = ('vaz003', 0.0018098455395151123) + +[24258] +centroid = (0.63958239701813946, -1.4385359393038821) +station = ('ktri', 0.0031342622782567493) +zone = ('vaz005', 0.0028033990801134509) + +[24260] +centroid = (0.64630807565057713, -1.4314286095239108) +station = ('kjfz', 0.003035827378147431) +zone = ('vaz006', 0.0020322879366621149) + +[24263] +centroid = (0.63998127456539022, -1.4511958770194404) +station = ('k0vg', 0.0010166293747249447) +zone = ('vaz001', 0.00070227234537472327) + +[24265] +centroid = (0.64283769787249678, -1.4476773456072975) +station = ('k0vg', 0.0049112285406860533) +zone = ('vaz001', 0.0033749673409417457) + +[24266] +centroid = (0.64330659802933754, -1.433281590684168) +station = ('kvji', 0.0032977894134270701) +zone = ('vaz006', 0.0013568983144070618) + +[24269] +centroid = (0.64704181206811551, -1.4378141583917199) +station = ('klnp', 0.0026382529152345065) +zone = ('vaz003', 0.0010176871277524006) + +[24270] +centroid = (0.64105315107221017, -1.4355446893120591) +station = ('kvji', 0.0031463899601910468) +zone = ('tnz017', 0.0038564778683399512) + +[24271] +centroid = (0.64139338555659375, -1.4384378867065051) +station = ('klnp', 0.0044014877940178575) +zone = ('vaz005', 0.002680128393373434) + +[24272] +centroid = (0.64601428437758901, -1.4366638467883153) +station = ('klnp', 0.0030928341701159743) +zone = ('vaz003', 0.0020148436400412679) + +[24273] +centroid = (0.6451560536245059, -1.4427163344749665) +station = ('klnp', 0.0018171743421172195) +zone = ('vaz002', 0.00058674212904637625) + +[24277] +centroid = (0.64131755100059462, -1.4492940091868349) +station = ('k0vg', 0.0029691458672316292) +zone = ('vaz001', 0.0014345027872888967) + +[24279] +centroid = (0.64712810114633423, -1.4421216833455195) +station = ('klnp', 0.0021057315716624708) +zone = ('vaz002', 0.0018033979711269761) + +[24280] +centroid = (0.64500522227054846, -1.4298315808984585) +station = ('kjfz', 0.0024987469429365813) +zone = ('vaz006', 0.0024344360386076144) + +[24281] +centroid = (0.63944191546664653, -1.4545613430561837) +station = ('k0vg', 0.001738911370904504) +zone = ('tnz015', 0.0025864682084010757) + +[24282] +centroid = (0.64260682571904282, -1.4495770492316309) +station = ('k0vg', 0.0036710108096941895) +zone = ('vaz001', 0.0022286654386778136) + +[24283] +centroid = (0.64482314952298037, -1.437266945311342) +station = ('klnp', 0.0026489556576884681) +zone = ('vaz003', 0.0031443269562089074) + +[24290] +centroid = (0.63901218049822039, -1.4410824095891268) +station = ('ktri', 0.0034701884178668361) +zone = ('vaz005', 0.0018382372538910013) + +[24292] +centroid = (0.63909927242789499, -1.4238070708397168) +station = ('kgev', 0.0039347086126756622) +zone = ('ncz001', 0.0033737033935260035) + +[24293] +centroid = (0.64584334683064859, -1.4407814973727904) +station = ('klnp', 0.00043582511823934977) +zone = ('vaz002', 0.0011115629266592035) + +[24301] +centroid = (0.64695358567442729, -1.41041353633296) +station = ('kpsk', 0.0021112626644076522) +zone = ('vaz013', 0.0014091557865667924) + +[24311] +centroid = (0.64357602450596785, -1.4210822802647958) +station = ('kmkj', 0.0011016315997556308) +zone = ('vaz009', 0.0016904830901736071) + +[24312] +centroid = (0.64285670450805099, -1.411745431991742) +station = ('khlx', 0.0015189010961349642) +zone = ('vaz016', 0.0027577112429954813) + +[24313] +centroid = (0.64419912450222239, -1.4105751538216946) +station = ('khlx', 0.0025001705661418863) +zone = ('vaz013', 0.0031201791546544701) + +[24314] +centroid = (0.6483521529106353, -1.4177031483000098) +station = ('kblf', 0.0026848425402550675) +zone = ('vaz010', 0.0013875419680348658) + +[24315] +centroid = (0.64805539457791883, -1.4150095816654069) +station = ('kblf', 0.0034322107323330863) +zone = ('vaz010', 0.00078287019453111969) + +[24316] +centroid = (0.64499872964573113, -1.4253927373717388) +station = ('kjfz', 0.0025782942467805436) +zone = ('vaz009', 0.0026835508030361227) + +[24317] +centroid = (0.63881085676900284, -1.40798061716885) +station = ('kmwk', 0.0029742996348872635) +zone = ('vaz016', 0.0024356413175701582) + +[24318] +centroid = (0.64570127702953639, -1.4204732825288975) +station = ('kmkj', 0.0017530071649362025) +zone = ('vaz007', 0.0033030434189448045) + +[24319] +centroid = (0.64132451486431008, -1.4251481818369494) +station = ('kmkj', 0.0050453885132386795) +zone = ('vaz009', 0.0023847453190028811) + +[24322] +centroid = (0.64226100618105275, -1.4157011858348021) +station = ('kmkj', 0.0037427713343094133) +zone = ('vaz012', 0.0021213550273069034) + +[24323] +centroid = (0.64344137235417653, -1.4169520633097064) +station = ('kmkj', 0.0023715404794644743) +zone = ('vaz012', 0.0017326302758930612) + +[24324] +centroid = (0.64532348305964959, -1.4098225853015272) +station = ('kpsk', 0.0030661160505925178) +zone = ('vaz013', 0.0018456810240939743) + +[24325] +centroid = (0.64231313916580979, -1.4065879840520987) +station = ('khlx', 0.0032059679674429835) +zone = ('vaz016', 0.0023852979598867753) + +[24326] +centroid = (0.64105672899717658, -1.4172457324096468) +station = ('kmkj', 0.0036172426331736612) +zone = ('vaz015', 0.0013175899937038383) + +[24328] +centroid = (0.63958211776545915, -1.4084952973119704) +station = ('khlx', 0.0026664035719837402) +zone = ('vaz016', 0.0015682228365620887) + +[24330] +centroid = (0.64098609552234842, -1.4140777678310597) +station = ('khlx', 0.0029410863628434245) +zone = ('vaz015', 0.0031039877995776002) + +[24333] +centroid = (0.63948820159840936, -1.4125783205640861) +station = ('khlx', 0.0027605762971760878) +zone = ('vaz016', 0.0031864292530514328) + +[24340] +centroid = (0.64146532802836109, -1.4271190599881789) +station = ('kvji', 0.0039088911157996739) +zone = ('vaz008', 0.0027989448613552417) + +[24343] +centroid = (0.64176473926154076, -1.408322108290295) +station = ('khlx', 0.0017593933017002383) +zone = ('vaz016', 0.00095028285561328247) + +[24347] +centroid = (0.64508889335488906, -1.4076511688192437) +station = ('kpsk', 0.0030405826743531554) +zone = ('vaz013', 0.0019905366630943444) + +[24348] +centroid = (0.63951610941314874, -1.4171909116178416) +station = ('kgev', 0.0047456798214899265) +zone = ('vaz015', 0.00044803646228246455) + +[24350] +centroid = (0.64251345060406118, -1.4136160758840295) +station = ('khlx', 0.0026120078748874185) +zone = ('vaz012', 0.0021608485636054275) + +[24351] +centroid = (0.63843150945608185, -1.4096173869413704) +station = ('khlx', 0.0033465749277513087) +zone = ('vaz016', 0.0026641755990813635) + +[24352] +centroid = (0.64069310710081606, -1.4055344684090099) +station = ('khlx', 0.0041176923324897736) +zone = ('vaz016', 0.0029033466622507701) + +[24354] +centroid = (0.64279348868254371, -1.4231364106213455) +station = ('kmkj', 0.0029219290782074238) +zone = ('vaz009', 0.00025668235933812311) + +[24360] +centroid = (0.64460062004335117, -1.4119171898434306) +station = ('khlx', 0.0031100933546986133) +zone = ('vaz012', 0.0025501790286330543) + +[24361] +centroid = (0.64170983120327296, -1.4284692292442291) +station = ('kvji', 0.0030113092747730114) +zone = ('vaz008', 0.0018407841420471954) + +[24363] +centroid = (0.63908092901745639, -1.4207880177529097) +station = ('kgev', 0.0032033748749985347) +zone = ('vaz015', 0.0026177430934423169) + +[24366] +centroid = (0.65030063848756181, -1.4157863579022993) +station = ('kblf', 0.00133360522539416) +zone = ('vaz010', 0.0021960211605452319) + +[24368] +centroid = (0.64381756062115136, -1.4189961754763496) +station = ('kmkj', 0.00069526327357986428) +zone = ('vaz009', 0.0033638762460159268) + +[24370] +centroid = (0.64422666579781873, -1.4257555738699359) +station = ('kjfz', 0.0030135767833559322) +zone = ('vaz009', 0.0024372594100807881) + +[24374] +centroid = (0.64214487197262504, -1.4173847827911534) +station = ('kmkj', 0.002711998824938236) +zone = ('vaz015', 0.0023755903091432591) + +[24375] +centroid = (0.64173890838861114, -1.4204845748091579) +station = ('kmkj', 0.0023476451918751735) +zone = ('vaz009', 0.0024618653396208776) + +[24377] +centroid = (0.645777129038828, -1.4237374671091472) +station = ('kjfz', 0.0033148555985815205) +zone = ('vaz007', 0.0021845199265488695) + +[24378] +centroid = (0.64030354961177105, -1.4214549080600964) +station = ('kmkj', 0.0039450241404236606) +zone = ('vaz009', 0.0030401303957642233) + +[24380] +centroid = (0.64332314375064648, -1.4051430085110801) +station = ('kpsk', 0.0053599940510164739) +zone = ('vaz017', 0.002394270681237245) + +[24381] +centroid = (0.64105924227129962, -1.4109355992188166) +station = ('khlx', 0.00072272317912033801) +zone = ('vaz016', 0.0014499568835240663) + +[24382] +centroid = (0.64507397078978457, -1.4154858820182759) +station = ('kmkj', 0.0036235390966538753) +zone = ('vaz012', 0.00081357839815628021) + +[24401] +centroid = (0.66557090808569574, -1.3803026099320708) +station = ('kshd', 0.0034355532266839525) +zone = ('vaz025', 0.00077698533910939551) + +[24411] +centroid = (0.66505994549388181, -1.3842422369328424) +station = ('kshd', 0.0063068095658381229) +zone = ('vaz025', 0.0026992751032113948) + +[24412] +centroid = (0.6641647486672414, -1.3930509136676579) +station = ('khsp', 0.0018280200569449801) +zone = ('vaz020', 0.0010319815624005386) + +[24413] +centroid = (0.67271115477535959, -1.3892483299197529) +station = ('kekn', 0.0068519069685051264) +zone = ('vaz503', 0.0022345478317239878) + +[24415] +centroid = (0.66191611881884949, -1.384343727828846) +station = ('kshd', 0.0082688526514873399) +zone = ('vaz024', 0.0026384024391628035) + +[24416] +centroid = (0.65838177472368331, -1.3851083740274373) +station = ('klyh', 0.007424871394098735) +zone = ('vaz024', 0.0019809573951162277) + +[24421] +centroid = (0.66749747232721712, -1.3830899705606756) +station = ('kshd', 0.0047466929463825646) +zone = ('vaz025', 0.0021407186182295242) + +[24422] +centroid = (0.66026508970634035, -1.3920542608515989) +station = ('khsp', 0.0023259536531200389) +zone = ('vaz020', 0.0039920034944368786) + +[24426] +centroid = (0.65909781350260654, -1.3977447672513863) +station = ('khsp', 0.0047547792737770989) +zone = ('vaz019', 0.0011568125862288468) + +[24430] +centroid = (0.66474327295439994, -1.3850195367685105) +station = ('kshd', 0.0069955913654547253) +zone = ('vaz025', 0.0033857308222079692) + +[24431] +centroid = (0.66619236747245336, -1.3760671147165011) +station = ('kshd', 0.001860164821877617) +zone = ('vaz025', 0.0039272758678948359) + +[24432] +centroid = (0.66580823795738187, -1.3865481310339922) +station = ('khsp', 0.0063773896374880431) +zone = ('vaz504', 0.0033836251384501055) + +[24433] +centroid = (0.67061515397005456, -1.3862144066277184) +station = ('kshd', 0.0076797647512682849) +zone = ('vaz504', 0.0020975662960183894) + +[24435] +centroid = (0.6610022644225052, -1.3840799213124071) +station = ('kshd', 0.0088201131461215204) +zone = ('vaz024', 0.0022431485404582579) + +[24437] +centroid = (0.66707892491929632, -1.3776839528289635) +station = ('kshd', 0.00093654713894745101) +zone = ('vaz025', 0.0028386085141833984) + +[24439] +centroid = (0.66311701006397672, -1.3873501098252836) +station = ('khsp', 0.0047946990980902724) +zone = ('vaz024', 0.0031999557202728349) + +[24440] +centroid = (0.66321202578845528, -1.3816975119768498) +station = ('kshd', 0.0059213565643890529) +zone = ('vaz025', 0.002901718627686253) + +[24441] +centroid = (0.66717072923795129, -1.3757535663163802) +station = ('kshd', 0.0012500145001867176) +zone = ('vaz025', 0.0043131014720492068) + +[24442] +centroid = (0.66972714789993248, -1.3855223486727177) +station = ('kshd', 0.0068879786492810641) +zone = ('vaz504', 0.0020254065567309855) + +[24445] +centroid = (0.6622167517825055, -1.394377241726126) +station = ('khsp', 0.00081784433311980244) +zone = ('vaz020', 0.0029044442646633992) + +[24448] +centroid = (0.65968401723847403, -1.3925724491065161) +station = ('khsp', 0.0027389137779612409) +zone = ('vaz019', 0.0030138065579556209) + +[24450] +centroid = (0.65936781593789007, -1.3880006289440872) +station = ('khsp', 0.0051742676285617432) +zone = ('vaz024', 0.0012587743132566533) + +[24457] +centroid = (0.65911610455316749, -1.3952390154975904) +station = ('khsp', 0.0035619861549374583) +zone = ('vaz019', 0.00098689420443020398) + +[24458] +centroid = (0.66874320108082808, -1.3880211714693831) +station = ('khsp', 0.0076446283108384319) +zone = ('vaz504', 0.00027548536181183473) + +[24459] +centroid = (0.66358887728054594, -1.3839120555449502) +station = ('kshd', 0.0068853066327311382) +zone = ('vaz025', 0.0033458795900680738) + +[24460] +centroid = (0.66357208721314176, -1.3902674800298698) +station = ('khsp', 0.0027216870102189502) +zone = ('vaz020', 0.0013463775346244358) + +[24464] +centroid = (0.66104228482225347, -1.3804492001359459) +station = ('kshd', 0.0073378472111023524) +zone = ('vaz036', 0.0032393149097055549) + +[24465] +centroid = (0.66993704119577724, -1.3901156189316537) +station = ('khsp', 0.0080006469798153974) +zone = ('vaz503', 0.00074149916740478736) + +[24467] +centroid = (0.66767544355104291, -1.378309566099341) +station = ('kshd', 0.00099844436425498384) +zone = ('vaz025', 0.0026921347662194135) + +[24471] +centroid = (0.66869166150801662, -1.3750433394838664) +station = ('kshd', 0.0017824650310833215) +zone = ('vaz026', 0.0036654150303722507) + +[24472] +centroid = (0.66220111363240775, -1.3824422963285532) +station = ('kshd', 0.007081507942259117) +zone = ('vaz024', 0.0039693054717716255) + +[24473] +centroid = (0.66208600916823857, -1.3860597879092842) +station = ('khsp', 0.0057590034929008481) +zone = ('vaz024', 0.0021572322803257741) + +[24474] +centroid = (0.65983240513147856, -1.393567391499908) +station = ('khsp', 0.0025256413142582413) +zone = ('vaz019', 0.0022451333999229752) + +[24476] +centroid = (0.66278065021053234, -1.3827771202922559) +station = ('kshd', 0.0067964811142018234) +zone = ('vaz025', 0.0035563530434630222) + +[24477] +centroid = (0.66331023546546497, -1.3795473186982701) +station = ('kshd', 0.004968841091649392) +zone = ('vaz025', 0.0030056014872636514) + +[24479] +centroid = (0.66608647834673484, -1.3829822139326577) +station = ('kshd', 0.004982976850431948) +zone = ('vaz025', 0.0015115593082081576) + +[24482] +centroid = (0.66681935955293969, -1.378752094331184) +station = ('kshd', 0.0016970623321296537) +zone = ('vaz025', 0.0019626324123619538) + +[24483] +centroid = (0.65994970871050507, -1.3828340180258709) +station = ('klyh', 0.0086613295467178799) +zone = ('vaz024', 0.0029776418994228609) + +[24484] +centroid = (0.66602736404496976, -1.3924953753667482) +station = ('khsp', 0.0037366617941890765) +zone = ('vaz020', 0.0018732836005271598) + +[24485] +centroid = (0.66789566919605958, -1.3846224743636819) +station = ('kshd', 0.0059338030268595039) +zone = ('vaz504', 0.0028310144449435852) + +[24486] +centroid = (0.66840673650762861, -1.3774929614489178) +station = ('kshd', 0.00062540501064395522) +zone = ('vaz025', 0.0036484197020263359) + +[24487] +centroid = (0.6666000414791341, -1.3889859196667156) +station = ('khsp', 0.005465310800611075) +zone = ('vaz504', 0.0025473381444860608) + +[24501] +centroid = (0.6520481494011211, -1.381282420320848) +station = ('klyh', 0.0011032771393564818) +zone = ('vaz045', 0.0024368297386076617) + +[24502] +centroid = (0.65206200731538211, -1.3826773921787969) +station = ('klyh', 0.00081994168443539435) +zone = ('vaz045', 0.0028933985692310535) + +[24503] +centroid = (0.65369587984134392, -1.383168824536281) +station = ('klyh', 0.0024944347298196633) +zone = ('vaz035', 0.0030038879479565043) + +[24504] +centroid = (0.65214662087751862, -1.3796512181486416) +station = ('klyh', 0.0022707495134423224) +zone = ('vaz045', 0.0026024939737973427) + +[24517] +centroid = (0.64834751033482507, -1.3829494715558901) +station = ('klyh', 0.0029960439509979331) +zone = ('vaz045', 0.00226387040434572) + +[24520] +centroid = (0.63865892585761674, -1.3793754910334113) +station = ('kdan', 0.0042417772922893216) +zone = ('vaz058', 0.0033277574534261766) + +[24521] +centroid = (0.65681316005845347, -1.3805707099584696) +station = ('klyh', 0.0056828188150138603) +zone = ('vaz035', 0.00078076484226909863) + +[24522] +centroid = (0.6523483111258791, -1.3749493011437686) +station = ('klyh', 0.0059377608908565581) +zone = ('vaz046', 0.0004689167901636378) + +[24523] +centroid = (0.65178952651256061, -1.3879537843069636) +station = ('klyh', 0.0045217031301000186) +zone = ('vaz034', 0.00051644293310451627) + +[24526] +centroid = (0.65526039298283167, -1.3859098641265379) +station = ('klyh', 0.004889656287030592) +zone = ('vaz034', 0.0043065842869992954) + +[24527] +centroid = (0.64117755814129218, -1.3847742656487281) +station = ('kdan', 0.0029711505421385876) +zone = ('vaz044', 0.0015143826371953352) + +[24528] +centroid = (0.64716260630564615, -1.3766498976070343) +station = ('klyh', 0.0061129312947036107) +zone = ('vaz059', 0.0032173715501573859) + +[24529] +centroid = (0.639255095423513, -1.3726448033060206) +station = ('khnz', 0.0049097981758447788) +zone = ('vaz058', 0.004739919087281959) + +[24530] +centroid = (0.64239937588415086, -1.3896177288559373) +station = ('kdan', 0.0057942150863213053) +zone = ('vaz044', 0.0030979401224793079) + +[24531] +centroid = (0.64301881068897615, -1.3867230479316273) +station = ('kdan', 0.0050949450456190901) +zone = ('vaz044', 0.00095030021300873191) + +[24534] +centroid = (0.64345756900963502, -1.3748047006152408) +station = ('khnz', 0.0094521198523663304) +zone = ('vaz058', 0.0029091030707912146) + +[24536] +centroid = (0.65442322835382005, -1.3845091675886425) +station = ('klyh', 0.0035832994859859016) +zone = ('vaz035', 0.0031510772696682096) + +[24538] +centroid = (0.65179767720016746, -1.3781518581481307) +station = ('klyh', 0.0033365096594842446) +zone = ('vaz046', 0.0021358956196123684) + +[24539] +centroid = (0.64323395742586953, -1.3773184634303035) +station = ('kdan', 0.0077193721265758301) +zone = ('vaz058', 0.0015598101652517797) + +[24540] +centroid = (0.63939274954161784, -1.3862583191116986) +station = ('kdan', 0.0017650006346181934) +zone = ('vaz044', 0.0031090086541770809) + +[24541] +centroid = (0.63859541332613667, -1.3878003000525432) +station = ('kdan', 0.002576792601059627) +zone = ('vaz044', 0.0042135427430618011) + +[24549] +centroid = (0.64078012921732053, -1.3876274950033032) +station = ('kdan', 0.0035221017385045359) +zone = ('vaz044', 0.002266202891394353) + +[24550] +centroid = (0.64995122357131263, -1.3831111064979176) +station = ('klyh', 0.001493802505161826) +zone = ('vaz045', 0.0019887297937271988) + +[24551] +centroid = (0.65199104222799598, -1.3844718873558197) +station = ('klyh', 0.001859894367936502) +zone = ('vaz034', 0.0028641263491166226) + +[24553] +centroid = (0.65534373245461452, -1.375542782902617) +station = ('kfvx', 0.0062959526514073591) +zone = ('vaz046', 0.0030758088547511333) + +[24554] +centroid = (0.64812515538812099, -1.3800295357173038) +station = ('klyh', 0.00365266981027557) +zone = ('vaz045', 0.0016152700167135587) + +[24555] +centroid = (0.65746254471324306, -1.3872590385449146) +station = ('khsp', 0.0068631091412021984) +zone = ('vaz024', 0.0025623431591574861) + +[24556] +centroid = (0.65231363143364196, -1.3857663107955616) +station = ('klyh', 0.0029360679272848644) +zone = ('vaz034', 0.0020302047929168293) + +[24557] +centroid = (0.64524576354805829, -1.3841582167826516) +station = ('klyh', 0.0062313933091079892) +zone = ('vaz044', 0.0030491808026980745) + +[24558] +centroid = (0.64183333070114401, -1.3780066118477798) +station = ('kdan', 0.0064297928466380836) +zone = ('vaz058', 0.00027325003195160673) + +[24562] +centroid = (0.65789280328044475, -1.3723093335704946) +station = ('kfvx', 0.0065859312774868596) +zone = ('vaz047', 0.0025339579933589432) + +[24563] +centroid = (0.64686265402039844, -1.3836815848172244) +station = ('klyh', 0.0045703962825628386) +zone = ('vaz045', 0.0037065160074300062) + +[24565] +centroid = (0.64312908059111717, -1.3823125310986675) +station = ('kdan', 0.0052588320084671937) +zone = ('vaz044', 0.0028277573770138969) + +[24566] +centroid = (0.6410913388762437, -1.3832194914444664) +station = ('kdan', 0.0030961625668643003) +zone = ('vaz044', 0.0024538760787559599) + +[24569] +centroid = (0.64651505424657119, -1.3810060648870872) +station = ('klyh', 0.0048936023729743289) +zone = ('vaz045', 0.0031641441517168581) + +[24570] +centroid = (0.65181869096436151, -1.3862182812586581) +station = ('klyh', 0.003158072877481747) +zone = ('vaz034', 0.0014878686083237549) + +[24571] +centroid = (0.64809243046464615, -1.3853157889557441) +station = ('klyh', 0.0040054733730260509) +zone = ('vaz034', 0.0038140450793695112) + +[24572] +centroid = (0.65388646979566167, -1.3804698822875818) +station = ('klyh', 0.0029686007724294811) +zone = ('vaz035', 0.0025373027257492918) + +[24574] +centroid = (0.65582753772326718, -1.3832321974414208) +station = ('klyh', 0.0045888136707643119) +zone = ('vaz035', 0.0015786029478300604) + +[24577] +centroid = (0.64467835700823495, -1.3785071722772517) +station = ('klyh', 0.0072785460440643211) +zone = ('vaz058', 0.00304159825009372) + +[24578] +centroid = (0.65728895426583966, -1.3886233449679062) +station = ('khsp', 0.006293836833583007) +zone = ('vaz024', 0.0031225911256621262) + +[24579] +centroid = (0.65599601435596222, -1.3875838443187107) +station = ('klyh', 0.0062972209759309741) +zone = ('vaz024', 0.0040508424197257253) + +[24580] +centroid = (0.6384249295648019, -1.3731049942698936) +station = ('khnz', 0.0042985539222272053) +zone = ('ncz008', 0.0048089033767731992) + +[24581] +centroid = (0.65720884365317311, -1.37542069712144) +station = ('kfvx', 0.0074154167057000593) +zone = ('vaz036', 0.0025619549540937467) + +[24586] +centroid = (0.63891344722243515, -1.3836378468661692) +station = ('kdan', 0.0010623396314809654) +zone = ('ncz006', 0.0038138502100165199) + +[24588] +centroid = (0.65034722132529765, -1.3804896743212995) +station = ('klyh', 0.0017266856311216514) +zone = ('vaz045', 0.00069188692610505512) + +[24589] +centroid = (0.64159713529347162, -1.3745872325904427) +station = ('khnz', 0.0076697458998821293) +zone = ('vaz058', 0.0025002594837206607) + +[24590] +centroid = (0.65967199191992776, -1.3699139738918875) +station = ('kcho', 0.005906304133401763) +zone = ('vaz048', 0.0030405835882872235) + +[24592] +centroid = (0.64011337853647376, -1.3782089304146707) +station = ('kdan', 0.0054926216435466245) +zone = ('vaz058', 0.0016422141231688715) + +[24593] +centroid = (0.65140033554265853, -1.3771124098588128) +station = ('klyh', 0.0041273762588709675) +zone = ('vaz046', 0.0015277298379293717) + +[24594] +centroid = (0.63960807081143622, -1.3819260104825208) +station = ('kdan', 0.0025811498456056172) +zone = ('vaz058', 0.0039809161232664562) + +[24595] +centroid = (0.65554146080557285, -1.3802431291111628) +station = ('klyh', 0.0045464563623947617) +zone = ('vaz035', 0.0011735097704702261) + +[24597] +centroid = (0.64197587174115445, -1.3807211747932839) +station = ('kdan', 0.004899906679522191) +zone = ('vaz058', 0.0024308045229132929) + +[24598] +centroid = (0.63887201310599273, -1.3751100808744625) +station = ('khnz', 0.005584006423526698) +zone = ('vaz058', 0.0035154347696248135) + +[24599] +centroid = (0.65665499832163776, -1.3739910979311312) +station = ('kfvx', 0.0062440525146654031) +zone = ('vaz047', 0.0028441447615872623) + +[24601] +centroid = (0.64915308450437559, -1.4250481221109323) +station = ('kjfz', 0.0031382920519146458) +zone = ('vaz007', 0.0017202583897792858) + +[24602] +centroid = (0.64896949332035836, -1.4252098617727149) +station = ('kjfz', 0.0029157614393663968) +zone = ('vaz007', 0.0016991935929570375) + +[24603] +centroid = (0.65193878707019126, -1.4346117933735756) +station = ('kjfz', 0.0075298039261177622) +zone = ('vaz004', 0.0027017589109746944) + +[24604] +centroid = (0.64947162454615703, -1.4231080490210006) +station = ('kjfz', 0.0045074166919576971) +zone = ('vaz007', 0.001550097480247953) + +[24605] +centroid = (0.65019391160380235, -1.4201982884519533) +station = ('kblf', 0.0025152693767354528) +zone = ('vaz007', 0.0034557422294468057) + +[24606] +centroid = (0.65070997055703217, -1.4205600952058917) +station = ('kblf', 0.0026838972016449813) +zone = ('vaz007', 0.0036173272633477764) + +[24607] +centroid = (0.65089494055115837, -1.4357518948008559) +station = ('klnp', 0.0065960792730763509) +zone = ('vaz003', 0.0031715746383232171) + +[24609] +centroid = (0.64594194048009379, -1.4278196700565144) +station = ('kjfz', 0.0008842062685592958) +zone = ('vaz007', 0.0039901189285793722) + +[24612] +centroid = (0.6474010880946387, -1.4283450141613645) +station = ('kjfz', 0.00078795537927543128) +zone = ('vaz007', 0.0039023258036459162) + +[24613] +centroid = (0.65039968592261255, -1.4195963767528181) +station = ('kblf', 0.0019957526408280008) +zone = ('vaz010', 0.0036736865308348108) + +[24614] +centroid = (0.65098428395556796, -1.4324106539341304) +station = ('kjfz', 0.0056178107171384788) +zone = ('vaz004', 0.00074183950475491907) + +[24620] +centroid = (0.65329986463406653, -1.4313743995973438) +station = ('ki16', 0.0069241708103606131) +zone = ('vaz004', 0.0028946757339711571) + +[24622] +centroid = (0.64952047631192034, -1.4274960336533171) +station = ('kjfz', 0.0027054044281880391) +zone = ('wvz033', 0.0034241793052934995) + +[24628] +centroid = (0.65069990000724809, -1.4350613378290118) +station = ('klnp', 0.0067741119119299363) +zone = ('vaz004', 0.0026110611285109385) + +[24630] +centroid = (0.64888421653310591, -1.4218419871816039) +station = ('kblf', 0.0042571800898294843) +zone = ('vaz007', 0.0016170209522388648) + +[24631] +centroid = (0.64956452842224077, -1.431003988370193) +station = ('kjfz', 0.0038160333786045031) +zone = ('vaz004', 0.0010677311785139295) + +[24634] +centroid = (0.65060303423376242, -1.4292150782467763) +station = ('kjfz', 0.0039769834066591854) +zone = ('vaz004', 0.002063367347802244) + +[24635] +centroid = (0.65122513939234328, -1.4200519600474659) +station = ('kblf', 0.0022730355547152278) +zone = ('vaz007', 0.0042717043086718453) + +[24637] +centroid = (0.64683790525160512, -1.4261764949256392) +station = ('kjfz', 0.001199408274108228) +zone = ('vaz007', 0.0024081077700882493) + +[24639] +centroid = (0.64857094738566545, -1.4292187957980831) +station = ('kjfz', 0.0021392679083050196) +zone = ('vaz004', 0.0027671524471171811) + +[24641] +centroid = (0.64772338059431189, -1.4277221061513281) +station = ('kjfz', 0.00090500342573064814) +zone = ('vaz007', 0.0033737156569426706) + +[24646] +centroid = (0.64827455557209179, -1.4315982555272047) +station = ('kjfz', 0.0034478934443600952) +zone = ('vaz004', 0.0021562105991658016) + +[24649] +centroid = (0.64686921645838591, -1.4294235054660496) +station = ('kjfz', 0.0013927403750376821) +zone = ('vaz006', 0.0035374965143361945) + +[24651] +centroid = (0.64709005296864075, -1.4224973583157279) +station = ('kmkj', 0.0037337178335985809) +zone = ('vaz007', 0.0011774142760101044) + +[24656] +centroid = (0.64882710935998056, -1.4333515434805881) +station = ('kjfz', 0.0049487472299875497) +zone = ('vaz004', 0.0020205599123002088) + +[24657] +centroid = (0.64971357954036102, -1.4286354718554817) +station = ('kjfz', 0.0029932217236569407) +zone = ('vaz004', 0.0026162926292858171) + +[24701] +centroid = (0.65111167553767113, -1.4172935893377367) +station = ('kblf', 0.00012447207450575954) +zone = ('wvz042', 0.0021686057595438997) + +[24712] +centroid = (0.65385372741889436, -1.4139786680361313) +station = ('kblf', 0.0038316124145552979) +zone = ('wvz042', 0.0016714379166985166) + +[24714] +centroid = (0.65411641692461209, -1.4170185079943296) +station = ('kblf', 0.0031122248691204742) +zone = ('wvz042', 0.001663647698352571) + +[24715] +centroid = (0.65171273202547297, -1.4193822597601833) +station = ('kblf', 0.0018677487740532274) +zone = ('wvz042', 0.0031681239347257201) + +[24716] +centroid = (0.65415102680367898, -1.4202080622957642) +station = ('ki16', 0.0033338363263203724) +zone = ('wvz034', 0.0033346939451559467) + +[24719] +centroid = (0.65427449139496519, -1.4194191211139853) +station = ('kblf', 0.0037093106695501895) +zone = ('wvz042', 0.0033066455372490295) + +[24724] +centroid = (0.65154678612019323, -1.4189484407213075) +station = ('kblf', 0.0014859010421206078) +zone = ('wvz042', 0.0029193043356137692) + +[24726] +centroid = (0.65475592301583518, -1.4198615446260734) +station = ('ki16', 0.0032308364121553879) +zone = ('wvz034', 0.0031891711796457043) + +[24729] +centroid = (0.65369479773720773, -1.4182102188075913) +station = ('kblf', 0.002802678022046228) +zone = ('wvz042', 0.0021938779642854352) + +[24731] +centroid = (0.65271764024889367, -1.4163532582966398) +station = ('kblf', 0.0018397041835191566) +zone = ('wvz042', 0.00056543657406964468) + +[24733] +centroid = (0.65363920900053163, -1.4172980050207442) +station = ('kblf', 0.0026323839222085299) +zone = ('wvz042', 0.001521238319739895) + +[24736] +centroid = (0.65352576259915207, -1.4185602445890788) +station = ('kblf', 0.0027378897753180817) +zone = ('wvz042', 0.0023998074789535763) + +[24737] +centroid = (0.65192861180065209, -1.4180919029375989) +station = ('kblf', 0.001158719443576002) +zone = ('wvz042', 0.0021398093105312699) + +[24738] +centroid = (0.65104343316391822, -1.4191219788088334) +station = ('kblf', 0.0015234301396289446) +zone = ('wvz042', 0.0032908048308307809) + +[24740] +centroid = (0.65229518330344849, -1.4137978344723321) +station = ('kblf', 0.0030010054892678096) +zone = ('wvz042', 0.0015805751817144996) + +[24747] +centroid = (0.65243515870945834, -1.4191104072758927) +station = ('kblf', 0.0020800258722661041) +zone = ('wvz042', 0.0027715895295618211) + +[24801] +centroid = (0.65360630954413168, -1.4237870519131965) +station = ('ki16', 0.0026538286335261512) +zone = ('wvz033', 0.0016238561201208242) + +[24808] +centroid = (0.65153186355508863, -1.4210890172357087) +station = ('kblf', 0.0031313078989081218) +zone = ('wvz033', 0.003317235727323755) + +[24811] +centroid = (0.65273600111262464, -1.4271742822057119) +station = ('ki16', 0.004576830885690988) +zone = ('wvz033', 0.001667786282684) + +[24813] +centroid = (0.65200983942403989, -1.4262850369518207) +station = ('ki16', 0.0047892356710435152) +zone = ('wvz033', 0.00099331165983386916) + +[24815] +centroid = (0.64998970808131906, -1.4252289382214391) +station = ('kjfz', 0.0037239452040644613) +zone = ('wvz033', 0.0023896398098401592) + +[24816] +centroid = (0.65381957132543278, -1.4260376539836432) +station = ('ki16', 0.0031665844293283876) +zone = ('wvz033', 0.0016139321124553855) + +[24817] +centroid = (0.65192077527231063, -1.4277621614576612) +station = ('kjfz', 0.0051021810364665207) +zone = ('wvz033', 0.0021458822348765969) + +[24818] +centroid = (0.65629095754625677, -1.4246240594625754) +station = ('ki16', 0.00091056606654440076) +zone = ('wvz034', 0.0010556044499613066) + +[24822] +centroid = (0.65707989872803585, -1.4258855659926244) +station = ('ki16', 0.0020816343744248125) +zone = ('wvz034', 0.0021538734545914315) + +[24823] +centroid = (0.65749985985265069, -1.4268407672389483) +station = ('ki16', 0.0029437252172258058) +zone = ('wvz034', 0.0030074377006832596) + +[24826] +centroid = (0.65089026306876308, -1.4246002531715782) +station = ('kjfz', 0.0047532976740853735) +zone = ('wvz033', 0.0015448524963503135) + +[24827] +centroid = (0.65860782976840171, -1.4250191670986418) +station = ('ki16', 0.0026566640009161153) +zone = ('wvz034', 0.0025837025443258186) + +[24828] +centroid = (0.65447951522219694, -1.4248281931718887) +station = ('ki16', 0.0020686074571573429) +zone = ('wvz033', 0.0021147190211330807) + +[24830] +centroid = (0.65141138347682359, -1.4225499799926755) +station = ('ki16', 0.0048927893135023073) +zone = ('wvz033', 0.0022630812998856008) + +[24831] +centroid = (0.65265051488586201, -1.4208993348526018) +station = ('kblf', 0.0033634654316666386) +zone = ('wvz033', 0.0033679316888019246) + +[24834] +centroid = (0.65533141043009535, -1.4247217455408097) +station = ('ki16', 0.0013476517311389916) +zone = ('wvz034', 0.0015605515982534115) + +[24836] +centroid = (0.65159947761031101, -1.4234668189020405) +station = ('ki16', 0.0046491749790900788) +zone = ('wvz033', 0.0015301793312769065) + +[24839] +centroid = (0.65555748292810612, -1.4266039784193303) +station = ('ki16', 0.0025734705021413615) +zone = ('wvz034', 0.0027537221163861443) + +[24843] +centroid = (0.65427424704886983, -1.4261104167601588) +station = ('ki16', 0.0028742569618955965) +zone = ('wvz033', 0.0020517003619770534) + +[24844] +centroid = (0.65384313327033472, -1.4277949911008914) +station = ('ki16', 0.0041853852932742831) +zone = ('wvz033', 0.0025780326177897183) + +[24845] +centroid = (0.65481180845848408, -1.4279907123232098) +station = ('ki16', 0.0038565824316463323) +zone = ('wvz033', 0.0033321182907777211) + +[24846] +centroid = (0.65501372559964732, -1.4296491067251622) +station = ('ki16', 0.0050466227874102288) +zone = ('wvz033', 0.0044554083170302962) + +[24847] +centroid = (0.65584427543079393, -1.4210194309584314) +station = ('ki16', 0.001988161394866485) +zone = ('wvz034', 0.0018941464386212461) + +[24848] +centroid = (0.65107743217774705, -1.4217559075428954) +station = ('kblf', 0.0036188274863976333) +zone = ('wvz033', 0.0029769604723737836) + +[24849] +centroid = (0.65739149235939431, -1.4231889101252455) +station = ('ki16', 0.0011652402284128476) +zone = ('wvz034', 0.00098410296060039864) + +[24850] +centroid = (0.65131582670027688, -1.428472109037495) +station = ('kjfz', 0.0045409402859405718) +zone = ('vaz004', 0.0027921417676859731) + +[24851] +centroid = (0.6562677272139128, -1.4282672422898959) +station = ('ki16', 0.0037960613201997034) +zone = ('wvz025', 0.0042561234668588551) + +[24853] +centroid = (0.65337180710583376, -1.4226472297385964) +station = ('ki16', 0.0029509844105291131) +zone = ('wvz033', 0.0022043231023671228) + +[24854] +centroid = (0.65892607310421036, -1.4234198346385769) +station = ('ki16', 0.0026777951328367869) +zone = ('wvz034', 0.0025165016323888717) + +[24857] +centroid = (0.65750933699048908, -1.4252411380729106) +station = ('ki16', 0.0018823504482128168) +zone = ('wvz034', 0.0018887854037723183) + +[24860] +centroid = (0.65729391100091539, -1.4243214891834495) +station = ('ki16', 0.0012413493224941283) +zone = ('wvz034', 0.0011970420156004855) + +[24861] +centroid = (0.65189707370106864, -1.4200545082281739) +station = ('kblf', 0.0024324465642099327) +zone = ('wvz042', 0.0036187707429353698) + +[24862] +centroid = (0.65396057647570138, -1.4305516688412463) +station = ('ki16', 0.0060594854503120497) +zone = ('vaz004', 0.003671898143381723) + +[24866] +centroid = (0.65010256107075304, -1.4238452411904581) +station = ('kjfz', 0.004485494407494464) +zone = ('vaz007', 0.0021665031558808561) + +[24867] +centroid = (0.65617862815559846, -1.4214738797890656) +station = ('ki16', 0.0015878352731536324) +zone = ('wvz034', 0.001465589383743767) + +[24868] +centroid = (0.65343120066027904, -1.4205403206254665) +station = ('kblf', 0.0035901463128506805) +zone = ('wvz034', 0.0036976584455408077) + +[24869] +centroid = (0.65559207535388064, -1.4283447349086844) +station = ('ki16', 0.0039138768911963061) +zone = ('wvz033', 0.0041066239662678463) + +[24870] +centroid = (0.65913041625303392, -1.4226242786589329) +station = ('ki16', 0.0029595508173348231) +zone = ('wvz034', 0.0027711935581560504) + +[24871] +centroid = (0.65204280869361009, -1.4218901408156666) +station = ('ki16', 0.0043900848818155353) +zone = ('wvz033', 0.0025919732461681028) + +[24872] +centroid = (0.65361468712454118, -1.4297819437345318) +station = ('ki16', 0.0056523894912424251) +zone = ('vaz004', 0.0035698244980994511) + +[24873] +centroid = (0.65216231138749414, -1.4290440534333735) +station = ('kjfz', 0.0054527060380363821) +zone = ('vaz004', 0.0027958535529894824) + +[24874] +centroid = (0.65555528381324857, -1.4228910696883927) +station = ('ki16', 0.00083404550874286636) +zone = ('wvz034', 0.00091543157301862633) + +[24878] +centroid = (0.65337159766632336, -1.4245535132542098) +station = ('ki16', 0.0030013057847745684) +zone = ('wvz033', 0.0010922089536710964) + +[24879] +centroid = (0.65125034194674203, -1.4269582628041926) +station = ('kjfz', 0.0044683999194042616) +zone = ('wvz033', 0.0018431948257735743) + +[24880] +centroid = (0.65714218952903947, -1.4229762941157675) +station = ('ki16', 0.00097726734621739544) +zone = ('wvz034', 0.00077457653577005291) + +[24881] +centroid = (0.65330101655137274, -1.4256650261883423) +station = ('ki16', 0.0034210062409667482) +zone = ('wvz033', 0.0010182061984798391) + +[24882] +centroid = (0.65669062049167104, -1.427085968545561) +station = ('ki16', 0.0028936007945778467) +zone = ('wvz034', 0.0030116144115209368) + +[24884] +centroid = (0.64984313533073657, -1.424285919373294) +station = ('kjfz', 0.0040572806054791312) +zone = ('vaz007', 0.0019904458679779078) + +[24887] +centroid = (0.65228792273376013, -1.4207708437130699) +station = ('kblf', 0.0031090440760118149) +zone = ('wvz033', 0.0034606225497289763) + +[24888] +centroid = (0.65262721474034791, -1.4221516609507854) +station = ('ki16', 0.0037707776499815594) +zone = ('wvz033', 0.0023749763858443543) + +[24892] +centroid = (0.65147800269437217, -1.4257208069112361) +station = ('kjfz', 0.004913266314774129) +zone = ('wvz033', 0.0010172245382706177) + +[24894] +centroid = (0.65057086781564821, -1.4261726028414075) +station = ('kjfz', 0.0039392837489972618) +zone = ('wvz033', 0.0019900784565297855) + +[24898] +centroid = (0.65613600721526466, -1.4243678974882603) +station = ('ki16', 0.00071559502013489155) +zone = ('wvz034', 0.00088951730743964486) + +[24901] +centroid = (0.66070667546038753, -1.404147856678178) +station = ('klwb', 0.00073825281165134694) +zone = ('wvz045', 0.0015917498068014028) + +[24910] +centroid = (0.65879103697998365, -1.4077183116355678) +station = ('klwb', 0.0041148776695261718) +zone = ('wvz043', 0.0032051255690794529) + +[24915] +centroid = (0.67135257303231466, -1.3923818766054907) +station = ('kekn', 0.0073560585641578415) +zone = ('vaz503', 0.001730580369698601) + +[24916] +centroid = (0.66023301055468875, -1.4064055622386802) +station = ('klwb', 0.0025830149260422188) +zone = ('wvz045', 0.0027173668685744508) + +[24918] +centroid = (0.65486676887662942, -1.4092252987249096) +station = ('kpsk', 0.0068177442683023618) +zone = ('wvz043', 0.0028471188231406928) + +[24920] +centroid = (0.67334940422952139, -1.3911009271075747) +station = ('kekn', 0.0056527362612506741) +zone = ('vaz503', 0.0027576964356488582) + +[24924] +centroid = (0.66674677130934934, -1.3991527243589703) +station = ('khsp', 0.0063358432705809889) +zone = ('wvz046', 0.0031350401705814912) + +[24925] +centroid = (0.65824581357495304, -1.4028334666717934) +station = ('klwb', 0.0026720342633906138) +zone = ('wvz044', 0.0036111917787473467) + +[24927] +centroid = (0.66977465576217166, -1.3955162785025625) +station = ('khsp', 0.0076143338253047369) +zone = ('wvz046', 0.0010262784315827548) + +[24931] +centroid = (0.66181159104994747, -1.4065364270259948) +station = ('klwb', 0.0027536533123221855) +zone = ('wvz045', 0.0019304275041913475) + +[24934] +centroid = (0.66904716762335537, -1.3943612719634699) +station = ('khsp', 0.006741376882859351) +zone = ('wvz046', 0.001597793979916878) + +[24935] +centroid = (0.65565963704922536, -1.41037426642479) +station = ('kbkw', 0.0058926498858111621) +zone = ('wvz043', 0.0017067278238641992) + +[24938] +centroid = (0.66136613066496097, -1.4030211419262606) +station = ('klwb', 0.00050027794183736822) +zone = ('wvz045', 0.0012990529474953252) + +[24941] +centroid = (0.6560390367220239, -1.4023103042285083) +station = ('klwb', 0.0049148574595836167) +zone = ('vaz018', 0.0026331116476019617) + +[24944] +centroid = (0.67002538976251313, -1.3924875039318216) +station = ('khsp', 0.0077031554349998961) +zone = ('vaz503', 0.0017809289891799322) + +[24945] +centroid = (0.6552311238112758, -1.4080826491169216) +station = ('kbcb', 0.0067299509209649442) +zone = ('wvz044', 0.0017823083831810644) + +[24946] +centroid = (0.66644385196437317, -1.400841609662955) +station = ('klwb', 0.0058600208767314978) +zone = ('wvz046', 0.0043350374461719457) + +[24951] +centroid = (0.65422396411311989, -1.4074964628343469) +station = ('kbcb', 0.0056327908005063205) +zone = ('wvz044', 0.0018510779501963732) + +[24954] +centroid = (0.66715048341862815, -1.3972416411879141) +station = ('khsp', 0.0056904494596505912) +zone = ('wvz046', 0.0019797492197328494) + +[24957] +centroid = (0.66122006405986167, -1.4036863218107807) +station = ('klwb', 0.00047457781476320667) +zone = ('wvz045', 0.0011432811785563237) + +[24962] +centroid = (0.65733321581567028, -1.408800834650825) +station = ('klwb', 0.0056568522450797598) +zone = ('wvz043', 0.0019412901359001375) + +[24963] +centroid = (0.65338871934628551, -1.4094958422122614) +station = ('kpsk', 0.0053908847906558319) +zone = ('vaz011', 0.0022645202909403052) + +[24966] +centroid = (0.66458156819920278, -1.402583867135466) +station = ('klwb', 0.0037202142515205621) +zone = ('wvz045', 0.0026020879239928387) + +[24970] +centroid = (0.6584793037222848, -1.4045449539895916) +station = ('klwb', 0.0026278772944622595) +zone = ('wvz044', 0.0031094233028030357) + +[24974] +centroid = (0.65694297764821685, -1.4041055149905246) +station = ('klwb', 0.0040131639750202903) +zone = ('wvz044', 0.0019724473747259807) + +[24976] +centroid = (0.6572381128247291, -1.4051944782707213) +station = ('klwb', 0.0039712441495759849) +zone = ('wvz044', 0.0017687264951836579) + +[24977] +centroid = (0.66143013188863164, -1.4082556461523794) +station = ('klwb', 0.003990649356224658) +zone = ('wvz045', 0.0033393710997277289) + +[24981] +centroid = (0.65677443120235179, -1.4091272461275326) +station = ('klwb', 0.0062160121069637858) +zone = ('wvz043', 0.0017378502178384703) + +[24983] +centroid = (0.65580729190394416, -1.4053144347502109) +station = ('klwb', 0.0053474899130154926) +zone = ('wvz044', 0.00050967233045404116) + +[24984] +centroid = (0.65438554669526949, -1.4033323341318908) +station = ('kbcb', 0.0048348774426724764) +zone = ('wvz044', 0.0023274514759512774) + +[24986] +centroid = (0.6618453108110961, -1.398805229304898) +station = ('khsp', 0.0043288021007349504) +zone = ('vaz019', 0.0030149865316419773) + +[24991] +centroid = (0.66360224650261612, -1.4049454721463392) +station = ('klwb', 0.0030185750808639678) +zone = ('wvz045', 0.0014407177922804697) + +[25002] +centroid = (0.6655946445635228, -1.4179356785162529) +station = ('kbkw', 0.0061076110508895502) +zone = ('wvz036', 0.0028904753039964101) + +[25003] +centroid = (0.66762940176537533, -1.4274145791371264) +station = ('kcrw', 0.0032231103460336956) +zone = ('wvz026', 0.0041264755967522302) + +[25005] +centroid = (0.67340813455885107, -1.4181921721031261) +station = ('kcrw', 0.0060293649880614085) +zone = ('wvz016', 0.0026000898201306538) + +[25007] +centroid = (0.66016799704005202, -1.4212296035069567) +station = ('ki16', 0.0043034128540628104) +zone = ('wvz035', 0.0026758474499968318) + +[25008] +centroid = (0.66230122571830208, -1.4197200507836143) +station = ('kbkw', 0.0040490457967482796) +zone = ('wvz035', 0.0033356983024966078) + +[25009] +centroid = (0.66675703384535112, -1.4256625478208047) +station = ('kcrw', 0.0030921999571362434) +zone = ('wvz026', 0.0031504023650795595) + +[25011] +centroid = (0.67210149381434547, -1.4283672845626201) +station = ('kcrw', 0.0041045762397844913) +zone = ('wvz014', 0.00095032709537502661) + +[25015] +centroid = (0.66752098191224152, -1.4223954485407038) +station = ('kcrw', 0.0025309137537777443) +zone = ('wvz015', 0.0016327819822917612) + +[25019] +centroid = (0.66971121304386161, -1.4149188070910106) +station = ('kcrw', 0.0072683355898596662) +zone = ('wvz027', 0.0015900027468368518) + +[25021] +centroid = (0.66186340987543923, -1.4255936945818135) +station = ('ki16', 0.0058590496032286526) +zone = ('wvz026', 0.0018150322358521306) + +[25022] +centroid = (0.66078762383109502, -1.4280116388209414) +station = ('ki16', 0.005785373221260548) +zone = ('wvz025', 0.0016790106385636474) + +[25024] +centroid = (0.6660017775181355, -1.4246030107917964) +station = ('kcrw', 0.0036374567006036674) +zone = ('wvz026', 0.0026608383260353298) + +[25025] +centroid = (0.66871691642229292, -1.4208958616473903) +station = ('kcrw', 0.0027375475993284279) +zone = ('wvz015', 0.0016435697618013411) + +[25028] +centroid = (0.66230265688828871, -1.4263803144756872) +station = ('ki16', 0.0064746535305580371) +zone = ('wvz026', 0.0013400893263502422) + +[25030] +centroid = (0.67113698996310833, -1.4176584678711586) +station = ('kcrw', 0.0053357730326723017) +zone = ('wvz027', 0.0020679909547295736) + +[25031] +centroid = (0.66581897173228166, -1.4185189326456844) +station = ('kcrw', 0.0058569696748156869) +zone = ('wvz036', 0.0033879868348018218) + +[25033] +centroid = (0.67390759543089418, -1.429850203561577) +station = ('k3i2', 0.0057842051157233638) +zone = ('wvz014', 0.0018178968558878819) + +[25035] +centroid = (0.66610913272042571, -1.4228099816913451) +station = ('kcrw', 0.0036784021744639766) +zone = ('wvz015', 0.0029905965638425138) + +[25036] +centroid = (0.6669547098364319, -1.4182397497785353) +station = ('kcrw', 0.0053786629946569065) +zone = ('wvz036', 0.0040484548874761472) + +[25039] +centroid = (0.66732585410186851, -1.4200565851699838) +station = ('kcrw', 0.0039748892615056762) +zone = ('wvz015', 0.0028707803701632389) + +[25040] +centroid = (0.66543297471491059, -1.4178201202664782) +station = ('kbkw', 0.0059269995974855529) +zone = ('wvz036', 0.0027174895511816737) + +[25043] +centroid = (0.67064072304359634, -1.4138326537909094) +station = ('kcrw', 0.0081797530464318962) +zone = ('wvz027', 0.0011430053310977487) + +[25044] +centroid = (0.66168357114931375, -1.4201518103339728) +station = ('kbkw', 0.0039827158087236162) +zone = ('wvz035', 0.0029554108446056375) + +[25045] +centroid = (0.67120586065539201, -1.419507591853769) +station = ('kcrw', 0.0039942266856772693) +zone = ('wvz015', 0.0034136071403577549) + +[25047] +centroid = (0.66183805024140774, -1.4271142777860284) +station = ('ki16', 0.0062860758539992094) +zone = ('wvz026', 0.0019507702872977525) + +[25048] +centroid = (0.66227963599545481, -1.4213495948930313) +station = ('kbkw', 0.0050985818043640394) +zone = ('wvz035', 0.0040039627581784174) + +[25049] +centroid = (0.66523730585246954, -1.4234595234257672) +station = ('kcrw', 0.0044245686178479605) +zone = ('wvz026', 0.0026482015272158619) + +[25051] +centroid = (0.66596435765897277, -1.4261048840664299) +station = ('kcrw', 0.0039574705950108152) +zone = ('wvz026', 0.0023361628050395842) + +[25053] +centroid = (0.66386723984294649, -1.4290560787519198) +station = ('kcrw', 0.0069121859126234338) +zone = ('wvz026', 0.0023162361985591229) + +[25054] +centroid = (0.66509940738826934, -1.4222451233322295) +station = ('kcrw', 0.0047758024613385602) +zone = ('wvz026', 0.0033948632199002908) + +[25057] +centroid = (0.66532605584493343, -1.4181399867584912) +station = ('kbkw', 0.0058998393302443809) +zone = ('wvz036', 0.0028567361037123212) + +[25059] +centroid = (0.66732559230248079, -1.4173619015246597) +station = ('kcrw', 0.0058298919466507311) +zone = ('wvz036', 0.0040025583699501285) + +[25060] +centroid = (0.66225715615468927, -1.4211749223414916) +station = ('kbkw', 0.0049681641934526477) +zone = ('wvz035', 0.0038983528372684012) + +[25061] +centroid = (0.66610808552287448, -1.421335789338648) +station = ('kcrw', 0.004169354238488349) +zone = ('wvz015', 0.0032427273651418113) + +[25062] +centroid = (0.66113618353601078, -1.421267913484038) +station = ('ki16', 0.0051900851444019328) +zone = ('wvz035', 0.0031704139792406816) + +[25063] +centroid = (0.67325407434577755, -1.4125090484460745) +station = ('kcrw', 0.0098381960379881426) +zone = ('wvz027', 0.0027747756357577925) + +[25064] +centroid = (0.66980938781428634, -1.4267797854348836) +station = ('kcrw', 0.0020398098724186157) +zone = ('wvz014', 0.0031735698308296366) + +[25067] +centroid = (0.66674259997243712, -1.4214469493587074) +station = ('kcrw', 0.0035969168056814438) +zone = ('wvz015', 0.0026289271368674831) + +[25070] +centroid = (0.67275187330680863, -1.4299776998634353) +station = ('kcrw', 0.0055072820366680346) +zone = ('wvz014', 0.00072005014225665163) + +[25071] +centroid = (0.67149031441688201, -1.4218927239029593) +station = ('kcrw', 0.0025916054804070885) +zone = ('wvz015', 0.0025274498156489513) + +[25075] +centroid = (0.66426735657396618, -1.4207882446457123) +station = ('kcrw', 0.0059865622857147001) +zone = ('wvz036', 0.00448692772945851) + +[25076] +centroid = (0.66093437111460263, -1.4299673500609711) +station = ('ki16', 0.0069506073465883996) +zone = ('wvz025', 0.00065097562336363819) + +[25081] +centroid = (0.664535020268052, -1.4268879783952149) +station = ('kcrw', 0.0055137624374927714) +zone = ('wvz026', 0.0010850356449255867) + +[25082] +centroid = (0.67377051727144266, -1.4317117891950468) +station = ('k3i2', 0.005491565405664354) +zone = ('wvz014', 0.0023577398257818172) + +[25083] +centroid = (0.66444490891877162, -1.4201352820659561) +station = ('kbkw', 0.0058425250532672312) +zone = ('wvz036', 0.0040045963710978487) + +[25085] +centroid = (0.66623896776348146, -1.4173016178522957) +station = ('kcrw', 0.0063795764495308037) +zone = ('wvz036', 0.003036554953875822) + +[25086] +centroid = (0.66678527327264836, -1.4210008257486053) +station = ('kcrw', 0.0037846188563265821) +zone = ('wvz015', 0.0027662916213663869) + +[25088] +centroid = (0.67003369752975273, -1.4174915969413753) +station = ('kcrw', 0.0052659276934844479) +zone = ('wvz027', 0.0023093070734015787) + +[25090] +centroid = (0.66593262757317151, -1.4175739241221919) +station = ('kbkw', 0.0063622100381038674) +zone = ('wvz036', 0.002924792749499108) + +[25093] +centroid = (0.66292975368853024, -1.4254018305371416) +station = ('kcrw', 0.0067624888312850916) +zone = ('wvz026', 0.00090458744602740749) + +[25102] +centroid = (0.66655895642854224, -1.4202585023111471) +station = ('kcrw', 0.0043493631636213207) +zone = ('wvz015', 0.003295415600130898) + +[25103] +centroid = (0.66638030452630803, -1.4203690165593834) +station = ('kcrw', 0.0044178894250632194) +zone = ('wvz015', 0.0033826774342994113) + +[25106] +centroid = (0.67699424511963124, -1.4326354697950798) +station = ('k3i2', 0.0021996227807990491) +zone = ('wvz007', 0.00085006741962874715) + +[25107] +centroid = (0.66723493990113214, -1.424566341424212) +station = ('kcrw', 0.0024080271407081345) +zone = ('wvz015', 0.0022613658737676923) + +[25108] +centroid = (0.6627644011951962, -1.4290958198989876) +station = ('kcrw', 0.0078705977188680432) +zone = ('wvz025', 0.0025881457179907064) + +[25109] +centroid = (0.67241886448552812, -1.4285852936394867) +station = ('kcrw', 0.0044344581915553398) +zone = ('wvz014', 0.00084161725632564985) + +[25110] +centroid = (0.66703743844297636, -1.4192141147400461) +station = ('kcrw', 0.0046837301818532847) +zone = ('wvz015', 0.0035739297915869622) + +[25111] +centroid = (0.66938408598216037, -1.415965323963799) +station = ('kcrw', 0.0064526457169037394) +zone = ('wvz027', 0.0020516029567396723) + +[25112] +centroid = (0.66986195713135643, -1.4271058303924486) +station = ('kcrw', 0.0022992767111504973) +zone = ('wvz014', 0.0029626841316383982) + +[25113] +centroid = (0.67288626365921211, -1.4145151822481943) +station = ('kcrw', 0.0082470884843264241) +zone = ('wvz027', 0.0016367543419517378) + +[25114] +centroid = (0.66300394763503245, -1.4274408114357839) +station = ('kcrw', 0.007097149779194417) +zone = ('wvz026', 0.0012060731901490972) + +[25115] +centroid = (0.6653577684774421, -1.416897574130459) +station = ('kbkw', 0.005695270112950534) +zone = ('wvz036', 0.0021420212637301966) + +[25118] +centroid = (0.6651739504006221, -1.4190567907612714) +station = ('kcrw', 0.0060046362288224504) +zone = ('wvz036', 0.0034113945244176325) + +[25119] +centroid = (0.66394745517536813, -1.4185383407069663) +station = ('kbkw', 0.0047515833061853082) +zone = ('wvz036', 0.0026918040869205935) + +[25121] +centroid = (0.66176272183089169, -1.4293771320678241) +station = ('ki16', 0.007222967338942312) +zone = ('wvz025', 0.0015668993854013548) + +[25123] +centroid = (0.67596907362359482, -1.4294254253282266) +station = ('k3i2', 0.0041968214480599163) +zone = ('wvz007', 0.0018550031617720691) + +[25124] +centroid = (0.67408961581858473, -1.427311674524429) +station = ('kcrw', 0.0050902164215167311) +zone = ('wvz014', 0.0026648868082553884) + +[25125] +centroid = (0.66872841814206374, -1.4173137304373047) +station = ('kcrw', 0.0054662094462221804) +zone = ('wvz027', 0.0031343576669641566) + +[25126] +centroid = (0.66677244510264611, -1.4202198781748003) +station = ('kcrw', 0.0042237337459587083) +zone = ('wvz015', 0.003154159746111124) + +[25130] +centroid = (0.66380145838343885, -1.4268460032267043) +station = ('kcrw', 0.0061863193215014158) +zone = ('wvz026', 0.00058906952241002237) + +[25132] +centroid = (0.66835261384752431, -1.419725949996486) +station = ('kcrw', 0.0037247176333291077) +zone = ('wvz015', 0.0026249981098331898) + +[25133] +centroid = (0.6715520641658177, -1.4162486432612751) +station = ('kcrw', 0.0065124059478897291) +zone = ('wvz027', 0.00099036836293428716) + +[25134] +centroid = (0.66606670376630972, -1.4222792270658136) +station = ('kcrw', 0.0038609144553796615) +zone = ('wvz015', 0.0030747173751100336) + +[25136] +centroid = (0.66584612905544271, -1.4194294883697423) +station = ('kcrw', 0.0053143789300748069) +zone = ('wvz036', 0.0039908336115089165) + +[25139] +centroid = (0.66562639210261654, -1.4188035958466847) +station = ('kcrw', 0.0058197370721131394) +zone = ('wvz036', 0.0034577420294740909) + +[25140] +centroid = (0.66043115778466766, -1.4224172826096464) +station = ('ki16', 0.0042655265499562329) +zone = ('wvz035', 0.0036477480582273927) + +[25141] +centroid = (0.6741652234817811, -1.4141582100562839) +station = ('kcrw', 0.0090687953425601375) +zone = ('wvz027', 0.0029454227265517875) + +[25142] +centroid = (0.6659051386374526, -1.4264555381664483) +station = ('kcrw', 0.004123477631445085) +zone = ('wvz026', 0.002291115535457897) + +[25143] +centroid = (0.67053349001435381, -1.4280691474197944) +station = ('kcrw', 0.0031742966711734741) +zone = ('wvz014', 0.0019653237261119047) + +[25148] +centroid = (0.66402084627041447, -1.4235206274028795) +station = ('kcrw', 0.005628343343116759) +zone = ('wvz026', 0.0020933489692664285) + +[25149] +centroid = (0.66225708634151903, -1.426956726914451) +station = ('ki16', 0.0066084175867349255) +zone = ('wvz026', 0.0015177408360769538) + +[25152] +centroid = (0.66427063779295992, -1.4180513240324899) +station = ('kbkw', 0.0048850314656501189) +zone = ('wvz036', 0.0023621696790555695) + +[25154] +centroid = (0.66534673799656963, -1.4260633801368177) +station = ('kcrw', 0.0045242041335314155) +zone = ('wvz026', 0.0017192808755358757) + +[25156] +centroid = (0.66642358869175755, -1.4195959229672124) +station = ('kcrw', 0.0048214714099449919) +zone = ('wvz015', 0.0037446583611784566) + +[25159] +centroid = (0.67236133843338231, -1.4274809714618724) +station = ('kcrw', 0.0037600949991221586) +zone = ('wvz014', 0.0016640648396287865) + +[25160] +centroid = (0.66815015565429292, -1.4184742696701258) +station = ('kcrw', 0.0047192744922570622) +zone = ('wvz027', 0.0041503054939016435) + +[25161] +centroid = (0.66414521843291152, -1.4192788315487102) +station = ('kbkw', 0.0052144156622780467) +zone = ('wvz036', 0.0032923787056346422) + +[25162] +centroid = (0.66684768624669954, -1.4204770873466668) +station = ('kcrw', 0.0040247659001487763) +zone = ('wvz015', 0.0029638561695377571) + +[25164] +centroid = (0.67192648965024793, -1.4173434883010512) +station = ('kcrw', 0.0058352811001605078) +zone = ('wvz027', 0.0019198533623454046) + +[25165] +centroid = (0.66577380261123997, -1.4250514033299264) +station = ('kcrw', 0.0039099904345865511) +zone = ('wvz026', 0.0023077285826556336) + +[25168] +centroid = (0.67300505076810302, -1.429072973539079) +station = ('kcrw', 0.0051042427380185874) +zone = ('wvz014', 0.0009869825180215347) + +[25169] +centroid = (0.6662938409151643, -1.427502002679359) +station = ('kcrw', 0.0042262090034709985) +zone = ('wvz026', 0.0028755559556505098) + +[25173] +centroid = (0.6648160706375007, -1.4177270418574694) +station = ('kbkw', 0.0053147317450734071) +zone = ('wvz036', 0.0023148978820333103) + +[25174] +centroid = (0.66088052770717864, -1.4208893864758656) +station = ('ki16', 0.005063504648038771) +zone = ('wvz035', 0.0027781367272039599) + +[25177] +centroid = (0.66963543084774002, -1.4285228632121429) +station = ('kcrw', 0.0033982463873069376) +zone = ('wvz014', 0.0026021476380861911) + +[25180] +centroid = (0.65956386877276663, -1.4213354577260899) +station = ('ki16', 0.0037228322619508843) +zone = ('wvz035', 0.0026130230745787528) + +[25181] +centroid = (0.66408538854615318, -1.4249077452791945) +station = ('kcrw', 0.005568010668196473) +zone = ('wvz026', 0.001066553492604848) + +[25183] +centroid = (0.66193821468717973, -1.427709888846564) +station = ('ki16', 0.006601071507837666) +zone = ('wvz026', 0.0020988008153931237) + +[25185] +centroid = (0.66732990326573316, -1.4178708569878338) +station = ('kcrw', 0.0054633012071617845) +zone = ('wvz036', 0.0041971509099717865) + +[25186] +centroid = (0.66649504247133418, -1.4184532384526392) +station = ('kcrw', 0.0054832957063276847) +zone = ('wvz036', 0.0038061168811310713) + +[25187] +centroid = (0.67583040721452392, -1.4316129861060913) +station = ('k3i2', 0.0034983760262313848) +zone = ('wvz007', 0.00083039259171828765) + +[25193] +centroid = (0.66384400951060241, -1.4225672412989776) +station = ('kcrw', 0.0059194112976189281) +zone = ('wvz026', 0.0028156082879656134) + +[25201] +centroid = (0.66908266762034097, -1.4222769232312009) +station = ('kcrw', 0.0015941949927755009) +zone = ('wvz015', 0.00051546024830863497) + +[25202] +centroid = (0.66874690117884228, -1.42871060827978) +station = ('kcrw', 0.0036536794236607471) +zone = ('wvz014', 0.0034236917261258495) + +[25203] +centroid = (0.66350424626511673, -1.429115873732093) +station = ('kcrw', 0.0072426395421104749) +zone = ('wvz026', 0.002354580563761918) + +[25204] +centroid = (0.66192172132574834, -1.4244427895664633) +station = ('ki16', 0.0057243277984774478) +zone = ('wvz026', 0.0021642193519639799) + +[25205] +centroid = (0.66356522806918128, -1.4275572598034771) +station = ('kcrw', 0.0066125460742331331) +zone = ('wvz026', 0.0011251758504331303) + +[25206] +centroid = (0.66312954152800596, -1.4258820229742428) +station = ('kcrw', 0.0066301051118100585) +zone = ('wvz026', 0.00053600287236970669) + +[25208] +centroid = (0.66059532345411032, -1.4247827447981669) +station = ('ki16', 0.0044678734540479631) +zone = ('wvz026', 0.0032140280188545762) + +[25209] +centroid = (0.66240468883636028, -1.4227907132564031) +station = ('ki16', 0.0061798247044659652) +zone = ('wvz026', 0.0029032300153535181) + +[25211] +centroid = (0.67140559613499029, -1.4117701633072426) +station = ('kcrw', 0.0098915397008946335) +zone = ('wvz027', 0.0025512440482896074) + +[25213] +centroid = (0.67217282542087453, -1.4296568734403337) +station = ('kcrw', 0.0049837312422631912) +zone = ('wvz014', 9.2156075725873966e-05) + +[25214] +centroid = (0.66650113367042363, -1.4231106670148785) +station = ('kcrw', 0.003236130879787582) +zone = ('wvz015', 0.0026007263723502238) + +[25234] +centroid = (0.67738769469290838, -1.4161297339793366) +station = ('kcrw', 0.0099971899499111706) +zone = ('wvz018', 0.00064207876462231449) + +[25235] +centroid = (0.67491081068494063, -1.4152779783977785) +station = ('kcrw', 0.0087492480005261566) +zone = ('wvz018', 0.0030773740580719027) + +[25239] +centroid = (0.67786249406262078, -1.4284940652794851) +station = ('k3i2', 0.003666209479143148) +zone = ('wvz008', 0.0023379109590195646) + +[25241] +centroid = (0.67697787393124764, -1.427854402108629) +station = ('k3i2', 0.0044975741709911881) +zone = ('wvz008', 0.0020097054276113145) + +[25243] +centroid = (0.67521058843726312, -1.4220849893733591) +station = ('kcrw', 0.0058233237841389162) +zone = ('wvz016', 0.0018490080065582211) + +[25244] +centroid = (0.67662166968420812, -1.4233312242724532) +station = ('kcrw', 0.007029057588513507) +zone = ('wvz008', 0.0020498938397173292) + +[25245] +centroid = (0.67539739102710405, -1.4269006494855843) +station = ('k3i2', 0.0060086506171352118) +zone = ('wvz008', 0.0026302695700527253) + +[25247] +centroid = (0.68078773570213347, -1.4312665906094479) +station = ('k3i2', 0.0020382007753705564) +zone = ('ohz085', 0.0013443556613217753) + +[25248] +centroid = (0.67440548550661072, -1.4245357632557172) +station = ('kcrw', 0.0047885391267552075) +zone = ('wvz008', 0.0034642819382567991) + +[25251] +centroid = (0.67405532009878311, -1.4178413085635975) +station = ('kcrw', 0.0066566539504404557) +zone = ('wvz016', 0.0022338590046601637) + +[25252] +centroid = (0.67982251626590307, -1.422638415825874) +station = ('kpkb', 0.0067248392122002832) +zone = ('wvz017', 0.0021884959311972026) + +[25253] +centroid = (0.67930071517943436, -1.4304978603404073) +station = ('k3i2', 0.0018618530565632588) +zone = ('wvz007', 0.0027840292634243491) + +[25259] +centroid = (0.67498036205563261, -1.4181107524935204) +station = ('kcrw', 0.0071621420907148582) +zone = ('wvz016', 0.0014927969672976634) + +[25260] +centroid = (0.68074494022887466, -1.4317268862930765) +station = ('k3i2', 0.0018015387926464739) +zone = ('ohz085', 0.0013718286629693316) + +[25261] +centroid = (0.67756582299636692, -1.4151214572704598) +station = ('kpkb', 0.010237946643320504) +zone = ('wvz018', 0.00064195674963626968) + +[25262] +centroid = (0.6790692496140347, -1.4281338293218735) +station = ('k3i2', 0.0036997569955577025) +zone = ('wvz008', 0.0024217312914648708) + +[25264] +centroid = (0.67823348124842475, -1.4293180526726439) +station = ('k3i2', 0.0029359373130672661) +zone = ('wvz007', 0.0023928788408814627) + +[25265] +centroid = (0.68044647147349102, -1.430437698841091) +station = ('k3i2', 0.0022840308353640941) +zone = ('ohz085', 0.0018827796799404388) + +[25266] +centroid = (0.67380147941237301, -1.4165497649171217) +station = ('kcrw', 0.0072937579913785085) +zone = ('wvz027', 0.0027719416764741796) + +[25267] +centroid = (0.67777412804259241, -1.4126851347143081) +station = ('kw22', 0.0096053861137232969) +zone = ('wvz029', 0.0019471293449968528) + +[25268] +centroid = (0.6758806552436889, -1.4150487992136991) +station = ('kcrw', 0.0094992740769340826) +zone = ('wvz018', 0.0021577534763020873) + +[25270] +centroid = (0.67813771503236786, -1.421199130058217) +station = ('kpkb', 0.0083634300056710919) +zone = ('wvz016', 0.00268402652410338) + +[25271] +centroid = (0.67694607403227613, -1.4256851672879105) +station = ('k3i2', 0.0060385638176791503) +zone = ('wvz008', 0.00085511940310530261) + +[25275] +centroid = (0.67930848189460569, -1.4243733952754041) +station = ('k3i2', 0.0066245151084320742) +zone = ('wvz008', 0.0017529131471274112) + +[25276] +centroid = (0.67687207207199174, -1.419455057443284) +station = ('kcrw', 0.0081375871283854793) +zone = ('wvz016', 0.0012147095399083873) + +[25285] +centroid = (0.67264371525306255, -1.415488901437882) +station = ('kcrw', 0.0074518846908655676) +zone = ('wvz027', 0.0013927118127704582) + +[25286] +centroid = (0.67396236386282182, -1.4208373756641559) +station = ('kcrw', 0.0050691441080281405) +zone = ('wvz016', 0.0019066057748896202) + +[25287] +centroid = (0.67988803592602287, -1.432067539656481) +station = ('k3i2', 0.00094844747730977693) +zone = ('ohz085', 0.002256687133954298) + +[25301] +centroid = (0.6693463170571472, -1.4247185341349859) +station = ('kcrw', 0.00050010345689405916) +zone = ('wvz015', 0.0014216207262779264) + +[25302] +centroid = (0.67008747112400657, -1.4241096062122576) +station = ('kcrw', 0.00046694632838020664) +zone = ('wvz015', 0.0013523041022676437) + +[25303] +centroid = (0.66950063906960855, -1.4256919217121158) +station = ('kcrw', 0.0011851960210458585) +zone = ('wvz015', 0.0022002194426857117) + +[25304] +centroid = (0.66856641668089345, -1.4240700570514073) +station = ('kcrw', 0.0010623216100768204) +zone = ('wvz015', 0.0010380010315837981) + +[25305] +centroid = (0.66911785345806118, -1.424411059480662) +station = ('kcrw', 0.00053597089488411622) +zone = ('wvz015', 0.0011589106367181164) + +[25306] +centroid = (0.66867958382959281, -1.4224329556663291) +station = ('kcrw', 0.0016701915775152803) +zone = ('wvz015', 0.00057407965199594011) + +[25309] +centroid = (0.66861203958754067, -1.4267984779111726) +station = ('kcrw', 0.0022838156712455581) +zone = ('wvz015', 0.0030707015130632146) + +[25311] +centroid = (0.66962797829183407, -1.4234385969280359) +station = ('kcrw', 0.00058810662410671121) +zone = ('wvz015', 0.0006613973493192623) + +[25312] +centroid = (0.67105129429683552, -1.4252242956456287) +station = ('kcrw', 0.0016413026341388925) +zone = ('wvz015', 0.0026528665548096108) + +[25313] +centroid = (0.67059745633143941, -1.4269383485974272) +station = ('kcrw', 0.0023644570268924222) +zone = ('wvz014', 0.0025587108223264921) + +[25314] +centroid = (0.66860151525215117, -1.4248908330387426) +station = ('kcrw', 0.0011619601278705547) +zone = ('wvz015', 0.0016137016616224716) + +[25315] +centroid = (0.66710454635271565, -1.4234963498729842) +station = ('kcrw', 0.0025780208315334912) +zone = ('wvz015', 0.0020419297453678105) + +[25320] +centroid = (0.67264732808461414, -1.4247677698731847) +station = ('kcrw', 0.0030565026574172352) +zone = ('wvz014', 0.0038054768358923804) + +[25401] +centroid = (0.68865286999002817, -1.3608812841475786) +station = ('kmrb', 0.0010033332407658117) +zone = ('wvz052', 0.00074832222251888922) + +[25403] +centroid = (0.68896610423088367, -1.3615599554272166) +station = ('kmrb', 0.0013609568488507028) +zone = ('wvz052', 0.00028437661584376539) + +[25404] +centroid = (0.68910878489723415, -1.3594426266984523) +station = ('kmrb', 0.0019160814320268588) +zone = ('mdz003', 0.0023421592899402904) + +[25405] +centroid = (0.68781992905780642, -1.3606854232989201) +station = ('kmrb', 0.00033482374252472361) +zone = ('wvz052', 0.001307495805885897) + +[25411] +centroid = (0.69025586764152247, -1.3652221972499687) +station = ('kmrb', 0.0041270900840186912) +zone = ('wvz051', 0.00052949695889747093) + +[25413] +centroid = (0.68609919149497267, -1.3623332933654828) +station = ('kmrb', 0.0018427133011589656) +zone = ('wvz053', 0.0026088502555896252) + +[25414] +centroid = (0.68490974960973849, -1.3590221594283545) +station = ('kmrb', 0.0031720887151255404) +zone = ('wvz053', 0.0011382374342898153) + +[25419] +centroid = (0.69073068446452734, -1.3595312894244536) +station = ('khgr', 0.0030712408358186676) +zone = ('mdz003', 0.0011947529531688161) + +[25420] +centroid = (0.68733797383816075, -1.363364660780364) +station = ('kmrb', 0.0018054435394912957) +zone = ('wvz052', 0.0018622745886148311) + +[25422] +centroid = (0.69019024326164735, -1.3675403261091752) +station = ('kcbe', 0.0056046791266531224) +zone = ('wvz051', 0.001326038421195544) + +[25425] +centroid = (0.68604330605232389, -1.3573451249099904) +station = ('kmrb', 0.0033000745720155409) +zone = ('wvz053', 0.0012512484964354342) + +[25427] +centroid = (0.68976640750609308, -1.3628453904213105) +station = ('kmrb', 0.0025150741252504645) +zone = ('wvz052', 0.0012577081749519667) + +[25428] +centroid = (0.68732174227611709, -1.3617444541824451) +station = ('kmrb', 0.00062387495756126396) +zone = ('wvz052', 0.0014584839781226458) + +[25430] +centroid = (0.68662949233489867, -1.3602975936858344) +station = ('kmrb', 0.0011891926471892689) +zone = ('wvz053', 0.0011858944345112929) + +[25431] +centroid = (0.6891829439371514, -1.3713366790316508) +station = ('kcbe', 0.0033856050986859412) +zone = ('mdz502', 0.0025209223513530045) + +[25432] +centroid = (0.68601483973222377, -1.3575919668261001) +station = ('kmrb', 0.0031498618537686911) +zone = ('wvz053', 0.0010607484293225283) + +[25434] +centroid = (0.68861098208798033, -1.369185839981248) +station = ('kcbe', 0.0050538356948508318) +zone = ('wvz051', 0.0031646901919000488) + +[25437] +centroid = (0.6881448744579427, -1.3713137279519869) +station = ('kcbe', 0.0041562180836896634) +zone = ('wvz050', 0.0020200336059246803) + +[25438] +centroid = (0.68623489084431522, -1.3589680716748349) +station = ('kmrb', 0.002158967556313251) +zone = ('wvz053', 0.00018790424795723184) + +[25442] +centroid = (0.68713972188842676, -1.3584349608548132) +station = ('kmrb', 0.0020989060814835263) +zone = ('wvz053', 0.001166295425810523) + +[25443] +centroid = (0.68827737985475412, -1.358123140330652) +station = ('kmrb', 0.0023558240632566463) +zone = ('wvz053', 0.0023227488400463705) + +[25444] +centroid = (0.68788406990781725, -1.3705004045205575) +station = ('kcbe', 0.0047602810659043843) +zone = ('wvz050', 0.0020683328540273397) + +[25446] +centroid = (0.68489446052549108, -1.3605438072834131) +station = ('kmrb', 0.0027946088947238003) +zone = ('wvz053', 0.0016814995935978655) + +[25501] +centroid = (0.66591093313056926, -1.4306401570343223) +station = ('kcrw', 0.0062811943512687462) +zone = ('wvz013', 0.0014335819654782091) + +[25502] +centroid = (0.67468143951464354, -1.4332147794804018) +station = ('k3i2', 0.0045110184505412791) +zone = ('wvz007', 0.0023327309732587686) + +[25503] +centroid = (0.6739168456759298, -1.4332810845386852) +station = ('k3i2', 0.0052773252282312466) +zone = ('wvz007', 0.0030305575808181147) + +[25504] +centroid = (0.66980818353710248, -1.4358492667198246) +station = ('khts', 0.0038616550613056748) +zone = ('wvz006', 0.00083472180715747277) + +[25505] +centroid = (0.66344041957437117, -1.4317182120066942) +station = ('kcrw', 0.008559619020196441) +zone = ('wvz013', 0.0028944922610392048) + +[25506] +centroid = (0.66679815380252805, -1.43443410140243) +station = ('khts', 0.0057198521127150501) +zone = ('wvz013', 0.0016788345975970306) + +[25507] +centroid = (0.67012403577183588, -1.4409963474037109) +station = ('khts', 0.00053014925167926732) +zone = ('kyz103', 0.0018161535252723005) + +[25508] +centroid = (0.66259885671564456, -1.4315536972714011) +station = ('ki16', 0.0090045767190269597) +zone = ('wvz025', 0.0026028287862263255) + +[25510] +centroid = (0.66989745712834203, -1.4326173009175667) +station = ('kcrw', 0.0066134155347055499) +zone = ('wvz006', 0.0022707211368972234) + +[25511] +centroid = (0.66411725825829471, -1.4370179740935449) +station = ('khts', 0.0062465965360056315) +zone = ('wvz005', 0.0020839133046701257) + +[25512] +centroid = (0.66644922757846936, -1.4368820653046923) +station = ('khts', 0.00440406224404163) +zone = ('wvz005', 0.0015254792890611343) + +[25514] +centroid = (0.66497550646467041, -1.4403970013385761) +station = ('khts', 0.0046583380693590816) +zone = ('wvz005', 0.0016086969506505522) + +[25515] +centroid = (0.67643018961197166, -1.4337331771748292) +station = ('k3i2', 0.0028328833942111416) +zone = ('wvz007', 0.0016541179684278122) + +[25517] +centroid = (0.66511487100544209, -1.4389046924682436) +station = ('khts', 0.0047416330783217036) +zone = ('wvz005', 0.00069648239209918342) + +[25520] +centroid = (0.67301899594882642, -1.434361565518717) +station = ('k3i2', 0.0062726515850909841) +zone = ('wvz006', 0.002586321977457218) + +[25521] +centroid = (0.66706103529446348, -1.4311591306874027) +station = ('kcrw', 0.0060416320553847505) +zone = ('wvz013', 0.0012467494648756008) + +[25523] +centroid = (0.66809006396814663, -1.4320274494435623) +station = ('kcrw', 0.0063383333558069774) +zone = ('wvz013', 0.0018290091036765109) + +[25524] +centroid = (0.66359943652252051, -1.4332208357729062) +station = ('khts', 0.0084556135946708914) +zone = ('wvz013', 0.0027617625637278783) + +[25526] +centroid = (0.67010864196783326, -1.4310176892048212) +station = ('kcrw', 0.0053751285817482146) +zone = ('wvz014', 0.0022885623858498083) + +[25529] +centroid = (0.66588808677066058, -1.4284975210314039) +station = ('kcrw', 0.0050407412472799062) +zone = ('wvz026', 0.0029283702093762091) + +[25530] +centroid = (0.66948002673114249, -1.4412280922217906) +station = ('khts', 0.00038772557032430645) +zone = ('kyz103', 0.0015249231907990767) + +[25534] +centroid = (0.66469705663580714, -1.4359694849987019) +station = ('khts', 0.0062047485348286488) +zone = ('wvz005', 0.0023492713248320632) + +[25535] +centroid = (0.66861078295047927, -1.4387592192750898) +station = ('khts', 0.00187449812834646) +zone = ('wvz005', 0.002837773029771179) + +[25537] +centroid = (0.67253440528201014, -1.4360913089804912) +station = ('khts', 0.0046784988845137623) +zone = ('wvz006', 0.0020489367719739504) + +[25540] +centroid = (0.66641217423844956, -1.4339009731291159) +station = ('khts', 0.006276416355298832) +zone = ('wvz013', 0.0011864126089940054) + +[25541] +centroid = (0.67157908186263859, -1.4334241317241785) +station = ('khts', 0.0060773826861855885) +zone = ('wvz006', 0.0018448859145948138) + +[25545] +centroid = (0.67123603739815907, -1.4349650131075942) +station = ('khts', 0.0048249938663129637) +zone = ('wvz006', 0.0007523514015981927) + +[25547] +centroid = (0.66175963259811577, -1.4305674640709769) +station = ('ki16', 0.0078615464329553006) +zone = ('wvz025', 0.0015311782051336115) + +[25550] +centroid = (0.67832867150582854, -1.4324117709448518) +station = ('k3i2', 0.00093273201865080293) +zone = ('wvz007', 0.0017750808532361578) + +[25555] +centroid = (0.66695917787931702, -1.4407680583375502) +station = ('khts', 0.002665478646642537) +zone = ('wvz005', 0.0020607191284875578) + +[25557] +centroid = (0.66507223261181581, -1.4341710977374471) +station = ('khts', 0.0068981401747268429) +zone = ('wvz013', 0.0018464564407379177) + +[25559] +centroid = (0.6689000887272899, -1.4351742257250308) +station = ('khts', 0.0044475161045216521) +zone = ('wvz006', 0.001669116851524662) + +[25560] +centroid = (0.67100015614975195, -1.4293868884583427) +station = ('kcrw', 0.0042994323338386032) +zone = ('wvz014', 0.0011122140742892571) + +[25564] +centroid = (0.66797448826507977, -1.4294426168213588) +station = ('kcrw', 0.004440101323058717) +zone = ('wvz013', 0.0028731347577256481) + +[25565] +centroid = (0.66501133807421375, -1.430550185311382) +station = ('kcrw', 0.0068008282726715712) +zone = ('wvz013', 0.0019336941151300521) + +[25567] +centroid = (0.66699467787630262, -1.4289015647532408) +station = ('kcrw', 0.0045386602636871458) +zone = ('wvz013', 0.0028399650812775397) + +[25570] +centroid = (0.66704578111680091, -1.4385920690926262) +station = ('khts', 0.0030936410088229166) +zone = ('wvz005', 0.0012709650645009879) + +[25571] +centroid = (0.66868909587401626, -1.4338896633955629) +station = ('khts', 0.0054765050277937209) +zone = ('wvz006', 0.0022099676657487697) + +[25573] +centroid = (0.66727494284758793, -1.4301660557963107) +station = ('kcrw', 0.0052465362061602776) +zone = ('wvz013', 0.0020158198573800769) + +[25601] +centroid = (0.6608302622247213, -1.431332110269568) +station = ('ki16', 0.0077198463755213335) +zone = ('wvz025', 0.0011558813813061421) + +[25606] +centroid = (0.65912378400187632, -1.4280242226448481) +station = ('ki16', 0.0046068253642424506) +zone = ('wvz025', 0.001972223362014388) + +[25607] +centroid = (0.6594713488691184, -1.4274019953132195) +station = ('ki16', 0.0044762803157895707) +zone = ('wvz025', 0.0022383052473597897) + +[25608] +centroid = (0.65579179338018645, -1.4292389892575288) +station = ('ki16', 0.0045895401638103243) +zone = ('wvz024', 0.0043069653399158778) + +[25611] +centroid = (0.65782436892047391, -1.4286083494389057) +station = ('ki16', 0.0043586215135924134) +zone = ('wvz025', 0.0027095962433693489) + +[25617] +centroid = (0.65835683396867239, -1.4272997190190528) +station = ('ki16', 0.0036888107575759285) +zone = ('wvz025', 0.0029009480209799196) + +[25621] +centroid = (0.65671419988986546, -1.4301558456201864) +station = ('ki16', 0.0053118460746288693) +zone = ('wvz024', 0.0031778742347074486) + +[25624] +centroid = (0.66149161983817939, -1.4308493871050512) +station = ('ki16', 0.0078407725191521147) +zone = ('wvz025', 0.0013642138902069314) + +[25625] +centroid = (0.66007223082399502, -1.4325885727980787) +station = ('ki16', 0.0081603353484687169) +zone = ('wvz024', 0.0017813182783667483) + +[25628] +centroid = (0.65917932037867466, -1.4287699669276404) +station = ('ki16', 0.0051128859829001391) +zone = ('wvz025', 0.0014943101094654148) + +[25630] +centroid = (0.65956594571457661, -1.4255970805205622) +station = ('ki16', 0.0037177085019406042) +zone = ('wvz025', 0.0035837502893291159) + +[25632] +centroid = (0.6585112083410114, -1.4298422274068956) +station = ('ki16', 0.0055240862996523837) +zone = ('wvz025', 0.001781695871925637) + +[25634] +centroid = (0.65861507288479748, -1.4283877572747461) +station = ('ki16', 0.004551516327869271) +zone = ('wvz025', 0.0021210029581849492) + +[25635] +centroid = (0.6581131336452164, -1.4291800320353962) +station = ('ki16', 0.0048857358861350494) +zone = ('wvz025', 0.002276883017426996) + +[25637] +centroid = (0.66081252967952098, -1.4316844398856681) +station = ('ki16', 0.0079356636983140012) +zone = ('wvz025', 0.0014006804266541103) + +[25638] +centroid = (0.65901614954690579, -1.431005594073105) +station = ('ki16', 0.0065705006488877655) +zone = ('wvz025', 0.0014811330128284049) + +[25639] +centroid = (0.66115433496023146, -1.4304429697354319) +station = ('ki16', 0.0073769260450406403) +zone = ('wvz025', 0.00092460057495511111) + +[25644] +centroid = (0.65825630300375748, -1.4317024342302562) +station = ('ki16', 0.0068150761570494947) +zone = ('wvz024', 0.0014500442324996896) + +[25646] +centroid = (0.66055985836370978, -1.4291453523431592) +station = ('ki16', 0.0062205545224752754) +zone = ('wvz025', 0.00075831651822971997) + +[25647] +centroid = (0.65950416105905596, -1.4308980468845971) +station = ('ki16', 0.0067149484057718277) +zone = ('wvz025', 0.0010344015338841946) + +[25649] +centroid = (0.66105099401522094, -1.4327947659959093) +station = ('ki16', 0.0087960854395050837) +zone = ('wvz024', 0.0026633375249592484) + +[25650] +centroid = (0.65747193458461872, -1.4280128430981252) +station = ('ki16', 0.0037953356109110842) +zone = ('wvz025', 0.003238802661134646) + +[25651] +centroid = (0.65629566993523725, -1.4309420640883324) +station = ('ki16', 0.0059153429868094281) +zone = ('wvz024', 0.0029669058722058867) + +[25652] +centroid = (0.65957271759207425, -1.4319575490070202) +station = ('ki16', 0.007489299789566784) +zone = ('wvz024', 0.0016688502888185233) + +[25653] +centroid = (0.66023997441840421, -1.4311402636781887) +station = ('ki16', 0.0072587816800293659) +zone = ('wvz025', 0.0008696409467398602) + +[25654] +centroid = (0.65966042038698691, -1.4289720411484361) +station = ('ki16', 0.0055273394990403707) +zone = ('wvz025', 0.0010507912184142807) + +[25661] +centroid = (0.65862034377913847, -1.4359508972421682) +station = ('kk22', 0.0050134511357009439) +zone = ('wvz024', 0.0019307423063141308) + +[25666] +centroid = (0.66194667953405195, -1.4355133082921081) +station = ('kk22', 0.0061634094261371784) +zone = ('wvz024', 0.0038351527500556618) + +[25669] +centroid = (0.66204066551427176, -1.438002985563493) +station = ('kk22', 0.0046277492791594044) +zone = ('kyz119', 0.0028288168377674124) + +[25670] +centroid = (0.6583582825919515, -1.4339449379729734) +station = ('kk22', 0.0066142033115714838) +zone = ('wvz024', 0.00034898521570048547) + +[25671] +centroid = (0.66119816017774913, -1.4345197272555328) +station = ('kk22', 0.0065561339489875955) +zone = ('wvz024', 0.0028596988765684657) + +[25672] +centroid = (0.65591805049827567, -1.433143727126553) +station = ('ki16', 0.0076677105796927767) +zone = ('wvz024', 0.0025492359818604354) + +[25674] +centroid = (0.66093581973788185, -1.4373061628596344) +station = ('kk22', 0.004436951634639372) +zone = ('kyz119', 0.0025179874353496753) + +[25676] +centroid = (0.66038134608781573, -1.4345651407226698) +station = ('kk22', 0.00628066181659426) +zone = ('wvz024', 0.0021009210878680635) + +[25678] +centroid = (0.65607457162559457, -1.4323085347195963) +station = ('ki16', 0.0070005299482232735) +zone = ('wvz024', 0.0025614011028197775) + +[25688] +centroid = (0.65661546661408021, -1.4332489879337409) +station = ('ki16', 0.0077505932361139427) +zone = ('wvz024', 0.0018468538164956186) + +[25690] +centroid = (0.65781075535230837, -1.4333419616229945) +station = ('ki16', 0.0079666087857368419) +zone = ('wvz024', 0.00065434009520860955) + +[25692] +centroid = (0.65687696929590633, -1.4330853807696591) +station = ('ki16', 0.0076374255320578897) +zone = ('wvz024', 0.0016099606672333381) + +[25696] +centroid = (0.65762337680381422, -1.4331931548509695) +station = ('ki16', 0.0078165271587245441) +zone = ('wvz024', 0.00086583954570106114) + +[25699] +centroid = (0.66255583434958298, -1.4369740790628573) +station = ('kk22', 0.005575302939704675) +zone = ('wvz005', 0.0034710562388259323) + +[25701] +centroid = (0.66960759284617077, -1.4382429334290572) +station = ('khts', 0.0019808942944959129) +zone = ('wvz006', 0.0024318313276699274) + +[25702] +centroid = (0.67081096245883587, -1.4366584711742192) +station = ('khts', 0.0034330760231800848) +zone = ('wvz006', 0.0010259149916357171) + +[25703] +centroid = (0.6706271094754308, -1.4384715541077762) +station = ('khts', 0.002061053328343184) +zone = ('wvz006', 0.0024163796951783907) + +[25704] +centroid = (0.66859324239149676, -1.43967623271738) +station = ('khts', 0.0013412314864392201) +zone = ('wvz005', 0.0029372460022791037) + +[25705] +centroid = (0.67028629903239378, -1.4374562786285985) +station = ('khts', 0.0026798688298689801) +zone = ('wvz006', 0.0016433439470140471) + +[25801] +centroid = (0.66013055972759671, -1.4183572977036571) +station = ('kbkw', 0.002095332601168736) +zone = ('wvz035', 0.00092646761774172728) + +[25810] +centroid = (0.65618548729955883, -1.4198131117393307) +station = ('ki16', 0.002902809629830467) +zone = ('wvz035', 0.0033520005938762589) + +[25811] +centroid = (0.65552430421902574, -1.4188062138405626) +station = ('ki16', 0.0037710539670274185) +zone = ('wvz042', 0.0036586737467769145) + +[25812] +centroid = (0.6664014928234272, -1.4158577942285835) +station = ('kbkw', 0.006667547951990962) +zone = ('wvz036', 0.0027340111907654587) + +[25813] +centroid = (0.6590686141442208, -1.4154944864914885) +station = ('kbkw', 0.00069646574323341042) +zone = ('wvz035', 0.0020314263305133036) + +[25817] +centroid = (0.65900887152392496, -1.4206540113729416) +station = ('ki16', 0.0035506458760910875) +zone = ('wvz035', 0.0020665773674434351) + +[25818] +centroid = (0.66078645446049622, -1.4170675691996033) +station = ('kbkw', 0.0014781366303787159) +zone = ('wvz035', 0.0017364639411158564) + +[25820] +centroid = (0.65470284755328212, -1.4165618425955455) +station = ('kblf', 0.0037304449819304353) +zone = ('wvz042', 0.0019868591358844271) + +[25823] +centroid = (0.65730241075437257, -1.4173480610636913) +station = ('kbkw', 0.0027397975781491657) +zone = ('wvz035', 0.0020122830327624079) + +[25825] +centroid = (0.6570129478979293, -1.4151812347973405) +station = ('kbkw', 0.0027588200904608683) +zone = ('wvz035', 0.0031796150909411337) + +[25826] +centroid = (0.65582551314133497, -1.4199682889631253) +station = ('ki16', 0.002811582231492729) +zone = ('wvz034', 0.0027043856454117112) + +[25827] +centroid = (0.65867162155256209, -1.4181245056880261) +station = ('kbkw', 0.002155020911703759) +zone = ('wvz035', 0.00056629945471312222) + +[25831] +centroid = (0.66251499364508637, -1.4125087866466866) +station = ('kbkw', 0.0037799489540894346) +zone = ('wvz036', 0.0023968757412122853) + +[25832] +centroid = (0.65825485438047837, -1.4157932868594296) +station = ('kbkw', 0.0014799471662125714) +zone = ('wvz035', 0.0020399873627036584) + +[25836] +centroid = (0.65929714755647684, -1.4185806998479125) +station = ('kbkw', 0.0022771550685910221) +zone = ('wvz035', 0.00041965812400025164) + +[25837] +centroid = (0.66414607364424516, -1.4139030778262274) +station = ('kbkw', 0.0046466623221294891) +zone = ('wvz036', 0.0010545037951249765) + +[25839] +centroid = (0.65934659273418583, -1.4204646780556851) +station = ('ki16', 0.003908430647895293) +zone = ('wvz035', 0.0019074632416649002) + +[25840] +centroid = (0.66397852203605356, -1.4158931545992288) +station = ('kbkw', 0.0042455064549126852) +zone = ('wvz036', 0.00064971793400570715) + +[25841] +centroid = (0.65548006012248772, -1.415340094665857) +station = ('kbkw', 0.0042669245277204455) +zone = ('wvz042', 0.0026432218643299911) + +[25843] +centroid = (0.65642400399513634, -1.4157800921702848) +station = ('kbkw', 0.0033105231033208919) +zone = ('wvz035', 0.003338511180292767) + +[25844] +centroid = (0.65984329598601088, -1.4204502616360637) +station = ('ki16', 0.0043188378756073998) +zone = ('wvz035', 0.0019877245279368533) + +[25845] +centroid = (0.65790772584554913, -1.4228829015474933) +station = ('ki16', 0.0017242579904249728) +zone = ('wvz034', 0.0015324315672458281) + +[25846] +centroid = (0.66149675110618034, -1.4160187833987874) +station = ('kbkw', 0.0017747543022952209) +zone = ('wvz036', 0.0023379600107168272) + +[25848] +centroid = (0.6583059227143917, -1.4211916425957256) +station = ('ki16', 0.0027391212517571674) +zone = ('wvz034', 0.002525020694985006) + +[25849] +centroid = (0.65851476881268534, -1.4186034938479435) +station = ('kbkw', 0.0025623719620332828) +zone = ('wvz035', 0.00084073633435798923) + +[25853] +centroid = (0.65694910375389137, -1.4191639190707588) +station = ('ki16', 0.0034865625410254652) +zone = ('wvz035', 0.0024485843299597632) + +[25854] +centroid = (0.6656118011500699, -1.4133652022573477) +station = ('kbkw', 0.0061714171766220705) +zone = ('wvz036', 0.0023417748954908234) + +[25855] +centroid = (0.66212224220351001, -1.4164473140900296) +station = ('kbkw', 0.0024499009580191515) +zone = ('wvz036', 0.001911089598553321) + +[25857] +centroid = (0.65701643855643332, -1.4186313842093905) +station = ('kbkw', 0.0035456442875887975) +zone = ('wvz035', 0.0022651338859793874) + +[25862] +centroid = (0.66471765152098072, -1.4147887975150295) +station = ('kbkw', 0.0050408645717970445) +zone = ('wvz036', 0.001026137607651248) + +[25864] +centroid = (0.66106171033682826, -1.4143461122035537) +station = ('kbkw', 0.0017308839411510333) +zone = ('wvz036', 0.0027371599108424287) + +[25865] +centroid = (0.65819062626400504, -1.4200525709127041) +station = ('ki16', 0.0033342188500413822) +zone = ('wvz035', 0.001893445674381645) + +[25868] +centroid = (0.66448044382234217, -1.4131256209109264) +station = ('kbkw', 0.0051786222479650998) +zone = ('wvz036', 0.0017501955724089464) + +[25870] +centroid = (0.65677031222531701, -1.4205119764784142) +station = ('ki16', 0.0024051342457942436) +zone = ('wvz034', 0.0022375478443894502) + +[25871] +centroid = (0.65920780415206726, -1.4173895998998889) +station = ('kbkw', 0.0013966064608390541) +zone = ('wvz035', 0.00052715608900377135) + +[25873] +centroid = (0.6588629445451657, -1.4174486094818988) +station = ('kbkw', 0.0015987443401212979) +zone = ('wvz035', 0.00060737703608415789) + +[25875] +centroid = (0.65762461598758326, -1.4217591189487193) +station = ('ki16', 0.0019343287432700455) +zone = ('wvz034', 0.0017208198048537689) + +[25876] +centroid = (0.6567866136005307, -1.4215556484645218) +station = ('ki16', 0.0016134747624392378) +zone = ('wvz034', 0.0014319353932224607) + +[25878] +centroid = (0.65825853702519999, -1.4177270767640544) +station = ('kbkw', 0.0021481157608911603) +zone = ('wvz035', 0.0010107088919738912) + +[25879] +centroid = (0.66293111504534674, -1.4155659926309427) +station = ('kbkw', 0.0032000594788718327) +zone = ('wvz036', 0.00086689940612211876) + +[25880] +centroid = (0.66111235979172112, -1.417339526403649) +station = ('kbkw', 0.0018624250511649313) +zone = ('wvz035', 0.0019604298948771247) + +[25882] +centroid = (0.65680479993133645, -1.4205827495795824) +station = ('ki16', 0.002358303454617836) +zone = ('wvz034', 0.0021881439371086346) + +[25901] +centroid = (0.66236470334319708, -1.4157596020048664) +station = ('kbkw', 0.0026302513911070427) +zone = ('wvz036', 0.0014499950294423415) + +[25902] +centroid = (0.65571725036783379, -1.417511563508018) +station = ('kbkw', 0.0042514664684783184) +zone = ('wvz042', 0.003222156228205006) + +[25904] +centroid = (0.66197362741770271, -1.418664842171151) +station = ('kbkw', 0.0032091604197303355) +zone = ('wvz035', 0.002780272776146348) + +[25906] +centroid = (0.66037801250894435, -1.4157136125790761) +station = ('kbkw', 0.00064430360091700153) +zone = ('wvz035', 0.0021748205599742172) + +[25907] +centroid = (0.66071213834094622, -1.4152213773701363) +station = ('kbkw', 0.0010640121183986787) +zone = ('wvz035', 0.0026822367993405076) + +[25908] +centroid = (0.65755838074246997, -1.4180305720676838) +station = ('kbkw', 0.0028248377002760166) +zone = ('wvz035', 0.0016770290305305074) + +[25911] +centroid = (0.65900272796495796, -1.4166336628942651) +station = ('kbkw', 0.0010099609933303028) +zone = ('wvz035', 0.0011478793125355654) + +[25913] +centroid = (0.65823453874798521, -1.4222594699386808) +station = ('ki16', 0.0022071074330892566) +zone = ('wvz034', 0.002000727410192507) + +[25915] +centroid = (0.65607162201915858, -1.4187995466828198) +station = ('ki16', 0.0037095641583624384) +zone = ('wvz035', 0.0032179951571784894) + +[25916] +centroid = (0.65756351201047092, -1.4224094111747199) +station = ('ki16', 0.0015627660300422429) +zone = ('wvz034', 0.0013509682357978165) + +[25917] +centroid = (0.66307006070709806, -1.4175293658663886) +station = ('kbkw', 0.0036182103933408431) +zone = ('wvz036', 0.0020000088264435639) + +[25918] +centroid = (0.65889654213326654, -1.4136641946115069) +station = ('kbkw', 0.0018514115905451745) +zone = ('wvz043', 0.002542569543845317) + +[25920] +centroid = (0.65779701961109527, -1.4195451513392718) +station = ('ki16', 0.0034763602380672521) +zone = ('wvz035', 0.0018591807720780501) + +[25921] +centroid = (0.65750506093382166, -1.4191992794414041) +station = ('kbkw', 0.0035211707566276695) +zone = ('wvz035', 0.0019524600417380857) + +[25922] +centroid = (0.65390448159354231, -1.4155500228682867) +station = ('kblf', 0.0031819708040062835) +zone = ('wvz042', 0.0010590201742433508) + +[25928] +centroid = (0.65551280249925514, -1.4195203676638937) +station = ('ki16', 0.0032200803903742817) +zone = ('wvz034', 0.0031273142483964319) + +[25932] +centroid = (0.65890123706895443, -1.4189457878208445) +station = ('kbkw', 0.0026576728180057077) +zone = ('wvz035', 0.00077902268523861236) + +[25936] +centroid = (0.66188910112202859, -1.4143991702128142) +station = ('kbkw', 0.0024051528858288003) +zone = ('wvz036', 0.0019273154864004865) + +[25938] +centroid = (0.66589669124387296, -1.4145344681364287) +station = ('kbkw', 0.0062366329618422029) +zone = ('wvz036', 0.0022193451089391253) + +[25942] +centroid = (0.66350297217476273, -1.413411505842403) +station = ('kbkw', 0.0041969577644455731) +zone = ('wvz036', 0.0013739916916801313) + +[25951] +centroid = (0.6573267580974379, -1.4113854927401033) +station = ('kbkw', 0.0042104867446409082) +zone = ('wvz043', 0.00015240812548032091) + +[25958] +centroid = (0.6636236267859531, -1.4093535455183464) +station = ('klwb', 0.0055350431001737867) +zone = ('wvz036', 0.004553192594531936) + +[25962] +centroid = (0.66293399483861259, -1.4103787868275528) +station = ('kbkw', 0.0053126314448448762) +zone = ('wvz036', 0.0038285850438835507) + +[25969] +centroid = (0.65655774857571658, -1.4137503440633854) +station = ('kbkw', 0.0035498499767157477) +zone = ('wvz043', 0.0020885521245602363) + +[25971] +centroid = (0.65410440905935829, -1.4133230700092045) +station = ('kblf', 0.004371898666669081) +zone = ('wvz042', 0.0022408438549782008) + +[25972] +centroid = (0.6638483030205623, -1.4092857045703213) +station = ('klwb', 0.0056031564565720803) +zone = ('wvz037', 0.0045271372751075883) + +[25976] +centroid = (0.66059905845870959, -1.4110124635190746) +station = ('kbkw', 0.0038429542043618313) +zone = ('wvz043', 0.0033847825105054134) + +[25977] +centroid = (0.65970789334264124, -1.4120289956353134) +station = ('kbkw', 0.0029426204246544622) +zone = ('wvz043', 0.0025638258242826548) + +[25978] +centroid = (0.65660459321284015, -1.4127570073729054) +station = ('kbkw', 0.0039259910274318435) +zone = ('wvz043', 0.0013432949011936636) + +[25979] +centroid = (0.65468944342462676, -1.4122066701531666) +station = ('kblf', 0.0054160616515434483) +zone = ('wvz043', 0.0026414152235967551) + +[25981] +centroid = (0.66491907996995336, -1.4086741412004224) +station = ('klwb', 0.0058722268485062101) +zone = ('wvz037', 0.003606236771908208) + +[25984] +centroid = (0.66373532785808065, -1.4066894051349319) +station = ('klwb', 0.0039279831063486134) +zone = ('wvz045', 0.0024523366921633998) + +[25985] +centroid = (0.65939586337896972, -1.4104553195152527) +station = ('kbkw', 0.0042001367741375251) +zone = ('wvz043', 0.0022651249024523623) + +[25989] +centroid = (0.65765643333984702, -1.4149358240512175) +station = ('kbkw', 0.0021761634454026471) +zone = ('wvz035', 0.0029294401060351938) + +[26003] +centroid = (0.6993485094456372, -1.4075339699599723) +station = ('khlg', 0.0016930212800832555) +zone = ('wvz003', 0.00059471229252847373) + +[26030] +centroid = (0.70197498562379346, -1.4077176833170371) +station = ('khlg', 0.00093814863479725521) +zone = ('wvz002', 0.001410092278450616) + +[26031] +centroid = (0.69829567448095664, -1.40899147696502) +station = ('khlg', 0.0029418942443941868) +zone = ('wvz003', 0.0021228372100491701) + +[26032] +centroid = (0.70149184358025629, -1.4056964175103024) +station = ('khlg', 0.0015286545373267583) +zone = ('wvz002', 0.0014893286673626452) + +[26033] +centroid = (0.69516949308466203, -1.4063523122432018) +station = ('khlg', 0.0059493752552901274) +zone = ('wvz004', 0.0012601901958464068) + +[26034] +centroid = (0.70857702513201981, -1.4059034484661741) +station = ('kbvi', 0.0035612377885572729) +zone = ('wvz001', 0.0013769437734534155) + +[26035] +centroid = (0.70415186498663584, -1.4059245844034156) +station = ('khlg', 0.0033661072760102699) +zone = ('wvz002', 0.0012869683128240933) + +[26036] +centroid = (0.69783579767634873, -1.4058058496544024) +station = ('khlg', 0.0034888976595374367) +zone = ('wvz003', 0.0022086942981181666) + +[26037] +centroid = (0.70398836254230912, -1.4064651652326359) +station = ('khlg', 0.0030741260997717863) +zone = ('wvz002', 0.0010919047992509771) + +[26038] +centroid = (0.69751369716289313, -1.4089013830690322) +station = ('khlg', 0.0036631450561387074) +zone = ('wvz004', 0.0019886050272524087) + +[26039] +centroid = (0.69463002926616302, -1.4080280726712118) +station = ('khlg', 0.0064186275092916311) +zone = ('wvz004', 0.001078202033401433) + +[26040] +centroid = (0.69793224457081382, -1.4087589816553618) +station = ('khlg', 0.0032306874461692876) +zone = ('wvz003', 0.0022925993899883218) + +[26041] +centroid = (0.69616347554696523, -1.408576245682678) +station = ('khlg', 0.0049331367626864377) +zone = ('wvz004', 0.0007304879641729182) + +[26047] +centroid = (0.70721062431392601, -1.4065472655206497) +station = ('kpit', 0.0047666707586659467) +zone = ('wvz001', 0.00020421539394316579) + +[26050] +centroid = (0.70873878224709463, -1.4068686679024043) +station = ('kbvi', 0.003904503009840824) +zone = ('wvz001', 0.0015735958809542595) + +[26055] +centroid = (0.69384342682558175, -1.4099218596293808) +station = ('khlg', 0.0074124462816240622) +zone = ('wvz004', 0.0024484867666839795) + +[26056] +centroid = (0.7074041987812647, -1.406336167947621) +station = ('kpit', 0.004638285261059685) +zone = ('wvz001', 0.00017928294262322544) + +[26059] +centroid = (0.69913336270874393, -1.4068195717905456) +station = ('khlg', 0.0020002776272838346) +zone = ('wvz003', 0.00071472627707590101) + +[26060] +centroid = (0.70002211927044444, -1.4059813076041054) +station = ('khlg', 0.0016074522490719812) +zone = ('wvz003', 0.00085268769671999081) + +[26062] +centroid = (0.7055790730758692, -1.4060491136455455) +station = ('kpit', 0.0044582604054305818) +zone = ('wvz001', 0.0016603324381708443) + +[26070] +centroid = (0.70261541673952022, -1.4064834039233192) +station = ('khlg', 0.0017937990982528655) +zone = ('wvz002', 0.00031067428131909859) + +[26074] +centroid = (0.70084498965288222, -1.4065800951638798) +station = ('khlg', 0.00080957508606394394) +zone = ('wvz003', 0.0010873023461824846) + +[26075] +centroid = (0.70150774352974199, -1.4079229689436565) +station = ('khlg', 0.00052548328060302637) +zone = ('wvz003', 0.0018078989757884241) + +[26101] +centroid = (0.68487285334935144, -1.4237675565854517) +station = ('kpkb', 0.0023508228655753378) +zone = ('wvz009', 0.00096824886792452414) + +[26104] +centroid = (0.68549797792753819, -1.4221006100701643) +station = ('kpkb', 0.0010791379836876665) +zone = ('wvz009', 0.0012279375860497774) + +[26105] +centroid = (0.68643057716004885, -1.4226985424186052) +station = ('kpkb', 0.00087485882802327555) +zone = ('wvz009', 0.0020677851390151431) + +[26133] +centroid = (0.68283008508623222, -1.425452532351912) +station = ('kpkb', 0.0047415478431133296) +zone = ('wvz009', 0.0026241965177625668) + +[26134] +centroid = (0.68711373393586439, -1.4187857236751442) +station = ('kpkb', 0.0022403344659970939) +zone = ('wvz010', 0.0017522098613493317) + +[26136] +centroid = (0.68000776551270981, -1.4161723200130854) +station = ('kpkb', 0.0077218166695188269) +zone = ('wvz018', 0.0020674922229275547) + +[26137] +centroid = (0.68060159633740824, -1.414578415526994) +station = ('kpkb', 0.0080085452164242264) +zone = ('wvz018', 0.0027947277227841081) + +[26138] +centroid = (0.68108725165506823, -1.4173123341739029) +station = ('kpkb', 0.0063366314071146403) +zone = ('wvz017', 0.0023402105779478885) + +[26141] +centroid = (0.67951867189642334, -1.4180081096802106) +station = ('kpkb', 0.0075047867219151234) +zone = ('wvz018', 0.0023361031855535846) + +[26142] +centroid = (0.68427675359662521, -1.4215312313082862) +station = ('kpkb', 0.0022196289220538699) +zone = ('wvz009', 0.00091366271811975407) + +[26143] +centroid = (0.68166322776151889, -1.4202211522651542) +station = ('kpkb', 0.0049448171959715808) +zone = ('wvz017', 0.00059926734626589606) + +[26146] +centroid = (0.68865569742341637, -1.4143597432250117) +station = ('kpkb', 0.0059763166070800752) +zone = ('wvz010', 0.0022463893026456487) + +[26147] +centroid = (0.67901236933371223, -1.4150324978384854) +station = ('kpkb', 0.0090408983325127017) +zone = ('wvz018', 0.0011939792582088262) + +[26148] +centroid = (0.68172731625165217, -1.4169043111013717) +station = ('kpkb', 0.0059849678100462019) +zone = ('wvz019', 0.0026238863921664206) + +[26149] +centroid = (0.68911367181913974, -1.4106735729382147) +station = ('kckb', 0.0088151013186400593) +zone = ('wvz011', 0.00085796646482187028) + +[26150] +centroid = (0.68342351448520278, -1.4230698786702596) +station = ('kpkb', 0.003284700802969547) +zone = ('wvz009', 0.00098090899534197373) + +[26151] +centroid = (0.67857629882010162, -1.4167287309786212) +station = ('kpkb', 0.0087658967997921271) +zone = ('wvz018', 0.00096677536923546004) + +[26152] +centroid = (0.68085402330712419, -1.4171359162931116) +station = ('kpkb', 0.0066071261238466513) +zone = ('wvz018', 0.0030794707076224207) + +[26155] +centroid = (0.69167495994973394, -1.4095970713088772) +station = ('khlg', 0.0094891182602477638) +zone = ('wvz012', 0.0017334402355529608) + +[26159] +centroid = (0.69115898826296684, -1.4124742291274972) +station = ('kpkb', 0.0084294300657777755) +zone = ('wvz011', 0.0024324753163955334) + +[26160] +centroid = (0.68035032128499873, -1.4209084454712972) +station = ('kpkb', 0.0061672660186681766) +zone = ('wvz017', 0.00085026223019663808) + +[26161] +centroid = (0.68376221307984486, -1.4181617510142637) +station = ('kpkb', 0.0038003039735361168) +zone = ('wvz019', 0.0025949115433546899) + +[26164] +centroid = (0.68086522832092189, -1.4259551348166088) +station = ('k3i2', 0.0056451077667931783) +zone = ('wvz008', 0.0030979129792763102) + +[26167] +centroid = (0.69008466829519421, -1.4092379174554017) +station = ('kckb', 0.0082356185906296234) +zone = ('wvz012', 0.0018192977210188853) + +[26169] +centroid = (0.68193865817077604, -1.4236928215868814) +station = ('kpkb', 0.0048451251456975561) +zone = ('wvz009', 0.0025422947379163331) + +[26170] +centroid = (0.68692902574112591, -1.4167058846187126) +station = ('kpkb', 0.0037869280558527562) +zone = ('wvz010', 0.00026526451667412609) + +[26175] +centroid = (0.69005410757999186, -1.4132759112128157) +station = ('kpkb', 0.0073280733555745898) +zone = ('wvz011', 0.0017430491600828324) + +[26178] +centroid = (0.68169509747366031, -1.4143817169202944) +station = ('kpkb', 0.0073546133798737361) +zone = ('wvz019', 0.0021219677524122824) + +[26180] +centroid = (0.68408197485210276, -1.4201145650077349) +station = ('kpkb', 0.0026644547658026662) +zone = ('wvz009', 0.0020270110657470137) + +[26181] +centroid = (0.68435590427820314, -1.425347097011799) +station = ('kpkb', 0.0036232127067371417) +zone = ('wvz009', 0.0020470638069601311) + +[26184] +centroid = (0.68582700739812408, -1.4198728194530414) +station = ('kpkb', 0.0014742238406233901) +zone = ('wvz009', 0.002637076813788582) + +[26187] +centroid = (0.68719284971085737, -1.4215204975333866) +station = ('kpkb', 0.00069775688500383758) +zone = ('ohz076', 0.0015724866741342173) + +[26201] +centroid = (0.68073314180313105, -1.3997400800121438) +station = ('kw22', 0.00091673004918771471) +zone = ('wvz039', 0.0018961629585997214) + +[26202] +centroid = (0.66698362994213745, -1.4074274350624303) +station = ('klwb', 0.0069199928365076156) +zone = ('wvz037', 0.0025619480766401071) + +[26203] +centroid = (0.6727976358397959, -1.4065216789938153) +station = ('kw22', 0.009010814453123548) +zone = ('wvz038', 0.0024514686742949082) + +[26205] +centroid = (0.66892890411324024, -1.4076150055971421) +station = ('klwb', 0.0087363468355425491) +zone = ('wvz037', 0.0021292722075532729) + +[26206] +centroid = (0.67085988403776931, -1.4053802162097186) +station = ('klwb', 0.010102421211109285) +zone = ('wvz038', 0.0016980129519562435) + +[26208] +centroid = (0.66886991198452284, -1.405084400354798) +station = ('klwb', 0.0081023043963720943) +zone = ('wvz038', 0.0032000757047438533) + +[26209] +centroid = (0.67070835455211109, -1.3960704205400707) +station = ('kekn', 0.0081567066825220091) +zone = ('wvz046', 0.0017115846797547635) + +[26215] +centroid = (0.67556677523101005, -1.4028077928784968) +station = ('kw22', 0.0053193520926256245) +zone = ('wvz038', 0.0037623791752384016) + +[26217] +centroid = (0.67394607994090072, -1.4040377264023771) +station = ('kw22', 0.0071579175328835521) +zone = ('wvz038', 0.0021114005729890796) + +[26218] +centroid = (0.67797206583306102, -1.4009098694900004) +station = ('kw22', 0.0027063491499273178) +zone = ('wvz039', 0.0010247664729566787) + +[26222] +centroid = (0.6747160843002955, -1.402651516097273) +station = ('kw22', 0.0061134112677477424) +zone = ('wvz038', 0.0029568488755785773) + +[26224] +centroid = (0.67614596274328442, -1.3994562894757696) +station = ('kw22', 0.0046730626589350788) +zone = ('wvz039', 0.0028330741142636234) + +[26228] +centroid = (0.67639196690135306, -1.4027376830024441) +station = ('kw22', 0.004514555259323632) +zone = ('wvz039', 0.0031243303530892118) + +[26230] +centroid = (0.67495095325773646, -1.3993288106272039) +station = ('kekn', 0.0057668113175290397) +zone = ('wvz039', 0.0040212699111426328) + +[26234] +centroid = (0.67673019425709702, -1.4017631086014231) +station = ('kw22', 0.0040026888110546218) +zone = ('wvz039', 0.0024329034723352197) + +[26236] +centroid = (0.67622197183220878, -1.4003590086714861) +station = ('kw22', 0.0044776067548174215) +zone = ('wvz039', 0.0026727649535963549) + +[26237] +centroid = (0.67798032124042296, -1.3988932637123686) +station = ('kw22', 0.0031241126350628513) +zone = ('wvz039', 0.0014489623002773655) + +[26238] +centroid = (0.68257456888374024, -1.3992997683484505) +station = ('kw22', 0.0022745994129889685) +zone = ('wvz040', 0.0023534412572166897) + +[26241] +centroid = (0.67944793370183998, -1.3926212310591093) +station = ('kekn', 0.0011333176339941055) +zone = ('wvz047', 0.0029356411878716147) + +[26250] +centroid = (0.68126248271196843, -1.3956095663510815) +station = ('kekn', 0.0030329321900811486) +zone = ('wvz040', 0.0018199837273480642) + +[26253] +centroid = (0.67685765565237022, -1.3939557796183544) +station = ('kekn', 0.0018008389636217175) +zone = ('wvz047', 0.00015596535697464837) + +[26254] +centroid = (0.67859549744187342, -1.3903780466379838) +station = ('kekn', 0.0025438741130744927) +zone = ('wvz047', 0.0034362545080378632) + +[26257] +centroid = (0.67926765864340155, -1.3963270537532839) +station = ('kekn', 0.0021786486320373587) +zone = ('wvz047', 0.0030623352895563357) + +[26259] +centroid = (0.67723831196223017, -1.3944492714643557) +station = ('kekn', 0.0015371661451966995) +zone = ('wvz047', 0.00056404242603349673) + +[26260] +centroid = (0.68211533785095546, -1.3862112475817723) +station = ('kw99', 0.0043035136008215888) +zone = ('wvz041', 0.0019855852362703208) + +[26261] +centroid = (0.66676235709956966, -1.4057748700601795) +station = ('klwb', 0.0061937031464632695) +zone = ('wvz037', 0.0038167456844375603) + +[26263] +centroid = (0.67978671956294456, -1.3864476175223699) +station = ('kw99', 0.0041724135629717498) +zone = ('wvz041', 0.0033534509650780435) + +[26264] +centroid = (0.67327329042084194, -1.3932462858241261) +station = ('kekn', 0.0053779210412232409) +zone = ('vaz503', 0.0034589630617620592) + +[26266] +centroid = (0.67041021740928541, -1.4045783944980601) +station = ('klwb', 0.0095698676937999369) +zone = ('wvz038', 0.0016293832606407454) + +[26267] +centroid = (0.67976591523826091, -1.3978669577523184) +station = ('kw22', 0.0025411624934484141) +zone = ('wvz039', 0.0021099501632453645) + +[26268] +centroid = (0.67629695117687449, -1.3917062945586287) +station = ('kekn', 0.0027897867433103762) +zone = ('wvz047', 0.0019165458091204388) + +[26269] +centroid = (0.6825216505008197, -1.3896320754623888) +station = ('kekn', 0.0049779015470996085) +zone = ('wvz041', 0.0007584968293812116) + +[26270] +centroid = (0.67829086767423041, -1.3888984088580205) +station = ('kekn', 0.0037123695358069579) +zone = ('wvz505', 0.0024515993734193302) + +[26271] +centroid = (0.68128347902287001, -1.3885640386799234) +station = ('kekn', 0.0047527635100051728) +zone = ('wvz041', 0.0013801338451570897) + +[26273] +centroid = (0.67413263818464642, -1.3956962743083206) +station = ('kekn', 0.004784763325292346) +zone = ('wvz047', 0.0028967138307701688) + +[26275] +centroid = (0.68026261849008596, -1.3954089407535648) +station = ('kekn', 0.0021231686697732394) +zone = ('wvz040', 0.0028245218502081257) + +[26276] +centroid = (0.68112390356936015, -1.3922996541444292) +station = ('kekn', 0.0026933438384448582) +zone = ('wvz041', 0.0032091645625727727) + +[26278] +centroid = (0.67763090632417378, -1.3967962157095126) +station = ('kekn', 0.0026539007397467429) +zone = ('wvz047', 0.0022830075787920157) + +[26280] +centroid = (0.67595926487319857, -1.3967785529774823) +station = ('kekn', 0.0036275723162002768) +zone = ('wvz047', 0.0022353403825007964) + +[26282] +centroid = (0.67233006213318669, -1.3990990380311787) +station = ('kekn', 0.0076129209537785974) +zone = ('wvz046', 0.0039319675096904294) + +[26283] +centroid = (0.68177548733900706, -1.3929923055113758) +station = ('kekn', 0.003174170000362915) +zone = ('wvz040', 0.0028542701956052506) + +[26285] +centroid = (0.67915883736453964, -1.3951728500656475) +station = ('kekn', 0.0012961699807534067) +zone = ('wvz047', 0.0025543564516711127) + +[26287] +centroid = (0.68358713910257718, -1.390830121820835) +station = ('kekn', 0.0054070283028648854) +zone = ('wvz041', 0.0019134630662239909) + +[26288] +centroid = (0.67217329665977255, -1.4023196068334214) +station = ('kw22', 0.0085750917625781777) +zone = ('wvz038', 0.0010701939507236535) + +[26291] +centroid = (0.67011211517304481, -1.3989583121335907) +station = ('khsp', 0.0089230103725427487) +zone = ('wvz046', 0.0022873571412980356) + +[26292] +centroid = (0.68315529228575622, -1.3881244426012234) +station = ('kw99', 0.0060905002687430473) +zone = ('wvz041', 0.0006512548651332917) + +[26293] +centroid = (0.67688133977031972, -1.395142725682758) +station = ('kekn', 0.0021121157366594547) +zone = ('wvz047', 0.00082734473124190875) + +[26294] +centroid = (0.67250068552086151, -1.3968622066085303) +station = ('kekn', 0.0066347021499213888) +zone = ('wvz046', 0.0035035066652997745) + +[26296] +centroid = (0.6765674597576411, -1.3884715536828602) +station = ('kekn', 0.0045334374402976989) +zone = ('wvz505', 0.0012125855272569525) + +[26298] +centroid = (0.67144633211973181, -1.4006868338648881) +station = ('kekn', 0.0090552753875810972) +zone = ('wvz038', 0.0023382518211197958) + +[26301] +centroid = (0.68594054106596647, -1.4031395974225935) +station = ('kckb', 0.0023948806302059155) +zone = ('wvz031', 0.00036789237557507758) + +[26320] +centroid = (0.68772976534864838, -1.4104415837740394) +station = ('kckb', 0.0082417530221341271) +zone = ('wvz011', 0.001449348520060614) + +[26321] +centroid = (0.68148974203387058, -1.4080373752761248) +station = ('kw22', 0.0055904584351509313) +zone = ('wvz030', 0.0024994647721555139) + +[26323] +centroid = (0.68526143345401536, -1.4013355029346843) +station = ('kckb', 0.0011934239942317834) +zone = ('wvz031', 0.0012591284059886136) + +[26325] +centroid = (0.68240532430617429, -1.4120557864393315) +station = ('kpkb', 0.008430796539858355) +zone = ('wvz019', 0.0025488517883470343) + +[26327] +centroid = (0.6828231735823943, -1.4127178421844906) +station = ('kpkb', 0.0077793835066564294) +zone = ('wvz019', 0.0018918438458509392) + +[26330] +centroid = (0.68565729158166022, -1.4001179787017857) +station = ('kckb', 0.00026324358882177273) +zone = ('wvz031', 0.0021474751497612163) + +[26335] +centroid = (0.67794759631694812, -1.4082040716729829) +station = ('kw22', 0.0062923462241778558) +zone = ('wvz028', 0.002553855649271864) + +[26337] +centroid = (0.68469674962782523, -1.4165265694913627) +station = ('kpkb', 0.0042990497677961592) +zone = ('wvz019', 0.001606753790479023) + +[26338] +centroid = (0.68202030467318431, -1.4070764318965618) +station = ('kw22', 0.0049683427660139378) +zone = ('wvz030', 0.0021291616224804267) + +[26339] +centroid = (0.68804699639349087, -1.4069796184829537) +station = ('kckb', 0.0057701897171233791) +zone = ('wvz020', 0.0029505253406342047) + +[26342] +centroid = (0.68126485635975109, -1.4111829996402869) +station = ('kckb', 0.0098075731127220123) +zone = ('wvz029', 0.0019114011358917933) + +[26343] +centroid = (0.67757573646651814, -1.4036283594263219) +station = ('kw22', 0.0037517547161175762) +zone = ('wvz030', 0.0032193182101131436) + +[26346] +centroid = (0.68574024708100756, -1.4147650784904948) +station = ('kpkb', 0.005319545390748753) +zone = ('wvz019', 0.0019502925596617724) + +[26347] +centroid = (0.68515619010012008, -1.3984642443289359) +station = ('kckb', 0.0014394626435424427) +zone = ('wvz032', 0.0017578372216822155) + +[26348] +centroid = (0.68875233630409927, -1.4057816419376774) +station = ('kckb', 0.0052645320839308524) +zone = ('wvz012', 0.0027919860968641723) + +[26349] +centroid = (0.68479220168461674, -1.398537321264717) +station = ('kckb', 0.0016191574602747712) +zone = ('wvz032', 0.0020874946410250898) + +[26351] +centroid = (0.67939075671554472, -1.4108808831467665) +station = ('kw22', 0.0078532201630070603) +zone = ('wvz029', 0.00026842870251887784) + +[26354] +centroid = (0.68675442300275635, -1.396818049778455) +station = ('kckb', 0.0026337961140759807) +zone = ('wvz032', 0.000286682573329285) + +[26361] +centroid = (0.68707891461728721, -1.4018059040746818) +station = ('kckb', 0.0017920043049851611) +zone = ('wvz031', 0.0016780448648843318) + +[26362] +centroid = (0.68333371729518766, -1.4148571795151226) +station = ('kpkb', 0.0060856379267769769) +zone = ('wvz019', 0.00045781015475598527) + +[26366] +centroid = (0.68733256331747961, -1.402101335957167) +station = ('kckb', 0.0021308547305686283) +zone = ('wvz031', 0.0018124846276391902) + +[26369] +centroid = (0.68650712730104135, -1.402053601202125) +station = ('kckb', 0.001663202788395036) +zone = ('wvz031', 0.0010939072090009616) + +[26372] +centroid = (0.67996535401188618, -1.4023132189283589) +station = ('kw22', 0.001298252621253979) +zone = ('wvz039', 0.0018734512703288482) + +[26374] +centroid = (0.68857794300524011, -1.3941542410075987) +station = ('kmgw', 0.0034818958024369949) +zone = ('wvz023', 0.0028588210876742768) + +[26376] +centroid = (0.67691498971829811, -1.404184944924783) +station = ('kw22', 0.0045420745422623506) +zone = ('wvz030', 0.0037480648179812172) + +[26377] +centroid = (0.68933979667702805, -1.4075563276276901) +station = ('kckb', 0.0067397961593756829) +zone = ('wvz012', 0.0019060846759826114) + +[26378] +centroid = (0.68279184492232092, -1.4039016430805993) +station = ('kw22', 0.0031361261329548957) +zone = ('wvz030', 0.0023552915247757994) + +[26384] +centroid = (0.6803511241364546, -1.4085996156413623) +station = ('kw22', 0.0059797856611232296) +zone = ('wvz029', 0.0022706183196039031) + +[26385] +centroid = (0.68346095179765798, -1.4024614671950235) +station = ('kw22', 0.0030296569588343387) +zone = ('wvz031', 0.0021910200593306538) + +[26386] +centroid = (0.68758724176193053, -1.4033463316724921) +station = ('kckb', 0.0030522419179134291) +zone = ('wvz031', 0.001992037935990996) + +[26404] +centroid = (0.68653842105452956, -1.4016138480437923) +station = ('kckb', 0.0013647852308642521) +zone = ('wvz031', 0.0013453700414582939) + +[26405] +centroid = (0.68460883739340217, -1.3946976667234996) +station = ('kckb', 0.0043411189926786022) +zone = ('wvz040', 0.0020416271874875848) + +[26408] +centroid = (0.68410962086745419, -1.4016118583684452) +station = ('kckb', 0.0021747717000299843) +zone = ('wvz031', 0.0018121635037456265) + +[26410] +centroid = (0.68767403698563223, -1.3931990572145672) +station = ('kmgw', 0.0045228229200346016) +zone = ('wvz023', 0.0024226195901770782) + +[26411] +centroid = (0.68382139719477986, -1.4087135332816401) +station = ('kckb', 0.0070325068790714406) +zone = ('wvz020', 0.0015577976765979574) + +[26412] +centroid = (0.67839682661311895, -1.4055095276539988) +station = ('kw22', 0.0042383879975517007) +zone = ('wvz030', 0.0022397627363609164) + +[26415] +centroid = (0.68571022741787324, -1.4126555339301943) +station = ('kpkb', 0.0069424505998333785) +zone = ('wvz019', 0.0025460865405996505) + +[26416] +centroid = (0.68342327013910753, -1.3966813381381462) +station = ('kckb', 0.0036047992338569552) +zone = ('wvz040', 0.00051115726796555712) + +[26419] +centroid = (0.68919018705354718, -1.4082431670482276) +station = ('kckb', 0.0071323494147193349) +zone = ('wvz012', 0.0021491016272321812) + +[26421] +centroid = (0.6838541221182548, -1.4123952529788446) +station = ('kpkb', 0.0075799483245411227) +zone = ('wvz019', 0.0018764016726337093) + +[26422] +centroid = (0.6858182283919867, -1.4040105865325088) +station = ('kckb', 0.0030703966754537771) +zone = ('wvz031', 0.00088661487899277319) + +[26424] +centroid = (0.68533637789209612, -1.3992932582703408) +station = ('kckb', 0.00082013773791189172) +zone = ('wvz032', 0.0021024731362344691) + +[26425] +centroid = (0.68550588426904979, -1.3920367551992014) +station = ('kmgw', 0.0068595893908723988) +zone = ('wvz023', 0.0035746071837677944) + +[26426] +centroid = (0.68568806173637298, -1.4061145809457878) +station = ('kckb', 0.0047028075074609481) +zone = ('wvz020', 0.0019511290582657388) + +[26430] +centroid = (0.67842897557794068, -1.4095906310439372) +station = ('kw22', 0.0071114570555021964) +zone = ('wvz029', 0.0015710954367526124) + +[26431] +centroid = (0.6876427606854365, -1.4014181442747662) +station = ('kckb', 0.0020285061799531065) +zone = ('wvz021', 0.002059448248447063) + +[26435] +centroid = (0.68533122917080269, -1.3978740088824966) +station = ('kckb', 0.0017786782401946137) +zone = ('wvz032', 0.0013626126118112202) + +[26436] +centroid = (0.68586922691272989, -1.4088209582971001) +station = ('kckb', 0.0067914964096474784) +zone = ('wvz020', 0.00052052193195722594) + +[26437] +centroid = (0.6898584387175507, -1.4051461850103186) +station = ('kckb', 0.0055756759281162162) +zone = ('wvz012', 0.002232334617026792) + +[26438] +centroid = (0.68672780673166345, -1.4018328868649177) +station = ('kckb', 0.0016045722211470582) +zone = ('wvz031', 0.0013728418966867074) + +[26440] +centroid = (0.68629304521499168, -1.3948447456195652) +station = ('kckb', 0.0040412783411778426) +zone = ('wvz032', 0.00173776190700942) + +[26443] +centroid = (0.68200374149858289, -1.4094084186700289) +station = ('kckb', 0.0082439613308517411) +zone = ('wvz029', 0.0030017511881939574) + +[26444] +centroid = (0.6870264500199722, -1.3922606809422324) +station = ('kmgw', 0.0053695067436391568) +zone = ('wvz023', 0.0023039624277739102) + +[26447] +centroid = (0.67907823805968248, -1.4045538726220694) +station = ('kw22', 0.0032490950592643374) +zone = ('wvz030', 0.00157083657438414) + +[26448] +centroid = (0.68770883885091694, -1.4048734424081095) +station = ('kckb', 0.0041425593617346922) +zone = ('wvz031', 0.0025853945943480326) + +[26451] +centroid = (0.68430420762575916, -1.4032839536050259) +station = ('kckb', 0.0029805005274875815) +zone = ('wvz031', 0.0013565766289728575) + +[26452] +centroid = (0.68132630940271377, -1.4054827543032731) +station = ('kw22', 0.0036055392069631017) +zone = ('wvz030', 0.00080295276890500033) + +[26456] +centroid = (0.68526759446627494, -1.4097730354040632) +station = ('kckb', 0.0075576930410076182) +zone = ('wvz020', 0.00091251482552296575) + +[26501] +centroid = (0.69174780999271224, -1.3969062587188508) +station = ('kmgw', 0.0016382986508982548) +zone = ('wvz022', 0.0001469336313128097) + +[26505] +centroid = (0.69202224556429581, -1.3952828407151081) +station = ('kmgw', 0.00036486820590200781) +zone = ('wvz022', 0.0014220585898275112) + +[26508] +centroid = (0.69119633830895943, -1.3944377173847076) +station = ('kmgw', 0.00087476324203490023) +zone = ('wvz022', 0.0020881612966182953) + +[26519] +centroid = (0.6906125431274599, -1.3897528173400417) +station = ('k2g4', 0.0038652103185184178) +zone = ('wvz023', 0.0018291381990346333) + +[26520] +centroid = (0.68935265975361526, -1.3931850771272587) +station = ('kmgw', 0.0029491916374165027) +zone = ('wvz023', 0.0021500739852187362) + +[26521] +centroid = (0.69309944532533407, -1.4002032903956232) +station = ('kmgw', 0.0042888171502933363) +zone = ('paz031', 0.0024808763437939841) + +[26525] +centroid = (0.69209036576500116, -1.3897384881868828) +station = ('k2g4', 0.0040574120140507691) +zone = ('wvz023', 0.0032702096295498737) + +[26534] +centroid = (0.69199060274495716, -1.3962921820748291) +station = ('kmgw', 0.001142492453793934) +zone = ('wvz022', 0.0006784873596989698) + +[26537] +centroid = (0.68921170696322431, -1.3912429620021021) +station = ('kmgw', 0.0039319022253504607) +zone = ('wvz023', 0.0006874831215704872) + +[26541] +centroid = (0.69280881309829201, -1.3984494962967566) +station = ('kmgw', 0.0029102269670184702) +zone = ('wvz022', 0.0015477760481126576) + +[26542] +centroid = (0.69070892020875507, -1.3924729478858597) +station = ('kmgw', 0.0022283443399002028) +zone = ('wvz023', 0.002402082402295086) + +[26543] +centroid = (0.69227835517873337, -1.3962620576919396) +station = ('kmgw', 0.001147466314980907) +zone = ('wvz022', 0.00086646560946610396) + +[26547] +centroid = (0.68960992128535925, -1.3930144886461686) +station = ('kmgw', 0.0027813659137543279) +zone = ('wvz023', 0.0020982326481524078) + +[26554] +centroid = (0.68880103099023005, -1.398180558512317) +station = ('kckb', 0.003226334689789829) +zone = ('wvz021', 0.0019602015815747432) + +[26559] +centroid = (0.68942729003243064, -1.3991992024769508) +station = ('kckb', 0.0035731673161139479) +zone = ('wvz021', 0.0010239338453402055) + +[26560] +centroid = (0.6901379357439652, -1.3988287563432151) +station = ('kmgw', 0.0036260238534952826) +zone = ('wvz021', 0.001412982775453529) + +[26562] +centroid = (0.69182367945529633, -1.4044369530154783) +station = ('kckb', 0.0068128443030028331) +zone = ('wvz012', 0.0023683723107069607) + +[26563] +centroid = (0.68909752752355879, -1.4010380988301447) +station = ('kckb', 0.0032743607982310243) +zone = ('wvz021', 0.00063046698396032456) + +[26568] +centroid = (0.68809413773658723, -1.4011126418424971) +station = ('kckb', 0.0023308155837460142) +zone = ('wvz021', 0.0015562457662697455) + +[26570] +centroid = (0.69174262636483375, -1.4002225239239801) +station = ('kmgw', 0.0041781126866651114) +zone = ('wvz021', 0.0021744806556783613) + +[26571] +centroid = (0.68986829982782449, -1.4008360769692261) +station = ('kckb', 0.0040008671481224639) +zone = ('wvz021', 0.00038214537957653965) + +[26572] +centroid = (0.68917282102748978, -1.4016347221816463) +station = ('kckb', 0.0034823497434504917) +zone = ('wvz021', 0.00095740769403873432) + +[26574] +centroid = (0.69094780342347561, -1.3995552496443575) +station = ('kmgw', 0.003810898473022642) +zone = ('wvz021', 0.0015542612239829467) + +[26575] +centroid = (0.69250769144244551, -1.4039672674604742) +station = ('kckb', 0.0072549583888736526) +zone = ('wvz012', 0.0029427598498973891) + +[26576] +centroid = (0.68928733207971316, -1.4007337308618892) +station = ('kckb', 0.0034146755799870027) +zone = ('wvz021', 0.00033883340798345998) + +[26581] +centroid = (0.69238417449128176, -1.4062946291114236) +station = ('kckb', 0.008069893109311839) +zone = ('wvz012', 0.0014320147533262921) + +[26582] +centroid = (0.68990758718928691, -1.4028971886427839) +station = ('kckb', 0.0045608400375583237) +zone = ('wvz021', 0.0018693177204663616) + +[26585] +centroid = (0.69148529501991962, -1.4037791209671089) +station = ('kckb', 0.006272706374831293) +zone = ('wvz021', 0.0031586557876596205) + +[26586] +centroid = (0.6897883288414981, -1.3980370749945104) +station = ('kmgw', 0.0033441220002075464) +zone = ('wvz022', 0.00203110277074068) + +[26587] +centroid = (0.68971717176789427, -1.4013730449668946) +station = ('kckb', 0.0039387877515821134) +zone = ('wvz021', 0.0006787216459782536) + +[26588] +centroid = (0.69083793494706247, -1.3988083708975516) +station = ('kmgw', 0.0033009595967216474) +zone = ('wvz022', 0.0015783751040512033) + +[26590] +centroid = (0.69235609214361726, -1.4017141695691973) +station = ('kckb', 0.0065692575254741002) +zone = ('wvz021', 0.0029270994630454079) + +[26591] +centroid = (0.68856043735284256, -1.4014345329164426) +station = ('kckb', 0.0028557543776216356) +zone = ('wvz021', 0.0012434585802974022) + +[26601] +centroid = (0.67400117998538622, -1.407202287588923) +station = ('kw22', 0.0082806100093345252) +zone = ('wvz028', 0.0019126119750967107) + +[26610] +centroid = (0.67123973749617327, -1.4092094162287168) +station = ('klwb', 0.011355387047255031) +zone = ('wvz037', 0.003027679768090626) + +[26611] +centroid = (0.67799241637213925, -1.4110340881485066) +station = ('kw22', 0.0083162091096209388) +zone = ('wvz029', 0.0013691745079630767) + +[26615] +centroid = (0.67703391645352917, -1.4086897095373503) +station = ('kw22', 0.0070620111102398095) +zone = ('wvz028', 0.0015981002731322393) + +[26617] +centroid = (0.6719708908264187, -1.4107923251405203) +station = ('kcrw', 0.010752761516386503) +zone = ('wvz037', 0.0036826661544768413) + +[26619] +centroid = (0.67634421469301853, -1.4085757744437801) +station = ('kw22', 0.0073708699606634537) +zone = ('wvz028', 0.00092472697101821447) + +[26621] +centroid = (0.67567535216377672, -1.4057476254705561) +station = ('kw22', 0.006259171166652101) +zone = ('wvz028', 0.0024072834736082352) + +[26623] +centroid = (0.67466541739211017, -1.4114759706085267) +station = ('kw22', 0.010188777212571651) +zone = ('wvz028', 0.0022148197141532281) + +[26624] +centroid = (0.67578148563559048, -1.4101359242621379) +station = ('kw22', 0.0086893802719765992) +zone = ('wvz028', 0.0010842904453120402) + +[26627] +centroid = (0.67635824714020454, -1.4064747121836443) +station = ('kw22', 0.0061139086403266757) +zone = ('wvz028', 0.0020459324752405109) + +[26629] +centroid = (0.67306301315256167, -1.408555197011899) +station = ('kw22', 0.0096664948779278149) +zone = ('wvz028', 0.0023847397310631309) + +[26631] +centroid = (0.67738397714160159, -1.4056409509466741) +station = ('kw22', 0.0049359266444884298) +zone = ('wvz028', 0.0031495529795908762) + +[26636] +centroid = (0.67620881204964867, -1.4129880016994067) +station = ('kcrw', 0.010957650268440431) +zone = ('wvz018', 0.0027883794050679923) + +[26638] +centroid = (0.67662093664592227, -1.4139930495491677) +station = ('kcrw', 0.01060639284755714) +zone = ('wvz018', 0.0019279355337606524) + +[26651] +centroid = (0.66902934781169254, -1.4117485910376881) +station = ('kcrw', 0.0097741212238984659) +zone = ('wvz037', 0.0013995512170214056) + +[26656] +centroid = (0.66803845458216526, -1.4165558212096263) +station = ('kcrw', 0.0061948363905144294) +zone = ('wvz027', 0.0034742486858412264) + +[26660] +centroid = (0.66946641316297695, -1.4084059713608534) +station = ('klwb', 0.0094819885520525306) +zone = ('wvz037', 0.0018260323426202627) + +[26662] +centroid = (0.66796321343811182, -1.4092144951368399) +station = ('klwb', 0.0084855798033388018) +zone = ('wvz037', 0.00086022164748713584) + +[26676] +centroid = (0.66601772982749874, -1.4075690859845222) +station = ('klwb', 0.0061497392549529619) +zone = ('wvz037', 0.003098346055600951) + +[26678] +centroid = (0.66618535124886036, -1.4121403301882982) +station = ('kbkw', 0.0070513339988777252) +zone = ('wvz037', 0.0026135879123714298) + +[26679] +centroid = (0.66618318704058788, -1.4102376420509439) +station = ('klwb', 0.0076343615208402955) +zone = ('wvz037', 0.0021331362373217919) + +[26680] +centroid = (0.66485408390860912, -1.4114996547264762) +station = ('kbkw', 0.0061204689652209765) +zone = ('wvz036', 0.0030738489743013342) + +[26681] +centroid = (0.66729520612020343, -1.4090336441197482) +station = ('klwb', 0.0078552518375700122) +zone = ('wvz037', 0.00137883873865085) + +[26684] +centroid = (0.6661042632518126, -1.4110233194670219) +station = ('kbkw', 0.007380462229872398) +zone = ('wvz037', 0.0023015691111199239) + +[26690] +centroid = (0.66628188540978805, -1.4152721489980769) +station = ('kbkw', 0.0065583829568636445) +zone = ('wvz036', 0.002556489442157387) + +[26691] +centroid = (0.67012504806280204, -1.4077532705804852) +station = ('klwb', 0.0098850971183842371) +zone = ('wvz037', 0.0026449928592432873) + +[26704] +centroid = (0.68576693316527049, -1.3718163478699763) +station = ('kcbe', 0.0060550128876887604) +zone = ('wvz050', 0.00048928803666373687) + +[26705] +centroid = (0.68634303144476883, -1.3890096561445424) +station = ('k2g4', 0.005542909298029408) +zone = ('wvz023', 0.0027670177110594367) + +[26707] +centroid = (0.68445020441768845, -1.3857049450190613) +station = ('kw99', 0.0053917383612206117) +zone = ('wvz501', 0.0015422606275910993) + +[26710] +centroid = (0.68594389209813023, -1.3782420916704587) +station = ('kw99', 0.0059929146832409796) +zone = ('wvz504', 0.0023921412159180646) + +[26711] +centroid = (0.68562589310841682, -1.3695490255452956) +station = ('kokv', 0.0049068792346512579) +zone = ('wvz050', 0.0020421230597984525) + +[26714] +centroid = (0.68396784777231479, -1.3727917251224533) +station = ('kcbe', 0.0075842534875285158) +zone = ('wvz050', 0.0023122833543871724) + +[26716] +centroid = (0.68508941380293886, -1.3880513307588576) +station = ('k2g4', 0.006257264090180719) +zone = ('wvz041', 0.0024753931367447676) + +[26717] +centroid = (0.6865108797589331, -1.3819950906143146) +station = ('k2g4', 0.004786785682393358) +zone = ('wvz503', 0.0012858334881045621) + +[26719] +centroid = (0.68910436921422658, -1.3748797148664917) +station = ('kcbe', 0.0023202932747105102) +zone = ('wvz504', 0.0018303117002253669) + +[26720] +centroid = (0.68557044399808098, -1.3845624699439985) +station = ('k2g4', 0.0052327575401016806) +zone = ('wvz501', 0.0011707232282630216) + +[26722] +centroid = (0.6894596135301776, -1.3725826521313569) +station = ('kcbe', 0.0025173869995780826) +zone = ('mdz502', 0.0023066557120690998) + +[26726] +centroid = (0.68772571618478373, -1.3785435798454484) +station = ('kcbe', 0.0047660521355816724) +zone = ('wvz504', 0.001361160085391693) + +[26731] +centroid = (0.68362246456663756, -1.3801115487388549) +station = ('kw99', 0.0033314943731598688) +zone = ('wvz502', 0.0022910600019616471) + +[26739] +centroid = (0.6849392980339748, -1.3832623043710177) +station = ('kw99', 0.0048412151721030318) +zone = ('wvz501', 0.0004948161694081298) + +[26743] +centroid = (0.68580878616073326, -1.3801242198292245) +station = ('kw99', 0.0054779052586286852) +zone = ('wvz503', 0.0017103106636609626) + +[26750] +centroid = (0.68899738053107928, -1.3795897476523862) +station = ('kcbe', 0.0045218528688451953) +zone = ('wvz503', 0.00183798463424451) + +[26753] +centroid = (0.69050017883021653, -1.3751486701042241) +station = ('kcbe', 0.00099839436581546461) +zone = ('mdz501', 0.0019780286993800354) + +[26755] +centroid = (0.68357895350838538, -1.3740010637611602) +station = ('kw99', 0.0063934610970054371) +zone = ('wvz050', 0.0030263544531300016) + +[26757] +centroid = (0.68611990855319382, -1.374363184674364) +station = ('kcbe', 0.0053013041952824497) +zone = ('wvz050', 0.0017715033266182004) + +[26761] +centroid = (0.68544003299637202, -1.3734742012198609) +station = ('kcbe', 0.0060439447979951074) +zone = ('wvz050', 0.0013293033775813327) + +[26763] +centroid = (0.68892552532577467, -1.3735447823348113) +station = ('kcbe', 0.0026297355845570063) +zone = ('wvz050', 0.0029403880389538236) + +[26764] +centroid = (0.68856609221961906, -1.3884648167119473) +station = ('k2g4', 0.0036379230939869579) +zone = ('wvz023', 0.0015780214589355798) + +[26767] +centroid = (0.69142794350069925, -1.3745717864265623) +station = ('kcbe', 5.0552737851495092e-05) +zone = ('mdz502', 0.0021679525458181631) + +[26801] +centroid = (0.68151265820694928, -1.3753942902898573) +station = ('kw99', 0.004601773579941822) +zone = ('wvz055', 0.0010114736825943356) + +[26802] +centroid = (0.67416562490750909, -1.3823780682120799) +station = ('kw99', 0.00629658728420602) +zone = ('wvz506', 0.0012270340504712952) + +[26804] +centroid = (0.67368517067102007, -1.3886622658102257) +station = ('kekn', 0.0062991070770436813) +zone = ('wvz505', 0.0030079162780756018) + +[26807] +centroid = (0.67479699776441804, -1.3848666633793285) +station = ('kw99', 0.0063004859459465387) +zone = ('wvz506', 0.00082558302979821052) + +[26808] +centroid = (0.6842545355552474, -1.3692678006429218) +station = ('kokv', 0.0042134721443078567) +zone = ('wvz050', 0.0029265527866586356) + +[26810] +centroid = (0.68056150612448996, -1.3745393233024752) +station = ('kw99', 0.0051313179863580836) +zone = ('wvz055', 0.0014134969752235182) + +[26812] +centroid = (0.67868501537920822, -1.3766814531599105) +station = ('kw99', 0.003861541932083299) +zone = ('wvz055', 0.0021418060732489551) + +[26814] +centroid = (0.67681367335521991, -1.3871497983870322) +station = ('kw99', 0.0058889245506562266) +zone = ('wvz505', 0.00046971589205349894) + +[26815] +centroid = (0.67183859486911757, -1.3851713978667266) +station = ('kshd', 0.0074873037948737535) +zone = ('wvz506', 0.0027971624174365568) + +[26817] +centroid = (0.68720353112587962, -1.3683696891164305) +station = ('kokv', 0.0051811711624189559) +zone = ('wvz050', 0.0030330677034621123) + +[26818] +centroid = (0.6822094983641005, -1.3790968841249154) +station = ('kw99', 0.0024148114900609335) +zone = ('wvz502', 0.0020212962886793583) + +[26823] +centroid = (0.68299283703898062, -1.3694563834685998) +station = ('kokv', 0.0042622835113655423) +zone = ('vaz028', 0.0030213722218777189) + +[26833] +centroid = (0.68223049467500207, -1.3826592233012838) +station = ('kw99', 0.0021895649886091873) +zone = ('wvz502', 0.0010140590746686867) + +[26836] +centroid = (0.68067339918283531, -1.3783272811912486) +station = ('kw99', 0.0022026207905518377) +zone = ('wvz055', 0.0015580417477918276) + +[26845] +centroid = (0.68352884510556056, -1.3781699048525964) +station = ('kw99', 0.0038954680217760888) +zone = ('wvz055', 0.003071724358090981) + +[26847] +centroid = (0.67979073382022426, -1.3811581703313984) +station = ('kw99', 0.00059700862547510021) +zone = ('wvz502', 0.001882058065020764) + +[26851] +centroid = (0.68150047580877038, -1.372021266977453) +station = ('kokv', 0.0064976662802396241) +zone = ('vaz027', 0.0033375776915195079) + +[26852] +centroid = (0.68498460678135653, -1.3770011451189983) +station = ('kw99', 0.0056063761526699103) +zone = ('wvz504', 0.0030947202882690337) + +[26855] +centroid = (0.67977172718466994, -1.3835052018430176) +station = ('kw99', 0.001941412718725913) +zone = ('wvz502', 0.0023873475335674204) + +[26865] +centroid = (0.68427256480642051, -1.3702953283334485) +station = ('kokv', 0.0049958786465964088) +zone = ('wvz050', 0.0023805220965274149) + +[26866] +centroid = (0.67719839628223699, -1.3828999216584261) +station = ('kw99', 0.0034717151946704193) +zone = ('wvz506', 0.0028536243821723354) + +[26884] +centroid = (0.6790404865879619, -1.3856461448765618) +station = ('kw99', 0.0037566413900812228) +zone = ('wvz505', 0.0028492264341200297) + +[27006] +centroid = (0.6272539496874121, -1.4039474579734639) +station = ('kexx', 0.0033638236907501816) +zone = ('ncz037', 0.0014843510626860602) + +[27007] +centroid = (0.63512018353273558, -1.4065423436921589) +station = ('kmwk', 0.001321846716059285) +zone = ('ncz003', 0.0014615348517200252) + +[27009] +centroid = (0.63234903701288159, -1.397636225225205) +station = ('kint', 0.0027657742753023538) +zone = ('ncz021', 0.0030563739363451479) + +[27011] +centroid = (0.63209631333719285, -1.4084540377284533) +station = ('kmwk', 0.0047124580067944869) +zone = ('ncz020', 0.0010825653009496788) + +[27012] +centroid = (0.62836532299520464, -1.4028803811220871) +station = ('kint', 0.0030708732819323212) +zone = ('ncz037', 0.0026662245135568113) + +[27013] +centroid = (0.62396379460789264, -1.408482085169533) +station = ('kruq', 0.003135936341518806) +zone = ('ncz036', 0.0026488283634993363) + +[27014] +centroid = (0.6250031730840403, -1.4059629467403747) +station = ('kruq', 0.0028476329504266234) +zone = ('ncz037', 0.0020856274713145859) + +[27016] +centroid = (0.63611702833501227, -1.400100507955973) +station = ('kmtv', 0.0043260213168327556) +zone = ('ncz004', 0.00083281378621549306) + +[27017] +centroid = (0.63498596771325733, -1.4094618955583103) +station = ('kmwk', 0.0031591922428401645) +zone = ('ncz003', 0.0011137575286408398) + +[27018] +centroid = (0.63175929025863287, -1.4053085355373391) +station = ('kint', 0.0041661536325610571) +zone = ('ncz020', 0.0021681169473703071) + +[27019] +centroid = (0.63332563599583513, -1.4004124855597671) +station = ('kint', 0.0026807130895156609) +zone = ('ncz004', 0.0020057828783496203) + +[27020] +centroid = (0.63011491085057381, -1.4102967912592941) +station = ('kukf', 0.0044077661142996813) +zone = ('ncz020', 0.0021989617895846188) + +[27021] +centroid = (0.6338697074835592, -1.4021848325085824) +station = ('kint', 0.0035523836461801559) +zone = ('ncz004', 0.0020255116834241738) + +[27022] +centroid = (0.63725751373472794, -1.4000264012759336) +station = ('kmtv', 0.0034996748638954451) +zone = ('ncz004', 0.0019552399303812565) + +[27023] +centroid = (0.62988520806771886, -1.4042347915282198) +station = ('kint', 0.0032403426052473421) +zone = ('ncz037', 0.0030647041695166617) + +[27024] +centroid = (0.63738092596613638, -1.410944744744097) +station = ('khlx', 0.0043320839587631284) +zone = ('ncz003', 0.0028165507709756862) + +[27025] +centroid = (0.63493421870093558, -1.3957291039515505) +station = ('ksif', 0.0019858857891580897) +zone = ('ncz005', 0.0027459586573142666) + +[27027] +centroid = (0.63602867976827626, -1.3960692860760568) +station = ('ksif', 0.0019501793988570943) +zone = ('ncz005', 0.0031063870627358477) + +[27028] +centroid = (0.62692624666705776, -1.4063605152906864) +station = ('kexx', 0.00458146204516186) +zone = ('ncz037', 0.00050436043088148438) + +[27030] +centroid = (0.63687088839882622, -1.4072458859136379) +station = ('kmwk', 0.0011929065108984352) +zone = ('ncz003', 0.0015518192146578996) + +[27040] +centroid = (0.63127358258109523, -1.4031233309539648) +station = ('kint', 0.0023367486094514603) +zone = ('ncz021', 0.0020433303515478953) + +[27041] +centroid = (0.63574776902516772, -1.4047593851414917) +station = ('kmwk', 0.0011041408179188166) +zone = ('ncz004', 0.0034981264552599611) + +[27042] +centroid = (0.63443508944145033, -1.3973553493886812) +station = ('ksif', 0.0033705428811267096) +zone = ('ncz004', 0.0026429442121684884) + +[27043] +centroid = (0.6342045838071394, -1.4041507364714436) +station = ('kmwk', 0.0025667834192459409) +zone = ('ncz004', 0.0031906738196697914) + +[27045] +centroid = (0.63240954757804824, -1.4014307979118432) +station = ('kint', 0.0019729257196922077) +zone = ('ncz021', 0.0018996042747233817) + +[27046] +centroid = (0.63708390583403196, -1.3976293660812447) +station = ('kmtv', 0.0024458565204187647) +zone = ('ncz004', 0.0028627498215195494) + +[27047] +centroid = (0.63385022960910709, -1.4062541898326548) +station = ('kmwk', 0.0025067912788905404) +zone = ('ncz003', 0.0023588820147435359) + +[27048] +centroid = (0.6367400236115115, -1.3948266116486367) +station = ('ksif', 0.0012054532571923464) +zone = ('ncz005', 0.0025064946811578278) + +[27050] +centroid = (0.63233214222572232, -1.4033579032054329) +station = ('kint', 0.0029655156903074464) +zone = ('ncz021', 0.0027378891927714107) + +[27051] +centroid = (0.63173832885431636, -1.3989406494015604) +station = ('kint', 0.0015692939637535982) +zone = ('ncz021', 0.0018468898371271872) + +[27052] +centroid = (0.6338831639720921, -1.3988924783142052) +station = ('kint', 0.0034405348535784951) +zone = ('ncz004', 0.0019123375796175233) + +[27053] +centroid = (0.63659620848114729, -1.4023345293985259) +station = ('kmwk', 0.0028914284886266206) +zone = ('ncz004', 0.0019785404313865619) + +[27054] +centroid = (0.62469767065177129, -1.4066985157536274) +station = ('kruq', 0.0027411032903327179) +zone = ('ncz037', 0.0025014322521066503) + +[27055] +centroid = (0.63030583241744942, -1.4072867615247195) +station = ('kint', 0.0056248591489673353) +zone = ('ncz020', 0.00094247760027759157) + +[27101] +centroid = (0.63025762642350946, -1.3997626645726646) +station = ('kint', 0.00060407606466196138) +zone = ('ncz021', 0.00085584889085937464) + +[27103] +centroid = (0.62933483594139494, -1.4018745653274554) +station = ('kint', 0.0018066824777419721) +zone = ('ncz021', 0.0015594934740636773) + +[27104] +centroid = (0.62999270289634912, -1.4018665717194811) +station = ('kint', 0.0013983820679705271) +zone = ('ncz021', 0.0010932835863855829) + +[27105] +centroid = (0.63116266690713096, -1.4003520797143556) +station = ('kint', 0.00051719686326834671) +zone = ('ncz021', 0.00064756059197522853) + +[27106] +centroid = (0.63083023404450367, -1.4019035552463308) +station = ('kint', 0.0012794645509765217) +zone = ('ncz021', 0.00097142839441041143) + +[27107] +centroid = (0.62854818114093602, -1.3993262973530809) +station = ('kint', 0.0022505850818740963) +zone = ('ncz021', 0.0023423788943284125) + +[27109] +centroid = (0.63065568366601177, -1.4011091337307009) +station = ('kint', 0.00062462966424269809) +zone = ('ncz021', 0.00030698632371972646) + +[27110] +centroid = (0.62987641160828878, -1.4001896942807499) +station = ('kint', 0.00077823259845283266) +zone = ('ncz021', 0.0008431156438617743) + +[27127] +centroid = (0.6286689404718816, -1.4011524528027353) +station = ('kint', 0.0020839730984055817) +zone = ('ncz021', 0.0019546036121310699) + +[27201] +centroid = (0.62891552058860334, -1.3872720587011347) +station = ('kbuy', 0.0002568639663624398) +zone = ('ncz023', 0.0012163923338075024) + +[27203] +centroid = (0.62357079882022104, -1.3925452568767702) +station = ('khbi', 0.0020042820108364832) +zone = ('ncz039', 0.00040976817817281946) + +[27205] +centroid = (0.62192360943206637, -1.3936871385398872) +station = ('khbi', 0.00070046481801086383) +zone = ('ncz039', 0.0014915650829890261) + +[27207] +centroid = (0.62147008562593564, -1.3856259165105311) +station = ('k5w8', 0.002334253457694399) +zone = ('ncz040', 0.0025371460920874645) + +[27208] +centroid = (0.62069545614402299, -1.3882859902767881) +station = ('k5w8', 0.0025259969873447164) +zone = ('ncz075', 0.004493760224996271) + +[27209] +centroid = (0.61685349776819298, -1.3919601526983316) +station = ('khbi', 0.0057851863220110111) +zone = ('ncz074', 0.0021715710241705637) + +[27212] +centroid = (0.63669743757776287, -1.3836909223287226) +station = ('kdan', 0.0016884706529471478) +zone = ('ncz006', 0.0016924817421528513) + +[27214] +centroid = (0.63197351197102258, -1.390512227550877) +station = ('kbuy', 0.0042072816350366051) +zone = ('ncz022', 0.0028177072318166514) + +[27215] +centroid = (0.62883921479370619, -1.3873903222112496) +station = ('kbuy', 0.00035732033761483117) +zone = ('ncz023', 0.0013232909174095352) + +[27217] +centroid = (0.63165114965817915, -1.385445589092215) +station = ('kbuy', 0.0030089911256403383) +zone = ('ncz023', 0.0025790912726692786) + +[27229] +centroid = (0.61550001238656382, -1.3923519442088192) +station = ('khff', 0.0056504791870820702) +zone = ('ncz074', 0.0021827686661776416) + +[27231] +centroid = (0.63194384137373871, -1.3817670284409567) +station = ('ktdf', 0.0029357934704445695) +zone = ('ncz024', 0.0026451391387075935) + +[27233] +centroid = (0.62644689198799752, -1.3911235814812657) +station = ('kbuy', 0.0041717427870354273) +zone = ('ncz022', 0.0034642597674396829) + +[27235] +centroid = (0.62987897724228925, -1.3964827545758542) +station = ('kgso', 0.00090155919020787139) +zone = ('ncz022', 0.0031582327171686101) + +[27239] +centroid = (0.62135196174216067, -1.3978400273219602) +station = ('kvuj', 0.0033274520778424238) +zone = ('ncz038', 0.0037787823825820603) + +[27242] +centroid = (0.61662131661780017, -1.3901290056070166) +station = ('ksop', 0.0039207635993083892) +zone = ('ncz075', 0.0024046212812798354) + +[27243] +centroid = (0.62948643524022319, -1.3822684440817621) +station = ('kigx', 0.0029803248486292796) +zone = ('ncz024', 0.0010997199321670099) + +[27244] +centroid = (0.63202651762040563, -1.3873319409477705) +station = ('kbuy', 0.0031410042389549814) +zone = ('ncz023', 0.0031952542839775782) + +[27248] +centroid = (0.62453633241571682, -1.3913124435596238) +station = ('k5w8', 0.0033071726337838576) +zone = ('ncz039', 0.0017990233412899762) + +[27249] +centroid = (0.63100879868027526, -1.3889747146529177) +station = ('kbuy', 0.0026663347251198906) +zone = ('ncz023', 0.0032167243480150523) + +[27252] +centroid = (0.62075451808591053, -1.3849145377607106) +station = ('k5w8', 0.003252297717111143) +zone = ('ncz040', 0.0027285439721223955) + +[27253] +centroid = (0.6277287665104172, -1.384873627243044) +station = ('kbuy', 0.0020513092740460839) +zone = ('ncz023', 0.0015440846908738265) + +[27258] +centroid = (0.62848508748847642, -1.3837962529490804) +station = ('kbuy', 0.0025882900433597546) +zone = ('ncz023', 0.0017153961742353986) + +[27260] +centroid = (0.62752382994964806, -1.3960519025967069) +station = ('kgso', 0.00259570150411738) +zone = ('ncz022', 0.0035548874532232446) + +[27262] +centroid = (0.62766651061599865, -1.3969901217894092) +station = ('kgso', 0.0027240053458237367) +zone = ('ncz038', 0.0038207234544734812) + +[27263] +centroid = (0.62674857214920476, -1.3951705636843275) +station = ('kgso', 0.0033200688774374003) +zone = ('ncz022', 0.0036231049929307075) + +[27265] +centroid = (0.62850692155741883, -1.3968042965839491) +station = ('kgso', 0.0019313273093258616) +zone = ('ncz022', 0.0036187999165374304) + +[27278] +centroid = (0.629894615392387, -1.3803279346595174) +station = ('kigx', 0.0027545844969644431) +zone = ('ncz024', 0.00069156116358731745) + +[27281] +centroid = (0.61413671825453853, -1.3897204240291245) +station = ('khff', 0.0032288561392747554) +zone = ('ncz075', 0.0029714831355077409) + +[27282] +centroid = (0.62821789503328862, -1.3950286160562628) +station = ('kgso', 0.0018690400253344025) +zone = ('ncz022', 0.00247540397042913) + +[27283] +centroid = (0.62747159224513582, -1.3899002453019578) +station = ('kbuy', 0.0027784728907021676) +zone = ('ncz022', 0.003112229454706347) + +[27284] +centroid = (0.63038913698264709, -1.3976294708009998) +station = ('kint', 0.0022009895486968271) +zone = ('ncz021', 0.0025181928748936998) + +[27288] +centroid = (0.63700257349088918, -1.3918906536875171) +station = ('ksif', 0.0017322019508262158) +zone = ('ncz005', 0.0018070118229963322) + +[27291] +centroid = (0.63562140718732341, -1.3817533625129137) +station = ('kdan', 0.0034690876954884217) +zone = ('ncz007', 0.002810235711383086) + +[27292] +centroid = (0.6237514403978025, -1.3998857800981004) +station = ('kexx', 0.0015554604597575424) +zone = ('ncz038', 0.00096052561065220865) + +[27295] +centroid = (0.62608044265824869, -1.4016770638692997) +station = ('kexx', 0.0015847463008960437) +zone = ('ncz038', 0.0019449685359302785) + +[27298] +centroid = (0.62631340920680489, -1.3887156379787515) +station = ('kbuy', 0.002953482631100368) +zone = ('ncz023', 0.0036503578401315723) + +[27299] +centroid = (0.62399576903978915, -1.4030029730487472) +station = ('kexx', 0.0012686688357642457) +zone = ('ncz038', 0.0025576528537065652) + +[27301] +centroid = (0.63029965395189735, -1.3904279979611758) +station = ('kbuy', 0.0031365665715056934) +zone = ('ncz022', 0.0018385403220959682) + +[27302] +centroid = (0.63079743930785881, -1.3834553726928733) +station = ('kbuy', 0.0034054650966504683) +zone = ('ncz024', 0.0024898310111167387) + +[27305] +centroid = (0.63751301248392744, -1.3828899034685198) +station = ('kdan', 0.0015599663443161859) +zone = ('ncz006', 0.0027183629782343297) + +[27306] +centroid = (0.61479561495375146, -1.3959186118017322) +station = ('kafp', 0.0038290983079091057) +zone = ('ncz074', 0.0021536479959585) + +[27310] +centroid = (0.63135666025349024, -1.3961278418724612) +station = ('kgso', 0.001423272826733678) +zone = ('ncz022', 0.0033073598159863069) + +[27311] +centroid = (0.63669001992844187, -1.3870578893486223) +station = ('kdan', 0.0024738447281197639) +zone = ('ncz006', 0.0024633272486040236) + +[27312] +centroid = (0.62405435974277867, -1.3824764524220148) +station = ('ktta', 0.0033927066706250296) +zone = ('ncz040', 0.0011236425246738846) + +[27313] +centroid = (0.62711249075153797, -1.3920439285024271) +station = ('kgso', 0.004004862561837865) +zone = ('ncz022', 0.002627962022966794) + +[27314] +centroid = (0.63373502042518282, -1.3822353177325593) +station = ('ktdf', 0.0030158838799273458) +zone = ('ncz006', 0.0024154602497249646) + +[27315] +centroid = (0.63721915139776908, -1.3858533154587735) +station = ('kdan', 0.0013959539545494752) +zone = ('ncz006', 0.0022584602977428082) + +[27316] +centroid = (0.62303040997721859, -1.3897322573614532) +station = ('k5w8', 0.0017306741740937043) +zone = ('ncz039', 0.0025645585186655439) + +[27317] +centroid = (0.62553886699135486, -1.3928163588694822) +station = ('khbi', 0.0035145011691475369) +zone = ('ncz039', 0.0022770948214016749) + +[27320] +centroid = (0.6342813259343496, -1.3902861026929887) +station = ('ksif', 0.003203062036511637) +zone = ('ncz005', 0.001906203158834881) + +[27325] +centroid = (0.61896960476648089, -1.388914273900921) +station = ('k5w8', 0.0043235773020610484) +zone = ('ncz075', 0.0030200575472735568) + +[27326] +centroid = (0.63637643662173615, -1.3885213479264196) +station = ('kdan', 0.0036261997914622695) +zone = ('ncz005', 0.0032773719782207213) + +[27330] +centroid = (0.61981699702490922, -1.3821995210296008) +station = ('ktta', 0.0017924020118821927) +zone = ('ncz076', 0.0007352794789690178) + +[27332] +centroid = (0.61758002597592065, -1.3812044913697463) +station = ('ktta', 0.0034890489920684654) +zone = ('ncz076', 0.0016497823405325076) + +[27340] +centroid = (0.62737383635373167, -1.3843457175041931) +station = ('kbuy', 0.0026052522156291215) +zone = ('ncz023', 0.0020699786322820953) + +[27341] +centroid = (0.62001341637892871, -1.3910173083831117) +station = ('khbi', 0.0035822920827023835) +zone = ('ncz039', 0.0035835690051414797) + +[27343] +centroid = (0.63710190017862012, -1.3804080103655989) +station = ('kdan', 0.0035667154294795104) +zone = ('ncz007', 0.0025945003271866658) + +[27344] +centroid = (0.62348450974200242, -1.3863953798178577) +station = ('k5w8', 0.0010358496685842729) +zone = ('ncz040', 0.00256537508462092) + +[27349] +centroid = (0.62659611763904299, -1.3860717608679529) +station = ('kbuy', 0.0024125249885071664) +zone = ('ncz023', 0.002501321452714084) + +[27350] +centroid = (0.62497191423713705, -1.3943123503845367) +station = ('khbi', 0.0026958774456521607) +zone = ('ncz039', 0.0020684593138264032) + +[27355] +centroid = (0.62474001233942467, -1.3888284211550153) +station = ('k5w8', 0.0018647940126363608) +zone = ('ncz039', 0.003602958073424574) + +[27356] +centroid = (0.61848997083474033, -1.3928473035571201) +station = ('khbi', 0.004000915181867664) +zone = ('ncz074', 0.0023227044620903309) + +[27357] +centroid = (0.6329715785037755, -1.3957507111276903) +station = ('kgso', 0.0029221985503546455) +zone = ('ncz005', 0.0035589925874148836) + +[27358] +centroid = (0.6323019305763703, -1.3941700711439142) +station = ('kgso', 0.0024454304656847648) +zone = ('ncz022', 0.0028973001680786159) + +[27360] +centroid = (0.62586358549868837, -1.3980134083298532) +station = ('kexx', 0.0031887757900370818) +zone = ('ncz038', 0.001965708028974248) + +[27370] +centroid = (0.62498983876855507, -1.3958798654923379) +station = ('khbi', 0.0029561921201639784) +zone = ('ncz039', 0.0029866792455986407) + +[27371] +centroid = (0.61796619752621684, -1.3957074095089483) +station = ('kvuj', 0.0026043163722414397) +zone = ('ncz074', 0.00157672545341891) + +[27376] +centroid = (0.61512338778727604, -1.3879229268857882) +station = ('ksop', 0.0017507932617428534) +zone = ('ncz075', 0.0013017838031298427) + +[27377] +centroid = (0.62906366413551262, -1.3894336315264371) +station = ('kbuy', 0.0020109508907610882) +zone = ('ncz023', 0.0029521293215163894) + +[27379] +centroid = (0.63484778999637692, -1.3846484623162441) +station = ('kdan', 0.0033609805982094064) +zone = ('ncz006', 0.00033705963338883131) + +[27401] +centroid = (0.62952532117595761, -1.3921646005669102) +station = ('kgso', 0.0026622357924381995) +zone = ('ncz022', 0.00038102427680314653) + +[27403] +centroid = (0.62946997678537686, -1.3931983067229887) +station = ('kgso', 0.0018687244672332128) +zone = ('ncz022', 0.0005514217056888798) + +[27405] +centroid = (0.63031534446187287, -1.3916514039536538) +station = ('kgso', 0.0030315147295561016) +zone = ('ncz022', 0.00096811936368766595) + +[27406] +centroid = (0.62832799040250453, -1.3921562404397931) +station = ('kgso', 0.0031387817660350455) +zone = ('ncz022', 0.0014184925608315018) + +[27407] +centroid = (0.62846861158033762, -1.3941368924348336) +station = ('kgso', 0.0018900712394120597) +zone = ('ncz022', 0.00176355922781543) + +[27408] +centroid = (0.63012786119362363, -1.3930120626385083) +station = ('kgso', 0.0019229651460301864) +zone = ('ncz022', 0.00054850456413656082) + +[27409] +centroid = (0.63012894329775981, -1.3952132369845387) +station = ('kgso', 0.00015749171785294226) +zone = ('ncz022', 0.0021692109214809558) + +[27410] +centroid = (0.63036969401477994, -1.3944175239252619) +station = ('kgso', 0.00084364507967325483) +zone = ('ncz022', 0.0016264459097684687) + +[27455] +centroid = (0.6315313502583223, -1.3929554790641587) +station = ('kgso', 0.0024537892716321673) +zone = ('ncz022', 0.0018519255688465737) + +[27501] +centroid = (0.61932905532592919, -1.3733048170159545) +station = ('khrj', 0.0019825255336054252) +zone = ('ncz077', 0.0033193738755045682) + +[27502] +centroid = (0.62329891142934546, -1.3773355502036804) +station = ('ktta', 0.003477013842795603) +zone = ('ncz041', 0.0039925688073455855) + +[27503] +centroid = (0.63098162390382162, -1.3767903617052348) +station = ('ktdf', 0.0027054493426252671) +zone = ('ncz025', 0.0020395476656042332) + +[27504] +centroid = (0.6178519482733813, -1.3704024740962282) +station = ('kjnx', 0.0030537836183546158) +zone = ('ncz042', 0.0029825512133331115) + +[27505] +centroid = (0.61825449101206131, -1.3788107897539286) +station = ('ktta', 0.0031284206828435424) +zone = ('ncz077', 0.0020905518491335512) + +[27507] +centroid = (0.63728159927840544, -1.3712965888187325) +station = ('khnz', 0.0027106368099746279) +zone = ('ncz009', 0.0034443002002889299) + +[27508] +centroid = (0.6275606563968652, -1.3656894218907276) +station = ('klhz', 0.0016430677988850644) +zone = ('ncz026', 0.0022638873394529193) + +[27509] +centroid = (0.6305945971421919, -1.3748721750441231) +station = ('ktdf', 0.0040010899884596208) +zone = ('ncz025', 0.0021890272318654653) + +[27510] +centroid = (0.62684866678180651, -1.3802518208508379) +station = ('kigx', 0.00038021603054771682) +zone = ('ncz024', 0.0025972308709025426) + +[27511] +centroid = (0.62418854065567186, -1.3751129606677281) +station = ('krdu', 0.0024039927484649994) +zone = ('ncz041', 0.0020058048506407917) + +[27513] +centroid = (0.62486455903484683, -1.3753669060738933) +station = ('krdu', 0.0017831371956470727) +zone = ('ncz041', 0.0021664437210468668) + +[27514] +centroid = (0.6277380342087453, -1.3796726333385634) +station = ('kigx', 0.00063193369025838658) +zone = ('ncz024', 0.0019330057816332501) + +[27516] +centroid = (0.62668135951971038, -1.3815128386886961) +station = ('kigx', 0.0013334321075719978) +zone = ('ncz024', 0.0027519133553883962) + +[27517] +centroid = (0.6257056855612606, -1.3792151127284458) +station = ('kigx', 0.0015741927598925157) +zone = ('ncz025', 0.0038466719041489409) + +[27518] +centroid = (0.62360163878810382, -1.3748626804529924) +station = ('krdu', 0.0029732911771218544) +zone = ('ncz041', 0.002040988146419816) + +[27519] +centroid = (0.62499514456948113, -1.3767877262580643) +station = ('krdu', 0.0022915267914695543) +zone = ('ncz025', 0.0039514684641860478) + +[27520] +centroid = (0.6216501337915713, -1.3696682489864991) +station = ('kjnx', 0.001816173314817277) +zone = ('ncz042', 0.0023511122851894621) + +[27521] +centroid = (0.6180581065646269, -1.3728038202541697) +station = ('khrj', 0.0012512334662325615) +zone = ('ncz077', 0.0031299595870801357) + +[27522] +centroid = (0.63015960873271737, -1.3731373352209333) +station = ('krdu', 0.0038129316024573577) +zone = ('ncz008', 0.0034785159975801679) + +[27523] +centroid = (0.62436741945070884, -1.3780583259535162) +station = ('kigx', 0.0031906840805232799) +zone = ('ncz025', 0.0047171116998359621) + +[27524] +centroid = (0.61775166165456175, -1.3681216254698445) +station = ('kjnx', 0.0025531837257475798) +zone = ('ncz042', 0.0021698439185731211) + +[27525] +centroid = (0.63069186434140556, -1.3693516462601876) +station = ('klhz', 0.0026673741975166104) +zone = ('ncz026', 0.0026023192373796507) + +[27526] +centroid = (0.62031572485866671, -1.3758673443303175) +station = ('khrj', 0.0031641636662331162) +zone = ('ncz077', 0.0030632395036319731) + +[27527] +centroid = (0.62227920281386773, -1.3680184241511739) +station = ('kjnx', 0.0019784067633770368) +zone = ('ncz042', 0.0023909259990766911) + +[27529] +centroid = (0.62230805310640314, -1.3715653520702471) +station = ('kjnx', 0.0034121974121784069) +zone = ('ncz041', 0.0025238398835914153) + +[27530] +centroid = (0.61751797952101228, -1.3624478916841687) +station = ('kgsb', 0.0015995403274962315) +zone = ('ncz078', 0.00088623440378977902) + +[27531] +centroid = (0.61685178734552593, -1.3607351128227241) +station = ('kgsb', 0.00017189887991932826) +zone = ('ncz078', 0.00067069759779580119) + +[27534] +centroid = (0.61738128533399605, -1.3595521112024298) +station = ('kgsb', 0.0012175572157319295) +zone = ('ncz078', 0.0015376130548310251) + +[27536] +centroid = (0.6340210624362923, -1.368497394857799) +station = ('khnz', 0.0017943375907770634) +zone = ('ncz009', 0.00066453060516605093) + +[27537] +centroid = (0.63480768233016605, -1.3683010976768271) +station = ('khnz', 0.0018535968466789838) +zone = ('ncz009', 0.00019074465442973085) + +[27539] +centroid = (0.62267303635958027, -1.3755540926361698) +station = ('krdu', 0.0039559931373787799) +zone = ('ncz041', 0.0030437390246337683) + +[27540] +centroid = (0.62160965960621761, -1.3767861031018602) +station = ('ktta', 0.0031382591978410812) +zone = ('ncz077', 0.0043144751062938894) + +[27541] +centroid = (0.63294124468137591, -1.3802625197191525) +station = ('ktdf', 0.0014373354007902498) +zone = ('ncz007', 0.0026900907099306442) + +[27542] +centroid = (0.62165601555115058, -1.3637446538651081) +station = ('kgww', 0.0036784045422326508) +zone = ('ncz043', 0.003444521188153572) + +[27544] +centroid = (0.63180547167064061, -1.3691507414099904) +station = ('khnz', 0.0030550518199235874) +zone = ('ncz009', 0.0029298904186594197) + +[27545] +centroid = (0.62454319155967719, -1.3697023527200833) +station = ('kjnx', 0.0044180447369504185) +zone = ('ncz041', 0.0024410946317947701) + +[27546] +centroid = (0.61754452597893505, -1.3764710188119975) +station = ('khrj', 0.0018849674450363153) +zone = ('ncz077', 0.00024878631653551159) + +[27549] +centroid = (0.6300928847954137, -1.3654100470373609) +station = ('klhz', 0.0019448640816448017) +zone = ('ncz026', 0.00082350607960487814) + +[27551] +centroid = (0.63587306621216844, -1.3622324482413024) +station = ('kavc', 0.0044643472640737737) +zone = ('ncz010', 0.0010173561231812617) + +[27553] +centroid = (0.63681062217975481, -1.3666856907343512) +station = ('khnz', 0.003825419883734285) +zone = ('ncz009', 0.0025705174718740962) + +[27555] +centroid = (0.62068590919301458, -1.3649196095175506) +station = ('kjnx', 0.0026705923400098613) +zone = ('ncz042', 0.0024257201558281574) + +[27556] +centroid = (0.63544600159749798, -1.3668504323624471) +station = ('khnz', 0.0031209079513475932) +zone = ('ncz009', 0.0015184441208852685) + +[27557] +centroid = (0.62446370926554129, -1.3648215045602958) +station = ('klhz', 0.0046513908207996748) +zone = ('ncz027', 0.0044457098418370098) + +[27559] +centroid = (0.62183007723745198, -1.3806080076445848) +station = ('ktta', 0.00079862834483709823) +zone = ('ncz040', 0.002521198671024562) + +[27560] +centroid = (0.62584841858748852, -1.3758128900576554) +station = ('krdu', 0.0011332679291202021) +zone = ('ncz041', 0.0027856830035889639) + +[27562] +centroid = (0.62206651699121973, -1.3786421385883083) +station = ('ktta', 0.0018846375306767558) +zone = ('ncz076', 0.0038851951370054007) + +[27563] +centroid = (0.63574701853358939, -1.3654722505719021) +station = ('khnz', 0.0042700780837252863) +zone = ('ncz010', 0.001880009496301543) + +[27565] +centroid = (0.6346307408505989, -1.3726891346690211) +station = ('khnz', 0.0016883863710826837) +zone = ('ncz008', 0.0010077572287939007) + +[27568] +centroid = (0.61976858159145887, -1.3656346010989227) +station = ('kjnx', 0.0021307043038970527) +zone = ('ncz042', 0.0017182845800355893) + +[27569] +centroid = (0.61835383515308484, -1.3645463883103042) +station = ('kjnx', 0.0035360791041782968) +zone = ('ncz042', 0.0030248750073693762) + +[27571] +centroid = (0.62691533835923274, -1.3693577200059843) +station = ('klhz', 0.0025600311386545734) +zone = ('ncz041', 0.0035332895447528381) + +[27572] +centroid = (0.63277187793076239, -1.3766722029148748) +station = ('ktdf', 0.0015886658286653052) +zone = ('ncz007', 0.0027020912944528239) + +[27573] +centroid = (0.63524045417149055, -1.3783929579310013) +station = ('ktdf', 0.0019510346816004206) +zone = ('ncz007', 0.00012914246252938697) + +[27574] +centroid = (0.63666745282121362, -1.3764515583908377) +station = ('ktdf', 0.0037681522218673798) +zone = ('ncz007', 0.0021501845573336557) + +[27576] +centroid = (0.62097900233430203, -1.365904394094696) +station = ('kjnx', 0.0019614215074052806) +zone = ('ncz042', 0.0018426983145425106) + +[27577] +centroid = (0.61941249951746702, -1.3671679601132622) +station = ('kjnx', 0.0012078710164654572) +zone = ('ncz042', 0.00067321350795718075) + +[27581] +centroid = (0.63189259850690016, -1.3740276625789607) +station = ('khnz', 0.0038942960560091689) +zone = ('ncz008', 0.0020134789227964) + +[27582] +centroid = (0.63647487319154861, -1.3714201581297736) +station = ('khnz', 0.0019606619788088407) +zone = ('ncz009', 0.002964549881439993) + +[27583] +centroid = (0.63343161238801615, -1.3776819631536161) +station = ('ktdf', 0.00070049623891163917) +zone = ('ncz007', 0.001770740690898112) + +[27587] +centroid = (0.62801157966241039, -1.3709866357968707) +station = ('klhz', 0.0032075687002738524) +zone = ('ncz041', 0.0036348322573090653) + +[27589] +centroid = (0.63394793314063369, -1.3636865518543091) +station = ('khnz', 0.0056044603108683713) +zone = ('ncz010', 0.0013454955775593323) + +[27591] +centroid = (0.62455155168679422, -1.368145850639862) +station = ('kjnx', 0.0042470308037519406) +zone = ('ncz041', 0.0037025954493279151) + +[27592] +centroid = (0.62064154292342888, -1.3731192885164676) +station = ('khrj', 0.0032798647427384449) +zone = ('ncz041', 0.0040273943126226943) + +[27596] +centroid = (0.62840260322802721, -1.3690455504159729) +station = ('klhz', 0.0015897079619667249) +zone = ('ncz026', 0.0025733300088288872) + +[27597] +centroid = (0.62554371900667538, -1.3666395791355135) +station = ('klhz', 0.0032058676358247959) +zone = ('ncz026', 0.004225013845011687) + +[27601] +centroid = (0.62436766379680408, -1.3724301801679026) +station = ('krdu', 0.0028920149588055766) +zone = ('ncz041', 0.0003654690651056882) + +[27603] +centroid = (0.62246549925822559, -1.3727642361867345) +station = ('kjnx', 0.0043165539347311179) +zone = ('ncz041', 0.0021900538541215777) + +[27604] +centroid = (0.62517644937217831, -1.3711079885397619) +station = ('krdu', 0.0032564403056362327) +zone = ('ncz041', 0.0013987796130874722) + +[27605] +centroid = (0.62466395089062265, -1.3727816720259618) +station = ('krdu', 0.0024817663519262449) +zone = ('ncz041', 6.0062682546660611e-05) + +[27606] +centroid = (0.62382121866129714, -1.3738442633811612) +station = ('krdu', 0.0028457324112674386) +zone = ('ncz041', 0.0012428648240101895) + +[27607] +centroid = (0.62506775026636407, -1.3739165025589011) +station = ('krdu', 0.0016460054159946605) +zone = ('ncz041', 0.0010631503357217294) + +[27608] +centroid = (0.62498575469810547, -1.3726530761666749) +station = ('krdu', 0.0023183331933098418) +zone = ('ncz041', 0.00033370482834208659) + +[27609] +centroid = (0.62559171556110527, -1.3724159731877916) +station = ('krdu', 0.0021219713087897493) +zone = ('ncz041', 0.00096618889841159868) + +[27610] +centroid = (0.62385746914986107, -1.3708911662867866) +station = ('krdu', 0.0041355369217525523) +zone = ('ncz041', 0.0016764339518223772) + +[27612] +centroid = (0.62576806362872683, -1.3737224393993719) +station = ('krdu', 0.0011510663734980273) +zone = ('ncz041', 0.001383734826871417) + +[27613] +centroid = (0.62702876730731982, -1.3737733332003601) +station = ('krdu', 0.00090418148405941516) +zone = ('ncz041', 0.0025257179644792172) + +[27614] +centroid = (0.62741637002760275, -1.3722061147985316) +station = ('krdu', 0.0022166655240224396) +zone = ('ncz041', 0.0027911279936120754) + +[27615] +centroid = (0.62654710879364695, -1.3724481919657834) +station = ('krdu', 0.0018547768252763146) +zone = ('ncz041', 0.001903748640048002) + +[27616] +centroid = (0.62599591636257457, -1.3708111778471679) +station = ('krdu', 0.0032332427395680161) +zone = ('ncz041', 0.0020405958048550967) + +[27617] +centroid = (0.62671057633138882, -1.3748476531681326) +station = ('krdu', 0.00016373045374621717) +zone = ('ncz025', 0.0026697523617346111) + +[27701] +centroid = (0.62830526621564353, -1.377028895854105) +station = ('krdu', 0.0025377954283018578) +zone = ('ncz025', 0.00070844166528753175) + +[27703] +centroid = (0.6276073614076485, -1.3754386041995652) +station = ('krdu', 0.0011796704312829547) +zone = ('ncz025', 0.0016597191452378849) + +[27704] +centroid = (0.62905935317226014, -1.3758215992506231) +station = ('krdu', 0.0026363778623452083) +zone = ('ncz025', 0.00068182787190074385) + +[27705] +centroid = (0.62877121676604841, -1.3784411115650637) +station = ('kigx', 0.0020372216465694348) +zone = ('ncz025', 0.0014565572991581419) + +[27707] +centroid = (0.62752484224061411, -1.3779953370208118) +station = ('kigx', 0.0016437871101071433) +zone = ('ncz025', 0.0017879685052995817) + +[27709] +centroid = (0.62699637399640284, -1.3758922501787436) +station = ('krdu', 0.0010264054922627074) +zone = ('ncz025', 0.0020436272663923003) + +[27712] +centroid = (0.62998177713523174, -1.37708357701957) +station = ('ktdf', 0.0035117160756964537) +zone = ('ncz025', 0.0010935718307673653) + +[27713] +centroid = (0.62648663313506536, -1.3774792431609972) +station = ('kigx', 0.0021279040861315488) +zone = ('ncz025', 0.0025478255885549735) + +[27801] +centroid = (0.62680491137745908, -1.3566580236900654) +station = ('krwi', 0.0026355283615885666) +zone = ('ncz028', 0.0018896381803493961) + +[27803] +centroid = (0.62662645146144258, -1.3588465443990188) +station = ('krwi', 0.0011142234084155931) +zone = ('ncz027', 0.0021553547242019631) + +[27804] +centroid = (0.62815508063350933, -1.3586053049898079) +station = ('krwi', 0.0025862616025807712) +zone = ('ncz027', 0.0020766224020963139) + +[27805] +centroid = (0.63194429515934414, -1.345373929023854) +station = ('kasj', 0.0019847744892193342) +zone = ('ncz030', 0.0028808508837221301) + +[27806] +centroid = (0.61618847496330553, -1.3396460900313665) +station = ('kewn', 0.0058677523434709231) +zone = ('ncz094', 0.0028694816045085653) + +[27807] +centroid = (0.6249063422171397, -1.363023885243912) +station = ('krwi', 0.0028784539557324862) +zone = ('ncz043', 0.0030518574178001355) + +[27808] +centroid = (0.6190233260008573, -1.3397009980896342) +station = ('kocw', 0.0045023288810831022) +zone = ('ncz080', 0.001551327210303796) + +[27809] +centroid = (0.62861134460656565, -1.3568472173809816) +station = ('ketc', 0.0032255126627480759) +zone = ('ncz028', 0.0027303388627467609) + +[27810] +centroid = (0.62014569488293736, -1.3356220414546756) +station = ('kocw', 0.0074746100193008105) +zone = ('ncz081', 0.0038688360612557987) + +[27812] +centroid = (0.62510033556349875, -1.3503481697519155) +station = ('ketc', 0.0031332754821391685) +zone = ('ncz029', 0.0037372307824151295) + +[27813] +centroid = (0.62194282550713076, -1.3602697731375575) +station = ('kgww', 0.0030639703357754587) +zone = ('ncz043', 0.0012534667638011568) + +[27814] +centroid = (0.61782322015389346, -1.3424864563093546) +station = ('kocw', 0.0035301641918909147) +zone = ('ncz080', 0.0018538901383452541) + +[27816] +centroid = (0.63022078252299985, -1.3625841146322868) +station = ('klhz', 0.0039605397128544386) +zone = ('ncz027', 0.0027429207621632369) + +[27817] +centroid = (0.61873922130521775, -1.345120158150614) +station = ('kocw', 0.0021033431187200613) +zone = ('ncz080', 0.0030334697526180478) + +[27818] +centroid = (0.63704037732248731, -1.3442264972137155) +station = ('kfkn', 0.0038698046697874405) +zone = ('ncz013', 0.0025039991417041222) + +[27819] +centroid = (0.62510702017453401, -1.3518437423879495) +station = ('ketc', 0.0023251556373523729) +zone = ('ncz028', 0.00262747594351717) + +[27820] +centroid = (0.63567535531450248, -1.348119663549799) +station = ('kasj', 0.0023818770223597669) +zone = ('ncz012', 0.0021797826373271888) + +[27821] +centroid = (0.61648635030674337, -1.3417059276145702) +station = ('kocw', 0.0050045526164717042) +zone = ('ncz080', 0.0030170825651300048) + +[27822] +centroid = (0.62491128149892283, -1.3585472204323017) +station = ('krwi', 0.0011694033297633259) +zone = ('ncz043', 0.002076563411938224) + +[27823] +centroid = (0.63204449451170119, -1.3562204870998829) +station = ('kixa', 0.002233951583768897) +zone = ('ncz011', 0.0010789171116992406) + +[27824] +centroid = (0.61982242499888296, -1.3270990053052418) +station = ('k2dp', 0.0033111772034539527) +zone = ('ncz081', 0.0030977200432827732) + +[27825] +centroid = (0.62540070672776704, -1.3469477622235475) +station = ('kpgv', 0.0047261147175028688) +zone = ('ncz029', 0.00096479038670538037) + +[27826] +centroid = (0.62114070708949931, -1.3302081348347445) +station = ('k2dp', 0.0046753241866727682) +zone = ('ncz081', 0.00104363844481725) + +[27827] +centroid = (0.62302383008593853, -1.3528612344352768) +station = ('kpgv', 0.001949088559105659) +zone = ('ncz044', 0.0026637633278008771) + +[27828] +centroid = (0.62107792759630509, -1.3539777913709479) +station = ('kpgv', 0.0026515176714421366) +zone = ('ncz079', 0.0022350390820227296) + +[27829] +centroid = (0.62280269686971079, -1.3548374183874325) +station = ('kpgv', 0.0033308524746726766) +zone = ('ncz079', 0.0035385278634625949) + +[27830] +centroid = (0.62071182733240671, -1.3604895449969687) +station = ('kgww', 0.0018203826105039993) +zone = ('ncz043', 0.0024956209293135597) + +[27831] +centroid = (0.63634020358646481, -1.3539744752453688) +station = ('kixa', 0.0024289584704664004) +zone = ('ncz012', 0.0026354576986047703) + +[27832] +centroid = (0.63742143505807525, -1.3567268943823489) +station = ('kixa', 0.0035982440627315465) +zone = ('vaz087', 0.003654695513648931) + +[27834] +centroid = (0.62234187758730686, -1.3505365605913755) +station = ('kpgv', 0.00050885914187119401) +zone = ('ncz044', 0.0011205834967297228) + +[27837] +centroid = (0.61988295301734209, -1.3475873381279406) +station = ('kocw', 0.0024767590785127005) +zone = ('ncz044', 0.0026838162831076076) + +[27839] +centroid = (0.63321842041988508, -1.3536063678528309) +station = ('kixa', 0.0014619211400169916) +zone = ('ncz011', 0.0014100447820165573) + +[27840] +centroid = (0.62801639677114596, -1.3476489831571212) +station = ('kasj', 0.0055290082417256657) +zone = ('ncz029', 0.0028935886448558704) + +[27841] +centroid = (0.62672251438347237, -1.3487259909319418) +station = ('ketc', 0.0037459002261438332) +zone = ('ncz029', 0.0026630731846695758) + +[27842] +centroid = (0.6374245068375588, -1.3587755094984626) +station = ('kavc', 0.0040617846637403775) +zone = ('ncz010', 0.0041907669593978999) + +[27843] +centroid = (0.62824103809917009, -1.3508846665106859) +station = ('ketc', 0.0022850096530834829) +zone = ('ncz028', 0.003136321221408105) + +[27844] +centroid = (0.6326730748418069, -1.3603647015955733) +station = ('kixa', 0.0044902673426840877) +zone = ('ncz010', 0.0034486917298228144) + +[27845] +centroid = (0.63479836227196051, -1.3515827982114834) +station = ('kixa', 0.0029023216040376513) +zone = ('ncz012', 0.0010132368701773627) + +[27846] +centroid = (0.62410474739828359, -1.3421150327912375) +station = ('kocw', 0.003927494936566257) +zone = ('ncz029', 0.0033016922124799578) + +[27847] +centroid = (0.63151543285554412, -1.3473011215839059) +station = ('kasj', 0.00202346284289058) +zone = ('ncz030', 0.0036610413256576292) + +[27849] +centroid = (0.62966777494950532, -1.3476564182597346) +station = ('kasj', 0.0038931995201412113) +zone = ('ncz030', 0.0033338687090291221) + +[27850] +centroid = (0.63551611147355058, -1.359265755032055) +station = ('kixa', 0.0036690023094442118) +zone = ('ncz010', 0.003196537135285974) + +[27851] +centroid = (0.62203627043528265, -1.3618919694108236) +station = ('kgww', 0.0032686312022908942) +zone = ('ncz043', 0.0019508978763412767) + +[27852] +centroid = (0.62396321864923943, -1.3550200670936539) +station = ('ketc', 0.0034205498794367471) +zone = ('ncz028', 0.0028906092488169364) + +[27853] +centroid = (0.63728481068422915, -1.3492129901531256) +station = ('kemv', 0.003924249360336386) +zone = ('ncz012', 0.0021200099710261466) + +[27855] +centroid = (0.63557281722094794, -1.3451138400587217) +station = ('kasj', 0.0025072793655373312) +zone = ('ncz013', 0.0015562532012203477) + +[27856] +centroid = (0.62855729175963149, -1.3610177688950846) +station = ('krwi', 0.0030753304223488259) +zone = ('ncz027', 0.00081553404698118004) + +[27857] +centroid = (0.62784367898836857, -1.3488995813793452) +station = ('ketc', 0.0036620874114965773) +zone = ('ncz029', 0.0034142477590391163) + +[27858] +centroid = (0.62014539817696446, -1.348858426515583) +station = ('kpgv', 0.002421086241488046) +zone = ('ncz044', 0.0016818698007016952) + +[27860] +centroid = (0.62221094298682222, -1.3382520955577986) +station = ('kocw', 0.005478754490844802) +zone = ('ncz045', 0.0033176515845690989) + +[27861] +centroid = (0.62508698379472105, -1.3494921904735673) +station = ('kpgv', 0.0033636963039894848) +zone = ('ncz029', 0.003051550658273232) + +[27862] +centroid = (0.63687404744477227, -1.3471893856051933) +station = ('kasj', 0.0033720680399615343) +zone = ('ncz012', 0.0031879030531794263) + +[27863] +centroid = (0.61938494076857809, -1.3608633421628682) +station = ('kgww', 0.0004908907156691766) +zone = ('ncz078', 0.002218204040597061) + +[27864] +centroid = (0.62495086556635793, -1.3552718133849613) +station = ('ketc', 0.0026618609151929573) +zone = ('ncz028', 0.0020005392246823413) + +[27865] +centroid = (0.62231876942801034, -1.341313542692137) +station = ('kocw', 0.0031840992930032503) +zone = ('ncz080', 0.0028241056471789094) + +[27866] +centroid = (0.63739195644700908, -1.3528843775011585) +station = ('kemv', 0.0029498326990653697) +zone = ('ncz012', 0.0024323810393586886) + +[27869] +centroid = (0.63298039241649806, -1.3493739618700371) +station = ('kasj', 0.0020752269698702322) +zone = ('ncz012', 0.0028772709444723848) + +[27870] +centroid = (0.6356315650035701, -1.3563975682057903) +station = ('kixa', 0.0018840139862501951) +zone = ('ncz011', 0.0029587503642285427) + +[27871] +centroid = (0.62486398307619384, -1.3484512412010927) +station = ('kpgv', 0.0035463994447218774) +zone = ('ncz029', 0.002278770215790532) + +[27872] +centroid = (0.63168274011764025, -1.3483343041412093) +station = ('kasj', 0.0021698149951721616) +zone = ('ncz012', 0.0044101897077448481) + +[27873] +centroid = (0.62227257056271013, -1.3574338749024544) +station = ('krwi', 0.0038566993859233513) +zone = ('ncz043', 0.0022190824652665248) + +[27874] +centroid = (0.6307037325803192, -1.3510346601066023) +station = ('ketc', 0.0040558936582642041) +zone = ('ncz011', 0.004023978789954699) + +[27875] +centroid = (0.61881880831910863, -1.3352583322918525) +station = ('knbt', 0.0076818060889872518) +zone = ('ncz081', 0.0038478611023574508) + +[27876] +centroid = (0.63655639752090931, -1.3507335559040483) +station = ('kemv', 0.0039644634158345514) +zone = ('ncz012', 0.00095061880141744865) + +[27878] +centroid = (0.62599513096441117, -1.3584757841060175) +station = ('krwi', 0.00096644363008585642) +zone = ('ncz027', 0.0027669077349657049) + +[27879] +centroid = (0.62089025234183803, -1.3487814749488627) +station = ('kpgv', 0.0019957375261713713) +zone = ('ncz044', 0.001393401962404465) + +[27880] +centroid = (0.62361898736086863, -1.3627633599464668) +station = ('krwi', 0.0032968851671968005) +zone = ('ncz043', 0.0023410425139896354) + +[27881] +centroid = (0.62794178394562317, -1.3515231603109428) +station = ('ketc', 0.0016879611966042084) +zone = ('ncz028', 0.002540116046604657) + +[27882] +centroid = (0.62730021836588246, -1.3633743822642976) +station = ('klhz', 0.0033503646458439098) +zone = ('ncz027', 0.0018776190024128027) + +[27883] +centroid = (0.621346568674772, -1.3579306654207421) +station = ('kgww', 0.0033493203584553212) +zone = ('ncz043', 0.0024417901892705807) + +[27884] +centroid = (0.62313226739236494, -1.3486213933498696) +station = ('kpgv', 0.0022030403981596956) +zone = ('ncz044', 0.002416276270934718) + +[27885] +centroid = (0.61760561250275481, -1.3312483161623481) +station = ('knbt', 0.007005334944945164) +zone = ('ncz081', 0.0026587434853392149) + +[27886] +centroid = (0.62665231724095727, -1.3528336407798029) +station = ('ketc', 0.00059837488630431937) +zone = ('ncz028', 0.0012166326756525875) + +[27888] +centroid = (0.62115006205429002, -1.3563992088152872) +station = ('kgww', 0.0041907320778500632) +zone = ('ncz079', 0.0019047383605821167) + +[27889] +centroid = (0.6210341372853726, -1.3441130333590432) +station = ('kocw', 0.00057543828655326598) +zone = ('ncz080', 0.0026129809710653895) + +[27890] +centroid = (0.63554733541386876, -1.3541616094477678) +station = ('kixa', 0.001642517338542991) +zone = ('ncz012', 0.0026839613166405206) + +[27891] +centroid = (0.63002432826239529, -1.35686763773323) +station = ('ketc', 0.0040946891565802526) +zone = ('ncz011', 0.0030683680835671663) + +[27892] +centroid = (0.62504221609940736, -1.3448150745973653) +station = ('kocw', 0.0042190544101763598) +zone = ('ncz029', 0.00092993917079614238) + +[27893] +centroid = (0.6229553084595052, -1.3596229366634758) +station = ('krwi', 0.002745244097648938) +zone = ('ncz043', 0.00032938135290015957) + +[27896] +centroid = (0.62466681323059592, -1.3609518478092368) +station = ('krwi', 0.0014999343006725451) +zone = ('ncz043', 0.0017127154015307224) + +[27897] +centroid = (0.63399064134742988, -1.3475809502228784) +station = ('kasj', 0.00073793795620992757) +zone = ('ncz012', 0.0030742050467308397) + +[27909] +centroid = (0.63335816893309227, -1.3311348697609684) +station = ('kecg', 0.0015833978937919962) +zone = ('ncz015', 0.00029831414736932924) + +[27910] +centroid = (0.63338113746604852, -1.3437845798471102) +station = ('kasj', 0.002502384342134247) +zone = ('ncz013', 0.001210341346438361) + +[27915] +centroid = (0.61844178229409275, -1.3175764016398981) +station = ('khse', 0.0039308385683610413) +zone = ('ncz103', 0.0059676818175725911) + +[27916] +centroid = (0.63393870034889066, -1.3249689880328155) +station = ('konx', 0.001953126501879252) +zone = ('ncz102', 0.0016902604568157184) + +[27917] +centroid = (0.63451802748750508, -1.3264082388938876) +station = ('konx', 0.00080560732763370723) +zone = ('ncz017', 0.00095191434937622759) + +[27919] +centroid = (0.63369712932712208, -1.335251630227525) +station = ('kede', 0.0049734848107665409) +zone = ('ncz032', 0.0019735548491848554) + +[27920] +centroid = (0.61539422798060051, -1.3186533046949638) +station = ('khse', 0.0010124374855318328) +zone = ('ncz104', 0.0056202026472219674) + +[27921] +centroid = (0.63446317178911482, -1.3297302113256708) +station = ('kecg', 0.0018062499607600867) +zone = ('ncz016', 0.0007349470023561525) + +[27922] +centroid = (0.63384694839011324, -1.3411495690089117) +station = ('kasj', 0.0046342259503260805) +zone = ('ncz013', 0.002122810829351447) + +[27923] +centroid = (0.63532916925736949, -1.3251962997145952) +station = ('konx', 0.0012365669166804658) +zone = ('ncz102', 0.0011825213896414762) + +[27924] +centroid = (0.63125848548306551, -1.3409804640576861) +station = ('kede', 0.0044749783901711039) +zone = ('ncz030', 0.0027304752136393545) + +[27925] +centroid = (0.62580771750933217, -1.3298333253778787) +station = ('k2dp', 0.005315443506290333) +zone = ('ncz046', 0.00074363079018739285) + +[27926] +centroid = (0.63713445056916984, -1.3370081644933172) +station = ('ksfq', 0.0030913863131680152) +zone = ('ncz014', 0.0017226712573726989) + +[27927] +centroid = (0.63427617721305629, -1.3238771973192303) +station = ('konx', 0.0025080753305974884) +zone = ('ncz102', 0.0010324742410228714) + +[27928] +centroid = (0.62525413397718466, -1.3341059262933457) +station = ('kede', 0.0039874115645238042) +zone = ('ncz045', 0.0019527880038541958) + +[27929] +centroid = (0.63591860185235294, -1.3262240019380469) +station = ('konx', 0.00075760457373204922) +zone = ('ncz017', 0.00089017297699628872) + +[27932] +centroid = (0.63020041453062903, -1.3370596691595436) +station = ('kede', 0.0015102153665756963) +zone = ('ncz031', 0.00074832941164437196) + +[27935] +centroid = (0.6358422786041632, -1.3416012951259131) +station = ('kfkn', 0.0047148215344830335) +zone = ('ncz013', 0.0020555041459880646) + +[27936] +centroid = (0.61509233837988309, -1.3190821320921786) +station = ('khse', 0.00057470063956842929) +zone = ('ncz104', 0.0051795966358069321) + +[27937] +centroid = (0.63712081954771171, -1.3400765929446634) +station = ('kfkn', 0.0038019599475653701) +zone = ('ncz014', 0.0015246398522672738) + +[27938] +centroid = (0.63502576122020271, -1.3389467889599698) +station = ('ksfq', 0.0054402441522130663) +zone = ('ncz014', 0.0010680675700096849) + +[27939] +centroid = (0.63247993670678126, -1.3237115306666312) +station = ('konx', 0.0037099221991734451) +zone = ('ncz102', 0.0028216857510730453) + +[27941] +centroid = (0.63010798189344341, -1.3232544638421189) +station = ('kffa', 0.0025958702880790096) +zone = ('ncz102', 0.0052076028268605709) + +[27942] +centroid = (0.63350858140802913, -1.3395516153589559) +station = ('kede', 0.0053684206625081261) +zone = ('ncz014', 0.0026568101217339505) + +[27943] +centroid = (0.6147823155448513, -1.3208460316474142) +station = ('khse', 0.00090078893260102052) +zone = ('ncz104', 0.0037385933822662153) + +[27944] +centroid = (0.63134547269298491, -1.3338026753358116) +station = ('kede', 0.0032709334048261914) +zone = ('ncz032', 0.00065247007708775691) + +[27946] +centroid = (0.63466166808494429, -1.336949015284967) +station = ('ksfq', 0.0055638895903028229) +zone = ('ncz014', 0.0019941469214022553) + +[27947] +centroid = (0.63169904149285394, -1.3243034765357373) +station = ('konx', 0.0040811458885820929) +zone = ('ncz102', 0.0036323351505516714) + +[27948] +centroid = (0.62865414007982467, -1.3210776193858613) +station = ('kffa', 0.00036282029549847522) +zone = ('ncz103', 0.0046448862076556227) + +[27949] +centroid = (0.63021990985837384, -1.3222706391960619) +station = ('kffa', 0.0020850239586235266) +zone = ('ncz102', 0.0052157173676986145) + +[27950] +centroid = (0.63721436919561869, -1.3263870855033533) +station = ('konx', 0.0019536456080990442) +zone = ('ncz017', 0.0019658347694828399) + +[27953] +centroid = (0.62447863183064589, -1.3243798870503898) +station = ('k2dp', 0.0019953882636216487) +zone = ('ncz047', 0.00034512156109495993) + +[27954] +centroid = (0.62675042219821175, -1.3208264490532067) +station = ('kmqi', 0.00033401260998096544) +zone = ('ncz103', 0.0027506705164946728) + +[27956] +centroid = (0.63532735411494734, -1.3264628851527676) +station = ('konx', 0.00022117370901210615) +zone = ('ncz017', 0.0004674864723875094) + +[27957] +centroid = (0.62947563165215326, -1.3396983102825859) +station = ('kede', 0.0027893493084247584) +zone = ('ncz031', 0.0025897914879577685) + +[27958] +centroid = (0.63677112537878222, -1.3288648945358246) +station = ('konx', 0.0022732740794448791) +zone = ('ncz016', 0.0019267064774895534) + +[27959] +centroid = (0.62634531382553149, -1.3195806504864258) +station = ('kmqi', 0.0014213073121593694) +zone = ('ncz103', 0.0022357418662138895) + +[27960] +centroid = (0.61214336026254335, -1.3264245228158085) +station = ('khse', 0.0061238536137084108) +zone = ('ncz104', 0.0015550526030939438) + +[27962] +centroid = (0.62465147178647085, -1.339449600864177) +station = ('kede', 0.0048518288584298973) +zone = ('ncz045', 0.0024463974552618663) + +[27964] +centroid = (0.6297679568485699, -1.3230680277714206) +station = ('kffa', 0.0022846909063740793) +zone = ('ncz047', 0.0054202430405193222) + +[27965] +centroid = (0.63299063749920725, -1.3251853215936) +station = ('konx', 0.002606639826705641) +zone = ('ncz102', 0.0025922324872098305) + +[27966] +centroid = (0.63093179475367722, -1.3229990349060894) +station = ('kffa', 0.0030085468695641594) +zone = ('ncz102', 0.0044090871800154096) + +[27967] +centroid = (0.63232350284592498, -1.3422446933013683) +station = ('kasj', 0.0039254926849940554) +zone = ('ncz013', 0.0025181656453430318) + +[27968] +centroid = (0.62364834379888723, -1.3178965124780064) +station = ('kmqi', 0.0041925442696895956) +zone = ('ncz103', 0.0016439684374065877) + +[27970] +centroid = (0.62551040067125485, -1.3377825845357196) +station = ('kede', 0.0034912390570299053) +zone = ('ncz045', 0.0010706333508159601) + +[27972] +centroid = (0.62051464003351642, -1.317221349310165) +station = ('khse', 0.0059485042897549295) +zone = ('ncz103', 0.0041845942854525833) + +[27973] +centroid = (0.63479734998099424, -1.3274191335966425) +station = ('konx', 0.00073478430604887531) +zone = ('ncz017', 0.00060445546590283091) + +[27974] +centroid = (0.6325600647727404, -1.3262670592106935) +station = ('konx', 0.0027459984058020776) +zone = ('ncz017', 0.0028307428426992717) + +[27976] +centroid = (0.63683339872649325, -1.3325708743096316) +station = ('kcpk', 0.0031298911506573153) +zone = ('ncz016', 0.0026081091737764832) + +[27978] +centroid = (0.62356085044348464, -1.3219101414390628) +station = ('k2dp', 0.0025050246185815729) +zone = ('ncz103', 0.0017727500368939517) + +[27979] +centroid = (0.6359415703853093, -1.3362359261124797) +station = ('ksfq', 0.0043228683448124066) +zone = ('ncz014', 0.0019845098513110466) + +[27980] +centroid = (0.63260024225212119, -1.3372605391031553) +station = ('kede', 0.0038674334003867424) +zone = ('ncz031', 0.0016592667259171872) + +[27981] +centroid = (0.62575036599011158, -1.3201220865269794) +station = ('kmqi', 0.0014224496416552271) +zone = ('ncz103', 0.0016473820951516361) + +[27982] +centroid = (0.62072680225738885, -1.3171345715397558) +station = ('khse', 0.0061719724259466551) +zone = ('ncz103', 0.0040410736117448415) + +[27983] +centroid = (0.62776803641858714, -1.3424710974119369) +station = ('kede', 0.0050591500698087761) +zone = ('ncz030', 0.0019120242980970388) + +[27985] +centroid = (0.63201169977505611, -1.3344206964239431) +station = ('kede', 0.0035668862468335935) +zone = ('ncz032', 0.00022366069281632548) + +[27986] +centroid = (0.63512334257868175, -1.342525446964844) +station = ('kasj', 0.0038641283178940948) +zone = ('ncz013', 0.0010336270551257534) + +[28001] +centroid = (0.61677455652612523, -1.3998968105789729) +station = ('kvuj', 0.0015885278347245696) +zone = ('ncz073', 0.00076276830850547273) + +[28006] +centroid = (0.6180282614344178, -1.4153279646275556) +station = ('kipj', 0.0016037413495608758) +zone = ('ncz069', 0.0022912313569258117) + +[28007] +centroid = (0.61269073042255384, -1.3981816755230381) +station = ('kafp', 0.0015404779822494042) +zone = ('ncz083', 0.0022850917826189522) + +[28009] +centroid = (0.61800667171157064, -1.3981525110712372) +station = ('kvuj', 0.00061984416072747954) +zone = ('ncz073', 0.0026435206126316372) + +[28012] +centroid = (0.61449704147861273, -1.414415436681443) +station = ('kclt', 0.0012925747332098909) +zone = ('ncz070', 0.002501990716848289) + +[28016] +centroid = (0.61636623674762114, -1.418660147235463) +station = ('kakh', 0.0027653647467431861) +zone = ('ncz070', 0.0015127598586374342) + +[28017] +centroid = (0.61517728355457757, -1.425422582501948) +station = ('keho', 0.0010089866034847753) +zone = ('ncz068', 0.0022361278327643684) + +[28018] +centroid = (0.61943087783449047, -1.42772606804873) +station = ('kfqd', 0.0021739966613019425) +zone = ('ncz508', 0.0020727030248967929) + +[28019] +centroid = (0.61569477367779391, -1.4274647748064138) +station = ('keho', 0.0027152858938429341) +zone = ('ncz508', 0.0025228601730776347) + +[28020] +centroid = (0.6200290196224415, -1.4249114802837939) +station = ('kfqd', 0.0045012440840930161) +zone = ('ncz504', 0.0033289814200970157) + +[28021] +centroid = (0.61786006405440308, -1.4207564098401559) +station = ('kipj', 0.0037281411318104128) +zone = ('ncz068', 0.0024579517285556818) + +[28023] +centroid = (0.62077371670768244, -1.4067747866419398) +station = ('kruq', 0.0018808535452328431) +zone = ('ncz057', 0.0016689680270163014) + +[28025] +centroid = (0.61754421181966968, -1.4053996242710007) +station = ('kjqf', 0.0026507052378258776) +zone = ('ncz072', 0.0004109329241024426) + +[28027] +centroid = (0.61798731601016599, -1.4081700377525688) +station = ('kjqf', 0.00055812047743732758) +zone = ('ncz072', 0.00189058117782082) + +[28031] +centroid = (0.61913727854772005, -1.4119439282875712) +station = ('kjqf', 0.0030979606545845327) +zone = ('ncz071', 0.004073129783307052) + +[28032] +centroid = (0.61493243131381525, -1.4151044577635452) +station = ('kakh', 0.0011586895842723712) +zone = ('ncz070', 0.0017904268275410549) + +[28033] +centroid = (0.61818288015285194, -1.4194457897449559) +station = ('kipj', 0.0026206301522781247) +zone = ('ncz069', 0.0018883085603064291) + +[28034] +centroid = (0.61703783944378865, -1.4168398386388033) +station = ('kipj', 0.0022720690695109463) +zone = ('ncz070', 0.0010327380293962355) + +[28036] +centroid = (0.61925236555859653, -1.410095816595927) +station = ('kjqf', 0.0020375995987483362) +zone = ('ncz071', 0.0041197031503019755) + +[28037] +centroid = (0.61974955750261218, -1.4140702454619833) +station = ('kipj', 0.0020560578091062386) +zone = ('ncz069', 0.0029209627130633397) + +[28039] +centroid = (0.62271314402579103, -1.4038979429825849) +station = ('kruq', 0.0012311655576929905) +zone = ('ncz057', 0.0014144166614908466) + +[28040] +centroid = (0.61765797238031472, -1.426948646040014) +station = ('kfqd', 0.0026070085929558754) +zone = ('ncz508', 0.0018677409023955599) + +[28043] +centroid = (0.61621013449932283, -1.4289496834807183) +station = ('kfqd', 0.0023075740945438291) +zone = ('ncz508', 0.0015701282575162363) + +[28052] +centroid = (0.61461169215717626, -1.4177872731699557) +station = ('kakh', 0.0012141173119898474) +zone = ('ncz070', 0.0015859628657616505) + +[28054] +centroid = (0.61545334228236548, -1.4163185436978174) +station = ('kakh', 0.0010975248069963097) +zone = ('ncz070', 0.00070709780399010752) + +[28056] +centroid = (0.61465148566412176, -1.4158984080402774) +station = ('kakh', 0.00046307816478987832) +zone = ('ncz070', 0.0015650059668876407) + +[28071] +centroid = (0.61989960345840611, -1.4017842794452495) +station = ('kvuj', 0.0029392183730432599) +zone = ('ncz057', 0.0036443030838612567) + +[28072] +centroid = (0.62158278153573687, -1.4040336946918051) +station = ('kruq', 0.0011920118715744981) +zone = ('ncz057', 0.0012125928520859146) + +[28073] +centroid = (0.6143310083068706, -1.4221602654239975) +station = ('keho', 0.0018844798062941459) +zone = ('ncz068', 0.0025745563516505472) + +[28075] +centroid = (0.61614918760184312, -1.4074324092507986) +station = ('kjqf', 0.0017498116413241923) +zone = ('ncz072', 0.0019294761326741686) + +[28076] +centroid = (0.61538820659468108, -1.4274804653163893) +station = ('keho', 0.0026928016054485185) +zone = ('ncz508', 0.0027731548454425301) + +[28077] +centroid = (0.61793036591667339, -1.4172556982396758) +station = ('kipj', 0.0014871343640020759) +zone = ('ncz069', 0.001452083884009325) + +[28078] +centroid = (0.61793881331025302, -1.411343395398545) +station = ('kjqf', 0.0022228722760347284) +zone = ('ncz071', 0.0028015994605940764) + +[28079] +centroid = (0.61286730538297807, -1.4067427598501656) +station = ('keqy', 0.0017268409010049186) +zone = ('ncz082', 0.0024191598209774667) + +[28080] +centroid = (0.6187744595028154, -1.4156303254671712) +station = ('kipj', 0.00090177114107124463) +zone = ('ncz069', 0.0017233977062572853) + +[28081] +centroid = (0.61964103292972317, -1.4079601270034316) +station = ('kjqf', 0.002127109188103975) +zone = ('ncz072', 0.0026321391635833647) + +[28083] +centroid = (0.61941040512236456, -1.4063979700564342) +station = ('kjqf', 0.0025851729316770083) +zone = ('ncz072', 0.0018402767843285646) + +[28086] +centroid = (0.61512288164179285, -1.4203304796894991) +station = ('kakh', 0.0033531530438829461) +zone = ('ncz070', 0.0029676454453732336) + +[28088] +centroid = (0.62036464643760003, -1.4069909980296766) +station = ('kruq', 0.0023104926218579596) +zone = ('ncz057', 0.0020970471122696952) + +[28089] +centroid = (0.61641945183651448, -1.4252284320759561) +station = ('keho', 0.0014623974462616271) +zone = ('ncz068', 0.0015087142663889068) + +[28090] +centroid = (0.61880053472184027, -1.4234827712114038) +station = ('keho', 0.0036180749904548208) +zone = ('ncz068', 0.002106726398343705) + +[28091] +centroid = (0.61064518708592386, -1.3950940659032125) +station = ('kafp', 0.0021376836624231355) +zone = ('ncz084', 0.0026647147177827472) + +[28092] +centroid = (0.61935561923714455, -1.4181480676329281) +station = ('kipj', 0.0013160695244146283) +zone = ('ncz069', 0.00042635290902294076) + +[28097] +centroid = (0.61604389188807029, -1.4031234182204273) +station = ('kvuj', 0.0040336291338383696) +zone = ('ncz073', 0.0020450398738604109) + +[28098] +centroid = (0.61559579605591319, -1.4154379901836014) +station = ('kakh', 0.001440061375805339) +zone = ('ncz070', 0.0012309192218740448) + +[28101] +centroid = (0.61536755934963006, -1.4150731989166419) +station = ('kakh', 0.0014440537203672869) +zone = ('ncz070', 0.0015920176253111712) + +[28102] +centroid = (0.60769627878175425, -1.395779334527423) +station = ('kcqw', 0.0017791519029836658) +zone = ('ncz083', 0.0032923522298418306) + +[28103] +centroid = (0.61084647590855645, -1.4023952144966176) +station = ('keqy', 0.0038057901028835232) +zone = ('ncz082', 0.0025712463667919997) + +[28104] +centroid = (0.61192758520711921, -1.4083636296732001) +station = ('keqy', 0.0013394557355397817) +zone = ('ncz082', 0.0026457630032319566) + +[28105] +centroid = (0.6128827864534433, -1.4087199560932873) +station = ('keqy', 0.0022142928256409524) +zone = ('ncz071', 0.0028512981287019817) + +[28107] +centroid = (0.6152784777446082, -1.4053160753597078) +station = ('kjqf', 0.0035697425410811411) +zone = ('ncz072', 0.0023850821729840656) + +[28108] +centroid = (0.60972695191315718, -1.4081522877540762) +station = ('keqy', 0.0017011277321025394) +zone = ('ncz082', 0.0023470860295642542) + +[28109] +centroid = (0.61953893116848147, -1.4012992000862428) +station = ('kvuj', 0.0024075497515079472) +zone = ('ncz073', 0.0032728153226883245) + +[28110] +centroid = (0.61200525235883296, -1.4054240414272363) +station = ('keqy', 0.0015626427863481155) +zone = ('ncz082', 0.0013450592421363776) + +[28112] +centroid = (0.6089440670238826, -1.4058548235932136) +station = ('keqy', 0.0024114450856046964) +zone = ('ncz082', 0.0017397399773296678) + +[28114] +centroid = (0.61488719237960354, -1.4267665558391536) +station = ('keho', 0.0021329570897299405) +zone = ('ncz068', 0.0032822847402657427) + +[28115] +centroid = (0.62106808393932389, -1.4098572649937644) +station = ('kjqf', 0.0036146309931415154) +zone = ('ncz036', 0.0041109136615611807) + +[28117] +centroid = (0.62073853086996222, -1.4119422527714893) +station = ('ksvh', 0.003580188472749581) +zone = ('ncz036', 0.0042295610891378227) + +[28119] +centroid = (0.60826605896936037, -1.396559845768915) +station = ('kcqw', 0.0025399862357707663) +zone = ('ncz083', 0.0024683411970215434) + +[28120] +centroid = (0.61660128023798721, -1.4141773388648857) +station = ('kclt', 0.0022371749307289117) +zone = ('ncz070', 0.0022688272080441454) + +[28124] +centroid = (0.61784048146019577, -1.4033981679512764) +station = ('kjqf', 0.0042889751778315485) +zone = ('ncz072', 0.0020484385776819683) + +[28125] +centroid = (0.62236739430097099, -1.4084564986426986) +station = ('kruq', 0.0025850954089338143) +zone = ('ncz057', 0.0024897182467218558) + +[28127] +centroid = (0.61903734099475083, -1.3994524497514154) +station = ('kvuj', 0.0010076586886409329) +zone = ('ncz073', 0.0028931561669728006) + +[28128] +centroid = (0.61454257711879734, -1.3989603367155228) +station = ('kafp', 0.0034985204969374822) +zone = ('ncz073', 0.002237130585397369) + +[28129] +centroid = (0.6149085028497705, -1.4019734556828733) +station = ('kvuj', 0.0040903290299980086) +zone = ('ncz073', 0.0017757043197474225) + +[28133] +centroid = (0.60815868631377767, -1.4009004098054547) +station = ('kafp', 0.0040852391148724137) +zone = ('ncz083', 0.003240482802052361) + +[28134] +centroid = (0.61235578428580362, -1.4118508498785625) +station = ('kclt', 0.0024306636092341367) +zone = ('ncz071', 0.0029453611273481265) + +[28135] +centroid = (0.61138464818340887, -1.4000555831810269) +station = ('kafp', 0.0020121123934586601) +zone = ('ncz083', 0.0019071208494139342) + +[28137] +centroid = (0.62069334429562806, -1.4003892028675455) +station = ('kvuj', 0.0028303529751645459) +zone = ('ncz038', 0.0040298670395194584) + +[28138] +centroid = (0.61986033355023618, -1.403921208221514) +station = ('kruq', 0.0025967729702908882) +zone = ('ncz057', 0.0024876923765498487) + +[28139] +centroid = (0.61694531954014031, -1.4310781299568178) +station = ('kfqd', 0.0016341888702221142) +zone = ('ncz508', 0.0017100111748866971) + +[28144] +centroid = (0.62319921822247148, -1.404375482519223) +station = ('kruq', 0.0012327849759751954) +zone = ('ncz057', 0.0014465356487179334) + +[28146] +centroid = (0.62167404480232369, -1.4031277466369723) +station = ('kruq', 0.0018301974542063943) +zone = ('ncz057', 0.001897451983982498) + +[28147] +centroid = (0.62275297243932159, -1.4060885929932256) +station = ('kruq', 0.00085176740645113492) +zone = ('ncz057', 0.00090506325241092463) + +[28150] +centroid = (0.61684653390447752, -1.4237741190234394) +station = ('keho', 0.0016529709403514125) +zone = ('ncz068', 0.0003334320737270235) + +[28152] +centroid = (0.61510150135845598, -1.4241784070913712) +station = ('keho', 0.00012733609247548696) +zone = ('ncz068', 0.0017120820889316736) + +[28159] +centroid = (0.62299094808283095, -1.4038010073959291) +station = ('kruq', 0.001433685916047278) +zone = ('ncz057', 0.0016306511200050503) + +[28160] +centroid = (0.61716629567673531, -1.4298142323256935) +station = ('kfqd', 0.0011885388188876973) +zone = ('ncz508', 0.00076022631719835419) + +[28163] +centroid = (0.61448669167614844, -1.4037424341462321) +station = ('keqy', 0.0042788641811809629) +zone = ('ncz073', 0.0031222938501554959) + +[28164] +centroid = (0.61766231825015205, -1.4143648221331351) +station = ('kipj', 0.002406535952348258) +zone = ('ncz070', 0.0026246317755446234) + +[28166] +centroid = (0.62278218925099993, -1.411544300248742) +station = ('ksvh', 0.0018423602480455326) +zone = ('ncz036', 0.0021715189564387749) + +[28167] +centroid = (0.61973854447503207, -1.4305920208535523) +station = ('kfqd', 0.0014691384428126241) +zone = ('ncz506', 0.0021899455617514687) + +[28168] +centroid = (0.62050573885433125, -1.4211355826201517) +station = ('khky', 0.0034998881816877183) +zone = ('ncz069', 0.0030822223605939387) + +[28169] +centroid = (0.61712171996763932, -1.4212110506570079) +station = ('keho', 0.0030804283689996699) +zone = ('ncz068', 0.001843965359660476) + +[28170] +centroid = (0.61084308996980752, -1.3979875600036313) +station = ('kafp', 0.00049253327647979844) +zone = ('ncz083', 0.00043871079712997008) + +[28173] +centroid = (0.60940186688668074, -1.409029001543938) +station = ('keqy', 0.0024022953666489434) +zone = ('ncz082', 0.0031359394350219329) + +[28174] +centroid = (0.61032479699513531, -1.4039355199213803) +station = ('keqy', 0.0026649931878474299) +zone = ('ncz082', 0.0013461908308450381) + +[28202] +centroid = (0.61483186544231538, -1.4109973664210447) +station = ('kclt', 0.0015198938686658264) +zone = ('ncz071', 0.0003775680451653136) + +[28203] +centroid = (0.61449875190127978, -1.4112576473723946) +station = ('kclt', 0.0013045319658722874) +zone = ('ncz071', 0.00077129147301561389) + +[28204] +centroid = (0.6146110638386455, -1.4106975188555522) +station = ('kclt', 0.0017540359829014698) +zone = ('ncz071', 0.00056767205623310256) + +[28205] +centroid = (0.61468386152174626, -1.4100445388225034) +station = ('kclt', 0.0022873903410361891) +zone = ('ncz071', 0.00078628514282918116) + +[28206] +centroid = (0.61533549765127082, -1.4105925373010446) +station = ('kclt', 0.0019637049390276609) +zone = ('ncz071', 0.00023407263049278761) + +[28207] +centroid = (0.61425376003417731, -1.410655124808021) +station = ('kclt', 0.0018312069943132155) +zone = ('ncz071', 0.00092638562752725222) + +[28208] +centroid = (0.61488700039338584, -1.4121021423842646) +station = ('kclt', 0.00065192350247352318) +zone = ('ncz071', 0.0011024217633839011) + +[28209] +centroid = (0.61398438591742444, -1.4111682516081072) +station = ('kclt', 0.001521186161990239) +zone = ('ncz071', 0.0012261217264450896) + +[28210] +centroid = (0.61313270014903631, -1.4112070153707943) +station = ('kclt', 0.0020206459449030622) +zone = ('ncz071', 0.0020671493875665786) + +[28211] +centroid = (0.61376845378236777, -1.4101786499222266) +station = ('kclt', 0.0023486476785942803) +zone = ('ncz071', 0.001492798977646711) + +[28212] +centroid = (0.61414127356388626, -1.4092583552609426) +station = ('kjqf', 0.0034838572028921635) +zone = ('ncz071', 0.0016269827807880756) + +[28213] +centroid = (0.61585747327066487, -1.4090803142239465) +station = ('kjqf', 0.0017672810609887502) +zone = ('ncz071', 0.0015610628799689215) + +[28214] +centroid = (0.61566929187071484, -1.4131607020288914) +station = ('kclt', 0.0010547062194621395) +zone = ('ncz071', 0.0019917049071142001) + +[28215] +centroid = (0.61514092834625855, -1.4083667538125613) +station = ('kjqf', 0.0024595890724532737) +zone = ('ncz071', 0.0019862227513074383) + +[28216] +centroid = (0.61630106615335167, -1.4117615937406154) +station = ('kclt', 0.0018755702548778094) +zone = ('ncz071', 0.0013752535972526704) + +[28217] +centroid = (0.61381302949146366, -1.4121159653919404) +station = ('kclt', 0.0010242837770775995) +zone = ('ncz071', 0.0017342099390049023) + +[28226] +centroid = (0.61265763897993597, -1.4106122595215922) +station = ('kclt', 0.0026992232318921445) +zone = ('ncz071', 0.0025196749588447414) + +[28227] +centroid = (0.61417096161446272, -1.4075292924775769) +station = ('keqy', 0.0030427936275108773) +zone = ('ncz071', 0.0028525071334473645) + +[28244] +centroid = (0.6147853349644572, -1.4109781677992725) +station = ('kclt', 0.0015305755954805123) +zone = ('ncz071', 0.00041423996370883995) + +[28262] +centroid = (0.61648626304028076, -1.4091785064476638) +station = ('kjqf', 0.0011844358729763823) +zone = ('ncz071', 0.0018639063955360952) + +[28269] +centroid = (0.61675246065779499, -1.4102866334430475) +station = ('kjqf', 0.001575244743444944) +zone = ('ncz071', 0.0016340637336515504) + +[28270] +centroid = (0.61282138577035805, -1.4096049601970961) +station = ('keqy', 0.0026885043758791268) +zone = ('ncz071', 0.0025456660721096666) + +[28273] +centroid = (0.61308817679981786, -1.4127886676455363) +station = ('kclt', 0.0015592649510867969) +zone = ('ncz071', 0.0026440153714143611) + +[28277] +centroid = (0.61178808104000737, -1.4105323758017285) +station = ('keqy', 0.0029395495028026004) +zone = ('ncz071', 0.0033916172922199609) + +[28278] +centroid = (0.61319355978005341, -1.4138802838261963) +station = ('kclt', 0.0016820591533928484) +zone = ('ncz071', 0.0032031571771401544) + +[28280] +centroid = (0.61481547680063908, -1.4109781154393952) +station = ('kclt', 0.0015336242842910017) +zone = ('ncz071', 0.00038618367700240017) + +[28282] +centroid = (0.61478900015588633, -1.4110162683368437) +station = ('kclt', 0.0014999214388556538) +zone = ('ncz071', 0.00042293080941073545) + +[28301] +centroid = (0.61217074447850717, -1.3767900126393846) +station = ('kfbg', 0.0012388341604157136) +zone = ('ncz088', 0.00093423744977403429) + +[28303] +centroid = (0.61236547086315207, -1.378103599794313) +station = ('kfbg', 0.00090747426544810666) +zone = ('ncz088', 0.0019987201197228573) + +[28304] +centroid = (0.61131078584946452, -1.3786286646464829) +station = ('kfay', 0.0016883378657714216) +zone = ('ncz088', 0.0023537921609992738) + +[28305] +centroid = (0.61178343846419703, -1.3771912114745406) +station = ('kfay', 0.0012564648452938715) +zone = ('ncz088', 0.0011444938846987612) + +[28306] +centroid = (0.61014083929197505, -1.3770097670455033) +station = ('kfay', 0.00047464849419895827) +zone = ('ncz088', 0.0018591030342863936) + +[28307] +centroid = (0.61328354895628623, -1.3784939775881067) +station = ('kfbg', 0.0006989875304572469) +zone = ('ncz088', 0.0027099942228420949) + +[28308] +centroid = (0.6138593156232266, -1.3791082462183462) +station = ('kpob', 0.0002470191650910306) +zone = ('ncz088', 0.0034574990823874759) + +[28310] +centroid = (0.61371834537954306, -1.3794718332081215) +station = ('kpob', 8.5920726040844461e-05) +zone = ('ncz088', 0.0036152326997173118) + +[28311] +centroid = (0.6137935865235965, -1.3768510293500342) +station = ('kfbg', 0.00088576857836411029) +zone = ('ncz088', 0.0022537031330941426) + +[28312] +centroid = (0.60995333857043332, -1.3742396677232005) +station = ('kfay', 0.0021676495223912854) +zone = ('ncz088', 0.0021718963084417916) + +[28314] +centroid = (0.61178876171841567, -1.3793318054422341) +station = ('kfbg', 0.0019675908821914557) +zone = ('ncz086', 0.0030253493692367051) + +[28315] +centroid = (0.61290526629420894, -1.3863526716110615) +station = ('khff', 0.0017508746694580863) +zone = ('ncz086', 0.0032831402906011178) + +[28318] +centroid = (0.61121208748026412, -1.3720657030602088) +station = ('kctz', 0.0036410141147264923) +zone = ('ncz089', 0.003500162763336393) + +[28320] +centroid = (0.6031530122058878, -1.3748432374851252) +station = ('keyf', 0.0028178688374626195) +zone = ('ncz096', 0.0031661290727052508) + +[28323] +centroid = (0.61634839948266584, -1.3759285879337702) +station = ('khrj', 0.0018288183021034773) +zone = ('ncz077', 0.001070465123589971) + +[28325] +centroid = (0.61355168388927006, -1.3631743675320189) +station = ('kdpl', 0.0032057882087507625) +zone = ('ncz078', 0.0039312450691629496) + +[28326] +centroid = (0.61564440347558136, -1.3815918497439339) +station = ('kpob', 0.0025938451884432632) +zone = ('ncz076', 0.0035154513148554357) + +[28327] +centroid = (0.61705393137949194, -1.3860794926765394) +station = ('ksop', 0.0021292792588299939) +zone = ('ncz075', 0.0011991048728764839) + +[28328] +centroid = (0.6109262898152501, -1.3672547029770863) +station = ('kctz', 0.00062021493805163432) +zone = ('ncz089', 0.00051980394572716758) + +[28330] +centroid = (0.60928740819433491, -1.3931563664610633) +station = ('krcz', 0.00095085213775711471) +zone = ('ncz084', 0.00198619099919683) + +[28332] +centroid = (0.60491434612712291, -1.3742354091198254) +station = ('keyf', 0.0024471431481572193) +zone = ('ncz096', 0.002627268277140383) + +[28333] +centroid = (0.61582740124765301, -1.3615776879724169) +station = ('kgsb', 0.0010775331755361345) +zone = ('ncz078', 0.0013928084888274322) + +[28334] +centroid = (0.61561616404828401, -1.371272101849327) +station = ('khrj', 0.0030005365079264572) +zone = ('ncz077', 0.0046080082332530812) + +[28337] +centroid = (0.60487963152830071, -1.3711580620360018) +station = ('keyf', 0.0010436135223306229) +zone = ('ncz096', 0.00074649532605729901) + +[28338] +centroid = (0.61274507997546079, -1.3920692183232886) +station = ('krcz', 0.0037997065228222932) +zone = ('ncz084', 0.0017847006013416973) + +[28339] +centroid = (0.61628518365715856, -1.3741456642896881) +station = ('khrj', 0.0011881287027714045) +zone = ('ncz077', 0.0021931945801528492) + +[28340] +centroid = (0.60163862492051734, -1.3811562155626362) +station = ('klbt', 0.0024475160022169157) +zone = ('ncz087', 0.0029785238099591179) + +[28341] +centroid = (0.6129615706158783, -1.3643945970252582) +station = ('kdpl', 0.0034567062509290947) +zone = ('ncz089', 0.0036017075686347547) + +[28342] +centroid = (0.61420201102185568, -1.3727234827487005) +station = ('khrj', 0.0034752619518573437) +zone = ('ncz088', 0.0035379694675525893) + +[28343] +centroid = (0.60663040620756137, -1.3886690376877233) +station = ('kbbp', 0.0033709339907943372) +zone = ('ncz085', 0.0018969149214035953) + +[28344] +centroid = (0.61366649164746623, -1.3722561010283088) +station = ('khrj', 0.0041121200256561893) +zone = ('ncz088', 0.0034939401023785176) + +[28345] +centroid = (0.60865828681216105, -1.3905149328112176) +station = ('krcz', 0.0013112705745355138) +zone = ('ncz084', 0.002561426642693519) + +[28347] +centroid = (0.61188316657765607, -1.3892926263761685) +station = ('khff', 0.0015022283885176883) +zone = ('ncz084', 0.0022966042911397007) + +[28348] +centroid = (0.60938628109646031, -1.3775316204918495) +station = ('kfay', 0.0013406145389775921) +zone = ('ncz088', 0.0027258177088175122) + +[28349] +centroid = (0.61053638326035453, -1.3600838606656349) +station = ('kdpl', 0.0008471577216905197) +zone = ('ncz090', 0.00078451508708436441) + +[28350] +centroid = (0.61510916335387222, -1.3842907570860479) +station = ('ksop', 0.0012376250385874314) +zone = ('ncz075', 0.0026590659030355417) + +[28351] +centroid = (0.60821705012396432, -1.3886512178760606) +station = ('khff', 0.0033566779238946567) +zone = ('ncz085', 0.001200501479000877) + +[28352] +centroid = (0.60680441553398523, -1.3866828704522463) +station = ('kmeb', 0.0012419046504543818) +zone = ('ncz085', 0.0013547887960557554) + +[28356] +centroid = (0.61498274915615037, -1.375163069070553) +station = ('khrj', 0.0026213824307034957) +zone = ('ncz077', 0.0025716731277851484) + +[28357] +centroid = (0.60915286076229869, -1.3802546482842262) +station = ('kfay', 0.0031877514882980244) +zone = ('ncz086', 0.0029896397039724846) + +[28358] +centroid = (0.6040253975792047, -1.3776664646298584) +station = ('klbt', 0.0019043077816999717) +zone = ('ncz087', 0.0024909910496775031) + +[28360] +centroid = (0.60511148106613566, -1.3801180239103799) +station = ('klbt', 0.0012332930557099723) +zone = ('ncz087', 0.00066828094015354957) + +[28363] +centroid = (0.61011638722915462, -1.3883400256704299) +station = ('khff', 0.0014844475173194918) +zone = ('ncz085', 0.0022311982934490218) + +[28364] +centroid = (0.60575454762903291, -1.3844554987141438) +station = ('kmeb', 0.0014665020613207128) +zone = ('ncz085', 0.0032453188039870519) + +[28365] +centroid = (0.61387706562171929, -1.3622706185920437) +station = ('kgsb', 0.0030602074270483694) +zone = ('ncz078', 0.003408070273331613) + +[28366] +centroid = (0.61488417295999764, -1.3676746466484089) +station = ('kctz', 0.0044457426087017426) +zone = ('ncz089', 0.0041693641041915626) + +[28367] +centroid = (0.61387943926950217, -1.39146652122599) +station = ('khff', 0.0040315025078553656) +zone = ('ncz084', 0.0029294446573824027) + +[28369] +centroid = (0.60080119849211799, -1.379323515128287) +station = ('klbt', 0.0031289268172554727) +zone = ('ncz087', 0.0039297204437985719) + +[28371] +centroid = (0.60917525333660172, -1.3784535383093379) +station = ('kfay', 0.0019629461674991813) +zone = ('ncz088', 0.0033430151654509918) + +[28372] +centroid = (0.60557467399632248, -1.3819101977994976) +station = ('klbt', 0.0023230626932275091) +zone = ('ncz087', 0.0014539291996634516) + +[28373] +centroid = (0.61245912523081414, -1.3873353617931043) +station = ('khff', 0.0010254472941728487) +zone = ('ncz075', 0.0038302127502382851) + +[28374] +centroid = (0.61431146061924824, -1.3868902679272608) +station = ('ksop', 0.0010945702953189759) +zone = ('ncz075', 0.0019937264293957658) + +[28375] +centroid = (0.60171524487467998, -1.3794829858620417) +station = ('klbt', 0.0022060214313296528) +zone = ('ncz087', 0.0030166329550329225) + +[28376] +centroid = (0.6107327153479114, -1.3830450108791446) +station = ('khff', 0.0037475457549079935) +zone = ('ncz086', 0.00044334689414233906) + +[28377] +centroid = (0.60784370674367016, -1.3825318840790579) +station = ('kmeb', 0.0023263581976024701) +zone = ('ncz086', 0.0033427005307532127) + +[28379] +centroid = (0.60964837719023235, -1.3923998185902013) +station = ('krcz', 0.00075188579784356226) +zone = ('ncz084', 0.0013906550100496054) + +[28382] +centroid = (0.61036403199672007, -1.3703943408619141) +station = ('kctz', 0.0021906893502400089) +zone = ('ncz089', 0.0021260587492346623) + +[28383] +centroid = (0.60348204167647379, -1.3833950192073394) +station = ('klbt', 0.0028451592564184783) +zone = ('ncz087', 0.0025384096490324551) + +[28384] +centroid = (0.60732379061279362, -1.3781281565768886) +station = ('kfay', 0.0034351257039469374) +zone = ('ncz087', 0.0034192039852891766) + +[28385] +centroid = (0.61171706359274369, -1.3699310781185572) +station = ('kctz', 0.002215127218739751) +zone = ('ncz089', 0.0019863709457050658) + +[28386] +centroid = (0.6083104077856536, -1.3810723350387852) +station = ('kmeb', 0.0036113231129578718) +zone = ('ncz086', 0.0032459590314383707) + +[28387] +centroid = (0.61399747588681453, -1.3853782542896731) +station = ('ksop', 0.00099896994173645092) +zone = ('ncz075', 0.0027359170330824856) + +[28390] +centroid = (0.61468288413736516, -1.378079933129656) +station = ('kpob', 0.0014054751357325008) +zone = ('ncz077', 0.0029074389143032469) + +[28391] +centroid = (0.6112427354619292, -1.3735531424619283) +station = ('kfay', 0.0027215534016444016) +zone = ('ncz088', 0.0018953328448190858) + +[28392] +centroid = (0.60623908593597164, -1.3753317202361732) +station = ('keyf', 0.0039093466214522006) +zone = ('ncz096', 0.004006840581193217) + +[28393] +centroid = (0.61053146143186399, -1.3646673745340523) +station = ('kctz', 0.0025049343902118419) +zone = ('ncz089', 0.0026022113527561955) + +[28394] +centroid = (0.6146869333012297, -1.3830835128424435) +station = ('ksop', 0.0022262101830234499) +zone = ('ncz086', 0.0035197462966703886) + +[28395] +centroid = (0.61329765121664226, -1.3742837896466908) +station = ('kfbg', 0.0027520343588168903) +zone = ('ncz088', 0.0020114532825609628) + +[28396] +centroid = (0.60959554607377453, -1.3858191419120194) +station = ('khff', 0.0023256179339405736) +zone = ('ncz085', 0.0018807843698689477) + +[28398] +centroid = (0.61077858260065387, -1.3626084270687673) +station = ('kdpl', 0.001290321262878836) +zone = ('ncz090', 0.00222775583029414) + +[28399] +centroid = (0.60710445508569555, -1.3737314103917271) +station = ('keyf', 0.0036911533355445132) +zone = ('ncz096', 0.0036337609450308988) + +[28401] +centroid = (0.59815897944410878, -1.3607220054000417) +station = ('kilm', 0.00092241423123072498) +zone = ('ncz107', 0.00095730341263785038) + +[28403] +centroid = (0.59728106137706316, -1.3592734693873489) +station = ('kilm', 0.00083333757762925874) +zone = ('ncz107', 0.0010780385785833691) + +[28405] +centroid = (0.59800533811005574, -1.3590247076090622) +station = ('kilm', 0.00048873897136889608) +zone = ('ncz107', 0.00056249979946398888) + +[28409] +centroid = (0.59611451821161521, -1.3589600606135683) +station = ('kilm', 0.0020246249425686547) +zone = ('ncz108', 0.0003087178642680488) + +[28411] +centroid = (0.59868186263471379, -1.3577399707466693) +station = ('kilm', 0.0016644150086206266) +zone = ('ncz107', 0.0015621748757726729) + +[28412] +centroid = (0.5959209611975691, -1.3601028323946041) +station = ('kilm', 0.0021833439598552083) +zone = ('ncz108', 0.00097389782112634155) + +[28420] +centroid = (0.59469835805654703, -1.3697538748396021) +station = ('kcpc', 0.0048453748104168408) +zone = ('ncz109', 0.003400934706846112) + +[28421] +centroid = (0.60224020500709485, -1.3642955146836224) +station = ('kilm', 0.0056889915048276936) +zone = ('ncz105', 0.0035912236265829502) + +[28422] +centroid = (0.59374273793120258, -1.364393078588809) +station = ('ksut', 0.002125797723765175) +zone = ('ncz109', 0.0018770680080306616) + +[28423] +centroid = (0.59889076109288497, -1.3681444020165832) +station = ('kcpc', 0.0047566181529375383) +zone = ('ncz109', 0.0041421931020027055) + +[28424] +centroid = (0.59847847941697896, -1.3735686933455638) +station = ('kcpc', 0.00037707396309077874) +zone = ('ncz099', 0.00077627198002210929) + +[28425] +centroid = (0.60322430890583179, -1.3595135568792533) +station = ('kilm', 0.0051587845335309022) +zone = ('ncz105', 0.00063841609277809407) + +[28428] +centroid = (0.59422947535299875, -1.3597800686560328) +station = ('ksut', 0.0031502439868163678) +zone = ('ncz108', 0.0017256025279791354) + +[28429] +centroid = (0.5993672010720944, -1.3596152572147671) +station = ('kilm', 0.0013010477823592263) +zone = ('ncz107', 0.0010390300967671562) + +[28430] +centroid = (0.59861981617980542, -1.3777173235242617) +station = ('kcpc', 0.0032379722706707002) +zone = ('ncz099', 0.0041126384762679279) + +[28431] +centroid = (0.59889688719855949, -1.375990006070148) +station = ('kcpc', 0.0019212855455541362) +zone = ('ncz099', 0.0027784552688128188) + +[28432] +centroid = (0.59634615830993987, -1.3745982630713152) +station = ('kcpc', 0.0019323661475045125) +zone = ('ncz099', 0.0022644617120646904) + +[28433] +centroid = (0.60193796634052699, -1.3721197908137281) +station = ('keyf', 0.0020041113828114352) +zone = ('ncz096', 0.0023262048581392885) + +[28434] +centroid = (0.60158575889747445, -1.3694810624242229) +station = ('keyf', 0.0028552661051502656) +zone = ('ncz096', 0.0029093786021739975) + +[28435] +centroid = (0.60049641164484224, -1.3632611103958432) +station = ('kilm', 0.0038714564593812723) +zone = ('ncz105', 0.0034994848956294727) + +[28436] +centroid = (0.59821338135689339, -1.3660205981162936) +station = ('kilm', 0.0052984330909513263) +zone = ('ncz109', 0.0029523923556223869) + +[28438] +centroid = (0.6005498885331233, -1.3773843670628587) +station = ('kcpc', 0.0037729297264101108) +zone = ('ncz099', 0.00454650811406394) + +[28439] +centroid = (0.59841919058228865, -1.3788314893588574) +station = ('kcpc', 0.0041351658949636931) +zone = ('scz053', 0.0058018621523441404) + +[28441] +centroid = (0.60745509173242129, -1.3688931482656885) +station = ('kctz', 0.0031342448922105051) +zone = ('ncz089', 0.0033751740009930753) + +[28442] +centroid = (0.59844629554557205, -1.3718392291364701) +station = ('kcpc', 0.001672356548016177) +zone = ('ncz099', 0.00088089886883281339) + +[28443] +centroid = (0.60117928916797758, -1.3556969232308698) +station = ('kilm', 0.0044872276387479641) +zone = ('ncz106', 0.0011876349086584819) + +[28444] +centroid = (0.60560877772990651, -1.3669771258128491) +station = ('keyf', 0.004129397356358048) +zone = ('ncz096', 0.0037637193083337704) + +[28445] +centroid = (0.60185878075236388, -1.3536130873704513) +station = ('knca', 0.0040681477344193043) +zone = ('ncz106', 0.0022113323402540744) + +[28447] +centroid = (0.60386737546872915, -1.3659531236874116) +station = ('keyf', 0.0045970897539318566) +zone = ('ncz096', 0.0043156567278502273) + +[28448] +centroid = (0.60199887833142163, -1.366892023558522) +station = ('keyf', 0.0042657743591285662) +zone = ('ncz096', 0.004131169590866875) + +[28449] +centroid = (0.59304212786286692, -1.3602004137530832) +station = ('ksut', 0.0022172963492714604) +zone = ('ncz110', 0.00070604120967721572) + +[28450] +centroid = (0.59907833162759683, -1.3703504807378113) +station = ('kcpc', 0.003018388327136007) +zone = ('ncz099', 0.0022635635725134374) + +[28451] +centroid = (0.59743522630989176, -1.3629224816143712) +station = ('kilm', 0.0028086618848216297) +zone = ('ncz107', 0.0029020684233553224) + +[28452] +centroid = (0.59327727607298808, -1.3708951107308962) +station = ('kcre', 0.0039332779608783541) +zone = ('ncz109', 0.004739712199666242) + +[28453] +centroid = (0.60888322484615809, -1.362687734829978) +station = ('kdpl', 0.0023999417518440263) +zone = ('ncz090', 0.0022247846720938208) + +[28454] +centroid = (0.60524747712145111, -1.3552633659913818) +station = ('koaj', 0.0027529233778617198) +zone = ('ncz098', 0.0032763614514436348) + +[28455] +centroid = (0.59535858120599139, -1.3723808920698264) +station = ('kcpc', 0.0030607872660011427) +zone = ('ncz099', 0.0027083067457657995) + +[28456] +centroid = (0.59994663293046402, -1.3663675521182976) +station = ('keyf', 0.0058020731460459657) +zone = ('ncz109', 0.0047060346229409918) + +[28457] +centroid = (0.60125891108845353, -1.3593782764089313) +station = ('kilm', 0.0031985532800902173) +zone = ('ncz105', 0.0015330485935631563) + +[28458] +centroid = (0.60763241718442385, -1.3629412613571226) +station = ('kdpl', 0.0035903017011580328) +zone = ('ncz090', 0.003098115626942486) + +[28460] +centroid = (0.60287260760826245, -1.3512076920486449) +station = ('knca', 0.0027935276461153436) +zone = ('ncz098', 0.0034168434641394089) + +[28461] +centroid = (0.59284007109536352, -1.362388149063873) +station = ('ksut', 0.00070188691251235407) +zone = ('ncz110', 0.0012966931053636293) + +[28462] +centroid = (0.59387569711361943, -1.3664111678963049) +station = ('ksut', 0.0035442013447339812) +zone = ('ncz109', 0.0015139442830215998) + +[28463] +centroid = (0.59524043986892394, -1.3750120108237929) +station = ('kcpc', 0.0030895415519318248) +zone = ('ncz099', 0.0033544788848590269) + +[28464] +centroid = (0.60696687078076084, -1.3616591075820224) +station = ('kdpl', 0.0039316412993004278) +zone = ('ncz090', 0.0030385126946918558) + +[28465] +centroid = (0.59188158863004592, -1.3631466167969122) +station = ('ksut', 0.00049889093602053776) +zone = ('ncz110', 0.0020296418358512992) + +[28466] +centroid = (0.60634925111835758, -1.3591865170840147) +station = ('koaj', 0.0040452119555844943) +zone = ('ncz090', 0.0035063399070352605) + +[28467] +centroid = (0.59200946890433948, -1.3717190632174701) +station = ('kcre', 0.0025308433744244321) +zone = ('scz054', 0.0049889305789823967) + +[28468] +centroid = (0.59166003653479771, -1.3704174664745028) +station = ('kcre', 0.0032081976940799522) +zone = ('ncz109', 0.0053201541478897782) + +[28469] +centroid = (0.59212596963191011, -1.3695145552925687) +station = ('kcre', 0.0040878023899256948) +zone = ('ncz109', 0.0044570201229489469) + +[28470] +centroid = (0.59278530266343599, -1.3683975969311699) +station = ('ksut', 0.0047977562206764713) +zone = ('ncz109', 0.0033407304914381351) + +[28472] +centroid = (0.59862290541258145, -1.3733986982764195) +station = ('kcpc', 0.00057713276995668701) +zone = ('ncz099', 0.00076621134185778366) + +[28478] +centroid = (0.60460755215120743, -1.3620702722472073) +station = ('kdpl', 0.0063149341083811933) +zone = ('ncz105', 0.0025638934261343537) + +[28479] +centroid = (0.59516928279532011, -1.3616449878683736) +station = ('ksut', 0.0031098076637474195) +zone = ('ncz110', 0.0026613549368809304) + +[28480] +centroid = (0.59735174721176898, -1.3578196275737304) +station = ('kilm', 0.0016444858431310546) +zone = ('ncz107', 0.0017537496713402043) + +[28501] +centroid = (0.61510504437683744, -1.3529209246956952) +station = ('kiso', 0.0021259948615657783) +zone = ('ncz091', 0.0017821118454383585) + +[28504] +centroid = (0.61478460192617146, -1.354984060951185) +station = ('kiso', 0.001916031713551741) +zone = ('ncz091', 0.00027453123990206258) + +[28508] +centroid = (0.61260477295689308, -1.3582987902665726) +station = ('kdpl', 0.0028373142875996872) +zone = ('ncz090', 0.0032428074370026475) + +[28510] +centroid = (0.61064902681027822, -1.3404907246695765) +station = ('knkt', 0.0019110747998091736) +zone = ('ncz094', 0.0027881067491900579) + +[28511] +centroid = (0.60913938682047331, -1.3324849342972638) +station = ('knbt', 0.0026567111366306256) +zone = ('ncz095', 0.0048039027579808678) + +[28512] +centroid = (0.60584132539944213, -1.3402979530536936) +station = ('kmrh', 0.0020902812199280665) +zone = ('ncz095', 0.0027426149630752432) + +[28513] +centroid = (0.61857095411203289, -1.3506902891918913) +station = ('kpgv', 0.0033517768988808407) +zone = ('ncz044', 0.0026603142920198241) + +[28515] +centroid = (0.61407783084557632, -1.3386568374113361) +station = ('knbt', 0.0044248481251766237) +zone = ('ncz094', 0.0010334418154773833) + +[28516] +centroid = (0.60917755717121436, -1.3360579199820688) +station = ('knbt', 0.0023134372735086409) +zone = ('ncz095', 0.0021171101722300546) + +[28518] +centroid = (0.60902955325064534, -1.3569497380212439) +station = ('koaj', 0.0021591203275185497) +zone = ('ncz090', 0.0027568913619874691) + +[28519] +centroid = (0.61295483364496561, -1.3443743091480667) +station = ('kewn', 0.00095626341194442893) +zone = ('ncz093', 0.0010045970760332555) + +[28520] +centroid = (0.61072444248725699, -1.3320928286275104) +station = ('knbt', 0.0020946002237814394) +zone = ('ncz095', 0.0056960827857919019) + +[28521] +centroid = (0.60768702853671863, -1.3567599334650895) +station = ('koaj', 0.0017395547636882872) +zone = ('ncz090', 0.0034950421064451958) + +[28523] +centroid = (0.61454639938985922, -1.3488954100424326) +station = ('kewn', 0.0042285802886130319) +zone = ('ncz093', 0.003076719646853676) + +[28524] +centroid = (0.60721636559733339, -1.3346281811654201) +station = ('kmrh', 0.0027890150577546732) +zone = ('ncz095', 0.0029868889849119697) + +[28525] +centroid = (0.61305555659609812, -1.3559692644073509) +station = ('kiso', 0.0037803432120609632) +zone = ('ncz091', 0.0021090676820664086) + +[28526] +centroid = (0.61558106547702651, -1.3501271587087353) +station = ('kiso', 0.0038649681344863906) +zone = ('ncz092', 0.0043283920352785357) + +[28527] +centroid = (0.61539372183511731, -1.344434872073111) +station = ('kewn', 0.0033589283190060722) +zone = ('ncz093', 0.0025116063178875639) + +[28528] +centroid = (0.60618876809363675, -1.3358516569710681) +station = ('kmrh', 0.0015971258769432162) +zone = ('ncz095', 0.0025822235080566742) + +[28529] +centroid = (0.61209616655956933, -1.3413686078300371) +station = ('knkt', 0.0030380078926275887) +zone = ('ncz094', 0.0019476464011954793) + +[28530] +centroid = (0.61740617372912954, -1.3511518240592886) +station = ('kiso', 0.0029562663714201983) +zone = ('ncz044', 0.0038607331773149265) + +[28531] +centroid = (0.60560724184016479, -1.336197197256378) +station = ('kmrh', 0.0014454127791401965) +zone = ('ncz095', 0.0028383547863655954) + +[28532] +centroid = (0.60903857660287808, -1.3419936276884687) +station = ('knkt', 0.00014574297728744704) +zone = ('ncz095', 0.00333308908762284) + +[28533] +centroid = (0.60916998244226073, -1.3421839034835212) +station = ('knkt', 0.00030851576719826611) +zone = ('ncz095', 0.0035242894780732783) + +[28537] +centroid = (0.6149234079615824, -1.3356500888957554) +station = ('knbt', 0.0038648370420407982) +zone = ('ncz094', 0.0035437846413445993) + +[28538] +centroid = (0.61813706525998713, -1.3537659782129259) +station = ('kiso', 0.0016288995395996463) +zone = ('ncz079', 0.0019750622353873495) + +[28539] +centroid = (0.60557299848024049, -1.3476259797175796) +station = ('knjm', 0.0025827533356723724) +zone = ('ncz098', 0.0032476745410176828) + +[28540] +centroid = (0.60658195586752606, -1.3527597958991511) +station = ('knca', 0.0012594522070116883) +zone = ('ncz098', 0.0010921559056557601) + +[28543] +centroid = (0.60623119704775275, -1.3504783189542364) +station = ('knca', 0.0012115693903416906) +zone = ('ncz098', 0.00082616479892055298) + +[28544] +centroid = (0.60594471870433031, -1.3492910761838599) +station = ('knca', 0.0020519339847012751) +zone = ('ncz098', 0.0018317602748310362) + +[28546] +centroid = (0.60735667261590121, -1.3501198457791694) +station = ('knca', 0.0021896550896913242) +zone = ('ncz098', 0.0015512965181162068) + +[28547] +centroid = (0.60508863470622709, -1.3503083587916773) +station = ('knca', 0.0013085290493572992) +zone = ('ncz098', 0.0015344986613935062) + +[28551] +centroid = (0.61647338251040107, -1.3575320322195865) +station = ('kgsb', 0.0026541368172400114) +zone = ('ncz091', 0.00244662788232387) + +[28552] +centroid = (0.61611749242262692, -1.3359880369988189) +station = ('knbt', 0.0050903858602202997) +zone = ('ncz094', 0.0040167828384259216) + +[28553] +centroid = (0.60614586790062264, -1.335392879723889) +station = ('kmrh', 0.0019751070170275341) +zone = ('ncz095', 0.0028963688762126522) + +[28554] +centroid = (0.61921630705625041, -1.354133282754008) +station = ('kiso', 0.0025702990635992876) +zone = ('ncz079', 0.0012770754402099908) + +[28555] +centroid = (0.60861702722864386, -1.3478300436137232) +station = ('knjm', 0.0040586789722211972) +zone = ('ncz092', 0.0032301323257672792) + +[28556] +centroid = (0.61285494845187394, -1.3373687146101942) +station = ('knbt', 0.0028354504721763586) +zone = ('ncz094', 0.0018181715817236165) + +[28557] +centroid = (0.60630923071860932, -1.3395267967769928) +station = ('kmrh', 0.0014266535131995535) +zone = ('ncz095', 0.0019859302290123914) + +[28560] +centroid = (0.6130617176083577, -1.3435052573536213) +station = ('kewn', 0.0014274024492300131) +zone = ('ncz093', 0.001708981226021722) + +[28562] +centroid = (0.61228996791971091, -1.3461182246833667) +station = ('kewn', 0.0011644250420759677) +zone = ('ncz093', 0.00088797453761632356) + +[28570] +centroid = (0.60705200794167302, -1.3414172850628754) +station = ('knkt', 0.0020563471116377594) +zone = ('ncz095', 0.0028227197584095951) + +[28571] +centroid = (0.61206030004344092, -1.3385218711002793) +station = ('knbt', 0.003339672011604203) +zone = ('ncz094', 0.0015008745230093332) + +[28572] +centroid = (0.61135209779285915, -1.3567564253532929) +station = ('kdpl', 0.0035393564305883506) +zone = ('ncz090', 0.0032359104387552446) + +[28573] +centroid = (0.61060466054069262, -1.3465013070008871) +station = ('kewn', 0.0020443079271486283) +zone = ('ncz093', 0.0025725453321224648) + +[28574] +centroid = (0.60875218552591837, -1.3541937758658822) +station = ('koaj', 0.00088529607184333189) +zone = ('ncz098', 0.0033256973584523835) + +[28575] +centroid = (0.60576816119719867, -1.3418714022809517) +station = ('knjm', 0.0021533823561319066) +zone = ('ncz095', 0.0037488454813219842) + +[28577] +centroid = (0.60850619882114232, -1.3329635908446231) +station = ('knbt', 0.002968301110755417) +zone = ('ncz095', 0.0042980994227039661) + +[28578] +centroid = (0.61430269906640322, -1.3588605070330346) +station = ('kgsb', 0.0028477043293279217) +zone = ('ncz091', 0.0031586138311403096) + +[28579] +centroid = (0.60666072257666848, -1.3353565419688624) +station = ('kmrh', 0.0020533848993443565) +zone = ('ncz095', 0.0026335543779022665) + +[28580] +centroid = (0.61877428496989029, -1.355768324650569) +station = ('kiso', 0.0022760482029938714) +zone = ('ncz079', 0.00056247259211354413) + +[28581] +centroid = (0.60814906954959913, -1.3340504946363025) +station = ('knbt', 0.0030400242797142219) +zone = ('ncz095', 0.0033759372059543719) + +[28582] +centroid = (0.60652633222426489, -1.3465979633348626) +station = ('knjm', 0.001954417567361776) +zone = ('ncz098', 0.0040204448850521398) + +[28583] +centroid = (0.61328810426563396, -1.3393781645378928) +station = ('knkt', 0.0046593839223774041) +zone = ('ncz094', 0.00011858121445563785) + +[28584] +centroid = (0.60627093819482059, -1.3452582311477392) +station = ('knjm', 0.00090299145197623434) +zone = ('ncz095', 0.006068497941574439) + +[28585] +centroid = (0.61220779781852697, -1.3511013491373212) +station = ('koaj', 0.0051587086850103476) +zone = ('ncz092', 0.0012543107157923961) + +[28586] +centroid = (0.61633609491143915, -1.3468268981728466) +station = ('kewn', 0.0046228631893457609) +zone = ('ncz093', 0.003419752294128589) + +[28587] +centroid = (0.61425026937567329, -1.3379985341240688) +station = ('knbt', 0.0041624789884507803) +zone = ('ncz094', 0.001550991499904474) + +[28589] +centroid = (0.60752190293618757, -1.3353667521449866) +station = ('kmrh', 0.002386762004637011) +zone = ('ncz095', 0.0023287571233201092) + +[28590] +centroid = (0.61995287090717699, -1.351175630350286) +station = ('kpgv', 0.0019802932128316028) +zone = ('ncz044', 0.0014030198913933323) + +[28594] +centroid = (0.60545304200075101, -1.3433744798327694) +station = ('knjm', 0.00093015322432474213) +zone = ('ncz095', 0.004958829005813104) + +[28601] +centroid = (0.62434603916737197, -1.4194179691966793) +station = ('khky', 0.00089275411442686745) +zone = ('ncz056', 0.0024904854759677003) + +[28602] +centroid = (0.62259599752639716, -1.4204827596667358) +station = ('khky', 0.00136059684406881) +zone = ('ncz056', 0.002462425488032187) + +[28604] +centroid = (0.63141998079875261, -1.4287018990868123) +station = ('ktnb', 0.0029638751419794381) +zone = ('ncz033', 0.0019805960933060424) + +[28605] +centroid = (0.63058103593390391, -1.4258454932329987) +station = ('ktnb', 0.0013817153439793269) +zone = ('ncz018', 0.0017746585791844581) + +[28606] +centroid = (0.62925205497497283, -1.4193396911797271) +station = ('kukf', 0.0044097071485447482) +zone = ('ncz035', 0.0030871533904341703) + +[28607] +centroid = (0.63212371500644915, -1.4251026985566424) +station = ('ktnb', 0.00031629162690233615) +zone = ('ncz018', 0.00066843294453835969) + +[28609] +centroid = (0.62258847515732108, -1.4146871669926859) +station = ('ksvh', 0.0021525422443946082) +zone = ('ncz056', 0.0022572116512294574) + +[28610] +centroid = (0.62361179660435051, -1.4160782118598179) +station = ('ksvh', 0.0026029177100524402) +zone = ('ncz056', 0.0016291152410786609) + +[28611] +centroid = (0.62850973153751466, -1.4265492972538654) +station = ('ktnb', 0.0035116438895528295) +zone = ('ncz501', 0.0013745756861234392) + +[28612] +centroid = (0.62221670257335382, -1.4230989034957202) +station = ('khky', 0.0027929827292439546) +zone = ('ncz504', 0.0021302498852436009) + +[28613] +centroid = (0.62374030519717472, -1.4173414113592411) +station = ('khky', 0.0024975068416111302) +zone = ('ncz056', 0.00131397094297081) + +[28615] +centroid = (0.63639875938286916, -1.4254166832890762) +station = ('kgev', 0.0035990320800948529) +zone = ('tnz018', 0.0025508278474986748) + +[28616] +centroid = (0.62872119562968631, -1.429777056812626) +station = ('ktnb', 0.0049040242325782213) +zone = ('ncz033', 0.00093477716514082118) + +[28617] +centroid = (0.63670836333888048, -1.4200344194884835) +station = ('kgev', 0.0011282051510284853) +zone = ('ncz001', 0.0021108945796916054) + +[28618] +centroid = (0.63195192224817531, -1.4227365382364212) +station = ('ktnb', 0.0018813421981875953) +zone = ('ncz018', 0.0025678321302672227) + +[28619] +centroid = (0.62410535826352187, -1.4242321981389174) +station = ('khky', 0.0031077924186774779) +zone = ('ncz504', 0.0011720268270760498) + +[28621] +centroid = (0.63312953080108103, -1.4122266018132243) +station = ('kukf', 0.0025882552968295646) +zone = ('ncz019', 0.0037094083089604679) + +[28622] +centroid = (0.63168136130753116, -1.4302507740782024) +station = ('ktnb', 0.0041898166338397358) +zone = ('ncz033', 0.0020561671391645842) + +[28623] +centroid = (0.63764431360355489, -1.4132176172157993) +station = ('khlx', 0.0045976506733182666) +zone = ('ncz002', 0.0023283196700828058) + +[28624] +centroid = (0.63054796194457874, -1.4208761394268428) +station = ('ktnb', 0.0036065596694544143) +zone = ('ncz501', 0.0036720759791580571) + +[28625] +centroid = (0.62602658179753223, -1.4118017886732888) +station = ('ksvh', 0.0020346222408050589) +zone = ('ncz036', 0.0010987048905105317) + +[28626] +centroid = (0.63342443908479051, -1.4227539740756485) +station = ('ktnb', 0.0024640983742832095) +zone = ('ncz001', 0.0024905079519630504) + +[28627] +centroid = (0.63632521120819008, -1.4137823708551596) +station = ('kukf', 0.0043707261531060687) +zone = ('ncz002', 0.0018429085592302542) + +[28628] +centroid = (0.6235420707007332, -1.4274193962458619) +station = ('kfqd', 0.0056194186192551291) +zone = ('ncz504', 0.0017109406892032403) + +[28629] +centroid = (0.6343584694872878, -1.4200928531118402) +station = ('kgev', 0.0016853186539946029) +zone = ('ncz001', 0.002453843168047374) + +[28630] +centroid = (0.6253020607184443, -1.4210759970794886) +station = ('khky', 0.0014520343198271566) +zone = ('ncz502', 0.001557954225584102) + +[28631] +centroid = (0.63787584898212446, -1.4208773262507342) +station = ('kgev', 0.001996241157952495) +zone = ('ncz001', 0.0023473057447633296) + +[28634] +centroid = (0.62784552903737567, -1.40947484590136) +station = ('ksvh', 0.0045944509070146673) +zone = ('ncz036', 0.0033292113987121764) + +[28635] +centroid = (0.63364986581097815, -1.4159165943710832) +station = ('kukf', 0.0016622721547236629) +zone = ('ncz019', 0.0018071173023917644) + +[28636] +centroid = (0.62726131497685556, -1.4148238088198246) +station = ('ksvh', 0.003394038379042954) +zone = ('ncz035', 0.0016393162718742961) + +[28637] +centroid = (0.62339678949379718, -1.4210359243198627) +station = ('khky', 0.00075654528533884388) +zone = ('ncz502', 0.0033225799448622808) + +[28638] +centroid = (0.6256148935335718, -1.4220582858358035) +station = ('khky', 0.0021326320956471731) +zone = ('ncz502', 0.00098207556326322405) + +[28640] +centroid = (0.63535355150701989, -1.4207444717880724) +station = ('kgev', 0.00056351441460186129) +zone = ('ncz001', 0.0014866726457212294) + +[28642] +centroid = (0.63213029489772921, -1.4105805468890833) +station = ('kukf', 0.0037037148761658403) +zone = ('ncz020', 0.0024059938183152397) + +[28643] +centroid = (0.63745723176103364, -1.4230408712980915) +station = ('kgev', 0.0022814191568942895) +zone = ('ncz001', 0.001622009538010463) + +[28644] +centroid = (0.63575756032227149, -1.4185682905569306) +station = ('kgev', 0.0019515334903629233) +zone = ('ncz002', 0.0023863574223564115) + +[28645] +centroid = (0.62795597347244192, -1.4232668216230546) +station = ('ktnb', 0.0041170583927939326) +zone = ('ncz501', 0.0015923401847924683) + +[28646] +centroid = (0.62959839811173868, -1.4285012560360033) +station = ('ktnb', 0.0035504312158093215) +zone = ('ncz033', 0.0010638548979376825) + +[28647] +centroid = (0.62723789265829388, -1.4306986255642642) +station = ('ktnb', 0.0064544454352777891) +zone = ('ncz503', 0.0017909458050937408) + +[28649] +centroid = (0.63414517279940152, -1.4173724258600491) +station = ('kukf', 0.0027077254315104981) +zone = ('ncz019', 0.0023135353799801331) + +[28650] +centroid = (0.62084527520701427, -1.4163454043150057) +station = ('kipj', 0.0015566690233604964) +zone = ('ncz069', 0.0018210810529292647) + +[28651] +centroid = (0.6336629732336605, -1.4191059741395926) +station = ('kgev', 0.002687210813733301) +zone = ('ncz019', 0.0026818566842704314) + +[28652] +centroid = (0.63006441847531358, -1.4309460608923195) +station = ('ktnb', 0.0050619675608164424) +zone = ('ncz033', 0.0010008924785436242) + +[28654] +centroid = (0.62933368402408862, -1.4164967243611535) +station = ('kukf', 0.0029663130276022932) +zone = ('ncz035', 0.0024055602290243916) + +[28655] +centroid = (0.6240936296509485, -1.4266557972448219) +station = ('khky', 0.0050728948797512056) +zone = ('ncz504', 0.0013155662879797492) + +[28657] +centroid = (0.62878053682425405, -1.4301812925206805) +station = ('ktnb', 0.005126465923331611) +zone = ('ncz033', 0.00092351854416856125) + +[28658] +centroid = (0.62199378912128911, -1.4178329309831881) +station = ('khky', 0.0028666801005931674) +zone = ('ncz056', 0.00053158383478526562) + +[28659] +centroid = (0.63206831825599086, -1.4162436167130295) +station = ('kukf', 0.00086585845830425994) +zone = ('ncz019', 0.00030487438494187721) + +[28660] +centroid = (0.62777075913222025, -1.4112077484090799) +station = ('ksvh', 0.0038225605633349967) +zone = ('ncz036', 0.0028278874046003891) + +[28662] +centroid = (0.62869405575981774, -1.4294093159392307) +station = ('ktnb', 0.0046949646112679289) +zone = ('ncz033', 0.0010159692569459936) + +[28663] +centroid = (0.63760420593734402, -1.4191168824474176) +station = ('kgev', 0.0022875365392698087) +zone = ('vaz015', 0.0024750680030125767) + +[28665] +centroid = (0.63198082490058838, -1.42026995167104) +station = ('kgev', 0.0039435739647624198) +zone = ('ncz019', 0.0029814970768355913) + +[28666] +centroid = (0.62352348294419957, -1.4219311735063807) +station = ('khky', 0.0013102416227198) +zone = ('ncz502', 0.0030757915106574309) + +[28667] +centroid = (0.62432963307240319, -1.4211544845359507) +station = ('khky', 0.00071273074481547044) +zone = ('ncz502', 0.0024040633128667808) + +[28668] +centroid = (0.63542296325137171, -1.4135506260370798) +station = ('kukf', 0.0035702549061735044) +zone = ('ncz002', 0.0024355784203191492) + +[28669] +centroid = (0.63221977792847905, -1.413596091864094) +station = ('kukf', 0.0012762966306811287) +zone = ('ncz019', 0.0024221331824299695) + +[28670] +centroid = (0.63170476617280047, -1.412229080180762) +station = ('kukf', 0.0024066477782099705) +zone = ('ncz019', 0.0035141709492337503) + +[28671] +centroid = (0.62400180787900106, -1.4229302523300997) +station = ('khky', 0.0020482018415813124) +zone = ('ncz504', 0.0020544546401437269) + +[28672] +centroid = (0.63675833211536503, -1.4194997029655501) +station = ('kgev', 0.0014843194800744082) +zone = ('ncz001', 0.0025302413847440326) + +[28673] +centroid = (0.62167380045622844, -1.41362750779063) +station = ('ksvh', 0.0026050225378936739) +zone = ('ncz036', 0.003702837676691887) + +[28675] +centroid = (0.63709245794736691, -1.4161116698215785) +station = ('kgev', 0.0041048577967488517) +zone = ('ncz002', 0.00023001427160091462) + +[28676] +centroid = (0.63411117378557269, -1.4111843959036885) +station = ('kukf', 0.0037914162938543867) +zone = ('ncz003', 0.0027535878156179365) + +[28677] +centroid = (0.62372363730281821, -1.4123725986051536) +station = ('ksvh', 0.0006897642472067446) +zone = ('ncz036', 0.0014148458127682681) + +[28678] +centroid = (0.62522723845341133, -1.4147568405364255) +station = ('ksvh', 0.0017703326700724571) +zone = ('ncz035', 0.0023885164878435401) + +[28679] +centroid = (0.63287869208098435, -1.4281734308426013) +station = ('ktnb', 0.0027286839697424591) +zone = ('ncz018', 0.0019222740656707877) + +[28681] +centroid = (0.62696328255378508, -1.4176281864086366) +station = ('khky', 0.0037581802262882783) +zone = ('ncz035', 0.00066341359403037617) + +[28682] +centroid = (0.6211322247893345, -1.4131084992309644) +station = ('ksvh', 0.0030919721099805426) +zone = ('ncz036', 0.0040356351709024702) + +[28683] +centroid = (0.63513384946077878, -1.4121648346109961) +station = ('kukf', 0.0038824585241133227) +zone = ('ncz003', 0.0031596115232263695) + +[28684] +centroid = (0.6341849837596395, -1.4243374065862278) +station = ('ktnb', 0.0024464408751049783) +zone = ('ncz018', 0.0022120398235482195) + +[28685] +centroid = (0.63461553903281398, -1.4147609595134603) +station = ('kukf', 0.0025370960659863435) +zone = ('ncz002', 0.0024772759765782602) + +[28689] +centroid = (0.62895653582602518, -1.4126851347143081) +station = ('kukf', 0.0037301258679231699) +zone = ('ncz035', 0.0038986494748577362) + +[28690] +centroid = (0.62365391139920101, -1.4237388808258415) +station = ('khky', 0.0027209935438824756) +zone = ('ncz504', 0.0013264676936206199) + +[28692] +centroid = (0.63298770534606397, -1.4278275938513183) +station = ('ktnb', 0.0025234086326802714) +zone = ('ncz018', 0.0016931881469862318) + +[28693] +centroid = (0.63658900027133658, -1.4235718877230106) +station = ('kgev', 0.0021947179982779561) +zone = ('ncz001', 0.0011261756660288188) + +[28694] +centroid = (0.63473184777416691, -1.4216732487495212) +station = ('kgev', 0.0012749096724740275) +zone = ('ncz001', 0.0013323353971004021) + +[28697] +centroid = (0.63065741154197119, -1.4166090712051045) +station = ('kukf', 0.0018516375254085363) +zone = ('ncz019', 0.0012655135466189999) + +[28698] +centroid = (0.63426825341825221, -1.4265665934667526) +station = ('ktnb', 0.0027422247310044563) +zone = ('ncz018', 0.0019912576752920894) + +[28701] +centroid = (0.62317424256087539, -1.4423418217240735) +station = ('kavl', 0.0049820754916785294) +zone = ('ncz053', 0.0022635211397967828) + +[28702] +centroid = (0.61795808174519518, -1.4591888915816291) +station = ('k1a5', 0.0042646539032456061) +zone = ('ncz051', 0.0021285769878122834) + +[28704] +centroid = (0.61884402832679997, -1.4412849026889432) +station = ('kavl', 0.00077748760180046243) +zone = ('ncz065', 0.002542827125071583) + +[28705] +centroid = (0.62890398396224756, -1.433905406265416) +station = ('k0a9', 0.0058752391411281491) +zone = ('ncz050', 0.00036566128804732832) + +[28707] +centroid = (0.61779995491496431, -1.4497729624401672) +station = ('k1a5', 0.0059081551648708227) +zone = ('ncz059', 0.0016968524311458102) + +[28708] +centroid = (0.61560059571135628, -1.4462255458289037) +station = ('kavl', 0.0054742975007781832) +zone = ('ncz064', 0.0015152175042287262) + +[28709] +centroid = (0.62433418838175092, -1.437826951655137) +station = ('kavl', 0.0062870287234379676) +zone = ('ncz049', 0.0024532552745521966) + +[28711] +centroid = (0.62141055244515009, -1.4362955648628519) +station = ('kavl', 0.0045259682757976191) +zone = ('ncz507', 0.0028190652188957079) + +[28712] +centroid = (0.61387964870901235, -1.444635760319847) +station = ('kavl', 0.0056746673183863177) +zone = ('ncz064', 0.00064081723119787455) + +[28713] +centroid = (0.61731358401231118, -1.4573473772345573) +station = ('k1a5', 0.0029182441696788968) +zone = ('ncz051', 0.002048699559762549) + +[28714] +centroid = (0.62639001170767505, -1.4364754384955625) +station = ('k0a9', 0.0085962804741251241) +zone = ('ncz049', 0.00017179285349250203) + +[28715] +centroid = (0.6198007305562806, -1.4435915123750864) +station = ('kavl', 0.0028829083725565334) +zone = ('ncz053', 0.0031049066592767727) + +[28716] +centroid = (0.61853280121458432, -1.4459696631072689) +station = ('kavl', 0.004475273551429868) +zone = ('ncz052', 0.0027915595108093847) + +[28717] +centroid = (0.61172640110424181, -1.4502533817700711) +station = ('k1a5', 0.0054607294777928202) +zone = ('ncz063', 0.0019652717120721857) + +[28718] +centroid = (0.61367771411455663, -1.4422274677514826) +station = ('kavl', 0.0049604609980526022) +zone = ('ncz064', 0.0024570305491553933) + +[28719] +centroid = (0.61990401914141369, -1.4544554364771727) +station = ('k1a5', 0.0053867877820338809) +zone = ('ncz051', 0.0023174751836204039) + +[28720] +centroid = (0.61873237961454997, -1.4355970840962038) +station = ('kfqd', 0.0045480224447762511) +zone = ('ncz507', 0.00089741607881138542) + +[28721] +centroid = (0.62243113372525383, -1.447898810436083) +station = ('kavl', 0.0072438292779305798) +zone = ('ncz052', 0.0018902973972950395) + +[28722] +centroid = (0.61450358646330772, -1.4322348469185771) +station = ('kfqd', 0.0042363447911954099) +zone = ('ncz510', 0.0016082553195517597) + +[28723] +centroid = (0.61634918488082924, -1.4490792987822545) +station = ('k1a5', 0.0058198708817594506) +zone = ('ncz059', 0.0023264307121453861) + +[28725] +centroid = (0.61726440063398991, -1.4530752999178658) +station = ('k1a5', 0.003485775071211446) +zone = ('ncz059', 0.0011010592807538348) + +[28726] +centroid = (0.61577235356304505, -1.438456317383406) +station = ('kavl', 0.0031263185779442566) +zone = ('ncz065', 0.0013089652670866335) + +[28729] +centroid = (0.61645907081053475, -1.4416485245853037) +station = ('kavl', 0.0021882025053584497) +zone = ('ncz065', 0.0017372316024687961) + +[28730] +centroid = (0.6198958160939293, -1.4377678548066644) +station = ('kavl', 0.0026506673741515442) +zone = ('ncz053', 0.0027105168072329069) + +[28731] +centroid = (0.61589241476228973, -1.4380582601409035) +station = ('kavl', 0.0032134607640701318) +zone = ('ncz065', 0.0014765263928475905) + +[28732] +centroid = (0.61876398752730344, -1.4389503851880607) +station = ('kavl', 0.001289328790163738) +zone = ('ncz065', 0.0020881502562446917) + +[28733] +centroid = (0.61835448092490808, -1.4628599473171038) +station = ('krhp', 0.0041424349392353999) +zone = ('ncz058', 0.0014001930391623447) + +[28734] +centroid = (0.61416741859608104, -1.4558148908848436) +station = ('k1a5', 0.00048386861439999544) +zone = ('ncz062', 0.00069222124398700955) + +[28735] +centroid = (0.6191712601082564, -1.4372869642378623) +station = ('kavl', 0.0027037446432480283) +zone = ('ncz507', 0.0022464823870934213) + +[28736] +centroid = (0.61393057741658552, -1.4501333380241188) +station = ('k1a5', 0.0047628862046327821) +zone = ('ncz063', 0.00026572987523418615) + +[28739] +centroid = (0.61541126239409993, -1.4408228442227702) +station = ('kavl', 0.0030301213999708067) +zone = ('ncz065', 0.001683259535747922) + +[28740] +centroid = (0.62991142291308377, -1.4359333566831856) +station = ('k0a9', 0.0050760294695643433) +zone = ('ncz050', 0.002059119545229646) + +[28741] +centroid = (0.61191014936789179, -1.4523611111879497) +station = ('k1a5', 0.0039803172458648247) +zone = ('ncz063', 0.0026105144348105539) + +[28742] +centroid = (0.61754443871247233, -1.4425325687580237) +station = ('kavl', 0.0018932332814609535) +zone = ('ncz065', 0.0025673950501897093) + +[28743] +centroid = (0.62483413794598464, -1.4465488506195432) +station = ('kavl', 0.0080862089908604242) +zone = ('tnz041', 0.0028271643247635495) + +[28745] +centroid = (0.62003313859947617, -1.4481353898161911) +station = ('kavl', 0.0064384732800214697) +zone = ('ncz052', 0.00055687091459915433) + +[28746] +centroid = (0.61891755904818646, -1.4341034836822246) +station = ('kfqd', 0.0033638296573625086) +zone = ('ncz507', 0.0003599316119666615) + +[28747] +centroid = (0.61357369249113769, -1.447273406605216) +station = ('klqk', 0.0068141995314488684) +zone = ('ncz064', 0.0019546389173842075) + +[28748] +centroid = (0.62220226870043971, -1.4443946256303917) +station = ('kavl', 0.0049393346758595828) +zone = ('ncz052', 0.003578973693189776) + +[28749] +centroid = (0.62553860519196713, -1.4328901656928232) +station = ('kfqd', 0.0075622374669673774) +zone = ('ncz505', 0.0023149728996377946) + +[28751] +centroid = (0.6196795174397296, -1.4507296297630627) +station = ('k1a5', 0.0065632775119523852) +zone = ('ncz052', 0.0021595811919426252) + +[28752] +centroid = (0.62326693699744884, -1.4317964376637686) +station = ('kfqd', 0.0051298949989207806) +zone = ('ncz505', 0.00098590813751804054) + +[28753] +centroid = (0.62594627919864798, -1.443609489266382) +station = ('kavl', 0.0079368184747579968) +zone = ('ncz048', 0.00014416662385458281) + +[28754] +centroid = (0.62614700951591973, -1.4401703179753271) +station = ('kavl', 0.0077227363735869504) +zone = ('ncz049', 0.0029703158884823817) + +[28756] +centroid = (0.61700747071480377, -1.4344209765264551) +station = ('kfqd', 0.0038157712194372344) +zone = ('ncz510', 0.0014843945988409935) + +[28757] +centroid = (0.62220544519967846, -1.4365554967483516) +station = ('kavl', 0.0049452750254309098) +zone = ('ncz505', 0.0030556941790621218) + +[28759] +centroid = (0.61752300606925792, -1.4414423313874731) +station = ('kavl', 0.0011986894296492012) +zone = ('ncz065', 0.0017367479333043755) + +[28761] +centroid = (0.62282650316070809, -1.4296086150865162) +station = ('kfqd', 0.0044988637435335061) +zone = ('ncz506', 0.0010458395485888027) + +[28762] +centroid = (0.62180478741659062, -1.4352118724769962) +station = ('kfqd', 0.0054538204305779577) +zone = ('ncz505', 0.0022847470081066683) + +[28763] +centroid = (0.61136354715275221, -1.4567698303317798) +station = ('k1a5', 0.0033602209615229959) +zone = ('ncz062', 0.0022202597088049484) + +[28766] +centroid = (0.61524673020551446, -1.4419879736715242) +station = ('kavl', 0.0034115766673983765) +zone = ('ncz065', 0.0024864234212057805) + +[28768] +centroid = (0.61655225393929869, -1.4435220482708571) +station = ('kavl', 0.0031109345863766574) +zone = ('ncz064', 0.0025145519939113736) + +[28771] +centroid = (0.61692187976828605, -1.4633331584371971) +station = ('krhp', 0.0026697479212533289) +zone = ('ncz058', 0.0001437391174601376) + +[28772] +centroid = (0.61290668001090298, -1.4456076469138202) +station = ('klqk', 0.0056581379957093428) +zone = ('ncz064', 0.0015437767836196466) + +[28773] +centroid = (0.61549784817829134, -1.4365754109551168) +station = ('kavl', 0.0043268917749618675) +zone = ('ncz509', 0.00042498784211311333) + +[28774] +centroid = (0.61249766210069811, -1.4485370773435375) +station = ('k1a5', 0.0063885355341024358) +zone = ('ncz063', 0.0016940342351888854) + +[28775] +centroid = (0.61123898300403745, -1.4542584237112075) +station = ('k1a5', 0.0036614421306609257) +zone = ('ncz062', 0.0026601625163361867) + +[28777] +centroid = (0.62665065917816776, -1.4323659385986942) +station = ('ktnb', 0.0078413446040255935) +zone = ('ncz050', 0.0023252035585597975) + +[28778] +centroid = (0.6218454710414546, -1.4382419909512612) +station = ('kavl', 0.0038715906680157402) +zone = ('ncz053', 0.0018008903111009509) + +[28779] +centroid = (0.61706426372866385, -1.4523138127652204) +station = ('k1a5', 0.0037936647258293792) +zone = ('ncz059', 0.00050207789564168611) + +[28781] +centroid = (0.61478905251576399, -1.459716714054017) +station = ('k1a5', 0.003124940231614783) +zone = ('ncz062', 0.0033108735995694065) + +[28782] +centroid = (0.61494861051598138, -1.4337427590324225) +station = ('kfqd', 0.004544889519667669) +zone = ('ncz510', 0.00078003481178198818) + +[28783] +centroid = (0.61544053156565581, -1.4488050028370112) +station = ('k1a5', 0.0058452773210926224) +zone = ('ncz063', 0.002018312128148922) + +[28785] +centroid = (0.62226759637434192, -1.4510627083975134) +station = ('k1a5', 0.0085779611714080495) +zone = ('ncz052', 0.0028067725742240341) + +[28786] +centroid = (0.61892974144636548, -1.4484317292698872) +station = ('k1a5', 0.0074440032647890208) +zone = ('ncz052', 0.0016441345560160975) + +[28787] +centroid = (0.62380315450353907, -1.4401669843964557) +station = ('kavl', 0.0053807863012144365) +zone = ('ncz053', 0.0022800222442001428) + +[28789] +centroid = (0.61796972309130593, -1.4541520807998836) +station = ('k1a5', 0.0036146704316377416) +zone = ('ncz059', 0.0021167520586862967) + +[28790] +centroid = (0.61461127327815579, -1.4401467211238401) +station = ('kavl', 0.0038266396442628338) +zone = ('ncz065', 0.0021777345409320723) + +[28791] +centroid = (0.61708051274399978, -1.4400397498939854) +station = ('kavl', 0.0013944475857993719) +zone = ('ncz065', 0.00053202973000951199) + +[28792] +centroid = (0.61755546919334503, -1.4376137771402984) +station = ('kavl', 0.0024926247566101371) +zone = ('ncz065', 0.0017773762956270352) + +[28801] +centroid = (0.62123856770065855, -1.4409074752381994) +station = ('kavl', 0.002831854779418933) +zone = ('ncz053', 0.00049113520159124486) + +[28803] +centroid = (0.62014527600391678, -1.4402983553292534) +station = ('kavl', 0.0017231930913065359) +zone = ('ncz053', 0.0013911569212181397) + +[28804] +centroid = (0.62217216177084289, -1.4410201187881231) +station = ('kavl', 0.0037696896999844971) +zone = ('ncz053', 0.00080243839099026072) + +[28805] +centroid = (0.62177635600307557, -1.4396276427510046) +station = ('kavl', 0.0034188656446372777) +zone = ('ncz053', 0.00069149877127060329) + +[28806] +centroid = (0.62084801537393974, -1.4418990316928424) +station = ('kavl', 0.0026818629678394801) +zone = ('ncz053', 0.0013813265632306214) + +[28901] +centroid = (0.61432236892707315, -1.4627665372955372) +station = ('krhp', 0.00076154800461982841) +zone = ('ncz061', 0.0026044007894214238) + +[28902] +centroid = (0.61125418482182226, -1.46536397119494) +station = ('krhp', 0.0033088439072528207) +zone = ('ncz060', 0.0024526434811754047) + +[28904] +centroid = (0.61205897359320938, -1.4614246409001412) +station = ('krhp', 0.0028868027403448392) +zone = ('ncz061', 0.00030878397079686968) + +[28905] +centroid = (0.61372663569349006, -1.4650308925604896) +station = ('krhp', 0.0012181797456878062) +zone = ('ncz060', 0.0018376190338778053) + +[28906] +centroid = (0.61261294109779241, -1.4684954932987457) +station = ('krhp', 0.0042592743509906128) +zone = ('ncz060', 0.0012233594763801194) + +[28909] +centroid = (0.61089422811689098, -1.4644145469884402) +station = ('krhp', 0.0034252114472318111) +zone = ('ncz061', 0.0024124312632059866) + +[29001] +centroid = (0.58968818099918707, -1.3993014089579476) +station = ('kmni', 0.0036019740948338621) +zone = ('scz038', 0.0021968292990426535) + +[29003] +centroid = (0.58016875383308208, -1.4141323442767693) +station = ('kogb', 0.0046801074759687273) +zone = ('scz041', 0.00064112891041611894) + +[29006] +centroid = (0.59112732714050398, -1.4233348196507123) +station = ('kaik', 0.0043228061196555426) +zone = ('scz026', 0.0034926983584824406) + +[29009] +centroid = (0.60135842976240228, -1.4028285273900103) +station = ('khvs', 0.0038118542825567249) +zone = ('scz022', 0.0036939781395298756) + +[29010] +centroid = (0.59730975458996594, -1.4010232984380877) +station = ('khvs', 0.0037888417095998223) +zone = ('scz029', 0.0010802070562382512) + +[29014] +centroid = (0.60254668482374496, -1.4157153230017432) +station = ('kfdw', 0.0035505644647593824) +zone = ('scz021', 0.0022410103411265002) + +[29015] +centroid = (0.60104674886458098, -1.4194784623085532) +station = ('kfdw', 0.0036555148569287713) +zone = ('scz021', 0.0030975781238495423) + +[29016] +centroid = (0.59694646430616338, -1.4136643167845546) +station = ('kfdw', 0.0027115860202667937) +zone = ('scz028', 0.0034335168770138294) + +[29018] +centroid = (0.58204630922920741, -1.407419127295191) +station = ('kogb', 0.0036968780193052048) +zone = ('scz036', 0.0028268479644458595) + +[29020] +centroid = (0.5989385133012195, -1.4064140619921375) +station = ('kcdn', 0.00066111438756760287) +zone = ('scz022', 0.00040648009653768868) + +[29030] +centroid = (0.58601719507688232, -1.4075656825924807) +station = ('kogb', 0.003512481087625959) +zone = ('scz037', 0.0025837642106278109) + +[29031] +centroid = (0.60297802549508295, -1.4223143430903638) +station = ('keoe', 0.0046659222297176662) +zone = ('scz013', 0.0030629286866386933) + +[29032] +centroid = (0.59943532127279975, -1.4040305530991515) +station = ('kcdn', 0.0021301224542532625) +zone = ('scz022', 0.0020964458756141829) + +[29033] +centroid = (0.59259907603224826, -1.4147191937844601) +station = ('kcae', 0.00085956006170964812) +zone = ('scz028', 0.0025323336505901572) + +[29036] +centroid = (0.59575075668891453, -1.4196493125890308) +station = ('kfdw', 0.0045397342079272719) +zone = ('scz027', 0.0041626433472607494) + +[29037] +centroid = (0.59672697169943256, -1.4288607938619142) +station = ('keoe', 0.0038963325099665479) +zone = ('scz019', 0.0037815006749048019) + +[29038] +centroid = (0.58246250044263792, -1.4133939129235431) +station = ('kogb', 0.0025224859311921448) +zone = ('scz041', 0.0029535838208012491) + +[29039] +centroid = (0.58333127298440324, -1.4122335307703546) +station = ('kogb', 0.0012218988169388836) +zone = ('scz036', 0.0016958620485485051) + +[29040] +centroid = (0.59461264493698152, -1.4039511929780633) +station = ('ksms', 0.0016722957262699306) +zone = ('scz031', 0.0027931781235610883) + +[29042] +centroid = (0.58115399219583286, -1.416486496731737) +station = ('kbnl', 0.0034761884195468559) +zone = ('scz041', 0.0021031148268612103) + +[29044] +centroid = (0.59230411538866112, -1.4083471886716465) +station = ('kmmt', 0.0015970459042752372) +zone = ('scz028', 0.0033939168373725358) + +[29045] +centroid = (0.5966410142337718, -1.4103362531536816) +station = ('kcdn', 0.0037916057616983567) +zone = ('scz028', 0.0031734607643107145) + +[29046] +centroid = (0.59519795855493041, -1.3989448032851801) +station = ('ksms', 0.0034778394900220472) +zone = ('scz029', 0.0018043748114530726) + +[29047] +centroid = (0.58525628388289042, -1.4064883606583949) +station = ('kogb', 0.0040136152262132) +zone = ('scz036', 0.0035242189437794482) + +[29048] +centroid = (0.58277522853801034, -1.4014170796239225) +station = ('kmni', 0.0035538047119725081) +zone = ('scz038', 0.0049390261739583685) + +[29051] +centroid = (0.59099686377891747, -1.3984944210717027) +station = ('ksms', 0.0041396293285709809) +zone = ('scz038', 0.0036514377756862548) + +[29052] +centroid = (0.58989330954617392, -1.4091984904675989) +station = ('kmmt', 0.0022336116564226059) +zone = ('scz037', 0.0022287903523770048) + +[29053] +centroid = (0.5904012003585043, -1.4153046470287489) +station = ('kcae', 0.0021702206993165357) +zone = ('scz027', 0.0029321035320832084) + +[29054] +centroid = (0.5923988344071669, -1.4204027188672395) +station = ('kcae', 0.0038598698024857173) +zone = ('scz027', 0.0017493311270957998) + +[29055] +centroid = (0.60343439418789435, -1.4122308255100142) +station = ('klkr', 0.0027090548626125823) +zone = ('scz015', 0.0035928061561877156) + +[29056] +centroid = (0.58658196616953517, -1.3963638627472086) +station = ('kcki', 0.0029823955891567239) +zone = ('scz038', 0.0032191636491221594) + +[29058] +centroid = (0.60309930842480397, -1.4092213542808003) +station = ('klkr', 0.0032671871997295211) +zone = ('scz015', 0.0023602819519057561) + +[29059] +centroid = (0.5817187632884856, -1.4035677441414001) +station = ('kdyb', 0.0049687661934154801) +zone = ('scz044', 0.004376890119474613) + +[29061] +centroid = (0.59162286102173012, -1.4111092420260976) +station = ('kmmt', 0.00080578650416971375) +zone = ('scz028', 0.0022988125468540364) + +[29062] +centroid = (0.59348675048981248, -1.4068317367354322) +station = ('kssc', 0.0018862511565047866) +zone = ('scz031', 0.0035784717737056869) + +[29063] +centroid = (0.59589259959722407, -1.4173152837803389) +station = ('kfdw', 0.0033442358879355997) +zone = ('scz027', 0.0042950937939472706) + +[29065] +centroid = (0.59838857750720864, -1.4188930439708491) +station = ('kfdw', 0.0026176099532112403) +zone = ('scz021', 0.0031735432092759217) + +[29067] +centroid = (0.60290943405547948, -1.40563746028817) +station = ('kcdn', 0.0046348481448542818) +zone = ('scz015', 0.0034701020974035298) + +[29069] +centroid = (0.59655088543119883, -1.3979167345425854) +station = ('khvs', 0.0038596182637521022) +zone = ('scz029', 0.0023251236318262963) + +[29070] +centroid = (0.59194789368832912, -1.4216240304646148) +station = ('kcae', 0.0049069755814000722) +zone = ('scz027', 0.0026309285868289156) + +[29072] +centroid = (0.59344297763217257, -1.4184711455307646) +station = ('kcae', 0.0024285575709247962) +zone = ('scz027', 0.0017379666217801077) + +[29073] +centroid = (0.59153020149174185, -1.4178317267060041) +station = ('kcae', 0.0019984789023588232) +zone = ('scz027', 0.00055590226211748477) + +[29074] +centroid = (0.60112010505304247, -1.4105428128706552) +station = ('kcdn', 0.0045543265971316454) +zone = ('scz022', 0.0037404694019760273) + +[29075] +centroid = (0.59721910218861729, -1.4189364677626388) +station = ('kfdw', 0.0031355817978210789) +zone = ('scz021', 0.0040144305002438249) + +[29078] +centroid = (0.59664342278813953, -1.4085912904208302) +station = ('kcdn', 0.0025711310467937125) +zone = ('scz022', 0.0031611771070262492) + +[29079] +centroid = (0.59841261069100871, -1.3982481376609539) +station = ('khvs', 0.0019827204181181884) +zone = ('scz023', 0.0023875277003234268) + +[29080] +centroid = (0.59362424752828458, -1.3977570020094428) +station = ('ksms', 0.0039761321766165906) +zone = ('scz029', 0.0035944338074470907) + +[29081] +centroid = (0.57751339245580535, -1.414543508941954) +station = ('kbnl', 0.0057396657973319944) +zone = ('scz041', 0.0021947509378265092) + +[29082] +centroid = (0.57662563073177842, -1.4126545041859357) +station = ('krbw', 0.0051810049507848011) +zone = ('scz041', 0.0035094492752283974) + +[29101] +centroid = (0.60144475374720585, -1.4005893397728717) +station = ('khvs', 0.0021197852007945185) +zone = ('scz016', 0.0033846920478824635) + +[29102] +centroid = (0.58716337024995957, -1.399553015622915) +station = ('kmni', 0.0011025681179640395) +zone = ('scz038', 0.00058078754451297435) + +[29104] +centroid = (0.59342985275619753, -1.3999885799910428) +station = ('ksms', 0.00212074645525418) +zone = ('scz029', 0.0028937493829395539) + +[29105] +centroid = (0.59005038917885344, -1.4240776666869459) +station = ('kaik', 0.0030826820742548612) +zone = ('scz026', 0.0039690383625327853) + +[29107] +centroid = (0.58520582641421515, -1.4158866794277041) +station = ('kogb', 0.0041420748544610565) +zone = ('scz041', 0.0055941343582615452) + +[29108] +centroid = (0.59874434542193522, -1.4246658775514531) +station = ('keoe', 0.000198506195990944) +zone = ('scz020', 0.00047916456928821631) + +[29111] +centroid = (0.58972996418147972, -1.3963745616155232) +station = ('kcki', 0.0025691717647712865) +zone = ('scz038', 0.00373112035245935) + +[29112] +centroid = (0.58689200645785944, -1.4151121546655465) +station = ('kogb', 0.0043548121232962781) +zone = ('scz037', 0.0044364117820631238) + +[29113] +centroid = (0.5835058582694802, -1.4160787180053009) +station = ('kbnl', 0.0048913165691046702) +zone = ('scz041', 0.0039799373210074977) + +[29114] +centroid = (0.59264462912572524, -1.3950882714100958) +station = ('kcki', 0.0042903916466646933) +zone = ('scz032', 0.0035345770188417083) + +[29115] +centroid = (0.58429006960898633, -1.4110829922741477) +station = ('kogb', 0.00018700621066820725) +zone = ('scz036', 0.00097624252518814481) + +[29117] +centroid = (0.58465493068911578, -1.411078210071997) +station = ('kogb', 0.00055167246102771699) +zone = ('scz036', 0.0012525533316592877) + +[29118] +centroid = (0.58586426932782254, -1.4117215035276971) +station = ('kogb', 0.0018357129325597306) +zone = ('scz037', 0.0024208900729165393) + +[29122] +centroid = (0.59757909380013374, -1.4194454755856907) +station = ('kfdw', 0.0033210002028065196) +zone = ('scz020', 0.0040213594434086617) + +[29123] +centroid = (0.58930434819008837, -1.418454407823238) +station = ('kcae', 0.003936700142729818) +zone = ('scz027', 0.0024006900379259892) + +[29125] +centroid = (0.58818663933711124, -1.4043366663966588) +station = ('kmni', 0.0041177120862382196) +zone = ('scz038', 0.0036263440766687591) + +[29126] +centroid = (0.59915290954653455, -1.4210380361682577) +station = ('keoe', 0.0031958500264673267) +zone = ('scz020', 0.0026919694669920013) + +[29127] +centroid = (0.59608669766333844, -1.4226608607600546) +station = ('keoe', 0.0032971625678278106) +zone = ('scz020', 0.0026980121220752506) + +[29128] +centroid = (0.59508306353027163, -1.4054491567151723) +station = ('kssc', 0.0023370607930947051) +zone = ('scz031', 0.0037631322591430709) + +[29129] +centroid = (0.5896049637004519, -1.4255292919324147) +station = ('kaik', 0.0023096196751853522) +zone = ('scz026', 0.0039801547465386292) + +[29130] +centroid = (0.59919959710402548, -1.4116294897695321) +station = ('kfdw', 0.0034592875530846637) +zone = ('scz022', 0.0041830024334265047) + +[29133] +centroid = (0.58222283182975409, -1.4102806120571283) +station = ('kogb', 0.0020008303733242095) +zone = ('scz036', 0.0013984235603425033) + +[29135] +centroid = (0.58803949062787564, -1.4100014291899792) +station = ('kmmt', 0.003922456653943915) +zone = ('scz037', 0.00031796412699116141) + +[29137] +centroid = (0.58635439268836764, -1.4193258681720513) +station = ('kbnl', 0.0061146676054338878) +zone = ('scz027', 0.0053980140793619645) + +[29138] +centroid = (0.59415182565457747, -1.427263102011346) +station = ('keoe', 0.005067525473127249) +zone = ('scz026', 0.0009533060707910692) + +[29142] +centroid = (0.58404785281539451, -1.4054180549479018) +station = ('kmni', 0.004943733356568232) +zone = ('scz036', 0.0040385898232496494) + +[29145] +centroid = (0.59740384528994095, -1.4270894242974799) +station = ('keoe', 0.0023077655166600544) +zone = ('scz020', 0.0026224873287638249) + +[29146] +centroid = (0.58482927162809739, -1.4188726061653083) +station = ('kbnl', 0.0047133985529571581) +zone = ('scz035', 0.0046903737041944218) + +[29147] +centroid = (0.59501370414579735, -1.413131712110016) +station = ('kcub', 0.0022367074965929578) +zone = ('scz028', 0.0015269229182980886) + +[29148] +centroid = (0.58528216711569747, -1.4021531547826587) +station = ('kmni', 0.0019549448907573352) +zone = ('scz038', 0.0028935707742817176) + +[29150] +centroid = (0.59121792718197497, -1.4024416577080134) +station = ('ksms', 0.0021957448965376635) +zone = ('scz031', 0.00083858656200920317) + +[29152] +centroid = (0.59292847202197707, -1.4043932499710083) +station = ('kssc', 0.00027208083476598681) +zone = ('scz031', 0.0015558045845846726) + +[29153] +centroid = (0.59270070655459184, -1.4016456130361787) +station = ('ksms', 0.0010315278849263763) +zone = ('scz031', 0.0013077703417383331) + +[29154] +centroid = (0.59130465259250664, -1.4039501457805119) +station = ('kssc', 0.0016472680542254309) +zone = ('scz031', 0.0010604338277811819) + +[29160] +centroid = (0.5889943079017641, -1.4143365652525453) +station = ('kcae', 0.0037350370210369271) +zone = ('scz027', 0.0043731857695903003) + +[29161] +centroid = (0.59523935776478765, -1.3952772207549167) +station = ('kflo', 0.0033315549693390999) +zone = ('scz023', 0.0039793458975274859) + +[29162] +centroid = (0.59142033301532881, -1.3965080793033009) +station = ('kcki', 0.0037471688936920218) +zone = ('scz038', 0.0048348464161789171) + +[29163] +centroid = (0.58345636073189355, -1.4039411747881567) +station = ('kmni', 0.0042136665183513874) +zone = ('scz038', 0.0052503519423509884) + +[29164] +centroid = (0.5875156649594746, -1.4209854843044802) +station = ('kaik', 0.0039794325255738915) +zone = ('scz030', 0.0037812259017478826) + +[29166] +centroid = (0.59169810216578367, -1.4260341807784318) +station = ('kaik', 0.0044007371674738152) +zone = ('scz026', 0.0018459054651262655) + +[29168] +centroid = (0.59078206610787454, -1.4059028026943508) +station = ('kssc', 0.0022787313336282461) +zone = ('scz031', 0.0027257441862200697) + +[29169] +centroid = (0.59336878368567014, -1.4154167495266046) +station = ('kcae', 0.00087509498595574422) +zone = ('scz027', 0.0030285932742527212) + +[29170] +centroid = (0.59232415176847408, -1.4162858711342203) +station = ('kcae', 0.00049169536897366651) +zone = ('scz027', 0.0019132847110580275) + +[29172] +centroid = (0.59188333395929782, -1.4150602136670072) +station = ('kcae', 0.00087211780224515914) +zone = ('scz027', 0.0028334471065303464) + +[29175] +centroid = (0.60115857210975632, -1.4067066838945268) +station = ('kcdn', 0.0028887391368012444) +zone = ('scz022', 0.0018371184868298058) + +[29178] +centroid = (0.60200807621657959, -1.4242754823043671) +station = ('keoe', 0.003225295177125046) +zone = ('scz013', 0.003438930770742572) + +[29180] +centroid = (0.59980796652139301, -1.4153517883718452) +station = ('kfdw', 0.00089525690763302796) +zone = ('scz021', 0.00063786077718186137) + +[29201] +centroid = (0.59310623380629268, -1.4142070967286322) +station = ('kcub', 0.00049153166232037695) +zone = ('scz028', 0.001934402376449935) + +[29202] +centroid = (0.59329945920778104, -1.4142579032631577) +station = ('kcub', 0.00064934080869925338) +zone = ('scz028', 0.0019151373690958588) + +[29203] +centroid = (0.59518734695307829, -1.4144512159311087) +station = ('kcub', 0.0024345026384372964) +zone = ('scz028', 0.0024462571959868863) + +[29204] +centroid = (0.5939206742484433, -1.4137607811323123) +station = ('kcub', 0.0010911173543238406) +zone = ('scz028', 0.0014439130838912267) + +[29205] +centroid = (0.59323840759054625, -1.4136687150142697) +station = ('kcub', 0.00041017253439820601) +zone = ('scz028', 0.0014705686452152025) + +[29206] +centroid = (0.59387297439998632, -1.4130010218556266) +station = ('kcub', 0.0011997911538961456) +zone = ('scz028', 0.00081254162117265342) + +[29207] +centroid = (0.59415278558566609, -1.4110286427212404) +station = ('kmmt', 0.0022939522409286973) +zone = ('scz028', 0.00090127152167631351) + +[29208] +centroid = (0.59337936038093742, -1.4142080392064285) +station = ('kcub', 0.00068381897248926185) +zone = ('scz028', 0.0018557745173082656) + +[29209] +centroid = (0.59213350945427878, -1.4128503824878869) +station = ('kcub', 0.0010008996240877511) +zone = ('scz028', 0.001794432607317443) + +[29210] +centroid = (0.5942176245673777, -1.4155768660321824) +station = ('kcae', 0.0016846776643111416) +zone = ('scz027', 0.0034726880266531886) + +[29212] +centroid = (0.59474244507345231, -1.4171855709103307) +station = ('kcae', 0.002502837067935177) +zone = ('scz027', 0.003218029527996203) + +[29223] +centroid = (0.59502871397736445, -1.4123077072635644) +station = ('kcub', 0.002489399418299535) +zone = ('scz028', 0.0012582049334667535) + +[29225] +centroid = (0.59334522174076831, -1.4141535151205962) +station = ('kcub', 0.00062966858789674117) +zone = ('scz028', 0.0018198458026253317) + +[29229] +centroid = (0.59584713377020959, -1.4117655730913101) +station = ('kcub', 0.003422758279264056) +zone = ('scz028', 0.0020659512757784152) + +[29301] +centroid = (0.60971380958388965, -1.431356684505436) +station = ('kspa', 0.00091990770737558169) +zone = ('scz007', 0.00029006454271366999) + +[29302] +centroid = (0.60884844043416575, -1.4284403440451088) +station = ('kspa', 0.0016235006478300896) +zone = ('scz007', 0.0022586317620848723) + +[29303] +centroid = (0.6107916202101662, -1.4304902856114536) +station = ('kspa', 0.001389850371051486) +zone = ('scz007', 0.0012026464529434659) + +[29306] +centroid = (0.60899183668550971, -1.4298012296227662) +station = ('kspa', 0.00058399756646615193) +zone = ('scz007', 0.0011972958581609921) + +[29307] +centroid = (0.61056357549010065, -1.4282300667768282) +station = ('kspa', 0.0020493933094025705) +zone = ('scz007', 0.0024469623132393095) + +[29316] +centroid = (0.6116165151745363, -1.4307355218246511) +station = ('kspa', 0.0022347487599307086) +zone = ('scz007', 0.0019630219048297872) + +[29320] +centroid = (0.61013919868247823, -1.431059612013454) +station = ('kspa', 0.00095972829990173655) +zone = ('scz007', 0.00047491401868949282) + +[29321] +centroid = (0.60588515061695969, -1.4266507183366988) +station = ('kspa', 0.0046252800229699687) +zone = ('scz013', 0.0018014196260978511) + +[29322] +centroid = (0.61297780217792175, -1.4334779053184323) +station = ('kgsp', 0.0043208165957936782) +zone = ('ncz510', 0.0027328916897944927) + +[29323] +centroid = (0.61307030462827738, -1.4295549113054324) +station = ('kspa', 0.0037096687968372847) +zone = ('scz007', 0.0036059841210639306) + +[29324] +centroid = (0.61058050518384499, -1.4281441965776303) +station = ('kspa', 0.0021172555813728437) +zone = ('scz007', 0.0025186523283965258) + +[29325] +centroid = (0.60165024881333573, -1.4284080205473617) +station = ('klux', 0.0016320576876354689) +zone = ('scz012', 0.0023717662900989605) + +[29329] +centroid = (0.61076149582727679, -1.4283056220801471) +station = ('kspa', 0.0021187491006046627) +zone = ('scz007', 0.0024704727828764005) + +[29330] +centroid = (0.61178350827736716, -1.4277516196689792) +station = ('kspa', 0.0031591031674675905) +zone = ('scz008', 0.0026264510025212117) + +[29331] +centroid = (0.60478863006110184, -1.4284487565321033) +station = ('klux', 0.0030560387630875021) +zone = ('scz013', 0.0032904483375054408) + +[29332] +centroid = (0.59827722550093143, -1.4306527932181068) +station = ('kgrd', 0.0027099037637847885) +zone = ('scz019', 0.0031297607648097113) + +[29333] +centroid = (0.61036267063990357, -1.4296028205933995) +station = ('kspa', 0.0011091240623983146) +zone = ('scz007', 0.0013457196429797805) + +[29334] +centroid = (0.60921679217279923, -1.4333414205709265) +station = ('kgsp', 0.0013763794953870912) +zone = ('scz007', 0.001965662067270836) + +[29335] +centroid = (0.60469881541779413, -1.4295024118015323) +station = ('klux', 0.0026425655066647214) +zone = ('scz012', 0.0031987992874444975) + +[29338] +centroid = (0.61323038622727044, -1.431197876996797) +station = ('kspa', 0.0038901286157083941) +zone = ('ncz510', 0.0031307531401757582) + +[29340] +centroid = (0.61037712196611016, -1.4239394540634807) +station = ('keho', 0.0048557209429828194) +zone = ('scz008', 0.0014187917631706187) + +[29341] +centroid = (0.61284925867851237, -1.4261874555933418) +station = ('keho', 0.0028861621779171201) +zone = ('scz008', 0.0017644047835530744) + +[29346] +centroid = (0.60990666846623509, -1.4283141567401894) +station = ('kspa', 0.0016998206644521499) +zone = ('scz007', 0.002221118697545937) + +[29349] +centroid = (0.61207510043549773, -1.4324092576707288) +station = ('kspa', 0.0031767762516628851) +zone = ('scz007', 0.0026685139313642851) + +[29351] +centroid = (0.60076037524091386, -1.4278197398696846) +station = ('klux', 0.0024642522054416915) +zone = ('scz012', 0.0030510607938172086) + +[29353] +centroid = (0.60791114626596732, -1.4250369869103048) +station = ('kspa', 0.0045687858258220554) +zone = ('scz013', 0.0025056326683832965) + +[29355] +centroid = (0.59846591304636454, -1.4281404092131535) +station = ('keoe', 0.0027113526867064853) +zone = ('scz020', 0.0032634859551886955) + +[29356] +centroid = (0.61334489727949382, -1.4360714122270186) +station = ('kgsp', 0.004608080842815573) +zone = ('ncz509', 0.0025110040929149742) + +[29360] +centroid = (0.6021147507404615, -1.4320535944757575) +station = ('klux', 0.0014475982715588314) +zone = ('scz012', 0.00069352436091250111) + +[29364] +centroid = (0.60671973215867836, -1.4219314178524762) +station = ('kdcm', 0.0040522045454870793) +zone = ('scz013', 0.0024874826948742845) + +[29365] +centroid = (0.61053341620062629, -1.4341693524081951) +station = ('kgsp', 0.0018210361689650165) +zone = ('scz007', 0.0027325491293560644) + +[29368] +centroid = (0.61228906034849973, -1.4287860588633436) +station = ('kspa', 0.0031332028336923589) +zone = ('scz007', 0.0031922870416660688) + +[29369] +centroid = (0.6085198647491854, -1.4315096800676659) +station = ('kspa', 0.0013351559176639351) +zone = ('scz007', 0.0012180313299874649) + +[29370] +centroid = (0.59993607368848945, -1.4305305154507122) +station = ('klux', 0.0022108993546190395) +zone = ('scz012', 0.0020121962889290872) + +[29372] +centroid = (0.6091503998480533, -1.4261307498459446) +station = ('kspa', 0.0034267461095553501) +zone = ('scz008', 0.0028674967039244771) + +[29373] +centroid = (0.60955543840756365, -1.4267500101178445) +station = ('kspa', 0.0029121908459951735) +zone = ('scz008', 0.0028091657847316509) + +[29374] +centroid = (0.60710490887130097, -1.4286125905889879) +station = ('kspa', 0.0026886069775225222) +zone = ('scz007', 0.0032284260379069184) + +[29375] +centroid = (0.60844450143208428, -1.4331562411372898) +station = ('kgsp', 0.0015222726190872689) +zone = ('scz007', 0.0021442958027000992) + +[29376] +centroid = (0.60757323306948874, -1.4301964245252954) +station = ('kspa', 0.0018394280446393841) +zone = ('scz007', 0.0021962447289181558) + +[29377] +centroid = (0.60965457310907689, -1.4328291140755887) +station = ('kspa', 0.0020901204881377017) +zone = ('scz007', 0.0014933416499778706) + +[29378] +centroid = (0.61028765638865279, -1.4306208885993805) +station = ('kspa', 0.00091609696586583613) +zone = ('scz007', 0.00069765330386898847) + +[29379] +centroid = (0.60532273571879702, -1.4243406005387591) +station = ('klux', 0.0058468021025707296) +zone = ('scz013', 0.00019361752423669251) + +[29384] +centroid = (0.59940484782405989, -1.4327418650662813) +station = ('kgrd', 0.0021059991759113513) +zone = ('scz012', 0.0027304426722105052) + +[29385] +centroid = (0.6103933535281536, -1.4329400472028453) +station = ('kgsp', 0.0022730726584161655) +zone = ('scz007', 0.0017427824024414357) + +[29388] +centroid = (0.60675175895045252, -1.431948979440393) +station = ('kspa', 0.002984645294911941) +zone = ('scz007', 0.0030150810688487932) + +[29401] +centroid = (0.57206971051883504, -1.3950765777041074) +station = ('kjzi', 0.0016766392432697931) +zone = ('scz050', 0.0011287391770636202) + +[29403] +centroid = (0.57257096908000782, -1.3952717055144803) +station = ('kjzi', 0.0020277642480321448) +zone = ('scz050', 0.00061440323446418572) + +[29404] +centroid = (0.57419585316032207, -1.3971315109121132) +station = ('kchs', 0.00024104611144746269) +zone = ('scz050', 0.0018540317507156079) + +[29405] +centroid = (0.57344977726497193, -1.3959491376103494) +station = ('kchs', 0.0010720486756022559) +zone = ('scz050', 0.00062064992180350714) + +[29406] +centroid = (0.57487201116583708, -1.3968813005105472) +station = ('kchs', 0.00065938484393013471) +zone = ('scz052', 0.0017632821554198078) + +[29407] +centroid = (0.57244931963114376, -1.3962250567117973) +station = ('kjzi', 0.0017269553762433443) +zone = ('scz050', 0.0010823223844252559) + +[29409] +centroid = (0.57239971737380202, -1.3955738743678783) +station = ('kjzi', 0.001774492687377813) +zone = ('scz050', 0.00082331602567880407) + +[29410] +centroid = (0.57478331353325074, -1.3963114156031862) +station = ('kchs', 0.000725023624481971) +zone = ('scz052', 0.0013334453103038743) + +[29412] +centroid = (0.57094339719264542, -1.3953537534426166) +station = ('kjzi', 0.00079661606266944536) +zone = ('scz050', 0.0022427671510679478) + +[29414] +centroid = (0.57316549803640715, -1.3978198862223921) +station = ('kchs', 0.0013297164293655692) +zone = ('scz050', 0.0021334052737588534) + +[29418] +centroid = (0.57438171327236676, -1.3979173628611159) +station = ('kchs', 0.00091579286520653913) +zone = ('scz050', 0.0025168734007920499) + +[29420] +centroid = (0.57476767538315288, -1.3980213321246575) +station = ('kchs', 0.0011323233188429338) +zone = ('scz050', 0.0027928746965578213) + +[29423] +centroid = (0.57558794522500523, -1.3975061632893464) +station = ('kchs', 0.0014823320965733156) +zone = ('scz052', 0.002259796825378304) + +[29424] +centroid = (0.57218240642863627, -1.395170214618477) +station = ('kjzi', 0.001725201104012799) +zone = ('scz050', 0.001007214372351638) + +[29426] +centroid = (0.57241898580874417, -1.4027322550284704) +station = ('krbw', 0.0041525271027373174) +zone = ('scz049', 0.0037601389177213634) + +[29429] +centroid = (0.57544671318193386, -1.390297866212147) +station = ('klro', 0.002168980725113661) +zone = ('scz052', 0.0038122815583573584) + +[29431] +centroid = (0.58072729410030521, -1.3941974728131705) +station = ('kmks', 0.0028272574381630359) +zone = ('scz045', 0.0013860908157132107) + +[29432] +centroid = (0.57999821771186966, -1.410380200544247) +station = ('kogb', 0.0041489465659325063) +zone = ('scz041', 0.003594374211383001) + +[29434] +centroid = (0.5784176126346785, -1.3935358883069096) +station = ('kmks', 0.0029478780870484645) +zone = ('scz045', 0.0021466990657244269) + +[29435] +centroid = (0.57548692556789971, -1.4044044026249285) +station = ('krbw', 0.0025033323472431774) +zone = ('scz044', 0.002063990613958133) + +[29436] +centroid = (0.5814626885806331, -1.399531530619823) +station = ('kmks', 0.0031938479546440236) +zone = ('scz045', 0.0037710455724072971) + +[29437] +centroid = (0.57840200939116571, -1.4037989653607041) +station = ('kdyb', 0.0025327762769211505) +zone = ('scz044', 0.0011249346434295253) + +[29438] +centroid = (0.5683613745505377, -1.4018901685709682) +station = ('karw', 0.0051466212253118869) +zone = ('scz049', 0.0027022678943075381) + +[29439] +centroid = (0.56993354968744159, -1.395423147733676) +station = ('kjzi', 0.0010596804734268794) +zone = ('scz050', 0.0032539790756159993) + +[29440] +centroid = (0.58261027747040428, -1.3845655068168967) +station = ('kgge', 0.0012492348231371406) +zone = ('scz056', 0.0013521223276704614) + +[29445] +centroid = (0.57594634858690208, -1.3956926440234765) +station = ('kchs', 0.0019846280461736209) +zone = ('scz052', 0.00097810629631974789) + +[29446] +centroid = (0.56951259372515306, -1.4058890669531374) +station = ('knbc', 0.0035376861470384998) +zone = ('scz049', 0.00086320582128893305) + +[29448] +centroid = (0.58046271963899532, -1.4041644198527794) +station = ('kdyb', 0.0041400324897299954) +zone = ('scz044', 0.0031928393963983372) + +[29449] +centroid = (0.57072910566708568, -1.4012734739330686) +station = ('kjzi', 0.0042160248066742253) +zone = ('scz049', 0.0034755424015974349) + +[29450] +centroid = (0.5771094360004313, -1.3924969287097824) +station = ('klro', 0.0028967638549783552) +zone = ('scz052', 0.0026820563052681219) + +[29451] +centroid = (0.57286263105130852, -1.3919800319985116) +station = ('klro', 0.0014011579662680167) +zone = ('scz050', 0.0027922140398070746) + +[29452] +centroid = (0.5703378377553735, -1.4043175375880568) +station = ('krbw', 0.0046703926919053895) +zone = ('scz049', 0.0012970644645795123) + +[29453] +centroid = (0.5798959763242878, -1.390028753894782) +station = ('kgge', 0.0049353355711151065) +zone = ('scz045', 0.0045472481688746515) + +[29455] +centroid = (0.56940874663465946, -1.3969717783789706) +station = ('kjzi', 0.0014429224709871906) +zone = ('scz050', 0.0040355856969195632) + +[29456] +centroid = (0.57571216030786965, -1.3982782096839661) +station = ('kchs', 0.0019216660397570933) +zone = ('scz052', 0.0029184687908591091) + +[29458] +centroid = (0.57758427027672887, -1.3868645941339639) +station = ('kgge', 0.0043121987330076977) +zone = ('scz056', 0.0055276159043341228) + +[29461] +centroid = (0.57874828271476131, -1.3963761673184349) +station = ('kmks', 0.00060329094684577901) +zone = ('scz045', 0.0013266032773488921) + +[29464] +centroid = (0.57275944718593064, -1.3937889086885711) +station = ('klro', 0.0018517396584003005) +zone = ('scz050', 0.0013239754146034471) + +[29466] +centroid = (0.57382512777390582, -1.3926333436441181) +station = ('klro', 0.0004262559406526138) +zone = ('scz050', 0.0023140645480309347) + +[29468] +centroid = (0.58332071374242866, -1.3972786072614711) +station = ('kmni', 0.0036425225094284391) +zone = ('scz045', 0.0038027838332159274) + +[29469] +centroid = (0.58045921152719893, -1.3972472436948129) +station = ('kmks', 0.0013798255773697515) +zone = ('scz045', 0.0016174600889364021) + +[29470] +centroid = (0.5729383259809675, -1.4006908830287528) +station = ('kchs', 0.0034727800127116546) +zone = ('scz050', 0.0045525135688217833) + +[29471] +centroid = (0.57932146629440884, -1.4079643856068065) +station = ('krbw', 0.0049884349451459345) +zone = ('scz044', 0.0043504129888305692) + +[29472] +centroid = (0.57673202600298001, -1.4019675390167092) +station = ('kdyb', 0.00081862934467784949) +zone = ('scz044', 0.0013005874900723204) + +[29474] +centroid = (0.57393857417528549, -1.4054060994425257) +station = ('krbw', 0.0014791027974329113) +zone = ('scz043', 0.0026888579225692196) + +[29475] +centroid = (0.57521276924899645, -1.4103391329469475) +station = ('krbw', 0.0028535007946960435) +zone = ('scz043', 0.001665532973977024) + +[29477] +centroid = (0.57880589603336963, -1.4061233599519252) +station = ('kdyb', 0.0044711666172345425) +zone = ('scz044', 0.0027536301298036361) + +[29479] +centroid = (0.58257348592977232, -1.3943141655269589) +station = ('kmks', 0.0041184560648742444) +zone = ('scz045', 0.0029038522281337187) + +[29481] +centroid = (0.57785284154202565, -1.4102344306451204) +station = ('krbw', 0.0043570349218652752) +zone = ('scz043', 0.0036206603612893048) + +[29482] +centroid = (0.57184843767626714, -1.393732447287269) +station = ('kjzi', 0.0024083683552784669) +zone = ('scz050', 0.0018657450846355165) + +[29483] +centroid = (0.57685547314097352, -1.3995540453671738) +station = ('kdyb', 0.0013767190267265739) +zone = ('scz044', 0.0032067875417656775) + +[29485] +centroid = (0.57506014020590945, -1.399589737350377) +station = ('kdyb', 0.0024916008420878947) +zone = ('scz044', 0.0038847811160436694) + +[29487] +centroid = (0.56998407696928677, -1.3994738998479221) +station = ('kjzi', 0.002801425614683837) +zone = ('scz050', 0.0047628636818596417) + +[29488] +centroid = (0.5743313605234468, -1.4080066051214122) +station = ('krbw', 0.00077625103891404532) +zone = ('scz043', 0.00048148019876189762) + +[29492] +centroid = (0.57427968132429519, -1.3947129034478696) +station = ('kchs', 0.0017914909243219243) +zone = ('scz052', 0.0010072247327641208) + +[29493] +centroid = (0.57655456092463719, -1.4109738044761426) +station = ('krbw', 0.0039167938519063744) +zone = ('scz043', 0.0028834878701859724) + +[29501] +centroid = (0.59700615456658157, -1.3932310665530487) +station = ('kflo', 0.0013982934972771098) +zone = ('scz023', 0.002909661857476699) + +[29505] +centroid = (0.59568202562297101, -1.3908335601194615) +station = ('kflo', 0.0011297256198827725) +zone = ('scz032', 0.001853410315388234) + +[29506] +centroid = (0.59714504786845513, -1.3900882870755675) +station = ('kflo', 0.0013663202663216766) +zone = ('scz032', 0.0034051905848076153) + +[29510] +centroid = (0.58388789338944924, -1.3895110892386406) +station = ('kgge', 0.0049591349824198638) +zone = ('scz055', 0.0032950126140902998) + +[29511] +centroid = (0.59298838917519803, -1.3809519073203977) +station = ('khyw', 0.0025438074998168653) +zone = ('scz053', 0.0015081708910168667) + +[29512] +centroid = (0.6042133171797669, -1.3913453604693165) +station = ('kbbp', 0.00017037936121569241) +zone = ('scz017', 0.0006407653845658186) + +[29516] +centroid = (0.60104695830409138, -1.3898866666403773) +station = ('kbbp', 0.003468551593481388) +zone = ('scz017', 0.0029406220290495852) + +[29518] +centroid = (0.58972245926569622, -1.3936100648001193) +station = ('kcki', 0.0011977959941548812) +zone = ('scz039', 0.0034234285166394969) + +[29519] +centroid = (0.59373769392966425, -1.3850899782571211) +station = ('kmao', 0.0028486124483720903) +zone = ('scz033', 0.0010729658689496685) + +[29520] +centroid = (0.60527121359927816, -1.3949944076029235) +station = ('kcqw', 0.00073023656575245659) +zone = ('scz016', 0.0033925121187844218) + +[29525] +centroid = (0.60305630351203487, -1.388246877448251) +station = ('kbbp', 0.0029637952890145024) +zone = ('scz017', 0.0021614156412690954) + +[29526] +centroid = (0.59086207200078589, -1.3781900983120419) +station = ('khyw', 0.0022927966641832103) +zone = ('scz053', 0.0019472909958515691) + +[29527] +centroid = (0.58966289117832571, -1.3813572076792959) +station = ('khyw', 0.00086776107182629913) +zone = ('scz053', 0.0034669249176318717) + +[29530] +centroid = (0.59334309243908079, -1.3917268545372175) +station = ('kflo', 0.0032700757353305971) +zone = ('scz032', 0.00073300580587613525) + +[29532] +centroid = (0.59830464462348021, -1.3939828845816378) +station = ('kflo', 0.0025917929887608639) +zone = ('scz023', 0.0015648689522444503) + +[29536] +centroid = (0.60073363679677327, -1.3853210249435002) +station = ('kmao', 0.0042259268450090953) +zone = ('scz024', 0.0004959389137767432) + +[29540] +centroid = (0.59999914988765657, -1.3935785790604132) +station = ('kflo', 0.0037580275208043182) +zone = ('scz023', 0.0017887933996166745) + +[29541] +centroid = (0.59454551957394985, -1.3917386355096684) +station = ('kflo', 0.0020689732634954629) +zone = ('scz032', 0.00089420403063941343) + +[29543] +centroid = (0.59843158241997785, -1.3834514457020564) +station = ('kmao', 0.0020932680263059489) +zone = ('scz024', 0.0024369541171061072) + +[29544] +centroid = (0.59212211245426327, -1.3832708739376451) +station = ('khyw', 0.0025831809091512426) +zone = ('scz033', 0.0031012277628342804) + +[29545] +centroid = (0.59626835153188595, -1.3782250223503743) +station = ('kcpc', 0.0040986820070526356) +zone = ('scz053', 0.0037297085041974247) + +[29546] +centroid = (0.59135868798614832, -1.3849505439031793) +station = ('khyw', 0.003482031673519992) +zone = ('scz033', 0.0034547252521457857) + +[29547] +centroid = (0.60207378786291721, -1.3846539775566804) +station = ('klbt', 0.0042587721978473167) +zone = ('scz024', 0.0019357610742507516) + +[29550] +centroid = (0.60039282635373636, -1.3977086389358702) +station = ('khvs', 0.00053562908686491915) +zone = ('scz023', 0.002153960246008565) + +[29554] +centroid = (0.58824664375679492, -1.3854702505945455) +station = ('khyw', 0.0043861442400796313) +zone = ('scz055', 0.0037071453992382031) + +[29555] +centroid = (0.5906478153818111, -1.3869502723469445) +station = ('kcki', 0.0059559369354008369) +zone = ('scz033', 0.0044255484574051637) + +[29556] +centroid = (0.58761914553082539, -1.3921218574535288) +station = ('kcki', 0.0015580290488482931) +zone = ('scz039', 0.00098302114428304162) + +[29560] +centroid = (0.59045191962656718, -1.3918054816200196) +station = ('kcki', 0.0024600748555970325) +zone = ('scz032', 0.0034412398810892884) + +[29563] +centroid = (0.59957934584267436, -1.3824521399855345) +station = ('kmao', 0.0034954276611717161) +zone = ('scz024', 0.0025409528499489424) + +[29564] +centroid = (0.5838019184704959, -1.3936176220757805) +station = ('kcki', 0.004723162022572145) +zone = ('scz039', 0.0034555167065078948) + +[29565] +centroid = (0.59966113197142279, -1.3875243460445104) +station = ('kmao', 0.003952110549166883) +zone = ('scz024', 0.0018298572621970736) + +[29566] +centroid = (0.59120239375163219, -1.3729974121748008) +station = ('kcre', 0.0012246502963855729) +zone = ('scz054', 0.003656966511810739) + +[29567] +centroid = (0.60316702719978144, -1.3863081657151357) +station = ('kmeb', 0.0040195129862791844) +zone = ('scz024', 0.0030118175322038608) + +[29568] +centroid = (0.59190328307264806, -1.37445174268061) +station = ('kcre', 0.0017598874810013617) +zone = ('scz054', 0.0034457782579412764) + +[29569] +centroid = (0.59405492497450674, -1.3773609971041745) +station = ('khyw', 0.0046557451938860298) +zone = ('scz053', 0.0020826402909473476) + +[29570] +centroid = (0.6050598542268617, -1.3886593860169598) +station = ('kbbp', 0.0025185535232743173) +zone = ('scz017', 0.0019987722659839556) + +[29571] +centroid = (0.5957689255664278, -1.3862283867150271) +station = ('kmao', 0.0015809944056582941) +zone = ('scz033', 0.0013176960522969573) + +[29572] +centroid = (0.58942491553481624, -1.37505320059414) +station = ('kcre', 0.0012628571649000561) +zone = ('scz054', 0.0012328885920743435) + +[29574] +centroid = (0.59630053540329275, -1.3833598508229117) +station = ('kmao', 0.0010324418489306827) +zone = ('scz033', 0.0020942909542972965) + +[29575] +centroid = (0.58694070114399, -1.3782924269660863) +station = ('kmyr', 0.0010866712567830167) +zone = ('scz054', 0.002491186069910258) + +[29576] +centroid = (0.58577560660182126, -1.3797932355898763) +station = ('kmyr', 0.0027649828556287072) +zone = ('scz054', 0.0041926975431754191) + +[29577] +centroid = (0.58815473471838486, -1.3771148358664731) +station = ('kmyr', 0.00051812012712618019) +zone = ('scz054', 0.00093187474916954288) + +[29579] +centroid = (0.58910473488353776, -1.3773597230138206) +station = ('kmyr', 0.0012427808148440364) +zone = ('scz054', 0.00086996589825950497) + +[29580] +centroid = (0.58735741595619628, -1.388443890214216) +station = ('kcki', 0.0044828284223396853) +zone = ('scz039', 0.0026183951826171297) + +[29581] +centroid = (0.59688995054498373, -1.3807825929296618) +station = ('kmao', 0.0031506352304387156) +zone = ('scz033', 0.0041611169173830153) + +[29582] +centroid = (0.59059374508158435, -1.372885606382918) +station = ('kcre', 0.00089863817556349636) +zone = ('scz054', 0.0033771147224248886) + +[29583] +centroid = (0.5930253727020478, -1.3887772830079321) +station = ('kflo', 0.004285247159495905) +zone = ('scz032', 0.002072548922715869) + +[29584] +centroid = (0.60359267809775763, -1.3974112697379153) +station = ('kcqw', 0.0029919672600196116) +zone = ('scz016', 0.0016573168331298445) + +[29585] +centroid = (0.58503605823787375, -1.3811803185596061) +station = ('kmyr', 0.0040963141083487278) +zone = ('scz056', 0.003325143380201422) + +[29588] +centroid = (0.58767220354008598, -1.3792337004849793) +station = ('kmyr', 0.0013378244570709666) +zone = ('scz054', 0.0026615231140038119) + +[29590] +centroid = (0.58588818033857482, -1.3936226486240262) +station = ('kcki', 0.0026369115028748906) +zone = ('scz039', 0.0019712882114326963) + +[29591] +centroid = (0.59232982408854296, -1.3921145794305478) +station = ('kcki', 0.0040116864824623413) +zone = ('scz032', 0.0017379749293051107) + +[29592] +centroid = (0.59807124174261106, -1.3871699918464779) +station = ('kmao', 0.0026317596550462369) +zone = ('scz024', 0.0026087897521069633) + +[29593] +centroid = (0.60201345183067567, -1.3937684708830302) +station = ('kbbp', 0.0028742722601076678) +zone = ('scz023', 0.0031528431129273292) + +[29594] +centroid = (0.6045861195079929, -1.3888869420448349) +station = ('kbbp', 0.0022203591466049468) +zone = ('scz017', 0.0015998909922882651) + +[29596] +centroid = (0.60640002274629812, -1.3933092398502454) +station = ('kcqw', 0.0016229368827523709) +zone = ('scz017', 0.0033053254746867561) + +[29601] +centroid = (0.60819683921122625, -1.4381908178975928) +station = ('kgmu', 0.00075028855237508458) +zone = ('scz006', 0.0014066662811720912) + +[29605] +centroid = (0.60692821173782918, -1.437743071131286) +station = ('kgyh', 0.00025641242028173451) +zone = ('scz006', 0.00063713885157104457) + +[29607] +centroid = (0.60757923700211558, -1.4369546186416977) +station = ('kgmu', 0.00071900869664369199) +zone = ('scz006', 0.00041624858636823964) + +[29609] +centroid = (0.6093396808054321, -1.4379448311928167) +station = ('kgmu', 0.0012215085359556896) +zone = ('scz006', 0.0023005020639748799) + +[29611] +centroid = (0.6079144798448386, -1.4391722688958666) +station = ('kgyh', 0.0016728677440988559) +zone = ('scz006', 0.0019158722778407084) + +[29613] +centroid = (0.6095486665300659, -1.4388273743823801) +station = ('kgmu', 0.0018186814444946459) +zone = ('scz006', 0.0028041398618434835) + +[29614] +centroid = (0.60866212653651541, -1.4375081323606753) +station = ('kgmu', 0.00045561679696110957) +zone = ('scz006', 0.0015471864125050166) + +[29615] +centroid = (0.60836636304147251, -1.4363385872289136) +station = ('kgmu', 0.00078056494447995613) +zone = ('scz006', 0.0013248326232964556) + +[29617] +centroid = (0.60931226168288333, -1.4393397855974732) +station = ('kgmu', 0.0019983115785057828) +zone = ('scz006', 0.002866173012476784) + +[29620] +centroid = (0.59659584511273012, -1.4385981777450083) +station = ('kgrd', 0.0040760711415700063) +zone = ('scz011', 0.00084847967445633591) + +[29621] +centroid = (0.60225207324600827, -1.4417401543710335) +station = ('kand', 0.0016011415534964196) +zone = ('scz010', 0.00051359493578248788) + +[29624] +centroid = (0.60102058637909372, -1.4420628482964346) +station = ('kand', 0.0017388182216494796) +zone = ('scz010', 0.0014648521430992213) + +[29625] +centroid = (0.6031688074356184, -1.444494737716286) +station = ('kand', 0.0012303986011459305) +zone = ('scz010', 0.0019349012317835279) + +[29626] +centroid = (0.60145445777784701, -1.4443736467727826) +station = ('kand', 0.00089257939458555402) +zone = ('scz010', 0.0019866560435838473) + +[29627] +centroid = (0.60244016737949579, -1.4394885225563281) +station = ('kand', 0.0034655938490040974) +zone = ('scz010', 0.0023195600004796862) + +[29628] +centroid = (0.59496736565415687, -1.4409303914112781) +station = ('kiiy', 0.006559468237921709) +zone = ('scz011', 0.0027450945372381741) + +[29630] +centroid = (0.60630422162365605, -1.4451179773388807) +station = ('kceu', 0.0017430140953612937) +zone = ('scz005', 0.0020204983720632963) + +[29631] +centroid = (0.60530753390101222, -1.4454089411784805) +station = ('kceu', 0.0010031821125732218) +zone = ('scz004', 0.0025991602178690155) + +[29634] +centroid = (0.60521941222707909, -1.4457600665173969) +station = ('kceu', 0.00070153870008473371) +zone = ('scz004', 0.0022981072515773321) + +[29635] +centroid = (0.61222062598852911, -1.4421080174174763) +station = ('klqk', 0.0047877630905151592) +zone = ('scz002', 0.0027125694409585511) + +[29638] +centroid = (0.59976262286742621, -1.4370727599787652) +station = ('kgrd', 0.0035431597497934679) +zone = ('scz011', 0.0030162635872253373) + +[29639] +centroid = (0.59871107944639224, -1.4386542202672896) +station = ('kgrd', 0.0042044312054787415) +zone = ('scz011', 0.0014782790499891034) + +[29640] +centroid = (0.60884027229326643, -1.441289964143774) +station = ('klqk', 0.0021516846035238659) +zone = ('scz005', 0.0020182104175314507) + +[29642] +centroid = (0.60694112717429394, -1.4410077618570192) +station = ('klqk', 0.0020465210387851486) +zone = ('scz005', 0.0019286650227188248) + +[29643] +centroid = (0.60242116074394159, -1.4485612327003849) +station = ('kceu', 0.003088482857507552) +zone = ('scz004', 0.0019603544049107855) + +[29644] +centroid = (0.6050790703019262, -1.4344871419583982) +station = ('kgyh', 0.0031586909055000265) +zone = ('scz006', 0.0029504861098381967) + +[29645] +centroid = (0.60374921667836901, -1.4333448414162604) +station = ('klux', 0.0029824417033589667) +zone = ('scz012', 0.0025506931847210611) + +[29646] +centroid = (0.59578651848528785, -1.4337612769757864) +station = ('kgrd', 0.0016980058085113328) +zone = ('scz019', 0.00044969781247793041) + +[29649] +centroid = (0.5975818688736444, -1.4337010456632999) +station = ('kgrd', 0.00012111749441146407) +zone = ('scz019', 0.0015110273192192191) + +[29650] +centroid = (0.60908929587094107, -1.4356703355649101) +station = ('kgsp', 0.00064448673104149014) +zone = ('scz006', 0.0022202716696363145) + +[29651] +centroid = (0.6112811501587655, -1.4360492989053955) +station = ('kgsp', 0.0026119880996183791) +zone = ('scz003', 0.0026144496772186453) + +[29653] +centroid = (0.59875270554905224, -1.4352273360941687) +station = ('kgrd', 0.0017388233257565073) +zone = ('scz019', 0.0030694527518648185) + +[29654] +centroid = (0.6014496755756964, -1.4374860888522225) +station = ('kgrd', 0.0050046108360634837) +zone = ('scz011', 0.0043807360769837055) + +[29655] +centroid = (0.59804795905038954, -1.4423810392723657) +station = ('kand', 0.0042283874546519768) +zone = ('scz011', 0.0027539443056651919) + +[29657] +centroid = (0.60680015693061029, -1.4431529111340602) +station = ('klqk', 0.00077329568409155306) +zone = ('scz005', 0.00079100456810847898) + +[29658] +centroid = (0.60669051534700003, -1.4535877809461288) +station = ('ktoc', 0.0029370466668251511) +zone = ('gaz010', 0.0027020860475205381) + +[29659] +centroid = (0.59707312284998049, -1.4424620574562432) +station = ('kand', 0.0051640049079749936) +zone = ('gaz029', 0.003228157604690226) + +[29661] +centroid = (0.61344122200091133, -1.4404121857030685) +station = ('kavl', 0.0049874025504048443) +zone = ('scz003', 0.0015610419896218161) + +[29662] +centroid = (0.60699423754343207, -1.4364380011831073) +station = ('kgyh', 0.0011648486137521841) +zone = ('scz006', 0.00051118156510480213) + +[29664] +centroid = (0.60843729322227347, -1.4513730977516881) +station = ('ktoc', 0.0050849425693277129) +zone = ('scz001', 0.001085280557638529) + +[29665] +centroid = (0.60607317493727708, -1.4471160477198561) +station = ('kceu', 0.0011141008659752978) +zone = ('scz004', 0.001982199281583154) + +[29666] +centroid = (0.59538985750618711, -1.4308131017099024) +station = ('kgrd', 0.0032318315568609004) +zone = ('scz019', 0.0022291269034127609) + +[29667] +centroid = (0.60676008417098448, -1.4443767185522662) +station = ('klqk', 0.0011326388543672137) +zone = ('scz005', 0.0012611004689951054) + +[29669] +centroid = (0.60457109222313321, -1.4383882495425784) +station = ('kgyh', 0.0021597782952098399) +zone = ('scz006', 0.0028277308237962752) + +[29670] +centroid = (0.60465149954177266, -1.4437928535575963) +station = ('kand', 0.0025146809992974417) +zone = ('scz010', 0.002500830309054011) + +[29671] +centroid = (0.60972688209998704, -1.4438880438150001) +station = ('klqk', 0.0022161818296072074) +zone = ('scz002', 0.00079428400979134517) + +[29672] +centroid = (0.60652422037586995, -1.4474763360373455) +station = ('kceu', 0.0016477826874342462) +zone = ('scz004', 0.0022687963929807838) + +[29673] +centroid = (0.60587122288952888, -1.4391269077886075) +station = ('kgyh', 0.0013540312792348064) +zone = ('scz006', 0.0021597767244924426) + +[29676] +centroid = (0.60999665764246791, -1.4483253863585632) +station = ('klqk', 0.0047329470464894524) +zone = ('scz001', 0.0029389843825196414) + +[29678] +centroid = (0.60449857379271277, -1.4475716659210893) +station = ('kceu', 0.00097843576013050167) +zone = ('scz004', 0.00065882021064427867) + +[29680] +centroid = (0.60536958035592059, -1.4362106895013276) +station = ('kgyh', 0.0018490791033302764) +zone = ('scz006', 0.001917502841836508) + +[29681] +centroid = (0.60681047182648962, -1.435097029812215) +station = ('kgsp', 0.002022079367719505) +zone = ('scz006', 0.0016222441601988771) + +[29682] +centroid = (0.60796704916190858, -1.4460818354182945) +station = ('klqk', 0.002251168320830796) +zone = ('scz002', 0.002707762626272139) + +[29683] +centroid = (0.61138881952032109, -1.4397949325598083) +station = ('kgmu', 0.0037582403458966637) +zone = ('scz003', 0.001424194758318024) + +[29684] +centroid = (0.60003389939306373, -1.4437099678714191) +station = ('kand', 0.0021048558173727056) +zone = ('scz010', 0.0026998821118468905) + +[29685] +centroid = (0.61071231244895563, -1.4458708600183134) +station = ('klqk', 0.0037622781831284278) +zone = ('scz002', 0.0011829722021545336) + +[29686] +centroid = (0.61015925251558367, -1.4495588105409476) +station = ('kceu', 0.0056642006038235358) +zone = ('scz001', 0.0026249386860222085) + +[29687] +centroid = (0.61063199239677879, -1.4368850847242982) +station = ('kgsp', 0.00240069614970245) +zone = ('scz003', 0.0025082697805995481) + +[29689] +centroid = (0.6027364195667293, -1.4463254135687027) +station = ('kand', 0.0022616495352959028) +zone = ('scz004', 0.0023416513570783813) + +[29690] +centroid = (0.61190904981046312, -1.4384514653680855) +station = ('kgmu', 0.0037858714751156132) +zone = ('scz003', 0.00073078632078558481) + +[29691] +centroid = (0.60707059569820687, -1.4500747996810073) +station = ('kceu', 0.0035085940053262072) +zone = ('scz001', 0.000658953316077455) + +[29692] +centroid = (0.60061369777057627, -1.4350008447171376) +station = ('kgrd', 0.0032857218978479472) +zone = ('scz012', 0.0033129849449605639) + +[29693] +centroid = (0.60469912957705951, -1.4511861904420922) +station = ('ktoc', 0.0023446404143676151) +zone = ('gaz018', 0.0026565405975366315) + +[29696] +centroid = (0.60702673557410425, -1.4487775662611699) +station = ('kceu', 0.002675615618906084) +zone = ('scz001', 0.001521619369970739) + +[29697] +centroid = (0.60433060330550092, -1.4407455435901992) +station = ('kand', 0.0032614913449768475) +zone = ('scz010', 0.0022583491032232921) + +[29702] +centroid = (0.61289100695422005, -1.421973375567694) +station = ('keho', 0.0029567563232214796) +zone = ('scz008', 0.0024146958569079727) + +[29704] +centroid = (0.60793118264578017, -1.4121421627840127) +station = ('klkr', 0.0021326713067456701) +zone = ('scz015', 0.0038731567855625898) + +[29706] +centroid = (0.60589963684975123, -1.4178101544364494) +station = ('kdcm', 0.0014487821152773439) +zone = ('scz014', 0.0011514867793316291) + +[29707] +centroid = (0.61041815465682447, -1.4113149116251524) +station = ('kuza', 0.0026875052790880909) +zone = ('ncz082', 0.0047494901535009588) + +[29708] +centroid = (0.6117153008101992, -1.4134918608011648) +station = ('kuza', 0.0014524754172017533) +zone = ('scz009', 0.0031031328132330063) + +[29709] +centroid = (0.60598123099228196, -1.3979818004170996) +station = ('kcqw', 0.0022731682089589802) +zone = ('scz016', 0.0016484863737372196) + +[29710] +centroid = (0.61272024394020508, -1.4175820922630913) +station = ('kakh', 0.0019275763930072709) +zone = ('scz009', 0.0023565573262131151) + +[29712] +centroid = (0.60733907969704115, -1.4132896295007364) +station = ('klkr', 0.0022564537698500464) +zone = ('scz014', 0.0032210166213668297) + +[29714] +centroid = (0.60584286128918385, -1.4122386271317704) +station = ('klkr', 0.00094674168929635607) +zone = ('scz015', 0.0030446313056129307) + +[29715] +centroid = (0.61103704840958173, -1.4124729550371431) +station = ('kuza', 0.0017944092367763844) +zone = ('scz009', 0.0037080179443367343) + +[29717] +centroid = (0.61000536683543527, -1.4215504997432282) +station = ('kdcm', 0.004648449452174231) +zone = ('scz008', 0.0029849143089912436) + +[29718] +centroid = (0.60430564509719742, -1.4020455901408582) +station = ('khvs', 0.0049538678811871613) +zone = ('scz016', 0.002494838803407025) + +[29720] +centroid = (0.60633720834651883, -1.4090519351703092) +station = ('klkr', 0.0017199795489832295) +zone = ('scz015', 0.001016962629820593) + +[29724] +centroid = (0.60691988651729711, -1.4139107921815213) +station = ('klkr', 0.002495109172689539) +zone = ('scz014', 0.0025632285722907498) + +[29726] +centroid = (0.6084364903708176, -1.4178380273446038) +station = ('kdcm', 0.0014020351705212168) +zone = ('scz009', 0.0021201288063360892) + +[29727] +centroid = (0.60596548812242901, -1.400881560249533) +station = ('kcqw', 0.0046566491097128149) +zone = ('scz016', 0.0020598686909247266) + +[29728] +centroid = (0.6067628941510802, -1.4032544575406671) +station = ('keqy', 0.0053732722556623794) +zone = ('scz016', 0.0041027088922796617) + +[29729] +centroid = (0.60543960296551069, -1.4138346783728417) +station = ('klkr', 0.0023128573526497152) +zone = ('scz014', 0.0021925441379114729) + +[29730] +centroid = (0.60894310709279398, -1.4140280259473776) +station = ('kuza', 0.0016949077712790747) +zone = ('scz009', 0.0028069471881464218) + +[29732] +centroid = (0.61036560279304697, -1.4151353849978905) +station = ('kuza', 0.00049370455651183323) +zone = ('scz009', 0.0014772822402802841) + +[29733] +centroid = (0.609810797530423, -1.4142745187976367) +station = ('kuza', 0.00080597042135783907) +zone = ('scz009', 0.0022664140482195009) + +[29741] +centroid = (0.60607060930327661, -1.3996759740687181) +station = ('kcqw', 0.0036667303969549524) +zone = ('scz016', 0.0015850177797792368) + +[29742] +centroid = (0.60859587383810965, -1.4205628702794024) +station = ('kdcm', 0.0032163122390725433) +zone = ('scz009', 0.0034900054293539088) + +[29743] +centroid = (0.61106048818143599, -1.4204654285472635) +station = ('kakh', 0.0047201242817773263) +zone = ('scz008', 0.0034022357511819669) + +[29745] +centroid = (0.61071021805385317, -1.4174548403073284) +station = ('kuza', 0.0023515595609138922) +zone = ('scz009', 0.00051209637348726181) + +[29801] +centroid = (0.58623852027932777, -1.4258822847736305) +station = ('kaik', 0.0010696736911792856) +zone = ('scz030', 0.0011937136471109431) + +[29803] +centroid = (0.58451542652200383, -1.4270283028670752) +station = ('kaik', 0.0029815912280043949) +zone = ('scz030', 0.0020871627301488871) + +[29805] +centroid = (0.5872344226038082, -1.4242669650976172) +station = ('kaik', 0.0012443502125797767) +zone = ('scz030', 0.0018281127723127537) + +[29809] +centroid = (0.5832698723013181, -1.4258029246525425) +station = ('kaik', 0.0040335836645999266) +zone = ('scz030', 0.0023458288693052275) + +[29810] +centroid = (0.57572072987449685, -1.4203159585501228) +station = ('kbnl', 0.0046045279184562795) +zone = ('scz040', 0.00029449557612990618) + +[29812] +centroid = (0.57998762356331002, -1.4212439675667006) +station = ('kbnl', 0.00068914445467341658) +zone = ('scz035', 0.00061774039860841557) + +[29816] +centroid = (0.58470477729255266, -1.4289620229585296) +station = ('kags', 0.0027107459060155387) +zone = ('gaz065', 0.0038193627031458239) + +[29817] +centroid = (0.58242569144871337, -1.418484444939665) +station = ('kbnl', 0.0027072793555581271) +zone = ('scz035', 0.0029820739494799552) + +[29819] +centroid = (0.59418385244635152, -1.4351384813819499) +station = ('kgrd', 0.0034846697456570228) +zone = ('scz019', 0.0024100353219421978) + +[29821] +centroid = (0.58718194055320072, -1.4330383441463177) +station = ('kdnl', 0.0032597891551462642) +zone = ('gaz064', 0.0028605838252635032) + +[29824] +centroid = (0.59029278050537048, -1.4311281859997649) +station = ('kaik', 0.0053731095165328981) +zone = ('scz025', 0.00096600438892588641) + +[29826] +centroid = (0.58268520445519245, -1.4199843808988288) +station = ('kbnl', 0.0024057822878493207) +zone = ('scz035', 0.0023580622666935953) + +[29827] +centroid = (0.57531558659523141, -1.4181481898059756) +station = ('kbnl', 0.0053872742157174769) +zone = ('scz040', 0.0015864755585478806) + +[29828] +centroid = (0.58508344392706535, -1.4281714586205465) +station = ('kaik', 0.0029941743096750491) +zone = ('scz030', 0.0028387325736640894) + +[29829] +centroid = (0.58598890328970754, -1.4286881458923066) +station = ('kaik', 0.0027706298577286799) +zone = ('scz025', 0.0037937314792906491) + +[29831] +centroid = (0.5811501524714785, -1.4276719628419181) +station = ('kags', 0.0027195613285768308) +zone = ('gaz065', 0.004139207445885501) + +[29832] +centroid = (0.59060186086260602, -1.4277431373688145) +station = ('kaik', 0.0036879923754108393) +zone = ('scz025', 0.0026342266987156556) + +[29834] +centroid = (0.58491097049038321, -1.4286697501219907) +station = ('kags', 0.0030132223934215881) +zone = ('scz030', 0.0032755366622177948) + +[29835] +centroid = (0.59200693817692407, -1.4362134820281309) +station = ('kgrd', 0.0058342537586726397) +zone = ('scz018', 0.0004610001032054651) + +[29836] +centroid = (0.57813788871546146, -1.4234937667856915) +station = ('kbnl', 0.0033089839373505346) +zone = ('scz035', 0.0030691111290673083) + +[29838] +centroid = (0.58899261493238975, -1.4338045262346506) +station = ('kdnl', 0.0051793949331000377) +zone = ('scz025', 0.0027117359595023689) + +[29840] +centroid = (0.59353764429080069, -1.4402684229325817) +station = ('kiiy', 0.0058343263768481594) +zone = ('scz018', 0.0035907996053541587) + +[29841] +centroid = (0.5851461885136745, -1.4301112175512127) +station = ('kdnl', 0.0017201163334932574) +zone = ('gaz065', 0.0035062186573546011) + +[29842] +centroid = (0.58383928596978119, -1.4287859192370036) +station = ('kags', 0.0021111837477746486) +zone = ('gaz065', 0.0034560792953355216) + +[29843] +centroid = (0.57913635667394225, -1.4168543074183022) +station = ('kbnl', 0.0032906769305625482) +zone = ('scz041', 0.0019203197498265647) + +[29844] +centroid = (0.58939081180123232, -1.4353923744282375) +station = ('khqu', 0.0057854015047829862) +zone = ('scz018', 0.0024736028425958274) + +[29845] +centroid = (0.59023272372580926, -1.4346854811745948) +station = ('kdnl', 0.0065978913364156382) +zone = ('scz018', 0.0021231836328641559) + +[29847] +centroid = (0.58807291368305137, -1.4286001638447139) +station = ('kaik', 0.0024862175432320737) +zone = ('scz025', 0.0021431937272356851) + +[29848] +centroid = (0.59289562492545456, -1.4324948835238318) +station = ('kgrd', 0.0047120223846146966) +zone = ('scz019', 0.003281233421400648) + +[29849] +centroid = (0.57770843299971564, -1.4178090374257282) +station = ('kbnl', 0.0034630260372896433) +zone = ('scz040', 0.0026651478757889827) + +[29850] +centroid = (0.58659936710217753, -1.4279756152251801) +station = ('kaik', 0.0019749476351182162) +zone = ('scz030', 0.0028835808360529579) + +[29851] +centroid = (0.58481513446115618, -1.4278849802771241) +station = ('kaik', 0.0030539717717956039) +zone = ('scz030', 0.0026546214523722159) + +[29853] +centroid = (0.58299611740814272, -1.421092961679818) +station = ('kbnl', 0.0027161457406380336) +zone = ('scz035', 0.002399932279718615) + +[29856] +centroid = (0.58440843783885643, -1.4226168610096117) +station = ('kaik', 0.0039034516890277767) +zone = ('scz030', 0.0020993682576171411) + +[29860] +centroid = (0.58668696517733521, -1.4308982214175223) +station = ('kdnl', 0.0026796069782286588) +zone = ('scz025', 0.002763022464132668) + +[29899] +centroid = (0.59215571004236411, -1.435543816647433) +station = ('kgrd', 0.0055235513483082692) +zone = ('scz018', 0.00099184777221079218) + +[29902] +centroid = (0.56435104426176763, -1.4082067594800309) +station = ('karw', 0.0016171069238064234) +zone = ('scz048', 0.00040404563891643496) + +[29904] +centroid = (0.56648921222180093, -1.4087932075619936) +station = ('knbc', 0.00045227418894442409) +zone = ('scz048', 0.0017935438734867908) + +[29905] +centroid = (0.56464174630197972, -1.4081703344585417) +station = ('karw', 0.0013712315620887205) +zone = ('scz048', 0.00018701073447360361) + +[29906] +centroid = (0.56627403057832248, -1.4094035492014161) +station = ('knbc', 0.00085399392258396348) +zone = ('scz048', 0.0017738186309521975) + +[29907] +centroid = (0.56679029897106237, -1.4067217984458491) +station = ('karw', 0.0011698313876697406) +zone = ('scz048', 0.0024809392288967637) + +[29909] +centroid = (0.56438425787743307, -1.4110602855405789) +station = ('khxd', 0.0030258129256579675) +zone = ('scz051', 0.0022968854970146359) + +[29910] +centroid = (0.56230584999098809, -1.4118114403440525) +station = ('khxd', 0.0028179744073043673) +zone = ('scz051', 0.0010545028633616442) + +[29911] +centroid = (0.57493170142625538, -1.4161894940529252) +station = ('kbnl', 0.0064990768172350872) +zone = ('scz042', 0.0028773934513053614) + +[29912] +centroid = (0.56868911247747711, -1.412483758625213) +station = ('knbc', 0.0035847097616746029) +zone = ('scz047', 0.0021724490845322518) + +[29915] +centroid = (0.56052008146022503, -1.4113761726818974) +station = ('khxd', 0.0030214656157960601) +zone = ('scz051', 0.0025842333178959639) + +[29916] +centroid = (0.57104488808864895, -1.4131425331513783) +station = ('knbc', 0.0055136188491268232) +zone = ('scz042', 0.002739581340678688) + +[29918] +centroid = (0.57149952890550104, -1.4180323523035208) +station = ('kjyl', 0.0054124474804768449) +zone = ('scz042', 0.0016610036921478862) + +[29920] +centroid = (0.56491850316146852, -1.405773473796778) +station = ('karw', 0.0013330869910043383) +zone = ('scz048', 0.002195851141492719) + +[29921] +centroid = (0.57041864649974083, -1.4167345254717378) +station = ('kjyl', 0.0062561834436415092) +zone = ('scz042', 0.0017031024740088456) + +[29922] +centroid = (0.56942817214923402, -1.4185560208922892) +station = ('kjyl', 0.004702542023670573) +zone = ('scz042', 0.0033054665386999631) + +[29923] +centroid = (0.57350677971834207, -1.4180175693647563) +station = ('kjyl', 0.0063537529172006755) +zone = ('scz042', 0.0021257382535598474) + +[29924] +centroid = (0.57380989104953595, -1.4156576573232573) +station = ('krbw', 0.007221931508074036) +zone = ('scz042', 0.0018076858190790672) + +[29926] +centroid = (0.56266355522118439, -1.4091834282761544) +station = ('khxd', 0.00070373650550991913) +zone = ('scz048', 0.0021820576192568349) + +[29927] +centroid = (0.56246374992841608, -1.4147266637936584) +station = ('ksav', 0.0028467306006609351) +zone = ('scz051', 0.0015265756301281648) + +[29928] +centroid = (0.56135323183195707, -1.4094539892167985) +station = ('khxd', 0.0012450674282576777) +zone = ('scz051', 0.0032650906376989752) + +[29929] +centroid = (0.5746997820752503, -1.4126439449439612) +station = ('krbw', 0.0046772808585630521) +zone = ('scz042', 0.003971866168790225) + +[29932] +centroid = (0.572784737006792, -1.4198016274728524) +station = ('kjyl', 0.0047258825157741142) +zone = ('scz040', 0.0029694587169914418) + +[29934] +centroid = (0.56883057141335125, -1.415590846119491) +station = ('knbc', 0.0060514330274556438) +zone = ('scz047', 0.0027362331478222226) + +[29935] +centroid = (0.56520065308834588, -1.4083963895032603) +station = ('karw', 0.0011996783883875776) +zone = ('scz048', 0.00046876802307303789) + +[29936] +centroid = (0.56690639827290501, -1.4132232895358681) +station = ('knbc', 0.0037554181854259246) +zone = ('scz047', 0.00033401274626066488) + +[29939] +centroid = (0.57024290929735755, -1.417975733822586) +station = ('kjyl', 0.0051993681597211567) +zone = ('scz042', 0.0023637833131220374) + +[29940] +centroid = (0.56811229861298551, -1.4085231527668325) +station = ('knbc', 0.0011897690033020815) +zone = ('scz048', 0.0033822782050268682) + +[29941] +centroid = (0.5681100645915429, -1.4103432344706897) +station = ('knbc', 0.0017671296462224483) +zone = ('scz047', 0.0030400514691079194) + +[29943] +centroid = (0.56686728544436793, -1.4170472012072326) +station = ('ksav', 0.0063271556915644516) +zone = ('gaz101', 0.002944410113387697) + +[29944] +centroid = (0.57234782873514034, -1.4143340519784222) +station = ('krbw', 0.0064228262098283686) +zone = ('scz042', 0.0015716725474516594) + +[29945] +centroid = (0.57025688938466601, -1.409631436841849) +station = ('knbc', 0.0033940107471977284) +zone = ('scz043', 0.0043678664269115233) + +[30002] +centroid = (0.58945589512903918, -1.4706435223690528) +station = ('kpdk', 0.0019986608092611856) +zone = ('gaz045', 0.00051410606569653877) + +[30004] +centroid = (0.59592310795254899, -1.4711927076714852) +station = ('kcni', 0.0034783199274617416) +zone = ('gaz022', 0.0028108787348223949) + +[30005] +centroid = (0.59493300012118511, -1.4699345172670153) +station = ('kpdk', 0.0037362846068556624) +zone = ('gaz022', 0.0027825797752657772) + +[30008] +centroid = (0.5916253219359755, -1.4763665442528049) +station = ('kmge', 0.0011070629278953636) +zone = ('gaz032', 0.00078797694966752964) + +[30009] +centroid = (0.59479005765544679, -1.4714047302690174) +station = ('kpdk', 0.0034151847753303363) +zone = ('gaz033', 0.0026163276727390484) + +[30011] +centroid = (0.59375855061422556, -1.4632345298811669) +station = ('klzu', 0.0019548379455121959) +zone = ('gaz035', 0.0018599106190605814) + +[30012] +centroid = (0.58848673124869921, -1.4661204667059244) +station = ('k9a1', 0.0026936706544794724) +zone = ('gaz046', 0.001159380465586573) + +[30013] +centroid = (0.58721637589934261, -1.4655869719134673) +station = ('k9a1', 0.0017912990135055512) +zone = ('gaz046', 0.00081250722551214918) + +[30014] +centroid = (0.58608264492383211, -1.4629891191350439) +station = ('k9a1', 0.00095526776596837346) +zone = ('gaz048', 0.0005884326432343634) + +[30016] +centroid = (0.58498956266660052, -1.4648322042784423) +station = ('k9a1', 0.0022737020735469561) +zone = ('gaz048', 0.0013164981710261062) + +[30017] +centroid = (0.59150138610579139, -1.4654112347110839) +station = ('klzu', 0.0015275832323735986) +zone = ('gaz034', 0.0015294373770124573) + +[30019] +centroid = (0.59298625987351072, -1.4640475740599159) +station = ('klzu', 0.0011406209935861228) +zone = ('gaz034', 0.0020374088245524204) + +[30021] +centroid = (0.59004222103795401, -1.4702232645384652) +station = ('kpdk', 0.0016114404873137974) +zone = ('gaz045', 0.00063966340244689791) + +[30022] +centroid = (0.5939413564000795, -1.4702990816411718) +station = ('kpdk', 0.0026998368698641119) +zone = ('gaz033', 0.0023408164535673385) + +[30024] +centroid = (0.59451099696134535, -1.4676608070372721) +station = ('klzu', 0.0023747702743513095) +zone = ('gaz034', 0.00201773432251966) + +[30025] +centroid = (0.58740630262854454, -1.4607809111121282) +station = ('k9a1', 0.0022745521932149631) +zone = ('gaz047', 0.0025378548219095742) + +[30028] +centroid = (0.598526615597749, -1.4691512484053051) +station = ('kcni', 0.0035623436000116284) +zone = ('gaz022', 0.0013886379196962984) + +[30030] +centroid = (0.58943166995902141, -1.4711427388950009) +station = ('kpdk', 0.0019491700764169774) +zone = ('gaz045', 0.00092812264354352162) + +[30032] +centroid = (0.58886202939775545, -1.4706771374104461) +station = ('kpdk', 0.0025685441247505262) +zone = ('gaz045', 0.00078007334979452228) + +[30033] +centroid = (0.59012477511157335, -1.4710198677156605) +station = ('kpdk', 0.0012743527954523488) +zone = ('gaz045', 0.0010831208899969463) + +[30034] +centroid = (0.58801655700150435, -1.4704158441681301) +station = ('katl', 0.0027761841051507532) +zone = ('gaz045', 0.0014441276230839318) + +[30035] +centroid = (0.58860272583078665, -1.4696413019526802) +station = ('kpdk', 0.0031013059605405529) +zone = ('gaz045', 0.00088132131090399386) + +[30038] +centroid = (0.58759057449097019, -1.4685175019006134) +station = ('k9a1', 0.0042591315749137782) +zone = ('gaz046', 0.0016570049488921739) + +[30039] +centroid = (0.58988559519088013, -1.4666621121859882) +station = ('klzu', 0.0033076095835059076) +zone = ('gaz046', 0.0025057351728141452) + +[30040] +centroid = (0.59708322830634963, -1.4693541080242645) +station = ('kcni', 0.0038196989419796768) +zone = ('gaz022', 0.00093982284994616346) + +[30041] +centroid = (0.59698334311325796, -1.4678281317526609) +station = ('klzu', 0.0044280453505875367) +zone = ('gaz022', 0.00051217707252761374) + +[30043] +centroid = (0.59339937930745768, -1.4662425524871017) +station = ('klzu', 0.00077461584282159711) +zone = ('gaz034', 0.00068643540799251965) + +[30044] +centroid = (0.59205215965784319, -1.4672223977824637) +station = ('klzu', 0.0017844854845063438) +zone = ('gaz034', 0.00092218122799876646) + +[30045] +centroid = (0.59230397576232097, -1.4648141575739768) +station = ('klzu', 0.00088308177556448457) +zone = ('gaz034', 0.0014553992794448048) + +[30046] +centroid = (0.59251538749461508, -1.4660026395281223) +station = ('klzu', 0.00070398832415158492) +zone = ('gaz034', 0.00046180017268106807) + +[30047] +centroid = (0.59114553092460231, -1.4680370476641245) +station = ('klzu', 0.0028732339942254843) +zone = ('gaz034', 0.0020515016230292869) + +[30052] +centroid = (0.59018572200905306, -1.4642188606727067) +station = ('klzu', 0.0030135273044039944) +zone = ('gaz047', 0.0025308566308747983) + +[30054] +centroid = (0.58770908234718067, -1.4638391642939352) +station = ('k9a1', 0.000818641344361826) +zone = ('gaz048', 0.0020856637309132663) + +[30055] +centroid = (0.58462773845936966, -1.461713108918911) +station = ('k9a1', 0.0027437182591854071) +zone = ('gaz048', 0.0017801240036776911) + +[30056] +centroid = (0.58468966274123035, -1.4601351916487677) +station = ('k9a1', 0.0035772785490437273) +zone = ('gaz049', 0.0029003280159481063) + +[30058] +centroid = (0.58887984920941838, -1.4679762578462776) +station = ('kpdk', 0.0037300883363213344) +zone = ('gaz045', 0.0017891064349048436) + +[30060] +centroid = (0.5921279244006723, -1.4755297810495211) +station = ('kmge', 0.00039967809097556399) +zone = ('gaz032', 0.00057191283244058711) + +[30062] +centroid = (0.59345613741473258, -1.4742850296802914) +station = ('kmge', 0.0016420230914347305) +zone = ('gaz032', 0.0018724298534742753) + +[30064] +centroid = (0.59236015791094276, -1.4767891757311753) +station = ('kryy', 0.0012983642221329806) +zone = ('gaz032', 0.00053788363023664256) + +[30066] +centroid = (0.59397722291620791, -1.4748931722048564) +station = ('kryy', 0.0013933803056600325) +zone = ('gaz032', 0.0018942971753942417) + +[30067] +centroid = (0.59226488038707636, -1.4741432216785668) +station = ('kmge', 0.00084676826473742352) +zone = ('gaz033', 0.0015420137914395802) + +[30068] +centroid = (0.59284171170486044, -1.4736419282108091) +station = ('kmge', 0.001494389463985059) +zone = ('gaz033', 0.0012593076410073764) + +[30070] +centroid = (0.58598438288694488, -1.4642387748794718) +station = ('k9a1', 0.001167421193995774) +zone = ('gaz048', 0.00072858102766424932) + +[30071] +centroid = (0.59236385800895686, -1.4696760165515022) +station = ('kpdk', 0.0016795870768321218) +zone = ('gaz033', 0.0021660164529443138) + +[30072] +centroid = (0.58978368541585613, -1.4696800308087818) +station = ('kpdk', 0.0020912570559807565) +zone = ('gaz045', 0.00046073554524594625) + +[30075] +centroid = (0.59438409407143289, -1.47288796342724) +station = ('kmge', 0.0030388435937315243) +zone = ('gaz033', 0.0021651707949765565) + +[30076] +centroid = (0.59390891072928498, -1.4715116316857024) +station = ('kpdk', 0.0025385585557211551) +zone = ('gaz033', 0.0017528553095884167) + +[30078] +centroid = (0.59098626963035783, -1.4663906087675482) +station = ('klzu', 0.0021951006049370277) +zone = ('gaz034', 0.0017590244479900069) + +[30079] +centroid = (0.58978262076501242, -1.4705685081178022) +station = ('kpdk', 0.0017087841140904167) +zone = ('gaz045', 0.00057605213039042791) + +[30080] +centroid = (0.59113701371785254, -1.4747830419290555) +station = ('kmge', 0.00086016080877996336) +zone = ('gaz032', 0.0016864742316177507) + +[30082] +centroid = (0.59087420203908725, -1.4754306638013004) +station = ('kmge', 0.0011187517743133446) +zone = ('gaz032', 0.0016275609184153055) + +[30083] +centroid = (0.58987611805304174, -1.4695320443415054) +station = ('kpdk', 0.0021061627947893554) +zone = ('gaz045', 0.00061094029721032138) + +[30084] +centroid = (0.59086545793953482, -1.4698491881198852) +station = ('kpdk', 0.0013178582606099348) +zone = ('gaz045', 0.0014490767531147879) + +[30087] +centroid = (0.59002375545446806, -1.4682918831882084) +station = ('kpdk', 0.0028499184908668757) +zone = ('gaz045', 0.0015612709515077658) + +[30088] +centroid = (0.58915424987441689, -1.4692594064590512) +station = ('kpdk', 0.0028008089639616819) +zone = ('gaz045', 0.00069217639327045057) + +[30092] +centroid = (0.59292999045842631, -1.4701254911937685) +station = ('kpdk', 0.0018400747776168682) +zone = ('gaz033', 0.0019062046958001984) + +[30093] +centroid = (0.59181559773102788, -1.4691718956503563) +station = ('kpdk', 0.0018304980390377599) +zone = ('gaz034', 0.0024133164951079303) + +[30094] +centroid = (0.58666867412677426, -1.4670113176627273) +station = ('k9a1', 0.0029721523156002053) +zone = ('gaz046', 0.00081296233782637817) + +[30096] +centroid = (0.5929632564339693, -1.4686147341932421) +station = ('klzu', 0.0026483924646775229) +zone = ('gaz034', 0.0017784956983332126) + +[30097] +centroid = (0.59386820965112841, -1.4686176314398003) +station = ('klzu', 0.0027789350844258302) +zone = ('gaz034', 0.0020943580571413907) + +[30101] +centroid = (0.59401434606939785, -1.4784221406859261) +station = ('kryy', 0.0016169116745828262) +zone = ('gaz032', 0.0024920212734908108) + +[30102] +centroid = (0.59521204336199396, -1.4771382066749892) +station = ('kryy', 0.0016524513451355064) +zone = ('gaz032', 0.002939487633598744) + +[30103] +centroid = (0.59982383156429364, -1.4821201966649293) +station = ('krmg', 0.0035779238463282299) +zone = ('gaz012', 0.0024554086196753172) + +[30104] +centroid = (0.59493279068167493, -1.4845157832363391) +station = ('kpuj', 0.0035212707520829579) +zone = ('gaz030', 0.0024179753466355126) + +[30105] +centroid = (0.60096232728866217, -1.4865413600063262) +station = ('krmg', 0.0014442137379480607) +zone = ('gaz011', 0.0025953706052470995) + +[30106] +centroid = (0.59060214011528644, -1.4770415503410137) +station = ('kfty', 0.0018874527675556245) +zone = ('gaz032', 0.0019384270517884723) + +[30107] +centroid = (0.59928133087289637, -1.4721117980555856) +station = ('kcni', 0.0011781555537252457) +zone = ('gaz021', 0.0024793504568783407) + +[30108] +centroid = (0.58523856879098257, -1.4881200103147552) +station = ('kctj', 0.0023754940128535205) +zone = ('gaz042', 0.0028111602105630362) + +[30110] +centroid = (0.58895107609619224, -1.4859063394112806) +station = ('kctj', 0.00200693556803249) +zone = ('gaz041', 0.0013907126656968318) + +[30113] +centroid = (0.5908069719563005, -1.4871131647758646) +station = ('kctj', 0.0039354779897777933) +zone = ('gaz041', 0.00099035877009145176) + +[30114] +centroid = (0.59773753478962977, -1.4752302650965865) +station = ('kcni', 0.0018546340053889885) +zone = ('gaz021', 0.00069689483294331576) + +[30115] +centroid = (0.59697402305505232, -1.4730659521043585) +station = ('kcni', 0.0019129164771704132) +zone = ('gaz021', 0.0012975592971919384) + +[30116] +centroid = (0.58539372856148497, -1.4835836552427266) +station = ('kctj', 0.0026454227052139651) +zone = ('gaz042', 0.0013358188692535065) + +[30117] +centroid = (0.58611386886415029, -1.485841360803229) +station = ('kctj', 0.00087827420934801274) +zone = ('gaz042', 0.00076701428739635021) + +[30118] +centroid = (0.58594846401093881, -1.4853350931471028) +station = ('kctj', 0.0012123673663846522) +zone = ('gaz042', 0.00039012475982408667) + +[30120] +centroid = (0.59634226622570796, -1.4809464801962557) +station = ('kvpc', 0.00060389448471888179) +zone = ('gaz020', 0.001233009805540341) + +[30121] +centroid = (0.59706376788518989, -1.47965507617612) +station = ('kvpc', 0.0016840746182460525) +zone = ('gaz020', 0.0010315372307412559) + +[30122] +centroid = (0.58934374027130587, -1.4772703455526577) +station = ('kfty', 0.0018315187045027123) +zone = ('gaz043', 0.0021601333333626425) + +[30124] +centroid = (0.59574529380835572, -1.4895652302018689) +station = ('krmg', 0.0045752489996159756) +zone = ('gaz019', 0.0029517310194573433) + +[30125] +centroid = (0.59344775983432296, -1.4883469729306844) +station = ('kpuj', 0.0051226994503565651) +zone = ('gaz030', 0.0012703951851286909) + +[30126] +centroid = (0.59018352289419551, -1.4757427461248496) +station = ('kfty', 0.00077232321191453518) +zone = ('gaz032', 0.0022321395283248923) + +[30127] +centroid = (0.5912067745280547, -1.4782066797897675) +station = ('kmge', 0.002690481517609276) +zone = ('gaz032', 0.0020829841199426738) + +[30132] +centroid = (0.59321702730720938, -1.4810683739912152) +station = ('kpuj', 0.0018081583599522744) +zone = ('gaz031', 0.0012037697016391304) + +[30134] +centroid = (0.58952890225165, -1.4797144348239804) +station = ('kpuj', 0.0032607840587396391) +zone = ('gaz043', 0.0013415639272277501) + +[30135] +centroid = (0.58765518657987892, -1.4788935192103048) +station = ('kfty', 0.0037264936538948827) +zone = ('gaz043', 0.00073050381256422215) + +[30137] +centroid = (0.59557802145284466, -1.4793574277254848) +station = ('kvpc', 0.0012967721926792485) +zone = ('gaz020', 0.0022943675069067313) + +[30139] +centroid = (0.60095771961943689, -1.4783897822815941) +station = ('kcni', 0.004588663305462772) +zone = ('gaz012', 0.0027452380425839569) + +[30141] +centroid = (0.59098508280646644, -1.4795093586368711) +station = ('kpuj', 0.0026125399173793666) +zone = ('gaz031', 0.0017513172412611062) + +[30143] +centroid = (0.60143972719896011, -1.4736120656273075) +station = ('kcni', 0.0025822600580153055) +zone = ('gaz013', 0.00049294107140834776) + +[30144] +centroid = (0.59405534385352721, -1.476391624634156) +station = ('kryy', 0.00042984003944758324) +zone = ('gaz032', 0.0016772470523454504) + +[30145] +centroid = (0.59770037672985477, -1.4832842614628394) +station = ('kvpc', 0.0027744940495848282) +zone = ('gaz020', 0.0021026739153996287) + +[30147] +centroid = (0.59604088277047351, -1.4871643203762408) +station = ('krmg', 0.0035310221657852935) +zone = ('gaz019', 0.0019667162510212514) + +[30148] +centroid = (0.60141937665988188, -1.4705902200136969) +station = ('kcni', 0.0034775217134435403) +zone = ('gaz014', 0.0012962551911515742) + +[30149] +centroid = (0.59881817284929451, -1.4874745701040752) +station = ('krmg', 0.0011068375528750171) +zone = ('gaz019', 0.00082989694600871927) + +[30152] +centroid = (0.59323126919390567, -1.4773613819264417) +station = ('kryy', 0.00080528184942776481) +zone = ('gaz032', 0.0013149674031506422) + +[30153] +centroid = (0.59271175448875701, -1.484480230879476) +station = ('kpuj', 0.001872077056144201) +zone = ('gaz030', 0.0020693382761567411) + +[30157] +centroid = (0.59140472977181602, -1.4813416052856148) +station = ('kpuj', 0.0010428343459146666) +zone = ('gaz031', 0.00062377873038335489) + +[30161] +centroid = (0.59763098243879553, -1.4865246746586771) +station = ('krmg', 0.00189094859769492) +zone = ('gaz019', 0.00072112023399532551) + +[30164] +centroid = (0.5828673121093455, -1.4631788189714432) +station = ('k9a1', 0.0040935660898778689) +zone = ('gaz059', 0.0025385748809019296) + +[30165] +centroid = (0.59869894940809087, -1.4882265975721745) +station = ('krmg', 0.0016896999002085948) +zone = ('gaz019', 0.0010513138553848596) + +[30168] +centroid = (0.58963404088579008, -1.4763409577259705) +station = ('kfty', 0.0010363211378777689) +zone = ('gaz032', 0.0027618386318533691) + +[30170] +centroid = (0.58345011245317147, -1.4864877260384124) +station = ('kctj', 0.0035155495387869562) +zone = ('gaz052', 0.0023845966920521835) + +[30171] +centroid = (0.59940804177659102, -1.4787420944444016) +station = ('kvpc', 0.0040840004318705905) +zone = ('gaz020', 0.0024781815471512495) + +[30173] +centroid = (0.59573534543161943, -1.486209031863454) +station = ('krmg', 0.0037900130403282807) +zone = ('gaz030', 0.0023462332020631137) + +[30175] +centroid = (0.60274797364637744, -1.4752694128317088) +station = ('kcni', 0.00416810372780951) +zone = ('gaz013', 0.0015138103687368271) + +[30176] +centroid = (0.58935817414421987, -1.4887683303187009) +station = ('kctj', 0.0032452996974162737) +zone = ('gaz041', 0.001373162662570404) + +[30177] +centroid = (0.60059060706457235, -1.472671752039503) +station = ('kcni', 0.0018433523489694611) +zone = ('gaz013', 0.0015652317505377863) + +[30178] +centroid = (0.5950779148089782, -1.4830250102557483) +station = ('kvpc', 0.0018702633752704235) +zone = ('gaz020', 0.0031203498368606065) + +[30179] +centroid = (0.58956061488415878, -1.4837655185507845) +station = ('kpuj', 0.0025171550757367056) +zone = ('gaz041', 0.0028765615416527189) + +[30180] +centroid = (0.5884744615840577, -1.4820992527139054) +station = ('kpuj', 0.0033817254664452855) +zone = ('gaz043', 0.0021995580588942314) + +[30182] +centroid = (0.58740485400526543, -1.4878728018795024) +station = ('kctj', 0.0015050706724674134) +zone = ('gaz041', 0.0024768532214148081) + +[30183] +centroid = (0.59932924016086353, -1.4765973465930886) +station = ('kcni', 0.0026454407451565608) +zone = ('gaz021', 0.0024655311235769273) + +[30184] +centroid = (0.59781076880504347, -1.4790092868995894) +station = ('kvpc', 0.0026016582093695202) +zone = ('gaz020', 0.0014567269334341362) + +[30185] +centroid = (0.58502392819957227, -1.4820955351625986) +station = ('kctj', 0.0038891058918959142) +zone = ('gaz042', 0.002601661881440326) + +[30187] +centroid = (0.58752231466392468, -1.480863577056786) +station = ('kctj', 0.0044355545223178448) +zone = ('gaz043', 0.0013402935938383233) + +[30188] +centroid = (0.59556791599647563, -1.4740640535436964) +station = ('kryy', 0.0028055380973513763) +zone = ('gaz021', 0.0021182594114292188) + +[30189] +centroid = (0.59557987150185177, -1.4760368864636881) +station = ('kryy', 0.0019816332143967439) +zone = ('gaz021', 0.0024933312644385397) + +[30204] +centroid = (0.57693694511045668, -1.4681891182018507) +station = ('kopn', 0.0027415749006041582) +zone = ('gaz070', 0.00044663464866182207) + +[30205] +centroid = (0.58062609991027458, -1.4743693116298702) +station = ('kffc', 0.0021868070238355852) +zone = ('gaz054', 0.0025731117977337808) + +[30206] +centroid = (0.57763518153100946, -1.4740741590000654) +station = ('k6a2', 0.0035202082431811371) +zone = ('gaz068', 0.0010115658717957307) + +[30213] +centroid = (0.5862438435335463, -1.477190234939991) +station = ('katl', 0.0031407535228429491) +zone = ('gaz044', 0.0005530894391348178) + +[30214] +centroid = (0.58451886482063031, -1.4745588194800516) +station = ('kffc', 0.002459514955556174) +zone = ('gaz054', 0.0013397548405154115) + +[30215] +centroid = (0.58279358940174131, -1.4740428128866996) +station = ('kffc', 0.0016645494718992547) +zone = ('gaz054', 0.00067371308810531877) + +[30216] +centroid = (0.5799528216980252, -1.4640670693876605) +station = ('k6a2', 0.0056951166197490178) +zone = ('gaz058', 0.0014900763691259988) + +[30217] +centroid = (0.5808786490530381, -1.4858658826792193) +station = ('klgc', 0.0048484488805938513) +zone = ('gaz052', 0.00027576066487162781) + +[30218] +centroid = (0.57821567804022278, -1.4763247610705119) +station = ('kffc', 0.0041533203585651015) +zone = ('gaz067', 0.0021411016973208875) + +[30220] +centroid = (0.57989435316808347, -1.4804501783701587) +station = ('kffc', 0.0044848348642632877) +zone = ('gaz053', 0.0024007305860195187) + +[30222] +centroid = (0.57673279394785093, -1.479053007397352) +station = ('klgc', 0.0048540059068053433) +zone = ('gaz067', 0.00081018611466089619) + +[30223] +centroid = (0.5809991814911809, -1.4709621496772969) +station = ('k6a2', 0.001081563499638409) +zone = ('gaz056', 0.00049076383064749931) + +[30224] +centroid = (0.57952776421199459, -1.4702469486564147) +station = ('k6a2', 0.00065589675657143646) +zone = ('gaz056', 0.0011847809763915003) + +[30228] +centroid = (0.58301234897018628, -1.4714408411312414) +station = ('k6a2', 0.0031281989595060592) +zone = ('gaz057', 0.0023743803167842136) + +[30230] +centroid = (0.57882954524473429, -1.4821434619038583) +station = ('klgc', 0.0035087837152617948) +zone = ('gaz066', 0.0027763308273407545) + +[30233] +centroid = (0.58105775474087784, -1.4655450141982493) +station = ('k6a2', 0.0046000210369574997) +zone = ('gaz058', 0.00018782602269095858) + +[30234] +centroid = (0.5816114953526581, -1.4666169954248243) +station = ('k6a2', 0.0039414619942396102) +zone = ('gaz058', 0.0012354158027003106) + +[30236] +centroid = (0.58510372465297356, -1.4717465006431429) +station = ('katl', 0.0027065342495058414) +zone = ('gaz055', 0.00057106190855271818) + +[30238] +centroid = (0.5845675246001758, -1.4726965182615888) +station = ('katl', 0.0028463926332048649) +zone = ('gaz055', 0.00090534919288873716) + +[30240] +centroid = (0.57660086450969261, -1.4856280292087576) +station = ('klgc', 0.0008513590285012814) +zone = ('gaz066', 0.0013461196748898354) + +[30241] +centroid = (0.57634862952619426, -1.4826475129918344) +station = ('klgc', 0.0018161529099326363) +zone = ('gaz066', 0.0011701921152320091) + +[30248] +centroid = (0.58209231610828993, -1.4679380002290738) +station = ('k6a2', 0.0032782731463143386) +zone = ('gaz057', 0.0019161644727638176) + +[30250] +centroid = (0.58357757384844466, -1.4715605009047581) +station = ('k6a2', 0.0037020511814596746) +zone = ('gaz055', 0.001944940979365202) + +[30251] +centroid = (0.57936239426536806, -1.4783495349890432) +station = ('kffc', 0.0035976031304582518) +zone = ('gaz067', 0.0027039112429345573) + +[30252] +centroid = (0.5842229966058321, -1.4670742891421393) +station = ('k9a1', 0.0040668785764567152) +zone = ('gaz057', 0.0014727635776713816) + +[30253] +centroid = (0.58379388995593684, -1.4692804725831228) +station = ('k6a2', 0.0040965455475073607) +zone = ('gaz057', 0.00041758462229281394) + +[30256] +centroid = (0.57608927359934792, -1.4714853470271672) +station = ('kopn', 0.0011322456535288493) +zone = ('gaz068', 0.0018793657960532856) + +[30257] +centroid = (0.57846169965158389, -1.4693267238083008) +station = ('k6a2', 0.0019509891433577512) +zone = ('gaz070', 0.0013536712149855618) + +[30258] +centroid = (0.57547847817432007, -1.4739148453459434) +station = ('kopn', 0.002721189010303477) +zone = ('gaz068', 0.0022657575395315945) + +[30259] +centroid = (0.58060468472035265, -1.4789476418704093) +station = ('kffc', 0.0030462588903023397) +zone = ('gaz053', 0.0015696369592659415) + +[30260] +centroid = (0.58616336640173683, -1.4717898720750553) +station = ('katl', 0.0019163330503407954) +zone = ('gaz055', 0.00086748155237062062) + +[30263] +centroid = (0.58273777377226255, -1.4810678503924393) +station = ('kffc', 0.0042766029248176426) +zone = ('gaz053', 0.0015213542410571984) + +[30265] +centroid = (0.58314354537005875, -1.478485443777896) +station = ('kffc', 0.0022448302056383776) +zone = ('gaz053', 0.0012696575313464202) + +[30268] +centroid = (0.58549158917264421, -1.4786920733080395) +station = ('kffc', 0.0038714369129438549) +zone = ('gaz044', 0.0020107347501776341) + +[30269] +centroid = (0.58279831924401415, -1.4760356123733342) +station = ('kffc', 0.00044386381686890099) +zone = ('gaz054', 0.001179726673002923) + +[30273] +centroid = (0.58614785042468664, -1.4708068851870395) +station = ('katl', 0.002626789190546108) +zone = ('gaz055', 0.0014572803397934176) + +[30274] +centroid = (0.58563856334895459, -1.4730656204918005) +station = ('katl', 0.0017320293016244992) +zone = ('gaz055', 0.00066017258138812525) + +[30275] +centroid = (0.58358790619761636, -1.4813339432901984) +station = ('kctj', 0.0052377305270028965) +zone = ('gaz053', 0.0021773413831634074) + +[30276] +centroid = (0.58054457558091399, -1.4760531703856092) +station = ('kffc', 0.0018150547861250604) +zone = ('gaz054', 0.0028715468153107052) + +[30277] +centroid = (0.58250901346720363, -1.477407179366014) +station = ('kffc', 0.0012123412022590182) +zone = ('gaz053', 0.00170626702990515) + +[30281] +centroid = (0.58587034307361952, -1.4694518290090837) +station = ('katl', 0.0037706650374278116) +zone = ('gaz057', 0.0020734201605653404) + +[30284] +centroid = (0.58194293337761183, -1.4711198576285072) +station = ('k6a2', 0.0020331801077145199) +zone = ('gaz056', 0.001432470858026458) + +[30285] +centroid = (0.5757435064212354, -1.4705828547242534) +station = ('kopn', 0.00057755590380662101) +zone = ('gaz069', 0.0019517772794960429) + +[30286] +centroid = (0.57384971946306651, -1.4718460367703845) +station = ('kopn', 0.001640199823533175) +zone = ('gaz069', 0.00045978789358259211) + +[30288] +centroid = (0.58735270356721581, -1.4717857007381427) +station = ('katl', 0.0015440756986746223) +zone = ('gaz055', 0.0019865305753027237) + +[30289] +centroid = (0.58159409442001575, -1.4771396902048533) +station = ('kffc', 0.0012425444503333348) +zone = ('gaz053', 0.0019614193151126411) + +[30290] +centroid = (0.58427352388767739, -1.47636893535388) +station = ('kffc', 0.0019445202784513387) +zone = ('gaz054', 0.0017677927025287281) + +[30291] +centroid = (0.58594738190680251, -1.4755588058749818) +station = ('katl', 0.0020959517245100149) +zone = ('gaz044', 0.001115089809992098) + +[30292] +centroid = (0.57889934096152151, -1.4729396426263914) +station = ('k6a2', 0.0020064823186950274) +zone = ('gaz068', 0.0013327932106216307) + +[30293] +centroid = (0.57555150275022349, -1.4767492600511822) +station = ('kopn', 0.0050960681352774737) +zone = ('gaz067', 0.0015837947937165245) + +[30294] +centroid = (0.58712619473689209, -1.4707391838653547) +station = ('katl', 0.0024210987256899079) +zone = ('gaz055', 0.0021577642896915806) + +[30295] +centroid = (0.5775343189535368, -1.4714941609398899) +station = ('k6a2', 0.0024413571964679399) +zone = ('gaz068', 0.0011526602492823979) + +[30296] +centroid = (0.58578808570597296, -1.4737761091237025) +station = ('katl', 0.001519462974210797) +zone = ('gaz055', 0.0012693888900242021) + +[30297] +centroid = (0.58670710627690326, -1.4725866846917608) +station = ('katl', 0.0010602205991914835) +zone = ('gaz055', 0.0013095547717933136) + +[30303] +centroid = (0.58910550282840868, -1.4728825354532664) +station = ('katl', 0.0019091134817070898) +zone = ('gaz045', 0.0023958169328248094) + +[30305] +centroid = (0.59054429990387525, -1.4728679270474272) +station = ('kpdk', 0.0015360564403506332) +zone = ('gaz033', 0.001799536605858179) + +[30306] +centroid = (0.58973493836984803, -1.4722113690894119) +station = ('kpdk', 0.0018026569983613453) +zone = ('gaz045', 0.0018426604425805858) + +[30307] +centroid = (0.58941652050111415, -1.47189899005989) +station = ('kpdk', 0.0020188658575603902) +zone = ('gaz045', 0.0015567555434407238) + +[30308] +centroid = (0.58941734080586261, -1.4726758012033674) +station = ('kfty', 0.002021368011630898) +zone = ('gaz045', 0.0022024815978688018) + +[30309] +centroid = (0.58991835502094003, -1.4728118496185605) +station = ('kpdk', 0.0019169405862613567) +zone = ('gaz045', 0.0023673944250109835) + +[30310] +centroid = (0.58863997115702427, -1.4735115870222701) +station = ('katl', 0.0013409193787316735) +zone = ('gaz044', 0.0033350364058134276) + +[30311] +centroid = (0.58858195641268796, -1.4743842341949747) +station = ('kfty', 0.0012031560884598117) +zone = ('gaz044', 0.0027578521070077393) + +[30312] +centroid = (0.58895655643004352, -1.4726255880807877) +station = ('katl', 0.0018560964055502895) +zone = ('gaz045', 0.0022110133124932799) + +[30313] +centroid = (0.5893023759680337, -1.4730114454718186) +station = ('kfty', 0.0017619880893101037) +zone = ('gaz045', 0.002484548060609481) + +[30314] +centroid = (0.58918084869221732, -1.4736206701005197) +station = ('kfty', 0.0013047189468623945) +zone = ('gaz045', 0.0029980081691058148) + +[30315] +centroid = (0.58822533328662796, -1.4727527178635029) +station = ('katl', 0.0011810809010348625) +zone = ('gaz045', 0.0025646036741637625) + +[30316] +centroid = (0.58837747363752435, -1.4718675043201839) +station = ('katl', 0.0018244348600278215) +zone = ('gaz045', 0.0018545076956176282) + +[30317] +centroid = (0.58901369850975382, -1.4715845864484356) +station = ('kpdk', 0.0023728177933303768) +zone = ('gaz045', 0.0013589394290410557) + +[30318] +centroid = (0.58979450645721854, -1.4739010921514377) +station = ('kfty', 0.0010050037699162967) +zone = ('gaz033', 0.0028225218886074816) + +[30319] +centroid = (0.59127304467975306, -1.471946393202374) +station = ('kpdk', 0.00053613587872808387) +zone = ('gaz033', 0.0010429447437056956) + +[30322] +centroid = (0.5898251544388835, -1.4717762934134748) +station = ('kpdk', 0.0015976992667951241) +zone = ('gaz045', 0.0015088854140325647) + +[30324] +centroid = (0.59024251502291292, -1.4723279047235676) +station = ('kpdk', 0.0014125211965711365) +zone = ('gaz033', 0.002035282643536532) + +[30326] +centroid = (0.59078553931308597, -1.4724290640070132) +station = ('kpdk', 0.0010989973178775465) +zone = ('gaz033', 0.0014967467354577762) + +[30327] +centroid = (0.59113896848661485, -1.4733569508505433) +station = ('kmge', 0.0016580991117422323) +zone = ('gaz033', 0.0014450685218491289) + +[30328] +centroid = (0.5922345116580916, -1.4728126175634313) +station = ('kpdk', 0.0015124189716326873) +zone = ('gaz033', 0.00044010070367480475) + +[30329] +centroid = (0.59040088619923881, -1.4717142818651512) +station = ('kpdk', 0.0010303454751883021) +zone = ('gaz045', 0.0017094529279683174) + +[30331] +centroid = (0.58830324478443696, -1.4755694523834191) +station = ('kfty', 0.0013847623262112391) +zone = ('gaz044', 0.0019493772998273253) + +[30332] +centroid = (0.58954204458091752, -1.4731370742713772) +station = ('kfty', 0.0016290255291488388) +zone = ('gaz045', 0.0025885021902750799) + +[30334] +centroid = (0.58902863852815091, -1.4728352370305371) +station = ('katl', 0.0018505982147167654) +zone = ('gaz045', 0.0023685167853412575) + +[30336] +centroid = (0.58884557094290924, -1.4759819260455429) +station = ('kfty', 0.0010773807568690392) +zone = ('gaz044', 0.0023361800602953037) + +[30337] +centroid = (0.58713132600489282, -1.4739319670259055) +station = ('katl', 0.00029796932744845808) +zone = ('gaz055', 0.0021781264065087939) + +[30338] +centroid = (0.59247327269976446, -1.4716287956383887) +station = ('kpdk', 0.0011284838106075279) +zone = ('gaz033', 0.00057830753295567744) + +[30339] +centroid = (0.59125332245920548, -1.4741415636157775) +station = ('kmge', 0.001058776190814819) +zone = ('gaz033', 0.0018503847934722283) + +[30340] +centroid = (0.59162949327288772, -1.4704888338374484) +station = ('kpdk', 0.00072934808932827145) +zone = ('gaz033', 0.0016250885171038829) + +[30341] +centroid = (0.59145885243192031, -1.4711182344723028) +station = ('kpdk', 0.00018147587602283067) +zone = ('gaz033', 0.0012677879195326786) + +[30342] +centroid = (0.59135558130007981, -1.4726266003717536) +station = ('kpdk', 0.0010910766487736688) +zone = ('gaz033', 0.00096457882049921361) + +[30344] +centroid = (0.58776339699350255, -1.4741189441486717) +station = ('katl', 0.00060895302175487944) +zone = ('gaz044', 0.0024259065593159445) + +[30345] +centroid = (0.59082400636979993, -1.4710267443129132) +station = ('kpdk', 0.00060059799397042747) +zone = ('gaz045', 0.0016283163870172718) + +[30346] +centroid = (0.592089509703836, -1.4719910736312252) +station = ('kpdk', 0.00090918758131262325) +zone = ('gaz033', 0.00030772003322720581) + +[30349] +centroid = (0.58682311831228318, -1.4752204912527753) +station = ('katl', 0.0014010063253010973) +zone = ('gaz044', 0.001225015906388253) + +[30350] +centroid = (0.59301894989040049, -1.4718781682819138) +station = ('kpdk', 0.0017089221634469631) +zone = ('gaz033', 0.00081454634923415687) + +[30354] +centroid = (0.58750397125348619, -1.4728291632847401) +station = ('katl', 0.00070386135185107471) +zone = ('gaz055', 0.0021300870040985198) + +[30360] +centroid = (0.59225667733959197, -1.4708339377904454) +station = ('kpdk', 0.00096636254751900725) +zone = ('gaz033', 0.0012038506087326786) + +[30363] +centroid = (0.58976427735457404, -1.4730400514182587) +station = ('kfty', 0.0017123848254596544) +zone = ('gaz045', 0.0025279927184926046) + +[30401] +centroid = (0.5689706515391163, -1.4373235812455694) +station = ('ksbo', 0.00043839184724642601) +zone = ('gaz086', 0.00076602553068483422) + +[30410] +centroid = (0.56177813223835515, -1.4401516254990383) +station = ('kvdi', 0.0021090330350131323) +zone = ('gaz112', 0.00036217999536159167) + +[30411] +centroid = (0.56074152883571815, -1.4450378841795066) +station = ('kezm', 0.0051465989704046868) +zone = ('gaz111', 0.0010520253689973009) + +[30412] +centroid = (0.55988280939044444, -1.4397359229777982) +station = ('kvdi', 0.0026485427179084296) +zone = ('gaz112', 0.0017868000264607479) + +[30413] +centroid = (0.57402098862256457, -1.4400824755540742) +station = ('ksbo', 0.0051284593247014352) +zone = ('gaz076', 0.0031972274174344698) + +[30415] +centroid = (0.56416867480822674, -1.4242497037913153) +station = ('ktbr', 0.0033974373521725078) +zone = ('gaz100', 0.0024164837300910519) + +[30417] +centroid = (0.56148058850747518, -1.4297910368999345) +station = ('kcwv', 0.00091268979362538834) +zone = ('gaz115', 0.00055733434595092095) + +[30420] +centroid = (0.56353927417337246, -1.4338357327216764) +station = ('kvdi', 0.0036434317730710784) +zone = ('gaz099', 0.0023221060464813478) + +[30421] +centroid = (0.56163995452147486, -1.4330473674985504) +station = ('kvdi', 0.0039116508885220398) +zone = ('gaz114', 0.0024466076732694896) + +[30423] +centroid = (0.56110255019149324, -1.4282142366405128) +station = ('kcwv', 0.0010659510430788589) +zone = ('gaz115', 0.0008428309034215905) + +[30425] +centroid = (0.5704440410403574, -1.4328354147141882) +station = ('ksbo', 0.0041868566651572427) +zone = ('gaz087', 0.0027071883706258322) + +[30426] +centroid = (0.57651098005321488, -1.4249205734491968) +station = ('kbnl', 0.0052990023621023626) +zone = ('gaz088', 0.0049231504755472113) + +[30427] +centroid = (0.55715979905136048, -1.4305145456880564) +station = ('kcwv', 0.0050258124476890769) +zone = ('gaz114', 0.0025710017784888036) + +[30428] +centroid = (0.56242441020707612, -1.4436513422618449) +station = ('kvdi', 0.0050987341770789467) +zone = ('gaz111', 0.0018804817633763697) + +[30429] +centroid = (0.56139293807244006, -1.4300559255205099) +station = ('kcwv', 0.0011485069850957876) +zone = ('gaz115', 0.00074343349407348638) + +[30434] +centroid = (0.57640664427053068, -1.4378684032248719) +station = ('ksbo', 0.0070831309308302219) +zone = ('gaz076', 0.00071573260587217021) + +[30436] +centroid = (0.5612272190599632, -1.4362969087663762) +station = ('kvdi', 0.0013195830402041875) +zone = ('gaz113', 0.00082295367003774682) + +[30438] +centroid = (0.5613958178657058, -1.4315281456511519) +station = ('kcwv', 0.0023030283839715086) +zone = ('gaz114', 0.0021640218704038639) + +[30439] +centroid = (0.56556972041197273, -1.4324899791486336) +station = ('kcwv', 0.0046875821135702383) +zone = ('gaz099', 3.5929051239513081e-05) + +[30441] +centroid = (0.57241678669388663, -1.4350963142272217) +station = ('ksbo', 0.0037533080288786754) +zone = ('gaz086', 0.0037894436602623604) + +[30442] +centroid = (0.57246438182258852, -1.4308825134542542) +station = ('ksbo', 0.0064852424953036128) +zone = ('gaz087', 0.00031888938040256713) + +[30445] +centroid = (0.56136736899889828, -1.441440882764194) +station = ('kvdi', 0.0032372273361133152) +zone = ('gaz112', 0.00082880684095328809) + +[30446] +centroid = (0.56834004662707815, -1.421797847804821) +station = ('kjyl', 0.0024255362957277429) +zone = ('gaz101', 0.0038658429492772627) + +[30448] +centroid = (0.56702675617812248, -1.4375122338844173) +station = ('ksbo', 0.0023017045324046624) +zone = ('gaz086', 0.0019907309589909839) + +[30449] +centroid = (0.56749771582348074, -1.4235085671777481) +station = ('kjyl', 0.0023286617231046366) +zone = ('gaz100', 0.0033855906930007236) + +[30450] +centroid = (0.56831992298080281, -1.4298268859627705) +station = ('ktbr', 0.0030647476457493538) +zone = ('gaz099', 0.0035502908848366833) + +[30451] +centroid = (0.56532485071791794, -1.4303402745622447) +station = ('kcwv', 0.0035441748060863398) +zone = ('gaz099', 0.0018005237162810545) + +[30452] +centroid = (0.56418317849431088, -1.4292288488945746) +station = ('kcwv', 0.0022046533113195517) +zone = ('gaz100', 0.0024834188570519921) + +[30453] +centroid = (0.55869849877321109, -1.4332949075463608) +station = ('kvdi', 0.0048693612258668088) +zone = ('gaz114', 0.001118790361027187) + +[30454] +centroid = (0.56611634008040468, -1.4439171384536309) +station = ('kdbn', 0.0043668460599159929) +zone = ('gaz098', 0.0024671083772215162) + +[30455] +centroid = (0.57056520179703085, -1.4277191565448921) +station = ('kjyl', 0.0031284461728848228) +zone = ('gaz087', 0.0029576894001267515) + +[30456] +centroid = (0.57562265982382732, -1.4276122900347925) +station = ('kjyl', 0.0065474195735842899) +zone = ('gaz077', 0.0033075693807514961) + +[30457] +centroid = (0.56549142494172822, -1.4410749395799283) +station = ('kvdi', 0.0046340813475030784) +zone = ('gaz098', 6.3397560768560401e-05) + +[30458] +centroid = (0.56548102277938628, -1.4281726628977303) +station = ('ktbr', 0.0019789179627124117) +zone = ('gaz100', 0.0012545179669978701) + +[30460] +centroid = (0.56581919777525269, -1.427358100282532) +station = ('ktbr', 0.0012941950071530262) +zone = ('gaz100', 0.00068523906784043577) + +[30461] +centroid = (0.56743776376367472, -1.4262638661079943) +station = ('ktbr', 0.00056941984159999167) +zone = ('gaz100', 0.0020368769468292105) + +[30464] +centroid = (0.56613646372668025, -1.4350962793206365) +station = ('ksbo', 0.0038380915352310926) +zone = ('gaz099', 0.0023049562914797647) + +[30467] +centroid = (0.57166153036667111, -1.4242503495631382) +station = ('kjyl', 0.0018968530447418771) +zone = ('gaz088', 0.00013414227594942549) + +[30470] +centroid = (0.56398428077275353, -1.4409609521264806) +station = ('kvdi', 0.0035037356272561888) +zone = ('gaz098', 0.0015732254752623277) + +[30471] +centroid = (0.56798728067866511, -1.434327618864766) +station = ('ksbo', 0.0030863779365509904) +zone = ('gaz086', 0.001954697202725396) + +[30473] +centroid = (0.55880026892189494, -1.4393526137674753) +station = ('kvdi', 0.0033830509789142989) +zone = ('gaz113', 0.0027305086603410388) + +[30474] +centroid = (0.56266933226100846, -1.4384615010112844) +station = ('kvdi', 0.0010510508155084849) +zone = ('gaz112', 0.0020451910737866118) + +[30475] +centroid = (0.56242708056083157, -1.4376031655384462) +station = ('kvdi', 0.000564135019820543) +zone = ('gaz113', 0.0019015803694252308) + +[30477] +centroid = (0.57354180847642966, -1.4381789147520943) +station = ('ksbo', 0.004240826616421502) +zone = ('gaz076', 0.0033836880553619864) + +[30501] +centroid = (0.59897664874537571, -1.4628507494319458) +station = ('kgvl', 0.00094739573130002322) +zone = ('gaz023', 7.42755072591658e-05) + +[30504] +centroid = (0.59817875402453391, -1.464161404433731) +station = ('kgvl', 0.00082888357116472748) +zone = ('gaz023', 0.0012714644696747038) + +[30506] +centroid = (0.59946731315798885, -1.4642543606696921) +station = ('kgvl', 0.0016640215447034489) +zone = ('gaz023', 0.0012138181026016823) + +[30507] +centroid = (0.59785984746360954, -1.4621395103084656) +station = ('kgvl', 0.00087445933156836593) +zone = ('gaz023', 0.0012631377536193658) + +[30510] +centroid = (0.60117572869630342, -1.4586005759973668) +station = ('k19a', 0.0046966853467170422) +zone = ('gaz024', 0.0019108294839584236) + +[30511] +centroid = (0.60126070877758298, -1.4571181107840152) +station = ('ktoc', 0.0037055310147862692) +zone = ('gaz024', 0.0016756280518815565) + +[30512] +centroid = (0.60836460025892791, -1.4655155355871832) +station = ('krhp', 0.0060891161811699665) +zone = ('gaz008', 0.00051148813492723729) + +[30513] +centroid = (0.60774184932852393, -1.4717032164776938) +station = ('kcni', 0.0089957028586321354) +zone = ('gaz006', 0.00075246851766880751) + +[30516] +centroid = (0.60003573198877824, -1.4491704573290862) +station = ('ktoc', 0.0053286677566863859) +zone = ('gaz028', 0.0010897123132238742) + +[30517] +centroid = (0.59568712198438678, -1.4625371137653622) +station = ('kgvl', 0.0024355323509176762) +zone = ('gaz035', 0.0026876456004443173) + +[30518] +centroid = (0.59569563919113655, -1.4665547569836983) +station = ('klzu', 0.0028269998835336332) +zone = ('gaz022', 0.0021742747850024727) + +[30519] +centroid = (0.59493800921613837, -1.4651164835070072) +station = ('klzu', 0.0019257903916078758) +zone = ('gaz034', 0.0024709599549228595) + +[30520] +centroid = (0.59934693779947867, -1.4500652876365838) +station = ('ktoc', 0.0053779032663169718) +zone = ('gaz028', 0.00172021018495137) + +[30521] +centroid = (0.59973785664534052, -1.4537252605313085) +station = ('ktoc', 0.0040210272002944901) +zone = ('gaz026', 0.00093745227350751977) + +[30522] +centroid = (0.60730654675978391, -1.4720187370998694) +station = ('kcni', 0.008526627946843876) +zone = ('gaz006', 0.0012234927121318475) + +[30523] +centroid = (0.60591906236432602, -1.4582855091607969) +station = ('ktoc', 0.0042786790704828518) +zone = ('gaz017', 0.0015283078155372853) + +[30525] +centroid = (0.60924583445155245, -1.4550697225607048) +station = ('k1a5', 0.005443080028247128) +zone = ('gaz010', 0.00064537089411685427) + +[30527] +centroid = (0.60181340219181212, -1.4623029778462073) +station = ('kgvl', 0.0038146064481729557) +zone = ('gaz023', 0.0029184399728429873) + +[30528] +centroid = (0.60425145262392299, -1.4624680161802759) +station = ('kgvl', 0.0062121507132199185) +zone = ('gaz016', 0.00079552549288291194) + +[30529] +centroid = (0.59720243429426079, -1.4570471631499218) +station = ('k19a', 0.0013486683678938553) +zone = ('gaz025', 0.0018898319580517909) + +[30530] +centroid = (0.59729177769867048, -1.4554946404203952) +station = ('k19a', 0.0025556351705832655) +zone = ('gaz024', 0.0027436970956245398) + +[30531] +centroid = (0.60235853833038, -1.4589593284251143) +station = ('ktoc', 0.0044770851820850645) +zone = ('gaz017', 0.0022447651785357241) + +[30533] +centroid = (0.60324792321061138, -1.466426894162697) +station = ('kgvl', 0.0058378007463652315) +zone = ('gaz015', 0.00028585659442055653) + +[30534] +centroid = (0.6009360600834196, -1.4685955879313477) +station = ('kcni', 0.0045081837786061715) +zone = ('gaz014', 0.00043585095885852339) + +[30535] +centroid = (0.60342111223228678, -1.4586660782041942) +station = ('ktoc', 0.0040237653708287534) +zone = ('gaz017', 0.0011879050057655076) + +[30536] +centroid = (0.60473689850207268, -1.4724779855859467) +station = ('kcni', 0.0059295066543534969) +zone = ('gaz007', 0.0014737480521724948) + +[30537] +centroid = (0.61045185696468052, -1.4542114219944515) +station = ('k1a5', 0.00441542200157606) +zone = ('gaz010', 0.0020237007900814354) + +[30538] +centroid = (0.6021558008844683, -1.4532282256669256) +station = ('ktoc', 0.0016694839724234109) +zone = ('gaz018', 0.0010188026136979662) + +[30540] +centroid = (0.6061201592007408, -1.4755629248520166) +station = ('kdnn', 0.0046725806750781808) +zone = ('gaz007', 0.0014168225732238806) + +[30541] +centroid = (0.60934516113928339, -1.4754857114859083) +station = ('kdnn', 0.0057885780156418281) +zone = ('tnz102', 0.003523191098092559) + +[30542] +centroid = (0.59651247073436242, -1.4644906607971195) +station = ('kgvl', 0.001900156034430845) +zone = ('gaz023', 0.0027501455208927958) + +[30543] +centroid = (0.59848148138329238, -1.4599598209655273) +station = ('k19a', 0.0023687247414314588) +zone = ('gaz023', 0.0024960322136156057) + +[30545] +centroid = (0.60672025575745403, -1.461926073994239) +station = ('ktoc', 0.0073125861552621073) +zone = ('gaz016', 0.0020378896752865868) + +[30546] +centroid = (0.60909889518182692, -1.4607809809252983) +station = ('krhp', 0.0056940250815368963) +zone = ('gaz009', 0.00066124736128379705) + +[30547] +centroid = (0.59972712287044061, -1.4565799734157479) +station = ('k19a', 0.0035861439744991203) +zone = ('gaz024', 0.00061319318109069305) + +[30548] +centroid = (0.59497923389307039, -1.4620084186283484) +station = ('kwdr', 0.0023599923349897109) +zone = ('gaz035', 0.0018593561233959421) + +[30549] +centroid = (0.59529672673730072, -1.4587016480143498) +station = ('k19a', 0.0012064735272137152) +zone = ('gaz025', 0.00048004527317246817) + +[30552] +centroid = (0.60686593839011793, -1.4563677239254129) +station = ('ktoc', 0.0037588495598423672) +zone = ('gaz010', 0.0020260740320032218) + +[30553] +centroid = (0.60115841503012368, -1.4500891637407511) +station = ('ktoc', 0.0040110155606898797) +zone = ('gaz028', 0.0023676852340147555) + +[30554] +centroid = (0.60037839248082236, -1.4601562926794245) +station = ('kgvl', 0.0033956258075139019) +zone = ('gaz023', 0.0027032852990488253) + +[30555] +centroid = (0.61042518833370996, -1.4735629869687412) +station = ('kdnn', 0.0076991088254017509) +zone = ('tnz102', 0.0019486827591217015) + +[30557] +centroid = (0.60178610524231091, -1.4518514401397824) +station = ('ktoc', 0.0025408663800243654) +zone = ('gaz026', 0.0019286412026114908) + +[30558] +centroid = (0.59805785506724829, -1.4585492633173582) +station = ('k19a', 0.0015799154949841738) +zone = ('gaz024', 0.0018469271506655559) + +[30559] +centroid = (0.61012937247878951, -1.4708618805117699) +station = ('krhp', 0.0071780113599563319) +zone = ('gaz006', 0.0017609964161498341) + +[30560] +centroid = (0.60871422461468749, -1.4696515470353892) +station = ('krhp', 0.0073911453739497947) +zone = ('gaz006', 0.0016596321457025705) + +[30562] +centroid = (0.60949539908129513, -1.4552749383741541) +station = ('k1a5', 0.0051763625049100429) +zone = ('gaz010', 0.00075544518620871413) + +[30563] +centroid = (0.60332305963490962, -1.4565627295627381) +station = ('ktoc', 0.0023192199322790452) +zone = ('gaz017', 0.0015543132022691982) + +[30564] +centroid = (0.60161021096029499, -1.4641025693846463) +station = ('kgvl', 0.0036270923820706934) +zone = ('gaz015', 0.0024463753894347806) + +[30565] +centroid = (0.59491661147950881, -1.4558052566673725) +station = ('kahn', 0.0026325421542310198) +zone = ('gaz025', 0.0023868319164219321) + +[30566] +centroid = (0.59753387231921451, -1.4642473793526842) +station = ('kgvl', 0.0010391274312817563) +zone = ('gaz023', 0.0017793020329297253) + +[30567] +centroid = (0.59656781512494317, -1.4604324735802598) +station = ('k19a', 0.0016629817892011046) +zone = ('gaz025', 0.0017913782774729387) + +[30568] +centroid = (0.61015754209291662, -1.4561751093891628) +station = ('k1a5', 0.0044950699937441642) +zone = ('gaz010', 0.0014242212373326004) + +[30571] +centroid = (0.60576055156165987, -1.4607361085102293) +station = ('ktoc', 0.0060501112561339226) +zone = ('gaz016', 0.0013117977119552712) + +[30572] +centroid = (0.60625397359449118, -1.4673417084901299) +station = ('krhp', 0.0085533616504298061) +zone = ('gaz008', 0.0020794889471429292) + +[30573] +centroid = (0.60649488139114405, -1.4558955949094559) +station = ('ktoc', 0.0032357208673704321) +zone = ('gaz010', 0.0023168072839029503) + +[30575] +centroid = (0.59703598224349808, -1.4610757844892526) +station = ('kgvl', 0.0020129883934130966) +zone = ('gaz023', 0.0024448759803964628) + +[30576] +centroid = (0.60808121114828173, -1.456654533881393) +station = ('ktoc', 0.0049200853919286573) +zone = ('gaz010', 0.0011005473476441705) + +[30577] +centroid = (0.60305347607864657, -1.4543118133330262) +station = ('ktoc', 0.00082306555210990423) +zone = ('gaz018', 0.00046696757030826989) + +[30581] +centroid = (0.60729164164797189, -1.4560186755283067) +station = ('ktoc', 0.0039778452706410762) +zone = ('gaz010', 0.0015420531940128824) + +[30582] +centroid = (0.61005802341896798, -1.4642562979851619) +station = ('krhp', 0.004235490081383372) +zone = ('gaz008', 0.0024905657913565963) + +[30601] +centroid = (0.5934397313197638, -1.4546431466382248) +station = ('kahn', 0.000915914893836716) +zone = ('gaz036', 0.00093615778605738603) + +[30602] +centroid = (0.59244402098150095, -1.4551322577078034) +station = ('kahn', 0.00058125719703873814) +zone = ('gaz036', 0.00014261378960848177) + +[30605] +centroid = (0.59176978283816317, -1.4542707631890193) +station = ('kahn', 0.00078236172525693933) +zone = ('gaz036', 0.0010150427497182264) + +[30606] +centroid = (0.59234017389100735, -1.4561175309771395) +station = ('kahn', 0.0014049619769056338) +zone = ('gaz036', 0.00092452575318620193) + +[30607] +centroid = (0.59371397490512967, -1.4564345176758868) +station = ('kahn', 0.0020278702671503606) +zone = ('gaz036', 0.0016348111048301187) + +[30609] +centroid = (0.59252992608728416, -1.4552905590709595) +station = ('kahn', 0.00070475905803600884) +zone = ('gaz036', 0.00021389239142605059) + +[30619] +centroid = (0.59089537288291394, -1.4528939951151685) +station = ('kahn', 0.002085941987019333) +zone = ('gaz038', 0.0024173734545141633) + +[30620] +centroid = (0.59218099986322548, -1.4618602401748539) +station = ('kwdr', 0.0015997159920084739) +zone = ('gaz035', 0.0012942971117252361) + +[30621] +centroid = (0.58977227096254814, -1.4572126029097183) +station = ('kahn', 0.0035988803152449838) +zone = ('gaz037', 0.0011017881559538644) + +[30622] +centroid = (0.59210680591672327, -1.4576557071002147) +station = ('kwdr', 0.002395685920250845) +zone = ('gaz037', 0.0019611913366395809) + +[30623] +centroid = (0.58867276589366924, -1.4580792286965036) +station = ('kwdr', 0.0047921393533727806) +zone = ('gaz037', 0.0024003067146810097) + +[30624] +centroid = (0.59666255159674131, -1.4493938245667566) +station = ('kahn', 0.0058721243364068055) +zone = ('gaz027', 0.002589515100536816) + +[30625] +centroid = (0.58503932200357489, -1.4544444758094701) +station = ('k3j7', 0.0031353065822230116) +zone = ('gaz049', 0.0026180385879299856) + +[30627] +centroid = (0.59294609984742219, -1.4478911658939595) +station = ('kiiy', 0.0039534374717176534) +zone = ('gaz038', 0.0024004408404112157) + +[30628] +centroid = (0.59391590949958539, -1.4523460140899198) +station = ('kahn', 0.002216422823338633) +zone = ('gaz027', 0.0017294282256565166) + +[30629] +centroid = (0.59475466237821628, -1.4505451833677121) +station = ('kahn', 0.0039161579115797387) +zone = ('gaz027', 0.0016833033828389772) + +[30630] +centroid = (0.59189989713389934, -1.4511937826243382) +station = ('kahn', 0.0027690918411333778) +zone = ('gaz038', 0.0011216754404858957) + +[30631] +centroid = (0.58572052401062835, -1.4464452478751448) +station = ('kiiy', 0.0039405843940874636) +zone = ('gaz051', 0.00013047317030189239) + +[30633] +centroid = (0.59652166861952038, -1.4530716347264365) +station = ('kahn', 0.0041408147767495237) +zone = ('gaz027', 0.0010994894721705756) + +[30634] +centroid = (0.59682745030446993, -1.4476717780069837) +station = ('kand', 0.0062513876594811058) +zone = ('gaz029', 0.0020491408777404321) + +[30635] +centroid = (0.59525796297461397, -1.4450147934735027) +station = ('kiiy', 0.0057004445146142399) +zone = ('gaz029', 0.00070711841644091611) + +[30641] +centroid = (0.58954354556407429, -1.458641905394054) +station = ('kwdr', 0.0038100616631047126) +zone = ('gaz047', 0.0021508338134857319) + +[30642] +centroid = (0.58563002868891245, -1.4520156407158098) +station = ('k3j7', 0.0011062661792056673) +zone = ('gaz050', 0.000590607398096488) + +[30643] +centroid = (0.599741469476892, -1.4470345233904955) +station = ('kand', 0.0036619422818424353) +zone = ('gaz028', 0.00081812422290483396) + +[30646] +centroid = (0.59486109255600295, -1.4538381833339125) +station = ('kahn', 0.0023749747112819862) +zone = ('gaz027', 0.0015156251913794043) + +[30648] +centroid = (0.59131718405653588, -1.4495318102974191) +station = ('kiiy', 0.0038387692140500638) +zone = ('gaz038', 0.00041380234150297299) + +[30650] +centroid = (0.5861463319882374, -1.4568918462997866) +station = ('k9a1', 0.0055284807380034046) +zone = ('gaz049', 0.00029799997006524408) + +[30655] +centroid = (0.58960168248145828, -1.4607724288119635) +station = ('k9a1', 0.0034644553238481761) +zone = ('gaz047', 0.00047156826807531635) + +[30656] +centroid = (0.59100578241139501, -1.4611228909257641) +station = ('kwdr', 0.002208707872631009) +zone = ('gaz047', 0.0010859121614231657) + +[30660] +centroid = (0.58964611856421389, -1.4477763755890558) +station = ('kiiy', 0.0019612182468189254) +zone = ('gaz038', 0.0025177693273120212) + +[30662] +centroid = (0.59807740275487065, -1.4513128315326167) +station = ('ktoc', 0.0060389701983023228) +zone = ('gaz026', 0.0021765490244696544) + +[30663] +centroid = (0.58670633833203223, -1.4591125857867318) +station = ('k9a1', 0.0036273867524220299) +zone = ('gaz049', 0.0016377587921490176) + +[30664] +centroid = (0.58566720420197982, -1.445103281666579) +station = ('kiiy', 0.0039089912938172393) +zone = ('gaz051', 0.0011818462686728841) + +[30665] +centroid = (0.58543181164576341, -1.4497173213436136) +station = ('k3j7', 0.0014630318344930034) +zone = ('gaz050', 0.0016389413119979172) + +[30666] +centroid = (0.59275123383643713, -1.4588275037067111) +station = ('kwdr', 0.0012569338788830063) +zone = ('gaz035', 0.0019308097250669135) + +[30667] +centroid = (0.58950846444610916, -1.4511597661572169) +station = ('k3j7', 0.0031228702712047095) +zone = ('gaz038', 0.0020488813610570508) + +[30668] +centroid = (0.59159238757299037, -1.4433385618065948) +station = ('kiiy', 0.0026619280270358549) +zone = ('gaz039', 0.0020942289913526775) + +[30669] +centroid = (0.58768986627211606, -1.4507340454460704) +station = ('k3j7', 0.0013287269844372564) +zone = ('gaz050', 0.0017581414030723884) + +[30673] +centroid = (0.5883653261459304, -1.4436305902970383) +station = ('kiiy', 0.0019119398946982661) +zone = ('gaz039', 0.0013123973364137077) + +[30677] +centroid = (0.58962810676633348, -1.4551393262912742) +station = ('kahn', 0.0029683522736126031) +zone = ('gaz037', 0.0012908801111222153) + +[30678] +centroid = (0.58386635602647963, -1.4497722643084665) +station = ('k3j7', 0.0027356008851418274) +zone = ('gaz050', 0.0026413613438531227) + +[30680] +centroid = (0.59334396510370691, -1.4608435160723974) +station = ('kwdr', 0.00052408309233988677) +zone = ('gaz035', 0.00018829692453339094) + +[30683] +centroid = (0.59248657210866473, -1.4530959820695017) +station = ('kahn', 0.0011170263172256827) +zone = ('gaz036', 0.0016107594650008922) + +[30701] +centroid = (0.60197304745849212, -1.482777033875625) +station = ('krmg', 0.0038908223184287044) +zone = ('gaz012', 0.0011889726687030744) + +[30705] +centroid = (0.60657856992877712, -1.4790807930390437) +station = ('kdnn', 0.001869026392160644) +zone = ('gaz005', 0.00059686207912662862) + +[30707] +centroid = (0.60688501483884216, -1.4897989646952963) +station = ('kcha', 0.0050994274956195759) +zone = ('gaz002', 0.0010494008540057262) + +[30708] +centroid = (0.61019820826448812, -1.4776762742300864) +station = ('kdnn', 0.0051135475953706473) +zone = ('gaz005', 0.0032520212414623786) + +[30710] +centroid = (0.61007203841286139, -1.482017536398327) +station = ('kdnn', 0.0041136170632289637) +zone = ('gaz004', 0.0027120505705846127) + +[30711] +centroid = (0.60947302396028447, -1.4785692719418693) +station = ('kdnn', 0.0041037340032098529) +zone = ('gaz005', 0.0023452952706057894) + +[30720] +centroid = (0.60621644901557326, -1.4835442457082164) +station = ('kdnn', 0.0019000695888403147) +zone = ('gaz004', 0.0013446995889004173) + +[30721] +centroid = (0.60717615321136753, -1.4820653060599542) +station = ('kdnn', 0.001348574802736798) +zone = ('gaz004', 0.00079149646798659201) + +[30725] +centroid = (0.60955234917478762, -1.4896852041346511) +station = ('kcha', 0.0028907986265544277) +zone = ('gaz001', 0.0024948941135085841) + +[30726] +centroid = (0.610450600327619, -1.4859659424052363) +station = ('kcha', 0.0013187155831954607) +zone = ('gaz003', 0.0012680356247894149) + +[30728] +centroid = (0.60536526939266821, -1.4874706431132583) +station = ('krmg', 0.005906189806126662) +zone = ('gaz002', 0.0013946586007781894) + +[30730] +centroid = (0.59948659904622337, -1.4908165963689641) +station = ('krmg', 0.003614581195962373) +zone = ('gaz011', 0.0024468158692183884) + +[30731] +centroid = (0.603670432515934, -1.4918614377256703) +station = ('k4a9', 0.0040349244163879706) +zone = ('gaz011', 0.0027338426047320698) + +[30733] +centroid = (0.60064795858379294, -1.4844121979452334) +station = ('krmg', 0.0020169656419497827) +zone = ('gaz012', 0.0029553535386897898) + +[30734] +centroid = (0.60271112974586794, -1.4785542097504247) +station = ('kdnn', 0.0039715236583787979) +zone = ('gaz012', 0.002368437230651688) + +[30735] +centroid = (0.60393423903237298, -1.4814819123041825) +station = ('kdnn', 0.0020821971628256527) +zone = ('gaz012', 0.0017391867093782005) + +[30736] +centroid = (0.60916638706400161, -1.485868081794077) +station = ('kcha', 0.0024684286279327964) +zone = ('gaz003', 6.1336348975727978e-05) + +[30738] +centroid = (0.60731410403544506, -1.4919234841805786) +station = ('kcha', 0.005765833366388905) +zone = ('gaz001', 0.0010682580535113684) + +[30739] +centroid = (0.6074780951719625, -1.4872994961268076) +station = ('kcha', 0.0039755057608483763) +zone = ('gaz002', 0.0017288442607443436) + +[30740] +centroid = (0.60662670610954716, -1.484788578198426) +station = ('kdnn', 0.0029759512499470211) +zone = ('gaz004', 0.0017241824702229408) + +[30741] +centroid = (0.61003943566243424, -1.4884394230211626) +station = ('kcha', 0.0018254968098548314) +zone = ('gaz003', 0.002220948082535821) + +[30742] +centroid = (0.61000274884155736, -1.4877751856144386) +station = ('kcha', 0.0015710282033879731) +zone = ('gaz003', 0.0017134563448359592) + +[30746] +centroid = (0.60348394408535855, -1.4840058678420764) +station = ('kdnn', 0.0033942721767269107) +zone = ('gaz012', 0.0025303021784793002) + +[30747] +centroid = (0.60218391813871797, -1.4888145640905863) +station = ('krmg', 0.0033066151612923984) +zone = ('gaz011', 0.00077955916717547115) + +[30750] +centroid = (0.60984271960244196, -1.4903057035903202) +station = ('kcha', 0.0031333383766465796) +zone = ('gaz001', 0.0022507931381211899) + +[30751] +centroid = (0.61059478197712636, -1.4788644245716742) +station = ('kdnn', 0.0049864639649436935) +zone = ('tnz101', 0.0033853029192364376) + +[30752] +centroid = (0.60938139417455484, -1.4929190548925013) +station = ('kcha', 0.0052562086131764914) +zone = ('gaz001', 0.0011576399998907904) + +[30753] +centroid = (0.60357517244536019, -1.4885175788650669) +station = ('krmg', 0.0044019393582870143) +zone = ('gaz011', 0.0020598115722676577) + +[30755] +centroid = (0.60856157811830802, -1.4842775457934421) +station = ('kdnn', 0.0035664877361951284) +zone = ('gaz004', 0.0015354078574351105) + +[30756] +centroid = (0.60907889370859913, -1.4831293460384325) +station = ('kdnn', 0.0034386290264380183) +zone = ('gaz004', 0.0016126358480921252) + +[30757] +centroid = (0.60974475427152741, -1.4912357720954152) +station = ('kcha', 0.0038503117986673119) +zone = ('gaz001', 0.0016797197298521992) + +[30802] +centroid = (0.58645570905144584, -1.4364048399273195) +station = ('khqu', 0.0033894046980446698) +zone = ('gaz064', 0.0011273941927504489) + +[30803] +centroid = (0.57828336190861507, -1.4407529088796427) +station = ('khqu', 0.006932231415782978) +zone = ('gaz075', 0.0019037163193673906) + +[30805] +centroid = (0.58084114192741287, -1.4345179121131109) +station = ('kags', 0.0036171071326731564) +zone = ('gaz065', 0.0022181717858183645) + +[30807] +centroid = (0.58394192878309104, -1.4424905586829284) +station = ('khqu', 0.0022989231360130515) +zone = ('gaz062', 0.00094023197285874748) + +[30808] +centroid = (0.58266270716113422, -1.4380103333996441) +station = ('khqu', 0.0031174586161363278) +zone = ('gaz063', 0.0021612792241349188) + +[30809] +centroid = (0.58566177622800619, -1.4341436611616056) +station = ('kdnl', 0.002530893210249519) +zone = ('gaz064', 0.0013771261705396219) + +[30810] +centroid = (0.58007199277935151, -1.4414753879235058) +station = ('khqu', 0.0052396041446014542) +zone = ('gaz075', 0.00031580252214071316) + +[30812] +centroid = (0.58236532050988699, -1.4316708961306726) +station = ('kags', 0.00090425055487577022) +zone = ('gaz065', 0.00066595330456615533) + +[30813] +centroid = (0.58419081273442541, -1.4350106011076562) +station = ('kdnl', 0.0027198670841737343) +zone = ('gaz064', 0.0014183152801544275) + +[30814] +centroid = (0.58364518790366693, -1.4364029724250198) +station = ('khqu', 0.0035146120761682526) +zone = ('gaz064', 0.0018851135962163414) + +[30815] +centroid = (0.58097184963509474, -1.4327222301121965) +station = ('kags', 0.0022586094039528369) +zone = ('gaz065', 0.0012829149035265429) + +[30816] +centroid = (0.57869670823536501, -1.4340858558567797) +station = ('kags', 0.0046861457629870616) +zone = ('gaz077', 0.0029490781900726841) + +[30817] +centroid = (0.58954342339102672, -1.4386789166762053) +station = ('khqu', 0.004520959558683731) +zone = ('gaz040', 0.00040419299674263162) + +[30818] +centroid = (0.58054783934661514, -1.4369467472067712) +station = ('khqu', 0.005379025390177615) +zone = ('gaz076', 0.0038476412289885319) + +[30820] +centroid = (0.57975600091827784, -1.4435595379431898) +station = ('khqu', 0.006130330001127348) +zone = ('gaz075', 0.0014623024483040976) + +[30821] +centroid = (0.58451832376856216, -1.4441214990557472) +station = ('khqu', 0.0033539913280958215) +zone = ('gaz062', 0.0017120489534633676) + +[30822] +centroid = (0.57467299127123206, -1.4285988723010674) +station = ('kjyl', 0.0061810539374256221) +zone = ('gaz087', 0.0028461528219028711) + +[30823] +centroid = (0.5799031845340985, -1.439082960398042) +station = ('khqu', 0.0053750462189316468) +zone = ('gaz075', 0.0022975410153564741) + +[30824] +centroid = (0.58491137191611131, -1.4401559015557055) +station = ('khqu', 0.00028869402695400336) +zone = ('gaz063', 0.00071569118036179675) + +[30828] +centroid = (0.58238212803058365, -1.4426247919556991) +station = ('khqu', 0.0034767700457807612) +zone = ('gaz062', 0.0007725897017583454) + +[30830] +centroid = (0.57735161788743794, -1.4307395360819308) +station = ('kags', 0.0050081760077248629) +zone = ('gaz077', 0.00049417141604939238) + +[30833] +centroid = (0.57929659535256783, -1.437333302729503) +station = ('khqu', 0.0063643171862476497) +zone = ('gaz076', 0.0025622381211530642) + +[30901] +centroid = (0.58358958171369846, -1.4304047819313985) +station = ('kags', 0.0012408728801162376) +zone = ('gaz065', 0.0021814569252200681) + +[30903] +centroid = (0.58451334958019385, -1.4340094278888349) +station = ('kdnl', 0.0019271841021465913) +zone = ('gaz064', 0.0017502181456616) + +[30904] +centroid = (0.5843063709841998, -1.4314161129664664) +station = ('kdnl', 0.00034574220848516361) +zone = ('gaz065', 0.0022449713034882923) + +[30905] +centroid = (0.58320456208070837, -1.4336583549097961) +station = ('kdnl', 0.0018273744718340424) +zone = ('gaz065', 0.0013977006389691389) + +[30906] +centroid = (0.58201026818015378, -1.4306062976468337) +station = ('kags', 0.00034825342212796195) +zone = ('gaz065', 0.001558647490119174) + +[30907] +centroid = (0.5851008448597077, -1.4326655243647992) +station = ('kdnl', 0.0012551162867370678) +zone = ('gaz064', 0.0026184405482668816) + +[30909] +centroid = (0.58416821072061209, -1.4326182783019477) +station = ('kdnl', 0.00072572616183875485) +zone = ('gaz065', 0.0019382811464711269) + +[30912] +centroid = (0.5841704447420546, -1.4309619084819274) +station = ('kdnl', 0.00066227728823376256) +zone = ('gaz065', 0.0023011228548531675) + +[31001] +centroid = (0.55809094966059192, -1.4545515517590799) +station = ('kezm', 0.00520163636068296) +zone = ('gaz108', 0.0013709796118038387) + +[31002] +centroid = (0.56817533990556746, -1.4415603156449079) +station = ('ksbo', 0.0035077532476826914) +zone = ('gaz098', 0.0026528732285350594) + +[31003] +centroid = (0.56908696028046923, -1.4523323830684616) +station = ('kdbn', 0.0034245925402081041) +zone = ('gaz096', 0.0034471365375078212) + +[31005] +centroid = (0.56800345988083112, -1.4590509058509664) +station = ('kwrb', 0.0015561013888940646) +zone = ('gaz095', 0.0017986425513751192) + +[31006] +centroid = (0.56866075087713219, -1.4704721659430922) +station = ('kopn', 0.0065151269185979984) +zone = ('gaz080', 0.00045883617332993597) + +[31007] +centroid = (0.56179694688769166, -1.4648067224713635) +station = ('kacj', 0.0042575773816580847) +zone = ('gaz105', 0.0019764666445924537) + +[31008] +centroid = (0.5701178390031596, -1.4623402406257373) +station = ('kmcn', 0.0020214344377283457) +zone = ('gaz094', 0.0017894799093375734) + +[31009] +centroid = (0.56342034743814162, -1.4489686623609708) +station = ('kezm', 0.0019815234041323819) +zone = ('gaz109', 0.0029087216642945057) + +[31011] +centroid = (0.56076692337633471, -1.4499300944327245) +station = ('kezm', 0.00167046085882918) +zone = ('gaz109', 0.0015694932138868864) + +[31012] +centroid = (0.56538958497987435, -1.45160679733853) +station = ('kezm', 0.0032101006524129626) +zone = ('gaz096', 0.0024154889763114535) + +[31014] +centroid = (0.56576394065113456, -1.4547158221482777) +station = ('kezm', 0.0048010470962562002) +zone = ('gaz096', 0.00044916256775078954) + +[31015] +centroid = (0.5573708966243891, -1.462148620927161) +station = ('kacj', 0.0069921590843196237) +zone = ('gaz106', 0.00023269166045537481) + +[31016] +centroid = (0.57320541371640021, -1.468100472929142) +station = ('kopn', 0.0029337799545481741) +zone = ('gaz081', 0.0029301940189599349) + +[31017] +centroid = (0.56934549590256711, -1.4526762827442747) +station = ('kdbn', 0.0037673646303030095) +zone = ('gaz084', 0.0032884176478891239) + +[31018] +centroid = (0.57555883313308187, -1.4421234286747713) +station = ('ksbo', 0.0072886251878854736) +zone = ('gaz074', 0.0024680115125269046) + +[31019] +centroid = (0.56590981527001627, -1.4495193660998524) +station = ('kdbn', 0.0026346502033669345) +zone = ('gaz097', 0.0020229650855709824) + +[31020] +centroid = (0.57055698129625387, -1.4573251068333017) +station = ('kwrb', 0.0017934709393697189) +zone = ('gaz083', 0.0011247252278107538) + +[31021] +centroid = (0.56711705951362079, -1.4476295584923782) +station = ('kdbn', 0.0013848114689727473) +zone = ('gaz097', 0.00060275973239046026) + +[31022] +centroid = (0.56743341789383717, -1.4506588741151869) +station = ('kdbn', 0.0021456276734307602) +zone = ('gaz097', 0.0029817033656568989) + +[31023] +centroid = (0.56170303072064187, -1.4521044081615664) +station = ('kezm', 0.0011884771623490945) +zone = ('gaz109', 0.00049738548671907502) + +[31024] +centroid = (0.58155972888704388, -1.4551768159636069) +station = ('kmlj', 0.0035142862123795581) +zone = ('gaz060', 4.2143102546090935e-05) + +[31025] +centroid = (0.56436682203820565, -1.4615562212724491) +station = ('kwrb', 0.0055918938814403631) +zone = ('gaz095', 0.002415772450250243) + +[31027] +centroid = (0.56864760854786467, -1.4452062909990315) +station = ('kdbn', 0.0026747619905085314) +zone = ('gaz097', 0.0026857912037892163) + +[31028] +centroid = (0.56945203080010887, -1.4607659536404385) +station = ('kmcn', 0.0011879984455055767) +zone = ('gaz094', 0.002181537676640173) + +[31029] +centroid = (0.57667776371653545, -1.4649673800290093) +station = ('kopn', 0.0050313784711677285) +zone = ('gaz071', 0.00053962423218131828) + +[31030] +centroid = (0.56846565797334425, -1.4641588737063156) +station = ('kmcn', 0.0040402712080104637) +zone = ('gaz094', 0.0009305127658780965) + +[31031] +centroid = (0.5736248512422395, -1.4543540328476319) +station = ('kmlj', 0.0051862112454027741) +zone = ('gaz084', 0.0025587991449778267) + +[31032] +centroid = (0.57616255997463917, -1.4585571522055771) +station = ('kmlj', 0.0054108884713280851) +zone = ('gaz072', 0.00026632893794781986) + +[31033] +centroid = (0.5774346431999553, -1.456097913476347) +station = ('kmlj', 0.003000743610314497) +zone = ('gaz072', 0.0021952544198633782) + +[31035] +centroid = (0.57326726818509088, -1.4433180890944688) +station = ('ksbo', 0.0062002704512307411) +zone = ('gaz085', 0.0025730424195134264) + +[31036] +centroid = (0.56342820141977557, -1.4577552083208709) +station = ('kwrb', 0.0062343066048457831) +zone = ('gaz107', 0.00110302617281908) + +[31037] +centroid = (0.55992385953445134, -1.4480932750213404) +station = ('kezm', 0.003292575508779609) +zone = ('gaz110', 0.0026825644161098867) + +[31038] +centroid = (0.5784498837725478, -1.4599175490910441) +station = ('kmlj', 0.0059443360443473146) +zone = ('gaz072', 0.0024124133522868919) + +[31039] +centroid = (0.56887841088814839, -1.4728331077288497) +station = ('kopn', 0.0065472106325105148) +zone = ('gaz080', 0.0021214349661775435) + +[31041] +centroid = (0.56432634785285185, -1.4696411972329251) +station = ('kacj', 0.0039016268700444471) +zone = ('gaz092', 0.0020550968051676593) + +[31042] +centroid = (0.57157707388416701, -1.4516297309649013) +station = ('kdbn', 0.0042357555815027035) +zone = ('gaz084', 0.00093291438124669965) + +[31044] +centroid = (0.56993712761240811, -1.455339218850505) +station = ('kwrb', 0.0031852305367900688) +zone = ('gaz083', 0.0006585032185512517) + +[31045] +centroid = (0.58086014856296708, -1.4448785356187996) +station = ('khqu', 0.0058476060117341033) +zone = ('gaz062', 0.002740369653375492) + +[31046] +centroid = (0.57696335194203918, -1.4625288409047079) +station = ('kmcn', 0.0068766182318571118) +zone = ('gaz071', 0.0019391611942589254) + +[31047] +centroid = (0.56666093516690463, -1.4590139572307017) +station = ('kwrb', 0.0028989874461133854) +zone = ('gaz095', 0.0010534136562674124) + +[31049] +centroid = (0.57048016935587376, -1.4403592847734406) +station = ('ksbo', 0.0025730417044164335) +zone = ('gaz085', 0.0019805284176958827) + +[31050] +centroid = (0.57141515968945955, -1.4653081381121689) +station = ('kmcn', 0.0045996216692452902) +zone = ('gaz081', 0.00062664960582777148) + +[31051] +centroid = (0.56122592751631661, -1.4641008066021017) +station = ('kacj', 0.0046977946654544189) +zone = ('gaz105', 0.0013019178635461524) + +[31052] +centroid = (0.57219629924948212, -1.4634325898446832) +station = ('kmcn', 0.0034069855729051313) +zone = ('gaz081', 0.0023636054908043502) + +[31054] +centroid = (0.57403636497327482, -1.4523594531251602) +station = ('kmlj', 0.004629261738974242) +zone = ('gaz084', 0.0016502713276398448) + +[31055] +centroid = (0.55859390119113916, -1.4468907780733014) +station = ('kezm', 0.0049582163967973368) +zone = ('gaz110', 0.0014301383982047648) + +[31057] +centroid = (0.56609754288436087, -1.4649693522510641) +station = ('kwrb', 0.0060421415055153327) +zone = ('gaz093', 0.0020554135205277267) + +[31058] +centroid = (0.56703392948134823, -1.4732393331122515) +station = ('kacj', 0.0073013143030300886) +zone = ('gaz080', 0.002628549477276392) + +[31060] +centroid = (0.55808063476471259, -1.4497316854033575) +station = ('kezm', 0.0042697347469809934) +zone = ('gaz110', 0.0020114364710549083) + +[31061] +centroid = (0.577307478510655, -1.4529197736282204) +station = ('kmlj', 0.0013443990597786148) +zone = ('gaz073', 0.00015449461421685747) + +[31062] +centroid = (0.57677239546857861, -1.4523858948633279) +station = ('kmlj', 0.0019121594555894146) +zone = ('gaz073', 0.00063602197549725845) + +[31063] +centroid = (0.56354876876450344, -1.4654353377080542) +station = ('kacj', 0.0046884239183988844) +zone = ('gaz093', 0.0016835742901289881) + +[31064] +centroid = (0.58095547844671092, -1.4608815467967982) +station = ('k9a1', 0.0063723939884352569) +zone = ('gaz059', 0.0005650072270536044) + +[31065] +centroid = (0.56814612309388912, -1.4515488524073641) +station = ('kdbn', 0.0026947014084531956) +zone = ('gaz096', 0.0031315598231259766) + +[31066] +centroid = (0.57258554257926197, -1.4663920748441199) +station = ('kopn', 0.0044425371063484395) +zone = ('gaz081', 0.0016755979036753464) + +[31067] +centroid = (0.57352110887150098, -1.4475180319531755) +station = ('kdbn', 0.0052128667460973688) +zone = ('gaz074', 0.0028078573773097715) + +[31068] +centroid = (0.56424082671950415, -1.4681194621114035) +station = ('kacj', 0.0040073733297944182) +zone = ('gaz093', 0.0012159629022680742) + +[31069] +centroid = (0.56618599617085175, -1.4616888662956007) +station = ('kwrb', 0.0040198067703659168) +zone = ('gaz095', 0.0012578253238209182) + +[31070] +centroid = (0.56176179595655651, -1.4624073834420617) +station = ('kacj', 0.0062076463583624012) +zone = ('gaz105', 0.00052947307762745398) + +[31071] +centroid = (0.56076479407464719, -1.4580617754039835) +station = ('kezm', 0.0062781155785979984) +zone = ('gaz107', 0.0020390950068983854) + +[31072] +centroid = (0.55805969081368867, -1.4585165034872982) +station = ('kfzg', 0.0067667937800791654) +zone = ('gaz108', 0.0019935088066341568) + +[31075] +centroid = (0.56464223499417032, -1.4478614254835056) +station = ('kezm', 0.0034861675715596144) +zone = ('gaz097', 0.0020198969607509742) + +[31076] +centroid = (0.56791041637840733, -1.4679988947666758) +station = ('kacj', 0.0076016126875175331) +zone = ('gaz080', 0.0020840778582501408) + +[31077] +centroid = (0.55712906380323279, -1.4520854887924746) +station = ('kfzg', 0.0043408018924477876) +zone = ('gaz130', 0.0028350358970768851) + +[31078] +centroid = (0.5706338106899268, -1.4673775051930884) +station = ('kopn', 0.0053258097454523057) +zone = ('gaz081', 0.0013388255504850619) + +[31079] +centroid = (0.55750870782212658, -1.4566302738047903) +station = ('kfzg', 0.0053751084292032094) +zone = ('gaz108', 0.00066057244091599946) + +[31081] +centroid = (0.56582233936790638, -1.4710111759759854) +station = ('kacj', 0.0055335045019675785) +zone = ('gaz080', 0.0024272009429738644) + +[31082] +centroid = (0.5758961180110298, -1.4469323518160837) +station = ('kmlj', 0.0056511184551607981) +zone = ('gaz074', 0.0016384921045044841) + +[31083] +centroid = (0.55920965335124273, -1.4453796720069247) +station = ('kezm', 0.0055399567450235146) +zone = ('gaz111', 0.0018836726088600814) + +[31084] +centroid = (0.55783695189454918, -1.4592324724530512) +station = ('kfzg', 0.0070198700366593276) +zone = ('gaz108', 0.0026087985005476249) + +[31085] +centroid = (0.58341737007640404, -1.4595783443509189) +station = ('k9a1', 0.0047929076556508165) +zone = ('gaz059', 0.0021273439395341855) + +[31087] +centroid = (0.58034574767252678, -1.4486412734998815) +station = ('kmlj', 0.0038876118179242305) +zone = ('gaz061', 0.00033053076343000768) + +[31088] +centroid = (0.56863530397663808, -1.4600203315306941) +station = ('kwrb', 0.0012085898169534887) +zone = ('gaz095', 0.002127764398341391) + +[31089] +centroid = (0.57335402850220751, -1.4461852985363528) +station = ('kdbn', 0.005322174830165013) +zone = ('gaz074', 0.0022771090400673329) + +[31090] +centroid = (0.57298712538685326, -1.4498136984249088) +station = ('kdbn', 0.0047889105416507672) +zone = ('gaz084', 0.0015857042293458427) + +[31091] +centroid = (0.56265728948916971, -1.4609184605104779) +station = ('kwrb', 0.0070712780178913649) +zone = ('gaz105', 0.0019800010724894475) + +[31092] +centroid = (0.56009294703238455, -1.46233374800092) +station = ('kacj', 0.0061366076051165216) +zone = ('gaz105', 0.0011722925001845029) + +[31093] +centroid = (0.56981287762295862, -1.4600936877191555) +station = ('kmcn', 0.00062789048390190225) +zone = ('gaz082', 0.0028357158086029914) + +[31094] +centroid = (0.57794159153448954, -1.4450586012377278) +station = ('kmlj', 0.0065392502385333172) +zone = ('gaz074', 0.0025152646442395746) + +[31096] +centroid = (0.57111046010864641, -1.4434663722677183) +station = ('kdbn', 0.004957096292540761) +zone = ('gaz085', 0.00074598382658353879) + +[31097] +centroid = (0.57404596428416066, -1.4689894389303526) +station = ('kopn', 0.0018202232611301602) +zone = ('gaz069', 0.0019470941416917574) + +[31098] +centroid = (0.56922543470332243, -1.4585465231504326) +station = ('kwrb', 0.0005700266988149103) +zone = ('gaz083', 0.0022740722923414057) + +[31201] +centroid = (0.57254447498196248, -1.4594016297641546) +station = ('kmcn', 0.0021657233573505069) +zone = ('gaz082', 0.0011793490578540125) + +[31204] +centroid = (0.57331470623416003, -1.4604003246154382) +station = ('kmcn', 0.0029057680639798999) +zone = ('gaz082', 0.00080473345916131061) + +[31206] +centroid = (0.57248295212582967, -1.4607305932697932) +station = ('kmcn', 0.0021491474428812054) +zone = ('gaz082', 0.00011916271998414179) + +[31207] +centroid = (0.57296450591974746, -1.45995318871437) +station = ('kmcn', 0.002532759022813602) +zone = ('gaz082', 0.00080947607703767555) + +[31210] +centroid = (0.57434080275470012, -1.4614567375050853) +station = ('kmcn', 0.0041044817543512127) +zone = ('gaz082', 0.0018395101064845286) + +[31211] +centroid = (0.57423709529054656, -1.4586766723527536) +station = ('kmcn', 0.0039571066520430213) +zone = ('gaz072', 0.002171556353335886) + +[31213] +centroid = (0.57316754007163195, -1.4597820417279193) +station = ('kmcn', 0.0027402246667813678) +zone = ('gaz082', 0.0010377225826156298) + +[31216] +centroid = (0.57124039987145736, -1.4605847186509113) +station = ('kmcn', 0.00096085239305321302) +zone = ('gaz082', 0.0013571083855756776) + +[31217] +centroid = (0.57322841715594153, -1.4573614620416206) +station = ('kmcn', 0.0035531928634897911) +zone = ('gaz082', 0.0029635118502558664) + +[31220] +centroid = (0.57371110541387305, -1.4627514576507998) +station = ('kmcn', 0.0040287971282323707) +zone = ('gaz082', 0.0019863956391133462) + +[31301] +centroid = (0.55415301562919472, -1.4242296848647948) +station = ('klhw', 0.0023758174357932376) +zone = ('gaz138', 0.0020121455396803346) + +[31302] +centroid = (0.56062871075286924, -1.41968116484788) +station = ('ksav', 0.0020969916490806398) +zone = ('gaz118', 0.0018547251021392025) + +[31303] +centroid = (0.56732663865020028, -1.4191870272300553) +station = ('kjyl', 0.0048247147327196383) +zone = ('gaz101', 0.0024404863602427909) + +[31304] +centroid = (0.5499667212452386, -1.4199048287915228) +station = ('kbqk', 0.0048482200092462837) +zone = ('gaz141', 0.0012203314197977264) + +[31305] +centroid = (0.54797781384283595, -1.4205925408766862) +station = ('kbqk', 0.002782299601208234) +zone = ('gaz141', 0.0017643386838558806) + +[31307] +centroid = (0.56152204007721007, -1.4206736114204412) +station = ('ksav', 0.0030943438672696461) +zone = ('gaz116', 0.0025727485607757276) + +[31308] +centroid = (0.56165246853221151, -1.4219422388938385) +station = ('ksav', 0.0041599645412186657) +zone = ('gaz116', 0.0024426110453783069) + +[31309] +centroid = (0.55640897586044502, -1.4213680779298099) +station = ('klhw', 0.0019020221962423021) +zone = ('gaz138', 0.001522125620296959) + +[31312] +centroid = (0.56393537664711268, -1.4207295317696751) +station = ('ksav', 0.0045164344774127618) +zone = ('gaz101', 0.0013342934986188815) + +[31313] +centroid = (0.55579641765287247, -1.4244077782616684) +station = ('klhw', 0.00095667316869071397) +zone = ('gaz138', 0.0011516195852113334) + +[31314] +centroid = (0.5562391204176409, -1.4247310481457225) +station = ('klhw', 0.00098193868865909732) +zone = ('gaz138', 0.0014608285477134394) + +[31315] +centroid = (0.55663564177040148, -1.4239962994372179) +station = ('klhw', 0.00037019318090436912) +zone = ('gaz138', 0.0010837753480853686) + +[31316] +centroid = (0.55357669045689362, -1.4263644319794939) +station = ('kjes', 0.0036967530113696748) +zone = ('gaz137', 0.00069107465885468822) + +[31318] +centroid = (0.56098416450833033, -1.4202082891885672) +station = ('ksav', 0.0025795930933154507) +zone = ('gaz116', 0.0023384162013494157) + +[31320] +centroid = (0.55441263335542879, -1.4201466790659716) +station = ('klhw', 0.0035878990772471799) +zone = ('gaz117', 0.0026278775929017648) + +[31321] +centroid = (0.56173524949863374, -1.4252319401877525) +station = ('kcwv', 0.0031159681579150779) +zone = ('gaz116', 0.0037196422032868912) + +[31322] +centroid = (0.56042321568673936, -1.4181753994890143) +station = ('ksav', 0.00082843360686688113) +zone = ('gaz118', 0.00070196428729062935) + +[31323] +centroid = (0.5530508925664378, -1.4211808739142411) +station = ('klhw', 0.0039921198231577569) +zone = ('gaz140', 0.0029263529447553995) + +[31324] +centroid = (0.55589139847076607, -1.4183422529655048) +station = ('ksvn', 0.0033676255930668239) +zone = ('gaz117', 0.0011632183017395929) + +[31326] +centroid = (0.56365757259007276, -1.4177297471178099) +station = ('ksav', 0.0031471893936850727) +zone = ('gaz101', 0.0020641847692770211) + +[31327] +centroid = (0.54921884766075912, -1.4180582529896202) +station = ('kbqk', 0.0050014047907986098) +zone = ('gaz141', 0.00078190270572137111) + +[31328] +centroid = (0.55861620649897969, -1.411778505981067) +station = ('ksvn', 0.0038675684002233437) +zone = ('gaz119', 0.0026443975168144477) + +[31329] +centroid = (0.56593414515978901, -1.4198364118848448) +station = ('kjyl', 0.0052698383153156779) +zone = ('gaz101', 0.0010252057835066844) + +[31331] +centroid = (0.55020771630835397, -1.4214156206986341) +station = ('kbqk', 0.0048074214814396565) +zone = ('gaz140', 0.00069531478056981282) + +[31401] +centroid = (0.55980875507028238, -1.4152571391665096) +station = ('ksvn', 0.0013635949090977405) +zone = ('gaz118', 0.0020641055812482866) + +[31404] +centroid = (0.55940556655977902, -1.4145758149864085) +station = ('ksvn', 0.0016107477973932012) +zone = ('gaz119', 0.0023384858450230185) + +[31405] +centroid = (0.55919324725627406, -1.4168430500446267) +station = ('ksvn', 0.00058596465625435339) +zone = ('gaz118', 0.0009763684009148286) + +[31406] +centroid = (0.55818715220896187, -1.415179943253694) +station = ('ksvn', 0.001153257345131998) +zone = ('gaz119', 0.0013309032474321933) + +[31407] +centroid = (0.56174451719696172, -1.4170586156605407) +station = ('ksav', 0.0012095124098715053) +zone = ('gaz118', 0.0019664588216654405) + +[31408] +centroid = (0.56055699517390478, -1.4169339118854856) +station = ('ksav', 0.00023210682611469338) +zone = ('gaz118', 0.0009534113764217341) + +[31409] +centroid = (0.55878655063397431, -1.4162416968508522) +station = ('ksvn', 7.9441065769869938e-05) +zone = ('gaz118', 0.0016276135862324534) + +[31410] +centroid = (0.5589404363141226, -1.4136212769652006) +station = ('ksvn', 0.0023050947758686477) +zone = ('gaz119', 0.0019531462212138335) + +[31411] +centroid = (0.55751033097833103, -1.4143213285281753) +station = ('ksvn', 0.002137795244484493) +zone = ('gaz119', 0.00043269942692213175) + +[31415] +centroid = (0.55988692836747911, -1.4159533684584227) +station = ('ksvn', 0.0011375611392033835) +zone = ('gaz118', 0.0014740503300437928) + +[31419] +centroid = (0.55845568856767369, -1.4177422785818394) +station = ('ksvn', 0.0012412481199854015) +zone = ('gaz118', 0.0013977019970196104) + +[31501] +centroid = (0.5449550257514294, -1.4372820947692495) +station = ('kays', 0.00087423322372521628) +zone = ('gaz151', 0.0031214195909096769) + +[31503] +centroid = (0.5445819267172306, -1.4383794705364408) +station = ('kays', 0.00085599753013100165) +zone = ('gaz150', 0.0026010495137394618) + +[31510] +centroid = (0.55057257738848342, -1.4388615304758414) +station = ('kamg', 0.00090733315756486314) +zone = ('gaz134', 0.00022902050474298086) + +[31512] +centroid = (0.55057626003320514, -1.4489436517927896) +station = ('kdqh', 0.002642740843880228) +zone = ('gaz132', 0.0025152520555020695) + +[31513] +centroid = (0.55461414907086404, -1.4372389502301399) +station = ('kamg', 0.0048178304724814068) +zone = ('gaz135', 0.0009969993637999892) + +[31516] +centroid = (0.54645164558501458, -1.4355900329660258) +station = ('kays', 0.0024218628599655175) +zone = ('gaz151', 0.0010497136701279597) + +[31518] +centroid = (0.54999874803701276, -1.4344004689077441) +station = ('kjes', 0.0045586954435353644) +zone = ('gaz151', 0.0027153788710111994) + +[31519] +centroid = (0.55299498967049643, -1.4465176441325176) +station = ('kdqh', 0.0036346051184479042) +zone = ('gaz132', 0.0023995220866130456) + +[31520] +centroid = (0.54420970034765781, -1.4223381493813609) +station = ('kbqk', 0.0012727207400955332) +zone = ('gaz154', 0.00086437838408724092) + +[31522] +centroid = (0.54553197924226116, -1.4196865055553909) +station = ('kssi', 0.0019612867748066234) +zone = ('gaz154', 0.0017723362251290877) + +[31523] +centroid = (0.54485648446186186, -1.424572415170009) +station = ('kbqk', 0.0023843622630430185) +zone = ('gaz153', 0.00093943415447327234) + +[31524] +centroid = (0.5452586955879839, -1.4219789955278854) +station = ('kbqk', 0.00018610043478180843) +zone = ('gaz154', 0.00086958369547710727) + +[31525] +centroid = (0.546656320346396, -1.4229047181631433) +station = ('kbqk', 0.0015279468960612027) +zone = ('gaz153', 0.0019026161319798361) + +[31527] +centroid = (0.54222126418415317, -1.4212787694319853) +station = ('kssi', 0.0016297152512461039) +zone = ('gaz154', 0.0023222269287786687) + +[31532] +centroid = (0.55365456704811755, -1.4444139289719184) +station = ('kdqh', 0.004540876249814081) +zone = ('gaz133', 0.0023223551787203934) + +[31533] +centroid = (0.55083041487888051, -1.4456219935202717) +station = ('kdqh', 0.0015357713951020088) +zone = ('gaz132', 0.00037045336180011068) + +[31535] +centroid = (0.54910185824099789, -1.4463186591444974) +station = ('kdqh', 0.00029283471784698412) +zone = ('gaz132', 0.0015604482147779095) + +[31537] +centroid = (0.53904863957646287, -1.4312612673552294) +station = ('kjax', 0.0081355502590836175) +zone = ('gaz164', 0.0026863911510650756) + +[31539] +centroid = (0.55556797150707904, -1.4417352325425428) +station = ('kamg', 0.0054374445419582227) +zone = ('gaz133', 0.00065415021705861852) + +[31542] +centroid = (0.54354267041413051, -1.4332540319352791) +station = ('kays', 0.0045886521958812291) +zone = ('gaz152', 0.0022616208662305879) + +[31543] +centroid = (0.54680624412914225, -1.428153586449006) +station = ('kjes', 0.0039987962768712566) +zone = ('gaz152', 0.0032698325918997678) + +[31544] +centroid = (0.55572527803256122, -1.4479872986291593) +station = ('kfzg', 0.0053429838869862448) +zone = ('gaz110', 0.001597235699748535) + +[31545] +centroid = (0.55264026895332119, -1.43002108874864) +station = ('kjes', 0.0020688719247631149) +zone = ('gaz136', 0.0019796252906085221) + +[31546] +centroid = (0.54994994863112701, -1.4272831558444512) +station = ('kjes', 0.0017438370944947267) +zone = ('gaz136', 0.0021991146087728414) + +[31547] +centroid = (0.53739642364006246, -1.4234859477106423) +station = ('kfhb', 0.0032670480511701595) +zone = ('gaz166', 0.00170972865557999) + +[31548] +centroid = (0.53748526089898896, -1.4258868400829785) +station = ('kfhb', 0.0045859315883951405) +zone = ('gaz166', 0.0026845065307902509) + +[31549] +centroid = (0.55725221423525351, -1.4436476421638305) +station = ('kvdi', 0.0068567364619880611) +zone = ('gaz133', 0.0024315659864244323) + +[31550] +centroid = (0.54361909838207545, -1.4415655690859566) +station = ('khoe', 0.0030167302030968718) +zone = ('gaz150', 0.0030432477583675452) + +[31551] +centroid = (0.54970586433523561, -1.435938435591309) +station = ('kamg', 0.0034373026770312494) +zone = ('gaz151', 0.0025509460426559102) + +[31552] +centroid = (0.5461109922216103, -1.4416270570355043) +station = ('kays', 0.0030511835889263563) +zone = ('gaz150', 0.0048860644541391289) + +[31553] +centroid = (0.54422334882240841, -1.4306831095872139) +station = ('kjes', 0.0066317280744970907) +zone = ('gaz152', 0.00030445133037730664) + +[31554] +centroid = (0.54953557256011853, -1.4420052175245337) +station = ('kamg', 0.0019779113550903345) +zone = ('gaz134', 0.0027657564731134888) + +[31555] +centroid = (0.55336826323762045, -1.432577804116594) +station = ('kjes', 0.0039609625838633337) +zone = ('gaz135', 0.0031851700820315259) + +[31556] +centroid = (0.54827778358137624, -1.4331249822903867) +station = ('kjes', 0.0041988325812844689) +zone = ('gaz151', 0.0017895133380197118) + +[31557] +centroid = (0.54759605797554722, -1.4328825386039921) +station = ('kjes', 0.0044786440992104796) +zone = ('gaz151', 0.0017391307576845316) + +[31558] +centroid = (0.53929528950635475, -1.4211794951041319) +station = ('kssi', 0.0044245586338810001) +zone = ('gaz166', 0.0019088608905112785) + +[31560] +centroid = (0.54976483901066042, -1.4315396997308001) +station = ('kjes', 0.0022732645726483256) +zone = ('gaz136', 0.0018013008034140729) + +[31561] +centroid = (0.54467949062241705, -1.4191262374122082) +station = ('kssi', 0.0014899234967168892) +zone = ('gaz154', 0.0019538961785541941) + +[31562] +centroid = (0.5309708892790902, -1.4341435564418505) +station = ('kvqq', 0.0056771349925285848) +zone = ('flz023', 0.0023457377545604676) + +[31563] +centroid = (0.55416505840103336, -1.4343371309091892) +station = ('kjes', 0.005621600304458115) +zone = ('gaz135', 0.0015963733205091801) + +[31565] +centroid = (0.54221628999578497, -1.4247564077797543) +station = ('kssi', 0.0039975357248682461) +zone = ('gaz165', 0.0027121051346636828) + +[31566] +centroid = (0.54424190167235709, -1.427776961849718) +station = ('kbqk', 0.0051932611826535271) +zone = ('gaz152', 0.0026440400322445949) + +[31567] +centroid = (0.55206310602297914, -1.4434959905051246) +station = ('kamg', 0.0035072542829927482) +zone = ('gaz132', 0.0025606549448371862) + +[31568] +centroid = (0.54128527901289369, -1.4280127034717851) +station = ('kbqk', 0.006691837640667408) +zone = ('gaz165', 0.0011413387030374535) + +[31569] +centroid = (0.53936241486938641, -1.4259962198672007) +station = ('kfhb', 0.0060580305819801783) +zone = ('gaz165', 0.0014448659960680378) + +[31601] +centroid = (0.53684095515232277, -1.4541912808948834) +station = ('kvld', 0.00089497546376795481) +zone = ('gaz160', 0.0015210887230301324) + +[31602] +centroid = (0.53874655798952775, -1.454594748658067) +station = ('kvld', 0.0018596315696343317) +zone = ('gaz160', 0.0012634529141664018) + +[31605] +centroid = (0.53982724840907004, -1.4525993660841394) +station = ('kvad', 0.00076604582421269584) +zone = ('gaz160', 0.0017775867181377947) + +[31606] +centroid = (0.53766761289923737, -1.4519401726789536) +station = ('kvld', 0.0012154603949224938) +zone = ('gaz160', 0.0012611335098207039) + +[31620] +centroid = (0.5430928467060141, -1.4562022492590312) +station = ('kvad', 0.0043757963504285182) +zone = ('gaz147', 0.0006494401771732079) + +[31622] +centroid = (0.54765815679033325, -1.4519782383099396) +station = ('ktma', 0.0043478485716687875) +zone = ('gaz148', 0.0018725279958613896) + +[31623] +centroid = (0.54235118649367164, -1.4424099768313636) +station = ('khoe', 0.0019003910381093358) +zone = ('gaz163', 0.002932931636332839) + +[31624] +centroid = (0.54622721369650062, -1.4438884626940207) +station = ('kdqh', 0.0037052334911868608) +zone = ('gaz149', 0.002256230791771693) + +[31625] +centroid = (0.54092373405834304, -1.4579346979811461) +station = ('kmgr', 0.0043394702511135247) +zone = ('gaz159', 0.0027210465740268633) + +[31626] +centroid = (0.53718279533961844, -1.4625180722232232) +station = ('ktvi', 0.002503710528890579) +zone = ('gaz158', 0.0023740050251934239) + +[31627] +centroid = (0.54180575364913086, -1.4554757035980113) +station = ('kvad', 0.0031758763800570529) +zone = ('gaz147', 0.0020152901087402385) + +[31629] +centroid = (0.5378553928734594, -1.4606554742987872) +station = ('ktvi', 0.0032351537057018916) +zone = ('gaz159', 0.0016929259404281733) + +[31630] +centroid = (0.54019368028552639, -1.4464718466929452) +station = ('khoe', 0.0024860778746567725) +zone = ('gaz163', 0.0026265714806385267) + +[31631] +centroid = (0.53484443811438143, -1.4441218132150124) +station = ('khoe', 0.0072668746519479561) +zone = ('gaz162', 0.0025516544385800785) + +[31632] +centroid = (0.54082496587597262, -1.4549151562021481) +station = ('kvad', 0.0024277432876240301) +zone = ('gaz160', 0.0030116391592180792) + +[31634] +centroid = (0.54179357125095196, -1.4445646730594135) +station = ('khoe', 0.00030804644935660843) +zone = ('gaz163', 0.0024042745596275254) + +[31635] +centroid = (0.54271424988467143, -1.4494873393080785) +station = ('kvad', 0.0031782082358036267) +zone = ('gaz161', 0.0010179529991555718) + +[31636] +centroid = (0.53635688808428217, -1.4505670872498246) +station = ('kvld', 0.0025019457569904419) +zone = ('gaz160', 0.0029531076260866131) + +[31637] +centroid = (0.54615623115582201, -1.4563087841565729) +station = ('ktma', 0.0023033305556367056) +zone = ('gaz147', 0.002420821375803905) + +[31638] +centroid = (0.53941873664434836, -1.4575626112379132) +station = ('kvld', 0.0042602880017479847) +zone = ('gaz159', 0.0015182710665523145) + +[31639] +centroid = (0.54483154370685083, -1.4519520932777448) +station = ('kvad', 0.0043634536052080345) +zone = ('gaz148', 0.0011910063449515605) + +[31641] +centroid = (0.53964829980086315, -1.4502341656950068) +station = ('kvad', 0.001809692276147462) +zone = ('gaz161', 0.0021142216356005565) + +[31642] +centroid = (0.54580185950449711, -1.4467839464697869) +station = ('kdqh', 0.0036060943050599289) +zone = ('gaz149', 0.0004870780342425283) + +[31643] +centroid = (0.53705151167328335, -1.4583689708056271) +station = ('kvld', 0.0043798986854427955) +zone = ('gaz159', 0.001285611386868294) + +[31645] +centroid = (0.54211181458676061, -1.4524401047898949) +station = ('kvad', 0.0016651545756344855) +zone = ('gaz161', 0.0023673715477779637) + +[31647] +centroid = (0.54469704863469215, -1.4560817168208884) +station = ('ktma', 0.0037681302514490011) +zone = ('gaz147', 0.00095833797236859132) + +[31648] +centroid = (0.53592956167022388, -1.4489553629520704) +station = ('kvld', 0.003949286393070797) +zone = ('gaz162', 0.0018787007306663511) + +[31649] +centroid = (0.54042174245888441, -1.4485442506467634) +station = ('kvad', 0.0030613172217470929) +zone = ('gaz161', 0.0016376183452155274) + +[31650] +centroid = (0.54796048272336373, -1.4490664531589599) +station = ('kdqh', 0.0028348875487544259) +zone = ('gaz149', 0.0027686696347843584) + +[31698] +centroid = (0.53841564356334959, -1.4536772290702935) +station = ('kvld', 0.0011954751411673214) +zone = ('gaz160', 0.00041993611433660793) + +[31699] +centroid = (0.5406142522753794, -1.4522046773270934) +station = ('kvad', 0.00016363965606986346) +zone = ('gaz161', 0.0024005831470725607) + +[31701] +centroid = (0.55069841562755217, -1.4688553801905071) +station = ('kaby', 0.00069443839949062409) +zone = ('gaz125', 0.00091549571105484587) + +[31705] +centroid = (0.5500735004888756, -1.4668260509626281) +station = ('kaby', 0.0023541698980149729) +zone = ('gaz127', 0.0029185125252891553) + +[31707] +centroid = (0.55129573711075475, -1.4696794723034212) +station = ('kaby', 0.0009401238125898118) +zone = ('gaz125', 0.00094749899869059557) + +[31709] +centroid = (0.55963692740542337, -1.4682277074316123) +station = ('kacj', 0.0013818093151633153) +zone = ('gaz104', 0.0011752748559084346) + +[31711] +centroid = (0.56182845008069016, -1.4683499328391294) +station = ('kacj', 0.0017410482165735033) +zone = ('gaz104', 0.0028047920162964737) + +[31712] +centroid = (0.55562542774605461, -1.4609688307126902) +station = ('kfzg', 0.0070315165659847858) +zone = ('gaz106', 0.0017804736231976858) + +[31714] +centroid = (0.55362308130841165, -1.4607359339773043) +station = ('ktma', 0.006131156522986958) +zone = ('gaz128', 0.0010386561079202355) + +[31716] +centroid = (0.54727887929058239, -1.4683370348559572) +station = ('kaby', 0.0032554324738964125) +zone = ('gaz145', 0.0024875380609758906) + +[31719] +centroid = (0.56008142785932136, -1.4714999205264212) +station = ('kacj', 0.0016729283971230521) +zone = ('gaz104', 0.0018962233585696348) + +[31720] +centroid = (0.53892568113065997, -1.4612687655446455) +station = ('ktvi', 0.0023848630350436759) +zone = ('gaz159', 0.0022512494552357509) + +[31721] +centroid = (0.5502195845472676, -1.4713381285047613) +station = ('kaby', 0.0015160280853997008) +zone = ('gaz125', 0.0012732440296896973) + +[31722] +centroid = (0.54222934505858988, -1.4594926312313534) +station = ('kmgr', 0.0027118194336854329) +zone = ('gaz146', 0.0030357977292208883) + +[31730] +centroid = (0.54445343557769876, -1.4715032191987076) +station = ('kaby', 0.0061340045930663731) +zone = ('gaz145', 0.001821961576871008) + +[31733] +centroid = (0.55140518670814731, -1.4571712560597385) +station = ('ktma', 0.0030262248053072472) +zone = ('gaz129', 0.0024308211834946827) + +[31735] +centroid = (0.55797399514741575, -1.4656106734847094) +station = ('kacj', 0.0041541672356305978) +zone = ('gaz104', 0.0035330842490235346) + +[31738] +centroid = (0.5412736551200753, -1.4638400718651463) +station = ('kmgr', 0.0016244033170674185) +zone = ('gaz158', 0.0026961037067927663) + +[31743] +centroid = (0.55692978210924005, -1.4660962066293217) +station = ('kacj', 0.0045695701017796587) +zone = ('gaz126', 0.0030755083451624622) + +[31744] +centroid = (0.54700967970675474, -1.4643593945840772) +station = ('kmgr', 0.0047143502421941154) +zone = ('gaz146', 0.0033244057946952726) + +[31747] +centroid = (0.54413611726639366, -1.4588695312350992) +station = ('kmgr', 0.0036041177253773576) +zone = ('gaz147', 0.0023715684150848442) + +[31749] +centroid = (0.54827057537156554, -1.4543337172151387) +station = ('ktma', 0.002278881636227918) +zone = ('gaz148', 0.0028053213387850963) + +[31750] +centroid = (0.55390580719394222, -1.4523763828189045) +station = ('kfzg', 0.0012795415819823613) +zone = ('gaz130', 0.0004152649701455522) + +[31756] +centroid = (0.54424631735536466, -1.4654789709393541) +station = ('kmgr', 0.0029751406942906699) +zone = ('gaz146', 0.0029423446494083578) + +[31757] +centroid = (0.53880493925300688, -1.4643868311599184) +station = ('ktvi', 0.00062323555991340772) +zone = ('gaz158', 0.00027634962028434825) + +[31763] +centroid = (0.5541434686781862, -1.4685037137995227) +station = ('kaby', 0.0038898205988097323) +zone = ('gaz126', 0.00051598583547217804) + +[31764] +centroid = (0.55809192704497301, -1.467627104729416) +station = ('kacj', 0.0028546092510629887) +zone = ('gaz104', 0.00195007515997985) + +[31765] +centroid = (0.54258012133165578, -1.4665504983803233) +station = ('ktvi', 0.0039091477080271386) +zone = ('gaz145', 0.0034660179898495561) + +[31768] +centroid = (0.54435253809364104, -1.4633033656668653) +station = ('kmgr', 0.0019084136231775181) +zone = ('gaz146', 0.0010796636359409603) + +[31771] +centroid = (0.54538455128034524, -1.4600420434265888) +station = ('kmgr', 0.0036170377329095937) +zone = ('gaz146', 0.0020035009525469507) + +[31772] +centroid = (0.55369093970972916, -1.4653963645058572) +station = ('kaby', 0.004868663940233723) +zone = ('gaz126', 0.0028409047897987295) + +[31773] +centroid = (0.54058829922940221, -1.4669159179658133) +station = ('ktvi', 0.0027922223468339635) +zone = ('gaz158', 0.0027167341619457937) + +[31774] +centroid = (0.55079446109628949, -1.4533296816563437) +station = ('kfzg', 0.0021258520478482043) +zone = ('gaz131', 0.00077622714943699814) + +[31775] +centroid = (0.54682633286883275, -1.4590704535385888) +station = ('ktma', 0.0023545001099452602) +zone = ('gaz129', 0.0024569849049886345) + +[31778] +centroid = (0.54061559617890342, -1.4608418929161928) +station = ('kmgr', 0.0024576135146601864) +zone = ('gaz159', 0.0029333803409195688) + +[31779] +centroid = (0.54293784401514444, -1.4697614504183873) +station = ('ktvi', 0.0061079225485854418) +zone = ('gaz145', 0.002063738955185732) + +[31780] +centroid = (0.5590618414168913, -1.472863057578814) +station = ('kacj', 0.0031078684247142982) +zone = ('gaz103', 0.0024128929429798329) + +[31781] +centroid = (0.55083599993248689, -1.4625211963625842) +station = ('ktma', 0.0053083900064016939) +zone = ('gaz127', 0.0008289251991560391) + +[31783] +centroid = (0.55429869826185862, -1.4568285083012318) +station = ('kfzg', 0.003275290436249711) +zone = ('gaz128', 0.0024052347525570059) + +[31784] +centroid = (0.54536739469379814, -1.4667165839119432) +station = ('kmgr', 0.0044965223373915862) +zone = ('gaz145', 0.0023815802765105938) + +[31787] +centroid = (0.55674570223303221, -1.4703232719046044) +station = ('kacj', 0.0037349585498284211) +zone = ('gaz104', 0.0025512765437743379) + +[31788] +centroid = (0.5429970804899571, -1.4604356151729134) +station = ('kmgr', 0.0019437014682213559) +zone = ('gaz146', 0.0019216314121822482) + +[31789] +centroid = (0.54942500595200461, -1.4615358358267858) +station = ('ktma', 0.0040067853514524554) +zone = ('gaz127', 0.002074763552239537) + +[31790] +centroid = (0.55243992260848473, -1.45871072372646) +station = ('ktma', 0.0043112516365729457) +zone = ('gaz128', 0.0013085595859557439) + +[31791] +centroid = (0.5502782974233047, -1.4642277967584769) +station = ('kaby', 0.004551846978868939) +zone = ('gaz127', 0.0007549305071793762) + +[31792] +centroid = (0.53705173856608612, -1.4668393503715285) +station = ('ktvi', 0.0033367513167353756) +zone = ('gaz158', 0.002469932275236598) + +[31793] +centroid = (0.54912440789493366, -1.4589825587574581) +station = ('ktma', 0.0018463724753799656) +zone = ('gaz129', 0.0010004600381743065) + +[31794] +centroid = (0.54883421200020455, -1.4565240007066365) +station = ('ktma', 0.00060797996062370116) +zone = ('gaz129', 0.001119145700166185) + +[31795] +centroid = (0.54931826161495267, -1.4606217545376388) +station = ('ktma', 0.0032277120134757442) +zone = ('gaz127', 0.0027872654309767553) + +[31796] +centroid = (0.55449316284711581, -1.4635714656932644) +station = ('kaby', 0.0065672546365143697) +zone = ('gaz106', 0.0029725842297996245) + +[31798] +centroid = (0.55175753377754, -1.4497746554095416) +station = ('kfzg', 0.0032468387708051547) +zone = ('gaz130', 0.0034348193506071084) + +[31801] +centroid = (0.56756065239630771, -1.4764496393784923) +station = ('klsf', 0.0047831724400347227) +zone = ('gaz091', 0.0030645749002443886) + +[31803] +centroid = (0.56374777120581576, -1.4749512044024851) +station = ('kacj', 0.0056385254263423426) +zone = ('gaz091', 0.00095563166178787751) + +[31804] +centroid = (0.57010352730329328, -1.4816006470531957) +station = ('kcsg', 0.0027298529817310095) +zone = ('gaz078', 0.0012800293444234822) + +[31805] +centroid = (0.56309650159543412, -1.4789833513069048) +station = ('klsf', 0.0018495307865887094) +zone = ('gaz090', 0.0016240628962020565) + +[31806] +centroid = (0.56310327347293188, -1.4717091680504428) +station = ('kacj', 0.0032338894661542812) +zone = ('gaz092', 0.00011817897980114426) + +[31807] +centroid = (0.56964457552318881, -1.4800537966437382) +station = ('kcsg', 0.0030519271357544696) +zone = ('gaz078', 0.0023315804725528226) + +[31808] +centroid = (0.56951854529790236, -1.4837435797620866) +station = ('kcsg', 0.0021956189061948976) +zone = ('gaz078', 0.0023786691833697308) + +[31810] +centroid = (0.56842691166394999, -1.4752521515254065) +station = ('klsf', 0.0061128049946697106) +zone = ('gaz079', 0.0022895274421921618) + +[31811] +centroid = (0.5714044782744373, -1.4823338249653735) +station = ('kcsg', 0.003891125590127738) +zone = ('gaz078', 0.00033421926377350425) + +[31812] +centroid = (0.56967698628739838, -1.4731079621794538) +station = ('kopn', 0.0058594570158820745) +zone = ('gaz079', 0.0021749996081566149) + +[31814] +centroid = (0.56237498248265971, -1.4807833966309494) +station = ('klsf', 0.0019529757890607185) +zone = ('gaz090', 0.0023357024709707362) + +[31815] +centroid = (0.55902918630658649, -1.4808225094594867) +station = ('keuf', 0.0044654145293882208) +zone = ('gaz102', 0.00085828662847546263) + +[31816] +centroid = (0.57388982712927727, -1.4766907915212402) +station = ('kopn', 0.0051966451159796163) +zone = ('gaz067', 0.0030152493980432696) + +[31820] +centroid = (0.56861776341765546, -1.4804703020164343) +station = ('kcsg', 0.0021440501830521904) +zone = ('gaz089', 0.0014349731457077531) + +[31821] +centroid = (0.56053217659194143, -1.4828919289002835) +station = ('keuf', 0.0038055419903864291) +zone = ('gaz102', 0.002006730938560736) + +[31822] +centroid = (0.57360209214879343, -1.4819651416141821) +station = ('klgc', 0.0034569113382156885) +zone = ('gaz078', 0.0022511950796552027) + +[31823] +centroid = (0.57265371513984475, -1.4804334232093395) +station = ('klgc', 0.0050379838177802873) +zone = ('gaz078', 0.0018180278173567125) + +[31824] +centroid = (0.55941811547710096, -1.4752033172129357) +station = ('kacj', 0.0048804766593756963) +zone = ('gaz103', 0.00042707126023852426) + +[31825] +centroid = (0.56053334596254023, -1.4777859856268669) +station = ('klsf', 0.0044848921393738474) +zone = ('gaz103', 0.0021492445413149055) + +[31826] +centroid = (0.57234517583467726, -1.4783512279584177) +station = ('kcsg', 0.0060330363248958692) +zone = ('gaz079', 0.002984880987867635) + +[31827] +centroid = (0.5704908507708959, -1.4751839789648236) +station = ('kopn', 0.006014556369514059) +zone = ('gaz079', 0.0002770452310426767) + +[31829] +centroid = (0.56833807440502349, -1.4788478090371953) +station = ('kcsg', 0.00331322417968329) +zone = ('gaz089', 0.0023315529523555791) + +[31830] +centroid = (0.57420449254011929, -1.4787600189758199) +station = ('klgc', 0.0054121431345609738) +zone = ('gaz067', 0.0025261612085358664) + +[31831] +centroid = (0.57047086675096048, -1.4784132046001559) +station = ('kcsg', 0.0046339418310349248) +zone = ('gaz079', 0.0025649241433770204) + +[31832] +centroid = (0.55777197328649741, -1.4768088630451377) +station = ('kacj', 0.0066877991121984306) +zone = ('gaz103', 0.0018130704109520876) + +[31833] +centroid = (0.5732167409032457, -1.4851328618466744) +station = ('klgc', 0.002910881327131876) +zone = ('gaz078', 0.0032677698392426587) + +[31836] +centroid = (0.5724051977076533, -1.4754156539697332) +station = ('kopn', 0.0048374057091723436) +zone = ('gaz079', 0.0016915371943036891) + +[31901] +centroid = (0.56662660454051783, -1.4831857725331494) +station = ('kcsg', 0.001001053835014723) +zone = ('gaz089', 0.0017089176829749716) + +[31903] +centroid = (0.56573360682873486, -1.4827312713426377) +station = ('kcsg', 0.0017903793535334396) +zone = ('gaz089', 0.0020230243968101893) + +[31904] +centroid = (0.56817923198979947, -1.4836914467773299) +station = ('kcsg', 0.0010913486226451334) +zone = ('gaz089', 0.0020939193909029811) + +[31905] +centroid = (0.56511658057827729, -1.4819040899969476) +station = ('klsf', 0.0013432762001796613) +zone = ('gaz090', 0.0018519659858278862) + +[31906] +centroid = (0.56667020286523262, -1.482660218988789) +station = ('kcsg', 0.00085269604476110315) +zone = ('gaz089', 0.0013048486578360152) + +[31907] +centroid = (0.5669184934046213, -1.4818102785496527) +station = ('kcsg', 0.00093568858953375217) +zone = ('gaz089', 0.00060662670463585593) + +[31909] +centroid = (0.56808384974617787, -1.4822052640126715) +station = ('kcsg', 0.00067811958376758443) +zone = ('gaz089', 0.00096914160958251139) + +[32003] +centroid = (0.52526704856381767, -1.4261112719714921) +station = ('knip', 0.0024921229566575013) +zone = ('flz032', 0.0029727457244800755) + +[32008] +centroid = (0.52202879957625237, -1.4471108291853927) +station = ('kcty', 0.0055965208549111746) +zone = ('flz035', 0.0036399730575885055) + +[32009] +centroid = (0.53097282659456002, -1.4307131292503481) +station = ('kvqq', 0.0038478575545255545) +zone = ('flz024', 0.0041025619477878363) + +[32011] +centroid = (0.53356654294265615, -1.4283701119960084) +station = ('kjax', 0.0024378408953892338) +zone = ('flz024', 0.00081667134528708705) + +[32024] +centroid = (0.52515641214253372, -1.443973460228593) +station = ('kgnv', 0.0096211591693738819) +zone = ('flz022', 0.002901241357883535) + +[32025] +centroid = (0.52546807558706232, -1.4412775024929148) +station = ('kgnv', 0.008397121856209621) +zone = ('flz022', 0.0021431197015948588) + +[32026] +centroid = (0.5245438364816688, -1.4343409008203736) +station = ('kvqq', 0.0054254420505493095) +zone = ('flz031', 0.0018244892287101403) + +[32033] +centroid = (0.51990063235283313, -1.4212970779358389) +station = ('ksgj', 0.0033110180326895045) +zone = ('flz033', 0.0019808151471116327) + +[32034] +centroid = (0.53423990842136815, -1.4222988271133135) +station = ('kfhb', 0.0003725624311584541) +zone = ('flz024', 0.0047584451812709679) + +[32038] +centroid = (0.52246820366873448, -1.4432698656472362) +station = ('kgnv', 0.0074423320023337784) +zone = ('flz035', 0.003997866203351812) + +[32040] +centroid = (0.52784893157958535, -1.4353392989656844) +station = ('kvqq', 0.0054793868754710439) +zone = ('flz023', 0.0016751354867083482) + +[32043] +centroid = (0.52249441851409939, -1.4265008643671224) +station = ('knip', 0.0052713383070589412) +zone = ('flz032', 0.0020620004190906494) + +[32044] +centroid = (0.521145854960961, -1.4341268361876165) +station = ('k42j', 0.0026306465153018584) +zone = ('flz031', 0.0015837658364175743) + +[32046] +centroid = (0.5358430282459099, -1.4297116244189689) +station = ('kjax', 0.0047901993650477761) +zone = ('flz024', 0.0022819472310360448) + +[32052] +centroid = (0.5320833621443114, -1.4475077345105887) +station = ('kvld', 0.0071800175752564513) +zone = ('flz020', 0.00025133747262123064) + +[32053] +centroid = (0.53364421009436991, -1.4508234412103576) +station = ('kvld', 0.0041957866051846818) +zone = ('flz020', 0.0030149325611825502) + +[32054] +centroid = (0.52418559019940447, -1.4380522387549843) +station = ('kgnv', 0.0060602785068013375) +zone = ('flz030', 0.00039005731272188839) + +[32055] +centroid = (0.5283129622678131, -1.4420631100958223) +station = ('kgnv', 0.011204809134843133) +zone = ('flz022', 0.00080039600187951508) + +[32058] +centroid = (0.52494009603504155, -1.4331200255553109) +station = ('kvqq', 0.0043252044439733893) +zone = ('flz031', 0.0023733558817000677) + +[32059] +centroid = (0.53012428241882537, -1.4529694980586099) +station = ('kvld', 0.0071511566309097555) +zone = ('flz019', 0.0035454374673123921) + +[32060] +centroid = (0.52838150134753892, -1.4493395448270194) +station = ('k40j', 0.0089473024863058592) +zone = ('flz021', 0.0015594219432623557) + +[32061] +centroid = (0.52530139664349695, -1.44007662870108) +station = ('kgnv', 0.0077419987884114923) +zone = ('flz030', 0.002297652421584714) + +[32062] +centroid = (0.52599785282821276, -1.4482452059327264) +station = ('kcty', 0.0089891635682843012) +zone = ('flz021', 0.0010340395081386829) + +[32063] +centroid = (0.52789167469296672, -1.4331456818953152) +station = ('kvqq', 0.0035985957588421211) +zone = ('flz023', 0.0029791596699648782) + +[32064] +centroid = (0.52875840519950712, -1.4483459114305668) +station = ('kvld', 0.0095129839334936028) +zone = ('flz021', 0.0017493196180146612) + +[32065] +centroid = (0.52625582994495002, -1.427627247506482) +station = ('kvqq', 0.0016691176076076212) +zone = ('flz032', 0.0030919437988274228) + +[32066] +centroid = (0.52429034486110915, -1.4526043228192151) +station = ('k40j', 0.0053872307036046795) +zone = ('flz029', 0.0011818761159566812) + +[32068] +centroid = (0.52505202399997197, -1.4292650295699685) +station = ('kvqq', 0.0023719191533753117) +zone = ('flz032', 0.0018177381312254313) + +[32071] +centroid = (0.52461310859968036, -1.4478523323181025) +station = ('kcty', 0.0077284508909221117) +zone = ('flz021', 0.0024592116497028568) + +[32072] +centroid = (0.52688278711885139, -1.4385787522304336) +station = ('kgnv', 0.008783376186913024) +zone = ('flz030', 0.0026423147580928574) + +[32073] +centroid = (0.52656271118732811, -1.4266171905617677) +station = ('knip', 0.0015569179360349905) +zone = ('flz025', 0.0029664512662619436) + +[32079] +centroid = (0.52321002096070968, -1.4278019026047291) +station = ('kvqq', 0.0043337654244308133) +zone = ('flz032', 0.0007748550096610226) + +[32080] +centroid = (0.52043974710548169, -1.4184252782780224) +station = ('ksgj', 0.0026654628101836658) +zone = ('flz033', 0.0030015053951749533) + +[32081] +centroid = (0.52588723386022129, -1.4208303768938555) +station = ('ksgj', 0.0031714304592409446) +zone = ('flz033', 0.0040484711583256179) + +[32082] +centroid = (0.52578438160740126, -1.4201670470583425) +station = ('ksgj', 0.0029331740919598388) +zone = ('flz033', 0.0040664506750793424) + +[32083] +centroid = (0.52559981303900283, -1.4352336192794761) +station = ('kvqq', 0.0056723537506075516) +zone = ('flz030', 0.0024299667713698135) + +[32084] +centroid = (0.52217170713540573, -1.4201235709066753) +station = ('ksgj', 0.00082561969184512035) +zone = ('flz033', 0.0011990820355392946) + +[32086] +centroid = (0.5193980473414288, -1.418987221937287) +station = ('ksgj', 0.0035345277317551126) +zone = ('flz033', 0.0032799742338538475) + +[32087] +centroid = (0.53018624160727112, -1.4360649370554937) +station = ('kvqq', 0.006686560045989688) +zone = ('flz023', 0.00081282120653592468) + +[32091] +centroid = (0.52237149497488145, -1.4333964158956569) +station = ('k42j', 0.0033486861138235726) +zone = ('flz031', 0.00072045852233071361) + +[32092] +centroid = (0.52248457485711819, -1.4225707494107742) +station = ('ksgj', 0.0025658829163762256) +zone = ('flz033', 0.0011357913775441625) + +[32094] +centroid = (0.52688468952773604, -1.445518652575261) +station = ('kcty', 0.010558455561277526) +zone = ('flz021', 0.0025584432972828633) + +[32095] +centroid = (0.52385387292177032, -1.4209011150884387) +station = ('ksgj', 0.0014554888495795411) +zone = ('flz033', 0.0020370207483481734) + +[32096] +centroid = (0.53298718089745667, -1.4420693409212522) +station = ('khoe', 0.0093695782302823816) +zone = ('flz020', 0.0049149126272988218) + +[32097] +centroid = (0.53513892751907044, -1.4245166693537001) +station = ('kfhb', 0.0023472170237599037) +zone = ('flz024', 0.0029883813789433186) + +[32102] +centroid = (0.50854166306171111, -1.4232536792937871) +station = ('kded', 0.0041893299014253956) +zone = ('flz041', 0.0028928480993760009) + +[32110] +centroid = (0.5136295247240773, -1.4196370080178042) +station = ('kxfl', 0.0020912288046769879) +zone = ('flz038', 0.00066863043846910719) + +[32112] +centroid = (0.51351089469481925, -1.4237904203986527) +station = ('kxfl', 0.0056431864097891875) +zone = ('flz038', 0.0040487310279358453) + +[32113] +centroid = (0.51330093158580437, -1.4327271344873946) +station = ('kocf', 0.0046687381300605565) +zone = ('flz040', 0.0035197704495138391) + +[32114] +centroid = (0.50953142182722455, -1.4145483784105672) +station = ('kdab', 0.00055815648151263432) +zone = ('flz141', 0.0027812126655450339) + +[32117] +centroid = (0.51025726935654392, -1.4148331637846152) +station = ('kdab', 0.0012036061072049186) +zone = ('flz141', 0.0035106670665595915) + +[32118] +centroid = (0.50980437386894395, -1.4137572032073455) +station = ('kdab', 0.001234415371879978) +zone = ('flz141', 0.00314691726076972) + +[32119] +centroid = (0.50894699832719426, -1.4141785082354847) +station = ('kdab', 0.0006221155431335876) +zone = ('flz141', 0.0022309661172524218) + +[32124] +centroid = (0.50912503936419018, -1.4161846420376045) +station = ('kdab', 0.0011411733831321548) +zone = ('flz141', 0.0027353013459512927) + +[32127] +centroid = (0.50800001758164715, -1.4132559970060503) +station = ('kevb', 0.00096521272171718353) +zone = ('flz141', 0.0017323110497118278) + +[32128] +centroid = (0.50790371031352211, -1.4149703466638219) +station = ('kdab', 0.0011533431441077058) +zone = ('flz141', 0.0011904768669458896) + +[32129] +centroid = (0.50853613036798229, -1.4141348226443071) +station = ('kdab', 0.00083208897594202384) +zone = ('flz141', 0.0018366189263919579) + +[32130] +centroid = (0.50873453939734903, -1.419669017356286) +station = ('kded', 0.0016665592346160215) +zone = ('flz041', 0.0010361938357011347) + +[32131] +centroid = (0.51809297739325011, -1.423603111663329) +station = ('ksgj', 0.0058957878355898677) +zone = ('flz037', 0.0030043752669062702) + +[32132] +centroid = (0.50577446098596657, -1.4123682701886087) +station = ('kevb', 0.0013963920713038717) +zone = ('flz141', 0.0022056073774350381) + +[32133] +centroid = (0.50649763816153048, -1.4295863097786756) +station = ('kvvg', 0.0012807012014942488) +zone = ('flz040', 0.0040089714511578048) + +[32134] +centroid = (0.51286512287158137, -1.4283416456759084) +station = ('kocf', 0.0069111803185193266) +zone = ('flz037', 0.0041541707492707865) + +[32136] +centroid = (0.51423831302046552, -1.416288890553826) +station = ('kxfl', 0.00095796729684385483) +zone = ('flz038', 0.0025402670647856531) + +[32137] +centroid = (0.51629727793904323, -1.4175452134559967) +station = ('kxfl', 0.0019539226179912375) +zone = ('flz038', 0.002561102597255718) + +[32139] +centroid = (0.51269643679937615, -1.424343393065562) +station = ('kxfl', 0.006284641066762831) +zone = ('flz037', 0.0045608175911464469) + +[32140] +centroid = (0.51946398588056919, -1.4289108324515687) +station = ('k42j', 0.0027284512525363384) +zone = ('flz037', 0.0033078061547655614) + +[32141] +centroid = (0.50490547900469118, -1.4123053336157816) +station = ('kevb', 0.0022541429003395115) +zone = ('flz141', 0.0027458946266649669) + +[32145] +centroid = (0.51797110105158328, -1.4210703247594199) +station = ('kxfl', 0.0048387700297790812) +zone = ('flz033', 0.0039199677372162151) + +[32147] +centroid = (0.51659583396088937, -1.4274678814924826) +station = ('k42j', 0.0047714373417908577) +zone = ('flz037', 0.00068480016415592871) + +[32148] +centroid = (0.5167943477100112, -1.4291511991961534) +station = ('k42j', 0.003502806700351511) +zone = ('flz037', 0.0021265511775587589) + +[32157] +centroid = (0.51431859816605729, -1.4237986234461373) +station = ('kxfl', 0.005586623171681908) +zone = ('flz037', 0.003520401267211985) + +[32159] +centroid = (0.50497972531107094, -1.4293980411122631) +station = ('kvvg', 0.0011940060340025743) +zone = ('flz044', 0.0040995590917018579) + +[32162] +centroid = (0.50465118453267555, -1.4309877742614421) +station = ('kvvg', 0.00097722257647029189) +zone = ('flz043', 0.003919360484530089) + +[32164] +centroid = (0.51521938004630397, -1.4178663016784863) +station = ('kxfl', 0.00096755112929163044) +zone = ('flz038', 0.0015601309992692733) + +[32168] +centroid = (0.50551320265023558, -1.4142300478082961) +station = ('kevb', 0.0020242713872082622) +zone = ('flz141', 0.00128626648789779) + +[32169] +centroid = (0.50554266380800927, -1.4113861036053414) +station = ('kevb', 0.0020084802435383869) +zone = ('flz141', 0.0030834109443754047) + +[32174] +centroid = (0.51111590153535502, -1.4165327479569148) +station = ('komn', 0.00078050771254512138) +zone = ('flz038', 0.0038511601692111487) + +[32176] +centroid = (0.51193268071870346, -1.414807647070951) +station = ('komn', 0.00094215391371597337) +zone = ('flz038', 0.0044436117406684841) + +[32177] +centroid = (0.51820408505343207, -1.4260762257601123) +station = ('k42j', 0.0052832147502917329) +zone = ('flz037', 0.0015370846141327418) + +[32179] +centroid = (0.50767238437446283, -1.4292739831090313) +station = ('kvvg', 0.0024014706259046412) +zone = ('flz040', 0.00330962329943347) + +[32180] +centroid = (0.5099962379136157, -1.4214630936542885) +station = ('kded', 0.0036252301821478859) +zone = ('flz041', 0.0025489412151169033) + +[32181] +centroid = (0.51501278542274542, -1.424223715838753) +station = ('kxfl', 0.0059923978968968701) +zone = ('flz037', 0.0027819681457190233) + +[32187] +centroid = (0.51624999696960661, -1.4233166682264915) +station = ('kxfl', 0.0055030634965690427) +zone = ('flz037', 0.0029918035654072236) + +[32189] +centroid = (0.51575992596893916, -1.4250111036774975) +station = ('kxfl', 0.0067878020692868461) +zone = ('flz037', 0.0017850896867315936) + +[32190] +centroid = (0.51203143144778129, -1.4221633372034812) +station = ('kxfl', 0.0047665992946660726) +zone = ('flz038', 0.0033567122501327023) + +[32193] +centroid = (0.51496723232926833, -1.4249532809193792) +station = ('kxfl', 0.0066195787428359161) +zone = ('flz037', 0.0023588475378865871) + +[32195] +centroid = (0.50593743983151784, -1.4291861755943633) +station = ('kvvg', 0.0012821920786485206) +zone = ('flz044', 0.0040365041916576574) + +[32202] +centroid = (0.52926397472393227, -1.4250109640511575) +station = ('knip', 0.0016197988557754863) +zone = ('flz025', 0.0004166929498812633) + +[32204] +centroid = (0.52913155659358357, -1.4255995414348075) +station = ('knip', 0.00147588296964599) +zone = ('flz025', 0.00025228133418375747) + +[32205] +centroid = (0.52881392412301298, -1.4263047068124908) +station = ('knip', 0.0014080325907757088) +zone = ('flz025', 0.00089823509522532789) + +[32206] +centroid = (0.52971076155915031, -1.4248654384981261) +station = ('kcrg', 0.0018626767201021868) +zone = ('flz025', 0.00063501834276660579) + +[32207] +centroid = (0.52866054458834777, -1.4249046385931261) +station = ('knip', 0.0010621845084323638) +zone = ('flz025', 0.00085949995378157521) + +[32208] +centroid = (0.53045949035496343, -1.4256363504287322) +station = ('kjax', 0.0018834929381200897) +zone = ('flz025', 0.0011058745812048776) + +[32209] +centroid = (0.52989967599738619, -1.4258686188455876) +station = ('knip', 0.0022726319033819524) +zone = ('flz025', 0.00063372484115824842) + +[32210] +centroid = (0.52825150922485042, -1.4267285774746301) +station = ('knip', 0.0013230027524457812) +zone = ('flz025', 0.0015474568506367822) + +[32211] +centroid = (0.52939688154647169, -1.4238883333696897) +station = ('kcrg', 0.00099630968500056009) +zone = ('flz025', 0.0013744308325660461) + +[32212] +centroid = (0.52738481362489498, -1.4253550557131882) +station = ('knip', 0.00028640735754972173) +zone = ('flz025', 0.0019799917195101884) + +[32216] +centroid = (0.52844148831393001, -1.4238902881384519) +station = ('kcrg', 0.0013953108015352332) +zone = ('flz025', 0.0016526713117241518) + +[32217] +centroid = (0.52775250213841274, -1.4246259095115825) +station = ('knip', 0.00063275009069098289) +zone = ('flz025', 0.0017703792111344614) + +[32218] +centroid = (0.53211205535721418, -1.4253605011404544) +station = ('kjax', 0.00053826818057426567) +zone = ('flz025', 0.0027521397944466151) + +[32219] +centroid = (0.53101579660074405, -1.4279070237855767) +station = ('kjax', 0.0021464854039024198) +zone = ('flz025', 0.0026681165358137049) + +[32220] +centroid = (0.53002015607565134, -1.4288989118527777) +station = ('kvqq', 0.0026079048634295244) +zone = ('flz025', 0.0030227647099206664) + +[32221] +centroid = (0.52807168795201742, -1.4286144929978728) +station = ('kvqq', 0.00074390009942359807) +zone = ('flz025', 0.0029981050859280173) + +[32222] +centroid = (0.52738189892504428, -1.4281741813341797) +station = ('kvqq', 0.00072937192131411173) +zone = ('flz025', 0.0030550333825274281) + +[32223] +centroid = (0.52633272915179286, -1.4250485235366603) +station = ('knip', 0.0013639775522021574) +zone = ('flz025', 0.0030519943438486047) + +[32224] +centroid = (0.52831957706567823, -1.4218980297038855) +station = ('kcrg', 0.0013132204800818485) +zone = ('flz025', 0.0032637302955208689) + +[32225] +centroid = (0.52984279571706372, -1.4225450756174773) +station = ('kcrg', 0.00045644358668879678) +zone = ('flz025', 0.0025783005631331382) + +[32226] +centroid = (0.53199799809059634, -1.4225506432177912) +station = ('knrb', 0.001955357457121264) +zone = ('flz025', 0.0036514646959202621) + +[32227] +centroid = (0.53039140506084304, -1.4207749452368121) +station = ('knrb', 0.0002639339974820806) +zone = ('flz025', 0.0041885351457758733) + +[32228] +centroid = (0.53043802280516383, -1.4206993026670307) +station = ('knrb', 0.00028736669477969488) +zone = ('flz025', 0.0042633061162516833) + +[32233] +centroid = (0.52985606021937892, -1.421034423336706) +station = ('knrb', 0.00072509675102867377) +zone = ('flz025', 0.0038684349995302477) + +[32234] +centroid = (0.52754323716109852, -1.4308823912812065) +station = ('kvqq', 0.0016166407899355908) +zone = ('flz032', 0.0046443981998602803) + +[32244] +centroid = (0.52739781632782246, -1.4268510821348277) +station = ('knip', 0.0013236331997270928) +zone = ('flz025', 0.0022932720657229603) + +[32246] +centroid = (0.5287258548089574, -1.4227424723558779) +station = ('kcrg', 0.00069072162575654352) +zone = ('flz025', 0.0024475408969856557) + +[32250] +centroid = (0.52849456377648318, -1.4209080091389841) +station = ('kcrg', 0.0018264249159106482) +zone = ('flz025', 0.004041557695074023) + +[32254] +centroid = (0.5295496676691912, -1.4265411640195509) +station = ('knip', 0.002140708809456408) +zone = ('flz025', 0.00093475030377607952) + +[32256] +centroid = (0.52665570232987446, -1.421969047151149) +station = ('kcrg', 0.0028388543545998894) +zone = ('flz025', 0.0040647569517363322) + +[32257] +centroid = (0.5269036438034127, -1.424406224918634) +station = ('knip', 0.0011213729410200226) +zone = ('flz025', 0.0026274203884027792) + +[32258] +centroid = (0.52599334987874258, -1.4232989705878762) +station = ('knip', 0.0024423901068743063) +zone = ('flz025', 0.0038598346728781594) + +[32259] +centroid = (0.52499901835058893, -1.4239163109975992) +station = ('knip', 0.0029465397764121353) +zone = ('flz033', 0.0037766155439147042) + +[32266] +centroid = (0.52913820629803354, -1.42085624267337) +station = ('knrb', 0.0014464227292749871) +zone = ('flz025', 0.0039976064572393877) + +[32277] +centroid = (0.53018800438981573, -1.424082030010076) +station = ('kcrg', 0.0013956324629000288) +zone = ('flz025', 0.0014622654610513843) + +[32301] +centroid = (0.53106447383358213, -1.4705877590994516) +station = ('ktlh', 0.0014603135628148665) +zone = ('flz017', 0.00060497443839411483) + +[32303] +centroid = (0.53259622714500998, -1.4720391225455325) +station = ('ktlh', 0.0020200641921791626) +zone = ('flz017', 0.0013866974600608901) + +[32304] +centroid = (0.53151681081582147, -1.4722327144661638) +station = ('ktlh', 0.0009376128707416551) +zone = ('flz017', 0.0011283402173908144) + +[32305] +centroid = (0.52939848724938343, -1.4712490468997399) +station = ('ktlh', 0.0014313083477547406) +zone = ('flz017', 0.0022131610360492347) + +[32308] +centroid = (0.53193185011194577, -1.47003719498691) +station = ('ktlh', 0.0022928230241424197) +zone = ('flz017', 0.00083787639050207673) + +[32309] +centroid = (0.53349182539737827, -1.4677808682365168) +station = ('ktlh', 0.0047837746475269515) +zone = ('flz017', 0.0033086331589477387) + +[32310] +centroid = (0.53032590285401571, -1.4750158164913938) +station = ('ktlh', 0.0024548023536340516) +zone = ('flz027', 0.0033521078008047858) + +[32311] +centroid = (0.53026956362576128, -1.4691175810040342) +station = ('ktlh', 0.002664283118968957) +zone = ('flz017', 0.0020466227860682527) + +[32312] +centroid = (0.53416295685464765, -1.4700831844127) +station = ('ktlh', 0.0040146106528142472) +zone = ('flz017', 0.0026696337305631645) + +[32317] +centroid = (0.53181390076109603, -1.4681156747469268) +station = ('ktlh', 0.0037193746475564018) +zone = ('flz017', 0.0024330155343274887) + +[32320] +centroid = (0.51891630156129331, -1.4854724854658199) +station = ('kaaf', 0.0014345610115426104) +zone = ('flz114', 0.0028639211163520185) + +[32321] +centroid = (0.52823157756479266, -1.4831749514917869) +station = ('k2j9', 0.0087122486640540814) +zone = ('flz026', 0.001517991280776398) + +[32322] +centroid = (0.52285358982086738, -1.4761400179691886) +station = ('kaaf', 0.0077242014200767746) +zone = ('flz115', 0.0038389659386684812) + +[32323] +centroid = (0.52170528534610272, -1.476788233253379) +station = ('kaaf', 0.0066972900984835979) +zone = ('flz115', 0.0028240631221335849) + +[32324] +centroid = (0.53502565565061599, -1.4797469328546524) +station = ('k2j9', 0.0036309483453947859) +zone = ('flz016', 0.0028651297262560597) + +[32327] +centroid = (0.52677983014627627, -1.4714055331204736) +station = ('ktlh', 0.003859436385922144) +zone = ('flz127', 0.0014930717822839155) + +[32328] +centroid = (0.51926740944691707, -1.4819436740643828) +station = ('kaaf', 0.0016614660787107663) +zone = ('flz115', 0.002352199016416302) + +[32330] +centroid = (0.53372053334255964, -1.4791758436701075) +station = ('k2j9', 0.0030331615492650895) +zone = ('flz016', 0.0020560564384283042) + +[32331] +centroid = (0.53129667243726753, -1.4597646757018621) +station = ('k40j', 0.0065867855903837709) +zone = ('flz019', 0.0025338528857284698) + +[32332] +centroid = (0.53442458170952167, -1.4778929917633066) +station = ('k2j9', 0.001940687460144073) +zone = ('flz016', 0.0011881019780487932) + +[32333] +centroid = (0.53420351830646406, -1.4733638972609664) +station = ('k2j9', 0.0019943687968187922) +zone = ('flz017', 0.0033489174654748547) + +[32334] +centroid = (0.52811176071164323, -1.4789962492900772) +station = ('ktlh', 0.0063760088275688189) +zone = ('flz026', 0.0021715959204509829) + +[32336] +centroid = (0.52814996596896935, -1.4634231301601375) +station = ('k40j', 0.0052366885867857127) +zone = ('flz118', 0.0032852483762691432) + +[32340] +centroid = (0.53163304974400438, -1.4561974321502957) +station = ('kvld', 0.0061721117641770542) +zone = ('flz019', 0.00061087619173316981) + +[32343] +centroid = (0.53189545999704169, -1.4744591786330554) +station = ('ktlh', 0.0023609286520621048) +zone = ('flz016', 0.0027066967739218912) + +[32344] +centroid = (0.53278053391402058, -1.4654184080143098) +station = ('ktlh', 0.0062339613726986442) +zone = ('flz018', 0.0016490159689391039) + +[32346] +centroid = (0.52343883362564614, -1.4727887763658492) +station = ('ktlh', 0.0071602867226966778) +zone = ('flz127', 0.0022402583234321987) + +[32347] +centroid = (0.52660894495921351, -1.4592581462463483) +station = ('k40j', 0.0018878710189098274) +zone = ('flz028', 0.0014324794944354179) + +[32348] +centroid = (0.52320440100051824, -1.4590281816641055) +station = ('k40j', 0.0015699334750402835) +zone = ('flz128', 0.0014370711795799157) + +[32350] +centroid = (0.5336337904787356, -1.4543094047786582) +station = ('kvld', 0.00374345302693335) +zone = ('flz019', 0.0031481497606605791) + +[32351] +centroid = (0.53268132939933721, -1.4778579455519265) +station = ('k2j9', 0.0023368780146661152) +zone = ('flz016', 0.0013834096154849017) + +[32352] +centroid = (0.53515906861863838, -1.4764023409557632) +station = ('k2j9', 0.0012550597043470323) +zone = ('flz016', 0.001483638629236836) + +[32355] +centroid = (0.52660138768355236, -1.4697142218088284) +station = ('ktlh', 0.0045147532536193892) +zone = ('flz127', 0.0019164748446872195) + +[32356] +centroid = (0.52114196287672909, -1.4558664479109475) +station = ('k40j', 0.0044255380749871585) +zone = ('flz029', 0.004168375039773113) + +[32358] +centroid = (0.52544299520571114, -1.4758155612612427) +station = ('ktlh', 0.006018616200411323) +zone = ('flz027', 0.0023654737590509379) + +[32359] +centroid = (0.51801480409605327, -1.4553704078842382) +station = ('kcty', 0.0044224434717912951) +zone = ('flz034', 0.0039924829180954394) + +[32361] +centroid = (0.5298420277721928, -1.4658773074345368) +station = ('ktlh', 0.0054916623268444088) +zone = ('flz018', 0.0023265192456970716) + +[32399] +centroid = (0.5312241365535546, -1.4710079296635767) +station = ('ktlh', 0.001202291977315502) +zone = ('flz017', 0.00037653832632892812) + +[32401] +centroid = (0.52638671218555699, -1.495065129194046) +station = ('kpam', 0.0020027053101073331) +zone = ('flz112', 0.0010765986031842823) + +[32403] +centroid = (0.52444634238965238, -1.4931855666692808) +station = ('ktdr', 0.00040203853273054741) +zone = ('flz112', 0.0034577399496526135) + +[32404] +centroid = (0.52702494418642631, -1.4923638307508569) +station = ('kpam', 0.0025449691904612325) +zone = ('flz112', 0.0024412907448424018) + +[32405] +centroid = (0.5271242359675723, -1.4951786803151808) +station = ('kpam', 0.0026813982692745148) +zone = ('flz112', 0.00033833874425653388) + +[32407] +centroid = (0.52706018238402408, -1.4973300778709442) +station = ('kecp', 0.002713278442516882) +zone = ('flz112', 0.0019318788494944838) + +[32408] +centroid = (0.52608037199524704, -1.4963175076521074) +station = ('kpam', 0.0026119155365367437) +zone = ('flz112', 0.0017137562319922191) + +[32409] +centroid = (0.52982534242454382, -1.4949389244358342) +station = ('kecp', 0.0021916391427882704) +zone = ('flz012', 0.0017077375427852132) + +[32410] +centroid = (0.52351477290140036, -1.4907594193826688) +station = ('ktdr', 0.0019185959882087988) +zone = ('flz114', 0.003772292519531211) + +[32413] +centroid = (0.52901453226723727, -1.4993305742595802) +station = ('kecp', 0.0017686973948044503) +zone = ('flz112', 0.0039360231801296511) + +[32420] +centroid = (0.53463562692267286, -1.4902418768995747) +station = ('kmai', 0.0046278716304887797) +zone = ('flz010', 0.0042333280445929723) + +[32421] +centroid = (0.53288073326637753, -1.4866678789238033) +station = ('kmai', 0.0052627207594012375) +zone = ('flz013', 0.0022097417210269147) + +[32423] +centroid = (0.54006991898826739, -1.4845974122854551) +station = ('kmai', 0.0026571565346241292) +zone = ('gaz155', 0.0028909872621920608) + +[32424] +centroid = (0.52992358700813846, -1.4849795346718866) +station = ('kmai', 0.0083564990407259312) +zone = ('flz013', 0.0018802631778930064) + +[32425] +centroid = (0.5384896455236341, -1.496104821829459) +station = ('k1j0', 0.0018385033019962234) +zone = ('flz009', 0.0014287285929190524) + +[32426] +centroid = (0.54012505393933785, -1.4899947906373698) +station = ('kmai', 0.0034320587070632213) +zone = ('alz069', 0.0037413049320772908) + +[32427] +centroid = (0.53600290040539267, -1.4973564672492341) +station = ('k1j0', 0.0035900744801665848) +zone = ('flz010', 0.0025838980161765547) + +[32428] +centroid = (0.53434564046745392, -1.4935296408780192) +station = ('k1j0', 0.0038191780889060716) +zone = ('flz010', 0.0013900367639585617) + +[32430] +centroid = (0.53090055251023482, -1.487615383268126) +station = ('kmai', 0.0072826286784498798) +zone = ('flz013', 0.00059497241711964658) + +[32431] +centroid = (0.53734292929848881, -1.4906999560150531) +station = ('k1j0', 0.0029466277318116632) +zone = ('flz010', 0.0049097535320117985) + +[32432] +centroid = (0.53607562827532318, -1.4848837335492446) +station = ('kmai', 0.0026057881276275213) +zone = ('flz011', 0.0026051230551320213) + +[32433] +centroid = (0.53845463421883921, -1.5044884410782438) +station = ('k0j4', 0.0035086774534477724) +zone = ('flz007', 0.00018805549070184468) + +[32435] +centroid = (0.53506091130150635, -1.5032743027840938) +station = ('kvps', 0.0065345284560179616) +zone = ('flz008', 0.0011538972222492373) + +[32437] +centroid = (0.53121273955353909, -1.4993987642734554) +station = ('kecp', 0.0021966362497169325) +zone = ('flz008', 0.0040907894549331546) + +[32438] +centroid = (0.53234788424574375, -1.4909314739403301) +station = ('k1j0', 0.0063686830730661772) +zone = ('flz012', 0.0029428536020939351) + +[32439] +centroid = (0.53177279825721147, -1.5029391123012483) +station = ('kecp', 0.0051177649577451283) +zone = ('flz108', 0.0012445876467880096) + +[32440] +centroid = (0.53969814640430014, -1.492713612186249) +station = ('k1j0', 0.0019079667009112122) +zone = ('flz009', 0.0044186656627710598) + +[32442] +centroid = (0.535441759597584, -1.4838294150546998) +station = ('kmai', 0.003675502915997656) +zone = ('flz011', 0.0022810955270472963) + +[32443] +centroid = (0.53882713984109232, -1.4854396034627124) +station = ('kmai', 0.0013016496862595266) +zone = ('flz011', 0.0032491439497374691) + +[32444] +centroid = (0.52778660587199666, -1.4949024296011753) +station = ('kecp', 0.0029800667649152912) +zone = ('flz112', 0.00038626649736688045) + +[32445] +centroid = (0.54050464559835409, -1.4869811131646589) +station = ('kmai', 0.0023712978429246746) +zone = ('alz069', 0.0035818426543396337) + +[32446] +centroid = (0.53840251868737465, -1.4875686084441726) +station = ('kmai', 0.00076559906658510055) +zone = ('flz011', 0.0047982316790029459) + +[32447] +centroid = (0.53686240524882978, -1.4879205366345445) +station = ('kmai', 0.0016391682914704193) +zone = ('flz011', 0.004965147821526978) + +[32448] +centroid = (0.53529794446721957, -1.4874991268866506) +station = ('kmai', 0.0029210800977213752) +zone = ('flz013', 0.0046337115658483183) + +[32449] +centroid = (0.52860535727739977, -1.4877231398961441) +station = ('ktdr', 0.0062561700225328542) +zone = ('flz013', 0.0021799027411035636) + +[32455] +centroid = (0.5347449019871402, -1.5003321663574221) +station = ('kecp', 0.0055491993913276355) +zone = ('flz008', 0.0023766404092001076) + +[32456] +centroid = (0.52077608950563348, -1.4887344185713347) +station = ('kaaf', 0.0046411799532032946) +zone = ('flz114', 0.00053311429255404219) + +[32459] +centroid = (0.5298936197048818, -1.5042213009829335) +station = ('kdts', 0.0042882710253149443) +zone = ('flz108', 0.0010293867890339393) + +[32460] +centroid = (0.5369346444265698, -1.4827310968097125) +station = ('kmai', 0.0036410501230979141) +zone = ('flz011', 0.0005665984993140483) + +[32461] +centroid = (0.52865473264193863, -1.5014669445304838) +station = ('kecp', 0.0036195653814192308) +zone = ('flz108', 0.0031137697715016288) + +[32462] +centroid = (0.53327139031285142, -1.4980754207280083) +station = ('kecp', 0.0035386185269152739) +zone = ('flz010', 0.0027114455705962905) + +[32463] +centroid = (0.53461901138819379, -1.4938321064373898) +station = ('k1j0', 0.0035271933142210486) +zone = ('flz010', 0.001183408654331787) + +[32464] +centroid = (0.53935698689541267, -1.5001551550646848) +station = ('k1j0', 0.005419378186369536) +zone = ('flz009', 0.002159003518037713) + +[32465] +centroid = (0.5237360981038458, -1.48670442611834) +station = ('kaaf', 0.0054047844724276536) +zone = ('flz014', 0.0010785471497529282) + +[32466] +centroid = (0.5304812546107357, -1.4924714302992423) +station = ('kecp', 0.0043774387707525278) +zone = ('flz012', 0.00065464835523231586) + +[32501] +centroid = (0.53108241581829263, -1.5223200686201419) +station = ('kpns', 0.0011198335427582925) +zone = ('flz002', 0.0020031343973900919) + +[32502] +centroid = (0.5307435775973105, -1.5223373648330292) +station = ('kpns', 0.0014254611673535399) +zone = ('flz002', 0.0022464207632698287) + +[32503] +centroid = (0.53162147821106365, -1.5221652230089051) +station = ('kpns', 0.00061521909710070331) +zone = ('flz002', 0.001780360815430392) + +[32504] +centroid = (0.53184515960799927, -1.5216944902563496) +station = ('kpns', 0.0001959196040826327) +zone = ('flz002', 0.002060858228475352) + +[32505] +centroid = (0.5315334612568855, -1.52298564993039) +station = ('kpns', 0.0012664228049297152) +zone = ('flz002', 0.0012815247962508934) + +[32506] +centroid = (0.53043397364129918, -1.5248835907721787) +station = ('knpa', 0.00093021367276797039) +zone = ('flz002', 0.0022134226774106649) + +[32507] +centroid = (0.52953005016839882, -1.5249601932730488) +station = ('knpa', 0.00081121019342362698) +zone = ('flz002', 0.0030920798996933001) + +[32508] +centroid = (0.52972077974905674, -1.5239621267402956) +station = ('knpa', 0.00013782713365056553) +zone = ('flz002', 0.002779175034572355) + +[32509] +centroid = (0.5317621342954818, -1.5242707184053408) +station = ('knpa', 0.0019550017239713278) +zone = ('flz002', 0.00078426882350726116) + +[32511] +centroid = (0.53068577229248437, -1.5235275048499641) +station = ('knpa', 0.00099335077304353462) +zone = ('flz002', 0.0018524683518625689) + +[32514] +centroid = (0.53287115140878416, -1.5223041686706562) +station = ('kpns', 0.0010154348367698413) +zone = ('flz002', 0.0014757193307543463) + +[32526] +centroid = (0.53231191300986003, -1.5248169017414599) +station = ('knpa', 0.0025774459266816978) +zone = ('flz002', 0.00076006238035749001) + +[32530] +centroid = (0.53404001586213723, -1.5189663486492646) +station = ('kndz', 0.0017879277790919168) +zone = ('flz004', 0.00066027687152453646) + +[32531] +centroid = (0.53885590286716512, -1.5132063083320779) +station = ('kcew', 0.0033315016329998211) +zone = ('flz005', 0.0017076507356430497) + +[32533] +centroid = (0.53425411540147938, -1.5241398885246114) +station = ('kpns', 0.0030944638408949223) +zone = ('flz002', 0.0017608238458754909) + +[32534] +centroid = (0.53283050269050514, -1.5233533558972001) +station = ('kpns', 0.0016799741844163191) +zone = ('flz002', 0.00061993544015516108) + +[32535] +centroid = (0.54041359177127757, -1.5244689179951973) +station = ('knse', 0.0063579929918115572) +zone = ('flz001', 0.002050802929597478) + +[32536] +centroid = (0.53692930371905867, -1.5113088038226021) +station = ('kcew', 0.0011251488219266182) +zone = ('flz005', 0.0015348006515023352) + +[32539] +centroid = (0.53714493914814265, -1.5090897922116167) +station = ('kcew', 0.00079992512141020941) +zone = ('flz005', 0.0022903465604039368) + +[32541] +centroid = (0.53045381803489444, -1.5091775822729918) +station = ('kdts', 0.00013331287541305716) +zone = ('flz006', 0.0035894224334236989) + +[32542] +centroid = (0.53170672009173103, -1.5101490499879444) +station = ('kvps', 0.00035186795789630526) +zone = ('flz006', 0.0020823417942188796) + +[32544] +centroid = (0.53105087771870918, -1.5131352734315218) +station = ('khrt', 0.00026503237883674746) +zone = ('flz006', 0.002754423585798204) + +[32547] +centroid = (0.53186934987143186, -1.5126482742103378) +station = ('kqbl', 0.00095635958922685974) +zone = ('flz006', 0.0018368410854842135) + +[32548] +centroid = (0.53063246993712854, -1.5123362093400812) +station = ('kqhy', 0.00018827836732049325) +zone = ('flz006', 0.0028809012101200624) + +[32550] +centroid = (0.53031979420163378, -1.5070262894369837) +station = ('kdts', 0.0018315068009755915) +zone = ('flz108', 0.0027009961346990898) + +[32561] +centroid = (0.52965613275356294, -1.5204119001489365) +station = ('kpns', 0.0026022225379518961) +zone = ('flz002', 0.004178347161624742) + +[32563] +centroid = (0.5305256208803214, -1.518939470578784) +station = ('kpns', 0.0027717441289544431) +zone = ('flz004', 0.0032175674921022302) + +[32564] +centroid = (0.53631959039816701, -1.5146304446418277) +station = ('kndz', 0.0035580024137318333) +zone = ('flz005', 0.0035958660088320207) + +[32565] +centroid = (0.53917763686147779, -1.5207347511539704) +station = ('knse', 0.0032710150342284195) +zone = ('flz003', 0.0016123609336191949) + +[32566] +centroid = (0.53120849840345674, -1.5163476217329874) +station = ('kqhy', 0.003346753826670751) +zone = ('flz004', 0.0030091015206411063) + +[32567] +centroid = (0.53973743376576244, -1.5087635901744187) +station = ('k0j4', 0.0028905524882965046) +zone = ('flz005', 0.0024998482348127815) + +[32568] +centroid = (0.53883860665427785, -1.5262900294433133) +station = ('kndz', 0.0071656105909963909) +zone = ('flz001', 0.00026357458656491468) + +[32569] +centroid = (0.53075211225735275, -1.5137790555794124) +station = ('khrt', 0.00075920190278374428) +zone = ('flz006', 0.0033094673361676306) + +[32570] +centroid = (0.53765824048115418, -1.5179911110231279) +station = ('knse', 0.0014102258689220749) +zone = ('flz003', 0.0012083377664817709) + +[32571] +centroid = (0.53542650541992154, -1.5219171419090265) +station = ('kndz', 0.0027706032720473824) +zone = ('flz002', 0.0034151885894199248) + +[32577] +centroid = (0.53629557466765954, -1.5248071104443561) +station = ('kpns', 0.0050601183292631703) +zone = ('flz001', 0.0027253604256102688) + +[32578] +centroid = (0.53244228910498403, -1.5087942207027913) +station = ('kvps', 0.0011166907092891021) +zone = ('flz006', 0.0025407418195174717) + +[32579] +centroid = (0.5314435593471154, -1.511010143081001) +station = ('kvps', 0.0010517976965729958) +zone = ('flz006', 0.0020285045293171283) + +[32580] +centroid = (0.53215205830366996, -1.5099686527564584) +station = ('kvps', 0.0001207240747622533) +zone = ('flz006', 0.0018421132217602352) + +[32583] +centroid = (0.53393859477930383, -1.5179245092588718) +station = ('kndz', 0.0020005038593998636) +zone = ('flz004', 0.00041088416500596747) + +[32601] +centroid = (0.51747254775075113, -1.4368338418574598) +station = ('kgnv', 0.0010874364237588811) +zone = ('flz036', 0.00067544681588098258) + +[32603] +centroid = (0.51760726971571258, -1.4372350057860304) +station = ('kgnv', 0.0012318888541357816) +zone = ('flz036', 0.00035246334737845772) + +[32605] +centroid = (0.51799941029205065, -1.4376769580592206) +station = ('kgnv', 0.0014046477852521881) +zone = ('flz036', 0.00024261191291100195) + +[32606] +centroid = (0.51804869839012702, -1.4389209240302869) +station = ('kgnv', 0.0024576106369278137) +zone = ('flz036', 0.0013174494258574023) + +[32607] +centroid = (0.51744348801870543, -1.4384814675779272) +station = ('kgnv', 0.0022522125888409699) +zone = ('flz036', 0.0010470867468389232) + +[32608] +centroid = (0.51656525579239443, -1.4382875789513234) +station = ('kgnv', 0.0026068944392926814) +zone = ('flz036', 0.0015582828468965503) + +[32609] +centroid = (0.51956689049326676, -1.4361011351841799) +station = ('kgnv', 0.0012041635875938367) +zone = ('flz036', 0.0019978280084872934) + +[32612] +centroid = (0.51737004456378155, -1.4373457469270696) +station = ('kgnv', 0.00145908430675871) +zone = ('flz036', 0.00055758171012897627) + +[32615] +centroid = (0.52044137026168602, -1.4396537703299068) +station = ('kgnv', 0.0037091253146206817) +zone = ('flz036', 0.0031818726286110613) + +[32616] +centroid = (0.51990726460399073, -1.4398137821157297) +station = ('kgnv', 0.0035634832173427017) +zone = ('flz036', 0.002877995932552994) + +[32617] +centroid = (0.51152786905199588, -1.4324679181868882) +station = ('kocf', 0.0032886180473983544) +zone = ('flz040', 0.0017327267294212096) + +[32618] +centroid = (0.51567276422609454, -1.4401852754470166) +station = ('kgnv', 0.0044446703265243427) +zone = ('flz036', 0.0032996458786438282) + +[32619] +centroid = (0.51945496252833634, -1.4461819125976039) +station = ('kcty', 0.0042795311071531384) +zone = ('flz035', 0.0011072619771586652) + +[32621] +centroid = (0.51355786150499039, -1.4418190083466387) +station = ('kgnv', 0.0069067008465157958) +zone = ('flz039', 0.0026550088906806867) + +[32622] +centroid = (0.52199401516426014, -1.4367348816888714) +station = ('kgnv', 0.0036708386942037353) +zone = ('flz031', 0.0023843380282779674) + +[32625] +centroid = (0.50978037559172906, -1.4485715999561419) +station = ('kcty', 0.0075821821598329722) +zone = ('flz039', 0.0044054917971639313) + +[32626] +centroid = (0.51356356873164455, -1.4468504435142879) +station = ('kcty', 0.0047527699056061938) +zone = ('flz039', 0.0030289984302942293) + +[32628] +centroid = (0.51706136563227378, -1.4522361107069217) +station = ('kcty', 0.0016291546139492771) +zone = ('flz034', 0.0014964613752022633) + +[32631] +centroid = (0.51844736649786749, -1.4327775221428998) +station = ('k42j', 0.001014063440078559) +zone = ('flz036', 0.0040592249927320148) + +[32639] +centroid = (0.51010745029355276, -1.4436064698467761) +station = ('kcgc', 0.0065996359359594484) +zone = ('flz039', 0.0016975936413817366) + +[32640] +centroid = (0.51622193207523459, -1.4326891735761635) +station = ('k42j', 0.0030654389049116805) +zone = ('flz036', 0.0044439528906151287) + +[32641] +centroid = (0.51735964240143961, -1.4352141588583163) +station = ('kgnv', 0.0012724279287970211) +zone = ('flz036', 0.0019911394702770611) + +[32643] +centroid = (0.52053860255431461, -1.4425363561225009) +station = ('kgnv', 0.0059838462040061715) +zone = ('flz035', 0.0028432158206842502) + +[32648] +centroid = (0.51493812023734509, -1.4533439584496253) +station = ('kcty', 0.0034365159262976491) +zone = ('flz134', 0.00071733558625438818) + +[32653] +centroid = (0.51914446845440654, -1.4380430234165338) +station = ('kgnv', 0.0018477778709237746) +zone = ('flz036', 0.0013374887923108313) + +[32656] +centroid = (0.52034694794915304, -1.4304623254368365) +station = ('k42j', 0.0017654209105561892) +zone = ('flz032', 0.0033322766251474099) + +[32658] +centroid = (0.52092435522559044, -1.4381007414548972) +station = ('kgnv', 0.0030874291176793234) +zone = ('flz036', 0.0030587738757865252) + +[32664] +centroid = (0.51392849962494402, -1.4349647338549139) +station = ('kgnv', 0.0045457558198138629) +zone = ('flz036', 0.0045275252454116443) + +[32666] +centroid = (0.51877533131760978, -1.4311262661375879) +station = ('k42j', 0.00091916503777297117) +zone = ('flz037', 0.0043344264993890125) + +[32667] +centroid = (0.5150809754366209, -1.4364978485231581) +station = ('kgnv', 0.0032986424127589759) +zone = ('flz036', 0.0029525761798699932) + +[32668] +centroid = (0.51063696573531536, -1.4394569320968669) +station = ('kocf', 0.0042389141256363467) +zone = ('flz039', 0.0041676757505632453) + +[32669] +centroid = (0.51717865175800781, -1.4414666787305384) +station = ('kgnv', 0.0047985288215777579) +zone = ('flz036', 0.0036023731803685901) + +[32680] +centroid = (0.515614976374561, -1.4509325242886073) +station = ('kcty', 0.0016584174474103901) +zone = ('flz134', 0.0016590912805427233) + +[32681] +centroid = (0.51353499769178934, -1.4347580170583076) +station = ('kocf', 0.0044838098005272253) +zone = ('flz040', 0.0043540567481074053) + +[32683] +centroid = (0.51130542683882918, -1.4448949766203534) +station = ('kcty', 0.0075794790400203057) +zone = ('flz039', 0.00085809438801359424) + +[32686] +centroid = (0.51235091396735877, -1.4359699213310149) +station = ('kocf', 0.0034141709871558148) +zone = ('flz040', 0.0041786718644554015) + +[32692] +centroid = (0.51196247348903501, -1.4507588291214488) +station = ('kcty', 0.005247766933847796) +zone = ('flz134', 0.0031861873478948774) + +[32693] +centroid = (0.51707956941637212, -1.4448762317841868) +station = ('kcty', 0.0047756749979301375) +zone = ('flz035', 0.0017504800180086523) + +[32694] +centroid = (0.52024655661057839, -1.4336887585453659) +station = ('k42j', 0.0017503187072951799) +zone = ('flz031', 0.0025107641715044777) + +[32696] +centroid = (0.51308335884125078, -1.4392302312803253) +station = ('kocf', 0.0054918474709830826) +zone = ('flz039', 0.0044123823958536444) + +[32697] +centroid = (0.52242219678965196, -1.4386671007971694) +station = ('kgnv', 0.0046240049202899572) +zone = ('flz030', 0.0021324118061758789) + +[32701] +centroid = (0.50030819448847552, -1.4201790549235962) +station = ('korl', 0.0020945875085911321) +zone = ('flz046', 0.0022404417980263196) + +[32702] +centroid = (0.50682687707162666, -1.4246249670337865) +station = ('klee', 0.0048616645990170876) +zone = ('flz044', 0.0018820477793412694) + +[32703] +centroid = (0.50041101183471048, -1.4233693248100241) +station = ('korl', 0.0039782327315972168) +zone = ('flz144', 0.004311181126696019) + +[32707] +centroid = (0.50028046120666125, -1.419214847778332) +station = ('korl', 0.0020086547364398647) +zone = ('flz046', 0.0015209636281824069) + +[32708] +centroid = (0.50068075247060617, -1.4184859459228216) +station = ('ksfb', 0.0017204071367051116) +zone = ('flz046', 0.00077326659533495158) + +[32709] +centroid = (0.49743442260860427, -1.4130063800164301) +station = ('ktix', 0.0024586724204041662) +zone = ('flz147', 0.0029194378621889179) + +[32712] +centroid = (0.50181165601272848, -1.4222246506201037) +station = ('ksfb', 0.0036748381126530563) +zone = ('flz044', 0.0038186107367702859) + +[32713] +centroid = (0.50411618875706177, -1.4193940232793418) +station = ('ksfb', 0.0020965263262024527) +zone = ('flz046', 0.0032131782413005274) + +[32714] +centroid = (0.50025602659713342, -1.4209031920302486) +station = ('korl', 0.002302895641269012) +zone = ('flz046', 0.0028508677147644486) + +[32720] +centroid = (0.5062053653249915, -1.4201497159388701) +station = ('kded', 0.0017052674657262179) +zone = ('flz041', 0.0015545173925263188) + +[32724] +centroid = (0.50714468407512237, -1.4176538427486409) +station = ('kded', 0.00090366005925832387) +zone = ('flz041', 0.0021958086040326655) + +[32725] +centroid = (0.50415718654119113, -1.4181072967416015) +station = ('ksfb', 0.0017934093981816683) +zone = ('flz046', 0.0029603247083820603) + +[32726] +centroid = (0.50361564578088225, -1.4255647395695228) +station = ('klee', 0.0022111404391072561) +zone = ('flz044', 0.0015250536787901696) + +[32730] +centroid = (0.5001094712998434, -1.419715617647314) +station = ('korl', 0.0018249141951740102) +zone = ('flz046', 0.0019780381447099841) + +[32732] +centroid = (0.50178856530672455, -1.4155028117120205) +station = ('ksfb', 0.0023312585099899883) +zone = ('flz046', 0.0021298256587667878) + +[32735] +centroid = (0.50423295128402013, -1.4266153928726384) +station = ('klee', 0.0017507353377466972) +zone = ('flz044', 0.0018108971065324893) + +[32736] +centroid = (0.50468797607330762, -1.4222706924057713) +station = ('kded', 0.0041021264251327322) +zone = ('flz044', 0.0021541108780177795) + +[32738] +centroid = (0.50449211522464887, -1.4169486250110799) +station = ('ksfb', 0.0023476104360223744) +zone = ('flz141', 0.0030363895836880879) + +[32744] +centroid = (0.50588401530311433, -1.4175533815968959) +station = ('kded', 0.0017321639132122308) +zone = ('flz141', 0.0027000565930303273) + +[32746] +centroid = (0.50207174497786067, -1.4199105534714695) +station = ('ksfb', 0.0016308844484887891) +zone = ('flz046', 0.0020118898837719035) + +[32750] +centroid = (0.50104824899790612, -1.4197910507775853) +station = ('ksfb', 0.0019953814075455651) +zone = ('flz046', 0.0017191592473520339) + +[32751] +centroid = (0.49969474616298454, -1.4200879487366422) +station = ('korl', 0.0014850226101689348) +zone = ('flz045', 0.0021143311346266359) + +[32754] +centroid = (0.50067661604027902, -1.4123141475285044) +station = ('ktix', 0.0034876091919259613) +zone = ('flz147', 0.0030875267985965319) + +[32757] +centroid = (0.50218451070083203, -1.4248539542316483) +station = ('klee', 0.0028350375342354353) +zone = ('flz044', 0.0027646495398388621) + +[32759] +centroid = (0.50310485772199365, -1.4120185760196791) +station = ('kevb', 0.0040703583396279157) +zone = ('flz141', 0.0043031233915564919) + +[32763] +centroid = (0.50512123660682273, -1.4188971804011765) +station = ('kded', 0.0022031539117606459) +zone = ('flz041', 0.0028281555454547922) + +[32764] +centroid = (0.50349357745299783, -1.4151985484635201) +station = ('ksfb', 0.0027658715091727088) +zone = ('flz046', 0.0032539846027521465) + +[32765] +centroid = (0.5003010909984198, -1.4171414489868404) +station = ('ksfb', 0.0022209853891682315) +zone = ('flz046', 0.0010926242552065086) + +[32766] +centroid = (0.49992471074522726, -1.4150243820574635) +station = ('ksfb', 0.0036237612442501055) +zone = ('flz046', 0.0027821467154110152) + +[32767] +centroid = (0.50660958357975339, -1.4230450251817111) +station = ('kded', 0.0038901204589777152) +zone = ('flz044', 0.002213079209813043) + +[32771] +centroid = (0.50289154358081489, -1.4193890665442659) +station = ('ksfb', 0.0012626609152214092) +zone = ('flz046', 0.0021647843808071205) + +[32773] +centroid = (0.50187691387346056, -1.4180434525975636) +station = ('ksfb', 0.00048807600923937006) +zone = ('flz046', 0.00069422130271983755) + +[32776] +centroid = (0.50300612444620829, -1.4225969817094317) +station = ('ksfb', 0.004009936460045418) +zone = ('flz044', 0.0026835569263787178) + +[32778] +centroid = (0.50232113507467813, -1.4265426475494152) +station = ('klee', 0.0013982507369841631) +zone = ('flz044', 0.0030752713777078837) + +[32779] +centroid = (0.50138532443634376, -1.4209559533335365) +station = ('ksfb', 0.0027045412215393055) +zone = ('flz046', 0.0027391661166567718) + +[32780] +centroid = (0.49799093829389518, -1.4100908773141438) +station = ('ktix', 0.00030525864507045629) +zone = ('flz147', 0.00048480027402142618) + +[32784] +centroid = (0.5057011047975053, -1.4262206168491296) +station = ('klee', 0.0031525423860314828) +zone = ('flz044', 0.00151902688991891) + +[32789] +centroid = (0.49914999399685206, -1.4198650178312848) +station = ('korl', 0.00090624560495203884) +zone = ('flz045', 0.0015361659989688063) + +[32792] +centroid = (0.49934037451165958, -1.4189237443123919) +station = ('korl', 0.0011780282109630528) +zone = ('flz045', 0.001708398523091939) + +[32796] +centroid = (0.49960550747833005, -1.4110263214333354) +station = ('ktix', 0.0020218710742274859) +zone = ('flz147', 0.0015344928166603215) + +[32798] +centroid = (0.50132338270119059, -1.4239743431952281) +station = ('klee', 0.0038600819451212452) +zone = ('flz044', 0.0036805529651107623) + +[32801] +centroid = (0.49814793066011204, -1.4202503516235403) +station = ('korl', 0.00064504606555285918) +zone = ('flz045', 0.00090692088367724029) + +[32803] +centroid = (0.49838773889933602, -1.419759181065444) +station = ('korl', 0.00021960194433094372) +zone = ('flz045', 0.00078930607387259677) + +[32804] +centroid = (0.49879206187385305, -1.4206359995750608) +station = ('korl', 0.001089286168586877) +zone = ('flz045', 0.0015759292921269754) + +[32805] +centroid = (0.49794236578081214, -1.4207622566931504) +station = ('korl', 0.0011337000389188593) +zone = ('flz045', 0.0012533574432910322) + +[32806] +centroid = (0.49762459368390155, -1.4200075239647103) +station = ('korl', 0.00078581357225239576) +zone = ('flz045', 0.00056434421468750642) + +[32807] +centroid = (0.49837150733729246, -1.4189478298560694) +station = ('korl', 0.00052145752026210132) +zone = ('flz045', 0.00078641065690106813) + +[32808] +centroid = (0.49881702008215661, -1.4214711919820178) +station = ('korl', 0.0017803137981993922) +zone = ('flz045', 0.0021707836491219198) + +[32809] +centroid = (0.49675815988333399, -1.4204529494431117) +station = ('kmco', 0.0011324124446313987) +zone = ('flz045', 0.0013242826318495429) + +[32810] +centroid = (0.49960226116592138, -1.4211812927932614) +station = ('korl', 0.0019517149435873489) +zone = ('flz045', 0.0024983820931448) + +[32811] +centroid = (0.49779526943145402, -1.4215256637079725) +station = ('korl', 0.0018183336169296496) +zone = ('flz045', 0.0018994796207768023) + +[32812] +centroid = (0.49713951432489478, -1.4193515768719334) +station = ('korl', 0.0011631408746199613) +zone = ('flz045', 0.00053782657891488894) + +[32814] +centroid = (0.49868566660265146, -1.4193429025855506) +station = ('korl', 0.00042857018314283789) +zone = ('flz045', 0.0010087633558184645) + +[32817] +centroid = (0.4990069468113586, -1.4179691015714286) +station = ('korl', 0.0015497670841524442) +zone = ('flz045', 0.0018106273769573176) + +[32818] +centroid = (0.4989329273977815, -1.4222146149769048) +station = ('korl', 0.0024396695624181509) +zone = ('flz045', 0.0027980213583691672) + +[32819] +centroid = (0.49660619406536283, -1.4219620134742634) +station = ('kmco', 0.0022290805316309043) +zone = ('flz045', 0.002518944860911448) + +[32820] +centroid = (0.49887794952634373, -1.4158876742653776) +station = ('korl', 0.003256072467791422) +zone = ('flz046', 0.0028902574572258507) + +[32821] +centroid = (0.49535933084773809, -1.4220872757546792) +station = ('kism', 0.0017371273815879019) +zone = ('flz045', 0.003329929752928262) + +[32822] +centroid = (0.49724252365734745, -1.4187808367532386) +station = ('korl', 0.0012404933569213085) +zone = ('flz045', 0.00067469505985538899) + +[32824] +centroid = (0.49539711722604374, -1.4195293386562489) +station = ('kmco', 0.00056729642456362342) +zone = ('flz045', 0.0022844330707616212) + +[32825] +centroid = (0.49773348477593349, -1.4177135504623517) +station = ('korl', 0.0016942593591866058) +zone = ('flz045', 0.0014548852787152977) + +[32826] +centroid = (0.49896097483886104, -1.4169378912361803) +station = ('korl', 0.0023766495669038127) +zone = ('flz046', 0.0023804556773011805) + +[32827] +centroid = (0.49595077057136144, -1.41893086525574) +station = ('kmco', 0.00053104299594540526) +zone = ('flz045', 0.0017686421060164863) + +[32828] +centroid = (0.49792861258630644, -1.4166201889524397) +station = ('korl', 0.0025857387180256691) +zone = ('flz045', 0.0024274414862280004) + +[32829] +centroid = (0.49714914854236575, -1.4180118272315174) +station = ('korl', 0.0017592421879915479) +zone = ('flz045', 0.001303606621669736) + +[32830] +centroid = (0.49537790115097929, -1.4237281470509418) +station = ('kism', 0.002654060045774257) +zone = ('flz045', 0.0044702026880012969) + +[32831] +centroid = (0.49694894182386951, -1.4163039876518557) +station = ('kmco', 0.0030062642258801109) +zone = ('flz045', 0.0027896437654719689) + +[32832] +centroid = (0.495729009036603, -1.4170596454047992) +station = ('kmco', 0.0021894515141638237) +zone = ('flz045', 0.0028131807677724131) + +[32833] +centroid = (0.4973327746329681, -1.4151086814603351) +station = ('kmco', 0.0041246704776480422) +zone = ('flz045', 0.0037588561760596752) + +[32835] +centroid = (0.49774350296583991, -1.4221381346490822) +station = ('korl', 0.0023521375954002675) +zone = ('flz045', 0.0024348988288659433) + +[32836] +centroid = (0.49581030647316093, -1.4227801016545509) +station = ('kism', 0.0024164155162518827) +zone = ('flz045', 0.0035331263313116462) + +[32837] +centroid = (0.49531440607279176, -1.4212064080811977) +station = ('kism', 0.001570537778270356) +zone = ('flz045', 0.0028627247585473739) + +[32839] +centroid = (0.49721060158532848, -1.420823814455868) +station = ('korl', 0.0015658273469948238) +zone = ('flz045', 0.0013617310326989839) + +[32901] +centroid = (0.49007723149291743, -1.4071475889701655) +station = ('kmlb', 0.00054297308329235108) +zone = ('flz047', 0.0015347562655950568) + +[32903] +centroid = (0.49051668794527703, -1.4066194348852197) +station = ('kmlb', 0.00087564440944725287) +zone = ('flz047', 0.0021417375532153679) + +[32904] +centroid = (0.48985283451098854, -1.4081044308259867) +station = ('kmlb', 0.00073051626543380304) +zone = ('flz047', 0.0006734891164526973) + +[32905] +centroid = (0.48923964798488534, -1.406742567863948) +station = ('kmlb', 0.0014206115470118497) +zone = ('flz047', 0.0018103323614112917) + +[32907] +centroid = (0.48905528885599714, -1.4081535792977227) +station = ('kmlb', 0.0014636661886721053) +zone = ('flz047', 0.00071545194694037494) + +[32908] +centroid = (0.4879302670734541, -1.4084623629489854) +station = ('kmlb', 0.0026182089428188784) +zone = ('flz047', 0.0016137803898580753) + +[32909] +centroid = (0.48728297681376698, -1.4075073711421717) +station = ('kmlb', 0.003155794823274531) +zone = ('flz047', 0.0025000788087357101) + +[32920] +centroid = (0.49561277010842014, -1.4070158689715178) +station = ('kxmr', 0.0014400885834201355) +zone = ('flz147', 0.0037912357906357418) + +[32922] +centroid = (0.49520225121505862, -1.4092295573282847) +station = ('ktix', 0.0026561466065252001) +zone = ('flz147', 0.0032905720024253089) + +[32925] +centroid = (0.49298749820744792, -1.4072423254419639) +station = ('kcof', 0.00049913122367330426) +zone = ('flz047', 0.0037183860908688274) + +[32926] +centroid = (0.49547637262737687, -1.4105425510712675) +station = ('ktix', 0.002250623195448294) +zone = ('flz147', 0.0030206277429598517) + +[32927] +centroid = (0.49667722896591904, -1.4104509736454154) +station = ('ktix', 0.0010512539245891082) +zone = ('flz147', 0.0018325476425395432) + +[32931] +centroid = (0.49433302488768788, -1.4071385830712253) +station = ('kcof', 0.0016080929296654221) +zone = ('flz147', 0.0047668357446431636) + +[32934] +centroid = (0.49105372575611572, -1.408708873252537) +station = ('kmlb', 0.0011499488022373157) +zone = ('flz047', 0.0015334119460468545) + +[32935] +centroid = (0.4912324998313975, -1.4076075006813586) +station = ('kmlb', 0.00079498016410464419) +zone = ('flz047', 0.0019944311253296946) + +[32937] +centroid = (0.49181224584903244, -1.4067662694351899) +station = ('kcof', 0.00095276865273371798) +zone = ('flz047', 0.0028927738332019119) + +[32940] +centroid = (0.49241454152060316, -1.41015096900029) +station = ('kmlb', 0.002989175873149879) +zone = ('flz047', 0.0031396283760116227) + +[32948] +centroid = (0.48675147169665722, -1.4090668228288286) +station = ('kmlb', 0.003904629780065191) +zone = ('flz047', 0.0027822387327162651) + +[32949] +centroid = (0.48711865406469174, -1.4061714612261103) +station = ('kmlb', 0.0035529737994469917) +zone = ('flz047', 0.0033216313199910391) + +[32950] +centroid = (0.48835309053804232, -1.4062046748417756) +station = ('kmlb', 0.0024246779437953558) +zone = ('flz047', 0.0025472297181789103) + +[32951] +centroid = (0.48777304781443453, -1.4050721830500341) +station = ('kmlb', 0.0034800084516062009) +zone = ('flz047', 0.0037025834399910394) + +[32952] +centroid = (0.49411894280163821, -1.4077926452084102) +station = ('kcof', 0.0016435342608339754) +zone = ('flz047', 0.0046775255708940882) + +[32953] +centroid = (0.49640108297166852, -1.4085272717438673) +station = ('ktix', 0.0019854927185643345) +zone = ('flz147', 0.0023648558519146594) + +[32955] +centroid = (0.4938705300892019, -1.4089177891640008) +station = ('kcof', 0.0022176250015610937) +zone = ('flz047', 0.0043512937855571844) + +[32958] +centroid = (0.48510351436363164, -1.404840996737315) +station = ('kvrb', 0.0027722863651186884) +zone = ('flz054', 0.0026126984633482449) + +[32960] +centroid = (0.48243576114866576, -1.4032904287765506) +station = ('kvrb', 0.00026269407643017767) +zone = ('flz054', 0.0034150600864927836) + +[32962] +centroid = (0.48149827499424952, -1.4029456564361116) +station = ('kvrb', 0.0012045905909688378) +zone = ('flz059', 0.0040060738446703178) + +[32963] +centroid = (0.48377453340470056, -1.4031273626645369) +station = ('kvrb', 0.0012446520057096436) +zone = ('flz054', 0.0034668186197679301) + +[32966] +centroid = (0.48317030041766007, -1.4086140669675689) +station = ('kvrb', 0.0045359135044230666) +zone = ('flz054', 0.0014285878948973147) + +[32967] +centroid = (0.48372578635869234, -1.4041924498405665) +station = ('kvrb', 0.0012818171964703202) +zone = ('flz054', 0.0025263873355110171) + +[32968] +centroid = (0.48143523370166746, -1.4045097157919941) +station = ('kvrb', 0.0014365187884218052) +zone = ('flz054', 0.0029170892891764544) + +[32970] +centroid = (0.48433581383884938, -1.4041049739384563) +station = ('kvrb', 0.0018233485404229449) +zone = ('flz054', 0.0027613920544348382) + +[32976] +centroid = (0.48600857230054584, -1.4059361733896489) +station = ('kvrb', 0.0040304325109199171) +zone = ('flz054', 0.0028402855215624448) + +[33001] +centroid = (0.43314062939546033, -1.4103307728198304) +station = ('kmth', 0.004133972777673022) +zone = ('flz077', 0.0031256114895037131) + +[33004] +centroid = (0.4547942661998382, -1.3986653760719359) +station = ('kfll', 0.00024829121732148111) +zone = ('flz172', 0.0016151091534182226) + +[33009] +centroid = (0.45352713970959785, -1.3988336607184131) +station = ('khwo', 0.0013747473516365627) +zone = ('flz172', 0.0028911790509847535) + +[33010] +centroid = (0.4508744312327842, -1.4011279832866224) +station = ('kmia', 0.0010550087870042418) +zone = ('flz074', 0.00042231772012000081) + +[33012] +centroid = (0.45144871436986039, -1.4015188497726063) +station = ('kopf', 0.00065414630466378322) +zone = ('flz074', 0.00081518849696521822) + +[33013] +centroid = (0.45138036727635228, -1.4009701531623644) +station = ('kopf', 0.0006938770030844656) +zone = ('flz074', 0.00089261237281866752) + +[33014] +centroid = (0.45210043776584757, -1.4015415739594674) +station = ('kopf', 0.00030559429812960668) +zone = ('flz074', 0.0014671166898856895) + +[33015] +centroid = (0.45274826907760285, -1.4018166902094591) +station = ('kopf', 0.00089469022442928263) +zone = ('flz074', 0.0021322660942330912) + +[33016] +centroid = (0.45195309707039427, -1.4020658359601814) +station = ('kopf', 0.00077615015958651726) +zone = ('flz074', 0.0014101091561051259) + +[33018] +centroid = (0.45234979295608002, -1.4029727264928102) +station = ('kopf', 0.0016168063251654615) +zone = ('flz074', 0.002160985934334688) + +[33019] +centroid = (0.4542648554778308, -1.3983616189689188) +station = ('kfll', 0.00082845949140971514) +zone = ('flz172', 0.0021375946745413777) + +[33020] +centroid = (0.45412055165527593, -1.3989327779666338) +station = ('kfll', 0.00082989174160992172) +zone = ('flz172', 0.0023166603143261722) + +[33021] +centroid = (0.45418930017451192, -1.3995191213288414) +station = ('khwo', 0.00083767863242572291) +zone = ('flz072', 0.0022229286572090778) + +[33023] +centroid = (0.4535971099593103, -1.4000519354428902) +station = ('khwo', 0.00031725001638861783) +zone = ('flz072', 0.0025259110696788816) + +[33024] +centroid = (0.45426139972591184, -1.4005343968080188) +station = ('khwo', 0.00050815590292039128) +zone = ('flz072', 0.0017653738587398503) + +[33025] +centroid = (0.45357983119971551, -1.4011743043249703) +station = ('khwo', 0.00078123485383315729) +zone = ('flz072', 0.0024055918901098958) + +[33026] +centroid = (0.45424284687596317, -1.4014294714616116) +station = ('khwo', 0.0010839971722514136) +zone = ('flz072', 0.0017816817662582448) + +[33027] +centroid = (0.45353152048602036, -1.4022581363371662) +station = ('khwo', 0.001746440552750881) +zone = ('flz072', 0.0027014971127871908) + +[33028] +centroid = (0.45415629599835677, -1.4022044325560823) +station = ('khwo', 0.0017197570484353652) +zone = ('flz072', 0.0021263313978088379) + +[33029] +centroid = (0.45333705590076312, -1.4035254373603316) +station = ('kopf', 0.0024541523909493352) +zone = ('flz074', 0.0032534931734415052) + +[33030] +centroid = (0.44479972550475533, -1.4051799745846372) +station = ('khst', 0.0020097977419201059) +zone = ('flz173', 0.0035592025477364608) + +[33031] +centroid = (0.44548923527904821, -1.405013033841684) +station = ('khst', 0.0019935562847855793) +zone = ('flz173', 0.0031462654770742999) + +[33032] +centroid = (0.44560584072637394, -1.4030830662081213) +station = ('khst', 0.00084585030431043654) +zone = ('flz173', 0.0015216458028064915) + +[33033] +centroid = (0.4447655694112938, -1.4034974073725448) +station = ('khst', 0.00049069930090500939) +zone = ('flz173', 0.0023588258686628319) + +[33034] +centroid = (0.44112069361459888, -1.4073025916610351) +station = ('khst', 0.0053610617629172384) +zone = ('flz174', 0.00050864174390686135) + +[33035] +centroid = (0.44347550929468221, -1.4029681711834625) +station = ('khst', 0.001292626621479193) +zone = ('flz173', 0.0032153170185351054) + +[33036] +centroid = (0.43447938419820259, -1.4086725704040957) +station = ('kmth', 0.0060572125067284589) +zone = ('flz077', 0.0050744591147320406) + +[33037] +centroid = (0.44031728365332085, -1.4031653235757677) +station = ('khst', 0.0044548888732152932) +zone = ('flz076', 0.0014659082219166321) + +[33039] +centroid = (0.44508826333669499, -1.4032171947611369) +station = ('khst', 0.00039879270736373435) +zone = ('flz173', 0.0019508772922560147) + +[33040] +centroid = (0.42867647859458685, -1.4295945651860376) +station = ('keyw', 0.0022798053596854951) +zone = ('flz078', 0.0058794982244590472) + +[33042] +centroid = (0.43059394967070536, -1.4225331201121012) +station = ('knqx', 0.003216388756784525) +zone = ('flz078', 0.00082981294147471522) + +[33043] +centroid = (0.43154768484045763, -1.4194753905290698) +station = ('kmth', 0.0044398596326508952) +zone = ('flz078', 0.0037638445460043755) + +[33050] +centroid = (0.43192512974449393, -1.4138969168139679) +station = ('kmth', 0.00067566198197991766) +zone = ('flz077', 0.00036098578927592302) + +[33051] +centroid = (0.4314562994008232, -1.4140923587836063) +station = ('kmth', 0.00050297704035043148) +zone = ('flz077', 0.00070983360374934532) + +[33054] +centroid = (0.45218993824988984, -1.4008906534149361) +station = ('kopf', 0.00032271409089974448) +zone = ('flz074', 0.0016541873635453541) + +[33055] +centroid = (0.45288620244838795, -1.4011303394811123) +station = ('kopf', 0.00084884197595111281) +zone = ('flz074', 0.0022788649450138404) + +[33056] +centroid = (0.45289334084502864, -1.4005147094940564) +station = ('khwo', 0.00090663910739786121) +zone = ('flz074', 0.0024318554318135113) + +[33060] +centroid = (0.45788314991001783, -1.3983679894206884) +station = ('kpmp', 0.00027276164267283406) +zone = ('flz172', 0.0014860309714929576) + +[33062] +centroid = (0.45799319291935608, -1.3978557178319357) +station = ('kpmp', 0.00042751331964761965) +zone = ('flz172', 0.0016866215606489434) + +[33063] +centroid = (0.45817638267764538, -1.3999190635269356) +station = ('kfxe', 0.00098866751521271509) +zone = ('flz172', 0.0021996914403796075) + +[33064] +centroid = (0.45864638239191491, -1.3982757662230132) +station = ('kpmp', 0.00049791341917286667) +zone = ('flz172', 0.0022532315187828596) + +[33065] +centroid = (0.45856379341171055, -1.4008033171391663) +station = ('kfxe', 0.0017614530302956586) +zone = ('flz072', 0.0025895169856126232) + +[33066] +centroid = (0.45819456900845112, -1.3992369888552563) +station = ('kpmp', 0.00084192992834529489) +zone = ('flz172', 0.0019209361947873844) + +[33067] +centroid = (0.45912308417051212, -1.4001971991965336) +station = ('kpmp', 0.001960614415487825) +zone = ('flz172', 0.0031315892878590683) + +[33068] +centroid = (0.45755471385137753, -1.4000673641534778) +station = ('kfxe', 0.00060941316058274356) +zone = ('flz072', 0.001778052494145849) + +[33069] +centroid = (0.45790161549350389, -1.3990030274690266) +station = ('kpmp', 0.00067764780391645031) +zone = ('flz172', 0.0015750328816399792) + +[33070] +centroid = (0.436632596896388, -1.4053128988604691) +station = ('khst', 0.0084106142360629594) +zone = ('flz076', 0.0027561874102105433) + +[33071] +centroid = (0.45805471577548884, -1.4008939520872223) +station = ('kfxe', 0.0015011479844515049) +zone = ('flz072', 0.0020768840259686385) + +[33073] +centroid = (0.45899089293296613, -1.3994297081112617) +station = ('kpmp', 0.0013174796737056662) +zone = ('flz172', 0.002729239992271116) + +[33076] +centroid = (0.45928901262249922, -1.4011150329435724) +station = ('kfxe', 0.0024991469405000839) +zone = ('flz072', 0.003311543744436284) + +[33101] +centroid = (0.44993362895278916, -1.3997320514975846) +station = ('kmia', 0.0018546892551091639) +zone = ('flz074', 0.0017498231606200825) + +[33109] +centroid = (0.4495395161543963, -1.3987080144655621) +station = ('kmia', 0.0028143248251250711) +zone = ('flz074', 0.0027526939554329767) + +[33122] +centroid = (0.45020506255805931, -1.4012960584935892) +station = ('kmia', 0.00048828642416394626) +zone = ('flz074', 0.00047102177060210666) + +[33125] +centroid = (0.45001138337096552, -1.4004140039962165) +station = ('kmia', 0.0012392785476296431) +zone = ('flz074', 0.0011690534158562515) + +[33126] +centroid = (0.44993540918862618, -1.4014902263728737) +station = ('kmia', 0.00027876918094520652) +zone = ('flz074', 0.00069844209911453078) + +[33127] +centroid = (0.45052489414348729, -1.3998554288224081) +station = ('kmia', 0.001818201059231702) +zone = ('flz074', 0.0014964035009778442) + +[33128] +centroid = (0.44987900014720172, -1.3998192132404292) +station = ('kmia', 0.0017792895858292966) +zone = ('flz074', 0.0017017201552139518) + +[33129] +centroid = (0.44942519708839068, -1.3995800158664433) +station = ('kmia', 0.0020729598938925946) +zone = ('flz074', 0.0021191096077584947) + +[33130] +centroid = (0.44974558717917928, -1.3998126857090269) +station = ('kmia', 0.0017994841770765178) +zone = ('flz074', 0.0017700551958818921) + +[33131] +centroid = (0.44970513044711807, -1.3994555564374838) +station = ('kmia', 0.0021235851350943787) +zone = ('flz074', 0.0020723791878974351) + +[33132] +centroid = (0.44991741484403813, -1.3993314286210821) +station = ('kmia', 0.0022157999448214833) +zone = ('flz074', 0.0020909041825776385) + +[33133] +centroid = (0.44904986403274932, -1.40045212198708) +station = ('kmia', 0.0015372140490620856) +zone = ('flz074', 0.0018496777112908321) + +[33134] +centroid = (0.44948043675921634, -1.4009824053737134) +station = ('kmia', 0.00089637586892774197) +zone = ('flz074', 0.0012482811867655349) + +[33135] +centroid = (0.44971102965998977, -1.4003665834004397) +station = ('kmia', 0.0013151109796242944) +zone = ('flz074', 0.0013846014824314798) + +[33136] +centroid = (0.4500712307110164, -1.3998364745467315) +station = ('kmia', 0.0017605461210138485) +zone = ('flz074', 0.0016110037920116576) + +[33137] +centroid = (0.45057910407005425, -1.3992571299548244) +station = ('kopf', 0.0022844114872146329) +zone = ('flz074', 0.0020317425004755516) + +[33138] +centroid = (0.45123332328687177, -1.3993701225705988) +station = ('kopf', 0.001840396539861107) +zone = ('flz074', 0.002020087909898197) + +[33139] +centroid = (0.44994253013197433, -1.3989372460095189) +station = ('kmia', 0.0025697736701529006) +zone = ('flz074', 0.00242007442525583) + +[33140] +centroid = (0.4506390212232752, -1.3985970987915979) +station = ('kopf', 0.0027359772140083689) +zone = ('flz074', 0.0026251296475298812) + +[33141] +centroid = (0.45119997004486617, -1.3986846270535853) +station = ('kopf', 0.0024213216567164058) +zone = ('flz074', 0.0026082362623288712) + +[33142] +centroid = (0.4505047879505043, -1.400440236294874) +station = ('kmia', 0.0013145906927430207) +zone = ('flz074', 0.00097456054184614604) + +[33143] +centroid = (0.44860253614546319, -1.4014535744585819) +station = ('kmia', 0.0014339622419702641) +zone = ('flz074', 0.0020317181471181983) + +[33144] +centroid = (0.44965716879927325, -1.4017204702077968) +station = ('kmia', 0.00035253996910100574) +zone = ('flz074', 0.00099402185428521558) + +[33145] +centroid = (0.44947694610071232, -1.4003549246010363) +station = ('kmia', 0.0013959647987095115) +zone = ('flz074', 0.0015574710905740647) + +[33146] +centroid = (0.44891351891158349, -1.401020662990917) +station = ('kmia', 0.0012921970842716007) +zone = ('flz074', 0.0017763263664724446) + +[33147] +centroid = (0.45118899192387113, -1.4004201824617686) +station = ('kopf', 0.0011080477268184256) +zone = ('flz074', 0.0011298672489699279) + +[33149] +centroid = (0.44889018385948432, -1.3992049969700675) +station = ('kmia', 0.0025812335801905675) +zone = ('flz074', 0.0027130539970927074) + +[33150] +centroid = (0.45120583435115286, -1.3998792700199902) +station = ('kopf', 0.0014582931926825507) +zone = ('flz074', 0.0015781715247466328) + +[33154] +centroid = (0.45174945205327155, -1.3985642866016603) +station = ('khwo', 0.0025852895923241547) +zone = ('flz074', 0.0028790086463450033) + +[33155] +centroid = (0.44919341736372581, -1.4016873264053014) +station = ('kmia', 0.00081592680483605026) +zone = ('flz074', 0.0014486195247714129) + +[33156] +centroid = (0.44799465542028605, -1.401447204006812) +station = ('kmia', 0.0020330335476357879) +zone = ('flz173', 0.0015308084337713431) + +[33157] +centroid = (0.44691120738052553, -1.4022585377628942) +station = ('ktmb', 0.0016077692885485004) +zone = ('flz173', 0.00065971632304445899) + +[33158] +centroid = (0.44748217439202292, -1.4016968908096024) +station = ('ktmb', 0.0019296877613258628) +zone = ('flz173', 0.0010007900416015142) + +[33160] +centroid = (0.45263363585233191, -1.3986335761729645) +station = ('khwo', 0.0019155133654029531) +zone = ('flz074', 0.0032732007533980453) + +[33161] +centroid = (0.45192969220512502, -1.3994318548662417) +station = ('kopf', 0.0016020599975723972) +zone = ('flz074', 0.0022778435653172161) + +[33162] +centroid = (0.45252891609721224, -1.3993556886976848) +station = ('khwo', 0.0015348675077787761) +zone = ('flz074', 0.0027131868268647327) + +[33165] +centroid = (0.44914905109414016, -1.4025164101598764) +station = ('kmia', 0.0010764408685697566) +zone = ('flz074', 0.0017376901573056349) + +[33166] +centroid = (0.45078110847768005, -1.4017818359842968) +station = ('kmia', 0.0007770868345096624) +zone = ('flz074', 0.00028316429899669164) + +[33167] +centroid = (0.45176528218958711, -1.400398313486241) +station = ('kopf', 0.00077901062482470425) +zone = ('flz074', 0.0015125315088065578) + +[33168] +centroid = (0.45191899333681024, -1.3999142987780779) +station = ('kopf', 0.0011705442311142806) +zone = ('flz074', 0.0019295163921280803) + +[33169] +centroid = (0.45279280988011378, -1.4000103791534002) +station = ('khwo', 0.0010350130590212883) +zone = ('flz074', 0.0025477353267376636) + +[33170] +centroid = (0.446069714334969, -1.4042552118804681) +station = ('ktmb', 0.0016530849954528352) +zone = ('flz173', 0.0023382432287624667) + +[33172] +centroid = (0.45006646596215849, -1.4025684558781708) +station = ('kmia', 0.00070347011238673857) +zone = ('flz074', 0.0011062967875785019) + +[33173] +centroid = (0.44859010940118899, -1.4025030060312209) +station = ('ktmb', 0.0015022103953995934) +zone = ('flz173', 0.0022284589699888423) + +[33174] +centroid = (0.44962330941178452, -1.4026285650176096) +station = ('kmia', 0.00084548581243377009) +zone = ('flz074', 0.0014243737539070156) + +[33175] +centroid = (0.4491558404249304, -1.4033626505009982) +station = ('ktmb', 0.0015368214647127516) +zone = ('flz074', 0.0022263772736186441) + +[33176] +centroid = (0.44784926949359494, -1.4025178587831555) +station = ('ktmb', 0.0011921472874215655) +zone = ('flz173', 0.0015524547669329065) + +[33177] +centroid = (0.44673672681520371, -1.4033179177122697) +station = ('ktmb', 0.0010460906222768348) +zone = ('flz173', 0.0014782042798029233) + +[33178] +centroid = (0.45089895310877465, -1.4036445386284879) +station = ('kmia', 0.0018940424392944392) +zone = ('flz074', 0.0019365837137611825) + +[33179] +centroid = (0.45304593498153045, -1.3994049593424684) +station = ('khwo', 0.0011168600365834746) +zone = ('flz074', 0.0030687967837250106) + +[33180] +centroid = (0.45309426314851819, -1.3987611946478702) +station = ('khwo', 0.0015753231965122826) +zone = ('flz172', 0.0033159693414034391) + +[33181] +centroid = (0.45200643433233517, -1.3989251159712177) +station = ('khwo', 0.00218507062181791) +zone = ('flz074', 0.0027036004273855237) + +[33182] +centroid = (0.44995918057303835, -1.4039695712950866) +station = ('kmia', 0.0019628691835774361) +zone = ('flz074', 0.0023119163974084532) + +[33183] +centroid = (0.44860424656813014, -1.4033221414090595) +station = ('ktmb', 0.0010327098222953888) +zone = ('flz173', 0.0025759586268705877) + +[33184] +centroid = (0.44959177131220102, -1.4033576937659227) +station = ('kmia', 0.0014704931697286144) +zone = ('flz074', 0.0019603608223624776) + +[33185] +centroid = (0.44902981019964389, -1.4041460589890484) +station = ('ktmb', 0.0013831681315705905) +zone = ('flz074', 0.0028622842438619481) + +[33186] +centroid = (0.44775280514583721, -1.4034591497553408) +station = ('ktmb', 0.00033971564900419943) +zone = ('flz173', 0.0020303429223269237) + +[33187] +centroid = (0.44673266019804653, -1.4051106326534555) +station = ('ktmb', 0.0014940939064099798) +zone = ('flz073', 0.0026868706007757734) + +[33189] +centroid = (0.4463193138712967, -1.4021178293185985) +station = ('khst', 0.0017249507025910639) +zone = ('flz173', 0.00040728702174126026) + +[33190] +centroid = (0.44609425366425204, -1.4023815311152821) +station = ('khst', 0.0014231964959754144) +zone = ('flz173', 0.00072378378301946251) + +[33193] +centroid = (0.44856305679778302, -1.4043811199327068) +station = ('ktmb', 0.0010173705006211464) +zone = ('flz073', 0.0027477439213936354) + +[33194] +centroid = (0.44879288175368565, -1.4064494747226604) +station = ('ktmb', 0.0026140296229124598) +zone = ('flz073', 0.00095455096958601388) + +[33196] +centroid = (0.44769451114882058, -1.4047512344538848) +station = ('ktmb', 0.00083379246310750035) +zone = ('flz073', 0.0025191342694569894) + +[33301] +centroid = (0.45590309132692275, -1.3984958347883971) +station = ('kfll', 0.0010148326996618161) +zone = ('flz172', 0.0004974404330708082) + +[33304] +centroid = (0.45623697281282927, -1.3983783741297378) +station = ('kfll', 0.0013647384097397084) +zone = ('flz172', 0.00018392123058271829) + +[33305] +centroid = (0.45646225991267669, -1.3983480228540457) +station = ('kfxe', 0.0012900222468234196) +zone = ('flz172', 0.0001282402001917229) + +[33306] +centroid = (0.45667311313961012, -1.3982505113087369) +station = ('kfxe', 0.0012442018300656053) +zone = ('flz172', 0.00033824298944612696) + +[33308] +centroid = (0.45707574314475269, -1.3980957878705476) +station = ('kpmp', 0.0010886526203909928) +zone = ('flz172', 0.00075570393729857029) + +[33309] +centroid = (0.4570311150757792, -1.3992727681049224) +station = ('kfxe', 0.00029881149031873446) +zone = ('flz172', 0.0009557278172634781) + +[33311] +centroid = (0.45630250992624166, -1.3992790687435221) +station = ('kfxe', 0.00098767262330001879) +zone = ('flz172', 0.00073014362914668922) + +[33312] +centroid = (0.45533004737361549, -1.399435083725358) +station = ('kfll', 0.00062642334933181052) +zone = ('flz172', 0.0013752316848256109) + +[33313] +centroid = (0.45642831325872546, -1.4002115108963999) +station = ('kfxe', 0.0010816922929904559) +zone = ('flz072', 0.00082776431521991239) + +[33314] +centroid = (0.45496546554616635, -1.4001492550019814) +station = ('khwo', 0.001191711469435373) +zone = ('flz072', 0.0012622412666470513) + +[33315] +centroid = (0.45530447830007376, -1.3989335982713822) +station = ('kfll', 0.00035840037235844343) +zone = ('flz172', 0.0011710894379202863) + +[33316] +centroid = (0.45548321746877052, -1.3983887413854947) +station = ('kfll', 0.00069355045927315458) +zone = ('flz172', 0.00092000606014001592) + +[33317] +centroid = (0.45575084625627132, -1.4002405706284458) +station = ('kfll', 0.0014604023528357567) +zone = ('flz072', 0.00070750418997058003) + +[33319] +centroid = (0.45695131862237803, -1.4002043899530519) +station = ('kfxe', 0.00074025028622179434) +zone = ('flz072', 0.0011987556059387605) + +[33321] +centroid = (0.45751326228164263, -1.4009805378714137) +station = ('kfxe', 0.0013818649116931702) +zone = ('flz072', 0.0015337864986825888) + +[33322] +centroid = (0.45640715986819125, -1.4010543827520656) +station = ('kfxe', 0.0016717111894055182) +zone = ('flz072', 0.00043202560355826879) + +[33323] +centroid = (0.45643878523423737, -1.4017877002905836) +station = ('kfxe', 0.0022479584424246368) +zone = ('flz072', 0.00085358065933227069) + +[33324] +centroid = (0.45574883912763148, -1.4010620098408968) +station = ('khwo', 0.0020687844920195034) +zone = ('flz072', 0.00024046387414152582) + +[33325] +centroid = (0.4557381402593168, -1.4018193954697999) +station = ('khwo', 0.0023640408533533845) +zone = ('flz072', 0.00078602476688714566) + +[33326] +centroid = (0.45578116262537843, -1.4027328135338311) +station = ('khwo', 0.0029358328750355251) +zone = ('flz072', 0.0015806730799320871) + +[33327] +centroid = (0.45572429979834844, -1.4036430900052088) +station = ('khwo', 0.0035476979047837356) +zone = ('flz072', 0.0023991388670013044) + +[33328] +centroid = (0.45496420890910494, -1.4010640344228293) +station = ('khwo', 0.0013480466160478179) +zone = ('flz072', 0.0010176749900169125) + +[33330] +centroid = (0.45485011673590203, -1.401832188733217) +station = ('khwo', 0.0017149442556188635) +zone = ('flz072', 0.00136111271101062) + +[33331] +centroid = (0.45482465238211545, -1.402696388512342) +station = ('khwo', 0.0023619344226857974) +zone = ('flz072', 0.0019215702796496086) + +[33332] +centroid = (0.45390315344364751, -1.4042945690551005) +station = ('kopf', 0.0033421611688572253) +zone = ('flz072', 0.0036252981445851896) + +[33334] +centroid = (0.45697210549376932, -1.3985949345833255) +station = ('kfxe', 0.00083635873124004859) +zone = ('flz172', 0.00058237390353668543) + +[33351] +centroid = (0.45691620259782789, -1.4010560582681475) +station = ('kfxe', 0.0014740102347040841) +zone = ('flz072', 0.00093881098371304168) + +[33401] +centroid = (0.46627944024917201, -1.3974894779416973) +station = ('kpbi', 0.0007329084943561309) +zone = ('flz168', 0.00024476485462520059) + +[33403] +centroid = (0.46781363702155254, -1.3975962746386268) +station = ('kpbi', 0.0021336486220777683) +zone = ('flz168', 0.001719489677614679) + +[33404] +centroid = (0.46741701094903682, -1.3973758395540998) +station = ('kpbi', 0.0017962436641544015) +zone = ('flz168', 0.0013474771655775538) + +[33405] +centroid = (0.46547318540121319, -1.3972835814498394) +station = ('kpbi', 0.00069057720001803517) +zone = ('flz168', 0.00071165381609414487) + +[33406] +centroid = (0.46537607528163222, -1.3978758240249185) +station = ('kpbi', 0.00035632118723362123) +zone = ('flz168', 0.00074244280059673046) + +[33407] +centroid = (0.46700940675552605, -1.3978533790907379) +station = ('kpbi', 0.0013047842170240017) +zone = ('flz168', 0.00092853056526070153) + +[33408] +centroid = (0.46845366671155136, -1.3971720374573444) +station = ('kpbi', 0.0028416070335480128) +zone = ('flz168', 0.0023998171457830825) + +[33409] +centroid = (0.46635825931819203, -1.397997682913293) +station = ('kpbi', 0.00064631260843250459) +zone = ('flz168', 0.0003933136165854246) + +[33410] +centroid = (0.46859221094757469, -1.3977925194597207) +station = ('kpbi', 0.0028866510682448569) +zone = ('flz168', 0.0024991876444846466) + +[33411] +centroid = (0.46635213321251756, -1.3996338418205749) +station = ('kpbi', 0.0015866580353574827) +zone = ('flz168', 0.001772809072312249) + +[33412] +centroid = (0.46765624322960769, -1.3998879792129577) +station = ('kpbi', 0.0025683954630896853) +zone = ('flz168', 0.0025216097183680527) + +[33413] +centroid = (0.46537218319740031, -1.3989485731963642) +station = ('kpbi', 0.00090597611593362887) +zone = ('flz068', 0.00073636594165277659) + +[33414] +centroid = (0.46510678843134201, -1.4005768781220127) +station = ('kpbi', 0.0023734580676222756) +zone = ('flz068', 0.0016381400114389749) + +[33415] +centroid = (0.46530835650665486, -1.3984725171895902) +station = ('kpbi', 0.00057853534520646728) +zone = ('flz068', 0.00073188411948159045) + +[33417] +centroid = (0.46633794368569881, -1.3984364586872442) +station = ('kpbi', 0.00073334177939750355) +zone = ('flz168', 0.0007262307924762705) + +[33418] +centroid = (0.46901744296653064, -1.3991554994324809) +station = ('kpbi', 0.0034603390886448694) +zone = ('flz168', 0.0032087973356275724) + +[33426] +centroid = (0.46310105605495017, -1.397714677775082) +station = ('kpbi', 0.0026241693394709249) +zone = ('flz068', 0.0018326293020439854) + +[33428] +centroid = (0.45994569275356212, -1.3998946289174079) +station = ('kbct', 0.0016308144814765756) +zone = ('flz172', 0.0037678677806005333) + +[33430] +centroid = (0.46499000845109106, -1.4059325605580972) +station = ('kpbi', 0.0071179518245176937) +zone = ('flz067', 0.00079940190824985536) + +[33431] +centroid = (0.46035137708489565, -1.3981364365888262) +station = ('kbct', 4.2848972401384776e-05) +zone = ('flz172', 0.0039627781747355734) + +[33432] +centroid = (0.4597878277227192, -1.3977073997521012) +station = ('kbct', 0.00072135425038691867) +zone = ('flz172', 0.0034566071744756566) + +[33433] +centroid = (0.45984467309645671, -1.3990425766298766) +station = ('kbct', 0.00097410110219478519) +zone = ('flz172', 0.0034822400571588598) + +[33434] +centroid = (0.46046519000541825, -1.3991805100006618) +station = ('kbct', 0.00093089649942447461) +zone = ('flz172', 0.0041142963425245182) + +[33435] +centroid = (0.46296228492612407, -1.3973344577975351) +station = ('kbct', 0.0026690820524077467) +zone = ('flz068', 0.0021432355892066113) + +[33436] +centroid = (0.46291287465500008, -1.3981354941110304) +station = ('kbct', 0.002519271505297543) +zone = ('flz068', 0.001836744139685898) + +[33437] +centroid = (0.46271090515395935, -1.398850276252892) +station = ('kbct', 0.0024019122886445431) +zone = ('flz068', 0.0019343469401827251) + +[33438] +centroid = (0.47006497213028509, -1.4066067812481426) +station = ('kobe', 0.0070729344192585406) +zone = ('flz064', 0.0041235092031937891) + +[33440] +centroid = (0.46363884435736713, -1.4143788371270285) +station = ('krsw', 0.011390584297341974) +zone = ('flz066', 0.0021114183465342595) + +[33441] +centroid = (0.4592153597280651, -1.3979715553343905) +station = ('kpmp', 0.0011062557606227312) +zone = ('flz172', 0.002850956950159609) + +[33442] +centroid = (0.45919242610169392, -1.3988063288623267) +station = ('kpmp', 0.0011381165195371433) +zone = ('flz172', 0.002808281802408909) + +[33444] +centroid = (0.4617949738158052, -1.3976533294518745) +station = ('kbct', 0.0014687673547193096) +zone = ('flz068', 0.0030347290331258492) + +[33445] +centroid = (0.4617318801633456, -1.3981195592549598) +station = ('kbct', 0.0013384502441581166) +zone = ('flz068', 0.0029795282968986376) + +[33446] +centroid = (0.46164731896108652, -1.3995129428632891) +station = ('kbct', 0.0017532410614674282) +zone = ('flz068', 0.0030614178114114969) + +[33449] +centroid = (0.46408432219564622, -1.4003236308475482) +station = ('kpbi', 0.0026326884091349523) +zone = ('flz068', 0.001457837662109108) + +[33455] +centroid = (0.47216641836285628, -1.3990774308550391) +station = ('ksua', 0.0024283850588032426) +zone = ('flz064', 0.0035862489550488514) + +[33458] +centroid = (0.47013162625441879, -1.3985646356675105) +station = ('kpbi', 0.004447366015461726) +zone = ('flz168', 0.0041143957284435562) + +[33460] +centroid = (0.46460078257460385, -1.3972532650807321) +station = ('kpbi', 0.0013002870029530547) +zone = ('flz168', 0.0015403597926845756) + +[33461] +centroid = (0.46461373291765362, -1.3978464675869002) +station = ('kpbi', 0.0011078224614490485) +zone = ('flz068', 0.00086960576704139694) + +[33462] +centroid = (0.46390849772680026, -1.3975249953919751) +station = ('kpbi', 0.0018546380065104485) +zone = ('flz068', 0.0013712449940239259) + +[33463] +centroid = (0.46413294706860675, -1.3985129913749441) +station = ('kpbi', 0.0016421452902175616) +zone = ('flz068', 0.00058042010439506052) + +[33467] +centroid = (0.46419626761386912, -1.3993301894373129) +station = ('kpbi', 0.0019216363591654157) +zone = ('flz068', 0.00064081756678521177) + +[33469] +centroid = (0.47105076899839654, -1.3981577994188708) +station = ('ksua', 0.0037870123087782926) +zone = ('flz064', 0.0046700874262516493) + +[33470] +centroid = (0.46647037926934015, -1.4018491009736687) +station = ('kpbi', 0.0035135412087330463) +zone = ('flz068', 0.0032657487327399318) + +[33471] +centroid = (0.46924838493315446, -1.4172739194770665) +station = ('kobe', 0.0086191601382658092) +zone = ('flz063', 0.001415888888336217) + +[33472] +centroid = (0.46318266765077343, -1.3995027675937501) +station = ('kpbi', 0.00286040552104637) +zone = ('flz068', 0.0015852296871792287) + +[33473] +centroid = (0.46257794597154239, -1.3996066321375362) +station = ('kbct', 0.0025466255714799583) +zone = ('flz068', 0.0021839766463576937) + +[33476] +centroid = (0.46778572920681316, -1.4071668574051077) +station = ('kobe', 0.008834910329567203) +zone = ('flz067', 0.0036835914543141899) + +[33477] +centroid = (0.46984657908098304, -1.3976001318162736) +station = ('kpbi', 0.0041506108348134622) +zone = ('flz168', 0.0037516866255147695) + +[33478] +centroid = (0.47010480054381554, -1.4005581507391387) +station = ('ksua', 0.0043222247087700821) +zone = ('flz064', 0.0034289213717637415) + +[33480] +centroid = (0.46576798896516758, -1.3970073656424187) +station = ('kpbi', 0.000896458018068678) +zone = ('flz168', 0.0006766202429764281) + +[33483] +centroid = (0.46186026658312235, -1.3973405839032096) +station = ('kbct', 0.0016338182107413562) +zone = ('flz068', 0.0030827281981167442) + +[33484] +centroid = (0.46171317023376424, -1.3986097000687971) +station = ('kbct', 0.0013837689132304807) +zone = ('flz068', 0.0029378223224184345) + +[33486] +centroid = (0.45985064212249854, -1.3982281361877262) +station = ('kbct', 0.00054812331840533993) +zone = ('flz172', 0.0034575144838705565) + +[33487] +centroid = (0.46094079222658668, -1.3978084543157916) +station = ('kbct', 0.00062450007333493453) +zone = ('flz068', 0.0038129298868610465) + +[33493] +centroid = (0.46318977114082899, -1.4089819474673042) +station = ('kfxe', 0.010377939768177486) +zone = ('flz067', 0.0036648202889368342) + +[33496] +centroid = (0.46088424355882202, -1.3990656324292956) +station = ('kbct', 0.00095998567248300505) +zone = ('flz068', 0.0037672932300185447) + +[33498] +centroid = (0.46052374580182265, -1.4000954115945574) +station = ('kbct', 0.0017525785798325475) +zone = ('flz068', 0.0042767692029669563) + +[33503] +centroid = (0.48457026391726976, -1.4359901322437529) +station = ('ktpf', 0.0037603709246232572) +zone = ('flz051', 0.0018463645799942491) + +[33510] +centroid = (0.48791791014235003, -1.4363482563529699) +station = ('kvdf', 0.0012626856924444201) +zone = ('flz051', 0.0043521090175651662) + +[33511] +centroid = (0.48711751960067795, -1.4363315884586132) +station = ('kvdf', 0.0019710407765038476) +zone = ('flz051', 0.0036055035860434524) + +[33513] +centroid = (0.50115979299040114, -1.4345691200733643) +station = ('kinf', 0.0024490180722550416) +zone = ('flz043', 0.0017496227216649948) + +[33514] +centroid = (0.50067061210765207, -1.4310774841849945) +station = ('klee', 0.0035492625906446184) +zone = ('flz043', 0.0013592356453310669) + +[33521] +centroid = (0.50262464783159988, -1.4323664621974699) +station = ('kvvg', 0.0033260332716518052) +zone = ('flz043', 0.0016459239713929993) + +[33523] +centroid = (0.49595968920383909, -1.4348718823387077) +station = ('kbkv', 0.0037548856771495035) +zone = ('flz049', 0.0033256084263851614) + +[33525] +centroid = (0.49465348479164656, -1.434632283538994) +station = ('kbkv', 0.0044374172853313271) +zone = ('flz049', 0.003015498189323861) + +[33527] +centroid = (0.48823149344905586, -1.4348816561825191) +station = ('kpcm', 0.0010700308933899944) +zone = ('flz051', 0.0051786610510494678) + +[33534] +centroid = (0.48560623900137601, -1.4377825155723813) +station = ('kmcf', 0.0019271562944493065) +zone = ('flz051', 0.0018273372072982435) + +[33538] +centroid = (0.50352335277003679, -1.4344014288388327) +station = ('kinf', 0.0021887490223648988) +zone = ('flz043', 0.0029928881152366201) + +[33540] +centroid = (0.4931835684956169, -1.4334953062510747) +station = ('kpcm', 0.0044987881365837279) +zone = ('flz049', 0.004067291242753495) + +[33541] +centroid = (0.49282643922407388, -1.4351512920986595) +station = ('kvdf', 0.0042893928925806374) +zone = ('flz049', 0.0028075077188382844) + +[33542] +centroid = (0.49280732786876447, -1.4342699880928649) +station = ('kpcm', 0.0041370378788580372) +zone = ('flz049', 0.0035248781098921622) + +[33543] +centroid = (0.49237888444398492, -1.436361084522972) +station = ('kvdf', 0.0035221735113886289) +zone = ('flz049', 0.0022377851859582535) + +[33544] +centroid = (0.49312604244347119, -1.4375618012351741) +station = ('kbkv', 0.0039277449982120273) +zone = ('flz049', 0.0010380409318576805) + +[33545] +centroid = (0.4934510576567776, -1.4363487450451604) +station = ('kbkv', 0.0041238317892717691) +zone = ('flz049', 0.0015865662642559791) + +[33547] +centroid = (0.4850459184983158, -1.4335351870244828) +station = ('kpcm', 0.0036531104640637976) +zone = ('flz051', 0.0040443259962224349) + +[33548] +centroid = (0.49126112323113025, -1.4396135055840633) +station = ('kvdf', 0.0031561514339857981) +zone = ('flz049', 0.0031673404685537707) + +[33549] +centroid = (0.49109976754178336, -1.4389585533289599) +station = ('kvdf', 0.0026656760041922803) +zone = ('flz049', 0.0031082439193926012) + +[33556] +centroid = (0.49104505146973332, -1.4414928935759033) +station = ('ktpa', 0.0030681725696222778) +zone = ('flz050', 0.0041266201056830761) + +[33558] +centroid = (0.49158104208302078, -1.440095321177369) +station = ('ktpa', 0.0034870515488339333) +zone = ('flz049', 0.0031164685241622217) + +[33559] +centroid = (0.49150220556070817, -1.438406331153629) +station = ('kvdf', 0.00278071417207969) +zone = ('flz049', 0.0026132038029615984) + +[33563] +centroid = (0.48899277116219075, -1.4333508278955949) +station = ('kpcm', 0.00048919080647835352) +zone = ('flz049', 0.0065398666050103778) + +[33565] +centroid = (0.49019153310563057, -1.4337550636036491) +station = ('kpcm', 0.0014996239896461841) +zone = ('flz049', 0.0054021363765003596) + +[33566] +centroid = (0.48830760725773537, -1.4328404238091415) +station = ('kpcm', 0.00092087934308418583) +zone = ('flz051', 0.0063494561071771836) + +[33567] +centroid = (0.48730655621196145, -1.4332080425094891) +station = ('kpcm', 0.00147728661200491) +zone = ('flz051', 0.0054290684111407738) + +[33569] +centroid = (0.48601049216272302, -1.4362060469255173) +station = ('ktpf', 0.0027566721540365148) +zone = ('flz051', 0.0026747652667276798) + +[33570] +centroid = (0.48329491692625248, -1.4392194975054255) +station = ('kmcf', 0.0028431266906837629) +zone = ('flz051', 0.0012849139679071424) + +[33572] +centroid = (0.48452275605503053, -1.4383010528931486) +station = ('kmcf', 0.0020973481211235536) +zone = ('flz051', 0.00083192467613959857) + +[33573] +centroid = (0.48385338738030564, -1.4374049484952971) +station = ('kmcf', 0.0031290972036480034) +zone = ('flz051', 0.00042322023986648434) + +[33576] +centroid = (0.49455913229228377, -1.4369059065022745) +station = ('kbkv', 0.0029428199086611382) +zone = ('flz049', 0.0010692747526625079) + +[33578] +centroid = (0.48628712684916409, -1.4372794069622012) +station = ('ktpf', 0.0017903337374528174) +zone = ('flz051', 0.0025613117372203999) + +[33579] +centroid = (0.48513575059491593, -1.4362951983437093) +station = ('ktpf', 0.0031774018692305524) +zone = ('flz051', 0.001947498566512929) + +[33584] +centroid = (0.4888184127699165, -1.4362035685579795) +station = ('kvdf', 0.00088404189345183206) +zone = ('flz051', 0.0052501210984912819) + +[33585] +centroid = (0.50148470348395235, -1.4327285656573812) +station = ('kinf', 0.0037134138630724651) +zone = ('flz043', 0.0005109683164430779) + +[33592] +centroid = (0.49047017492071138, -1.436113387395529) +station = ('kvdf', 0.0018086221139904347) +zone = ('flz049', 0.0039829914638200015) + +[33594] +centroid = (0.48766129438242928, -1.4354020435522936) +station = ('kpcm', 0.0017592224587870873) +zone = ('flz051', 0.0044547483966804148) + +[33596] +centroid = (0.48672372096155048, -1.4351121618168299) +station = ('kpcm', 0.0022898230675331764) +zone = ('flz051', 0.0038259171614923163) + +[33597] +centroid = (0.49821350268010944, -1.4325755351885663) +station = ('kinf', 0.0057913294351048415) +zone = ('flz043', 0.0027762870458566346) + +[33598] +centroid = (0.4833414124975256, -1.4361382234307849) +station = ('kmcf', 0.0043042918249115835) +zone = ('flz051', 0.0015999954362461307) + +[33602] +centroid = (0.48788113605501054, -1.4391481135390192) +station = ('ktpf', 0.00067401018121687295) +zone = ('flz051', 0.0042518820771855282) + +[33603] +centroid = (0.48844117730539044, -1.4392759763600202) +station = ('ktpa', 0.0011122404567674715) +zone = ('flz050', 0.0040932732921320327) + +[33604] +centroid = (0.48899158433829942, -1.4391173433843063) +station = ('ktpa', 0.0014902618229751421) +zone = ('flz050', 0.0043915928640506797) + +[33605] +centroid = (0.48783910852662249, -1.4386693173653196) +station = ('ktpf', 0.00068965338406496649) +zone = ('flz051', 0.0041185298372848822) + +[33606] +centroid = (0.487251456167476, -1.4390637443229777) +station = ('ktpf', 5.8305092458079792e-05) +zone = ('flz051', 0.0036261882658811919) + +[33607] +centroid = (0.48802917488216468, -1.4397600783346458) +station = ('ktpa', 0.00063963837286503138) +zone = ('flz050', 0.0035904638495159601) + +[33609] +centroid = (0.48771955347286089, -1.4402051198406118) +station = ('ktpa', 0.0004593974144497967) +zone = ('flz050', 0.0031613502428831362) + +[33610] +centroid = (0.48866101897797165, -1.4377676104605692) +station = ('kvdf', 0.00057388508851509044) +zone = ('flz051', 0.0048811859195115742) + +[33611] +centroid = (0.48679580305965786, -1.4399955057974472) +station = ('kmcf', 0.00072688049220233158) +zone = ('flz051', 0.0035504075988833936) + +[33612] +centroid = (0.48957928905732345, -1.4390165157134187) +station = ('kvdf', 0.0017312560745195152) +zone = ('flz049', 0.0045997220939734632) + +[33613] +centroid = (0.49015779589118946, -1.4390373723979799) +station = ('kvdf', 0.0020338434814989978) +zone = ('flz049', 0.0040380299666850942) + +[33614] +centroid = (0.48877463991227649, -1.4400028885401834) +station = ('ktpa', 0.00078582759590497902) +zone = ('flz050', 0.0035842082253249538) + +[33615] +centroid = (0.4887812547101415, -1.4412978530319931) +station = ('ktpa', 0.00098673898089256078) +zone = ('flz050', 0.0025617267019898814) + +[33616] +centroid = (0.48633836971600264, -1.4405143747307727) +station = ('kmcf', 0.00060668806144397315) +zone = ('flz050', 0.0030808627777518791) + +[33617] +centroid = (0.48934644468181487, -1.4380041723873844) +station = ('kvdf', 0.00082358063791549156) +zone = ('flz049', 0.0047440526684408213) + +[33618] +centroid = (0.48999781901195166, -1.4398687948937527) +station = ('ktpa', 0.0019626274932509494) +zone = ('flz050', 0.0042895343954836617) + +[33619] +centroid = (0.48756421916943338, -1.4377793739797278) +station = ('ktpf', 0.0011405253602909712) +zone = ('flz051', 0.0037844101306800208) + +[33620] +centroid = (0.48977429469464878, -1.4383821234369036) +station = ('kvdf', 0.0013419077193112597) +zone = ('flz049', 0.0043294778879805094) + +[33621] +centroid = (0.48592860131421939, -1.4397792245965402) +station = ('kmcf', 0.00017881614861491062) +zone = ('flz051', 0.0027292318101892394) + +[33624] +centroid = (0.49009290454960036, -1.4403896535024254) +station = ('ktpa', 0.0019840380251966642) +zone = ('flz050', 0.0039923308986564484) + +[33625] +centroid = (0.48985939694897601, -1.4409650885568077) +station = ('ktpa', 0.0018009819314096032) +zone = ('flz050', 0.0034614045732213219) + +[33626] +centroid = (0.48986234655541189, -1.441997101743512) +station = ('ktpa', 0.0022060792580814734) +zone = ('flz050', 0.0028832471409164155) + +[33629] +centroid = (0.48732273541412746, -1.4400544630195797) +station = ('ktpa', 0.00087218132628931488) +zone = ('flz050', 0.0032846038131119663) + +[33634] +centroid = (0.48886358189095813, -1.4407305512119248) +station = ('ktpa', 0.00078538890493995938) +zone = ('flz050', 0.0030378104281017461) + +[33635] +centroid = (0.48916897960347211, -1.4419805909287879) +station = ('ktpa', 0.0016970140626323756) +zone = ('flz050', 0.0023414909572199018) + +[33637] +centroid = (0.48948341812151142, -1.4374725974571045) +station = ('kvdf', 0.00060059989185266198) +zone = ('flz049', 0.0046302710633970619) + +[33647] +centroid = (0.49090802567015923, -1.4373500753436146) +station = ('kvdf', 0.0019780922667264589) +zone = ('flz049', 0.0032332287092774344) + +[33701] +centroid = (0.48469177373979366, -1.4422145348617255) +station = ('kspg', 7.2477086688248936e-05) +zone = ('flz050', 0.0030736596877728771) + +[33702] +centroid = (0.48601508237865576, -1.4421426971097135) +station = ('kspg', 0.0013971668536114524) +zone = ('flz050', 0.002024890947688842) + +[33703] +centroid = (0.48549921541164376, -1.4419866646745849) +station = ('kspg', 0.00090412101083962068) +zone = ('flz050', 0.0025007109938036602) + +[33704] +centroid = (0.48516938308960189, -1.4421667128402209) +station = ('kspg', 0.0005519381703832549) +zone = ('flz050', 0.0026771502605217692) + +[33705] +centroid = (0.48405818431473463, -1.4423994874025594) +station = ('kspg', 0.00058271210626838286) +zone = ('flz050', 0.0035930316079822193) + +[33706] +centroid = (0.48415728410966291, -1.4442796433392702) +station = ('kspg', 0.0018772509637351724) +zone = ('flz050', 0.0033143479704702103) + +[33707] +centroid = (0.48442587282825228, -1.4438324376250316) +station = ('kspg', 0.0014366760281333674) +zone = ('flz050', 0.003015429945716882) + +[33708] +centroid = (0.48550797696448877, -1.4451524126850226) +station = ('kpie', 0.002509126796059807) +zone = ('flz050', 0.0022869568551614305) + +[33709] +centroid = (0.48549551531362956, -1.4439391819620837) +station = ('kspg', 0.0017521284806928719) +zone = ('flz050', 0.001951047360760301) + +[33710] +centroid = (0.48503867538192003, -1.4439237008916184) +station = ('kspg', 0.0015613001697196995) +zone = ('flz050', 0.0024059786218167179) + +[33711] +centroid = (0.48413227354148181, -1.4431816392535479) +station = ('kspg', 0.00097788021176822794) +zone = ('flz050', 0.0033491100730905533) + +[33712] +centroid = (0.48405615973280236, -1.4428269359896653) +station = ('kspg', 0.00077627560270680514) +zone = ('flz050', 0.0034857600210819986) + +[33713] +centroid = (0.48501279214911297, -1.442994731943952) +station = ('kspg', 0.0007872730653141817) +zone = ('flz050', 0.0025227728346328368) + +[33714] +centroid = (0.48546762495218265, -1.4429982226024558) +station = ('kspg', 0.0010900981640132165) +zone = ('flz050', 0.0020876445950073802) + +[33715] +centroid = (0.48280484592558504, -1.4437783149649273) +station = ('kspg', 0.0022776954974360942) +zone = ('flz050', 0.0046359500898152765) + +[33716] +centroid = (0.48651157619097057, -1.442490349243418) +station = ('kpie', 0.00090234544332958879) +zone = ('flz050', 0.0014633508344830642) + +[33744] +centroid = (0.48531258735472804, -1.444675134947772) +station = ('kpie', 0.0023778763088580747) +zone = ('flz050', 0.0022738062548214454) + +[33755] +centroid = (0.48834162372485673, -1.4447923861669212) +station = ('kpie', 0.0018609371913922681) +zone = ('flz050', 0.001275874531461783) + +[33756] +centroid = (0.4877389964407281, -1.4450255796082803) +station = ('kpie', 0.0017766261451023729) +zone = ('flz050', 0.0011490557688106811) + +[33759] +centroid = (0.48826081498048934, -1.4434131571788251) +station = ('kpie', 0.0010606416148165425) +zone = ('flz050', 0.00087837004524518754) + +[33760] +centroid = (0.48707903509067146, -1.4436349536201685) +station = ('kpie', 0.00050166738470755999) +zone = ('flz050', 0.00038079446832653814) + +[33761] +centroid = (0.48926921386241412, -1.4438126979511916) +station = ('kpie', 0.00212768127849441) +zone = ('flz050', 0.0018288219583706324) + +[33762] +centroid = (0.48693270668618427, -1.4430296036224068) +station = ('kpie', 0.00031070205546199567) +zone = ('flz050', 0.00082803352208971992) + +[33763] +centroid = (0.48874268293367246, -1.4441450784539416) +station = ('kpie', 0.001767145051058248) +zone = ('flz050', 0.0013434861751664409) + +[33764] +centroid = (0.48754847629958042, -1.4440861561383942) +station = ('kpie', 0.00092806594022934615) +zone = ('flz050', 0.00029976286276836616) + +[33765] +centroid = (0.48825346714433843, -1.4441760231415794) +station = ('kpie', 0.0013932974138955881) +zone = ('flz050', 0.00088847390418087598) + +[33767] +centroid = (0.48826587643532016, -1.4455736304466986) +station = ('kpie', 0.0024178377048394172) +zone = ('flz050', 0.0017945685737517706) + +[33770] +centroid = (0.48721168011382304, -1.4452036206452761) +station = ('kpie', 0.0018621947275669379) +zone = ('flz050', 0.0012877010955778484) + +[33771] +centroid = (0.48706592766798895, -1.444413265746803) +station = ('kpie', 0.0011762882897011215) +zone = ('flz050', 0.00068124018024397215) + +[33772] +centroid = (0.48597310721014525, -1.445077712593037) +station = ('kpie', 0.0021602024319762052) +zone = ('flz050', 0.0018684440054704409) + +[33773] +centroid = (0.48663783330905985, -1.4443632795170258) +station = ('kpie', 0.0012702221309577953) +zone = ('flz050', 0.00095920255932467732) + +[33774] +centroid = (0.4866644495801527, -1.4456191660868833) +station = ('kpie', 0.0023020553391905627) +zone = ('flz050', 0.0018095581772236541) + +[33776] +centroid = (0.48607866472330591, -1.4455831599444147) +station = ('kpie', 0.0024849309820805482) +zone = ('flz050', 0.0021035609686582625) + +[33777] +centroid = (0.48613584170960122, -1.4444231268570766) +station = ('kpie', 0.0016091504798929381) +zone = ('flz050', 0.0014270979844420971) + +[33778] +centroid = (0.48673967327091366, -1.4451078718825114) +station = ('kpie', 0.0018460875207409896) +zone = ('flz050', 0.0013748982702233802) + +[33781] +centroid = (0.48587107526207368, -1.4436490209739397) +station = ('kpie', 0.0014513500828683826) +zone = ('flz050', 0.0015733234522225656) + +[33782] +centroid = (0.48624228934068037, -1.4435294484668855) +station = ('kpie', 0.0010665084920312953) +zone = ('flz050', 0.0012171367500028096) + +[33785] +centroid = (0.48681507149459985, -1.4460019342451382) +station = ('kpie', 0.0026022567996795221) +zone = ('flz050', 0.0020695984742682004) + +[33786] +centroid = (0.4874197757205383, -1.4457146006903823) +station = ('kpie', 0.002320554920848063) +zone = ('flz050', 0.0017186849994551177) + +[33801] +centroid = (0.48931890338621836, -1.4294188803435319) +station = ('klal', 0.0020229004383239446) +zone = ('flz052', 0.0034619282025051342) + +[33803] +centroid = (0.4888555184698139, -1.4299947168236422) +station = ('klal', 0.00137195533227238) +zone = ('flz052', 0.0037706572068805077) + +[33805] +centroid = (0.49044973711517054, -1.429570113123217) +station = ('kgif', 0.0025093982614536299) +zone = ('flz052', 0.0041881559334985925) + +[33809] +centroid = (0.4925798416540596, -1.4306318492670829) +station = ('klal', 0.0042420475060001009) +zone = ('flz052', 0.0063485229859998769) + +[33810] +centroid = (0.49099253451254077, -1.4316992926376026) +station = ('klal', 0.0025997598603070362) +zone = ('flz052', 0.006035682951152142) + +[33811] +centroid = (0.48842599294089811, -1.4314264802222234) +station = ('klal', 3.9142724090483305e-05) +zone = ('flz052', 0.0049248816012417446) + +[33812] +centroid = (0.48819070510443674, -1.4293025192423012) +station = ('kbow', 0.001730915041916341) +zone = ('flz052', 0.0030344583896226435) + +[33813] +centroid = (0.48808362915482689, -1.430114446410329) +station = ('klal', 0.0012308121478675296) +zone = ('flz052', 0.0037372563361704977) + +[33815] +centroid = (0.48941227850120006, -1.4311279242003772) +station = ('klal', 0.001052841909234262) +zone = ('flz052', 0.0048932079613096631) + +[33823] +centroid = (0.49018903728480018, -1.4279187873047352) +station = ('kgif', 0.0010363105634391731) +zone = ('flz052', 0.0029826183706544236) + +[33825] +centroid = (0.48206433763054884, -1.4217247185091624) +station = ('kbow', 0.0076308075013826575) +zone = ('flz057', 0.0051654700984751206) + +[33827] +centroid = (0.48547888232585806, -1.4225942589957985) +station = ('kbow', 0.0048410580127200304) +zone = ('flz052', 0.0037288515305686143) + +[33830] +centroid = (0.48647597147422988, -1.4278792032373) +station = ('kbow', 0.0014118113642467805) +zone = ('flz052', 0.0021969160651643016) + +[33834] +centroid = (0.48207172037328477, -1.4311947354041434) +station = ('klal', 0.0063339584050496429) +zone = ('flz056', 0.0037108895009477457) + +[33837] +centroid = (0.49204317036236384, -1.4239996504693819) +station = ('kism', 0.0028926661230872491) +zone = ('flz052', 0.0045607459269663619) + +[33838] +centroid = (0.48903151747158502, -1.4244338534806931) +station = ('kgif', 0.0022505873719901766) +zone = ('flz052', 0.0017838407352265115) + +[33839] +centroid = (0.48828662840012632, -1.4268154425115018) +station = ('kbow', 0.00068870923032818797) +zone = ('flz052', 0.00094687156386278368) + +[33841] +centroid = (0.48417433597645487, -1.4268869835575413) +station = ('kbow', 0.0036720575173079784) +zone = ('flz052', 0.0037304461684799671) + +[33843] +centroid = (0.48386083993621165, -1.4229985121571453) +station = ('kbow', 0.0055444204124372939) +zone = ('flz052', 0.004699220116607416) + +[33844] +centroid = (0.49024213020064583, -1.4240149919135068) +station = ('kgif', 0.0024932409291441903) +zone = ('flz052', 0.0029527321124338808) + +[33847] +centroid = (0.48524959842202353, -1.4280639812452087) +station = ('kbow', 0.0026383926438142231) +zone = ('flz052', 0.0031906442438894606) + +[33848] +centroid = (0.49365177052075693, -1.4225318285684547) +station = ('kism', 0.0010472645656478385) +zone = ('flz045', 0.0048937473153350978) + +[33849] +centroid = (0.49263785639839586, -1.4323723090504641) +station = ('kpcm', 0.0041385265710482833) +zone = ('flz049', 0.0051631052271266988) + +[33850] +centroid = (0.49082803723054036, -1.4265027144161295) +station = ('kgif', 0.0010085890441297134) +zone = ('flz052', 0.0030747658593963051) + +[33851] +centroid = (0.48947123572333245, -1.4246056811455519) +station = ('kgif', 0.0019800403041346838) +zone = ('flz052', 0.0020221717714739799) + +[33852] +centroid = (0.47541611671031464, -1.4202435797460427) +station = ('kobe', 0.0081351052745582339) +zone = ('flz057', 0.0018872527602298201) + +[33853] +centroid = (0.48695920078422955, -1.4239172709286878) +station = ('kbow', 0.0031853614436696087) +zone = ('flz052', 0.0019398264281243693) + +[33854] +centroid = (0.48618659588424917, -1.4208743940975908) +station = ('kgif', 0.0063966831681191317) +zone = ('flz052', 0.0047217765332970485) + +[33855] +centroid = (0.4851207582166413, -1.4198735175847421) +station = ('kbow', 0.0071703630062329386) +zone = ('flz053', 0.0056208075380192769) + +[33856] +centroid = (0.48618509490109252, -1.4211932482986376) +station = ('kgif', 0.006168999579742031) +zone = ('flz052', 0.00445854418504678) + +[33857] +centroid = (0.47710660771721131, -1.4170230807569699) +station = ('kobe', 0.0053940918030786862) +zone = ('flz057', 0.0023515289299295373) + +[33859] +centroid = (0.4864702991541609, -1.424649454003192) +station = ('kbow', 0.0027710269648092067) +zone = ('flz052', 0.0017267308834304799) + +[33860] +centroid = (0.4846303032435384, -1.4316619251383174) +station = ('klal', 0.0037751846650437722) +zone = ('flz051', 0.0055649174619939222) + +[33865] +centroid = (0.47880990944081758, -1.4305287003082898) +station = ('kpgd', 0.0090434647674674188) +zone = ('flz056', 0.0025879805297438978) + +[33867] +centroid = (0.484815046344862, -1.417133385565696) +station = ('kism', 0.0096772295331446229) +zone = ('flz053', 0.0050223963869403185) + +[33868] +centroid = (0.49307965159195322, -1.4281649136358514) +station = ('kgif', 0.0034391222992234149) +zone = ('flz144', 0.0054559243903703992) + +[33870] +centroid = (0.48007900815311277, -1.4208366251725777) +station = ('kobe', 0.0095987017068374127) +zone = ('flz057', 0.0030301987948133441) + +[33872] +centroid = (0.48005719153746285, -1.4232453715265474) +station = ('kbow', 0.0085850407191785123) +zone = ('flz057', 0.0042509793883526922) + +[33873] +centroid = (0.48120425682845852, -1.4273514680313746) +station = ('kbow', 0.0066153500044409102) +zone = ('flz056', 0.0014364473289943196) + +[33875] +centroid = (0.47808612140001555, -1.4226275773312189) +station = ('kobe', 0.010465749052862428) +zone = ('flz057', 0.0027647583399119254) + +[33876] +centroid = (0.47841448764548578, -1.4198242643932508) +station = ('kobe', 0.0081425589638799856) +zone = ('flz057', 0.0011903990766672684) + +[33877] +centroid = (0.48851388772202853, -1.4244198908466772) +station = ('kgif', 0.0024978715014064919) +zone = ('flz052', 0.001485893186260285) + +[33880] +centroid = (0.48832663134658205, -1.4273293198031665) +station = ('kbow', 0.00050978675020419057) +zone = ('flz052', 0.0013713367625748484) + +[33881] +centroid = (0.48967737656128546, -1.4261372250174695) +station = ('kgif', 0.00061708166020409897) +zone = ('flz052', 0.0018891336362729129) + +[33884] +centroid = (0.48831659570338309, -1.4254531083105653) +station = ('kbow', 0.0017801686304995223) +zone = ('flz052', 0.00064751920883734915) + +[33890] +centroid = (0.47879585954033904, -1.4259341734122926) +station = ('kbow', 0.0091150810434139345) +zone = ('flz056', 0.001995618693597186) + +[33896] +centroid = (0.49317602867324828, -1.4238893456606558) +station = ('kism', 0.0023105735091569022) +zone = ('flz052', 0.00565951194409774) + +[33897] +centroid = (0.49366414490515353, -1.4257396739204502) +station = ('kgif', 0.0039228259342316074) +zone = ('flz144', 0.0051835887632556352) + +[33898] +centroid = (0.48592155018404132, -1.4202340851549116) +station = ('kgif', 0.0070131413642367923) +zone = ('flz053', 0.0051822407575838744) + +[33901] +centroid = (0.46462539171705697, -1.4290431109555775) +station = ('kfmy', 0.00068259582748816233) +zone = ('flz065', 0.0011631226464943445) + +[33903] +centroid = (0.46565328592672645, -1.4295403727127634) +station = ('kfmy', 0.0017981488087910609) +zone = ('flz065', 0.0022202464956459318) + +[33904] +centroid = (0.46383891144952322, -1.4301994613981939) +station = ('kfmy', 0.0012199182865609856) +zone = ('flz065', 0.0019296562132428766) + +[33905] +centroid = (0.46544217090040524, -1.4269973756327297) +station = ('kfmy', 0.0022133379022255652) +zone = ('flz065', 0.0018181826382418439) + +[33907] +centroid = (0.46362276987495632, -1.4289235035419383) +station = ('kfmy', 0.000351400381241542) +zone = ('flz065', 0.00082972579831722723) + +[33908] +centroid = (0.46278860721225812, -1.4308116530866233) +station = ('kfmy', 0.0021188611891889619) +zone = ('flz065', 0.0027080170019835722) + +[33909] +centroid = (0.46588424534664286, -1.4302122546616109) +station = ('kfmy', 0.0022749143882021369) +zone = ('flz065', 0.0027874269067517509) + +[33912] +centroid = (0.46310601279002583, -1.4281363076894114) +station = ('krsw', 0.00092942309331046869) +zone = ('flz065', 0.00078085790926369378) + +[33913] +centroid = (0.46276076921068882, -1.4258780785301335) +station = ('krsw', 0.0011408811264170874) +zone = ('flz065', 0.0022375009752398757) + +[33914] +centroid = (0.46346157126524207, -1.431535528393888) +station = ('kfmy', 0.0024606993183517835) +zone = ('flz065', 0.0031525547885928162) + +[33916] +centroid = (0.464904644397376, -1.4283453806805075) +station = ('kfmy', 0.0010380762144293291) +zone = ('flz065', 0.0010576010799253927) + +[33917] +centroid = (0.46667672954680339, -1.4284609389302823) +station = ('kfmy', 0.0027314477994964041) +zone = ('flz065', 0.002819322484723579) + +[33919] +centroid = (0.46350056192073169, -1.4294437687386652) +station = ('kfmy', 0.00071141130858793061) +zone = ('flz065', 0.0013102849508594022) + +[33920] +centroid = (0.46674114964949459, -1.4248178608227169) +station = ('krsw', 0.0041777737881805209) +zone = ('flz065', 0.0040591683373227107) + +[33921] +centroid = (0.46726347433473886, -1.435582248797562) +station = ('kpgd', 0.0046747787902953562) +zone = ('flz062', 0.0060698949524921322) + +[33922] +centroid = (0.46492351140659011, -1.4340063735626438) +station = ('kfmy', 0.0047146361400713377) +zone = ('flz065', 0.0054330580544126586) + +[33924] +centroid = (0.46456397358067925, -1.4348230480262369) +station = ('kfmy', 0.005380424050503714) +zone = ('flz065', 0.0061012819905532679) + +[33928] +centroid = (0.46074711303949289, -1.4260157675548231) +station = ('krsw', 0.0025388639824834194) +zone = ('flz065', 0.003622104211155476) + +[33930] +centroid = (0.46373080575565478, -1.4208311622920189) +station = ('krsw', 0.0056415387452258582) +zone = ('flz066', 0.0037025810455852998) + +[33931] +centroid = (0.46134504538793358, -1.4294769299944532) +station = ('kfmy', 0.0026823437886336799) +zone = ('flz065', 0.0028435786864047493) + +[33935] +centroid = (0.46705583251362914, -1.4212714914090046) +station = ('krsw', 0.006543042047995897) +zone = ('flz063', 0.0046098609599892612) + +[33936] +centroid = (0.46466611024850596, -1.4242148321128605) +station = ('krsw', 0.0030195944799101993) +zone = ('flz065', 0.0035109695336419163) + +[33944] +centroid = (0.47114191009193568, -1.4187963352769963) +station = ('kobe', 0.008329892160583191) +zone = ('flz063', 0.00099432728168847369) + +[33945] +centroid = (0.46429674621890638, -1.4350192230341612) +station = ('kfmy', 0.0055328019187240972) +zone = ('flz065', 0.0062526650919871706) + +[33946] +centroid = (0.46857768980819808, -1.4360808020983942) +station = ('kvnc', 0.0044416550843522145) +zone = ('flz060', 0.0058473339975213829) + +[33947] +centroid = (0.46912860298659015, -1.4359105626831545) +station = ('kvnc', 0.0040533333697721757) +zone = ('flz060', 0.0053201125824030209) + +[33948] +centroid = (0.47099261462772007, -1.4338292226435663) +station = ('kpgd', 0.002660553567017299) +zone = ('flz060', 0.0042999331878202773) + +[33950] +centroid = (0.46954573667781679, -1.4319770966946426) +station = ('kpgd', 0.00075827347267837025) +zone = ('flz062', 0.0023798132209057613) + +[33952] +centroid = (0.47099689068438744, -1.4328636890480706) +station = ('kpgd', 0.0019363224598948621) +zone = ('flz062', 0.0034576893346479893) + +[33953] +centroid = (0.471233696957298, -1.4348748843050212) +station = ('kvnc', 0.0034545511143460801) +zone = ('flz060', 0.0035874678261673437) + +[33954] +centroid = (0.47167041324273207, -1.4333063918128388) +station = ('kpgd', 0.0026799669574863422) +zone = ('flz062', 0.0041141835893622096) + +[33955] +centroid = (0.46802993567575224, -1.4310658079322989) +station = ('kpgd', 0.0017569808684423057) +zone = ('flz062', 0.0022268128530924915) + +[33956] +centroid = (0.46332060102155848, -1.4336772742788877) +station = ('kfmy', 0.0043720232427692483) +zone = ('flz065', 0.0050713450289178331) + +[33957] +centroid = (0.46188253698437781, -1.432793683891773) +station = ('kfmy', 0.0041036316354238654) +zone = ('flz065', 0.0046981991897272288) + +[33960] +centroid = (0.47200857078530595, -1.4207462869304943) +station = ('kobe', 0.0094142973419670574) +zone = ('flz063', 0.0029255976018405178) + +[33965] +centroid = (0.4618729900333694, -1.4272084208458811) +station = ('krsw', 0.0012250629374684118) +zone = ('flz065', 0.0021434213409259927) + +[33966] +centroid = (0.46411160169185489, -1.4282155979973292) +station = ('kfmy', 0.00057936381366300996) +zone = ('flz065', 0.00027670340741509065) + +[33967] +centroid = (0.46201495511472657, -1.4278929564318057) +station = ('krsw', 0.001292705057605514) +zone = ('flz065', 0.0018721584693232221) + +[33971] +centroid = (0.46494845216160108, -1.4259287454383187) +station = ('krsw', 0.0021287004742124162) +zone = ('flz065', 0.0021697328510224411) + +[33972] +centroid = (0.4651176792858745, -1.4244727917763051) +station = ('krsw', 0.0030990522926189574) +zone = ('flz065', 0.0034221061593226226) + +[33973] +centroid = (0.46430288977787343, -1.4264210504604289) +station = ('krsw', 0.0013518323796065923) +zone = ('flz065', 0.0015095816565989587) + +[33974] +centroid = (0.46360667793925286, -1.4242222672154736) +station = ('krsw', 0.0026227052653899005) +zone = ('flz065', 0.0034277279777733846) + +[33976] +centroid = (0.46410533595984022, -1.4256919217121158) +station = ('krsw', 0.0016135226740402505) +zone = ('flz065', 0.0021137250714304105) + +[33980] +centroid = (0.4708768294851427, -1.4319953179320333) +station = ('kpgd', 0.0013170250468889058) +zone = ('flz062', 0.0027077554884686063) + +[33981] +centroid = (0.46981144560314042, -1.4350030089254102) +station = ('kpgd', 0.0034178579214882085) +zone = ('flz060', 0.0048476602845262196) + +[33982] +centroid = (0.4696774217698797, -1.4271067903235373) +station = ('kpgd', 0.0036246921428737932) +zone = ('flz062', 0.0019652704269324298) + +[33983] +centroid = (0.47139801970637329, -1.4314818944259742) +station = ('kpgd', 0.0016373364208900495) +zone = ('flz062', 0.0026341035022244383) + +[33990] +centroid = (0.46474609868812489, -1.4302061111026438) +station = ('kfmy', 0.0014467674746123755) +zone = ('flz065', 0.0021187390989467255) + +[33991] +centroid = (0.4646948383679938, -1.4315910124108089) +station = ('kfmy', 0.0025627809623747109) +zone = ('flz065', 0.0032753723536844553) + +[33993] +centroid = (0.4658789395457168, -1.4317645330450421) +station = ('kfmy', 0.0032367896288905411) +zone = ('flz065', 0.0038802601084547404) + +[34101] +centroid = (0.45434650198023907, -1.4270129788762427) +station = ('kapf', 0.0020584991787351175) +zone = ('flz069', 0.0025290488420179158) + +[34102] +centroid = (0.45618539833343286, -1.4276637074345562) +station = ('kapf', 0.000553093664711226) +zone = ('flz069', 0.003761375520461966) + +[34103] +centroid = (0.45716999092436039, -1.4277927047195711) +station = ('kapf', 0.00098822299675794395) +zone = ('flz069', 0.0044780640752079652) + +[34104] +centroid = (0.45640281399835375, -1.4266593926230811) +station = ('kapf', 0.00039331143798671463) +zone = ('flz069', 0.0032178924174517294) + +[34105] +centroid = (0.45710279574815865, -1.4270668222836667) +station = ('kapf', 0.00069974006447797994) +zone = ('flz069', 0.0039847915128913263) + +[34108] +centroid = (0.45808449109252786, -1.427824591885005) +station = ('kapf', 0.0018030422737798548) +zone = ('flz069', 0.005174988633030485) + +[34109] +centroid = (0.45798909139561389, -1.4270479203678677) +station = ('kapf', 0.001586117317885286) +zone = ('flz069', 0.0046894223953004082) + +[34110] +centroid = (0.45902822552566624, -1.4274779345889739) +station = ('kapf', 0.0026467146895587396) +zone = ('flz065', 0.0048803479228189785) + +[34112] +centroid = (0.45586795784908007, -1.4266591657302785) +station = ('kapf', 0.00066468491769365134) +zone = ('flz069', 0.0028498523954532781) + +[34113] +centroid = (0.45454742428372868, -1.4264999044360338) +station = ('kapf', 0.0019322143895636123) +zone = ('flz069', 0.0021102393155353664) + +[34114] +centroid = (0.45280553333036078, -1.4231101608693957) +station = ('kapf', 0.0050773730354084345) +zone = ('flz069', 0.0015920609395562121) + +[34116] +centroid = (0.45708940907279583, -1.4261225467984602) +station = ('kapf', 0.001111783939970343) +zone = ('flz069', 0.0034896820170644241) + +[34117] +centroid = (0.4569430632150161, -1.4242813989705312) +station = ('kapf', 0.0025844939685738628) +zone = ('flz069', 0.0028962119976615377) + +[34119] +centroid = (0.45846151711754368, -1.4261792699991502) +station = ('kapf', 0.0022167072312754906) +zone = ('flz069', 0.004752177402107623) + +[34120] +centroid = (0.45947714166257175, -1.423666694007979) +station = ('kapf', 0.004349343257183929) +zone = ('flz070', 0.0054403265949669851) + +[34134] +centroid = (0.4599471762834263, -1.4280990798164661) +station = ('krsw', 0.0032721287724073304) +zone = ('flz065', 0.0039354865632823003) + +[34135] +centroid = (0.4600047546954496, -1.4268857269204798) +station = ('krsw', 0.0030950899346173723) +zone = ('flz065', 0.0040134378950961568) + +[34137] +centroid = (0.45278626489541873, -1.4204045863695391) +station = ('kapf', 0.0070173955555015754) +zone = ('flz069', 0.0036529939477305262) + +[34138] +centroid = (0.45058313578062631, -1.4201494366861898) +station = ('kapf', 0.008537433679397079) +zone = ('flz069', 0.0050393174957978079) + +[34139] +centroid = (0.45083393959413792, -1.4207568636257615) +station = ('kapf', 0.0079689723523445975) +zone = ('flz069', 0.0044741827337447249) + +[34140] +centroid = (0.45247999451827881, -1.42528677843285) +station = ('kapf', 0.0042475603630127076) +zone = ('flz069', 0.0018383230678036084) + +[34141] +centroid = (0.45285901021864189, -1.4153936413673081) +station = ('ktmb', 0.01163227301305967) +zone = ('flz070', 0.0045451566237950025) + +[34142] +centroid = (0.45976379453891925, -1.4191915999926954) +station = ('krsw', 0.0078233202050168073) +zone = ('flz070', 0.0035842976427761862) + +[34145] +centroid = (0.45211171259281546, -1.4255125193183031) +station = ('kapf', 0.0045220446222631397) +zone = ('flz069', 0.0022585107142781427) + +[34201] +centroid = (0.47824978092397508, -1.4393470461671616) +station = ('ksrq', 0.0012630330310396938) +zone = ('flz055', 0.0029100558498552568) + +[34202] +centroid = (0.47832959483066878, -1.4379544479569952) +station = ('ksrq', 0.0025013883280389274) +zone = ('flz055', 0.0018088049448541986) + +[34203] +centroid = (0.478885080771701, -1.4400285448801877) +station = ('ksrq', 0.00093509514183172751) +zone = ('flz055', 0.0032999439823978719) + +[34205] +centroid = (0.47968775769469318, -1.4413246787425962) +station = ('ksrq', 0.0015481021408189236) +zone = ('flz055', 0.0044035490257443351) + +[34207] +centroid = (0.47889525604124011, -1.4412872065235558) +station = ('ksrq', 0.00081671864418248331) +zone = ('flz055', 0.0044025209407713142) + +[34208] +centroid = (0.47974715124913858, -1.440174541672117) +station = ('ksrq', 0.0016155904588548075) +zone = ('flz055', 0.0033892456676381331) + +[34209] +centroid = (0.47996779577317572, -1.4425388170367461) +station = ('ksrq', 0.0023494386401343606) +zone = ('flz051', 0.0056223932156442688) + +[34210] +centroid = (0.47891024841951479, -1.4419928082335522) +station = ('ksrq', 0.0012867270143585294) +zone = ('flz055', 0.0050223503934188861) + +[34211] +centroid = (0.47886455569969755, -1.4379656180642078) +station = ('ksrq', 0.0025707917627409123) +zone = ('flz055', 0.0015398109372793411) + +[34212] +centroid = (0.47995217507637039, -1.4382990981243864) +station = ('ksrq', 0.0027937370550117488) +zone = ('flz055', 0.0017815188398492183) + +[34215] +centroid = (0.47946185972960759, -1.4431416188537998) +station = ('ksrq', 0.0024443469822009538) +zone = ('flz051', 0.006358518831168003) + +[34216] +centroid = (0.48060733677098394, -1.4439571763066719) +station = ('ksrq', 0.0037011788095135676) +zone = ('flz051', 0.0062529564399610013) + +[34217] +centroid = (0.47982747130131537, -1.4434754130732437) +station = ('ksrq', 0.0028897427817995702) +zone = ('flz051', 0.0063443022780225239) + +[34219] +centroid = (0.48129860932782137, -1.436389114510759) +station = ('ksrq', 0.0049573223654184699) +zone = ('flz055', 0.0018340739780681409) + +[34221] +centroid = (0.48138090160205294, -1.4408531256852926) +station = ('ksrq', 0.0031615612173945106) +zone = ('flz051', 0.0035656836854076829) + +[34222] +centroid = (0.48059005801138927, -1.4400110043212051) +station = ('ksrq', 0.0024634993654976062) +zone = ('flz055', 0.0034220124956399521) + +[34223] +centroid = (0.47093636266592825, -1.4373519428459143) +station = ('kvnc', 0.0018357416854548211) +zone = ('flz060', 0.0034908733178184012) + +[34224] +centroid = (0.46980079909470318, -1.4364747403638618) +station = ('kvnc', 0.0032144248437373109) +zone = ('flz060', 0.0045986453901173171) + +[34228] +centroid = (0.47825943259473858, -1.4423185739384368) +station = ('ksrq', 0.0013760164078361601) +zone = ('flz055', 0.0054173868227573082) + +[34229] +centroid = (0.47460954770309055, -1.4396428794753744) +station = ('kvnc', 0.0023773336254057733) +zone = ('flz060', 0.0025486869258207674) + +[34231] +centroid = (0.47588194508767195, -1.4401872476690714) +station = ('ksrq', 0.002394757407066453) +zone = ('flz060', 0.0033702730986745794) + +[34232] +centroid = (0.47690851284710994, -1.4394059684827085) +station = ('ksrq', 0.0017851018192388392) +zone = ('flz060', 0.003428386318163805) + +[34233] +centroid = (0.47612636099612121, -1.4394887669024232) +station = ('ksrq', 0.002382878497256458) +zone = ('flz060', 0.0029627215512358297) + +[34234] +centroid = (0.47771162610241513, -1.4406433196559101) +station = ('ksrq', 0.00052074497990716449) +zone = ('flz055', 0.00418063126400957) + +[34235] +centroid = (0.4776920609615003, -1.4394857474828173) +station = ('ksrq', 0.0012561404241926868) +zone = ('flz055', 0.003286788983798669) + +[34236] +centroid = (0.47676263822822823, -1.440830855284037) +station = ('ksrq', 0.0014586018198674531) +zone = ('flz060', 0.0043060332161588251) + +[34237] +centroid = (0.4771554245763896, -1.4401173297792367) +station = ('ksrq', 0.001212024844361942) +zone = ('flz060', 0.0040497204439678405) + +[34238] +centroid = (0.47535424478833144, -1.4393823890845141) +station = ('kvnc', 0.0029981572917187954) +zone = ('flz060', 0.0025001642215910966) + +[34239] +centroid = (0.4766650045098717, -1.4402660841913841) +station = ('ksrq', 0.0016181580671951949) +zone = ('flz060', 0.0038382049172997817) + +[34240] +centroid = (0.47760334587562142, -1.4367284937838092) +station = ('ksrq', 0.0036407012630963482) +zone = ('flz055', 0.0018886600258331467) + +[34241] +centroid = (0.47561387996785814, -1.4377598961052753) +station = ('kvnc', 0.0032213416841131415) +zone = ('flz060', 0.0014974076557320206) + +[34242] +centroid = (0.47578062872459365, -1.4406105947324352) +station = ('ksrq', 0.002443656881055203) +zone = ('flz060', 0.0036721773442402908) + +[34243] +centroid = (0.47823789523176896, -1.4403833528638257) +station = ('ksrq', 0.00034310187053779052) +zone = ('flz055', 0.0037693097650698662) + +[34251] +centroid = (0.47783367697700713, -1.4341645178461671) +station = ('ksrq', 0.0058771350686529283) +zone = ('flz055', 0.0025463510331093461) + +[34266] +centroid = (0.47457371609354709, -1.428095484438207) +station = ('kpgd', 0.0055167111414429889) +zone = ('flz061', 0.00024065805993551205) + +[34268] +centroid = (0.47384371468060793, -1.42934309814741) +station = ('kpgd', 0.0043732878198069038) +zone = ('flz061', 0.0014841273403216507) + +[34269] +centroid = (0.47241938638464043, -1.4314001781103958) +station = ('kpgd', 0.002642900979952035) +zone = ('flz062', 0.003369118514471867) + +[34275] +centroid = (0.47388816821665619, -1.438543025340645) +station = ('kvnc', 0.0014280445549536887) +zone = ('flz060', 0.0016402069158311598) + +[34285] +centroid = (0.47287051908969591, -1.4388433790516211) +station = ('kvnc', 0.00051115576951471335) +zone = ('flz060', 0.0023783960429599555) + +[34286] +centroid = (0.47265036325784926, -1.4343335006243452) +station = ('kvnc', 0.0037150611398593597) +zone = ('flz060', 0.002793239504845055) + +[34287] +centroid = (0.47210489550672352, -1.4354525184742613) +station = ('kvnc', 0.0027374215309019425) +zone = ('flz060', 0.0025767307707572095) + +[34288] +centroid = (0.47218258011172975, -1.4330872482719585) +station = ('kpgd', 0.0029444888913691914) +zone = ('flz060', 0.0039658804010840112) + +[34289] +centroid = (0.47263275288569667, -1.4334843106767872) +station = ('kpgd', 0.0035164015944810973) +zone = ('flz060', 0.0034259421902406799) + +[34291] +centroid = (0.47288058963947988, -1.4353625816579059) +station = ('kvnc', 0.0028251351196502089) +zone = ('flz060', 0.0019725058059463364) + +[34292] +centroid = (0.47301815649112205, -1.4371307223632239) +station = ('kvnc', 0.0013408382409785865) +zone = ('flz060', 0.0014062369080020804) + +[34293] +centroid = (0.47176392798405392, -1.4370123715866461) +station = ('kvnc', 0.0014972019335371517) +zone = ('flz060', 0.0026346026675248273) + +[34420] +centroid = (0.50708298668606433, -1.4318490244341311) +station = ('kvvg', 0.0018772297366343078) +zone = ('flz040', 0.0027465056912072904) + +[34428] +centroid = (0.50539102960259596, -1.4424721454593197) +station = ('kcgc', 0.0019230031908751728) +zone = ('flz042', 0.0033186835026847452) + +[34429] +centroid = (0.50353804844233863, -1.4428163069345208) +station = ('kcgc', 0.001525098916640222) +zone = ('flz042', 0.0030571702964425247) + +[34431] +centroid = (0.50849673828676478, -1.4404454167720264) +station = ('kcgc', 0.0046575201082188567) +zone = ('flz039', 0.00453704573760418) + +[34432] +centroid = (0.50731591832803546, -1.4378767982585738) +station = ('kocf', 0.0030908358088221977) +zone = ('flz042', 0.0039833914850935133) + +[34433] +centroid = (0.50618424684104235, -1.4403310802527283) +station = ('kcgc', 0.0024083521204031409) +zone = ('flz042', 0.0027870381017726948) + +[34434] +centroid = (0.50607451799096947, -1.4388429427193079) +station = ('kcgc', 0.0029659364979107662) +zone = ('flz042', 0.0025698183343044819) + +[34436] +centroid = (0.50126868408243308, -1.4363707187404429) +station = ('kinf', 0.0014819929070188653) +zone = ('flz042', 0.0034446613823381341) + +[34442] +centroid = (0.50495598883324389, -1.4378677574530485) +station = ('kinf', 0.0024518660229953856) +zone = ('flz042', 0.0019067608949978217) + +[34445] +centroid = (0.50558680318479221, -1.4385133547433613) +station = ('kcgc', 0.0028502884522795739) +zone = ('flz042', 0.0021671528266030459) + +[34446] +centroid = (0.50173472189930046, -1.4402834327641487) +station = ('kcgc', 0.0022633337154735174) +zone = ('flz042', 0.0019904882876492541) + +[34448] +centroid = (0.50209815180944328, -1.442081017173948) +station = ('kcgc', 0.0019682694490142489) +zone = ('flz042', 0.0028117538485149906) + +[34449] +centroid = (0.50744959309544568, -1.4430286436913182) +station = ('kcgc', 0.0039445602849412769) +zone = ('flz039', 0.0044017856635206413) + +[34450] +centroid = (0.50318531740051053, -1.4358419537902587) +station = ('kinf', 0.00090351745855698617) +zone = ('flz042', 0.0030723329336168424) + +[34452] +centroid = (0.50293940050890462, -1.4371678978762914) +station = ('kinf', 0.00044727978825499245) +zone = ('flz042', 0.0019834950760524725) + +[34453] +centroid = (0.5039524245133471, -1.4370294409067308) +station = ('kinf', 0.0012631294016324877) +zone = ('flz042', 0.0020531129722072255) + +[34461] +centroid = (0.50380911552846586, -1.439800866679265) +station = ('kcgc', 0.001155745554592777) +zone = ('flz042', 0.0004955961938357034) + +[34465] +centroid = (0.50491486887606685, -1.439708189695984) +station = ('kcgc', 0.0016131440770763695) +zone = ('flz042', 0.0014153085562562107) + +[34470] +centroid = (0.50961706513361993, -1.4326958407339061) +station = ('kocf', 0.0020481860750233929) +zone = ('flz040', 0.00050716826616846846) + +[34471] +centroid = (0.50894780117865024, -1.4334523536981831) +station = ('kocf', 0.0013134612169135903) +zone = ('flz040', 0.0014226781566528395) + +[34472] +centroid = (0.50813861417754802, -1.4311343993719021) +station = ('kvvg', 0.0026188116781404921) +zone = ('flz040', 0.00190197459083744) + +[34473] +centroid = (0.50624487957925668, -1.4343805197943937) +station = ('kocf', 0.0028534562692799316) +zone = ('flz040', 0.0040634511909936706) + +[34474] +centroid = (0.50887624267931841, -1.4348262070721831) +station = ('kocf', 0.00020905732872561554) +zone = ('flz040', 0.0025091950033909031) + +[34475] +centroid = (0.51066429759140153, -1.4340840058077724) +station = ('kocf', 0.0017791059696407479) +zone = ('flz040', 0.0018800779115957116) + +[34476] +centroid = (0.50756979392103063, -1.4346053182020508) +station = ('kocf', 0.0015150653589007695) +zone = ('flz040', 0.0030985902508465168) + +[34479] +centroid = (0.51060870885472553, -1.4330743502887862) +station = ('kocf', 0.0022584330175904558) +zone = ('flz040', 0.0011239736627258452) + +[34480] +centroid = (0.50793271768569026, -1.4328557652532665) +station = ('kocf', 0.0021469099779254453) +zone = ('flz040', 0.0019784305820644736) + +[34481] +centroid = (0.50846328032500399, -1.4365738925186677) +station = ('kocf', 0.0015352360641469336) +zone = ('flz040', 0.004083423570224968) + +[34482] +centroid = (0.51041110267681478, -1.4359701307705253) +station = ('kocf', 0.0016221127487659292) +zone = ('flz040', 0.0033767636146505397) + +[34484] +centroid = (0.50518975823325596, -1.432870286392643) +station = ('kvvg', 0.0020315122694180171) +zone = ('flz043', 0.0042074756679500473) + +[34488] +centroid = (0.51012640456922942, -1.4300986860871836) +station = ('kvvg', 0.0045827040133164833) +zone = ('flz040', 0.0018267737760685855) + +[34491] +centroid = (0.50606914237687339, -1.4321324309980699) +station = ('kvvg', 0.0014423129964574921) +zone = ('flz040', 0.0037468532232271994) + +[34498] +centroid = (0.50669616936394479, -1.4440171283664778) +station = ('kcgc', 0.0037926463983449939) +zone = ('flz039', 0.0050624261357440185) + +[34601] +centroid = (0.49896596648052177, -1.4372978027325172) +station = ('kbkv', 0.0026138616367922165) +zone = ('flz048', 0.0012393965533652697) + +[34602] +centroid = (0.49746215589041842, -1.4360979412316488) +station = ('kbkv', 0.002646694718811867) +zone = ('flz048', 0.002298900048116078) + +[34604] +centroid = (0.49701639879945908, -1.4387585211433889) +station = ('kbkv', 0.00029429686816817368) +zone = ('flz048', 0.0013410014209479615) + +[34606] +centroid = (0.49686865667827773, -1.4415674016816709) +station = ('kbkv', 0.0022361224338825858) +zone = ('flz048', 0.0030586321434147986) + +[34607] +centroid = (0.49742798234366437, -1.4420832686486831) +station = ('kbkv', 0.0027531470418304823) +zone = ('flz048', 0.0032642202018659779) + +[34608] +centroid = (0.49711909397264642, -1.4408191092181708) +station = ('kbkv', 0.0016029838533473018) +zone = ('flz048', 0.002363573639455302) + +[34609] +centroid = (0.49706062544270457, -1.4400346186259847) +station = ('kbkv', 0.00091610145317828321) +zone = ('flz048', 0.0018488228727699778) + +[34610] +centroid = (0.49513687118127891, -1.4400957051498042) +station = ('kbkv', 0.0019439965578809011) +zone = ('flz049', 0.0021224171383844672) + +[34613] +centroid = (0.49865144069601991, -1.4411570573212344) +station = ('kbkv', 0.0026086085773794902) +zone = ('flz048', 0.002340344760593326) + +[34614] +centroid = (0.49997242804697684, -1.4405889177431255) +station = ('kbkv', 0.0034234431623846699) +zone = ('flz048', 0.0024445328740318839) + +[34637] +centroid = (0.4939635037784556, -1.4391235742097361) +station = ('kbkv', 0.0028748924978509722) +zone = ('flz049', 0.00099934245806361445) + +[34638] +centroid = (0.49317527818166995, -1.4401189529354408) +station = ('kbkv', 0.0037864328595142703) +zone = ('flz049', 0.0020801538153384634) + +[34639] +centroid = (0.4933248179919808, -1.4385569007081984) +station = ('kbkv', 0.0035362065308905894) +zone = ('flz049', 0.00091034407826347664) + +[34652] +centroid = (0.49283673666666061, -1.44404754945534) +station = ('kpie', 0.005661530595866624) +zone = ('flz050', 0.0054015198484366157) + +[34653] +centroid = (0.49295175386436701, -1.4431850950054672) +station = ('kbkv', 0.0053389945688320202) +zone = ('flz049', 0.0047081560322994971) + +[34654] +centroid = (0.49359438409495138, -1.442150202025497) +station = ('kbkv', 0.0042521885284260265) +zone = ('flz049', 0.0036898429882519846) + +[34655] +centroid = (0.49233790411314815, -1.4419435375887681) +station = ('ktpa', 0.0044206809518214686) +zone = ('flz049', 0.0038924230435433338) + +[34661] +centroid = (0.49924708666314049, -1.4354507731450092) +station = ('kinf', 0.0036461463817823027) +zone = ('flz048', 0.0028404351166343121) + +[34667] +centroid = (0.49552058181732989, -1.4427114126464757) +station = ('kbkv', 0.003499808288695388) +zone = ('flz048', 0.0046423985613590546) + +[34668] +centroid = (0.49394201877536353, -1.4435360109048732) +station = ('kbkv', 0.0049131589726018705) +zone = ('flz049', 0.004878371696232244) + +[34669] +centroid = (0.49492334760058992, -1.4418227957111154) +station = ('kbkv', 0.0031180611422746826) +zone = ('flz049', 0.003468328228839909) + +[34677] +centroid = (0.48934707300034558, -1.442926088144471) +station = ('kpie', 0.0021146794280170332) +zone = ('flz050', 0.0020466259157164279) + +[34679] +centroid = (0.49623557339870183, -1.4427106272483123) +station = ('kbkv', 0.003296783690058004) +zone = ('flz048', 0.0042450523525806539) + +[34681] +centroid = (0.4901374802586963, -1.4447132180320506) +station = ('kpie', 0.0032320861736382955) +zone = ('flz050', 0.0028224728581372161) + +[34683] +centroid = (0.49022294903216646, -1.4444542809842247) +station = ('kpie', 0.0032169552015063043) +zone = ('flz050', 0.0028470879000062929) + +[34684] +centroid = (0.49010143920964255, -1.4438555457843281) +station = ('kpie', 0.0029410896549893826) +zone = ('flz050', 0.0026617336496862301) + +[34685] +centroid = (0.4903212983355163, -1.4431970679641355) +station = ('kpie', 0.0030848294187697653) +zone = ('flz050', 0.0029245090290705125) + +[34688] +centroid = (0.49126000622040894, -1.4430202835642012) +station = ('ktpa', 0.0038667388297164481) +zone = ('flz050', 0.0038760466762469627) + +[34689] +centroid = (0.491280618558875, -1.4444323421955272) +station = ('kpie', 0.0042113321927665908) +zone = ('flz050', 0.0038841404628938057) + +[34690] +centroid = (0.4920736787176887, -1.4438359457368282) +station = ('kpie', 0.004879769657999627) +zone = ('flz050', 0.0046332600578728759) + +[34691] +centroid = (0.49214834390308898, -1.4454132346884405) +station = ('kpie', 0.0053192208718399739) +zone = ('flz050', 0.0049259421640163743) + +[34695] +centroid = (0.48883530755707577, -1.4431847982994943) +station = ('kpie', 0.0015994647446831403) +zone = ('flz050', 0.001487070889958073) + +[34698] +centroid = (0.48934761405241367, -1.4448938596096321) +station = ('kpie', 0.0026403323941707234) +zone = ('flz050', 0.0021498402096964864) + +[34705] +centroid = (0.5009053065321678, -1.4262598343974222) +station = ('klee', 0.0025320970344036627) +zone = ('flz144', 0.0027309271501953273) + +[34711] +centroid = (0.49795109242707208, -1.4268649749556737) +station = ('klee', 0.0050878829017528167) +zone = ('flz144', 0.00099200435601890262) + +[34714] +centroid = (0.49574138342099966, -1.4273104527939524) +station = ('kgif', 0.0059023516908719344) +zone = ('flz144', 0.0028151679474687414) + +[34715] +centroid = (0.49969689291796449, -1.4263475720989198) +station = ('klee', 0.003546785209830284) +zone = ('flz144', 0.0017225100842105901) + +[34731] +centroid = (0.50377373770452794, -1.4294007638258961) +station = ('klee', 0.0015019704543398969) +zone = ('flz043', 0.0039411359514024925) + +[34734] +centroid = (0.49806466100149938, -1.4227130635579819) +station = ('korl', 0.0028014590684193054) +zone = ('flz045', 0.0029643533373096059) + +[34736] +centroid = (0.49838360246900881, -1.4294573997601234) +station = ('klee', 0.004744993341979563) +zone = ('flz144', 0.0014750386064513159) + +[34737] +centroid = (0.50077929376017383, -1.4276299527668228) +station = ('klee', 0.0021868601249567972) +zone = ('flz144', 0.0022580651900301813) + +[34739] +centroid = (0.48747918672827617, -1.4157597765377914) +station = ('kmlb', 0.0077808565383064221) +zone = ('flz053', 0.002360863611654863) + +[34741] +centroid = (0.49403970485359772, -1.4211434540550782) +station = ('kism', 0.00034198896229556213) +zone = ('flz045', 0.0039584633343303184) + +[34743] +centroid = (0.49443969941156979, -1.4199152658604499) +station = ('kism', 0.0014379381373696128) +zone = ('flz045', 0.0032730182848821681) + +[34744] +centroid = (0.49378598634023529, -1.4196197641647947) +station = ('kism', 0.0015219605095022678) +zone = ('flz045', 0.0038974524655771537) + +[34746] +centroid = (0.49286153779533148, -1.4214884183817349) +station = ('kism', 0.00089587895500080751) +zone = ('flz045', 0.0051643403807959563) + +[34747] +centroid = (0.49412868173886437, -1.4241108803026117) +station = ('kism', 0.0024624170023571069) +zone = ('flz144', 0.005456500988666008) + +[34748] +centroid = (0.50207617811416072, -1.4291134477244329) +station = ('klee', 0.0013266103679790673) +zone = ('flz043', 0.0032310037757483862) + +[34753] +centroid = (0.49875439766859503, -1.4291645684182237) +station = ('klee', 0.0043202663361627215) +zone = ('flz144', 0.0012323548302318682) + +[34756] +centroid = (0.49892537012212035, -1.4256300846967174) +station = ('klee', 0.0045140164382285637) +zone = ('flz144', 0.0019349234743301874) + +[34758] +centroid = (0.49208155015261523, -1.4221987499340041) +station = ('kism', 0.0018280786141349305) +zone = ('flz052', 0.0053823039958510377) + +[34759] +centroid = (0.49050551783806429, -1.4210360988527881) +station = ('kism', 0.0032548825743526017) +zone = ('flz053', 0.0042173274391072886) + +[34760] +centroid = (0.49837431731738824, -1.4247500373279844) +station = ('kmco', 0.0051790175192105142) +zone = ('flz144', 0.0026706546312956834) + +[34761] +centroid = (0.49879024673143102, -1.4230387769029889) +station = ('korl', 0.0031179249273188851) +zone = ('flz045', 0.0034111694818919056) + +[34762] +centroid = (0.5018902307356532, -1.4296732446287175) +station = ('klee', 0.0018280604722645628) +zone = ('flz043', 0.0027063459217470643) + +[34769] +centroid = (0.49296170224110336, -1.4187929318849548) +station = ('kism', 0.0023837691359355922) +zone = ('flz053', 0.00384874645190896) + +[34771] +centroid = (0.49365753010728852, -1.4167483484794134) +station = ('kmco', 0.0033665458760465971) +zone = ('flz053', 0.0038888841988149276) + +[34772] +centroid = (0.49155323898803649, -1.418421578180008) +station = ('kism', 0.0033863211664867591) +zone = ('flz053', 0.002556911392303401) + +[34773] +centroid = (0.49148145359590195, -1.4138486933667354) +station = ('kmlb', 0.0056016434127864794) +zone = ('flz053', 0.002765357820811316) + +[34785] +centroid = (0.50330560549255798, -1.4318789742840954) +station = ('kvvg', 0.0025250568684799307) +zone = ('flz043', 0.0023967971623695215) + +[34786] +centroid = (0.49719485871547547, -1.4233488870044833) +station = ('kmco', 0.003572312137718337) +zone = ('flz045', 0.0035314643082702836) + +[34787] +centroid = (0.49715656619168674, -1.4245254832664227) +station = ('kism', 0.0044078126800283467) +zone = ('flz144', 0.0031747967664948517) + +[34788] +centroid = (0.50432365604524632, -1.4278232828880661) +station = ('klee', 0.001383939513172711) +zone = ('flz044', 0.0027920460390969495) + +[34797] +centroid = (0.50142464670439124, -1.4281279126557094) +station = ('klee', 0.0015273337669254648) +zone = ('flz144', 0.0029147758705167048) + +[34945] +centroid = (0.47887061199220199, -1.4059888997863517) +station = ('kfpr', 0.0029069947404266007) +zone = ('flz059', 0.0015588473379410535) + +[34946] +centroid = (0.48002303544400132, -1.4025549644830526) +station = ('kfpr', 0.00035843379052400586) +zone = ('flz059', 0.0029226662928512957) + +[34947] +centroid = (0.47917798192677069, -1.4028118769489464) +station = ('kfpr', 0.00079756841887212624) +zone = ('flz059', 0.0021671507717312753) + +[34949] +centroid = (0.47939408859475269, -1.4014960383192827) +station = ('kfpr', 0.0014138981034743927) +zone = ('flz059', 0.0032591512810368922) + +[34950] +centroid = (0.47898445981930959, -1.4020399876339593) +station = ('kfpr', 0.0012727590918003775) +zone = ('flz059', 0.0026411069521365522) + +[34951] +centroid = (0.48052638840027645, -1.4035755283098639) +station = ('kfpr', 0.00078648424215622731) +zone = ('flz059', 0.0028966091685499779) + +[34952] +centroid = (0.47640514243754228, -1.401501047414236) +station = ('ksua', 0.0023419030628393828) +zone = ('flz059', 0.0031723046743551823) + +[34953] +centroid = (0.47558703680396247, -1.4029439460134447) +station = ('ksua', 0.0027716189453774074) +zone = ('flz059', 0.0027164583771041952) + +[34956] +centroid = (0.47288896721988949, -1.4049589984480424) +station = ('ksua', 0.0045647479250366749) +zone = ('flz064', 0.0017017117275236928) + +[34957] +centroid = (0.47613082903900633, -1.400433394604206) +station = ('ksua', 0.0017433039624969757) +zone = ('flz064', 0.0041399935803664422) + +[34972] +centroid = (0.48005258386823757, -1.4125023638350394) +station = ('kobe', 0.004339727516956722) +zone = ('flz058', 0.0014114006052760887) + +[34974] +centroid = (0.47378660750748269, -1.4128385491555584) +station = ('kobe', 0.0026086520807181613) +zone = ('flz058', 0.0049838979912441017) + +[34981] +centroid = (0.47811495423925848, -1.4027360772995323) +station = ('kfpr', 0.0018606520731640037) +zone = ('flz059', 0.0017739241161641008) + +[34982] +centroid = (0.47775358381763305, -1.4016393298508716) +station = ('kfpr', 0.0025007664606451581) +zone = ('flz059', 0.0027218654137191271) + +[34983] +centroid = (0.47689290960359715, -1.4024156523021585) +station = ('kfpr', 0.0031095545780085642) +zone = ('flz059', 0.0022290219271994733) + +[34984] +centroid = (0.47558691463091485, -1.4020361828161898) +station = ('ksua', 0.0020693651289204265) +zone = ('flz064', 0.0030152583877128577) + +[34986] +centroid = (0.47688774342901119, -1.4032867635851216) +station = ('kfpr', 0.0030919587319453265) +zone = ('flz059', 0.0015593746099848624) + +[34987] +centroid = (0.4765067380533009, -1.4047340080541677) +station = ('kfpr', 0.0038027854768984508) +zone = ('flz059', 0.0013018556166404863) + +[34990] +centroid = (0.47363232040160635, -1.4023187865286728) +station = ('ksua', 0.002103013957904399) +zone = ('flz064', 0.0011313663310502495) + +[34994] +centroid = (0.47474610226376657, -1.4007515681268448) +station = ('ksua', 0.00065293346631781451) +zone = ('flz064', 0.0028896557224130084) + +[34996] +centroid = (0.47460418954228689, -1.3995762634085516) +station = ('ksua', 0.00052342675773488798) +zone = ('flz064', 0.0036305033402780538) + +[34997] +centroid = (0.4722099468744011, -1.4009791939678897) +station = ('ksua', 0.002328042968915148) +zone = ('flz064', 0.0019179122029898013) + +[35004] +centroid = (0.58649026657063541, -1.5096015052950089) +station = ('kbhm', 0.0037799702915330071) +zone = ('alz026', 0.0032572255718817289) + +[35005] +centroid = (0.58635994283538895, -1.518447776421912) +station = ('kbhm', 0.003680189698592969) +zone = ('alz024', 0.0016798975120937954) + +[35006] +centroid = (0.58333729437032256, -1.5220969282752743) +station = ('ktcl', 0.006939870037324521) +zone = ('alz023', 0.0051510845582467919) + +[35007] +centroid = (0.57971985514946911, -1.5149035188565947) +station = ('keet', 0.00059873530629720069) +zone = ('alz025', 0.0021720452102814672) + +[35010] +centroid = (0.57450142540576121, -1.4999464660460238) +station = ('kalx', 0.00032639927682441599) +zone = ('alz037', 0.002300085136031194) + +[35013] +centroid = (0.59170445516426096, -1.5100200701562221) +station = ('kbhm', 0.0067564031696285736) +zone = ('alz017', 0.0015506443092282714) + +[35014] +centroid = (0.58216565484345872, -1.5055599859725055) +station = ('kanb', 0.0071982292803102772) +zone = ('alz027', 0.0014671530375445765) + +[35016] +centroid = (0.59906454352650607, -1.5097448142798899) +station = ('k8a0', 0.0039219260652956622) +zone = ('alz008', 0.0029142969494932234) + +[35019] +centroid = (0.5986842013759115, -1.5120501847822645) +station = ('k3a1', 0.0032860072654141543) +zone = ('alz007', 0.0041132222369102082) + +[35020] +centroid = (0.58298236421363703, -1.5175949212829252) +station = ('kbhm', 0.0041042007532937907) +zone = ('alz024', 0.0027701360952367112) + +[35022] +centroid = (0.58159343119489992, -1.5179382973599624) +station = ('keet', 0.0036699390934763335) +zone = ('alz024', 0.0041845027536183202) + +[35023] +centroid = (0.58412508363479532, -1.5199776796843329) +station = ('kbhm', 0.0052158138077700684) +zone = ('alz024', 0.0031724792941960614) + +[35031] +centroid = (0.59511872060688986, -1.5106679712811475) +station = ('k8a0', 0.004891167056801855) +zone = ('alz017', 0.0020481284158465466) + +[35032] +centroid = (0.58058131476166841, -1.5068547410248052) +station = ('keet', 0.0066784330521401352) +zone = ('alz027', 0.0031972769767155979) + +[35033] +centroid = (0.59212869234554333, -1.5189914813904934) +station = ('kjfx', 0.0040558954473732377) +zone = ('alz016', 0.0043021132338478905) + +[35034] +centroid = (0.57440743942554118, -1.5231781772001773) +station = ('ktcl', 0.0073417429879229891) +zone = ('alz034', 0.0026187657190738941) + +[35035] +centroid = (0.57672288047769948, -1.5179740242497508) +station = ('keet', 0.003696024863508647) +zone = ('alz034', 0.0023723972946116771) + +[35036] +centroid = (0.58719721218415577, -1.5170331870631708) +station = ('kbhm', 0.0028099827833944838) +zone = ('alz024', 0.00159983722403848) + +[35040] +centroid = (0.5777557663290297, -1.513704756913155) +station = ('keet', 0.0016125657995376052) +zone = ('alz025', 0.0029867910674409534) + +[35042] +centroid = (0.57522545779265843, -1.5202483802513171) +station = ('keet', 0.0061187537993979049) +zone = ('alz034', 0.00078209666916362569) + +[35043] +centroid = (0.58144253002777246, -1.5124884544107327) +station = ('keet', 0.0029154320950782464) +zone = ('alz025', 0.00087124471426736614) + +[35044] +centroid = (0.58021216017157906, -1.5076284629355068) +station = ('keet', 0.0059722564567678228) +zone = ('alz027', 0.0039342615495255098) + +[35045] +centroid = (0.5724673314290244, -1.5127948644142128) +station = ('keet', 0.0068705622171539634) +zone = ('alz035', 0.0010393216852008053) + +[35046] +centroid = (0.57475683688849788, -1.5103059550876987) +station = ('keet', 0.0057148655310565576) +zone = ('alz035', 0.0030714331266168513) + +[35049] +centroid = (0.59274535207685786, -1.51166568874805) +station = ('k3a1', 0.0064293370994366527) +zone = ('alz017', 0.0007273124137051046) + +[35051] +centroid = (0.57953713663007778, -1.5117852612551042) +station = ('keet', 0.002431052092472929) +zone = ('alz025', 0.0012008857529314206) + +[35052] +centroid = (0.58626799889039394, -1.5081372089591707) +station = ('kbhm', 0.0049631021441347125) +zone = ('alz026', 0.0025833758211322982) + +[35053] +centroid = (0.59430932416627746, -1.5197128783302201) +station = ('kjfx', 0.0043286376180249027) +zone = ('alz016', 0.0032868596318314756) + +[35054] +centroid = (0.58471997911033757, -1.5068816190952858) +station = ('kbhm', 0.0060998793320176095) +zone = ('alz027', 0.0032881831232705319) + +[35055] +centroid = (0.59605058680111467, -1.5142252140960997) +station = ('k3a1', 0.0025035835926885282) +zone = ('alz016', 0.0016081267239277748) + +[35057] +centroid = (0.59656160175280604, -1.5172890174249281) +station = ('k3a1', 0.0018887639070657913) +zone = ('alz016', 0.0012814942548969061) + +[35058] +centroid = (0.5974062363910162, -1.5138507886116694) +station = ('k3a1', 0.0018794695418594611) +zone = ('alz016', 0.0025296737248230797) + +[35060] +centroid = (0.58569322706112714, -1.5175939089919588) +station = ('kbhm', 0.0029379435569378246) +zone = ('alz024', 0.00080549530905130607) + +[35061] +centroid = (0.58419318638220807, -1.5176688883366247) +station = ('kbhm', 0.0034246107549469346) +zone = ('alz024', 0.0016802757724465231) + +[35062] +centroid = (0.58861089397168598, -1.5186153803899811) +station = ('kbhm', 0.0046826596258747232) +zone = ('alz024', 0.0034058440320176857) + +[35063] +centroid = (0.59027995233536812, -1.5188878262862175) +station = ('kjfx', 0.0043452611879576091) +zone = ('alz015', 0.0039475902899419983) + +[35064] +centroid = (0.58426767703468319, -1.5170446015164789) +station = ('kbhm', 0.0029388645167322371) +zone = ('alz024', 0.0014084072695476908) + +[35068] +centroid = (0.58656185997655219, -1.5154881168895502) +station = ('kbhm', 0.0013776199291153067) +zone = ('alz024', 0.0013295857863326527) + +[35070] +centroid = (0.59363089723273477, -1.5141464822935422) +station = ('k3a1', 0.0047155440086271384) +zone = ('alz016', 0.0026522339518070003) + +[35071] +centroid = (0.588088778725952, -1.5157853115545799) +station = ('kbhm', 0.0026551119516515106) +zone = ('alz024', 0.0025545126832802367) + +[35072] +centroid = (0.57762413359684428, -1.5021082657641291) +station = ('kalx', 0.0034874077704916237) +zone = ('alz036', 0.0038608572334963634) + +[35073] +centroid = (0.58732469103272134, -1.5182066068258715) +station = ('kbhm', 0.0037455229524484971) +zone = ('alz024', 0.0021415077159743518) + +[35074] +centroid = (0.57983937529664564, -1.5206053698965201) +station = ('keet', 0.0050253243639059144) +zone = ('alz034', 0.0039052808932914088) + +[35077] +centroid = (0.59378134461425669, -1.5155159548911195) +station = ('k3a1', 0.0043346320460191726) +zone = ('alz016', 0.0019992639316518718) + +[35078] +centroid = (0.58161833704332588, -1.5087409183474354) +station = ('keet', 0.0055235645784731426) +zone = ('alz025', 0.0033233908983720311) + +[35079] +centroid = (0.59233099345914186, -1.5140680297436651) +station = ('k3a1', 0.0059788693416036607) +zone = ('alz017', 0.0027429937390031347) + +[35080] +centroid = (0.58054045660387921, -1.5169343490676304) +station = ('keet', 0.0023550220206246409) +zone = ('alz025', 0.0036957819362940752) + +[35082] +centroid = (0.57871440587398015, -1.5036603870679277) +station = ('kalx', 0.0050785020774555293) +zone = ('alz027', 0.0038807918454659435) + +[35083] +centroid = (0.59690035270732567, -1.5114406459942979) +station = ('k3a1', 0.003927313163259151) +zone = ('alz017', 0.003849253824575404) + +[35085] +centroid = (0.57557679257108496, -1.513797172097048) +station = ('keet', 0.0036530261542106466) +zone = ('alz035', 0.0022839425232872674) + +[35087] +centroid = (0.59876055953068619, -1.5111810457213561) +station = ('k3a1', 0.0040065056206832284) +zone = ('alz008', 0.0041388269612818458) + +[35089] +centroid = (0.57501237054428245, -1.5024113945486155) +station = ('kalx', 0.0018263467545631617) +zone = ('alz036', 0.0024338134122617659) + +[35091] +centroid = (0.58955888700819925, -1.5147634736374147) +station = ('kbhm', 0.0037542546803698779) +zone = ('alz024', 0.0042220631026113403) + +[35094] +centroid = (0.58521005011100502, -1.5106401158262857) +station = ('kbhm', 0.002931582535418073) +zone = ('alz026', 0.0047457397979878656) + +[35096] +centroid = (0.58679283684976113, -1.5028666636839982) +station = ('kanb', 0.0038057625003384012) +zone = ('alz026', 0.0034304702851557312) + +[35097] +centroid = (0.59153100434319772, -1.5119286225998629) +station = ('kbhm', 0.0059554818411037963) +zone = ('alz017', 0.0017728644818918904) + +[35098] +centroid = (0.59552553940223718, -1.5192546595884018) +station = ('k3a1', 0.0037465989497273101) +zone = ('alz016', 0.0025971858704586172) + +[35111] +centroid = (0.58092153179275963, -1.5200923827227737) +station = ('keet', 0.0048779103754561922) +zone = ('alz034', 0.0050085430699919531) + +[35112] +centroid = (0.58801737730625281, -1.5091970601474443) +station = ('kbhm', 0.0046028533055520737) +zone = ('alz026', 0.002304912767343121) + +[35114] +centroid = (0.57986330376069051, -1.5162156922948291) +station = ('keet', 0.0014840448132381859) +zone = ('alz025', 0.0031754210510418538) + +[35115] +centroid = (0.57811130735095351, -1.5166420064179214) +station = ('keet', 0.0019657297849029953) +zone = ('alz034', 0.0039976320466086068) + +[35116] +centroid = (0.58870159873291217, -1.5143539670350192) +station = ('kbhm', 0.0028623100405985894) +zone = ('alz024', 0.0036064786333406939) + +[35117] +centroid = (0.58762392773297578, -1.5165760329721958) +station = ('kbhm', 0.0027377361042055237) +zone = ('alz024', 0.0019914223988447221) + +[35118] +centroid = (0.58529628682934609, -1.519121211713794) +station = ('kbhm', 0.0042431842847389743) +zone = ('alz024', 0.0021034132899327824) + +[35119] +centroid = (0.58724344595604105, -1.5144384235175234) +station = ('kbhm', 0.0014273940999105991) +zone = ('alz024', 0.0024342726904468355) + +[35120] +centroid = (0.58759673550322966, -1.5083787450743542) +station = ('kbhm', 0.005053919512046345) +zone = ('alz026', 0.0017986590442052959) + +[35121] +centroid = (0.59238543027851154, -1.5089261850475346) +station = ('k8a0', 0.0057908682281596312) +zone = ('alz017', 0.0017672439063752556) + +[35124] +centroid = (0.58157685056700603, -1.5139365889976972) +station = ('keet', 0.0024919123157880066) +zone = ('alz025', 0.0015567575378765128) + +[35125] +centroid = (0.58701102045955289, -1.5060212415872229) +station = ('kanb', 0.0064355441685148996) +zone = ('alz026', 0.0014878272177541239) + +[35126] +centroid = (0.58871301318622016, -1.5124171402574962) +station = ('kbhm', 0.0031786394570998224) +zone = ('alz017', 0.0045469417670448127) + +[35127] +centroid = (0.58453968659860644, -1.5180239581196504) +station = ('kbhm', 0.0035440943153611697) +zone = ('alz024', 0.0015955433553039697) + +[35128] +centroid = (0.58559985194614539, -1.5068792105409181) +station = ('kanb', 0.0071146796846343853) +zone = ('alz026', 0.002869854280144957) + +[35130] +centroid = (0.58700931003688595, -1.5208221048830328) +station = ('kjfx', 0.0052927944097079125) +zone = ('alz024', 0.0037533562508836869) + +[35131] +centroid = (0.5886542828568907, -1.5044190991470621) +station = ('kgad', 0.0044884649862854762) +zone = ('alz026', 0.0017227325521896738) + +[35133] +centroid = (0.5904439958317631, -1.5113876577982075) +station = ('kbhm', 0.0051095115923598094) +zone = ('alz017', 0.0026672681801548806) + +[35135] +centroid = (0.58671794477155803, -1.5044667466356416) +station = ('kanb', 0.0051149281091513133) +zone = ('alz026', 0.0024074025266322676) + +[35136] +centroid = (0.57385111572646808, -1.5059886737433805) +station = ('kalx', 0.0047885478582534073) +zone = ('alz036', 0.0011480036105929385) + +[35139] +centroid = (0.588336074427667, -1.5178965141776697) +station = ('kbhm', 0.0040396650615250459) +zone = ('alz024', 0.0029014631116560871) + +[35143] +centroid = (0.57761409795364538, -1.5104757407173328) +station = ('keet', 0.003825017591614526) +zone = ('alz025', 0.0034144343645672562) + +[35146] +centroid = (0.58983608020000111, -1.5088954497994069) +station = ('kbhm', 0.0058703912574015723) +zone = ('alz026', 0.002443089439424076) + +[35147] +centroid = (0.58321719826449281, -1.5102507154168732) +station = ('kbhm', 0.0041337025459836771) +zone = ('alz025', 0.0032521159664063164) + +[35148] +centroid = (0.58915320267686566, -1.5192357925791877) +station = ('kjfx', 0.004581531900059904) +zone = ('alz024', 0.0041347668309422887) + +[35149] +centroid = (0.58031213263113335, -1.5042560853949256) +station = ('kalx', 0.0067029501616859928) +zone = ('alz027', 0.0023004955112126712) + +[35150] +centroid = (0.57926266615190913, -1.5051437423991976) +station = ('kalx', 0.006262789409724588) +zone = ('alz027', 0.0034922177778473487) + +[35151] +centroid = (0.57737809453219069, -1.5078283380414452) +station = ('keet', 0.0059874405302399215) +zone = ('alz036', 0.0033007510228086584) + +[35160] +centroid = (0.58220551816357435, -1.5018998559981482) +station = ('kanb', 0.0049164934038864383) +zone = ('alz027', 0.0016969298108416853) + +[35171] +centroid = (0.57390858941873624, -1.5139030612227666) +station = ('keet', 0.0052875370563581301) +zone = ('alz035', 0.00068151038550327869) + +[35172] +centroid = (0.590758888135408, -1.5131297930976704) +station = ('kbhm', 0.0049723506284023644) +zone = ('alz017', 0.0029745238429844589) + +[35173] +centroid = (0.58739752362240716, -1.5108100410822598) +station = ('kbhm', 0.0031278472977153736) +zone = ('alz026', 0.0037569949934313758) + +[35175] +centroid = (0.60101578672365075, -1.509905262398026) +station = ('khua', 0.0049063222010276792) +zone = ('alz008', 0.0031814560719726805) + +[35176] +centroid = (0.58443016718804386, -1.5096754723487085) +station = ('kbhm', 0.0039309657926809164) +zone = ('alz025', 0.0045287883516181415) + +[35178] +centroid = (0.58328500430593289, -1.507937159320307) +station = ('kbhm', 0.0057234548340634652) +zone = ('alz027', 0.0034585994500483178) + +[35179] +centroid = (0.59818205269682023, -1.5178948735681728) +station = ('k3a1', 0.0015978290452305227) +zone = ('alz016', 0.0028676857151997727) + +[35180] +centroid = (0.59036721879796794, -1.5155596230290045) +station = ('kbhm', 0.0046845692124049248) +zone = ('alz017', 0.0047325757640776832) + +[35183] +centroid = (0.57623979079404009, -1.5071268902150687) +station = ('kalx', 0.0059680033761941084) +zone = ('alz036', 0.002069313055401411) + +[35184] +centroid = (0.57795434989132166, -1.5208225586686381) +station = ('keet', 0.0053024051668407795) +zone = ('alz034', 0.0020257576174630468) + +[35186] +centroid = (0.58044139171553599, -1.5098912124975474) +station = ('keet', 0.0041865955135209883) +zone = ('alz025', 0.0021974514080645184) + +[35187] +centroid = (0.5773642366179299, -1.516443178509534) +station = ('keet', 0.0023370267810661409) +zone = ('alz034', 0.0037996696932040635) + +[35188] +centroid = (0.57910827432627765, -1.5212915111853567) +station = ('keet', 0.0055546485423789418) +zone = ('alz034', 0.0032202881997636231) + +[35203] +centroid = (0.58500994811226381, -1.5151169551708212) +station = ('kbhm', 0.0012085815200350005) +zone = ('alz024', 0.0014067134991141632) + +[35204] +centroid = (0.58507126152888644, -1.5156412520781204) +station = ('kbhm', 0.0015207925364795754) +zone = ('alz024', 0.00099740442193448965) + +[35205] +centroid = (0.58459794568903811, -1.5150867609747616) +station = ('kbhm', 0.0015095413990149852) +zone = ('alz024', 0.0016512317273045863) + +[35206] +centroid = (0.58590544164487712, -1.5134269703094076) +station = ('kbhm', 0.00054136053380402242) +zone = ('alz024', 0.0026829379248029255) + +[35207] +centroid = (0.58582065354981516, -1.5153592592308756) +station = ('kbhm', 0.0010720424214378079) +zone = ('alz024', 0.0010754454564878958) + +[35208] +centroid = (0.58462978049459446, -1.5163298019213247) +station = ('kbhm', 0.0022415944171283592) +zone = ('alz024', 0.0010339818043982156) + +[35209] +centroid = (0.58409796121821933, -1.5151467828477376) +station = ('kbhm', 0.001966440447994067) +zone = ('alz024', 0.0019712548372182418) + +[35210] +centroid = (0.58539961032106413, -1.5126824128505068) +station = ('kbhm', 0.0012429967348171586) +zone = ('alz024', 0.0032983210517055625) + +[35211] +centroid = (0.58390641133281296, -1.5159317446788223) +station = ('kbhm', 0.002484869764322909) +zone = ('alz024', 0.0018221364372046729) + +[35212] +centroid = (0.58551242840391293, -1.514123915186314) +station = ('kbhm', 0.00033907574188656383) +zone = ('alz024', 0.0020920660957859947) + +[35213] +centroid = (0.58480173033250094, -1.5139763999579352) +station = ('kbhm', 0.0010502212172239047) +zone = ('alz024', 0.0023630880039644058) + +[35214] +centroid = (0.58602881896970049, -1.5165749683213521) +station = ('kbhm', 0.0020922722690127418) +zone = ('alz024', 0.0003984563625123456) + +[35215] +centroid = (0.58728674757478294, -1.513328900258738) +station = ('kbhm', 0.0015657987891484974) +zone = ('alz024', 0.0032085431836964451) + +[35216] +centroid = (0.58327587623394495, -1.5147613617890199) +station = ('kbhm', 0.0026362153614386472) +zone = ('alz024', 0.0028257750029939753) + +[35217] +centroid = (0.58656819552173689, -1.5142522841527981) +station = ('kbhm', 0.00073466269283058302) +zone = ('alz024', 0.0021905655179345861) + +[35218] +centroid = (0.58481911381185081, -1.5165863129614903) +station = ('kbhm', 0.0023342217736800749) +zone = ('alz024', 0.00081471494634461554) + +[35221] +centroid = (0.5838036812530405, -1.5166730034654365) +station = ('kbhm', 0.0029802802613549248) +zone = ('alz024', 0.0018296828304533446) + +[35222] +centroid = (0.58509915189033335, -1.5144241990841196) +station = ('kbhm', 0.00080477728188378152) +zone = ('alz024', 0.0019145237415253179) + +[35223] +centroid = (0.58447832082210638, -1.5138084294707235) +station = ('kbhm', 0.0013881807659853027) +zone = ('alz024', 0.0026204417160115793) + +[35224] +centroid = (0.58498701448589274, -1.5174563072337317) +station = ('kbhm', 0.0029485817378865683) +zone = ('alz024', 0.0009442814043984333) + +[35226] +centroid = (0.58292518722734166, -1.5157468270445733) +station = ('kbhm', 0.0032398291515284994) +zone = ('alz024', 0.0028062492300049173) + +[35228] +centroid = (0.58391908242318236, -1.5170568886344129) +station = ('kbhm', 0.0031485083855447961) +zone = ('alz024', 0.0017504978550161004) + +[35229] +centroid = (0.5840885189869659, -1.5147466835700105) +station = ('kbhm', 0.0018477358755745975) +zone = ('alz024', 0.0022025790482276828) + +[35233] +centroid = (0.58483798082106486, -1.5149800689975872) +station = ('kbhm', 0.0012622726500179312) +zone = ('alz024', 0.0015886309281341647) + +[35234] +centroid = (0.58539758573913181, -1.514993926911848) +station = ('kbhm', 0.00089021996673597321) +zone = ('alz024', 0.0013837505712257763) + +[35235] +centroid = (0.58685797253744554, -1.5122912671118425) +station = ('kbhm', 0.0017947827237430197) +zone = ('alz024', 0.0038162343237205113) + +[35242] +centroid = (0.58334493891244632, -1.5127052592104153) +station = ('kbhm', 0.0027515092617449739) +zone = ('alz025', 0.00277795284438774) + +[35243] +centroid = (0.58365412398943717, -1.5139249127450014) +station = ('kbhm', 0.0021982051841264961) +zone = ('alz024', 0.0030007899235647549) + +[35244] +centroid = (0.58211823424768216, -1.5153879349904857) +station = ('keet', 0.0030226020127865562) +zone = ('alz025', 0.0028563508983551343) + +[35254] +centroid = (0.58496847908923644, -1.515950227715601) +station = ('kbhm', 0.0017952262436737368) +zone = ('alz024', 0.0008733252733977299) + +[35401] +centroid = (0.5789298667701388, -1.5291906270337876) +station = ('ktcl', 0.00081036569938228566) +zone = ('alz023', 0.0024706828781233619) + +[35404] +centroid = (0.57971385121684216, -1.5268734755589624) +station = ('ktcl', 0.0019460022322896463) +zone = ('alz023', 0.0014325291291387061) + +[35405] +centroid = (0.57806633021612963, -1.5278805130840707) +station = ('ktcl', 0.002005112385442015) +zone = ('alz023', 0.0029544271194166826) + +[35406] +centroid = (0.58187299803448433, -1.526627715746989) +station = ('ktcl', 0.0030283536486321308) +zone = ('alz023', 0.0011839675624988402) + +[35441] +centroid = (0.57338886527407729, -1.531532160758263) +station = ('ktcl', 0.0066456199593257371) +zone = ('alz032', 0.0023734665461547953) + +[35442] +centroid = (0.57734927914624024, -1.5392227970275434) +station = ('kgtr', 0.0086348755359230804) +zone = ('alz022', 0.0038165369445391883) + +[35443] +centroid = (0.57168746595935571, -1.5359030411639101) +station = ('ktcl', 0.0098216853980136708) +zone = ('alz031', 0.0018499691014015589) + +[35444] +centroid = (0.58169598674174705, -1.5235482393614779) +station = ('ktcl', 0.0051134855383827629) +zone = ('alz023', 0.0034541812292758277) + +[35446] +centroid = (0.57958537753060291, -1.5315444129696123) +station = ('ktcl', 0.0019681206999829035) +zone = ('alz023', 0.0035941781626174195) + +[35447] +centroid = (0.58035457903854182, -1.5386430684632011) +station = ('kgtr', 0.0071031288977975752) +zone = ('alz022', 0.0011279394769690295) + +[35452] +centroid = (0.58082857555679845, -1.5303085278729827) +station = ('ktcl', 0.0014300645756838636) +zone = ('alz023', 0.0022720600466564836) + +[35453] +centroid = (0.57881708359387496, -1.5252337910865914) +station = ('ktcl', 0.0034445748157806958) +zone = ('alz023', 0.0029548090273675233) + +[35456] +centroid = (0.57707034062518658, -1.5256752023077131) +station = ('ktcl', 0.0039794128735650405) +zone = ('alz023', 0.0042574260370149058) + +[35457] +centroid = (0.58126698481160688, -1.5319303576271057) +station = ('ktcl', 0.0027470320361890257) +zone = ('alz023', 0.0036289668182589688) + +[35458] +centroid = (0.58295031996857039, -1.5326221712360113) +station = ('ktcl', 0.0042997321374029967) +zone = ('alz023', 0.0046222115290842202) + +[35459] +centroid = (0.5723220153155032, -1.5407042499499288) +station = ('kmei', 0.010612569747604526) +zone = ('alz030', 0.0036801102514972357) + +[35460] +centroid = (0.57095236818500072, -1.5385725222548354) +station = ('kmei', 0.010997626962503238) +zone = ('alz030', 0.0022326883407629743) + +[35461] +centroid = (0.58324875381736896, -1.5396222330801552) +station = ('kcbm', 0.005314316768089228) +zone = ('alz022', 0.0030049148846951865) + +[35462] +centroid = (0.57457535755287559, -1.5353159473101243) +station = ('ktcl', 0.007276654694625702) +zone = ('alz031', 0.0012006843985649597) + +[35463] +centroid = (0.57708842223623724, -1.5303474661685945) +station = ('ktcl', 0.0028206705214901739) +zone = ('alz023', 0.0045475128834515585) + +[35464] +centroid = (0.5725749833372874, -1.5385878462456679) +station = ('ktcl', 0.010645264696211427) +zone = ('alz031', 0.0030793302100567475) + +[35466] +centroid = (0.58029626758823272, -1.5344844724544742) +station = ('ktcl', 0.0044556192337352951) +zone = ('alz022', 0.0025332653019963089) + +[35469] +centroid = (0.57550266843775277, -1.5320773318034162) +station = ('ktcl', 0.0048754543188011274) +zone = ('alz031', 0.0032701508429470155) + +[35470] +centroid = (0.56831386668829831, -1.5370482913124837) +station = ('kmei', 0.010830710413269851) +zone = ('alz030', 0.0020123143440394123) + +[35473] +centroid = (0.58068010039733131, -1.5285874936041761) +station = ('ktcl', 0.0010701603879031984) +zone = ('alz023', 0.00088997707055629574) + +[35474] +centroid = (0.57500060702512401, -1.5286838881387637) +station = ('ktcl', 0.0047592284527362546) +zone = ('alz032', 0.0032425309266266153) + +[35475] +centroid = (0.58354144553292842, -1.5288038097116681) +station = ('ktcl', 0.0038155834573512606) +zone = ('alz023', 0.0027226988919575998) + +[35476] +centroid = (0.57992836963520489, -1.5287560924099186) +station = ('ktcl', 0.00041579315248346094) +zone = ('alz023', 0.0014520354521972475) + +[35477] +centroid = (0.57519463527806824, -1.5400987777791195) +station = ('kgtr', 0.0099619158050323411) +zone = ('alz031', 0.0046008974094620602) + +[35480] +centroid = (0.57755079486167549, -1.5327019327828273) +station = ('ktcl', 0.0036595765224255589) +zone = ('alz031', 0.004601206541965751) + +[35481] +centroid = (0.58284614126551881, -1.5365427916012289) +station = ('ktcl', 0.006878491656617621) +zone = ('alz022', 0.0021210430934147351) + +[35490] +centroid = (0.57977078385704217, -1.5225940853127049) +station = ('ktcl', 0.0055259927485875951) +zone = ('alz034', 0.0041703015271169043) + +[35501] +centroid = (0.59025132893563559, -1.5235458831669877) +station = ('kjfx', 0.0014372024536646354) +zone = ('alz015', 0.00027862937135402432) + +[35503] +centroid = (0.59238637275630768, -1.5236141429940331) +station = ('kjfx', 0.00074523577593580835) +zone = ('alz015', 0.002405762264220766) + +[35504] +centroid = (0.59156425286544823, -1.5214176810369833) +station = ('kjfx', 0.0020190053878843708) +zone = ('alz015', 0.0024226942369944653) + +[35540] +centroid = (0.59750486494704635, -1.5221009599858466) +station = ('k1m4', 0.0056868773861661111) +zone = ('alz014', 0.002793663256503388) + +[35541] +centroid = (0.59484864835843632, -1.5215348798962547) +station = ('kjfx', 0.0037148678083490276) +zone = ('alz014', 0.0030655875412560311) + +[35542] +centroid = (0.58850905400983222, -1.5302357650964669) +station = ('kjfx', 0.0061765039187694068) +zone = ('alz013', 0.0009131211705678137) + +[35543] +centroid = (0.59709731311341319, -1.5316736895073075) +station = ('k1m4', 0.0025811307536682329) +zone = ('alz011', 0.0022682239643114876) + +[35544] +centroid = (0.59271355217788657, -1.5361888388289244) +station = ('km40', 0.0070074607039674669) +zone = ('alz012', 0.0033603520918163861) + +[35545] +centroid = (0.58733027608632782, -1.5347531833461114) +station = ('ktcl', 0.0088932852446027312) +zone = ('alz012', 0.0032398420457324445) + +[35546] +centroid = (0.5867696588772946, -1.5279085954317353) +station = ('kjfx', 0.0059483172900234174) +zone = ('alz013', 0.0033579594201180517) + +[35548] +centroid = (0.59439664298875472, -1.5315348834718963) +station = ('k1m4', 0.0044688011315813835) +zone = ('alz011', 0.0024201249115812875) + +[35549] +centroid = (0.5908173915719348, -1.5279468355956465) +station = ('kjfx', 0.0035082440396141195) +zone = ('alz013', 0.0036163771928018965) + +[35550] +centroid = (0.589008165816025, -1.5212584371960312) +station = ('kjfx', 0.0034193137387967688) +zone = ('alz015', 0.0021946163759355682) + +[35552] +centroid = (0.59467339984824352, -1.5383716697645162) +station = ('km40', 0.0061072436743369665) +zone = ('alz011', 0.0038538132642352862) + +[35553] +centroid = (0.59560947228596561, -1.5250985804294392) +station = ('kjfx', 0.0040770652460372231) +zone = ('alz014', 0.00042266063200441462) + +[35554] +centroid = (0.59141750558194062, -1.5301594418482771) +station = ('kjfx', 0.0052457832082925728) +zone = ('alz013', 0.0030325197243502994) + +[35555] +centroid = (0.58745185572202163, -1.5326720003861556) +station = ('ktcl', 0.0082381687873179128) +zone = ('alz013', 0.0015617044469579283) + +[35559] +centroid = (0.59176234773554959, -1.5311449420104157) +station = ('k1m4', 0.0067974248174875835) +zone = ('alz013', 0.00322016037995288) + +[35563] +centroid = (0.59301945603588346, -1.534212026558238) +station = ('k1m4', 0.0068674546963906858) +zone = ('alz011', 0.0027871829503242451) + +[35564] +centroid = (0.59792243497058606, -1.5331944646977402) +station = ('k1m4', 0.0035584598631736206) +zone = ('alz011', 0.0022092601604098059) + +[35565] +centroid = (0.59755289640806131, -1.5282709257844491) +station = ('k1m4', 0.00091955790841125019) +zone = ('alz014', 0.003141314421987861) + +[35570] +centroid = (0.59624951942925697, -1.5357702914210034) +station = ('k1m4', 0.0060305077402363124) +zone = ('alz011', 0.0015975680697877723) + +[35571] +centroid = (0.59984714916310033, -1.5349142597827778) +station = ('k1m4', 0.0051907302363146156) +zone = ('alz003', 0.0019259569609917885) + +[35572] +centroid = (0.59708928459885402, -1.5234604842066877) +station = ('k1m4', 0.0046681929231462329) +zone = ('alz014', 0.0016396010391659115) + +[35574] +centroid = (0.58586475802001303, -1.5350169549559654) +station = ('ktcl', 0.0078168569336533825) +zone = ('alz013', 0.004073833786640813) + +[35575] +centroid = (0.59404272512303535, -1.5286974493470518) +station = ('k1m4', 0.0042647316233900608) +zone = ('alz014', 0.0036714849771620484) + +[35576] +centroid = (0.58600096351483877, -1.5384004153372963) +station = ('kcbm', 0.004636555754189111) +zone = ('alz012', 0.0036220669419024729) + +[35577] +centroid = (0.59519877885967887, -1.5292584854351052) +station = ('k1m4', 0.0031180395108296004) +zone = ('alz014', 0.0036519644424570685) + +[35578] +centroid = (0.5930713097679603, -1.5265765077867357) +station = ('kjfx', 0.0026647759406117745) +zone = ('alz014', 0.0032352890220890629) + +[35579] +centroid = (0.58706427045503129, -1.5247244341976893) +station = ('kjfx', 0.0046597912977282187) +zone = ('alz015', 0.0030562912899793683) + +[35580] +centroid = (0.58770985029205147, -1.5228966206852457) +station = ('kjfx', 0.0040348305034362975) +zone = ('alz015', 0.0023502403762393725) + +[35581] +centroid = (0.5996935950955099, -1.5308823397711608) +station = ('k1m4', 0.0021392671467628209) +zone = ('alz003', 0.0023622984344731385) + +[35582] +centroid = (0.6019082084767805, -1.5378602010272191) +station = ('kmsl', 0.0086817627398573256) +zone = ('alz003', 0.003951494804885383) + +[35584] +centroid = (0.59025932254360958, -1.5199726007762095) +station = ('kjfx', 0.0035116159842668989) +zone = ('alz015', 0.003047712043399332) + +[35585] +centroid = (0.60075690203570231, -1.5329660185519467) +station = ('k1m4', 0.0041489136793758279) +zone = ('alz003', 0.00039894337773271383) + +[35586] +centroid = (0.59128589030304768, -1.5382365812804115) +station = ('km40', 0.0051476590555922857) +zone = ('alz012', 0.0018114429735730611) + +[35587] +centroid = (0.58984370728883229, -1.526410230268898) +station = ('kjfx', 0.0028026688550710889) +zone = ('alz015', 0.0023182837142686386) + +[35592] +centroid = (0.58898053725396593, -1.5373699031337489) +station = ('km40', 0.0062796697091431174) +zone = ('alz012', 0.00060378015701041199) + +[35593] +centroid = (0.59933037462487737, -1.5375586953989371) +station = ('k1m4', 0.0072145592946791228) +zone = ('msz017', 0.0039665842422574324) + +[35594] +centroid = (0.59223721691843223, -1.5319517379104426) +station = ('k1m4', 0.006567481146588389) +zone = ('alz013', 0.0037268998990096181) + +[35601] +centroid = (0.60402382678287792, -1.5186293430239972) +station = ('kdcu', 0.0011426733647868339) +zone = ('alz007', 0.0035275697020311723) + +[35603] +centroid = (0.60275734606446074, -1.5179342481960978) +station = ('kdcu', 0.0020223662998997975) +zone = ('alz007', 0.0022232692246948282) + +[35610] +centroid = (0.61007038035007211, -1.5227292436099795) +station = ('k9a4', 0.0054820429602275272) +zone = ('alz005', 0.0045504173257600641) + +[35611] +centroid = (0.60691787938865738, -1.5199050565341574) +station = ('kdcu', 0.0028939964131556757) +zone = ('alz005', 0.001604248193850921) + +[35613] +centroid = (0.60772647297781379, -1.5163838896748438) +station = ('kdcu', 0.003124166213351611) +zone = ('alz005', 0.0014280329520345745) + +[35614] +centroid = (0.60831220547478304, -1.5182638710786294) +station = ('kdcu', 0.0036018464611322397) +zone = ('alz005', 0.00077174298355861353) + +[35615] +centroid = (0.60498648058510796, -1.5162599189380745) +station = ('kdcu', 0.0010968896023802177) +zone = ('alz005', 0.0029812249381215594) + +[35616] +centroid = (0.60631872530974018, -1.5362280040173391) +station = ('kmsl', 0.0060172767916067647) +zone = ('alz002', 0.0031512759302254551) + +[35618] +centroid = (0.60460653986024115, -1.5237594067476765) +station = ('k9a4', 0.00052470394526788356) +zone = ('alz004', 0.0020857683199333628) + +[35619] +centroid = (0.60009172215118223, -1.5210911822938127) +station = ('k3a1', 0.0046793409939871961) +zone = ('alz004', 0.0033374341836976775) + +[35620] +centroid = (0.60965767979514551, -1.5187887439445817) +station = ('kdcu', 0.0050032725254897216) +zone = ('alz005', 0.002179160267760123) + +[35621] +centroid = (0.59950267352863418, -1.5137159619269527) +station = ('k3a1', 0.0023270193544927447) +zone = ('alz007', 0.0025464252850624031) + +[35622] +centroid = (0.59946108233255913, -1.5166729860121442) +station = ('k3a1', 0.001481674609661261) +zone = ('alz007', 0.0019803271709943758) + +[35630] +centroid = (0.60777565635613495, -1.5299844551374724) +station = ('kmsl', 0.0015502866597282858) +zone = ('alz001', 0.0013743621248787983) + +[35633] +centroid = (0.60868533941556691, -1.5323706518375064) +station = ('kmsl', 0.003584347608581982) +zone = ('alz001', 0.0021120150149287137) + +[35634] +centroid = (0.60945623389288028, -1.5291623352466128) +station = ('kmsl', 0.0029616607993359898) +zone = ('alz001', 0.00064925117861939119) + +[35640] +centroid = (0.60110364659819615, -1.5174534274404659) +station = ('k3a1', 0.003245531686652715) +zone = ('alz007', 0.001325494496136532) + +[35643] +centroid = (0.60515062880125792, -1.5219608100469113) +station = ('k9a4', 0.0020208835226537885) +zone = ('alz004', 0.0030597645352839304) + +[35645] +centroid = (0.60917310658162171, -1.5271799379223201) +station = ('kmsl', 0.0030246497883210169) +zone = ('alz001', 0.0021964275326726429) + +[35646] +centroid = (0.60522963985649569, -1.5275705077023314) +station = ('kmsl', 0.0016817254719657126) +zone = ('alz002', 0.0040612209579449169) + +[35647] +centroid = (0.61030071145145781, -1.5204790778718458) +station = ('kdcu', 0.0060387728365410044) +zone = ('alz005', 0.003367156348536814) + +[35648] +centroid = (0.6101437190852409, -1.5252054643928312) +station = ('kmsl', 0.0047430232900195152) +zone = ('alz001', 0.0039425984067938064) + +[35649] +centroid = (0.60419143075094683, -1.5161550246500297) +station = ('khsv', 0.0013575352662617295) +zone = ('alz007', 0.0028740865913167986) + +[35650] +centroid = (0.60121763405164375, -1.5238224131336735) +station = ('k9a4', 0.0035676348535724151) +zone = ('alz004', 0.0013053896896828702) + +[35651] +centroid = (0.60161249734161504, -1.5270880812437875) +station = ('k1m4', 0.0036355726660879896) +zone = ('alz004', 0.0028083747109715557) + +[35652] +centroid = (0.60819041639957894, -1.5238506002010934) +station = ('k9a4', 0.0034603070886844974) +zone = ('alz001', 0.0050202361474887833) + +[35653] +centroid = (0.60245608478227397, -1.5336551094472191) +station = ('kmsl', 0.0056233543572412094) +zone = ('alz003', 0.001395161931876049) + +[35654] +centroid = (0.60210466273738494, -1.5294765119652642) +station = ('k1m4', 0.0038292601403668936) +zone = ('alz003', 0.0031948495713197255) + +[35660] +centroid = (0.6065978034571341, -1.5306758324140648) +station = ('kmsl', 0.0014552991706295538) +zone = ('alz002', 0.0017695055182502702) + +[35661] +centroid = (0.60682525476525406, -1.528259197171876) +station = ('kmsl', 0.00062372952775731057) +zone = ('alz001', 0.0026661103539755118) + +[35670] +centroid = (0.6013562655541298, -1.5137126108947889) +station = ('khsv', 0.0034877603122734258) +zone = ('alz007', 0.0017784076794620087) + +[35671] +centroid = (0.6051452880937469, -1.5172846017419206) +station = ('kdcu', 0.000451466811952413) +zone = ('alz005', 0.0024993761480830842) + +[35672] +centroid = (0.60473098183590845, -1.5255309857516208) +station = ('k9a4', 0.00095495782407487581) +zone = ('alz004', 0.002599929063484606) + +[35673] +centroid = (0.603470906475846, -1.5208336415093884) +station = ('k9a4', 0.0031821962236381566) +zone = ('alz004', 0.002670342028800688) + +[35674] +centroid = (0.60497318117620769, -1.532083196109703) +station = ('kmsl', 0.0030246856833881703) +zone = ('alz002', 0.00074223485829188758) + +[35677] +centroid = (0.61009217951242944, -1.536353213937877) +station = ('kmsl', 0.0070861931012295258) +zone = ('tnz092', 0.0048037271574924538) + +[35739] +centroid = (0.61031696046679385, -1.5147893394169294) +station = ('kmdq', 0.0038337987607287714) +zone = ('alz005', 0.0038821021146835631) + +[35740] +centroid = (0.61028660919110167, -1.4970988566516399) +station = ('kbgf', 0.0055253559331943699) +zone = ('tnz098', 0.0036030924235335555) + +[35741] +centroid = (0.60593140184213756, -1.5094177046714814) +station = ('kmdq', 0.0027289337782087108) +zone = ('alz006', 0.0012491012245339588) + +[35744] +centroid = (0.60406739020100764, -1.4993959717466523) +station = ('k4a6', 0.0017820976239483854) +zone = ('alz010', 0.0030325679812497073) + +[35745] +centroid = (0.60988146591183623, -1.504128170214047) +station = ('kbgf', 0.0043952604336691559) +zone = ('alz009', 0.0038636373054183131) + +[35746] +centroid = (0.60787407547265504, -1.5010871259786647) +station = ('k4a6', 0.0025952970422228835) +zone = ('alz009', 0.00086431490157952418) + +[35747] +centroid = (0.60205033063777036, -1.5062015340989539) +station = ('k8a0', 0.004685498815857188) +zone = ('alz008', 0.0022374547563704596) + +[35748] +centroid = (0.60599976638893827, -1.5077789452236137) +station = ('kmdq', 0.0034310862707537834) +zone = ('alz006', 0.0024195901276244749) + +[35749] +centroid = (0.60775000001613078, -1.5142065565263958) +station = ('khua', 0.0027092001772997878) +zone = ('alz006', 0.0031432390112584338) + +[35750] +centroid = (0.6101427417008598, -1.5113544267292494) +station = ('kmdq', 0.0017774785464309897) +zone = ('tnz096', 0.0031755974054266454) + +[35751] +centroid = (0.60756930607867177, -1.5058082939651869) +station = ('k4a6', 0.0045781506483840309) +zone = ('alz009', 0.0040108973366126078) + +[35752] +centroid = (0.6064303565686977, -1.5000414992237947) +station = ('k4a6', 0.0013863836073650254) +zone = ('alz009', 0.00096170298004503291) + +[35754] +centroid = (0.60258317965840413, -1.511533864029647) +station = ('khua', 0.0029068736302466248) +zone = ('alz007', 0.0037875786246317992) + +[35755] +centroid = (0.60193445822873037, -1.5036060026084355) +station = ('k4a6', 0.0039820547090370839) +zone = ('alz008', 0.0030909899732489508) + +[35756] +centroid = (0.60464828813594884, -1.5152619920316619) +station = ('khsv', 0.00051104189807741826) +zone = ('alz007', 0.0033587019904177729) + +[35757] +centroid = (0.60709815444709581, -1.5139924918936387) +station = ('khua', 0.0020455923700202733) +zone = ('alz006', 0.002822209371867898) + +[35758] +centroid = (0.60582614103494981, -1.5140196317635071) +station = ('khua', 0.0011048284217728768) +zone = ('alz006', 0.0029631023525576229) + +[35759] +centroid = (0.60855147266193899, -1.5105160752763462) +station = ('kmdq', 0.00018987787533348918) +zone = ('alz006', 0.0018218231058865558) + +[35760] +centroid = (0.60290489619942433, -1.5076827077686588) +station = ('khua', 0.0048721472125251245) +zone = ('alz008', 0.0032833143119549656) + +[35761] +centroid = (0.60940275700459923, -1.5081252883603795) +station = ('kmdq', 0.002324911730732205) +zone = ('alz006', 0.0033495477148255304) + +[35763] +centroid = (0.60426819033144963, -1.5090491958532151) +station = ('khua', 0.0032874449114665477) +zone = ('alz006', 0.0027676337728953543) + +[35764] +centroid = (0.60608828948859939, -1.5063963826566464) +station = ('kmdq', 0.0042542638370719685) +zone = ('alz006', 0.0035019714073590562) + +[35765] +centroid = (0.60546018039739169, -1.4977383278362784) +station = ('k4a6', 0.0026742591497837015) +zone = ('alz009', 0.0030781258741988645) + +[35766] +centroid = (0.60855255476607528, -1.5062164043041808) +station = ('kmdq', 0.0036873491681890694) +zone = ('alz006', 0.0040235606656408816) + +[35768] +centroid = (0.60683162521702383, -1.5028016676226539) +station = ('k4a6', 0.0021542756861185966) +zone = ('alz009', 0.0015149167317129507) + +[35769] +centroid = (0.60384873535231776, -1.5028124188508463) +station = ('k4a6', 0.002077052204528136) +zone = ('alz009', 0.0035097289728378048) + +[35771] +centroid = (0.60281225412272843, -1.501077805920459) +station = ('k4a6', 0.0024691596296653631) +zone = ('alz010', 0.0032057857913056608) + +[35772] +centroid = (0.60977234792700152, -1.5000941907139127) +station = ('kbgf', 0.0045128936317729877) +zone = ('alz009', 0.0028496170129155974) + +[35773] +centroid = (0.60896403359052542, -1.5133390580749846) +station = ('kmdq', 0.0022193662369316058) +zone = ('alz006', 0.0031773983046589011) + +[35774] +centroid = (0.60676800796578856, -1.5049367638032034) +station = ('k4a6', 0.0035739551761464951) +zone = ('alz009', 0.0032669789628031447) + +[35775] +centroid = (0.60288793159909493, -1.5133044656492098) +station = ('khsv', 0.0021743075524419198) +zone = ('alz007', 0.0026275041014053825) + +[35776] +centroid = (0.60492071657889279, -1.5051617192904931) +station = ('k4a6', 0.0034553856946744044) +zone = ('alz009', 0.0040313231013898183) + +[35801] +centroid = (0.60607027769071875, -1.5107721150776141) +station = ('khua', 0.0018831732641646831) +zone = ('alz006', 0.00067776273691646496) + +[35802] +centroid = (0.60507444517940834, -1.5107374877452544) +station = ('khua', 0.0017506120651193801) +zone = ('alz006', 0.0016607853073336812) + +[35803] +centroid = (0.60325012232546871, -1.5100467213339002) +station = ('khua', 0.0030737783258094693) +zone = ('alz006', 0.0035085772492282285) + +[35805] +centroid = (0.60579275288635914, -1.5118092595323189) +station = ('khua', 0.00099845016563054586) +zone = ('alz006', 0.0013748002302226621) + +[35806] +centroid = (0.60672074444964452, -1.5129392380499378) +station = ('khua', 0.0014423680606981055) +zone = ('alz006', 0.0019332897155270568) + +[35808] +centroid = (0.60446035108209417, -1.5124858713234397) +station = ('khua', 0.00087322981336280094) +zone = ('alz006', 0.0027556813942879112) + +[35810] +centroid = (0.607431285441424, -1.5114814168856245) +station = ('kmdq', 0.0011967309156252152) +zone = ('alz006', 0.0010158346021742202) + +[35811] +centroid = (0.6072934916969791, -1.5098834283290834) +station = ('kmdq', 0.0013368012375525404) +zone = ('alz006', 0.00080613903407137657) + +[35816] +centroid = (0.60632657929137412, -1.5119918384253703) +station = ('khua', 0.0012626233387659723) +zone = ('alz006', 0.0012237186192978406) + +[35824] +centroid = (0.60466802780978901, -1.5141100921786381) +station = ('khsv', 0.00045686198251174891) +zone = ('alz006', 0.0035563743840828386) + +[35896] +centroid = (0.60658347430397519, -1.5124087975836715) +station = ('khua', 0.0013531137114224305) +zone = ('alz006', 0.0015047742166869919) + +[35901] +centroid = (0.59427356236990403, -1.4998362135971754) +station = ('kgad', 0.0025949222590947664) +zone = ('alz018', 0.0014553164043661423) + +[35903] +centroid = (0.59383553708753112, -1.4986043253045327) +station = ('kgad', 0.0033333249813762658) +zone = ('alz018', 0.0025017342638641287) + +[35904] +centroid = (0.59472115205657805, -1.5007728270869656) +station = ('kgad', 0.0023408789467898295) +zone = ('alz018', 0.00085312633331369951) + +[35905] +centroid = (0.59274922670779728, -1.4996256570762145) +station = ('kgad', 0.0023335864228704456) +zone = ('alz018', 0.0021830020405824409) + +[35906] +centroid = (0.59214045586470165, -1.5026431917265728) +station = ('kgad', 0.00071048744410880712) +zone = ('alz018', 0.0022392405468859237) + +[35907] +centroid = (0.59150676171988759, -1.501297665046333) +station = ('kgad', 0.0016266587005893261) +zone = ('alz018', 0.0027067378788273818) + +[35950] +centroid = (0.59777094039151291, -1.5055401241256179) +station = ('k8a0', 0.00037279864069292675) +zone = ('alz008', 0.002147287106925075) + +[35951] +centroid = (0.59932651744723053, -1.5038354610451952) +station = ('k8a0', 0.0023346234356148125) +zone = ('alz008', 0.0021201873340212759) + +[35952] +centroid = (0.59432623640672932, -1.5064065579261856) +station = ('k8a0', 0.003182036817788011) +zone = ('alz018', 0.0039922841284278686) + +[35953] +centroid = (0.59008915294154018, -1.5049929110452402) +station = ('kgad', 0.0034659496015124322) +zone = ('alz026', 0.0020509752579920501) + +[35954] +centroid = (0.594978448494907, -1.5019858309171017) +station = ('kgad', 0.0021806614440431538) +zone = ('alz018', 0.0008421404761331969) + +[35956] +centroid = (0.59596267456669172, -1.5035444099391326) +station = ('k8a0', 0.0021338248275519357) +zone = ('alz018', 0.0023907931246595093) + +[35957] +centroid = (0.5968355660854916, -1.5044196751057153) +station = ('k8a0', 0.0010213092329433115) +zone = ('alz008', 0.0033739029185784501) + +[35958] +centroid = (0.60939924889280273, -1.494803940671485) +station = ('k4a6', 0.0065355864968197654) +zone = ('gaz001', 0.0022913155202744285) + +[35959] +centroid = (0.59764232707893339, -1.4941407504623123) +station = ('k4a9', 0.0043540547802471529) +zone = ('alz020', 0.0011601560137737316) + +[35960] +centroid = (0.5955818786304915, -1.4934879624154813) +station = ('k4a9', 0.0064724330976115903) +zone = ('alz020', 0.0010217026951673267) + +[35961] +centroid = (0.59871680412633876, -1.498299206844699) +station = ('k4a9', 0.0034643009975283186) +zone = ('alz010', 0.0027870057437047084) + +[35962] +centroid = (0.59871566966232492, -1.5016191721478427) +station = ('k8a0', 0.003420787048241817) +zone = ('alz010', 0.0043134163970537792) + +[35963] +centroid = (0.59969141343394483, -1.4997125570196714) +station = ('k4a9', 0.0035675817696680695) +zone = ('alz010', 0.0024877488347545733) + +[35966] +centroid = (0.60719388575656774, -1.4952506576935332) +station = ('k4a9', 0.0055621055805908657) +zone = ('gaz001', 0.0026483988382911441) + +[35967] +centroid = (0.60052700726662966, -1.4956523801274646) +station = ('k4a9', 0.0012140254990884462) +zone = ('alz010', 0.0018204554112377649) + +[35968] +centroid = (0.60303136275702385, -1.4964219481545467) +station = ('k4a9', 0.0013759539524996354) +zone = ('alz010', 0.0018514611596124472) + +[35971] +centroid = (0.60136176334127356, -1.5000255120078467) +station = ('k4a9', 0.0032351052981592601) +zone = ('alz010', 0.0020309725779063385) + +[35972] +centroid = (0.5933072084696599, -1.5052918510395219) +station = ('kgad', 0.0024144261536633359) +zone = ('alz018', 0.003195813483970873) + +[35973] +centroid = (0.59941615755761291, -1.4931555819127316) +station = ('k4a9', 0.0033315901529935112) +zone = ('alz020', 0.0030278765577033922) + +[35974] +centroid = (0.5997431449929741, -1.5011627685484461) +station = ('k8a0', 0.0042384904709351755) +zone = ('alz010', 0.0034181385652515481) + +[35975] +centroid = (0.60102966209120412, -1.5020367770779672) +station = ('k4a6', 0.0043381860203579418) +zone = ('alz010', 0.0037107981747238295) + +[35976] +centroid = (0.59944671827281537, -1.5067431795790178) +station = ('k8a0', 0.0023053037082767409) +zone = ('alz008', 0.00049996174571491868) + +[35978] +centroid = (0.60463088720330649, -1.4962529479230757) +station = ('k4a9', 0.0029548829530202068) +zone = ('alz010', 0.0033715265801201031) + +[35979] +centroid = (0.60793873992144132, -1.4941702116200859) +station = ('k4a9', 0.0064630033821803257) +zone = ('gaz001', 0.001555517263850734) + +[35980] +centroid = (0.59641541297465905, -1.5077829245743084) +station = ('k8a0', 0.002174124545929319) +zone = ('alz008', 0.0036047277300013465) + +[35981] +centroid = (0.60601924426339049, -1.4948535952887043) +station = ('k4a9', 0.0044647227837187877) +zone = ('gaz001', 0.0030994215614832872) + +[35983] +centroid = (0.59643080677866156, -1.4968819820387873) +station = ('k4a9', 0.0052847662681480946) +zone = ('alz020', 0.0023285609700737153) + +[35984] +centroid = (0.60278162359435594, -1.4933710602621828) +station = ('k4a9', 0.0025202066817998411) +zone = ('alz010', 0.0037080247628729504) + +[35986] +centroid = (0.60214445624433033, -1.4981188794263829) +station = ('k4a9', 0.0017119615859467726) +zone = ('alz010', 0.00084244247992202226) + +[35987] +centroid = (0.59189996694706937, -1.5052104837897939) +station = ('kgad', 0.0024813985278435563) +zone = ('alz026', 0.0036065873305428809) + +[35988] +centroid = (0.60315477498843229, -1.4974443620303648) +station = ('k4a9', 0.0018359581664055262) +zone = ('alz010', 0.0017206347259614162) + +[35989] +centroid = (0.60411954063905726, -1.4943486017229324) +station = ('k4a9', 0.0028444893531022778) +zone = ('alz010', 0.0037699051801520435) + +[35990] +centroid = (0.59459492984507378, -1.5063009655064399) +station = ('k8a0', 0.0029000534440366925) +zone = ('alz018', 0.0039221979105322075) + +[36003] +centroid = (0.56639398705781208, -1.5136139125255885) +station = ('kmxf', 0.0053948980125865702) +zone = ('alz041', 0.0018740717016426003) + +[36005] +centroid = (0.55655432688055106, -1.4960892534925314) +station = ('kprn', 0.0038758038502867171) +zone = ('alz046', 0.0037054518440001226) + +[36006] +centroid = (0.56971133436707766, -1.5135955167552726) +station = ('kmxf', 0.0069165147331005919) +zone = ('alz041', 0.0022081611278115263) + +[36009] +centroid = (0.55143295489654653, -1.5062431776549063) +station = ('k79j', 0.0052876396252838657) +zone = ('alz058', 0.0023930952453728228) + +[36010] +centroid = (0.55263503296556515, -1.4974541533274686) +station = ('kprn', 0.0030770449565276745) +zone = ('alz049', 0.003221175315004805) + +[36013] +centroid = (0.56347377196654524, -1.5007254588510666) +station = ('kmxf', 0.0058826772090350985) +zone = ('alz044', 0.0034696951874508531) + +[36016] +centroid = (0.55589125884442592, -1.4907678493229557) +station = ('keuf', 0.0045465948457908663) +zone = ('alz050', 0.00046476659667703284) + +[36017] +centroid = (0.55291058554786998, -1.4932639144994029) +station = ('kprn', 0.0060989407649413583) +zone = ('alz050', 0.0041199112921462373) + +[36020] +centroid = (0.56687201528664077, -1.5066205178391876) +station = ('kmxf', 0.0017954317766148702) +zone = ('alz043', 0.0032749527128809095) + +[36022] +centroid = (0.56938747107107768, -1.508061828188777) +station = ('kmxf', 0.0042306309266427131) +zone = ('alz043', 0.0037983726084616261) + +[36024] +centroid = (0.57023044764649833, -1.5014198555472649) +station = ('kalx', 0.0043370614120016877) +zone = ('alz043', 0.0022480662789516608) + +[36025] +centroid = (0.56800068480732036, -1.5066549880919144) +station = ('kmxf', 0.0028713103157846889) +zone = ('alz043', 0.0027432451156510669) + +[36026] +centroid = (0.57204003992155106, -1.5032694158621884) +station = ('kalx', 0.003462661758435205) +zone = ('alz043', 0.0031334795979822538) + +[36027] +centroid = (0.55956378065647239, -1.4855653369820261) +station = ('keuf', 0.0019202780683405952) +zone = ('gaz120', 0.0036706109596874267) + +[36028] +centroid = (0.54969965096309847, -1.5078388449235423) +station = ('k79j', 0.0034145100866700092) +zone = ('alz058', 0.0042844002861751234) + +[36029] +centroid = (0.56167962585537257, -1.4998164739233353) +station = ('ktoi', 0.0056384557682178822) +zone = ('alz046', 0.0035080465245977271) + +[36030] +centroid = (0.55625238491995599, -1.5162760806869482) +station = ('kgzh', 0.0083379926178959955) +zone = ('alz057', 0.0035668163211955636) + +[36031] +centroid = (0.56281841828571388, -1.4964005678712096) +station = ('ktoi', 0.0078199509506741514) +zone = ('alz045', 0.0025125142108446486) + +[36032] +centroid = (0.55841163645735337, -1.5109077446137864) +station = ('kmgm', 0.0058835315840939685) +zone = ('alz042', 0.0030424495307800766) + +[36033] +centroid = (0.55277568904998342, -1.5144328908237945) +station = ('kgzh', 0.0060897333291712293) +zone = ('alz057', 0.0019445327113602597) + +[36034] +centroid = (0.55189134817129037, -1.5029241199229739) +station = ('kprn', 0.0037085274818043205) +zone = ('alz058', 0.0035711962284654384) + +[36035] +centroid = (0.55481756719518405, -1.5031860240305281) +station = ('ktoi', 0.0021190653580219969) +zone = ('alz058', 0.0029545662229610446) + +[36036] +centroid = (0.55805052783511566, -1.5038049352365777) +station = ('ktoi', 0.0028495754188298749) +zone = ('alz044', 0.0043513526242386471) + +[36037] +centroid = (0.55499740592130953, -1.5119545581925475) +station = ('kgzh', 0.0091521771452990463) +zone = ('alz057', 0.0011179604755216018) + +[36038] +centroid = (0.54864561172123405, -1.5095571390254232) +station = ('k79j', 0.00285387122673761) +zone = ('alz060', 0.0033106814788640688) + +[36039] +centroid = (0.56372298753043748, -1.4981480438781838) +station = ('ktoi', 0.0079961246693646647) +zone = ('alz045', 0.002622490600182068) + +[36040] +centroid = (0.56154090708642401, -1.5129242107650782) +station = ('kmgm', 0.0047372495279336966) +zone = ('alz042', 0.00060496976276296652) + +[36041] +centroid = (0.55700088682296633, -1.5065678263490698) +station = ('ktoi', 0.0045694049030169676) +zone = ('alz058', 0.0031831407826233326) + +[36042] +centroid = (0.55621232961362277, -1.5090114792880795) +station = ('kmgm', 0.007581098265059677) +zone = ('alz058', 0.0032314835735663895) + +[36043] +centroid = (0.56201614278844958, -1.5083265771830121) +station = ('kmgm', 0.0017521748404914952) +zone = ('alz044', 0.003165073933943093) + +[36046] +centroid = (0.55890268484240191, -1.5068552820768735) +station = ('kmgm', 0.0049289309882721895) +zone = ('alz044', 0.0039372036846286118) + +[36047] +centroid = (0.55981866854043361, -1.5100214140597461) +station = ('kmgm', 0.0042915978967073345) +zone = ('alz042', 0.0023968295556911399) + +[36048] +centroid = (0.55509273580505347, -1.4938667512230417) +station = ('kprn', 0.005319665307468727) +zone = ('alz050', 0.0031628801142519021) + +[36049] +centroid = (0.55445869259438896, -1.5058222042393254) +station = ('ktoi', 0.0042300039905882819) +zone = ('alz058', 0.00083662862567490898) + +[36051] +centroid = (0.57046884216902827, -1.5097101520409455) +station = ('kmxf', 0.0056263052445408674) +zone = ('alz041', 0.0033632212956408261) + +[36052] +centroid = (0.56171838961805931, -1.5018258889444489) +station = ('ktoi', 0.0055598547046345707) +zone = ('alz044', 0.0024357775419573762) + +[36053] +centroid = (0.55901569491146863, -1.4912716386115439) +station = ('keuf', 0.0048088932049228476) +zone = ('alz050', 0.0028843742320736401) + +[36054] +centroid = (0.56691573578440324, -1.5073764897513964) +station = ('kmxf', 0.0017199543268653238) +zone = ('alz043', 0.0037701016863211693) + +[36064] +centroid = (0.56368261806483888, -1.5023425064030391) +station = ('kmxf', 0.0045192525485594605) +zone = ('alz044', 0.0023334568417295639) + +[36066] +centroid = (0.56687742580732192, -1.5083833701968719) +station = ('kmxf', 0.0018818213155663707) +zone = ('alz041', 0.0033615499172144777) + +[36067] +centroid = (0.56739570132870165, -1.5108425914728094) +station = ('kmxf', 0.0036557821418111767) +zone = ('alz041', 0.0012298402742370476) + +[36069] +centroid = (0.56014837868942791, -1.5035987943986249) +station = ('ktoi', 0.0044328705975238353) +zone = ('alz044', 0.0023597909646429164) + +[36071] +centroid = (0.55338604814269832, -1.507925273628101) +station = ('ktoi', 0.0063055570748735299) +zone = ('alz058', 0.0013223230875110926) + +[36075] +centroid = (0.56510949454151427, -1.4996514704958517) +station = ('kmxf', 0.0065296396933852705) +zone = ('alz045', 0.0034088194776755931) + +[36078] +centroid = (0.56789954297716738, -1.4998330370979367) +station = ('kalx', 0.0065842070315470071) +zone = ('alz043', 0.0033237239459410748) + +[36079] +centroid = (0.55438910631711191, -1.501035743485486) +station = ('kprn', 0.00085483883519954897) +zone = ('alz049', 0.0011378597455350451) + +[36080] +centroid = (0.57075518088611044, -1.5058937801919496) +station = ('kmxf', 0.0056993168651139859) +zone = ('alz043', 0.0026734062977364888) + +[36081] +centroid = (0.55682539396667829, -1.4992055737785521) +station = ('ktoi', 0.0018717834791768262) +zone = ('alz049', 0.0018789057862839413) + +[36082] +centroid = (0.55506289067484438, -1.5001913880999562) +station = ('kprn', 0.00034597791624925949) +zone = ('alz049', 0.00020382881807792141) + +[36083] +centroid = (0.56523821257384887, -1.495449311068995) +station = ('kauo', 0.0054534096513899222) +zone = ('alz045', 0.00014252289931201845) + +[36088] +centroid = (0.56575338140915998, -1.4961017151433906) +station = ('kauo', 0.0054947980372997193) +zone = ('alz045', 0.0006541878007905674) + +[36089] +centroid = (0.56116360180872804, -1.495708893888644) +station = ('ktoi', 0.0068646038781555955) +zone = ('alz046', 0.00094374734484019697) + +[36091] +centroid = (0.5716031316498994, -1.5098589937195557) +station = ('kmxf', 0.0067386413772458006) +zone = ('alz035', 0.0035224281386993547) + +[36092] +centroid = (0.56927416429603817, -1.5045015135943414) +station = ('kmxf', 0.0047474027738229939) +zone = ('alz043', 0.00084858193374572055) + +[36093] +centroid = (0.5671371308000186, -1.5033155100077336) +station = ('kmxf', 0.0039435066713180986) +zone = ('alz043', 0.0017955291207587133) + +[36104] +centroid = (0.5654660827609892, -1.5066816916294701) +station = ('kmxf', 0.00065072887885954704) +zone = ('alz044', 0.0035770259360305831) + +[36105] +centroid = (0.56216533353291009, -1.5060218873590459) +station = ('kmgm', 0.0022765437048908547) +zone = ('alz044', 0.0012114663323480419) + +[36106] +centroid = (0.5646632313050719, -1.5054788630688731) +station = ('kmxf', 0.0016939225484204005) +zone = ('alz044', 0.0024293134552928974) + +[36107] +centroid = (0.5652019969918699, -1.505857913675821) +station = ('kmxf', 0.0012876673983312735) +zone = ('alz044', 0.0030431754439476737) + +[36108] +centroid = (0.56442377213169825, -1.5079837945179202) +station = ('kmgm', 0.00068261903587548301) +zone = ('alz044', 0.0035298136281464829) + +[36109] +centroid = (0.56529394093686502, -1.5052094365922426) +station = ('kmxf', 0.0018378489327364746) +zone = ('alz044', 0.0029891330624020724) + +[36110] +centroid = (0.56629968691832677, -1.5054472202495341) +station = ('kmxf', 0.0019718619025965527) +zone = ('alz043', 0.0030520947510074229) + +[36111] +centroid = (0.56437977238125547, -1.5057186538548046) +station = ('kmxf', 0.0016253166929459622) +zone = ('alz044', 0.0022382937917091628) + +[36112] +centroid = (0.56515202821538535, -1.5070768167188291) +station = ('kmxf', 0.00026199535394961268) +zone = ('alz044', 0.0034956320530920141) + +[36113] +centroid = (0.56518019782951257, -1.5073254912306531) +station = ('kmxf', 5.0763560819545407e-05) +zone = ('alz044', 0.0036469264955027543) + +[36115] +centroid = (0.56560481898323023, -1.5052889188863785) +station = ('kmxf', 0.0018146321990596067) +zone = ('alz044', 0.0033069297067726783) + +[36116] +centroid = (0.56328037203213166, -1.5047264167217531) +station = ('kmxf', 0.002950730758835575) +zone = ('alz044', 0.00093730326390427355) + +[36117] +centroid = (0.56511541120767861, -1.5035140761167329) +station = ('kmxf', 0.0032680590363064945) +zone = ('alz044', 0.0029168414779393399) + +[36201] +centroid = (0.58728863253037522, -1.4988825133340082) +station = ('kanb', 0.0012270160160895765) +zone = ('alz019', 0.002270696315930206) + +[36203] +centroid = (0.58613531896065729, -1.4980968359179303) +station = ('kanb', 0.00022358242566666793) +zone = ('alz019', 0.0032891359767824088) + +[36205] +centroid = (0.58847927869279315, -1.4974020377960038) +station = ('kanb', 0.0024730999096045443) +zone = ('alz019', 0.0010464587092905233) + +[36206] +centroid = (0.58875687331032278, -1.4976620569479659) +station = ('kanb', 0.0026817689206633903) +zone = ('alz019', 0.00070646447894426442) + +[36207] +centroid = (0.58782697933815287, -1.4959061684539969) +station = ('kanb', 0.002653036604566463) +zone = ('alz019', 0.0023299041268074216) + +[36250] +centroid = (0.58931604189607678, -1.4992569562717308) +station = ('kanb', 0.0032618523225508012) +zone = ('alz019', 0.0010932588138324179) + +[36251] +centroid = (0.57991245223242671, -1.4987011387181408) +station = ('kalx', 0.0056114606450729217) +zone = ('alz028', 0.00075378073491134262) + +[36255] +centroid = (0.57889349410852731, -1.4962784471834476) +station = ('kalx', 0.0055785115599532968) +zone = ('alz028', 0.0025904426340370088) + +[36256] +centroid = (0.57676688022814238, -1.4958312589225016) +station = ('kalx', 0.0044201933446751784) +zone = ('alz037', 0.0034849942754007182) + +[36258] +centroid = (0.58429668440685134, -1.4960497741448511) +station = ('kanb', 0.0026687252128375538) +zone = ('alz028', 0.0041968369927069078) + +[36260] +centroid = (0.58611906994532126, -1.500930063799278) +station = ('kanb', 0.0021368877476173093) +zone = ('alz019', 0.0041313940393163176) + +[36262] +centroid = (0.58977197425657535, -1.4918282764698825) +station = ('kctj', 0.005501609163732598) +zone = ('alz021', 0.0021358005186391847) + +[36263] +centroid = (0.58409597154287196, -1.4898013557963714) +station = ('kctj', 0.004176249279030899) +zone = ('alz029', 0.0033424011206689688) + +[36264] +centroid = (0.58637130492881939, -1.4931365403705923) +station = ('kanb', 0.0043616870516661301) +zone = ('alz021', 0.0014351452587466312) + +[36265] +centroid = (0.59075302382912132, -1.4972292327467638) +station = ('kanb', 0.004709051006004869) +zone = ('alz019', 0.0014587649043155302) + +[36266] +centroid = (0.58206461773306084, -1.4963460961452548) +station = ('kanb', 0.0044094843087552626) +zone = ('alz028', 0.0023181014652075196) + +[36267] +centroid = (0.57940332223632729, -1.5000805945990394) +station = ('kalx', 0.0049375992757629541) +zone = ('alz028', 0.0017916420055569282) + +[36268] +centroid = (0.58459450739041174, -1.4997518618344263) +station = ('kanb', 0.0019296837817626969) +zone = ('alz027', 0.0039842084535043057) + +[36269] +centroid = (0.58887054660450533, -1.4902297643145659) +station = ('kctj', 0.0038998532715603415) +zone = ('alz021', 0.002266361513238974) + +[36271] +centroid = (0.58959368887348407, -1.5013093587523212) +station = ('kgad', 0.003369314772187952) +zone = ('alz019', 0.0027992476065823234) + +[36272] +centroid = (0.59241632260627186, -1.4939060909443818) +station = ('kanb', 0.0072895353930586436) +zone = ('alz020', 0.0040696181219568341) + +[36273] +centroid = (0.58547741709911805, -1.4901133159468729) +station = ('kctj', 0.0036184685854894517) +zone = ('alz021', 0.0030519269770743858) + +[36274] +centroid = (0.57896304547921928, -1.4898623376004361) +station = ('klgc', 0.0051127801484558023) +zone = ('alz029', 0.0025464150072856927) + +[36276] +centroid = (0.57827430364979726, -1.4934828835073581) +station = ('kalx', 0.0068893083355222283) +zone = ('alz029', 0.0032470002779735204) + +[36277] +centroid = (0.58917898118991774, -1.4978106019206032) +station = ('kanb', 0.0030740839350270701) +zone = ('alz019', 0.00026864548031804768) + +[36278] +centroid = (0.58173642602051578, -1.4926576045705526) +station = ('kanb', 0.006485665471642906) +zone = ('alz029', 0.0011360581730654709) + +[36279] +centroid = (0.59118270643766968, -1.4990517055516963) +station = ('kgad', 0.0032570671400780952) +zone = ('alz019', 0.001985035569064356) + +[36280] +centroid = (0.58259799035247029, -1.4903146047695055) +station = ('kctj', 0.0055720807013178763) +zone = ('alz029', 0.0018268737605316686) + +[36301] +centroid = (0.54349671589492554, -1.4904813360729483) +station = ('kdhn', 0.0031773757872048418) +zone = ('alz069', 0.0014490878653678687) + +[36303] +centroid = (0.54570455739869839, -1.4905341671894063) +station = ('kdhn', 0.001136549228208433) +zone = ('alz069', 0.002467972168446081) + +[36305] +centroid = (0.54461896260395792, -1.4921838873049764) +station = ('kdhn', 0.0020758687117337156) +zone = ('alz069', 0.0030219607410121026) + +[36310] +centroid = (0.55143936025490137, -1.4871750192445552) +station = ('kbij', 0.0058409238684112852) +zone = ('alz067', 0.0014851853386903494) + +[36311] +centroid = (0.55165754386469312, -1.4955188100798094) +station = ('klor', 0.0044368746623464185) +zone = ('alz066', 0.0032703829819609358) + +[36312] +centroid = (0.54403366643930162, -1.4876632576495081) +station = ('kdhn', 0.0040739529465059019) +zone = ('alz069', 0.0010279837915334726) + +[36313] +centroid = (0.54416837095097048, -1.4973867836183414) +station = ('kozr', 0.0021620683681248714) +zone = ('alz068', 0.001606091402125271) + +[36314] +centroid = (0.54138258111869231, -1.4970181875336128) +station = ('k1j0', 0.0041459501693003392) +zone = ('alz068', 0.0016557033996599151) + +[36316] +centroid = (0.54411845453436347, -1.498609072600098) +station = ('kozr', 0.0028918545338006895) +zone = ('alz068', 0.0014569084705138282) + +[36317] +centroid = (0.55228425669249936, -1.49058544496283) +station = ('kdhn', 0.0057457989111805666) +zone = ('alz067', 0.0033047445958495842) + +[36318] +centroid = (0.54401082007939305, -1.5001197597874543) +station = ('kozr', 0.0040159960812397666) +zone = ('alz068', 0.0021137902556600491) + +[36319] +centroid = (0.54684340218891725, -1.4861335812798901) +station = ('kdhn', 0.0044927691427356486) +zone = ('alz067', 0.0034748306221501634) + +[36320] +centroid = (0.54192412187900119, -1.4890419630388287) +station = ('kmai', 0.0042695202076675392) +zone = ('alz069', 0.0018127532506250221) + +[36321] +centroid = (0.54473192031314699, -1.4887524129159226) +station = ('kdhn', 0.0029104833180665555) +zone = ('alz069', 0.0010071919957809468) + +[36322] +centroid = (0.54554812353784221, -1.4963721190044019) +station = ('kozr', 0.00053213613122680384) +zone = ('alz068', 0.0032293518609618271) + +[36323] +centroid = (0.54852389245919997, -1.502248014277336) +station = ('k79j', 0.0051440762484857077) +zone = ('alz065', 0.0013317931896027783) + +[36330] +centroid = (0.54638890099840542, -1.4985911829752652) +station = ('klor', 0.0019439464613851265) +zone = ('alz065', 0.0025180450993517798) + +[36340] +centroid = (0.54195391464933262, -1.4990797529927757) +station = ('kozr', 0.0048084994937614327) +zone = ('alz068', 0.0010838812971638097) + +[36343] +centroid = (0.54211155278737277, -1.4856376110663512) +station = ('kmai', 0.004077387522912237) +zone = ('alz069', 0.0031593627742149345) + +[36344] +centroid = (0.54276057092301944, -1.4958893609333004) +station = ('kozr', 0.0032390953689963526) +zone = ('alz068', 0.0019562796476731603) + +[36345] +centroid = (0.54747746285287424, -1.4888460498302925) +station = ('kdhn', 0.0023463253182083462) +zone = ('alz067', 0.0027254228748037966) + +[36346] +centroid = (0.55083593011931686, -1.4997629272218842) +station = ('kprn', 0.0038991202509677165) +zone = ('alz065', 0.0028896656673127311) + +[36350] +centroid = (0.54716445550482162, -1.4921783371579549) +station = ('kdhn', 0.00089629654326145013) +zone = ('alz066', 0.0022333139231014818) + +[36351] +centroid = (0.54847893277766857, -1.4993529842871758) +station = ('klor', 0.0026291560283058305) +zone = ('alz065', 0.0012796446125817565) + +[36352] +centroid = (0.54567717318273457, -1.4941711191912972) +station = ('kozr', 0.0016274284056585295) +zone = ('alz066', 0.0029112912309169417) + +[36353] +centroid = (0.54940165344661296, -1.4896190561560005) +station = ('kdhn', 0.0031995089020893713) +zone = ('alz067', 0.001720508164116515) + +[36360] +centroid = (0.54921094131924753, -1.4942990692787608) +station = ('klor', 0.0027233121030848001) +zone = ('alz066', 0.00062898242973695917) + +[36362] +centroid = (0.54717698696885086, -1.495394385557435) +station = ('klor', 0.0010310390367486374) +zone = ('alz066', 0.0017442385974419951) + +[36370] +centroid = (0.54353425792713594, -1.4862893868222158) +station = ('kdhn', 0.0053147987371162169) +zone = ('alz069', 0.0021652910065831739) + +[36371] +centroid = (0.54650482576732284, -1.4931640118530187) +station = ('kdhn', 0.00152264873232834) +zone = ('alz066', 0.0022614990303446579) + +[36373] +centroid = (0.55021635568815142, -1.4854386260783312) +station = ('kbij', 0.0039281604383745519) +zone = ('alz067', 0.0019727874246032906) + +[36374] +centroid = (0.55115293427135659, -1.4921463801793509) +station = ('kdhn', 0.0046200189407186376) +zone = ('alz066', 0.0031022698881846664) + +[36375] +centroid = (0.54229502179834244, -1.4930413152066035) +station = ('k1j0', 0.0042327637595921145) +zone = ('alz069', 0.0038954295249764227) + +[36376] +centroid = (0.54543534036157826, -1.4882389195966934) +station = ('kdhn', 0.0029208543399656607) +zone = ('alz069', 0.0017777280061461824) + +[36401] +centroid = (0.54931539927497941, -1.5175725287086221) +station = ('kgzh', 0.0017825053434664165) +zone = ('alz056', 0.0010028265285385778) + +[36420] +centroid = (0.54414763643945685, -1.5108824547929249) +station = ('k79j', 0.0034797828868528952) +zone = ('alz060', 0.0021305028351833394) + +[36421] +centroid = (0.54671965834495084, -1.5098307193856733) +station = ('k79j', 0.0018928044805181627) +zone = ('alz060', 0.0015687499786360233) + +[36425] +centroid = (0.55439929903994356, -1.5218427734295989) +station = ('kgzh', 0.0064469946245342188) +zone = ('alz055', 0.0042315122742602367) + +[36426] +centroid = (0.54353539239114979, -1.5196576910192723) +station = ('kgzh', 0.0047981382342331081) +zone = ('alz059', 0.0013973449657436389) + +[36432] +centroid = (0.54617577884344437, -1.5189197483582366) +station = ('kgzh', 0.0021740713192703225) +zone = ('alz056', 0.0024228576741175925) + +[36435] +centroid = (0.55623109190308173, -1.5263186353897535) +station = ('kgzh', 0.0099059349073344957) +zone = ('alz054', 0.002977141721289607) + +[36436] +centroid = (0.55475930810475249, -1.5297728514189606) +station = ('kgzh', 0.010992511192273456) +zone = ('alz053', 0.0033527054254141606) + +[36439] +centroid = (0.54837000677905168, -1.5244611338267335) +station = ('kgzh', 0.0043969048630440113) +zone = ('alz055', 0.002658663793581627) + +[36441] +centroid = (0.54173897735194954, -1.5228896393682378) +station = ('knse', 0.0064254907871958474) +zone = ('alz059', 0.002062186794325003) + +[36442] +centroid = (0.54230118281060202, -1.5072117481233005) +station = ('k0j4', 0.001080949022638627) +zone = ('alz060', 0.0033942100817378625) + +[36444] +centroid = (0.55260462932999532, -1.5262328175504327) +station = ('kgzh', 0.0072898872820012228) +zone = ('alz055', 0.0019964114380515317) + +[36445] +centroid = (0.5488115401732212, -1.5263496324372687) +station = ('kgzh', 0.0060272038982053661) +zone = ('alz055', 0.0025565730011335567) + +[36446] +centroid = (0.55488310430859644, -1.5310020519045549) +station = ('kgzh', 0.011924468320380492) +zone = ('alz053', 0.0026858037927646699) + +[36451] +centroid = (0.55327839623443531, -1.5324613565987324) +station = ('kgzh', 0.012253216512759348) +zone = ('alz053', 0.00065725005954838224) + +[36453] +centroid = (0.54439748032187985, -1.5035865421872758) +station = ('k0j4', 0.0035662028468224287) +zone = ('alz065', 0.0043948143361646885) + +[36454] +centroid = (0.54678421807398203, -1.5219326578860766) +station = ('kgzh', 0.0027183248763802148) +zone = ('alz059', 0.003576533949466569) + +[36455] +centroid = (0.54128063643708335, -1.507126226989953) +station = ('k0j4', 0.00085381564948955628) +zone = ('flz007', 0.0035246193993774132) + +[36456] +centroid = (0.5509726068530405, -1.5150531459333683) +station = ('kgzh', 0.0044926614781168675) +zone = ('alz056', 0.0036980936353414955) + +[36460] +centroid = (0.55010983824390225, -1.5237567189406285) +station = ('kgzh', 0.004192726536026337) +zone = ('alz055', 0.0012784388007598924) + +[36467] +centroid = (0.54595674002231909, -1.5054676929616602) +station = ('k79j', 0.0019139288464003908) +zone = ('alz060', 0.0029530779799600308) + +[36470] +centroid = (0.55029004348917054, -1.528341280006597) +station = ('kgzh', 0.007950261692424335) +zone = ('alz055', 0.0030854363190167054) + +[36471] +centroid = (0.55181060924009306, -1.522781394048029) +station = ('kgzh', 0.0045734669376484042) +zone = ('alz055', 0.001912418405750367) + +[36473] +centroid = (0.54641841451605666, -1.5219705140775526) +station = ('kgzh', 0.0029659421011413501) +zone = ('alz059', 0.0032220660856665992) + +[36474] +centroid = (0.54855148611467397, -1.5119097032307713) +station = ('k79j', 0.0042669049002583724) +zone = ('alz060', 0.0040979629992946263) + +[36475] +centroid = (0.54781841292225131, -1.5222717229998617) +station = ('kgzh', 0.0025787806566688731) +zone = ('alz055', 0.0038624189698165112) + +[36476] +centroid = (0.54737646064906131, -1.5105777726654042) +station = ('k79j', 0.002708953677602168) +zone = ('alz060', 0.0024714488386897151) + +[36477] +centroid = (0.54274718424765656, -1.5020543525435348) +station = ('k0j4', 0.003737168060897072) +zone = ('alz068', 0.0033236669830700458) + +[36480] +centroid = (0.5467244754536863, -1.5288931880226626) +station = ('kgzh', 0.0083379399285479997) +zone = ('alz055', 0.005517549617584952) + +[36481] +centroid = (0.55451749273688866, -1.5251133633682037) +station = ('kgzh', 0.0079245451725288817) +zone = ('alz055', 0.0035154011711585613) + +[36482] +centroid = (0.55221027218550722, -1.5295524512410186) +station = ('kgzh', 0.0095569654701803675) +zone = ('alz053', 0.0029344222703470623) + +[36483] +centroid = (0.5417414557194874, -1.5130891792859766) +station = ('kcew', 0.005449552793659343) +zone = ('flz005', 0.0036300634288490338) + +[36502] +centroid = (0.54363049538209096, -1.5270727048930777) +station = ('kgzh', 0.0081273308404774015) +zone = ('flz001', 0.004893630459393233) + +[36505] +centroid = (0.54012398928849414, -1.5361813688197259) +station = ('kbfm', 0.005522493249860985) +zone = ('alz061', 0.002551530683983698) + +[36507] +centroid = (0.53860155603527204, -1.5314030413002007) +station = ('kbfm', 0.0062590647825042801) +zone = ('alz062', 0.0015523431311840351) + +[36509] +centroid = (0.53045826862448697, -1.5406052374214632) +station = ('kpql', 0.0041636248322290733) +zone = ('alz063', 0.0024154649736855935) + +[36511] +centroid = (0.52909926800242157, -1.5314783697107168) +station = ('kjka', 0.0012440568067817155) +zone = ('alz064', 0.0033315090962730228) + +[36512] +centroid = (0.54103136851331346, -1.5362110743235946) +station = ('kmob', 0.0063789205884991675) +zone = ('alz061', 0.002816908231690847) + +[36513] +centroid = (0.54408899337658989, -1.5359900632804147) +station = ('kmob', 0.0092167402949615441) +zone = ('alz052', 0.0050650678209812209) + +[36518] +centroid = (0.54897499025767038, -1.5408202096254313) +station = ('kmob', 0.013469862669434172) +zone = ('alz052', 0.0013828592060179334) + +[36521] +centroid = (0.54044095853394891, -1.5389847341175715) +station = ('kmob', 0.0049869131663821441) +zone = ('alz061', 0.00072966618348010103) + +[36522] +centroid = (0.54268189148033952, -1.5406863254185108) +station = ('kmob', 0.0071836294592007568) +zone = ('alz061', 0.0032520788796529818) + +[36523] +centroid = (0.53005012337890811, -1.5389530912982328) +station = ('kcqf', 0.0045777060997866086) +zone = ('alz063', 0.0029163362442219888) + +[36524] +centroid = (0.55506039485401404, -1.5360793368716541) +station = ('kmei', 0.014328464461961314) +zone = ('alz053', 0.0035243152858566579) + +[36525] +centroid = (0.53913400363017794, -1.536216188138303) +station = ('kbfm', 0.0045388388097308769) +zone = ('alz061', 0.0025583837119615995) + +[36526] +centroid = (0.53426460483028382, -1.5334397183642303) +station = ('kcqf', 0.0026765545456975417) +zone = ('alz064', 0.0035084217685528436) + +[36527] +centroid = (0.53585229594423811, -1.5338279144964591) +station = ('kbfm', 0.0030225915820038338) +zone = ('alz062', 0.0046414322884077127) + +[36528] +centroid = (0.52770899108016045, -1.5400127854068737) +station = ('kpql', 0.006025056007027383) +zone = ('alz063', 0.0051103590559993285) + +[36529] +centroid = (0.54578262597614013, -1.5400533817652751) +station = ('kmob', 0.01025773187595465) +zone = ('alz052', 0.0024308141426111858) + +[36530] +centroid = (0.53072338413786491, -1.5281332367597593) +station = ('kjka', 0.0026881681422985314) +zone = ('alz064', 0.0022804017240872954) + +[36532] +centroid = (0.53198880020543837, -1.533469074802249) +station = ('kcqf', 0.00056302941391546759) +zone = ('alz064', 0.0028881133929953228) + +[36535] +centroid = (0.53031345865644908, -1.5311214324253912) +station = ('kjka', 0.0018614801967333631) +zone = ('alz064', 0.0020905908439302267) + +[36538] +centroid = (0.55251980632834852, -1.5383902924276347) +station = ('kmei', 0.014831418660255646) +zone = ('alz052', 0.0044544118663915645) + +[36539] +centroid = (0.54713653023678965, -1.5425329710335836) +station = ('kmob', 0.011818514599182805) +zone = ('alz052', 0.0027837673334820696) + +[36540] +centroid = (0.54888770634177819, -1.5302321348116228) +station = ('kgzh', 0.0093370954206357226) +zone = ('alz053', 0.0045081786753391638) + +[36541] +centroid = (0.53214277315204928, -1.5418955244308776) +station = ('kpql', 0.0028741390919831879) +zone = ('alz063', 0.0017565912715383207) + +[36542] +centroid = (0.52830627765677796, -1.531537082586754) +station = ('kjka', 0.0012654916960129878) +zone = ('alz064', 0.0040987177071882134) + +[36543] +centroid = (0.5449194384879813, -1.5265718826642178) +station = ('kgzh', 0.0070773096837322899) +zone = ('alz059', 0.004842640617497119) + +[36544] +centroid = (0.53197890418857963, -1.5399086416104073) +station = ('kmob', 0.0035465874417368449) +zone = ('alz063', 0.00084532976855317935) + +[36545] +centroid = (0.54957819350045212, -1.5336505541378713) +station = ('kgzh', 0.012298345066863722) +zone = ('alz053', 0.0032405882474634178) + +[36548] +centroid = (0.54958637909464403, -1.5353264367389288) +station = ('kgzh', 0.013722022854740501) +zone = ('alz053', 0.0037709496494092373) + +[36549] +centroid = (0.5307709792665668, -1.526395394970256) +station = ('knpa', 0.0022150251288145413) +zone = ('flz002', 0.0027181657431395493) + +[36550] +centroid = (0.54540544287149162, -1.5311849624101639) +station = ('kgzh', 0.010555427595321212) +zone = ('alz062', 0.0052970372569744132) + +[36551] +centroid = (0.53478057651705091, -1.5316074542621942) +station = ('kcqf', 0.003752641450958221) +zone = ('alz064', 0.0028591553442252242) + +[36553] +centroid = (0.54529847164163692, -1.537073301880665) +station = ('kmob', 0.010082331799017531) +zone = ('alz052', 0.0035419397643177337) + +[36555] +centroid = (0.53052101321109624, -1.5321109642981021) +station = ('kcqf', 0.0019475769270075655) +zone = ('alz064', 0.0024104478511968344) + +[36556] +centroid = (0.54450272367577512, -1.5354712641602593) +station = ('kmob', 0.0097689663065770298) +zone = ('alz052', 0.005030641245554076) + +[36558] +centroid = (0.55160094283705108, -1.5414036208344954) +station = ('kmei', 0.01425341610356394) +zone = ('alz052', 0.0037958949288449621) + +[36559] +centroid = (0.53350865037136752, -1.5342954358431908) +station = ('kcqf', 0.0019021511221283937) +zone = ('alz064', 0.003813371928285791) + +[36560] +centroid = (0.54275842416803943, -1.5365890602796992) +station = ('kmob', 0.0077909241652523737) +zone = ('alz061', 0.0037322776694028717) + +[36561] +centroid = (0.52858477984551866, -1.5284260331950741) +station = ('kjka', 0.0014734468541238994) +zone = ('alz064', 0.0039212685784754744) + +[36562] +centroid = (0.5416988347791537, -1.5301374157931171) +station = ('kbfm', 0.0092148439699511475) +zone = ('alz062', 0.002078983604949887) + +[36564] +centroid = (0.53195357946113309, -1.5346070818344268) +station = ('kcqf', 0.00063881986204257577) +zone = ('alz064', 0.0038687279938406029) + +[36567] +centroid = (0.53448153180301428, -1.5281572350369743) +station = ('kcqf', 0.0057626904790395016) +zone = ('alz064', 0.0028271004431907228) + +[36568] +centroid = (0.53253356982486333, -1.5406482074276473) +station = ('kmob', 0.0030493451129318832) +zone = ('alz063', 0.00061660258035495783) + +[36569] +centroid = (0.55052009533787594, -1.5374831226423258) +station = ('kmob', 0.015144362392880792) +zone = ('alz052', 0.0029163218149101792) + +[36571] +centroid = (0.5385156858360739, -1.5378089930669656) +station = ('kmob', 0.0035165176859163661) +zone = ('alz061', 0.001647526380237379) + +[36572] +centroid = (0.53856832496631402, -1.536958232323081) +station = ('kbfm', 0.0039166496658686089) +zone = ('alz061', 0.0021827140609510919) + +[36574] +centroid = (0.53233744717681675, -1.5267900837273021) +station = ('knpa', 0.0034393722494103895) +zone = ('flz002', 0.0024418994355386633) + +[36575] +centroid = (0.53702321988610857, -1.5406612450371597) +station = ('kmob', 0.0016140651011125333) +zone = ('alz061', 0.0030047949298577757) + +[36576] +centroid = (0.53272602728148077, -1.5317678500204526) +station = ('kcqf', 0.0021926525159199216) +zone = ('alz064', 0.001500138125078058) + +[36578] +centroid = (0.53664668255328329, -1.5320698792475103) +station = ('kbfm', 0.0047266790635285593) +zone = ('alz062', 0.0034945177835664569) + +[36579] +centroid = (0.54291648118510005, -1.5323455365495702) +station = ('kbfm', 0.009198966680047516) +zone = ('alz062', 0.002837613419034918) + +[36580] +centroid = (0.53195712247951465, -1.5307133395396899) +station = ('kcqf', 0.0028261235141050431) +zone = ('alz064', 0.00056881750749930224) + +[36581] +centroid = (0.54760328363865052, -1.5352890517863511) +station = ('kmob', 0.012724591624598203) +zone = ('alz052', 0.0036422774934187622) + +[36582] +centroid = (0.53249780802849001, -1.5389091788142526) +station = ('kbfm', 0.0026825577399334282) +zone = ('alz063', 0.0010045699589997573) + +[36583] +centroid = (0.54727978686179335, -1.539168936166827) +station = ('kmob', 0.011774234968747365) +zone = ('alz052', 0.00093300747515794806) + +[36584] +centroid = (0.54444516271704435, -1.5424593006858567) +station = ('kmob', 0.0091735064694072003) +zone = ('msz076', 0.0039381979093510442) + +[36585] +centroid = (0.54783698322549257, -1.5373092005823643) +station = ('kmob', 0.012519881383304111) +zone = ('alz052', 0.0019026562085077102) + +[36587] +centroid = (0.53833350836875071, -1.5420200885795925) +station = ('kmob', 0.0033186781323786252) +zone = ('alz061', 0.0028502493338394665) + +[36590] +centroid = (0.53288047146698969, -1.538933962489631) +station = ('kbfm', 0.0024003207937200754) +zone = ('alz063', 0.00093227099162715606) + +[36602] +centroid = (0.53569961454127357, -1.5366846345095384) +station = ('kbfm', 0.0010940531211635729) +zone = ('alz063', 0.004062786255583116) + +[36603] +centroid = (0.53536561088231938, -1.5363098774125501) +station = ('kbfm', 0.00095785849469705309) +zone = ('alz063', 0.0040802131187021714) + +[36604] +centroid = (0.53550574336796208, -1.5370789218408563) +station = ('kbfm', 0.00085350059465563613) +zone = ('alz063', 0.0036875778094728044) + +[36605] +centroid = (0.53415011123135303, -1.5374225597172815) +station = ('kbfm', 0.00059447974666067889) +zone = ('alz063', 0.0025979995770334142) + +[36606] +centroid = (0.53530026575512468, -1.5377413964650359) +station = ('kbfm', 0.00087748635179659123) +zone = ('alz063', 0.0031593135445437876) + +[36607] +centroid = (0.53579140140663595, -1.5377359510377695) +station = ('kbfm', 0.0012813377781784631) +zone = ('alz063', 0.003560428201747057) + +[36608] +centroid = (0.5354932468105178, -1.5411294296090072) +station = ('kmob', 0.0010043560599069122) +zone = ('alz063', 0.0028410369220573982) + +[36609] +centroid = (0.53513702511018579, -1.5387438786807963) +station = ('kmob', 0.0011174433369539123) +zone = ('alz063', 0.0025625867599842621) + +[36610] +centroid = (0.53645260194046152, -1.5371726634749809) +station = ('kbfm', 0.0018029991877463313) +zone = ('alz061', 0.0036702157521783197) + +[36611] +centroid = (0.53703123094737515, -1.5372872792469594) +station = ('kbfm', 0.0023871964722140117) +zone = ('alz061', 0.0031150529860769303) + +[36612] +centroid = (0.53673904537729877, -1.5378643200042539) +station = ('kmob', 0.0021739550360227655) +zone = ('alz061', 0.0031698866815038701) + +[36613] +centroid = (0.53767625227903471, -1.5392301274104019) +station = ('kmob', 0.0022411833094681589) +zone = ('alz061', 0.0020463700743867125) + +[36615] +centroid = (0.53459743911863922, -1.5371087320644805) +station = ('kbfm', 7.2871028105324194e-05) +zone = ('alz063', 0.0030687966192243146) + +[36616] +centroid = (0.53624375584216788, -1.5373137209851271) +station = ('kbfm', 0.001606914211547587) +zone = ('alz061', 0.0038064692622136313) + +[36617] +centroid = (0.53609576937489123, -1.537560109115631) +station = ('kbfm', 0.0015076324847875262) +zone = ('alz061', 0.0038638245637545917) + +[36618] +centroid = (0.53649792814113573, -1.5389140831894508) +station = ('kmob', 0.0013259706137400589) +zone = ('alz061', 0.003227235477796222) + +[36619] +centroid = (0.53400245637663435, -1.539321704836254) +station = ('kmob', 0.0016193781729540201) +zone = ('alz063', 0.0013247841676506946) + +[36688] +centroid = (0.53574900735910502, -1.539067968869599) +station = ('kmob', 0.00080087795291885306) +zone = ('alz063', 0.0030406786143151797) + +[36693] +centroid = (0.53451930072802734, -1.5385033024967014) +station = ('kbfm', 0.0012547949671943975) +zone = ('alz063', 0.0021404128254389559) + +[36695] +centroid = (0.53456616281844349, -1.5407819520082278) +station = ('kmob', 0.0011904013504608513) +zone = ('alz063', 0.00186776170343425) + +[36701] +centroid = (0.56682019646114901, -1.5194042343052974) +station = ('kmxf', 0.010275944225446537) +zone = ('alz040', 0.0027340838564511856) + +[36703] +centroid = (0.5659640077432907, -1.5169155344182939) +station = ('kmxf', 0.0080849354139771509) +zone = ('alz040', 0.0033598122383961195) + +[36720] +centroid = (0.56127781615497851, -1.5244904728114594) +station = ('kgzh', 0.013681757861037005) +zone = ('alz054', 0.0030156759736341705) + +[36722] +centroid = (0.56016204461747099, -1.5284109535503367) +station = ('kgzh', 0.014143116612053235) +zone = ('alz039', 0.0041801445487476665) + +[36723] +centroid = (0.55944138071603, -1.523228041256907) +station = ('kgzh', 0.011605978472093454) +zone = ('alz054', 0.0012299030603955365) + +[36726] +centroid = (0.55787051457606507, -1.5236015068102486) +station = ('kgzh', 0.01022108360426522) +zone = ('alz054', 0.00048186726962734245) + +[36727] +centroid = (0.55695175580452272, -1.5364815829043614) +station = ('kmei', 0.012898643865917769) +zone = ('alz051', 0.003879883601601083) + +[36728] +centroid = (0.56132230459761179, -1.5267479689324515) +station = ('kgzh', 0.014454328580970177) +zone = ('alz054', 0.0038995909404068822) + +[36732] +centroid = (0.56599830346309232, -1.5343918827376559) +station = ('ktcl', 0.014418036925227388) +zone = ('alz039', 0.0036658903765125666) + +[36736] +centroid = (0.55955748001787264, -1.5319836599824614) +station = ('kgzh', 0.015568313397456908) +zone = ('alz039', 0.0032752190459951801) + +[36738] +centroid = (0.56585267319030597, -1.5293441461947932) +station = ('ktcl', 0.013888060037358395) +zone = ('alz039', 0.0038785748681676932) + +[36740] +centroid = (0.56944478768371309, -1.5330373676117683) +station = ('ktcl', 0.010787713234276151) +zone = ('alz032', 0.0038618078508417223) + +[36742] +centroid = (0.56667126751607633, -1.5311677883703243) +station = ('ktcl', 0.013173158952926096) +zone = ('alz039', 0.0039450874867098503) + +[36744] +centroid = (0.57065384706973965, -1.5289015132431947) +station = ('ktcl', 0.0090897880021840374) +zone = ('alz032', 0.0012411457913500288) + +[36748] +centroid = (0.56317018939645325, -1.5320657428171829) +station = ('ktcl', 0.016744487232355894) +zone = ('alz039', 0.00036609709494901459) + +[36749] +centroid = (0.5679294579205465, -1.515985047034178) +station = ('kmxf', 0.0077559546021418683) +zone = ('alz041', 0.0031903711755030266) + +[36750] +centroid = (0.57228675966461307, -1.5158075819558354) +station = ('keet', 0.0069393505222453541) +zone = ('alz035', 0.0021686304963500999) + +[36751] +centroid = (0.5554387996891389, -1.5279615487212408) +station = ('kgzh', 0.010242153781113881) +zone = ('alz054', 0.00454649736432001) + +[36752] +centroid = (0.56371811806182437, -1.5120135503212651) +station = ('kmgm', 0.0034226332073928698) +zone = ('alz042', 0.0025269117413860313) + +[36753] +centroid = (0.55510612248041624, -1.5197394247881433) +station = ('kgzh', 0.0067917429880007272) +zone = ('alz054', 0.0047206727855728693) + +[36754] +centroid = (0.56119423233710042, -1.5306694968688801) +station = ('kgzh', 0.016089854075141241) +zone = ('alz039', 0.002092219074893641) + +[36756] +centroid = (0.57063225734689249, -1.5234118244271417) +station = ('ktcl', 0.010321685658868962) +zone = ('alz033', 0.00099208431940508036) + +[36758] +centroid = (0.56965375595505441, -1.5165160983656825) +station = ('kmxf', 0.0088991718907734073) +zone = ('alz041', 0.0040617367597195891) + +[36759] +centroid = (0.56577905520245686, -1.5232813610655553) +station = ('ktcl', 0.014820536916800107) +zone = ('alz040', 0.0029800603406143103) + +[36761] +centroid = (0.56035835925173538, -1.518053157478036) +station = ('kmgm', 0.0091825537063313731) +zone = ('alz040', 0.0042769432657896742) + +[36763] +centroid = (0.56333655418075335, -1.5355564187744641) +station = ('kmei', 0.011388350296942141) +zone = ('alz039', 0.0028704797225219104) + +[36765] +centroid = (0.56877088115293306, -1.5275510647344641) +station = ('ktcl', 0.011056264725340506) +zone = ('alz032', 0.0034269294676331536) + +[36766] +centroid = (0.55772207432318288, -1.519949492616913) +station = ('kgzh', 0.0094135859852245915) +zone = ('alz054', 0.0033330998502054681) + +[36767] +centroid = (0.5630307899490965, -1.5217716163559951) +station = ('kmxf', 0.012350743470321232) +zone = ('alz040', 0.0017044600319763594) + +[36768] +centroid = (0.55698039665754795, -1.5187802092845395) +station = ('kgzh', 0.0086678209868020616) +zone = ('alz054', 0.0044766481318730044) + +[36769] +centroid = (0.55864247370422204, -1.5279911495053544) +station = ('kgzh', 0.012689133420832843) +zone = ('alz054', 0.0035561002099643389) + +[36773] +centroid = (0.56302478601646966, -1.5246765423630144) +station = ('kgzh', 0.015391448122920806) +zone = ('alz040', 0.0038831344718764944) + +[36775] +centroid = (0.56156117035903974, -1.5180808907598504) +station = ('kmxf', 0.0097477852801865928) +zone = ('alz040', 0.0032290004934190423) + +[36776] +centroid = (0.57135136790529917, -1.5313715730137873) +station = ('ktcl', 0.0085844761354308425) +zone = ('alz032', 0.0017091073684454079) + +[36782] +centroid = (0.56079017116197127, -1.5343521241372955) +station = ('kmei', 0.012867846457673944) +zone = ('alz039', 0.0027233198561015855) + +[36783] +centroid = (0.56282962329951169, -1.5288704987423867) +station = ('kgzh', 0.016625005937758043) +zone = ('alz039', 0.0028293076578887405) + +[36784] +centroid = (0.55722999619387559, -1.5321876715187273) +station = ('kgzh', 0.014122442837720779) +zone = ('alz053', 0.0045138352926025723) + +[36785] +centroid = (0.56305222259231102, -1.5157453260614167) +station = ('kmxf', 0.0073848382221467085) +zone = ('alz042', 0.0034298529867928824) + +[36786] +centroid = (0.56603230247692116, -1.5268010443950049) +station = ('ktcl', 0.013855251240917788) +zone = ('alz033', 0.0045273692345457446) + +[36790] +centroid = (0.57130914839069347, -1.5165798901498426) +station = ('keet', 0.0080137336650498315) +zone = ('alz035', 0.0032494860824017449) + +[36792] +centroid = (0.57477929927597116, -1.5168023498163019) +station = ('keet', 0.0047345604556676638) +zone = ('alz035', 0.0031198745455664981) + +[36793] +centroid = (0.57284507303903343, -1.5189167114853381) +station = ('keet', 0.0072548512277553351) +zone = ('alz034', 0.0034120473037286682) + +[36801] +centroid = (0.57063126250921881, -1.4904348405016752) +station = ('kauo', 0.0014713550275102479) +zone = ('alz047', 0.0017356906192470772) + +[36804] +centroid = (0.56779470104900009, -1.4895346694866665) +station = ('kauo', 0.0019737409927235287) +zone = ('alz047', 0.0012155101359953798) + +[36830] +centroid = (0.56791071308438024, -1.4921282811150078) +station = ('kauo', 0.0016136807407750552) +zone = ('alz047', 0.0022905060906910934) + +[36832] +centroid = (0.56882343301671068, -1.4937692396777329) +station = ('kauo', 0.0022979981522024719) +zone = ('alz047', 0.0034022371844868097) + +[36849] +centroid = (0.56901957311804974, -1.4920355692251419) +station = ('kauo', 0.0008320435438111274) +zone = ('alz047', 0.0019371405380989254) + +[36850] +centroid = (0.57217533784516561, -1.495024009236869) +station = ('kauo', 0.0044038973154655837) +zone = ('alz037', 0.0024620217645000908) + +[36852] +centroid = (0.57174043670215369, -1.4886604166110502) +station = ('kauo', 0.00320986773863051) +zone = ('alz047', 0.0028878045500817582) + +[36853] +centroid = (0.57271844940180128, -1.4969442902930834) +station = ('kalx', 0.0033426204772872953) +zone = ('alz037', 0.00093969739460047976) + +[36854] +centroid = (0.57162348218897763, -1.4868369838750288) +station = ('kauo', 0.0042870207795407617) +zone = ('alz047', 0.0035843118269300346) + +[36855] +centroid = (0.57646319293829529, -1.4889081137384932) +station = ('klgc', 0.0034662711492129514) +zone = ('alz038', 0.0023455299759310775) + +[36856] +centroid = (0.56329620216844734, -1.4834919730971192) +station = ('klsf', 0.0026349804235694381) +zone = ('alz048', 0.002770996380638486) + +[36858] +centroid = (0.56423482278687731, -1.4892959957114564) +station = ('kauo', 0.0052567475462040316) +zone = ('alz048', 0.0022559627937281655) + +[36859] +centroid = (0.5626085424431615, -1.4837225485446002) +station = ('klsf', 0.0031329148082921837) +zone = ('alz048', 0.0027294217677078969) + +[36860] +centroid = (0.5629293688662631, -1.4908444692771181) +station = ('kauo', 0.0063423239297874211) +zone = ('alz048', 0.0035094432248111707) + +[36861] +centroid = (0.57405406261188996, -1.4983757046258139) +station = ('kalx', 0.0016956328032564883) +zone = ('alz037', 0.00092352331399281806) + +[36862] +centroid = (0.57428252621097597, -1.4914738524586799) +station = ('kauo', 0.0050245219951426407) +zone = ('alz038', 0.00094316617102252985) + +[36863] +centroid = (0.57402995961491987, -1.4881331700973153) +station = ('klgc', 0.0034911613876942409) +zone = ('alz038', 0.001928967725338292) + +[36865] +centroid = (0.56902302886996858, -1.4938156828891282) +station = ('kauo', 0.0023065887466552975) +zone = ('alz047', 0.0034367389793116205) + +[36866] +centroid = (0.56837179416617201, -1.4959580396393664) +station = ('kauo', 0.0041958881195743739) +zone = ('alz045', 0.0031425817539585915) + +[36867] +centroid = (0.56715027312928623, -1.4839590057516603) +station = ('kcsg', 0.0011593711831450668) +zone = ('gaz089', 0.0021874875272955402) + +[36869] +centroid = (0.56585988140011667, -1.4846636998904457) +station = ('kcsg', 0.0023730458297070169) +zone = ('alz048', 0.0029178530202105001) + +[36870] +centroid = (0.56693317162363066, -1.485629582551792) +station = ('kcsg', 0.0025753180652910968) +zone = ('alz048', 0.0035252701988034633) + +[36871] +centroid = (0.5616244036378395, -1.4862740977379685) +station = ('keuf', 0.0039850591528492975) +zone = ('alz048', 0.0019575744192941113) + +[36874] +centroid = (0.56835341584914856, -1.4869951979717224) +station = ('kcsg', 0.0037501051253796352) +zone = ('alz047', 0.0023979899316384111) + +[36875] +centroid = (0.56438427533072566, -1.4864367449709617) +station = ('kcsg', 0.0044753188012269457) +zone = ('alz048', 0.00088765064516700633) + +[36877] +centroid = (0.56854159724909858, -1.4852649658177577) +station = ('kcsg', 0.002422815896635515) +zone = ('gaz089', 0.0034636387976059247) + +[36879] +centroid = (0.57120381777033558, -1.4932753987658811) +station = ('kauo', 0.0026686202098432014) +zone = ('alz047', 0.003706926332020103) + +[36901] +centroid = (0.5659355239698981, -1.5386451977648885) +station = ('kmei', 0.0088753753148236789) +zone = ('alz030', 0.0029469474146716326) + +[36904] +centroid = (0.56026093497288898, -1.5404408274059254) +station = ('kmei', 0.0082879535163084446) +zone = ('alz051', 0.0014207922088855273) + +[36907] +centroid = (0.56594716531600897, -1.5419408680848445) +station = ('kmei', 0.0061622678303598025) +zone = ('alz030', 0.0036046733611181125) + +[36908] +centroid = (0.55622339500108042, -1.542722845402908) +station = ('kmei', 0.0096797698820133091) +zone = ('alz051', 0.0032376879052943563) + +[36910] +centroid = (0.56207633919435096, -1.5384545554506932) +station = ('kmei', 0.0091787734871266978) +zone = ('alz051', 0.0036611230328725671) + +[36912] +centroid = (0.56252680867429061, -1.5411712302445923) +station = ('kmei', 0.0068415546206499929) +zone = ('alz051', 0.0037330067214723225) + +[36913] +centroid = (0.55782403645808443, -1.5436929343077515) +station = ('kmei', 0.0078914275038054309) +zone = ('alz051', 0.0029112165315593051) + +[36915] +centroid = (0.55772155072440732, -1.5421507439273967) +station = ('kmei', 0.0087757575498013211) +zone = ('alz051', 0.0018079143930340164) + +[36916] +centroid = (0.56216770718069276, -1.5369349670841519) +station = ('kmei', 0.010409723988022975) +zone = ('alz051', 0.0044797498952998324) + +[36919] +centroid = (0.55447455763728959, -1.5408266149837861) +station = ('kmei', 0.012031058239712919) +zone = ('alz051', 0.0043760158783906749) + +[36921] +centroid = (0.55743076141773251, -1.5390798545618052) +station = ('kmei', 0.010852653574767036) +zone = ('alz051', 0.0018413850560023309) + +[36922] +centroid = (0.5637473523267954, -1.5383676729605289) +station = ('kmei', 0.0089867352327689526) +zone = ('alz030', 0.0051414848542504048) + +[36925] +centroid = (0.56604961614310101, -1.5390940091820391) +station = ('kmei', 0.0085250080708952607) +zone = ('alz030', 0.0027796682252393722) + +[37010] +centroid = (0.63835607632581071, -1.5202027049847924) +station = ('kckv', 0.004479615824344284) +zone = ('tnz007', 0.0033489239634788373) + +[37012] +centroid = (0.62960710730470604, -1.5010104711179171) +station = ('kmqy', 0.0074037299306608743) +zone = ('tnz064', 0.0028927436811251317) + +[37013] +centroid = (0.6292302383593229, -1.5120224165938652) +station = ('kbna', 0.0013336218669204162) +zone = ('tnz027', 0.0029652818194806961) + +[37014] +centroid = (0.62614086595695273, -1.5120302880287915) +station = ('kmqy', 0.0028265626407008334) +zone = ('tnz062', 0.0031111992321222431) + +[37015] +centroid = (0.63319499810132329, -1.5197551152981184) +station = ('kbna', 0.0062115960363026629) +zone = ('tnz026', 0.00035490120202072808) + +[37016] +centroid = (0.62757592802782014, -1.5027324304112273) +station = ('kmqy', 0.0059960596906315543) +zone = ('tnz063', 0.0026527564026018326) + +[37018] +centroid = (0.62187266327120072, -1.5046703043863017) +station = ('ktha', 0.004403757722976135) +zone = ('tnz077', 0.0031194570277337011) + +[37019] +centroid = (0.61771183324103118, -1.5133719400780921) +station = ('ktha', 0.006593473083694879) +zone = ('tnz061', 0.0015511833747864506) + +[37020] +centroid = (0.62193741498644961, -1.5080882699269447) +station = ('ktha', 0.0049903988846387425) +zone = ('tnz075', 0.0022294701833068908) + +[37022] +centroid = (0.6372996808894561, -1.506516513669061) +station = ('kbwg', 0.0080124585424391059) +zone = ('tnz008', 0.0021593095537722298) + +[37023] +centroid = (0.63865883859115413, -1.5320979092352971) +station = ('khop', 0.0041666592409432251) +zone = ('tnz005', 0.0017742406603212665) + +[37025] +centroid = (0.62742375277033868, -1.5238077698212493) +station = ('kbna', 0.0092877483626479535) +zone = ('tnz057', 0.0034531156246702063) + +[37026] +centroid = (0.62302140407827833, -1.5028271843363179) +station = ('ktha', 0.0058755846042959931) +zone = ('tnz063', 0.0020548962157486807) + +[37027] +centroid = (0.62830610397368447, -1.5146850734474151) +station = ('kbna', 0.0025014354709764226) +zone = ('tnz059', 0.0024429138379863007) + +[37028] +centroid = (0.63927120481250888, -1.5334981694408796) +station = ('kckv', 0.0062546416632183752) +zone = ('tnz005', 0.00223161182500916) + +[37029] +centroid = (0.62906118576797476, -1.5230546427957212) +station = ('kbna', 0.0083006398465491141) +zone = ('tnz025', 0.0022682992141812909) + +[37030] +centroid = (0.63305772795565396, -1.499972750704559) +station = ('ksrb', 0.0069115442840956666) +zone = ('tnz030', 0.00042067561348083907) + +[37031] +centroid = (0.63470912358730602, -1.5060920495949761) +station = ('kmqy', 0.007009341233154746) +zone = ('tnz029', 0.0019642136021998757) + +[37032] +centroid = (0.63746779100300821, -1.5187358430149538) +station = ('kckv', 0.0058278717677248118) +zone = ('tnz007', 0.0020569927022737566) + +[37033] +centroid = (0.6238612390610454, -1.5281725939343918) +station = ('kbna', 0.013960856853675792) +zone = ('tnz057', 0.001575479615684613) + +[37034] +centroid = (0.62204623626531153, -1.513043346939819) +station = ('kmqy', 0.0068678619719501508) +zone = ('tnz061', 0.0031764790538338001) + +[37035] +centroid = (0.63501843083734444, -1.5206147248613109) +station = ('kckv', 0.0057684303853991446) +zone = ('tnz026', 0.0022067934656803748) + +[37036] +centroid = (0.63239052348920155, -1.5230122836547753) +station = ('kckv', 0.0070338357541899913) +zone = ('tnz025', 0.0019831187922371308) + +[37037] +centroid = (0.62313635146281465, -1.5071134162732431) +station = ('ktha', 0.0058307848472905393) +zone = ('tnz062', 0.0026071377907319416) + +[37040] +centroid = (0.6374401973475341, -1.5242821154053563) +station = ('kckv', 0.0020015387774406164) +zone = ('tnz006', 0.00080901986191407973) + +[37042] +centroid = (0.6382451082919689, -1.5257026388835544) +station = ('kckv', 0.00083630009365976701) +zone = ('tnz006', 0.0013387668452266601) + +[37043] +centroid = (0.63688694542794455, -1.5226345420447662) +station = ('kckv', 0.0033035850549197818) +zone = ('tnz006', 0.0020002705068957569) + +[37046] +centroid = (0.62451154874033843, -1.5132133769155485) +station = ('kmqy', 0.004714723988828157) +zone = ('tnz059', 0.003414843769871557) + +[37047] +centroid = (0.61640316791459338, -1.5155703742571967) +station = ('kmdq', 0.0088962044396110433) +zone = ('tnz061', 0.0028306082855592261) + +[37048] +centroid = (0.63689359513239463, -1.5113837308073903) +station = ('kbna', 0.0066534623170729484) +zone = ('tnz008', 0.0019411264793177951) + +[37049] +centroid = (0.63804104439582576, -1.5127308631905423) +station = ('kbna', 0.0076876442154025244) +zone = ('tnz007', 0.0028227299662728815) + +[37050] +centroid = (0.63485196133328925, -1.529449441908566) +station = ('kckv', 0.0051895579075265487) +zone = ('tnz023', 0.0019603030214415621) + +[37051] +centroid = (0.63362944545872979, -1.5255965403183258) +station = ('kckv', 0.0054526945815504485) +zone = ('tnz025', 0.0028115754913180038) + +[37052] +centroid = (0.63493015208377857, -1.5254496708617704) +station = ('kckv', 0.0041564596415529179) +zone = ('tnz006', 0.0020779856980683879) + +[37055] +centroid = (0.62966503478257974, -1.5261667219316599) +station = ('kckv', 0.0094235847061205323) +zone = ('tnz025', 0.0017477378280960508) + +[37057] +centroid = (0.63561590940017965, -1.5015057781063406) +station = ('ksrb', 0.0094529267534601436) +zone = ('tnz009', 0.0020132386249551546) + +[37058] +centroid = (0.63607377907614782, -1.5337370002957225) +station = ('khop', 0.0065530229155261049) +zone = ('tnz005', 0.0011276229629748817) + +[37059] +centroid = (0.62798772101153566, -1.4992086455580358) +station = ('ksrb', 0.0053516072034093245) +zone = ('tnz064', 0.00092574111789854238) + +[37060] +centroid = (0.62387605690639492, -1.5121140289263024) +station = ('kmqy', 0.0048898961942754537) +zone = ('tnz062', 0.003559929590503066) + +[37061] +centroid = (0.63333998260228652, -1.5295206338887546) +station = ('kckv', 0.0065088538661996808) +zone = ('tnz023', 0.0011543232640748851) + +[37062] +centroid = (0.62815928687700673, -1.5208089101938875) +station = ('kbna', 0.0067531652659873313) +zone = ('tnz059', 0.0037560140754950423) + +[37064] +centroid = (0.62630899352379743, -1.517636006333517) +station = ('kbna', 0.0055667730896024527) +zone = ('tnz059', 0.0007992537078530573) + +[37066] +centroid = (0.6352781532833337, -1.5089338295896584) +station = ('kbna', 0.0058751729675399359) +zone = ('tnz008', 0.0012347633217083592) + +[37067] +centroid = (0.62678642834068043, -1.5146012103768569) +station = ('kbna', 0.003821672443869373) +zone = ('tnz059', 0.001705043781629939) + +[37069] +centroid = (0.62810024238841167, -1.5167539169295592) +station = ('kbna', 0.0038396573525103627) +zone = ('tnz059', 0.0016367153712024565) + +[37072] +centroid = (0.63446453314593143, -1.5140146750284316) +station = ('kbna', 0.0042053406481396046) +zone = ('tnz027', 0.0032342855113387087) + +[37073] +centroid = (0.6358657881891876, -1.5152360389856847) +station = ('kbna', 0.0058214537898159174) +zone = ('tnz007', 0.0017901668836936262) + +[37074] +centroid = (0.63576124296699321, -1.5036491296942522) +station = ('kmqy', 0.008935886301818281) +zone = ('tnz029', 0.00060184048258098415) + +[37075] +centroid = (0.63425210912267127, -1.5115933972104325) +station = ('kbna', 0.0040393888948127748) +zone = ('tnz008', 0.0030664626930906155) + +[37076] +centroid = (0.63092413275826098, -1.511050896519035) +station = ('kbna', 0.0016055167570722122) +zone = ('tnz027', 0.002951410401259976) + +[37078] +centroid = (0.62679316531159313, -1.5314311236478653) +station = ('kckv', 0.013125881214450958) +zone = ('tnz024', 0.0022803337976624156) + +[37079] +centroid = (0.63667092602642517, -1.5299332646305113) +station = ('khop', 0.0039659009998139916) +zone = ('tnz005', 0.0025534152557456324) + +[37080] +centroid = (0.63412630579018747, -1.5169858362805642) +station = ('kbna', 0.0050037798367200403) +zone = ('tnz026', 0.0026967776704234984) + +[37082] +centroid = (0.62997435948591074, -1.5204482204506706) +station = ('kbna', 0.0061025651134413127) +zone = ('tnz026', 0.0029305404725450917) + +[37083] +centroid = (0.63766222068168033, -1.5011759806908838) +station = ('kglw', 0.0086994178026633621) +zone = ('tnz009', 7.9616732761535455e-05) + +[37085] +centroid = (0.62753006077507767, -1.5058787703603824) +station = ('kmqy', 0.0035116986401341082) +zone = ('tnz062', 0.0027454818436835025) + +[37086] +centroid = (0.62870648250409189, -1.5107457780592015) +station = ('kmqy', 0.00060241628229777851) +zone = ('tnz062', 0.0037258995618719825) + +[37087] +centroid = (0.63291434915760258, -1.505676137634226) +station = ('kmqy', 0.0056787453748614091) +zone = ('tnz028', 0.0019350193173728971) + +[37090] +centroid = (0.63026876162413703, -1.5062049898508727) +station = ('kmqy', 0.003595618907257403) +zone = ('tnz028', 0.00075361704149793816) + +[37091] +centroid = (0.61940406957717986, -1.5143780700319893) +station = ('ktha', 0.0076472122567733773) +zone = ('tnz061', 0.00035657975408694527) + +[37095] +centroid = (0.62801217307435608, -1.5004643401416757) +station = ('ksrb', 0.0063363188213743371) +zone = ('tnz064', 0.0019421482179509235) + +[37096] +centroid = (0.62156073802728418, -1.5336260846217584) +station = ('kmsl', 0.01554462477873028) +zone = ('tnz056', 0.00054414381356243527) + +[37097] +centroid = (0.62447645016908093, -1.5328088865593896) +station = ('kckv', 0.015688615668009002) +zone = ('tnz056', 0.0024480375776517885) + +[37098] +centroid = (0.62609108916668588, -1.524010542173746) +station = ('kbna', 0.0099421055413348985) +zone = ('tnz057', 0.0024893531945989508) + +[37101] +centroid = (0.6293699868725301, -1.5294158617737577) +station = ('kckv', 0.010160170034662857) +zone = ('tnz024', 0.0020966795033595452) + +[37110] +centroid = (0.62212618979834533, -1.496463923323057) +station = ('ksrb', 0.0077612132534334924) +zone = ('tnz078', 0.00078962965598773313) + +[37115] +centroid = (0.63274899666426865, -1.5131224452615197) +station = ('kbna', 0.0024004051737172381) +zone = ('tnz027', 0.0019371685464590919) + +[37118] +centroid = (0.62710098903176736, -1.5043032092847295) +station = ('kmqy', 0.004856260545684124) +zone = ('tnz063', 0.0027935812823247632) + +[37122] +centroid = (0.63150618261050862, -1.509373216228848) +station = ('kmqy', 0.0030827057863360282) +zone = ('tnz028', 0.0026250710803408634) + +[37127] +centroid = (0.62450156545701707, -1.506699685974058) +station = ('kmqy', 0.0048148497984006264) +zone = ('tnz062', 0.0016555887838052476) + +[37128] +centroid = (0.62455181348618205, -1.5095242570223155) +station = ('kmqy', 0.0039456966410646071) +zone = ('tnz062', 0.0014494527711723026) + +[37129] +centroid = (0.62714088725846806, -1.5087088217424913) +station = ('kmqy', 0.0017234045511927895) +zone = ('tnz062', 0.0016101213382727947) + +[37130] +centroid = (0.62631005817464114, -1.5065194109156195) +station = ('kmqy', 0.0035905116726423817) +zone = ('tnz062', 0.0015885774142584011) + +[37132] +centroid = (0.62568784829630508, -1.5073416529795267) +station = ('kmqy', 0.0035499148252505831) +zone = ('tnz062', 0.00074994507012125398) + +[37134] +centroid = (0.62818513520322872, -1.534982711596041) +station = ('kcey', 0.013013010731434457) +zone = ('tnz022', 0.0021699135294087801) + +[37135] +centroid = (0.62684889367460939, -1.512792124247287) +station = ('kmqy', 0.002744848550292044) +zone = ('tnz059', 0.0031631614965616558) + +[37137] +centroid = (0.62629674131244839, -1.5272567498627003) +station = ('kckv', 0.012845462967779712) +zone = ('tnz057', 0.0014823988995170429) + +[37138] +centroid = (0.63257737843892003, -1.5116190360971442) +station = ('kbna', 0.0024546218155331581) +zone = ('tnz027', 0.0027925086905553069) + +[37140] +centroid = (0.62586067079883767, -1.5298251938432279) +station = ('kckv', 0.013631262917577016) +zone = ('tnz057', 0.0027171269214444948) + +[37141] +centroid = (0.63905082208785968, -1.5132340939737696) +station = ('kbwg', 0.0073203108547746131) +zone = ('kyz072', 0.0027777530546768013) + +[37142] +centroid = (0.63548987917489308, -1.5273321829929716) +station = ('kckv', 0.0038212061514769392) +zone = ('tnz006', 0.0023284281667062807) + +[37143] +centroid = (0.63054787467811602, -1.5189817424532674) +station = ('kbna', 0.0049086627385502629) +zone = ('tnz026', 0.002457379169102966) + +[37144] +centroid = (0.61619238450082991, -1.5125085780570082) +station = ('ktha', 0.0060322395153786495) +zone = ('tnz096', 0.0030501501557486164) + +[37145] +centroid = (0.63490472263657693, -1.4993517974632844) +station = ('ksrb', 0.0077126184884494346) +zone = ('tnz030', 0.0023238447251419958) + +[37146] +centroid = (0.63533592368157477, -1.5189952338483852) +station = ('kckv', 0.0065684840553632759) +zone = ('tnz026', 0.0025764349469387343) + +[37148] +centroid = (0.63820819457828926, -1.5096268474757479) +station = ('kbwg', 0.0070677664226559992) +zone = ('tnz008', 0.0017664641099835831) + +[37149] +centroid = (0.6248977551972198, -1.5043463363705463) +station = ('kmqy', 0.0058477635211422194) +zone = ('tnz063', 0.0018560066845032504) + +[37150] +centroid = (0.63776919191153514, -1.4976741869862675) +station = ('kglw', 0.0087863525973898102) +zone = ('kyz075', 0.0032575752291789358) + +[37151] +centroid = (0.63371510621841765, -1.5017339973593313) +station = ('kmqy', 0.0085234310475977241) +zone = ('tnz030', 0.001588918374320007) + +[37153] +centroid = (0.62419620265108811, -1.5106544798860295) +station = ('kmqy', 0.0043046013452117827) +zone = ('tnz062', 0.0023832874833661301) + +[37160] +centroid = (0.61881976825019724, -1.5094403764984645) +station = ('ktha', 0.0036324941188912319) +zone = ('tnz075', 0.0010766281741889593) + +[37165] +centroid = (0.63342703962537594, -1.5266558330012385) +station = ('kckv', 0.0057054470927577821) +zone = ('tnz025', 0.0029779805806457111) + +[37166] +centroid = (0.62688697675888783, -1.497263912439001) +station = ('ksrb', 0.0043457840537665044) +zone = ('tnz064', 0.0012588762109792622) + +[37167] +centroid = (0.62761238795589425, -1.5102611524858001) +station = ('kmqy', 0.00087669891443339833) +zone = ('tnz062', 0.002607079509707786) + +[37171] +centroid = (0.63462463219821696, -1.5235950141854313) +station = ('kckv', 0.004769733414259251) +zone = ('tnz006', 0.0026653687783131847) + +[37172] +centroid = (0.63761094290825671, -1.5160312284461859) +station = ('kbna', 0.0076796943613457042) +zone = ('tnz007', 0.00016903878723361108) + +[37174] +centroid = (0.62342871156581614, -1.5166640499263739) +station = ('kmqy', 0.0073555929088034086) +zone = ('tnz059', 0.0030362815651297083) + +[37175] +centroid = (0.63398547517284409, -1.5339533862163848) +station = ('khop', 0.0080883504373704587) +zone = ('tnz023', 0.0025110787341211284) + +[37178] +centroid = (0.6339714252723655, -1.5322328406397689) +station = ('khop', 0.0072389407103537595) +zone = ('tnz023', 0.0012257043316580007) + +[37179] +centroid = (0.62502692701515994, -1.5171184114905456) +station = ('kbna', 0.0063237921246025782) +zone = ('tnz059', 0.0014835935291062858) + +[37180] +centroid = (0.62145010160600034, -1.511222322758166) +station = ('ktha', 0.00624178847730415) +zone = ('tnz075', 0.0024303161287405205) + +[37181] +centroid = (0.63258680321688088, -1.5266244345279953) +station = ('kckv', 0.0065362532715713935) +zone = ('tnz025', 0.002298570069962667) + +[37183] +centroid = (0.61949557718986192, -1.5062746633946122) +station = ('ktha', 0.0021532600635437139) +zone = ('tnz075', 0.0022380390647061873) + +[37184] +centroid = (0.62975701363415992, -1.5034980539941996) +station = ('kmqy', 0.005457760488431382) +zone = ('tnz028', 0.0025068507285769463) + +[37185] +centroid = (0.62943967786956223, -1.5334057542569868) +station = ('kckv', 0.011463114220583876) +zone = ('tnz024', 0.0012269535836686089) + +[37186] +centroid = (0.6387335735897246, -1.5048527436530126) +station = ('kbwg', 0.0070080578779972529) +zone = ('kyz073', 0.0027329909824671443) + +[37187] +centroid = (0.63083440538141589, -1.5218902987451308) +station = ('kckv', 0.008801309788404368) +zone = ('tnz025', 0.0022398753303440448) + +[37188] +centroid = (0.6367008235165118, -1.5128744514281036) +station = ('kbna', 0.0063461384660577743) +zone = ('tnz007', 0.0027684883634643198) + +[37189] +centroid = (0.63353497078631926, -1.5155532176706494) +station = ('kbna', 0.0038293522560470818) +zone = ('tnz027', 0.0023669525700229605) + +[37190] +centroid = (0.62511653221895724, -1.5013532363297162) +station = ('kmqy', 0.0078092137781609165) +zone = ('tnz063', 0.00058926272571411479) + +[37191] +centroid = (0.63694176621974963, -1.5276806554314246) +station = ('kckv', 0.0026621966130424986) +zone = ('tnz006', 0.0020596611501348377) + +[37201] +centroid = (0.6312157947295618, -1.5145496882573379) +station = ('kbna', 0.0015797778054057871) +zone = ('tnz027', 0.0001211259914550325) + +[37203] +centroid = (0.63092978762503737, -1.5147820439406559) +station = ('kbna', 0.0016179363900954366) +zone = ('tnz027', 0.00035492918601390179) + +[37204] +centroid = (0.63018140789507482, -1.5144969444073426) +station = ('kbna', 0.0012940509042474861) +zone = ('tnz027', 0.0011037109379677746) + +[37205] +centroid = (0.63029415616475359, -1.5161752355627678) +station = ('kbna', 0.0026388159319873628) +zone = ('tnz027', 0.0015554312417697881) + +[37206] +centroid = (0.63144823767934233, -1.513742962170481) +station = ('kbna', 0.0012839750713384225) +zone = ('tnz027', 0.00077635215768038232) + +[37207] +centroid = (0.63239865672351581, -1.5145263706585312) +station = ('kbna', 0.0024250479144105001) +zone = ('tnz027', 0.001130401329434115) + +[37208] +centroid = (0.63142022514484786, -1.5150858184969656) +station = ('kbna', 0.0020551009077740125) +zone = ('tnz027', 0.00035791970435410477) + +[37209] +centroid = (0.6315543711511562, -1.5175388264007661) +station = ('kbna', 0.0039257379188385889) +zone = ('tnz026', 0.0023533332179706701) + +[37210] +centroid = (0.63092369642594792, -1.5137756696406635) +station = ('kbna', 0.00090166903273328528) +zone = ('tnz027', 0.00081067184580982789) + +[37211] +centroid = (0.62949198538724449, -1.5136142964980239) +station = ('kbna', 0.0010337566877289381) +zone = ('tnz027', 0.0019802445741983333) + +[37212] +centroid = (0.63065512516065103, -1.5149676771598981) +station = ('kbna', 0.0016893115254776969) +zone = ('tnz027', 0.00066193766340127448) + +[37213] +centroid = (0.63121849998990232, -1.5143792917624659) +station = ('kbna', 0.0014679163022388913) +zone = ('tnz027', 0.00024966820805709898) + +[37214] +centroid = (0.63114926277847572, -1.5126919947081003) +station = ('kbna', 0.00081371279326168373) +zone = ('tnz027', 0.001610272002436502) + +[37215] +centroid = (0.62974739686998138, -1.5155512629018875) +station = ('kbna', 0.00221920534802981) +zone = ('tnz027', 0.001681849162152745) + +[37216] +centroid = (0.63209861717180549, -1.5136689602101967) +station = ('kbna', 0.0018484904118707243) +zone = ('tnz027', 0.0011595563499485926) + +[37217] +centroid = (0.63020894919067127, -1.5124387997935136) +station = ('kbna', 0.00040730878009915432) +zone = ('tnz027', 0.0021009938303509844) + +[37218] +centroid = (0.63118252875401881, -1.5165063943350412) +station = ('kbna', 0.0030203480843771979) +zone = ('tnz027', 0.0014769543101475766) + +[37219] +centroid = (0.63122993189650289, -1.514652173991015) +station = ('kbna', 0.0016572006120116689) +zone = ('tnz027', 5.0643498668000613e-05) + +[37220] +centroid = (0.62951315623107118, -1.5148258342515883) +station = ('kbna', 0.0017623914985924387) +zone = ('tnz027', 0.0017658690861396867) + +[37221] +centroid = (0.62921377990447658, -1.5178918716018595) +station = ('kbna', 0.004185000718657057) +zone = ('tnz059', 0.002921676541604714) + +[37228] +centroid = (0.63174445495999088, -1.515008325878177) +station = ('kbna', 0.002191526139781574) +zone = ('tnz027', 0.00053878551584940254) + +[37240] +centroid = (0.63084739063105089, -1.5150412776944546) +station = ('kbna', 0.0017908148897630015) +zone = ('tnz027', 0.0005174960281126989) + +[37243] +centroid = (0.63119851596996701, -1.5146340923799644) +station = ('kbna', 0.0016283340252728794) +zone = ('tnz027', 8.5273649683083043e-05) + +[37246] +centroid = (0.63110856170031926, -1.514796512720155) +station = ('kbna', 0.0017001354138277739) +zone = ('tnz027', 0.00019108437661933617) + +[37301] +centroid = (0.61812414982352237, -1.4973788074636598) +station = ('kbgf', 0.0056918545805954178) +zone = ('tnz079', 0.0011168753978493976) + +[37302] +centroid = (0.61101060667141405, -1.4838757535463403) +station = ('kcha', 0.002612101405714128) +zone = ('gaz003', 0.0024907574100791001) + +[37303] +centroid = (0.61858765691297446, -1.4772480227915246) +station = ('kcha', 0.010709686697805192) +zone = ('tnz085', 0.00044508948408969267) + +[37305] +centroid = (0.61898433534536779, -1.4956464634613005) +station = ('kbgf', 0.0072979774858275802) +zone = ('tnz079', 0.0013996541808403917) + +[37306] +centroid = (0.61255077246983625, -1.5043307680336186) +station = ('kbgf', 0.0022829623754549526) +zone = ('tnz097', 0.0017486864088889251) + +[37307] +centroid = (0.61390610790047251, -1.4769206339304355) +station = ('kcha', 0.0086209832415707812) +zone = ('tnz101', 0.00069255198062011583) + +[37308] +centroid = (0.61684534708058614, -1.4834208858366857) +station = ('kcha', 0.0061478840338220391) +zone = ('tnz099', 0.0037295962242379381) + +[37309] +centroid = (0.61613459664929648, -1.4790179611859722) +station = ('kcha', 0.0080479227479247541) +zone = ('tnz085', 0.0027774828284461445) + +[37310] +centroid = (0.61478538732433485, -1.4785944395896831) +station = ('kcha', 0.0076573618611789473) +zone = ('tnz101', 0.0022811356399724003) + +[37311] +centroid = (0.61283978154067409, -1.4822764734461529) +station = ('kcha', 0.0041248630560955773) +zone = ('tnz100', 0.0012122734926937203) + +[37312] +centroid = (0.6149224480304939, -1.4814323449534259) +station = ('kcha', 0.0057414778024306844) +zone = ('tnz100', 0.0013977371007801204) + +[37313] +centroid = (0.61710843801203175, -1.4959705711033957) +station = ('kbgf', 0.0059367810231912696) +zone = ('tnz079', 0.00055351771038929763) + +[37315] +centroid = (0.61170751664173528, -1.4844296686910456) +station = ('kcha', 0.002137180275106094) +zone = ('gaz003', 0.0028118259649575796) + +[37317] +centroid = (0.61140630771942617, -1.4738093576459528) +station = ('kdnn', 0.0081469735369758319) +zone = ('tnz102', 0.0010538454786251108) + +[37318] +centroid = (0.61397045818999363, -1.5008571439431293) +station = ('kbgf', 0.0010469403956532403) +zone = ('tnz097', 0.0014742836523888372) + +[37321] +centroid = (0.61962858873215643, -1.4836699094143602) +station = ('kcsv', 0.0078897659596346408) +zone = ('tnz083', 0.0022070896180855126) + +[37322] +centroid = (0.61965117329267727, -1.4804561299429078) +station = ('kcsv', 0.0086180167244855627) +zone = ('tnz084', 0.00021942118425452274) + +[37323] +centroid = (0.61254394823246106, -1.4803277609764238) +station = ('kcha', 0.0055867897387782564) +zone = ('tnz100', 0.0011831138677798575) + +[37324] +centroid = (0.61504308518839179, -1.5008296375541179) +station = ('kbgf', 0.0015191654417118609) +zone = ('tnz097', 0.0020611958303957192) + +[37325] +centroid = (0.61525228035253576, -1.4764039990185527) +station = ('kcha', 0.0094787208461393178) +zone = ('tnz101', 0.0019158644914275276) + +[37326] +centroid = (0.61156343971198324, -1.4727958274960271) +station = ('krhp', 0.0079196416115777345) +zone = ('tnz102', 0.00087854984413288377) + +[37327] +centroid = (0.61825618398143578, -1.4907689663336772) +station = ('kcha', 0.0074659381222243549) +zone = ('tnz081', 0.00091421063044918151) + +[37328] +centroid = (0.61150999773028714, -1.5072205096761455) +station = ('kmdq', 0.0041906733656565187) +zone = ('tnz096', 0.0037682622033818401) + +[37329] +centroid = (0.61774803136971757, -1.4741232376586315) +station = ('krhp', 0.0091942695199827632) +zone = ('tnz086', 0.0026846430433091024) + +[37330] +centroid = (0.61574416649562536, -1.5032621727457927) +station = ('kbgf', 0.002003347530278947) +zone = ('tnz097', 0.0022431849875443272) + +[37331] +centroid = (0.61643828393914346, -1.4753239020109559) +station = ('kcha', 0.010785054166905936) +zone = ('tnz085', 0.0022240287402410623) + +[37332] +centroid = (0.62131454188299784, -1.483040246980118) +station = ('kcsv', 0.0063309461255256052) +zone = ('tnz083', 0.00069692554054253048) + +[37333] +centroid = (0.61354875173612666, -1.4719293238822895) +station = ('krhp', 0.0067682147302518146) +zone = ('tnz102', 0.0016109263251238655) + +[37334] +centroid = (0.6137703736445449, -1.5111216870734958) +station = ('kmdq', 0.0053350980065868751) +zone = ('tnz096', 0.00046713019003035512) + +[37335] +centroid = (0.61206773514605439, -1.5080341472668404) +station = ('kmdq', 0.0042332199817942222) +zone = ('tnz096', 0.002921045473673107) + +[37336] +centroid = (0.61625594939218753, -1.4823343485641489) +station = ('kcha', 0.0061481394111599927) +zone = ('tnz100', 0.0028891181726407558) + +[37337] +centroid = (0.62460195679559183, -1.4809234593034217) +station = ('kcsv', 0.0043493573296586796) +zone = ('tnz083', 0.0032836613319501052) + +[37338] +centroid = (0.618322960278617, -1.4873162512876266) +station = ('kcha', 0.0068801875567170252) +zone = ('tnz082', 0.0029562142859878783) + +[37339] +centroid = (0.61749677377060042, -1.4945992659101037) +station = ('kbgf', 0.0070962894426806773) +zone = ('tnz079', 0.0012660576507353596) + +[37340] +centroid = (0.61145974970112227, -1.4925622746868086) +station = ('kcha', 0.0045376831564796234) +zone = ('tnz098', 0.0022350732836111261) + +[37341] +centroid = (0.61478107636108237, -1.4848905403333275) +station = ('kcha', 0.0037617310601767628) +zone = ('tnz099', 0.0014522837976245094) + +[37342] +centroid = (0.61770637036047249, -1.5000755855040862) +station = ('kbgf', 0.0041038924535419493) +zone = ('tnz077', 0.0024928433517619904) + +[37343] +centroid = (0.61377416100902171, -1.4872348491313139) +station = ('kcha', 0.0023337434122026341) +zone = ('tnz099', 0.00072147375772242943) + +[37345] +centroid = (0.61115765066089445, -1.5045264892559373) +station = ('kbgf', 0.0034194737221046401) +zone = ('tnz097', 0.0028841499345862065) + +[37347] +centroid = (0.61193596278752882, -1.4943515164227832) +station = ('kcha', 0.0060216014641895797) +zone = ('tnz098', 0.0011880628879115277) + +[37348] +centroid = (0.6131623532930276, -1.5085587757866972) +station = ('kmdq', 0.0050343890825275631) +zone = ('tnz096', 0.0022156066470400025) + +[37350] +centroid = (0.61075913963278661, -1.4896417279829839) +station = ('kcha', 0.0022543192690656238) +zone = ('gaz001', 0.0032846954979722609) + +[37351] +centroid = (0.61261554163837784, -1.4880740557955501) +station = ('kcha', 0.0014522444777889929) +zone = ('tnz099', 0.0019595590929754629) + +[37352] +centroid = (0.61570887593815005, -1.5071446402135613) +station = ('ktha', 0.0023436809040685114) +zone = ('tnz076', 0.00014989684077600514) + +[37353] +centroid = (0.61287254137073399, -1.4833395534935427) +station = ('kcha', 0.0033327920683053182) +zone = ('tnz100', 0.0019702362553475437) + +[37354] +centroid = (0.61970445819474063, -1.4721532496253205) +station = ('ktys', 0.0074886209489930886) +zone = ('tnz086', 0.00065425839674364261) + +[37355] +centroid = (0.6195878527474149, -1.5024480115563221) +station = ('ktha', 0.0031184575785234065) +zone = ('tnz077', 0.00020601156318118648) + +[37356] +centroid = (0.61487226981449905, -1.4979011845087817) +station = ('kbgf', 0.0035791704635100017) +zone = ('tnz079', 0.0031216678103029873) + +[37357] +centroid = (0.62108044087042791, -1.4995404675554249) +station = ('ktha', 0.0058944659630635679) +zone = ('tnz078', 0.0025567708362588294) + +[37359] +centroid = (0.6144292005305878, -1.5081892197708799) +station = ('ktha', 0.0038756882017781658) +zone = ('tnz076', 0.0016025465007085086) + +[37360] +centroid = (0.61850272919157245, -1.5054222096813532) +station = ('ktha', 0.001010829182873961) +zone = ('tnz077', 0.0027146944141549036) + +[37361] +centroid = (0.61263236661236709, -1.4780605957313755) +station = ('kdnn', 0.0071214508096858788) +zone = ('tnz101', 0.0015020300976462551) + +[37362] +centroid = (0.61141299233046131, -1.4779587557695215) +station = ('kdnn', 0.006041096303288627) +zone = ('tnz101', 0.0022907894137932008) + +[37363] +centroid = (0.61288437470306256, -1.4846434540711226) +station = ('kcha', 0.0024188025810367962) +zone = ('tnz099', 0.0018365145802247055) + +[37365] +centroid = (0.61754164618566931, -1.4932992050568783) +station = ('kcha', 0.0079663133192757717) +zone = ('tnz081', 0.0021315937329508326) + +[37366] +centroid = (0.61677954816778591, -1.4980160795334405) +station = ('kbgf', 0.0043883405899805073) +zone = ('tnz079', 0.0017561657879986471) + +[37367] +centroid = (0.62177324931700706, -1.4876526809542412) +station = ('kcsv', 0.0060715635575067364) +zone = ('tnz082', 0.0006662252980951717) + +[37369] +centroid = (0.61419221972475191, -1.4744488113772984) +station = ('kdnn', 0.009900978657362584) +zone = ('tnz101', 0.0018379131355443911) + +[37370] +centroid = (0.6170907403734166, -1.4782791284070178) +station = ('kcha', 0.0091038290946142391) +zone = ('tnz085', 0.0016621401329217549) + +[37373] +centroid = (0.61797673931489894, -1.4851498089937112) +station = ('kcha', 0.0067061809509267123) +zone = ('tnz082', 0.003663298529354504) + +[37374] +centroid = (0.61380454719129907, -1.4948149013391876) +station = ('kcha', 0.0067987281885591496) +zone = ('tnz098', 0.00076593431317289952) + +[37375] +centroid = (0.61349443708980456, -1.4990792468472929) +station = ('kbgf', 0.0025441833133148326) +zone = ('tnz097', 0.0028733435667417759) + +[37376] +centroid = (0.61169889471523042, -1.5002121400647626) +station = ('kbgf', 0.0027588215547725732) +zone = ('tnz097', 0.0026997197737261783) + +[37377] +centroid = (0.61444174944790952, -1.4893762284971706) +station = ('kcha', 0.0035610740821608203) +zone = ('tnz099', 0.0024631182136976406) + +[37379] +centroid = (0.61601711853734475, -1.4866216102453329) +station = ('kcha', 0.004581724442187656) +zone = ('tnz099', 0.0020023267174053574) + +[37380] +centroid = (0.6121033224095026, -1.4967002059971919) +station = ('kbgf', 0.0048209954114987576) +zone = ('tnz098', 0.0021509447061985459) + +[37381] +centroid = (0.62285879175186998, -1.4813829870421795) +station = ('kcsv', 0.0054377262263627657) +zone = ('tnz083', 0.0015258585031203611) + +[37385] +centroid = (0.61667994222737454, -1.4702127227497832) +station = ('krhp', 0.005841675485028894) +zone = ('tnz087', 0.0014884906329864784) + +[37387] +centroid = (0.61563497869762052, -1.4965601607780119) +station = ('kbgf', 0.0048533036793059403) +zone = ('tnz079', 0.002037928512298576) + +[37388] +centroid = (0.61686344614492927, -1.5048454830833242) +station = ('ktha', 0.00073008128892400152) +zone = ('tnz076', 0.0022123229061351227) + +[37391] +centroid = (0.61249263555245248, -1.4722554386530247) +station = ('krhp', 0.0072208037670315342) +zone = ('tnz102', 0.00082907640068956257) + +[37394] +centroid = (0.62027947437010278, -1.4985404811604948) +station = ('ktha', 0.0061603757980660716) +zone = ('tnz078', 0.002692611756645849) + +[37396] +centroid = (0.61096644984133852, -1.492251780612879) +station = ('kcha', 0.0043110377466868948) +zone = ('gaz001', 0.0026398032788115503) + +[37397] +centroid = (0.6147437961282598, -1.4925412958291997) +station = ('kcha', 0.0055907470730512466) +zone = ('tnz098', 0.0022131075758156562) + +[37398] +centroid = (0.61402793188226179, -1.5033984655070807) +station = ('kbgf', 0.0010322594076464815) +zone = ('tnz097', 0.00080317433670018209) + +[37402] +centroid = (0.61162833105357239, -1.489077759741787) +station = ('kcha', 0.0016941267599953752) +zone = ('tnz099', 0.0032416571509161795) + +[37403] +centroid = (0.61170325803836045, -1.4886657922251463) +station = ('kcha', 0.0013712109293539643) +zone = ('tnz099', 0.0029657347164225635) + +[37404] +centroid = (0.61135237704553957, -1.4883061671327729) +station = ('kcha', 0.0010569891879655302) +zone = ('gaz003', 0.0029097690122205319) + +[37405] +centroid = (0.61296666697729418, -1.4906478055770034) +station = ('kcha', 0.0033348675630151619) +zone = ('tnz099', 0.0036253052709656988) + +[37406] +centroid = (0.61214166729316888, -1.487815886692595) +station = ('kcha', 0.00095208895312846398) +zone = ('tnz099', 0.0022061365638193411) + +[37407] +centroid = (0.61089914994538153, -1.4885865019172282) +station = ('kcha', 0.0013946174777004052) +zone = ('gaz003', 0.0027659778390577506) + +[37408] +centroid = (0.61136497832273884, -1.4889150601489161) +station = ('kcha', 0.0015534938813635125) +zone = ('gaz003', 0.0032719282834669417) + +[37409] +centroid = (0.61110520351687203, -1.4893827560285731) +station = ('kcha', 0.0019644372630691679) +zone = ('gaz003', 0.0034141354266195856) + +[37410] +centroid = (0.61089838200051072, -1.4890140377707968) +station = ('kcha', 0.0017223564289861419) +zone = ('gaz003', 0.003048099823577653) + +[37411] +centroid = (0.611367264704059, -1.4874771880979529) +station = ('kcha', 0.00038234601780070003) +zone = ('gaz003', 0.0025216416035276508) + +[37412] +centroid = (0.61082205875232098, -1.4874992665129907) +station = ('kcha', 0.000737769878935988) +zone = ('gaz003', 0.0020785631006305818) + +[37415] +centroid = (0.61304210010756521, -1.4884377125984956) +station = ('kcha', 0.0019721478986750906) +zone = ('tnz099', 0.0019288037064560258) + +[37416] +centroid = (0.6126349846062451, -1.4866152572468556) +station = ('kcha', 0.001233409048134193) +zone = ('tnz099', 0.0013980490466646352) + +[37419] +centroid = (0.61155963489421383, -1.4905832458479722) +station = ('kcha', 0.002919280065201698) +zone = ('tnz098', 0.0034826252106336395) + +[37421] +centroid = (0.61141737310688382, -1.486106389050144) +station = ('kcha', 0.00074910372553904734) +zone = ('gaz003', 0.0022387801925488186) + +[37601] +centroid = (0.63408658209641211, -1.4367135886719973) +station = ('k0a9', 0.0021867714534938004) +zone = ('tnz046', 0.0022849351608671374) + +[37604] +centroid = (0.63354720554437582, -1.4378579137960672) +station = ('ktri', 0.0029257448978800217) +zone = ('tnz044', 0.0016102984993975878) + +[37614] +centroid = (0.63357883091042189, -1.4376488233516784) +station = ('ktri', 0.0029127964825479548) +zone = ('tnz044', 0.0017806727273996749) + +[37615] +centroid = (0.63534194506749397, -1.4391496494287608) +station = ('ktri', 0.0013794203766475824) +zone = ('tnz044', 0.0019864375860385907) + +[37616] +centroid = (0.63230613681986769, -1.4442040705826589) +station = ('ktri', 0.0064069895410219842) +zone = ('tnz042', 0.001575025722488226) + +[37617] +centroid = (0.63747414400148539, -1.4375504915016211) +station = ('ktri', 0.0011202168135433066) +zone = ('tnz017', 0.00088469223327822916) + +[37618] +centroid = (0.63635296194329682, -1.4348132567291332) +station = ('k0a9', 0.0016679766385133122) +zone = ('tnz017', 0.0016234976497805404) + +[37620] +centroid = (0.63791086028691946, -1.4328114687968507) +station = ('kvji', 0.002484235944193816) +zone = ('tnz046', 0.0032552131566657961) + +[37640] +centroid = (0.63402268559249664, -1.4307281739885005) +station = ('k0a9', 0.0028471347483624795) +zone = ('tnz047', 0.0024272475005204658) + +[37641] +centroid = (0.63174588612997751, -1.4428173366787793) +station = ('ktri', 0.0060319734300652104) +zone = ('tnz044', 0.0029298733118713629) + +[37642] +centroid = (0.63758600215324579, -1.443855039638845) +station = ('ktri', 0.0047204823901440774) +zone = ('tnz016', 0.0034358553919153012) + +[37643] +centroid = (0.63490444338389662, -1.4335631471990999) +station = ('k0a9', 0.00047953699264458282) +zone = ('tnz046', 0.00038134497935312544) + +[37645] +centroid = (0.63812993401462981, -1.4427275394887642) +station = ('ktri', 0.0040379031647888542) +zone = ('vaz005', 0.0027802319687986539) + +[37650] +centroid = (0.62997701238637371, -1.4390348242172721) +station = ('k0a9', 0.0062161385342503752) +zone = ('tnz045', 0.00037758215439627534) + +[37656] +centroid = (0.6352789386814971, -1.4421630651020843) +station = ('ktri', 0.0034381489452944992) +zone = ('tnz044', 0.0026187468514322974) + +[37657] +centroid = (0.62862611009203762, -1.4409460295613759) +station = ('ktri', 0.0081549770541178811) +zone = ('tnz045', 0.0024283831911969295) + +[37658] +centroid = (0.63267677493982122, -1.4332318313471937) +station = ('k0a9', 0.0022225846118374159) +zone = ('tnz047', 0.00043142606111784988) + +[37659] +centroid = (0.63320791353778805, -1.4397433929869967) +station = ('ktri', 0.0034987801659038201) +zone = ('tnz044', 0.00024557376105642162) + +[37660] +centroid = (0.63751172094028086, -1.4411471962109608) +station = ('ktri', 0.0026266377343177505) +zone = ('vaz005', 0.0033012870412447693) + +[37663] +centroid = (0.63637310304286476, -1.4397007894999554) +station = ('ktri', 0.0012494096339430308) +zone = ('tnz044', 0.0029380202408289652) + +[37664] +centroid = (0.63740171283752778, -1.4398789701632917) +station = ('ktri', 0.0016761583436746574) +zone = ('tnz017', 0.0027354342075770989) + +[37665] +centroid = (0.63842012990935881, -1.441128032495774) +station = ('ktri', 0.0030905048324637308) +zone = ('vaz005', 0.002406817139142483) + +[37680] +centroid = (0.63842894382208148, -1.4263778361081494) +station = ('kgev', 0.0050250758335683805) +zone = ('tnz018', 0.0028026529831199315) + +[37681] +centroid = (0.63288565594469981, -1.4419516010099125) +station = ('ktri', 0.0047080068106151729) +zone = ('tnz044', 0.0017809002378099269) + +[37682] +centroid = (0.63357172742036627, -1.4362470098030615) +station = ('k0a9', 0.0020832350349169362) +zone = ('tnz046', 0.0021764541971359924) + +[37683] +centroid = (0.63625531077164765, -1.4280639463386235) +station = ('kvji', 0.0049688641045862233) +zone = ('tnz018', 0.00041782574847773122) + +[37686] +centroid = (0.63600162716487041, -1.4372578870525241) +station = ('ktri', 0.00085418730579936756) +zone = ('tnz017', 0.0014147679022696398) + +[37687] +centroid = (0.63144296678500134, -1.4327866676681802) +station = ('k0a9', 0.0035065590352004166) +zone = ('tnz047', 0.00090127979049398857) + +[37688] +centroid = (0.63783828949662158, -1.4291258919219993) +station = ('kvji', 0.0031991253273833541) +zone = ('tnz018', 0.001639320865098653) + +[37690] +centroid = (0.63268394824304686, -1.4409016632917904) +station = ('ktri', 0.0043806583210308303) +zone = ('tnz044', 0.0011336387351554484) + +[37691] +centroid = (0.63480536104226093, -1.4269235132987854) +station = ('ktnb', 0.0033511502353725559) +zone = ('tnz018', 0.0019734861342212322) + +[37692] +centroid = (0.63163154961067935, -1.4364204431708321) +station = ('k0a9', 0.0036438174204640561) +zone = ('tnz045', 0.0023097928403406163) + +[37694] +centroid = (0.63508683029072999, -1.4359998013678092) +station = ('k0a9', 0.0015315487212202053) +zone = ('tnz046', 0.0016187271484345419) + +[37701] +centroid = (0.6247011613102752, -1.4658333949505566) +station = ('ktys', 0.00041938801086492038) +zone = ('tnz071', 0.0012352430130890986) + +[37705] +centroid = (0.63230964493166408, -1.4662282407872351) +station = ('koqt', 0.0048704911979335335) +zone = ('tnz037', 0.0026216518329679832) + +[37708] +centroid = (0.6340872627748203, -1.4541438079392293) +station = ('k0vg', 0.0058106290692148035) +zone = ('tnz039', 0.0020978807043730138) + +[37709] +centroid = (0.63116336503883175, -1.4602218996060068) +station = ('ktys', 0.0075367801297990542) +zone = ('tnz038', 0.0029434605806525635) + +[37710] +centroid = (0.63108718141698228, -1.4715941508527366) +station = ('koqt', 0.0027391911353246488) +zone = ('tnz036', 0.0018006267429485224) + +[37711] +centroid = (0.63322866550259427, -1.4494160949680119) +station = ('k0vg', 0.0069377937528929028) +zone = ('tnz016', 0.0031288538241377017) + +[37713] +centroid = (0.62974017120687809, -1.4509671690742592) +station = ('k0vg', 0.01005952573142165) +zone = ('tnz040', 0.0017311967586901213) + +[37714] +centroid = (0.63288284596460409, -1.4713898077039131) +station = ('koqt', 0.0043893382520128919) +zone = ('tnz036', 0.002909551025324426) + +[37715] +centroid = (0.63799161667140925, -1.4653875505931344) +station = ('k1a6', 0.0032803329876201904) +zone = ('tnz013', 0.0037322797119226573) + +[37716] +centroid = (0.63001366430066563, -1.4691340918187581) +station = ('koqt', 0.001626379245607918) +zone = ('tnz036', 0.0004959745064714989) + +[37719] +centroid = (0.62870974626979326, -1.4735706838707427) +station = ('koqt', 0.0027693264352904815) +zone = ('tnz067', 0.0033240691905212067) + +[37721] +centroid = (0.63038534961817028, -1.4628055454043192) +station = ('ktys', 0.0057926285305634475) +zone = ('tnz069', 0.0028041375794631601) + +[37722] +centroid = (0.62508675690191828, -1.452160991735916) +station = ('k1a5', 0.010873483776410233) +zone = ('tnz041', 0.0018764280497631117) + +[37723] +centroid = (0.62772201208621203, -1.4803465930790527) +station = ('kcsv', 0.0037641312730810621) +zone = ('tnz066', 0.0025668222635564578) + +[37724] +centroid = (0.63793213585050124, -1.4609514646866328) +station = ('k1a6', 0.0011288014995221455) +zone = ('tnz014', 0.0013035594849393087) + +[37725] +centroid = (0.62825056759688591, -1.4555932340698403) +station = ('ktys', 0.0088296941222618004) +zone = ('tnz070', 0.0011649710163380695) + +[37726] +centroid = (0.63188217889126574, -1.4805710598741517) +station = ('kcsv', 0.0056924128688068711) +zone = ('tnz035', 0.0028263699788466387) + +[37727] +centroid = (0.6263451916524837, -1.4489984725845946) +station = ('kavl', 0.010516482241979788) +zone = ('tnz041', 0.0010868010320161971) + +[37729] +centroid = (0.63733579175167987, -1.4666777154295012) +station = ('k1a6', 0.0044773174500690495) +zone = ('tnz013', 0.002548053167931769) + +[37730] +centroid = (0.63787218379069532, -1.4656492452611785) +station = ('k1a6', 0.0035171181848095093) +zone = ('tnz013', 0.0034994412540354245) + +[37731] +centroid = (0.63789457636499836, -1.4487814583454017) +station = ('k0vg', 0.0034532385288852251) +zone = ('tnz016', 0.0020817316152425768) + +[37732] +centroid = (0.63402642059709591, -1.4766596373940921) +station = ('koqt', 0.0075475939875170612) +zone = ('tnz012', 0.0022872355371865933) + +[37733] +centroid = (0.63449832272025009, -1.478489911820781) +station = ('kcsv', 0.0087883776344713418) +zone = ('tnz034', 0.0031423125122890345) + +[37737] +centroid = (0.62413600624518695, -1.4681720837883512) +station = ('ktys', 0.0021709760105343401) +zone = ('tnz068', 0.0027489808029486098) + +[37738] +centroid = (0.62256332496279987, -1.4569115161604567) +station = ('k1a5', 0.0079596963452015865) +zone = ('tnz074', 0.00014824322999072113) + +[37742] +centroid = (0.62266095868115645, -1.4692050219995592) +station = ('ktys', 0.003707072002212812) +zone = ('tnz068', 0.0021411464424022481) + +[37743] +centroid = (0.62952128946538555, -1.4461156773524906) +station = ('ktri', 0.0094565484428471847) +zone = ('tnz043', 0.0012819989524557921) + +[37745] +centroid = (0.63317112199715608, -1.4454921933838005) +station = ('ktri', 0.0067657805124652082) +zone = ('tnz042', 0.0014227396564948766) + +[37748] +centroid = (0.62736919377792144, -1.4750881254823041) +station = ('koqt', 0.0041847874166143226) +zone = ('tnz067', 0.0017099011257309892) + +[37752] +centroid = (0.63797388412620892, -1.4581364056827988) +station = ('k1a6', 0.0028731038402024659) +zone = ('tnz014', 0.0019993385250602165) + +[37753] +centroid = (0.62523083383167044, -1.4503746996063771) +station = ('kavl', 0.010534545316510364) +zone = ('tnz041', 0.00049130616264292772) + +[37754] +centroid = (0.63074776723734693, -1.4665959991139228) +station = ('koqt', 0.0035803088258484122) +zone = ('tnz036', 0.0024062020107764436) + +[37755] +centroid = (0.63534163090822871, -1.4752693081119537) +station = ('koqt', 0.0078987830242349052) +zone = ('tnz012', 0.00056162367090471516) + +[37756] +centroid = (0.63363419275429511, -1.4734034813284016) +station = ('koqt', 0.0056703037405089335) +zone = ('tnz012', 0.0024637679245825823) + +[37757] +centroid = (0.63353722226105436, -1.4684728912849325) +station = ('koqt', 0.0051102466273452813) +zone = ('tnz013', 0.0018332356101901435) + +[37760] +centroid = (0.63025689338522362, -1.4566202032550064) +station = ('ktys', 0.0090240236813223622) +zone = ('tnz070', 0.0010615767122694958) + +[37762] +centroid = (0.63839438630289191, -1.4682786535924781) +station = ('k1a6', 0.0054810973675054383) +zone = ('tnz013', 0.0030490293407093999) + +[37763] +centroid = (0.6251809523216485, -1.4746682167175669) +station = ('koqt', 0.0050148950834371601) +zone = ('tnz067', 0.00065144512585835744) + +[37764] +centroid = (0.6278011278612049, -1.4593773871408442) +station = ('ktys', 0.0058434394577460561) +zone = ('tnz073', 0.0023070519241016) + +[37765] +centroid = (0.63830780051870051, -1.4496463562562274) +station = ('k0vg', 0.0026452501428131212) +zone = ('vaz001', 0.0025216894749783918) + +[37766] +centroid = (0.6352946291914725, -1.4674872165898689) +station = ('k1a6', 0.0060645945037633188) +zone = ('tnz013', 0.00096433765933462326) + +[37769] +centroid = (0.63213505964658712, -1.4687564025686264) +station = ('koqt', 0.0037007657314153761) +zone = ('tnz036', 0.0018611676701953939) + +[37770] +centroid = (0.63099431244748372, -1.4776532184306674) +station = ('kcsv', 0.0069080877167180142) +zone = ('tnz035', 0.00037702962593107523) + +[37771] +centroid = (0.62553768016746347, -1.4716883288191742) +station = ('koqt', 0.0033150032520792828) +zone = ('tnz068', 0.0018496226777202883) + +[37772] +centroid = (0.62467323604224323, -1.4698910411153481) +station = ('koqt', 0.0039417250908024178) +zone = ('tnz068', 0.0016421191011929664) + +[37774] +centroid = (0.62359100973295911, -1.4723417626378283) +station = ('koqt', 0.0053236776866483534) +zone = ('tnz068', 0.000678882892752029) + +[37777] +centroid = (0.62529647566483804, -1.4670224005034775) +station = ('ktys', 0.0010184074326410753) +zone = ('tnz071', 0.002217543443828469) + +[37779] +centroid = (0.63207306555155629, -1.4618195216434049) +station = ('k1a6', 0.0069067553947540772) +zone = ('tnz037', 0.001710714957128543) + +[37801] +centroid = (0.62245282816785608, -1.4677275484278685) +station = ('ktys', 0.0030970096514985525) +zone = ('tnz071', 0.0021813510255042383) + +[37803] +centroid = (0.62239910693347977, -1.4657517484481479) +station = ('ktys', 0.0027197929716560251) +zone = ('tnz071', 0.0011603050248408671) + +[37804] +centroid = (0.62468924071148402, -1.4642117397293584) +station = ('ktys', 0.0013468244116533682) +zone = ('tnz071', 0.0015075773115157086) + +[37806] +centroid = (0.62979670242135022, -1.4613290317637171) +station = ('ktys', 0.0059075383065515675) +zone = ('tnz069', 0.0033555492221599582) + +[37807] +centroid = (0.63285038284051698, -1.4630395242438416) +station = ('k1a6', 0.0062499056163824564) +zone = ('tnz037', 0.0005188737666176887) + +[37809] +centroid = (0.63108297517348499, -1.4493408363706659) +station = ('k0vg', 0.0089970738908476799) +zone = ('tnz042', 0.0027479191013883176) + +[37810] +centroid = (0.63154004199799729, -1.4506389250018368) +station = ('k0vg', 0.0083160303637734006) +zone = ('tnz039', 0.0022030929277498958) + +[37811] +centroid = (0.63452345546147881, -1.4522842643409843) +station = ('k0vg', 0.0052088042525365056) +zone = ('tnz039', 0.0025430700239480642) + +[37813] +centroid = (0.6313752305567315, -1.453109176758647) +station = ('k0vg', 0.0083739754796265751) +zone = ('tnz039', 0.00074644447474663856) + +[37814] +centroid = (0.63238924939884766, -1.4545123865706655) +station = ('k0vg', 0.0075315131577128186) +zone = ('tnz039', 0.0010356597458679182) + +[37818] +centroid = (0.63161348545292118, -1.4481185997487869) +station = ('k0vg', 0.0088259922503098661) +zone = ('tnz042', 0.0016724087323835872) + +[37819] +centroid = (0.63823645145887897, -1.4696676389710928) +station = ('k1a6', 0.0066072349696132968) +zone = ('tnz013', 0.002980957475603225) + +[37820] +centroid = (0.62980504509517476, -1.458502837559255) +station = ('ktys', 0.0075312200614861035) +zone = ('tnz070', 0.0017916831933768691) + +[37821] +centroid = (0.62788516546468842, -1.4520365497602488) +station = ('k0vg', 0.011849997115969027) +zone = ('tnz040', 0.00061028585889637505) + +[37825] +centroid = (0.6354238359159976, -1.4607674022637178) +station = ('k1a6', 0.0035981151338878108) +zone = ('tnz014', 0.0014623341834566911) + +[37826] +centroid = (0.62060899253287916, -1.4763681499557166) +station = ('koqt', 0.009458204903071676) +zone = ('tnz085', 0.0023629401448479821) + +[37828] +centroid = (0.63177300854655349, -1.4672810059387456) +station = ('koqt', 0.0039213824295816898) +zone = ('tnz036', 0.0022926493762679373) + +[37829] +centroid = (0.62849657175495466, -1.477206274515817) +station = ('kcsv', 0.0063812368889994229) +zone = ('tnz035', 0.0021840978805365199) + +[37830] +centroid = (0.62773354871256759, -1.4711476083636137) +station = ('koqt', 0.0011916238600345257) +zone = ('tnz036', 0.0029525719031776049) + +[37840] +centroid = (0.62954712033831506, -1.4732177259361119) +station = ('koqt', 0.0026525472166679916) +zone = ('tnz036', 0.0030868196096563633) + +[37841] +centroid = (0.63733909042396619, -1.4760144764360925) +station = ('kekq', 0.0071409935797029887) +zone = ('tnz012', 0.0017964632102623814) + +[37843] +centroid = (0.6285052984012145, -1.4494674774611906) +station = ('k0vg', 0.011475662687745393) +zone = ('tnz040', 0.0015599150637067485) + +[37845] +centroid = (0.62994814464054572, -1.4737473111910446) +station = ('koqt', 0.0032023107714647158) +zone = ('tnz036', 0.0034263244318973509) + +[37846] +centroid = (0.6227202824224316, -1.4744857599975632) +station = ('koqt', 0.006858489505903332) +zone = ('tnz068', 0.0026011620389520024) + +[37847] +centroid = (0.63589627909122004, -1.4709451676236749) +station = ('koqt', 0.0073151094551711145) +zone = ('tnz013', 0.0018974602938551658) + +[37848] +centroid = (0.63243305716307274, -1.460493368117862) +station = ('k1a6', 0.00659067255075497) +zone = ('tnz037', 0.0023947527014137908) + +[37849] +centroid = (0.62926647139459435, -1.46688015616944) +station = ('koqt', 0.0027238012375978412) +zone = ('tnz069', 0.0018714990154846936) + +[37851] +centroid = (0.63851228329386422, -1.4644635209272512) +station = ('k1a6', 0.0024314723911376367) +zone = ('tnz014', 0.0038665947915352454) + +[37852] +centroid = (0.63405680677937304, -1.4763732986770099) +station = ('koqt', 0.0074107696086030822) +zone = ('tnz012', 0.0021239800655740559) + +[37853] +centroid = (0.62546873966200978, -1.4645182195460087) +station = ('ktys', 0.0010856090707316629) +zone = ('tnz071', 0.0020712592292714007) + +[37854] +centroid = (0.62628932366312751, -1.4786256286234163) +station = ('kcsv', 0.0052779645822383725) +zone = ('tnz067', 0.0028382577442030545) + +[37857] +centroid = (0.63572377074795283, -1.447600516213625) +station = ('k0vg', 0.005574810914953876) +zone = ('tnz016', 0.00029876810207856179) + +[37860] +centroid = (0.63270251854628812, -1.4518576011520417) +station = ('k0vg', 0.0070432871722993116) +zone = ('tnz039', 0.0012889355952402527) + +[37861] +centroid = (0.63252028871908739, -1.4575892624155911) +station = ('k1a6', 0.0071771895965946709) +zone = ('tnz038', 0.00062154268055263637) + +[37862] +centroid = (0.62444402195157889, -1.4593146600075277) +station = ('ktys', 0.0052917787437129563) +zone = ('tnz073', 0.0014381830801604076) + +[37863] +centroid = (0.62458281053369746, -1.4584354853034205) +station = ('ktys', 0.0059854199560606461) +zone = ('tnz073', 0.0010694536141213579) + +[37865] +centroid = (0.62570654077259402, -1.4614449216260494) +station = ('ktys', 0.0035678972587616731) +zone = ('tnz073', 0.0025106921468108423) + +[37866] +centroid = (0.63428876103696319, -1.4635739964206795) +station = ('k1a6', 0.0049765288491641999) +zone = ('tnz037', 0.00098289523340442547) + +[37869] +centroid = (0.63730264794918456, -1.4528988122239039) +station = ('k0vg', 0.0024581172139962358) +zone = ('tnz015', 0.00035855067337515681) + +[37870] +centroid = (0.63639757255897789, -1.4631758519117146) +station = ('k1a6', 0.0029113632474879873) +zone = ('tnz014', 0.0024665106994434098) + +[37871] +centroid = (0.62922756800556734, -1.4605093378805178) +station = ('ktys', 0.0059273884981745333) +zone = ('tnz069', 0.0037580545345621582) + +[37872] +centroid = (0.63302275155744392, -1.47741241535377) +station = ('koqt', 0.0073404268138211213) +zone = ('tnz035', 0.0023480329728518389) + +[37873] +centroid = (0.6375036749724291, -1.4458839325344108) +station = ('k0vg', 0.005704172793976359) +zone = ('tnz016', 0.0020589677543778576) + +[37874] +centroid = (0.62130806671147298, -1.4740437204579107) +station = ('koqt', 0.007955259175845858) +zone = ('tnz086', 0.0028625255574860594) + +[37876] +centroid = (0.62596266784032406, -1.4570200756399307) +station = ('ktys', 0.0071557391893948691) +zone = ('tnz073', 0.0011209868029544879) + +[37877] +centroid = (0.63095689258832088, -1.4557257569199442) +station = ('k0vg', 0.0091677083243857614) +zone = ('tnz070', 0.0018342318025740499) + +[37878] +centroid = (0.62169748457417795, -1.4642267146543406) +station = ('ktys', 0.0036478984278734161) +zone = ('tnz072', 0.0010824570053009101) + +[37879] +centroid = (0.63663277312897659, -1.4571808553706245) +station = ('k1a6', 0.0041798857602480177) +zone = ('tnz014', 0.0023926799468483293) + +[37880] +centroid = (0.62283287361247786, -1.477908752086452) +station = ('kcsv', 0.0073619067197916608) +zone = ('tnz067', 0.0035777483779968174) + +[37881] +centroid = (0.63541287524829504, -1.4546011714697142) +station = ('k0vg', 0.0046590280637812649) +zone = ('tnz015', 0.0026541698193661752) + +[37882] +centroid = (0.62135847182027071, -1.4628141673308241) +station = ('ktys', 0.004467839522088843) +zone = ('tnz072', 0.00038405056545341579) + +[37885] +centroid = (0.61918044054012178, -1.4683863229540337) +station = ('krhp', 0.0062261706951015289) +zone = ('tnz087', 0.0021546017707489529) + +[37886] +centroid = (0.62387820366137481, -1.4626682578053571) +station = ('ktys', 0.0028169093861725165) +zone = ('tnz071', 0.0022343837037772556) + +[37887] +centroid = (0.62997598264211507, -1.4762547210076296) +station = ('koqt', 0.0051217987306464352) +zone = ('tnz035', 0.0011629609620803917) + +[37888] +centroid = (0.63373205336545446, -1.4592395061299368) +station = ('k1a6', 0.0055463933316654435) +zone = ('tnz038', 0.0015092951108304793) + +[37890] +centroid = (0.62980698241064448, -1.4538393177979261) +station = ('k0vg', 0.0099892608687069152) +zone = ('tnz070', 0.0021644405230679476) + +[37891] +centroid = (0.63341611386425856, -1.4510336312121752) +station = ('k0vg', 0.0064131711383245381) +zone = ('tnz039', 0.0022311920580293464) + +[37892] +centroid = (0.63801725555812105, -1.4723186370252392) +station = ('kekq', 0.0087170810721216799) +zone = ('tnz012', 0.0030181130425629183) + +[37902] +centroid = (0.62768398136181103, -1.4646909547820786) +station = ('ktys', 0.0027142078584847479) +zone = ('tnz069', 0.00056600563156686907) + +[37909] +centroid = (0.62740338477796798, -1.4664502466680889) +station = ('ktys', 0.0023472178514552999) +zone = ('tnz069', 0.0014326927833105889) + +[37912] +centroid = (0.62845028562319161, -1.4658126080791651) +station = ('ktys', 0.0033315965683250789) +zone = ('tnz069', 0.00071958073632406188) + +[37914] +centroid = (0.62802470453838544, -1.4625125569827868) +station = ('ktys', 0.0039337345489948803) +zone = ('tnz069', 0.0020031699617568039) + +[37915] +centroid = (0.627809121469179, -1.4643387822456111) +station = ('ktys', 0.0029346140117065414) +zone = ('tnz069', 0.00064873528626424896) + +[37916] +centroid = (0.62749339140749327, -1.464928092667547) +station = ('ktys', 0.0024741957389959515) +zone = ('tnz069', 0.00070764591818012906) + +[37917] +centroid = (0.62833931758934991, -1.4645703874373508) +station = ('ktys', 0.0033676238637842175) +zone = ('tnz069', 0.00035862289533403842) + +[37918] +centroid = (0.62929804440076298, -1.4646270059182853) +station = ('ktys', 0.0042832847036211432) +zone = ('tnz069', 0.0011344455416234384) + +[37919] +centroid = (0.62683060262404844, -1.4660795212816726) +station = ('ktys', 0.0017283248251599161) +zone = ('tnz069', 0.0016336497095377448) + +[37920] +centroid = (0.62672597013539133, -1.4637928607088797) +station = ('ktys', 0.002278473596475926) +zone = ('tnz069', 0.0017589578135358893) + +[37921] +centroid = (0.62796539825040265, -1.4661142009739099) +station = ('ktys', 0.0028590498499630823) +zone = ('tnz069', 0.0009481909961355727) + +[37922] +centroid = (0.62588372659825642, -1.4678312384387293) +station = ('ktys', 0.0018262065544371253) +zone = ('tnz071', 0.0030854656803678661) + +[37923] +centroid = (0.62703388112202818, -1.4674645971227629) +station = ('ktys', 0.0023491676637914386) +zone = ('tnz069', 0.0023255241333548396) + +[37924] +centroid = (0.62880539031280247, -1.462643474129979) +station = ('ktys', 0.0044795342703554276) +zone = ('tnz069', 0.0019837150798482505) + +[37931] +centroid = (0.62790661556119542, -1.4682659999554011) +station = ('koqt', 0.0016777473270608567) +zone = ('tnz036', 0.0026842467366494905) + +[37932] +centroid = (0.62687563211874986, -1.4695455182833308) +station = ('koqt', 0.0018012736587994945) +zone = ('tnz036', 0.0035093702943102966) + +[37934] +centroid = (0.62581871308361969, -1.4691595736258372) +station = ('koqt', 0.0029034143913374806) +zone = ('tnz068', 0.0028577931719375302) + +[37938] +centroid = (0.63048156961983282, -1.4650052536737777) +station = ('koqt', 0.0045597311483504665) +zone = ('tnz069', 0.0022818218139434719) + +[38001] +centroid = (0.62511215144253485, -1.5561364162894777) +station = ('kdyr', 0.0046676394538905132) +zone = ('tnz051', 0.00029487423281818913) + +[38002] +centroid = (0.61586326776378142, -1.5655647896285061) +station = ('knqa', 0.002714355632827388) +zone = ('tnz088', 0.0033114600656000827) + +[38004] +centroid = (0.61805124742066653, -1.5666082347218111) +station = ('knqa', 0.0018395928489355071) +zone = ('tnz049', 0.0014813237878601034) + +[38006] +centroid = (0.62297246504605241, -1.5549053832081685) +station = ('kmkl', 0.0029468593826513529) +zone = ('tnz051', 0.0022076272319419069) + +[38007] +centroid = (0.63110082989173288, -1.5607948222360983) +station = ('kdyr', 0.0028081606591414117) +zone = ('tnz019', 0.0017623452877931264) + +[38008] +centroid = (0.61516675921918806, -1.5532938159900471) +station = ('kmkl', 0.0062758079831875648) +zone = ('tnz090', 0.00069288085482576138) + +[38011] +centroid = (0.61893173112171262, -1.5657643156685941) +station = ('knqa', 0.002912111211259949) +zone = ('tnz049', 0.00090599803972293033) + +[38012] +centroid = (0.62152241059691038, -1.5581118322967624) +station = ('kmkl', 0.0050631702877243605) +zone = ('tnz050', 0.00049970498189769251) + +[38015] +centroid = (0.62058558766760996, -1.5677143371352624) +station = ('knqa', 0.0035582688012820631) +zone = ('tnz049', 0.0013912953532264358) + +[38016] +centroid = (0.61403313296343276, -1.5666084441613213) +station = ('knqa', 0.003437003465152248) +zone = ('tnz088', 0.001933960415969653) + +[38017] +centroid = (0.61203410265136848, -1.5646691564695527) +station = ('kolv', 0.0025008205680546562) +zone = ('tnz088', 0.0040679951333574983) + +[38018] +centroid = (0.61328269374495259, -1.5666078158427903) +station = ('kolv', 0.0028123519274372553) +zone = ('tnz088', 0.0020892038110853148) + +[38019] +centroid = (0.62068049867233344, -1.5643190259683102) +station = ('knqa', 0.004966584922309965) +zone = ('tnz049', 0.0021805426023367705) + +[38021] +centroid = (0.62615166954502255, -1.556218464217614) +station = ('kdyr', 0.0039681912519440683) +zone = ('tnz051', 0.0011453144476423214) + +[38023] +centroid = (0.6190383358324244, -1.5697916803708636) +station = ('knqa', 0.0022019612692833991) +zone = ('tnz049', 0.0026478830460909897) + +[38024] +centroid = (0.6289388556407024, -1.559989492412643) +station = ('kdyr', 0.00067687536856270798) +zone = ('tnz019', 0.00061991845890371072) + +[38028] +centroid = (0.61406091860512446, -1.5643770058060613) +station = ('kolv', 0.0041937977984548925) +zone = ('tnz088', 0.0037573574504434957) + +[38029] +centroid = (0.61503205470751909, -1.567687808130632) +station = ('knqa', 0.0021705169858762126) +zone = ('tnz088', 0.0014239020446138516) + +[38030] +centroid = (0.62863506363110033, -1.5635292295751977) +station = ('kdyr', 0.0026117545604261243) +zone = ('tnz019', 0.0025006363787790317) + +[38034] +centroid = (0.62677241334678691, -1.5574788013770642) +station = ('kdyr', 0.0027741814917023552) +zone = ('tnz051', 0.0021956414780777292) + +[38036] +centroid = (0.61645413152875161, -1.5642657410662468) +station = ('knqa', 0.0035380536981090538) +zone = ('tnz049', 0.0036176095604968182) + +[38037] +centroid = (0.62478177806842483, -1.5603050653946959) +station = ('kdyr', 0.0035367871536128963) +zone = ('tnz048', 0.003353075819352882) + +[38039] +centroid = (0.61197436003107264, -1.5559709765296812) +station = ('kcrx', 0.0082612838962847646) +zone = ('tnz090', 0.0033632650196348934) + +[38040] +centroid = (0.62644038190988749, -1.5611075154248857) +station = ('kdyr', 0.001982279110032428) +zone = ('tnz019', 0.002940824797521154) + +[38041] +centroid = (0.62238046681706838, -1.5656362085014979) +station = ('khka', 0.0051117634471503645) +zone = ('tnz048', 0.0020454500319574908) + +[38042] +centroid = (0.61339875814021028, -1.5557411690270713) +station = ('kmkl', 0.0085374114864815148) +zone = ('tnz090', 0.0023236041647688344) + +[38044] +centroid = (0.61434418554272308, -1.5500190023546525) +station = ('kcrx', 0.0057209956529176284) +zone = ('tnz090', 0.0026210410549922752) + +[38046] +centroid = (0.61208529315832949, -1.5576702465427152) +station = ('kolv', 0.0078659793859817244) +zone = ('tnz089', 0.0032517996749110078) + +[38047] +centroid = (0.62989859474308163, -1.5621290217294928) +station = ('kdyr', 0.002150762593503767) +zone = ('tnz019', 0.0013785598550992524) + +[38049] +centroid = (0.61767783422720235, -1.5627365708421121) +station = ('knqa', 0.0047621560036737063) +zone = ('tnz089', 0.0038058922529575082) + +[38050] +centroid = (0.62534499581804337, -1.5574108731625764) +station = ('kdyr', 0.0037959972234398467) +zone = ('tnz051', 0.0013537835620352329) + +[38052] +centroid = (0.61244046766111038, -1.5519083910831064) +station = ('kcrx', 0.0054287336342185551) +zone = ('tnz090', 0.0023020517696767618) + +[38053] +centroid = (0.61690784732110004, -1.56995040061304) +station = ('knqa', 0.0011709654214898915) +zone = ('tnz088', 0.0029463003269606857) + +[38054] +centroid = (0.61673575785685342, -1.5685867050552866) +station = ('knqa', 0.0003572602183176119) +zone = ('tnz088', 0.0026830716987357923) + +[38057] +centroid = (0.61178980891596679, -1.5597727748794228) +station = ('kolv', 0.0061208942075013) +zone = ('tnz089', 0.0025997791611320278) + +[38058] +centroid = (0.61891726234221367, -1.5676418536114269) +station = ('knqa', 0.0019658672422046132) +zone = ('tnz049', 0.0010499684646404779) + +[38059] +centroid = (0.63016308193792892, -1.5576846629623369) +station = ('kdyr', 0.0028207865307277838) +zone = ('tnz019', 0.002466448318551747) + +[38060] +centroid = (0.61451903262718788, -1.5621651151384239) +station = ('kolv', 0.0056864478778774529) +zone = ('tnz089', 0.0013162204838142375) + +[38061] +centroid = (0.61203534183513741, -1.549275090667575) +station = ('kcrx', 0.0035046390250803435) +zone = ('tnz091', 0.0034555538003433251) + +[38063] +centroid = (0.62420054852092566, -1.5645219204938545) +station = ('khka', 0.0040212579640891578) +zone = ('tnz048', 0.00014020165956406104) + +[38066] +centroid = (0.61207930667899513, -1.5623087208292781) +station = ('kolv', 0.004213894235923157) +zone = ('tnz089', 0.0026388873683570895) + +[38067] +centroid = (0.6122895839472754, -1.5540723724627767) +station = ('kcrx', 0.0069173181593028916) +zone = ('tnz090', 0.002294484958107852) + +[38068] +centroid = (0.61543124641403524, -1.5593303513673347) +station = ('kolv', 0.0080315811626991938) +zone = ('tnz089', 0.0015174262622353479) + +[38069] +centroid = (0.61921594053710738, -1.559086651043879) +station = ('kmkl', 0.0062294750537615429) +zone = ('tnz050', 0.0019395604065828172) + +[38070] +centroid = (0.62733346688813296, -1.5574796391351051) +station = ('kdyr', 0.0025041315204687204) +zone = ('tnz051', 0.0026559961550658082) + +[38075] +centroid = (0.61753215159453834, -1.5557078681449432) +station = ('kmkl', 0.0049141195982970037) +zone = ('tnz090', 0.0036677921681094053) + +[38076] +centroid = (0.61328611459028659, -1.5610587509255847) +station = ('kolv', 0.0056617501555291851) +zone = ('tnz089', 0.0010929983028080549) + +[38077] +centroid = (0.63404451966143904, -1.5616227715266593) +station = ('kdyr', 0.0058211493266254449) +zone = ('tnz001', 0.00029602434586345586) + +[38079] +centroid = (0.63578414168677932, -1.5614152169720121) +station = ('kdyr', 0.0075173110405102137) +zone = ('tnz001', 0.0016729630558694364) + +[38080] +centroid = (0.63193286325274356, -1.562404923377648) +station = ('kdyr', 0.0039861222362193843) +zone = ('tnz001', 0.0022650839027659919) + +[38103] +centroid = (0.61353716274989345, -1.5717561706170309) +station = ('kmem', 0.00232723160953159) +zone = ('tnz088', 0.0023360643799577498) + +[38104] +centroid = (0.61317865466824129, -1.5708613926694108) +station = ('kmem', 0.0017559681011301757) +zone = ('tnz088', 0.0017825696546735492) + +[38105] +centroid = (0.61350478689226895, -1.5714029683363047) +station = ('kmem', 0.0021848901459592027) +zone = ('tnz088', 0.0020647182500229799) + +[38106] +centroid = (0.61268235284214412, -1.5723690953437464) +station = ('kmem', 0.0019628312294671432) +zone = ('tnz088', 0.0031041634112610986) + +[38107] +centroid = (0.61383517771967144, -1.5712054668781492) +station = ('kmem', 0.0024558757805464306) +zone = ('tnz088', 0.0018390189207370951) + +[38108] +centroid = (0.61394864157434359, -1.5702363728109792) +station = ('kmem', 0.0025112927612005818) +zone = ('tnz088', 0.0010389062236883528) + +[38109] +centroid = (0.61156361424490835, -1.5736483169657032) +station = ('kawm', 0.0019105237004217361) +zone = ('arz036', 0.0035915931825501123) + +[38111] +centroid = (0.61279419354061193, -1.5698102332208124) +station = ('kmem', 0.0014624044390552161) +zone = ('tnz088', 0.0014486507043864688) + +[38112] +centroid = (0.6134424262780952, -1.5703842894650859) +station = ('kmem', 0.0019978724652235541) +zone = ('tnz088', 0.0013131671417656858) + +[38114] +centroid = (0.61254911440704696, -1.5705493277991545) +station = ('kmem', 0.0011026851051420023) +zone = ('tnz088', 0.0019941062285496703) + +[38115] +centroid = (0.61179600483481134, -1.5684018397809156) +station = ('kolv', 0.0016922904132556777) +zone = ('tnz088', 0.0023230680040399968) + +[38116] +centroid = (0.61144435589711954, -1.570995224516454) +station = ('kmem', 0.00040105482521939388) +zone = ('msz001', 0.0027680284419773328) + +[38117] +centroid = (0.61287552588375493, -1.5691442679381289) +station = ('kmem', 0.001811525350128829) +zone = ('tnz088', 0.0012039394314822412) + +[38118] +centroid = (0.6114347565862337, -1.5696187880551609) +station = ('kmem', 0.00072611219039853559) +zone = ('tnz088', 0.0026888642077795297) + +[38119] +centroid = (0.61225296693956854, -1.5680977859719254) +station = ('kolv', 0.0019446815002642228) +zone = ('tnz088', 0.0019546037547002) + +[38120] +centroid = (0.61302304111213346, -1.5682244968756203) +station = ('kmem', 0.0024429936333460649) +zone = ('tnz088', 0.0012144145497713157) + +[38122] +centroid = (0.61363914233808747, -1.5694212516904205) +station = ('kmem', 0.0023648076120402024) +zone = ('tnz088', 0.00056603402521407256) + +[38125] +centroid = (0.61131750536708473, -1.5671073465280037) +station = ('kolv', 0.00082108220000891904) +zone = ('tnz088', 0.003149056106439032) + +[38126] +centroid = (0.61308149218878272, -1.5715585295325352) +station = ('kmem', 0.0018477576562450954) +zone = ('tnz088', 0.0023333245627242022) + +[38127] +centroid = (0.61502545736294656, -1.5711376433834165) +station = ('knqa', 0.0029639567734490754) +zone = ('tnz088', 0.0020086396722744371) + +[38128] +centroid = (0.61478479391238905, -1.5695168084669671) +station = ('knqa', 0.002441501684297603) +zone = ('tnz088', 0.00083993547978188662) + +[38131] +centroid = (0.61202342123634623, -1.5706583410642339) +station = ('kmem', 0.00058984161410844348) +zone = ('tnz088', 0.0024681222177691114) + +[38132] +centroid = (0.61214231306499212, -1.5707060932725683) +station = ('kmem', 0.00071443765761379247) +zone = ('tnz088', 0.0023932695971585162) + +[38133] +centroid = (0.61458106162880388, -1.5672059925373267) +station = ('knqa', 0.0027327728287314494) +zone = ('tnz088', 0.0015321632494094202) + +[38134] +centroid = (0.61391902333693726, -1.5683506667272471) +station = ('kmem', 0.0030361841701636665) +zone = ('tnz088', 0.00053194297887649699) + +[38135] +centroid = (0.6150352661133428, -1.5681531827223838) +station = ('knqa', 0.0020781375768840651) +zone = ('tnz088', 0.0011743056522406454) + +[38138] +centroid = (0.61234573118931201, -1.5672939222250422) +station = ('kolv', 0.0018574006553061947) +zone = ('tnz088', 0.0022059530784839438) + +[38139] +centroid = (0.61225551512027643, -1.566521963096885) +station = ('kolv', 0.0018166775979253449) +zone = ('tnz088', 0.0027054707872406309) + +[38141] +centroid = (0.61115721432858139, -1.5683287104852568) +station = ('kolv', 0.0012190985079642441) +zone = ('tnz088', 0.002961658775661037) + +[38152] +centroid = (0.6130233029115213, -1.5695988563951031) +station = ('kmem', 0.0017421605169360484) +zone = ('tnz088', 0.0011659170329680747) + +[38201] +centroid = (0.6304787596397371, -1.5451440708610296) +station = ('kcey', 0.0096597089183948857) +zone = ('tnz021', 0.0028619839373447624) + +[38220] +centroid = (0.62820639331351802, -1.5475993127862726) +station = ('kmkl', 0.007699940670151631) +zone = ('tnz020', 0.0036956857984375598) + +[38221] +centroid = (0.63259029387538479, -1.5365007815261331) +station = ('kcey', 0.0085638861711227893) +zone = ('tnz022', 0.0030893484875022074) + +[38222] +centroid = (0.63609460085412406, -1.5386456690037866) +station = ('kcey', 0.0046946122508076393) +zone = ('tnz004', 0.0028295953994226307) + +[38224] +centroid = (0.63507325162914952, -1.5444801999734485) +station = ('kcey', 0.0051125212218290118) +zone = ('tnz004', 0.0028515456559041349) + +[38225] +centroid = (0.63399263102277725, -1.5476584096347452) +station = ('kcey', 0.0073220571359685072) +zone = ('tnz003', 0.00077018589392073523) + +[38226] +centroid = (0.63676388226238634, -1.5478738181710263) +station = ('kcey', 0.0055145642151572839) +zone = ('tnz003', 0.0032684916931941888) + +[38229] +centroid = (0.63221288387793351, -1.5464738721247091) +station = ('kcey', 0.008373110772499694) +zone = ('tnz003', 0.002044003294230063) + +[38230] +centroid = (0.63102780531582947, -1.5494311405559957) +station = ('kdyr', 0.0092115226646361844) +zone = ('tnz003', 0.0026274608354538106) + +[38231] +centroid = (0.63203709431567268, -1.5433272529228734) +station = ('kcey', 0.0078556940923152577) +zone = ('tnz004', 0.0027154063949116273) + +[38232] +centroid = (0.63448041564212465, -1.5591473710485557) +station = ('kdyr', 0.0062346960126568925) +zone = ('tnz001', 0.0022838095350532438) + +[38233] +centroid = (0.63186929836138594, -1.5541996418718322) +station = ('kdyr', 0.0060906853365151666) +zone = ('tnz002', 0.0030436593737845799) + +[38235] +centroid = (0.62813308948493429, -1.5457314614207884) +station = ('kmkl', 0.0084335814832979025) +zone = ('tnz021', 0.0016306032520312398) + +[38236] +centroid = (0.63131910076798725, -1.540645345087674) +station = ('kcey', 0.0086068416880299634) +zone = ('tnz004', 0.0028180420650067658) + +[38237] +centroid = (0.63456544808328186, -1.5505132272389397) +station = ('kcey', 0.0085284810227001118) +zone = ('tnz003', 0.0019831658327311443) + +[38240] +centroid = (0.63259617563496406, -1.558895258238105) +station = ('kdyr', 0.004430664815100448) +zone = ('tnz001', 0.0029258576677435354) + +[38241] +centroid = (0.63578456056579979, -1.5462193682131833) +station = ('kcey', 0.0051958035402014146) +zone = ('tnz003', 0.0028705710750351479) + +[38242] +centroid = (0.633669029526165, -1.5416633432804849) +station = ('kcey', 0.0061822659142080167) +zone = ('tnz004', 0.00060385668946148817) + +[38251] +centroid = (0.63632837025413624, -1.5420988378354425) +station = ('kcey', 0.0035098380869430647) +zone = ('tnz004', 0.0023486720329876807) + +[38253] +centroid = (0.63344672693933846, -1.5540474317077657) +station = ('kdyr', 0.0072103752981054481) +zone = ('tnz002', 0.0018940782538288254) + +[38254] +centroid = (0.63486183989685552, -1.5594063779095517) +station = ('kdyr', 0.0065851198273693193) +zone = ('tnz001', 0.0021673179335957356) + +[38255] +centroid = (0.63247861025654972, -1.550885802674363) +station = ('kdyr', 0.008685460077184369) +zone = ('tnz003', 0.0022481879743954155) + +[38256] +centroid = (0.63370543709436156, -1.5381837327106611) +station = ('kcey', 0.0069204015545314083) +zone = ('tnz004', 0.0024223546319616595) + +[38257] +centroid = (0.63628552242099967, -1.5511973264925514) +station = ('kcey', 0.0080724079783072375) +zone = ('tnz003', 0.0035538292363143605) + +[38258] +centroid = (0.62889085908627262, -1.5466983389198081) +station = ('kmkl', 0.0086470212848156845) +zone = ('tnz021', 0.0026048357199956714) + +[38259] +centroid = (0.63179438882989036, -1.556548471072581) +station = ('kdyr', 0.0046248770849207583) +zone = ('tnz002', 0.0028189048161242508) + +[38260] +centroid = (0.63461527723342614, -1.5568400283241266) +station = ('kdyr', 0.0068962759108429136) +zone = ('tnz002', 0.00072613115093290222) + +[38261] +centroid = (0.63580354974806153, -1.5553240876957219) +station = ('kdyr', 0.0085029781416053867) +zone = ('tnz002', 0.0013292008322781078) + +[38301] +centroid = (0.62113063653971523, -1.5507842943250671) +station = ('kmkl', 0.00092142770530306091) +zone = ('tnz052', 0.00040861865474967936) + +[38305] +centroid = (0.62311141070780363, -1.5492948827012925) +station = ('kmkl', 0.0027549558519132677) +zone = ('tnz052', 0.0019126877283303502) + +[38310] +centroid = (0.61543337571572276, -1.5430216457708492) +station = ('kcrx', 0.0065607336580193673) +zone = ('tnz091', 0.002683629310412316) + +[38311] +centroid = (0.61849403745189746, -1.5377084446487581) +station = ('kcrx', 0.011466295682112397) +zone = ('tnz055', 0.0028962720970380938) + +[38313] +centroid = (0.62141605023229396, -1.5467291265278131) +station = ('kmkl', 0.0041957870427355541) +zone = ('tnz053', 0.0032033759530347298) + +[38315] +centroid = (0.61548791725484753, -1.5468437772063768) +station = ('kcrx', 0.0060318525505474998) +zone = ('tnz091', 0.0018199786040399716) + +[38316] +centroid = (0.62953785263998696, -1.5501471793349191) +station = ('kdyr', 0.0083196791197540088) +zone = ('tnz020', 0.0020741433304732057) + +[38317] +centroid = (0.62932972212668659, -1.5404941472145739) +station = ('kcey', 0.010594593426953583) +zone = ('tnz021', 0.0030192707435134571) + +[38318] +centroid = (0.6274547498178541, -1.540394157301727) +station = ('kmkl', 0.011153048599164314) +zone = ('tnz021', 0.0027424840345779706) + +[38320] +centroid = (0.6292200979963688, -1.5378549824927557) +station = ('kcey', 0.011172554952192075) +zone = ('tnz022', 0.00070067788719141585) + +[38321] +centroid = (0.62562206683679744, -1.5451795359514302) +station = ('kmkl', 0.0069301518878109349) +zone = ('tnz021', 0.0025110230163210858) + +[38326] +centroid = (0.61181913044740033, -1.5408840188628843) +station = ('kcrx', 0.0050658864925177058) +zone = ('tnz092', 0.0029027744468056358) + +[38327] +centroid = (0.61478193157241579, -1.541275374041059) +station = ('kcrx', 0.0067495460319070841) +zone = ('tnz092', 0.001825291234433148) + +[38328] +centroid = (0.6227428146230749, -1.5396541726054667) +station = ('kmkl', 0.010041648469039056) +zone = ('tnz055', 0.0020321641421771472) + +[38329] +centroid = (0.6202353698999048, -1.537762148429842) +station = ('kcrx', 0.012855327279936051) +zone = ('tnz055', 0.0011544051224986413) + +[38330] +centroid = (0.62954904020049218, -1.5539436718837345) +station = ('kdyr', 0.0053044637755119729) +zone = ('tnz020', 0.0019309818767569041) + +[38332] +centroid = (0.61817975601349096, -1.543332803069895) +station = ('kmkl', 0.0076468702376743108) +zone = ('tnz053', 0.0026506240415105956) + +[38333] +centroid = (0.63055487344841654, -1.5350948140938967) +station = ('kcey', 0.010891855475638609) +zone = ('tnz022', 0.0019010841675915742) + +[38334] +centroid = (0.61716702871502116, -1.5458651536414911) +station = ('kmkl', 0.0064380897949657557) +zone = ('tnz053', 0.0012009793848623963) + +[38337] +centroid = (0.6245708724816138, -1.5535878167025456) +station = ('kmkl', 0.0035158287414994282) +zone = ('tnz051', 0.0018432512675204745) + +[38339] +centroid = (0.61177753925132528, -1.5448785539219239) +station = ('kcrx', 0.0026088385291941174) +zone = ('tnz091', 0.0022453121003577639) + +[38340] +centroid = (0.61786962845870408, -1.5478147038692613) +station = ('kmkl', 0.0047983204145172582) +zone = ('tnz053', 0.0010599149035763319) + +[38341] +centroid = (0.62618184628778961, -1.5373539857309706) +station = ('kmkl', 0.012753493980301503) +zone = ('tnz022', 0.0033621477764763084) + +[38342] +centroid = (0.62957062992333934, -1.5409314918185386) +station = ('kcey', 0.010315624410475564) +zone = ('tnz021', 0.0028548310898348179) + +[38343] +centroid = (0.62530843117021406, -1.5520524680128587) +station = ('kmkl', 0.0039734458886448608) +zone = ('tnz020', 0.0029522079674127685) + +[38344] +centroid = (0.62793742062249314, -1.5432923463378336) +station = ('kmkl', 0.0096013427909426644) +zone = ('tnz021', 0.0003785712036210494) + +[38345] +centroid = (0.62130544871759497, -1.5447120495112836) +station = ('kmkl', 0.0058354017242851428) +zone = ('tnz054', 0.0019331663057726414) + +[38347] +centroid = (0.61920382795209861, -1.5445919534054537) +station = ('kmkl', 0.006309067531205274) +zone = ('tnz053', 0.0019011838606368796) + +[38348] +centroid = (0.62609749452504071, -1.54725118941367) +station = ('kmkl', 0.0060687481311732855) +zone = ('tnz021', 0.0033345986128169225) + +[38351] +centroid = (0.62257435544367257, -1.5428623146634348) +station = ('kmkl', 0.0074395969030638595) +zone = ('tnz054', 0.00033219934598666275) + +[38352] +centroid = (0.62010597118916189, -1.5452071121536115) +station = ('kmkl', 0.0055728215755959992) +zone = ('tnz053', 0.0021990431922814862) + +[38355] +centroid = (0.62454877661328356, -1.5494171081088097) +station = ('kmkl', 0.0037872409149254127) +zone = ('tnz052', 0.0031974859989645135) + +[38356] +centroid = (0.61851707579802384, -1.5514896691422606) +station = ('kmkl', 0.0028387678586399897) +zone = ('tnz052', 0.0030656415576933737) + +[38357] +centroid = (0.61164759948851433, -1.5431387573636584) +station = ('kcrx', 0.0034233740562777072) +zone = ('tnz091', 0.0031011623537275977) + +[38358] +centroid = (0.62686423511873435, -1.5491309264713602) +station = ('kmkl', 0.0059628644934096075) +zone = ('tnz020', 0.0028256598896860751) + +[38359] +centroid = (0.61732039079639389, -1.5420221655214021) +station = ('kcrx', 0.0086160333292057464) +zone = ('tnz092', 0.0038176917880813907) + +[38361] +centroid = (0.61630832672304003, -1.541076650852427) +station = ('kcrx', 0.0080911059471736966) +zone = ('tnz092', 0.0025456787650534299) + +[38362] +centroid = (0.62358994508211552, -1.5495552858256902) +station = ('kmkl', 0.0029442160114028447) +zone = ('tnz052', 0.0022517189617147801) + +[38363] +centroid = (0.62286401028633354, -1.5378480186290402) +station = ('kmkl', 0.011511822045193791) +zone = ('tnz055', 0.001475225545917921) + +[38365] +centroid = (0.61181207931722237, -1.539941122187787) +station = ('kcrx', 0.0057585177982159112) +zone = ('tnz092', 0.0026111878220659614) + +[38366] +centroid = (0.61922536531506822, -1.5488273962611461) +station = ('kmkl', 0.0032656833067541639) +zone = ('tnz053', 0.0020875090081864446) + +[38367] +centroid = (0.61177504343049505, -1.5468328165386742) +station = ('kcrx', 0.0023381452912544297) +zone = ('tnz091', 0.0023206919803166201) + +[38368] +centroid = (0.61978235223925715, -1.5419657564799778) +station = ('kmkl', 0.0082211156816545047) +zone = ('tnz054', 0.0025657666826725293) + +[38369] +centroid = (0.63062100397377463, -1.552342367201615) +station = ('kdyr', 0.0068506617290741267) +zone = ('tnz020', 0.0023660803136896589) + +[38370] +centroid = (0.61755740650881474, -1.5401680848037163) +station = ('kcrx', 0.0095429283639854607) +zone = ('tnz092', 0.0033378894860013769) + +[38371] +centroid = (0.61827054804117965, -1.5410399465782574) +station = ('kcrx', 0.0098179002307750996) +zone = ('tnz055', 0.0040904918854821424) + +[38372] +centroid = (0.61375517182676009, -1.5384904743266994) +station = ('kcrx', 0.0077395850424416077) +zone = ('tnz092', 0.00076838462707526801) + +[38374] +centroid = (0.61968979742902386, -1.5399197768110349) +station = ('kcrx', 0.011496326686428856) +zone = ('tnz055', 0.0024280248367565447) + +[38375] +centroid = (0.61362102582045186, -1.5462162615271149) +station = ('kcrx', 0.0041537586530492401) +zone = ('tnz091', 0.00049418324803853788) + +[38376] +centroid = (0.6125967618956264, -1.5423248579735758) +station = ('kcrx', 0.004551416758607066) +zone = ('tnz091', 0.0030785246570803919) + +[38379] +centroid = (0.61373183677466081, -1.543460159745413) +station = ('kcrx', 0.0048801034905730711) +zone = ('tnz091', 0.0018627741054216809) + +[38380] +centroid = (0.62465140197330082, -1.5364636234663582) +station = ('kmkl', 0.01295809038398202) +zone = ('tnz055', 0.0034347471211643218) + +[38381] +centroid = (0.61709955428613905, -1.5528431370705971) +station = ('kmkl', 0.0043083610749734868) +zone = ('tnz090', 0.0026414562271980017) + +[38382] +centroid = (0.62776810623175716, -1.5530706407385946) +station = ('kdyr', 0.0058952955611275394) +zone = ('tnz020', 0.00088103645775347659) + +[38387] +centroid = (0.62610056630452426, -1.5407323672041786) +station = ('kmkl', 0.010231984624671448) +zone = ('tnz021', 0.0030029619689640342) + +[38388] +centroid = (0.62450708069745331, -1.5414728231393371) +station = ('kmkl', 0.0090338242019051534) +zone = ('tnz054', 0.0024227142763967699) + +[38390] +centroid = (0.62553563813223878, -1.5423874280272598) +station = ('kmkl', 0.0087822975998778727) +zone = ('tnz021', 0.0025622001755303326) + +[38391] +centroid = (0.62040470174393325, -1.5532064971675696) +station = ('kmkl', 0.0014207910214520901) +zone = ('tnz052', 0.0024322572456193939) + +[38392] +centroid = (0.61894005634224469, -1.5539628006923365) +station = ('kmkl', 0.0029318347956779119) +zone = ('tnz052', 0.0037791835035791413) + +[38401] +centroid = (0.62184622153303304, -1.5188121488098509) +station = ('kmqy', 0.009710860689357911) +zone = ('tnz060', 0.00081515208680175489) + +[38425] +centroid = (0.61805964245436862, -1.5348951309741758) +station = ('kmsl', 0.012553171529088612) +zone = ('tnz093', 0.003729080802124501) + +[38449] +centroid = (0.61157103189422934, -1.5152629519627505) +station = ('kmdq', 0.0048683710752682819) +zone = ('tnz096', 0.0037108756462943208) + +[38450] +centroid = (0.61407006413040488, -1.532272354894034) +station = ('kmsl', 0.0080545710012216686) +zone = ('tnz093', 0.00098628209037783087) + +[38451] +centroid = (0.61890307281539492, -1.5183009942318193) +station = ('kmqy', 0.011677181467843993) +zone = ('tnz060', 0.0029843970707107261) + +[38452] +centroid = (0.61226768006516286, -1.5323346456950377) +station = ('kmsl', 0.0064138359921491767) +zone = ('tnz093', 0.0027888689665337136) + +[38453] +centroid = (0.61298336977823575, -1.5151571151969094) +station = ('kmdq', 0.005819758722464919) +zone = ('tnz095', 0.003476663868438268) + +[38454] +centroid = (0.62348737208197569, -1.5245817884379238) +station = ('kbna', 0.011683801929969156) +zone = ('tnz057', 0.0022137834456727903) + +[38455] +centroid = (0.61162520691421118, -1.5164416600730848) +station = ('kmdq', 0.0056734609941178184) +zone = ('tnz095', 0.0034925291826993334) + +[38456] +centroid = (0.61672041641272835, -1.5230856398432366) +station = ('kmsl', 0.011275813302406595) +zone = ('tnz094', 0.0027648207561402393) + +[38457] +centroid = (0.61137705600116266, -1.5234009684791945) +station = ('kmsl', 0.0066464171665455438) +zone = ('tnz094', 0.0036443563917970766) + +[38459] +centroid = (0.61425608132208243, -1.5150409111753116) +station = ('kmdq', 0.0068075529313100982) +zone = ('tnz095', 0.0032739484514830741) + +[38460] +centroid = (0.61241271692600363, -1.5211100493030267) +station = ('k9a4', 0.0081100258023882009) +zone = ('tnz095', 0.0026040713288532874) + +[38461] +centroid = (0.62121505811563427, -1.5244049691314043) +station = ('kbna', 0.013051423782985449) +zone = ('tnz058', 0.0024329605543716858) + +[38462] +centroid = (0.62008462581241008, -1.5282612741136858) +station = ('kmsl', 0.013593016064700113) +zone = ('tnz058', 0.00099187665187427596) + +[38463] +centroid = (0.61209735338346072, -1.5296958300390699) +station = ('kmsl', 0.0056325722265130615) +zone = ('alz001', 0.0029542494494745057) + +[38464] +centroid = (0.61594055094305966, -1.5260063261734016) +station = ('kmsl', 0.0097332568740496096) +zone = ('tnz094', 0.0013930387748529662) + +[38468] +centroid = (0.61322398086891561, -1.5235164569157988) +station = ('kmsl', 0.0080449880627801815) +zone = ('tnz094', 0.0020688185353163985) + +[38469] +centroid = (0.61216838828401698, -1.5259174365545976) +station = ('kmsl', 0.0061745118160290427) +zone = ('tnz094', 0.0025336832896361689) + +[38471] +centroid = (0.61232958689373107, -1.5347098468207843) +station = ('kmsl', 0.0075227154652762708) +zone = ('tnz093', 0.003415780454691235) + +[38472] +centroid = (0.61745577598647106, -1.5191088024228125) +station = ('kmdq', 0.011330759731588837) +zone = ('tnz095', 0.0030619414300654328) + +[38473] +centroid = (0.61123605085089405, -1.5214327257751354) +station = ('k9a4', 0.006913616600022144) +zone = ('tnz095', 0.0037139442963073483) + +[38474] +centroid = (0.61990548521798539, -1.5223848028820983) +station = ('kbna', 0.012969937838363069) +zone = ('tnz060', 0.0027341718361189376) + +[38475] +centroid = (0.61528924642609295, -1.5361706001382409) +station = ('kcrx', 0.010169434326904484) +zone = ('tnz092', 0.0025843773966360028) + +[38476] +centroid = (0.6255467384262815, -1.5221672650441296) +station = ('kbna', 0.0089017454651675442) +zone = ('tnz060', 0.0043663121589063549) + +[38477] +centroid = (0.61199835830828764, -1.5183156899041212) +station = ('kmdq', 0.0071752793193248206) +zone = ('tnz095', 0.0024688256829597578) + +[38478] +centroid = (0.61493009257261766, -1.5185391618615467) +station = ('kmdq', 0.0091181695363744906) +zone = ('tnz095', 0.00067606621385577577) + +[38481] +centroid = (0.61141098520182147, -1.5270286702360498) +station = ('kmsl', 0.0051455116137043913) +zone = ('alz001', 0.0032411767812060882) + +[38482] +centroid = (0.6242839752591709, -1.5210531515694117) +station = ('kbna', 0.0089622800655472391) +zone = ('tnz060', 0.0028445299793365781) + +[38483] +centroid = (0.6185580735821532, -1.5242597926442234) +station = ('kmsl', 0.012641877595630563) +zone = ('tnz058', 0.0027232078281904759) + +[38485] +centroid = (0.61718292866450686, -1.5319282108721257) +station = ('kmsl', 0.010963327180940573) +zone = ('tnz093', 0.0021395653469249098) + +[38486] +centroid = (0.61384219394326445, -1.5279504484271982) +station = ('kmsl', 0.0073821462461628939) +zone = ('tnz094', 0.0022831436496690196) + +[38487] +centroid = (0.62340415478324063, -1.5225100826158064) +station = ('kbna', 0.01042889998581477) +zone = ('tnz060', 0.0028375641133840377) + +[38488] +centroid = (0.61159757835215223, -1.5126928499194339) +station = ('kmdq', 0.003546490580907388) +zone = ('tnz096', 0.0020808022026181949) + +[38501] +centroid = (0.63226376022562925, -1.4928374432966782) +station = ('ksrb', 0.0029698139625510961) +zone = ('tnz032', 0.0015820618477785182) + +[38504] +centroid = (0.63522244237360992, -1.4787257232560183) +station = ('kekq', 0.0082317974822390724) +zone = ('tnz034', 0.0029294475859734459) + +[38505] +centroid = (0.63137397391966998, -1.4923450859146905) +station = ('ksrb', 0.0021109521606412804) +zone = ('tnz032', 0.00061431737419400821) + +[38506] +centroid = (0.63158416392148764, -1.4910925852835819) +station = ('ksrb', 0.0026700550205978639) +zone = ('tnz032', 0.0011879389200812613) + +[38541] +centroid = (0.63770871625295356, -1.4893872589780432) +station = ('kekq', 0.008699794131970905) +zone = ('tnz033', 0.0034341919657196679) + +[38542] +centroid = (0.6338535282813933, -1.4870591817421004) +station = ('ksrb', 0.0064960580821438489) +zone = ('tnz033', 0.0013018590627181252) + +[38543] +centroid = (0.63436911599572499, -1.4861562182002888) +station = ('kcsv', 0.0069876236542215668) +zone = ('tnz033', 0.0019348730056680922) + +[38544] +centroid = (0.63047554823391339, -1.4951038929567331) +station = ('ksrb', 0.0022101924438414494) +zone = ('tnz032', 0.0023877573607957747) + +[38545] +centroid = (0.63236933519208227, -1.4950983602630039) +station = ('ksrb', 0.0035950595953674314) +zone = ('tnz031', 0.0022232127236173839) + +[38547] +centroid = (0.63103359980894613, -1.5011018565575516) +station = ('kmqy', 0.0076781143887211739) +zone = ('tnz030', 0.0018009601060715566) + +[38548] +centroid = (0.63118352359169239, -1.497326918824998) +station = ('ksrb', 0.0041219426280101517) +zone = ('tnz030', 0.002783627859384994) + +[38549] +centroid = (0.63812956749548688, -1.4861319232171009) +station = ('kekq', 0.0065560435335492821) +zone = ('tnz011', 0.001043356742924902) + +[38551] +centroid = (0.63805813116920285, -1.4920323054594407) +station = ('ksrb', 0.0087853360696545594) +zone = ('tnz010', 0.00080335853018150113) + +[38552] +centroid = (0.6321190898839314, -1.497730700747447) +station = ('ksrb', 0.0048873873187882718) +zone = ('tnz030', 0.0020933994795572868) + +[38553] +centroid = (0.63184180942566714, -1.4836401166440285) +station = ('kcsv', 0.0045282036711410123) +zone = ('tnz034', 0.0032865355296925656) + +[38554] +centroid = (0.63267295266875934, -1.4863512761974915) +station = ('kcsv', 0.0053425042927010722) +zone = ('tnz033', 0.002437696909124115) + +[38555] +centroid = (0.62636168501391509, -1.4833381572301412) +station = ('kcsv', 0.0017183368933813476) +zone = ('tnz066', 0.0010990246703124773) + +[38556] +centroid = (0.63541784943666335, -1.4821152573831462) +station = ('kekq', 0.0078774146485998484) +zone = ('tnz034', 0.00049577034213320434) + +[38558] +centroid = (0.62849100415464065, -1.4812010190143665) +station = ('kcsv', 0.0032349991515903545) +zone = ('tnz066', 0.0021305810790207954) + +[38559] +centroid = (0.62497512564296065, -1.4923963811414067) +station = ('ksrb', 0.0043309268415254332) +zone = ('tnz080', 0.0021140686710164128) + +[38560] +centroid = (0.63228006160084282, -1.4986714332142719) +station = ('ksrb', 0.0056086214413951447) +zone = ('tnz030', 0.0013204408213720023) + +[38562] +centroid = (0.63449703117660361, -1.4950083536334786) +station = ('ksrb', 0.0055015603718786788) +zone = ('tnz031', 0.0002364027943925039) + +[38563] +centroid = (0.63193405007663506, -1.501513981153825) +station = ('kmqy', 0.0077221762068066741) +zone = ('tnz030', 0.0012842881064132031) + +[38564] +centroid = (0.63313447008286416, -1.4963740039599942) +station = ('ksrb', 0.0048071632807467433) +zone = ('tnz031', 0.001699964680903561) + +[38565] +centroid = (0.63290454040720645, -1.4836951294220513) +station = ('kcsv', 0.0055571537722313999) +zone = ('tnz034', 0.0023232365249051929) + +[38567] +centroid = (0.63062576872263254, -1.4996882794897763) +station = ('ksrb', 0.0057291737038414814) +zone = ('tnz030', 0.0021101604889545121) + +[38568] +centroid = (0.63597165986161353, -1.491786266394787) +station = ('ksrb', 0.006726601965414478) +zone = ('tnz010', 0.0022018058038973452) + +[38569] +centroid = (0.62993020265583533, -1.4985942547547486) +station = ('ksrb', 0.0047323766660916445) +zone = ('tnz064', 0.0020103192893174589) + +[38570] +centroid = (0.63488578581419275, -1.4892275264449006) +station = ('ksrb', 0.0062879119797149456) +zone = ('tnz033', 0.00076716424574554173) + +[38571] +centroid = (0.62921919042515773, -1.4837533361526054) +station = ('kcsv', 0.002033820331365226) +zone = ('tnz066', 0.0017781755300660845) + +[38572] +centroid = (0.62568411329170581, -1.4857806407985521) +station = ('kcsv', 0.001876136028851379) +zone = ('tnz066', 0.0025574987851097524) + +[38573] +centroid = (0.63693026449997903, -1.4874373422311302) +station = ('kekq', 0.0081480759236381515) +zone = ('tnz011', 0.002379547371008592) + +[38574] +centroid = (0.63082557401540085, -1.4875317121837852) +station = ('kcsv', 0.0039578605255583656) +zone = ('tnz033', 0.0036105273089267966) + +[38575] +centroid = (0.63801098982610638, -1.4946371919147496) +station = ('ksrb', 0.0088426951519142271) +zone = ('tnz010', 0.0013004260932966037) + +[38577] +centroid = (0.63819667540522607, -1.4830480660551673) +station = ('kekq', 0.0053049272425600919) +zone = ('tnz011', 0.0014414987123752274) + +[38578] +centroid = (0.62800079352763305, -1.4869913407940756) +station = ('kcsv', 0.0017165982303286086) +zone = ('tnz066', 0.0028782494526327709) + +[38579] +centroid = (0.62545386945678283, -1.4930973577288851) +station = ('ksrb', 0.0038482317969279149) +zone = ('tnz065', 0.0020546839351553653) + +[38580] +centroid = (0.63338021244154497, -1.4887647000338566) +station = ('ksrb', 0.0052217214034328951) +zone = ('tnz033', 0.00097402671847360766) + +[38581] +centroid = (0.62379882608699411, -1.494365339430459) +station = ('ksrb', 0.0056411395240014367) +zone = ('tnz080', 0.0025114309183091781) + +[38582] +centroid = (0.62997353918116228, -1.4966341976448814) +station = ('ksrb', 0.0031786151165029185) +zone = ('tnz064', 0.002317086793381115) + +[38583] +centroid = (0.62735057111480264, -1.4912479544935944) +station = ('ksrb', 0.002310546265816281) +zone = ('tnz065', 0.00036665343091828807) + +[38585] +centroid = (0.62161102096303411, -1.4920588170107785) +station = ('ksrb', 0.0077061264934991346) +zone = ('tnz080', 0.0014926282204859769) + +[38587] +centroid = (0.6259581648908541, -1.4942461508958402) +station = ('ksrb', 0.003537469323115096) +zone = ('tnz065', 0.0024883534226130283) + +[38588] +centroid = (0.63610943615276594, -1.4962824788940197) +station = ('ksrb', 0.0073735741790392426) +zone = ('tnz031', 0.0017225834694461523) + +[38589] +centroid = (0.63330289435568166, -1.4848757224879781) +station = ('kcsv', 0.0058576850164490102) +zone = ('tnz034', 0.0026237861731504041) + +[38601] +centroid = (0.60200463791795311, -1.5610758202456694) +station = ('kuox', 0.0023060818363254791) +zone = ('msz013', 0.0024408647934325224) + +[38603] +centroid = (0.60804841641163665, -1.5559369077026821) +station = ('kcrx', 0.0079824949648845973) +zone = ('msz003', 0.00068175275067546546) + +[38606] +centroid = (0.59870486607425499, -1.5699640839943756) +station = ('kuox', 0.006170640877506667) +zone = ('msz012', 0.0010586563332200154) + +[38610] +centroid = (0.60478777484976831, -1.5537889484455454) +station = ('ktup', 0.0076850138593181107) +zone = ('msz004', 0.0026350186862875149) + +[38611] +centroid = (0.60835589106596055, -1.5651416345513602) +station = ('kolv', 0.0026653186212218299) +zone = ('msz002', 0.0029710135357162784) + +[38614] +centroid = (0.59614459023462696, -1.5813302440420158) +station = ('kckm', 0.0028441338094698635) +zone = ('msz010', 0.0012677093404200824) + +[38617] +centroid = (0.59953332151029926, -1.5799108899344165) +station = ('kckm', 0.00090275497271125711) +zone = ('msz010', 0.0024177607636854757) + +[38618] +centroid = (0.60596873443483779, -1.5696945353446976) +station = ('kolv', 0.0050114554631404042) +zone = ('msz008', 0.0012122640486381252) + +[38619] +centroid = (0.60245522957094044, -1.5679259757603594) +station = ('kuox', 0.004907664366526396) +zone = ('msz008', 0.002790186798715808) + +[38620] +centroid = (0.59742861151202675, -1.5690948053071274) +station = ('kuox', 0.0059363884034694626) +zone = ('msz012', 0.0024349729761896349) + +[38621] +centroid = (0.6012169184666506, -1.5737713975845535) +station = ('kuta', 0.0047981492880911272) +zone = ('msz012', 0.0034850776227997797) + +[38622] +centroid = (0.59641237610176057, -1.5732134681825685) +station = ('kckm', 0.0058080095989851655) +zone = ('msz011', 0.0025787480173981342) + +[38623] +centroid = (0.5998288581125395, -1.57573297313087) +station = ('kckm', 0.0034802546527132839) +zone = ('msz011', 0.0020311548290086905) + +[38625] +centroid = (0.60409573434806008, -1.5503137535587295) +station = ('ktup', 0.006090643601966963) +zone = ('msz004', 0.0029730132928948139) + +[38626] +centroid = (0.6024416160027749, -1.5780311877833113) +station = ('kuta', 0.0030163756831934068) +zone = ('msz007', 0.0024158633401565079) + +[38627] +centroid = (0.60070445489168001, -1.5569723417347203) +station = ('kuox', 0.0047536972480947161) +zone = ('msz014', 0.0032000440569175722) + +[38629] +centroid = (0.60847078609061933, -1.5535138671021385) +station = ('kcrx', 0.0059507741838240522) +zone = ('msz004', 0.0021919982467611091) + +[38630] +centroid = (0.59827860431104052, -1.5827624612262023) +station = ('kckm', 0.0025590642492623801) +zone = ('msz010', 0.0014768598908686441) + +[38631] +centroid = (0.59971028044315899, -1.5815878022797327) +station = ('kckm', 0.0018882042941208797) +zone = ('msz010', 0.0023090308707935732) + +[38632] +centroid = (0.6072998272421638, -1.571065648551772) +station = ('kmem', 0.0041725518158356126) +zone = ('msz001', 0.0014313395119872996) + +[38633] +centroid = (0.60471010769805456, -1.5567459201708591) +station = ('kuox', 0.0067113736242715985) +zone = ('msz003', 0.0029678656840903088) + +[38635] +centroid = (0.60679703279124919, -1.5618310416662997) +station = ('kolv', 0.0056760306649151849) +zone = ('msz002', 0.00025358679555876614) + +[38637] +centroid = (0.61002889387375214, -1.5716551858665107) +station = ('kmem', 0.0017024232661778805) +zone = ('msz001', 0.0015704225326477342) + +[38639] +centroid = (0.59870217826720706, -1.5783362015233895) +station = ('kckm', 0.0011258579964632659) +zone = ('msz011', 0.0022498855581130632) + +[38641] +centroid = (0.60937633271972402, -1.5740877036048926) +station = ('kmem', 0.0035922138639993902) +zone = ('msz001', 0.0028992481682950846) + +[38642] +centroid = (0.60962437891301746, -1.5591840753227251) +station = ('kolv', 0.0065283537966212323) +zone = ('msz003', 0.0028591379759076436) + +[38643] +centroid = (0.59600353272448092, -1.5753492799481115) +station = ('kckm', 0.0044630711615248437) +zone = ('msz011', 0.0018418335480415405) + +[38644] +centroid = (0.60145457995089457, -1.5794100502522643) +station = ('kckm', 0.0028166552835641591) +zone = ('msz007', 0.0037434336229149115) + +[38645] +centroid = (0.59771407756448292, -1.5791132221063775) +station = ('kckm', 0.0010512902378684624) +zone = ('msz010', 0.0018454334718105221) + +[38646] +centroid = (0.59846706496367086, -1.5762833976170714) +station = ('kckm', 0.0028263557728221761) +zone = ('msz011', 0.00076051369089908684) + +[38647] +centroid = (0.61019194253247355, -1.5571221258911265) +station = ('kcrx', 0.0088503564552589817) +zone = ('msz003', 0.0025472189233650649) + +[38650] +centroid = (0.60262906436443908, -1.5558816331252714) +station = ('kuox', 0.0061485378254162049) +zone = ('msz014', 0.0021403384947838496) + +[38651] +centroid = (0.60903435290608821, -1.5708339211869846) +station = ('kmem', 0.0024276330620961253) +zone = ('msz001', 0.00037439190462851138) + +[38652] +centroid = (0.60184319496214367, -1.5532848624509843) +station = ('ktup', 0.0050242797160079304) +zone = ('msz014', 0.00016529866526740077) + +[38654] +centroid = (0.60971208170793012, -1.5675898078931327) +station = ('kolv', 0.0008898545366062432) +zone = ('msz001', 0.002712050885469797) + +[38655] +centroid = (0.59922760963851995, -1.5616038521575677) +station = ('kuox', 0.0012664247633009326) +zone = ('msz013', 0.00044426050654310366) + +[38658] +centroid = (0.59677465409459707, -1.5691939051020556) +station = ('kuox', 0.0063305972564969195) +zone = ('msz012', 0.0030502073254782183) + +[38659] +centroid = (0.60425942877860461, -1.5591292719842125) +station = ('kuox', 0.0050726713058350777) +zone = ('msz002', 0.0034784880038974046) + +[38661] +centroid = (0.60906739198882853, -1.5631353087630224) +station = ('kolv', 0.0035339290535366537) +zone = ('msz002', 0.00249312763702637) + +[38663] +centroid = (0.60622355250562898, -1.5512873156687843) +station = ('kcrx', 0.0051847078557526651) +zone = ('msz004', 0.000711216323294311) + +[38664] +centroid = (0.6075746293328903, -1.5765428757169653) +station = ('kuta', 0.0022931064950249378) +zone = ('msz007', 0.0028610981518432466) + +[38665] +centroid = (0.60364913949905974, -1.5736959295476973) +station = ('kuta', 0.0030673408991895804) +zone = ('msz007', 0.0032168003288367331) + +[38666] +centroid = (0.60087671888885186, -1.5693621199353629) +station = ('kuox', 0.0055561822839485546) +zone = ('msz012', 0.0012088646505012137) + +[38668] +centroid = (0.60364072701206517, -1.5692634215661625) +station = ('kuox', 0.0064605450683409152) +zone = ('msz008', 0.001215111349467808) + +[38670] +centroid = (0.60068813606317373, -1.5758353366914994) +station = ('kckm', 0.0037851991373686316) +zone = ('msz011', 0.0028884380028960091) + +[38671] +centroid = (0.61027674808082788, -1.5707640731103198) +station = ('kmem', 0.0011892893016235725) +zone = ('msz001', 0.0015887926993593251) + +[38672] +centroid = (0.60931927790647633, -1.5695383807365217) +station = ('kmem', 0.0022705100093992213) +zone = ('msz001', 0.0011096939181430121) + +[38673] +centroid = (0.59853347474170926, -1.5644328214355401) +station = ('kuox', 0.0021431355047917535) +zone = ('msz013', 0.0024348419887946929) + +[38674] +centroid = (0.60856786130361518, -1.5514650250932223) +station = ('kcrx', 0.0042816791338533998) +zone = ('msz004', 0.0017607541820626701) + +[38676] +centroid = (0.60504369247798817, -1.5774936961868669) +station = ('kuta', 0.0005918717749048097) +zone = ('msz007', 0.00027851037772499575) + +[38677] +centroid = (0.59978957075107708, -1.5627185939508166) +station = ('kuox', 0.00033301944318378258) +zone = ('msz013', 0.0007680784747366525) + +[38680] +centroid = (0.61002179038369653, -1.5733470731368087) +station = ('kmem', 0.0027295757579158348) +zone = ('msz001', 0.002579130640931012) + +[38683] +centroid = (0.60968942733423925, -1.5509919361461768) +station = ('kcrx', 0.0038026599825842209) +zone = ('msz004', 0.0029336336188278498) + +[38685] +centroid = (0.60376197503520113, -1.5618682346326596) +station = ('kuox', 0.0037027232189321747) +zone = ('msz002', 0.0029620801182639414) + +[38701] +centroid = (0.58138205436919088, -1.5890221369483577) +station = ('kglh', 0.003140462252482911) +zone = ('msz034', 0.0014902995468494516) + +[38702] +centroid = (0.58530778854911669, -1.5913921020863484) +station = ('kglh', 0.0030049042709971922) +zone = ('arz075', 0.0049710760410526574) + +[38703] +centroid = (0.58426052118475003, -1.5891717465718387) +station = ('kglh', 0.0010205765579470575) +zone = ('msz034', 0.0036875294072934552) + +[38704] +centroid = (0.57608388053195925, -1.5886205366874737) +station = ('kglh', 0.0083289414731878009) +zone = ('msz041', 0.0037730854446471414) + +[38720] +centroid = (0.59527155908948692, -1.584426493041639) +station = ('kckm', 0.0051668727976174819) +zone = ('msz010', 0.0033478966428353413) + +[38721] +centroid = (0.57577773232786711, -1.5838227487467889) +station = ('kglh', 0.0092851723944672136) +zone = ('msz041', 0.002154091691839053) + +[38722] +centroid = (0.58050181501424003, -1.5862239727316827) +station = ('kglh', 0.0041534460572421545) +zone = ('msz034', 0.0010113694659886401) + +[38723] +centroid = (0.57996701122484395, -1.5889192497889524) +station = ('kglh', 0.0044995038101309339) +zone = ('msz034', 0.0016275369840123377) + +[38725] +centroid = (0.58728159885348963, -1.5887897463584546) +station = ('kglh', 0.0029690618986325428) +zone = ('msz018', 0.0033668352948070697) + +[38726] +centroid = (0.58914978183153177, -1.5880525367357048) +station = ('kglh', 0.004756012160957575) +zone = ('msz018', 0.0017173031236982696) + +[38730] +centroid = (0.58787679103500468, -1.5845980065472323) +station = ('kglh', 0.0044682934442508504) +zone = ('msz018', 0.0023573137854539946) + +[38731] +centroid = (0.57712104243995699, -1.5890654211138069) +station = ('kglh', 0.007331982198220119) +zone = ('msz034', 0.0040558844019116923) + +[38732] +centroid = (0.58920317145335022, -1.5834603485809049) +station = ('kglh', 0.0060955503401032762) +zone = ('msz018', 0.0023350957591199814) + +[38736] +centroid = (0.58717745505702301, -1.5801751676897535) +station = ('kglh', 0.0070577422930109173) +zone = ('msz019', 0.001027599978135513) + +[38737] +centroid = (0.59102993776824264, -1.5799448540416603) +station = ('kckm', 0.0076207497292223331) +zone = ('msz019', 0.0046543778167221737) + +[38738] +centroid = (0.59245374246543459, -1.5801013926222718) +station = ('kckm', 0.0062032082891481091) +zone = ('msz010', 0.0050594087663280067) + +[38740] +centroid = (0.59441861668403739, -1.5847373187281266) +station = ('kckm', 0.0059389184872373222) +zone = ('msz010', 0.0041209747163701979) + +[38744] +centroid = (0.57620568706045594, -1.5888979742253708) +station = ('kglh', 0.008226310570022868) +zone = ('msz041', 0.0040330354374768498) + +[38745] +centroid = (0.57547481298289094, -1.5881242348613767) +station = ('kglh', 0.0089206725572461131) +zone = ('msz041', 0.0030878382754561517) + +[38746] +centroid = (0.59274824932341619, -1.5866660297246278) +station = ('kckm', 0.0082509783636090031) +zone = ('msz018', 0.0029354562386006448) + +[38748] +centroid = (0.57859752117397412, -1.5865400344059264) +station = ('kglh', 0.0059168731871788536) +zone = ('msz034', 0.0024038935608973189) + +[38749] +centroid = (0.58376765765727934, -1.583927608128249) +station = ('kglh', 0.0034207467369212706) +zone = ('msz019', 0.0036024387454756594) + +[38751] +centroid = (0.58376711660521119, -1.5826737286870312) +station = ('kglh', 0.0044532518717613516) +zone = ('msz019', 0.0030157510813958429) + +[38753] +centroid = (0.58202086232871331, -1.5808543800214596) +station = ('kglh', 0.0063873793086900435) +zone = ('msz035', 0.0038845573696604666) + +[38754] +centroid = (0.58031241188381366, -1.5816748418495297) +station = ('kglh', 0.0066487113477022228) +zone = ('msz035', 0.0025377909945239782) + +[38756] +centroid = (0.58276189422252511, -1.5858100853528647) +station = ('kglh', 0.00242489005701887) +zone = ('msz034', 0.0022474887256583084) + +[38759] +centroid = (0.59036037710730016, -1.5835429375611092) +station = ('kglh', 0.0070073795479190289) +zone = ('msz018', 0.002237019724401454) + +[38760] +centroid = (0.58395285454420842, -1.5880623978459785) +station = ('kglh', 0.00044994477284466785) +zone = ('msz034', 0.0031050222427974655) + +[38761] +centroid = (0.58346623929545982, -1.5792518187022784) +station = ('kgwo', 0.0059662964210057809) +zone = ('msz019', 0.0033656804483447236) + +[38762] +centroid = (0.59159575605844683, -1.5833038972667561) +station = ('kckm', 0.0076584324533947278) +zone = ('msz018', 0.0029510382943653581) + +[38764] +centroid = (0.58957421099903173, -1.5859144036822566) +station = ('kglh', 0.0054523005355226915) +zone = ('msz018', 0.00033841792358327701) + +[38765] +centroid = (0.57716490256405961, -1.5860611684190566) +station = ('kglh', 0.0074015219420263696) +zone = ('msz041', 0.0034259812201803221) + +[38767] +centroid = (0.59586416818370913, -1.5844922919544391) +station = ('kckm', 0.0048444124503014647) +zone = ('msz010', 0.0030500631414140792) + +[38768] +centroid = (0.59292629036041211, -1.5794547481344079) +station = ('kckm', 0.0057251701304237325) +zone = ('msz010', 0.0047431656958809585) + +[38769] +centroid = (0.5910518241970627, -1.5879930035549192) +station = ('kglh', 0.006657474083217956) +zone = ('msz018', 0.0019428809002187371) + +[38771] +centroid = (0.58887347875764851, -1.5800289265517289) +station = ('kgwo', 0.0077131938719828749) +zone = ('msz019', 0.0025544545662655746) + +[38772] +centroid = (0.5857193022801519, -1.5891633166315515) +station = ('kglh', 0.0016624780675410275) +zone = ('msz018', 0.0048207888040018854) + +[38773] +centroid = (0.58655732212049694, -1.5843553708746201) +station = ('kglh', 0.0037010119477521538) +zone = ('msz019', 0.0027367724806947975) + +[38774] +centroid = (0.59269623851170672, -1.5841185820550021) +station = ('kckm', 0.0069868122521872765) +zone = ('msz018', 0.0033198113211415168) + +[38778] +centroid = (0.58550764620176254, -1.5800698196161032) +station = ('kglh', 0.0066708329383727118) +zone = ('msz019', 0.0012741763693277508) + +[38781] +centroid = (0.59181589443700078, -1.5840012784759754) +station = ('kckm', 0.007705575970555433) +zone = ('msz018', 0.0026671917696734918) + +[38801] +centroid = (0.59727360882115721, -1.5494160783645512) +station = ('ktup', 0.00080162031466248017) +zone = ('msz016', 0.0018159667442784091) + +[38804] +centroid = (0.59832291822074857, -1.5476335910527816) +station = ('ktup', 0.0013768997770829375) +zone = ('msz016', 0.00018413161418484459) + +[38821] +centroid = (0.59301961311551632, -1.5435124498098027) +station = ('km40', 0.0019666114759714836) +zone = ('msz024', 0.0016161238783287248) + +[38824] +centroid = (0.60250134116977816, -1.5471126451776465) +station = ('ktup', 0.0047792996008207723) +zone = ('msz009', 0.0024531085485164578) + +[38826] +centroid = (0.59867002930238522, -1.5505767048638346) +station = ('ktup', 0.0012366428722275081) +zone = ('msz016', 0.0023313530167137753) + +[38827] +centroid = (0.60243372711455601, -1.5389868634192589) +station = ('kcrx', 0.0092865593543144994) +zone = ('msz006', 0.004000488973445405) + +[38828] +centroid = (0.60091438309410983, -1.5510599690804197) +station = ('ktup', 0.0032085724910993355) +zone = ('msz014', 0.0022074044101131926) + +[38829] +centroid = (0.60476306098756005, -1.5450950096557561) +station = ('kcrx', 0.0048195366027219463) +zone = ('msz009', 0.00056953751873529469) + +[38833] +centroid = (0.60943686073818315, -1.5414581274670354) +station = ('kcrx', 0.0040208807971653156) +zone = ('msz006', 0.0033061680356542057) + +[38834] +centroid = (0.60941855223432972, -1.5458691329921856) +station = ('kcrx', 0.00040703779073581088) +zone = ('msz005', 0.0006453830681284145) + +[38838] +centroid = (0.60299614201271867, -1.5403240125190893) +station = ('kcrx', 0.0081557755235753537) +zone = ('msz006', 0.0033449467721577589) + +[38841] +centroid = (0.59956573227450882, -1.5536094936918552) +station = ('ktup', 0.0038850169409377611) +zone = ('msz015', 0.0022426409055094835) + +[38843] +centroid = (0.59798556352963061, -1.5424575553566047) +station = ('ktup', 0.0056312045785578179) +zone = ('msz017', 0.0003808086451872315) + +[38844] +centroid = (0.59059522861144842, -1.5403449041102357) +station = ('km40', 0.0034523401849978078) +zone = ('alz012', 0.0025198114712959895) + +[38846] +centroid = (0.60827096334455844, -1.5425731485129643) +station = ('kcrx', 0.0033306597169191978) +zone = ('msz006', 0.0028263399905232968) + +[38847] +centroid = (0.60061212697424948, -1.5399556607804561) +station = ('ktup', 0.0081018371134730094) +zone = ('msz017', 0.0029616647678101416) + +[38848] +centroid = (0.592323645622991, -1.5406207359452211) +station = ('km40', 0.0033571703880182729) +zone = ('msz024', 0.0031335607322026003) + +[38849] +centroid = (0.60145730266452768, -1.5480382805464419) +station = ('ktup', 0.0035404305400032142) +zone = ('msz016', 0.0029941575469900339) + +[38850] +centroid = (0.59443978752786408, -1.5543542256836811) +station = ('ktup', 0.0055537825023028774) +zone = ('msz023', 0.0028886685488731865) + +[38851] +centroid = (0.59184987599753713, -1.5527879148530639) +station = ('ktup', 0.0068649337245441453) +zone = ('msz023', 0.00034454905502720267) + +[38852] +centroid = (0.60813707913763793, -1.5396116214783027) +station = ('kcrx', 0.00569525152817788) +zone = ('msz006', 0.0018409824792185261) + +[38855] +centroid = (0.59905469986952486, -1.5443611336118777) +station = ('ktup', 0.0041746712151894301) +zone = ('msz017', 0.0019420161433337242) + +[38856] +centroid = (0.60156464041352531, -1.5438335903921698) +station = ('ktup', 0.0056904112976244106) +zone = ('msz009', 0.0027990201217972448) + +[38857] +centroid = (0.59831803129884309, -1.5459760344088702) +station = ('ktup', 0.0027341065262493653) +zone = ('msz016', 0.0014860470073755662) + +[38858] +centroid = (0.59515905516590339, -1.5454646180314509) +station = ('km40', 0.0040415972347908708) +zone = ('msz024', 0.0037586937367205023) + +[38859] +centroid = (0.60240674432432006, -1.5424384090947103) +station = ('ktup', 0.007115256800176102) +zone = ('msz009', 0.0027502604749755225) + +[38860] +centroid = (0.59291887271109123, -1.5491788357593275) +station = ('km40', 0.0042911337795575911) +zone = ('msz023', 0.002842779927545217) + +[38862] +centroid = (0.59634652482908268, -1.546767314331847) +station = ('ktup', 0.0026910953419187812) +zone = ('msz016', 0.0022795958713311766) + +[38863] +centroid = (0.59721527991755541, -1.5536755718573358) +station = ('ktup', 0.0037395265208683059) +zone = ('msz015', 0.00029525005785572411) + +[38864] +centroid = (0.59615699952560874, -1.5569674897193999) +station = ('kuox', 0.0061712705830029978) +zone = ('msz015', 0.0027305179895959612) + +[38865] +centroid = (0.60716568123585546, -1.5462815368411393) +station = ('kcrx', 0.0023042331602601391) +zone = ('msz005', 0.0016335223510090067) + +[38866] +centroid = (0.5998223131278444, -1.5477587660667349) +station = ('ktup', 0.0021548227353213579) +zone = ('msz016', 0.001350667639992466) + +[38868] +centroid = (0.59556828251561844, -1.5492003905755896) +station = ('ktup', 0.0024985494471244599) +zone = ('msz016', 0.003136690171762868) + +[38869] +centroid = (0.59965072980908085, -1.5504655448437754) +station = ('ktup', 0.0018668263719958346) +zone = ('msz016', 0.0025228024219800787) + +[38870] +centroid = (0.59458889100586187, -1.5417589698702014) +station = ('km40', 0.0040443011947787471) +zone = ('msz024', 0.003700507291389917) + +[38871] +centroid = (0.60007409432573711, -1.5576584481169717) +station = ('kuox', 0.0041529127165911891) +zone = ('msz013', 0.0034510706588038514) + +[38873] +centroid = (0.60492584784689363, -1.5401291988679817) +station = ('kcrx', 0.0068438639205099716) +zone = ('msz006', 0.0014094641199656063) + +[38876] +centroid = (0.59713979442740683, -1.5399090953960128) +station = ('km40', 0.0070179148952139933) +zone = ('msz017', 0.0022171777289431557) + +[38878] +centroid = (0.5917452609621725, -1.5566148110374494) +station = ('ktup', 0.0087721159523551136) +zone = ('msz022', 0.0022277746683643206) + +[38879] +centroid = (0.59666038738846894, -1.5484070337108029) +station = ('ktup', 0.0015767070141253963) +zone = ('msz016', 0.0018874441215150177) + +[38901] +centroid = (0.58926727739677609, -1.5673565446386035) +station = ('kgwo', 0.0061319054802187441) +zone = ('msz026', 0.00013108500186601347) + +[38913] +centroid = (0.59583587639653424, -1.5600603178736889) +station = ('kuox', 0.0048055420044024284) +zone = ('msz022', 0.0036028247491739205) + +[38914] +centroid = (0.59072785618130752, -1.5606139363124214) +station = ('kuox', 0.0095498928017177659) +zone = ('msz022', 0.001956394631026872) + +[38915] +centroid = (0.59406888760852272, -1.5601298343377961) +station = ('kuox', 0.0064125376871964302) +zone = ('msz022', 0.0019231317181144095) + +[38916] +centroid = (0.5902098599126081, -1.559499508678438) +station = ('kstf', 0.01005192439516227) +zone = ('msz022', 0.0021054124609004464) + +[38917] +centroid = (0.58567858374870285, -1.5709102967950519) +station = ('kgwo', 0.0014950813439389718) +zone = ('msz027', 0.0022712820261583866) + +[38920] +centroid = (0.59184221400212089, -1.5707149595451686) +station = ('kgwo', 0.0072700613760299272) +zone = ('msz020', 0.0026706243183289048) + +[38921] +centroid = (0.5931004742197612, -1.5733127599637147) +station = ('kckm', 0.0076615176360276356) +zone = ('msz020', 0.00069402116669379783) + +[38922] +centroid = (0.59223534941613265, -1.5646109497389988) +station = ('kuox', 0.0080449748639807531) +zone = ('msz021', 0.0018947000289568539) + +[38923] +centroid = (0.58274042667272563, -1.5705971672739516) +station = ('kgwo', 0.0023846129902351776) +zone = ('msz027', 0.0014445533267551766) + +[38924] +centroid = (0.58104611339476708, -1.5747165282810935) +station = ('kgwo', 0.0041811056142755836) +zone = ('msz036', 0.0035129707499485128) + +[38925] +centroid = (0.58688493787438889, -1.5644132912012105) +station = ('kgwo', 0.0068912727173033499) +zone = ('msz028', 0.0023172488538412508) + +[38927] +centroid = (0.59582044768594666, -1.5713623894311959) +station = ('kckm', 0.0074496811186093468) +zone = ('msz020', 0.0038539800452156991) + +[38928] +centroid = (0.59113680427834236, -1.5758883074342975) +station = ('kgwo', 0.0071262444273692618) +zone = ('msz020', 0.0022226337896190992) + +[38929] +centroid = (0.58886466484492606, -1.562616195483602) +station = ('kgwo', 0.0090462870775488095) +zone = ('msz029', 0.0042051533244150509) + +[38930] +centroid = (0.58534911794580402, -1.5734912722396086) +station = ('kgwo', 0.0012289218016082761) +zone = ('msz025', 0.0021434722987468723) + +[38940] +centroid = (0.5891795920551558, -1.5713100644602211) +station = ('kgwo', 0.0045620364480366531) +zone = ('msz020', 0.0039608456464377221) + +[38941] +centroid = (0.58441604747439524, -1.5770486372276085) +station = ('kgwo', 0.0040102795897084126) +zone = ('msz025', 0.0014203846479175072) + +[38943] +centroid = (0.5853817032429387, -1.5681009973777491) +station = ('kgwo', 0.003529031058719784) +zone = ('msz027', 0.0019299662071547625) + +[38944] +centroid = (0.58926038334623065, -1.5768319895075582) +station = ('kgwo', 0.0059566046221921388) +zone = ('msz025', 0.0037506399115196094) + +[38945] +centroid = (0.5864471743914037, -1.5737289860837302) +station = ('kgwo', 0.0021498589288644569) +zone = ('msz025', 0.0021246064834746625) + +[38946] +centroid = (0.58231172144855825, -1.5774032532250288) +station = ('kgwo', 0.0049115645278286473) +zone = ('msz025', 0.0034452773162135129) + +[38947] +centroid = (0.58520921235296408, -1.5691756838646649) +station = ('kgwo', 0.0026168067435371721) +zone = ('msz027', 0.0014353935284193635) + +[38948] +centroid = (0.5945938477409376, -1.5687395435378839) +station = ('kuox', 0.0074548529636316689) +zone = ('msz021', 0.0026168162299565105) + +[38949] +centroid = (0.59675552528599507, -1.5607679965254952) +station = ('kuox', 0.0037220862832995014) +zone = ('msz013', 0.0030086510434458869) + +[38950] +centroid = (0.58875479636851302, -1.5743108788563451) +station = ('kgwo', 0.0044163345764025429) +zone = ('msz025', 0.0035013879220032805) + +[38951] +centroid = (0.5929543727080766, -1.5584130412190718) +station = ('kuox', 0.007993256423874124) +zone = ('msz022', 0.0009313696163219642) + +[38952] +centroid = (0.58692522007352488, -1.5768521655137115) +station = ('kgwo', 0.0044405250154097445) +zone = ('msz025', 0.0015140614053623183) + +[38953] +centroid = (0.5922019438142494, -1.5696340247795308) +station = ('kgwo', 0.0078254438279104499) +zone = ('msz026', 0.003389944415435307) + +[38954] +centroid = (0.58322213754627605, -1.5745060415733032) +station = ('kgwo', 0.0023835005102550342) +zone = ('msz025', 0.0026748242720213509) + +[38957] +centroid = (0.59326840980038809, -1.5769105991370682) +station = ('kckm', 0.0058531247579010019) +zone = ('msz020', 0.0026630183561220347) + +[38958] +centroid = (0.58125874685753753, -1.5782689365340179) +station = ('kgwo', 0.0060813860659636966) +zone = ('msz035', 0.0033746637403422983) + +[38961] +centroid = (0.59261829210731265, -1.5693123431450959) +station = ('kgwo', 0.0083008880665625066) +zone = ('msz021', 0.0032647677326532874) + +[38962] +centroid = (0.59117305476690629, -1.5740277166385015) +station = ('kgwo', 0.0066541084684210161) +zone = ('msz020', 0.0013857960896056726) + +[38963] +centroid = (0.59386786058527807, -1.577586373170148) +station = ('kckm', 0.0050892571004750422) +zone = ('msz020', 0.0033909329200620835) + +[38964] +centroid = (0.59514086883509765, -1.5777513067844615) +station = ('kckm', 0.0038588263934955201) +zone = ('msz011', 0.003092634250016412) + +[38965] +centroid = (0.59577763475939527, -1.5638455530488291) +station = ('kuox', 0.0044478342328092722) +zone = ('msz021', 0.0024189391069716197) + +[38966] +centroid = (0.59248758439963078, -1.5763667021822692) +station = ('kckm', 0.0067492787259571642) +zone = ('msz020', 0.0021140806826994967) + +[38967] +centroid = (0.58394177170345829, -1.5661267507410634) +station = ('kgwo', 0.0051618155516415781) +zone = ('msz028', 0.0018068667442722752) + +[39038] +centroid = (0.57920601276438932, -1.5792537909243332) +station = ('kgwo', 0.0080154990765531516) +zone = ('msz035', 0.001173654470451071) + +[39039] +centroid = (0.5727568466453451, -1.5745923306515217) +station = ('khks', 0.0084337306330386063) +zone = ('msz042', 0.0027008932871376893) + +[39040] +centroid = (0.56970580167334872, -1.5781822285767788) +station = ('kjvw', 0.0058893463577465496) +zone = ('msz042', 0.002451621240703404) + +[39041] +centroid = (0.56557144828793215, -1.5789784303282461) +station = ('kjvw', 0.0019513577239911298) +zone = ('msz048', 0.0024418194304195425) + +[39042] +centroid = (0.56196369564442727, -1.5689741506959369) +station = ('kjan', 0.0034220243795924804) +zone = ('msz049', 0.0013682675353454334) + +[39044] +centroid = (0.55901679446889729, -1.5703541999887813) +station = ('kjan', 0.0052915224905725729) +zone = ('msz055', 0.0021848095680435209) + +[39045] +centroid = (0.57280894472351718, -1.56703604982806) +station = ('kjan', 0.0097294998391410457) +zone = ('msz044', 0.0039915898455547367) + +[39046] +centroid = (0.5695386863974703, -1.5705159047439785) +station = ('kjan', 0.0056244543342425053) +zone = ('msz043', 0.00073428536838476236) + +[39047] +centroid = (0.56585518646442889, -1.5698451223525596) +station = ('kjan', 0.0026301718596443684) +zone = ('msz049', 0.0027404128585584143) + +[39051] +centroid = (0.57200642488015763, -1.5619601611243623) +station = ('knmm', 0.0085883684183024056) +zone = ('msz044', 0.00056678647489697429) + +[39054] +centroid = (0.57202021298124839, -1.5871898030331515) +station = ('ktvr', 0.0075588747325514216) +zone = ('msz040', 0.00093141070860255058) + +[39056] +centroid = (0.5650946417895798, -1.5769356620651269) +station = ('kjvw', 0.0015418350244584362) +zone = ('msz048', 0.0023540046708260993) + +[39057] +centroid = (0.56707237908476971, -1.558307221906523) +station = ('kmei', 0.0083405465342716867) +zone = ('msz051', 0.0029076687307392083) + +[39059] +centroid = (0.55819263254281304, -1.5770084597482275) +station = ('kjvw', 0.0056843268661824105) +zone = ('msz054', 0.0024029442800222677) + +[39061] +centroid = (0.57745607584316982, -1.5850696294177062) +station = ('kglh', 0.0073466617643788337) +zone = ('msz041', 0.0035976841617968475) + +[39062] +centroid = (0.55824525421976079, -1.5690215014785436) +station = ('kjan', 0.006412497249495254) +zone = ('msz055', 0.0012934835667859934) + +[39063] +centroid = (0.57799499860960069, -1.5690071723253847) +station = ('kgwo', 0.007218607199113122) +zone = ('msz036', 0.0028472403613496208) + +[39066] +centroid = (0.56371090985201366, -1.5813704215213968) +station = ('kjvw', 0.0028835234267953918) +zone = ('msz048', 0.0024695640599469524) + +[39067] +centroid = (0.57787996395860175, -1.5610884913360388) +station = ('knmm', 0.0081978782853994146) +zone = ('msz037', 0.0020588123555106293) + +[39069] +centroid = (0.55302781931372647, -1.589004456763035) +station = ('khez', 0.0040027888830587513) +zone = ('msz059', 0.00084341230189618544) + +[39071] +centroid = (0.5681764743695813, -1.5763531409739813) +station = ('khks', 0.0041343493399889387) +zone = ('msz042', 0.0041128298700324282) + +[39073] +centroid = (0.56029311884429578, -1.5731667806250778) +station = ('kjan', 0.0038889933153485085) +zone = ('msz049', 0.003981008916859043) + +[39074] +centroid = (0.56537679171645716, -1.5616858302725338) +station = ('kjan', 0.00893235025285221) +zone = ('msz050', 0.00090570459094971301) + +[39078] +centroid = (0.55637689670879331, -1.5740811062603199) +station = ('k1r7', 0.0059487668246873899) +zone = ('msz055', 0.0040286595434330125) + +[39079] +centroid = (0.57482989637098647, -1.5690256902687483) +station = ('kgwo', 0.010218047600685131) +zone = ('msz036', 0.0043367392719565814) + +[39082] +centroid = (0.55749034695839561, -1.5728920308942287) +station = ('kjan', 0.0066251704220570825) +zone = ('msz055', 0.0030128677351043947) + +[39083] +centroid = (0.55579338077997409, -1.5791268880344207) +station = ('k1r7', 0.0043532777099773833) +zone = ('msz054', 0.00060223937034775861) + +[39086] +centroid = (0.5575880679432148, -1.5840466570365273) +station = ('k1r7', 0.0078804047257784726) +zone = ('msz053', 0.0023058146498657539) + +[39088] +centroid = (0.57188587498872245, -1.583158947672378) +station = ('ktvr', 0.0087043861626015014) +zone = ('msz041', 0.0025018536408104777) + +[39090] +centroid = (0.57599383899584888, -1.5628358451699653) +station = ('knmm', 0.0090645179915740011) +zone = ('msz037', 0.0015715614597597966) + +[39092] +centroid = (0.56408252535634829, -1.5596681249374733) +station = ('kmei', 0.0090350633574321319) +zone = ('msz050', 0.0029948102842697341) + +[39094] +centroid = (0.56873735337800224, -1.5649172899293089) +station = ('kjan', 0.0076731444389567223) +zone = ('msz044', 0.0035629855895158908) + +[39095] +centroid = (0.57822068713517594, -1.5723168750925265) +station = ('kgwo', 0.006464848319478033) +zone = ('msz036', 0.00012903374525175183) + +[39096] +centroid = (0.5553797028406664, -1.5902632405794506) +station = ('khez', 0.0044967807246861814) +zone = ('msz059', 0.0019076516217767007) + +[39097] +centroid = (0.57577600445190746, -1.581399498706735) +station = ('kglh', 0.010216426876480635) +zone = ('msz035', 0.0027025812796476253) + +[39108] +centroid = (0.57856528494268977, -1.5592515322983147) +station = ('knmm', 0.0071863778153604596) +zone = ('msz032', 0.0036969009524998593) + +[39110] +centroid = (0.56730548525966606, -1.5733648231353017) +station = ('khks', 0.0031532596859917047) +zone = ('msz043', 0.0028226252851216702) + +[39111] +centroid = (0.55670130105686155, -1.5658761040071845) +station = ('kjan', 0.0090972102751437564) +zone = ('msz055', 0.0029981454843829658) + +[39113] +centroid = (0.57445477275485535, -1.5885501999186185) +station = ('ktvr', 0.0098764826458858715) +zone = ('msz040', 0.0030374719890387029) + +[39114] +centroid = (0.55766482752371749, -1.5677352985395789) +station = ('kjan', 0.0074292826438975548) +zone = ('msz055', 0.0015588691470204824) + +[39115] +centroid = (0.57674166022045092, -1.5806905634178674) +station = ('kglh', 0.0097722851130905997) +zone = ('msz035', 0.0015779821266045761) + +[39116] +centroid = (0.55669791511811262, -1.5627373387869827) +station = ('kpib', 0.0080949275081437788) +zone = ('msz056', 0.002167336021624089) + +[39117] +centroid = (0.5638536428782418, -1.5647678897453381) +station = ('kjan', 0.0062423397462554805) +zone = ('msz050', 0.0024534569239432371) + +[39119] +centroid = (0.55416907265831306, -1.5650503014716033) +station = ('kpib', 0.0070625645751526498) +zone = ('msz065', 0.0027104743184809019) + +[39120] +centroid = (0.54993678884856689, -1.5944890666709646) +station = ('khez', 0.002063606043909893) +zone = ('msz060', 0.00045600275828975006) + +[39140] +centroid = (0.55415741385890971, -1.5709456397124046) +station = ('k1r7', 0.0066545592774285602) +zone = ('msz055', 0.0031256516253814152) + +[39144] +centroid = (0.55540954797087549, -1.5846356183926129) +station = ('k1r7', 0.0067644183165812121) +zone = ('msz053', 0.0031709531286635275) + +[39145] +centroid = (0.56444766568915805, -1.5672061845235443) +station = ('kjan', 0.0041922150482909754) +zone = ('msz049', 0.0026009732199813451) + +[39146] +centroid = (0.57379446233894837, -1.5707074371760925) +station = ('kjan', 0.0097845544906435926) +zone = ('msz043', 0.0042500118118419736) + +[39149] +centroid = (0.55557259662959679, -1.5709821869069416) +station = ('k1r7', 0.0073025853244418452) +zone = ('msz055', 0.0019584122804347354) + +[39150] +centroid = (0.55858812415131498, -1.5878315780524024) +station = ('ktvr', 0.0060447264638160908) +zone = ('msz053', 0.0010945540698386414) + +[39152] +centroid = (0.56212648250376074, -1.5635614832597746) +station = ('kjan', 0.0075211959802925837) +zone = ('msz056', 0.0035109485341065995) + +[39153] +centroid = (0.55931629296853957, -1.5618651279465912) +station = ('kjan', 0.0099247291615609506) +zone = ('msz056', 0.00057122054313963027) + +[39154] +centroid = (0.56243428877064239, -1.5785572998330324) +station = ('kjvw', 0.001473924409894289) +zone = ('msz048', 0.00072644784807113704) + +[39156] +centroid = (0.5680752452729656, -1.5843822489451009) +station = ('ktvr', 0.0050937648671667852) +zone = ('msz047', 0.0035043381105286345) + +[39157] +centroid = (0.5659382641368238, -1.573760803435994) +station = ('khks', 0.0017563648337871954) +zone = ('msz043', 0.0041583483267692446) + +[39159] +centroid = (0.57293165882322494, -1.5871217351923237) +station = ('ktvr', 0.0084667090124053452) +zone = ('msz040', 0.001683207512468417) + +[39160] +centroid = (0.57585053001096775, -1.5666478013359539) +station = ('kgwo', 0.010000499526656733) +zone = ('msz037', 0.0030965487576938315) + +[39162] +centroid = (0.56937413675559234, -1.5817930879063522) +station = ('kjvw', 0.0064270395644482206) +zone = ('msz042', 0.004397700673214139) + +[39166] +centroid = (0.57667109655879278, -1.5792025131509095) +station = ('kgwo', 0.0098999853437086813) +zone = ('msz035', 0.0016682013178011225) + +[39167] +centroid = (0.5601475060248019, -1.5715139363701467) +station = ('kjan', 0.0039745462236375727) +zone = ('msz049', 0.0032850264038160968) + +[39168] +centroid = (0.55557107819314755, -1.560530701560394) +station = ('kpib', 0.0064799379723160869) +zone = ('msz056', 0.0035346373309741094) + +[39169] +centroid = (0.57976982392595366, -1.5749610314560054) +station = ('kgwo', 0.0054116821125107257) +zone = ('msz036', 0.0027061368231950699) + +[39170] +centroid = (0.5604581920849494, -1.576556018046233) +station = ('kjvw', 0.0035653490335340126) +zone = ('msz048', 0.0031735381073095472) + +[39174] +centroid = (0.56551322410408567, -1.5735823086133927) +station = ('khks', 0.0014571980030016218) +zone = ('msz049', 0.0039629979701827998) + +[39175] +centroid = (0.56008744924524068, -1.5818143809232266) +station = ('kjvw', 0.0049556098205415832) +zone = ('msz048', 0.0041476059662307789) + +[39176] +centroid = (0.58130073947934047, -1.5667528701569238) +station = ('kgwo', 0.0057027156976942554) +zone = ('msz027', 0.0033284138410293153) + +[39177] +centroid = (0.56938352662696801, -1.5847637430130017) +station = ('ktvr', 0.0058746622697408712) +zone = ('msz040', 0.0034573225266848495) + +[39179] +centroid = (0.57251054578130378, -1.5724882315184874) +station = ('khks', 0.0083746723394703924) +zone = ('msz043', 0.0030708810247493143) + +[39180] +centroid = (0.56252162504641212, -1.5857699427800689) +station = ('ktvr', 0.0032684893417929779) +zone = ('msz047', 0.0022232039960675535) + +[39183] +centroid = (0.56630864045738949, -1.5848736987558774) +station = ('ktvr', 0.0037187210360119694) +zone = ('msz047', 0.0017031646623167074) + +[39189] +centroid = (0.56911701485018851, -1.5603269518235161) +station = ('knmm', 0.0087156828787270865) +zone = ('msz044', 0.0031247642089920554) + +[39191] +centroid = (0.55346675216731045, -1.5782023522230542) +station = ('k1r7', 0.0019437752720522844) +zone = ('msz054', 0.0027795170884865219) + +[39192] +centroid = (0.57916375834319855, -1.5666465272455998) +station = ('kgwo', 0.0072392468735115612) +zone = ('msz037', 0.0031381582906342687) + +[39193] +centroid = (0.56259773885509168, -1.5721810012102588) +station = ('kjan', 0.0014880739040180817) +zone = ('msz049', 0.0020392160035155081) + +[39194] +centroid = (0.57297229008821127, -1.5797495691516548) +station = ('kjvw', 0.0092761202351179448) +zone = ('msz042', 0.0019069164553297672) + +[39201] +centroid = (0.56356081153634219, -1.5740112407303628) +station = ('khks', 0.00090025515517360604) +zone = ('msz048', 0.0038354340098916461) + +[39202] +centroid = (0.56393530683394255, -1.5737805256565414) +station = ('khks', 0.00077743966776295343) +zone = ('msz049', 0.0034237276305910231) + +[39203] +centroid = (0.56389640344491565, -1.574292884511757) +station = ('khks', 0.00048999207636536354) +zone = ('msz048', 0.0036509570194575782) + +[39204] +centroid = (0.56336790029411921, -1.5744048473832726) +station = ('khks', 0.00096635439465635198) +zone = ('msz048', 0.0034880735162896434) + +[39206] +centroid = (0.56500505403907497, -1.5738062343564234) +station = ('khks', 0.00094336851876350859) +zone = ('msz049', 0.0038417669693066336) + +[39208] +centroid = (0.56303925479596872, -1.5723948564035057) +station = ('kjan', 0.0010667607524594246) +zone = ('msz049', 0.0021544696130105655) + +[39209] +centroid = (0.56540852180225842, -1.5759135099886963) +station = ('khks', 0.0015655125928499595) +zone = ('msz048', 0.0031490570800277499) + +[39211] +centroid = (0.56500032419680213, -1.5729361877243042) +station = ('kjan', 0.0011309783231629961) +zone = ('msz049', 0.0032192652881171983) + +[39212] +centroid = (0.56275106602987934, -1.5756893748061551) +station = ('khks', 0.0018314678949301879) +zone = ('msz048', 0.0024309276699464653) + +[39213] +centroid = (0.56536026344844093, -1.5749256012721902) +station = ('khks', 0.0010779266413516997) +zone = ('msz048', 0.003752334045593231) + +[39216] +centroid = (0.56433233433218621, -1.573581017069746) +station = ('khks', 0.00084234254234364866) +zone = ('msz049', 0.0033816862021929343) + +[39217] +centroid = (0.56372618148296871, -1.574470157603882) +station = ('khks', 0.00060384445946069494) +zone = ('msz048', 0.0034727125552537963) + +[39218] +centroid = (0.56252665159465798, -1.573583669970209) +station = ('kjan', 0.0019752680591681531) +zone = ('msz049', 0.0032132179525275746) + +[39232] +centroid = (0.56427651870270745, -1.5723984168751797) +station = ('kjan', 0.00028442866233583508) +zone = ('msz049', 0.0024484740593336911) + +[39269] +centroid = (0.563760704095573, -1.5740930792189887) +station = ('khks', 0.00069582420794223141) +zone = ('msz048', 0.0037928681129835063) + +[39272] +centroid = (0.56183213272541188, -1.5753049834916959) +station = ('khks', 0.0025657531278420569) +zone = ('msz048', 0.0030287911368073392) + +[39301] +centroid = (0.56328141922968289, -1.546018986961762) +station = ('kmei', 0.0027106471505146798) +zone = ('msz052', 0.002582714217962872) + +[39305] +centroid = (0.56658674122040231, -1.5483639764381563) +station = ('kmei', 0.0023225518682711802) +zone = ('msz052', 0.001280682292553555) + +[39307] +centroid = (0.5644034390459125, -1.5498301402762942) +station = ('kmei', 0.00072302703595098872) +zone = ('msz052', 0.0023169407563307346) + +[39309] +centroid = (0.56808662481968863, -1.5466333428584638) +station = ('kmei', 0.0042526599660407689) +zone = ('msz052', 0.0026181581709618634) + +[39320] +centroid = (0.56844213093502738, -1.5488778362765285) +station = ('kmei', 0.0041199031205359287) +zone = ('msz052', 0.0031206726723539127) + +[39322] +centroid = (0.55039776521060368, -1.5446808953841356) +station = ('kpib', 0.012404236463576549) +zone = ('msz067', 0.0033965816325562791) + +[39323] +centroid = (0.56465330038162809, -1.5520119763742124) +station = ('kmei', 0.0025830360933353637) +zone = ('msz051', 0.0029945905503451354) + +[39325] +centroid = (0.56831452991341413, -1.551212545763629) +station = ('kmei', 0.0044138074006869346) +zone = ('msz052', 0.0041986339454291423) + +[39326] +centroid = (0.56902522798482613, -1.5473419814413587) +station = ('kmei', 0.0049009148008507643) +zone = ('msz046', 0.002659489465585366) + +[39327] +centroid = (0.56629762742980938, -1.5554207265764051) +station = ('kmei', 0.0057862467967156441) +zone = ('msz051', 0.00080746706138528799) + +[39328] +centroid = (0.57148204070639608, -1.54808280389566) +station = ('knmm', 0.004580760644430637) +zone = ('msz046', 0.00086468521780627336) + +[39330] +centroid = (0.5616608635659136, -1.5506097439465751) +station = ('kmei', 0.0029979619027977358) +zone = ('msz058', 0.0033319341370401899) + +[39332] +centroid = (0.56378540050448878, -1.5532865379670662) +station = ('kmei', 0.0036791823086643779) +zone = ('msz051', 0.0024786818841596504) + +[39335] +centroid = (0.56781033919909796, -1.544460879178629) +station = ('kmei', 0.0051678814214821981) +zone = ('msz052', 0.0033814773241043535) + +[39336] +centroid = (0.56375183782297289, -1.5579192875736825) +station = ('kmei', 0.0075764295548454066) +zone = ('msz051', 0.002737197147336039) + +[39337] +centroid = (0.56746858627826491, -1.5529931481198058) +station = ('kmei', 0.0046228706887450005) +zone = ('msz051', 0.0028452322581990546) + +[39338] +centroid = (0.56036905812005011, -1.5573736103830464) +station = ('kmei', 0.0081279019573082048) +zone = ('msz057', 0.0022567405368411693) + +[39339] +centroid = (0.57773723093237361, -1.5535465920256133) +station = ('knmm', 0.0034302653823767423) +zone = ('msz038', 0.00040652680525981482) + +[39341] +centroid = (0.57767862277609161, -1.5457751993718434) +station = ('kgtr', 0.0061389895085708452) +zone = ('msz039', 0.00020769225786982284) + +[39342] +centroid = (0.56591421349973126, -1.547205374520805) +station = ('kmei', 0.0021856302413631673) +zone = ('msz052', 0.00041037037946540193) + +[39345] +centroid = (0.56359803940928721, -1.5554705731798419) +station = ('kmei', 0.0055334267278929518) +zone = ('msz051', 0.0018926805851074834) + +[39346] +centroid = (0.57534829406541388, -1.5550101029632883) +station = ('knmm', 0.0025210527566589982) +zone = ('msz038', 0.0023331787200008619) + +[39347] +centroid = (0.55956028999796836, -1.5523308131219666) +station = ('kmei', 0.0055431208552501133) +zone = ('msz057', 0.0027133660658886574) + +[39348] +centroid = (0.55874312684218463, -1.5537618260289694) +station = ('kmei', 0.0068935284372247611) +zone = ('msz057', 0.0014062330433175718) + +[39350] +centroid = (0.57240636707825221, -1.5555289020834435) +station = ('knmm', 0.0035096144536788812) +zone = ('msz045', 0.00075828683801803577) + +[39352] +centroid = (0.57044418066669755, -1.5442968880421117) +station = ('kmei', 0.0072843924283839609) +zone = ('msz046', 0.0026461725509219058) + +[39354] +centroid = (0.57376845693309353, -1.5504357171668586) +station = ('knmm', 0.0016386381766026734) +zone = ('msz046', 0.0035114076809020117) + +[39355] +centroid = (0.55946059679109439, -1.5467919234743002) +station = ('kmei', 0.0052030655805325897) +zone = ('msz058', 0.0009857443571521878) + +[39356] +centroid = (0.56084780193387207, -1.553726535471494) +station = ('kmei', 0.0053103640306812906) +zone = ('msz057', 0.0024671688805428279) + +[39358] +centroid = (0.57369696824693195, -1.5441122671138354) +station = ('knmm', 0.0068218115933588955) +zone = ('msz046', 0.0032109735294573766) + +[39359] +centroid = (0.56841575901002972, -1.5591649465141235) +station = ('knmm', 0.0084611575573014398) +zone = ('msz050', 0.0041182521567786267) + +[39360] +centroid = (0.55614591983558437, -1.5490498210210202) +station = ('kmei', 0.008177420657554859) +zone = ('msz058', 0.0032271386423436757) + +[39361] +centroid = (0.57587990390227883, -1.5462991646665847) +station = ('knmm', 0.0051222908849626013) +zone = ('msz039', 0.0020378980179797642) + +[39362] +centroid = (0.54787560736183916, -1.5453342244830344) +station = ('kpib', 0.011871792871799373) +zone = ('msz076', 0.0034141488253805565) + +[39363] +centroid = (0.56071588994900634, -1.5492450011912704) +station = ('kmei', 0.0036142086607424354) +zone = ('msz058', 0.0018629168291529501) + +[39364] +centroid = (0.56557884848396067, -1.5443828106011872) +station = ('kmei', 0.0040806241784471925) +zone = ('msz052', 0.0025932572985732584) + +[39365] +centroid = (0.56902435532020013, -1.5555444704203711) +station = ('knmm', 0.0061673685527076621) +zone = ('msz045', 0.0026350446769370412) + +[39366] +centroid = (0.55752479975782998, -1.5519152327737744) +station = ('kmei', 0.0072384973903052915) +zone = ('msz057', 0.0032475025466795595) + +[39367] +centroid = (0.55286574803938626, -1.5475111911123394) +station = ('kpib', 0.010581636057740909) +zone = ('msz067', 0.00077087407263217301) + +[39401] +centroid = (0.54513804097679353, -1.557983690223081) +station = ('khbg', 0.00061571795531622619) +zone = ('msz074', 0.00079800889092950281) + +[39402] +centroid = (0.54689689653049078, -1.5606009510627865) +station = ('kpib', 0.0026079117132178477) +zone = ('msz073', 0.0026432014610659749) + +[39406] +centroid = (0.54678461949971002, -1.5591833248311469) +station = ('khbg', 0.0016599889142201105) +zone = ('msz074', 0.0026912066260752904) + +[39421] +centroid = (0.5496454061299465, -1.5659310993319149) +station = ('kpib', 0.0057912822357349741) +zone = ('msz064', 0.0020270162986066303) + +[39422] +centroid = (0.55779523852542656, -1.5578408873836826) +station = ('kpib', 0.0086713044253563451) +zone = ('msz057', 0.0023058662404320321) + +[39423] +centroid = (0.54402776722642987, -1.551861581352568) +station = ('khbg', 0.0052727296767766524) +zone = ('msz075', 0.0011529189443290006) + +[39425] +centroid = (0.54209540849179183, -1.5547488097209721) +station = ('khbg', 0.0044094372781352861) +zone = ('msz075', 0.0023625592337958171) + +[39426] +centroid = (0.53503417285736576, -1.564884233393276) +station = ('kasd', 0.0058168323634461196) +zone = ('msz077', 0.0022510235208497266) + +[39427] +centroid = (0.54943191745584252, -1.567559474070733) +station = ('kpib', 0.0071669321723604349) +zone = ('msz064', 0.0015666078499986435) + +[39428] +centroid = (0.55240382919955344, -1.5633619048598091) +station = ('kpib', 0.0048061420888350559) +zone = ('msz065', 0.00043781324573573309) + +[39429] +centroid = (0.5452579101898205, -1.5665487888074883) +station = ('kpib', 0.0074377983569614533) +zone = ('msz072', 0.00099738645391260288) + +[39437] +centroid = (0.55117368623616281, -1.5571578178743297) +station = ('kpib', 0.0026120361060126733) +zone = ('msz066', 0.0010498186277852395) + +[39439] +centroid = (0.55587295034057249, -1.5535871011175522) +station = ('kpib', 0.008190082744379535) +zone = ('msz057', 0.0033475502816958189) + +[39440] +centroid = (0.55315089993257704, -1.5559129443320523) +station = ('kpib', 0.0048259113041091871) +zone = ('msz066', 0.0012733354592743462) + +[39443] +centroid = (0.55357518947373685, -1.5546632187744545) +station = ('kpib', 0.0058177192908008208) +zone = ('msz066', 0.0021586058980928059) + +[39451] +centroid = (0.54414479155277606, -1.5467397730362504) +station = ('khbg', 0.0095073404586224521) +zone = ('msz076', 0.00069684059071813533) + +[39452] +centroid = (0.53889660394532168, -1.5464091553160451) +station = ('kmob', 0.0064842286022286826) +zone = ('msz079', 0.00066432624713476883) + +[39455] +centroid = (0.54125920379386883, -1.5613507270561509) +station = ('khbg', 0.0054319652682508516) +zone = ('msz073', 0.0034675971425766352) + +[39456] +centroid = (0.54210048739991512, -1.5502660711635647) +station = ('khbg', 0.0073167900649476541) +zone = ('msz075', 0.003188971376562618) + +[39459] +centroid = (0.5496004464484151, -1.5586588708442151) +station = ('kpib', 0.00058826631228843832) +zone = ('msz066', 0.0030742316579107868) + +[39461] +centroid = (0.54432801621765048, -1.5488415857879647) +station = ('khbg', 0.0077046997415834168) +zone = ('msz076', 0.0016040972674666782) + +[39462] +centroid = (0.54516003212536868, -1.5543252008582207) +station = ('khbg', 0.0029417204137972539) +zone = ('msz075', 0.0014599473234771616) + +[39464] +centroid = (0.54963901822488415, -1.5548080636490773) +station = ('kpib', 0.0037383669417238598) +zone = ('msz066', 0.0026055276983028238) + +[39465] +centroid = (0.54697878737899441, -1.556626818902703) +station = ('khbg', 0.0015716490259076181) +zone = ('msz074', 0.0028282000980669802) + +[39466] +centroid = (0.53268344124773215, -1.5635695117743336) +station = ('khsa', 0.0033172432102091952) +zone = ('msz080', 0.0023326828641535026) + +[39470] +centroid = (0.53796927560715202, -1.5632705543267595) +station = ('khsa', 0.0081341811041416162) +zone = ('msz077', 0.0010063894005291941) + +[39474] +centroid = (0.55175877296130882, -1.568270032515805) +station = ('kpib', 0.0081753179168152536) +zone = ('msz064', 0.00090312329901453485) + +[39475] +centroid = (0.54371489950471741, -1.5606778153630445) +station = ('khbg', 0.0032286849598204283) +zone = ('msz073', 0.001615766268678159) + +[39476] +centroid = (0.54795320470038289, -1.551184795028522) +station = ('khbg', 0.0060066522350062405) +zone = ('msz075', 0.0042639661169692972) + +[39477] +centroid = (0.5548100099195229, -1.5539329904687122) +station = ('kpib', 0.0071638662285971747) +zone = ('msz066', 0.003518384553751685) + +[39478] +centroid = (0.54199763514709509, -1.5682971898389659) +station = ('khbg', 0.0097922476309858196) +zone = ('msz072', 0.0031252137644494698) + +[39479] +centroid = (0.55032238444021009, -1.5614129131373995) +station = ('kpib', 0.0022257694159642364) +zone = ('msz065', 0.0022298304147161541) + +[39480] +centroid = (0.55347026027910706, -1.5588424445749398) +station = ('kpib', 0.0042819181745593904) +zone = ('msz066', 0.0026703075594883227) + +[39481] +centroid = (0.5562092752874318, -1.5574998500478432) +station = ('kpib', 0.0071534086946297643) +zone = ('msz057', 0.0031684938126624639) + +[39482] +centroid = (0.54754507690809651, -1.5634511784510485) +station = ('kpib', 0.0040166861847218309) +zone = ('msz073', 0.0030839235712433939) + +[39483] +centroid = (0.54528927375647884, -1.5696155766493374) +station = ('kmcb', 0.0080428817009489464) +zone = ('msz072', 0.0016540223186050375) + +[39501] +centroid = (0.53028279322149141, -1.5551307052146008) +station = ('kgpt', 0.00065465451117826937) +zone = ('msz081', 0.0023131455033629077) + +[39503] +centroid = (0.53188231766777416, -1.5560112587288173) +station = ('kgpt', 0.0014552617506469042) +zone = ('msz081', 0.00087405306604428719) + +[39507] +centroid = (0.53058853999985578, -1.5539445794549456) +station = ('kgpt', 0.00078793123807526498) +zone = ('msz081', 0.0023596154405611585) + +[39520] +centroid = (0.52830540499215195, -1.5617232850382816) +station = ('khsa', 0.0017546465728420105) +zone = ('msz080', 0.0025641554573416353) + +[39525] +centroid = (0.53026474651702582, -1.5598144358886679) +station = ('khsa', 0.0012878224929364884) +zone = ('msz080', 0.0018742556581693242) + +[39530] +centroid = (0.53075158865857708, -1.5512539449734861) +station = ('kbix', 0.00056018930956302896) +zone = ('msz081', 0.0040206295693362469) + +[39531] +centroid = (0.53064966143026071, -1.5527528162818063) +station = ('kbix', 0.00077749093494337233) +zone = ('msz081', 0.0029951805637471966) + +[39532] +centroid = (0.53220473234049515, -1.5527202658912569) +station = ('kbix', 0.0015142243317049285) +zone = ('msz081', 0.0023448557789247839) + +[39534] +centroid = (0.53071015454213477, -1.5520273003650449) +station = ('kbix', 0.00020043582032436093) +zone = ('msz081', 0.0034629646096910826) + +[39540] +centroid = (0.53133168374206252, -1.5515456069447868) +station = ('kbix', 0.00054745707068889018) +zone = ('msz081', 0.0035547533507433006) + +[39553] +centroid = (0.53075930301387098, -1.5471342698070789) +station = ('kpql', 0.0019378739908536048) +zone = ('msz082', 0.0023738939328457088) + +[39556] +centroid = (0.53130450896560899, -1.5610206154814288) +station = ('khsa', 0.0013060183061276557) +zone = ('msz080', 0.00085528125428850188) + +[39560] +centroid = (0.530161597558233, -1.5563529941963579) +station = ('kgpt', 0.0015176958624394336) +zone = ('msz081', 0.002556020904330894) + +[39561] +centroid = (0.53585999284623931, -1.5560462525803196) +station = ('kgpt', 0.0051035826562286233) +zone = ('msz078', 0.0016255632495336435) + +[39562] +centroid = (0.53314017645968648, -1.5444322906854813) +station = ('kpql', 0.0015445730361443185) +zone = ('msz082', 0.0022043023258925404) + +[39563] +centroid = (0.53094488387323557, -1.5450031006173461) +station = ('kpql', 0.00081627268482412378) +zone = ('msz082', 0.0027770320575395218) + +[39564] +centroid = (0.53067133841957048, -1.5491322878281768) +station = ('kbix', 0.0023854532215700874) +zone = ('msz082', 0.003073814175768888) + +[39565] +centroid = (0.53372517591836999, -1.5488258254648193) +station = ('kpql', 0.0037002346605304777) +zone = ('msz082', 0.0016876635308662698) + +[39567] +centroid = (0.52997701153654209, -1.5453165268444191) +station = ('kpql', 0.0017695802109924841) +zone = ('msz082', 0.0034679801095623469) + +[39571] +centroid = (0.53093031037398131, -1.558143440209516) +station = ('kgpt', 0.002886007113137599) +zone = ('msz081', 0.0028810993357820717) + +[39572] +centroid = (0.52797948220763458, -1.5638452737961488) +station = ('khsa', 0.003010171134122528) +zone = ('msz080', 0.0033515922613395529) + +[39573] +centroid = (0.53632948641502587, -1.555045882212954) +station = ('kgpt', 0.0054626939439259775) +zone = ('msz078', 0.0010996633110566549) + +[39574] +centroid = (0.53427753772004105, -1.5549126961377344) +station = ('kgpt', 0.0034080027998920097) +zone = ('msz081', 0.001746258922280509) + +[39576] +centroid = (0.52866192339845686, -1.5600327067649224) +station = ('khsa', 0.0017309382217503189) +zone = ('msz080', 0.0027165731563520814) + +[39577] +centroid = (0.53938927548657467, -1.5548525346384181) +station = ('khbg', 0.0067733037896770334) +zone = ('msz078', 0.0020562913888911047) + +[39581] +centroid = (0.52984372074156727, -1.5444382073516454) +station = ('kpql', 0.0020097888548524494) +zone = ('msz082', 0.0039554459339269437) + +[39601] +centroid = (0.55088216389120215, -1.5790109109056258) +station = ('k1r7', 0.00098964140200859252) +zone = ('msz062', 0.00059229611026472505) + +[39629] +centroid = (0.54867282140427265, -1.5787698634826328) +station = ('k1r7', 0.0029034581422586248) +zone = ('msz062', 0.001671917852621473) + +[39630] +centroid = (0.54906847009240722, -1.5855504676266305) +station = ('kmcb', 0.0074214491393844) +zone = ('msz061', 0.00084093699765043863) + +[39631] +centroid = (0.54222430105705155, -1.5905932823410029) +station = ('khzr', 0.0079797566643728078) +zone = ('msz068', 0.0031059784860165596) + +[39633] +centroid = (0.54612589733342232, -1.5914252982487209) +station = ('khez', 0.005954339058471955) +zone = ('msz068', 0.0029713231623697844) + +[39635] +centroid = (0.5443931344520424, -1.5788847061474141) +station = ('kmcb', 0.00014933188128579304) +zone = ('msz070', 0.00093025942823025411) + +[39638] +centroid = (0.54497912874839949, -1.5881784796945286) +station = ('kmcb', 0.0079342892683458045) +zone = ('msz069', 0.0029911302703594686) + +[39641] +centroid = (0.5472514601680335, -1.5738481571650564) +station = ('kmcb', 0.0052865998160719994) +zone = ('msz063', 0.0035502018080365355) + +[39643] +centroid = (0.54535515993574168, -1.571045175839646) +station = ('kmcb', 0.0068424410422906696) +zone = ('msz071', 0.0021928270085424663) + +[39645] +centroid = (0.54364885624582193, -1.5847396051094467) +station = ('kmcb', 0.0049980342056701503) +zone = ('msz069', 0.00045484673247025173) + +[39647] +centroid = (0.55023143533288865, -1.5834097165793046) +station = ('k1r7', 0.0046833776936613955) +zone = ('msz061', 0.0027411085388059564) + +[39648] +centroid = (0.54435674433713832, -1.5775036620168958) +station = ('kmcb', 0.0012342595529049451) +zone = ('msz070', 0.00038965048874726549) + +[39652] +centroid = (0.54303579189276641, -1.5790935522457077) +station = ('kmcb', 0.0012230170897463025) +zone = ('msz070', 0.001507812408998326) + +[39653] +centroid = (0.54946146588007883, -1.5858843142059522) +station = ('k1r7', 0.0069258008900404009) +zone = ('msz061', 0.0005025060684139595) + +[39654] +centroid = (0.55056313515723021, -1.5731818602698149) +station = ('k1r7', 0.0043211002615681044) +zone = ('msz063', 0.00045089950148436049) + +[39656] +centroid = (0.54879960212113754, -1.5696059773384514) +station = ('k1r7', 0.0077575502016963387) +zone = ('msz064', 0.0027265391536689565) + +[39657] +centroid = (0.54175585468581633, -1.5796323702923833) +station = ('kmcb', 0.0025651723129573195) +zone = ('msz070', 0.002800575627330285) + +[39661] +centroid = (0.54950726331965116, -1.5897064107348944) +station = ('khez', 0.0039619779480117518) +zone = ('msz061', 0.0027664549064429713) + +[39662] +centroid = (0.54779553165575767, -1.5757773917603333) +station = ('k1r7', 0.0042325969450479305) +zone = ('msz062', 0.0035772483113318907) + +[39663] +centroid = (0.55143403700068283, -1.5714656605630364) +station = ('k1r7', 0.0056742630045520191) +zone = ('msz063', 0.0012841968587913146) + +[39664] +centroid = (0.54674131788096814, -1.582562516307094) +station = ('kmcb', 0.0039725563511933681) +zone = ('msz069', 0.003283409338874034) + +[39665] +centroid = (0.55227121908298693, -1.5744471367110482) +station = ('k1r7', 0.0032211261186586649) +zone = ('msz063', 0.0022180594256500132) + +[39666] +centroid = (0.54620019599967973, -1.5792214848798787) +station = ('kmcb', 0.001963040758933169) +zone = ('msz070', 0.0024009598845010044) + +[39667] +centroid = (0.5432334678838473, -1.5729961397841103) +station = ('kmcb', 0.0051885693003946888) +zone = ('msz071', 0.00050712249562055993) + +[39668] +centroid = (0.55345303387938982, -1.5849220967360351) +station = ('k1r7', 0.0060975376897092377) +zone = ('msz059', 0.0034063509532312932) + +[39669] +centroid = (0.54320175525133851, -1.5951029338754761) +station = ('khzr', 0.0071825491563999528) +zone = ('msz068', 0.0013884759598987593) + +[39701] +centroid = (0.58283408104038747, -1.5446987501023832) +station = ('kgtr', 0.001506327192870688) +zone = ('msz031', 0.0016431088352167169) + +[39702] +centroid = (0.58363349419767863, -1.5419061185794372) +station = ('kgtr', 0.0034797167496160974) +zone = ('msz031', 0.0015478622853992365) + +[39705] +centroid = (0.58614556404336648, -1.5435066727699787) +station = ('kcbm', 0.0011744386403669074) +zone = ('msz031', 0.0019358400725120056) + +[39730] +centroid = (0.59068343755184427, -1.5457560880165337) +station = ('km40', 0.0012154320923389334) +zone = ('msz024', 0.00149473402841213) + +[39735] +centroid = (0.58212315607617271, -1.5566207626101987) +station = ('kstf', 0.0052424825131941553) +zone = ('msz032', 0.00088947909509092731) + +[39736] +centroid = (0.58349697454358751, -1.5472748211717418) +station = ('kgtr', 0.0010530981093451761) +zone = ('msz031', 0.0031266460087339917) + +[39737] +centroid = (0.5876622377100571, -1.5591082582200186) +station = ('kstf', 0.0082761423559927581) +zone = ('msz029', 0.0012014471913850044) + +[39739] +centroid = (0.58014365599843831, -1.5459056278268448) +station = ('kgtr', 0.0036715733414910473) +zone = ('msz039', 0.002264175353848233) + +[39740] +centroid = (0.58856774943257673, -1.5412188253732944) +station = ('kcbm', 0.0024520969926516249) +zone = ('alz012', 0.003182791158077538) + +[39741] +centroid = (0.58730297913682661, -1.5510093545321118) +station = ('kstf', 0.0038584112818268678) +zone = ('msz030', 0.001235890809166359) + +[39743] +centroid = (0.58165467479835242, -1.5466035326348397) +station = ('kgtr', 0.002203321713340966) +zone = ('msz031', 0.0035661520644152929) + +[39744] +centroid = (0.58608051562214469, -1.5587059249208488) +station = ('kstf', 0.007286446547313483) +zone = ('msz029', 0.00066458415239192673) + +[39745] +centroid = (0.58113435724174789, -1.5612184310988497) +station = ('kstf', 0.0092092587019108121) +zone = ('msz032', 0.0030878023931898845) + +[39746] +centroid = (0.58908761320357583, -1.5431400838138898) +station = ('kcbm', 0.0018536440031129877) +zone = ('msz024', 0.0026199256936683948) + +[39747] +centroid = (0.58310122113569784, -1.5630218100017654) +station = ('kgwo', 0.0078611740021484466) +zone = ('msz028', 0.0017334349807111688) + +[39750] +centroid = (0.5858887912038131, -1.5541244530876561) +station = ('kstf', 0.0038423641578432715) +zone = ('msz033', 0.0034803518197755435) + +[39751] +centroid = (0.5880939449005379, -1.5549708505084108) +station = ('kstf', 0.0059167297445043713) +zone = ('msz029', 0.0031306853459522992) + +[39752] +centroid = (0.58507986600209871, -1.5559740832157496) +station = ('kstf', 0.0048039448475870666) +zone = ('msz029', 0.0025089709035737077) + +[39755] +centroid = (0.58659467216648975, -1.5526015136889511) +station = ('kstf', 0.0035675780615828066) +zone = ('msz030', 0.0026824073262549071) + +[39756] +centroid = (0.58916585631394269, -1.5488241150421522) +station = ('km40', 0.004178981357341763) +zone = ('msz030', 0.0018581655033498787) + +[39759] +centroid = (0.58360195609809495, -1.5502916053305213) +station = ('kstf', 0.00025657875749345878) +zone = ('msz033', 0.00082014613854535325) + +[39760] +centroid = (0.58406106495783205, -1.5481967738958153) +station = ('kgtr', 0.0017909866000416941) +zone = ('msz033', 0.0026271500522720053) + +[39762] +centroid = (0.58386113749201618, -1.5497689490327193) +station = ('kstf', 0.00076379860350368528) +zone = ('msz033', 0.0013170541230763005) + +[39766] +centroid = (0.58621607534514708, -1.5413364082050012) +station = ('kcbm', 0.0022805098186718421) +zone = ('msz031', 0.0027677188849204396) + +[39767] +centroid = (0.58425785083099446, -1.5611745884280397) +station = ('kstf', 0.0088996048548416161) +zone = ('msz028', 0.0024623963089783511) + +[39769] +centroid = (0.58157732180590394, -1.553654366106924) +station = ('kstf', 0.0032056530508788985) +zone = ('msz033', 0.002704371565886674) + +[39771] +centroid = (0.58653957212200425, -1.5581478384392311) +station = ('kstf', 0.007041375352091029) +zone = ('msz029', 0.00018279828233288084) + +[39772] +centroid = (0.58110950375319947, -1.5586574396742283) +station = ('kstf', 0.0071685095035409607) +zone = ('msz032', 0.0012241571134562234) + +[39773] +centroid = (0.58726273184427547, -1.5479383080868874) +station = ('kgtr', 0.0037849040396223041) +zone = ('msz030', 0.0013319171791076035) + +[39776] +centroid = (0.58957468223792986, -1.5540494388364055) +station = ('kstf', 0.0067703756879676147) +zone = ('msz023', 0.0027977477565429214) + +[39813] +centroid = (0.54843753356781122, -1.4780199470130966) +station = ('kbij', 0.0030904556163382137) +zone = ('gaz123', 0.0020512013628454237) + +[39815] +centroid = (0.53649414077665891, -1.4746408674081879) +station = ('k2j9', 0.0025817334204954103) +zone = ('gaz156', 0.0027719946242150675) + +[39817] +centroid = (0.54006639342317841, -1.4765835061321202) +station = ('kbge', 0.00061889700492656521) +zone = ('gaz156', 0.0011720646277565436) + +[39819] +centroid = (0.53736211046696825, -1.4771431634100647) +station = ('kbge', 0.0031082007693127626) +zone = ('gaz156', 0.0018695671647915354) + +[39823] +centroid = (0.54692066791490301, -1.4825885557697021) +station = ('kbij', 0.0013914912489921606) +zone = ('gaz142', 0.00067320745360836376) + +[39824] +centroid = (0.54969429280229487, -1.4822211814154496) +station = ('kbij', 0.0017408275383381973) +zone = ('gaz121', 0.0024335941122477665) + +[39825] +centroid = (0.53947849671793657, -1.4790072099577798) +station = ('kbge', 0.0018908363667213975) +zone = ('gaz155', 0.0020184628374510529) + +[39826] +centroid = (0.55537483337205329, -1.4721657985426424) +station = ('kaby', 0.0054803350269781274) +zone = ('gaz124', 0.0015119172347601113) + +[39827] +centroid = (0.54019418643100936, -1.4697289174811303) +station = ('ktvi', 0.004983407151682797) +zone = ('gaz157', 0.0013812860014807574) + +[39828] +centroid = (0.53770707479362501, -1.4699876450894458) +station = ('ktvi', 0.0053868234908600737) +zone = ('gaz157', 0.0011683597545980127) + +[39834] +centroid = (0.53931321403777277, -1.4735632138615442) +station = ('kbge', 0.0032712122718299443) +zone = ('gaz156', 0.0021676510817187477) + +[39836] +centroid = (0.55267566423055159, -1.4812355765335561) +station = ('kbij', 0.0046532358245997413) +zone = ('gaz121', 0.0017984204038064449) + +[39837] +centroid = (0.54370678372369563, -1.4779047727357575) +station = ('kbge', 0.0033037863389498729) +zone = ('gaz143', 0.00081827285141112844) + +[39840] +centroid = (0.55468125698060333, -1.4794229997454824) +station = ('keuf', 0.0062038891192004843) +zone = ('gaz122', 0.00035525068833115514) + +[39841] +centroid = (0.54616354408538792, -1.478032844996269) +station = ('kbij', 0.003581826767186116) +zone = ('gaz143', 0.0023500860795620123) + +[39842] +centroid = (0.55433313360800052, -1.4737119508203991) +station = ('kaby', 0.0053133164326624564) +zone = ('gaz124', 0.00027683339014574832) + +[39845] +centroid = (0.54020502492566425, -1.4816595519154503) +station = ('kbge', 0.0038930190669393553) +zone = ('gaz155', 0.00037493654399903237) + +[39846] +centroid = (0.55088047092182779, -1.4790987350237543) +station = ('kbij', 0.0035626487331232738) +zone = ('gaz123', 0.0018976967559232729) + +[39851] +centroid = (0.55187015987417121, -1.4834004131245597) +station = ('kbij', 0.0041292584627669205) +zone = ('gaz121', 0.00021556468420648624) + +[39854] +centroid = (0.55622292376218241, -1.4844475757691713) +station = ('keuf', 0.0018544420657532164) +zone = ('gaz120', 0.00050173036793400242) + +[39859] +centroid = (0.54083655486220594, -1.4802616828109432) +station = ('kbge', 0.0027096094750043375) +zone = ('gaz155', 0.0010783075624694787) + +[39861] +centroid = (0.54341618640323852, -1.4833061129850744) +station = ('kbij', 0.0048394524570586238) +zone = ('gaz142', 0.003500750975523742) + +[39862] +centroid = (0.54906960455642106, -1.4751065736124975) +station = ('kaby', 0.0048964747238036867) +zone = ('gaz123', 0.0020114056426591815) + +[39866] +centroid = (0.55081603336584406, -1.4764496044719071) +station = ('kbij', 0.0052068376645366564) +zone = ('gaz123', 0.00069655938970035144) + +[39867] +centroid = (0.55551065489444351, -1.4822713596314445) +station = ('keuf', 0.0037081106451870493) +zone = ('gaz120', 0.0015097705057532337) + +[39870] +centroid = (0.54667251700185449, -1.4733046258795686) +station = ('kaby', 0.0048756111114414335) +zone = ('gaz144', 0.0004614541526760584) + +[39877] +centroid = (0.55702460584750091, -1.4750052572494194) +station = ('kacj', 0.0057294114572895129) +zone = ('gaz103', 0.0023671578978650292) + +[39885] +centroid = (0.55357349650436249, -1.4722037769071656) +station = ('kaby', 0.0039196232223291296) +zone = ('gaz124', 0.0016410829216144767) + +[39886] +centroid = (0.55406761666889459, -1.4769240547757694) +station = ('kbij', 0.0072353559914804166) +zone = ('gaz122', 0.0019910241815957429) + +[39897] +centroid = (0.53950230300893376, -1.471832894441117) +station = ('kbge', 0.0046456527406429559) +zone = ('gaz157', 0.0015646161149621455) + +[40003] +centroid = (0.66805424981189576, -1.4842947023799891) +station = ('kfft', 0.0025579079880795803) +zone = ('kyz035', 0.0023785406248589499) + +[40004] +centroid = (0.65979009835041014, -1.4916623131113103) +station = ('ksdf', 0.0075858877964880946) +zone = ('kyz045', 3.3541285854122216e-05) + +[40006] +centroid = (0.67365541280727359, -1.4893521604067854) +station = ('klou', 0.0078210320171901646) +zone = ('kyz032', 0.0002735445676116168) + +[40007] +centroid = (0.67122474511789865, -1.4835150288965382) +station = ('kfft', 0.0049881739099697552) +zone = ('kyz033', 0.0016459119104322052) + +[40008] +centroid = (0.66163595856731938, -1.4883295719980421) +station = ('kfft', 0.0070356654204446756) +zone = ('kyz038', 0.0022758978383482596) + +[40009] +centroid = (0.65397881516638479, -1.4854036147735363) +station = ('kdvk', 0.0050474537650342143) +zone = ('kyz054', 0.0026659335871869493) + +[40010] +centroid = (0.66972679883408193, -1.4915497393745565) +station = ('klou', 0.0037352202633028691) +zone = ('kyz031', 0.00049438925663576432) + +[40011] +centroid = (0.67243464226196614, -1.4864985994396525) +station = ('kfft', 0.0070556570639819819) +zone = ('kyz033', 0.0015502126864234947) + +[40012] +centroid = (0.66149446472486018, -1.4868805821997437) +station = ('kfft', 0.0063574054225052582) +zone = ('kyz046', 0.0025843360102326706) + +[40013] +centroid = (0.66208805120346348, -1.4915239434082121) +station = ('ksdf', 0.0057551477355758957) +zone = ('kyz045', 0.0022673800542356241) + +[40014] +centroid = (0.66916375561738872, -1.4910291600185643) +station = ('klou', 0.0037447525068817137) +zone = ('kyz031', 0.0010655459972448986) + +[40019] +centroid = (0.66987120737639194, -1.4863981557412) +station = ('kfft', 0.0049992748714636284) +zone = ('kyz033', 0.0013335954654877873) + +[40020] +centroid = (0.6620868469262795, -1.4902912348108213) +station = ('ksdf', 0.0064357180840275783) +zone = ('kyz038', 0.001891730468871702) + +[40022] +centroid = (0.66590362020100335, -1.4897261844654881) +station = ('ksdf', 0.0052171786175527323) +zone = ('kyz038', 0.0021438917290706812) + +[40023] +centroid = (0.66626443211726816, -1.4910756032299599) +station = ('klou', 0.0033757949629771907) +zone = ('kyz038', 0.002858075643005446) + +[40025] +centroid = (0.66845585007277963, -1.4948516579732347) +station = ('klou', 0.0011842016318530542) +zone = ('kyz030', 0.0019690603507101887) + +[40026] +centroid = (0.67075020754757397, -1.4928261684697102) +station = ('klou', 0.0039099714217482985) +zone = ('kyz031', 0.0012763875389072967) + +[40031] +centroid = (0.67074144599472885, -1.4905239395599894) +station = ('klou', 0.0050116354498280138) +zone = ('kyz031', 0.0008499341258350776) + +[40033] +centroid = (0.65526857857702347, -1.4874665066829309) +station = ('kdvk', 0.0063336471935592177) +zone = ('kyz054', 0.00062679394593606792) + +[40036] +centroid = (0.67048359105103927, -1.4832236636312102) +station = ('kfft', 0.0042129118447636277) +zone = ('kyz033', 0.0019498898944322498) + +[40037] +centroid = (0.65730492402849539, -1.4908197030550325) +station = ('kftk', 0.0086475253117209386) +zone = ('kyz045', 0.0026060835144602135) + +[40040] +centroid = (0.65933378201747617, -1.4847391330207169) +station = ('kdvk', 0.005377582316044933) +zone = ('kyz046', 0.001511833285028895) + +[40041] +centroid = (0.66769150058016125, -1.495121660408518) +station = ('klou', 0.00039544428268782546) +zone = ('kyz030', 0.0012008303809109334) + +[40045] +centroid = (0.67521395692271946, -1.489787113909675) +station = ('klou', 0.0089668952858654692) +zone = ('kyz032', 0.0013216871106964088) + +[40046] +centroid = (0.66364279050113995, -1.4864932761854339) +station = ('kfft', 0.0046334856052578878) +zone = ('kyz039', 0.0024843617015072816) + +[40047] +centroid = (0.66391281038971606, -1.4932206128806609) +station = ('ksdf', 0.0035059720718129488) +zone = ('kyz029', 0.0022823868343251731) + +[40048] +centroid = (0.66055546013399469, -1.4917375368020711) +station = ('ksdf', 0.0068945718831819984) +zone = ('kyz045', 0.00073413310521001842) + +[40049] +centroid = (0.6573525017039048, -1.4904243510728707) +station = ('kftk', 0.008900152594123396) +zone = ('kyz054', 0.0026004334345552278) + +[40050] +centroid = (0.67100991254027065, -1.4867892142134018) +station = ('kfft', 0.0060367055236432337) +zone = ('kyz033', 0.00092832423199437403) + +[40051] +centroid = (0.6575902504546115, -1.4931519865344725) +station = ('kftk', 0.0069246021705899686) +zone = ('kyz045', 0.0025232948848375207) + +[40052] +centroid = (0.65631584594139025, -1.4920460586539463) +station = ('kftk', 0.0083850384573868099) +zone = ('kyz045', 0.0035204482007713638) + +[40055] +centroid = (0.67186802112030619, -1.4892200738889947) +station = ('klou', 0.0065283741938339792) +zone = ('kyz032', 0.0020618166422996416) + +[40056] +centroid = (0.66855873723218473, -1.492063913372194) +station = ('klou', 0.0027422202656895065) +zone = ('kyz031', 0.001730018127929101) + +[40057] +centroid = (0.67010509894945169, -1.4842787500706258) +station = ('kfft', 0.0041685200720614837) +zone = ('kyz033', 0.0014052805462265502) + +[40058] +centroid = (0.67077781865634045, -1.4865050222512997) +station = ('kfft', 0.0057156302867431338) +zone = ('kyz033', 0.00075604450805853566) + +[40059] +centroid = (0.66947527943557705, -1.4938905226074539) +station = ('klou', 0.0023965799111782577) +zone = ('kyz031', 0.0021129050745478757) + +[40060] +centroid = (0.65523730227682786, -1.4916677585385765) +station = ('kftk', 0.0093108703537392624) +zone = ('kyz054', 0.002727224183951037) + +[40062] +centroid = (0.6563390064605642, -1.4912357197355379) +station = ('kftk', 0.0088851044734858074) +zone = ('kyz054', 0.0025511960754218553) + +[40063] +centroid = (0.6557440586251444, -1.4894545065141225) +station = ('kdvk', 0.007878489021421695) +zone = ('kyz054', 0.0010210378234057314) + +[40065] +centroid = (0.66700375358841302, -1.4871414391097471) +station = ('kfft', 0.0042493752925006649) +zone = ('kyz034', 0.00016722185554729805) + +[40067] +centroid = (0.66710866532975033, -1.4899554334627374) +station = ('ksdf', 0.0050549246266003286) +zone = ('kyz034', 0.0023802681791721104) + +[40068] +centroid = (0.670128503814721, -1.4883153126580533) +station = ('kfft', 0.0063239219321883722) +zone = ('kyz031', 0.0023853578787045317) + +[40069] +centroid = (0.65837962796870353, -1.4871798014467057) +station = ('kdvk', 0.006557148817206703) +zone = ('kyz046', 0.00072042125763758776) + +[40070] +centroid = (0.67140446167097656, -1.4875816286003924) +station = ('kfft', 0.006743770487241822) +zone = ('kyz033', 0.0015875769612175958) + +[40071] +centroid = (0.66397576441583539, -1.4901412935747822) +station = ('klou', 0.0051622806765338159) +zone = ('kyz038', 0.00072342080212066851) + +[40075] +centroid = (0.67314092465037068, -1.485496326663402) +station = ('kfft', 0.0073193236457315429) +zone = ('kyz089', 0.0017474969813488141) + +[40076] +centroid = (0.66521006126284588, -1.485033325719433) +station = ('kfft', 0.0028290014648877119) +zone = ('kyz034', 0.0023191089349347375) + +[40077] +centroid = (0.67187243680331377, -1.4912902263680776) +station = ('klou', 0.0054919609822338625) +zone = ('kyz031', 0.0016755633428304027) + +[40078] +centroid = (0.66035651005255991, -1.4862112309783115) +station = ('kdvk', 0.0069258475227271226) +zone = ('kyz046', 0.001464493649893328) + +[40104] +centroid = (0.66471807040000119, -1.5067951729374347) +station = ('kftk', 0.0059897110624463346) +zone = ('kyz025', 0.0025786983686865981) + +[40107] +centroid = (0.65843116754151487, -1.4939813844483127) +station = ('kftk', 0.0059176331575494304) +zone = ('kyz045', 0.0022993619100959081) + +[40108] +centroid = (0.66270320995162146, -1.5039996616212228) +station = ('kftk', 0.0030904640580361013) +zone = ('kyz025', 0.00060640932391930016) + +[40109] +centroid = (0.66429102323862321, -1.4966440063952777) +station = ('ksdf', 0.0021482094021179803) +zone = ('kyz029', 0.0017631263198682611) + +[40110] +centroid = (0.66205288281903574, -1.4950204662184874) +station = ('ksdf', 0.0044917570167288898) +zone = ('kyz029', 0.00082921916145514457) + +[40111] +centroid = (0.65929304603273475, -1.5119612602568751) +station = ('kowb', 0.0074438298217066601) +zone = ('kyz023', 0.0023622795552184889) + +[40115] +centroid = (0.65847593523682846, -1.5049683891692496) +station = ('kftk', 0.0046947297296515075) +zone = ('kyz024', 0.0028838328230140504) + +[40117] +centroid = (0.66142014860531029, -1.5031524089891348) +station = ('kftk', 0.002171662127172114) +zone = ('kyz025', 0.0018013679489357831) + +[40118] +centroid = (0.66492675941866208, -1.4966408124427466) +station = ('ksdf', 0.0015180735445297722) +zone = ('kyz030', 0.0020088853851629911) + +[40119] +centroid = (0.65638688084194641, -1.51063758509887) +station = ('kowb', 0.0087818036254592221) +zone = ('kyz024', 0.0033495740099936072) + +[40121] +centroid = (0.66239824857142038, -1.4996637925203709) +station = ('kftk', 0.0010872332392989916) +zone = ('kyz029', 0.0031589776539165497) + +[40140] +centroid = (0.65909100671852383, -1.5071607845091426) +station = ('kftk', 0.005848747025724705) +zone = ('kyz024', 0.0010543010598166665) + +[40142] +centroid = (0.66136141827598061, -1.5045451293723486) +station = ('kftk', 0.0032720579164214614) +zone = ('kyz025', 0.0013430073509811723) + +[40143] +centroid = (0.6594090406148222, -1.509880094750212) +station = ('kowb', 0.0090928081170707966) +zone = ('kyz024', 0.0011189970206913517) + +[40144] +centroid = (0.65868883049898685, -1.5074106982047353) +station = ('kftk', 0.0062005713584132177) +zone = ('kyz024', 0.0010213379966583884) + +[40145] +centroid = (0.65694994151193231, -1.5064703671636384) +station = ('kftk', 0.0065980407488795212) +zone = ('kyz024', 0.0028079965486757417) + +[40146] +centroid = (0.66059624847861376, -1.5067574040124214) +station = ('kftk', 0.0050943608586166578) +zone = ('kyz024', 0.0019002230909196554) + +[40150] +centroid = (0.66113473491273156, -1.4959788963239278) +station = ('kftk', 0.0035071942823656833) +zone = ('kyz029', 0.0015849416571896797) + +[40152] +centroid = (0.65649603373336618, -1.5087299402264405) +station = ('kftk', 0.0082580400378518427) +zone = ('kyz024', 0.002777960487950721) + +[40155] +centroid = (0.66210370680685382, -1.500844036520447) +station = ('kftk', 0.00071499849794921441) +zone = ('kyz025', 0.0031503001053520279) + +[40157] +centroid = (0.66409708225214159, -1.50859605601952) +station = ('khnb', 0.0078690968718214526) +zone = ('kyz025', 0.0033264838989378854) + +[40160] +centroid = (0.65996871534605928, -1.4998931113307903) +station = ('kftk', 0.0015634512610686905) +zone = ('kyz028', 0.0020478026583417978) + +[40161] +centroid = (0.66321438198294536, -1.5077673562373806) +station = ('kftk', 0.0060619144002165585) +zone = ('kyz025', 0.0024202861948188813) + +[40162] +centroid = (0.65898045756370249, -1.5020291674424286) +station = ('kftk', 0.0028106389876414572) +zone = ('kyz028', 0.0016819009550902565) + +[40165] +centroid = (0.66269764235130746, -1.4952519492371796) +station = ('ksdf', 0.0038224474333540355) +zone = ('kyz029', 0.00033400910325274513) + +[40170] +centroid = (0.66259388252727647, -1.5098669000610669) +station = ('khnb', 0.0078501580432386291) +zone = ('inz089', 0.0026898613552204971) + +[40171] +centroid = (0.66275593634832408, -1.5092180739116381) +station = ('khnb', 0.008153010303048271) +zone = ('inz089', 0.0029461676456820395) + +[40175] +centroid = (0.66006612217161309, -1.5025520506330334) +station = ('kftk', 0.0022094401386334932) +zone = ('kyz028', 0.0027402701180204228) + +[40176] +centroid = (0.66180684375438215, -1.5067986461426461) +station = ('kftk', 0.0050579198886961481) +zone = ('kyz025', 0.0018295873187054018) + +[40177] +centroid = (0.66333645031082999, -1.4996183790532338) +station = ('kftk', 0.0019566276141107239) +zone = ('kyz029', 0.0031716470602613221) + +[40178] +centroid = (0.65729295106982666, -1.5082021701139299) +station = ('kftk', 0.0074526986439539256) +zone = ('kyz024', 0.0019855960088911639) + +[40202] +centroid = (0.66770682457099384, -1.4966904845132583) +station = ('ksdf', 0.0013130289039127523) +zone = ('kyz030', 0.001776392322351616) + +[40203] +centroid = (0.66763551041775726, -1.4968845476727877) +station = ('ksdf', 0.0012869177761028166) +zone = ('kyz030', 0.0018455628599485365) + +[40204] +centroid = (0.66741238752618237, -1.4961240029979386) +station = ('klou', 0.00076165840881907323) +zone = ('kyz030', 0.0012535656577786448) + +[40205] +centroid = (0.66711721744308505, -1.4954550182956492) +station = ('klou', 0.00029031663732057022) +zone = ('kyz030', 0.00070471851168023205) + +[40206] +centroid = (0.66776442043630968, -1.4958295659531271) +station = ('klou', 0.00070003185866545508) +zone = ('kyz030', 0.0014151172205831423) + +[40207] +centroid = (0.66785399073352192, -1.4950095230040776) +station = ('klou', 0.00056974494508331701) +zone = ('kyz030', 0.0013618334020435838) + +[40208] +centroid = (0.66708716287336578, -1.4969271686131211) +station = ('ksdf', 0.0008121621494627826) +zone = ('kyz030', 0.0015975657996061532) + +[40209] +centroid = (0.66653928656787231, -1.4965901804411461) +station = ('ksdf', 0.00023504967119506427) +zone = ('kyz030', 0.0012190705124232712) + +[40210] +centroid = (0.66726607657498771, -1.4972517474941147) +station = ('ksdf', 0.0011105832497659083) +zone = ('kyz030', 0.0019021154015201843) + +[40211] +centroid = (0.66734601265472893, -1.4979067870156806) +station = ('ksdf', 0.0015445252859070384) +zone = ('inz091', 0.001846177744648924) + +[40212] +centroid = (0.66797174809815407, -1.4974808394117316) +station = ('ksdf', 0.0017920908314850799) +zone = ('inz091', 0.0016889310060261462) + +[40213] +centroid = (0.66632462852316943, -1.49608591991366) +station = ('ksdf', 0.00021574462397498269) +zone = ('kyz030', 0.00083884091834618706) + +[40214] +centroid = (0.6658740368701821, -1.4971567841295137) +station = ('ksdf', 0.00085266869106752417) +zone = ('kyz030', 0.0017751172369551624) + +[40215] +centroid = (0.66654954910387387, -1.4972435095400454) +station = ('ksdf', 0.0007295753172842825) +zone = ('kyz030', 0.0017326080187386188) + +[40216] +centroid = (0.66653832663678358, -1.4981916247496061) +station = ('ksdf', 0.0014684573256567896) +zone = ('inz091', 0.0024393762832353202) + +[40217] +centroid = (0.66700745368642722, -1.4964019292280262) +station = ('ksdf', 0.00058538416922538218) +zone = ('kyz030', 0.0011875299355678837) + +[40218] +centroid = (0.66652939055101346, -1.4949497454771969) +station = ('klou', 0.00078662593044218564) +zone = ('kyz030', 8.0233052181666583e-05) + +[40219] +centroid = (0.66564412464781686, -1.4955432446893373) +station = ('ksdf', 0.00099561007362998608) +zone = ('kyz030', 0.00093589154992965585) + +[40220] +centroid = (0.66700218279208623, -1.494312874833144) +station = ('klou', 0.0007319684160514531) +zone = ('kyz030', 0.00076595452359918279) + +[40222] +centroid = (0.6679683097995277, -1.4943412713400741) +station = ('klou', 0.00093206837395104437) +zone = ('kyz030', 0.0015747784595015787) + +[40223] +centroid = (0.66773415642708012, -1.492952512854262) +station = ('klou', 0.0017919151004765091) +zone = ('kyz030', 0.002057248858126394) + +[40228] +centroid = (0.66556521831233417, -1.4944608438471281) +station = ('ksdf', 0.0017019617387581949) +zone = ('kyz030', 0.0010330572987805235) + +[40229] +centroid = (0.66478715053179505, -1.4949422580147056) +station = ('ksdf', 0.001967683634956635) +zone = ('kyz030', 0.0017069646234929533) + +[40231] +centroid = (0.66662964226324795, -1.4956585062331391) +station = ('ksdf', 0.00056533054919886321) +zone = ('kyz030', 0.00050489120410372095) + +[40241] +centroid = (0.66846064972822272, -1.4935775327126937) +station = ('klou', 0.0017050009694316898) +zone = ('kyz030', 0.0022790264733472706) + +[40242] +centroid = (0.66806789828664637, -1.4938362777743019) +station = ('klou', 0.0012972055680935135) +zone = ('kyz030', 0.0018376007558258451) + +[40243] +centroid = (0.66744533934246009, -1.4928869408342644) +station = ('klou', 0.0017957045200413624) +zone = ('kyz030', 0.0019418245644295612) + +[40245] +centroid = (0.66787402711333488, -1.4913527615151765) +station = ('klou', 0.0030491202619164423) +zone = ('kyz031', 0.0023236821908151012) + +[40258] +centroid = (0.66577800885473737, -1.4988525809373363) +station = ('ksdf', 0.0020869591352461999) +zone = ('inz091', 0.0030475052856485398) + +[40272] +centroid = (0.66459446618237494, -1.4984195996565017) +station = ('ksdf', 0.0024606621277849234) +zone = ('kyz029', 0.0028732686653253265) + +[40280] +centroid = (0.66754717930431395, -1.4955431225162898) +station = ('klou', 0.00038772598552072585) +zone = ('kyz030', 0.0011263559155547764) + +[40291] +centroid = (0.66550839039188925, -1.4937207544311124) +station = ('klou', 0.0021191002622217088) +zone = ('kyz030', 0.0014299519531765141) + +[40299] +centroid = (0.66587236135410022, -1.4925575972044134) +station = ('klou', 0.0024963729529472178) +zone = ('kyz030', 0.0020479825821986633) + +[40310] +centroid = (0.6588508494134494, -1.4794198232462437) +station = ('kdvk', 0.0029570887484314783) +zone = ('kyz047', 0.0018596932771566424) + +[40311] +centroid = (0.66902351841199081, -1.4660202673535676) +station = ('kiob', 0.0047986134394940837) +zone = ('kyz043', 0.00026038504166714578) + +[40312] +centroid = (0.66069480722147389, -1.4650061263384038) +station = ('kiob', 0.0035859133690898421) +zone = ('kyz059', 0.0016355570261447942) + +[40313] +centroid = (0.66579055777205909, -1.4551963811045219) +station = ('kjkl', 0.0098722582235578095) +zone = ('kyz052', 0.0010551474559299169) + +[40316] +centroid = (0.66220326038738753, -1.4580504307638458) +station = ('kjkl', 0.0069695107796286645) +zone = ('kyz060', 0.00080884934928233303) + +[40322] +centroid = (0.66215447843479436, -1.4597056486665596) +station = ('kiob', 0.0052154906913024057) +zone = ('kyz060', 0.00049883382743862842) + +[40324] +centroid = (0.66753478746662476, -1.4756866337893979) +station = ('klex', 0.0037890297390754594) +zone = ('kyz036', 0.00090179673009068014) + +[40328] +centroid = (0.65631279161519918, -1.4847003168981527) +station = ('kdvk', 0.0041294494753393481) +zone = ('kyz046', 0.0030023602758866255) + +[40330] +centroid = (0.65952018318158923, -1.4815760728173277) +station = ('kdvk', 0.0039752837621723873) +zone = ('kyz047', 0.00044937323434557608) + +[40334] +centroid = (0.66346054322064674, -1.461928220749219) +station = ('kiob', 0.0031280715667150222) +zone = ('kyz051', 0.0023091749396189323) + +[40336] +centroid = (0.65769203805658771, -1.4659186542845162) +station = ('ki39', 0.0047751884097902726) +zone = ('kyz058', 0.0004031719718504666) + +[40337] +centroid = (0.66220394106579583, -1.4635377284788234) +station = ('kiob', 0.0026863416389191672) +zone = ('kyz050', 0.0017987800960873605) + +[40339] +centroid = (0.66224937198622524, -1.4772274279063511) +station = ('klex', 0.0016468591121999877) +zone = ('kyz048', 0.0014903391255071607) + +[40342] +centroid = (0.66315207372864926, -1.4831724556709567) +station = ('kfft', 0.0034502965277958399) +zone = ('kyz039', 0.00021188565866706345) + +[40346] +centroid = (0.66297445157067381, -1.4616371347365715) +station = ('kiob', 0.0034949829586190325) +zone = ('kyz060', 0.002161746180942154) + +[40347] +centroid = (0.6659877276176569, -1.4787886947354301) +station = ('klex', 0.002804289167853133) +zone = ('kyz040', 0.0020350021012646717) + +[40348] +centroid = (0.66826417801432569, -1.4683343470489092) +station = ('kiob', 0.0045081702473003787) +zone = ('kyz042', 0.0018682604458764326) + +[40350] +centroid = (0.66854264529648133, -1.463874908637016) +station = ('kiob', 0.0045660073308619121) +zone = ('kyz043', 0.0020106518538925366) + +[40351] +centroid = (0.66679951515934455, -1.4558756981559831) +station = ('kiob', 0.0082025097952506103) +zone = ('kyz052', 0.000166818384622313) + +[40353] +centroid = (0.66436530445158815, -1.4651817064611543) +station = ('kiob', 0.00048905818515995931) +zone = ('kyz050', 0.00073829889516255625) + +[40356] +centroid = (0.66104261643481133, -1.4759091807223197) +station = ('klex', 0.0028098718130724351) +zone = ('kyz048', 0.00024698708139933009) + +[40358] +centroid = (0.66427055052649731, -1.4604599276093939) +station = ('kiob', 0.0041876439171702924) +zone = ('kyz051', 0.0017286777492680197) + +[40359] +centroid = (0.67181049506816048, -1.4800890348413358) +station = ('kfft', 0.0055473778609065258) +zone = ('kyz094', 0.00059435945317388636) + +[40360] +centroid = (0.66593390166352551, -1.4624034040913669) +station = ('kiob', 0.003155819455836126) +zone = ('kyz051', 0.00066627657541653055) + +[40361] +centroid = (0.66685988609817115, -1.4700364619486241) +station = ('kiob', 0.0042594095806688598) +zone = ('kyz042', 0.0001365832697738219) + +[40363] +centroid = (0.67220321160315166, -1.4837002606900525) +station = ('kfft', 0.0059704474437064217) +zone = ('kyz033', 0.0018842939345600765) + +[40370] +centroid = (0.67026710041062187, -1.4752409814181937) +station = ('klex', 0.0065413778915951633) +zone = ('kyz036', 0.002113685516108322) + +[40371] +centroid = (0.66503683733458541, -1.4587500983543851) +station = ('kiob', 0.0055907746778243415) +zone = ('kyz052', 0.0027158872011129468) + +[40372] +centroid = (0.66168496741271532, -1.4815770851082937) +station = ('klex', 0.0044962239392767082) +zone = ('kyz047', 0.001766912738149316) + +[40374] +centroid = (0.66711238288105712, -1.4641519098426001) +station = ('kiob', 0.003154620206931693) +zone = ('kyz051', 0.002430584703257748) + +[40376] +centroid = (0.65925861068659286, -1.4606683897352521) +station = ('kjkl', 0.0061271434010250455) +zone = ('kyz059', 0.0021080989152095319) + +[40379] +centroid = (0.66868539577600206, -1.478064034030002) +station = ('kfft', 0.0036941970590954444) +zone = ('kyz036', 0.0014582148745835182) + +[40380] +centroid = (0.66000699041655553, -1.4624523780301781) +station = ('kiob', 0.0049701800329335719) +zone = ('kyz059', 0.00051302354606980074) + +[40383] +centroid = (0.66333946973043589, -1.4789720939332296) +station = ('klex', 0.0019656454718116104) +zone = ('kyz040', 0.00062717463733937115) + +[40385] +centroid = (0.65864718694303415, -1.4683981911929473) +station = ('ki39', 0.0033070096899040558) +zone = ('kyz057', 0.0020245095085737953) + +[40387] +centroid = (0.66206581570879308, -1.4572149591042085) +station = ('kjkl', 0.0065756094018195894) +zone = ('kyz060', 0.0014741502703163429) + +[40390] +centroid = (0.66060172881246504, -1.4777164866160524) +station = ('klex', 0.0033348857278682293) +zone = ('kyz048', 0.0012475950753994532) + +[40391] +centroid = (0.662703838270152, -1.4686068453050232) +station = ('kiob', 0.0027003703349038526) +zone = ('kyz049', 3.7243973140611092e-05) + +[40402] +centroid = (0.65088015761239415, -1.465649262714471) +station = ('kloz', 0.0038674486270894154) +zone = ('kyz069', 0.0022579863369529634) + +[40403] +centroid = (0.65573320267719704, -1.4708131858256392) +station = ('ki39', 0.0013139432819602201) +zone = ('kyz057', 0.0026100817798844107) + +[40404] +centroid = (0.65578051855321851, -1.471152617458567) +station = ('ki39', 0.0011257024866416993) +zone = ('kyz057', 0.0025673014113903247) + +[40409] +centroid = (0.65221653876735364, -1.4736659090347315) +station = ('ki39', 0.004776775247938409) +zone = ('kyz068', 0.0016499316959666969) + +[40419] +centroid = (0.65341301432947319, -1.4746166771447553) +station = ('ki39', 0.0040141746213427131) +zone = ('kyz068', 0.0027166299455273499) + +[40422] +centroid = (0.65695933138330798, -1.4799916454690747) +station = ('kdvk', 0.0011294156566766642) +zone = ('kyz055', 0.0010023598307567518) + +[40434] +centroid = (0.65265124792414786, -1.4650437207304916) +station = ('kloz', 0.005699827942034311) +zone = ('kyz069', 0.0010058580025721164) + +[40437] +centroid = (0.65337426802007903, -1.4812633621752476) +station = ('kdvk', 0.0028766236544109972) +zone = ('kyz066', 0.0021354567623600262) + +[40440] +centroid = (0.65599744552594885, -1.4803880970086651) +station = ('kdvk', 0.00069901078417987914) +zone = ('kyz055', 0.00093220788831551761) + +[40442] +centroid = (0.65168391663952252, -1.4790222721492243) +station = ('kdvk', 0.0042289862624036783) +zone = ('kyz067', 0.0023225222253084798) + +[40444] +centroid = (0.65740714796278465, -1.4761514498757891) +station = ('kdvk', 0.0030638577485791996) +zone = ('kyz056', 0.00072327443989763827) + +[40445] +centroid = (0.65168594122145473, -1.469345433737882) +station = ('kloz', 0.0047644530058963764) +zone = ('kyz068', 0.0018439505820300782) + +[40447] +centroid = (0.65425040585128769, -1.4666406097296039) +station = ('ki39', 0.0048268998260493244) +zone = ('kyz069', 0.0012088737559601409) + +[40448] +centroid = (0.65379243145556432, -1.479284926748357) +station = ('kdvk', 0.002110247987539538) +zone = ('kyz067', 0.0013333449211492079) + +[40456] +centroid = (0.65194102109163377, -1.4716528811820662) +station = ('ki39', 0.004828566682598982) +zone = ('kyz068', 0.00021041986321881727) + +[40460] +centroid = (0.65271399251075701, -1.4700348562457124) +station = ('ki39', 0.0042978556346368324) +zone = ('kyz068', 0.0013614262208831609) + +[40461] +centroid = (0.65593888972954451, -1.4731626084383338) +station = ('ki39', 0.0013381698808975476) +zone = ('kyz056', 0.0020743003702513147) + +[40464] +centroid = (0.65558528602309041, -1.4821445091014096) +station = ('kdvk', 0.002106512398317413) +zone = ('kyz055', 0.0013160549044091952) + +[40468] +centroid = (0.6568360587782397, -1.4831501154565312) +station = ('kdvk', 0.0030292799950107441) +zone = ('kyz055', 0.0015507581962850478) + +[40472] +centroid = (0.65854981502406551, -1.4636274034957908) +station = ('kiob', 0.0059270590050548733) +zone = ('kyz059', 0.0017982169423608667) + +[40475] +centroid = (0.65906521075217928, -1.4715334832079372) +station = ('ki39', 0.002310260677168031) +zone = ('kyz057', 0.00086735399105940876) + +[40481] +centroid = (0.65360615246449905, -1.4676484850127529) +station = ('ki39', 0.0045847011690962969) +zone = ('kyz069', 0.0012732805010792305) + +[40484] +centroid = (0.65485765825793407, -1.4778388865564946) +station = ('kdvk', 0.0016860176394365304) +zone = ('kyz067', 0.0011557142970981481) + +[40486] +centroid = (0.65222465454837542, -1.4636141215401832) +station = ('kloz', 0.0057723309587128834) +zone = ('kyz069', 0.0022163933109448897) + +[40489] +centroid = (0.65215524280402359, -1.4771987696000333) +station = ('kdvk', 0.0041671012654304887) +zone = ('kyz067', 0.0015947907451968604) + +[40502] +centroid = (0.66341628167081623, -1.4745098455412409) +station = ('klex', 0.0016528521187160216) +zone = ('kyz041', 0.00064169961315599952) + +[40503] +centroid = (0.66332683354665145, -1.4753873621825584) +station = ('klex', 0.0010330934787770416) +zone = ('kyz041', 0.0012079489911059635) + +[40504] +centroid = (0.66396536225349367, -1.4755714420587662) +station = ('klex', 0.00078571820463552969) +zone = ('kyz041', 0.0011713325951012944) + +[40505] +centroid = (0.66428280273784623, -1.4740573340260761) +station = ('klex', 0.0020187434426921043) +zone = ('kyz041', 0.00032010955127366382) + +[40506] +centroid = (0.66371907884274461, -1.4748580212737212) +station = ('klex', 0.0013344848667672423) +zone = ('kyz041', 0.00065667065812632464) + +[40507] +centroid = (0.66404463510811906, -1.4747395657773883) +station = ('klex', 0.0014444159760182793) +zone = ('kyz041', 0.00052252120837923343) + +[40508] +centroid = (0.66429589270723632, -1.4750067931391611) +station = ('klex', 0.0013089090216926861) +zone = ('kyz041', 0.00079901513769255693) + +[40509] +centroid = (0.66317860273327955, -1.4726692213120876) +station = ('klex', 0.003120221218053994) +zone = ('kyz041', 0.0013632254253793429) + +[40510] +centroid = (0.66446779018526514, -1.4762664845267879) +station = ('klex', 0.00069722233477441289) +zone = ('kyz041', 0.0017908769409184602) + +[40511] +centroid = (0.66553556516834278, -1.4744244465809406) +station = ('klex', 0.0024049175874121453) +zone = ('kyz041', 0.0015948275455392529) + +[40513] +centroid = (0.66353365506301276, -1.4766492003251652) +station = ('klex', 0.00028450857989261547) +zone = ('kyz040', 0.0019416714885654343) + +[40514] +centroid = (0.66291898500704549, -1.4759036654818833) +station = ('klex', 0.0010230171064763726) +zone = ('kyz041', 0.0017736630041808304) + +[40515] +centroid = (0.66178820363797075, -1.472908505952536) +station = ('klex', 0.0035083128430561817) +zone = ('kyz041', 0.0023643490227587393) + +[40516] +centroid = (0.66447742440273616, -1.4724257304281418) +station = ('klex', 0.0033150166975508466) +zone = ('kyz041', 0.001403360896088355) + +[40517] +centroid = (0.66292767674672037, -1.4746186493668101) +station = ('klex', 0.0017564958877157087) +zone = ('kyz041', 0.001118055475595273) + +[40601] +centroid = (0.66732522578333775, -1.4812397478704682) +station = ('kfft', 0.00099692345811949377) +zone = ('kyz035', 0.00013418141623426532) + +[40604] +centroid = (0.66630965359818728, -1.4811307346053886) +station = ('kfft', 0.00052669446357919995) +zone = ('kyz035', 0.0011064606941585094) + +[40701] +centroid = (0.64440903525135973, -1.4688330748826668) +station = ('kloz', 0.0030911363108536614) +zone = ('kyz085', 0.0028629505638778762) + +[40729] +centroid = (0.65017987915661646, -1.4684841312053154) +station = ('kloz', 0.0031155308786045203) +zone = ('kyz080', 0.0024917692159005553) + +[40734] +centroid = (0.64445219724376157, -1.4652688507507063) +station = ('kloz', 0.0031896244368117476) +zone = ('kyz086', 0.0015120943109056897) + +[40737] +centroid = (0.64596054568992001, -1.4683596019631855) +station = ('kloz', 0.0015493181113052324) +zone = ('kyz080', 0.0017527454765256586) + +[40740] +centroid = (0.64613104690454737, -1.4667278063790334) +station = ('kloz', 0.0011690510613193955) +zone = ('kyz080', 0.00193141043902548) + +[40741] +centroid = (0.6481592765749975, -1.4682979045741276) +station = ('kloz', 0.0012578151797136938) +zone = ('kyz080', 0.00047407147683023167) + +[40743] +centroid = (0.64703750110486324, -1.46809000095363) +station = ('kloz', 0.00070383015468506208) +zone = ('kyz080', 0.00066726614405785355) + +[40744] +centroid = (0.64628577034273671, -1.4681532167791371) +station = ('kloz', 0.0011897533690603378) +zone = ('kyz080', 0.0014182280654057612) + +[40759] +centroid = (0.64250756884448201, -1.4670735735571461) +station = ('kloz', 0.0047205723436340398) +zone = ('kyz085', 0.0015586922532831349) + +[40763] +centroid = (0.64034758426879879, -1.4647771915004195) +station = ('k1a6', 0.0029730636981595243) +zone = ('kyz085', 0.0033002126506159624) + +[40769] +centroid = (0.64073721157101404, -1.4691943580378293) +station = ('k1a6', 0.0064265043612097639) +zone = ('kyz085', 0.00093913765199630541) + +[40771] +centroid = (0.64339379467876712, -1.4666789895198551) +station = ('kloz', 0.0038585999908724812) +zone = ('kyz085', 0.002405345030080182) + +[40801] +centroid = (0.64336531090537452, -1.4529234039130647) +station = ('ki35', 0.0015660843475805788) +zone = ('kyz088', 0.00040760010740799519) + +[40806] +centroid = (0.64387383003623566, -1.4538080414977306) +station = ('ki35', 0.0010224940722399953) +zone = ('kyz088', 0.0012566086530457032) + +[40807] +centroid = (0.64514514531668088, -1.4476808013592166) +station = ('klnp', 0.0057638589644494363) +zone = ('kyz118', 0.0030191374971671506) + +[40808] +centroid = (0.64570764748130605, -1.452172842521537) +station = ('ki35', 0.0032248034951064268) +zone = ('kyz088', 0.0024400752761808402) + +[40810] +centroid = (0.64414751511624091, -1.4551618759452101) +station = ('ki35', 0.00086091288535433729) +zone = ('kyz088', 0.0023552492389101571) + +[40813] +centroid = (0.6407090594101793, -1.4589541797038208) +station = ('k1a6', 0.0026733221690641304) +zone = ('kyz087', 0.0012042202743597662) + +[40815] +centroid = (0.6420100452879085, -1.4524468766673926) +station = ('k0vg', 0.0022790728869079803) +zone = ('kyz088', 0.0012660637400972613) + +[40816] +centroid = (0.64589088959947294, -1.4533597536793557) +station = ('ki35', 0.0028465559676040171) +zone = ('kyz117', 0.0021578380538361864) + +[40818] +centroid = (0.64265806858588148, -1.4528668377920075) +station = ('ki35', 0.0017404437659009804) +zone = ('kyz088', 0.00071142085903752757) + +[40819] +centroid = (0.64236797741090745, -1.4564092278550251) +station = ('ki35', 0.0015487163016846628) +zone = ('kyz088', 0.0033147182232623985) + +[40820] +centroid = (0.64138451928399376, -1.4517393201886339) +station = ('k0vg', 0.0017422734711748681) +zone = ('vaz001', 0.0010278409409307614) + +[40823] +centroid = (0.64503688254317959, -1.448454174204068) +station = ('k0vg', 0.0061851390140121544) +zone = ('kyz118', 0.0034149564611862093) + +[40824] +centroid = (0.64272257595503512, -1.4551747739283822) +station = ('ki35', 0.00063928204546603732) +zone = ('kyz088', 0.0022681195108161787) + +[40826] +centroid = (0.64679823391770719, -1.444812090934176) +station = ('klnp', 0.0037023462321473348) +zone = ('kyz118', 0.0014958583130554948) + +[40827] +centroid = (0.64644084284677639, -1.4575824032716307) +station = ('ki35', 0.0037980489486876879) +zone = ('kyz117', 0.0020828050299097072) + +[40828] +centroid = (0.64368339716155054, -1.450963399163075) +station = ('ki35', 0.0031545343831092931) +zone = ('kyz088', 0.0012392584144770105) + +[40829] +centroid = (0.64221152609675869, -1.4538985717260313) +station = ('ki35', 0.0013558376456943352) +zone = ('kyz088', 0.0015880306708079531) + +[40830] +centroid = (0.6415861397191841, -1.4543579249318637) +station = ('ki35', 0.0017802785326995305) +zone = ('kyz088', 0.0022906963705543091) + +[40831] +centroid = (0.64169777097814162, -1.4548063174699937) +station = ('ki35', 0.0016199845042757872) +zone = ('kyz088', 0.0024741538389821283) + +[40840] +centroid = (0.64402638926615252, -1.456304996792096) +station = ('ki35', 0.0013428510811631866) +zone = ('kyz088', 0.0031920206585772416) + +[40843] +centroid = (0.64387006012505132, -1.448463651341906) +station = ('ki35', 0.0051623300205161215) +zone = ('vaz001', 0.0037665316436733573) + +[40844] +centroid = (0.64678057118567711, -1.4545822870072076) +station = ('ki35', 0.0034720353212057396) +zone = ('kyz117', 0.00084063374854699753) + +[40845] +centroid = (0.64226051748886215, -1.4576635610818487) +station = ('ki35', 0.0024658158759654335) +zone = ('kyz087', 0.0024844939737786974) + +[40847] +centroid = (0.64316419661566726, -1.4516737830752218) +station = ('ki35', 0.0025698672259985384) +zone = ('kyz088', 0.00061247310411723088) + +[40849] +centroid = (0.64392200112359077, -1.4509131511339102) +station = ('ki35', 0.0032302824789661971) +zone = ('kyz088', 0.0013720624322060082) + +[40854] +centroid = (0.64307630183453679, -1.454799179073353) +station = ('ki35', 0.00024889649809788284) +zone = ('kyz088', 0.0019091973413178853) + +[40855] +centroid = (0.64474296909714379, -1.4467693729705324) +station = ('klnp', 0.0050805623696395701) +zone = ('kyz118', 0.0031895748797234331) + +[40856] +centroid = (0.64097948072448341, -1.4578605563945213) +station = ('ki35', 0.0033407005722955354) +zone = ('kyz087', 0.0020268362656849282) + +[40858] +centroid = (0.64550103540445503, -1.4558548065648369) +station = ('ki35', 0.0023192504717843075) +zone = ('kyz117', 0.0019683781233363709) + +[40862] +centroid = (0.64609315580648663, -1.4461040010997948) +station = ('klnp', 0.0045342649225738945) +zone = ('kyz118', 0.0017940133348973814) + +[40863] +centroid = (0.64100981454688299, -1.4561444265009127) +station = ('ki35', 0.0025193644972023761) +zone = ('kyz088', 0.0037417941033236284) + +[40865] +centroid = (0.64437735752543601, -1.4523084895110019) +station = ('ki35', 0.002313952358720717) +zone = ('kyz088', 0.0011053819667790311) + +[40868] +centroid = (0.64699543866989007, -1.457311214012456) +station = ('ki35', 0.0041601985440844315) +zone = ('kyz117', 0.0016777468087240204) + +[40870] +centroid = (0.64443502320392188, -1.4511422605048194) +station = ('ki35', 0.0031915641367497361) +zone = ('kyz088', 0.0015485662190420114) + +[40873] +centroid = (0.64259954769606209, -1.4557672957561418) +station = ('ki35', 0.0010093354599357346) +zone = ('kyz088', 0.0027581233242901615) + +[40874] +centroid = (0.64553405703390265, -1.4570562039554471) +station = ('ki35', 0.0028185015079433668) +zone = ('kyz117', 0.0023573132317345129) + +[40902] +centroid = (0.64353479982903572, -1.4589969053639096) +station = ('ki35', 0.0033010587041947949) +zone = ('kyz087', 0.0027029006475452399) + +[40903] +centroid = (0.6422539375975822, -1.4628444662466387) +station = ('k1a6', 0.0034542678581447397) +zone = ('kyz086', 0.0017002672136918224) + +[40906] +centroid = (0.64368261176338715, -1.4640851160921262) +station = ('kloz', 0.0043484924818071374) +zone = ('kyz086', 0.00048217633046453959) + +[40913] +centroid = (0.64466790248601558, -1.458368464660144) +station = ('ki35', 0.0030998714193589058) +zone = ('kyz117', 0.0036938098094777428) + +[40914] +centroid = (0.64826057548478322, -1.458532769955927) +station = ('ki35', 0.0057404535620982459) +zone = ('kyz116', 0.0020644870124114059) + +[40915] +centroid = (0.64380480226431935, -1.4627175109968487) +station = ('k1a6', 0.0049291545770992467) +zone = ('kyz086', 0.00064986401170058722) + +[40921] +centroid = (0.64170805096743588, -1.4640958673203186) +station = ('k1a6', 0.0034404575262501646) +zone = ('kyz086', 0.002203741368853057) + +[40923] +centroid = (0.64436123068314755, -1.4633635446194742) +station = ('kloz', 0.0042181910763076334) +zone = ('kyz086', 0.00051387802731655034) + +[40927] +centroid = (0.64355879810625061, -1.449724616819887) +station = ('ki35', 0.0041314656814409566) +zone = ('kyz088', 0.0021799440762426863) + +[40935] +centroid = (0.64390208691682538, -1.4612113267589626) +station = ('k1a6', 0.0049324164028509108) +zone = ('kyz086', 0.0018521121064646782) + +[40939] +centroid = (0.64248922543404352, -1.4607753435118143) +station = ('k1a6', 0.0035609100810565027) +zone = ('kyz087', 0.00145133869388354) + +[40940] +centroid = (0.63883623385632693, -1.4650134741745544) +station = ('k1a6', 0.0028316657073106321) +zone = ('kyz085', 0.0039618644004361441) + +[40941] +centroid = (0.64795252487180621, -1.4614054422783693) +station = ('kloz', 0.0047097250393061466) +zone = ('kyz116', 0.00065662120880598317) + +[40943] +centroid = (0.64525340809018206, -1.463681456342725) +station = ('kloz', 0.0034588820385730054) +zone = ('kyz086', 0.0013947305639432682) + +[40946] +centroid = (0.64532158065076506, -1.462711454704344) +station = ('kloz', 0.0040864200302398691) +zone = ('kyz086', 0.0015964421986793306) + +[40949] +centroid = (0.64380057856752948, -1.4638225313061637) +station = ('kloz', 0.0043803980729244015) +zone = ('kyz086', 0.00024504697457051718) + +[40953] +centroid = (0.64468650769584179, -1.4626158281146273) +station = ('kloz', 0.0044817106320758802) +zone = ('kyz086', 0.0010984285912768866) + +[40958] +centroid = (0.64245355090413281, -1.4590416730592233) +station = ('ki35', 0.0034410218992894336) +zone = ('kyz087', 0.0017523284825557127) + +[40962] +centroid = (0.64829357966093848, -1.4614502797868529) +station = ('kloz', 0.0047387957297460957) +zone = ('kyz116', 0.0003891561537470118) + +[40964] +centroid = (0.64175915420793428, -1.4540483209758526) +station = ('ki35', 0.0016938257596215941) +zone = ('kyz088', 0.0019967505841644501) + +[40965] +centroid = (0.63938295824451408, -1.4611146529716945) +station = ('k1a6', 0.00050745410127387672) +zone = ('kyz087', 0.0017867295913639779) + +[40972] +centroid = (0.65030339610777999, -1.4586946317907568) +station = ('kjkl', 0.0067039517893841766) +zone = ('kyz116', 0.0025869527031261467) + +[40977] +centroid = (0.64053813931653159, -1.4621028758474661) +station = ('k1a6', 0.0016388381211242605) +zone = ('kyz087', 0.0014754665964703748) + +[40979] +centroid = (0.64587277308183721, -1.4575462749561146) +station = ('ki35', 0.003328131353119644) +zone = ('kyz117', 0.0023796421449102426) + +[40982] +centroid = (0.64459800204947304, -1.4606675694305038) +station = ('ki35', 0.0048026800849198413) +zone = ('kyz086', 0.0024009015760320484) + +[40983] +centroid = (0.65154800785066969, -1.4617937780369381) +station = ('kloz', 0.0061232015007055621) +zone = ('kyz114', 0.0018326985256423474) + +[40988] +centroid = (0.64341880524694817, -1.4576298936805776) +station = ('ki35', 0.0022026386466391539) +zone = ('kyz087', 0.0032222070551728398) + +[40995] +centroid = (0.64160071321843826, -1.4628556712604364) +station = ('k1a6', 0.0028451240977684536) +zone = ('kyz086', 0.0023263143622145955) + +[40997] +centroid = (0.6439310419291161, -1.4601772191771558) +station = ('ki35', 0.0042818216848114436) +zone = ('kyz086', 0.002679578028082278) + +[41001] +centroid = (0.67924036169390034, -1.4731167062790063) +station = ('kluk', 0.0031884793628990105) +zone = ('kyz093', 0.00060092218771291167) + +[41002] +centroid = (0.67614063948906578, -1.4655211206407897) +station = ('kluk', 0.0087502140207034486) +zone = ('kyz097', 0.0018856488553757507) + +[41003] +centroid = (0.67246907760810803, -1.4728876492679748) +station = ('klex', 0.009126421351238664) +zone = ('kyz037', 0.0017304666307140987) + +[41004] +centroid = (0.67446721780225372, -1.467612164711019) +station = ('kluk', 0.0091243153392993517) +zone = ('kyz097', 0.00078025936416176265) + +[41005] +centroid = (0.68079637508193092, -1.4793430985723259) +station = ('kcvg', 0.001474752998121311) +zone = ('kyz091', 0.00077628076882908131) + +[41006] +centroid = (0.67691600200926438, -1.4721091102485375) +station = ('kluk', 0.0055914937657889933) +zone = ('kyz096', 0.0015612655626935817) + +[41007] +centroid = (0.67879671645133588, -1.4712187828905103) +station = ('kluk', 0.0039869345351931582) +zone = ('kyz093', 0.0014901720420692067) + +[41008] +centroid = (0.67480212903241887, -1.4864731874457433) +station = ('kfft', 0.0091471827207472052) +zone = ('kyz089', 0.00062033655689162307) + +[41010] +centroid = (0.67194535665946209, -1.4766915594661112) +station = ('kfft', 0.0068141014482526012) +zone = ('kyz095', 0.0026129453802911855) + +[41011] +centroid = (0.68184976855197199, -1.4753736788012228) +station = ('kluk', 0.0016733038216609482) +zone = ('ohz077', 0.0022430333370455705) + +[41014] +centroid = (0.68183538703893565, -1.4748954062262987) +station = ('kluk', 0.0013369590987240111) +zone = ('ohz077', 0.0023093395488448134) + +[41015] +centroid = (0.68031208112108743, -1.4745296899348359) +station = ('kluk', 0.0023022600119433716) +zone = ('kyz092', 0.0010366594691719176) + +[41016] +centroid = (0.68224349737792933, -1.4756408014432405) +station = ('kluk', 0.001787955539189502) +zone = ('ohz077', 0.0018467261077386209) + +[41017] +centroid = (0.68118610710390115, -1.4758833498493902) +station = ('kcvg', 0.0014665495622246518) +zone = ('kyz092', 0.0017168479424240712) + +[41018] +centroid = (0.68093847978962818, -1.4765867000846515) +station = ('kcvg', 0.0010674706930835884) +zone = ('kyz092', 0.0017050212268752312) + +[41030] +centroid = (0.67698701945652806, -1.4763653923354985) +station = ('kcvg', 0.0046827796205130071) +zone = ('kyz095', 0.0024843385545400757) + +[41031] +centroid = (0.67053190176473443, -1.4711156164784247) +station = ('kiob', 0.0075700670971857583) +zone = ('kyz037', 0.00071095231575159798) + +[41033] +centroid = (0.67661589264438393, -1.4740833568852234) +station = ('kcvg', 0.0056858811416576026) +zone = ('kyz096', 0.0018328461078993613) + +[41034] +centroid = (0.67586014762497781, -1.4641797129375844) +station = ('kluk', 0.0096944291186137725) +zone = ('kyz099', 0.0024269302218416036) + +[41035] +centroid = (0.67577794261720892, -1.4774972034488318) +station = ('kcvg', 0.0057755532214092261) +zone = ('kyz095', 0.0012946795737717863) + +[41039] +centroid = (0.67047023928226146, -1.4638043798819429) +station = ('kiob', 0.0064312114357508677) +zone = ('kyz044', 0.0024950141795849279) + +[41040] +centroid = (0.67458501007347083, -1.4718616051073121) +station = ('kluk', 0.0079237671477530719) +zone = ('kyz096', 0.0008749134933885163) + +[41041] +centroid = (0.67033549986400753, -1.4612015005552739) +station = ('kiob', 0.0070863881230074297) +zone = ('kyz044', 0.00072890707669111157) + +[41042] +centroid = (0.68069530306494785, -1.4774387523721824) +station = ('kcvg', 0.00088172356077984677) +zone = ('kyz091', 0.0011749030567682662) + +[41043] +centroid = (0.67655826187248314, -1.4694888125359336) +station = ('kluk', 0.0065893519207588166) +zone = ('kyz097', 0.0019440763888931875) + +[41044] +centroid = (0.67387914656408665, -1.4655954542136322) +station = ('kiob', 0.0096515301129847623) +zone = ('kyz098', 0.0019338092699305999) + +[41045] +centroid = (0.67591242023607501, -1.4841936652695911) +station = ('kcvg', 0.0075661569209811248) +zone = ('kyz089', 0.0015545949051793836) + +[41046] +centroid = (0.67574572383921705, -1.480097429875038) +station = ('kcvg', 0.0060950577233009418) +zone = ('kyz090', 0.0010267515865506492) + +[41048] +centroid = (0.68240347425716719, -1.4784044081407259) +station = ('kcvg', 0.0010076950090996053) +zone = ('kyz091', 0.0022675941714124662) + +[41049] +centroid = (0.66791951039364184, -1.4597983780097179) +station = ('kiob', 0.0059772163002966691) +zone = ('kyz044', 0.0019267095187073804) + +[41051] +centroid = (0.67953081938801718, -1.4756456010986836) +station = ('kcvg', 0.0025809182998438799) +zone = ('kyz092', 0.00020655051218092908) + +[41052] +centroid = (0.67505822119356407, -1.4794897411360786) +station = ('kcvg', 0.0066387455146339688) +zone = ('kyz090', 0.0018498307038142283) + +[41055] +centroid = (0.67239493602148326, -1.4637459462585862) +station = ('kiob', 0.0083205582211187366) +zone = ('kyz099', 0.0013491936420897892) + +[41056] +centroid = (0.67360809693125201, -1.4622039478644493) +station = ('kiob', 0.0097895464108387672) +zone = ('kyz099', 0.0006259411430046232) + +[41059] +centroid = (0.68091219513109325, -1.4722093096008946) +station = ('kluk', 0.0017514766822983002) +zone = ('kyz093', 0.0012274526304035249) + +[41062] +centroid = (0.6755124082248104, -1.4647298756243978) +station = ('kluk', 0.0096309502356746162) +zone = ('kyz097', 0.0022937892001376079) + +[41063] +centroid = (0.67799985147475283, -1.4747180982275889) +station = ('kcvg', 0.0042465231959838033) +zone = ('kyz092', 0.0015998871334389324) + +[41064] +centroid = (0.67219307124019767, -1.4671893412464307) +station = ('kiob', 0.0080410529743176178) +zone = ('kyz098', 0.00018132081917270838) + +[41071] +centroid = (0.68196902689976069, -1.474512097015976) +station = ('kluk', 0.0010109863283883163) +zone = ('ohz077', 0.0022665852367011068) + +[41073] +centroid = (0.68246559052524569, -1.4744399625579909) +station = ('kluk', 0.00084782996073708833) +zone = ('ohz077', 0.0018361473652096349) + +[41074] +centroid = (0.68264640663575227, -1.4741829279190497) +station = ('kluk', 0.00068451051096375811) +zone = ('ohz077', 0.0017885407916936524) + +[41075] +centroid = (0.68210912447881844, -1.4739859151530845) +station = ('kluk', 0.00058610881461120337) +zone = ('ohz077', 0.0023204718148510635) + +[41076] +centroid = (0.68090055378498238, -1.4739997556140527) +station = ('kluk', 0.0016048741610456571) +zone = ('kyz093', 0.0015369858707240307) + +[41080] +centroid = (0.68163292884570426, -1.4804611913977388) +station = ('kcvg', 0.0021364322343479735) +zone = ('kyz091', 0.0019722050181787227) + +[41083] +centroid = (0.67484934018868536, -1.4829619340565812) +station = ('kcvg', 0.0078501767848689497) +zone = ('kyz090', 0.0021655816645144549) + +[41085] +centroid = (0.68131388265843962, -1.4729415101286911) +station = ('kluk', 0.0011540192779154578) +zone = ('kyz093', 0.0015807282231162887) + +[41086] +centroid = (0.67525401222905279, -1.4812860689088163) +station = ('kcvg', 0.0068844605253175536) +zone = ('kyz090', 0.0011931982473672193) + +[41091] +centroid = (0.67911227198009638, -1.4789279021965691) +station = ('kcvg', 0.0026155309741253087) +zone = ('kyz091', 0.0010487952517735809) + +[41092] +centroid = (0.67746007349698856, -1.4781382279765041) +station = ('kcvg', 0.004104406570826535) +zone = ('kyz090', 0.0025061792086706739) + +[41093] +centroid = (0.66998657363994885, -1.4583703147091511) +station = ('kiob', 0.0081866771013987764) +zone = ('kyz044', 0.0019153099120304564) + +[41094] +centroid = (0.6786320795429952, -1.4769693111632738) +station = ('kcvg', 0.0029755775820162278) +zone = ('kyz092', 0.001518550268679149) + +[41095] +centroid = (0.67672839656796757, -1.4791231696332823) +station = ('kcvg', 0.0049460835844826996) +zone = ('kyz090', 0.0015478428029227138) + +[41097] +centroid = (0.6740667345520911, -1.4762246838912028) +station = ('kcvg', 0.0075734869090538677) +zone = ('kyz095', 0.00075958534394468969) + +[41098] +centroid = (0.67346792953902435, -1.4836724750483608) +station = ('kfft', 0.0071968363832162017) +zone = ('kyz089', 0.0021149061916423311) + +[41099] +centroid = (0.68130485930620688, -1.4742480112468566) +station = ('kluk', 0.0013188337034484177) +zone = ('kyz093', 0.0019718591621993822) + +[41101] +centroid = (0.6714949046328148, -1.4424785508176745) +station = ('khts', 0.0023002530585334853) +zone = ('kyz103', 0.0020664239845265015) + +[41102] +centroid = (0.67068863233156351, -1.4439141190340252) +station = ('khts', 0.00268452151640414) +zone = ('kyz103', 0.0013219156118630983) + +[41121] +centroid = (0.67089454627671374, -1.4457196621452131) +station = ('khts', 0.004081958464501257) +zone = ('kyz101', 0.0022138096587937029) + +[41124] +centroid = (0.66380234850135733, -1.446029684980245) +station = ('kk22', 0.0057429707775347215) +zone = ('kyz105', 0.0017152050408335031) + +[41129] +centroid = (0.66884643730608351, -1.4424964055359226) +station = ('khts', 0.0015621998989990202) +zone = ('kyz103', 0.00084271506488892969) + +[41132] +centroid = (0.66797583216860368, -1.4453564765811657) +station = ('khts', 0.003958662848551296) +zone = ('kyz103', 0.0022941399615636483) + +[41135] +centroid = (0.66923431927904675, -1.4538937371640033) +station = ('khts', 0.010299239033731551) +zone = ('kyz052', 0.0030556450925940028) + +[41139] +centroid = (0.67219881337343668, -1.4438518631396065) +station = ('khts', 0.0035292735533350521) +zone = ('kyz103', 0.0027494633125782438) + +[41141] +centroid = (0.67261643575685393, -1.4516014391777265) +station = ('khts', 0.0089950166784205695) +zone = ('kyz101', 0.0033926089339921658) + +[41142] +centroid = (0.66807145875832052, -1.4498984516133855) +station = ('khts', 0.007328622843216186) +zone = ('kyz102', 0.00077585998721247382) + +[41143] +centroid = (0.66907032814252931, -1.4481941375988132) +station = ('khts', 0.0058490790574957227) +zone = ('kyz102', 0.001055963556990528) + +[41144] +centroid = (0.67263982316883064, -1.4476314609012628) +station = ('khts', 0.0061619602232497288) +zone = ('kyz101', 0.00030465117735750105) + +[41146] +centroid = (0.66809762124380778, -1.4468082414529746) +station = ('khts', 0.0049777319524070725) +zone = ('kyz102', 0.0022094803567980436) + +[41149] +centroid = (0.66509467754599649, -1.4497059068903055) +station = ('khts', 0.00835412600474803) +zone = ('kyz104', 0.00052345183450596539) + +[41159] +centroid = (0.66321061207176124, -1.4485772897295035) +station = ('kk22', 0.0065916293088619749) +zone = ('kyz104', 0.0024882978917652389) + +[41164] +centroid = (0.66825824389486888, -1.4513657324622449) +station = ('khts', 0.008424214388885673) +zone = ('kyz102', 0.0015627636130424076) + +[41166] +centroid = (0.67434579524619254, -1.450258809744045) +station = ('khts', 0.0087999827282112791) +zone = ('kyz101', 0.0028322868651303864) + +[41168] +centroid = (0.66858310202854265, -1.4442775663974603) +station = ('khts', 0.0029423255275708676) +zone = ('kyz103', 0.001262681056473441) + +[41169] +centroid = (0.672571894954343, -1.4440485966528911) +station = ('khts', 0.0039091663517448567) +zone = ('ohz087', 0.0029560420955850697) + +[41171] +centroid = (0.6647760851443375, -1.450476434848476) +station = ('kk22', 0.0087495703474948679) +zone = ('kyz104', 0.00052028730789259578) + +[41174] +centroid = (0.67551284455712346, -1.4488292629136139) +station = ('khts', 0.0086266770675683235) +zone = ('ohz088', 0.001763783657576012) + +[41175] +centroid = (0.67457562020209516, -1.4480918613046461) +station = ('khts', 0.007572644235224503) +zone = ('kyz101', 0.0019382911068237764) + +[41179] +centroid = (0.67251115749637358, -1.4551386456128661) +station = ('khts', 0.011617719130730488) +zone = ('kyz100', 6.5779531789437594e-05) + +[41180] +centroid = (0.6656208768621803, -1.4464395581017833) +station = ('khts', 0.0059881432011043611) +zone = ('kyz105', 0.0022742999588219975) + +[41183] +centroid = (0.67288322678631374, -1.4440475843619249) +station = ('khts', 0.0041482458527882377) +zone = ('ohz087', 0.0028538718029599698) + +[41189] +centroid = (0.67276220565598044, -1.458424489729133) +station = ('kiob', 0.010301579617817165) +zone = ('kyz100', 0.0025178141172316933) + +[41201] +centroid = (0.66452467046558761, -1.4440558397692869) +station = ('khts', 0.005716349492833687) +zone = ('kyz105', 0.00012473285147345323) + +[41203] +centroid = (0.66044487607258839, -1.4391904028667948) +station = ('kk22', 0.0029019403151850122) +zone = ('kyz119', 0.001006571922856941) + +[41204] +centroid = (0.65999051450841661, -1.44297546350901) +station = ('kk22', 0.0012388980242443472) +zone = ('kyz119', 0.002262000006458203) + +[41214] +centroid = (0.65962512982951171, -1.4421017691387541) +station = ('kk22', 0.00075944123190231313) +zone = ('kyz119', 0.00156643467137745) + +[41216] +centroid = (0.65855763409911439, -1.4451914207938046) +station = ('kk22', 0.0023226837275153599) +zone = ('kyz107', 0.0020290666906422729) + +[41219] +centroid = (0.66193552688013169, -1.4469709410458453) +station = ('kk22', 0.0048010958616337175) +zone = ('kyz107', 0.001719883691632006) + +[41222] +centroid = (0.65896460997409434, -1.4461528354122655) +station = ('kk22', 0.0030612826606923093) +zone = ('kyz107', 0.0016282367375780788) + +[41224] +centroid = (0.65969956812210917, -1.4409423120100691) +station = ('kk22', 0.0013398087204754541) +zone = ('kyz119', 0.00064726682088329446) + +[41226] +centroid = (0.66290331195036245, -1.447786690484935) +station = ('kk22', 0.0059223559770023694) +zone = ('kyz107', 0.0028811378594123826) + +[41230] +centroid = (0.6639882435199872, -1.442912422216428) +station = ('kk22', 0.0051331222933757147) +zone = ('kyz105', 0.00094968217384271364) + +[41231] +centroid = (0.65986621215908969, -1.4379019659063874) +station = ('kk22', 0.0036001955976934234) +zone = ('kyz119', 0.0017610891789717946) + +[41232] +centroid = (0.66219633143025713, -1.4439060381595883) +station = ('kk22', 0.0035562199822158406) +zone = ('kyz107', 0.0021617567337498421) + +[41234] +centroid = (0.65953653691668046, -1.4442038436898561) +station = ('kk22', 0.0016549097036431229) +zone = ('kyz107', 0.0015450473894955184) + +[41238] +centroid = (0.66054120079400591, -1.4479458470594244) +station = ('kk22', 0.0047736522255358111) +zone = ('kyz107', 0.0017887464387513049) + +[41240] +centroid = (0.66015237634324664, -1.4450758625440299) +station = ('kk22', 0.0025483725335039894) +zone = ('kyz107', 0.00062119060694400523) + +[41250] +centroid = (0.65838069261954713, -1.4393574308762107) +station = ('kk22', 0.0023663496133437462) +zone = ('kyz119', 0.0015097094767022295) + +[41254] +centroid = (0.66125572113647979, -1.4436553390658318) +station = ('kk22', 0.0026122257107044486) +zone = ('kyz107', 0.0017478756683207582) + +[41255] +centroid = (0.66155427715832604, -1.4457057344177822) +station = ('kk22', 0.0038035139243211471) +zone = ('kyz107', 0.0010049461611529964) + +[41256] +centroid = (0.66038639008935407, -1.4467350423441458) +station = ('kk22', 0.0038276825775693892) +zone = ('kyz107', 0.00084848644924264533) + +[41257] +centroid = (0.66200355981437442, -1.445057030441401) +station = ('kk22', 0.0038160554813236043) +zone = ('kyz107', 0.0015350715912956202) + +[41260] +centroid = (0.66018051105078879, -1.4443092615766766) +station = ('kk22', 0.002063678598474809) +zone = ('kyz107', 0.0011442200071311798) + +[41262] +centroid = (0.66052140876028831, -1.4421674982383843) +station = ('kk22', 0.0016446750894796162) +zone = ('kyz119', 0.0017815662887317011) + +[41263] +centroid = (0.66072747978507129, -1.4442980042030011) +station = ('kk22', 0.0024396618129019876) +zone = ('kyz107', 0.0011061492473779674) + +[41264] +centroid = (0.66191460038240013, -1.4430633408368478) +station = ('kk22', 0.0030973629781591624) +zone = ('kyz105', 0.0026008892337120084) + +[41265] +centroid = (0.65883236637667075, -1.4434881016169057) +station = ('kk22', 0.000954414645098545) +zone = ('kyz107', 0.0024393118034671262) + +[41267] +centroid = (0.66109977596781422, -1.4388666617438426) +station = ('kk22', 0.0034946641594251434) +zone = ('kyz119', 0.0016671283092804577) + +[41268] +centroid = (0.65953861385849022, -1.4448813281456028) +station = ('kk22', 0.0021575395338342476) +zone = ('kyz107', 0.0011919141371312628) + +[41271] +centroid = (0.6601262662176367, -1.443798909850101) +station = ('kk22', 0.0017295257483641755) +zone = ('kyz107', 0.0015452701330531363) + +[41274] +centroid = (0.66085426050193607, -1.4453194581477309) +station = ('kk22', 0.0031077172536720823) +zone = ('kyz107', 0.00041736603823457801) + +[41301] +centroid = (0.65849019457681734, -1.4572158666754194) +station = ('kjkl', 0.0035112136272733253) +zone = ('kyz108', 0.00018516190300953817) + +[41311] +centroid = (0.65595093250138325, -1.4610275261354351) +station = ('kjkl', 0.005450090734041224) +zone = ('kyz111', 0.00021475661186862372) + +[41314] +centroid = (0.65319961292183193, -1.4597969991996089) +station = ('kjkl', 0.0052581444137235409) +zone = ('kyz114', 0.00060592499188392491) + +[41317] +centroid = (0.65354946417039417, -1.4512973504621516) +station = ('kjkl', 0.0033010612589103906) +zone = ('kyz112', 0.0027128700146210813) + +[41332] +centroid = (0.65974751231666151, -1.4554165020297833) +station = ('kjkl', 0.0039246841399863223) +zone = ('kyz108', 0.0017899857673025954) + +[41339] +centroid = (0.65478086377084621, -1.4533199776257029) +station = ('kjkl', 0.0013442101491861283) +zone = ('kyz112', 0.0007672121823048873) + +[41348] +centroid = (0.65291648561057347, -1.4538772263492796) +station = ('kjkl', 0.0030441362707812783) +zone = ('kyz112', 0.0019848751035002905) + +[41352] +centroid = (0.66013469615792397, -1.4543879271417057) +station = ('kjkl', 0.0041860149323412321) +zone = ('kyz106', 0.001993784316626807) + +[41360] +centroid = (0.65975868242387425, -1.4593502647242684) +station = ('kjkl', 0.0056049985324514787) +zone = ('kyz108', 0.0019961502545574471) + +[41365] +centroid = (0.65810753113831755, -1.4595991835821878) +station = ('kjkl', 0.0048226615346238406) +zone = ('kyz111', 0.0022992193984828499) + +[41366] +centroid = (0.65615707333933626, -1.4524242572002868) +station = ('kjkl', 0.0013827649645489824) +zone = ('kyz112', 0.0019510096648054389) + +[41367] +centroid = (0.65290480935787754, -1.4526895297932974) +station = ('kjkl', 0.003260960005970817) +zone = ('kyz112', 0.0023402744658585074) + +[41385] +centroid = (0.65735733626593285, -1.4541170345885035) +station = ('kjkl', 0.0014046706990245978) +zone = ('kyz112', 0.0024852280850893088) + +[41390] +centroid = (0.65291704411593399, -1.4552017916252029) +station = ('kjkl', 0.0031484345356868433) +zone = ('kyz112', 0.0020906516536904423) + +[41397] +centroid = (0.65779797954218377, -1.4603755583933524) +station = ('kjkl', 0.0052638735871355273) +zone = ('kyz111', 0.001750372901445058) + +[41408] +centroid = (0.65936198653818845, -1.4535968915648241) +station = ('kjkl', 0.0034370810930692557) +zone = ('kyz106', 0.002532615968312734) + +[41421] +centroid = (0.66314432446677041, -1.4519980128903647) +station = ('kjkl', 0.007389791683664871) +zone = ('kyz106', 0.001562031588229314) + +[41425] +centroid = (0.6612785325898034, -1.4555051647557846) +station = ('kjkl', 0.0054323623523850643) +zone = ('kyz106', 0.0019559043671910237) + +[41464] +centroid = (0.65746209092763752, -1.4478288227330782) +station = ('kjkl', 0.0052290530311037836) +zone = ('kyz109', 0.0016535059138245533) + +[41465] +centroid = (0.65807777327457095, -1.4504502723629888) +station = ('kjkl', 0.0036190878919773128) +zone = ('kyz109', 0.00055130340513770762) + +[41472] +centroid = (0.66230691549166354, -1.4524587623595988) +station = ('kjkl', 0.0064931632293585744) +zone = ('kyz106', 0.00069434032790696004) + +[41501] +centroid = (0.65475505035120929, -1.4401342420196885) +station = ('kk22', 0.0044613184201752806) +zone = ('kyz120', 0.0018160465201578662) + +[41503] +centroid = (0.65736721482949911, -1.4361875115288609) +station = ('kk22', 0.0050534990091958389) +zone = ('wvz024', 0.0023727717053606385) + +[41512] +centroid = (0.65019996789630685, -1.4394791326849523) +station = ('klnp', 0.0047858309038407111) +zone = ('vaz003', 0.0028359363378094539) + +[41513] +centroid = (0.65182193727677018, -1.437111558648037) +station = ('klnp', 0.0068852703874312908) +zone = ('kyz120', 0.0022692729030832312) + +[41514] +centroid = (0.65747621064128614, -1.4367044256934243) +station = ('kk22', 0.0046305292983873534) +zone = ('wvz024', 0.0027018236707380843) + +[41517] +centroid = (0.64918214423642129, -1.4412691423657977) +station = ('klnp', 0.0037545721734843821) +zone = ('vaz003', 0.0034003993730024281) + +[41519] +centroid = (0.65596524420124969, -1.4367824070044033) +station = ('kk22', 0.0052389043623087012) +zone = ('kyz120', 0.0022554642215461581) + +[41522] +centroid = (0.65106884515782715, -1.4381283351103713) +station = ('klnp', 0.0058935551441678027) +zone = ('kyz120', 0.00288884913442224) + +[41524] +centroid = (0.65306707261843544, -1.4352040184953623) +station = ('kk22', 0.0080775087472058932) +zone = ('kyz120', 0.0024493580728898894) + +[41526] +centroid = (0.65333477121910644, -1.4400843779629589) +station = ('kk22', 0.0058116095132694145) +zone = ('kyz120', 0.0017101821340041918) + +[41527] +centroid = (0.65680441595890093, -1.4362143023328793) +station = ('kk22', 0.0052309265359338176) +zone = ('wvz024', 0.0026939548422173338) + +[41528] +centroid = (0.65535336667208544, -1.4336118069786454) +station = ('ki16', 0.0080829583563124634) +zone = ('wvz024', 0.0030973965126228284) + +[41531] +centroid = (0.65611823976347949, -1.435232345189122) +station = ('kk22', 0.0062260319125755454) +zone = ('wvz024', 0.0026973957722275423) + +[41534] +centroid = (0.65061553079120671, -1.4394878418779198) +station = ('klnp', 0.0051949749041343661) +zone = ('vaz003', 0.0031771172993830189) + +[41535] +centroid = (0.65618021640521773, -1.436051183860988) +station = ('kk22', 0.0056223147242846529) +zone = ('kyz120', 0.0027430224360542907) + +[41537] +centroid = (0.64965727521869165, -1.441881665666785) +station = ('klnp', 0.0043236969714614869) +zone = ('vaz003', 0.0040344693756966003) + +[41538] +centroid = (0.65127973329134559, -1.4414686858591783) +station = ('klnp', 0.0058522705960846284) +zone = ('kyz120', 0.0037982902228143852) + +[41539] +centroid = (0.65461771039236993, -1.4368795171239843) +station = ('kk22', 0.0060391190335140673) +zone = ('kyz120', 0.0011577298490701709) + +[41540] +centroid = (0.652595030868941, -1.4370146230613812) +station = ('kk22', 0.0075448263082188273) +zone = ('kyz120', 0.0016028564626728043) + +[41543] +centroid = (0.65533444730299384, -1.4361528667432091) +station = ('kk22', 0.0060099238709058912) +zone = ('kyz120', 0.0020562976934759359) + +[41544] +centroid = (0.65613738602537375, -1.4342084303301472) +station = ('kk22', 0.006954101418622188) +zone = ('wvz024', 0.002376006607456784) + +[41547] +centroid = (0.6551277479596801, -1.4327537158519024) +station = ('ki16', 0.0074387124084156738) +zone = ('wvz024', 0.0033770067756678712) + +[41548] +centroid = (0.65261883715993829, -1.4358785009847956) +station = ('klnp', 0.0080236183664855968) +zone = ('kyz120', 0.0022005462422484256) + +[41553] +centroid = (0.65409943487099009, -1.4340255721844157) +station = ('kk22', 0.0081010025750760436) +zone = ('kyz120', 0.0032192994305922681) + +[41554] +centroid = (0.65338943493127877, -1.4362149830112876) +station = ('kk22', 0.0072973410349060491) +zone = ('kyz120', 0.0015842801482539872) + +[41555] +centroid = (0.6551622705722846, -1.4356814533122453) +station = ('kk22', 0.0064136813087332907) +zone = ('kyz120', 0.0022508446230677459) + +[41557] +centroid = (0.65418547960311346, -1.4382013771395672) +station = ('kk22', 0.0056992810517326109) +zone = ('kyz120', 0.00024819242948543457) + +[41558] +centroid = (0.65517181752329301, -1.4348215295897879) +station = ('kk22', 0.0069746415975866071) +zone = ('kyz120', 0.0028545964194765998) + +[41559] +centroid = (0.6523068595561442, -1.4378563080931555) +station = ('klnp', 0.0071384742185133946) +zone = ('kyz120', 0.001659921637342359) + +[41560] +centroid = (0.65267549054745799, -1.4412639936445044) +station = ('kk22', 0.0062560540005427512) +zone = ('kyz120', 0.0028361549248934578) + +[41562] +centroid = (0.65273062549852856, -1.4392615250338137) +station = ('kk22', 0.0065983427022959212) +zone = ('kyz120', 0.0015453846156625361) + +[41563] +centroid = (0.64982433813469254, -1.4405360168134975) +station = ('klnp', 0.0043436460726991692) +zone = ('vaz003', 0.0031878030278913783) + +[41564] +centroid = (0.65637633905326431, -1.4375366510406526) +station = ('kk22', 0.0045136023125651216) +zone = ('kyz120', 0.0024567145001133345) + +[41566] +centroid = (0.65281223709435177, -1.4346858476937376) +station = ('kjfz', 0.0081877136179823347) +zone = ('vaz004', 0.0033121955826809161) + +[41567] +centroid = (0.65580779804942713, -1.4361148883786856) +station = ('kk22', 0.0057681419675184873) +zone = ('kyz120', 0.0024182842369188311) + +[41568] +centroid = (0.65452667401858577, -1.4328061280893398) +station = ('ki16', 0.007594814492915848) +zone = ('wvz024', 0.0039636750609708523) + +[41571] +centroid = (0.65672439261269711, -1.438772082351677) +station = ('kk22', 0.0035157149496619685) +zone = ('kyz120', 0.0028211659671746056) + +[41572] +centroid = (0.65124339553631916, -1.4424025940886278) +station = ('klnp', 0.0059630715678316518) +zone = ('kyz120', 0.0043785212679015679) + +[41601] +centroid = (0.65624507284022193, -1.443767493923565) +station = ('kk22', 0.0028844958524561772) +zone = ('kyz110', 0.00081813732049401406) + +[41602] +centroid = (0.6587903912081603, -1.4443453200790228) +station = ('kk22', 0.0016335043018511741) +zone = ('kyz107', 0.0020513277985362744) + +[41603] +centroid = (0.65572580248116852, -1.4434569300364652) +station = ('kk22', 0.003287644073076744) +zone = ('kyz110', 0.00062082932111626275) + +[41604] +centroid = (0.65246481185344973, -1.4427023194810729) +station = ('kk22', 0.0064230597829462548) +zone = ('kyz110', 0.0032523096627265027) + +[41605] +centroid = (0.65537336814531333, -1.4420716796624498) +station = ('kk22', 0.0035098489580833257) +zone = ('kyz110', 0.001679870778512332) + +[41606] +centroid = (0.6516517502214082, -1.4439857124399418) +station = ('klnp', 0.006774344137798133) +zone = ('kyz113', 0.0030631520451498582) + +[41607] +centroid = (0.65668144005980555, -1.4461260446082476) +station = ('kk22', 0.0037525507814122725) +zone = ('kyz110', 0.0019414451641216197) + +[41612] +centroid = (0.65195597856332332, -1.4437887869404393) +station = ('klnp', 0.0069917561363259011) +zone = ('kyz113', 0.0032047565833891343) + +[41615] +centroid = (0.65515195567640527, -1.4432569502107715) +station = ('kk22', 0.0038063158920385006) +zone = ('kyz110', 0.00081253661481968604) + +[41616] +centroid = (0.6556907213632035, -1.4465279415751042) +station = ('kk22', 0.0046327587384177278) +zone = ('kyz110', 0.0018673873979203033) + +[41619] +centroid = (0.65421364921724057, -1.4440056091934146) +station = ('kk22', 0.0048611412092357904) +zone = ('kyz110', 0.0012910047701652635) + +[41621] +centroid = (0.65670912098174206, -1.4439334398288446) +station = ('kk22', 0.0025330377290252114) +zone = ('kyz110', 0.0012285888241518302) + +[41622] +centroid = (0.65489450215844369, -1.4454284888661029) +station = ('kk22', 0.0046994403065656835) +zone = ('kyz110', 0.0011554642929842466) + +[41630] +centroid = (0.65393258139449939, -1.4451060567400895) +station = ('kk22', 0.0054288784605072719) +zone = ('kyz110', 0.0017264588764330511) + +[41631] +centroid = (0.65402436825986188, -1.4426108118683909) +station = ('kk22', 0.0048618388809411007) +zone = ('kyz110', 0.0019305325143265798) + +[41632] +centroid = (0.6556313278087581, -1.4477813148708389) +station = ('kjkl', 0.0050579510218947818) +zone = ('kyz110', 0.0028540595345391798) + +[41635] +centroid = (0.65422567453578684, -1.4420968996701409) +station = ('kk22', 0.0046558929589714968) +zone = ('kyz110', 0.0020876562231990849) + +[41636] +centroid = (0.65273830494723728, -1.443942445727785) +station = ('kk22', 0.0062802821455450976) +zone = ('kyz110', 0.0027651954541840209) + +[41640] +centroid = (0.65399953222460594, -1.4477887325201599) +station = ('kjkl', 0.0054099639192393941) +zone = ('kyz113', 0.002049398064457674) + +[41642] +centroid = (0.65610712201614418, -1.4424903841500032) +station = ('kk22', 0.0027770031971642451) +zone = ('kyz110', 0.0014751846597787209) + +[41643] +centroid = (0.65380388081545737, -1.4456951926291002) +station = ('kk22', 0.005750560734084741) +zone = ('kyz110', 0.0020739556970632484) + +[41645] +centroid = (0.65491427673886871, -1.4450506948962163) +station = ('kk22', 0.0045305970958546792) +zone = ('kyz110', 0.00090034278188549455) + +[41647] +centroid = (0.65349083856081969, -1.443695725984723) +station = ('kk22', 0.0055035202693640029) +zone = ('kyz110', 0.0020431568524617513) + +[41649] +centroid = (0.65573676314887097, -1.4447261683751005) +station = ('kk22', 0.0036901904731307025) +zone = ('kyz110', 0.00049159041710895802) + +[41650] +centroid = (0.65195917251585456, -1.4430952454555743) +station = ('klnp', 0.0068055690556860582) +zone = ('kyz110', 0.0036418417202231709) + +[41653] +centroid = (0.65720516100845139, -1.4444032475568964) +station = ('kk22', 0.0023702251641322708) +zone = ('kyz110', 0.0017170978441808924) + +[41655] +centroid = (0.65462422047047975, -1.4440058709928025) +station = ('kk22', 0.0044685703461952988) +zone = ('kyz110', 0.00088405250719634566) + +[41659] +centroid = (0.65588803083514136, -1.442025027011544) +station = ('kk22', 0.002998150611531037) +zone = ('kyz110', 0.001756111431417499) + +[41660] +centroid = (0.65299919676382545, -1.4421957027590964) +station = ('kk22', 0.0058804514416880603) +zone = ('kyz110', 0.0029545720110623164) + +[41663] +centroid = (0.65564871128810798, -1.4427271555163288) +station = ('kk22', 0.0032496572447059174) +zone = ('kyz110', 0.0011655005982905196) + +[41666] +centroid = (0.65343435970622521, -1.4452651260481162) +station = ('kk22', 0.0059356348452639382) +zone = ('kyz110', 0.0022334118783051706) + +[41667] +centroid = (0.65114958408902446, -1.4432933577789684) +station = ('klnp', 0.0060965720353967981) +zone = ('kyz118', 0.0039536517062843321) + +[41669] +centroid = (0.65155992844946087, -1.4436582537656826) +station = ('klnp', 0.0065860925593269146) +zone = ('kyz110', 0.0039590118657040138) + +[41701] +centroid = (0.65088356100443545, -1.4519490040449687) +station = ('kjkl', 0.0053621703569302391) +zone = ('kyz115', 0.00095064534532067751) + +[41712] +centroid = (0.65215897780862286, -1.450953258800121) +station = ('kjkl', 0.0045640910955461328) +zone = ('kyz115', 0.0024496992707096045) + +[41713] +centroid = (0.64960086617726731, -1.4534479800730442) +station = ('kjkl', 0.006376489196650883) +zone = ('kyz115', 0.00087852659162447437) + +[41714] +centroid = (0.64827579475586061, -1.457644746432512) +station = ('ki35', 0.005428491660172681) +zone = ('kyz117', 0.0020769685379013157) + +[41719] +centroid = (0.65111727804456998, -1.4531119692854502) +station = ('kjkl', 0.0049053783786643466) +zone = ('kyz115', 0.0011897410913012756) + +[41721] +centroid = (0.65116588546423815, -1.456882526241581) +station = ('kjkl', 0.0052556095634661848) +zone = ('kyz114', 0.0034909225496233959) + +[41722] +centroid = (0.6522152995835846, -1.450647494568464) +station = ('kjkl', 0.0046579621023711305) +zone = ('kyz113', 0.0022625871027429755) + +[41723] +centroid = (0.65036652466682465, -1.4541930785840129) +station = ('kjkl', 0.0055864898773491743) +zone = ('kyz115', 0.0013960105205939788) + +[41725] +centroid = (0.65169100267628555, -1.4492352264976278) +station = ('kjkl', 0.0057778812742215642) +zone = ('kyz113', 0.0011542374163752702) + +[41727] +centroid = (0.65235703777213916, -1.4534893094697312) +station = ('kjkl', 0.0036339123345922866) +zone = ('kyz115', 0.002453882152759353) + +[41729] +centroid = (0.65039045313086952, -1.4523847254927291) +station = ('kjkl', 0.0057364290420292589) +zone = ('kyz115', 0.00036440254418176052) + +[41731] +centroid = (0.64743683243771954, -1.4500125612398811) +station = ('ki35', 0.0056652146616843688) +zone = ('kyz118', 0.0031543288784786623) + +[41735] +centroid = (0.64603460001008217, -1.4503245912035525) +station = ('ki35', 0.0045435397854364365) +zone = ('kyz088', 0.0032298751092488362) + +[41739] +centroid = (0.65143251941406521, -1.4507321255838932) +station = ('kjkl', 0.0052722229036119153) +zone = ('kyz115', 0.001976251017729541) + +[41740] +centroid = (0.65213051148852275, -1.4498889744755472) +station = ('kjkl', 0.0051036559580290375) +zone = ('kyz113', 0.0016540265937750221) + +[41745] +centroid = (0.6517095904328194, -1.4561806944427691) +station = ('kjkl', 0.0045391104094729528) +zone = ('kyz112', 0.0035072817999779798) + +[41746] +centroid = (0.64951785831804243, -1.4502944842739558) +station = ('kjkl', 0.0071268531146995761) +zone = ('kyz115', 0.0018225642111979394) + +[41749] +centroid = (0.64938831998095947, -1.4562066474887463) +station = ('ki35', 0.0061633261982578392) +zone = ('kyz117', 0.0021092574107529414) + +[41751] +centroid = (0.64945198959207218, -1.4510424276716052) +station = ('ki35', 0.0068575138749901289) +zone = ('kyz115', 0.0012913918682800098) + +[41754] +centroid = (0.65103189653756244, -1.4542231506070247) +station = ('kjkl', 0.004921355269716981) +zone = ('kyz115', 0.0017018791077782929) + +[41759] +centroid = (0.64960817910683311, -1.4488430684679972) +station = ('kjkl', 0.0076177147569619777) +zone = ('kyz113', 0.002479407782478646) + +[41760] +centroid = (0.64936207022900938, -1.4499583338600215) +station = ('ki35', 0.0072098547242665069) +zone = ('kyz115', 0.0021248236082193764) + +[41762] +centroid = (0.65038273877557573, -1.4569749588787666) +station = ('kjkl', 0.0060049489888521577) +zone = ('kyz117', 0.003263042676588274) + +[41763] +centroid = (0.64694105421039794, -1.4512475038587147) +station = ('ki35', 0.0046432123017125081) +zone = ('kyz115', 0.0032489903561396661) + +[41764] +centroid = (0.64780787198340084, -1.4530566598014543) +station = ('ki35', 0.0047213864206699365) +zone = ('kyz117', 0.0018122504303317863) + +[41766] +centroid = (0.64891111205687912, -1.4567518185338992) +station = ('ki35', 0.0057906447431916057) +zone = ('kyz117', 0.0019045686433559071) + +[41772] +centroid = (0.65317713308106617, -1.4495475706205647) +station = ('kjkl', 0.0045865915127294493) +zone = ('kyz113', 0.0018407229108949516) + +[41773] +centroid = (0.64981891016071891, -1.4490887584668004) +station = ('kjkl', 0.0073341489319283942) +zone = ('kyz113', 0.0023581542458519763) + +[41774] +centroid = (0.64821095577414911, -1.4509855997511603) +station = ('ki35', 0.0057988342702351902) +zone = ('kyz115', 0.0021827095398154026) + +[41775] +centroid = (0.64750954285435758, -1.4546758017485295) +station = ('ki35', 0.0041960235441580737) +zone = ('kyz117', 0.00048714037969069506) + +[41776] +centroid = (0.64870909019596068, -1.4537722622480647) +station = ('ki35', 0.0054644442055672366) +zone = ('kyz115', 0.0016745522940999607) + +[41777] +centroid = (0.64703449913854982, -1.4530969420005904) +station = ('ki35', 0.0039813789798105658) +zone = ('kyz117', 0.0017783557186644237) + +[41804] +centroid = (0.64841604941455089, -1.4486608735473816) +station = ('ki35', 0.007118126809622434) +zone = ('kyz118', 0.0021106335221601265) + +[41810] +centroid = (0.64900363196052735, -1.4429312892256421) +station = ('klnp', 0.0040296881649067766) +zone = ('kyz118', 0.0027596987394591559) + +[41812] +centroid = (0.6502080138641585, -1.4441815383820156) +station = ('klnp', 0.0055735447907448088) +zone = ('kyz118', 0.0027779224269119328) + +[41815] +centroid = (0.64857141862456336, -1.4451001924338027) +station = ('klnp', 0.0048114086363955757) +zone = ('kyz118', 0.0010490990933671876) + +[41817] +centroid = (0.65183654568260929, -1.4473982151000262) +station = ('kjkl', 0.0067575770092444818) +zone = ('kyz113', 0.00035438181619345984) + +[41819] +centroid = (0.64554683284402725, -1.4504909734411451) +station = ('ki35', 0.004157408305106837) +zone = ('kyz088', 0.0027478417572363561) + +[41821] +centroid = (0.64680371425155858, -1.4488809246594729) +station = ('ki35', 0.0059276462913091972) +zone = ('kyz118', 0.0024703408011634517) + +[41822] +centroid = (0.65149151154278262, -1.4482250473798659) +station = ('kjkl', 0.006482815128725547) +zone = ('kyz113', 0.0005603218376695609) + +[41824] +centroid = (0.64911486179375688, -1.4464113012211934) +station = ('klnp', 0.0059669410890263435) +zone = ('kyz118', 0.0012528685625770098) + +[41825] +centroid = (0.64977546891563676, -1.4435342830289135) +station = ('klnp', 0.0049378644254924279) +zone = ('kyz118', 0.0027816929140474611) + +[41826] +centroid = (0.64862294074408222, -1.4470889253032801) +station = ('klnp', 0.0061392423926309777) +zone = ('kyz118', 0.0010796234530541387) + +[41828] +centroid = (0.65080072767813579, -1.4449221863033919) +station = ('klnp', 0.0063914169070506417) +zone = ('kyz113', 0.0025756010837631404) + +[41831] +centroid = (0.65252912723638579, -1.4478095368448438) +station = ('kjkl', 0.0060857717194323585) +zone = ('kyz113', 0.00057890315293119654) + +[41832] +centroid = (0.64836688348952221, -1.4479126508970515) +station = ('klnp', 0.0065968383255611352) +zone = ('kyz118', 0.0015242938252669961) + +[41833] +centroid = (0.64622559139012792, -1.4483749188027348) +station = ('klnp', 0.0063498541260371194) +zone = ('kyz118', 0.0024620535861396642) + +[41834] +centroid = (0.65017544602031629, -1.4478414938234476) +station = ('klnp', 0.0075173348199454246) +zone = ('kyz113', 0.0017749218711514466) + +[41835] +centroid = (0.64963034478833348, -1.4428284893326997) +station = ('klnp', 0.0045530984638362916) +zone = ('kyz118', 0.0031345125202726768) + +[41836] +centroid = (0.64991804486223215, -1.4467445369352769) +station = ('klnp', 0.0066827049362747732) +zone = ('kyz118', 0.0020952359071679449) + +[41837] +centroid = (0.64795610279677285, -1.4444056386579718) +station = ('klnp', 0.0039936898607639193) +zone = ('kyz118', 0.0013509780394869145) + +[41838] +centroid = (0.64932805376188807, -1.4443767010989734) +station = ('klnp', 0.0049466301827269929) +zone = ('kyz118', 0.0019893199243102766) + +[41839] +centroid = (0.65281108517704545, -1.4467735792140299) +station = ('kjkl', 0.0066427149520744697) +zone = ('kyz113', 0.0011970695399716989) + +[41840] +centroid = (0.64924480155656794, -1.443751681240542) +station = ('klnp', 0.0045808361265568523) +zone = ('kyz118', 0.0023106445500986617) + +[41843] +centroid = (0.65072012837327875, -1.4459247557856152) +station = ('klnp', 0.0068045562889291616) +zone = ('kyz113', 0.0019457884635890866) + +[41844] +centroid = (0.65126751598658172, -1.4462973312210381) +station = ('klnp', 0.0074159297134425636) +zone = ('kyz113', 0.0013902398638290538) + +[41845] +centroid = (0.64823961408046682, -1.4469011104224732) +station = ('klnp', 0.0058204616348297789) +zone = ('kyz118', 0.00073102779038900889) + +[41847] +centroid = (0.64929466561329741, -1.4480594156338518) +station = ('klnp', 0.0071492332989587324) +zone = ('kyz118', 0.0021035551684199893) + +[41848] +centroid = (0.64740162914670674, -1.4477143116808548) +station = ('klnp', 0.0060869019924929685) +zone = ('kyz118', 0.0013775890631364922) + +[41849] +centroid = (0.64884079274131634, -1.443995591003508) +station = ('klnp', 0.0043774736305163707) +zone = ('kyz118', 0.0019279674507313633) + +[41855] +centroid = (0.64909644857014837, -1.4448656027290423) +station = ('klnp', 0.0050319192290267075) +zone = ('kyz118', 0.0015578149460690959) + +[41858] +centroid = (0.64814643095170277, -1.4460899162927312) +station = ('klnp', 0.005211290692225797) +zone = ('kyz118', 0.00025934460391778828) + +[41859] +centroid = (0.65254239173870099, -1.4446424623841749) +station = ('kk22', 0.0066071640818933831) +zone = ('kyz113', 0.0025940776543303527) + +[41861] +centroid = (0.65285363630420912, -1.4455148826640765) +station = ('kk22', 0.0065475468113129574) +zone = ('kyz113', 0.0020426561121413339) + +[41862] +centroid = (0.65175407887545267, -1.4446657799829814) +station = ('klnp', 0.0071054757230763314) +zone = ('kyz113', 0.0025154870775451303) + +[42001] +centroid = (0.64630540529682168, -1.5482711074686579) +station = ('kpah', 0.00086687501338194391) +zone = ('kyz005', 0.0004097376343175171) + +[42003] +centroid = (0.6458650936331285, -1.5460350788974651) +station = ('kpah', 0.0026980836617215864) +zone = ('kyz005', 0.002017661297040829) + +[42020] +centroid = (0.64040727452921697, -1.5409489625643511) +station = ('kcey', 0.0011349193507956162) +zone = ('kyz009', 0.001272515012915336) + +[42021] +centroid = (0.64267491101316321, -1.5538259319723953) +station = ('kcir', 0.0049978824840007964) +zone = ('kyz003', 0.00095643496064156243) + +[42022] +centroid = (0.64830234121378338, -1.5523790714757841) +station = ('kpah', 0.0029825568954214145) +zone = ('kyz004', 0.0016905484958170021) + +[42023] +centroid = (0.6435474011062351, -1.5531723585274009) +station = ('kpah', 0.0043945176944199301) +zone = ('kyz003', 0.0004322568144295814) + +[42024] +centroid = (0.64712284770528572, -1.554221126874924) +station = ('kcir', 0.0023661616057608866) +zone = ('kyz004', 0.00078530556376422175) + +[42025] +centroid = (0.64327415235854291, -1.5417377117599123) +station = ('kcey', 0.003454092632925294) +zone = ('kyz008', 0.00046956527810921005) + +[42027] +centroid = (0.64431745782550764, -1.546844929123683) +station = ('kpah', 0.0030281272273694768) +zone = ('kyz005', 0.0026723113622441385) + +[42028] +centroid = (0.64994153699396395, -1.5417687786205978) +station = ('kpah', 0.0068285151028450062) +zone = ('kyz007', 0.00056042936103800275) + +[42029] +centroid = (0.64588478094709101, -1.5427307342911269) +station = ('kpah', 0.0052760071688348923) +zone = ('kyz008', 0.0023190292012501882) + +[42031] +centroid = (0.64028709115692461, -1.5531928835994044) +station = ('kpah', 0.0070896319806666649) +zone = ('kyz002', 0.00025231149413141484) + +[42032] +centroid = (0.64186083709015551, -1.5552297177430665) +station = ('kcir', 0.0052699750582407955) +zone = ('kyz003', 0.0023440223900050134) + +[42035] +centroid = (0.64403043843001717, -1.550557174629505) +station = ('kpah', 0.0028088627102012308) +zone = ('kyz003', 0.0019985249198537672) + +[42036] +centroid = (0.64073691486504114, -1.5396342409454087) +station = ('kcey', 0.0022255780962394758) +zone = ('kyz009', 0.0017732241447118169) + +[42037] +centroid = (0.64878742057279026, -1.539165846934051) +station = ('kpah', 0.0083382309880574504) +zone = ('kyz007', 0.0023948375352611036) + +[42038] +centroid = (0.64660961618544421, -1.5363652043498384) +station = ('kcey', 0.0082130693965985178) +zone = ('kyz011', 0.00092860090837383971) + +[42039] +centroid = (0.64208409960807056, -1.550296282812917) +station = ('kpah', 0.0046335259675836515) +zone = ('kyz003', 0.0023232593838561437) + +[42040] +centroid = (0.63923200471750907, -1.5445653022277759) +station = ('kcey', 0.0020128714255284539) +zone = ('kyz006', 0.0027500528502901636) + +[42041] +centroid = (0.63792435168203743, -1.5512024228539674) +station = ('kpah', 0.0088562709129504664) +zone = ('kyz002', 0.002623610250104966) + +[42044] +centroid = (0.64505946710370043, -1.5404853856617289) +station = ('kcey', 0.0053937247744272644) +zone = ('kyz008', 0.0016116227997946648) + +[42045] +centroid = (0.64688878159930074, -1.540481598297252) +station = ('kpah', 0.0070181877726792959) +zone = ('kyz007', 0.002837710201226148) + +[42047] +centroid = (0.65092126011627849, -1.5428597490294342) +station = ('km30', 0.0052388691545382747) +zone = ('kyz007', 0.0016194288038086128) + +[42048] +centroid = (0.64168260406694178, -1.5398792502658036) +station = ('kcey', 0.0026047065384194579) +zone = ('kyz008', 0.0024898971094913839) + +[42049] +centroid = (0.63741410467521686, -1.5417148828532961) +station = ('kcey', 0.0024513440889386948) +zone = ('kyz009', 0.0019457451025586122) + +[42050] +centroid = (0.63801245590267808, -1.5571700875389713) +station = ('kcir', 0.0088841353946357508) +zone = ('kyz001', 0.00044886863960995723) + +[42051] +centroid = (0.64316653535686485, -1.5471850588883118) +station = ('kpah', 0.0038566754889459783) +zone = ('kyz006', 0.0022299843161206557) + +[42053] +centroid = (0.64773791918698098, -1.5512106433547443) +station = ('kpah', 0.001895008456357958) +zone = ('kyz004', 0.0019371100740864402) + +[42054] +centroid = (0.64078810537200226, -1.543454993570827) +station = ('kcey', 0.001400090541824777) +zone = ('kyz009', 0.0027829453650324433) + +[42055] +centroid = (0.64708476462100717, -1.5389274698648137) +station = ('kcey', 0.0076981379399590566) +zone = ('kyz011', 0.0016003685740576992) + +[42056] +centroid = (0.64764412519297887, -1.5531117083358938) +station = ('kpah', 0.0032233907098803503) +zone = ('kyz004', 0.00087047620416418731) + +[42058] +centroid = (0.64678999596363784, -1.5440178622545953) +station = ('kpah', 0.0041945546834277576) +zone = ('kyz007', 0.0030679373008141528) + +[42060] +centroid = (0.64517586311151598, -1.5503433368895507) +station = ('kpah', 0.0017002015075073052) +zone = ('kyz005', 0.0022247461304855391) + +[42061] +centroid = (0.64372696057968037, -1.549265351730349) +station = ('kpah', 0.0029175302969317958) +zone = ('kyz003', 0.0029023716418357958) + +[42064] +centroid = (0.65200505722188939, -1.5374520732349328) +station = ('kehr', 0.0097919861833139655) +zone = ('kyz010', 0.00013178407106211195) + +[42066] +centroid = (0.64110362599417769, -1.5470577894792563) +station = ('kcey', 0.0041162488082739385) +zone = ('kyz006', 0.00022965907914136637) + +[42069] +centroid = (0.64435445880564979, -1.5490930353732997) +station = ('kpah', 0.0022944173729871008) +zone = ('kyz005', 0.0024358510252091522) + +[42071] +centroid = (0.63921959542652751, -1.5408623069669896) +station = ('kcey', 0.0012198134283641275) +zone = ('kyz009', 0.00018677602120695277) + +[42076] +centroid = (0.6382923019949428, -1.5377563888433103) +station = ('kcey', 0.0038671606047250397) +zone = ('kyz009', 0.0024736661724242557) + +[42078] +centroid = (0.65062060969932989, -1.5408953285964373) +station = ('kpah', 0.0077689210042063417) +zone = ('kyz007', 0.0015082276868273218) + +[42079] +centroid = (0.6382278469856667, -1.5461664323769704) +station = ('kcey', 0.0035870214935038993) +zone = ('kyz006', 0.0028467912313038701) + +[42081] +centroid = (0.64972810067973763, -1.5431613593774716) +station = ('kpah', 0.0057642947254777227) +zone = ('kyz007', 0.00092483472804467015) + +[42082] +centroid = (0.64437308146876859, -1.5446237707577175) +station = ('kpah', 0.0043516836178856908) +zone = ('kyz008', 0.0024716462623041928) + +[42083] +centroid = (0.64858351375627976, -1.5409131135015151) +station = ('kpah', 0.0069416152244827171) +zone = ('kyz007', 0.0012474765939910057) + +[42084] +centroid = (0.65335812372449809, -1.5401773525020441) +station = ('khsb', 0.0077996636962512599) +zone = ('ilz091', 0.0014873755130623432) + +[42085] +centroid = (0.63825854732720932, -1.5498688691323959) +station = ('kcey', 0.0063759015087186651) +zone = ('kyz002', 0.0031001317724564503) + +[42086] +centroid = (0.64731725993066536, -1.5493608037871405) +station = ('kpah', 0.00067661113020206227) +zone = ('kyz005', 0.0010216742349035356) + +[42087] +centroid = (0.64535125124804893, -1.553278771251895) +station = ('kpah', 0.0034519269961591306) +zone = ('kyz004', 0.001440404306221563) + +[42088] +centroid = (0.63916090000378289, -1.5489395162122941) +station = ('kcey', 0.0054714915661509753) +zone = ('kyz006', 0.0022316375985258988) + +[42101] +centroid = (0.64678578972014056, -1.5090650958027008) +station = ('kbwg', 0.0017217598102679192) +zone = ('kyz071', 0.0012509539578777985) + +[42102] +centroid = (0.64583694147229387, -1.5082827170589093) +station = ('kbwg', 0.00064726359226397725) +zone = ('kyz071', 0.00019365615849557387) + +[42103] +centroid = (0.64482334150919818, -1.5058886838305336) +station = ('kbwg', 0.0019264263729506963) +zone = ('kyz071', 0.0021603698910735306) + +[42104] +centroid = (0.64373093993037489, -1.508797868440928) +station = ('kbwg', 0.0015221965065445103) +zone = ('kyz071', 0.0019576619032733514) + +[42120] +centroid = (0.64006203094988012, -1.5055578741241109) +station = ('kbwg', 0.0055641307850225162) +zone = ('kyz073', 0.0016974427520740094) + +[42122] +centroid = (0.64327722413802646, -1.5071560197602845) +station = ('kbwg', 0.0021051161345312696) +zone = ('kyz071', 0.0025764564429535397) + +[42123] +centroid = (0.64256612464088636, -1.5007186869735687) +station = ('kglw', 0.0037835711550635929) +zone = ('kyz074', 0.0027017280820642855) + +[42124] +centroid = (0.64351231998827008, -1.4947691562594929) +station = ('kglw', 0.005153753136583279) +zone = ('kyz076', 0.0021039419379007026) + +[42127] +centroid = (0.64775397621609931, -1.4995600676029248) +station = ('kglw', 0.0015109391864127093) +zone = ('kyz074', 0.0025911418798644763) + +[42129] +centroid = (0.64561854842299182, -1.493711748532172) +station = ('kglw', 0.0052078888861720723) +zone = ('kyz076', 0.00063749653399175986) + +[42130] +centroid = (0.64447792339693599, -1.4972534928233665) +station = ('kglw', 0.0029751146709950985) +zone = ('kyz074', 0.0021684564318355851) + +[42133] +centroid = (0.64098763141209025, -1.5002420375548491) +station = ('kglw', 0.0053371608573020415) +zone = ('kyz073', 0.0032870246312994168) + +[42134] +centroid = (0.64096379021450789, -1.510834964383978) +station = ('kbwg', 0.0047034795341263482) +zone = ('kyz072', 0.0003927271540217662) + +[42140] +centroid = (0.63977733284229465, -1.4979967761919133) +station = ('kglw', 0.0067749544931037971) +zone = ('kyz075', 0.0018500666064234289) + +[42141] +centroid = (0.64485641549852335, -1.4995577637683122) +station = ('kglw', 0.0015482896456684842) +zone = ('kyz074', 0.00038024102416760788) + +[42151] +centroid = (0.63965877262620685, -1.4931957070322348) +station = ('kglw', 0.0086958047786455661) +zone = ('tnz010', 0.001727438118844591) + +[42153] +centroid = (0.63987903317780848, -1.502140327462488) +station = ('kglw', 0.0066348609107433065) +zone = ('kyz073', 0.002329036772381817) + +[42154] +centroid = (0.64651542076571411, -1.496293806080865) +station = ('kglw', 0.0031028395789806048) +zone = ('kyz076', 0.0016900473747234451) + +[42156] +centroid = (0.64317700733237693, -1.5019197702049136) +station = ('kglw', 0.0034430696219671388) +zone = ('kyz073', 0.0025883284359298959) + +[42157] +centroid = (0.64195679529243022, -1.4978361535408524) +station = ('kglw', 0.0047507960113359424) +zone = ('kyz075', 0.0018830760210800388) + +[42159] +centroid = (0.64565218091767773, -1.5053106307822732) +station = ('kbwg', 0.0023973520066191186) +zone = ('kyz071', 0.0024528172586368809) + +[42160] +centroid = (0.64763136683614675, -1.5016062218047928) +station = ('kglw', 0.0017362902642821098) +zone = ('kyz074', 0.002841599968885852) + +[42163] +centroid = (0.64715168054452865, -1.5033244286402112) +station = ('kglw', 0.0026471491515583311) +zone = ('kyz062', 0.0026883758339766831) + +[42164] +centroid = (0.64185642140714794, -1.5041572823059706) +station = ('kbwg', 0.0046755741624941571) +zone = ('kyz073', 0.00044166378316987559) + +[42166] +centroid = (0.64368067444791743, -1.4959003216010029) +station = ('kglw', 0.0043185698972498382) +zone = ('kyz076', 0.002223154833545992) + +[42167] +centroid = (0.64090212773203503, -1.4952952857625066) +station = ('kglw', 0.0066805492882474875) +zone = ('kyz075', 0.00061122919842260476) + +[42170] +centroid = (0.64298894810547458, -1.5110480341790615) +station = ('kbwg', 0.003135569264178462) +zone = ('kyz072', 0.0017236136932748363) + +[42171] +centroid = (0.64640345789419862, -1.5039582449580731) +station = ('kglw', 0.0030222987802238986) +zone = ('kyz062', 0.0031562445725965261) + +[42202] +centroid = (0.6403599586531955, -1.515775782056864) +station = ('kbwg', 0.0077178505173864809) +zone = ('tnz007', 0.0028894066639804086) + +[42204] +centroid = (0.64026974258415981, -1.5197658141664332) +station = ('kckv', 0.0049137360959605374) +zone = ('kyz022', 0.0030004895896761719) + +[42206] +centroid = (0.64379396376966436, -1.5139512846699992) +station = ('kbwg', 0.0047625634229775324) +zone = ('kyz070', 0.0019533725103545348) + +[42207] +centroid = (0.65090300397230272, -1.505641231049186) +station = ('kbwg', 0.0060812452006238213) +zone = ('kyz062', 0.0015400331384871734) + +[42210] +centroid = (0.6493796980544545, -1.5053866747777827) +station = ('kbwg', 0.0047738898641435474) +zone = ('kyz062', 0.00019497027035164473) + +[42211] +centroid = (0.64259432916159864, -1.5330670033024669) +station = ('khop', 0.0054178739209779954) +zone = ('kyz012', 0.00053062429331761135) + +[42214] +centroid = (0.64818172150917819, -1.4954565367320982) +station = ('kglw', 0.0041962988992511815) +zone = ('kyz076', 0.0026842230381634506) + +[42215] +centroid = (0.64570216714745488, -1.5300846893964142) +station = ('khop', 0.0062055679325264124) +zone = ('kyz017', 0.0030428546493976904) + +[42217] +centroid = (0.6464815962848105, -1.5264381380836374) +station = ('k2i0', 0.0055657518466632619) +zone = ('kyz017', 0.0025965548858994524) + +[42220] +centroid = (0.64390840500871771, -1.5215542355976592) +station = ('kckv', 0.0058633671444277289) +zone = ('kyz022', 0.0010059239271789026) + +[42223] +centroid = (0.63928380608970836, -1.5265151071036505) +station = ('kckv', 0.00067815740370150731) +zone = ('tnz006', 0.002552159052887791) + +[42232] +centroid = (0.64354898935585447, -1.5298690365140379) +station = ('khop', 0.0041978513457409574) +zone = ('kyz017', 0.0023287038601056019) + +[42234] +centroid = (0.64073846820807545, -1.5215814278274054) +station = ('kckv', 0.003702202617123106) +zone = ('kyz022', 0.0021640877854043152) + +[42236] +centroid = (0.64082007980389866, -1.5291569072726392) +station = ('khop', 0.0018182538349690697) +zone = ('kyz017', 0.0035533292843199539) + +[42240] +centroid = (0.6436806046347473, -1.5265198020393385) +station = ('khop', 0.0037620019393482607) +zone = ('kyz017', 0.00045143510875126844) + +[42254] +centroid = (0.63985301031866115, -1.5298573079014643) +station = ('khop', 0.0021635323581336661) +zone = ('tnz005', 0.0037982361692970009) + +[42256] +centroid = (0.64578784536043521, -1.5173445712550189) +station = ('kbwg', 0.0072850715506580493) +zone = ('kyz070', 0.0025969522503434461) + +[42259] +centroid = (0.65001578330034393, -1.5035712007431508) +station = ('kglw', 0.0045784246483602858) +zone = ('kyz062', 0.0013905613490550789) + +[42261] +centroid = (0.64956105521702923, -1.512700145395707) +station = ('kbwg', 0.0056281428685852845) +zone = ('kyz061', 0.00022150583227087211) + +[42262] +centroid = (0.64018535591482595, -1.5262802555995021) +station = ('khop', 0.00074490477438790103) +zone = ('tnz006', 0.0033275182790817315) + +[42265] +centroid = (0.64122040597442875, -1.5185116031126575) +station = ('kckv', 0.0061556594415548404) +zone = ('kyz070', 0.002738243221191847) + +[42266] +centroid = (0.64130934795311023, -1.5246713936417211) +station = ('kckv', 0.0023781861917143376) +zone = ('kyz022', 0.0029559224107722597) + +[42273] +centroid = (0.6495405126917333, -1.5157119379128259) +station = ('kbwg', 0.0073691378110322149) +zone = ('kyz061', 0.0022608223332873699) + +[42274] +centroid = (0.64490326013564692, -1.5114338741168001) +station = ('kbwg', 0.0025559986773446459) +zone = ('kyz071', 0.0025533031543522717) + +[42275] +centroid = (0.64955999056618563, -1.5089587354380845) +station = ('kbwg', 0.0044058137689036454) +zone = ('kyz062', 0.0030401164764120286) + +[42276] +centroid = (0.64327614203389016, -1.5163381795017341) +station = ('kbwg', 0.0067401363305207894) +zone = ('kyz070', 4.8929019605717805e-05) + +[42280] +centroid = (0.64502100004698648, -1.5201671875345144) +station = ('kckv', 0.0074144786636515221) +zone = ('kyz022', 0.002394345300956001) + +[42285] +centroid = (0.65038053966071818, -1.5061815849856035) +station = ('kbwg', 0.0054475537760453122) +zone = ('kyz062', 0.0012702903755534916) + +[42286] +centroid = (0.64104510510435841, -1.5234951115390469) +station = ('kckv', 0.0026472939469998685) +zone = ('kyz022', 0.0024178913243217662) + +[42301] +centroid = (0.65861357190164083, -1.522789248029663) +station = ('kowb', 0.0011442518253524773) +zone = ('kyz019', 0.0022385273508452588) + +[42303] +centroid = (0.65901806940908303, -1.5192427738961956) +station = ('kowb', 0.0016950755020615623) +zone = ('kyz019', 0.00073916294834250719) + +[42320] +centroid = (0.65162724579871023, -1.5160117505717337) +station = ('kowb', 0.0082298441617097793) +zone = ('kyz026', 0.0024981027850045695) + +[42321] +centroid = (0.64866015116373488, -1.5193974449745071) +station = ('k2i0', 0.0058111885999586861) +zone = ('kyz021', 0.0014941562369682106) + +[42322] +centroid = (0.65648200128618006, -1.525335962661003) +station = ('kowb', 0.0038521514038021049) +zone = ('kyz020', 0.002344638558564155) + +[42323] +centroid = (0.64879785764171716, -1.5190550462818511) +station = ('k2i0', 0.0059617992196551329) +zone = ('kyz021', 0.0016566425025525951) + +[42324] +centroid = (0.64812796536821671, -1.5185163329549305) +station = ('k2i0', 0.0066918090471926057) +zone = ('kyz021', 0.0023751920319545631) + +[42325] +centroid = (0.65149460077555865, -1.5232189306382116) +station = ('k2i0', 0.0017915732600423777) +zone = ('kyz021', 0.0026815984899013702) + +[42326] +centroid = (0.64972541287268948, -1.5185785539427643) +station = ('k2i0', 0.0058683609567227934) +zone = ('kyz021', 0.0018713323486607913) + +[42327] +centroid = (0.65590398314450471, -1.5236255050874634) +station = ('kowb', 0.0033173762779208408) +zone = ('kyz020', 0.0010115798153707688) + +[42328] +centroid = (0.65328768223588762, -1.5192261234551314) +station = ('kowb', 0.0056547024775851678) +zone = ('kyz026', 0.0028434484805508922) + +[42330] +centroid = (0.65138871164984014, -1.5204949429147463) +station = ('k2i0', 0.0039345383453454454) +zone = ('kyz021', 0.0018823579603940645) + +[42332] +centroid = (0.65014263383037874, -1.5199839454163475) +station = ('k2i0', 0.004675422272402645) +zone = ('kyz021', 0.00095851614298596234) + +[42333] +centroid = (0.65212939447780149, -1.5142244286979363) +station = ('kbwg', 0.0084131212262515947) +zone = ('kyz026', 0.0023514237045115364) + +[42337] +centroid = (0.64923703484139661, -1.51754453362742) +station = ('k2i0', 0.0068179660748862708) +zone = ('kyz021', 0.0027023118377965086) + +[42338] +centroid = (0.6552669030609416, -1.5149577811430393) +station = ('kowb', 0.0061058496611704847) +zone = ('kyz026', 0.0013279264954141293) + +[42339] +centroid = (0.64741676115132152, -1.5179954568929652) +station = ('k2i0', 0.0074496311690390804) +zone = ('kyz021', 0.0031485697021666303) + +[42343] +centroid = (0.65687192529436822, -1.5132148953519977) +station = ('kowb', 0.0066852161349732764) +zone = ('kyz026', 0.0034318460498882299) + +[42344] +centroid = (0.65047817337907476, -1.5239835768368026) +station = ('k2i0', 0.0018742447945942118) +zone = ('kyz021', 0.0026168867894138239) + +[42345] +centroid = (0.64814307991953901, -1.5216429157769531) +station = ('k2i0', 0.0048614968223609223) +zone = ('kyz021', 0.0015088287713807063) + +[42347] +centroid = (0.65493541267611044, -1.5163797357912241) +station = ('kowb', 0.0054351276368805402) +zone = ('kyz026', 0.00093602011177567658) + +[42348] +centroid = (0.66027037805397393, -1.5143812988911056) +station = ('kowb', 0.0057269128825733944) +zone = ('kyz023', 0.00023625601514334327) + +[42349] +centroid = (0.65314728795085719, -1.5127920544341169) +station = ('kbwg', 0.0087394242714280736) +zone = ('kyz026', 0.002579095890931291) + +[42350] +centroid = (0.65371328077398638, -1.5216986964998469) +station = ('k2i0', 0.0034019095139131809) +zone = ('kyz020', 0.0016732701563401085) + +[42351] +centroid = (0.6614549504705951, -1.5161087559715594) +station = ('kowb', 0.0049771214275912473) +zone = ('kyz023', 0.001575947527485433) + +[42352] +centroid = (0.65475697021338652, -1.5199356870625298) +station = ('kowb', 0.0040857799860411588) +zone = ('kyz020', 0.0024724316673588563) + +[42354] +centroid = (0.65234780498039613, -1.5172272676759924) +station = ('kowb', 0.007130616589414461) +zone = ('kyz026', 0.0021029926921625418) + +[42355] +centroid = (0.66065857418620244, -1.5182820748627279) +station = ('kowb', 0.0031217301134011388) +zone = ('kyz019', 0.002495844075283592) + +[42356] +centroid = (0.65787140554381518, -1.5240932184204132) +station = ('kowb', 0.0023217688072770123) +zone = ('kyz020', 0.002984690369470501) + +[42361] +centroid = (0.65479807271727097, -1.5129201790545059) +station = ('kowb', 0.0077232799385921636) +zone = ('kyz026', 0.0023841179705457408) + +[42366] +centroid = (0.65840221252922437, -1.5173475383147477) +station = ('kowb', 0.0031746113105295213) +zone = ('kyz019', 0.0020712321877276573) + +[42367] +centroid = (0.64995050798631926, -1.5212273179754681) +station = ('k2i0', 0.0038836826109177824) +zone = ('kyz021', 0.00048231572014832881) + +[42368] +centroid = (0.65804054540162593, -1.5141441784589296) +station = ('kowb', 0.0057326613776463257) +zone = ('kyz023', 0.0024406529330531267) + +[42369] +centroid = (0.65203141169359458, -1.5185021957879892) +station = ('k2i0', 0.005472467497312076) +zone = ('kyz026', 0.0029939202558630549) + +[42370] +centroid = (0.65360870064520682, -1.5138798832503) +station = ('kowb', 0.0077962479057696182) +zone = ('kyz026', 0.0016082209279459272) + +[42371] +centroid = (0.65467052405553516, -1.5234973281071971) +station = ('k2i0', 0.0030770772648341872) +zone = ('kyz020', 0.00049599404388323779) + +[42372] +centroid = (0.65282487327813632, -1.5232003777882628) +station = ('k2i0', 0.0019301173885085978) +zone = ('kyz020', 0.0021853312901550874) + +[42374] +centroid = (0.65145424876325253, -1.5211725320902483) +station = ('k2i0', 0.0033920578614255229) +zone = ('kyz021', 0.0019285379627618044) + +[42376] +centroid = (0.65654893466299413, -1.5199450594806132) +station = ('kowb', 0.0024084520059128906) +zone = ('kyz019', 0.0019952436573127362) + +[42378] +centroid = (0.65741816099036476, -1.5160499034691821) +station = ('kowb', 0.0043776535744389266) +zone = ('kyz023', 0.0032602987790055818) + +[42404] +centroid = (0.65405089726449217, -1.53306951657659) +station = ('kehr', 0.0063472069944593033) +zone = ('kyz015', 0.0022820280561205988) + +[42406] +centroid = (0.65907365814575891, -1.5313211679049896) +station = ('kehr', 0.0012162384193534776) +zone = ('kyz018', 0.0023565763096816527) + +[42408] +centroid = (0.64890533501705505, -1.5305263275103389) +station = ('k2i0', 0.0051193388513125215) +zone = ('kyz013', 0.002509061695029526) + +[42409] +centroid = (0.65517281236096669, -1.5305304290340811) +station = ('kehr', 0.0048543450077158067) +zone = ('kyz015', 0.00037965830542865031) + +[42410] +centroid = (0.65063324588311444, -1.5273685382012905) +station = ('k2i0', 0.0020757355295099376) +zone = ('kyz016', 0.00066522687790905859) + +[42411] +centroid = (0.64919329689034155, -1.5361081173510196) +station = ('k2i0', 0.0089761361738681517) +zone = ('kyz013', 0.0021974986297211459) + +[42413] +centroid = (0.65360234764672964, -1.5265871542951728) +station = ('k2i0', 0.0018784417826039667) +zone = ('kyz016', 0.0026473888575958894) + +[42420] +centroid = (0.65991958432761555, -1.5274249821493002) +station = ('kehr', 0.0023233629431803102) +zone = ('kyz018', 0.00083756924821791739) + +[42431] +centroid = (0.65160947834692495, -1.5268382373613647) +station = ('k2i0', 0.0012132120019399527) +zone = ('kyz016', 0.00093972402204971152) + +[42436] +centroid = (0.6522984819757347, -1.5284814648521172) +station = ('k2i0', 0.0024797021877858397) +zone = ('kyz016', 0.0012344851446492991) + +[42437] +centroid = (0.65740718286936983, -1.5348088593492499) +station = ('kehr', 0.0043835573838587648) +zone = ('kyz014', 0.00017534764032250161) + +[42440] +centroid = (0.64997293546720747, -1.5265453536595874) +station = ('k2i0', 0.0022121942604745441) +zone = ('kyz016', 0.0015922265120713204) + +[42441] +centroid = (0.65206706877021281, -1.5300681960349829) +station = ('k2i0', 0.0037220437508587289) +zone = ('kyz016', 0.0019636164802930836) + +[42442] +centroid = (0.64863168484363476, -1.5270899312927948) +station = ('k2i0', 0.0036160034804073758) +zone = ('kyz016', 0.0026061558608667748) + +[42445] +centroid = (0.64809902780921869, -1.5333021166060032) +station = ('k2i0', 0.0074024937812983988) +zone = ('kyz013', 0.00030680993898963849) + +[42450] +centroid = (0.65268105814777189, -1.5317603276513765) +station = ('k2i0', 0.0051126726408351371) +zone = ('kyz015', 0.0024084495400448647) + +[42451] +centroid = (0.66120983643044484, -1.5252555727956563) +station = ('kevv', 0.0032552808288675854) +zone = ('kyz018', 0.0029476144565834753) + +[42452] +centroid = (0.65775371799235327, -1.5277158761757299) +station = ('kehr', 0.0030887739458064995) +zone = ('kyz018', 0.0019955185164132515) + +[42453] +centroid = (0.64852689527534502, -1.5287463185661074) +station = ('k2i0', 0.0043705544653891929) +zone = ('kyz016', 0.0027239186750533727) + +[42455] +centroid = (0.65612817068692331, -1.5279057505450546) +station = ('kehr', 0.0043551207266392146) +zone = ('kyz015', 0.0023460685566776629) + +[42456] +centroid = (0.65463294711673981, -1.527094975294333) +station = ('k2i0', 0.0029760977187866925) +zone = ('kyz015', 0.0025968861052951871) + +[42458] +centroid = (0.660424961865823, -1.5257832730949967) +station = ('kevv', 0.0037190002591336135) +zone = ('kyz018', 0.0022282162092172202) + +[42459] +centroid = (0.65566445415796093, -1.5362221920709298) +station = ('kehr', 0.006365130321230354) +zone = ('kyz014', 0.0018961008885319511) + +[42461] +centroid = (0.65968902633342708, -1.5339561961964807) +station = ('kehr', 0.00285886842518625) +zone = ('kyz014', 0.0025464957800960743) + +[42462] +centroid = (0.65875675871347439, -1.5324290680075705) +station = ('kehr', 0.0020678924172788417) +zone = ('kyz014', 0.0024824236288596268) + +[42463] +centroid = (0.65402059834867754, -1.5336112493231164) +station = ('kehr', 0.0065324351293629158) +zone = ('kyz015', 0.0026995342332612245) + +[42464] +centroid = (0.64893523250714158, -1.5246524044594596) +station = ('k2i0', 0.0031042380248816432) +zone = ('kyz016', 0.0033977639340434683) + +[42501] +centroid = (0.64675257610447512, -1.4739461914593093) +station = ('ksme', 0.0022860281860010881) +zone = ('kyz079', 0.0019445647752107974) + +[42503] +centroid = (0.64848073131662975, -1.4752334939557026) +station = ('ksme', 0.0021659987012132139) +zone = ('kyz079', 0.0011552274253492762) + +[42516] +centroid = (0.64964734429524784, -1.4797968841778446) +station = ('ksme', 0.0037754414365343859) +zone = ('kyz066', 0.0026383778764943961) + +[42518] +centroid = (0.64476598998997758, -1.4771183273748087) +station = ('ksme', 0.0019666622463317103) +zone = ('kyz079', 0.0029235509423221596) + +[42519] +centroid = (0.64499207994128094, -1.4754140482668214) +station = ('ksme', 0.002054127509870361) +zone = ('kyz079', 0.0026586657783317386) + +[42528] +centroid = (0.64894004961587715, -1.4839382712401468) +station = ('kekq', 0.0061528450190657452) +zone = ('kyz066', 0.0027896607016497468) + +[42533] +centroid = (0.64703298070210058, -1.4764197593416981) +station = ('ksme', 0.00044368224108529548) +zone = ('kyz079', 0.00059301350881664559) + +[42539] +centroid = (0.65116359908291788, -1.482674792488043) +station = ('kdvk', 0.0053548788366605468) +zone = ('kyz066', 0.00039222269102726781) + +[42541] +centroid = (0.65204762580234565, -1.4799507000448227) +station = ('kdvk', 0.0038625742753773491) +zone = ('kyz066', 0.0019616957778995194) + +[42544] +centroid = (0.64629451444228914, -1.4803031867405556) +station = ('kekq', 0.0031017181095765525) +zone = ('kyz079', 0.0035572800227407731) + +[42553] +centroid = (0.64868086822195603, -1.4782461591374476) +station = ('ksme', 0.0022731105283250275) +zone = ('kyz079', 0.0019989958285881685) + +[42565] +centroid = (0.64836995526900576, -1.4816040853518222) +station = ('ksme', 0.0041652634966146069) +zone = ('kyz066', 0.0030743109426683039) + +[42566] +centroid = (0.65063439780042076, -1.4797449955391826) +station = ('ksme', 0.0045621572996038867) +zone = ('kyz066', 0.0021547623789259784) + +[42567] +centroid = (0.65041326458419302, -1.4766305078488766) +station = ('ksme', 0.0036988324432738308) +zone = ('kyz079', 0.0028539575424766715) + +[42602] +centroid = (0.64122749201119178, -1.4854573709144976) +station = ('kekq', 0.0040875613805692419) +zone = ('kyz082', 0.00041672101564730832) + +[42603] +centroid = (0.6419713338850993, -1.484036498370449) +station = ('kekq', 0.0027315996153811643) +zone = ('kyz082', 0.0017761799442239426) + +[42629] +centroid = (0.644246981430312, -1.4859339505200471) +station = ('kekq', 0.0040570486674021177) +zone = ('kyz078', 0.0017590006682937991) + +[42631] +centroid = (0.64124077396679946, -1.4744713784845267) +station = ('kekq', 0.0056130297302002937) +zone = ('kyz084', 7.2062177317183481e-05) + +[42633] +centroid = (0.64231626330517089, -1.4805704839154985) +station = ('kekq', 0.0009964544254369859) +zone = ('kyz083', 2.981666875365047e-05) + +[42634] +centroid = (0.64372704784614299, -1.4736132524511987) +station = ('ksme', 0.0039326658844043624) +zone = ('kyz084', 0.0026465206140271575) + +[42635] +centroid = (0.6401914471139154, -1.4729877962604541) +station = ('kekq', 0.0071214740887701562) +zone = ('kyz084', 0.0015823953603368234) + +[42638] +centroid = (0.64008927553950368, -1.4742876476741693) +station = ('kekq', 0.0062481360258915958) +zone = ('kyz084', 0.0011105997213027258) + +[42642] +centroid = (0.64679599989626468, -1.4841433648805487) +station = ('kekq', 0.0043402726150649253) +zone = ('kyz078', 0.0012239313460051069) + +[42647] +centroid = (0.64028929027178216, -1.4770448141067147) +station = ('kekq', 0.0043444107666487123) +zone = ('kyz084', 0.0022085154281967028) + +[42649] +centroid = (0.63918636435756948, -1.4735659191218846) +station = ('kekq', 0.0072213740701279694) +zone = ('kyz084', 0.0021402007585687066) + +[42653] +centroid = (0.64198625645020369, -1.4739915002066908) +station = ('ksme', 0.0052403030876671053) +zone = ('kyz084', 0.00090984772441290442) + +[42701] +centroid = (0.65805592175233596, -1.4981382525810802) +station = ('kftk', 0.0038626948853569447) +zone = ('kyz028', 0.001749949674876241) + +[42712] +centroid = (0.65482578854579265, -1.5028834188448175) +station = ('kftk', 0.0069376774868405086) +zone = ('kyz027', 0.0034082711771791087) + +[42713] +centroid = (0.6524587032010678, -1.498953879847122) +station = ('kglw', 0.0062106274003418697) +zone = ('kyz063', 0.0014526997631240765) + +[42715] +centroid = (0.64498518589073561, -1.4904322574143822) +station = ('kglw', 0.0078948243906723312) +zone = ('kyz081', 0.0029395569896109165) + +[42716] +centroid = (0.6541485833427263, -1.4941083746046879) +station = ('kftk', 0.0088625661635754246) +zone = ('kyz053', 0.0017132808732939042) + +[42717] +centroid = (0.64207806076885865, -1.490144574793776) +station = ('kglw', 0.0090738784785175716) +zone = ('kyz081', 0.0001350131928477292) + +[42718] +centroid = (0.65249532020877465, -1.4900413560218131) +station = ('kglw', 0.010158624057169215) +zone = ('kyz065', 0.00070757824781628338) + +[42721] +centroid = (0.65315475796005573, -1.5096985106948346) +station = ('kbwg', 0.008047245553977107) +zone = ('kyz027', 0.0022528777066692664) + +[42722] +centroid = (0.650599159602823, -1.4960287254740723) +station = ('kglw', 0.0054023509436211493) +zone = ('kyz063', 0.0023758063086073192) + +[42724] +centroid = (0.65756881781139698, -1.5022194606907737) +station = ('kftk', 0.0041665406863876644) +zone = ('kyz028', 0.0015313388113962173) + +[42726] +centroid = (0.65310098436580177, -1.5036215534920707) +station = ('kglw', 0.0073115263313811045) +zone = ('kyz027', 0.0027644189914293096) + +[42728] +centroid = (0.64781565615186487, -1.4885888406584258) +station = ('kekq', 0.0075794757958198671) +zone = ('kyz077', 0.00026097585452056432) + +[42729] +centroid = (0.65112073379648894, -1.5026674168965906) +station = ('kglw', 0.0051916289132211829) +zone = ('kyz062', 0.0026082313299355645) + +[42731] +centroid = (0.64311581608880197, -1.4932580152865311) +station = ('kglw', 0.006391172960659392) +zone = ('kyz076', 0.0026837569955162816) + +[42732] +centroid = (0.65605100968069263, -1.5033099773140048) +station = ('kftk', 0.005895883084787887) +zone = ('kyz028', 0.0030204903014801219) + +[42733] +centroid = (0.65176882690763205, -1.4867836815196731) +station = ('kdvk', 0.0070926319365521226) +zone = ('kyz065', 0.0020026040269905824) + +[42740] +centroid = (0.65600292585980013, -1.5000809087583051) +station = ('kftk', 0.0054827203403261327) +zone = ('kyz028', 0.0019608277502129201) + +[42741] +centroid = (0.64575834929607656, -1.4876911829175401) +station = ('kekq', 0.0058961731473832768) +zone = ('kyz077', 0.0019223236744433738) + +[42743] +centroid = (0.64974075431681466, -1.4928190998862396) +station = ('kglw', 0.0067860847730226107) +zone = ('kyz064', 0.00069986054600287557) + +[42746] +centroid = (0.64947857095658001, -1.496312533463739) +station = ('kglw', 0.0044074509365695669) +zone = ('kyz063', 0.0026095736946159546) + +[42748] +centroid = (0.65574852666802952, -1.4958718901874879) +station = ('kftk', 0.006758603765262312) +zone = ('kyz053', 0.00046980452858756021) + +[42749] +centroid = (0.64899394538317878, -1.4988578867382625) +station = ('kglw', 0.0028682273114623738) +zone = ('kyz063', 0.0020141268119834368) + +[42753] +centroid = (0.64956622139161513, -1.4867556864384712) +station = ('kekq', 0.0078050886655153563) +zone = ('kyz077', 0.0023843586358038736) + +[42754] +centroid = (0.65402607868252882, -1.5065036156858889) +station = ('kftk', 0.0088813157434419338) +zone = ('kyz027', 0.0004370832594197834) + +[42757] +centroid = (0.65280256797029568, -1.4960881364818102) +station = ('kglw', 0.0072491123616438956) +zone = ('kyz053', 0.0025112968741624244) + +[42758] +centroid = (0.65230635341066123, -1.4869985664571785) +station = ('kdvk', 0.0069384010479549164) +zone = ('kyz065', 0.0017969363086997941) + +[42762] +centroid = (0.65371907526710293, -1.5078449186693392) +station = ('kbwg', 0.0085352900800879199) +zone = ('kyz027', 0.00068894187791200925) + +[42764] +centroid = (0.65326961807812944, -1.4943604176019685) +station = ('kglw', 0.0083460535701597154) +zone = ('kyz053', 0.0022928548792049432) + +[42765] +centroid = (0.65157933651074296, -1.4998521309999535) +station = ('kglw', 0.0052610603902192785) +zone = ('kyz063', 0.00090550629372835526) + +[42776] +centroid = (0.65475168186575294, -1.499710689517372) +station = ('kftk', 0.0067502579685419567) +zone = ('kyz028', 0.0032401374791744498) + +[42782] +centroid = (0.65165012706520387, -1.4947535530159799) +station = ('kglw', 0.0068562192652051549) +zone = ('kyz064', 0.0017830344936372246) + +[42784] +centroid = (0.65364011657174281, -1.4998452544027008) +station = ('kglw', 0.0073202717970146857) +zone = ('kyz063', 0.0027241748956896229) + +[42788] +centroid = (0.65501620396718507, -1.5014698592303344) +station = ('kftk', 0.006518613119746889) +zone = ('kyz028', 0.0030682393445079711) + +[43001] +centroid = (0.69966886462984079, -1.4418860289899151) +station = ('kvta', 0.0023295279814763625) +zone = ('ohz056', 0.001743484546174076) + +[43002] +centroid = (0.69922012302586056, -1.4516055756080537) +station = ('kosu', 0.0012251099147258674) +zone = ('ohz055', 0.0026991806232370295) + +[43003] +centroid = (0.70532694281212605, -1.4482627290384167) +station = ('kdlz', 0.0028378296420400627) +zone = ('ohz046', 0.0023597040524153275) + +[43004] +centroid = (0.69843441070319778, -1.4451114323541858) +station = ('kcmh', 0.0011700886497127071) +zone = ('ohz055', 0.0029355911956283095) + +[43005] +centroid = (0.70312599535889864, -1.4360014594305983) +station = ('k4i3', 0.0033258057477150793) +zone = ('ohz047', 0.0027522077893412898) + +[43006] +centroid = (0.70615536334158513, -1.4337755188624826) +station = ('k4i3', 0.0054229017432409947) +zone = ('ohz038', 0.0034132565625930832) + +[43008] +centroid = (0.6969778636292383, -1.4395634669944088) +station = ('kvta', 0.001457232858558415) +zone = ('ohz056', 0.0027562667061304773) + +[43009] +centroid = (0.70112562114331045, -1.459784450282287) +station = ('kmrt', 0.0039509279272776704) +zone = ('ohz052', 0.0018328212023476305) + +[43010] +centroid = (0.69813105502590855, -1.4594895769051626) +station = ('ksgh', 0.0040294391862098168) +zone = ('ohz053', 0.0025962668767401504) + +[43011] +centroid = (0.70341999607139705, -1.4430323263360398) +station = ('k4i3', 0.0021763941528195477) +zone = ('ohz037', 0.0041461832358521055) + +[43013] +centroid = (0.70220042980327346, -1.443183489302555) +station = ('k4i3', 0.0028074619015340239) +zone = ('ohz056', 0.0036806624701119749) + +[43014] +centroid = (0.7062781821610481, -1.4357517202679306) +station = ('k4i3', 0.0041725524312218746) +zone = ('ohz047', 0.0024235242974514717) + +[43015] +centroid = (0.70332904696407572, -1.4496736357524362) +station = ('kdlz', 0.00080783862048525905) +zone = ('ohz046', 0.00080566974823941743) + +[43016] +centroid = (0.69983269868672549, -1.4512430707224147) +station = ('kosu', 0.00092499256958679377) +zone = ('ohz055', 0.0029189715877790349) + +[43017] +centroid = (0.70016712122470015, -1.4509009338291461) +station = ('kosu', 0.00085676802675669825) +zone = ('ohz055', 0.0030342833641463151) + +[43019] +centroid = (0.7067351268125126, -1.4412669781575251) +station = ('k4i3', 0.0029482368219186841) +zone = ('ohz047', 0.0026539535247493461) + +[43021] +centroid = (0.70147494879309702, -1.4465775263791534) +station = ('kcmh', 0.0033432559525502113) +zone = ('ohz046', 0.0022277778084507918) + +[43022] +centroid = (0.70415376739552049, -1.4371008074198446) +station = ('k4i3', 0.0024115034492098999) +zone = ('ohz047', 0.0014363707805623335) + +[43023] +centroid = (0.69950867831109276, -1.4405318280232928) +station = ('kvta', 0.0014308987532926963) +zone = ('ohz056', 0.00074135118390998512) + +[43025] +centroid = (0.69762361799918371, -1.4401998489462711) +station = ('kvta', 0.0010478768138716182) +zone = ('ohz056', 0.0021582999544539475) + +[43026] +centroid = (0.69849560194677274, -1.4520164261139732) +station = ('kosu', 0.0018416123723286443) +zone = ('ohz055', 0.0026318014475086421) + +[43028] +centroid = (0.70514289784250339, -1.4363582570895836) +station = ('k4i3', 0.0032155231948974598) +zone = ('ohz047', 0.001653341748684894) + +[43029] +centroid = (0.69983299539269828, -1.4563139328778663) +station = ('kmrt', 0.0024565645502283751) +zone = ('ohz054', 0.0035894311623333635) + +[43030] +centroid = (0.69745901599742821, -1.4384273972777004) +station = ('kvta', 0.0011793193138076269) +zone = ('ohz056', 0.002448132222972237) + +[43031] +centroid = (0.7009389232732246, -1.442779166328038) +station = ('k4i3', 0.003529285281941733) +zone = ('ohz056', 0.0027072229192339121) + +[43032] +centroid = (0.70386727159880558, -1.4479046049291997) +station = ('kdlz', 0.0022485705795955682) +zone = ('ohz046', 0.0010706907352261363) + +[43033] +centroid = (0.69745814333280209, -1.4417174999973423) +station = ('kvta', 0.0020781719532219356) +zone = ('ohz056', 0.0027904898748888894) + +[43035] +centroid = (0.70142239692931951, -1.4485380721812113) +station = ('kosu', 0.0021811387516722331) +zone = ('ohz046', 0.001575782215828193) + +[43036] +centroid = (0.70427876787654842, -1.4531802989256657) +station = ('kdlz', 0.0021688373610957478) +zone = ('ohz045', 0.0017332117321244161) + +[43037] +centroid = (0.70309662146758756, -1.4368151319278781) +station = ('k4i3', 0.0027341346943724684) +zone = ('ohz047', 0.0023847142984812996) + +[43040] +centroid = (0.70268704505202206, -1.4549010015819142) +station = ('kmrt', 0.00072716419680194299) +zone = ('ohz045', 0.00069008136948447182) + +[43044] +centroid = (0.69908653552491284, -1.4582299029708283) +station = ('kmrt', 0.0039336922985483951) +zone = ('ohz054', 0.0034497439811800403) + +[43045] +centroid = (0.70107050364553236, -1.4566286681018785) +station = ('kmrt', 0.001706108946478354) +zone = ('ohz045', 0.00256635606326246) + +[43046] +centroid = (0.69632322553340043, -1.4406288683297037) +station = ('kvta', 0.0023284849693731482) +zone = ('ohz065', 0.0027917881025127647) + +[43050] +centroid = (0.70466190255394612, -1.4398189831969008) +station = ('k4i3', 0.00083641932308746295) +zone = ('ohz047', 0.001073100579452422) + +[43054] +centroid = (0.69958159816724108, -1.445113561655873) +station = ('kcmh', 0.0018370533867110006) +zone = ('ohz055', 0.0034393036489469139) + +[43055] +centroid = (0.70022429821099552, -1.4377635612967046) +station = ('kvta', 0.0021576681334071778) +zone = ('ohz056', 0.0014940030879533241) + +[43056] +centroid = (0.69827993161110369, -1.4371213673984331) +station = ('kvta', 0.0016860463730042569) +zone = ('ohz056', 0.0023956559781307821) + +[43060] +centroid = (0.70201249274941879, -1.4585985688687269) +station = ('kmrt', 0.0029526844494623754) +zone = ('ohz052', 0.0030253679419933732) + +[43061] +centroid = (0.70318453370201062, -1.452167205108053) +station = ('kdlz', 0.0011057125037277752) +zone = ('ohz045', 0.0022491796014251116) + +[43062] +centroid = (0.6982552526554805, -1.4430778096163468) +station = ('kcmh', 0.0026909410017234648) +zone = ('ohz056', 0.0030395155150862905) + +[43064] +centroid = (0.69984420040649609, -1.45357587780063) +station = ('kmrt', 0.0023034095717987678) +zone = ('ohz045', 0.0037042620362342698) + +[43065] +centroid = (0.70123035835172254, -1.4502671524178694) +station = ('kosu', 0.0016505833400856549) +zone = ('ohz046', 0.0021239112801672731) + +[43066] +centroid = (0.70496099962786041, -1.4516247044166557) +station = ('kdlz', 0.0018982182284975275) +zone = ('ohz046', 0.002966135715866658) + +[43067] +centroid = (0.70407418038162961, -1.456794945619716) +station = ('kmrt', 0.0026265181843144717) +zone = ('ohz045', 0.001472229434606236) + +[43068] +centroid = (0.69736698478597048, -1.4448649744105115) +station = ('kcmh', 0.0015251830183029833) +zone = ('ohz055', 0.0030141077541176423) + +[43070] +centroid = (0.70189773735110017, -1.4653425734583105) +station = ('kedj', 0.0032969258764799798) +zone = ('ohz052', 0.0028566728218677095) + +[43071] +centroid = (0.70128542348962297, -1.4374437995244467) +station = ('kvta', 0.0032006659396055085) +zone = ('ohz056', 0.0022685696696215642) + +[43072] +centroid = (0.70022040612676362, -1.4653209139222934) +station = ('kedj', 0.0047739111188568866) +zone = ('ohz052', 0.0025168188021677871) + +[43074] +centroid = (0.70284433412421188, -1.4460169615299978) +station = ('kdlz', 0.0036030688505210785) +zone = ('ohz046', 0.0020630800266634702) + +[43076] +centroid = (0.69633408148134779, -1.4381294870276777) +station = ('kvta', 0.002277597857830947) +zone = ('ohz066', 0.0035416355827671835) + +[43077] +centroid = (0.70052367453759012, -1.4545795119336971) +station = ('kmrt', 0.0014524267455082185) +zone = ('ohz045', 0.0028637735097895227) + +[43078] +centroid = (0.70018488867648543, -1.4623029952994999) +station = ('kedj', 0.0044693208822305054) +zone = ('ohz052', 0.00039959439035995207) + +[43080] +centroid = (0.70233071863193486, -1.4386703296562857) +station = ('k4i3', 0.001969661427656472) +zone = ('ohz056', 0.0026939844620925612) + +[43081] +centroid = (0.70005929478351181, -1.4467146918050677) +station = ('kcmh', 0.0019300679106863984) +zone = ('ohz055', 0.0029251225145550844) + +[43082] +centroid = (0.70073547024231964, -1.4466139514006424) +station = ('kcmh', 0.0026038507444960143) +zone = ('ohz046', 0.0027687187546700572) + +[43084] +centroid = (0.70072093164965055, -1.4583397889005336) +station = ('kmrt', 0.0030267099638812208) +zone = ('ohz052', 0.0028462629669715718) + +[43085] +centroid = (0.69989315689201459, -1.4488571881816459) +station = ('kosu', 0.00098289849495670025) +zone = ('ohz055', 0.0022926915635799361) + +[43101] +centroid = (0.68878579426586006, -1.4441924117832554) +station = ('klhq', 0.0050958654221274925) +zone = ('ohz074', 0.0036415873229330713) + +[43102] +centroid = (0.69185546190097513, -1.4444792042859433) +station = ('klhq', 0.0023060223856065914) +zone = ('ohz065', 0.0026291023679618922) + +[43103] +centroid = (0.69346076338708196, -1.4475011895258938) +station = ('klck', 0.0014715122171135803) +zone = ('ohz064', 0.001975802418562381) + +[43105] +centroid = (0.69580622410237458, -1.4418578419224954) +station = ('klhq', 0.002163975767818582) +zone = ('ohz065', 0.0020245677505315047) + +[43106] +centroid = (0.69188897222261347, -1.4559742394455506) +station = ('ktzr', 0.0059048570727752488) +zone = ('ohz063', 0.0015131808136511714) + +[43107] +centroid = (0.69277048566791821, -1.4384048825303499) +station = ('klhq', 0.0035288252578275876) +zone = ('ohz066', 0.0025170751633631808) + +[43109] +centroid = (0.69667740519850752, -1.4456901486275617) +station = ('kcmh', 0.0016086092880585677) +zone = ('ohz055', 0.0025466514870590082) + +[43110] +centroid = (0.69510673104476028, -1.4451339121949514) +station = ('klhq', 0.0022343513148678574) +zone = ('ohz065', 0.0026247204550469369) + +[43111] +centroid = (0.68944123521315404, -1.4354062847023759) +station = ('kuni', 0.0051005258358740591) +zone = ('ohz074', 0.0031846459780345594) + +[43112] +centroid = (0.69460278467653946, -1.4434679256107528) +station = ('klhq', 0.00097746114018840992) +zone = ('ohz065', 0.0012802102395995329) + +[43113] +centroid = (0.69102040912035856, -1.4479910510870511) +station = ('klck', 0.003932822755998727) +zone = ('ohz064', 0.0011861436477416474) + +[43115] +centroid = (0.68926143139361351, -1.4512582201803219) +station = ('klck', 0.0063802170960949971) +zone = ('ohz073', 0.0029742038541252167) + +[43116] +centroid = (0.69414601455799996, -1.4497055927310403) +station = ('klck', 0.0018961510789018319) +zone = ('ohz064', 0.0023185626142272473) + +[43117] +centroid = (0.69409630758090313, -1.4522207867160892) +station = ('ktzr', 0.0024827229102543052) +zone = ('ohz064', 0.0032950515357414159) + +[43119] +centroid = (0.69710069990199375, -1.4522137530392039) +station = ('ktzr', 0.0011534008053114353) +zone = ('ohz054', 0.0027242710463351786) + +[43123] +centroid = (0.69585385413766154, -1.4506190107950714) +station = ('ktzr', 0.00062700101462164089) +zone = ('ohz055', 0.0022427984372685372) + +[43125] +centroid = (0.69530517498071198, -1.4466674806488011) +station = ('klck', 0.00071378912783454345) +zone = ('ohz055', 0.0028127404417584759) + +[43126] +centroid = (0.69491162068767987, -1.4515164241898617) +station = ('ktzr', 0.0015376073869237644) +zone = ('ohz055', 0.0034093061266503668) + +[43127] +centroid = (0.68906640830299581, -1.436789719933969) +station = ('kuni', 0.0048832803621081675) +zone = ('ohz074', 0.0021355193317145419) + +[43128] +centroid = (0.69219272932563058, -1.4589909537911605) +station = ('ksgh', 0.0045634729313462135) +zone = ('ohz063', 0.0025445329885135054) + +[43130] +centroid = (0.69283665109986137, -1.4418891705825687) +station = ('klhq', 0.001168269148651447) +zone = ('ohz065', 0.00098438849951610089) + +[43135] +centroid = (0.68884976058294567, -1.4432724487345294) +station = ('klhq', 0.0049317542429372719) +zone = ('ohz074', 0.0029305319094681342) + +[43136] +centroid = (0.69466402827999185, -1.4453504551952463) +station = ('klck', 0.0016423044156561853) +zone = ('ohz065', 0.0025906723555750898) + +[43137] +centroid = (0.69479532939961941, -1.4484047813862364) +station = ('klck', 0.00073867603766917362) +zone = ('ohz055', 0.0028209645973396535) + +[43138] +centroid = (0.68972528754891615, -1.4383972205349336) +station = ('klhq', 0.0052794281329294236) +zone = ('ohz074', 0.00095141086898377944) + +[43140] +centroid = (0.69603482732780075, -1.4561108463661043) +station = ('ktzr', 0.0039245164626809563) +zone = ('ohz054', 0.00046324300140179015) + +[43142] +centroid = (0.69104068984626676, -1.458872882267263) +station = ('kiln', 0.0038477970592498386) +zone = ('ohz063', 0.00186050488656955) + +[43143] +centroid = (0.69311749202979978, -1.4536558662402492) +station = ('ktzr', 0.003858299090631988) +zone = ('ohz063', 0.0034923910102862615) + +[43144] +centroid = (0.68990727303002164, -1.434555209799226) +station = ('kuni', 0.00558488460271427) +zone = ('ohz066', 0.0036798152474986461) + +[43145] +centroid = (0.69053850626059032, -1.4531573652992944) +station = ('ktzr', 0.0060888414220749499) +zone = ('ohz063', 0.002642952985001485) + +[43146] +centroid = (0.69417889656110765, -1.4510130712335869) +station = ('ktzr', 0.0022220229654270076) +zone = ('ohz064', 0.0027488201155892972) + +[43147] +centroid = (0.69634759032975824, -1.4441555853360386) +station = ('kcmh', 0.0025802303999326471) +zone = ('ohz065', 0.002970603872052635) + +[43148] +centroid = (0.69499562338457832, -1.4398964932689817) +station = ('klhq', 0.002550157173154737) +zone = ('ohz065', 0.0021218128767067626) + +[43149] +centroid = (0.69015505742392713, -1.4412557905970198) +station = ('klhq', 0.0038052593349478226) +zone = ('ohz074', 0.0015531497690994228) + +[43150] +centroid = (0.69424825594558182, -1.4382589904581757) +station = ('kvta', 0.0042522050382059386) +zone = ('ohz066', 0.0023883286791606261) + +[43151] +centroid = (0.69347083393686593, -1.4569384465908148) +station = ('ksgh', 0.0052235800275186733) +zone = ('ohz054', 0.0029954680666106157) + +[43152] +centroid = (0.68758027789821508, -1.4419177067158386) +station = ('klhq', 0.0062258245881246068) +zone = ('ohz074', 0.002556541379449816) + +[43153] +centroid = (0.69365833465840776, -1.4583416389495409) +station = ('ksgh', 0.0041549215033759735) +zone = ('ohz054', 0.0033652910564220743) + +[43154] +centroid = (0.69114813231501948, -1.4456459917974864) +station = ('klhq', 0.0034125338748635043) +zone = ('ohz064', 0.0027212536091334137) + +[43155] +centroid = (0.69175498329593788, -1.4404011203156109) +station = ('klhq', 0.0027343725033358718) +zone = ('ohz065', 0.0024553204604380128) + +[43156] +centroid = (0.69033915475342755, -1.4447188903521198) +station = ('klhq', 0.003732267192934121) +zone = ('ohz065', 0.0039736852378141644) + +[43157] +centroid = (0.69538547757959623, -1.4407030797294984) +station = ('klhq', 0.0022856889875576877) +zone = ('ohz065', 0.0019501719680305282) + +[43158] +centroid = (0.6885149540725356, -1.4374106906285364) +station = ('kuni', 0.0045128831370288619) +zone = ('ohz074', 0.0018392460579431979) + +[43160] +centroid = (0.68986784604221896, -1.4563258185700725) +station = ('kiln', 0.0048859309505670826) +zone = ('ohz063', 0.00061566897947851456) + +[43162] +centroid = (0.69724852928963765, -1.454005769848689) +station = ('ktzr', 0.0024428398651544763) +zone = ('ohz054', 0.0015583114404577926) + +[43164] +centroid = (0.69089273828557507, -1.4506896791764847) +station = ('klck', 0.0047424379918692772) +zone = ('ohz064', 0.001606881193872111) + +[43201] +centroid = (0.69797165410532402, -1.4486223366774973) +station = ('kcmh', 0.0015674081848964178) +zone = ('ohz055', 0.00039108158639139783) + +[43202] +centroid = (0.69847748542913701, -1.4488868238723447) +station = ('kosu', 0.001435310164350585) +zone = ('ohz055', 0.00087978942989396121) + +[43203] +centroid = (0.69766192797626503, -1.4480826808727807) +station = ('kcmh', 0.0012384897587839688) +zone = ('ohz055', 0.00054211031001404346) + +[43204] +centroid = (0.69745611875086988, -1.4500538208233982) +station = ('ktzr', 0.0012885586925577221) +zone = ('ohz055', 0.00098276495154839207) + +[43205] +centroid = (0.69738154083193216, -1.4479612932233046) +station = ('kcmh', 0.0012929276015007142) +zone = ('ohz055', 0.00066886090833201287) + +[43206] +centroid = (0.69712729871979418, -1.4481725478759659) +station = ('kcmh', 0.0015764532480341716) +zone = ('ohz055', 0.00066733449270716977) + +[43207] +centroid = (0.69629350257623879, -1.4479745751789124) +station = ('klck', 0.0014177745875672762) +zone = ('ohz055', 0.0014479700307710791) + +[43209] +centroid = (0.69732214727748676, -1.4474141325028045) +station = ('kcmh', 0.0010281362879860406) +zone = ('ohz055', 0.0010875797408252408) + +[43210] +centroid = (0.69822655944257772, -1.4490286667806545) +station = ('kosu', 0.0015790604391858257) +zone = ('ohz055', 0.00065257811881895794) + +[43211] +centroid = (0.69833789399556245, -1.448108965531316) +station = ('kcmh', 0.001183840016922741) +zone = ('ohz055', 0.00090087288591096811) + +[43212] +centroid = (0.69790733872238797, -1.4493706989541675) +station = ('kosu', 0.0017639211848762186) +zone = ('ohz055', 0.00054294947168226316) + +[43213] +centroid = (0.69755352557642369, -1.446217063528739) +station = ('kcmh', 0.00064394174676869851) +zone = ('ohz055', 0.0019690991465249582) + +[43214] +centroid = (0.69903462943295858, -1.4489072267713003) +station = ('kosu', 0.0010519298327819418) +zone = ('ohz055', 0.001436532711834444) + +[43215] +centroid = (0.69755322887045079, -1.4488494738263522) +station = ('kcmh', 0.0018274985769130506) +zone = ('ohz055', 6.8486576585704361e-05) + +[43217] +centroid = (0.69492762535692065, -1.4472753613739784) +station = ('klck', 0.000141675894772124) +zone = ('ohz055', 0.0029137946023955509) + +[43219] +centroid = (0.69823978903830786, -1.4472505078854299) +station = ('kcmh', 0.00051957350289437237) +zone = ('ohz055', 0.0013383696537731637) + +[43220] +centroid = (0.69898958248496457, -1.4499190814051441) +station = ('kosu', 0.00060878779196116175) +zone = ('ohz055', 0.0016375486233430364) + +[43221] +centroid = (0.69853508129445274, -1.4499519459549592) +station = ('kosu', 0.0010554604968820629) +zone = ('ohz055', 0.0012925433190607201) + +[43222] +centroid = (0.69745437342161776, -1.449242591787071) +station = ('ktzr', 0.0017215580517739501) +zone = ('ohz055', 0.00037975648588866532) + +[43223] +centroid = (0.6968686583779411, -1.4492066380044801) +station = ('ktzr', 0.001466137245567275) +zone = ('ohz055', 0.00080043003374338296) + +[43224] +centroid = (0.69887625825663258, -1.4480099006429725) +station = ('kcmh', 0.0013197088497223996) +zone = ('ohz055', 0.0014067711574114832) + +[43227] +centroid = (0.69715534616087371, -1.4467110440669311) +station = ('kcmh', 0.00098096697506658303) +zone = ('ohz055', 0.0016515017140446616) + +[43228] +centroid = (0.69754488619662625, -1.4508164773466421) +station = ('ktzr', 0.0011543861266834301) +zone = ('ohz055', 0.0015574908205022127) + +[43229] +centroid = (0.69963041502641932, -1.4482427624717737) +station = ('kosu', 0.001404613865455028) +zone = ('ohz055', 0.0020714276269636523) + +[43230] +centroid = (0.69875588289812263, -1.4463696227586558) +station = ('kcmh', 0.00064601363828753955) +zone = ('ohz055', 0.0021813872984886209) + +[43231] +centroid = (0.69951632285321641, -1.4474849230572653) +station = ('kcmh', 0.0015458652848852274) +zone = ('ohz055', 0.0021587136493166903) + +[43232] +centroid = (0.69675505489692879, -1.4463575276269396) +station = ('kcmh', 0.0013878425628706709) +zone = ('ohz055', 0.0020447466904757543) + +[43235] +centroid = (0.70019752486026987, -1.4491054438144495) +station = ('kosu', 0.00096274989290869235) +zone = ('ohz055', 0.0026079246898394288) + +[43240] +centroid = (0.70065994984558577, -1.4483241820813793) +station = ('kosu', 0.0017179795238687857) +zone = ('ohz046', 0.0023514163755088474) + +[43302] +centroid = (0.7086003427308265, -1.4508714028582026) +station = ('kmnn', 0.00087437087177381055) +zone = ('ohz036', 0.00047807928665487384) + +[43310] +centroid = (0.70747488461597052, -1.4623492814312626) +station = ('kedj', 0.0028788738007843604) +zone = ('ohz044', 0.00257719797970112) + +[43311] +centroid = (0.70451320050167632, -1.4618255081227394) +station = ('kedj', 0.00084333325537892453) +zone = ('ohz044', 0.00041808910002484362) + +[43314] +centroid = (0.70946147073046795, -1.4479148674652016) +station = ('kmnn', 0.0015295650032513626) +zone = ('ohz036', 0.0028793569080805778) + +[43315] +centroid = (0.70657853587202368, -1.4464304300297952) +station = ('kmnn', 0.0034450068310966195) +zone = ('ohz037', 0.0012738163661008353) + +[43316] +centroid = (0.71478523109453374, -1.4552677127110507) +station = ('kfdy', 0.003922341587826313) +zone = ('ohz027', 0.0021952403844215577) + +[43317] +centroid = (0.70641724999584699, -1.4430496400022197) +station = ('k4i3', 0.0033075219502761493) +zone = ('ohz037', 0.0017339141294259357) + +[43318] +centroid = (0.70348658038236067, -1.4645518520406946) +station = ('kedj', 0.0016879160969345145) +zone = ('ohz044', 0.0024182122670281104) + +[43319] +centroid = (0.70341449828425329, -1.4586610167493632) +station = ('kmrt', 0.0033275021123857548) +zone = ('ohz045', 0.0027109253322679201) + +[43320] +centroid = (0.70840359176424916, -1.4468437239966676) +station = ('kmnn', 0.0022878328004292542) +zone = ('ohz037', 0.0017799855919951135) + +[43321] +centroid = (0.70611384195868032, -1.4456524320624264) +station = ('kmnn', 0.004195843872019025) +zone = ('ohz037', 0.0012561025049825465) + +[43322] +centroid = (0.70742001146428779, -1.4522507714726387) +station = ('kmnn', 0.002382618116152666) +zone = ('ohz036', 0.0011457999676923593) + +[43323] +centroid = (0.71085834499730161, -1.4529483621213681) +station = ('kmnn', 0.003099363690600182) +zone = ('ohz027', 0.0021127902179437744) + +[43324] +centroid = (0.70589026528149978, -1.4628265766218056) +station = ('kedj', 0.0012631777375860446) +zone = ('ohz044', 0.0011674950990023028) + +[43326] +centroid = (0.70929072516974534, -1.4593555181653171) +station = ('kedj', 0.0053928732222260677) +zone = ('ohz026', 0.00070447785026609994) + +[43330] +centroid = (0.71232983208965805, -1.4559433296644979) +station = ('kfdy', 0.0048176094024030384) +zone = ('ohz027', 0.0016004544334530498) + +[43331] +centroid = (0.70717151148538882, -1.4647089840332517) +station = ('kedj', 0.0028832541571336126) +zone = ('ohz044', 0.0030639470123344894) + +[43332] +centroid = (0.70844490370764379, -1.4551079452713234) +station = ('kmnn', 0.0040648852251742515) +zone = ('ohz036', 0.0027925713287807363) + +[43333] +centroid = (0.70586389335650213, -1.4647608726719135) +station = ('kedj', 0.0018669127245306779) +zone = ('ohz044', 0.0023150038283803313) + +[43334] +centroid = (0.7051087417490417, -1.445113020603805) +station = ('kdlz', 0.0046814993715822801) +zone = ('ohz037', 0.0021694119484312164) + +[43336] +centroid = (0.70320769422118445, -1.4587868898950171) +station = ('kmrt', 0.0033324278666967068) +zone = ('ohz044', 0.0029770476842988637) + +[43337] +centroid = (0.71002283843107938, -1.4532769727129338) +station = ('kmnn', 0.0028783693974559405) +zone = ('ohz036', 0.002157230206431653) + +[43338] +centroid = (0.70797827247883061, -1.4444403008969162) +station = ('kmnn', 0.0041621596719802817) +zone = ('ohz037', 0.00083188523055556626) + +[43340] +centroid = (0.70762465131908414, -1.4569309591283239) +station = ('kmrt', 0.005896174785601279) +zone = ('ohz026', 0.0031810257774834419) + +[43341] +centroid = (0.7085437766097693, -1.4541261975670765) +station = ('kmnn', 0.0033130516137916226) +zone = ('ohz036', 0.0020526261153244463) + +[43342] +centroid = (0.70635632055165976, -1.4518343359131127) +station = ('kmnn', 0.0029771706964092084) +zone = ('ohz036', 0.0020487066580958399) + +[43343] +centroid = (0.70352754325990496, -1.4657050259840723) +station = ('kedj', 0.0023903203472917392) +zone = ('ohz044', 0.0031524586780139361) + +[43344] +centroid = (0.70565291795652108, -1.4546379455570539) +station = ('kmrt', 0.0036821900300922743) +zone = ('ohz045', 0.0023216495283624929) + +[43345] +centroid = (0.70705382393392691, -1.4588129302074571) +station = ('kedj', 0.0039570462312476795) +zone = ('ohz026', 0.0028079847984446263) + +[43347] +centroid = (0.70647182644155682, -1.4601351218355978) +station = ('kedj', 0.0028099587740069184) +zone = ('ohz044', 0.0021031740028492388) + +[43348] +centroid = (0.70620683310122656, -1.4641415600401357) +station = ('kedj', 0.0018306494409997881) +zone = ('ohz044', 0.0020882757994893802) + +[43351] +centroid = (0.71253904470709462, -1.4539160250185514) +station = ('kmnn', 0.0048037400017596852) +zone = ('ohz027', 0.00029569856346006702) + +[43356] +centroid = (0.70624880826973702, -1.4491925182908316) +station = ('kmnn', 0.0026840283642276565) +zone = ('ohz036', 0.0027289163555064134) + +[43357] +centroid = (0.70255748926164652, -1.4616575027289425) +station = ('kedj', 0.0022850404821835777) +zone = ('ohz052', 0.0020434460669941749) + +[43358] +centroid = (0.70536705047833692, -1.4580070942385186) +station = ('kmrt', 0.0042150181063526342) +zone = ('ohz045', 0.0029859101359112155) + +[43359] +centroid = (0.7133770296408547, -1.4565624328567655) +station = ('kfdy', 0.0037469424725410845) +zone = ('ohz027', 0.0020592071313274016) + +[43360] +centroid = (0.70394609066782576, -1.4598548568643126) +station = ('kedj', 0.002435073534998727) +zone = ('ohz044', 0.0018915727537978171) + +[43402] +centroid = (0.72287256324949989, -1.4600839138753441) +station = ('ktol', 0.0034472942071441981) +zone = ('ohz006', 0.001069654652034576) + +[43403] +centroid = (0.72216451807855075, -1.4597430859790148) +station = ('ktdz', 0.0038736425802160419) +zone = ('ohz006', 0.00032451073169328926) + +[43406] +centroid = (0.72141259533020663, -1.4561817940001978) +station = ('ktdz', 0.0041154618484006032) +zone = ('ohz006', 0.0025353986061233758) + +[43407] +centroid = (0.72043407648507596, -1.4529762524828151) +station = ('ktdz', 0.0058979249903032731) +zone = ('ohz008', 0.0019386366870446869) + +[43408] +centroid = (0.72556534448593935, -1.4549668877611772) +station = ('ktdz', 0.0015678445491389113) +zone = ('ohz007', 0.0028916177371500987) + +[43410] +centroid = (0.72102815165586986, -1.4478829977530601) +station = ('ktdz', 0.0081911457653770781) +zone = ('ohz008', 0.0025766620424933087) + +[43412] +centroid = (0.72653923820855215, -1.4542144414140574) +station = ('ktdz', 0.0023785498171621168) +zone = ('ohz007', 0.0027533791485418319) + +[43413] +centroid = (0.71983001803096081, -1.4599956700283634) +station = ('kfdy', 0.0039591007440966074) +zone = ('ohz006', 0.0021015339252553685) + +[43416] +centroid = (0.72403128733989885, -1.4532873050621054) +station = ('ktdz', 0.0031715064955762057) +zone = ('ohz007', 0.001837135159521558) + +[43420] +centroid = (0.72183435414395103, -1.4505477490017125) +station = ('ktdz', 0.0060881109076269639) +zone = ('ohz008', 0.00045587519509262127) + +[43430] +centroid = (0.7246992422979297, -1.4550816431594957) +station = ('ktdz', 0.00167104492138859) +zone = ('ohz007', 0.0029311959766206205) + +[43431] +centroid = (0.7224049546363055, -1.4544755775767408) +station = ('ktdz', 0.0036294126895751152) +zone = ('ohz008', 0.0025632560900383113) + +[43432] +centroid = (0.72541571740916588, -1.4530297293710961) +station = ('ktdz', 0.0030153297480590047) +zone = ('ohz007', 0.0014496333644972712) + +[43433] +centroid = (0.72439356533273536, -1.4465334393622482) +station = ('cwnb', 0.0078724867734403584) +zone = ('ohz009', 0.0042269663345436692) + +[43434] +centroid = (0.72768050900643122, -1.4563845663526946) +station = ('ktdz', 0.0022622052786357141) +zone = ('ohz003', 0.003066781700975527) + +[43435] +centroid = (0.72126275881392288, -1.4540836813464981) +station = ('ktdz', 0.0047664098492046095) +zone = ('ohz008', 0.0022659308456025795) + +[43437] +centroid = (0.72001264928388953, -1.4591355543196882) +station = ('kfdy', 0.0042223857535974695) +zone = ('ohz006', 0.0019046169272524404) + +[43438] +centroid = (0.72610246956324054, -1.4435008425204454) +station = ('cwnb', 0.0050969520275891142) +zone = ('ohz009', 0.0043313819812994762) + +[43439] +centroid = (0.72461995199001161, -1.4493438557902718) +station = ('ktdz', 0.0058375476506724823) +zone = ('ohz007', 0.0014227794278598711) + +[43440] +centroid = (0.72477006775897557, -1.4447283849432504) +station = ('cwnb', 0.0067134143191580897) +zone = ('ohz009', 0.0035212781826665274) + +[43442] +centroid = (0.72302309789748442, -1.4524010094146502) +station = ('ktdz', 0.004264364885801751) +zone = ('ohz008', 0.0015342289972133081) + +[43443] +centroid = (0.72363673820919305, -1.456830463069994) +station = ('ktdz', 0.0018464040262201129) +zone = ('ohz006', 0.0026499338729948168) + +[43445] +centroid = (0.72576827391806864, -1.4537965746845449) +station = ('ktdz', 0.0024581396867305455) +zone = ('ohz007', 0.0021093062239681964) + +[43446] +centroid = (0.72751442347481154, -1.4452847086423235) +station = ('cwnb', 0.0051642669861873729) +zone = ('ohz007', 0.0050885103357612869) + +[43447] +centroid = (0.72540920733105585, -1.4564001521429149) +station = ('ktdz', 0.00049737823853290212) +zone = ('ohz003', 0.0029538603771668758) + +[43449] +centroid = (0.72491161396131232, -1.4509894220222224) +station = ('ktdz', 0.0045771505031280378) +zone = ('ohz007', 0.00015927241371507919) + +[43450] +centroid = (0.72258151214343735, -1.4571972789188856) +station = ('ktdz', 0.0028955328940579346) +zone = ('ohz006', 0.0018558191667056914) + +[43451] +centroid = (0.72114039378006556, -1.4594005651133108) +station = ('ktdz', 0.0046766858797536856) +zone = ('ohz006', 0.00076088523425780943) + +[43452] +centroid = (0.72458726197312162, -1.4482907066663262) +station = ('cwnb', 0.0086984649861565969) +zone = ('ohz007', 0.0022005230577273925) + +[43456] +centroid = (0.7268745508644453, -1.4455281820729768) +station = ('cwnb', 0.0056646662282886368) +zone = ('ohz009', 0.0056236963011408033) + +[43457] +centroid = (0.72025069474056891, -1.4560839508423311) +station = ('ktdz', 0.0052754214751353319) +zone = ('ohz006', 0.0030468950527220129) + +[43458] +centroid = (0.72484302252170896, -1.4523472009138112) +station = ('ktdz', 0.0035825251313894705) +zone = ('ohz007', 0.00088115157787908502) + +[43460] +centroid = (0.72607777315432487, -1.458484371975769) +station = ('ktdz', 0.0012246355680845013) +zone = ('ohz003', 0.0012647776533094895) + +[43462] +centroid = (0.72053797593544722, -1.4612396534527223) +station = ('kfdy', 0.004720232826202363) +zone = ('ohz006', 0.0018875045880299742) + +[43463] +centroid = (0.72446287235733209, -1.4574901451673703) +station = ('ktdz', 0.0010625076842276234) +zone = ('ohz003', 0.0027643863389584214) + +[43464] +centroid = (0.72265146493985721, -1.4472987313326626) +station = ('cwnb', 0.009567790555058726) +zone = ('ohz008', 0.003013457428854041) + +[43465] +centroid = (0.72545434154551247, -1.4573551963096063) +station = ('ktdz', 0.00022256248000243836) +zone = ('ohz003', 0.0022748997160049566) + +[43466] +centroid = (0.72073998034307296, -1.4576086006637032) +station = ('ktdz', 0.004753104948347027) +zone = ('ohz006', 0.0018305435421029593) + +[43467] +centroid = (0.71982968641840295, -1.4570678976614353) +station = ('kfdy', 0.0046270022509791002) +zone = ('ohz006', 0.0027579733327798479) + +[43468] +centroid = (0.72601974095669608, -1.4545834563778066) +station = ('ktdz', 0.0019301515584110324) +zone = ('ohz007', 0.0027491936587677075) + +[43469] +centroid = (0.72362432891821138, -1.4549745846631783) +station = ('ktdz', 0.0024211350349606291) +zone = ('ohz008', 0.0033931277240885527) + +[43501] +centroid = (0.72732503779767754, -1.4741364323477766) +station = ('kjym', 0.0046315203011850379) +zone = ('ohz001', 0.002562365963612815) + +[43502] +centroid = (0.72485523982647293, -1.4712592221692788) +station = ('kdfi', 0.0038864913088881032) +zone = ('ohz002', 0.0025034745418681982) + +[43504] +centroid = (0.72772852301415369, -1.4632273042180635) +station = ('ktol', 0.0020201345931164304) +zone = ('ohz003', 0.0026730969832974415) + +[43505] +centroid = (0.7247295761203294, -1.4788395187232481) +station = ('kdfi', 0.0051252219035641871) +zone = ('ohz001', 0.0019736375356429656) + +[43506] +centroid = (0.72372191027669042, -1.4758003768967503) +station = ('kdfi', 0.0028293800595476214) +zone = ('ohz001', 0.0016916111374636448) + +[43511] +centroid = (0.72016478963478581, -1.4628441346340808) +station = ('kfdy', 0.0047101652777749746) +zone = ('ohz006', 0.0030537651488340449) + +[43512] +centroid = (0.72087993829579056, -1.4723297198659895) +station = ('kdfi', 0.0011141259705103122) +zone = ('ohz004', 0.0017715797649898724) + +[43515] +centroid = (0.72578146860721382, -1.4662618383753361) +station = ('ktol', 0.0027495832634877723) +zone = ('ohz002', 0.0015895437363497647) + +[43516] +centroid = (0.71933795735494599, -1.4646013146716961) +station = ('kfdy', 0.0047633037232570601) +zone = ('ohz005', 0.0028840377950071442) + +[43517] +centroid = (0.72315879724682697, -1.4787921679406415) +station = ('kdfi', 0.0042460573178089425) +zone = ('ohz001', 0.0028686866073151631) + +[43518] +centroid = (0.72599567286631106, -1.4793017691756389) +station = ('kjym', 0.0060963233683171674) +zone = ('ohz001', 0.0023019457926625364) + +[43519] +centroid = (0.72290418861554606, -1.4731812834613303) +station = ('kdfi', 0.0015403263878794628) +zone = ('ohz004', 0.0019917127183903568) + +[43521] +centroid = (0.72711270104087988, -1.4712775481264249) +station = ('kadg', 0.0045561461932898161) +zone = ('ohz002', 0.0024179066037192782) + +[43522] +centroid = (0.7229000521852188, -1.4632691397602338) +station = ('ktol', 0.002911348822472922) +zone = ('ohz005', 0.0033483408075869162) + +[43523] +centroid = (0.72146788736090983, -1.4658890185938176) +station = ('ktol', 0.0049600437521784731) +zone = ('ohz005', 0.0010360527881269645) + +[43524] +centroid = (0.71954896766151211, -1.4667475809594583) +station = ('kfdy', 0.0061143016066851465) +zone = ('ohz005', 0.0019041007633427988) + +[43525] +centroid = (0.72372838544821538, -1.4609182510709675) +station = ('ktol', 0.0023897721342637556) +zone = ('ohz006', 0.0021183576514054764) + +[43526] +centroid = (0.72104448793766851, -1.4787356018195843) +station = ('kdfi', 0.0038437712696046964) +zone = ('ohz015', 0.0039193649599210513) + +[43527] +centroid = (0.71988040568646583, -1.4688255001537127) +station = ('kdfi', 0.0039245695314904187) +zone = ('ohz005', 0.00192853924261658) + +[43528] +centroid = (0.72656058358530407, -1.4617058308959299) +station = ('ktol', 0.0010316395017920101) +zone = ('ohz003', 0.0011969338008484894) + +[43529] +centroid = (0.71885931826087901, -1.4622645107894936) +station = ('kfdy', 0.0033444199080938297) +zone = ('ohz017', 0.0035772246823193091) + +[43531] +centroid = (0.72666860201271, -1.474727575365427) +station = ('kjym', 0.0051336016443870704) +zone = ('ohz001', 0.0017777699857682715) + +[43532] +centroid = (0.72344763178473948, -1.4656396634035851) +station = ('ktol', 0.0032562858647165473) +zone = ('ohz005', 0.0023730518817773267) + +[43533] +centroid = (0.72765783717944788, -1.4674986484964694) +station = ('kadg', 0.0030534383707500712) +zone = ('ohz002', 0.0016927159601262012) + +[43534] +centroid = (0.72168685636886509, -1.4648021497087231) +station = ('ktol', 0.0044043223165060371) +zone = ('ohz005', 0.0018706880324673954) + +[43535] +centroid = (0.72094804104320331, -1.4664611375226213) +station = ('ktol', 0.0056259606278508904) +zone = ('ohz005', 0.00076292362602804959) + +[43536] +centroid = (0.72099191862059842, -1.4771226732446465) +station = ('kdfi', 0.0026478599194319813) +zone = ('ohz004', 0.0018816994776054655) + +[43537] +centroid = (0.72560585357787821, -1.4606062036540035) +station = ('ktol', 0.0014895530803410075) +zone = ('ohz003', 0.00087953055804825865) + +[43540] +centroid = (0.72767743722694778, -1.4648203709461141) +station = ('ktol', 0.0025381034565230246) +zone = ('ohz002', 0.0030774505064870075) + +[43541] +centroid = (0.7208341583095107, -1.4631014136191174) +station = ('ktol', 0.0049470381662478557) +zone = ('ohz005', 0.0031815714144367434) + +[43542] +centroid = (0.72547533785641394, -1.4619755191719483) +station = ('ktol', 0.00054133231875479345) +zone = ('ohz003', 0.0016721290607895328) + +[43543] +centroid = (0.72617022324480307, -1.4773399841898123) +station = ('kdfi', 0.005515100532693302) +zone = ('ohz001', 0.0010983834994197333) + +[43545] +centroid = (0.72240720611104059, -1.4682990215848488) +station = ('kdfi', 0.0041323421633794183) +zone = ('ohz005', 0.0012606548303638358) + +[43547] +centroid = (0.72417480576429039, -1.4639178786432001) +station = ('ktol', 0.0018778090628662647) +zone = ('ohz003', 0.003614366096991747) + +[43548] +centroid = (0.71881968183356626, -1.4691329224481593) +station = ('kdfi', 0.00426026707940938) +zone = ('ohz016', 0.0029056245476781727) + +[43549] +centroid = (0.72206377767412566, -1.4751654784747525) +station = ('kdfi', 0.0013224292457167473) +zone = ('ohz004', 0.00091376044616878617) + +[43551] +centroid = (0.72462494363167218, -1.4586066322898712) +station = ('ktdz', 0.0014368834122621796) +zone = ('ohz003', 0.0021097130667553921) + +[43553] +centroid = (0.72485665354316708, -1.4700705133223306) +station = ('kdfi', 0.004369207299833062) +zone = ('ohz002', 0.0017831209614053768) + +[43554] +centroid = (0.72707662508524129, -1.4759113449305921) +station = ('kjym', 0.0045988376542073182) +zone = ('ohz001', 0.0017426428468122379) + +[43555] +centroid = (0.7231619737460655, -1.4705153279354939) +station = ('kdfi', 0.0029308779204068234) +zone = ('ohz005', 0.0030000872380025806) + +[43556] +centroid = (0.72087726794203488, -1.4759142072705653) +station = ('kdfi', 0.0017872989149603175) +zone = ('ohz004', 0.0010240417365793997) + +[43557] +centroid = (0.72409148374580024, -1.4729263955773688) +station = ('kdfi', 0.0027414258315227834) +zone = ('ohz001', 0.0028567485943790339) + +[43558] +centroid = (0.72596497252476844, -1.4639543036646894) +station = ('ktol', 0.0010426003044831484) +zone = ('ohz003', 0.0029021507314257533) + +[43560] +centroid = (0.72781261297751476, -1.4615186792402386) +station = ('kduh', 0.00125050606457691) +zone = ('ohz003', 0.0017531353666095811) + +[43565] +centroid = (0.7229148700305682, -1.4615405831223511) +station = ('ktol', 0.0029567398974434983) +zone = ('ohz006', 0.0018399876588193148) + +[43566] +centroid = (0.72418341023750266, -1.4617724152068936) +station = ('ktol', 0.001695766620540419) +zone = ('ohz003', 0.002544146608164659) + +[43567] +centroid = (0.72571394181845406, -1.4688876513283764) +station = ('ktol', 0.004714038546979645) +zone = ('ohz002', 0.00055096411346415889) + +[43569] +centroid = (0.721690748453097, -1.4623978888509308) +station = ('ktol', 0.0040777669691954999) +zone = ('ohz006', 0.0021875342744677464) + +[43570] +centroid = (0.72584957135462658, -1.473775934590777) +station = ('kdfi', 0.004447986321782226) +zone = ('ohz001', 0.0019805408001881504) + +[43571] +centroid = (0.72454404762084235, -1.4629841274933832) +station = ('ktol', 0.0012578481109792039) +zone = ('ohz003', 0.0028399558121810619) + +[43604] +centroid = (0.7269562671800236, -1.4580647075571269) +station = ('ktdz', 0.0016610190743532962) +zone = ('ohz003', 0.0016302709798566991) + +[43605] +centroid = (0.72689518065620395, -1.4574697073618295) +station = ('ktdz', 0.0014528091712452805) +zone = ('ohz003', 0.0020389010483270837) + +[43606] +centroid = (0.72733343283137963, -1.459294466548082) +station = ('kduh', 0.0012345527512197271) +zone = ('ohz003', 0.0011130098476384949) + +[43607] +centroid = (0.72690579225805607, -1.459167371671952) +station = ('kduh', 0.0016614903581443892) +zone = ('ohz003', 0.00086866932307892481) + +[43608] +centroid = (0.72745132982235183, -1.4578482343700019) +station = ('kduh', 0.0019182840921722392) +zone = ('ohz003', 0.001992270630287452) + +[43609] +centroid = (0.72652286702016844, -1.4587615477142781) +station = ('ktdz', 0.0016488355354202869) +zone = ('ohz003', 0.0010207069873019203) + +[43610] +centroid = (0.72741886669826472, -1.4584210688837993) +station = ('kduh', 0.0015858475325477102) +zone = ('ohz003', 0.0016228614422425017) + +[43611] +centroid = (0.72789199055189546, -1.4570886496262416) +station = ('kduh', 0.0022816253539641789) +zone = ('ohz003', 0.0027073868122612175) + +[43612] +centroid = (0.72794998784293918, -1.4582091859126072) +station = ('kduh', 0.0014617065833629956) +zone = ('ohz003', 0.002101728598652174) + +[43613] +centroid = (0.72791129389342246, -1.4591603729016513) +station = ('kduh', 0.00084711119932190924) +zone = ('ohz003', 0.0016666242631541289) + +[43614] +centroid = (0.72613029011151742, -1.459620441692477) +station = ('ktol', 0.002247494321899743) +zone = ('ohz003', 0.00046306735104620974) + +[43615] +centroid = (0.72693446801766637, -1.4603836916276667) +station = ('kduh', 0.0015126713661475727) +zone = ('ohz003', 0.00056450755594714) + +[43616] +centroid = (0.72707575242061517, -1.455760087546331) +station = ('ktdz', 0.0018721512674615614) +zone = ('ohz003', 0.0033250157221310426) + +[43617] +centroid = (0.72718507984496017, -1.4613338837790375) +station = ('kduh', 0.0015648379032316302) +zone = ('ohz003', 0.0011968760438736867) + +[43619] +centroid = (0.72612173799818258, -1.4568348787530017) +station = ('ktdz', 0.00066793137215588063) +zone = ('ohz003', 0.0024710819403855038) + +[43620] +centroid = (0.72719464424926117, -1.458297133053615) +station = ('kduh', 0.0018035877673611388) +zone = ('ohz003', 0.0015727550631812902) + +[43623] +centroid = (0.72785369802810662, -1.4599690013973929) +station = ('kduh', 0.00057801734111283254) +zone = ('ohz003', 0.0014519376869458961) + +[43701] +centroid = (0.69759448845396799, -1.4310134829613239) +station = ('kzzv', 0.0012631862610796621) +zone = ('ohz057', 0.00062733439432817862) + +[43711] +centroid = (0.69536284065919785, -1.4237855509300399) +station = ('kzzv', 0.0047236898978714756) +zone = ('ohz068', 0.0020927395025740832) + +[43713] +centroid = (0.69791779324460734, -1.4167632884978105) +station = ('kphd', 0.0089597650190602045) +zone = ('ohz059', 0.0025352544363489607) + +[43716] +centroid = (0.69515153364665894, -1.4139243882963941) +station = ('khlg', 0.0076219505172101312) +zone = ('ohz069', 0.002016636402304883) + +[43717] +centroid = (0.69446169225980825, -1.4234150175298415) +station = ('kzzv', 0.0053943878666312317) +zone = ('ohz068', 0.0014060116038912978) + +[43718] +centroid = (0.69838957319471395, -1.4136868140786127) +station = ('khlg', 0.005352958483700875) +zone = ('ohz059', 0.00013205361978428211) + +[43719] +centroid = (0.69808532739950635, -1.4150972146471494) +station = ('khlg', 0.0064473204120988545) +zone = ('ohz059', 0.0012532854251963814) + +[43720] +centroid = (0.69457259048047992, -1.4290132309187833) +station = ('kzzv', 0.0027049384912146215) +zone = ('ohz067', 0.0030844017456136152) + +[43721] +centroid = (0.697258913998687, -1.4357958247381284) +station = ('kvta', 0.0029367784345427717) +zone = ('ohz066', 0.0037358686803895202) + +[43722] +centroid = (0.69672119550944012, -1.422750029631539) +station = ('kzzv', 0.0051461348625503533) +zone = ('ohz058', 0.0023407819708261657) + +[43723] +centroid = (0.69744405852573854, -1.4231325708969911) +station = ('kzzv', 0.0048267159618190243) +zone = ('ohz058', 0.0017078852952742858) + +[43724] +centroid = (0.69326045194883057, -1.4224205987352252) +station = ('kzzv', 0.0067018594373533542) +zone = ('ohz068', 0.00097760476358783725) + +[43725] +centroid = (0.69891687206832653, -1.4240024429961853) +station = ('kzzv', 0.0044724182339418639) +zone = ('ohz058', 0.0012770318022671543) + +[43727] +centroid = (0.69571249992154249, -1.4274190471800117) +station = ('kzzv', 0.0021814615402549102) +zone = ('ohz057', 0.0028006852409650958) + +[43728] +centroid = (0.68905850196148422, -1.4293389268104979) +station = ('kuni', 0.0065318015239301504) +zone = ('ohz067', 0.0025118159282768735) + +[43730] +centroid = (0.69147573061561873, -1.4329404486285733) +station = ('kzzv', 0.0063832560499872204) +zone = ('ohz066', 0.0027470998050136207) + +[43731] +centroid = (0.69333803183408182, -1.4322376394453802) +station = ('kzzv', 0.0044765816910782054) +zone = ('ohz066', 0.0023569164248181829) + +[43732] +centroid = (0.69542862211870571, -1.4249345709897976) +station = ('kzzv', 0.0039008679692441378) +zone = ('ohz068', 0.0028652406366806516) + +[43733] +centroid = (0.69686471393383165, -1.4231077348617351) +station = ('kzzv', 0.0048594064661543982) +zone = ('ohz058', 0.0022539706176207958) + +[43734] +centroid = (0.69611666581642673, -1.4292680489895744) +station = ('kzzv', 0.0011486676837116252) +zone = ('ohz057', 0.0015816720037994097) + +[43735] +centroid = (0.69580847557710968, -1.433238323972011) +station = ('kzzv', 0.0032652409883618624) +zone = ('ohz066', 0.0027599873036847087) + +[43736] +centroid = (0.69920057533823821, -1.4178689894855341) +station = ('kphd', 0.0074657542692683721) +zone = ('ohz058', 0.0034274792424705824) + +[43738] +centroid = (0.69561125337163432, -1.4336398544197251) +station = ('kzzv', 0.0036292527219143824) +zone = ('ohz066', 0.00242601230000038) + +[43739] +centroid = (0.69644105271120238, -1.4361670737233201) +station = ('kvta', 0.0031221586352812732) +zone = ('ohz066', 0.0029749684696233911) + +[43740] +centroid = (0.69729748577515605, -1.43488485013505) +station = ('kvta', 0.0035759604158133742) +zone = ('ohz066', 0.0037671656094095981) + +[43746] +centroid = (0.69752809612922206, -1.434378914091482) +station = ('kvta', 0.003885995198738018) +zone = ('ohz057', 0.0032031732996304473) + +[43747] +centroid = (0.69570242937175852, -1.415896680164318) +station = ('khlg', 0.0082942736347689609) +zone = ('ohz069', 0.0023956589084570467) + +[43748] +centroid = (0.6927627887659169, -1.4366903583396531) +station = ('kvta', 0.0060077082373463583) +zone = ('ohz066', 0.0013297684991567323) + +[43749] +centroid = (0.70104254347091544, -1.4235165084258448) +station = ('kphd', 0.0055775716933972484) +zone = ('ohz058', 0.0021938239676049147) + +[43750] +centroid = (0.69807701963226687, -1.4226735667570092) +station = ('kzzv', 0.0052379073904599508) +zone = ('ohz058', 0.00099685275892153835) + +[43754] +centroid = (0.69395701285330147, -1.4177998919004475) +station = ('kpkb', 0.008007402289854762) +zone = ('ohz069', 0.002109279473498918) + +[43755] +centroid = (0.69906166458307195, -1.42126307892201) +station = ('kphd', 0.0072179392359479405) +zone = ('ohz058', 0.00082620655448946369) + +[43756] +centroid = (0.69275179319162938, -1.427600666141974) +station = ('kzzv', 0.004719936119096998) +zone = ('ohz067', 0.0014649817486077686) + +[43758] +centroid = (0.69163729574447597, -1.4302196374043468) +station = ('kzzv', 0.0056548317695114588) +zone = ('ohz067', 0.001255222630886793) + +[43759] +centroid = (0.69927895807494533, -1.4150221829426062) +station = ('khlg', 0.0059372408038382814) +zone = ('ohz059', 0.0014454094405841114) + +[43760] +centroid = (0.69618796251637083, -1.4345688931805616) +station = ('kvta', 0.0042696113877430976) +zone = ('ohz066', 0.0027022267345544375) + +[43761] +centroid = (0.69234319416044499, -1.4337584320891055) +station = ('kzzv', 0.0059370439360061072) +zone = ('ohz066', 0.0016822186736656906) + +[43762] +centroid = (0.69858335710156294, -1.4266528476383862) +station = ('kzzv', 0.0025027871075558837) +zone = ('ohz058', 0.0033319092013385019) + +[43764] +centroid = (0.69311108667144494, -1.4345302515909222) +station = ('kzzv', 0.0057076969619257517) +zone = ('ohz066', 0.00072721357775282647) + +[43766] +centroid = (0.69103295803768028, -1.4355836799675488) +station = ('klhq', 0.0061953382154166176) +zone = ('ohz066', 0.0025203824956922614) + +[43767] +centroid = (0.69925342390798861, -1.4273942111447557) +station = ('kzzv', 0.0025291066928854696) +zone = ('ohz057', 0.0027557359613829065) + +[43768] +centroid = (0.69879124326876785, -1.4214811229054616) +station = ('kphd', 0.0074947482089388591) +zone = ('ohz058', 0.00070485998332604576) + +[43771] +centroid = (0.69526171628233746, -1.4302170717703464) +station = ('kzzv', 0.0020878031684356461) +zone = ('ohz057', 0.0022661403086044135) + +[43772] +centroid = (0.69614350898032251, -1.4229076154097016) +station = ('kzzv', 0.0051212955151204963) +zone = ('ohz068', 0.0023023872201851192) + +[43773] +centroid = (0.6978244181296257, -1.4189266764655351) +station = ('kphd', 0.0085975598538433149) +zone = ('ohz058', 0.0028847993695102149) + +[43777] +centroid = (0.69496799482251925, -1.433157358148011) +station = ('kzzv', 0.0036678045345766726) +zone = ('ohz066', 0.0021721092671045852) + +[43778] +centroid = (0.69811930896004271, -1.4203290834260978) +station = ('kphd', 0.0081727992193289904) +zone = ('ohz058', 0.0017960322478249207) + +[43779] +centroid = (0.69498260322835848, -1.4211826192434931) +station = ('kzzv', 0.0067216172787611531) +zone = ('ohz068', 0.0010062323144105945) + +[43780] +centroid = (0.69653788357810309, -1.421360904626584) +station = ('kzzv', 0.00622548300697122) +zone = ('ohz068', 0.0025012967706557789) + +[43782] +centroid = (0.69153077830022669, -1.4348782353371852) +station = ('kzzv', 0.0070975478006749665) +zone = ('ohz066', 0.0020373360063125896) + +[43783] +centroid = (0.69471942503045025, -1.4360316885332429) +station = ('kvta', 0.0044783312582957384) +zone = ('ohz066', 0.0013068250919606099) + +[43786] +centroid = (0.69307834429467752, -1.4185514655829414) +station = ('kpkb', 0.0069820478220673802) +zone = ('ohz069', 0.0026226386843660509) + +[43787] +centroid = (0.68993345296880149, -1.4277438180472228) +station = ('kpkb', 0.0058778228668419849) +zone = ('ohz067', 0.0017039329801749367) + +[43788] +centroid = (0.69473748918820832, -1.419545186245857) +station = ('kzzv', 0.0079899469631607069) +zone = ('ohz068', 0.0017701917584105672) + +[43793] +centroid = (0.69362238087581674, -1.4154374316782405) +station = ('kpkb', 0.0085530995228301314) +zone = ('ohz069', 0.00032569838391343367) + +[43802] +centroid = (0.69972276039714232, -1.4285878941800723) +station = ('kzzv', 0.0025456957573214744) +zone = ('ohz057', 0.0025180970779375201) + +[43804] +centroid = (0.70599950543938206, -1.426648920647569) +station = ('kphd', 0.0043154615500615254) +zone = ('ohz038', 0.0031569756697533051) + +[43805] +centroid = (0.70499028625270899, -1.4306911555550657) +station = ('kphd', 0.0074965298247665442) +zone = ('ohz048', 0.0017412265057538802) + +[43811] +centroid = (0.7012714434023144, -1.4297871971755802) +station = ('kzzv', 0.0040219888105338516) +zone = ('ohz048', 0.0021241953194755664) + +[43812] +centroid = (0.70273532085913215, -1.4290913693093952) +station = ('kzzv', 0.0054822143612813495) +zone = ('ohz048', 0.00084080429686006172) + +[43821] +centroid = (0.70051847345641916, -1.4311789227211205) +station = ('kzzv', 0.0035252732511996247) +zone = ('ohz048', 0.0030707042909183802) + +[43822] +centroid = (0.70125315235175356, -1.4342073656793035) +station = ('kvta', 0.0048245583011559305) +zone = ('ohz056', 0.0044000146748006284) + +[43824] +centroid = (0.70448312847866434, -1.4269541263738654) +station = ('kphd', 0.0048829894483351059) +zone = ('ohz048', 0.0024088369217897206) + +[43830] +centroid = (0.69922811663383466, -1.4335693431179444) +station = ('kzzv', 0.0037357836725278562) +zone = ('ohz057', 0.003090600118991487) + +[43832] +centroid = (0.70294554576753487, -1.4239279523437098) +station = ('kphd', 0.0040136686555856662) +zone = ('ohz039', 0.0032406218592098187) + +[43836] +centroid = (0.70177460437237194, -1.4262786665000511) +station = ('kzzv', 0.0051171055606101332) +zone = ('ohz048', 0.0031212741272842225) + +[43837] +centroid = (0.70333957129946523, -1.4220582858358035) +station = ('kphd', 0.0030478714918175166) +zone = ('ohz039', 0.0024896396287451762) + +[43840] +centroid = (0.70529990766201267, -1.4242125980914178) +station = ('kphd', 0.0026407986460359363) +zone = ('ohz039', 0.0017754824771626038) + +[43842] +centroid = (0.70052156268919519, -1.4313926033814421) +station = ('kzzv', 0.0035935829034753814) +zone = ('ohz048', 0.0031286124002878773) + +[43843] +centroid = (0.7042230918734097, -1.4342349593347776) +station = ('k4i3', 0.0045935153111117928) +zone = ('ohz048', 0.0035003797791929784) + +[43844] +centroid = (0.70381082765079617, -1.4322300821697189) +station = ('kzzv', 0.0068938979568623883) +zone = ('ohz048', 0.001918483515879203) + +[43845] +centroid = (0.70276076775962626, -1.4264824685968065) +station = ('kphd', 0.0054663243487794548) +zone = ('ohz048', 0.0025897685758697053) + +[43901] +centroid = (0.70203401265909582, -1.4112001736801263) +station = ('khlg', 0.0029181549781355305) +zone = ('ohz050', 0.003086952948861064) + +[43902] +centroid = (0.6960870475790204, -1.4128788139014021) +station = ('khlg', 0.0063896911159827584) +zone = ('ohz059', 0.0023712697579452682) + +[43903] +centroid = (0.70637199360834269, -1.4132506388452468) +station = ('kphd', 0.005887669722474162) +zone = ('ohz040', 0.0024295545130452452) + +[43905] +centroid = (0.69992043638822332, -1.4109288447946113) +station = ('khlg', 0.0027749853974343248) +zone = ('ohz059', 0.0024919982775950316) + +[43906] +centroid = (0.69832492619922015, -1.4103801830909544) +station = ('khlg', 0.0034456707052142039) +zone = ('ohz059', 0.0024031054349363044) + +[43907] +centroid = (0.70257553596611211, -1.4141455040593294) +station = ('kphd', 0.0063944570881313088) +zone = ('ohz049', 0.0011192234849147495) + +[43908] +centroid = (0.70696776174851106, -1.4115179108704521) +station = ('khlg', 0.0066342813134148068) +zone = ('ohz050', 0.002594845542031854) + +[43910] +centroid = (0.70463622876064924, -1.4106856157100534) +station = ('khlg', 0.0042945072625918349) +zone = ('ohz050', 0.00089483356309962112) + +[43912] +centroid = (0.69962268321783305, -1.4101471118226432) +station = ('khlg', 0.0024040895825473887) +zone = ('ohz059', 0.0028507739674877583) + +[43913] +centroid = (0.70280363304605531, -1.4073586341833169) +station = ('khlg', 0.0017733066211040479) +zone = ('wvz002', 0.00079456603364325227) + +[43914] +centroid = (0.69420924783679983, -1.4128932303210235) +station = ('khlg', 0.0079418354150414937) +zone = ('ohz069', 0.0019350761329182554) + +[43915] +centroid = (0.69400324662518686, -1.4119604041957101) +station = ('khlg', 0.0077879117565447433) +zone = ('ohz069', 0.0025420216097920743) + +[43917] +centroid = (0.70220683516162841, -1.4101849331075338) +station = ('khlg', 0.0022877982564309491) +zone = ('ohz050', 0.0026889832210556749) + +[43920] +centroid = (0.70995449133757138, -1.4066484946172653) +station = ('kbvi', 0.0030136757501325025) +zone = ('wvz001', 0.0027387303559187949) + +[43925] +centroid = (0.70594435303501901, -1.411313724801261) +station = ('khlg', 0.0056597405833273004) +zone = ('ohz050', 0.0017342461062807371) + +[43926] +centroid = (0.70699903804870667, -1.4071125427587856) +station = ('kpit', 0.0051714142089645566) +zone = ('wvz001', 0.00067390020746025704) + +[43927] +centroid = (0.70022147077760721, -1.4126194405212633) +station = ('khlg', 0.0039174809313163974) +zone = ('ohz059', 0.0019394248063916944) + +[43928] +centroid = (0.69831337211957201, -1.4122296735927078) +station = ('khlg', 0.0044653543461090038) +zone = ('ohz059', 0.00098966259105783363) + +[43930] +centroid = (0.70796158713118162, -1.409577366541622) +station = ('kbvi', 0.0059735356656585529) +zone = ('wvz001', 0.0026104543308506129) + +[43931] +centroid = (0.69243040826316715, -1.4114936682471417) +station = ('khlg', 0.0091112903510169371) +zone = ('wvz011', 0.0036347336446459506) + +[43932] +centroid = (0.70715489595090975, -1.4095408193470853) +station = ('khlg', 0.0062892757114443318) +zone = ('ohz050', 0.0023036801210127886) + +[43933] +centroid = (0.69700119868133747, -1.4118980610348288) +station = ('khlg', 0.0052058159544391986) +zone = ('ohz059', 0.0018747770260926107) + +[43934] +centroid = (0.69949185333710351, -1.4100388141425568) +station = ('khlg', 0.0024193957887873141) +zone = ('ohz059', 0.0028742417505121637) + +[43935] +centroid = (0.70036162071654229, -1.4094474267788111) +station = ('khlg', 0.0015613609728371584) +zone = ('wvz003', 0.001899825547575666) + +[43938] +centroid = (0.70344614110359205, -1.408015157234747) +station = ('khlg', 0.0024255516067476454) +zone = ('wvz002', 0.0013993328200916045) + +[43939] +centroid = (0.70104903609573277, -1.4102263672239763) +station = ('khlg', 0.0020008599662676607) +zone = ('wvz003', 0.0027100950262788121) + +[43940] +centroid = (0.69863782882751768, -1.4107022137912397) +station = ('khlg', 0.0033727301107378) +zone = ('ohz059', 0.00216704261011271) + +[43942] +centroid = (0.69570616437635779, -1.4111839246647904) +station = ('khlg', 0.0059963824392936663) +zone = ('ohz059', 0.0032394749920982291) + +[43943] +centroid = (0.70178938731113627, -1.4090579216496437) +station = ('khlg', 0.0013369742353402047) +zone = ('wvz003', 0.0024872973503425114) + +[43944] +centroid = (0.70562504504836665, -1.4096848090103749) +station = ('khlg', 0.0048503729749585752) +zone = ('ohz050', 0.00078107825662100184) + +[43945] +centroid = (0.70924648107320731, -1.4110639681853008) +station = ('kbvi', 0.0063462441096133393) +zone = ('ohz041', 0.0024818462449180661) + +[43946] +centroid = (0.69206083479405733, -1.4131042755341747) +station = ('kpkb', 0.0085821027613618515) +zone = ('ohz069', 0.0020579995057435803) + +[43947] +centroid = (0.69736618193451461, -1.4103584362884747) +station = ('khlg', 0.0042346606789192354) +zone = ('wvz004', 0.0025508249524931713) + +[43948] +centroid = (0.70284639361272905, -1.409846548672157) +station = ('khlg', 0.002486493757054013) +zone = ('ohz050', 0.0020179310430856992) + +[43950] +centroid = (0.69982273285669661, -1.4124019201365869) +station = ('khlg', 0.0038622573520546329) +zone = ('ohz059', 0.0016523053382117966) + +[43951] +centroid = (0.70008475913729851, -1.4139196759074137) +station = ('khlg', 0.0049188718844604346) +zone = ('ohz059', 0.0017055140960563712) + +[43952] +centroid = (0.7052319969008175, -1.4078311995315866) +station = ('khlg', 0.0041948693853972319) +zone = ('ohz050', 0.0013598749082476746) + +[43953] +centroid = (0.70428437038344727, -1.4085246537499891) +station = ('khlg', 0.0033183490854013504) +zone = ('ohz050', 0.00096233051435716207) + +[43961] +centroid = (0.70729457465094692, -1.4072638977115184) +station = ('kbvi', 0.0052049128963655043) +zone = ('wvz001', 0.00075079372413767661) + +[43962] +centroid = (0.70986099404954195, -1.4116209202029046) +station = ('kphd', 0.0079678483567543375) +zone = ('ohz041', 0.002162355947973467) + +[43963] +centroid = (0.70112265408358199, -1.4084267233256598) +station = ('khlg', 0.00063095187558222894) +zone = ('wvz003', 0.0016651642723919289) + +[43964] +centroid = (0.7065250764370351, -1.407825806464198) +station = ('khlg', 0.005487005850632303) +zone = ('wvz001', 0.0013707482831611625) + +[43967] +centroid = (0.69859342765134691, -1.4126711371737073) +station = ('khlg', 0.0045813939773806499) +zone = ('ohz059', 0.00067318358695104663) + +[43968] +centroid = (0.70916928516039157, -1.4081987833253493) +station = ('kbvi', 0.0044269036616755263) +zone = ('wvz001', 0.0024258461342794089) + +[43970] +centroid = (0.70621608334626207, -1.4117815952138433) +station = ('khlg', 0.0060756047520232753) +zone = ('ohz050', 0.002181953653823814) + +[43971] +centroid = (0.70090865926399504, -1.4087144408528509) +station = ('khlg', 0.000855755473044544) +zone = ('wvz003', 0.0016640027582437524) + +[43972] +centroid = (0.6999223038905229, -1.4132470085604028) +station = ('khlg', 0.0044538422168970164) +zone = ('ohz059', 0.0015287656382461739) + +[43973] +centroid = (0.70145246895233138, -1.4185395275308579) +station = ('kphd', 0.0051728750112410736) +zone = ('ohz049', 0.0030585628621537355) + +[43974] +centroid = (0.70131238882656632, -1.411754333170927) +station = ('khlg', 0.0031797512343122946) +zone = ('ohz059', 0.0032022585188420626) + +[43976] +centroid = (0.70465150039160429, -1.4123352136525757) +station = ('khlg', 0.0051037339851067679) +zone = ('ohz050', 0.0021345996309327987) + +[43977] +centroid = (0.70048529474733867, -1.4151731190163188) +station = ('kphd', 0.0072946555505325333) +zone = ('ohz059', 0.002434195605067076) + +[43983] +centroid = (0.70060015486541249, -1.4171913304968624) +station = ('kphd', 0.0063725257733946742) +zone = ('ohz049', 0.0030237438334237659) + +[43985] +centroid = (0.70099288885369615, -1.4160335663375518) +station = ('kphd', 0.0064956624076666861) +zone = ('ohz049', 0.0023335371325120639) + +[43986] +centroid = (0.7048546218099514, -1.4136407373863602) +station = ('kphd', 0.0057716471621619882) +zone = ('ohz049', 0.0020388572387714911) + +[43988] +centroid = (0.70513270511967163, -1.415825715076932) +station = ('kphd', 0.0040930634167066207) +zone = ('ohz049', 0.0019145370207382844) + +[44001] +centroid = (0.72197867541979854, -1.435706516240304) +station = ('klpr', 0.001043062542236317) +zone = ('ohz010', 0.0018864414296837809) + +[44003] +centroid = (0.72633161384073486, -1.4064900187211844) +station = ('khzy', 0.0032810884624954826) +zone = ('ohz014', 0.0023319700540028387) + +[44004] +centroid = (0.73052396451719537, -1.410084070530061) +station = ('khzy', 0.0017417384977565335) +zone = ('ohz089', 0.00037585050076744422) + +[44010] +centroid = (0.72894157920416724, -1.411054805206728) +station = ('khzy', 0.0019453960552326479) +zone = ('ohz014', 0.0020220280692213664) + +[44011] +centroid = (0.72335443120268295, -1.4312591555068348) +station = ('kcle', 0.0021775902211594372) +zone = ('ohz010', 0.0032378851874462259) + +[44012] +centroid = (0.72428270201864875, -1.4314731154198368) +station = ('kcle', 0.0027820746609992235) +zone = ('ohz010', 0.0039501439342652525) + +[44017] +centroid = (0.72205227595435506, -1.4287571911175156) +station = ('kcle', 0.00053659474141372039) +zone = ('ohz011', 0.0028191823197930058) + +[44021] +centroid = (0.72332133976006519, -1.4162380840193005) +station = ('kpov', 0.0041348084021744762) +zone = ('ohz013', 0.0010783133915224289) + +[44022] +centroid = (0.72337385671725773, -1.4207498299488759) +station = ('kcgf', 0.0023492433135306897) +zone = ('ohz013', 0.0030776953018782529) + +[44023] +centroid = (0.72230016506801586, -1.4187041295326135) +station = ('kpov', 0.0029134212297648623) +zone = ('ohz013', 0.0024447121406977177) + +[44024] +centroid = (0.72566889487046016, -1.417075283554897) +station = ('kcgf', 0.003803265238804145) +zone = ('ohz013', 0.0013778838905115012) + +[44026] +centroid = (0.7248028974022056, -1.4193838829163878) +station = ('kcgf', 0.0021783558135210174) +zone = ('ohz013', 0.0019738266947334684) + +[44028] +centroid = (0.72082996951930578, -1.4300778643092074) +station = ('kcle', 0.0020801276531896402) +zone = ('ohz010', 0.0028044628235473139) + +[44030] +centroid = (0.73123426116287948, -1.4064766844056991) +station = ('khzy', 0.002477840295900818) +zone = ('ohz089', 0.0025785346307302024) + +[44032] +centroid = (0.72726552207018447, -1.4079590274460028) +station = ('khzy', 0.0020289247377528854) +zone = ('ohz014', 0.0009672629171434998) + +[44035] +centroid = (0.7219405748822274, -1.4335623967075213) +station = ('klpr', 0.00065438653716864384) +zone = ('ohz010', 0.0012123508564301567) + +[44039] +centroid = (0.72232461713083629, -1.4316015716527832) +station = ('klpr', 0.002171172174930275) +zone = ('ohz010', 0.0022912464607454043) + +[44040] +centroid = (0.72493407634878548, -1.4208854071251709) +station = ('kcgf', 0.0010917461534950849) +zone = ('ohz012', 0.0036122773866062922) + +[44041] +centroid = (0.729144456276419, -1.4128422492535728) +station = ('khzy', 0.0032543706342027532) +zone = ('ohz089', 0.0027897798871617209) + +[44044] +centroid = (0.72023252586305564, -1.4318993597297587) +station = ('klpr', 0.0023618743417619784) +zone = ('ohz010', 0.0015229118387895589) + +[44045] +centroid = (0.72865154038907076, -1.4186794505769902) +station = ('kcgf', 0.0041014702716123484) +zone = ('ohz012', 0.001095249610605094) + +[44046] +centroid = (0.72505418990790771, -1.4149159796576223) +station = ('kpov', 0.0061095894410499443) +zone = ('ohz013', 0.0016205944615918519) + +[44047] +centroid = (0.72828978599500993, -1.4091068257752843) +station = ('khzy', 0.0010738538271538192) +zone = ('ohz014', 0.00084863041845781501) + +[44048] +centroid = (0.73042474254921941, -1.407421448583096) +station = ('khzy', 0.0014097708983818295) +zone = ('ohz089', 0.0019049984201548198) + +[44049] +centroid = (0.72023680191972306, -1.4365069940484387) +station = ('klpr', 0.0021678987176748997) +zone = ('ohz010', 0.0020896507745391214) + +[44050] +centroid = (0.71992620312603817, -1.4334074987364072) +station = ('klpr', 0.0019095711304534591) +zone = ('ohz010', 0.00087021317514835805) + +[44052] +centroid = (0.72360263447560913, -1.4340430080236433) +station = ('klpr', 0.001924656445670939) +zone = ('ohz010', 0.0028655816097476073) + +[44053] +centroid = (0.72303095187911837, -1.435105756458475) +station = ('klpr', 0.0014468210541544672) +zone = ('ohz010', 0.0024869038838430317) + +[44054] +centroid = (0.72381596607008036, -1.432746682175017) +station = ('klpr', 0.0024466348492925821) +zone = ('ohz010', 0.0031751794025856686) + +[44055] +centroid = (0.72316073456229668, -1.433510385895812) +station = ('klpr', 0.0016024952887926541) +zone = ('ohz010', 0.0024286507769728685) + +[44056] +centroid = (0.72108131438488554, -1.4224717892421861) +station = ('kpov', 0.0036933823292635013) +zone = ('ohz011', 0.0028066372461381783) + +[44057] +centroid = (0.72885153766805688, -1.4147692149208222) +station = ('khzy', 0.0047074680979475869) +zone = ('ohz012', 0.0025531023194743088) + +[44060] +centroid = (0.7273926693061924, -1.4194438175229012) +station = ('kcgf', 0.0027886670805214934) +zone = ('ohz012', 0.0012394793567911031) + +[44062] +centroid = (0.72347056541111077, -1.4143571775910113) +station = ('kpov', 0.0049175727853326282) +zone = ('ohz013', 0.0020337439297960767) + +[44064] +centroid = (0.72602316180202997, -1.4142808368895292) +station = ('khzy', 0.0054051323836380692) +zone = ('ohz013', 0.0025709633498303256) + +[44065] +centroid = (0.72389143410693657, -1.4175845531773366) +station = ('kpov', 0.004482176048675653) +zone = ('ohz013', 0.00069681462865032952) + +[44067] +centroid = (0.72110517303576027, -1.4231926625831375) +station = ('kbkl', 0.0041198152850092495) +zone = ('ohz011', 0.0024193697560171436) + +[44070] +centroid = (0.7228286682188122, -1.4297552576502688) +station = ('kcle', 0.00093983935330832545) +zone = ('ohz010', 0.0036892969481887024) + +[44072] +centroid = (0.72380814699503138, -1.419387617920987) +station = ('kcgf', 0.0026579107162406201) +zone = ('ohz013', 0.0019760335535913944) + +[44074] +centroid = (0.72063763423573612, -1.4352055892916891) +station = ('klpr', 0.0012285025333223468) +zone = ('ohz010', 0.0010546056465302956) + +[44076] +centroid = (0.72485050998420009, -1.4106398880836513) +station = ('khzy', 0.0046922556039110924) +zone = ('ohz014', 0.002801316391386074) + +[44077] +centroid = (0.72775976440776435, -1.4173773476885398) +station = ('kcgf', 0.0042376008635098888) +zone = ('ohz012', 0.00035549816904458193) + +[44080] +centroid = (0.7219776282222472, -1.41472806005706) +station = ('kpov', 0.0035860884892380501) +zone = ('ohz013', 0.0028106024477155401) + +[44081] +centroid = (0.72892379429908938, -1.4162123229595411) +station = ('khzy', 0.0057756889358030862) +zone = ('ohz012', 0.0016986915339366759) + +[44082] +centroid = (0.72888218564972185, -1.4061687559657698) +station = ('khzy', 0.0017644528337921344) +zone = ('ohz014', 0.0026994034812103385) + +[44084] +centroid = (0.72730273248983712, -1.4119567215509885) +station = ('khzy', 0.0032477863488580387) +zone = ('ohz014', 0.0020408078543088454) + +[44085] +centroid = (0.72611407600276634, -1.4115270738490249) +station = ('khzy', 0.0038795488304997345) +zone = ('ohz014', 0.0021722067000039223) + +[44086] +centroid = (0.72737863685900628, -1.4147394046971982) +station = ('khzy', 0.005034275566877789) +zone = ('ohz012', 0.0023542279318890694) + +[44087] +centroid = (0.72105085838943828, -1.421373017211593) +station = ('kpov', 0.0029615607437400051) +zone = ('ohz011', 0.0034738222380359752) + +[44089] +centroid = (0.72242815006206451, -1.4377578191634655) +station = ('klpr', 0.0026465221097240607) +zone = ('ohz010', 0.003410406268148169) + +[44090] +centroid = (0.71850868161415349, -1.4351612579286885) +station = ('klpr', 0.0032400652504033932) +zone = ('ohz010', 0.0024543883684707305) + +[44092] +centroid = (0.72605538058002173, -1.4218970348662119) +station = ('kcgf', 0.00061083419863104519) +zone = ('ohz012', 0.0034627644260037641) + +[44093] +centroid = (0.7248489391878733, -1.4069859365748458) +station = ('khzy', 0.0045470791913010686) +zone = ('ohz014', 0.0030926714901232722) + +[44094] +centroid = (0.72624413793862497, -1.4203371468472419) +station = ('kcgf', 0.0015603458795717849) +zone = ('ohz012', 0.0023878155525273513) + +[44095] +centroid = (0.72697022981403969, -1.4214261799406089) +station = ('kcgf', 0.0015906014129366077) +zone = ('ohz012', 0.0027794222044610476) + +[44099] +centroid = (0.72517042883609062, -1.4134253113967865) +station = ('khzy', 0.0055083362366202442) +zone = ('ohz013', 0.0026953110041845552) + +[44101] +centroid = (0.72412630306437753, -1.4253665225263736) +station = ('kbkl', 0.00076718766593613676) +zone = ('ohz011', 0.0011416768077349407) + +[44102] +centroid = (0.72394899506566734, -1.4266029312217792) +station = ('kbkl', 0.0013301184660285258) +zone = ('ohz011', 0.0014155799690722759) + +[44103] +centroid = (0.72465049525192149, -1.4249238546681904) +station = ('kbkl', 0.00040231526854610494) +zone = ('ohz011', 0.0016741647422859271) + +[44104] +centroid = (0.72402968163698711, -1.4246540616724173) +station = ('kbkl', 0.0010096434973536547) +zone = ('ohz011', 0.0011205608522100357) + +[44105] +centroid = (0.72342982942636913, -1.4247173124045096) +station = ('kbkl', 0.0015389166126996972) +zone = ('ohz011', 0.00057555955709437043) + +[44106] +centroid = (0.72440206508619265, -1.4242845929230625) +station = ('kbkl', 0.00093830546332372841) +zone = ('ohz011', 0.0015738266480401796) + +[44107] +centroid = (0.72402994343637483, -1.4277087020226726) +station = ('kcle', 0.0015943147714740865) +zone = ('ohz011', 0.0021398245455068522) + +[44108] +centroid = (0.72509326782985994, -1.4243177192722654) +station = ('kbkl', 0.00079970436181318514) +zone = ('ohz011', 0.0022072480638434398) + +[44109] +centroid = (0.72339666817058124, -1.4258374472651469) +station = ('kbkl', 0.0015402470908752002) +zone = ('ohz011', 0.00061973281714743664) + +[44110] +centroid = (0.72552272354560565, -1.4235719575361807) +station = ('kcgf', 0.0010630921917233345) +zone = ('ohz011', 0.0028148915838452095) + +[44111] +centroid = (0.72358324386761952, -1.4274805002229742) +station = ('kcle', 0.0012959821939031179) +zone = ('ohz011', 0.0018000795907312966) + +[44112] +centroid = (0.72493718303485399, -1.4237373798426849) +station = ('kbkl', 0.0012095914848488305) +zone = ('ohz011', 0.0022388212294638461) + +[44113] +centroid = (0.72401913984830502, -1.4258845362483656) +station = ('kbkl', 0.00096086594992932431) +zone = ('ohz011', 0.0011451812133272377) + +[44114] +centroid = (0.72463330375878932, -1.4255906402556224) +station = ('kbkl', 0.00031546493010256506) +zone = ('ohz011', 0.0016670455559216696) + +[44115] +centroid = (0.72419899602772309, -1.4254317978403985) +station = ('kbkl', 0.00069697172795362664) +zone = ('ohz011', 0.001219625684667964) + +[44116] +centroid = (0.72383977236107755, -1.4286188563210027) +station = ('kcle', 0.0012744482195621606) +zone = ('ohz011', 0.0026903138714408073) + +[44117] +centroid = (0.72554944453645365, -1.4228561631033527) +station = ('kcgf', 0.00053169829336803661) +zone = ('ohz011', 0.0031088721423308441) + +[44118] +centroid = (0.72435242792226584, -1.4234306905865244) +station = ('kcgf', 0.0014751713773138453) +zone = ('ohz011', 0.0019076961470297421) + +[44119] +centroid = (0.72587109126430371, -1.4232703820947286) +station = ('kcgf', 0.00092524834706255821) +zone = ('ohz011', 0.0032272291086529775) + +[44120] +centroid = (0.72385692894762477, -1.423838835832103) +station = ('kbkl', 0.0015358681859958612) +zone = ('ohz011', 0.0013461037028559637) + +[44121] +centroid = (0.72477406456296256, -1.4230041146640442) +station = ('kcgf', 0.00094755318440953773) +zone = ('ohz011', 0.0024332662516740118) + +[44122] +centroid = (0.72377920943603336, -1.4226604942409116) +station = ('kcgf', 0.0017381191899466736) +zone = ('ohz011', 0.0020696211166436281) + +[44123] +centroid = (0.7261389818511923, -1.4228643661508373) +station = ('kcgf', 0.00085097457656549294) +zone = ('ohz011', 0.003606472376478325) + +[44124] +centroid = (0.72425224602320137, -1.421877574445052) +station = ('kcgf', 0.0012401368536367214) +zone = ('ohz011', 0.0028001622009394653) + +[44125] +centroid = (0.72266329827218578, -1.4243431661727595) +station = ('kbkl', 0.0023548044075126801) +zone = ('ohz011', 0.00072987003227452439) + +[44126] +centroid = (0.72329620701883646, -1.4286043875415038) +station = ('kcle', 0.00073095336954895806) +zone = ('ohz011', 0.0025608108394409193) + +[44127] +centroid = (0.72384067993228862, -1.4250676523452623) +station = ('kbkl', 0.0010740918604863552) +zone = ('ohz011', 0.0008572228483540098) + +[44128] +centroid = (0.72326219055171503, -1.4231156062966617) +station = ('kcgf', 0.002327591873645834) +zone = ('ohz011', 0.0015959434726673671) + +[44129] +centroid = (0.72239973610184205, -1.426550222278369) +station = ('kcle', 0.0015108708473860826) +zone = ('ohz011', 0.0011638545405245945) + +[44130] +centroid = (0.72215863631897159, -1.4274579680223312) +station = ('kcle', 0.00091645523113352187) +zone = ('ohz011', 0.0018780719948013121) + +[44131] +centroid = (0.72227246669278666, -1.4250918600619873) +station = ('kcle', 0.0026123978354081396) +zone = ('ohz011', 0.00072370228349760799) + +[44132] +centroid = (0.72616678494617659, -1.4223964608316702) +station = ('kcgf', 0.00071526861632948508) +zone = ('ohz012', 0.003744311666083341) + +[44133] +centroid = (0.72105946286265066, -1.4267235509263845) +station = ('kcle', 0.0020381838425690452) +zone = ('ohz011', 0.0022390645117221653) + +[44134] +centroid = (0.72222583149517328, -1.4259512950922546) +station = ('kcle', 0.0019805895545880123) +zone = ('ohz011', 0.00094399757003092884) + +[44135] +centroid = (0.72305346662646908, -1.4279795073094121) +station = ('kcle', 0.0006493459550850209) +zone = ('ohz011', 0.0020751780432022525) + +[44136] +centroid = (0.7210214844981272, -1.4278266513735225) +station = ('kcle', 0.0016379621495527976) +zone = ('ohz011', 0.0027791491323772705) + +[44137] +centroid = (0.72272717732280867, -1.4235346423967732) +station = ('kbkl', 0.002558775759561145) +zone = ('ohz011', 0.0012859955077414115) + +[44138] +centroid = (0.72210662550726223, -1.4298312318326079) +station = ('kcle', 0.0010641712395370803) +zone = ('ohz010', 0.0032835106367890016) + +[44139] +centroid = (0.72227417711545361, -1.4214703018640993) +station = ('kcgf', 0.0032415612244080091) +zone = ('ohz011', 0.0028973356540057814) + +[44140] +centroid = (0.72409898866158384, -1.4299734238067681) +station = ('kcle', 0.0018666586863057134) +zone = ('ohz010', 0.0044210779708282986) + +[44141] +centroid = (0.72081515167395649, -1.424477416898823) +station = ('kcle', 0.0035245495110371164) +zone = ('ohz011', 0.0022442744389973316) + +[44142] +centroid = (0.72256037620619562, -1.4282785869300338) +station = ('kcle', 0.00020517110782648968) +zone = ('ohz011', 0.0023388498341328666) + +[44143] +centroid = (0.72525505985151983, -1.4220158568816874) +station = ('kcgf', 0.00024270332397088881) +zone = ('ohz011', 0.0032961846643134716) + +[44144] +centroid = (0.72322019792991221, -1.4266273134714293) +station = ('kcle', 0.0015845200001012962) +zone = ('ohz011', 0.0010848663561705463) + +[44145] +centroid = (0.72343075445087268, -1.4299510486857574) +station = ('kcle', 0.0013593247101809163) +zone = ('ohz010', 0.0039507432616830368) + +[44146] +centroid = (0.7222385898520054, -1.4229534303025664) +station = ('kbkl', 0.0032062572313402839) +zone = ('ohz011', 0.0018542506700875649) + +[44147] +centroid = (0.72113784559935767, -1.4255720874056736) +station = ('kcle', 0.0026539001377600319) +zone = ('ohz011', 0.0018720566924515937) + +[44149] +centroid = (0.72109871531752801, -1.4286604998769552) +station = ('kcle', 0.0014698531885560646) +zone = ('ohz011', 0.0032049110155786997) + +[44201] +centroid = (0.71608520468129677, -1.4169330217675671) +station = ('kpov', 0.0034494730185332381) +zone = ('ohz022', 0.0024300214762192304) + +[44202] +centroid = (0.72108429889790648, -1.4196223821586726) +station = ('kpov', 0.0020243974345418862) +zone = ('ohz022', 0.0031792240640325922) + +[44203] +centroid = (0.71594955769183166, -1.4246887413646543) +station = ('kakr', 0.0021438518751913127) +zone = ('ohz021', 0.0022300320913207542) + +[44212] +centroid = (0.71985237569867888, -1.4281807961320445) +station = ('kcle', 0.0027282145397835335) +zone = ('ohz020', 0.0024030654176546199) + +[44214] +centroid = (0.71474580410673116, -1.4311657105786828) +station = ('kbjj', 0.0021382389806410499) +zone = ('ohz031', 0.0026023830064657205) + +[44215] +centroid = (0.71676757605894892, -1.4293508474092891) +station = ('kbjj', 0.0035135139042931488) +zone = ('ohz020', 0.00087145823134773077) + +[44216] +centroid = (0.71463865834395135, -1.4238700423191288) +station = ('kakr', 0.002152569291481281) +zone = ('ohz021', 0.0032109222822543073) + +[44217] +centroid = (0.71475224437167106, -1.4296578159181299) +station = ('kbjj', 0.0015459476670138621) +zone = ('ohz031', 0.0021787422773538478) + +[44221] +centroid = (0.7180107391785594, -1.4220078283671285) +station = ('kakr', 0.0018472619620123741) +zone = ('ohz021', 0.00078399939082541648) + +[44223] +centroid = (0.7185462061930713, -1.4229853872811706) +station = ('kakr', 0.0025256437504155614) +zone = ('ohz021', 0.00076396633475964929) + +[44224] +centroid = (0.71866132811053274, -1.4213354577260899) +station = ('kakr', 0.0025258611101935976) +zone = ('ohz021', 0.0015330627679874798) + +[44230] +centroid = (0.71496129990947488, -1.4257177002251675) +station = ('kakr', 0.0031500934715789205) +zone = ('ohz021', 0.0034854614239576056) + +[44231] +centroid = (0.72087269517939467, -1.4149466974524576) +station = ('kpov', 0.002764825960514263) +zone = ('ohz022', 0.0028817643514034638) + +[44233] +centroid = (0.71993232923171269, -1.4265948852539274) +station = ('kcle', 0.0030162925437143546) +zone = ('ohz020', 0.0031281149693910553) + +[44234] +centroid = (0.72127136328713526, -1.4163737833686432) +station = ('kpov', 0.0022482343471266716) +zone = ('ohz022', 0.0028208155053017808) + +[44235] +centroid = (0.71612812232760314, -1.4332080076029041) +station = ('kbjj', 0.0042080502047257239) +zone = ('ohz020', 0.0032303650564391964) + +[44236] +centroid = (0.71988592092690218, -1.4215633802731082) +station = ('kpov', 0.0026598926988124303) +zone = ('ohz021', 0.0023663724865690921) + +[44240] +centroid = (0.71789446534379153, -1.4195248182534861) +station = ('kpov', 0.0018773109599487397) +zone = ('ohz022', 0.0018976292105082674) + +[44241] +centroid = (0.71981947624227871, -1.4197853260976387) +station = ('kpov', 0.0013418658402543256) +zone = ('ohz022', 0.0023816409393387816) + +[44243] +centroid = (0.71816738247892586, -1.4196756147008585) +station = ('kpov', 0.0017386546678230489) +zone = ('ohz022', 0.0019388310052733148) + +[44250] +centroid = (0.71593936496900012, -1.4213496821594938) +station = ('kakr', 0.00044814754999756895) +zone = ('ohz021', 0.0022251378154319254) + +[44251] +centroid = (0.71609354735512132, -1.429902895051695) +station = ('kbjj', 0.0028945533963227119) +zone = ('ohz020', 0.0015863901920107146) + +[44253] +centroid = (0.71849733697401552, -1.4317293472073218) +station = ('klpr', 0.0037624779988224251) +zone = ('ohz020', 0.0019404566133530159) + +[44254] +centroid = (0.71633464713799166, -1.4314207904488618) +station = ('kbjj', 0.003528417320913955) +zone = ('ohz020', 0.0019933222327950663) + +[44255] +centroid = (0.72058874756338764, -1.4177158019370868) +station = ('kpov', 0.0011958016573229608) +zone = ('ohz022', 0.0021230584309632405) + +[44256] +centroid = (0.71802622024902452, -1.4287362820730767) +station = ('kcle', 0.0045422025335071572) +zone = ('ohz020', 0.0006448865014557979) + +[44260] +centroid = (0.71619910486828187, -1.4196236038891492) +station = ('kakr', 0.001688441179999801) +zone = ('ohz022', 0.0029733231893623643) + +[44262] +centroid = (0.71802105407443872, -1.4213274815714085) +station = ('kakr', 0.0018974759787269604) +zone = ('ohz021', 0.0012847918670348549) + +[44264] +centroid = (0.71959244381317933, -1.4231417687821493) +station = ('kakr', 0.0035587952805114613) +zone = ('ohz021', 0.0018130663466336093) + +[44265] +centroid = (0.71620845983307257, -1.4181338431995243) +station = ('kpov', 0.0032165133767269056) +zone = ('ohz022', 0.0024202361516838791) + +[44266] +centroid = (0.71848663810570068, -1.4173508884970796) +station = ('kpov', 0.0010867503985551531) +zone = ('ohz022', 0.00015972260886939118) + +[44270] +centroid = (0.71490332007172375, -1.4272349149439261) +station = ('kbjj', 0.002183241788564451) +zone = ('ohz031', 0.0027502335980895314) + +[44272] +centroid = (0.71715158340097274, -1.4168674148409846) +station = ('kpov', 0.0024496373891334665) +zone = ('ohz022', 0.0013741251954527661) + +[44273] +centroid = (0.71607366805494099, -1.4290395504839033) +station = ('kbjj', 0.0028166795484402757) +zone = ('ohz020', 0.0015898373336518897) + +[44274] +centroid = (0.71730136755737883, -1.4265041979459938) +station = ('kakr', 0.0036796284411614068) +zone = ('ohz021', 0.0026809429337461351) + +[44275] +centroid = (0.71736278569375656, -1.4329607293544815) +station = ('klpr', 0.004458634251901618) +zone = ('ohz010', 0.0034393864676994707) + +[44276] +centroid = (0.71450004429475789, -1.4283028470066366) +station = ('kbjj', 0.0013918978737842516) +zone = ('ohz031', 0.0020239235885666984) + +[44278] +centroid = (0.71743711926659892, -1.4211447455987247) +station = ('kakr', 0.0013805210288087265) +zone = ('ohz021', 0.0014423449388131886) + +[44280] +centroid = (0.71993417928071979, -1.4299597753320175) +station = ('kcle', 0.0028365155907566874) +zone = ('ohz020', 0.0023324057166111546) + +[44281] +centroid = (0.71662500011235342, -1.426650491443896) +station = ('kakr', 0.0036406516905238833) +zone = ('ohz020', 0.0023195726172322469) + +[44285] +centroid = (0.71837169072116436, -1.4149662800466647) +station = ('kpov', 0.0025689265682497793) +zone = ('ohz022', 0.0016430686947299933) + +[44286] +centroid = (0.71965422846869997, -1.4249557767402095) +station = ('kcle', 0.0039718656373620197) +zone = ('ohz021', 0.0023796552943297794) + +[44287] +centroid = (0.71454016941426124, -1.4328882458306462) +station = ('kbjj', 0.0031139546563940996) +zone = ('ohz030', 0.0028032732543288807) + +[44288] +centroid = (0.7197581453723636, -1.4150440170115486) +station = ('kpov', 0.0023075162898841786) +zone = ('ohz022', 0.0020116477064810643) + +[44301] +centroid = (0.71634403700936744, -1.42286251610183) +station = ('kakr', 0.00077551929143516247) +zone = ('ohz021', 0.0014422510394763836) + +[44302] +centroid = (0.71714596344078119, -1.4231181370240771) +station = ('kakr', 0.001362537333927311) +zone = ('ohz021', 0.0006422251922506406) + +[44303] +centroid = (0.71741209124512539, -1.4230880824543577) +station = ('kakr', 0.0015510921528701974) +zone = ('ohz021', 0.00037570332779097575) + +[44304] +centroid = (0.71703665346972889, -1.422580313815075) +station = ('kakr', 0.0010249032296493837) +zone = ('ohz021', 0.00081105355203432423) + +[44305] +centroid = (0.71689929605759695, -1.4217740415138238) +station = ('kakr', 0.00073549354505514776) +zone = ('ohz021', 0.0012799507412147079) + +[44306] +centroid = (0.71627171056516481, -1.4221496014622679) +station = ('kakr', 0.00024128107323774728) +zone = ('ohz021', 0.0016420800404618667) + +[44307] +centroid = (0.71679721174964772, -1.4232483734928609) +station = ('kakr', 0.0012211471655575849) +zone = ('ohz021', 0.0010022725331540494) + +[44308] +centroid = (0.71701019427826862, -1.422740290694313) +station = ('kakr', 0.0010725715723504496) +zone = ('ohz021', 0.00079725007700765101) + +[44310] +centroid = (0.71742062590516764, -1.422349633647839) +station = ('kakr', 0.0013067334947048021) +zone = ('ohz021', 0.0006112192197069051) + +[44311] +centroid = (0.71670600084293856, -1.4228048329700518) +station = ('kakr', 0.0008926439257442943) +zone = ('ohz021', 0.001086734384768909) + +[44312] +centroid = (0.71583143380805669, -1.4214607549130909) +station = ('kakr', 0.00045153867626676023) +zone = ('ohz021', 0.0022713549768064037) + +[44313] +centroid = (0.71785503835598896, -1.4237122645547486) +station = ('kakr', 0.0021900453434088008) +zone = ('ohz021', 0.00053872736331720089) + +[44314] +centroid = (0.71630178258817667, -1.4234918120169291) +station = ('kakr', 0.0012370588109557618) +zone = ('ohz021', 0.0015256278367653444) + +[44319] +centroid = (0.71526208995276364, -1.4229256970207522) +station = ('kakr', 0.0012096644737337222) +zone = ('ohz021', 0.0025209573130638282) + +[44320] +centroid = (0.71686152713258378, -1.4238817360251173) +station = ('kakr', 0.0016743561646504264) +zone = ('ohz021', 0.0011339496194371548) + +[44321] +centroid = (0.71713217533969054, -1.4251040250068738) +station = ('kakr', 0.0026285545010000769) +zone = ('ohz021', 0.0017109868813211576) + +[44333] +centroid = (0.71838816662930316, -1.424727470220756) +station = ('kakr', 0.0030982382648374607) +zone = ('ohz021', 0.001432589116547921) + +[44401] +centroid = (0.71595133792766863, -1.4126451317678526) +station = ('kyng', 0.0053622526382937465) +zone = ('ohz033', 0.0021533763973990189) + +[44402] +centroid = (0.72222230593008441, -1.4111424381884705) +station = ('kyng', 0.0033325545173441464) +zone = ('ohz023', 0.0016313045097269517) + +[44403] +centroid = (0.71977935112277536, -1.4064234169569283) +station = ('kyng', 0.0011222244060702649) +zone = ('ohz023', 0.0026976811541007681) + +[44404] +centroid = (0.72124171014314387, -1.4059783754509623) +station = ('kyng', 0.0019379087936773507) +zone = ('ohz023', 0.0026735903274112283) + +[44405] +centroid = (0.71694607088155038, -1.4066020164992847) +station = ('kucp', 0.002529504676007095) +zone = ('ohz033', 0.0026499894851867716) + +[44406] +centroid = (0.71577488514029208, -1.4097093483396579) +station = ('kyng', 0.0043905595900531041) +zone = ('ohz033', 9.1577767554865106e-05) + +[44408] +centroid = (0.71359774397806186, -1.4082786844985056) +station = ('kbvi', 0.004342551491172666) +zone = ('ohz041', 0.0023648004661117831) + +[44410] +centroid = (0.72162962702269207, -1.4089657333585532) +station = ('kyng', 0.0018625694037041004) +zone = ('ohz023', 0.00066153768673249532) + +[44411] +centroid = (0.71622065968454396, -1.4143752242954768) +station = ('kpov', 0.0042489284251404375) +zone = ('ohz022', 0.0030960447745589695) + +[44412] +centroid = (0.71722335133981474, -1.4141814752952129) +station = ('kpov', 0.0036690178803671842) +zone = ('ohz022', 0.0025739224445246876) + +[44413] +centroid = (0.71286049944872698, -1.4058510885886142) +station = ('kbvi', 0.0023893697757289075) +zone = ('paz013', 0.0038288294532939529) + +[44417] +centroid = (0.723200493162657, -1.4078505901395766) +station = ('kyng', 0.0032523792037186107) +zone = ('ohz023', 0.0024303052306113926) + +[44418] +centroid = (0.72094964674611517, -1.4067959923923512) +station = ('kyng', 0.0012998786755919435) +zone = ('ohz023', 0.00206467247678021) + +[44420] +centroid = (0.71871108744750722, -1.4081799861293054) +station = ('kyng', 0.0012551635807809551) +zone = ('ohz023', 0.0026197536366380373) + +[44423] +centroid = (0.71119578695488217, -1.4119006092155366) +station = ('kucp', 0.0079926889284413459) +zone = ('ohz041', 0.0016046423623080836) + +[44425] +centroid = (0.71855971504148175, -1.4062731092017464) +station = ('kyng', 0.0018504562495879502) +zone = ('ohz023', 0.0035488067237707758) + +[44427] +centroid = (0.71050908716068506, -1.4128415685751645) +station = ('kphd', 0.0074963175382292083) +zone = ('ohz040', 0.0029229717883361281) + +[44428] +centroid = (0.72320895800952933, -1.4062782404697474) +station = ('kyng', 0.0034802689327728909) +zone = ('ohz023', 0.0032118453016270637) + +[44429] +centroid = (0.71728035379318478, -1.4133614323461636) +station = ('kpov', 0.0041495899166700849) +zone = ('ohz022', 0.0031010457305833908) + +[44430] +centroid = (0.71977786759291118, -1.4121139059034231) +station = ('kyng', 0.0031738027977838883) +zone = ('ohz023', 0.0023601512637146586) + +[44431] +centroid = (0.71299516905381077, -1.409344103287093) +station = ('kbvi', 0.0048487931881643883) +zone = ('ohz041', 0.0014954372456885358) + +[44432] +centroid = (0.71112520583993155, -1.4096455216489125) +station = ('kbvi', 0.0048640624998694832) +zone = ('ohz041', 0.00044447910492982753) + +[44436] +centroid = (0.71661074077236475, -1.4055977365943948) +station = ('kucp', 0.0017026874462563117) +zone = ('ohz033', 0.0032584169131581529) + +[44437] +centroid = (0.71830665975323504, -1.40900228055309) +station = ('kyng', 0.001839610885042369) +zone = ('ohz033', 0.0025381666212456674) + +[44438] +centroid = (0.71976734325752167, -1.4055243804059332) +station = ('kyng', 0.0017945707629324729) +zone = ('ohz023', 0.0033054743077921755) + +[44439] +centroid = (0.72353927902376181, -1.4129552942292243) +station = ('kyng', 0.0052250745832062677) +zone = ('ohz013', 0.0030045333510434055) + +[44440] +centroid = (0.71804897934247069, -1.4102767897860664) +station = ('kyng', 0.002609390942504417) +zone = ('ohz033', 0.0022388293389958742) + +[44441] +centroid = (0.71132722770084988, -1.4058667790985897) +station = ('kbvi', 0.0019946701275885999) +zone = ('paz020', 0.0029532238468494196) + +[44442] +centroid = (0.71499460079160293, -1.4057948366268223) +station = ('kucp', 0.0020306237417007612) +zone = ('ohz033', 0.0031354242287937092) + +[44443] +centroid = (0.71442726406494972, -1.4068127126465855) +station = ('kucp', 0.0029827166450891352) +zone = ('ohz033', 0.0026580029020707614) + +[44444] +centroid = (0.71857163564027282, -1.4132697851071414) +station = ('kpov', 0.0037187061030293025) +zone = ('ohz033', 0.0037843052869937686) + +[44445] +centroid = (0.71293769536154261, -1.4070838146392977) +station = ('kbvi', 0.0032365046532901172) +zone = ('ohz041', 0.0025033954931848413) + +[44446] +centroid = (0.718893456901048, -1.4093410838674871) +station = ('kyng', 0.0015130943078859901) +zone = ('ohz023', 0.0022359635500372823) + +[44449] +centroid = (0.71515370500621478, -1.4143646126936247) +station = ('kpov', 0.0051069470799857434) +zone = ('ohz022', 0.0039556218363565642) + +[44450] +centroid = (0.72349157917530471, -1.4108280869368939) +station = ('kyng', 0.0041700783705452193) +zone = ('ohz023', 0.0025580619181031195) + +[44451] +centroid = (0.71697022623839801, -1.411416227988231) +station = ('kyng', 0.0039850155755933418) +zone = ('ohz033', 0.0016652040235333764) + +[44452] +centroid = (0.71466646143893553, -1.4078525100017536) +station = ('kucp', 0.0035715506477845558) +zone = ('ohz033', 0.0018780460277337411) + +[44454] +centroid = (0.71414446836624912, -1.4058929590373694) +station = ('kucp', 0.0026205177009353958) +zone = ('ohz033', 0.0033993125455060594) + +[44455] +centroid = (0.71161089606417649, -1.4069128072791874) +station = ('kbvi', 0.0027797404549788057) +zone = ('ohz041', 0.0022127527922397375) + +[44460] +centroid = (0.71382786563993728, -1.4114507506008351) +station = ('kyng', 0.0066805043662980824) +zone = ('ohz033', 0.0023688826028813938) + +[44470] +centroid = (0.72082675811348218, -1.4132418074792319) +station = ('kpov', 0.0038978730868995891) +zone = ('ohz023', 0.0028003895974298967) + +[44471] +centroid = (0.71643259501561363, -1.4065639159617136) +station = ('kucp', 0.0023633041102928895) +zone = ('ohz033', 0.002508365264878281) + +[44473] +centroid = (0.72003483241868227, -1.407606366217345) +station = ('kyng', 0.00023635610320064203) +zone = ('ohz023', 0.00181321020423311) + +[44481] +centroid = (0.71866796036169034, -1.4120122753810793) +station = ('kyng', 0.0033487417110477521) +zone = ('ohz023', 0.0030830187883845923) + +[44483] +centroid = (0.72018508781398649, -1.4105184480742974) +station = ('kyng', 0.001983436182797396) +zone = ('ohz023', 0.0011953940368454763) + +[44484] +centroid = (0.71970147453155142, -1.4093568790972177) +station = ('kyng', 0.0011237095039747856) +zone = ('ohz023', 0.0014294674189190512) + +[44485] +centroid = (0.71978001434789118, -1.4110565679892724) +station = ('kyng', 0.0023801705212478275) +zone = ('ohz023', 0.0017651667353157637) + +[44490] +centroid = (0.71377496471030932, -1.4096686123549163) +station = ('kbvi', 0.0053612825048856318) +zone = ('ohz033', 0.0020670495457055182) + +[44491] +centroid = (0.72201525752092022, -1.4130949554759691) +station = ('kpov', 0.0045540209430072623) +zone = ('ohz023', 0.0028172617732146756) + +[44493] +centroid = (0.71253098128595038, -1.411772694034658) +station = ('kucp', 0.0071762948334389834) +zone = ('ohz041', 0.0017677871890608924) + +[44502] +centroid = (0.7170299164988162, -1.4074245552691647) +station = ('kyng', 0.0029401675738581971) +zone = ('ohz033', 0.0021475489706267491) + +[44503] +centroid = (0.71731855905051101, -1.4075918799845533) +station = ('kyng', 0.0026398938562749055) +zone = ('ohz033', 0.002224046971465189) + +[44504] +centroid = (0.71774068438339833, -1.4076892169969371) +station = ('kyng', 0.0022132662334327009) +zone = ('ohz033', 0.0024766119507842188) + +[44505] +centroid = (0.71784069174953757, -1.4071211821385829) +station = ('kyng', 0.0021873811437412619) +zone = ('ohz033', 0.0028401742908786189) + +[44506] +centroid = (0.71720820188190748, -1.4071960916700785) +station = ('kyng', 0.0027907217188832727) +zone = ('ohz033', 0.0023902303419931015) + +[44507] +centroid = (0.71688053376813798, -1.4076996889724491) +station = ('kyng', 0.0030714475572889326) +zone = ('ohz033', 0.0018921571378083517) + +[44509] +centroid = (0.71747876282255163, -1.408412202186283) +station = ('kyng', 0.0024995869611560465) +zone = ('ohz033', 0.0019424609088726074) + +[44510] +centroid = (0.71771872814140825, -1.4080170247370467) +station = ('kyng', 0.0022313589560809637) +zone = ('ohz033', 0.0023080379188345516) + +[44511] +centroid = (0.71679075403141546, -1.4084231628539856) +station = ('kyng', 0.0031821338360376091) +zone = ('ohz033', 0.0014052621765650935) + +[44512] +centroid = (0.71603286225702933, -1.4079270704673987) +station = ('kucp', 0.0033568943850807598) +zone = ('ohz033', 0.0014224290010779008) + +[44514] +centroid = (0.71559570963928232, -1.4068479159375982) +station = ('kucp', 0.0025794109449749493) +zone = ('ohz033', 0.0022372462876380467) + +[44515] +centroid = (0.71734215590199801, -1.4095597561694695) +station = ('kyng', 0.0028904710047889933) +zone = ('ohz033', 0.001512775055037708) + +[44601] +centroid = (0.71419342485176751, -1.4159712406299632) +station = ('kpov', 0.0054675342215070701) +zone = ('ohz032', 0.003635272906418051) + +[44606] +centroid = (0.71094240005407761, -1.4275815896932498) +station = ('kbjj', 0.0025965503063010635) +zone = ('ohz031', 0.0020696431097954118) + +[44607] +centroid = (0.71016606014949812, -1.4141658545984077) +station = ('kphd', 0.0064794739310011125) +zone = ('ohz040', 0.0020971754760280978) + +[44608] +centroid = (0.70958851324672068, -1.4240634073469571) +station = ('kphd', 0.0040527239462590263) +zone = ('ohz032', 0.0040682308085975439) + +[44609] +centroid = (0.71414359570162311, -1.4135434003739764) +station = ('kpov', 0.0062919239792574647) +zone = ('ohz033', 0.0032997924130645432) + +[44610] +centroid = (0.70789899962420499, -1.4276751742477418) +station = ('kphd', 0.0053359181693432151) +zone = ('ohz038', 0.0017191713835959196) + +[44611] +centroid = (0.70878000692402687, -1.4324787392282505) +station = ('kbjj', 0.0051453805475888993) +zone = ('ohz038', 0.0021100210843544636) + +[44612] +centroid = (0.70918179917112845, -1.4220236235968591) +station = ('kphd', 0.0030097343998753238) +zone = ('ohz039', 0.0033533178652415583) + +[44613] +centroid = (0.71057537476567578, -1.4242016025171302) +station = ('kcak', 0.004074796484765145) +zone = ('ohz032', 0.0035685438646161235) + +[44614] +centroid = (0.71365722479896987, -1.4237747647952623) +station = ('kcak', 0.0017318279550505094) +zone = ('ohz032', 0.0030760389439890633) + +[44615] +centroid = (0.70798476510364816, -1.4150230556072321) +station = ('kphd', 0.0048464225225530603) +zone = ('ohz040', 0.00032842196874553054) + +[44618] +centroid = (0.71157742064912333, -1.4256041491040328) +station = ('kbjj', 0.0031557965380427143) +zone = ('ohz031', 0.0029218488043216907) + +[44620] +centroid = (0.70822186808253151, -1.4173841893792076) +station = ('kphd', 0.0033604271852443381) +zone = ('ohz040', 0.0015966511294717518) + +[44621] +centroid = (0.70575807404395374, -1.4189151921990573) +station = ('kphd', 0.0016609921617836555) +zone = ('ohz039', 0.0023382955348493955) + +[44622] +centroid = (0.70766177447227407, -1.4221459013642537) +station = ('kphd', 0.0016409373330367079) +zone = ('ohz039', 0.001837197182958475) + +[44624] +centroid = (0.70875255289489292, -1.4252724143731061) +station = ('kphd', 0.0040899865485776654) +zone = ('ohz038', 0.0036381052402623846) + +[44625] +centroid = (0.71145500325538835, -1.413781917069554) +station = ('kphd', 0.0075329824610753928) +zone = ('ohz040', 0.0034032575181485733) + +[44626] +centroid = (0.71015534382789081, -1.4203798725073307) +station = ('kphd', 0.0039062580295511958) +zone = ('ohz032', 0.002189924575362536) + +[44627] +centroid = (0.709720617217804, -1.4283149944982305) +station = ('kbjj', 0.0035912176875665639) +zone = ('ohz038', 0.0021763472003876183) + +[44628] +centroid = (0.70746402866802305, -1.434116416571982) +station = ('k4i3', 0.0058762831056633135) +zone = ('ohz038', 0.0032086850986470005) + +[44629] +centroid = (0.70431273198379218, -1.421419704769084) +station = ('kphd', 0.0019910454500106718) +zone = ('ohz039', 0.0015760396734500685) + +[44632] +centroid = (0.71494327065830177, -1.4191801157262172) +station = ('kakr', 0.0023648640007846809) +zone = ('ohz032', 0.0026997582530114608) + +[44633] +centroid = (0.70912306884179876, -1.4300402001039492) +station = ('kbjj', 0.0041914531616946251) +zone = ('ohz038', 0.001199104679553405) + +[44634] +centroid = (0.71275740284981171, -1.414439208065855) +station = ('kcak', 0.0055642792339781408) +zone = ('ohz040', 0.0045548273072760952) + +[44637] +centroid = (0.7066761346837952, -1.4318512235489889) +station = ('kbjj', 0.0068968555164902207) +zone = ('ohz038', 0.0019180145138532098) + +[44638] +centroid = (0.7094870747105948, -1.4336319306249208) +station = ('kbjj', 0.0050821290157386902) +zone = ('ohz038', 0.0032095585308898854) + +[44640] +centroid = (0.71533267106771425, -1.416346992564625) +station = ('kpov', 0.0042953676325246676) +zone = ('ohz022', 0.0032333813366268315) + +[44641] +centroid = (0.71309611889774627, -1.4180186689221852) +station = ('kcak', 0.0028776738079528295) +zone = ('ohz032', 0.0017508667930100446) + +[44643] +centroid = (0.70927969468887275, -1.4190033487795752) +station = ('kphd', 0.0033607642277001925) +zone = ('ohz040', 0.0030075567928883403) + +[44644] +centroid = (0.71012232219844318, -1.4167962054075034) +station = ('kphd', 0.0049930718386106037) +zone = ('ohz040', 0.0021987507936181826) + +[44645] +centroid = (0.71405016822676382, -1.4262730465398596) +station = ('kbjj', 0.0023031924802752643) +zone = ('ohz031', 0.0026597391802256746) + +[44646] +centroid = (0.71234533061341576, -1.4223941569970573) +station = ('kcak', 0.0018907248385935241) +zone = ('ohz032', 0.0017341663915289634) + +[44647] +centroid = (0.71205705458086377, -1.4235789039466036) +station = ('kcak', 0.0025703047947070587) +zone = ('ohz032', 0.0026457809513491934) + +[44651] +centroid = (0.70909334588463735, -1.4128632281111817) +station = ('kphd', 0.0067865911386466998) +zone = ('ohz040', 0.0020219559978986237) + +[44652] +centroid = (0.71384352124332773, -1.4194088760312762) +station = ('kcak', 0.0016588167705347671) +zone = ('ohz032', 0.0015970497341882993) + +[44653] +centroid = (0.70574318638543421, -1.4201802242941952) +station = ('kphd', 0.00081435552125343322) +zone = ('ohz039', 0.001377079894860779) + +[44654] +centroid = (0.70752047261603257, -1.4289161906123724) +station = ('kbjj', 0.0057397856128335147) +zone = ('ohz038', 0.00087602248139458116) + +[44656] +centroid = (0.7080577547729664, -1.4195625871784994) +station = ('kphd', 0.002085258013922548) +zone = ('ohz039', 0.002892167018624929) + +[44657] +centroid = (0.71106633588426182, -1.41533402092006) +station = ('kcak', 0.005626622469426884) +zone = ('ohz040', 0.0028189802714174831) + +[44659] +centroid = (0.71026037774227579, -1.4259785920417558) +station = ('kbjj', 0.0038331528662976025) +zone = ('ohz031', 0.0033907654676456501) + +[44661] +centroid = (0.70852733560821557, -1.4331423483164438) +station = ('kbjj', 0.0056218500049269992) +zone = ('ohz038', 0.0025069856160514284) + +[44662] +centroid = (0.71054116631233677, -1.4234257687580338) +station = ('kcak', 0.0038542068081435887) +zone = ('ohz032', 0.0030908040214607134) + +[44663] +centroid = (0.70616005827727313, -1.4216124065717968) +station = ('kphd', 0.00048847653843291366) +zone = ('ohz039', 0.00043670645584936957) + +[44666] +centroid = (0.71293806188068565, -1.4248639898748472) +station = ('kcak', 0.0027607492177990226) +zone = ('ohz031', 0.0033133225161966228) + +[44667] +centroid = (0.71268451790024834, -1.4270951838840116) +station = ('kbjj', 0.0016451777798681087) +zone = ('ohz031', 0.0016103449191862736) + +[44669] +centroid = (0.71196291152101132, -1.416464819742427) +station = ('kcak', 0.0044286708739049762) +zone = ('ohz032', 0.0027788924118502542) + +[44670] +centroid = (0.71144226235184882, -1.4170110554384239) +station = ('kcak', 0.0043733565013647007) +zone = ('ohz032', 0.0025054121264360672) + +[44671] +centroid = (0.70940710372426841, -1.4200988221378821) +station = ('kphd', 0.003202741297970645) +zone = ('ohz032', 0.0029280881201197758) + +[44672] +centroid = (0.71418878227595728, -1.4141577039108009) +station = ('kpov', 0.0060132487785497426) +zone = ('ohz033', 0.0036848318487115121) + +[44675] +centroid = (0.70689950192146556, -1.4181458859713632) +station = ('kphd', 0.0022502822690704687) +zone = ('ohz040', 0.0025599324250962221) + +[44676] +centroid = (0.71018796403161066, -1.4317598032027692) +station = ('kbjj', 0.0036576876964802417) +zone = ('ohz038', 0.0026507724699346424) + +[44677] +centroid = (0.71339495417227261, -1.4287016896473022) +station = ('kbjj', 0.00035431950752818757) +zone = ('ohz031', 0.00088765956592428449) + +[44678] +centroid = (0.70802150428440247, -1.4198243167531284) +station = ('kphd', 0.001956683917179773) +zone = ('ohz039', 0.0027405477448870343) + +[44680] +centroid = (0.70870085624244883, -1.4231671982293506) +station = ('kphd', 0.0029356147753971046) +zone = ('ohz039', 0.0030093082379320864) + +[44681] +centroid = (0.70699713563982214, -1.4252681208631466) +station = ('kphd', 0.0033333726684304822) +zone = ('ohz039', 0.0027565739254895487) + +[44682] +centroid = (0.70506523069078952, -1.4207903215875222) +station = ('kphd', 0.0012207340471933538) +zone = ('ohz039', 0.0011880507906077162) + +[44683] +centroid = (0.70449922041436774, -1.4193939185595867) +station = ('kphd', 0.0021525868033450465) +zone = ('ohz039', 0.0023798455452977343) + +[44685] +centroid = (0.71480666373774826, -1.4211233827686804) +station = ('kcak', 0.0007558476038665539) +zone = ('ohz032', 0.0025891059039238602) + +[44687] +centroid = (0.70752021081664473, -1.4262827854770856) +station = ('kphd', 0.004213096375817545) +zone = ('ohz038', 0.0028067874447640037) + +[44688] +centroid = (0.71006814717846123, -1.4181739508657349) +station = ('kphd', 0.0043528730109497066) +zone = ('ohz032', 0.002697195357115322) + +[44689] +centroid = (0.70939273966452443, -1.4252207177206622) +station = ('kphd', 0.0044775087703834019) +zone = ('ohz038', 0.0038698869564322918) + +[44690] +centroid = (0.70883241916146422, -1.4258229610323554) +station = ('kphd', 0.004475279477094269) +zone = ('ohz038', 0.0032535364132235626) + +[44691] +centroid = (0.71219479596543134, -1.4308641874971082) +station = ('kbjj', 0.0016864686077941529) +zone = ('ohz031', 0.0013079129188930173) + +[44693] +centroid = (0.70340008186463188, -1.4169659386772597) +station = ('kphd', 0.0042029075510782807) +zone = ('ohz049', 0.0012732847128879273) + +[44695] +centroid = (0.70584624807776453, -1.4166866510903555) +station = ('kphd', 0.0033018414064296979) +zone = ('ohz040', 0.0026280595382819137) + +[44697] +centroid = (0.70881412811090327, -1.4211207124149245) +station = ('kphd', 0.0025395339046124427) +zone = ('ohz039', 0.0030571238670216022) + +[44699] +centroid = (0.70297130682729447, -1.418619620690232) +station = ('kphd', 0.0037660263420036515) +zone = ('ohz049', 0.0025435847221641052) + +[44702] +centroid = (0.71209066962225731, -1.4202758334306194) +station = ('kcak', 0.0022627870320293766) +zone = ('ohz032', 0.00027736859626437946) + +[44703] +centroid = (0.7122786939425747, -1.4203725421244724) +station = ('kcak', 0.0020616538080917182) +zone = ('ohz032', 0.00021178965087863518) + +[44704] +centroid = (0.7121011066911842, -1.4196574283700527) +station = ('kcak', 0.0024925036599510535) +zone = ('ohz032', 0.00041044421637180875) + +[44705] +centroid = (0.71269846308097184, -1.4194963344800935) +station = ('kcak', 0.0021239097392224409) +zone = ('ohz032', 0.00058533385328986981) + +[44706] +centroid = (0.71128319304382215, -1.4210234277624185) +station = ('kcak', 0.0028773055794294412) +zone = ('ohz032', 0.0012619685680621054) + +[44707] +centroid = (0.71141529701490558, -1.419822553970584) +station = ('kcak', 0.0030202202538827968) +zone = ('ohz032', 0.00094405684200975866) + +[44708] +centroid = (0.71240643459052799, -1.4213242527122922) +station = ('kcak', 0.0017341593827325025) +zone = ('ohz032', 0.00092711363736623078) + +[44709] +centroid = (0.71283325485910332, -1.4204567193542958) +station = ('kcak', 0.0015467265683356585) +zone = ('ohz032', 0.00056547712042967382) + +[44710] +centroid = (0.71191474043365621, -1.4211511684103719) +station = ('kcak', 0.0022384163724857111) +zone = ('ohz032', 0.00089805142165959144) + +[44714] +centroid = (0.71272818603813326, -1.4199698423061595) +station = ('kcak', 0.0018525009913298285) +zone = ('ohz032', 0.0004056800761202522) + +[44718] +centroid = (0.71292551296336371, -1.4215938362685554) +station = ('kcak', 0.0012051665299418484) +zone = ('ohz032', 0.0012732593828827269) + +[44720] +centroid = (0.71389972084524189, -1.4212787694319853) +station = ('kcak', 0.00031929555731314831) +zone = ('ohz032', 0.0017996512237560471) + +[44721] +centroid = (0.71371017808847537, -1.419512286789457) +station = ('kcak', 0.0016115256748344248) +zone = ('ohz032', 0.0014457283543589197) + +[44730] +centroid = (0.71151867286650117, -1.4183555000145274) +station = ('kcak', 0.0035690566772701797) +zone = ('ohz032', 0.0015546196129995445) + +[44802] +centroid = (0.71638131724219001, -1.4559435041974229) +station = ('kfdy', 0.0032942652199049868) +zone = ('ohz017', 0.0033417400367815589) + +[44804] +centroid = (0.71742786902156341, -1.4579454666626306) +station = ('kfdy', 0.0023347754465633578) +zone = ('ohz017', 0.0025120930563491324) + +[44805] +centroid = (0.71336263067452566, -1.436703343589288) +station = ('kmfd', 0.0028111191620623158) +zone = ('ohz030', 0.00076756739116198814) + +[44807] +centroid = (0.71662871766366021, -1.4464754071646193) +station = ('kmfd', 0.0063694065866629346) +zone = ('ohz018', 0.0034830524033307043) + +[44809] +centroid = (0.71791486824274731, -1.4536656400840602) +station = ('kfdy', 0.0053722274460699737) +zone = ('ohz018', 0.0021258826098421394) + +[44811] +centroid = (0.71988422795752771, -1.4459459615360268) +station = ('kmfd', 0.0086662560030671878) +zone = ('ohz009', 0.003630576034588065) + +[44813] +centroid = (0.70860104086252729, -1.4404149782298716) +station = ('kmfd', 0.003788108200607944) +zone = ('ohz029', 0.0030530527011435591) + +[44814] +centroid = (0.72124171014314387, -1.4394107332315667) +station = ('klpr', 0.0038118362589474823) +zone = ('ohz009', 0.0020284336025864209) + +[44815] +centroid = (0.71988909742614071, -1.4528028365683368) +station = ('ktdz', 0.0064339042012862557) +zone = ('ohz008', 0.0022832046333218139) + +[44816] +centroid = (0.72134810541434546, -1.4373226562210655) +station = ('klpr', 0.0022438081260555739) +zone = ('ohz010', 0.0027078237957380161) + +[44817] +centroid = (0.71914289935774312, -1.4582135492357369) +station = ('kfdy', 0.0036122086597000463) +zone = ('ohz006', 0.0029188142293673416) + +[44818] +centroid = (0.71555605575867709, -1.4484378030156841) +station = ('kmnn', 0.0067392939919376912) +zone = ('ohz028', 0.0027324533109177257) + +[44820] +centroid = (0.71239428709893415, -1.4481699822419656) +station = ('kmnn', 0.0037080788633370976) +zone = ('ohz028', 0.00092786021678078611) + +[44822] +centroid = (0.70784773930407408, -1.4381180027611995) +station = ('k4i3', 0.0042749927761356983) +zone = ('ohz047', 0.0027732820389586004) + +[44824] +centroid = (0.72227358370350803, -1.4452354554508324) +station = ('klpr', 0.0081752443351575301) +zone = ('ohz009', 0.0024874376720306754) + +[44825] +centroid = (0.71478570233343175, -1.4476317576072355) +station = ('kmnn', 0.0061129412023877639) +zone = ('ohz028', 0.0018294290927929992) + +[44826] +centroid = (0.71981462422695819, -1.4395064296344535) +station = ('klpr', 0.0042923545146288196) +zone = ('ohz019', 0.0023088378772177878) + +[44827] +centroid = (0.71248605651100405, -1.4443482696854586) +station = ('kmfd', 0.0031503511389814284) +zone = ('ohz028', 0.0022300381090381038) + +[44828] +centroid = (0.71963302271828822, -1.4461958054184498) +station = ('kmfd', 0.0085485025220864864) +zone = ('ohz018', 0.0039796614334967565) + +[44830] +centroid = (0.7185195899219784, -1.4555575246333445) +station = ('kfdy', 0.0044207341678440346) +zone = ('ohz006', 0.0044921882502128923) + +[44833] +centroid = (0.71053376611630825, -1.4450234328533003) +station = ('kmfd', 0.0041041111195459189) +zone = ('ohz028', 0.002961126418912594) + +[44836] +centroid = (0.71971130073524014, -1.4496689757233334) +station = ('ktdz', 0.0079968468802355686) +zone = ('ohz018', 0.0021562870598435591) + +[44837] +centroid = (0.7159553696382408, -1.4394198613035547) +station = ('kmfd', 0.0036169641056129505) +zone = ('ohz019', 0.002737388953539198) + +[44838] +centroid = (0.71159827733368464, -1.435640385714946) +station = ('kmfd', 0.0035312646106644349) +zone = ('ohz030', 0.0013148088560166588) + +[44839] +centroid = (0.72223384255644008, -1.4408900917588496) +station = ('klpr', 0.0049232943615002854) +zone = ('ohz009', 0.00085355420312006305) + +[44840] +centroid = (0.71188438915796404, -1.4342813327330031) +station = ('kmfd', 0.0044987613753733162) +zone = ('ohz030', 0.0015874296630865815) + +[44841] +centroid = (0.71996948729148758, -1.4539645102651719) +station = ('ktdz', 0.0059748982699420411) +zone = ('ohz008', 0.0027989994694730563) + +[44842] +centroid = (0.70946398400459088, -1.4350905197341053) +station = ('kmfd', 0.0048426165485903868) +zone = ('ohz030', 0.0034885438550882491) + +[44843] +centroid = (0.7101656936303552, -1.4382839835730641) +station = ('kmfd', 0.0026468156131222334) +zone = ('ohz029', 0.0022622004803659122) + +[44844] +centroid = (0.71544674578762457, -1.4531773667725223) +station = ('kmnn', 0.007036878624921623) +zone = ('ohz027', 0.0026745607590554707) + +[44846] +centroid = (0.72115980184134776, -1.4417438195624626) +station = ('klpr', 0.0055625898377869298) +zone = ('ohz009', 0.00078527156171343665) + +[44847] +centroid = (0.71960647626036534, -1.4436122294333076) +station = ('klpr', 0.0072514321816905623) +zone = ('ohz019', 0.0021027538413263924) + +[44849] +centroid = (0.71225596975571359, -1.450900462590248) +station = ('kmnn', 0.0034657721985282904) +zone = ('ohz028', 0.0028767893241483477) + +[44850] +centroid = (0.71620271769983346, -1.4431083528782567) +station = ('kmfd', 0.0044094715902456708) +zone = ('ohz019', 0.0022379723303958109) + +[44851] +centroid = (0.71749045652853993, -1.438004189840677) +station = ('klpr', 0.0050137852945489492) +zone = ('ohz019', 0.0027948334074499957) + +[44853] +centroid = (0.71654991604793272, -1.4539116791487139) +station = ('kfdy', 0.0048348340491923625) +zone = ('ohz018', 0.002598391216625388) + +[44854] +centroid = (0.71460143047100622, -1.4463162854967149) +station = ('kmfd', 0.0051365325261015825) +zone = ('ohz028', 0.0017574796539601924) + +[44855] +centroid = (0.71744186656216447, -1.4414958082757543) +station = ('kmfd', 0.0051522507784965378) +zone = ('ohz019', 0.00070048239871155888) + +[44856] +centroid = (0.7119891612729613, -1.4461231822682743) +station = ('kmnn', 0.0041581238757757728) +zone = ('ohz028', 0.0012954842147322567) + +[44857] +centroid = (0.71936361369495028, -1.4412517414331554) +station = ('klpr', 0.0056721723144091615) +zone = ('ohz019', 0.0012568830663474066) + +[44859] +centroid = (0.71596831998129062, -1.436942209350716) +station = ('kmfd', 0.0043419071748956881) +zone = ('ohz030', 0.0031697816779112519) + +[44861] +centroid = (0.7197646903570587, -1.4512049178249662) +station = ('ktdz', 0.0072035267819073392) +zone = ('ohz018', 0.002034639715077315) + +[44864] +centroid = (0.70978376323014125, -1.4367658263765093) +station = ('kmfd', 0.0036726611246535447) +zone = ('ohz030', 0.0031843058959192968) + +[44865] +centroid = (0.71546988885350615, -1.4429848533803857) +station = ('kmfd', 0.003739658306928692) +zone = ('ohz019', 0.0028600271707422929) + +[44866] +centroid = (0.71425868271249959, -1.434621479950924) +station = ('kmfd', 0.0046071114652550893) +zone = ('ohz030', 0.0016659342805912202) + +[44867] +centroid = (0.71818614476838483, -1.448312959614289) +station = ('kmfd', 0.0084424817876163488) +zone = ('ohz018', 0.0019619864121777357) + +[44870] +centroid = (0.7230598894381165, -1.4441694432502994) +station = ('klpr', 0.0074779346072916357) +zone = ('ohz009', 0.0020109073227966541) + +[44874] +centroid = (0.71502420157571678, -1.4375812092964559) +station = ('kmfd', 0.0032933215387640834) +zone = ('ohz030', 0.0024782314163888353) + +[44875] +centroid = (0.71366495660755613, -1.4425440530245019) +station = ('kmfd', 0.0021942745168204722) +zone = ('ohz029', 0.0025224309028201823) + +[44878] +centroid = (0.71456600028719075, -1.4402584920091379) +station = ('kmfd', 0.0021814373532516185) +zone = ('ohz029', 0.0029206591373299676) + +[44880] +centroid = (0.71618891214545022, -1.4350116832117925) +station = ('kmfd', 0.0054553850333639332) +zone = ('ohz030', 0.0033569009155994876) + +[44881] +centroid = (0.7133163619960553, -1.4464597166546438) +station = ('kmfd', 0.0048354155091595123) +zone = ('ohz028', 0.00066596342906681863) + +[44882] +centroid = (0.71465359836234832, -1.4510692533822085) +station = ('kmnn', 0.0058403261962332812) +zone = ('ohz027', 0.0028294557161175687) + +[44883] +centroid = (0.71773752533745228, -1.4516585987107296) +station = ('kfdy', 0.0067457197462470492) +zone = ('ohz018', 0.00060763714287678198) + +[44887] +centroid = (0.7141222503248712, -1.4449695545392909) +station = ('kmfd', 0.0040118864974984869) +zone = ('ohz028', 0.0020489025139679446) + +[44889] +centroid = (0.71987644378906379, -1.4378447016536298) +station = ('klpr', 0.0031808620277664649) +zone = ('ohz010', 0.0031544942158519738) + +[44890] +centroid = (0.71707152514818373, -1.4435716330749062) +station = ('kmfd', 0.0053379889924096502) +zone = ('ohz019', 0.0018192351842446679) + +[44901] +centroid = (0.71194959465881857, -1.4400607636581795) +station = ('kmfd', 0.00044606975348763633) +zone = ('ohz029', 0.00046511441031744927) + +[44902] +centroid = (0.71136401924148196, -1.4400814458098155) +station = ('kmfd', 0.0010243570913183208) +zone = ('ohz029', 0.00044798274945464448) + +[44903] +centroid = (0.71168145972583474, -1.440378937180818) +station = ('kmfd', 0.00071852716886139823) +zone = ('ohz029', 0.00012064307540758602) + +[44904] +centroid = (0.70971586992223867, -1.4418939876913042) +station = ('kmfd', 0.0029660010323260271) +zone = ('ohz029', 0.0021942032996124287) + +[44905] +centroid = (0.7117120204410371, -1.43932397291445) +station = ('kmfd', 0.00093838227846821894) +zone = ('ohz029', 0.00091798069958973596) + +[44906] +centroid = (0.71152446735961783, -1.4411641957178754) +station = ('kmfd', 0.0011347476694449894) +zone = ('ohz029', 0.0004944427506345312) + +[44907] +centroid = (0.71083179853937883, -1.4402527847824838) +station = ('kmfd', 0.0015542105561167077) +zone = ('ohz029', 0.00084809697239991309) + +[45001] +centroid = (0.68314708923827183, -1.4785074698330563) +station = ('kcvg', 0.0017112288372509155) +zone = ('ohz077', 0.0024810951248143095) + +[45002] +centroid = (0.68411305916608067, -1.4792985752231076) +station = ('kcvg', 0.0028422816751942012) +zone = ('ohz077', 0.0029077354334368344) + +[45003] +centroid = (0.6909162129640144, -1.4798030626433964) +station = ('khao', 0.0052861850748718913) +zone = ('inz059', 0.0019840217975402251) + +[45005] +centroid = (0.69007897852183275, -1.4712405995061602) +station = ('kmgy', 0.0013623373169886503) +zone = ('ohz071', 0.0026020306085406189) + +[45011] +centroid = (0.6881233196416805, -1.4747614696595008) +station = ('khao', 0.0010765108877363841) +zone = ('ohz070', 0.0010708325455080308) + +[45013] +centroid = (0.68789764856939772, -1.477467969183861) +station = ('khao', 0.002009414548550424) +zone = ('ohz070', 0.0011280720676560658) + +[45014] +centroid = (0.68636318999762924, -1.4757175959303284) +station = ('khao', 0.00086218403985807821) +zone = ('ohz070', 0.0019947453042015325) + +[45015] +centroid = (0.68725882315658271, -1.4759787495463041) +station = ('khao', 0.0007073845769767624) +zone = ('ohz070', 0.0010802007330658809) + +[45030] +centroid = (0.68521430956421148, -1.4793336912476576) +station = ('khao', 0.0037725916734773143) +zone = ('ohz077', 0.00314203921573939) + +[45032] +centroid = (0.6894534525179179, -1.4662546476188179) +station = ('kiln', 0.0032882385435480414) +zone = ('ohz071', 0.002483734605822924) + +[45033] +centroid = (0.68376385368934167, -1.4793929277224704) +station = ('kcvg', 0.0025685035171138749) +zone = ('ohz077', 0.0029988355313658645) + +[45034] +centroid = (0.68692953188660888, -1.4703134107943305) +station = ('kmwo', 0.0036724125494516126) +zone = ('ohz071', 0.0015882280741356209) + +[45036] +centroid = (0.68842849046139176, -1.4698143338947227) +station = ('kmgy', 0.0027341085692011977) +zone = ('ohz071', 0.00069923240905699351) + +[45039] +centroid = (0.68641319368069897, -1.4703715651650069) +station = ('kmwo', 0.0040821342301467578) +zone = ('ohz071', 0.0020339539546491443) + +[45040] +centroid = (0.68680072658781177, -1.4715429079858979) +station = ('kmwo', 0.0033395835131452252) +zone = ('ohz071', 0.0023878376774406837) + +[45041] +centroid = (0.68435099990300507, -1.4783333383335846) +station = ('kcvg', 0.0028410950951809392) +zone = ('ohz077', 0.0021752409752979363) + +[45042] +centroid = (0.69039788508275712, -1.4734097121538312) +station = ('kmwo', 0.00054201967751778171) +zone = ('ohz070', 0.0029392113073332411) + +[45044] +centroid = (0.6890969341116131, -1.4732484262776544) +station = ('kmwo', 0.00084461168234511205) +zone = ('ohz070', 0.0023455111107604162) + +[45050] +centroid = (0.68845126700813031, -1.4723454801891351) +station = ('kmwo', 0.0015763757355826819) +zone = ('ohz070', 0.0029180491227970336) + +[45051] +centroid = (0.6823881502663347, -1.4773620276982649) +station = ('kcvg', 0.00088009024877324987) +zone = ('ohz077', 0.0022077391679265054) + +[45052] +centroid = (0.68319964110204945, -1.4796737686524088) +station = ('kcvg', 0.0022439907530189995) +zone = ('kyz091', 0.0031227846906103614) + +[45053] +centroid = (0.68683929836428081, -1.4798283699175505) +station = ('khao', 0.0036682005089163066) +zone = ('ohz070', 0.0032312192810134382) + +[45054] +centroid = (0.68838347841998282, -1.467482259854793) +station = ('kmgy', 0.0034478212721947236) +zone = ('ohz071', 0.0011873593317787317) + +[45056] +centroid = (0.68924673572131179, -1.4790650850757758) +station = ('khao', 0.0037565397262165593) +zone = ('ohz070', 0.0024495562323505814) + +[45062] +centroid = (0.68905010692778212, -1.4757275617603571) +station = ('khao', 0.0020319573932743272) +zone = ('ohz070', 0.0007783845502792999) + +[45064] +centroid = (0.69048726339375177, -1.4764854535347431) +station = ('kmwo', 0.0027014278979362255) +zone = ('ohz070', 0.0021721282530419717) + +[45065] +centroid = (0.68714012331415464, -1.4697630212147141) +station = ('kmwo', 0.0037747798394547655) +zone = ('ohz071', 0.0011683331053569342) + +[45066] +centroid = (0.69029793007649543, -1.4699922702119634) +station = ('kmgy', 0.0008609717734205137) +zone = ('ohz071', 0.0022899532597751003) + +[45067] +centroid = (0.68931462902921437, -1.4744715530174519) +station = ('kmwo', 0.0012515929722444175) +zone = ('ohz070', 0.0016075151290396853) + +[45068] +centroid = (0.68983683154141096, -1.4672221185297833) +station = ('kmgy', 0.0026109186142366041) +zone = ('ohz071', 0.0021739205013513057) + +[45069] +centroid = (0.6867333219720998, -1.4732941713573491) +station = ('khao', 0.0014337653518589086) +zone = ('ohz070', 0.0027078865350527006) + +[45070] +centroid = (0.6909705276103365, -1.4758170622443993) +station = ('kmwo', 0.0023686556475903836) +zone = ('ohz070', 0.0026475050026814198) + +[45101] +centroid = (0.67533349452318858, -1.461511331404088) +station = ('kiob', 0.011597649239280182) +zone = ('kyz099', 0.0020783677163070955) + +[45102] +centroid = (0.68097843037620631, -1.4696430647352248) +station = ('kluk', 0.0032200728805708585) +zone = ('ohz078', 0.00088401933409640982) + +[45103] +centroid = (0.68237287863537965, -1.4684236904533188) +station = ('kluk', 0.0038225114397436896) +zone = ('ohz078', 0.00089644660971751786) + +[45106] +centroid = (0.67971882625504199, -1.4672095521591688) +station = ('kluk', 0.0054831683116210502) +zone = ('ohz078', 0.0021464337980288527) + +[45107] +centroid = (0.68577771930004783, -1.465528381210478) +station = ('kiln', 0.0035099138451953628) +zone = ('ohz072', 0.0030446136538043972) + +[45111] +centroid = (0.6841079628046649, -1.4711350070864144) +station = ('kluk', 0.0024050062034411844) +zone = ('ohz078', 0.0031978628244753822) + +[45112] +centroid = (0.67706718242907216, -1.4685184967382869) +station = ('kluk', 0.0065425621249452911) +zone = ('kyz097', 0.0019424455484932485) + +[45113] +centroid = (0.68760685926272291, -1.465828752374746) +station = ('kiln', 0.0028028319103935041) +zone = ('ohz071', 0.0024988875481619897) + +[45115] +centroid = (0.6776089326288911, -1.4608258358870745) +station = ('kiln', 0.010693474231017276) +zone = ('ohz079', 0.0029944327483792462) + +[45118] +centroid = (0.68368472046105622, -1.4649258586461043) +station = ('kiln', 0.004990848288004817) +zone = ('ohz078', 0.0036687178472899697) + +[45120] +centroid = (0.67768371998733912, -1.4676478392409298) +station = ('kluk', 0.0064897206613514329) +zone = ('kyz097', 0.0024367765443248364) + +[45121] +centroid = (0.67840504711389582, -1.4643926780129126) +station = ('kluk', 0.0080383203261662466) +zone = ('ohz079', 0.0012272334690832624) + +[45122] +centroid = (0.68446132216502364, -1.4680901405799702) +station = ('kluk', 0.0045583170156556366) +zone = ('ohz078', 0.0029939517876594866) + +[45123] +centroid = (0.68678699084659856, -1.4553605991338421) +station = ('kiln', 0.0055529753274450502) +zone = ('ohz063', 0.0037832854363361755) + +[45130] +centroid = (0.67909780320059743, -1.4660532017165526) +station = ('kluk', 0.0065729147661859506) +zone = ('ohz079', 0.0018269156979241479) + +[45131] +centroid = (0.67701911606147214, -1.4654995309179424) +station = ('kluk', 0.0081533654940853188) +zone = ('kyz097', 0.0024396347620320074) + +[45132] +centroid = (0.68668092718795493, -1.4590997401634371) +station = ('kiln', 0.0029212752100523007) +zone = ('ohz080', 0.002777164044693782) + +[45133] +centroid = (0.68350322367214134, -1.4586804073573532) +station = ('kiln', 0.0055023396720996608) +zone = ('ohz080', 0.00052139611002773847) + +[45135] +centroid = (0.68674543455710857, -1.458081427811361) +station = ('kiln', 0.003583651467985006) +zone = ('ohz080', 0.002951330925215814) + +[45140] +centroid = (0.68516866920427189, -1.4702994481603147) +station = ('kluk', 0.0036224423439174397) +zone = ('ohz071', 0.0031427277321704134) + +[45142] +centroid = (0.68424856652920552, -1.4627747927028991) +station = ('kiln', 0.0040101487228135294) +zone = ('ohz080', 0.0028603361616579143) + +[45144] +centroid = (0.67554598835961888, -1.4592751806598476) +station = ('kiob', 0.012412338925301714) +zone = ('ohz081', 0.0030809370945260408) + +[45145] +centroid = (0.68321487782641932, -1.4661667179311024) +station = ('kiln', 0.0058520140047176386) +zone = ('ohz078', 0.0026222040946231153) + +[45146] +centroid = (0.68616081907086057, -1.4626592344531246) +station = ('kiln', 0.0020996443800048144) +zone = ('ohz072', 0.0017616170207058177) + +[45147] +centroid = (0.68425842763947931, -1.4710381413129288) +station = ('kluk', 0.0025645104298699637) +zone = ('ohz078', 0.00327966304149349) + +[45148] +centroid = (0.68574366792634145, -1.4641089921962935) +station = ('kiln', 0.0028646332744947751) +zone = ('ohz072', 0.0024240333484947009) + +[45150] +centroid = (0.68358226963396418, -1.4700962045689199) +station = ('kluk', 0.0027762404928416817) +zone = ('ohz078', 0.0023273786491323808) + +[45152] +centroid = (0.68681001173943235, -1.4681889087623405) +station = ('kmgy', 0.0045965155030725886) +zone = ('ohz071', 0.0014691950921636259) + +[45153] +centroid = (0.67831408055328191, -1.4693449624989838) +station = ('kluk', 0.0051551740741454834) +zone = ('ohz078', 0.0032303530071287655) + +[45154] +centroid = (0.68172948045992465, -1.4646043340913022) +station = ('kiln', 0.0067531281556998382) +zone = ('ohz079', 0.0022891376056664641) + +[45155] +centroid = (0.68142027792964133, -1.4617509651103866) +station = ('kiln', 0.0068342270946479527) +zone = ('ohz079', 0.0024555133116554279) + +[45156] +centroid = (0.67745235914169477, -1.4698085394016063) +station = ('kluk', 0.0056827086217572063) +zone = ('kyz097', 0.0027748691620901166) + +[45157] +centroid = (0.67987100151252344, -1.4700937960145521) +station = ('kluk', 0.0035931101025536774) +zone = ('ohz078', 0.001949889508394167) + +[45158] +centroid = (0.68384647757613104, -1.4676403517784387) +station = ('kluk', 0.0046504181181512465) +zone = ('ohz078', 0.0024862826920093008) + +[45159] +centroid = (0.68655727061045113, -1.4606964371763316) +station = ('kiln', 0.0020888294515852769) +zone = ('ohz072', 0.0020828652576299345) + +[45160] +centroid = (0.68282299904946908, -1.4684610579526041) +station = ('kluk', 0.0038134383418439249) +zone = ('ohz078', 0.0013306583054969823) + +[45162] +centroid = (0.68538472351237634, -1.4673868776111716) +station = ('kiln', 0.0048645760295346896) +zone = ('ohz071', 0.0030235220132639297) + +[45164] +centroid = (0.69034810829249016, -1.46227466860574) +station = ('kiln', 0.0021066651588386061) +zone = ('ohz072', 0.0024521780775704537) + +[45166] +centroid = (0.68899659513291589, -1.4606269381655173) +station = ('kiln', 0.0014929947570254559) +zone = ('ohz072', 0.0019492574246403899) + +[45167] +centroid = (0.67671338673640036, -1.4625441299889554) +station = ('kluk', 0.010160709293693785) +zone = ('ohz079', 0.0029779703622073287) + +[45168] +centroid = (0.67806907123288696, -1.4617942841824212) +station = ('kiln', 0.010179841191025767) +zone = ('ohz079', 0.0021250183121544093) + +[45169] +centroid = (0.68951813441999688, -1.4599833130972593) +station = ('kiln', 0.0021941724765864525) +zone = ('ohz072', 0.0026560109666758126) + +[45171] +centroid = (0.68093226641749105, -1.4625907302799837) +station = ('kiln', 0.0073128240835198663) +zone = ('ohz079', 0.0016736320619071014) + +[45172] +centroid = (0.6819781898783337, -1.4553756613252866) +station = ('kiln', 0.0082423890088913002) +zone = ('ohz080', 0.003479031335509088) + +[45174] +centroid = (0.68344519147451244, -1.4715257339460583) +station = ('kluk', 0.0017444965899636436) +zone = ('ohz078', 0.0029060253679786081) + +[45176] +centroid = (0.68206179114950427, -1.4665954406085622) +station = ('kluk', 0.0052541506752051669) +zone = ('ohz078', 0.0017492566936848494) + +[45177] +centroid = (0.68875957942049515, -1.4633612582381541) +station = ('kiln', 0.00097278019328335278) +zone = ('ohz072', 0.00096856517204991978) + +[45202] +centroid = (0.68258703053459946, -1.47484831724308) +station = ('kluk', 0.0011750372325978909) +zone = ('ohz077', 0.0015964281643003864) + +[45203] +centroid = (0.68251603054062837, -1.4753886013663273) +station = ('kluk', 0.001585627257975596) +zone = ('ohz077', 0.0015775243757375499) + +[45204] +centroid = (0.68253782970298582, -1.4757316109242218) +station = ('kluk', 0.0018526203567503967) +zone = ('ohz077', 0.0015575647439570889) + +[45205] +centroid = (0.68259893368009805, -1.4761158102524632) +station = ('kcvg', 0.0016228044688469793) +zone = ('ohz077', 0.0015538325984291845) + +[45206] +centroid = (0.68290085818740054, -1.4745308243988497) +station = ('kluk', 0.001033828103164355) +zone = ('ohz077', 0.0014253546900911418) + +[45207] +centroid = (0.68315794518621931, -1.4743029367584166) +station = ('kluk', 0.0010426086957581473) +zone = ('ohz077', 0.001340271312458091) + +[45208] +centroid = (0.68303016963168084, -1.473658805544676) +station = ('kluk', 0.00065239412396854175) +zone = ('ohz077', 0.0018064492162451306) + +[45209] +centroid = (0.68334914600577523, -1.4735233854480134) +station = ('kluk', 0.00093526919127346491) +zone = ('ohz077', 0.0017341917603350412) + +[45211] +centroid = (0.68340269270722642, -1.4764898517644582) +station = ('kcvg', 0.0020804110546576802) +zone = ('ohz077', 0.0010026242544685228) + +[45212] +centroid = (0.68354406437663795, -1.4739687585665375) +station = ('kluk', 0.0012191849066272582) +zone = ('ohz077', 0.0013389965039047171) + +[45213] +centroid = (0.68383398101868687, -1.4734086125964025) +station = ('kluk', 0.0014110068961052328) +zone = ('ohz077', 0.0016766752139205248) + +[45214] +centroid = (0.68268565909062962, -1.4754028432530237) +station = ('kluk', 0.0016152583800376303) +zone = ('ohz077', 0.0014075516364377063) + +[45215] +centroid = (0.68478480148858822, -1.4741390852482397) +station = ('khao', 0.0024092902702239922) +zone = ('ohz077', 0.0012937800676527912) + +[45216] +centroid = (0.68418507145101792, -1.4744847651598896) +station = ('kluk', 0.0019693568756739455) +zone = ('ohz077', 0.00082859780569123024) + +[45217] +centroid = (0.68357663222048015, -1.474764942864712) +station = ('kluk', 0.0015924377587330783) +zone = ('ohz077', 0.00079343603937839162) + +[45218] +centroid = (0.68528195852601892, -1.4751211645650444) +station = ('khao', 0.0017961123451331997) +zone = ('ohz077', 0.0012378770929219168) + +[45219] +centroid = (0.68290153886580884, -1.475031227748689) +station = ('kluk', 0.0013901006298766728) +zone = ('ohz077', 0.001252720396295286) + +[45220] +centroid = (0.68327516149878331, -1.4751576768529959) +station = ('kluk', 0.001641397511894989) +zone = ('ohz077', 0.00086772580503774769) + +[45223] +centroid = (0.68365960517312008, -1.4756676446071362) +station = ('kluk', 0.0021823131208744428) +zone = ('ohz077', 0.0004392914817353946) + +[45224] +centroid = (0.68418768944489594, -1.4753563127751654) +station = ('kluk', 0.0023527057364223589) +zone = ('ohz077', 0.00017764630813588806) + +[45225] +centroid = (0.68317089552926913, -1.4756970359517398) +station = ('kluk', 0.0019690647662043165) +zone = ('ohz077', 0.00092525372952409186) + +[45226] +centroid = (0.68262771415946344, -1.4734361713452913) +station = ('kluk', 0.00021495475598837217) +zone = ('ohz077', 0.0021939290440176969) + +[45227] +centroid = (0.68336398130441722, -1.472810191555771) +station = ('kluk', 0.0010288932923830638) +zone = ('ohz077', 0.0022418288655736847) + +[45229] +centroid = (0.6833443114437473, -1.4745728693805302) +station = ('kluk', 0.0013225697754476373) +zone = ('ohz077', 0.0010602866986342708) + +[45230] +centroid = (0.68196555369454936, -1.4728708068406928) +station = ('kluk', 0.00058955105202716351) +zone = ('kyz093', 0.0022250177515795626) + +[45231] +centroid = (0.68499804581659696, -1.475411116113678) +station = ('khao', 0.0020943170586881278) +zone = ('ohz077', 0.00091531355132596032) + +[45232] +centroid = (0.6839642174874706, -1.4749794263764899) +station = ('kluk', 0.0019931032280193646) +zone = ('ohz077', 0.00045698297119147033) + +[45233] +centroid = (0.68271637688546483, -1.477815359518178) +station = ('kcvg', 0.0011680573094434558) +zone = ('ohz077', 0.0022311752988593415) + +[45236] +centroid = (0.68434087699334345, -1.4730105902604851) +station = ('kluk', 0.0019349923898530743) +zone = ('ohz077', 0.0019813951691135096) + +[45237] +centroid = (0.68404755695925334, -1.4739699977503062) +station = ('kluk', 0.0016937825675218574) +zone = ('ohz077', 0.0012226742407533844) + +[45238] +centroid = (0.68255739484390054, -1.4767280019408928) +station = ('kcvg', 0.0012634399298462444) +zone = ('ohz077', 0.0017844600908880183) + +[45239] +centroid = (0.68423233496716207, -1.4762103547380439) +station = ('kluk', 0.0028627529414710323) +zone = ('ohz077', 0.00053393697577242493) + +[45240] +centroid = (0.68564402707934502, -1.4753151230048185) +station = ('khao', 0.0014440783043873724) +zone = ('ohz077', 0.001565555879342999) + +[45241] +centroid = (0.68550183510518503, -1.4730074137612466) +station = ('khao', 0.0022561029375806289) +zone = ('ohz077', 0.0024217983390554107) + +[45242] +centroid = (0.68491612006150837, -1.4722375141216069) +station = ('kluk', 0.002637078264489545) +zone = ('ohz077', 0.0026939468433457708) + +[45243] +centroid = (0.68396934875547155, -1.4719412444810807) +station = ('kluk', 0.0018922358491875956) +zone = ('ohz077', 0.0027969192792876387) + +[45244] +centroid = (0.68267213278892669, -1.471773954672277) +station = ('kluk', 0.001247001526403642) +zone = ('kyz093', 0.0030139358971453217) + +[45245] +centroid = (0.68174524078306997, -1.4708960540585239) +station = ('kluk', 0.0020212341919764979) +zone = ('ohz078', 0.0016962506047243204) + +[45246] +centroid = (0.68573274216522395, -1.4742659008716894) +station = ('khao', 0.0014899670049915532) +zone = ('ohz077', 0.0019200543651399162) + +[45247] +centroid = (0.68446041459381257, -1.4776150829865116) +station = ('kcvg', 0.002910314800269845) +zone = ('ohz077', 0.0016452443541642755) + +[45248] +centroid = (0.68354652529088322, -1.4776402331810328) +station = ('kcvg', 0.0019962314771242375) +zone = ('ohz077', 0.0017110143104522159) + +[45249] +centroid = (0.68557152610221728, -1.4718167850521211) +station = ('khao', 0.0029490510048471668) +zone = ('ohz071', 0.0033761793900845003) + +[45251] +centroid = (0.68547178053546576, -1.4765114763938905) +station = ('khao', 0.0019447559887816042) +zone = ('ohz077', 0.0015719648283551361) + +[45252] +centroid = (0.68539414829033707, -1.4770396304788365) +station = ('khao', 0.0022584495471585238) +zone = ('ohz077', 0.001743899983661554) + +[45255] +centroid = (0.68171782166052119, -1.4718070635681875) +station = ('kluk', 0.0013894636896298008) +zone = ('kyz093', 0.0020907505944572475) + +[45301] +centroid = (0.69309344139270723, -1.4664642093021047) +station = ('kffo', 0.0021617628447683371) +zone = ('ohz062', 0.001811406317446599) + +[45302] +centroid = (0.70521616676450194, -1.469726927805783) +station = ('kves', 0.0055815770074474436) +zone = ('ohz043', 0.0012982434524586779) + +[45303] +centroid = (0.70186619925151661, -1.4775893917399223) +station = ('kves', 0.0017450873657615848) +zone = ('ohz042', 0.0015072320329472017) + +[45304] +centroid = (0.69794447932887038, -1.4752449607688882) +station = ('kves', 0.0036784129909309946) +zone = ('ohz042', 0.0028098464611490161) + +[45305] +centroid = (0.69171217036938637, -1.4674476499757261) +station = ('kmgy', 0.0021554452872871522) +zone = ('ohz062', 0.0027392686504104772) + +[45306] +centroid = (0.70614684613483547, -1.4693427633841265) +station = ('kaoh', 0.0047712256234377732) +zone = ('ohz035', 0.0018327142773509998) + +[45307] +centroid = (0.69081552491946685, -1.4612523419963843) +station = ('kiln', 0.0026968090654623331) +zone = ('ohz062', 0.0029534254780195879) + +[45308] +centroid = (0.70039431073343228, -1.4740647691286897) +station = ('kves', 0.0015614931167213363) +zone = ('ohz042', 0.0021575060585835499) + +[45309] +centroid = (0.69538683893641284, -1.4733145393497198) +station = ('kday', 0.002834812421780142) +zone = ('ohz061', 0.0022673349549114457) + +[45310] +centroid = (0.70429161349984304, -1.4772933315389063) +station = ('kves', 0.0030620052351147628) +zone = ('ohz034', 0.0032696933827155886) + +[45311] +centroid = (0.69161094127277079, -1.4777266269790066) +station = ('kmwo', 0.0039722747834131785) +zone = ('ohz060', 0.0020276400454023553) + +[45312] +centroid = (0.69904194236252437, -1.4676998675059316) +station = ('kday', 0.0031284853023422028) +zone = ('ohz051', 0.0018156009501565757) + +[45314] +centroid = (0.69376977393114758, -1.4621713974738997) +station = ('ksgh', 0.0017913937033432299) +zone = ('ohz062', 0.00183547851115698) + +[45315] +centroid = (0.69563570543445474, -1.4719943373969262) +station = ('kday', 0.0018030411268216071) +zone = ('ohz061', 0.0019031523248761971) + +[45316] +centroid = (0.69458869986947591, -1.4630327174597586) +station = ('ksgh', 0.00077959959170265537) +zone = ('ohz062', 0.0020329332651572224) + +[45317] +centroid = (0.70181465967870527, -1.4658773423411218) +station = ('kedj', 0.0036060213132799502) +zone = ('ohz052', 0.0031876914288332257) + +[45318] +centroid = (0.70038439726328083, -1.4722500804922212) +station = ('kves', 0.0026572199070212768) +zone = ('ohz051', 0.0021264140978068066) + +[45319] +centroid = (0.69667197722453389, -1.4650827811991514) +station = ('ksgh', 0.0019154292561340807) +zone = ('ohz053', 0.0021359340398799586) + +[45320] +centroid = (0.69377953032166628, -1.4779696815306393) +station = ('kmwo', 0.0053977511051205695) +zone = ('ohz060', 0.00047421807261320206) + +[45321] +centroid = (0.69601281872593312, -1.4780504728217139) +station = ('kves', 0.0059845748424448356) +zone = ('ohz060', 0.0024445951250239547) + +[45322] +centroid = (0.69638254927467558, -1.4717982845620499) +station = ('kday', 0.0014884350676951622) +zone = ('ohz061', 0.0025842701050993108) + +[45323] +centroid = (0.69551311350779466, -1.4648133198159359) +station = ('ksgh', 0.0011862585509718271) +zone = ('ohz053', 0.0022552759260180862) + +[45324] +centroid = (0.69497305627735007, -1.4659158966642982) +station = ('kffo', 0.0008319706070403491) +zone = ('ohz062', 0.0026057749446326659) + +[45325] +centroid = (0.69276671575673388, -1.4735850479304866) +station = ('kmwo', 0.0028669720977563726) +zone = ('ohz061', 0.0021630673089536394) + +[45326] +centroid = (0.7005861922313964, -1.4677100078688856) +station = ('kday', 0.0045105097483946061) +zone = ('ohz051', 0.0023625257186960791) + +[45327] +centroid = (0.69165234048262803, -1.4731103358272364) +station = ('kmwo', 0.0017241610990030721) +zone = ('ohz061', 0.0026636661103312991) + +[45328] +centroid = (0.70015970357537916, -1.4747374713822858) +station = ('kves', 0.0015304371136508474) +zone = ('ohz042', 0.0016693045042418828) + +[45330] +centroid = (0.69199259242030431, -1.475302521727619) +station = ('kmwo', 0.0026929570468346925) +zone = ('ohz060', 0.0022867778720618258) + +[45331] +centroid = (0.69985270015995327, -1.477430741310916) +station = ('kves', 0.0023912135867316204) +zone = ('ohz042', 0.00073524794620041204) + +[45332] +centroid = (0.69797193335800423, -1.4798799094903621) +station = ('kves', 0.0050454726881644226) +zone = ('ohz042', 0.0033814469121968755) + +[45333] +centroid = (0.70248568641621945, -1.4718671028944559) +station = ('kves', 0.0027790508558804905) +zone = ('ohz043', 0.0022163917764924344) + +[45334] +centroid = (0.7058714331788708, -1.4668333813454866) +station = ('kedj', 0.0032270860716682001) +zone = ('ohz043', 0.0029012098566679584) + +[45335] +centroid = (0.69184500737875565, -1.4615597468375381) +station = ('kiln', 0.003647849945198579) +zone = ('ohz062', 0.002190864595717035) + +[45336] +centroid = (0.70585792433046035, -1.4705676703597612) +station = ('kaoh', 0.0055089766701013881) +zone = ('ohz043', 0.0020606061268599097) + +[45337] +centroid = (0.6978084309136775, -1.4734526821600151) +station = ('kday', 0.0031012405385486084) +zone = ('ohz051', 0.0028775981818341466) + +[45338] +centroid = (0.6955093610499028, -1.4755632913711594) +station = ('kday', 0.0044653816566536508) +zone = ('ohz060', 0.002351310187629812) + +[45339] +centroid = (0.69835438735699384, -1.4720461213158329) +station = ('kday', 0.002585731639728469) +zone = ('ohz051', 0.0016699453024653565) + +[45340] +centroid = (0.70456447827509994, -1.4669867957867371) +station = ('kedj', 0.0030976164997550126) +zone = ('ohz043', 0.0021304687523080301) + +[45341] +centroid = (0.69596024940886314, -1.4665034443036895) +station = ('kffo', 0.00081297034323542412) +zone = ('ohz053', 0.0033057136958001502) + +[45342] +centroid = (0.69166242848570458, -1.4708931393586731) +station = ('kmgy', 0.00076863315339133133) +zone = ('ohz061', 0.0021933086634534672) + +[45344] +centroid = (0.69730081935402732, -1.4662470205299867) +station = ('kffo', 0.0021467093761449265) +zone = ('ohz053', 0.0030911391530246122) + +[45345] +centroid = (0.69355567439180554, -1.4731882822316307) +station = ('kmgy', 0.0033553741197107248) +zone = ('ohz061', 0.0015951710672142225) + +[45346] +centroid = (0.69781954866101259, -1.4784676414195257) +station = ('kves', 0.0044983098764132786) +zone = ('ohz042', 0.0029033152978709736) + +[45347] +centroid = (0.6961108538700177, -1.4791834183990611) +station = ('kves', 0.0062525121856970827) +zone = ('ohz060', 0.0028455986446606798) + +[45348] +centroid = (0.70388510886376099, -1.4774000933292508) +station = ('kves', 0.0027609598934809397) +zone = ('ohz042', 0.0034493387233512866) + +[45349] +centroid = (0.69793055160143946, -1.4650567757932964) +station = ('ksgh', 0.0029221385497473504) +zone = ('ohz053', 0.0024571417754350742) + +[45350] +centroid = (0.70379248424035779, -1.476090223725629) +station = ('kves', 0.0022469554818184338) +zone = ('ohz042', 0.0033890773261830462) + +[45351] +centroid = (0.70405561007838846, -1.4747185869197794) +station = ('kves', 0.0024771121044627155) +zone = ('ohz034', 0.0039282929316648242) + +[45352] +centroid = (0.69900651217870891, -1.4790667605918577) +station = ('kves', 0.0038756385212461025) +zone = ('ohz042', 0.0022118499620941245) + +[45353] +centroid = (0.70323806295016911, -1.4668218970790086) +station = ('kedj', 0.0032823495337324297) +zone = ('ohz043', 0.0022622653724100675) + +[45354] +centroid = (0.69657053868840801, -1.4730524258026554) +station = ('kday', 0.0024572833533655176) +zone = ('ohz061', 0.0030912358336238552) + +[45356] +centroid = (0.70097379495167944, -1.4700595875612132) +station = ('kves', 0.0040761171962582186) +zone = ('ohz051', 0.0019101105407356429) + +[45358] +centroid = (0.69789747761211407, -1.4745885424372132) +station = ('kves', 0.003767454849533444) +zone = ('ohz042', 0.0031060899321294468) + +[45359] +centroid = (0.69894388976514732, -1.472197546081736) +station = ('kday', 0.0031233075930556476) +zone = ('ohz051', 0.0016317583700176429) + +[45360] +centroid = (0.70389406240282382, -1.467685677979113) +station = ('kedj', 0.0037041107254690282) +zone = ('ohz043', 0.0014984191016841359) + +[45361] +centroid = (0.69749828590559804, -1.4733165115717746) +station = ('kday', 0.0028755963879500235) +zone = ('ohz051', 0.0029373130143822519) + +[45362] +centroid = (0.70323645724725736, -1.4770325444420733) +station = ('kves', 0.0020737300384842733) +zone = ('ohz042', 0.002780504123542265) + +[45363] +centroid = (0.70230841332409444, -1.4730590929603979) +station = ('kves', 0.0018625319710208644) +zone = ('ohz043', 0.00305836959876631) + +[45365] +centroid = (0.70308389801734061, -1.4688651365810257) +station = ('kves', 0.0051443353938463209) +zone = ('ohz043', 0.0010280556721393383) + +[45368] +centroid = (0.69542495692727646, -1.459932646189074) +station = ('ksgh', 0.0025745007829236074) +zone = ('ohz053', 0.0022064869184434221) + +[45369] +centroid = (0.69730818464347077, -1.4589852116579212) +station = ('ksgh', 0.0038386529372759614) +zone = ('ohz054', 0.0027883920464580585) + +[45370] +centroid = (0.6912953508374251, -1.4666524605152249) +station = ('kmgy', 0.0026978705739499442) +zone = ('ohz062', 0.0024106636220036968) + +[45371] +centroid = (0.69707657945173118, -1.4688802685856406) +station = ('kday', 0.0010192254625877677) +zone = ('ohz051', 0.0021867016437791533) + +[45372] +centroid = (0.69841100583792848, -1.4633242572580119) +station = ('ksgh', 0.0030671387263801913) +zone = ('ohz053', 0.0019017214697888772) + +[45373] +centroid = (0.69869942149682052, -1.4694725460673048) +station = ('kday', 0.0023318505418822074) +zone = ('ohz051', 0.00058570545533251903) + +[45377] +centroid = (0.69631800699893687, -1.4699910833880723) +station = ('kday', 0.00012279883216318995) +zone = ('ohz061', 0.0026261031774963079) + +[45378] +centroid = (0.69643740497306583, -1.4746063622488761) +station = ('kday', 0.0036429655692856986) +zone = ('ohz060', 0.0035344217289311891) + +[45380] +centroid = (0.70239899591227295, -1.4750984752847685) +station = ('kves', 0.00079596608212433972) +zone = ('ohz042', 0.00237276138164724) + +[45381] +centroid = (0.69333714171616334, -1.4752366355483562) +station = ('kmwo', 0.0037991771462203162) +zone = ('ohz060', 0.0016787993728907956) + +[45382] +centroid = (0.69635837646453547, -1.4767041781966033) +station = ('kves', 0.0053685362240020306) +zone = ('ohz060', 0.0027865583092857717) + +[45383] +centroid = (0.69735637318411836, -1.4720666812944216) +station = ('kday', 0.0019517520553228376) +zone = ('ohz051', 0.0022913690586065698) + +[45384] +centroid = (0.69314265967761346, -1.4640648877260956) +station = ('ksgh', 0.0022816934782706566) +zone = ('ohz062', 0.00040109878550847696) + +[45385] +centroid = (0.69235677282202546, -1.4645384828186243) +station = ('ksgh', 0.0031390636931947205) +zone = ('ohz062', 0.00049038197292973929) + +[45387] +centroid = (0.69459259195370782, -1.4641106677123754) +station = ('ksgh', 0.00098374528668758389) +zone = ('ohz062', 0.0018455219342728868) + +[45388] +centroid = (0.70366292844998213, -1.4744216889607225) +station = ('kves', 0.0021543070564206787) +zone = ('ohz042', 0.0037159856442922907) + +[45389] +centroid = (0.69912948807780451, -1.4665582825487873) +station = ('kday', 0.0037307586164935418) +zone = ('ohz051', 0.0026900040904726573) + +[45390] +centroid = (0.70188738754863578, -1.4793509700072525) +station = ('kves', 0.0030846935239103733) +zone = ('ohz042', 0.0023646616633072074) + +[45402] +centroid = (0.6939317404857327, -1.4697259504214018) +station = ('kday', 0.0024567286373042363) +zone = ('ohz061', 0.0010968890102688652) + +[45403] +centroid = (0.69409747695150203, -1.468649675684867) +station = ('kffo', 0.0017242595761838189) +zone = ('ohz061', 0.0019371461742022169) + +[45404] +centroid = (0.69448579525677834, -1.4688685574263598) +station = ('kffo', 0.0016482793068116135) +zone = ('ohz061', 0.0018651641705362267) + +[45405] +centroid = (0.69450420848038685, -1.469846971551735) +station = ('kday', 0.0018821825222839676) +zone = ('ohz061', 0.0011969503618776769) + +[45406] +centroid = (0.69436552461802337, -1.4702842114359447) +station = ('kday', 0.0020471579532861509) +zone = ('ohz061', 0.00084277248364392633) + +[45409] +centroid = (0.69326755543888618, -1.4693572670702106) +station = ('kmgy', 0.0022031611996100294) +zone = ('ohz061', 0.0014943002785650463) + +[45410] +centroid = (0.69373429138745457, -1.4688363561016604) +station = ('kffo', 0.0020780582619146413) +zone = ('ohz061', 0.0017812030164973756) + +[45414] +centroid = (0.69547654885996535, -1.4696991421640913) +station = ('kday', 0.00091796684087523932) +zone = ('ohz061', 0.0019737208279965593) + +[45415] +centroid = (0.69526204789489521, -1.4705688222770674) +station = ('kday', 0.0012496622598339269) +zone = ('ohz061', 0.0014835647145263657) + +[45416] +centroid = (0.69476592060172337, -1.4705813886476817) +station = ('kday', 0.0017129379267203121) +zone = ('ohz061', 0.001017107672141022) + +[45417] +centroid = (0.6935095802462603, -1.4711175363406019) +station = ('kmgy', 0.0024741930781673614) +zone = ('ohz061', 0.00033817624796504746) + +[45418] +centroid = (0.69288510143989679, -1.4706271337273766) +station = ('kmgy', 0.0017733503316453765) +zone = ('ohz061', 0.0010420537123897269) + +[45419] +centroid = (0.69312916828249549, -1.4689943956654286) +station = ('kmgy', 0.0021692754707685834) +zone = ('ohz061', 0.0018053593667869221) + +[45420] +centroid = (0.6932241491003891, -1.4683309960167454) +station = ('kffo', 0.0022632768263522386) +zone = ('ohz061', 0.0022543598045558192) + +[45424] +centroid = (0.69539427403902632, -1.4679966956518185) +station = ('kffo', 0.00082236987834986331) +zone = ('ohz061', 0.0028736845829740766) + +[45426] +centroid = (0.69471886652508963, -1.4716568430794683) +station = ('kday', 0.0021650408980038406) +zone = ('ohz061', 0.00095546721388177318) + +[45428] +centroid = (0.6936440578651264, -1.4706255105711721) +station = ('kmgy', 0.0025205025441250306) +zone = ('ohz061', 0.0004503760133322034) + +[45429] +centroid = (0.69259734900612036, -1.4688501616560434) +station = ('kmgy', 0.0017589950949520132) +zone = ('ohz061', 0.0021648899773482368) + +[45430] +centroid = (0.69306455619358676, -1.467557378825799) +station = ('kffo', 0.0022082974792683296) +zone = ('ohz062', 0.0026382737948785376) + +[45431] +centroid = (0.69400916329135109, -1.4675466450508989) +station = ('kffo', 0.0012975477587895282) +zone = ('ohz062', 0.0028988759220581568) + +[45432] +centroid = (0.69358497846994638, -1.4675635049314735) +station = ('kffo', 0.001704502496263513) +zone = ('ohz062', 0.0027537640022003425) + +[45433] +centroid = (0.69502328685322234, -1.4669470197330841) +station = ('kffo', 0.00019953911860197537) +zone = ('ohz062', 0.0031293454951242588) + +[45434] +centroid = (0.69326895170228775, -1.4666320052563915) +station = ('kffo', 0.0019690191539524721) +zone = ('ohz062', 0.0019770438690943498) + +[45439] +centroid = (0.69289096574618336, -1.4699046895900987) +station = ('kmgy', 0.0017507176680387089) +zone = ('ohz061', 0.0013523852994140825) + +[45440] +centroid = (0.69247536794469855, -1.4677454729592863) +station = ('kmgy', 0.0022763032272170329) +zone = ('ohz062', 0.0027778783835122017) + +[45449] +centroid = (0.69226830208224188, -1.470226318864656) +station = ('kmgy', 0.0011195028473642054) +zone = ('ohz061', 0.0017306981415023349) + +[45458] +centroid = (0.69116069868563379, -1.4688162324553848) +station = ('kmgy', 0.0010269675159036353) +zone = ('ohz071', 0.0030204180068720619) + +[45459] +centroid = (0.69197824581385292, -1.4690540684725542) +station = ('kmgy', 0.0011817941294653871) +zone = ('ohz061', 0.0024675171345050527) + +[45502] +centroid = (0.6957026388112687, -1.4617623272038172) +station = ('ksgh', 0.001222053838731555) +zone = ('ohz053', 0.0010598680847548319) + +[45503] +centroid = (0.69742613399432063, -1.4620934161629204) +station = ('ksgh', 0.0022736548497369747) +zone = ('ohz053', 0.00076283840056570154) + +[45504] +centroid = (0.69720398848712672, -1.4637603626782076) +station = ('ksgh', 0.0018955282942804941) +zone = ('ohz053', 0.0012379588518474794) + +[45505] +centroid = (0.69642194135589308, -1.4618415127919802) +station = ('ksgh', 0.0015451981645439492) +zone = ('ohz053', 0.00043468695400405191) + +[45506] +centroid = (0.6965250903146859, -1.4632292764401182) +station = ('ksgh', 0.0011818158770860957) +zone = ('ohz053', 0.00073088020131282724) + +[45601] +centroid = (0.68612488274156203, -1.4478740267607049) +station = ('klhq', 0.0085851584509683866) +zone = ('ohz073', 0.0014208989619418841) + +[45612] +centroid = (0.68428907562114438, -1.4534942662048069) +station = ('kiln', 0.0078724847348360088) +zone = ('ohz082', 0.0036557174621945189) + +[45613] +centroid = (0.68127559013465089, -1.4460209932405699) +station = ('k3i2', 0.010423071409344118) +zone = ('ohz083', 0.0031625348553524397) + +[45614] +centroid = (0.67945105784120108, -1.4360079695087085) +station = ('k3i2', 0.0024432288392286549) +zone = ('ohz086', 0.0019083063970802866) + +[45616] +centroid = (0.6765064081404063, -1.4541092853266246) +station = ('khts', 0.012496267935071487) +zone = ('ohz081', 0.0026051118484239615) + +[45617] +centroid = (0.68555915171782056, -1.4513397270563901) +station = ('klck', 0.0098386897659849277) +zone = ('ohz073', 0.0016725918812644778) + +[45618] +centroid = (0.67867990156449987, -1.4593817155573892) +station = ('kiln', 0.009824813759734945) +zone = ('ohz081', 0.0020817728778191819) + +[45619] +centroid = (0.67145196953321584, -1.4390629414715219) +station = ('khts', 0.0022641544803628506) +zone = ('ohz087', 0.0025013359675313592) + +[45620] +centroid = (0.67998497151267856, -1.433644793701508) +station = ('k3i2', 0.00099388555966199526) +zone = ('ohz085', 0.0026684334896696004) + +[45621] +centroid = (0.68261202364948803, -1.4417771204445906) +station = ('kuni', 0.0053972924364284131) +zone = ('ohz083', 0.0015963301324550356) + +[45622] +centroid = (0.68722346278593727, -1.4397367956424243) +station = ('kuni', 0.0045505379139218725) +zone = ('ohz074', 0.0021351067362978) + +[45623] +centroid = (0.67442464922179757, -1.4358786406111357) +station = ('k3i2', 0.0053013853913102876) +zone = ('ohz086', 0.0032596775071010802) + +[45624] +centroid = (0.68364951717004352, -1.4546798334591016) +station = ('kiln', 0.0074706800539661956) +zone = ('ohz080', 0.0034443741164834714) + +[45628] +centroid = (0.68750229658723594, -1.4520797641125283) +station = ('klck', 0.0082383282304105011) +zone = ('ohz073', 0.0021189720358068087) + +[45629] +centroid = (0.67470158061421148, -1.4454100581892018) +station = ('khts', 0.0062418995631682694) +zone = ('kyz101', 0.0024339825095404024) + +[45630] +centroid = (0.67542742814353085, -1.450221285165127) +station = ('khts', 0.0093989449478800342) +zone = ('ohz088', 0.0022707610954360987) + +[45631] +centroid = (0.67753400564410304, -1.4357303050780086) +station = ('k3i2', 0.0027622422840906141) +zone = ('ohz086', 0.00076115265044644515) + +[45634] +centroid = (0.683887091387825, -1.4396275380312495) +station = ('kuni', 0.0034735843966401713) +zone = ('ohz084', 0.0011721455021669359) + +[45636] +centroid = (0.67348093224195171, -1.4456386439613356) +station = ('khts', 0.0054223739473913063) +zone = ('kyz101', 0.0014693689342134479) + +[45638] +centroid = (0.67301992097332985, -1.4430416114876605) +station = ('khts', 0.0038332025436565416) +zone = ('ohz087', 0.002061920506695927) + +[45640] +centroid = (0.68102176690153338, -1.4426252108347197) +station = ('kuni', 0.0066607542628832157) +zone = ('ohz083', 0.00051441165340777742) + +[45642] +centroid = (0.68149928898487899, -1.4495738378258072) +station = ('kiln', 0.011938550687681857) +zone = ('ohz082', 0.00055574857535988236) + +[45644] +centroid = (0.68869875469606312, -1.4459138649310825) +station = ('klhq', 0.0056068165657231529) +zone = ('ohz073', 0.0035668654693645665) + +[45645] +centroid = (0.67310991014956278, -1.4403679066999453) +station = ('khts', 0.0034993948411532836) +zone = ('ohz087', 0.00057670812053811583) + +[45646] +centroid = (0.68199035482322024, -1.4542569750879286) +station = ('kiln', 0.0088214174441623525) +zone = ('ohz082', 0.0034686159718992572) + +[45647] +centroid = (0.68581562785140116, -1.4439637561979517) +station = ('klhq', 0.0080027780092145669) +zone = ('ohz084', 0.0034302416348611633) + +[45648] +centroid = (0.67924535333556102, -1.4487586119854932) +station = ('khts', 0.011467175516332494) +zone = ('ohz088', 0.0019981524492417705) + +[45650] +centroid = (0.67611075945227173, -1.455994293278656) +station = ('kiln', 0.013079464841118422) +zone = ('ohz081', 0.001992670907067963) + +[45651] +centroid = (0.68565992702883083, -1.4396082695963075) +station = ('kuni', 0.0036702163361165131) +zone = ('ohz084', 0.00060130342477023523) + +[45652] +centroid = (0.67760350465491748, -1.4502816561039533) +station = ('khts', 0.010905696488743368) +zone = ('ohz088', 0.0014324982039186202) + +[45653] +centroid = (0.67875217564882495, -1.4455161742077232) +station = ('k3i2', 0.0098383948237389645) +zone = ('ohz088', 0.0027614586064199178) + +[45654] +centroid = (0.68707500507976271, -1.4377606640501461) +station = ('kuni', 0.0033818472300863106) +zone = ('ohz084', 0.002486381225761107) + +[45656] +centroid = (0.67859748711722068, -1.4415325125499237) +station = ('k3i2', 0.0067547452348047732) +zone = ('ohz083', 0.0024477649060354345) + +[45657] +centroid = (0.6779499525114383, -1.4527501450782192) +station = ('khts', 0.012528647726536314) +zone = ('ohz081', 0.0032021119676795785) + +[45658] +centroid = (0.67654072131350051, -1.4383529764383955) +station = ('k3i2', 0.0050124652374625173) +zone = ('ohz086', 0.0016804930554639504) + +[45659] +centroid = (0.67465667329255774, -1.4423598160686615) +station = ('khts', 0.0051836404946239275) +zone = ('ohz087', 0.001730708320745929) + +[45660] +centroid = (0.68052811797589929, -1.455035566467243) +station = ('kiln', 0.0095463537877077259) +zone = ('ohz081', 0.0029126005747487737) + +[45661] +centroid = (0.68147485437535116, -1.4505120744718019) +station = ('kiln', 0.011360898927748249) +zone = ('ohz082', 0.00078897696947234511) + +[45662] +centroid = (0.67687509149159764, -1.4471982003677477) +station = ('khts', 0.0088221460023276826) +zone = ('ohz088', 0.0010825952298363036) + +[45663] +centroid = (0.67611980025779705, -1.4501734631436223) +station = ('khts', 0.0098118889945585566) +zone = ('ohz088', 0.0017325250726191622) + +[45669] +centroid = (0.67192406364258772, -1.4374259797127837) +station = ('khts', 0.0034851392563839284) +zone = ('wvz006', 0.0020986302365044486) + +[45671] +centroid = (0.68015924263849026, -1.4529519051397497) +station = ('kiln', 0.010850926605171639) +zone = ('ohz082', 0.003087775896915898) + +[45672] +centroid = (0.68404197190564697, -1.4432969357039347) +station = ('kuni', 0.0062939888440748156) +zone = ('ohz083', 0.0031921883594807333) + +[45673] +centroid = (0.68423741387528525, -1.4453419030819117) +station = ('klhq', 0.0097299597146406226) +zone = ('ohz083', 0.0041485504466585912) + +[45674] +centroid = (0.67862631995646372, -1.43770915938392) +station = ('k3i2', 0.0037948719729526989) +zone = ('ohz086', 0.0012759152359849758) + +[45678] +centroid = (0.67387935600359694, -1.4377949248633628) +station = ('khts', 0.004850017633342937) +zone = ('ohz087', 0.0021544571164024838) + +[45679] +centroid = (0.68006009048368454, -1.4583258262665177) +station = ('kiln', 0.0087405275876331154) +zone = ('ohz081', 0.0023671630904722562) + +[45680] +centroid = (0.67138990562501477, -1.4407139531307382) +station = ('khts', 0.0017657817900464327) +zone = ('ohz087', 0.002285111631811592) + +[45681] +centroid = (0.68605999139997298, -1.4530954410174337) +station = ('kiln', 0.0074388481087483546) +zone = ('ohz073', 0.0027380490291795925) + +[45682] +centroid = (0.67730871854425556, -1.4432984715936765) +station = ('khts', 0.0079343017932406792) +zone = ('ohz083', 0.0038561434400555782) + +[45684] +centroid = (0.67459490609032957, -1.4519650436207945) +station = ('khts', 0.010072432361899003) +zone = ('kyz100', 0.0032938590308746042) + +[45685] +centroid = (0.67948812863451336, -1.4391382524287453) +station = ('k3i2', 0.0048734329901798613) +zone = ('ohz086', 0.0026622992767097982) + +[45686] +centroid = (0.68092504075438787, -1.4377475566274638) +station = ('kuni', 0.0039550338233267862) +zone = ('ohz083', 0.0032767521802371052) + +[45688] +centroid = (0.67598483394674025, -1.440651575063272) +station = ('khts', 0.0063608439311954486) +zone = ('ohz087', 0.0023155941171008258) + +[45690] +centroid = (0.68306474460416278, -1.4487591006776839) +station = ('klhq', 0.011649280325215514) +zone = ('ohz082', 0.0013080630529394535) + +[45692] +centroid = (0.68266698406763326, -1.4406133698059458) +station = ('kuni', 0.0045311481863095282) +zone = ('ohz083', 0.0019502265937109851) + +[45693] +centroid = (0.67731172051056898, -1.4580531185708936) +station = ('kiln', 0.011414477003397906) +zone = ('ohz081', 0.0011471610770927019) + +[45694] +centroid = (0.67620818373111813, -1.4447989660582012) +station = ('khts', 0.0072988337889822001) +zone = ('ohz088', 0.0030685602160239606) + +[45695] +centroid = (0.68349786551133773, -1.4376740259060772) +station = ('kuni', 0.0021070174292591344) +zone = ('ohz084', 0.0021823619302561376) + +[45696] +centroid = (0.67371728472925674, -1.439060934342882) +station = ('khts', 0.0043055674233373519) +zone = ('ohz087', 0.0011560046399332312) + +[45697] +centroid = (0.67948381767126109, -1.4603818415786596) +station = ('kiln', 0.0088823544715074844) +zone = ('ohz081', 0.0031232596026395422) + +[45698] +centroid = (0.68566655927998832, -1.4380069649141876) +station = ('kuni', 0.0025551201674966061) +zone = ('ohz084', 0.0014038726109715863) + +[45701] +centroid = (0.68612318977218756, -1.4326713188579159) +station = ('kuni', 0.0026367841515343147) +zone = ('ohz075', 0.0006690914635776097) + +[45710] +centroid = (0.68399212530220999, -1.4353182153883202) +station = ('kuni', 0.00036648733255221849) +zone = ('ohz075', 0.0036149118665502935) + +[45711] +centroid = (0.68815595729869283, -1.4299827438649737) +station = ('kuni', 0.0055431734356119642) +zone = ('ohz075', 0.0022509435395527411) + +[45714] +centroid = (0.68621082275393019, -1.4244390371085716) +station = ('kpkb', 0.0022371281294977017) +zone = ('wvz009', 0.0022841541947725601) + +[45715] +centroid = (0.69123885452953815, -1.4246777283370744) +station = ('kpkb', 0.0053146960076907697) +zone = ('ohz076', 0.0031662019926076927) + +[45716] +centroid = (0.68875675198710684, -1.4343417909382921) +station = ('kuni', 0.0044609946718081961) +zone = ('ohz075', 0.0029106858524688166) + +[45719] +centroid = (0.68766901043738637, -1.4333800447072731) +station = ('kuni', 0.0036065670185774779) +zone = ('ohz075', 0.0016024125100177269) + +[45721] +centroid = (0.69054803575830626, -1.4239159968383339) +station = ('kpkb', 0.0044381741289194832) +zone = ('ohz076', 0.0022665330222679308) + +[45723] +centroid = (0.68462721571042573, -1.4280892536127774) +station = ('kpkb', 0.0053807967398701645) +zone = ('ohz075', 0.0035339670460438296) + +[45724] +centroid = (0.68737064640175805, -1.4276865014345872) +station = ('kpkb', 0.0048088964257375398) +zone = ('ohz075', 0.0034155200970011441) + +[45727] +centroid = (0.69202456685220093, -1.4222371646308405) +station = ('kpkb', 0.0055522687968125352) +zone = ('ohz068', 0.0020701228002694776) + +[45729] +centroid = (0.68798039462923477, -1.4242654117545832) +station = ('kpkb', 0.0025577218726040908) +zone = ('ohz076', 0.0016056152453033264) + +[45732] +centroid = (0.68967964718897634, -1.432363041352136) +station = ('kuni', 0.0057646328819711216) +zone = ('ohz075', 0.0031923778852963568) + +[45734] +centroid = (0.69187371804495101, -1.4170551773619142) +station = ('kpkb', 0.0064079980569373418) +zone = ('ohz069', 0.0020904043559057603) + +[45735] +centroid = (0.68524743591341442, -1.4299168053258331) +station = ('kuni', 0.0041788003049427576) +zone = ('ohz075', 0.0020180862255182799) + +[45740] +centroid = (0.68902267035194076, -1.4325078862267591) +station = ('kuni', 0.0051164072437441463) +zone = ('ohz075', 0.0025555515659113764) + +[45741] +centroid = (0.68198848732092054, -1.4354824334176404) +station = ('kuni', 0.0023664403084835538) +zone = ('ohz085', 0.003039892610227646) + +[45742] +centroid = (0.68568882968124378, -1.426464456798926) +station = ('kpkb', 0.0038715643553164842) +zone = ('wvz009', 0.0031989973869832179) + +[45743] +centroid = (0.68201253795801298, -1.4285108728001819) +station = ('k3i2', 0.00442237095925287) +zone = ('ohz085', 0.0023765177312096287) + +[45744] +centroid = (0.69025619925408022, -1.4223383239142862) +station = ('kpkb', 0.003806475732544376) +zone = ('ohz076', 0.0016314033045812836) + +[45745] +centroid = (0.69125805315131006, -1.4194699625550959) +station = ('kpkb', 0.0050304370307924524) +zone = ('ohz068', 0.0032618210153952626) + +[45746] +centroid = (0.69127442433969377, -1.4217246836025774) +station = ('kpkb', 0.0047797306600356974) +zone = ('ohz076', 0.0026946457794748222) + +[45750] +centroid = (0.68818243394344558, -1.4210850378850139) +station = ('kpkb', 0.0017275353624513234) +zone = ('ohz076', 0.0010803734927691483) + +[45760] +centroid = (0.68097240899028699, -1.4332940697883199) +station = ('k3i2', 0.0018151409558135934) +zone = ('ohz085', 0.0017579862622204671) + +[45761] +centroid = (0.68810932210107956, -1.4324834341639385) +station = ('kuni', 0.0043065643921568119) +zone = ('ohz075', 0.001657119533995046) + +[45764] +centroid = (0.68840147276457087, -1.4352085738047098) +station = ('kuni', 0.0040579167015857703) +zone = ('ohz075', 0.0031486262404903992) + +[45766] +centroid = (0.68635507421660757, -1.4356671590656715) +station = ('kuni', 0.0020459251660128728) +zone = ('ohz075', 0.0028721994250097589) + +[45767] +centroid = (0.69009053260148101, -1.4159537349775657) +station = ('kpkb', 0.0056337191857691333) +zone = ('wvz010', 0.0029710108951039329) + +[45768] +centroid = (0.68805495509488002, -1.4188670036584095) +station = ('kpkb', 0.0026071798422480415) +zone = ('wvz010', 0.00202631851992681) + +[45769] +centroid = (0.68258577389753805, -1.4320608026855681) +station = ('kuni', 0.0029925682587974628) +zone = ('ohz085', 0.00060859808333011583) + +[45770] +centroid = (0.68037486061428165, -1.4276491688418871) +station = ('k3i2', 0.0042431090379087613) +zone = ('wvz008', 0.0030827134005016257) + +[45771] +centroid = (0.68035883849174839, -1.4293300954444828) +station = ('k3i2', 0.0030043871836782383) +zone = ('ohz085', 0.0024693561161654954) + +[45772] +centroid = (0.68327381759525918, -1.4280138902956765) +station = ('k3i2', 0.0055715151278198658) +zone = ('ohz085', 0.0029937620389308452) + +[45773] +centroid = (0.68868102215086291, -1.4183820290191578) +station = ('kpkb', 0.0032932412606770526) +zone = ('wvz010', 0.0020996473746777719) + +[45775] +centroid = (0.68212497206842637, -1.4338618603005788) +station = ('kuni', 0.0024441910187823317) +zone = ('ohz085', 0.0017793422269172347) + +[45776] +centroid = (0.68384461007383146, -1.4315900175731353) +station = ('kuni', 0.0028298367045282544) +zone = ('ohz085', 0.001733358363095809) + +[45778] +centroid = (0.68684868823565659, -1.4293036187997301) +station = ('kuni', 0.0051956466700159784) +zone = ('ohz075', 0.0020824283507657622) + +[45779] +centroid = (0.68063933035583635, -1.4305724731659299) +station = ('k3i2', 0.0023133974513476971) +zone = ('ohz085', 0.001663327034261122) + +[45780] +centroid = (0.68707395788221159, -1.433454291013653) +station = ('kuni', 0.0030409853947177021) +zone = ('ohz075', 0.0012898476047029279) + +[45782] +centroid = (0.68918910494941099, -1.4325840523953159) +station = ('kuni', 0.0052461344893829651) +zone = ('ohz075', 0.0027296095925996629) + +[45784] +centroid = (0.68745827938350068, -1.4255525048114661) +station = ('kpkb', 0.0032254498168007711) +zone = ('ohz076', 0.0027272777215603329) + +[45786] +centroid = (0.68943852995281352, -1.4251718485016065) +station = ('kpkb', 0.0040493474868642373) +zone = ('ohz076', 0.0023169105856361088) + +[45787] +centroid = (0.68885087759366703, -1.4247472622544739) +station = ('kpkb', 0.0034014439027476927) +zone = ('ohz076', 0.0018558815849108478) + +[45788] +centroid = (0.6896666270327565, -1.4201319659403775) +station = ('kpkb', 0.0033595962853290502) +zone = ('ohz076', 0.0020113726481805084) + +[45789] +centroid = (0.69029998956501282, -1.4181674756942102) +station = ('kpkb', 0.0046234490413582657) +zone = ('wvz010', 0.0033954854438717) + +[45801] +centroid = (0.71162087934749785, -1.4666716765902894) +station = ('kaoh', 0.0012925935909183944) +zone = ('ohz025', 0.00094672244686134447) + +[45804] +centroid = (0.71051694114231911, -1.4671439277792939) +station = ('kaoh', 0.0006121119978042737) +zone = ('ohz025', 0.0012301766295107399) + +[45805] +centroid = (0.71083843079053644, -1.4689643760022941) +station = ('kaoh', 0.002028329826706358) +zone = ('ohz025', 0.0010952694696676492) + +[45806] +centroid = (0.70986790555337986, -1.468278583779308) +station = ('kaoh', 0.0015269590032642904) +zone = ('ohz025', 0.0017500753989939993) + +[45807] +centroid = (0.71219898475563603, -1.4690724816961627) +station = ('kaoh', 0.0027606850955076952) +zone = ('ohz025', 0.0010592629772732108) + +[45808] +centroid = (0.71262824848516404, -1.4655341058904245) +station = ('kaoh', 0.0023650220013531364) +zone = ('ohz025', 0.0020807121882280098) + +[45809] +centroid = (0.71288835490358882, -1.4693431822631469) +station = ('kaoh', 0.0033950979288586464) +zone = ('ohz025', 0.0016810489308950417) + +[45810] +centroid = (0.7118221158102529, -1.4628175183629879) +station = ('kaoh', 0.0030666167846793114) +zone = ('ohz026', 0.002956977964054822) + +[45812] +centroid = (0.71003278680781579, -1.4629899743463772) +station = ('kaoh', 0.0025803845502280101) +zone = ('ohz026', 0.0021966592282142922) + +[45813] +centroid = (0.71894113929621251, -1.4788728545119612) +station = ('kdfi', 0.0046404632591683492) +zone = ('ohz015', 0.0024065950237050085) + +[45814] +centroid = (0.71382776092018219, -1.4596216634229535) +station = ('kfdy', 0.0021038815518547847) +zone = ('ohz017', 0.0018533675302491281) + +[45816] +centroid = (0.71566278264243655, -1.4624819264544144) +station = ('kfdy', 0.0016910209960692927) +zone = ('ohz017', 0.0016805160436686741) + +[45817] +centroid = (0.71346893867926475, -1.4640515534106104) +station = ('kaoh', 0.0035788854987044661) +zone = ('ohz017', 0.0035832947237833977) + +[45819] +centroid = (0.7090228869427343, -1.4706212868743822) +station = ('kaoh', 0.0034886798879958931) +zone = ('ohz035', 0.001215142539737256) + +[45820] +centroid = (0.71270439720042866, -1.467542683153497) +station = ('kaoh', 0.0025179555587678247) +zone = ('ohz025', 0.0011439795929519829) + +[45821] +centroid = (0.71953055443790359, -1.4758290352030681) +station = ('kdfi', 0.0024924238641176582) +zone = ('ohz004', 0.0019290974792324257) + +[45822] +centroid = (0.70783122848935021, -1.4765262942392399) +station = ('kves', 0.0062757456886491517) +zone = ('ohz034', 0.00048980487458747139) + +[45826] +centroid = (0.70574512370090392, -1.4746931400192851) +station = ('kves', 0.0041509787473591533) +zone = ('ohz034', 0.0025536532142822017) + +[45827] +centroid = (0.71555188442176476, -1.4712925055981143) +station = ('kdfi', 0.0061118607902663335) +zone = ('ohz016', 0.0022408906953811387) + +[45828] +centroid = (0.70656651055347752, -1.4777989883297942) +station = ('kves', 0.0052910429836221743) +zone = ('ohz034', 0.0011383123171515254) + +[45830] +centroid = (0.71398731892039946, -1.4677509183865525) +station = ('kaoh', 0.0037860213129250263) +zone = ('ohz016', 0.0020386369203912562) + +[45831] +centroid = (0.7175258867123554, -1.4704459336444344) +station = ('kdfi', 0.0045607711953247251) +zone = ('ohz016', 0.0022036448096495877) + +[45832] +centroid = (0.7143007975073502, -1.4788190809177073) +station = ('kfwa', 0.0063248939738314138) +zone = ('ohz024', 0.0022684373273591696) + +[45833] +centroid = (0.7126915690304263, -1.4721619239117028) +station = ('kaoh', 0.0049746309252067817) +zone = ('ohz025', 0.0033914449897717671) + +[45835] +centroid = (0.71129872647416492, -1.4608387164169543) +station = ('kaoh', 0.0042961051593887285) +zone = ('ohz026', 0.0017078747416889506) + +[45836] +centroid = (0.71197060842301252, -1.4597915712256351) +station = ('kfdy', 0.0039212068226844423) +zone = ('ohz026', 0.0023080167695582313) + +[45838] +centroid = (0.71108288160557065, -1.4744133462868978) +station = ('kaoh', 0.006141931325421947) +zone = ('ohz024', 0.0024426634232870659) + +[45840] +centroid = (0.71602780080219863, -1.4600025291723238) +station = ('kfdy', 0.00024589681260882539) +zone = ('ohz017', 0.0004520620791636698) + +[45841] +centroid = (0.7133807297388689, -1.4615661696491855) +station = ('kfdy', 0.0026834557383658619) +zone = ('ohz017', 0.002446586550034715) + +[45843] +centroid = (0.71160052880841973, -1.4581275743167839) +station = ('kfdy', 0.0045688163144560817) +zone = ('ohz026', 0.0024510841789139215) + +[45844] +centroid = (0.71403002712719588, -1.4710067951995629) +station = ('kaoh', 0.0050874019634808663) +zone = ('ohz016', 0.002777571097088565) + +[45845] +centroid = (0.70391463983470481, -1.472753224008986) +station = ('kves', 0.0030184488416239949) +zone = ('ohz043', 0.0023648650710268674) + +[45846] +centroid = (0.70531399246907633, -1.4790359904371451) +station = ('kves', 0.0046507268928386294) +zone = ('ohz034', 0.0026996680277443109) + +[45849] +centroid = (0.71582536006225983, -1.4738722942187799) +station = ('kdfi', 0.0055801454588481651) +zone = ('ohz015', 0.0025108130997234558) + +[45850] +centroid = (0.71043100112995083, -1.4646495730255138) +station = ('kaoh', 0.0013049216848843948) +zone = ('ohz025', 0.0027395363062910328) + +[45851] +centroid = (0.71614931062472242, -1.4765494373051211) +station = ('kdfi', 0.005691613146125137) +zone = ('ohz015', 0.0014939788367071031) + +[45853] +centroid = (0.71532783650568632, -1.4695410502404456) +station = ('kaoh', 0.0055274578795261693) +zone = ('ohz016', 0.0010896909740867526) + +[45854] +centroid = (0.71135380906535772, -1.4652410127491371) +station = ('kaoh', 0.0013184507931511141) +zone = ('ohz025', 0.0020446159951407294) + +[45855] +centroid = (0.71711927735651826, -1.476270847849918) +station = ('kdfi', 0.0047187163694731981) +zone = ('ohz015', 0.00050351041801521151) + +[45856] +centroid = (0.71753414211971733, -1.466074232934039) +station = ('kfdy', 0.004687773575560974) +zone = ('ohz016', 0.0023353290485552793) + +[45858] +centroid = (0.71744558411347115, -1.462667873832922) +station = ('kfdy', 0.002400715061805646) +zone = ('ohz017', 0.0025783095166481669) + +[45859] +centroid = (0.71006512775885522, -1.4622134250022873) +station = ('kaoh', 0.003162466807976317) +zone = ('ohz026', 0.0016256624905460005) + +[45860] +centroid = (0.70510032926204713, -1.4750972710075845) +station = ('kves', 0.0034823733020763266) +zone = ('ohz034', 0.002874367721296412) + +[45861] +centroid = (0.71703037028442174, -1.4735204532948702) +station = ('kdfi', 0.0043733069137706941) +zone = ('ohz015', 0.0021044452684486482) + +[45862] +centroid = (0.70980561475237625, -1.4750826276951601) +station = ('kves', 0.008185365882966613) +zone = ('ohz034', 0.0027041146048494206) + +[45863] +centroid = (0.71398014561717382, -1.4738425712616183) +station = ('kaoh', 0.0067231781730903986) +zone = ('ohz024', 0.0020768121413888641) + +[45864] +centroid = (0.71727874809027303, -1.4686348229329325) +station = ('kdfi', 0.0055840328731236013) +zone = ('ohz016', 0.0013226082580256927) + +[45865] +centroid = (0.70497120980398453, -1.4725039386319236) +station = ('kves', 0.0039812567628664938) +zone = ('ohz043', 0.0024150211445980044) + +[45866] +centroid = (0.70669035911719902, -1.4756962854601614) +station = ('kves', 0.0050758168332480447) +zone = ('ohz034', 0.0013508827484862438) + +[45867] +centroid = (0.71379753181753758, -1.4578135197711799) +station = ('kfdy', 0.0027802458872212533) +zone = ('ohz017', 0.0025918237153328481) + +[45868] +centroid = (0.71499652065378017, -1.4634526785843736) +station = ('kfdy', 0.0025661295356088016) +zone = ('ohz017', 0.0024920011536640504) + +[45869] +centroid = (0.70612410449468199, -1.4731254329252663) +station = ('kves', 0.0048043801411763749) +zone = ('ohz035', 0.0030121910198153594) + +[45870] +centroid = (0.70784060090743339, -1.4652287605377881) +station = ('kaoh', 0.0026531047551663447) +zone = ('ohz044', 0.0038273819950802365) + +[45871] +centroid = (0.70674355675279976, -1.4713203261463912) +station = ('kaoh', 0.0052098437773685485) +zone = ('ohz035', 0.0015742478399349774) + +[45872] +centroid = (0.71887888340179396, -1.4605903211578104) +station = ('kfdy', 0.0030133740718032626) +zone = ('ohz006', 0.0031288518724061952) + +[45873] +centroid = (0.71764057229750389, -1.4728868115099336) +station = ('kdfi', 0.0038045578654770196) +zone = ('ohz015', 0.0024970520619398721) + +[45874] +centroid = (0.71188688497879438, -1.4778060743665571) +station = ('kfwa', 0.007886219275334453) +zone = ('ohz024', 0.0016333536170669658) + +[45875] +centroid = (0.71596910537945402, -1.4671447306307499) +station = ('kaoh', 0.0056507597256773637) +zone = ('ohz016', 0.00092831518176862845) + +[45876] +centroid = (0.71431519647367914, -1.4720267830677209) +station = ('kaoh', 0.005837497447484785) +zone = ('ohz016', 0.0032158327122442185) + +[45877] +centroid = (0.71487152017275246, -1.464917289079477) +station = ('kaoh', 0.0046537255912309609) +zone = ('ohz016', 0.0028320786554507107) + +[45879] +centroid = (0.71783147641108713, -1.4759129157269191) +station = ('kdfi', 0.0039593972771940688) +zone = ('ohz015', 0.00030310375583629485) + +[45880] +centroid = (0.71682789463789787, -1.4788688926145592) +station = ('kgwb', 0.0059619444825220955) +zone = ('ohz015', 0.0021608749627294696) + +[45881] +centroid = (0.71464682648485056, -1.4622376676255977) +station = ('kfdy', 0.0019344939387580785) +zone = ('ohz017', 0.0017838823169507296) + +[45882] +centroid = (0.71003233302221036, -1.4779185782901407) +station = ('kves', 0.0086381965866586478) +zone = ('ohz034', 0.0025602247735070148) + +[45883] +centroid = (0.70529109374929022, -1.4769488733577327) +station = ('kves', 0.0038716624960002874) +zone = ('ohz034', 0.0022669596022371697) + +[45884] +centroid = (0.70780632264092425, -1.467520692004922) +station = ('kaoh', 0.0026891105514957178) +zone = ('ohz035', 0.0018461893168883789) + +[45885] +centroid = (0.70807768643302427, -1.4728945956783974) +station = ('kaoh', 0.0054491986634524273) +zone = ('ohz035', 0.0022454239167421521) + +[45886] +centroid = (0.71553088811086318, -1.4769112440590597) +station = ('kdfi', 0.0063674679887027229) +zone = ('ohz015', 0.002156671874879959) + +[45887] +centroid = (0.71054006675490788, -1.4724509329825406) +station = ('kaoh', 0.0046156638962565064) +zone = ('ohz035', 0.0032360009736252335) + +[45888] +centroid = (0.70864483117345989, -1.4675918665318184) +station = ('kaoh', 0.0019409141970999819) +zone = ('ohz035', 0.0019287617563396192) + +[45889] +centroid = (0.71824354864748297, -1.4597640124767461) +station = ('kfdy', 0.0023968598546366005) +zone = ('ohz017', 0.0026514493869670575) + +[45890] +centroid = (0.71515620082704512, -1.4571748514379976) +station = ('kfdy', 0.0024363502049272894) +zone = ('ohz017', 0.0023711303826901764) + +[45891] +centroid = (0.71339532069141554, -1.4760994216107872) +station = ('kaoh', 0.0079733250975066346) +zone = ('ohz024', 0.00036878026087444117) + +[45894] +centroid = (0.71138030316340306, -1.4741291543247956) +station = ('kaoh', 0.0059715173606244669) +zone = ('ohz024', 0.0023537823280720374) + +[45895] +centroid = (0.70821438062004038, -1.4687759677095413) +station = ('kaoh', 0.0028101450436351086) +zone = ('ohz035', 0.00093584642608861561) + +[45896] +centroid = (0.7087334589928761, -1.4648489594392617) +station = ('kaoh', 0.001984226667775861) +zone = ('ohz025', 0.0036914465881525802) + +[45897] +centroid = (0.71259695473167572, -1.4600656402780758) +station = ('kfdy', 0.0032821736692315098) +zone = ('ohz026', 0.0029203334680690074) + +[45898] +centroid = (0.71110775254741165, -1.4795095506230889) +station = ('kfwa', 0.0072321174320972023) +zone = ('inz027', 0.0022078399245689709) + +[45899] +centroid = (0.71210236332824561, -1.4795828195450873) +station = ('kfwa', 0.0066131017813599157) +zone = ('ohz024', 0.0026584839360980889) + +[46001] +centroid = (0.70251685799666019, -1.4950131183823367) +station = ('kaid', 0.002412553682902936) +zone = ('inz040', 0.0017661814027252185) + +[46011] +centroid = (0.70039881368290247, -1.4968047861259715) +station = ('kaid', 0.0019346966846019902) +zone = ('inz040', 0.00077991879770035911) + +[46012] +centroid = (0.70080554521178706, -1.494372355654052) +station = ('kaid', 0.00064052652002521808) +zone = ('inz040', 0.0013176966609541282) + +[46013] +centroid = (0.69896830692138279, -1.4954289605299169) +station = ('kaid', 0.0014815007999532382) +zone = ('inz040', 0.0020464645174799361) + +[46016] +centroid = (0.69983892951215509, -1.4954245099403241) +station = ('kaid', 0.00092604133125586785) +zone = ('inz040', 0.0012226540505685239) + +[46017] +centroid = (0.69934081254363589, -1.4941268052815888) +station = ('kaid', 0.0008367886885545248) +zone = ('inz040', 0.0022001692916911223) + +[46030] +centroid = (0.7010314606301653, -1.5011435699266742) +station = ('ktyq', 0.0039977819119689281) +zone = ('inz039', 0.0017313857982122014) + +[46031] +centroid = (0.70181380446737174, -1.5012989740432718) +station = ('ktyq', 0.0044221843361223079) +zone = ('inz038', 0.0018097524778423115) + +[46032] +centroid = (0.69747901747065599, -1.5040333115692013) +station = ('ktyq', 0.0015477967032711864) +zone = ('inz039', 0.0025241689773084345) + +[46033] +centroid = (0.69777012093659618, -1.502476408063252) +station = ('ktyq', 0.0023699651519920699) +zone = ('inz039', 0.0016876272356371603) + +[46034] +centroid = (0.7003644481499306, -1.5017996915523766) +station = ('ktyq', 0.0032072071205212793) +zone = ('inz039', 0.00096988669989643377) + +[46035] +centroid = (0.70144808817590887, -1.5128162446975497) +station = ('klaf', 0.0053625846820389003) +zone = ('inz030', 0.0033312970685404762) + +[46036] +centroid = (0.70328331933767341, -1.4980354352348451) +station = ('kmzz', 0.003949434030962728) +zone = ('inz040', 0.0027658724881903258) + +[46037] +centroid = (0.69744339530062283, -1.5000609596449548) +station = ('ktyq', 0.0042266887905400823) +zone = ('inz039', 0.0024042852055018052) + +[46038] +centroid = (0.69755057596998782, -1.5012828821075683) +station = ('ktyq', 0.0033031799544961942) +zone = ('inz039', 0.0019042617882330895) + +[46039] +centroid = (0.70457995934556505, -1.5064333487302037) +station = ('kokk', 0.004338295022587221) +zone = ('inz030', 0.0024692083347037609) + +[46040] +centroid = (0.69686249736568162, -1.4980909192517662) +station = ('kaid', 0.0044029541849358268) +zone = ('inz048', 0.0019875370296546036) + +[46041] +centroid = (0.70328108531623079, -1.5096022906931723) +station = ('ktyq', 0.0056547080845433546) +zone = ('inz030', 0.00027401700958447123) + +[46044] +centroid = (0.70182790672772777, -1.4973651764422018) +station = ('kaid', 0.0028754966473447767) +zone = ('inz040', 0.0013123493960238949) + +[46045] +centroid = (0.70317158335896068, -1.5035987071321621) +station = ('kokk', 0.0044093893460949484) +zone = ('inz038', 0.0013624870200317528) + +[46047] +centroid = (0.70309087933434855, -1.5000643630369961) +station = ('kokk', 0.0046292524443554252) +zone = ('inz038', 0.0014707088988374986) + +[46048] +centroid = (0.69735523872010452, -1.4975226400473167) +station = ('kaid', 0.00374521339529608) +zone = ('inz048', 0.0023354999272038176) + +[46049] +centroid = (0.70328021265160479, -1.5048545762487273) +station = ('ktyq', 0.0046401656617398243) +zone = ('inz038', 0.002279724211129448) + +[46050] +centroid = (0.7016997472007539, -1.5070725930220392) +station = ('ktyq', 0.0033182939577631183) +zone = ('inz030', 0.002390031358738407) + +[46051] +centroid = (0.69914280493999714, -1.4981432791293259) +station = ('kaid', 0.0031191806210411812) +zone = ('inz040', 0.0023979143466942719) + +[46052] +centroid = (0.69888055176659258, -1.5089511607091306) +station = ('ktyq', 0.0027690473294688404) +zone = ('inz037', 0.00021309249968865456) + +[46055] +centroid = (0.69618417515189401, -1.4992763992395981) +station = ('kgez', 0.0054985530662062763) +zone = ('inz048', 0.0020667229295319423) + +[46056] +centroid = (0.69770959291813694, -1.4942105112725146) +station = ('kaid', 0.0024591308995915735) +zone = ('inz049', 0.0029863840388514524) + +[46057] +centroid = (0.7040005623937805, -1.5075687377685034) +station = ('kokk', 0.0053723554269017532) +zone = ('inz030', 0.0014353427383222621) + +[46058] +centroid = (0.70443521919069718, -1.5122819645069292) +station = ('klaf', 0.0041379495033294234) +zone = ('inz030', 0.0025148965997657687) + +[46060] +centroid = (0.69925960237354068, -1.4995155268004139) +station = ('ktyq', 0.0045043901364594128) +zone = ('inz039', 0.0018228715572148532) + +[46062] +centroid = (0.69920099421725868, -1.5019612217746485) +station = ('ktyq', 0.0026483537094731577) +zone = ('inz039', 0.00020335682250191268) + +[46063] +centroid = (0.70285190885316551, -1.4961655767407211) +station = ('kaid', 0.0030414548432712526) +zone = ('inz040', 0.0019007333714049467) + +[46064] +centroid = (0.69784682815722121, -1.49647329574114) +station = ('kaid', 0.0028589560349601031) +zone = ('inz048', 0.0028274589777530219) + +[46065] +centroid = (0.70559741648630769, -1.5116676435168124) +station = ('kggp', 0.0058794119252768094) +zone = ('inz021', 0.0027820923071322457) + +[46068] +centroid = (0.70471094630592723, -1.5030047192278309) +station = ('kokk', 0.002806180430198109) +zone = ('inz038', 0.0014256740237300486) + +[46069] +centroid = (0.70055231539061535, -1.5049689127680255) +station = ('ktyq', 0.0019188845796145968) +zone = ('inz039', 0.0026225343373079343) + +[46070] +centroid = (0.70398841490218667, -1.4950898954161318) +station = ('kmzz', 0.0027055952562573828) +zone = ('inz040', 0.0031299567109208748) + +[46071] +centroid = (0.70022707328450606, -1.511607953256394) +station = ('ktyq', 0.0050425102368053124) +zone = ('inz037', 0.0022268193493612766) + +[46072] +centroid = (0.7031251576008577, -1.502158688326219) +station = ('kokk', 0.004314975514054545) +zone = ('inz038', 0.00048706603990831805) + +[46074] +centroid = (0.69876244533610998, -1.5039944081801744) +station = ('ktyq', 0.0010407750765718587) +zone = ('inz039', 0.0017307746958596141) + +[46075] +centroid = (0.69849584629286798, -1.5067544718592782) +station = ('ktyq', 0.0010899096502079975) +zone = ('inz037', 0.0019170389735712243) + +[46076] +centroid = (0.70434568380006979, -1.49972660692015) +station = ('kokk', 0.0036010679318481198) +zone = ('inz038', 0.0018231697591744101) + +[46077] +centroid = (0.69786225686780889, -1.5059158935135724) +station = ('ktyq', 0.00090506531605265793) +zone = ('inz037', 0.0027427268722276317) + +[46103] +centroid = (0.69269714693274942, -1.5116930555107211) +station = ('kind', 0.004462186543896178) +zone = ('inz046', 0.0019817986702990254) + +[46104] +centroid = (0.69217087780339559, -1.4940337792324576) +station = ('kgez', 0.002969443632044922) +zone = ('inz057', 0.0019495488669540081) + +[46105] +centroid = (0.69401398040008666, -1.5151302371264288) +station = ('ktyq', 0.0088251128510835677) +zone = ('inz045', 0.0017679486492993004) + +[46106] +centroid = (0.68963496676012537, -1.5045631586235215) +station = ('kind', 0.0037040470813159685) +zone = ('inz055', 0.0014507762777488744) + +[46107] +centroid = (0.69318217393187875, -1.502579417395705) +station = ('kind', 0.0025759808271773607) +zone = ('inz047', 0.0013004617881100648) + +[46110] +centroid = (0.69047773389603584, -1.4996221489644184) +station = ('kgez', 0.0016853840868093477) +zone = ('inz056', 0.0018730758554677967) + +[46111] +centroid = (0.69008266116655437, -1.507432776619773) +station = ('kind', 0.0033131904593021789) +zone = ('inz054', 0.0014375865508010827) + +[46112] +centroid = (0.69575648221869268, -1.5076577321070628) +station = ('keye', 0.0012266341778537084) +zone = ('inz046', 0.0023748840448370345) + +[46113] +centroid = (0.6917839208549359, -1.5062637027269099) +station = ('kind', 0.0014262430785011554) +zone = ('inz054', 0.0033219869679710443) + +[46115] +centroid = (0.69357209794006669, -1.4934197549483135) +station = ('kgez', 0.0041459031416856799) +zone = ('inz057', 0.002478277003484056) + +[46117] +centroid = (0.69489771041354143, -1.4942804466156419) +station = ('kgez', 0.004734437775319426) +zone = ('inz048', 0.0021133976902915712) + +[46118] +centroid = (0.69223903291068589, -1.5100240495069166) +station = ('kind', 0.003291138811003352) +zone = ('inz046', 0.0018727701589062696) + +[46120] +centroid = (0.6896059768412498, -1.5147525478762973) +station = ('kbmg', 0.0067244967453686114) +zone = ('inz045', 0.0028048545540161006) + +[46121] +centroid = (0.69252976985748316, -1.5128306785704637) +station = ('kind', 0.005351344685666515) +zone = ('inz046', 0.0027619480682327014) + +[46122] +centroid = (0.6941754233558961, -1.5106023992611499) +station = ('kind', 0.0037274850801962234) +zone = ('inz046', 0.00055592217140094978) + +[46123] +centroid = (0.69401961781357058, -1.5080248097553421) +station = ('kind', 0.0018146376303996516) +zone = ('inz046', 0.0014321039883294091) + +[46124] +centroid = (0.68713642321614032, -1.4997249488573607) +station = ('kbak', 0.0018427499155587719) +zone = ('inz064', 0.0028933060596462762) + +[46125] +centroid = (0.68978061448620431, -1.5121812415557967) +station = ('kind', 0.0058992413387916158) +zone = ('inz054', 0.0027226226680646284) + +[46126] +centroid = (0.69146496193413398, -1.4988946957321871) +station = ('kgez', 0.0012384894066649595) +zone = ('inz056', 0.0020334358084575965) + +[46127] +centroid = (0.69310431479394718, -1.4889789391995389) +station = ('kgez', 0.006928993293922262) +zone = ('inz058', 0.0021884087113038242) + +[46128] +centroid = (0.69217285002545037, -1.5139433085153176) +station = ('kind', 0.0062506305969024069) +zone = ('inz045', 0.0013829170704351074) + +[46130] +centroid = (0.69242007591399535, -1.4981037474217682) +station = ('kgez', 0.0016300457755977892) +zone = ('inz056', 0.0026672308975059767) + +[46131] +centroid = (0.68893325713436104, -1.5017336657467735) +station = ('kbak', 0.0040850169857835862) +zone = ('inz055', 0.00084415097767075739) + +[46133] +centroid = (0.69106409471153585, -1.4889548536558614) +station = ('kgez', 0.0065825666828831916) +zone = ('inz057', 0.0021271426299609483) + +[46135] +centroid = (0.69210282741586027, -1.5165863304147826) +station = ('khuf', 0.006715731240274676) +zone = ('inz045', 0.00068941613095993852) + +[46140] +centroid = (0.69467547763988491, -1.4970050452043453) +station = ('kgez', 0.0038343719293464731) +zone = ('inz048', 0.00037602178825848787) + +[46142] +centroid = (0.69153104009961452, -1.5040430505064273) +station = ('kind', 0.0022015081992778239) +zone = ('inz055', 0.0025063562492933446) + +[46143] +centroid = (0.69107812715872197, -1.5030133062477509) +station = ('kind', 0.0030792869884594285) +zone = ('inz055', 0.0018597882773131553) + +[46144] +centroid = (0.69211308995186205, -1.4948283229211357) +station = ('kgez', 0.0024048013115791581) +zone = ('inz057', 0.0025179157521126099) + +[46146] +centroid = (0.69090020829477372, -1.4934491637462095) +station = ('kgez', 0.0031164049670699728) +zone = ('inz057', 0.001503947768365202) + +[46147] +centroid = (0.69762815585523885, -1.5118535385354421) +station = ('ktyq', 0.0050893770543276075) +zone = ('inz037', 0.0024854784025991243) + +[46148] +centroid = (0.6948400098284705, -1.4924740831997054) +station = ('kaid', 0.0055072262016994016) +zone = ('inz049', 0.0026033798893204743) + +[46149] +centroid = (0.69610020736158051, -1.5106870477298717) +station = ('keye', 0.0035401435494177491) +zone = ('inz046', 0.0020847234380256207) + +[46150] +centroid = (0.69021792418358396, -1.4940353325754918) +station = ('kgez', 0.0027412730523247004) +zone = ('inz057', 0.0022349977795487015) + +[46151] +centroid = (0.68865826305741684, -1.5085453192981644) +station = ('kind', 0.0049571722498258893) +zone = ('inz054', 0.00045825556320113674) + +[46155] +centroid = (0.69365494871965894, -1.4910302595759932) +station = ('kgez', 0.0057063032035450153) +zone = ('inz057', 0.0022106554267674475) + +[46156] +centroid = (0.68921936895864055, -1.4921596446816661) +station = ('kgez', 0.0044277735526691902) +zone = ('inz057', 0.0023109500632707237) + +[46157] +centroid = (0.69034107461560468, -1.5102112535224854) +station = ('kind', 0.0043562182825033812) +zone = ('inz054', 0.0016791666625578911) + +[46158] +centroid = (0.69079007801897274, -1.5075037417071593) +station = ('kind', 0.0026860584075525506) +zone = ('inz054', 0.0019677461305959657) + +[46160] +centroid = (0.68680248937035637, -1.5056712332590279) +station = ('kbak', 0.0051902795158013009) +zone = ('inz063', 0.0027565555672431344) + +[46161] +centroid = (0.69237001987104807, -1.4956823125241363) +station = ('kgez', 0.0020556207120045362) +zone = ('inz056', 0.0028580138475855494) + +[46162] +centroid = (0.69029485829701187, -1.5001643354965504) +station = ('kgez', 0.0021356547068083118) +zone = ('inz055', 0.0022671565872606205) + +[46163] +centroid = (0.69340339441456889, -1.4992733100068221) +station = ('kgez', 0.0028898316402675575) +zone = ('inz048', 0.0023878161560838876) + +[46164] +centroid = (0.6863281263329567, -1.5029776840777174) +station = ('kbak', 0.0030606720296542638) +zone = ('inz063', 0.0026998638181070021) + +[46165] +centroid = (0.69551070495342693, -1.5121558993750577) +station = ('keye', 0.0045674309161238555) +zone = ('inz046', 0.0022384039421406458) + +[46166] +centroid = (0.68823416550247474, -1.5112334230522086) +station = ('kbmg', 0.0049536744123175333) +zone = ('inz054', 0.0020819089656640335) + +[46167] +centroid = (0.6959844745788808, -1.5091478244092453) +station = ('keye', 0.0023737627638566066) +zone = ('inz046', 0.0019591927176406529) + +[46168] +centroid = (0.69263839915012726, -1.5078407647857193) +station = ('kind', 0.0015702635384805834) +zone = ('inz046', 0.0021522243116444614) + +[46171] +centroid = (0.68984314963330329, -1.517754060404122) +station = ('khuf', 0.0049681059269047773) +zone = ('inz045', 0.002915971645571361) + +[46172] +centroid = (0.69512685469103574, -1.5152680483241663) +station = ('ktyq', 0.0083866138676771378) +zone = ('inz045', 0.0028417171895892546) + +[46173] +centroid = (0.6911661441129, -1.4910451472345125) +station = ('kgez', 0.004977785327949528) +zone = ('inz057', 0.00057684362462237396) + +[46175] +centroid = (0.69491547786532681, -1.5178493030214033) +station = ('khuf', 0.0079319228464979404) +zone = ('inz045', 0.0030747418117717433) + +[46176] +centroid = (0.68988119781099677, -1.4970455892028691) +station = ('kgez', 0.0010372058411132075) +zone = ('inz056', 0.00024297509770612464) + +[46180] +centroid = (0.69101405612188116, -1.5117784544710213) +station = ('kind', 0.0050006917614200059) +zone = ('inz054', 0.0030186810650348578) + +[46181] +centroid = (0.68719499646583737, -1.5039501640836361) +station = ('kbak', 0.0040937120941217427) +zone = ('inz055', 0.0022324700949398835) + +[46182] +centroid = (0.68868076035147496, -1.495214703910942) +station = ('kgez', 0.0027989620488996108) +zone = ('inz056', 0.0020011988124588971) + +[46183] +centroid = (0.69206980578641253, -1.5058989289132432) +station = ('kind', 0.0011170234951149943) +zone = ('inz047', 0.0029600060764843877) + +[46184] +centroid = (0.69044890105679291, -1.5022611740598961) +station = ('kgez', 0.003698695017445726) +zone = ('inz055', 0.0012789289033893775) + +[46186] +centroid = (0.69628536934192464, -1.4947834330527743) +station = ('kaid', 0.0039007006154871179) +zone = ('inz048', 0.0021173754520555266) + +[46201] +centroid = (0.69418973505576242, -1.5028890562583013) +station = ('kind', 0.0025430300578849737) +zone = ('inz047', 0.00041273422656925782) + +[46202] +centroid = (0.69436356984926106, -1.5038363686164062) +station = ('kind', 0.001992975828776685) +zone = ('inz047', 0.0003391661793677926) + +[46203] +centroid = (0.69355171249440339, -1.5026749218123741) +station = ('kind', 0.002528627670997958) +zone = ('inz047', 0.0009485155731835574) + +[46204] +centroid = (0.69415224538342957, -1.503723271280877) +station = ('kind', 0.0019511357374783823) +zone = ('inz047', 0.00030055832328207876) + +[46205] +centroid = (0.69515411673395189, -1.5033284254441981) +station = ('kind', 0.0028042604390965051) +zone = ('inz047', 0.00083595969489296299) + +[46208] +centroid = (0.6949783795315686, -1.5039686994802923) +station = ('keye', 0.0017455176137151484) +zone = ('inz047', 0.00079080372279040931) + +[46214] +centroid = (0.69451567529357239, -1.5060712801768774) +station = ('keye', 0.00071620684858033463) +zone = ('inz047', 0.0020629970096269026) + +[46216] +centroid = (0.69582811053119464, -1.5011532041441453) +station = ('ktyq', 0.0042809854718627556) +zone = ('inz047', 0.0022910175335836731) + +[46217] +centroid = (0.69245267866442262, -1.5043253400596448) +station = ('kind', 0.0014352076957576138) +zone = ('inz047', 0.0019986051585052975) + +[46218] +centroid = (0.69476778810402307, -1.5027240353775251) +station = ('kind', 0.0029269544614230216) +zone = ('inz047', 0.00068506167692076493) + +[46219] +centroid = (0.69433407378490242, -1.5017325836426374) +station = ('kind', 0.0034238375995093448) +zone = ('inz047', 0.0012804571501340526) + +[46220] +centroid = (0.69581240256792665, -1.5028829126993342) +station = ('keye', 0.0026282805001929931) +zone = ('inz047', 0.001544174038040905) + +[46221] +centroid = (0.6927547951579428, -1.5051156775048256) +station = ('kind', 0.00075978945389567709) +zone = ('inz047', 0.0020476485155852707) + +[46222] +centroid = (0.69448340415570298, -1.5047401524629664) +station = ('keye', 0.0013555151649489311) +zone = ('inz047', 0.0010437134088993882) + +[46224] +centroid = (0.69456098404095423, -1.5054667330305715) +station = ('keye', 0.00087866085718092376) +zone = ('inz047', 0.0016072901193446769) + +[46225] +centroid = (0.69359932507639777, -1.5038324939854668) +station = ('kind', 0.0016638150770249631) +zone = ('inz047', 0.00079399879168505396) + +[46226] +centroid = (0.69531990555959888, -1.5018991927730327) +station = ('kind', 0.0037601933183231289) +zone = ('inz047', 0.0015253884141859626) + +[46227] +centroid = (0.69245524429842298, -1.5032987897534995) +station = ('kind', 0.0021513635865674785) +zone = ('inz047', 0.0018662397147961808) + +[46228] +centroid = (0.69548277968539496, -1.5044864688561892) +station = ('keye', 0.0013555567191267776) +zone = ('inz047', 0.001431925659223151) + +[46229] +centroid = (0.69444005017708343, -1.5005830399841038) +station = ('kgez', 0.0042984747167902513) +zone = ('inz048', 0.0028010212789272462) + +[46231] +centroid = (0.693166710314706, -1.5065790313628677) +station = ('kind', 0.00050098429077862958) +zone = ('inz047', 0.0027035142512850784) + +[46234] +centroid = (0.69487332816389102, -1.5066792656218098) +station = ('keye', 0.0004970146854521969) +zone = ('inz047', 0.0025805458015816791) + +[46235] +centroid = (0.69528606362540268, -1.500538743527688) +station = ('ktyq', 0.0049942134521128688) +zone = ('inz048', 0.0027087572976946996) + +[46236] +centroid = (0.69631170636033712, -1.5004159421615177) +station = ('ktyq', 0.0044467657460323159) +zone = ('inz048', 0.002892266878329385) + +[46237] +centroid = (0.69239206337950088, -1.5022417136387365) +station = ('kind', 0.0029458460653061431) +zone = ('inz047', 0.0021232929006203879) + +[46239] +centroid = (0.69327125553690039, -1.5009662793812566) +station = ('kgez', 0.0036013722982076494) +zone = ('inz047', 0.0021440442582948351) + +[46240] +centroid = (0.69649726976640924, -1.5031629333245242) +station = ('ktyq', 0.0027308607837210593) +zone = ('inz047', 0.0021848793215434644) + +[46241] +centroid = (0.69341672873005422, -1.5059647452793359) +station = ('kind', 0.00023183250533931682) +zone = ('inz047', 0.0021696458025320508) + +[46250] +centroid = (0.69642345979234233, -1.5021148805619939) +station = ('ktyq', 0.0033339962599904065) +zone = ('inz047', 0.002323062771127479) + +[46254] +centroid = (0.6955087676379571, -1.5057241167353632) +station = ('keye', 0.00047564339224061812) +zone = ('inz047', 0.0021456545571399265) + +[46256] +centroid = (0.69653268249693223, -1.5012124580722503) +station = ('ktyq', 0.0038135860029939904) +zone = ('inz047', 0.0027773943725203131) + +[46259] +centroid = (0.69203936724425774, -1.5006574608234089) +station = ('kgez', 0.0027085314734105886) +zone = ('inz047', 0.0031059694071896185) + +[46260] +centroid = (0.69635396078152789, -1.5040827742002028) +station = ('keye', 0.0019920642895856688) +zone = ('inz047', 0.0021007851381386593) + +[46268] +centroid = (0.69636216382901228, -1.5050557254450194) +station = ('keye', 0.0014475897008837922) +zone = ('inz047', 0.0024061696204826892) + +[46278] +centroid = (0.69626325602030181, -1.5061851105506925) +station = ('keye', 0.0010407652187911873) +zone = ('inz047', 0.0028904154724970666) + +[46280] +centroid = (0.69695138698448555, -1.5032744249571417) +station = ('ktyq', 0.0023289872014439351) +zone = ('inz047', 0.0026332137474377481) + +[46290] +centroid = (0.69705478028937373, -1.5038318482136435) +station = ('ktyq', 0.0019769988381867082) +zone = ('inz047', 0.0027550162137311958) + +[46301] +centroid = (0.72764780153624886, -1.5180659856480385) +station = ('kmgc', 0.0020657017004715879) +zone = ('inz003', 0.0040164573653287301) + +[46303] +centroid = (0.72210891188858228, -1.5268012712878074) +station = ('kigq', 0.0029824067586661971) +zone = ('inz001', 0.0014711708345923932) + +[46304] +centroid = (0.72629478739351783, -1.5192415696190118) +station = ('kvpz', 0.0029187180447944059) +zone = ('inz002', 0.0026865575406336615) + +[46307] +centroid = (0.72263467487245303, -1.5241267985552214) +station = ('kigq', 0.0035932916810306032) +zone = ('inz001', 0.00075666987252057203) + +[46310] +centroid = (0.71877871895602197, -1.5224642153630641) +station = ('krzl', 0.0041016342331278337) +zone = ('inz011', 0.0031729263649161879) + +[46311] +centroid = (0.72370225786931297, -1.5273186915978536) +station = ('kigq', 0.0013425369153231949) +zone = ('inz001', 0.0018751902753759775) + +[46312] +centroid = (0.72687645327333006, -1.5263599473331479) +station = ('kgyy', 0.00071859846074028315) +zone = ('inz001', 0.0041468433724690251) + +[46319] +centroid = (0.72475620984471478, -1.5258052467902794) +station = ('kigq', 0.0014596343620200936) +zone = ('inz001', 0.0019894312268082513) + +[46320] +centroid = (0.72765745320701247, -1.5273537029026485) +station = ('kgyy', 0.001796052185142749) +zone = ('ilz014', 0.0047471628789413365) + +[46321] +centroid = (0.72514084550526936, -1.5272201328549937) +station = ('kigq', 0.00040029440419893754) +zone = ('inz001', 0.0027976972361601097) + +[46322] +centroid = (0.72512306060019149, -1.5264163214679876) +station = ('kigq', 0.00098637372020331953) +zone = ('inz001', 0.0024887250945947953) + +[46323] +centroid = (0.7258725573408753, -1.5263555141968479) +station = ('kgyy', 0.00067813949094773735) +zone = ('inz001', 0.0031767032038535845) + +[46324] +centroid = (0.72576172893337376, -1.5271907240570974) +station = ('kigq', 0.00085178757738501654) +zone = ('inz001', 0.0033167111066339868) + +[46327] +centroid = (0.72654339209217189, -1.5271404236680548) +station = ('kgyy', 0.0010880193579768983) +zone = ('inz001', 0.0040078830488159021) + +[46340] +centroid = (0.72226211689032227, -1.514433780941713) +station = ('koxi', 0.001715729232627243) +zone = ('inz012', 0.0023948726088292875) + +[46341] +centroid = (0.720989789318911, -1.5221812451314383) +station = ('kvpz', 0.0037274579067292416) +zone = ('inz001', 0.0028655912589370413) + +[46342] +centroid = (0.72462904515541449, -1.5227109176528337) +station = ('kgyy', 0.0028257049264117798) +zone = ('inz001', 0.0025310699277355129) + +[46345] +centroid = (0.72478910930111484, -1.5131773184132022) +station = ('kppo', 0.00084932341113489482) +zone = ('inz003', 0.00062924783673465139) + +[46346] +centroid = (0.72382296484038089, -1.5130719179796743) +station = ('kppo', 0.0017787328982661217) +zone = ('inz003', 0.0014316615770877405) + +[46347] +centroid = (0.72093735962818117, -1.5186684558525343) +station = ('kvpz', 0.0025076654606402686) +zone = ('inz002', 0.0027757941855602168) + +[46348] +centroid = (0.72100113395904897, -1.5160260099117224) +station = ('kvpz', 0.0030355022722945361) +zone = ('inz012', 0.0028536318444448358) + +[46349] +centroid = (0.71730587050684902, -1.5256903866722056) +station = ('krzl', 0.003943620252230177) +zone = ('inz010', 0.0025019685650775536) + +[46350] +centroid = (0.72618013671495429, -1.5135796168057869) +station = ('kppo', 0.00065572738244018243) +zone = ('inz003', 0.0010917496165237699) + +[46356] +centroid = (0.72006382233755795, -1.5258049500843065) +station = ('kigq', 0.0051514912899207231) +zone = ('inz001', 0.0028250229513639329) + +[46360] +centroid = (0.72761624598337282, -1.51615315714773) +station = ('kmgc', 0.00067224879400048772) +zone = ('inz003', 0.0030172955309346987) + +[46365] +centroid = (0.72625851945166142, -1.5105033169195141) +station = ('kppo', 0.0025155922245129205) +zone = ('inz003', 0.0027843906413503689) + +[46366] +centroid = (0.71934876094301592, -1.5143883151146984) +station = ('koxi', 0.0024479569180544248) +zone = ('inz012', 0.0019471384959866449) + +[46368] +centroid = (0.725896747604308, -1.521590381366468) +station = ('kvpz', 0.0034083568561572783) +zone = ('inz002', 0.0027160645978227781) + +[46371] +centroid = (0.72759449918089292, -1.5113717229421364) +station = ('kppo', 0.0027092069482171268) +zone = ('inz003', 0.0031167554436827313) + +[46373] +centroid = (0.7234102642854543, -1.5266028622584407) +station = ('kigq', 0.0018070633277000707) +zone = ('inz001', 0.0012645789248395484) + +[46374] +centroid = (0.71915195761656092, -1.516669826966198) +station = ('koxi', 0.0038235998546472059) +zone = ('inz013', 0.0038661374881574684) + +[46375] +centroid = (0.72416883673824861, -1.5262685444402211) +station = ('kigq', 0.0013774101784163495) +zone = ('inz001', 0.0015933509294768138) + +[46376] +centroid = (0.71881114717352412, -1.5266375768572629) +station = ('krzl', 0.0055104092593284424) +zone = ('inz010', 0.0041078034711593712) + +[46377] +centroid = (0.71898374278325372, -1.5243474954391361) +station = ('krzl', 0.0046980751603263645) +zone = ('inz001', 0.0038958884334503864) + +[46379] +centroid = (0.71851515678567834, -1.5261154092516511) +station = ('krzl', 0.0050282952118482632) +zone = ('inz010', 0.0037418325026386196) + +[46381] +centroid = (0.71852541932168013, -1.5241008106026592) +station = ('krzl', 0.0042041433512877415) +zone = ('inz011', 0.0037357776178173329) + +[46382] +centroid = (0.72363630187688011, -1.5142823212692249) +station = ('kppo', 0.0019425759386187717) +zone = ('inz003', 0.001506115159832391) + +[46383] +centroid = (0.72366881736084476, -1.5185669998631159) +station = ('kvpz', 0.0002498011638067928) +zone = ('inz002', 0.00078118655524073697) + +[46385] +centroid = (0.72361452016781513, -1.520700228541366) +station = ('kvpz', 0.001705704432945233) +zone = ('inz002', 0.00081889454671064217) + +[46390] +centroid = (0.72290607357113812, -1.5163685656840113) +station = ('kvpz', 0.0016393455615012309) +zone = ('inz003', 0.0028819954402925429) + +[46391] +centroid = (0.7252559674227308, -1.5170224707415636) +station = ('kvpz', 0.0021030658196839586) +zone = ('inz003', 0.0023434170279220579) + +[46392] +centroid = (0.71869867815652555, -1.5192797399697529) +station = ('krzl', 0.0044008126215867808) +zone = ('inz011', 0.0028554224522254162) + +[46393] +centroid = (0.72445494856252801, -1.521536503052459) +station = ('kvpz', 0.0025350437253381475) +zone = ('inz002', 0.0016677970006752033) + +[46394] +centroid = (0.72741300239197804, -1.5269797137505312) +station = ('kgyy', 0.0014271143063128654) +zone = ('inz001', 0.00478621489300835) + +[46402] +centroid = (0.72604534493682282, -1.5242075898462963) +station = ('kgyy', 0.0011624078935160091) +zone = ('inz001', 0.0032754119184173701) + +[46403] +centroid = (0.72619821832600495, -1.5230132784924488) +station = ('kgyy', 0.0020207580592077911) +zone = ('inz002', 0.003624224307404797) + +[46404] +centroid = (0.72577853645407042, -1.5249645042363011) +station = ('kgyy', 0.00079610671641786837) +zone = ('inz001', 0.0029416638443479273) + +[46405] +centroid = (0.72562075868969012, -1.5230145351295103) +station = ('kgyy', 0.0021419705831060313) +zone = ('inz001', 0.0031900851796104446) + +[46406] +centroid = (0.72610927634732336, -1.5255582303412445) +station = ('kgyy', 0.00026376160577958079) +zone = ('inz001', 0.0032887733782332356) + +[46407] +centroid = (0.72568097254888397, -1.5241992297191793) +station = ('kgyy', 0.0013110667607029347) +zone = ('inz001', 0.0029210814494898189) + +[46408] +centroid = (0.72511340892942788, -1.5248677082759854) +station = ('kgyy', 0.0013854794902720183) +zone = ('inz001', 0.0022813814555147117) + +[46409] +centroid = (0.72515587279012894, -1.5240955571616106) +station = ('kgyy', 0.001696084881103486) +zone = ('inz001', 0.0024360309640834433) + +[46410] +centroid = (0.72396618655879952, -1.5242495301082217) +station = ('kgyy', 0.0026200801851465642) +zone = ('inz001', 0.0012947252644316693) + +[46501] +centroid = (0.71950505517753194, -1.5052636465188096) +station = ('krcr', 0.0029981593610416656) +zone = ('inz014', 0.0017656480956586688) + +[46502] +centroid = (0.72011263919673618, -1.5005684315782644) +station = ('kasw', 0.0018064094812224821) +zone = ('inz016', 0.00153944131831676) + +[46504] +centroid = (0.72083949901702171, -1.5029252194804026) +station = ('krcr', 0.0043030812740806985) +zone = ('inz014', 0.0020170804169715286) + +[46506] +centroid = (0.72365927040983635, -1.5039921043455615) +station = ('ksbn', 0.0045510475408958688) +zone = ('inz014', 0.0026719900961916284) + +[46507] +centroid = (0.72815270783555841, -1.4978074777812422) +station = ('kekm', 0.0023711523766452767) +zone = ('inz005', 0.0022057631623160706) + +[46508] +centroid = (0.71821009068572228, -1.5005779436226878) +station = ('kasw', 0.0028128121550574669) +zone = ('inz016', 0.0022356392426911326) + +[46510] +centroid = (0.71770837833894396, -1.4987265681653423) +station = ('kasw', 0.0026968937574011506) +zone = ('inz016', 0.0021410026148726432) + +[46511] +centroid = (0.71941459476240111, -1.5084353111954112) +station = ('koxi', 0.0036149091032643384) +zone = ('inz014', 0.0028443487736403432) + +[46514] +centroid = (0.728197475530872, -1.5005801252842528) +station = ('kekm', 0.0003183911567336971) +zone = ('inz005', 0.0026746743990646751) + +[46516] +centroid = (0.72739378631691365, -1.5000079889021565) +station = ('kekm', 0.0010096245792204867) +zone = ('inz005', 0.001775432812996464) + +[46517] +centroid = (0.72653326918251038, -1.5009457194026681) +station = ('kekm', 0.0015601677425824013) +zone = ('inz005', 0.0018892910579340803) + +[46524] +centroid = (0.72091943509676315, -1.5012295273923351) +station = ('kasw', 0.0023473829434880007) +zone = ('inz016', 0.0022810762034038614) + +[46526] +centroid = (0.72533754411196905, -1.4988305025222985) +station = ('kgsh', 0.0012974803472720719) +zone = ('inz005', 0.0007136762374532591) + +[46528] +centroid = (0.726066131808214, -1.4972283251755529) +station = ('kgsh', 0.0011728861369423669) +zone = ('inz005', 0.00096523108265765447) + +[46530] +centroid = (0.72851667879776927, -1.5031982936951696) +station = ('kekm', 0.0017065461276080374) +zone = ('inz004', 0.0030347158966674264) + +[46531] +centroid = (0.72181555694790711, -1.5100480826907166) +station = ('koxi', 0.0019017984576410545) +zone = ('inz012', 0.0021429828896451036) + +[46532] +centroid = (0.72276588872561798, -1.5116531572840206) +station = ('koxi', 0.0015576327446294458) +zone = ('inz012', 0.0023260891513744507) + +[46534] +centroid = (0.72056520307177829, -1.5117661149932098) +station = ('koxi', 0.00095564984376372787) +zone = ('inz012', 0.00040047205176543094) + +[46536] +centroid = (0.72456560243710444, -1.5061844298722842) +station = ('ksbn', 0.0032458389015964863) +zone = ('inz004', 0.0017860577718211803) + +[46537] +centroid = (0.72361139602845415, -1.5063971156949323) +station = ('ksbn', 0.00419175313912075) +zone = ('inz014', 0.0024378798806964494) + +[46538] +centroid = (0.72134880354604625, -1.4979002943908633) +station = ('kasw', 0.00099797705650052685) +zone = ('inz016', 0.0015811824306964121) + +[46539] +centroid = (0.71843248053901132, -1.5014458609531196) +station = ('krcr', 0.0027045888749837243) +zone = ('inz016', 0.0025955606069825547) + +[46540] +centroid = (0.72744986374578013, -1.4957108661106988) +station = ('kgsh', 0.0027888875827731799) +zone = ('inz005', 0.0025429808511765592) + +[46542] +centroid = (0.72250745782327519, -1.4987088356201421) +station = ('kasw', 0.0021677120236289638) +zone = ('inz016', 0.0026647232414134625) + +[46543] +centroid = (0.72492589075459357, -1.495260588616977) +station = ('kgsh', 0.0014533324393523983) +zone = ('inz005', 0.0026673684234887981) + +[46544] +centroid = (0.72632019938742687, -1.5035631024154215) +station = ('kekm', 0.0026187771702627441) +zone = ('inz004', 0.0018528161144546183) + +[46545] +centroid = (0.727693494256066, -1.5035457189360715) +station = ('kekm', 0.0019544568768496686) +zone = ('inz004', 0.0022989950654171473) + +[46550] +centroid = (0.72336905706181465, -1.5009944489953839) +station = ('kasw', 0.0036597011890565781) +zone = ('inz005', 0.0032285488954267136) + +[46552] +centroid = (0.7279125156238988, -1.5093935318613412) +station = ('ksbn', 0.0021556440829296497) +zone = ('inz004', 0.0029528001124805967) + +[46553] +centroid = (0.7239543008665934, -1.4983513049228709) +station = ('kgsh', 0.0012740613549960867) +zone = ('inz005', 0.0020610247350462082) + +[46554] +centroid = (0.7253136854610942, -1.5082610400695995) +station = ('ksbn', 0.0028117952419660012) +zone = ('inz004', 0.0019564224994840416) + +[46555] +centroid = (0.72128359804519171, -1.4954064981424438) +station = ('kasw', 0.0022804468972195502) +zone = ('inz016', 0.0027667738680605619) + +[46556] +centroid = (0.72792654807108492, -1.5053698323505009) +station = ('ksbn', 0.00086028983338315413) +zone = ('inz004', 0.0016558796249136222) + +[46561] +centroid = (0.72717359557848205, -1.5022982972130861) +station = ('kekm', 0.0013454113063386727) +zone = ('inz005', 0.0030558473904527999) + +[46562] +centroid = (0.71922128209445013, -1.4954756306341153) +station = ('kasw', 0.0023449370226967066) +zone = ('inz016', 0.0023963966646121204) + +[46563] +centroid = (0.72179581727406705, -1.5066778169985304) +station = ('koxi', 0.0043960833960803424) +zone = ('inz014', 0.0010019527123539124) + +[46565] +centroid = (0.72771241362515771, -1.4936091231721549) +station = ('kirs', 0.0027350326448190901) +zone = ('inz006', 0.0021688924864029071) + +[46567] +centroid = (0.72281494993089157, -1.496291118273817) +station = ('kgsh', 0.0021875578004673939) +zone = ('inz016', 0.0034206328013553808) + +[46570] +centroid = (0.7190394536929775, -1.5031088281177123) +station = ('krcr', 0.0025259612354562536) +zone = ('inz014', 0.0028797572297722587) + +[46571] +centroid = (0.72563093395922929, -1.4930802884088006) +station = ('kgsh', 0.003171046790821243) +zone = ('inz006', 0.0019628578510417997) + +[46573] +centroid = (0.72508593744700156, -1.5021990926984028) +station = ('kekm', 0.0031415826940597471) +zone = ('inz005', 0.0029060616765544042) + +[46574] +centroid = (0.72399662510095431, -1.5094764350008107) +station = ('koxi', 0.0034905848296119969) +zone = ('inz004', 0.003484355684736195) + +[46580] +centroid = (0.71931706576379961, -1.4987063223460193) +station = ('kasw', 0.0011267105090296795) +zone = ('inz016', 0.00054088964808786172) + +[46582] +centroid = (0.72048242210535629, -1.4984427950822607) +station = ('kasw', 0.00021785998094334813) +zone = ('inz016', 0.0006423386371528975) + +[46590] +centroid = (0.71936961762757712, -1.4977138583201652) +station = ('kasw', 0.0010673358807367032) +zone = ('inz016', 0.00078965528760286156) + +[46595] +centroid = (0.72477128948945202, -1.5038909625154087) +station = ('ksbn', 0.00360850367241581) +zone = ('inz004', 0.0022527697746498867) + +[46601] +centroid = (0.72728348150818756, -1.5053929230565049) +station = ('ksbn', 0.00098243374347723312) +zone = ('inz004', 0.0010530634543771322) + +[46613] +centroid = (0.72702552184474278, -1.505493628554345) +station = ('ksbn', 0.0010861343915595908) +zone = ('inz004', 0.00079112165376267181) + +[46614] +centroid = (0.72611260992619475, -1.5058562905196169) +station = ('ksbn', 0.0017588788375626063) +zone = ('inz004', 0.00027333675778169303) + +[46615] +centroid = (0.72734769217136841, -1.5046781932745206) +station = ('ksbn', 0.0014415565424692122) +zone = ('inz004', 0.0014268165118147852) + +[46616] +centroid = (0.72776435462369704, -1.505626221217619) +station = ('ksbn', 0.0006609884819403386) +zone = ('inz004', 0.0014494511617354437) + +[46617] +centroid = (0.7275326970720799, -1.5050804567605203) +station = ('ksbn', 0.0011010221193958453) +zone = ('inz004', 0.0013848218100886282) + +[46619] +centroid = (0.727120589929099, -1.5071572589440534) +station = ('ksbn', 0.00083569875787401101) +zone = ('inz004', 0.0011366674068298429) + +[46628] +centroid = (0.72820892489076505, -1.5067138056877067) +station = ('ksbn', 0.00043414857662034384) +zone = ('inz004', 0.0019271483523396228) + +[46635] +centroid = (0.72805287500234428, -1.5045042363079741) +station = ('ksbn', 0.001518257521697805) +zone = ('inz004', 0.0020550576124442675) + +[46637] +centroid = (0.72839049149285007, -1.5051976032599141) +station = ('ksbn', 0.0011426686072325506) +zone = ('inz004', 0.0021370390091979452) + +[46701] +centroid = (0.72188198417923799, -1.4910563871548954) +station = ('kgsh', 0.0055032963450362161) +zone = ('inz008', 0.00068432331484291403) + +[46702] +centroid = (0.71264198422637726, -1.4944925215730518) +station = ('kmzz', 0.0059976409462181813) +zone = ('inz025', 0.0018494189604853556) + +[46703] +centroid = (0.72692246015241258, -1.4836441832611857) +station = ('koeb', 0.004988239256022836) +zone = ('inz007', 0.00012442930818521157) + +[46704] +centroid = (0.7173996994074362, -1.4886362961607875) +station = ('kfwa', 0.0021858279516431735) +zone = ('inz018', 0.002982396656908057) + +[46705] +centroid = (0.72464504982465527, -1.4846115669056885) +station = ('kgwb', 0.0038255105757367628) +zone = ('inz009', 0.0022745258519494193) + +[46706] +centroid = (0.72154693332273268, -1.4840998014624189) +station = ('kgwb', 0.00087557369444018151) +zone = ('inz009', 0.001071750448223794) + +[46710] +centroid = (0.72156014546517022, -1.4877560742591291) +station = ('kgwb', 0.0023744081646136558) +zone = ('inz008', 0.0024965992638327338) + +[46711] +centroid = (0.70968492523460081, -1.4822536619928293) +station = ('kfwa', 0.0069151801700186579) +zone = ('inz027', 0.0014638666072582331) + +[46714] +centroid = (0.71074678355151422, -1.4866129010523654) +station = ('kfwa', 0.0048480213410411034) +zone = ('inz026', 0.00059951830229000135) + +[46721] +centroid = (0.72296763133385611, -1.4813762500712668) +station = ('kgwb', 0.0033205609263891474) +zone = ('inz009', 0.0016635404117753111) + +[46723] +centroid = (0.7198645406435652, -1.4892235820007913) +station = ('kgwb', 0.003494489443733212) +zone = ('inz008', 0.0029319488831903925) + +[46725] +centroid = (0.71817757520175762, -1.4918335822708086) +station = ('kfwa', 0.0044594264945206656) +zone = ('inz017', 0.00041846307149637663) + +[46730] +centroid = (0.72358631564710296, -1.4861757309813259) +station = ('kgwb', 0.0029646218656170951) +zone = ('inz009', 0.0022605523013569809) + +[46731] +centroid = (0.71198155163742249, -1.4852688055421122) +station = ('kfwa', 0.0038390158530212568) +zone = ('inz026', 0.0019615121472870678) + +[46732] +centroid = (0.72220966974629985, -1.494392601473375) +station = ('kasw', 0.0033912950906033754) +zone = ('inz008', 0.0027046269694102022) + +[46733] +centroid = (0.71258700635493943, -1.4824833473223917) +station = ('kfwa', 0.0045545500471291687) +zone = ('inz027', 0.0014445909891549842) + +[46737] +centroid = (0.72813883246800493, -1.4823051666590557) +station = ('koeb', 0.0040622974170204428) +zone = ('inz007', 0.0016083449764249837) + +[46738] +centroid = (0.7211509879286252, -1.4861280485861614) +station = ('kgwb', 0.0010853187497189777) +zone = ('inz009', 0.0023949195965708042) + +[46740] +centroid = (0.70867837640168319, -1.4829148450733622) +station = ('kfwa', 0.0075736470415309221) +zone = ('inz027', 0.0024927847062191561) + +[46741] +centroid = (0.71937181674243467, -1.4826785973058125) +station = ('kgwb', 0.002128041322621778) +zone = ('inz018', 0.0026728035521472425) + +[46742] +centroid = (0.72515976487436096, -1.4814196215031787) +station = ('kgwb', 0.0050067043848104759) +zone = ('inz007', 0.0023001001027444464) + +[46743] +centroid = (0.71934371694147758, -1.4809315052712735) +station = ('kgwb', 0.0032294414434952791) +zone = ('inz018', 0.0035688970088396483) + +[46745] +centroid = (0.71474124879738343, -1.4836943091173029) +station = ('kfwa', 0.002649199077970166) +zone = ('inz018', 0.0025421504499660496) + +[46746] +centroid = (0.72824480886018617, -1.4895500632906693) +station = ('kirs', 0.0019577814423146324) +zone = ('inz006', 0.0017920504084235726) + +[46747] +centroid = (0.72545809400340422, -1.4862871004408957) +station = ('kgwb', 0.0047778771702658871) +zone = ('inz007', 0.0024639606403713361) + +[46748] +centroid = (0.71992362003874522, -1.4863424448314764) +station = ('kgwb', 0.0014949122760796081) +zone = ('inz018', 0.0030216087223870714) + +[46750] +centroid = (0.71346372014480119, -1.4921936611487874) +station = ('kfwa', 0.0044464347259195259) +zone = ('inz025', 0.00086670156159574169) + +[46755] +centroid = (0.72342422691947017, -1.4883270587239192) +station = ('kgwb', 0.0037383950287571592) +zone = ('inz008', 0.0020635982668636972) + +[46759] +centroid = (0.7086722153894236, -1.4866452420034051) +station = ('kfwa', 0.0069186123981833424) +zone = ('inz026', 0.0022566370568810473) + +[46760] +centroid = (0.72161494880368293, -1.4931761593446125) +station = ('kasw', 0.0039654720362764439) +zone = ('inz008', 0.001999786993966279) + +[46761] +centroid = (0.72665823475695313, -1.4901167193389142) +station = ('kirs', 0.003214729115483113) +zone = ('inz006', 0.00065644689962966003) + +[46763] +centroid = (0.72084588692208396, -1.4875910533783532) +station = ('kgwb', 0.0021333052250547152) +zone = ('inz008', 0.0029551904917933698) + +[46764] +centroid = (0.71950132017293267, -1.4943580963140632) +station = ('kasw', 0.0030110026947846764) +zone = ('inz017', 0.0021191170263187365) + +[46765] +centroid = (0.71964195880405835, -1.4843806249390648) +station = ('kgwb', 0.0012115467510276159) +zone = ('inz018', 0.0024831900240451683) + +[46766] +centroid = (0.7104991911438262, -1.4884658996659155) +station = ('kfwa', 0.0052019770933401568) +zone = ('inz026', 0.00089008225994715825) + +[46767] +centroid = (0.72380271902105775, -1.4934854142347733) +station = ('kgsh', 0.0029892614720075155) +zone = ('inz008', 0.0023660661354504057) + +[46770] +centroid = (0.7127520446890081, -1.4891891117480642) +station = ('kfwa', 0.0032727398635757155) +zone = ('inz026', 0.0023337175128318116) + +[46771] +centroid = (0.72770274450110173, -1.4886986393216688) +station = ('kirs', 0.0027827697031321216) +zone = ('inz006', 0.0019233168057506704) + +[46772] +centroid = (0.71072439097721107, -1.4820239243033893) +station = ('kfwa', 0.0061567613308888347) +zone = ('inz027', 0.00051666053394746703) + +[46773] +centroid = (0.71527341713960912, -1.4813587967787469) +station = ('kfwa', 0.0042848780831610265) +zone = ('inz018', 0.0031482792110068421) + +[46774] +centroid = (0.71714285675471268, -1.4830507538622151) +station = ('kfwa', 0.0033750439452293461) +zone = ('inz018', 0.0012361389300422007) + +[46776] +centroid = (0.72817197627050034, -1.4864256272236265) +station = ('kirs', 0.0038998404074946339) +zone = ('inz007', 0.0025399691012325284) + +[46777] +centroid = (0.71330098564534516, -1.4861055687453957) +station = ('kfwa', 0.0023863069842121683) +zone = ('inz026', 0.0026305442455944951) + +[46779] +centroid = (0.72565906866677143, -1.4842187980108199) +station = ('kgwb', 0.0048545469631258512) +zone = ('inz007', 0.001268782629902835) + +[46781] +centroid = (0.70916881392149356, -1.4882228800208677) +station = ('kfwa', 0.0064803834499921721) +zone = ('inz026', 0.0018022354805973559) + +[46783] +centroid = (0.71504849655890468, -1.4897661699586511) +station = ('kfwa', 0.0021409583991431917) +zone = ('inz025', 0.0029920876669369905) + +[46784] +centroid = (0.72432036622390683, -1.4903135924785391) +station = ('kirs', 0.0054898943792739399) +zone = ('inz008', 0.0018177453848619166) + +[46785] +centroid = (0.72122584510024323, -1.4813963039043723) +station = ('kgwb', 0.0025525729930011404) +zone = ('inz009', 0.0020525848609331547) + +[46786] +centroid = (0.72487091288315586, -1.4882836872920071) +station = ('kgwb', 0.0048392250322016927) +zone = ('inz006', 0.0027889070529817247) + +[46787] +centroid = (0.71674129140041387, -1.4943460884488096) +station = ('kasw', 0.0046452876068465744) +zone = ('inz017', 0.0019744611231304254) + +[46788] +centroid = (0.72035010869476257, -1.4819450354211992) +station = ('kgwb', 0.0021608314601647555) +zone = ('inz009', 0.002473006237787258) + +[46791] +centroid = (0.71275434852362052, -1.4875807908423515) +station = ('kfwa', 0.0028621290779503681) +zone = ('inz026', 0.0019029130485347784) + +[46792] +centroid = (0.71007554737448964, -1.4912678861536519) +station = ('kmzz', 0.0046197196249584292) +zone = ('inz025', 0.0025966999856676044) + +[46793] +centroid = (0.72348091521357494, -1.4837963410653747) +station = ('kgwb', 0.0027548254433621975) +zone = ('inz009', 0.0009796163262430083) + +[46794] +centroid = (0.72365562267169958, -1.491536562138704) +station = ('kgsh', 0.0044198678456081773) +zone = ('inz008', 0.0012382315106970231) + +[46795] +centroid = (0.72525366358811816, -1.4893052459564919) +station = ('kirs', 0.0047322759225036952) +zone = ('inz006', 0.0019886628104376297) + +[46797] +centroid = (0.71782590881077324, -1.4810686008840177) +station = ('kgwb', 0.0040799898478809929) +zone = ('inz018', 0.0028067131716541772) + +[46798] +centroid = (0.71451304699768514, -1.4872772955387223) +station = ('kfwa', 0.0010893383490017331) +zone = ('inz018', 0.0032966265118091059) + +[46799] +centroid = (0.71404044674283018, -1.4885172297992164) +station = ('kfwa', 0.0019139710821195095) +zone = ('inz026', 0.0032957535767020297) + +[46802] +centroid = (0.71679457630247734, -1.486412449987774) +station = ('kfwa', 0.0012936287920244361) +zone = ('inz018', 0.0013511200364206238) + +[46803] +centroid = (0.71680452467921363, -1.485075248528066) +station = ('kfwa', 0.0019079670093120344) +zone = ('inz018', 0.00046636762639067032) + +[46804] +centroid = (0.71651387499887897, -1.4877562836986393) +station = ('kfwa', 0.0010820880327333032) +zone = ('inz018', 0.0024024997591394585) + +[46805] +centroid = (0.71733224243184668, -1.4855843087109952) +station = ('kfwa', 0.002055720290739021) +zone = ('inz018', 0.00069290384049547902) + +[46806] +centroid = (0.7164022088333365, -1.4850722116551676) +station = ('kfwa', 0.0016817868873196444) +zone = ('inz018', 0.00081971763087480029) + +[46807] +centroid = (0.71636852397877293, -1.4861060050777088) +station = ('kfwa', 0.0010440139617489289) +zone = ('inz018', 0.0013344879938102972) + +[46808] +centroid = (0.71729148899381256, -1.4866194634903529) +station = ('kfwa', 0.0017330922165624011) +zone = ('inz018', 0.0014588047667583666) + +[46809] +centroid = (0.71555539253356126, -1.4871086269198095) +station = ('kfwa', 7.2784974694186893e-05) +zone = ('inz018', 0.0024356095471949144) + +[46814] +centroid = (0.71647305174767495, -1.4887524827290928) +station = ('kfwa', 0.0015798445171520028) +zone = ('inz018', 0.0031405654231502051) + +[46815] +centroid = (0.71737805732471149, -1.4845531332823318) +station = ('kfwa', 0.0025840506962132252) +zone = ('inz018', 0.00023261250199862682) + +[46816] +centroid = (0.71559869415230326, -1.4841613068652593) +station = ('kfwa', 0.002157907909756963) +zone = ('inz018', 0.0016209617031234624) + +[46818] +centroid = (0.71830519367666334, -1.487945791548821) +station = ('kfwa', 0.0028081972018997913) +zone = ('inz018', 0.0027023069885367254) + +[46819] +centroid = (0.71514145279486574, -1.485861501902797) +station = ('kfwa', 0.00098090028473198218) +zone = ('inz018', 0.0022122963409702576) + +[46825] +centroid = (0.71824510199051728, -1.4857480205948321) +station = ('kgwb', 0.0026826834506248594) +zone = ('inz018', 0.0013382872595807806) + +[46835] +centroid = (0.71825499800737602, -1.484241958529994) +station = ('kgwb', 0.0025944536422377942) +zone = ('inz018', 0.0011366324122069) + +[46845] +centroid = (0.71920901242980873, -1.4854386609849162) +station = ('kgwb', 0.0016927048382823057) +zone = ('inz018', 0.0021156449842055936) + +[46901] +centroid = (0.70740404170163207, -1.5039421355690772) +station = ('kokk', 0.0013650719680022183) +zone = ('inz031', 0.0010862809172018969) + +[46902] +centroid = (0.70576358928438998, -1.5026334178827616) +station = ('kokk', 0.0017169151951861444) +zone = ('inz031', 0.00086126315035751531) + +[46910] +centroid = (0.71633525800322984, -1.5016581802566247) +station = ('krcr', 0.0018836391839027178) +zone = ('inz015', 0.0029615406311548063) + +[46911] +centroid = (0.70925672615591651, -1.5000375547796854) +station = ('kokk', 0.0024219234050554439) +zone = ('inz023', 0.0026532687910007734) + +[46913] +centroid = (0.70691072438855573, -1.5097700517408739) +station = ('kggp', 0.004026898595900546) +zone = ('inz021', 0.0016043863784064669) + +[46914] +centroid = (0.70910280556918304, -1.5026371877939459) +station = ('kgus', 0.00082133423896120668) +zone = ('inz023', 0.0025455116516568958) + +[46915] +centroid = (0.70646973204645436, -1.5077304250704082) +station = ('kggp', 0.0040802661727200838) +zone = ('inz021', 0.0029782836383663207) + +[46917] +centroid = (0.70907262882641608, -1.5092742909668451) +station = ('kggp', 0.0020015608712588145) +zone = ('inz021', 0.0014019096177007122) + +[46919] +centroid = (0.7085021505071093, -1.4987080153153935) +station = ('kokk', 0.0028199460711370097) +zone = ('inz032', 0.0031604160816184504) + +[46920] +centroid = (0.70623716692362626, -1.5096192378402091) +station = ('kggp', 0.0046026492306152399) +zone = ('inz021', 0.0022583399130723749) + +[46922] +centroid = (0.7179958166134548, -1.5082022922869773) +station = ('krcr', 0.0033617167311118684) +zone = ('inz015', 0.0025345635353950296) + +[46923] +centroid = (0.70875852192093469, -1.5121833883107767) +station = ('kggp', 0.0039852130463363198) +zone = ('inz021', 0.0011321693284889647) + +[46926] +centroid = (0.71362914245130515, -1.5018555769950255) +station = ('krcr', 0.0034573821433972109) +zone = ('inz023', 0.0020681399147799333) + +[46928] +centroid = (0.70521595732499176, -1.4954383329480001) +station = ('kmzz', 0.0014681760345460551) +zone = ('inz032', 0.001952616732308333) + +[46929] +centroid = (0.70781393227646294, -1.5092976609255293) +station = ('kggp', 0.0030577114940675051) +zone = ('inz021', 0.0012544231653313063) + +[46930] +centroid = (0.70524287030205757, -1.4935022915686402) +station = ('kmzz', 0.0020390354974860404) +zone = ('inz032', 0.0021917913992340163) + +[46931] +centroid = (0.71466937613878634, -1.5055955383293687) +station = ('krcr', 0.002254914733243497) +zone = ('inz015', 0.0017359443628374722) + +[46932] +centroid = (0.70855552267563526, -1.5053546654393011) +station = ('kgus', 0.0016184132922963149) +zone = ('inz031', 0.0026594155699135413) + +[46933] +centroid = (0.70650657594696398, -1.493692706990033) +station = ('kmzz', 0.0013091379438578755) +zone = ('inz032', 0.001148901264874798) + +[46936] +centroid = (0.70658436527172541, -1.499722714835918) +station = ('kokk', 0.0020319664633497519) +zone = ('inz031', 0.0025105259054646768) + +[46938] +centroid = (0.7061540368913537, -1.494472048860926) +station = ('kmzz', 0.00088142018274545142) +zone = ('inz032', 0.0010475180683663444) + +[46939] +centroid = (0.71546065606176312, -1.5079739857675241) +station = ('krcr', 0.0031313037839253806) +zone = ('inz015', 0.0020357548932026948) + +[46940] +centroid = (0.71019028531951578, -1.4955592144519934) +station = ('kmzz', 0.0035086049021231139) +zone = ('inz024', 0.0030359294277216196) + +[46941] +centroid = (0.71249534166262463, -1.495571222317247) +station = ('kmzz', 0.0058130113122042441) +zone = ('inz024', 0.0014304920631169405) + +[46943] +centroid = (0.71515539797558925, -1.4982417680590159) +station = ('krcr', 0.0046779680724728058) +zone = ('inz024', 0.0023536611225072625) + +[46946] +centroid = (0.71629062993425641, -1.4962432264391421) +station = ('kasw', 0.00433952142212796) +zone = ('inz017', 0.0034067004778313512) + +[46947] +centroid = (0.71139478939619449, -1.507547566924677) +station = ('kggp', 0.00085015207601435601) +zone = ('inz022', 0.00039904523255203237) + +[46950] +centroid = (0.71363378502711561, -1.5073527009136916) +station = ('kggp', 0.0030896403260780325) +zone = ('inz022', 0.0022255163040468969) + +[46951] +centroid = (0.71466996955073203, -1.5028225941203852) +station = ('krcr', 0.0021945377962932656) +zone = ('inz015', 0.0027119242266262205) + +[46952] +centroid = (0.70859367557308384, -1.4945119121810415) +station = ('kmzz', 0.002025107090326468) +zone = ('inz032', 0.0014984468249480444) + +[46953] +centroid = (0.70719722018527065, -1.4947583352181304) +station = ('kmzz', 0.0007072613075954188) +zone = ('inz032', 0.00016458076422499394) + +[46957] +centroid = (0.70490877937664076, -1.4921860340599564) +station = ('kmie', 0.0029910220796225888) +zone = ('inz033', 0.0027169993659192045) + +[46958] +centroid = (0.7124771378785264, -1.5030253141130043) +station = ('kgus', 0.0030323525296251067) +zone = ('inz023', 0.0013191478663601372) + +[46959] +centroid = (0.70896773453837136, -1.5028533293685129) +station = ('kgus', 0.00076205944452016074) +zone = ('inz031', 0.0023991060242783292) + +[46960] +centroid = (0.71840111697235298, -1.5103301977110088) +station = ('koxi', 0.0033662026593511292) +zone = ('inz012', 0.0025558663109262773) + +[46961] +centroid = (0.71150982404719354, -1.5043287085451014) +station = ('kgus', 0.0021069469998998367) +zone = ('inz023', 0.0019383380637271945) + +[46962] +centroid = (0.71537920154557244, -1.496943138375777) +station = ('kasw', 0.0050833452125876267) +zone = ('inz024', 0.0025098430955473117) + +[46967] +centroid = (0.7102561889520711, -1.5043883988055193) +station = ('kgus', 0.00098217947841875352) +zone = ('inz023', 0.0023750955034644505) + +[46968] +centroid = (0.71864527108141452, -1.5105189550696123) +station = ('koxi', 0.0030837800227203433) +zone = ('inz012', 0.0022745724516483106) + +[46970] +centroid = (0.71139838477445372, -1.5020560280596169) +station = ('kgus', 0.0022508320461531086) +zone = ('inz023', 0.00027130416961710675) + +[46974] +centroid = (0.7147455772139284, -1.4998225651224248) +station = ('krcr', 0.0037549629965650372) +zone = ('inz024', 0.002612070070789702) + +[46975] +centroid = (0.71689971493661742, -1.5053524488711512) +station = ('krcr', 0.00096349010752726227) +zone = ('inz015', 0.00052429892959136024) + +[46978] +centroid = (0.71308266240921336, -1.5099279865848869) +station = ('kggp', 0.0031383129921400592) +zone = ('inz022', 0.0027557959697181948) + +[46979] +centroid = (0.70562651112493835, -1.5057956054215249) +station = ('kokk', 0.0033154325198293069) +zone = ('inz031', 0.0023115887187613641) + +[46982] +centroid = (0.71669188112928994, -1.4989403535454191) +station = ('kasw', 0.0037260606519365579) +zone = ('inz016', 0.0031669949284627076) + +[46984] +centroid = (0.70978646849048188, -1.4980183135548832) +station = ('kmzz', 0.0036860367499644783) +zone = ('inz024', 0.003141996216747205) + +[46985] +centroid = (0.71472606443289111, -1.5109993045863459) +station = ('kggp', 0.0049531006576001343) +zone = ('inz013', 0.0022892952016867435) + +[46986] +centroid = (0.70682248054157504, -1.4978289802376266) +station = ('kmzz', 0.0018538127890816774) +zone = ('inz032', 0.0022048074587033995) + +[46987] +centroid = (0.70805656794907512, -1.4968873401995908) +station = ('kmzz', 0.0017792461486770316) +zone = ('inz032', 0.0017320290175351155) + +[46988] +centroid = (0.71344028037294693, -1.5050801949611323) +station = ('krcr', 0.0032724225340293248) +zone = ('inz022', 0.002496268214613497) + +[46989] +centroid = (0.70596185868741668, -1.491931285802335) +station = ('kmzz', 0.0027344217535172663) +zone = ('inz032', 0.0025836028969423198) + +[46990] +centroid = (0.71379316849440766, -1.4962949056382937) +station = ('kasw', 0.0067350934251502346) +zone = ('inz024', 0.001222760455402002) + +[46991] +centroid = (0.70909303172537186, -1.4925045217418602) +station = ('kmzz', 0.0032614575746398337) +zone = ('inz032', 0.0027039440143588156) + +[46992] +centroid = (0.71187276526514587, -1.4979538585456071) +station = ('kgus', 0.0049054023174510695) +zone = ('inz024', 0.001105565908846394) + +[46994] +centroid = (0.70977875413518798, -1.5054258923260748) +station = ('kggp', 0.0017415649918453972) +zone = ('inz022', 0.0020408646752362626) + +[46996] +centroid = (0.71671399445091266, -1.5124719959558861) +station = ('koxi', 0.0046306416497505958) +zone = ('inz013', 0.00066651653928555905) + +[46998] +centroid = (0.70803827689851428, -1.5070859796974019) +station = ('kggp', 0.0025260426176413552) +zone = ('inz022', 0.0033844541667898691) + +[47001] +centroid = (0.68194665177875025, -1.4829283888283578) +station = ('kcvg', 0.0040695711269432252) +zone = ('inz074', 0.0012720706973529986) + +[47003] +centroid = (0.69044675430181301, -1.4806371729462171) +station = ('khao', 0.0054463120532781033) +zone = ('inz059', 0.0016769364202497432) + +[47006] +centroid = (0.68577469988044182, -1.4872977507975556) +station = ('kbak', 0.00925298338684666) +zone = ('inz066', 0.0030004518780041589) + +[47010] +centroid = (0.68943264819323424, -1.4808894777428854) +station = ('khao', 0.0050576584953968551) +zone = ('inz059', 0.0023945616658329946) + +[47011] +centroid = (0.6786122875092776, -1.4848585484481382) +station = ('kcvg', 0.0062857946903050821) +zone = ('inz080', 0.0011038223170045231) + +[47012] +centroid = (0.6881362001715603, -1.4832399650064239) +station = ('kcvg', 0.0078545740059790467) +zone = ('inz066', 0.0010596541038419983) + +[47016] +centroid = (0.68717482045968425, -1.4816141384483135) +station = ('khao', 0.0050413815512643624) +zone = ('inz066', 0.0024112086915422286) + +[47017] +centroid = (0.67955324686890528, -1.486775216672801) +station = ('kcvg', 0.0073219022213332052) +zone = ('inz080', 0.0027814501570105764) + +[47018] +centroid = (0.68062194687648658, -1.4850417207531352) +station = ('kcvg', 0.0057696003871323042) +zone = ('inz075', 0.001840320038807249) + +[47020] +centroid = (0.67745202752913691, -1.4822106047201826) +station = ('kcvg', 0.005389562388074743) +zone = ('kyz090', 0.0013492239330022207) + +[47022] +centroid = (0.68425458791512495, -1.4826875857514601) +station = ('kcvg', 0.0047123528372081782) +zone = ('inz074', 0.0010803408410052619) + +[47023] +centroid = (0.68208425353697744, -1.4901944039439206) +station = ('kbak', 0.0077267523383249903) +zone = ('inz073', 0.0016665088733338841) + +[47024] +centroid = (0.68900139478835898, -1.4870037326317647) +station = ('kbak', 0.010144153933121855) +zone = ('inz066', 0.0021610580762668943) + +[47025] +centroid = (0.68356734706885958, -1.4811966556912364) +station = ('kcvg', 0.0033728791435759971) +zone = ('inz074', 0.0014903025737947975) + +[47030] +centroid = (0.68808022746244879, -1.4858402786990927) +station = ('kcvg', 0.0090699216762836921) +zone = ('inz066', 0.00098525493453796467) + +[47031] +centroid = (0.68284687515363629, -1.4862604492632179) +station = ('kcvg', 0.0067604654307224918) +zone = ('inz073', 0.0014801554221322789) + +[47032] +centroid = (0.68219530883728186, -1.4842919098531859) +station = ('kcvg', 0.0051489798043244722) +zone = ('inz074', 0.001395107891587136) + +[47034] +centroid = (0.68423856579259168, -1.4892453113499786) +station = ('kbak', 0.0078166788471054696) +zone = ('inz073', 0.0019640120829579229) + +[47035] +centroid = (0.68607538520397549, -1.4818812610903314) +station = ('khao', 0.0053442024670801733) +zone = ('inz066', 0.0027850353032347042) + +[47036] +centroid = (0.68750456551526351, -1.4878221349713172) +station = ('kbak', 0.0090934413717305377) +zone = ('inz066', 0.0025373391908856324) + +[47037] +centroid = (0.68363642720065354, -1.4892136336240547) +station = ('kbak', 0.00794925184061227) +zone = ('inz073', 0.0014364946561499312) + +[47038] +centroid = (0.67806572020072309, -1.4809109976525627) +station = ('kcvg', 0.0042821276297091808) +zone = ('kyz090', 0.0016350549437376557) + +[47040] +centroid = (0.67931804629890657, -1.4825006958951568) +station = ('kcvg', 0.004340616289625461) +zone = ('inz075', 0.00058772756239973899) + +[47041] +centroid = (0.68476338629866629, -1.4849918916029909) +station = ('kcvg', 0.0064959308460270492) +zone = ('inz074', 0.0021523207946985419) + +[47042] +centroid = (0.68101770028437625, -1.4879824260098202) +station = ('kbak', 0.0097375502611698941) +zone = ('inz073', 0.0014687022053400036) + +[47043] +centroid = (0.67701958730037026, -1.4851179916414472) +station = ('kcvg', 0.007330358388647565) +zone = ('inz080', 0.00096457834042003353) + +[47060] +centroid = (0.68593774853916323, -1.4815350575799058) +station = ('khao', 0.0051106552205163226) +zone = ('inz074', 0.0029697560597326551) + +[47102] +centroid = (0.67657707652181964, -1.4973657174942701) +station = ('kbak', 0.0088755444127744873) +zone = ('inz078', 0.0015252167779934624) + +[47104] +centroid = (0.67265519951954067, -1.490884542036744) +station = ('klou', 0.0063216773332368543) +zone = ('kyz032', 0.0017097379120032243) + +[47106] +centroid = (0.67132869692814745, -1.4992351047494961) +station = ('klou', 0.0051416740895927522) +zone = ('inz091', 0.0025307890373076985) + +[47108] +centroid = (0.67439569420950707, -1.5053208758649823) +station = ('kbmg', 0.010209252653085789) +zone = ('inz077', 0.0020743459991214457) + +[47110] +centroid = (0.66495040863002663, -1.5042127837761838) +station = ('kftk', 0.0045897606333072842) +zone = ('inz090', 0.0019627220069928517) + +[47111] +centroid = (0.67136178837076521, -1.4945704505241535) +station = ('klou', 0.0040909314716742031) +zone = ('inz092', 0.0010392477887345313) + +[47112] +centroid = (0.66663753115146707, -1.5038192992963215) +station = ('kftk', 0.0058178177012196287) +zone = ('inz090', 0.00070230129265801329) + +[47114] +centroid = (0.6682135634660179, -1.5024589373174397) +station = ('ksdf', 0.0051364991051995913) +zone = ('inz090', 0.0016234997266216429) + +[47115] +centroid = (0.66931547708926442, -1.5046477198257808) +station = ('ksdf', 0.0071424663441369447) +zone = ('inz090', 0.0030047838241723116) + +[47116] +centroid = (0.66888394443170884, -1.5118392791954534) +station = ('khnb', 0.0046762849357535998) +zone = ('inz084', 0.0023980968016913758) + +[47117] +centroid = (0.66508636977875701, -1.5004134114341023) +station = ('ksdf', 0.003479947485624408) +zone = ('inz090', 0.0025084062370043609) + +[47118] +centroid = (0.66863722468864695, -1.5096649480133186) +station = ('khnb', 0.0062885907841335915) +zone = ('inz084', 0.00069909381566786043) + +[47119] +centroid = (0.66971840380037995, -1.4989163901747895) +station = ('klou', 0.0038111951401299058) +zone = ('inz091', 0.00098141180248041281) + +[47120] +centroid = (0.67130703739213016, -1.5042792459140997) +station = ('ksdf', 0.0079207273378078969) +zone = ('inz077', 0.0026483303463776904) + +[47122] +centroid = (0.66856512513724708, -1.5007186346136911) +station = ('ksdf', 0.004057858077751577) +zone = ('inz091', 0.0010942153345101654) + +[47123] +centroid = (0.6678874661485753, -1.5093497764569936) +station = ('khnb', 0.006456760299145492) +zone = ('inz084', 0.00058023748759438462) + +[47124] +centroid = (0.66970887430266401, -1.5011682837888822) +station = ('ksdf', 0.005021631604658734) +zone = ('inz091', 0.0016869174048383105) + +[47125] +centroid = (0.67131646217009089, -1.506448463281526) +station = ('khnb', 0.0094799726623742472) +zone = ('inz076', 0.0028354295643133924) + +[47126] +centroid = (0.67277367246916608, -1.4970711757297033) +station = ('klou', 0.005676194903306374) +zone = ('inz092', 0.0015363728241388507) + +[47129] +centroid = (0.66869045723083287, -1.496941899192008) +station = ('klou', 0.0019711176428621373) +zone = ('inz091', 0.0018976510283178808) + +[47130] +centroid = (0.66904407839057933, -1.4956984917263023) +station = ('klou', 0.0017959586027213523) +zone = ('inz092', 0.0025152817037734764) + +[47135] +centroid = (0.66407711568549876, -1.5022808264672736) +station = ('kftk', 0.0029901634288618151) +zone = ('kyz025', 0.0023998073844381657) + +[47136] +centroid = (0.66732812302989608, -1.5004027823789576) +station = ('ksdf', 0.0033260392991802173) +zone = ('inz091', 0.0016852721921360573) + +[47137] +centroid = (0.66615938074959058, -1.5077983009250184) +station = ('kftk', 0.0074727726223277561) +zone = ('inz084', 0.0023241838258911672) + +[47138] +centroid = (0.67513655157039343, -1.4937345599854959) +station = ('klou', 0.0079186672904789542) +zone = ('inz078', 0.0022173158664867973) + +[47140] +centroid = (0.66987420934270547, -1.507317166010121) +station = ('khnb', 0.0083581947884814531) +zone = ('inz084', 0.0019677919680759037) + +[47141] +centroid = (0.67278875211390321, -1.4942132863460253) +station = ('klou', 0.005541677281290837) +zone = ('inz092', 0.0017917879516184331) + +[47142] +centroid = (0.66470656868023059, -1.5047029944031916) +station = ('kftk', 0.004680239986045635) +zone = ('kyz025', 0.0020144448979861783) + +[47143] +centroid = (0.67140393807220089, -1.4969367504707147) +station = ('klou', 0.0043349886501353367) +zone = ('inz092', 0.00084528868535986199) + +[47145] +centroid = (0.66898255553444663, -1.5063340220424728) +station = ('kftk', 0.0088361855344585797) +zone = ('inz084', 0.0020927870156621699) + +[47147] +centroid = (0.67357121812415732, -1.4930437412142639) +station = ('klou', 0.0064901871760411961) +zone = ('inz092', 0.0029943617187010965) + +[47150] +centroid = (0.66817322890700437, -1.4983232923883765) +station = ('ksdf', 0.002347506097368108) +zone = ('inz091', 0.0010246489092503039) + +[47160] +centroid = (0.6660953969792125, -1.501873222273763) +station = ('ksdf', 0.0043710040113095552) +zone = ('inz090', 0.00098611357316502309) + +[47161] +centroid = (0.66884149802430037, -1.5027911781938494) +station = ('ksdf', 0.0056207423381712911) +zone = ('inz090', 0.0022120233618526759) + +[47162] +centroid = (0.67275217001278143, -1.4915592863255651) +station = ('klou', 0.0061434395026800865) +zone = ('kyz032', 0.0020429473495531393) + +[47163] +centroid = (0.67252901221462147, -1.4952208474699089) +station = ('klou', 0.0052316421326804412) +zone = ('inz092', 0.0010996805420159612) + +[47164] +centroid = (0.67046273436647785, -1.5027795368477386) +station = ('ksdf', 0.0064754444082341057) +zone = ('inz077', 0.0032345195526115671) + +[47165] +centroid = (0.67201249947578634, -1.5011042825652119) +station = ('klou', 0.006626594622301348) +zone = ('inz077', 0.0021541281799535741) + +[47166] +centroid = (0.66858121707295048, -1.5039051694955197) +station = ('ksdf', 0.0063288068518381419) +zone = ('inz090', 0.00209549163904524) + +[47167] +centroid = (0.67389710600208974, -1.5026570147342486) +station = ('klou', 0.0088319066894874849) +zone = ('inz077', 0.00023754027721197056) + +[47170] +centroid = (0.67518412924580284, -1.4982614204663933) +station = ('klou', 0.0082507870166837593) +zone = ('inz078', 0.0013168335673409014) + +[47172] +centroid = (0.67019779338602514, -1.4970434075413042) +station = ('klou', 0.0032530863134527408) +zone = ('inz092', 0.0016376003620158235) + +[47175] +centroid = (0.66980085315424409, -1.5108958065617029) +station = ('khnb', 0.0056804532828636251) +zone = ('inz084', 0.0021693598849691271) + +[47177] +centroid = (0.67351802048855658, -1.4973503585968522) +station = ('klou', 0.0064517750744129349) +zone = ('inz078', 0.001771261130482048) + +[47201] +centroid = (0.68345126522030952, -1.5008644568726954) +station = ('kbak', 0.0022644856184138467) +zone = ('inz064', 0.0015306482062574268) + +[47203] +centroid = (0.68469969923426111, -1.4980537960985763) +station = ('kbak', 0.0011141536358150557) +zone = ('inz064', 0.00098401188349698165) + +[47220] +centroid = (0.67851910438051366, -1.5018393628862743) +station = ('kbak', 0.0071065636264188202) +zone = ('inz071', 0.00054823192703953654) + +[47223] +centroid = (0.68155236444743217, -1.4917682720501988) +station = ('kbak', 0.0069163919807410362) +zone = ('inz072', 0.0023107998718134453) + +[47224] +centroid = (0.67872412820774541, -1.4872839452431723) +station = ('kcvg', 0.0079608019923888811) +zone = ('inz080', 0.002650129185356071) + +[47226] +centroid = (0.68560667703335243, -1.4986964612357456) +station = ('kbak', 0.00050073782559022369) +zone = ('inz064', 0.0013899401484823396) + +[47227] +centroid = (0.6783672258290051, -1.4949466911510056) +station = ('kbak', 0.0077211797797342441) +zone = ('inz072', 0.0022845893257241994) + +[47229] +centroid = (0.6772417851674416, -1.4986745224470477) +station = ('kbak', 0.0081026571418271291) +zone = ('inz078', 0.0026313622590499754) + +[47230] +centroid = (0.67705475568479789, -1.4944401966020771) +station = ('kbak', 0.0090781381612710394) +zone = ('inz078', 0.0025054320281392753) + +[47231] +centroid = (0.67895899716518637, -1.4921491552528616) +station = ('kbak', 0.008420148640382057) +zone = ('inz079', 0.0021547159389508443) + +[47232] +centroid = (0.68263418933098829, -1.4973049800363003) +station = ('kbak', 0.0030863820372581648) +zone = ('inz064', 0.002199181399720689) + +[47234] +centroid = (0.68726461764969937, -1.4969322475212445) +station = ('kbak', 0.0026294112393546211) +zone = ('inz056', 0.0025725784694365945) + +[47235] +centroid = (0.68053363321633564, -1.5033585672803802) +station = ('kbak', 0.0057661259923880879) +zone = ('inz071', 0.0020010659324026132) + +[47240] +centroid = (0.68601895870925844, -1.4918798160426938) +station = ('kbak', 0.0057362395947374361) +zone = ('inz065', 0.00030943767316998435) + +[47243] +centroid = (0.67489614991922375, -1.4919464527135351) +station = ('klou', 0.0080058390957650893) +zone = ('inz079', 0.0021287500176581159) + +[47244] +centroid = (0.68450137747135686, -1.495774047029621) +station = ('kbak', 0.0028084335601355516) +zone = ('inz065', 0.0031101857294690951) + +[47246] +centroid = (0.68590135842425914, -1.4969167315441942) +station = ('kbak', 0.0018844667138346457) +zone = ('inz064', 0.0024030079847867699) + +[47247] +centroid = (0.68171743768808579, -1.4990307965072576) +station = ('kbak', 0.0036187439145432348) +zone = ('inz064', 0.0025578813882600254) + +[47250] +centroid = (0.67745508185532788, -1.4896583260641705) +station = ('kbak', 0.010835749944182814) +zone = ('inz079', 0.0012951943211770725) + +[47260] +centroid = (0.67782901864756762, -1.5044346151241124) +station = ('kbmg', 0.0078856509683514139) +zone = ('inz071', 0.0024927972626024716) + +[47263] +centroid = (0.68607915511515982, -1.4892925399595376) +station = ('kbak', 0.007733480336837073) +zone = ('inz065', 0.0023113524888573643) + +[47264] +centroid = (0.68023142945635273, -1.5053460958726739) +station = ('kbmg', 0.0058384856897700449) +zone = ('inz071', 0.0031177257639057724) + +[47265] +centroid = (0.68093429099942338, -1.4945243389253156) +station = ('kbak', 0.0057192580294496767) +zone = ('inz072', 0.00031098754381626717) + +[47270] +centroid = (0.67787430994165687, -1.4961461861327314) +station = ('kbak', 0.0078352032593999726) +zone = ('inz078', 0.002712577644977131) + +[47272] +centroid = (0.68785193839628789, -1.4943754623401206) +station = ('kgez', 0.0038510717595300809) +zone = ('inz065', 0.0024349358546154544) + +[47273] +centroid = (0.68200119331787501, -1.4963902704286227) +station = ('kbak', 0.0039964851382358899) +zone = ('inz072', 0.0020172425096025137) + +[47274] +centroid = (0.68009391496458804, -1.4998962005635663) +station = ('kbak', 0.0052635491157115473) +zone = ('inz071', 0.0017144233618633696) + +[47280] +centroid = (0.68585482794640096, -1.500119585254529) +station = ('kbak', 0.00085937957829602062) +zone = ('inz064', 0.0017363372437021495) + +[47281] +centroid = (0.67698750814871855, -1.5028391572949866) +station = ('kbak', 0.0088015730234043202) +zone = ('inz071', 0.0022595258485639284) + +[47282] +centroid = (0.68037041002468912, -1.4941891309891777) +station = ('kbak', 0.0063216805642908741) +zone = ('inz072', 0.00034638139347629337) + +[47283] +centroid = (0.68370985320228506, -1.4938054378064192) +station = ('kbak', 0.0045106075080755294) +zone = ('inz065', 0.0026082135900817333) + +[47302] +centroid = (0.70034669815143791, -1.4902052075319903) +station = ('kmie', 0.001872090454853211) +zone = ('inz041', 0.0017678772032057096) + +[47303] +centroid = (0.70287276553772671, -1.4901232294170239) +station = ('kmie', 0.00073125443430353636) +zone = ('inz041', 0.00080982566963205989) + +[47304] +centroid = (0.70225647232555499, -1.4915551324419452) +station = ('kmie', 0.00079867263877221812) +zone = ('inz041', 0.00085203632474393251) + +[47305] +centroid = (0.70151936742256027, -1.4902657704570343) +station = ('kmie', 0.00070994968841188021) +zone = ('inz041', 0.00060267824251963691) + +[47306] +centroid = (0.70166382832474783, -1.4905916059750892) +station = ('kmie', 0.00054378626936612737) +zone = ('inz041', 0.00045206912314529473) + +[47320] +centroid = (0.70287381273527805, -1.4882911049413283) +station = ('kmie', 0.0018219111897262649) +zone = ('inz041', 0.0018235681733069103) + +[47324] +centroid = (0.69361313063078101, -1.4809434433233573) +station = ('kmwo', 0.0071031062290035927) +zone = ('inz059', 0.0022450314972715904) + +[47325] +centroid = (0.69274118158977727, -1.4838830490226136) +station = ('kmwo', 0.0088011226697295841) +zone = ('inz059', 0.0017166227944729144) + +[47326] +centroid = (0.70770797333757429, -1.4829585481178322) +station = ('kmie', 0.0079612726131027666) +zone = ('inz034', 0.0019979528552727509) + +[47327] +centroid = (0.69511975120098013, -1.4865859531687147) +station = ('kmie', 0.0076955686912145247) +zone = ('inz050', 0.0023058435955409231) + +[47330] +centroid = (0.69440104206830133, -1.4839183046735041) +station = ('kmie', 0.0092944834391808055) +zone = ('inz050', 0.0013740106886037135) + +[47331] +centroid = (0.69157072888680482, -1.4862759303336828) +station = ('khao', 0.0097282891387959376) +zone = ('inz058', 0.00040073573133644924) + +[47334] +centroid = (0.70020434909764517, -1.4927275748202651) +station = ('kaid', 0.001197461669992286) +zone = ('inz041', 0.0025726948608466799) + +[47335] +centroid = (0.69485700933538486, -1.487110721314912) +station = ('kaid', 0.0076489236240345239) +zone = ('inz050', 0.0027699600399815555) + +[47336] +centroid = (0.70488129044092196, -1.4872012689965053) +station = ('kmie', 0.003679357402167004) +zone = ('inz033', 0.0021460579816772398) + +[47337] +centroid = (0.69468425664602251, -1.4911617701351307) +station = ('kaid', 0.0059858069553805618) +zone = ('inz049', 0.0023104124815953651) + +[47338] +centroid = (0.70407227797274496, -1.48949611516349) +station = ('kmie', 0.0020222536681077526) +zone = ('inz041', 0.0021002928842837544) + +[47339] +centroid = (0.69706315786978335, -1.4849109257789905) +station = ('kmie', 0.0066923528977557807) +zone = ('inz050', 0.001595090214414837) + +[47340] +centroid = (0.70128650559375916, -1.4858627236332733) +station = ('kmie', 0.0036667798651797367) +zone = ('inz042', 0.0016799411096926223) + +[47341] +centroid = (0.6976485936607798, -1.4816402660272159) +station = ('kves', 0.0062547772653735161) +zone = ('inz050', 0.002459629709634396) + +[47342] +centroid = (0.70386650365393488, -1.4923958400893385) +station = ('kmie', 0.0021978765949223697) +zone = ('inz041', 0.0023008576882361663) + +[47344] +centroid = (0.69600889173511615, -1.4916521902016486) +station = ('kaid', 0.0046248648610166679) +zone = ('inz049', 0.0013027877335759935) + +[47345] +centroid = (0.6962792606895426, -1.4845802033390303) +station = ('kmie', 0.0074637716634959666) +zone = ('inz050', 0.00084731298159784502) + +[47346] +centroid = (0.69693889042704138, -1.4864655079970346) +station = ('kmie', 0.0061077283941602164) +zone = ('inz050', 0.0024229647404848758) + +[47348] +centroid = (0.70626867011662464, -1.4894705111833633) +station = ('kmie', 0.0041411890034803549) +zone = ('inz033', 0.00024275647912772505) + +[47351] +centroid = (0.69650850968679212, -1.4926420013270398) +station = ('kaid', 0.0038716594808080331) +zone = ('inz049', 0.0017329185285476062) + +[47352] +centroid = (0.69456634220175784, -1.4899363744673055) +station = ('kaid', 0.0065213866018636081) +zone = ('inz049', 0.0023955035267063801) + +[47353] +centroid = (0.69155374683318294, -1.4822235201566474) +station = ('khao', 0.0070922885395864801) +zone = ('inz059', 4.17017748416569e-05) + +[47354] +centroid = (0.69884452817083131, -1.4868903036836774) +station = ('kmie', 0.0043531296270713834) +zone = ('inz042', 0.0031624148557470927) + +[47355] +centroid = (0.69890268254150778, -1.4822566814124354) +station = ('kves', 0.0059562401900851436) +zone = ('inz042', 0.0022775123623672185) + +[47356] +centroid = (0.69868074647382417, -1.4923861011521122) +station = ('kaid', 0.0020833357183709009) +zone = ('inz049', 0.0022953682793074911) + +[47357] +centroid = (0.69379209669228059, -1.4860940495723327) +station = ('kaid', 0.0089538902469545496) +zone = ('inz058', 0.0019881918854468268) + +[47358] +centroid = (0.69913187917887964, -1.4855112143219216) +station = ('kmie', 0.0049037381932220837) +zone = ('inz042', 0.0022186741990306747) + +[47359] +centroid = (0.70775336935141875, -1.4884807873244348) +station = ('kmie', 0.0057606705484651577) +zone = ('inz033', 0.0014631462171224067) + +[47360] +centroid = (0.69832831213796898, -1.4880363566837069) +station = ('kmie', 0.004313150658895243) +zone = ('inz049', 0.0023193531162788148) + +[47361] +centroid = (0.69820483009339041, -1.4902504115596169) +station = ('kmie', 0.0040042740881700801) +zone = ('inz049', 0.0012848082246818366) + +[47362] +centroid = (0.69691798138260241, -1.4899802520447007) +station = ('kaid', 0.0046333520070870743) +zone = ('inz049', 0.00036045859627025271) + +[47367] +centroid = (0.69957418051792009, -1.4902881106714601) +station = ('kmie', 0.0026354752422677197) +zone = ('inz041', 0.0025331835503211828) + +[47368] +centroid = (0.70131162088169541, -1.4869191016163352) +station = ('kmie', 0.0028848367482220334) +zone = ('inz041', 0.0028158998364197197) + +[47369] +centroid = (0.70698650658467743, -1.4860093138371482) +station = ('kmie', 0.0058851417692190071) +zone = ('inz034', 0.0021777429135752023) + +[47371] +centroid = (0.70544457800371041, -1.4828805842601458) +station = ('kves', 0.0069129713408010813) +zone = ('inz034', 0.00065944545408547575) + +[47373] +centroid = (0.70402232664955289, -1.4863371390305502) +station = ('kmie', 0.0036666435155270848) +zone = ('inz034', 0.0027073909771984971) + +[47374] +centroid = (0.69520092646449039, -1.4816047485769377) +station = ('kves', 0.0080219584398484884) +zone = ('inz050', 0.0017065816859597029) + +[47380] +centroid = (0.70313634516136303, -1.4840539691162615) +station = ('kmie', 0.0050150214697746278) +zone = ('inz042', 0.002267635836164249) + +[47381] +centroid = (0.70479512353575091, -1.4812065517080952) +station = ('kves', 0.0054936884126854371) +zone = ('inz034', 0.0020894522312427488) + +[47382] +centroid = (0.70225750206981374, -1.4820896883096044) +station = ('kves', 0.0052029759816259024) +zone = ('inz042', 0.0018597423244905266) + +[47383] +centroid = (0.70060764232790351, -1.4881745518538798) +station = ('kmie', 0.0023948146355393571) +zone = ('inz041', 0.0022978352364326541) + +[47384] +centroid = (0.69654765742191427, -1.4931447434180769) +station = ('kaid', 0.0037254998790193267) +zone = ('inz049', 0.0021015512294457975) + +[47385] +centroid = (0.6952153428841118, -1.4913141722854151) +station = ('kaid', 0.0054532554465496728) +zone = ('inz049', 0.0018376217453043625) + +[47386] +centroid = (0.69909290597668261, -1.4902607962686665) +station = ('kmie', 0.0031171115631044976) +zone = ('inz049', 0.0021685917946539387) + +[47387] +centroid = (0.6953123831905228, -1.4887402654243289) +station = ('kaid', 0.0064559794634876681) +zone = ('inz049', 0.0020821556341612964) + +[47388] +centroid = (0.6982300850076667, -1.4912692998703463) +station = ('kaid', 0.0030182459518051162) +zone = ('inz049', 0.0014444941075115231) + +[47390] +centroid = (0.70172128456372351, -1.4808495271563074) +station = ('kves', 0.0042192056242355081) +zone = ('inz042', 0.0023543434541315744) + +[47393] +centroid = (0.69748585916132377, -1.4835942842978713) +station = ('kmie', 0.0070892081691953301) +zone = ('inz050', 0.0017228310654014069) + +[47394] +centroid = (0.70106340015547675, -1.4833083470065169) +station = ('kves', 0.0061232592676246601) +zone = ('inz042', 0.00036883977178940006) + +[47396] +centroid = (0.70143356703653226, -1.4925563231140593) +station = ('kmie', 0.0017415601182568566) +zone = ('inz041', 0.0017377623708371792) + +[47401] +centroid = (0.68246827833229384, -1.50871421480988) +station = ('kbmg', 0.0024934775790263772) +zone = ('inz062', 0.001488059288222561) + +[47403] +centroid = (0.68216576041304566, -1.5116705058567856) +station = ('kbmg', 0.0011321587007199329) +zone = ('inz062', 0.0017901874525508303) + +[47404] +centroid = (0.68450994703798429, -1.5113014734397436) +station = ('kbmg', 0.0012615158881366497) +zone = ('inz062', 0.0013768321940225107) + +[47405] +centroid = (0.68361420915927562, -1.5100346785620613) +station = ('kbmg', 0.0013644931364403046) +zone = ('inz062', 0.00014127363670156116) + +[47406] +centroid = (0.68378155132795682, -1.5099794214379432) +station = ('kbmg', 0.0014531003647103647) +zone = ('inz062', 0.00031255660611206383) + +[47408] +centroid = (0.68468943669825932, -1.5091382774582369) +station = ('kbmg', 0.0024547046366362735) +zone = ('inz062', 0.0014203238477058823) + +[47420] +centroid = (0.67916272944877165, -1.5105636005918781) +station = ('kbmg', 0.0042344885586948922) +zone = ('inz070', 0.00153941349644192) + +[47421] +centroid = (0.67829592912906123, -1.5088760591914174) +station = ('kbmg', 0.0054752478636508626) +zone = ('inz070', 0.00057523224984599715) + +[47424] +centroid = (0.68102831188622837, -1.5163844307269121) +station = ('kbmg', 0.0042552306701569894) +zone = ('inz061', 0.0011155303788861074) + +[47427] +centroid = (0.68474204092191449, -1.518718058109876) +station = ('khuf', 0.0055518143974763266) +zone = ('inz052', 0.0030994592129948389) + +[47429] +centroid = (0.68544799169776105, -1.5117333028032722) +station = ('kbmg', 0.0021516121060785928) +zone = ('inz062', 0.0023286936265587317) + +[47431] +centroid = (0.68480787474129967, -1.5167424152097886) +station = ('kbmg', 0.0041568279625524849) +zone = ('inz053', 0.0015977048053280789) + +[47432] +centroid = (0.67169916051517564, -1.5121865299034303) +station = ('khnb', 0.0058883428890474073) +zone = ('inz076', 0.0022325012683385064) + +[47433] +centroid = (0.68688806286358162, -1.5121802641714155) +station = ('kbmg', 0.0036073671731636243) +zone = ('inz053', 0.0027504163068844431) + +[47434] +centroid = (0.68088631189828608, -1.5105350993651931) +station = ('kbmg', 0.0025869103250831887) +zone = ('inz062', 0.0026208925431384757) + +[47436] +centroid = (0.6798781573624566, -1.5077197262020936) +station = ('kbmg', 0.0046325700088258115) +zone = ('inz070', 0.0023743108397786014) + +[47437] +centroid = (0.67569973441342701, -1.5127984772457643) +station = ('kbmg', 0.0076406551233132863) +zone = ('inz069', 0.0017218074851446561) + +[47438] +centroid = (0.68344873449289412, -1.5217051193114941) +station = ('khuf', 0.0053755813137218349) +zone = ('inz061', 0.0037251937487315129) + +[47441] +centroid = (0.68145848318696733, -1.5213249866004099) +station = ('krsv', 0.0065843373466110142) +zone = ('inz061', 0.0027625450511150631) + +[47443] +centroid = (0.67994833705167934, -1.5201668559219563) +station = ('krsv', 0.00753675213659479) +zone = ('inz061', 0.0023065325079830779) + +[47446] +centroid = (0.67626607630240665, -1.5100265802343322) +station = ('kbmg', 0.0071563701517197075) +zone = ('inz070', 0.0017074866987317463) + +[47448] +centroid = (0.6838117978838939, -1.5050935990897878) +station = ('kbak', 0.0047845416286869807) +zone = ('inz063', 0.00031094841888386999) + +[47449] +centroid = (0.67940410848432242, -1.5184938705674575) +station = ('kbmg', 0.0065284064312740031) +zone = ('inz061', 0.0019883972683561661) + +[47451] +centroid = (0.67881019039316126, -1.5101208280139398) +station = ('kbmg', 0.0046605061858874322) +zone = ('inz070', 0.0010553456965181659) + +[47452] +centroid = (0.6745198918390789, -1.5085479372920425) +station = ('kbmg', 0.0091225993038516369) +zone = ('inz076', 0.0020219014795970088) + +[47453] +centroid = (0.67965965959339947, -1.5145218328024763) +station = ('kbmg', 0.0042276959873856325) +zone = ('inz061', 0.0030194101260148701) + +[47454] +centroid = (0.67212673127532929, -1.5088689207947765) +station = ('khnb', 0.0081886198853181463) +zone = ('inz076', 0.00081041102546850917) + +[47455] +centroid = (0.68620230554718054, -1.5176711747179448) +station = ('khuf', 0.0053926935851607667) +zone = ('inz053', 0.0016020773511048441) + +[47456] +centroid = (0.68879836063647437, -1.5130491937928134) +station = ('kbmg', 0.0055935932283734157) +zone = ('inz053', 0.0033108806126227498) + +[47457] +centroid = (0.67909258466613398, -1.5167740231225422) +station = ('kbmg', 0.0057382690975379879) +zone = ('inz061', 0.0023514026824705747) + +[47458] +centroid = (0.68190588088742365, -1.5098359379201367) +station = ('kbmg', 0.0020322808244121393) +zone = ('inz062', 0.0015953088826404064) + +[47459] +centroid = (0.68264701750099055, -1.5140657259090524) +station = ('kbmg', 0.0019129897098553593) +zone = ('inz053', 0.0036898013019070319) + +[47460] +centroid = (0.6856814992983854, -1.5149097671353171) +station = ('kbmg', 0.0034200163359055058) +zone = ('inz053', 0.00070483008167307568) + +[47462] +centroid = (0.67995100740543479, -1.5122853329923855) +station = ('kbmg', 0.003371507372712905) +zone = ('inz070', 0.0030250626474099596) + +[47464] +centroid = (0.68591095773514499, -1.5123277270399165) +station = ('kbmg', 0.0026531054205631722) +zone = ('inz053', 0.0025438513715402298) + +[47465] +centroid = (0.68151567762655529, -1.5190450629985295) +station = ('kbmg', 0.0059377773724044111) +zone = ('inz061', 0.0010086026246615776) + +[47467] +centroid = (0.67662687076537897, -1.5069933899805836) +station = ('kbmg', 0.0076249703691649148) +zone = ('inz070', 0.0022835287305886277) + +[47468] +centroid = (0.68540969917397232, -1.5078399619342635) +station = ('kbmg', 0.0036913220449734888) +zone = ('inz063', 0.0025907328632723504) + +[47469] +centroid = (0.6743533350685611, -1.511440349288325) +station = ('khnb', 0.008292468373799872) +zone = ('inz076', 0.0021933172858226361) + +[47470] +centroid = (0.67750684832094199, -1.5121028937256744) +station = ('kbmg', 0.0057961958545866268) +zone = ('inz070', 0.0021278766281189699) + +[47471] +centroid = (0.68317237905913331, -1.5185029113729827) +station = ('kbmg', 0.0052416681665226955) +zone = ('inz061', 0.0019447123326994224) + +[47501] +centroid = (0.67478024260359881, -1.5214671611212773) +station = ('klwv', 0.0060864946358367361) +zone = ('inz068', 0.0015523676688003227) + +[47512] +centroid = (0.67690395923742563, -1.5240356923682672) +station = ('klwv', 0.0038104941915170498) +zone = ('inz067', 0.0021163682281997607) + +[47513] +centroid = (0.66853541963337804, -1.5134467448898328) +station = ('khnb', 0.0033678508255417803) +zone = ('inz083', 0.0024987206091144527) + +[47514] +centroid = (0.66595132004946034, -1.5112144338699467) +station = ('khnb', 0.0052511814924183038) +zone = ('inz089', 0.0015127582287048672) + +[47515] +centroid = (0.66643500314506554, -1.513269960489898) +station = ('khnb', 0.0035652786113329394) +zone = ('inz089', 0.0020319451509604545) + +[47516] +centroid = (0.67668170901047664, -1.5257540039234407) +station = ('klwv', 0.002460600037503962) +zone = ('inz067', 0.001429633129952428) + +[47519] +centroid = (0.67374349957462176, -1.5183083595212628) +station = ('khnb', 0.0061826381679362559) +zone = ('inz068', 0.0020500707029855307) + +[47520] +centroid = (0.6622661969602146, -1.5126461623619427) +station = ('khnb', 0.0065804933349336795) +zone = ('kyz023', 0.0023563079619625007) + +[47521] +centroid = (0.67013803331243693, -1.5136293761427613) +station = ('khnb', 0.0040034760086436038) +zone = ('inz083', 0.0021949950572124149) + +[47522] +centroid = (0.678799037739241, -1.5152378715813992) +station = ('kbmg', 0.0052522271742203872) +zone = ('inz061', 0.0031938906090131594) + +[47523] +centroid = (0.66634565974065607, -1.5188860285970878) +station = ('khnb', 0.0016198117237160659) +zone = ('inz088', 0.0028833961060754022) + +[47524] +centroid = (0.67186048129793763, -1.5290984387426974) +station = ('kajg', 0.0025085079712176429) +zone = ('inz081', 0.003213604774823629) + +[47525] +centroid = (0.66378962505111028, -1.510751712178658) +station = ('khnb', 0.0065677328871090969) +zone = ('inz089', 0.0013568861890196993) + +[47527] +centroid = (0.67140823158216079, -1.5147001181855673) +station = ('khnb', 0.004430919520458901) +zone = ('inz083', 0.0022311857785054325) + +[47528] +centroid = (0.67776608207474076, -1.5228559894202591) +station = ('klwv', 0.0048574639406079147) +zone = ('inz068', 0.0033587715970709022) + +[47529] +centroid = (0.67814710490374364, -1.5198327300899546) +station = ('kbmg', 0.008124516057366327) +zone = ('inz068', 0.0026649656053290261) + +[47531] +centroid = (0.66391818600381214, -1.5158433786587937) +station = ('khnb', 0.0039117007946986512) +zone = ('inz088', 0.0021941264002708562) + +[47532] +centroid = (0.66708836715054964, -1.5160028144859634) +station = ('khnb', 0.0013241553898564688) +zone = ('inz083', 0.0025088603030277426) + +[47535] +centroid = (0.67845039076786262, -1.5238061990249225) +station = ('klwv', 0.0043823073003222846) +zone = ('inz067', 0.0035330076429004884) + +[47536] +centroid = (0.66518494597490974, -1.5155831675206137) +station = ('khnb', 0.0028636801730244489) +zone = ('inz089', 0.002785424423089271) + +[47537] +centroid = (0.66451957410417195, -1.519066966880642) +station = ('khnb', 0.0032885890503883629) +zone = ('inz088', 0.001117173781721158) + +[47541] +centroid = (0.66733149151535243, -1.5192421630309574) +station = ('khnb', 0.0013430015513853557) +zone = ('inz083', 0.003203631676570784) + +[47542] +centroid = (0.66840164014621284, -1.5178642430398004) +station = ('khnb', 0.00084672037174260179) +zone = ('inz083', 0.0016819046857097148) + +[47546] +centroid = (0.67053418814605459, -1.5172593468276443) +station = ('khnb', 0.002955412848403938) +zone = ('inz083', 0.001193707766337799) + +[47550] +centroid = (0.66439773266909008, -1.517063067099965) +station = ('khnb', 0.0032149056086955585) +zone = ('inz088', 0.001505101293188748) + +[47551] +centroid = (0.66521676332717361, -1.5109240634422925) +station = ('khnb', 0.0057327447826746349) +zone = ('inz089', 0.0011153935900416606) + +[47552] +centroid = (0.66522440786929726, -1.5184307943682902) +station = ('khnb', 0.00246030482922064) +zone = ('inz088', 0.0017549225544078706) + +[47553] +centroid = (0.67475739624369024, -1.5167581231730565) +station = ('khnb', 0.0071966651360386808) +zone = ('inz069', 0.0016011659121377302) + +[47557] +centroid = (0.67332767488033407, -1.5244190364851753) +station = ('klwv', 0.0047991825801922267) +zone = ('inz067', 0.0021807106236572922) + +[47558] +centroid = (0.67450233382680391, -1.5191422429312809) +station = ('khnb', 0.007023540915381858) +zone = ('inz068', 0.0010725625851249264) + +[47561] +centroid = (0.67829924525463992, -1.5260860004537551) +station = ('klwv', 0.0027755076998309007) +zone = ('inz067', 0.0030595431507982039) + +[47562] +centroid = (0.6777652617699923, -1.5179727501593969) +station = ('kbmg', 0.007349529103631668) +zone = ('inz068', 0.0026468026157656674) + +[47564] +centroid = (0.67165577162997114, -1.5200740567656279) +station = ('khnb', 0.0045185140942082674) +zone = ('inz082', 0.0023957924803240417) + +[47567] +centroid = (0.671300754206823, -1.5237600350662073) +station = ('khnb', 0.0061147368086828906) +zone = ('inz082', 0.0014950014672457518) + +[47568] +centroid = (0.67656094967953118, -1.520224172534592) +station = ('klwv', 0.0067713958381615319) +zone = ('inz068', 0.0011531091127658796) + +[47574] +centroid = (0.66235307945037869, -1.5107941236794817) +station = ('khnb', 0.0074691830793346793) +zone = ('inz089', 0.0024919727837239393) + +[47575] +centroid = (0.66877191174702333, -1.5150236673223021) +station = ('khnb', 0.0023186436421320056) +zone = ('inz083', 0.0013122664691104025) + +[47576] +centroid = (0.66628881436691845, -1.5117682268416048) +station = ('khnb', 0.0047355038495965653) +zone = ('inz089', 0.0016951956341000236) + +[47577] +centroid = (0.6658871966527421, -1.5151017882596212) +station = ('khnb', 0.0025763255314395989) +zone = ('inz089', 0.0026692974177085086) + +[47578] +centroid = (0.67897398954346089, -1.5218140453101112) +station = ('krsv', 0.0065004845972300163) +zone = ('inz068', 0.0038607528850910827) + +[47579] +centroid = (0.66516126185696012, -1.5169552581120691) +station = ('khnb', 0.0024738633857430475) +zone = ('inz088', 0.0021138574379939209) + +[47580] +centroid = (0.66942457762080665, -1.514372554791553) +station = ('khnb', 0.0031053142628314143) +zone = ('inz083', 0.0015497600676875553) + +[47581] +centroid = (0.67466913494341685, -1.5142930375908323) +station = ('khnb', 0.0075297333280179672) +zone = ('inz069', 0.0010667166641356481) + +[47584] +centroid = (0.66768446690327576, -1.5229660324295975) +station = ('khnb', 0.0042434008029375372) +zone = ('inz082', 0.00252885207249907) + +[47585] +centroid = (0.66790729308887786, -1.5211933015083468) +station = ('khnb', 0.0028677434252511094) +zone = ('inz082', 0.0024946611750589673) + +[47586] +centroid = (0.66390746968220493, -1.513235280797661) +station = ('khnb', 0.0050137698439183609) +zone = ('inz089', 0.0011294347067943972) + +[47588] +centroid = (0.66448854215007147, -1.5145688519725249) +station = ('khnb', 0.0038928945315290031) +zone = ('inz089', 0.0019332275723927207) + +[47590] +centroid = (0.66951971551833278, -1.5201877824196881) +station = ('khnb', 0.0028230690056294879) +zone = ('inz082', 0.0019229663577717457) + +[47591] +centroid = (0.67419557475747327, -1.5271890136344306) +station = ('klwv', 0.0027587647039204271) +zone = ('inz067', 0.0015527477198195229) + +[47596] +centroid = (0.67834832391320599, -1.5224111573538035) +station = ('krsv', 0.0062935749876307451) +zone = ('inz068', 0.0035617337897921098) + +[47597] +centroid = (0.67464635839667841, -1.5236514930400258) +station = ('klwv', 0.0045460972186471922) +zone = ('inz067', 0.0017335757618766776) + +[47598] +centroid = (0.66997767246076367, -1.5221297928250894) +station = ('khnb', 0.0043060290979858775) +zone = ('inz082', 0.00034999435249685875) + +[47601] +centroid = (0.66412296548494865, -1.5228788881400452) +station = ('kevv', 0.0038452410820591851) +zone = ('inz087', 0.00075117839506061977) + +[47610] +centroid = (0.66423328774696722, -1.5254481873319061) +station = ('kevv', 0.0018582688073278863) +zone = ('inz087', 0.0018798717727800181) + +[47611] +centroid = (0.66371237677841699, -1.5194392805166776) +station = ('khnb', 0.0041472626792528671) +zone = ('inz088', 0.00072482914417801737) + +[47612] +centroid = (0.66659405499979985, -1.5306405942164669) +station = ('kevv', 0.0035998711808063535) +zone = ('inz081', 0.0026012278885419941) + +[47613] +centroid = (0.66599928169730527, -1.5257226927166601) +station = ('kevv', 0.0027090860052156277) +zone = ('inz087', 0.0023110243583739413) + +[47615] +centroid = (0.66269891644166146, -1.5178002418161298) +station = ('kowb', 0.004891650004764928) +zone = ('inz088', 0.00098384530001752526) + +[47616] +centroid = (0.66741481353384258, -1.5339846101567032) +station = ('kcul', 0.0041307780346693992) +zone = ('ilz078', 0.0036522191395676798) + +[47619] +centroid = (0.66646090383116519, -1.5237355131902166) +station = ('kevv', 0.0041226072663344089) +zone = ('inz087', 0.001683138281343276) + +[47620] +centroid = (0.66203757628149573, -1.5342440882565971) +station = ('kehr', 0.0036654046616922602) +zone = ('inz085', 0.0016499036170123738) + +[47630] +centroid = (0.66240301332027829, -1.5244834914944514) +station = ('kevv', 0.0029286558819565205) +zone = ('inz087', 0.0026375661195859211) + +[47631] +centroid = (0.66512981102383917, -1.5341756888032114) +station = ('kcul', 0.0030583589785424447) +zone = ('inz085', 0.0015917798958616149) + +[47633] +centroid = (0.66629527208515094, -1.5321877587851898) +station = ('kevv', 0.0042911909875599421) +zone = ('inz085', 0.0029081023102482599) + +[47634] +centroid = (0.66216863305502793, -1.5216208373619153) +station = ('kowb', 0.0034881656075291092) +zone = ('inz088', 0.0027352102540835889) + +[47635] +centroid = (0.66119493131863294, -1.5202956612207537) +station = ('kowb', 0.0026412313782424135) +zone = ('inz088', 0.0026531707199905709) + +[47637] +centroid = (0.66559412096474724, -1.5210774640058919) +station = ('khnb', 0.0034063594379089338) +zone = ('inz087', 0.0018243197032573662) + +[47638] +centroid = (0.66436731158022788, -1.5319819670130872) +station = ('kevv', 0.0033833622782542495) +zone = ('inz085', 0.0014797724012375016) + +[47639] +centroid = (0.66629857075743715, -1.5284362084646133) +station = ('kevv', 0.0025503724670299685) +zone = ('inz081', 0.0023738645813122941) + +[47640] +centroid = (0.67157086136186162, -1.52688440132008) +station = ('kajg', 0.0039972819882733053) +zone = ('inz081', 0.0032131859612282831) + +[47648] +centroid = (0.66754620191993275, -1.5281716863631809) +station = ('kevv', 0.0037543473772501442) +zone = ('inz081', 0.0011795117490970789) + +[47649] +centroid = (0.66939426125169943, -1.5263118635122557) +station = ('kevv', 0.0056997459457892845) +zone = ('inz081', 0.0019654466479671825) + +[47654] +centroid = (0.6675797995080337, -1.5252832362643003) +station = ('kevv', 0.0042406486754233393) +zone = ('inz081', 0.0028502501697847587) + +[47660] +centroid = (0.66837462244939194, -1.5240599524448701) +station = ('khnb', 0.0051602066165116842) +zone = ('inz082', 0.0021902006458868937) + +[47665] +centroid = (0.66805391819933801, -1.5310494725003316) +station = ('kevv', 0.0049789202603671041) +zone = ('inz081', 0.001988227655226377) + +[47666] +centroid = (0.67051704901279996, -1.5289166103412246) +station = ('kajg', 0.0037154527214056129) +zone = ('inz081', 0.0018626988576673576) + +[47670] +centroid = (0.66924458181504842, -1.5286435012198725) +station = ('kajg', 0.0049584882334741866) +zone = ('inz081', 0.00057753737620831942) + +[47683] +centroid = (0.6680558729681001, -1.5250155551169218) +station = ('kevv', 0.0047602402219952267) +zone = ('inz082', 0.0029089962401181338) + +[47708] +centroid = (0.6627809818230902, -1.5284472040389006) +station = ('kevv', 0.0011656589101546563) +zone = ('inz086', 0.00090298205809632233) + +[47710] +centroid = (0.66367026198356638, -1.5284862121476828) +station = ('kevv', 0.00059972076402065315) +zone = ('inz086', 0.00013599982401358727) + +[47711] +centroid = (0.66349216858669291, -1.5278043818220985) +station = ('kevv', 0.00031819580091217589) +zone = ('inz086', 0.00069583178453516963) + +[47712] +centroid = (0.66194154826605101, -1.5300521564591572) +station = ('kehr', 0.0019318361074405351) +zone = ('inz086', 0.0020465568048882348) + +[47713] +centroid = (0.66243153200025595, -1.5281958940799059) +station = ('kevv', 0.0014205467082624788) +zone = ('inz086', 0.0012895878145470535) + +[47714] +centroid = (0.66246788720857497, -1.5275346935460805) +station = ('kevv', 0.0013492104970188191) +zone = ('inz086', 0.0014920485932750395) + +[47715] +centroid = (0.6627438237633152, -1.5268081827916453) +station = ('kevv', 0.0012941770640963993) +zone = ('inz086', 0.0017267637979855473) + +[47720] +centroid = (0.66432287549747204, -1.5296340104769641) +station = ('kevv', 0.0015746246813995741) +zone = ('inz086', 0.0010090058163602607) + +[47725] +centroid = (0.66508090689819832, -1.5275983631571932) +station = ('kevv', 0.0012792251286385125) +zone = ('inz086', 0.0016407866117444856) + +[47802] +centroid = (0.68680374600741767, -1.5256231565894187) +station = ('khuf', 0.0021525026499686654) +zone = ('inz051', 0.0014207219062086231) + +[47803] +centroid = (0.68881324829499402, -1.5238002299988807) +station = ('khuf', 0.00030779592902819804) +zone = ('inz051', 0.0012748919268510779) + +[47804] +centroid = (0.6893668667337266, -1.5252424130130962) +station = ('khuf', 0.001292750374564215) +zone = ('inz051', 0.0011730708677576047) + +[47805] +centroid = (0.69021268819582793, -1.5241346525368553) +station = ('khuf', 0.001685491082596747) +zone = ('inz051', 0.0021926904422535426) + +[47807] +centroid = (0.68890472100109101, -1.5254657977040591) +station = ('khuf', 0.0012182904063009464) +zone = ('inz051', 0.00073140222367292819) + +[47809] +centroid = (0.68890325492451931, -1.5255941492172505) +station = ('khuf', 0.0013125793843738009) +zone = ('inz051', 0.00075944368130296841) + +[47832] +centroid = (0.69605269949934123, -1.5229469559808733) +station = ('kprg', 0.0063529127440919561) +zone = ('inz044', 0.0019985652215396524) + +[47833] +centroid = (0.68693731605507291, -1.518004270805688) +station = ('khuf', 0.0048729285044882466) +zone = ('inz052', 0.0019880584513749383) + +[47834] +centroid = (0.68985096870835216, -1.5205652447770168) +station = ('khuf', 0.0029353311743317845) +zone = ('inz052', 0.002318398922369019) + +[47836] +centroid = (0.69195505038809402, -1.5215619674062457) +station = ('khuf', 0.0038914338326843751) +zone = ('inz044', 0.0022550402330321047) + +[47837] +centroid = (0.69162553222531742, -1.5204419372653635) +station = ('khuf', 0.0041161174733379815) +zone = ('inz044', 0.0028342426128557061) + +[47838] +centroid = (0.68001122126462865, -1.525132911055826) +station = ('krsv', 0.0037304099737132789) +zone = ('inz060', 0.0022563329012145732) + +[47840] +centroid = (0.68780031155701393, -1.519422804608539) +station = ('khuf', 0.0035827426308120899) +zone = ('inz052', 0.00084273461528049912) + +[47841] +centroid = (0.68545579331951756, -1.5204305926252253) +station = ('khuf', 0.0041140873962104332) +zone = ('inz052', 0.0020783727793185825) + +[47842] +centroid = (0.69252193332914169, -1.5265277258341423) +station = ('kprg', 0.0027941726876655505) +zone = ('inz043', 0.0030581009051100063) + +[47846] +centroid = (0.68728688805095484, -1.5218153717603427) +station = ('khuf', 0.0020748648497310824) +zone = ('inz052', 0.0010781714998281836) + +[47847] +centroid = (0.69518808084119565, -1.5269158870597861) +station = ('kprg', 0.0033643241204938533) +zone = ('inz043', 0.00048913160683220034) + +[47848] +centroid = (0.6814121970552045, -1.5230087057298087) +station = ('krsv', 0.005277071336644879) +zone = ('inz060', 0.0022234773932336927) + +[47849] +centroid = (0.68408710612010348, -1.5282755683602596) +station = ('krsv', 0.0033418106228744124) +zone = ('inz060', 0.0027442632248350514) + +[47850] +centroid = (0.68507543371563029, -1.5260422799559927) +station = ('khuf', 0.0038124713533491381) +zone = ('inz060', 0.0028615628775360046) + +[47853] +centroid = (0.69007177031202205, -1.5197075376227092) +station = ('khuf', 0.0036270254971090374) +zone = ('inz052', 0.0026029243379896397) + +[47854] +centroid = (0.6946937337838609, -1.5254711209582776) +station = ('kprg', 0.0040024120492521261) +zone = ('inz043', 0.001205307634962397) + +[47855] +centroid = (0.68399151443697181, -1.5237439605837964) +station = ('khuf', 0.0045440455178188061) +zone = ('inz060', 0.0023122886295556498) + +[47857] +centroid = (0.68982669117845696, -1.5200266361698511) +station = ('khuf', 0.0033024129057800432) +zone = ('inz052', 0.0023166433129813962) + +[47858] +centroid = (0.68525415543103463, -1.5223562318422432) +station = ('khuf', 0.0035058468857700168) +zone = ('inz052', 0.0027120228866629745) + +[47859] +centroid = (0.69606941975357528, -1.5214418363938309) +station = ('kprg', 0.00738648442674708) +zone = ('inz044', 0.0019436624909363663) + +[47860] +centroid = (0.69327718965635721, -1.5242008005155061) +station = ('kprg', 0.0045731142349308869) +zone = ('inz044', 0.0018929383437623932) + +[47861] +centroid = (0.68196050969301103, -1.528391021890279) +station = ('krsv', 0.0014727441875035845) +zone = ('inz060', 0.002127116851216642) + +[47862] +centroid = (0.69406667189020432, -1.5244118631819497) +station = ('kprg', 0.0045458820286202479) +zone = ('inz044', 0.0018288376440914087) + +[47863] +centroid = (0.69096057923360021, -1.5263663177849178) +station = ('khuf', 0.0030548731562562294) +zone = ('inz051', 0.0028992877532379399) + +[47865] +centroid = (0.68104490996741485, -1.5252681566195632) +station = ('krsv', 0.0035036866845603622) +zone = ('inz060', 0.0012243159580726259) + +[47866] +centroid = (0.68578185573037509, -1.5240409807159008) +station = ('khuf', 0.0027511892140994528) +zone = ('inz051', 0.0025848572897210834) + +[47868] +centroid = (0.68782497305934465, -1.5166414479125607) +station = ('khuf', 0.0056995146377452682) +zone = ('inz053', 0.0018672181817257849) + +[47869] +centroid = (0.68545916180497379, -1.5271057265225252) +station = ('khuf', 0.003917587300598763) +zone = ('inz051', 0.0030906930524510802) + +[47871] +centroid = (0.68747960730696001, -1.5236702553294847) +station = ('khuf', 0.0010768511433889088) +zone = ('inz051', 0.0014096306831606073) + +[47872] +centroid = (0.69383017977655914, -1.52110875775938) +station = ('khuf', 0.0057362021725345233) +zone = ('inz044', 0.0007948350927548661) + +[47874] +centroid = (0.69164778517328029, -1.5231618583716713) +station = ('khuf', 0.003176115900357033) +zone = ('inz044', 0.002676271400120965) + +[47876] +centroid = (0.68965962826245608, -1.5264614556824443) +station = ('khuf', 0.0022334439811421566) +zone = ('inz051', 0.001741545228514708) + +[47879] +centroid = (0.68412878458264126, -1.525045766766274) +station = ('khuf', 0.0044825097673592404) +zone = ('inz060', 0.0019617145685154602) + +[47880] +centroid = (0.69114598556003948, -1.5257466560872899) +station = ('khuf', 0.002953484353038893) +zone = ('inz051', 0.0029776253608192129) + +[47881] +centroid = (0.68915948671200467, -1.5217947245152916) +station = ('khuf', 0.0017877125068729463) +zone = ('inz052', 0.0019257421445150139) + +[47882] +centroid = (0.68227215568424715, -1.5256072217333481) +station = ('krsv', 0.0034952584420909921) +zone = ('inz060', 6.7085496056390611e-05) + +[47884] +centroid = (0.69138294891258278, -1.5262737280680996) +station = ('kprg', 0.0033310491012052755) +zone = ('inz051', 0.0032867257893277142) + +[47885] +centroid = (0.68958681312606285, -1.5267626471514608) +station = ('khuf', 0.0024041991676458183) +zone = ('inz051', 0.0018210502510342778) + +[47901] +centroid = (0.70542330244012863, -1.5165101816995181) +station = ('klaf', 0.00080238813858875301) +zone = ('inz029', 0.00051270120663537738) + +[47904] +centroid = (0.7057872734023396, -1.5162882979917121) +station = ('klaf', 0.0010438779243916079) +zone = ('inz029', 0.00090257363105576683) + +[47905] +centroid = (0.7054623454554958, -1.5143531467302707) +station = ('klaf', 0.0024450555453398868) +zone = ('inz029', 0.0017880679153738099) + +[47906] +centroid = (0.70650367870040565, -1.5182486692608448) +station = ('klaf', 0.0012170215679503825) +zone = ('inz029', 0.0020308589678374989) + +[47907] +centroid = (0.70553893050307326, -1.5169612794979888) +station = ('klaf', 0.00047815144349432981) +zone = ('inz029', 0.00068644316083332334) + +[47909] +centroid = (0.70379639377788217, -1.5166265777073338) +station = ('klaf', 0.0017589583925827295) +zone = ('inz029', 0.0011180401293513658) + +[47916] +centroid = (0.6978462696518607, -1.5194038852394471) +station = ('klaf', 0.007687206949189257) +zone = ('inz036', 0.0023829282900993403) + +[47917] +centroid = (0.70627956097115718, -1.5266992916996134) +station = ('kdnv', 0.0049416746715264656) +zone = ('inz028', 0.0026326193901557056) + +[47918] +centroid = (0.70334461530100345, -1.521892288420478) +station = ('klaf', 0.0038884515915418283) +zone = ('inz028', 0.0022312645681379657) + +[47920] +centroid = (0.70756972580752386, -1.5155368290289735) +station = ('klaf', 0.0026585547641364473) +zone = ('inz029', 0.0027735119135550053) + +[47921] +centroid = (0.7064595567769153, -1.5249879963680331) +station = ('kdnv', 0.005663243275900399) +zone = ('inz028', 0.0022921599544549567) + +[47922] +centroid = (0.71343712132700088, -1.5245263044210029) +station = ('krzl', 0.0024535304929183595) +zone = ('inz010', 0.001519818869709781) + +[47923] +centroid = (0.70878520800519773, -1.5173893040437478) +station = ('klaf', 0.003383902914431925) +zone = ('inz020', 0.0026273323860041618) + +[47924] +centroid = (0.70664794761637562, -1.5142973311007919) +station = ('klaf', 0.0027795361044782559) +zone = ('inz029', 0.0024589360393050749) + +[47925] +centroid = (0.71346059600544021, -1.5140452531969264) +station = ('kggp', 0.0057567107010286422) +zone = ('inz020', 0.0027219472633220904) + +[47926] +centroid = (0.71175197102761523, -1.5113768716634299) +station = ('kggp', 0.0031836487335670551) +zone = ('inz022', 0.0033144885546902195) + +[47928] +centroid = (0.69675877244823559, -1.5266798661850387) +station = ('kprg', 0.0046787360125753064) +zone = ('inz043', 0.0011839885669247333) + +[47929] +centroid = (0.7098281818596045, -1.516913823995627) +station = ('klaf', 0.0044517599294899681) +zone = ('inz020', 0.0015262826544142293) + +[47930] +centroid = (0.70226964956140769, -1.5139396956837661) +station = ('klaf', 0.00417816168036676) +zone = ('inz029', 0.0033273482324975962) + +[47932] +centroid = (0.70047616667535073, -1.5256837718743403) +station = ('kdnv', 0.0026599206152560116) +zone = ('inz035', 0.0023250731277474879) + +[47933] +centroid = (0.69881086076956034, -1.5166361246583422) +station = ('klaf', 0.0066309774131200223) +zone = ('inz036', 5.4059773994066523e-05) + +[47940] +centroid = (0.70018380657234913, -1.5140143957757513) +station = ('klaf', 0.0058808500977572658) +zone = ('inz036', 0.0023771115647684324) + +[47941] +centroid = (0.70469649497972064, -1.514491656059709) +station = ('klaf', 0.0024442743747775464) +zone = ('inz029', 0.001611725626377283) + +[47942] +centroid = (0.71010963365478108, -1.5261909994615552) +station = ('krzl', 0.0056980044118116104) +zone = ('inz019', 0.0022516003862716916) + +[47943] +centroid = (0.7166912353574667, -1.5232090346213527) +station = ('krzl', 0.0022636419074109921) +zone = ('inz010', 0.002487641571147997) + +[47944] +centroid = (0.70888326060257478, -1.52419792072224) +station = ('krzl', 0.0061160757571654522) +zone = ('inz019', 0.00030584793806376673) + +[47946] +centroid = (0.71526626128967596, -1.5161400322717553) +station = ('krzl', 0.0042740773966924682) +zone = ('inz013', 0.0024672052997034961) + +[47948] +centroid = (0.71169317088511552, -1.5233536526031728) +station = ('krzl', 0.0032529159364336154) +zone = ('inz019', 0.0030044325210427216) + +[47949] +centroid = (0.69918832312688928, -1.5208332924435379) +station = ('klaf', 0.0066979471581961117) +zone = ('inz035', 0.0017490992541014693) + +[47950] +centroid = (0.71213693830072766, -1.5124125674948561) +station = ('kggp', 0.0040555186203215616) +zone = ('inz020', 0.0029299064031514921) + +[47951] +centroid = (0.71191156393441757, -1.5261933382027526) +station = ('krzl', 0.0043727667511560039) +zone = ('inz010', 0.0029690780007361989) + +[47952] +centroid = (0.69742721609845693, -1.5236568162942443) +station = ('kdnv', 0.0057611584608963833) +zone = ('inz043', 0.0028785121204640478) + +[47954] +centroid = (0.69638572577391422, -1.515268676642697) +station = ('ktyq', 0.0079361683785934851) +zone = ('inz036', 0.0026474244238116336) + +[47955] +centroid = (0.70155832317146483, -1.5160255386728243) +station = ('klaf', 0.0040205184259526298) +zone = ('inz036', 0.0027536594616526049) + +[47957] +centroid = (0.71708852465509809, -1.5162500927343858) +station = ('koxi', 0.0051052602916220732) +zone = ('inz013', 0.0024392891546809441) + +[47958] +centroid = (0.70099786304206446, -1.520921780636614) +station = ('klaf', 0.0050964640530245858) +zone = ('inz035', 0.0015277450593252056) + +[47959] +centroid = (0.71318635242007433, -1.51670419249917) +station = ('krzl', 0.0041093099947580036) +zone = ('inz020', 0.0020211175006357111) + +[47960] +centroid = (0.71172807747015543, -1.5140909982766213) +station = ('kggp', 0.0051404325427108636) +zone = ('inz020', 0.0015950593737827366) + +[47963] +centroid = (0.71531015632036365, -1.5259752942193012) +station = ('krzl', 0.0032440750806715653) +zone = ('inz010', 0.00067149995126425388) + +[47964] +centroid = (0.71474932967182025, -1.5236487354198076) +station = ('krzl', 0.0014325904456326079) +zone = ('inz010', 0.0013047512111427409) + +[47965] +centroid = (0.69733677313661846, -1.5170447935026965) +station = ('klaf', 0.0080768702310951446) +zone = ('inz036', 0.0015427566953939609) + +[47966] +centroid = (0.69613888385780476, -1.5253651271128039) +station = ('kprg', 0.0048851067375285323) +zone = ('inz043', 0.0010574502689733242) + +[47967] +centroid = (0.70156443182384676, -1.5184649504617518) +station = ('klaf', 0.0039004916784968141) +zone = ('inz036', 0.0030871518003774022) + +[47968] +centroid = (0.69742515660993953, -1.5140723756135024) +station = ('ktyq', 0.0067971685066182726) +zone = ('inz036', 0.0023802800514645989) + +[47969] +centroid = (0.70172213977505704, -1.5210322948848503) +station = ('klaf', 0.0045332978820462775) +zone = ('inz035', 0.0019327854270260651) + +[47970] +centroid = (0.70619721633704802, -1.5209332125432149) +station = ('klaf', 0.00268434774711028) +zone = ('inz019', 0.0033599706081717108) + +[47971] +centroid = (0.707417166577607, -1.5225191757812095) +station = ('klaf', 0.00427348760459353) +zone = ('inz019', 0.0016499547769621521) + +[47974] +centroid = (0.69888081356598031, -1.5268203651898242) +station = ('kdnv', 0.0031347339233782209) +zone = ('inz043', 0.003308037166386744) + +[47975] +centroid = (0.70597053297379897, -1.5228566351920825) +station = ('klaf', 0.004068387790627034) +zone = ('inz028', 0.0022252774719635623) + +[47977] +centroid = (0.71132480169318968, -1.5213086852251962) +station = ('krzl', 0.0034041253752900773) +zone = ('inz019', 0.0032510714732218609) + +[47978] +centroid = (0.71534366664200189, -1.5204083047706773) +station = ('krzl', 0.0011953502681007189) +zone = ('inz011', 0.00064415099065601763) + +[47980] +centroid = (0.71125018886766689, -1.51664525273033) +station = ('krzl', 0.0051875907906380591) +zone = ('inz020', 0.00042381095587100225) + +[47981] +centroid = (0.70240819379743091, -1.5172219269684815) +station = ('klaf', 0.0030070261805477897) +zone = ('inz029', 0.0025520269827821866) + +[47982] +centroid = (0.70157607316995751, -1.5276355386702607) +station = ('kdnv', 0.00091373200453310002) +zone = ('ilz046', 0.0027547376537562797) + +[47983] +centroid = (0.70300345579211609, -1.5143748586261656) +station = ('klaf', 0.0034159680069056394) +zone = ('inz029', 0.0025488954888344293) + +[47987] +centroid = (0.7003264174255297, -1.5225028744059959) +station = ('klaf', 0.00632315711100165) +zone = ('inz035', 0.0001459538108478583) + +[47989] +centroid = (0.69621786000645747, -1.5192923587002447) +station = ('khuf', 0.0084848743068879871) +zone = ('inz044', 0.0029315992377684842) + +[47990] +centroid = (0.69921102986045769, -1.5193838314063417) +station = ('klaf', 0.0063468070113946243) +zone = ('inz035', 0.0027088827840494774) + +[47991] +centroid = (0.70309618513527461, -1.5265186326687394) +station = ('kdnv', 0.0023056375819038104) +zone = ('inz028', 0.0018227502110072531) + +[47992] +centroid = (0.70370581118970366, -1.5192916431152512) +station = ('klaf', 0.0021486226013822129) +zone = ('inz029', 0.0023883801272963638) + +[47993] +centroid = (0.70351218436248741, -1.5255822286184595) +station = ('kdnv', 0.0031233279811505388) +zone = ('inz028', 0.0010059823748758663) + +[47994] +centroid = (0.70108565310343973, -1.5195207699394533) +station = ('klaf', 0.0045689615178033409) +zone = ('inz035', 0.0025425660352809951) + +[47995] +centroid = (0.71141695507769498, -1.5189619504195495) +station = ('krzl', 0.0039133880215516765) +zone = ('inz020', 0.0021864965258910772) + +[47997] +centroid = (0.70978519440012788, -1.5136122893693844) +station = ('kggp', 0.0047057216709241014) +zone = ('inz020', 0.0023618167402103987) + +[48001] +centroid = (0.74419666443780874, -1.4413232126660245) +station = ('kmtc', 0.003255002834300311) +zone = ('miz063', 0.0054449449123051656) + +[48002] +centroid = (0.74938125224732044, -1.4471767502712405) +station = ('kmtc', 0.0056824007427737251) +zone = ('miz063', 0.0030060481417313158) + +[48003] +centroid = (0.74926972570811812, -1.4493149880444438) +station = ('kd95', 0.0037997201937119201) +zone = ('miz062', 0.0036350825358502357) + +[48005] +centroid = (0.74788653482261991, -1.4472938269574644) +station = ('kmtc', 0.0042469088319060109) +zone = ('miz070', 0.0027098622169028845) + +[48006] +centroid = (0.7519405332492749, -1.4432308226318693) +station = ('kphn', 0.0035329642767860927) +zone = ('miz063', 0.0024552281714635697) + +[48009] +centroid = (0.74253371472650842, -1.4524220406321366) +station = ('kvll', 0.00051323368458342509) +zone = ('miz069', 0.0029620090761258181) + +[48014] +centroid = (0.75094045958788214, -1.4474286536421808) +station = ('kd95', 0.004394480484957471) +zone = ('miz062', 0.0038681720040590973) + +[48015] +centroid = (0.74142454053357365, -1.4490971185939174) +station = ('kdet', 0.0011221988836656971) +zone = ('miz070', 0.003947532016626668) + +[48017] +centroid = (0.74240538066660944, -1.4512475736718848) +station = ('kvll', 0.00036820957425323734) +zone = ('miz069', 0.0037131947146395003) + +[48021] +centroid = (0.74117291641531358, -1.4476867529319659) +station = ('kdet', 0.0012506950004286586) +zone = ('miz070', 0.0040099997156336385) + +[48022] +centroid = (0.75089991558935831, -1.4451745783665226) +station = ('kphn', 0.0039086614131411098) +zone = ('miz063', 0.002087304078338) + +[48023] +centroid = (0.7452733929599491, -1.4426489996724243) +station = ('kmtc', 0.0026924626049996689) +zone = ('miz063', 0.0042260864636732252) + +[48025] +centroid = (0.74212022877341854, -1.453245329893595) +station = ('kvll', 0.0011859567736211337) +zone = ('miz069', 0.0028945694743500255) + +[48026] +centroid = (0.74242175185499304, -1.4476937517022663) +station = ('kmtc', 0.0020067720960060824) +zone = ('miz070', 0.0027633635653415986) + +[48027] +centroid = (0.74951923797798314, -1.4432832872291841) +station = ('kphn', 0.0021095048176208446) +zone = ('miz063', 0.00015697593178197938) + +[48028] +centroid = (0.74316484323732224, -1.4419320358689975) +station = ('kmtc', 0.0028560384665105923) +zone = ('miz070', 0.0045247954682085621) + +[48030] +centroid = (0.74110038053160077, -1.4503282738482743) +station = ('kdet', 0.0013088264350371102) +zone = ('miz076', 0.003945909004973408) + +[48032] +centroid = (0.75281640928109572, -1.4415887645117154) +station = ('kphn', 0.003865462947079071) +zone = ('miz063', 0.0035007543796940414) + +[48033] +centroid = (0.74105496706446383, -1.4537406717886034) +station = ('kvll', 0.0020803085300379032) +zone = ('miz076', 0.0030611672793529996) + +[48034] +centroid = (0.74171168210211169, -1.4537035486354135) +station = ('kvll', 0.0016625319473783961) +zone = ('miz069', 0.0031001241755733706) + +[48035] +centroid = (0.74275278845421888, -1.4470104029402331) +station = ('kmtc', 0.0014175826900366117) +zone = ('miz070', 0.0024465082064860514) + +[48036] +centroid = (0.74345868687018801, -1.4471073559801815) +station = ('kmtc', 0.0010809245973265756) +zone = ('miz070', 0.0017374184091966368) + +[48038] +centroid = (0.74361782599138482, -1.447533984262539) +station = ('kmtc', 0.001351637203962695) +zone = ('miz070', 0.0015625016769660342) + +[48039] +centroid = (0.74513179439773469, -1.4407078270250637) +station = ('kphn', 0.0039089684038470839) +zone = ('miz063', 0.0046890138787685351) + +[48040] +centroid = (0.74892624491132553, -1.4395580913803125) +station = ('kphn', 0.00068308608824756676) +zone = ('miz063', 0.0026344078827367223) + +[48041] +centroid = (0.74940641989513412, -1.4452423669546701) +station = ('kphn', 0.0035077517212367365) +zone = ('miz063', 0.0015901167601307528) + +[48042] +centroid = (0.74497036889521784, -1.4470171399111456) +station = ('kmtc', 0.0015116774152023847) +zone = ('miz070', 0.00037419913936322113) + +[48043] +centroid = (0.74347631469563313, -1.4465551687114353) +station = ('kmtc', 0.00069889301857012592) +zone = ('miz070', 0.0018226280895782892) + +[48044] +centroid = (0.74438687041969109, -1.4473824373235882) +station = ('kmtc', 0.0013597941207693592) +zone = ('miz070', 0.00079305365659080489) + +[48045] +centroid = (0.74327305365094587, -1.4454487521387185) +station = ('kmtc', 0.00056313361426672522) +zone = ('miz070', 0.0024036088483607885) + +[48047] +centroid = (0.74480599378626489, -1.4446760774255683) +station = ('kmtc', 0.0012621489996263104) +zone = ('miz070', 0.0020656203203952899) + +[48048] +centroid = (0.74605402637448859, -1.4450605385531974) +station = ('kmtc', 0.0023035847313845159) +zone = ('miz070', 0.0019549440813784185) + +[48049] +centroid = (0.75121723390066331, -1.4411219762032694) +station = ('kphn', 0.0022303601367835201) +zone = ('miz063', 0.0022421002254855403) + +[48050] +centroid = (0.74678339946889705, -1.4451233180463918) +station = ('kmtc', 0.0030137183322300502) +zone = ('miz070', 0.0023386864995736177) + +[48051] +centroid = (0.74514460511444436, -1.4454991572475162) +station = ('kmtc', 0.0013527493433583299) +zone = ('miz070', 0.0014268471003242927) + +[48054] +centroid = (0.74648356935669691, -1.4404023594993798) +station = ('kphn', 0.0025541766912671616) +zone = ('miz063', 0.003586056912510429) + +[48059] +centroid = (0.75202083584815915, -1.4398054045353201) +station = ('cyzr', 0.0027385758903594026) +zone = ('miz063', 0.0034819285175707194) + +[48060] +centroid = (0.75014928438466055, -1.4392161988331396) +station = ('kphn', 0.0014458399666683658) +zone = ('miz063', 0.0028989777579958224) + +[48062] +centroid = (0.74791713044440744, -1.4450710279820018) +station = ('kmtc', 0.0041430192505154543) +zone = ('miz063', 0.0021470466880951743) + +[48063] +centroid = (0.74803645860536638, -1.4430925227419411) +station = ('kphn', 0.0021609760826936438) +zone = ('miz063', 0.0014516249284406899) + +[48064] +centroid = (0.74638337000433996, -1.4428074406619205) +station = ('kphn', 0.0031557737549658795) +zone = ('miz063', 0.003110747903485582) + +[48065] +centroid = (0.74778972140901179, -1.4493090190184019) +station = ('kmtc', 0.0047833572576864792) +zone = ('miz070', 0.0029494829911484075) + +[48066] +centroid = (0.74189733277464642, -1.4475164262502638) +station = ('kdet', 0.0018924401052426933) +zone = ('miz070', 0.0032819461947064857) + +[48067] +centroid = (0.74160013810961678, -1.4510235257558062) +station = ('kvll', 0.0010482487012341162) +zone = ('miz076', 0.0040847317088526999) + +[48069] +centroid = (0.74126445893458071, -1.4511423477712821) +station = ('kvll', 0.0013192448569073149) +zone = ('miz076', 0.003748204061050859) + +[48070] +centroid = (0.74144901004968655, -1.4515569681883858) +station = ('kvll', 0.0010698231841628713) +zone = ('miz076', 0.0037762988670721098) + +[48071] +centroid = (0.74189174772103994, -1.4504274260030801) +station = ('kvll', 0.0011402498481498341) +zone = ('miz070', 0.0039547920557701528) + +[48072] +centroid = (0.74172831508988324, -1.4518671306497575) +station = ('kvll', 0.00079009867928646945) +zone = ('miz069', 0.0038244544620213423) + +[48073] +centroid = (0.74210012258043556, -1.4514919372204564) +station = ('kvll', 0.00044614032688990109) +zone = ('miz069', 0.0037612413746425846) + +[48074] +centroid = (0.74962280581579654, -1.4409709703163869) +station = ('kphn', 0.00068779277115458344) +zone = ('miz063', 0.0015446575950024961) + +[48075] +centroid = (0.74110282399255345, -1.4526444828453033) +station = ('kvll', 0.0015629910772547054) +zone = ('miz076', 0.0031908803101825972) + +[48076] +centroid = (0.74172159557226303, -1.4526527906125428) +station = ('kvll', 0.0010442860179579209) +zone = ('miz069', 0.0034685327318526955) + +[48079] +centroid = (0.74802802866507923, -1.4407414420664573) +station = ('kphn', 0.001027346898182097) +zone = ('miz063', 0.0022469913661437068) + +[48080] +centroid = (0.74114401376290062, -1.4468111910594104) +station = ('kdet', 0.0017616210406852274) +zone = ('miz070', 0.0040612573979786669) + +[48081] +centroid = (0.74167188859516631, -1.4467913641191077) +station = ('kdet', 0.0020751858258041722) +zone = ('miz070', 0.0035392604009200474) + +[48082] +centroid = (0.74225400826058396, -1.4466544604925815) +station = ('kmtc', 0.0016949644138765354) +zone = ('miz070', 0.0029813695113453898) + +[48083] +centroid = (0.74276013629036974, -1.4506628534658816) +station = ('kvll', 0.00082177392014575888) +zone = ('miz070', 0.0033872264598173813) + +[48084] +centroid = (0.7428231775829518, -1.4516899273708028) +station = ('kvll', 0.00031276878734301083) +zone = ('miz069', 0.0032084454590926344) + +[48085] +centroid = (0.74358063302502475, -1.4507545181581964) +station = ('kvll', 0.0012864103730481022) +zone = ('miz070', 0.002915038964282207) + +[48088] +centroid = (0.74203798885906458, -1.4483264161028218) +station = ('kdet', 0.0017810759621352409) +zone = ('miz070', 0.0032078630059252755) + +[48089] +centroid = (0.7412081022530338, -1.4485160635793437) +station = ('kdet', 0.0009444651522407877) +zone = ('miz070', 0.0040489798319257005) + +[48091] +centroid = (0.7412093588900952, -1.4496353257753549) +station = ('kdet', 0.0010445966681028207) +zone = ('miz070', 0.0042859578734662437) + +[48092] +centroid = (0.7420021747028136, -1.4496519413098339) +station = ('kdet', 0.00177707579675886) +zone = ('miz070', 0.0035695518626419204) + +[48093] +centroid = (0.74204226491573189, -1.4489109617758997) +station = ('kdet', 0.0017317754759147486) +zone = ('miz070', 0.0033181450839223363) + +[48094] +centroid = (0.74589790667289757, -1.4492776205451587) +station = ('kmtc', 0.0033554318676439756) +zone = ('miz070', 0.0015297416304096295) + +[48095] +centroid = (0.74662979304142896, -1.4494622589267272) +station = ('kmtc', 0.003948196258400225) +zone = ('miz070', 0.0020764434601651823) + +[48096] +centroid = (0.7463403301849858, -1.4472352188011823) +station = ('kmtc', 0.00277435709371279) +zone = ('miz070', 0.0011712291089982492) + +[48097] +centroid = (0.75261995502049117, -1.4456111375723242) +station = ('kphn', 0.0051883495717264649) +zone = ('miz063', 0.0036401692578013193) + +[48098] +centroid = (0.74348291204020567, -1.4517378192054773) +station = ('kvll', 0.00097140530093403632) +zone = ('miz069', 0.0028703333379844014) + +[48101] +centroid = (0.73756694400764566, -1.4522952773685645) +station = ('kdtw', 0.0016526446695784632) +zone = ('miz076', 0.0010721147482153331) + +[48103] +centroid = (0.73759980855746066, -1.4633964091692895) +station = ('karb', 0.0014700968463325864) +zone = ('miz075', 0.00017261605355319956) + +[48104] +centroid = (0.73764396538753618, -1.4611122269640342) +station = ('karb', 0.00093657910339648841) +zone = ('miz075', 0.001598533548011346) + +[48105] +centroid = (0.73875779960957388, -1.460767576796643) +station = ('karb', 0.0020604309735368686) +zone = ('miz075', 0.0022528669758673688) + +[48108] +centroid = (0.73690757606953472, -1.4614037144024097) +station = ('karb', 0.00024545360499033346) +zone = ('miz075', 0.0014800865320983279) + +[48109] +centroid = (0.73808555114158325, -1.460993823827579) +station = ('karb', 0.0013731739129374328) +zone = ('miz075', 0.0017879645727493674) + +[48111] +centroid = (0.73613296404091455, -1.4571482351669047) +station = ('kyip', 0.0011370182602963388) +zone = ('miz076', 0.0032059494838646251) + +[48114] +centroid = (0.74299455146220517, -1.4616718842419787) +station = ('kozw', 0.0032085493148109657) +zone = ('miz068', 0.0021810171275028285) + +[48116] +centroid = (0.74186518380982458, -1.462287322242817) +station = ('kozw', 0.0033696741351400572) +zone = ('miz068', 0.0023696577798563811) + +[48117] +centroid = (0.73391547086637821, -1.4557824103074641) +station = ('kttf', 0.0019505193274041849) +zone = ('miz083', 0.0026801652626085273) + +[48118] +centroid = (0.73848797170721558, -1.4666703326867652) +station = ('karb', 0.0040299415689719117) +zone = ('miz075', 0.0027255558965394696) + +[48120] +centroid = (0.73838470057537509, -1.4516987412835252) +station = ('kdtw', 0.0023960240926842371) +zone = ('miz076', 0.001476191454146591) + +[48122] +centroid = (0.73789967357624586, -1.4518100583832174) +station = ('kdtw', 0.0021010706991986751) +zone = ('miz076', 0.001345169182140864) + +[48124] +centroid = (0.73823999532709228, -1.4529448889161567) +station = ('kdtw', 0.0015815068245194311) +zone = ('miz076', 0.00055867647942750131) + +[48125] +centroid = (0.7378786772653444, -1.4532454695199351) +station = ('kdtw', 0.0011716756109101853) +zone = ('miz076', 0.00030302274112178299) + +[48126] +centroid = (0.73872439400769074, -1.4518209492377498) +station = ('kdtw', 0.0025222695507055083) +zone = ('miz076', 0.0015196978423945755) + +[48127] +centroid = (0.73889897929276782, -1.4535677271130234) +station = ('kdtw', 0.0019013944039421768) +zone = ('miz076', 0.00090490380649441658) + +[48128] +centroid = (0.73863051274722591, -1.4531605941584107) +station = ('kdtw', 0.0017909071916549306) +zone = ('miz076', 0.00072190033642295843) + +[48130] +centroid = (0.73939374522912304, -1.4644946052412293) +station = ('karb', 0.0032951916321432946) +zone = ('miz075', 0.0021382695335569178) + +[48131] +centroid = (0.73244354744170881, -1.4603413848465983) +station = ('kttf', 0.0031051697249357274) +zone = ('miz083', 0.001854980515563599) + +[48133] +centroid = (0.72924011777272091, -1.4571060680121766) +station = ('kttf', 0.0028306529937526504) +zone = ('miz083', 0.0026477396418918549) + +[48134] +centroid = (0.73489809123525096, -1.4537921939081222) +station = ('konz', 0.0017542552436696994) +zone = ('miz076', 0.0030994460362392942) + +[48135] +centroid = (0.73869985467840771, -1.4545785520026084) +station = ('kdtw', 0.0015923873899558176) +zone = ('miz076', 0.00099777324964614098) + +[48137] +centroid = (0.74110495329424098, -1.467385743147158) +station = ('kozw', 0.0031442426810742588) +zone = ('miz068', 0.0032345729820713984) + +[48138] +centroid = (0.73537664306285533, -1.4513097073932557) +station = ('konz', 0.00062424824105663482) +zone = ('miz076', 0.0031294511366185035) + +[48139] +centroid = (0.74093506294485179, -1.4626915055909937) +station = ('kozw', 0.0038456296272458318) +zone = ('miz068', 0.0029569684662729351) + +[48140] +centroid = (0.73098200872608876, -1.4587550376361682) +station = ('kttf', 0.0021456095601632571) +zone = ('miz083', 0.00099415631852258694) + +[48141] +centroid = (0.73817049631627785, -1.4542060114737703) +station = ('kdtw', 0.0010739545264600021) +zone = ('miz076', 0.00046517578650112239) + +[48143] +centroid = (0.74106641642435689, -1.4634929433302171) +station = ('kozw', 0.0034114357035200152) +zone = ('miz068', 0.0026109889848646966) + +[48144] +centroid = (0.72871760110125883, -1.4595955707506361) +station = ('kduh', 0.00045181139304399377) +zone = ('ohz003', 0.0023442623019557024) + +[48145] +centroid = (0.73031988316775975, -1.4566512701156917) +station = ('kttf', 0.0017030935981422507) +zone = ('miz083', 0.0017910910395698087) + +[48146] +centroid = (0.73728451482808788, -1.4517868280508734) +station = ('konz', 0.0025385528987095425) +zone = ('miz076', 0.0015338378599712734) + +[48150] +centroid = (0.73952399915119937, -1.4551994703372979) +station = ('kdtw', 0.0024776116004531956) +zone = ('miz076', 0.0019222456477859938) + +[48152] +centroid = (0.74045480069458047, -1.4551554182269775) +station = ('kvll', 0.0032597752547115534) +zone = ('miz076', 0.0027077404653410046) + +[48154] +centroid = (0.73997043692056697, -1.4551214715730263) +station = ('kdtw', 0.0029036407701169878) +zone = ('miz076', 0.0022645061064347641) + +[48157] +centroid = (0.72980286428344143, -1.4562715737369205) +station = ('kttf', 0.0021886947044151357) +zone = ('miz083', 0.0023784884594433009) + +[48158] +centroid = (0.73575801495770865, -1.4665902918872686) +station = ('karb', 0.0037664877212374875) +zone = ('miz075', 0.0029989094147593667) + +[48159] +centroid = (0.73337267346900803, -1.4581869155113516) +station = ('kttf', 0.0020167245390824624) +zone = ('miz083', 0.0015761571997494955) + +[48160] +centroid = (0.73440250499414728, -1.4604037454607721) +station = ('karb', 0.0026050151005101961) +zone = ('miz083', 0.0031539925739730822) + +[48161] +centroid = (0.73141855047859761, -1.4568692093793885) +station = ('kttf', 0.00075360375922276423) +zone = ('miz083', 0.0009255517860092111) + +[48162] +centroid = (0.73234757178614163, -1.456116379059833) +station = ('kttf', 0.00036330746250349936) +zone = ('miz083', 0.001503926349531282) + +[48164] +centroid = (0.7352124599401203, -1.4553753646193139) +station = ('kdtw', 0.0020205899394293591) +zone = ('miz076', 0.0030702421543907401) + +[48165] +centroid = (0.74179224650038378, -1.4593905992832821) +station = ('kptk', 0.0038633921480388817) +zone = ('miz069', 0.0040657177685860645) + +[48166] +centroid = (0.73273817647273798, -1.453767008807016) +station = ('kttf', 0.0019646428160843537) +zone = ('miz083', 0.0032846536330692431) + +[48167] +centroid = (0.74058360599337769, -1.457780288702222) +station = ('kyip', 0.0034746885413786039) +zone = ('miz076', 0.0040168527496572629) + +[48168] +centroid = (0.74011144207083568, -1.4580567488557379) +station = ('kyip', 0.0030021454460509634) +zone = ('miz076', 0.0039006275791913293) + +[48169] +centroid = (0.74110957841675873, -1.465164410248267) +station = ('kozw', 0.0029519880956652236) +zone = ('miz068', 0.002496922463658879) + +[48170] +centroid = (0.73945566951098385, -1.4579486780684543) +station = ('kyip', 0.0023449823674405114) +zone = ('miz076', 0.0035154252787543282) + +[48173] +centroid = (0.73432422697719524, -1.4523368860179318) +station = ('konz', 0.00079821704402309804) +zone = ('miz076', 0.0037926240635961549) + +[48174] +centroid = (0.73712755736845614, -1.4555055312749277) +station = ('kdtw', 0.00078833520900184733) +zone = ('miz076', 0.0016408506878563887) + +[48176] +centroid = (0.73542652457287738, -1.4630964219774565) +station = ('karb', 0.0017297426592055836) +zone = ('miz075', 0.0020379384872058364) + +[48177] +centroid = (0.72961665510554619, -1.4587623505657341) +station = ('kduh', 0.0015330758463065479) +zone = ('miz083', 0.0022582833908062795) + +[48178] +centroid = (0.74078349855260861, -1.4600878583194539) +station = ('kyip', 0.0040036773910170423) +zone = ('miz075', 0.0040654814810716427) + +[48179] +centroid = (0.73365075677872826, -1.453081722729513) +station = ('konz', 0.0016501810986194381) +zone = ('miz083', 0.004097221389179076) + +[48180] +centroid = (0.73696984941724586, -1.4533061371647344) +station = ('kdtw', 0.0008520793199089002) +zone = ('miz076', 0.0010517633297879394) + +[48182] +centroid = (0.72937061604089248, -1.45881336653977) +station = ('kduh', 0.0013243067625161029) +zone = ('miz083', 0.0025061204600585144) + +[48183] +centroid = (0.73533267821899762, -1.452424466639797) +station = ('konz', 0.00093123405038645539) +zone = ('miz076', 0.0028066091651198816) + +[48184] +centroid = (0.73782884811519989, -1.455528203101911) +station = ('kdtw', 0.0010785293622090492) +zone = ('miz076', 0.0014188970036258881) + +[48185] +centroid = (0.73886595766331997, -1.4553289912210885) +station = ('kdtw', 0.001874141477897761) +zone = ('miz076', 0.0015326511155646654) + +[48186] +centroid = (0.73816543486144703, -1.4550938953708448) +station = ('kdtw', 0.0011601098288965895) +zone = ('miz076', 0.0011009025729013992) + +[48187] +centroid = (0.73872060664321393, -1.4570632725389177) +station = ('kyip', 0.001733370418498761) +zone = ('miz076', 0.002645315825932879) + +[48188] +centroid = (0.73798957548601607, -1.457048315067228) +station = ('kyip', 0.0010953784309377255) +zone = ('miz076', 0.0025336457505443777) + +[48189] +centroid = (0.74023490666212177, -1.4622866590177013) +station = ('karb', 0.0034412961074072939) +zone = ('miz075', 0.0028653618691336031) + +[48190] +centroid = (0.73533402212252164, -1.4589871664266834) +station = ('kyip', 0.0019412248823350851) +zone = ('miz083', 0.0036066108720007751) + +[48191] +centroid = (0.73516111235352655, -1.4585819533342479) +station = ('kyip', 0.0020082783447434075) +zone = ('miz083', 0.0033861394417450692) + +[48192] +centroid = (0.73667651192986316, -1.4514419509906793) +station = ('konz', 0.0019171440599442368) +zone = ('miz076', 0.0020848930766045491) + +[48193] +centroid = (0.73606262727205918, -1.4522856256978007) +station = ('konz', 0.0014478165895033439) +zone = ('miz076', 0.0021715791289593821) + +[48195] +centroid = (0.73661577447189375, -1.4522275760468797) +station = ('konz', 0.0019471291544980735) +zone = ('miz076', 0.0017234897312400255) + +[48197] +centroid = (0.73642481799843307, -1.4597931071153769) +station = ('karb', 0.001476162704238154) +zone = ('miz075', 0.0027670583311539994) + +[48198] +centroid = (0.73783925027754182, -1.4588568426914372) +station = ('kyip', 0.00099982596646404636) +zone = ('miz076', 0.0038750216500225438) + +[48201] +centroid = (0.73909494486118166, -1.449673688112314) +station = ('kdet', 0.0013387725801559541) +zone = ('miz076', 0.0031210345159744827) + +[48202] +centroid = (0.73957953552799793, -1.4499797141433586) +station = ('kdet', 0.0010740236621275764) +zone = ('miz076', 0.0031253507960220198) + +[48203] +centroid = (0.74038151431928922, -1.4504443207902393) +station = ('kdet', 0.0011318436389067719) +zone = ('miz076', 0.0033490041777879415) + +[48204] +centroid = (0.73942290968092383, -1.4511179655216315) +station = ('kdet', 0.0018539123808907552) +zone = ('miz076', 0.0023389728697985925) + +[48205] +centroid = (0.74059828421238694, -1.4482941449649525) +station = ('kdet', 0.00054064143377312356) +zone = ('miz070', 0.0046235154245902214) + +[48206] +centroid = (0.7395854172875771, -1.4505064370583178) +station = ('kdet', 0.0013814721634598183) +zone = ('miz076', 0.0028000158858178179) + +[48207] +centroid = (0.73914089938038663, -1.4489541935814718) +station = ('kdet', 0.0011699652997284866) +zone = ('miz076', 0.0036379261986847987) + +[48208] +centroid = (0.73912060120118606, -1.4502278825096995) +station = ('kdet', 0.0015354128894162797) +zone = ('miz076', 0.0027517035503250428) + +[48209] +centroid = (0.73839161207921289, -1.4506629232790516) +station = ('cyqg', 0.0020614607741595938) +zone = ('miz076', 0.0022256245303706344) + +[48210] +centroid = (0.73890629222233362, -1.4508630776376703) +station = ('kdet', 0.0020111132615724375) +zone = ('miz076', 0.0022356286835073865) + +[48211] +centroid = (0.7396940465802212, -1.449421470582108) +station = ('kdet', 0.00072135215892575599) +zone = ('miz076', 0.0035407187467957719) + +[48212] +centroid = (0.74018926630218207, -1.4496075401336632) +station = ('kdet', 0.00052607470980024578) +zone = ('miz076', 0.0036912141915538079) + +[48213] +centroid = (0.73998349198337199, -1.4485397302440006) +station = ('kdet', 0.00042821217626094808) +zone = ('miz076', 0.0042514547261359613) + +[48214] +centroid = (0.73941076218933, -1.4484076262729171) +station = ('kdet', 0.00097440853136470187) +zone = ('miz076', 0.0041080803931223975) + +[48215] +centroid = (0.73958416065051569, -1.4478264316320031) +station = ('kdet', 0.0010829784082432524) +zone = ('miz076', 0.0045709215581740594) + +[48216] +centroid = (0.73873650659269963, -1.449997656128069) +station = ('kdet', 0.0017658367665112811) +zone = ('miz076', 0.0027822948379682623) + +[48217] +centroid = (0.73788420995907311, -1.4513299008527014) +station = ('kdet', 0.0030123965126498432) +zone = ('miz076', 0.0017006566044866589) + +[48218] +centroid = (0.73779795578743956, -1.4508341226253798) +station = ('cyqg', 0.0020691913905076238) +zone = ('miz076', 0.002073314701246564) + +[48219] +centroid = (0.74046165983854084, -1.453011525586998) +station = ('kvll', 0.0022584661632717227) +zone = ('miz076', 0.0025077736663885329) + +[48220] +centroid = (0.74103304572905881, -1.4509831911967925) +station = ('kvll', 0.0015766907019189793) +zone = ('miz076', 0.003610407726377832) + +[48221] +centroid = (0.74049084174363422, -1.4512169955033896) +station = ('kdet', 0.0017094838459446073) +zone = ('miz076', 0.0030646455587539393) + +[48223] +centroid = (0.73990533613946763, -1.4529224963418534) +station = ('kvll', 0.0027515800151614281) +zone = ('miz076', 0.0019793716225960357) + +[48224] +centroid = (0.74020623090251148, -1.4475981600191348) +station = ('kdet', 0.00097717866258056982) +zone = ('miz076', 0.0049720362220785916) + +[48225] +centroid = (0.74070000200119313, -1.4473947418948148) +station = ('kdet', 0.0011872440758431699) +zone = ('miz070', 0.0044789178448858) + +[48226] +centroid = (0.73882478534626539, -1.4495006038103937) +station = ('kdet', 0.0015475834678394871) +zone = ('miz076', 0.0031600390586256949) + +[48227] +centroid = (0.73979705591267386, -1.4519846436682946) +station = ('kdet', 0.0023247449302966974) +zone = ('miz076', 0.0021714593075399581) + +[48228] +centroid = (0.7392421459302948, -1.4524108879782167) +station = ('kdtw', 0.0026073112437601121) +zone = ('miz076', 0.0015360389261795983) + +[48229] +centroid = (0.73741136535812291, -1.4511167786977401) +station = ('konz', 0.0026624693926102865) +zone = ('miz076', 0.0019447693033873557) + +[48230] +centroid = (0.73971233763078215, -1.4472591647185198) +station = ('kdet', 0.001360679708659662) +zone = ('miz076', 0.0050085010784783396) + +[48233] +centroid = (0.7386878642664465, -1.4496994840786583) +station = ('cyqg', 0.0015794883746035081) +zone = ('miz076', 0.0029838087935529665) + +[48234] +centroid = (0.7405640932123404, -1.4493127016631238) +station = ('kdet', 0.00038840744457950104) +zone = ('miz076', 0.0040924439865559457) + +[48235] +centroid = (0.74049185403460038, -1.452023232898056) +station = ('kvll', 0.0020315440031802518) +zone = ('miz076', 0.002762767791200996) + +[48236] +centroid = (0.74046244523670424, -1.4467591627944083) +station = ('kdet', 0.0015980819914061292) +zone = ('miz070', 0.0047429322338990243) + +[48237] +centroid = (0.74115350835403138, -1.4518071087767814) +station = ('kvll', 0.0013593498069281841) +zone = ('miz076', 0.0034317550247644204) + +[48238] +centroid = (0.73995478131717674, -1.4510903369595725) +station = ('kdet', 0.0016457392901560719) +zone = ('miz076', 0.0027105328021000859) + +[48239] +centroid = (0.73960152667657308, -1.453565597811336) +station = ('kdtw', 0.0025735803582522701) +zone = ('miz076', 0.0016070788563900191) + +[48240] +centroid = (0.74044651038063358, -1.4538819561915524) +station = ('kvll', 0.0026061687310410492) +zone = ('miz076', 0.0024589101202010478) + +[48242] +centroid = (0.73689912867595508, -1.4546470387224566) +station = ('kdtw', 0.00026084205787559397) +zone = ('miz076', 0.0013322117177807875) + +[48243] +centroid = (0.73879743603688663, -1.4493127889295865) +station = ('cyqg', 0.0014508853893931114) +zone = ('miz076', 0.0032875197805474383) + +[48301] +centroid = (0.74250495170043562, -1.4535480397990608) +station = ('kvll', 0.0013423855116296395) +zone = ('miz069', 0.0024502594232040202) + +[48302] +centroid = (0.74325034691737735, -1.4537452445512438) +station = ('kvll', 0.0016605602404017354) +zone = ('miz069', 0.0017674374377105149) + +[48304] +centroid = (0.7433159363906674, -1.4526925492129035) +station = ('kvll', 0.0010741065310312244) +zone = ('miz069', 0.0023209069419912781) + +[48306] +centroid = (0.74568001976907861, -1.4511942538632363) +station = ('kvll', 0.0031925417588855092) +zone = ('miz069', 0.0032528887487911894) + +[48307] +centroid = (0.7445455208486973, -1.4507644316283477) +station = ('kvll', 0.0021536298847278589) +zone = ('miz070', 0.0025248086190771228) + +[48309] +centroid = (0.74449417326210365, -1.4518274942224449) +station = ('kvll', 0.0019840328188214617) +zone = ('miz069', 0.0025925473172294863) + +[48310] +centroid = (0.74287208170859265, -1.4498170320037802) +station = ('kvll', 0.0014517867878380685) +zone = ('miz070', 0.0028947722683232481) + +[48312] +centroid = (0.74278120241444134, -1.4487790672443266) +station = ('kdet', 0.0024727191505635382) +zone = ('miz070', 0.0025921544775050964) + +[48313] +centroid = (0.74352162344301487, -1.448673946063479) +station = ('kvll', 0.0024642182818705835) +zone = ('miz070', 0.001889453509299754) + +[48314] +centroid = (0.74372099240347023, -1.4495568383188928) +station = ('kvll', 0.0020035734652425721) +zone = ('miz070', 0.0021328619574665286) + +[48315] +centroid = (0.74475900952280127, -1.4485632747356099) +station = ('kmtc', 0.0023041023772516771) +zone = ('miz070', 0.00092634514433404024) + +[48316] +centroid = (0.74508407709598523, -1.4496223754323052) +station = ('kvll', 0.0030024340551646554) +zone = ('miz070', 0.0016068769753962606) + +[48317] +centroid = (0.74429286698617869, -1.4495303616741402) +station = ('kvll', 0.0024053985149482125) +zone = ('miz070', 0.0017740576344446295) + +[48320] +centroid = (0.74371856639580991, -1.4545240977299463) +station = ('kptk', 0.001389334225132747) +zone = ('miz069', 0.0010421289335427045) + +[48322] +centroid = (0.74243108936649127, -1.4552855674292988) +station = ('kptk', 0.0022872170926426004) +zone = ('miz069', 0.0021339032334460046) + +[48323] +centroid = (0.74300069502117216, -1.4552190354782129) +station = ('kptk', 0.0017455986811247693) +zone = ('miz069', 0.0015667817965925965) + +[48324] +centroid = (0.74340835157456042, -1.4554730506975482) +station = ('kptk', 0.0013030703901843587) +zone = ('miz069', 0.0011595414151787348) + +[48326] +centroid = (0.74505044460129932, -1.4528831915270985) +station = ('kvll', 0.0026778930630203981) +zone = ('miz069', 0.0018787135062567439) + +[48327] +centroid = (0.7441548638022234, -1.4557789021956675) +station = ('kptk', 0.00052598631584276903) +zone = ('miz069', 0.00051630080455392731) + +[48328] +centroid = (0.7443197625099518, -1.4548907215926201) +station = ('kptk', 0.00081937326213835505) +zone = ('miz069', 0.00041799899552972766) + +[48329] +centroid = (0.74502897705149973, -1.4554060126009789) +station = ('kptk', 0.00050560421335905958) +zone = ('miz069', 0.00046626110849569478) + +[48331] +centroid = (0.74180826862291704, -1.4557605413319366) +station = ('kptk', 0.0028672674985450609) +zone = ('miz069', 0.002772576950875601) + +[48334] +centroid = (0.74184691021255622, -1.4547180212631354) +station = ('kvll', 0.0023030357515044005) +zone = ('miz069', 0.0027572711429885081) + +[48335] +centroid = (0.74111715314571236, -1.4556944980730411) +station = ('kvll', 0.0032409821163025643) +zone = ('miz069', 0.0034565306000429734) + +[48336] +centroid = (0.74112167354847502, -1.4546842840486942) +station = ('kvll', 0.0025861363134089101) +zone = ('miz076', 0.0032233406896740942) + +[48340] +centroid = (0.74476944659172817, -1.4536481518849553) +station = ('kptk', 0.0016551758538372564) +zone = ('miz069', 0.0012691787300193988) + +[48341] +centroid = (0.74399869174075506, -1.453804131960206) +station = ('kptk', 0.0016798988006920684) +zone = ('miz069', 0.0012710707146955536) + +[48342] +centroid = (0.74424790730464718, -1.4533952711296338) +station = ('kvll', 0.002127198467082001) +zone = ('miz069', 0.0014732113732522497) + +[48346] +centroid = (0.74556446151930422, -1.4561090661302674) +station = ('kptk', 0.00090437640501632964) +zone = ('miz069', 0.0011445956639878371) + +[48348] +centroid = (0.74647960745929487, -1.4556722276717855) +station = ('kptk', 0.0018132274672597796) +zone = ('miz069', 0.0019296082694793661) + +[48350] +centroid = (0.74594356448612986, -1.4578917454282543) +station = ('kptk', 0.0019402013671031735) +zone = ('miz069', 0.0023210139971539131) + +[48353] +centroid = (0.74432829716999416, -1.4611188417618992) +station = ('kozw', 0.0034572454214047421) +zone = ('miz068', 0.0026255040533754753) + +[48356] +centroid = (0.74445996480876464, -1.4589714235568305) +station = ('kptk', 0.0022720744753295719) +zone = ('miz069', 0.0026641902304501111) + +[48357] +centroid = (0.74453185492065421, -1.4599050874401849) +station = ('kptk', 0.0029519046527195516) +zone = ('miz068', 0.0035394324762187813) + +[48359] +centroid = (0.7456176242483199, -1.4534320452169733) +station = ('kptk', 0.0020418255404341143) +zone = ('miz069', 0.00176060802432117) + +[48360] +centroid = (0.74608591353992249, -1.4531625838337578) +station = ('kptk', 0.0024549870091957618) +zone = ('miz069', 0.0022141385598604146) + +[48362] +centroid = (0.74672999239378601, -1.4533415848018425) +station = ('kptk', 0.0027834705202059635) +zone = ('miz069', 0.0026210605417831376) + +[48363] +centroid = (0.74652065760330177, -1.4514594217364918) +station = ('kvll', 0.0040139059963115132) +zone = ('miz069', 0.003464695086502378) + +[48367] +centroid = (0.74763328754815572, -1.4510126698078589) +station = ('kd95', 0.0043711836815045419) +zone = ('miz070', 0.0035921992548974152) + +[48370] +centroid = (0.7477492472236581, -1.4521203081110521) +station = ('kd95', 0.0040071316346660156) +zone = ('miz069', 0.0039714784490063769) + +[48371] +centroid = (0.74771598124811511, -1.4537114549769252) +station = ('kptk', 0.0034389784135922937) +zone = ('miz069', 0.0033738119731155187) + +[48374] +centroid = (0.74129763764366108, -1.4577489600421487) +station = ('kptk', 0.0036416720619639477) +zone = ('miz069', 0.0037134397514959343) + +[48375] +centroid = (0.74113907448111738, -1.4567208738462614) +station = ('kptk', 0.0035866322225681906) +zone = ('miz069', 0.0035707660995133172) + +[48377] +centroid = (0.74185090701654322, -1.4568989846964275) +station = ('kptk', 0.0029179943656950503) +zone = ('miz069', 0.0029430407288158103) + +[48380] +centroid = (0.74321359028333045, -1.4602615534866124) +station = ('kozw', 0.0041563965745911287) +zone = ('miz068', 0.003163098072469713) + +[48381] +centroid = (0.74278441382026494, -1.4589520154955482) +station = ('kptk', 0.0029376615862821468) +zone = ('miz069', 0.0031922586766269679) + +[48382] +centroid = (0.74338037394665091, -1.4574748386298306) +station = ('kptk', 0.0017387476570794949) +zone = ('miz069', 0.001960305669027346) + +[48383] +centroid = (0.74448082149332584, -1.457800935947273) +station = ('kptk', 0.0014144483929457781) +zone = ('miz069', 0.001803265609968311) + +[48386] +centroid = (0.74456302650109485, -1.4570057639400644) +station = ('kptk', 0.00082392266453496085) +zone = ('miz069', 0.0012165021200783008) + +[48390] +centroid = (0.74265000601456888, -1.4568999446275159) +station = ('kptk', 0.0021546065853682767) +zone = ('miz069', 0.0022279907071442728) + +[48393] +centroid = (0.74214607709964064, -1.4581368594684045) +station = ('kptk', 0.0030186124745789286) +zone = ('miz069', 0.0031706953226053893) + +[48397] +centroid = (0.74167796234096317, -1.4493394750138493) +station = ('kdet', 0.0014030119341176786) +zone = ('miz070', 0.0037697736300064048) + +[48401] +centroid = (0.75655383988802383, -1.4428740075195916) +station = ('cyzr', 0.007552798810970267) +zone = ('miz055', 0.0023158400312737783) + +[48411] +centroid = (0.74930442285364773, -1.4578544477421393) +station = ('kfnt', 0.002888621854602405) +zone = ('miz061', 0.0027579468756442514) + +[48412] +centroid = (0.75172086610961886, -1.451687187203877) +station = ('kd95', 0.0012258569520041005) +zone = ('miz062', 0.00068224036687025333) + +[48413] +centroid = (0.76443007446996125, -1.4485159588595886) +station = ('kbax', 0.0003275082100504697) +zone = ('miz049', 0.00068494254791712033) + +[48414] +centroid = (0.7480776832822984, -1.4674701472697842) +station = ('krnp', 0.002409059505352642) +zone = ('miz060', 0.001819073497034266) + +[48415] +centroid = (0.75523670971471379, -1.4627273721071223) +station = ('khyx', 0.0029012864414913412) +zone = ('miz053', 0.0033022302484784745) + +[48416] +centroid = (0.75427667390636177, -1.4483634868961341) +station = ('kd95', 0.0044938634425840396) +zone = ('miz062', 0.0037386161047717461) + +[48417] +centroid = (0.7550518095337575, -1.4650153067702691) +station = ('khyx', 0.0031566926444996355) +zone = ('miz053', 0.0019371470099878297) + +[48418] +centroid = (0.74690134881974679, -1.4655510704907539) +station = ('kozw', 0.0028830035538740684) +zone = ('miz068', 0.0034217056466732138) + +[48419] +centroid = (0.75809550666960301, -1.4426986717429362) +station = ('kbax', 0.0072911271165297465) +zone = ('miz055', 0.0020334768971195728) + +[48420] +centroid = (0.75361751540776112, -1.4608494501918539) +station = ('kfnt', 0.0037610222909664872) +zone = ('miz061', 0.0027483336257432861) + +[48421] +centroid = (0.75320549553124283, -1.4554856868813324) +station = ('kd95', 0.0021945644017889632) +zone = ('miz062', 0.0024636398486654167) + +[48422] +centroid = (0.7550551256593363, -1.4425792737688072) +station = ('kphn', 0.0062104804754333463) +zone = ('miz055', 0.0035295967940082522) + +[48423] +centroid = (0.75116710804454612, -1.4575412135012837) +station = ('kfnt', 0.0033000027989276343) +zone = ('miz061', 0.0025148744517935321) + +[48426] +centroid = (0.7594054635396873, -1.4496372805441171) +station = ('kbax', 0.0048024284064828301) +zone = ('miz055', 0.0033773318941712964) + +[48427] +centroid = (0.75984022505635906, -1.4438320361993038) +station = ('kbax', 0.005394254407626831) +zone = ('miz055', 0.0022948701398854436) + +[48428] +centroid = (0.74941287761336661, -1.4513190099981688) +station = ('kd95', 0.0026919511116440943) +zone = ('miz062', 0.0027870639300525738) + +[48429] +centroid = (0.7488491362649724, -1.4661431036263228) +station = ('krnp', 0.0022972116694806349) +zone = ('miz060', 0.0020075736320413155) + +[48430] +centroid = (0.74627163402562724, -1.4616029960964025) +station = ('kfnt', 0.0036390653503569977) +zone = ('miz068', 0.0034604969642963931) + +[48432] +centroid = (0.76617681743864974, -1.4481358785083818) +station = ('kbax', 0.0020641154794608257) +zone = ('miz049', 0.001286838728832804) + +[48433] +centroid = (0.75180664904235439, -1.4637592456674864) +station = ('kfnt', 0.0024156885282574569) +zone = ('miz061', 0.0022513774171905249) + +[48434] +centroid = (0.76204372069029447, -1.4418475095733236) +station = ('kbax', 0.0051515173009350421) +zone = ('miz055', 0.0049251624284628029) + +[48435] +centroid = (0.75477424982281283, -1.4548949103828248) +station = ('kd95', 0.003316447590333573) +zone = ('miz062', 0.0032264722429485135) + +[48436] +centroid = (0.74814089910780568, -1.4639268496355553) +station = ('kfnt', 0.0023993957317402911) +zone = ('miz061', 0.0034891752651415617) + +[48437] +centroid = (0.75251170970028247, -1.4593115707747515) +station = ('kfnt', 0.0031386280988056903) +zone = ('miz061', 0.0020346991317404754) + +[48438] +centroid = (0.74898460872151229, -1.4570735525282119) +station = ('kfnt', 0.003520312651169288) +zone = ('miz061', 0.0034107350922243755) + +[48439] +centroid = (0.74903726530504489, -1.4596113659803667) +station = ('kfnt', 0.0017688554681973827) +zone = ('miz061', 0.0020809402227048809) + +[48440] +centroid = (0.74963800763358135, -1.4558185560762729) +station = ('kd95', 0.0026983521634776127) +zone = ('miz062', 0.003434004699141209) + +[48441] +centroid = (0.76441742083288422, -1.4435379133137576) +station = ('kbax', 0.0035017560578491425) +zone = ('miz049', 0.0039610196040291857) + +[48442] +centroid = (0.74680334858224728, -1.4592017546582163) +station = ('kptk', 0.003230123707291606) +zone = ('miz069', 0.0036073468263181025) + +[48444] +centroid = (0.75151243889034569, -1.4494121156173174) +station = ('kd95', 0.002889587310942836) +zone = ('miz062', 0.0023181289182272178) + +[48445] +centroid = (0.76707608088244716, -1.4484584328074426) +station = ('kbax', 0.0029570591988729287) +zone = ('miz049', 0.0020724540467257314) + +[48446] +centroid = (0.75142951829758342, -1.4545347791449685) +station = ('kd95', 0.00088487045420500645) +zone = ('miz062', 0.0016199505136215786) + +[48449] +centroid = (0.75034238761310124, -1.4651126612359453) +station = ('kfnt', 0.0025243606795422669) +zone = ('miz060', 0.0026615146187517306) + +[48450] +centroid = (0.75500604700077023, -1.4406373157232832) +station = ('cyzr', 0.0053526207013025696) +zone = ('miz055', 0.0045496265921418236) + +[48451] +centroid = (0.74702224777703241, -1.4629205276954405) +station = ('kfnt', 0.0030200180509723238) +zone = ('miz068', 0.0036566912719365116) + +[48453] +centroid = (0.75656783742862477, -1.4491917677992532) +station = ('kd95', 0.0057799864380298754) +zone = ('miz055', 0.0029988110335308956) + +[48454] +centroid = (0.7538951623851684, -1.445354643985451) +station = ('kphn', 0.0060245616166309498) +zone = ('miz055', 0.0039889863218193341) + +[48455] +centroid = (0.74940861900999167, -1.4536983999141202) +station = ('kd95', 0.0022566608426897289) +zone = ('miz062', 0.0027976191333182101) + +[48456] +centroid = (0.7621324183228807, -1.4444730258203913) +station = ('kbax', 0.0034475137437684398) +zone = ('miz055', 0.004312020171156331) + +[48457] +centroid = (0.75375187085357964, -1.4642469430203711) +station = ('kfnt', 0.004264576004655676) +zone = ('miz053', 0.0032748631810399303) + +[48458] +centroid = (0.75267793485824253, -1.4605169475160564) +station = ('kfnt', 0.0029029116715960407) +zone = ('miz061', 0.0018360458372125839) + +[48460] +centroid = (0.75277118780017649, -1.4658147199275602) +station = ('krnp', 0.0031045367267808184) +zone = ('miz053', 0.00367115605646273) + +[48461] +centroid = (0.75387160044026646, -1.4522214848477901) +station = ('kd95', 0.0023707934142040785) +zone = ('miz062', 0.0018184186109650624) + +[48462] +centroid = (0.74784763143359301, -1.4559827741055928) +station = ('kptk', 0.0031744642968564675) +zone = ('miz069', 0.0033157478450050177) + +[48463] +centroid = (0.75338531680407583, -1.4576867914141927) +station = ('kd95', 0.0036012128220869028) +zone = ('miz061', 0.0034683872903799608) + +[48464] +centroid = (0.75433725428469844, -1.4559965971132687) +station = ('kd95', 0.0033022780699435892) +zone = ('miz062', 0.003419705759995) + +[48465] +centroid = (0.76110314530310219, -1.4435229034821904) +station = ('kbax', 0.0046246955246541854) +zone = ('miz055', 0.0035199976232910095) + +[48466] +centroid = (0.75538734908245342, -1.4452875535290044) +station = ('kd95', 0.0069737756798440463) +zone = ('miz055', 0.0024997597647698996) + +[48467] +centroid = (0.76821288363744122, -1.4483163630063305) +station = ('kp58', 0.0022896882701157338) +zone = ('miz049', 0.0032111294332761056) + +[48468] +centroid = (0.76686995749778675, -1.4446994473842525) +station = ('kp58', 0.0014009215631507926) +zone = ('miz049', 0.0035770336273423836) + +[48469] +centroid = (0.75819666595304847, -1.4409120829074247) +station = ('kbax', 0.0080155483958523292) +zone = ('miz055', 0.0033344250011312698) + +[48470] +centroid = (0.76332201728774762, -1.4442785263285489) +station = ('kbax', 0.0030617222231102744) +zone = ('miz049', 0.0037893686810378602) + +[48471] +centroid = (0.75781183830627641, -1.4460415881257436) +station = ('kbax', 0.0065295482498974452) +zone = ('miz055', 0.00041160511667348988) + +[48472] +centroid = (0.75943330154125666, -1.4479812074300697) +station = ('kbax', 0.0046948773883726943) +zone = ('miz055', 0.0023852616684755909) + +[48473] +centroid = (0.7493911482641793, -1.4629444736127779) +station = ('kfnt', 0.0010397612294501262) +zone = ('miz061', 0.0020738953798742224) + +[48475] +centroid = (0.76224036693711661, -1.4477154810514536) +station = ('kbax', 0.0019381371526466515) +zone = ('miz049', 0.0029360720088134535) + +[48476] +centroid = (0.74942181369913685, -1.4666010431154612) +station = ('krnp', 0.0016801301011562875) +zone = ('miz060', 0.0015130847176784141) + +[48502] +centroid = (0.75073115970398296, -1.460637706847002) +station = ('kfnt', 0.0011373511455771324) +zone = ('miz061', 0.00027210387794766904) + +[48503] +centroid = (0.75049023445403773, -1.4609952899041507) +station = ('kfnt', 0.00078279153772761907) +zone = ('miz061', 0.00038108241113238468) + +[48504] +centroid = (0.75144786170802191, -1.4616047588789471) +station = ('kfnt', 0.0015401042715844086) +zone = ('miz061', 0.0007465594203906826) + +[48505] +centroid = (0.75172477564714324, -1.4605991699771179) +station = ('kfnt', 0.0019893720029985251) +zone = ('miz061', 0.0008936927253373302) + +[48506] +centroid = (0.75166918691046736, -1.459520975378406) +station = ('kfnt', 0.002380055048022496) +zone = ('miz061', 0.0013192432857143711) + +[48507] +centroid = (0.74991502629245788, -1.4611435556241075) +station = ('kfnt', 0.00041690471220482572) +zone = ('miz061', 0.00096493061620136957) + +[48509] +centroid = (0.75091412256946943, -1.4592103242248435) +station = ('kfnt', 0.002088054112163092) +zone = ('miz061', 0.0012780922339358956) + +[48519] +centroid = (0.75017551668331806, -1.4591817008251107) +station = ('kfnt', 0.0018711936222437491) +zone = ('miz061', 0.0014728896170375413) + +[48529] +centroid = (0.74997387879483512, -1.4601178430760031) +station = ('kfnt', 0.0011691608249121007) +zone = ('miz061', 0.0010866310288697408) + +[48532] +centroid = (0.75068468158600232, -1.4624960985279405) +station = ('kfnt', 0.00096351415385996519) +zone = ('miz061', 0.0011401575723631783) + +[48551] +centroid = (0.75015986107992771, -1.4611355445628409) +station = ('kfnt', 0.00049111393954346435) +zone = ('miz061', 0.00072228479384345626) + +[48553] +centroid = (0.75010345203850315, -1.4612518009443163) +station = ('kfnt', 0.0003892262437247472) +zone = ('miz061', 0.00079649213979756186) + +[48554] +centroid = (0.75007062239527322, -1.4624241909627584) +station = ('kfnt', 0.00054448542796222484) +zone = ('miz061', 0.0013379613803086207) + +[48601] +centroid = (0.75757669009615514, -1.4642264877615376) +station = ('khyx', 0.00062282205282866373) +zone = ('miz053', 0.002369187301465472) + +[48602] +centroid = (0.75782241500154346, -1.4656310240237878) +station = ('khyx', 0.001438182718881915) +zone = ('miz053', 0.0017887615061048525) + +[48603] +centroid = (0.75849890461961644, -1.466590937659092) +station = ('kmbs', 0.0014689821621167326) +zone = ('miz053', 0.0021813300776639751) + +[48604] +centroid = (0.75921410564049863, -1.4655369856836902) +station = ('kmbs', 0.0015602068924743787) +zone = ('miz053', 0.0030670285133509176) + +[48607] +centroid = (0.75802810205389104, -1.4649245845557504) +station = ('khyx', 0.00090655123373276265) +zone = ('miz053', 0.0022674418731995706) + +[48609] +centroid = (0.75727841332698931, -1.4675951128442271) +station = ('kmbs', 0.0025220169077398449) +zone = ('miz053', 0.001033237121685631) + +[48610] +centroid = (0.7704178628012408, -1.4694309897778148) +station = ('khtl', 0.0069576367456758584) +zone = ('miz035', 0.0034704327249680715) + +[48611] +centroid = (0.76155954890249877, -1.4677731364279305) +station = ('kmbs', 0.0017682672626998027) +zone = ('miz048', 0.0018401799880990684) + +[48612] +centroid = (0.76590325453169206, -1.4737461418204456) +station = ('kikw', 0.0045017322661091786) +zone = ('miz041', 0.0019849046361957584) + +[48613] +centroid = (0.76703386136784157, -1.4691342663516831) +station = ('kikw', 0.0051354441323449443) +zone = ('miz041', 0.0027779622521450845) + +[48614] +centroid = (0.75487219770043479, -1.4712783858844656) +station = ('krnp', 0.0049417336763062942) +zone = ('miz052', 0.0039656380183358221) + +[48615] +centroid = (0.75799317801555854, -1.4743634996834611) +station = ('kamn', 0.0032930085650561404) +zone = ('miz052', 0.0029064533539133446) + +[48616] +centroid = (0.75382644877251737, -1.4680568222445496) +station = ('krnp', 0.0034760642218572683) +zone = ('miz053', 0.0026261458687119373) + +[48617] +centroid = (0.76534970590612961, -1.4785957660399147) +station = ('kmop', 0.0041002541739716264) +zone = ('miz040', 0.00289398233642314) + +[48618] +centroid = (0.76335079776711301, -1.4757929417941369) +station = ('kmop', 0.0030603355432743114) +zone = ('miz047', 0.0026466070625276576) + +[48619] +centroid = (0.78225196307463318, -1.4664363363939503) +station = ('kapn', 0.0072528984198110867) +zone = ('miz029', 0.0027626795378948989) + +[48621] +centroid = (0.78080618468215868, -1.4662934637413823) +station = ('kapn', 0.008180329395609259) +zone = ('miz029', 0.0017447341209286861) + +[48622] +centroid = (0.76516693502686084, -1.481457564961117) +station = ('kmop', 0.0043345793037724567) +zone = ('miz040', 0.0026010103450849966) + +[48623] +centroid = (0.75956868673133382, -1.4683950670535861) +station = ('kmbs', 0.00066782516627721512) +zone = ('miz053', 0.0033843118299233333) + +[48624] +centroid = (0.76901114487742595, -1.4740591840750832) +station = ('khtl', 0.0056817617695176835) +zone = ('miz041', 0.001505728356171169) + +[48625] +centroid = (0.76886586367048981, -1.480730722594124) +station = ('khtl', 0.0056209254694848066) +zone = ('miz040', 0.0011368216195632556) + +[48626] +centroid = (0.75784590713327527, -1.4699413589576829) +station = ('kmbs', 0.0026225343306191667) +zone = ('miz053', 0.0026128989225851005) + +[48627] +centroid = (0.77600687830502468, -1.4791700840835758) +station = ('khtl', 0.0022137052750266523) +zone = ('miz034', 0.0028014271013497515) + +[48628] +centroid = (0.76417707154159209, -1.4718076395268405) +station = ('kikw', 0.0023316440930162522) +zone = ('miz047', 0.0025116153168709826) + +[48629] +centroid = (0.77339445202734702, -1.4797721354090514) +station = ('khtl', 0.0016142443562712852) +zone = ('miz034', 0.0021994445151817844) + +[48630] +centroid = (0.7736135955682274, -1.4795591877870156) +station = ('khtl', 0.0013924275399660128) +zone = ('miz034', 0.0020175957687919108) + +[48631] +centroid = (0.7625107009849581, -1.4660049259094425) +station = ('kmbs', 0.0029272512290163689) +zone = ('miz048', 0.00032736729952398597) + +[48632] +centroid = (0.76547325776387831, -1.483888093024152) +station = ('kmop', 0.0055600378754567092) +zone = ('miz040', 0.0031343672532527411) + +[48633] +centroid = (0.76684487711643556, -1.4823266691154402) +station = ('kmop', 0.0061206069887041669) +zone = ('miz040', 0.001372626639963312) + +[48634] +centroid = (0.76354037543046471, -1.4670570627424222) +station = ('kikw', 0.002992215254793742) +zone = ('miz048', 0.0010730065102652782) + +[48635] +centroid = (0.77470224468915894, -1.4659793568359005) +station = ('kgov', 0.010472167864861631) +zone = ('miz035', 0.0018847371308458516) + +[48636] +centroid = (0.77839763031440656, -1.4712351366256013) +station = ('kgov', 0.0055656183573608532) +zone = ('miz029', 0.0025161893172257234) + +[48637] +centroid = (0.7577118833000146, -1.4719334254060317) +station = ('kmbs', 0.0038166671068145613) +zone = ('miz052', 0.0040166463017692307) + +[48638] +centroid = (0.75780319892647896, -1.4663949546373856) +station = ('kmbs', 0.0021602874474443102) +zone = ('miz053', 0.0015304293846931832) + +[48640] +centroid = (0.76065229185072702, -1.4719622931518597) +station = ('kikw', 0.001672569390182388) +zone = ('miz047', 0.0012971329527854787) + +[48642] +centroid = (0.76293139514785879, -1.4702123736839328) +station = ('kikw', 0.00096546019323221204) +zone = ('miz047', 0.0022258837812308163) + +[48647] +centroid = (0.77943124920402262, -1.4680499281940043) +station = ('kgov', 0.0076536029548389516) +zone = ('miz029', 0.0004604246891344108) + +[48649] +centroid = (0.75311761820340495, -1.4698714585211408) +station = ('krnp', 0.0029286130037787673) +zone = ('miz060', 0.003550630903250885) + +[48650] +centroid = (0.7652833135813838, -1.4660377730059651) +station = ('kikw', 0.0046516612192746441) +zone = ('miz048', 0.0024498115621944651) + +[48651] +centroid = (0.77239153347927358, -1.4768070828093007) +station = ('khtl', 0.0017837346394269779) +zone = ('miz034', 0.0014112332670480538) + +[48652] +centroid = (0.76550491803650955, -1.4695127759065632) +station = ('kikw', 0.0035836115249442539) +zone = ('miz041', 0.0033111557761819248) + +[48653] +centroid = (0.776513460120416, -1.4765389827829019) +station = ('khtl', 0.002598712927110597) +zone = ('miz034', 0.002715490932277818) + +[48654] +centroid = (0.77592837339526988, -1.468473240350783) +station = ('kgov', 0.0083205589415493754) +zone = ('miz035', 0.0021425688229755359) + +[48655] +centroid = (0.7556315555513925, -1.4688637752242091) +station = ('kmbs', 0.0042793932412380723) +zone = ('miz053', 0.0015259717802222001) + +[48656] +centroid = (0.77390805006633145, -1.4739479542418537) +station = ('khtl', 0.0026957951223753438) +zone = ('miz034', 0.0020075951723526179) + +[48657] +centroid = (0.76281580199149912, -1.4733399338903366) +station = ('kikw', 0.0021290788702122859) +zone = ('miz047', 0.0010951617338288166) + +[48658] +centroid = (0.76751445523067063, -1.4649734886813912) +station = ('kikw', 0.0068452257113096587) +zone = ('miz042', 0.0016611933467820042) + +[48659] +centroid = (0.7690888992956022, -1.4669629022292769) +station = ('kikw', 0.0075519179562561524) +zone = ('miz042', 0.0019561770978477068) + +[48661] +centroid = (0.77350210393561014, -1.4701992662612502) +station = ('khtl', 0.0054019583676899871) +zone = ('miz035', 0.0013985244668764918) + +[48662] +centroid = (0.75764641599977234, -1.4733512785304743) +station = ('kamn', 0.0037655516329163645) +zone = ('miz052', 0.0031431497113249851) + +[48667] +centroid = (0.76099999634430937, -1.4701488436991601) +station = ('kikw', 0.0010654516720338672) +zone = ('miz047', 0.0021030635875850389) + +[48701] +centroid = (0.76073451431178851, -1.4583591969618159) +station = ('kcfs', 0.0026533739199000829) +zone = ('miz054', 0.002789521276651274) + +[48703] +centroid = (0.76905563332005922, -1.4604202039156187) +station = ('kosc', 0.0077726746186924534) +zone = ('miz042', 0.002745297524142641) + +[48705] +centroid = (0.78009347948210683, -1.4600782590085677) +station = ('kosc', 0.0056047220647938989) +zone = ('miz030', 0.00079777402091045014) + +[48706] +centroid = (0.7609569565249551, -1.4652127035086697) +station = ('kmbs', 0.0020396658203291318) +zone = ('miz048', 0.0019496810686653722) + +[48708] +centroid = (0.76021410948872137, -1.463452992743639) +station = ('khyx', 0.0021655294387792753) +zone = ('miz048', 0.0031785978530055759) + +[48710] +centroid = (0.76020456253771296, -1.4658613551251733) +station = ('kmbs', 0.0012760545091487685) +zone = ('miz048', 0.0026305798809913442) + +[48720] +centroid = (0.76512794437137122, -1.4545430345523305) +station = ('kbax', 0.0045665701113477208) +zone = ('miz049', 0.0040281552437256528) + +[48721] +centroid = (0.78204898128262634, -1.4545483228999638) +station = ('kapn', 0.0055633491123480636) +zone = ('miz030', 0.0038111330796410494) + +[48722] +centroid = (0.7565430537532466, -1.4633671574510259) +station = ('khyx', 0.0015282678625755317) +zone = ('miz053', 0.0026537059689606332) + +[48723] +centroid = (0.75896155649773511, -1.4554080371829112) +station = ('kcfs', 0.00085424278556662679) +zone = ('miz054', 0.00051210684501940928) + +[48724] +centroid = (0.75846450418005962, -1.4648241932171759) +station = ('khyx', 0.00092843772821193384) +zone = ('miz053', 0.002651682718066603) + +[48725] +centroid = (0.76696671855151732, -1.4522813670944259) +station = ('kbax', 0.0040067234328997102) +zone = ('miz049', 0.0030755778561719037) + +[48726] +centroid = (0.76109237662161733, -1.4515553799387664) +station = ('kbax', 0.0038033149753401727) +zone = ('miz054', 0.0040194136928575789) + +[48727] +centroid = (0.7559611609806316, -1.4516685994473435) +station = ('kd95', 0.0044827748502534685) +zone = ('miz062', 0.0039432608520621054) + +[48728] +centroid = (0.78073741870963009, -1.4629223253845702) +station = ('kapn', 0.006866257796869662) +zone = ('miz030', 0.0029173306027415356) + +[48729] +centroid = (0.75914734679660989, -1.4516562948761167) +station = ('kcfs', 0.0034996877782919925) +zone = ('miz054', 0.0031262224038236183) + +[48730] +centroid = (0.77393983251201026, -1.4565763431309036) +station = ('kosc', 0.002165197464747626) +zone = ('miz036', 0.002260947357061028) + +[48731] +centroid = (0.76521575188603896, -1.4512595989904309) +station = ('kbax', 0.0023549404151588975) +zone = ('miz049', 0.0016683737808654859) + +[48732] +centroid = (0.76117877041959103, -1.4624082735599802) +station = ('khyx', 0.0032566796989386896) +zone = ('miz048', 0.003043838191804705) + +[48733] +centroid = (0.75981341679904846, -1.4589750538416746) +station = ('kcfs', 0.0022889636977520681) +zone = ('miz054', 0.0025457836505842699) + +[48734] +centroid = (0.75673221253757772, -1.4616872431393961) +station = ('khyx', 0.0019592706992258573) +zone = ('miz053', 0.0038872290239308112) + +[48735] +centroid = (0.76214327427082817, -1.4533510793929734) +station = ('kbax', 0.0041058411562170834) +zone = ('miz054', 0.0040018176650766747) + +[48737] +centroid = (0.77746892316612781, -1.4605823799097137) +station = ('kosc', 0.0043028287245160087) +zone = ('miz030', 0.0026899042310232408) + +[48738] +centroid = (0.7776410649902521, -1.454375325864506) +station = ('kosc', 0.0018992127004483243) +zone = ('miz030', 0.0039888471444768335) + +[48739] +centroid = (0.7744184192461997, -1.4633121097664179) +station = ('kosc', 0.006080181584532638) +zone = ('miz036', 0.0025788493629972636) + +[48740] +centroid = (0.77953191979527758, -1.4551163228517328) +station = ('kosc', 0.0037336617876145583) +zone = ('miz030', 0.002777996969134514) + +[48741] +centroid = (0.75751616207769601, -1.4517626552407332) +station = ('kcfs', 0.0035036870585977717) +zone = ('miz054', 0.0031884411620857083) + +[48742] +centroid = (0.78090785011108743, -1.4562270852942871) +station = ('kosc', 0.0051804627553609164) +zone = ('miz030', 0.0022017456492468401) + +[48743] +centroid = (0.77564393708707247, -1.4636881060471751) +station = ('kosc', 0.0061882170605030958) +zone = ('miz036', 0.0031994085409728901) + +[48744] +centroid = (0.7565660571927878, -1.4548934617595459) +station = ('kcfs', 0.0022167461795473873) +zone = ('miz054', 0.0021525772983341184) + +[48745] +centroid = (0.77783074737335878, -1.4569178866122265) +station = ('kosc', 0.0024402985388917147) +zone = ('miz030', 0.0025457741795841047) + +[48746] +centroid = (0.75501779306663608, -1.4582269533643923) +station = ('kcfs', 0.003724418042777942) +zone = ('miz054', 0.0039552792282538758) + +[48747] +centroid = (0.75954484553375157, -1.4619683458687225) +station = ('khyx', 0.0019384330583241162) +zone = ('miz048', 0.0043686822980886098) + +[48748] +centroid = (0.77410453923352085, -1.4593208733796648) +station = ('kosc', 0.0035071755693289121) +zone = ('miz036', 0.00029259244519415638) + +[48749] +centroid = (0.76888342168276502, -1.4643425347035031) +station = ('kikw', 0.0082271612388357795) +zone = ('miz042', 0.00021902685821465105) + +[48750] +centroid = (0.77572291323572529, -1.4568607270792235) +station = ('kosc', 0.0013142564447301101) +zone = ('miz036', 0.002576297150797205) + +[48754] +centroid = (0.7632893621774427, -1.4526552689800807) +station = ('kbax', 0.0032037776380316732) +zone = ('miz049', 0.0031883481724114555) + +[48755] +centroid = (0.76430587684038931, -1.4529101568640421) +station = ('kbax', 0.0032820980571073503) +zone = ('miz049', 0.0029422587170979068) + +[48756] +centroid = (0.77202164585089839, -1.4656058040160964) +station = ('kosc', 0.0084589048833654378) +zone = ('miz035', 0.0026093840847709764) + +[48757] +centroid = (0.75869216492768976, -1.4604271328727489) +station = ('kcfs', 0.0029332278975249416) +zone = ('miz054', 0.0032900510524053626) + +[48759] +centroid = (0.76324082457094478, -1.4553585745519098) +station = ('kcfs', 0.0048039582579923294) +zone = ('miz054', 0.0046654398023452739) + +[48760] +centroid = (0.75612988195942188, -1.4530739734676341) +station = ('kcfs', 0.0033795642990785742) +zone = ('miz054', 0.0032039946788110975) + +[48761] +centroid = (0.77686217690496451, -1.4641865546282522) +station = ('kosc', 0.0066241165485378022) +zone = ('miz029', 0.0041990680432095985) + +[48762] +centroid = (0.78228554320944166, -1.4566800680483496) +station = ('kapn', 0.0047477910398141263) +zone = ('miz030', 0.0028878582005109556) + +[48763] +centroid = (0.77239703126641734, -1.4593553261790992) +station = ('kosc', 0.0046010590808656581) +zone = ('miz036', 0.001779092047936882) + +[48765] +centroid = (0.77059002207865757, -1.4611539054265719) +station = ('kosc', 0.0068106914525271353) +zone = ('miz042', 0.0026762524310397395) + +[48766] +centroid = (0.76979006786929849, -1.4632734332701938) +station = ('kosc', 0.0084261011135563658) +zone = ('miz042', 0.00098634762047588535) + +[48767] +centroid = (0.76184525930105018, -1.4567068413990754) +station = ('kcfs', 0.0033570305177961688) +zone = ('miz054', 0.0033062344794515539) + +[48768] +centroid = (0.75696380027602483, -1.4587032362639691) +station = ('kcfs', 0.0022713172577016969) +zone = ('miz054', 0.0026091264232635243) + +[48770] +centroid = (0.77232882379924939, -1.4628331565130857) +station = ('kosc', 0.0065751753588325721) +zone = ('miz036', 0.0028796987556609357) + +[48801] +centroid = (0.75703954756556135, -1.4779099389103436) +station = ('kamn', 0.00093722752346587211) +zone = ('miz052', 0.0017133106658245413) + +[48806] +centroid = (0.75375344164990643, -1.4748060279153044) +station = ('kamn', 0.0033531753267281722) +zone = ('miz052', 0.0022760568560535421) + +[48807] +centroid = (0.75311788000279267, -1.4730928999880091) +station = ('krnp', 0.004339248657845767) +zone = ('miz052', 0.003579669679201702) + +[48808] +centroid = (0.74750420299667819, -1.4738393773090872) +station = ('klan', 0.001943826245340457) +zone = ('miz059', 0.0028335305028422838) + +[48809] +centroid = (0.75180579383102097, -1.4880321504402099) +station = ('ky70', 0.0034583016927897054) +zone = ('miz058', 0.0032619101006681984) + +[48811] +centroid = (0.75364414913214661, -1.4809893454826846) +station = ('kamn', 0.0032514328132170647) +zone = ('miz052', 0.0037284906298636544) + +[48813] +centroid = (0.7431559944180145, -1.4808390900873805) +station = ('kfpk', 0.0004520499912664146) +zone = ('miz066', 0.0003017038681376816) + +[48815] +centroid = (0.74760078951748354, -1.48804316346779) +station = ('ky70', 0.0031382107066523271) +zone = ('miz058', 0.003044764173107149) + +[48816] +centroid = (0.74639021169500774, -1.4653082951918013) +station = ('kozw', 0.002393511378428863) +zone = ('miz068', 0.0028846065078394953) + +[48817] +centroid = (0.75073503433492239, -1.4668250386716621) +station = ('krnp', 0.0012798893530456929) +zone = ('miz060', 0.0016919582991969143) + +[48818] +centroid = (0.75522922225222278, -1.48157830683877) +station = ('kamn', 0.0026939521048941584) +zone = ('miz051', 0.0034268159716108232) + +[48819] +centroid = (0.74259214834986531, -1.4709808421535859) +station = ('ktew', 0.0018580289387637259) +zone = ('miz067', 0.0014728517071536903) + +[48820] +centroid = (0.74811641213840008, -1.4764140870216291) +station = ('klan', 0.0014110526350065355) +zone = ('miz059', 0.0013957693148480292) + +[48821] +centroid = (0.74422883085592295, -1.4773761474119136) +station = ('kfpk', 0.0024068399322785144) +zone = ('miz066', 0.0025759227623967486) + +[48822] +centroid = (0.74761927255426208, -1.4793932244284433) +station = ('klan', 0.0024734870050287868) +zone = ('miz059', 0.0027979679811904693) + +[48823] +centroid = (0.74637064655409291, -1.4740836361379037) +station = ('klan', 0.001631514998517549) +zone = ('miz067', 0.0031093628912856673) + +[48825] +centroid = (0.74573752836793183, -1.4744788484937252) +station = ('klan', 0.0016283957785257631) +zone = ('miz067', 0.0026652384041694816) + +[48827] +centroid = (0.74192808547606659, -1.4775999160753117) +station = ('kfpk', 0.0022513822489813552) +zone = ('miz066', 0.00274581301997694) + +[48829] +centroid = (0.7574415667054657, -1.4837982609275517) +station = ('kamn', 0.0043649502400268068) +zone = ('miz051', 0.0023109038824495479) + +[48831] +centroid = (0.75217091671053804, -1.4725777136994056) +station = ('krnp', 0.0034839013205159681) +zone = ('miz060', 0.0038061647178668943) + +[48832] +centroid = (0.7576802928405536, -1.4796304844869594) +station = ('kamn', 0.0019322530152174255) +zone = ('miz052', 0.0030132714455627803) + +[48834] +centroid = (0.75280562314631838, -1.4840903592311656) +station = ('ky70', 0.0033800150225623761) +zone = ('miz058', 0.0033168093433491239) + +[48835] +centroid = (0.75092621770118584, -1.4791500826103479) +station = ('ky70', 0.0042376997626589691) +zone = ('miz059', 0.0023585900646858251) + +[48836] +centroid = (0.74472010613377437, -1.4674131971762916) +station = ('kozw', 0.0013754223923139873) +zone = ('miz068', 0.0024150885259018725) + +[48837] +centroid = (0.74607114805445063, -1.4795260963443977) +station = ('kfpk', 0.0030521462076022218) +zone = ('miz066', 0.0027691810305026285) + +[48838] +centroid = (0.75369176171414098, -1.4880095484263962) +station = ('ky70', 0.0049324913365157335) +zone = ('miz051', 0.0025923229064886114) + +[48840] +centroid = (0.74635755658470282, -1.4726976701788952) +station = ('klan', 0.0026368632428531262) +zone = ('miz067', 0.0028988523579594363) + +[48841] +centroid = (0.75245085006926549, -1.4702560767284027) +station = ('krnp', 0.0024482669607243032) +zone = ('miz060', 0.0030098098586347575) + +[48842] +centroid = (0.74409533062143796, -1.475467769501198) +station = ('ktew', 0.0018891213043947838) +zone = ('miz067', 0.0022061245097454063) + +[48843] +centroid = (0.74308235897687291, -1.4647398414544268) +station = ('kozw', 0.0012231934565488638) +zone = ('miz068', 0.0005040598983216064) + +[48845] +centroid = (0.75227951109659719, -1.4808402594579793) +station = ('ky70', 0.0039372143744619888) +zone = ('miz058', 0.0040070912860694771) + +[48846] +centroid = (0.75024941392384747, -1.4845401829392819) +station = ('ky70', 0.00080548535317286985) +zone = ('miz058', 0.00074716042032955889) + +[48847] +centroid = (0.75526037637937082, -1.4761223203305733) +station = ('kamn', 0.0016595321364717575) +zone = ('miz052', 0.00050328157041593438) + +[48848] +centroid = (0.74853150379440192, -1.4722498535994182) +station = ('krnp', 0.0033010338262871169) +zone = ('miz060', 0.0028856224312972245) + +[48849] +centroid = (0.7471111024892515, -1.4857034274324439) +station = ('ky70', 0.0024749924866675987) +zone = ('miz058', 0.0025050794709375827) + +[48850] +centroid = (0.75808847299271742, -1.4878204943618203) +station = ('krqb', 0.0059832717963876989) +zone = ('miz051', 0.0024717107321807603) + +[48851] +centroid = (0.74963732695517304, -1.4824198347909119) +station = ('ky70', 0.00159083795454663) +zone = ('miz058', 0.0017686044322298316) + +[48852] +centroid = (0.75662984897694818, -1.4843332916097505) +station = ('kamn', 0.004577358792131332) +zone = ('miz051', 0.0015257939647969308) + +[48853] +centroid = (0.75223545898627686, -1.4780373653990315) +station = ('kamn', 0.0038752378045522396) +zone = ('miz059', 0.0029303217648998939) + +[48854] +centroid = (0.74319083118988438, -1.4739586880167534) +station = ('ktew', 0.00045691368446645127) +zone = ('miz067', 0.001037833555077604) + +[48855] +centroid = (0.74492883005902033, -1.4642821812179689) +station = ('kozw', 0.001436958836265501) +zone = ('miz068', 0.0013785080991061175) + +[48856] +centroid = (0.75393354217541975, -1.478878718818248) +station = ('kamn', 0.0022532896997138449) +zone = ('miz052', 0.0023356428444876905) + +[48857] +centroid = (0.74771556236909464, -1.4687925657907277) +station = ('krnp', 0.0026585743153867457) +zone = ('miz060', 0.0019712269016911041) + +[48858] +centroid = (0.76124338250849999, -1.4799599502898584) +station = ('kmop', 0.00078508216552597519) +zone = ('miz046', 0.00077646405968240359) + +[48860] +centroid = (0.75137841505708503, -1.4819408117244093) +station = ('ky70', 0.0027309968021561851) +zone = ('miz058', 0.0028062534709515983) + +[48861] +centroid = (0.74582297968810951, -1.4822214257615451) +station = ('kfpk', 0.0031206805353106194) +zone = ('miz066', 0.002627608744485446) + +[48864] +centroid = (0.74532837083138681, -1.4729206883507149) +station = ('ktew', 0.0024474281155083197) +zone = ('miz067', 0.0018838166696553301) + +[48865] +centroid = (0.7520044995663604, -1.4853446750046964) +station = ('ky70', 0.0026209229145817987) +zone = ('miz058', 0.0024993894501652513) + +[48866] +centroid = (0.75044935884295594, -1.4726412785907632) +station = ('krnp', 0.003029667926438293) +zone = ('miz060', 0.00302817548706379) + +[48867] +centroid = (0.7505390164066309, -1.469374842535778) +station = ('krnp', 0.00066249419050743504) +zone = ('miz060', 0.0010116067446085605) + +[48870] +centroid = (0.7524185614781036, -1.4832637363908361) +station = ('ky70', 0.0031253098703909166) +zone = ('miz058', 0.0031045632215859578) + +[48871] +centroid = (0.75322568899068831, -1.4778366874416373) +station = ('kamn', 0.0028903451560924835) +zone = ('miz052', 0.0025314539960833464) + +[48872] +centroid = (0.74697735790867115, -1.4699703837831437) +station = ('krnp', 0.0035551401399724664) +zone = ('miz060', 0.0028771506899939337) + +[48873] +centroid = (0.75043679247234163, -1.4808095765697291) +station = ('ky70', 0.0029299672220748098) +zone = ('miz059', 0.003235101842879156) + +[48874] +centroid = (0.75374572729461264, -1.4764601811671743) +station = ('kamn', 0.0026429600588387878) +zone = ('miz052', 0.0018586651422949341) + +[48875] +centroid = (0.74806230693158837, -1.4825079390115523) +station = ('ky70', 0.0020512208225624468) +zone = ('miz058', 0.0022498737423296213) + +[48876] +centroid = (0.74428262190346939, -1.4788409324399423) +station = ('kfpk', 0.0015942656209934701) +zone = ('miz066', 0.0016114499645974532) + +[48877] +centroid = (0.75753806595980844, -1.48075133493259) +station = ('kamn', 0.0024099741999420044) +zone = ('miz052', 0.0035675558069218735) + +[48878] +centroid = (0.76281526093943097, -1.4796876614732548) +station = ('kmop', 0.001667703038652031) +zone = ('miz046', 0.001420802443464186) + +[48879] +centroid = (0.75054423494109435, -1.4761762335511672) +station = ('klan', 0.0038346673293579671) +zone = ('miz059', 0.0010772307584005633) + +[48880] +centroid = (0.75850026597643294, -1.4761708404837788) +station = ('kamn', 0.0027634327644224547) +zone = ('miz052', 0.0029194431493539158) + +[48881] +centroid = (0.7493243370604129, -1.4870481687145203) +station = ('ky70', 0.0018130962573991293) +zone = ('miz058', 0.0016359090684871878) + +[48883] +centroid = (0.75998140473955289, -1.4778381011583313) +station = ('kmop', 0.0014783591802283009) +zone = ('miz046', 0.002762378156482166) + +[48884] +centroid = (0.75415402961982414, -1.4843887058135015) +station = ('ky70', 0.0047116580864539825) +zone = ('miz051', 0.002199401164502417) + +[48885] +centroid = (0.75473119255016607, -1.4861118868372878) +station = ('ky70', 0.0054043151781949282) +zone = ('miz051', 0.0011897109663403121) + +[48886] +centroid = (0.75774724367066004, -1.4863170153842751) +station = ('krqb', 0.006902497205197919) +zone = ('miz051', 0.0018300319125202226) + +[48888] +centroid = (0.75598613664222769, -1.4853811000261854) +station = ('ky70', 0.0065680223390400232) +zone = ('miz051', 0.00059214103634762415) + +[48889] +centroid = (0.75545616741485955, -1.4801525299195235) +station = ('kamn', 0.0016437267243328336) +zone = ('miz052', 0.0025664338785234206) + +[48890] +centroid = (0.74642387909627872, -1.4829411995450674) +station = ('ky70', 0.0032498631891094702) +zone = ('miz066', 0.003403264710863961) + +[48891] +centroid = (0.75739180736849132, -1.4819853699802128) +station = ('kamn', 0.0031147868451936673) +zone = ('miz051', 0.0033931851801228814) + +[48892] +centroid = (0.74408169959997994, -1.468988845518407) +station = ('kozw', 0.0023466655496662795) +zone = ('miz068', 0.0033205839204692796) + +[48893] +centroid = (0.76245656087156122, -1.4830944045468075) +station = ('kmop', 0.0032806807318737337) +zone = ('miz046', 0.0018003971147070444) + +[48894] +centroid = (0.74912119818877332, -1.4797913863907008) +station = ('ky70', 0.0035188350583653812) +zone = ('miz059', 0.002386521758846519) + +[48895] +centroid = (0.74506212085399515, -1.4709597236696368) +station = ('ktew', 0.002830697176817539) +zone = ('miz067', 0.0020046510261366086) + +[48896] +centroid = (0.75958954341589524, -1.4818024594746038) +station = ('kmop', 0.00269607909647309) +zone = ('miz046', 0.0021929583784562911) + +[48897] +centroid = (0.74532362353582149, -1.4858048834218622) +station = ('ky70', 0.0042180163904672165) +zone = ('miz065', 0.0029785733707575726) + +[48906] +centroid = (0.74685684292382093, -1.4762868699724514) +station = ('klan', 0.00014836815410890219) +zone = ('miz059', 0.0026587537417504157) + +[48910] +centroid = (0.74524122654183478, -1.4751514983874439) +station = ('klan', 0.0016785025199235731) +zone = ('miz067', 0.0025892028228677345) + +[48911] +centroid = (0.74478452623646541, -1.4760497669935679) +station = ('klan', 0.0019315518293940169) +zone = ('miz067', 0.0028648145278841026) + +[48912] +centroid = (0.74592665224567811, -1.4752216780766667) +station = ('klan', 0.0010918843100952275) +zone = ('miz067', 0.0031321453781594879) + +[48915] +centroid = (0.7459179779592956, -1.4760413021466956) +station = ('klan', 0.00080782538546744049) +zone = ('miz067', 0.0035294395230558275) + +[48917] +centroid = (0.74569609425148964, -1.4772386852800266) +station = ('klan', 0.0012437678236648694) +zone = ('miz066', 0.00340504124787937) + +[48921] +centroid = (0.74562816603700199, -1.4758649017191965) +station = ('klan', 0.0011196461482625728) +zone = ('miz067', 0.0032368859215689805) + +[48933] +centroid = (0.7458140261490469, -1.4757576163300765) +station = ('klan', 0.0009683092760122933) +zone = ('miz067', 0.0033081954361231162) + +[49001] +centroid = (0.73765543220072183, -1.4933306733432916) +station = ('kazo', 0.00056476350780810224) +zone = ('miz072', 0.00051506813241209717) + +[49002] +centroid = (0.73644710585298101, -1.493355858444398) +station = ('kazo', 0.00068452304214790618) +zone = ('miz072', 0.00096595603530162319) + +[49004] +centroid = (0.73920947336669751, -1.4933724914321695) +station = ('kazo', 0.0021064558765618155) +zone = ('miz072', 0.0019348765803033901) + +[49006] +centroid = (0.7381433215398242, -1.4945509202898235) +station = ('kazo', 0.0014742318244868036) +zone = ('miz072', 0.0015337635627631337) + +[49007] +centroid = (0.73831949507452055, -1.4937957686823633) +station = ('kazo', 0.0013055514068215594) +zone = ('miz072', 0.0012401936780362982) + +[49008] +centroid = (0.73764317998937279, -1.4942993659847335) +station = ('kazo', 0.0010167805823025056) +zone = ('miz072', 0.0011547578597214995) + +[49009] +centroid = (0.73833968853396614, -1.495710098165828) +station = ('kazo', 0.0022711269742427842) +zone = ('miz072', 0.0023812332018852333) + +[49010] +centroid = (0.74234624891155176, -1.4987974110796807) +station = ('kbiv', 0.0047608362882053355) +zone = ('miz064', 0.0010272311910036788) + +[49011] +centroid = (0.73490550888457196, -1.4873031438649442) +station = ('kbtl', 0.0033970010842910886) +zone = ('miz073', 0.0036557114048582466) + +[49012] +centroid = (0.73946406454468594, -1.489537636546395) +station = ('kbtl', 0.0017009853519364911) +zone = ('miz072', 0.0032274041713356585) + +[49013] +centroid = (0.73837061576831153, -1.5028687929856857) +station = ('klwa', 0.0020678220132222674) +zone = ('miz071', 0.0014901421774508707) + +[49014] +centroid = (0.73852832371952171, -1.4853836307536008) +station = ('krmy', 0.0022384396192945107) +zone = ('miz073', 0.0017601251819202648) + +[49015] +centroid = (0.73776430583946118, -1.4875221303261921) +station = ('kbtl', 0.00057915651943649994) +zone = ('miz073', 0.0029144133378996434) + +[49017] +centroid = (0.74004344404317801, -1.4872985187424266) +station = ('kbtl', 0.0018229392759660141) +zone = ('miz065', 0.0035854972504934693) + +[49021] +centroid = (0.74107437512574592, -1.4844853097875994) +station = ('kfpk', 0.0037094595510556295) +zone = ('miz066', 0.0036537033747727483) + +[49022] +centroid = (0.73499527116800212, -1.507249726487824) +station = ('kbeh', 0.00083267066321611645) +zone = ('miz077', 0.0028347074054635253) + +[49024] +centroid = (0.73664261763578953, -1.4943159466126275) +station = ('kazo', 0.00099577383616565531) +zone = ('miz072', 0.0013111177408410787) + +[49026] +centroid = (0.73961576856326938, -1.5003449770741317) +station = ('klwa', 0.0038015611363261576) +zone = ('miz071', 0.0023054207070685121) + +[49027] +centroid = (0.73915952204350543, -1.5021621964380156) +station = ('klwa', 0.0024321198202504769) +zone = ('miz071', 0.0018453904825980259) + +[49028] +centroid = (0.73044596575292364, -1.486850073844419) +station = ('koeb', 0.0022898873284039954) +zone = ('miz080', 0.0020445644571827244) + +[49029] +centroid = (0.73552379177209104, -1.4852806737810256) +station = ('krmy', 0.0026651150443046255) +zone = ('miz073', 0.0021931563838621239) + +[49030] +centroid = (0.73063273343617974, -1.4894013961449843) +station = ('kirs', 0.0015901118157322506) +zone = ('miz079', 0.0026491000653817718) + +[49031] +centroid = (0.73137498706046777, -1.5005348514434562) +station = ('kekm', 0.0032987677851996399) +zone = ('miz078', 0.00031141072370251255) + +[49032] +centroid = (0.73149346001009319, -1.4926556672550828) +station = ('khai', 0.0012151281338416769) +zone = ('miz079', 8.2846299376525942e-05) + +[49033] +centroid = (0.73700894479249057, -1.4850782155877944) +station = ('krmy', 0.0017692505194847714) +zone = ('miz073', 0.0011257605183214922) + +[49034] +centroid = (0.73711406597333817, -1.4894850846826175) +station = ('kbtl', 0.0016534372659832259) +zone = ('miz072', 0.0024636827580133531) + +[49036] +centroid = (0.73146726261802075, -1.4837640001143351) +station = ('koeb', 0.00065089025973148122) +zone = ('miz080', 0.00060159589326905542) + +[49037] +centroid = (0.73879830870151264, -1.4877971767630138) +station = ('kbtl', 0.00052882241783442166) +zone = ('miz073', 0.0034120767138140656) + +[49038] +centroid = (0.73657819753309828, -1.5065833597794127) +station = ('kbeh', 0.0017339677723388479) +zone = ('miz071', 0.0039932797449249444) + +[49040] +centroid = (0.73244000442332735, -1.4892767621830993) +station = ('kirs', 0.0030272437719282546) +zone = ('miz079', 0.0027280180993237376) + +[49042] +centroid = (0.7306010731635485, -1.495273643679782) +station = ('khai', 0.0020452233841597284) +zone = ('miz079', 0.002108518977780791) + +[49043] +centroid = (0.73802978787198203, -1.5056694181166057) +station = ('klwa', 0.0011429380772942153) +zone = ('miz071', 0.0032800967728350222) + +[49045] +centroid = (0.73482030191048975, -1.5009678501775834) +station = ('klwa', 0.0054659872578601745) +zone = ('miz071', 0.0026165302848580878) + +[49046] +centroid = (0.74199332588350608, -1.4905221418708599) +station = ('kbtl', 0.0041951695812232608) +zone = ('miz065', 0.0018524943226678413) + +[49047] +centroid = (0.73310436400309886, -1.5030943593382133) +station = ('kbeh', 0.0044486614531118939) +zone = ('miz078', 0.0022621794956559954) + +[49048] +centroid = (0.73781615957153801, -1.492134337407512) +station = ('kazo', 0.0010197368638280378) +zone = ('miz072', 0.00069881728804327295) + +[49050] +centroid = (0.7418400161620109, -1.4878182079805002) +station = ('kbtl', 0.0035661723959325049) +zone = ('miz065', 0.0017799319274698151) + +[49051] +centroid = (0.73625740601658174, -1.4877561266190069) +station = ('kbtl', 0.0020194183395487891) +zone = ('miz073', 0.003245646055097264) + +[49052] +centroid = (0.73488391916172491, -1.4891465955274856) +station = ('kbtl', 0.0035151942820397784) +zone = ('miz072', 0.0036435881398354845) + +[49053] +centroid = (0.7380864761660868, -1.490803611119329) +station = ('kazo', 0.001978468945379471) +zone = ('miz072', 0.0016644355604511615) + +[49055] +centroid = (0.739469370345612, -1.4985015254115901) +station = ('kazo', 0.0046208105403346177) +zone = ('miz071', 0.0029163604154853313) + +[49056] +centroid = (0.73998968790221653, -1.501964293554132) +station = ('klwa', 0.0027071967522031863) +zone = ('miz071', 0.0026101867886401502) + +[49057] +centroid = (0.73621387750503697, -1.503827066011493) +station = ('klwa', 0.003183769649427464) +zone = ('miz071', 0.0022207828715572636) + +[49058] +centroid = (0.74412095205485729, -1.4887517322375143) +station = ('kgrr', 0.0051530069776426924) +zone = ('miz065', 0.00070923722118760972) + +[49060] +centroid = (0.74043038353834512, -1.4902663115091026) +station = ('kbtl', 0.0027791393025070415) +zone = ('miz065', 0.0031522067985972836) + +[49061] +centroid = (0.73083117737213144, -1.4977585387490162) +station = ('kekm', 0.0036436355568155859) +zone = ('miz078', 0.0024290949443508862) + +[49064] +centroid = (0.73689347380917858, -1.5018403577239479) +station = ('klwa', 0.0035053259631670011) +zone = ('miz071', 0.00065894510400532136) + +[49065] +centroid = (0.73545160495422846, -1.4982274214525644) +station = ('kazo', 0.0041259302594610879) +zone = ('miz071', 0.003019500827692331) + +[49066] +centroid = (0.73369695564402859, -1.4894901635907407) +station = ('kirs', 0.0041260641796015086) +zone = ('miz079', 0.0032356926329506429) + +[49067] +centroid = (0.73346016682441051, -1.4974709608481651) +station = ('khai', 0.0029305672691354034) +zone = ('miz078', 0.0031627143429089743) + +[49068] +centroid = (0.73786316128829421, -1.4824781636945132) +station = ('krmy', 0.00048705767804991206) +zone = ('miz073', 0.00099638879599985735) + +[49070] +centroid = (0.74245137009239948, -1.4945147919743071) +station = ('kazo', 0.0054378262216411991) +zone = ('miz064', 0.0034507774342750876) + +[49071] +centroid = (0.73699047920900451, -1.4970648750911035) +station = ('kazo', 0.0029166838672309205) +zone = ('miz072', 0.0031741506545695979) + +[49072] +centroid = (0.73324861546577624, -1.4915616774266403) +station = ('khai', 0.0019134681411428242) +zone = ('miz079', 0.0019153861813784566) + +[49073] +centroid = (0.74307267239952435, -1.4857323300848568) +station = ('kfpk', 0.0040460247700794495) +zone = ('miz065', 0.0023751362402492969) + +[49074] +centroid = (0.73857914770733979, -1.4929323543014017) +station = ('kazo', 0.0014756308007330271) +zone = ('miz072', 0.0012615695336488614) + +[49075] +centroid = (0.73159861609752586, -1.4913594635795044) +station = ('kirs', 0.0018320846055540072) +zone = ('miz079', 0.0010299088936105859) + +[49076] +centroid = (0.74051937787690425, -1.4814412286793186) +station = ('kfpk', 0.0026950404570163589) +zone = ('miz066', 0.0029721795742401048) + +[49078] +centroid = (0.74128514108621679, -1.4963204921651281) +station = ('kazo', 0.0047945661223826701) +zone = ('miz064', 0.0028811200889077232) + +[49079] +centroid = (0.73722978130274541, -1.4993787628002275) +station = ('kazo', 0.0046285583051954909) +zone = ('miz071', 0.0014450239958630595) + +[49080] +centroid = (0.74100442232932606, -1.4937982819564859) +station = ('kazo', 0.0039249815312774926) +zone = ('miz072', 0.0037561095503134386) + +[49082] +centroid = (0.73200913499088749, -1.4813758137389537) +station = ('koeb', 0.0022879151860129591) +zone = ('miz080', 0.0024083188422914354) + +[49083] +centroid = (0.73963755027233413, -1.4915780660683167) +station = ('kazo', 0.0027750323702202687) +zone = ('miz072', 0.0024865288385941997) + +[49084] +centroid = (0.73622440184042648, -1.5076513442020003) +station = ('kbeh', 0.0009687026757014619) +zone = ('miz077', 0.0039977422023372471) + +[49085] +centroid = (0.7339855981957234, -1.509057049834849) +station = ('kbeh', 0.0015025727526673113) +zone = ('miz077', 0.0018579836430464593) + +[49087] +centroid = (0.73520631638115319, -1.4957592291842718) +station = ('kazo', 0.0027249573960995074) +zone = ('miz072', 0.0030459686006267996) + +[49088] +centroid = (0.73617527082198286, -1.4909049623889923) +station = ('kazo', 0.0018945823189730549) +zone = ('miz072', 0.0018126347761366758) + +[49089] +centroid = (0.73312612825887125, -1.4876471133539273) +station = ('koeb', 0.002688868609837575) +zone = ('miz080', 0.0027713397082064065) + +[49090] +centroid = (0.74014922844914133, -1.5047276559055223) +station = ('klwa', 0.0011237644359392428) +zone = ('miz071', 0.0037145352860790417) + +[49091] +centroid = (0.72990390139383943, -1.4914644276807192) +station = ('kirs', 0.00024113909766620821) +zone = ('miz079', 0.0018977171105544477) + +[49092] +centroid = (0.73476396268223532, -1.4831587548363285) +station = ('krmy', 0.0026739036552272449) +zone = ('miz073', 0.0026014415494684381) + +[49093] +centroid = (0.73256486527801501, -1.4948734745888845) +station = ('khai', 0.00080967131960393748) +zone = ('miz079', 0.001884723614869385) + +[49094] +centroid = (0.7339162562645416, -1.4855120346266699) +station = ('koeb', 0.0021898393851665747) +zone = ('miz080', 0.0024469589900450294) + +[49095] +centroid = (0.73142085431321024, -1.4989071050231686) +station = ('kekm', 0.0036698337888368426) +zone = ('miz078', 0.0014684363266666012) + +[49096] +centroid = (0.74429876619905044, -1.4839002579690383) +station = ('kfpk', 0.0029646374503623668) +zone = ('miz066', 0.0024993579359287358) + +[49097] +centroid = (0.73516708137956843, -1.4920373320076863) +station = ('kazo', 0.0021053318054507111) +zone = ('miz072', 0.0022273344955676695) + +[49098] +centroid = (0.73588758820137667, -1.5053032305862448) +station = ('kbeh', 0.0022501722774636262) +zone = ('miz071', 0.0033312420958168504) + +[49099] +centroid = (0.72943002704863036, -1.495254148352037) +station = ('kirs', 0.0030451364018810848) +zone = ('miz079', 0.0028248085894282565) + +[49101] +centroid = (0.7319422190673659, -1.5094074595887721) +station = ('kbeh', 0.0035285026313630228) +zone = ('miz077', 0.00096274046227793621) + +[49102] +centroid = (0.73215211236321087, -1.5053827128803807) +station = ('kbeh', 0.0038570171569403456) +zone = ('miz077', 0.0020818405396050873) + +[49103] +centroid = (0.73210102657600495, -1.5075538675632765) +station = ('kbeh', 0.0033056774732028618) +zone = ('miz077', 0.00048708221524287871) + +[49104] +centroid = (0.73240471386585193, -1.5072484000375923) +station = ('kbeh', 0.0030536432842302513) +zone = ('miz077', 0.00071011072145725452) + +[49106] +centroid = (0.73195553592955875, -1.5106671509763989) +station = ('kbeh', 0.0038517365119871) +zone = ('miz077', 0.0018731485153441123) + +[49107] +centroid = (0.7303314372474079, -1.508272297443275) +station = ('ksbn', 0.0028502458626442351) +zone = ('miz077', 0.0019157241015474566) + +[49111] +centroid = (0.73343445812452868, -1.5060643686730397) +station = ('kbeh', 0.0025245032107970625) +zone = ('miz077', 0.0019706406413277735) + +[49112] +centroid = (0.72947840757549565, -1.5015161802686825) +station = ('kekm', 0.0014411609915350103) +zone = ('miz078', 0.002136256994291528) + +[49113] +centroid = (0.72956605801053087, -1.5097770679644671) +station = ('ksbn', 0.0030085946767041492) +zone = ('miz077', 0.0029320842963539251) + +[49115] +centroid = (0.73089200209656335, -1.5120576198848776) +station = ('kmgc', 0.0038844157596891276) +zone = ('miz077', 0.0031878644209934943) + +[49116] +centroid = (0.73047809726445301, -1.5125621596650443) +station = ('kmgc', 0.0033266148424764288) +zone = ('miz077', 0.0037103341487431897) + +[49117] +centroid = (0.72922772593503171, -1.513668838037149) +station = ('kmgc', 0.0018379041537631329) +zone = ('inz003', 0.0041167603466806665) + +[49119] +centroid = (0.73084219039971143, -1.5105693601784098) +station = ('ksbn', 0.0042897641668804293) +zone = ('miz077', 0.0022658442363380133) + +[49120] +centroid = (0.73012018259474654, -1.5050118129610393) +station = ('ksbn', 0.0025731946654511482) +zone = ('miz077', 0.0031745115780325754) + +[49125] +centroid = (0.73115153255633503, -1.5110958562005663) +station = ('kmgc', 0.0045523494032936769) +zone = ('miz077', 0.0024304719336653942) + +[49126] +centroid = (0.73347837060850885, -1.5074299491863847) +station = ('kbeh', 0.0019839785533216142) +zone = ('miz077', 0.0013524247163021448) + +[49127] +centroid = (0.73323069093435822, -1.5099773444961331) +station = ('kbeh', 0.0024881350168615172) +zone = ('miz077', 0.0016602754174978214) + +[49128] +centroid = (0.72990377922079164, -1.5114638065134718) +station = ('kmgc', 0.0035250104689526721) +zone = ('miz077', 0.0033859969079693165) + +[49129] +centroid = (0.72981783920842358, -1.5130445686702956) +station = ('kmgc', 0.0025883435358079764) +zone = ('inz003', 0.004746225654685317) + +[49130] +centroid = (0.72910120701755465, -1.4985457869614207) +station = ('kekm', 0.0020792320671499083) +zone = ('miz078', 0.0030078612231412682) + +[49201] +centroid = (0.73637790354813948, -1.4712637774786266) +station = ('kjxn', 0.0025543002407331966) +zone = ('miz074', 0.0019108628841625985) + +[49202] +centroid = (0.73770143907980434, -1.4732472569070554) +station = ('kjxn', 0.00072097105455134634) +zone = ('miz074', 0.00036352042743506753) + +[49203] +centroid = (0.73691003698377999, -1.4729989838209594) +station = ('kjxn', 0.0011963321081274933) +zone = ('miz074', 0.00057914515401973543) + +[49220] +centroid = (0.73301704518062172, -1.471992243001824) +station = ('kjym', 0.0034773341429442705) +zone = ('miz082', 0.0039738547969249164) + +[49221] +centroid = (0.73133404163621607, -1.4672057647946923) +station = ('kadg', 0.00066827416495682658) +zone = ('miz082', 0.0001285223875377417) + +[49224] +centroid = (0.73791852313216744, -1.4791120169793619) +station = ('krmy', 0.002740857837456727) +zone = ('miz073', 0.0033898694017826863) + +[49227] +centroid = (0.73216593537088659, -1.4795673733812074) +station = ('kjym', 0.0024804705029040394) +zone = ('miz081', 0.0025771398143970316) + +[49228] +centroid = (0.72970510839203728, -1.4639053471791708) +station = ('kduh', 0.0031394499682694992) +zone = ('miz082', 0.0028999836049250285) + +[49229] +centroid = (0.73281161992766186, -1.4630613234061991) +station = ('karb', 0.0041311237813254093) +zone = ('miz082', 0.0034947955647283502) + +[49230] +centroid = (0.73463716451207783, -1.4698699400846913) +station = ('kadg', 0.0042937776372432993) +zone = ('miz074', 0.0038204517158042742) + +[49232] +centroid = (0.72850681768749548, -1.4776759775241135) +station = ('kjym', 0.003321337813625899) +zone = ('miz081', 0.0027365679630194308) + +[49233] +centroid = (0.73410490890338964, -1.4724034251203013) +station = ('kjxn', 0.0038323246412276459) +zone = ('miz074', 0.0033637948451096895) + +[49234] +centroid = (0.73525549975947446, -1.4725118275201428) +station = ('kjxn', 0.0027464722817465109) +zone = ('miz074', 0.0022343723491611996) + +[49235] +centroid = (0.73066311961845687, -1.4695832872083439) +station = ('kadg', 0.0015291169669523199) +zone = ('miz082', 0.0018308523654640568) + +[49236] +centroid = (0.73436416011048089, -1.4650590970812019) +station = ('karb', 0.0034906029077473753) +zone = ('miz075', 0.0033723305103812193) + +[49237] +centroid = (0.73601323445422773, -1.4774472172190547) +station = ('kjxn', 0.0029201167668039723) +zone = ('miz074', 0.0032492588435881001) + +[49238] +centroid = (0.73133187742794359, -1.4623345159457908) +station = ('kduh', 0.003362655222826303) +zone = ('miz082', 0.0036500334773713174) + +[49240] +centroid = (0.73798285596839586, -1.4692421626060417) +station = ('kjxn', 0.0036957143547287213) +zone = ('miz074', 0.0031831917401564857) + +[49241] +centroid = (0.73492050126284669, -1.4766067539177568) +station = ('kjym', 0.0032621422562108984) +zone = ('miz074', 0.0033836169187139516) + +[49242] +centroid = (0.73105381157151572, -1.4769447020208204) +station = ('kjym', 0.00077743934602310784) +zone = ('miz081', 0.00038676509984615463) + +[49245] +centroid = (0.73547743582715808, -1.4802759945108097) +station = ('krmy', 0.0026736177566714803) +zone = ('miz073', 0.0031043883416295784) + +[49246] +centroid = (0.73526864208874188, -1.4750202670809864) +station = ('kjxn', 0.0024950550405630706) +zone = ('miz074', 0.0024015125812417814) + +[49247] +centroid = (0.73020320790726378, -1.4719794148318217) +station = ('kjym', 0.0035348437688933728) +zone = ('miz082', 0.003672788264828958) + +[49248] +centroid = (0.72878708265878078, -1.4662717169389021) +station = ('kadg', 0.0021408247877985893) +zone = ('miz082', 0.0025246523148779692) + +[49249] +centroid = (0.73355026072039842, -1.4740135437151438) +station = ('kjym', 0.0025381328673466791) +zone = ('miz081', 0.003053093911784014) + +[49250] +centroid = (0.73341756333736929, -1.4770065564895112) +station = ('kjym', 0.0018281117840436309) +zone = ('miz081', 0.0023770236346736012) + +[49251] +centroid = (0.74117755899112392, -1.4731971310509382) +station = ('ktew', 0.0017475820314475194) +zone = ('miz067', 0.0023245257551754903) + +[49252] +centroid = (0.73365328750614367, -1.4794352868634164) +station = ('kjym', 0.0030620665349017145) +zone = ('miz081', 0.0034099359816105613) + +[49253] +centroid = (0.73247887290576918, -1.4708373237291943) +station = ('kadg', 0.0030294555549831167) +zone = ('miz082', 0.0029659198460467357) + +[49254] +centroid = (0.73701721765314498, -1.4715993868404926) +station = ('kjxn', 0.0020550874012641562) +zone = ('miz074', 0.0014265900798355988) + +[49255] +centroid = (0.7290449899623479, -1.480816749872955) +station = ('koeb', 0.003913562146500898) +zone = ('inz007', 0.0030135321333456841) + +[49256] +centroid = (0.72861052515164892, -1.469839955328142) +station = ('kadg', 0.0027156744650350165) +zone = ('ohz002', 0.0027575958189349037) + +[49259] +centroid = (0.739576149589249, -1.4706424228116242) +station = ('kjxn', 0.0032482250362269043) +zone = ('miz074', 0.0030329071970638154) + +[49261] +centroid = (0.73578958796387717, -1.4701955487099434) +station = ('kjxn', 0.0035372781304025261) +zone = ('miz074', 0.002894633862083623) + +[49262] +centroid = (0.73240319542940269, -1.4742497740294009) +station = ('kjym', 0.0016945789776887806) +zone = ('miz081', 0.0020912397047813829) + +[49263] +centroid = (0.73581164892562245, -1.4692932483932475) +station = ('kjxn', 0.004106180328713762) +zone = ('miz074', 0.003463107909576229) + +[49264] +centroid = (0.74082650346537782, -1.4757642136746489) +station = ('ktew', 0.0026888781144498272) +zone = ('miz067', 0.0035188057905879526) + +[49265] +centroid = (0.73315515308433188, -1.4691350168432615) +station = ('kadg', 0.0027196893184260763) +zone = ('miz082', 0.0024061169874132855) + +[49266] +centroid = (0.73024139571129754, -1.4756198400389242) +station = ('kjym', 0.0015125039761018379) +zone = ('miz081', 0.0010315451951848895) + +[49267] +centroid = (0.72880277316875608, -1.4611796839396238) +station = ('kduh', 0.00091570367292652844) +zone = ('ohz003', 0.0025244639975290431) + +[49268] +centroid = (0.7307467557962124, -1.4648376497057087) +station = ('kadg', 0.0020060305343004071) +zone = ('miz082', 0.0018437124353584608) + +[49269] +centroid = (0.73805013841106026, -1.4764366192222724) +station = ('kjxn', 0.0016775805701112168) +zone = ('miz074', 0.0023005223258778266) + +[49270] +centroid = (0.73083349866003655, -1.4605051839968981) +station = ('kduh', 0.0024285668713335921) +zone = ('miz083', 0.0021007778979442357) + +[49271] +centroid = (0.73010590580146517, -1.4739845014363904) +station = ('kjym', 0.0023260454423650197) +zone = ('miz081', 0.0020631082849019711) + +[49272] +centroid = (0.73990879189138659, -1.4721535114247084) +station = ('kjxn', 0.0026924160626858396) +zone = ('miz074', 0.0027124869564622693) + +[49274] +centroid = (0.73036238193504577, -1.4793373040792093) +station = ('kjym', 0.0026094202499119569) +zone = ('miz081', 0.0022834515730190252) + +[49276] +centroid = (0.72945433948511063, -1.4621808746117377) +station = ('kduh', 0.0018858306570441706) +zone = ('ohz003', 0.003415238653250165) + +[49277] +centroid = (0.73982154288207946, -1.4742680301733768) +station = ('kjxn', 0.0021293242954642834) +zone = ('miz074', 0.0025172268596718055) + +[49279] +centroid = (0.72921250666395432, -1.4678908239793924) +station = ('kadg', 0.0015224705641587689) +zone = ('miz082', 0.0020538109487548781) + +[49282] +centroid = (0.7336394121385903, -1.473103563949739) +station = ('kjym', 0.0030893991946296523) +zone = ('miz081', 0.0035574539434025105) + +[49283] +centroid = (0.73665726094821371, -1.475685796031357) +station = ('kjxn', 0.0014990421122494512) +zone = ('miz074', 0.0017947341949977385) + +[49284] +centroid = (0.73987362350695884, -1.4780896205568363) +station = ('kfpk', 0.0035623299088484851) +zone = ('miz066', 0.0040578505346464191) + +[49285] +centroid = (0.74135560002811973, -1.4697947163939302) +station = ('ktew', 0.0031219396979123341) +zone = ('miz067', 0.0029480422735630759) + +[49286] +centroid = (0.7332976068578797, -1.4649633832250222) +station = ('kadg', 0.0032151667710642201) +zone = ('miz082', 0.002687720948577711) + +[49287] +centroid = (0.73344023516435264, -1.4673591268760648) +station = ('kadg', 0.0027320479355215244) +zone = ('miz082', 0.002234692383807173) + +[49288] +centroid = (0.72839469773634735, -1.4735742792490016) +station = ('kjym', 0.0038512767424447405) +zone = ('miz081', 0.0034249142066631751) + +[49289] +centroid = (0.72899043096993066, -1.4679581587819341) +station = ('kadg', 0.001749948167021709) +zone = ('miz082', 0.0022814623708633402) + +[49301] +centroid = (0.75002807126810966, -1.491855049820608) +station = ('kgrr', 0.0016523944921860395) +zone = ('miz057', 0.0013787567590528025) + +[49302] +centroid = (0.74737656706847977, -1.4905507478173001) +station = ('kgrr', 0.0018183480194729122) +zone = ('miz057', 0.0041287233728236183) + +[49303] +centroid = (0.75523100248805974, -1.4985507262432038) +station = ('kffx', 0.0033673443803448598) +zone = ('miz044', 0.0049909798620322125) + +[49304] +centroid = (0.76633604382630915, -1.4987602530199058) +station = ('krqb', 0.005656470763091853) +zone = ('miz038', 0.0016887093181057753) + +[49305] +centroid = (0.76361687321157956, -1.4861671614146987) +station = ('krqb', 0.0044819220652901059) +zone = ('miz045', 0.0029238845948190784) + +[49306] +centroid = (0.75180085454923773, -1.4933958788441462) +station = ('kgrr', 0.003402595523534419) +zone = ('miz057', 0.00077491187811258382) + +[49307] +centroid = (0.76269251193313825, -1.4920679101761811) +station = ('krqb', 0.00045057655580430406) +zone = ('miz045', 0.002313748268976477) + +[49309] +centroid = (0.76375300889323516, -1.4988343771532382) +station = ('krqb', 0.0047447033625214515) +zone = ('miz044', 0.0037148578345090819) + +[49310] +centroid = (0.75946009234527467, -1.4843606234658371) +station = ('kmop', 0.0043606359334954423) +zone = ('miz046', 0.003368327898672272) + +[49312] +centroid = (0.76245324474598242, -1.4975982477105132) +station = ('krqb', 0.003863855454853769) +zone = ('miz044', 0.0022899795909412427) + +[49315] +centroid = (0.74706558430235948, -1.496483628090312) +station = ('kgrr', 0.0032032833751771731) +zone = ('miz064', 0.0041545332331268245) + +[49316] +centroid = (0.74689213348129624, -1.4931373257687557) +station = ('kgrr', 0.0016219750246797492) +zone = ('miz057', 0.0041614724101269535) + +[49318] +centroid = (0.75445829286832444, -1.4978490864306098) +station = ('kffx', 0.0042916662891553797) +zone = ('miz057', 0.0048505479843608821) + +[49319] +centroid = (0.7545073715268904, -1.4927434922230431) +station = ('kgrr', 0.0060537064656835645) +zone = ('miz057', 0.0034644344753803923) + +[49320] +centroid = (0.76364411780120323, -1.4883376703257714) +station = ('krqb', 0.0029345237254184264) +zone = ('miz045', 0.0020617556393504855) + +[49321] +centroid = (0.75176956079574953, -1.4954040197749059) +station = ('kgrr', 0.0039181308906136303) +zone = ('miz057', 0.0018193024696611059) + +[49322] +centroid = (0.75670119803676972, -1.4896599143137896) +station = ('krqb', 0.0066864857159390388) +zone = ('miz051', 0.0026423624927128918) + +[49323] +centroid = (0.74575384719643811, -1.4973291702997331) +station = ('kgrr', 0.0044278152863918901) +zone = ('miz064', 0.0027041451031864258) + +[49325] +centroid = (0.74631669842691362, -1.4887959763340526) +station = ('kgrr', 0.0034849510078141252) +zone = ('miz065', 0.0028952083653048287) + +[49326] +centroid = (0.75478770631134573, -1.4890513354569117) +station = ('ky70', 0.006263096412681044) +zone = ('miz051', 0.0023709274525949304) + +[49327] +centroid = (0.75613818972666136, -1.4982833243485059) +station = ('kffx', 0.0027387968945443496) +zone = ('miz044', 0.0040651528317785868) + +[49328] +centroid = (0.74409808824165602, -1.4967623920784405) +station = ('kgrr', 0.0053444530444100736) +zone = ('miz064', 0.0018290323976524708) + +[49329] +centroid = (0.75758585307472814, -1.4919926864854203) +station = ('krqb', 0.0055211172267239294) +zone = ('miz045', 0.0045673111289225091) + +[49330] +centroid = (0.75470717681965882, -1.4963873382754793) +station = ('kffx', 0.0047262949492913623) +zone = ('miz057', 0.0043646426448055537) + +[49331] +centroid = (0.74960833703629737, -1.4896650106752056) +station = ('kgrr', 0.0024052654519309421) +zone = ('miz057', 0.0029082201252704138) + +[49332] +centroid = (0.7613660442483301, -1.4878778109744557) +station = ('krqb', 0.0036576620843245555) +zone = ('miz045', 0.001001855273174966) + +[49333] +centroid = (0.74524611346374048, -1.4915897248677199) +station = ('kgrr', 0.0032852938144181552) +zone = ('miz065', 0.0026779389776266176) + +[49335] +centroid = (0.74592764708335169, -1.4951965350334289) +station = ('kgrr', 0.0031884418169859235) +zone = ('miz064', 0.003816958593344663) + +[49336] +centroid = (0.75936603655188473, -1.4911340019467316) +station = ('krqb', 0.0038344612734094192) +zone = ('miz045', 0.0027053396428850024) + +[49337] +centroid = (0.75812009835876348, -1.4959617920972583) +station = ('kffx', 0.0035197110782395984) +zone = ('miz044', 0.0023316902456461787) + +[49338] +centroid = (0.76395949879703862, -1.4940413539614112) +station = ('krqb', 0.0015052513834189687) +zone = ('miz044', 0.0045490906096442895) + +[49339] +centroid = (0.75627488391367759, -1.4921946559864609) +station = ('krqb', 0.006827395568054292) +zone = ('miz057', 0.0052642811180193972) + +[49340] +centroid = (0.76127649140441034, -1.4854631305010291) +station = ('krqb', 0.0052911554780763533) +zone = ('miz046', 0.0033593607208871716) + +[49341] +centroid = (0.75265814282452492, -1.4920981741854107) +station = ('kgrr', 0.0042156022194674934) +zone = ('miz057', 0.0017681888743845573) + +[49342] +centroid = (0.76254194237856876, -1.4890379662348414) +station = ('krqb', 0.00244415319814469) +zone = ('miz045', 0.00087183504354985952) + +[49343] +centroid = (0.75567892378729162, -1.4928690686627242) +station = ('kgrr', 0.007227381407906709) +zone = ('miz057', 0.0046288324364565465) + +[49344] +centroid = (0.7433340703615956, -1.4938500135155151) +station = ('kgrr', 0.0052098917687372721) +zone = ('miz064', 0.0038175765717278773) + +[49345] +centroid = (0.75320277281760972, -1.4958160745580091) +station = ('kgrr', 0.0053149835652043856) +zone = ('miz057', 0.0029170000962329351) + +[49346] +centroid = (0.76087428027828818, -1.4908799343675188) +station = ('krqb', 0.0024617593379638925) +zone = ('miz045', 0.0014613947272856212) + +[49347] +centroid = (0.75601880920582498, -1.4895869246444713) +station = ('krqb', 0.0073566268549258964) +zone = ('miz051', 0.0024738025816079178) + +[49348] +centroid = (0.74499523983705873, -1.4941796538513392) +station = ('kgrr', 0.0036616243300662365) +zone = ('miz064', 0.0039292449758533054) + +[49349] +centroid = (0.76053348728854375, -1.4965981391425354) +station = ('krqb', 0.0040170176464175891) +zone = ('miz044', 0.00075579554766864413) + +[49401] +centroid = (0.75006669540445625, -1.4999235149663599) +station = ('kbiv', 0.0044427948249036167) +zone = ('miz056', 0.00074845409386456528) + +[49402] +centroid = (0.7667790258437579, -1.501492496150733) +station = ('kmbl', 0.0064445989955646248) +zone = ('miz038', 0.0030249080194061765) + +[49403] +centroid = (0.75295205627056072, -1.4985007051068417) +station = ('kffx', 0.0054826733048341141) +zone = ('miz056', 0.0036028279591527232) + +[49404] +centroid = (0.75159878032844185, -1.5001486275332823) +station = ('kmkg', 0.0040095815754103018) +zone = ('miz056', 0.0018805182357444813) + +[49405] +centroid = (0.76645596539921368, -1.5043208720167598) +station = ('kldm', 0.0027760026049543736) +zone = ('miz037', 0.0015886392140930126) + +[49406] +centroid = (0.74424932102134134, -1.5045238363554743) +station = ('kbiv', 0.0022959746881226631) +zone = ('miz064', 0.0041360407569000059) + +[49408] +centroid = (0.74301594919883451, -1.5030118576244715) +station = ('kbiv', 0.0031192744526122441) +zone = ('miz064', 0.0029479104272669347) + +[49410] +centroid = (0.76850410927642898, -1.5031848895665141) +station = ('kmbl', 0.0043788567355426099) +zone = ('miz037', 0.0016774825201221267) + +[49411] +centroid = (0.76969742579260259, -1.505377215093237) +station = ('kmbl', 0.0029017401307475893) +zone = ('miz037', 0.0018330224084705262) + +[49412] +centroid = (0.75866776522474677, -1.5000798964673387) +station = ('kffx', 0.00072566553920960298) +zone = ('miz044', 0.002391201933270224) + +[49415] +centroid = (0.75312639720954244, -1.5029781902232004) +station = ('kmkg', 0.0015399654652178284) +zone = ('miz050', 0.0024850296122288914) + +[49417] +centroid = (0.75084572311608389, -1.5037106525503849) +station = ('kmkg', 0.0027370160727719474) +zone = ('miz056', 0.0023239556559522092) + +[49418] +centroid = (0.7483621370437884, -1.4969319159086867) +station = ('kgrr', 0.0032142051103736195) +zone = ('miz057', 0.0038790325566304545) + +[49419] +centroid = (0.74490196944183207, -1.500647198287407) +station = ('kbiv', 0.0019601620328429307) +zone = ('miz064', 0.0019464427629674933) + +[49420] +centroid = (0.76305768717253308, -1.5059104480863061) +station = ('kldm', 0.0045531504403939407) +zone = ('miz043', 0.0013966991937359029) + +[49421] +centroid = (0.76095182525695426, -1.5021942057764972) +station = ('kffx', 0.00295674399883684) +zone = ('miz043', 0.0026027795791589061) + +[49423] +centroid = (0.74602014953370732, -1.5024440496589202) +station = ('kbiv', 0.00023519573807284319) +zone = ('miz064', 0.0036560675041770996) + +[49424] +centroid = (0.74776568822521194, -1.5033280938316405) +station = ('kbiv', 0.0016955123648391454) +zone = ('miz056', 0.0027098745479159601) + +[49425] +centroid = (0.75797581198950115, -1.502541526297644) +station = ('kffx', 0.0012734199240406292) +zone = ('miz050', 0.0025151072715531809) + +[49426] +centroid = (0.74806787453190215, -1.4990368004398844) +station = ('kbiv', 0.0033313430014814413) +zone = ('miz056', 0.0021907900252557825) + +[49428] +centroid = (0.7490988928809329, -1.4981704539057794) +station = ('kgrr', 0.0041689761521688873) +zone = ('miz056', 0.0020999431658239617) + +[49431] +centroid = (0.76769706903030688, -1.5080775885119224) +station = ('kldm', 0.0003437514560916988) +zone = ('miz037', 0.0019757873457103906) + +[49434] +centroid = (0.74647299266142975, -1.5047967883971936) +station = ('kbiv', 0.0015571977716889094) +zone = ('miz056', 0.0043923420283905031) + +[49435] +centroid = (0.75091846843930699, -1.4981030143834824) +station = ('kgrr', 0.0047540054667995308) +zone = ('miz056', 0.0023189981225335003) + +[49436] +centroid = (0.7623302863001794, -1.509118363251472) +station = ('kldm', 0.0051011997349850067) +zone = ('miz043', 0.0025947407563172028) + +[49437] +centroid = (0.75854365486163755, -1.5077289240872516) +station = ('kffx', 0.005037702819770889) +zone = ('miz043', 0.0034744939765486639) + +[49440] +centroid = (0.75464006890991953, -1.5054195393275978) +station = ('kmkg', 0.0012676796123686611) +zone = ('miz050', 0.0016401476291954019) + +[49441] +centroid = (0.75370073270649629, -1.5059639773344649) +station = ('kmkg', 0.00072732895682609694) +zone = ('miz050', 0.0025604489850554525) + +[49442] +centroid = (0.75471250007387736, -1.5033519001226374) +station = ('kmkg', 0.0018065550360117739) +zone = ('miz050', 0.00087572934234864716) + +[49444] +centroid = (0.75361018502490273, -1.5044581596157216) +station = ('kmkg', 0.00048355200306460081) +zone = ('miz050', 0.0020681092619405112) + +[49445] +centroid = (0.75559731219146842, -1.5061123826807619) +station = ('kmkg', 0.0023278846483644916) +zone = ('miz050', 0.0018521345631392486) + +[49446] +centroid = (0.76011591726500416, -1.5075931200181538) +station = ('kffx', 0.0052919894436898466) +zone = ('miz043', 0.0021002079679431056) + +[49448] +centroid = (0.75213126282993281, -1.5022275764717952) +station = ('kmkg', 0.0024229096566373027) +zone = ('miz056', 0.0025362295922875364) + +[49449] +centroid = (0.76434305235345679, -1.5077651222159378) +station = ('kldm', 0.0030234585035788346) +zone = ('miz043', 0.0030764988738760674) + +[49450] +centroid = (0.74149707641728646, -1.5024222504965628) +station = ('klwa', 0.0032344374954411657) +zone = ('miz064', 0.0031132571578341467) + +[49451] +centroid = (0.7542103339414935, -1.5004204974708653) +station = ('kffx', 0.0039707440158362091) +zone = ('miz050', 0.0026673763968000789) + +[49452] +centroid = (0.75938366437732985, -1.5054935238345899) +station = ('kffx', 0.0036095184721992245) +zone = ('miz043', 0.002292986153774503) + +[49453] +centroid = (0.74454911622695652, -1.503996746921372) +station = ('kbiv', 0.0018336543845798323) +zone = ('miz064', 0.0038398406361345987) + +[49454] +centroid = (0.7670081875745447, -1.5059582701078109) +station = ('kldm', 0.0014871689434501052) +zone = ('miz037', 0.00096468410066149362) + +[49455] +centroid = (0.76114309588968032, -1.5075848820640845) +station = ('kldm', 0.0062260318102373129) +zone = ('miz043', 0.0014988724324607214) + +[49456] +centroid = (0.75204671908096621, -1.504593719338724) +station = ('kmkg', 0.0013950784927666353) +zone = ('miz050', 0.0036056650463349512) + +[49457] +centroid = (0.75664796549458391, -1.5035346011887363) +station = ('kffx', 0.0024986121876693422) +zone = ('miz050', 0.0010742630036194697) + +[49458] +centroid = (0.76662447693849367, -1.5027030914265012) +station = ('kldm', 0.0038595293565754844) +zone = ('miz037', 0.00226806303969592) + +[49459] +centroid = (0.76343118763245987, -1.5029411019765957) +station = ('kldm', 0.0053461689712302552) +zone = ('miz043', 0.0026306322029664756) + +[49460] +centroid = (0.7493250351921138, -1.5035199055164348) +station = ('kbiv', 0.0032490224075098066) +zone = ('miz056', 0.0019911069853895424) + +[49461] +centroid = (0.75705789097599974, -1.506555207618578) +station = ('kmkg', 0.0038169387583733556) +zone = ('miz050', 0.0026311784734029484) + +[49464] +centroid = (0.74778284481175894, -1.500717761949065) +station = ('kbiv', 0.0022168538399670807) +zone = ('miz056', 0.0020157118659934071) + +[49503] +centroid = (0.74983044763690621, -1.4950384605630758) +station = ('kgrr', 0.0022843678463788917) +zone = ('miz057', 0.0018640474593590473) + +[49504] +centroid = (0.75017007125605184, -1.4959339191891039) +station = ('kgrr', 0.0030146262881696681) +zone = ('miz057', 0.0022426073259772298) + +[49505] +centroid = (0.75043009040801389, -1.4946604397003862) +station = ('kgrr', 0.0025084707044380713) +zone = ('miz057', 0.0012904569919222337) + +[49506] +centroid = (0.74954470233176973, -1.4942433758223295) +station = ('kgrr', 0.0016520999393248377) +zone = ('miz057', 0.0017197983440846263) + +[49507] +centroid = (0.74928136705422888, -1.4949647902153491) +station = ('kgrr', 0.0019538316468225114) +zone = ('miz057', 0.0022297103159966015) + +[49508] +centroid = (0.74827989712943455, -1.4943698249266366) +station = ('kgrr', 0.0013469524225215251) +zone = ('miz057', 0.0029217297947846952) + +[49509] +centroid = (0.74870622870581904, -1.4956215750661668) +station = ('kgrr', 0.0022662399285414947) +zone = ('miz057', 0.0029789066822836518) + +[49512] +centroid = (0.74844509254313574, -1.4927466163624044) +station = ('kgrr', 0.00014633635575254556) +zone = ('miz057', 0.0026223935861963321) + +[49519] +centroid = (0.74867184571955481, -1.4960659533470173) +station = ('kgrr', 0.0025870028580560196) +zone = ('miz057', 0.0032148405947758337) + +[49525] +centroid = (0.75081109578372429, -1.4938780784098873) +station = ('kgrr', 0.0025491400105115041) +zone = ('miz057', 0.00060812835903298465) + +[49534] +centroid = (0.74987090436896753, -1.4972687644543217) +station = ('kgrr', 0.0037358281864474066) +zone = ('miz057', 0.0032598956269199158) + +[49544] +centroid = (0.75117106994194816, -1.4965599687917943) +station = ('kgrr', 0.0039997337873944917) +zone = ('miz057', 0.0025206158573191592) + +[49546] +centroid = (0.74932381346163734, -1.4928846195463596) +station = ('kgrr', 0.00090289356869062475) +zone = ('miz057', 0.0017379672004105274) + +[49548] +centroid = (0.74823057412477312, -1.4950945030853571) +station = ('kgrr', 0.0018800487074957023) +zone = ('miz057', 0.0031730236665192782) + +[49601] +centroid = (0.77223759543924764, -1.4924346213053177) +station = ('kcad', 0.0013388085726099097) +zone = ('miz032', 0.0018251666951930119) + +[49611] +centroid = (0.784938845098201, -1.483084613249704) +station = ('kacb', 0.002775258317347264) +zone = ('miz021', 0.0020675649720553091) + +[49612] +centroid = (0.78304060755043936, -1.4877091598088357) +station = ('kacb', 0.0022130649862158675) +zone = ('miz021', 0.0026764789183014981) + +[49613] +centroid = (0.7767783312876988, -1.5045941033111594) +station = ('kfks', 0.0020763428894044105) +zone = ('miz025', 0.0033262380806626142) + +[49614] +centroid = (0.77553764653562607, -1.5029788185417314) +station = ('kmbl', 0.0033913963248607109) +zone = ('miz031', 0.0019153954520284727) + +[49615] +centroid = (0.78481829520676571, -1.4871788066090321) +station = ('kacb', 0.00039891027783326463) +zone = ('miz021', 0.001057630451169581) + +[49616] +centroid = (0.77802076136902343, -1.5024546787140649) +station = ('kfks', 0.0016672286858505784) +zone = ('miz025', 0.0013794859614871496) + +[49617] +centroid = (0.77917138713169309, -1.5015373685658018) +station = ('kfks', 0.0021205094561599813) +zone = ('miz025', 0.00020855481907228594) + +[49618] +centroid = (0.77306716788601315, -1.4941349385159031) +station = ('kcad', 0.0023923518591810323) +zone = ('miz032', 0.00086416827259047635) + +[49619] +centroid = (0.77305969787681461, -1.5008297771804582) +station = ('kmbl', 0.0032663194028664765) +zone = ('miz031', 0.0010807002516058214) + +[49620] +centroid = (0.77708222801705595, -1.4955943130232507) +station = ('ktvc', 0.0039752420526947873) +zone = ('miz026', 0.0030522916665842894) + +[49621] +centroid = (0.78310645882311714, -1.496974152876585) +station = ('ktvc', 0.0034555850550216163) +zone = ('miz020', 0.001295503853906506) + +[49622] +centroid = (0.78674922277141712, -1.4880840390788717) +station = ('kacb', 0.0017358689578462535) +zone = ('miz021', 0.0020300722544760088) + +[49623] +centroid = (0.76635529480795861, -1.4956089912422599) +station = ('krqb', 0.0040233456889173253) +zone = ('miz038', 0.001974732059461512) + +[49625] +centroid = (0.77550994816039687, -1.4989416450890658) +station = ('kmbl', 0.0054267209745556518) +zone = ('miz031', 0.0027884725721948624) + +[49626] +centroid = (0.77213196811291696, -1.5060799893698449) +station = ('kmbl', 0.00070301131493357382) +zone = ('miz031', 0.0033566089123200052) + +[49627] +centroid = (0.78687052315443062, -1.4895498713044515) +station = ('kacb', 0.0024652705217139085) +zone = ('miz021', 0.0029466928546900834) + +[49628] +centroid = (0.77868590634695845, -1.5052487937668753) +station = ('kfks', 0.00056981619390689424) +zone = ('miz025', 0.0028704947425867112) + +[49629] +centroid = (0.78399385402800115, -1.4903352694678489) +station = ('kacb', 0.0026535359485015519) +zone = ('miz021', 0.0034189975518351518) + +[49630] +centroid = (0.78222606238853365, -1.501145542148729) +station = ('kfks', 0.0041232843273984751) +zone = ('miz025', 0.0031208505666540411) + +[49631] +centroid = (0.76642135552014667, -1.4881187536776936) +station = ('krqb', 0.0045000742902873642) +zone = ('miz039', 0.0015580002715993048) + +[49632] +centroid = (0.77211632996281909, -1.4829694215190723) +station = ('khtl', 0.0042323393047309045) +zone = ('miz033', 0.0023352081762273405) + +[49633] +centroid = (0.77769606031498228, -1.4871295883241258) +station = ('kcad', 0.0054752427850947262) +zone = ('miz027', 0.0026280340065345719) + +[49634] +centroid = (0.77169443152273454, -1.5060497951737852) +station = ('kmbl', 0.0010355062070624295) +zone = ('miz037', 0.0038634932436782897) + +[49635] +centroid = (0.77871800295190263, -1.5043416588881511) +station = ('kfks', 0.00016872053756327327) +zone = ('miz025', 0.00222800698543754) + +[49636] +centroid = (0.78287605790856141, -1.5003409279102669) +station = ('kfks', 0.004984155230189617) +zone = ('miz020', 0.0023430066245328346) + +[49637] +centroid = (0.77879411676058208, -1.4959179843330332) +station = ('ktvc', 0.0026375709548186474) +zone = ('miz026', 0.0020604968904644845) + +[49638] +centroid = (0.77295349459183071, -1.4967188810201881) +station = ('kcad', 0.0042361630492830059) +zone = ('miz032', 0.0023877700587291474) + +[49639] +centroid = (0.76527446476207617, -1.4906578761267877) +station = ('krqb', 0.0024854302836930298) +zone = ('miz039', 0.0027046099490961924) + +[49640] +centroid = (0.78042826853922442, -1.5018329575279192) +station = ('kfks', 0.0024564343814023016) +zone = ('miz025', 0.0013835985068996464) + +[49642] +centroid = (0.76566871718680907, -1.4967479407522339) +station = ('krqb', 0.0040942401423066576) +zone = ('miz038', 0.0021743315884223658) + +[49643] +centroid = (0.77911042278092102, -1.4979976139499545) +station = ('ktvc', 0.0036414311595288451) +zone = ('miz025', 0.002320553169696453) + +[49644] +centroid = (0.76980947593058058, -1.499609250981246) +station = ('kmbl', 0.0049706012057951516) +zone = ('miz038', 0.0025314752872927291) + +[49645] +centroid = (0.77426528405762962, -1.5014958122763118) +station = ('kmbl', 0.0032198521554563163) +zone = ('miz031', 0.00061217628852513616) + +[49646] +centroid = (0.78058946714893862, -1.4845030946926772) +station = ('kgov', 0.004127692320947454) +zone = ('miz027', 0.00081670917584090118) + +[49648] +centroid = (0.78533564570364178, -1.4893999300684126) +station = ('kacb', 0.0017091250685838742) +zone = ('miz021', 0.002452366377438087) + +[49649] +centroid = (0.77777758464434299, -1.492700382590519) +station = ('ktvc', 0.0030102298509918006) +zone = ('miz026', 0.0019224775771335347) + +[49650] +centroid = (0.78085744500228971, -1.4990135701075404) +station = ('kfks', 0.0043752730618530728) +zone = ('miz025', 0.0023695521367478913) + +[49651] +centroid = (0.77476071321910067, -1.4853587772650525) +station = ('kcad', 0.0043194008174936701) +zone = ('miz033', 0.00093733863342918672) + +[49653] +centroid = (0.78493793752698982, -1.4961651578617006) +station = ('ktvc', 0.0046234762834771303) +zone = ('miz020', 0.001267372927306006) + +[49654] +centroid = (0.78794952060459866, -1.501883292823547) +station = ('kfks', 0.0092810242566768331) +zone = ('miz020', 0.0046983788248607002) + +[49655] +centroid = (0.76837498981836649, -1.4911559232821368) +station = ('kcad', 0.0045221128157388411) +zone = ('miz039', 0.0015281814307994779) + +[49656] +centroid = (0.76912853572291506, -1.4956078393249539) +station = ('kcad', 0.0051017948400353397) +zone = ('miz038', 0.0019336824621600716) + +[49657] +centroid = (0.77165371299128549, -1.4864823329710237) +station = ('kcad', 0.0033321603507558495) +zone = ('miz033', 0.0023685985811519017) + +[49659] +centroid = (0.78357617928470646, -1.4838672886994682) +station = ('kacb', 0.0027402768645940763) +zone = ('miz021', 0.0023402064352835371) + +[49660] +centroid = (0.77187430515544508, -1.5046518911626932) +station = ('kmbl', 0.00087913453086220039) +zone = ('miz031', 0.002686451328601337) + +[49663] +centroid = (0.7755426730838717, -1.4903384808736726) +station = ('kcad', 0.0026733296188701872) +zone = ('miz032', 0.0028953521481328679) + +[49664] +centroid = (0.78344047993536381, -1.4992142829715196) +station = ('ktvc', 0.0049161650825521276) +zone = ('miz020', 0.001366231396175252) + +[49665] +centroid = (0.76960645923198867, -1.4855920405195815) +station = ('kcad', 0.0049736931419688711) +zone = ('miz039', 0.0031819950481404968) + +[49666] +centroid = (0.77880132497039278, -1.4931999481823175) +station = ('ktvc', 0.0019489222301650423) +zone = ('miz026', 0.00085516717014529075) + +[49667] +centroid = (0.77428614074219104, -1.4820401209588479) +station = ('khtl', 0.0031032716325923308) +zone = ('miz033', 0.0022926423753527386) + +[49668] +centroid = (0.77502071491777036, -1.4957928442256652) +station = ('kcad', 0.0041567954191912984) +zone = ('miz032', 0.0019405765488728186) + +[49670] +centroid = (0.78793684951422926, -1.4948225982411889) +station = ('kacb', 0.0061734968538631136) +zone = ('miz020', 0.0041748467650438645) + +[49674] +centroid = (0.78624653304025771, -1.4938538706931619) +station = ('kacb', 0.0049636648699349136) +zone = ('miz020', 0.0033527164588837912) + +[49675] +centroid = (0.77464030295400566, -1.5049083323896886) +station = ('kmbl', 0.0020651463643165092) +zone = ('miz031', 0.0022712877941996096) + +[49676] +centroid = (0.78246920420662902, -1.4885770247793899) +station = ('kacb', 0.0029476173434683345) +zone = ('miz021', 0.0034806119242781872) + +[49677] +centroid = (0.76610836562538653, -1.4931770669158237) +station = ('krqb', 0.0030684033938648166) +zone = ('miz039', 0.0033065688772931988) + +[49679] +centroid = (0.76576343620531484, -1.4860743448050775) +station = ('krqb', 0.0052409170660178053) +zone = ('miz039', 0.0030175997348041478) + +[49680] +centroid = (0.7792197502052659, -1.4881148790467544) +station = ('ktvc', 0.0040679347211177268) +zone = ('miz027', 0.0022447685327989437) + +[49682] +centroid = (0.78502577994824285, -1.4944733054979875) +station = ('ktvc', 0.0043464346630134165) +zone = ('miz020', 0.0024027269996651419) + +[49683] +centroid = (0.77737874200367729, -1.4997072163121605) +station = ('kfks', 0.0037076360868043418) +zone = ('miz025', 0.0020507087677290605) + +[49684] +centroid = (0.78125012663069593, -1.4958094423068518) +station = ('ktvc', 0.0017708484105055735) +zone = ('miz026', 0.002400298552741321) + +[49686] +centroid = (0.7804009715897231, -1.4932660961609678) +station = ('ktvc', 0.0003600040774549856) +zone = ('miz026', 0.00074682426599245277) + +[49688] +centroid = (0.76998701082209353, -1.4913904082671421) +station = ('kcad', 0.0029334411000427074) +zone = ('miz039', 0.0027178563616220711) + +[49689] +centroid = (0.77166640153494748, -1.4992805007633403) +station = ('kmbl', 0.0044447687743499791) +zone = ('miz031', 0.0028495251146822358) + +[49690] +centroid = (0.78171134733882797, -1.490500726680938) +station = ('ktvc', 0.0022875001222247568) +zone = ('miz026', 0.002854412251494803) + +[49701] +centroid = (0.79888324042347225, -1.4789708896560456) +station = ('kmcd', 0.0020309914084745491) +zone = ('miz016', 0.0047740975770965439) + +[49705] +centroid = (0.7915957403048175, -1.4741223824472982) +station = ('kslh', 0.0052584620385186598) +zone = ('miz017', 0.001670068318056029) + +[49706] +centroid = (0.79304888398673545, -1.4796788475605323) +station = ('kpln', 0.0022536756646141659) +zone = ('miz016', 0.001976266339283671) + +[49707] +centroid = (0.78704516079938525, -1.456934589413168) +station = ('kapn', 0.0011312192623821084) +zone = ('miz024', 0.0021469031105272817) + +[49709] +centroid = (0.78572426071489088, -1.4685983455515659) +station = ('kpzq', 0.0079090971358812562) +zone = ('miz023', 0.00026197344777539747) + +[49710] +centroid = (0.80764922640478387, -1.4690616257482152) +station = ('kciu', 0.0035936257244005066) +zone = ('miz008', 0.0048778227090858243) + +[49712] +centroid = (0.78905042193687913, -1.4836921100024456) +station = ('kmgn', 0.0039545317257071357) +zone = ('miz019', 0.0021812201483122854) + +[49713] +centroid = (0.78907965620185005, -1.4807773752450299) +station = ('kmgn', 0.0038459732300686299) +zone = ('miz019', 0.0038566054412168117) + +[49715] +centroid = (0.80978774343066739, -1.4784367141851804) +station = ('cyam', 0.0029185259740774328) +zone = ('miz008', 0.0023639126775244186) + +[49716] +centroid = (0.79442650727191966, -1.4791340081279372) +station = ('kpln', 0.0010699230430494886) +zone = ('miz016', 0.0017418823989014051) + +[49717] +centroid = (0.79298978713826296, -1.4781405841709945) +station = ('kpln', 0.0026559969329762612) +zone = ('miz017', 0.0023519531700693197) + +[49718] +centroid = (0.79821973605503416, -1.4811129671536032) +station = ('kpln', 0.0030259443664198572) +zone = ('miz016', 0.0037538333802065627) + +[49719] +centroid = (0.8029495608746462, -1.4717459072311974) +station = ('kciu', 0.0045973474509976827) +zone = ('miz008', 0.0059349250135377236) + +[49720] +centroid = (0.79029374213612225, -1.487807526565478) +station = ('kcvx', 0.00055779620859887141) +zone = ('miz019', 0.0014823251086594407) + +[49721] +centroid = (0.79556046514023293, -1.4741133940016502) +station = ('kslh', 0.0014367524918381671) +zone = ('miz017', 0.0024128358827206244) + +[49722] +centroid = (0.79285867800485321, -1.4811269646942045) +station = ('kmgn', 0.00062569984432454557) +zone = ('miz016', 0.0016601340242254057) + +[49724] +centroid = (0.8085698526786258, -1.472885310526777) +station = ('kciu', 0.0016397264657796707) +zone = ('miz008', 0.0022740244342105186) + +[49725] +centroid = (0.80247591342223989, -1.4664393209069715) +station = ('kdrm', 0.0034487499336411393) +zone = ('miz008', 0.0087164594361722574) + +[49726] +centroid = (0.80289269804761632, -1.4593655887151009) +station = ('kdrm', 0.001515285764671324) +zone = ('miz018', 0.012133733345095765) + +[49727] +centroid = (0.78758458971129919, -1.4853767192497629) +station = ('kacb', 0.002648281307462667) +zone = ('miz021', 0.0022163206856427942) + +[49728] +centroid = (0.81003512639884512, -1.4840267245266379) +station = ('kciu', 0.0073344066255443905) +zone = ('miz015', 0.0058173851552818139) + +[49729] +centroid = (0.7883110655591492, -1.4886274822480652) +station = ('kcvx', 0.0024149366072118285) +zone = ('miz019', 0.0031002902268867662) + +[49730] +centroid = (0.78616670168027158, -1.4812178090817707) +station = ('kglr', 0.0023216823434068935) +zone = ('miz021', 0.0034192673467240108) + +[49733] +centroid = (0.78202035788289359, -1.4782352159230376) +station = ('kgov', 0.0022383908964981828) +zone = ('miz028', 0.0023966638115008997) + +[49735] +centroid = (0.78536219216156478, -1.4777758103573275) +station = ('kglr', 0.00036419144768416029) +zone = ('miz022', 0.00097283839636107229) + +[49736] +centroid = (0.80403180463722279, -1.467401328937378) +station = ('kciu', 0.0056962860685187359) +zone = ('miz008', 0.0072441720070825352) + +[49738] +centroid = (0.7801329937363719, -1.4767129746560332) +station = ('kgov', 0.0015154736647762011) +zone = ('miz028', 0.00025728336055848202) + +[49740] +centroid = (0.79455777348496226, -1.4836755119212592) +station = ('kmgn', 0.002086350335136268) +zone = ('miz016', 0.0014429974888554354) + +[49743] +centroid = (0.79005745946198735, -1.4642154223740802) +station = ('kpzq', 0.0026356827743142372) +zone = ('miz018', 0.0012976740068766097) + +[49744] +centroid = (0.78527813710478855, -1.4600917853102706) +station = ('kapn', 0.0019294586735287269) +zone = ('miz024', 0.00080689017638665148) + +[49745] +centroid = (0.80354592242676015, -1.4751938575283898) +station = ('kmcd', 0.0033538707447098278) +zone = ('miz008', 0.0045599698663970753) + +[49746] +centroid = (0.78652194599622238, -1.4652888696772268) +station = ('kpzq', 0.0062285655717575035) +zone = ('miz023', 0.0022216658126521676) + +[49747] +centroid = (0.78277407832036738, -1.4600227226317692) +station = ('kapn', 0.0042159945820436874) +zone = ('miz030', 0.0029595191010729016) + +[49748] +centroid = (0.80939488726933606, -1.4872453036535331) +station = ('kery', 0.0031475626863364729) +zone = ('miz015', 0.0053296108562475922) + +[49749] +centroid = (0.79282879796805905, -1.475986097382455) +station = ('kpln', 0.0037577939404438102) +zone = ('miz017', 0.00090886546403647398) + +[49751] +centroid = (0.78509862999122104, -1.4735844021586633) +station = ('kglr', 0.0031797208114850554) +zone = ('miz022', 0.0021872055897700707) + +[49752] +centroid = (0.80728712294487259, -1.4736602192613699) +station = ('kciu', 0.0003947632928386572) +zone = ('miz008', 0.0018529718413101723) + +[49753] +centroid = (0.78573239394920524, -1.4622016091232515) +station = ('kapn', 0.0028361689807232071) +zone = ('miz024', 0.0018637945538058831) + +[49755] +centroid = (0.79647386575097168, -1.4800571127693167) +station = ('kpln', 0.0011855694612394128) +zone = ('miz016', 0.0022715349483518922) + +[49756] +centroid = (0.78233914227077039, -1.4709588684583033) +station = ('kgov', 0.006111327008724919) +zone = ('miz029', 0.003112859535504265) + +[49757] +centroid = (0.80034186443924149, -1.4769227457788305) +station = ('kmcd', 0.00024561755823059381) +zone = ('miz016', 0.0067150601257620676) + +[49759] +centroid = (0.79268449414550413, -1.4677535887403081) +station = ('kpzq', 0.0034760201252095214) +zone = ('miz018', 0.002593658944901692) + +[49760] +centroid = (0.80355953599492569, -1.481828342707411) +station = ('kmcd', 0.0044443696167156899) +zone = ('miz015', 0.0024030831338441045) + +[49762] +centroid = (0.80467904253703237, -1.489420420233831) +station = ('kery', 0.0038817121496628783) +zone = ('miz015', 0.0029985081198931293) + +[49764] +centroid = (0.79280139629880275, -1.4805174782661155) +station = ('kmgn', 0.0010528787191243947) +zone = ('miz016', 0.0018500895821022682) + +[49765] +centroid = (0.79112968503465753, -1.4703093441771735) +station = ('kpzq', 0.0054448775764906901) +zone = ('miz017', 0.003771466013430013) + +[49766] +centroid = (0.78379764411349184, -1.4561638520154874) +station = ('kapn', 0.00347757794025571) +zone = ('miz024', 0.003278922950199839) + +[49768] +centroid = (0.8142803605516411, -1.4855723532056189) +station = ('kery', 0.007259669286055064) +zone = ('miz007', 0.0060512131984832599) + +[49769] +centroid = (0.79535997916905643, -1.4811184300341622) +station = ('kpln', 0.00075890131034263145) +zone = ('miz016', 0.00094475196204045681) + +[49770] +centroid = (0.79117899058602636, -1.4817345661667012) +station = ('kmgn', 0.0016584477467993341) +zone = ('miz016', 0.0033046117474595498) + +[49774] +centroid = (0.8056867607405489, -1.4715788617684891) +station = ('kciu', 0.0023831656075837507) +zone = ('miz008', 0.0039249657001703886) + +[49775] +centroid = (0.79893347099934464, -1.4744965286790479) +station = ('kslh', 0.0021742371691321266) +zone = ('miz017', 0.0057411407655266443) + +[49776] +centroid = (0.78945085282716421, -1.4604980281469651) +station = ('kapn', 0.0029511462799540352) +zone = ('miz018', 0.0034464822497269165) + +[49777] +centroid = (0.79073066786106649, -1.457474454657395) +station = ('kapn', 0.0039465801273789103) +zone = ('miz024', 0.004957160070251548) + +[49779] +centroid = (0.79251373113148893, -1.4636916316122641) +station = ('kpzq', 0.00061985045186975269) +zone = ('miz018', 0.001351825638252918) + +[49780] +centroid = (0.80656923411694226, -1.4787939656297711) +station = ('kciu', 0.0032282273281974395) +zone = ('miz008', 0.0023905175968385707) + +[49781] +centroid = (0.80082891602030304, -1.4798846044260496) +station = ('kmcd', 0.0018998883880456457) +zone = ('miz015', 0.0050153914645370288) + +[49782] +centroid = (0.79716608078560514, -1.4930019056720936) +station = ('ksjx', 0.00042631593634587369) +zone = ('miz019', 0.0082414687597908258) + +[49783] +centroid = (0.81012775102224854, -1.4711215156912965) +station = ('kanj', 0.0013716658247819079) +zone = ('miz008', 0.0040054747522596836) + +[49788] +centroid = (0.80748265218097359, -1.4741932079083437) +station = ('kciu', 0.00026858349179929733) +zone = ('miz008', 0.0014366242082582317) + +[49791] +centroid = (0.79389364079799329, -1.4764746324933808) +station = ('kpln', 0.0028603378873490672) +zone = ('miz017', 0.0013649973633744637) + +[49793] +centroid = (0.80639304312895344, -1.4846414294891903) +station = ('kery', 0.0051106716686769521) +zone = ('miz015', 0.0021519849896067507) + +[49795] +centroid = (0.78820517643343069, -1.4761808935802703) +station = ('kglr', 0.0028259073433388117) +zone = ('miz022', 0.002445791481478238) + +[49796] +centroid = (0.78998064752160702, -1.4828170368220805) +station = ('kmgn', 0.00289986688186208) +zone = ('miz019', 0.0021882354207108266) + +[49799] +centroid = (0.78997610966555176, -1.4762061834011315) +station = ('kglr', 0.0044704866590205838) +zone = ('miz017', 0.0033680829905981414) + +[49801] +centroid = (0.80216610002671851, -1.5355135360347425) +station = ('kimt', 0.0030235593305597093) +zone = ('miz011', 0.001558696294249314) + +[49802] +centroid = (0.79937929790347406, -1.5372492485225584) +station = ('kimt', 0.00054470152081639747) +zone = ('wiz013', 0.0043790854859898868) + +[49805] +centroid = (0.82671530787332503, -1.5420216593759193) +station = ('kcmx', 0.0038348124532618486) +zone = ('miz001', 0.0041922315075782323) + +[49806] +centroid = (0.81074756979950913, -1.516711383255688) +station = ('kp53', 0.0030848425520056881) +zone = ('miz006', 0.0036755610553337041) + +[49807] +centroid = (0.79886391962865277, -1.5244729497057694) +station = ('kesc', 0.0038240267479339595) +zone = ('miz012', 0.0042327882191754073) + +[49808] +centroid = (0.81724684432137829, -1.5332124939489133) +station = ('ksaw', 0.0098454636544563299) +zone = ('miz004', 0.0068178977961646462) + +[49812] +centroid = (0.79572408975760733, -1.5272175497677005) +station = ('kesc', 0.0063613811717465321) +zone = ('miz012', 0.00069644975839831748) + +[49814] +centroid = (0.81272326505947423, -1.5342423778339302) +station = ('ksaw', 0.0071650576758151511) +zone = ('miz005', 0.0039441090179219871) + +[49815] +centroid = (0.80608722653741893, -1.535265612014497) +station = ('kimt', 0.0066956129479283149) +zone = ('miz011', 0.0032798558654343972) + +[49816] +centroid = (0.80783232889661061, -1.5166092465878613) +station = ('kp53', 0.0037394529919936659) +zone = ('miz006', 0.0041495054332387907) + +[49817] +centroid = (0.80218805626870859, -1.5089820006770134) +station = ('kisq', 0.0034808800546662169) +zone = ('miz014', 0.0035934543111511086) + +[49818] +centroid = (0.80224434313708537, -1.5245335998972762) +station = ('kesc', 0.0053724714720717994) +zone = ('miz011', 0.0063650654811022497) + +[49819] +centroid = (0.80475227655244608, -1.5264003167987468) +station = ('ksaw', 0.0043339283294375934) +zone = ('miz011', 0.0053091820315069116) + +[49820] +centroid = (0.80616922210567776, -1.4949474241892917) +station = ('kery', 0.0031798754892820168) +zone = ('miz007', 0.0050733580722843764) + +[49821] +centroid = (0.79464243940697643, -1.5294495989881984) +station = ('kmnm', 0.0069172292308887244) +zone = ('miz012', 0.0012486367441552234) + +[49822] +centroid = (0.81041782474392987, -1.518865555884962) +station = ('ksaw', 0.0046750966933618073) +zone = ('miz006', 0.0051021565691774552) + +[49825] +centroid = (0.80890572383987969, -1.5183474025366301) +station = ('ksaw', 0.0048248397425644891) +zone = ('miz006', 0.0048581754700649489) + +[49826] +centroid = (0.80849421010884437, -1.5193586463052353) +station = ('ksaw', 0.0041600549417913192) +zone = ('miz013', 0.0072135749584854312) + +[49827] +centroid = (0.80594084577305425, -1.4933142497950305) +station = ('kery', 0.0026523992651120792) +zone = ('miz007', 0.0051296403341338772) + +[49829] +centroid = (0.79872614333750025, -1.5208480404757174) +station = ('kesc', 0.0012986679564078233) +zone = ('miz013', 0.0037649802174291201) + +[49831] +centroid = (0.80307525948737479, -1.5335530774991475) +station = ('kimt', 0.0045800241732558925) +zone = ('miz011', 8.315702718536502e-05) + +[49833] +centroid = (0.80796605602389837, -1.524154845996301) +station = ('ksaw', 0.0013349272297520645) +zone = ('miz005', 0.0044856938780979171) + +[49834] +centroid = (0.80190311381502799, -1.5318473323145885) +station = ('kimt', 0.0047932820332796987) +zone = ('miz011', 0.0016603541590145046) + +[49835] +centroid = (0.79823985970130951, -1.5108023441802583) +station = ('kesc', 0.0057390585750886017) +zone = ('miz013', 0.0054466462538667925) + +[49836] +centroid = (0.80637295438926293, -1.4993001880773027) +station = ('kisq', 0.0051240525056830402) +zone = ('miz014', 0.0043565547990065826) + +[49837] +centroid = (0.8005373762220499, -1.5197869501036747) +station = ('kesc', 0.0021181423791456979) +zone = ('miz013', 0.0020702685417173395) + +[49838] +centroid = (0.8034182341386843, -1.4963853311468396) +station = ('kery', 0.0059202115669003174) +zone = ('miz015', 0.0078516694830462006) + +[49839] +centroid = (0.81363774777434927, -1.5028755474098907) +station = ('kp53', 0.0073929684873032557) +zone = ('miz085', 0.0051217114341658128) + +[49840] +centroid = (0.80452447617847589, -1.5012119170201823) +station = ('kisq', 0.0028589592282912317) +zone = ('miz014', 0.0022938607657774653) + +[49841] +centroid = (0.80765395624705671, -1.5265649188005024) +station = ('ksaw', 0.0016111795540976509) +zone = ('miz005', 0.0034524252550651312) + +[49847] +centroid = (0.79769707975723181, -1.5295402513895471) +station = ('kesc', 0.0073876059462902825) +zone = ('miz012', 0.0023922577093226398) + +[49848] +centroid = (0.79199981893323934, -1.5295440213007314) +station = ('kmnm', 0.00427471775958887) +zone = ('miz012', 0.0036384797871603621) + +[49849] +centroid = (0.81040368757698877, -1.5316382069636145) +station = ('ksaw', 0.0045610668382414137) +zone = ('miz005', 0.0013823882172045276) + +[49852] +centroid = (0.79912079718796114, -1.5326918971396284) +station = ('kimt', 0.0036873255105650603) +zone = ('miz011', 0.0039436420584418926) + +[49853] +centroid = (0.80927938137943911, -1.4966355764549906) +station = ('kery', 0.0036767125637926939) +zone = ('miz007', 0.00306166191777309) + +[49854] +centroid = (0.80392673581625274, -1.5062973875814734) +station = ('kisq', 0.0022090960770656089) +zone = ('miz014', 0.0013762417117826184) + +[49855] +centroid = (0.81295382305366271, -1.5263832649319549) +station = ('ksaw', 0.003996409476803177) +zone = ('miz005', 0.0034092056515513973) + +[49858] +centroid = (0.7892159315098457, -1.5284977487740383) +station = ('kmnm', 0.0016466720356249954) +zone = ('wiz022', 0.0057687637742693107) + +[49861] +centroid = (0.81125633327646551, -1.5401379255142418) +station = ('kimt', 0.011705384627959696) +zone = ('miz004', 0.0034812400452979152) + +[49862] +centroid = (0.8097468852728783, -1.5132332038558511) +station = ('kp53', 0.00072920122208901576) +zone = ('miz006', 0.0012307598798221933) + +[49863] +centroid = (0.79610375122979371, -1.5280632490567545) +station = ('kesc', 0.0067541089164846867) +zone = ('miz012', 0.00060072320067551977) + +[49864] +centroid = (0.80060828894955838, -1.512721962011357) +station = ('kesc', 0.0048739709361406321) +zone = ('miz013', 0.0031724762978452238) + +[49866] +centroid = (0.81195303380727668, -1.5285730073713844) +station = ('ksaw', 0.0036827463859293828) +zone = ('miz005', 0.0017333451559737954) + +[49868] +centroid = (0.81175874375494472, -1.4925762722274096) +station = ('kery', 0.0035542540492312746) +zone = ('miz007', 0.00075917351295930766) + +[49870] +centroid = (0.8005341473629336, -1.5337774046679065) +station = ('kimt', 0.0030217734852606894) +zone = ('miz011', 0.0024783184323142401) + +[49871] +centroid = (0.81027016988921119, -1.5280737733921439) +station = ('ksaw', 0.0022633635765356491) +zone = ('miz005', 0.0010802155706013707) + +[49872] +centroid = (0.8032190920710317, -1.5199086519124163) +station = ('kesc', 0.0047713887024341496) +zone = ('miz013', 0.0026257538348099189) + +[49873] +centroid = (0.80093967461463456, -1.5285375946408615) +station = ('kesc', 0.0070726158702264716) +zone = ('miz011', 0.0041003681153609023) + +[49874] +centroid = (0.7978759410989763, -1.5267082975985535) +station = ('kesc', 0.0054025350692364135) +zone = ('miz012', 0.0025779410805388289) + +[49876] +centroid = (0.79940774677028159, -1.5355900687224426) +station = ('kimt', 0.0016463902234044878) +zone = ('miz011', 0.0038526137118717811) + +[49877] +centroid = (0.80543517152887389, -1.5307497296545942) +station = ('ksaw', 0.0051856893675612413) +zone = ('miz011', 0.0031409908050823083) + +[49878] +centroid = (0.80190370722697368, -1.5160001790387927) +station = ('kesc', 0.0040106937659252018) +zone = ('miz013', 0.00089956226553948289) + +[49879] +centroid = (0.80911226610356068, -1.536567069131124) +station = ('ksaw', 0.0077523261259912586) +zone = ('miz011', 0.0064323688342285985) + +[49880] +centroid = (0.80478856194759507, -1.5223173808130939) +station = ('ksaw', 0.0047212074761961847) +zone = ('miz013', 0.0049182466921357196) + +[49881] +centroid = (0.80412938599570183, -1.5367146192660877) +station = ('kimt', 0.0045562344365075993) +zone = ('miz011', 0.0024173381820946655) + +[49883] +centroid = (0.8103864960838566, -1.5009986552388812) +station = ('kery', 0.0068771589458350548) +zone = ('miz085', 0.0030251574342876741) + +[49884] +centroid = (0.80992377439256791, -1.5066340092343053) +station = ('kp53', 0.0039308425153445105) +zone = ('miz085', 0.0018951434954482893) + +[49885] +centroid = (0.80875154145375849, -1.5218977862076217) +station = ('ksaw', 0.0023884533173906763) +zone = ('miz005', 0.0055788649118900645) + +[49886] +centroid = (0.79829942778868013, -1.5276345438325871) +station = ('kesc', 0.0060159176935052367) +zone = ('miz012', 0.0028166546646081489) + +[49887] +centroid = (0.79289156000796079, -1.5280468429617857) +station = ('kmnm', 0.0052651652261305401) +zone = ('miz012', 0.0026168207372621955) + +[49891] +centroid = (0.80706253397672589, -1.5188296544622486) +station = ('ksaw', 0.004903858169104984) +zone = ('miz013', 0.0057369272001349244) + +[49892] +centroid = (0.79967647511521112, -1.532149693154204) +station = ('kimt', 0.0040258284669608783) +zone = ('miz011', 0.0034888133078157129) + +[49893] +centroid = (0.79058245450098719, -1.5289983964699729) +station = ('kmnm', 0.0028781132384370603) +zone = ('miz012', 0.0049594053415758302) + +[49894] +centroid = (0.79911727162287227, -1.5197478721817226) +station = ('kesc', 0.00080924171519075648) +zone = ('miz013', 0.0029663431518218209) + +[49895] +centroid = (0.8057366946104485, -1.5126050424047659) +station = ('kp53', 0.0043911474850600006) +zone = ('miz006', 0.0043380593709483736) + +[49896] +centroid = (0.79722407807664886, -1.5252313476256385) +station = ('kesc', 0.0045186693242542514) +zone = ('miz012', 0.0026742283018937785) + +[49901] +centroid = (0.82567591194388479, -1.542790354738375) +station = ('kcmx', 0.0026738055109569235) +zone = ('miz001', 0.0051575152633786285) + +[49902] +centroid = (0.80360201730891934, -1.5425199159707785) +station = ('kimt', 0.0050808303948215398) +zone = ('wiz012', 0.0034037487409734044) + +[49903] +centroid = (0.80865683988854531, -1.5436614485680453) +station = ('klnl', 0.0097656715903422647) +zone = ('miz010', 0.0023953032011087114) + +[49905] +centroid = (0.82243148449076753, -1.5484921010585453) +station = ('kcmx', 0.0029398852272770511) +zone = ('miz003', 0.0017002503693319035) + +[49908] +centroid = (0.81625935448389242, -1.5456149955998026) +station = ('kcmx', 0.0070097281076075563) +zone = ('miz004', 0.0029457604184558372) + +[49910] +centroid = (0.8135503416854093, -1.5639812174915866) +station = ('kiwd', 0.0064365799250323853) +zone = ('miz009', 0.0037052547900526586) + +[49911] +centroid = (0.81141444265340368, -1.5716750128068131) +station = ('kiwd', 0.0012447079617930027) +zone = ('miz009', 0.0045116834895719427) + +[49912] +centroid = (0.81152078556472773, -1.5567328825613469) +station = ('klnl', 0.0059872723745422341) +zone = ('miz002', 0.0032656381050909845) + +[49913] +centroid = (0.82454924955184494, -1.5438918669358939) +station = ('kcmx', 0.0013677235490361414) +zone = ('miz003', 0.00383598125492635) + +[49915] +centroid = (0.80398806668616785, -1.54674600386168) +station = ('klnl', 0.0073043155269445752) +zone = ('miz010', 0.0027389539752165656) + +[49916] +centroid = (0.82002724108626779, -1.546123148211521) +station = ('kcmx', 0.0034134865323008617) +zone = ('miz003', 0.0012718208510176866) + +[49917] +centroid = (0.82521538936745364, -1.5421577776042823) +station = ('kcmx', 0.0024848196938819555) +zone = ('miz003', 0.0050501700395181332) + +[49918] +centroid = (0.8278899319132097, -1.5335741610765117) +station = ('kp59', 0.0005907086752291081) +zone = ('miz001', 0.0071660791519716398) + +[49919] +centroid = (0.81133621699632941, -1.543863243536161) +station = ('klnl', 0.010792009797788556) +zone = ('miz004', 0.003270188242892531) + +[49920] +centroid = (0.80533933549964687, -1.5410458457911291) +station = ('kimt', 0.0060868517328633619) +zone = ('miz010', 0.0030678122694210359) + +[49921] +centroid = (0.82192029500615094, -1.5460588851884625) +station = ('kcmx', 0.0017502721722310721) +zone = ('miz003', 0.00082401191358145651) + +[49922] +centroid = (0.82206053221154873, -1.5443243420712454) +station = ('kcmx', 0.001153098581421991) +zone = ('miz003', 0.0018318493400740119) + +[49925] +centroid = (0.81235335997780656, -1.5598825037294957) +station = ('klnl', 0.0070924013045110361) +zone = ('miz002', 0.002212980497989452) + +[49927] +centroid = (0.8035789266029153, -1.5457724766582102) +station = ('kimt', 0.0067237356180074896) +zone = ('miz010', 0.0029467379897363363) + +[49929] +centroid = (0.81648417034484178, -1.5559528774653382) +station = ('klnl', 0.010972525729881364) +zone = ('miz002', 0.0028403909985457569) + +[49930] +centroid = (0.82318157464339714, -1.5453072242395061) +station = ('kcmx', 0.00066822393794356474) +zone = ('miz003', 0.0021751360050428943) + +[49931] +centroid = (0.8217773699937051, -1.5458867608176308) +station = ('kcmx', 0.0017864120858414533) +zone = ('miz003', 0.00078890768310668877) + +[49934] +centroid = (0.82334638608466293, -1.5435770444454191) +station = ('kcmx', 0.00052584806074995561) +zone = ('miz003', 0.0030093848691829109) + +[49935] +centroid = (0.8059167078694992, -1.5490170960975453) +station = ('klnl', 0.0055709818999803871) +zone = ('miz010', 0.0027381852777695502) + +[49938] +centroid = (0.81304983361581495, -1.5730976481334062) +station = ('kiwd', 0.00089013160643201512) +zone = ('wiz004', 0.0057744817733913186) + +[49942] +centroid = (0.8251039675480063, -1.5430123955258137) +station = ('kcmx', 0.0020901503611036043) +zone = ('miz003', 0.0046217506142330238) + +[49945] +centroid = (0.82350196473418569, -1.5414271129662274) +station = ('kcmx', 0.0019912003797272673) +zone = ('miz003', 0.0042593668357922198) + +[49946] +centroid = (0.81543342977526356, -1.5415025810030836) +station = ('kcmx', 0.0080153437273263045) +zone = ('miz004', 0.001143543952815222) + +[49947] +centroid = (0.80957825156055052, -1.5641004758393755) +station = ('kd25', 0.0056075722281215068) +zone = ('miz009', 0.0010249135793710675) + +[49948] +centroid = (0.81526380122526221, -1.55369236192474) +station = ('klnl', 0.0099967156717980267) +zone = ('miz084', 0.0030153643683553549) + +[49950] +centroid = (0.82704536708816967, -1.5382144854120814) +station = ('kp59', 0.0032674856078132035) +zone = ('miz001', 0.0050868117320239277) + +[49952] +centroid = (0.81510803058952175, -1.5496039979651133) +station = ('kcmx', 0.0088708337364818562) +zone = ('miz084', 0.0017099880678179799) + +[49953] +centroid = (0.81688048225809207, -1.5598330236452016) +station = ('klnl', 0.011504806718036603) +zone = ('miz002', 0.0025263074357605234) + +[49955] +centroid = (0.82041805521237443, -1.5480121180609543) +station = ('kcmx', 0.0037571632169102042) +zone = ('miz003', 0.0011974182501578174) + +[49958] +centroid = (0.81730953654810989, -1.5475560635274082) +station = ('kcmx', 0.0063018229794295499) +zone = ('miz003', 0.0039630097907576321) + +[49959] +centroid = (0.8110656036958076, -1.5707681048208919) +station = ('kiwd', 0.0019559804161238615) +zone = ('miz009', 0.0038115784106067746) + +[49960] +centroid = (0.81527563455759078, -1.5578524589166236) +station = ('klnl', 0.0097543100421774095) +zone = ('miz002', 0.0010703264689830337) + +[49961] +centroid = (0.81197389049183799, -1.5486765474538962) +station = ('klnl', 0.0086479195707427087) +zone = ('miz084', 0.0018014103223360353) + +[49962] +centroid = (0.81749967271682211, -1.5381780952971773) +station = ('kcmx', 0.0070869130760648951) +zone = ('miz004', 0.0041647557470014581) + +[49963] +centroid = (0.82102848411825935, -1.5479173641358637) +station = ('kcmx', 0.0032790610261309219) +zone = ('miz003', 0.00083877702388692669) + +[49965] +centroid = (0.81951088542706529, -1.5508586453512019) +station = ('kcmx', 0.0057894284636022366) +zone = ('miz003', 0.0033037352003783666) + +[49967] +centroid = (0.81168331062467347, -1.5527504077274386) +station = ('klnl', 0.0068231381950416116) +zone = ('miz084', 0.0024923122313028965) + +[49968] +centroid = (0.81140822928126666, -1.5688277175716947) +station = ('kiwd', 0.0030503891199636251) +zone = ('miz009', 0.0027188914775679637) + +[49969] +centroid = (0.80724366424649796, -1.5570208444346334) +station = ('klnl', 0.0017064043248552609) +zone = ('wiz005', 0.0050547005894891134) + +[49970] +centroid = (0.81240571985536636, -1.5463680877187458) +station = ('klnl', 0.010072574668261544) +zone = ('miz084', 0.0028238035174062066) + +[49971] +centroid = (0.81523002910423614, -1.5656525796898815) +station = ('kiwd', 0.0059794636805009576) +zone = ('miz009', 0.0052435492934438301) + +[50001] +centroid = (0.72191572139367899, -1.6307207754921353) +station = ('kdsm', 0.0042635376504145724) +zone = ('iaz073', 0.0017486997279424687) + +[50002] +centroid = (0.72456956433450648, -1.6519251820003424) +station = ('kadu', 0.0048135174217859376) +zone = ('iaz058', 0.0035214410365610842) + +[50003] +centroid = (0.72625775150679051, -1.6413604422386328) +station = ('kpro', 0.0041066578293960689) +zone = ('iaz059', 0.0012816925837642926) + +[50005] +centroid = (0.73534191101074065, -1.6237601231825016) +station = ('kmiw', 0.0015499094487089768) +zone = ('iaz049', 0.0017416730551472628) + +[50006] +centroid = (0.74191087652964183, -1.630171101497512) +station = ('kifa', 0.0018251263822857322) +zone = ('iaz037', 0.003008963468550003) + +[50007] +centroid = (0.72966655406886072, -1.6336632260780726) +station = ('kikv', 0.002092497532687883) +zone = ('iaz060', 0.0021498512841221953) + +[50008] +centroid = (0.70999421503134663, -1.6297930806348226) +station = ('kcnc', 0.0061751643452392637) +zone = ('iaz095', 0.001256786699376752) + +[50009] +centroid = (0.72684257643254879, -1.6311688364177073) +station = ('kikv', 0.0015979260393703177) +zone = ('iaz060', 0.0016494482187740904) + +[50010] +centroid = (0.73357623121966808, -1.6334272924697877) +station = ('kamw', 0.00090581276040104007) +zone = ('iaz048', 0.0016023166870352112) + +[50011] +centroid = (0.73345775827004278, -1.6342643698323367) +station = ('kamw', 0.00075528332127352746) +zone = ('iaz048', 0.0022315505407872771) + +[50012] +centroid = (0.73350517886581934, -1.6344288147544597) +station = ('kamw', 0.00084717819869120029) +zone = ('iaz048', 0.0023493193094035756) + +[50014] +centroid = (0.73384632092141422, -1.6352766084386159) +station = ('kamw', 0.0014916214494868389) +zone = ('iaz047', 0.0030811769893723581) + +[50020] +centroid = (0.72323679601109847, -1.6536478219720607) +station = ('kadu', 0.0051125500007325828) +zone = ('iaz070', 0.0030141175326438116) + +[50021] +centroid = (0.72822480738695816, -1.6330246973712303) +station = ('kikv', 0.00059706616973567402) +zone = ('iaz060', 0.00068353142174156563) + +[50022] +centroid = (0.72281653818051095, -1.6579976188003438) +station = ('kaio', 0.00074658536378184202) +zone = ('iaz070', 0.0017012902615896617) + +[50023] +centroid = (0.72834834179141428, -1.6341841894065001) +station = ('kikv', 0.0011221535889217706) +zone = ('iaz060', 0.0011039608805383484) + +[50025] +centroid = (0.7288138734627988, -1.6567288517006062) +station = ('kadu', 0.00099310964955549126) +zone = ('iaz057', 0.0013011168605900855) + +[50026] +centroid = (0.73056892419872677, -1.6484561481257858) +station = ('kpro', 0.0037978752694212154) +zone = ('iaz058', 0.0031219628102594319) + +[50027] +centroid = (0.72399793409789326, -1.613894928838284) +station = ('kooa', 0.004477835691227579) +zone = ('iaz075', 0.0034084595089708351) + +[50028] +centroid = (0.72975734609654941, -1.6258382867228511) +station = ('ktnu', 0.0028682741912791302) +zone = ('iaz061', 0.0025557661123261259) + +[50029] +centroid = (0.73005300487183722, -1.6503123581451593) +station = ('kcin', 0.0048579356556467425) +zone = ('iaz058', 0.0026324719400803412) + +[50032] +centroid = (0.72721797930136034, -1.6326226433247411) +station = ('kikv', 0.0005112140942142864) +zone = ('iaz060', 0.00052266102875698031) + +[50033] +centroid = (0.72192120172753038, -1.6369939251561159) +station = ('kdsm', 0.0033998148061423249) +zone = ('iaz073', 0.0030736224680714985) + +[50034] +centroid = (0.74214300532015709, -1.6346999167471721) +station = ('kebs', 0.0030590797874790448) +zone = ('iaz036', 0.0024778335302118684) + +[50035] +centroid = (0.72821965866566485, -1.631151138779092) +station = ('kikv', 0.0015237249770137279) +zone = ('iaz060', 0.0016454849277820613) + +[50036] +centroid = (0.73453148482586972, -1.6382394095636317) +station = ('kbnw', 0.00064724914123796297) +zone = ('iaz047', 0.0012236071559213343) + +[50038] +centroid = (0.72474924598099932, -1.6389214493287261) +station = ('kdsm', 0.0030949385049194888) +zone = ('iaz059', 0.0033099180475422863) + +[50039] +centroid = (0.72979555135387553, -1.6405532623661707) +station = ('kpro', 0.0021407741935653528) +zone = ('iaz059', 0.0023252872751310101) + +[50041] +centroid = (0.74418141026014639, -1.6274872039869654) +station = ('kifa', 0.0029534696048479424) +zone = ('iaz026', 0.0016515653412331214) + +[50042] +centroid = (0.72490060093373232, -1.6564103640187022) +station = ('kadu', 0.0029275998169732871) +zone = ('iaz057', 0.0026329238012749371) + +[50044] +centroid = (0.7191296523087205, -1.6210949356015363) +station = ('kpea', 0.0035022050162413785) +zone = ('iaz085', 0.0030310445132428446) + +[50046] +centroid = (0.73117785212145503, -1.632284485782167) +station = ('kamw', 0.0019854224156583911) +zone = ('iaz048', 0.0026030953106036736) + +[50047] +centroid = (0.72367702040832915, -1.631433951931085) +station = ('kdsm', 0.0027936131018764555) +zone = ('iaz073', 0.0025291793858951608) + +[50048] +centroid = (0.72452905524256761, -1.6496862212760066) +station = ('kadu', 0.0061741690949442887) +zone = ('iaz058', 0.0030008266202225845) + +[50049] +centroid = (0.71618742861558604, -1.6283120291381654) +station = ('kcnc', 0.0009383883477596252) +zone = ('iaz084', 0.00043480363658201539) + +[50050] +centroid = (0.73581288810939138, -1.6493988528146655) +station = ('kcin', 0.0040913110616593151) +zone = ('iaz046', 0.0025496481286696781) + +[50051] +centroid = (0.73540132201847863, -1.625624082463754) +station = ('kmiw', 0.002927370851863047) +zone = ('iaz049', 0.0025363387858813357) + +[50052] +centroid = (0.70935870574411053, -1.6309120810314464) +station = ('kcnc', 0.0068849618686037898) +zone = ('iaz095', 0.002284271064570219) + +[50054] +centroid = (0.72762153433100629, -1.6272028549452304) +station = ('ktnu', 0.0028069450648755059) +zone = ('iaz061', 0.00232291286290413) + +[50055] +centroid = (0.73092086984239146, -1.62832473513512) +station = ('kikv', 0.0048128915969339056) +zone = ('iaz048', 0.0035167397369956052) + +[50056] +centroid = (0.73326863439229661, -1.6283315768257876) +station = ('kamw', 0.0041850122801136242) +zone = ('iaz048', 0.0022221623734607491) + +[50057] +centroid = (0.71872508498810816, -1.6254994135952838) +station = ('koxv', 0.0021085704500577659) +zone = ('iaz074', 0.0027345805947106782) + +[50058] +centroid = (0.73051995025991578, -1.6526696172861954) +station = ('kcin', 0.0035965843264420725) +zone = ('iaz045', 0.0038440409863905599) + +[50060] +centroid = (0.71124624442355733, -1.6287213612076357) +station = ('kcnc', 0.0049607867772409444) +zone = ('iaz095', 0.00023653041436055405) + +[50061] +centroid = (0.7240660542985986, -1.6368551016674124) +station = ('kdsm', 0.0017527095578376093) +zone = ('iaz073', 0.0039448391984908768) + +[50062] +centroid = (0.71969693667549617, -1.6274338667250243) +station = ('koxv', 0.0020253027551707776) +zone = ('iaz074', 0.0025728711254736783) + +[50063] +centroid = (0.7277246134766292, -1.6395741326558018) +station = ('kpro', 0.0036958181422395374) +zone = ('iaz059', 0.0013051853773780686) + +[50064] +centroid = (0.73491851158749932, -1.6447394694836641) +station = ('kpro', 0.0049482325476331353) +zone = ('iaz046', 0.0024228047793199252) + +[50065] +centroid = (0.70884554403743916, -1.6367999143564642) +station = ('klwd', 0.0016032221030172508) +zone = ('iaz094', 0.0021622980829420959) + +[50066] +centroid = (0.72951413446528401, -1.6446830255356544) +station = ('kpro', 0.0011053924940346758) +zone = ('iaz059', 0.0032028830938270665) + +[50067] +centroid = (0.71065761468002986, -1.6381948164012432) +station = ('klwd', 0.0015572295222905062) +zone = ('iaz094', 0.0010560661225130974) + +[50068] +centroid = (0.71467869619699198, -1.6312938718053203) +station = ('kcnc', 0.0019838388101773761) +zone = ('iaz084', 0.0023112300815029975) + +[50069] +centroid = (0.72467405719682332, -1.6411376684129082) +station = ('kpro', 0.0056559621489890091) +zone = ('iaz059', 0.0028673994135046264) + +[50070] +centroid = (0.72336108090713314, -1.644669691220169) +station = ('kpro', 0.0067766962644964365) +zone = ('iaz072', 0.0034786318716755436) + +[50071] +centroid = (0.74435884043190403, -1.6319683368414608) +station = ('kcav', 0.0037953511624347338) +zone = ('iaz025', 0.0033019308977555906) + +[50072] +centroid = (0.72380931636563028, -1.6427559551486501) +station = ('kpro', 0.0062804902973228223) +zone = ('iaz072', 0.0028275220235995336) + +[50073] +centroid = (0.72943995797207417, -1.6323229004790034) +station = ('kikv', 0.0018878223821061574) +zone = ('iaz060', 0.001992157220625354) + +[50074] +centroid = (0.71324504784281895, -1.6420080815641704) +station = ('kcsq', 0.0046034471030807524) +zone = ('iaz093', 0.0031453642975867286) + +[50075] +centroid = (0.73883520496189981, -1.6327665282682753) +station = ('kebs', 0.0044406728382292548) +zone = ('iaz036', 0.0022060266727272262) + +[50076] +centroid = (0.72592043172225762, -1.6553042092453734) +station = ('kadu', 0.0021583558326173668) +zone = ('iaz057', 0.0018154294167499229) + +[50078] +centroid = (0.73196630461104351, -1.6207656443315626) +station = ('kmiw', 0.0031850332851836309) +zone = ('iaz049', 0.0024456930374351831) + +[50101] +centroid = (0.74468577550738768, -1.6342328317327532) +station = ('kcav', 0.0022243177850427391) +zone = ('iaz025', 0.0017263748195537562) + +[50102] +centroid = (0.73732380218955029, -1.6301409073014526) +station = ('kifa', 0.0042622199288191867) +zone = ('iaz037', 0.0031742585445444023) + +[50103] +centroid = (0.71200916274618908, -1.6337877727734949) +station = ('ki75', 0.0045455748534848307) +zone = ('iaz094', 0.0025472076119686178) + +[50104] +centroid = (0.72408123866309093, -1.6124514368271294) +station = ('kooa', 0.0047607068418599394) +zone = ('iaz076', 0.0037815863625833604) + +[50105] +centroid = (0.73496312220318027, -1.634278908425006) +station = ('kamw', 0.0022317795700869144) +zone = ('iaz048', 0.0025783680836594953) + +[50106] +centroid = (0.73096057608287424, -1.6197744369427698) +station = ('kggi', 0.0031443327985426392) +zone = ('iaz049', 0.0036809988229071361) + +[50107] +centroid = (0.73367590697324947, -1.6444329722137214) +station = ('kpro', 0.0036853669640096731) +zone = ('iaz046', 0.0023052139590798862) + +[50108] +centroid = (0.7125418895937754, -1.6397832580067755) +station = ('klwd', 0.0034279379965912789) +zone = ('iaz094', 0.002681339873673365) + +[50109] +centroid = (0.72903938745544894, -1.6371298513982611) +station = ('kikv', 0.003368334096171851) +zone = ('iaz060', 0.0033137714977062474) + +[50111] +centroid = (0.72766474868328568, -1.6372126672712684) +station = ('kikv', 0.0031222030451158785) +zone = ('iaz060', 0.0030256788612592535) + +[50112] +centroid = (0.72832752001343803, -1.6181896605286665) +station = ('kggi', 0.00039871021315082813) +zone = ('iaz062', 0.002516282885562614) + +[50115] +centroid = (0.72750978089900109, -1.6504104980089991) +station = ('kpro', 0.0058219255178462463) +zone = ('iaz058', 0.00078938576519715442) + +[50116] +centroid = (0.7187226066205703, -1.622695611965125) +station = ('koxv', 0.0028156961874796272) +zone = ('iaz085', 0.0029585728615194062) + +[50117] +centroid = (0.72727644783130208, -1.6554314437478437) +station = ('kadu', 0.001074590039577632) +zone = ('iaz057', 0.00078090215141513324) + +[50118] +centroid = (0.72373512241912807, -1.629770670607227) +station = ('koxv', 0.0045046501629039948) +zone = ('iaz073', 0.0033264016603670242) + +[50119] +centroid = (0.72104949703262178, -1.6221035439229712) +station = ('kpea', 0.0015190954528479172) +zone = ('iaz074', 0.002127463704887732) + +[50120] +centroid = (0.73188172595549184, -1.6228570025610569) +station = ('kmiw', 0.0033060975058491772) +zone = ('iaz049', 0.0017933552807164672) + +[50122] +centroid = (0.73836785814809336, -1.6285982631354925) +station = ('kifa', 0.0029235781310409195) +zone = ('iaz037', 0.0016500493692336554) + +[50123] +centroid = (0.71268469243317345, -1.632123967850861) +station = ('kcnc', 0.0039861360846836554) +zone = ('iaz095', 0.0029628831388196701) + +[50124] +centroid = (0.73104288581039834, -1.6336992671271262) +station = ('kamw', 0.0017123366135242092) +zone = ('iaz048', 0.0031867390608198627) + +[50125] +centroid = (0.72143507517097238, -1.6333599925738309) +station = ('kdsm', 0.0036210910154482402) +zone = ('iaz073', 0.00030487415697916514) + +[50126] +centroid = (0.74166682714033549, -1.6276137752643198) +station = ('kifa', 0.00046514602897232963) +zone = ('iaz037', 0.001939614354671156) + +[50127] +centroid = (0.72914864506662391, -1.6267482490349636) +station = ('ktnu', 0.0029580242285593326) +zone = ('iaz061', 0.002540761523313432) + +[50128] +centroid = (0.73051783841152096, -1.6458496036076875) +station = ('kpro', 0.0018772916632539731) +zone = ('iaz046', 0.0033928325411407504) + +[50129] +centroid = (0.73329608842143057, -1.6471849026585108) +station = ('kpro', 0.0042804184558626265) +zone = ('iaz046', 0.00045626585795733459) + +[50130] +centroid = (0.73833338789536651, -1.6348370647197938) +station = ('kebs', 0.0034093040364615631) +zone = ('iaz036', 0.0014830045383886453) + +[50131] +centroid = (0.72766476613657827, -1.6356380312201189) +station = ('kikv', 0.0019464896156218023) +zone = ('iaz060', 0.001851194599843776) + +[50132] +centroid = (0.73987426927878208, -1.6352256797310429) +station = ('kebs', 0.0023710357101623335) +zone = ('iaz036', 0.00024106504628797364) + +[50133] +centroid = (0.71058151832464278, -1.6418136518854984) +station = ('klwd', 0.0026368856323902763) +zone = ('iaz093', 0.002346120167384213) + +[50134] +centroid = (0.73198208238748153, -1.6348847820215433) +station = ('kamw', 0.0010494643846451377) +zone = ('iaz048', 0.0031707229980679377) + +[50135] +centroid = (0.72868512052387924, -1.6211870191728714) +station = ('kggi', 0.0021662788809100912) +zone = ('iaz061', 0.0024447783275779434) + +[50136] +centroid = (0.72377933160908103, -1.610812607566092) +station = ('kooa', 0.0049970301332916212) +zone = ('iaz076', 0.0027615845433217332) + +[50138] +centroid = (0.72083126106295237, -1.6249920289284367) +station = ('koxv', 0.00015089788016078721) +zone = ('iaz074', 0.00059480012570495928) + +[50139] +centroid = (0.71904882611106058, -1.6296117932854182) +station = ('kcnc', 0.0028823656889674192) +zone = ('iaz084', 0.0030040914555016407) + +[50140] +centroid = (0.70939815018520558, -1.6403699329815409) +station = ('klwd', 0.0011622380901211617) +zone = ('iaz094', 0.0030970446377199925) + +[50141] +centroid = (0.73072675432298462, -1.622278495727191) +station = ('ktnu', 0.0033313571606125849) +zone = ('iaz049', 0.0030046976955964136) + +[50142] +centroid = (0.73315375682093042, -1.619239615700081) +station = ('kmiw', 0.0026515459483050204) +zone = ('iaz049', 0.0029385439456992781) + +[50143] +centroid = (0.72155115701952244, -1.6197468083807105) +station = ('kpea', 0.0019675006917450446) +zone = ('iaz075', 0.0021491247904793032) + +[50144] +centroid = (0.71103055663459591, -1.6360856034535003) +station = ('klwd', 0.0028006588451711858) +zone = ('iaz094', 0.00060216745385132623) + +[50146] +centroid = (0.72752508743654121, -1.6448514149018869) +station = ('kpro', 0.0027661950766992007) +zone = ('iaz058', 0.0033623423223461428) + +[50147] +centroid = (0.70911441200870895, -1.6328205636619171) +station = ('klwd', 0.0045871331309808808) +zone = ('moz006', 0.0036174986395390032) + +[50148] +centroid = (0.7362026550379468, -1.6230309769808957) +station = ('kmiw', 0.0014979656364580056) +zone = ('iaz049', 0.0025407194931240718) + +[50149] +centroid = (0.71821112042998092, -1.6418486282837084) +station = ('kcsq', 0.0045368296218003977) +zone = ('iaz082', 0.0031104146006087625) + +[50150] +centroid = (0.71777552115526821, -1.6227232230738919) +station = ('koxv', 0.0035672289340425278) +zone = ('iaz085', 0.0021790153785278409) + +[50151] +centroid = (0.71701454014810617, -1.6321933446886281) +station = ('kcnc', 0.0021620265566348533) +zone = ('iaz084', 0.0026649475805745472) + +[50153] +centroid = (0.7256013680817005, -1.6197880854175204) +station = ('kggi', 0.0025791512665564319) +zone = ('iaz061', 0.0037661681567853788) + +[50154] +centroid = (0.73604480746039636, -1.6300115085907099) +station = ('kamw', 0.0043914454197252935) +zone = ('iaz048', 0.0025526936065951742) + +[50155] +centroid = (0.71926795219864859, -1.6440888630983981) +station = ('kcsq', 0.0040430738833631399) +zone = ('iaz072', 0.0031905903331688181) + +[50156] +centroid = (0.73126346052126545, -1.6371403931869433) +station = ('kbnw', 0.0027220544935072253) +zone = ('iaz047', 0.0029489508587391463) + +[50157] +centroid = (0.728496363165276, -1.615529307509729) +station = ('kggi', 0.0022364220493796042) +zone = ('iaz062', 0.0010184206779532477) + +[50158] +centroid = (0.73390756452486661, -1.6214237730859045) +station = ('kmiw', 0.0011850369628593341) +zone = ('iaz049', 0.0012943205852870058) + +[50160] +centroid = (0.72210884207541226, -1.6360452688944869) +station = ('kdsm', 0.0029387991269553579) +zone = ('iaz073', 0.0024202776901167383) + +[50161] +centroid = (0.73038800336846499, -1.6302078581315593) +station = ('kikv', 0.0034720531901046253) +zone = ('iaz048', 0.0033764896888339754) + +[50162] +centroid = (0.73178683240406095, -1.6244158608357684) +station = ('kmiw', 0.0038566889338027114) +zone = ('iaz049', 0.0021039535066256256) + +[50163] +centroid = (0.71946639613460028, -1.6273630587172709) +station = ('koxv', 0.0021206876186264543) +zone = ('iaz074', 0.0026959698959445645) + +[50164] +centroid = (0.7243032270906522, -1.6479435972843528) +station = ('kpro', 0.0066918296152142761) +zone = ('iaz071', 0.0030204855646004413) + +[50165] +centroid = (0.71285636301839961, -1.6281076161761716) +station = ('kcnc', 0.0034864716561980274) +zone = ('iaz095', 0.0019074758153601204) + +[50166] +centroid = (0.72051924855257321, -1.6306741926543997) +station = ('koxv', 0.0041298385818354308) +zone = ('iaz073', 0.0019351047672616667) + +[50167] +centroid = (0.72855074762476812, -1.6413259196260284) +station = ('kpro', 0.0021698381548609937) +zone = ('iaz059', 0.0010121248713295659) + +[50168] +centroid = (0.72934448846199018, -1.6280177491729868) +station = ('kikv', 0.0041164934041631645) +zone = ('iaz061', 0.0034302877332597257) + +[50169] +centroid = (0.72702154249404827, -1.629305348375353) +station = ('kikv', 0.0028487874591152213) +zone = ('iaz060', 0.0029301896110884135) + +[50170] +centroid = (0.72483570959214305, -1.6253337120360998) +station = ('ktnu', 0.0030247878866497143) +zone = ('iaz061', 0.0028758626377360479) + +[50171] +centroid = (0.72581003964706903, -1.6148730986175641) +station = ('kggi', 0.0034371814792416755) +zone = ('iaz062', 0.001756630494560803) + +[50173] +centroid = (0.73242146902667105, -1.6181555742483751) +station = ('kmiw', 0.0037382712645419114) +zone = ('iaz050', 0.0030885198669972514) + +[50174] +centroid = (0.71617329144864483, -1.6403006434102367) +station = ('kcsq', 0.0050696811373194253) +zone = ('iaz082', 0.0034260347905272618) + +[50201] +centroid = (0.73376648956142798, -1.6307467285381125) +station = ('kamw', 0.0025679171967916761) +zone = ('iaz048', 0.0004030944320074095) + +[50206] +centroid = (0.73732612347745541, -1.6266873195907765) +station = ('kifa', 0.0040113371540557016) +zone = ('iaz037', 0.0024603263342114117) + +[50207] +centroid = (0.72312422227434503, -1.6168300839479479) +station = ('kooa', 0.0040579402567958332) +zone = ('iaz075', 0.0016912031020936075) + +[50208] +centroid = (0.72800686812326165, -1.6237488832621187) +station = ('ktnu', 0.0005442937562337327) +zone = ('iaz061', 0.0005174096169902777) + +[50210] +centroid = (0.71898913585064239, -1.6353436116286) +station = ('ki75', 0.0025428699153912954) +zone = ('iaz073', 0.0030219741671974848) + +[50211] +centroid = (0.723531669388223, -1.6354654705169744) +station = ('kdsm', 0.0014522462880953537) +zone = ('iaz073', 0.0028300040522387321) + +[50212] +centroid = (0.73367641311873266, -1.6417642416143743) +station = ('kbnw', 0.0028115820799790563) +zone = ('iaz047', 0.0017417164302992267) + +[50213] +centroid = (0.71613800089116952, -1.6365278175260782) +station = ('ki75', 0.0011781031044493528) +zone = ('iaz083', 0.00025402864957039265) + +[50214] +centroid = (0.72378683652486464, -1.6241355085980205) +station = ('kpea', 0.0020175667125303808) +zone = ('iaz074', 0.0024327102402610687) + +[50216] +centroid = (0.72775163117344999, -1.6468022915798886) +station = ('kpro', 0.0034370220035188186) +zone = ('iaz058', 0.0019192672035748491) + +[50217] +centroid = (0.73624555523096069, -1.6450044279174092) +station = ('kpro', 0.0062880892410373413) +zone = ('iaz046', 0.0031878061744295802) + +[50218] +centroid = (0.72166491758016749, -1.6385221703557471) +station = ('kdsm', 0.0042712403361395649) +zone = ('iaz072', 0.0017969100178880345) + +[50219] +centroid = (0.72293117140578178, -1.6213504343507354) +station = ('kpea', 0.00060424894881220431) +zone = ('iaz074', 0.003056943386665332) + +[50220] +centroid = (0.73019177600066321, -1.642759777419712) +station = ('kpro', 0.00049347990397082962) +zone = ('iaz059', 0.0028666184919750389) + +[50222] +centroid = (0.71935219924164229, -1.6399045234832044) +station = ('ki75', 0.0046785045630318659) +zone = ('iaz072', 0.0021344631198750392) + +[50223] +centroid = (0.73607018454772033, -1.6412697549306992) +station = ('kbnw', 0.0032521622638118277) +zone = ('iaz047', 0.0027589864040501741) + +[50225] +centroid = (0.72229405641563382, -1.627848679128346) +station = ('koxv', 0.0024793177980733183) +zone = ('iaz074', 0.0023840790303931883) + +[50226] +centroid = (0.7294820553136323, -1.6354079444648286) +station = ('kikv', 0.0025654459670456315) +zone = ('iaz060', 0.0025572383891360869) + +[50227] +centroid = (0.74346559837402593, -1.6306236130126768) +station = ('kifa', 0.0030114325712942993) +zone = ('iaz026', 0.0031725787642564655) + +[50228] +centroid = (0.72565498459632172, -1.627379203012852) +station = ('ktnu', 0.0034762507563861882) +zone = ('iaz061', 0.0031068699017477355) + +[50229] +centroid = (0.72220120489942774, -1.6366837801480365) +station = ('kdsm', 0.0030428227275585223) +zone = ('iaz073', 0.0029063137774491743) + +[50230] +centroid = (0.73833103170087622, -1.6310697889826566) +station = ('kifa', 0.0037497245357134227) +zone = ('iaz037', 0.0030866397774147614) + +[50231] +centroid = (0.73717686291982487, -1.633674116932605) +station = ('kamw', 0.0044331911975434082) +zone = ('iaz036', 0.0028900307980127896) + +[50232] +centroid = (0.72530167759584052, -1.6226277186572224) +station = ('ktnu', 0.0022930583522525246) +zone = ('iaz061', 0.0025082548660231036) + +[50233] +centroid = (0.72628181959717542, -1.6442985993146102) +station = ('kpro', 0.0038480411867827928) +zone = ('iaz059', 0.0025664239662153113) + +[50234] +centroid = (0.73117245905406636, -1.6263323894340909) +station = ('ktnu', 0.0042463418122056992) +zone = ('iaz049', 0.0034430653029757811) + +[50235] +centroid = (0.73184756986203026, -1.6445361560790992) +station = ('kpro', 0.0019668270257172968) +zone = ('iaz046', 0.0028803303741757134) + +[50236] +centroid = (0.73597235884314605, -1.6316470042728761) +station = ('kamw', 0.003639302000438781) +zone = ('iaz048', 0.0023188618271448745) + +[50237] +centroid = (0.72490341091382804, -1.6295883709668564) +station = ('kikv', 0.0037483905959717827) +zone = ('iaz060', 0.0037612926073433773) + +[50238] +centroid = (0.71496175369508053, -1.6260735396527275) +station = ('kcnc', 0.0028911888702597868) +zone = ('iaz084', 0.0024000175244483931) + +[50239] +centroid = (0.73553136650104467, -1.626698489697989) +station = ('kmiw', 0.0037337645150121697) +zone = ('iaz049', 0.0032376765854777141) + +[50240] +centroid = (0.72077019199242498, -1.6369929652250272) +station = ('kdsm', 0.0044414012622478304) +zone = ('iaz073', 0.0031019811772821596) + +[50242] +centroid = (0.72537697109977162, -1.6178112382402488) +station = ('kggi', 0.002642497224877451) +zone = ('iaz062', 0.0030453263990342654) + +[50243] +centroid = (0.73081175185755665, -1.6353114103039008) +station = ('kamw', 0.0021953994076753091) +zone = ('iaz060', 0.0036343688489144767) + +[50244] +centroid = (0.73055168034571705, -1.6345465546657993) +station = ('kamw', 0.0022448086806951192) +zone = ('iaz060', 0.0031745960243388894) + +[50246] +centroid = (0.73783062835103697, -1.6368763248711167) +station = ('kebs', 0.0029591794125006649) +zone = ('iaz036', 0.0021619794397637407) + +[50247] +centroid = (0.73334260144599606, -1.6260290686633867) +station = ('kmiw', 0.0036495389855505191) +zone = ('iaz049', 0.0021733816202377672) + +[50248] +centroid = (0.73637580915303713, -1.6338842720278375) +station = ('kamw', 0.0036285034123045242) +zone = ('iaz048', 0.0033273211319501403) + +[50249] +centroid = (0.73784364850725681, -1.6389179586702218) +station = ('kebs', 0.0027974412231050825) +zone = ('iaz036', 0.0031609771355034589) + +[50250] +centroid = (0.72397349948836542, -1.6466554919365035) +station = ('kpro', 0.0065643919743579443) +zone = ('iaz071', 0.0030833775322144014) + +[50251] +centroid = (0.7254799629789318, -1.6208761585797988) +station = ('ktnu', 0.0027964352277229355) +zone = ('iaz061', 0.0031782929868258325) + +[50252] +centroid = (0.72372314946045935, -1.6284523536100257) +station = ('koxv', 0.0037954199752182898) +zone = ('iaz074', 0.0035252341301786299) + +[50254] +centroid = (0.71536717622702628, -1.6419052293113505) +station = ('kcsq', 0.0038852159150754915) +zone = ('iaz082', 0.0023231474622378624) + +[50255] +centroid = (0.72354186211105465, -1.6115021697002623) +station = ('kooa', 0.0045336034559896304) +zone = ('iaz076', 0.0028969791333559344) + +[50256] +centroid = (0.72011771810485958, -1.6215028888608973) +station = ('kpea', 0.002476057422454379) +zone = ('iaz074', 0.0028611016231431213) + +[50257] +centroid = (0.71889251442325197, -1.6379431573763981) +station = ('ki75', 0.0032807203405415064) +zone = ('iaz083', 0.0029180883854328992) + +[50258] +centroid = (0.73695019700986841, -1.6244325810900024) +station = ('kmiw', 0.0027594553815186908) +zone = ('iaz049', 0.0034249962439447073) + +[50261] +centroid = (0.72387640682207688, -1.6391411862815519) +station = ('kdsm', 0.003412409899738243) +zone = ('iaz072', 0.00283716955178897) + +[50262] +centroid = (0.71315256284575568, -1.6372682560079443) +station = ('ki75', 0.0037141926856577626) +zone = ('iaz094', 0.0021656332970269214) + +[50263] +centroid = (0.7259100121066232, -1.6384040813785572) +station = ('kdsm', 0.002887735028182336) +zone = ('iaz059', 0.0027111420229748743) + +[50264] +centroid = (0.71393834498158848, -1.6353305042059176) +station = ('ki75', 0.0025298870834992962) +zone = ('iaz083', 0.0024425780337495443) + +[50265] +centroid = (0.72523610557584317, -1.6361590992683019) +station = ('kdsm', 0.001079265026298249) +zone = ('iaz060', 0.0032193434088019627) + +[50266] +centroid = (0.72553932162679213, -1.6371086805544346) +station = ('kdsm', 0.0018502994536991016) +zone = ('iaz060', 0.0035684696929591522) + +[50268] +centroid = (0.72264320953249528, -1.6120347394682157) +station = ('kooa', 0.003553113094310543) +zone = ('iaz076', 0.002687457232952069) + +[50271] +centroid = (0.74146389770820609, -1.6326061499633098) +station = ('kebs', 0.0042756683320399414) +zone = ('iaz036', 0.0027433455012679827) + +[50272] +centroid = (0.71725925276252822, -1.6276231302291109) +station = ('kcnc', 0.0018211949230059149) +zone = ('iaz084', 0.0014980504243160178) + +[50273] +centroid = (0.7213391867818677, -1.6415573328315503) +station = ('kdsm', 0.0061937522574667912) +zone = ('iaz072', 0.00050890777816006401) + +[50274] +centroid = (0.72227567809861026, -1.655636345402028) +station = ('kaio', 0.0024920199288921453) +zone = ('iaz070', 0.001259075660546389) + +[50275] +centroid = (0.7162401201057037, -1.63344670053107) +station = ('ki75', 0.0012096674170968256) +zone = ('iaz083', 0.0025781397107140299) + +[50276] +centroid = (0.7306299409093765, -1.6393264878882363) +station = ('kpro', 0.0030870124048430338) +zone = ('iaz047', 0.0030479152055323836) + +[50277] +centroid = (0.72919480902533906, -1.6467282023531415) +station = ('kpro', 0.0026297362600042396) +zone = ('iaz058', 0.002577815680176588) + +[50278] +centroid = (0.73542518066935325, -1.6283840414231026) +station = ('kamw', 0.0049048942234773433) +zone = ('iaz048', 0.0027711654473792659) + +[50309] +centroid = (0.7257855701309559, -1.6339908243786718) +station = ('kdsm', 0.0010747549923702507) +zone = ('iaz060', 0.0018688041019361522) + +[50310] +centroid = (0.72653836554392615, -1.6348963361011914) +station = ('kdsm', 0.0016468094716529976) +zone = ('iaz060', 0.0016423169155440128) + +[50311] +centroid = (0.72607499808081422, -1.6348999663860355) +station = ('kdsm', 0.0011843536945318593) +zone = ('iaz060', 0.0019637808241058301) + +[50312] +centroid = (0.72575464289661062, -1.6349663238041965) +station = ('kdsm', 0.00087107954839376603) +zone = ('iaz060', 0.0022439378623750218) + +[50313] +centroid = (0.72700777184625009, -1.6340502004798245) +station = ('kikv', 0.00098132379703916132) +zone = ('iaz060', 0.00085525784362150219) + +[50314] +centroid = (0.72614360697371017, -1.6341727225933147) +station = ('kdsm', 0.0013332117738712411) +zone = ('iaz060', 0.0015950085954693962) + +[50315] +centroid = (0.72511305986357755, -1.6340143165104037) +station = ('kdsm', 0.00062196778733482414) +zone = ('iaz060', 0.0025177575234351323) + +[50316] +centroid = (0.72620757329079566, -1.6336208320305416) +station = ('kikv', 0.0014868185651688015) +zone = ('iaz060', 0.0013844141409713817) + +[50317] +centroid = (0.72642954426506434, -1.6327187411533559) +station = ('kikv', 0.0012208457759768638) +zone = ('iaz060', 0.0011680446467019756) + +[50319] +centroid = (0.72589835330721986, -1.633703019585018) +station = ('kdsm', 0.0012936370459678674) +zone = ('iaz060', 0.0016993247113355565) + +[50320] +centroid = (0.72479931947723908, -1.633069098547401) +station = ('kdsm', 0.0012929945219913364) +zone = ('iaz060', 0.002750819747711531) + +[50321] +centroid = (0.72488190845744338, -1.6347189931958963) +station = ('kdsm', 5.5653604839578396e-05) +zone = ('iaz060', 0.0029097222200228957) + +[50322] +centroid = (0.72665324311529245, -1.635973204249672) +station = ('kdsm', 0.0019692536613358036) +zone = ('iaz060', 0.0022820727236001421) + +[50323] +centroid = (0.72650433162351236, -1.6370080099631794) +station = ('kdsm', 0.0023116074332750359) +zone = ('iaz060', 0.0030562881896727878) + +[50324] +centroid = (0.72613399020953162, -1.6355977315676904) +station = ('kdsm', 0.0013793662869213289) +zone = ('iaz060', 0.0023044879872869094) + +[50325] +centroid = (0.72628810278248268, -1.6370816803109061) +station = ('kdsm', 0.0022090616613023592) +zone = ('iaz060', 0.0031875354362390267) + +[50327] +centroid = (0.72581827760113826, -1.6316712119896013) +station = ('kikv', 0.0020756454587466935) +zone = ('iaz060', 0.0020593195451472151) + +[50401] +centroid = (0.75316488171954887, -1.6266437212660616) +station = ('kmcw', 0.0017009237860787186) +zone = ('iaz017', 0.0014710026814356938) + +[50420] +centroid = (0.7470734557372859, -1.6311920667500512) +station = ('kcav', 0.004035487233868938) +zone = ('iaz026', 0.0028286450249958022) + +[50421] +centroid = (0.74774907269073299, -1.6339534219728016) +station = ('kcav', 0.002494216288024916) +zone = ('iaz025', 0.0024288507911366997) + +[50423] +centroid = (0.7525549764124394, -1.6373713002469821) +station = ('kfxy', 0.0031515869787366777) +zone = ('iaz016', 0.0012032487160717712) + +[50424] +centroid = (0.75737568052620297, -1.6394548917613054) +station = ('kfxy', 0.0049113746288354642) +zone = ('iaz006', 0.0025495017139274272) + +[50426] +centroid = (0.7577430897870403, -1.6234552316154707) +station = ('kaum', 0.0045103894907709708) +zone = ('iaz008', 0.0030706951712890129) + +[50428] +centroid = (0.75288151006219506, -1.6300870289874436) +station = ('kmcw', 0.00084355185839811127) +zone = ('iaz017', 0.001987240189795317) + +[50430] +centroid = (0.75016980945666401, -1.6398060520068065) +station = ('kaxa', 0.0043669152696238995) +zone = ('iaz016', 0.0033037086563732694) + +[50431] +centroid = (0.74590333464687142, -1.6295829080862976) +station = ('kifa', 0.00482974751775568) +zone = ('iaz026', 0.0013589834915350095) + +[50432] +centroid = (0.75439963235216478, -1.6370831289341854) +station = ('kfxy', 0.0022655810159851646) +zone = ('iaz016', 0.0026094347738104384) + +[50433] +centroid = (0.74915189853031594, -1.624032062933255) +station = ('kmcw', 0.0053582237323132713) +zone = ('iaz017', 0.0038556476775350517) + +[50434] +centroid = (0.75498559174193691, -1.6309854546732001) +station = ('kmcw', 0.0023810183867879735) +zone = ('iaz007', 0.0031717552211262463) + +[50435] +centroid = (0.75324987925412101, -1.6190904424089132) +station = ('kccy', 0.0024928798570509046) +zone = ('iaz018', 0.0017338121983755965) + +[50436] +centroid = (0.75514223504230338, -1.6348694231241259) +station = ('kfxy', 0.00090956893512192404) +zone = ('iaz006', 0.0020969648518005847) + +[50438] +centroid = (0.75243765538012042, -1.6339532299865838) +station = ('kfxy', 0.0020682544219459507) +zone = ('iaz016', 0.0015627139964428062) + +[50439] +centroid = (0.74952670798718168, -1.6340878821383753) +station = ('kcav', 0.0038436786044390094) +zone = ('iaz016', 0.0027608969179154751) + +[50440] +centroid = (0.75630947633945211, -1.6243998910731126) +station = ('kmcw', 0.0046197516356431207) +zone = ('iaz007', 0.0025265099157203118) + +[50441] +centroid = (0.74597710971435316, -1.627012910762736) +station = ('kifa', 0.0047774714739413308) +zone = ('iaz026', 0.00055301327326056846) + +[50444] +centroid = (0.75567915068009439, -1.6298518109641522) +station = ('kmcw', 0.0026480016371080925) +zone = ('iaz007', 0.0020941081030092287) + +[50446] +centroid = (0.7564385957975146, -1.6309562029549367) +station = ('kfxy', 0.0029277749864610454) +zone = ('iaz007', 0.0024455588664386674) + +[50447] +centroid = (0.74918956273557402, -1.6370788354242254) +station = ('kcav', 0.0030869773430804081) +zone = ('iaz016', 0.0028471461911047402) + +[50448] +centroid = (0.75659914863540567, -1.6273543146177185) +station = ('kmcw', 0.0036835923535036091) +zone = ('iaz007', 0.00054452808283582063) + +[50449] +centroid = (0.75053498469605884, -1.6330504409776971) +station = ('kmcw', 0.003936346486166903) +zone = ('iaz016', 0.002544777296990619) + +[50450] +centroid = (0.75784252119452633, -1.6322737520072672) +station = ('kfxy', 0.0035593773407423795) +zone = ('iaz006', 0.0027920148009735347) + +[50451] +centroid = (0.75714536687810974, -1.6419641341736051) +station = ('kaxa', 0.0057282145705803604) +zone = ('iaz005', 0.003498011763636245) + +[50452] +centroid = (0.74667103517165356, -1.6295677062685126) +station = ('kifa', 0.0055717722682642988) +zone = ('iaz026', 0.001590082995816646) + +[50453] +centroid = (0.75683347654077837, -1.6344558149979882) +station = ('kfxy', 0.0023535570778966887) +zone = ('iaz006', 0.0011283091049569198) + +[50454] +centroid = (0.75715679878471032, -1.6185707880774243) +station = ('kaum', 0.0055551719744974483) +zone = ('iaz008', 0.000793887324279071) + +[50455] +centroid = (0.75846693018771993, -1.6170447943525283) +station = ('kaum', 0.0051236434297354883) +zone = ('iaz008', 0.0024895579244827407) + +[50456] +centroid = (0.75557622861410423, -1.6269284717335244) +station = ('kmcw', 0.0028820602441136296) +zone = ('iaz007', 0.0016061193896728539) + +[50457] +centroid = (0.74903138354546561, -1.6317712891689105) +station = ('kmcw', 0.0045620724920149578) +zone = ('iaz017', 0.0041413581002967955) + +[50458] +centroid = (0.75326199183912979, -1.6233659580242312) +station = ('kmcw', 0.00409395575356984) +zone = ('iaz018', 0.0033233149909948838) + +[50459] +centroid = (0.7584751506884968, -1.6275271894801286) +station = ('kael', 0.0042078691260037703) +zone = ('iaz007', 0.001402981807984533) + +[50460] +centroid = (0.75446832851152335, -1.6177246175494726) +station = ('kccy', 0.002959328632192722) +zone = ('iaz008', 0.0025802153036498143) + +[50461] +centroid = (0.75583521802180764, -1.619992638005854) +station = ('kccy', 0.0049077416339412625) +zone = ('iaz008', 0.00095406188541804148) + +[50464] +centroid = (0.75491424268211538, -1.6245661685909503) +station = ('kmcw', 0.0036851813093360659) +zone = ('iaz007', 0.0031488546351435085) + +[50465] +centroid = (0.75898347783314013, -1.6390776039369017) +station = ('kfxy', 0.0058138612489644385) +zone = ('iaz006', 0.0029519273374884114) + +[50466] +centroid = (0.75724343692877938, -1.6151004452059288) +station = ('kccy', 0.0056761669125990847) +zone = ('iaz008', 0.0032242590073683747) + +[50467] +centroid = (0.75418696398280938, -1.6246682878054843) +station = ('kmcw', 0.0033194002218963144) +zone = ('iaz017', 0.0031744286054532236) + +[50468] +centroid = (0.7510538012695066, -1.6222333440594421) +station = ('kmcw', 0.0053344894539671143) +zone = ('iaz018', 0.0020743520650937184) + +[50469] +centroid = (0.75047983229169579, -1.6265962308571147) +station = ('kmcw', 0.0031515364815627358) +zone = ('iaz017', 0.0016499062241020215) + +[50470] +centroid = (0.7460546023331418, -1.6329371342026577) +station = ('kcav', 0.0026446231258582869) +zone = ('iaz025', 0.002251504451643788) + +[50471] +centroid = (0.75339873838602356, -1.6209990995723091) +station = ('kccy', 0.0037404159548573511) +zone = ('iaz018', 0.0021678734651045016) + +[50472] +centroid = (0.75759063527687853, -1.6220272555813664) +station = ('kaum', 0.0045365407851930429) +zone = ('iaz008', 0.0020523651426133036) + +[50473] +centroid = (0.7586202573625076, -1.6351600029912903) +station = ('kfxy', 0.0042033599846141622) +zone = ('iaz006', 0.001648712320274964) + +[50475] +centroid = (0.74840683492593207, -1.6269742342665117) +station = ('kmcw', 0.0049247948623473035) +zone = ('iaz026', 0.0026437499472426662) + +[50476] +centroid = (0.75828979672193497, -1.6190381174379382) +station = ('kaum', 0.0043942412412229775) +zone = ('iaz008', 0.0016095196144426719) + +[50477] +centroid = (0.75030390310309469, -1.6288650541649523) +station = ('kmcw', 0.0028067970699004545) +zone = ('iaz017', 0.0018202559590726054) + +[50478] +centroid = (0.75760358561992835, -1.6368326218266467) +station = ('kfxy', 0.0037298434569499298) +zone = ('iaz006', 0.00081638578467178619) + +[50479] +centroid = (0.74943397864402328, -1.6303098551730457) +station = ('kmcw', 0.0038030429015121449) +zone = ('iaz017', 0.0031271236959256109) + +[50480] +centroid = (0.75486130684590225, -1.6416323819893861) +station = ('kaxa', 0.0039387501641862509) +zone = ('iaz005', 0.0020484603060865799) + +[50482] +centroid = (0.7524655631948598, -1.6316455556495968) +station = ('kmcw', 0.002053295922278145) +zone = ('iaz017', 0.0029272559925937404) + +[50483] +centroid = (0.75245619077677661, -1.6406254666373257) +station = ('kaxa', 0.0034249905072946734) +zone = ('iaz005', 0.0030695508201551997) + +[50484] +centroid = (0.75451929212568147, -1.6391361771865987) +station = ('kaxa', 0.0051576986328532659) +zone = ('iaz006', 0.0034446650223313195) + +[50501] +centroid = (0.74161537483398665, -1.6440412679696961) +station = ('kfod', 0.0010364245910235651) +zone = ('iaz035', 0.0011268587516714392) + +[50510] +centroid = (0.74629050103484129, -1.6578115143422034) +station = ('kslb', 0.0042229365747627938) +zone = ('iaz022', 0.0021639479842840673) + +[50511] +centroid = (0.75178383758903089, -1.6444349793423609) +station = ('kaxa', 0.0006266671999659852) +zone = ('iaz005', 0.0022772600011816647) + +[50514] +centroid = (0.75773741746697132, -1.6488546067940162) +station = ('kfrm', 0.0041590468505363319) +zone = ('iaz004', 0.0026920428349622725) + +[50515] +centroid = (0.75087933815747721, -1.6556781634909057) +station = ('kspw', 0.0051604683884299103) +zone = ('iaz015', 0.0025818457289609065) + +[50516] +centroid = (0.74394671583563055, -1.6430046820203519) +station = ('kfod', 0.0014369052576106158) +zone = ('iaz024', 0.0027909585644897827) + +[50517] +centroid = (0.75581919589927438, -1.6446971452493031) +station = ('kaxa', 0.0038951382258844069) +zone = ('iaz005', 0.0017979767241472968) + +[50518] +centroid = (0.7420251955956475, -1.6473468343065107) +station = ('kfod', 0.0026777807142004612) +zone = ('iaz035', 0.0030370645190345761) + +[50519] +centroid = (0.74877598951602142, -1.6451977754919451) +station = ('kaxa', 0.0031703966963348425) +zone = ('iaz024', 0.0022997714533124912) + +[50520] +centroid = (0.7471613156118313, -1.6475546681138384) +station = ('kaxa', 0.0050700678239439809) +zone = ('iaz024', 0.002507656138409955) + +[50521] +centroid = (0.73908101713375074, -1.642404061864863) +station = ('kebs', 0.0034027095598048052) +zone = ('iaz035', 0.0017503592600948362) + +[50522] +centroid = (0.75384294213394876, -1.6440073562223299) +station = ('kaxa', 0.0021068444167253531) +zone = ('iaz005', 0.00026186884006064107) + +[50523] +centroid = (0.7394609927652025, -1.6457710288847627) +station = ('kfod', 0.0034907755648971271) +zone = ('iaz035', 0.0018016630526489293) + +[50524] +centroid = (0.74380440168842299, -1.6467851349933413) +station = ('kfod', 0.0024824170083569499) +zone = ('iaz024', 0.0033596676818463673) + +[50525] +centroid = (0.74589258341867903, -1.6362014409559553) +station = ('kcav', 0.00034101910923710349) +zone = ('iaz025', 0.00016770216212874052) + +[50527] +centroid = (0.74988053858643855, -1.6543176095258061) +station = ('kaxa', 0.0069337704866035297) +zone = ('iaz015', 0.0024580850493077281) + +[50528] +centroid = (0.75282838223976445, -1.6500487785215232) +station = ('kaxa', 0.0036030957530752152) +zone = ('iaz015', 0.0019707755387896363) + +[50529] +centroid = (0.74562032950866042, -1.6440791241611721) +station = ('kfod', 0.0029893323817625442) +zone = ('iaz024', 0.00097480644558487427) + +[50530] +centroid = (0.73776299684252211, -1.6413023053212488) +station = ('kebs', 0.0036107099431439108) +zone = ('iaz035', 0.0032980874023822533) + +[50531] +centroid = (0.75841685669148018, -1.6512516943485827) +station = ('kest', 0.0020127744990462229) +zone = ('iaz004', 0.0015891672496078258) + +[50532] +centroid = (0.74106885988530968, -1.6406246637858695) +station = ('kebs', 0.0017904797639871277) +zone = ('iaz035', 0.0023975843359139428) + +[50533] +centroid = (0.74441657592355992, -1.6390705179001388) +station = ('kcav', 0.0025290924069826075) +zone = ('iaz025', 0.002672218916113878) + +[50535] +centroid = (0.74094787366156145, -1.660898757442886) +station = ('kslb', 0.002719590281540138) +zone = ('iaz033', 0.0013805830823662966) + +[50536] +centroid = (0.75255563963755523, -1.652922463134932) +station = ('kest', 0.0049497071588822774) +zone = ('iaz015', 0.00072209391535864472) + +[50538] +centroid = (0.73782134319941628, -1.6482837619555664) +station = ('kfod', 0.0058403651587943641) +zone = ('iaz034', 0.0032366644941339523) + +[50539] +centroid = (0.75462732800637999, -1.6479395830270731) +station = ('kaxa', 0.0033165237139061122) +zone = ('iaz005', 0.0027722695672488537) + +[50540] +centroid = (0.74352024463290578, -1.6552728107721302) +station = ('kslb', 0.0050513847578171275) +zone = ('iaz023', 0.0031166326091305084) + +[50541] +centroid = (0.74543410287747269, -1.6485051395178894) +station = ('kfod', 0.00444489224023606) +zone = ('iaz024', 0.0033470269135397971) + +[50542] +centroid = (0.74670379500171347, -1.6396092835869367) +station = ('kcav', 0.002327676660296226) +zone = ('iaz024', 0.0033916238778486148) + +[50543] +centroid = (0.7378326354796767, -1.6459264679079455) +station = ('kfod', 0.0050528284256338724) +zone = ('iaz035', 0.0031065998999796176) + +[50544] +centroid = (0.73741429751126619, -1.6435860686474835) +station = ('kebs', 0.0050522240022597116) +zone = ('iaz035', 0.0030939159189104929) + +[50545] +centroid = (0.74695547147985109, -1.6420208224677098) +station = ('kfod', 0.0045136485159023125) +zone = ('iaz024', 0.0016604365401851622) + +[50546] +centroid = (0.74765873444864972, -1.652865233788759) +station = ('kaxa', 0.0070233374556073654) +zone = ('iaz023', 0.0018324578501484516) + +[50548] +centroid = (0.74551335827880572, -1.644542160011726) +station = ('kfod', 0.0029258742694732785) +zone = ('iaz024', 0.0011001945772068328) + +[50551] +centroid = (0.74140848350445521, -1.653718961592372) +station = ('kcin', 0.0075090711113448855) +zone = ('iaz034', 0.0021780058104411528) + +[50554] +centroid = (0.74780349205681018, -1.6553172119483008) +station = ('kslb', 0.0065969489296853088) +zone = ('iaz023', 0.00286602600765882) + +[50556] +centroid = (0.75843666617849026, -1.6440416170355465) +station = ('kfrm', 0.0043934505395444778) +zone = ('iaz005', 0.0043829845297682574) + +[50557] +centroid = (0.73933546868539901, -1.6413728166230295) +station = ('kebs', 0.0026098238065662832) +zone = ('iaz035', 0.0021294020041895982) + +[50558] +centroid = (0.74807040525931767, -1.6434678225906609) +station = ('kaxa', 0.0040923128092992993) +zone = ('iaz024', 0.0015827355124341889) + +[50559] +centroid = (0.75413615744828366, -1.6463558712638136) +station = ('kaxa', 0.0023305971370107385) +zone = ('iaz005', 0.0015610192370300621) + +[50560] +centroid = (0.74980194641022124, -1.6424913981406328) +station = ('kaxa', 0.0029504280124671226) +zone = ('iaz024', 0.0034557270416137298) + +[50561] +centroid = (0.74045766303455385, -1.655453539616174) +station = ('kcin', 0.0066039937054791576) +zone = ('iaz033', 0.0033556481635173482) + +[50562] +centroid = (0.74982018510090453, -1.6518108105744593) +station = ('kaxa', 0.0052373346943261232) +zone = ('iaz015', 0.0021532861437415425) + +[50563] +centroid = (0.74225067468171257, -1.6497718471291092) +station = ('kfod', 0.0044103402248633454) +zone = ('iaz034', 0.0029000663793406025) + +[50565] +centroid = (0.74799731087024413, -1.6580805917529833) +station = ('kslb', 0.0053855965412448383) +zone = ('iaz022', 0.0028648757047187051) + +[50566] +centroid = (0.74067881370407396, -1.6462582899053344) +station = ('kfod', 0.0026641486253553381) +zone = ('iaz035', 0.0018355670146328791) + +[50567] +centroid = (0.74220910093893011, -1.6598409831964225) +station = ('kslb', 0.0021327026680152332) +zone = ('iaz033', 0.0024307997887534172) + +[50568] +centroid = (0.74396491961972888, -1.6577836937939268) +station = ('kslb', 0.0032345911016021336) +zone = ('iaz022', 0.0028733874095081421) + +[50569] +centroid = (0.74007555810141457, -1.6429523745026693) +station = ('kfod', 0.0026388387674592911) +zone = ('iaz035', 0.00074823364077722149) + +[50570] +centroid = (0.7486781987180321, -1.647119924050459) +station = ('kaxa', 0.0035386728567251462) +zone = ('iaz024', 0.0029771046103303513) + +[50571] +centroid = (0.74405068509917194, -1.6507095950829134) +station = ('kfod', 0.0052729537851120738) +zone = ('iaz023', 0.0022120599273831947) + +[50573] +centroid = (0.7483405996808189, -1.6514972796276308) +station = ('kaxa', 0.0058134690759437902) +zone = ('iaz023', 0.0025878034333026252) + +[50574] +centroid = (0.7455465369878862, -1.6528032396937282) +station = ('kaxa', 0.0084532121621776393) +zone = ('iaz023', 0.000395810958204723) + +[50575] +centroid = (0.74281813358141358, -1.6528353712052575) +station = ('kcin', 0.0089711391555417699) +zone = ('iaz023', 0.0030452546454012093) + +[50576] +centroid = (0.74705802702669832, -1.6611219152410461) +station = ('kslb', 0.0036250767667557913) +zone = ('iaz022', 0.0012220794231683997) + +[50577] +centroid = (0.74802481725925551, -1.640208140959881) +station = ('kcav', 0.0032941303527497159) +zone = ('iaz024', 0.0032793562456012114) + +[50578] +centroid = (0.75584104742150937, -1.6502011108586374) +station = ('kest', 0.0030222044485514431) +zone = ('iaz004', 0.0020560621184416996) + +[50579] +centroid = (0.73992029361115719, -1.6517579270981237) +station = ('kcin', 0.0062931660755139642) +zone = ('iaz034', 0.00016057734554192381) + +[50581] +centroid = (0.74775134161876056, -1.6502049331296993) +station = ('kaxa', 0.0055380796918808898) +zone = ('iaz023', 0.0025194143050290226) + +[50582] +centroid = (0.74689337266506517, -1.6457698246075787) +station = ('kfod', 0.0044932751539231118) +zone = ('iaz024', 0.0011720788903158276) + +[50583] +centroid = (0.74059063967026328, -1.6578130676852376) +station = ('kslb', 0.0043212779783103174) +zone = ('iaz033', 0.0017443697586865992) + +[50585] +centroid = (0.74905220532344197, -1.6605388007379547) +station = ('kspw', 0.0044517105204162884) +zone = ('iaz014', 0.0028833736897331884) + +[50586] +centroid = (0.74022659889488218, -1.6480369200394569) +station = ('kfod', 0.0039413458536391392) +zone = ('iaz035', 0.0031529987360248081) + +[50588] +centroid = (0.74453462999416498, -1.6609649054215367) +station = ('kslb', 0.0013381926067796491) +zone = ('iaz022', 0.0013542520714417941) + +[50590] +centroid = (0.75759609815743723, -1.646105172170057) +station = ('kfrm', 0.0044314397905633462) +zone = ('iaz005', 0.0037978048392678476) + +[50591] +centroid = (0.74483727008646072, -1.641581191482425) +station = ('kfod', 0.0027435920285264282) +zone = ('iaz024', 0.0026168510933849021) + +[50593] +centroid = (0.74450853732184752, -1.6562966558179351) +station = ('kslb', 0.0044102440382296805) +zone = ('iaz022', 0.0035153504563717988) + +[50594] +centroid = (0.74325188280711918, -1.6413098800502024) +station = ('kfod', 0.0019405410277674251) +zone = ('iaz035', 0.0032968331671129184) + +[50595] +centroid = (0.74109153171229303, -1.6375128988091963) +station = ('kebs', 0.00075010243778534139) +zone = ('iaz036', 0.0020161678971800413) + +[50597] +centroid = (0.75005960936769311, -1.6484936901579963) +station = ('kaxa', 0.003022165207410105) +zone = ('iaz015', 0.0034380284616479222) + +[50598] +centroid = (0.75192011289702654, -1.6478883227069421) +station = ('kaxa', 0.0019171140855749134) +zone = ('iaz005', 0.0034257148867962656) + +[50599] +centroid = (0.74314936216685701, -1.6375240514631166) +station = ('kebs', 0.002608592209426126) +zone = ('iaz025', 0.0029120185259651652) + +[50601] +centroid = (0.7429477068250816, -1.6242044141968892) +station = ('kifa', 0.003194602032016154) +zone = ('iaz026', 0.0038746698198419303) + +[50602] +centroid = (0.745978244178367, -1.6197658150162648) +station = ('kccy', 0.0061701008142936893) +zone = ('iaz027', 0.00026266943638900912) + +[50603] +centroid = (0.75376803260245318, -1.6137225077614794) +station = ('kccy', 0.0029108268868994567) +zone = ('iaz019', 0.0028685919305613491) + +[50604] +centroid = (0.74354221832818834, -1.6213493871531846) +station = ('kalo', 0.0064446584596050569) +zone = ('iaz027', 0.0026438621201665142) + +[50605] +centroid = (0.74755521897071386, -1.6235223220719173) +station = ('kmcw', 0.0068375591570617508) +zone = ('iaz026', 0.0035447264966615654) + +[50606] +centroid = (0.7460814105904523, -1.6003152026069243) +station = ('kolz', 0.0038117890803075669) +zone = ('iaz029', 0.0028070321304807032) + +[50607] +centroid = (0.7436943935856698, -1.6013372150570147) +station = ('kiib', 0.0036633586395669574) +zone = ('iaz040', 0.0026906078554122755) + +[50609] +centroid = (0.73702421642344551, -1.6198307587177316) +station = ('kmiw', 0.00239252606300465) +zone = ('iaz038', 0.0030379100415870433) + +[50611] +centroid = (0.74727125390141447, -1.6215671518839556) +station = ('kccy', 0.0057588778587957671) +zone = ('iaz027', 0.0021114929681838616) + +[50612] +centroid = (0.73798536924251878, -1.6124406681456447) +station = ('kalo', 0.0046557010469074119) +zone = ('iaz039', 0.0034076797266494908) + +[50613] +centroid = (0.74232019114581949, -1.6142107112598472) +station = ('kalo', 0.0011686342202671348) +zone = ('iaz039', 0.0025422721628317446) + +[50616] +centroid = (0.75189534667494073, -1.6171955558933153) +station = ('kccy', 0.00058471062962633393) +zone = ('iaz018', 0.0017018935895960403) + +[50619] +centroid = (0.74716988517845861, -1.6171910878504303) +station = ('kccy', 0.0045165677211887953) +zone = ('iaz027', 0.0021716903602032062) + +[50620] +centroid = (0.7532566162250337, -1.6160098664659732) +station = ('kccy', 0.001635702594185876) +zone = ('iaz018', 0.0030569881728778302) + +[50621] +centroid = (0.73742096466900886, -1.6217776734983311) +station = ('kmiw', 0.0023471354677266328) +zone = ('iaz038', 0.0031210474802847348) + +[50622] +centroid = (0.74477932515529444, -1.6115655949652798) +station = ('kalo', 0.0022945104579632889) +zone = ('iaz028', 0.0017944466960928263) + +[50624] +centroid = (0.74120337241076084, -1.6171998668565679) +station = ('kalo', 0.0036246259647621541) +zone = ('iaz038', 0.0020559675713633821) + +[50625] +centroid = (0.74610006816015617, -1.6229529782166241) +station = ('kifa', 0.0060577173162208158) +zone = ('iaz027', 0.0025568830982067876) + +[50626] +centroid = (0.74328418885157355, -1.6087665406306864) +station = ('kalo', 0.002956818116193582) +zone = ('iaz039', 0.002662893238307918) + +[50627] +centroid = (0.7391537973635588, -1.624794998709179) +station = ('kifa', 0.0030834587546496126) +zone = ('iaz037', 0.0019771315772027474) + +[50628] +centroid = (0.75525126576067536, -1.6125803119390969) +station = ('kccy', 0.0045784823858619171) +zone = ('iaz009', 0.0017624691152674443) + +[50629] +centroid = (0.74435969564323745, -1.6069514680217825) +station = ('kolz', 0.0013666967012033633) +zone = ('iaz028', 0.0038528889077791783) + +[50630] +centroid = (0.74975295501811778, -1.6094372008490578) +station = ('kolz', 0.005722679037788482) +zone = ('iaz019', 0.0022237411892482364) + +[50632] +centroid = (0.73411340865684693, -1.6179089068651906) +station = ('kmiw', 0.0029742522995838141) +zone = ('iaz050', 0.0021836498321880717) + +[50633] +centroid = (0.74476339029922378, -1.6253934022965177) +station = ('kifa', 0.0039658022555757403) +zone = ('iaz026', 0.002021385068269196) + +[50634] +centroid = (0.74034554308340572, -1.6094379164340511) +station = ('kalo', 0.0033143457925598999) +zone = ('iaz039', 0.0015122499378522382) + +[50635] +centroid = (0.73656491557749071, -1.617908383266415) +station = ('kmiw', 0.0031825206500754634) +zone = ('iaz050', 0.0030345938393495954) + +[50636] +centroid = (0.74865906990943021, -1.6198234632414583) +station = ('kccy', 0.0038743230140364068) +zone = ('iaz027', 0.0028621463831984069) + +[50638] +centroid = (0.73926457341118301, -1.6195600406974546) +station = ('kmiw', 0.0044800717480617518) +zone = ('iaz038', 0.00078911090558098584) + +[50641] +centroid = (0.74362458041558999, -1.604307224391841) +station = ('kolz', 0.0014727036167216628) +zone = ('iaz040', 0.0025956496121817291) + +[50642] +centroid = (0.74071244619875998, -1.6199527223258607) +station = ('kalo', 0.0056946122569564873) +zone = ('iaz038', 0.0007367052531552699) + +[50643] +centroid = (0.73928529046940406, -1.6138047127692483) +station = ('kalo', 0.0034527399618993638) +zone = ('iaz039', 0.0028032244570272121) + +[50644] +centroid = (0.74134868852428193, -1.6038474697602807) +station = ('kiib', 0.00068472186092117518) +zone = ('iaz040', 0.00072449274023778185) + +[50645] +centroid = (0.75083272041315652, -1.6134460476079633) +station = ('kccy', 0.0023551936765020391) +zone = ('iaz019', 0.0017568054743601585) + +[50647] +centroid = (0.7444016882650405, -1.6143808983152093) +station = ('kalo', 0.0021614289892954741) +zone = ('iaz028', 0.0031504799361652715) + +[50648] +centroid = (0.74094820527411931, -1.6073300822964176) +station = ('kiib', 0.002059888233418029) +zone = ('iaz040', 0.0033017121185392869) + +[50650] +centroid = (0.74382874903148832, -1.5996996773396235) +station = ('kiib', 0.0046196261374922215) +zone = ('iaz040', 0.0034785326166601144) + +[50651] +centroid = (0.73857207912386913, -1.609136672605157) +station = ('kvti', 0.0027973240629383007) +zone = ('iaz039', 0.0030347087415327854) + +[50652] +centroid = (0.73765105142429921, -1.6178113080534191) +station = ('kmiw', 0.0038661859206076663) +zone = ('iaz038', 0.0027096622744561517) + +[50653] +centroid = (0.74994345770597293, -1.6211615897256697) +station = ('kccy', 0.0038363342609388494) +zone = ('iaz018', 0.002017036425477159) + +[50654] +centroid = (0.74174220791072909, -1.5994691193454351) +station = ('kiib', 0.0038350727133538293) +zone = ('iaz040', 0.0025578686774378515) + +[50655] +centroid = (0.74640017752503662, -1.6038125806285333) +station = ('kolz', 0.001820321793486052) +zone = ('iaz029', 0.0017971038359279807) + +[50658] +centroid = (0.74984198426326198, -1.6151715499196553) +station = ('kccy', 0.0020452391496177777) +zone = ('iaz019', 0.0033352756209967032) + +[50659] +centroid = (0.75216426700608807, -1.6114459351917632) +station = ('kccy', 0.003701599915973131) +zone = ('iaz019', 0.00064060068509719421) + +[50660] +centroid = (0.74322345139360424, -1.6167254340059984) +station = ('kalo', 0.003033415353906728) +zone = ('iaz027', 0.003289727942144432) + +[50662] +centroid = (0.74505770517098757, -1.6046118367061917) +station = ('kolz', 0.00049346439101810807) +zone = ('iaz029', 0.003260461995694379) + +[50664] +centroid = (0.74527738976393609, -1.6070327305517553) +station = ('kolz', 0.001353045250028937) +zone = ('iaz028', 0.0033566875685184169) + +[50665] +centroid = (0.74316754849766287, -1.6191747418117846) +station = ('kalo', 0.0048095983833247348) +zone = ('iaz027', 0.0026500210370291005) + +[50666] +centroid = (0.74823951021054336, -1.6147805612606234) +station = ('kccy', 0.0036313949106605678) +zone = ('iaz028', 0.0030828060061562244) + +[50667] +centroid = (0.74124526031280868, -1.6096545990606861) +station = ('kalo', 0.0026317858702453582) +zone = ('iaz039', 0.0010567690759025717) + +[50668] +centroid = (0.74513177694444221, -1.6096967662154142) +station = ('kalo', 0.0033246759834527372) +zone = ('iaz028', 0.0018304530730756802) + +[50669] +centroid = (0.73903274132664054, -1.6162193757893824) +station = ('kalo', 0.0044496925512590452) +zone = ('iaz038', 0.0026353129261319124) + +[50670] +centroid = (0.74517485167038144, -1.6165021889413755) +station = ('kalo', 0.0037855223561747515) +zone = ('iaz027', 0.0022877227126768492) + +[50671] +centroid = (0.74439041343807266, -1.6021392811147686) +station = ('kolz', 0.0023530555059314436) +zone = ('iaz040', 0.0031831676054457744) + +[50672] +centroid = (0.74047838009277489, -1.6244075007086511) +station = ('kifa', 0.0026654269738335553) +zone = ('iaz037', 0.0022971605849492122) + +[50673] +centroid = (0.74220030447950014, -1.6181169675653209) +station = ('kalo', 0.0040268455968183597) +zone = ('iaz038', 0.002380267258582701) + +[50674] +centroid = (0.74766074157728957, -1.6077175453903603) +station = ('kolz', 0.0032817333140907783) +zone = ('iaz028', 0.0028203549972730477) + +[50675] +centroid = (0.73649089616391361, -1.6146406033079059) +station = ('kalo', 0.0063143316508078549) +zone = ('iaz050', 0.0020768667691580074) + +[50676] +centroid = (0.74698170377850859, -1.6105929753330208) +station = ('kalo', 0.0046081705330460552) +zone = ('iaz028', 0.00064462295372946983) + +[50677] +centroid = (0.74642119128923068, -1.6132022774713375) +station = ('kalo', 0.0038027266972310851) +zone = ('iaz028', 0.0014349800363230747) + +[50680] +centroid = (0.7409288146661297, -1.621812946602514) +station = ('kmiw', 0.0058548891886911533) +zone = ('iaz038', 0.0019133594066138599) + +[50681] +centroid = (0.74661029771368426, -1.6058666586252053) +station = ('kolz', 0.0017476060465626932) +zone = ('iaz029', 0.0025808850035475717) + +[50682] +centroid = (0.74093839652372318, -1.6002675725716375) +station = ('kiib', 0.0031522785522033422) +zone = ('iaz040', 0.0019482986361740893) + +[50701] +centroid = (0.74033828251371736, -1.6116339071522028) +station = ('kalo', 0.002426275160784792) +zone = ('iaz039', 0.00099064830002644987) + +[50702] +centroid = (0.74102688471679923, -1.6111519170259723) +station = ('kalo', 0.0019673699056267291) +zone = ('iaz039', 0.00022139423444304351) + +[50703] +centroid = (0.74260371988280605, -1.6107020758645629) +station = ('kalo', 0.0014606428090674993) +zone = ('iaz039', 0.0013899521237039543) + +[50707] +centroid = (0.74103475615172565, -1.610241326395329) +station = ('kalo', 0.0024109376109930016) +zone = ('iaz039', 0.00065789359275805726) + +[50801] +centroid = (0.71695635087084464, -1.6476295427387488) +station = ('kcsq', 0.0011774561937467206) +zone = ('iaz082', 0.0022831840925712759) + +[50830] +centroid = (0.71605799499825817, -1.6439447687153534) +station = ('kcsq', 0.0023190263308838907) +zone = ('iaz082', 0.00067557156693832769) + +[50833] +centroid = (0.70983491883051719, -1.652842300162388) +station = ('kicl', 0.0044723557815211992) +zone = ('iaz092', 0.0011682833771507837) + +[50835] +centroid = (0.71045894385127528, -1.6471629464165207) +station = ('kcsq', 0.0054181881386057866) +zone = ('iaz093', 0.0018109280436626033) + +[50836] +centroid = (0.70916715585870427, -1.6492922306506612) +station = ('kcsq', 0.0069276265044106288) +zone = ('moz003', 0.0028538853252843385) + +[50837] +centroid = (0.71950680050678395, -1.6526949594669345) +station = ('kcsq', 0.0056152112876036173) +zone = ('iaz081', 0.0034168156416196287) + +[50839] +centroid = (0.71645174127750799, -1.6549910622709807) +station = ('kcsq', 0.0060485464766404954) +zone = ('iaz081', 0.0016820524984770286) + +[50840] +centroid = (0.71177945996333414, -1.6490036230055514) +station = ('kcsq', 0.0043650437995052188) +zone = ('iaz093', 0.0032370834435632365) + +[50841] +centroid = (0.71574332958741604, -1.6540277976035123) +station = ('kcsq', 0.0052977449271114615) +zone = ('iaz081', 0.00098044178874418029) + +[50842] +centroid = (0.71628115279641813, -1.6486700033190327) +station = ('kcsq', 0.0013169190870160712) +zone = ('iaz082', 0.0028967446916508301) + +[50843] +centroid = (0.7197186660246836, -1.6560597273719768) +station = ('kaio', 0.0035740577037852873) +zone = ('iaz070', 0.0017438706705582418) + +[50845] +centroid = (0.71246942352323261, -1.6467124769365811) +station = ('kcsq', 0.0034138208842848915) +zone = ('iaz093', 0.0020539774005269326) + +[50846] +centroid = (0.72097793853328995, -1.6506646354013819) +station = ('kcsq', 0.0057969747148799147) +zone = ('iaz071', 0.001429014139491331) + +[50847] +centroid = (0.71803828047415585, -1.6577548784079763) +station = ('krdk', 0.0043205568719947591) +zone = ('iaz080', 0.0029921443246043581) + +[50848] +centroid = (0.71176136089899089, -1.6539485945620569) +station = ('kicl', 0.0037301425733003617) +zone = ('iaz092', 0.0011746419474610852) + +[50849] +centroid = (0.72096545942913826, -1.6473564161641043) +station = ('kcsq', 0.0050962924639279998) +zone = ('iaz071', 0.0011738696204815714) + +[50851] +centroid = (0.71398948312867194, -1.64998247346324) +station = ('kcsq', 0.002932592875444217) +zone = ('iaz081', 0.0029973672883649017) + +[50853] +centroid = (0.71971868347797607, -1.6540118103875641) +station = ('kaio', 0.0046672784563035197) +zone = ('iaz070', 0.0026697369956750973) + +[50854] +centroid = (0.70998903140346825, -1.6443230339241381) +station = ('klwd', 0.004218505520394056) +zone = ('iaz093', 0.0010583211087299333) + +[50857] +centroid = (0.71458303470069018, -1.6559852367195016) +station = ('kicl', 0.0044268828379910533) +zone = ('iaz081', 0.0028300570823437342) + +[50858] +centroid = (0.71944676118051532, -1.6477595697680223) +station = ('kcsq', 0.0036153657106077959) +zone = ('iaz071', 0.0020725368485518003) + +[50859] +centroid = (0.7167560917924708, -1.6510350815351178) +station = ('kcsq', 0.0031615619841247923) +zone = ('iaz081', 0.0014965529710531736) + +[50860] +centroid = (0.7089083933438034, -1.6466822652872288) +station = ('kcsq', 0.0069718755523932394) +zone = ('iaz093', 0.0024730362443789035) + +[50861] +centroid = (0.71398681277491638, -1.6450761784029586) +station = ('kcsq', 0.0023872452614199673) +zone = ('iaz082', 0.0020892503092631858) + +[50862] +centroid = (0.71228796164090269, -1.6520857522915258) +station = ('kcsq', 0.0052527546047711933) +zone = ('iaz092', 0.0013854489788150564) + +[50863] +centroid = (0.71292827058358188, -1.6436766337823696) +station = ('kcsq', 0.0038764170082379642) +zone = ('iaz093', 0.0021620732869436741) + +[50864] +centroid = (0.71506785226030922, -1.6576807542746439) +station = ('krdk', 0.0038862068872988231) +zone = ('iaz080', 0.0025682243871990168) + +[51001] +centroid = (0.74752350633820519, -1.6847180336897236) +station = ('klrj', 0.0043670111321260944) +zone = ('sdz071', 0.0016499970698960918) + +[51002] +centroid = (0.74505376072687812, -1.6636308609473731) +station = ('kslb', 0.0018954482657227063) +zone = ('iaz022', 0.002302473634869687) + +[51003] +centroid = (0.75031598078151851, -1.6752986313430502) +station = ('korc', 0.001016779001884491) +zone = ('iaz012', 0.0029176400878036489) + +[51004] +centroid = (0.73958087943152184, -1.6740385210764028) +station = ('kckp', 0.0077553086735490037) +zone = ('iaz031', 0.0016902311295660421) + +[51005] +centroid = (0.74566754066492691, -1.6653720712223326) +station = ('kckp', 0.0017626428775982185) +zone = ('iaz021', 0.0026380723396704389) + +[51006] +centroid = (0.73863716245167599, -1.6688770588794803) +station = ('kdns', 0.006635975510108875) +zone = ('iaz032', 0.001787973674815311) + +[51007] +centroid = (0.74008852589775698, -1.6787809646265071) +station = ('ksux', 0.0025553275574625809) +zone = ('iaz031', 0.0018491693610312198) + +[51008] +centroid = (0.74719100366240776, -1.6801731614109452) +station = ('klrj', 0.0010989905783105171) +zone = ('iaz020', 0.0014429131982856707) + +[51009] +centroid = (0.74952042480187442, -1.667688856178015) +station = ('kckp', 0.0037125545629433944) +zone = ('iaz013', 0.0026080833931748826) + +[51010] +centroid = (0.73454181717504141, -1.6739366287546715) +station = ('ktqe', 0.0066132219770783278) +zone = ('iaz043', 0.0008897013407261938) + +[51011] +centroid = (0.7490310170263228, -1.6844949457047336) +station = ('klrj', 0.0047621920418897141) +zone = ('sdz071', 0.0023297237797185975) + +[51012] +centroid = (0.74602592657353151, -1.6678689043436505) +station = ('kckp', 0.00023090554413311492) +zone = ('iaz021', 0.00080891221336997984) + +[51014] +centroid = (0.7467851971580266, -1.6704077300867717) +station = ('kckp', 0.0021730829854828284) +zone = ('iaz021', 0.0014015072581219201) + +[51016] +centroid = (0.74126997417501694, -1.6721064939543226) +station = ('kckp', 0.0055510002460695063) +zone = ('iaz032', 0.0040311857262401735) + +[51018] +centroid = (0.74088635080542864, -1.6699444847967073) +station = ('kckp', 0.0051771143623523495) +zone = ('iaz032', 0.002417273237421743) + +[51019] +centroid = (0.73783233877370391, -1.6709026007428822) +station = ('kdns', 0.0068304879254382743) +zone = ('iaz032', 0.0034697402587117376) + +[51020] +centroid = (0.74194136743167416, -1.665280546156358) +station = ('kslb', 0.0027981412260372207) +zone = ('iaz032', 0.0025083978982910313) + +[51022] +centroid = (0.75008983847033761, -1.6728985243688779) +station = ('korc', 0.0027684413865993376) +zone = ('iaz013', 0.0034231364184075428) + +[51023] +centroid = (0.75081722188939881, -1.6835516476039083) +station = ('korc', 0.0050634606111039484) +zone = ('iaz012', 0.0037719308424732025) + +[51024] +centroid = (0.7437221792273615, -1.6801060011413287) +station = ('klrj', 0.0030293867490169789) +zone = ('iaz020', 0.0022807310480238742) + +[51025] +centroid = (0.74172384704699812, -1.6677686875380011) +station = ('kckp', 0.0040844326635816478) +zone = ('iaz032', 0.002010601915363112) + +[51026] +centroid = (0.73749479209636815, -1.6767054016267429) +station = ('ksux', 0.0046406100979167475) +zone = ('iaz031', 0.0023641452954012545) + +[51027] +centroid = (0.74979890953732276, -1.6811400912698427) +station = ('korc', 0.0032883036950472656) +zone = ('iaz012', 0.0028190577825623884) + +[51028] +centroid = (0.74345188008610519, -1.6753003592190099) +station = ('klrj', 0.0041238790612849689) +zone = ('iaz031', 0.003686447202497084) + +[51029] +centroid = (0.7484068000193469, -1.6674499904165869) +station = ('kckp', 0.0026087081808589528) +zone = ('iaz021', 0.0027578065283067228) + +[51030] +centroid = (0.74172550510978752, -1.6788029034152046) +station = ('ksux', 0.0032087753029593634) +zone = ('iaz031', 0.0026396707048208642) + +[51031] +centroid = (0.74697556021954159, -1.6787661816877426) +station = ('klrj', 0.00036997031866056631) +zone = ('iaz020', 0.0011192165245186585) + +[51033] +centroid = (0.7489666492835092, -1.6624513325322903) +station = ('kspw', 0.0044559509561707383) +zone = ('iaz014', 0.0032318001865469363) + +[51034] +centroid = (0.7358439724233693, -1.6718442582342108) +station = ('kdns', 0.0061069778497915119) +zone = ('iaz043', 0.0029149052771464583) + +[51035] +centroid = (0.7466318001700688, -1.6720143929296951) +station = ('kckp', 0.0032277807584478748) +zone = ('iaz021', 0.0023713656437326612) + +[51036] +centroid = (0.7499630926600579, -1.6788231841411128) +station = ('korc', 0.001586187422393635) +zone = ('iaz012', 0.0019756630370759958) + +[51037] +centroid = (0.74746641661837243, -1.6692876475860117) +station = ('kckp', 0.0020000529839122707) +zone = ('iaz021', 0.0016067526439470868) + +[51038] +centroid = (0.74531128405800984, -1.6810480251518001) +station = ('klrj', 0.002051124191310455) +zone = ('iaz020', 0.0014494565190116672) + +[51039] +centroid = (0.74087861899684238, -1.6763810670918446) +station = ('ksux', 0.0044517849838138623) +zone = ('iaz031', 0.0010405188181846078) + +[51040] +centroid = (0.73367072334537109, -1.6770353735751249) +station = ('ktqe', 0.0048682895563995805) +zone = ('iaz043', 0.0016684187791563508) + +[51041] +centroid = (0.75094637625404637, -1.6768754839623496) +station = ('korc', 0.00075931607828470175) +zone = ('iaz012', 0.0016126690916158253) + +[51044] +centroid = (0.73841068852793734, -1.6741699618223707) +station = ('ksux', 0.0060842455373373806) +zone = ('iaz031', 0.0021260320643260145) + +[51046] +centroid = (0.74982545599524564, -1.6698964707889852) +station = ('kckp', 0.0043107264224816174) +zone = ('iaz013', 0.0022336255311241186) + +[51047] +centroid = (0.74948738571913431, -1.6645140150021747) +station = ('kspw', 0.0043723609286340998) +zone = ('iaz014', 0.0037103674957186575) + +[51048] +centroid = (0.74265421225806627, -1.6727464189245664) +station = ('kckp', 0.0048354526011775796) +zone = ('iaz031', 0.0038458371389000633) + +[51049] +centroid = (0.74402124139469084, -1.6693744777162984) +station = ('kckp', 0.0021436785206395727) +zone = ('iaz021', 0.0018832297385548114) + +[51050] +centroid = (0.74688949803412574, -1.6745722951215405) +station = ('korc', 0.0036534828692802823) +zone = ('iaz020', 0.0035728069580283689) + +[51051] +centroid = (0.73663525234634608, -1.6749045185446576) +station = ('ksux', 0.0062243632421845052) +zone = ('iaz043', 0.0026971408538885699) + +[51052] +centroid = (0.73841798400421055, -1.6801584308320585) +station = ('ksux', 0.0020023402593804095) +zone = ('iaz031', 0.0031865907258641379) + +[51053] +centroid = (0.74167796234096317, -1.6630636463937674) +station = ('kslb', 0.0019557999925395473) +zone = ('iaz033', 0.0030072694665954215) + +[51054] +centroid = (0.73967273611005435, -1.6810332596663282) +station = ('ksux', 0.00086845171264273596) +zone = ('iaz031', 0.0035003263164529582) + +[51055] +centroid = (0.73691145070047415, -1.6800725431795678) +station = ('ksux', 0.0032292331900059348) +zone = ('iaz031', 0.0040448464497395541) + +[51056] +centroid = (0.73724964314963304, -1.6747550485475167) +station = ('ksux', 0.0060422339073155102) +zone = ('iaz031', 0.0028308558233258911) + +[51058] +centroid = (0.75003683282095457, -1.6662189747885703) +station = ('kckp', 0.0043776072847595965) +zone = ('iaz013', 0.0027791382671615841) + +[51060] +centroid = (0.73377188262881665, -1.6700160432960391) +station = ('kdns', 0.0040422388884947449) +zone = ('iaz044', 0.0039254961567775446) + +[51061] +centroid = (0.74317386658955498, -1.6706024739247092) +station = ('kckp', 0.0033612605274833834) +zone = ('iaz021', 0.0029646925623368629) + +[51062] +centroid = (0.74521766459693284, -1.6848530349073656) +station = ('ksux', 0.0058250204599397315) +zone = ('sdz071', 0.0028152390103850095) + +[51063] +centroid = (0.73546706857140121, -1.6784537852049282) +station = ('ksux', 0.0050867672168557233) +zone = ('iaz043', 0.0031006483261497094) + +[51101] +centroid = (0.74165476691520416, -1.6823958905732377) +station = ('ksux', 0.0019311165090243306) +zone = ('nez014', 0.0028325860861065037) + +[51103] +centroid = (0.74206313905358579, -1.6831944310659026) +station = ('ksux', 0.0024455891041158342) +zone = ('nez014', 0.002722519613143157) + +[51104] +centroid = (0.74239597334194107, -1.682579080331527) +station = ('ksux', 0.0026813837867480676) +zone = ('nez014', 0.0032633021076624966) + +[51105] +centroid = (0.74197285317138018, -1.6816601121204746) +station = ('ksux', 0.0022800691496878355) +zone = ('nez014', 0.003455427458039785) + +[51106] +centroid = (0.74112607177819012, -1.6811274027261807) +station = ('ksux', 0.0016084589935598343) +zone = ('iaz031', 0.0037885331007352714) + +[51108] +centroid = (0.74291740790926697, -1.681671037881592) +station = ('ksux', 0.0032130594828282451) +zone = ('iaz020', 0.0034851364037434478) + +[51109] +centroid = (0.74316316772124025, -1.6837964998446706) +station = ('ksux', 0.0036291137860033993) +zone = ('nez014', 0.0034970784704294361) + +[51111] +centroid = (0.74034248875721476, -1.6823770235640236) +station = ('ksux', 0.00062655652277589723) +zone = ('nez014', 0.0022613108141124076) + +[51201] +centroid = (0.7535952973663832, -1.6731789289665033) +station = ('kshl', 0.0007957169355442635) +zone = ('iaz013', 0.0034818735526518092) + +[51230] +centroid = (0.75678052325127287, -1.6811645258793708) +station = ('klyv', 0.0047527642591946489) +zone = ('iaz001', 0.001480344812321488) + +[51231] +centroid = (0.75229151896185098, -1.6710166056496225) +station = ('kshl', 0.0022962911066162204) +zone = ('iaz013', 0.0015313343194957264) + +[51232] +centroid = (0.75587810076152917, -1.6722464344537478) +station = ('kshl', 0.0016263354064657834) +zone = ('iaz002', 0.0026896055340124691) + +[51234] +centroid = (0.75384618844635742, -1.6758535413254294) +station = ('kshl', 0.0024045146677355604) +zone = ('iaz012', 0.0027816763196182896) + +[51235] +centroid = (0.75563225368309328, -1.6793273399488438) +station = ('kshl', 0.0050795071756676224) +zone = ('iaz001', 0.0015037949677342299) + +[51237] +centroid = (0.75635703656156905, -1.6755294162300416) +station = ('kshl', 0.0029781015626344424) +zone = ('iaz001', 0.0027697654190139) + +[51238] +centroid = (0.75178924810971204, -1.6736439195858197) +station = ('kshl', 0.0025964978206089867) +zone = ('iaz013', 0.0034170649031300105) + +[51239] +centroid = (0.7540506014083509, -1.6780901109486901) +station = ('korc', 0.0039853078130710354) +zone = ('iaz012', 0.002152525018579573) + +[51240] +centroid = (0.7558909463848239, -1.6835170028182564) +station = ('kfsd', 0.0060428356748132286) +zone = ('iaz001', 0.0033852001991642178) + +[51241] +centroid = (0.75836706244792074, -1.68357513973564) +station = ('klyv', 0.0043004759358311606) +zone = ('iaz001', 0.0034185186572100248) + +[51242] +centroid = (0.75819038276774131, -1.6813602994615671) +station = ('klyv', 0.0034854568973197615) +zone = ('iaz001', 0.0019007041653394123) + +[51243] +centroid = (0.75816648921028162, -1.6739532966490283) +station = ('kshl', 0.0040146118912716706) +zone = ('iaz002', 0.0037885077021847908) + +[51244] +centroid = (0.75476365567425319, -1.6743913044781085) +station = ('kshl', 0.0013893751811174832) +zone = ('iaz012', 0.0041868348435680075) + +[51245] +centroid = (0.75179535676209397, -1.6685338573353681) +station = ('kshl', 0.0038693648503964734) +zone = ('iaz013', 0.00035666979420605525) + +[51246] +centroid = (0.75796010402623326, -1.6784520922355537) +station = ('klyv', 0.0034247027805409378) +zone = ('iaz001', 0.00098464931384858946) + +[51247] +centroid = (0.75387318868988584, -1.6814175113544472) +station = ('korc', 0.0050457153480254731) +zone = ('iaz012', 0.0028155974248424355) + +[51248] +centroid = (0.75407892810211086, -1.6695449440243408) +station = ('kshl', 0.0022403143626536972) +zone = ('iaz013', 0.0021656239270989473) + +[51249] +centroid = (0.75766893074712305, -1.670744596085699) +station = ('kshl', 0.0036562505716693926) +zone = ('iaz002', 0.0014235644360324519) + +[51250] +centroid = (0.75207865860627765, -1.6791081615013783) +station = ('korc', 0.0025840902142643127) +zone = ('iaz012', 0.00038434704274429367) + +[51301] +centroid = (0.75316489917284146, -1.6606398378483529) +station = ('kspw', 0.00090964757546076213) +zone = ('iaz014', 0.0012324163053783104) + +[51331] +centroid = (0.75679237403689392, -1.66028728133945) +station = ('kspw', 0.0035764091138172412) +zone = ('iaz003', 0.00041970801118912084) + +[51333] +centroid = (0.75274909193184625, -1.6580546212537137) +station = ('kspw', 0.0028406246205667151) +zone = ('iaz014', 0.0020954362276701683) + +[51334] +centroid = (0.75754461094450343, -1.6546603747376052) +station = ('kest', 0.00070182180877528051) +zone = ('iaz004', 0.0016702383662179766) + +[51338] +centroid = (0.75407589122921237, -1.6636260263853448) +station = ('kspw', 0.0014641896686327679) +zone = ('iaz014', 0.0030256387175228911) + +[51341] +centroid = (0.75074075901486892, -1.6587390695731759) +station = ('kspw', 0.0034952064213467082) +zone = ('iaz014', 0.001863267973456519) + +[51342] +centroid = (0.75481784814752773, -1.6534704790667656) +station = ('kest', 0.0026602680762695644) +zone = ('iaz004', 0.0023877594345396648) + +[51343] +centroid = (0.75081463880210586, -1.6599132747340402) +station = ('kspw', 0.002945338215823805) +zone = ('iaz014', 0.0012570820921359942) + +[51345] +centroid = (0.75760723335806501, -1.6656981336331902) +station = ('kotg', 0.0046142204543146532) +zone = ('iaz002', 0.0024174230986608865) + +[51346] +centroid = (0.75364125188558828, -1.6660817220961937) +station = ('kspw', 0.003099625312682334) +zone = ('iaz013', 0.0027004583647367904) + +[51347] +centroid = (0.75786428545029871, -1.6636208078508814) +station = ('kspw', 0.0046473142982680713) +zone = ('iaz003', 0.0022611897472045242) + +[51350] +centroid = (0.75591890655944083, -1.668549303499248) +station = ('kshl', 0.0033823824136068673) +zone = ('iaz002', 0.0012142548299287125) + +[51351] +centroid = (0.75599048251206513, -1.6612680167527305) +station = ('kspw', 0.002623828739963318) +zone = ('iaz003', 0.0011723603325122791) + +[51354] +centroid = (0.75766203669657761, -1.6675101170093183) +station = ('kotg', 0.0042079445422486773) +zone = ('iaz002', 0.0011888886201778066) + +[51355] +centroid = (0.75726654508807567, -1.6604485323090417) +station = ('kspw', 0.0039974089785939195) +zone = ('iaz003', 0.00025516177079842932) + +[51357] +centroid = (0.75155226730387614, -1.6629604799816822) +station = ('kspw', 0.0020198240857416446) +zone = ('iaz014', 0.0016959089027537276) + +[51358] +centroid = (0.75278724482929493, -1.6563096236142774) +station = ('kspw', 0.0040842899328824558) +zone = ('iaz015', 0.0029500372688984595) + +[51360] +centroid = (0.75823321314758529, -1.6595817494426237) +station = ('kmjq', 0.0038343786192930763) +zone = ('iaz003', 0.0014040041933196129) + +[51363] +centroid = (0.75806087933724342, -1.6571332793948783) +station = ('kest', 0.0025625952638049414) +zone = ('iaz003', 0.0027669444865829236) + +[51364] +centroid = (0.75571974703849576, -1.6574596908715864) +station = ('kest', 0.0032481032640662546) +zone = ('iaz003', 0.0027235787436451354) + +[51365] +centroid = (0.75581785199575047, -1.6533945048844263) +station = ('kest', 0.0016698328699064971) +zone = ('iaz004', 0.0014433395326727315) + +[51366] +centroid = (0.74980571632140558, -1.6581143464207171) +station = ('kspw', 0.0045109190696161318) +zone = ('iaz014', 0.0028451465438406819) + +[51401] +centroid = (0.73418428647777034, -1.6557879272475635) +station = ('kcin', 0.0011515761410414011) +zone = ('iaz045', 0.00052714034553873873) + +[51430] +centroid = (0.73447395877372401, -1.6584942696922911) +station = ('kcin', 0.003177902143836616) +zone = ('iaz045', 0.0022723727504513772) + +[51431] +centroid = (0.73905693159007313, -1.6642009902008295) +station = ('kslb', 0.0047067861956206795) +zone = ('iaz032', 0.0022125660386827315) + +[51433] +centroid = (0.73769204920842857, -1.6558869572293218) +station = ('kcin', 0.0039640292350770542) +zone = ('iaz033', 0.0036297365270442535) + +[51436] +centroid = (0.73632412995388552, -1.6584747220046687) +station = ('kcin', 0.0039368459273188298) +zone = ('iaz045', 0.0033900518493296173) + +[51439] +centroid = (0.73458794622717161, -1.6683669689522922) +station = ('kdns', 0.0032544676811251485) +zone = ('iaz044', 0.0028450942106173411) + +[51440] +centroid = (0.73152559152162233, -1.6547986222676558) +station = ('kcin', 0.0024161649825554937) +zone = ('iaz045', 0.002232115211629835) + +[51441] +centroid = (0.73501583114659053, -1.6635680290943011) +station = ('kdns', 0.0024331793998091517) +zone = ('iaz044', 0.00158442220560076) + +[51442] +centroid = (0.73351821647533189, -1.6643570575425428) +station = ('kdns', 0.0008251188249486759) +zone = ('iaz044', 0.00032573835650598115) + +[51443] +centroid = (0.7344674312423215, -1.6527716841408522) +station = ('kcin', 0.0012512168269708226) +zone = ('iaz045', 0.0022680880427910109) + +[51444] +centroid = (0.73312274232012231, -1.6575936099850919) +station = ('kcin', 0.0025836730518914264) +zone = ('iaz045', 0.0015570076241988254) + +[51445] +centroid = (0.73864803585291605, -1.6661299280901338) +station = ('kslb', 0.0056856224392348043) +zone = ('iaz032', 0.0013196904103518821) + +[51446] +centroid = (0.72911293563012813, -1.6614108021388363) +station = ('kadu', 0.003764892541118562) +zone = ('iaz056', 0.0022018928255429044) + +[51447] +centroid = (0.728187911126571, -1.6614833031159641) +station = ('khnr', 0.0030472007185506278) +zone = ('iaz056', 0.001623550565523007) + +[51448] +centroid = (0.73662247653622148, -1.6634696274310736) +station = ('kdns', 0.0039904194492573018) +zone = ('iaz044', 0.003080600360162515) + +[51449] +centroid = (0.73771267900018722, -1.6534272996210713) +station = ('kcin', 0.003854068968376553) +zone = ('iaz034', 0.0023801453200871887) + +[51450] +centroid = (0.73856158969506469, -1.6584258178790279) +station = ('kcin', 0.0055731724047703131) +zone = ('iaz033', 0.0016355516775636183) + +[51451] +centroid = (0.73625108792468963, -1.6527422927962487) +station = ('kcin', 0.0026037267431901628) +zone = ('iaz045', 0.0033549565693375468) + +[51453] +centroid = (0.73774584025597501, -1.6501623470959503) +station = ('kcin', 0.0049018949185381938) +zone = ('iaz034', 0.0023467221945642509) + +[51454] +centroid = (0.73079168057115884, -1.6616011128404737) +station = ('kdns', 0.0030536086491192859) +zone = ('iaz056', 0.0035382189335653852) + +[51455] +centroid = (0.73149480391361732, -1.6590251988507478) +station = ('kadu', 0.0040706487731829643) +zone = ('iaz045', 0.0033312854195616257) + +[51458] +centroid = (0.73873458673052239, -1.6621696712976035) +station = ('kslb', 0.0047757422280582627) +zone = ('iaz033', 0.0019731060103631089) + +[51459] +centroid = (0.73382754117866278, -1.6517439470108153) +station = ('kcin', 0.0018860117798849914) +zone = ('iaz046', 0.0031285495779867574) + +[51461] +centroid = (0.73611282294134661, -1.6665336227461198) +station = ('kdns', 0.003615561197689771) +zone = ('iaz044', 0.0027693168945629866) + +[51462] +centroid = (0.73328921182417772, -1.6503226381344536) +station = ('kcin', 0.0030053421140663894) +zone = ('iaz046', 0.0021042834426160261) + +[51463] +centroid = (0.73142326286757797, -1.6565396929162752) +station = ('kcin', 0.0030012238142888294) +zone = ('iaz045', 0.0023460875665259275) + +[51465] +centroid = (0.73455473261150617, -1.6615661015356789) +station = ('kdns', 0.0029782550216888464) +zone = ('iaz044', 0.0025050815087650489) + +[51466] +centroid = (0.73752671416838722, -1.6599256142118515) +station = ('kcin', 0.0055302127170959448) +zone = ('iaz033', 0.0022520893577068833) + +[51467] +centroid = (0.73430644207211748, -1.6601221906455037) +station = ('kcin', 0.0043544786357393893) +zone = ('iaz044', 0.0034780736636181447) + +[51501] +centroid = (0.71955172528173028, -1.6733944422225395) +station = ('koma', 0.0013003935787857907) +zone = ('nez052', 0.0038102385598495409) + +[51503] +centroid = (0.71948123143324227, -1.6717541643382228) +station = ('kcbf', 0.00079311730849625922) +zone = ('iaz069', 0.0037401648514736189) + +[51510] +centroid = (0.72062084416833194, -1.6740652246139585) +station = ('koma', 0.00029833609168695031) +zone = ('nez052', 0.0031170982362959711) + +[51520] +centroid = (0.73250669345404595, -1.6661162621620904) +station = ('kdns', 0.0010415103433793955) +zone = ('iaz044', 0.0015662102137459172) + +[51521] +centroid = (0.72406893409186446, -1.6640907726585661) +station = ('khnr', 0.0017181286961247767) +zone = ('iaz056', 0.0035033663234336722) + +[51523] +centroid = (0.73155843861814496, -1.6766978443510818) +station = ('ktqe', 0.0029969589427591308) +zone = ('iaz043', 0.0027602895180481855) + +[51525] +centroid = (0.71966504951006227, -1.6653298517077268) +station = ('krdk', 0.0042698431049476475) +zone = ('iaz069', 0.0024364160522820383) + +[51526] +centroid = (0.72211060485795675, -1.6732782905608194) +station = ('koma', 0.0013415854414386718) +zone = ('nez052', 0.003949536505829028) + +[51527] +centroid = (0.73024706803136641, -1.663933413773206) +station = ('kdns', 0.0025736827007708392) +zone = ('iaz056', 0.002726021086437002) + +[51528] +centroid = (0.73145153720146028, -1.666808616823064) +station = ('kdns', 0.0020040776903836998) +zone = ('iaz044', 0.0027173531028803523) + +[51529] +centroid = (0.73060313265206578, -1.6692933373593732) +station = ('kdns', 0.0040011789717326468) +zone = ('iaz055', 0.0038328201510074256) + +[51530] +centroid = (0.72932862341908955, -1.6655761700250609) +station = ('kdns', 0.0034732382027201679) +zone = ('iaz056', 0.0023751331692398532) + +[51531] +centroid = (0.72585948482477791, -1.6595849957550324) +station = ('kadu', 0.0029310085866010118) +zone = ('iaz057', 0.0028986702622675387) + +[51532] +centroid = (0.71799321607286948, -1.6599672228612192) +station = ('krdk', 0.0029630718247125663) +zone = ('iaz080', 0.0019825559064073775) + +[51533] +centroid = (0.71627359552075698, -1.6646631359334652) +station = ('krdk', 0.0015210572727339293) +zone = ('iaz079', 0.0032039322428471088) + +[51534] +centroid = (0.71639877053471002, -1.6705364655723989) +station = ('kpmv', 0.0031623894417115057) +zone = ('iaz079', 0.0012502299178711654) + +[51535] +centroid = (0.71953737867527889, -1.6602739295706721) +station = ('kaio', 0.0031914169715931977) +zone = ('iaz070', 0.003188492710900593) + +[51536] +centroid = (0.722337567473886, -1.6643235472209046) +station = ('khnr', 0.0034568364302530749) +zone = ('iaz069', 0.0025612860563655354) + +[51537] +centroid = (0.72693191983695837, -1.663255335905514) +station = ('khnr', 0.0012718850658327162) +zone = ('iaz056', 0.00063269124605123365) + +[51540] +centroid = (0.71600848000737904, -1.6667697483406223) +station = ('krdk', 0.0030605703847222483) +zone = ('iaz079', 0.0016207767559238708) + +[51541] +centroid = (0.71801189109586583, -1.6653219977260929) +station = ('krdk', 0.002901485365782172) +zone = ('iaz079', 0.0032740707624837385) + +[51542] +centroid = (0.72311638574600345, -1.6728821182739091) +station = ('koma', 0.0023903287792044173) +zone = ('iaz055', 0.0044078003177368871) + +[51543] +centroid = (0.72704747808673287, -1.6593880353489447) +station = ('kadu', 0.0021717171552166027) +zone = ('iaz057', 0.00227066601952598) + +[51544] +centroid = (0.72093327555773146, -1.6600537562855331) +station = ('kaio', 0.0018361606210510425) +zone = ('iaz070', 0.0024806023471255489) + +[51545] +centroid = (0.73032108744494351, -1.6760416529122095) +station = ('ktqe', 0.0024104416522689946) +zone = ('iaz043', 0.0037305131869192127) + +[51546] +centroid = (0.72670368313067502, -1.671432325624155) +station = ('ktqe', 0.0058897508762461095) +zone = ('iaz055', 0.0010377868867937118) + +[51548] +centroid = (0.7211325572517242, -1.6691801527573815) +station = ('kcbf', 0.00192104222602375) +zone = ('iaz069', 0.0012824355443744706) + +[51549] +centroid = (0.71882833866665619, -1.6662083631867182) +station = ('krdk', 0.0039545779110827569) +zone = ('iaz069', 0.0028088580536669563) + +[51550] +centroid = (0.72766513265572119, -1.6733203529957925) +station = ('ktqe', 0.0042315125434791686) +zone = ('iaz055', 0.00076652687639776427) + +[51551] +centroid = (0.71542477209234201, -1.6683166162033722) +station = ('ksda', 0.0047696548845042128) +zone = ('iaz079', 0.00086395767128160728) + +[51552] +centroid = (0.72415030134159242, -1.6600440697081844) +station = ('kaio', 0.0017887410835290504) +zone = ('iaz070', 0.0036926407511197945) + +[51553] +centroid = (0.72299304332776504, -1.6675950796373054) +station = ('khnr', 0.0038831116460940856) +zone = ('iaz069', 0.0015375935720253091) + +[51554] +centroid = (0.71815739919560451, -1.6699632994460438) +station = ('kcbf', 0.0023609903944625662) +zone = ('iaz079', 0.0021457266184726491) + +[51555] +centroid = (0.72536061736468038, -1.6741732430413645) +station = ('kbta', 0.003550835511490089) +zone = ('iaz055', 0.0025532674206926805) + +[51556] +centroid = (0.72678492820735541, -1.6760268001602749) +station = ('ktqe', 0.0029642786882043419) +zone = ('iaz055', 0.0028633024393307127) + +[51557] +centroid = (0.7283562306796334, -1.6754734435209302) +station = ('ktqe', 0.0024946845959836219) +zone = ('iaz055', 0.0025059531128767145) + +[51558] +centroid = (0.73132245264998286, -1.6732569800906525) +station = ('ktqe', 0.0047006755507424062) +zone = ('iaz043', 0.0028622223994327956) + +[51559] +centroid = (0.72372398721850029, -1.6693881785509268) +station = ('kcbf', 0.0038109566346320816) +zone = ('iaz069', 0.0026627034092978914) + +[51560] +centroid = (0.72108791172945819, -1.6650415756751751) +station = ('khnr', 0.0047629712728299431) +zone = ('iaz069', 0.0019029964509536174) + +[51561] +centroid = (0.7157226997956575, -1.6721334592912662) +station = ('kpmv', 0.0017840113532373001) +zone = ('iaz079', 0.0024730970504759221) + +[51562] +centroid = (0.72823992193828047, -1.6666728476605515) +station = ('khnr', 0.0031680059029623197) +zone = ('iaz056', 0.002484756966324041) + +[51563] +centroid = (0.72554515102649375, -1.6682831756949039) +station = ('khnr', 0.003218985543093768) +zone = ('iaz055', 0.0035955009836147966) + +[51564] +centroid = (0.72971498695560355, -1.6741691066110373) +station = ('ktqe', 0.0034719002803329383) +zone = ('iaz055', 0.002607468331275451) + +[51565] +centroid = (0.72680657029008011, -1.6672158021375543) +station = ('khnr', 0.0026175713897875954) +zone = ('iaz056', 0.002887235967986586) + +[51566] +centroid = (0.71587225705926083, -1.6620927720907606) +station = ('krdk', 0.00047100687379443714) +zone = ('iaz080', 0.0010107494763973016) + +[51570] +centroid = (0.72478085389375291, -1.6661361414622708) +station = ('khnr', 0.001893010337671266) +zone = ('iaz056', 0.0034020687450235032) + +[51571] +centroid = (0.71797461086304315, -1.6686419455759438) +station = ('kcbf', 0.0030938608652403433) +zone = ('iaz079', 0.0018212642136253637) + +[51572] +centroid = (0.73291862606410174, -1.6717510751054465) +station = ('ktqe', 0.006520326595474751) +zone = ('iaz043', 0.002496336861070439) + +[51573] +centroid = (0.71522823056527496, -1.6597566663402588) +station = ('krdk', 0.0023262314175912431) +zone = ('iaz080', 0.0011777459760864829) + +[51575] +centroid = (0.71977709964804026, -1.6685734239495107) +station = ('kcbf', 0.0022067600606085016) +zone = ('iaz069', 0.0018539282131571789) + +[51576] +centroid = (0.72226744014454103, -1.6705405670961408) +station = ('kcbf', 0.0021386176529796098) +zone = ('iaz069', 0.0024024609344355228) + +[51577] +centroid = (0.72367656662272362, -1.6616192119048168) +station = ('kaio', 0.0022981160835646663) +zone = ('iaz056', 0.0041083110965009278) + +[51578] +centroid = (0.7281401240116514, -1.6649491081314045) +station = ('khnr', 0.0024608435896105933) +zone = ('iaz056', 0.0012501727692274633) + +[51579] +centroid = (0.72873739313497643, -1.6704022497529203) +station = ('kdns', 0.0058117546643741882) +zone = ('iaz055', 0.0018878766199157363) + +[51601] +centroid = (0.71080504264194577, -1.6641638321410546) +station = ('ksda', 0.00098032702127540811) +zone = ('iaz091', 0.0026463809395464344) + +[51630] +centroid = (0.70862146121477565, -1.6614022325722091) +station = ('kicl', 0.002906959811197137) +zone = ('iaz091', 0.0024707254819089993) + +[51631] +centroid = (0.70845389215329158, -1.6582373048665198) +station = ('kicl', 0.0022077287627986094) +zone = ('iaz091', 0.0031762859336863726) + +[51632] +centroid = (0.71113424664545688, -1.6589236730481591) +station = ('kicl', 0.0005376971304802508) +zone = ('iaz091', 0.001337885684306377) + +[51636] +centroid = (0.70977796873702459, -1.6621217096497585) +station = ('kicl', 0.0027737754512945018) +zone = ('iaz091', 0.0016609173070158455) + +[51637] +centroid = (0.70903756516174354, -1.6600818386331977) +station = ('kicl', 0.0019379954522740165) +zone = ('iaz091', 0.002045533249853783) + +[51638] +centroid = (0.71272610909632339, -1.6629486466493535) +station = ('ksda', 0.0023510182772764603) +zone = ('iaz091', 0.0024106501158699849) + +[51639] +centroid = (0.71070020071377848, -1.6662030573857922) +station = ('ksda', 0.00083939311343683048) +zone = ('iaz090', 0.0018823130974811948) + +[51640] +centroid = (0.7090136192444062, -1.6695160413719277) +station = ('kafk', 0.0025999610407972879) +zone = ('iaz090', 0.0022376888156276395) + +[51645] +centroid = (0.71352363729802215, -1.665611757288509) +station = ('ksda', 0.002311476804195483) +zone = ('iaz090', 0.0032910582162402903) + +[51646] +centroid = (0.71118126581550556, -1.6558715110654416) +station = ('kicl', 0.0021699491042060492) +zone = ('iaz092', 0.0023599426367246455) + +[51647] +centroid = (0.70875853937422728, -1.6636429211725041) +station = ('ksda', 0.0027773460429009853) +zone = ('iaz091', 0.0031939367552953533) + +[51648] +centroid = (0.71103797428391691, -1.6720323523676981) +station = ('kafk', 0.0025213061460848253) +zone = ('iaz090', 0.0025900032982901959) + +[51649] +centroid = (0.7129740854764467, -1.6672613901376165) +station = ('ksda', 0.0022798028855725212) +zone = ('iaz090', 0.0020973360938607048) + +[51650] +centroid = (0.70976231313363425, -1.6675309038807096) +station = ('ksda', 0.0022137251393575994) +zone = ('iaz090', 0.001609068110147162) + +[51652] +centroid = (0.71162217089114443, -1.6689199416192015) +station = ('ksda', 0.0027447378899125431) +zone = ('iaz090', 0.00052965693965625188) + +[51653] +centroid = (0.71345836198399759, -1.6699711708809704) +station = ('kpmv', 0.0033493836177303543) +zone = ('iaz090', 0.0025304130084771491) + +[51654] +centroid = (0.7127243463137789, -1.6716503696076066) +station = ('kpmv', 0.0027070606304826785) +zone = ('iaz090', 0.0027874060239488742) + +[51656] +centroid = (0.71095477443847432, -1.6607914895070588) +station = ('kicl', 0.0016572181108632925) +zone = ('iaz091', 0.00011169469018856231) + +[52001] +centroid = (0.74255752101750572, -1.582949054376533) +station = ('kdbq', 0.0025383651150165318) +zone = ('iaz042', 0.0027424975981450109) + +[52002] +centroid = (0.74219723270001647, -1.584291282384487) +station = ('kdbq', 0.0023728611447348161) +zone = ('iaz042', 0.0017113741805231952) + +[52003] +centroid = (0.74055543637925048, -1.5824844826362372) +station = ('kdbq', 0.0006631218892684883) +zone = ('iaz042', 0.0028189836269241369) + +[52030] +centroid = (0.73571240950435401, -1.5811274716895192) +station = ('kdbq', 0.0045276427684701921) +zone = ('iaz054', 0.00039584625193938948) + +[52031] +centroid = (0.73744635920962531, -1.57928597479574) +station = ('kdbq', 0.0037705129962247964) +zone = ('iaz054', 0.0018109321285359509) + +[52032] +centroid = (0.73809356220284983, -1.5854489592773346) +station = ('kdbq', 0.0026361883818109932) +zone = ('iaz042', 0.0031752922285118953) + +[52033] +centroid = (0.7379084176757984, -1.5882715581035374) +station = ('kmxo', 0.0022808010997795846) +zone = ('iaz053', 0.0032280461547951988) + +[52035] +centroid = (0.74474487235586018, -1.5914123828122564) +station = ('kpdc', 0.006172185852871606) +zone = ('iaz030', 0.0036650190470758556) + +[52037] +centroid = (0.73246651597466506, -1.5818574207425806) +station = ('kcwi', 0.0045489292859080509) +zone = ('iaz066', 0.00179050351389253) + +[52038] +centroid = (0.74327801038602148, -1.5980493463588152) +station = ('kiib', 0.0053454561625082692) +zone = ('iaz041', 0.0032106219324388847) + +[52039] +centroid = (0.74244808887340563, -1.5858228786162818) +station = ('kdbq', 0.0031924216783233441) +zone = ('iaz042', 0.0012583182554069807) + +[52040] +centroid = (0.74182891586796817, -1.5907224716122355) +station = ('kmxo', 0.0047291801736851768) +zone = ('iaz042', 0.0033922060187770004) + +[52041] +centroid = (0.7418618502309533, -1.5928116481801653) +station = ('kmxo', 0.0049056054153643735) +zone = ('iaz041', 0.0014898953055355725) + +[52042] +centroid = (0.74522230717274318, -1.5944894331901076) +station = ('kpdc', 0.0063889038367514108) +zone = ('iaz030', 0.0025670909812891972) + +[52043] +centroid = (0.74779005302156976, -1.5955661093523701) +station = ('kpdc', 0.0048656239309707219) +zone = ('iaz030', 0.00099567430349863334) + +[52044] +centroid = (0.74646019939801267, -1.5938958641647967) +station = ('kpdc', 0.0050938131109180742) +zone = ('iaz030', 0.0013406077918968833) + +[52045] +centroid = (0.74108119936312122, -1.5871595041173368) +station = ('kdbq', 0.0032389704180615679) +zone = ('iaz042', 0.00072346485238043918) + +[52046] +centroid = (0.74068916350653835, -1.5884785541528239) +station = ('kmxo', 0.004090204147580127) +zone = ('iaz042', 0.0017651377738730257) + +[52047] +centroid = (0.74995513395866875, -1.5942155037640069) +station = ('kpdc', 0.0029198894242239647) +zone = ('iaz030', 0.0021740585595325965) + +[52048] +centroid = (0.74599082800227379, -1.5927386759641393) +station = ('kpdc', 0.0051693048794764981) +zone = ('iaz030', 0.0020899285949477981) + +[52049] +centroid = (0.74849431082804196, -1.5917294218708811) +station = ('kpdc', 0.002564207113756903) +zone = ('iaz030', 0.001951799893255422) + +[52050] +centroid = (0.74358555485351541, -1.594007460517169) +station = ('kmxo', 0.0068078529744785938) +zone = ('iaz041', 0.0023742500035524652) + +[52052] +centroid = (0.74599636069600272, -1.5902864360052098) +station = ('kpdc', 0.0048792989449461897) +zone = ('iaz030', 0.0033862841395579896) + +[52053] +centroid = (0.74370486556118176, -1.5875698135711882) +station = ('kdbq', 0.0049862928680043063) +zone = ('iaz042', 0.0026824576591133573) + +[52054] +centroid = (0.73837279742987649, -1.581743974341201) +station = ('kdbq', 0.0018953509002435037) +zone = ('iaz054', 0.0024362238058541906) + +[52057] +centroid = (0.74158134091357275, -1.5962063135752942) +station = ('kmxo', 0.005822226618948015) +zone = ('iaz041', 0.00118453344791687) + +[52060] +centroid = (0.73489236655530454, -1.5827117070515544) +station = ('kdbq', 0.0051321042895784413) +zone = ('iaz054', 0.0018103780813844576) + +[52064] +centroid = (0.73467146023187957, -1.5762212638957005) +station = ('ksfy', 0.0027595161133418039) +zone = ('iaz054', 0.0036715094549695884) + +[52065] +centroid = (0.74339992163427326, -1.5901460068135944) +station = ('kmxo', 0.0063334689503816242) +zone = ('iaz042', 0.0036356982621576733) + +[52066] +centroid = (0.74487730793950147, -1.5874091385602493) +station = ('kdbq', 0.0058383429306088875) +zone = ('iaz042', 0.0037642650570768369) + +[52068] +centroid = (0.7404186898323567, -1.5850583894973234) +station = ('kdbq', 0.0015615458961500399) +zone = ('iaz042', 0.001161376188419041) + +[52069] +centroid = (0.73414824542871671, -1.5785163195021954) +station = ('kcwi', 0.00426059490068109) +zone = ('iaz054', 0.0025445719882344685) + +[52070] +centroid = (0.73443104112741742, -1.5748350535905966) +station = ('ksfy', 0.0017080366999451132) +zone = ('iaz054', 0.0047183948124691084) + +[52072] +centroid = (0.7491304658871013, -1.5948435779486296) +station = ('kpdc', 0.0036725386706386244) +zone = ('iaz030', 0.0014274479578635206) + +[52073] +centroid = (0.74387908432711591, -1.5852644256155215) +station = ('kdbq', 0.0042010069865667877) +zone = ('iaz042', 0.0027460586923424035) + +[52074] +centroid = (0.734968078938256, -1.578871912883997) +station = ('ksfy', 0.0047345413658279999) +zone = ('iaz054', 0.0017946183608985443) + +[52076] +centroid = (0.74525244900892518, -1.597153416493889) +station = ('kiib', 0.0069708848922481383) +zone = ('iaz030', 0.0033268811522172564) + +[52077] +centroid = (0.74736742154319935, -1.5980674105165733) +station = ('kpdc', 0.0066036672377136644) +zone = ('iaz029', 0.0036780896618320222) + +[52078] +centroid = (0.73994589759128404, -1.5902710771077921) +station = ('kmxo', 0.0029101279341183484) +zone = ('iaz042', 0.0032658417955187188) + +[52079] +centroid = (0.73802214332985827, -1.5832972126557208) +station = ('kdbq', 0.0020084267025375288) +zone = ('iaz054', 0.0027053164983961773) + +[52101] +centroid = (0.75666323712553896, -1.6016197140497426) +station = ('kdeh', 0.0012950055437668333) +zone = ('iaz010', 0.0014769953662629198) + +[52132] +centroid = (0.75417694579290284, -1.6044488229540552) +station = ('kdeh', 0.0027786285313004936) +zone = ('iaz010', 0.0017535542332700622) + +[52133] +centroid = (0.75241395380887832, -1.5999076682265836) +station = ('kdeh', 0.003135089391303145) +zone = ('iaz010', 0.0038625273923882496) + +[52134] +centroid = (0.75868684167347122, -1.6128801420512968) +station = ('kfka', 0.0046514393387139747) +zone = ('iaz009', 0.0023008265396111983) + +[52135] +centroid = (0.75076775925839734, -1.5998250792463793) +station = ('kdeh', 0.0047534978648863914) +zone = ('iaz029', 0.0035374944996394864) + +[52136] +centroid = (0.75702045366354453, -1.6076519733703627) +station = ('kfka', 0.0053509347519378244) +zone = ('iaz009', 0.002625173879903716) + +[52140] +centroid = (0.75826953344931936, -1.5975796608038109) +station = ('kdeh', 0.0037928223639059596) +zone = ('iaz011', 0.0034455067784875705) + +[52141] +centroid = (0.74938196783231381, -1.5994200406868688) +station = ('kdeh', 0.0061703488670717607) +zone = ('iaz029', 0.0029131239649336578) + +[52142] +centroid = (0.74743405821404052, -1.6021572929126493) +station = ('kolz', 0.0033904655322584058) +zone = ('iaz029', 0.00089512838361059134) + +[52144] +centroid = (0.75292023891829696, -1.6050460048109176) +station = ('kdeh', 0.0038496990264210479) +zone = ('iaz010', 0.0030438478257989576) + +[52146] +centroid = (0.75356683104628319, -1.5918392903472942) +station = ('kpdc', 0.002883135351337226) +zone = ('iaz011', 0.0028926739300499521) + +[52147] +centroid = (0.74979082866288604, -1.6049975544708823) +station = ('kolz', 0.004873472989233644) +zone = ('iaz029', 0.0022491437280223563) + +[52151] +centroid = (0.75653748615293259, -1.5928711464543657) +station = ('kpdc', 0.0059368391390126809) +zone = ('iaz011', 0.0018014481077843363) + +[52154] +centroid = (0.75256197518274004, -1.6086154649306337) +station = ('kdeh', 0.0062199936802848597) +zone = ('iaz019', 0.002175780563131485) + +[52155] +centroid = (0.75785088132164347, -1.6107389197650728) +station = ('kfka', 0.0046587702840011052) +zone = ('iaz009', 0.0011888943408242842) + +[52156] +centroid = (0.75140808565436901, -1.596319061844973) +station = ('kpdc', 0.0043398976360998253) +zone = ('iaz030', 0.0039423938918597672) + +[52157] +centroid = (0.75087371819728588, -1.5924438025870149) +station = ('kpdc', 0.0014748845729773785) +zone = ('iaz030', 0.0033515797321338973) + +[52158] +centroid = (0.7512585982039357, -1.5914331522303551) +station = ('kpdc', 0.00083004715181968398) +zone = ('iaz030', 0.004027347318989777) + +[52159] +centroid = (0.75186843369787493, -1.5945797365256056) +station = ('kpdc', 0.0031936193662387372) +zone = ('iaz011', 0.0035904766086951819) + +[52160] +centroid = (0.75851403662423122, -1.5943881517336143) +station = ('ky51', 0.0061021538629678958) +zone = ('iaz011', 0.0030787435774138287) + +[52161] +centroid = (0.75275230333766996, -1.6014639434140019) +station = ('kdeh', 0.0027013837230688855) +zone = ('iaz010', 0.0030192254405067018) + +[52162] +centroid = (0.75236916866027215, -1.5978764889496977) +station = ('kdeh', 0.0038415860466584975) +zone = ('iaz011', 0.0037928323021222555) + +[52163] +centroid = (0.75432721864149954, -1.6075022415738343) +station = ('kdeh', 0.0048296074480977738) +zone = ('iaz009', 0.0036220376911641019) + +[52164] +centroid = (0.74795571967416907, -1.6040729662996382) +station = ('kolz', 0.0031566571523678967) +zone = ('iaz029', 0.0008087212093816986) + +[52165] +centroid = (0.7558964092653826, -1.6056066918331209) +station = ('kdeh', 0.0033490752006548703) +zone = ('iaz010', 0.0019440128288441946) + +[52166] +centroid = (0.75164075549695231, -1.6045386026907777) +station = ('kdeh', 0.0045701718975497876) +zone = ('iaz029', 0.0037265586466081759) + +[52168] +centroid = (0.75407791581114481, -1.6048715067923032) +station = ('kdeh', 0.0030984916286786847) +zone = ('iaz010', 0.0020286275582481624) + +[52169] +centroid = (0.74806084085501667, -1.5998226357854264) +station = ('kolz', 0.0050765574663949181) +zone = ('iaz029', 0.0023185329895025054) + +[52170] +centroid = (0.75439891676717152, -1.5935762071122939) +station = ('kpdc', 0.0042078800908441896) +zone = ('iaz011', 0.0014039914458951564) + +[52171] +centroid = (0.75168150893498642, -1.6066263829953058) +station = ('kdeh', 0.0055359132574724539) +zone = ('iaz019', 0.003378043703370691) + +[52172] +centroid = (0.7552175983594045, -1.5967044654503983) +station = ('kdeh', 0.0031703859503342817) +zone = ('iaz011', 0.0013715160745243955) + +[52175] +centroid = (0.75038589867135341, -1.6026594764983257) +station = ('kdeh', 0.0051857391804516111) +zone = ('iaz029', 0.0023065293951136405) + +[52201] +centroid = (0.72133864572979955, -1.5977976524273851) +station = ('kawg', 0.0017642866173664114) +zone = ('iaz077', 0.0022413109677263004) + +[52202] +centroid = (0.73582201618137921, -1.5993924993912725) +station = ('kcid', 0.0049255112755310741) +zone = ('iaz052', 0.0014969081279688123) + +[52203] +centroid = (0.72978947760807855, -1.6038108003926961) +station = ('kcid', 0.0025772795846944157) +zone = ('iaz063', 0.0031765148204106492) + +[52205] +centroid = (0.73512861432285448, -1.5932463922435445) +station = ('kmxo', 0.0025145294710968266) +zone = ('iaz053', 0.0020053727359717012) + +[52206] +centroid = (0.73289132911460042, -1.6037039164293039) +station = ('kcid', 0.0028934607169967814) +zone = ('iaz051', 0.0028009938576458735) + +[52207] +centroid = (0.73469737837127169, -1.5853118462112978) +station = ('kmxo', 0.0049603395617143844) +zone = ('iaz054', 0.0035909948756311159) + +[52208] +centroid = (0.73098581354385805, -1.6101208288637714) +station = ('kvti', 0.0065658378367221912) +zone = ('iaz063', 0.0042036298381259692) + +[52209] +centroid = (0.73144980932550085, -1.6074051489075458) +station = ('kvti', 0.0054832322719368057) +zone = ('iaz051', 0.0030148921948903846) + +[52210] +centroid = (0.73889952034483586, -1.6057266832191954) +station = ('kvti', 0.002070014886724425) +zone = ('iaz040', 0.0031590338168539789) + +[52211] +centroid = (0.72874285601553512, -1.6135525825055053) +station = ('kggi', 0.0037296777204664866) +zone = ('iaz062', 0.0015870778196302752) + +[52212] +centroid = (0.73493715170391072, -1.5898251803904926) +station = ('kmxo', 0.0023876569474035494) +zone = ('iaz053', 0.00057478696920546944) + +[52213] +centroid = (0.73656126783935405, -1.6015076988183494) +station = ('kvti', 0.0034536944566953168) +zone = ('iaz052', 0.002988635115421483) + +[52214] +centroid = (0.73631727080992515, -1.5971379877833012) +station = ('kmxo', 0.0044993975935633986) +zone = ('iaz052', 0.0022278303690708014) + +[52215] +centroid = (0.7315290472735414, -1.6127765218536059) +station = ('kggi', 0.0055191305128899169) +zone = ('iaz050', 0.003338961990384897) + +[52216] +centroid = (0.73105714515038711, -1.5889414154704529) +station = ('kmxo', 0.0062733782521592974) +zone = ('iaz065', 0.0023296592644450878) + +[52217] +centroid = (0.73443432234641115, -1.6128217956944026) +station = ('kvti', 0.0055039382816241111) +zone = ('iaz050', 0.0016156034702644614) + +[52218] +centroid = (0.7381044181507973, -1.597562434404094) +station = ('kiib', 0.0058601948588442856) +zone = ('iaz052', 0.003784537748457792) + +[52219] +centroid = (0.73718754433484712, -1.5956818595883626) +station = ('kmxo', 0.0033499192099928619) +zone = ('iaz052', 0.0035635132765965563) + +[52220] +centroid = (0.72829507434264351, -1.6056744455146832) +station = ('kcid', 0.0045562350639142806) +zone = ('iaz063', 0.0011415110343554362) + +[52221] +centroid = (0.72677131463918987, -1.611492151510356) +station = ('kggi', 0.0053304584365017702) +zone = ('iaz062', 0.0027220892293171877) + +[52222] +centroid = (0.72564515839263311, -1.6116483759317017) +station = ('kggi', 0.0055879212656067172) +zone = ('iaz062', 0.0031428503162167372) + +[52223] +centroid = (0.7402391652654966, -1.5939109089029491) +station = ('kmxo', 0.0037320870791894092) +zone = ('iaz041', 0.0011614445460740154) + +[52224] +centroid = (0.7359339790528947, -1.610934728253854) +station = ('kvti', 0.0036596462013585196) +zone = ('iaz051', 0.0033799075729876497) + +[52225] +centroid = (0.73322716536926924, -1.6114074332284642) +station = ('kvti', 0.0053235456963839798) +zone = ('iaz050', 0.0029259557133787116) + +[52227] +centroid = (0.73119640497140381, -1.5981722873513258) +station = ('kcid', 0.0019345561033657418) +zone = ('iaz052', 0.0032429724503452001) + +[52228] +centroid = (0.73133292462549482, -1.6020150660319041) +station = ('kcid', 0.0009926545248584199) +zone = ('iaz052', 0.0039450664657171911) + +[52229] +centroid = (0.73556253808148531, -1.6086566023411033) +station = ('kvti', 0.0022598556904415389) +zone = ('iaz051', 0.0017508147480205705) + +[52231] +centroid = (0.72189708127726782, -1.60673487266161) +station = ('kffl', 0.0055297220645969406) +zone = ('iaz076', 0.0016274969787277093) + +[52232] +centroid = (0.72962372368901673, -1.6115637623695651) +station = ('kggi', 0.0053900931858905767) +zone = ('iaz062', 0.0032751036120105595) + +[52233] +centroid = (0.73385457632877615, -1.6002377448947209) +station = ('kcid', 0.0028785997093669657) +zone = ('iaz052', 0.0012703331405615288) + +[52235] +centroid = (0.72568496935287097, -1.5975277721651493) +station = ('kiow', 0.00098354215986153092) +zone = ('iaz064', 0.0017797416514395803) + +[52236] +centroid = (0.72838825747140745, -1.6035486170324615) +station = ('kcid', 0.0033405455249777847) +zone = ('iaz063', 0.0025974725803320363) + +[52237] +centroid = (0.7390488856222216, -1.5925901309915023) +station = ('kmxo', 0.002208642262667797) +zone = ('iaz041', 0.0026884217587723894) + +[52240] +centroid = (0.72665402851345584, -1.5969596849469176) +station = ('kiow', 0.00066480348688125151) +zone = ('iaz064', 0.0013312378503478961) + +[52241] +centroid = (0.7277949327921921, -1.5986509264453925) +station = ('kiow', 0.0013021928430913808) +zone = ('iaz064', 0.0005006238658237256) + +[52242] +centroid = (0.72713518088164564, -1.5978200799082733) +station = ('kiow', 0.00049690351080604626) +zone = ('iaz064', 0.00054537527710339379) + +[52245] +centroid = (0.72732870298910679, -1.597188462705269) +station = ('kiow', 0.00084827694126792972) +zone = ('iaz064', 0.00099033710368201717) + +[52246] +centroid = (0.72697000292123692, -1.5982050995412633) +station = ('kiow', 0.00042494229153343486) +zone = ('iaz064', 0.00040665007192118596) + +[52247] +centroid = (0.72463756236216414, -1.6008734112615899) +station = ('kiow', 0.0030205664350909716) +zone = ('iaz077', 0.003196022527802711) + +[52248] +centroid = (0.72161985317888089, -1.6045744866601988) +station = ('kawg', 0.0036868788861960061) +zone = ('iaz077', 0.0028549043415270893) + +[52249] +centroid = (0.73328528483336075, -1.6092882719039852) +station = ('kvti', 0.0042591310806319432) +zone = ('iaz051', 0.0021457764836964135) + +[52251] +centroid = (0.72801859673583502, -1.6092234154689811) +station = ('kggi', 0.0068832197910299207) +zone = ('iaz063', 0.001831238573514041) + +[52253] +centroid = (0.73121174641552877, -1.5944171241991971) +station = ('kcid', 0.0047248863204212444) +zone = ('iaz065', 0.0035873890002307853) + +[52254] +centroid = (0.73220229057920561, -1.5847795207894395) +station = ('kdvn', 0.0065047621889913528) +zone = ('iaz066', 0.0036207241809756378) + +[52255] +centroid = (0.73065795344387097, -1.5875732518698145) +station = ('kdvn', 0.0065421095465983663) +zone = ('iaz065', 0.0027379413735140919) + +[52257] +centroid = (0.73165865542379438, -1.6088134725342726) +station = ('kvti', 0.0055576327761002724) +zone = ('iaz051', 0.0031377099811350294) + +[52301] +centroid = (0.72934649559063003, -1.6071459151537471) +station = ('kcid', 0.0050392249231889759) +zone = ('iaz063', 0.0017971244330675681) + +[52302] +centroid = (0.73417899813013687, -1.598033027530309) +station = ('kcid', 0.0037678156675780301) +zone = ('iaz052', 0.00055022348833434699) + +[52305] +centroid = (0.73337333669412375, -1.5941702124699175) +station = ('kmxo', 0.0043540088962256357) +zone = ('iaz053', 0.0032279115899726683) + +[52306] +centroid = (0.73106761712589918, -1.5926864382596271) +station = ('kiow', 0.0058689231728522888) +zone = ('iaz065', 0.0025540795864252351) + +[52307] +centroid = (0.72942732178828973, -1.6039347536761728) +station = ('kcid', 0.002842909318846783) +zone = ('iaz063', 0.0028635451092765096) + +[52308] +centroid = (0.72557323337415836, -1.608473150783426) +station = ('kooa', 0.0074650243079899354) +zone = ('iaz063', 0.0023314737471458397) + +[52309] +centroid = (0.73533660520981459, -1.5863060555664041) +station = ('kmxo', 0.0040095618865087683) +zone = ('iaz054', 0.0041281833630642606) + +[52310] +centroid = (0.73688527076169419, -1.5916574270392363) +station = ('kmxo', 0.00043280525145241241) +zone = ('iaz053', 0.0019185460251880963) + +[52312] +centroid = (0.73314349428492864, -1.5925408952533036) +station = ('kmxo', 0.0040975961606598225) +zone = ('iaz053', 0.0024981320630132371) + +[52313] +centroid = (0.73753036190652388, -1.6073954797834897) +station = ('kvti', 0.00114143970191965) +zone = ('iaz051', 0.0031204085665229408) + +[52314] +centroid = (0.73191015736900689, -1.5960631791233382) +station = ('kcid', 0.0036098418725537332) +zone = ('iaz052', 0.0031814935546344682) + +[52315] +centroid = (0.73305422069368908, -1.6051805696962465) +station = ('kvti', 0.0038675371904010312) +zone = ('iaz051', 0.0018564960051872452) + +[52316] +centroid = (0.72512555642102172, -1.6073709230009141) +station = ('kawg', 0.0072548984507252775) +zone = ('iaz063', 0.0024687995427738981) + +[52317] +centroid = (0.72897385034203666, -1.5993238206852065) +station = ('kcid', 0.0022924968107363936) +zone = ('iaz064', 0.0017750852097999849) + +[52318] +centroid = (0.73110585728981026, -1.6038306971461689) +station = ('kcid', 0.0022900268436564586) +zone = ('iaz051', 0.0040158941062501449) + +[52320] +centroid = (0.73302345053897644, -1.5908395308451668) +station = ('kmxo', 0.0040941129492602516) +zone = ('iaz053', 0.0021415222733103404) + +[52321] +centroid = (0.73560789918874459, -1.5879569625058656) +station = ('kmxo', 0.0028080648124228992) +zone = ('iaz053', 0.0019707982875987067) + +[52322] +centroid = (0.72767520320550516, -1.6015627290496648) +station = ('kcid', 0.0033805651368411407) +zone = ('iaz064', 0.0023069220106038931) + +[52323] +centroid = (0.73274543704242634, -1.5875372457273458) +station = ('kmxo', 0.0051257312560915149) +zone = ('iaz053', 0.0032833784727082328) + +[52324] +centroid = (0.73415367340269044, -1.6023194340001594) +station = ('kcid', 0.0033586474785728473) +zone = ('iaz051', 0.0033746064546570182) + +[52325] +centroid = (0.72578199220598938, -1.6043855373153779) +station = ('kcid', 0.0058803000215461188) +zone = ('iaz063', 0.0025611276102075723) + +[52326] +centroid = (0.739856606546752, -1.6014412715870185) +station = ('kiib', 0.0025106220996525858) +zone = ('iaz040', 0.0017519467284448146) + +[52327] +centroid = (0.72391161011308969, -1.5984246794144565) +station = ('kiow', 0.0027609583902123902) +zone = ('iaz077', 0.0030358600020035402) + +[52328] +centroid = (0.73428795903533894, -1.5998751003827414) +station = ('kcid', 0.0033507751685329912) +zone = ('iaz052', 0.00087973017435654061) + +[52329] +centroid = (0.73929075334996297, -1.603183249806849) +station = ('kiib', 0.0018888009822864071) +zone = ('iaz040', 0.0019760543042007875) + +[52330] +centroid = (0.73913725164225008, -1.5969849224079014) +station = ('kmxo', 0.0047626471091582797) +zone = ('iaz041', 0.0027302722745887911) + +[52332] +centroid = (0.73475940737288759, -1.6037532568872579) +station = ('kvti', 0.0027482594399714623) +zone = ('iaz051', 0.0023203985054353724) + +[52333] +centroid = (0.72965023524035444, -1.5968433762055647) +station = ('kiow', 0.0031036115931150979) +zone = ('iaz064', 0.0026560347971682232) + +[52334] +centroid = (0.72850339684216148, -1.6046749652652361) +station = ('kcid', 0.0038428440184818074) +zone = ('iaz063', 0.001874820174729895) + +[52335] +centroid = (0.72375245353860029, -1.6066418291591862) +station = ('kawg', 0.0060074967436838317) +zone = ('iaz076', 0.0028189018218417951) + +[52336] +centroid = (0.73426902221295465, -1.5957957597753476) +station = ('kmxo', 0.004460321911614897) +zone = ('iaz052', 0.002162470158075453) + +[52337] +centroid = (0.73094743375360682, -1.5907289991436382) +station = ('kmxo', 0.0061715315118877094) +zone = ('iaz065', 0.0018874468665377839) + +[52338] +centroid = (0.7298600412697368, -1.6005978412259922) +station = ('kcid', 0.0011482269356903911) +zone = ('iaz064', 0.0029910635839482951) + +[52339] +centroid = (0.73178067139180136, -1.6159495827936092) +station = ('kggi', 0.0042337303423972215) +zone = ('iaz050', 0.0027429926202762241) + +[52340] +centroid = (0.72790061247840021, -1.6000624440246505) +station = ('kiow', 0.0020799751520233886) +zone = ('iaz064', 0.0013008364025557163) + +[52341] +centroid = (0.73483337442658714, -1.6009237640105096) +station = ('kcid', 0.0038332908351862809) +zone = ('iaz052', 0.0017006153017269886) + +[52342] +centroid = (0.73404483467053605, -1.6152582927834793) +station = ('kmiw', 0.0048914644754566965) +zone = ('iaz050', 0.00043168484594173913) + +[52345] +centroid = (0.73730826875920763, -1.6039731858263016) +station = ('kvti', 0.0016773416659763769) +zone = ('iaz051', 0.0035768948263020109) + +[52346] +centroid = (0.73321330745500835, -1.6071105722363941) +station = ('kvti', 0.0037090035235241999) +zone = ('iaz051', 0.0012382483373631714) + +[52347] +centroid = (0.7280211623698355, -1.6106682513836594) +station = ('kggi', 0.0058046782306704651) +zone = ('iaz062', 0.003249727536593749) + +[52348] +centroid = (0.73286614401349415, -1.6123610113185836) +station = ('kvti', 0.0060917764578153717) +zone = ('iaz050', 0.0025073044924716894) + +[52349] +centroid = (0.73606199895352853, -1.6058709870417502) +station = ('kvti', 0.00081902184754465259) +zone = ('iaz051', 0.0017803637303591897) + +[52351] +centroid = (0.73090777987300137, -1.6027659764892823) +station = ('kcid', 0.0014981230417685013) +zone = ('iaz063', 0.0045222665173457908) + +[52352] +centroid = (0.73806869126100894, -1.6017730761311153) +station = ('kiib', 0.003485629831157337) +zone = ('iaz040', 0.0032870017956128012) + +[52353] +centroid = (0.72080967134010521, -1.6006674100499769) +station = ('kawg', 0.00065086884432364873) +zone = ('iaz077', 0.00063820770258591144) + +[52354] +centroid = (0.73157187765338538, -1.6054892660810465) +station = ('kcid', 0.0035674926732604082) +zone = ('iaz051', 0.0030375819380679342) + +[52355] +centroid = (0.72362427655833383, -1.6090510118454691) +station = ('kooa', 0.0056910695538135679) +zone = ('iaz076', 0.00217480203595303) + +[52356] +centroid = (0.72385291469034507, -1.6030001996748999) +station = ('kawg', 0.0040625850684735199) +zone = ('iaz077', 0.0029301486965581094) + +[52358] +centroid = (0.72765219976596396, -1.5938073061585505) +station = ('kiow', 0.0031849387606389858) +zone = ('iaz065', 0.0028044187720611788) + +[52359] +centroid = (0.72184210340582988, -1.6023428388654286) +station = ('kawg', 0.0022645714233548346) +zone = ('iaz077', 0.0012399705892309077) + +[52361] +centroid = (0.72691416983846557, -1.6062244162152792) +station = ('kcid', 0.0057737126614726582) +zone = ('iaz063', 0.00079881895854286376) + +[52362] +centroid = (0.73441693886706128, -1.5879601564583965) +station = ('kmxo', 0.0035885998167311506) +zone = ('iaz053', 0.0020531098751591518) + +[52401] +centroid = (0.73261043582478447, -1.5997543410517958) +station = ('kcid', 0.0017731847126506105) +zone = ('iaz052', 0.0019668053843225324) + +[52402] +centroid = (0.73344271353189061, -1.5997620379537971) +station = ('kcid', 0.0025505213304564179) +zone = ('iaz052', 0.0012510526157363917) + +[52403] +centroid = (0.73244415830694698, -1.5981291253589238) +station = ('kcid', 0.0024299794174650908) +zone = ('iaz052', 0.002016672206635599) + +[52404] +centroid = (0.73169535969796395, -1.6004471320450826) +station = ('kcid', 0.00073083566739493347) +zone = ('iaz052', 0.003013211652983073) + +[52405] +centroid = (0.73274828192910701, -1.6012762157996574) +station = ('kcid', 0.0017882922498476321) +zone = ('iaz052', 0.0025365396907664284) + +[52411] +centroid = (0.7339773078817764, -1.6009769965526954) +station = ('kcid', 0.0029796993119156267) +zone = ('iaz052', 0.0017444855240102606) + +[52501] +centroid = (0.71620816312709967, -1.6132317386291111) +station = ('kotm', 0.0011486242664984106) +zone = ('iaz086', 0.00030140094000145131) + +[52530] +centroid = (0.71547032518581899, -1.6108130788049897) +station = ('kotm', 0.0027823818922037094) +zone = ('iaz086', 0.0016683294868260156) + +[52531] +centroid = (0.71604513192167096, -1.6199297014330272) +station = ('kotm', 0.0049739071131885242) +zone = ('iaz085', 0.00071160291074235467) + +[52533] +centroid = (0.71589108916188993, -1.6084451033423466) +station = ('kffl', 0.0023570280179229445) +zone = ('iaz086', 0.0033310391526404763) + +[52534] +centroid = (0.7203314511250587, -1.617604835602908) +station = ('kooa', 0.0025974617513732003) +zone = ('iaz075', 0.0012264224431070649) + +[52535] +centroid = (0.7131929148580618, -1.6049973101247867) +station = ('kffl', 0.0032797314145135742) +zone = ('iaz098', 0.0019195635918254289) + +[52536] +centroid = (0.71484263497363176, -1.6163303961831017) +station = ('kotm', 0.0032505693574903559) +zone = ('iaz086', 0.0029205935640407837) + +[52537] +centroid = (0.71095966136037991, -1.612921907780297) +station = ('kotm', 0.0063887054824421788) +zone = ('iaz097', 0.00022783539675696218) + +[52540] +centroid = (0.71831128487575291, -1.6025888779300823) +station = ('kffl', 0.002821597476700132) +zone = ('iaz087', 0.0027420898995958619) + +[52542] +centroid = (0.70895012416621861, -1.6066844326462271) +station = ('kffl', 0.007569005300959661) +zone = ('iaz098', 0.0027191219926140284) + +[52543] +centroid = (0.71911015698097569, -1.61465067385769) +station = ('kooa', 0.00048993310043833225) +zone = ('iaz075', 0.0028684618048709486) + +[52544] +centroid = (0.71046493033060965, -1.6216250619085368) +station = ('ktvk', 0.00049253385353105613) +zone = ('iaz096', 0.00085980774387184604) + +[52548] +centroid = (0.71708309668112447, -1.6150051851353553) +station = ('kotm', 0.0011191455676313234) +zone = ('iaz086', 0.0018895041954122053) + +[52549] +centroid = (0.70892904058885464, -1.6221633389031445) +station = ('ktvk', 0.0012135709348794781) +zone = ('iaz096', 0.0023866490222587459) + +[52550] +centroid = (0.72100092451953879, -1.6119001571295946) +station = ('kooa', 0.0023371719943796284) +zone = ('iaz076', 0.0023562378436022299) + +[52551] +centroid = (0.71252670522928296, -1.6076122147700025) +station = ('kffl', 0.0042678909288494079) +zone = ('iaz098', 0.0024488559854731252) + +[52552] +centroid = (0.71256719686792924, -1.6152803711985171) +station = ('kotm', 0.0049377234679734349) +zone = ('iaz097', 0.0023013760053831253) + +[52553] +centroid = (0.71817562043299532, -1.6171335792515771) +station = ('kooa', 0.0025154777283813027) +zone = ('iaz075', 0.0032631692936533176) + +[52554] +centroid = (0.7142843215992114, -1.6096727679381995) +station = ('kotm', 0.0042270323174036081) +zone = ('iaz086', 0.0030199496042229335) + +[52555] +centroid = (0.70936603612696902, -1.6199046210516761) +station = ('ktvk', 0.0013066602661797968) +zone = ('iaz096', 0.0018832879084615987) + +[52556] +centroid = (0.71600736299665779, -1.6044383335252506) +station = ('kffl', 0.00086149104009643261) +zone = ('iaz087', 0.00031088977135588808) + +[52557] +centroid = (0.71597154884040681, -1.6050880846991831) +station = ('kffl', 0.00054406525588492863) +zone = ('iaz087', 0.00026843605251665334) + +[52560] +centroid = (0.71297611005837902, -1.6100901110689363) +station = ('kffl', 0.0049603481552201872) +zone = ('iaz097', 0.0027562016385692997) + +[52561] +centroid = (0.71942969186043082, -1.6135963728164378) +station = ('kooa', 0.00055225109505930919) +zone = ('iaz075', 0.0031839651780424028) + +[52563] +centroid = (0.71854355329260833, -1.6105777386086511) +station = ('kotm', 0.002550791045016221) +zone = ('iaz086', 0.0029681940055284756) + +[52565] +centroid = (0.7110834226576388, -1.6045595815483868) +station = ('kffl', 0.0054127258665041464) +zone = ('iaz098', 0.00028234950863138234) + +[52566] +centroid = (0.71816806315733417, -1.6144739243643407) +station = ('kotm', 0.001085816614679679) +zone = ('iaz086', 0.0023866992988308788) + +[52567] +centroid = (0.7143666313267355, -1.6070634832531754) +station = ('kffl', 0.0024343995749622608) +zone = ('iaz087', 0.0024568890600026152) + +[52569] +centroid = (0.71528903783641451, -1.6239513938152277) +station = ('kcnc', 0.0043192530377938959) +zone = ('iaz085', 0.0024639205077742958) + +[52570] +centroid = (0.71012928606215853, -1.6082550195335119) +station = ('kffl', 0.0066835865716985523) +zone = ('iaz098', 0.0028382767777145844) + +[52571] +centroid = (0.71352625529190017, -1.6203743240599726) +station = ('ktvk', 0.0036126097438149872) +zone = ('iaz096', 0.002451511317310764) + +[52572] +centroid = (0.70983395889942857, -1.6177184041773354) +station = ('ktvk', 0.0028053428870168959) +zone = ('iaz096', 0.0027015882826513658) + +[52573] +centroid = (0.70908484613118017, -1.6044610926186966) +station = ('kffl', 0.0074078286238966036) +zone = ('iaz098', 0.0022104684815980246) + +[52574] +centroid = (0.71221123696698496, -1.6226637946128615) +station = ('ktvk', 0.0024064360234780924) +zone = ('iaz096', 0.0017563130661376219) + +[52576] +centroid = (0.71934012156321847, -1.6076126336490228) +station = ('kffl', 0.0033250289832379427) +zone = ('iaz076', 0.0023030327115701756) + +[52577] +centroid = (0.72034944546964685, -1.617250725750971) +station = ('kooa', 0.0023517850381912981) +zone = ('iaz075', 0.0011177317032801991) + +[52580] +centroid = (0.71742139385003856, -1.6072794852014023) +station = ('kffl', 0.001706016063280816) +zone = ('iaz087', 0.0022594964838624073) + +[52581] +centroid = (0.71211562783056082, -1.6242723249580842) +station = ('ktvk', 0.003029278451321238) +zone = ('iaz096', 0.0027722830453598807) + +[52583] +centroid = (0.71198762538321958, -1.6257554184899663) +station = ('ktvk', 0.0038454666470471776) +zone = ('iaz095', 0.002543012736961179) + +[52584] +centroid = (0.70926114183892408, -1.6100346968651855) +station = ('kffl', 0.0080011795601768639) +zone = ('iaz097', 0.0028733022242764038) + +[52585] +centroid = (0.71895723123191602, -1.6053713167301968) +station = ('kffl', 0.0024997613830100018) +zone = ('iaz087', 0.0028486714671648698) + +[52586] +centroid = (0.72161700829220021, -1.613863914337476) +station = ('kooa', 0.0021133648482509521) +zone = ('iaz075', 0.0022784209027149195) + +[52588] +centroid = (0.71323082340941513, -1.6086763769215284) +station = ('kffl', 0.004060760162502855) +zone = ('iaz098', 0.0035056922539025547) + +[52590] +centroid = (0.70965473103854126, -1.6253372899610663) +station = ('ktvk', 0.0029980252500655543) +zone = ('moz007', 0.00347824965515869) + +[52591] +centroid = (0.72111142131448247, -1.6090430182374948) +station = ('kotm', 0.0050821867654737797) +zone = ('iaz076', 0.00038278206711055666) + +[52593] +centroid = (0.71161075643783633, -1.6187270124987703) +station = ('ktvk', 0.0025945319168825488) +zone = ('iaz096', 0.0016969139895260071) + +[52594] +centroid = (0.71272080329539733, -1.6170647434658785) +station = ('ktvk', 0.0042709348336777732) +zone = ('iaz097', 0.0035403940093132842) + +[52595] +centroid = (0.7206225371377063, -1.6164362154956504) +station = ('kooa', 0.0019303313106542204) +zone = ('iaz075', 0.00087939592457611504) + +[52601] +centroid = (0.71307259185942928, -1.5905136080606495) +station = ('kbrl', 0.001560764708400732) +zone = ('iaz089', 0.0013566014686820992) + +[52619] +centroid = (0.70729853654834896, -1.5980921069254892) +station = ('keok', 0.0020122086272840222) +zone = ('iaz099', 0.0023271460554159266) + +[52620] +centroid = (0.71031132390314156, -1.6021637157242965) +station = ('kmpz', 0.0057566862232338268) +zone = ('iaz098', 0.0022399162819672796) + +[52621] +centroid = (0.71922836813121327, -1.5975602003826512) +station = ('kawg', 0.0021795222514152408) +zone = ('iaz077', 0.0032795310064521388) + +[52623] +centroid = (0.71320232218273005, -1.5941082183748869) +station = ('kmpz', 0.0027319297141006338) +zone = ('iaz089', 0.0022855551041711429) + +[52624] +centroid = (0.7109846370219759, -1.5941439976245526) +station = ('kfsw', 0.0012187926448209382) +zone = ('iaz099', 0.0024942376270934772) + +[52625] +centroid = (0.70966452233564492, -1.5982712300666213) +station = ('kfsw', 0.0031904679927566718) +zone = ('iaz099', 0.0012999098480746254) + +[52626] +centroid = (0.70901409048330422, -1.6008909692738647) +station = ('keok', 0.0047313199410371929) +zone = ('moz010', 0.0037260060649629352) + +[52627] +centroid = (0.7100358934938843, -1.5944906374672914) +station = ('kfsw', 0.00041859995262099453) +zone = ('iaz099', 0.0017553852269440384) + +[52630] +centroid = (0.71207239602498895, -1.6006668515446161) +station = ('kmpz', 0.003695464964584358) +zone = ('iaz088', 0.0039680536775961355) + +[52632] +centroid = (0.70568073850479784, -1.5958826946253895) +station = ('keok', 0.00059820731045272897) +zone = ('ilz034', 0.0036575888776104728) + +[52635] +centroid = (0.71550753560547165, -1.6014894601276661) +station = ('kmpz', 0.0033710272288338559) +zone = ('iaz087', 0.0025848847505663937) + +[52637] +centroid = (0.71589119388164502, -1.5907969099048331) +station = ('kbrl', 0.0043817979535889454) +zone = ('iaz089', 0.0017119644823180131) + +[52638] +centroid = (0.71211969444771794, -1.5924790233313202) +station = ('kbrl', 0.0015631050226002302) +zone = ('iaz089', 0.0022715148161036188) + +[52639] +centroid = (0.70742924425603082, -1.596284888298219) +station = ('keok', 0.0012072990547164469) +zone = ('iaz099', 0.0019236995448445508) + +[52640] +centroid = (0.7173519122925166, -1.5931446744547384) +station = ('kmpz', 0.0040621681769473237) +zone = ('iaz078', 0.0020647355607822083) + +[52641] +centroid = (0.71545262754720385, -1.5984834271970787) +station = ('kmpz', 0.0012730966573649448) +zone = ('iaz088', 0.00055569101523044362) + +[52644] +centroid = (0.71628303775201019, -1.5954923866447659) +station = ('kmpz', 0.0020632491143075288) +zone = ('iaz088', 0.0019340622300066696) + +[52645] +centroid = (0.71405254187454648, -1.5953048335633466) +station = ('kmpz', 0.0015323465818017005) +zone = ('iaz088', 0.0022736414429529611) + +[52646] +centroid = (0.71657243079528343, -1.5882168594847801) +station = ('kbrl', 0.0053649602344212205) +zone = ('iaz089', 0.0033548731681370719) + +[52647] +centroid = (0.71794295059041191, -1.5977556947121672) +station = ('kawg', 0.0030429795878898817) +zone = ('iaz088', 0.0025691422256657625) + +[52649] +centroid = (0.71276745594630309, -1.5989336348776306) +station = ('kmpz', 0.0023101188769246643) +zone = ('iaz088', 0.0027544220349874616) + +[52650] +centroid = (0.71473344717562715, -1.5909031830029872) +station = ('kbrl', 0.0032303386345197732) +zone = ('iaz089', 0.00062440565333382592) + +[52651] +centroid = (0.71323440133438165, -1.6024791839865944) +station = ('kffl', 0.0039108806915157182) +zone = ('iaz098', 0.0026449914908300495) + +[52653] +centroid = (0.71844207984989739, -1.5909970991700368) +station = ('kmut', 0.00354379088952445) +zone = ('iaz078', 0.0016490593977500556) + +[52654] +centroid = (0.71804070648181617, -1.5999736765788941) +station = ('kawg', 0.0024902770695777029) +zone = ('iaz088', 0.0031482492254261496) + +[52655] +centroid = (0.71290568602306115, -1.5919500314883333) +station = ('kbrl', 0.0017381971454608091) +zone = ('iaz089', 0.0013981406286398574) + +[52656] +centroid = (0.71104389095008125, -1.5961995940576741) +station = ('kfsw', 0.0020597787349415616) +zone = ('iaz099', 0.0017357479499495053) + +[52657] +centroid = (0.71153291475319747, -1.5973047190867442) +station = ('kmpz', 0.0031228943126555245) +zone = ('iaz099', 0.002257892345413771) + +[52658] +centroid = (0.71033860339935029, -1.5922578377552148) +station = ('kfsw', 0.0014864313157843499) +zone = ('iaz089', 0.0039574340990396776) + +[52659] +centroid = (0.71784001107112927, -1.5959469052885704) +station = ('kmpz', 0.0033167854537091805) +zone = ('iaz088', 0.0028178513528438493) + +[52660] +centroid = (0.71549067572489733, -1.5934746114965352) +station = ('kmpz', 0.0029130257723034079) +zone = ('iaz089', 0.0019915660425925802) + +[52701] +centroid = (0.73272356806689887, -1.5751442386675873) +station = ('ksfy', 0.0021451518635385255) +zone = ('iaz066', 0.0039541487468934718) + +[52720] +centroid = (0.72584271221066632, -1.5912757758917027) +station = ('kmut', 0.0038702784331333035) +zone = ('iaz067', 0.0019779240530871196) + +[52721] +centroid = (0.72879579185174814, -1.587546181813116) +station = ('kdvn', 0.0054823566042100647) +zone = ('iaz065', 0.0022642552576602514) + +[52722] +centroid = (0.7256084017585861, -1.5790260429102405) +station = ('kdvn', 0.0016359855084821608) +zone = ('ilz015', 0.0022473354701779795) + +[52726] +centroid = (0.72424749872763594, -1.5844164748517324) +station = ('kdvn', 0.0033217720820318195) +zone = ('iaz068', 0.0032014634381437599) + +[52727] +centroid = (0.73224918757620672, -1.576485052958847) +station = ('kcwi', 0.0021219589326771666) +zone = ('iaz066', 0.0028534206210240566) + +[52728] +centroid = (0.72350987022586566, -1.5836181088919925) +station = ('kmli', 0.0028522029364721757) +zone = ('ilz015', 0.0021997172461075631) + +[52729] +centroid = (0.72955082128616089, -1.5836365570221862) +station = ('kdvn', 0.0037682645726404809) +zone = ('iaz066', 0.003150802291875155) + +[52730] +centroid = (0.72912298872661951, -1.576649270988167) +station = ('kcwi', 0.0010067566241469816) +zone = ('iaz066', 0.0033312951351008903) + +[52731] +centroid = (0.7324618908521473, -1.5792860620622025) +station = ('kcwi', 0.0030652424804244213) +zone = ('iaz066', 0.0013414113716992925) + +[52732] +centroid = (0.73113664489781549, -1.575212097068905) +station = ('kcwi', 0.0014507785201167466) +zone = ('iaz066', 0.0036266786742442446) + +[52737] +centroid = (0.72011023064236845, -1.5947878146790284) +station = ('kmut', 0.0034904445166835676) +zone = ('iaz078', 0.0016676197133038823) + +[52738] +centroid = (0.72036131370856038, -1.5948553240144956) +station = ('kmut', 0.0034065002643574689) +zone = ('iaz078', 0.0018320883783182315) + +[52739] +centroid = (0.72213296252567483, -1.594660649989728) +station = ('kmut', 0.0028503381891945242) +zone = ('iaz078', 0.0030771259200102572) + +[52742] +centroid = (0.73021544266532035, -1.5798668029175111) +station = ('kcwi', 0.0024249899755401411) +zone = ('iaz066', 0.0010547923587381142) + +[52745] +centroid = (0.7281269642290914, -1.5841739788054603) +station = ('kdvn', 0.0029777805383593993) +zone = ('iaz068', 0.0023477948385575852) + +[52746] +centroid = (0.72808949201005113, -1.5824968744739265) +station = ('kdvn', 0.0020788676357062653) +zone = ('iaz068', 0.0015154887746247569) + +[52747] +centroid = (0.72625143341489828, -1.5865988170951335) +station = ('kmut', 0.0053321266523854655) +zone = ('iaz067', 0.0035018366687605954) + +[52748] +centroid = (0.72720427846673208, -1.5804821187453018) +station = ('kdvn', 0.00093298685802469092) +zone = ('iaz068', 0.0010207245477446621) + +[52749] +centroid = (0.72161737481134314, -1.5905315849519448) +station = ('kmut', 0.00044544923308350757) +zone = ('iaz067', 0.0024247998548135217) + +[52750] +centroid = (0.73193914728788245, -1.5777261391366475) +station = ('kcwi', 0.0019901239520782638) +zone = ('iaz066', 0.0018803159762505364) + +[52751] +centroid = (0.73018353804659386, -1.5826608132505662) +station = ('kdvn', 0.0040361999699931083) +zone = ('iaz066', 0.0022009316507187317) + +[52752] +centroid = (0.72037986655850905, -1.5915870728170884) +station = ('kmut', 0.0016931971137262615) +zone = ('iaz078', 0.0013306106111831291) + +[52753] +centroid = (0.72655522542450046, -1.5775320410705334) +station = ('kdvn', 0.002583874617256766) +zone = ('iaz068', 0.003098784946188868) + +[52754] +centroid = (0.7216270613886917, -1.5921916374166867) +station = ('kmut', 0.0010561658207544908) +zone = ('iaz078', 0.0022722878313460844) + +[52755] +centroid = (0.72393415976702546, -1.5958948944768607) +station = ('kiow', 0.0030745528324403687) +zone = ('iaz064', 0.0038987678071507707) + +[52756] +centroid = (0.72831544233501433, -1.5802056585917856) +station = ('kdvn', 0.0020502931303421111) +zone = ('iaz068', 0.0019484463261644905) + +[52757] +centroid = (0.72961489232300158, -1.5774120845910435) +station = ('kcwi', 0.00078638723093548454) +zone = ('iaz066', 0.0025794660421627051) + +[52758] +centroid = (0.72854430735982834, -1.5784295068252012) +station = ('kcwi', 0.0020844118422084735) +zone = ('iaz066', 0.0029799399193931103) + +[52760] +centroid = (0.72516082952520455, -1.5897646872786184) +station = ('kmut', 0.0032820863051203977) +zone = ('iaz067', 0.0011797571185035325) + +[52761] +centroid = (0.72324173529288172, -1.5893663507834361) +station = ('kmut', 0.0016877741825465035) +zone = ('iaz067', 0.0010140886423358815) + +[52765] +centroid = (0.72824688580199592, -1.5860069061326123) +station = ('kdvn', 0.0042095816871008966) +zone = ('iaz065', 0.0034941768091252753) + +[52766] +centroid = (0.72374512315574191, -1.5934056360844964) +station = ('kmut', 0.0025927231974261313) +zone = ('iaz067', 0.0024063363637768917) + +[52767] +centroid = (0.72546097379667007, -1.5781870282322217) +station = ('kmli', 0.0023606515598942846) +zone = ('ilz015', 0.0025477809567530534) + +[52768] +centroid = (0.72781416632054896, -1.577550698640237) +station = ('kcwi', 0.0024183330419813476) +zone = ('iaz066', 0.0039268039350070019) + +[52769] +centroid = (0.72615826773942682, -1.5855833670830306) +station = ('kdvn', 0.0034489366031418946) +zone = ('iaz068', 0.0029736256005489124) + +[52772] +centroid = (0.72876514387008318, -1.5907571687577651) +station = ('kmut', 0.0067811135337629237) +zone = ('iaz065', 0.00033309283155821931) + +[52773] +centroid = (0.72643961481484831, -1.5839345719919642) +station = ('kdvn', 0.0022125987997314461) +zone = ('iaz068', 0.0017108892993910616) + +[52774] +centroid = (0.73141249418609322, -1.5811831476926579) +station = ('kcwi', 0.0036362882081240467) +zone = ('iaz066', 0.00083437256799671845) + +[52776] +centroid = (0.7256278098198683, -1.5929391619353162) +station = ('kmut', 0.0039601451760703206) +zone = ('iaz067', 0.0025893934048165546) + +[52777] +centroid = (0.73049020984946178, -1.5857382476008528) +station = ('kdvn', 0.0054571468725753483) +zone = ('iaz065', 0.0038666562729332281) + +[52778] +centroid = (0.72622415391868955, -1.5880787166744845) +station = ('kmut', 0.0047264017324466908) +zone = ('iaz067', 0.002715065677571253) + +[52801] +centroid = (0.72467882194568123, -1.5808293345466935) +station = ('kmli', 0.0014546157380091495) +zone = ('ilz015', 0.00094121085561606546) + +[52802] +centroid = (0.72421589081488236, -1.5819173378958016) +station = ('kmli', 0.0017571690698506949) +zone = ('ilz015', 0.0010279164745053892) + +[52803] +centroid = (0.72499139296142101, -1.5804999560102571) +station = ('kdvn', 0.001402697959919412) +zone = ('ilz015', 0.0012576256348221554) + +[52804] +centroid = (0.72487742296126578, -1.5826890177712785) +station = ('kdvn', 0.0019497945067664536) +zone = ('iaz068', 0.0019787477316788034) + +[52806] +centroid = (0.72587700793046794, -1.5817203774897142) +station = ('kdvn', 0.00072824785118854576) +zone = ('iaz068', 0.00082822886225593286) + +[52807] +centroid = (0.72624336999375416, -1.5798170610338294) +station = ('kdvn', 0.00087379559710126428) +zone = ('iaz068', 0.0014621325368000947) + +[53001] +centroid = (0.76110103345470737, -1.5368539489002742) +station = ('ketb', 0.0033687889091488813) +zone = ('wiz052', 0.0024156383884971237) + +[53002] +centroid = (0.75858899851560435, -1.542034470092629) +station = ('ketb', 0.002930620340454165) +zone = ('wiz059', 0.0022681597406437911) + +[53003] +centroid = (0.75409688754011395, -1.5447853707931598) +station = ('kryv', 0.0027245338798244484) +zone = ('wiz065', 0.0042017262704071162) + +[53004] +centroid = (0.75918043823922776, -1.533719355016985) +station = ('ketb', 0.0034592805097829753) +zone = ('wiz060', 0.0022102645184069918) + +[53005] +centroid = (0.75158068126409872, -1.5376141968691506) +station = ('kmwc', 0.0012622949112358042) +zone = ('wiz066', 0.0019421089354396855) + +[53006] +centroid = (0.76131433014259353, -1.5452020332454885) +station = ('kfld', 0.0026354458909605394) +zone = ('wiz051', 0.0023993325932222288) + +[53007] +centroid = (0.75238435302476458, -1.5371504279803105) +station = ('kmwc', 0.00051595322440141323) +zone = ('wiz066', 0.0022226168674136289) + +[53010] +centroid = (0.76118220871821751, -1.5406373340264075) +station = ('kfld', 0.0037880839208107916) +zone = ('wiz051', 0.0036752596025835696) + +[53011] +centroid = (0.76200349085103602, -1.5374847807051153) +station = ('ketb', 0.0041686359116750752) +zone = ('wiz052', 0.0021332960870610769) + +[53012] +centroid = (0.75598468801894847, -1.5364943063546084) +station = ('ketb', 0.0022190974255155375) +zone = ('wiz060', 0.0016020435789232776) + +[53013] +centroid = (0.76035823877835096, -1.5332179393761796) +station = ('ksbm', 0.0038052844093763093) +zone = ('wiz052', 0.0029915073986859623) + +[53014] +centroid = (0.76839998293325507, -1.5389669666657861) +station = ('ksbm', 0.005898035419690569) +zone = ('wiz049', 0.0011026926001056593) + +[53015] +centroid = (0.76633373999169652, -1.5321547197024497) +station = ('ksbm', 0.0023151057810752987) +zone = ('wiz050', 0.0037138689181364154) + +[53016] +centroid = (0.75590628782894886, -1.5482838483721975) +station = ('kunu', 0.0020338576271387537) +zone = ('wiz058', 0.0018531420365429912) + +[53017] +centroid = (0.75399991704687308, -1.5402769060825781) +station = ('kues', 0.0027968551387515445) +zone = ('wiz059', 0.0029331161462498871) + +[53018] +centroid = (0.7513322161917847, -1.5427055142834356) +station = ('kues', 0.0019626960340311563) +zone = ('wiz065', 0.0012163548745497731) + +[53019] +centroid = (0.76266893253494383, -1.5414932783981705) +station = ('kfld', 0.0023741511037568951) +zone = ('wiz051', 0.0023228466547587524) + +[53020] +centroid = (0.76553242442552083, -1.5360889710891252) +station = ('ksbm', 0.0024506859487969223) +zone = ('wiz052', 0.002590669061676818) + +[53021] +centroid = (0.75912479714267411, -1.5360523540814182) +station = ('ketb', 0.0019648654179214905) +zone = ('wiz060', 0.0020687470405043955) + +[53022] +centroid = (0.75454470411959063, -1.537911792959908) +station = ('kmwc', 0.0022740190711086025) +zone = ('wiz059', 0.0027893051109127284) + +[53023] +centroid = (0.7641127910652411, -1.5377514844681122) +station = ('ksbm', 0.0032346692683846347) +zone = ('wiz052', 0.0022809786493264823) + +[53024] +centroid = (0.75631277501173844, -1.5346429308972627) +station = ('ketb', 0.0029665997225874581) +zone = ('wiz060', 0.0009243967578597105) + +[53027] +centroid = (0.75604144612622337, -1.5423914771911245) +station = ('ketb', 0.003595829922633866) +zone = ('wiz059', 0.0020025554902733419) + +[53029] +centroid = (0.75305028340086289, -1.5418412795977257) +station = ('kues', 0.0022690649596689766) +zone = ('wiz065', 0.0022905492042327048) + +[53031] +centroid = (0.76164674555192835, -1.5344171725585174) +station = ('ksbm', 0.0026492765722145525) +zone = ('wiz052', 0.001480630141856564) + +[53032] +centroid = (0.75833482621663639, -1.5468138273564127) +station = ('kunu', 0.0010583567241536458) +zone = ('wiz058', 0.0011836078773726341) + +[53033] +centroid = (0.7545920199956121, -1.5403228082419056) +station = ('kues', 0.0033898806419986032) +zone = ('wiz059', 0.0023479103996130652) + +[53034] +centroid = (0.7562540970422863, -1.5466895599136707) +station = ('kunu', 0.0019967432424144714) +zone = ('wiz058', 0.0018793359266282728) + +[53035] +centroid = (0.75730955000084488, -1.545435279046725) +station = ('kunu', 0.0020805118709852403) +zone = ('wiz058', 0.0020852690886693542) + +[53036] +centroid = (0.75362725434498734, -1.5459261703521407) +station = ('kryv', 0.0018168415397084947) +zone = ('wiz064', 0.0037722132831349876) + +[53037] +centroid = (0.75594334116896866, -1.5387374209625639) +station = ('ketb', 0.0019684580013515974) +zone = ('wiz059', 0.0013014327827030414) + +[53038] +centroid = (0.75196339706247595, -1.5496368625149284) +station = ('kryv', 0.0016978820138415474) +zone = ('wiz064', 0.0011171447840815018) + +[53039] +centroid = (0.75694660878289266, -1.5483399956142341) +station = ('kunu', 0.00099980507331589295) +zone = ('wiz058', 0.00081589744756505685) + +[53040] +centroid = (0.75968885265033359, -1.5392237918652174) +station = ('ketb', 0.0019945128423418507) +zone = ('wiz059', 0.0028129943379534635) + +[53042] +centroid = (0.76719216273099744, -1.5354067916976908) +station = ('ksbm', 0.0033974891243863906) +zone = ('wiz050', 0.003500675660501214) + +[53044] +centroid = (0.76345089239971486, -1.5320883273777037) +station = ('ksbm', 0.0011126677108632497) +zone = ('wiz052', 0.0020915980872541263) + +[53045] +centroid = (0.75152024051210209, -1.5385562383329143) +station = ('kues', 0.0011176390863857446) +zone = ('wiz066', 0.0025404962150336009) + +[53046] +centroid = (0.75323605624644518, -1.5386455293774464) +station = ('kmwc', 0.0017373451994280016) +zone = ('wiz065', 0.0030642934280375937) + +[53047] +centroid = (0.75497922129016704, -1.5468874104376769) +station = ('kryv', 0.0019247046240527658) +zone = ('wiz058', 0.0029483516707633694) + +[53048] +centroid = (0.76050610307258004, -1.5438686191502571) +station = ('kfld', 0.0033825152693743965) +zone = ('wiz051', 0.0031626583691430369) + +[53049] +centroid = (0.76595722011216383, -1.5409268492427284) +station = ('kfld', 0.0032184250953845844) +zone = ('wiz051', 0.0034156702810748483) + +[53050] +centroid = (0.7594023394003262, -1.5454428712289709) +station = ('kunu', 0.0024590553542054405) +zone = ('wiz058', 0.0026107021761339129) + +[53051] +centroid = (0.75327298741341742, -1.5380107880350811) +station = ('kmwc', 0.0013479356402564305) +zone = ('wiz066', 0.0033101966935703509) + +[53057] +centroid = (0.76426199926299421, -1.5401639309200965) +station = ('kfld', 0.0030299161629754098) +zone = ('wiz051', 0.0031280117262156588) + +[53058] +centroid = (0.75245057081658517, -1.5430718414401365) +station = ('kues', 0.0025482525936309343) +zone = ('wiz065', 0.0021357294064850221) + +[53059] +centroid = (0.75552805752674923, -1.5450550416158852) +station = ('kunu', 0.0033050092593711815) +zone = ('wiz058', 0.0032146944921817061) + +[53061] +centroid = (0.76699293339688224, -1.5379949928053505) +station = ('ksbm', 0.0044275524173016901) +zone = ('wiz049', 0.0026736217655915439) + +[53063] +centroid = (0.76720574139257791, -1.532234725595361) +station = ('ksbm', 0.0031329224997667135) +zone = ('wiz050', 0.0028400742399073767) + +[53065] +centroid = (0.76235592518689121, -1.5458665499048927) +station = ('kfld', 0.0018815219591842803) +zone = ('wiz051', 0.0016636457096694394) + +[53066] +centroid = (0.75246123477831484, -1.544442483408313) +station = ('kues', 0.0034609839015307814) +zone = ('wiz065', 0.0028864654317509058) + +[53069] +centroid = (0.75242697396509817, -1.5434820112676479) +station = ('kues', 0.0028033789342956682) +zone = ('wiz065', 0.0023220526295095038) + +[53070] +centroid = (0.76132012463571008, -1.5325233157871783) +station = ('ksbm', 0.0028942261124745229) +zone = ('wiz052', 0.0024780590253462597) + +[53072] +centroid = (0.75191592410682173, -1.5406163726220909) +station = ('kues', 0.00082834390219169531) +zone = ('wiz065', 0.0011887841161367988) + +[53073] +centroid = (0.7635964528593312, -1.535683531103887) +station = ('ksbm', 0.0018316162029770851) +zone = ('wiz052', 0.00074764649319651274) + +[53074] +centroid = (0.75781934322205979, -1.5338741482683442) +station = ('ketb', 0.0030875711120263985) +zone = ('wiz060', 0.0010570688265984062) + +[53075] +centroid = (0.76034422378445754, -1.5357321210702626) +station = ('ketb', 0.0030299194839931223) +zone = ('wiz052', 0.0027945779675142787) + +[53076] +centroid = (0.75517600716332944, -1.5395037252239445) +station = ('ketb', 0.0028659239107733459) +zone = ('wiz059', 0.0017711931332738933) + +[53078] +centroid = (0.7560365417510253, -1.5440266936206102) +station = ('kunu', 0.0035590433808578782) +zone = ('wiz059', 0.0031163579758231885) + +[53079] +centroid = (0.7646930257750667, -1.5390342840150357) +station = ('kfld', 0.0039067662922044003) +zone = ('wiz052', 0.0033706377443491441) + +[53080] +centroid = (0.7575740022891071, -1.5356511552462624) +station = ('ketb', 0.0018195590346875184) +zone = ('wiz060', 0.00058519976381780827) + +[53081] +centroid = (0.76288533590889862, -1.5312684066017019) +station = ('ksbm', 0.0019307254169144653) +zone = ('wiz052', 0.0026584843438161492) + +[53083] +centroid = (0.76473121357910034, -1.5317744648183176) +station = ('ksbm', 0.0012208118612199116) +zone = ('wiz052', 0.002818720491878742) + +[53085] +centroid = (0.76328171763531905, -1.5333690848894022) +station = ('ksbm', 0.00088440523525188427) +zone = ('wiz052', 0.0011509028947491681) + +[53086] +centroid = (0.75603565163310682, -1.5406240171642147) +station = ('ketb', 0.0025752266149911148) +zone = ('wiz059', 0.0010237994457252123) + +[53088] +centroid = (0.7691753105468685, -1.5411416643670637) +station = ('katw', 0.0041367431343962988) +zone = ('wiz049', 0.0010578450133373301) + +[53089] +centroid = (0.75301558625533338, -1.5399698328539821) +station = ('kues', 0.0018069360928569293) +zone = ('wiz065', 0.0023850839735791115) + +[53090] +centroid = (0.7585699395201726, -1.5391875762832383) +station = ('ketb', 0.0010480766063714808) +zone = ('wiz059', 0.0017318349618072183) + +[53091] +centroid = (0.75921166217954583, -1.5434742794590617) +station = ('kunu', 0.0036350838134813) +zone = ('wiz059', 0.003451755826975207) + +[53092] +centroid = (0.75424340793081879, -1.535038335239302) +station = ('kmwc', 0.0020089897539723222) +zone = ('wiz060', 0.0029467462730684156) + +[53093] +centroid = (0.76188637925822711, -1.5349812978793471) +station = ('ksbm', 0.0025905832589126878) +zone = ('wiz052', 0.0011929478622136013) + +[53094] +centroid = (0.75299298424152006, -1.5485096765241129) +station = ('kryv', 0.00041554995719899907) +zone = ('wiz064', 0.0022402557159937439) + +[53095] +centroid = (0.75729190472210717, -1.5386474317863312) +station = ('ketb', 0.00068394827152962049) +zone = ('wiz059', 0.00099501915699739228) + +[53097] +centroid = (0.75471613035872154, -1.5360611854474333) +station = ('kmwc', 0.0022086966868612771) +zone = ('wiz060', 0.0025825111647644386) + +[53098] +centroid = (0.75492021170815715, -1.5482917721670013) +station = ('kryv', 0.0015217197445838869) +zone = ('wiz058', 0.0028391875959397125) + +[53103] +centroid = (0.74842432312503704, -1.5396046576145874) +station = ('kues', 0.0028017339396727197) +zone = ('wiz065', 0.0026552414402267605) + +[53104] +centroid = (0.74259321300070902, -1.5365753070851935) +station = ('kenw', 0.0016417111323233124) +zone = ('wiz072', 0.00051141367533126558) + +[53105] +centroid = (0.7446135886895251, -1.540782702499806) +station = ('kbuu', 0.00057054314569228947) +zone = ('wiz071', 0.0032434516129974051) + +[53108] +centroid = (0.74726271924137211, -1.5349002447888844) +station = ('krac', 0.0018282369952436247) +zone = ('wiz071', 0.0018521639938033378) + +[53110] +centroid = (0.749591738955111, -1.5334602957961114) +station = ('kmke', 0.00050148140842353091) +zone = ('wiz066', 0.0016960432976673837) + +[53114] +centroid = (0.74345772693909928, -1.5490111968846736) +station = ('kjvl', 0.003632767791323716) +zone = ('wiz070', 0.0029702313516910294) + +[53115] +centroid = (0.74449817006609065, -1.5475536549730406) +station = ('kbuu', 0.0047028694040524236) +zone = ('wiz070', 0.0016354150326725134) + +[53118] +centroid = (0.74983695771501624, -1.5444687331602629) +station = ('kues', 0.003527506225459282) +zone = ('wiz065', 0.0025775502822387342) + +[53119] +centroid = (0.74862416332439041, -1.5443637516057553) +station = ('kues', 0.0040939829814320237) +zone = ('wiz065', 0.0031802404916139761) + +[53120] +centroid = (0.74716023350769512, -1.5432626059273797) +station = ('kbuu', 0.0025610023463644755) +zone = ('wiz070', 0.0028929825398789854) + +[53121] +centroid = (0.74555243620075795, -1.5452341996636025) +station = ('kbuu', 0.0029944282688551473) +zone = ('wiz070', 0.00085072307769353689) + +[53122] +centroid = (0.75132095881810934, -1.5374086843497281) +station = ('kmwc', 0.0013874339480835797) +zone = ('wiz066', 0.0016895857719105517) + +[53125] +centroid = (0.74263827740199551, -1.5455653584358759) +station = ('kbuu', 0.0040366916168662085) +zone = ('wiz070', 0.0020737322365734431) + +[53126] +centroid = (0.74690461258544805, -1.5358503671270849) +station = ('krac', 0.0023698614402474396) +zone = ('wiz071', 0.001098484368131266) + +[53128] +centroid = (0.74223381480113837, -1.5417580099391128) +station = ('kbuu', 0.002885459962457454) +zone = ('wiz070', 0.0036184620221639471) + +[53129] +centroid = (0.74944425863331754, -1.5359046992266996) +station = ('kmke', 0.0013003269158788928) +zone = ('wiz066', 0.0012498226251102618) + +[53130] +centroid = (0.74946590071604213, -1.5367527896168287) +station = ('kmke', 0.0019154550084219115) +zone = ('wiz066', 0.0015614663340719436) + +[53132] +centroid = (0.74846488457685334, -1.5360912923770305) +station = ('kmke', 0.0018342938842356696) +zone = ('wiz066', 0.0022256298572953062) + +[53137] +centroid = (0.75062916266249646, -1.5475673558076686) +station = ('kryv', 0.0028369057051692652) +zone = ('wiz064', 0.001382014853722206) + +[53139] +centroid = (0.74500272729954986, -1.5379980471315415) +station = ('kenw', 0.0028319434258892097) +zone = ('wiz071', 0.0013739655456744115) + +[53140] +centroid = (0.74389962685241184, -1.5329017904354731) +station = ('kenw', 0.0013980101179580072) +zone = ('wiz071', 0.0036357717450806381) + +[53142] +centroid = (0.74208682317153529, -1.5355866478771087) +station = ('kenw', 0.001558163334485749) +zone = ('wiz072', 0.0012698801318652407) + +[53143] +centroid = (0.74283502836857285, -1.5329214602961434) +station = ('kenw', 0.0014905800340642488) +zone = ('wiz072', 0.0027365251654385054) + +[53144] +centroid = (0.74377228763018621, -1.5345364309063061) +station = ('kenw', 0.00029692366455752863) +zone = ('wiz072', 0.0016727567236848361) + +[53146] +centroid = (0.75003264403074987, -1.5386017216132213) +station = ('kues', 0.0015708645494473717) +zone = ('wiz066', 0.0024783623585850458) + +[53147] +centroid = (0.74291548804708973, -1.5438719352758361) +station = ('kbuu', 0.0029279773056988274) +zone = ('wiz070', 0.002093952451082699) + +[53149] +centroid = (0.74836384746645546, -1.5418603036865723) +station = ('kues', 0.0031462827092200306) +zone = ('wiz065', 0.0024903703252916478) + +[53150] +centroid = (0.74824624718145605, -1.5382340330997035) +station = ('kues', 0.0032399067102431432) +zone = ('wiz071', 0.0023846104975276177) + +[53151] +centroid = (0.75005138886691614, -1.5376107585705241) +station = ('kues', 0.0021112996992981099) +zone = ('wiz066', 0.0017759511740908236) + +[53153] +centroid = (0.74934788155202237, -1.5429947851536612) +station = ('kues', 0.0028605582422967053) +zone = ('wiz065', 0.0019612623059231597) + +[53154] +centroid = (0.74837437180184496, -1.5341213043437192) +station = ('kmke', 0.0012446569924866422) +zone = ('wiz066', 0.0024037421316211532) + +[53156] +centroid = (0.7485693599858777, -1.5461669036158683) +station = ('kbuu', 0.005034152377991573) +zone = ('wiz064', 0.0033075659681086845) + +[53158] +centroid = (0.7421900943033759, -1.5338918633602521) +station = ('kenw', 0.001456184150628719) +zone = ('wiz072', 0.0022071587170100944) + +[53167] +centroid = (0.74603311733004962, -1.5398728623607414) +station = ('kbuu', 0.0013603287987111791) +zone = ('wiz071', 0.0022195342485178699) + +[53168] +centroid = (0.74307518567364716, -1.5382581186433812) +station = ('kenw', 0.0026365082834405389) +zone = ('wiz072', 0.0012071385936256488) + +[53170] +centroid = (0.74265218767613383, -1.5385741105044548) +station = ('kenw', 0.0029606337926647709) +zone = ('wiz072', 0.0015088814272204442) + +[53172] +centroid = (0.74895565370922157, -1.5334404164959312) +station = ('kmke', 0.00084000022531954474) +zone = ('wiz066', 0.0021503982924176656) + +[53177] +centroid = (0.74532910386967266, -1.5347181720413163) +station = ('kenw', 0.0018188520772293593) +zone = ('wiz071', 0.0017412323812571703) + +[53178] +centroid = (0.75100723588506346, -1.546305657291402) +station = ('kryv', 0.0028392846508589909) +zone = ('wiz064', 0.0022903167512798583) + +[53179] +centroid = (0.74200580498765778, -1.5381689323186045) +station = ('kenw', 0.0029486271076229614) +zone = ('wiz072', 0.0015838583468114323) + +[53181] +centroid = (0.74198594314077015, -1.5401369481298606) +station = ('kbuu', 0.0032033669029954319) +zone = ('wiz072', 0.0028223620534297222) + +[53182] +centroid = (0.74529732142399385, -1.5366101962169407) +station = ('kenw', 0.0022613423587233149) +zone = ('wiz071', 0.00081040282257324433) + +[53183] +centroid = (0.75059345322600057, -1.5423536908128186) +station = ('kues', 0.0018102047118087571) +zone = ('wiz065', 0.00086729367251175374) + +[53184] +centroid = (0.74222290649331335, -1.546456785351332) +station = ('kbuu', 0.0048111493672703598) +zone = ('wiz070', 0.0026136941411913257) + +[53185] +centroid = (0.74696959119349982, -1.5392835519388055) +station = ('kbuu', 0.002351113107499751) +zone = ('wiz071', 0.0019910628875771394) + +[53186] +centroid = (0.75087825605334102, -1.5394620118548221) +station = ('kues', 0.00052814710859258596) +zone = ('wiz065', 0.001275753487468709) + +[53188] +centroid = (0.75088031554185841, -1.5409936953530796) +station = ('kues', 0.0007805687677012275) +zone = ('wiz065', 0.00017031221436139893) + +[53189] +centroid = (0.74951459540217291, -1.5409691734770892) +station = ('kues', 0.0018297785497006385) +zone = ('wiz065', 0.0013042772625248059) + +[53190] +centroid = (0.74713654938974561, -1.5487388731614846) +station = ('kjvl', 0.0050640417731247743) +zone = ('wiz070', 0.0034802420142428718) + +[53191] +centroid = (0.74315986904895392, -1.5453961487648951) +station = ('kbuu', 0.0036360765721471949) +zone = ('wiz070', 0.0015463541371695754) + +[53192] +centroid = (0.74181013612521662, -1.5391051269293743) +station = ('kbuu', 0.0036275471418125366) +zone = ('wiz072', 0.0022422676975449728) + +[53195] +centroid = (0.74200915601982165, -1.5444450141357284) +station = ('kbuu', 0.0038952309320465688) +zone = ('wiz070', 0.0027773315115677769) + +[53202] +centroid = (0.75127908836935409, -1.5340027092210462) +station = ('kmke', 0.0016634064237733171) +zone = ('wiz066', 0.0011626089480987439) + +[53203] +centroid = (0.751156496442694, -1.5344364759000444) +station = ('kmke', 0.001552351462576937) +zone = ('wiz066', 0.00083615829063786982) + +[53204] +centroid = (0.75081598270562988, -1.5345991231330376) +station = ('kmke', 0.0012424262491600958) +zone = ('wiz066', 0.00055612666491270182) + +[53205] +centroid = (0.75142466628226301, -1.5347345083231148) +station = ('kmwc', 0.0016811487991731226) +zone = ('wiz066', 0.00091150147959262375) + +[53206] +centroid = (0.75180277441141496, -1.5347321695819174) +station = ('kmwc', 0.0014624598744558716) +zone = ('wiz066', 0.0012597947685079453) + +[53207] +centroid = (0.75009699432027088, -1.53412435866991) +station = ('kmke', 0.00047830576827031829) +zone = ('wiz066', 0.0010095023189406387) + +[53208] +centroid = (0.75131315719635294, -1.5353172388537708) +station = ('kmwc', 0.0014785459198699623) +zone = ('wiz066', 0.00069768939547902814) + +[53209] +centroid = (0.75272176007576008, -1.5350078792438548) +station = ('kmwc', 0.0010857714493679267) +zone = ('wiz066', 0.0021176856847033836) + +[53210] +centroid = (0.75169306301463468, -1.5354318371724569) +station = ('kmwc', 0.0011283626869976419) +zone = ('wiz066', 0.0010813276189636045) + +[53211] +centroid = (0.75192997400730033, -1.5338205492070156) +station = ('kmke', 0.0023231598989351043) +zone = ('wiz066', 0.0017059948478614204) + +[53212] +centroid = (0.75178062618320707, -1.5342945806318573) +station = ('kmke', 0.0021644994287896373) +zone = ('wiz066', 0.0013808421599949348) + +[53213] +centroid = (0.75134333393912001, -1.5359161136800075) +station = ('kmwc', 0.001251999037229935) +zone = ('wiz066', 0.00085264924449566615) + +[53214] +centroid = (0.75084635143461465, -1.5361143656297418) +station = ('kmwc', 0.0017015672146878831) +zone = ('wiz066', 0.00063281793005416035) + +[53215] +centroid = (0.75047868037438936, -1.5348962654381897) +station = ('kmke', 0.0010206888714939658) +zone = ('wiz066', 0.00033109796477646524) + +[53216] +centroid = (0.75199936829835967, -1.5354775473455664) +station = ('kmwc', 0.00089773986400139597) +zone = ('wiz066', 0.0013893717823019751) + +[53217] +centroid = (0.75323696381765626, -1.5343759827881702) +station = ('kmwc', 0.0016855971301141526) +zone = ('wiz066', 0.0027085078562790717) + +[53218] +centroid = (0.75247636678292962, -1.53576721964152) +station = ('kmwc', 0.00051669046411874245) +zone = ('wiz066', 0.00189080508562529) + +[53219] +centroid = (0.75040747094090809, -1.5357795765726243) +station = ('kmke', 0.0014329113173953661) +zone = ('wiz066', 0.00040242153108621675) + +[53220] +centroid = (0.74988427359103771, -1.5357390849339778) +station = ('kmke', 0.0011968615300782799) +zone = ('wiz066', 0.00079616486684820729) + +[53221] +centroid = (0.74968713865202508, -1.5349002447888844) +station = ('kmke', 0.00055740383395444168) +zone = ('wiz066', 0.00097523087715730653) + +[53222] +centroid = (0.75194383192156111, -1.5365187758707213) +station = ('kmwc', 0.00058498246494540862) +zone = ('wiz066', 0.0015958489097693488) + +[53223] +centroid = (0.75334440628640897, -1.5357238656629004) +station = ('kmwc', 0.00098207828863637646) +zone = ('wiz066', 0.0027457151861652093) + +[53224] +centroid = (0.75334222462484413, -1.5365826200147592) +station = ('kmwc', 0.00081845373771958151) +zone = ('wiz066', 0.0028811250859387804) + +[53225] +centroid = (0.75250139480440326, -1.5366392559489865) +station = ('kmwc', 0.00012525788828558925) +zone = ('wiz066', 0.0021217635625684766) + +[53226] +centroid = (0.75134687695750157, -1.5366267942981273) +station = ('kmwc', 0.0011863519077698066) +zone = ('wiz066', 0.0012097794847018533) + +[53227] +centroid = (0.75041851887507327, -1.5366230767468205) +station = ('kmke', 0.0019820285729279393) +zone = ('wiz066', 0.00098133563430974954) + +[53228] +centroid = (0.74995132914089935, -1.5366441428708919) +station = ('kmke', 0.0018593467758137743) +zone = ('wiz066', 0.0011813607364719537) + +[53233] +centroid = (0.75113593646410548, -1.5347347352159177) +station = ('kmke', 0.0015772737157830042) +zone = ('wiz066', 0.00066846494117076037) + +[53235] +centroid = (0.75002220696182287, -1.5335840745466629) +station = ('kmke', 0.00057514860244756584) +zone = ('wiz066', 0.0013939615186566359) + +[53295] +centroid = (0.75088389346682494, -1.5354721193715928) +station = ('kmke', 0.0015948297303040111) +zone = ('wiz066', 0.00029383848593330232) + +[53402] +centroid = (0.74692915191473097, -1.532687621082961) +station = ('krac', 0.0005100113960536095) +zone = ('wiz066', 0.0041563344450533607) + +[53403] +centroid = (0.74497961914025335, -1.5326701852437337) +station = ('krac', 0.0014395976768894233) +zone = ('wiz071', 0.0032659302330913763) + +[53404] +centroid = (0.74619901087545171, -1.532596148376864) +station = ('krac', 0.000230658777509391) +zone = ('wiz071', 0.0031266624090334773) + +[53405] +centroid = (0.74572539832963047, -1.5329257363528106) +station = ('krac', 0.00071502341998003194) +zone = ('wiz071', 0.002906030617655187) + +[53406] +centroid = (0.74585837496534002, -1.5335316623092254) +station = ('krac', 0.00083454626856117951) +zone = ('wiz071', 0.0024489200745841217) + +[53501] +centroid = (0.74361864629613317, -1.5544862074817172) +station = ('kjvl', 0.00045167923986278715) +zone = ('wiz069', 0.0011369910501732897) + +[53502] +centroid = (0.74578627541394016, -1.5609887806758722) +station = ('keft', 0.0028106780237454531) +zone = ('wiz068', 0.0022815165262973299) + +[53503] +centroid = (0.75298698030889311, -1.5700546840358467) +station = ('klnr', 0.0031487624387431042) +zone = ('wiz062', 0.0033656608495353821) + +[53504] +centroid = (0.74531695637807882, -1.568358957041194) +station = ('keft', 0.0037885556128066222) +zone = ('wiz068', 0.0033369693619241178) + +[53505] +centroid = (0.74457559287170927, -1.5502163467331755) +station = ('kjvl', 0.0028358798215568953) +zone = ('wiz069', 0.00322287473274405) + +[53506] +centroid = (0.75327352846548556, -1.5757045242640624) +station = ('klnr', 0.0015971214881115056) +zone = ('wiz062', 0.0033385957398135869) + +[53507] +centroid = (0.75041178190416047, -1.5689906091507833) +station = ('klnr', 0.005316479776865001) +zone = ('wiz062', 0.003050320438311287) + +[53508] +centroid = (0.74814719974640531, -1.5633529338674539) +station = ('kc29', 0.0043002947431800059) +zone = ('wiz068', 0.0032614317587730726) + +[53510] +centroid = (0.74604720213711329, -1.5761237348970991) +station = ('kpvb', 0.0019798014517621492) +zone = ('wiz067', 0.0026735072873436193) + +[53511] +centroid = (0.7427091726762115, -1.5549917595528497) +station = ('kjvl', 0.0013451844355126571) +zone = ('wiz069', 0.0020647575720443559) + +[53515] +centroid = (0.75249910842308321, -1.5662459567289746) +station = ('kc29', 0.002667942266218686) +zone = ('wiz062', 0.005432559507206676) + +[53516] +centroid = (0.74694224188412106, -1.5685907542191515) +station = ('kmrj', 0.0048394714335042808) +zone = ('wiz068', 0.0040311681713378804) + +[53517] +centroid = (0.75148611932522569, -1.5678699157847853) +station = ('klnr', 0.0052680107561548159) +zone = ('wiz062', 0.0039904329771261069) + +[53518] +centroid = (0.7546976298686503, -1.5811833047722903) +station = ('kovs', 0.0019445951352840235) +zone = ('wiz055', 0.0031535091106100039) + +[53520] +centroid = (0.74345479478595611, -1.5594994388652679) +station = ('kjvl', 0.0041176136078550172) +zone = ('wiz068', 0.0035166038470675893) + +[53521] +centroid = (0.74766597756504549, -1.5603296221772716) +station = ('keft', 0.0045967402692362689) +zone = ('wiz068', 0.0037826249032223321) + +[53522] +centroid = (0.74275818152160744, -1.5670175144314036) +station = ('keft', 0.0026752447503102009) +zone = ('wiz068', 0.0031680936073179328) + +[53523] +centroid = (0.75021880084876758, -1.5538466839372014) +station = ('kmsn', 0.0048508668422203548) +zone = ('wiz064', 0.0032910813356212738) + +[53525] +centroid = (0.74254226683984337, -1.5508761160970144) +station = ('kjvl', 0.0025737249223592544) +zone = ('wiz069', 0.0035170343467176464) + +[53526] +centroid = (0.75003868286996178, -1.5767933828245042) +station = ('kmrj', 0.0021063579267198598) +zone = ('wiz062', 0.0026979861407590918) + +[53527] +centroid = (0.75138792710150848, -1.5566985519349601) +station = ('kmsn', 0.0024676136946750003) +zone = ('wiz063', 0.0028961092870755786) + +[53528] +centroid = (0.75255630286267094, -1.5644784792487725) +station = ('kc29', 0.0013837869968093609) +zone = ('wiz063', 0.0029378397959705133) + +[53529] +centroid = (0.75472536315046457, -1.5623254061769272) +station = ('kc29', 0.0023221537959218861) +zone = ('wiz063', 0.0032943714453335863) + +[53530] +centroid = (0.7451478863334382, -1.5726444559398334) +station = ('kmrj', 0.0037110262669130547) +zone = ('wiz067', 0.00066936901261989618) + +[53531] +centroid = (0.75157745240498253, -1.5551301292559481) +station = ('kmsn', 0.0033908933932664067) +zone = ('wiz064', 0.0042266734886441662) + +[53532] +centroid = (0.75485640247070429, -1.5590364902811766) +station = ('kmsn', 0.0020600794684353901) +zone = ('wiz063', 0.0033971967579182038) + +[53533] +centroid = (0.75040466096081238, -1.5735699167757033) +station = ('kmrj', 0.0021305584660046336) +zone = ('wiz062', 0.00031503830130718907) + +[53534] +centroid = (0.74806249891780607, -1.5549716009999892) +station = ('kjvl', 0.00433014794941453) +zone = ('wiz069', 0.0033212327561121242) + +[53536] +centroid = (0.74632806052034417, -1.5580189633272639) +station = ('kjvl', 0.003929585290448504) +zone = ('wiz069', 0.0029695273148666302) + +[53537] +centroid = (0.74477421134058608, -1.557013845664333) +station = ('kjvl', 0.0024717917500487871) +zone = ('wiz069', 0.0017802771964608563) + +[53538] +centroid = (0.74909611780742213, -1.5508498314384795) +station = ('kryv', 0.0046624444386499878) +zone = ('wiz064', 0.0020432991922091442) + +[53540] +centroid = (0.75449295510726888, -1.5757690316332162) +station = ('klnr', 0.0013104963548537592) +zone = ('wiz055', 0.0031457692487919272) + +[53541] +centroid = (0.74291929286485903, -1.5713087903698673) +station = ('kmrj', 0.0061458354542479202) +zone = ('wiz067', 0.0021071620366328839) + +[53543] +centroid = (0.75143335802193778, -1.5769373899410861) +station = ('kmrj', 0.0033185269147616978) +zone = ('wiz062', 0.002915103541059786) + +[53544] +centroid = (0.74835459722141995, -1.5691498355384428) +station = ('kmrj', 0.0041750292457100073) +zone = ('wiz062', 0.0036360112074650349) + +[53545] +centroid = (0.74593431424109435, -1.554046401963507) +station = ('kjvl', 0.0021350368463893365) +zone = ('wiz069', 0.001247722343930223) + +[53546] +centroid = (0.74442209116399638, -1.5524383603104746) +station = ('kjvl', 0.0012575595532808288) +zone = ('wiz069', 0.001618401506995615) + +[53548] +centroid = (0.74495862282935188, -1.5555189886132923) +station = ('kjvl', 0.0016475959494159764) +zone = ('wiz069', 0.00071138605806607576) + +[53549] +centroid = (0.75022113958996517, -1.5492522268543738) +station = ('kryv', 0.0032399817199439073) +zone = ('wiz064', 0.00064863867677403947) + +[53550] +centroid = (0.74268248659194847, -1.5619695335424457) +station = ('keft', 0.0016514434715517539) +zone = ('wiz068', 0.0026207465602384565) + +[53551] +centroid = (0.75191951948508085, -1.5518708490508961) +station = ('kryv', 0.0029356980783860416) +zone = ('wiz064', 0.0020753551760492608) + +[53553] +centroid = (0.74888296074587601, -1.5760702929154031) +station = ('kmrj', 0.00098047929009440014) +zone = ('wiz062', 0.0026747749766919317) + +[53554] +centroid = (0.74889744697866756, -1.5784876437425852) +station = ('kmrj', 0.0026999026637826687) +zone = ('wiz062', 0.004216192451584143) + +[53555] +centroid = (0.75607911033148134, -1.563043713883878) +station = ('kc29', 0.0036823312602311431) +zone = ('wiz057', 0.0038016845690790604) + +[53556] +centroid = (0.75464895263581222, -1.5750771831177257) +station = ('klnr', 0.00087278543089952456) +zone = ('wiz055', 0.0033504167661924877) + +[53557] +centroid = (0.75640740676378149, -1.5498114128934202) +station = ('kunu', 0.0019429617317217856) +zone = ('wiz058', 0.0017706259638487444) + +[53558] +centroid = (0.75044218553973019, -1.5581510498450548) +station = ('kmsn', 0.0025594240545310743) +zone = ('wiz063', 0.0021960056113372703) + +[53559] +centroid = (0.7533815468928915, -1.5547720749599012) +station = ('kmsn', 0.0034601996998089983) +zone = ('wiz064', 0.0046459101490168454) + +[53560] +centroid = (0.75384706111098343, -1.5662177347549699) +station = ('kc29', 0.0030088119261146959) +zone = ('wiz063', 0.0046148286780865093) + +[53561] +centroid = (0.75738477369160584, -1.564489073397332) +station = ('kdll', 0.0027781698879541833) +zone = ('wiz057', 0.0040603089454748463) + +[53562] +centroid = (0.75251574141085475, -1.5628312724073252) +station = ('kc29', 0.0002026403676506836) +zone = ('wiz063', 0.0018085019557570927) + +[53563] +centroid = (0.74707947712320533, -1.5518771147829107) +station = ('kjvl', 0.0036071208240331383) +zone = ('wiz069', 0.0030644433097826687) + +[53565] +centroid = (0.74758321405191586, -1.5736895765492203) +station = ('kmrj', 0.0012400510416670876) +zone = ('wiz062', 0.0029428072983438427) + +[53566] +centroid = (0.74364608287197465, -1.5646851960453785) +station = ('keft', 0.00076856499520013336) +zone = ('wiz068', 0.0014010956668205547) + +[53569] +centroid = (0.7503000982853254, -1.5784575019064033) +station = ('kmrj', 0.0032055222822544071) +zone = ('wiz062', 0.0038802078858953359) + +[53570] +centroid = (0.74590476581685805, -1.5641620161488008) +station = ('keft', 0.0021650327647393984) +zone = ('wiz068', 0.0010236746625403022) + +[53571] +centroid = (0.75534354131822834, -1.5595079909786029) +station = ('kmsn', 0.0025251908130769505) +zone = ('wiz057', 0.003299216167380859) + +[53572] +centroid = (0.74981269763841352, -1.5661476248789172) +station = ('kc29', 0.0036746351426882682) +zone = ('wiz068', 0.0051867378643515134) + +[53573] +centroid = (0.75376415797151375, -1.5788097617093333) +station = ('klnr', 0.003545609698552118) +zone = ('wiz055', 0.0033044019721074386) + +[53574] +centroid = (0.74728919588612486, -1.5646906414726449) +station = ('keft', 0.0035985003977533634) +zone = ('wiz068', 0.0024607156455949035) + +[53575] +centroid = (0.74932330731615426, -1.5601594351219097) +station = ('kmsn', 0.0035334533461346372) +zone = ('wiz063', 0.0023712265569103426) + +[53576] +centroid = (0.74395853171466664, -1.5574126533984134) +station = ('kjvl', 0.0025713384689580662) +zone = ('wiz069', 0.0022210770764800572) + +[53577] +centroid = (0.75593016393311618, -1.5719194287152625) +station = ('klnr', 0.0022433516501874813) +zone = ('wiz056', 0.0024912228262776908) + +[53578] +centroid = (0.75620651936687699, -1.5668787258492851) +station = ('kdll', 0.0033952318416703127) +zone = ('wiz056', 0.002795718352638454) + +[53579] +centroid = (0.75565742133090696, -1.5510345745398029) +station = ('kryv', 0.0029638257327663153) +zone = ('wiz058', 0.0029243801090691017) + +[53580] +centroid = (0.74804478382589834, -1.5773944567655986) +station = ('kmrj', 0.0019209083438056565) +zone = ('wiz062', 0.0039552903965469309) + +[53581] +centroid = (0.75699223168953977, -1.5780236479609426) +station = ('klnr', 0.0039983302385594201) +zone = ('wiz055', 0.00020297482896846174) + +[53582] +centroid = (0.75081230006090827, -1.5704264566198141) +station = ('klnr', 0.0043320667349698661) +zone = ('wiz062', 0.002022722615494479) + +[53583] +centroid = (0.75486416918587562, -1.5673838590413973) +station = ('kdll', 0.0047562438794247529) +zone = ('wiz056', 0.0035780297140501675) + +[53585] +centroid = (0.74228196843520078, -1.5483794400553292) +station = ('kjvl', 0.0043571096509496306) +zone = ('wiz070', 0.0032947690843111903) + +[53586] +centroid = (0.74304057579458027, -1.5747526565966099) +station = ('kpvb', 0.0034156566188564517) +zone = ('wiz067', 0.0019533801357186128) + +[53587] +centroid = (0.74316655365998907, -1.5691233414403973) +station = ('keft', 0.0040706499551805822) +zone = ('wiz067', 0.0032403775736530712) + +[53588] +centroid = (0.75387296179708296, -1.5723018827142521) +station = ('klnr', 0.001298139904782652) +zone = ('wiz062', 0.0034303028930021359) + +[53589] +centroid = (0.74917481470339453, -1.5570585784530615) +station = ('kmsn', 0.0040420433597664861) +zone = ('wiz063', 0.0036182218323371025) + +[53590] +centroid = (0.7539863383852925, -1.5569243626335831) +station = ('kmsn', 0.0021820463615392117) +zone = ('wiz063', 0.0035696178448517478) + +[53593] +centroid = (0.75023323472168146, -1.5634543724035797) +station = ('kc29', 0.00226728200213152) +zone = ('wiz063', 0.0025060055463267243) + +[53594] +centroid = (0.75382248687511533, -1.5528859674504409) +station = ('kryv', 0.0032998706641050846) +zone = ('wiz064', 0.0038933142771228643) + +[53597] +centroid = (0.753693105617665, -1.5613245471173709) +station = ('kc29', 0.0015809920498817737) +zone = ('wiz063', 0.0020852417230073617) + +[53598] +centroid = (0.7541588467285596, -1.5592480241865181) +station = ('kmsn', 0.0013483686099673208) +zone = ('wiz063', 0.0026910816331821414) + +[53599] +centroid = (0.74433594171211792, -1.5683041013428038) +station = ('keft', 0.0034666289439196575) +zone = ('wiz068', 0.0033221586139285325) + +[53702] +centroid = (0.75155493765763182, -1.5399150993286397) +station = ('kues', 0.00035507081232099847) +zone = ('wiz065', 0.0012027014506659317) + +[53703] +centroid = (0.75188042410983613, -1.5599471681782822) +station = ('kmsn', 0.0010055795323913857) +zone = ('wiz063', 0.00055142280519620331) + +[53704] +centroid = (0.75286992107596185, -1.5594048943796874) +station = ('kmsn', 6.1572889098595378e-05) +zone = ('wiz063', 0.0015043160813269754) + +[53705] +centroid = (0.75178336635013276, -1.5613804325600198) +station = ('kc29', 0.0010857830274047158) +zone = ('wiz063', 0.00055039904161498026) + +[53706] +centroid = (0.75179005096116791, -1.5605250990534949) +station = ('kmsn', 0.0012931729011795043) +zone = ('wiz063', 0.00014975207962052031) + +[53711] +centroid = (0.750659356858556, -1.5606327509617581) +station = ('kc29', 0.0022631147934943211) +zone = ('wiz063', 0.0010086054332310961) + +[53713] +centroid = (0.75112263705520532, -1.5600993434357635) +station = ('kmsn', 0.0017607713702106733) +zone = ('wiz063', 0.00067498286940014852) + +[53714] +centroid = (0.75224298135535295, -1.55878786812923) +station = ('kmsn', 0.00075248507223320488) +zone = ('wiz063', 0.0014723878523715073) + +[53715] +centroid = (0.75168695436225252, -1.5603541615065546) +station = ('kmsn', 0.00130958699484326) +zone = ('wiz063', 0.00021240837932075675) + +[53716] +centroid = (0.75162888725803878, -1.5588195807617387) +station = ('kmsn', 0.0012761820203138045) +zone = ('wiz063', 0.0013332420209348423) + +[53717] +centroid = (0.75178896885703161, -1.5624168265231466) +station = ('kc29', 0.00063566875488039142) +zone = ('wiz063', 0.001300894975657111) + +[53718] +centroid = (0.75211728274262435, -1.5581709465985274) +station = ('kmsn', 0.0011687973719606019) +zone = ('wiz063', 0.0018611853445803599) + +[53719] +centroid = (0.75128243940151795, -1.5623380772672966) +station = ('kc29', 0.001144286272797208) +zone = ('wiz063', 0.001296646138057529) + +[53726] +centroid = (0.75171067338678721, -1.5607174866969422) +station = ('kmsn', 0.0014428656730814775) +zone = ('wiz063', 6.8767260621906313e-05) + +[53792] +centroid = (0.75184478448651049, -1.560859469231592) +station = ('kmsn', 0.0014159416734433486) +zone = ('wiz063', 0.0002368753611864974) + +[53801] +centroid = (0.74917942237261981, -1.5895511811512222) +station = ('kpdc', 0.0018120898620379627) +zone = ('iaz030', 0.0036876903621680698) + +[53802] +centroid = (0.74710197441726356, -1.5863046767562952) +station = ('kpdc', 0.0048316632166645708) +zone = ('wiz061', 0.0025704812398122455) + +[53803] +centroid = (0.74280364734862192, -1.5769685266149418) +station = ('kpvb', 0.0025330943192679424) +zone = ('wiz067', 0.0033517300716270726) + +[53804] +centroid = (0.74830866015550734, -1.586641630021685) +station = ('kpdc', 0.0037760796941092717) +zone = ('wiz061', 0.0025828542498714524) + +[53805] +centroid = (0.75299661452636424, -1.582791852570806) +station = ('kovs', 0.00012370069171609589) +zone = ('wiz054', 0.0035245526339553711) + +[53806] +centroid = (0.74577746150121749, -1.5868520818228904) +station = ('kpdc', 0.0057307733984451707) +zone = ('wiz061', 0.0036412734682188578) + +[53807] +centroid = (0.74380408752915761, -1.5790465156223663) +station = ('kpvb', 0.0013441915590272902) +zone = ('wiz061', 0.0053007446124231639) + +[53808] +centroid = (0.74396945747578402, -1.581148450547128) +station = ('kpvb', 0.002258071396820471) +zone = ('wiz061', 0.0044520217904558054) + +[53809] +centroid = (0.7503827919852849, -1.5818556405067437) +station = ('kovs', 0.0027993831498372883) +zone = ('wiz061', 0.0023908389233249314) + +[53810] +centroid = (0.74736368653860008, -1.5882835659687913) +station = ('kpdc', 0.0038456148147845435) +zone = ('wiz061', 0.0038714343237791012) + +[53811] +centroid = (0.74235087403406963, -1.5795221003902422) +station = ('kpvb', 0.0028367022988858366) +zone = ('ilz001', 0.0047230527115228026) + +[53813] +centroid = (0.74777294879490019, -1.5833840427860075) +station = ('kpvb', 0.0044977426564281782) +zone = ('wiz061', 0.00044926211163967718) + +[53816] +centroid = (0.75012235395430227, -1.585708070858086) +station = ('kovs', 0.0036987015045254856) +zone = ('wiz061', 0.0027134986490518292) + +[53817] +centroid = (0.74953307843895145, -1.5876855289005953) +station = ('kpdc', 0.002412485069211517) +zone = ('wiz061', 0.0036065884428960835) + +[53818] +centroid = (0.74605250793803934, -1.5793919860945063) +station = ('kpvb', 0.001181878659871718) +zone = ('wiz061', 0.003465544317767035) + +[53820] +centroid = (0.74517064542688416, -1.5831692800215498) +station = ('kpvb', 0.0034508995121000112) +zone = ('wiz061', 0.0030085731420823464) + +[53821] +centroid = (0.75134811614127039, -1.5892502863881783) +station = ('kpdc', 0.00098147230716535971) +zone = ('wiz054', 0.0036924326131831521) + +[53825] +centroid = (0.74906442262820594, -1.5811047300493655) +station = ('kovs', 0.0042144948510360221) +zone = ('wiz061', 0.0017227336629719167) + +[53826] +centroid = (0.75247107843529604, -1.586829043476764) +station = ('kovs', 0.003063976442427032) +zone = ('wiz054', 0.0022062094563818813) + +[53827] +centroid = (0.75129207361898886, -1.5851162820686122) +station = ('kovs', 0.002521479737438321) +zone = ('wiz061', 0.0034382769269591098) + +[53901] +centroid = (0.76029132285482959, -1.5617716132052695) +station = ('kdll', 0.0037072808601435387) +zone = ('wiz057', 0.002512129492496417) + +[53910] +centroid = (0.76596781426072347, -1.5674410883875702) +station = ('kdll', 0.0063836109031833524) +zone = ('wiz044', 0.0015200221530514209) + +[53911] +centroid = (0.7561782275797021, -1.5597570320095699) +station = ('kmsn', 0.0033669020969572341) +zone = ('wiz057', 0.0024922190059322399) + +[53913] +centroid = (0.75909325904309055, -1.5660613358006987) +station = ('kdll', 0.00073649606204414316) +zone = ('wiz056', 0.0030124516238242598) + +[53916] +centroid = (0.75863872294599366, -1.5510348886990681) +station = ('kunu', 0.0021979973314983519) +zone = ('wiz058', 0.0022130969016035365) + +[53919] +centroid = (0.76329986905953973, -1.5494337585498739) +station = ('kfld', 0.0037341611910602954) +zone = ('wiz047', 0.0035831147534227557) + +[53920] +centroid = (0.76210698887567929, -1.5637266612201832) +station = ('kdll', 0.0033499789605977836) +zone = ('wiz046', 0.003653600416494754) + +[53922] +centroid = (0.75958352202997581, -1.5483714115407698) +station = ('kunu', 0.0016519956830112507) +zone = ('wiz058', 0.0018269622189428772) + +[53923] +centroid = (0.76051219427166949, -1.5557579241878903) +station = ('kunu', 0.0060792613089550732) +zone = ('wiz057', 0.0031059951351700586) + +[53924] +centroid = (0.75892869194792001, -1.5753643595928488) +station = ('klnr', 0.0047606984999437416) +zone = ('wiz055', 0.0028394677372691655) + +[53925] +centroid = (0.75619376101004498, -1.5543400187035701) +station = ('kunu', 0.0048153027357481408) +zone = ('wiz057', 0.0042736351591622021) + +[53926] +centroid = (0.7621308649798465, -1.5572323085268047) +station = ('ky50', 0.0066165759941684867) +zone = ('wiz047', 0.0032329840024212415) + +[53928] +centroid = (0.7579451465545437, -1.55607936147623) +station = ('kmsn', 0.0056840137843246555) +zone = ('wiz057', 0.0023463334950008206) + +[53929] +centroid = (0.76360627906301992, -1.5757462201798926) +station = ('kvok', 0.0031821929953211327) +zone = ('wiz043', 0.0036992906104629029) + +[53930] +centroid = (0.76256389862055884, -1.5618398904856075) +station = ('kdll', 0.0046539342246854094) +zone = ('wiz046', 0.0024930394662268113) + +[53931] +centroid = (0.7634695848760038, -1.5509216168306139) +station = ('kosh', 0.0055231570869683959) +zone = ('wiz047', 0.0025183343740263044) + +[53932] +centroid = (0.75786318589286994, -1.5543086900434968) +station = ('kunu', 0.004462509445394322) +zone = ('wiz057', 0.0036118527997886459) + +[53933] +centroid = (0.76068452808201137, -1.5511657883929679) +station = ('kunu', 0.0035040149340787364) +zone = ('wiz058', 0.0036150189491721092) + +[53934] +centroid = (0.76774026592929367, -1.5676585215057837) +station = ('kisw', 0.0066061859695868003) +zone = ('wiz044', 0.00070326516798763315) + +[53935] +centroid = (0.76074769154764099, -1.5544870975996357) +station = ('kunu', 0.0053773968724908118) +zone = ('wiz047', 0.0037208050204063504) + +[53936] +centroid = (0.76565662205509277, -1.5656878527940643) +station = ('kdll', 0.0061082283918667928) +zone = ('wiz044', 0.0019293990453833306) + +[53937] +centroid = (0.75724455393950052, -1.573334628939242) +station = ('klnr', 0.0030101693894348642) +zone = ('wiz056', 0.0025934889166007793) + +[53939] +centroid = (0.76254183765881367, -1.5556232371295138) +station = ('ky50', 0.0065040937546142555) +zone = ('wiz047', 0.0022007641796995218) + +[53941] +centroid = (0.76044007726697693, -1.5736073191815736) +station = ('klnr', 0.0061734195393160808) +zone = ('wiz056', 0.0036736822832076277) + +[53943] +centroid = (0.75724284351683369, -1.5714116251693946) +station = ('klnr', 0.0035152283352617606) +zone = ('wiz056', 0.0013037435383200719) + +[53944] +centroid = (0.76246254735089558, -1.569551348532864) +station = ('kdll', 0.0034880157151616466) +zone = ('wiz056', 0.0045287859188348056) + +[53946] +centroid = (0.76292622897327278, -1.5537062721988786) +station = ('kunu', 0.0064028859424123978) +zone = ('wiz047', 0.0015632460934287789) + +[53947] +centroid = (0.7635252608791423, -1.5557852036840989) +station = ('ky50', 0.0055426964658062223) +zone = ('wiz047', 0.0015178569921731173) + +[53948] +centroid = (0.76404508974355634, -1.5714988043655318) +station = ('kvok', 0.0039505730028976801) +zone = ('wiz043', 0.0027438458095030392) + +[53949] +centroid = (0.76416103196576635, -1.5592074452814093) +station = ('ky50', 0.0045236509480026275) +zone = ('wiz046', 0.001014518413359259) + +[53950] +centroid = (0.7662194732855685, -1.5732015301304851) +station = ('kvok', 0.0017147157459795558) +zone = ('wiz043', 0.00050577200742238089) + +[53951] +centroid = (0.75726157089970758, -1.5686368832712816) +station = ('kdll', 0.0026941726348146664) +zone = ('wiz056', 0.0011390888693171789) + +[53952] +centroid = (0.76416103196576635, -1.5637690552677144) +station = ('kdll', 0.0050586876438611086) +zone = ('wiz046', 0.0025807170353477735) + +[53953] +centroid = (0.76397489260104112, -1.5615162715357027) +station = ('ky50', 0.0051247416485548682) +zone = ('wiz046', 0.0012004690073679732) + +[53954] +centroid = (0.76011685974280019, -1.5588214133574534) +station = ('kdll', 0.0058044277387643327) +zone = ('wiz057', 0.0015045828439586089) + +[53955] +centroid = (0.75758833144226589, -1.5606146344441225) +station = ('kmsn', 0.0048442302903487005) +zone = ('wiz057', 0.0014813754023402514) + +[53956] +centroid = (0.7599534096583509, -1.5536436497853168) +station = ('kunu', 0.0044565325200663806) +zone = ('wiz047', 0.0045196614428285624) + +[53959] +centroid = (0.7598029448235365, -1.5707899737964193) +station = ('kdll', 0.002902367836683442) +zone = ('wiz056', 0.0019721047879923503) + +[53960] +centroid = (0.75792884517933001, -1.5574512077215901) +station = ('kmsn', 0.0053136400598490768) +zone = ('wiz057', 0.0014324362953611687) + +[53961] +centroid = (0.75847853662724563, -1.5695319230182894) +station = ('kdll', 0.0022800238955442264) +zone = ('wiz056', 0.00059925461056833213) + +[53963] +centroid = (0.76165238296541238, -1.5488627391784988) +station = ('kunu', 0.0037483333952253416) +zone = ('wiz051', 0.0037855422483866765) + +[53964] +centroid = (0.76641913895199665, -1.5622878815980092) +station = ('ky50', 0.003447097337483945) +zone = ('wiz046', 0.002163469551920945) + +[53965] +centroid = (0.76221010292788705, -1.5664004358210684) +station = ('kdll', 0.0026246052068282992) +zone = ('wiz056', 0.0049644786253581321) + +[53968] +centroid = (0.76176853462713245, -1.5747730594955658) +station = ('kvok', 0.005036583816634895) +zone = ('wiz043', 0.0050659631040392726) + +[53969] +centroid = (0.75909980402778554, -1.5586002452346406) +station = ('kmsn', 0.0063115980199613736) +zone = ('wiz057', 0.00062264616261651425) + +[54001] +centroid = (0.79123332268564095, -1.6124504768960408) +station = ('krnh', 0.0037419484647366026) +zone = ('wiz014', 0.0023172209740888652) + +[54002] +centroid = (0.78474659708109373, -1.6121806315403899) +station = ('krnh', 0.003838691940269342) +zone = ('wiz023', 0.001601726790604461) + +[54003] +centroid = (0.78184013518433271, -1.613383529914157) +station = ('krgk', 0.0036381065579072511) +zone = ('wiz024', 0.0013536996856275856) + +[54004] +centroid = (0.79067289746282554, -1.607887662632552) +station = ('kube', 0.003828815712330731) +zone = ('wiz015', 0.0040028211156570232) + +[54005] +centroid = (0.7895192173739648, -1.6096735533363629) +station = ('krnh', 0.0041156006098361239) +zone = ('wiz023', 0.0044876395048522658) + +[54006] +centroid = (0.79570777092910117, -1.6169897641212128) +station = ('koeo', 0.0049518051880062192) +zone = ('mnz053', 0.0035489000883512142) + +[54007] +centroid = (0.78872003110947653, -1.611862876896772) +station = ('krnh', 0.0023928353313709028) +zone = ('wiz023', 0.0029928825118184614) + +[54009] +centroid = (0.79155081552987128, -1.6157877558653644) +station = ('koeo', 0.001575420441609063) +zone = ('wiz014', 0.0025308787880901026) + +[54010] +centroid = (0.78076110282757971, -1.6138296709775519) +station = ('krgk', 0.0025267666341955773) +zone = ('wiz024', 0.00059439651515314743) + +[54011] +centroid = (0.78048148362811764, -1.6138123398580795) +station = ('krgk', 0.0022501742665850676) +zone = ('wiz024', 0.00052429445584906652) + +[54013] +centroid = (0.78684591401197757, -1.6096851597758886) +station = ('krnh', 0.003983667529843464) +zone = ('wiz023', 0.0028982346160557316) + +[54014] +centroid = (0.77926718825433516, -1.6156992502189957) +station = ('krgk', 0.0014828551200993937) +zone = ('wiz024', 0.0022385633904591475) + +[54015] +centroid = (0.78490739426508005, -1.6138187103098494) +station = ('krnh', 0.0032086682138115418) +zone = ('wiz023', 0.0010945865058516703) + +[54016] +centroid = (0.78506859287479414, -1.617830506675191) +station = ('k21d', 0.0019431041055312937) +zone = ('mnz063', 0.0025371521185834551) + +[54017] +centroid = (0.78749344861775994, -1.6147751507399422) +station = ('krnh', 0.00054238035380753977) +zone = ('wiz023', 0.0017139190866411061) + +[54020] +centroid = (0.79019513103338457, -1.6169037542956746) +station = ('koeo', 0.00083552524561434467) +zone = ('wiz014', 0.004078870631374419) + +[54021] +centroid = (0.78075862446004185, -1.6180305039541769) +station = ('krgk', 0.0037121671354394137) +zone = ('wiz024', 0.0035297789326719517) + +[54022] +centroid = (0.78273604759596649, -1.6162949136394087) +station = ('k21d', 0.0040141727662889835) +zone = ('wiz024', 0.0031942703825661393) + +[54023] +centroid = (0.78508002478139471, -1.6153848815141265) +station = ('krnh', 0.0029143068679832818) +zone = ('wiz023', 0.0015534220361330118) + +[54024] +centroid = (0.79415448025470381, -1.616885812310964) +station = ('koeo', 0.0034236834264027988) +zone = ('mnz053', 0.0032730999648957976) + +[54025] +centroid = (0.78791142006702763, -1.6177235005387511) +station = ('krnh', 0.0018563044069426177) +zone = ('mnz063', 0.0030309243731612124) + +[54026] +centroid = (0.78937191158509645, -1.6150412610909939) +station = ('krnh', 0.0013853371957360497) +zone = ('wiz023', 0.0035287804216302251) + +[54027] +centroid = (0.78399083460839514, -1.6090683953248188) +station = ('klum', 0.0040459749630759774) +zone = ('wiz025', 0.0036933078908016745) + +[54028] +centroid = (0.78461334119270398, -1.6106529448461193) +station = ('krnh', 0.0046070151892491596) +zone = ('wiz023', 0.0025019844320252247) + +[54082] +centroid = (0.78658568542050533, -1.6187818681971606) +station = ('k21d', 0.0017177733075598022) +zone = ('mnz063', 0.0017380679201795266) + +[54101] +centroid = (0.78165940634028863, -1.5372001698639923) +station = ('kgrb', 0.005328123054478673) +zone = ('wiz074', 0.0018705084342406594) + +[54102] +centroid = (0.79414331014749118, -1.5355104991618442) +station = ('kimt', 0.0057612765169872734) +zone = ('wiz013', 0.0018215187914583904) + +[54103] +centroid = (0.79650536894397006, -1.5449789627137911) +station = ('kimt', 0.0058430204420457941) +zone = ('wiz012', 0.0039900226629552655) + +[54104] +centroid = (0.79322828638054799, -1.5408292678842492) +station = ('kimt', 0.0067365816379198664) +zone = ('wiz013', 0.0027802680609066693) + +[54106] +centroid = (0.77641778117082172, -1.5438587056801059) +station = ('kgrb', 0.0040253034582133631) +zone = ('wiz038', 0.0012150166877709298) + +[54107] +centroid = (0.78014126659702643, -1.5438654426510185) +station = ('kezs', 0.0020407369174035503) +zone = ('wiz038', 0.0049350651827476709) + +[54110] +centroid = (0.77122066189728067, -1.5372009552621557) +station = ('kgrb', 0.0052108772441672689) +zone = ('wiz049', 0.0025738864348283639) + +[54111] +centroid = (0.7821229483363259, -1.5425315224103042) +station = ('kezs', 0.002256331295661568) +zone = ('wiz074', 0.0032326548226977322) + +[54112] +centroid = (0.78635345191023498, -1.5368430231391568) +station = ('kmnm', 0.0053688984367009276) +zone = ('wiz073', 0.0026648869227404162) + +[54113] +centroid = (0.7725570081456552, -1.54124352178221) +station = ('katw', 0.0026358056420334674) +zone = ('wiz038', 0.0033046438584145698) + +[54114] +centroid = (0.78969177807710944, -1.5377956412981879) +station = ('kmnm', 0.0061748549597672887) +zone = ('wiz073', 0.002235739385747431) + +[54115] +centroid = (0.77489100204776218, -1.5375710697833338) +station = ('kgrb', 0.0015593503103571971) +zone = ('wiz039', 0.001514324553515691) + +[54119] +centroid = (0.79600032301832047, -1.5386775910758057) +station = ('kimt', 0.0036888890498098263) +zone = ('wiz013', 0.0011626021577779723) + +[54120] +centroid = (0.79942017351455574, -1.5458274021697704) +station = ('kimt', 0.0055124743809003536) +zone = ('wiz012', 0.0022251938979186829) + +[54121] +centroid = (0.80054367686064953, -1.5414992474242122) +station = ('kimt', 0.0026442721962546371) +zone = ('wiz012', 0.00099285698735472215) + +[54123] +centroid = (0.77163847626691551, -1.5383773944444625) +station = ('kgrb', 0.0047435422382562523) +zone = ('wiz049', 0.0024567517658045214) + +[54124] +centroid = (0.78379286191134145, -1.5419151942915474) +station = ('kezs', 0.0033623469960732621) +zone = ('wiz074', 0.0025872573118378961) + +[54125] +centroid = (0.79563771341292622, -1.5425801996431425) +station = ('kimt', 0.0051650386101629699) +zone = ('wiz013', 0.0034089255430587505) + +[54126] +centroid = (0.77303957423053904, -1.5367750251114991) +station = ('kgrb', 0.0034963245807022093) +zone = ('wiz039', 0.0028854234378514767) + +[54127] +centroid = (0.78184458577392524, -1.5405951843249719) +station = ('kezs', 0.0035985426176290639) +zone = ('wiz074', 0.002211772542665141) + +[54128] +centroid = (0.78311352740658779, -1.5499273900222155) +station = ('kezs', 0.0033241568241463787) +zone = ('wiz031', 0.0014744925961779993) + +[54129] +centroid = (0.77024137510727908, -1.539279136255798) +station = ('katw', 0.0045339815925783305) +zone = ('wiz049', 0.00092025601880084537) + +[54130] +centroid = (0.77337830773176608, -1.5401537556505573) +station = ('kgrb', 0.0033059329403594233) +zone = ('wiz038', 0.0033046504922219144) + +[54135] +centroid = (0.78413068784135753, -1.5465002265964141) +station = ('kezs', 0.0024699698750482984) +zone = ('wiz020', 0.001842704239265875) + +[54136] +centroid = (0.77262617554391166, -1.5417982921382489) +station = ('katw', 0.0022492165885193093) +zone = ('wiz038', 0.0030248197053315985) + +[54137] +centroid = (0.78115374954940087, -1.5403405407871056) +station = ('kgrb', 0.0050067559434397012) +zone = ('wiz074', 0.0026278438533066202) + +[54138] +centroid = (0.79122086103478173, -1.5430275798903061) +station = ('kimt', 0.0091558999992076614) +zone = ('wiz021', 0.0023306472803971494) + +[54139] +centroid = (0.78464494910545757, -1.5372075526067284) +station = ('kmnm', 0.0062625945934271492) +zone = ('wiz074', 0.0015104067270324366) + +[54140] +centroid = (0.77294550098385661, -1.5412868059476597) +station = ('katw', 0.0026697273184546461) +zone = ('wiz038', 0.0029815680662421233) + +[54141] +centroid = (0.78066106055485529, -1.5358603853169914) +station = ('kgrb', 0.0045974691088926821) +zone = ('wiz074', 0.0032076196061663516) + +[54143] +centroid = (0.7867280868341755, -1.5306342412179896) +station = ('kmnm', 0.0012831183768735113) +zone = ('wiz073', 0.003624610981297521) + +[54149] +centroid = (0.78882743867164429, -1.5439596380707488) +station = ('kezs', 0.0071960749227785847) +zone = ('wiz021', 0.00045668665560060634) + +[54150] +centroid = (0.78535699108039381, -1.5507906298702516) +station = ('kaig', 0.0040351698424829635) +zone = ('wiz020', 0.0017780523672044646) + +[54151] +centroid = (0.79805949737640847, -1.5356840896092476) +station = ('kimt', 0.00223168586675875) +zone = ('wiz013', 0.0033810106819500184) + +[54153] +centroid = (0.78361937618369326, -1.5344242760485729) +station = ('kmnm', 0.0053874064861585535) +zone = ('wiz074', 0.0027696466523544124) + +[54154] +centroid = (0.78319363801925435, -1.5390674278175311) +station = ('kezs', 0.0049005950520591693) +zone = ('wiz074', 0.00055637153591208571) + +[54155] +centroid = (0.77715139541531253, -1.5393899646632996) +station = ('kgrb', 0.0011375683900368937) +zone = ('wiz039', 0.0027741974855262207) + +[54156] +centroid = (0.79637118803107687, -1.5363166318367552) +station = ('kimt', 0.003467558625045239) +zone = ('wiz013', 0.0017031953556781909) + +[54157] +centroid = (0.78610633074144498, -1.5327732294827714) +station = ('kmnm', 0.0028273192527087155) +zone = ('wiz073', 0.0029962726346395387) + +[54159] +centroid = (0.78877289713251952, -1.5330773880115165) +station = ('kmnm', 0.0027376611029666844) +zone = ('wiz073', 0.0013402916349704117) + +[54160] +centroid = (0.77005764429692181, -1.5376362752841883) +station = ('kgrb', 0.0063366212720068708) +zone = ('wiz049', 0.0016298617546444964) + +[54161] +centroid = (0.78753118263618815, -1.5387244357129291) +station = ('kmnm', 0.0065178909283928567) +zone = ('wiz073', 0.0028794742547575284) + +[54162] +centroid = (0.77950837530366823, -1.5406179085118328) +station = ('kgrb', 0.0035648708259084913) +zone = ('wiz074', 0.0041788457896158818) + +[54165] +centroid = (0.77696124179330761, -1.5415060193017101) +station = ('kgrb', 0.0024167842525859838) +zone = ('wiz038', 0.002500841950257631) + +[54166] +centroid = (0.78153744273215919, -1.5469647110702476) +station = ('kezs', 0.00094396279167694038) +zone = ('wiz031', 0.001633552510676522) + +[54169] +centroid = (0.77102862331968369, -1.5407895616437663) +station = ('katw', 0.0032168064733081765) +zone = ('wiz049', 0.0018346925698335223) + +[54170] +centroid = (0.77730259328841278, -1.5459637298376436) +station = ('kcli', 0.0023484888021842471) +zone = ('wiz038', 0.0025192373595899309) + +[54171] +centroid = (0.78042800673983659, -1.5375734957909941) +station = ('kgrb', 0.0040732187946624192) +zone = ('wiz074', 0.0029733951378297261) + +[54173] +centroid = (0.77909909559407564, -1.5364224511493039) +station = ('kgrb', 0.0030041044477005486) +zone = ('wiz039', 0.0032534644292274077) + +[54174] +centroid = (0.78604239933094444, -1.5432967969274263) +station = ('kezs', 0.0046239000498944681) +zone = ('wiz021', 0.0028569398924152018) + +[54175] +centroid = (0.79079140531903602, -1.5467625670362815) +station = ('kaig', 0.006487186898902866) +zone = ('wiz021', 0.0030747913324223656) + +[54177] +centroid = (0.79211452197168031, -1.5338474621840814) +station = ('kmnm', 0.005354669637602975) +zone = ('wiz073', 0.0035355088678560879) + +[54180] +centroid = (0.77364047363870825, -1.5389251311236158) +station = ('kgrb', 0.0027864841685712764) +zone = ('wiz039', 0.0030781255324165277) + +[54201] +centroid = (0.77884143263660366, -1.5270876798180597) +station = ('ksue', 0.0040587217763328621) +zone = ('wiz040', 0.0024049563074117998) + +[54202] +centroid = (0.78692183583443931, -1.5208806955860221) +station = ('ksue', 0.0053684885411431089) +zone = ('wiz022', 0.0033289438258330573) + +[54204] +centroid = (0.7811306937499819, -1.5290008399309258) +station = ('ksue', 0.0028596012459952314) +zone = ('wiz040', 0.0041800629733126761) + +[54205] +centroid = (0.77835055878448023, -1.5294743128504069) +station = ('ksue', 0.005174941683286304) +zone = ('wiz040', 0.0014139823817070692) + +[54207] +centroid = (0.76947425054115004, -1.5356978428037533) +station = ('kmtw', 0.0039126895442751705) +zone = ('wiz049', 0.0028727539478883616) + +[54208] +centroid = (0.77429027717251819, -1.5323920146675507) +station = ('kmtw', 0.0042731082009211186) +zone = ('wiz040', 0.0035151148346197914) + +[54209] +centroid = (0.78571138018501119, -1.5231557148127042) +station = ('ksue', 0.0034435805269130517) +zone = ('wiz022', 0.0014225271701431683) + +[54210] +centroid = (0.78969964951203597, -1.5190678744518533) +station = ('ksue', 0.0083601237546750036) +zone = ('wiz022', 0.006321039911101149) + +[54211] +centroid = (0.78819695593265393, -1.5213401360583172) +station = ('kmnm', 0.0057674895118361097) +zone = ('wiz022', 0.0042176777845126896) + +[54212] +centroid = (0.78731409858382506, -1.5220846935172179) +station = ('ksue', 0.0052084182547082435) +zone = ('wiz022', 0.0031946302301825288) + +[54213] +centroid = (0.7800779984116416, -1.5276562557284818) +station = ('ksue', 0.0030353507743575564) +zone = ('wiz040', 0.0033077496064147383) + +[54214] +centroid = (0.77139254192201701, -1.5308813972933646) +station = ('kmtw', 0.0011806862475992723) +zone = ('wiz050', 0.0018172848881520686) + +[54216] +centroid = (0.77559985007016707, -1.5283832726284001) +station = ('kmtw', 0.0055131156407913539) +zone = ('wiz040', 0.001466498144764663) + +[54217] +centroid = (0.77758270118006534, -1.5310022264374803) +station = ('kgrb', 0.0052828355307624007) +zone = ('wiz040', 0.0014455324435986446) + +[54220] +centroid = (0.76972184294883794, -1.5310507116841008) +station = ('kmtw', 0.00073925544130443448) +zone = ('wiz050', 0.0011327943466631742) + +[54227] +centroid = (0.77282308359012175, -1.5325361439571803) +station = ('kmtw', 0.002989167227042489) +zone = ('wiz050', 0.0027873939829085996) + +[54228] +centroid = (0.7726397891120772, -1.5298312326824397) +station = ('kmtw', 0.0023982896011551739) +zone = ('wiz050', 0.0032599513396581784) + +[54229] +centroid = (0.77771977933951697, -1.5326699059910533) +station = ('kgrb', 0.0041754541506223083) +zone = ('wiz040', 0.0026050935702927416) + +[54230] +centroid = (0.77074148175114565, -1.534422024573838) +station = ('kmtw', 0.0029502780156972102) +zone = ('wiz050', 0.0015069567550735361) + +[54232] +centroid = (0.76806418158517131, -1.5345624886720384) +station = ('ksbm', 0.0040102132615462962) +zone = ('wiz050', 0.0024380331213184336) + +[54234] +centroid = (0.78857401686425477, -1.5202081329587662) +station = ('kmnm', 0.0066001170781197441) +zone = ('wiz022', 0.0049395017355381337) + +[54235] +centroid = (0.7826210653048451, -1.5249429494200388) +station = ('ksue', 0.00056572768509477976) +zone = ('wiz022', 0.0019179321438334419) + +[54241] +centroid = (0.77171253058707767, -1.5288160270164322) +station = ('kmtw', 0.0018182448963299882) +zone = ('wiz050', 0.0031700644448679253) + +[54245] +centroid = (0.76848459649539169, -1.5341105705688194) +station = ('kmtw', 0.0032314589394429952) +zone = ('wiz050', 0.0019069571185769186) + +[54246] +centroid = (0.79191108639406782, -1.5166799324225673) +station = ('kesc', 0.0067777370369253801) +zone = ('wiz022', 0.0090935356229828544) + +[54247] +centroid = (0.77143505814259561, -1.5322262083886111) +station = ('kmtw', 0.0017717994097054463) +zone = ('wiz050', 0.0014204353178008421) + +[54301] +centroid = (0.77633602994865836, -1.5361700939927578) +station = ('kgrb', 0.001460977793365778) +zone = ('wiz039', 0.0004990191674339201) + +[54302] +centroid = (0.77680508718513175, -1.5354853140607378) +station = ('kgrb', 0.0019941153659518629) +zone = ('wiz039', 0.00099727978106846902) + +[54303] +centroid = (0.77733589417054083, -1.5367408341114526) +station = ('kgrb', 0.0014214229352263522) +zone = ('wiz039', 0.001577948080968101) + +[54304] +centroid = (0.77655803582951199, -1.5370849083201907) +station = ('kgrb', 0.00082677446426437234) +zone = ('wiz039', 0.0010693096105837655) + +[54307] +centroid = (0.77615425390706305, -1.5365300332443967) +station = ('kgrb', 0.0012247020373156792) +zone = ('wiz039', 0.00050849903023921991) + +[54311] +centroid = (0.77632047906502299, -1.534007945208802) +station = ('kgrb', 0.0030035493599882123) +zone = ('wiz039', 0.0014563892803608066) + +[54313] +centroid = (0.77817883583937653, -1.5378997501880693) +station = ('kgrb', 0.0018123574828436257) +zone = ('wiz039', 0.0027023057973377725) + +[54401] +centroid = (0.78475769737513645, -1.565631042326912) +station = ('kauw', 0.0011994791962218671) +zone = ('wiz030', 0.0013221790364307492) + +[54403] +centroid = (0.78571968795225067, -1.5625097827591079) +station = ('kauw', 0.0018655611150504095) +zone = ('wiz030', 0.0035681819180753346) + +[54405] +centroid = (0.78482255381014054, -1.5758092614724748) +station = ('kmdz', 0.0023487548321981196) +zone = ('wiz017', 0.0050158924690242596) + +[54406] +centroid = (0.77513941476019843, -1.5586650667630595) +station = ('kste', 0.0036395099974861817) +zone = ('wiz036', 0.0026904691095569525) + +[54407] +centroid = (0.77723319899735344, -1.5582612848406108) +station = ('kste', 0.0030992904467798264) +zone = ('wiz036', 0.0029052948303598118) + +[54408] +centroid = (0.78584463607340105, -1.5589978486915375) +station = ('kaig', 0.0035119945656592322) +zone = ('wiz019', 0.0051686435713917791) + +[54409] +centroid = (0.78753095574338539, -1.5563245453295502) +station = ('kaig', 0.00099792946151660991) +zone = ('wiz019', 0.0027327953601860326) + +[54410] +centroid = (0.77740956451826748, -1.5713279366317614) +station = ('kmfi', 0.0024770659503785897) +zone = ('wiz035', 0.001524531343393433) + +[54411] +centroid = (0.7864900413774959, -1.5713795809243281) +station = ('kmdz', 0.0033937223796059938) +zone = ('wiz030', 0.0044380654609250956) + +[54412] +centroid = (0.77952111620720776, -1.5703451766365486) +station = ('kmfi', 0.0026494191334556585) +zone = ('wiz035', 0.0037254169068857059) + +[54413] +centroid = (0.77290186775255665, -1.5730870714381391) +station = ('kisw', 0.00398964766101735) +zone = ('wiz035', 0.0031918781542210652) + +[54414] +centroid = (0.78469432446999654, -1.5564297712301529) +station = ('kaig', 0.0034543501531224489) +zone = ('wiz019', 0.0054394446035105175) + +[54416] +centroid = (0.7832641842276199, -1.5524295813043372) +station = ('kaig', 0.0051101928406610785) +zone = ('wiz031', 0.002732301997031793) + +[54417] +centroid = (0.78586271768445171, -1.5647517803563422) +station = ('kauw', 0.001690993915531724) +zone = ('wiz030', 0.0025898827679353372) + +[54418] +centroid = (0.78924888332612342, -1.5523003222199343) +station = ('kaig', 0.0023197104134969684) +zone = ('wiz019', 0.001774461803119947) + +[54420] +centroid = (0.77859272321819439, -1.576916899775668) +station = ('kmfi', 0.002118164696801466) +zone = ('wiz029', 0.0039062238513983476) + +[54421] +centroid = (0.78356890126172551, -1.5758349003591865) +station = ('kmdz', 0.0035985255431809564) +zone = ('wiz029', 0.0048866822719729986) + +[54422] +centroid = (0.78515194979986935, -1.5787812255760632) +station = ('kmdz', 0.0027673780429593284) +zone = ('wiz017', 0.0039742195381615936) + +[54423] +centroid = (0.77815996883016247, -1.560702668851593) +station = ('kste', 0.0015224757375631639) +zone = ('wiz036', 0.0021504186104054422) + +[54424] +centroid = (0.79040130677792275, -1.5566967367925379) +station = ('kaig', 0.0026405511733100019) +zone = ('wiz019', 0.0015364452066851794) + +[54425] +centroid = (0.7855175090116997, -1.5767513378428235) +station = ('kmdz', 0.0017103244351474344) +zone = ('wiz017', 0.0040796740549229648) + +[54426] +centroid = (0.78378319278728537, -1.5709671945286667) +station = ('kmdz', 0.00495422855594339) +zone = ('wiz030', 0.0031044528224323498) + +[54427] +centroid = (0.78220803313736054, -1.5578519876777255) +station = ('kste', 0.0058276338644114344) +zone = ('wiz036', 0.0066770448564754097) + +[54428] +centroid = (0.79274889679490268, -1.5557116904160047) +station = ('kaig', 0.0047530152039277213) +zone = ('wiz019', 0.0028794473249196431) + +[54430] +centroid = (0.78797529911765052, -1.5511287699595331) +station = ('kaig', 0.0027928711830721852) +zone = ('wiz020', 0.003208455445977019) + +[54433] +centroid = (0.78880282952919123, -1.5850350893518093) +station = ('krcx', 0.0057295026007577864) +zone = ('wiz017', 0.0038796501111463466) + +[54435] +centroid = (0.79168948193894217, -1.5609910496038999) +station = ('krrl', 0.0044606897579771831) +zone = ('wiz019', 0.0048107473992879974) + +[54436] +centroid = (0.77727760017352421, -1.5782540488754984) +station = ('kmfi', 0.0034869185687792727) +zone = ('wiz029', 0.0041772666611552562) + +[54437] +centroid = (0.78150970945034515, -1.5817768214377237) +station = ('kmdz', 0.0069397195224095536) +zone = ('wiz029', 0.00077136422375856308) + +[54440] +centroid = (0.78210333083553341, -1.5600341902947865) +station = ('kauw', 0.0035872962036283102) +zone = ('wiz030', 0.0048896474896794693) + +[54441] +centroid = (0.77915896038741894, -1.5726268979275584) +station = ('kmfi', 0.00098737423656018752) +zone = ('wiz035', 0.0033610746926970581) + +[54442] +centroid = (0.79166134723140003, -1.5648444049797454) +station = ('ktkv', 0.0026292950380851824) +zone = ('wiz018', 0.00099963896350546222) + +[54443] +centroid = (0.77857256466533387, -1.5664631105945075) +station = ('kste', 0.0029705224143903109) +zone = ('wiz036', 0.0038821092964650048) + +[54446] +centroid = (0.78099618122453085, -1.5789367344124157) +station = ('kmfi', 0.004040666914672383) +zone = ('wiz029', 0.0018204806702599398) + +[54447] +centroid = (0.78689890220806813, -1.5838381076442063) +station = ('kmdz', 0.0054757993477854809) +zone = ('wiz017', 0.0037377820319967206) + +[54448] +centroid = (0.78423975346631458, -1.5678328449914729) +station = ('kauw', 0.0026384115595236139) +zone = ('wiz030', 0.0010745587709544032) + +[54449] +centroid = (0.77908731462162462, -1.5744312716681477) +station = ('kmfi', 0.00032211517858128787) +zone = ('wiz035', 0.0038094455721008878) + +[54450] +centroid = (0.78547307292894386, -1.5540580956694954) +station = ('kaig', 0.0026451036957620914) +zone = ('wiz020', 0.0040843015519274302) + +[54451] +centroid = (0.78884326880795985, -1.5779111789439439) +station = ('kmdz', 0.0021148291707788502) +zone = ('wiz017', 0.0011764570910651488) + +[54452] +centroid = (0.78918886145314726, -1.5671879283795684) +station = ('krrl', 0.0012901394822427052) +zone = ('wiz018', 0.0022199151390703241) + +[54454] +centroid = (0.77853404524874237, -1.5687522320815457) +station = ('kcwa', 0.0040863564936295385) +zone = ('wiz035', 0.0032990123298537975) + +[54455] +centroid = (0.78132842210094045, -1.5652893592192489) +station = ('kcwa', 0.00036294981879797213) +zone = ('wiz030', 0.0024732008844338274) + +[54456] +centroid = (0.77744637351219203, -1.5818404386889586) +station = ('kbck', 0.0058084917737209396) +zone = ('wiz029', 0.0033313463940995336) + +[54457] +centroid = (0.77168130664675949, -1.5690533188308073) +station = ('kisw', 0.0027908045537102626) +zone = ('wiz035', 0.0045654585423562143) + +[54458] +centroid = (0.77662222903940037, -1.5586830960142328) +station = ('kste', 0.0029135099376245317) +zone = ('wiz036', 0.0024626072923493447) + +[54459] +centroid = (0.79260946244096087, -1.574941344142043) +station = ('kpbh', 0.0053855559756137679) +zone = ('wiz017', 0.0047818614532583121) + +[54460] +centroid = (0.78432970773596244, -1.5802769378384374) +station = ('kmdz', 0.0040968191013111771) +zone = ('wiz029', 0.0036625580913785989) + +[54462] +centroid = (0.79223988897185105, -1.5534720664665531) +station = ('kaig', 0.0043742146052352824) +zone = ('wiz019', 0.0023964767949332471) + +[54463] +centroid = (0.79416896648749535, -1.5571659162020592) +station = ('krhi', 0.0039547736399427776) +zone = ('wiz019', 0.0045626991857622371) + +[54465] +centroid = (0.79208794060717247, -1.5514444127547562) +station = ('kaig', 0.0048121484209447708) +zone = ('wiz019', 0.003060803693492447) + +[54466] +centroid = (0.7745731601376814, -1.5761458482187218) +station = ('kmfi', 0.0046835049307641713) +zone = ('wiz035', 0.0035557178559891831) + +[54467] +centroid = (0.77516912026406737, -1.5627486310672432) +station = ('kste', 0.0022903138562239919) +zone = ('wiz036', 0.0011794885163950359) + +[54469] +centroid = (0.77396878752430087, -1.5685979973355471) +station = ('kisw', 0.00063183151810641976) +zone = ('wiz035', 0.0028393298095064712) + +[54470] +centroid = (0.79040050392646688, -1.5732661771259788) +station = ('kmdz', 0.0038004668310436078) +zone = ('wiz017', 0.0046100214679806982) + +[54471] +centroid = (0.78418898183837416, -1.5607487455438456) +station = ('kauw', 0.0023771172728762938) +zone = ('wiz030', 0.0041751226964465123) + +[54473] +centroid = (0.77930076838914342, -1.5594930160536207) +station = ('kste', 0.0028789444803191035) +zone = ('wiz036', 0.003567929117591019) + +[54474] +centroid = (0.78319234647560776, -1.5642897044368769) +station = ('kauw', 0.0010503636236454902) +zone = ('wiz030', 0.0016858252448638874) + +[54475] +centroid = (0.77640387089668328, -1.5671846995204524) +station = ('kisw', 0.0021197283378739679) +zone = ('wiz035', 0.0031375883313281253) + +[54476] +centroid = (0.78348390372715349, -1.5625942217883195) +station = ('kauw', 0.001307539504875288) +zone = ('wiz030', 0.0028341304671123378) + +[54479] +centroid = (0.78103450865490454, -1.5765035185423331) +station = ('kmfi', 0.0027059640680349908) +zone = ('wiz029', 0.0035443751460565468) + +[54480] +centroid = (0.78634605171420646, -1.5754963064842995) +station = ('kmdz', 0.00091829536208996474) +zone = ('wiz017', 0.0039598290138161598) + +[54481] +centroid = (0.77685763904890925, -1.5644826680389772) +station = ('kste', 0.0014711030895720987) +zone = ('wiz036', 0.0018068826876237278) + +[54482] +centroid = (0.77769651410058793, -1.5623927584327617) +station = ('kste', 0.00028075909178952813) +zone = ('wiz036', 0.0014593130284369234) + +[54484] +centroid = (0.78190443311397617, -1.5721680857737941) +station = ('kmfi', 0.0031829343142009497) +zone = ('wiz030', 0.0043119624558451862) + +[54485] +centroid = (0.79243112469799215, -1.5570159575127276) +station = ('kaig', 0.0046186366881235796) +zone = ('wiz019', 0.0029845868459113419) + +[54486] +centroid = (0.78047617782719159, -1.5541324117890452) +station = ('kcli', 0.0042985756918679056) +zone = ('wiz031', 0.0036818934611875559) + +[54487] +centroid = (0.79437287330400586, -1.5668769630667405) +station = ('ktkv', 0.00087267450653274634) +zone = ('wiz018', 0.0031245253269302524) + +[54488] +centroid = (0.78261254809809522, -1.5766104025057253) +station = ('kmfi', 0.0040631422065429811) +zone = ('wiz029', 0.0039172634711760251) + +[54489] +centroid = (0.77598694664496692, -1.5708659130721736) +station = ('kisw', 0.0026878098801060707) +zone = ('wiz035', 0.00047821627277301631) + +[54490] +centroid = (0.79139146696916407, -1.5776438468624161) +station = ('kmdz', 0.0043678361020536346) +zone = ('wiz017', 0.0026620555619263188) + +[54491] +centroid = (0.78950891993137806, -1.5490337988984868) +station = ('kaig', 0.0045203811352946327) +zone = ('wiz020', 0.0040687320602941718) + +[54493] +centroid = (0.78010562697370067, -1.5849460601066652) +station = ('kbck', 0.0078127636399641359) +zone = ('wiz029', 0.0025508157771995019) + +[54494] +centroid = (0.77389359874012498, -1.5661698080137101) +station = ('kisw', 0.0013082979586350682) +zone = ('wiz036', 0.0037463212867371617) + +[54495] +centroid = (0.77454593300135033, -1.5701690554617298) +station = ('kisw', 0.0016433192301017593) +zone = ('wiz035', 0.0016566686022511845) + +[54498] +centroid = (0.78601098340440856, -1.5817748317623765) +station = ('kmdz', 0.0041766369023770334) +zone = ('wiz017', 0.0034576364048130893) + +[54499] +centroid = (0.78173002236182432, -1.556421882341934) +station = ('kste', 0.0061281090849061763) +zone = ('wiz037', 0.0061635905417571912) + +[54501] +centroid = (0.79687564054478077, -1.5594391377396117) +station = ('krhi', 0.0016896364969518393) +zone = ('wiz010', 0.0022631118766409711) + +[54511] +centroid = (0.79826944303213088, -1.5502555293748828) +station = ('kegv', 0.0063961499163044918) +zone = ('wiz011', 0.0013829329242893175) + +[54512] +centroid = (0.80442855288278625, -1.5648367778909142) +station = ('kd25', 0.0027636650435297811) +zone = ('wiz005', 0.0018592455388867059) + +[54513] +centroid = (0.79549285108501067, -1.5732626690141824) +station = ('kpbh', 0.0038040217806638737) +zone = ('wiz009', 0.003222718788079081) + +[54514] +centroid = (0.80358060211899729, -1.5790568130649532) +station = ('kpbh', 0.006031258815610529) +zone = ('wiz004', 0.0047575084414646805) + +[54515] +centroid = (0.79434526219523938, -1.5793661552215765) +station = ('kpbh', 0.0034538711390977288) +zone = ('wiz009', 0.003328573973002518) + +[54517] +centroid = (0.80539818800202412, -1.5870396872641874) +station = ('kasx', 0.0070545980446703313) +zone = ('wiz003', 0.0042411562897043372) + +[54519] +centroid = (0.80373773411155436, -1.5579351351632906) +station = ('klnl', 0.0019031249395837209) +zone = ('wiz005', 0.0030488958193428351) + +[54520] +centroid = (0.79476588654497005, -1.5516638879081945) +station = ('kaig', 0.0071660304654406542) +zone = ('wiz011', 0.0028011319013486803) + +[54521] +centroid = (0.80175029278572341, -1.5584255203232236) +station = ('kegv', 0.00028272029539486447) +zone = ('wiz005', 0.0033835765156472073) + +[54524] +centroid = (0.79990968600986256, -1.576858902484624) +station = ('kpbh', 0.0023820575580400637) +zone = ('wiz009', 0.0026418405304680995) + +[54525] +centroid = (0.81023948700096105, -1.5746353181109984) +station = ('kiwd', 0.002184456576003576) +zone = ('wiz004', 0.0028225545324239609) + +[54526] +centroid = (0.79463568498277126, -1.5857569400771416) +station = ('krcx', 0.001840325791712723) +zone = ('wiz016', 0.0035051637613966089) + +[54527] +centroid = (0.80502732298926782, -1.5828078048801693) +station = ('kasx', 0.0079174472732434394) +zone = ('wiz003', 0.0033206731299613508) + +[54529] +centroid = (0.79722645172443163, -1.5649872601790211) +station = ('krhi', 0.0023726082141967506) +zone = ('wiz010', 0.0018390183516249485) + +[54530] +centroid = (0.79469242563675357, -1.5837621858217448) +station = ('krcx', 0.0032094649743988238) +zone = ('wiz009', 0.0053252341021659032) + +[54531] +centroid = (0.79853726380584933, -1.5668635240315001) +station = ('karv', 0.0031904678990103625) +zone = ('wiz010', 0.0031902321345475431) + +[54534] +centroid = (0.80892021007267123, -1.5747772657390631) +station = ('kiwd', 0.0034342817470670475) +zone = ('wiz004', 0.0015001586280627391) + +[54536] +centroid = (0.80847239349319455, -1.5772600489599025) +station = ('kiwd', 0.0046612325358336704) +zone = ('wiz004', 0.0018664008434834145) + +[54537] +centroid = (0.7946275517484569, -1.5813286383391041) +station = ('kpbh', 0.0038855111599916726) +zone = ('wiz009', 0.0039668734011562325) + +[54538] +centroid = (0.80232897415251458, -1.5692590233364474) +station = ('kd25', 0.0026754097515890077) +zone = ('wiz004', 0.0064778775157382619) + +[54539] +centroid = (0.7995937988685442, -1.5631542281321142) +station = ('karv', 0.0029517692894166815) +zone = ('wiz010', 0.0019439930653498876) + +[54540] +centroid = (0.80556933498847472, -1.55999999929474) +station = ('klnl', 0.0020491793934276619) +zone = ('wiz005', 0.0024136951471764481) + +[54541] +centroid = (0.79510592904313604, -1.5466728745660216) +station = ('kimt', 0.0076158548235597283) +zone = ('wiz011', 0.0026886377728815203) + +[54542] +centroid = (0.80144657058929125, -1.5483763333692606) +station = ('klnl', 0.007274870730342586) +zone = ('wiz011', 0.0044523661455781278) + +[54545] +centroid = (0.80512282740593699, -1.568399850105568) +station = ('kd25', 0.00027707394597471297) +zone = ('miz009', 0.0052719570001843533) + +[54546] +centroid = (0.80808171899342807, -1.5829214956276441) +station = ('kasx', 0.0051203741748897134) +zone = ('wiz003', 0.0003314675770150513) + +[54547] +centroid = (0.80624217686841104, -1.5726341934038315) +station = ('kd25', 0.0029763117422093462) +zone = ('wiz004', 0.0020331574840730736) + +[54548] +centroid = (0.80050322012858832, -1.5679042813177571) +station = ('karv', 0.001705095605333537) +zone = ('wiz005', 0.0050724541645999783) + +[54550] +centroid = (0.80915193743745839, -1.5756328435916831) +station = ('kiwd', 0.0034694794314584282) +zone = ('wiz004', 0.0017737325197144335) + +[54552] +centroid = (0.80179108113034248, -1.5763222137396358) +station = ('kpbh', 0.0042970428918285156) +zone = ('wiz009', 0.0045504401497027669) + +[54554] +centroid = (0.80367561784347585, -1.5545156860927833) +station = ('klnl', 0.0025563466073707701) +zone = ('miz010', 0.0070760360688815844) + +[54555] +centroid = (0.79771235138818686, -1.5778583478274861) +station = ('kpbh', 0.00011208500619871848) +zone = ('wiz009', 0.00068583563020539143) + +[54556] +centroid = (0.79473731550511484, -1.5759857491664364) +station = ('kpbh', 0.0031392031193432225) +zone = ('wiz009', 0.0026539708258383121) + +[54557] +centroid = (0.80675858488749108, -1.5665694360525393) +station = ('kd25', 0.002329630597475184) +zone = ('miz009', 0.0033187675514983164) + +[54558] +centroid = (0.8014585260946675, -1.5620474275869618) +station = ('karv', 0.002857392340235407) +zone = ('wiz005', 0.0023243980709682565) + +[54559] +centroid = (0.81149446599960762, -1.5793698902261759) +station = ('kiwd', 0.0043498417769098352) +zone = ('wiz003', 0.0038694143552262614) + +[54560] +centroid = (0.80349248044506405, -1.5629825750001807) +station = ('karv', 0.0028418745297059136) +zone = ('wiz005', 0.00053488043748742557) + +[54561] +centroid = (0.8045540071494196, -1.5623033801217669) +station = ('klnl', 0.0037766896361147353) +zone = ('wiz005', 0.00077945903205698568) + +[54562] +centroid = (0.79940711845175083, -1.5547278483166558) +station = ('kegv', 0.0032236797167894209) +zone = ('wiz011', 0.0044435522420864532) + +[54563] +centroid = (0.79342950539001034, -1.5877355849435424) +station = ('krcx', 0.00073369055462391369) +zone = ('wiz016', 0.0020066783838309536) + +[54564] +centroid = (0.79585102755410497, -1.570105316037447) +station = ('ktkv', 0.002955248691868714) +zone = ('wiz009', 0.0050957499122440348) + +[54565] +centroid = (0.80781491051067567, -1.5789262449836114) +station = ('kiwd', 0.0059065456613558494) +zone = ('wiz004', 0.0027274271531086049) + +[54566] +centroid = (0.79273097226348477, -1.5463835862425035) +station = ('kaig', 0.0077290786528513488) +zone = ('wiz021', 0.0043960051401875982) + +[54568] +centroid = (0.80211929029618001, -1.5647412385676602) +station = ('karv', 0.0010653344590413429) +zone = ('wiz005', 0.0023558863809085354) + +[54601] +centroid = (0.76456237042726238, -1.5907023130593749) +station = ('klse', 0.0019264767740519481) +zone = ('wiz041', 0.0017794034469443296) + +[54603] +centroid = (0.76544489616353339, -1.5924721816406524) +station = ('klse', 0.00047472965157240699) +zone = ('wiz041', 0.0018153252167951387) + +[54610] +centroid = (0.7743204015554076, -1.6027613164601793) +station = ('kona', 0.0051884949641731962) +zone = ('wiz032', 0.00099340000004477882) + +[54611] +centroid = (0.77575895428477881, -1.5874150203198287) +station = ('kbck', 0.0036788762724394315) +zone = ('wiz034', 0.0028982828539568517) + +[54612] +centroid = (0.77230035747914927, -1.5969997751598359) +station = ('kona', 0.0038211868670255614) +zone = ('wiz033', 0.0020222380557683396) + +[54613] +centroid = (0.76926407799262486, -1.5694654085204958) +station = ('kisw', 0.0052046716228144599) +zone = ('wiz044', 0.0026675205998918029) + +[54614] +centroid = (0.76628563871751154, -1.5874269932784975) +station = ('kcmy', 0.0028596628944464642) +zone = ('wiz041', 0.0020414849318359336) + +[54615] +centroid = (0.77256615367093562, -1.5851415195295957) +station = ('kbck', 0.00043561222928752006) +zone = ('wiz034', 0.00097079832746234179) + +[54616] +centroid = (0.77319499580042916, -1.5921506047259726) +station = ('kbck', 0.0047510319799692214) +zone = ('wiz033', 0.0016870360693000549) + +[54618] +centroid = (0.76731007717526212, -1.5757854202748924) +station = ('kvok', 0.0005811341785560009) +zone = ('wiz043', 0.0022650407297697688) + +[54619] +centroid = (0.76371478618261646, -1.5843328910338543) +station = ('ky51', 0.0034522534789101478) +zone = ('wiz053', 0.0029525563765392076) + +[54621] +centroid = (0.76194608697193789, -1.5896624982509142) +station = ('ky51', 0.0026368022875464308) +zone = ('wiz053', 0.0032997888540292012) + +[54622] +centroid = (0.77271586801417169, -1.6017563907834662) +station = ('kona', 0.0034430719716106988) +zone = ('wiz032', 0.0018751874055443721) + +[54623] +centroid = (0.76328463233516985, -1.5883588594727223) +station = ('ky51', 0.0029682518531274067) +zone = ('wiz053', 0.0032559597769671322) + +[54624] +centroid = (0.75854637757527066, -1.5905384615491978) +station = ('ky51', 0.0035993823717065097) +zone = ('iaz011', 0.0044024961496672557) + +[54625] +centroid = (0.77027345425893079, -1.5974126502476877) +station = ('kona', 0.0023608392947133349) +zone = ('wiz033', 0.0036333793073885399) + +[54626] +centroid = (0.7543238501560432, -1.5891913117127534) +station = ('kpdc', 0.003565138886143804) +zone = ('wiz054', 0.0016017998898695044) + +[54627] +centroid = (0.77093608596274299, -1.592211010571384) +station = ('kbck', 0.0049115219397278852) +zone = ('wiz033', 0.002839424296577792) + +[54628] +centroid = (0.75700155174774542, -1.5887064941531346) +station = ('ky51', 0.0039741650355493907) +zone = ('wiz054', 0.0026248267951144693) + +[54629] +centroid = (0.77097755498577036, -1.5994125881309629) +station = ('kona', 0.0017503050405944754) +zone = ('mnz088', 0.0037007710638915486) + +[54630] +centroid = (0.77005945943934373, -1.5947760686131625) +station = ('kona', 0.0041395714729612811) +zone = ('wiz033', 0.0031970508083727484) + +[54631] +centroid = (0.75546597616525579, -1.5852980406569148) +station = ('kovs', 0.00301245856149612) +zone = ('wiz054', 0.0015000127511116178) + +[54632] +centroid = (0.76041951728838852, -1.5908062125097464) +station = ('ky51', 0.0031278219834638735) +zone = ('wiz053', 0.003969869641077462) + +[54634] +centroid = (0.76064489165469851, -1.5781677772505722) +station = ('kvok', 0.0064426264505491127) +zone = ('wiz055', 0.0035989950115689743) + +[54635] +centroid = (0.77497685479366774, -1.5890446516957084) +station = ('kbck', 0.0036170476755256111) +zone = ('wiz034', 0.003336806026247609) + +[54636] +centroid = (0.7679966198898267, -1.5921593662788174) +station = ('klse', 0.0021133536088431392) +zone = ('wiz041', 0.0021688109000984395) + +[54637] +centroid = (0.76582508123449533, -1.5755128172990234) +station = ('kvok', 0.00095728899811911474) +zone = ('wiz043', 0.0021221658091214748) + +[54638] +centroid = (0.76445498031838721, -1.5778505636590223) +station = ('kvok', 0.0028992771989756086) +zone = ('wiz042', 0.0037004473856760895) + +[54639] +centroid = (0.76099802412225459, -1.581928630176062) +station = ('ky51', 0.0033299498011884897) +zone = ('wiz053', 0.0024885123857486206) + +[54641] +centroid = (0.77266865685790531, -1.5765575888425598) +station = ('kvok', 0.0059407690791229099) +zone = ('wiz035', 0.0048315866983235679) + +[54642] +centroid = (0.77059881853808754, -1.5890351745578699) +station = ('kbck', 0.002979185368705554) +zone = ('wiz034', 0.0041823713314815131) + +[54643] +centroid = (0.77120811297995884, -1.581934669015274) +station = ('kbck', 0.0028688528341195524) +zone = ('wiz034', 0.0031108888076281822) + +[54644] +centroid = (0.76857465548479464, -1.5893562976869444) +station = ('klse', 0.0035500620694145788) +zone = ('wiz041', 0.0023533722817150014) + +[54645] +centroid = (0.75609661598387889, -1.5870740004372816) +station = ('kovs', 0.0043556632944294193) +zone = ('wiz054', 0.0014251267938849251) + +[54646] +centroid = (0.76993027016811111, -1.5725077268462322) +station = ('kvok', 0.0037938784500303989) +zone = ('wiz043', 0.0033091788388218005) + +[54648] +centroid = (0.7649678278657932, -1.5821857346281734) +station = ('kcmy', 0.0024920547555056195) +zone = ('wiz042', 0.0020756458648284928) + +[54650] +centroid = (0.7663820157988066, -1.5922151993615887) +station = ('klse', 0.00055336855248943803) +zone = ('wiz041', 0.0014101389492026334) + +[54651] +centroid = (0.76312102517108793, -1.5808009729463486) +station = ('kcmy', 0.0045905697997261638) +zone = ('wiz042', 0.0039167281912912888) + +[54652] +centroid = (0.75879320203808764, -1.5842756442343888) +station = ('ky51', 0.0024506230305331471) +zone = ('wiz053', 0.0022083617733571819) + +[54653] +centroid = (0.76473330797420269, -1.5865296147902919) +station = ('kcmy', 0.0032265446444972304) +zone = ('wiz041', 0.0031194062229883864) + +[54654] +centroid = (0.75519810303165968, -1.5876222083553329) +station = ('kovs', 0.0041368871306467006) +zone = ('wiz054', 0.00067355753250962535) + +[54655] +centroid = (0.75696701168184843, -1.5840450513336155) +station = ('kovs', 0.003975818857615358) +zone = ('wiz054', 0.003167915925029398) + +[54656] +centroid = (0.76777033795230565, -1.5848123155260847) +station = ('kcmy', 0.00098880965821118803) +zone = ('wiz042', 0.0024510223118741812) + +[54657] +centroid = (0.75377356529618189, -1.5864324872174187) +station = ('kovs', 0.0027859424494419849) +zone = ('wiz054', 0.0010030148626342305) + +[54658] +centroid = (0.7623969927841906, -1.5911833432545173) +station = ('klse', 0.0036601967576773064) +zone = ('wiz041', 0.0039722794142304976) + +[54659] +centroid = (0.77316464452473688, -1.5902529954967415) +station = ('kbck', 0.0034179547645568622) +zone = ('wiz033', 0.0030454260533647418) + +[54660] +centroid = (0.76764020620327678, -1.5794253218832193) +station = ('kcmy', 0.0030860945763894402) +zone = ('wiz042', 0.0016793891189682128) + +[54661] +centroid = (0.7689502328865313, -1.5964147582478598) +station = ('kona', 0.0029458499459411765) +zone = ('wiz033', 0.0045129038198146246) + +[54664] +centroid = (0.75901274700469612, -1.5820184448193697) +station = ('ky51', 0.0036327290693687984) +zone = ('wiz053', 0.0030440950701342397) + +[54665] +centroid = (0.75977622383268839, -1.5870050250252428) +station = ('ky51', 0.000937100917650591) +zone = ('wiz053', 0.0016094355835981362) + +[54666] +centroid = (0.7709132570561269, -1.5786445837489247) +station = ('kvok', 0.0047268036759295388) +zone = ('wiz042', 0.0044483682192504688) + +[54667] +centroid = (0.76208141980213751, -1.5858069786667961) +station = ('ky51', 0.0015272956739723934) +zone = ('wiz053', 0.0012664766203316293) + +[54669] +centroid = (0.76639592607294504, -1.5897133571453175) +station = ('klse', 0.0021454607557069086) +zone = ('wiz041', 0.00040263207714259802) + +[54670] +centroid = (0.76510602303596609, -1.5792765500177792) +station = ('kcmy', 0.0038072243798755361) +zone = ('wiz042', 0.0025166772104999379) + +[54701] +centroid = (0.7810694675998221, -1.5972380300560258) +station = ('keau', 0.0020396302975973324) +zone = ('wiz028', 0.0028727915616233667) + +[54703] +centroid = (0.78254371231239661, -1.5972993958325257) +station = ('keau', 0.00068379768416353766) +zone = ('wiz028', 0.0034582605639899536) + +[54720] +centroid = (0.78197979643107718, -1.5958549264369901) +station = ('keau', 0.0012400228276146065) +zone = ('wiz028', 0.0022947196972337271) + +[54721] +centroid = (0.77900579029226391, -1.6071468401782505) +station = ('klum', 0.005239023758825366) +zone = ('wiz026', 0.0013430221877173151) + +[54722] +centroid = (0.78036421495567621, -1.5900479891228023) +station = ('keau', 0.0054329098077984597) +zone = ('wiz028', 0.0022845277613601114) + +[54723] +centroid = (0.77860113570518907, -1.6130250043792123) +station = ('krgk', 0.00090000498699324032) +zone = ('wiz024', 0.001903459059172228) + +[54724] +centroid = (0.78725254082110729, -1.596759635308054) +station = ('keau', 0.0041818129160878775) +zone = ('wiz027', 0.0026387852269374691) + +[54725] +centroid = (0.78667595384941835, -1.6055450642572329) +station = ('klum', 0.0035058224532646741) +zone = ('wiz025', 0.0024988984945791262) + +[54726] +centroid = (0.78420051846472971, -1.5886231372280593) +station = ('keau', 0.0058215110942025517) +zone = ('wiz027', 0.0039975218358537451) + +[54727] +centroid = (0.784594509090075, -1.5910265254212255) +station = ('keau', 0.0042874585073549732) +zone = ('wiz027', 0.0025062654552043036) + +[54728] +centroid = (0.79077540064979512, -1.5993893403453265) +station = ('krpd', 0.0025373844999073227) +zone = ('wiz015', 0.0032738604499848774) + +[54729] +centroid = (0.78444915806996884, -1.5951079604237217) +station = ('keau', 0.0017740793715832074) +zone = ('wiz027', 0.0025715588802646089) + +[54730] +centroid = (0.78578663878235722, -1.6008097765570619) +station = ('klum', 0.002915142222434451) +zone = ('wiz025', 0.0025504480375877045) + +[54731] +centroid = (0.79150397089274771, -1.5898273620520575) +station = ('krcx', 0.0027903320218330319) +zone = ('wiz016', 0.0022479828277654408) + +[54732] +centroid = (0.78792215384192732, -1.5912252660631501) +station = ('keau', 0.0061997153903413718) +zone = ('wiz027', 0.0018813840651334516) + +[54733] +centroid = (0.79026169789105571, -1.6030880944560304) +station = ('krpd', 0.0026079108147059223) +zone = ('wiz015', 0.0025332651693793858) + +[54734] +centroid = (0.78712151895415994, -1.607897768088921) +station = ('klum', 0.0048093706910043565) +zone = ('wiz025', 0.0038802903877443169) + +[54736] +centroid = (0.77839366841700453, -1.6040532615323833) +station = ('klum', 0.0051446920520556048) +zone = ('wiz026', 0.0012259707309932744) + +[54737] +centroid = (0.78048322895736966, -1.6053813523733957) +station = ('klum', 0.0033451594376259848) +zone = ('wiz026', 0.0023778674514259419) + +[54738] +centroid = (0.77820143785318985, -1.5968131471029203) +station = ('keau', 0.0048704658865973433) +zone = ('wiz028', 0.0035146889893908173) + +[54739] +centroid = (0.78295058346762147, -1.6004874142442185) +station = ('klum', 0.0021370139421393701) +zone = ('wiz025', 0.0028498327947006604) + +[54740] +centroid = (0.78105992064881369, -1.6086142432001576) +station = ('klum', 0.004443144686323652) +zone = ('wiz026', 0.0035857871930515197) + +[54741] +centroid = (0.77877189871920416, -1.5878064976710511) +station = ('kbck', 0.0066476391820578969) +zone = ('wiz028', 0.0042882190512017028) + +[54742] +centroid = (0.78132175494319778, -1.5929099625769301) +station = ('keau', 0.0031988379022087673) +zone = ('wiz028', 0.00073074955100704906) + +[54745] +centroid = (0.7897812436545667, -1.5904033730650935) +station = ('krcx', 0.0045434901306890185) +zone = ('wiz027', 0.0037107824277479418) + +[54746] +centroid = (0.77760074788453093, -1.5861562015968278) +station = ('kbck', 0.0053058071045064608) +zone = ('wiz034', 0.004191655946870796) + +[54747] +centroid = (0.77495051777525514, -1.5971876598538131) +station = ('kona', 0.0060278351888360584) +zone = ('wiz033', 0.0025621565264758654) + +[54748] +centroid = (0.78670860895972317, -1.5928401843134354) +station = ('keau', 0.0045422475210333988) +zone = ('wiz027', 0.00023049214110403951) + +[54749] +centroid = (0.78449137758457466, -1.6075732764743904) +station = ('klum', 0.0031147606913872329) +zone = ('wiz025', 0.0026036222661694149) + +[54750] +centroid = (0.77865750984002846, -1.6108437616932401) +station = ('krgk', 0.0024156053833906811) +zone = ('wiz024', 0.0024349677733015024) + +[54751] +centroid = (0.78279186322544514, -1.6045083735881331) +station = ('klum', 0.0010715912544361579) +zone = ('wiz025', 0.0017297959549906665) + +[54754] +centroid = (0.77540020185703151, -1.5839442585693129) +station = ('kbck', 0.0033191831073124257) +zone = ('wiz034', 0.0019939503056234423) + +[54755] +centroid = (0.77799391820512764, -1.6001405824152624) +station = ('keau', 0.0056395567519835167) +zone = ('wiz032', 0.00353798789828294) + +[54756] +centroid = (0.77611477455938294, -1.6046488202330411) +station = ('kona', 0.007352719062201132) +zone = ('wiz026', 0.0021469909105119281) + +[54757] +centroid = (0.78953803202330131, -1.5973663292093399) +station = ('krpd', 0.0044124400601593082) +zone = ('wiz027', 0.0041811187445461549) + +[54758] +centroid = (0.77768281326595978, -1.5920286585711354) +station = ('keau', 0.0063233268774534942) +zone = ('wiz028', 0.0030708042656383086) + +[54759] +centroid = (0.77648096208974393, -1.6079589244259112) +station = ('krgk', 0.004777703420231586) +zone = ('wiz026', 0.002281134106143369) + +[54760] +centroid = (0.77534588721070941, -1.5918512982125479) +station = ('kbck', 0.0053867648845752998) +zone = ('wiz033', 0.0028272879183277762) + +[54761] +centroid = (0.77882274016031472, -1.6088153574898647) +station = ('krgk', 0.0038674792398380731) +zone = ('wiz026', 0.0023063263438826403) + +[54762] +centroid = (0.78969521637573592, -1.6055834265941917) +station = ('krpd', 0.0040314220052358653) +zone = ('wiz015', 0.0035723870101512928) + +[54763] +centroid = (0.78853738240325544, -1.6036388331014972) +station = ('krpd', 0.0043640136911646558) +zone = ('wiz025', 0.0040752357039223457) + +[54765] +centroid = (0.78835009112122389, -1.6002154221335878) +station = ('krpd', 0.0044769165631035933) +zone = ('wiz025', 0.0046733241972688275) + +[54766] +centroid = (0.7913447270517957, -1.5857720720817563) +station = ('krcx', 0.0032318527435435491) +zone = ('wiz016', 0.0041060979913362678) + +[54767] +centroid = (0.78232350412067253, -1.6103803593235431) +station = ('krgk', 0.0048924889954309646) +zone = ('wiz024', 0.0026400025590402319) + +[54768] +centroid = (0.78464924261541757, -1.5870244854464024) +station = ('keau', 0.007021425113418708) +zone = ('wiz027', 0.0047435815409327771) + +[54769] +centroid = (0.77714795711668605, -1.6099102723428107) +station = ('krgk', 0.003239589172096121) +zone = ('wiz026', 0.0031322852831728661) + +[54770] +centroid = (0.77751911883541514, -1.5947407431491021) +station = ('keau', 0.0057213725998679571) +zone = ('wiz028', 0.003288699699094756) + +[54771] +centroid = (0.78429790783699105, -1.584977755285881) +station = ('keau', 0.0083829489958898284) +zone = ('wiz029', 0.0043145803293032654) + +[54772] +centroid = (0.78715389481178455, -1.6036383095027216) +station = ('klum', 0.00364086954532558) +zone = ('wiz025', 0.002693842113270842) + +[54773] +centroid = (0.77475153278723519, -1.5934223912453158) +station = ('kbck', 0.0060858914732424985) +zone = ('wiz033', 0.0016893078744385085) + +[54801] +centroid = (0.80073718151481821, -1.6047040075439893) +station = ('kube', 0.0066373996453821752) +zone = ('wiz007', 0.0018755274298917382) + +[54805] +centroid = (0.79258984494016849, -1.6061116155857227) +station = ('kube', 0.0015885502010724295) +zone = ('wiz015', 0.0021539117302571309) + +[54806] +centroid = (0.8125116787942549, -1.5860123515598785) +station = ('kasx', 0.00054178430227969218) +zone = ('wiz002', 0.0039804204773249332) + +[54810] +centroid = (0.79337580160892651, -1.6122376863536378) +station = ('koeo', 0.004656327931862536) +zone = ('wiz014', 0.00082348311151893869) + +[54812] +centroid = (0.79224906940371653, -1.6036524292163701) +station = ('krpd', 0.0014069020259696765) +zone = ('wiz015', 0.00068749082351583952) + +[54813] +centroid = (0.79679409876212759, -1.6064850462324796) +station = ('kube', 0.0027519995995666851) +zone = ('wiz015', 0.0046646722033612704) + +[54814] +centroid = (0.81791794087206249, -1.5865245533354613) +station = ('kasx', 0.0054703227201662059) +zone = ('wiz002', 0.0069200124976959692) + +[54817] +centroid = (0.79708708718365984, -1.5977888734212475) +station = ('krpd', 0.0051958312653813121) +zone = ('wiz007', 0.004992046632039236) + +[54819] +centroid = (0.79389650313796656, -1.5935779524415459) +station = ('krcx', 0.0037356975009128161) +zone = ('wiz016', 0.0021172253439248785) + +[54820] +centroid = (0.81284391967066472, -1.5981114975334787) +station = ('ksuw', 0.006669601420659913) +zone = ('wiz001', 0.0048739528353514434) + +[54821] +centroid = (0.80663810480922604, -1.5911497980262939) +station = ('khyr', 0.0049002187457191648) +zone = ('wiz002', 0.0053766345984030154) + +[54822] +centroid = (0.79239583414051673, -1.6003694125334913) +station = ('krpd', 0.0010153538604384328) +zone = ('wiz015', 0.0019284156134846467) + +[54824] +centroid = (0.7938580360812526, -1.6151257175734977) +station = ('koeo', 0.0035821154790413633) +zone = ('wiz014', 0.0012722183638426052) + +[54826] +centroid = (0.79404174943831751, -1.6084896615981499) +station = ('kube', 0.0020773389999149379) +zone = ('wiz015', 0.0040093560250755176) + +[54827] +centroid = (0.81660653537869909, -1.5899385395254098) +station = ('kasx', 0.0046822082135733294) +zone = ('wiz002', 0.0047727424806824157) + +[54828] +centroid = (0.80007613806062539, -1.5933852157322481) +station = ('khyr', 0.0036023108052145934) +zone = ('wiz008', 0.0019410508471371048) + +[54829] +centroid = (0.79528807160387416, -1.6065274577333029) +station = ('kube', 0.001357559117283257) +zone = ('wiz015', 0.003483390974924045) + +[54830] +centroid = (0.8047017492706009, -1.6096418232505616) +station = ('krzn', 0.0052545001561439403) +zone = ('wiz006', 0.0045821426863813346) + +[54832] +centroid = (0.80842406532620681, -1.5942437955511817) +station = ('khyr', 0.0054364979936734762) +zone = ('wiz002', 0.0039663168158493353) + +[54835] +centroid = (0.79746887795753363, -1.5925620835504226) +station = ('krcx', 0.0045453946570179716) +zone = ('wiz008', 0.0035163883111926919) + +[54836] +centroid = (0.81078289526356961, -1.6091070194611654) +station = ('ksuw', 0.0042792458982133397) +zone = ('wiz001', 0.0033965156728229017) + +[54837] +centroid = (0.79716663929096576, -1.6119461116487996) +station = ('krzn', 0.0025979582556719407) +zone = ('wiz006', 0.0032906836316965457) + +[54838] +centroid = (0.80736670995876347, -1.6025412129882104) +station = ('khyr', 0.006143601683798767) +zone = ('wiz001', 0.0032196164474570677) + +[54839] +centroid = (0.80916216506687511, -1.5906927661083667) +station = ('kasx', 0.0042455444535320543) +zone = ('wiz002', 0.002928748663977394) + +[54840] +centroid = (0.79851015884256593, -1.6177872748696192) +station = ('kros', 0.0033090750626292892) +zone = ('mnz053', 0.0050789503905763565) + +[54841] +centroid = (0.79598650001064475, -1.6018389448570853) +station = ('kube', 0.0031843982359875248) +zone = ('wiz015', 0.0033037836970203232) + +[54842] +centroid = (0.8116717739983178, -1.6031663724729823) +station = ('ksuw', 0.0043174960823230508) +zone = ('wiz001', 0.0014866073714035074) + +[54843] +centroid = (0.80330415941877387, -1.5934302277736569) +station = ('khyr', 0.0018634048379501328) +zone = ('wiz008', 0.0031456787014458275) + +[54844] +centroid = (0.81689865113560534, -1.5923174931090482) +station = ('kasx', 0.0058428782711485681) +zone = ('wiz002', 0.0049153365210870955) + +[54845] +centroid = (0.79931400513615702, -1.6090853773784406) +station = ('krzn', 0.0022189302644082839) +zone = ('wiz006', 0.002401980977128374) + +[54846] +centroid = (0.80945431573036641, -1.5833668512928754) +station = ('kasx', 0.0038151265137651878) +zone = ('wiz003', 0.001219281140492855) + +[54847] +centroid = (0.81296260205980031, -1.5952283183289393) +station = ('kasx', 0.0058206215117989875) +zone = ('wiz002', 0.0025784551386450294) + +[54848] +centroid = (0.79440474301614727, -1.5900616550508453) +station = ('krcx', 0.0013108856040219225) +zone = ('wiz016', 0.00079927475469762513) + +[54849] +centroid = (0.81124971847860061, -1.6009151595372975) +station = ('kdyt', 0.0056715658449567469) +zone = ('wiz001', 0.0024362771022529649) + +[54850] +centroid = (0.81926880825981374, -1.5807591897640558) +station = ('kasx', 0.0079745108179898778) +zone = ('wiz002', 0.010469441949677081) + +[54853] +centroid = (0.79542659838660501, -1.6131942838633635) +station = ('krzn', 0.0043865865792621552) +zone = ('wiz014', 0.0019810897143360856) + +[54854] +centroid = (0.814194629978783, -1.5998826227518175) +station = ('ksuw', 0.0051751695407888194) +zone = ('wiz001', 0.0048465146222891964) + +[54855] +centroid = (0.8094493589952908, -1.5853005190244525) +station = ('kasx', 0.003173072668400737) +zone = ('wiz003', 0.0021477148727052481) + +[54856] +centroid = (0.81057884882071884, -1.5905064871173014) +station = ('kasx', 0.0031672399938911678) +zone = ('wiz002', 0.0016583368888860727) + +[54857] +centroid = (0.79580629476537634, -1.5988212705803873) +station = ('krpd', 0.0037282983106273196) +zone = ('wiz015', 0.0042284288425622086) + +[54858] +centroid = (0.79446308937304144, -1.613693797095284) +station = ('koeo', 0.0046500173633450071) +zone = ('wiz014', 0.0010317834727999787) + +[54859] +centroid = (0.80499826325722212, -1.6022760102083697) +station = ('khyr', 0.0046671708386374303) +zone = ('wiz007', 0.0039072708296287355) + +[54861] +centroid = (0.81358472467167364, -1.582257520020308) +station = ('kasx', 0.0033185253990998028) +zone = ('wiz003', 0.0052452980954692512) + +[54862] +centroid = (0.79898905973602063, -1.590734636557122) +station = ('krcx', 0.0052189493646606043) +zone = ('wiz008', 0.0017682259994727955) + +[54864] +centroid = (0.81355650269766888, -1.6020487334331752) +station = ('ksuw', 0.0038793359669885958) +zone = ('wiz001', 0.0035157555293056355) + +[54865] +centroid = (0.81576195310036648, -1.5947944469301858) +station = ('kasx', 0.0064126374767909328) +zone = ('wiz002', 0.0043046692402152319) + +[54867] +centroid = (0.79975422953338748, -1.5917848535279246) +station = ('khyr', 0.0045283283778388859) +zone = ('wiz008', 0.001224873242945733) + +[54868] +centroid = (0.79457269605006664, -1.6005986615307408) +station = ('krpd', 0.0020447461963241788) +zone = ('wiz015', 0.0024763462934442536) + +[54870] +centroid = (0.79777717291660588, -1.6017784517452112) +station = ('kube', 0.0044969229673200726) +zone = ('wiz007', 0.0033224837078664475) + +[54871] +centroid = (0.79848174488234347, -1.605738219845551) +station = ('kube', 0.0043594060229888666) +zone = ('wiz007', 0.0036603485503539346) + +[54872] +centroid = (0.79896059341592063, -1.6127141612394322) +station = ('krzn', 0.00087337020643902792) +zone = ('wiz006', 0.0015510627490928281) + +[54873] +centroid = (0.80879334208934373, -1.6003230914951434) +station = ('khyr', 0.0063615724130052492) +zone = ('wiz001', 0.0031139259740739153) + +[54874] +centroid = (0.81272202587570541, -1.60470470567569) +station = ('ksuw', 0.0028306948311722759) +zone = ('wiz001', 0.002374085411975267) + +[54875] +centroid = (0.80225181314628391, -1.6003310851031174) +station = ('khyr', 0.0030691610432685935) +zone = ('wiz007', 0.0016686646167610889) + +[54876] +centroid = (0.79998984898240666, -1.5968630460662345) +station = ('khyr', 0.0031964479902523561) +zone = ('wiz008', 0.0043087253759552697) + +[54880] +centroid = (0.81316415268182052, -1.6079423437980171) +station = ('ksuw', 0.0017715530785087715) +zone = ('wiz001', 0.0037919678898340873) + +[54888] +centroid = (0.8024119471051544, -1.6033808385314674) +station = ('khyr', 0.0051080657782448203) +zone = ('wiz007', 0.0016070811420101873) + +[54889] +centroid = (0.79264325201527952, -1.6086718390654733) +station = ('kube', 0.0026564582652218467) +zone = ('wiz015', 0.0039440363488954999) + +[54891] +centroid = (0.81506160483141876, -1.5876359440965462) +station = ('kasx', 0.0026739264727646444) +zone = ('wiz002', 0.0041678452504558686) + +[54893] +centroid = (0.80073623903702218, -1.6113904686281346) +station = ('krzn', 0.0011302989292136787) +zone = ('wiz006', 0.00057979346629351367) + +[54895] +centroid = (0.79324235373431906, -1.5962916950823016) +station = ('krpd', 0.0038704069519334573) +zone = ('wiz016', 0.0040361380840851467) + +[54896] +centroid = (0.79966052280584787, -1.5861857151144791) +station = ('krcx', 0.0057777499672127756) +zone = ('wiz008', 0.0033796085846114067) + +[54901] +centroid = (0.76904243863091415, -1.5452393658381887) +station = ('kosh', 0.0016889169234980711) +zone = ('wiz048', 0.0013698062190488382) + +[54902] +centroid = (0.76701801377823342, -1.5453194939041475) +station = ('kosh', 0.0003660315766120571) +zone = ('wiz048', 0.0024998089151703992) + +[54904] +centroid = (0.76835327792247177, -1.5467777863073591) +station = ('kosh', 0.001356467920861608) +zone = ('wiz048', 0.0008357437127320379) + +[54909] +centroid = (0.77284406244773074, -1.5597560895317737) +station = ('ky50', 0.0042506424103361928) +zone = ('wiz045', 0.0033144418186985816) + +[54911] +centroid = (0.77285854868052228, -1.5425394985649861) +station = ('katw', 0.0017826697581065031) +zone = ('wiz038', 0.0025714815614279194) + +[54913] +centroid = (0.77380910735103592, -1.5428705351642116) +station = ('katw', 0.0020923859632551254) +zone = ('wiz038', 0.0016157742639736591) + +[54914] +centroid = (0.7728464360955134, -1.5437792059326776) +station = ('katw', 0.00097071573019921742) +zone = ('wiz038', 0.0023662056519131989) + +[54915] +centroid = (0.77218842951421895, -1.5421041261830761) +station = ('katw', 0.0020115870170715447) +zone = ('wiz049', 0.0033055815562039932) + +[54921] +centroid = (0.77309807766706584, -1.5631019206144321) +station = ('kste', 0.0043736640274356156) +zone = ('wiz036', 0.0032354568123403884) + +[54922] +centroid = (0.77745379116151303, -1.5491915941161596) +station = ('kcli', 0.0012646269272696454) +zone = ('wiz037', 0.0028372709665445612) + +[54923] +centroid = (0.76790572314238281, -1.5527641434686517) +station = ('ky50', 0.0043051571993747515) +zone = ('wiz047', 0.0035837417915995191) + +[54927] +centroid = (0.76974479402850171, -1.5473106353279928) +station = ('kosh', 0.0027179868588242577) +zone = ('wiz048', 0.00060981583234697313) + +[54928] +centroid = (0.78097371883705768, -1.551154984804898) +station = ('kcli', 0.0029183692827970112) +zone = ('wiz031', 0.0015429968520952562) + +[54929] +centroid = (0.77905364722035364, -1.5487917391845278) +station = ('kcli', 0.00040624319563415003) +zone = ('wiz031', 0.0026853544486987956) + +[54930] +centroid = (0.76851423218609061, -1.563034550905305) +station = ('ky50', 0.0031509911188098293) +zone = ('wiz044', 0.002918436402283525) + +[54931] +centroid = (0.77273588694069195, -1.547742831210664) +station = ('katw', 0.0020752404862724853) +zone = ('wiz048', 0.0036144281080962102) + +[54932] +centroid = (0.76501266537427703, -1.5462037475163779) +station = ('kfld', 0.0017714218078476915) +zone = ('wiz051', 0.0018835926172614057) + +[54933] +centroid = (0.77964683227322895, -1.5481628970550341) +station = ('kcli', 0.0010477836076079059) +zone = ('wiz031', 0.002211913913401975) + +[54934] +centroid = (0.76799668970299673, -1.5505376793017602) +station = ('kosh', 0.0036874467166145663) +zone = ('wiz048', 0.0026999970992470984) + +[54935] +centroid = (0.76399449264854102, -1.5435130257684557) +station = ('kfld', 0.00059926592974024386) +zone = ('wiz051', 0.0007366325870636249) + +[54937] +centroid = (0.76431455112677171, -1.5426700317397426) +station = ('kfld', 0.0012744105341684169) +zone = ('wiz051', 0.0014242528720298849) + +[54940] +centroid = (0.77179105295012496, -1.550595205353906) +station = ('kpcz', 0.0029265098042594293) +zone = ('wiz048', 0.0036243366838826217) + +[54941] +centroid = (0.76523442690903543, -1.5532188017387962) +station = ('ky50', 0.005207138495681528) +zone = ('wiz047', 0.0010155321417911355) + +[54942] +centroid = (0.77307802383396051, -1.5454430108553112) +station = ('katw', 0.00086011036238345156) +zone = ('wiz038', 0.0023648125846471796) + +[54943] +centroid = (0.77026291247024881, -1.5636476327116531) +station = ('ky50', 0.0039240557107743717) +zone = ('wiz044', 0.0036364278527988812) + +[54944] +centroid = (0.77361172806592782, -1.5468322056734363) +station = ('katw', 0.0018968288257885939) +zone = ('wiz038', 0.0025755362068407188) + +[54945] +centroid = (0.77795686486510784, -1.5557305050653414) +station = ('kpcz', 0.0044545190865588327) +zone = ('wiz037', 0.0027978066834028733) + +[54946] +centroid = (0.77381973640618051, -1.5558632897148332) +station = ('kpcz', 0.0016127726116833821) +zone = ('wiz037', 0.003235453314268217) + +[54947] +centroid = (0.77149825651481041, -1.5480852124500279) +station = ('katw', 0.00241700381741186) +zone = ('wiz048', 0.0024467451959114639) + +[54948] +centroid = (0.78156939971076334, -1.5511237608645798) +station = ('kcli', 0.003398355633097119) +zone = ('wiz031', 0.0013369038683850362) + +[54949] +centroid = (0.7763920550176473, -1.5518679692576303) +station = ('kpcz', 0.0029045574903742207) +zone = ('wiz037', 0.00065834041960939236) + +[54950] +centroid = (0.77941548888087708, -1.5519129812990393) +station = ('kcli', 0.0024386473161503866) +zone = ('wiz031', 0.0029800777245043682) + +[54952] +centroid = (0.77145368080571441, -1.5416403223876509) +station = ('katw', 0.0024921746431049966) +zone = ('wiz049', 0.0025076071861373042) + +[54956] +centroid = (0.77112725187571385, -1.5450976451029266) +station = ('katw', 0.0011887977905345776) +zone = ('wiz048', 0.0024636020267830689) + +[54960] +centroid = (0.76693097420843637, -1.5571664747074196) +station = ('ky50', 0.0020405695002273902) +zone = ('wiz045', 0.0030027954908694822) + +[54961] +centroid = (0.77510335625785221, -1.5491837401345256) +station = ('kpcz', 0.0034342036130053473) +zone = ('wiz037', 0.0027407639782965083) + +[54962] +centroid = (0.77643045226119112, -1.5538835801975883) +station = ('kpcz', 0.0026701473666399652) +zone = ('wiz037', 0.00086889152938627332) + +[54963] +centroid = (0.76871620168713128, -1.5494874274243726) +station = ('kosh', 0.0031783398759884932) +zone = ('wiz048', 0.0017411307277721286) + +[54964] +centroid = (0.76657730068881236, -1.5484040841043671) +station = ('kosh', 0.0022411443975517294) +zone = ('wiz048', 0.002726209173639704) + +[54965] +centroid = (0.77087655278195755, -1.554109006923776) +station = ('kpcz', 0.0029129711467852436) +zone = ('wiz045', 0.0026703046650868997) + +[54966] +centroid = (0.77161039391925101, -1.5621549922287623) +station = ('ky50', 0.0038688814537297706) +zone = ('wiz045', 0.0036907155251371319) + +[54967] +centroid = (0.77015658701221723, -1.5529189367200111) +station = ('kpcz', 0.0036446597284587167) +zone = ('wiz048', 0.0042710014463029806) + +[54968] +centroid = (0.76527558177279731, -1.5557142560500055) +station = ('ky50', 0.0039989387910765528) +zone = ('wiz047', 0.0014053854705772452) + +[54970] +centroid = (0.76921461536162339, -1.5550566683477314) +station = ('ky50', 0.0026443479824730023) +zone = ('wiz045', 0.0019459361100025883) + +[54971] +centroid = (0.76545112698896289, -1.5503628671238805) +station = ('kfld', 0.0046338693754359207) +zone = ('wiz047', 0.0028918765100134948) + +[54974] +centroid = (0.76423754720017367, -1.5474693381168765) +station = ('kfld', 0.0022991410348840095) +zone = ('wiz051', 0.0022871351741784447) + +[54977] +centroid = (0.77599385814880484, -1.5563312648471703) +station = ('kpcz', 0.002956034994183592) +zone = ('wiz037', 0.0025760916856892532) + +[54979] +centroid = (0.76571976806743003, -1.5452512340771021) +station = ('kosh', 0.0016522308200309773) +zone = ('wiz051', 0.0021622547458967356) + +[54980] +centroid = (0.76765835762749757, -1.5492814262127597) +station = ('kosh', 0.0027450734919100693) +zone = ('wiz048', 0.002141898633945068) + +[54981] +centroid = (0.77357640260186744, -1.555638212054496) +station = ('kpcz', 0.0014636349006587872) +zone = ('wiz037', 0.00331217220247851) + +[54982] +centroid = (0.76921456300174573, -1.5584198829097393) +station = ('ky50', 0.00057314614027659694) +zone = ('wiz045', 0.00092615368360292869) + +[54983] +centroid = (0.77351833549765359, -1.5521748505000086) +station = ('kpcz', 0.0010562403530744115) +zone = ('wiz037', 0.0026660968174686234) + +[54984] +centroid = (0.77127087501986047, -1.5572430946615823) +station = ('ky50', 0.0027944061577535057) +zone = ('wiz045', 0.0013737849468392759) + +[54985] +centroid = (0.76925501973380706, -1.5449387328745323) +station = ('kosh', 0.0019328687083773424) +zone = ('wiz048', 0.0015852898923310928) + +[54986] +centroid = (0.77009689675179904, -1.5489780705354705) +station = ('katw', 0.0036620634718655021) +zone = ('wiz048', 0.0016259846238070546) + +[55001] +centroid = (0.78363147131540956, -1.6199990433642089) +station = ('k21d', 0.0018074313644401766) +zone = ('mnz063', 0.0025632136863473582) + +[55003] +centroid = (0.78560105792299273, -1.6193018715944998) +station = ('k21d', 0.00089737282091361271) +zone = ('mnz063', 0.0013733528585851394) + +[55005] +centroid = (0.79231153473764548, -1.6269691204518033) +station = ('kcbg', 0.0030347067305703428) +zone = ('mnz061', 0.0021723412793244554) + +[55006] +centroid = (0.79828333585297684, -1.6266283449153514) +station = ('kjmr', 0.0027278474225743191) +zone = ('mnz052', 0.0033011277553497117) + +[55007] +centroid = (0.8023506162352394, -1.6252125512794262) +station = ('kjmr', 0.002387252768532965) +zone = ('mnz045', 0.0021793439853487286) + +[55008] +centroid = (0.7953375691414607, -1.6279848148100013) +station = ('kcbg', 0.00013163313020812166) +zone = ('mnz052', 0.0002659940509096171) + +[55009] +centroid = (0.77633355158112038, -1.6209044503669736) +station = ('ksyn', 0.0018097254007963216) +zone = ('mnz078', 0.0022242350623749223) + +[55011] +centroid = (0.79134519829069372, -1.627577350242831) +station = ('kane', 0.003359360798022841) +zone = ('mnz061', 0.0011818457225071092) + +[55012] +centroid = (0.79304418905104768, -1.6194580785625532) +station = ('koeo', 0.0025599783434698889) +zone = ('mnz053', 0.0018514632186801528) + +[55013] +centroid = (0.79130557931667356, -1.6215054894014829) +station = ('koeo', 0.0026944061438196926) +zone = ('mnz053', 0.0028630808113104061) + +[55014] +centroid = (0.78822114619608663, -1.6253898767314288) +station = ('kane', 0.0011106123421513521) +zone = ('mnz061', 0.0024297483588428793) + +[55016] +centroid = (0.78221627109142999, -1.6220151429963576) +station = ('ksgs', 0.0013970624060556055) +zone = ('mnz070', 0.0030198840450450528) + +[55017] +centroid = (0.7971321690382388, -1.630772192891899) +station = ('kcbg', 0.002773236435497848) +zone = ('mnz052', 0.0025903718005204006) + +[55018] +centroid = (0.77534457821377034, -1.6230894455108376) +station = ('ksyn', 0.00092926689821765346) +zone = ('mnz078', 0.0034205392688343122) + +[55019] +centroid = (0.77525977266541601, -1.6274885304371967) +station = ('kfbl', 0.001723493281331874) +zone = ('mnz077', 0.0012851432285016667) + +[55020] +centroid = (0.77798993885443313, -1.6296762133881093) +station = ('klvn', 0.0020251134858540027) +zone = ('mnz069', 0.0023822188002504659) + +[55021] +centroid = (0.77317605897804509, -1.6279946410136901) +station = ('kfbl', 0.00076596273201201147) +zone = ('mnz077', 0.00097937777488590352) + +[55024] +centroid = (0.778892099544789, -1.6253318445338001) +station = ('klvn', 0.0012844063349293023) +zone = ('mnz070', 0.0010690143601406877) + +[55025] +centroid = (0.78999181762881976, -1.6235383616477432) +station = ('kane', 0.0031047511532291704) +zone = ('mnz061', 0.0027632007731582314) + +[55026] +centroid = (0.77728431969114442, -1.6117418906730236) +station = ('krgk', 0.0019905645692992933) +zone = ('wiz024', 0.0033568450475004699) + +[55027] +centroid = (0.77505467902501413, -1.616350572189255) +station = ('krgk', 0.0035458525285722775) +zone = ('mnz078', 0.0014025335470699224) + +[55029] +centroid = (0.79653924578475133, -1.62661822200569) +station = ('kcbg', 0.0015034714630349716) +zone = ('mnz052', 0.0017879893690563151) + +[55030] +centroid = (0.80004357021678318, -1.6247168079586898) +station = ('kjmr', 0.002362057296925174) +zone = ('mnz045', 0.0030952332145433525) + +[55031] +centroid = (0.77864415807125076, -1.6225086697489439) +station = ('ksyn', 0.002493580814729618) +zone = ('mnz070', 0.0016367233441369551) + +[55032] +centroid = (0.79563057501628554, -1.6229495224647053) +station = ('kros', 0.0019974221713880956) +zone = ('mnz053', 0.0017580362310566085) + +[55033] +centroid = (0.78037018398171798, -1.6207689779104335) +station = ('ksgs', 0.0032928936313572025) +zone = ('mnz070', 0.002606807562109262) + +[55036] +centroid = (0.80060427469227879, -1.625242989821581) +station = ('kjmr', 0.0018662651684958232) +zone = ('mnz045', 0.0024763592308241836) + +[55037] +centroid = (0.80353250084481231, -1.6194046016742722) +station = ('k04w', 0.0013143708397971325) +zone = ('mnz038', 0.001521995198289598) + +[55038] +centroid = (0.78831818650249741, -1.6228355175579652) +station = ('k21d', 0.0033403040850529253) +zone = ('mnz063', 0.002553216342345262) + +[55040] +centroid = (0.79353375390623204, -1.6280464074793042) +station = ('kcbg', 0.0017623834435555406) +zone = ('mnz052', 0.0016745287995009676) + +[55041] +centroid = (0.77482483661581902, -1.6112912466601588) +station = ('krgk', 0.0039974665572399971) +zone = ('mnz079', 0.0022236042145306997) + +[55042] +centroid = (0.78518568701431046, -1.6215782870845834) +station = ('k21d', 0.00076559831512403704) +zone = ('mnz063', 0.00093623754788229869) + +[55043] +centroid = (0.78435285080184391, -1.6191244414227419) +station = ('k21d', 0.0014467529505293589) +zone = ('mnz063', 0.0022245588114885805) + +[55044] +centroid = (0.77915156019139054, -1.6279780080259187) +station = ('klvn', 0.00064885183517879406) +zone = ('mnz070', 0.0026663438652340383) + +[55045] +centroid = (0.79229785135630981, -1.6202765681685685) +station = ('koeo', 0.0023353246825863852) +zone = ('mnz053', 0.0020747117892546264) + +[55046] +centroid = (0.77565545626013566, -1.6305681639023408) +station = ('kfbl', 0.002323256580983197) +zone = ('mnz077', 0.0022119800794149496) + +[55047] +centroid = (0.78889630936392796, -1.6200273351513836) +station = ('koeo', 0.0024788883835986158) +zone = ('mnz063', 0.002934685959361855) + +[55049] +centroid = (0.77102151982962808, -1.6271837610432136) +station = ('kowa', 0.0010679636837418397) +zone = ('mnz085', 0.0026881032369354368) + +[55051] +centroid = (0.80161038719288347, -1.6284465591169093) +station = ('kjmr', 0.00083867405319602438) +zone = ('mnz045', 0.00030924102861942001) + +[55052] +centroid = (0.77197460922755723, -1.6309064087113774) +station = ('kfbl', 0.0023938582277237656) +zone = ('mnz077', 0.0028315902029873983) + +[55053] +centroid = (0.77399304760090359, -1.6242249043623078) +station = ('ksyn', 0.0023163339701755357) +zone = ('mnz077', 0.0029404715480002108) + +[55054] +centroid = (0.77789614486043102, -1.6292727805315106) +station = ('klvn', 0.0018234020090654721) +zone = ('mnz069', 0.0026762554175751604) + +[55055] +centroid = (0.78320704214790948, -1.6231333754481105) +station = ('ksgs', 0.00051795791582199613) +zone = ('mnz062', 0.0027830957807044826) + +[55056] +centroid = (0.79427461126711862, -1.6223513283168769) +station = ('kros', 0.0033069354088194934) +zone = ('mnz053', 0.00056759981884887099) + +[55057] +centroid = (0.77615509166510399, -1.6262304622057744) +station = ('ksyn', 0.0019948920245645091) +zone = ('mnz077', 0.0025251324448739669) + +[55060] +centroid = (0.76897681425103914, -1.6270567010736685) +station = ('kowa', 0.0010578657760903513) +zone = ('mnz085', 0.00064351086500816289) + +[55063] +centroid = (0.80003404071906725, -1.6214614547444548) +station = ('kros', 0.0025273903846434443) +zone = ('mnz038', 0.0053009281067690726) + +[55065] +centroid = (0.77755741135920398, -1.6235917512695617) +station = ('ksyn', 0.0013219686302884891) +zone = ('mnz070', 0.002172102765353766) + +[55066] +centroid = (0.77687964765077688, -1.6151125403376452) +station = ('krgk', 0.0015182146039006141) +zone = ('mnz078', 0.0028962649315401961) + +[55068] +centroid = (0.78078204677860352, -1.624251799886081) +station = ('ksgs', 0.0021564147236699553) +zone = ('mnz070', 0.0011126068036961913) + +[55069] +centroid = (0.79751060877994884, -1.6225402776616977) +station = ('kros', 0.00015879204845870183) +zone = ('mnz053', 0.003412420029018239) + +[55070] +centroid = (0.79255457183598566, -1.6299103667605566) +station = ('kcbg', 0.0031049828423636333) +zone = ('mnz052', 0.0028722926822221276) + +[55071] +centroid = (0.78228749797820385, -1.6231352254971174) +station = ('ksgs', 0.00074810627829150606) +zone = ('mnz070', 0.0027453630032058182) + +[55072] +centroid = (0.80450667382010543, -1.6148947930601665) +station = ('k04w', 0.0045903800704984055) +zone = ('mnz038', 0.0026377082113950476) + +[55073] +centroid = (0.79015476156778608, -1.6199250937638019) +station = ('koeo', 0.0016575055162026317) +zone = ('mnz053', 0.0041738646801205313) + +[55074] +centroid = (0.79216618371753944, -1.6182698409545031) +station = ('koeo', 0.001430002467748899) +zone = ('mnz053', 0.0030534748863371521) + +[55075] +centroid = (0.78344386587411274, -1.6238630103419067) +station = ('ksgs', 0.00054605659584101894) +zone = ('mnz062', 0.0023673183359313207) + +[55076] +centroid = (0.78253697534148392, -1.6237177465882631) +station = ('ksgs', 0.00036932131543796696) +zone = ('mnz070', 0.0028967609974007509) + +[55077] +centroid = (0.7822430793487406, -1.6243603768188475) +station = ('ksgs', 0.00080040950247385633) +zone = ('mnz070', 0.0025734304902011924) + +[55079] +centroid = (0.79271924365091129, -1.6237739287368849) +station = ('kcbg', 0.0038218784348269018) +zone = ('mnz053', 0.0021262117700198515) + +[55080] +centroid = (0.79702935169200384, -1.6270348495514335) +station = ('kcbg', 0.0018235466574423036) +zone = ('mnz052', 0.0020363618717883767) + +[55082] +centroid = (0.78667476702552697, -1.6203512159006763) +station = ('k21d', 0.0012834243180146366) +zone = ('mnz063', 0.00082000259307604619) + +[55084] +centroid = (0.79347189943754148, -1.6182033962698794) +station = ('koeo', 0.0027066141651338276) +zone = ('mnz053', 0.0024514528759353505) + +[55085] +centroid = (0.77963464987505005, -1.6225179723538572) +station = ('ksgs', 0.0033825507652150721) +zone = ('mnz070', 0.0012686065325227284) + +[55087] +centroid = (0.77228271220041167, -1.6300481605050017) +station = ('kfbl', 0.0017734011199683176) +zone = ('mnz077', 0.0022138976337590169) + +[55088] +centroid = (0.77708317049485209, -1.6298487566379614) +station = ('klvn', 0.0026532011760003692) +zone = ('mnz069', 0.0028856189056977212) + +[55089] +centroid = (0.77813373653150497, -1.6182067298487508) +station = ('krgk', 0.0028649287788279701) +zone = ('mnz078', 0.0030357060699364381) + +[55090] +centroid = (0.78632899984741444, -1.6224150677411597) +station = ('k21d', 0.0016205285699127919) +zone = ('mnz063', 0.00094518646644654327) + +[55092] +centroid = (0.79122974476067431, -1.6248983222008972) +station = ('kane', 0.0035198295701000136) +zone = ('mnz061', 0.0020901297415915638) + +[55101] +centroid = (0.78455138200425822, -1.6247383278683667) +station = ('kstp', 0.0005937305966548181) +zone = ('mnz062', 0.0011503165294796966) + +[55102] +centroid = (0.78420669693028178, -1.625276151077369) +station = ('kstp', 0.00088344060319156623) +zone = ('mnz062', 0.0015146181231169694) + +[55103] +centroid = (0.78477434781620048, -1.6252964492565696) +station = ('kstp', 0.0010469632200091313) +zone = ('mnz062', 0.00096580146972915473) + +[55104] +centroid = (0.78459354915898638, -1.6260265204826787) +station = ('kstp', 0.0014587903731002553) +zone = ('mnz062', 0.001364446034743703) + +[55105] +centroid = (0.78430174756134541, -1.6260932269666899) +station = ('kmsp', 0.001368367134580937) +zone = ('mnz062', 0.0016336557709884898) + +[55106] +centroid = (0.78476193852521881, -1.624020526306899) +station = ('kstp', 0.00052736101738242065) +zone = ('mnz062', 0.0011192244151730516) + +[55107] +centroid = (0.78419385130698727, -1.624538505122306) +station = ('kstp', 0.00036308857741254163) +zone = ('mnz062', 0.001523319438009532) + +[55108] +centroid = (0.78509241661908391, -1.6262084361506142) +station = ('kstp', 0.0017648163259306854) +zone = ('mnz062', 0.0011103149529445289) + +[55109] +centroid = (0.78565212625690595, -1.6236018741792233) +station = ('kstp', 0.0014493432588268821) +zone = ('mnz062', 0.00091242657193068243) + +[55110] +centroid = (0.78696744128779406, -1.6232617618678873) +station = ('k21d', 0.0024830776779644977) +zone = ('mnz062', 0.0017145930020495005) + +[55111] +centroid = (0.78327374863192079, -1.6265693178800489) +station = ('kmsp', 0.00033054082690673952) +zone = ('mnz062', 0.0026983551533668105) + +[55112] +centroid = (0.78682699464288597, -1.6264809344067281) +station = ('kane', 0.0012320820588819486) +zone = ('mnz062', 0.0015935566650460992) + +[55113] +centroid = (0.78561102375302161, -1.6257948978376466) +station = ('kstp', 0.0018588769680021571) +zone = ('mnz062', 0.0006446525334321562) + +[55114] +centroid = (0.78481679422360895, -1.6265608530331768) +station = ('kmsp', 0.0017660205209713896) +zone = ('mnz062', 0.001472609801554484) + +[55115] +centroid = (0.78658329431942997, -1.6223435965082904) +station = ('k21d', 0.001741353571324687) +zone = ('mnz063', 0.0010010692900127979) + +[55116] +centroid = (0.7838399159879752, -1.6261159511535508) +station = ('kmsp', 0.00096443376666993565) +zone = ('mnz062', 0.0020490123079560441) + +[55117] +centroid = (0.78546033202540433, -1.6247493408959468) +station = ('kstp', 0.0013274858611304154) +zone = ('mnz062', 0.00025664813198173002) + +[55118] +centroid = (0.7835536121774781, -1.6249180618747372) +station = ('kstp', 0.00092751276332449131) +zone = ('mnz062', 0.0021430876975081373) + +[55119] +centroid = (0.7843059538048428, -1.623285393625959) +station = ('kstp', 0.00053112248577651187) +zone = ('mnz062', 0.0017955625436653366) + +[55120] +centroid = (0.78321622257977508, -1.6258107279739622) +station = ('kmsp', 0.00081180475834136232) +zone = ('mnz062', 0.0025643778566404505) + +[55121] +centroid = (0.78271979858063034, -1.6258603302313037) +station = ('kmsp', 0.00084065808641023009) +zone = ('mnz062', 0.003054879957175495) + +[55122] +centroid = (0.78202678069454101, -1.6266702328173994) +station = ('kmsp', 0.0010613677141517346) +zone = ('mnz070', 0.0028959072293473823) + +[55123] +centroid = (0.78206341515554034, -1.62557259525082) +station = ('kmsp', 0.0013972988939044812) +zone = ('mnz070', 0.0025581425397296804) + +[55124] +centroid = (0.78085091747088742, -1.6265393854833774) +station = ('klvn', 0.0019949588259141103) +zone = ('mnz070', 0.0019812092780364483) + +[55125] +centroid = (0.78396753446288103, -1.622078934780518) +station = ('kstp', 0.001406194452813003) +zone = ('mnz063', 0.0022038322991940439) + +[55126] +centroid = (0.78687209395075741, -1.6254742983073478) +station = ('kane', 0.0015412155933149916) +zone = ('mnz062', 0.0012456052539293336) + +[55127] +centroid = (0.78686261681291925, -1.6245565343734791) +station = ('kane', 0.0020381795898867959) +zone = ('mnz062', 0.0011897127821349836) + +[55128] +centroid = (0.78518080009240498, -1.6225200842022522) +station = ('kstp', 0.0014265558917629017) +zone = ('mnz063', 0.0013230973291564509) + +[55129] +centroid = (0.78336440103326943, -1.6212846528912279) +station = ('k21d', 0.0021012719206652073) +zone = ('mnz063', 0.0027044418587533901) + +[55130] +centroid = (0.78493149726205003, -1.6245892942035389) +station = ('kstp', 0.00080183867811767944) +zone = ('mnz062', 0.00079431991898457706) + +[55150] +centroid = (0.78341965815738757, -1.6260433629099607) +station = ('kmsp', 0.0007233321551199408) +zone = ('mnz062', 0.0024185831422786509) + +[55155] +centroid = (0.78463061995229877, -1.6245980732096765) +station = ('kstp', 0.0005649185641210052) +zone = ('mnz062', 0.0010859493662923217) + +[55301] +centroid = (0.78973633633291285, -1.6346722358252355) +station = ('kcfe', 0.0027434977746666183) +zone = ('mnz051', 0.0036881561769798285) + +[55302] +centroid = (0.78970090614909749, -1.6426538882939934) +station = ('kmgg', 0.0016272035441108725) +zone = ('mnz059', 0.0022800838985671712) + +[55303] +centroid = (0.79042961601839001, -1.630680318760074) +station = ('kane', 0.0035741572675992922) +zone = ('mnz061', 0.002283469873675796) + +[55304] +centroid = (0.78979838278782122, -1.6278844060181341) +station = ('kane', 0.0019029609565356937) +zone = ('mnz061', 0.00047546638801403455) + +[55305] +centroid = (0.78463683332443579, -1.6306264404460651) +station = ('kmic', 0.0021521513069692956) +zone = ('mnz060', 0.0010335132757661638) + +[55306] +centroid = (0.78070225032520246, -1.6282417621824801) +station = ('klvn', 0.0019646209442517552) +zone = ('mnz070', 0.0029850848920410567) + +[55307] +centroid = (0.77841171512147012, -1.6425505822555677) +station = ('kgyl', 0.0027552334172652711) +zone = ('mnz067', 0.0015433504756708393) + +[55308] +centroid = (0.79310195944928863, -1.6376778847833875) +station = ('kstc', 0.003271699941728465) +zone = ('mnz051', 0.00070585859017611205) + +[55309] +centroid = (0.79199151116599986, -1.6361473008425587) +station = ('kpnm', 0.0034867480858739165) +zone = ('mnz051', 0.0012119026046603211) + +[55310] +centroid = (0.78119394448207424, -1.6559816413412425) +station = ('kovl', 0.0019141524578743109) +zone = ('mnz065', 0.0009982505998741573) + +[55311] +centroid = (0.78725524608144781, -1.6318309968826212) +station = ('kmic', 0.0019399933770139527) +zone = ('mnz060', 0.0017959456127585891) + +[55312] +centroid = (0.78027282951604171, -1.6467406640040008) +station = ('khcd', 0.0028262400779792626) +zone = ('mnz066', 0.0022664974866697211) + +[55313] +centroid = (0.7884466252821517, -1.6380168975372948) +station = ('kcfe', 0.00029408881024976693) +zone = ('mnz059', 0.0013724858618055598) + +[55314] +centroid = (0.78154133481639132, -1.6509021398059933) +station = ('khcd', 0.0029779418908256684) +zone = ('mnz066', 0.0040057207133001298) + +[55315] +centroid = (0.78053037030046613, -1.6351810516620695) +station = ('kfcm', 0.0033321267658949958) +zone = ('mnz068', 0.00223760422746063) + +[55316] +centroid = (0.78841023516724762, -1.6299149918830744) +station = ('kmic', 0.0019045937618465904) +zone = ('mnz061', 0.0024662162666464075) + +[55317] +centroid = (0.78293208297755046, -1.6327591629788318) +station = ('kfcm', 0.0010917751407421776) +zone = ('mnz060', 0.002701448408809664) + +[55318] +centroid = (0.7820957386532873, -1.6342608268139553) +station = ('kfcm', 0.0020884541274793071) +zone = ('mnz068', 0.0020657666342961466) + +[55319] +centroid = (0.79369311992023162, -1.6396295992194301) +station = ('kstc', 0.0018402792648209187) +zone = ('mnz051', 0.0021443055664333026) + +[55320] +centroid = (0.79231544427516998, -1.6421113876025959) +station = ('kstc', 0.0027180834618424667) +zone = ('mnz059', 0.0041658585315004744) + +[55321] +centroid = (0.78692687983597764, -1.6439806875913594) +station = ('kmgg', 0.0036395777370183896) +zone = ('mnz059', 0.0032094292388189566) + +[55322] +centroid = (0.78141668340121384, -1.6368921375541396) +station = ('kgyl', 0.003654881918011099) +zone = ('mnz068', 0.00087513415482942181) + +[55324] +centroid = (0.78632008121493668, -1.6478987946824541) +station = ('kljf', 0.0013488608589892702) +zone = ('mnz058', 0.0018258071568120308) + +[55325] +centroid = (0.78686809714677042, -1.6461448435039547) +station = ('kljf', 0.0023529708791649147) +zone = ('mnz058', 0.0026774566249471656) + +[55327] +centroid = (0.78881438360883938, -1.6314605158423006) +station = ('kmic', 0.0027338481806560831) +zone = ('mnz061', 0.0031269208517308673) + +[55328] +centroid = (0.78595317809958243, -1.6373339502009894) +station = ('kcfe', 0.0022502023772740533) +zone = ('mnz059', 0.0030978049392352291) + +[55329] +centroid = (0.79071342400805678, -1.6503647878358894) +station = ('kpex', 0.0025853378138410619) +zone = ('mnz058', 0.0031904111376554706) + +[55330] +centroid = (0.79123049525225264, -1.6330734444172388) +station = ('kpnm', 0.0037870333625114167) +zone = ('mnz051', 0.0031719262100501867) + +[55331] +centroid = (0.78357741846847528, -1.6337608074365515) +station = ('kfcm', 0.0020278962344693736) +zone = ('mnz060', 0.0024935062958789892) + +[55332] +centroid = (0.77702821007670675, -1.6528187382174859) +station = ('kulm', 0.0043400126859175214) +zone = ('mnz065', 0.0047367823953176885) + +[55333] +centroid = (0.77777028916806967, -1.6556303414694011) +station = ('krwf', 0.0027788517668555024) +zone = ('mnz065', 0.0030550101655856749) + +[55334] +centroid = (0.77729041089023387, -1.6438815703431386) +station = ('kgyl', 0.0040712800407672585) +zone = ('mnz067', 0.00094804497463695859) + +[55335] +centroid = (0.77721414000192168, -1.6502635761925661) +station = ('kulm', 0.0038005550689454012) +zone = ('mnz075', 0.0049502137895929962) + +[55336] +centroid = (0.78151000615631794, -1.6440750749973072) +station = ('kgyl', 0.0015013327859044235) +zone = ('mnz066', 0.0012200241247351203) + +[55337] +centroid = (0.78153177041209032, -1.6279081948558389) +station = ('kmsp', 0.0016861797071810959) +zone = ('mnz070', 0.0031676555593702768) + +[55338] +centroid = (0.77963018183216493, -1.6405356869006029) +station = ('kgyl', 0.0018451161320688447) +zone = ('mnz068', 0.0035652966502146229) + +[55339] +centroid = (0.78057105392532999, -1.6398582897113188) +station = ('kgyl', 0.0016414567521020544) +zone = ('mnz068', 0.0025594625288716953) + +[55340] +centroid = (0.78676411042993666, -1.6331415471646515) +station = ('kcfe', 0.0036213851885258546) +zone = ('mnz060', 0.0017433363217048525) + +[55341] +centroid = (0.78815513784377611, -1.6347259745129044) +station = ('kcfe', 0.0022172757631578159) +zone = ('mnz060', 0.003526176821519554) + +[55342] +centroid = (0.78091135822288382, -1.6535079687390986) +station = ('kovl', 0.0036932666897578166) +zone = ('mnz065', 0.0025962808031543541) + +[55343] +centroid = (0.78390367286555063, -1.6304212071793229) +station = ('kfcm', 0.0015818425838068151) +zone = ('mnz060', 0.0017417091014876596) + +[55344] +centroid = (0.78302266556572897, -1.6306621673358532) +station = ('kfcm', 0.00074378994458207295) +zone = ('mnz060', 0.0025210716366545027) + +[55345] +centroid = (0.78392234788854687, -1.6316111028501628) +station = ('kfcm', 0.0014629685730151456) +zone = ('mnz060', 0.0015572089777778236) + +[55346] +centroid = (0.78327970020467019, -1.6315561249787247) +station = ('kfcm', 0.00082117258384206313) +zone = ('mnz060', 0.002197700013570622) + +[55347] +centroid = (0.78239420740867072, -1.6312258388710774) +station = ('kfcm', 0.00012386458111021613) +zone = ('mnz060', 0.0030876608104693985) + +[55349] +centroid = (0.78642174664386544, -1.6419104478458137) +station = ('kmgg', 0.0032853085559423493) +zone = ('mnz059', 0.0024358739364513061) + +[55350] +centroid = (0.78357569059251586, -1.647487019152031) +station = ('khcd', 0.00052175562949217957) +zone = ('mnz066', 0.0019615767713148987) + +[55352] +centroid = (0.77931525462193507, -1.633499165128385) +station = ('kfcm', 0.0035002140915539365) +zone = ('mnz069', 0.00070863415968383417) + +[55353] +centroid = (0.79114197215259152, -1.6462752894122488) +station = ('kljf', 0.0046279866339176629) +zone = ('mnz058', 0.0043748496412339636) + +[55354] +centroid = (0.783311482650349, -1.6416815828209999) +station = ('kgyl', 0.0021836259530264627) +zone = ('mnz068', 0.0033686778067940214) + +[55355] +centroid = (0.78712766251312705, -1.6500570862887627) +station = ('kljf', 0.00042119807949325065) +zone = ('mnz058', 0.0004526643083388148) + +[55356] +centroid = (0.78530115799762246, -1.6334454089874237) +station = ('kfcm', 0.0031919516635041207) +zone = ('mnz060', 0.0014022588900145566) + +[55357] +centroid = (0.78724475665264326, -1.6349059005054924) +station = ('kcfe', 0.0022873583133791926) +zone = ('mnz060', 0.0029983611006486359) + +[55358] +centroid = (0.78981480633608259, -1.6404615976738557) +station = ('kmgg', 0.00030469185569522437) +zone = ('mnz059', 0.0014253419436349964) + +[55359] +centroid = (0.78556554047271465, -1.635343210202872) +station = ('kcfe', 0.0031581107395490691) +zone = ('mnz068', 0.0035379118630875991) + +[55360] +centroid = (0.7839313886940722, -1.6392070375542298) +station = ('kgyl', 0.0034317758100085422) +zone = ('mnz068', 0.0022041247497844195) + +[55362] +centroid = (0.79049595598325839, -1.6377944727774207) +station = ('kcfe', 0.0023252717195391894) +zone = ('mnz059', 0.0025667636673623821) + +[55363] +centroid = (0.78604728625285003, -1.6391839119416407) +station = ('kcfe', 0.002317597702806731) +zone = ('mnz059', 0.002448663297023194) + +[55364] +centroid = (0.78431194028417717, -1.6348856023262917) +station = ('kfcm', 0.0031013746609513046) +zone = ('mnz068', 0.0026019852824288592) + +[55366] +centroid = (0.77968440921202442, -1.6446646123120461) +station = ('kgyl', 0.0023751234289639102) +zone = ('mnz067', 0.0016253580760827357) + +[55367] +centroid = (0.7835680460503921, -1.6401862894376462) +station = ('kgyl', 0.0027548368165455413) +zone = ('mnz068', 0.0025055812521546953) + +[55368] +centroid = (0.7808405851217155, -1.6388487912719654) +station = ('kgyl', 0.0022758838902223731) +zone = ('mnz068', 0.0018648096155860106) + +[55369] +centroid = (0.78762251571594499, -1.6309298833898167) +station = ('kmic', 0.0015832736916705106) +zone = ('mnz060', 0.0021804460724836566) + +[55370] +centroid = (0.78150922075815454, -1.6412514813334309) +station = ('kgyl', 0.0006610148825082926) +zone = ('mnz068', 0.0029997079577212039) + +[55371] +centroid = (0.79549649882314732, -1.6334671906964886) +station = ('kpnm', 0.00051159457186229274) +zone = ('mnz051', 0.0032520302404610672) + +[55372] +centroid = (0.77985477080031151, -1.6303746767014649) +station = ('klvn', 0.002492860179717411) +zone = ('mnz069', 0.0016277349127937031) + +[55373] +centroid = (0.78694489163385828, -1.6357425066291433) +station = ('kcfe', 0.0019385671278688275) +zone = ('mnz059', 0.0033292402541357695) + +[55374] +centroid = (0.7884616525670114, -1.6331707988829149) +station = ('kcfe', 0.00332603328964354) +zone = ('mnz060', 0.0032153244604782071) + +[55375] +centroid = (0.78379432798791315, -1.6357497846521243) +station = ('kfcm', 0.0033785835279319678) +zone = ('mnz068', 0.001823324602866587) + +[55376] +centroid = (0.78908515398899381, -1.6351623068259029) +station = ('kcfe', 0.0021161420125250727) +zone = ('mnz059', 0.0034459015065609719) + +[55378] +centroid = (0.78116223184956557, -1.6295610565640628) +station = ('kfcm', 0.0018295063344692221) +zone = ('mnz069', 0.0028272909047105423) + +[55379] +centroid = (0.78113865245137104, -1.6321154855506965) +station = ('kfcm', 0.0014340533848537641) +zone = ('mnz069', 0.0018974710570468863) + +[55381] +centroid = (0.78419324044174898, -1.6440997888595155) +station = ('khcd', 0.002529389851938828) +zone = ('mnz066', 0.0020784762398588061) + +[55382] +centroid = (0.79064148153628966, -1.6440843077890501) +station = ('kmgg', 0.0028530141809326838) +zone = ('mnz059', 0.0036462867249490312) + +[55384] +centroid = (0.78429757622443319, -1.6341639784937623) +station = ('kfcm', 0.0026973852896789371) +zone = ('mnz060', 0.0022363902946495999) + +[55385] +centroid = (0.78084480881850526, -1.6491477173885962) +station = ('khcd', 0.0025836203798016706) +zone = ('mnz066', 0.0030631746576238374) + +[55386] +centroid = (0.78301084968669288, -1.6347954909770113) +station = ('kfcm', 0.0024922181410401089) +zone = ('mnz068', 0.001834343108113081) + +[55387] +centroid = (0.78311637229326836, -1.636751341843381) +station = ('kcfe', 0.0051164431627283811) +zone = ('mnz068', 0.00089465885014587665) + +[55388] +centroid = (0.78452275860452547, -1.637915528814339) +station = ('kcfe', 0.003648678951037666) +zone = ('mnz068', 0.0023145627268803654) + +[55389] +centroid = (0.79059783085169733, -1.6483347779296023) +station = ('kljf', 0.0035917814022026428) +zone = ('mnz058', 0.0032243078036639432) + +[55390] +centroid = (0.78653564683085053, -1.6402526817623921) +station = ('kcfe', 0.0023456608963835835) +zone = ('mnz059', 0.0019085667420502982) + +[55391] +centroid = (0.7846372172968713, -1.6325634068499284) +station = ('kfcm', 0.0023279032322057751) +zone = ('mnz060', 0.0011376571831847864) + +[55395] +centroid = (0.78455749065664016, -1.6417913291243651) +station = ('kgyl', 0.0034200106875435531) +zone = ('mnz066', 0.0033797990441972519) + +[55396] +centroid = (0.77747970930090515, -1.6470150821222918) +station = ('kulm', 0.0043371490826463162) +zone = ('mnz067', 0.0017748760523983889) + +[55397] +centroid = (0.78232310269494443, -1.6395268865929502) +station = ('kgyl', 0.0021306644795673507) +zone = ('mnz068', 0.0016778944647204534) + +[55398] +centroid = (0.79352469564741412, -1.633809432309512) +station = ('kpnm', 0.0014782462478144958) +zone = ('mnz051', 0.002044694843654125) + +[55401] +centroid = (0.78512898126691322, -1.6278528330119657) +station = ('kmic', 0.0017460648934101832) +zone = ('mnz062', 0.0021698207575131514) + +[55402] +centroid = (0.78497986033562284, -1.6278937784362175) +station = ('kmic', 0.0018551265701582974) +zone = ('mnz062', 0.0022410775909419501) + +[55403] +centroid = (0.78488451299858641, -1.628113497935751) +station = ('kmic', 0.0018642405446799956) +zone = ('mnz062', 0.0024192294181224292) + +[55404] +centroid = (0.78473490337510543, -1.6277136604574116) +station = ('kmsp', 0.0017522271240605254) +zone = ('mnz062', 0.0022158229656902579) + +[55405] +centroid = (0.78490721973215483, -1.6284353191965262) +station = ('kmic', 0.0017553327853950852) +zone = ('mnz062', 0.0026277803730032903) + +[55406] +centroid = (0.78435962267934167, -1.6270140801333348) +station = ('kmsp', 0.0012896986079551003) +zone = ('mnz062', 0.0020106758925713016) + +[55407] +centroid = (0.78426432770218268, -1.6275723935077551) +station = ('kmsp', 0.0012751374937492157) +zone = ('mnz062', 0.0023768079096519535) + +[55408] +centroid = (0.78435838349557263, -1.6282637184244702) +station = ('kmsp', 0.0015935060728055396) +zone = ('mnz062', 0.002735412185674896) + +[55409] +centroid = (0.78418212269441379, -1.6280689047733625) +station = ('kmsp', 0.0013698489531156935) +zone = ('mnz062', 0.002710656155218821) + +[55410] +centroid = (0.78386014435400586, -1.628734835149461) +station = ('kmsp', 0.0014978831618895595) +zone = ('mnz060', 0.0025260731110130965) + +[55411] +centroid = (0.78538086718456102, -1.6283636210708543) +station = ('kmic', 0.0013416600254037227) +zone = ('mnz062', 0.0024753449489871011) + +[55412] +centroid = (0.78587771006272622, -1.6284540814859851) +station = ('kmic', 0.00089218976806948469) +zone = ('mnz062', 0.0025249572197820324) + +[55413] +centroid = (0.78538879097936509, -1.6273742637310686) +station = ('kmic', 0.0017778809864292615) +zone = ('mnz062', 0.0017824167905952091) + +[55414] +centroid = (0.78504059779359214, -1.6271242802223058) +station = ('kmsp', 0.0019739633517589839) +zone = ('mnz062', 0.0017100109217443691) + +[55415] +centroid = (0.784958148439728, -1.6276510729504352) +station = ('kmsp', 0.0019535171088758663) +zone = ('mnz062', 0.0020867920233509246) + +[55416] +centroid = (0.78452883235032234, -1.6290260782417414) +station = ('kmic', 0.0020398813776570726) +zone = ('mnz060', 0.0019765205209235017) + +[55417] +centroid = (0.78373032676424248, -1.627177565124369) +station = ('kmsp', 0.00068081269426339117) +zone = ('mnz062', 0.0025463528938077049) + +[55418] +centroid = (0.78577023268738844, -1.6273947888030722) +station = ('kmic', 0.001540239418784804) +zone = ('mnz062', 0.001771339050086157) + +[55419] +centroid = (0.78375404578877716, -1.6281766963079658) +station = ('kmsp', 0.0011122108855027208) +zone = ('mnz062', 0.0030296082043837842) + +[55420] +centroid = (0.78253528237210945, -1.6279938381622343) +station = ('kmsp', 0.00092065702840297742) +zone = ('mnz060', 0.0038390491205575064) + +[55421] +centroid = (0.78628625673403318, -1.6275860594357983) +station = ('kmic', 0.0012174427238488116) +zone = ('mnz062', 0.0019937085666274792) + +[55422] +centroid = (0.78556004268557078, -1.6291096096997417) +station = ('kmic', 0.0010076630084000493) +zone = ('mnz060', 0.0016765294781800925) + +[55423] +centroid = (0.78320707705449455, -1.6280872656370935) +station = ('kmsp', 0.00082594080434747605) +zone = ('mnz062', 0.0033638240593483839) + +[55424] +centroid = (0.78374055439365919, -1.6291746930275488) +station = ('kmsp', 0.0017205083859020435) +zone = ('mnz060', 0.0023813563166488298) + +[55425] +centroid = (0.7828073093893253, -1.6270942780124638) +station = ('kmsp', 0.00028613593717201677) +zone = ('mnz062', 0.0032834011318646412) + +[55426] +centroid = (0.78467055308558442, -1.629685411273267) +station = ('kmic', 0.0019143908816964691) +zone = ('mnz060', 0.0015024944308700359) + +[55427] +centroid = (0.78549413905301546, -1.629773620213663) +station = ('kmic', 0.0011264892863328511) +zone = ('mnz060', 0.0012051528975617514) + +[55428] +centroid = (0.78649684816157872, -1.629812226896717) +station = ('kmic', 0.00039201532069988137) +zone = ('mnz060', 0.0015576753119834045) + +[55429] +centroid = (0.78650735504367575, -1.6291094700734017) +station = ('kmic', 0.0001224753389442077) +zone = ('mnz060', 0.001965635116092278) + +[55430] +centroid = (0.78657268271757785, -1.6284178484507137) +station = ('kmic', 0.00059832522824842702) +zone = ('mnz062', 0.0026414848902603766) + +[55431] +centroid = (0.78235978951582141, -1.6285841434218438) +station = ('kmsp', 0.0013669227489685406) +zone = ('mnz060', 0.0037302200284576254) + +[55432] +centroid = (0.7870839245620721, -1.6275983814603174) +station = ('kane', 0.0010422738967328185) +zone = ('mnz062', 0.002362656088524406) + +[55433] +centroid = (0.788197863503865, -1.628651181518413) +station = ('kmic', 0.0016924922709575802) +zone = ('mnz061', 0.0021408282986928404) + +[55434] +centroid = (0.78825554663564334, -1.6275280272381696) +station = ('kane', 0.00048017326200851739) +zone = ('mnz061', 0.0019115167830275007) + +[55435] +centroid = (0.78319822823518703, -1.6289866512539386) +station = ('kmsp', 0.0014576248333310698) +zone = ('mnz060', 0.0028811925822138421) + +[55436] +centroid = (0.78372509077648655, -1.6296690226315911) +station = ('kfcm', 0.0017374651774062643) +zone = ('mnz060', 0.0021695238188978267) + +[55437] +centroid = (0.78233244020644277, -1.6291426138758969) +station = ('kmsp', 0.0017289804081554807) +zone = ('mnz060', 0.0035526590691378306) + +[55438] +centroid = (0.78231107737639838, -1.6298133788140234) +station = ('kfcm', 0.0011112252791447791) +zone = ('mnz060', 0.0033779760916468021) + +[55439] +centroid = (0.78322749740674291, -1.6296967733666976) +station = ('kfcm', 0.0014039397714009493) +zone = ('mnz060', 0.0025784703908104884) + +[55441] +centroid = (0.78550848565946685, -1.6305675006772253) +station = ('kmic', 0.0013988045166631895) +zone = ('mnz060', 0.0006444970611556674) + +[55442] +centroid = (0.78625077419034006, -1.6305950070662367) +station = ('kmic', 0.00098972279517011807) +zone = ('mnz060', 0.00099428518491902012) + +[55443] +centroid = (0.78745082767742636, -1.6290574767149846) +station = ('kmic', 0.00090108447678185111) +zone = ('mnz060', 0.0026115564732640136) + +[55444] +centroid = (0.78721197936929088, -1.6284217056283607) +station = ('kmic', 0.00088160970552174974) +zone = ('mnz062', 0.0029181981458347617) + +[55445] +centroid = (0.78753516198688267, -1.6297742136256086) +station = ('kmic', 0.0010377334248933663) +zone = ('mnz060', 0.0023844007129287031) + +[55446] +centroid = (0.78608128526667898, -1.6317030991550352) +station = ('kmic', 0.001788249627693324) +zone = ('mnz060', 0.00062517979010531669) + +[55447] +centroid = (0.78541729220605006, -1.6317006556940823) +station = ('kmic', 0.0020670641279627753) +zone = ('mnz060', 0.00016831420356100662) + +[55448] +centroid = (0.78878254880328302, -1.6283913543526687) +station = ('kane', 0.0012796466566524659) +zone = ('mnz061', 0.0015324112999378211) + +[55449] +centroid = (0.78849242272172393, -1.6263312026101995) +station = ('kane', 0.00064010038883726805) +zone = ('mnz061', 0.0018521869583902882) + +[55450] +centroid = (0.78329553034098565, -1.6270711000399973) +station = ('kmsp', 0.0002435535111169618) +zone = ('mnz062', 0.0028540798939804138) + +[55454] +centroid = (0.78482803414399183, -1.6272509387661229) +station = ('kmsp', 0.0017709182454753651) +zone = ('mnz062', 0.0018814083477110117) + +[55455] +centroid = (0.78490622489448125, -1.6272349690034671) +station = ('kmsp', 0.0018471957786430336) +zone = ('mnz062', 0.0018363543306939728) + +[55601] +centroid = (0.82443845605092825, -1.594583977675688) +station = ('kbfw', 0.00077884536872698407) +zone = ('mnz020', 0.0012783199507553776) + +[55602] +centroid = (0.82641064319909696, -1.603721003202681) +station = ('ktwm', 0.0054776549204898772) +zone = ('mnz019', 0.0066972105281598296) + +[55603] +centroid = (0.82984295534619135, -1.5926336595030468) +station = ('kbfw', 0.006298144253186237) +zone = ('mnz012', 0.0048798440088696233) + +[55604] +centroid = (0.83697433576325519, -1.5804930794130043) +station = ('kckc', 0.0028686267524709735) +zone = ('mnz021', 0.0031394048009652218) + +[55605] +centroid = (0.8371522022673259, -1.5662083797901789) +station = ('cztb', 0.0085060831117516993) +zone = ('mnz021', 0.0083865214330945004) + +[55606] +centroid = (0.83661512954990225, -1.570601879662932) +station = ('kckc', 0.0049096627869117246) +zone = ('mnz021', 0.0054547307217586022) + +[55607] +centroid = (0.8301342857049343, -1.5955332971624325) +station = ('kbfw', 0.0063421840594447389) +zone = ('mnz020', 0.0049209724065770837) + +[55609] +centroid = (0.81979268628809232, -1.6018783892981807) +station = ('ktwm', 0.0014326351962404794) +zone = ('mnz020', 0.0067202069418667914) + +[55612] +centroid = (0.83373896656895563, -1.5830387992066706) +station = ('kckc', 0.0039197715208693596) +zone = ('mnz021', 0.0034479030213334918) + +[55613] +centroid = (0.83045701453692056, -1.586891735703496) +station = ('kbfw', 0.008732068355415231) +zone = ('mnz012', 0.0053252876036242397) + +[55614] +centroid = (0.82673180123475631, -1.594811970035876) +station = ('kbfw', 0.0029501164857650272) +zone = ('mnz020', 0.0017289713250642255) + +[55615] +centroid = (0.83188195369812623, -1.5851700731161584) +station = ('kckc', 0.0060041737588337162) +zone = ('mnz012', 0.0052122780793702819) + +[55616] +centroid = (0.82319836471080143, -1.5994559072029975) +station = ('ktwm', 0.0023933134330968108) +zone = ('mnz020', 0.0030677054032258884) + +[55702] +centroid = (0.81955006806877262, -1.6168036422097802) +station = ('kcoq', 0.0047666020338519638) +zone = ('mnz037', 0.0036424012892773208) + +[55703] +centroid = (0.83306134248686892, -1.6187940156887546) +station = ('kcqm', 0.0017408643025550801) +zone = ('mnz019', 0.0062003943273632994) + +[55704] +centroid = (0.80667521050912339, -1.6188219758633713) +station = ('kmzh', 0.0034973208675661187) +zone = ('mnz038', 0.0017198796258039179) + +[55705] +centroid = (0.82819018090443031, -1.6093219742118412) +station = ('kevm', 0.003508951036905141) +zone = ('mnz019', 0.0026910101359934224) + +[55706] +centroid = (0.83290101654178073, -1.6050322341631194) +station = ('kelo', 0.0022381968792859084) +zone = ('mnz019', 0.007363962924173257) + +[55707] +centroid = (0.8125342109948982, -1.6167269175358625) +station = ('kcoq', 0.0029854711129425442) +zone = ('mnz037', 0.0034901681001620628) + +[55708] +centroid = (0.83027567482763831, -1.6117713343775049) +station = ('kevm', 0.0032417548382034558) +zone = ('mnz019', 0.0024163044232207768) + +[55709] +centroid = (0.82779341520557437, -1.62965502509099) +station = ('kgpz', 0.0040813932806730855) +zone = ('mnz026', 0.0031936187121221473) + +[55710] +centroid = (0.83129496456409557, -1.6180695993294216) +station = ('kcqm', 0.0033629167973496733) +zone = ('mnz019', 0.0045433302700138975) + +[55711] +centroid = (0.81758665992674151, -1.617766959237126) +station = ('kcoq', 0.0034006828501035391) +zone = ('mnz037', 0.0020924529321472781) + +[55712] +centroid = (0.80776804842025962, -1.614789514799686) +station = ('kmzh', 0.0041081700301250842) +zone = ('mnz038', 0.0038728276315304457) + +[55713] +centroid = (0.82903804440175655, -1.6187238534528241) +station = ('khib', 0.0022880094435444838) +zone = ('mnz019', 0.003787522232191096) + +[55716] +centroid = (0.82589664373438454, -1.6278940402356052) +station = ('kgpz', 0.003422108769178291) +zone = ('mnz026', 0.0026241941318041438) + +[55717] +centroid = (0.82150380708674742, -1.6124611059511855) +station = ('kdlh', 0.0043853760492056264) +zone = ('mnz037', 0.0059932570034753243) + +[55718] +centroid = (0.81368874629509247, -1.6141922456763611) +station = ('kcoq', 0.0013895924180511486) +zone = ('mnz037', 0.0025415802431489856) + +[55719] +centroid = (0.82974766036903247, -1.620750966112553) +station = ('khib', 0.0027734643611595591) +zone = ('mnz019', 0.0053009931954657039) + +[55720] +centroid = (0.81596081591533876, -1.6150126900511386) +station = ('kcoq', 0.00097752195788934409) +zone = ('mnz037', 0.00055839088227070525) + +[55721] +centroid = (0.82415543345942488, -1.6351430558442535) +station = ('kgpz', 0.0020179517985460032) +zone = ('mnz026', 0.0026093719611677518) + +[55722] +centroid = (0.82517196557566408, -1.6308709959808545) +station = ('kgpz', 0.0014002632668724984) +zone = ('mnz026', 0.0005082561287494034) + +[55723] +centroid = (0.83494917787228862, -1.6216939675074056) +station = ('kcqm', 0.0026738412839259272) +zone = ('mnz011', 0.0069152007819050692) + +[55724] +centroid = (0.82320887159289824, -1.6119009599810503) +station = ('kevm', 0.0046927153072343665) +zone = ('mnz019', 0.0049729275473011812) + +[55725] +centroid = (0.84141742044005718, -1.6086370546534809) +station = ('kcdd', 0.0037987738732056181) +zone = ('mnz011', 0.0043821563264633389) + +[55726] +centroid = (0.81461576047399675, -1.6201783410382662) +station = ('kcoq', 0.0039694983218745714) +zone = ('mnz037', 0.0032758617134189764) + +[55731] +centroid = (0.83742735342390284, -1.5997142857454625) +station = ('kelo', 0.0035348223658160189) +zone = ('mnz012', 0.0060289005727771332) + +[55732] +centroid = (0.83207540599241725, -1.6093515051827847) +station = ('kelo', 0.0050603755916515799) +zone = ('mnz019', 0.004792975535444651) + +[55733] +centroid = (0.81531015717019517, -1.6119999201496387) +station = ('kcoq', 0.0016834736664656546) +zone = ('mnz037', 0.0027050275670659749) + +[55734] +centroid = (0.82645438115015191, -1.6134649669770551) +station = ('kevm', 0.0012987336479580694) +zone = ('mnz019', 0.0016401522582688613) + +[55735] +centroid = (0.80652176116128804, -1.6233344373779401) +station = ('k04w', 0.003625737128963814) +zone = ('mnz038', 0.0036052490917835947) + +[55736] +centroid = (0.81953053783444274, -1.6221237548357093) +station = ('kcoq', 0.0069007393564877034) +zone = ('mnz035', 0.0061300461645278264) + +[55738] +centroid = (0.82491815979583893, -1.6172272161659464) +station = ('khib', 0.0029163304195972133) +zone = ('mnz019', 0.0041410248634968878) + +[55741] +centroid = (0.82837837975767281, -1.6126533714215852) +station = ('kevm', 0.0014441376712204764) +zone = ('mnz019', 0.00052260931912568773) + +[55742] +centroid = (0.82387033392611164, -1.6255426104942707) +station = ('kgpz', 0.0045097419046725784) +zone = ('mnz026', 0.0041142979275722649) + +[55744] +centroid = (0.82439888943678563, -1.6320056170742834) +station = ('kgpz', 0.00033279245481816587) +zone = ('mnz026', 0.00058486725909408872) + +[55746] +centroid = (0.82662016997579879, -1.6223823428176849) +station = ('khib', 0.0014937350792699224) +zone = ('mnz019', 0.0063215092560523732) + +[55748] +centroid = (0.82055715795375839, -1.6339996033848092) +station = ('kgpz', 0.0037414849197929751) +zone = ('mnz035', 0.0040820121625126772) + +[55749] +centroid = (0.81052319027087283, -1.6134402182082619) +station = ('kcoq', 0.0045961723421946068) +zone = ('mnz037', 0.005687856604504383) + +[55750] +centroid = (0.82958728206406673, -1.6050696016624044) +station = ('kelo', 0.0052017763923304884) +zone = ('mnz019', 0.0057584620787853764) + +[55751] +centroid = (0.82723932552794388, -1.6172070576130859) +station = ('kevm', 0.0019098529302189774) +zone = ('mnz019', 0.0027781183157878551) + +[55752] +centroid = (0.8194417354821012, -1.6281468860843415) +station = ('kgpz', 0.0053935579964940611) +zone = ('mnz035', 0.0026880445439441368) + +[55753] +centroid = (0.82720651333800632, -1.6245798345189932) +station = ('khib', 0.0029407663978365519) +zone = ('mnz026', 0.0052149187284104993) + +[55756] +centroid = (0.80915527101632978, -1.6159053386970712) +station = ('kmzh', 0.0027685257045665288) +zone = ('mnz038', 0.0046028668542782338) + +[55757] +centroid = (0.81179693155897825, -1.6222857213902944) +station = ('kmzh', 0.0024611123089832488) +zone = ('mnz037', 0.0060889570515774167) + +[55758] +centroid = (0.82913646351827663, -1.6182726683878914) +station = ('khib', 0.0025236010266212199) +zone = ('mnz019', 0.0035208739836503607) + +[55760] +centroid = (0.81397946578859726, -1.6276088359825369) +station = ('khzx', 0.00073351705652513011) +zone = ('mnz035', 0.0038254050541108781) + +[55763] +centroid = (0.82637140819751209, -1.6084125704050896) +station = ('kevm', 0.0042487508769920371) +zone = ('mnz019', 0.0037275811590846693) + +[55764] +centroid = (0.82609948590005133, -1.6285085881185251) +station = ('kgpz', 0.0031995181309880391) +zone = ('mnz026', 0.0023515799098225371) + +[55765] +centroid = (0.82211486431116332, -1.6189025751682287) +station = ('khib', 0.0049649654947436922) +zone = ('mnz037', 0.0064943997118916998) + +[55766] +centroid = (0.82485113915256236, -1.613220289269218) +station = ('kevm', 0.0028463324200497368) +zone = ('mnz019', 0.0032399573069979586) + +[55767] +centroid = (0.81071796901539539, -1.6189605724592722) +station = ('kmzh', 0.0007676358576215169) +zone = ('mnz037', 0.0056754435566744137) + +[55768] +centroid = (0.82880411792211184, -1.6176465838786158) +station = ('kevm', 0.0024976440795323345) +zone = ('mnz019', 0.0030246840435714122) + +[55769] +centroid = (0.82868213686069003, -1.6263651667174432) +station = ('kgpz', 0.0060506253894112823) +zone = ('mnz026', 0.0051549913573348113) + +[55771] +centroid = (0.84006355108599251, -1.6199709784698368) +station = ('korb', 0.0020946239951338901) +zone = ('mnz011', 0.0033578962140207213) + +[55772] +centroid = (0.83972511429073837, -1.6254361454098991) +station = ('korb', 0.0035055507701492366) +zone = ('mnz011', 0.0070193505185266649) + +[55775] +centroid = (0.8258927865567377, -1.6261508402852984) +station = ('kgpz', 0.0044683697039114194) +zone = ('mnz026', 0.0037352516735393946) + +[55779] +centroid = (0.8187138633708495, -1.6135364207566316) +station = ('kdlh', 0.0028966043641933197) +zone = ('mnz037', 0.0031606091161622257) + +[55780] +centroid = (0.81486178208535787, -1.6179008783506315) +station = ('kcoq', 0.0023899354076750636) +zone = ('mnz037', 0.0018019603430714224) + +[55781] +centroid = (0.83217173071383488, -1.6239787256713138) +station = ('kcqm', 0.004874553522375388) +zone = ('mnz018', 0.0080277015812483428) + +[55782] +centroid = (0.83484245098852916, -1.6092984297202315) +station = ('kelo', 0.0043762849502849916) +zone = ('mnz011', 0.0065424792907112063) + +[55783] +centroid = (0.8097700981519298, -1.6212790329310367) +station = ('kmzh', 0.0011673876259882799) +zone = ('mnz038', 0.0051440353447572071) + +[55784] +centroid = (0.82132386364086685, -1.6260409019957152) +station = ('kgpz', 0.0050034906044149488) +zone = ('mnz035', 0.0050552354859093101) + +[55785] +centroid = (0.81893613105109109, -1.6359183485512818) +station = ('kgpz', 0.0057471064229889807) +zone = ('mnz035', 0.0040870626439248403) + +[55786] +centroid = (0.82586941659805346, -1.629778751481664) +station = ('kgpz', 0.0024126147147043343) +zone = ('mnz026', 0.0015254837556267897) + +[55787] +centroid = (0.81469208372218649, -1.624953509511845) +station = ('khzx', 0.002687994202901492) +zone = ('mnz035', 0.0045684535297799058) + +[55790] +centroid = (0.83649227582385444, -1.6101172160322197) +station = ('kelo', 0.0052793031326068829) +zone = ('mnz011', 0.0049031908514872696) + +[55792] +centroid = (0.83072724386500674, -1.614063841803292) +station = ('kevm', 0.0031599616820392903) +zone = ('mnz019', 0.0026867509985481109) + +[55793] +centroid = (0.82232756758710379, -1.6281501323967504) +station = ('kgpz', 0.0032521215320080914) +zone = ('mnz026', 0.0033565577423177793) + +[55795] +centroid = (0.80805028561359959, -1.6211127030533214) +station = ('kmzh', 0.0023013961723714342) +zone = ('mnz038', 0.0035316475712045365) + +[55797] +centroid = (0.81273874612993946, -1.612023028308935) +station = ('kcoq', 0.0028565113478004438) +zone = ('mnz037', 0.0041539310755086935) + +[55798] +centroid = (0.81547465445219569, -1.6225939116296113) +station = ('kcoq', 0.0056127447402792895) +zone = ('mnz035', 0.0056781124330238606) + +[55802] +centroid = (0.81578349046333609, -1.6065641445541798) +station = ('kdyt', 0.00033943300002366357) +zone = ('wiz001', 0.0056472827702945235) + +[55803] +centroid = (0.82118790249213658, -1.6069399663020116) +station = ('kdlh', 0.0040715575901992922) +zone = ('mnz037', 0.0080067797980064668) + +[55804] +centroid = (0.81910659735913327, -1.6045919050461337) +station = ('ktwm', 0.0030347716363374158) +zone = ('mnz037', 0.0083010409914607459) + +[55805] +centroid = (0.81682848889967519, -1.6073746580055133) +station = ('kdyt', 0.0015128246986450778) +zone = ('mnz037', 0.0058523670919556512) + +[55806] +centroid = (0.81625785350073565, -1.6079301613998382) +station = ('ksuw', 0.0014239176359754603) +zone = ('mnz037', 0.0054178567376446576) + +[55807] +centroid = (0.81568831765922489, -1.6086454671404755) +station = ('ksuw', 0.0011915707067156587) +zone = ('mnz037', 0.0049296529911931541) + +[55808] +centroid = (0.81465478603607144, -1.6099159795694646) +station = ('ksuw', 0.0017717463063918624) +zone = ('mnz037', 0.0042610682371170012) + +[55810] +centroid = (0.81605914776539612, -1.6104054746114791) +station = ('kdlh', 0.0015882763898476663) +zone = ('mnz037', 0.0037159204811749347) + +[55811] +centroid = (0.81755876956529461, -1.6096182438523672) +station = ('kdlh', 2.1327044569778824e-05) +zone = ('mnz037', 0.0045382276501473489) + +[55812] +centroid = (0.81696572413875945, -1.6069373308548414) +station = ('kdyt', 0.00154897794991166) +zone = ('mnz037', 0.0061690142412773718) + +[55814] +centroid = (0.8174003285757987, -1.6091577736358134) +station = ('kdlh', 0.00037251994456518136) +zone = ('mnz037', 0.0047853731830361079) + +[55901] +centroid = (0.76916342485466238, -1.6145444182128286) +station = ('k9mn', 0.00089402435192338073) +zone = ('mnz087', 0.0017504617924705881) + +[55902] +centroid = (0.76744249530561093, -1.6145534939249391) +station = ('k9mn', 0.00087809771365946919) +zone = ('mnz087', 0.0014380491903100417) + +[55904] +centroid = (0.76724438298221709, -1.6126930253021905) +station = ('k9mn', 0.0015376889783543463) +zone = ('mnz087', 0.00076349325424111564) + +[55905] +centroid = (0.76892134768741083, -1.6148817030907765) +station = ('k9mn', 0.0007723988049075887) +zone = ('mnz087', 0.0018055704185299807) + +[55906] +centroid = (0.76968826281402958, -1.6128275203743492) +station = ('k9mn', 0.0017310278133107586) +zone = ('mnz087', 0.0016824825023104251) + +[55909] +centroid = (0.76030139340461356, -1.618508270383618) +station = ('kaum', 0.0031140288455636898) +zone = ('mnz094', 0.0019230649089253945) + +[55910] +centroid = (0.77019041149312095, -1.6052112176779114) +station = ('kona', 0.0034973037742583864) +zone = ('mnz088', 0.0034590387582726489) + +[55912] +centroid = (0.76240538781789269, -1.622957201913414) +station = ('kaum', 0.0007510874473687319) +zone = ('mnz094', 0.0029866793393477976) + +[55917] +centroid = (0.76593460064505792, -1.6244735963274242) +station = ('kaum', 0.0042078517039753106) +zone = ('mnz085', 0.0030551939001556097) + +[55918] +centroid = (0.76342134397547856, -1.6204764607277995) +station = ('kaum', 0.0016960122585900654) +zone = ('mnz094', 0.0016951282851388986) + +[55919] +centroid = (0.76132609366175197, -1.5934848216726594) +station = ('klse', 0.0046256340029375157) +zone = ('mnz096', 0.0025908729964881426) + +[55920] +centroid = (0.76818504563587198, -1.6165589645019429) +station = ('k9mn', 0.0016604178974411821) +zone = ('mnz087', 0.00276993045860883) + +[55921] +centroid = (0.76146957717955843, -1.5962581324007861) +station = ('klse', 0.0051611454912987445) +zone = ('mnz096', 0.00085532818377135299) + +[55922] +centroid = (0.76024720093133913, -1.6039741108508052) +station = ('kfka', 0.0040777848964116846) +zone = ('mnz095', 0.0031215610530907979) + +[55923] +centroid = (0.76534480153093154, -1.6089504983338465) +station = ('kfka', 0.0030442145620244768) +zone = ('mnz095', 0.0033180920527954407) + +[55924] +centroid = (0.76845506552444798, -1.6236325919740582) +station = ('kowa', 0.0031823386613364902) +zone = ('mnz085', 0.0024965601093235507) + +[55925] +centroid = (0.76641058683866181, -1.5962504180454919) +station = ('klse', 0.0026687139426891725) +zone = ('mnz096', 0.0042231498111729186) + +[55926] +centroid = (0.76346277809192098, -1.6180403476111584) +station = ('kaum', 0.0031539371528593887) +zone = ('mnz094', 0.0013789106505452736) + +[55927] +centroid = (0.76858137500241475, -1.6209033857161299) +station = ('ktob', 0.00059111229024597079) +zone = ('mnz086', 0.00026828800500479599) + +[55929] +centroid = (0.7675385756809332, -1.6081397230831251) +station = ('k9mn', 0.0044634777701742217) +zone = ('mnz087', 0.0033254435723212928) + +[55931] +centroid = (0.75938947632373899, -1.5950487414022014) +station = ('kdeh', 0.005884825852781733) +zone = ('mnz096', 0.0031075628124795948) + +[55932] +centroid = (0.77060134926550306, -1.6109098573120131) +station = ('k9mn', 0.0033313169543684484) +zone = ('mnz079', 0.0024559131702617818) + +[55933] +centroid = (0.76176644023203022, -1.6175812911112988) +station = ('kaum', 0.0032119030885749663) +zone = ('mnz094', 0.0010105245491935451) + +[55934] +centroid = (0.76801519019306785, -1.6103142287981849) +station = ('k9mn', 0.0028478711915905855) +zone = ('mnz087', 0.0017273390499849481) + +[55935] +centroid = (0.76364701504776156, -1.6078229981837657) +station = ('kfka', 0.0015329712894874424) +zone = ('mnz095', 0.0014470882533290832) + +[55936] +centroid = (0.76300695045117761, -1.6157855567505068) +station = ('krst', 0.0033391955198760763) +zone = ('mnz094', 0.0023455934961620567) + +[55939] +centroid = (0.75997616875179697, -1.6073039372642226) +station = ('kfka', 0.002577638563865036) +zone = ('mnz095', 0.0022790220857927192) + +[55940] +centroid = (0.76617535136207804, -1.6198311601434596) +station = ('ktob', 0.002102727379680939) +zone = ('mnz086', 0.0022606194432170058) + +[55941] +centroid = (0.76314251017418, -1.5943434014915931) +station = ('klse', 0.0030350079610257335) +zone = ('mnz096', 0.0020386042954121265) + +[55943] +centroid = (0.76415518511277225, -1.5984208571433947) +station = ('kona', 0.0054471991084313462) +zone = ('mnz096', 0.0022522093663875152) + +[55944] +centroid = (0.76776737089257718, -1.6182333112132588) +station = ('ktob', 0.0015070417803286502) +zone = ('mnz086', 0.0018962360810348751) + +[55945] +centroid = (0.7726030324780303, -1.6066183195741617) +station = ('kona', 0.0054523634458906118) +zone = ('mnz079', 0.0022429292098899959) + +[55946] +centroid = (0.77271331983346381, -1.6225665623202328) +station = ('ksyn', 0.0035812234629078194) +zone = ('mnz078', 0.0038660052442415862) + +[55947] +centroid = (0.76485480034343412, -1.5946295482224575) +station = ('klse', 0.001795921414922232) +zone = ('mnz096', 0.0030936743404257096) + +[55949] +centroid = (0.76288524864243601, -1.6044568863751993) +station = ('kfka', 0.0032222389121168639) +zone = ('mnz095', 0.0021331991901328905) + +[55950] +centroid = (0.76353096810579635, -1.6225361935912481) +station = ('kaum', 0.0014578104275852362) +zone = ('mnz094', 0.0029829100608969508) + +[55951] +centroid = (0.7597284367177688, -1.6141239160361456) +station = ('kfka', 0.0046112489738424382) +zone = ('iaz009', 0.0036666539330864616) + +[55952] +centroid = (0.76695532155150181, -1.602972815458936) +station = ('kona', 0.0030366008215983952) +zone = ('mnz088', 0.0011113258165531526) + +[55953] +centroid = (0.75968216803929844, -1.6225722520935943) +station = ('kaum', 0.0024807092021203458) +zone = ('iaz008', 0.003725397671893916) + +[55954] +centroid = (0.76021412694201385, -1.6018650375294028) +station = ('kdeh', 0.0048141027461078333) +zone = ('iaz010', 0.0047199700791659095) + +[55955] +centroid = (0.76946889238034644, -1.6186335326640335) +station = ('ktob', 0.0016585075703451906) +zone = ('mnz086', 0.0018942929266075506) + +[55956] +centroid = (0.77293769936210011, -1.6149107279162371) +station = ('k9mn', 0.0046675322824987009) +zone = ('mnz078', 0.0032542667873985899) + +[55957] +centroid = (0.77228601087269788, -1.6103157995945117) +station = ('k9mn', 0.0048918059107021829) +zone = ('mnz079', 0.00075088824971538423) + +[55959] +centroid = (0.77000366126315745, -1.6022041200964801) +station = ('kona', 0.0013861908940226422) +zone = ('mnz088', 0.0023017446684763434) + +[55960] +centroid = (0.7703459028761811, -1.6150231794799432) +station = ('k9mn', 0.0021248719235552045) +zone = ('mnz087', 0.0028663376933785942) + +[55961] +centroid = (0.76111019643328026, -1.6139715313391541) +station = ('krst', 0.0051000870491490343) +zone = ('iaz009', 0.0048180997183369639) + +[55962] +centroid = (0.76379308165286097, -1.6030004963808726) +station = ('kfka', 0.0044759436823347282) +zone = ('mnz095', 0.0034513426219954066) + +[55963] +centroid = (0.77127092737973812, -1.6171530745793219) +station = ('k9mn', 0.0036322080370708057) +zone = ('mnz086', 0.0039072376559544124) + +[55964] +centroid = (0.77073884630397504, -1.60846112546488) +station = ('k9mn', 0.0048265115007162882) +zone = ('mnz079', 0.0023472637233636949) + +[55965] +centroid = (0.76136836553623521, -1.6079401970430371) +station = ('kfka', 0.0011377917681951284) +zone = ('mnz095', 0.0010087884516665807) + +[55967] +centroid = (0.76436968607784228, -1.6146629260690391) +station = ('krst', 0.0018375790328176796) +zone = ('mnz094', 0.0037094253861060154) + +[55968] +centroid = (0.77487468321925601, -1.6072724340712241) +station = ('krgk', 0.0059751690876491239) +zone = ('mnz079', 0.0026361935671431426) + +[55969] +centroid = (0.76938436608467231, -1.6035611834030759) +station = ('kona', 0.0022227611845510669) +zone = ('mnz088', 0.0020737711898046914) + +[55970] +centroid = (0.76087887049422098, -1.6202233879862604) +station = ('kaum', 0.0017882980189535078) +zone = ('mnz094', 0.0016669522045075706) + +[55971] +centroid = (0.76473082960666494, -1.6014387234063105) +station = ('kona', 0.0047206175952105908) +zone = ('mnz088', 0.0029998958946802598) + +[55972] +centroid = (0.76787469118828233, -1.606554248537321) +station = ('k9mn', 0.0055545668011867649) +zone = ('mnz088', 0.0033899587091169832) + +[55973] +centroid = (0.76456312091884082, -1.619191846038454) +station = ('kaum', 0.003166915119407965) +zone = ('mnz094', 0.0023673633583443025) + +[55974] +centroid = (0.76056425744325651, -1.5995590910683755) +station = ('kdeh', 0.0052404478633904837) +zone = ('mnz096', 0.0025596039393698078) + +[55975] +centroid = (0.76232265921134823, -1.6120640260930643) +station = ('kfka', 0.0023320912405996297) +zone = ('mnz095', 0.003464027217671499) + +[55976] +centroid = (0.76560255175486602, -1.6141544069381779) +station = ('krst', 0.00062906811821947001) +zone = ('mnz087', 0.0026188254719902199) + +[55977] +centroid = (0.7601917343677107, -1.6170137973050127) +station = ('kaum', 0.0040915463433649473) +zone = ('mnz094', 0.0024111756443105595) + +[55979] +centroid = (0.76655530954023721, -1.6048435815242714) +station = ('kona', 0.0042425832843565438) +zone = ('mnz088', 0.0024494797185037223) + +[55981] +centroid = (0.77419054905905915, -1.6065883522709048) +station = ('kona', 0.0064962604699380123) +zone = ('mnz079', 0.0025845528506925524) + +[55982] +centroid = (0.76472936353009324, -1.6211443633259528) +station = ('kaum', 0.0026734510524538792) +zone = ('mnz094', 0.003021331483947945) + +[55983] +centroid = (0.77303081267769413, -1.6197874570989896) +station = ('ksyn', 0.0041356338475313512) +zone = ('mnz078', 0.0023214373680682855) + +[55985] +centroid = (0.77070640063318041, -1.6214867620186089) +station = ('ktob', 0.0026117850647839635) +zone = ('mnz086', 0.002427585845284391) + +[55987] +centroid = (0.7678440955664948, -1.5991656240418057) +station = ('kona', 0.0018148806275971887) +zone = ('mnz088', 0.0019337039010305559) + +[55990] +centroid = (0.76327059988798385, -1.610271939470409) +station = ('kfka', 0.0014180875762423617) +zone = ('mnz095', 0.0023924626324233764) + +[55991] +centroid = (0.77250393268310202, -1.6130082666716858) +station = ('k9mn', 0.0043040186048877039) +zone = ('mnz079', 0.0023867153310928638) + +[55992] +centroid = (0.77357177747934969, -1.6176194789153322) +station = ('krgk', 0.0052783886043278952) +zone = ('mnz078', 0.0016056400527290082) + +[56001] +centroid = (0.77018456464012663, -1.6402405866306757) +station = ('kmkt', 0.0017272854820938326) +zone = ('mnz083', 0.0019747729178365013) + +[56003] +centroid = (0.77170556672336221, -1.6421865414801866) +station = ('kmkt', 0.0021728110329557993) +zone = ('mnz075', 0.0030599338087841672) + +[56007] +centroid = (0.76202806508690402, -1.6288184538739239) +station = ('kael', 0.00066063436183714424) +zone = ('mnz093', 0.00038139985232642519) + +[56009] +centroid = (0.76204276075920585, -1.632693102266644) +station = ('kael', 0.0023000571921231953) +zone = ('mnz093', 0.0025024557093149343) + +[56010] +centroid = (0.76595805787020477, -1.6437476861362181) +station = ('kfrm', 0.0050893900947800762) +zone = ('mnz083', 0.0029523868766422744) + +[56011] +centroid = (0.77846161408478465, -1.6366413337406278) +station = ('kgyl', 0.0046729758937054944) +zone = ('mnz068', 0.0038268818216554601) + +[56013] +centroid = (0.76131576131258005, -1.6424209042921445) +station = ('kfrm', 0.0039863677845036359) +zone = ('mnz092', 0.0021805904759913154) + +[56014] +centroid = (0.76066960551690677, -1.637431217400203) +station = ('kfxy', 0.0066549641813229716) +zone = ('mnz092', 0.0022815632496328993) + +[56016] +centroid = (0.76379212172177224, -1.6291445511913667) +station = ('kael', 0.0014058921231816053) +zone = ('mnz093', 0.001542247067097444) + +[56017] +centroid = (0.7732742337484696, -1.6374597884400584) +station = ('kmkt', 0.0019671712460263354) +zone = ('mnz076', 0.0016056480109103413) + +[56019] +centroid = (0.76996763766739629, -1.6561241823812529) +station = ('kmwm', 0.0044900055607532971) +zone = ('mnz074', 0.0029873570397418894) + +[56020] +centroid = (0.76109237662161733, -1.6325518004104027) +station = ('kael', 0.0025411773473076062) +zone = ('mnz093', 0.0026586353138892166) + +[56021] +centroid = (0.77299433529632733, -1.6461251736432847) +station = ('kulm', 0.0023470184730600674) +zone = ('mnz075', 0.0013624216575044931) + +[56022] +centroid = (0.76887968667816575, -1.6552584990722636) +station = ('kjyg', 0.0037197018202258058) +zone = ('mnz082', 0.003117191096575793) + +[56023] +centroid = (0.76414596977432159, -1.6408462507877029) +station = ('kfrm', 0.0055850128847758987) +zone = ('mnz092', 0.0020658864750693578) + +[56024] +centroid = (0.7704510240570287, -1.6377963402797204) +station = ('kmkt', 0.0016050218830379109) +zone = ('mnz083', 0.0034363004682314404) + +[56025] +centroid = (0.76363818368174641, -1.6391669997011888) +station = ('kfrm', 0.0065528893245016999) +zone = ('mnz092', 0.0014374559577897811) + +[56026] +centroid = (0.76595126853941453, -1.6282350252115674) +station = ('kael', 0.0036596667728557757) +zone = ('mnz085', 0.0025188642947204117) + +[56027] +centroid = (0.75950993894871166, -1.642645318727366) +station = ('kfrm', 0.0044496146522396314) +zone = ('mnz092', 0.0034750239207903167) + +[56028] +centroid = (0.77189380048318978, -1.6356775454743844) +station = ('kacq', 0.0033705317613430068) +zone = ('mnz076', 0.0025380925192682795) + +[56029] +centroid = (0.75974264369788014, -1.6322716925187499) +station = ('kael', 0.0033203895485566727) +zone = ('mnz093', 0.0033311673520658139) + +[56031] +centroid = (0.76135749213499537, -1.6487865913130659) +station = ('kfrm', 0.00081121690706844479) +zone = ('mnz091', 0.001378334826413079) + +[56032] +centroid = (0.76381952339102865, -1.6328755415333549) +station = ('kael', 0.0027785359244995415) +zone = ('mnz093', 0.003056293957460334) + +[56033] +centroid = (0.76035373582888088, -1.6395299932790186) +station = ('kfrm', 0.0062263676369841217) +zone = ('mnz092', 0.0019036075500869735) + +[56034] +centroid = (0.76844400013699043, -1.6437853328881837) +station = ('kmkt', 0.0046714237567189827) +zone = ('mnz083', 0.0014451083705144467) + +[56035] +centroid = (0.76480406362207864, -1.6278860291743387) +station = ('kael', 0.0026735778931236275) +zone = ('mnz093', 0.0027349123069323974) + +[56036] +centroid = (0.76012373634005304, -1.6270137834273619) +station = ('kael', 0.002941129012367085) +zone = ('mnz093', 0.0026718931138149304) + +[56037] +centroid = (0.76824065182584056, -1.6415130363751347) +station = ('kmkt', 0.0038750845448706937) +zone = ('mnz083', 0.00036323983453264753) + +[56039] +centroid = (0.76206750952799918, -1.6460526552128645) +station = ('kfrm', 0.0013433578530023091) +zone = ('mnz091', 0.003026253170152475) + +[56041] +centroid = (0.77076017422743448, -1.6499136202242486) +station = ('kulm', 0.002742953583140105) +zone = ('mnz082', 0.0033517095569799388) + +[56042] +centroid = (0.76452810961404583, -1.6315993742375892) +station = ('kael', 0.0025753310748758969) +zone = ('mnz093', 0.0028415375185776668) + +[56043] +centroid = (0.76182576397330537, -1.6270377118914066) +station = ('kael', 0.0019153358125742616) +zone = ('mnz093', 0.001653085430318344) + +[56044] +centroid = (0.77780256030593908, -1.6398521112457667) +station = ('kgyl', 0.0036793399292533403) +zone = ('mnz076', 0.0044000501256395525) + +[56045] +centroid = (0.76370482035258758, -1.6268971779800363) +station = ('kael', 0.0023125157553720529) +zone = ('mnz093', 0.0022345288187755816) + +[56046] +centroid = (0.76732569787206739, -1.6278938831559726) +station = ('kowa', 0.0026689915060209685) +zone = ('mnz085', 0.0011586611621633093) + +[56047] +centroid = (0.76327197869809305, -1.6446847359583212) +station = ('kfrm', 0.0027212307217380745) +zone = ('mnz092', 0.0037446875937037823) + +[56048] +centroid = (0.76956404773116516, -1.6357417212309799) +station = ('kacq', 0.0021339214597628341) +zone = ('mnz084', 0.0020827115414128652) + +[56050] +centroid = (0.77258927928352461, -1.6396571405150266) +station = ('kmkt', 0.00093483267624547848) +zone = ('mnz076', 0.0032579592611517894) + +[56051] +centroid = (0.75987204240862294, -1.6355577809811124) +station = ('kfxy', 0.005487771956386658) +zone = ('iaz006', 0.0028078672114235279) + +[56052] +centroid = (0.77365944536767739, -1.6328934835180655) +station = ('kfbl', 0.003013561619954122) +zone = ('mnz076', 0.002280895938675408) + +[56054] +centroid = (0.77554111974083739, -1.6471328045803386) +station = ('kulm', 0.0026004850657668291) +zone = ('mnz075', 0.0021670969011313105) + +[56055] +centroid = (0.77018761896631771, -1.6447167802033882) +station = ('kulm', 0.0046630677893835289) +zone = ('mnz083', 0.0026710638216588221) + +[56056] +centroid = (0.76921356816407216, -1.650723383184004) +station = ('kjyg', 0.0015300672665877679) +zone = ('mnz082', 0.0017037494761550562) + +[56057] +centroid = (0.77476544306137374, -1.6355771541358095) +station = ('kmkt', 0.0039739015153185796) +zone = ('mnz076', 0.0004084342843300524) + +[56058] +centroid = (0.77565519446074782, -1.6391036093427565) +station = ('kmkt', 0.0039289492293016152) +zone = ('mnz076', 0.0025991737895848109) + +[56060] +centroid = (0.76672982501214404, -1.6482844775405598) +station = ('kjyg', 0.001779027669490273) +zone = ('mnz082', 0.0023449016240802618) + +[56062] +centroid = (0.76875198093679731, -1.6478373241861988) +station = ('kjyg', 0.0020868454821057984) +zone = ('mnz082', 0.002776161671495352) + +[56063] +centroid = (0.77175021224562823, -1.63739358810153) +station = ('kmkt', 0.0012626671545253334) +zone = ('mnz076', 0.0028831592550260131) + +[56065] +centroid = (0.7669365069021653, -1.6393603647290176) +station = ('kmkt', 0.0047921808433020689) +zone = ('mnz083', 0.0023730861788900893) + +[56068] +centroid = (0.76559401709482366, -1.6372260364933384) +station = ('kacq', 0.0048258768118140515) +zone = ('mnz092', 0.003788421463085976) + +[56069] +centroid = (0.77513726800521854, -1.6326234985360744) +station = ('kfbl', 0.0031341716488780423) +zone = ('mnz076', 0.0024446801376997755) + +[56071] +centroid = (0.77728187623019152, -1.6332690609198022) +station = ('kfbl', 0.0048071097534902142) +zone = ('mnz069', 0.0020529445719486283) + +[56072] +centroid = (0.76618608513697772, -1.6321809703042314) +station = ('kacq', 0.0030720915365436956) +zone = ('mnz084', 0.0023188625545069166) + +[56073] +centroid = (0.77326515803635931, -1.6487208273068508) +station = ('kulm', 0.00048635366294099303) +zone = ('mnz074', 0.0034636925662539777) + +[56074] +centroid = (0.7737544087322783, -1.6440455265730711) +station = ('kulm', 0.0037953964504134812) +zone = ('mnz075', 0.00069806553766129796) + +[56075] +centroid = (0.76332055121117592, -1.6482311228253264) +station = ('kfrm', 0.0015056813081243711) +zone = ('mnz091', 0.0017921100527649352) + +[56078] +centroid = (0.76804821182251559, -1.6364359783008382) +station = ('kacq', 0.0028605645391781638) +zone = ('mnz084', 0.0021969156332368026) + +[56080] +centroid = (0.76934877882122421, -1.6380686290963238) +station = ('kmkt', 0.0025021718969735316) +zone = ('mnz084', 0.0035020209492988607) + +[56081] +centroid = (0.76778934458785986, -1.651593691615511) +station = ('kjyg', 0.00089898618603790237) +zone = ('mnz082', 0.0002940910519125145) + +[56082] +centroid = (0.77418070540207795, -1.6412546578326694) +station = ('kmkt', 0.0028779406527908386) +zone = ('mnz075', 0.0026292588672066986) + +[56083] +centroid = (0.77145165622378209, -1.6604041834927485) +station = ('kmwm', 0.0050289615773243812) +zone = ('mnz081', 0.0034338706613597958) + +[56085] +centroid = (0.77309308602540516, -1.653499730785029) +station = ('kulm', 0.0030035179254010022) +zone = ('mnz074', 0.00093269412018326197) + +[56087] +centroid = (0.77214254480818412, -1.6576307854981593) +station = ('krwf', 0.0055672758126375935) +zone = ('mnz074', 0.0030953832486888999) + +[56088] +centroid = (0.76487766415663516, -1.6483464367290055) +station = ('kfrm', 0.0030599247389090367) +zone = ('mnz091', 0.0029507570867998963) + +[56089] +centroid = (0.76029289365115638, -1.6306808598121421) +station = ('kael', 0.0022758338458706722) +zone = ('mnz093', 0.0022172355256103423) + +[56090] +centroid = (0.76718310447217952, -1.6448687983812367) +station = ('kjyg', 0.0039789984609178621) +zone = ('mnz083', 0.0026077978870957751) + +[56091] +centroid = (0.76667818071957761, -1.6350470801886863) +station = ('kacq', 0.0030128708510172141) +zone = ('mnz084', 0.0020308407080892425) + +[56093] +centroid = (0.7689671102203981, -1.6322211826901971) +station = ('kacq', 0.00049466701617401738) +zone = ('mnz084', 0.0010635809271788263) + +[56096] +centroid = (0.77221899022942142, -1.6336886729785665) +station = ('kacq', 0.0030600176245612096) +zone = ('mnz076', 0.0027153060444884422) + +[56097] +centroid = (0.76307484375908019, -1.6356053237499368) +station = ('kael', 0.0044225369781854184) +zone = ('mnz092', 0.0030724316127301648) + +[56098] +centroid = (0.7643323185785571, -1.6437819120428496) +station = ('kfrm', 0.0038742180604923199) +zone = ('mnz092', 0.0036083953804014177) + +[56101] +centroid = (0.76585005689609131, -1.6604016004054556) +station = ('kmwm', 0.00065905766758768305) +zone = ('mnz081', 0.0022966373109888556) + +[56110] +centroid = (0.76133956760357735, -1.674550530865768) +station = ('kotg', 0.0045913222640595729) +zone = ('mnz089', 0.0025845835459402835) + +[56111] +centroid = (0.76165046310323503, -1.6560157450748263) +station = ('kmjq', 0.0012843182041712691) +zone = ('mnz090', 0.0034801080100609412) + +[56113] +centroid = (0.77484616453927835, -1.6781893678232509) +station = ('kcnb', 0.0057818454266660097) +zone = ('mnz071', 0.0014519405597311808) + +[56114] +centroid = (0.76752977922150312, -1.6684170249952395) +station = ('kdvp', 0.0023836847030370184) +zone = ('mnz080', 0.0022790060105889699) + +[56115] +centroid = (0.77160058516885477, -1.6738714756136948) +station = ('ktkc', 0.0037966220859860719) +zone = ('mnz072', 0.0036575493304103115) + +[56116] +centroid = (0.76121454966925706, -1.6822590393065888) +station = ('klyv', 0.002161171138739002) +zone = ('mnz098', 0.0019839352271293254) + +[56117] +centroid = (0.75962167492742438, -1.6700597637938017) +station = ('kotg', 0.0025757010196382196) +zone = ('iaz002', 0.0026494518240830671) + +[56118] +centroid = (0.76708231170787688, -1.6585720764703449) +station = ('kmwm', 0.0012001589232888859) +zone = ('mnz081', 0.0021490561179893825) + +[56119] +centroid = (0.76294832484160302, -1.6661435242050067) +station = ('kotg', 0.0018825444928311122) +zone = ('mnz090', 0.003958897838199962) + +[56120] +centroid = (0.76728824310631971, -1.6544436746576778) +station = ('kjyg', 0.0029760948948933117) +zone = ('mnz082', 0.0022598137402627069) + +[56121] +centroid = (0.75984621153569343, -1.6510250109853337) +station = ('kfrm', 0.0030237145078681853) +zone = ('mnz091', 0.0024804490164841457) + +[56122] +centroid = (0.76617240175564216, -1.674748137043679) +station = ('kdvp', 0.0026692474375068069) +zone = ('mnz080', 0.0032441928732772907) + +[56123] +centroid = (0.76946220776931129, -1.6684023642295229) +station = ('ktkc', 0.0028326666810861881) +zone = ('mnz080', 0.0024227400439205383) + +[56125] +centroid = (0.76896044306265543, -1.6677121214169439) +station = ('ktkc', 0.0033972450156829785) +zone = ('mnz080', 0.002713048458433915) + +[56127] +centroid = (0.76004671496016252, -1.6539560471179631) +station = ('kest', 0.0025805458677077928) +zone = ('iaz004', 0.0031550081572691117) + +[56128] +centroid = (0.76587738875217759, -1.6774412324393837) +station = ('kpqn', 0.0031439054248835843) +zone = ('mnz097', 0.0030931451605907567) + +[56129] +centroid = (0.75972683101485705, -1.6762479159232102) +station = ('klyv', 0.0027196126415110818) +zone = ('iaz001', 0.0033586731636617126) + +[56131] +centroid = (0.76542892640087756, -1.668055480040689) +station = ('kotg', 0.0035952842665143113) +zone = ('mnz080', 0.0037631512704288258) + +[56132] +centroid = (0.77149649373226581, -1.671413231722138) +station = ('ktkc', 0.0021255462695549559) +zone = ('mnz080', 0.0031659787971052181) + +[56134] +centroid = (0.76437905849592547, -1.6796769643046032) +station = ('klyv', 0.0030606478538464338) +zone = ('mnz098', 0.0021199742292783018) + +[56136] +centroid = (0.77667586300731406, -1.6824140769040434) +station = ('kcnb', 0.0041010876558592842) +zone = ('mnz071', 0.0022108720130749556) + +[56137] +centroid = (0.76515873197937645, -1.6638345059644959) +station = ('kmwm', 0.0030610233140158506) +zone = ('mnz081', 0.0034641281372870094) + +[56138] +centroid = (0.75982179437945807, -1.6823145756833875) +station = ('klyv', 0.0026681780463783471) +zone = ('mnz098', 0.0029914814730079833) + +[56139] +centroid = (0.76975877411581017, -1.6786476738315323) +station = ('kpqn', 0.0027192985198722566) +zone = ('mnz097', 0.0017265642435007583) + +[56140] +centroid = (0.76633461265632252, -1.6819634852510561) +station = ('kpqn', 0.0014764869349406171) +zone = ('mnz097', 0.0024463317094727184) + +[56141] +centroid = (0.76579951216095354, -1.6720931421855452) +station = ('kdvp', 0.0019314344500215986) +zone = ('mnz080', 0.0025821768389563044) + +[56142] +centroid = (0.77610514034191191, -1.6795514053182148) +station = ('kcnb', 0.004370203134542977) +zone = ('mnz071', 0.0010582130539917118) + +[56143] +centroid = (0.76153258356555542, -1.6582142839736862) +station = ('kmjq', 0.00044123070620456372) +zone = ('mnz090', 0.0019740228182844885) + +[56144] +centroid = (0.76535117198270119, -1.6823578423955443) +station = ('kpqn', 0.0024899914349104622) +zone = ('mnz097', 0.0034324744249341773) + +[56145] +centroid = (0.76890015939029166, -1.6611296994095099) +station = ('kmwm', 0.0026044796852312006) +zone = ('mnz081', 0.00083420810402384045) + +[56146] +centroid = (0.76061557012326497, -1.6773213108664791) +station = ('klyv', 0.0015879433808701846) +zone = ('mnz098', 0.0025116203252213993) + +[56147] +centroid = (0.76371087664509196, -1.6765246378761136) +station = ('klyv', 0.0031021825838176142) +zone = ('mnz098', 0.0028566768412835938) + +[56149] +centroid = (0.77325341197049335, -1.6808491797901204) +station = ('kpqn', 0.0056011556276608495) +zone = ('mnz071', 0.0019526006585282342) + +[56150] +centroid = (0.76145695844906647, -1.6615039503610152) +station = ('kmjq', 0.0027273836211549785) +zone = ('mnz090', 0.00096724693219166148) + +[56151] +centroid = (0.76849379438054966, -1.6742842634350839) +station = ('kdvp', 0.0020030973703825533) +zone = ('mnz080', 0.0020923244694189803) + +[56152] +centroid = (0.7719671217650661, -1.6628265608681765) +station = ('ktkc', 0.0041921793315922657) +zone = ('mnz073', 0.0030329809969248372) + +[56153] +centroid = (0.76491942988563544, -1.6755702569345381) +station = ('kdvp', 0.0039362943590429177) +zone = ('mnz098', 0.0041201469841107459) + +[56155] +centroid = (0.76397337416459188, -1.6745524332746529) +station = ('kdvp', 0.0042598961335586433) +zone = ('mnz089', 0.0029610698671958275) + +[56156] +centroid = (0.76204185318799489, -1.6794790439674274) +station = ('klyv', 0.00072456318037189083) +zone = ('mnz098', 0.0003996665924133203) + +[56157] +centroid = (0.77499905538175307, -1.6746150905947992) +station = ('kmml', 0.0018261168766164669) +zone = ('mnz072', 0.001373391635055811) + +[56158] +centroid = (0.76167275095778308, -1.6768861653773721) +station = ('klyv', 0.0017645914152042521) +zone = ('mnz098', 0.0022846684399192548) + +[56159] +centroid = (0.76691821585160447, -1.6568743074404675) +station = ('kmwm', 0.0022840087738395082) +zone = ('mnz082', 0.0040449264680494351) + +[56160] +centroid = (0.76517253753375969, -1.6546547547774137) +station = ('kmjq', 0.0040251672282058297) +zone = ('mnz082', 0.0033874762165067842) + +[56161] +centroid = (0.76283159722122973, -1.6637320900439887) +station = ('kotg', 0.0034114822087648071) +zone = ('mnz090', 0.0022299411610446278) + +[56162] +centroid = (0.76518210193806058, -1.6522813164342118) +station = ('kjyg', 0.0028833225102473151) +zone = ('mnz082', 0.0024810749741086624) + +[56164] +centroid = (0.76900116159410448, -1.6814970460084606) +station = ('kpqn', 0.001386184768918866) +zone = ('mnz097', 0.001241652529932382) + +[56165] +centroid = (0.76315120191385499, -1.6703334488738069) +station = ('kotg', 0.0020030748154628549) +zone = ('mnz089', 0.0010955760476873569) + +[56166] +centroid = (0.77148790671234602, -1.664712249498616) +station = ('ktkc', 0.0029406843567692229) +zone = ('mnz073', 0.0038457424553118582) + +[56167] +centroid = (0.76015942832325634, -1.6651964387397045) +station = ('kotg', 0.0027715647835220799) +zone = ('iaz002', 0.0040983733039127862) + +[56168] +centroid = (0.76126877704911644, -1.6721910377032894) +station = ('kotg', 0.0029126277645603743) +zone = ('mnz089', 0.0012171796769487192) + +[56169] +centroid = (0.77384991314894758, -1.6756297028488614) +station = ('kmml', 0.0030665472799152747) +zone = ('mnz072', 0.0024673625342607943) + +[56170] +centroid = (0.77097626344212378, -1.6770965997252849) +station = ('kpqn', 0.0043674726766264596) +zone = ('mnz097', 0.0033694244686848346) + +[56171] +centroid = (0.7622077118268118, -1.6539052231301448) +station = ('kmjq', 0.0028218746947994981) +zone = ('mnz091', 0.0026602010416598982) + +[56172] +centroid = (0.76819206185946498, -1.6715980620899245) +station = ('kdvp', 0.00048785050094896977) +zone = ('mnz080', 0.00020754841358084313) + +[56173] +centroid = (0.75964967000862638, -1.6798091729954419) +station = ('klyv', 0.0017257579984362944) +zone = ('iaz001', 0.0025573780619546566) + +[56174] +centroid = (0.76822998786411079, -1.6633876493161077) +station = ('kmwm', 0.0030450830031251534) +zone = ('mnz081', 0.0015634700774689266) + +[56175] +centroid = (0.77248527511339815, -1.6692105214863662) +station = ('ktkc', 0.00044002374884899393) +zone = ('mnz072', 0.0036626174733334891) + +[56176] +centroid = (0.76416251549563052, -1.6531844719622413) +station = ('kjyg', 0.0040915486221308655) +zone = ('mnz091', 0.0028616687821520462) + +[56177] +centroid = (0.76600966725618624, -1.6799295483539518) +station = ('kpqn', 0.0018293780432995126) +zone = ('mnz097', 0.0023377369839765287) + +[56178] +centroid = (0.77291225246160611, -1.6778408081183351) +station = ('kmml', 0.0048917709561574155) +zone = ('mnz071', 0.0027898125091332321) + +[56180] +centroid = (0.77224194130908508, -1.6660841830104389) +station = ('ktkc', 0.0018463190504303848) +zone = ('mnz073', 0.0037619015636288218) + +[56181] +centroid = (0.76231972705820483, -1.6515490809998299) +station = ('kfrm', 0.0026966915670355892) +zone = ('mnz091', 0.00095743058871641622) + +[56183] +centroid = (0.76845126070667857, -1.6655873575855662) +station = ('ktkc', 0.0044262518783354321) +zone = ('mnz081', 0.0031600577826677327) + +[56185] +centroid = (0.76442862584668203, -1.672448456314666) +station = ('kdvp', 0.003325234217832566) +zone = ('mnz089', 0.0023467108743517344) + +[56186] +centroid = (0.76852480888135766, -1.6768121285105024) +station = ('kpqn', 0.003165130582556218) +zone = ('mnz097', 0.0023201658584852394) + +[56187] +centroid = (0.76139414404928718, -1.6682274124253029) +station = ('kotg', 0.0004422350015703501) +zone = ('mnz089', 0.0023262306606043866) + +[56201] +centroid = (0.78718162809359871, -1.6587926162746269) +station = ('kbdh', 0.0011298233247836365) +zone = ('mnz057', 0.00098786161008137499) + +[56207] +centroid = (0.79397991242291932, -1.6766718913051044) +station = ('kmox', 0.0017871091282138836) +zone = ('mnz047', 0.0018341561881184093) + +[56208] +centroid = (0.78970422227467618, -1.6755993341198763) +station = ('kaqp', 0.00033551677695292127) +zone = ('mnz054', 0.0048520661010295124) + +[56209] +centroid = (0.78761874580476066, -1.6547835775295037) +station = ('kljf', 0.0037917505826402043) +zone = ('mnz057', 0.0024125144127713073) + +[56210] +centroid = (0.79517000007997674, -1.6853835975466791) +station = ('keth', 0.0036301109462445018) +zone = ('mnz046', 0.0030031818061214354) + +[56211] +centroid = (0.79550391647246832, -1.687626153649274) +station = ('keth', 0.0038155924000562546) +zone = ('mnz039', 0.0043246645283679976) + +[56212] +centroid = (0.78768232814941086, -1.681168033991167) +station = ('kdxx', 0.003102578168178488) +zone = ('mnz054', 0.0030028239760192888) + +[56214] +centroid = (0.77848100469277426, -1.6636928899489889) +station = ('kgdb', 0.0038957573368344958) +zone = ('mnz073', 0.0035934201372999209) + +[56215] +centroid = (0.7909433536837146, -1.6680452175046871) +station = ('kbbb', 0.00095805718726866445) +zone = ('mnz055', 0.0014761086135730904) + +[56216] +centroid = (0.78439472125059917, -1.6590991309978622) +station = ('kovl', 0.0028793896620524944) +zone = ('mnz057', 0.0037246314495223871) + +[56218] +centroid = (0.78237792348674973, -1.674477017597674) +station = ('kmve', 0.0036881049333356455) +zone = ('mnz064', 0.0021297988941228964) + +[56219] +centroid = (0.79600369150377692, -1.6897977621177755) +station = ('k8d3', 0.0022622790237736101) +zone = ('sdz008', 0.0016066796818455763) + +[56220] +centroid = (0.78072253105111067, -1.6806689221849744) +station = ('kcnb', 0.00044511117769750692) +zone = ('sdz023', 0.0046463243954222959) + +[56221] +centroid = (0.79496488898628237, -1.6788821762698303) +station = ('kmox', 0.0027831378738377944) +zone = ('mnz047', 0.0024443792811991512) + +[56222] +centroid = (0.7851433278733646, -1.6642894958471981) +station = ('kbdh', 0.0036519121843670197) +zone = ('mnz056', 0.0026683729051277106) + +[56223] +centroid = (0.78124679305182465, -1.6723530740710444) +station = ('kgdb', 0.0032625847144772901) +zone = ('mnz064', 0.0010099529870708384) + +[56224] +centroid = (0.77445170267503516, -1.6589726993468477) +station = ('krwf', 0.0031168045544908277) +zone = ('mnz073', 0.0025735950457575585) + +[56225] +centroid = (0.79309513521191333, -1.6832419389281421) +station = ('kvvv', 0.0023745462262416313) +zone = ('mnz046', 0.00046691761530305852) + +[56226] +centroid = (0.79275675077653673, -1.6698982161182372) +station = ('kbbb', 0.0018638804892134389) +zone = ('mnz055', 0.0024248753254406683) + +[56227] +centroid = (0.7904742964472411, -1.6784626863841134) +station = ('kaqp', 0.0023052956723593936) +zone = ('mnz046', 0.0037938995074199146) + +[56228] +centroid = (0.78454707104100585, -1.6525681263901921) +station = ('kljf', 0.0033632296268876769) +zone = ('mnz058', 0.0035755041276353881) + +[56229] +centroid = (0.7783127549528821, -1.6705660489032201) +station = ('kmml', 0.002806593458176325) +zone = ('mnz064', 0.0028466620345455286) + +[56230] +centroid = (0.78126983139795092, -1.6595298782572545) +station = ('kovl', 0.00068819416903027517) +zone = ('mnz065', 0.0018131793143081735) + +[56231] +centroid = (0.79027541617897634, -1.6713832469655889) +station = ('kbbb', 0.0015341542343771913) +zone = ('mnz055', 0.0010062348964594685) + +[56232] +centroid = (0.78422212564086946, -1.676131066129789) +station = ('kdxx', 0.0019926582872205009) +zone = ('mnz054', 0.0020297360134486071) + +[56235] +centroid = (0.79778481745872953, -1.6758042183207682) +station = ('kmox', 0.002569480972035439) +zone = ('mnz047', 0.0021663253153144757) + +[56236] +centroid = (0.79699533522488242, -1.6827760058310297) +station = ('keth', 0.0022863296142568595) +zone = ('mnz039', 0.0019971147601215585) + +[56237] +centroid = (0.77870679793810482, -1.6656280761170152) +station = ('kgdb', 0.0028243433200391519) +zone = ('mnz073', 0.0043362990141366077) + +[56239] +centroid = (0.77674469879301278, -1.6739528952233003) +station = ('kmml', 0.0015027542723646656) +zone = ('mnz072', 0.0018158944776965264) + +[56240] +centroid = (0.7952172286895357, -1.6839584838525483) +station = ('keth', 0.0036128464792397953) +zone = ('mnz046', 0.0025429054412104178) + +[56241] +centroid = (0.78187048646002488, -1.6680621821050166) +station = ('kgdb', 0.00081046332945711088) +zone = ('mnz056', 0.0039176650393550356) + +[56243] +centroid = (0.78836941191604348, -1.6525909727501005) +station = ('kljf', 0.0025486996471499454) +zone = ('mnz058', 0.0021241367584380858) + +[56244] +centroid = (0.79373877773346391, -1.6716846304208233) +station = ('kbbb', 0.0032363534007318054) +zone = ('mnz047', 0.0032849382193000046) + +[56245] +centroid = (0.77988367345272458, -1.6698822114489964) +station = ('kgdb', 0.0019278095843754276) +zone = ('mnz064', 0.0024362334011002905) + +[56248] +centroid = (0.79911913912517185, -1.6778864659315673) +station = ('ky63', 0.0039083569450187429) +zone = ('mnz040', 0.0029865620103851505) + +[56249] +centroid = (0.7909621857863437, -1.6738506189291333) +station = ('kaqp', 0.0020087700652448412) +zone = ('mnz055', 0.0028112891592088165) + +[56251] +centroid = (0.78790749307621066, -1.6566709242227327) +station = ('kbdh', 0.0026157258868304677) +zone = ('mnz057', 0.0010515683416735611) + +[56252] +centroid = (0.78850926514900577, -1.6634754044708979) +station = ('kbdh', 0.0024391290566994064) +zone = ('mnz056', 0.0041704640149520817) + +[56253] +centroid = (0.78469938592482735, -1.6558379832905108) +station = ('kovl', 0.0037346392720615938) +zone = ('mnz057', 0.0037336484393231785) + +[56255] +centroid = (0.7748749799252288, -1.665381181841028) +station = ('ktkc', 0.0034919035585851263) +zone = ('mnz073', 0.002065916986932734) + +[56256] +centroid = (0.78589891581313798, -1.6790489948397358) +station = ('kdxx', 0.00080296767041394151) +zone = ('mnz054', 0.00068038252762543455) + +[56257] +centroid = (0.7848616142788003, -1.6825349409547441) +station = ('kdxx', 0.0027857166014218127) +zone = ('mnz054', 0.0028596431326918048) + +[56258] +centroid = (0.77573026107187604, -1.6712952998245809) +station = ('kmml', 0.00073210612736457218) +zone = ('mnz072', 0.0011567746673076314) + +[56260] +centroid = (0.78475719122965348, -1.666492677321868) +station = ('kgdb', 0.0037780594174941866) +zone = ('mnz056', 0.0014581136705417283) + +[56262] +centroid = (0.78740653122101067, -1.6732420400722554) +station = ('kaqp', 0.0025666382190762493) +zone = ('mnz055', 0.0037313367776073852) + +[56263] +centroid = (0.77530117187527325, -1.6673558822633194) +station = ('ktkc', 0.0031536576033708618) +zone = ('mnz072', 0.0038239808339324351) + +[56264] +centroid = (0.77789761093700271, -1.6752493257916816) +station = ('kmml', 0.0029630411765020218) +zone = ('mnz064', 0.002928936976970904) + +[56265] +centroid = (0.78539507416467225, -1.6703932264006875) +station = ('kmve', 0.00059218805097992861) +zone = ('mnz056', 0.0017700187547764646) + +[56266] +centroid = (0.77529382403912239, -1.6565714230020765) +station = ('krwf', 0.0030791081158970664) +zone = ('mnz074', 0.0038984562153099849) + +[56267] +centroid = (0.79556564876811142, -1.6742719065039797) +station = ('kmox', 0.00054025345719699075) +zone = ('mnz047', 0.00087659895294092726) + +[56270] +centroid = (0.77789979259856767, -1.6578425288430114) +station = ('krwf', 0.0012451102412100823) +zone = ('mnz065', 0.0027753422329937186) + +[56271] +centroid = (0.78966992655487456, -1.6651312855987275) +station = ('kbbb', 0.0032601250317786266) +zone = ('mnz056', 0.004362727473969639) + +[56273] +centroid = (0.79094614621051773, -1.6577126239867856) +station = ('kbdh', 0.0039154650877378889) +zone = ('mnz057', 0.002904222274354338) + +[56274] +centroid = (0.80114487297479153, -1.6798048271256045) +station = ('keth', 0.0042224264740811542) +zone = ('mnz039', 0.0035638547432905281) + +[56276] +centroid = (0.78969917827313785, -1.6811745789758621) +station = ('kvvv', 0.0016063766333904279) +zone = ('mnz046', 0.0033116909921732493) + +[56277] +centroid = (0.78114263180206567, -1.6578098911859991) +station = ('kovl', 0.00070454380501539275) +zone = ('mnz065', 0.00069887288775950861) + +[56278] +centroid = (0.79147196155426613, -1.6821475476739713) +station = ('kvvv', 0.00092026234191270304) +zone = ('mnz046', 0.0014151732492586717) + +[56279] +centroid = (0.78921748485288001, -1.6610271089560777) +station = ('kbdh', 0.0017932444152238454) +zone = ('mnz057', 0.0023379868945890146) + +[56280] +centroid = (0.77898594589866876, -1.6784528950870097) +station = ('kcnb', 0.0019089030035689526) +zone = ('mnz071', 0.00403199090494024) + +[56281] +centroid = (0.78458201253263071, -1.6610169511398314) +station = ('kbdh', 0.0029505507429086072) +zone = ('mnz057', 0.0040242697846985653) + +[56282] +centroid = (0.78609858147956613, -1.6620502907767669) +station = ('kbdh', 0.0018481858007227553) +zone = ('mnz057', 0.0033813334931144697) + +[56283] +centroid = (0.77716012206157237, -1.6604858299951568) +station = ('krwf', 0.0007900270165704927) +zone = ('mnz073', 0.0026000851219903777) + +[56284] +centroid = (0.78159144321921603, -1.6615246848725289) +station = ('kovl', 0.0020520284128061977) +zone = ('mnz065', 0.0032579311966594413) + +[56285] +centroid = (0.78171031759456933, -1.6641026408974795) +station = ('kgdb', 0.0026726611829581688) +zone = ('mnz056', 0.0049045765478050061) + +[56287] +centroid = (0.77624848423337833, -1.6637601025784832) +station = ('krwf', 0.0032913287006804087) +zone = ('mnz073', 0.0015488080058894712) + +[56288] +centroid = (0.78960800227301375, -1.6572156065756949) +station = ('kbdh', 0.0030495178661814511) +zone = ('mnz057', 0.0016830721013136125) + +[56289] +centroid = (0.79121339102558319, -1.6619801983540068) +station = ('kbdh', 0.0038977667812544171) +zone = ('mnz057', 0.0041523815465625852) + +[56291] +centroid = (0.77888358233803934, -1.6769456811048649) +station = ('kcnb', 0.002778831725223981) +zone = ('mnz064', 0.0030768796667496752) + +[56292] +centroid = (0.77670766290628546, -1.6660302348832599) +station = ('kgdb', 0.0045509542054519257) +zone = ('mnz073', 0.0030526970679452419) + +[56293] +centroid = (0.77521430683840153, -1.6625993189995667) +station = ('krwf', 0.0032036869732108798) +zone = ('mnz073', 0.00023582152217218442) + +[56294] +centroid = (0.77341157370730906, -1.661789643306274) +station = ('krwf', 0.0044397734140357329) +zone = ('mnz073', 0.0016575852294098406) + +[56295] +centroid = (0.78602321816246501, -1.6724910248951224) +station = ('kmve', 0.0018164917299097162) +zone = ('mnz056', 0.0032167271388276954) + +[56296] +centroid = (0.79982906925171304, -1.6835875664799145) +station = ('keth', 0.0013587992767857787) +zone = ('mnz039', 0.00096166840664705982) + +[56297] +centroid = (0.77905623030764659, -1.6673020388558955) +station = ('kgdb', 0.0020582946815043391) +zone = ('mnz073', 0.0053178247939060976) + +[56301] +centroid = (0.79389938293123241, -1.6448467548727841) +station = ('kstc', 0.0026006914664244533) +zone = ('mnz050', 0.0047501502442247366) + +[56303] +centroid = (0.79542481815076793, -1.6443391084065488) +station = ('kstc', 0.0020453860518995005) +zone = ('mnz050', 0.003406019085578972) + +[56304] +centroid = (0.7946556340961215, -1.6416075459541304) +station = ('kstc', 0.000352940684215518) +zone = ('mnz050', 0.003028889469929403) + +[56307] +centroid = (0.79633806168187393, -1.6509248988994394) +station = ('kpex', 0.0048327906172585412) +zone = ('mnz049', 0.0013295523796566556) + +[56308] +centroid = (0.80072897846733382, -1.6648007202383999) +station = ('kaxn', 0.00026568622770144202) +zone = ('mnz041', 0.0012660048451346257) + +[56309] +centroid = (0.80423881813980191, -1.6721250991641492) +station = ('ky63', 0.0027292568954752545) +zone = ('mnz040', 0.003564797437219431) + +[56310] +centroid = (0.79646854249675314, -1.6484677022054341) +station = ('kstc', 0.005104760740314046) +zone = ('mnz049', 0.0024502408980830166) + +[56311] +centroid = (0.80106200474190681, -1.6736940105353517) +station = ('ky63', 0.0018383353596677597) +zone = ('mnz040', 0.0015515963640115474) + +[56312] +centroid = (0.79360335763680157, -1.657396876471807) +station = ('kpex', 0.0031442183801258581) +zone = ('mnz057', 0.005570318730170656) + +[56313] +centroid = (0.79908402310062177, -1.6328032849023222) +station = ('kpnm', 0.0041270066222170885) +zone = ('mnz044', 0.0028452004393595578) + +[56314] +centroid = (0.79961737826673862, -1.6481660220442269) +station = ('klxl', 0.0025675199917259551) +zone = ('mnz043', 0.0039903480539301636) + +[56315] +centroid = (0.80250485098123814, -1.6684314239615683) +station = ('kaxn', 0.0030780588394098305) +zone = ('mnz041', 0.0018885067285527328) + +[56316] +centroid = (0.79392062358822912, -1.6609017245026145) +station = ('kghw', 0.0033919664603399486) +zone = ('mnz048', 0.0038443836750622993) + +[56318] +centroid = (0.80028648514207568, -1.6523822662781471) +station = ('k14y', 0.0024743697340481085) +zone = ('mnz042', 0.0046629382403277839) + +[56319] +centroid = (0.803040352902335, -1.6618272551516546) +station = ('kaxn', 0.0033667204540118916) +zone = ('mnz041', 0.0031832860166374631) + +[56320] +centroid = (0.7935423758327369, -1.647640293966941) +station = ('kstc', 0.004554354313138516) +zone = ('mnz049', 0.002972923562113529) + +[56321] +centroid = (0.79550405609880848, -1.6474068387261944) +station = ('kstc', 0.0041787170752228368) +zone = ('mnz049', 0.0027712610658836194) + +[56323] +centroid = (0.79638731487336523, -1.6706975943689431) +station = ('kmox', 0.0031615140238295597) +zone = ('mnz047', 0.0034589825700396333) + +[56324] +centroid = (0.80580025950180612, -1.6738417701098258) +station = ('ky63', 0.0033788447272243643) +zone = ('mnz040', 0.0043044421993813286) + +[56325] +centroid = (0.7952211382270602, -1.6571352167103481) +station = ('kd39', 0.002577083558321344) +zone = ('mnz049', 0.0040841220888078247) + +[56326] +centroid = (0.8035418732628955, -1.6697706150966238) +station = ('kaxn', 0.0044613661853768203) +zone = ('mnz041', 0.0032184390182476643) + +[56327] +centroid = (0.79856620136484746, -1.6686743563401534) +station = ('kaxn', 0.003199574395936136) +zone = ('mnz048', 0.0035527733362345332) + +[56328] +centroid = (0.80206183405720433, -1.6496422040722714) +station = ('klxl', 0.0020346616543012123) +zone = ('mnz043', 0.0031856261412149343) + +[56329] +centroid = (0.79777371716468692, -1.6391227381513584) +station = ('kstc', 0.0032295193377223376) +zone = ('mnz050', 0.0010395497117079006) + +[56330] +centroid = (0.79854469890846291, -1.6363575955641312) +station = ('kpnm', 0.0040277689772428927) +zone = ('mnz044', 0.0035715060936731429) + +[56331] +centroid = (0.79724891411190479, -1.6523332574327512) +station = ('kd39', 0.0031947799192758026) +zone = ('mnz049', 0.0023262574522339226) + +[56332] +centroid = (0.80227657936836971, -1.6669294459671797) +station = ('kaxn', 0.0021887637746676914) +zone = ('mnz041', 0.00088135635766772716) + +[56334] +centroid = (0.7954230030083459, -1.6639407092494796) +station = ('kghw', 0.0013424502603429219) +zone = ('mnz048', 0.0013314136066578722) + +[56335] +centroid = (0.79587518291095249, -1.6556478122152136) +station = ('kd39', 0.0020885801922134214) +zone = ('mnz049', 0.0031512630461301991) + +[56336] +centroid = (0.79972192348893301, -1.6539200235222018) +station = ('k14y', 0.0018747890405175051) +zone = ('mnz042', 0.004659126143008294) + +[56338] +centroid = (0.80360411170402157, -1.6380645624791668) +station = ('kbrd', 0.0070822678592319024) +zone = ('mnz044', 0.0032787260313498399) + +[56339] +centroid = (0.79979449427923099, -1.6722165195103684) +station = ('ky63', 0.0034690626928872022) +zone = ('mnz040', 0.0030988233350943617) + +[56340] +centroid = (0.79865336310769208, -1.6480972909782832) +station = ('klxl', 0.0034613746947811941) +zone = ('mnz049', 0.0042571945130097967) + +[56342] +centroid = (0.80606617786663992, -1.6296124739638265) +station = ('kjmr', 0.005336918347152525) +zone = ('mnz036', 0.003965942990330925) + +[56343] +centroid = (0.79911488052179691, -1.6703665926763021) +station = ('kaxn', 0.0039676847282340043) +zone = ('mnz041', 0.0039993614001287122) + +[56345] +centroid = (0.80264932933671818, -1.6471288426829367) +station = ('klxl', 0.0007287682467163344) +zone = ('mnz043', 0.0013426586854259292) + +[56347] +centroid = (0.80228389229793551, -1.6558291693777882) +station = ('k14y', 0.00117955892798443) +zone = ('mnz042', 0.0018262672502593813) + +[56349] +centroid = (0.79807199393385275, -1.667016363363929) +station = ('kaxn', 0.002811562684621642) +zone = ('mnz048', 0.002585003711192886) + +[56350] +centroid = (0.80817521628145739, -1.627177565124369) +station = ('khzx', 0.0055554881879445002) +zone = ('mnz036', 0.0028532408641735521) + +[56352] +centroid = (0.79659968653674795, -1.6546831163777587) +station = ('kd39', 0.0019210092330559805) +zone = ('mnz049', 0.0028321940150037909) + +[56353] +centroid = (0.79942474627719595, -1.6341357041598799) +station = ('kpnm', 0.0044414507091158802) +zone = ('mnz044', 0.0023446383337387194) + +[56354] +centroid = (0.8038540253996147, -1.6624007528905675) +station = ('kaxn', 0.0038030355235063999) +zone = ('mnz041', 0.0032924056357033272) + +[56355] +centroid = (0.80182942601400875, -1.6623513426194434) +station = ('kaxn', 0.0022834876369387008) +zone = ('mnz041', 0.0025256463259614331) + +[56356] +centroid = (0.79637541172786663, -1.6537603608022293) +station = ('kd39', 0.002575951087988249) +zone = ('mnz049', 0.0021768186744912806) + +[56357] +centroid = (0.79757572701434076, -1.6371308113293497) +station = ('kpnm', 0.003556404140516329) +zone = ('mnz050', 0.0024163460939347985) + +[56358] +centroid = (0.80015448589074734, -1.6310096100300477) +station = ('kjmr', 0.0022800754470876272) +zone = ('mnz045', 0.0025783332239142122) + +[56359] +centroid = (0.80458924534701726, -1.6347679496814149) +station = ('kjmr', 0.0060549094121031457) +zone = ('mnz044', 0.0028519900747435989) + +[56360] +centroid = (0.80102742976942487, -1.6600971800773228) +station = ('kaxn', 0.0034803519783813395) +zone = ('mnz042', 0.0040487430058292334) + +[56361] +centroid = (0.80558795765159352, -1.6639563823061625) +station = ('kaxn', 0.0051196483296879758) +zone = ('mnz041', 0.0041387424265312842) + +[56362] +centroid = (0.79241220532890044, -1.6530383355439717) +station = ('kpex', 0.00066655417043790758) +zone = ('mnz049', 0.0028905194823704503) + +[56363] +centroid = (0.79755855297450107, -1.634542383328887) +station = ('kpnm', 0.0026396808133090231) +zone = ('mnz044', 0.0042195112366565785) + +[56364] +centroid = (0.80293887945962406, -1.641883465055578) +station = ('klxl', 0.0034943008224728057) +zone = ('mnz043', 0.0023724538801434278) + +[56367] +centroid = (0.79872820282601764, -1.643786851324633) +station = ('klxl', 0.0038384993945538709) +zone = ('mnz050', 0.0025003855352805048) + +[56368] +centroid = (0.79350600317112541, -1.6504091191988899) +station = ('kpex', 0.0027799542939120334) +zone = ('mnz049', 0.001654582725946071) + +[56369] +centroid = (0.79354904299047957, -1.6466370961661871) +station = ('kstc', 0.0038921428791981265) +zone = ('mnz049', 0.0035954065482414516) + +[56371] +centroid = (0.79295943586257078, -1.6517199836401852) +station = ('kpex', 0.0017159023461933635) +zone = ('mnz049', 0.0020963880561076127) + +[56373] +centroid = (0.80040345710854444, -1.6446335629046531) +station = ('klxl', 0.0021414501614856825) +zone = ('mnz043', 0.0027071539799604022) + +[56374] +centroid = (0.79709235807800094, -1.645903900800717) +station = ('kstc', 0.0037358075026728511) +zone = ('mnz050', 0.0037466406119787692) + +[56375] +centroid = (0.79763075724565613, -1.6453960798015568) +station = ('kstc', 0.0037982007682588036) +zone = ('mnz050', 0.0033565734851443087) + +[56376] +centroid = (0.79422331604040242, -1.6524686775294133) +station = ('kpex', 0.002468601847827196) +zone = ('mnz049', 0.0011493392875192915) + +[56377] +centroid = (0.79667567817237983, -1.6449342656814792) +station = ('kstc', 0.0029411707785044652) +zone = ('mnz050', 0.0031729226719397429) + +[56378] +centroid = (0.79805239388635285, -1.657840835873637) +station = ('kd39', 0.00074572836184134039) +zone = ('mnz042', 0.0061288478122282835) + +[56379] +centroid = (0.79656270300989818, -1.6420525001936337) +station = ('kstc', 0.0016153040232435112) +zone = ('mnz050', 0.0014558598340280416) + +[56381] +centroid = (0.79511395755769521, -1.6674503743890225) +station = ('kghw', 0.0031541596302368299) +zone = ('mnz048', 0.0012503153293283093) + +[56382] +centroid = (0.80124334445118905, -1.6510522730282498) +station = ('k14y', 0.0032619005661726976) +zone = ('mnz043', 0.0044005803442440181) + +[56384] +centroid = (0.79952560885466883, -1.6505095454440499) +station = ('klxl', 0.0036034362623920497) +zone = ('mnz049', 0.0045242915328462963) + +[56385] +centroid = (0.79763068743248589, -1.6621152344782335) +station = ('kghw', 0.0013600313478668567) +zone = ('mnz048', 0.0032758094412596085) + +[56386] +centroid = (0.80484687339790417, -1.63221919301485) +station = ('kjmr', 0.0049877078146370636) +zone = ('mnz044', 0.0033578196701838795) + +[56387] +centroid = (0.79469867391547566, -1.6447926322126798) +station = ('kstc', 0.0023378044638661492) +zone = ('mnz050', 0.0041299189640595889) + +[56389] +centroid = (0.79931665803662, -1.6596595736739701) +station = ('kd39', 0.0024896178018273913) +zone = ('mnz041', 0.0050010473838933553) + +[56401] +centroid = (0.80848745568463909, -1.6427948236310919) +station = ('kbrd', 0.0013488705039966184) +zone = ('mnz034', 0.002859187793259678) + +[56425] +centroid = (0.80885425408023837, -1.645426867409562) +station = ('kbrd', 0.0019773134482780961) +zone = ('mnz034', 0.0034543112685549498) + +[56431] +centroid = (0.81140239988156493, -1.6342557828124171) +station = ('kait', 0.0011928016347351844) +zone = ('mnz036', 0.0030306616590184713) + +[56433] +centroid = (0.81984586647040059, -1.652774738467043) +station = ('kpwc', 0.00573039023325161) +zone = ('mnz024', 0.0035173829720434049) + +[56434] +centroid = (0.80875833078454873, -1.6569222341817273) +station = ('ksaz', 0.0017099522289808703) +zone = ('mnz032', 0.0043374296183470362) + +[56435] +centroid = (0.81721427647753608, -1.6500262986807575) +station = ('kpwc', 0.002528927842430276) +zone = ('mnz033', 0.0045112368419194396) + +[56436] +centroid = (0.82311921402922339, -1.6526266821865965) +station = ('kbji', 0.006583266066069713) +zone = ('mnz024', 0.0028589796752808453) + +[56437] +centroid = (0.80718091965988881, -1.6590535255445076) +station = ('ksaz', 0.0038026074663320732) +zone = ('mnz042', 0.0036462887059635941) + +[56438] +centroid = (0.80527049971394826, -1.6549068501345718) +station = ('k14y', 0.00420395822806957) +zone = ('mnz042', 0.0015195998755577868) + +[56440] +centroid = (0.80532896824389, -1.6572788573077872) +station = ('k14y', 0.0043566788040996793) +zone = ('mnz042', 0.0014264138513176599) + +[56441] +centroid = (0.81293600324199988, -1.6402861920840304) +station = ('kbrd', 0.0035999862469710147) +zone = ('mnz034', 0.0019812686643685602) + +[56442] +centroid = (0.81467536346795244, -1.642380639546301) +station = ('kbrd', 0.0048576673740282081) +zone = ('mnz034', 0.0034241459644864555) + +[56443] +centroid = (0.80597362305640674, -1.6514275537240137) +station = ('ksaz', 0.0041835830555925256) +zone = ('mnz042', 0.003855168008854114) + +[56444] +centroid = (0.81019100175434067, -1.6384957460708718) +station = ('kbrd', 0.0030828081663141888) +zone = ('mnz034', 0.0025489379824976859) + +[56446] +centroid = (0.8051001032190761, -1.6597643108823823) +station = ('k14y', 0.0048764156175287255) +zone = ('mnz042', 0.0026239757049499914) + +[56447] +centroid = (0.81574432527492136, -1.6391255481314539) +station = ('kait', 0.0043071197305757092) +zone = ('mnz034', 0.0048483189778815664) + +[56448] +centroid = (0.81622448280543758, -1.6426913430597412) +station = ('kpwc', 0.003242119588757396) +zone = ('mnz034', 0.0049873889656984376) + +[56449] +centroid = (0.80607565500447831, -1.6449559077642038) +station = ('kbrd', 0.0040078396286408746) +zone = ('mnz043', 0.0030134187985777585) + +[56450] +centroid = (0.80688765198567614, -1.6376688439778622) +station = ('kbrd', 0.0046809576020890508) +zone = ('mnz034', 0.0052467134323149487) + +[56452] +centroid = (0.81954914304426896, -1.6484395325913068) +station = ('kpwc', 0.0041178674854740775) +zone = ('mnz025', 0.0036186711406391344) + +[56453] +centroid = (0.80836673126027869, -1.6611236431170058) +station = ('kadc', 0.0023821234240788297) +zone = ('mnz031', 0.0038332844385009588) + +[56455] +centroid = (0.81054795649295852, -1.6406201957429845) +station = ('kbrd', 0.00174968073903135) +zone = ('mnz034', 0.0011120935861071758) + +[56456] +centroid = (0.81398234558186289, -1.6464963528153065) +station = ('kpwc', 0.0016206060743387694) +zone = ('mnz033', 0.0028760379226793879) + +[56458] +centroid = (0.82367911565326313, -1.6576319897753433) +station = ('kpkd', 0.0052336923654337187) +zone = ('mnz024', 0.0016333475947345048) + +[56461] +centroid = (0.82435518639231564, -1.6555130727969596) +station = ('kbji', 0.0047695267465861025) +zone = ('mnz024', 0.0022781104943170164) + +[56464] +centroid = (0.81634093117313056, -1.6602287255430455) +station = ('kpkd', 0.0023220446638907489) +zone = ('mnz032', 0.0037541813047792089) + +[56465] +centroid = (0.81222959868054767, -1.6426058568329784) +station = ('kbrd', 0.0024076268642687698) +zone = ('mnz034', 0.0010917265062381891) + +[56466] +centroid = (0.81019112392738846, -1.6518271992161353) +station = ('ksaz', 0.0020912887473811545) +zone = ('mnz033', 0.002739653276452386) + +[56467] +centroid = (0.8201777931875448, -1.6548967097716178) +station = ('kpkd', 0.0033698170206999715) +zone = ('mnz024', 0.0023356642904382064) + +[56468] +centroid = (0.81140903213272253, -1.6456808477223122) +station = ('kbrd', 0.0024617393449492182) +zone = ('mnz033', 0.0033987086382060699) + +[56469] +centroid = (0.81648659635250198, -1.6330483465825949) +station = ('khzx', 0.0041861075890478839) +zone = ('mnz035', 0.0019360838914891955) + +[56470] +centroid = (0.82078471398163344, -1.6597832651580589) +station = ('kpkd', 0.0022575198912382312) +zone = ('mnz024', 0.0025861981926889365) + +[56472] +centroid = (0.81292659591733163, -1.6468263771235661) +station = ('kpwc', 0.0025993243252873193) +zone = ('mnz033', 0.0023620307122076438) + +[56473] +centroid = (0.80909146177887681, -1.6492192409813429) +station = ('ksaz', 0.0037956868624344758) +zone = ('mnz033', 0.0036828390645312942) + +[56474] +centroid = (0.81541526089775029, -1.6476404335932813) +station = ('kpwc', 0.00024701938936544637) +zone = ('mnz033', 0.0032473531472482393) + +[56475] +centroid = (0.80424281494378891, -1.6501388549642186) +station = ('klxl', 0.0032816440338218292) +zone = ('mnz043', 0.0035609375993026124) + +[56477] +centroid = (0.81410212752842737, -1.658065843720804) +station = ('kadc', 0.0042306781098404517) +zone = ('mnz032', 0.001090821945109677) + +[56479] +centroid = (0.810576265733426, -1.6544016820358747) +station = ('ksaz', 0.0010960005021871215) +zone = ('mnz032', 0.0032981073121892681) + +[56481] +centroid = (0.81114906534063791, -1.6566604697005132) +station = ('ksaz', 0.0021383768771722367) +zone = ('mnz032', 0.0020170061577498644) + +[56482] +centroid = (0.81095318703868657, -1.6606415657243121) +station = ('kadc', 0.00079639305768197546) +zone = ('mnz032', 0.0030152493508396102) + +[56484] +centroid = (0.8219391445620724, -1.6487838336928478) +station = ('kxvg', 0.0036261334323615343) +zone = ('mnz025', 0.0027853980185551918) + +[56501] +centroid = (0.81746480103836727, -1.6722688968412209) +station = ('kdtl', 0.00083128335247650517) +zone = ('mnz027', 0.0021553287634536403) + +[56510] +centroid = (0.82656716432641575, -1.6846767566529139) +station = ('kfar', 0.0081940652984607391) +zone = ('mnz002', 0.00099940845264504777) + +[56511] +centroid = (0.81751136642281041, -1.6754340688930052) +station = ('kdtl', 0.0013418137885571782) +zone = ('mnz027', 0.0018826421439730519) + +[56514] +centroid = (0.81406880919300684, -1.683000158466863) +station = ('kjkj', 0.004427993801246876) +zone = ('mnz003', 0.0044201339885052834) + +[56515] +centroid = (0.80798291590447258, -1.6701587588689748) +station = ('ky63', 0.0064595745294175619) +zone = ('mnz031', 0.0034470565980558154) + +[56516] +centroid = (0.82801971459638801, -1.675097377427003) +station = ('kfse', 0.0035537802851198048) +zone = ('mnz022', 0.0028378390406118086) + +[56517] +centroid = (0.83008449146137486, -1.6851089350822928) +station = ('kckn', 0.0051164990238342454) +zone = ('mnz002', 0.0042310297333116543) + +[56518] +centroid = (0.81140479098264029, -1.6624325527895389) +station = ('kadc', 0.00084154294665746469) +zone = ('mnz031', 0.0029000207651856927) + +[56519] +centroid = (0.82313115208130705, -1.6838758250591737) +station = ('kfar', 0.0056610588059710929) +zone = ('mnz002', 0.0028859974883907774) + +[56520] +centroid = (0.80790854742504514, -1.6841916947471998) +station = ('kbwp', 0.0015513981289835641) +zone = ('mnz029', 0.0012235657297790488) + +[56521] +centroid = (0.82029247877269329, -1.6738023605753156) +station = ('kdtl', 0.0029049766488223831) +zone = ('mnz027', 0.0011363395268097721) + +[56522] +centroid = (0.80515391171991502, -1.6821373898577248) +station = ('kbwp', 0.0033761339845100741) +zone = ('mnz029', 0.0040726929755036494) + +[56523] +centroid = (0.83165361227208778, -1.6897119966383325) +station = ('kckn', 0.0041813016254919726) +zone = ('mnz001', 0.0036562545867278046) + +[56524] +centroid = (0.80663508538962003, -1.6688049593280803) +station = ('ky63', 0.0060349020849345507) +zone = ('mnz031', 0.0038579247753741967) + +[56525] +centroid = (0.81448107341562037, -1.6886069763290172) +station = ('kjkj', 0.0031909508383291853) +zone = ('mnz003', 0.0050184534831098429) + +[56527] +centroid = (0.80945435063695148, -1.663642816452749) +station = ('kadc', 0.0018148895429210049) +zone = ('mnz031', 0.0018092711100401162) + +[56528] +centroid = (0.81195079978583418, -1.6724410561186376) +station = ('kdtl', 0.0054915145731316778) +zone = ('mnz030', 0.0030770619176677815) + +[56529] +centroid = (0.81816041946504214, -1.6875630076369368) +station = ('kjkj', 0.0007378831787147825) +zone = ('mnz003', 0.0023962830583269487) + +[56531] +centroid = (0.80262929295690522, -1.6751890944791952) +station = ('ky63', 7.3159627016734387e-05) +zone = ('mnz040', 0.0010021989364650324) + +[56533] +centroid = (0.80998990491792588, -1.6782470160484444) +station = ('kffm', 0.0021947346042404036) +zone = ('mnz030', 0.0016732088215863556) + +[56534] +centroid = (0.81108193997760636, -1.6757149970894063) +station = ('kffm', 0.0036849800499480557) +zone = ('mnz030', 0.0011450571876352451) + +[56535] +centroid = (0.83213080274287565, -1.6762466418328563) +station = ('kfse', 0.0034877325900529877) +zone = ('mnz015', 0.0014965637359058979) + +[56536] +centroid = (0.82112145780751311, -1.6846436128504187) +station = ('kjkj', 0.0039897558139599448) +zone = ('mnz003', 0.0027221202061188661) + +[56537] +centroid = (0.80765723746605056, -1.6770842951540581) +station = ('kffm', 0.0007388032248121716) +zone = ('mnz030', 0.0024428532441728426) + +[56540] +centroid = (0.8300386242086325, -1.6802211928719601) +station = ('kfse', 0.0058749822726336465) +zone = ('mnz002', 0.004591280420101893) + +[56541] +centroid = (0.82313904096952606, -1.6779857751660059) +station = ('kdtl', 0.0065136902579282681) +zone = ('mnz002', 0.0046914630215561049) + +[56542] +centroid = (0.82990974909666515, -1.6709122698669383) +station = ('kfse', 0.00086019800756710597) +zone = ('mnz015', 0.0028439353057674319) + +[56543] +centroid = (0.80786074285683307, -1.6814209671063662) +station = ('kffm', 0.0022723764865795215) +zone = ('mnz029', 0.0019875274102733225) + +[56544] +centroid = (0.81607724682973926, -1.6686292744855744) +station = ('kdtl', 0.0035729534560146031) +zone = ('mnz028', 0.0038209706673273422) + +[56545] +centroid = (0.82712252809440034, -1.6797389409463417) +station = ('kfse', 0.0065566446964052802) +zone = ('mnz002', 0.0027574314474270696) + +[56546] +centroid = (0.82205405704002377, -1.6882092157924877) +station = ('kfar', 0.0031010531548293549) +zone = ('mnz003', 0.0045928068055434701) + +[56547] +centroid = (0.8183756709216905, -1.6851804586750396) +station = ('kjkj', 0.0015725638076935307) +zone = ('mnz003', 0.0007546846469992461) + +[56548] +centroid = (0.8267323073802394, -1.6885251029338064) +station = ('kfar', 0.0076381456930249827) +zone = ('mnz002', 0.0035090646478827046) + +[56549] +centroid = (0.81764219630354007, -1.6809671640475552) +station = ('kjkj', 0.004189516482644289) +zone = ('mnz003', 0.0022672765135899626) + +[56550] +centroid = (0.82508578121720055, -1.6884849254544254) +station = ('kfar', 0.0060085561618178195) +zone = ('mnz002', 0.0035296373272596547) + +[56551] +centroid = (0.80839095643029646, -1.6658628927145784) +station = ('kadc', 0.0036685274353775348) +zone = ('mnz031', 0.0016426817186527961) + +[56552] +centroid = (0.82003605499899035, -1.6790817023099183) +station = ('kdtl', 0.0046493088962110034) +zone = ('mnz003', 0.0037723241829803215) + +[56553] +centroid = (0.81033589898884129, -1.6863066672814739) +station = ('kbwp', 0.00323051570765584) +zone = ('mnz029', 0.0021967342050068653) + +[56554] +centroid = (0.81830678277611435, -1.6775428804150199) +station = ('kdtl', 0.0029237725921060454) +zone = ('mnz027', 0.0024652886771115647) + +[56556] +centroid = (0.83187544362001631, -1.6734212330265577) +station = ('kfse', 0.0017531377118930012) +zone = ('mnz015', 0.0004563058067899454) + +[56557] +centroid = (0.82584131679709638, -1.6719374588162672) +station = ('kfse', 0.0048161229405093873) +zone = ('mnz022', 0.00021675280130883224) + +[56560] +centroid = (0.81754761691137434, -1.688354060667111) +station = ('kjkj', 0.00086706353902919503) +zone = ('mnz003', 0.0030523973806406215) + +[56565] +centroid = (0.80371689488028542, -1.6807108624468998) +station = ('ky63', 0.0039811556744021176) +zone = ('mnz040', 0.0040072408007997239) + +[56566] +centroid = (0.82447447964668952, -1.6687599298333786) +station = ('kfse', 0.0064602873029106309) +zone = ('mnz023', 0.0032875902183935385) + +[56567] +centroid = (0.8124477124771694, -1.6645975988200525) +station = ('kadc', 0.0026231764538935127) +zone = ('mnz031', 0.002645238347233788) + +[56568] +centroid = (0.82964170143014393, -1.6888313034977762) +station = ('kckn', 0.0057604991109073411) +zone = ('mnz002', 0.0051425423423789004) + +[56569] +centroid = (0.82159220801336097, -1.6730667915620627) +station = ('kdtl', 0.0042058036324150224) +zone = ('mnz027', 0.0025228363035816764) + +[56570] +centroid = (0.81887235672022307, -1.6644706784768475) +station = ('kpkd', 0.0035963569906140064) +zone = ('mnz028', 0.00062355924988567518) + +[56571] +centroid = (0.81042367159692408, -1.6675349704978666) +station = ('kadc', 0.0040017766944129554) +zone = ('mnz031', 0.0010460674839379085) + +[56572] +centroid = (0.81336144470046601, -1.6768026339193713) +station = ('kdtl', 0.0046331536688487456) +zone = ('mnz030', 0.0034881994922947527) + +[56573] +centroid = (0.81365101227666436, -1.6676320282575701) +station = ('kadc', 0.0050062340906804042) +zone = ('mnz031', 0.0037717708682008747) + +[56574] +centroid = (0.82383240792146584, -1.6879827767753339) +station = ('kfar', 0.0048465157209446816) +zone = ('mnz002', 0.0037598639410073012) + +[56575] +centroid = (0.82104489021322813, -1.6656521965672779) +station = ('kpkd', 0.0050402196001149632) +zone = ('mnz028', 0.0019181847161997328) + +[56576] +centroid = (0.81093428512288757, -1.6702698665291569) +station = ('kadc', 0.0058787675226039436) +zone = ('mnz030', 0.0039533662326759556) + +[56577] +centroid = (0.8198575427230963, -1.6720463673615915) +station = ('kdtl', 0.0026493534582390224) +zone = ('mnz027', 0.0015985378650417352) + +[56578] +centroid = (0.81927315412965107, -1.6692590067329867) +station = ('kdtl', 0.0034417516089610086) +zone = ('mnz028', 0.0027106766738384173) + +[56579] +centroid = (0.81094158059916088, -1.6814327306255246) +station = ('kffm', 0.003882137767674633) +zone = ('mnz029', 0.0024252514587134863) + +[56580] +centroid = (0.81569816131620609, -1.6860581149426974) +station = ('kjkj', 0.0019328947495700962) +zone = ('mnz003', 0.0030463822441741924) + +[56581] +centroid = (0.82837398152795783, -1.6888124888484397) +station = ('kckn', 0.0069779558338319125) +zone = ('mnz002', 0.0043305390403377796) + +[56583] +centroid = (0.80303593721932742, -1.682688913901355) +station = ('keth', 0.0045089879549113851) +zone = ('mnz039', 0.004226745507858609) + +[56584] +centroid = (0.82420854382856312, -1.6796595284653759) +station = ('kdtl', 0.0080097111800456894) +zone = ('mnz002', 0.0031411128532920986) + +[56585] +centroid = (0.82184704353744464, -1.6798148976753884) +station = ('kdtl', 0.006205379262927962) +zone = ('mnz003', 0.0044896582700845412) + +[56586] +centroid = (0.80840629787442142, -1.672564730149434) +station = ('kffm', 0.0038957169115423022) +zone = ('mnz030', 0.0027205049829918441) + +[56587] +centroid = (0.81396271062777803, -1.6730119358636724) +station = ('kdtl', 0.003448102396890937) +zone = ('mnz030', 0.0044638181667864896) + +[56588] +centroid = (0.80650156770184245, -1.6667361507525214) +station = ('kadc', 0.0054408509324672966) +zone = ('mnz031', 0.0035459909886261629) + +[56589] +centroid = (0.82322512060823438, -1.6710769067752789) +station = ('kdtl', 0.0060552329654051888) +zone = ('mnz022', 0.0028558254633824671) + +[56590] +centroid = (0.80373108440710417, -1.6781919509105441) +station = ('ky63', 0.0023695472044483706) +zone = ('mnz040', 0.0026569404213044479) + +[56591] +centroid = (0.82180498110247169, -1.6727651986673182) +station = ('kdtl', 0.0044360128136239716) +zone = ('mnz027', 0.002790401202766836) + +[56592] +centroid = (0.82969812792486086, -1.6756813820480128) +station = ('kfse', 0.0029395025384317242) +zone = ('mnz015', 0.0023471022271165562) + +[56593] +centroid = (0.81687582222898925, -1.6642319697950525) +station = ('kpkd', 0.0038148898645250077) +zone = ('mnz028', 0.0023799322272435399) + +[56594] +centroid = (0.81242032826120569, -1.6867381999390294) +station = ('kjkj', 0.0050830334995125856) +zone = ('mnz029', 0.0039432660443794142) + +[56601] +centroid = (0.82915986838354594, -1.6556894208645812) +station = ('kbji', 0.00082731847499096448) +zone = ('mnz017', 0.0022823378499423276) + +[56621] +centroid = (0.82761869029415724, -1.6652697251149957) +station = ('kfse', 0.0052199876213733423) +zone = ('mnz023', 0.0017756233766899425) + +[56623] +centroid = (0.84818556293319591, -1.651091787282515) +station = ('kbde', 0.0023787877899775086) +zone = ('mnz006', 0.0046455824357879913) + +[56626] +centroid = (0.82589919191509242, -1.6449048568835829) +station = ('kxvg', 0.0057858641842728166) +zone = ('mnz025', 0.0037835925412124769) + +[56627] +centroid = (0.84222838767699626, -1.6418438460815576) +station = ('kvwu', 0.0054870577587689453) +zone = ('mnz010', 0.0033017488055615868) + +[56628] +centroid = (0.83242099863760466, -1.6334543450731938) +station = ('kfoz', 0.0016998268193207226) +zone = ('mnz018', 0.0017227543384969912) + +[56629] +centroid = (0.84727294772062056, -1.642383152820424) +station = ('kbde', 0.0067874663618927309) +zone = ('mnz010', 0.0064203478506037843) + +[56630] +centroid = (0.83351739702041505, -1.6492970826659816) +station = ('kbji', 0.0068097519883204725) +zone = ('mnz017', 0.0041959544202986544) + +[56633] +centroid = (0.82586857884001252, -1.6493567380198151) +station = ('kbji', 0.0060048648311566257) +zone = ('mnz025', 0.0049061003046912558) + +[56634] +centroid = (0.83218564098797332, -1.6650114687455779) +station = ('kfse', 0.004671939113944896) +zone = ('mnz016', 0.0012484944185126897) + +[56636] +centroid = (0.8279481560970563, -1.6391993057456433) +station = ('kfoz', 0.0067997514200282072) +zone = ('mnz018', 0.004538784458606315) + +[56637] +centroid = (0.83091835741810016, -1.6376419484540887) +station = ('kfoz', 0.0037079604909546105) +zone = ('mnz018', 0.0015339217286547092) + +[56639] +centroid = (0.83632409589713219, -1.6325164574930497) +station = ('kfoz', 0.0027090310754591469) +zone = ('mnz018', 0.0049713312705138195) + +[56641] +centroid = (0.82418573237523951, -1.6450209561854257) +station = ('kxvg', 0.0040920578366890129) +zone = ('mnz025', 0.0020790318960351001) + +[56644] +centroid = (0.83421510984219227, -1.6667037050817266) +station = ('kfse', 0.0048362534852602387) +zone = ('mnz016', 0.0014705426841837362) + +[56646] +centroid = (0.83380651081100798, -1.6691059413575868) +station = ('kfse', 0.0035621471480376571) +zone = ('mnz016', 0.002882991222552856) + +[56647] +centroid = (0.83234638581208198, -1.6514083900088268) +station = ('kbji', 0.0049699261566400876) +zone = ('mnz017', 0.0023871892708043812) + +[56649] +centroid = (0.84779349217002786, -1.62170875044617) +station = ('kinl', 0.0055791464275546255) +zone = ('mnz011', 0.00883837198018903) + +[56650] +centroid = (0.83772411175661943, -1.6503393234821029) +station = ('kvwu', 0.0027653409911324776) +zone = ('mnz009', 0.0060328613646177705) + +[56651] +centroid = (0.82823720007447899, -1.66882663631739) +station = ('kfse', 0.0030383928921828428) +zone = ('mnz022', 0.0032022088504768654) + +[56652] +centroid = (0.83310645924803295, -1.6624002467450845) +station = ('kbji', 0.0055096709509885912) +zone = ('mnz016', 0.0016813117072170646) + +[56653] +centroid = (0.84250682005256694, -1.6320496691846038) +station = ('kinl', 0.0052957198221438686) +zone = ('mnz010', 0.0032704402079432992) + +[56654] +centroid = (0.84602987186747269, -1.6402040917960166) +station = ('kbde', 0.0086623357323782832) +zone = ('mnz010', 0.0046024312941885829) + +[56655] +centroid = (0.82080968964322931, -1.644646897220138) +station = ('kxvg', 0.00074949384773226172) +zone = ('mnz025', 0.0013089661265356647) + +[56657] +centroid = (0.83030557231772506, -1.6342270197863442) +station = ('kfoz', 0.0036660302857017958) +zone = ('mnz018', 0.0019510213858522348) + +[56658] +centroid = (0.83886356741207646, -1.6378588928801119) +station = ('kfoz', 0.00538773041293373) +zone = ('mnz010', 0.0031866795933945102) + +[56659] +centroid = (0.83170328434259955, -1.6409138124830476) +station = ('kfoz', 0.0048693321332306701) +zone = ('mnz018', 0.0033870840019408141) + +[56660] +centroid = (0.83760644165845, -1.6439671089297787) +station = ('kvwu', 0.0047334819307089443) +zone = ('mnz010', 0.0064374565188968034) + +[56661] +centroid = (0.83532440620817483, -1.6440195560738013) +station = ('kvwu', 0.0063527660867659539) +zone = ('mnz018', 0.0064465620975309185) + +[56662] +centroid = (0.81789952764845408, -1.6380437407011905) +station = ('kxvg', 0.004742469319005866) +zone = ('mnz025', 0.0061984372780387832) + +[56663] +centroid = (0.82844547021411952, -1.6484045736463895) +station = ('kbji', 0.0057705594158172779) +zone = ('mnz017', 0.0050819311930600424) + +[56666] +centroid = (0.83833813604076357, -1.6549428562770405) +station = ('kvwu', 0.0041276944046589716) +zone = ('mnz009', 0.0031734076133653711) + +[56667] +centroid = (0.83291627071944307, -1.6575132026664527) +station = ('kbji', 0.0039068634139195497) +zone = ('mnz017', 0.0025215367836662122) + +[56668] +centroid = (0.84846362878962367, -1.6292112402220855) +station = ('kinl', 0.0010199203335751719) +zone = ('mnz010', 0.0082457317326247118) + +[56669] +centroid = (0.84445923262031042, -1.6255202877331378) +station = ('kinl', 0.0044203174560695458) +zone = ('mnz010', 0.0079615905485800106) + +[56670] +centroid = (0.83519697971948681, -1.6556820904817227) +station = ('kbji', 0.0062198106507839702) +zone = ('mnz017', 0.0039404152682878876) + +[56671] +centroid = (0.83592776653058931, -1.6633927805841084) +station = ('kfse', 0.0076163929856909772) +zone = ('mnz016', 0.002683852434475381) + +[56672] +centroid = (0.82157018195820086, -1.6406416109329065) +station = ('kxvg', 0.0027994358604544376) +zone = ('mnz025', 0.0028174154610850007) + +[56673] +centroid = (0.85211040699520313, -1.6599038150494945) +station = ('krrt', 0.0034766500814139125) +zone = ('mnz006', 0.0024662050999880725) + +[56676] +centroid = (0.82972345265230729, -1.6614797600975826) +station = ('kbji', 0.0031698553899609243) +zone = ('mnz023', 0.004275911066109906) + +[56678] +centroid = (0.82766923502929501, -1.6601236043621979) +station = ('kbji', 0.002570552891451599) +zone = ('mnz023', 0.0033859918365337308) + +[56680] +centroid = (0.83180802155101186, -1.6398617629165304) +station = ('kfoz', 0.0042004428193317157) +zone = ('mnz018', 0.0026741767772701821) + +[56681] +centroid = (0.83098202702921298, -1.6447526990793939) +station = ('kfoz', 0.0075148704095204877) +zone = ('mnz018', 0.0060396189331498196) + +[56683] +centroid = (0.83315572989281672, -1.653718787059447) +station = ('kbji', 0.0046482427417180745) +zone = ('mnz017', 0.0019285387422344599) + +[56684] +centroid = (0.83523808222337126, -1.6702611049763119) +station = ('kfse', 0.0046698815613232213) +zone = ('mnz016', 0.0040572274206885075) + +[56685] +centroid = (0.84192393244227848, -1.6498819250450327) +station = ('kvwu', 0.0014845617151673853) +zone = ('mnz009', 0.0057519612787194137) + +[56686] +centroid = (0.85144227750424728, -1.6565216113052246) +station = ('kbde', 0.0035080548777830468) +zone = ('mnz006', 0.00022520636284832467) + +[56687] +centroid = (0.82904926686884695, -1.6579602163944733) +station = ('kbji', 0.00071700335549082538) +zone = ('mnz017', 0.0032059697792118998) + +[56688] +centroid = (0.83379549778342776, -1.6390767312722758) +station = ('kfoz', 0.0030765395996903127) +zone = ('mnz018', 0.0028594134635774801) + +[56701] +centroid = (0.83987329274423272, -1.6788677074903313) +station = ('ktvf', 0.00095708834482347948) +zone = ('mnz013', 0.0020494407497046083) + +[56710] +centroid = (0.84151723581997873, -1.6930011394268858) +station = ('kgfk', 0.0050924719457167257) +zone = ('mnz007', 0.003717468134629193) + +[56711] +centroid = (0.86064058154127776, -1.6573463317366695) +station = ('kfgn', 0.00067780445384693633) +zone = ('mnz006', 0.0094304893009792591) + +[56713] +centroid = (0.84389036000391537, -1.6897316839522949) +station = ('khco', 0.0071618346838226146) +zone = ('mnz007', 0.00058223139295211096) + +[56714] +centroid = (0.85143894392537589, -1.6755970651918488) +station = ('krox', 0.0036864565050226429) +zone = ('mnz005', 0.002235735263978847) + +[56715] +centroid = (0.83442400830036345, -1.6744911896712003) +station = ('kfse', 0.0042578817864478364) +zone = ('mnz014', 0.0021104662372370118) + +[56716] +centroid = (0.8332768731961977, -1.6852096929400104) +station = ('kckn', 0.001996835140060332) +zone = ('mnz001', 0.0025143841507842091) + +[56720] +centroid = (0.84770203691722334, -1.6911014881624302) +station = ('khco', 0.0032461996573797773) +zone = ('mnz004', 0.0038278073829713035) + +[56721] +centroid = (0.83722971233940702, -1.6920440008650921) +station = ('kgfk', 0.0027837837749427673) +zone = ('mnz001', 0.0035561231884411238) + +[56722] +centroid = (0.83749774255263576, -1.6867912754015828) +station = ('kckn', 0.0023825670841759743) +zone = ('mnz001', 0.0025129305059093093) + +[56723] +centroid = (0.83443158302931708, -1.6895909406014142) +station = ('kckn', 0.0023336034803749114) +zone = ('mnz001', 0.0013562677044661325) + +[56724] +centroid = (0.84553877112254638, -1.6709068767995496) +station = ('krox', 0.0070667118490410066) +zone = ('mnz008', 0.003389154196902929) + +[56725] +centroid = (0.84038244019362451, -1.6719851063048468) +station = ('ktvf', 0.0047257215699776896) +zone = ('mnz013', 0.0031490473993378222) + +[56726] +centroid = (0.85091428049893381, -1.6796909618452045) +station = ('krox', 0.0064219728360805249) +zone = ('mnz008', 0.0074715500264694876) + +[56727] +centroid = (0.84279710321375867, -1.6652546105636734) +station = ('ktvf', 0.009777099902925324) +zone = ('mnz009', 0.0051411966882023881) + +[56728] +centroid = (0.8514154343403515, -1.6931128230457211) +station = ('khco', 0.00091172030980898292) +zone = ('mnz004', 0.0025968898193843215) + +[56729] +centroid = (0.84944619679861888, -1.6854483841685133) +station = ('khco', 0.0045445708017625161) +zone = ('mnz004', 0.0030864603492948817) + +[56731] +centroid = (0.85369319373395935, -1.6942358027930391) +station = ('khco', 0.0031678466020291889) +zone = ('mnz004', 0.0040940195955066214) + +[56732] +centroid = (0.84795444643364681, -1.6836725291079015) +station = ('khco', 0.0062227960442650674) +zone = ('mnz007', 0.0052290290503229156) + +[56733] +centroid = (0.84889442840889329, -1.6911500781288058) +station = ('khco', 0.0020748736352316517) +zone = ('mnz004', 0.0027467534337903329) + +[56734] +centroid = (0.85120224237222042, -1.686031411405142) +station = ('khco', 0.0039302218189360433) +zone = ('mnz004', 0.0020746824768329564) + +[56735] +centroid = (0.85364359147661761, -1.6866044204518642) +station = ('khco', 0.0044774291608593673) +zone = ('mnz004', 0.0028804754946468759) + +[56736] +centroid = (0.8326733383408581, -1.6788579685531049) +station = ('ktvf', 0.0062489821872856914) +zone = ('mnz014', 0.0030607818624786534) + +[56737] +centroid = (0.84534097295841792, -1.6761568795494262) +station = ('ktvf', 0.0066416744766817437) +zone = ('mnz008', 0.0014300380186176055) + +[56738] +centroid = (0.84360327079525488, -1.6813752220266716) +station = ('ktvf', 0.0050059894823166291) +zone = ('mnz008', 0.0039583975793891979) + +[56741] +centroid = (0.86056719044623142, -1.6555010300251209) +station = ('kfgn', 0.00055906546983170455) +zone = ('mnz006', 0.0093557994934688523) + +[56742] +centroid = (0.83650648280396556, -1.6721479629773504) +station = ('ktvf', 0.0050148399645896955) +zone = ('mnz014', 0.0035148240396985528) + +[56744] +centroid = (0.84201324094010299, -1.6951965890929697) +station = ('kgaf', 0.0039818169667392876) +zone = ('mnz007', 0.0046595600385174246) + +[56748] +centroid = (0.83639610818206944, -1.6756953097754435) +station = ('ktvf', 0.0032348047896503533) +zone = ('mnz014', 0.0013265616989104681) + +[56750] +centroid = (0.83589095753666465, -1.6806560416550946) +station = ('ktvf', 0.0032971948951414413) +zone = ('mnz014', 0.0023611555466838538) + +[56751] +centroid = (0.85189210121236369, -1.670861410972535) +station = ('krox', 0.00079886066321699942) +zone = ('mnz005', 0.0010766219660138482) + +[56754] +centroid = (0.83774250752693546, -1.6788068129527292) +station = ('ktvf', 0.0011806541393608147) +zone = ('mnz014', 0.0024766429139771126) + +[56755] +centroid = (0.85469342447498464, -1.6946664453326763) +station = ('khco', 0.0041893556784573377) +zone = ('mnz004', 0.0049474751789833826) + +[56756] +centroid = (0.85334915443180615, -1.6674578269449285) +station = ('krrt', 0.0023347931439806394) +zone = ('mnz005', 0.0037483328096837225) + +[56757] +centroid = (0.84610225067155287, -1.6911914773386632) +station = ('khco', 0.0048221789600329471) +zone = ('mnz007', 0.0025804754718216113) + +[56758] +centroid = (0.84588026224399171, -1.6844389031824523) +station = ('khco', 0.0070706450025362988) +zone = ('mnz007', 0.0034819047429079709) + +[56759] +centroid = (0.84743638035177726, -1.676739383187279) +station = ('krox', 0.0066907949459435647) +zone = ('mnz008', 0.0035506048619278066) + +[56760] +centroid = (0.8420091394163608, -1.6834268042025131) +station = ('ktvf', 0.0044056536269509649) +zone = ('mnz007', 0.004151157585790901) + +[56761] +centroid = (0.84827673893332001, -1.6702138938200453) +station = ('krox', 0.004316821552564013) +zone = ('mnz005', 0.0032857808517434066) + +[56762] +centroid = (0.84070326661672601, -1.6884247115952316) +station = ('kckn', 0.0057454461935269076) +zone = ('mnz007', 0.003337790273650569) + +[56763] +centroid = (0.85198767544220289, -1.6643610194399447) +station = ('krrt', 0.0022053948374918179) +zone = ('mnz005', 0.0052193284608652458) + +[57001] +centroid = (0.7503031177049313, -1.6866456102222112) +station = ('korc', 0.0072909873332948029) +zone = ('sdz071', 0.002746827475645018) + +[57002] +centroid = (0.77311886453845713, -1.687330756673374) +station = ('kbkx', 0.0017466185442942608) +zone = ('sdz040', 0.0019091164782000741) + +[57003] +centroid = (0.76351719745799818, -1.6886990249937675) +station = ('kfsd', 0.0028453267913388022) +zone = ('sdz062', 0.0013383610943634063) + +[57004] +centroid = (0.75188407184797279, -1.6893254236623083) +station = ('kykn', 0.0080766723238376737) +zone = ('sdz067', 0.0035854591348967297) + +[57005] +centroid = (0.7608251143532595, -1.6857377073986162) +station = ('kfsd', 0.0020831838045969977) +zone = ('sdz062', 0.0029681070201721298) + +[57006] +centroid = (0.77345004076402313, -1.6894353270453066) +station = ('kbkx', 0.00036011055340619388) +zone = ('sdz040', 0.00095134938486005798) + +[57010] +centroid = (0.74733574381727563, -1.6897607262310483) +station = ('kykn', 0.0074520758048943177) +zone = ('sdz070', 0.0026341049094223395) + +[57012] +centroid = (0.76086831125224641, -1.6978073922144428) +station = ('kmds', 0.0078300166923360517) +zone = ('sdz061', 0.001805577858659762) + +[57013] +centroid = (0.75535015611609346, -1.6862934202324513) +station = ('kfsd', 0.0055811837677787295) +zone = ('sdz067', 0.0013266401042595854) + +[57014] +centroid = (0.75244290882116893, -1.6922075382160042) +station = ('kykn', 0.0064257669747692491) +zone = ('sdz070', 0.0034506888212510415) + +[57015] +centroid = (0.75779375669522575, -1.6926206925565364) +station = ('kfsd', 0.0040949089181231916) +zone = ('sdz066', 0.0028481476283977129) + +[57016] +centroid = (0.76618235013237845, -1.6922537021747195) +station = ('kmds', 0.0026019053070941958) +zone = ('sdz055', 0.0030315982654606213) + +[57017] +centroid = (0.7682093929789372, -1.6903357424064103) +station = ('kmds', 0.0028992371870290453) +zone = ('sdz056', 0.002238649080058571) + +[57018] +centroid = (0.76441743828617681, -1.6926378665963757) +station = ('kmds', 0.004071444597572446) +zone = ('sdz062', 0.003221442623878338) + +[57020] +centroid = (0.76238212257896365, -1.689830504494543) +station = ('kfsd', 0.0019255286311903668) +zone = ('sdz062', 0.00038342793666177504) + +[57021] +centroid = (0.75511348946952306, -1.69248406818269) +station = ('kfsd', 0.0062319586128010123) +zone = ('sdz066', 0.0023829246211684247) + +[57022] +centroid = (0.76516805203758198, -1.6880336705763224) +station = ('kfsd', 0.0045143846906614262) +zone = ('sdz062', 0.0030561042464330784) + +[57024] +centroid = (0.76774454198596109, -1.6873706898066598) +station = ('kpqn', 0.0045537657659904356) +zone = ('sdz056', 0.00059506016507082334) + +[57025] +centroid = (0.74575131646902271, -1.6876935233584012) +station = ('ksux', 0.0072531343701745495) +zone = ('sdz071', 0.0018917586619146016) + +[57026] +centroid = (0.77248154010879888, -1.6845637989437248) +station = ('kbkx', 0.0037920662951166331) +zone = ('sdz040', 0.0039009016071491747) + +[57027] +centroid = (0.75363313610456639, -1.684543326231599) +station = ('kfsd', 0.0076337190574931203) +zone = ('sdz067', 0.0031231959911123381) + +[57028] +centroid = (0.76902236734451623, -1.685984758754236) +station = ('kpqn', 0.0038078474969271527) +zone = ('sdz056', 0.0011297116497956466) + +[57029] +centroid = (0.75640932662595872, -1.7014315509529165) +station = ('kykn', 0.0074847303951112217) +zone = ('sdz065', 0.0034251353218903787) + +[57030] +centroid = (0.76337741403820591, -1.6845841320295105) +station = ('kfsd', 0.0039725934236846654) +zone = ('mnz098', 0.0035392196772975723) + +[57031] +centroid = (0.74831551929946771, -1.696210957000936) +station = ('kykn', 0.002627621659451111) +zone = ('sdz070', 0.0027716209034778358) + +[57032] +centroid = (0.75789512541818149, -1.6873517180776907) +station = ('kfsd', 0.0029227507513075171) +zone = ('sdz067', 0.0025959486856043301) + +[57033] +centroid = (0.76127722444269619, -1.6922876139220857) +station = ('kfsd', 0.0027337404170665676) +zone = ('sdz062', 0.0023553604494470641) + +[57034] +centroid = (0.75258475172947847, -1.6851818374851486) +station = ('klrj', 0.0075350571447565136) +zone = ('sdz067', 0.0035031335596140876) + +[57035] +centroid = (0.76143784709375717, -1.6943736488973618) +station = ('kfsd', 0.0042458825730614259) +zone = ('sdz062', 0.0037415170229753501) + +[57036] +centroid = (0.75534610695222881, -1.6953964118390306) +station = ('kykn', 0.0070352230137688829) +zone = ('sdz066', 0.0005832327133689758) + +[57037] +centroid = (0.75231651207673944, -1.6973195028753405) +station = ('kykn', 0.0036990279515307619) +zone = ('sdz069', 0.0024945165779737015) + +[57038] +centroid = (0.74325118467541829, -1.6855800867138688) +station = ('ksux', 0.0043124651313210848) +zone = ('nez014', 0.0033904503170241172) + +[57039] +centroid = (0.75638796379591422, -1.6907851821420914) +station = ('kfsd', 0.0045673279543556079) +zone = ('sdz067', 0.0021981192611066239) + +[57040] +centroid = (0.75155678770663881, -1.7032205657960884) +station = ('kykn', 0.0036239233632455472) +zone = ('sdz069', 0.0026200973517259214) + +[57041] +centroid = (0.76322853745301078, -1.6906590646503421) +station = ('kfsd', 0.0029561291796689725) +zone = ('sdz062', 0.0013659915338644032) + +[57042] +centroid = (0.76771076986493503, -1.695703973759817) +station = ('kmds', 0.0011255252305746165) +zone = ('sdz055', 0.00070661876305389926) + +[57043] +centroid = (0.75786753176270749, -1.6983809597665258) +station = ('kykn', 0.0088795143875519088) +zone = ('sdz066', 0.002827495020193894) + +[57045] +centroid = (0.75406964295049028, -1.7021914149493573) +station = ('kykn', 0.0053616566872775693) +zone = ('sdz069', 0.0038216266895145417) + +[57046] +centroid = (0.74975218707324687, -1.6983213916791551) +station = ('kykn', 0.0012130159432117884) +zone = ('sdz069', 0.001437912430424538) + +[57047] +centroid = (0.75957898417392067, -1.6966687045038569) +station = ('kfsd', 0.0059448625532148996) +zone = ('sdz061', 0.0033302271507815672) + +[57048] +centroid = (0.76344164215467936, -1.6964658972447748) +station = ('kmds', 0.0050829537047209208) +zone = ('sdz061', 0.0024280834908561133) + +[57049] +centroid = (0.74231411740002262, -1.6843754779174347) +station = ('ksux', 0.0030405598454105419) +zone = ('nez014', 0.0025573993367303339) + +[57050] +centroid = (0.77068859827481018, -1.6931925671392447) +station = ('kmds', 0.0025385696220395462) +zone = ('sdz055', 0.0027758594159564007) + +[57051] +centroid = (0.77200592043433791, -1.6988669641500362) +station = ('kmds', 0.0049212446465868752) +zone = ('sdz039', 0.0030645272936439204) + +[57052] +centroid = (0.75559415314552225, -1.7053257121266738) +station = ('kykn', 0.0077528531641785766) +zone = ('sdz065', 0.00094841119202094615) + +[57053] +centroid = (0.75764845803499703, -1.6954178270289524) +station = ('kfsd', 0.0057933354856648505) +zone = ('sdz066', 0.0017357618662261476) + +[57054] +centroid = (0.77023976940436722, -1.6975035652982557) +station = ('kmds', 0.00297797949583934) +zone = ('sdz055', 0.0025148674028103815) + +[57055] +centroid = (0.76213030647448587, -1.6884995513135572) +station = ('kfsd', 0.0014596780238532291) +zone = ('sdz062', 0.00061324955825353266) + +[57057] +centroid = (0.76972915587840385, -1.6922581527643119) +station = ('kmds', 0.002086472330480513) +zone = ('sdz055', 0.0025523905169386805) + +[57058] +centroid = (0.76337542436285866, -1.6998661302402178) +station = ('kmds', 0.0063175219743279894) +zone = ('sdz061', 0.001166735796332672) + +[57059] +centroid = (0.75257209809240155, -1.7063090306272475) +station = ('kykn', 0.0060108375825237217) +zone = ('sdz068', 0.0027512758034387735) + +[57061] +centroid = (0.77217464141312819, -1.6937375112915949) +station = ('kbkx', 0.0030141103387038696) +zone = ('sdz040', 0.003868600672866956) + +[57062] +centroid = (0.74780724451470193, -1.7094670468290984) +station = ('kykn', 0.0072908585221105908) +zone = ('sdz068', 0.002599733963811949) + +[57063] +centroid = (0.74927452536356098, -1.7049172876284147) +station = ('kykn', 0.0038571764978286576) +zone = ('sdz068', 0.0027503029496275836) + +[57064] +centroid = (0.758449110376057, -1.6907666641987278) +station = ('kfsd', 0.0027200880653854595) +zone = ('sdz067', 0.0036415778693252555) + +[57065] +centroid = (0.76627940789208193, -1.6862599622706904) +station = ('kpqn', 0.0039999421932464443) +zone = ('sdz056', 0.0021661211539316795) + +[57066] +centroid = (0.7503178482838182, -1.7081431971381682) +station = ('kykn', 0.0063397664251370889) +zone = ('sdz068', 0.00019748335753672487) + +[57067] +centroid = (0.75128730887013095, -1.701155073346108) +station = ('kykn', 0.0025019798033956474) +zone = ('sdz069', 0.0011431062803344614) + +[57068] +centroid = (0.76052748335591691, -1.6841659511407328) +station = ('klyv', 0.0036299370388636443) +zone = ('mnz098', 0.0035221882518831258) + +[57069] +centroid = (0.74775411669227121, -1.6925360615411069) +station = ('kykn', 0.0053755002458349679) +zone = ('sdz070', 0.0012469687001717389) + +[57070] +centroid = (0.75363434038175037, -1.6959950074125869) +station = ('kykn', 0.0053204060186681701) +zone = ('sdz066', 0.0023029795973037019) + +[57071] +centroid = (0.77270623379670067, -1.6922424622543364) +station = ('kbkx', 0.0018327394270283375) +zone = ('sdz040', 0.0026930795675265198) + +[57072] +centroid = (0.7502938500066032, -1.6962603498187676) +station = ('kykn', 0.0027874806374883817) +zone = ('sdz070', 0.0030108529198164583) + +[57073] +centroid = (0.75059556507439551, -1.6939303003607702) +station = ('kykn', 0.0044731788762381762) +zone = ('sdz070', 0.0018893985152611897) + +[57075] +centroid = (0.76802122903227976, -1.6922540337872771) +station = ('kmds', 0.0015429397760832882) +zone = ('sdz055', 0.0021607036401748115) + +[57076] +centroid = (0.7674478883729996, -1.6992477949928215) +station = ('kmds', 0.0036126440400480169) +zone = ('sdz054', 0.0032658807556010263) + +[57077] +centroid = (0.75610897291498291, -1.6887178745496891) +station = ('kfsd', 0.0045644146616102919) +zone = ('sdz067', 0.00086840046262976606) + +[57078] +centroid = (0.74901935822691945, -1.7007655682169407) +station = ('kykn', 0.00081000311328402799) +zone = ('sdz069', 0.0017594153816797742) + +[57103] +centroid = (0.7600181613735999, -1.6875611575879299) +station = ('kfsd', 0.0010008088835682495) +zone = ('sdz062', 0.0025801594438039826) + +[57104] +centroid = (0.76104739948679356, -1.6878842703923516) +station = ('kfsd', 0.00064318559350791057) +zone = ('sdz062', 0.0015998637449683084) + +[57105] +centroid = (0.75957245664251816, -1.6883548460652744) +station = ('kfsd', 0.0011151709384094178) +zone = ('sdz062', 0.0027771609452420204) + +[57106] +centroid = (0.75934638414450728, -1.6901761844061929) +station = ('kfsd', 0.0017476398317680822) +zone = ('sdz062', 0.0029762018921232615) + +[57107] +centroid = (0.76092201503333023, -1.6898350248973055) +station = ('kfsd', 0.00092439417901622311) +zone = ('sdz062', 0.0013859130684781989) + +[57108] +centroid = (0.75886088590648004, -1.6878203564351435) +station = ('kfsd', 0.0018992154966807212) +zone = ('sdz067', 0.0035081541292215183) + +[57110] +centroid = (0.76001213998768047, -1.6867318469405523) +station = ('kfsd', 0.0015101621583792526) +zone = ('sdz062', 0.0029294499629833504) + +[57117] +centroid = (0.75976351783573404, -1.6886928116216304) +station = ('kfsd', 0.00091131931967752236) +zone = ('sdz062', 0.002537194272498954) + +[57197] +centroid = (0.7596470171081634, -1.6884075899152695) +station = ('kfsd', 0.0010356843371668186) +zone = ('sdz062', 0.0026953992347567056) + +[57201] +centroid = (0.78429375395337142, -1.694588289488772) +station = ('katy', 0.00095460965992041034) +zone = ('sdz020', 0.001383903378083608) + +[57212] +centroid = (0.77455493890029059, -1.695397738289262) +station = ('kbkx', 0.004253376530528442) +zone = ('sdz039', 0.0043987794956795653) + +[57213] +centroid = (0.77760511120766096, -1.6847574955841111) +station = ('kcnb', 0.0043319772110596922) +zone = ('sdz023', 0.0039934417101218957) + +[57214] +centroid = (0.7767060572033736, -1.6965445417808698) +station = ('kbkx', 0.0059880389738918276) +zone = ('sdz022', 0.0030041415388111399) + +[57216] +centroid = (0.790690699821196, -1.6847624697724795) +station = ('kvvv', 0.0012936763256921329) +zone = ('mnz046', 0.0025922105366709539) + +[57217] +centroid = (0.78666319549258634, -1.7047940150233463) +station = ('katy', 0.007173808273968278) +zone = ('sdz019', 0.0037946312737271847) + +[57218] +centroid = (0.77933103239837309, -1.6858502287754922) +station = ('kcnb', 0.0041913473733534105) +zone = ('sdz023', 0.0021010742787412177) + +[57219] +centroid = (0.79047080578873719, -1.7068647783676676) +station = ('kabr', 0.0081007905996825485) +zone = ('sdz011', 0.0026727481286138422) + +[57220] +centroid = (0.77609651841540717, -1.6915288843896588) +station = ('kbkx', 0.0031752007262291224) +zone = ('sdz040', 0.0023221275801580859) + +[57221] +centroid = (0.77835804624697136, -1.7009375180548472) +station = ('katy', 0.0065170864607507475) +zone = ('sdz039', 0.003986278607666943) + +[57223] +centroid = (0.78034089735686951, -1.6931874184179514) +station = ('katy', 0.0037240279751982125) +zone = ('sdz022', 0.0022726423430100961) + +[57224] +centroid = (0.80039335165217529, -1.6953141370180913) +station = ('k8d3', 0.0038299010080894711) +zone = ('sdz008', 0.0046162525991902542) + +[57225] +centroid = (0.78344678057396344, -1.7056823527060263) +station = ('katy', 0.007154366435789792) +zone = ('sdz019', 0.00052367082776220845) + +[57226] +centroid = (0.78170080555014587, -1.6879789719575649) +station = ('kcnb', 0.0056840112014657634) +zone = ('sdz023', 0.00075321711367982785) + +[57227] +centroid = (0.79170840130803377, -1.687816918136517) +station = ('kvvv', 0.0035757321222677119) +zone = ('sdz021', 0.0033976181235863372) + +[57231] +centroid = (0.77425458518931489, -1.702953355887608) +station = ('kmds', 0.0085699895421652988) +zone = ('sdz039', 0.0010147635471126051) + +[57232] +centroid = (0.79627968041839481, -1.6998217116107546) +station = ('k8d3', 0.0050504339732351747) +zone = ('sdz007', 0.0034452306323481596) + +[57233] +centroid = (0.77688004907650487, -1.6999207764990978) +station = ('katy', 0.0074401642886436029) +zone = ('sdz039', 0.0027425653907662459) + +[57234] +centroid = (0.77859635350303857, -1.6911244043355089) +station = ('kbkx', 0.005501160886162041) +zone = ('sdz023', 0.0038357441516538382) + +[57235] +centroid = (0.78659118320764898, -1.6981202773894479) +station = ('katy', 0.0034414344431102392) +zone = ('sdz020', 0.0020554480908902841) + +[57236] +centroid = (0.78514592841395014, -1.7031904065066139) +station = ('katy', 0.0055848070748181827) +zone = ('sdz019', 0.0028463403707517836) + +[57237] +centroid = (0.78186734486737131, -1.6842514024609103) +station = ('kcnb', 0.003224668967527516) +zone = ('sdz023', 0.0021769881200779167) + +[57238] +centroid = (0.78318786097943016, -1.6905410629396149) +station = ('katy', 0.0036054333883901819) +zone = ('sdz023', 0.0031010075165154617) + +[57239] +centroid = (0.79428557193482119, -1.6981930401659637) +station = ('k8d3', 0.0047376391436502983) +zone = ('sdz008', 0.0047997086430011573) + +[57241] +centroid = (0.78008454339633659, -1.6967426541042638) +station = ('katy', 0.003661249696422507) +zone = ('sdz022', 0.00051503539037401171) + +[57242] +centroid = (0.78139645503518318, -1.6993484830373686) +station = ('katy', 0.0034935470607106193) +zone = ('sdz022', 0.0027741460707498776) + +[57243] +centroid = (0.78388199587624086, -1.7006983904940314) +station = ('katy', 0.003627171591096399) +zone = ('sdz020', 0.0033373087214015216) + +[57245] +centroid = (0.78361061463084825, -1.691541520573443) +station = ('katy', 0.0028662054076664936) +zone = ('sdz023', 0.0039187600708114577) + +[57246] +centroid = (0.7863565411430109, -1.6871570789595081) +station = ('kvvv', 0.0052952608736358698) +zone = ('sdz021', 0.0023912943676390247) + +[57247] +centroid = (0.79791931253088832, -1.7006105829793636) +station = ('k8d3', 0.0056110106001480767) +zone = ('sdz007', 0.0020864233886861514) + +[57248] +centroid = (0.77812954774130028, -1.6962497731235004) +station = ('katy', 0.0055432894645291685) +zone = ('sdz022', 0.0015736122095791833) + +[57249] +centroid = (0.77464213554972017, -1.6992560329468906) +station = ('kbkx', 0.0069400948590604148) +zone = ('sdz039', 0.0016564115784870009) + +[57251] +centroid = (0.79034292551444352, -1.6914924244615845) +station = ('k8d3', 0.0067422586574881708) +zone = ('sdz021', 0.0026580476599756034) + +[57252] +centroid = (0.78889590793820008, -1.6862072533272805) +station = ('kvvv', 0.0029512944757494998) +zone = ('sdz021', 0.0019729524857451217) + +[57255] +centroid = (0.8005613570459722, -1.6918636909000688) +station = ('k8d3', 0.0035731599646021397) +zone = ('sdz008', 0.0041761871878744396) + +[57256] +centroid = (0.78995170996260899, -1.6963778453840119) +station = ('katy', 0.006323557705340271) +zone = ('sdz020', 0.0049416967501265162) + +[57257] +centroid = (0.79408150803867794, -1.6934608067919836) +station = ('k8d3', 0.0030025294424045044) +zone = ('sdz008', 0.0025138700769092373) + +[57258] +centroid = (0.783471302449954, -1.7090720788193723) +station = ('khon', 0.009641873700177904) +zone = ('sdz019', 0.0024506221218303604) + +[57259] +centroid = (0.78544174426887059, -1.6853508028100344) +station = ('kvvv', 0.0055593319885225059) +zone = ('sdz021', 0.0038846546390216008) + +[57260] +centroid = (0.80008917567013771, -1.6880756806514177) +station = ('keth', 0.0026178675233015903) +zone = ('mnz039', 0.0032529463167640525) + +[57261] +centroid = (0.79463832042994165, -1.7016906799869602) +station = ('k8d3', 0.0067453472750351549) +zone = ('sdz011', 0.0031239001680337625) + +[57262] +centroid = (0.7971427108269209, -1.6941913492569909) +station = ('k8d3', 0.0010627836713939063) +zone = ('sdz008', 0.0016902536306360422) + +[57263] +centroid = (0.78787876495672282, -1.6928985140668689) +station = ('katy', 0.0046336572161039223) +zone = ('sdz021', 0.0028558178554591918) + +[57264] +centroid = (0.7874359574721993, -1.6898939472128529) +station = ('katy', 0.0055240116457165849) +zone = ('sdz021', 0.0011852038348562619) + +[57265] +centroid = (0.78526208007567033, -1.6891569121230281) +station = ('katy', 0.0048274114509091574) +zone = ('sdz021', 0.0031426292969067293) + +[57266] +centroid = (0.79029276475174115, -1.6946319576266569) +station = ('katy', 0.0066741021245850709) +zone = ('sdz021', 0.0044480368130782625) + +[57268] +centroid = (0.77785771271030213, -1.6875486261239006) +station = ('kbkx', 0.0049384252767912581) +zone = ('sdz023', 0.0033621852269199934) + +[57269] +centroid = (0.78925504433838289, -1.6897348604515339) +station = ('kvvv', 0.0050158995766207849) +zone = ('sdz021', 0.0010311451986314299) + +[57270] +centroid = (0.80007973343888439, -1.6988795305206505) +station = ('k8d3', 0.0052913918316532657) +zone = ('sdz007', 0.0034762706114164752) + +[57271] +centroid = (0.78084948630090067, -1.7020806738083185) +station = ('katy', 0.0053919255793194766) +zone = ('sdz019', 0.0033018257171705235) + +[57272] +centroid = (0.78716487293277959, -1.7010479973964985) +station = ('katy', 0.0052195069549785152) +zone = ('sdz020', 0.0040102353394671914) + +[57273] +centroid = (0.7912822268112818, -1.6978638361624525) +station = ('k8d3', 0.0068034984528088979) +zone = ('sdz011', 0.0040457490329293124) + +[57274] +centroid = (0.79072944613059015, -1.702822473647001) +station = ('katy', 0.0087268242051582127) +zone = ('sdz011', 0.0011995545541013198) + +[57276] +centroid = (0.77546481394594025, -1.6862228914773782) +station = ('kbkx', 0.0034125254796821187) +zone = ('sdz040', 0.002452245843560995) + +[57278] +centroid = (0.77908249751288916, -1.7052787627697952) +station = ('khon', 0.0079355460820084624) +zone = ('sdz019', 0.0038525083351470526) + +[57279] +centroid = (0.79274987417928389, -1.6908108035755107) +station = ('k8d3', 0.0044790721278818021) +zone = ('sdz008', 0.0037356223197600952) + +[57301] +centroid = (0.76294902297330391, -1.7112551366477666) +station = ('kmhe', 0.00094100823008275354) +zone = ('sdz059', 0.0014140841553127127) + +[57311] +centroid = (0.76193484705155501, -1.7062928339717889) +station = ('kmhe', 0.0039182970642432308) +zone = ('sdz060', 0.00045131217621970147) + +[57312] +centroid = (0.7715618388594605, -1.717041810689339) +station = ('khon', 0.0035733425633605732) +zone = ('sdz038', 0.0038312334446540426) + +[57313] +centroid = (0.75581537362821249, -1.716955783410508) +station = ('kmhe', 0.0091394625776572268) +zone = ('sdz064', 0.0014360772491117529) + +[57314] +centroid = (0.76874931058304163, -1.7100960809448098) +station = ('kmhe', 0.0049205903687360303) +zone = ('sdz053', 0.0014367878099313372) + +[57315] +centroid = (0.75028891072482018, -1.7111259299232415) +station = ('kykn', 0.008485089844401255) +zone = ('sdz068', 0.0019864591386323494) + +[57317] +centroid = (0.75299708576526214, -1.7272903491504645) +station = ('k9v9', 0.011745666096465626) +zone = ('sdz050', 0.0029170751482747431) + +[57319] +centroid = (0.75979449742995686, -1.7013473911763854) +station = ('kmhe', 0.0080904435299138776) +zone = ('sdz061', 0.0028393652114021674) + +[57321] +centroid = (0.76567822923123252, -1.7027435673115181) +station = ('kmhe', 0.0062280605768656088) +zone = ('sdz054', 0.0027245877763991361) + +[57322] +centroid = (0.77890665559075067, -1.7099762466383679) +station = ('khon', 0.0053507566079167707) +zone = ('sdz019', 0.0050350470208221313) + +[57323] +centroid = (0.77050828830978657, -1.7055406145174721) +station = ('kmhe', 0.0077139134553172563) +zone = ('sdz054', 0.0025796383705719533) + +[57324] +centroid = (0.77315345696423177, -1.7113660348684385) +station = ('khon', 0.002684028086964036) +zone = ('sdz038', 0.0034537173755726418) + +[57325] +centroid = (0.76362265025140363, -1.7331449688598168) +station = ('k9v9', 0.00031157614792686237) +zone = ('sdz057', 0.0028490467058408832) + +[57328] +centroid = (0.75812952313672433, -1.7180847670904533) +station = ('kmhe', 0.0076986224820945262) +zone = ('sdz064', 0.0012765545702061586) + +[57329] +centroid = (0.75003831635081875, -1.7129941652611613) +station = ('konl', 0.011209289203841092) +zone = ('sdz068', 0.0033628142078187089) + +[57330] +centroid = (0.75482027415518793, -1.7131627466136115) +station = ('kmhe', 0.0091865123323055017) +zone = ('sdz064', 0.0035986008270824971) + +[57331] +centroid = (0.75877168212841062, -1.7112054122173774) +station = ('kmhe', 0.0051028282060864164) +zone = ('sdz059', 0.0037276256642102784) + +[57332] +centroid = (0.76009961588979047, -1.7044322780825778) +station = ('kmhe', 0.0060697273419871248) +zone = ('sdz060', 0.002725999796682782) + +[57334] +centroid = (0.7600877825574619, -1.7103724363785706) +station = ('kmhe', 0.0038121735734514706) +zone = ('sdz059', 0.0028839699524472453) + +[57335] +centroid = (0.75142864563295753, -1.7241043204141191) +station = ('konl', 0.010326216909650208) +zone = ('nez007', 0.0026968020298703643) + +[57337] +centroid = (0.76815366461592116, -1.7068589315146732) +station = ('kmhe', 0.0052205890869149348) +zone = ('sdz054', 0.0023362523623140742) + +[57339] +centroid = (0.76972817849402275, -1.735159096269911) +station = ('k9v9', 0.005990766244362334) +zone = ('sdz051', 0.0026993415918851308) + +[57340] +centroid = (0.76438028022640181, -1.7075873272247006) +station = ('kmhe', 0.0025188396255345605) +zone = ('sdz060', 0.002203898152898892) + +[57341] +centroid = (0.76959712172049044, -1.7299350640193041) +station = ('k9v9', 0.0062457235141739533) +zone = ('sdz051', 0.0011370940334422301) + +[57342] +centroid = (0.7547611074935453, -1.7226640747153732) +station = ('k9v9', 0.011986714932977701) +zone = ('sdz063', 0.0015791305227448931) + +[57344] +centroid = (0.75858561257685553, -1.721833664510567) +station = ('kmhe', 0.0094561597960369104) +zone = ('sdz063', 0.004543185139095237) + +[57345] +centroid = (0.77803952365848228, -1.7356322201235415) +station = ('kpir', 0.010987530478645015) +zone = ('sdz036', 0.00075782936536425319) + +[57346] +centroid = (0.77214641943912343, -1.7383491392635362) +station = ('kpir', 0.0088885716200972787) +zone = ('sdz036', 0.0055346965527611697) + +[57348] +centroid = (0.77886310962591343, -1.7169191314962162) +station = ('khon', 0.004567618279313109) +zone = ('sdz038', 0.0038651863822447025) + +[57349] +centroid = (0.76847016262247769, -1.7031062467300826) +station = ('kmhe', 0.0073163279269825247) +zone = ('sdz054', 0.00039508932105492754) + +[57350] +centroid = (0.77500151629599845, -1.7139009510740351) +station = ('khon', 0.00056067524012792813) +zone = ('sdz038', 0.00099975635636365264) + +[57353] +centroid = (0.77420049743579555, -1.7076656750548225) +station = ('khon', 0.0049011867678801276) +zone = ('sdz038', 0.0055275183623636715) + +[57355] +centroid = (0.76412003418163699, -1.7268874398926415) +station = ('k9v9', 0.0047111250371850242) +zone = ('sdz057', 0.0020520339398188573) + +[57356] +centroid = (0.75325216563544106, -1.7196660702993449) +station = ('konl', 0.012228437745059826) +zone = ('sdz063', 0.0011417888622822757) + +[57358] +centroid = (0.76925997646888278, -1.7177865775877499) +station = ('khon', 0.0058699791098056021) +zone = ('sdz052', 0.0026114449214520545) + +[57359] +centroid = (0.76624966748162804, -1.71361002214102) +station = ('kmhe', 0.0030304742658601581) +zone = ('sdz053', 0.0023970421577138193) + +[57361] +centroid = (0.75043897413390659, -1.7179138993566829) +station = ('konl', 0.0098124016229552049) +zone = ('sdz063', 0.0041999853382482452) + +[57362] +centroid = (0.77656430156152656, -1.7291753396492036) +station = ('khon', 0.010657680009711807) +zone = ('sdz037', 0.0012780009445900163) + +[57363] +centroid = (0.7623683170245803, -1.7148823322591389) +station = ('kmhe', 0.0031806096344336177) +zone = ('sdz059', 0.0013845071042347845) + +[57364] +centroid = (0.75798076872457687, -1.721015052731504) +station = ('kmhe', 0.0093417605838651656) +zone = ('sdz063', 0.0038681814174999015) + +[57365] +centroid = (0.76465190581788967, -1.7351439991718811) +station = ('k9v9', 0.0014790051453982505) +zone = ('sdz057', 0.0045302004098442582) + +[57366] +centroid = (0.75707440179072361, -1.7094894917632792) +station = ('kmhe', 0.0068860707888894227) +zone = ('sdz065', 0.0025454663835790393) + +[57367] +centroid = (0.75156708514922566, -1.7195804269929496) +station = ('konl', 0.010580993007081091) +zone = ('sdz063', 0.0026769186502986764) + +[57368] +centroid = (0.76357297818089198, -1.7186623139932307) +station = ('kmhe', 0.0055391162766504649) +zone = ('sdz058', 0.0012540423505336708) + +[57369] +centroid = (0.75783506863862038, -1.7270558641654592) +station = ('k9v9', 0.0075881423910137934) +zone = ('sdz050', 0.0049608682699951376) + +[57370] +centroid = (0.76427027212364873, -1.7307707102118666) +station = ('k9v9', 0.0019416547470091359) +zone = ('sdz057', 0.001641845246104164) + +[57371] +centroid = (0.77515582085516721, -1.7326268678713623) +station = ('k9v9', 0.011297140682780434) +zone = ('sdz036', 0.0035567689773832773) + +[57373] +centroid = (0.77734095562537164, -1.7256494604009096) +station = ('khon', 0.0084083698325665823) +zone = ('sdz037', 0.0016572913909667097) + +[57374] +centroid = (0.76363998137087596, -1.7034260957688032) +station = ('kmhe', 0.0054783374210139605) +zone = ('sdz061', 0.0032218356322223072) + +[57375] +centroid = (0.76033427540772103, -1.7189697188343844) +station = ('kmhe', 0.0067615525168287956) +zone = ('sdz058', 0.0028412553797525649) + +[57376] +centroid = (0.75428770438723447, -1.7093277346482043) +station = ('kykn', 0.008800747586450032) +zone = ('sdz065', 0.0030949628500441871) + +[57379] +centroid = (0.77238961361709646, -1.7201472226675349) +station = ('khon', 0.0046255770911998997) +zone = ('sdz052', 0.0034093427878182808) + +[57380] +centroid = (0.75102596326793725, -1.7156333474362722) +station = ('konl', 0.011009134232071307) +zone = ('sdz063', 0.0048127023944094837) + +[57381] +centroid = (0.77476982383779613, -1.7232936673364452) +station = ('khon', 0.0062891400867006366) +zone = ('sdz037', 0.0043115822260497826) + +[57382] +centroid = (0.76897506892178724, -1.721936586576557) +station = ('khon', 0.0077767815906964882) +zone = ('sdz052', 0.0003964519382212994) + +[57383] +centroid = (0.76313615717570271, -1.723227100478774) +station = ('kmhe', 0.0088604771576128883) +zone = ('sdz058', 0.0021728216958892942) + +[57384] +centroid = (0.77525846366847706, -1.7190282920840814) +station = ('khon', 0.003298179230035423) +zone = ('sdz038', 0.0026797595866172802) + +[57385] +centroid = (0.76873557484182853, -1.7154272589581967) +station = ('kmhe', 0.0058141294116952034) +zone = ('sdz053', 0.0024804322489901096) + +[57386] +centroid = (0.77677136742398323, -1.7105304584890462) +station = ('khon', 0.0035460322428495228) +zone = ('sdz038', 0.0037440040305823114) + +[57401] +centroid = (0.7938164972450551, -1.7197172433530135) +station = ('kabr', 0.0015265025896965048) +zone = ('sdz006', 0.0029001914250766222) + +[57420] +centroid = (0.79050778931558696, -1.747930595431257) +station = ('kmbg', 0.0055592459886713063) +zone = ('sdz009', 0.0027934626447542739) + +[57421] +centroid = (0.79858374192382997, -1.7088006103075168) +station = ('k2d5', 0.0075840753938651922) +zone = ('sdz007', 0.0037566100639699037) + +[57422] +centroid = (0.79272318809502085, -1.708842637835905) +station = ('kabr', 0.0062342588983121229) +zone = ('sdz011', 0.0038127571276595075) + +[57424] +centroid = (0.78551110365334476, -1.7202741255574474) +station = ('kabr', 0.0079513161250233857) +zone = ('sdz018', 0.0029460229050340863) + +[57426] +centroid = (0.79827785551912545, -1.7190723616476942) +station = ('kabr', 0.0051173066120679643) +zone = ('sdz006', 0.0031258198969844227) + +[57427] +centroid = (0.7937852907580295, -1.7159828670722763) +station = ('kabr', 0.0013137445680898752) +zone = ('sdz006', 0.0019490978441536533) + +[57428] +centroid = (0.79329935618768921, -1.739713131527262) +station = ('kmbg', 0.0091915177463179187) +zone = ('sdz009', 0.0043457257016086279) + +[57429] +centroid = (0.78844824843835604, -1.7156140615480375) +station = ('kabr', 0.0050218210012547169) +zone = ('sdz018', 0.0041741322870620188) + +[57430] +centroid = (0.79958233205535867, -1.7055284146660004) +station = ('kgwr', 0.0071446286308872071) +zone = ('sdz007', 0.0017491178871178374) + +[57432] +centroid = (0.79731644090066445, -1.7109645218740173) +station = ('kabr', 0.0062224875160503557) +zone = ('sdz007', 0.0054326524881572599) + +[57433] +centroid = (0.79653757026866945, -1.7160210723296025) +station = ('kabr', 0.0034882964750362687) +zone = ('sdz006', 0.00092547560483329015) + +[57434] +centroid = (0.78847425384421066, -1.711684278204247) +station = ('kabr', 0.0063792057487325931) +zone = ('sdz018', 0.0053562254583929677) + +[57435] +centroid = (0.78853406627767653, -1.7262866626575202) +station = ('kabr', 0.0076657477058973073) +zone = ('sdz017', 0.0034731186979867126) + +[57436] +centroid = (0.78302083297001424, -1.7119725018769214) +station = ('khon', 0.0085755849210037548) +zone = ('sdz018', 0.0034374610600165696) + +[57437] +centroid = (0.79916713567960174, -1.738419161873126) +station = ('kmbg', 0.010751906319502512) +zone = ('ndz050', 0.0059738055561015099) + +[57438] +centroid = (0.7864345573605751, -1.7306497763479958) +station = ('kabr', 0.01138623537914046) +zone = ('sdz017', 0.0002646834690417406) + +[57439] +centroid = (0.79118698419400046, -1.7115590857370016) +station = ('kabr', 0.0047782807688198066) +zone = ('sdz006', 0.0057092787481543596) + +[57440] +centroid = (0.78290180151502831, -1.7151688106025613) +station = ('khon', 0.0082803984330140079) +zone = ('sdz018', 0.0016883097930245319) + +[57441] +centroid = (0.79987184727167937, -1.7196362949823061) +station = ('kabr', 0.0067574341674493874) +zone = ('sdz006', 0.0046996816825170904) + +[57442] +centroid = (0.78647597402372493, -1.7480897345524538) +station = ('kmbg', 0.0090931217566507655) +zone = ('sdz016', 0.0024766616226031867) + +[57445] +centroid = (0.79352331683730515, -1.7124292196355833) +station = ('kabr', 0.0037034508261270037) +zone = ('sdz006', 0.0036159564453352739) + +[57446] +centroid = (0.80059697921600548, -1.7130872611234627) +station = ('k2d5', 0.0053478825737352216) +zone = ('sdz006', 0.0054709538155846872) + +[57448] +centroid = (0.79648903266217153, -1.7350550222866146) +station = ('kmbg', 0.012368369109389989) +zone = ('sdz005', 0.0032522261898345023) + +[57449] +centroid = (0.79826836092799469, -1.7134971866048787) +station = ('kabr', 0.0058129209572734116) +zone = ('sdz006', 0.003349110710164391) + +[57450] +centroid = (0.78934253769378548, -1.742683193221966) +station = ('kmbg', 0.0089720354228784317) +zone = ('sdz016', 0.0031212299154480322) + +[57451] +centroid = (0.79303225099896402, -1.7271185214856057) +station = ('kabr', 0.0066153676252446768) +zone = ('sdz010', 0.0031889779264890478) + +[57452] +centroid = (0.79463788409762881, -1.7429355678318044) +station = ('kmbg', 0.006779662396124572) +zone = ('sdz009', 0.0026981686105717719) + +[57454] +centroid = (0.7960488606248185, -1.7066445701759434) +station = ('kabr', 0.0082307960103592641) +zone = ('sdz007', 0.0034335507967676584) + +[57455] +centroid = (0.78572661690938117, -1.7397698547279521) +station = ('kmbg', 0.012940385723544369) +zone = ('sdz016', 0.0034938198018086924) + +[57456] +centroid = (0.798236753015241, -1.7275283247939739) +station = ('kabr', 0.0084966894431161583) +zone = ('sdz005', 0.0029888619210534078) + +[57457] +centroid = (0.80070953549946655, -1.7305689850569208) +station = ('kabr', 0.011685990093376447) +zone = ('sdz005', 0.0021007070317177814) + +[57460] +centroid = (0.79027766765371144, -1.7221282586350111) +station = ('kabr', 0.004306948085606636) +zone = ('sdz006', 0.0066774055127104591) + +[57461] +centroid = (0.78813606139505177, -1.7179628209356164) +station = ('kabr', 0.0051195536433116988) +zone = ('sdz018', 0.0039618619794883746) + +[57465] +centroid = (0.78777242204539877, -1.7224215612158089) +station = ('kabr', 0.006409663041607022) +zone = ('sdz017', 0.0057525533311276571) + +[57466] +centroid = (0.78930080687137016, -1.7359155219677254) +station = ('kmbg', 0.01302994832890869) +zone = ('sdz010', 0.0045440594033614298) + +[57467] +centroid = (0.7824672668911592, -1.7309573208154896) +station = ('kabr', 0.014276653689064675) +zone = ('sdz017', 0.0041896430412598227) + +[57468] +centroid = (0.79412049869416745, -1.7062014485321546) +station = ('kabr', 0.0081060622888951411) +zone = ('sdz011', 0.0029590975664732506) + +[57469] +centroid = (0.78290904463142408, -1.720402075644911) +station = ('khon', 0.0092807216249585558) +zone = ('sdz018', 0.0031234050772699462) + +[57470] +centroid = (0.78337185358917538, -1.7260309021089328) +station = ('kabr', 0.011496135981503791) +zone = ('sdz017', 0.0045032229336533225) + +[57471] +centroid = (0.79245864854029613, -1.733430731618246) +station = ('kmbg', 0.013679895817087817) +zone = ('sdz010', 0.0012822866863909841) + +[57472] +centroid = (0.79300285965436035, -1.7465179084814004) +station = ('kmbg', 0.004707958804483053) +zone = ('sdz009', 0.00045848669500536183) + +[57473] +centroid = (0.78524905991945038, -1.7365911040145874) +station = ('kpir', 0.014397389414364133) +zone = ('sdz017', 0.0045828422903833425) + +[57474] +centroid = (0.79049476915936701, -1.7152874755384044) +station = ('kabr', 0.0032347126591259195) +zone = ('sdz006', 0.0052733909615354096) + +[57475] +centroid = (0.7892998993001592, -1.7387778793942885) +station = ('kmbg', 0.011256832765811412) +zone = ('sdz016', 0.0049474092153918214) + +[57476] +centroid = (0.7803954214427018, -1.7211603862983178) +station = ('khon', 0.0074660507067203603) +zone = ('sdz018', 0.00514462599664753) + +[57477] +centroid = (0.78621747330821201, -1.7132563311681035) +station = ('kabr', 0.0076974881903861059) +zone = ('sdz018', 0.0029603120539323743) + +[57479] +centroid = (0.79068555109990257, -1.718158210545377) +station = ('kabr', 0.0025871480099596421) +zone = ('sdz006', 0.0051307019938050171) + +[57481] +centroid = (0.79684317742069366, -1.7221002461005166) +station = ('kabr', 0.0047341170380395979) +zone = ('sdz006', 0.0040425944749851658) + +[57501] +centroid = (0.7771531756511495, -1.7507230349679852) +station = ('kpir', 0.0025381628797092213) +zone = ('sdz034', 0.0039473160080128137) + +[57520] +centroid = (0.78282900383192755, -1.7487092217171567) +station = ('kpir', 0.0082690933541874918) +zone = ('sdz034', 0.0025143349933870085) + +[57521] +centroid = (0.76452653881771904, -1.7663109544899822) +station = ('kphp', 0.0065895101321014329) +zone = ('sdz045', 0.007000912721975559) + +[57522] +centroid = (0.77611423350731479, -1.7452396118839473) +station = ('kpir', 0.0038878768691004628) +zone = ('sdz035', 0.0013801178212678137) + +[57523] +centroid = (0.75456519428500901, -1.7316068625499119) +station = ('kicr', 0.008493500191226808) +zone = ('sdz050', 0.00080027526053480708) + +[57528] +centroid = (0.7538212476913464, -1.7411622958584856) +station = ('kicr', 0.0035448595558717727) +zone = ('sdz049', 0.0031246853340891321) + +[57529] +centroid = (0.7545163425192456, -1.7377160210773752) +station = ('kicr', 0.0045076392665265282) +zone = ('sdz050', 0.0048567980458243737) + +[57531] +centroid = (0.7674853431387475, -1.7538100162692802) +station = ('kpir', 0.0075862668366164232) +zone = ('sdz045', 0.0025691538909048553) + +[57532] +centroid = (0.77493159840616344, -1.7562937768745008) +station = ('kpir', 0.0043115061066748986) +zone = ('sdz033', 0.0013588123304337284) + +[57533] +centroid = (0.75710522430531391, -1.7352925266912258) +station = ('kicr', 0.0053924813350028208) +zone = ('sdz050', 0.0044548335653064814) + +[57534] +centroid = (0.76045604702963288, -1.7398727244340646) +station = ('kicr', 0.0038680761347167016) +zone = ('sdz049', 0.0046508188710816436) + +[57536] +centroid = (0.77502017386570221, -1.7412324406411233) +station = ('kpir', 0.0064722636196960764) +zone = ('sdz035', 0.0028927344359927112) + +[57537] +centroid = (0.77803437493718897, -1.7639572209140351) +station = ('kpir', 0.010337303022308758) +zone = ('sdz033', 0.0050393393767639771) + +[57538] +centroid = (0.75317928068587781, -1.7303551473169667) +station = ('kicr', 0.0098472474777580917) +zone = ('sdz050', 0.00086984847695338564) + +[57540] +centroid = (0.77697387797709216, -1.738567759205641) +station = ('kpir', 0.0086778597454518561) +zone = ('sdz036', 0.0016472428016687797) + +[57541] +centroid = (0.76085916572696599, -1.7433027152932539) +station = ('kicr', 0.0037021113357109778) +zone = ('sdz049', 0.0043304937191178125) + +[57543] +centroid = (0.76400376034686912, -1.7715303441647785) +station = ('kphp', 0.0049714427682599378) +zone = ('sdz043', 0.0021236017732899951) + +[57544] +centroid = (0.76691924559586311, -1.7436903878267067) +station = ('kpir', 0.0090468238190947112) +zone = ('sdz048', 0.0010832714796212472) + +[57547] +centroid = (0.7587561836046528, -1.7701511500832676) +station = ('kphp', 0.01030796610577975) +zone = ('sdz043', 0.0046487210403215367) + +[57548] +centroid = (0.76945990393469865, -1.7393971745727737) +station = ('k9v9', 0.0070610595072402547) +zone = ('sdz048', 0.0040796551066220382) + +[57551] +centroid = (0.75355347927750549, -1.7750361346733821) +station = ('kien', 0.010672273245222104) +zone = ('sdz044', 0.00059286823371556044) + +[57552] +centroid = (0.77288383850138354, -1.7662716322219347) +station = ('kphp', 0.0064516854062484762) +zone = ('sdz032', 0.004252368231160159) + +[57553] +centroid = (0.77619472809241685, -1.7740853142034805) +station = ('kphp', 0.0074011466088135091) +zone = ('sdz032', 0.0033892207647642429) + +[57555] +centroid = (0.75471695066346989, -1.7560071239981532) +station = ('kvtn', 0.0065997029274959314) +zone = ('sdz047', 0.0016002553359224707) + +[57559] +centroid = (0.76683150789436527, -1.7579563426133655) +station = ('kpir', 0.0095535482471266944) +zone = ('sdz045', 0.00059958125773057068) + +[57560] +centroid = (0.75815753567121891, -1.7661149540149832) +station = ('kphp', 0.011842204245503187) +zone = ('sdz044', 0.0073658363435999893) + +[57562] +centroid = (0.76615709521810216, -1.7620569936909263) +station = ('kphp', 0.0084861671174438109) +zone = ('sdz045', 0.0035526313557642086) + +[57563] +centroid = (0.75686871473837614, -1.7517088318360967) +station = ('kicr', 0.0065476642159504762) +zone = ('sdz047', 0.0053957539028382405) + +[57564] +centroid = (0.78067895017968836, -1.7451488198562584) +station = ('kpir', 0.0070614752808789679) +zone = ('sdz034', 0.001784677668897894) + +[57566] +centroid = (0.75613775339434841, -1.7643699214689619) +station = ('kvtn', 0.010540549656844603) +zone = ('sdz047', 0.0052516484688208756) + +[57567] +centroid = (0.76963960303448409, -1.7753784286462833) +station = ('kphp', 0.0017332674763475542) +zone = ('sdz032', 0.0041270536426021454) + +[57568] +centroid = (0.76594906942455698, -1.7466791245444071) +station = ('kpir', 0.0090613732961781681) +zone = ('sdz048', 0.0028976190051148917) + +[57569] +centroid = (0.76543939837638963, -1.7378741479076059) +station = ('k9v9', 0.0035869549376399724) +zone = ('sdz048', 0.0035216967693980604) + +[57570] +centroid = (0.75395062894879672, -1.7598328508119399) +station = ('kvtn', 0.0068066728521553321) +zone = ('sdz047', 0.0014350700397518304) + +[57571] +centroid = (0.75197893049281883, -1.7294904762989436) +station = ('konl', 0.012001048228027462) +zone = ('sdz050', 0.002214741704652873) + +[57572] +centroid = (0.75304916639014163, -1.7640025820212943) +station = ('kvtn', 0.0082396007230542551) +zone = ('sdz047', 0.004548472455238148) + +[57574] +centroid = (0.75233534417936854, -1.7688201270891117) +station = ('kvtn', 0.010984525678188379) +zone = ('sdz044', 0.0043381938558133852) + +[57576] +centroid = (0.76656464705173533, -1.7504974162555802) +station = ('kpir', 0.0080722393680325837) +zone = ('sdz045', 0.0049928687527529582) + +[57577] +centroid = (0.75972018131040686, -1.7746021934614589) +station = ('kphp', 0.0091492242671165139) +zone = ('sdz043', 0.0029534261499225413) + +[57579] +centroid = (0.76091464974388678, -1.7590506116944884) +station = ('kvtn', 0.013099091592325854) +zone = ('sdz046', 0.00043313044865043153) + +[57580] +centroid = (0.75554167109491477, -1.7469019158234242) +station = ('kicr', 0.0034613772475728432) +zone = ('sdz049', 0.0027971410815643008) + +[57584] +centroid = (0.75984999890017024, -1.7465661493819253) +station = ('kicr', 0.0038662039560140608) +zone = ('sdz049', 0.0040791049619928813) + +[57585] +centroid = (0.7599008403412808, -1.7524053927405678) +station = ('kicr', 0.0075433787474715429) +zone = ('sdz046', 0.0045451388857557888) + +[57601] +centroid = (0.79338936281721451, -1.7547646764635361) +station = ('kmbg', 0.0022101183986700697) +zone = ('sdz015', 0.0066470752640366473) + +[57620] +centroid = (0.79198255762693703, -1.7896643150929996) +station = ('kd07', 0.0088022370554103335) +zone = ('sdz002', 0.0021259951709774317) + +[57621] +centroid = (0.79848973849031768, -1.7640542088605684) +station = ('kmbg', 0.0087344168865714725) +zone = ('sdz003', 0.0016749967240515073) + +[57622] +centroid = (0.77955944363758167, -1.7721287652054101) +station = ('kd07', 0.0087561649540218185) +zone = ('sdz014', 0.0057324755975069804) + +[57623] +centroid = (0.78591844604746774, -1.774753024815416) +station = ('kd07', 0.0040808329687071184) +zone = ('sdz014', 0.00089315138647639853) + +[57625] +centroid = (0.78462547123100534, -1.7628601593061091) +station = ('kmbg', 0.012638526446077193) +zone = ('sdz015', 0.0038680471191351244) + +[57626] +centroid = (0.78530473592258909, -1.7840146493977092) +station = ('kd07', 0.0025565080110306468) +zone = ('sdz013', 0.0044430415701664566) + +[57630] +centroid = (0.79306295134050664, -1.7611339763160092) +station = ('kmbg', 0.0062861553010876061) +zone = ('sdz015', 0.004948869433557321) + +[57631] +centroid = (0.79469959893997921, -1.7502338017253587) +station = ('kmbg', 0.0016848298294760396) +zone = ('sdz009', 0.0035424496508166493) + +[57632] +centroid = (0.79995426171895856, -1.7459877123612295) +station = ('kmbg', 0.006775845631811086) +zone = ('sdz004', 0.001110950433285168) + +[57633] +centroid = (0.79337800072378406, -1.7706014450302823) +station = ('kd07', 0.010176644438534473) +zone = ('sdz003', 0.0053547248352016994) + +[57634] +centroid = (0.79852361533109872, -1.7784278679153678) +station = ('kd07', 0.012629967900600978) +zone = ('ndz044', 0.0097528248971031524) + +[57636] +centroid = (0.78595364933848055, -1.7704171382612717) +station = ('kd07', 0.007144524603072736) +zone = ('sdz014', 0.0029588678569882104) + +[57638] +centroid = (0.80058010188213868, -1.7842860480963942) +station = ('khei', 0.0056827366061100223) +zone = ('ndz044', 0.0053504180649148253) + +[57639] +centroid = (0.797548953663615, -1.7585131724579217) +station = ('kmbg', 0.0048584088381920833) +zone = ('sdz003', 0.0053861219229461663) + +[57640] +centroid = (0.7991792482646104, -1.7927606688123778) +station = ('khei', 0.0040472953726997532) +zone = ('ndz044', 0.0058339132277625385) + +[57641] +centroid = (0.80057123560953847, -1.7683319061374514) +station = ('kmbg', 0.012317594826865489) +zone = ('sdz003', 0.0031674115552763416) + +[57642] +centroid = (0.79955709459437474, -1.7584112975894828) +station = ('kmbg', 0.0061046035805969361) +zone = ('ndz045', 0.0063343510657201231) + +[57644] +centroid = (0.79323868854288992, -1.7810472755100533) +station = ('kd07', 0.0072679966912539921) +zone = ('sdz002', 0.0053047251859968487) + +[57645] +centroid = (0.80251029640850424, -1.7756855891413417) +station = ('khei', 0.011059818427866491) +zone = ('ndz042', 0.0067036321483504892) + +[57646] +centroid = (0.79730863927890805, -1.7467546623944334) +station = ('kmbg', 0.0046974786397271954) +zone = ('sdz004', 0.0015902478771539033) + +[57648] +centroid = (0.8012835742904475, -1.7515162871130168) +station = ('k7l2', 0.0055756060389160044) +zone = ('sdz004', 0.0044097022733919598) + +[57649] +centroid = (0.79454047727207489, -1.7952098369918239) +station = ('k2wx', 0.0085605575361211578) +zone = ('sdz002', 0.0047093065002854753) + +[57650] +centroid = (0.80019780496278192, -1.7979397937413311) +station = ('khei', 0.005313448632751596) +zone = ('ndz044', 0.0073219996240020619) + +[57651] +centroid = (0.79369671529849084, -1.8002869299727053) +station = ('k2wx', 0.0053641594131571173) +zone = ('sdz001', 0.0046218028603103017) + +[57652] +centroid = (0.78898327912055488, -1.7559397193824413) +station = ('kmbg', 0.0064551536735934422) +zone = ('sdz015', 0.0033572628495496344) + +[57656] +centroid = (0.79225715027815335, -1.7638180832660662) +station = ('kmbg', 0.0083294629206513617) +zone = ('sdz015', 0.0047245739403926779) + +[57657] +centroid = (0.79445439763336656, -1.7591550696502203) +station = ('kmbg', 0.0046226839214148045) +zone = ('sdz015', 0.0063982763051517811) + +[57658] +centroid = (0.79726369705066913, -1.753962575499197) +station = ('kmbg', 0.0024580894275367002) +zone = ('sdz004', 0.0056270762422413849) + +[57660] +centroid = (0.79931430184212982, -1.7730165443827295) +station = ('kd07', 0.014338619940876748) +zone = ('sdz003', 0.0049888440949479905) + +[57661] +centroid = (0.78987933115852871, -1.7620877812989315) +station = ('kmbg', 0.0083997895469520144) +zone = ('sdz015', 0.0020577221375417715) + +[57701] +centroid = (0.77049074775080406, -1.8012996223645901) +station = ('krca', 0.0013402781535940224) +zone = ('sdz026', 0.0025417238013842151) + +[57702] +centroid = (0.7687873936673203, -1.8050276281935573) +station = ('krca', 0.0043915628316580487) +zone = ('sdz026', 0.0026135187018869427) + +[57703] +centroid = (0.76802452770456608, -1.7984331285076995) +station = ('krap', 0.00079838574312949477) +zone = ('sdz026', 0.0022654461410710849) + +[57706] +centroid = (0.77068833647542245, -1.7993220596023252) +station = ('krca', 0.00014915276129542137) +zone = ('sdz026', 0.0031770474752118613) + +[57714] +centroid = (0.75575591026059707, -1.7791337663313369) +station = ('kien', 0.0087408258062818493) +zone = ('sdz044', 0.0039383728783646751) + +[57716] +centroid = (0.75235796364647434, -1.7838585646027032) +station = ('kien', 0.0041450835648259646) +zone = ('sdz042', 0.005922255735166056) + +[57717] +centroid = (0.78435445650475566, -1.8134313187287401) +station = ('kspf', 0.0081084408535867791) +zone = ('wyz071', 0.0037395141253609731) + +[57718] +centroid = (0.77092470641601996, -1.8041153271402475) +station = ('krap', 0.0045099661879335166) +zone = ('sdz072', 0.0028566453082152642) + +[57719] +centroid = (0.77200174909742569, -1.7972718911431778) +station = ('krca', 0.0021153586912839241) +zone = ('sdz073', 0.00398599883115757) + +[57720] +centroid = (0.79544890369444543, -1.8091565186984153) +station = ('k2wx', 0.0013734956217859604) +zone = ('sdz001', 0.0019700212617223658) + +[57722] +centroid = (0.75845532374819413, -1.7963120298677508) +station = ('kien', 0.008996147496370616) +zone = ('sdz030', 0.0042895719229495543) + +[57724] +centroid = (0.7966620471509217, -1.8155582467683904) +station = ('k2wx', 0.0058376935948955466) +zone = ('mtz037', 0.0066490420730091673) + +[57725] +centroid = (0.76675860549150954, -1.7940570993807592) +station = ('krap', 0.0038396071070049154) +zone = ('sdz030', 0.0046858877543370769) + +[57730] +centroid = (0.76313017069636846, -1.8090290398498496) +station = ('kcut', 0.00044680393085835097) +zone = ('sdz029', 0.0011605277185763986) + +[57732] +centroid = (0.77145362844583687, -1.809776267662506) +station = ('kspf', 0.0050556543096033756) +zone = ('sdz024', 0.0017471157377505408) + +[57735] +centroid = (0.75574360568937049, -1.8125193667412804) +station = ('kcut', 0.0081029376740983546) +zone = ('sdz027', 0.0027490163644769737) + +[57738] +centroid = (0.76160408970500959, -1.7998520811895711) +station = ('kcut', 0.0064436343319468851) +zone = ('sdz030', 0.0021571200324755173) + +[57741] +centroid = (0.77501291329601396, -1.8058334292559106) +station = ('kspf', 0.0041765215372643796) +zone = ('sdz072', 0.0015551085121939567) + +[57744] +centroid = (0.76415115340219997, -1.798490951265818) +station = ('krap', 0.0046666611358539625) +zone = ('sdz030', 0.0017071463170242834) + +[57745] +centroid = (0.76828067222558882, -1.8112782980167725) +station = ('kcut', 0.0053898809321419709) +zone = ('sdz028', 0.0010794673754998326) + +[57747] +centroid = (0.75720853034373947, -1.8068912035023745) +station = ('kcut', 0.0061864004760902817) +zone = ('sdz027', 0.0017131323320186769) + +[57748] +centroid = (0.77826044743519984, -1.7810140793476803) +station = ('kd07', 0.0077272307986676345) +zone = ('sdz013', 0.0067342202488631115) + +[57750] +centroid = (0.76085520382956384, -1.779459985821827) +station = ('kphp', 0.0091347559130816325) +zone = ('sdz043', 0.0044916055998503518) + +[57751] +centroid = (0.76592959155010465, -1.8055978796200614) +station = ('kcut', 0.0033475698261822904) +zone = ('sdz026', 0.0035320254476640311) + +[57752] +centroid = (0.75852461331949828, -1.7834423733892728) +station = ('kien', 0.0085695621757825979) +zone = ('sdz042', 0.00514766539243771) + +[57754] +centroid = (0.77240572300609234, -1.8131777922015953) +station = ('kspf', 0.0041817207293551768) +zone = ('sdz024', 0.0012947899094486542) + +[57755] +centroid = (0.80019401759830511, -1.80400812901759) +station = ('k2wx', 0.0048928703244189463) +zone = ('sdz001', 0.0049428574418954839) + +[57756] +centroid = (0.75450056474280758, -1.7889350816249314) +station = ('kien', 0.0034350725819958321) +zone = ('sdz042', 0.0019679268060341609) + +[57758] +centroid = (0.7838176804933048, -1.794480882776436) +station = ('kd07', 0.01010598403684982) +zone = ('sdz013', 0.0044328747910602744) + +[57759] +centroid = (0.77194495608356573, -1.8074623275935044) +station = ('kspf', 0.0052388190679647454) +zone = ('sdz072', 0.0027764541234905566) + +[57760] +centroid = (0.78561065723387857, -1.8026971773098319) +station = ('k2wx', 0.010755641368052441) +zone = ('sdz012', 0.0033026168344939149) + +[57761] +centroid = (0.77198015937457853, -1.7931618851008262) +station = ('krap', 0.0050018929350558365) +zone = ('sdz073', 0.0030609136487586516) + +[57762] +centroid = (0.78109332625069683, -1.8085047953024282) +station = ('kspf', 0.0051324863655892849) +zone = ('sdz012', 0.0029979102169218693) + +[57763] +centroid = (0.75243500247965744, -1.8020862073518789) +station = ('kcdr', 0.0052258372423287383) +zone = ('sdz041', 0.0031393234277750609) + +[57764] +centroid = (0.75368921353343299, -1.79486080604801) +station = ('kien', 0.0048581610728020757) +zone = ('sdz042', 0.0045078706105659058) + +[57766] +centroid = (0.75743135652934157, -1.8011414606277745) +station = ('kcut', 0.0078987683747664197) +zone = ('sdz074', 0.0047614218632039173) + +[57767] +centroid = (0.77033157372302219, -1.790203621831866) +station = ('krap', 0.0061908758732866992) +zone = ('sdz031', 0.002782299537881984) + +[57769] +centroid = (0.77225710822028493, -1.8026972471230021) +station = ('krca', 0.0028882941458297342) +zone = ('sdz072', 0.0020011439941829559) + +[57770] +centroid = (0.75152977000981802, -1.7905375033177726) +station = ('kien', 0.0010435485398989357) +zone = ('sdz042', 0.0048441482242829485) + +[57772] +centroid = (0.75978632928905754, -1.7905140111860407) +station = ('kien', 0.0087611705296748894) +zone = ('sdz042', 0.0034697739562469221) + +[57773] +centroid = (0.76082591720471549, -1.8076051653394876) +station = ('kcut', 0.0025397330935039764) +zone = ('sdz029', 0.0022499761996805029) + +[57775] +centroid = (0.76972447839600855, -1.7807411098526684) +station = ('kphp', 0.0054544239654163171) +zone = ('sdz032', 0.0069804956288007768) + +[57776] +centroid = (0.79000204525823647, -1.8063729628875795) +station = ('k2wx', 0.0059031559797007868) +zone = ('sdz001', 0.0055260459491691342) + +[57779] +centroid = (0.77778456596135093, -1.8108719853669082) +station = ('kspf', 0.0014465591125384294) +zone = ('sdz025', 0.0010718130415172879) + +[57780] +centroid = (0.76410977164563521, -1.7891464759039331) +station = ('krap', 0.0082561961174773182) +zone = ('sdz031', 0.0040495486049416836) + +[57782] +centroid = (0.75566815510580687, -1.8001443016662324) +station = ('kcdr', 0.0081020727020146531) +zone = ('sdz041', 0.0046842668664586187) + +[57783] +centroid = (0.77610601300653792, -1.8136651928485072) +station = ('kspf', 0.001667021650300421) +zone = ('sdz025', 0.0019195620420744124) + +[57785] +centroid = (0.77537403937154403, -1.8017470200650463) +station = ('krca', 0.0050880071248009581) +zone = ('sdz072', 0.002560442732676266) + +[57787] +centroid = (0.77990749719701435, -1.7916251052411527) +station = ('kd07', 0.0099379489885845461) +zone = ('sdz013', 0.0031962446447189744) + +[57788] +centroid = (0.77873707940062686, -1.8012993954717871) +station = ('kspf', 0.0075473709622950495) +zone = ('sdz072', 0.0054812564508143922) + +[57790] +centroid = (0.76937750694071205, -1.7840280535263642) +station = ('krap', 0.01045801156064592) +zone = ('sdz031', 0.0031111934379423173) + +[57791] +centroid = (0.77183978254284058, -1.7879838771825944) +station = ('krap', 0.0081710231592454271) +zone = ('sdz031', 0.0037728008957042519) + +[57792] +centroid = (0.77730685189178772, -1.7876343226400051) +station = ('kd07', 0.010033465089589983) +zone = ('sdz073', 0.0048544011587194173) + +[57793] +centroid = (0.7771181643463545, -1.807799996443888) +station = ('kspf', 0.0026445307728279735) +zone = ('sdz025', 0.0023990517249061834) + +[57794] +centroid = (0.75265638004198043, -1.787127147412668) +station = ('kien', 0.0022176261769049975) +zone = ('sdz042', 0.0041962447840413588) + +[57799] +centroid = (0.77664895003024836, -1.8129156612012383) +station = ('kspf', 0.0011411173212745045) +zone = ('sdz025', 0.0012835335689830615) + +[58001] +centroid = (0.81062139994788263, -1.6880823303558679) +station = ('kbwp', 0.0037668556085790712) +zone = ('mnz029', 0.0033968423136946056) + +[58002] +centroid = (0.81980017375058323, -1.6999025552617071) +station = ('kbac', 0.0074141517403196267) +zone = ('ndz039', 0.0018971396444188789) + +[58004] +centroid = (0.82076682435680037, -1.6976943821453763) +station = ('kfar', 0.0056458089700339329) +zone = ('ndz039', 0.0016535376195380438) + +[58005] +centroid = (0.82122762618591194, -1.6921124875849405) +station = ('kfar', 0.0026281072972804739) +zone = ('ndz039', 0.0041103646433481916) + +[58006] +centroid = (0.82207733973224539, -1.6966310053920137) +station = ('kfar', 0.0055230346993382648) +zone = ('ndz039', 0.002977059485808189) + +[58007] +centroid = (0.82072992809641321, -1.7011489123338488) +station = ('kbac', 0.0067011192090675551) +zone = ('ndz039', 0.0030724766189695746) + +[58008] +centroid = (0.80824942768125219, -1.692978921385508) +station = ('kbwp', 0.0048801342588440559) +zone = ('ndz053', 0.001002611177187053) + +[58009] +centroid = (0.82602400040990254, -1.6972726407849243) +station = ('kfar', 0.0085690644382023003) +zone = ('ndz030', 0.0024260062098997626) + +[58011] +centroid = (0.8188866684200895, -1.7023921801732143) +station = ('kbac', 0.0057124946048038054) +zone = ('ndz039', 0.0034868695331569531) + +[58012] +centroid = (0.8192869771373269, -1.6959073046176742) +station = ('kfar', 0.0041933262622405511) +zone = ('ndz039', 0.00096262488777389816) + +[58013] +centroid = (0.8038611463429628, -1.6991350292698499) +station = ('kgwr', 0.0044920492163253592) +zone = ('ndz052', 0.0034687155226743806) + +[58015] +centroid = (0.81324061555635052, -1.6897664683642872) +station = ('kjkj', 0.0046360852675316443) +zone = ('mnz029', 0.0058987754320076686) + +[58016] +centroid = (0.82671228845371914, -1.701028519522046) +station = ('kbac', 0.0099437122419422756) +zone = ('ndz029', 0.0034730544914217485) + +[58017] +centroid = (0.80360824813434883, -1.7078303468697484) +station = ('k2d5', 0.0035736007153209402) +zone = ('ndz052', 0.0029010700838407572) + +[58018] +centroid = (0.81046069003035892, -1.6911630284718555) +station = ('kbwp', 0.004836271506192205) +zone = ('ndz053', 0.0030554869687217266) + +[58021] +centroid = (0.81575076553986114, -1.6944220992373973) +station = ('kfar', 0.0046502253620057379) +zone = ('ndz039', 0.0039153883442745755) + +[58027] +centroid = (0.81389939008251577, -1.7035795102100535) +station = ('kgwr', 0.0072449904102341797) +zone = ('ndz049', 0.0031443378094163314) + +[58029] +centroid = (0.82239223203589018, -1.70001671724808) +station = ('kbac', 0.0079439040887963556) +zone = ('ndz039', 0.0037466960543004768) + +[58030] +centroid = (0.80337608443724862, -1.6872109921801022) +station = ('kbwp', 0.003808647291946814) +zone = ('mnz039', 0.0051069388754690212) + +[58031] +centroid = (0.81625006933227173, -1.7046891032820091) +station = ('kbac', 0.0051256129890275889) +zone = ('ndz049', 0.0054407530938207979) + +[58032] +centroid = (0.80398756054068476, -1.7041886824788772) +station = ('kgwr', 0.0026793862662605784) +zone = ('ndz052', 0.00075989478365451931) + +[58033] +centroid = (0.81043840217581098, -1.7090187241041388) +station = ('k2d5', 0.0049593963529963574) +zone = ('ndz049', 0.0031736167271556757) + +[58035] +centroid = (0.82485522322301208, -1.7003013979023729) +station = ('kbac', 0.009032460502287171) +zone = ('ndz030', 0.0045552855832844347) + +[58036] +centroid = (0.8230198349816148, -1.6920641419646603) +station = ('kfar', 0.0041819345252156704) +zone = ('ndz039', 0.0052741327800674177) + +[58038] +centroid = (0.82458267260702056, -1.6928956342736028) +station = ('kfar', 0.0058429138003737412) +zone = ('ndz030', 0.0041422497569101151) + +[58040] +centroid = (0.80615876758345828, -1.7049248798106609) +station = ('kgwr', 0.0007152295154696965) +zone = ('ndz052', 0.0015702570765663124) + +[58041] +centroid = (0.80368755589555951, -1.6915445574463415) +station = ('kbwp', 0.0050848243827490902) +zone = ('ndz053', 0.0037993185234359689) + +[58042] +centroid = (0.8197967005453719, -1.6922020404288602) +station = ('kfar', 0.0017851124605132943) +zone = ('ndz039', 0.0035418940094220017) + +[58043] +centroid = (0.80239033992901465, -1.7024814712177463) +station = ('kgwr', 0.0044391006729535415) +zone = ('ndz052', 0.0025618539895182115) + +[58045] +centroid = (0.82709201973907553, -1.6932541772618401) +station = ('kfar', 0.0082963269612494825) +zone = ('ndz030', 0.0020588650412945008) + +[58046] +centroid = (0.82603155768556369, -1.7056157858483554) +station = ('ks32', 0.0047993404638146386) +zone = ('ndz029', 0.0022353832052270026) + +[58047] +centroid = (0.81549221246447079, -1.6907485825876771) +station = ('kjkj', 0.0032098875153957359) +zone = ('mnz003', 0.0054269945570786186) + +[58048] +centroid = (0.8237746200699323, -1.6968754736603406) +station = ('kfar', 0.0067004382415601386) +zone = ('ndz030', 0.0045179403998732662) + +[58049] +centroid = (0.81420897658523439, -1.7105635673849564) +station = ('kbac', 0.0050693702520558589) +zone = ('ndz038', 0.0050380208442322872) + +[58051] +centroid = (0.81396628855274467, -1.693344637676971) +station = ('kfar', 0.00572469174291772) +zone = ('ndz039', 0.0058355006702797835) + +[58052] +centroid = (0.81394358181917614, -1.6977166874532168) +station = ('kfar', 0.0075251048149170951) +zone = ('ndz039', 0.0051996477844685699) + +[58053] +centroid = (0.80376785849444377, -1.6961201824265399) +station = ('k8d3', 0.007147996994640699) +zone = ('ndz053', 0.0046459356028395122) + +[58054] +centroid = (0.81012740195639799, -1.7046408972880689) +station = ('kgwr', 0.0034739764787745683) +zone = ('ndz049', 0.00069769855485901254) + +[58056] +centroid = (0.82434258511511627, -1.7091903597827798) +station = ('ks32', 0.003939443469434682) +zone = ('ndz029', 0.0046109308611846306) + +[58057] +centroid = (0.81025994225979459, -1.6974596877208608) +station = ('kgwr', 0.00587901842036242) +zone = ('ndz049', 0.0048451277957834967) + +[58058] +centroid = (0.8060374322938596, -1.692329990516324) +station = ('kbwp', 0.0044324984383892251) +zone = ('ndz053', 0.0014436729621229707) + +[58059] +centroid = (0.81758138903240052, -1.6951608796564737) +station = ('kfar', 0.0040010605032044996) +zone = ('ndz039', 0.0021333445562265879) + +[58060] +centroid = (0.80746132425751405, -1.7002229453524955) +station = ('kgwr', 0.002861474460474567) +zone = ('ndz052', 0.0037674020925243254) + +[58061] +centroid = (0.8077199820526596, -1.6912599640585113) +station = ('kbwp', 0.0036099144870690857) +zone = ('ndz053', 0.00061149348000802818) + +[58062] +centroid = (0.81397679543484169, -1.7072605317755571) +station = ('kbac', 0.0058103216657277596) +zone = ('ndz049', 0.0037103192269496393) + +[58063] +centroid = (0.81958975685596291, -1.7068898412957261) +station = ('kbac', 0.002645309623303586) +zone = ('ndz038', 0.0032892877028719339) + +[58064] +centroid = (0.8228309554499641, -1.7036311021427424) +station = ('kbac', 0.0060070053398484213) +zone = ('ndz029', 0.0056004507502447681) + +[58065] +centroid = (0.82355399299918775, -1.7062427255689643) +station = ('kbac', 0.0052601126441066169) +zone = ('ndz029', 0.0047319497560035576) + +[58067] +centroid = (0.80408753300023905, -1.701161147091905) +station = ('kgwr', 0.0033285677333602113) +zone = ('ndz052', 0.0020557358127597509) + +[58068] +centroid = (0.81210677986108482, -1.69987688146841) +station = ('kgwr', 0.0062031157555739128) +zone = ('ndz049', 0.0034009680112373399) + +[58069] +centroid = (0.80716744571806331, -1.7074571431157943) +station = ('kgwr', 0.0023095602064616772) +zone = ('ndz052', 0.00342622563156863) + +[58071] +centroid = (0.81954380233675783, -1.704781047227004) +station = ('kbac', 0.004075131219513293) +zone = ('ndz039', 0.0051239537345925878) + +[58072] +centroid = (0.81900826550907591, -1.7105419253022318) +station = ('kbac', 0.00030012802232206773) +zone = ('ndz038', 0.00079291158355580121) + +[58075] +centroid = (0.80766046632516675, -1.6882638620513679) +station = ('kbwp', 0.0015856323859409543) +zone = ('mnz029', 0.0034635183584174234) + +[58076] +centroid = (0.80761318535573012, -1.6861204231969937) +station = ('kbwp', 0.00050508418602150228) +zone = ('mnz029', 0.002230114905124158) + +[58077] +centroid = (0.81201158960368103, -1.6925351365166035) +station = ('kbwp', 0.0066077846097812544) +zone = ('ndz053', 0.004553451528499038) + +[58078] +centroid = (0.81790492071584264, -1.6916444600927256) +station = ('kfar', 0.001780327266965345) +zone = ('mnz003', 0.0051979372155535504) + +[58079] +centroid = (0.81800513752149229, -1.6986408567454403) +station = ('kbac', 0.0083620529031652856) +zone = ('ndz039', 0.0014551204354002641) + +[58081] +centroid = (0.80827305943932415, -1.6954371827303572) +station = ('kbwp', 0.0065482630867552908) +zone = ('ndz053', 0.0024635990230136079) + +[58102] +centroid = (0.81903229869287586, -1.6900843975408306) +station = ('kfar', 0.0002409774643250316) +zone = ('mnz003', 0.0041472517078089115) + +[58103] +centroid = (0.81779397013529342, -1.6898640497227664) +station = ('kfar', 0.00134877043198325) +zone = ('mnz003', 0.0040051994617004184) + +[58104] +centroid = (0.81669607076932638, -1.6901713323908725) +station = ('kfar', 0.0024605047129490983) +zone = ('mnz003', 0.0045124799916553748) + +[58105] +centroid = (0.81847887224036098, -1.6896156893702077) +station = ('kfar', 0.00067061627051058937) +zone = ('mnz003', 0.003784089027415062) + +[58201] +centroid = (0.8354304349602335, -1.6954328019539344) +station = ('kgfk', 0.0015363853068076792) +zone = ('ndz027', 0.0038200510137524229) + +[58202] +centroid = (0.83637502460470525, -1.6942296417807798) +station = ('kgfk', 0.0013960348157204441) +zone = ('ndz027', 0.0045006936939373807) + +[58203] +centroid = (0.83724276740221193, -1.6958577198136251) +station = ('kgfk', 0.00041378639893373823) +zone = ('ndz027', 0.003511833878244238) + +[58204] +centroid = (0.83697267770046579, -1.6997202556213362) +station = ('krdr', 0.0002554579623350619) +zone = ('ndz027', 0.0010037777178139484) + +[58205] +centroid = (0.83691110248445533, -1.6995840152199255) +station = ('krdr', 0.00036139336600781574) +zone = ('ndz027', 0.0010480643972798017) + +[58210] +centroid = (0.8448386846529865, -1.7123702624134509) +station = ('kd55', 0.0068818653391583872) +zone = ('ndz054', 0.00067855798274647425) + +[58212] +centroid = (0.83267112177270797, -1.7104299275241313) +station = ('ks32', 0.0051396914820792568) +zone = ('ndz026', 0.00434454022911824) + +[58214] +centroid = (0.83644113767677086, -1.7016908021600079) +station = ('krdr', 0.0013780448039087932) +zone = ('ndz027', 0.0005015589378381634) + +[58216] +centroid = (0.85314983783122833, -1.7005524809685646) +station = ('k2c8', 0.0028440437405935267) +zone = ('ndz008', 0.0024126254132807536) + +[58218] +centroid = (0.83066968290627607, -1.6936394936008028) +station = ('kgfk', 0.0064440100005553579) +zone = ('ndz030', 0.0028367655234337323) + +[58219] +centroid = (0.82864089473046532, -1.6908570897072734) +station = ('kckn', 0.0071934325557890498) +zone = ('ndz030', 0.0033584701964965232) + +[58220] +centroid = (0.85165648176334452, -1.7055294269569667) +station = ('k2c8', 0.0010324687813697002) +zone = ('ndz008', 0.0019971284229363885) + +[58222] +centroid = (0.84840365927652506, -1.7048146971749825) +station = ('k2c8', 0.0030784352490887948) +zone = ('ndz008', 0.0031101861504012011) + +[58223] +centroid = (0.82912271032377083, -1.6936306622347879) +station = ('kckn', 0.0077916403827018137) +zone = ('ndz030', 0.0017086081774027484) + +[58224] +centroid = (0.84076590648358018, -1.7094387899485088) +station = ('krdr', 0.0072858450773110352) +zone = ('ndz054', 0.0038379396406504284) + +[58225] +centroid = (0.84842615657058329, -1.6968576014888002) +station = ('kgaf', 0.0039902835024038441) +zone = ('ndz008', 0.0046659899883258506) + +[58227] +centroid = (0.84734157406680899, -1.7085500857466858) +station = ('k2c8', 0.0050781839576815677) +zone = ('ndz054', 0.0038105532327810734) + +[58228] +centroid = (0.83568041846899666, -1.6991589751871872) +station = ('krdr', 0.0015871457298136105) +zone = ('ndz027', 0.001394658573234737) + +[58229] +centroid = (0.84645824547908211, -1.7146869077427929) +station = ('kd55', 0.0047651952416516074) +zone = ('ndz054', 0.0028924609652324399) + +[58230] +centroid = (0.82857998273957079, -1.7074837244803021) +station = ('ks32', 0.0033584323999981077) +zone = ('ndz029', 0.0012997148554870449) + +[58231] +centroid = (0.84127149346129793, -1.7073537323576136) +station = ('kgaf', 0.0063485461550906331) +zone = ('ndz054', 0.004233113865939552) + +[58233] +centroid = (0.84170550448639136, -1.7021449019247916) +station = ('kgaf', 0.0035976436671551876) +zone = ('ndz016', 0.0024987730716997556) + +[58235] +centroid = (0.83948572493053486, -1.7012555170445605) +station = ('krdr', 0.0024687926142050827) +zone = ('ndz027', 0.0030977355130336975) + +[58237] +centroid = (0.84498731689208628, -1.7000008871117644) +station = ('kgaf', 0.00040646849759214587) +zone = ('ndz016', 0.0013797870373942079) + +[58238] +centroid = (0.85142028635567213, -1.6998252546291361) +station = ('k2c8', 0.002750083749410027) +zone = ('ndz008', 0.0018476650985197094) + +[58239] +centroid = (0.85385245502820373, -1.7225538571731098) +station = ('kd55', 0.0045498912676547989) +zone = ('ndz007', 0.0037189982850273536) + +[58240] +centroid = (0.8313729458750746, -1.7014732119621618) +station = ('krdr', 0.0058927421068333385) +zone = ('ndz029', 0.0041801782883362643) + +[58241] +centroid = (0.84994778697234952, -1.7047926885731146) +station = ('k2c8', 0.001576309679321567) +zone = ('ndz008', 0.0018803559814444014) + +[58243] +centroid = (0.8467064312987157, -1.7048526057263358) +station = ('kgaf', 0.0040531519665991302) +zone = ('ndz016', 0.0032782539114003511) + +[58244] +centroid = (0.84027248445074887, -1.7036454312959013) +station = ('krdr', 0.0039604949081106311) +zone = ('ndz016', 0.0041239448324176756) + +[58249] +centroid = (0.85211819116366705, -1.716125809538015) +station = ('kd55', 0.0014392913635849225) +zone = ('ndz007', 0.0018179476215388699) + +[58250] +centroid = (0.8425468404523152, -1.7104368913878467) +station = ('kgaf', 0.0076545502846754035) +zone = ('ndz054', 0.0019492072008926505) + +[58251] +centroid = (0.83696032076936155, -1.7051908330820797) +station = ('krdr', 0.0035156603450922151) +zone = ('ndz027', 0.0028997209577001698) + +[58254] +centroid = (0.83381364920764856, -1.7130408004587747) +station = ('ks32', 0.0061520434619552599) +zone = ('ndz026', 0.0026228079568677495) + +[58256] +centroid = (0.83922455386126638, -1.6964629825449242) +station = ('kgfk', 0.0023474206569762319) +zone = ('ndz027', 0.004123361073753014) + +[58257] +centroid = (0.82898420099433257, -1.6978882358653953) +station = ('kgfk', 0.0079853556123297732) +zone = ('ndz030', 0.0016064658498376788) + +[58258] +centroid = (0.83802650750282004, -1.6991115022315331) +station = ('krdr', 0.0010189874858847307) +zone = ('ndz027', 0.0020420269544841191) + +[58259] +centroid = (0.83820760286600693, -1.7126607026542753) +station = ('ks32', 0.010527274681631399) +zone = ('ndz026', 0.0019651224120089501) + +[58260] +centroid = (0.84888605082848378, -1.7108552817161349) +station = ('kd55', 0.0047026522204252144) +zone = ('ndz054', 0.0046960452593014564) + +[58261] +centroid = (0.84203226502894968, -1.6984281011096223) +station = ('kgaf', 0.002869760010136994) +zone = ('ndz016', 0.0030583591058511816) + +[58262] +centroid = (0.84966436295511805, -1.7082644800678894) +station = ('k2c8', 0.0033240634070119124) +zone = ('ndz008', 0.0040215709194018128) + +[58265] +centroid = (0.85444487213620823, -1.7036532852775355) +station = ('k2c8', 0.0030188085737388212) +zone = ('ndz008', 0.0033689253284834055) + +[58266] +centroid = (0.83777442959895443, -1.7078042367441384) +station = ('kgfk', 0.0078396465014386584) +zone = ('ndz027', 0.0047954943586630697) + +[58267] +centroid = (0.8334358203311768, -1.7041251175875196) +station = ('krdr', 0.0046728522126821097) +zone = ('ndz027', 0.0036484881280790652) + +[58269] +centroid = (0.84990870905039739, -1.7135095435359828) +station = ('kd55', 0.0026856905625343461) +zone = ('ndz007', 0.0035723445152800117) + +[58270] +centroid = (0.84463367827904723, -1.7066542218467067) +station = ('kgaf', 0.004792373775666956) +zone = ('ndz016', 0.0033256748385525042) + +[58271] +centroid = (0.85369106443227183, -1.6980254885577721) +station = ('k2c8', 0.0045324185973221222) +zone = ('ndz008', 0.0039400949653555159) + +[58272] +centroid = (0.83804188385353007, -1.710105592989233) +station = ('kgfk', 0.0093997262250683639) +zone = ('ndz026', 0.0029609078680505507) + +[58273] +centroid = (0.84292596087243343, -1.7046377033355378) +station = ('kgaf', 0.003939345271513248) +zone = ('ndz016', 0.0023284358631651156) + +[58274] +centroid = (0.82888995321472492, -1.7014961630418255) +station = ('krdr', 0.0083512612616351064) +zone = ('ndz029', 0.0028547085117851152) + +[58275] +centroid = (0.8321620615897789, -1.6950836313837805) +station = ('kgfk', 0.004779233584290536) +zone = ('ndz030', 0.0039586663621994211) + +[58276] +centroid = (0.84889470766157371, -1.7010039976460556) +station = ('k2c8', 0.0032181679604494249) +zone = ('ndz008', 0.0024870528452147411) + +[58277] +centroid = (0.8309229999939105, -1.7073388446990942) +station = ('ks32', 0.0046459243700451578) +zone = ('ndz029', 0.0028991281150829214) + +[58278] +centroid = (0.83374528466084796, -1.6950906127007885) +station = ('kgfk', 0.0032223936020587115) +zone = ('ndz027', 0.0047392685759487249) + +[58281] +centroid = (0.85269524937425401, -1.7211824298067704) +station = ('kd55', 0.0031276455526563587) +zone = ('ndz007', 0.0022720669561416755) + +[58282] +centroid = (0.85367549609534399, -1.7093863602577788) +station = ('k96d', 0.00066082567784009371) +zone = ('ndz007', 0.0064987604253635691) + +[58301] +centroid = (0.84023825854411727, -1.7256367718572474) +station = ('kdvl', 0.00068664490106641119) +zone = ('ndz015', 0.0028310267282668417) + +[58311] +centroid = (0.84913933300953315, -1.7207229544278904) +station = ('kd55', 0.0028688634345986927) +zone = ('ndz007', 0.0025439183445271907) + +[58316] +centroid = (0.85214480743475995, -1.7414365045372664) +station = ('k06d', 0.0020776330628548166) +zone = ('ndz005', 0.0011680206505809711) + +[58317] +centroid = (0.84832318214471569, -1.7344019026272257) +station = ('k9d7', 0.0027038032004085945) +zone = ('ndz006', 0.0020350388647415942) + +[58318] +centroid = (0.85273739907568968, -1.7522781756913899) +station = ('krug', 0.0092313771228065833) +zone = ('ndz004', 0.0051339790656201442) + +[58321] +centroid = (0.84126116111212601, -1.7164408763745849) +station = ('kd55', 0.0096566943123816903) +zone = ('ndz015', 0.0045226096821883287) + +[58323] +centroid = (0.85268451559935421, -1.7258716582679809) +station = ('kd55', 0.0059252239122998332) +zone = ('ndz006', 0.0050974124781291074) + +[58324] +centroid = (0.84612509703146144, -1.7317321597369126) +station = ('k9d7', 0.00017899980197382795) +zone = ('ndz006', 0.0036104377436968677) + +[58325] +centroid = (0.84282495866862039, -1.730468785704564) +station = ('k9d7', 0.0034636567966230729) +zone = ('ndz014', 0.0046112686738115499) + +[58327] +centroid = (0.8395200206503366, -1.7207965200558619) +station = ('kdvl', 0.0037659088274986196) +zone = ('ndz015', 0.0032775787874420913) + +[58329] +centroid = (0.85300012348799226, -1.7467184119058694) +station = ('k06d', 0.0052693187555569593) +zone = ('ndz005', 0.0032576391741593615) + +[58330] +centroid = (0.84560333085157779, -1.7184445667157517) +station = ('kd55', 0.0053525078996224419) +zone = ('ndz015', 0.0043645999896346887) + +[58331] +centroid = (0.84891579123893768, -1.7294254802375992) +station = ('k9d7', 0.0032613751724892611) +zone = ('ndz006', 0.0019833816577565252) + +[58332] +centroid = (0.83852876090166639, -1.7413668484468192) +station = ('k5h4', 0.0047907642121968342) +zone = ('ndz013', 0.0042682300507074725) + +[58335] +centroid = (0.83752385267824558, -1.7282486396295647) +station = ('kdvl', 0.0025780722080210017) +zone = ('ndz014', 0.0042734880353579273) + +[58338] +centroid = (0.84713285014156303, -1.7213212532954738) +station = ('kd55', 0.0046138022221133826) +zone = ('ndz007', 0.004495650781563899) + +[58339] +centroid = (0.85345781863103531, -1.7354908135475451) +station = ('k06d', 0.0021338760343119234) +zone = ('ndz006', 0.0043282639072021595) + +[58341] +centroid = (0.8339550034237676, -1.7426136767578591) +station = ('k5h4', 0.00103526011051243) +zone = ('ndz023', 0.0040209443079475922) + +[58343] +centroid = (0.84306028141166689, -1.7406082585407325) +station = ('krug', 0.0037413184110994657) +zone = ('ndz013', 0.0029691174032159479) + +[58344] +centroid = (0.83824392316774088, -1.7163831234296363) +station = ('kdvl', 0.0068844011164744716) +zone = ('ndz026', 0.0025467058490482378) + +[58345] +centroid = (0.84311635884053349, -1.7168145164608517) +station = ('kd55', 0.0077914126332142512) +zone = ('ndz015', 0.0041627993701180664) + +[58346] +centroid = (0.84277368089519689, -1.7353406628719958) +station = ('k9d7', 0.0040274077755087841) +zone = ('ndz014', 0.0038717626407262268) + +[58348] +centroid = (0.83726350191372567, -1.7369706956736035) +station = ('k5h4', 0.0057469487515230582) +zone = ('ndz014', 0.0024883505537944542) + +[58351] +centroid = (0.8394870513807664, -1.7327293536050397) +station = ('kdvl', 0.0042231177214694686) +zone = ('ndz014', 0.0011474012170191248) + +[58352] +centroid = (0.85015989683634441, -1.7256555690532915) +station = ('kd55', 0.0055657622910286588) +zone = ('ndz006', 0.0043202367195375535) + +[58353] +centroid = (0.84883498249457046, -1.7382891522971451) +station = ('k06d', 0.0043684094802316402) +zone = ('ndz006', 0.0041399329979501277) + +[58355] +centroid = (0.84806859096672715, -1.7168179023996006) +station = ('kd55', 0.0028500319589814609) +zone = ('ndz007', 0.0033644600669947753) + +[58356] +centroid = (0.83214958248562709, -1.7293622295055069) +station = ('k46d', 0.0040473297766255968) +zone = ('ndz024', 0.0022607686449529862) + +[58357] +centroid = (0.83685849826080028, -1.7320388315397806) +station = ('kdvl', 0.0047674660212106128) +zone = ('ndz014', 0.0025822224271218161) + +[58361] +centroid = (0.83343798453944928, -1.7163432775628131) +station = ('ks32', 0.0063765902215867469) +zone = ('ndz026', 0.0034181211052687907) + +[58362] +centroid = (0.8414616645365951, -1.7293678843722835) +station = ('kdvl', 0.0025772648353916089) +zone = ('ndz015', 0.0043613251673206991) + +[58363] +centroid = (0.8509357480487334, -1.7356829393916045) +station = ('k06d', 0.0030130593032513344) +zone = ('ndz006', 0.0026165933727059889) + +[58365] +centroid = (0.85275698166989689, -1.732289600446707) +station = ('k06d', 0.0042465946264053046) +zone = ('ndz006', 0.0030340267728197205) + +[58366] +centroid = (0.84916413413820402, -1.7431306258290071) +station = ('krug', 0.0049079453063525695) +zone = ('ndz005', 0.0021091981347809694) + +[58367] +centroid = (0.85294942167322185, -1.7380100916030436) +station = ('k06d', 0.00052238847967336585) +zone = ('ndz005', 0.0034472856547167726) + +[58368] +centroid = (0.84231109883024835, -1.7462581162222408) +station = ('krug', 0.0022879225871216343) +zone = ('ndz013', 0.00096638569647637272) + +[58369] +centroid = (0.85422764845750487, -1.7417881360216658) +station = ('k06d', 0.0022705681657489434) +zone = ('ndz005', 0.003031073774840382) + +[58370] +centroid = (0.8374993482555475, -1.7249941939865407) +station = ('kdvl', 0.0024853494927795879) +zone = ('ndz024', 0.0047350289290322423) + +[58372] +centroid = (0.8542547359674959, -1.7278223255064724) +station = ('cwpo', 0.0045832583463662991) +zone = ('ndz006', 0.0053586263980067196) + +[58374] +centroid = (0.83495806159818131, -1.7295804131152988) +station = ('kdvl', 0.0052782885261803041) +zone = ('ndz024', 0.0031336101760205022) + +[58377] +centroid = (0.84586401322865568, -1.7256563020915774) +station = ('kdvl', 0.0060910707203926939) +zone = ('ndz015', 0.0038433214616705649) + +[58379] +centroid = (0.83611004871766759, -1.7251454791261036) +station = ('kdvl', 0.003781814431835557) +zone = ('ndz024', 0.0033506180641831871) + +[58380] +centroid = (0.83470638512004369, -1.7191816716187465) +station = ('kdvl', 0.0070271522978321756) +zone = ('ndz024', 0.0050508680787787665) + +[58381] +centroid = (0.83471706653506583, -1.7234911338880159) +station = ('kdvl', 0.0054430601217370948) +zone = ('ndz024', 0.0026034262034529123) + +[58382] +centroid = (0.84331082342579067, -1.7240151515426345) +station = ('kdvl', 0.0038648457243627803) +zone = ('ndz015', 0.0010956184636721005) + +[58384] +centroid = (0.84815788201125919, -1.7499641483559256) +station = ('krug', 0.004540717740426665) +zone = ('ndz013', 0.0069354577890517769) + +[58385] +centroid = (0.84613232269456462, -1.7393322134180145) +station = ('krug', 0.0045376695720151647) +zone = ('ndz013', 0.0054332281279053044) + +[58386] +centroid = (0.84309866120191823, -1.7383189101608916) +station = ('krug', 0.0051582557659097293) +zone = ('ndz014', 0.004936254529710216) + +[58401] +centroid = (0.81828660676996134, -1.7238033209313202) +station = ('kjms', 0.0014668559673400251) +zone = ('ndz037', 0.0028255420652655672) + +[58402] +centroid = (0.81821642708073861, -1.7224166568406107) +station = ('kjms', 0.00095664565459817319) +zone = ('ndz037', 0.0036681412111982262) + +[58405] +centroid = (0.81882413327299053, -1.7226301804212996) +station = ('kjms', 0.00050312277081163441) +zone = ('ndz037', 0.0032861316951887233) + +[58413] +centroid = (0.80347544603156462, -1.7329926888825804) +station = ('kabr', 0.014781349504375771) +zone = ('ndz050', 0.0022313463195397405) + +[58415] +centroid = (0.80936738088032456, -1.7189643432202881) +station = ('k2d5', 0.0060508583373400718) +zone = ('ndz048', 0.0015604022165236337) + +[58416] +centroid = (0.82953645807624854, -1.7164944579826209) +station = ('ks32', 0.0034039072778201912) +zone = ('ndz028', 0.0018095901598020095) + +[58418] +centroid = (0.82764541128500535, -1.7390281596090247) +station = ('k46d', 0.0057808580913266379) +zone = ('ndz023', 0.0029264373136197179) + +[58420] +centroid = (0.82136971344031673, -1.725405271385263) +station = ('kjms', 0.0031902275099413005) +zone = ('ndz037', 0.0018614917380173231) + +[58421] +centroid = (0.82799151007567573, -1.7292127595083664) +station = ('k46d', 0.00090235652770889675) +zone = ('ndz025', 0.0023022367740670817) + +[58422] +centroid = (0.83078058112694775, -1.7349485572022429) +station = ('k46d', 0.003965186973826691) +zone = ('ndz023', 0.0030185023359456113) + +[58423] +centroid = (0.82730536878683925, -1.7424721305555222) +station = ('k5h4', 0.0068987960435955495) +zone = ('ndz023', 0.0038559019921041784) + +[58424] +centroid = (0.81833949024629682, -1.729797863686805) +station = ('kjms', 0.0053477177287509382) +zone = ('ndz037', 0.002412334124665432) + +[58425] +centroid = (0.82826990754466145, -1.7125990925316799) +station = ('ks32', 0.0006271721948158303) +zone = ('ndz028', 0.0013265086558290268) + +[58426] +centroid = (0.82411871173196305, -1.720707071931697) +station = ('kjms', 0.0050618515988544764) +zone = ('ndz025', 0.0054237915209513852) + +[58428] +centroid = (0.81730751196617757, -1.7414789334913825) +station = ('k7l2', 0.01199319833461252) +zone = ('ndz036', 0.0026516746810698513) + +[58429] +centroid = (0.82362101364246421, -1.71318545334718) +station = ('ks32', 0.004109768786703675) +zone = ('ndz038', 0.0045498207042337716) + +[58430] +centroid = (0.82918542000379503, -1.7498125839636827) +station = ('k5h4', 0.006236492398762763) +zone = ('ndz022', 0.0015629612232237128) + +[58431] +centroid = (0.81176888411789871, -1.7189155438144024) +station = ('k2d5', 0.0076665848134580307) +zone = ('ndz048', 0.0011111008660622036) + +[58433] +centroid = (0.80931029116049191, -1.7228508074920441) +station = ('k2d5', 0.0083650148448054483) +zone = ('ndz048', 0.0026099420780235118) + +[58436] +centroid = (0.80441511384754583, -1.7205741825624501) +station = ('k2d5', 0.0062398689104236488) +zone = ('ndz051', 0.00099931784869172974) + +[58438] +centroid = (0.83194389543327951, -1.7383894912758422) +station = ('k5h4', 0.0044323310319244772) +zone = ('ndz023', 0.0015458846818997328) + +[58439] +centroid = (0.80242620644514306, -1.7248943262467418) +station = ('kabr', 0.010461066032062816) +zone = ('ndz051', 0.0045800091436501798) + +[58440] +centroid = (0.80727256689891091, -1.7307319813557649) +station = ('kjms', 0.013281136934311441) +zone = ('ndz050', 0.0041642689125731139) + +[58441] +centroid = (0.80591080865662745, -1.7168540830749945) +station = ('k2d5', 0.0034869002523245539) +zone = ('ndz051', 0.0019998777645870054) + +[58442] +centroid = (0.81251497746654133, -1.7310104660912129) +station = ('kjms', 0.0090299701306309019) +zone = ('ndz047', 0.003953570336914734) + +[58443] +centroid = (0.82815600735767625, -1.7223103837424567) +station = ('k46d', 0.0055503802244288528) +zone = ('ndz025', 0.0023871194197149768) + +[58444] +centroid = (0.82892775704632315, -1.7475832225502326) +station = ('k5h4', 0.0056807819360708781) +zone = ('ndz022', 0.0029190642503816853) + +[58445] +centroid = (0.83018156667437082, -1.7245503043978812) +station = ('k46d', 0.0045015849111708214) +zone = ('ndz025', 0.0020879758243443828) + +[58448] +centroid = (0.8256447054568592, -1.7143497973977704) +station = ('ks32', 0.0024783038596069189) +zone = ('ndz028', 0.002643553513490565) + +[58451] +centroid = (0.82810881365470224, -1.7446040153302484) +station = ('k5h4', 0.0060116896447972665) +zone = ('ndz022', 0.0050834623020474404) + +[58452] +centroid = (0.8298649464947665, -1.7144584790502919) +station = ('ks32', 0.0026354946241862851) +zone = ('ndz028', 0.0015820647783845634) + +[58454] +centroid = (0.81311535327593487, -1.7270612397795553) +station = ('kjms', 0.0069323249465700846) +zone = ('ndz037', 0.0068266808360280384) + +[58455] +centroid = (0.82562639695300566, -1.7238058167521504) +station = ('k46d', 0.0052126148126232326) +zone = ('ndz025', 0.0029907842026996884) + +[58456] +centroid = (0.80748554942753192, -1.7270781520200071) +station = ('k2d5', 0.010680411424222616) +zone = ('ndz050', 0.0064652724024426012) + +[58458] +centroid = (0.80927306328754678, -1.7155513344147209) +station = ('k2d5', 0.004269059393308761) +zone = ('ndz048', 0.0032964851010025705) + +[58460] +centroid = (0.80811700955090338, -1.733540565188074) +station = ('kjms', 0.013554772390408237) +zone = ('ndz047', 0.0032827488012645515) + +[58461] +centroid = (0.81424121281651884, -1.7138224636175727) +station = ('kbac', 0.0054605785531432029) +zone = ('ndz038', 0.0051625791350868337) + +[58463] +centroid = (0.82891644731277025, -1.7535499971173181) +station = ('k5h4', 0.0081988401866807687) +zone = ('ndz022', 0.0020570615116568798) + +[58464] +centroid = (0.83096392796486973, -1.720288611790239) +station = ('k46d', 0.0074475559960533603) +zone = ('ndz028', 0.0047047278352220102) + +[58466] +centroid = (0.81373880233803964, -1.7168613261913903) +station = ('kjms', 0.0064692815946984358) +zone = ('ndz048', 0.0035334156941091996) + +[58467] +centroid = (0.81829514143000359, -1.733646873192813) +station = ('k46d', 0.010109274602450532) +zone = ('ndz037', 0.00472778229129589) + +[58472] +centroid = (0.81399658746855919, -1.7217716529622435) +station = ('kjms', 0.0051483480917238859) +zone = ('ndz048', 0.0034569748133779451) + +[58474] +centroid = (0.80460191643738677, -1.7126409280738504) +station = ('k2d5', 0.0013918181466678766) +zone = ('ndz051', 0.0045714275080628126) + +[58475] +centroid = (0.82344543351971367, -1.7375694483267927) +station = ('k46d', 0.006726887100400902) +zone = ('ndz036', 0.0043916323706208954) + +[58476] +centroid = (0.82380432557380123, -1.7280781907748148) +station = ('k46d', 0.0046760536748057125) +zone = ('ndz037', 0.0039132071993446833) + +[58477] +centroid = (0.82412516945019532, -1.7541370909711038) +station = ('kbis', 0.0081435949520682928) +zone = ('ndz035', 0.0042363352520870048) + +[58478] +centroid = (0.8233676791015373, -1.7409565738995532) +station = ('k46d', 0.0085571682238702144) +zone = ('ndz036', 0.0034279007979905484) + +[58479] +centroid = (0.8219153557243678, -1.7136114184044218) +station = ('kbac', 0.003286281598608669) +zone = ('ndz038', 0.0030295789247463817) + +[58480] +centroid = (0.81956565385899283, -1.7149509062454498) +station = ('kbac', 0.0028905088914062348) +zone = ('ndz038', 0.0022696011924315529) + +[58481] +centroid = (0.81904439382459227, -1.7179046142050625) +station = ('kjms', 0.0028380652739126741) +zone = ('ndz038', 0.0042582924131353448) + +[58482] +centroid = (0.81774712549816986, -1.7435824741190562) +station = ('k7l2', 0.011799948315655654) +zone = ('ndz036', 0.0026331575485399887) + +[58483] +centroid = (0.81413200756522142, -1.7353768610006823) +station = ('kjms', 0.010404147765348213) +zone = ('ndz047', 0.0033468110559100889) + +[58484] +centroid = (0.82686711661166346, -1.7188884563044116) +station = ('ks32', 0.0045538477663059568) +zone = ('ndz028', 0.0032532760899551547) + +[58486] +centroid = (0.82713526899793988, -1.7345435884559026) +station = ('k46d', 0.0029164192768565541) +zone = ('ndz023', 0.0047492732417982525) + +[58487] +centroid = (0.81780486098982585, -1.7384469300615253) +station = ('k46d', 0.011690793793391142) +zone = ('ndz036', 0.0029941554276989454) + +[58488] +centroid = (0.82338172900201589, -1.7452251431044481) +station = ('k5h4', 0.010755697978384077) +zone = ('ndz036', 0.0042637415177092771) + +[58490] +centroid = (0.80943108539802233, -1.7115733974368679) +station = ('k2d5', 0.0035632840310780151) +zone = ('ndz048', 0.0058196305914289675) + +[58492] +centroid = (0.82303440848086906, -1.7181251540093445) +station = ('kjms', 0.0047265061405275081) +zone = ('ndz028', 0.0057795761543592864) + +[58494] +centroid = (0.82352973292258502, -1.7499146333650466) +station = ('kbis', 0.0090968221127376396) +zone = ('ndz035', 0.0043702376007919734) + +[58495] +centroid = (0.80769985840638425, -1.7384330023340944) +station = ('k7l2', 0.0077968575160003101) +zone = ('ndz047', 0.0034899430937212609) + +[58496] +centroid = (0.82286095765980571, -1.733612734552644) +station = ('k46d', 0.0057163351447785671) +zone = ('ndz037', 0.0052784099395830819) + +[58497] +centroid = (0.81620439406574707, -1.720021750947609) +station = ('kjms', 0.0032503224735708556) +zone = ('ndz048', 0.0053813326049347576) + +[58501] +centroid = (0.81709395347890346, -1.7575517229328756) +station = ('kbis', 0.00082365758540528999) +zone = ('ndz035', 0.0039438653292434324) + +[58503] +centroid = (0.81863132675052275, -1.7584244922786281) +station = ('kbis', 0.0021081281086799929) +zone = ('ndz035', 0.0035900134597092034) + +[58504] +centroid = (0.81572449833461869, -1.757169670359614) +station = ('kbis', 0.0011707568277983967) +zone = ('ndz035', 0.0048763703245831647) + +[58505] +centroid = (0.8171668558817593, -1.7589588248291261) +station = ('kbis', 0.00074210927958187102) +zone = ('ndz035', 0.0046239801613479911) + +[58520] +centroid = (0.81461853554750752, -1.77283778776074) +station = ('kbis', 0.010065053648252029) +zone = ('ndz034', 0.00360658195319454) + +[58521] +centroid = (0.82044617246662399, -1.7574408770720815) +station = ('kbis', 0.0039795263252681229) +zone = ('ndz035', 0.0027333327748467104) + +[58523] +centroid = (0.82479410179260726, -1.7763910337717053) +station = ('khze', 0.0024235818082294449) +zone = ('ndz019', 0.001095003806015714) + +[58524] +centroid = (0.81332556073104501, -1.7466148615213486) +station = ('k7l2', 0.0069401249611948553) +zone = ('ndz046', 0.005845888336457915) + +[58528] +centroid = (0.80876147237720231, -1.7564437181105397) +station = ('k7l2', 0.0051498122711764261) +zone = ('ndz046', 0.0048883262378941039) + +[58529] +centroid = (0.80800038665028506, -1.7725511348843925) +station = ('ky19', 0.011492318676593886) +zone = ('ndz042', 0.0014662126296026683) + +[58530] +centroid = (0.82253496506211832, -1.7652769690812231) +station = ('ky19', 0.0069442202805498525) +zone = ('ndz020', 0.0023541882424823863) + +[58531] +centroid = (0.83020526824561292, -1.7661969495832419) +station = ('kn60', 0.0031478136390477259) +zone = ('ndz021', 0.0016392089782748384) + +[58532] +centroid = (0.81781959156871264, -1.747229461764146) +station = ('kbis', 0.0077659482926587331) +zone = ('ndz036', 0.004465336720752792) + +[58533] +centroid = (0.80993473506027036, -1.7765654445238572) +station = ('kdik', 0.013931578093020237) +zone = ('ndz042', 0.0019875303405511324) + +[58535] +centroid = (0.81160932611768144, -1.7670985343149446) +station = ('ky19', 0.0062875709223351936) +zone = ('ndz034', 0.0037623380782309474) + +[58538] +centroid = (0.80476466839013527, -1.7573643967442594) +station = ('k7l2', 0.0057056556381494114) +zone = ('ndz045', 0.004246549902051029) + +[58540] +centroid = (0.8312807924905693, -1.7754769175759733) +station = ('kn60', 0.0034770152703407042) +zone = ('ndz019', 0.005713232256489612) + +[58541] +centroid = (0.82669481770790654, -1.7814265355565118) +station = ('khze', 0.0059168152150667723) +zone = ('ndz019', 0.0029709167118909942) + +[58542] +centroid = (0.80373893838873822, -1.7455019872303994) +station = ('k7l2', 0.0041105071291939492) +zone = ('sdz004', 0.00490885950680571) + +[58544] +centroid = (0.81179092762635141, -1.7518011248469423) +station = ('k7l2', 0.005308882230039445) +zone = ('ndz046', 0.0042701701129429573) + +[58545] +centroid = (0.82655171816253559, -1.7731015593705939) +station = ('khze', 0.0011918859521408533) +zone = ('ndz019', 0.0029664937024994507) + +[58549] +centroid = (0.81121339817686655, -1.7441024600631028) +station = ('k7l2', 0.0059026395295455041) +zone = ('ndz046', 0.0050313322509591392) + +[58552] +centroid = (0.80716590982832159, -1.7502695809750248) +station = ('k7l2', 0.00064905045073959059) +zone = ('ndz046', 0.00085013981825124527) + +[58554] +centroid = (0.81581441769768137, -1.7616533164882324) +station = ('ky19', 0.00066383842844166684) +zone = ('ndz034', 0.0041629076792046712) + +[58558] +centroid = (0.81733306358642677, -1.753851764544988) +station = ('kbis', 0.0032294526061918873) +zone = ('ndz035', 0.0025877133243995178) + +[58559] +centroid = (0.828845883651112, -1.7580389839534474) +station = ('kn60', 0.008763692702867712) +zone = ('ndz022', 0.004752156561197908) + +[58560] +centroid = (0.8146924502413293, -1.7499566259868495) +station = ('kbis', 0.0060825240719433104) +zone = ('ndz035', 0.0057568331500584677) + +[58561] +centroid = (0.81135382736848194, -1.7397946558566229) +station = ('k7l2', 0.008221380456101466) +zone = ('ndz047', 0.0025228466126369954) + +[58562] +centroid = (0.80943745584979221, -1.7801812780417989) +station = ('khei', 0.01009376817323111) +zone = ('ndz042', 0.0043143545087436022) + +[58563] +centroid = (0.81854168664014026, -1.7704490254267056) +station = ('khze', 0.0070287859076184761) +zone = ('ndz034', 0.0037091729831975656) + +[58564] +centroid = (0.80749568979048592, -1.7687905612115831) +station = ('ky19', 0.010295953494848917) +zone = ('ndz042', 0.0039086448924006804) + +[58565] +centroid = (0.82891763413666153, -1.7692559532566272) +station = ('kn60', 0.0028289505507923729) +zone = ('ndz021', 0.0020639602233171201) + +[58566] +centroid = (0.81303054772758043, -1.7614795340546114) +station = ('ky19', 0.003247921902204022) +zone = ('ndz034', 0.0048524131932047654) + +[58568] +centroid = (0.80437539015377035, -1.7635729343193312) +station = ('ky19', 0.012019944362470033) +zone = ('ndz045', 0.00044509129375992925) + +[58569] +centroid = (0.80753066618869584, -1.766262207443974) +station = ('ky19', 0.0094657892552574285) +zone = ('ndz045', 0.0033241776302672145) + +[58570] +centroid = (0.80951718249002325, -1.7608219987122151) +station = ('ky19', 0.0067397848289140758) +zone = ('ndz045', 0.0050494776774361524) + +[58571] +centroid = (0.82518294369665901, -1.7697232477105562) +station = ('khze', 0.0021762619623784158) +zone = ('ndz020', 0.0029454905888671263) + +[58572] +centroid = (0.81780938139258852, -1.751286147997849) +station = ('kbis', 0.0050476984334775349) +zone = ('ndz035', 0.0025930835768062906) + +[58573] +centroid = (0.80456664333320393, -1.7488374859638858) +station = ('k7l2', 0.0022011335719346412) +zone = ('ndz046', 0.0032925617649017412) + +[58575] +centroid = (0.83020551259170816, -1.7609679082376819) +station = ('kn60', 0.006485144261467248) +zone = ('ndz021', 0.0050597729765483749) + +[58576] +centroid = (0.82793023156563827, -1.7665216157306978) +station = ('kn60', 0.0045271811445195421) +zone = ('ndz021', 0.0032280551460660981) + +[58577] +centroid = (0.82585128262712526, -1.7636950899136781) +station = ('kn60', 0.0073360460899737608) +zone = ('ndz020', 0.0049140737569251585) + +[58579] +centroid = (0.82343623563455559, -1.7582161697791099) +station = ('kbis', 0.0069144217268469078) +zone = ('ndz035', 0.0047641913558752191) + +[58580] +centroid = (0.82497401033190287, -1.7792465495076009) +station = ('khze', 0.0043100116793667303) +zone = ('ndz019', 0.0015104167946019768) + +[58581] +centroid = (0.8034654278416582, -1.7413923477071911) +station = ('k7l2', 0.006553118297011243) +zone = ('ndz050', 0.0042511514223462082) + +[58601] +centroid = (0.81885389113673701, -1.7947963859453191) +station = ('kdik', 0.0020803730562429516) +zone = ('ndz033', 0.0028301602656678223) + +[58620] +centroid = (0.81193174079040242, -1.8034571809326128) +station = ('kdik', 0.0080135043036909711) +zone = ('ndz040', 0.0020111958458816429) + +[58621] +centroid = (0.82184706099073723, -1.813928528126048) +station = ('k20u', 0.0029116937627465386) +zone = ('ndz031', 0.0027714113219613245) + +[58622] +centroid = (0.81845478669668348, -1.8022843196752727) +station = ('kdik', 0.005768540761952469) +zone = ('ndz032', 0.0026313040384276162) + +[58623] +centroid = (0.80612064959259466, -1.8052591635721269) +station = ('k2wx', 0.010347350363675224) +zone = ('ndz043', 0.0016751314989706298) + +[58625] +centroid = (0.82498455212058486, -1.7837223940144626) +station = ('khze', 0.007338560362484323) +zone = ('ndz019', 0.0044182834231437972) + +[58626] +centroid = (0.82698983071137122, -1.7911086274089025) +station = ('kdik', 0.010390904554876335) +zone = ('ndz018', 0.00046119976569189154) + +[58627] +centroid = (0.82449589483661145, -1.8029240177527137) +station = ('kdik', 0.009715696231795426) +zone = ('ndz032', 0.0038884693694686699) + +[58630] +centroid = (0.81932912683876269, -1.7903336139545545) +station = ('kdik', 0.0036477732961788202) +zone = ('ndz033', 0.0025005175716213187) + +[58631] +centroid = (0.81692867079873965, -1.7767580765133997) +station = ('khze', 0.008833516932133318) +zone = ('ndz034', 0.0064103752938029232) + +[58632] +centroid = (0.81447508693628601, -1.8145487657823294) +station = ('k20u', 0.0045295280115722177) +zone = ('ndz031', 0.0049936212243004395) + +[58634] +centroid = (0.82768914923606041, -1.803209448898585) +station = ('ksdy', 0.011475095440745226) +zone = ('ndz017', 0.0056121459404034563) + +[58636] +centroid = (0.8269255851416053, -1.7866441799020563) +station = ('kdik', 0.011344400471341326) +zone = ('ndz018', 0.0029933574365880902) + +[58638] +centroid = (0.81936225318796541, -1.7810284783140096) +station = ('khze', 0.0081542889567465127) +zone = ('ndz019', 0.0068290518512358301) + +[58639] +centroid = (0.80449621929788595, -1.7907539066917273) +station = ('khei', 0.0014703755750210656) +zone = ('ndz044', 0.00089853917220885033) + +[58640] +centroid = (0.82801104031000561, -1.796092729247238) +station = ('kdik', 0.011270893152622325) +zone = ('ndz018', 0.0037352311937719949) + +[58641] +centroid = (0.81450810856573375, -1.7892052934997253) +station = ('kdik', 0.0041266664375673081) +zone = ('ndz033', 0.0030102452739677278) + +[58642] +centroid = (0.82396049763526968, -1.7949044218260173) +station = ('kdik', 0.0071626041851753528) +zone = ('ndz018', 0.0036793015458955864) + +[58643] +centroid = (0.80862671550565579, -1.814178738527614) +station = ('kbhk', 0.0036926939751000319) +zone = ('mtz033', 0.0056957438999880282) + +[58645] +centroid = (0.81945417967966794, -1.8073294556775501) +station = ('k20u', 0.0051394654168806812) +zone = ('ndz032', 0.002444954234298493) + +[58646] +centroid = (0.80970908144128007, -1.7852561544545302) +station = ('khei', 0.0078917329464202012) +zone = ('ndz041', 0.0021912011622663465) + +[58647] +centroid = (0.81190800431257515, -1.7965772501008841) +station = ('kdik', 0.0051706043690850851) +zone = ('ndz033', 0.0061064333560439752) + +[58649] +centroid = (0.80505535297705499, -1.7963429745553887) +station = ('khei', 0.0038178803337588153) +zone = ('ndz044', 0.004799188505555471) + +[58650] +centroid = (0.81058413716835243, -1.7904101640955472) +station = ('kdik', 0.0067514375342840084) +zone = ('ndz041', 0.0014851981616478677) + +[58651] +centroid = (0.80731796291275537, -1.8104883445440272) +station = ('kbhk', 0.0064424157868030445) +zone = ('ndz043', 0.0035858786930763674) + +[58652] +centroid = (0.8184559386139898, -1.7844562700583411) +station = ('kdik', 0.006862447126533445) +zone = ('ndz033', 0.0051419586373298116) + +[58653] +centroid = (0.80454899805446634, -1.7999677790656856) +station = ('khei', 0.005987865719246456) +zone = ('ndz043', 0.0047287235095248049) + +[58654] +centroid = (0.81833654063986094, -1.8115618791136363) +station = ('k20u', 0.002327646332272663) +zone = ('ndz031', 0.0011121327120044745) + +[58655] +centroid = (0.81648430997118182, -1.7982196223803031) +station = ('kdik', 0.0027728304081697246) +zone = ('ndz033', 0.0045150500254532173) + +[58656] +centroid = (0.81931055653552132, -1.7882358678199974) +station = ('kdik', 0.0047799716113806007) +zone = ('ndz033', 0.0032921310734666826) + +[58701] +centroid = (0.84028573149977148, -1.7684725971284545) +station = ('kmot', 0.0021837083938690003) +zone = ('ndz011', 0.0028478652163336053) + +[58702] +centroid = (0.84180963082956528, -1.7679101124171221) +station = ('kmot', 0.00061474855918231105) +zone = ('ndz011', 0.0028892897271179554) + +[58703] +centroid = (0.84358810388405503, -1.7681448417482226) +station = ('kmot', 0.0012081598303832109) +zone = ('ndz011', 0.0033556816807091463) + +[58704] +centroid = (0.8451708382629336, -1.7683840740287935) +station = ('kmib', 0.00036474034245151805) +zone = ('ndz011', 0.004371799467319944) + +[58705] +centroid = (0.84512929942673609, -1.7686103734196073) +station = ('kmib', 0.00021106166610593592) +zone = ('ndz011', 0.0042510820281565368) + +[58707] +centroid = (0.8420553557349536, -1.7680276079823662) +station = ('kmot', 0.00040897598732458684) +zone = ('ndz011', 0.0028371805955129149) + +[58710] +centroid = (0.83545527099548933, -1.749362550816056) +station = ('k5h4', 0.0037566445905952333) +zone = ('ndz022', 0.005281881240754756) + +[58711] +centroid = (0.8539821853515045, -1.7678281168488632) +station = ('kmib', 0.008979421800432711) +zone = ('ndz004', 0.0057552447457697295) + +[58712] +centroid = (0.83725142423530186, -1.754608888374503) +station = ('krug', 0.0094059884823431573) +zone = ('ndz012', 0.0047599796882868235) + +[58713] +centroid = (0.84715450967758021, -1.7554835252225549) +station = ('krug', 0.0069470640390871773) +zone = ('ndz004', 0.0052941346909600251) + +[58716] +centroid = (0.83434288539673085, -1.7639666631452884) +station = ('kn60', 0.0050662213512918221) +zone = ('ndz021', 0.0045560430354228774) + +[58718] +centroid = (0.84309105156637953, -1.7768065617600202) +station = ('kmot', 0.0060792182186869105) +zone = ('ndz011', 0.0033739606766582512) + +[58721] +centroid = (0.85177443111419426, -1.78500868421989) +station = ('k08d', 0.0088993554263753979) +zone = ('ndz002', 0.0028228914449584469) + +[58722] +centroid = (0.84191494399663069, -1.7715353183531468) +station = ('kmot', 0.002583652870417594) +zone = ('ndz011', 0.00054884013388350854) + +[58723] +centroid = (0.83332293243515787, -1.7557357078461755) +station = ('kn60', 0.0099743996052432688) +zone = ('ndz022', 0.0041874906698050806) + +[58725] +centroid = (0.8464059728679848, -1.7746509405074669) +station = ('kmib', 0.0040600087487532039) +zone = ('ndz003', 0.003912653863196198) + +[58727] +centroid = (0.85241657265258797, -1.7941431790194675) +station = ('kd50', 0.0059481326647463405) +zone = ('ndz002', 0.003313247615726724) + +[58730] +centroid = (0.85285309695180433, -1.8032160811497424) +station = ('kd50', 0.0011344308886184599) +zone = ('ndz001', 0.0021454104563725846) + +[58731] +centroid = (0.84538073155877835, -1.7625035187267566) +station = ('kmot', 0.0045677880432091408) +zone = ('ndz012', 0.0053594013885380088) + +[58733] +centroid = (0.84081252422790098, -1.7730430035741895) +station = ('kmot', 0.0038859676761199224) +zone = ('ndz011', 0.00097689114163362597) + +[58734] +centroid = (0.84672355297867774, -1.7791065217417132) +station = ('k08d', 0.0066024112289215431) +zone = ('ndz003', 0.0048057548483279458) + +[58735] +centroid = (0.8354927606678223, -1.7711822906053458) +station = ('kn60', 0.0038843059568378544) +zone = ('ndz021', 0.0049605605309195767) + +[58736] +centroid = (0.83655116323281653, -1.7522516815933444) +station = ('k5h4', 0.0059659441913697403) +zone = ('ndz012', 0.0059928681284647269) + +[58737] +centroid = (0.85374487293311085, -1.786908684550196) +station = ('cyen', 0.0084964796009883645) +zone = ('ndz002', 0.002684020324563741) + +[58740] +centroid = (0.8459419072731722, -1.7666952585379787) +station = ('kmib', 0.0017184707463513272) +zone = ('ndz011', 0.0056722474485868986) + +[58741] +centroid = (0.84258911232679856, -1.7598298662989191) +station = ('kmot', 0.0052597167115850498) +zone = ('ndz012', 0.0023774369426361763) + +[58744] +centroid = (0.83979215238730753, -1.7560686119477009) +station = ('krug', 0.008367811581371485) +zone = ('ndz012', 0.0020748493802250005) + +[58746] +centroid = (0.85020997033258405, -1.7818773715555944) +station = ('k08d', 0.0080562812213941012) +zone = ('ndz002', 0.0050656331621859747) + +[58748] +centroid = (0.84965645661360656, -1.7567583137082117) +station = ('krug', 0.0088825539654565806) +zone = ('ndz004', 0.0028178265645032066) + +[58750] +centroid = (0.84842119983550757, -1.7697207344364334) +station = ('kmib', 0.0034351908008048563) +zone = ('ndz003', 0.0035484032302234478) + +[58752] +centroid = (0.85223539002293847, -1.7903581009239602) +station = ('cyen', 0.0080778375199922741) +zone = ('ndz002', 0.00097774523863294752) + +[58755] +centroid = (0.84868181239941543, -1.7968359777091996) +station = ('kd60', 0.0043312834401054677) +zone = ('ndz002', 0.0057570444734418667) + +[58756] +centroid = (0.83725011523836279, -1.777000747092597) +station = ('kn60', 0.0071654769233957371) +zone = ('ndz011', 0.0054121526278625379) + +[58757] +centroid = (0.83228262893450655, -1.7899366737227735) +station = ('k08d', 0.010867008728688539) +zone = ('ndz018', 0.0057973611172996943) + +[58758] +centroid = (0.83395371188012102, -1.7471043740166554) +station = ('k5h4', 0.0020003147114261381) +zone = ('ndz022', 0.0046064761854951392) + +[58759] +centroid = (0.83523806477007867, -1.7669526073361854) +station = ('kn60', 0.0042523658465725986) +zone = ('ndz021', 0.0044468906547301592) + +[58760] +centroid = (0.84992822183143457, -1.7655335324812662) +station = ('kmib', 0.0053785658603584087) +zone = ('ndz004', 0.0040807614652870932) + +[58761] +centroid = (0.85144791491773109, -1.7721168097000337) +station = ('kmib', 0.0067628817602792338) +zone = ('ndz003', 0.0018183844500035333) + +[58762] +centroid = (0.84950775456133665, -1.7617368653995256) +station = ('kmib', 0.0065177700050758729) +zone = ('ndz004', 0.0024106670901049608) + +[58763] +centroid = (0.83759998394021751, -1.7900919382130309) +station = ('k08d', 0.0057142140242073744) +zone = ('ndz010', 0.0044069230360835642) + +[58765] +centroid = (0.85299991404848208, -1.7984364271799858) +station = ('kd50', 0.0030743510048283655) +zone = ('ndz002', 0.0061953432198867424) + +[58768] +centroid = (0.84182875963816717, -1.7628458825128277) +station = ('kmot', 0.0033026295860579722) +zone = ('ndz011', 0.0062604489572088166) + +[58769] +centroid = (0.84334150631404081, -1.7837738637741039) +station = ('k08d', 0.0023876043723934787) +zone = ('ndz010', 0.0027278455908451783) + +[58770] +centroid = (0.83573946295759161, -1.7831967182970545) +station = ('k08d', 0.0077753801067912244) +zone = ('ndz010', 0.005942260928080337) + +[58771] +centroid = (0.83929932376642191, -1.7798206930183367) +station = ('k08d', 0.0062295024721573788) +zone = ('ndz011', 0.005568841440114122) + +[58772] +centroid = (0.85450567940734767, -1.7911072660520861) +station = ('cyen', 0.0059645060210776132) +zone = ('ndz002', 0.0031792244481314421) + +[58773] +centroid = (0.8479259801135467, -1.791717258625658) +station = ('kd60', 0.0044893895860331351) +zone = ('ndz002', 0.0039754856743245233) + +[58775] +centroid = (0.8326976158707533, -1.7778133374857403) +station = ('kn60', 0.0051358814542352763) +zone = ('ndz019', 0.0070050657829958422) + +[58776] +centroid = (0.84208305411018269, -1.7911132874380056) +station = ('k08d', 0.002683562852076739) +zone = ('ndz010', 0.0032160281420216463) + +[58778] +centroid = (0.83405595326770299, -1.7616345192921885) +station = ('kn60', 0.0063354192822953643) +zone = ('ndz021', 0.0055403056554896631) + +[58779] +centroid = (0.83547843151466339, -1.7763159846138694) +station = ('kn60', 0.0055470493244150982) +zone = ('ndz011', 0.0067276728495094451) + +[58781] +centroid = (0.83803312230068494, -1.7650989629508123) +station = ('kmot', 0.0047173785712031685) +zone = ('ndz011', 0.0059707912095035096) + +[58782] +centroid = (0.85423998793531664, -1.7750813561543011) +station = ('kmib', 0.010075867312612818) +zone = ('ndz003', 0.0039657970722999968) + +[58783] +centroid = (0.85310566354786044, -1.7586576333601094) +station = ('kmib', 0.010532045205278914) +zone = ('ndz004', 0.001721297126199127) + +[58784] +centroid = (0.84411732261984473, -1.7875260947730889) +station = ('k08d', 0.0011164915104245091) +zone = ('ndz010', 0.0029359085807512887) + +[58785] +centroid = (0.84312997240869902, -1.7643423278134878) +station = ('kmot', 0.0023641549009533677) +zone = ('ndz011', 0.0054665918177755303) + +[58787] +centroid = (0.85095835006254672, -1.7769835730527574) +station = ('kmib', 0.0079872830583157303) +zone = ('ndz003', 0.001904184445317592) + +[58788] +centroid = (0.84379337205738203, -1.753493099383703) +station = ('krug', 0.0051991593448792476) +zone = ('ndz012', 0.002756368635825211) + +[58789] +centroid = (0.84741288822004546, -1.7594471330472492) +station = ('kmot', 0.007430901999385656) +zone = ('ndz004', 0.0041795374396994857) + +[58790] +centroid = (0.83827415227038538, -1.7618699816615753) +station = ('kmot', 0.0056919553011540551) +zone = ('ndz012', 0.0050954991074801444) + +[58792] +centroid = (0.83725587482489439, -1.7583631090488354) +station = ('kmot', 0.0081037407186762694) +zone = ('ndz012', 0.0047736731334013715) + +[58793] +centroid = (0.85298064561354003, -1.7636519104679838) +station = ('kmib', 0.0086713474967818911) +zone = ('ndz004', 0.0028513347272356416) + +[58794] +centroid = (0.84245135348893851, -1.7938500509715951) +station = ('kd60', 0.0023741231715904113) +zone = ('ndz010', 0.0050732906688284946) + +[58795] +centroid = (0.8489346931547368, -1.800424985516538) +station = ('kd50', 0.0052836580531542034) +zone = ('ndz001', 0.004874468409952204) + +[58801] +centroid = (0.8415609388644486, -1.8110074578234479) +station = ('kisn', 0.00144718102154878) +zone = ('ndz009', 0.0039518333968316718) + +[58830] +centroid = (0.84843722195804094, -1.8057385357044797) +station = ('kd50', 0.005841071906798237) +zone = ('ndz001', 0.0035562347705586053) + +[58831] +centroid = (0.83425610762632163, -1.8091825939174402) +station = ('ksdy', 0.0065865780163322871) +zone = ('ndz017', 0.0032558260777159607) + +[58833] +centroid = (0.85324117091098528, -1.806590989417739) +station = ('kd50', 0.0025464854354625061) +zone = ('ndz001', 0.0012872110079895352) + +[58835] +centroid = (0.83370161652296304, -1.8053149792016059) +station = ('kisn', 0.0076713779684622532) +zone = ('ndz017', 0.00068340370639953778) + +[58838] +centroid = (0.83374362659805845, -1.8134117012279476) +station = ('ksdy', 0.0037180929532848218) +zone = ('mtz024', 0.0077536832826351583) + +[58843] +centroid = (0.84183966794599208, -1.8042775729475127) +station = ('kisn', 0.003290014644811962) +zone = ('ndz009', 0.0022578440610791805) + +[58844] +centroid = (0.85324829185433337, -1.8107782611860759) +station = ('kd50', 0.0052427557056944638) +zone = ('ndz001', 0.0032719447497940673) + +[58845] +centroid = (0.84894628214097012, -1.8137031363064455) +station = ('kisn', 0.0085686358031505146) +zone = ('mtz019', 0.0069081933398551431) + +[58847] +centroid = (0.83620281296741106, -1.7960797963574806) +station = ('kd60', 0.0081932039753822225) +zone = ('ndz017', 0.006442738941672705) + +[58849] +centroid = (0.84329995002455083, -1.8012308389387688) +station = ('kd60', 0.0037081436365284629) +zone = ('ndz009', 0.0032496219881130344) + +[58852] +centroid = (0.84411604852949074, -1.7967597940873501) +station = ('kd60', 0.00063559314251751152) +zone = ('ndz002', 0.0089395964972753469) + +[58853] +centroid = (0.83907454281205751, -1.8122954584515423) +station = ('kisn', 0.0028785574153818521) +zone = ('ndz009', 0.0062556639652318951) + +[58854] +centroid = (0.83476221820281504, -1.8003641956986913) +station = ('kisn', 0.0084870269380673425) +zone = ('ndz017', 0.0032285222274189974) + +[58856] +centroid = (0.84814323869883501, -1.8104800193234953) +station = ('kisn', 0.007249326211012699) +zone = ('ndz001', 0.0047672057195858016) + +[59001] +centroid = (0.79469890080827843, -1.9117041941106758) +station = ('kbil', 0.012965833555664677) +zone = ('mtz066', 0.003385692008104351) + +[59002] +centroid = (0.80299705128359289, -1.8964321442767047) +station = ('kbil', 0.0035912904080605333) +zone = ('mtz035', 0.0048107165008012672) + +[59003] +centroid = (0.79317819543101575, -1.8535778708753041) +station = ('km46', 0.009470519291964425) +zone = ('mtz058', 0.0036143555941526638) + +[59006] +centroid = (0.80146967874858777, -1.8865068407930485) +station = ('kbil', 0.0058914075401003772) +zone = ('mtz035', 0.0022701924388121644) + +[59007] +centroid = (0.78785919981580799, -1.9046765211577654) +station = ('kcod', 0.01098660513133606) +zone = ('mtz056', 0.0031872418075936651) + +[59008] +centroid = (0.78647548533153433, -1.9039404110924443) +station = ('kcod', 0.0095537386478853348) +zone = ('mtz056', 0.0046147255116800023) + +[59010] +centroid = (0.80272422141492128, -1.8724950932119429) +station = ('km46', 0.0073101727521407691) +zone = ('mtz030', 0.0038225613697715146) + +[59011] +centroid = (0.80153814801514345, -1.9189749041619262) +station = ('klvm', 0.0070766608783820722) +zone = ('mtz041', 0.0012235456897771253) + +[59012] +centroid = (0.79019514848667716, -1.8577179489406672) +station = ('km46', 0.010607747236539641) +zone = ('mtz058', 0.0027727687251980957) + +[59013] +centroid = (0.79335873228884213, -1.9039293631582792) +station = ('kbil', 0.0090865149068210926) +zone = ('mtz056', 0.0039283801997278016) + +[59014] +centroid = (0.78878315966852119, -1.8982147886681069) +station = ('kbil', 0.011167087457124632) +zone = ('mtz039', 0.00094017502199823376) + +[59015] +centroid = (0.80379512053735991, -1.8989843566951885) +station = ('kbil', 0.0051631165396830081) +zone = ('mtz042', 0.0064304000428540963) + +[59016] +centroid = (0.79225166994430207, -1.8665825983845943) +station = ('km46', 0.0084503009351619852) +zone = ('mtz038', 0.0072718361319908361) + +[59018] +centroid = (0.80028135387407484, -1.9293187376002108) +station = ('klvm', 0.0029750589961781045) +zone = ('mtz040', 0.0020407361388952859) + +[59019] +centroid = (0.79677392275597447, -1.9062055168489749) +station = ('kbil', 0.0086261300066690274) +zone = ('mtz034', 0.0027579170522192675) + +[59020] +centroid = (0.78728247321777889, -1.9216311556571213) +station = ('kp60', 0.010491280815834845) +zone = ('mtz067', 0.0029255008607237988) + +[59022] +centroid = (0.79478574839185767, -1.8725235246254577) +station = ('km46', 0.0088075932409576885) +zone = ('mtz057', 0.0039815175869989672) + +[59024] +centroid = (0.80771090634054943, -1.8815890963728741) +station = ('kbil', 0.012080220902444172) +zone = ('mtz035', 0.0082121553941314433) + +[59025] +centroid = (0.78726880728973581, -1.861100484297495) +station = ('kshr', 0.0072314369009943294) +zone = ('wyz099', 0.0054653159066382932) + +[59026] +centroid = (0.79386936326809798, -1.8986454312077437) +station = ('kbil', 0.0064506789237948736) +zone = ('mtz039', 0.0041732554701725917) + +[59027] +centroid = (0.78962451308773751, -1.9357955322813141) +station = ('kbzn', 0.0098804484168264952) +zone = ('mtz064', 0.0036370776256151598) + +[59028] +centroid = (0.79067607396206419, -1.9148683538714937) +station = ('klvm', 0.011207687441729664) +zone = ('mtz066', 0.0048554926832640637) + +[59029] +centroid = (0.79251860060010215, -1.8988974567517318) +station = ('kbil', 0.0077529415049596099) +zone = ('mtz039', 0.0028335560630447618) + +[59030] +centroid = (0.78722229426517021, -1.9289203312918581) +station = ('kp60', 0.0097606472547850914) +zone = ('mtz064', 0.0055683561034018557) + +[59031] +centroid = (0.79416723861153593, -1.8747421871705929) +station = ('km46', 0.010420748283300953) +zone = ('mtz057', 0.0040402394084743699) + +[59032] +centroid = (0.82073446595246846, -1.8972265657923351) +station = ('klwt', 0.0088955261024651015) +zone = ('mtz051', 0.0074619783178156898) + +[59033] +centroid = (0.79812995631831152, -1.91465078112694) +station = ('klvm', 0.0089343408786645394) +zone = ('mtz066', 0.0029953187167838921) + +[59034] +centroid = (0.79756754142014885, -1.87960551222469) +station = ('km46', 0.012146613200350601) +zone = ('mtz057', 0.0029142388879515508) + +[59035] +centroid = (0.79033744518059224, -1.8843116529263526) +station = ('kbil', 0.011756214006365416) +zone = ('mtz038', 0.0056347811207606109) + +[59036] +centroid = (0.81123383598240739, -1.9187096839287929) +station = ('klwt', 0.011504394328656525) +zone = ('mtz028', 0.002099473588750149) + +[59037] +centroid = (0.79977936227461621, -1.889183407920737) +station = ('kbil', 0.0037456270567433969) +zone = ('mtz035', 0.0020143004354874084) + +[59038] +centroid = (0.8063966734137975, -1.8711253239083925) +station = ('km46', 0.0085379705260505059) +zone = ('mtz030', 0.00078810027772099444) + +[59039] +centroid = (0.81483792343448314, -1.8725833370589235) +station = ('kjdn', 0.011992577447484738) +zone = ('mtz030', 0.008298383383224148) + +[59041] +centroid = (0.79459276733646467, -1.9021032251619177) +station = ('kbil', 0.0073084185350681102) +zone = ('mtz039', 0.0055018782373492375) + +[59043] +centroid = (0.79501141946414056, -1.8618540825619212) +station = ('km46', 0.0052490405815643877) +zone = ('mtz058', 0.0030665188149497104) + +[59044] +centroid = (0.7963964080387681, -1.8976699492355116) +station = ('kbil', 0.0039148520826291638) +zone = ('mtz039', 0.0067265616897496288) + +[59046] +centroid = (0.8098062788273237, -1.9026828315532123) +station = ('kbil', 0.011613328031573847) +zone = ('mtz042', 0.0022009020024329985) + +[59047] +centroid = (0.79495010604751792, -1.9298298049117795) +station = ('klvm', 0.0031515254367745467) +zone = ('mtz065', 0.0027309336726758196) + +[59050] +centroid = (0.78952818836631999, -1.8770055825044567) +station = ('kshr', 0.010868775180628091) +zone = ('mtz038', 0.00056168302483819074) + +[59052] +centroid = (0.79353654643303528, -1.9223951735371818) +station = ('klvm', 0.0053880382161887487) +zone = ('mtz067', 0.0035771925387148799) + +[59053] +centroid = (0.81090248522391617, -1.9278843213011667) +station = ('klvm', 0.01329083166378589) +zone = ('mtz068', 0.0071264953131173758) + +[59054] +centroid = (0.8141007312650258, -1.8805709411004308) +station = ('kjdn', 0.015328278369039685) +zone = ('mtz030', 0.0094899858466095631) + +[59055] +centroid = (0.80475382989548039, -1.9165441841126736) +station = ('klvm', 0.010406014529366087) +zone = ('mtz041', 0.0026981378643701395) + +[59057] +centroid = (0.80029458346980487, -1.9012428825604395) +station = ('kbil', 0.0047038256048288997) +zone = ('mtz034', 0.0035417528961321225) + +[59058] +centroid = (0.82287046970422917, -1.8800261714810056) +station = ('kjdn', 0.0096591233576290448) +zone = ('mtz021', 0.006344041244390205) + +[59059] +centroid = (0.80997096809554181, -1.8862231724297218) +station = ('kbil', 0.011825727156884711) +zone = ('mtz029', 0.0042041540053333335) + +[59061] +centroid = (0.79004644643440713, -1.9179437461865554) +station = ('klvm', 0.010073760090161621) +zone = ('mtz067', 0.0036759156258081532) + +[59062] +centroid = (0.78702034221742201, -1.8526739823089888) +station = ('kshr', 0.011582628902135029) +zone = ('mtz058', 0.0072371847346268496) + +[59063] +centroid = (0.79708776786206803, -1.9015054149865243) +station = ('kbil', 0.0054865106652841602) +zone = ('mtz034', 0.0040913627722544725) + +[59064] +centroid = (0.79969562137710548, -1.8845635562972929) +station = ('kbil', 0.0069635006894462007) +zone = ('mtz035', 0.0041537606173866724) + +[59065] +centroid = (0.79013547567955145, -1.9323426776089236) +station = ('klvm', 0.0082362318231988738) +zone = ('mtz064', 0.0021385211082198268) + +[59066] +centroid = (0.79126013094295167, -1.8938626880052112) +station = ('kbil', 0.0084055306860277724) +zone = ('mtz039', 0.003635978355247729) + +[59067] +centroid = (0.80285824524818183, -1.906207366897982) +station = ('kbil', 0.0087188696064228084) +zone = ('mtz034', 0.0033264055984175674) + +[59068] +centroid = (0.787480323741785, -1.9101932800305166) +station = ('kcod', 0.011784745173453607) +zone = ('mtz056', 0.0034295549087774943) + +[59069] +centroid = (0.79971604172935384, -1.9111526177071678) +station = ('kbil', 0.011567613387448531) +zone = ('mtz034', 0.0034520894829262812) + +[59070] +centroid = (0.79194862842627833, -1.9056569947716582) +station = ('kbil', 0.01093991509779688) +zone = ('mtz056', 0.0020688709816850258) + +[59071] +centroid = (0.78968589631753028, -1.9134229245448695) +station = ('klvm', 0.012621019083618647) +zone = ('mtz056', 0.0042116790576074946) + +[59072] +centroid = (0.8110771054155782, -1.8944709876094088) +station = ('kbil', 0.011425567716326223) +zone = ('mtz029', 0.0018266949404289654) + +[59074] +centroid = (0.80918804829968216, -1.908573544671496) +station = ('klwt', 0.01204519619985463) +zone = ('mtz042', 0.0023705275227912247) + +[59075] +centroid = (0.79247254136114198, -1.8829242034374798) +station = ('kbil', 0.010850470334793968) +zone = ('mtz038', 0.0053294009434452045) + +[59076] +centroid = (0.80771656120732582, -1.8687931102421227) +station = ('km46', 0.0086237902796283666) +zone = ('mtz030', 0.0026597819323438037) + +[59077] +centroid = (0.82388417438707995, -1.8779848343878731) +station = ('kjdn', 0.0080236277964261804) +zone = ('mtz021', 0.0078577492362105449) + +[59078] +centroid = (0.80867476441996322, -1.9130650098751631) +station = ('klwt', 0.012649517647834504) +zone = ('mtz028', 0.0028038167833887807) + +[59079] +centroid = (0.80393561954214543, -1.8912964954994191) +station = ('kbil', 0.0048462997236720148) +zone = ('mtz035', 0.0024321426804578251) + +[59081] +centroid = (0.78554337479121417, -1.9193999965545419) +station = ('kp60', 0.009701923064781735) +zone = ('mtz067', 0.0051889131177770137) + +[59082] +centroid = (0.79836611681939884, -1.9237942992787507) +station = ('klvm', 0.0026437552636318757) +zone = ('mtz065', 0.0034599188636804646) + +[59085] +centroid = (0.80863858374456932, -1.9230950505672317) +station = ('klvm', 0.011425923394778313) +zone = ('mtz028', 0.0043431585444905062) + +[59086] +centroid = (0.80411233412890981, -1.92965727911522) +station = ('klvm', 0.0066800543690389057) +zone = ('mtz040', 0.0019827929257461344) + +[59087] +centroid = (0.82278166735188762, -1.8889100719065821) +station = ('klwt', 0.014624497655800322) +zone = ('mtz021', 0.00050954963253386078) + +[59088] +centroid = (0.80414888132344664, -1.8865888538145998) +station = ('kbil', 0.0071348747447858886) +zone = ('mtz035', 0.0032455993902970764) + +[59089] +centroid = (0.78685507699055057, -1.8738122408385451) +station = ('kshr', 0.007374510506788258) +zone = ('mtz038', 0.0034709500657879484) + +[59101] +centroid = (0.79609797418996964, -1.8917676994908723) +station = ('kbil', 0.0040516890270547159) +zone = ('mtz035', 0.0058307012514504167) + +[59102] +centroid = (0.79893579228724987, -1.8950820971937021) +station = ('kbil', 0.00080474128002837417) +zone = ('mtz035', 0.0046656005048216851) + +[59105] +centroid = (0.80098074221193405, -1.8936398967261943) +station = ('kbil', 0.0014739475387961789) +zone = ('mtz035', 0.0028184751362503998) + +[59106] +centroid = (0.79959924429581042, -1.8972689074799884) +station = ('kbil', 0.0018923206407903397) +zone = ('mtz034', 0.0062301736864375928) + +[59201] +centroid = (0.84077629119262953, -1.8448043450716241) +station = ('kolf', 0.0018577411134541087) +zone = ('mtz020', 0.0042202703865414099) + +[59211] +centroid = (0.84995167905658142, -1.8212486833550077) +station = ('kisn', 0.012105782433420023) +zone = ('mtz019', 0.0018250599765389159) + +[59212] +centroid = (0.84163940886761834, -1.8176394122750534) +station = ('kisn', 0.0057759668731258446) +zone = ('mtz062', 0.0046069005468211671) + +[59213] +centroid = (0.84106392145335829, -1.8306166683019172) +station = ('ksdy', 0.011721638335197572) +zone = ('mtz062', 0.0043501588544689095) + +[59214] +centroid = (0.82566777870957053, -1.849941407565604) +station = ('kolf', 0.014651586943688573) +zone = ('mtz023', 0.006345827063985619) + +[59215] +centroid = (0.82934893990141445, -1.8461188747043487) +station = ('kolf', 0.010399530646842898) +zone = ('mtz023', 0.0022297471113029575) + +[59217] +centroid = (0.83041577240669584, -1.8194964076925904) +station = ('ksdy', 0.0021851305537217225) +zone = ('mtz024', 0.0051658989894364602) + +[59218] +centroid = (0.83920008434515347, -1.8249185871731761) +station = ('ksdy', 0.0078967886409297711) +zone = ('mtz062', 0.0032944668278840888) + +[59219] +centroid = (0.84694014833885034, -1.8189780099981629) +station = ('kisn', 0.0089137391107965147) +zone = ('mtz019', 0.0047321900188938143) + +[59221] +centroid = (0.83660760718082616, -1.8184291039484106) +station = ('ksdy', 0.0040878493214381645) +zone = ('mtz024', 0.0050592818523660993) + +[59222] +centroid = (0.84986174224022626, -1.8346282203211637) +station = ('cwaq', 0.0075136359002292968) +zone = ('mtz020', 0.0074153450812357771) + +[59223] +centroid = (0.83485686740815068, -1.8537607639276206) +station = ('kggw', 0.0081790660118899235) +zone = ('mtz023', 0.0059017392604154032) + +[59225] +centroid = (0.84272147809726983, -1.8496176838959439) +station = ('kolf', 0.0055814886967511228) +zone = ('mtz020', 0.006647187335077665) + +[59226] +centroid = (0.84390987278495266, -1.8251086186221332) +station = ('ksdy', 0.01218347530542088) +zone = ('mtz062', 0.0014979272369178354) + +[59230] +centroid = (0.8395329884466789, -1.8646425776545399) +station = ('kggw', 0.0032490164232654968) +zone = ('mtz017', 0.002271328527292673) + +[59231] +centroid = (0.8447053764047191, -1.859610950500673) +station = ('kggw', 0.0032650045615946373) +zone = ('mtz017', 0.0040818647242204563) + +[59240] +centroid = (0.85245661050562871, -1.8541633066663006) +station = ('cwko', 0.0063582456473318845) +zone = ('mtz061', 0.0046988775313224823) + +[59241] +centroid = (0.84609434433004127, -1.8685470188175914) +station = ('kggw', 0.0068683605119244035) +zone = ('mtz017', 0.0067637403812724753) + +[59242] +centroid = (0.84550157815618643, -1.8230128621629234) +station = ('ksdy', 0.013305347154041955) +zone = ('mtz062', 0.0031680063321222894) + +[59243] +centroid = (0.83352643782594038, -1.8269968554332809) +station = ('ksdy', 0.0057147616911408829) +zone = ('mtz024', 0.0014799511554273882) + +[59244] +centroid = (0.8480632851658011, -1.8553966261289301) +station = ('kggw', 0.0074486864755460361) +zone = ('mtz061', 0.004998983499069496) + +[59247] +centroid = (0.84676741310278036, -1.824279325428048) +station = ('ksdy', 0.014735778475780018) +zone = ('mtz019', 0.0035845856061436231) + +[59248] +centroid = (0.84284707199024334, -1.8552749243201885) +station = ('kggw', 0.0039116369342783999) +zone = ('mtz017', 0.0048490309725446904) + +[59250] +centroid = (0.85302646050640496, -1.859768588638713) +station = ('cwko', 0.0083091075815392851) +zone = ('mtz061', 0.0018892351376020387) + +[59252] +centroid = (0.85377848797450417, -1.8293888291731391) +station = ('cwaq', 0.0079809465887525875) +zone = ('mtz019', 0.0049612160473841149) + +[59253] +centroid = (0.84999438726337773, -1.8482810758481818) +station = ('cwaq', 0.0077341561498282582) +zone = ('mtz018', 0.0042813729058891505) + +[59254] +centroid = (0.85092367037030958, -1.8257535352340377) +station = ('cwaq', 0.011290998580085018) +zone = ('mtz019', 0.00132296504635162) + +[59255] +centroid = (0.84201957648528769, -1.8355493527404885) +station = ('kolf', 0.0054371993824934937) +zone = ('mtz020', 0.0029914667704108279) + +[59256] +centroid = (0.85390430876028056, -1.8249770207965328) +station = ('cwaq', 0.010758345653498549) +zone = ('mtz019', 0.0036226971653120863) + +[59257] +centroid = (0.85087094397360685, -1.8319404656329699) +station = ('cwaq', 0.0079302873182524602) +zone = ('mtz019', 0.0052964815858638587) + +[59258] +centroid = (0.84796298109368895, -1.8272076039404592) +station = ('kolf', 0.013366090190073581) +zone = ('mtz019', 0.003210728795529316) + +[59259] +centroid = (0.83218969015183786, -1.8343384433054548) +station = ('kolf', 0.0092469434495964092) +zone = ('mtz025', 0.0076120137036043553) + +[59260] +centroid = (0.85219109356652289, -1.8515834831390503) +station = ('cwko', 0.0060488650452378617) +zone = ('mtz018', 0.0062462180910687918) + +[59261] +centroid = (0.84776951134610545, -1.8742537393261298) +station = ('cwvn', 0.0088967202935315657) +zone = ('mtz059', 0.0054539168203187327) + +[59262] +centroid = (0.82885021206765697, -1.823818366519304) +station = ('ksdy', 0.0050704962671639748) +zone = ('mtz024', 0.0052606240903954691) + +[59263] +centroid = (0.85151383600357888, -1.8418328522069334) +station = ('cwaq', 0.0046004014080043105) +zone = ('mtz018', 0.00023402844604189659) + +[59270] +centroid = (0.83094174483007688, -1.8166456392522605) +station = ('ksdy', 0.0020711304035342898) +zone = ('mtz024', 0.0063927692948350569) + +[59274] +centroid = (0.83464948738642875, -1.8410568962747893) +station = ('kolf', 0.004988647868969227) +zone = ('mtz023', 0.0047745342189269109) + +[59275] +centroid = (0.85302036930731551, -1.8186159065382517) +station = ('kd50', 0.010389292500532459) +zone = ('mtz019', 0.0044157083698421118) + +[59276] +centroid = (0.85437764205342137, -1.8363037189497855) +station = ('cwaq', 0.003540007171769363) +zone = ('mtz018', 0.0048504034230368014) + +[59301] +centroid = (0.80797116983860673, -1.8458515949826981) +station = ('kmls', 0.0028625830930585935) +zone = ('mtz032', 0.0023729824751695522) + +[59311] +centroid = (0.78839459701714976, -1.8224239706200083) +station = ('k2wx', 0.012995382587144494) +zone = ('mtz037', 0.0061977829151675656) + +[59312] +centroid = (0.82034623491365488, -1.853798742292144) +station = ('kjdn', 0.010462154459164437) +zone = ('mtz023', 0.012268248429685723) + +[59313] +centroid = (0.80825611229228733, -1.8194101360676644) +station = ('kbhk', 0.00070708474916901585) +zone = ('mtz033', 0.0021266091928038716) + +[59314] +centroid = (0.78671785920475867, -1.839139372838793) +station = ('kgcc', 0.013135990119977223) +zone = ('mtz036', 0.0063960464264531496) + +[59315] +centroid = (0.82792311062229018, -1.8301220768984869) +station = ('kgdv', 0.0053360426747041008) +zone = ('mtz025', 0.0030083755189973648) + +[59317] +centroid = (0.79162092540592388, -1.8411181224249493) +station = ('kgcc', 0.017874604097119193) +zone = ('mtz036', 0.0018636123275803656) + +[59318] +centroid = (0.82905153579687452, -1.8764706739953056) +station = ('kjdn', 0.0072746742014805164) +zone = ('mtz022', 0.0072880403451251758) + +[59322] +centroid = (0.82048804291537936, -1.8620279871685899) +station = ('kjdn', 0.0064445933930015005) +zone = ('mtz022', 0.0059145944938112276) + +[59323] +centroid = (0.80257586842850159, -1.8616810506198784) +station = ('km46', 0.0024309215688222787) +zone = ('mtz031', 0.0071179517999046208) + +[59324] +centroid = (0.79907693706385852, -1.824611705930798) +station = ('kbhk', 0.010498890825473648) +zone = ('mtz037', 0.0046595561928361329) + +[59326] +centroid = (0.81629672198317749, -1.8301418165723271) +station = ('kgdv', 0.0063745383598421716) +zone = ('mtz025', 0.0086706552960579709) + +[59327] +centroid = (0.80698390689392363, -1.8619562192297476) +station = ('km46', 0.0067659320713739351) +zone = ('mtz031', 0.0028226270183711387) + +[59330] +centroid = (0.82202726623600564, -1.8282111159004784) +station = ('kgdv', 0.00085767408531270395) +zone = ('mtz025', 0.0034292635750937835) + +[59332] +centroid = (0.79112568823067053, -1.8301889055555458) +station = ('kbhk', 0.019324955972803978) +zone = ('mtz037', 0.0051747149336349328) + +[59333] +centroid = (0.80769244075706326, -1.8538884871222816) +station = ('kmls', 0.0048841938230353085) +zone = ('mtz032', 0.0078327481818177367) + +[59336] +centroid = (0.8086459141274277, -1.8329969308824945) +station = ('kbhk', 0.0093191019948835087) +zone = ('mtz032', 0.0067617362148638038) + +[59337] +centroid = (0.82701122844800068, -1.8639838903948374) +station = ('kjdn', 0.0020004854811934017) +zone = ('mtz022', 0.0029573740813179303) + +[59338] +centroid = (0.81402957419142197, -1.8437744088267294) +station = ('kmls', 0.0046442075558581833) +zone = ('mtz026', 0.0049608432744001141) + +[59339] +centroid = (0.82502673672860549, -1.8360139593873694) +station = ('kgdv', 0.0052696503868315016) +zone = ('mtz025', 0.0035116659337059795) + +[59343] +centroid = (0.79696250558165249, -1.8407137994504323) +station = ('kmls', 0.014374255061423294) +zone = ('mtz036', 0.005087247086760071) + +[59344] +centroid = (0.80981317287786903, -1.8255065013317104) +station = ('kbhk', 0.0042271448158276029) +zone = ('mtz033', 0.002407586259625439) + +[59347] +centroid = (0.80955161783616514, -1.8556335022150106) +station = ('kmls', 0.0053249415859436856) +zone = ('mtz031', 0.0054928593013611627) + +[59349] +centroid = (0.81838752170731166, -1.8413612293364596) +station = ('kmls', 0.0091873244568496625) +zone = ('mtz026', 0.0015710114430410665) + +[59351] +centroid = (0.79852914802482766, -1.8456844098936496) +station = ('km46', 0.011925762805906138) +zone = ('mtz036', 0.0064064384396852209) + +[59353] +centroid = (0.81965663787289933, -1.8199327574588815) +station = ('k20u', 0.0035467602474414605) +zone = ('mtz027', 0.0003062888041871124) + +[59354] +centroid = (0.80602661125249719, -1.8203819528484673) +station = ('kbhk', 0.0029953824233978541) +zone = ('mtz033', 0.0030075167479514556) + +[59401] +centroid = (0.82922720318608778, -1.94212385180295) +station = ('kgfa', 0.0011041471352105699) +zone = ('mtz012', 0.0036465457352853579) + +[59404] +centroid = (0.83133114523948937, -1.9430553340247394) +station = ('kgfa', 0.0028681573610905586) +zone = ('mtz012', 0.0056549192870452457) + +[59405] +centroid = (0.82587690406054448, -1.9425258534895622) +station = ('kgtf', 0.0027609311817305996) +zone = ('mtz012', 0.00060849502967027743) + +[59410] +centroid = (0.82880240749944489, -1.9658594046055695) +station = ('k3du', 0.015567065951978527) +zone = ('mtz048', 0.0040307260692085106) + +[59411] +centroid = (0.85281890595175769, -1.9791046733923694) +station = ('k8s0', 0.0055894585832533617) +zone = ('mtz009', 0.0056311827394247829) + +[59412] +centroid = (0.82601670493362933, -1.9353800741061693) +station = ('kgfa', 0.0046004043196332259) +zone = ('mtz012', 0.0054306166754589094) + +[59414] +centroid = (0.82952181476382436, -1.9418415098898549) +station = ('kgfa', 0.0010212369030316712) +zone = ('mtz012', 0.003979167490257206) + +[59416] +centroid = (0.8384097818065579, -1.945915544696323) +station = ('kgtf', 0.010042573306866635) +zone = ('mtz049', 0.0051595552254044006) + +[59417] +centroid = (0.84999962325113376, -1.9744769677872915) +station = ('k8s0', 0.0017581539219075396) +zone = ('mtz009', 0.00254564668544043) + +[59418] +centroid = (0.81680543310025633, -1.9184733139881955) +station = ('klwt', 0.0071103270741222071) +zone = ('mtz063', 0.0040381439692673401) + +[59419] +centroid = (0.83747412824785628, -1.9620469597473906) +station = ('kctb', 0.010762994720192782) +zone = ('mtz048', 0.0050339471420547711) + +[59420] +centroid = (0.83561985554395246, -1.9373822460108872) +station = ('kgfa', 0.0069177755126940028) +zone = ('mtz013', 0.0066564779660163286) + +[59421] +centroid = (0.82372681550172011, -1.9501850040191364) +station = ('kgtf', 0.0063121687195706972) +zone = ('mtz012', 0.0050181474379465442) + +[59422] +centroid = (0.83451069880431006, -1.9630383591224012) +station = ('kctb', 0.013759621719179726) +zone = ('mtz048', 0.0020604746766752025) + +[59424] +centroid = (0.82646469604603112, -1.9217335366710433) +station = ('kfhu', 0.0055731030799185113) +zone = ('mtz050', 0.0056869868085357945) + +[59425] +centroid = (0.8410250878775013, -1.9529978464548206) +station = ('kctb', 0.009136565628805467) +zone = ('mtz046', 0.0012589983634982117) + +[59427] +centroid = (0.8512010904549141, -1.9640729379431057) +station = ('kctb', 0.003435828987343461) +zone = ('mtz010', 0.0010682456998897208) + +[59430] +centroid = (0.82777641569866001, -1.9168770707609064) +station = ('kfhu', 0.0069395998925240654) +zone = ('mtz050', 0.0084512145731365593) + +[59432] +centroid = (0.84070647802254983, -1.9619470221944213) +station = ('kctb', 0.0075305108209834234) +zone = ('mtz046', 0.0051035152662299082) + +[59433] +centroid = (0.83572684422709964, -1.9493936717362823) +station = ('kgtf', 0.0081313238128963919) +zone = ('mtz049', 0.0016079886246720227) + +[59434] +centroid = (0.84612670273437329, -1.9785666407438571) +station = ('k8s0', 0.0035737298197548411) +zone = ('mtz009', 0.0023443208115843475) + +[59436] +centroid = (0.83098618091283272, -1.9555946520356928) +station = ('kgfa', 0.010362615758337506) +zone = ('mtz049', 0.0047090619221721889) + +[59440] +centroid = (0.8328016724007572, -1.9400825147098177) +station = ('kgfa', 0.0037815482924881899) +zone = ('mtz012', 0.0074605145721988947) + +[59441] +centroid = (0.81787739687353878, -1.9021267871068193) +station = ('klwt', 0.0064599014040260501) +zone = ('mtz051', 0.0075872668122374419) + +[59442] +centroid = (0.83591858609872383, -1.9311185734847447) +station = ('kfhu', 0.0058445650013664628) +zone = ('mtz013', 0.0024669760701991881) + +[59443] +centroid = (0.83014725350127661, -1.9517830798421401) +station = ('kgfa', 0.0076891802641135187) +zone = ('mtz049', 0.0043572934018621633) + +[59444] +centroid = (0.8504476667234131, -1.9439004399018478) +station = ('cwry', 0.01047743256822229) +zone = ('mtz045', 0.0049871554507566465) + +[59446] +centroid = (0.8310978645316679, -1.9226462915099589) +station = ('kfhu', 0.0020611307934023659) +zone = ('mtz013', 0.0056043091036036509) + +[59447] +centroid = (0.82492723550794933, -1.9281231172494244) +station = ('kfhu', 0.0066400934584516401) +zone = ('mtz050', 0.0045502473357502023) + +[59448] +centroid = (0.84241848893912352, -1.9684062065033721) +station = ('k8s0', 0.0069929039001841902) +zone = ('mtz009', 0.0071651036129391325) + +[59450] +centroid = (0.8299481288869166, -1.9328271635559848) +station = ('kgfa', 0.0052717033184165336) +zone = ('mtz013', 0.0067702795438823234) + +[59451] +centroid = (0.82709713355378389, -1.9092097695437253) +station = ('klwt', 0.0059627737782340234) +zone = ('mtz051', 0.0029377729526798842) + +[59452] +centroid = (0.81789441383374561, -1.9217231519619942) +station = ('klwt', 0.0084833041709739387) +zone = ('mtz050', 0.0037253317832821732) + +[59453] +centroid = (0.81399658746855919, -1.913803161975709) +station = ('klwt', 0.0075781146797382548) +zone = ('mtz063', 0.00030386588543535259) + +[59454] +centroid = (0.85036839386878771, -1.9548632718126446) +station = ('kctb', 0.004853156967192308) +zone = ('mtz044', 0.0037569132651103562) + +[59456] +centroid = (0.84247304793154087, -1.9436278020193938) +station = ('kgfa', 0.013602747752297686) +zone = ('mtz045', 0.006413965923889574) + +[59457] +centroid = (0.82274815703024939, -1.9078319891789086) +station = ('klwt', 0.0022816532109294022) +zone = ('mtz051', 0.0023883135904177906) + +[59460] +centroid = (0.83923406590568983, -1.9286750601720752) +station = ('kfhu', 0.0081279100396766148) +zone = ('mtz013', 0.0036519912810442198) + +[59461] +centroid = (0.84629860021240211, -1.9408315402116034) +station = ('cwoe', 0.013828405104617889) +zone = ('mtz045', 0.0024029528555896437) + +[59462] +centroid = (0.8224438937817492, -1.9179744465280979) +station = ('klwt', 0.0054013550943248735) +zone = ('mtz050', 0.0046467500878391308) + +[59463] +centroid = (0.82092680123603812, -1.9343629485779845) +station = ('kgfa', 0.0091166176979786996) +zone = ('mtz050', 0.006719165993027766) + +[59464] +centroid = (0.81868352954844992, -1.9138479296710229) +station = ('klwt', 0.003493178712117169) +zone = ('mtz063', 0.0046977978457147726) + +[59465] +centroid = (0.81839090764606059, -1.9324333125569797) +station = ('kgfa', 0.011974026471319114) +zone = ('mtz054', 0.0054688573998065504) + +[59466] +centroid = (0.85117669075197133, -1.9495511004348121) +station = ('cwry', 0.007514508572465035) +zone = ('mtz044', 0.0019842093584692619) + +[59467] +centroid = (0.83893362492825141, -1.9652633921193059) +station = ('kctb', 0.0096342364577140186) +zone = ('mtz048', 0.0062032184179002465) + +[59468] +centroid = (0.83261994871903955, -1.9482714250272497) +station = ('kgtf', 0.0050664404865823562) +zone = ('mtz049', 0.0025386974563759621) + +[59469] +centroid = (0.82381980664426635, -1.9321086813161086) +station = ('kgfa', 0.0077200493743583686) +zone = ('mtz050', 0.0058446561688372863) + +[59471] +centroid = (0.82775128295743128, -1.8984308778827961) +station = ('klwt', 0.010380209154813365) +zone = ('mtz051', 0.0060580298465528083) + +[59472] +centroid = (0.82722731766269009, -1.9400911366363225) +station = ('kgfa', 0.0018267318475732246) +zone = ('mtz012', 0.0027098833455467038) + +[59474] +centroid = (0.84663839836447297, -1.9500483447387051) +station = ('kctb', 0.0077187890230543243) +zone = ('mtz044', 0.0025847422537176039) + +[59477] +centroid = (0.82816150514482001, -1.9533124245992) +station = ('kgfa', 0.0086933539053223405) +zone = ('mtz049', 0.0065108404497823446) + +[59479] +centroid = (0.8208729927351992, -1.9251910164659516) +station = ('kfhu', 0.010490741957763613) +zone = ('mtz050', 0.0005183082323748908) + +[59480] +centroid = (0.82303580474427063, -1.941315869079032) +station = ('kgtf', 0.0057127787842844299) +zone = ('mtz012', 0.0029915124823587445) + +[59482] +centroid = (0.85294022378806389, -1.953233204104452) +station = ('cwry', 0.0048620571569498502) +zone = ('mtz044', 0.0044980122570440562) + +[59483] +centroid = (0.82821133429496452, -1.9495566854884183) +station = ('kgtf', 0.0037604792989752566) +zone = ('mtz012', 0.0048913274960559845) + +[59484] +centroid = (0.85463858622988709, -1.9488118138702524) +station = ('cwry', 0.005333344123847495) +zone = ('mtz044', 0.0054617365298660348) + +[59485] +centroid = (0.82731571858930364, -1.9473021564271547) +station = ('kgtf', 0.0025014654549462083) +zone = ('mtz012', 0.0031227540713489) + +[59486] +centroid = (0.8434829128900373, -1.9609135778377307) +station = ('kctb', 0.0047608700728481515) +zone = ('mtz046', 0.0046007328504468628) + +[59487] +centroid = (0.83055326944516805, -1.9484591700948868) +station = ('kgtf', 0.0036698273264209424) +zone = ('mtz049', 0.0042316706036763137) + +[59489] +centroid = (0.83120516737408034, -1.9064110817282749) +station = ('klwt', 0.010361909563430661) +zone = ('mtz051', 0.0063000084752719513) + +[59501] +centroid = (0.8497984042416713, -1.9160421750599226) +station = ('khvr', 0.0024467494043995076) +zone = ('mtz011', 0.0039556022593800755) + +[59520] +centroid = (0.83819620586599142, -1.9183002645928604) +station = ('kfhu', 0.0084438570281373335) +zone = ('mtz013', 0.0066315202795948743) + +[59521] +centroid = (0.84297268333650932, -1.9184355799697674) +station = ('khvr', 0.0047231474725617853) +zone = ('mtz011', 0.0061683018109736434) + +[59522] +centroid = (0.8473710003179975, -1.9374054588899385) +station = ('cwoe', 0.011654054651813231) +zone = ('mtz045', 0.00029455836112738065) + +[59523] +centroid = (0.84703593200819971, -1.9065726294038394) +station = ('khvr', 0.0061109739322696222) +zone = ('mtz047', 0.0036700224281362762) + +[59524] +centroid = (0.84175592704848146, -1.8908374739061444) +station = ('cwvn', 0.01700691642157421) +zone = ('mtz016', 0.0061179477262272098) + +[59525] +centroid = (0.84979466923707203, -1.9251477846603797) +station = ('cwoe', 0.0076862113231306118) +zone = ('mtz011', 0.0024548795379799051) + +[59526] +centroid = (0.84544742058949718, -1.8974879463011138) +station = ('cwvn', 0.017026046050208511) +zone = ('mtz047', 0.0027887840028831155) + +[59527] +centroid = (0.83834028279574357, -1.8980964204382367) +station = ('khvr', 0.014828427581343048) +zone = ('mtz060', 0.0049068488294814585) + +[59528] +centroid = (0.84781419177495654, -1.9269960883382418) +station = ('cwoe', 0.0094567891731119156) +zone = ('mtz011', 0.0035510092836899287) + +[59529] +centroid = (0.8521486646124069, -1.8959823903817583) +station = ('cweh', 0.011358933742566982) +zone = ('mtz047', 0.0078088650880395695) + +[59530] +centroid = (0.84878464719894287, -1.9323831168876924) +station = ('cwoe', 0.0089389340867443243) +zone = ('mtz045', 0.00375099382655125) + +[59531] +centroid = (0.8515180247937838, -1.9338494552587553) +station = ('cwoe', 0.0068954241292404688) +zone = ('mtz045', 0.0047191026622173289) + +[59532] +centroid = (0.84784869693426845, -1.9217084562896922) +station = ('khvr', 0.00394759276964684) +zone = ('mtz011', 0.00087581919966700484) + +[59535] +centroid = (0.83741764939326169, -1.9074964845367977) +station = ('khvr', 0.011369886280824778) +zone = ('mtz047', 0.0087911173075099405) + +[59537] +centroid = (0.85224045147776917, -1.8859395564262726) +station = ('cwvn', 0.0068185849879180797) +zone = ('mtz059', 0.0037301407525399989) + +[59538] +centroid = (0.83971314133206965, -1.8822594075253949) +station = ('kggw', 0.014421391290730614) +zone = ('mtz016', 0.00015217592362367296) + +[59540] +centroid = (0.84814416372333856, -1.9297104069376507) +station = ('cwoe', 0.0091721133036809666) +zone = ('mtz011', 0.0052587708445148203) + +[59542] +centroid = (0.85159862409864096, -1.8915756609132754) +station = ('cwvn', 0.010301115265740119) +zone = ('mtz059', 0.0073508029222421134) + +[59544] +centroid = (0.85181333450322116, -1.8772259303225212) +station = ('cwvn', 0.004571439250896008) +zone = ('mtz059', 0.0021470773033280838) + +[59545] +centroid = (0.85414601940838908, -1.9401532005445232) +station = ('cxfm', 0.010154030830329491) +zone = ('mtz045', 0.0067732333325530979) + +[59546] +centroid = (0.83341546979209846, -1.8952962316396291) +station = ('klwt', 0.015886755638939258) +zone = ('mtz060', 0.0016750046176383076) + +[59547] +centroid = (0.84930437134360171, -1.9029386793682621) +station = ('khvr', 0.0087177531681317619) +zone = ('mtz047', 0.0040794248493724464) + +[59601] +centroid = (0.81205628748582459, -1.9584404113810696) +station = ('khln', 0.0031871539682701848) +zone = ('mtz052', 0.0067607980108214342) + +[59602] +centroid = (0.81575580954139948, -1.9531199322359976) +station = ('khln', 0.0025401972346552463) +zone = ('mtz014', 0.005616316015963207) + +[59631] +centroid = (0.80840751960489787, -1.9622697510264078) +station = ('kbtm', 0.0061963087635434518) +zone = ('mtz052', 0.0050248379766781323) + +[59632] +centroid = (0.80634050871846841, -1.9551257169722671) +station = ('khln', 0.0070128658498518773) +zone = ('mtz052', 0.0012604483073291991) + +[59633] +centroid = (0.81714299723088457, -1.9607540721973908) +station = ('khln', 0.0059047715010413756) +zone = ('mtz014', 0.0024968321118694395) + +[59634] +centroid = (0.81076662879494099, -1.9538576305509379) +station = ('khln', 0.0025668244753341597) +zone = ('mtz052', 0.0056065378537652867) + +[59635] +centroid = (0.81271476530601705, -1.9517315751759134) +station = ('khln', 0.0017940320349977708) +zone = ('mtz053', 0.0056897340918447541) + +[59636] +centroid = (0.81366776743748348, -1.9566872456007338) +station = ('khln', 0.0017517599147068746) +zone = ('mtz014', 0.0060460607444326065) + +[59638] +centroid = (0.80914787082030126, -1.9542015127734584) +station = ('khln', 0.0041755725913225419) +zone = ('mtz052', 0.0040054497974815126) + +[59639] +centroid = (0.82163364212980339, -1.9668632132715616) +station = ('k3du', 0.0089895614407927045) +zone = ('mtz014', 0.005592542731522549) + +[59640] +centroid = (0.81569910379400223, -1.9599940336680248) +station = ('khln', 0.0046393397731640017) +zone = ('mtz014', 0.003768368285966852) + +[59642] +centroid = (0.80779906292106751, -1.9324038863057911) +station = ('kbzn', 0.010174588572977301) +zone = ('mtz040', 0.0057857524758936942) + +[59643] +centroid = (0.80586251539622478, -1.9476098928808663) +station = ('kbzn', 0.0086369650793393649) +zone = ('mtz053', 0.0030060768775604573) + +[59644] +centroid = (0.81033530557689559, -1.9445751318307911) +station = ('khln', 0.0072582135608922401) +zone = ('mtz053', 0.0019429315381212394) + +[59645] +centroid = (0.81485357903787359, -1.9382694841361383) +station = ('kgtf', 0.014146112830356241) +zone = ('mtz054', 0.0025577700579962276) + +[59647] +centroid = (0.81142166831650697, -1.9487114050783851) +station = ('khln', 0.0042189221995916192) +zone = ('mtz053', 0.0033627682577897153) + +[59648] +centroid = (0.82165284075157541, -1.9570004623882966) +station = ('khln', 0.0085488566745978486) +zone = ('mtz014', 0.002720195916667419) + +[59701] +centroid = (0.80346307164716801, -1.9630716425512365) +station = ('kbtm', 0.00122916121746847) +zone = ('mtz052', 0.0050301133291895872) + +[59703] +centroid = (0.8036488444927502, -1.964149243738003) +station = ('kbtm', 0.0014520125217219206) +zone = ('mtz052', 0.005662584698272452) + +[59710] +centroid = (0.78653873606362668, -1.9559554639519576) +station = ('kdln', 0.0067510836176344503) +zone = ('mtz015', 0.0044931145061844584) + +[59711] +centroid = (0.80458036162112456, -1.9746499473694565) +station = ('k3du', 0.0099074905473631996) +zone = ('mtz007', 0.0057120953124922633) + +[59713] +centroid = (0.81508233934293239, -1.9645611763480586) +station = ('k3du', 0.0070766353272261901) +zone = ('mtz014', 0.0056433114721006544) + +[59714] +centroid = (0.80250725953560587, -1.939581029255842) +station = ('kbzn', 0.0034460949910470923) +zone = ('mtz055', 0.0072103060168871979) + +[59715] +centroid = (0.79982173886885466, -1.9355491616041025) +station = ('kbzn', 0.0031474275535784161) +zone = ('mtz040', 0.0043206342772614953) + +[59716] +centroid = (0.78656971565784939, -1.9458531840821491) +station = ('kwys', 0.0081299057422914885) +zone = ('mtz015', 0.0066903476079904888) + +[59718] +centroid = (0.79545588501145337, -1.9393765115740933) +station = ('kbzn', 0.0036349123672125088) +zone = ('mtz055', 0.00069469813611416627) + +[59720] +centroid = (0.78293288582900633, -1.9499431537446874) +station = ('kwys', 0.0081185467831626865) +zone = ('mtz015', 0.0080874205700832563) + +[59721] +centroid = (0.80081055515657207, -1.951926650626409) +station = ('kbtm', 0.0081784289601203111) +zone = ('mtz052', 0.005579475906414986) + +[59722] +centroid = (0.80924779091997801, -1.968251448158598) +station = ('k3du', 0.0069285820110414013) +zone = ('mtz007', 0.0017998672652853867) + +[59724] +centroid = (0.78009679560768563, -1.9680692532379822) +station = ('kdln', 0.010013082724667) +zone = ('mtz008', 0.0078043497693469866) + +[59725] +centroid = (0.7871089002236682, -1.9691061009867143) +station = ('kdln', 0.0042652612629931041) +zone = ('mtz008', 0.0011294563870252155) + +[59727] +centroid = (0.79939003167837386, -1.9693905896547894) +station = ('kbtm', 0.0050132487654219434) +zone = ('mtz007', 0.010290267122522534) + +[59728] +centroid = (0.81173355865383834, -1.9623582566727762) +station = ('khln', 0.0058396757785627871) +zone = ('mtz052', 0.0075147461756428224) + +[59729] +centroid = (0.79052454447640608, -1.9486439306495029) +station = ('kbzn', 0.010499773263398815) +zone = ('mtz015', 0.0033321840896863085) + +[59730] +centroid = (0.79018848132893449, -1.9396748930630145) +station = ('kbzn', 0.0088832748716519156) +zone = ('mtz055', 0.0051501585840030943) + +[59731] +centroid = (0.81301276282250257, -1.9683757505079249) +station = ('k3du', 0.0046779001433238446) +zone = ('mtz007', 0.0037686400068928775) + +[59732] +centroid = (0.79386684999397517, -1.9674575676950357) +station = ('kdln', 0.0046438378244563205) +zone = ('mtz008', 0.0065022722050581674) + +[59733] +centroid = (0.81144287406691873, -1.9712030442698154) +station = ('k3du', 0.0039390379096992927) +zone = ('mtz007', 0.0018303055417067981) + +[59735] +centroid = (0.79676404419240821, -1.9524869885827618) +station = ('kdln', 0.010885963357096233) +zone = ('mtz015', 0.0061477412689880237) + +[59736] +centroid = (0.79099449183079806, -1.9787468808957107) +station = ('ksmn', 0.0072047470371128615) +zone = ('mtz008', 0.0066968420890392176) + +[59739] +centroid = (0.77904298325862387, -1.9577719502775559) +station = ('kdln', 0.011691158648738134) +zone = ('idz019', 0.009113649433133808) + +[59740] +centroid = (0.79382700412715212, -1.9517640732065857) +station = ('kdln', 0.0097438090646043852) +zone = ('mtz015', 0.0033748307458742106) + +[59741] +centroid = (0.79883412685832111, -1.9437442852936717) +station = ('kbzn', 0.0026683253047033507) +zone = ('mtz055', 0.0042427515433615731) + +[59743] +centroid = (0.79727355816094292, -1.9666429003600825) +station = ('kbtm', 0.0054563873706445342) +zone = ('mtz008', 0.0099253870037419364) + +[59745] +centroid = (0.79578631074544093, -1.9480460506609398) +station = ('kbzn', 0.0065495938876213144) +zone = ('mtz015', 0.0063554772562656346) + +[59746] +centroid = (0.79214304065165797, -1.9733053806203054) +station = ('kdln', 0.0067205428862113772) +zone = ('mtz008', 0.0048602800202852516) + +[59747] +centroid = (0.79822942263238261, -1.9534398510878879) +station = ('kbtm', 0.0080857179667425203) +zone = ('mtz052', 0.0075025721214431445) + +[59748] +centroid = (0.80366621051880749, -1.9669727326821242) +station = ('kbtm', 0.0027899421721391967) +zone = ('mtz007', 0.0065286641938323616) + +[59749] +centroid = (0.79328012265933223, -1.9562568299538996) +station = ('kdln', 0.0066987979480055389) +zone = ('mtz015', 0.0033192814218836598) + +[59750] +centroid = (0.80194721828522586, -1.9679849538351109) +station = ('kbtm', 0.0031377111090123981) +zone = ('mtz007', 0.0079298915250249485) + +[59751] +centroid = (0.79769882508648393, -1.9623839304660733) +station = ('kbtm', 0.0046359875452849876) +zone = ('mtz052', 0.0087907223350913218) + +[59752] +centroid = (0.80191562782576475, -1.9461108993994984) +station = ('kbzn', 0.0051577567849835837) +zone = ('mtz053', 0.0067293686348090867) + +[59754] +centroid = (0.793371822258232, -1.9604652725660634) +station = ('kdln', 0.0045339229021965745) +zone = ('mtz015', 0.0056747639631547992) + +[59755] +centroid = (0.79097079025955597, -1.9533258636344404) +station = ('kdln', 0.0078626671011545139) +zone = ('mtz015', 0.00032473197645100239) + +[59756] +centroid = (0.80599041312381081, -1.9692201582533324) +station = ('kbtm', 0.0054420940198352816) +zone = ('mtz007', 0.0038033854466670873) + +[59758] +centroid = (0.78089420163633683, -1.9405077118221885) +station = ('kwys', 0.001311964995768926) +zone = ('wyz001', 0.0084094425459347987) + +[59759] +centroid = (0.80026170146669739, -1.9581096889411091) +station = ('kbtm', 0.0042514409527882454) +zone = ('mtz052', 0.0053152921504174859) + +[59760] +centroid = (0.79877839849530485, -1.9483470152371536) +station = ('kbzn', 0.0058754948542065876) +zone = ('mtz055', 0.0065743531886435554) + +[59761] +centroid = (0.79660870988898069, -1.9815454116315283) +station = ('ksmn', 0.010123661354049882) +zone = ('mtz006', 0.010953883276613105) + +[59762] +centroid = (0.79590829180686296, -1.9727594939901592) +station = ('kdln', 0.0085127546950083486) +zone = ('mtz008', 0.0083506728172264826) + +[59801] +centroid = (0.81779842072488595, -1.9899255925816866) +station = ('kmso', 0.0014664777773538333) +zone = ('mtz005', 0.0065129025657259445) + +[59802] +centroid = (0.81862687616093022, -1.9882642136667132) +station = ('kmso', 0.0021678595635592117) +zone = ('mtz043', 0.0065335509725140354) + +[59803] +centroid = (0.81675488836511856, -1.9888099432172268) +station = ('kmso', 0.002752821692807955) +zone = ('mtz005', 0.0056940432002723354) + +[59804] +centroid = (0.81813640373453467, -1.9937561365042087) +station = ('kmso', 0.0017482740755696167) +zone = ('mtz005', 0.006920003370894409) + +[59808] +centroid = (0.8199706749652107, -1.9911798385420474) +station = ('kmso', 0.0011323663963090039) +zone = ('mtz005', 0.0085919712012278177) + +[59820] +centroid = (0.81853938280552763, -2.0005938827279168) +station = ('kmso', 0.0062746005994560655) +zone = ('mtz004', 0.0084498553331187175) + +[59821] +centroid = (0.82333011961603442, -1.9910268429798175) +station = ('kmso', 0.0044878433715452954) +zone = ('mtz043', 0.0058719888649568222) + +[59823] +centroid = (0.81890509909699061, -1.9823052581746767) +station = ('k3du', 0.0067558191437636379) +zone = ('mtz043', 0.0048996025586469883) + +[59824] +centroid = (0.82768298822380071, -1.9932189765203223) +station = ('kmso', 0.0089168830326924482) +zone = ('mtz003', 0.0062179192600303468) + +[59825] +centroid = (0.81357259463337217, -1.9850605396516301) +station = ('kmso', 0.0068435403836172356) +zone = ('mtz005', 0.0049764608034185403) + +[59826] +centroid = (0.82683088357639201, -1.9860491988597146) +station = ('kmso', 0.0087770347399054108) +zone = ('mtz043', 0.0039037116396075863) + +[59827] +centroid = (0.80085523558542304, -1.989747097759085) +station = ('ksmn', 0.013501929754017318) +zone = ('mtz006', 0.0053855577231407834) + +[59828] +centroid = (0.80863149770780629, -1.9892456472116946) +station = ('kmso', 0.010327407798656874) +zone = ('mtz006', 0.0024120860179077108) + +[59829] +centroid = (0.79894919641590512, -1.9948346103556009) +station = ('ksmn', 0.012572737983464038) +zone = ('mtz006', 0.0082945142109623511) + +[59830] +centroid = (0.82771415980424146, -2.0131263415949099) +station = ('kmlp', 0.0038392332907788902) +zone = ('mtz004', 0.0044780911840055114) + +[59831] +centroid = (0.82484469888762257, -1.996103604348141) +station = ('kmso', 0.0067896148909020113) +zone = ('mtz003', 0.0089932065033574479) + +[59832] +centroid = (0.81487600651876158, -1.9766352419403077) +station = ('k3du', 0.0012916576610510282) +zone = ('mtz007', 0.0066025468403847522) + +[59833] +centroid = (0.81429182736482664, -1.9907638044082494) +station = ('kmso', 0.0045806153863702905) +zone = ('mtz005', 0.0029600590000864457) + +[59834] +centroid = (0.82171766227999432, -1.9935439219204587) +station = ('kmso', 0.0032122669647736695) +zone = ('mtz005', 0.010424060681437693) + +[59837] +centroid = (0.81228150477250194, -1.9766796082098934) +station = ('k3du', 0.002541942479508633) +zone = ('mtz007', 0.0048388127275363112) + +[59840] +centroid = (0.8060889195067934, -1.993055858048431) +station = ('kmso', 0.012810835516891711) +zone = ('mtz006', 0.0027458122372678775) + +[59841] +centroid = (0.8086845382637744, -1.993567396598898) +station = ('kmso', 0.010272113537069253) +zone = ('mtz005', 0.0030328222994116158) + +[59842] +centroid = (0.82606347975758276, -2.0147635476997432) +station = ('kmlp', 0.0034242807068207716) +zone = ('mtz004', 0.0051159190974797717) + +[59843] +centroid = (0.81738298000303378, -1.9716244714710021) +station = ('k3du', 0.0036388445875421781) +zone = ('mtz007', 0.0077698636577146233) + +[59844] +centroid = (0.83877429382083701, -2.0241326496573739) +station = ('kszt', 0.0080120821453770613) +zone = ('mtz001', 0.010161073817522463) + +[59845] +centroid = (0.83235340203567498, -1.9993790463020664) +station = ('kgpi', 0.011164256337623107) +zone = ('mtz003', 0.0033560705117439932) + +[59846] +centroid = (0.82295433277478747, -1.9986314694235596) +station = ('kmso', 0.0064028179445470004) +zone = ('mtz004', 0.0064477224486461969) + +[59847] +centroid = (0.81510522060942603, -1.9977142639950514) +station = ('kmso', 0.0057079029377571202) +zone = ('mtz005', 0.0056346562255363466) + +[59848] +centroid = (0.83251308220893994, -2.001775610257857) +station = ('kgpi', 0.011604890194632018) +zone = ('mtz003', 0.0048150531607525013) + +[59851] +centroid = (0.81806276829339308, -1.9875205114191459) +station = ('kmso', 0.0027790935895423484) +zone = ('mtz043', 0.0067135534110339774) + +[59853] +centroid = (0.83849137594908862, -2.0209293770680188) +station = ('kmlp', 0.010434711508081326) +zone = ('mtz001', 0.0084146672575492621) + +[59854] +centroid = (0.82080153895562258, -1.9737573859899868) +station = ('k3du', 0.0063578220125517036) +zone = ('mtz043', 0.0066126428664171838) + +[59855] +centroid = (0.83087289159108579, -1.9917451157801833) +station = ('kmso', 0.012024600156024972) +zone = ('mtz003', 0.0036067724184095647) + +[59856] +centroid = (0.8257881540680807, -2.0027372866757061) +station = ('kmlp', 0.011107732288364459) +zone = ('mtz004', 0.0030539983976889508) + +[59858] +centroid = (0.80783911822740084, -1.9803797236774139) +station = ('k3du', 0.0076646949201898172) +zone = ('mtz007', 0.0068533768665764057) + +[59859] +centroid = (0.82964599494010383, -2.0041012614861398) +station = ('kmlp', 0.010018467561723926) +zone = ('mtz004', 0.0045010937516605978) + +[59860] +centroid = (0.83263590102840268, -1.9926916252868323) +station = ('kgpi', 0.010415939880564431) +zone = ('mtz003', 0.001874311379531538) + +[59863] +centroid = (0.82554468063742747, -1.9928612538368338) +station = ('kmso', 0.0067657925696051977) +zone = ('mtz003', 0.008366308368856339) + +[59864] +centroid = (0.82954192095680745, -1.9915830270525505) +station = ('kmso', 0.010692182064619464) +zone = ('mtz003', 0.0048010574222057201) + +[59865] +centroid = (0.82607327105468642, -1.9898533359506541) +station = ('kmso', 0.0073012666350755198) +zone = ('mtz043', 0.0055343801844911205) + +[59866] +centroid = (0.82601270812964211, -2.0098960513087336) +station = ('kmlp', 0.0063759163478862438) +zone = ('mtz004', 0.0018326196751656764) + +[59867] +centroid = (0.82798424950598748, -2.0178096882965413) +station = ('kmlp', 0.00066867761664807116) +zone = ('idz004', 0.0065809276368440717) + +[59868] +centroid = (0.82400121616671873, -1.9810534731285614) +station = ('kmso', 0.0087408080581194234) +zone = ('mtz043', 0.00094558566415252365) + +[59870] +centroid = (0.81186273047177848, -1.9907827586839262) +station = ('kmso', 0.0070012508511748135) +zone = ('mtz005', 0.00071809227934757722) + +[59871] +centroid = (0.80059523388675347, -1.9865221481804201) +station = ('ksmn', 0.013184122650322871) +zone = ('mtz006', 0.0059030011201537131) + +[59872] +centroid = (0.82222492477379394, -2.005399367570603) +station = ('kmlp', 0.010835907112808246) +zone = ('mtz004', 0.0036711069020281791) + +[59873] +centroid = (0.8319688710948755, -2.012317974898556) +station = ('kmlp', 0.0057827498371706481) +zone = ('mtz004', 0.0071672977118363915) + +[59874] +centroid = (0.83425708501070284, -2.0180093888695545) +station = ('kmlp', 0.0061195354565106181) +zone = ('mtz001', 0.01015374648264083) + +[59875] +centroid = (0.81017906370225712, -1.9951663101799426) +station = ('kmso', 0.0090441638950938541) +zone = ('mtz005', 0.0027615679105563603) + +[59901] +centroid = (0.84176617213119065, -1.9963957899182174) +station = ('kgpi', 0.0018437838216526945) +zone = ('mtz003', 0.0080311408466899412) + +[59910] +centroid = (0.8341847585665001, -1.9948912986497058) +station = ('kgpi', 0.0088172705075077878) +zone = ('mtz003', 0.00038525394263241945) + +[59911] +centroid = (0.83319297521905433, -1.9851466018370458) +station = ('kgpi', 0.011566634224058615) +zone = ('mtz003', 0.0065693377275042172) + +[59912] +centroid = (0.84488273676330683, -1.9923694724134993) +station = ('kgpi', 0.0022942950821709922) +zone = ('mtz002', 0.0046812318615481038) + +[59913] +centroid = (0.84544234168137378, -1.9888262794990255) +station = ('kgpi', 0.0043999891067975022) +zone = ('mtz002', 0.0033471007696317541) + +[59914] +centroid = (0.83528311171807257, -1.9945942261577239) +station = ('kgpi', 0.0077129441471444045) +zone = ('mtz003', 0.0014955324018969716) + +[59915] +centroid = (0.83510739196898187, -1.9967474214026166) +station = ('kgpi', 0.0080504006338670605) +zone = ('mtz003', 0.0018135842570480456) + +[59916] +centroid = (0.84223538644729679, -1.9788824406187131) +station = ('k8s0', 0.0067617965840869789) +zone = ('mtz002', 0.0049150516696909747) + +[59917] +centroid = (0.85409493362118327, -2.0049801743908588) +station = ('cwrt', 0.012968730778771961) +zone = ('mtz001', 0.011638701905572271) + +[59918] +centroid = (0.85116393239513921, -2.0046687901990108) +station = ('kgpi', 0.010659208876522596) +zone = ('mtz001', 0.0089724361832879424) + +[59919] +centroid = (0.83703458452903401, -1.9764036891084458) +station = ('k8s0', 0.011308213094447395) +zone = ('mtz002', 0.0085909895559077125) + +[59920] +centroid = (0.83869603325717745, -1.9992023142620095) +station = ('kgpi', 0.0053880172797545339) +zone = ('mtz003', 0.0056904619123399874) + +[59922] +centroid = (0.8376993629878261, -1.9929482235934606) +station = ('kgpi', 0.0053742797889930515) +zone = ('mtz003', 0.0041085243820916254) + +[59923] +centroid = (0.84170499834090817, -2.0139742050922362) +station = ('kmlp', 0.013922567262602388) +zone = ('mtz001', 0.0027823816015579315) + +[59925] +centroid = (0.8386019949170801, -2.0042303634909095) +station = ('kgpi', 0.0079298727517978541) +zone = ('mtz001', 0.0059592754090046097) + +[59926] +centroid = (0.84391409648174254, -1.9896403185154481) +station = ('kgpi', 0.0032507345004251457) +zone = ('mtz002', 0.0026271997665558398) + +[59927] +centroid = (0.84809646387488158, -2.0020991768478846) +station = ('kgpi', 0.0072522982186522316) +zone = ('mtz001', 0.007443884054855545) + +[59928] +centroid = (0.85133921581191685, -1.9976748893671266) +station = ('kgpi', 0.0086341251781078213) +zone = ('mtz002', 0.011585199137289792) + +[59929] +centroid = (0.836491525332276, -1.9961215637861442) +station = ('kgpi', 0.0066116559886497516) +zone = ('mtz003', 0.0028185913980914206) + +[59930] +centroid = (0.85288538554296622, -2.009453191464333) +station = ('kgpi', 0.014068707949338437) +zone = ('mtz001', 0.009906112514251315) + +[59931] +centroid = (0.83626808828143562, -1.9927292371322127) +station = ('kgpi', 0.0068102972617826692) +zone = ('mtz003', 0.0028583227846408796) + +[59932] +centroid = (0.83877031447014239, -1.9930337621801009) +station = ('kgpi', 0.0043111865425211199) +zone = ('mtz003', 0.0051218036706152546) + +[59933] +centroid = (0.84966785361362207, -2.0031593771020084) +station = ('kgpi', 0.0088759862078484179) +zone = ('mtz001', 0.00816995835147581) + +[59934] +centroid = (0.84823516519053754, -2.0053536399442007) +station = ('kgpi', 0.0089962967555576069) +zone = ('mtz001', 0.0061728222551464549) + +[59935] +centroid = (0.84910926098652129, -2.021665225333952) +station = ('k65s', 0.0055583557113822622) +zone = ('mtz001', 0.0097191301264014374) + +[59936] +centroid = (0.84869076593847814, -1.9863179097513517) +station = ('k8s0', 0.0080075909808110784) +zone = ('mtz002', 0.006124512118899199) + +[59937] +centroid = (0.84484568342328703, -1.9989738681162157) +station = ('kgpi', 0.0035991662769845412) +zone = ('mtz001', 0.007731839917921016) + +[60002] +centroid = (0.74126013051803574, -1.5373526418274466) +station = ('kenw', 0.0029679215316267779) +zone = ('wiz072', 0.0019210658594844496) + +[60004] +centroid = (0.73500666816801763, -1.5355326822966369) +station = ('kpwk', 0.0010320551582404022) +zone = ('ilz006', 0.0036839247252200809) + +[60005] +centroid = (0.7341638486722295, -1.5356360057883551) +station = ('kpwk', 0.0014333521095608922) +zone = ('ilz013', 0.0039302172146938154) + +[60007] +centroid = (0.73318925681791602, -1.5358436650627574) +station = ('kord', 0.0011361285415596592) +zone = ('ilz013', 0.0029649283942194855) + +[60008] +centroid = (0.73425628130941523, -1.536172851612976) +station = ('kord', 0.001985615372332264) +zone = ('ilz013', 0.0039065743954550458) + +[60010] +centroid = (0.73560032445979096, -1.538774212503196) +station = ('kord', 0.0043028953465345963) +zone = ('ilz006', 0.0037192882981811034) + +[60012] +centroid = (0.73779416842296275, -1.5413715416828437) +station = ('kdpa', 0.0065539874210567926) +zone = ('ilz005', 0.0020022523457196863) + +[60013] +centroid = (0.73693365128855948, -1.5400005506488175) +station = ('kdpa', 0.0056438092188852707) +zone = ('ilz006', 0.0034659114290826482) + +[60014] +centroid = (0.73709467536534845, -1.541604804937373) +station = ('kdpa', 0.0058878628364490712) +zone = ('ilz005', 0.0022761860515729134) + +[60015] +centroid = (0.73607182515721725, -1.533763459487183) +station = ('kpwk', 0.0010365482953947638) +zone = ('ilz006', 0.0030684105482565041) + +[60016] +centroid = (0.73390362008075716, -1.534057146040416) +station = ('kpwk', 0.0011726731217411167) +zone = ('ilz014', 0.0037981444601005786) + +[60018] +centroid = (0.73267853857219734, -1.5343497155829275) +station = ('kord', 9.3750586704097714e-05) +zone = ('ilz014', 0.0027297452574740417) + +[60020] +centroid = (0.73982855910567247, -1.538915200200172) +station = ('kenw', 0.0048057425170681418) +zone = ('ilz006', 0.0024734768618552344) + +[60021] +centroid = (0.7364363895313738, -1.5396789911874298) +station = ('kdpa', 0.005161069147752338) +zone = ('ilz006', 0.0035536919272995634) + +[60022] +centroid = (0.73540186307054678, -1.5317337986467461) +station = ('kpwk', 0.0018176047831921368) +zone = ('ilz006', 0.0045263423971537353) + +[60025] +centroid = (0.73435079088841071, -1.5327660561795458) +station = ('kpwk', 0.0012529259178021318) +zone = ('ilz014', 0.0041071609789809106) + +[60026] +centroid = (0.73464807281990285, -1.5330526217894307) +station = ('kpwk', 0.00091541474848138194) +zone = ('ilz014', 0.0044122796625051287) + +[60029] +centroid = (0.73407244577930253, -1.532021027481747) +station = ('kpwk', 0.0018674212723270545) +zone = ('ilz014', 0.0038606792129573819) + +[60030] +centroid = (0.73892140677365581, -1.536663376399249) +station = ('kugn', 0.0026788818467488045) +zone = ('ilz006', 0.00057935077323323597) + +[60031] +centroid = (0.73955838213746372, -1.534831251923553) +station = ('kugn', 0.001201427736654573) +zone = ('ilz006', 0.0012094791500540738) + +[60033] +centroid = (0.74045220015399504, -1.5465015355933533) +station = ('kbuu', 0.0060596202291129456) +zone = ('ilz005', 0.0026637145266583144) + +[60034] +centroid = (0.74100253737373389, -1.5432148013591678) +station = ('kbuu', 0.0043470868546748535) +zone = ('ilz005', 0.0023406821778653524) + +[60035] +centroid = (0.73628403974096723, -1.5325027383552972) +station = ('kpwk', 0.0017158965609167217) +zone = ('ilz006', 0.0034997807145995866) + +[60040] +centroid = (0.7366401043616666, -1.5326277562896176) +station = ('kpwk', 0.001927433144378465) +zone = ('ilz006', 0.0031945078001991136) + +[60041] +centroid = (0.73940091853234879, -1.5385272833206238) +station = ('kugn', 0.0037778477756733918) +zone = ('ilz006', 0.0020358923455808687) + +[60042] +centroid = (0.73789389653642168, -1.539321530303329) +station = ('kugn', 0.0048944369824511225) +zone = ('ilz006', 0.0026120505798328383) + +[60043] +centroid = (0.73458916795764806, -1.5309083626303082) +station = ('kord', 0.0032022007979779156) +zone = ('ilz014', 0.0045427329872331354) + +[60044] +centroid = (0.73800214185663038, -1.5334863710151363) +station = ('kugn', 0.0023090371954191174) +zone = ('ilz006', 0.0019449689519997198) + +[60045] +centroid = (0.73715721051244743, -1.5335296551805857) +station = ('kpwk', 0.0021319538714899508) +zone = ('ilz006', 0.0023504669597488358) + +[60046] +centroid = (0.74030449293939871, -1.5369215629554964) +station = ('kugn', 0.0024797720573456056) +zone = ('ilz006', 0.0017775824819384726) + +[60047] +centroid = (0.73658364296036449, -1.5366613169107317) +station = ('kpwk', 0.0023996666118409806) +zone = ('ilz006', 0.0021584998740778846) + +[60048] +centroid = (0.73819412807434981, -1.5350277410907425) +station = ('kugn', 0.0023772189635633454) +zone = ('ilz006', 0.00083747302034756015) + +[60050] +centroid = (0.73881789129572006, -1.5410416046410469) +station = ('kbuu', 0.0062740638739226546) +zone = ('ilz005', 0.0020320717742427058) + +[60051] +centroid = (0.73924226810334259, -1.5398806639824978) +station = ('kenw', 0.0057155989660134018) +zone = ('ilz006', 0.0029579511955920533) + +[60053] +centroid = (0.73377718842974271, -1.5322062069153835) +station = ('kpwk', 0.0019371366027319493) +zone = ('ilz014', 0.0035514953648407596) + +[60056] +centroid = (0.73421055368301291, -1.5347503733660155) +station = ('kpwk', 0.00097396512932472078) +zone = ('ilz013', 0.0042358444220726675) + +[60060] +centroid = (0.73775339753163616, -1.5365752198187308) +station = ('kpwk', 0.003227980065380763) +zone = ('ilz006', 0.0010324593143037318) + +[60061] +centroid = (0.73713822133018581, -1.5351765129561825) +station = ('kpwk', 0.0022009019078504236) +zone = ('ilz006', 0.0016428336150397667) + +[60062] +centroid = (0.73524631932760898, -1.5332142218248728) +station = ('kpwk', 0.00071101577134558675) +zone = ('ilz006', 0.0039855396291512126) + +[60064] +centroid = (0.7386936238529781, -1.5333887547500722) +station = ('kugn', 0.0016219625770688066) +zone = ('ilz006', 0.0018956391762165819) + +[60067] +centroid = (0.7348939722582164, -1.5370130705681786) +station = ('kpwk', 0.0021357324770878007) +zone = ('ilz006', 0.0038641394588996643) + +[60068] +centroid = (0.73324357146423791, -1.5331571495583325) +station = ('kord', 0.0010716695425347579) +zone = ('ilz014', 0.0030195796570820213) + +[60069] +centroid = (0.73646185388516039, -1.5345621396061881) +station = ('kpwk', 0.0014214906189707836) +zone = ('ilz006', 0.0024429122885709035) + +[60070] +centroid = (0.73484754650011319, -1.5346500692939036) +station = ('kpwk', 0.00043843828609872634) +zone = ('ilz006', 0.0039495260208761108) + +[60071] +centroid = (0.74120743902791797, -1.5414037604608355) +station = ('kbuu', 0.0038859852739342232) +zone = ('ilz005', 0.0030627830534562597) + +[60072] +centroid = (0.7401364875456018, -1.5412281977913775) +station = ('kbuu', 0.0049542884234883263) +zone = ('ilz005', 0.0023735188798035484) + +[60073] +centroid = (0.73912641314759508, -1.5378022910026381) +station = ('kugn', 0.0033480297051086401) +zone = ('ilz006', 0.001439150840922601) + +[60074] +centroid = (0.73533273057887516, -1.5363492694937677) +station = ('kpwk', 0.0016555916742526568) +zone = ('ilz006', 0.0033575883272482076) + +[60076] +centroid = (0.73365367147857918, -1.531176096137564) +station = ('kord', 0.0025857289269092111) +zone = ('ilz014', 0.0035909481938534572) + +[60077] +centroid = (0.73364480520597897, -1.5316518379850725) +station = ('kord', 0.0022545243916927147) +zone = ('ilz014', 0.003487464487885953) + +[60081] +centroid = (0.74090996511020812, -1.5398238709686378) +station = ('kbuu', 0.004303283330475572) +zone = ('wiz072', 0.0032236215356614998) + +[60083] +centroid = (0.74065495505319923, -1.5348755134733836) +station = ('kugn', 0.0010284907173715384) +zone = ('ilz006', 0.0021315613352290543) + +[60084] +centroid = (0.73774489777817898, -1.5383491026572877) +station = ('kpwk', 0.0041030954737682462) +zone = ('ilz006', 0.0020029796070589086) + +[60085] +centroid = (0.73918353777401291, -1.5335799032097506) +station = ('kugn', 0.0011270254499634925) +zone = ('ilz006', 0.0018254117749945758) + +[60087] +centroid = (0.74007344625301974, -1.5332863388295652) +station = ('kugn', 0.00031274058401792559) +zone = ('ilz006', 0.0024145239801541228) + +[60088] +centroid = (0.73844238370715354, -1.5331680927727425) +station = ('kugn', 0.0018907170651761064) +zone = ('ilz006', 0.0020723273804097359) + +[60089] +centroid = (0.73596110146947069, -1.5352030070542277) +station = ('kpwk', 0.0011841333305260681) +zone = ('ilz006', 0.0027724386629492496) + +[60090] +centroid = (0.73529707350225693, -1.5345127118817716) +station = ('kpwk', 0.00035236245057330073) +zone = ('ilz006', 0.0035445331125108777) + +[60091] +centroid = (0.73440081202477281, -1.5310129602123799) +station = ('kord', 0.003032470471736342) +zone = ('ilz014', 0.0043399556795435728) + +[60093] +centroid = (0.7349006917758365, -1.5316362347415597) +station = ('kpwk', 0.0018687645871953075) +zone = ('ilz014', 0.0047221871940488127) + +[60096] +centroid = (0.74141101423187072, -1.5328320121719785) +station = ('kugn', 0.0012254794791548998) +zone = ('ilz006', 0.0035752465366755315) + +[60097] +centroid = (0.73996644011657997, -1.5423655939583172) +station = ('kbuu', 0.0051947847504166455) +zone = ('ilz005', 0.0016445399073866604) + +[60098] +centroid = (0.73873202109652203, -1.5438496823278729) +station = ('kbuu', 0.0066502139221058867) +zone = ('ilz005', 5.7102507654723898e-05) + +[60099] +centroid = (0.74106517724058796, -1.5335331458390897) +station = ('kugn', 0.00075499993961469531) +zone = ('ilz006', 0.0029823154691928349) + +[60101] +centroid = (0.7318350558512936, -1.5361175072223954) +station = ('kord', 0.0015483142291676222) +zone = ('ilz013', 0.0016718104568597819) + +[60102] +centroid = (0.73591355870064634, -1.5412762641589777) +station = ('kdpa', 0.0046826870264740708) +zone = ('ilz005', 0.0033489939198554134) + +[60103] +centroid = (0.7326970041556834, -1.539439863626614) +station = ('kdpa', 0.0015288053272961301) +zone = ('ilz013', 0.0027134169567468668) + +[60104] +centroid = (0.73099354535244454, -1.5337330383983205) +station = ('kord', 0.0018300086677282364) +zone = ('ilz014', 0.0010791659201315872) + +[60106] +centroid = (0.7323349356023573, -1.5348745709955876) +station = ('kord', 0.00052610295872917534) +zone = ('ilz014', 0.0026484917969014591) + +[60107] +centroid = (0.73339757931743399, -1.5389924310195731) +station = ('kdpa', 0.0023039505158668283) +zone = ('ilz013', 0.0031759325446189994) + +[60108] +centroid = (0.73216600518405661, -1.5374930884723546) +station = ('kdpa', 0.0022313631800209253) +zone = ('ilz013', 0.0017126801132679422) + +[60109] +centroid = (0.73390726781889382, -1.5454176686745724) +station = ('kdkb', 0.0029444366363997753) +zone = ('ilz012', 0.0024597775134398846) + +[60110] +centroid = (0.7350399515968532, -1.5409837644296358) +station = ('kdpa', 0.0037861284041264894) +zone = ('ilz012', 0.0035425244467758295) + +[60111] +centroid = (0.73320403975668036, -1.5499458905122865) +station = ('kdkb', 0.0018485728637104202) +zone = ('ilz011', 0.002076460937891119) + +[60112] +centroid = (0.73172574588024109, -1.5479357599061796) +station = ('kdkb', 0.00026662449181304599) +zone = ('ilz011', 0.0011772045271509369) + +[60113] +centroid = (0.73185577290951465, -1.5527473883078327) +station = ('krpj', 0.0016128892015724234) +zone = ('ilz011', 0.0026277795120004054) + +[60115] +centroid = (0.73131501754736927, -1.5491412064606545) +station = ('kdkb', 0.00085091911934662785) +zone = ('ilz011', 0.00019952236989316654) + +[60118] +centroid = (0.73489180804994381, -1.5412024192783256) +station = ('kdpa', 0.0036673454671829913) +zone = ('ilz012', 0.0033336701754002819) + +[60119] +centroid = (0.73044703040376746, -1.544205362976137) +station = ('karr', 0.0014866375062034881) +zone = ('ilz012', 0.0016478340444779698) + +[60120] +centroid = (0.7336402848032163, -1.5400505368785944) +station = ('kdpa', 0.0023521533950069374) +zone = ('ilz012', 0.0029787211150672718) + +[60123] +centroid = (0.733747657458799, -1.5413228819032982) +station = ('kdpa', 0.0025803518933821767) +zone = ('ilz012', 0.0023381011878637055) + +[60124] +centroid = (0.73339030129445315, -1.542883031721656) +station = ('kdpa', 0.0028676647299278346) +zone = ('ilz012', 0.0014625497397813942) + +[60126] +centroid = (0.7312378565411386, -1.534864186286538) +station = ('kord', 0.0015428838403604987) +zone = ('ilz014', 0.0018994174510077154) + +[60129] +centroid = (0.73318002402617288, -1.5529066321487848) +station = ('krpj', 0.0024150348718656425) +zone = ('ilz011', 0.0033259473961939306) + +[60130] +centroid = (0.73070722408865474, -1.5327025785546506) +station = ('kmdw', 0.0016947228292779207) +zone = ('ilz014', 0.00046329697808207668) + +[60131] +centroid = (0.73196935893723447, -1.5338697500386294) +station = ('kord', 0.0008844211679216715) +zone = ('ilz014', 0.001935823427917366) + +[60133] +centroid = (0.73264953120002918, -1.5383784067354287) +station = ('kdpa', 0.0019454738323865673) +zone = ('ilz013', 0.0023153879113325376) + +[60134] +centroid = (0.73091497062951971, -1.5418599197141369) +station = ('kdpa', 0.001254502188501657) +zone = ('ilz012', 0.0015450016465714015) + +[60135] +centroid = (0.73500169397964943, -1.5475984924815243) +station = ('kdkb', 0.0031884349090493839) +zone = ('ilz011', 0.004035970385457611) + +[60136] +centroid = (0.7348793463990847, -1.5425319936492023) +station = ('kdpa', 0.0039661223949246449) +zone = ('ilz012', 0.0029719588643648768) + +[60137] +centroid = (0.7306858088987328, -1.5369627527258436) +station = ('kdpa', 0.0025238023623920742) +zone = ('ilz013', 0.00039027231761308605) + +[60139] +centroid = (0.73162242238852304, -1.537252756634355) +station = ('kdpa', 0.0022570098398279489) +zone = ('ilz013', 0.0011713992651237015) + +[60140] +centroid = (0.73443543935713229, -1.5448859017580745) +station = ('kdkb', 0.0035972316544212661) +zone = ('ilz012', 0.002706637418136522) + +[60141] +centroid = (0.73055696869335052, -1.5330621861937315) +station = ('kmdw', 0.0017321949924062998) +zone = ('ilz014', 0.00041782392035883374) + +[60142] +centroid = (0.73607510637621099, -1.5436505926200981) +station = ('kdpa', 0.0054070687132773722) +zone = ('ilz005', 0.0026269294917825093) + +[60143] +centroid = (0.73258746729182833, -1.5362872230388591) +station = ('kord', 0.0013859641908411833) +zone = ('ilz013', 0.0022835330067528651) + +[60144] +centroid = (0.73017519537276931, -1.5449766937857634) +station = ('karr', 0.0013984700260506158) +zone = ('ilz012', 0.0021590674024282853) + +[60145] +centroid = (0.73451410134651984, -1.5493955183859627) +station = ('kdkb', 0.0027957404263232264) +zone = ('ilz011', 0.0033366321559855764) + +[60146] +centroid = (0.73479150397783166, -1.5511500804297) +station = ('kdkb', 0.0036447223694612706) +zone = ('ilz011', 0.0038570977434224723) + +[60148] +centroid = (0.73083168351761452, -1.5362521768274791) +station = ('kord', 0.0023445901819584523) +zone = ('ilz013', 0.00092418900134696297) + +[60150] +centroid = (0.7317436878649517, -1.5515012406752013) +station = ('kdkb', 0.0024193462543665757) +zone = ('ilz011', 0.0017080293896413828) + +[60151] +centroid = (0.73161540616493004, -1.5459160998023567) +station = ('kdkb', 0.0017541400293679852) +zone = ('ilz012', 0.0019263749754432141) + +[60152] +centroid = (0.7371885391725207, -1.5468071601986699) +station = ('kdkb', 0.0054447521408718018) +zone = ('ilz005', 0.0026985893386503755) + +[60153] +centroid = (0.73093137672448838, -1.5331539556058014) +station = ('kord', 0.0020510048299290724) +zone = ('ilz014', 0.0007691458370079876) + +[60154] +centroid = (0.73037615258284394, -1.5339985553374265) +station = ('kord', 0.0023934129256234357) +zone = ('ilz014', 0.00098333784679923136) + +[60155] +centroid = (0.73055461249886033, -1.5333803946229552) +station = ('kmdw', 0.0018956361937357232) +zone = ('ilz014', 0.00060044344922349291) + +[60156] +centroid = (0.73659209035394424, -1.5414881994900471) +station = ('kdpa', 0.0053779132264203952) +zone = ('ilz005', 0.0027082376365296936) + +[60157] +centroid = (0.7326071895123758, -1.5368692554378143) +station = ('kord', 0.0018147927004325604) +zone = ('ilz013', 0.0021860103082986305) + +[60160] +centroid = (0.73136528302982673, -1.5334578872417437) +station = ('kord', 0.0015616567535336908) +zone = ('ilz014', 0.0012584619272346545) + +[60162] +centroid = (0.73072630053737908, -1.5341826003070491) +station = ('kord', 0.0020298232096094678) +zone = ('ilz014', 0.0012114885927621524) + +[60163] +centroid = (0.73109800330817631, -1.5343023298937362) +station = ('kord', 0.0016523576936965185) +zone = ('ilz014', 0.0014731251177642728) + +[60164] +centroid = (0.73159859864423338, -1.5341565949011946) +station = ('kord', 0.0011673491846319387) +zone = ('ilz014', 0.0017396531627412518) + +[60165] +centroid = (0.73134906892107576, -1.5338077908501835) +station = ('kord', 0.0014741692757483196) +zone = ('ilz014', 0.0013832122578849523) + +[60169] +centroid = (0.73392613482810798, -1.5379250574622232) +station = ('kdpa', 0.0031510305256320544) +zone = ('ilz013', 0.0034940558860413339) + +[60171] +centroid = (0.73173009175007864, -1.5330688009915967) +station = ('kord', 0.0014379326951775608) +zone = ('ilz014', 0.0015125253398236699) + +[60172] +centroid = (0.73268660199334157, -1.5374540454569876) +station = ('kdpa', 0.0025054205232106267) +zone = ('ilz013', 0.0022319865245854181) + +[60173] +centroid = (0.73393810778677659, -1.5368587834623022) +station = ('kord', 0.0021586121400287098) +zone = ('ilz013', 0.0035048675916404294) + +[60174] +centroid = (0.73182976750366002, -1.5411036860025404) +station = ('kdpa', 0.00082995348741136119) +zone = ('ilz012', 0.0016935080536714445) + +[60175] +centroid = (0.73213399584557515, -1.5426738540108045) +station = ('kdpa', 0.001987826860731247) +zone = ('ilz012', 0.00054345758143325919) + +[60176] +centroid = (0.7323074292133458, -1.5336013707595502) +station = ('kord', 0.00076025763217370073) +zone = ('ilz014', 0.0021719320888138336) + +[60177] +centroid = (0.73283724136108119, -1.5413031771360435) +station = ('kdpa', 0.0017305732324421766) +zone = ('ilz012', 0.0017641265396667637) + +[60178] +centroid = (0.73315681114712139, -1.5475951239960679) +station = ('kdkb', 0.0013947576648910452) +zone = ('ilz011', 0.0023648469109273464) + +[60180] +centroid = (0.73696984941724586, -1.5450444649206183) +station = ('kdkb', 0.0056460000894803788) +zone = ('ilz005', 0.0019650700368732069) + +[60181] +centroid = (0.73088973316853578, -1.5354765874144778) +station = ('kord', 0.0020127194760474628) +zone = ('ilz013', 0.0014865361653418436) + +[60184] +centroid = (0.73219183605698612, -1.540308391822284) +station = ('kdpa', 0.00089982151997989451) +zone = ('ilz012', 0.0022890618978491316) + +[60185] +centroid = (0.73123520364067551, -1.5395726308228135) +station = ('kdpa', 0.00050975021794801348) +zone = ('ilz013', 0.0018057251761391039) + +[60187] +centroid = (0.73081683076568005, -1.5378522248725375) +station = ('kdpa', 0.0018496841197669239) +zone = ('ilz013', 0.00050160219793061696) + +[60188] +centroid = (0.73156761905001044, -1.5381487912190364) +station = ('kdpa', 0.0015899456343375126) +zone = ('ilz013', 0.0012491674764948113) + +[60189] +centroid = (0.7302454274218696, -1.5379442735372877) +station = ('kdpa', 0.0020132551405003004) +zone = ('ilz013', 0.00046613033983222436) + +[60190] +centroid = (0.73080070392339169, -1.5386305020925868) +station = ('kdpa', 0.0013044068048919089) +zone = ('ilz013', 0.00098951002917819098) + +[60191] +centroid = (0.73245021459945148, -1.5355555286565457) +station = ('kord', 0.00088425586197501981) +zone = ('ilz013', 0.0024155255828017014) + +[60192] +centroid = (0.7341425905619402, -1.5394443142162066) +station = ('kdpa', 0.0029123607474902907) +zone = ('ilz012', 0.0036364176393929365) + +[60193] +centroid = (0.73320698936311623, -1.5375764977573074) +station = ('kdpa', 0.0027614415994362137) +zone = ('ilz013', 0.0027554573987838829) + +[60194] +centroid = (0.73364600948316294, -1.5378145781205721) +station = ('kdpa', 0.0029705384794623669) +zone = ('ilz013', 0.0032067329970146431) + +[60195] +centroid = (0.73434661955149838, -1.5373956816468008) +station = ('kord', 0.0027190136538710499) +zone = ('ilz013', 0.0038914283872747879) + +[60201] +centroid = (0.73401811367968806, -1.5305183164490723) +station = ('kord', 0.0031753290973787485) +zone = ('ilz014', 0.0041053620446609811) + +[60202] +centroid = (0.73356808053206124, -1.5304015364688213) +station = ('kord', 0.0031076698311800722) +zone = ('ilz014', 0.0037348296174412182) + +[60203] +centroid = (0.73389428256925904, -1.5309583663133777) +station = ('kord', 0.0028263589370725989) +zone = ('ilz014', 0.0038709690049222659) + +[60301] +centroid = (0.73109302911980811, -1.5323804605879026) +station = ('kmdw', 0.0019434123913404889) +zone = ('ilz014', 0.00087986251683929849) + +[60302] +centroid = (0.73119890079223404, -1.5322195412308688) +station = ('kmdw', 0.0020096398316458647) +zone = ('ilz014', 0.0010172715776640797) + +[60304] +centroid = (0.73081105372585586, -1.5322155269735891) +station = ('kmdw', 0.0016369379972336036) +zone = ('ilz014', 0.00066836821081361377) + +[60305] +centroid = (0.73120350846145932, -1.5327318128196215) +station = ('kord', 0.0019973129491976981) +zone = ('ilz014', 0.00095998659004947154) + +[60401] +centroid = (0.72158821035954224, -1.5291946587443597) +station = ('kigq', 0.0035944422497226087) +zone = ('inz001', 0.0033182222897113851) + +[60402] +centroid = (0.73016226248301208, -1.5322485136964517) +station = ('kmdw', 0.0010534041877264743) +zone = ('ilz014', 0.00033933154539511894) + +[60403] +centroid = (0.72524956206437596, -1.5382317118117987) +station = ('kjot', 0.0008222448585954317) +zone = ('ilz022', 0.0027807943164886045) + +[60404] +centroid = (0.72453938759173953, -1.5397988778537495) +station = ('kjot', 0.00064240144079188402) +zone = ('ilz020', 0.0029993270812929494) + +[60406] +centroid = (0.72701593998714931, -1.530338756975627) +station = ('kmdw', 0.002409780774191312) +zone = ('ilz014', 0.0036741299226506572) + +[60407] +centroid = (0.71968489390365742, -1.5404503219970562) +station = ('kc09', 0.0039102688272671521) +zone = ('ilz021', 0.0022394277537290982) + +[60408] +centroid = (0.7201881072335925, -1.5396515546115885) +station = ('kc09', 0.0038767698090202466) +zone = ('ilz021', 0.0026878130363301909) + +[60409] +centroid = (0.72629504919290566, -1.5280727960077627) +station = ('kigq', 0.0013112755751728581) +zone = ('inz001', 0.0041118866949999512) + +[60410] +centroid = (0.72297820802912305, -1.5394136836878343) +station = ('kjot', 0.0016849413896763365) +zone = ('ilz021', 0.003729899958899083) + +[60411] +centroid = (0.72446477476621673, -1.5287393721556846) +station = ('kigq', 0.00093446008953263708) +zone = ('inz001', 0.0031763858240665701) + +[60415] +centroid = (0.72785375038798417, -1.5320295970483742) +station = ('kmdw', 0.0014523541484664235) +zone = ('ilz014', 0.0024405644253142631) + +[60416] +centroid = (0.72071465561562664, -1.5408307863206985) +station = ('kc09', 0.0028997210257366893) +zone = ('ilz021', 0.0017825910103026199) + +[60417] +centroid = (0.72304775939981503, -1.5286666791923391) +station = ('kigq', 0.0020848613243031177) +zone = ('inz001', 0.0026839012089029291) + +[60419] +centroid = (0.72656567994671994, -1.5288995235678475) +station = ('kigq', 0.0017866203940892539) +zone = ('ilz014', 0.0046404081043931794) + +[60420] +centroid = (0.71712589215438338, -1.5431672411370509) +station = ('kpnt', 0.0039734210840189571) +zone = ('ilz021', 0.0034316030466973128) + +[60421] +centroid = (0.72311053889300925, -1.5376300095521735) +station = ('kjot', 0.0018098260132034787) +zone = ('ilz022', 0.0016015847350503152) + +[60422] +centroid = (0.72495678308235389, -1.5303769273263683) +station = ('kigq', 0.0019853436579916608) +zone = ('ilz022', 0.0041720674721539104) + +[60423] +centroid = (0.72391663666133543, -1.5329648491813477) +station = ('kigq', 0.0040729606553913519) +zone = ('ilz022', 0.001994989762656098) + +[60424] +centroid = (0.71844991637823874, -1.5416094649664756) +station = ('kc09', 0.0047108534816554144) +zone = ('ilz021', 0.0024211322172288754) + +[60425] +centroid = (0.72510709083753566, -1.5291130820551215) +station = ('kigq', 0.0010431157383521371) +zone = ('inz001', 0.003767310318108146) + +[60426] +centroid = (0.72623748823417489, -1.5298403258478426) +station = ('kigq', 0.0020025696091065413) +zone = ('ilz014', 0.0045362371075564362) + +[60428] +centroid = (0.72605347817113719, -1.5304890821841015) +station = ('kigq', 0.0023160766121891213) +zone = ('ilz014', 0.0045011846898636246) + +[60429] +centroid = (0.72560368936960573, -1.5303693700507071) +station = ('kigq', 0.0020656365691269236) +zone = ('ilz022', 0.0044650208488117562) + +[60430] +centroid = (0.72533928944122106, -1.5300331498236028) +station = ('kigq', 0.0017581779275008436) +zone = ('ilz022', 0.0045633618563366484) + +[60431] +centroid = (0.72448037800972953, -1.5390350170533216) +station = ('kjot', 0.00015995876640568699) +zone = ('ilz022', 0.0028665709528517334) + +[60432] +centroid = (0.7250402621804769, -1.5364958596976426) +station = ('klot', 0.0013974521867846975) +zone = ('ilz022', 0.0018405729204235802) + +[60433] +centroid = (0.72430294783797178, -1.5366521190255737) +station = ('kjot', 0.0017501835617885844) +zone = ('ilz022', 0.0012755313044908363) + +[60435] +centroid = (0.72515969506119071, -1.5381399598530212) +station = ('kjot', 0.00080666863332622867) +zone = ('ilz022', 0.0026693584806141814) + +[60436] +centroid = (0.72408279200612524, -1.538146365211376) +station = ('kjot', 0.00081066269893832938) +zone = ('ilz022', 0.0021008815792177881) + +[60437] +centroid = (0.71842864081465696, -1.5456711777484244) +station = ('kpnt', 0.0042632063830811305) +zone = ('ilz021', 0.002829023862517059) + +[60438] +centroid = (0.7254677805807529, -1.5280393205927094) +station = ('kigq', 0.00051471532635719627) +zone = ('inz001', 0.0034301113276365368) + +[60439] +centroid = (0.72739034801828728, -1.5355715682323714) +station = ('klot', 0.0018868766942409518) +zone = ('ilz013', 0.0033502066181118444) + +[60440] +centroid = (0.7278127700571474, -1.5371988434137609) +station = ('klot', 0.0016296265031732606) +zone = ('ilz013', 0.0026460919224555669) + +[60441] +centroid = (0.72592849514340174, -1.5367631568725855) +station = ('klot', 0.00063770348368404094) +zone = ('ilz022', 0.0027402596380288343) + +[60442] +centroid = (0.72243886638367183, -1.5352521380726716) +station = ('kjot', 0.0035303387813509822) +zone = ('ilz022', 0.00093435772030243784) + +[60443] +centroid = (0.72434975756851028, -1.5314950201517807) +station = ('kigq', 0.002898445650189659) +zone = ('ilz022', 0.0031751865490848197) + +[60444] +centroid = (0.71982815052866123, -1.5429187411581518) +station = ('kc09', 0.003186143303592901) +zone = ('ilz021', 0.00075805723490859195) + +[60445] +centroid = (0.72665718755940201, -1.5312889665802905) +station = ('kmdw', 0.0026055885388555021) +zone = ('ilz014', 0.0037361971280252624) + +[60446] +centroid = (0.72661577089625207, -1.537743281420628) +station = ('klot', 0.00044217099370302354) +zone = ('ilz022', 0.0036644923368569938) + +[60447] +centroid = (0.72408891811179976, -1.5415125991929899) +station = ('kc09', 0.0016616287711618981) +zone = ('ilz020', 0.0022800479588804081) + +[60448] +centroid = (0.7249711122355128, -1.5340126575977826) +station = ('klot', 0.0029074027149171792) +zone = ('ilz022', 0.0019732947030722163) + +[60449] +centroid = (0.72287252834291482, -1.532030504619585) +station = ('kigq', 0.0038691782360012312) +zone = ('ilz022', 0.0026582839664660773) + +[60450] +centroid = (0.72197942591137687, -1.54347509976381) +station = ('kc09', 0.0010491850695166667) +zone = ('ilz021', 0.0014375791499184702) + +[60451] +centroid = (0.72444517471871694, -1.5352106341430589) +station = ('klot', 0.0024715331712910327) +zone = ('ilz022', 0.0011174507231946297) + +[60452] +centroid = (0.7261967173428483, -1.5315873306159187) +station = ('kmdw', 0.0030603597728457981) +zone = ('ilz022', 0.0040930953371908418) + +[60453] +centroid = (0.72803680051993336, -1.5315710990538753) +station = ('kmdw', 0.0012203939617417376) +zone = ('ilz014', 0.002359815710870722) + +[60455] +centroid = (0.72853666281770446, -1.5325499146049788) +station = ('kmdw', 0.001049449223417804) +zone = ('ilz014', 0.0017105677806485205) + +[60456] +centroid = (0.72834767856629867, -1.5311971448083428) +station = ('kmdw', 0.00094166066997129056) +zone = ('ilz014', 0.0021991090974149514) + +[60457] +centroid = (0.72823276608834731, -1.5328885259331579) +station = ('kmdw', 0.0014425931259066723) +zone = ('ilz014', 0.0020166581269690422) + +[60458] +centroid = (0.72873428644890792, -1.5328693796712638) +station = ('kmdw', 0.0011297070057063228) +zone = ('ilz014', 0.0015156021934944783) + +[60459] +centroid = (0.72857776532158902, -1.5318506484401671) +station = ('kmdw', 0.00072075851660134856) +zone = ('ilz014', 0.0017800327451943784) + +[60460] +centroid = (0.71555844685975234, -1.545257168196559) +station = ('kpnt', 0.0017521276072794269) +zone = ('ilz032', 0.0018894415910599227) + +[60461] +centroid = (0.72469763659501774, -1.5306665472624441) +station = ('kigq', 0.0022236883888825778) +zone = ('ilz022', 0.0038756453238121416) + +[60462] +centroid = (0.72649865930344326, -1.5329738201737031) +station = ('kmdw', 0.0029622163027672021) +zone = ('ilz022', 0.0036783358822380994) + +[60463] +centroid = (0.72714685713434157, -1.5322240092737538) +station = ('kmdw', 0.0021731753228291192) +zone = ('ilz014', 0.0031166529791572324) + +[60464] +centroid = (0.72715373373159442, -1.5334594754913629) +station = ('kmdw', 0.0025503393506592317) +zone = ('ilz014', 0.0031430719537134176) + +[60465] +centroid = (0.72776779292232352, -1.5329077245549301) +station = ('kmdw', 0.001810874850818112) +zone = ('ilz014', 0.0024815126486265352) + +[60466] +centroid = (0.72392445573638431, -1.5303603292451817) +station = ('kigq', 0.0022519076555816905) +zone = ('ilz022', 0.0039073610389399414) + +[60467] +centroid = (0.726085260616816, -1.533954101801378) +station = ('klot', 0.0026788436008546991) +zone = ('ilz022', 0.002973754286651511) + +[60468] +centroid = (0.72143678559363922, -1.5325786950843443) +station = ('kikk', 0.0046301489692160309) +zone = ('ilz022', 0.0029205341152362466) + +[60469] +centroid = (0.72655192675221425, -1.530427506968091) +station = ('kigq', 0.0025422330492216472) +zone = ('ilz014', 0.0040599841660294367) + +[60470] +centroid = (0.71853407615476994, -1.547077756045899) +station = ('kpnt', 0.0042873346582537964) +zone = ('ilz021', 0.003553366783828147) + +[60471] +centroid = (0.72394461428924495, -1.5312481956889639) +station = ('kigq', 0.0028448990641346396) +zone = ('ilz022', 0.0032542277994579935) + +[60472] +centroid = (0.72680876940493766, -1.5307948115091732) +station = ('kmdw', 0.002508150151961912) +zone = ('ilz014', 0.0037150723072131736) + +[60473] +centroid = (0.72601122374994631, -1.5288935894483906) +station = ('kigq', 0.00132916053648178) +zone = ('inz001', 0.0042595230605948445) + +[60474] +centroid = (0.71872702230357788, -1.5405387403769621) +station = ('kc09', 0.0047230229776306686) +zone = ('ilz021', 0.0027088221126175083) + +[60475] +centroid = (0.72383237216504914, -1.5293885299176715) +station = ('kigq', 0.0017138743714740317) +zone = ('inz001', 0.0033659624286549862) + +[60476] +centroid = (0.72552432924851751, -1.5289382175173643) +station = ('kigq', 0.0010432452018288164) +zone = ('inz001', 0.0039351977271439029) + +[60477] +centroid = (0.72557077245991297, -1.5322114603564319) +station = ('kigq', 0.0034034434133692545) +zone = ('ilz022', 0.0033249623149198969) + +[60478] +centroid = (0.72541910334791482, -1.5310972247086663) +station = ('kigq', 0.0025562552426334111) +zone = ('ilz022', 0.0039032156261822816) + +[60479] +centroid = (0.71964085924662968, -1.5450770851243381) +station = ('kc09', 0.0036509988746032296) +zone = ('ilz021', 0.0016864544765281349) + +[60480] +centroid = (0.72831270216808863, -1.533818210465818) +station = ('kmdw', 0.0019529658947901119) +zone = ('ilz014', 0.0021064144178984589) + +[60481] +centroid = (0.72056314358326101, -1.5378846181834547) +station = ('kjot', 0.0041412994880637303) +zone = ('ilz022', 0.0033061964103476547) + +[60482] +centroid = (0.72759011840447052, -1.5322236078480258) +station = ('kmdw', 0.0017459366517691144) +zone = ('ilz014', 0.0026766523631971662) + +[60484] +centroid = (0.72332753567890973, -1.5307995588047387) +station = ('kigq', 0.0028516774698098021) +zone = ('ilz022', 0.0035370120402981571) + +[60487] +centroid = (0.72540648461742285, -1.5329997557663877) +station = ('kigq', 0.0039669491464266347) +zone = ('ilz022', 0.002789056303399381) + +[60490] +centroid = (0.72726683106712353, -1.5384274330341172) +station = ('klot', 0.0012568034886548227) +zone = ('ilz013', 0.0032817309271151282) + +[60491] +centroid = (0.72610145727227449, -1.5352419977097174) +station = ('klot', 0.0017162289120483318) +zone = ('ilz022', 0.0027575012665993727) + +[60501] +centroid = (0.72920212195490486, -1.5328085724001244) +station = ('kmdw', 0.00095764547208431806) +zone = ('ilz014', 0.0010455986556769288) + +[60502] +centroid = (0.72938445650186079, -1.540423025047555) +station = ('kdpa', 0.0019126952297309416) +zone = ('ilz013', 0.0025041218263166117) + +[60503] +centroid = (0.72801395416002479, -1.540343472940249) +station = ('klot', 0.0027730155937850929) +zone = ('ilz020', 0.0031034424083105157) + +[60504] +centroid = (0.72863049171829186, -1.5400544813227039) +station = ('kdpa', 0.0026665743052102396) +zone = ('ilz013', 0.0026996981125995152) + +[60505] +centroid = (0.72892850668806985, -1.5410324940223514) +station = ('kdpa', 0.0024347272780437649) +zone = ('ilz020', 0.0035038838380875071) + +[60506] +centroid = (0.728943481613052, -1.5422117955446315) +station = ('karr', 0.0013597697334149401) +zone = ('ilz012', 0.0031509725364769949) + +[60510] +centroid = (0.73026567324119274, -1.5412409561482097) +station = ('kdpa', 0.0012635163788524578) +zone = ('ilz012', 0.0023310391558249398) + +[60511] +centroid = (0.72883192016726439, -1.5455238370529709) +station = ('karr', 0.0011188703002930937) +zone = ('ilz020', 0.0033485542295508199) + +[60512] +centroid = (0.72782983937723189, -1.5435657870717439) +station = ('karr', 0.001188663845152124) +zone = ('ilz020', 0.0019421461454998121) + +[60513] +centroid = (0.72998498939088707, -1.5332289174971745) +station = ('kmdw', 0.0014631933459873226) +zone = ('ilz014', 0.00047749576066645428) + +[60514] +centroid = (0.72947238618957633, -1.5352292218995927) +station = ('kord', 0.0033279130959035798) +zone = ('ilz014', 0.0020432908034325719) + +[60515] +centroid = (0.72973182938288528, -1.5362876070112945) +station = ('kord', 0.0033158140675410915) +zone = ('ilz013', 0.0010919983901357304) + +[60516] +centroid = (0.72887221981969297, -1.5361235111550222) +station = ('klot', 0.0028698951733955496) +zone = ('ilz013', 0.0018413835078017174) + +[60517] +centroid = (0.72850617191567224, -1.5366253805814329) +station = ('klot', 0.0024014917005872917) +zone = ('ilz013', 0.0020297356075351454) + +[60518] +centroid = (0.72603714188933843, -1.5519416396053571) +station = ('kvys', 0.0052804881840239739) +zone = ('ilz019', 0.0044718682237134908) + +[60519] +centroid = (0.72916053075883003, -1.5401240850532734) +station = ('kdpa', 0.0021345898324782353) +zone = ('ilz013', 0.0024170601317166636) + +[60520] +centroid = (0.72932539455997336, -1.5475406522701129) +station = ('kdkb', 0.0025801536011944948) +zone = ('ilz011', 0.0022846928036796394) + +[60521] +centroid = (0.72955954793242084, -1.5346361066598875) +station = ('kmdw', 0.0023381771826860532) +zone = ('ilz014', 0.0016033447950945855) + +[60523] +centroid = (0.73018659237278483, -1.5350776749606421) +station = ('kord', 0.0026050444813541232) +zone = ('ilz014', 0.001779405766777825) + +[60525] +centroid = (0.72927587956909423, -1.5336025226768564) +station = ('kmdw', 0.0015481931659426865) +zone = ('ilz014', 0.0011829226149194134) + +[60526] +centroid = (0.73010253731600883, -1.5336905396310345) +station = ('kmdw', 0.0018213997215001836) +zone = ('ilz014', 0.00075836212593340167) + +[60527] +centroid = (0.72854622722200546, -1.5347092010489611) +station = ('kmdw', 0.0024780993535997785) +zone = ('ilz014', 0.0022688495698609409) + +[60530] +centroid = (0.72949367920645058, -1.5525223804606656) +station = ('krpj', 0.0023392882596274243) +zone = ('ilz011', 0.0029105710109533275) + +[60531] +centroid = (0.72635929476267158, -1.5494970267352586) +station = ('karr', 0.004840657184565212) +zone = ('ilz020', 0.0046011108952206409) + +[60532] +centroid = (0.72936337292449671, -1.537355539074005) +station = ('kdpa', 0.0028952597789268361) +zone = ('ilz013', 0.0010920537314104135) + +[60534] +centroid = (0.72977872637988628, -1.5327811358242829) +station = ('kmdw', 0.0010711762650618536) +zone = ('ilz014', 0.00047015787617082005) + +[60536] +centroid = (0.72601406863662699, -1.5454883021494006) +station = ('karr', 0.003145110955014861) +zone = ('ilz020', 0.0015847635245615898) + +[60537] +centroid = (0.72536784302778368, -1.5464354399745803) +station = ('kc09', 0.0033851730966682233) +zone = ('ilz020', 0.0023485603816468139) + +[60538] +centroid = (0.72827128550493891, -1.5417923580187922) +station = ('karr', 0.0018113885385205139) +zone = ('ilz020', 0.0026562385230497654) + +[60539] +centroid = (0.73002305502187304, -1.5417576957798476) +station = ('kdpa', 0.0016936014781749609) +zone = ('ilz012', 0.0022911084638075974) + +[60540] +centroid = (0.72893100250890019, -1.5384279391796003) +station = ('kdpa', 0.0027254639419425275) +zone = ('ilz013', 0.0017108284787807967) + +[60541] +centroid = (0.72454476320583561, -1.5451821888518933) +station = ('kc09', 0.0021397236722134898) +zone = ('ilz020', 0.0019093447207057088) + +[60542] +centroid = (0.72971533602145389, -1.5420430047526712) +station = ('karr', 0.0016633889690648611) +zone = ('ilz012', 0.0024655918893951843) + +[60543] +centroid = (0.72717635319870011, -1.5414367122771133) +station = ('karr', 0.0026387300048024828) +zone = ('ilz020', 0.0019358052053683487) + +[60544] +centroid = (0.72629497937973553, -1.5397071084416794) +station = ('kjot', 0.0017620238467061131) +zone = ('ilz020', 0.0027724050834498156) + +[60545] +centroid = (0.72744906089432426, -1.5451922594016771) +station = ('karr', 0.0017456238688417279) +zone = ('ilz020', 0.0020652825217891027) + +[60546] +centroid = (0.73020950854586364, -1.5327805947722148) +station = ('kmdw', 0.0013347757099025097) +zone = ('ilz014', 7.5436986908718865e-05) + +[60548] +centroid = (0.72691478070370386, -1.5470272287640539) +station = ('karr', 0.0030328545866714868) +zone = ('ilz020', 0.0029149305068826925) + +[60549] +centroid = (0.72435591858076975, -1.5487988077679984) +station = ('kc09', 0.0044098911424219882) +zone = ('ilz019', 0.0033660179407985526) + +[60550] +centroid = (0.72922275174666351, -1.5509570993743071) +station = ('kdkb', 0.0033110373164098672) +zone = ('ilz011', 0.0022980980649565815) + +[60551] +centroid = (0.72474493501774684, -1.5478921615814647) +station = ('kc09', 0.0039242388915633562) +zone = ('ilz020', 0.0035694307617182139) + +[60552] +centroid = (0.72722438465971506, -1.5482206150933977) +station = ('karr', 0.0035771365451780497) +zone = ('ilz020', 0.0038585859070402969) + +[60553] +centroid = (0.73001991342921946, -1.5539316989250658) +station = ('krpj', 0.0012895431394311897) +zone = ('ilz010', 0.0037482404979878549) + +[60554] +centroid = (0.72914068636523477, -1.5438669785407602) +station = ('karr', 0.00021493683918478139) +zone = ('ilz012', 0.0028568385076906573) + +[60555] +centroid = (0.72993451446891933, -1.5390448258037177) +station = ('kdpa', 0.0016294483784265849) +zone = ('ilz013', 0.0013414541318009204) + +[60556] +centroid = (0.72890042434040525, -1.5493487086554241) +station = ('kdkb', 0.0030610020367063074) +zone = ('ilz011', 0.0022773609595807712) + +[60557] +centroid = (0.72340584860244672, -1.5491556054269833) +station = ('kvys', 0.0054116287632939158) +zone = ('ilz019', 0.0024538371782830519) + +[60558] +centroid = (0.72964541813161898, -1.5341625464739439) +station = ('kmdw', 0.0020034046660881511) +zone = ('ilz014', 0.0012496426906598137) + +[60559] +centroid = (0.7294493827500349, -1.5354160593960187) +station = ('kord', 0.0033778649979938008) +zone = ('ilz013', 0.0017792148875453095) + +[60560] +centroid = (0.72620043489415509, -1.5433832430852774) +station = ('karr', 0.0028078712430546393) +zone = ('ilz020', 0.00030758210116831324) + +[60561] +centroid = (0.72859926777797357, -1.5355667511236359) +station = ('klot', 0.0028110977167965477) +zone = ('ilz013', 0.0022984356620701974) + +[60563] +centroid = (0.72937302459526032, -1.5394572645592564) +station = ('kdpa', 0.0020093754683997772) +zone = ('ilz013', 0.0018854414931707612) + +[60564] +centroid = (0.72793197604505866, -1.5392899922037455) +station = ('klot', 0.0021711859154130895) +zone = ('ilz013', 0.0028954527545097474) + +[60565] +centroid = (0.72833862030748076, -1.5380598143337696) +station = ('klot', 0.0021721168381103619) +zone = ('ilz013', 0.0021754704957680977) + +[60585] +centroid = (0.72705281879424399, -1.5398209737220796) +station = ('klot', 0.001909680977729382) +zone = ('ilz020', 0.0028991949746804075) + +[60586] +centroid = (0.72555789193003328, -1.5400393667713816) +station = ('kjot', 0.0012381708075774032) +zone = ('ilz020', 0.0025178446271842689) + +[60601] +centroid = (0.73103656771850611, -1.5292946486572065) +station = ('kmdw', 0.0024357385454724075) +zone = ('ilz014', 0.0026503655196232208) + +[60602] +centroid = (0.73099752470313906, -1.5294171707706965) +station = ('kmdw', 0.0023452486918121964) +zone = ('ilz014', 0.0025516778909584182) + +[60603] +centroid = (0.73094717195421888, -1.5293536407859238) +station = ('kmdw', 0.0023406327997224281) +zone = ('ilz014', 0.0025828134213374916) + +[60604] +centroid = (0.73091064221297475, -1.5294051629054428) +station = ('kmdw', 0.0022877168861987728) +zone = ('ilz014', 0.0025361042867797137) + +[60605] +centroid = (0.73072687649603218, -1.5292091100705663) +station = ('kmdw', 0.002267858028180237) +zone = ('ilz014', 0.0026377273865319829) + +[60606] +centroid = (0.73097994923757148, -1.5295602877693601) +station = ('kmdw', 0.0022617570023862228) +zone = ('ilz014', 0.0024447150105886732) + +[60607] +centroid = (0.73085543744873416, -1.5298089448278915) +station = ('kmdw', 0.0020478289462303912) +zone = ('ilz014', 0.0022316363696682543) + +[60608] +centroid = (0.73035437087377908, -1.5301718336859662) +station = ('kmdw', 0.0014913222566754379) +zone = ('ilz014', 0.0018796249470576618) + +[60609] +centroid = (0.72976893508278262, -1.5299021279566558) +station = ('kmdw', 0.0013147779724343386) +zone = ('ilz014', 0.0021314697695393021) + +[60610] +centroid = (0.73141240691963061, -1.5294658654568272) +station = ('kmdw', 0.0026463486005603161) +zone = ('ilz014', 0.0026703501160070964) + +[60611] +centroid = (0.73121790742778825, -1.5291488438514951) +station = ('kmdw', 0.002642686589410546) +zone = ('ilz014', 0.0028115263560375353) + +[60612] +centroid = (0.73094947578883152, -1.5304399337123651) +station = ('kmdw', 0.0018763586104806156) +zone = ('ilz014', 0.0018186119707962758) + +[60613] +centroid = (0.73228690414134234, -1.5298556498386751) +station = ('kmdw', 0.003275639560072745) +zone = ('ilz014', 0.0029369935363821546) + +[60614] +centroid = (0.73168939067192207, -1.5297737066302939) +station = ('kmdw', 0.0027608297456100548) +zone = ('ilz014', 0.0026086961731934775) + +[60615] +centroid = (0.7295763729064102, -1.5288436381251986) +station = ('kmdw', 0.0020255606492014374) +zone = ('ilz014', 0.0029435667276675433) + +[60616] +centroid = (0.73033098346180236, -1.5293278622728719) +station = ('kmdw', 0.0019593475018386095) +zone = ('ilz014', 0.0025066550742395676) + +[60617] +centroid = (0.72811989564562085, -1.5280835646892477) +station = ('kgyy', 0.0025074958512026051) +zone = ('ilz014', 0.004039141599804323) + +[60618] +centroid = (0.73211259810894569, -1.5306982249883676) +station = ('kord', 0.0028502963917518228) +zone = ('ilz014', 0.0023856001997231693) + +[60619] +centroid = (0.72856483243183179, -1.5290048716414979) +station = ('kmdw', 0.0020040528027360587) +zone = ('ilz014', 0.0032203739467217356) + +[60620] +centroid = (0.72850910406881553, -1.5298257348952959) +station = ('kmdw', 0.0014724920862056502) +zone = ('ilz014', 0.0027517842349219527) + +[60621] +centroid = (0.72913541547089367, -1.5295990689853394) +station = ('kmdw', 0.001442355946751702) +zone = ('ilz014', 0.0025571358665408004) + +[60622] +centroid = (0.73133086513697743, -1.530362929785767) +station = ('kmdw', 0.002247953536995658) +zone = ('ilz014', 0.0020458356843419071) + +[60623] +centroid = (0.73040104097797742, -1.5309619965982217) +station = ('kmdw', 0.0012191715143193434) +zone = ('ilz014', 0.0012972431361922385) + +[60624] +centroid = (0.73095268719465534, -1.5310803822813845) +station = ('kmdw', 0.0017282048809951866) +zone = ('ilz014', 0.0013929592660657396) + +[60625] +centroid = (0.73257214330099574, -1.5306598801047016) +station = ('kord', 0.002812105912242764) +zone = ('ilz014', 0.0027756446363687405) + +[60626] +centroid = (0.73321315037537571, -1.5300794534086584) +station = ('kord', 0.0032705267976813356) +zone = ('ilz014', 0.0035482237496779027) + +[60628] +centroid = (0.72764303678739095, -1.5291837155299499) +station = ('kmdw', 0.0023790823378968843) +zone = ('ilz014', 0.003688742327482941) + +[60629] +centroid = (0.72912644447853847, -1.5308543970498363) +station = ('kmdw', 0.00051779665822704877) +zone = ('ilz014', 0.0017669580834247217) + +[60630] +centroid = (0.73255083283082889, -1.5316410693035876) +station = ('kord', 0.002086525277093321) +zone = ('ilz014', 0.0024354637216436807) + +[60631] +centroid = (0.73294848864760331, -1.5326260284136581) +station = ('kord', 0.001359733552301788) +zone = ('ilz014', 0.0027049011082563097) + +[60632] +centroid = (0.72972505750538752, -1.5308850450315012) +station = ('kmdw', 0.00066929235483888542) +zone = ('ilz014', 0.0014420527783880611) + +[60633] +centroid = (0.72717064597204617, -1.5282359493862392) +station = ('kigq', 0.0021943307183796613) +zone = ('ilz014', 0.004526569889063403) + +[60634] +centroid = (0.73209910671382772, -1.5325058450413658) +station = ('kord', 0.001574333625672974) +zone = ('ilz014', 0.0018601814539271891) + +[60636] +centroid = (0.72912419300380338, -1.5301138189416301) +station = ('kmdw', 0.0010617015619743965) +zone = ('ilz014', 0.0022232696195430917) + +[60637] +centroid = (0.72922685327040571, -1.5289062605387602) +station = ('kmdw', 0.0019540272964988867) +zone = ('ilz014', 0.0029984225313359806) + +[60638] +centroid = (0.72922372913104461, -1.5318848045336286) +station = ('kmdw', 0.00026927250811960513) +zone = ('ilz014', 0.0011839173787181673) + +[60639] +centroid = (0.73165167410678644, -1.531632115764525) +station = ('kord', 0.0023551578626400402) +zone = ('ilz014', 0.001613236502913734) + +[60640] +centroid = (0.73256481291813746, -1.5300010706719513) +station = ('kord', 0.0033014603240579857) +zone = ('ilz014', 0.0030647275997130758) + +[60641] +centroid = (0.73210638473680856, -1.5314703411961577) +station = ('kord', 0.0022959065476195494) +zone = ('ilz014', 0.0020720663780337007) + +[60642] +centroid = (0.73132859620894985, -1.5299302103043204) +station = ('kmdw', 0.0023888592692576267) +zone = ('ilz014', 0.0023240806698787315) + +[60643] +centroid = (0.72780706283049346, -1.5300126422048921) +station = ('kmdw', 0.0018377566202985914) +zone = ('ilz014', 0.0031508299594053238) + +[60644] +centroid = (0.73094535681179684, -1.5316376484582537) +station = ('kmdw', 0.0016906503101037297) +zone = ('ilz014', 0.0010520552747531376) + +[60645] +centroid = (0.73318765111500406, -1.5305618624139095) +station = ('kord', 0.0029121785095592542) +zone = ('ilz014', 0.0033426698752590956) + +[60646] +centroid = (0.73291644440253667, -1.5316944414721136) +station = ('kord', 0.0020442350961476867) +zone = ('ilz014', 0.0027733195272479695) + +[60647] +centroid = (0.73166322818643459, -1.5306716959837374) +station = ('kmdw', 0.002489280768497755) +zone = ('ilz014', 0.0020672509245946197) + +[60649] +centroid = (0.72890918589325027, -1.5283129009529597) +station = ('kmdw', 0.0024216647065245863) +zone = ('ilz014', 0.0035257916432732961) + +[60651] +centroid = (0.73132952123345341, -1.5313667209984667) +station = ('kmdw', 0.0020761935932171855) +zone = ('ilz014', 0.0014663253831511977) + +[60652] +centroid = (0.72863900892504152, -1.5309121849013696) +station = ('kmdw', 0.00076908037927523112) +zone = ('ilz014', 0.0020818104654830218) + +[60653] +centroid = (0.72989602995891278, -1.5290128652494721) +station = ('kmdw', 0.0019798014738006205) +zone = ('ilz014', 0.0027623525288014198) + +[60654] +centroid = (0.73115837424700281, -1.5295589264125435) +station = ('kmdw', 0.0024010283427232096) +zone = ('ilz014', 0.0025049838072523471) + +[60655] +centroid = (0.72771120934797384, -1.5307197099914598) +station = ('kmdw', 0.0016586169131850381) +zone = ('ilz014', 0.0029284621321225709) + +[60656] +centroid = (0.73258938715400546, -1.5328726085303799) +station = ('kord', 0.0011723900867275918) +zone = ('ilz014', 0.0023492837942137557) + +[60657] +centroid = (0.73199620210113014, -1.5297262336746396) +station = ('kmdw', 0.0030499390582275176) +zone = ('ilz014', 0.002817759563917326) + +[60659] +centroid = (0.73288972341168857, -1.5307233228230115) +station = ('kord', 0.0027627505911480632) +zone = ('ilz014', 0.0030236894120766506) + +[60660] +centroid = (0.73288312606711614, -1.5300093086260207) +station = ('kord', 0.0032926110214529904) +zone = ('ilz014', 0.0033084308816596405) + +[60661] +centroid = (0.7309967043983906, -1.5296780800405771) +station = ('kmdw', 0.0022190307807829846) +zone = ('ilz014', 0.0023664641592425241) + +[60706] +centroid = (0.73241445280307815, -1.5326825596281304) +station = ('kord', 0.0013449390208825616) +zone = ('ilz014', 0.0021704472521925241) + +[60707] +centroid = (0.73167438084035497, -1.5325261781271515) +station = ('kord', 0.001779670613592765) +zone = ('ilz014', 0.0014355931570264311) + +[60712] +centroid = (0.7331330921225867, -1.5312338839890973) +station = ('kord', 0.0024103840741177929) +zone = ('ilz014', 0.0030856863822196624) + +[60714] +centroid = (0.73352793795926541, -1.5325903713370399) +station = ('kord', 0.001577556194669026) +zone = ('ilz014', 0.0032847698155888151) + +[60803] +centroid = (0.72734069340106799, -1.5312813394914591) +station = ('kmdw', 0.0019247558887366437) +zone = ('ilz014', 0.0030877791897893406) + +[60804] +centroid = (0.73021148076791831, -1.5316986826221961) +station = ('kmdw', 0.00096333662711956252) +zone = ('ilz014', 0.00073968169997645588) + +[60805] +centroid = (0.7281863577835368, -1.5306963749393607) +station = ('kmdw', 0.0012365950847875436) +zone = ('ilz014', 0.0025387544348252607) + +[60827] +centroid = (0.72691975489207195, -1.5294943666835121) +station = ('kigq', 0.0023233690711962351) +zone = ('ilz014', 0.0040911667757525536) + +[60901] +centroid = (0.71749621611507153, -1.5341080572946968) +station = ('kikk', 0.0009497256483064297) +zone = ('ilz023', 0.00068383965766654687) + +[60910] +centroid = (0.71699078621698642, -1.5325654131287363) +station = ('kikk', 0.00051060833490290756) +zone = ('ilz023', 0.0012114172462982362) + +[60911] +centroid = (0.71349483936536429, -1.535481055457363) +station = ('kikk', 0.0037513916043377562) +zone = ('ilz033', 0.0030695363675090487) + +[60912] +centroid = (0.71512455800770647, -1.528969092391832) +station = ('kikk', 0.0036253037867266112) +zone = ('inz010', 0.0027321585455349893) + +[60913] +centroid = (0.71815036551871902, -1.536967971260307) +station = ('kikk', 0.0031246610094856088) +zone = ('ilz023', 0.002633437080269006) + +[60914] +centroid = (0.71885518183055186, -1.5334777316353387) +station = ('kikk', 0.0020343334903109001) +zone = ('ilz023', 0.00086687013331714178) + +[60915] +centroid = (0.71813847982651291, -1.5334645369461939) +station = ('kikk', 0.0013216458199577703) +zone = ('ilz023', 0.00015049479383634053) + +[60917] +centroid = (0.7164139025393248, -1.5391415519508631) +station = ('kikk', 0.0044929192455578785) +zone = ('ilz021', 0.0051454172818266716) + +[60918] +centroid = (0.70851588624832251, -1.5363377677739971) +station = ('ktip', 0.0054838472195414259) +zone = ('ilz039', 0.0026193921141804502) + +[60919] +centroid = (0.71537337214587082, -1.5400352128877617) +station = ('kpnt', 0.0052326812864685289) +zone = ('ilz032', 0.0045459989544509201) + +[60920] +centroid = (0.71609562429693108, -1.5412124723748171) +station = ('kpnt', 0.0046058386565413058) +zone = ('ilz032', 0.0041101663075312038) + +[60921] +centroid = (0.71089801633119953, -1.5410736837926984) +station = ('kpnt', 0.0054809977294157592) +zone = ('ilz039', 0.0025383291703654043) + +[60922] +centroid = (0.71564129763934436, -1.5344443996948485) +station = ('kikk', 0.0015112985716340286) +zone = ('ilz023', 0.0024575644135392061) + +[60924] +centroid = (0.70774862205585332, -1.5339092119330169) +station = ('ktip', 0.0056346872283812377) +zone = ('ilz033', 0.0035253150231780504) + +[60926] +centroid = (0.70801639046969422, -1.5328119757921657) +station = ('ktip', 0.0063720384428450896) +zone = ('ilz033', 0.003159912626445242) + +[60927] +centroid = (0.71451142384148081, -1.535414593319447) +station = ('kikk', 0.0028550624750511289) +zone = ('ilz023', 0.0037713544606056428) + +[60928] +centroid = (0.711076109728073, -1.5332544865707163) +station = ('kikk', 0.0057549586880438243) +zone = ('ilz033', 0.00034176858216446166) + +[60929] +centroid = (0.71340287796707669, -1.5409365881799544) +station = ('kpnt', 0.0045146391214361996) +zone = ('ilz032', 0.0035563680604547149) + +[60930] +centroid = (0.71261641515283547, -1.5359346665299562) +station = ('kikk', 0.00469054473585184) +zone = ('ilz033', 0.0027610860714683493) + +[60931] +centroid = (0.71365338507461551, -1.5287014461510386) +station = ('kikk', 0.0046556764714288266) +zone = ('inz010', 0.0027696124955593447) + +[60932] +centroid = (0.70621802066173178, -1.5324961410107247) +station = ('ktip', 0.005370390207567642) +zone = ('ilz033', 0.0049644844724293898) + +[60933] +centroid = (0.70624273452394004, -1.5406355014306927) +station = ('ktip', 0.0034467274619137513) +zone = ('ilz039', 0.0024003174948503008) + +[60934] +centroid = (0.71485301968268122, -1.5420515743192984) +station = ('kpnt', 0.0036390996379736655) +zone = ('ilz032', 0.0029401119462054543) + +[60935] +centroid = (0.71855985466782191, -1.5389590952308596) +station = ('kikk', 0.0046641502152681598) +zone = ('ilz021', 0.0037596067702292133) + +[60936] +centroid = (0.70629720624989478, -1.5420332483621524) +station = ('ktip', 0.0041237940894067373) +zone = ('ilz039', 0.0028304130907850847) + +[60938] +centroid = (0.71162358460783848, -1.5356848401008258) +station = ('kikk', 0.0055332853603319932) +zone = ('ilz033', 0.0022132166093783412) + +[60940] +centroid = (0.71994442436342898, -1.5296564379578526) +station = ('kikk', 0.0041043914196334293) +zone = ('ilz023', 0.0034777233726344253) + +[60941] +centroid = (0.71631782216400253, -1.537322377818217) +station = ('kikk', 0.0031440997141094964) +zone = ('ilz023', 0.0033446900242582226) + +[60942] +centroid = (0.70625411407066307, -1.5299796554820293) +station = ('kdnv', 0.0047233433861390388) +zone = ('ilz046', 0.0050092260619743929) + +[60945] +centroid = (0.71258632567653113, -1.5286328896180204) +station = ('kikk', 0.0054736825877830173) +zone = ('inz010', 0.0033221770394920055) + +[60946] +centroid = (0.71412773065872248, -1.5394309624474287) +station = ('kpnt', 0.0055717878905887129) +zone = ('ilz039', 0.0055794476921037593) + +[60948] +centroid = (0.70729536004911031, -1.5373045230999691) +station = ('ktip', 0.0041208765995144007) +zone = ('ilz039', 0.0022678762102890182) + +[60949] +centroid = (0.70473492712984964, -1.5377249729167746) +station = ('ktip', 0.0015599964425489215) +zone = ('ilz039', 0.0041292942996200288) + +[60950] +centroid = (0.71999690641403646, -1.5338755096251608) +station = ('kikk', 0.0032054926307456882) +zone = ('ilz023', 0.0020307777661545999) + +[60951] +centroid = (0.71409451704305704, -1.531615901655774) +station = ('kikk', 0.0029889017286577756) +zone = ('ilz033', 0.0030578591654518215) + +[60952] +centroid = (0.70795432656149337, -1.5402594527900582) +station = ('ktip', 0.004911851543350461) +zone = ('ilz039', 0.00069949982688455455) + +[60953] +centroid = (0.70911989234256012, -1.5304555020492931) +station = ('kdnv', 0.0076084525634892534) +zone = ('ilz033', 0.0027298400111406135) + +[60954] +centroid = (0.71816298424921088, -1.5293014030814118) +station = ('kikk', 0.0032313019484786734) +zone = ('ilz023', 0.0031499007393266092) + +[60955] +centroid = (0.71034038363518726, -1.5353532449962395) +station = ('kikk', 0.0066900095891866277) +zone = ('ilz033', 0.0020917256210029058) + +[60957] +centroid = (0.70586670333659784, -1.5382614696755452) +station = ('ktip', 0.0026120012678318262) +zone = ('ilz039', 0.002927601433844657) + +[60958] +centroid = (0.71671654263162055, -1.5287576108463679) +station = ('kikk', 0.0033577714494574242) +zone = ('inz010', 0.003183274097679609) + +[60959] +centroid = (0.71191447863426849, -1.5390661711804696) +station = ('kpnt', 0.0063011658782510822) +zone = ('ilz039', 0.0034038431266645635) + +[60960] +centroid = (0.70579294572240858, -1.5339824983083081) +station = ('ktip', 0.0042006110539970385) +zone = ('ilz046', 0.0049269751331898507) + +[60961] +centroid = (0.71749729821920771, -1.5397557158613475) +station = ('kc09', 0.0060867352582099033) +zone = ('ilz021', 0.0040071721680984065) + +[60962] +centroid = (0.70905957376361117, -1.539155881104022) +station = ('ktip', 0.0058335843315324154) +zone = ('ilz039', 0.00069597259624693919) + +[60963] +centroid = (0.70453145664565209, -1.5297535306241408) +station = ('kdnv', 0.0030024641784283284) +zone = ('ilz046', 0.0033875630723822952) + +[60964] +centroid = (0.71626246032012919, -1.5314252418882861) +station = ('kikk', 0.0014601057433205542) +zone = ('ilz023', 0.0023176619972953712) + +[60966] +centroid = (0.71124790248634673, -1.5286156108584257) +station = ('kikk', 0.0065741259555346584) +zone = ('ilz033', 0.0031883504695034313) + +[60968] +centroid = (0.70986645693010064, -1.5379760734362591) +station = ('ktip', 0.0066172997767748407) +zone = ('ilz039', 0.0018997812608447765) + +[60969] +centroid = (0.71752187245507593, -1.5385031454170688) +station = ('kikk', 0.0040495907144515626) +zone = ('ilz021', 0.0046553462687990614) + +[60970] +centroid = (0.71200605606012057, -1.5312598370350745) +station = ('kikk', 0.005044550599835676) +zone = ('ilz033', 0.0014457852278633629) + +[60973] +centroid = (0.70758588755639729, -1.530010530356497) +station = ('kdnv', 0.0060404614827922962) +zone = ('ilz033', 0.0041767929596199134) + +[60974] +centroid = (0.71068084501237372, -1.5312444955909494) +station = ('kikk', 0.0063268083385532433) +zone = ('ilz033', 0.0012948102106376575) + +[61001] +centroid = (0.7411683087460883, -1.5727202381359549) +station = ('kpvb', 0.0057681277887913418) +zone = ('ilz001', 0.002186988233094165) + +[61006] +centroid = (0.73062524597368861, -1.5568703970531113) +station = ('krpj', 0.0016987320631873901) +zone = ('ilz010', 0.0023900971298967421) + +[61007] +centroid = (0.73648976169989977, -1.5636318374819225) +station = ('kfep', 0.00085402476850985167) +zone = ('ilz002', 0.0028474151449681545) + +[61008] +centroid = (0.73733038208083035, -1.5505702296923101) +station = ('krfd', 0.0034404829554518005) +zone = ('ilz004', 0.0013663776125092026) + +[61010] +centroid = (0.73539432324817811, -1.5579917885508103) +station = ('krfd', 0.002432769092589182) +zone = ('ilz008', 0.0017578660925211464) + +[61011] +centroid = (0.73988915693730162, -1.5515611229218371) +station = ('krfd', 0.0042541679571615901) +zone = ('ilz004', 0.0015464646159396697) + +[61012] +centroid = (0.7400448228532871, -1.5492337961774727) +station = ('kjvl', 0.0051057058720800326) +zone = ('ilz004', 0.0015638287438665298) + +[61013] +centroid = (0.73953305741001729, -1.5645005402105177) +station = ('kfep', 0.0023147435218436063) +zone = ('ilz002', 0.00046555618855593286) + +[61014] +centroid = (0.73259649064406118, -1.5687795464843395) +station = ('ksfy', 0.0031511760081689428) +zone = ('ilz007', 0.0017661403332852334) + +[61015] +centroid = (0.73298159754351366, -1.556782676804906) +station = ('krpj', 0.002377327131427502) +zone = ('ilz008', 0.0017923470572621418) + +[61016] +centroid = (0.73648176809192567, -1.5524306285018881) +station = ('krfd', 0.0019694692764845641) +zone = ('ilz004', 0.0027202765246928644) + +[61018] +centroid = (0.74028599244932769, -1.5630334862544613) +station = ('kfep', 0.0029679262574221917) +zone = ('ilz002', 0.0017729801927989647) + +[61019] +centroid = (0.74070921733964379, -1.5604997045128786) +station = ('keft', 0.003845536199785496) +zone = ('ilz003', 0.0036824295113425348) + +[61020] +centroid = (0.73496134196734331, -1.5550570697734594) +station = ('krfd', 0.0015677740265722247) +zone = ('ilz008', 0.0031136912393666051) + +[61021] +centroid = (0.73002570792233612, -1.5617064426109997) +station = ('ksqi', 0.0027886783802224409) +zone = ('ilz010', 0.0027240548259081787) + +[61024] +centroid = (0.74065516449270941, -1.5585286518287236) +station = ('kjvl', 0.0046269561288905595) +zone = ('ilz003', 0.002477220425353332) + +[61025] +centroid = (0.74125707619184478, -1.5805048952920402) +station = ('kdbq', 0.0022270042964125355) +zone = ('iaz042', 0.004198923121483864) + +[61027] +centroid = (0.73881373741210032, -1.5665600461811633) +station = ('kfep', 0.0026990084003542217) +zone = ('ilz002', 0.0012754090786238541) + +[61028] +centroid = (0.7382474827895833, -1.5738660293365969) +station = ('ksfy', 0.0044963932787201906) +zone = ('ilz001', 0.0012640555101009505) + +[61030] +centroid = (0.7351265373810445, -1.5636688210087721) +station = ('kfep', 0.002215385166001328) +zone = ('ilz002', 0.0041523362772583495) + +[61031] +centroid = (0.73010737187803687, -1.5587812707846573) +station = ('krpj', 0.003213316445614576) +zone = ('ilz010', 0.0015073987664318042) + +[61032] +centroid = (0.7385885026721305, -1.5644570116989729) +station = ('kfep', 0.0014348068984037328) +zone = ('ilz002', 0.00067524028199726963) + +[61036] +centroid = (0.7402572119699623, -1.5773779110442898) +station = ('kdbq', 0.0041680520963822063) +zone = ('ilz001', 0.0022830049965922266) + +[61037] +centroid = (0.72936141815573441, -1.5666126678581112) +station = ('ksqi', 0.0013987863672931065) +zone = ('ilz009', 0.002083371161382748) + +[61038] +centroid = (0.7376776851486847, -1.5487696433161975) +station = ('kdkb', 0.0058398131034775314) +zone = ('ilz004', 0.0014886591156299366) + +[61039] +centroid = (0.73668372013967398, -1.5615034608189928) +station = ('kfep', 0.0016201461286210507) +zone = ('ilz008', 0.0034676976475485673) + +[61041] +centroid = (0.73780575740919607, -1.5762285768252664) +station = ('ksfy', 0.0047613904475962733) +zone = ('ilz001', 0.0020589562910381821) + +[61042] +centroid = (0.72758633103999371, -1.5631655902255448) +station = ('ksqi', 0.0017367705874340312) +zone = ('ilz010', 0.0035662410684819791) + +[61043] +centroid = (0.73402331476085902, -1.5551798362330447) +station = ('krfd', 0.0025065478047467033) +zone = ('ilz008', 0.002802669679142636) + +[61044] +centroid = (0.73860202897383342, -1.5693144026336132) +station = ('ksfy', 0.0053762382260584716) +zone = ('ilz002', 0.0033091477577449004) + +[61046] +centroid = (0.73486030485694531, -1.5675105524917996) +station = ('ksfy', 0.0039690364988589199) +zone = ('ilz007', 0.0017071284579758487) + +[61047] +centroid = (0.73571129249363276, -1.5602530720362791) +station = ('kfep', 0.0029069971373998724) +zone = ('ilz008', 0.0021598707341526609) + +[61048] +centroid = (0.73971656132757202, -1.5680252849947975) +station = ('kfep', 0.0041023023396608684) +zone = ('ilz002', 0.0023671788342072425) + +[61049] +centroid = (0.73390442293221314, -1.5534986129244761) +station = ('krfd', 0.0028772164378353376) +zone = ('ilz011', 0.0041247534448432379) + +[61050] +centroid = (0.74072276109463919, -1.566156246805422) +station = ('keft', 0.0035631312788894707) +zone = ('ilz002', 0.0018009180156444049) + +[61051] +centroid = (0.73273775759371751, -1.5665180884659455) +station = ('ksqi', 0.0042214612163828397) +zone = ('ilz007', 0.0027708270715060251) + +[61052] +centroid = (0.73498209393214964, -1.553335267559782) +station = ('krfd', 0.0020203306719994664) +zone = ('ilz004', 0.004340528982495131) + +[61053] +centroid = (0.73514596289561929, -1.5705070733779636) +station = ('ksfy', 0.0020747784345730505) +zone = ('ilz007', 0.0011063301495666733) + +[61054] +centroid = (0.73399776314060983, -1.5611873991447494) +station = ('kfep', 0.0037566858091122959) +zone = ('ilz008', 0.0016823287088814475) + +[61057] +centroid = (0.73005726347521205, -1.5600109948690275) +station = ('ksqi', 0.0039533398112093334) +zone = ('ilz010', 0.0017971406420019054) + +[61059] +centroid = (0.74094722788973821, -1.569752619902204) +station = ('kfep', 0.0058603179789181023) +zone = ('wiz067', 0.0043769969663995847) + +[61060] +centroid = (0.74138376964224706, -1.5641973939727387) +station = ('keft', 0.0024214869646379685) +zone = ('ilz002', 0.002268285838148179) + +[61061] +centroid = (0.73300193062929941, -1.559306056384147) +station = ('krpj', 0.0038774135680086828) +zone = ('ilz008', 0.000827494308880651) + +[61062] +centroid = (0.73741269180835445, -1.5679296060452035) +station = ('kfep', 0.0032762884990712505) +zone = ('ilz002', 0.0028483352833528616) + +[61063] +centroid = (0.73861449062469264, -1.5592886379982123) +station = ('kfep', 0.0033700618377789041) +zone = ('ilz003', 0.0023379421162660115) + +[61064] +centroid = (0.73282626324008604, -1.5635067497344319) +station = ('ksqi', 0.0042935475442293534) +zone = ('ilz008', 0.0035251785273333154) + +[61065] +centroid = (0.74002986538159743, -1.5504973098361616) +station = ('kjvl', 0.0045394510857337325) +zone = ('ilz004', 0.0013636666215098841) + +[61067] +centroid = (0.73836234290765701, -1.5617019047549445) +station = ('kfep', 0.0016815101661438305) +zone = ('ilz002', 0.0025047130746489849) + +[61068] +centroid = (0.73209261408901027, -1.5543904587189525) +station = ('krpj', 0.00095110007667133538) +zone = ('ilz008', 0.0037807087686393378) + +[61070] +centroid = (0.74031313231919615, -1.5615997331805329) +station = ('kfep', 0.0032910801860892265) +zone = ('ilz002', 0.0026935417592772277) + +[61071] +centroid = (0.72823292316798005, -1.5655405644584885) +station = ('ksqi', 0.00060931824810981413) +zone = ('ilz009', 0.0028568325893130729) + +[61072] +centroid = (0.74075880214369283, -1.5557601407560404) +station = ('kjvl', 0.0033294371487451822) +zone = ('ilz003', 0.0018733810015507612) + +[61073] +centroid = (0.74043354258429128, -1.5532356790726631) +station = ('kjvl', 0.0034056945792307275) +zone = ('ilz003', 0.0026393758292345918) + +[61074] +centroid = (0.73523422419589268, -1.5728963244041887) +station = ('ksfy', 0.0014054183474907732) +zone = ('ilz007', 0.0026041156870304058) + +[61075] +centroid = (0.74114445009521357, -1.5753156998133031) +station = ('kpvb', 0.004572926186171564) +zone = ('ilz001', 0.0018252727803794487) + +[61077] +centroid = (0.7371945780117326, -1.5595880492313916) +station = ('kfep', 0.0029031258837414683) +zone = ('ilz003', 0.0030658355788086762) + +[61078] +centroid = (0.73593415358581993, -1.5660665717884545) +station = ('kfep', 0.0023608170641621976) +zone = ('ilz002', 0.0033543288808583253) + +[61079] +centroid = (0.74066965072550095, -1.557116575744105) +station = ('kjvl', 0.0039165185805052636) +zone = ('ilz003', 0.0019006229720094096) + +[61080] +centroid = (0.74145188984295241, -1.553134031097027) +station = ('kjvl', 0.0024204133366493388) +zone = ('ilz003', 0.0033815965900375645) + +[61081] +centroid = (0.73031290185075159, -1.566176352998405) +station = ('ksqi', 0.0018655384680442448) +zone = ('ilz009', 0.0027833450010532963) + +[61084] +centroid = (0.73520287808252671, -1.5565832729378659) +station = ('krfd', 0.0017281028657367802) +zone = ('ilz008', 0.0022526948182343205) + +[61085] +centroid = (0.73900399575386022, -1.5713580959212359) +station = ('ksfy', 0.0052574274553888562) +zone = ('ilz001', 0.0023602141679499792) + +[61087] +centroid = (0.74141965361166806, -1.5706677134823173) +station = ('kfep', 0.006683333568982955) +zone = ('wiz067', 0.0036188198584795762) + +[61088] +centroid = (0.73771781026818795, -1.5579278745936023) +station = ('krfd', 0.0024152509619239024) +zone = ('ilz003', 0.0017727668748866473) + +[61089] +centroid = (0.74130109339558004, -1.567642953168856) +station = ('keft', 0.0038390465358083283) +zone = ('ilz002', 0.0029320956602825257) + +[61091] +centroid = (0.73141300033157619, -1.5625529622048022) +station = ('ksqi', 0.0032807963360163618) +zone = ('ilz008', 0.0035823068113602407) + +[61101] +centroid = (0.73907850385962792, -1.5558927334193142) +station = ('krfd', 0.0026181111818848832) +zone = ('ilz003', 0.00025621833305754943) + +[61102] +centroid = (0.73703105811411329, -1.5561796131884646) +station = ('krfd', 0.00095149127626375336) +zone = ('ilz003', 0.0018768871481264588) + +[61103] +centroid = (0.73897696060374685, -1.5548526044515885) +station = ('krfd', 0.0024542247174900614) +zone = ('ilz003', 0.00096243465134763866) + +[61104] +centroid = (0.73743162863073852, -1.55473833774546) +station = ('krfd', 0.00093915958743326573) +zone = ('ilz003', 0.0018087280273593948) + +[61107] +centroid = (0.73801753566063311, -1.5533725652458972) +station = ('krfd', 0.0019568710103027459) +zone = ('ilz003', 0.0022394378400904221) + +[61108] +centroid = (0.73753025718676868, -1.5533801923347281) +station = ('krfd', 0.0016132152122485864) +zone = ('ilz003', 0.0024695902443691029) + +[61109] +centroid = (0.73637717050985363, -1.5543161600526954) +station = ('krfd', 0.00059188147318686496) +zone = ('ilz003', 0.0028720403037689134) + +[61111] +centroid = (0.73889391783793701, -1.5533909435629205) +station = ('krfd', 0.002677854110133522) +zone = ('ilz003', 0.0020405052209972528) + +[61112] +centroid = (0.73726165101488683, -1.5529099133677784) +station = ('krfd', 0.0017718626656519462) +zone = ('ilz004', 0.0024178016278086347) + +[61114] +centroid = (0.73838955259069561, -1.5531841045932666) +station = ('krfd', 0.0023342090349636052) +zone = ('ilz003', 0.0022542462026393421) + +[61115] +centroid = (0.7393966250223889, -1.5538224238605987) +station = ('krfd', 0.0030167529013167944) +zone = ('ilz003', 0.0017891729495441628) + +[61201] +centroid = (0.72391997024020671, -1.5808429306615663) +station = ('kmli', 0.00090886828751912424) +zone = ('ilz015', 0.00020740271375867231) + +[61230] +centroid = (0.72839722846376276, -1.5745161819362572) +station = ('kcwi', 0.0023340058176651388) +zone = ('iaz066', 0.0050386626116454333) + +[61231] +centroid = (0.71927613779284028, -1.5833316130952779) +station = ('kmli', 0.0049301902718682867) +zone = ('ilz024', 0.00032296367873332118) + +[61232] +centroid = (0.72310277217783792, -1.5835797814616188) +station = ('kmli', 0.002843050958750341) +zone = ('ilz015', 0.0022518589120542748) + +[61234] +centroid = (0.72287982381918814, -1.5693012603043457) +station = ('ksqi', 0.0066360986574302014) +zone = ('ilz016', 0.0030595226257046255) + +[61235] +centroid = (0.72258889488617328, -1.5712075089133741) +station = ('kmli', 0.0065089125391243957) +zone = ('ilz016', 0.001643844882637812) + +[61236] +centroid = (0.724590124313095, -1.5772157699567793) +station = ('kmli', 0.002261301817655847) +zone = ('ilz015', 0.0027435317530568513) + +[61238] +centroid = (0.72051525174858622, -1.5738098297346825) +station = ('kmli', 0.0053714412777430111) +zone = ('ilz016', 0.001345954011993674) + +[61239] +centroid = (0.7239725570105694, -1.5774852313399947) +station = ('kmli', 0.0018247321913247181) +zone = ('ilz015', 0.0024191285114944679) + +[61240] +centroid = (0.72293558708878936, -1.5782769475952845) +station = ('kmli', 0.0012573864331251836) +zone = ('ilz015', 0.0019870953144738622) + +[61241] +centroid = (0.72411246260340922, -1.5764015913140166) +station = ('kmli', 0.0026440624682086628) +zone = ('ilz015', 0.0032410704770925686) + +[61242] +centroid = (0.72794208150142758, -1.5757730982503735) +station = ('kcwi', 0.002275476096494648) +zone = ('iaz066', 0.0046163038605420903) + +[61243] +centroid = (0.72638458458353294, -1.5652626556816935) +station = ('ksqi', 0.0023001839905301981) +zone = ('ilz009', 0.0038521191360445291) + +[61244] +centroid = (0.72470536840360422, -1.577617457484126) +station = ('kmli', 0.0020762833306543702) +zone = ('ilz015', 0.0025010660567482486) + +[61250] +centroid = (0.72703306166711146, -1.5727584084866961) +station = ('kcwi', 0.0042264986982657798) +zone = ('ilz009', 0.0031219554323952434) + +[61251] +centroid = (0.72833628156628305, -1.5721175235853637) +station = ('kcwi', 0.0038023748085563498) +zone = ('ilz009', 0.0021517110563101477) + +[61252] +centroid = (0.73019182836054086, -1.5729844984379995) +station = ('kcwi', 0.0027050103769729892) +zone = ('ilz009', 0.0030881229422951594) + +[61254] +centroid = (0.72373910176982259, -1.5734110045473093) +station = ('kmli', 0.0048078936799619294) +zone = ('ilz016', 0.0020058792762497582) + +[61256] +centroid = (0.72514648291875317, -1.577908421323726) +station = ('kmli', 0.0022253619829395248) +zone = ('ilz015', 0.0025177135615234714) + +[61257] +centroid = (0.72594104406072368, -1.5746682524739835) +station = ('kcwi', 0.0044330809070347154) +zone = ('ilz016', 0.0043569057185948411) + +[61258] +centroid = (0.72468800237754682, -1.5692955181711068) +station = ('ksqi', 0.005128897404027697) +zone = ('ilz016', 0.004090934887215408) + +[61259] +centroid = (0.72243658000235167, -1.5874531383106922) +station = ('kmut', 0.0026016118133219287) +zone = ('iaz067', 0.0026139847408385409) + +[61260] +centroid = (0.71987804949197554, -1.5861643173778497) +station = ('kmut', 0.0041133769925665994) +zone = ('ilz024', 0.0019593604661611451) + +[61261] +centroid = (0.72826105787552209, -1.5693208254452604) +station = ('ksqi', 0.003266503760335404) +zone = ('ilz009', 0.00052415988777598766) + +[61262] +centroid = (0.72040330633036331, -1.5768750642334977) +station = ('kmli', 0.003752370403134747) +zone = ('ilz016', 0.0031450273553682985) + +[61263] +centroid = (0.72010272572658496, -1.5813508563804819) +station = ('kmli', 0.0035301043259745339) +zone = ('ilz024', 0.0020227337402461535) + +[61264] +centroid = (0.72260505663504671, -1.5811785749300176) +station = ('kmli', 0.0013200424711349822) +zone = ('ilz015', 0.0011929968897111207) + +[61265] +centroid = (0.724004234736493, -1.5794093870271486) +station = ('kmli', 0.00064139145474924916) +zone = ('ilz015', 0.0010012518792406667) + +[61270] +centroid = (0.73001185000807511, -1.5701584264065853) +station = ('ksfy', 0.0042605673020808307) +zone = ('ilz009', 0.0013848362741166803) + +[61272] +centroid = (0.72001128792707292, -1.5883298695538466) +station = ('kmut', 0.0027436048106014052) +zone = ('iaz067', 0.0042614651509586482) + +[61273] +centroid = (0.72191881062645502, -1.5777581135685441) +station = ('kmli', 0.0021652506176389171) +zone = ('ilz015', 0.0028621029088229319) + +[61274] +centroid = (0.7220178057016281, -1.5756304350373154) +station = ('kmli', 0.0034444383247365425) +zone = ('ilz016', 0.0019260159428195289) + +[61275] +centroid = (0.72615427093543983, -1.5761553253565601) +station = ('kmli', 0.0038567364142726595) +zone = ('iaz068', 0.004161437432406199) + +[61276] +centroid = (0.72089213814726194, -1.5810923033050914) +station = ('kmli', 0.0027215172282575302) +zone = ('ilz024', 0.0026311288393587456) + +[61277] +centroid = (0.72629401944864702, -1.5695846843215771) +station = ('ksqi', 0.0041836602168741277) +zone = ('ilz009', 0.0025001416326197413) + +[61278] +centroid = (0.72574324589659511, -1.576673408891722) +station = ('kmli', 0.0032922794139571593) +zone = ('iaz068', 0.0038598975671641643) + +[61279] +centroid = (0.7211792622625075, -1.5834813099852212) +station = ('kmli', 0.0035605738630863229) +zone = ('ilz024', 0.002020214025466642) + +[61281] +centroid = (0.72081714134930364, -1.57987455217939) +station = ('kmli', 0.0026222291195181152) +zone = ('ilz015', 0.0029902539879862865) + +[61282] +centroid = (0.72423404223910304, -1.5780043446194154) +station = ('kmli', 0.001571741779463113) +zone = ('ilz015', 0.0020779332275890853) + +[61283] +centroid = (0.7259148815752362, -1.5670711483993174) +station = ('ksqi', 0.0031719641811673699) +zone = ('ilz009', 0.0033168483514140509) + +[61284] +centroid = (0.72246529066854703, -1.5839176597515123) +station = ('kmli', 0.0032276253897734609) +zone = ('ilz015', 0.0027302138973555332) + +[61285] +centroid = (0.73279003020481481, -1.5718142028146596) +station = ('ksfy', 0.0012288270346819585) +zone = ('ilz007', 0.0021625675675254565) + +[61301] +centroid = (0.72258543913425433, -1.5547779392661878) +station = ('kvys', 0.0012636077700374909) +zone = ('ilz019', 0.0027581963774127552) + +[61310] +centroid = (0.72782613927921769, -1.5595707704717972) +station = ('ksqi', 0.0041243410508672073) +zone = ('ilz010', 0.001071392166815469) + +[61311] +centroid = (0.71624284281933681, -1.5508998525748416) +station = ('kpnt', 0.003678390568273654) +zone = ('ilz032', 0.0047311004124611436) + +[61312] +centroid = (0.72320082477521497, -1.5574428999543506) +station = ('kvys', 0.0018217850236187476) +zone = ('ilz017', 0.0038861295958721865) + +[61313] +centroid = (0.71687119625663986, -1.5475602523176131) +station = ('kpnt', 0.0026810797200142143) +zone = ('ilz032', 0.0035009566193678551) + +[61314] +centroid = (0.72075956293728038, -1.5651850059832721) +station = ('kc75', 0.0061773457291718686) +zone = ('ilz017', 0.0027165848871162439) + +[61315] +centroid = (0.72060812071808489, -1.5597050561044457) +station = ('kvys', 0.0029893660267769021) +zone = ('ilz018', 0.0017835304172190301) + +[61316] +centroid = (0.72010682725032704, -1.5555244689471435) +station = ('kvys', 0.0016620094621523553) +zone = ('ilz018', 0.0023158028442431637) + +[61317] +centroid = (0.72311528618857479, -1.5569893063350497) +station = ('kvys', 0.0015686574031870831) +zone = ('ilz018', 0.0040872951965872512) + +[61318] +centroid = (0.72799925848772296, -1.5547091209337818) +station = ('krpj', 0.0031724947812403499) +zone = ('ilz010', 0.0029577275051557881) + +[61319] +centroid = (0.71590641315272241, -1.5488456349518291) +station = ('kpnt', 0.0022620203978725001) +zone = ('ilz032', 0.0032908697660460843) + +[61320] +centroid = (0.72177532710864867, -1.5563180527047327) +station = ('kvys', 0.00023291460292717349) +zone = ('ilz018', 0.0030264029078983044) + +[61321] +centroid = (0.7150487583582924, -1.5528743610109152) +station = ('kpnt', 0.0046546512201472321) +zone = ('ilz031', 0.0044551375379386984) + +[61322] +centroid = (0.7210676135502575, -1.5588860254463621) +station = ('kvys', 0.0022550242340226242) +zone = ('ilz018', 0.0019583535194710689) + +[61323] +centroid = (0.72314329872306926, -1.560268308760649) +station = ('kvys', 0.0034912262131104161) +zone = ('ilz017', 0.0017989349991747688) + +[61324] +centroid = (0.72902252757487473, -1.5605668124226177) +station = ('ksqi', 0.003309209870758631) +zone = ('ilz010', 0.0015337027329242604) + +[61325] +centroid = (0.71968569675511329, -1.5500205033378094) +station = ('kvys', 0.0049446982299231291) +zone = ('ilz019', 0.0021484866422286802) + +[61326] +centroid = (0.71987707210759455, -1.5573753382590059) +station = ('kvys', 0.0021141992789472206) +zone = ('ilz018', 0.0010195081966535319) + +[61327] +centroid = (0.71954182926487142, -1.5587791589362623) +station = ('kvys', 0.0030155017765775369) +zone = ('ilz018', 0.00051363369999081324) + +[61328] +centroid = (0.72430368087625763, -1.5613585810377848) +station = ('ksqi', 0.0051410473503922596) +zone = ('ilz017', 0.0018974058140317968) + +[61329] +centroid = (0.72213057142459947, -1.5564975249117154) +station = ('kvys', 0.00054212763593281617) +zone = ('ilz018', 0.0032798030125227836) + +[61330] +centroid = (0.72494114493225603, -1.5580032728172883) +station = ('kvys', 0.0035425624235700336) +zone = ('ilz010', 0.0036916810174504283) + +[61331] +centroid = (0.72863487249471426, -1.5581870559875233) +station = ('krpj', 0.0036262173682962955) +zone = ('ilz010', 0.00030026045354045725) + +[61332] +centroid = (0.71887963389337228, -1.5531471734262945) +station = ('kvys', 0.0035713846729800054) +zone = ('ilz019', 0.0030252804996801102) + +[61333] +centroid = (0.7153972831566231, -1.5513909533197676) +station = ('kpnt', 0.0036493851812623981) +zone = ('ilz032', 0.0046782375513176842) + +[61334] +centroid = (0.71811769295512173, -1.5550613283768342) +station = ('kvys', 0.003680317038426131) +zone = ('ilz018', 0.0026705818737689257) + +[61335] +centroid = (0.71847784164627071, -1.557154030509853) +station = ('kvys', 0.0033607752071947829) +zone = ('ilz018', 0.0011145787763443683) + +[61336] +centroid = (0.71755033877517582, -1.5573907320630085) +station = ('kc75', 0.0026060472360014395) +zone = ('ilz018', 0.0017531945442551362) + +[61337] +centroid = (0.72320183706618113, -1.5590752191372783) +station = ('kvys', 0.0027287208573397634) +zone = ('ilz017', 0.0026810849545550741) + +[61338] +centroid = (0.72359146436839628, -1.5651433275207347) +station = ('ksqi', 0.0050849910639145452) +zone = ('ilz017', 0.0021517480106705523) + +[61340] +centroid = (0.72014466598851024, -1.5577090975718648) +station = ('kvys', 0.0020313363406213891) +zone = ('ilz018', 0.0010954026546694346) + +[61341] +centroid = (0.72172928532298097, -1.5479897778465288) +station = ('kc09', 0.0038169598184454442) +zone = ('ilz019', 0.0025277650522469212) + +[61342] +centroid = (0.72506811763533863, -1.554813823235609) +station = ('kvys', 0.0034596161631475601) +zone = ('ilz019', 0.0043419428674789928) + +[61344] +centroid = (0.72276098435041991, -1.5679984592841945) +station = ('ksqi', 0.0063307151844721552) +zone = ('ilz016', 0.003952128009189833) + +[61345] +centroid = (0.72047619127992668, -1.5672078425863336) +station = ('kc75', 0.0070367034610844459) +zone = ('ilz028', 0.0032613154528620138) + +[61346] +centroid = (0.72450694192094489, -1.5658815145278655) +station = ('ksqi', 0.0042223089027537538) +zone = ('ilz017', 0.0031065347494755816) + +[61348] +centroid = (0.72057180041635083, -1.5539573378117777) +station = ('kvys', 0.0019294055261497719) +zone = ('ilz019', 0.0022048586505987481) + +[61349] +centroid = (0.72509394850826825, -1.5610626081032317) +station = ('ksqi', 0.0046245237933094834) +zone = ('ilz017', 0.0027034980880812506) + +[61350] +centroid = (0.72207845589313502, -1.5509891785259586) +station = ('kvys', 0.003787929700688167) +zone = ('ilz019', 0.00056156780704440885) + +[61353] +centroid = (0.72787762649215149, -1.5531868796667772) +station = ('krpj', 0.0034843821363027701) +zone = ('ilz010', 0.0040963495315317639) + +[61354] +centroid = (0.72130841662715506, -1.55584318352185) +station = ('kvys', 0.00043842569621674348) +zone = ('ilz018', 0.0028527194266467332) + +[61356] +centroid = (0.72247537867162348, -1.5609154593939962) +station = ('kvys', 0.0037531271104544401) +zone = ('ilz017', 0.0012521303651614381) + +[61358] +centroid = (0.7152136570660208, -1.5541113805715587) +station = ('kc75', 0.0045646749523005122) +zone = ('ilz031', 0.0039897250288413282) + +[61359] +centroid = (0.72191097409811356, -1.5580808876091246) +station = ('kvys', 0.0015619508617352271) +zone = ('ilz018', 0.0027631913232190244) + +[61360] +centroid = (0.72131347808198587, -1.5463717005502975) +station = ('kc09', 0.0029238129678827579) +zone = ('ilz021', 0.0025039595470320772) + +[61361] +centroid = (0.72279432013913292, -1.5665404112270784) +station = ('ksqi', 0.0059955671565716743) +zone = ('ilz017', 0.0029815203153732068) + +[61362] +centroid = (0.72184562897091897, -1.5574134911564546) +station = ('kvys', 0.0010568400262994299) +zone = ('ilz018', 0.0027783838364176935) + +[61363] +centroid = (0.72002135847685689, -1.5565254501797472) +station = ('kvys', 0.001748890067533385) +zone = ('ilz018', 0.0016112991241515379) + +[61364] +centroid = (0.71782037611704441, -1.5505778218745561) +station = ('kpnt', 0.0045656644585697547) +zone = ('ilz019', 0.0038114843945609932) + +[61367] +centroid = (0.72643067872907807, -1.5578719542443684) +station = ('kvys', 0.0049046400951476199) +zone = ('ilz010', 0.0022409118935666256) + +[61368] +centroid = (0.72020386755673793, -1.5624413658524299) +station = ('kc75', 0.0046367938390630787) +zone = ('ilz017', 0.0024359345309556677) + +[61369] +centroid = (0.71530654348881195, -1.5560493592663882) +station = ('kc75', 0.0031080588589316293) +zone = ('ilz030', 0.002642105668979885) + +[61370] +centroid = (0.71907177719072435, -1.5540145846112432) +station = ('kvys', 0.0030515647633000127) +zone = ('ilz019', 0.0032145110600822497) + +[61372] +centroid = (0.72369902901019678, -1.5547047052507743) +station = ('kvys', 0.0022025960389938978) +zone = ('ilz019', 0.003284086356952248) + +[61373] +centroid = (0.72269246272398668, -1.5532721040941522) +station = ('kvys', 0.0022726365147040079) +zone = ('ilz019', 0.0018161724082616894) + +[61374] +centroid = (0.72514437107035823, -1.5596039666341701) +station = ('kvys', 0.0043489563534784238) +zone = ('ilz017', 0.0033500628026508984) + +[61375] +centroid = (0.71617646794788348, -1.5576095614446237) +station = ('kc75', 0.0018864191842519423) +zone = ('ilz030', 0.0013211560103237722) + +[61376] +centroid = (0.72510309403354867, -1.5640464753523189) +station = ('ksqi', 0.0036391418543076149) +zone = ('ilz017', 0.0027018763518778595) + +[61377] +centroid = (0.71665631131913432, -1.553937109445747) +station = ('kvys', 0.0053066089468365302) +zone = ('ilz030', 0.0041199351514050568) + +[61378] +centroid = (0.72819798167635508, -1.5560553108391375) +station = ('krpj', 0.0031382411513330983) +zone = ('ilz010', 0.0019335371549614271) + +[61379] +centroid = (0.72240565276800628, -1.5639368337687083) +station = ('ksqi', 0.0063175661886577736) +zone = ('ilz017', 0.0010508532581672626) + +[61401] +centroid = (0.71461736532707687, -1.5775207662435655) +station = ('kgbg', 0.00061477520004862732) +zone = ('ilz027', 0.0022784072768755885) + +[61410] +centroid = (0.71203281195755364, -1.5777079528058418) +station = ('kgbg', 0.0025141090368340593) +zone = ('ilz027', 0.0033755331626772501) + +[61411] +centroid = (0.70513015693896375, -1.5795601136613506) +station = ('kmqb', 0.002884882253251658) +zone = ('ilz035', 0.0025275295938082688) + +[61412] +centroid = (0.71695329654465367, -1.5809142622680954) +station = ('kgbg', 0.003135336394351393) +zone = ('ilz024', 0.0030695044812122777) + +[61413] +centroid = (0.71891153851209866, -1.5772349336719662) +station = ('kgbg', 0.0044830486141059066) +zone = ('ilz016', 0.0042131366510157189) + +[61414] +centroid = (0.71776106982906163, -1.57351448511866) +station = ('kgbg', 0.0048737844465337448) +zone = ('ilz027', 0.003450647227492179) + +[61415] +centroid = (0.70958647121149576, -1.5783234082599724) +station = ('kmqb', 0.003772888261174041) +zone = ('ilz026', 0.0041458084554845736) + +[61416] +centroid = (0.70684782272231395, -1.5806207327944952) +station = ('kmqb', 0.0012435977458472743) +zone = ('ilz035', 0.0017039702116414671) + +[61417] +centroid = (0.71164358608106648, -1.5801917832242325) +station = ('kgbg', 0.0031912525549649584) +zone = ('ilz026', 0.0016499828261797339) + +[61418] +centroid = (0.71297003631258216, -1.5858512925765043) +station = ('kbrl', 0.0038622311607768556) +zone = ('ilz025', 0.00099741923623709872) + +[61419] +centroid = (0.71906624449699552, -1.5728463905342891) +station = ('kgbg', 0.0061521241129505484) +zone = ('ilz016', 0.0026877332495264679) + +[61420] +centroid = (0.70769125308334024, -1.5859220482243803) +station = ('kmqb', 0.0028806386377672574) +zone = ('ilz035', 0.002969673524434491) + +[61421] +centroid = (0.7188581663435728, -1.5646516333638629) +station = ('kc75', 0.0045240821085443372) +zone = ('ilz028', 0.0025620865943337405) + +[61422] +centroid = (0.70775478306811279, -1.580094760371114) +station = ('kmqb', 0.001678378979199492) +zone = ('ilz035', 0.0025443252886400308) + +[61423] +centroid = (0.7136002397988922, -1.5795439868190624) +station = ('kgbg', 0.0012927627865874909) +zone = ('ilz026', 0.0016382323218622505) + +[61424] +centroid = (0.71692483022455356, -1.5644257703053623) +station = ('kc75', 0.0034232280229698209) +zone = ('ilz028', 0.0021574108935578161) + +[61425] +centroid = (0.71138297351715862, -1.5889503690095155) +station = ('kbrl', 0.0012386274373508009) +zone = ('ilz025', 0.0018348313173871904) + +[61426] +centroid = (0.71767933606019074, -1.5656821630207027) +station = ('kc75', 0.0045707757195657273) +zone = ('ilz028', 0.0012777197393781707) + +[61427] +centroid = (0.70700706656326595, -1.5740056033168788) +station = ('kpia', 0.0071855944194321349) +zone = ('ilz036', 0.00069785331110673999) + +[61428] +centroid = (0.71460462442353745, -1.5726661852890207) +station = ('kgbg', 0.0042724749122437528) +zone = ('ilz027', 0.0014153987604286582) + +[61430] +centroid = (0.71452437418453063, -1.5762279485067356) +station = ('kgbg', 0.0015809729583207727) +zone = ('ilz027', 0.001297433226883114) + +[61431] +centroid = (0.70874345972949004, -1.5756221098167835) +station = ('kmqb', 0.0052152232022574987) +zone = ('ilz036', 0.0025310768284277046) + +[61432] +centroid = (0.7094481538682752, -1.5734695952502986) +station = ('kpia', 0.0062289435071759434) +zone = ('ilz036', 0.00314807976699118) + +[61433] +centroid = (0.70780736983847536, -1.5737457412445492) +station = ('kpia', 0.0067266215523173831) +zone = ('ilz036', 0.001512676476845149) + +[61434] +centroid = (0.71879606752878689, -1.5714685578095948) +station = ('kgbg', 0.006716843871458913) +zone = ('ilz016', 0.0031932957229438173) + +[61435] +centroid = (0.7151512440919694, -1.5803074287404695) +station = ('kgbg', 0.0016341433319061564) +zone = ('ilz026', 0.0023909456336217963) + +[61436] +centroid = (0.71314413290546852, -1.5746914478997425) +station = ('kgbg', 0.0030616718106546851) +zone = ('ilz027', 0.0012573123905063872) + +[61437] +centroid = (0.712945898409027, -1.5880359735611032) +station = ('kbrl', 0.0023985040360101333) +zone = ('ilz025', 0.00098568879534044365) + +[61438] +centroid = (0.70830248484068115, -1.5821698346786877) +station = ('kmqb', 0.0010902815205874241) +zone = ('ilz035', 0.0022360824813054529) + +[61439] +centroid = (0.71608099843779938, -1.577028181968775) +station = ('kgbg', 0.0018545376903868426) +zone = ('ilz027', 0.0025360642818626489) + +[61440] +centroid = (0.70346511283256119, -1.5812443214829401) +station = ('kmqb', 0.0038149259811993581) +zone = ('ilz040', 0.0025851280624175706) + +[61441] +centroid = (0.70404075732645388, -1.5756341525886222) +station = ('kmqb', 0.0059093893552013268) +zone = ('ilz036', 0.0025192772361451545) + +[61442] +centroid = (0.71748504600785878, -1.5868827472578479) +station = ('kmut', 0.0054059780639788375) +zone = ('ilz024', 0.0029060805472744871) + +[61443] +centroid = (0.72018692040970111, -1.5698345980171702) +station = ('kmli', 0.0081659942779632455) +zone = ('ilz016', 0.0029008261494366475) + +[61447] +centroid = (0.71326915083978881, -1.5839446250884557) +station = ('kbrl', 0.0053176818985218172) +zone = ('ilz026', 0.0018545438987622629) + +[61448] +centroid = (0.71442644376020126, -1.5751040262816214) +station = ('kgbg', 0.00243119957247306) +zone = ('ilz027', 0.0004430294355169998) + +[61449] +centroid = (0.71718203939642, -1.5704378885264145) +station = ('kgbg', 0.0065229919994281189) +zone = ('ilz028', 0.0023937102325982161) + +[61450] +centroid = (0.70823082162159423, -1.5878849153143433) +station = ('kbrl', 0.0038649549497561) +zone = ('ilz034', 0.0039231235859200847) + +[61451] +centroid = (0.71451505412632499, -1.5697400186250046) +station = ('kpia', 0.0058304059072318108) +zone = ('ilz028', 0.0032842341568973276) + +[61452] +centroid = (0.70225399395801724, -1.5823264430724693) +station = ('kmqb', 0.0049594443274179438) +zone = ('ilz040', 0.0014935536551501543) + +[61453] +centroid = (0.71579795839300353, -1.5841329984746233) +station = ('kgbg', 0.0045751337430587815) +zone = ('ilz024', 0.0033834310656850491) + +[61454] +centroid = (0.71003362456585672, -1.5889458486067529) +station = ('kbrl', 0.0019274002316627199) +zone = ('ilz025', 0.0028199130911341712) + +[61455] +centroid = (0.70580893293835678, -1.5820799676755026) +station = ('kmqb', 0.001405583092313844) +zone = ('ilz035', 0.0005061494706469111) + +[61458] +centroid = (0.7117845737780425, -1.5739927053337064) +station = ('kgbg', 0.0042554262029276604) +zone = ('ilz027', 0.0026402969956919437) + +[61459] +centroid = (0.70703715603957029, -1.5781191000177339) +station = ('kmqb', 0.0030956825718675583) +zone = ('ilz036', 0.0028896545535412824) + +[61460] +centroid = (0.71063979486836693, -1.5852681431668281) +station = ('kbrl', 0.0041156996613532192) +zone = ('ilz025', 0.0021776827617877238) + +[61462] +centroid = (0.71424543566347687, -1.5820422860169518) +station = ('kgbg', 0.0028235687864395414) +zone = ('ilz026', 0.0013558490374436405) + +[61465] +centroid = (0.71926193081272916, -1.5791680952580602) +station = ('kmli', 0.0042050968193263734) +zone = ('ilz024', 0.0034379669515456667) + +[61466] +centroid = (0.71750508238767163, -1.5791680254448901) +station = ('kgbg', 0.0030685577836346628) +zone = ('ilz024', 0.0038203601294146692) + +[61467] +centroid = (0.71691784890754562, -1.5749993065265018) +station = ('kgbg', 0.0034798272180150956) +zone = ('ilz027', 0.0025490604227154331) + +[61468] +centroid = (0.72008349219822787, -1.5775643645682804) +station = ('kmli', 0.0037563974702635888) +zone = ('ilz015', 0.0043503730994944659) + +[61469] +centroid = (0.71481683900728732, -1.5866480353800398) +station = ('kbrl', 0.0044437102912962319) +zone = ('ilz025', 0.0024168646589538701) + +[61470] +centroid = (0.70867109837870224, -1.5796074469906647) +station = ('kmqb', 0.002441608394916259) +zone = ('ilz035', 0.0034523252221347273) + +[61471] +centroid = (0.71030502326454181, -1.5853669811623683) +station = ('kmqb', 0.0039245471499863545) +zone = ('ilz025', 0.0024199050997648287) + +[61472] +centroid = (0.71736782969529478, -1.5774786165421297) +station = ('kgbg', 0.0029335841845010342) +zone = ('ilz027', 0.0037183134772715057) + +[61473] +centroid = (0.71048316902129294, -1.5819739040168588) +station = ('kmqb', 0.0032748160839380343) +zone = ('ilz026', 0.0024857091731582607) + +[61474] +centroid = (0.71098528279379913, -1.577435594176068) +station = ('kgbg', 0.0035817221729978876) +zone = ('ilz027', 0.0040611771985103219) + +[61475] +centroid = (0.70856744327442633, -1.5839465274973403) +station = ('kmqb', 0.0019048267942521366) +zone = ('ilz035', 0.0026683987623333225) + +[61476] +centroid = (0.71731541745785732, -1.5853513255589782) +station = ('kmut', 0.0062458113858947055) +zone = ('ilz024', 0.0022162155331042835) + +[61477] +centroid = (0.70678842916786866, -1.57621648169355) +station = ('kmqb', 0.0045573902391900763) +zone = ('ilz036', 0.0014266205350661957) + +[61478] +centroid = (0.71135876580043345, -1.5840720864837288) +station = ('kmqb', 0.0043869018163034488) +zone = ('ilz025', 0.0024141902926603769) + +[61479] +centroid = (0.71566859458884569, -1.564596358786452) +station = ('kc75', 0.0034120317761795155) +zone = ('ilz028', 0.0025363607120183801) + +[61480] +centroid = (0.71082759229588144, -1.5867373962377418) +station = ('kbrl', 0.0029882329411859616) +zone = ('ilz025', 0.0015902411738314124) + +[61482] +centroid = (0.70483793646230231, -1.5779232915289527) +station = ('kmqb', 0.0040189600907952518) +zone = ('ilz036', 0.0030837187955443796) + +[61483] +centroid = (0.71706555612214185, -1.5687258776098407) +station = ('kpia', 0.0077521551154261818) +zone = ('ilz028', 0.0011133738625072698) + +[61484] +centroid = (0.70329466397781137, -1.5784022971421627) +station = ('kmqb', 0.0048623110852944081) +zone = ('ilz040', 0.003390404584592849) + +[61485] +centroid = (0.71595643428908451, -1.5725924800347091) +station = ('kgbg', 0.0045618647155920905) +zone = ('ilz027', 0.0021342077115543111) + +[61486] +centroid = (0.71898866461174438, -1.5808820609433962) +station = ('kmli', 0.0045220372016351717) +zone = ('ilz024', 0.0021549775866827464) + +[61488] +centroid = (0.7161476700152255, -1.576352058869845) +station = ('kgbg', 0.0022159473370062105) +zone = ('ilz027', 0.0022333053512531282) + +[61489] +centroid = (0.71437823776626119, -1.571375112881443) +station = ('kpia', 0.0065287459351426498) +zone = ('ilz027', 0.0023753347651360658) + +[61490] +centroid = (0.71882312013219263, -1.5753117030093162) +station = ('kgbg', 0.0048788492267004902) +zone = ('ilz016', 0.0033678934552228857) + +[61491] +centroid = (0.71653556944148133, -1.5660967485312216) +station = ('kc75', 0.0045749023360422214) +zone = ('ilz028', 0.0011106329485383898) + +[61501] +centroid = (0.70211743939734117, -1.5762402705312546) +station = ('kmqb', 0.006816517111854623) +zone = ('ilz036', 0.0044865496371014448) + +[61516] +centroid = (0.71310807440312229, -1.555702736876942) +station = ('kc75', 0.0043441883655845068) +zone = ('ilz031', 0.0015787684033628185) + +[61517] +centroid = (0.71258941490930716, -1.5680887626196929) +station = ('kpia', 0.0035393155606081301) +zone = ('ilz029', 0.0013231969302054886) + +[61519] +centroid = (0.70616143708738222, -1.5723489018843007) +station = ('kpia', 0.0064750506846803692) +zone = ('ilz036', 0.0015896571024586975) + +[61520] +centroid = (0.70753947925158678, -1.5712016097005024) +station = ('kpia', 0.005024755618557271) +zone = ('ilz036', 0.0027048629292376752) + +[61523] +centroid = (0.71404788184544365, -1.5627288913934032) +station = ('kc75', 0.0027355559150569523) +zone = ('ilz030', 0.003308490999386393) + +[61524] +centroid = (0.70670686993192289, -1.5714025669105769) +station = ('kpia', 0.0055735257507854635) +zone = ('ilz036', 0.0023161467446209888) + +[61525] +centroid = (0.71294047043505338, -1.5650206483276119) +station = ('kpia', 0.0031788328585423075) +zone = ('ilz029', 0.0015977492855054596) + +[61526] +centroid = (0.71423936191768, -1.5641633251457399) +station = ('kc75', 0.0035066616670040717) +zone = ('ilz029', 0.0029921585979871064) + +[61528] +centroid = (0.71172703027260431, -1.5659610840884639) +station = ('kpia', 0.0020286881838989428) +zone = ('ilz029', 0.00051484836846688085) + +[61529] +centroid = (0.71178048970759289, -1.5697073809679922) +station = ('kpia', 0.0039198344130863677) +zone = ('ilz029', 0.0023494937648388847) + +[61530] +centroid = (0.71059980937520373, -1.5578827229258532) +station = ('kc75', 0.0055747137938554764) +zone = ('ilz031', 0.0014423054367026463) + +[61531] +centroid = (0.71004366020905574, -1.5714385032398754) +station = ('kpia', 0.0046869101318580001) +zone = ('ilz036', 0.004303100941288448) + +[61532] +centroid = (0.70405686671544976, -1.567633598204065) +station = ('kpia', 0.0059866252243742863) +zone = ('ilz041', 0.002176188818954899) + +[61533] +centroid = (0.70836585774582106, -1.5680474157697131) +station = ('kpia', 0.0025316309633791846) +zone = ('ilz029', 0.0036861908474033031) + +[61534] +centroid = (0.70536506080298955, -1.5649683059033446) +station = ('kpia', 0.0044081129691161524) +zone = ('ilz037', 0.0025967734773532569) + +[61535] +centroid = (0.70823207825865575, -1.5623507134510812) +station = ('kpia', 0.00269527532619595) +zone = ('ilz037', 0.0012433105514233866) + +[61536] +centroid = (0.71016443699329368, -1.5671971437180188) +station = ('kpia', 0.0015149317061885308) +zone = ('ilz029', 0.0017792028850596735) + +[61537] +centroid = (0.7176654257860523, -1.5615715984729908) +station = ('kc75', 0.0020739589520024199) +zone = ('ilz030', 0.0022427913016822699) + +[61539] +centroid = (0.70784276511570587, -1.5666437172655041) +station = ('kpia', 0.0021890532585045761) +zone = ('ilz037', 0.0034060597215992668) + +[61540] +centroid = (0.71583981138846631, -1.559741358952887) +station = ('kc75', 0.00027254976369499767) +zone = ('ilz030', 0.00043331275653551667) + +[61541] +centroid = (0.7152425248118488, -1.5574437202590992) +station = ('kc75', 0.0021065082310850682) +zone = ('ilz030', 0.0017155537851792906) + +[61542] +centroid = (0.70493375503823685, -1.5730693737995238) +station = ('kpia', 0.0076492250995975151) +zone = ('ilz036', 0.0017764382011793472) + +[61543] +centroid = (0.70533139340171869, -1.570352175406849) +station = ('kpia', 0.0058818899975358278) +zone = ('ilz041', 0.0031124902400849657) + +[61544] +centroid = (0.71023814224760551, -1.5749116909980516) +station = ('kgbg', 0.0049852161212242223) +zone = ('ilz036', 0.0038727258576027115) + +[61545] +centroid = (0.71332845712777171, -1.5595126684609981) +station = ('kc75', 0.0026270971057272387) +zone = ('ilz031', 0.0023685473236599295) + +[61546] +centroid = (0.70595667505953819, -1.5674730279128817) +station = ('kpia', 0.0041621120298118881) +zone = ('ilz041', 0.0039107383217194536) + +[61547] +centroid = (0.70826913159867555, -1.5659254270118457) +station = ('kpia', 0.0015786663582316402) +zone = ('ilz037', 0.0030341129087604751) + +[61548] +centroid = (0.71224029669903077, -1.5605459906446415) +station = ('kc75', 0.0036955465012189293) +zone = ('ilz031', 0.0026867519666442141) + +[61550] +centroid = (0.70878255510473476, -1.5610548413880605) +station = ('kpia', 0.0033463405674380043) +zone = ('ilz037', 0.002029407373324927) + +[61552] +centroid = (0.71240207126739818, -1.5632155764553219) +station = ('kpia', 0.0030600521818718277) +zone = ('ilz029', 0.0026188097240214558) + +[61553] +centroid = (0.70905627509132496, -1.5713594572780525) +station = ('kpia', 0.0046751338048561597) +zone = ('ilz036', 0.0035417167841172918) + +[61554] +centroid = (0.70754501194531561, -1.5641347541058845) +station = ('kpia', 0.0023833667996881907) +zone = ('ilz037', 0.001497584655532194) + +[61559] +centroid = (0.71417159078282511, -1.5669426921663705) +station = ('kpia', 0.0045829143756263672) +zone = ('ilz029', 0.0022989698858374105) + +[61560] +centroid = (0.71885333178154465, -1.5606697519419004) +station = ('kc75', 0.0029665206374986587) +zone = ('ilz018', 0.0017852172925114625) + +[61561] +centroid = (0.71214732300977701, -1.5568493134757473) +station = ('kc75', 0.0044961646858545706) +zone = ('ilz031', 0.0002919411975415886) + +[61562] +centroid = (0.71349749226582726, -1.5620965935119908) +station = ('kc75', 0.0028583955808551428) +zone = ('ilz030', 0.0033735599706750459) + +[61563] +centroid = (0.70671913959656441, -1.5717425745021578) +station = ('kpia', 0.0057845916687613765) +zone = ('ilz036', 0.0020623312172173888) + +[61564] +centroid = (0.70674430724437809, -1.564748656216981) +station = ('kpia', 0.0030486899052355799) +zone = ('ilz037', 0.0018740052795211467) + +[61565] +centroid = (0.71626068008429222, -1.5621575753160555) +station = ('kc75', 0.0015989733637571558) +zone = ('ilz030', 0.0021116972876993262) + +[61567] +centroid = (0.70438240552753184, -1.5689910629363888) +station = ('kpia', 0.0060829134807427977) +zone = ('ilz041', 0.0020846235876023698) + +[61568] +centroid = (0.70706127648983275, -1.5617593609939202) +station = ('kpia', 0.0037983263503910312) +zone = ('ilz037', 0.00042127951734367895) + +[61569] +centroid = (0.71005634875271761, -1.5690618011309723) +station = ('kpia', 0.0028906860411694549) +zone = ('ilz029', 0.0026092758965237089) + +[61570] +centroid = (0.71420743984566104, -1.559028147607352) +station = ('kc75', 0.0018894790241586188) +zone = ('ilz030', 0.0019730640575868043) + +[61571] +centroid = (0.71042136691247981, -1.56063657323282) +station = ('kpia', 0.0035734924251583644) +zone = ('ilz031', 0.003103007402668004) + +[61572] +centroid = (0.71214966175097472, -1.571572492166551) +station = ('kpia', 0.0053372779539476549) +zone = ('ilz027', 0.0031631398371516815) + +[61602] +centroid = (0.70990513342632489, -1.5639648812097879) +station = ('kpia', 0.00099903884439741793) +zone = ('ilz029', 0.0028171887215942522) + +[61603] +centroid = (0.71057383887593406, -1.5634087320436401) +station = ('kpia', 0.0016251870718623951) +zone = ('ilz029', 0.0027560390035914553) + +[61604] +centroid = (0.71044899547453888, -1.5647509251450087) +station = ('kpia', 0.00078702381799817557) +zone = ('ilz029', 0.002011282885180848) + +[61605] +centroid = (0.70993956877246678, -1.5643970072792894) +station = ('kpia', 0.00068378561346526309) +zone = ('ilz029', 0.0025684484527183043) + +[61606] +centroid = (0.71034563707623577, -1.564015966996994) +station = ('kpia', 0.0011126983245369037) +zone = ('ilz029', 0.0024959702029993748) + +[61607] +centroid = (0.70907727140222654, -1.565300843485727) +station = ('kpia', 0.0006903687575609517) +zone = ('ilz029', 0.0029788779999959862) + +[61610] +centroid = (0.7093387391774677, -1.5638073303382105) +station = ('kpia', 0.0011891266182176689) +zone = ('ilz037', 0.0026118414500169171) + +[61611] +centroid = (0.71058001734148613, -1.5626947876598192) +station = ('kpia', 0.0021146736145942267) +zone = ('ilz037', 0.0036029238611273041) + +[61614] +centroid = (0.71138112346815141, -1.563886969711979) +station = ('kpia', 0.0019242545434701266) +zone = ('ilz029', 0.0021213851884121161) + +[61615] +centroid = (0.71101036317515032, -1.5653296239650925) +station = ('kpia', 0.0012439707382078729) +zone = ('ilz029', 0.0013056480261205722) + +[61616] +centroid = (0.71116452810797903, -1.5633200518643462) +station = ('kpia', 0.0020337676392502865) +zone = ('ilz029', 0.0025924316289499811) + +[61625] +centroid = (0.71030743181890954, -1.5640366491486302) +station = ('kpia', 0.0010797310079545285) +zone = ('ilz029', 0.0025075711799363428) + +[61701] +centroid = (0.7064529245257577, -1.553220773960851) +station = ('kbmi', 0.0010244154568514444) +zone = ('ilz038', 0.0019495084847900642) + +[61704] +centroid = (0.70635441814277522, -1.5523750397652121) +station = ('kbmi', 0.00039439732581376849) +zone = ('ilz038', 0.0013357533962308095) + +[61705] +centroid = (0.70534994625166736, -1.5515470555680662) +station = ('kbmi', 0.0011336553966270176) +zone = ('ilz038', 0.0015013514799215454) + +[61720] +centroid = (0.70781251855976879, -1.5448689022511601) +station = ('kpnt', 0.0066038662626440731) +zone = ('ilz038', 0.0045542430746302598) + +[61721] +centroid = (0.70425356532214956, -1.558988877699182) +station = ('kaaa', 0.0033570852801521143) +zone = ('ilz037', 0.0037224971758900889) + +[61722] +centroid = (0.70543871369742384, -1.5469266803458463) +station = ('kbmi', 0.0038999340710180086) +zone = ('ilz038', 0.0031197361629234652) + +[61723] +centroid = (0.70275095900923013, -1.5581696026950036) +station = ('kaaa', 0.002008277983362553) +zone = ('ilz042', 0.0027309734129624102) + +[61724] +centroid = (0.70388270030939326, -1.5451552933281201) +station = ('kcmi', 0.0062556312963924689) +zone = ('ilz045', 0.0055199276818317629) + +[61725] +centroid = (0.70878599340336113, -1.5554848499731231) +station = ('kbmi', 0.0035997205386674776) +zone = ('ilz031', 0.0033155005499708305) + +[61726] +centroid = (0.71101912472799533, -1.5479729179659545) +station = ('kpnt', 0.0033516610123671148) +zone = ('ilz032', 0.0032075443441161029) + +[61727] +centroid = (0.70061738126512951, -1.5526651483934788) +station = ('kdec', 0.0055405755813613296) +zone = ('ilz043', 0.00094592163546927828) + +[61728] +centroid = (0.70811035899662156, -1.5468388204713011) +station = ('kbmi', 0.0041696817687532561) +zone = ('ilz038', 0.0032418483958950605) + +[61729] +centroid = (0.70910366078051668, -1.5572052559233991) +station = ('kbmi', 0.0048392563665636103) +zone = ('ilz031', 0.002787986047021749) + +[61730] +centroid = (0.70742533471850633, -1.5486204002118593) +station = ('kbmi', 0.0026570621610829174) +zone = ('ilz038', 0.0017251955156932202) + +[61731] +centroid = (0.70884709738047347, -1.5443637516057553) +station = ('kpnt', 0.0057116357834648438) +zone = ('ilz039', 0.0034869301969457592) + +[61732] +centroid = (0.70737369042593989, -1.5569836165616884) +station = ('kbmi', 0.0039920775025397825) +zone = ('ilz031', 0.0045148178465103054) + +[61733] +centroid = (0.70893281050003898, -1.5592230310716297) +station = ('kpia', 0.0046631932132919825) +zone = ('ilz037', 0.0030430853347012815) + +[61734] +centroid = (0.70469405151876796, -1.5622897316470163) +station = ('kaaa', 0.0044709655167271909) +zone = ('ilz037', 0.0022952258155656412) + +[61735] +centroid = (0.70163351195564072, -1.5501106495936747) +station = ('kbmi', 0.0050062523198616243) +zone = ('ilz043', 0.001274464365175956) + +[61736] +centroid = (0.70515333491143017, -1.550560298768866) +station = ('kbmi', 0.0016421247574361817) +zone = ('ilz038', 0.0015470334191517792) + +[61737] +centroid = (0.70623903442592584, -1.5488975934036611) +station = ('kbmi', 0.0022746677761222352) +zone = ('ilz038', 0.0014298089063986565) + +[61738] +centroid = (0.71113412447240931, -1.5538663887044561) +station = ('kbmi', 0.0049165920701083003) +zone = ('ilz031', 0.0025100966691949042) + +[61739] +centroid = (0.71092395192388413, -1.5449781075024573) +station = ('kpnt', 0.0036028868707601038) +zone = ('ilz032', 0.0028086423075859867) + +[61740] +centroid = (0.71356500160129444, -1.5509280920021387) +station = ('kpnt', 0.0031925937925009595) +zone = ('ilz032', 0.0040108881517449211) + +[61741] +centroid = (0.71138634200261497, -1.5429455843220474) +station = ('kpnt', 0.0040897569730570394) +zone = ('ilz032', 0.0030685955251599771) + +[61742] +centroid = (0.70922426303182939, -1.5580562784666714) +station = ('kpia', 0.0054994294050722892) +zone = ('ilz031', 0.0027759228854096485) + +[61743] +centroid = (0.71341492073891544, -1.5495326139987067) +station = ('kpnt', 0.002226522415943039) +zone = ('ilz032', 0.0029669148065475863) + +[61744] +centroid = (0.71104663111700672, -1.5513727669889619) +station = ('kbmi', 0.0046064262892010679) +zone = ('ilz038', 0.0043807242910544886) + +[61745] +centroid = (0.70382383035372353, -1.552825613964907) +station = ('kbmi', 0.0027300476577141039) +zone = ('ilz043', 0.0027881527331606788) + +[61747] +centroid = (0.70539609275709003, -1.5609435941015382) +station = ('kaaa', 0.0046908977574041996) +zone = ('ilz037', 0.0019003981330104407) + +[61748] +centroid = (0.70894377116774143, -1.5531886599026146) +station = ('kbmi', 0.0026808736901097418) +zone = ('ilz038', 0.0029467739109078112) + +[61749] +centroid = (0.69975222155491601, -1.5553714908382061) +station = ('kaaa', 0.0031371677266320325) +zone = ('ilz043', 0.0031697947777238962) + +[61750] +centroid = (0.70028796782210823, -1.5508934646697794) +station = ('kdec', 0.0050660183438892724) +zone = ('ilz043', 0.0010703574268472189) + +[61751] +centroid = (0.70187640942764085, -1.5585659669681313) +station = ('kaaa', 0.0010865489334081061) +zone = ('ilz042', 0.0018169691548621993) + +[61752] +centroid = (0.70406027010749128, -1.5490547777560957) +station = ('kbmi', 0.0032167808801018614) +zone = ('ilz038', 0.0029126699334811965) + +[61753] +centroid = (0.70912247542985307, -1.5496429537140177) +station = ('kbmi', 0.0031597479091329049) +zone = ('ilz038', 0.0025490009637591988) + +[61754] +centroid = (0.70395637065711991, -1.5565165664538547) +station = ('kaaa', 0.0036749192961708314) +zone = ('ilz042', 0.0044116554212153304) + +[61755] +centroid = (0.70734742322069732, -1.5592278132737802) +station = ('kpia', 0.0051865077084577316) +zone = ('ilz037', 0.0023667784496047466) + +[61756] +centroid = (0.69867697656263983, -1.5528795969986711) +station = ('kdec', 0.0037381056684551253) +zone = ('ilz043', 0.0026678453679905819) + +[61759] +centroid = (0.70576460157535625, -1.5591880546734198) +station = ('kaaa', 0.0048646148592758134) +zone = ('ilz037', 0.0026689014375247846) + +[61760] +centroid = (0.71347738607284439, -1.5537234287854254) +station = ('kpnt', 0.0052877981014844829) +zone = ('ilz031', 0.0029621108773542505) + +[61761] +centroid = (0.70736594116406093, -1.552626349724207) +station = ('kbmi', 0.0010748475363097729) +zone = ('ilz038', 0.00162509438435619) + +[61764] +centroid = (0.71353321915561563, -1.5468527831053172) +station = ('kpnt', 0.00071952510272999405) +zone = ('ilz032', 0.00094114253391285876) + +[61769] +centroid = (0.71352566187995448, -1.5428599584689446) +station = ('kpnt', 0.0030673353081753646) +zone = ('ilz032', 0.0020969437982790808) + +[61770] +centroid = (0.70586291597212103, -1.5450573803570831) +station = ('kbmi', 0.0052203180147441458) +zone = ('ilz038', 0.0043567339571029323) + +[61771] +centroid = (0.71038419139941233, -1.5556359431264681) +station = ('kbmi', 0.0048571635462868225) +zone = ('ilz031', 0.0018368368889303162) + +[61772] +centroid = (0.70478587329071529, -1.5544944105292013) +station = ('kbmi', 0.0026014916311060642) +zone = ('ilz038', 0.0034775736516711119) + +[61773] +centroid = (0.70810835186798182, -1.5425820147855644) +station = ('ktip', 0.0058128260410900837) +zone = ('ilz039', 0.0021690657549147756) + +[61774] +centroid = (0.70564843246034348, -1.5569025460179333) +station = ('kbmi', 0.0039106110270436985) +zone = ('ilz037', 0.0043233467557485146) + +[61775] +centroid = (0.70954084830484865, -1.5424515165173929) +station = ('kpnt', 0.0057486129288727896) +zone = ('ilz039', 0.002249858990277756) + +[61776] +centroid = (0.70801927026295997, -1.5511524715307752) +station = ('kbmi', 0.0016567535191418905) +zone = ('ilz038', 0.0013698356419501131) + +[61777] +centroid = (0.70239140373002673, -1.5523946747192972) +station = ('kbmi', 0.0040838618514045036) +zone = ('ilz043', 0.0013329353986494712) + +[61778] +centroid = (0.70219624101306877, -1.5549342684072891) +station = ('kaaa', 0.0034995500337878364) +zone = ('ilz043', 0.0026931437875295275) + +[61801] +centroid = (0.70003351627045995, -1.5395728053557385) +station = ('kcmi', 0.0015148595300960921) +zone = ('ilz045', 0.00056621267413607711) + +[61802] +centroid = (0.70042677385751928, -1.5386258944233615) +station = ('kcmi', 0.0022558959608775984) +zone = ('ilz045', 0.00058443742113557155) + +[61810] +centroid = (0.69666775352774402, -1.534402564152678) +station = ('kprg', 0.0049987871660306235) +zone = ('ilz057', 0.0047257653598453053) + +[61811] +centroid = (0.70324101255660498, -1.5293071975745285) +station = ('kdnv', 0.0016684464506909193) +zone = ('ilz046', 0.0024038473892973467) + +[61812] +centroid = (0.70208810041261527, -1.5343402035385045) +station = ('ktip', 0.0032944551030004783) +zone = ('ilz046', 0.0024930455258188036) + +[61813] +centroid = (0.69657399444032686, -1.5457630867868346) +station = ('kdec', 0.0042518429403360317) +zone = ('ilz044', 0.0017721001758597352) + +[61814] +centroid = (0.70215655222587836, -1.5284279530572511) +station = ('kdnv', 0.00062487921929578244) +zone = ('ilz046', 0.0022903973362263935) + +[61815] +centroid = (0.70006468785090059, -1.5424617266935172) +station = ('kcmi', 0.0019948603755470091) +zone = ('ilz045', 0.0024228650926535317) + +[61816] +centroid = (0.69678446369482494, -1.5359109649587142) +station = ('kcmi', 0.0040404323462030307) +zone = ('ilz055', 0.0039435419867569444) + +[61817] +centroid = (0.69874736569137275, -1.5309379459611294) +station = ('kdnv', 0.0032873036512988825) +zone = ('ilz046', 0.0025982450142726177) + +[61818] +centroid = (0.69615438238156235, -1.5483951131120119) +station = ('kdec', 0.0022169869248406414) +zone = ('ilz044', 0.002734226412627615) + +[61820] +centroid = (0.70001473652770851, -1.5401529877056863) +station = ('kcmi', 0.001335211059494543) +zone = ('ilz045', 0.00082423841751464854) + +[61821] +centroid = (0.70004538450937348, -1.5406877042286198) +station = ('kcmi', 0.0013364422916405281) +zone = ('ilz045', 0.0011427648768598136) + +[61822] +centroid = (0.70051374361414631, -1.5412183541343962) +station = ('kcmi', 0.0018727499516693316) +zone = ('ilz045', 0.0014185142388208028) + +[61830] +centroid = (0.69870902080770658, -1.5483951654718897) +station = ('kdec', 0.0040239305927733116) +zone = ('ilz044', 0.0017222688522436618) + +[61831] +centroid = (0.70206026241104591, -1.5322606786413382) +station = ('kdnv', 0.0026571814746013393) +zone = ('ilz046', 0.001070733324205072) + +[61832] +centroid = (0.70050943265089383, -1.5295448765120649) +station = ('kdnv', 0.0012307821140381183) +zone = ('ilz046', 0.0015290461784810364) + +[61833] +centroid = (0.69987261436671866, -1.5296802093422646) +station = ('kdnv', 0.0018572157146055602) +zone = ('ilz046', 0.001881966170062377) + +[61834] +centroid = (0.70079413075847907, -1.5301877161821595) +station = ('kdnv', 0.0013209121073503437) +zone = ('ilz046', 0.00096210489397066245) + +[61839] +centroid = (0.70053531588370088, -1.5468707599966125) +station = ('kdec', 0.0061894976193143797) +zone = ('ilz044', 0.0022795157665043988) + +[61840] +centroid = (0.70334801869304486, -1.5411303197269257) +station = ('ktip', 0.0021021184555784266) +zone = ('ilz045', 0.0030816677571896211) + +[61841] +centroid = (0.69849113390388762, -1.5326935377491253) +station = ('kdnv', 0.0042978247096507379) +zone = ('ilz046', 0.0030578816858521005) + +[61842] +centroid = (0.70229740029651433, -1.5475030753313177) +station = ('kbmi', 0.005327980821244872) +zone = ('ilz044', 0.0041057057850343998) + +[61843] +centroid = (0.70361486208238233, -1.5424375713366696) +station = ('ktip', 0.0031175176092745902) +zone = ('ilz045', 0.0038384115614457483) + +[61844] +centroid = (0.7005940113064455, -1.5335998523231009) +station = ('ktip', 0.0045158481407602119) +zone = ('ilz046', 0.0019586740248926284) + +[61845] +centroid = (0.70465261740232554, -1.5428154525730189) +station = ('ktip', 0.0036603472515742189) +zone = ('ilz039', 0.0045312563826270134) + +[61846] +centroid = (0.69773467329948813, -1.5290399876660481) +station = ('kdnv', 0.0038812888999482822) +zone = ('inz043', 0.0028869621523176566) + +[61847] +centroid = (0.70370465927239734, -1.5360858294964717) +station = ('ktip', 0.0018037540080128871) +zone = ('ilz045', 0.0040061515840212752) + +[61848] +centroid = (0.70350836209142553, -1.5307021170725998) +station = ('kdnv', 0.002373441714123231) +zone = ('ilz046', 0.0022090067692438894) + +[61849] +centroid = (0.69837999133712059, -1.5353202408200843) +station = ('kcmi', 0.0040140767422747218) +zone = ('ilz045', 0.003795226983188983) + +[61850] +centroid = (0.6969402343305654, -1.5313483426814432) +station = ('kprg', 0.0041474647869480553) +zone = ('ilz046', 0.0043968564066119318) + +[61851] +centroid = (0.69744788079680042, -1.5434771068924498) +station = ('kcmi', 0.0025789222933229093) +zone = ('ilz044', 0.0022631539390017396) + +[61852] +centroid = (0.69644138432376035, -1.5372126838747293) +station = ('kcmi', 0.0034176961251382743) +zone = ('ilz055', 0.0030071134234278159) + +[61853] +centroid = (0.70188339074464878, -1.5432405624189272) +station = ('kcmi', 0.0037815376544070296) +zone = ('ilz045', 0.0032367445934922733) + +[61854] +centroid = (0.70162012528027795, -1.5451282581780066) +station = ('kcmi', 0.00455401374599026) +zone = ('ilz044', 0.0034081738496236592) + +[61855] +centroid = (0.69677276998883653, -1.5474251289269236) +station = ('kdec', 0.0031616204953079461) +zone = ('ilz044', 0.001801517620461879) + +[61856] +centroid = (0.69859761644155161, -1.5460144491057066) +station = ('kdec', 0.0051086763251760705) +zone = ('ilz044', 0.00032014089586986636) + +[61857] +centroid = (0.70016595185410135, -1.5331370084587645) +station = ('kdnv', 0.0035950014176713584) +zone = ('ilz046', 0.0018704394212291956) + +[61858] +centroid = (0.70047494494487439, -1.5317337113802836) +station = ('kdnv', 0.0024930181707433713) +zone = ('ilz046', 0.00094394315162651) + +[61859] +centroid = (0.70075716468492177, -1.5352423118689829) +station = ('ktip', 0.0034602372830523213) +zone = ('ilz046', 0.0031217868603079873) + +[61862] +centroid = (0.70347287954773252, -1.5351672801644396) +station = ('ktip', 0.0024574056914066335) +zone = ('ilz046', 0.0036887397514524484) + +[61863] +centroid = (0.6964780885979297, -1.5407499950296235) +station = ('kcmi', 0.0022409590018597002) +zone = ('ilz055', 0.0025067550478058043) + +[61864] +centroid = (0.6976964854954546, -1.5385552609485331) +station = ('kcmi', 0.001831615217749947) +zone = ('ilz045', 0.0029462949589677385) + +[61865] +centroid = (0.70345364601937543, -1.5324420881637906) +station = ('kdnv', 0.0033144253481488277) +zone = ('ilz046', 0.0023114347669913418) + +[61866] +centroid = (0.70358737314666331, -1.5385871306606749) +station = ('ktip', 0.00036797961294819767) +zone = ('ilz045', 0.0030684436441249254) + +[61870] +centroid = (0.69634359352577102, -1.5292293733431819) +station = ('kprg', 0.0035111657622945531) +zone = ('inz043', 0.0022044000985735101) + +[61871] +centroid = (0.70145170100746046, -1.5353319694326577) +station = ('ktip', 0.002942470881811455) +zone = ('ilz046', 0.0031373541997666296) + +[61872] +centroid = (0.69717833214712244, -1.5424890061897258) +station = ('kcmi', 0.002139498153094662) +zone = ('ilz044', 0.0030663434087836758) + +[61873] +centroid = (0.70046862685298217, -1.5365725494649753) +station = ('ktip', 0.0031094797381650469) +zone = ('ilz045', 0.0021373522707329585) + +[61874] +centroid = (0.69893029365027426, -1.5404178937795543) +station = ('kcmi', 0.00023732626611891022) +zone = ('ilz045', 0.0018331633655699123) + +[61875] +centroid = (0.69993785477415815, -1.5431576418261648) +station = ('kcmi', 0.0023451813326708188) +zone = ('ilz045', 0.0029699461310508778) + +[61876] +centroid = (0.69643466480614014, -1.5330889944510422) +station = ('kprg', 0.0042040637366604289) +zone = ('ilz057', 0.004110237111227758) + +[61877] +centroid = (0.69794306561217634, -1.5373139478779301) +station = ('kcmi', 0.0025911016927918861) +zone = ('ilz045', 0.0030660009431570396) + +[61878] +centroid = (0.70236675968098861, -1.5384283755119135) +station = ('ktip', 0.00089029071181478958) +zone = ('ilz045', 0.0019274721101276906) + +[61880] +centroid = (0.6976743372672467, -1.5402339709829791) +station = ('kcmi', 0.0010659236439501554) +zone = ('ilz045', 0.0029778518613868864) + +[61882] +centroid = (0.69998576406212532, -1.5490622477652942) +station = ('kdec', 0.0049927395093144937) +zone = ('ilz043', 0.0023229026086245253) + +[61883] +centroid = (0.69878433176493004, -1.5296331378123385) +station = ('kdnv', 0.0028941079164396897) +zone = ('ilz046', 0.0028283195268372844) + +[61884] +centroid = (0.69968783635880993, -1.5442291692671342) +station = ('kcmi', 0.0029840613111678182) +zone = ('ilz044', 0.0020445908395401637) + +[61910] +centroid = (0.69246826445464282, -1.5411241936212514) +station = ('kmto', 0.0036723255280965163) +zone = ('ilz055', 0.0019793898222762408) + +[61911] +centroid = (0.69291208423013251, -1.544080955907055) +station = ('kmto', 0.0049141708935837199) +zone = ('ilz054', 0.0022682038965073752) + +[61912] +centroid = (0.68978817176186547, -1.536582812000977) +station = ('kmto', 0.0032054359083738861) +zone = ('ilz056', 0.0024517232770577386) + +[61913] +centroid = (0.69512196776913016, -1.5440245468656302) +station = ('kcmi', 0.0044746500885277608) +zone = ('ilz044', 0.0036033597735056527) + +[61914] +centroid = (0.6916799690446872, -1.5491969871835483) +station = ('kdec', 0.0038090090330934545) +zone = ('ilz054', 0.0019323853438030607) + +[61917] +centroid = (0.69314354979553194, -1.5341047062625326) +station = ('kprg', 0.0030710539240783328) +zone = ('ilz057', 0.0021353227804591555) + +[61919] +centroid = (0.69436945160884034, -1.5382942818654826) +station = ('kcmi', 0.0046742267783870355) +zone = ('ilz055', 0.00109948523721846) + +[61920] +centroid = (0.68961520963299283, -1.5385809172885376) +station = ('kmto', 0.0017094603334999992) +zone = ('ilz056', 0.00092134968785205159) + +[61924] +centroid = (0.69440016940367544, -1.5300117520869736) +station = ('kprg', 0.0015021480050334734) +zone = ('ilz057', 0.0021793271606852078) + +[61925] +centroid = (0.69322915819534237, -1.550559722810213) +station = ('kdec', 0.0020242564327324114) +zone = ('ilz053', 0.0029460640737866486) + +[61928] +centroid = (0.68855361311546726, -1.5446384315234343) +station = ('kmto', 0.0031727455766336668) +zone = ('ilz054', 0.0036804739629816992) + +[61929] +centroid = (0.69507369196202007, -1.546811959854113) +station = ('kdec', 0.0032319159438150605) +zone = ('ilz054', 0.0032018932842348092) + +[61930] +centroid = (0.69256212826181518, -1.5381670124564271) +station = ('kmto', 0.004163626889105319) +zone = ('ilz055', 0.0019373648496279921) + +[61931] +centroid = (0.69091195436063957, -1.5419944671461732) +station = ('kmto', 0.0023694592731359561) +zone = ('ilz056', 0.0020732505910006672) + +[61932] +centroid = (0.69470378688035239, -1.5337787136648453) +station = ('kprg', 0.0033378200085645432) +zone = ('ilz057', 0.0028225347414364476) + +[61933] +centroid = (0.6902200360319789, -1.5346114277042644) +station = ('kprg', 0.0043732448532791297) +zone = ('ilz057', 0.0033515616762761768) + +[61936] +centroid = (0.69466462169193754, -1.5486351656973314) +station = ('kdec', 0.0019119376716828528) +zone = ('ilz054', 0.0031635754434034828) + +[61937] +centroid = (0.69361749395391104, -1.5473185242162117) +station = ('kdec', 0.0032633339595772386) +zone = ('ilz054', 0.0018082409293665369) + +[61938] +centroid = (0.68912826277168637, -1.5424307296460016) +station = ('kmto', 0.0014879889642440069) +zone = ('ilz056', 0.002154044418206027) + +[61940] +centroid = (0.69477545009943931, -1.5327224054949531) +station = ('kprg', 0.002738938532579652) +zone = ('ilz057', 0.0024565957904144802) + +[61941] +centroid = (0.69471202483442185, -1.5371627849114147) +station = ('kcmi', 0.0047682607008137888) +zone = ('ilz055', 0.0020292072763017739) + +[61942] +centroid = (0.69489257914554059, -1.5359456795575364) +station = ('kprg', 0.0048978528141065481) +zone = ('ilz055', 0.0029775244750889812) + +[61943] +centroid = (0.69242627183283989, -1.5364281758292502) +station = ('kmto', 0.0048007463344162523) +zone = ('ilz055', 0.0030169937641001628) + +[61944] +centroid = (0.69116513182193384, -1.5306649764661173) +station = ('kprg', 0.0017844805092013128) +zone = ('ilz057', 0.0014855192265041178) + +[61949] +centroid = (0.69173754745671046, -1.5336844833385301) +station = ('kprg', 0.0029763679134243155) +zone = ('ilz057', 0.0018910676179193595) + +[61951] +centroid = (0.69107627710971486, -1.5461920712636823) +station = ('kdec', 0.0055644376749440635) +zone = ('ilz054', 0.00088767137311986078) + +[61953] +centroid = (0.69470054056794373, -1.5409745665444776) +station = ('kcmi', 0.0040265039131117501) +zone = ('ilz055', 0.0011548259195394779) + +[61955] +centroid = (0.69083922649070895, -1.528762951553879) +station = ('kprg', 0.0023129385698152853) +zone = ('ilz057', 0.0026672197102870234) + +[61956] +centroid = (0.69565664938547866, -1.538246093324835) +station = ('kcmi', 0.0035281205688509187) +zone = ('ilz055', 0.0019016197451164061) + +[61957] +centroid = (0.68836764828366725, -1.5466271643929117) +station = ('kmto', 0.0047191303532665985) +zone = ('ilz061', 0.0027071498988947215) + +[62001] +centroid = (0.67860850014480079, -1.5663457546556037) +station = ('kaln', 0.0041560069902814708) +zone = ('ilz100', 0.0023543250165128054) + +[62002] +centroid = (0.67962304258569262, -1.5729693315267996) +station = ('kaln', 0.0012245752076867919) +zone = ('ilz100', 0.0035420781790396747) + +[62006] +centroid = (0.68160437525914164, -1.5824850585948904) +station = ('kset', 0.0038272602647639476) +zone = ('ilz098', 0.0020273520372387681) + +[62009] +centroid = (0.68227623975469687, -1.5672728211943854) +station = ('k3lf', 0.0020797373085599427) +zone = ('ilz059', 0.0034155414785004743) + +[62010] +centroid = (0.67930164020393791, -1.5715870482125127) +station = ('kaln', 0.00037403605048954295) +zone = ('ilz100', 0.0024826973954602846) + +[62011] +centroid = (0.68288644176777913, -1.5571129629125537) +station = ('ktaz', 0.0072731946192072716) +zone = ('ilz065', 0.003408210005516916) + +[62012] +centroid = (0.68145942566476347, -1.5733829047463523) +station = ('kaln', 0.0028562088918132559) +zone = ('ilz099', 0.0029126923058696206) + +[62013] +centroid = (0.67991767161672167, -1.580808338235792) +station = ('kset', 0.0019467785170606306) +zone = ('moz061', 0.0033438670425731429) + +[62014] +centroid = (0.68143546229413365, -1.569943419296032) +station = ('kaln', 0.0028393126841878224) +zone = ('ilz100', 0.0037779037107878929) + +[62015] +centroid = (0.68454345735962252, -1.5628382886309182) +station = ('k3lf', 0.0020445760788091131) +zone = ('ilz060', 0.00089631500284787955) + +[62016] +centroid = (0.68582756590348481, -1.5783320825463549) +station = ('kset', 0.006312746094981502) +zone = ('ilz058', 0.0012043301044683675) + +[62017] +centroid = (0.68181460016754425, -1.5597766495103622) +station = ('k3lf', 0.0044749498378877824) +zone = ('ilz064', 0.0032418986537539303) + +[62018] +centroid = (0.67906884818830682, -1.5722156285426185) +station = ('kaln', 0.0004465341140250457) +zone = ('ilz100', 0.0027535056662109443) + +[62019] +centroid = (0.68097970446656031, -1.5610644057923613) +station = ('k3lf', 0.0040350639074527355) +zone = ('ilz064', 0.002278879790402197) + +[62021] +centroid = (0.68041428760208422, -1.5703028873087728) +station = ('kaln', 0.0018228929433427069) +zone = ('ilz100', 0.0028520473433071665) + +[62022] +centroid = (0.6807335955887367, -1.5764893290155142) +station = ('kset', 0.0018972088107963082) +zone = ('ilz099', 0.001496717814935158) + +[62023] +centroid = (0.68263829085473049, -1.5670798052324073) +station = ('k3lf', 0.0017559941133292762) +zone = ('ilz059', 0.0031918895694318917) + +[62024] +centroid = (0.67850824843256619, -1.5720767526940371) +station = ('kaln', 0.00053030046484604267) +zone = ('ilz100', 0.0024224553781292749) + +[62025] +centroid = (0.6777356260792935, -1.569615192676902) +station = ('kaln', 0.0019977733855305558) +zone = ('ilz100', 0.00037108268259300757) + +[62027] +centroid = (0.68503478499735149, -1.5806179053611069) +station = ('kset', 0.0057915681587755834) +zone = ('ilz098', 0.0019941142553466171) + +[62028] +centroid = (0.67994938424923046, -1.5769914776946057) +station = ('kset', 0.0011492212007398984) +zone = ('ilz099', 0.0022231376339474631) + +[62030] +centroid = (0.68337705382051461, -1.5736628381050795) +station = ('kaln', 0.0047061690532254393) +zone = ('ilz099', 0.0028697800709488333) + +[62031] +centroid = (0.68262438058059216, -1.5801675231476298) +station = ('kset', 0.003412090978067456) +zone = ('ilz098', 0.0020342959140123543) + +[62032] +centroid = (0.68269668957150231, -1.5583785535130523) +station = ('k3lf', 0.0052872525421181699) +zone = ('ilz060', 0.0032695144279764345) + +[62033] +centroid = (0.68306195207735965, -1.5680017928630658) +station = ('k3lf', 0.0022835790575778353) +zone = ('ilz059', 0.0024542355181347399) + +[62034] +centroid = (0.67640010013566731, -1.5703125913394138) +station = ('kaln', 0.0027445523508631653) +zone = ('ilz100', 0.0015968956425425147) + +[62035] +centroid = (0.68006590243009357, -1.5749862165571118) +station = ('kaln', 0.002818135921989485) +zone = ('ilz099', 0.0026332746275805653) + +[62036] +centroid = (0.67925266626512693, -1.5810891442591455) +station = ('kset', 0.0021397401832588779) +zone = ('moz061', 0.0026491137104059795) + +[62037] +centroid = (0.68085999233316608, -1.5789233128304681) +station = ('kset', 0.0014147751210642852) +zone = ('ilz099', 0.0019766051613763786) + +[62040] +centroid = (0.67589337869393584, -1.5727474478189936) +station = ('kcps', 0.0028264662051247142) +zone = ('moz064', 0.0024007246639367583) + +[62044] +centroid = (0.68701486103373899, -1.5746631037526899) +station = ('kijx', 0.0071789751271546633) +zone = ('ilz058', 0.0022830378873619677) + +[62045] +centroid = (0.68528946344180253, -1.5828414897347325) +station = ('kppq', 0.006646796663005286) +zone = ('ilz098', 0.001685978118062387) + +[62046] +centroid = (0.6787556488540365, -1.5681115042598461) +station = ('kaln', 0.0027744668375096699) +zone = ('ilz100', 0.0013174288640768928) + +[62047] +centroid = (0.68282069521485644, -1.5817255611175927) +station = ('kset', 0.004215032289402394) +zone = ('ilz098', 0.00098485420448434619) + +[62048] +centroid = (0.67721143389174943, -1.5723970380650707) +station = ('kaln', 0.0018126058963136666) +zone = ('ilz100', 0.0025862025041121935) + +[62049] +centroid = (0.68297730360863795, -1.5617447351347886) +station = ('k3lf', 0.0026668893112789787) +zone = ('ilz060', 0.0017331405580752975) + +[62050] +centroid = (0.68835815369253639, -1.5803034842963601) +station = ('kppq', 0.004683448202629243) +zone = ('ilz058', 0.0025429015409577853) + +[62051] +centroid = (0.68419786471443511, -1.5603815108159333) +station = ('k3lf', 0.0037325803921716642) +zone = ('ilz060', 0.0011437424381129195) + +[62052] +centroid = (0.68260823628501122, -1.5764026210582753) +station = ('kset', 0.0034467592181368313) +zone = ('ilz099', 0.00064779234545475422) + +[62053] +centroid = (0.68625044172795047, -1.5824100967035173) +station = ('kppq', 0.0057823375812975667) +zone = ('ilz098', 0.0026190872619836643) + +[62054] +centroid = (0.68424486643119131, -1.5767204455150634) +station = ('kset', 0.0048981839843308455) +zone = ('ilz099', 0.0020854518023743357) + +[62056] +centroid = (0.68381052379354001, -1.5650711232495795) +station = ('k3lf', 0.00030266125013035373) +zone = ('ilz060', 0.0027617617636301285) + +[62058] +centroid = (0.68017432228322749, -1.5667745820528185) +station = ('k3lf', 0.0035758273933907485) +zone = ('ilz100', 0.0030762990807701993) + +[62059] +centroid = (0.67468299285767785, -1.5736769229121432) +station = ('kcps', 0.0015810501786797612) +zone = ('moz064', 0.0011481338799493052) + +[62060] +centroid = (0.67512662064694962, -1.5732821817952196) +station = ('kcps', 0.0020139534021764603) +zone = ('moz064', 0.0016129959362586412) + +[62061] +centroid = (0.67700565957293923, -1.5669407723041935) +station = ('kaln', 0.0041564648106358227) +zone = ('ilz100', 0.0018526613801857468) + +[62062] +centroid = (0.67589500185014029, -1.5701211461737625) +station = ('kaln', 0.0032687194076453123) +zone = ('ilz100', 0.0019692155867771645) + +[62063] +centroid = (0.68414152548618068, -1.5734102016958535) +station = ('kaln', 0.0053811184528978649) +zone = ('ilz059', 0.0032366759157980264) + +[62065] +centroid = (0.68462442318362249, -1.5818391471453124) +station = ('kset', 0.0057796322435221493) +zone = ('ilz098', 0.0010987959802122753) + +[62067] +centroid = (0.67944973139096965, -1.5704830925540409) +station = ('kaln', 0.0010575213848949829) +zone = ('ilz100', 0.0020300753685131671) + +[62069] +centroid = (0.68223360136107059, -1.5662462185283623) +station = ('k3lf', 0.0015490406109358512) +zone = ('ilz059', 0.003908065507649783) + +[62070] +centroid = (0.68586025592037458, -1.5835807413927074) +station = ('kppq', 0.0060007368479457176) +zone = ('ilz098', 0.0023956905533980806) + +[62074] +centroid = (0.67989301011439107, -1.5653813031642438) +station = ('k3lf', 0.0036226472696930276) +zone = ('ilz100', 0.003650450945705562) + +[62075] +centroid = (0.68595387538145158, -1.558513484917524) +station = ('ktaz', 0.0040697689545550822) +zone = ('ilz060', 0.0027637956096650779) + +[62076] +centroid = (0.68667138023694652, -1.5571676789846036) +station = ('ktaz', 0.0036377679596654271) +zone = ('ilz052', 0.0036189638226697134) + +[62077] +centroid = (0.68118778261998303, -1.5624614720454126) +station = ('k3lf', 0.0031032652918001591) +zone = ('ilz064', 0.0027504457313749734) + +[62078] +centroid = (0.68903207767660901, -1.5792800057696981) +station = ('kppq', 0.0048258214048146134) +zone = ('ilz058', 0.0024953475753144334) + +[62079] +centroid = (0.6826069796479497, -1.573306965470598) +station = ('kaln', 0.0038881471865498669) +zone = ('ilz099', 0.0029142817744889624) + +[62080] +centroid = (0.68308535694262895, -1.5551620164213817) +station = ('ktaz', 0.0075457599096993176) +zone = ('ilz065', 0.0026367291119998837) + +[62081] +centroid = (0.68530225670521949, -1.5747233176118838) +station = ('kset', 0.0064386805401745878) +zone = ('ilz058', 0.0027445468727763213) + +[62082] +centroid = (0.68923032962634301, -1.5763378867963189) +station = ('kijx', 0.0050719477303789199) +zone = ('ilz058', 0.002533958738807456) + +[62083] +centroid = (0.68686474526477492, -1.5568586858938305) +station = ('ktaz', 0.0035690817365526626) +zone = ('ilz052', 0.0034926854646832599) + +[62084] +centroid = (0.67785739770120512, -1.5719075430230565) +station = ('kaln', 0.001091598169583455) +zone = ('ilz100', 0.0021608704804695405) + +[62085] +centroid = (0.68210772821541676, -1.5673842081072478) +station = ('k3lf', 0.002250929048426479) +zone = ('ilz059', 0.0035219043988052819) + +[62086] +centroid = (0.68034279891592253, -1.5634630990498397) +station = ('k3lf', 0.0034165395206272862) +zone = ('ilz064', 0.0025543259038068168) + +[62087] +centroid = (0.6774847000927342, -1.5719393080154427) +station = ('kaln', 0.0014635947591612013) +zone = ('ilz100', 0.0021924470353297532) + +[62088] +centroid = (0.68089535270381141, -1.5673024568850844) +station = ('k3lf', 0.0031176117466229819) +zone = ('ilz100', 0.0034918267779467014) + +[62089] +centroid = (0.68294009318898541, -1.5619848749865706) +station = ('k3lf', 0.0024929553622717823) +zone = ('ilz060', 0.0017836116603773676) + +[62090] +centroid = (0.67492503511834434, -1.5737569288050546) +station = ('kcps', 0.0018294106383624849) +zone = ('moz064', 0.0011912521807128616) + +[62091] +centroid = (0.68166008616886531, -1.5639994387289775) +station = ('k3lf', 0.0020419370052830433) +zone = ('ilz060', 0.003532587098639994) + +[62092] +centroid = (0.68798386783444621, -1.5783226403151016) +station = ('kppq', 0.0060514439094878567) +zone = ('ilz058', 0.0012193603923145147) + +[62093] +centroid = (0.68183662622270447, -1.5682467847301682) +station = ('k3lf', 0.0029506502601981169) +zone = ('ilz059', 0.0035284316943367056) + +[62094] +centroid = (0.68496404680276801, -1.5594494177289058) +station = ('ktaz', 0.0050461351341240315) +zone = ('ilz060', 0.0017626091389135823) + +[62095] +centroid = (0.67825838709685071, -1.5720006388853576) +station = ('kaln', 0.00072240036490032046) +zone = ('ilz100', 0.0022945607481769056) + +[62097] +centroid = (0.67957284691640518, -1.568224182716355) +station = ('kaln', 0.0027555048823057655) +zone = ('ilz100', 0.0019949707209335281) + +[62098] +centroid = (0.68741708961315351, -1.5761129836689067) +station = ('kijx', 0.006831034831850556) +zone = ('ilz058', 0.0012707734913552939) + +[62201] +centroid = (0.6744721047241593, -1.573240067000369) +station = ('kcps', 0.0013636061179854938) +zone = ('moz064', 0.0014390507500676246) + +[62203] +centroid = (0.67369630587164786, -1.5721461120785114) +station = ('kcps', 0.0011490639068355364) +zone = ('moz064', 0.0023704184188612387) + +[62204] +centroid = (0.67428605262589669, -1.5723700203682498) +station = ('kcps', 0.0014271337508042431) +zone = ('moz064', 0.0021112329284670673) + +[62205] +centroid = (0.67386738304492833, -1.5729396434762233) +station = ('kcps', 0.00083861221737062354) +zone = ('moz064', 0.0017271347372148885) + +[62206] +centroid = (0.67321436810529456, -1.5737049528999301) +station = ('kcps', 0.00024788244381022457) +zone = ('moz064', 0.0015390274662341553) + +[62207] +centroid = (0.67339106523876646, -1.5729473927381021) +station = ('kcps', 0.00045748735006131307) +zone = ('moz064', 0.0019036253485640088) + +[62208] +centroid = (0.67361120361732052, -1.570886001811864) +station = ('kcps', 0.0020377184418316099) +zone = ('ilz101', 0.0024167118380309439) + +[62214] +centroid = (0.66979467468869203, -1.5638783477854741) +station = ('ksar', 0.0041788450776526426) +zone = ('ilz074', 0.0026764868224525918) + +[62215] +centroid = (0.67209681633195006, -1.5639690699999929) +station = ('kblv', 0.0033722989114239855) +zone = ('ilz069', 0.0030676972354754992) + +[62216] +centroid = (0.67402201921665494, -1.5638462162739448) +station = ('kblv', 0.0035919037208688056) +zone = ('ilz069', 0.0024555663251627194) + +[62217] +centroid = (0.66629110074823861, -1.5682395416137724) +station = ('ksar', 0.0021763973586202646) +zone = ('ilz079', 0.0021911754164557393) + +[62218] +centroid = (0.67233906803212695, -1.5616121948313921) +station = ('kenl', 0.0052121318260807204) +zone = ('ilz069', 0.0016300381609546609) + +[62219] +centroid = (0.67379807602033159, -1.5608810938610242) +station = ('kenl', 0.0049006735162917241) +zone = ('ilz069', 0.00013015421621052784) + +[62220] +centroid = (0.67157262414440611, -1.5707619787152172) +station = ('kblv', 0.0023777750773884524) +zone = ('ilz101', 0.00096158146443210853) + +[62221] +centroid = (0.67216313884352585, -1.5691433080070403) +station = ('kblv', 0.0010035600193749308) +zone = ('ilz101', 0.00079510694883066309) + +[62223] +centroid = (0.67257933005695658, -1.5718340472082548) +station = ('kcps', 0.0013470757635022591) +zone = ('ilz101', 0.0021254186468716548) + +[62225] +centroid = (0.67270162527764366, -1.5682152291772922) +station = ('kblv', 0.0001261462763317698) +zone = ('ilz101', 0.0016413272661576371) + +[62226] +centroid = (0.67256479146428738, -1.5707891360383783) +station = ('kcps', 0.0021255685312012683) +zone = ('ilz101', 0.0014917999565347559) + +[62230] +centroid = (0.67430937022470328, -1.5626109769491385) +station = ('kblv', 0.0045978459595490363) +zone = ('ilz069', 0.0015628253569024916) + +[62231] +centroid = (0.67391103372952066, -1.5589165163483945) +station = ('kenl', 0.0035361618859879105) +zone = ('ilz069', 0.0014091943708997422) + +[62232] +centroid = (0.67424686998418948, -1.570795070157835) +station = ('kcps', 0.0023389575061862279) +zone = ('ilz101', 0.0029780547010869181) + +[62233] +centroid = (0.66221722302140362, -1.567105845544847) +station = ('ksar', 0.0038124803456665319) +zone = ('ilz079', 0.0019827161449132635) + +[62234] +centroid = (0.67514946700685818, -1.5704831798205037) +station = ('kblv', 0.0029409070085522414) +zone = ('ilz100', 0.0027661141698629818) + +[62236] +centroid = (0.67085059888614862, -1.5745768146744714) +station = ('kcps', 0.0024406128296013299) +zone = ('ilz102', 0.0028163283470640185) + +[62237] +centroid = (0.66648401199046159, -1.5632647074737656) +station = ('ksar', 0.001903940296990318) +zone = ('ilz080', 0.0032967627037111418) + +[62238] +centroid = (0.6638980449042442, -1.562633352070149) +station = ('ksar', 0.0029878095165783184) +zone = ('ilz080', 0.0024035269509188684) + +[62239] +centroid = (0.67256569903549845, -1.5736145273913844) +station = ('kcps', 0.00057148273672036874) +zone = ('moz064', 0.0020935468680484837) + +[62240] +centroid = (0.67198417278202638, -1.5738778277623402) +station = ('kcps', 0.0011878302355771884) +zone = ('moz064', 0.0025174126091808123) + +[62241] +centroid = (0.66342218088368787, -1.5689405705611288) +station = ('ksar', 0.0035984500862241094) +zone = ('ilz079', 0.001179327939165014) + +[62242] +centroid = (0.66493820877855525, -1.5698690508166047) +station = ('ksar', 0.0035217949000343287) +zone = ('ilz079', 0.0018536320222748825) + +[62243] +centroid = (0.67055775009095653, -1.5688675285319327) +station = ('kblv', 0.0023299920562222911) +zone = ('ilz101', 0.0010245417839256936) + +[62244] +centroid = (0.66664060293095051, -1.5742656050155484) +station = ('kcps', 0.0065090095598788174) +zone = ('ilz102', 0.0014746611025963732) + +[62245] +centroid = (0.67274307684737855, -1.5631660265578577) +station = ('kblv', 0.0039209168837734103) +zone = ('ilz069', 0.0021932314682015851) + +[62246] +centroid = (0.67876489909907201, -1.5608042644673514) +station = ('k3lf', 0.0058072628626672628) +zone = ('ilz064', 0.00012643923905777772) + +[62248] +centroid = (0.66851412661650378, -1.5707334949418248) +station = ('kblv', 0.0047524295222031573) +zone = ('ilz102', 0.0025161744789342017) + +[62249] +centroid = (0.67639460234852355, -1.5649892324010759) +station = ('kblv', 0.0043530308536214998) +zone = ('ilz100', 0.0034922494218564393) + +[62250] +centroid = (0.67266376908616798, -1.5579875299474353) +station = ('kenl', 0.002417448330052942) +zone = ('ilz069', 0.0024213705327913826) + +[62253] +centroid = (0.67679908240267328, -1.5585804532009231) +station = ('kenl', 0.0053944056878000969) +zone = ('ilz064', 0.0026492418071539211) + +[62254] +centroid = (0.67385490394077652, -1.5677114224354116) +station = ('kblv', 0.0010932115464715685) +zone = ('ilz101', 0.0028150152822137391) + +[62255] +centroid = (0.66869155678826153, -1.5670110741664638) +station = ('ksar', 0.0030930429729083544) +zone = ('ilz101', 0.0033863374661609025) + +[62257] +centroid = (0.66819710501117158, -1.5660614056138686) +station = ('ksar', 0.0024090056648207814) +zone = ('ilz101', 0.0042354031079780089) + +[62258] +centroid = (0.67126928592040958, -1.5669929227422432) +station = ('kblv', 0.0018107956454941172) +zone = ('ilz101', 0.0020062617393229024) + +[62260] +centroid = (0.67126502731703463, -1.5725538733516549) +station = ('kcps', 0.0019689717718170481) +zone = ('ilz101', 0.0023606005533609821) + +[62261] +centroid = (0.66318286133665449, -1.5708032033921495) +station = ('ksar', 0.0049159538820322058) +zone = ('ilz079', 0.0025885648932648725) + +[62262] +centroid = (0.6796430440589204, -1.5582773418697291) +station = ('k3lf', 0.0065682087957268627) +zone = ('ilz064', 0.0022792422891388451) + +[62263] +centroid = (0.66892255111476295, -1.5605091467441319) +station = ('ksar', 0.0050192375871953854) +zone = ('ilz074', 0.00044961588264625155) + +[62264] +centroid = (0.66878927777308073, -1.5691126600253751) +station = ('ksar', 0.0040849756629946143) +zone = ('ilz101', 0.0026659116692398619) + +[62265] +centroid = (0.67194764304078214, -1.5650962036309306) +station = ('kblv', 0.0025657261467418226) +zone = ('ilz101', 0.0035214449069168284) + +[62266] +centroid = (0.67171937142791383, -1.5651601175881389) +station = ('kblv', 0.0026072444402908805) +zone = ('ilz101', 0.0034458631369173164) + +[62268] +centroid = (0.6680364823601106, -1.5625969968618301) +station = ('ksar', 0.0031983273411981335) +zone = ('ilz074', 0.0021146236737306858) + +[62269] +centroid = (0.67369829554699501, -1.5693211570578185) +station = ('kblv', 0.0012497605576307835) +zone = ('ilz101', 0.0022717555443777081) + +[62271] +centroid = (0.67108131395996973, -1.5624035271142462) +station = ('kblv', 0.0048439071742598459) +zone = ('ilz074', 0.0022646784859861441) + +[62272] +centroid = (0.66299235864879924, -1.5637786371253077) +station = ('ksar', 0.0031513463884399453) +zone = ('ilz079', 0.0033285362731718107) + +[62273] +centroid = (0.67695727904607395, -1.5635332438324772) +station = ('kblv', 0.0054985331391065552) +zone = ('ilz064', 0.0026662464041147258) + +[62274] +centroid = (0.66497096860861515, -1.5605682261393117) +station = ('ksar', 0.0040000354275931994) +zone = ('ilz080', 0.00070341127712219881) + +[62275] +centroid = (0.6773599788643867, -1.562962381540735) +station = ('kblv', 0.0060951560431541036) +zone = ('ilz064', 0.0020663325921166991) + +[62277] +centroid = (0.66492000499445691, -1.5727565235311041) +station = ('ksar', 0.0057516516057794188) +zone = ('ilz102', 0.0032893594927345588) + +[62278] +centroid = (0.66684714519463151, -1.570667137523664) +station = ('ksar', 0.0041612810657527524) +zone = ('ilz102', 0.0028198481659218724) + +[62279] +centroid = (0.66585810201411133, -1.5731660999466694) +station = ('ksar', 0.0060003080302386148) +zone = ('ilz102', 0.0022997100021480395) + +[62280] +centroid = (0.66054840900381662, -1.5646525583883664) +station = ('ksar', 0.0053210572739801516) +zone = ('moz076', 0.0034428932633368669) + +[62281] +centroid = (0.67556286569348567, -1.5669450483608607) +station = ('kblv', 0.0029029798712547068) +zone = ('ilz100', 0.0027454110070717313) + +[62282] +centroid = (0.6695618303131835, -1.5658763134466946) +station = ('kblv', 0.0037274830767479753) +zone = ('ilz101', 0.0034311543337796121) + +[62284] +centroid = (0.67860609159043306, -1.5588231586867052) +station = ('kslo', 0.006323816069770281) +zone = ('ilz064', 0.0016550373216207464) + +[62285] +centroid = (0.67002757142407821, -1.5709761131611446) +station = ('kblv', 0.0035525478226395958) +zone = ('ilz101', 0.0017972913197277657) + +[62286] +centroid = (0.66529490171778527, -1.565836519939749) +station = ('ksar', 0.0005792105247387063) +zone = ('ilz079', 0.0018995888146725449) + +[62288] +centroid = (0.66302600859677763, -1.5653380189987947) +station = ('ksar', 0.0028020511669816831) +zone = ('ilz079', 0.0021979224713908042) + +[62289] +centroid = (0.67364317804921703, -1.5664586949115002) +station = ('kblv', 0.0015741166640211011) +zone = ('ilz101', 0.0032738330809114423) + +[62292] +centroid = (0.66691322336011194, -1.5651524381394302) +station = ('ksar', 0.0011304764679648874) +zone = ('ilz079', 0.0034478344318219765) + +[62293] +centroid = (0.67403336385679291, -1.5655114349132728) +station = ('kblv', 0.0024098597015333092) +zone = ('ilz101', 0.0040890598330374905) + +[62294] +centroid = (0.67548416879751327, -1.5685010792021838) +station = ('kblv', 0.0026716667398716588) +zone = ('ilz100', 0.0022805131791210765) + +[62295] +centroid = (0.6681797215318217, -1.5764452943584863) +station = ('kcps', 0.0054770803345848386) +zone = ('ilz102', 0.0020060568805650636) + +[62297] +centroid = (0.66413479881727722, -1.5674161825391442) +station = ('ksar', 0.0022452940338893979) +zone = ('ilz079', 0.00026068893113306949) + +[62298] +centroid = (0.6686675934176316, -1.5734116677724252) +station = ('kcps', 0.0044477219202634713) +zone = ('ilz102', 0.0006934330764794001) + +[62301] +centroid = (0.69692983216822346, -1.5949812669733194) +station = ('kuin', 0.0024854988000410781) +zone = ('ilz095', 0.0028160795508428106) + +[62305] +centroid = (0.69687865911455504, -1.5942504976155094) +station = ('kuin', 0.0019269670098974077) +zone = ('ilz095', 0.0023225497964879213) + +[62311] +centroid = (0.70179422187316443, -1.5870434571753715) +station = ('kuin', 0.0060174049661331505) +zone = ('ilz040', 0.0043068768136511979) + +[62312] +centroid = (0.69302404710164789, -1.5886726347656457) +station = ('kppq', 0.0035128898854176155) +zone = ('ilz097', 0.0023722847482541692) + +[62313] +centroid = (0.70367706561692334, -1.5922340140109252) +station = ('keok', 0.0037664943724673404) +zone = ('ilz034', 0.0017224276677156071) + +[62314] +centroid = (0.69408232749359478, -1.586359392828345) +station = ('kppq', 0.0027192215801465796) +zone = ('ilz097', 0.0025402791935989137) + +[62316] +centroid = (0.70224149740057296, -1.5891750801507101) +station = ('kuin', 0.0056267290344162828) +zone = ('ilz034', 0.0032907608004689053) + +[62319] +centroid = (0.70079301374775782, -1.5835596403620509) +station = ('kmqb', 0.0065042532397331957) +zone = ('ilz040', 0.0015528317661789735) + +[62320] +centroid = (0.69866187946461011, -1.589695083548049) +station = ('kuin', 0.0023075112072295572) +zone = ('ilz095', 0.0015974663825431966) + +[62321] +centroid = (0.70531247403262709, -1.5900918317936126) +station = ('kfsw', 0.0053826461861180277) +zone = ('ilz034', 0.00079756936167987445) + +[62323] +centroid = (0.69459859588633466, -1.582793632806643) +station = ('kppq', 0.0030266230015142627) +zone = ('ilz096', 0.0029880233275686352) + +[62324] +centroid = (0.69810162877472004, -1.5876619320491083) +station = ('kuin', 0.0033249261132286905) +zone = ('ilz095', 0.0029776982041548015) + +[62325] +centroid = (0.69892798981566162, -1.5910778555545266) +station = ('kuin', 0.0020244899356192062) +zone = ('ilz095', 0.0010698157529216378) + +[62326] +centroid = (0.70540511610932288, -1.58491769850632) +station = ('kmqb', 0.0027548149344323153) +zone = ('ilz035', 0.0018727476979627678) + +[62330] +centroid = (0.7081051579154507, -1.5904449642611684) +station = ('kfsw', 0.0032129198748595991) +zone = ('ilz034', 0.0029727885134180686) + +[62334] +centroid = (0.70491834378094176, -1.5923274763923694) +station = ('keok', 0.0029805081743746464) +zone = ('ilz034', 0.00095237478137857813) + +[62336] +centroid = (0.70630097616107912, -1.5912408518533703) +station = ('kfsw', 0.0040773955125323691) +zone = ('ilz034', 0.0011268858148295105) + +[62338] +centroid = (0.69792180750188704, -1.5924043232393348) +station = ('kuin', 0.0010809849306762985) +zone = ('ilz095', 0.00066123050659773757) + +[62339] +centroid = (0.70037563571043593, -1.5889160383831289) +station = ('kuin', 0.0040357670044112283) +zone = ('ilz095', 0.003173910426181805) + +[62340] +centroid = (0.69350256402266719, -1.5835065998060827) +station = ('kppq', 0.0018036038713042002) +zone = ('ilz097', 0.0028891426452050321) + +[62341] +centroid = (0.70557746737295735, -1.5934112211381029) +station = ('keok', 0.0019567117515584638) +zone = ('ilz034', 0.0017866037309048578) + +[62343] +centroid = (0.69285852007538873, -1.5925408428934258) +station = ('kuin', 0.0041553782078652783) +zone = ('moz035', 0.0047555872451497151) + +[62344] +centroid = (0.70107945718459519, -1.585301775661514) +station = ('kuin', 0.0064181527245060358) +zone = ('ilz040', 0.0028872749395350314) + +[62345] +centroid = (0.69297109381214239, -1.5904718597849417) +station = ('kuin', 0.0041140706493345627) +zone = ('ilz097', 0.0035392095060040106) + +[62346] +centroid = (0.70076058553025578, -1.5873988934775403) +station = ('kuin', 0.0050427343295777098) +zone = ('ilz096', 0.0042497960275990005) + +[62347] +centroid = (0.69586439592634353, -1.5898021769509514) +station = ('kuin', 0.0018517182492316555) +zone = ('ilz095', 0.0024492949046165283) + +[62348] +centroid = (0.70140518798289475, -1.5946605976298505) +station = ('keok', 0.0049499319151733428) +zone = ('ilz095', 0.0042249485059172309) + +[62349] +centroid = (0.70110558476349749, -1.5915675949426362) +station = ('kuin', 0.004139547721891873) +zone = ('ilz095', 0.0031868775963753656) + +[62351] +centroid = (0.70011453445433758, -1.5929422337147996) +station = ('kuin', 0.0032782535667424677) +zone = ('ilz095', 0.0024436365509301898) + +[62352] +centroid = (0.69053161221004489, -1.582142991514792) +station = ('kppq', 0.0021578872517183574) +zone = ('ilz049', 0.0027380316162270747) + +[62353] +centroid = (0.69756872739420861, -1.5839972118588184) +station = ('kppq', 0.0057471648342677711) +zone = ('ilz096', 0.0001307979317951605) + +[62354] +centroid = (0.70731806678267872, -1.5941416937899402) +station = ('keok', 0.0016429973779185036) +zone = ('iaz099', 0.0027564695367002) + +[62355] +centroid = (0.68787344085267255, -1.5843858792299448) +station = ('kppq', 0.0039556840261389054) +zone = ('ilz097', 0.0039456363673882628) + +[62356] +centroid = (0.69097026581094867, -1.589587798158929) +station = ('kppq', 0.0041021425485411982) +zone = ('ilz097', 0.0026232012750793368) + +[62357] +centroid = (0.6926875127152784, -1.585932275853797) +station = ('kppq', 0.0014708026546200583) +zone = ('ilz097', 0.0011727789365369432) + +[62358] +centroid = (0.70838699368306268, -1.5926735053698697) +station = ('kfsw', 0.0017390244717035764) +zone = ('ilz034', 0.0034188273412526092) + +[62359] +centroid = (0.69872301834830752, -1.5917656723594449) +station = ('kuin', 0.0017549782571332794) +zone = ('ilz095', 0.00082240182440960975) + +[62360] +centroid = (0.69492488518999496, -1.5928473750699534) +station = ('kuin', 0.0022128732206243319) +zone = ('ilz095', 0.0031570915039047464) + +[62361] +centroid = (0.68906092796914442, -1.5820618511578668) +station = ('kppq', 0.00329533375114791) +zone = ('ilz049', 0.0036693632353417918) + +[62362] +centroid = (0.69433260770833072, -1.5838361528754443) +station = ('kppq', 0.0025383044753774456) +zone = ('ilz096', 0.0031326841127588107) + +[62363] +centroid = (0.69098450769764497, -1.5842295151822587) +station = ('kppq', 0.00085261838070847589) +zone = ('ilz097', 0.0016648595102725253) + +[62365] +centroid = (0.69457826280054891, -1.5911315767889032) +station = ('kuin', 0.0024351261280118656) +zone = ('ilz095', 0.0033552675662920821) + +[62366] +centroid = (0.68891786333035843, -1.5865360725085242) +station = ('kppq', 0.0033521286349411663) +zone = ('ilz097', 0.0026335167607140606) + +[62367] +centroid = (0.7033556806884611, -1.5860551121265523) +station = ('kmqb', 0.0048537259568392516) +zone = ('ilz035', 0.0037824795301810354) + +[62370] +centroid = (0.68970687432530764, -1.5883757717131739) +station = ('kppq', 0.0037396620020893633) +zone = ('ilz097', 0.002453285735236579) + +[62373] +centroid = (0.70235328573916311, -1.5941719228925846) +station = ('keok', 0.0041177165578373618) +zone = ('ilz034', 0.0036573201625742405) + +[62374] +centroid = (0.7052687709881571, -1.5867148465838061) +station = ('kmqb', 0.0039568275903845542) +zone = ('ilz034', 0.0033587954529467269) + +[62375] +centroid = (0.69824238957889329, -1.5859548604143179) +station = ('kuin', 0.0046133103967293532) +zone = ('ilz096', 0.0017605669188922321) + +[62376] +centroid = (0.70023566030442597, -1.5958398991521305) +station = ('kuin', 0.0045311710973887582) +zone = ('moz019', 0.0038573405192255153) + +[62378] +centroid = (0.6964886303866118, -1.5818753976338762) +station = ('kppq', 0.0050417324875603369) +zone = ('ilz096', 0.0018295767018143571) + +[62379] +centroid = (0.70307965686725815, -1.5952894921192218) +station = ('keok', 0.0032216671450327888) +zone = ('ilz034', 0.0038052683891807325) + +[62380] +centroid = (0.70228959867475793, -1.5915814703101896) +station = ('keok', 0.0051277165041328275) +zone = ('ilz034', 0.0029089659463231434) + +[62401] +centroid = (0.68275049807234123, -1.5457052116688383) +station = ('k1h2', 0.00092821009179895196) +zone = ('ilz066', 0.0010954889586034457) + +[62410] +centroid = (0.67262894976759069, -1.531233430203492) +station = ('kajg', 0.0011830258671822456) +zone = ('ilz078', 0.0022182176043622267) + +[62411] +centroid = (0.68192219971592971, -1.5486943323589739) +station = ('k1h2', 0.002714335318634221) +zone = ('ilz066', 0.0019583982807348742) + +[62413] +centroid = (0.68310090782626409, -1.5330579101370643) +station = ('krsv', 0.0033310611275002857) +zone = ('ilz068', 0.0025996730810520447) + +[62414] +centroid = (0.68372248938606939, -1.5503123747486203) +station = ('k1h2', 0.0043620553868908927) +zone = ('ilz061', 0.003792382291949056) + +[62417] +centroid = (0.67557225556486145, -1.5318122861032084) +station = ('kajg', 0.0018448410591429107) +zone = ('ilz073', 0.00058440776674920634) + +[62418] +centroid = (0.6810667963962348, -1.5528878000461557) +station = ('k1h2', 0.0060312515269135645) +zone = ('ilz065', 0.00078304426788557916) + +[62419] +centroid = (0.67388446981830541, -1.535709484149864) +station = ('koly', 0.0032002628764040723) +zone = ('ilz072', 0.0021991429925925306) + +[62420] +centroid = (0.68568807918966546, -1.5358643472143934) +station = ('kmto', 0.004786878504243296) +zone = ('ilz063', 0.0029592166538240706) + +[62421] +centroid = (0.67637669527039801, -1.5349041543264088) +station = ('kajg', 0.0039147917344718626) +zone = ('ilz072', 0.0020555094444198166) + +[62422] +centroid = (0.68484618471838088, -1.5513053100133722) +station = ('k1h2', 0.0055721996086700023) +zone = ('ilz061', 0.0028580070645968349) + +[62423] +centroid = (0.68875381983396355, -1.5285574390344567) +station = ('kprg', 0.0043192191513904523) +zone = ('inz051', 0.0026198400032342428) + +[62424] +centroid = (0.68052410371861971, -1.5432234756455501) +station = ('k1h2', 0.0020671860880935055) +zone = ('ilz066', 0.0025934305214503116) + +[62425] +centroid = (0.67771298915889511, -1.5374989004187636) +station = ('koly', 0.0022079833163320198) +zone = ('ilz072', 0.0020564816525026467) + +[62426] +centroid = (0.67879872357997573, -1.547479216680443) +station = ('k1h2', 0.00358094381274562) +zone = ('ilz066', 0.0030899252980196804) + +[62427] +centroid = (0.6784640566959057, -1.5297787157252469) +station = ('klwv', 0.0019779384566360279) +zone = ('ilz068', 0.0027087704035011883) + +[62428] +centroid = (0.68526258537132168, -1.5382758337352891) +station = ('kmto', 0.0039690582848177832) +zone = ('ilz062', 0.0014104036344294881) + +[62431] +centroid = (0.68466072603206396, -1.5531465800143487) +station = ('k1h2', 0.0067499904509088415) +zone = ('ilz061', 0.0037695996224797607) + +[62432] +centroid = (0.68304285817534272, -1.5383301134750262) +station = ('k1h2', 0.0054487955407910172) +zone = ('ilz067', 0.0021980908073969733) + +[62433] +centroid = (0.68254140762795223, -1.5309287480759712) +station = ('krsv', 0.0018216209463390758) +zone = ('ilz068', 0.0019085509329754878) + +[62434] +centroid = (0.67792403437204618, -1.5415028777090563) +station = ('koly', 0.0028823395899801518) +zone = ('ilz071', 0.0027599148432807053) + +[62436] +centroid = (0.68381762728359563, -1.5402976755006768) +station = ('k1h2', 0.0042534884055368547) +zone = ('ilz062', 0.0016375638833580762) + +[62438] +centroid = (0.68628290485203758, -1.5510606148522426) +station = ('k1h2', 0.0063059958043538786) +zone = ('ilz061', 0.0014938694456825496) + +[62439] +centroid = (0.67621144749681927, -1.5296013030067819) +station = ('klwv', 0.00066902996346257439) +zone = ('ilz073', 0.0012554773201975612) + +[62440] +centroid = (0.6875810283897934, -1.5405651995684224) +station = ('kmto', 0.0012423581204821876) +zone = ('ilz062', 0.0021668515604562209) + +[62441] +centroid = (0.68761816899627581, -1.5306120755364896) +station = ('kprg', 0.00529571002523612) +zone = ('ilz063', 0.0016532715043789555) + +[62442] +centroid = (0.68611725565273074, -1.5334180064683356) +station = ('krsv', 0.0058842357590697747) +zone = ('ilz063', 0.001026598844501463) + +[62443] +centroid = (0.67988128150181759, -1.5468341429889056) +station = ('k1h2', 0.002393930270026521) +zone = ('ilz066', 0.0019069216316254711) + +[62444] +centroid = (0.68550501160442379, -1.5487929609150042) +station = ('k1h2', 0.0045488032790220664) +zone = ('ilz061', 0.0021900140017054523) + +[62445] +centroid = (0.68363073742729208, -1.5414983223997087) +station = ('k1h2', 0.0033467779748765926) +zone = ('ilz062', 0.0021216567084935121) + +[62446] +centroid = (0.67200328413733579, -1.5396123719698811) +station = ('kfwc', 0.0034851622376582767) +zone = ('ilz077', 0.0026577588272330625) + +[62447] +centroid = (0.68617176228527055, -1.5437136164593874) +station = ('kmto', 0.0036098779165449017) +zone = ('ilz062', 0.0029025476146313021) + +[62448] +centroid = (0.68012611628928743, -1.539017040162026) +station = ('koly', 0.0043008604314148709) +zone = ('ilz067', 0.00080425543227747784) + +[62449] +centroid = (0.6807870201171401, -1.5343949021572618) +station = ('krsv', 0.0035927304235792061) +zone = ('ilz068', 0.0021010900618502475) + +[62450] +centroid = (0.67567248982380346, -1.5374462787418162) +station = ('koly', 0.0011973535657700989) +zone = ('ilz072', 5.8578968351847453e-05) + +[62451] +centroid = (0.68017535202748614, -1.529102522813147) +station = ('krsv', 0.00093896121832585109) +zone = ('ilz068', 0.0020872408673496459) + +[62452] +centroid = (0.67352055121597199, -1.5361542638564423) +station = ('koly', 0.0031845751388367084) +zone = ('ilz072', 0.0023406384217173142) + +[62454] +centroid = (0.68067256142479438, -1.531628555292851) +station = ('krsv', 0.0014667619301429787) +zone = ('ilz068', 7.3770527858106827e-05) + +[62458] +centroid = (0.68111090086643267, -1.5507523198931705) +station = ('k1h2', 0.0043868421039075225) +zone = ('ilz065', 0.0023801731065771353) + +[62459] +centroid = (0.67945706177382792, -1.5363746814876764) +station = ('koly', 0.0041559002092624612) +zone = ('ilz067', 0.0022073612773722156) + +[62460] +centroid = (0.67372723310599314, -1.5309592738845887) +station = ('kajg', 0.00014911429785028865) +zone = ('ilz073', 0.0020679713495981491) + +[62461] +centroid = (0.68411456014923744, -1.5478144246165808) +station = ('k1h2', 0.0029965215528578188) +zone = ('ilz066', 0.0027072096378363154) + +[62462] +centroid = (0.6848146815253825, -1.5439292867950567) +station = ('k1h2', 0.0030669694123056047) +zone = ('ilz066', 0.0035547332655192147) + +[62463] +centroid = (0.68550682674684582, -1.5464555287142705) +station = ('k1h2', 0.0037267265548548865) +zone = ('ilz061', 0.0033598884784388763) + +[62465] +centroid = (0.6867764141513315, -1.5470679298422103) +station = ('k1h2', 0.0050776452647848516) +zone = ('ilz061', 0.0023427362963522802) + +[62466] +centroid = (0.6759382860155897, -1.5333176674896385) +station = ('kajg', 0.0027353458163609651) +zone = ('ilz073', 0.0017223644167977154) + +[62467] +centroid = (0.68296803591030975, -1.5434819589077704) +station = ('k1h2', 0.0017010534130214128) +zone = ('ilz066', 0.002441096075393607) + +[62468] +centroid = (0.68551202782801679, -1.5406075238027832) +station = ('kmto', 0.0033116149435098302) +zone = ('ilz062', 0.00041201910284869155) + +[62469] +centroid = (0.68680863292932337, -1.5417161394903576) +station = ('kmto', 0.0022088538419540848) +zone = ('ilz062', 0.0018583646901062505) + +[62471] +centroid = (0.67973886263485495, -1.5556142312305734) +station = ('kslo', 0.0057563417629632732) +zone = ('ilz065', 0.0017190987635654538) + +[62473] +centroid = (0.68105487579744362, -1.5457995467149086) +station = ('k1h2', 0.00097421653461689966) +zone = ('ilz066', 0.00072987381697436503) + +[62474] +centroid = (0.68807181497545422, -1.5359015227274611) +station = ('kmto', 0.003662948534367925) +zone = ('ilz056', 0.0034230703040449128) + +[62475] +centroid = (0.67875681822463529, -1.5367086502400458) +station = ('koly', 0.0034196208550209598) +zone = ('ilz067', 0.0025491792852934546) + +[62476] +centroid = (0.67256458202477709, -1.5360116006433842) +station = ('koly', 0.0039960341185090878) +zone = ('ilz077', 0.0021643486749456731) + +[62477] +centroid = (0.68475467710569882, -1.529666560867514) +station = ('krsv', 0.0038008775358833622) +zone = ('ilz063', 0.0026165439982777676) + +[62478] +centroid = (0.6838195122391878, -1.5314149968055768) +station = ('krsv', 0.0031343727578160606) +zone = ('ilz063', 0.0027452946348778392) + +[62479] +centroid = (0.68132489568601973, -1.5412461048695032) +station = ('k1h2', 0.0031242360600855562) +zone = ('ilz067', 0.0021288534244864174) + +[62480] +centroid = (0.68063289009089645, -1.5358823241056889) +station = ('krsv', 0.0047557751445117015) +zone = ('ilz067', 0.00210330342727125) + +[62481] +centroid = (0.68289895577851589, -1.536273923629959) +station = ('krsv', 0.0054062222277478375) +zone = ('ilz067', 0.0027157453976361097) + +[62501] +centroid = (0.69711872915316686, -1.5499458730589939) +station = ('kdec', 0.0020660616705858816) +zone = ('ilz053', 0.0025364039345511413) + +[62510] +centroid = (0.6899402597528842, -1.5538477136814599) +station = ('ktaz', 0.0040234725643065322) +zone = ('ilz052', 0.0033536617071257499) + +[62512] +centroid = (0.7006997084459462, -1.5569935474851322) +station = ('kaaa', 0.0016906257370604672) +zone = ('ilz042', 0.0021507332468112812) + +[62513] +centroid = (0.69327940622450723, -1.5559751827731785) +station = ('ktaz', 0.0040502534817998233) +zone = ('ilz053', 0.0034965780119117868) + +[62514] +centroid = (0.69398551407998665, -1.5542277591260818) +station = ('kdec', 0.0027604935611851922) +zone = ('ilz053', 0.0020776922155451736) + +[62515] +centroid = (0.69569550041462802, -1.5599452832226899) +station = ('kspi', 0.0040912234769992038) +zone = ('ilz051', 0.0041638682400706424) + +[62517] +centroid = (0.69100470115709056, -1.5607652563585694) +station = ('ktaz', 0.0016514046787665939) +zone = ('ilz052', 0.0021455309480719019) + +[62518] +centroid = (0.69907754707926506, -1.5566837515429031) +station = ('kaaa', 0.0026448947704571053) +zone = ('ilz042', 0.0026533776728306256) + +[62519] +centroid = (0.69688895655714178, -1.5602426698739373) +station = ('kaaa', 0.0040912023062434546) +zone = ('ilz042', 0.0034357114188447195) + +[62520] +centroid = (0.69495616149019079, -1.5613011247988093) +station = ('kspi', 0.0030978750553086725) +zone = ('ilz051', 0.0029152447805742532) + +[62521] +centroid = (0.69493896999705862, -1.5520570233222062) +station = ('kdec', 0.00084845187981120085) +zone = ('ilz053', 0.00088523832468039867) + +[62522] +centroid = (0.69512245646132076, -1.5541773016574065) +station = ('kdec', 0.0024298278959285196) +zone = ('ilz053', 0.0012842752035890491) + +[62523] +centroid = (0.69541066268070262, -1.5525090461451805) +station = ('kdec', 0.0011617779869693438) +zone = ('ilz053', 0.00030369619271083747) + +[62526] +centroid = (0.69642017857334859, -1.5531593383711808) +station = ('kdec', 0.0020347254433997894) +zone = ('ilz053', 0.00082260267692844794) + +[62530] +centroid = (0.69045724373061745, -1.5651261534808949) +station = ('ktaz', 0.0046968257637401405) +zone = ('ilz051', 0.0034611218828407473) + +[62531] +centroid = (0.69244852478080277, -1.5599326993987832) +station = ('ktaz', 0.002537060436677493) +zone = ('ilz052', 0.0026178992620330115) + +[62532] +centroid = (0.69400146638934979, -1.5531566680174254) +station = ('kdec', 0.0020486218157255969) +zone = ('ilz053', 0.0017252416442394916) + +[62533] +centroid = (0.68847891302348196, -1.5640941228408982) +station = ('ktaz', 0.0041698867476230089) +zone = ('ilz060', 0.0041986070001363866) + +[62534] +centroid = (0.68992313807292227, -1.5498627430267216) +station = ('kdec', 0.0053734776597149092) +zone = ('ilz061', 0.002419650353887786) + +[62535] +centroid = (0.69681846270865377, -1.5528033435636515) +station = ('kdec', 0.0021041706547783191) +zone = ('ilz053', 0.001136271654035789) + +[62536] +centroid = (0.69165785572306437, -1.5647283056779029) +station = ('kspi', 0.0038782395686893789) +zone = ('ilz051', 0.0022553665801465458) + +[62537] +centroid = (0.69557072682640297, -1.5549969082741431) +station = ('kdec', 0.0030763296488186976) +zone = ('ilz053', 0.0017864975941756199) + +[62538] +centroid = (0.68689897117140652, -1.5624172628554596) +station = ('k3lf', 0.0039809534230076538) +zone = ('ilz060', 0.0022578731224952631) + +[62539] +centroid = (0.69579348319883505, -1.5577288896055823) +station = ('kaaa', 0.0052276671617381976) +zone = ('ilz053', 0.0038810635031890244) + +[62540] +centroid = (0.69087038061785699, -1.5606296617289819) +station = ('ktaz', 0.0014874500492881861) +zone = ('ilz052', 0.0020003809256466287) + +[62541] +centroid = (0.69752722346459617, -1.5595415013002412) +station = ('kaaa', 0.003383482204094776) +zone = ('ilz042', 0.0027823924653208698) + +[62543] +centroid = (0.69763292060409687, -1.5560000013551418) +station = ('kaaa', 0.0040784168195471104) +zone = ('ilz053', 0.0032084217782333314) + +[62544] +centroid = (0.69300762355338674, -1.5527817363875118) +station = ('kdec', 0.0025979173199364241) +zone = ('ilz053', 0.0026801364619444871) + +[62545] +centroid = (0.6938856114336025, -1.5601202175736175) +station = ('ktaz', 0.0039684937269828099) +zone = ('ilz051', 0.0036307771219749501) + +[62546] +centroid = (0.68820871860198063, -1.5611258588353238) +station = ('ktaz', 0.0023971841341293215) +zone = ('ilz052', 0.0030234956445951001) + +[62547] +centroid = (0.69412585600513954, -1.5575711467477873) +station = ('ktaz', 0.004281605989702752) +zone = ('ilz052', 0.0039496148993471269) + +[62548] +centroid = (0.69780452137615301, -1.5582917233827656) +station = ('kaaa', 0.0031708557029854608) +zone = ('ilz042', 0.0027407578810894509) + +[62549] +centroid = (0.69413540295614784, -1.5510244516301415) +station = ('kdec', 0.0010874354689616827) +zone = ('ilz053', 0.0020030924674499222) + +[62550] +centroid = (0.69146237884684103, -1.5531620087249365) +station = ('kdec', 0.0041067399541441238) +zone = ('ilz052', 0.0040689622305958252) + +[62551] +centroid = (0.69560750091374246, -1.5561168336952704) +station = ('kdec', 0.0039352577432439145) +zone = ('ilz053', 0.002643594094909722) + +[62553] +centroid = (0.68532564411719621, -1.5552137828869959) +station = ('ktaz', 0.0055419641575626052) +zone = ('ilz065', 0.0047777157774773161) + +[62554] +centroid = (0.69716265909043951, -1.5512881185202401) +station = ('kdec', 0.001951050567752534) +zone = ('ilz053', 0.0018194280028141809) + +[62555] +centroid = (0.68875893364867191, -1.5570163589384556) +station = ('ktaz', 0.0020099239177010092) +zone = ('ilz052', 0.0017027793846817335) + +[62556] +centroid = (0.68896826843915615, -1.5598917365212388) +station = ('ktaz', 0.0012146432121219329) +zone = ('ilz052', 0.0018072991726204714) + +[62557] +centroid = (0.68760507902688595, -1.5551674967552331) +station = ('ktaz', 0.003845815130840367) +zone = ('ilz052', 0.0034892074776000774) + +[62558] +centroid = (0.69091846443874949, -1.5629397795269218) +station = ('ktaz', 0.0031257340005096694) +zone = ('ilz051', 0.0033323023122979797) + +[62560] +centroid = (0.68589048502301919, -1.5638641931652404) +station = ('k3lf', 0.0025701644047625878) +zone = ('ilz060', 0.0020486976876032568) + +[62561] +centroid = (0.69575622041930496, -1.5621030686835156) +station = ('kspi', 0.0024427312229358738) +zone = ('ilz051', 0.0027987181182097362) + +[62563] +centroid = (0.69323193326885302, -1.5620042830478527) +station = ('kspi', 0.0033914951487235604) +zone = ('ilz051', 0.0022862199744591617) + +[62565] +centroid = (0.68786527271177322, -1.5499238470038339) +station = ('k1h2', 0.0069901838938853066) +zone = ('ilz061', 0.00036137884223278404) + +[62567] +centroid = (0.69193949950445865, -1.5566565418598646) +station = ('ktaz', 0.0026828754502683247) +zone = ('ilz052', 0.0020961237669627629) + +[62568] +centroid = (0.6904697751946467, -1.558389793433435) +station = ('ktaz', 0.00069967122866160009) +zone = ('ilz052', 0.00030964426209908796) + +[62570] +centroid = (0.69095108464246924, -1.561162179137058) +station = ('ktaz', 0.0018758754903365402) +zone = ('ilz052', 0.0024150372217359582) + +[62571] +centroid = (0.68732825235422712, -1.5526488295649725) +station = ('ktaz', 0.0056282922616241928) +zone = ('ilz061', 0.0020945726606240059) + +[62572] +centroid = (0.68697794732005935, -1.5655869378567142) +station = ('k3lf', 0.0034874790731010586) +zone = ('ilz059', 0.0034785986796094237) + +[62573] +centroid = (0.69717890810577554, -1.5546368992093342) +station = ('kdec', 0.003397837454211643) +zone = ('ilz053', 0.0021197724075337479) + +[62601] +centroid = (0.69375256498472293, -1.571481455792767) +station = ('kijx', 0.0027102330646566236) +zone = ('ilz050', 0.0022547917634317557) + +[62610] +centroid = (0.69043207608280377, -1.5783860306735342) +station = ('kijx', 0.004590731950603005) +zone = ('ilz049', 0.0015831608702968581) + +[62611] +centroid = (0.69610914344735064, -1.5777458264506101) +station = ('kijx', 0.0028734321523248853) +zone = ('ilz047', 0.0025517556619219588) + +[62612] +centroid = (0.6963173961336987, -1.5718986418438712) +station = ('kijx', 0.0031708798243709935) +zone = ('ilz047', 0.0028127499330444969) + +[62613] +centroid = (0.69808688074254066, -1.5649658973489768) +station = ('kspi', 0.0025836828284970682) +zone = ('ilz048', 0.001895060629885833) + +[62615] +centroid = (0.69088964905279915, -1.5665618264170005) +station = ('kspi', 0.0047297084098645971) +zone = ('ilz051', 0.0032987692262712296) + +[62617] +centroid = (0.70086876103729434, -1.5737614666611097) +station = ('kijx', 0.0067415633342222643) +zone = ('ilz047', 0.0033612466932923259) + +[62618] +centroid = (0.69782797860129986, -1.5778134055992474) +station = ('kijx', 0.0042456579496687932) +zone = ('ilz047', 0.0020742730770788214) + +[62621] +centroid = (0.69336206501788167, -1.5798821618149286) +station = ('kijx', 0.003873223871321886) +zone = ('ilz049', 0.0015665405292068734) + +[62622] +centroid = (0.69775081759506918, -1.576965175582778) +station = ('kijx', 0.0038786828301979734) +zone = ('ilz047', 0.0014206231203594973) + +[62624] +centroid = (0.70086434535428677, -1.5771446477897606) +station = ('kijx', 0.006880840217752429) +zone = ('ilz047', 0.0035513937866852373) + +[62625] +centroid = (0.69656217856129088, -1.5653458031672585) +station = ('kspi', 0.0010501075157032735) +zone = ('ilz048', 0.0025570708187568222) + +[62626] +centroid = (0.68561423430901347, -1.5687706802117394) +station = ('k3lf', 0.0035288029979114507) +zone = ('ilz059', 0.00066607856940869832) + +[62627] +centroid = (0.69916367907785104, -1.5727349861681343) +station = ('kijx', 0.0052583633342727027) +zone = ('ilz047', 0.0023555685855381867) + +[62628] +centroid = (0.6942826040252611, -1.5778334594323526) +station = ('kijx', 0.0022096362492782257) +zone = ('ilz049', 0.0025485114557974912) + +[62629] +centroid = (0.69254277256041052, -1.5657668638493021) +station = ('kspi', 0.0029954367962864745) +zone = ('ilz051', 0.0015421990930884377) + +[62630] +centroid = (0.68513103990559887, -1.5723865137296811) +station = ('kaln', 0.006222939322044767) +zone = ('ilz059', 0.0022552953544950779) + +[62631] +centroid = (0.69511955921476243, -1.5769782655521678) +station = ('kijx', 0.0018072049655001332) +zone = ('ilz050', 0.0028292374712265934) + +[62633] +centroid = (0.70205832509557609, -1.5684627517718102) +station = ('kspi', 0.0069863676122524383) +zone = ('ilz041', 0.0007203157631822944) + +[62634] +centroid = (0.69833763219617473, -1.5612761491372131) +station = ('kaaa', 0.0030188451714770878) +zone = ('ilz042', 0.0022841546840352113) + +[62635] +centroid = (0.70331028467461676, -1.5615714413933581) +station = ('kaaa', 0.0030192166240042189) +zone = ('ilz042', 0.0033090772851419883) + +[62638] +centroid = (0.6913127168634825, -1.5722141624660468) +station = ('kijx', 0.0035702791880650488) +zone = ('ilz050', 0.0024602818252309352) + +[62639] +centroid = (0.69878916632695809, -1.5792788363990993) +station = ('kijx', 0.0056676351437340766) +zone = ('ilz040', 0.0027167737806441969) + +[62640] +centroid = (0.68815295533237941, -1.5673928300337525) +station = ('k3lf', 0.004966784454966784) +zone = ('ilz059', 0.0033345827253603165) + +[62642] +centroid = (0.69975049367895659, -1.5659795147653652) +station = ('kspi', 0.0042715898689728495) +zone = ('ilz048', 0.0015464954917494235) + +[62643] +centroid = (0.70237274616032297, -1.5612267388660892) +station = ('kaaa', 0.0021422616793227646) +zone = ('ilz042', 0.0023525887640255569) + +[62644] +centroid = (0.70315725420580177, -1.5717481944623493) +station = ('kpia', 0.0082448790569959012) +zone = ('ilz041', 0.002018431484537838) + +[62649] +centroid = (0.68691844904585886, -1.5720221937016199) +station = ('k3lf', 0.0063425132192916752) +zone = ('ilz059', 0.0025917062701557988) + +[62650] +centroid = (0.69349858467197267, -1.5746892313315923) +station = ('kijx', 0.0007224249363019426) +zone = ('ilz050', 0.00043926789023671629) + +[62655] +centroid = (0.70109755624893833, -1.5705613531177005) +station = ('kspi', 0.0068998539309880307) +zone = ('ilz041', 0.001531962953418457) + +[62656] +centroid = (0.70057414945955765, -1.5598294980801126) +station = ('kaaa', 0.00058752939945069642) +zone = ('ilz042', 0.00027487093609049806) + +[62661] +centroid = (0.69233745202720587, -1.5677766977494361) +station = ('kspi', 0.0037153127750495863) +zone = ('ilz051', 0.0027514591395150223) + +[62663] +centroid = (0.69011280300273636, -1.5765342537904607) +station = ('kijx', 0.0042534850977906311) +zone = ('ilz049', 0.0026693137657932174) + +[62664] +centroid = (0.70184160756235603, -1.5659817313335149) +station = ('kspi', 0.0063513598571090851) +zone = ('ilz041', 0.0026105866219358043) + +[62665] +centroid = (0.69493685814866368, -1.5800388051152952) +station = ('kijx', 0.0039723490037923085) +zone = ('ilz049', 0.003103641584488843) + +[62666] +centroid = (0.69963462126991671, -1.5628354437442376) +station = ('kaaa', 0.003061392179419357) +zone = ('ilz042', 0.0024466851288337684) + +[62667] +centroid = (0.68919151350377872, -1.5706618840826154) +station = ('kijx', 0.0059957342209121601) +zone = ('ilz059', 0.004062423497258192) + +[62668] +centroid = (0.69066790497133312, -1.574883242131244) +station = ('kijx', 0.0035227674287631487) +zone = ('ilz050', 0.0025383250265873071) + +[62670] +centroid = (0.69364465127707209, -1.5689064842808373) +station = ('kspi', 0.0033618632090391116) +zone = ('ilz051', 0.0031355191742167719) + +[62671] +centroid = (0.70114902600857965, -1.5630899476557634) +station = ('kaaa', 0.0029907410642078009) +zone = ('ilz042', 0.0026825523644470909) + +[62672] +centroid = (0.68762497578035864, -1.5673834227090844) +station = ('k3lf', 0.0044744114512940952) +zone = ('ilz059', 0.0028879487740280634) + +[62673] +centroid = (0.69962467289318031, -1.5704244320378815) +station = ('kspi', 0.0057016526099935337) +zone = ('ilz048', 0.002566842327315653) + +[62674] +centroid = (0.68838667237251405, -1.57129385035147) +station = ('kijx', 0.0064546141108083963) +zone = ('ilz059', 0.0034518442529175141) + +[62675] +centroid = (0.69876052547393286, -1.5681420475217562) +station = ('kspi', 0.0039232969622401857) +zone = ('ilz048', 0.00062929293811983327) + +[62677] +centroid = (0.69552396945574213, -1.5687548500754238) +station = ('kspi', 0.0026758345096377367) +zone = ('ilz048', 0.0032700373520868119) + +[62681] +centroid = (0.70049409120676864, -1.5804054464312616) +station = ('kmqb', 0.0068537184559570707) +zone = ('ilz040', 0.00094739434380673975) + +[62682] +centroid = (0.7033454356057518, -1.5643555557095545) +station = ('kaaa', 0.0046404869991334271) +zone = ('ilz037', 0.0039642065751192869) + +[62684] +centroid = (0.69655083392115291, -1.5635909269642556) +station = ('kspi', 0.0016537224180462849) +zone = ('ilz051', 0.0028090131775582563) + +[62685] +centroid = (0.68311982719535569, -1.5708446026020066) +station = ('kaln', 0.0042354557813169416) +zone = ('ilz059', 0.0023647327393280715) + +[62688] +centroid = (0.69718875176275685, -1.569454098786943) +station = ('kspi', 0.0036211181416332346) +zone = ('ilz048', 0.0021525382516348283) + +[62689] +centroid = (0.6899927243501992, -1.5666398600878573) +station = ('kspi', 0.0056207869471429465) +zone = ('ilz051', 0.0041558445748556298) + +[62690] +centroid = (0.68950823840313813, -1.5666565628887987) +station = ('ktaz', 0.00587776287554589) +zone = ('ilz051', 0.004619467944076576) + +[62691] +centroid = (0.6974031480080719, -1.5744689882332832) +station = ('kijx', 0.003235088297434489) +zone = ('ilz047', 0.00056240639714444536) + +[62692] +centroid = (0.69086275352902582, -1.5697340670522553) +station = ('kijx', 0.0052205387982507262) +zone = ('ilz050', 0.0042124617304299585) + +[62693] +centroid = (0.69739950026993514, -1.5623519351815573) +station = ('kspi', 0.002926642187964706) +zone = ('ilz042', 0.0035186425809211963) + +[62694] +centroid = (0.69154796979335875, -1.5791236068154271) +station = ('kijx', 0.0041520567230404508) +zone = ('ilz049', 0.00037525966493668706) + +[62695] +centroid = (0.69162315857753476, -1.5746997556669819) +station = ('kijx', 0.0025748567658302616) +zone = ('ilz050', 0.0015732235349420075) + +[62701] +centroid = (0.69465320723862956, -1.5646667479151852) +station = ('kspi', 0.00097709459203202276) +zone = ('ilz051', 0.00075398050687240799) + +[62702] +centroid = (0.69506231241529703, -1.5645467739824028) +station = ('kspi', 0.00071532834732926842) +zone = ('ilz051', 0.0011731125336503295) + +[62703] +centroid = (0.6939856537063267, -1.5643365839805854) +station = ('kspi', 0.0016877562415219245) +zone = ('ilz051', 0.00039630258056570674) + +[62704] +centroid = (0.69417849513537955, -1.5652782938317913) +station = ('kspi', 0.0013352290631021891) +zone = ('ilz051', 0.00042806383266462964) + +[62707] +centroid = (0.69559978655844867, -1.5646944637437068) +station = ('kspi', 0.00044973068583979659) +zone = ('ilz051', 0.0016921440402795007) + +[62711] +centroid = (0.69403831028985952, -1.5660721742953534) +station = ('kspi', 0.0015990784972318855) +zone = ('ilz051', 0.00095334382041977394) + +[62712] +centroid = (0.69383494452541705, -1.5634607254020569) +station = ('kspi', 0.0021792570709823216) +zone = ('ilz051', 0.0010654181430152132) + +[62801] +centroid = (0.67217626371950101, -1.5558185569261045) +station = ('kenl', 0.0006783394605785547) +zone = ('ilz070', 0.0038650913413121098) + +[62803] +centroid = (0.67113732157566619, -1.5584922617138197) +station = ('kenl', 0.0029706970607225112) +zone = ('ilz074', 0.0023685729561303626) + +[62806] +centroid = (0.66989319852496709, -1.5372380784153457) +station = ('kcul', 0.0051454371363185711) +zone = ('ilz077', 0.00068535274609929765) + +[62807] +centroid = (0.67622387424109343, -1.5523076176962076) +station = ('kslo', 0.0018087042388190001) +zone = ('ilz070', 0.0016871347666643642) + +[62808] +centroid = (0.66856896486160144, -1.5566364531201742) +station = ('kenl', 0.0038715159873682261) +zone = ('ilz074', 0.0031411939808926826) + +[62809] +centroid = (0.66795050744115725, -1.5410325812888142) +station = ('kfwc', 0.0024818902962272945) +zone = ('ilz076', 0.0032998903650552362) + +[62810] +centroid = (0.66673804466308928, -1.5490201678770288) +station = ('kmvn', 0.002551826326955932) +zone = ('ilz075', 0.0029227095830907028) + +[62811] +centroid = (0.66990920319420788, -1.5342419065950321) +station = ('kajg', 0.0046020285923446544) +zone = ('ilz078', 0.0013843547714223524) + +[62812] +centroid = (0.66317868999974217, -1.5518775685685162) +station = ('kmwa', 0.0044685085707794397) +zone = ('ilz081', 0.00014265351313902272) + +[62814] +centroid = (0.66982938928751423, -1.5486640683497443) +station = ('kmvn', 0.0021360875671596205) +zone = ('ilz075', 0.0029594162014994888) + +[62815] +centroid = (0.67122486729094621, -1.5353040092580408) +station = ('kajg', 0.0041703938794037569) +zone = ('ilz077', 0.0013929742223193027) + +[62816] +centroid = (0.66653713981289231, -1.5519977693941012) +station = ('kmvn', 0.0023452171135012064) +zone = ('ilz075', 0.0019344921115453542) + +[62817] +centroid = (0.66243053716258227, -1.5441993764968027) +station = ('khsb', 0.0026924742050321157) +zone = ('ilz082', 0.0023823377753849268) + +[62818] +centroid = (0.66991457880830396, -1.5352849153560237) +station = ('kajg', 0.0050787199354367044) +zone = ('ilz077', 0.0013342492391722231) + +[62819] +centroid = (0.66282911800386024, -1.5536325145846892) +station = ('kmwa', 0.003968210094166604) +zone = ('ilz081', 0.0012975293230411352) + +[62820] +centroid = (0.66745582877126453, -1.5400339387974078) +station = ('kcul', 0.0030968872297719341) +zone = ('ilz083', 0.0028180551546744537) + +[62821] +centroid = (0.66446468349919663, -1.5381529625559485) +station = ('kcul', 0.00033413788272800839) +zone = ('ilz083', 0.00074250768031208694) + +[62822] +centroid = (0.66283309735455476, -1.5543282900909965) +station = ('kmwa', 0.0040390857720964436) +zone = ('ilz081', 0.0018374232240357814) + +[62823] +centroid = (0.67248886964182564, -1.5436130680411801) +station = ('kfoa', 0.0023470944111261185) +zone = ('ilz076', 0.0017826074474238075) + +[62824] +centroid = (0.67490925734190632, -1.5418529907570064) +station = ('kfoa', 0.0015198876542547356) +zone = ('ilz071', 0.0025059170496369034) + +[62825] +centroid = (0.66320569024327058, -1.55454135988608) +station = ('kmwa', 0.0044377201441968706) +zone = ('ilz081', 0.0019902422135580841) + +[62827] +centroid = (0.66624087017236622, -1.5367257544667152) +station = ('kcul', 0.001783427622624669) +zone = ('ilz083', 0.0023409761529717041) + +[62828] +centroid = (0.66662042692479739, -1.5463900090541507) +station = ('kfwc', 0.0041248336174402522) +zone = ('ilz082', 0.0021493181190675916) + +[62829] +centroid = (0.6627636157970328, -1.5444338265752231) +station = ('khsb', 0.0029471275589659368) +zone = ('ilz082', 0.0020054799160567258) + +[62830] +centroid = (0.67096406274082077, -1.5527781061026678) +station = ('kenl', 0.0021087726931125943) +zone = ('ilz075', 0.0025629939650638643) + +[62831] +centroid = (0.66732609844796376, -1.5572304410245053) +station = ('kenl', 0.0051989199061811984) +zone = ('ilz074', 0.0032866304606725969) + +[62832] +centroid = (0.66343144858201608, -1.5576873333160923) +station = ('kmdh', 0.0039879077926338142) +zone = ('ilz080', 0.0020535370770197016) + +[62833] +centroid = (0.66953837308803665, -1.5387551709610567) +station = ('kfwc', 0.0034145168070744184) +zone = ('ilz077', 0.0017941199982362331) + +[62835] +centroid = (0.66507600252300014, -1.5415033838545393) +station = ('kcul', 0.0027428864127252259) +zone = ('ilz083', 0.0019789529952006298) + +[62836] +centroid = (0.6648756561781638, -1.549947583481661) +station = ('kmvn', 0.0039661993943395949) +zone = ('ilz081', 0.0024186730481794861) + +[62837] +centroid = (0.66951538710178782, -1.5420482407404272) +station = ('kfwc', 0.00087936822675884288) +zone = ('ilz076', 0.0015634545128042528) + +[62838] +centroid = (0.67847472065763548, -1.5490039537682778) +station = ('k1h2', 0.0045337163201639181) +zone = ('ilz066', 0.0039161943857066736) + +[62839] +centroid = (0.67484558773079362, -1.5446321832447123) +station = ('kfoa', 0.00065222726798432507) +zone = ('ilz071', 0.0015496745944033809) + +[62841] +centroid = (0.66076875682188085, -1.5533460711478517) +station = ('kmwa', 0.001902159954047007) +zone = ('ilz085', 0.0024505975562832292) + +[62842] +centroid = (0.67138753197723211, -1.5423656812247799) +station = ('kfwc', 0.0016558448055138332) +zone = ('ilz076', 0.00099997604353084827) + +[62843] +centroid = (0.66989593869189279, -1.5393640116173224) +station = ('kfwc', 0.0029246906522370636) +zone = ('ilz077', 0.0020829377269066542) + +[62844] +centroid = (0.66781060184831742, -1.5366483840209746) +station = ('kcul', 0.0032154820759698458) +zone = ('ilz077', 0.0026871155791664877) + +[62846] +centroid = (0.66575943855149611, -1.5510191807358005) +station = ('kmvn', 0.0029925542613860523) +zone = ('ilz081', 0.0027826127500856406) + +[62848] +centroid = (0.67082422696115096, -1.5562494961717144) +station = ('kenl', 0.0017168683821193224) +zone = ('ilz074', 0.0036395505429676969) + +[62849] +centroid = (0.67343424468446089, -1.5493933192711051) +station = ('kslo', 0.0027867665637799745) +zone = ('ilz070', 0.002280296465648755) + +[62850] +centroid = (0.67185973080635919, -1.5462713092117226) +station = ('kfwc', 0.0032094895894652919) +zone = ('ilz076', 0.0025776264724970007) + +[62851] +centroid = (0.67068807382620288, -1.5474085482990299) +station = ('kfwc', 0.0034874968464444827) +zone = ('ilz076', 0.0032047482692579561) + +[62852] +centroid = (0.66933766022405727, -1.5335647013919655) +station = ('kajg', 0.0048635837083250005) +zone = ('ilz078', 0.0017013985365909939) + +[62853] +centroid = (0.67223288220043553, -1.5518105130186546) +station = ('kslo', 0.0023217661989934748) +zone = ('ilz070', 0.0023317425651271286) + +[62854] +centroid = (0.67666306889406536, -1.5498705795550631) +station = ('kslo', 0.0031403224180420533) +zone = ('ilz070', 0.0026442424879225758) + +[62856] +centroid = (0.66246430928360844, -1.5505235770414041) +station = ('kmwa', 0.0042388172316013429) +zone = ('ilz081', 0.0013356701489978806) + +[62858] +centroid = (0.67739392551833799, -1.5444933423027158) +station = ('kfoa', 0.0026192962787254886) +zone = ('ilz071', 0.0010062323680332481) + +[62859] +centroid = (0.66464483638458749, -1.5451870932270912) +station = ('khsb', 0.0047170538786584087) +zone = ('ilz082', 8.9423009337190798e-05) + +[62860] +centroid = (0.66394710610951779, -1.5486643999623022) +station = ('khsb', 0.0047373391969364438) +zone = ('ilz082', 0.0027400255266542255) + +[62861] +centroid = (0.66374775460235491, -1.5361321854414045) +station = ('kcul', 0.0018245212054935941) +zone = ('inz085', 0.0020053320411024624) + +[62862] +centroid = (0.66704914960225736, -1.5411140707115898) +station = ('kfwc', 0.0031882715053904256) +zone = ('ilz083', 0.0028249718668813244) + +[62863] +centroid = (0.67048278819958329, -1.5334440467807753) +station = ('kajg', 0.0037908350365568858) +zone = ('ilz078', 0.00056953193209027147) + +[62864] +centroid = (0.6689933067626388, -1.5516416698668167) +station = ('kmvn', 0.00054701273041525068) +zone = ('ilz075', 0.00059894411154535815) + +[62865] +centroid = (0.66273823870970894, -1.5547409033794606) +station = ('kmwa', 0.004021651281781574) +zone = ('ilz081', 0.0021733370589379001) + +[62867] +centroid = (0.6616938685919006, -1.5376166752366882) +station = ('kcul', 0.0031100738040936438) +zone = ('ilz087', 0.0031769921649006262) + +[62868] +centroid = (0.67505338663153591, -1.5398712741111222) +station = ('koly', 0.0010452977993804697) +zone = ('ilz072', 0.0020414986673417098) + +[62869] +centroid = (0.66256963990396622, -1.5407917956652089) +station = ('kcul', 0.0031017226263295519) +zone = ('ilz083', 0.0025896351851168913) + +[62870] +centroid = (0.67431062686176479, -1.5542690536161838) +station = ('kslo', 0.0012191001034956505) +zone = ('ilz070', 0.0018447845093830116) + +[62871] +centroid = (0.66104971992486705, -1.5406520646052944) +station = ('kcul', 0.0042671289889780924) +zone = ('ilz087', 0.0020495031471947805) + +[62872] +centroid = (0.66790361044415625, -1.5500170650391829) +station = ('kmvn', 0.0011551428440267995) +zone = ('ilz075', 0.0016691190738102766) + +[62874] +centroid = (0.66180625034243645, -1.5529246439466653) +station = ('kmwa', 0.0029598734045638239) +zone = ('ilz081', 0.0014692144043364098) + +[62875] +centroid = (0.67641024049862142, -1.5554583384217855) +station = ('kslo', 0.0029055844735465827) +zone = ('ilz070', 0.0033163166024189829) + +[62876] +centroid = (0.66804943270316031, -1.5567592021264669) +station = ('kenl', 0.0043936738550452228) +zone = ('ilz074', 0.0032248379812643444) + +[62877] +centroid = (0.67008090868601911, -1.5570290474821176) +station = ('kenl', 0.0026779971961140413) +zone = ('ilz074', 0.0028177538059724408) + +[62878] +centroid = (0.67325225920335552, -1.5447542341193041) +station = ('kfoa', 0.001747414239095418) +zone = ('ilz076', 0.0027693489141732098) + +[62879] +centroid = (0.67657524392610502, -1.5421815664419869) +station = ('kfoa', 0.0021515894124933374) +zone = ('ilz071', 0.0017751118461822846) + +[62880] +centroid = (0.6783568934798333, -1.5513252416734302) +station = ('kslo', 0.0040610414470226702) +zone = ('ilz065', 0.0030014302304003045) + +[62881] +centroid = (0.67431375100112578, -1.5520751572931346) +station = ('kslo', 0.00051838137439439401) +zone = ('ilz070', 0.00027383947894764945) + +[62882] +centroid = (0.67432984293682929, -1.5554137976192746) +station = ('kenl', 0.0021515539659262102) +zone = ('ilz070', 0.0027315122728509954) + +[62883] +centroid = (0.66616451201759153, -1.5554439045488715) +station = ('kmvn', 0.0043346937618171698) +zone = ('ilz075', 0.0035454149421858231) + +[62884] +centroid = (0.6646801269420628, -1.5543234031690911) +station = ('kmvn', 0.0048307245963950347) +zone = ('ilz081', 0.0024118857482798742) + +[62885] +centroid = (0.67821852377673519, -1.5542892121690446) +station = ('kslo', 0.0039688099256972821) +zone = ('ilz065', 0.0024968493899625616) + +[62886] +centroid = (0.66987303997210668, -1.5453010283206614) +station = ('kfwc', 0.0017305209034883199) +zone = ('ilz076', 0.0017705149233945444) + +[62887] +centroid = (0.66644568456008779, -1.5422071355155287) +station = ('kfwc', 0.0034582492951676915) +zone = ('ilz083', 0.0030234986011334966) + +[62888] +centroid = (0.66551107819893729, -1.557435290318812) +station = ('kmdh', 0.0060712722565026056) +zone = ('ilz080', 0.0019989071216665794) + +[62889] +centroid = (0.67119322447160756, -1.5502642385678502) +station = ('kmvn', 0.0025113298987020113) +zone = ('ilz075', 0.0030486792648026879) + +[62890] +centroid = (0.66158808418593718, -1.5487696782227824) +station = ('khsb', 0.0030833367588099605) +zone = ('ilz081', 0.0029711114058475555) + +[62891] +centroid = (0.66348731657137228, -1.5540839439957175) +station = ('kmwa', 0.0046556354590534471) +zone = ('ilz081', 0.0016739289681115634) + +[62892] +centroid = (0.67733357203280398, -1.5546689958142783) +station = ('kslo', 0.0032663320371635026) +zone = ('ilz065', 0.0034213655563228897) + +[62893] +centroid = (0.67135503394655993, -1.5538695652036949) +station = ('kenl', 0.0012030773832037778) +zone = ('ilz075', 0.0032286380186523976) + +[62894] +centroid = (0.66686447631410384, -1.5539837271900678) +station = ('kmvn', 0.0029988019801916923) +zone = ('ilz075', 0.0022291183862871346) + +[62895] +centroid = (0.66855788202085131, -1.5455787276579462) +station = ('kfwc', 0.0023289348347941981) +zone = ('ilz076', 0.0027968872135302079) + +[62896] +centroid = (0.6613138406005713, -1.5518764864643799) +station = ('kmwa', 0.0027141461613588219) +zone = ('ilz081', 0.0017804894748983426) + +[62897] +centroid = (0.66487633685657199, -1.5515778431760712) +station = ('kmvn', 0.0039007264144653052) +zone = ('ilz081', 0.0018192593981102628) + +[62898] +centroid = (0.66934038293769038, -1.5543931290727082) +station = ('kenl', 0.0029016198555247611) +zone = ('ilz075', 0.0020568947317603954) + +[62899] +centroid = (0.67402678396551297, -1.5471028364272505) +station = ('kfoa', 0.0027045363247174552) +zone = ('ilz071', 0.0031432801279702703) + +[62901] +centroid = (0.65866987622331008, -1.5569926748205061) +station = ('kmdh', 0.00095757007583467972) +zone = ('ilz084', 0.0025194060257529645) + +[62902] +centroid = (0.65733614796881368, -1.5553945989975027) +station = ('kmwa', 0.0022197540556299551) +zone = ('ilz085', 0.0028481758118428513) + +[62903] +centroid = (0.65753740188486109, -1.5581642270809073) +station = ('kmdh', 0.0019402618947675014) +zone = ('ilz084', 0.0024278239644386097) + +[62905] +centroid = (0.65550309846861399, -1.5597517960218137) +station = ('kmdh', 0.0042601176581817529) +zone = ('ilz088', 0.0021633553801078133) + +[62906] +centroid = (0.65383714679100036, -1.5563542508334189) +station = ('kmwa', 0.0055599994607725481) +zone = ('ilz088', 0.0011547789205066342) + +[62907] +centroid = (0.66099926245619178, -1.562025174638999) +station = ('kmdh', 0.0037492353510747006) +zone = ('ilz084', 0.0022019187484646771) + +[62908] +centroid = (0.65118628836319381, -1.5509851119088016) +station = ('km30', 0.0026902117023557756) +zone = ('ilz089', 0.0026164922711373866) + +[62910] +centroid = (0.64844407940233795, -1.5452178110219263) +station = ('kpah', 0.0036995606361616418) +zone = ('ilz094', 0.0026705441426631417) + +[62912] +centroid = (0.65408306368260638, -1.5539086431256472) +station = ('kmwa', 0.0048031057230315472) +zone = ('ilz089', 0.0021186631840320038) + +[62914] +centroid = (0.64683942368805436, -1.5571521979141385) +station = ('kcir', 5.9542409258146056e-05) +zone = ('ilz092', 0.0028165016663592021) + +[62915] +centroid = (0.65944836288286968, -1.5554305527800938) +station = ('kmdh', 0.001798647003331381) +zone = ('ilz085', 0.0027781491062091905) + +[62916] +centroid = (0.66201520116048529, -1.5632689660771404) +station = ('ksar', 0.0042063034707306417) +zone = ('ilz084', 0.0036138043368403004) + +[62917] +centroid = (0.6578742155239109, -1.5472627958531957) +station = ('khsb', 0.0024977495225164733) +zone = ('ilz086', 0.0018529061506946198) + +[62918] +centroid = (0.65955170382788031, -1.5548812103980285) +station = ('kmwa', 0.0013822674443116228) +zone = ('ilz085', 0.0024156759837864971) + +[62919] +centroid = (0.65491774994408014, -1.5383047189344095) +station = ('khsb', 0.0075739491896870499) +zone = ('ilz091', 0.0017821315558570433) + +[62920] +centroid = (0.6553724256675173, -1.5574930432637604) +station = ('kmdh', 0.004074643577654297) +zone = ('ilz088', 0.0013973439281750361) + +[62921] +centroid = (0.65976782794915467, -1.5548136836092687) +station = ('kmwa', 0.0014587497414986761) +zone = ('ilz085', 0.002469414469595982) + +[62922] +centroid = (0.65660602438282678, -1.5501108066733074) +station = ('kmwa', 0.003425207790260381) +zone = ('ilz085', 0.0024866193867429565) + +[62923] +centroid = (0.65181820227217091, -1.5536223567684424) +station = ('km30', 0.0046315176321206249) +zone = ('ilz093', 0.00264932966855799) + +[62924] +centroid = (0.66013588298181525, -1.5567991876196301) +station = ('kmdh', 0.00099652572197431568) +zone = ('ilz084', 0.0026227601049271282) + +[62926] +centroid = (0.65217156163252965, -1.5556365539917065) +station = ('kcir', 0.0054150307404727122) +zone = ('ilz088', 0.0025035206003181797) + +[62927] +centroid = (0.66208475253117727, -1.5575720892255831) +station = ('kmdh', 0.0026433100194523272) +zone = ('ilz080', 0.0031177510780160053) + +[62928] +centroid = (0.65419122173635247, -1.5459309874608764) +station = ('km30', 0.0057187829980073447) +zone = ('ilz090', 0.001233131679636786) + +[62930] +centroid = (0.66039382519196743, -1.5435877782203187) +station = ('khsb', 0.0015598651258950452) +zone = ('ilz086', 0.0020164294806745147) + +[62931] +centroid = (0.65487249355657595, -1.5409865045965614) +station = ('khsb', 0.0061832116063601818) +zone = ('ilz091', 0.00035231595936627866) + +[62932] +centroid = (0.66151849790866013, -1.557160907107106) +station = ('kmdh', 0.0021191665922176777) +zone = ('ilz084', 0.0030397510406438098) + +[62933] +centroid = (0.65925224023482309, -1.5537908159478448) +station = ('kmwa', 0.00051321045764750447) +zone = ('ilz085', 0.0015117272139759858) + +[62934] +centroid = (0.6581154723864141, -1.5421490684113148) +station = ('khsb', 0.0031962779250543521) +zone = ('ilz087', 0.0020170137482413688) + +[62935] +centroid = (0.6604246826131428, -1.5469699121514184) +station = ('khsb', 0.0012793523579841311) +zone = ('ilz086', 0.0019870177928341137) + +[62938] +centroid = (0.65242953874926701, -1.545304396806118) +station = ('km30', 0.0045004356980891331) +zone = ('ilz090', 0.00062380849064718282) + +[62939] +centroid = (0.65539139739648644, -1.5530227139973347) +station = ('kmwa', 0.0034856361984249825) +zone = ('ilz089', 0.0021212013905929934) + +[62940] +centroid = (0.65866083541778486, -1.5615777420319576) +station = ('kmdh', 0.0031591158085510192) +zone = ('ilz084', 0.0014822450809904597) + +[62941] +centroid = (0.64994766309963847, -1.5531005556819737) +station = ('km30', 0.0034042935760548536) +zone = ('ilz093', 0.001974732990826465) + +[62942] +centroid = (0.65710532817523737, -1.561596172708859) +station = ('kmdh', 0.003864646900379918) +zone = ('ilz084', 0.0026816556909671475) + +[62943] +centroid = (0.65201249232450298, -1.548986413209295) +station = ('km30', 0.0029972665070675344) +zone = ('ilz094', 0.0024896383658046992) + +[62946] +centroid = (0.65816125237269396, -1.5452943611629189) +station = ('khsb', 0.0017776926614958962) +zone = ('ilz086', 0.00075861625370191293) + +[62947] +centroid = (0.65499430008507276, -1.5438210065682627) +station = ('khsb', 0.0051094068545032584) +zone = ('ilz090', 0.0025070382070371796) + +[62948] +centroid = (0.66003357178106337, -1.55387846638288) +station = ('kmwa', 0.0012361481943904387) +zone = ('ilz085', 0.0020567001155662418) + +[62949] +centroid = (0.66022180554089094, -1.5558669025463847) +station = ('kmdh', 0.0016485931877957391) +zone = ('ilz085', 0.0034169353567837664) + +[62950] +centroid = (0.65879978107953607, -1.5631292873771032) +station = ('kmdh', 0.0043350591791193258) +zone = ('ilz084', 0.0025554623543044201) + +[62951] +centroid = (0.66015283012885217, -1.5521095926392763) +station = ('kmwa', 0.001623142641051088) +zone = ('ilz085', 0.0016348863396541081) + +[62952] +centroid = (0.6529201682552952, -1.5592946244775465) +station = ('kcgi', 0.0045578807598889628) +zone = ('ilz088', 0.0016043811097737537) + +[62953] +centroid = (0.649427781875347, -1.5507166453632597) +station = ('km30', 0.0014363619930203571) +zone = ('ilz094', 0.0019768240533982462) + +[62954] +centroid = (0.65785103755144447, -1.5407687747723753) +station = ('khsb', 0.0042636858386687687) +zone = ('ilz087', 0.0014076842385330917) + +[62956] +centroid = (0.65065516721851946, -1.5522671958707315) +station = ('km30', 0.0030822139495615096) +zone = ('ilz093', 0.0027992596845635054) + +[62957] +centroid = (0.65122590733721419, -1.5607804232697693) +station = ('kcgi', 0.0025837684207950661) +zone = ('ilz092', 0.0024438289646354187) + +[62958] +centroid = (0.65678476355152349, -1.5573745179542575) +station = ('kmdh', 0.0026717354920137086) +zone = ('ilz088', 0.0028088363046919239) + +[62959] +centroid = (0.65828288436826543, -1.5517783466005404) +station = ('kmwa', 0.0013821230603175839) +zone = ('ilz085', 0.00035791330326267069) + +[62960] +centroid = (0.64970403258935261, -1.5482711598285352) +station = ('km30', 0.00089538264280740628) +zone = ('ilz094', 0.00011217289217028281) + +[62961] +centroid = (0.65167536452618768, -1.5577975508583557) +station = ('kcir', 0.0048045912337380875) +zone = ('ilz088', 0.0023204507943069175) + +[62962] +centroid = (0.64708710336220487, -1.5592054032461844) +station = ('kcir', 0.0016327587890244031) +zone = ('ilz092', 0.0020271651972139566) + +[62963] +centroid = (0.6474561881391242, -1.5562212916510023) +station = ('kcir', 0.00094324152122884323) +zone = ('ilz093', 0.0022674051865389454) + +[62964] +centroid = (0.64800214458244054, -1.5571304511116586) +station = ('kcir', 0.0011060759201796907) +zone = ('ilz092', 0.0020125420136860666) + +[62965] +centroid = (0.65916406620101231, -1.5449762050935729) +station = ('khsb', 0.00086411084143910304) +zone = ('ilz086', 0.00037071711558731067) + +[62966] +centroid = (0.6593004985886407, -1.5594687734303103) +station = ('kmdh', 0.0014003011973037259) +zone = ('ilz084', 0.00046384311930322666) + +[62967] +centroid = (0.65596143938348028, -1.5489059011709008) +station = ('kmwa', 0.004569972814524528) +zone = ('ilz089', 0.0028634746443219994) + +[62969] +centroid = (0.64846648942993357, -1.5593172788512373) +station = ('kcir', 0.0023213381094321639) +zone = ('ilz092', 0.00065092796653514774) + +[62970] +centroid = (0.64969143131215312, -1.5549329070504725) +station = ('kcir', 0.0033165816176257295) +zone = ('ilz093', 0.00049582655121491192) + +[62972] +centroid = (0.65523653433195694, -1.5496959419101084) +station = ('kmwa', 0.0046481922266979865) +zone = ('ilz089', 0.0019055192495628709) + +[62974] +centroid = (0.65940637026106663, -1.5495555301717854) +station = ('khsb', 0.0032675559290007571) +zone = ('ilz085', 0.0022133181450243486) + +[62975] +centroid = (0.65683324879814386, -1.5601077384694657) +station = ('kmdh', 0.0032284738398073321) +zone = ('ilz084', 0.0026439862214842989) + +[62976] +centroid = (0.64964057241775008, -1.5569100858403015) +station = ('kcir', 0.002751976993130803) +zone = ('ilz093', 0.0010797352869692167) + +[62977] +centroid = (0.6606381538339543, -1.545417895567375) +station = ('khsb', 0.00070633965260534417) +zone = ('ilz086', 0.0017202166768881589) + +[62979] +centroid = (0.66012031464488752, -1.5392253452082514) +station = ('kcul', 0.0047589806146865286) +zone = ('ilz087', 0.0011689872889180633) + +[62982] +centroid = (0.65318554556806074, -1.5422668257759469) +station = ('km30', 0.0067811928662573073) +zone = ('ilz091', 0.0021259440318521072) + +[62983] +centroid = (0.66153164023792765, -1.5554587049409283) +station = ('kmdh', 0.0027405301951644078) +zone = ('ilz081', 0.0031278707538338396) + +[62984] +centroid = (0.65819860241868655, -1.5385937454585397) +station = ('kcul', 0.006602221021642137) +zone = ('ilz087', 0.00136896481081938) + +[62985] +centroid = (0.65377581592108536, -1.5478530138463427) +station = ('km30', 0.0048456047685123682) +zone = ('ilz090', 0.0018960276659063498) + +[62987] +centroid = (0.65656614360941867, -1.5472676478685161) +station = ('khsb', 0.0036536804356527858) +zone = ('ilz086', 0.0028094078023979362) + +[62988] +centroid = (0.65015757384877593, -1.5584861356081452) +station = ('kcir', 0.0034247830349388121) +zone = ('ilz092', 0.0012019285140324541) + +[62990] +centroid = (0.64976133174869566, -1.5603041403701925) +station = ('kcgi', 0.002565099508568874) +zone = ('ilz092', 0.0010693664643879788) + +[62992] +centroid = (0.65066078717871079, -1.5562368774412225) +station = ('kcir', 0.0038374010747941364) +zone = ('ilz093', 0.0011383684241074049) + +[62994] +centroid = (0.66159721225792512, -1.559318308595496) +station = ('kmdh', 0.0025016970953518165) +zone = ('ilz084', 0.002190644309192382) + +[62995] +centroid = (0.65341015198949992, -1.5510642102305019) +station = ('km30', 0.0046945172533583851) +zone = ('ilz089', 0.0004148387962206884) + +[62996] +centroid = (0.6485212578618611, -1.5559789701376552) +station = ('kcir', 0.0018831683766758467) +zone = ('ilz093', 0.0011883175426393969) + +[62997] +centroid = (0.66291580850780685, -1.5636482086703061) +station = ('ksar', 0.0032657544303340172) +zone = ('ilz079', 0.0034516007642322378) + +[62998] +centroid = (0.65470913073858927, -1.5613393126028428) +station = ('kcgi', 0.0051654257908735797) +zone = ('ilz088', 0.0029009787592040384) + +[62999] +centroid = (0.6613020421748278, -1.5541727987079366) +station = ('kmwa', 0.0025181274439491875) +zone = ('ilz081', 0.002466106186609925) + +[63005] +centroid = (0.67446877114528792, -1.5821655237154355) +station = ('ksus', 0.00010278985819099015) +zone = ('moz061', 0.0024248212881624884) + +[63010] +centroid = (0.67073650671294571, -1.5776397627919663) +station = ('kcps', 0.0040736366882884161) +zone = ('moz065', 0.0035659477324419282) + +[63011] +centroid = (0.67376130193299211, -1.5805574471558177) +station = ('ksus', 0.0014778327449560308) +zone = ('moz063', 0.0017120666086646898) + +[63012] +centroid = (0.66901393655439734, -1.5787175210583655) +station = ('kcps', 0.005837015094808066) +zone = ('moz065', 0.0016863641252115797) + +[63013] +centroid = (0.67046968077690094, -1.5910685180430286) +station = ('kfyg', 0.0037830433094254612) +zone = ('moz062', 0.0011850244566352524) + +[63014] +centroid = (0.67460125908880697, -1.5937202665887535) +station = ('kfyg', 0.004500530453099694) +zone = ('moz060', 0.0028641329967502662) + +[63015] +centroid = (0.67030740006305045, -1.5840508283734396) +station = ('kfyg', 0.0045075113514739954) +zone = ('moz065', 0.0039486740965666376) + +[63016] +centroid = (0.6693766508795469, -1.5818785392265298) +station = ('ksus', 0.005197164433146397) +zone = ('moz065', 0.0020781638746723186) + +[63017] +centroid = (0.67459260225571693, -1.5800677950341708) +station = ('ksus', 0.0016192432285881064) +zone = ('moz063', 0.0012166759776292206) + +[63019] +centroid = (0.66717587795924471, -1.5773760784485751) +station = ('kcps', 0.0067020563497967008) +zone = ('moz065', 0.002285683203205473) + +[63020] +centroid = (0.66498739215687641, -1.5806670189262582) +station = ('kfam', 0.0061119898444842915) +zone = ('moz065', 0.0028188587028135366) + +[63021] +centroid = (0.67317069996740975, -1.5803203965368118) +station = ('ksus', 0.0019952928677218025) +zone = ('moz063', 0.001868466379405516) + +[63023] +centroid = (0.66794085577039375, -1.5829917276767445) +station = ('ksus', 0.0066622900919128432) +zone = ('moz065', 0.0022113246228587461) + +[63025] +centroid = (0.6717349048582566, -1.5816197418050442) +station = ('ksus', 0.0028639931675917153) +zone = ('moz063', 0.0036036183828401006) + +[63026] +centroid = (0.6720101956411737, -1.5788417361412297) +station = ('ksus', 0.0036337154335062292) +zone = ('moz063', 0.0024097500769160759) + +[63028] +centroid = (0.66563225640890322, -1.577641193961953) +station = ('kfam', 0.0065042782194189054) +zone = ('moz065', 0.0029332156439639901) + +[63030] +centroid = (0.66540140170874207, -1.5838215793761901) +station = ('kfam', 0.0075894826668566565) +zone = ('moz073', 0.0033675214098041546) + +[63031] +centroid = (0.67742281071745847, -1.5769735357098951) +station = ('kstl', 0.0011212021837592276) +zone = ('moz063', 0.0032501281035601983) + +[63033] +centroid = (0.67718291521177187, -1.5755903971842746) +station = ('kstl', 0.0015230706325656397) +zone = ('moz064', 0.0028894037774939573) + +[63034] +centroid = (0.67803081361568318, -1.575830257783376) +station = ('kstl', 0.0020190155713165105) +zone = ('moz064', 0.0037557050140398268) + +[63036] +centroid = (0.66281370674656515, -1.5772848326352809) +station = ('kfam', 0.0037580136305041248) +zone = ('moz075', 0.0028243566740231581) + +[63037] +centroid = (0.6707542741647311, -1.5935181574613726) +station = ('kfyg', 0.0050132431656578101) +zone = ('moz062', 0.0031220993183694217) + +[63038] +centroid = (0.67329648584660096, -1.5824509025014291) +station = ('ksus', 0.0012960962515071476) +zone = ('moz063', 0.0032604515884527866) + +[63039] +centroid = (0.67185569909578713, -1.5854447879404225) +station = ('kfyg', 0.0026624434688960739) +zone = ('moz062', 0.0035344506417375487) + +[63040] +centroid = (0.67322497970714668, -1.5818797085971286) +station = ('ksus', 0.001360183298433881) +zone = ('moz063', 0.0028736312796318643) + +[63041] +centroid = (0.6677652756476431, -1.584541300799835) +station = ('kfyg', 0.0063732024178874943) +zone = ('moz065', 0.0034224119245731773) + +[63042] +centroid = (0.67691076602150835, -1.5774936961868669) +station = ('kstl', 0.00063934358060131584) +zone = ('moz063', 0.0026302392225795307) + +[63043] +centroid = (0.67596146398805612, -1.5788489792576255) +station = ('kstl', 0.0013370301677526945) +zone = ('moz063', 0.0015740755675244353) + +[63044] +centroid = (0.67671286313762469, -1.5783020454299281) +station = ('kstl', 0.00094985555903050526) +zone = ('moz063', 0.0023121640016782984) + +[63045] +centroid = (0.67665027563064817, -1.5788853344659446) +station = ('kstl', 0.0013593846408015895) +zone = ('moz063', 0.0022600910916434221) + +[63047] +centroid = (0.66663725189878664, -1.5793033582750897) +station = ('kfam', 0.0075214606362553884) +zone = ('moz065', 0.0013356699289763696) + +[63048] +centroid = (0.66772035087269688, -1.5776577396832618) +station = ('kcps', 0.0063372754977919317) +zone = ('moz065', 0.00198355651593706) + +[63049] +centroid = (0.67162498402196591, -1.5800611453297206) +station = ('ksus', 0.0033639567914147705) +zone = ('moz063', 0.0030296885338845824) + +[63050] +centroid = (0.6676716561865661, -1.5808841902450836) +station = ('ksus', 0.0069679584328908731) +zone = ('moz065', 0.00056146282946759041) + +[63051] +centroid = (0.66981841116651919, -1.5808605235804265) +station = ('ksus', 0.0048558273492804718) +zone = ('moz065', 0.0021062263652043352) + +[63052] +centroid = (0.67001275357872869, -1.5784214259507645) +station = ('kcps', 0.0049990745450701063) +zone = ('moz065', 0.0026253540884460876) + +[63053] +centroid = (0.66962328335614618, -1.5771480511818021) +station = ('kcps', 0.0045541772053794283) +zone = ('ilz102', 0.0029810838178113241) + +[63055] +centroid = (0.67242458916547465, -1.5851850480411407) +station = ('kfyg', 0.002541573739830313) +zone = ('moz062', 0.0039770267264090534) + +[63056] +centroid = (0.6702069040047206, -1.5919994417594572) +station = ('kfyg', 0.0044534321507270404) +zone = ('moz062', 0.0019226251985225201) + +[63057] +centroid = (0.66921683107994179, -1.5778748935487952) +station = ('kcps', 0.0052344627788772696) +zone = ('moz065', 0.0023115391954951444) + +[63060] +centroid = (0.66772446984973144, -1.5860674166977788) +station = ('kfyg', 0.0059808778458465221) +zone = ('moz062', 0.0038298945331265155) + +[63061] +centroid = (0.66798797966019763, -1.5849722574987373) +station = ('kfyg', 0.0060274460788828635) +zone = ('moz062', 0.0043320581976767436) + +[63068] +centroid = (0.67310165474220074, -1.5925093047938423) +station = ('kfyg', 0.0034355672104613467) +zone = ('moz062', 0.0035528672692380315) + +[63069] +centroid = (0.67179180259187155, -1.5835724685320529) +station = ('ksus', 0.0029949374614703659) +zone = ('moz065', 0.0048117555483020566) + +[63070] +centroid = (0.66825915146607995, -1.578285761508007) +station = ('kcps', 0.0061762510664157382) +zone = ('moz065', 0.0015642527180847821) + +[63071] +centroid = (0.66580171042597935, -1.5853140976860329) +station = ('kfyg', 0.0079922553994010281) +zone = ('moz073', 0.0033049964190668877) + +[63072] +centroid = (0.66967009308668468, -1.5849777029260037) +station = ('kfyg', 0.0045445126377941748) +zone = ('moz062', 0.0036643355875128738) + +[63073] +centroid = (0.67351822992806676, -1.5843975554826406) +station = ('ksus', 0.0020528425310874995) +zone = ('moz061', 0.0036411331707520487) + +[63074] +centroid = (0.67590491532029151, -1.5775804739572763) +station = ('kstl', 0.00050817134949655298) +zone = ('moz063', 0.001670229396203201) + +[63077] +centroid = (0.66896855799384558, -1.5879786569484677) +station = ('kfyg', 0.0045136227267003667) +zone = ('moz062', 0.0018944421787075031) + +[63079] +centroid = (0.66777312962927704, -1.5899914404550377) +station = ('kfyg', 0.0058883905116812966) +zone = ('moz062', 0.0026506123518158513) + +[63080] +centroid = (0.66662281802587264, -1.5895935402921679) +station = ('kfyg', 0.0069513576931825279) +zone = ('moz062', 0.003779190992045984) + +[63084] +centroid = (0.67058865987200933, -1.588586275874257) +station = ('kfyg', 0.0029125904050056025) +zone = ('moz062', 0.00078439742701477428) + +[63087] +centroid = (0.66345687802921749, -1.5786771690460593) +station = ('kfam', 0.0043114958116088602) +zone = ('moz074', 0.0035531023726021981) + +[63088] +centroid = (0.67281779439265643, -1.5795210182861059) +station = ('ksus', 0.002694776734850439) +zone = ('moz063', 0.0017689449280207591) + +[63089] +centroid = (0.67122345357425217, -1.5863219729691822) +station = ('kfyg', 0.0026683596110174995) +zone = ('moz062', 0.0026651009144916505) + +[63090] +centroid = (0.67256679859292712, -1.589102038121514) +station = ('kfyg', 0.0011826866928367388) +zone = ('moz062', 0.0021942009484213331) + +[63091] +centroid = (0.66971185881568485, -1.5951126553594097) +station = ('kvih', 0.0065954719281259332) +zone = ('moz059', 0.0019799498210098499) + +[63101] +centroid = (0.67424788227515553, -1.5741580054671629) +station = ('kcps', 0.0012729950265767912) +zone = ('moz064', 0.00071809652129567263) + +[63102] +centroid = (0.6743111155539554, -1.5740601099494185) +station = ('kcps', 0.0012979415533561896) +zone = ('moz064', 0.00079079491975785987) + +[63103] +centroid = (0.67421566349716378, -1.574581300170649) +station = ('kcps', 0.0014291907956097325) +zone = ('moz064', 0.00039806007584004854) + +[63104] +centroid = (0.67389127660238812, -1.5745328323773211) +station = ('kcps', 0.0011689624856743139) +zone = ('moz064', 0.00060261305897521436) + +[63105] +centroid = (0.67447041175478495, -1.5765245323065271) +station = ('kstl', 0.0019176403498498723) +zone = ('moz064', 0.0011439291990347788) + +[63106] +centroid = (0.67447196509781904, -1.574432126879481) +station = ('kcps', 0.0015726160042049693) +zone = ('moz064', 0.00052211851817228895) + +[63107] +centroid = (0.67481272318097851, -1.5744982748581318) +station = ('kcps', 0.0018969770511030697) +zone = ('moz064', 0.00066477097448864925) + +[63108] +centroid = (0.67447905113458229, -1.575219287825423) +station = ('kcps', 0.0019619640396986307) +zone = ('moz064', 0.00019456801066615291) + +[63109] +centroid = (0.67342832801829655, -1.5759351346181285) +station = ('kcps', 0.0019954393204865682) +zone = ('moz064', 0.0011193744692658766) + +[63110] +centroid = (0.67414728149707059, -1.5754563209911365) +station = ('kcps', 0.0019005280691508509) +zone = ('moz064', 0.00034706491986978864) + +[63111] +centroid = (0.67296551906054525, -1.5751597895512224) +station = ('kcps', 0.0013730301137924365) +zone = ('moz064', 0.001358119208489589) + +[63112] +centroid = (0.67472566615788898, -1.5757298489915088) +station = ('kstl', 0.0019583439672379256) +zone = ('moz064', 0.00065320513101365947) + +[63113] +centroid = (0.67470945204913801, -1.5751176223964944) +station = ('kcps', 0.0020766953855610049) +zone = ('moz064', 0.00038914021484658855) + +[63114] +centroid = (0.6754817951497305, -1.5771436354987944) +station = ('kstl', 0.00083428571679471878) +zone = ('moz063', 0.0015240281882227123) + +[63115] +centroid = (0.67513154247544027, -1.57498468066737) +station = ('kstl', 0.0020922221899847926) +zone = ('moz064', 0.00081251471248269173) + +[63116] +centroid = (0.67336223239952353, -1.5754058809757536) +station = ('kcps', 0.0015764713447224395) +zone = ('moz064', 0.00099444133882609282) + +[63117] +centroid = (0.67423404181418722, -1.5765707835317047) +station = ('kstl', 0.0021374722346845544) +zone = ('moz064', 0.0011737812339437843) + +[63118] +centroid = (0.67356514437836046, -1.5747449771479012) +station = ('kcps', 0.0011333260743886704) +zone = ('moz064', 0.00079884551220759693) + +[63119] +centroid = (0.67349550574120587, -1.576928384042146) +station = ('kcps', 0.0027733535821824183) +zone = ('moz063', 0.001547283228241936) + +[63120] +centroid = (0.67527794069309754, -1.575370642778156) +station = ('kstl', 0.0017617051600502917) +zone = ('moz064', 0.00098397923511518281) + +[63121] +centroid = (0.67556796205490144, -1.5760555972431012) +station = ('kstl', 0.0011616729555753635) +zone = ('moz064', 0.0014635187757927907) + +[63122] +centroid = (0.67336879483751111, -1.5780914714556751) +station = ('kstl', 0.0030281406721900752) +zone = ('moz063', 0.0010932558750229391) + +[63123] +centroid = (0.67277960658862279, -1.5765229091503226) +station = ('kcps', 0.0024539497061953786) +zone = ('moz064', 0.0019141869161283182) + +[63124] +centroid = (0.67436211407469859, -1.5774332554348705) +station = ('kstl', 0.0019617402364708394) +zone = ('moz063', 0.00085640145035606799) + +[63125] +centroid = (0.67227381017139498, -1.5759191124955954) +station = ('kcps', 0.0021321931245565783) +zone = ('moz064', 0.0021524227323732169) + +[63126] +centroid = (0.67281842271118719, -1.5774040037166068) +station = ('kcps', 0.0031339295935191077) +zone = ('moz063', 0.0018157363069594011) + +[63127] +centroid = (0.67253264249946565, -1.5780715397956171) +station = ('kcps', 0.0036885585284038612) +zone = ('moz063', 0.0019084671008658199) + +[63128] +centroid = (0.67181958823356336, -1.5775422512466573) +station = ('kcps', 0.0034794829434907568) +zone = ('moz063', 0.0027002190636887615) + +[63129] +centroid = (0.67122957967992658, -1.5763203287840437) +station = ('kcps', 0.0029540581499895766) +zone = ('moz064', 0.0032427087432390683) + +[63130] +centroid = (0.67483270720091393, -1.5764740050246817) +station = ('kstl', 0.0015857980920482824) +zone = ('moz064', 0.0012079362436113591) + +[63131] +centroid = (0.67400069129319562, -1.5785489047993304) +station = ('kstl', 0.0025440045923191576) +zone = ('moz063', 0.00040707246291561976) + +[63132] +centroid = (0.67502399528693247, -1.5773935666476802) +station = ('kstl', 0.0013002730168952816) +zone = ('moz063', 0.001079387734392344) + +[63133] +centroid = (0.67510930698076987, -1.5761368946796592) +station = ('kstl', 0.0014617224419993375) +zone = ('moz064', 0.0011449774737446292) + +[63134] +centroid = (0.6761529091537074, -1.5768524622196842) +station = ('kstl', 0.00031310699575963762) +zone = ('moz063', 0.0021811247354457577) + +[63135] +centroid = (0.67630951754748891, -1.576009939429869) +station = ('kstl', 0.00092490561344162666) +zone = ('moz064', 0.0021180265223134103) + +[63136] +centroid = (0.67619825280767409, -1.5753303256724349) +station = ('kstl', 0.001459658353295737) +zone = ('moz064', 0.0018871046372933267) + +[63137] +centroid = (0.67632332310187215, -1.5744909270219809) +station = ('kstl', 0.0021095498763886588) +zone = ('moz064', 0.0020522132266487065) + +[63138] +centroid = (0.6772060931842383, -1.5741542879158561) +station = ('kaln', 0.0025939704758401465) +zone = ('moz064', 0.0029717975062463807) + +[63139] +centroid = (0.67387881495152879, -1.575887853648692) +station = ('kcps', 0.00207871703666462) +zone = ('moz064', 0.00077604092736507251) + +[63140] +centroid = (0.67611229534201345, -1.5764348398362671) +station = ('kstl', 0.00062724747249677461) +zone = ('moz064', 0.0020824183288475043) + +[63141] +centroid = (0.67471421679799592, -1.5787934777874122) +station = ('kstl', 0.0020290805509741781) +zone = ('moz063', 0.00037020947341422219) + +[63143] +centroid = (0.67390180093777752, -1.5764063735161671) +station = ('kcps', 0.0024674049252237963) +zone = ('moz064', 0.0011236859654553644) + +[63144] +centroid = (0.67402912270671067, -1.5768651682166388) +station = ('kstl', 0.0023004917517391041) +zone = ('moz063', 0.0013530668571329308) + +[63146] +centroid = (0.67540203360291429, -1.5790808287954605) +station = ('kstl', 0.0017309821584960065) +zone = ('moz063', 0.0010841721385783478) + +[63147] +centroid = (0.67533799747265877, -1.5745700602502661) +station = ('kcps', 0.0023990537856015287) +zone = ('moz064', 0.0010891520224969378) + +[63155] +centroid = (0.67418353198563452, -1.5743822279161666) +station = ('kcps', 0.0013089429585335681) +zone = ('moz064', 0.00055660904260910441) + +[63301] +centroid = (0.67820065160519483, -1.5788827164720667) +station = ('kset', 0.0013758654665701044) +zone = ('moz061', 0.0031728962511925461) + +[63303] +centroid = (0.67613849273408599, -1.5802864498828606) +station = ('ksus', 0.0021344717480767453) +zone = ('moz063', 0.0022090949951843529) + +[63304] +centroid = (0.6755036466719655, -1.5824467835243943) +station = ('ksus', 0.0009639251431494603) +zone = ('moz061', 0.0013721849793782823) + +[63330] +centroid = (0.68541411485697978, -1.5848334863699114) +station = ('kppq', 0.0064245229372272804) +zone = ('ilz098', 0.0025685987863319415) + +[63332] +centroid = (0.67364328276897223, -1.5863992736017531) +station = ('kfyg', 0.0013714471458495517) +zone = ('moz062', 0.0040766634325554718) + +[63333] +centroid = (0.68126733472728895, -1.5936430008627676) +station = ('kfyg', 0.0088889674965023317) +zone = ('moz051', 0.0027153644081370303) + +[63334] +centroid = (0.68587221142575083, -1.591536231375978) +station = ('kppq', 0.0081238602040941046) +zone = ('moz036', 0.00083832571782003833) + +[63336] +centroid = (0.68648670694879299, -1.5870874569258144) +station = ('kppq', 0.0057362933918775685) +zone = ('moz036', 0.0032182475335313038) + +[63339] +centroid = (0.6866889382492215, -1.5947308820388282) +station = ('kppq', 0.0094983340794745127) +zone = ('moz036', 0.0026988397416266101) + +[63341] +centroid = (0.67493322071253625, -1.5850362587224081) +station = ('kfyg', 0.0028276104954053673) +zone = ('moz061', 0.0027254073343147144) + +[63343] +centroid = (0.68338040485267848, -1.5852508644072332) +station = ('kset', 0.0066022461773912145) +zone = ('moz052', 0.0024588453625148388) + +[63344] +centroid = (0.68481246495723236, -1.5883190136058991) +station = ('kppq', 0.0076475019665553862) +zone = ('moz036', 0.0029322346533323484) + +[63345] +centroid = (0.68551394769019391, -1.598183003672933) +station = ('kcou', 0.011899639820724273) +zone = ('moz035', 0.0044187917326128602) + +[63347] +centroid = (0.68189788727944944, -1.5841783421285902) +station = ('kset', 0.0051115280169423162) +zone = ('ilz098', 0.0021933871624102924) + +[63348] +centroid = (0.67693399635385232, -1.5872936326703526) +station = ('kfyg', 0.0035164602114566221) +zone = ('moz060', 0.002954426815370329) + +[63349] +centroid = (0.68023135964318271, -1.5908844556201132) +station = ('kfyg', 0.0070815125873395467) +zone = ('moz052', 0.0029709919015269482) + +[63350] +centroid = (0.67895220783439614, -1.5945626148456433) +station = ('kfyg', 0.0074176786573960903) +zone = ('moz051', 0.0016332740792974214) + +[63351] +centroid = (0.67827636398814628, -1.5937079445642344) +station = ('kfyg', 0.0064699604551912175) +zone = ('moz051', 0.0025458500759873394) + +[63352] +centroid = (0.68500310727142777, -1.5997504140609788) +station = ('kcou', 0.010667254444236017) +zone = ('moz042', 0.0025316465623693783) + +[63353] +centroid = (0.68861085991493265, -1.5902257683604104) +station = ('kppq', 0.0055381366280599061) +zone = ('moz036', 0.0020852480563966123) + +[63357] +centroid = (0.67476205627279306, -1.5897663977012857) +station = ('kfyg', 0.0018039438319015972) +zone = ('moz060', 0.0020684075299468407) + +[63359] +centroid = (0.68331753809302176, -1.5944663250308109) +station = ('kfyg', 0.011000840152552047) +zone = ('moz051', 0.0039730164572218535) + +[63361] +centroid = (0.68007009122029838, -1.597900801386178) +station = ('kfyg', 0.010065282242777) +zone = ('moz051', 0.001196844958636414) + +[63362] +centroid = (0.67933101409524899, -1.5859779860269065) +station = ('ksus', 0.0056227253160076578) +zone = ('moz052', 0.0026605897251800771) + +[63363] +centroid = (0.6786521857359783, -1.5961892268019171) +station = ('kfyg', 0.0081335612036742191) +zone = ('moz051', 0.0010264385710991402) + +[63366] +centroid = (0.67819031925602302, -1.5834585508917753) +station = ('ksus', 0.0037635424561140106) +zone = ('moz061', 0.0014852846322026038) + +[63367] +centroid = (0.6767396713949354, -1.5846724622931225) +station = ('ksus', 0.0029343511476223917) +zone = ('moz061', 0.0016359681804708286) + +[63368] +centroid = (0.67633759989515341, -1.5835307028030527) +station = ('ksus', 0.0020740275572592786) +zone = ('moz061', 0.0009132253405636369) + +[63369] +centroid = (0.67954647499140752, -1.5841183551621991) +station = ('kset', 0.0044797988970049964) +zone = ('moz061', 0.00293038652386316) + +[63370] +centroid = (0.68227555907628856, -1.5924464903940632) +station = ('kfyg', 0.0094126910433492642) +zone = ('moz051', 0.0040694362722310225) + +[63373] +centroid = (0.67944924269877904, -1.5775229479051305) +station = ('kset', 0.00065399006604840244) +zone = ('ilz099', 0.0027510504483461832) + +[63376] +centroid = (0.67716863841849051, -1.581399900132463) +station = ('ksus', 0.0026624145074683608) +zone = ('moz061', 0.00096710335869001018) + +[63377] +centroid = (0.68260373333554103, -1.5900541152284768) +station = ('kfyg', 0.0092441490062857273) +zone = ('moz052', 0.0021432644649209687) + +[63379] +centroid = (0.68069420350751908, -1.5881747272366369) +station = ('kfyg', 0.0072138710008016567) +zone = ('moz052', 0.001108270885178022) + +[63381] +centroid = (0.68044107840610235, -1.5926706255766041) +station = ('kfyg', 0.0078047813365038875) +zone = ('moz051', 0.0030459511345859789) + +[63382] +centroid = (0.68600841692057646, -1.5969051783143777) +station = ('kppq', 0.01128491395754295) +zone = ('moz035', 0.0038942494385139259) + +[63383] +centroid = (0.67726393339564939, -1.5916304093424154) +station = ('kfyg', 0.0046615425511661677) +zone = ('moz060', 0.0008266243241666437) + +[63384] +centroid = (0.68229332652807384, -1.5979116224275403) +station = ('kcou', 0.010206484632904364) +zone = ('moz051', 0.0028682655355551073) + +[63385] +centroid = (0.67713526772319244, -1.5857583537938356) +station = ('ksus', 0.0038140000600122279) +zone = ('moz061', 0.0024907315488746605) + +[63386] +centroid = (0.67841344214759791, -1.5746296632442218) +station = ('kaln', 0.0023624621227367189) +zone = ('moz064', 0.0041060640227637366) + +[63387] +centroid = (0.68388204738628666, -1.5885416827118686) +station = ('kppq', 0.0085726506491550936) +zone = ('moz052', 0.002319558868266874) + +[63388] +centroid = (0.6784986840282653, -1.6014638910541243) +station = ('kjef', 0.0071876791852248812) +zone = ('moz050', 0.002397152591807652) + +[63389] +centroid = (0.68086269759350659, -1.5843070950675098) +station = ('kset', 0.0048164741620167944) +zone = ('moz052', 0.0026557993249035731) + +[63390] +centroid = (0.67724703860849, -1.5889489378395292) +station = ('kfyg', 0.0038190122799402104) +zone = ('moz060', 0.0017754070849759201) + +[63401] +centroid = (0.69273292618241522, -1.5962190719321263) +station = ('kuin', 0.0054564893779624601) +zone = ('moz035', 0.0029788529880279912) + +[63430] +centroid = (0.70494941064162719, -1.5977204390612769) +station = ('keok', 0.001967283226161905) +zone = ('moz010', 0.0026244828457498495) + +[63431] +centroid = (0.69359770192019343, -1.6111825475543444) +station = ('kirk', 0.0070294074718424302) +zone = ('moz026', 0.003339028355906137) + +[63432] +centroid = (0.70681015851705586, -1.6055969354426021) +station = ('keok', 0.0074610742122831813) +zone = ('moz009', 0.0021777285616546879) + +[63433] +centroid = (0.69000162552938427, -1.5905402417850347) +station = ('kppq', 0.0050864798156370142) +zone = ('moz036', 0.0033665744490996587) + +[63434] +centroid = (0.69650383220439671, -1.6047813256298527) +station = ('kirk', 0.0087365185063425447) +zone = ('moz026', 0.0025730844435935705) + +[63435] +centroid = (0.70160729711027581, -1.5984367570928804) +station = ('keok', 0.0050796942587733882) +zone = ('moz019', 0.0025688620943702528) + +[63436] +centroid = (0.68950509681048455, -1.5978927379650336) +station = ('kuin', 0.0088369687190268126) +zone = ('moz035', 0.00056073218368091074) + +[63437] +centroid = (0.69338819259678408, -1.6095540506424786) +station = ('kirk', 0.0078449399256512974) +zone = ('moz026', 0.002282565495283453) + +[63438] +centroid = (0.69758216642944881, -1.6002569086099077) +station = ('kuin', 0.0065576058500580441) +zone = ('moz019', 0.0022869810060410557) + +[63439] +centroid = (0.69467479696147683, -1.6032692770856798) +station = ('kirk', 0.010590161693279488) +zone = ('moz026', 0.0028977600834170312) + +[63440] +centroid = (0.69791309830891957, -1.6014937710909185) +station = ('keok', 0.0094212876705431353) +zone = ('moz019', 0.0019715580870761948) + +[63441] +centroid = (0.68906166100743027, -1.5936956050864228) +station = ('kppq', 0.0076961370767599114) +zone = ('moz035', 0.0029454856618697511) + +[63443] +centroid = (0.69234628339322102, -1.603651923070887) +station = ('kirk', 0.011688877247661301) +zone = ('moz034', 0.0034128497279680278) + +[63445] +centroid = (0.70503730542275767, -1.6010291295374526) +station = ('keok', 0.0041595566180638206) +zone = ('moz010', 0.00026839270195277379) + +[63446] +centroid = (0.70040783703513509, -1.605479614410283) +station = ('keok', 0.0094233502991191136) +zone = ('moz018', 0.0021474203922912066) + +[63447] +centroid = (0.69982505414460183, -1.6040169237773567) +station = ('keok', 0.0089885363177345107) +zone = ('moz019', 0.0024192004925392366) + +[63448] +centroid = (0.69856211644456612, -1.5979717664735642) +station = ('kuin', 0.0050340776759293946) +zone = ('moz019', 0.0025410957911942891) + +[63450] +centroid = (0.69235307272401125, -1.6083254435688299) +station = ('kirk', 0.0092341771687011603) +zone = ('moz026', 0.0024572425713396389) + +[63451] +centroid = (0.69645239735134035, -1.6092964051382994) +station = ('kirk', 0.0057352854843611889) +zone = ('moz026', 0.0025343260064109741) + +[63452] +centroid = (0.69975712593011419, -1.6020386279768062) +station = ('keok', 0.0080661468564556232) +zone = ('moz019', 0.00090830389730679187) + +[63453] +centroid = (0.70704607467204794, -1.6033860919725158) +station = ('keok', 0.0058109805758831401) +zone = ('moz010', 0.0024498938739034451) + +[63454] +centroid = (0.69678746566113836, -1.5996008393440833) +station = ('kuin', 0.0060305711613440199) +zone = ('moz027', 0.0020758188284471044) + +[63456] +centroid = (0.69213597121835568, -1.6009613933091826) +station = ('kuin', 0.0085759017648607098) +zone = ('moz027', 0.0029719824547798203) + +[63457] +centroid = (0.70102632936216436, -1.6006744262735697) +station = ('keok', 0.0064270243238398186) +zone = ('moz019', 0.001211244860068892) + +[63458] +centroid = (0.69799994589249881, -1.6060503545289777) +station = ('kirk', 0.0073270493010815637) +zone = ('moz018', 0.0029233235523909561) + +[63459] +centroid = (0.69079039217823812, -1.5946942824844141) +station = ('kuin', 0.0065819329631731536) +zone = ('moz035', 0.0022453852522111846) + +[63460] +centroid = (0.69811894244089967, -1.6093313989898019) +station = ('kirk', 0.0048970522859459005) +zone = ('moz018', 0.0023878233391435902) + +[63461] +centroid = (0.69447596905308961, -1.5981792686683336) +station = ('kuin', 0.0055352784828000389) +zone = ('moz027', 0.00076611807186314693) + +[63462] +centroid = (0.68799495067519645, -1.6004866462993479) +station = ('kuin', 0.011217570348286635) +zone = ('moz035', 0.0030664553089563167) + +[63463] +centroid = (0.69553880475438401, -1.6018800299076774) +station = ('kuin', 0.0079099277013276251) +zone = ('moz027', 0.0022684595713500736) + +[63464] +centroid = (0.69779808111121311, -1.6071619198229878) +station = ('kirk', 0.0065697375305634482) +zone = ('moz018', 0.002711700087337468) + +[63465] +centroid = (0.7073407211563697, -1.6001099867934747) +station = ('keok', 0.0034367133104229253) +zone = ('moz010', 0.0021919471373818378) + +[63467] +centroid = (0.69199856144634619, -1.5929736496413354) +station = ('kuin', 0.0050591428885833761) +zone = ('moz035', 0.0039859098424075198) + +[63468] +centroid = (0.69261757737215102, -1.6059582360510574) +station = ('kirk', 0.010202766085488698) +zone = ('moz026', 0.0021522538440848851) + +[63469] +centroid = (0.69509222735867626, -1.6064223016458703) +station = ('kirk', 0.0083196765678475258) +zone = ('moz026', 0.00068169398056948675) + +[63471] +centroid = (0.69651269847699682, -1.5967634750324085) +station = ('kuin', 0.0038793077979543799) +zone = ('moz027', 0.0025246456330375129) + +[63472] +centroid = (0.70519030098498747, -1.5984746132843561) +station = ('keok', 0.0022988982037787484) +zone = ('moz010', 0.0020299755110962164) + +[63473] +centroid = (0.7024400984161574, -1.6019305222829374) +station = ('keok', 0.0060375546679943973) +zone = ('moz019', 0.002743310912343741) + +[63474] +centroid = (0.7042362516559697, -1.6038454102717632) +station = ('keok', 0.0064477796448685716) +zone = ('moz010', 0.0023178704379714006) + +[63501] +centroid = (0.7010339913575806, -1.6160214729054989) +station = ('kirk', 0.001280996216954844) +zone = ('moz017', 0.00044277657409152104) + +[63530] +centroid = (0.69651936563473948, -1.6136451024091536) +station = ('kirk', 0.0035895922585611967) +zone = ('moz025', 0.0019877112574278235) + +[63531] +centroid = (0.70337227876964759, -1.6099097836506202) +station = ('kirk', 0.0054018987463814155) +zone = ('moz009', 0.0029375251836026338) + +[63532] +centroid = (0.69395840911670315, -1.6157016064134859) +station = ('kirk', 0.0059265391503956176) +zone = ('moz025', 0.0012252396825817905) + +[63533] +centroid = (0.70161839740431842, -1.6125485469467105) +station = ('kirk', 0.002731765050332566) +zone = ('moz018', 0.0034875086139636549) + +[63534] +centroid = (0.69354687793237546, -1.6170197488777622) +station = ('kirk', 0.0064657560441358274) +zone = ('moz025', 0.0019814093044188269) + +[63535] +centroid = (0.70790479411732166, -1.6173085485090894) +station = ('ktvk', 0.0037530875275016977) +zone = ('moz008', 0.0024713406796091925) + +[63536] +centroid = (0.70660162657802761, -1.6119150098815289) +station = ('kirk', 0.0072038261574513375) +zone = ('moz008', 0.0022059599127867871) + +[63537] +centroid = (0.70074840313207687, -1.6083833012335336) +station = ('kirk', 0.0053617638983506468) +zone = ('moz018', 0.00038616284896044655) + +[63538] +centroid = (0.69732774978438572, -1.6175688992736097) +station = ('kirk', 0.0030840623439704249) +zone = ('moz025', 0.0026460395708474286) + +[63539] +centroid = (0.69684403178219545, -1.6188139997086899) +station = ('kirk', 0.00405380468986397) +zone = ('moz025', 0.0030034460366362824) + +[63540] +centroid = (0.69997108584311618, -1.6128044296683453) +station = ('kirk', 0.0019128532684993828) +zone = ('moz017', 0.0029828515496071371) + +[63541] +centroid = (0.70693112728751162, -1.6166468592830736) +station = ('ktvk', 0.0047439076218937443) +zone = ('moz008', 0.0015286050894787659) + +[63543] +centroid = (0.7042825901476103, -1.6059494395916276) +station = ('keok', 0.0079717975389053484) +zone = ('moz009', 0.0024860970296371179) + +[63544] +centroid = (0.70242088234109301, -1.620367115850162) +station = ('kirk', 0.004631280758891361) +zone = ('moz017', 0.0033338076624680334) + +[63545] +centroid = (0.7028831153401911, -1.6225369789894115) +station = ('ktvk', 0.0071681897503906387) +zone = ('moz016', 0.0022333399737026502) + +[63546] +centroid = (0.7040263060002474, -1.6146213523262565) +station = ('kirk', 0.0041817205916163313) +zone = ('moz008', 0.0023156823608090306) + +[63547] +centroid = (0.70050241642730082, -1.6108990013640656) +station = ('kirk', 0.0034248131966242963) +zone = ('moz018', 0.0020009045921762086) + +[63548] +centroid = (0.70749305349348379, -1.6142403644038386) +station = ('ktvk', 0.0059931800246647519) +zone = ('moz008', 0.0012292365602597525) + +[63549] +centroid = (0.69845903729894332, -1.6141891564435851) +station = ('kirk', 0.0016542262373839458) +zone = ('moz017', 0.0033661341839203766) + +[63551] +centroid = (0.70686820816797724, -1.6185413618262359) +station = ('ktvk', 0.0038152342984896937) +zone = ('moz007', 0.0037425452739319361) + +[63552] +centroid = (0.69399811535718603, -1.6133217976185141) +station = ('kirk', 0.0060718861580368808) +zone = ('moz025', 0.0020839700286267794) + +[63555] +centroid = (0.70662105209260229, -1.6090745214304933) +station = ('kirk', 0.0082489661706003341) +zone = ('moz009', 0.00084994850591576479) + +[63556] +centroid = (0.70132539152949369, -1.6253778339595901) +station = ('kcdj', 0.0088347668548222451) +zone = ('moz016', 0.0005275361375744927) + +[63557] +centroid = (0.6976252935152657, -1.6210403766091188) +station = ('kirk', 0.0049368199996679095) +zone = ('moz024', 0.0035275032345430078) + +[63558] +centroid = (0.69375870854368993, -1.6188121671129752) +station = ('kirk', 0.0066842519169661111) +zone = ('moz025', 0.0028761421410907506) + +[63559] +centroid = (0.70196833591934327, -1.618822324929222) +station = ('kirk', 0.0034074743909523505) +zone = ('moz017', 0.0020762370964295309) + +[63560] +centroid = (0.70440835857350892, -1.6252577378537603) +station = ('ktvk', 0.0063100960545038453) +zone = ('moz007', 0.0025009194740602632) + +[63561] +centroid = (0.70545442166069172, -1.6151427519869972) +station = ('kirk', 0.0055787191085797452) +zone = ('moz008', 0.0009227360821177803) + +[63563] +centroid = (0.70344713594126562, -1.6068537993968406) +station = ('kirk', 0.0073744272787159473) +zone = ('moz009', 0.0028001836137458002) + +[63565] +centroid = (0.70652010224866701, -1.6222359969599049) +station = ('ktvk', 0.0035358153379856042) +zone = ('moz007', 0.00091417228330769945) + +[63566] +centroid = (0.69888699203153237, -1.6218580633636781) +station = ('kirk', 0.0051135446568486087) +zone = ('moz016', 0.0038330060436230868) + +[63567] +centroid = (0.70544105243862154, -1.6182648144062572) +station = ('ktvk', 0.0051476217473437613) +zone = ('moz008', 0.0027893822321145624) + +[63601] +centroid = (0.66016126006913933, -1.5803344115307054) +station = ('kfam', 0.0018581813692237204) +zone = ('moz074', 0.0010438813324467355) + +[63620] +centroid = (0.65243428604483245, -1.5821749310401034) +station = ('kfam', 0.0073676002354444783) +zone = ('moz084', 0.0034643395748655899) + +[63621] +centroid = (0.65412090242078957, -1.5814470240222669) +station = ('kfam', 0.0055945869678204847) +zone = ('moz084', 0.0026279772921069273) + +[63622] +centroid = (0.65957765687385739, -1.5866343869052892) +station = ('kfam', 0.0065541641339389384) +zone = ('moz073', 0.0030076330565132516) + +[63623] +centroid = (0.65772828854515164, -1.5862004282400732) +station = ('kfam', 0.0063632882279789169) +zone = ('moz084', 0.0027222977187184509) + +[63624] +centroid = (0.65895794281635178, -1.5818624123842415) +station = ('kfam', 0.0027762021838740793) +zone = ('moz074', 0.0024204324630188834) + +[63625] +centroid = (0.65545660289734087, -1.5877568779604168) +station = ('kfam', 0.0083069644203624567) +zone = ('moz084', 0.0027433225953881831) + +[63626] +centroid = (0.66444654952826843, -1.5827785357086133) +station = ('kfam', 0.0063386470371644566) +zone = ('moz073', 0.0032341783077189973) + +[63627] +centroid = (0.6640842017222619, -1.5753273760659989) +station = ('kfam', 0.005481137214520892) +zone = ('moz075', 0.002850396128672464) + +[63628] +centroid = (0.66227741942730478, -1.5799547151519342) +station = ('kfam', 0.0033690512503318179) +zone = ('moz074', 0.0024670630649995147) + +[63629] +centroid = (0.65290400650642166, -1.5923833269284333) +station = ('kfam', 0.012749088601905842) +zone = ('moz099', 0.0038001093509211735) + +[63630] +centroid = (0.66374175066972807, -1.5833189070983231) +station = ('kfam', 0.0060311987891768634) +zone = ('moz073', 0.0024983791193704374) + +[63631] +centroid = (0.65894157162796807, -1.5845501670724351) +station = ('kfam', 0.0048988044066455658) +zone = ('moz084', 0.0034854733219061764) + +[63633] +centroid = (0.65351178251184361, -1.5886067136797979) +station = ('kfam', 0.009885614097883362) +zone = ('moz099', 0.0015855320203588933) + +[63636] +centroid = (0.65089682550675065, -1.5808412900520696) +station = ('kfam', 0.0084872206120304976) +zone = ('moz100', 0.0035357448856936876) + +[63637] +centroid = (0.65820355915376227, -1.579843171159439) +station = ('kfam', 0.0015091684360605696) +zone = ('moz074', 0.0018236134684189991) + +[63638] +centroid = (0.64952457783566264, -1.5885788233183511) +station = ('kpof', 0.012532175702112408) +zone = ('moz099', 0.00266182298535044) + +[63640] +centroid = (0.65894336931709763, -1.5774383867028712) +station = ('kfam', 0.00075763363678251589) +zone = ('moz074', 0.0016025942145993944) + +[63645] +centroid = (0.655173493039375, -1.5767619145380907) +station = ('kfam', 0.004175359249456845) +zone = ('moz085', 0.0010581767893232102) + +[63648] +centroid = (0.6601726919757398, -1.5829375701100552) +station = ('kfam', 0.0037586963937393768) +zone = ('moz074', 0.0030817640124651364) + +[63650] +centroid = (0.65665180436910664, -1.5814330439349582) +station = ('kfam', 0.0034884693707455338) +zone = ('moz084', 0.002562055042563681) + +[63653] +centroid = (0.66078664644671392, -1.5811215201167699) +station = ('kfam', 0.0027260504735200858) +zone = ('moz074', 0.0018533010824394842) + +[63654] +centroid = (0.65428080948685741, -1.5857682323574021) +station = ('kfam', 0.0076266507131156278) +zone = ('moz084', 0.0016605924285178703) + +[63655] +centroid = (0.65258836371119855, -1.574096849130173) +station = ('kfam', 0.0073825547259270125) +zone = ('moz085', 0.0026461640179263383) + +[63656] +centroid = (0.65612555269304529, -1.5847119241875098) +station = ('kfam', 0.0058685843042307383) +zone = ('moz084', 0.00074086377555935765) + +[63660] +centroid = (0.66164119455507531, -1.582817770710198) +station = ('kfam', 0.0043116068354829666) +zone = ('moz073', 0.0027531304332986915) + +[63662] +centroid = (0.65506437505454018, -1.5716694277532068) +station = ('kfam', 0.0066911160941741784) +zone = ('moz086', 0.0036843056435051508) + +[63663] +centroid = (0.65670112737376796, -1.5820940175759812) +station = ('kfam', 0.0038395807017719275) +zone = ('moz084', 0.002140411755264803) + +[63664] +centroid = (0.66147676708624503, -1.586985494790913) +station = ('kfam', 0.0071983586597427216) +zone = ('moz073', 0.0012818676514105131) + +[63665] +centroid = (0.65088289777931962, -1.5855255268716195) +station = ('kfam', 0.010034196904745298) +zone = ('moz099', 0.0021184367317953795) + +[63666] +centroid = (0.6528051859641737, -1.5892245078751264) +station = ('kfam', 0.010696855790725424) +zone = ('moz099', 0.0013970630736696327) + +[63670] +centroid = (0.66130839517330509, -1.5739583398007346) +station = ('kfam', 0.0040903582474188646) +zone = ('moz075', 0.00020442153986823243) + +[63673] +centroid = (0.66046454593325832, -1.5706402594531832) +station = ('ksar', 0.0067007611693722267) +zone = ('moz075', 0.0029563967393110876) + +[63674] +centroid = (0.66386488364845631, -1.5823033872730503) +station = ('kfam', 0.0056470934032202139) +zone = ('moz073', 0.0032724361078706587) + +[63675] +centroid = (0.65126049976298872, -1.5829233805832363) +station = ('kfam', 0.0086823100749521247) +zone = ('moz084', 0.0043405519873606973) + +[63701] +centroid = (0.65162372023362125, -1.5633717834233753) +station = ('kcgi', 0.001783585213864153) +zone = ('moz087', 0.0017447110890033875) + +[63703] +centroid = (0.65052458168388516, -1.5627644612035587) +station = ('kcgi', 0.00091020001912021258) +zone = ('moz087', 0.0027974007895525286) + +[63730] +centroid = (0.64748727245310211, -1.569350513495837) +station = ('kcgi', 0.0052069905108331604) +zone = ('moz086', 0.0041901165356927677) + +[63732] +centroid = (0.65614143518923851, -1.5633949090359642) +station = ('kmdh', 0.0055828681935300595) +zone = ('moz087', 0.0039653958873398102) + +[63735] +centroid = (0.64538280680092486, -1.5668812740299929) +station = ('kcgi', 0.0052031786492375597) +zone = ('moz110', 0.00317682910507512) + +[63736] +centroid = (0.64739812103491023, -1.5622494494478805) +station = ('kcgi', 0.0026486699092563501) +zone = ('moz111', 0.0010727938847043279) + +[63738] +centroid = (0.64733982703789372, -1.5700498494738186) +station = ('kcgi', 0.0057721876158482498) +zone = ('moz110', 0.0040939152675899832) + +[63739] +centroid = (0.65202970127092763, -1.5673101712403781) +station = ('kcgi', 0.0037212197080966338) +zone = ('moz087', 0.0016654619092957808) + +[63740] +centroid = (0.64883258969383195, -1.5652238570124217) +station = ('kcgi', 0.001690053147845615) +zone = ('moz111', 0.0026450901649111157) + +[63742] +centroid = (0.6485410498955787, -1.5611296636530934) +station = ('kcgi', 0.0023100575813469622) +zone = ('ilz092', 0.0016145697991503897) + +[63743] +centroid = (0.65486985810940546, -1.5675872946190097) +station = ('kcgi', 0.0059734308550787214) +zone = ('moz087', 0.0030125642499547419) + +[63744] +centroid = (0.64919268602510338, -1.5662280321975566) +station = ('kcgi', 0.0022497472209614925) +zone = ('moz087', 0.0033633297061352657) + +[63745] +centroid = (0.64995715769076934, -1.5653885462806398) +station = ('kcgi', 0.001488637616433244) +zone = ('moz087', 0.0025162102051239292) + +[63746] +centroid = (0.65812597926851113, -1.5654700706100004) +station = ('ksar', 0.0076979140016440288) +zone = ('moz076', 0.0017891850728542016) + +[63747] +centroid = (0.65548239886368542, -1.567300065784009) +station = ('kcgi', 0.0063865318075463761) +zone = ('moz076', 0.002652746398806886) + +[63748] +centroid = (0.65744678439009752, -1.5642742931795817) +station = ('kmdh', 0.0055654105069384259) +zone = ('moz076', 0.0028158455710349732) + +[63750] +centroid = (0.64842692281579084, -1.5743347549605122) +station = ('kpof', 0.0069126170413081793) +zone = ('moz086', 0.0038534238465843156) + +[63751] +centroid = (0.65058570311429009, -1.5730335247366878) +station = ('kpof', 0.0092663407319587832) +zone = ('moz086', 0.0016346214662527816) + +[63755] +centroid = (0.65341381718092917, -1.564488671971604) +station = ('kcgi', 0.0036510138811097002) +zone = ('moz087', 0.0011365243253339534) + +[63758] +centroid = (0.64903592055168924, -1.5630461049849531) +station = ('kcgi', 0.00089350130276654913) +zone = ('moz111', 0.0023456936616809893) + +[63760] +centroid = (0.65000925576894142, -1.5690316767480827) +station = ('kcgi', 0.0043878208566298918) +zone = ('moz086', 0.0022431638264303415) + +[63763] +centroid = (0.64689689738032252, -1.5738612820410312) +station = ('kpof', 0.0055577434165432083) +zone = ('moz110', 0.0048680965530710774) + +[63764] +centroid = (0.65135275786724911, -1.5706257906736842) +station = ('kcgi', 0.0058488243335673403) +zone = ('moz086', 0.00049692696620233143) + +[63766] +centroid = (0.6532923771715754, -1.5679493457190434) +station = ('kcgi', 0.0049264941912958151) +zone = ('moz087', 0.0022662097141920965) + +[63767] +centroid = (0.64657846205829617, -1.5640105215697278) +station = ('kcgi', 0.0032887333311788008) +zone = ('moz111', 0.00060512723574373444) + +[63769] +centroid = (0.65488947561019784, -1.5661987979325858) +station = ('kcgi', 0.005474636218608899) +zone = ('moz087', 0.0025227374500739947) + +[63770] +centroid = (0.65620042731795591, -1.5656129956224463) +station = ('kcgi', 0.0065691279233522368) +zone = ('moz076', 0.0025439105783261772) + +[63771] +centroid = (0.64702168842184016, -1.5656254921798904) +station = ('kcgi', 0.0032820791147171722) +zone = ('moz111', 0.0019098775738666429) + +[63774] +centroid = (0.64733333441307617, -1.5666817305366125) +station = ('kcgi', 0.0035548662900645686) +zone = ('moz111', 0.0027979430569293638) + +[63775] +centroid = (0.65818676908635798, -1.5686602881365508) +station = ('ksar', 0.0080246723779715881) +zone = ('moz076', 0.00073845426787791488) + +[63780] +centroid = (0.64906553878909556, -1.5623223343974437) +station = ('kcgi', 0.0012338888328552056) +zone = ('moz111', 0.0024855668625613876) + +[63781] +centroid = (0.65516960095514287, -1.5695459205588904) +station = ('kcgi', 0.0071590857260388089) +zone = ('moz076', 0.0032755268725380704) + +[63782] +centroid = (0.64790349857311769, -1.5714125152873131) +station = ('kpof', 0.0073412689720509508) +zone = ('moz086', 0.003494221150345196) + +[63783] +centroid = (0.65637064927990285, -1.5652086202880517) +station = ('kcgi', 0.0066620977665312973) +zone = ('moz076', 0.0026505279487689828) + +[63784] +centroid = (0.64550189061578844, -1.5654128587171201) +station = ('kcgi', 0.0045961865910240669) +zone = ('moz111', 0.0020889005700830128) + +[63785] +centroid = (0.65042900745404608, -1.5676933582776535) +station = ('kcgi', 0.0033698379234876619) +zone = ('moz087', 0.0027977682239800628) + +[63787] +centroid = (0.64788519006926437, -1.5731198138149067) +station = ('kpof', 0.0066946881114580076) +zone = ('moz086', 0.0038133300528716426) + +[63801] +centroid = (0.64411004289720053, -1.5641278251487543) +station = ('kcgi', 0.0057544121025189182) +zone = ('moz111', 0.0026766552331063467) + +[63820] +centroid = (0.64270461651703215, -1.5590253725338414) +station = ('kcir', 0.0044456982590494057) +zone = ('moz112', 0.0004862591390671686) + +[63821] +centroid = (0.62915059898555448, -1.5749695835693402) +station = ('kbyh', 0.0043197869113280971) +zone = ('moz113', 0.0044358840736623429) + +[63822] +centroid = (0.63994148105844473, -1.5707759238959407) +station = ('kpof', 0.0047815905930646205) +zone = ('moz110', 0.0033947564900548453) + +[63823] +centroid = (0.64393934969635547, -1.5613781461786997) +station = ('kcir', 0.0044754482790365811) +zone = ('moz112', 0.0026365316342308195) + +[63824] +centroid = (0.64585765853051502, -1.5625354390991122) +station = ('kcgi', 0.004063801532450703) +zone = ('moz111', 0.0010224016205128451) + +[63825] +centroid = (0.64457964118574218, -1.5698493111427645) +station = ('kpof', 0.0059273547814547353) +zone = ('moz110', 0.0013299502488308627) + +[63826] +centroid = (0.63129190853824113, -1.5680342210805678) +station = ('kbyh', 0.0038693204382961909) +zone = ('moz115', 0.0010613593682582258) + +[63827] +centroid = (0.6327867830425743, -1.5688300737661849) +station = ('kbyh', 0.0051267264736488969) +zone = ('moz115', 0.0016303236711253464) + +[63828] +centroid = (0.64141494037285596, -1.5654179376252433) +station = ('kcgi', 0.0085639601527339893) +zone = ('moz114', 0.0027832659723982193) + +[63829] +centroid = (0.62893829713534188, -1.576187072895654) +station = ('kjbr', 0.0059742299820966255) +zone = ('arz018', 0.0038102007158062482) + +[63830] +centroid = (0.63062322054192466, -1.5653777775991549) +station = ('khka', 0.0040184141867156149) +zone = ('moz115', 0.0019346650327844779) + +[63833] +centroid = (0.63966917478854857, -1.5660972895832896) +station = ('kpof', 0.0084456134183509713) +zone = ('moz114', 0.0014798353304397418) + +[63834] +centroid = (0.6442759538958952, -1.5581293030425749) +station = ('kcir', 0.0027296739533928405) +zone = ('moz112', 0.0015226739140491335) + +[63837] +centroid = (0.63638156788973699, -1.5706593359019076) +station = ('kpof', 0.0069962177797776755) +zone = ('moz113', 0.003596075710253967) + +[63839] +centroid = (0.62909932121213086, -1.5675426490967439) +station = ('khka', 0.0019642563863133057) +zone = ('moz115', 0.0029298859395847274) + +[63841] +centroid = (0.64178053449127115, -1.5705249455495041) +station = ('kpof', 0.0046454319705420011) +zone = ('moz110', 0.0015722574598914798) + +[63845] +centroid = (0.6407618207134671, -1.5590047601953754) +station = ('kcir', 0.006307266116889294) +zone = ('moz112', 0.002062977576123756) + +[63846] +centroid = (0.64273917403622161, -1.5672959293536819) +station = ('kpof', 0.007303144695668156) +zone = ('moz110', 0.0020881645447266457) + +[63847] +centroid = (0.63599710676210774, -1.5714758358325756) +station = ('kpof', 0.0069035327777227564) +zone = ('moz113', 0.0030226138744482538) + +[63848] +centroid = (0.6360764319766109, -1.5691582829320225) +station = ('kpof', 0.0080435990949741694) +zone = ('moz113', 0.00397714561016131) + +[63849] +centroid = (0.63073771414085555, -1.570425950474331) +station = ('kbyh', 0.0030283109819668401) +zone = ('moz113', 0.0028116330329702802) + +[63851] +centroid = (0.63284160383437948, -1.5658610418157397) +station = ('khka', 0.0059176638953415163) +zone = ('moz115', 0.0012787680805988169) + +[63852] +centroid = (0.63476132638523319, -1.571071460498181) +station = ('kbyh', 0.0070854219910407752) +zone = ('moz113', 0.0019992571135227675) + +[63853] +centroid = (0.62944845687569972, -1.5685330012742029) +station = ('kbyh', 0.0020482185829377346) +zone = ('moz115', 0.0028186150333282976) + +[63855] +centroid = (0.62952467540413437, -1.571787830889662) +station = ('kbyh', 0.0023388302732013791) +zone = ('moz113', 0.0035718483472862257) + +[63857] +centroid = (0.63223271081823629, -1.5715949894606092) +station = ('kbyh', 0.0046944061898457892) +zone = ('moz113', 0.0010463586670616224) + +[63860] +centroid = (0.6397012364869078, -1.5637218964713255) +station = ('kcir', 0.0089010630312342121) +zone = ('moz114', 0.0012884500776721018) + +[63862] +centroid = (0.63903486977849633, -1.564543056431096) +station = ('kpof', 0.0098147980013422592) +zone = ('moz114', 0.00037231737836206379) + +[63863] +centroid = (0.63817770367625692, -1.5703907995431958) +station = ('kpof', 0.0059199827088445619) +zone = ('moz110', 0.0050922937064366196) + +[63866] +centroid = (0.63754324158657194, -1.5639134987166092) +station = ('kdyr', 0.0096679835017771144) +zone = ('moz114', 0.0013147137036624732) + +[63867] +centroid = (0.64110683740000152, -1.562975174804152) +station = ('kcir', 0.007419580019636449) +zone = ('moz114', 0.0027917148153286291) + +[63868] +centroid = (0.6431392907672413, -1.5654456709070577) +station = ('kcgi', 0.0068781580884332161) +zone = ('moz110', 0.0035067491434541053) + +[63869] +centroid = (0.63873858268467787, -1.5617594482603829) +station = ('kcir', 0.008945895657679585) +zone = ('moz114', 0.0023738967636209697) + +[63870] +centroid = (0.63915945138050367, -1.5683040315296337) +station = ('kpof', 0.0069135482187602185) +zone = ('moz114', 0.0029186880962253567) + +[63873] +centroid = (0.63569905688574468, -1.5650571257089785) +station = ('kdyr', 0.0083098564443896891) +zone = ('tnz001', 0.0029281859383879232) + +[63874] +centroid = (0.63779563364970271, -1.5677011075395324) +station = ('kpof', 0.0079425787154891805) +zone = ('moz114', 0.0025589075312882955) + +[63876] +centroid = (0.63062718243932658, -1.5737687970439682) +station = ('kbyh', 0.0042449213839634552) +zone = ('moz113', 0.0026812810726317034) + +[63877] +centroid = (0.6296401114808613, -1.5683238235633512) +station = ('kbyh', 0.002301536516530478) +zone = ('moz115', 0.0025745003898064237) + +[63878] +centroid = (0.63709790337463301, -1.5676958890050687) +station = ('kpof', 0.0083127408719184028) +zone = ('moz114', 0.0028748496638917338) + +[63879] +centroid = (0.63459326863155852, -1.567527691625054) +station = ('kbyh', 0.007124150140461233) +zone = ('moz115', 0.0026178902764035705) + +[63880] +centroid = (0.63400893239799094, -1.5712129892472251) +station = ('kbyh', 0.0063580027250509565) +zone = ('moz113', 0.0013347867480799848) + +[63882] +centroid = (0.64429316284231974, -1.5572301443185323) +station = ('kcir', 0.002603827345584652) +zone = ('moz112', 0.0017963331261475863) + +[63901] +centroid = (0.64158881007293966, -1.5788347024643443) +station = ('kpof', 0.0020150308054681103) +zone = ('moz109', 0.001076898630277249) + +[63902] +centroid = (0.6417160271221175, -1.5782507502032121) +station = ('kpof', 0.0015441991521579015) +zone = ('moz109', 0.00093926814702835568) + +[63932] +centroid = (0.64024335320586978, -1.5752605648622326) +station = ('kpof', 0.0016868508261406504) +zone = ('moz109', 0.0021870522347021575) + +[63933] +centroid = (0.63753699330784974, -1.5726630611496595) +station = ('kpof', 0.00509403801951083) +zone = ('moz113', 0.0044785957515871963) + +[63934] +centroid = (0.64923841365150559, -1.5772305179889587) +station = ('kpof', 0.0075737838389763352) +zone = ('moz100', 0.0019795275127506774) + +[63935] +centroid = (0.64010580380752014, -1.5868792565993441) +station = ('k4m9', 0.006131131829905212) +zone = ('moz108', 0.00089720930653669625) + +[63936] +centroid = (0.64243693536965385, -1.5730482902221599) +station = ('kpof', 0.0027244730654809811) +zone = ('moz110', 0.0027042320331127291) + +[63937] +centroid = (0.64463947107250053, -1.5844802491826002) +station = ('kpof', 0.0071588437298906711) +zone = ('moz107', 0.0024892141162209448) + +[63939] +centroid = (0.63968641864155829, -1.5825501768292822) +station = ('k4m9', 0.0043988791510784428) +zone = ('moz108', 0.0026669254819538094) + +[63940] +centroid = (0.64172271173315265, -1.5747699877160821) +station = ('kpof', 0.0012444567869373921) +zone = ('moz109', 0.0026582704389705248) + +[63941] +centroid = (0.64377502694728028, -1.5910254956769669) +station = ('k4m9', 0.011074567526134548) +zone = ('moz107', 0.0029126020491519861) + +[63942] +centroid = (0.63799418230540972, -1.5895495579950178) +station = ('k4m9', 0.006538162383144838) +zone = ('moz108', 0.0034141438780988286) + +[63943] +centroid = (0.64275533578509514, -1.5845666953404516) +station = ('kpof', 0.0066850055231043645) +zone = ('moz107', 0.0031339948719131131) + +[63944] +centroid = (0.64774676800628861, -1.5770707505492312) +station = ('kpof', 0.0060768241796444276) +zone = ('moz100', 0.0014183152502523859) + +[63945] +centroid = (0.63936599364418467, -1.5802689267771706) +station = ('kpof', 0.00393103466673004) +zone = ('moz109', 0.0023994286287059405) + +[63951] +centroid = (0.64777678766942293, -1.5752971120567694) +station = ('kpof', 0.0061324838630712223) +zone = ('moz100', 0.0028329129803082785) + +[63952] +centroid = (0.64594743826723755, -1.5820021085375711) +station = ('kpof', 0.0062189892119490914) +zone = ('moz100', 0.0030875014626456539) + +[63953] +centroid = (0.63856788948383281, -1.5819263961546195) +station = ('k4m9', 0.0032725911077323964) +zone = ('moz109', 0.0039449089866480007) + +[63954] +centroid = (0.63804863657807187, -1.579021295614675) +station = ('k4m9', 0.0037213151093014548) +zone = ('moz109', 0.0029179481665801525) + +[63955] +centroid = (0.63885262249800301, -1.5826799420591682) +station = ('k4m9', 0.0035790938326825863) +zone = ('moz108', 0.0027037154395426022) + +[63956] +centroid = (0.64950597262583631, -1.5799021981947414) +station = ('kpof', 0.0083135238099826189) +zone = ('moz100', 0.0019578336344810744) + +[63957] +centroid = (0.64791822915200448, -1.5821107029236303) +station = ('kpof', 0.0077503941507227258) +zone = ('moz100', 0.0026069528139722456) + +[63960] +centroid = (0.64502028446199322, -1.5730908238960311) +station = ('kpof', 0.0042091144373711401) +zone = ('moz110', 0.0031543885297016161) + +[63961] +centroid = (0.63821817786161061, -1.5756322152731523) +station = ('kpof', 0.0035250566181078205) +zone = ('moz109', 0.0031725910551406206) + +[63962] +centroid = (0.64304959829698138, -1.5757095508123085) +station = ('kpof', 0.0014368291513687061) +zone = ('moz109', 0.0028310531484530103) + +[63964] +centroid = (0.65036111414614339, -1.5780389719517751) +station = ('kpof', 0.008769400348189238) +zone = ('moz100', 0.0027022870417805853) + +[63965] +centroid = (0.64516392505943232, -1.588621252272467) +station = ('kpof', 0.010431073443554352) +zone = ('moz107', 0.00092225856670174718) + +[63966] +centroid = (0.64541415291429072, -1.5754165100308986) +station = ('kpof', 0.00378491335943635) +zone = ('moz100', 0.0035920435822319316) + +[63967] +centroid = (0.64473677317829925, -1.5792668459871382) +station = ('kpof', 0.0038436533073468522) +zone = ('moz100', 0.0030187546696251472) + +[64001] +centroid = (0.68267185353624638, -1.6325968299051039) +station = ('kszl', 0.0066488028290862941) +zone = ('moz038', 0.0034202859950229472) + +[64011] +centroid = (0.67997601797361595, -1.6417950292223795) +station = ('klxt', 0.0040559434252019615) +zone = ('moz037', 0.0038686304592907015) + +[64012] +centroid = (0.67700194202163255, -1.650097543020824) +station = ('kojc', 0.0026917662057803255) +zone = ('moz043', 0.0035755810748241772) + +[64014] +centroid = (0.68079639253522328, -1.6450624601150379) +station = ('klxt', 0.001667036670289893) +zone = ('moz037', 0.0012340540953053706) + +[64015] +centroid = (0.68094123740984636, -1.6460654833828667) +station = ('klxt', 0.0011185686144035182) +zone = ('moz037', 0.00046844519532377289) + +[64016] +centroid = (0.68276610131585402, -1.6443751320023101) +station = ('klxt', 0.003363163220024726) +zone = ('moz037', 0.0026231822744907964) + +[64017] +centroid = (0.68409262136053983, -1.641031953820115) +station = ('klxt', 0.006123312742635811) +zone = ('moz030', 0.0027753046566559468) + +[64018] +centroid = (0.68861475199916455, -1.6531978760908965) +station = ('kmci', 0.0027052631489859658) +zone = ('moz028', 0.0014766573528653126) + +[64019] +centroid = (0.67679578373038696, -1.6382582067596754) +station = ('krcm', 0.00088925290400030451) +zone = ('moz044', 0.00099247337170576167) + +[64020] +centroid = (0.6801098672739514, -1.6336244099555082) +station = ('kszl', 0.0041413284049983869) +zone = ('moz038', 0.0030460512588856036) + +[64021] +centroid = (0.68250210281319734, -1.6339598622377416) +station = ('krcm', 0.006173415180703249) +zone = ('moz038', 0.0023555076304398927) + +[64022] +centroid = (0.68407070002513481, -1.6348813960827944) +station = ('krcm', 0.0074381856038299721) +zone = ('moz038', 0.0027239810923326449) + +[64024] +centroid = (0.68639642106658727, -1.6445705739719483) +station = ('kmkc', 0.0062447875764850506) +zone = ('moz029', 0.0026343919010520843) + +[64029] +centroid = (0.6807776651523495, -1.6443235400696212) +station = ('klxt', 0.0021957170911226327) +zone = ('moz037', 0.001808547289527211) + +[64030] +centroid = (0.67860773219992998, -1.6497331008197151) +station = ('klxt', 0.0025900017932305058) +zone = ('moz037', 0.0032670508284237676) + +[64034] +centroid = (0.67820965750413509, -1.6458027938771491) +station = ('klxt', 0.0021075131084106261) +zone = ('moz037', 0.0026988188967199222) + +[64035] +centroid = (0.68574881664763476, -1.6373321001519823) +station = ('krcm', 0.0089116724307032463) +zone = ('moz030', 0.0026309784558968107) + +[64036] +centroid = (0.68406012332986776, -1.639506570960457) +station = ('klxt', 0.0070446315080826601) +zone = ('moz030', 0.0028602425353748693) + +[64037] +centroid = (0.68163594826531015, -1.6359443888637215) +station = ('krcm', 0.0048835171253428927) +zone = ('moz038', 0.00073956978014068809) + +[64040] +centroid = (0.67585711075207933, -1.6403941232449737) +station = ('krcm', 0.0027363864726595928) +zone = ('moz044', 0.0024945356407839185) + +[64048] +centroid = (0.68831881397119643, -1.6469551475157782) +station = ('kmkc', 0.0064505400589646026) +zone = ('moz029', 0.0023514984505735698) + +[64050] +centroid = (0.6827014717736527, -1.6477745097864196) +station = ('kmkc', 0.0025657966277867058) +zone = ('moz037', 0.0020680427483959715) + +[64052] +centroid = (0.68195974174814011, -1.6484675974856791) +station = ('kmkc', 0.0021645303561471465) +zone = ('moz037', 0.0018100884475646915) + +[64053] +centroid = (0.68258694326813674, -1.6487301997249342) +station = ('kmkc', 0.0018288224307927317) +zone = ('moz037', 0.0023889613770857157) + +[64054] +centroid = (0.68260446637382688, -1.6482721206094557) +station = ('kmkc', 0.0021825509966890652) +zone = ('moz037', 0.0021786644494381966) + +[64055] +centroid = (0.68156585584255003, -1.6475558723910222) +station = ('klxt', 0.0015294359347147433) +zone = ('moz037', 0.0010204729377405841) + +[64056] +centroid = (0.68265600594663833, -1.6461910947291325) +station = ('klxt', 0.0026370443746805768) +zone = ('moz037', 0.0018636393295424058) + +[64057] +centroid = (0.68193429484764601, -1.646182472802628) +station = ('klxt', 0.0019466401291087364) +zone = ('moz037', 0.0011655642718004164) + +[64058] +centroid = (0.68371276790213575, -1.646082151277223) +station = ('klxt', 0.0036870417334343357) +zone = ('moz029', 0.0027908751590873149) + +[64060] +centroid = (0.68711715478119839, -1.6469770688511833) +station = ('kmkc', 0.005430160009805794) +zone = ('moz029', 0.0012688831769701243) + +[64061] +centroid = (0.67689792039821373, -1.6420906181844972) +station = ('krcm', 0.0038761428454588747) +zone = ('moz044', 0.0038524640531039573) + +[64062] +centroid = (0.68863241473119485, -1.6434579614803873) +station = ('kmkc', 0.0083568086947299162) +zone = ('moz030', 0.0029521032671651981) + +[64063] +centroid = (0.67914241381627838, -1.6467473486150359) +station = ('klxt', 0.00097568566281391953) +zone = ('moz037', 0.0016860446944785112) + +[64064] +centroid = (0.68023338422511503, -1.6466347225184046) +station = ('klxt', 0.00032154755492461488) +zone = ('moz037', 0.00059349710662643502) + +[64065] +centroid = (0.67988913548345165, -1.6476753401783211) +station = ('klxt', 0.00055810770313241304) +zone = ('moz037', 0.001230578295429623) + +[64066] +centroid = (0.68305196879403818, -1.6428057493922095) +station = ('klxt', 0.0044032908766357673) +zone = ('moz037', 0.0037227807212164457) + +[64067] +centroid = (0.68338153931669221, -1.6376478651202531) +station = ('krcm', 0.0065557714391924066) +zone = ('moz038', 0.0016721983790956719) + +[64068] +centroid = (0.68518685553507774, -1.6474102246649431) +station = ('kmkc', 0.0037694676832864095) +zone = ('moz029', 0.0010032953371365877) + +[64070] +centroid = (0.67869960633175497, -1.643208117597964) +station = ('klxt', 0.0032703370364021199) +zone = ('moz037', 0.0034191395676035708) + +[64071] +centroid = (0.68116409850203352, -1.6376724044495361) +station = ('krcm', 0.0043468133570523761) +zone = ('moz038', 0.00090942816165006193) + +[64072] +centroid = (0.68490327443821364, -1.6457370647775189) +station = ('kmkc', 0.0046854275337657337) +zone = ('moz029', 0.0020907520973937554) + +[64074] +centroid = (0.68213839365037432, -1.6418538468181718) +station = ('klxt', 0.0044953386696463624) +zone = ('moz037', 0.0039491245531575909) + +[64075] +centroid = (0.68067517941867228, -1.6431444654401437) +station = ('klxt', 0.0030592507654112746) +zone = ('moz037', 0.0027284285770514333) + +[64076] +centroid = (0.68038452973833774, -1.6397029030480137) +station = ('krcm', 0.0040766838623510623) +zone = ('moz038', 0.0026321633694689883) + +[64077] +centroid = (0.68459803380533235, -1.6430377036497994) +station = ('klxt', 0.0054554648117538431) +zone = ('moz030', 0.0030067208644059483) + +[64078] +centroid = (0.6754894047852692, -1.6486053912301237) +station = ('kojc', 0.0043845001797265292) +zone = ('moz043', 0.0017109042206319785) + +[64079] +centroid = (0.68694630450072069, -1.6544619482549461) +station = ('kmci', 0.0013148107060092402) +zone = ('moz028', 0.0004597232993090246) + +[64080] +centroid = (0.67656307898121859, -1.6451545087797881) +station = ('klxt', 0.0038172054429336725) +zone = ('moz043', 0.0024161056080072804) + +[64081] +centroid = (0.67905605492488974, -1.6476594402288354) +station = ('klxt', 0.0011570409937595807) +zone = ('moz037', 0.00193686554591677) + +[64082] +centroid = (0.67827179122550607, -1.6477360252764131) +station = ('klxt', 0.0019105006535333311) +zone = ('moz037', 0.0026909853834979195) + +[64083] +centroid = (0.67714224904020037, -1.6483855321042502) +station = ('klxt', 0.0031426942849401419) +zone = ('moz043', 0.0029010927515718478) + +[64084] +centroid = (0.6873864939913662, -1.6417768254382812) +station = ('klxt', 0.0083422838876652753) +zone = ('moz030', 0.0011788967121787613) + +[64085] +centroid = (0.68652248619845879, -1.6396545050678561) +station = ('klxt', 0.0085918207297464872) +zone = ('moz030', 0.00067571675379368419) + +[64086] +centroid = (0.67891861024629518, -1.6453635119577146) +station = ('klxt', 0.0017395971789506788) +zone = ('moz037', 0.0021545412980966141) + +[64088] +centroid = (0.68332359438552615, -1.6437843031439252) +station = ('klxt', 0.0040845141311968902) +zone = ('moz037', 0.0033441055508767414) + +[64089] +centroid = (0.68755161959189726, -1.6503976000258269) +station = ('kmci', 0.002846435197025161) +zone = ('moz029', 0.0023842933512608997) + +[64090] +centroid = (0.6764784305124969, -1.6434644715584972) +station = ('klxt', 0.0045506911847311505) +zone = ('moz043', 0.003260252578719861) + +[64092] +centroid = (0.68447586075769284, -1.6547661940501537) +station = ('kmci', 0.0017816835475435936) +zone = ('ksz104', 0.0019060007178079283) + +[64093] +centroid = (0.67712479574768047, -1.6359282096615555) +station = ('krcm', 0.00097115783568247629) +zone = ('moz044', 0.0013642675693934555) + +[64096] +centroid = (0.68432303972838804, -1.6327992182851652) +station = ('krcm', 0.0082028337978935929) +zone = ('moz031', 0.0038579029622888192) + +[64097] +centroid = (0.68250941574276325, -1.6403349740366238) +station = ('klxt', 0.0057180686504829034) +zone = ('moz038', 0.0027788526779751496) + +[64098] +centroid = (0.68884787562735361, -1.6561686708238863) +station = ('kmci', 0.0036271585111725944) +zone = ('moz028', 0.0022061653823240851) + +[64101] +centroid = (0.68248417828177943, -1.6510921887082428) +station = ('kmkc', 0.00023059742518309636) +zone = ('ksz104', 0.0022291743860108999) + +[64102] +centroid = (0.68231629506103009, -1.6511520011417087) +station = ('kmkc', 0.0004020729376945706) +zone = ('ksz104', 0.0022042545321560355) + +[64105] +centroid = (0.68250620433693965, -1.6509134844461313) +station = ('kmkc', 0.00024582459548496305) +zone = ('ksz104', 0.002365639609175079) + +[64106] +centroid = (0.6825081940122868, -1.6505958519755608) +station = ('kmkc', 0.00042964774685633173) +zone = ('ksz104', 0.0026113907969640012) + +[64108] +centroid = (0.68216010554626916, -1.650845329338841) +station = ('kmkc', 0.00058401659078265394) +zone = ('ksz104', 0.0024674117407909755) + +[64109] +centroid = (0.68182673020584561, -1.650494046920292) +station = ('kmkc', 0.00099811174850557337) +zone = ('moz037', 0.0031487543295307106) + +[64110] +centroid = (0.68128059922960416, -1.6506068475498483) +station = ('kmkc', 0.001480605810217537) +zone = ('moz037', 0.0031073699257747481) + +[64111] +centroid = (0.68168336886108694, -1.6509746407831212) +station = ('kmkc', 0.0010345852829545836) +zone = ('ksz104', 0.0025171341476471227) + +[64112] +centroid = (0.68130629047619351, -1.6509975220496149) +station = ('kmkc', 0.001409842366569918) +zone = ('ksz104', 0.0026734131528713947) + +[64113] +centroid = (0.68092388883708155, -1.651005585470759) +station = ('kmkc', 0.0017917059733233954) +zone = ('ksz104', 0.0028834830072738751) + +[64114] +centroid = (0.67994191424003192, -1.6510570203238153) +station = ('kmkc', 0.0027727765470563657) +zone = ('moz037', 0.0035380819277930223) + +[64116] +centroid = (0.6832756501909738, -1.6506493637704271) +station = ('kmkc', 0.00065352462737365395) +zone = ('ksz104', 0.0026326322478997387) + +[64117] +centroid = (0.68354858477940061, -1.6497315823832657) +station = ('kmkc', 0.0013385226154462185) +zone = ('moz029', 0.002897180137075378) + +[64118] +centroid = (0.68439149154165135, -1.6505991681011396) +station = ('kmkc', 0.0017180555866538618) +zone = ('moz029', 0.0026657153262391042) + +[64119] +centroid = (0.68434302374832345, -1.6495920956694463) +station = ('kmkc', 0.0019962994439821158) +zone = ('moz029', 0.0021651184611850404) + +[64120] +centroid = (0.68303472494102857, -1.6495971920308621) +station = ('kmkc', 0.0011951135176298019) +zone = ('moz037', 0.0031796365284151372) + +[64123] +centroid = (0.68267412246427395, -1.6497416529330498) +station = ('kmkc', 0.0010403220822581053) +zone = ('moz037', 0.0030290609007336748) + +[64124] +centroid = (0.68254983756823939, -1.6500205216409336) +station = ('kmkc', 0.00083953897012632706) +zone = ('moz037', 0.0031334675143043574) + +[64125] +centroid = (0.68253653815933923, -1.6492340937332772) +station = ('kmkc', 0.0014444367150806461) +zone = ('moz037', 0.0026361837756318555) + +[64126] +centroid = (0.68226828105330772, -1.6492659459921262) +station = ('kmkc', 0.0014778688131314311) +zone = ('moz037', 0.0024909587211033608) + +[64127] +centroid = (0.68223415986643121, -1.6500087406684825) +station = ('kmkc', 0.00096116036865567236) +zone = ('moz037', 0.0029638389119234182) + +[64128] +centroid = (0.68182275085515109, -1.6499404284815593) +station = ('kmkc', 0.0012568825805241983) +zone = ('moz037', 0.0027429552453473163) + +[64129] +centroid = (0.68151436862961623, -1.6491957837561959) +station = ('kmkc', 0.0018929286703421352) +zone = ('moz037', 0.0020937237142958469) + +[64130] +centroid = (0.68126628752973784, -1.6500474346179994) +station = ('kmkc', 0.001655922940962863) +zone = ('moz037', 0.002675796655514668) + +[64131] +centroid = (0.6795621131415055, -1.6508198649850543) +station = ('kojc', 0.0026970209041847844) +zone = ('moz037', 0.0034797402902061411) + +[64132] +centroid = (0.6804742745684752, -1.6500737367298266) +station = ('kmkc', 0.00237309891111498) +zone = ('moz037', 0.0026839860687643516) + +[64133] +centroid = (0.68092172462880907, -1.6485660340554915) +station = ('klxt', 0.0014646883384627407) +zone = ('moz037', 0.0014917642860675722) + +[64134] +centroid = (0.6794224518947608, -1.6491201760929997) +station = ('klxt', 0.0017749077633790467) +zone = ('moz037', 0.002379147680081504) + +[64136] +centroid = (0.68090123446339057, -1.6476928283774261) +station = ('klxt', 0.00096429197912434143) +zone = ('moz037', 0.00081366015604832586) + +[64137] +centroid = (0.67955022744929949, -1.6500808402198825) +station = ('klxt', 0.0024505827782282611) +zone = ('moz037', 0.0029569912077108953) + +[64138] +centroid = (0.68010452656644016, -1.6487763636836494) +station = ('klxt', 0.0013741354815773293) +zone = ('moz037', 0.0018036334186070577) + +[64139] +centroid = (0.68012587194319218, -1.6478764544680284) +station = ('klxt', 0.00067505267312818176) +zone = ('moz037', 0.0011831682245129855) + +[64145] +centroid = (0.67847107291949871, -1.6509771016973664) +station = ('kojc', 0.002019303210284336) +zone = ('ksz105', 0.0031068122898897229) + +[64146] +centroid = (0.67863703627807093, -1.6506057130858345) +station = ('kojc', 0.0023486783354795199) +zone = ('moz037', 0.0037761717767642515) + +[64147] +centroid = (0.67810793971532879, -1.6502173598739733) +station = ('kojc', 0.002508466898824589) +zone = ('moz037', 0.0038849284872967968) + +[64149] +centroid = (0.67826823075383202, -1.6487929268582506) +station = ('klxt', 0.0022955716596247777) +zone = ('moz037', 0.0030535860928058486) + +[64150] +centroid = (0.68368379543655267, -1.6516492978054798) +station = ('kmkc', 0.0010645305600858609) +zone = ('ksz104', 0.0020517806640365818) + +[64151] +centroid = (0.68442028947430922, -1.6516080033153773) +station = ('kmkc', 0.001753836459794972) +zone = ('ksz104', 0.0025197321604474368) + +[64152] +centroid = (0.68450197088330256, -1.6532584215626482) +station = ('kmci', 0.0014172022365285669) +zone = ('ksz104', 0.0019032293394325103) + +[64153] +centroid = (0.68547075079120701, -1.6532918097112388) +station = ('kmci', 0.00045275711215860958) +zone = ('moz028', 0.0019526651013648444) + +[64154] +centroid = (0.68556934444065232, -1.6517288848193705) +station = ('kmci', 0.0013450109288698688) +zone = ('moz028', 0.0025402101965761557) + +[64155] +centroid = (0.68543285969314627, -1.6507338377062235) +station = ('kmci', 0.0021254942987770321) +zone = ('moz029', 0.0022519000192614061) + +[64156] +centroid = (0.68544849784324413, -1.6496851217185775) +station = ('kmkc', 0.0029402635136071211) +zone = ('moz029', 0.0014888608726913927) + +[64157] +centroid = (0.68554792925073027, -1.6490482336212324) +station = ('kmkc', 0.0032419778730330903) +zone = ('moz029', 0.0010097123185143736) + +[64158] +centroid = (0.68476797651459909, -1.6490826689673743) +station = ('kmkc', 0.0025723924385621481) +zone = ('moz029', 0.0015911331594427212) + +[64161] +centroid = (0.68344451079610435, -1.6484770920768097) +station = ('kmkc', 0.0021478598099320227) +zone = ('moz029', 0.0026839220043712946) + +[64163] +centroid = (0.68669213220175274, -1.6526206084407995) +station = ('kmci', 0.00098815341699674841) +zone = ('moz028', 0.0013113705321852471) + +[64164] +centroid = (0.68642792425958576, -1.6515540028283207) +station = ('kmci', 0.0015239704564317044) +zone = ('moz028', 0.0021683738903586144) + +[64165] +centroid = (0.68628840263918145, -1.6506685449389065) +station = ('kmci', 0.0021527605818861509) +zone = ('moz029', 0.0021089106365425668) + +[64166] +centroid = (0.68629960765297915, -1.6497400646834306) +station = ('kmci', 0.0028644150347933652) +zone = ('moz029', 0.0013966074010185532) + +[64167] +centroid = (0.68627374187346457, -1.6491117112461273) +station = ('kmkc', 0.0038724837957110308) +zone = ('moz029', 0.0009129488554600174) + +[64192] +centroid = (0.67998821782508745, -1.6497206217155633) +station = ('klxt', 0.0021111668540528968) +zone = ('moz037', 0.0025297979897459465) + +[64401] +centroid = (0.69173241618870951, -1.6530993871612067) +station = ('kstj', 0.0035641405675747215) +zone = ('moz020', 0.0013019320414549408) + +[64402] +centroid = (0.70262014658179306, -1.6463224656619304) +station = ('klwd', 0.0086786714446091817) +zone = ('moz004', 0.0013524496508195659) + +[64420] +centroid = (0.70660248178936114, -1.6456478959060346) +station = ('klwd', 0.0057648530430683539) +zone = ('moz003', 0.0017758477654112067) + +[64421] +centroid = (0.69660148337604588, -1.6569441904237172) +station = ('kstj', 0.0025552629100793708) +zone = ('moz012', 0.0021792462950557981) + +[64422] +centroid = (0.69614078626668929, -1.6493170666859172) +station = ('kstj', 0.0059739834215975481) +zone = ('moz013', 0.0012679486182885214) + +[64423] +centroid = (0.70149793477934574, -1.6554736981690348) +station = ('kstj', 0.0074893075366626663) +zone = ('moz002', 0.0029595095671798252) + +[64424] +centroid = (0.70270252612248718, -1.6412391244023268) +station = ('klwd', 0.0067301397702360759) +zone = ('moz005', 0.0017223512662179518) + +[64426] +centroid = (0.70723725803831139, -1.6381576234348829) +station = ('klwd', 0.0020207532625270744) +zone = ('moz005', 0.0034056258580424394) + +[64427] +centroid = (0.70007533435933778, -1.6551507948041233) +station = ('kstj', 0.0061189852422992904) +zone = ('moz012', 0.0022718176300545404) + +[64428] +centroid = (0.70575198284486429, -1.6597015488424807) +station = ('kicl', 0.0049534013241991758) +zone = ('moz002', 0.0030956443268489202) + +[64429] +centroid = (0.69353670266283618, -1.6445505724987206) +station = ('kmci', 0.010236798086001787) +zone = ('moz021', 0.0033638021922763354) + +[64430] +centroid = (0.69532154616909581, -1.650480014473106) +station = ('kstj', 0.0048743779186022559) +zone = ('moz013', 0.0023532120933981442) + +[64431] +centroid = (0.70735040773371827, -1.6579974617207109) +station = ('kicl', 0.0033259522631655988) +zone = ('moz002', 0.0032852393131797271) + +[64432] +centroid = (0.70273053865698176, -1.6522803739564156) +station = ('kicl', 0.0092727503075732617) +zone = ('moz002', 0.0033231801153455749) + +[64433] +centroid = (0.70229745265639187, -1.6524443127330555) +station = ('kstj', 0.0088341267490200225) +zone = ('moz002', 0.0034647591010440767) + +[64434] +centroid = (0.70270193271054149, -1.653411748737436) +station = ('kicl', 0.0088796945553723788) +zone = ('moz002', 0.0026373140938280334) + +[64436] +centroid = (0.69564856851104184, -1.6526847143842252) +station = ('kstj', 0.0034072918688543012) +zone = ('moz012', 0.002642836476412017) + +[64437] +centroid = (0.70026772200278509, -1.6641275467459056) +station = ('kfnb', 0.003221463482419298) +zone = ('moz011', 0.0018337887623814685) + +[64438] +centroid = (0.70089949628542203, -1.6478310759074766) +station = ('kstj', 0.0095941022405191013) +zone = ('moz004', 0.00093546917429132039) + +[64439] +centroid = (0.6898311417680496, -1.653758336220297) +station = ('kmci', 0.0039260561768252886) +zone = ('moz020', 0.0024674550397118492) + +[64440] +centroid = (0.69089092314315292, -1.6564978922806899) +station = ('kstj', 0.0031694831006983523) +zone = ('moz020', 0.0019126484552313193) + +[64441] +centroid = (0.70498939613479028, -1.6453445751353304) +station = ('klwd', 0.0064714655249765874) +zone = ('moz003', 0.002506179004715889) + +[64442] +centroid = (0.70668198153678941, -1.6408095814201185) +station = ('klwd', 0.0029071781315107292) +zone = ('moz005', 0.0023735836654394278) + +[64443] +centroid = (0.69364421494475914, -1.6520093417768735) +station = ('kstj', 0.0035599401582331121) +zone = ('moz020', 0.0025151517545554396) + +[64444] +centroid = (0.68915081242562215, -1.6519194573203959) +station = ('kmci', 0.0034349322719947942) +zone = ('moz028', 0.0024953216296288798) + +[64445] +centroid = (0.70756071990858349, -1.6606652149356766) +station = ('kicl', 0.0034399324278449029) +zone = ('iaz091', 0.0034707395225770333) + +[64446] +centroid = (0.70366065952195456, -1.6654310109911725) +station = ('kfnb', 0.0046062486448134416) +zone = ('moz001', 0.0019892122090026461) + +[64448] +centroid = (0.69109362568247956, -1.6549694550948411) +station = ('kstj', 0.0032227147653561454) +zone = ('moz020', 0.0011227677286854913) + +[64449] +centroid = (0.69885077644955351, -1.6576871072731214) +station = ('kstj', 0.0048624469008684158) +zone = ('moz012', 0.0025656908216755724) + +[64451] +centroid = (0.69815779347004914, -1.6614435794221887) +station = ('kfnb', 0.0053984741030331422) +zone = ('moz011', 0.0016497080248227126) + +[64453] +centroid = (0.70415341832967016, -1.6489898872643383) +station = ('klwd', 0.0091991638403111278) +zone = ('moz003', 0.002463655177854132) + +[64454] +centroid = (0.69108929726593471, -1.6509514977172397) +station = ('kmci', 0.0055117630160859462) +zone = ('moz020', 0.0030771234891242391) + +[64455] +centroid = (0.70128317201488788, -1.6581498813242876) +station = ('kstj', 0.0073198608301634398) +zone = ('moz002', 0.0035363958255192562) + +[64456] +centroid = (0.70673858256443167, -1.6474351305133692) +station = ('klwd', 0.006955828741494456) +zone = ('moz003', 0.00048029044033859954) + +[64457] +centroid = (0.7009715783835293, -1.6525188382921157) +station = ('kstj', 0.0075897421815365766) +zone = ('moz012', 0.0035139461311532475) + +[64458] +centroid = (0.70711936104733919, -1.6431436800419803) +station = ('klwd', 0.0038516106598831677) +zone = ('moz005', 0.0034582541533497444) + +[64459] +centroid = (0.69689152219114214, -1.6519434730509033) +station = ('kstj', 0.004566010717120152) +zone = ('moz012', 0.0022521039781175731) + +[64461] +centroid = (0.70723511128333139, -1.6546976200638428) +station = ('kicl', 0.0045352174910840192) +zone = ('moz002', 0.0029849098382804802) + +[64463] +centroid = (0.69922424200289524, -1.6490321940454067) +station = ('kstj', 0.0077745401056463857) +zone = ('moz004', 0.0027837110097565687) + +[64465] +centroid = (0.69027593892792027, -1.6456294303225485) +station = ('kmci', 0.0074250648210181817) +zone = ('moz021', 0.0018157795613155604) + +[64466] +centroid = (0.70103278708039685, -1.65991749843083) +station = ('kfnb', 0.0065289812988607214) +zone = ('moz011', 0.0019151639770643549) + +[64467] +centroid = (0.70514195536470714, -1.6434534585309171) +station = ('klwd', 0.0053405647111905968) +zone = ('moz005', 0.0024148526390688992) + +[64468] +centroid = (0.70412781434954341, -1.6559863362769305) +station = ('kicl', 0.0068183027871046974) +zone = ('moz002', 0.00030094735763503804) + +[64469] +centroid = (0.69671255612964267, -1.6469802628037145) +station = ('kstj', 0.0078542239261037289) +zone = ('moz013', 0.00069293814821829803) + +[64470] +centroid = (0.70092609510322246, -1.6620628920539664) +station = ('kfnb', 0.0049127220850447174) +zone = ('moz011', 0.001158886807079453) + +[64471] +centroid = (0.70255089191707398, -1.6439758704826239) +station = ('klwd', 0.0076909874332498082) +zone = ('moz004', 0.002979308873470113) + +[64473] +centroid = (0.69776973696416078, -1.6593928873642656) +station = ('kstj', 0.0042818844954979922) +zone = ('moz011', 0.0027371526343595303) + +[64474] +centroid = (0.69386103719773429, -1.6472346794487776) +station = ('kmci', 0.0092642160885473036) +zone = ('moz013', 0.0024300651391392612) + +[64475] +centroid = (0.70574620580504011, -1.6514936318894942) +station = ('kicl', 0.0073108240556563992) +zone = ('moz003', 0.0027772311611618458) + +[64476] +centroid = (0.70603750125719811, -1.6551060271088094) +station = ('kicl', 0.0053295090786343409) +zone = ('moz002', 0.0017566921312447924) + +[64477] +centroid = (0.69072379041398202, -1.6485128189665981) +station = ('kmci', 0.0061177325548829953) +zone = ('moz021', 0.00079406255727875754) + +[64479] +centroid = (0.7039608736065901, -1.6519018644015355) +station = ('kicl', 0.0084188590101027059) +zone = ('moz002', 0.0031788401211626642) + +[64480] +centroid = (0.69907618572244856, -1.6529223933217618) +station = ('kstj', 0.0057587408599826312) +zone = ('moz012', 0.0017854353515670703) + +[64481] +centroid = (0.70430924132528816, -1.6386500680833334) +station = ('klwd', 0.0048789288956015697) +zone = ('moz005', 0.0013881812707191696) + +[64482] +centroid = (0.70624695822072991, -1.6675988844550746) +station = ('kafk', 0.0046664327321016804) +zone = ('moz001', 0.0016946311001253332) + +[64483] +centroid = (0.69881047679712494, -1.6552547117077867) +station = ('kstj', 0.0048633647314907128) +zone = ('moz012', 0.0010881521873490738) + +[64484] +centroid = (0.6904731960399807, -1.6583620959080376) +station = ('kstj', 0.00383177399245511) +zone = ('moz020', 0.0033176337083214631) + +[64485] +centroid = (0.69725863474600669, -1.6548891350426642) +station = ('kstj', 0.0034608703472203801) +zone = ('moz012', 0.00062211866652060201) + +[64486] +centroid = (0.70738873516409206, -1.6515075247103399) +station = ('kicl', 0.0063177725098402318) +zone = ('moz003', 0.0028288386270441182) + +[64487] +centroid = (0.70338400738222095, -1.6597367521334934) +station = ('kicl', 0.0073032482613442596) +zone = ('moz002', 0.0030137296624955646) + +[64489] +centroid = (0.70226615890290367, -1.6501611777253515) +station = ('kstj', 0.0095782721869581491) +zone = ('moz004', 0.0018810214955456389) + +[64490] +centroid = (0.69344051756775882, -1.6495929334274873) +station = ('kstj', 0.0054291962320105139) +zone = ('moz021', 0.0027000659634403333) + +[64491] +centroid = (0.70591665465978992, -1.6643120105945488) +station = ('ksda', 0.0053615779947972118) +zone = ('moz001', 0.00095421844764259113) + +[64492] +centroid = (0.68889309710827262, -1.6499058884156625) +station = ('kmci', 0.0040251277277009324) +zone = ('moz021', 0.0028650782528443523) + +[64493] +centroid = (0.6917621740524561, -1.6461628902084204) +station = ('kmci', 0.0080922258381644543) +zone = ('moz021', 0.0012986839488953593) + +[64494] +centroid = (0.69794683552336056, -1.6512491636211672) +station = ('kstj', 0.0056592749851170311) +zone = ('moz013', 0.0032152667019072351) + +[64496] +centroid = (0.70652950957333516, -1.66933646444519) +station = ('kafk', 0.0034099942827027769) +zone = ('nez091', 0.0031442888520374756) + +[64497] +centroid = (0.69691798138260241, -1.6444466381417644) +station = ('kstj', 0.0097648320310112155) +zone = ('moz014', 0.0031798895247539963) + +[64498] +centroid = (0.70754958470795581, -1.6636815802154361) +station = ('ksda', 0.003880476452073772) +zone = ('moz001', 0.0023575580737378223) + +[64499] +centroid = (0.70500592440280674, -1.6482852803920156) +station = ('klwd', 0.0082926648200334352) +zone = ('moz003', 0.0015058883867138204) + +[64501] +centroid = (0.69403789141083894, -1.6553476155838704) +station = ('kstj', 0.00096931383312766546) +zone = ('moz020', 0.0019139186478875009) + +[64503] +centroid = (0.69374889979329368, -1.6553353284659365) +station = ('kstj', 0.0010266762827115434) +zone = ('moz020', 0.001634430072441251) + +[64504] +centroid = (0.69274294437232176, -1.6564208534475069) +station = ('kstj', 0.0013241961113677884) +zone = ('moz020', 0.0014476991284655876) + +[64505] +centroid = (0.69545750731782618, -1.6549894042081912) +station = ('kstj', 0.001871318871431132) +zone = ('moz012', 0.0024024364680861705) + +[64506] +centroid = (0.69446502583867953, -1.6546299361954506) +station = ('kstj', 0.001573671809618934) +zone = ('moz020', 0.0022712660381246285) + +[64507] +centroid = (0.69339328895819996, -1.6539358012986398) +station = ('kstj', 0.0021600654186436827) +zone = ('moz020', 0.0013290175530534193) + +[64601] +centroid = (0.69473495846079292, -1.6332633536931482) +station = ('kcdj', 0.00020499706049969155) +zone = ('moz023', 0.0005793708743439571) + +[64620] +centroid = (0.69629091948894595, -1.6421794379901311) +station = ('kcdj', 0.0069224750560126806) +zone = ('moz014', 0.0018133090532569166) + +[64622] +centroid = (0.68927502750848657, -1.6326284029112725) +station = ('kcdj', 0.0056831700531910735) +zone = ('moz031', 0.0012545215032845024) + +[64623] +centroid = (0.68887445699186145, -1.6289811011069175) +station = ('kcdj', 0.006924229005211697) +zone = ('moz031', 0.0024272629540658813) + +[64624] +centroid = (0.69049351167247397, -1.6368478061911389) +station = ('kcdj', 0.0051958710919993356) +zone = ('moz022', 0.0031249657910089775) + +[64625] +centroid = (0.69366440840420462, -1.637169156213016) +station = ('kcdj', 0.0032060016950999745) +zone = ('moz022', 0.0028661083968617262) + +[64628] +centroid = (0.69457412637022165, -1.6238807952469845) +station = ('kirk', 0.0084481670581025986) +zone = ('moz024', 0.0015635250148354199) + +[64630] +centroid = (0.69878955029939349, -1.6258904720674858) +station = ('kcdj', 0.0068915048649715481) +zone = ('moz024', 0.0029972523598362291) + +[64631] +centroid = (0.69506428463735181, -1.6208190514066734) +station = ('kirk', 0.0064064365111768393) +zone = ('moz024', 0.0033288752684556611) + +[64632] +centroid = (0.70631705064348993, -1.6365391796195088) +station = ('klwd', 0.0033687606691513538) +zone = ('moz006', 0.0027568925262183839) + +[64633] +centroid = (0.68690684260633295, -1.6316121849542988) +station = ('kcdj', 0.0081344637918659129) +zone = ('moz031', 0.0012518808567137064) + +[64635] +centroid = (0.69730755632494001, -1.6307282280480413) +station = ('kcdj', 0.003106720252940448) +zone = ('moz015', 0.0033171593987257868) + +[64636] +centroid = (0.7000532733975926, -1.6402685118987077) +station = ('kcdj', 0.0073790407326313643) +zone = ('moz014', 0.0026083556177332124) + +[64637] +centroid = (0.69041729314403932, -1.6391275552600939) +station = ('kcdj', 0.0063432144334531751) +zone = ('moz022', 0.0019330745325747277) + +[64638] +centroid = (0.6914583122296839, -1.6339796193648741) +station = ('kcdj', 0.0035085811850676376) +zone = ('moz023', 0.0030280807313395105) + +[64639] +centroid = (0.68751542146321087, -1.6270441521563466) +station = ('kcdj', 0.0088607948074207049) +zone = ('moz039', 0.0044615546259290555) + +[64640] +centroid = (0.69631041481669076, -1.6394769003631731) +station = ('kcdj', 0.0049105547274445587) +zone = ('moz014', 0.001320593850262332) + +[64641] +centroid = (0.70120154296577208, -1.630129911727165) +station = ('kcdj', 0.0067339039310053955) +zone = ('moz015', 0.0024609085069777509) + +[64642] +centroid = (0.70111258353379791, -1.6377549934297406) +station = ('kcdj', 0.0070466279370553992) +zone = ('moz005', 0.0038210250269848423) + +[64643] +centroid = (0.6913780619906772, -1.6295992269148036) +station = ('kcdj', 0.0045714484910163522) +zone = ('moz031', 0.0037304374770085651) + +[64644] +centroid = (0.69351422282207065, -1.6401763585142024) +station = ('kcdj', 0.0054440038027385668) +zone = ('moz022', 0.0013954448956391651) + +[64645] +centroid = (0.70336891028419113, -1.6287817495997547) +station = ('ktvk', 0.0086829648279964835) +zone = ('moz016', 0.0032122196118747901) + +[64646] +centroid = (0.69986017016915192, -1.628549638262532) +station = ('kcdj', 0.006144511098065855) +zone = ('moz016', 0.0032773192903711567) + +[64647] +centroid = (0.69867512651363273, -1.6403428978314276) +station = ('kcdj', 0.0065479767168587057) +zone = ('moz014', 0.0012293837844235299) + +[64648] +centroid = (0.69794077923085618, -1.6371668174718186) +station = ('kcdj', 0.0042051820749876324) +zone = ('moz014', 0.0024938956834914543) + +[64649] +centroid = (0.69417585968820916, -1.6421172868154676) +station = ('kcdj', 0.0067882427796423913) +zone = ('moz022', 0.0024799992509319676) + +[64650] +centroid = (0.6917727158411382, -1.6418574945563083) +station = ('kcdj', 0.0072747257686793286) +zone = ('moz022', 0.0012423825683188637) + +[64651] +centroid = (0.69406166279525117, -1.6263967920834894) +station = ('kcdj', 0.0054034495150850634) +zone = ('moz024', 0.0020888249184251931) + +[64652] +centroid = (0.69850708621325075, -1.6304550316602267) +station = ('kcdj', 0.0042033637884296279) +zone = ('moz015', 0.002542967641426485) + +[64653] +centroid = (0.69633847971106277, -1.6268579080718664) +station = ('kcdj', 0.0051689257830362561) +zone = ('moz024', 0.0014820342352694753) + +[64654] +centroid = (0.69534512556729022, -1.6366503745461534) +station = ('kcdj', 0.0025776638577477882) +zone = ('moz023', 0.0031814198308591402) + +[64655] +centroid = (0.70592511950666215, -1.6276503050055642) +station = ('ktvk', 0.0062507473572854747) +zone = ('moz006', 0.0041531735055677227) + +[64656] +centroid = (0.69249271651746336, -1.6352476534263256) +station = ('kcdj', 0.0028473208694939946) +zone = ('moz023', 0.0026705860365324268) + +[64657] +centroid = (0.70038481614230141, -1.644514932875395) +station = ('klwd', 0.0097969029730035385) +zone = ('moz004', 0.002874212362555432) + +[64658] +centroid = (0.69224933035327274, -1.6217127996100347) +station = ('kirk', 0.0090763934017293203) +zone = ('moz032', 0.0026618766497492107) + +[64659] +centroid = (0.69437266301466405, -1.6283683683664198) +station = ('kcdj', 0.0038582534228452201) +zone = ('moz024', 0.0029689897703687037) + +[64660] +centroid = (0.69053108861126944, -1.624878250914499) +station = ('kcdj', 0.0078573331384018102) +zone = ('moz032', 0.0020288246150457923) + +[64661] +centroid = (0.70749214592227261, -1.6321804117988707) +station = ('klwd', 0.0053509208060701823) +zone = ('moz006', 0.002103885250730405) + +[64664] +centroid = (0.69376324639974518, -1.6345233243334552) +station = ('kcdj', 0.0014820697333061371) +zone = ('moz023', 0.0014928618864970371) + +[64667] +centroid = (0.70486418621425229, -1.6289379391145158) +station = ('ktvk', 0.0076878760038598011) +zone = ('moz006', 0.0032168414333989099) + +[64668] +centroid = (0.68687551394625979, -1.6354505654051623) +station = ('kcdj', 0.008219383435682244) +zone = ('moz031', 0.0029656725856216752) + +[64670] +centroid = (0.69896535731494691, -1.6430824887984057) +station = ('kcdj', 0.0084916875494341019) +zone = ('moz014', 0.0025825360967554199) + +[64671] +centroid = (0.68996148295658843, -1.6414956878023699) +station = ('kcdj', 0.0080084921303931796) +zone = ('moz022', 0.0023464678412511274) + +[64672] +centroid = (0.70764086542783511, -1.6276082251172987) +station = ('ktvk', 0.0052629260675149218) +zone = ('moz007', 0.0033734591330970135) + +[64673] +centroid = (0.70466462526757923, -1.6333995591879737) +station = ('klwd', 0.0061402356116560738) +zone = ('moz006', 0.00087257944352757508) + +[64674] +centroid = (0.69747952361613907, -1.6255600986933758) +station = ('kcdj', 0.006488349330035682) +zone = ('moz024', 0.0016642309874262981) + +[64676] +centroid = (0.69182156760690139, -1.6241766809150751) +station = ('kcdj', 0.0077013705826760792) +zone = ('moz032', 0.0025186812367467091) + +[64679] +centroid = (0.70227704975743599, -1.6332848561495328) +station = ('kcdj', 0.0073452289978151643) +zone = ('moz015', 0.0021649703623558216) + +[64681] +centroid = (0.69194478785209224, -1.6271783679758249) +station = ('kcdj', 0.0055997972719938867) +zone = ('moz024', 0.0042559080942270395) + +[64682] +centroid = (0.69027986591873725, -1.6317179344536772) +station = ('kcdj', 0.004816097119830734) +zone = ('moz031', 0.002161295223720253) + +[64683] +centroid = (0.69949996911812529, -1.6336463312909131) +station = ('kcdj', 0.0045741783451314728) +zone = ('moz015', 0.00078347797108840986) + +[64686] +centroid = (0.69375020879023275, -1.6340529231934577) +station = ('kcdj', 0.0013034208569874105) +zone = ('moz023', 0.0011726633443731086) + +[64688] +centroid = (0.69494005210119481, -1.6297022362472564) +station = ('kcdj', 0.0027920779423110508) +zone = ('moz023', 0.0024021183746406288) + +[64689] +centroid = (0.69590738338582026, -1.6432297247741037) +station = ('kcdj', 0.0076576292705467803) +zone = ('moz014', 0.0026876090998559166) + +[64701] +centroid = (0.67412492382935263, -1.6463560807033237) +station = ('klxt', 0.0059933529294030827) +zone = ('moz043', 0.00052471079482699454) + +[64720] +centroid = (0.67028800945506073, -1.646604318882835) +station = ('kojc', 0.0091779780899775999) +zone = ('moz053', 0.0025726022575669472) + +[64722] +centroid = (0.66807842262203587, -1.6500781000529567) +station = ('kojc', 0.010034961469613243) +zone = ('moz053', 0.0027985999045272375) + +[64723] +centroid = (0.66953690701146495, -1.6503762197424898) +station = ('kojc', 0.0085669427122169271) +zone = ('moz053', 0.0035157307215358188) + +[64724] +centroid = (0.66589913470482576, -1.640725351830417) +station = ('kgly', 0.005750309878824857) +zone = ('moz067', 0.0037606501997482283) + +[64725] +centroid = (0.67178871335909562, -1.6471135535986892) +station = ('kojc', 0.0077415381259091426) +zone = ('moz043', 0.0027395390451986725) + +[64726] +centroid = (0.67242567126961084, -1.6392471103138555) +station = ('kgly', 0.0044101163235308457) +zone = ('moz054', 0.003042755518841412) + +[64728] +centroid = (0.65804230818417042, -1.6497518107492963) +station = ('kpts', 0.0052573288508231545) +zone = ('moz066', 0.0035910138561032852) + +[64730] +centroid = (0.66775009128315077, -1.6458503017393882) +station = ('kgly', 0.008674776898995009) +zone = ('moz053', 0.00054548553133528443) + +[64733] +centroid = (0.67343213283606596, -1.6375935330206384) +station = ('krcm', 0.0034266459682089222) +zone = ('moz044', 0.0027945276766670629) + +[64734] +centroid = (0.67465237978259773, -1.6503717167930199) +station = ('kojc', 0.0039149517858760559) +zone = ('moz043', 0.0027911523145009989) + +[64735] +centroid = (0.66964454146643548, -1.6361352755240122) +station = ('kgly', 0.00088157750529018711) +zone = ('moz054', 0.00073664454296497035) + +[64738] +centroid = (0.66150882878460404, -1.6345303231037558) +station = ('kgly', 0.0080089090246952075) +zone = ('moz067', 0.0029177163874425107) + +[64739] +centroid = (0.67214863515744183, -1.6422959038111169) +station = ('krcm', 0.0061923830899241325) +zone = ('moz043', 0.0042449393693500736) + +[64740] +centroid = (0.66717284108634622, -1.6354393254847794) +station = ('kgly', 0.0023580504758592756) +zone = ('moz054', 0.0030307781667528629) + +[64741] +centroid = (0.66005270058966514, -1.6504242686567971) +station = ('kpts', 0.0068318902227200735) +zone = ('moz066', 0.003083981454373403) + +[64742] +centroid = (0.67209304642076573, -1.6500551315200005) +station = ('kojc', 0.0062511881504002508) +zone = ('moz043', 0.0035136224104941084) + +[64743] +centroid = (0.67489183895597138, -1.6446636174743725) +station = ('klxt', 0.0055162782818637011) +zone = ('moz043', 0.0017112548102159912) + +[64744] +centroid = (0.66057565359344028, -1.6402416861881046) +station = ('kgly', 0.0098308785904073093) +zone = ('moz078', 0.0027496898236696286) + +[64745] +centroid = (0.66622514475580574, -1.649287727701191) +station = ('kojc', 0.011986339923380353) +zone = ('moz053', 0.0026212075261842814) + +[64746] +centroid = (0.67373374318410306, -1.6492785123627405) +station = ('kojc', 0.0051644509806524066) +zone = ('moz043', 0.0020875157348531721) + +[64747] +centroid = (0.67332753525399391, -1.643789172612538) +station = ('krcm', 0.0062803890951758177) +zone = ('moz043', 0.0026377207873721289) + +[64748] +centroid = (0.65204930131842753, -1.6421931911846368) +station = ('kjln', 0.0067613528977000306) +zone = ('moz089', 0.003564890858033506) + +[64750] +centroid = (0.66219360871662414, -1.6423844269107779) +station = ('kgly', 0.0093275501941795132) +zone = ('moz066', 0.0036707391874164661) + +[64752] +centroid = (0.66435989393090689, -1.6504438687042973) +station = ('kpts', 0.010977295290709043) +zone = ('moz053', 0.0045460851756627474) + +[64755] +centroid = (0.65166084338681107, -1.6459971711959436) +station = ('kjln', 0.0042148338664211599) +zone = ('moz088', 0.0023789218638525264) + +[64756] +centroid = (0.65657619670591028, -1.6408798483758036) +station = ('kjln', 0.010590729472988546) +zone = ('moz078', 0.0028567296996789178) + +[64759] +centroid = (0.65486882836514682, -1.645095691183996) +station = ('kpts', 0.006667056128989433) +zone = ('moz077', 0.0012898177768791538) + +[64761] +centroid = (0.6737241613265097, -1.6350787928211952) +station = ('kszl', 0.0029292811892736542) +zone = ('moz044', 0.0030012437140250025) + +[64762] +centroid = (0.65531282267356161, -1.6493620263674484) +station = ('kpts', 0.0035858838661673577) +zone = ('moz077', 0.00227290486332591) + +[64763] +centroid = (0.66573055335237563, -1.6354073510528828) +station = ('kgly', 0.0037896960207049577) +zone = ('moz067', 0.002118214982184985) + +[64765] +centroid = (0.66315329545912571, -1.6483551982818507) +station = ('kpts', 0.010314257608569369) +zone = ('moz066', 0.0028945785817942435) + +[64767] +centroid = (0.65864113065052976, -1.6441254975593975) +station = ('kpts', 0.0088645700419139467) +zone = ('moz066', 0.0027722418717865123) + +[64769] +centroid = (0.65416141151272844, -1.6505283600933862) +station = ('kpts', 0.0023030603248818454) +zone = ('moz077', 0.0030864824938532454) + +[64770] +centroid = (0.66813746711063093, -1.6404268830750335) +station = ('kgly', 0.0044546610073245042) +zone = ('moz054', 0.0032466206973565653) + +[64771] +centroid = (0.65886568471209128, -1.648817710533629) +station = ('kpts', 0.0063523973923789081) +zone = ('moz066', 0.0024859806701376932) + +[64772] +centroid = (0.66030285863135352, -1.6464510615212173) +station = ('kpts', 0.008627264179206574) +zone = ('moz066', 0.00033216033742682841) + +[64776] +centroid = (0.66406959331642279, -1.6347359403429333) +station = ('kgly', 0.0054434307714441663) +zone = ('moz067', 0.0015592552707556172) + +[64778] +centroid = (0.66181762988915938, -1.6489762911494652) +station = ('kpts', 0.0088931754751414051) +zone = ('moz066', 0.0022361887085489414) + +[64779] +centroid = (0.66483113282894546, -1.6475247008105816) +station = ('kpts', 0.012114654952541371) +zone = ('moz053', 0.0029860379056270178) + +[64780] +centroid = (0.66425838558161088, -1.6414291209446987) +station = ('kgly', 0.0072723746154369062) +zone = ('moz067', 0.0037441055700820768) + +[64781] +centroid = (0.66290252655219906, -1.6373385927767996) +station = ('kgly', 0.0068517259870419052) +zone = ('moz067', 0.0010928415077854537) + +[64783] +centroid = (0.6633165535573573, -1.6425188870763514) +station = ('kgly', 0.0085463933000193611) +zone = ('moz066', 0.0041920883793941724) + +[64784] +centroid = (0.65737217156457473, -1.6446965169307723) +station = ('kpts', 0.0078165783254313462) +zone = ('moz077', 0.003235550235430186) + +[64788] +centroid = (0.67062367117680433, -1.6409506738368496) +station = ('kgly', 0.0047769018419221093) +zone = ('moz054', 0.0031753305597164738) + +[64790] +centroid = (0.66195147918949482, -1.6444605135093178) +station = ('kgly', 0.010591417490416135) +zone = ('moz066', 0.0021428367258102062) + +[64801] +centroid = (0.64768789805061888, -1.6492701871422086) +station = ('kjln', 0.00070388601489941951) +zone = ('moz088', 0.0027131756636556772) + +[64804] +centroid = (0.64616321332266158, -1.6495005531501794) +station = ('kjln', 0.0022304631747734915) +zone = ('moz093', 0.0031304049591937199) + +[64830] +centroid = (0.64981035804738418, -1.647771804526079) +station = ('kjln', 0.00188969319684772) +zone = ('moz088', 0.0010850471222519924) + +[64831] +centroid = (0.63978305752224129, -1.6485680586374236) +station = ('kgmj', 0.0040595290024908522) +zone = ('moz101', 0.0015849045688126776) + +[64832] +centroid = (0.6517095904328194, -1.6506206705575244) +station = ('kpts', 0.0028939663399170359) +zone = ('moz088', 0.004020599727046827) + +[64833] +centroid = (0.64915444586119209, -1.6428756672820441) +station = ('khfj', 0.005351369163250832) +zone = ('moz088', 0.0029349008452043872) + +[64834] +centroid = (0.64905086057008621, -1.6506209149036195) +station = ('kjln', 0.0012186484446683103) +zone = ('moz088', 0.0032509914330246595) + +[64835] +centroid = (0.64836265979273233, -1.6482450330994647) +station = ('kjln', 0.00087010998222568543) +zone = ('moz088', 0.0016548736940207045) + +[64836] +centroid = (0.64907494611376382, -1.6454834160773266) +station = ('kjln', 0.0031455656713220504) +zone = ('moz088', 0.00088836304425421702) + +[64840] +centroid = (0.64606102429495738, -1.6464749027187995) +station = ('kjln', 0.0032608974954312767) +zone = ('moz093', 0.0019390307897941405) + +[64841] +centroid = (0.64713925380025439, -1.6478831914389411) +station = ('kjln', 0.0017047993893469567) +zone = ('moz088', 0.0024277078167553282) + +[64842] +centroid = (0.64208930068924153, -1.6424594411620286) +station = ('khfj', 0.0022793336716782093) +zone = ('moz093', 0.0038396301765778948) + +[64843] +centroid = (0.6411274148318824, -1.6483574672098782) +station = ('kgmj', 0.0046965444733482013) +zone = ('moz101', 0.0022712715897606748) + +[64844] +centroid = (0.6443096911103362, -1.6447732066981049) +station = ('khfj', 0.0030633058450913056) +zone = ('moz093', 0.0014168256861532692) + +[64847] +centroid = (0.63868547231553952, -1.6483063814226724) +station = ('kgmj', 0.0041747598108989661) +zone = ('moz101', 0.0014318257756476989) + +[64848] +centroid = (0.6487699323736853, -1.6404284364180679) +station = ('khfj', 0.0047622774227806461) +zone = ('moz094', 0.0024610882978120976) + +[64849] +centroid = (0.65022073731440566, -1.6483741351042347) +station = ('kjln', 0.0019847914455043544) +zone = ('moz088', 0.0017043997270627766) + +[64850] +centroid = (0.64333762998343802, -1.6476199957877404) +station = ('kjln', 0.0052347686501046852) +zone = ('moz093', 0.0011732862380718025) + +[64854] +centroid = (0.63784781899433751, -1.6485661736818316) +station = ('kvbt', 0.0047937424992059007) +zone = ('moz101', 0.0020863572309262543) + +[64855] +centroid = (0.65092888720510977, -1.6490799288004487) +station = ('kjln', 0.0025472536935649162) +zone = ('moz088', 0.0025728405975587922) + +[64856] +centroid = (0.63819618671303546, -1.6453202626988501) +station = ('kvbt', 0.0038423872765973163) +zone = ('moz101', 0.0015521706232833599) + +[64857] +centroid = (0.65006278501710013, -1.6482642491745292) +station = ('kjln', 0.0018782513377712971) +zone = ('moz088', 0.0015494518167850286) + +[64858] +centroid = (0.64404705396449613, -1.6498683812900372) +station = ('kjln', 0.0043635019240351345) +zone = ('moz093', 0.0026708773928634986) + +[64859] +centroid = (0.64861253858174051, -1.6430178592562044) +station = ('khfj', 0.0048717920683869547) +zone = ('moz088', 0.0029056794351817006) + +[64861] +centroid = (0.64045471257828623, -1.6432985605598025) +station = ('khfj', 0.0040334368537030506) +zone = ('moz101', 0.0029589594754440367) + +[64862] +centroid = (0.64752875892942197, -1.6426955667565311) +station = ('khfj', 0.0037669952330499873) +zone = ('moz088', 0.0035607973714664484) + +[64863] +centroid = (0.63808132659496175, -1.6507907005332536) +station = ('kgmj', 0.0023189655901778017) +zone = ('moz101', 0.0035075367258551701) + +[64865] +centroid = (0.64302601889878697, -1.6507552005362678) +station = ('kgmj', 0.0046915123994231128) +zone = ('moz093', 0.0035536371519070274) + +[64866] +centroid = (0.64349551246757342, -1.643339593250517) +station = ('khfj', 0.0019770892765028046) +zone = ('moz093', 0.002627363174656333) + +[64867] +centroid = (0.64102529561734822, -1.6447128706658636) +station = ('khfj', 0.0042474759029974656) +zone = ('moz101', 0.0023497287180443958) + +[64870] +centroid = (0.64896432714577246, -1.6489482437083856) +station = ('kjln', 0.00065238885272248144) +zone = ('moz088', 0.0019407265125104818) + +[64873] +centroid = (0.64600561009120661, -1.6414073566889265) +station = ('khfj', 0.0020113462259887982) +zone = ('moz094', 0.003379412414730117) + +[64874] +centroid = (0.6415563993087301, -1.6415574550045982) +station = ('khfj', 0.0025161799931740806) +zone = ('moz102', 0.0032622406262763849) + +[65001] +centroid = (0.66829058484590842, -1.6058821920555479) +station = ('kvih', 0.0043195922411257371) +zone = ('moz058', 0.0025318440743734064) + +[65010] +centroid = (0.67707027166184819, -1.6098423441283232) +station = ('kcou', 0.00049451503608942144) +zone = ('moz041', 0.0035835354449434164) + +[65011] +centroid = (0.67001561591870196, -1.6181531307874222) +station = ('kaiz', 0.005519691512119629) +zone = ('moz056', 0.0024396976631044518) + +[65013] +centroid = (0.66819535968191957, -1.6015535137112145) +station = ('kvih', 0.002643829986581392) +zone = ('moz058', 0.0030975467125938651) + +[65014] +centroid = (0.66874342797363084, -1.5992650379959992) +station = ('kvih', 0.0036928222845409322) +zone = ('moz059', 0.002753491555971065) + +[65016] +centroid = (0.67300033837912254, -1.6045488477734868) +station = ('kjef', 0.0030299580934790783) +zone = ('moz049', 0.0019989060003381461) + +[65017] +centroid = (0.66483617683048357, -1.6143336173457725) +station = ('kaiz', 0.00077400444981972282) +zone = ('moz057', 0.0023176186391454562) + +[65018] +centroid = (0.67404959541883647, -1.615539849298411) +station = ('kver', 0.0058018894646449347) +zone = ('moz047', 0.00034380940831844718) + +[65020] +centroid = (0.6633340068498772, -1.6193277199207217) +station = ('kh21', 0.0013981100737117716) +zone = ('moz069', 0.00041606387965876227) + +[65023] +centroid = (0.67463784118992864, -1.6126195818472668) +station = ('kjef', 0.0034875188247807474) +zone = ('moz047', 0.0025732315139051286) + +[65024] +centroid = (0.67403304969752764, -1.6014505218320541) +station = ('kjef', 0.0053791229457703944) +zone = ('moz049', 0.0031238580889912182) + +[65025] +centroid = (0.67502263393011586, -1.6177460327393944) +station = ('kver', 0.0046105912193537789) +zone = ('moz047', 0.0016411773469247842) + +[65026] +centroid = (0.66888628317290666, -1.6155603743704146) +station = ('kaiz', 0.0039210879788460183) +zone = ('moz057', 0.0026775807661122988) + +[65032] +centroid = (0.66927385098660441, -1.6123068537518943) +station = ('kaiz', 0.004904765598903669) +zone = ('moz057', 0.0024047291549262138) + +[65034] +centroid = (0.67299332215552954, -1.619981555165104) +station = ('kdmo', 0.0054852320181752899) +zone = ('moz056', 0.0025452874625234334) + +[65035] +centroid = (0.66957488537598842, -1.6047772415594028) +station = ('kvih', 0.0047211128041936105) +zone = ('moz049', 0.0020489317492556891) + +[65037] +centroid = (0.66747357876975733, -1.6205233053649231) +station = ('kaiz', 0.0048076526428148057) +zone = ('moz056', 0.003190357091245306) + +[65039] +centroid = (0.67563587281609661, -1.6108799423686337) +station = ('kcou', 0.0021400359955188425) +zone = ('moz048', 0.0035939620771798684) + +[65040] +centroid = (0.66930305034499027, -1.6106673089058634) +station = ('kjef', 0.0047625678268997558) +zone = ('moz048', 0.002744979259231773) + +[65041] +centroid = (0.67427298010979919, -1.5967975962192849) +station = ('kfyg', 0.0068102129053713954) +zone = ('moz059', 0.0033618385191725242) + +[65043] +centroid = (0.67410635352611137, -1.6074964819873026) +station = ('kjef', 0.00076320875621116934) +zone = ('moz048', 0.0031928197455159653) + +[65046] +centroid = (0.67695202560502543, -1.6142275013272513) +station = ('kver', 0.0037358168451442344) +zone = ('moz047', 0.0029778547277195806) + +[65047] +centroid = (0.66586003932958104, -1.615798053307951) +station = ('kaiz', 0.00097134817930271549) +zone = ('moz057', 0.0023376768398556879) + +[65048] +centroid = (0.66973728826288648, -1.6064116027775555) +station = ('kjef', 0.0042324467711396504) +zone = ('moz049', 0.0028808306777516027) + +[65049] +centroid = (0.66670704761557398, -1.6174805507068735) +station = ('kaiz', 0.0024393184393739029) +zone = ('moz069', 0.0032591223952106777) + +[65050] +centroid = (0.67271351096984977, -1.6177073038832925) +station = ('kver', 0.0069185148231055791) +zone = ('moz047', 0.0021109456181561954) + +[65051] +centroid = (0.67141358974296439, -1.6021627906997931) +station = ('kjef', 0.005330904792006535) +zone = ('moz049', 0.00089642262813871294) + +[65052] +centroid = (0.66468232605692035, -1.616477527439045) +station = ('kaiz', 0.00096882627736678383) +zone = ('moz069', 0.0022677504137115683) + +[65053] +centroid = (0.67242394339365141, -1.6123170813813108) +station = ('kjef', 0.0033740952528937508) +zone = ('moz048', 0.0013817964594012428) + +[65054] +centroid = (0.6717596710803424, -1.6048204559116823) +station = ('kjef', 0.0033539629086880357) +zone = ('moz049', 0.0012973206076373717) + +[65058] +centroid = (0.66758182408996591, -1.6079343676433355) +station = ('kjef', 0.0061227603123289245) +zone = ('moz058', 0.0031792528902442781) + +[65059] +centroid = (0.67545395714816114, -1.603392741676966) +station = ('kjef', 0.0042307799631377541) +zone = ('moz050', 0.0024837848013477769) + +[65061] +centroid = (0.67368841698342874, -1.5993413612441889) +station = ('kvih', 0.0083318021123614059) +zone = ('moz059', 0.0032709462869654686) + +[65062] +centroid = (0.67202230822618247, -1.5997554406092247) +station = ('kvih', 0.0066352205225026556) +zone = ('moz059', 0.0023432118025199793) + +[65063] +centroid = (0.67581347752077958, -1.6072319424325781) +station = ('kjef', 0.0022808215954988852) +zone = ('moz050', 0.002968234805431957) + +[65064] +centroid = (0.67025608738304177, -1.6139307953544124) +station = ('kaiz', 0.0053942471334784284) +zone = ('moz048', 0.0031529792645916543) + +[65065] +centroid = (0.66558015833073125, -1.6172718791415051) +station = ('kaiz', 0.0016652552935192567) +zone = ('moz069', 0.0023558812817316716) + +[65066] +centroid = (0.66932474478759252, -1.5967117783799645) +station = ('kvih', 0.0053996422894601326) +zone = ('moz059', 0.0016263937817789891) + +[65067] +centroid = (0.67659784593991834, -1.6005218844969453) +station = ('kjef', 0.006743764045438267) +zone = ('moz050', 0.0032635810681926444) + +[65068] +centroid = (0.67763715460289586, -1.6164325328509286) +station = ('kver', 0.0021821661718619103) +zone = ('moz046', 0.0026772189144339607) + +[65069] +centroid = (0.67636765446487279, -1.5985433094437147) +station = ('kfyg', 0.0086192084433270068) +zone = ('moz051', 0.0036694228784734028) + +[65072] +centroid = (0.66788118296326804, -1.6184324707342037) +station = ('kaiz', 0.0038113492866252464) +zone = ('moz056', 0.0034820222474233426) + +[65074] +centroid = (0.67167776277854629, -1.6138735660082395) +station = ('kjef', 0.0047895107676542269) +zone = ('moz047', 0.0030281784820755738) + +[65075] +centroid = (0.66759697354787328, -1.610197483724519) +station = ('kaiz', 0.0047960862690440116) +zone = ('moz057', 0.0024254527406809192) + +[65076] +centroid = (0.66984839592306844, -1.6090898279680335) +station = ('kjef', 0.0038954689840365931) +zone = ('moz048', 0.0025038631581592173) + +[65077] +centroid = (0.67670253078845288, -1.6024317982974028) +station = ('kjef', 0.0054922105948408033) +zone = ('moz050', 0.0018974822024257711) + +[65078] +centroid = (0.67002303356802295, -1.623543458009159) +station = ('kdmo', 0.0060411888722316318) +zone = ('moz056', 0.0019557264852983758) + +[65079] +centroid = (0.66584810127749749, -1.6187632455340417) +station = ('kh21', 0.0032469830996000666) +zone = ('moz069', 0.0021637026759575633) + +[65080] +centroid = (0.67432996510987686, -1.6053351186015103) +station = ('kjef', 0.0024171848314464887) +zone = ('moz049', 0.0034607807254880469) + +[65081] +centroid = (0.67447261086964228, -1.6193560640677742) +station = ('kver', 0.005342900375593697) +zone = ('moz047', 0.0027229240913082412) + +[65082] +centroid = (0.66705284970027157, -1.6130581132751229) +station = ('kaiz', 0.0027294607920708576) +zone = ('moz057', 0.00012732780494822466) + +[65083] +centroid = (0.66568447666012298, -1.613399709116323) +station = ('kaiz', 0.0016583297238268574) +zone = ('moz057', 0.0012959411223058272) + +[65084] +centroid = (0.67080403350170548, -1.6206451642532971) +station = ('kdmo', 0.0065001335422079816) +zone = ('moz056', 0.00044777079665778895) + +[65085] +centroid = (0.67016543498169323, -1.6071781688383238) +station = ('kjef', 0.0036431331916786614) +zone = ('moz049', 0.0032361748773377815) + +[65101] +centroid = (0.6718778647772875, -1.608050938184076) +station = ('kjef', 0.0018314377857867928) +zone = ('moz048', 0.0020159683230254319) + +[65109] +centroid = (0.67324609819109582, -1.6105539497709465) +station = ('kjef', 0.001802805493786454) +zone = ('moz048', 0.0011993819690959168) + +[65201] +centroid = (0.67894955493393305, -1.6098642131038507) +station = ('kcou', 0.0015003475161081406) +zone = ('moz041', 0.0018405066181898476) + +[65202] +centroid = (0.6810339318464198, -1.6108784239321847) +station = ('kcou', 0.0037170395954371671) +zone = ('moz041', 0.00054731714825477062) + +[65203] +centroid = (0.6786594812122515, -1.6126591833679944) +station = ('kcou', 0.0027399441477268045) +zone = ('moz041', 0.0022148814581968777) + +[65215] +centroid = (0.67986112294895718, -1.6113028007398069) +station = ('kcou', 0.0027712136515017239) +zone = ('moz041', 0.00067252373999532203) + +[65230] +centroid = (0.68574942751287304, -1.6179654729862476) +station = ('kver', 0.0061258614706083932) +zone = ('moz040', 0.0025820687704724865) + +[65231] +centroid = (0.68096708573606834, -1.6039189235398572) +station = ('kcou', 0.0055606582589601463) +zone = ('moz050', 0.0031828837244836541) + +[65232] +centroid = (0.68348306511928081, -1.601444308459917) +station = ('kcou', 0.0086664488124787251) +zone = ('moz042', 0.0015052791508564172) + +[65233] +centroid = (0.67923146051471517, -1.6184102701461185) +station = ('kver', 0.00076545221400151542) +zone = ('moz046', 0.0016970539350840885) + +[65236] +centroid = (0.6883673166711094, -1.6243073886227568) +station = ('kcdj', 0.0095636044724725401) +zone = ('moz032', 0.0018986847115636839) + +[65237] +centroid = (0.67660549048204199, -1.619554612723481) +station = ('kver', 0.0033971839856846977) +zone = ('moz046', 0.0013673554187695162) + +[65239] +centroid = (0.68999008890302871, -1.613243484694977) +station = ('kirk', 0.010012596068939018) +zone = ('moz033', 0.0018495196728582463) + +[65240] +centroid = (0.68452926783280377, -1.60789436469688) +station = ('kcou', 0.0071580443021685061) +zone = ('moz041', 0.0047242187220410039) + +[65243] +centroid = (0.68536337813562431, -1.6118887252229941) +station = ('kver', 0.0072319985629127736) +zone = ('moz033', 0.0035630741124993755) + +[65244] +centroid = (0.68913976449145709, -1.6172130964522982) +station = ('kver', 0.0095125998866910193) +zone = ('moz033', 0.0023224192813637856) + +[65246] +centroid = (0.68729147826688752, -1.6230971424128391) +station = ('kver', 0.008777185597589731) +zone = ('moz032', 0.0024106453121479831) + +[65247] +centroid = (0.69176227877221119, -1.6139166930940563) +station = ('kirk', 0.0081841346477756552) +zone = ('moz033', 0.0034195639674768239) + +[65248] +centroid = (0.68309753934080786, -1.6172244061858509) +station = ('kver', 0.0034767754967459236) +zone = ('moz040', 0.00048807404026120384) + +[65250] +centroid = (0.68120375238263875, -1.6203654403340801) +station = ('kver', 0.0026815286480736484) +zone = ('moz040', 0.002771946651677576) + +[65251] +centroid = (0.67791815261246702, -1.6053037899414371) +station = ('kcou', 0.0032863375735431026) +zone = ('moz050', 0.0007038974484864268) + +[65254] +centroid = (0.68435014469167155, -1.6205970455258196) +station = ('kver', 0.0052712800252890319) +zone = ('moz040', 0.0024372452298822176) + +[65255] +centroid = (0.68246843541192648, -1.6095145887480913) +station = ('kcou', 0.0049898524325001758) +zone = ('moz041', 0.0023108576112479142) + +[65256] +centroid = (0.68279009959306891, -1.6136699384444095) +station = ('kver', 0.0043775001376577839) +zone = ('moz041', 0.0030222029991850237) + +[65257] +centroid = (0.68568900421416901, -1.6150196713681466) +station = ('kver', 0.0063730669205016308) +zone = ('moz033', 0.0027178687000741913) + +[65258] +centroid = (0.68975823936519365, -1.608062614436772) +station = ('kirk', 0.011546280535318473) +zone = ('moz034', 0.0018619158150461222) + +[65259] +centroid = (0.68899860226155574, -1.6156463143827826) +station = ('kver', 0.0094853803140361771) +zone = ('moz033', 0.0011677295296453265) + +[65260] +centroid = (0.69081229606035066, -1.6124374567398212) +station = ('kirk', 0.009327797710695699) +zone = ('moz033', 0.0028724157619520172) + +[65261] +centroid = (0.6889724048694833, -1.6219943910315513) +station = ('kver', 0.0099501094386645512) +zone = ('moz032', 0.00079027369746052551) + +[65262] +centroid = (0.67998277239782123, -1.6049229765519446) +station = ('kcou', 0.0043447515044301678) +zone = ('moz050', 0.0022115687663580848) + +[65263] +centroid = (0.6887396303071448, -1.6095455508890215) +station = ('kver', 0.011029154901300272) +zone = ('moz034', 0.0030142392069548822) + +[65264] +centroid = (0.68221977835339476, -1.6002162947982139) +station = ('kcou', 0.0086270941613293597) +zone = ('moz042', 0.0030670066051616406) + +[65265] +centroid = (0.68422793673744697, -1.6037022583665148) +station = ('kcou', 0.0081079977208920219) +zone = ('moz042', 0.00063042131620130986) + +[65270] +centroid = (0.6878977707424454, -1.6125960897155347) +station = ('kver', 0.0091219316223894089) +zone = ('moz033', 0.0014530710796918516) + +[65274] +centroid = (0.68095415284631111, -1.617679413521846) +station = ('kver', 0.0013256165107297629) +zone = ('moz040', 0.0022186536534740315) + +[65275] +centroid = (0.68858590170662914, -1.6056150345069451) +station = ('kcou', 0.011505617344180409) +zone = ('moz034', 0.00074463237245211641) + +[65276] +centroid = (0.67805287457742835, -1.6223282725174579) +station = ('kdmo', 0.0037236455752192679) +zone = ('moz046', 0.0019363220296400995) + +[65278] +centroid = (0.68664015629662833, -1.6128696526224924) +station = ('kver', 0.0079007518843459221) +zone = ('moz033', 0.0020791975051647625) + +[65279] +centroid = (0.68070265090109883, -1.6149268023986481) +station = ('kver', 0.0023183374127960462) +zone = ('moz040', 0.0033499705433378819) + +[65280] +centroid = (0.68491730688539965, -1.6011123817427726) +station = ('kcou', 0.0098807776069436189) +zone = ('moz042', 0.0014912306441141733) + +[65281] +centroid = (0.68885073796732676, -1.6196451953116595) +station = ('kver', 0.0093585596799049976) +zone = ('moz032', 0.0023488967164989869) + +[65282] +centroid = (0.68744904659175765, -1.6026131031001001) +station = ('kcou', 0.011306719443664343) +zone = ('moz042', 0.0030147392847359607) + +[65283] +centroid = (0.6895668640127125, -1.6026926552074059) +station = ('kuin', 0.011213566210693042) +zone = ('moz034', 0.0023444872252830233) + +[65284] +centroid = (0.68428094238683002, -1.6108223988631956) +station = ('kcou', 0.0068812870900120671) +zone = ('moz041', 0.0037712979367261999) + +[65285] +centroid = (0.68542106126740288, -1.6057000844013949) +station = ('kcou', 0.0084688066564785648) +zone = ('moz042', 0.0023511418197086874) + +[65286] +centroid = (0.68953714105555108, -1.6270017581088156) +station = ('kcdj', 0.0072726150680511841) +zone = ('moz031', 0.0040876244465250077) + +[65287] +centroid = (0.67869400382485601, -1.6149555654247207) +station = ('kver', 0.0022406093161502763) +zone = ('moz041', 0.0035047916099554197) + +[65301] +centroid = (0.67541220887245357, -1.6270955346495253) +station = ('kdmo', 0.00086585020588114822) +zone = ('moz045', 0.00096382321262278824) + +[65305] +centroid = (0.67602005469104565, -1.6328107025516434) +station = ('kszl', 4.3248668798676823e-05) +zone = ('moz044', 0.0034514977417547574) + +[65320] +centroid = (0.68190013875418454, -1.6222354908144221) +station = ('kver', 0.0042761964061336123) +zone = ('moz039', 0.0036434599794944083) + +[65321] +centroid = (0.68229496713757065, -1.6313353408283475) +station = ('kszl', 0.0063673902126444738) +zone = ('moz039', 0.0036886719383505146) + +[65322] +centroid = (0.68036576744887878, -1.6223183590473065) +station = ('kver', 0.003763680133622061) +zone = ('moz046', 0.0030854018696607781) + +[65323] +centroid = (0.67097270212061821, -1.6339338393785943) +station = ('kgly', 0.0016955651573652153) +zone = ('moz054', 0.0026056252912039671) + +[65324] +centroid = (0.66543840268888432, -1.6236783021471681) +station = ('kh21', 0.005414512017052041) +zone = ('moz069', 0.0040219113533928874) + +[65325] +centroid = (0.67090062002251072, -1.6264577564342615) +station = ('kdmo', 0.0048424283037352264) +zone = ('moz055', 0.0028684113163462898) + +[65326] +centroid = (0.66611956978935272, -1.6255851790747269) +station = ('kh21', 0.0070551413427651808) +zone = ('moz055', 0.0030370902217821895) + +[65327] +centroid = (0.680224151433372, -1.6318010470326572) +station = ('kszl', 0.004265219775092241) +zone = ('moz039', 0.0048824097468754433) + +[65329] +centroid = (0.67406420382467569, -1.6225749748072271) +station = ('kdmo', 0.0031955270442504298) +zone = ('moz056', 0.0036123671205324963) + +[65330] +centroid = (0.68447844384498568, -1.6223334910519214) +station = ('kver', 0.0060961204389003614) +zone = ('moz039', 0.003658570940177395) + +[65332] +centroid = (0.67411987982781429, -1.6303959173584617) +station = ('kszl', 0.0026494455603606596) +zone = ('moz045', 0.0025343510719162284) + +[65333] +centroid = (0.6789464831544495, -1.6287402282168497) +station = ('kdmo', 0.0038301397301091751) +zone = ('moz045', 0.003047196395478) + +[65334] +centroid = (0.67797855845787847, -1.6271156233892157) +station = ('kdmo', 0.00238993954013941) +zone = ('moz045', 0.0021905357091746495) + +[65335] +centroid = (0.67203401938546337, -1.6291270280856764) +station = ('kdmo', 0.0044056010814731896) +zone = ('moz055', 0.0037379354357776752) + +[65336] +centroid = (0.67706048036474442, -1.6331980085659534) +station = ('kszl', 0.0010922131243357321) +zone = ('moz044', 0.0032552291812909043) + +[65337] +centroid = (0.67709163449189258, -1.6306851882286872) +station = ('kszl', 0.0019353010524774262) +zone = ('moz045', 0.0023017023427820658) + +[65338] +centroid = (0.66957020789359301, -1.6280415903705687) +station = ('kdmo', 0.0063540382351216871) +zone = ('moz055', 0.0012048355801307935) + +[65339] +centroid = (0.6840978224417108, -1.6296965988337724) +station = ('kszl', 0.0084166610041364661) +zone = ('moz039', 0.002553986260805728) + +[65340] +centroid = (0.6822642144361506, -1.6263497205535631) +station = ('kdmo', 0.0065346608415903992) +zone = ('moz039', 0.00083969241580752422) + +[65344] +centroid = (0.686156403387853, -1.6265104828309644) +station = ('kver', 0.0095219413405903171) +zone = ('moz039', 0.003096836480986024) + +[65345] +centroid = (0.67261310217798254, -1.6253709748156298) +station = ('kdmo', 0.0031669749010252496) +zone = ('moz056', 0.0038447288462604401) + +[65347] +centroid = (0.68048513051642268, -1.6238586993786541) +station = ('kdmo', 0.0050529362280289378) +zone = ('moz039', 0.0033852146972257339) + +[65348] +centroid = (0.67568718549610529, -1.6227064504597801) +station = ('kdmo', 0.0026210245009968313) +zone = ('moz046', 0.0031801127270461305) + +[65349] +centroid = (0.68470088605815238, -1.6239494914063428) +station = ('kver', 0.0070861184535507956) +zone = ('moz039', 0.0026797409534107227) + +[65350] +centroid = (0.67449941912695299, -1.6247387292940947) +station = ('kdmo', 0.0016107562886364638) +zone = ('moz045', 0.0030134497118721334) + +[65351] +centroid = (0.68057836600506416, -1.6298096961693018) +station = ('kszl', 0.0050991796504757858) +zone = ('moz039', 0.0034721780169325233) + +[65354] +centroid = (0.67463855677492202, -1.6209998151573024) +station = ('kdmo', 0.0041026601499020068) +zone = ('moz046', 0.0034354808440433308) + +[65355] +centroid = (0.66705689886413611, -1.6295606551383346) +station = ('kgly', 0.0049396543943907032) +zone = ('moz055', 0.0017025861274061664) + +[65360] +centroid = (0.67223818800136159, -1.6321892082583007) +station = ('kgly', 0.0035191103631886586) +zone = ('moz054', 0.0044031979776114581) + +[65401] +centroid = (0.6614803973710891, -1.6016638359732329) +station = ('kvih', 0.0040719088703718691) +zone = ('moz071', 0.00051759306098043902) + +[65436] +centroid = (0.65665920456513505, -1.6050677865199825) +station = ('ktbn', 0.0030250790322181261) +zone = ('moz070', 0.0048608068617270461) + +[65438] +centroid = (0.64457341036031257, -1.5969954816498761) +station = ('kuno', 0.0056296358977378259) +zone = ('moz098', 0.0041870611243340228) + +[65439] +centroid = (0.65720854694720032, -1.5894715068708687) +station = ('kfam', 0.0090032334863784924) +zone = ('moz084', 0.0044564114476947905) + +[65440] +centroid = (0.6565915730566203, -1.5912642916252249) +station = ('kfam', 0.010527799166914844) +zone = ('moz083', 0.0046397837663086153) + +[65441] +centroid = (0.66490726409091738, -1.5910250767979461) +station = ('kfyg', 0.0088664117453315146) +zone = ('moz072', 0.0028908243973495506) + +[65443] +centroid = (0.66552341767674894, -1.6073543772796053) +station = ('kvih', 0.0045024228440212703) +zone = ('moz058', 0.0023873761144121443) + +[65444] +centroid = (0.65238861077830779, -1.6067013448866789) +station = ('ktbn', 0.0062713804160219721) +zone = ('moz082', 0.0016724469411224391) + +[65446] +centroid = (0.65934708142637644, -1.5931599286324007) +station = ('kvih', 0.0091165398317799053) +zone = ('moz072', 0.0034801659378039087) + +[65449] +centroid = (0.66064260442354672, -1.5968833093388504) +station = ('kvih', 0.0061725820691745396) +zone = ('moz072', 0.0034065646946417061) + +[65452] +centroid = (0.66264723724250985, -1.6103477042132381) +station = ('ktbn', 0.0044682994729683383) +zone = ('moz070', 0.0026109759021590651) + +[65453] +centroid = (0.66508376923817158, -1.5959257693513287) +station = ('kvih', 0.0045123900551258317) +zone = ('moz072', 0.0029394483616237022) + +[65456] +centroid = (0.6594657987220971, -1.5915619051692746) +station = ('kvih', 0.010003241437702298) +zone = ('moz072', 0.0036987848997497869) + +[65457] +centroid = (0.65991091004123326, -1.6067420459648356) +station = ('ktbn', 0.0016828888901399409) +zone = ('moz070', 0.0020570196782562916) + +[65459] +centroid = (0.66374382761153794, -1.6073912037268223) +station = ('kvih', 0.0048817630003514332) +zone = ('moz058', 0.0032967367981440424) + +[65461] +centroid = (0.65758302479150821, -1.6064662839430206) +station = ('ktbn', 0.0015831983641038897) +zone = ('moz070', 0.0034313118271156189) + +[65462] +centroid = (0.65769896701371811, -1.6030632235141895) +station = ('ktbn', 0.0040249789367120068) +zone = ('moz071', 0.0034693625012280657) + +[65463] +centroid = (0.66067025043889838, -1.619392314556338) +station = ('kh21', 0.0024111738332707501) +zone = ('moz069', 0.0030383604900634503) + +[65464] +centroid = (0.64902822364968782, -1.6039537777650195) +station = ('kuno', 0.0052926187439122294) +zone = ('moz082', 0.0024553624030785449) + +[65466] +centroid = (0.64935768945258687, -1.5943311667335365) +station = ('kuno', 0.0095206884733017548) +zone = ('moz098', 0.0011078658167557153) + +[65468] +centroid = (0.65013388973082631, -1.6020416124898269) +station = ('kuno', 0.0065783968897552602) +zone = ('moz082', 0.0026981572497697332) + +[65470] +centroid = (0.65532634897526465, -1.6127156622225891) +station = ('ktbn', 0.004928889934740951) +zone = ('moz081', 0.0032462042029996856) + +[65473] +centroid = (0.65810140503264303, -1.6083992535428966) +station = ('ktbn', 0.00055293261512081356) +zone = ('moz070', 0.0021887167072537814) + +[65479] +centroid = (0.65174130306532796, -1.5993523393651841) +station = ('kuno', 0.008807831550957405) +zone = ('moz082', 0.0045857201536772859) + +[65483] +centroid = (0.65098981664929689, -1.6049191368275901) +station = ('kuno', 0.0072946468290879321) +zone = ('moz082', 0.00034879446720843474) + +[65484] +centroid = (0.65198908745923367, -1.6096650710361979) +station = ('ktbn', 0.0067082741763201947) +zone = ('moz082', 0.0036974940893082535) + +[65486] +centroid = (0.66511508044495227, -1.6114286564321685) +station = ('kaiz', 0.003051501034248704) +zone = ('moz057', 0.0023092124854086947) + +[65501] +centroid = (0.65383746095026585, -1.5981323891246253) +station = ('ktbn', 0.0091598242047322594) +zone = ('moz083', 0.0026476579249497933) + +[65529] +centroid = (0.66198882923548763, -1.6058781428916835) +station = ('ktbn', 0.0038171749522504625) +zone = ('moz071', 0.0031319631357113295) + +[65534] +centroid = (0.65781946454527584, -1.6106645338323526) +station = ('ktbn', 0.0022154864835974976) +zone = ('moz070', 0.0025720607033405097) + +[65535] +centroid = (0.66444689859411876, -1.5930345092723524) +station = ('kvih', 0.0068540175011399659) +zone = ('moz072', 0.0016844292889236529) + +[65536] +centroid = (0.65777440014398936, -1.6169512447046213) +station = ('kh21', 0.0049669120315696588) +zone = ('moz081', 0.00090746468821240143) + +[65541] +centroid = (0.65714896140653722, -1.6017271390652026) +station = ('ktbn', 0.0051862195116553263) +zone = ('moz083', 0.0037378202156314521) + +[65542] +centroid = (0.6544235774196705, -1.6036738793128773) +station = ('ktbn', 0.005395113377450197) +zone = ('moz082', 0.0033118063827438184) + +[65543] +centroid = (0.65383297545408814, -1.6107530045721363) +station = ('ktbn', 0.0052060154154257299) +zone = ('moz092', 0.0041703648821869443) + +[65548] +centroid = (0.64600019957052535, -1.600687830402225) +station = ('kuno', 0.0034578548129079946) +zone = ('moz097', 0.0048270667645447492) + +[65550] +centroid = (0.66013045500784151, -1.6049094851568264) +station = ('ktbn', 0.0029181346197268165) +zone = ('moz071', 0.002427953828924476) + +[65552] +centroid = (0.65511226688921498, -1.6085980639979913) +station = ('ktbn', 0.0034877697889136657) +zone = ('moz082', 0.0047120536710434698) + +[65555] +centroid = (0.65218735686226026, -1.6016366961033643) +station = ('ktbn', 0.0081511632969636476) +zone = ('moz082', 0.0028851866313244082) + +[65556] +centroid = (0.66035240852881771, -1.6128376258307182) +station = ('ktbn', 0.0041964733120547224) +zone = ('moz070', 0.0027798359199900113) + +[65557] +centroid = (0.65466973865737177, -1.6074652056871068) +station = ('ktbn', 0.0039267325891011035) +zone = ('moz082', 0.0038519132353087809) + +[65559] +centroid = (0.66365888243684334, -1.5988978381746721) +station = ('kvih', 0.0028655946677252995) +zone = ('moz071', 0.0035978989233712657) + +[65560] +centroid = (0.65618482407444301, -1.5970443683222242) +station = ('kvih', 0.010042719401034808) +zone = ('moz083', 0.00018272983103317461) + +[65564] +centroid = (0.64974016090486897, -1.6051588228937665) +station = ('kuno', 0.0060805997143150783) +zone = ('moz082', 0.0015704449065214877) + +[65565] +centroid = (0.66136852176603622, -1.5924773652685309) +station = ('kvih', 0.0083371238083123304) +zone = ('moz072', 0.001676337695209856) + +[65566] +centroid = (0.65835100456897078, -1.5904599391861507) +station = ('kfam', 0.0096020705334042972) +zone = ('moz072', 0.0050878213277061038) + +[65567] +centroid = (0.66087124255555807, -1.6150527279041793) +station = ('kh21', 0.0028041461330249574) +zone = ('moz081', 0.0036876764405268108) + +[65570] +centroid = (0.65367177684437405, -1.6073574490590887) +station = ('ktbn', 0.0049280272271850023) +zone = ('moz082', 0.0029688834336673536) + +[65571] +centroid = (0.64902246406315633, -1.5991235441535401) +station = ('kuno', 0.0065453513855984382) +zone = ('moz098', 0.0031354704766756863) + +[65580] +centroid = (0.6652583196166636, -1.6020342122937987) +station = ('kvih', 0.00043272544111015157) +zone = ('moz058', 0.0020147402008575416) + +[65582] +centroid = (0.66664690356955014, -1.6043701609646677) +station = ('kvih', 0.0024162426768911632) +zone = ('moz058', 0.00060158456164912115) + +[65583] +centroid = (0.66013117059283488, -1.6101628563921595) +station = ('ktbn', 0.0022970119614078308) +zone = ('moz070', 0.00066166968021456776) + +[65584] +centroid = (0.66022669246279653, -1.60799299325291) +station = ('ktbn', 0.0016560465994139067) +zone = ('moz070', 0.0010549513462312838) + +[65586] +centroid = (0.66059993112333548, -1.5957834377508286) +station = ('kvih', 0.006764562631302787) +zone = ('moz072', 0.0028263819800104302) + +[65588] +centroid = (0.64545331810270556, -1.5930138620273013) +station = ('kuno', 0.0089148232782910192) +zone = ('moz098', 0.0035429244037729181) + +[65589] +centroid = (0.65005617021923501, -1.6028796497834648) +station = ('kuno', 0.0063788226759767972) +zone = ('moz082', 0.002162209650590414) + +[65590] +centroid = (0.65635110159228049, -1.6223060021162024) +station = ('kh21', 0.0073017826341526763) +zone = ('moz080', 0.0016365203773524889) + +[65591] +centroid = (0.66215091796312031, -1.6168860566570593) +station = ('kh21', 0.0008732676428817017) +zone = ('moz069', 0.0023157493625636876) + +[65601] +centroid = (0.65519419264430356, -1.6334188101696232) +station = ('ksgf', 0.0060562094829395233) +zone = ('moz079', 0.002918179741039733) + +[65603] +centroid = (0.65548927546093827, -1.6382573166417569) +station = ('ksgf', 0.0087472892786128464) +zone = ('moz089', 0.0021874221177437614) + +[65604] +centroid = (0.65048271123512991, -1.6336014937824295) +station = ('ksgf', 0.0030562421122228528) +zone = ('moz094', 0.0043323442782227653) + +[65605] +centroid = (0.6417875158082792, -1.6345836952722819) +station = ('khfj', 0.0055718089356447563) +zone = ('moz103', 0.0028139736739041807) + +[65606] +centroid = (0.64048796110053674, -1.5945222802866299) +station = ('kuno', 0.0082244485175325) +zone = ('moz106', 0.0006414586924522954) + +[65608] +centroid = (0.64400462501038014, -1.6175296293654398) +station = ('kbbg', 0.0097383413223442392) +zone = ('moz096', 0.0025643118758905659) + +[65609] +centroid = (0.63778743060221843, -1.6083506286699361) +station = ('kbpk', 0.005382443081765405) +zone = ('moz105', 0.0045074857828752962) + +[65610] +centroid = (0.64630866906252293, -1.6324228903918501) +station = ('ksgf', 0.0040888789929826837) +zone = ('moz090', 0.0047595617061124184) + +[65611] +centroid = (0.63791515379687946, -1.6296514297127307) +station = ('kbbg', 0.0024387192914165439) +zone = ('moz103', 0.0036336974966613002) + +[65612] +centroid = (0.64952848737318702, -1.6325828847243806) +station = ('ksgf', 0.0022015676893100654) +zone = ('moz090', 0.0028526093626249568) + +[65613] +centroid = (0.65688786015043887, -1.63007516074853) +station = ('ksgf', 0.007045939012473702) +zone = ('moz079', 0.00036050561693516366) + +[65614] +centroid = (0.64148644651231024, -1.621572091165739) +station = ('kbbg', 0.0056505145467093659) +zone = ('moz104', 0.0025359968138770101) + +[65616] +centroid = (0.64000129349191059, -1.6274999623437976) +station = ('kbbg', 0.0025270953085526301) +zone = ('moz103', 0.0031971173838613843) + +[65617] +centroid = (0.65341762199869846, -1.6290209818803254) +station = ('ksgf', 0.0036331643335826202) +zone = ('moz090', 0.0031421970277391493) + +[65618] +centroid = (0.64111422014273733, -1.6119810531404246) +station = ('kbpk', 0.0065695923873426059) +zone = ('moz105', 0.0018848311808593004) + +[65619] +centroid = (0.64789622055013685, -1.6300448618327152) +station = ('ksgf', 0.0019544298920361868) +zone = ('moz090', 0.0024904890205899389) + +[65620] +centroid = (0.64616677379433574, -1.6221889952431487) +station = ('ksgf', 0.0071273444087319084) +zone = ('moz095', 0.0035291853300083143) + +[65622] +centroid = (0.65682017628204648, -1.6249644352729629) +station = ('ksgf', 0.0079807651493618605) +zone = ('moz080', 0.0013804865765129032) + +[65623] +centroid = (0.64138783540957245, -1.6389760257744357) +station = ('khfj', 0.0030791231992791861) +zone = ('moz102', 0.0012770270308510763) + +[65624] +centroid = (0.64106295982260619, -1.6330399864554779) +station = ('kbbg', 0.0062073611554229755) +zone = ('moz103', 0.0015713690456868614) + +[65625] +centroid = (0.64008325415358436, -1.6374067653373825) +station = ('khfj', 0.0048621380160975194) +zone = ('moz102', 0.00064976627197279777) + +[65626] +centroid = (0.63870224492965122, -1.6079868322406505) +station = ('kuno', 0.0059800090671483473) +zone = ('moz097', 0.0046329168462204808) + +[65627] +centroid = (0.63817423047104538, -1.6236950224014022) +station = ('kbbg', 0.0024474757633173006) +zone = ('moz104', 0.0015773659275780799) + +[65629] +centroid = (0.64387794901327033, -1.6231664843440208) +station = ('kbbg', 0.0068985659661759081) +zone = ('moz095', 0.0029598812162181724) + +[65630] +centroid = (0.64285640780207809, -1.6268851003016125) +station = ('kbbg', 0.0052910826862206418) +zone = ('moz095', 0.0024097227111830261) + +[65631] +centroid = (0.64578402308937333, -1.6305563829298899) +station = ('ksgf', 0.0040994897121216069) +zone = ('moz095', 0.003322279862923752) + +[65632] +centroid = (0.65446193975662925, -1.6198388570454607) +station = ('kh21', 0.0084042232668793508) +zone = ('moz091', 0.0038964003565930658) + +[65633] +centroid = (0.64393540525224602, -1.6324893176231809) +station = ('ksgf', 0.0062738652270631721) +zone = ('moz103', 0.0028062798056564574) + +[65634] +centroid = (0.66349384410277479, -1.6265528943317877) +station = ('kh21', 0.0069859359224372398) +zone = ('moz068', 0.0021688570819346168) + +[65635] +centroid = (0.655052454455749, -1.6356727109123561) +station = ('ksgf', 0.0069682490019351796) +zone = ('moz089', 0.0025360542189396709) + +[65637] +centroid = (0.64157147895346733, -1.6091964675853301) +station = ('kuno', 0.0047192292331422175) +zone = ('moz105', 0.0039226302924213639) + +[65638] +centroid = (0.6429479677746377, -1.6113272528026272) +station = ('kuno', 0.0059488086049065241) +zone = ('moz096', 0.0029645336629510509) + +[65640] +centroid = (0.65796237210442921, -1.6330495683130712) +station = ('ksgf', 0.0085068532920198874) +zone = ('moz079', 0.0027073348096302218) + +[65641] +centroid = (0.63780915995140575, -1.6365808580820465) +station = ('krog', 0.0055787700333384824) +zone = ('moz102', 0.0030185088889626041) + +[65644] +centroid = (0.65468935615816415, -1.6238237055271518) +station = ('ksgf', 0.0068106695300889329) +zone = ('moz080', 0.0029646129629754222) + +[65646] +centroid = (0.65159158872209189, -1.6354301625062064) +station = ('ksgf', 0.0047738041478302771) +zone = ('moz089', 0.0026679069226759758) + +[65647] +centroid = (0.64040586081252282, -1.6407393144644331) +station = ('khfj', 0.0036248873680939536) +zone = ('moz102', 0.0025138534302708939) + +[65648] +centroid = (0.65290765424455832, -1.6260724924551764) +station = ('ksgf', 0.0042886704437837108) +zone = ('moz090', 0.0035797496200839786) + +[65649] +centroid = (0.65654528692485747, -1.634033358052543) +station = ('ksgf', 0.0074805374862469288) +zone = ('moz079', 0.0030790467877792162) + +[65650] +centroid = (0.65997869862938063, -1.63086930301148) +station = ('kgly', 0.010075150105222398) +zone = ('moz068', 0.00277260427295668) + +[65652] +centroid = (0.64810967431765587, -1.6222629797501409) +station = ('ksgf', 0.0062859714768094812) +zone = ('moz091', 0.0027578269420531509) + +[65653] +centroid = (0.64299378266750251, -1.6256063499185536) +station = ('kbbg', 0.0054888018579128794) +zone = ('moz095', 0.0023472448686745703) + +[65654] +centroid = (0.64615933869172215, -1.6390323650026901) +station = ('khfj', 0.0026301907894788535) +zone = ('moz094', 0.001817039165269945) + +[65655] +centroid = (0.63871891282400772, -1.6131301255600601) +station = ('kbpk', 0.0040422392103094248) +zone = ('moz105', 0.00096949576395521681) + +[65656] +centroid = (0.64217236090834395, -1.6313213781943317) +station = ('kbbg', 0.0059374824358083339) +zone = ('moz103', 0.00083479796669926206) + +[65657] +centroid = (0.64294978291705984, -1.6232875229276467) +station = ('kbbg', 0.0060177057245902393) +zone = ('moz104', 0.0032385989256649302) + +[65658] +centroid = (0.63774599648577612, -1.6342907592106271) +station = ('krog', 0.0071581878683825593) +zone = ('arz002', 0.0037475202996363165) + +[65660] +centroid = (0.65160492303757722, -1.6104833337494107) +station = ('ktbn', 0.0072325439062645002) +zone = ('moz092', 0.0029268242081484665) + +[65661] +centroid = (0.65393451870996921, -1.6375586438888912) +station = ('ksgf', 0.007369803363261593) +zone = ('moz089', 0.00071339611536634998) + +[65662] +centroid = (0.65356878496521376, -1.6156591774593698) +station = ('ktbn', 0.0078464478302656595) +zone = ('moz092', 0.0033906348507611894) + +[65663] +centroid = (0.65665169964935144, -1.6274624028582947) +station = ('ksgf', 0.0070658330921377381) +zone = ('moz079', 0.0021291924107721557) + +[65664] +centroid = (0.64922853508793921, -1.6338926147016621) +station = ('ksgf', 0.0032803776137640753) +zone = ('moz094', 0.0034255329984307966) + +[65667] +centroid = (0.65115544839531114, -1.6146747244947826) +station = ('ktbn', 0.0090974069917315759) +zone = ('moz092', 0.00091907737009371275) + +[65668] +centroid = (0.66202485283124868, -1.6282264381916476) +station = ('kgly', 0.0091969524001312818) +zone = ('moz068', 0.00044797587071037032) + +[65669] +centroid = (0.64423431033994261, -1.628437623031139) +station = ('ksgf', 0.005721481736746848) +zone = ('moz095', 0.0018787464977576605) + +[65672] +centroid = (0.63809855299467888, -1.6269869926233438) +station = ('kbbg', 0.0005960979628254078) +zone = ('moz104', 0.0029941482415278258) + +[65674] +centroid = (0.65948637615397809, -1.6337551874763601) +station = ('kgly', 0.010071610610117772) +zone = ('moz079', 0.0041089088771398673) + +[65676] +centroid = (0.63830478109909461, -1.6164530928295169) +station = ('kbpk', 0.0041537957113626945) +zone = ('moz105', 0.0027521505063370609) + +[65679] +centroid = (0.6384317538021772, -1.6248304114397019) +station = ('kbbg', 0.001695229643415311) +zone = ('moz104', 0.0015222233619321059) + +[65680] +centroid = (0.63971839307345479, -1.6232165054803829) +station = ('kbbg', 0.0034938151820578783) +zone = ('moz104', 0.00052638844208285538) + +[65681] +centroid = (0.63793264199598443, -1.6312171296781099) +station = ('kbbg', 0.0036899047358422061) +zone = ('moz103', 0.0034227695014535787) + +[65682] +centroid = (0.65296045045443118, -1.6399412975705436) +station = ('khfj', 0.0089706682972519065) +zone = ('moz089', 0.0015837624139804669) + +[65685] +centroid = (0.65890193520065521, -1.6260700839008086) +station = ('kh21', 0.0075913971272094736) +zone = ('moz080', 0.0023434899166789262) + +[65686] +centroid = (0.63917652070058828, -1.6307685626070547) +station = ('kbbg', 0.0036797997944326803) +zone = ('moz103', 0.0021953366379959768) + +[65689] +centroid = (0.64829235793046203, -1.607324392523056) +station = ('kuno', 0.0052906758319746349) +zone = ('moz082', 0.00350126973327422) + +[65690] +centroid = (0.63860009080853197, -1.593125126767116) +station = ('k4m9', 0.009426854720062704) +zone = ('moz106', 0.002432258890512129) + +[65692] +centroid = (0.6392720600238424, -1.5992698551047348) +station = ('kuno', 0.0058334503685606165) +zone = ('moz106', 0.0033563858939710412) + +[65702] +centroid = (0.64702880936518825, -1.6143258506306013) +station = ('kuno', 0.0089135397851703435) +zone = ('moz096', 0.002434235545423013) + +[65704] +centroid = (0.64799921242929714, -1.6159324087537696) +station = ('kuno', 0.010470211880212913) +zone = ('moz092', 0.0029745681131477311) + +[65705] +centroid = (0.6455715641595281, -1.6340046822929326) +station = ('ksgf', 0.005408433486887832) +zone = ('moz094', 0.0035914511853034048) + +[65706] +centroid = (0.65140609512919001, -1.6213870513584423) +station = ('ksgf', 0.0069101424096486416) +zone = ('moz091', 0.00079682273430809164) + +[65707] +centroid = (0.64985020391420723, -1.6378748277361825) +station = ('khfj', 0.0063221965328077003) +zone = ('moz094', 0.0022260678706288212) + +[65708] +centroid = (0.64407700381446042, -1.6390655088051855) +station = ('khfj', 0.0015146598072480382) +zone = ('moz102', 0.0035599217235811995) + +[65710] +centroid = (0.65424637414071551, -1.6305055763953644) +station = ('ksgf', 0.004433164288235765) +zone = ('moz079', 0.0023030908254897688) + +[65711] +centroid = (0.6488502873324471, -1.6105144180633886) +station = ('kuno', 0.0073184280812809716) +zone = ('moz092', 0.0031419046649675871) + +[65712] +centroid = (0.64770344893425424, -1.6371239172788044) +station = ('khfj', 0.00478512869928984) +zone = ('moz094', 0.00045997033331646338) + +[65713] +centroid = (0.65283419333634185, -1.6187396661358473) +station = ('ksgf', 0.0093253591507873254) +zone = ('moz091', 0.0028046268223204632) + +[65714] +centroid = (0.64643670641644913, -1.628746179789599) +station = ('ksgf', 0.0035186708476363827) +zone = ('moz095', 0.0021868899156876464) + +[65715] +centroid = (0.64108343253473221, -1.6157211191945231) +station = ('kbpk', 0.0065408448497544097) +zone = ('moz105', 0.0023090637347705123) + +[65717] +centroid = (0.64682670023780731, -1.6129643192811207) +station = ('kuno', 0.0078315750418728944) +zone = ('moz096', 0.0025117692113827421) + +[65720] +centroid = (0.64473445189039402, -1.6222841855005525) +station = ('ksgf', 0.0079059231922311794) +zone = ('moz095', 0.0033697602265198782) + +[65721] +centroid = (0.64547194076582426, -1.626807886935504) +station = ('ksgf', 0.0049989983217793212) +zone = ('moz095', 0.00036543411016816483) + +[65722] +centroid = (0.65594560924716472, -1.6197609280943592) +station = ('kh21', 0.00694114357066294) +zone = ('moz080', 0.0034620369141150444) + +[65723] +centroid = (0.64504969325988926, -1.6413132136290738) +station = ('khfj', 0.0010617480558908676) +zone = ('moz094', 0.003873484357617819) + +[65724] +centroid = (0.66050990704051771, -1.6286245128874424) +station = ('kgly', 0.010311820926982735) +zone = ('moz068', 0.0016850499912310927) + +[65725] +centroid = (0.65333386364789536, -1.6281855451272733) +station = ('ksgf', 0.0037311881114193792) +zone = ('moz090', 0.0031472893664328317) + +[65727] +centroid = (0.65895071715324849, -1.6283022378410619) +station = ('ksgf', 0.0091885276133651644) +zone = ('moz079', 0.0028250363683942417) + +[65728] +centroid = (0.64352699820727932, -1.6291873815712106) +station = ('kbbg', 0.006296774918760557) +zone = ('moz103', 0.0026641126116353098) + +[65729] +centroid = (0.63728882494150862, -1.6160481589897617) +station = ('kbpk', 0.0031212502971240544) +zone = ('moz105', 0.0031448700803983301) + +[65730] +centroid = (0.63920404454289215, -1.643703773652238) +station = ('krog', 0.0046151852767712881) +zone = ('moz101', 0.0023983517984891268) + +[65731] +centroid = (0.63972149975952342, -1.6253559824373549) +station = ('kbbg', 0.0023892372834844163) +zone = ('moz104', 0.001190937118229802) + +[65732] +centroid = (0.66220746663088492, -1.6259756964948608) +station = ('kh21', 0.0065080140428554678) +zone = ('moz068', 0.0021907272495435967) + +[65733] +centroid = (0.63751844045790107, -1.6205280701137807) +station = ('kbbg', 0.0049170737522754911) +zone = ('moz104', 0.0034879987391584644) + +[65734] +centroid = (0.64219763327591284, -1.639594011955982) +station = ('khfj', 0.0021300481490596876) +zone = ('moz102', 0.0021683365304299867) + +[65735] +centroid = (0.66392185119524139, -1.6311625008725223) +station = ('kgly', 0.0063576083662391959) +zone = ('moz068', 0.0025685461025445155) + +[65737] +centroid = (0.64078061790951113, -1.6294511182744793) +station = ('kbbg', 0.0039219128009095622) +zone = ('moz103', 0.0014503774007729629) + +[65738] +centroid = (0.64820271782007965, -1.6319945167802408) +station = ('ksgf', 0.0023712305460745478) +zone = ('moz090', 0.0030861313212904619) + +[65739] +centroid = (0.63723644761065634, -1.6279411815787015) +station = ('kbbg', 0.001091970303931767) +zone = ('moz104', 0.0041196757980883261) + +[65740] +centroid = (0.64077274647458471, -1.6260094337093016) +station = ('kbbg', 0.0032445580480725805) +zone = ('moz104', 0.0019986374814704617) + +[65742] +centroid = (0.64794674783198214, -1.6245489247379403) +station = ('ksgf', 0.0046278510595110416) +zone = ('moz095', 0.0031031624813001933) + +[65744] +centroid = (0.63918821440657658, -1.6213681494426435) +station = ('kbbg', 0.0045379358803547066) +zone = ('moz104', 0.0020847392393721228) + +[65745] +centroid = (0.63758113268463268, -1.6400970856595767) +station = ('krog', 0.0033904779957324039) +zone = ('moz102', 0.0037030228894282683) + +[65746] +centroid = (0.64832332007139237, -1.6192849768073403) +station = ('ksgf', 0.0085501624420505299) +zone = ('moz091', 0.0027151695055527849) + +[65747] +centroid = (0.63880553351478431, -1.6332805800928654) +station = ('kbbg', 0.0054697015375816315) +zone = ('moz103', 0.0030852286638282751) + +[65752] +centroid = (0.65149135446314999, -1.6376579007634522) +station = ('ksgf', 0.0064298019420448629) +zone = ('moz089', 0.0018400966178968065) + +[65753] +centroid = (0.64582146040182875, -1.6239605742470931) +station = ('ksgf', 0.0061815682064069967) +zone = ('moz095', 0.0020738256706884315) + +[65754] +centroid = (0.64292089771793937, -1.6280682066416616) +station = ('kbbg', 0.0054721522271531063) +zone = ('moz095', 0.0026555541679008387) + +[65755] +centroid = (0.64253718708188834, -1.6166364396674391) +station = ('kbpk', 0.0081333797414325035) +zone = ('moz096', 0.0027226222593083817) + +[65756] +centroid = (0.64748285677009465, -1.6401540706596545) +station = ('khfj', 0.0035155731064175108) +zone = ('moz094', 0.0019682337722932985) + +[65757] +centroid = (0.65070845212058293, -1.6248830331166497) +station = ('ksgf', 0.0040440259971261236) +zone = ('moz091', 0.0030975371421017592) + +[65759] +centroid = (0.64162745166257884, -1.6243433598586405) +station = ('kbbg', 0.0044596654994297751) +zone = ('moz104', 0.0019198408812228483) + +[65760] +centroid = (0.63938770554007951, -1.6106130291661263) +station = ('kbpk', 0.0053447935233145102) +zone = ('moz105', 0.0023015870472258156) + +[65761] +centroid = (0.63837946373778742, -1.6183562696590619) +station = ('kbpk', 0.0051526759236200977) +zone = ('moz105', 0.0041286920934757339) + +[65762] +centroid = (0.64027204641877244, -1.6170699794536345) +station = ('kbpk', 0.0061279023205281511) +zone = ('moz105', 0.0029594176439504392) + +[65764] +centroid = (0.65998793142112377, -1.6222606410089433) +station = ('kh21', 0.0044787142429018574) +zone = ('moz080', 0.0025590158470198115) + +[65766] +centroid = (0.63767623567557397, -1.6103842514077749) +station = ('kbpk', 0.0040635104561988602) +zone = ('moz105', 0.0031636082624316134) + +[65767] +centroid = (0.66064649650777862, -1.6258777137106537) +station = ('kh21', 0.0067369551703824488) +zone = ('moz068', 0.002745549706453717) + +[65768] +centroid = (0.64436569872603267, -1.610415911680406) +station = ('kuno', 0.0052028244852358047) +zone = ('moz096', 0.0032000729604356841) + +[65769] +centroid = (0.64435978205986855, -1.6371084536616316) +station = ('khfj', 0.0030964760797622037) +zone = ('moz094', 0.0033022314416684267) + +[65770] +centroid = (0.653148055895728, -1.6327245530997649) +station = ('ksgf', 0.0040189676254827091) +zone = ('moz079', 0.0039536653769179303) + +[65771] +centroid = (0.64180071049742426, -1.6267589129966931) +station = ('kbbg', 0.0042328894316609562) +zone = ('moz104', 0.0030954214642945612) + +[65772] +centroid = (0.63877291331106456, -1.6410145354341801) +station = ('krog', 0.0041955987611431139) +zone = ('moz102', 0.0033367315962192774) + +[65773] +centroid = (0.64162680589075549, -1.6144611660075086) +station = ('kbpk', 0.0069262779628530462) +zone = ('moz105', 0.0021318622408980862) + +[65774] +centroid = (0.66200815003030711, -1.6316968683296056) +station = ('kgly', 0.0079435941254327822) +zone = ('moz068', 0.002328721708883888) + +[65775] +centroid = (0.64053712702556542, -1.6032254693214547) +station = ('kuno', 0.0032517688989830338) +zone = ('moz097', 0.0013502083954295488) + +[65777] +centroid = (0.63749452944714868, -1.605664270245144) +station = ('kuno', 0.0063893083882194876) +zone = ('arz006', 0.0035594069472126544) + +[65778] +centroid = (0.6375645346034462, -1.5929582558373327) +station = ('karg', 0.0085159839436054728) +zone = ('moz106', 0.003316949376741016) + +[65779] +centroid = (0.66283358604674536, -1.6297686111187097) +station = ('kgly', 0.0078502161008643778) +zone = ('moz068', 0.0010258647179066207) + +[65781] +centroid = (0.65197718431373508, -1.6304441582589866) +station = ('ksgf', 0.0021852532732927598) +zone = ('moz090', 0.0019982060760174443) + +[65783] +centroid = (0.65824342247387779, -1.6219924362627893) +station = ('kh21', 0.005578678786412823) +zone = ('moz080', 0.0013820432831171761) + +[65784] +centroid = (0.6401848148627578, -1.6111816923430111) +station = ('kbpk', 0.0058715927909529821) +zone = ('moz105', 0.0019059496455131276) + +[65785] +centroid = (0.65813704465596878, -1.6375561131614758) +station = ('ksgf', 0.010305747560504648) +zone = ('moz078', 0.00051111121210758808) + +[65786] +centroid = (0.66262786408781282, -1.6225055979694605) +station = ('kh21', 0.0037532267905267384) +zone = ('moz069', 0.0029097109784573089) + +[65787] +centroid = (0.66445719603670561, -1.6211202254223975) +station = ('kh21', 0.0031858592998155054) +zone = ('moz069', 0.0017825507759665436) + +[65788] +centroid = (0.64239790980757916, -1.600378697685112) +station = ('kuno', 0.0031610364065630058) +zone = ('moz097', 0.0027375073030678392) + +[65789] +centroid = (0.64337843578134968, -1.6034988053356098) +station = ('kuno', 0.00051211727536397726) +zone = ('moz097', 0.0015613107539601014) + +[65790] +centroid = (0.64058861423849922, -1.6076147454974177) +station = ('kuno', 0.0042989088309336046) +zone = ('moz097', 0.0033565265512880845) + +[65791] +centroid = (0.63843732140249099, -1.5969342904063011) +station = ('kuno', 0.0077301280070400527) +zone = ('moz106', 0.0022863885624078285) + +[65793] +centroid = (0.64562449999574112, -1.6052139752981296) +station = ('kuno', 0.0021392493657080404) +zone = ('moz097', 0.0039802444482415324) + +[65802] +centroid = (0.64939250877116417, -1.6293453513218086) +station = ('ksgf', 0.00060284379894400865) +zone = ('moz090', 0.0009012143495081607) + +[65803] +centroid = (0.65071354848199869, -1.6282106604152096) +station = ('ksgf', 0.0015656044091910738) +zone = ('moz090', 0.00084893391626318919) + +[65804] +centroid = (0.64837772198417709, -1.6275675065858495) +station = ('ksgf', 0.0023339096029748388) +zone = ('moz090', 0.0022682136538807328) + +[65806] +centroid = (0.64935995838061444, -1.6283774789851151) +station = ('ksgf', 0.0012662018519487097) +zone = ('moz090', 0.0010929451670432942) + +[65807] +centroid = (0.64865484536280882, -1.6288285942368783) +station = ('ksgf', 0.0014395387385807916) +zone = ('moz090', 0.0016387901162261058) + +[65809] +centroid = (0.64867934978550679, -1.6263411509869359) +station = ('ksgf', 0.0030254775975284663) +zone = ('moz090', 0.0027325985587456714) + +[65810] +centroid = (0.64785808510598086, -1.6285654858521399) +station = ('ksgf', 0.002233135908741312) +zone = ('moz090', 0.0024591993854826168) + +[66002] +centroid = (0.69008122999656785, -1.6604649733105956) +station = ('kstj', 0.0049640285095957802) +zone = ('ksz025', 0.002362092776716368) + +[66006] +centroid = (0.67726220551968996, -1.6621236469652283) +station = ('klwc', 0.0037134565877554155) +zone = ('ksz040', 0.001618710145550842) + +[66007] +centroid = (0.68340496163525399, -1.6570443897760743) +station = ('kmci', 0.0037721999004096478) +zone = ('ksz103', 0.0015037039908072302) + +[66008] +centroid = (0.69321072751844126, -1.6611433653375531) +station = ('kstj', 0.0035888515888802893) +zone = ('ksz102', 0.001291762268946853) + +[66010] +centroid = (0.66476479286407708, -1.6576992373114225) +station = ('kcnu', 0.010117880437515396) +zone = ('ksz060', 0.0028615010059930925) + +[66012] +centroid = (0.68182322209404911, -1.6566538898092331) +station = ('kixd', 0.0043718964734885367) +zone = ('ksz104', 0.0022625108461636536) + +[66013] +centroid = (0.67597764319022213, -1.6527491519402087) +station = ('kojc', 0.0018641586172776807) +zone = ('ksz105', 0.0031804080822784055) + +[66014] +centroid = (0.66721921448457167, -1.6578377291875683) +station = ('kixd', 0.010356811641368969) +zone = ('ksz060', 0.0019983003994088143) + +[66015] +centroid = (0.66453147724967043, -1.6652744724105613) +station = ('kcnu', 0.0071893571194122903) +zone = ('ksz059', 0.0029380761201856839) + +[66016] +centroid = (0.68897165437790486, -1.6621075026696475) +station = ('kstj', 0.0066201532252184916) +zone = ('ksz025', 0.0014759010641515978) + +[66017] +centroid = (0.69296056947675289, -1.6628443108666693) +station = ('kstj', 0.0049197469184127573) +zone = ('ksz102', 0.0022566560534415963) + +[66018] +centroid = (0.68002640562912098, -1.6574371586709431) +station = ('kixd', 0.0027742726732076263) +zone = ('ksz105', 0.0023672040854704076) + +[66019] +centroid = (0.67972615663790037, -1.6581201060072484) +station = ('kixd', 0.0027762027161910828) +zone = ('ksz105', 0.0026829239458370435) + +[66020] +centroid = (0.68660102601479855, -1.6600892388292261) +station = ('kmci', 0.0052137180112360407) +zone = ('ksz103', 0.002662832699408234) + +[66021] +centroid = (0.67659922475002743, -1.6583141168069002) +station = ('kixd', 0.0019880638654479746) +zone = ('ksz105', 0.003321105068270411) + +[66023] +centroid = (0.68961953804953779, -1.6649115137393165) +station = ('kstj', 0.0077842639880456163) +zone = ('ksz025', 0.0011242839137365515) + +[66024] +centroid = (0.69354127542547639, -1.655996563906347) +station = ('kstj', 0.00069967566131271008) +zone = ('moz020', 0.0016853834618002989) + +[66025] +centroid = (0.67879175971626016, -1.6595173467932252) +station = ('klwc', 0.0028312956841136448) +zone = ('ksz040', 0.0028430508454649495) + +[66026] +centroid = (0.67014192539666884, -1.6556953375307455) +station = ('kixd', 0.0073412771660248833) +zone = ('ksz057', 0.0029418186190476817) + +[66027] +centroid = (0.68711200605990497, -1.6565168814629516) +station = ('kmci', 0.002685927600214058) +zone = ('moz028', 0.001870838647099361) + +[66030] +centroid = (0.6774519402626743, -1.6570202344192266) +station = ('kixd', 0.00077468622498402058) +zone = ('ksz105', 0.0020018082840104561) + +[66031] +centroid = (0.67774745941162184, -1.656144393293991) +station = ('kixd', 0.00028406089932769282) +zone = ('ksz105', 0.0012899165805766743) + +[66032] +centroid = (0.66823031862683702, -1.6629185397197566) +station = ('kixd', 0.010704255529399392) +zone = ('ksz059', 0.0012817505649964037) + +[66033] +centroid = (0.66956570494412293, -1.6601967511111488) +station = ('kixd', 0.0085579736621138932) +zone = ('ksz059', 0.0035002000256413035) + +[66035] +centroid = (0.69588015624948907, -1.6624887872980381) +station = ('kfnb', 0.0057605094542150905) +zone = ('ksz102', 0.002028347481462404) + +[66039] +centroid = (0.66504743148314505, -1.6609400519329884) +station = ('kcnu', 0.0088100028190246857) +zone = ('ksz059', 0.0026049128418139706) + +[66040] +centroid = (0.66941279664835573, -1.6536628841635055) +station = ('kixd', 0.0082747519161512888) +zone = ('ksz060', 0.0028028233007326214) + +[66041] +centroid = (0.69115567213738793, -1.6634379497051501) +station = ('kstj', 0.0060046447394228588) +zone = ('ksz025', 0.001193953203860182) + +[66042] +centroid = (0.67060412348918197, -1.6594570631208614) +station = ('kixd', 0.00737852757274194) +zone = ('ksz056', 0.0037477977161990937) + +[66043] +centroid = (0.6850626579055058, -1.6560122544163225) +station = ('kmci', 0.0021881096311987453) +zone = ('moz028', 0.0026921675377736946) + +[66044] +centroid = (0.68108496527374807, -1.661708939281662) +station = ('klwc', 0.00015634869550717583) +zone = ('ksz040', 0.0026743591329014744) + +[66045] +centroid = (0.67996011802413014, -1.6623868251631364) +station = ('klwc', 0.0010937291460774898) +zone = ('ksz040', 0.0014322293083540078) + +[66046] +centroid = (0.67901203772115448, -1.6617236698605489) +station = ('klwc', 0.0019595064337260028) +zone = ('ksz040', 0.0011758122367702445) + +[66047] +centroid = (0.6788008877882481, -1.6641107217719162) +station = ('klwc', 0.002794315463490613) +zone = ('ksz040', 0.00074814044467157214) + +[66048] +centroid = (0.68560599635494412, -1.6579928889580706) +station = ('kmci', 0.0035613487820618009) +zone = ('ksz103', 0.0015559214935581779) + +[66049] +centroid = (0.68029626843806434, -1.6640691480291339) +station = ('klwc', 0.0018554353345292421) +zone = ('ksz040', 0.0017783335729345884) + +[66050] +centroid = (0.68088495054146958, -1.6657861505873683) +station = ('kfoe', 0.0031310322613648431) +zone = ('ksz040', 0.0030151237014290786) + +[66052] +centroid = (0.6809535768876579, -1.6589051900113807) +station = ('klwc', 0.0022836756969058722) +zone = ('ksz103', 0.0032063474562066662) + +[66053] +centroid = (0.67336684006874881, -1.6522694307420056) +station = ('kojc', 0.0044915306814566165) +zone = ('ksz057', 0.0023401558797845239) + +[66054] +centroid = (0.68427616018467952, -1.6615192918051402) +station = ('klwc', 0.0033164674815765946) +zone = ('ksz103', 0.0021691869682812824) + +[66056] +centroid = (0.66586846926986809, -1.6553449975899928) +station = ('kixd', 0.01162242039199086) +zone = ('ksz060', 0.0010621497258657248) + +[66058] +centroid = (0.69012180890167663, -1.6671452035693113) +station = ('ktop', 0.0084191884124925776) +zone = ('ksz025', 0.0027972777933079084) + +[66060] +centroid = (0.68797669453122046, -1.6638612967685138) +station = ('klwc', 0.007179516458265282) +zone = ('ksz025', 0.0020038591336837865) + +[66061] +centroid = (0.67882424029363975, -1.6559679579599069) +station = ('kixd', 0.0013463762534422993) +zone = ('ksz105', 0.00080258516697611184) + +[66062] +centroid = (0.67780500291706014, -1.6542000092408067) +station = ('kojc', 0.00061751486964613613) +zone = ('ksz105', 0.0010324936550159167) + +[66064] +centroid = (0.67161515781827719, -1.6578696861661724) +station = ('kixd', 0.0060375830718255993) +zone = ('ksz057', 0.00251692221642514) + +[66066] +centroid = (0.68422146156592201, -1.6638327257286585) +station = ('klwc', 0.0035995848108151115) +zone = ('ksz026', 0.00091516420135464899) + +[66067] +centroid = (0.67410928567925477, -1.6628848548651931) +station = ('kixd', 0.0063233372175576768) +zone = ('ksz056', 0.0010383597680339739) + +[66070] +centroid = (0.6842683760162156, -1.6659327756978284) +station = ('ktop', 0.0034620539078424684) +zone = ('ksz026', 0.0010533721999965357) + +[66071] +centroid = (0.67322721372858929, -1.6556989503622972) +station = ('kixd', 0.0042591070096469471) +zone = ('ksz057', 0.00039719060153941275) + +[66072] +centroid = (0.66862570551558376, -1.6574338250920719) +station = ('kixd', 0.0089210531457282142) +zone = ('ksz060', 0.0023720150005551947) + +[66073] +centroid = (0.6821168562874047, -1.6644915700679941) +station = ('klwc', 0.0023544412395169207) +zone = ('ksz026', 0.0026847833871847838) + +[66075] +centroid = (0.6667248674272368, -1.6527118193475085) +station = ('kojc', 0.011058104667204667) +zone = ('ksz060', 0.0020604469870969758) + +[66076] +centroid = (0.67426353787854598, -1.6657948248737506) +station = ('kfoe', 0.0059587571427435785) +zone = ('ksz056', 0.0024485398551959445) + +[66078] +centroid = (0.6716976420787264, -1.6625884630516194) +station = ('kixd', 0.0077253616906303698) +zone = ('ksz056', 0.0014285391848755105) + +[66079] +centroid = (0.67269295099126136, -1.6599500837279648) +station = ('kixd', 0.0056819112183008552) +zone = ('ksz056', 0.0024568740370917116) + +[66080] +centroid = (0.67032808221468654, -1.6626040837484248) +station = ('kixd', 0.0088060042388249191) +zone = ('ksz056', 0.0027734816355955358) + +[66083] +centroid = (0.67597626438011305, -1.6551228171762138) +station = ('kixd', 0.0016593898302997541) +zone = ('ksz105', 0.0026770303139708449) + +[66085] +centroid = (0.67716624731741537, -1.6520707948198361) +station = ('kojc', 0.0012043419727993951) +zone = ('ksz105', 0.0026965423234089772) + +[66086] +centroid = (0.68276453051952724, -1.6594805203460081) +station = ('klwc', 0.0025673027157395154) +zone = ('ksz103', 0.0015107635289912725) + +[66087] +centroid = (0.69467736259547719, -1.6601942203837337) +station = ('kstj', 0.0028240623977910891) +zone = ('ksz102', 0.00040924678302966698) + +[66088] +centroid = (0.68660081657528838, -1.6661122129982258) +station = ('ktop', 0.005297798438037897) +zone = ('ksz026', 0.0020903162300026051) + +[66090] +centroid = (0.69443376699177639, -1.6575997011841814) +station = ('kstj', 0.00084895697298672699) +zone = ('ksz102', 0.0023273216978664012) + +[66091] +centroid = (0.6663366538417157, -1.6635175018124562) +station = ('kcnu', 0.0092337559627377226) +zone = ('ksz059', 0.0006818026900386662) + +[66092] +centroid = (0.67546860046058554, -1.6597723917568192) +station = ('kixd', 0.0035457157105479266) +zone = ('ksz056', 0.0035035821106727903) + +[66093] +centroid = (0.66685208447641464, -1.6666871244538328) +station = ('kcnu', 0.0094459038155223305) +zone = ('ksz059', 0.0027565612871238254) + +[66094] +centroid = (0.69728148110591537, -1.6640394948851425) +station = ('kfnb', 0.0039597182413366443) +zone = ('moz011', 0.0030261746089251607) + +[66095] +centroid = (0.6709236583686371, -1.665722358803208) +station = ('kfoe', 0.0090599398546055941) +zone = ('ksz056', 0.0030019009194345507) + +[66097] +centroid = (0.68641354274654931, -1.6623577479777982) +station = ('klwc', 0.0054587761086069093) +zone = ('ksz026', 0.002462638888943929) + +[66101] +centroid = (0.68275503592839648, -1.6515349612861816) +station = ('kmkc', 0.00035415247323188417) +zone = ('ksz104', 0.0018786901791132753) + +[66102] +centroid = (0.68258018884393168, -1.6526965651698462) +station = ('kmkc', 0.001260349491553956) +zone = ('ksz104', 0.00098065749968231355) + +[66103] +centroid = (0.68173150504185687, -1.6515491682662926) +station = ('kmkc', 0.0010480003008168559) +zone = ('ksz104', 0.0020925099023898987) + +[66104] +centroid = (0.68329996262745407, -1.6526435595204634) +station = ('kmkc', 0.0013456523245613033) +zone = ('ksz104', 0.0011924893517099629) + +[66105] +centroid = (0.68219703671324128, -1.6517609988776074) +station = ('kmkc', 0.00073890165861072523) +zone = ('ksz104', 0.0017683989197086831) + +[66106] +centroid = (0.68189060925646872, -1.6528724070919847) +station = ('kmkc', 0.0016158779637557776) +zone = ('ksz104', 0.0011502949932057649) + +[66109] +centroid = (0.68356432764925368, -1.6550842279464522) +station = ('kmci', 0.0026846685088769071) +zone = ('ksz104', 0.0012472969370550307) + +[66111] +centroid = (0.682144659382389, -1.654397266352867) +station = ('kmkc', 0.0026355653705137359) +zone = ('ksz104', 0.00063353613544141782) + +[66112] +centroid = (0.68267715933717243, -1.65411096254237) +station = ('kmkc', 0.0023508031021096075) +zone = ('ksz104', 0.00012156503388161657) + +[66115] +centroid = (0.6832659985202103, -1.6511702049258072) +station = ('kmkc', 0.00055565218880306857) +zone = ('ksz104', 0.0022385417059162388) + +[66118] +centroid = (0.68249321908730465, -1.65131061666413) +station = ('kmkc', 0.00028396116021619806) +zone = ('ksz104', 0.0020595387813248812) + +[66202] +centroid = (0.68108245199962525, -1.6522938828048261) +station = ('kmkc', 0.0018841480758213995) +zone = ('ksz104', 0.0020503177557695288) + +[66203] +centroid = (0.6810332511680115, -1.6529278038424431) +station = ('kmkc', 0.0022094977887817304) +zone = ('ksz104', 0.0018265920594400069) + +[66204] +centroid = (0.68051052505703913, -1.6524465642077906) +station = ('kmkc', 0.0024457743818736616) +zone = ('ksz104', 0.002462453839906609) + +[66205] +centroid = (0.6812225321253903, -1.6516183705711343) +station = ('kmkc', 0.0015492177003939719) +zone = ('ksz104', 0.0023245680537379142) + +[66206] +centroid = (0.67999279058772766, -1.6514353727990627) +station = ('kojc', 0.0027020860744740522) +zone = ('ksz105', 0.0030540659719295697) + +[66207] +centroid = (0.67990425003477395, -1.6518362749282458) +station = ('kojc', 0.0024606009448681497) +zone = ('ksz105', 0.0027356766367140355) + +[66208] +centroid = (0.68064807445538877, -1.6515800780473455) +station = ('kmkc', 0.0021025075790475538) +zone = ('ksz104', 0.0027413044266511623) + +[66209] +centroid = (0.6789260977087862, -1.6517509457811157) +station = ('kojc', 0.0017330419222415573) +zone = ('ksz105', 0.0025139287866236841) + +[66210] +centroid = (0.67931193764652453, -1.6529080467153106) +station = ('kojc', 0.0015908697804805842) +zone = ('ksz105', 0.0017294500610144543) + +[66211] +centroid = (0.67933553449801165, -1.6517156552236405) +station = ('kojc', 0.0020467700722911881) +zone = ('ksz105', 0.0026170990830287327) + +[66212] +centroid = (0.67990287122466486, -1.6524755541266662) +station = ('kojc', 0.0022535510549797225) +zone = ('ksz105', 0.0023041774351125139) + +[66213] +centroid = (0.67891316481902897, -1.6529702502498516) +station = ('kojc', 0.0011934768806376079) +zone = ('ksz105', 0.0015718698336412771) + +[66214] +centroid = (0.6801098672739514, -1.6530726661703585) +station = ('kojc', 0.002354896296107036) +zone = ('ksz105', 0.002071019644842471) + +[66215] +centroid = (0.67994015145748743, -1.6535994414451956) +station = ('kojc', 0.002175702273246941) +zone = ('ksz105', 0.0016692302079970747) + +[66216] +centroid = (0.68091880992895815, -1.6535524571817319) +station = ('kmkc', 0.0026278819804317721) +zone = ('ksz104', 0.0017854708230709406) + +[66217] +centroid = (0.68084458107587087, -1.6542629807202185) +station = ('kojc', 0.0031460817799360313) +zone = ('ksz104', 0.0018478408788308231) + +[66218] +centroid = (0.68103951690002618, -1.654900305149877) +station = ('kojc', 0.0034698069375277765) +zone = ('ksz104', 0.0017944942822538063) + +[66219] +centroid = (0.67984703814189351, -1.6541570915945001) +station = ('kojc', 0.0021576514720718356) +zone = ('ksz105', 0.0013504252045632135) + +[66220] +centroid = (0.68001019152037001, -1.654913936171335) +station = ('kojc', 0.0025284715658679662) +zone = ('ksz105', 0.0013603558258474318) + +[66221] +centroid = (0.67829886128220451, -1.6529751895316345) +station = ('kojc', 0.00062778939937390657) +zone = ('ksz105', 0.0015857216071390081) + +[66223] +centroid = (0.67829571968955082, -1.652276656405109) +station = ('kojc', 0.0010266498165548614) +zone = ('ksz105', 0.0021199804747207927) + +[66224] +centroid = (0.67829671452722462, -1.6515492904393405) +station = ('kojc', 0.0015410101599617481) +zone = ('ksz105', 0.0026798213404669994) + +[66226] +centroid = (0.6812177499232398, -1.6556035332120904) +station = ('kixd', 0.0037535683719211606) +zone = ('ksz104', 0.001941198686544632) + +[66227] +centroid = (0.68020151451297362, -1.6558780909567217) +station = ('kixd', 0.0027253277558925838) +zone = ('ksz105', 0.0017072696201981021) + +[66401] +centroid = (0.67949596516285493, -1.6809212793415202) +station = ('kmhk', 0.0061625493907320212) +zone = ('ksz038', 0.001467919577807979) + +[66402] +centroid = (0.67917742512107337, -1.6727806273779058) +station = ('kfoe', 0.0026458967854713676) +zone = ('ksz039', 0.0025181660320000993) + +[66403] +centroid = (0.6962741992347119, -1.6805058560729604) +station = ('kbie', 0.0094186623083387967) +zone = ('ksz010', 0.0037111563199829596) + +[66404] +centroid = (0.6960049472910067, -1.678541487999841) +station = ('kfnb', 0.008665270796125309) +zone = ('ksz011', 0.0026989151385405177) + +[66406] +centroid = (0.69628350183962495, -1.6828591882231796) +station = ('kbie', 0.0083373271894762041) +zone = ('ksz010', 0.0023653091094667797) + +[66407] +centroid = (0.68466681723115341, -1.6789857092010585) +station = ('kmhk', 0.0067625463368744532) +zone = ('ksz023', 0.003265662890949953) + +[66408] +centroid = (0.69742403959921817, -1.6749923784192029) +station = ('kfnb', 0.0056020682163759761) +zone = ('ksz011', 0.0031272908166113706) + +[66409] +centroid = (0.6793551869053891, -1.6678303500204741) +station = ('kfoe', 0.0012372003985970852) +zone = ('ksz039', 0.0033642760494271211) + +[66411] +centroid = (0.69194381046771114, -1.6864846908651774) +station = ('kmhk', 0.0089688958482934886) +zone = ('ksz010', 0.0027966460425703126) + +[66412] +centroid = (0.6965195401676646, -1.6890853536236965) +station = ('kbie', 0.0068579542234548088) +zone = ('ksz010', 0.0040400699724004443) + +[66413] +centroid = (0.67664449859082409, -1.673434375355825) +station = ('kfoe', 0.0042513581372147233) +zone = ('ksz055', 0.0029191483205713476) + +[66414] +centroid = (0.67771665435032424, -1.6700819818351795) +station = ('kfoe', 0.0018733011128909919) +zone = ('ksz055', 0.003148370640190004) + +[66415] +centroid = (0.69269109064024503, -1.6780897095229621) +station = ('kfnb', 0.010228295327903456) +zone = ('ksz011', 0.0024424981131307764) + +[66416] +centroid = (0.68985370887527786, -1.673129169629529) +station = ('ktop', 0.0085924876557944459) +zone = ('ksz024', 0.0021160005640156387) + +[66417] +centroid = (0.69213752456138999, -1.6762989842571234) +station = ('kfnb', 0.009679989179441904) +zone = ('ksz011', 0.0022536855208493594) + +[66418] +centroid = (0.68555653372394265, -1.6743569389451369) +station = ('ktop', 0.0055047685069902529) +zone = ('ksz024', 0.0030535337174037174) + +[66419] +centroid = (0.68697344437058916, -1.6685152521255417) +station = ('ktop', 0.0051525875595142207) +zone = ('ksz024', 0.0028057116174976969) + +[66422] +centroid = (0.6865478458324904, -1.6770086176776917) +station = ('ktop', 0.0077167338220974135) +zone = ('ksz024', 0.0041813619301301419) + +[66423] +centroid = (0.67721033433432065, -1.6795782659354033) +station = ('kemp', 0.008179669556497314) +zone = ('ksz038', 0.0026796565150022213) + +[66424] +centroid = (0.69245395275477661, -1.6651150191300987) +station = ('kfnb', 0.0075255069863425696) +zone = ('ksz025', 0.0027757675225110034) + +[66425] +centroid = (0.69492371581939616, -1.6709506845637747) +station = ('kfnb', 0.0051033385526043267) +zone = ('ksz012', 0.0023424773837247823) + +[66427] +centroid = (0.69221997391525414, -1.6831750928177904) +station = ('kmhk', 0.0097867678351751929) +zone = ('ksz010', 0.0024147919407423338) + +[66428] +centroid = (0.69247884114990998, -1.674318070462695) +station = ('kfnb', 0.0084994718268844843) +zone = ('ksz011', 0.0021785695738871891) + +[66429] +centroid = (0.68231500351738361, -1.6673860939126717) +station = ('ktop', 0.0014241423063141953) +zone = ('ksz026', 0.0032106605854125042) + +[66431] +centroid = (0.67723852140174035, -1.6755818633740642) +station = ('kfoe', 0.0053190619065324601) +zone = ('ksz038', 0.0037901450132963531) + +[66432] +centroid = (0.68922638518223356, -1.6766804957783168) +station = ('ktop', 0.0094239872875125103) +zone = ('ksz024', 0.0038922810332881704) + +[66434] +centroid = (0.69571775336259101, -1.6676510174398316) +station = ('kfnb', 0.0038949778984669597) +zone = ('ksz012', 0.00064390921829499581) + +[66436] +centroid = (0.68884447223531209, -1.670250004682269) +station = ('ktop', 0.0070572806696415939) +zone = ('ksz024', 0.0015629665432562716) + +[66438] +centroid = (0.69559196748339969, -1.6841181814791057) +station = ('kbie', 0.0085002416186192604) +zone = ('ksz010', 0.0013010321179388114) + +[66439] +centroid = (0.69213354521069548, -1.6674890683385393) +station = ('kfnb', 0.0074750786291397902) +zone = ('ksz012', 0.0029893237443528288) + +[66440] +centroid = (0.68535904971907946, -1.6698755617445462) +station = ('ktop', 0.003565979489663907) +zone = ('ksz024', 0.0030389486996575707) + +[66441] +centroid = (0.68021624509186041, -1.6895326116978127) +station = ('kfri', 0.0015259778671991105) +zone = ('ksz036', 0.00085040434312082074) + +[66442] +centroid = (0.68228144083586773, -1.6893065042932167) +station = ('kfri', 0.00072456137214319818) +zone = ('ksz036', 0.00164194952397579) + +[66449] +centroid = (0.68748760091493422, -1.6904642160926495) +station = ('kmhk', 0.0050559689919093412) +zone = ('ksz022', 0.0023130099298382719) + +[66451] +centroid = (0.67395393392253466, -1.6697970393814989) +station = ('kfoe', 0.005569210944677396) +zone = ('ksz055', 0.00099310065892942319) + +[66501] +centroid = (0.68161756994828659, -1.6796602964102469) +station = ('kmhk', 0.0061973136745548307) +zone = ('ksz038', 0.0018085860961979121) + +[66502] +centroid = (0.68343259019731317, -1.68462519962681) +station = ('kmhk', 0.0022262881907647611) +zone = ('ksz022', 0.0037650095447355797) + +[66503] +centroid = (0.68530452563324706, -1.687597111370521) +station = ('kmhk', 0.0023021318416550562) +zone = ('ksz022', 0.00079922295703599953) + +[66506] +centroid = (0.68409681015074464, -1.6856664106986723) +station = ('kmhk', 0.0017570511001562799) +zone = ('ksz022', 0.0027197807989693987) + +[66507] +centroid = (0.68146663387457418, -1.6767022076742117) +station = ('kfoe', 0.0059964905087679229) +zone = ('ksz038', 0.0024547255115893907) + +[66508] +centroid = (0.69561697805158085, -1.6865258108223542) +station = ('kbie', 0.0079124646088289709) +zone = ('ksz010', 0.0019198018855555144) + +[66509] +centroid = (0.68662764228589146, -1.6716828501849863) +station = ('ktop', 0.0051824136257503685) +zone = ('ksz024', 0.0013408990189530908) + +[66510] +centroid = (0.67194523448641441, -1.6687127710369898) +station = ('kfoe', 0.0075890005683714214) +zone = ('ksz055', 0.0031056881747815448) + +[66512] +centroid = (0.6841545805489857, -1.6675767013202818) +station = ('ktop', 0.0026028575928436289) +zone = ('ksz026', 0.0022781407292442779) + +[66514] +centroid = (0.68288141521953338, -1.6907982372048962) +station = ('kfri', 0.001949351257444817) +zone = ('ksz036', 0.0027292620374530403) + +[66515] +centroid = (0.69701894867983039, -1.6703452298462578) +station = ('kfnb', 0.0030300104463060916) +zone = ('ksz012', 0.0026747672196480729) + +[66516] +centroid = (0.69163815095580938, -1.6706419707256817) +station = ('kfnb', 0.0081584009825795296) +zone = ('ksz024', 0.003810519097182588) + +[66517] +centroid = (0.68265293416715478, -1.6878486656756109) +station = ('kmhk', 0.00047286462325266007) +zone = ('ksz036', 0.0020306799447846651) + +[66518] +centroid = (0.69753141225480086, -1.6851285874896704) +station = ('kbie', 0.0064133267792770921) +zone = ('ksz010', 0.0031984416797839802) + +[66520] +centroid = (0.68798948779463764, -1.6862963349323019) +station = ('kmhk', 0.0050623317698732769) +zone = ('ksz022', 0.0026606642326787743) + +[66521] +centroid = (0.68905979350513069, -1.6793382657099614) +station = ('kmhk', 0.008716447723372947) +zone = ('ksz023', 0.0024275427850966335) + +[66522] +centroid = (0.69583739568281522, -1.6745036862286444) +station = ('kfnb', 0.0060880222738095248) +zone = ('ksz011', 0.0017712658037592373) + +[66523] +centroid = (0.67388143294540692, -1.672722036674916) +station = ('kfoe', 0.0061978678500401998) +zone = ('ksz055', 0.0017051021100850698) + +[66524] +centroid = (0.6770296927567393, -1.6668955691263985) +station = ('kfoe', 0.0031625138333492048) +zone = ('ksz040', 0.0033324125210363684) + +[66526] +centroid = (0.68182175601747752, -1.6782178690499363) +station = ('kfoe', 0.0072252162699450694) +zone = ('ksz038', 0.002073373715937272) + +[66527] +centroid = (0.69368798780239904, -1.6698212470982241) +station = ('kfnb', 0.0060209587771924396) +zone = ('ksz012', 0.0020410612721845113) + +[66528] +centroid = (0.67365790862810393, -1.667405676506879) +station = ('kfoe', 0.0060613438979690015) +zone = ('ksz055', 0.0027810706711981232) + +[66531] +centroid = (0.68610632989161335, -1.6898545376783429) +station = ('kmhk', 0.003620323338524317) +zone = ('ksz022', 0.0011930938950603686) + +[66532] +centroid = (0.69501504889915311, -1.664659139129478) +station = ('kfnb', 0.0053335029566094457) +zone = ('ksz102', 0.0031493910225177417) + +[66533] +centroid = (0.68352655872424051, -1.6745996967907968) +station = ('ktop', 0.0045756697879587548) +zone = ('ksz039', 0.0033480629883209118) + +[66534] +centroid = (0.69611340205072558, -1.6726737085079284) +station = ('kfnb', 0.0048560081922887025) +zone = ('ksz011', 0.0029535554360317329) + +[66535] +centroid = (0.68533896097938896, -1.6830856097870408) +station = ('kmhk', 0.0041042187564327062) +zone = ('ksz023', 0.0023098389311912108) + +[66536] +centroid = (0.68460703970427261, -1.6769174416775676) +station = ('kfoe', 0.0077406100929672513) +zone = ('ksz023', 0.0044447966093059581) + +[66537] +centroid = (0.67633676213711247, -1.6706225801176922) +station = ('kfoe', 0.0033160283214943567) +zone = ('ksz055', 0.0017279634459182746) + +[66538] +centroid = (0.69552342840367398, -1.6762960870105652) +station = ('kfnb', 0.0073885574022687969) +zone = ('ksz011', 0.0012401344689767859) + +[66539] +centroid = (0.68315619985696729, -1.6727303618954481) +station = ('ktop', 0.0030970036382657949) +zone = ('ksz039', 0.002090250290262666) + +[66540] +centroid = (0.68923952751150097, -1.6751018803764732) +station = ('ktop', 0.0087286538157253096) +zone = ('ksz024', 0.0027748243911674196) + +[66541] +centroid = (0.69769076081550796, -1.6819201487257291) +station = ('kbie', 0.0076389433526047774) +zone = ('nez092', 0.0032387135663828246) + +[66542] +centroid = (0.68086592645262289, -1.667570837013995) +station = ('ktop', 0.0015472674807989974) +zone = ('ksz039', 0.0029192014500600163) + +[66543] +centroid = (0.67448170403504526, -1.6684092931866532) +station = ('kfoe', 0.0050929264281776819) +zone = ('ksz055', 0.0018323598990150217) + +[66544] +centroid = (0.69275697681950776, -1.6804038241248889) +station = ('kmhk', 0.011165233627401218) +zone = ('ksz011', 0.0039099333825907473) + +[66546] +centroid = (0.67885385853104607, -1.6706472765266078) +station = ('kfoe', 0.0011694340084244703) +zone = ('ksz039', 0.0025936373955389295) + +[66547] +centroid = (0.68471985778712152, -1.6806754671696693) +station = ('kmhk', 0.0055184203671796751) +zone = ('ksz023', 0.0026501153332444591) + +[66548] +centroid = (0.69251074576863647, -1.6888053155452138) +station = ('kmhk', 0.0095633799158666138) +zone = ('ksz010', 0.0036946202930964204) + +[66549] +centroid = (0.68814278006284035, -1.682767331544647) +station = ('kmhk', 0.0062839005508745528) +zone = ('ksz023', 0.001300032401604197) + +[66550] +centroid = (0.69211802923364518, -1.6723860957004923) +station = ('kfnb', 0.008116635596285943) +zone = ('ksz011', 0.0034261985797839475) + +[66552] +centroid = (0.69104377907904269, -1.6689565586269086) +station = ('kfnb', 0.0085598727339858474) +zone = ('ksz024', 0.0038397573990785381) + +[66554] +centroid = (0.68931454176275175, -1.689313398343762) +station = ('kmhk', 0.006472945834963652) +zone = ('ksz022', 0.0035407630215645559) + +[66603] +centroid = (0.68168884919493811, -1.6698640076648978) +station = ('ktop', 0.0006002356094687635) +zone = ('ksz039', 0.0011245994160616411) + +[66604] +centroid = (0.68135947065850178, -1.6707371609830854) +station = ('ktop', 0.0013478358342467721) +zone = ('ksz039', 0.00041183215092293338) + +[66605] +centroid = (0.68088629444499349, -1.6691416857006673) +station = ('ktop', 0.0009558662039160172) +zone = ('ksz039', 0.0017280531935058251) + +[66606] +centroid = (0.68175066875704382, -1.6706268910809448) +station = ('ktop', 0.0011762469717033679) +zone = ('ksz039', 0.00060515745184320125) + +[66607] +centroid = (0.68142156947328769, -1.6691694364357743) +station = ('ktop', 0.0004223935657291247) +zone = ('ksz039', 0.0016272802216565265) + +[66608] +centroid = (0.68206788234859372, -1.6696382667794449) +station = ('ktop', 0.00046378408843009898) +zone = ('ksz039', 0.0014271894955217889) + +[66609] +centroid = (0.6802985548193845, -1.6695948255343629) +station = ('kfoe', 0.00079713266629724512) +zone = ('ksz039', 0.0017036270556510184) + +[66610] +centroid = (0.68027220034767932, -1.672803229391719) +station = ('kfoe', 0.0027471639722172975) +zone = ('ksz039', 0.0016455270439296175) + +[66611] +centroid = (0.68100576223229259, -1.6702170354126988) +station = ('ktop', 0.0011957376003244298) +zone = ('ksz039', 0.00090532300147138668) + +[66612] +centroid = (0.68138414961412497, -1.6699392488089513) +station = ('ktop', 0.00078597614055424215) +zone = ('ksz039', 0.0010294533096735308) + +[66614] +centroid = (0.68085932910805025, -1.6729413547487217) +station = ('kfoe', 0.0030587879379589881) +zone = ('ksz039', 0.0014115019901428832) + +[66615] +centroid = (0.68156548932340721, -1.6737335073363244) +station = ('kfoe', 0.0039383516847544724) +zone = ('ksz039', 0.0019244533830972169) + +[66616] +centroid = (0.68187353993638411, -1.6689432941245934) +station = ('ktop', 0.0001381668475835032) +zone = ('ksz039', 0.0018629577178087113) + +[66617] +centroid = (0.6830316706148376, -1.66894036197145) +station = ('ktop', 0.0011975397996253471) +zone = ('ksz039', 0.0024305494839286295) + +[66618] +centroid = (0.68311328221066081, -1.6711225122286335) +station = ('ktop', 0.0020098361201621607) +zone = ('ksz039', 0.001714106587229078) + +[66619] +centroid = (0.67976446661498169, -1.6700717367524702) +station = ('kfoe', 0.00057383115625255963) +zone = ('ksz039', 0.001882335195031356) + +[66621] +centroid = (0.68125996943784561, -1.6703070245889318) +station = ('ktop', 0.0010924564208510182) +zone = ('ksz039', 0.00075725013805130878) + +[66622] +centroid = (0.681130378740885, -1.6706687789829924) +station = ('ktop', 0.0013998719770716588) +zone = ('ksz039', 0.00053690841724138706) + +[66701] +centroid = (0.66011869148868307, -1.6539112794226491) +station = ('kpts', 0.0065080608387147179) +zone = ('ksz073', 0.0013337540775087309) + +[66710] +centroid = (0.65541700137661318, -1.6689549005641191) +station = ('kcnu', 0.0027835194623066534) +zone = ('ksz095', 0.0016551525855925393) + +[66711] +centroid = (0.6568912460891877, -1.6525650197041235) +station = ('kpts', 0.0033242873861070318) +zone = ('ksz097', 0.0032335480105277078) + +[66712] +centroid = (0.65563076930339736, -1.653080205992727) +station = ('kpts', 0.0020163886610286325) +zone = ('ksz097', 0.0021493374325707651) + +[66713] +centroid = (0.64647854195861953, -1.6543154627708261) +station = ('kjln', 0.0044076236590140962) +zone = ('ksz101', 0.0024026649545905608) + +[66714] +centroid = (0.65688262416268295, -1.6702560260681885) +station = ('kcnu', 0.003020865258515346) +zone = ('ksz095', 0.0014844896961568319) + +[66716] +centroid = (0.66231789361265858, -1.6587047564000816) +station = ('kcnu', 0.0078759312362311068) +zone = ('ksz073', 0.0030481134917580521) + +[66717] +centroid = (0.65791687137082977, -1.6702260238583464) +station = ('kcnu', 0.0029936898291886521) +zone = ('ksz095', 0.0024685646271366069) + +[66720] +centroid = (0.65708731637735684, -1.6660422602018059) +station = ('kcnu', 0.00048260869541327664) +zone = ('ksz096', 0.0026032592541861401) + +[66724] +centroid = (0.65188551962142027, -1.6555678761354722) +station = ('kpts', 0.0024762462669527751) +zone = ('ksz097', 0.0027413255188963423) + +[66725] +centroid = (0.64850471214055216, -1.6562357612803329) +station = ('kpts', 0.0056118774546679052) +zone = ('ksz101', 0.00071834051861066617) + +[66728] +centroid = (0.64876117082084028, -1.6528978539924788) +station = ('kjln', 0.0028626760330883287) +zone = ('ksz101', 0.0019769656814528601) + +[66732] +centroid = (0.65972026772703796, -1.6613265900024277) +station = ('kcnu', 0.0046989956190723083) +zone = ('ksz072', 0.0021843229612214304) + +[66733] +centroid = (0.65618723262881073, -1.6625102897544226) +station = ('kcnu', 0.0033859790383960263) +zone = ('ksz096', 0.00098002809323335569) + +[66734] +centroid = (0.65655951135826107, -1.6550989236187539) +station = ('kpts', 0.0032448712590968463) +zone = ('ksz097', 0.001956624471128798) + +[66735] +centroid = (0.65490270520592797, -1.6529762716357708) +station = ('kpts', 0.0013109561470944322) +zone = ('ksz097', 0.0020021606954991884) + +[66736] +centroid = (0.65539691263692268, -1.6730917323170738) +station = ('kcnu', 0.005596634320191583) +zone = ('ksz095', 0.0016341830057294397) + +[66738] +centroid = (0.66346483673060663, -1.653235016697379) +station = ('kpts', 0.009839455026266276) +zone = ('ksz073', 0.0032649960657729345) + +[66739] +centroid = (0.64796709837106037, -1.6520459587845802) +station = ('kjln', 0.0022011945756291781) +zone = ('ksz101', 0.0027627560093502965) + +[66740] +centroid = (0.65414156711913329, -1.6644190341842813) +station = ('kppf', 0.0031714320255268958) +zone = ('ksz096', 0.0015920259882061308) + +[66741] +centroid = (0.65832318402069401, -1.6520589789408002) +station = ('kpts', 0.0048075666083845321) +zone = ('ksz073', 0.0035703515090975018) + +[66743] +centroid = (0.65456824776136835, -1.656207364773403) +station = ('kpts', 0.0024553524980201269) +zone = ('ksz097', 0.00058287511406490689) + +[66746] +centroid = (0.65743255995669381, -1.6572623115864784) +station = ('kpts', 0.0049099890516917273) +zone = ('ksz097', 0.0031433502881337504) + +[66748] +centroid = (0.65966384123232091, -1.665770268091175) +station = ('kcnu', 0.0023288425569432838) +zone = ('ksz072', 0.0024886649443873312) + +[66749] +centroid = (0.66210721491865032, -1.6651652846125564) +station = ('kcnu', 0.004816482062611465) +zone = ('ksz072', 0.0016965473213792076) + +[66751] +centroid = (0.66224303644104054, -1.6631204743142123) +station = ('kcnu', 0.0055233540371248651) +zone = ('ksz072', 0.0010236594272538624) + +[66753] +centroid = (0.65209087506121, -1.658255630823666) +station = ('kpts', 0.004187898557763213) +zone = ('ksz097', 0.0033611063401313072) + +[66754] +centroid = (0.66330997366607725, -1.6560665341560594) +station = ('kpts', 0.0099195817577190561) +zone = ('ksz073', 0.0026595259913379738) + +[66755] +centroid = (0.66198352343456157, -1.6611917807710035) +station = ('kcnu', 0.0062068487863075903) +zone = ('ksz072', 0.001842013356656234) + +[66756] +centroid = (0.65528090060154265, -1.6521138171858978) +station = ('kpts', 0.0019240223305188942) +zone = ('ksz097', 0.0027459050162136076) + +[66757] +centroid = (0.65305344159697742, -1.670207104489255) +station = ('kppf', 0.0030853205223445564) +zone = ('ksz095', 0.0025660592375494617) + +[66758] +centroid = (0.66350419390523918, -1.6683069994391939) +station = ('kcnu', 0.0062618768927556875) +zone = ('ksz071', 0.0030887321926255109) + +[66760] +centroid = (0.65185108427527849, -1.6515064949660814) +station = ('kpts', 0.0023011721420690841) +zone = ('ksz097', 0.0041996758334532499) + +[66761] +centroid = (0.66179848362726501, -1.6679974652963525) +station = ('kcnu', 0.004548084254881497) +zone = ('ksz071', 0.0024183124264295502) + +[66762] +centroid = (0.6526461341094395, -1.6530095201580215) +station = ('kpts', 0.0010163880331594398) +zone = ('ksz097', 0.0027846247955523686) + +[66763] +centroid = (0.65385531566851363, -1.6527885789280115) +station = ('kpts', 0.00050157270899539531) +zone = ('ksz097', 0.002267602598956522) + +[66767] +centroid = (0.66450887523585711, -1.652879702568258) +station = ('kpts', 0.010889430082063297) +zone = ('ksz060', 0.0030903231905385553) + +[66769] +centroid = (0.66072103952013139, -1.6561421767258409) +station = ('kpts', 0.0074315389464144534) +zone = ('ksz073', 0.00056074700936916517) + +[66770] +centroid = (0.64718091480949946, -1.6530945700524711) +station = ('kjln', 0.0032316811453530661) +zone = ('ksz101', 0.0023885966071720824) + +[66771] +centroid = (0.6542814028988031, -1.6606108828360622) +station = ('kcnu', 0.0056164603338421911) +zone = ('ksz096', 0.0025479183031682116) + +[66772] +centroid = (0.65894066405675711, -1.6616631243887969) +station = ('kcnu', 0.0041212085434987385) +zone = ('ksz072', 0.0026400141351106982) + +[66773] +centroid = (0.65052360429950418, -1.6546868339290655) +station = ('kpts', 0.0032790218533910501) +zone = ('ksz101', 0.0018794478718491812) + +[66775] +centroid = (0.65802290012288833, -1.6606593331760975) +station = ('kcnu', 0.0046619158112016302) +zone = ('ksz096', 0.003321099074075047) + +[66776] +centroid = (0.65385063818611833, -1.6666042736742406) +station = ('kppf', 0.0022658306922998693) +zone = ('ksz096', 0.0030300474127356895) + +[66777] +centroid = (0.65973276428448213, -1.6750290652400797) +station = ('kcnu', 0.0071360244699502111) +zone = ('ksz071', 0.0035369919790367611) + +[66778] +centroid = (0.6457805324308693, -1.6552852200631116) +station = ('kjln', 0.0054163622678326043) +zone = ('okz058', 0.0029107632181494254) + +[66779] +centroid = (0.66018206439382299, -1.6579225696425079) +station = ('kcnu', 0.0073269854557464547) +zone = ('ksz073', 0.0020329290653873749) + +[66780] +centroid = (0.65662302388974114, -1.659056457697651) +station = ('kpts', 0.0054273907925141132) +zone = ('ksz097', 0.0034702316259224006) + +[66781] +centroid = (0.65080854675318478, -1.6534113298584154) +station = ('kpts', 0.002817674235380705) +zone = ('ksz101', 0.002605279719107068) + +[66782] +centroid = (0.65074630831205871, -1.6567768133484513) +station = ('kpts', 0.0039632248041720983) +zone = ('ksz101', 0.0023062214114819251) + +[66783] +centroid = (0.66103404686818401, -1.6709261103279065) +station = ('kcnu', 0.0050400254583653058) +zone = ('ksz071', 0.00021807311892150605) + +[66801] +centroid = (0.67044629336492412, -1.6793241634496052) +station = ('kemp', 0.0014253060178059107) +zone = ('ksz054', 0.0011632937850771746) + +[66830] +centroid = (0.67373932823770954, -1.6770418487466496) +station = ('kemp', 0.0049420003768523976) +zone = ('ksz054', 0.0027015404249220647) + +[66833] +centroid = (0.67536546895508509, -1.6789196833954556) +station = ('kemp', 0.0063229559513561301) +zone = ('ksz054', 0.0042161311267844585) + +[66834] +centroid = (0.67826931285796821, -1.683149227038276) +station = ('kfri', 0.0055757703480254928) +zone = ('ksz038', 0.0035353600889371979) + +[66835] +centroid = (0.67270666927918199, -1.6800217017384571) +station = ('kemp', 0.0037490492903347835) +zone = ('ksz054', 0.0020923429797139303) + +[66838] +centroid = (0.67291701636063228, -1.689495837610473) +station = ('kfri', 0.0087453647364695193) +zone = ('ksz037', 0.00309314447833518) + +[66839] +centroid = (0.66701944409838843, -1.6711200687676806) +station = ('kemp', 0.006513623985842933) +zone = ('ksz058', 0.00039178447016560307) + +[66840] +centroid = (0.66437003429386099, -1.690857944918607) +station = ('kewk', 0.0055628970866574753) +zone = ('ksz069', 0.0049940399382944929) + +[66842] +centroid = (0.66339956141658207, -1.686886849631422) +station = ('kemp', 0.0083800530849393456) +zone = ('ksz069', 0.0047562675028139864) + +[66843] +centroid = (0.6671081068243897, -1.6884400181327717) +station = ('kemp', 0.0076538308637180601) +zone = ('ksz053', 0.0024405314356329044) + +[66845] +centroid = (0.66843895528562036, -1.6843891962053554) +station = ('kemp', 0.0042660520775781073) +zone = ('ksz053', 0.0011739482413583593) + +[66846] +centroid = (0.67452559906573284, -1.6837267215811758) +station = ('kemp', 0.0066112481750105643) +zone = ('ksz037', 0.0025434552800731795) + +[66849] +centroid = (0.67854024031775528, -1.685806944610043) +station = ('kfri', 0.0039075034112602764) +zone = ('ksz036', 0.0031060577738348683) + +[66850] +centroid = (0.67079930365943241, -1.688508173240062) +station = ('kemp', 0.007652186234572359) +zone = ('ksz053', 0.0030887578325244072) + +[66851] +centroid = (0.66702754242611761, -1.691549339648492) +station = ('kewk', 0.0058008334908499267) +zone = ('ksz052', 0.003466152490939082) + +[66852] +centroid = (0.66434858419735388, -1.6736941850682769) +station = ('kemp', 0.0062822538882668245) +zone = ('ksz058', 0.0037397792967464884) + +[66853] +centroid = (0.66325818974717043, -1.6796228940043767) +station = ('kemp', 0.0058049379938497842) +zone = ('ksz070', 0.002166162673174923) + +[66854] +centroid = (0.66760254114818718, -1.6751591969891084) +station = ('kemp', 0.0033456995655689152) +zone = ('ksz058', 0.003371788836846613) + +[66856] +centroid = (0.67016814024203386, -1.6722311628227928) +station = ('kemp', 0.005430364506468755) +zone = ('ksz058', 0.0030009657183573146) + +[66857] +centroid = (0.66490660086580156, -1.6691127481416694) +station = ('kcnu', 0.0077779216206702861) +zone = ('ksz058', 0.002819707036360742) + +[66858] +centroid = (0.67161032325624925, -1.6917920276809817) +station = ('kewk', 0.0089188411473090715) +zone = ('ksz052', 0.003091617621631901) + +[66859] +centroid = (0.67293230544487981, -1.6923134797016002) +station = ('kfri', 0.0091232948322709142) +zone = ('ksz052', 0.0039045803574786989) + +[66860] +centroid = (0.66544657082978365, -1.6784068533013419) +station = ('kemp', 0.0036270505042852162) +zone = ('ksz070', 0.0044508794079603882) + +[66861] +centroid = (0.66964372116168702, -1.6931178670472595) +station = ('kewk', 0.0067054162196464769) +zone = ('ksz052', 0.0012197066846075517) + +[66862] +centroid = (0.66593035864514383, -1.6852223465770875) +station = ('kemp', 0.0057894598356326727) +zone = ('ksz053', 0.0026176665549912351) + +[66863] +centroid = (0.66030807716581708, -1.67694342963013) +station = ('kemp', 0.008884499135771386) +zone = ('ksz070', 0.0022226868510489728) + +[66864] +centroid = (0.6694190623803703, -1.6751931087364746) +station = ('kemp', 0.0030145902089116924) +zone = ('ksz054', 0.0029352671844057473) + +[66865] +centroid = (0.66712550775703205, -1.6806335094544513) +station = ('kemp', 0.0023037186574635798) +zone = ('ksz054', 0.0044957835100663795) + +[66866] +centroid = (0.66624526840208131, -1.6948445387295499) +station = ('kewk', 0.0032320484224132293) +zone = ('ksz052', 0.0032453037185543885) + +[66868] +centroid = (0.67273319828381228, -1.6751568757012032) +station = ('kemp', 0.0047656640621533816) +zone = ('ksz054', 0.0028260086852412891) + +[66869] +centroid = (0.67132126182553398, -1.6845339363602232) +station = ('kemp', 0.0048943540777551114) +zone = ('ksz053', 0.0030167723080777075) + +[66870] +centroid = (0.66225057626340922, -1.6760321583210784) +station = ('kemp', 0.0071839316121681505) +zone = ('ksz070', 0.0030274508326996168) + +[66871] +centroid = (0.66955443011715499, -1.6687132248225955) +station = ('kfoe', 0.009975169990302948) +zone = ('ksz058', 0.0027734845628671402) + +[66872] +centroid = (0.67702632427128295, -1.6889332830859702) +station = ('kfri', 0.0046221301821190997) +zone = ('ksz037', 0.0024218312565086183) + +[66873] +centroid = (0.67402549242186649, -1.6873772696979399) +station = ('kfri', 0.0077087630118306549) +zone = ('ksz037', 0.001265250124763554) + +[66901] +centroid = (0.69045286295419495, -1.7041211731434101) +station = ('kcnk', 0.00021715658624245538) +zone = ('ksz020', 0.0013971305708118504) + +[66930] +centroid = (0.69301235339565959, -1.7013379663984247) +station = ('kcnk', 0.0035544816506752276) +zone = ('ksz008', 0.0031206159810009603) + +[66932] +centroid = (0.69428302290428157, -1.7266696751618704) +station = ('khde', 0.012876572243972486) +zone = ('ksz006', 0.0019524396082062619) + +[66933] +centroid = (0.69246669365831603, -1.6907409205922608) +station = ('kmhk', 0.0097984359259259499) +zone = ('ksz009', 0.0034553246480415823) + +[66935] +centroid = (0.69534961106346782, -1.7039945145995927) +station = ('kcnk', 0.0050540026048202635) +zone = ('ksz008', 0.00033778296681091427) + +[66936] +centroid = (0.69675615445435757, -1.7159398970660924) +station = ('kcnk', 0.011020440036329848) +zone = ('ksz007', 0.0027182250381756509) + +[66937] +centroid = (0.69093603990431707, -1.697692863708927) +station = ('kcnk', 0.0051505760864597096) +zone = ('ksz009', 0.0042209784860832962) + +[66938] +centroid = (0.69070466160538013, -1.700194828098246) +station = ('kcnk', 0.003208432770833883) +zone = ('ksz020', 0.0035703053710069233) + +[66939] +centroid = (0.69556362333634736, -1.7087522123273593) +station = ('kcnk', 0.0062684849172694309) +zone = ('ksz007', 0.0043755898419732247) + +[66940] +centroid = (0.69477696853588855, -1.7008040003670697) +station = ('kcnk', 0.0052310236812051977) +zone = ('ksz008', 0.0027264952750598835) + +[66941] +centroid = (0.69526196062843271, -1.7180820094702349) +station = ('kcnk', 0.011690888944054926) +zone = ('ksz007', 0.0030860719614041535) + +[66942] +centroid = (0.69473317822495595, -1.7104349889789618) +station = ('kcnk', 0.0064620724343907067) +zone = ('ksz007', 0.0029412996643314242) + +[66943] +centroid = (0.69240372217890411, -1.6923808668640197) +station = ('kcnk', 0.0094375598845267018) +zone = ('ksz009', 0.0025477264455308758) + +[66944] +centroid = (0.69533351912776442, -1.6982588041721787) +station = ('khjh', 0.006645604546209047) +zone = ('ksz009', 0.0030491389316875841) + +[66945] +centroid = (0.69616248070929165, -1.6908445756965367) +station = ('kbie', 0.0074059089632151371) +zone = ('ksz009', 0.0033296279130597718) + +[66946] +centroid = (0.69754546215527946, -1.6930497817531389) +station = ('kbie', 0.00674098238281864) +zone = ('ksz009', 0.0033679887366203707) + +[66948] +centroid = (0.69111984052784459, -1.7078456708605809) +station = ('kcnk', 0.0028352315493909734) +zone = ('ksz020', 0.0034183686946729712) + +[66949] +centroid = (0.69191082374484836, -1.713674372430541) +station = ('kcnk', 0.0073824995850433313) +zone = ('ksz007', 0.0025005800572194723) + +[66951] +centroid = (0.69552419634854479, -1.7282197544304443) +station = ('khde', 0.011267143533320976) +zone = ('ksz006', 0.0033412237590833105) + +[66952] +centroid = (0.6952659574324197, -1.7209781564711171) +station = ('khsi', 0.013532021948864891) +zone = ('ksz006', 0.0025794154351750894) + +[66953] +centroid = (0.69272451369542065, -1.6948302968428535) +station = ('kcnk', 0.0077034223270472137) +zone = ('ksz009', 0.0016609268045850172) + +[66955] +centroid = (0.69757092650906605, -1.6981658479362176) +station = ('khjh', 0.0050277021945643015) +zone = ('nez088', 0.0041773847797254259) + +[66956] +centroid = (0.6945418028724748, -1.7143958915433155) +station = ('kcnk', 0.008836190763696402) +zone = ('ksz007', 0.00020866545811790515) + +[66958] +centroid = (0.69620216949648195, -1.6960618535229384) +station = ('khjh', 0.0071434821071476671) +zone = ('ksz009', 0.0021959274792510627) + +[66959] +centroid = (0.69678793690003638, -1.702213423551225) +station = ('khjh', 0.0040731551984725441) +zone = ('ksz008', 0.002320774571819811) + +[66960] +centroid = (0.69702802439194067, -1.7005572631707151) +station = ('khjh', 0.0042750398392975668) +zone = ('ksz008', 0.0034602967176470319) + +[66962] +centroid = (0.691138550457426, -1.6949648268215973) +station = ('kcnk', 0.0072620467776143864) +zone = ('ksz009', 0.0032469374594949474) + +[66963] +centroid = (0.69179495133580848, -1.7104121775256385) +station = ('kcnk', 0.004923460885717444) +zone = ('ksz007', 0.0039112014782691938) + +[66964] +centroid = (0.69710567409036184, -1.7070179659161149) +station = ('khjh', 0.0046952235333633137) +zone = ('ksz008', 0.0028617905211218869) + +[66966] +centroid = (0.69421045211398358, -1.7063438150392398) +station = ('kcnk', 0.0042064965995873655) +zone = ('ksz008', 0.0018015155298218644) + +[66967] +centroid = (0.69498530848869899, -1.7242845431126801) +station = ('khde', 0.013143600557521971) +zone = ('ksz006', 0.00061554522565813595) + +[66968] +centroid = (0.69507276693751652, -1.6941194242385162) +station = ('khjh', 0.009012031862067206) +zone = ('ksz009', 0.0007639992085685355) + +[66970] +centroid = (0.69722810893738929, -1.7110239852416325) +station = ('khjh', 0.0069585860142329986) +zone = ('ksz007', 0.0037706811923023378) + +[67001] +centroid = (0.65900936021611545, -1.7039503054096397) +station = ('kict', 0.0033008045625336786) +zone = ('ksz083', 0.0026524850865072207) + +[67002] +centroid = (0.6579768059773432, -1.6948605084922057) +station = ('kaao', 0.00173751201355784) +zone = ('ksz069', 0.0039816975703564758) + +[67003] +centroid = (0.64750189831223381, -1.7117103185166869) +station = ('kp28', 0.0073605161338478079) +zone = ('ksz091', 0.0016141537669462724) + +[67004] +centroid = (0.65063649219552311, -1.706112942885786) +station = ('kict', 0.0078491660882477089) +zone = ('ksz091', 0.0047313539136341742) + +[67005] +centroid = (0.6469093066713042, -1.6928949012353172) +station = ('kwld', 0.0018470788317965347) +zone = ('ksz093', 0.0037299188907590334) + +[67008] +centroid = (0.65426785914380758, -1.6891198936895935) +station = ('kwld', 0.006605498851436499) +zone = ('ksz093', 0.0044213634393667784) + +[67009] +centroid = (0.64957702497968495, -1.715079781357417) +station = ('kp28', 0.0040957801578769132) +zone = ('ksz091', 0.0026994360308143987) + +[67010] +centroid = (0.65736827948034282, -1.6925578956100493) +station = ('kaao', 0.0036379985135328932) +zone = ('ksz069', 0.0027834640275003018) + +[67012] +centroid = (0.6575294955433495, -1.6850551789413313) +station = ('kaao', 0.0093478768481364116) +zone = ('ksz069', 0.0044532759836931231) + +[67013] +centroid = (0.65243669459920017, -1.6976506965541989) +station = ('kiab', 0.0040980488036397519) +zone = ('ksz092', 0.0038374791150894349) + +[67016] +centroid = (0.66124924596495505, -1.7019547133962019) +station = ('kewk', 0.0042730711004170313) +zone = ('ksz068', 0.0029831376870661499) + +[67017] +centroid = (0.66019323450103584, -1.6949177727449636) +station = ('kaao', 0.0019676075067210606) +zone = ('ksz069', 0.0038397811694281551) + +[67018] +centroid = (0.64703947332691791, -1.7079624508408315) +station = ('kbkn', 0.0090647507583224724) +zone = ('ksz091', 0.0036583120333007488) + +[67019] +centroid = (0.65112247912574095, -1.6890875352852615) +station = ('kwld', 0.0043117120410967793) +zone = ('ksz093', 0.0014619316331438514) + +[67020] +centroid = (0.66336339819448076, -1.7046742679833671) +station = ('khut', 0.0028831029587647683) +zone = ('ksz068', 0.0034004244728708245) + +[67021] +centroid = (0.65935915910480025, -1.7263978401308724) +station = ('kptt', 0.0026613579313318819) +zone = ('ksz081', 0.0033300139920841719) + +[67022] +centroid = (0.64710785532701109, -1.704011409386752) +station = ('kbkn', 0.0069311846895738841) +zone = ('ksz092', 0.0035482508907132711) + +[67023] +centroid = (0.65181268703173467, -1.6858519915580368) +station = ('kwld', 0.0068819956496958589) +zone = ('ksz093', 0.0038962889724678041) + +[67024] +centroid = (0.64770472302460813, -1.6840041416657803) +station = ('kwld', 0.0076729619723875349) +zone = ('ksz098', 0.0034235068792036394) + +[67025] +centroid = (0.65699432523481061, -1.7066717973122743) +station = ('kict', 0.0048626167044778391) +zone = ('ksz082', 0.0050747784580395328) + +[67026] +centroid = (0.65468818678756535, -1.7015965194738152) +station = ('kict', 0.0025705274672170441) +zone = ('ksz083', 0.0030701697524497902) + +[67028] +centroid = (0.65377894006044635, -1.7267657904437776) +station = ('kptt', 0.0049368544939576613) +zone = ('ksz081', 0.0042777005123259522) + +[67029] +centroid = (0.64876387608118091, -1.7327622007015622) +station = ('kavk', 0.010985535593921975) +zone = ('ksz089', 0.00036442909576214517) + +[67030] +centroid = (0.65948340909424963, -1.7025130093173297) +station = ('kict', 0.0028384674579883997) +zone = ('ksz083', 0.0021203036435244243) + +[67031] +centroid = (0.65274095784770025, -1.7041310691602687) +station = ('kict', 0.0052240249902584836) +zone = ('ksz092', 0.0036213972206471661) + +[67035] +centroid = (0.65710309415379475, -1.7171829205593625) +station = ('kptt', 0.0050876775646284608) +zone = ('ksz082', 0.0038111468488182722) + +[67036] +centroid = (0.65096534713318388, -1.7082701174813733) +station = ('kict', 0.0086917091604372838) +zone = ('ksz091', 0.0033244826510104531) + +[67037] +centroid = (0.65575103994215234, -1.6967625508577364) +station = ('kiab', 0.0010390172332167252) +zone = ('ksz083', 0.0039045792625161421) + +[67038] +centroid = (0.64754839388350693, -1.6881495255320698) +station = ('kwld', 0.0044526785937912513) +zone = ('ksz093', 0.0028505017431994547) + +[67039] +centroid = (0.6549813671953153, -1.6925206502838119) +station = ('kiab', 0.00433253747308262) +zone = ('ksz069', 0.0048031164096525129) + +[67041] +centroid = (0.66417001956158239, -1.6952377963166092) +station = ('kewk', 0.0021089896292841546) +zone = ('ksz068', 0.004092392619565891) + +[67042] +centroid = (0.6607339025967186, -1.6891421815441414) +station = ('kaao', 0.0062965305394023481) +zone = ('ksz069', 0.0015525266705120756) + +[67045] +centroid = (0.66088890528758826, -1.6815423896624273) +station = ('kemp', 0.0083945728519101027) +zone = ('ksz070', 0.0015643643088830643) + +[67047] +centroid = (0.65673781419464483, -1.6765102738163697) +station = ('kidp', 0.0092479243495987556) +zone = ('ksz094', 0.0039992315607609392) + +[67049] +centroid = (0.6488687180093482, -1.7077411779982639) +station = ('kict', 0.010040312623594597) +zone = ('ksz091', 0.0031957166464119304) + +[67050] +centroid = (0.65754146850201822, -1.7047606094214631) +station = ('kict', 0.003373985291441521) +zone = ('ksz083', 0.0029683852043282618) + +[67051] +centroid = (0.64733043716651795, -1.6964000808786823) +station = ('kwld', 0.0026424562250771961) +zone = ('okz008', 0.0047917466410423298) + +[67052] +centroid = (0.65725101080790127, -1.7030152452628837) +station = ('kict', 0.0019702533427799224) +zone = ('ksz083', 0.0016507666668825552) + +[67053] +centroid = (0.66753285015115504, -1.6990141303125643) +station = ('kewk', 0.0035422527319117179) +zone = ('ksz068', 0.0037238624473096551) + +[67054] +centroid = (0.65580816456857016, -1.7333924565477499) +station = ('kddc', 0.0095899641697750303) +zone = ('ksz080', 0.00050937322401712628) + +[67055] +centroid = (0.65956041302084767, -1.6964196634728896) +station = ('kaao', 0.00074608073355875452) +zone = ('ksz083', 0.0040732901409987737) + +[67056] +centroid = (0.66360823298195049, -1.7021395437639881) +station = ('kewk', 0.0033635813625574077) +zone = ('ksz068', 0.0013975051512466186) + +[67057] +centroid = (0.64701455002519936, -1.7240280495258069) +station = ('kp28', 0.0048883391064804774) +zone = ('ksz090', 0.0030515566467235046) + +[67058] +centroid = (0.65132050418267218, -1.7114934613571264) +station = ('kp28', 0.0068109417332636287) +zone = ('ksz091', 0.0022133737271995127) + +[67059] +centroid = (0.65688859318872472, -1.7295737110509712) +station = ('kptt', 0.0049223069520377624) +zone = ('ksz080', 0.0029495538204784813) + +[67060] +centroid = (0.65524848983733319, -1.699317102017418) +station = ('kiab', 0.0018589207143297254) +zone = ('ksz083', 0.0028179348328765228) + +[67061] +centroid = (0.64739138406399754, -1.7170851821212509) +station = ('kp28', 0.004066078370320296) +zone = ('ksz091', 0.0045963110793976669) + +[67062] +centroid = (0.66575908948564577, -1.700598173688382) +station = ('kewk', 0.0026870705197073914) +zone = ('ksz068', 0.0017849689857015413) + +[67063] +centroid = (0.66917206338462809, -1.697049064107744) +station = ('kewk', 0.0051196605449489218) +zone = ('ksz052', 0.0018994752334269064) + +[67065] +centroid = (0.65388629526273656, -1.7194321263664079) +station = ('kp28', 0.0032038486873873818) +zone = ('ksz081', 0.004443119923833571) + +[67066] +centroid = (0.65921080611838068, -1.7238075097215249) +station = ('kptt', 0.001243736267934454) +zone = ('ksz081', 0.0021657841835704466) + +[67067] +centroid = (0.65961509418631259, -1.6977522049034948) +station = ('kaao', 0.0010926544398762708) +zone = ('ksz083', 0.0032004709532782467) + +[67068] +centroid = (0.65654390811474839, -1.7122698187149987) +station = ('kp28', 0.0084751841197265258) +zone = ('ksz082', 0.0011017665774984934) + +[67070] +centroid = (0.64715199470379403, -1.719602994100178) +station = ('kp28', 0.0035805230249692935) +zone = ('ksz090', 0.0034231049968018925) + +[67071] +centroid = (0.65035713479544888, -1.7258189493245708) +station = ('kp28', 0.0046269974271182625) +zone = ('ksz090', 0.0028046109837366047) + +[67072] +centroid = (0.65527571697366427, -1.6861865188157668) +station = ('kwld', 0.0088183624956388682) +zone = ('ksz069', 0.0051924678688296958) + +[67073] +centroid = (0.66992402103955739, -1.6987024668680355) +station = ('kewk', 0.0058590416503039016) +zone = ('ksz052', 0.0031987861687266042) + +[67074] +centroid = (0.65747828758309612, -1.6881498047847501) +station = ('kaao', 0.0069436699967407528) +zone = ('ksz069', 0.0024996388976240742) + +[67101] +centroid = (0.65947710845565, -1.7010723796461487) +station = ('kict', 0.0023989685771559537) +zone = ('ksz083', 0.0017538157128872058) + +[67103] +centroid = (0.65041998410181323, -1.70275382984752) +station = ('kict', 0.0069247434068410796) +zone = ('ksz092', 0.0012735242227207629) + +[67104] +centroid = (0.65039830711250346, -1.7220192104633465) +station = ('kp28', 0.0016209130856472225) +zone = ('ksz090', 0.00069193076034325569) + +[67105] +centroid = (0.64984479339352597, -1.7047639604536271) +station = ('kict', 0.0080102778273742608) +zone = ('ksz092', 0.0027699586369899693) + +[67106] +centroid = (0.65392465759969542, -1.7061863863407098) +station = ('kict', 0.0055023806938350158) +zone = ('ksz082', 0.0054876122102498273) + +[67107] +centroid = (0.66661478951131359, -1.7025277573495092) +station = ('kewk', 0.0044166506425039487) +zone = ('ksz068', 0.0031102142787598815) + +[67108] +centroid = (0.65995847026335008, -1.7049276897907564) +station = ('kict', 0.0044900382748467227) +zone = ('ksz083', 0.0038150731237816685) + +[67109] +centroid = (0.65556791999703312, -1.7363550656865474) +station = ('kddc', 0.0075489303538237938) +zone = ('ksz080', 0.0027650970062532191) + +[67110] +centroid = (0.65390324240977349, -1.6969234876680628) +station = ('kiab', 0.0026893597492682968) +zone = ('ksz083', 0.0050122832659726217) + +[67111] +centroid = (0.65649797104883578, -1.7093218354353326) +station = ('khut', 0.0079499005653699897) +zone = ('ksz082', 0.0029248733761065571) + +[67112] +centroid = (0.6539259491433419, -1.7177416877193885) +station = ('kp28', 0.0036853120526438173) +zone = ('ksz082', 0.0042315640779796741) + +[67114] +centroid = (0.66454493373820334, -1.6980177567491856) +station = ('kewk', 0.00045448736773052697) +zone = ('ksz068', 0.0019810046190287009) + +[67117] +centroid = (0.6645203944089203, -1.6990124373431899) +station = ('kewk', 0.00096224597530248973) +zone = ('ksz068', 0.0012397185601389926) + +[67118] +centroid = (0.65417846337952046, -1.7078781863445456) +station = ('kict', 0.0065218469873119184) +zone = ('ksz082', 0.0041323366643423783) + +[67119] +centroid = (0.64994059451616792, -1.6963758557086646) +station = ('kwld', 0.0025786190522329136) +zone = ('ksz092', 0.0039090908064989245) + +[67120] +centroid = (0.65396233925824598, -1.6994887202427666) +station = ('kiab', 0.0029671521630894996) +zone = ('ksz083', 0.0039517179264447113) + +[67122] +centroid = (0.65657542876103936, -1.6829881156950244) +station = ('kwld', 0.01152193414936766) +zone = ('ksz094', 0.0038483070618777022) + +[67123] +centroid = (0.66232686460501389, -1.6929126337805172) +station = ('kewk', 0.0043210973388693001) +zone = ('ksz069', 0.0036397688031410899) + +[67124] +centroid = (0.65684487269096226, -1.7239252670861569) +station = ('kptt', 0.0011899603716724507) +zone = ('ksz081', 0.00052509575640668506) + +[67127] +centroid = (0.64864847491103894, -1.736377702606946) +station = ('kddc', 0.01242858255973197) +zone = ('ksz089', 0.0030282633709679059) + +[67131] +centroid = (0.65322385554514206, -1.6921917953461512) +station = ('kwld', 0.0046700732927338123) +zone = ('ksz093', 0.0036866781670119343) + +[67132] +centroid = (0.66062249823056385, -1.6857209347845046) +station = ('kemp', 0.0099410836994628798) +zone = ('ksz069', 0.0037125350105892134) + +[67133] +centroid = (0.65571953674915384, -1.6948443467433321) +station = ('kiab', 0.0023481859605977802) +zone = ('ksz069', 0.0052279954667112929) + +[67134] +centroid = (0.65432992305200854, -1.7222042851772279) +station = ('kptt', 0.0038032147135275553) +zone = ('ksz081', 0.0028896383631034539) + +[67135] +centroid = (0.66179321273292402, -1.7009982729661088) +station = ('kewk', 0.0033494517928282126) +zone = ('ksz068', 0.0022314791273193926) + +[67137] +centroid = (0.65683447052862032, -1.6793902241617931) +station = ('kidp', 0.01051622302093776) +zone = ('ksz094', 0.0031589653177624328) + +[67138] +centroid = (0.65059570385090393, -1.7176804790225211) +station = ('kp28', 0.0018670379622094488) +zone = ('ksz090', 0.0038272828982149364) + +[67140] +centroid = (0.64715590424131841, -1.6991914034046895) +station = ('kwld', 0.0047486716498362641) +zone = ('ksz092', 0.0032234428951750369) + +[67142] +centroid = (0.65367092163304041, -1.712405710050559) +station = ('kp28', 0.0067353924511991733) +zone = ('ksz082', 0.0018821615764842397) + +[67143] +centroid = (0.6517377600469465, -1.7272372213280338) +station = ('kptt', 0.0069141978822411685) +zone = ('ksz090', 0.0043418601199236564) + +[67144] +centroid = (0.6600690368714639, -1.6930269877531079) +station = ('kaao', 0.0031810786418886151) +zone = ('ksz069', 0.002359437224227759) + +[67146] +centroid = (0.65248233495913976, -1.6947957742302493) +station = ('kwld', 0.0039285174892472428) +zone = ('ksz093', 0.0045072514988366078) + +[67147] +centroid = (0.66079170790154473, -1.6984281185629146) +station = ('kaao', 0.0023410674114003496) +zone = ('ksz068', 0.0035564764056168485) + +[67149] +centroid = (0.65519932391230451, -1.7039564315153144) +station = ('kict', 0.0033219745108861555) +zone = ('ksz083', 0.0034343422231761455) + +[67150] +centroid = (0.6459010823223047, -1.7143053613150145) +station = ('kp28', 0.0066299438526861657) +zone = ('ksz091', 0.003810530671279243) + +[67151] +centroid = (0.66570603147638507, -1.6974560050761389) +station = ('kewk', 0.0016482267666787572) +zone = ('ksz068', 0.0029080196411387133) + +[67152] +centroid = (0.65031472329462547, -1.7001844957490742) +station = ('kwld', 0.0055296499701429627) +zone = ('ksz092', 0.0009641611773198314) + +[67154] +centroid = (0.66284786284002672, -1.6951549455370172) +station = ('kewk', 0.0025078031273538643) +zone = ('ksz068', 0.0043065581051135952) + +[67155] +centroid = (0.65057057110967531, -1.7302768518467222) +station = ('kptt', 0.009156562125051523) +zone = ('ksz089', 0.0023698593714549269) + +[67156] +centroid = (0.65023389709696555, -1.6922984524167404) +station = ('kwld', 0.0018460059492734092) +zone = ('ksz093', 0.001751875027926659) + +[67159] +centroid = (0.6532116382403782, -1.7158315819327135) +station = ('kp28', 0.0041615623840958122) +zone = ('ksz082', 0.003336403162068481) + +[67202] +centroid = (0.65776195594642273, -1.6988148311652791) +station = ('kiab', 0.0015478137692231419) +zone = ('ksz083', 0.0017432253539146232) + +[67203] +centroid = (0.65800244486405501, -1.6993520609623354) +station = ('kict', 0.0012875691252148796) +zone = ('ksz083', 0.0013466715136124963) + +[67204] +centroid = (0.6591610467814063, -1.699261146761599) +station = ('kaao', 0.0020070144483391905) +zone = ('ksz083', 0.0019986209705636282) + +[67205] +centroid = (0.65885259474270141, -1.7003601631382874) +station = ('kict', 0.0017414759641170958) +zone = ('ksz083', 0.0012426310830029534) + +[67206] +centroid = (0.6580601803557109, -1.6969044461259237) +station = ('kaao', 0.00081075708784359595) +zone = ('ksz083', 0.0032715971341988831) + +[67207] +centroid = (0.65738831586015578, -1.6969348497614933) +station = ('kiab', 0.0010129748061880966) +zone = ('ksz083', 0.0032484166891591434) + +[67208] +centroid = (0.65805627081818652, -1.6978434856233742) +station = ('kaao', 0.0011813628449682504) +zone = ('ksz083', 0.0025331284209810841) + +[67209] +centroid = (0.65713808800529727, -1.7004488607708739) +station = ('kict', 6.9638542202493732e-05) +zone = ('ksz083', 0.00073852050280125495) + +[67210] +centroid = (0.65677193538152134, -1.6972715761340806) +station = ('kiab', 0.0003660865789826794) +zone = ('ksz083', 0.0031142775061862213) + +[67211] +centroid = (0.65741107495360174, -1.6985099745048333) +station = ('kiab', 0.0011228064511826831) +zone = ('ksz083', 0.0020088300381629841) + +[67212] +centroid = (0.65803108571708024, -1.7006296070682103) +station = ('kict', 0.0009178480797706987) +zone = ('ksz083', 0.00043406334815844781) + +[67213] +centroid = (0.65742147711594356, -1.6993257588505077) +station = ('kict', 0.0010028191331235472) +zone = ('ksz083', 0.0013723720532059301) + +[67214] +centroid = (0.65811440773557039, -1.6985151581327118) +station = ('kaao', 0.0015829193543453258) +zone = ('ksz083', 0.0020178519743420014) + +[67215] +centroid = (0.65651537198147825, -1.7003122713036125) +station = ('kict', 0.00062587549756866565) +zone = ('ksz083', 0.0013310899936467635) + +[67216] +centroid = (0.65643684961843096, -1.698427158631826) +station = ('kiab', 0.00064401874448177473) +zone = ('ksz083', 0.0024210549487093747) + +[67217] +centroid = (0.65655924955887335, -1.6992955821077409) +station = ('kict', 0.001126921900459373) +zone = ('ksz083', 0.0017927632937628064) + +[67218] +centroid = (0.65743954127370174, -1.6978635918163572) +station = ('kiab', 0.00092459644097009125) +zone = ('ksz083', 0.0025120444545658105) + +[67219] +centroid = (0.65923663699131019, -1.6985318085737755) +station = ('kaao', 0.0014569695054113126) +zone = ('ksz083', 0.0024804022978089867) + +[67220] +centroid = (0.65888196863401249, -1.6978276903936436) +station = ('kaao', 0.00085162258202703357) +zone = ('ksz083', 0.0027760327521954521) + +[67223] +centroid = (0.65872970611006854, -1.7016182488230023) +station = ('kict', 0.0018277505250431135) +zone = ('ksz083', 0.0011126244870907035) + +[67226] +centroid = (0.65926693590712482, -1.696687536606486) +station = ('kaao', 0.0004082303905982813) +zone = ('ksz083', 0.0037559260980143958) + +[67227] +centroid = (0.65673573725283507, -1.7016904181875725) +station = ('kict', 0.00099284904064746073) +zone = ('ksz083', 0.0011227216471073136) + +[67228] +centroid = (0.65919347499890846, -1.6959310061889163) +station = ('kaao', 0.00072814545314073579) +zone = ('ksz083', 0.0042828100841238621) + +[67230] +centroid = (0.65776975756817901, -1.6959597517616967) +station = ('kaao', 0.0012586533896845387) +zone = ('ksz083', 0.0040024943040216556) + +[67232] +centroid = (0.65687721364200169, -1.6959401342609044) +station = ('kiab', 0.0013766009463169341) +zone = ('ksz083', 0.0041073420642655433) + +[67235] +centroid = (0.65779701961109527, -1.7016968235459271) +station = ('kict', 0.0011456811815949469) +zone = ('ksz083', 0.00054287332657904509) + +[67260] +centroid = (0.65832730299772857, -1.6980932422393347) +station = ('kaao', 0.0011885405891139149) +zone = ('ksz083', 0.0023907649186927543) + +[67301] +centroid = (0.64940612233932971, -1.6712588922563842) +station = ('kidp', 0.0010345725644907663) +zone = ('ksz099', 0.00033007591472226445) + +[67330] +centroid = (0.64853040338714152, -1.6634584398705683) +station = ('kppf', 0.0040484238379221247) +zone = ('ksz100', 0.00060204904403138629) + +[67332] +centroid = (0.64652873762790686, -1.6621916624461783) +station = ('kcfv', 0.0046499749707355808) +zone = ('ksz100', 0.002718034574266863) + +[67333] +centroid = (0.64656404563867476, -1.6734644822854221) +station = ('kidp', 0.0024049981543468658) +zone = ('ksz099', 0.0032193409206657192) + +[67334] +centroid = (0.64618890456925093, -1.6786078279647092) +station = ('kbvo', 0.005017277184692537) +zone = ('ksz098', 0.0023983663917226711) + +[67335] +centroid = (0.65057830291826158, -1.6672687205204748) +station = ('kppf', 0.0010807577885334155) +zone = ('ksz099', 0.0033249415489031982) + +[67336] +centroid = (0.64744027073634591, -1.6591849662904754) +station = ('kppf', 0.0073411223616531972) +zone = ('ksz101', 0.0032960871728915909) + +[67337] +centroid = (0.64670845418098477, -1.668503314073458) +station = ('kcfv', 0.00067893133928015141) +zone = ('ksz099', 0.0031506430449066711) + +[67340] +centroid = (0.64681207437867561, -1.6705090289965574) +station = ('kidp', 0.0017652760336560941) +zone = ('ksz099', 0.0023562438186923028) + +[67341] +centroid = (0.65178221358299482, -1.6655390119652858) +station = ('kppf', 0.001012654192388805) +zone = ('ksz100', 0.0032304317598761735) + +[67342] +centroid = (0.64681088755478422, -1.6642988682652815) +station = ('kcfv', 0.0029450059595588396) +zone = ('ksz100', 0.0024452113275293956) + +[67344] +centroid = (0.65078913869190247, -1.6747107346378085) +station = ('kidp', 0.0035052231528596585) +zone = ('ksz099', 0.0033673919667037422) + +[67345] +centroid = (0.65236253555928292, -1.6789938947952503) +station = ('kidp', 0.0071648458812271004) +zone = ('ksz094', 0.0014661081704467481) + +[67346] +centroid = (0.65143358406490903, -1.6831028536400505) +station = ('kidp', 0.009724602231854923) +zone = ('ksz094', 0.0034753828857970138) + +[67347] +centroid = (0.64846671632273634, -1.6746702779057474) +station = ('kidp', 0.0025265351651529966) +zone = ('ksz099', 0.0029767330877410181) + +[67349] +centroid = (0.65440078341963948, -1.6807156970089279) +station = ('kidp', 0.0094773091501971184) +zone = ('ksz094', 0.0010297254126042687) + +[67351] +centroid = (0.64827734809889481, -1.6679926132810321) +station = ('kcfv', 0.0010515586791444789) +zone = ('ksz099', 0.0025658423080315387) + +[67352] +centroid = (0.65287869923226771, -1.6759144707696165) +station = ('kidp', 0.0056989572826372358) +zone = ('ksz094', 0.0031723463842547274) + +[67353] +centroid = (0.65115408703849453, -1.6810521441288349) +station = ('kidp', 0.0080910052396040034) +zone = ('ksz094', 0.0027313700212426048) + +[67354] +centroid = (0.64942724082327885, -1.6652044148943859) +station = ('kppf', 0.0025033323522990654) +zone = ('ksz100', 0.0015832335676229522) + +[67355] +centroid = (0.64658926564636598, -1.6757052406988877) +station = ('kidp', 0.0038055504130039717) +zone = ('ksz098', 0.0037284331432626047) + +[67356] +centroid = (0.64884808821758955, -1.6606069907518302) +station = ('kppf', 0.0056330501545640982) +zone = ('ksz100', 0.0021274396552488548) + +[67357] +centroid = (0.65180942326603342, -1.662628867423803) +station = ('kppf', 0.0033151729782388709) +zone = ('ksz100', 0.0027446719513484455) + +[67360] +centroid = (0.64643546723268031, -1.6773759222187741) +station = ('kbvo', 0.0048994415786327815) +zone = ('ksz098', 0.0027489731381760713) + +[67361] +centroid = (0.64817416423351704, -1.6793140405399436) +station = ('kidp', 0.00623101895398602) +zone = ('ksz098', 0.00044237953251679093) + +[67363] +centroid = (0.65169670990293971, -1.670682427457743) +station = ('kidp', 0.0033706108704478909) +zone = ('ksz099', 0.0025799000095459309) + +[67364] +centroid = (0.64682577521330376, -1.6722074437982581) +station = ('kidp', 0.0016622023396452746) +zone = ('ksz099', 0.0024899383773966679) + +[67401] +centroid = (0.67774356732738994, -1.7043923973091697) +station = ('ksln', 0.00084890601970164447) +zone = ('ksz049', 0.00083894382753225093) + +[67410] +centroid = (0.67991877117415056, -1.696793216292694) +station = ('ksln', 0.0065892758223161513) +zone = ('ksz035', 0.0018123175733266619) + +[67416] +centroid = (0.67497221136802577, -1.7031292850762092) +station = ('ksln', 0.0021350612575972952) +zone = ('ksz049', 0.0021445667641467464) + +[67417] +centroid = (0.68843788033276743, -1.7024847000768624) +station = ('kcnk', 0.0023427636744701714) +zone = ('ksz020', 0.0015382972515061858) + +[67418] +centroid = (0.68373074479343132, -1.7112334072985793) +station = ('kcnk', 0.0084687275095822329) +zone = ('ksz033', 0.003143556422422181) + +[67420] +centroid = (0.68767604411427197, -1.7119143649595376) +station = ('kcnk', 0.0064206596906851944) +zone = ('ksz019', 0.0016781559916103255) + +[67422] +centroid = (0.68104639349727902, -1.703183896428504) +station = ('ksln', 0.0042417090734389873) +zone = ('ksz034', 0.0021365840097662069) + +[67423] +centroid = (0.67982721120159095, -1.7099919720549284) +station = ('ksln', 0.0053038618889457703) +zone = ('ksz033', 0.0035559614710868846) + +[67425] +centroid = (0.67692764335537514, -1.7090195444088871) +station = ('ksln', 0.003668138041425276) +zone = ('ksz048', 0.004178375081640975) + +[67427] +centroid = (0.67192490140062866, -1.7173925695091121) +station = ('kgbd', 0.0068952468983149145) +zone = ('ksz050', 0.0037851073160067653) + +[67428] +centroid = (0.66967639372528431, -1.7002624421534682) +station = ('kewk', 0.0058757658341730065) +zone = ('ksz051', 0.0031719381124265399) + +[67430] +centroid = (0.68994769485549778, -1.7178388152922621) +station = ('kcnk', 0.010428383321964333) +zone = ('ksz019', 0.0037694677956500418) + +[67431] +centroid = (0.67982399979576713, -1.6931862315940598) +station = ('kfri', 0.0038294706564812294) +zone = ('ksz035', 0.0024108091631075712) + +[67432] +centroid = (0.6864265279961842, -1.6963446317683464) +station = ('kcnk', 0.0072794660438578037) +zone = ('ksz021', 0.00052157479918853264) + +[67436] +centroid = (0.68538564853687989, -1.7058116816035991) +station = ('kcnk', 0.0050489365599875272) +zone = ('ksz034', 0.0026577615317797273) + +[67437] +centroid = (0.68966823273566835, -1.7201205191299793) +station = ('krsl', 0.011854931564111404) +zone = ('ksz018', 0.004056830533684724) + +[67438] +centroid = (0.67188051767775048, -1.6979157422544067) +station = ('ksln', 0.0070809402523679208) +zone = ('ksz052', 0.0034971500917477536) + +[67439] +centroid = (0.6763112803300334, -1.7142701929305868) +station = ('krsl', 0.0083615112240141461) +zone = ('ksz048', 0.0009523400749776263) + +[67441] +centroid = (0.67858460658734099, -1.6948058447800332) +station = ('kfri', 0.0055501168210560486) +zone = ('ksz035', 0.00068761896145370222) + +[67442] +centroid = (0.67467273032167607, -1.7064447823364677) +station = ('ksln', 0.0027767838211934927) +zone = ('ksz049', 0.0027838952393700899) + +[67443] +centroid = (0.66986811814361602, -1.7021457571361251) +station = ('kewk', 0.0066594967110908008) +zone = ('ksz051', 0.0016831672372768424) + +[67444] +centroid = (0.67273475162684659, -1.7128008002333328) +station = ('ksln', 0.0078253189722731504) +zone = ('ksz048', 0.002808422011566961) + +[67445] +centroid = (0.6871604389466478, -1.7073534181983483) +station = ('kcnk', 0.0039166953521805551) +zone = ('ksz020', 0.0030271062329766379) + +[67446] +centroid = (0.68894718486179196, -1.7157544558330677) +station = ('kcnk', 0.0089220838841473291) +zone = ('ksz019', 0.0019096210616687491) + +[67447] +centroid = (0.68915126621122769, -1.6924973326850052) +station = ('kmhk', 0.0072847021501382982) +zone = ('ksz021', 0.0035108880662751639) + +[67448] +centroid = (0.67456184955429677, -1.7001769035668279) +station = ('ksln', 0.003983986420820481) +zone = ('ksz049', 0.0039908825872623614) + +[67449] +centroid = (0.67503478142170981, -1.691118295683127) +station = ('kfri', 0.0068443567375517439) +zone = ('ksz037', 0.0033303283921296474) + +[67450] +centroid = (0.67395916991029059, -1.71830062941234) +station = ('krsl', 0.0066347417229629382) +zone = ('ksz048', 0.0036498857861822936) + +[67451] +centroid = (0.67549776491238622, -1.6950913457390742) +station = ('kfri', 0.0078362939009376069) +zone = ('ksz035', 0.0028801721521449068) + +[67452] +centroid = (0.68486843766634387, -1.7169084326279014) +station = ('krsl', 0.008880265841589052) +zone = ('ksz019', 0.0034559290214230117) + +[67454] +centroid = (0.67542217470248234, -1.7123792683123913) +station = ('ksln', 0.0064612808964386826) +zone = ('ksz048', 0.0012632513368460276) + +[67455] +centroid = (0.68103581680201186, -1.7133095637102893) +station = ('ksln', 0.0081325350378153929) +zone = ('ksz033', 0.00072078177772491201) + +[67456] +centroid = (0.67370888969555465, -1.7047571013096665) +station = ('ksln', 0.0032066754727457796) +zone = ('ksz049', 0.0032163618317589881) + +[67457] +centroid = (0.67009522038588543, -1.7102977188332926) +station = ('khut', 0.0059629806941586981) +zone = ('ksz050', 0.0029631855813399702) + +[67458] +centroid = (0.68365862778873898, -1.6982820868644002) +station = ('kcnk', 0.0081211712204781687) +zone = ('ksz021', 0.0036466164225451474) + +[67459] +centroid = (0.67371086191760943, -1.7163652338048034) +station = ('krsl', 0.007972670218202374) +zone = ('ksz048', 0.0024933738352705278) + +[67460] +centroid = (0.66990190771793456, -1.7051771322474516) +station = ('khut', 0.0059709466246650978) +zone = ('ksz051', 0.00072139813319626028) + +[67464] +centroid = (0.67298576487986839, -1.7086274910990116) +station = ('ksln', 0.0051612170464513055) +zone = ('ksz051', 0.0044888694658660622) + +[67466] +centroid = (0.68639985936521375, -1.7012135593293425) +station = ('kcnk', 0.0045821113573345836) +zone = ('ksz020', 0.0035775954423094571) + +[67467] +centroid = (0.68316297173446505, -1.7051137244357266) +station = ('ksln', 0.0062968873213417277) +zone = ('ksz034', 0.00063930850797586742) + +[67468] +centroid = (0.68869807401765482, -1.6974594608280578) +station = ('kcnk', 0.0055337348185285525) +zone = ('ksz021', 0.0022840321547333686) + +[67470] +centroid = (0.67932808194210559, -1.701828630811038) +station = ('ksln', 0.0031075773222101447) +zone = ('ksz049', 0.0031006898545641866) + +[67473] +centroid = (0.68728873809996194, -1.7233481565156925) +station = ('krsl', 0.0089966224243371012) +zone = ('ksz018', 0.00061837949205298674) + +[67474] +centroid = (0.69074236071722328, -1.7229356304936909) +station = ('krsl', 0.012464208337118353) +zone = ('ksz006', 0.0037533578955059261) + +[67475] +centroid = (0.67352330883619016, -1.6939283979518855) +station = ('kfri', 0.0090357405565280793) +zone = ('ksz052', 0.0040764564396959298) + +[67478] +centroid = (0.68741647874791534, -1.7093549966911206) +station = ('kcnk', 0.0048385422390813124) +zone = ('ksz019', 0.0036532205542389902) + +[67480] +centroid = (0.68007595552658517, -1.7000023880949211) +station = ('ksln', 0.0046232085503495925) +zone = ('ksz035', 0.0038131925922110345) + +[67481] +centroid = (0.68090093775741778, -1.7170712369405274) +station = ('krsl', 0.0064412731226126197) +zone = ('ksz033', 0.0024155729715129876) + +[67482] +centroid = (0.68114774476694229, -1.6975022213947317) +station = ('ksln', 0.0067947661888113067) +zone = ('ksz035', 0.0031553383974238158) + +[67483] +centroid = (0.6729419745689359, -1.6965213987149883) +station = ('ksln', 0.0072565624008711959) +zone = ('ksz052', 0.0037493473857216604) + +[67484] +centroid = (0.68056510150274907, -1.7077226426016077) +station = ('ksln', 0.0045271724320685089) +zone = ('ksz034', 0.0035883825782675066) + +[67485] +centroid = (0.685624653924648, -1.7191826490031277) +station = ('krsl', 0.0084314582043530702) +zone = ('ksz019', 0.004388524175460649) + +[67487] +centroid = (0.68380361228970199, -1.6942123804744775) +station = ('kmhk', 0.0053098695330599461) +zone = ('ksz021', 0.0032371453167144731) + +[67490] +centroid = (0.6769876652283513, -1.7180961989970538) +station = ('krsl', 0.0053043227271190613) +zone = ('ksz048', 0.0035772177957163883) + +[67491] +centroid = (0.66998819679615318, -1.7087199411894898) +station = ('khut', 0.0056209692600195788) +zone = ('ksz051', 0.0034814908769941239) + +[67492] +centroid = (0.67734976868826247, -1.6923198327000775) +station = ('kfri', 0.0050741051765301505) +zone = ('ksz035', 0.0027676354147040698) + +[67501] +centroid = (0.66283229450309888, -1.709139012196186) +station = ('khut', 0.0017601104189531179) +zone = ('ksz067', 0.0022382827374752686) + +[67502] +centroid = (0.66543707623865278, -1.7092000463601282) +station = ('khut', 0.0013618598226292141) +zone = ('ksz067', 0.0037165042994847012) + +[67505] +centroid = (0.66377236374480797, -1.7094766984998622) +station = ('khut', 0.0012501022994722097) +zone = ('ksz067', 0.0023662477731377167) + +[67510] +centroid = (0.66333610124497966, -1.7140237000803276) +station = ('khut', 0.0047862782187469005) +zone = ('ksz067', 0.0018989710798752849) + +[67511] +centroid = (0.67077362986613576, -1.7287007148124163) +station = ('kgbd', 0.0028593762676107164) +zone = ('ksz046', 0.0039142041340576297) + +[67512] +centroid = (0.6671445842057564, -1.7162722950221347) +station = ('khut', 0.0069961947855116217) +zone = ('ksz050', 0.0028189378384069134) + +[67513] +centroid = (0.67099378569798229, -1.7372711017444569) +station = ('khys', 0.0079779001943945677) +zone = ('ksz046', 0.003414556237968823) + +[67514] +centroid = (0.66081574108534458, -1.7139548817479215) +station = ('khut', 0.0058399551531054007) +zone = ('ksz067', 0.002254700670356575) + +[67515] +centroid = (0.67412712294421018, -1.7465275426988713) +station = ('khlc', 0.013338394486472295) +zone = ('ksz045', 0.0032782733824291556) + +[67516] +centroid = (0.66995749645461056, -1.7398632298429337) +station = ('khys', 0.0099239089388314401) +zone = ('ksz045', 0.0035373501314907834) + +[67518] +centroid = (0.67046107630368845, -1.7482457320809972) +station = ('kgck', 0.011506200749406973) +zone = ('ksz044', 0.0042540173144413364) + +[67519] +centroid = (0.66200940666736863, -1.7294656402636877) +station = ('kptt', 0.0061870136507748228) +zone = ('ksz079', 0.0031322788121940343) + +[67520] +centroid = (0.67351692093112792, -1.73115215191989) +station = ('khys', 0.0046689691965976256) +zone = ('ksz046', 0.0020227342898325356) + +[67521] +centroid = (0.67418869816022042, -1.7403184466184389) +station = ('khys', 0.0072037626157484521) +zone = ('ksz045', 0.0037989544085554132) + +[67522] +centroid = (0.66535783829061224, -1.7060176653619197) +station = ('khut', 0.001900914085098133) +zone = ('ksz051', 0.0048961628735966168) + +[67523] +centroid = (0.66670289373195413, -1.7373737271044742) +station = ('kddc', 0.0095280575108142203) +zone = ('ksz064', 0.0052324669950716855) + +[67524] +centroid = (0.66967274598714777, -1.7170307976617589) +station = ('kgbd', 0.0066878520051930779) +zone = ('ksz050', 0.00246053672088615) + +[67525] +centroid = (0.67321770168416595, -1.7202494466018243) +station = ('kgbd', 0.005683656097081412) +zone = ('ksz047', 0.0031053442640028572) + +[67526] +centroid = (0.6690328035636115, -1.7199302258816345) +station = ('kgbd', 0.0044171133337348985) +zone = ('ksz047', 0.0038604154443755501) + +[67529] +centroid = (0.66455565005981054, -1.7323157629321946) +station = ('kgbd', 0.0071483746608897863) +zone = ('ksz065', 0.0018512973435981064) + +[67530] +centroid = (0.66936970446912392, -1.7242890286088575) +station = ('kgbd', 0.00098863855595500167) +zone = ('ksz047', 0.0022756147560425277) + +[67543] +centroid = (0.66109651220211296, -1.7069191628271596) +station = ('khut', 0.0034202771026239998) +zone = ('ksz067', 0.0041600092489686939) + +[67544] +centroid = (0.67346655072891526, -1.7236732939020465) +station = ('kgbd', 0.00438591993291853) +zone = ('ksz047', 0.0018816703048088477) + +[67545] +centroid = (0.66612089623958415, -1.7210824049873386) +station = ('kgbd', 0.0047563553185575209) +zone = ('ksz066', 0.0027723535802887853) + +[67546] +centroid = (0.66734873536836214, -1.7072585944600875) +station = ('khut', 0.0030323568188310506) +zone = ('ksz051', 0.0035798349879414418) + +[67547] +centroid = (0.66201324639172299, -1.7358323221222827) +station = ('kddc', 0.0075986968510587767) +zone = ('ksz079', 0.0021182671385807633) + +[67548] +centroid = (0.67351880588671997, -1.7338973104871818) +station = ('khys', 0.0046651866824807472) +zone = ('ksz046', 0.0012590476517509409) + +[67550] +centroid = (0.66646065948506994, -1.7300504651894459) +station = ('kgbd', 0.0045548013993261457) +zone = ('ksz065', 0.0015409685498533397) + +[67552] +centroid = (0.66088862603490794, -1.7318628150847168) +station = ('kptt', 0.0072083023521894354) +zone = ('ksz079', 0.0012107498967905996) + +[67553] +centroid = (0.67490951914129405, -1.7332578043959583) +station = ('khys', 0.0032015737830398557) +zone = ('ksz046', 0.0025511213241617221) + +[67554] +centroid = (0.66972142321998585, -1.7138296892806759) +station = ('khut', 0.0069809128502401254) +zone = ('ksz050', 0.00044562587200312905) + +[67556] +centroid = (0.67398493097005008, -1.7370139972923455) +station = ('khys', 0.0053705980463893289) +zone = ('ksz046', 0.0033470457979086518) + +[67557] +centroid = (0.66208368788033345, -1.7271509846096929) +station = ('kptt', 0.00500263209759915) +zone = ('ksz066', 0.0037181467392930819) + +[67559] +centroid = (0.66995978283593072, -1.7358085158312857) +station = ('kgbd', 0.008068304046170002) +zone = ('ksz046', 0.0031140719765292398) + +[67560] +centroid = (0.67019482632629679, -1.7442682488887498) +station = ('kddc', 0.011048586279118562) +zone = ('ksz045', 0.0014340644702963581) + +[67561] +centroid = (0.66512782134849191, -1.7121130706948771) +station = ('khut', 0.0032472862224868842) +zone = ('ksz067', 0.0027287628024857996) + +[67563] +centroid = (0.66050248939119671, -1.7375861685810268) +station = ('kddc', 0.005816906100665882) +zone = ('ksz079', 0.0034517386076390079) + +[67564] +centroid = (0.67249462922835712, -1.7266707398127141) +station = ('kgbd', 0.0032807304127259922) +zone = ('ksz047', 0.0025502536365555242) + +[67565] +centroid = (0.67370740616569047, -1.7286449864494) +station = ('kgbd', 0.0050003920701388966) +zone = ('ksz046', 0.0038617033085047723) + +[67566] +centroid = (0.66205874712532242, -1.7121226001925929) +station = ('khut', 0.003936837326712463) +zone = ('ksz067', 0.00037781181396629143) + +[67567] +centroid = (0.66797564018238598, -1.7275110634876718) +station = ('kgbd', 0.0020530621297484126) +zone = ('ksz065', 0.0038723645038339092) + +[67568] +centroid = (0.66333531584681615, -1.7159482920997946) +station = ('khut', 0.006274005757245355) +zone = ('ksz067', 0.0033051650368016001) + +[67570] +centroid = (0.65951466794115299, -1.7097974202032085) +station = ('khut', 0.0050554874833295153) +zone = ('ksz067', 0.0033413577283985464) + +[67572] +centroid = (0.67525902132400595, -1.7437224669783586) +station = ('khys', 0.0091648985167893451) +zone = ('ksz045', 0.0036667847256644072) + +[67573] +centroid = (0.66784494992799659, -1.7178152358940677) +station = ('kgbd', 0.006248498837367656) +zone = ('ksz050', 0.0033691970148177139) + +[67574] +centroid = (0.66716753528542017, -1.7345938713916524) +station = ('kgbd', 0.0074226151286508023) +zone = ('ksz065', 0.0021746334822456536) + +[67575] +centroid = (0.67041482507851069, -1.7323725908526395) +station = ('kgbd', 0.0054572683202837938) +zone = ('ksz046', 0.00206737647770799) + +[67576] +centroid = (0.66385303286283526, -1.7243018218722745) +station = ('kgbd', 0.0055676759025305002) +zone = ('ksz066', 0.0010717680065366897) + +[67578] +centroid = (0.6630752966948541, -1.7204435795745237) +station = ('kptt', 0.0056340543526377396) +zone = ('ksz066', 0.002089305267122768) + +[67579] +centroid = (0.66651644020796352, -1.7145346801254342) +station = ('khut', 0.0054940084522064172) +zone = ('ksz050', 0.0028068151704992565) + +[67581] +centroid = (0.66283304499467721, -1.7175566304587997) +station = ('kptt', 0.0067518996813403509) +zone = ('ksz066', 0.0043478555171023022) + +[67583] +centroid = (0.65972452633041268, -1.7187129809014159) +station = ('kptt', 0.0041730093907339288) +zone = ('ksz081', 0.004510742499622019) + +[67584] +centroid = (0.6751385412457408, -1.7481796539155166) +station = ('khlc', 0.012750200118420421) +zone = ('ksz045', 0.0048919819661822003) + +[67601] +centroid = (0.67852957635602562, -1.7339766531549772) +station = ('khys', 0.0012201031601389498) +zone = ('ksz031', 0.0007936195845210897) + +[67621] +centroid = (0.69501044122992772, -1.7301916448726398) +station = ('khde', 0.011297089645242028) +zone = ('ksz005', 0.0029428064119544593) + +[67622] +centroid = (0.69631425454104512, -1.7407052639405585) +station = ('khlc', 0.0093302797903026778) +zone = ('ksz004', 0.0029789227542054652) + +[67623] +centroid = (0.68843589065742028, -1.727077715687694) +station = ('krsl', 0.010255082352244307) +zone = ('ksz018', 0.0030032095919814718) + +[67625] +centroid = (0.6874678088812165, -1.7398418495595969) +station = ('khlc', 0.002030912540870706) +zone = ('ksz016', 0.0027543584203208321) + +[67626] +centroid = (0.67861129267160403, -1.7229359446529566) +station = ('krsl', 0.0013795472769490018) +zone = ('ksz032', 0.00084726647640273036) + +[67628] +centroid = (0.69162832475212066, -1.7279042687148536) +station = ('khlc', 0.01209037118484139) +zone = ('ksz006', 0.0039998016753827574) + +[67629] +centroid = (0.69289485783041538, -1.7488086182180578) +station = ('khlc', 0.0076230692917707149) +zone = ('ksz003', 0.0037966089794344272) + +[67631] +centroid = (0.68083786155825066, -1.7467498103791126) +station = ('khlc', 0.0070851242349370758) +zone = ('ksz030', 0.0032780399939407504) + +[67632] +centroid = (0.68667544685410353, -1.7380109991742547) +station = ('khlc', 0.0034331344736617999) +zone = ('ksz017', 0.0034516304699242864) + +[67634] +centroid = (0.67751943214484889, -1.7210487899459452) +station = ('krsl', 0.0029451915765207029) +zone = ('ksz032', 0.0026740657355404716) + +[67635] +centroid = (0.69097963822903197, -1.7528966854717116) +station = ('kcbk', 0.0087586819782471924) +zone = ('ksz003', 0.0034127238938936114) + +[67637] +centroid = (0.67960288403283209, -1.7384409610354834) +station = ('khys', 0.0048521061215908478) +zone = ('ksz031', 0.0039324063835359324) + +[67638] +centroid = (0.6913982379968302, -1.7253382856485715) +station = ('krsl', 0.013057008388211278) +zone = ('ksz006', 0.0031237603023834119) + +[67639] +centroid = (0.69179365979216201, -1.7332591482994826) +station = ('khlc', 0.0084974155437440996) +zone = ('ksz005', 0.0026281024913163602) + +[67640] +centroid = (0.67917976386227097, -1.7287331604832108) +station = ('krsl', 0.0032646046374047904) +zone = ('ksz032', 0.0038949921580115222) + +[67642] +centroid = (0.68694550164926471, -1.7426151777410157) +station = ('khlc', 0.00020056679090440659) +zone = ('ksz016', 0.00054867732182840498) + +[67643] +centroid = (0.69249786523875678, -1.7506356288790454) +station = ('khlc', 0.0083386972745843353) +zone = ('ksz003', 0.0028101439210227622) + +[67644] +centroid = (0.69191351155189651, -1.7306290941963596) +station = ('khlc', 0.010302960274265163) +zone = ('ksz005', 0.0035336037911810878) + +[67645] +centroid = (0.69097946369610663, -1.7431255643741765) +station = ('khlc', 0.0039393012974369979) +zone = ('ksz004', 0.0034126409884989097) + +[67646] +centroid = (0.69182148034043889, -1.737954345786735) +station = ('khlc', 0.005863079791259984) +zone = ('ksz005', 0.0040098902729815101) + +[67647] +centroid = (0.69698945261547163, -1.7373859618625305) +station = ('khde', 0.0094279822682783003) +zone = ('ksz005', 0.0037275204539381239) + +[67648] +centroid = (0.68220124295673856, -1.720551912161195) +station = ('krsl', 0.0050101668203304519) +zone = ('ksz032', 0.0038907980473543097) + +[67649] +centroid = (0.68289448773563077, -1.7222905742554464) +station = ('krsl', 0.0049069369692583678) +zone = ('ksz032', 0.0038660029426649816) + +[67650] +centroid = (0.68718272680119574, -1.7471212338972295) +station = ('khlc', 0.0036356033067754031) +zone = ('ksz016', 0.0029872958650940169) + +[67651] +centroid = (0.68439358593675381, -1.7287946135261734) +station = ('krsl', 0.0068367771251078525) +zone = ('ksz017', 0.00439159281060722) + +[67653] +centroid = (0.69650330860562115, -1.7489604793162739) +station = ('kmck', 0.0071652124780797006) +zone = ('ksz003', 0.003990366614161008) + +[67654] +centroid = (0.69505925808910607, -1.7444414379104252) +station = ('khlc', 0.0081318290081736268) +zone = ('ksz004', 0.0009234556313231589) + +[67656] +centroid = (0.6804924085394034, -1.7409722295029433) +station = ('khlc', 0.0066805323813423564) +zone = ('ksz030', 0.0021170116490695865) + +[67657] +centroid = (0.6842090871815254, -1.7386408710480068) +station = ('khlc', 0.0040973373634268263) +zone = ('ksz016', 0.0044254734843153379) + +[67658] +centroid = (0.6824771795114789, -1.726963448981566) +station = ('krsl', 0.0044926415149729709) +zone = ('ksz032', 0.0041362197973523213) + +[67659] +centroid = (0.68631234855651868, -1.7454228365488216) +station = ('khlc', 0.0024449059498835041) +zone = ('ksz016', 0.0017133000329058554) + +[67660] +centroid = (0.6757608907504169, -1.7306083596848458) +station = ('khys', 0.0027444546907214639) +zone = ('ksz046', 0.0039886556554410311) + +[67661] +centroid = (0.69500548449485211, -1.7334431234559351) +station = ('khlc', 0.010521388893679214) +zone = ('ksz005', 0.00073714675247659703) + +[67663] +centroid = (0.68439234675298477, -1.7340587359896986) +station = ('khys', 0.0064423016450182455) +zone = ('ksz017', 0.0024285938036065144) + +[67664] +centroid = (0.69495916345650421, -1.738058367410154) +station = ('khlc', 0.0085680810342432714) +zone = ('ksz005', 0.0032254722433747679) + +[67665] +centroid = (0.67804444463714131, -1.7258257212020685) +station = ('krsl', 0.00094628110975036471) +zone = ('ksz032', 0.0019969383909985657) + +[67667] +centroid = (0.67567158225259238, -1.7336791966905598) +station = ('khys', 0.002551238178713298) +zone = ('ksz046', 0.0033283603359052457) + +[67669] +centroid = (0.68867601305590964, -1.7338825100951247) +station = ('khlc', 0.0067871220072353005) +zone = ('ksz017', 0.0019046132783376111) + +[67671] +centroid = (0.67801084704904047, -1.7302263420181694) +station = ('khys', 0.0017949209920749842) +zone = ('ksz031', 0.0027478674289387853) + +[67672] +centroid = (0.6808252428277588, -1.7437934669723298) +station = ('khlc', 0.0063426316952920787) +zone = ('ksz030', 0.0017261899264350068) + +[67673] +centroid = (0.68333486921249398, -1.7247110143154047) +station = ('krsl', 0.004983640072123363) +zone = ('ksz018', 0.0035248400728079732) + +[67674] +centroid = (0.6783022821275384, -1.7290753671896493) +station = ('krsl', 0.003425654062760161) +zone = ('ksz032', 0.0042569648279272721) + +[67675] +centroid = (0.6884658056007994, -1.7294512587506514) +station = ('khlc', 0.010116365313240493) +zone = ('ksz017', 0.0035839012705642529) + +[67701] +centroid = (0.68757514663021413, -1.7638555380318137) +station = ('kcbk', 0.00062756230765390671) +zone = ('ksz014', 0.00077657775061962394) + +[67730] +centroid = (0.69479768559410959, -1.764724170947239) +station = ('kcbk', 0.0066654172537541669) +zone = ('ksz002', 0.0006309717779311761) + +[67731] +centroid = (0.69404621663137089, -1.7721606174642588) +station = ('ksyf', 0.0034751577138464025) +zone = ('ksz001', 0.0026236565924502341) + +[67732] +centroid = (0.68809117067685888, -1.7687826897766565) +station = ('kcbk', 0.0039616920413548607) +zone = ('ksz014', 0.0040965574355991642) + +[67733] +centroid = (0.68625241395000525, -1.7717309174024178) +station = ('kgld', 0.0026594494576421147) +zone = ('ksz013', 0.0028536388205338305) + +[67734] +centroid = (0.68981552107124422, -1.760967210105981) +station = ('kcbk', 0.0026398748280889624) +zone = ('ksz014', 0.003701317473688486) + +[67735] +centroid = (0.68669607664586219, -1.775928661146267) +station = ('kgld', 0.00081339294367920262) +zone = ('ksz013', 0.00046294106324112265) + +[67736] +centroid = (0.67807940358205865, -1.7536975996121593) +station = ('khlc', 0.012551657468536421) +zone = ('ksz029', 0.001135629407257164) + +[67737] +centroid = (0.68293831295314833, -1.7536735489750668) +station = ('kcbk', 0.009338494637584736) +zone = ('ksz029', 0.0037248062479298123) + +[67738] +centroid = (0.68036920574750526, -1.7564890617645064) +station = ('kcbk', 0.0095861571030023771) +zone = ('ksz029', 0.0024181273405264963) + +[67739] +centroid = (0.69600997383925234, -1.7595152532479543) +station = ('kmck', 0.0063953298683052827) +zone = ('ksz002', 0.0038824465028157798) + +[67740] +centroid = (0.6872228519206991, -1.751760668114881) +station = ('kcbk', 0.0092410101744630855) +zone = ('ksz015', 0.0010788414117270124) + +[67741] +centroid = (0.68770746004080785, -1.7801426189988672) +station = ('kgld', 0.0040244004660688303) +zone = ('ksz013', 0.0038122530211500941) + +[67743] +centroid = (0.68718492591605329, -1.7670967191725226) +station = ('kcbk', 0.0028405565325372662) +zone = ('ksz014', 0.0026146845874276368) + +[67744] +centroid = (0.69540881263169541, -1.7617326067961505) +station = ('kcbk', 0.0073756239684904645) +zone = ('ksz002', 0.0020916419366419406) + +[67745] +centroid = (0.694773495330677, -1.7688107546710288) +station = ('kcbk', 0.007694263676323549) +zone = ('ksz002', 0.0036362119612753244) + +[67747] +centroid = (0.68141162109655129, -1.7639183873381783) +station = ('kcbk', 0.0067747703218323631) +zone = ('ksz028', 0.0024532875122927553) + +[67748] +centroid = (0.68137278752069452, -1.7603364655676026) +station = ('kcbk', 0.0072795006100245772) +zone = ('ksz028', 0.0044618305482689363) + +[67749] +centroid = (0.69524942916440324, -1.7551470606493553) +station = ('kmck', 0.0063790000912650304) +zone = ('ksz003', 0.0016307276850757012) + +[67751] +centroid = (0.68287141448291944, -1.7513639896824877) +station = ('khlc', 0.0081035528322682057) +zone = ('ksz029', 0.0041029145279092467) + +[67752] +centroid = (0.68059058330982813, -1.7497165559482377) +station = ('khlc', 0.0086065246659014546) +zone = ('ksz029', 0.003430601597385079) + +[67753] +centroid = (0.68822880734167113, -1.7583825520167027) +station = ('kcbk', 0.0040727822002258694) +zone = ('ksz015', 0.0043715447239720652) + +[67756] +centroid = (0.69459224288785737, -1.7773863252309476) +station = ('ksyf', 0.00082086421917439091) +zone = ('ksz001', 0.0014292287489571366) + +[67757] +centroid = (0.69032847333840541, -1.756102279348972) +station = ('kcbk', 0.006210942231517645) +zone = ('ksz015', 0.0042538585679186358) + +[67758] +centroid = (0.67816621625905293, -1.7761289551312258) +station = ('kgld', 0.0089546920306007721) +zone = ('ksz027', 0.0010566917588076456) + +[67761] +centroid = (0.68014063742866404, -1.7720662475116036) +station = ('kgld', 0.0073006297581808153) +zone = ('ksz027', 0.0032762176912997432) + +[67762] +centroid = (0.67903544258642368, -1.7798046185359258) +station = ('kitr', 0.0073139651009954103) +zone = ('ksz027', 0.0028810491213222397) + +[67764] +centroid = (0.67939353178905526, -1.7664474741440732) +station = ('kcbk', 0.0090523760449144862) +zone = ('ksz028', 0.00084980209733396617) + +[67801] +centroid = (0.65840107806521042, -1.746327335980375) +station = ('kddc', 0.0014579300838432265) +zone = ('ksz078', 0.0024029093788364678) + +[67831] +centroid = (0.64901152084874625, -1.7417684312544106) +station = ('kddc', 0.010413087184973198) +zone = ('ksz088', 0.00093388469074473025) + +[67834] +centroid = (0.65483097217367092, -1.7389293390667766) +station = ('kddc', 0.0063167580364952014) +zone = ('ksz078', 0.0046337613043790551) + +[67835] +centroid = (0.66264517775399256, -1.7510179956115723) +station = ('kddc', 0.0060582138670352099) +zone = ('ksz077', 0.0042768081853133116) + +[67836] +centroid = (0.66358388563888515, -1.7803795648981178) +station = ('klaa', 0.0093141734497014846) +zone = ('ksz061', 0.0030066014643215511) + +[67837] +centroid = (0.65545532880698698, -1.7571126155463666) +station = ('kgck', 0.0063413073011955113) +zone = ('ksz076', 0.0027158165820037718) + +[67838] +centroid = (0.66469304237852755, -1.7650120281007704) +station = ('kgck', 0.0063642378026443798) +zone = ('ksz062', 0.0030201310181072827) + +[67839] +centroid = (0.67143690734177108, -1.7530370448501571) +station = ('kgck', 0.010376388756953844) +zone = ('ksz044', 0.00038831416156512267) + +[67840] +centroid = (0.64677269975075069, -1.7460924495696417) +station = ('kddc', 0.012425986776634588) +zone = ('ksz088', 0.0043965670463531684) + +[67841] +centroid = (0.65684852042909891, -1.749561675430416) +station = ('kddc', 0.0044517608734329604) +zone = ('ksz077', 0.0032469694788831199) + +[67842] +centroid = (0.65556552889595787, -1.7413099681664967) +station = ('kddc', 0.0045024825644927671) +zone = ('ksz078', 0.0028038747087365317) + +[67843] +centroid = (0.65851736935327088, -1.7442289266207021) +station = ('kddc', 0.00075613283180955794) +zone = ('ksz078', 0.00095490991526594798) + +[67844] +centroid = (0.65250635068964724, -1.7487254532792003) +station = ('kddc', 0.0073561684874554811) +zone = ('ksz087', 0.0035095105388838286) + +[67846] +centroid = (0.66382125041715645, -1.7587345674735373) +station = ('kgck', 0.0021690925643846081) +zone = ('ksz063', 0.00046424516963061659) + +[67849] +centroid = (0.66586478662514659, -1.740242856408535) +station = ('kddc', 0.0075938535528308603) +zone = ('ksz064', 0.0028277116244809913) + +[67850] +centroid = (0.67346550353136403, -1.7560484010349628) +station = ('kgck', 0.011778913148775874) +zone = ('ksz044', 0.002729334836210128) + +[67851] +centroid = (0.66441935729852231, -1.7631535666066618) +station = ('kgck', 0.0049566230650576271) +zone = ('ksz062', 0.004274611138113023) + +[67853] +centroid = (0.66122807512112836, -1.7545475749578805) +station = ('kgck', 0.0026520443611446403) +zone = ('ksz077', 0.0028581651039120328) + +[67854] +centroid = (0.66505687371439826, -1.7456271273377675) +station = ('kddc', 0.0059448147274103929) +zone = ('ksz064', 0.0016648964665544256) + +[67855] +centroid = (0.65540225334443381, -1.7747420990542986) +station = ('keha', 0.010015706790888526) +zone = ('ksz074', 0.0013832432589182778) + +[67857] +centroid = (0.66288816249245519, -1.7724730837602434) +station = ('kgck', 0.011595041570114257) +zone = ('ksz061', 0.0032630999905050328) + +[67859] +centroid = (0.649876348946402, -1.7587702943633257) +station = ('klbl', 0.0042335186230439839) +zone = ('ksz086', 0.0013444037004315171) + +[67860] +centroid = (0.66337146161562488, -1.768141333636426) +station = ('kgck', 0.0082799229442697946) +zone = ('ksz062', 0.00022738924978755825) + +[67861] +centroid = (0.67143580778434231, -1.7694669286566083) +station = ('kgck', 0.013302281833001911) +zone = ('ksz042', 0.0005271279950813132) + +[67862] +centroid = (0.65541495934138838, -1.7793450558905832) +station = ('keha', 0.0096861138039147122) +zone = ('ksz074', 0.0022869709032848633) + +[67863] +centroid = (0.67322784204711994, -1.7665612870645957) +station = ('kgck', 0.01334944333780788) +zone = ('ksz042', 0.0023911128651264162) + +[67864] +centroid = (0.64885262607364469, -1.7508666581121319) +station = ('klbl', 0.0093041240388381415) +zone = ('ksz087', 0.0012734308850758571) + +[67865] +centroid = (0.6533729241165549, -1.7447772043519236) +station = ('kddc', 0.0057798047115082208) +zone = ('ksz088', 0.0040506961016849368) + +[67867] +centroid = (0.65572449348422945, -1.753422937147773) +station = ('kgck', 0.0069815455461445641) +zone = ('ksz077', 0.00295317336333382) + +[67868] +centroid = (0.66010294861883012, -1.7576998664797849) +station = ('kgck', 0.0016712587394526902) +zone = ('ksz063', 0.0039162659801229883) + +[67869] +centroid = (0.64989401167843219, -1.7552163153140745) +station = ('klbl', 0.0064464355419702078) +zone = ('ksz087', 0.0027832532319359113) + +[67870] +centroid = (0.65488554861938086, -1.7628436135848002) +station = ('kgck', 0.007942673513587439) +zone = ('ksz076', 0.0019602057322473465) + +[67871] +centroid = (0.67215221308240847, -1.760833779684666) +station = ('kgck', 0.010645121765848219) +zone = ('ksz043', 0.00057051725055005942) + +[67876] +centroid = (0.66083129196897994, -1.7408518541444333) +station = ('kddc', 0.0035055547795683332) +zone = ('ksz078', 0.0035905960443335873) + +[67877] +centroid = (0.65545709158953147, -1.7600585393375152) +station = ('kgck', 0.0065533740671676489) +zone = ('ksz076', 0.00039870553009024423) + +[67878] +centroid = (0.66371478533278472, -1.7772384260301335) +station = ('klaa', 0.0117717998415191) +zone = ('ksz061', 0.00071674195991115329) + +[67879] +centroid = (0.67160981711076606, -1.7768496190326668) +station = ('klaa', 0.014023393910430467) +zone = ('ksz041', 1.6205312531545462e-06) + +[67880] +centroid = (0.65595463259939757, -1.7682461057514234) +station = ('kgck', 0.010077634344328193) +zone = ('ksz075', 0.00037706718934786717) + +[67882] +centroid = (0.65980742946988247, -1.7432328497632965) +station = ('kddc', 0.0013643918475796538) +zone = ('ksz078', 0.0019662774244599917) + +[67901] +centroid = (0.64747873779305987, -1.7612692044264535) +station = ('klbl', 0.0011173193345499868) +zone = ('ksz086', 0.001876711132280281) + +[67950] +centroid = (0.64658963216550891, -1.7779298905731888) +station = ('keha', 0.00084568701367876658) +zone = ('ksz084', 0.0026972526769804194) + +[67951] +centroid = (0.64857480456331229, -1.7688755412928625) +station = ('klbl', 0.0056624897188239359) +zone = ('ksz085', 0.00075686960243083121) + +[67952] +centroid = (0.65088483509478945, -1.7653912008807662) +station = ('klbl', 0.0049440343453393508) +zone = ('ksz085', 0.0028611513511652602) + +[67953] +centroid = (0.65014699715350877, -1.778332817284304) +station = ('keha', 0.0043764626532026554) +zone = ('ksz084', 0.0016411717863180656) + +[67954] +centroid = (0.64941729244654245, -1.7739755329935303) +station = ('keha', 0.0049637350677799738) +zone = ('ksz084', 0.0022174332348361332) + +[68001] +centroid = (0.72136440678955904, -1.6922717488791852) +station = ('kfet', 0.0061648390913517006) +zone = ('nez050', 0.0029135701130286497) + +[68002] +centroid = (0.72429457025756216, -1.6814103380512215) +station = ('kfet', 0.0024916241117638647) +zone = ('nez045', 0.0016150190828767921) + +[68003] +centroid = (0.71700330022772329, -1.682191913943557) +station = ('kahq', 0.0038611275180225166) +zone = ('nez051', 0.0041955229915414758) + +[68004] +centroid = (0.73320821109359247, -1.6863903209125219) +station = ('klcg', 0.0061564968232126708) +zone = ('nez033', 0.0026838622661917908) + +[68005] +centroid = (0.71807533381417565, -1.6736480385628543) +station = ('koff', 0.00046343417197820428) +zone = ('nez053', 0.0029241460962593263) + +[68007] +centroid = (0.72199811838766559, -1.67883390046272) +station = ('kbta', 0.0012975761867645198) +zone = ('nez052', 0.0013432695241584337) + +[68008] +centroid = (0.72512691777783833, -1.6783576699230209) +station = ('kbta', 0.0022812814530286259) +zone = ('nez045', 0.00081737973927297977) + +[68010] +centroid = (0.72003736314609768, -1.6778310517278165) +station = ('kmle', 0.0010685856722916741) +zone = ('nez052', 0.00075743520429696356) + +[68014] +centroid = (0.72050725814061212, -1.6923060795055718) +station = ('kolu', 0.0056792525264640096) +zone = ('nez050', 0.0024316576179593177) + +[68015] +centroid = (0.72231463384751482, -1.6867458444811532) +station = ('kfet', 0.0020040703345364985) +zone = ('nez051', 0.0027846066086026) + +[68016] +centroid = (0.7163083973860418, -1.6773555542264034) +station = ('kmle', 0.0026960276832313015) +zone = ('nez053', 0.0012534893486275641) + +[68017] +centroid = (0.7165218511535606, -1.6869961770557667) +station = ('kahq', 0.0031696635926061162) +zone = ('nez051', 0.0030213253375139279) + +[68018] +centroid = (0.72085758062807248, -1.6862532602063629) +station = ('kahq', 0.0012740216998783993) +zone = ('nez051', 0.0013577304002271114) + +[68019] +centroid = (0.72921634638830868, -1.6820672101685021) +station = ('ktqe', 0.0025118972766428964) +zone = ('nez034', 0.0013716625280195546) + +[68020] +centroid = (0.73253526449390116, -1.6801268054660123) +station = ('ktqe', 0.0037208438756595012) +zone = ('nez034', 0.0022506496130334803) + +[68022] +centroid = (0.72043812564894061, -1.6798189468392533) +station = ('kmle', 0.0022731801601195908) +zone = ('nez052', 0.001245220287631605) + +[68023] +centroid = (0.72339054206490683, -1.6758021239256657) +station = ('kbta', 0.001436620328332564) +zone = ('nez052', 0.0032091185898026338) + +[68025] +centroid = (0.72321618367263252, -1.6840311942691863) +station = ('kfet', 0.00043758208373397461) +zone = ('nez044', 0.0032765540649377068) + +[68028] +centroid = (0.71742081789138534, -1.680024511718553) +station = ('kmle', 0.0024878225647201311) +zone = ('nez053', 0.0019303417528172017) + +[68029] +centroid = (0.72705185886315549, -1.6802902031905842) +station = ('ktqe', 0.0022460156865024617) +zone = ('nez045', 0.00229884873741387) + +[68030] +centroid = (0.73867404125877068, -1.6834648698334993) +station = ('ksux', 0.0014060997560856896) +zone = ('nez014', 0.0018436452855979603) + +[68031] +centroid = (0.72676532815985551, -1.6846820450005475) +station = ('kfet', 0.0033282076741369048) +zone = ('nez044', 0.0020099245844127467) + +[68033] +centroid = (0.71776607892401478, -1.6844350983646827) +station = ('kahq', 0.0021741153328048864) +zone = ('nez051', 0.0024223119773555571) + +[68034] +centroid = (0.72360579352155519, -1.6794477676672315) +station = ('kbta', 0.0015406844247894689) +zone = ('nez045', 0.0012494666936263773) + +[68036] +centroid = (0.72234601486746564, -1.6921376203261691) +station = ('kfet', 0.0058060009225328864) +zone = ('nez050', 0.0036841615718863855) + +[68037] +centroid = (0.71529711871085111, -1.6777858302468975) +station = ('kpmv', 0.0028579245034195239) +zone = ('nez067', 0.0012941990757508162) + +[68038] +centroid = (0.73211523355611619, -1.6834181648227158) +station = ('ktqe', 0.0047100959567853932) +zone = ('nez034', 0.002319910749679196) + +[68039] +centroid = (0.7350672485463543, -1.6815453567221557) +station = ('ksux', 0.0046870861683220022) +zone = ('nez015', 0.0026731814910583725) + +[68040] +centroid = (0.72053273994769118, -1.6883442344634223) +station = ('kahq', 0.0020022115361375856) +zone = ('nez051', 0.001626786774926291) + +[68041] +centroid = (0.71979861955771729, -1.6841273444576785) +station = ('kahq', 0.0014133957097376203) +zone = ('nez051', 0.001907719270340498) + +[68042] +centroid = (0.71731046072278171, -1.683155841836141) +station = ('kahq', 0.0031280430033323904) +zone = ('nez051', 0.0034363082360179486) + +[68044] +centroid = (0.72521357337519987, -1.6832337707872425) +station = ('kfet', 0.0020240870910770434) +zone = ('nez045', 0.002901364912624447) + +[68045] +centroid = (0.7299936287706843, -1.6841113572417306) +station = ('ktqe', 0.0041516886663372108) +zone = ('nez034', 0.0021771854539231633) + +[68046] +centroid = (0.71771115341245462, -1.6764370398009563) +station = ('kmle', 0.0015096553258177319) +zone = ('nez053', 0.0007922751990736734) + +[68047] +centroid = (0.73497888252632582, -1.6883108986747093) +station = ('klcg', 0.0039370388032543375) +zone = ('nez015', 0.0025800031331986014) + +[68048] +centroid = (0.71530713690075765, -1.6745040178412025) +station = ('kpmv', 0.00067513461958056229) +zone = ('nez053', 0.0031734802379097394) + +[68050] +centroid = (0.72082190609816166, -1.6902173567232475) +station = ('kahq', 0.0034060343706780183) +zone = ('nez051', 0.0029834187536227057) + +[68055] +centroid = (0.73398357361379107, -1.6837573521095484) +station = ('ksux', 0.0058588183723799585) +zone = ('nez015', 0.0020406446965453356) + +[68057] +centroid = (0.72713680403784997, -1.6881440102916334) +station = ('kfet', 0.0045796319340781749) +zone = ('nez044', 0.0017251936573564018) + +[68058] +centroid = (0.71568664129331117, -1.6797883861240506) +station = ('kmle', 0.0037466558869409658) +zone = ('nez067', 0.0021650074381266236) + +[68059] +centroid = (0.71670985802058551, -1.6782868793685599) +station = ('kmle', 0.0023732648036332376) +zone = ('nez053', 0.0010492199223164325) + +[68061] +centroid = (0.72942880531815391, -1.6791433996989762) +station = ('ktqe', 0.00056211824029291221) +zone = ('nez034', 0.0018727302208553043) + +[68062] +centroid = (0.73650878578874646, -1.6873408621297432) +station = ('ksux', 0.0049792739466334108) +zone = ('nez015', 0.0018656392225157837) + +[68063] +centroid = (0.72841874837343989, -1.6841917994669549) +station = ('ktqe', 0.0041217762719958145) +zone = ('nez034', 0.0029853534150699234) + +[68064] +centroid = (0.72179403703822997, -1.6817592642752803) +station = ('kfet', 0.0026526014724484511) +zone = ('nez052', 0.0028660125527265705) + +[68065] +centroid = (0.71678754262559163, -1.6901675275731032) +station = ('kahq', 0.0042201965300589271) +zone = ('nez051', 0.0038193156446271019) + +[68066] +centroid = (0.71884559997295838, -1.6864755802464819) +station = ('kahq', 0.00083815938961651537) +zone = ('nez051', 0.0006965284388226544) + +[68067] +centroid = (0.73583843972964058, -1.6839374351817691) +station = ('ksux', 0.0040956957584865001) +zone = ('nez015', 0.00079782087183687762) + +[68068] +centroid = (0.72252951878502036, -1.6791551457648419) +station = ('kbta', 0.0012210813057443916) +zone = ('nez052', 0.0019257890797751234) + +[68069] +centroid = (0.7197923712789952, -1.6810302577000147) +station = ('kmle', 0.0027885566420835835) +zone = ('nez052', 0.0023209382649379967) + +[68070] +centroid = (0.71901772434379008, -1.68949526165182) +station = ('kahq', 0.0027016623580375094) +zone = ('nez051', 0.0022091680908096173) + +[68071] +centroid = (0.73715895584169944, -1.6837438258078452) +station = ('ksux', 0.0028100057692761926) +zone = ('nez015', 0.0016527749875628972) + +[68072] +centroid = (0.72621720750826668, -1.6843262945391135) +station = ('kfet', 0.002782564346238667) +zone = ('nez044', 0.00202617479741972) + +[68073] +centroid = (0.72005523531763815, -1.6827655338555176) +station = ('kahq', 0.0024656094739431648) +zone = ('nez051', 0.0029594390243299603) + +[68102] +centroid = (0.72016000743263531, -1.6743616164275321) +station = ('koma', 0.00079626823021135653) +zone = ('nez052', 0.0029501139446918077) + +[68104] +centroid = (0.72074123698013448, -1.6755560325011345) +station = ('koma', 0.0013436320913457552) +zone = ('nez052', 0.0019946271825249436) + +[68105] +centroid = (0.71978664659904878, -1.6748818292643817) +station = ('koma', 0.0013293700653098912) +zone = ('nez052', 0.0026773045156847186) + +[68106] +centroid = (0.71975257777204982, -1.6755557707017468) +station = ('kmle', 0.0016265239635387834) +zone = ('nez052', 0.0022261407952080918) + +[68107] +centroid = (0.71922000800409625, -1.6747035438812905) +station = ('koff', 0.0017462259128454506) +zone = ('nez053', 0.0026634959176793406) + +[68108] +centroid = (0.71973107531566516, -1.6742961316739975) +station = ('koma', 0.0011592370326790184) +zone = ('nez052', 0.0031103387053720119) + +[68110] +centroid = (0.72086466666483551, -1.6736402194878055) +station = ('koma', 0.00010735354997940373) +zone = ('nez052', 0.0034361230648535242) + +[68111] +centroid = (0.72074170821903261, -1.6749037505997868) +station = ('koma', 0.00085489368607657632) +zone = ('nez052', 0.0024846974685314069) + +[68112] +centroid = (0.7221275170984085, -1.6748014044924497) +station = ('koma', 0.0015185109778703) +zone = ('nez052', 0.002912365049227008) + +[68113] +centroid = (0.71764179402798034, -1.6738841292507716) +station = ('koff', 8.7859095152482112e-05) +zone = ('nez053', 0.0027021395056335616) + +[68114] +centroid = (0.72017878717538675, -1.6763977000796162) +station = ('kmle', 0.00142784871075724) +zone = ('nez052', 0.001473251363806099) + +[68116] +centroid = (0.72080289946260745, -1.6784330157868295) +station = ('kmle', 0.0019388193106257047) +zone = ('nez052', 0.00017872930077487501) + +[68117] +centroid = (0.71920009379733096, -1.6755259255715376) +station = ('kmle', 0.0014794721218325145) +zone = ('nez053', 0.0021985430594825359) + +[68118] +centroid = (0.72019016672210978, -1.6786403259953813) +station = ('kmle', 0.0014757982569195019) +zone = ('nez052', 0.00063664908200820305) + +[68122] +centroid = (0.72208636223464651, -1.6763748013598301) +station = ('kbta', 0.0012435817234500075) +zone = ('nez052', 0.0019277468406499888) + +[68123] +centroid = (0.71736210501534825, -1.6745300407003498) +station = ('koff', 0.00062803188503356589) +zone = ('nez053', 0.0022232519226617281) + +[68124] +centroid = (0.71969477246722369, -1.6764120292327751) +station = ('kmle', 0.0010572069825243806) +zone = ('nez052', 0.0017083736202572143) + +[68127] +centroid = (0.71917356479270067, -1.6763845577503489) +station = ('kmle', 0.00083781259435595991) +zone = ('nez053', 0.0018093306706583147) + +[68128] +centroid = (0.71876278409995131, -1.6766560437154965) +station = ('kmle', 0.00066124360924974999) +zone = ('nez053', 0.0013505702077081861) + +[68130] +centroid = (0.71969880417779575, -1.6789256524214973) +station = ('kmle', 0.0012943984659779854) +zone = ('nez052', 0.00117071259619092) + +[68131] +centroid = (0.7202025411065065, -1.674896140964248) +station = ('koma', 0.001047695272790626) +zone = ('nez052', 0.0025481031541134784) + +[68132] +centroid = (0.7201635329977244, -1.6755359263081515) +station = ('koma', 0.0014804814577598488) +zone = ('nez052', 0.0020909751932891912) + +[68133] +centroid = (0.71754958828359749, -1.6754372279389511) +station = ('koff', 0.0012575564609549055) +zone = ('nez053', 0.00153087783702759) + +[68134] +centroid = (0.72084675958671007, -1.6763686054409854) +station = ('kmle', 0.0020227063780871943) +zone = ('nez052', 0.0013882540518857622) + +[68135] +centroid = (0.71920443966716852, -1.6788958421978732) +station = ('kmle', 0.001088063014832901) +zone = ('nez052', 0.001618618725171944) + +[68136] +centroid = (0.71852939867237464, -1.6787789051379898) +station = ('kmle', 0.0010898011654783359) +zone = ('nez053', 0.0013837409371450929) + +[68137] +centroid = (0.71917731725059242, -1.6775860598607142) +station = ('kmle', 0.00019346240561804988) +zone = ('nez053', 0.0016207501996257198) + +[68138] +centroid = (0.71830761968432366, -1.6777495099451634) +station = ('kmle', 0.00072541903446312001) +zone = ('nez053', 0.00077787665879474287) + +[68142] +centroid = (0.72206271302328207, -1.6773849804775918) +station = ('kbta', 0.00086928085433907935) +zone = ('nez052', 0.0014618231236242663) + +[68144] +centroid = (0.71968622035388896, -1.6775834244135435) +station = ('kmle', 0.0006881653001207526) +zone = ('nez052', 0.0011535489672792312) + +[68147] +centroid = (0.71860547757446902, -1.6748135170774585) +station = ('koff', 0.0012591273940157376) +zone = ('nez053', 0.0022571130086528677) + +[68152] +centroid = (0.7220170377567573, -1.6755160470079715) +station = ('koma', 0.0017742405041976861) +zone = ('nez052', 0.0023933637195505553) + +[68154] +centroid = (0.72021254184312034, -1.6775135239770014) +station = ('kmle', 0.0012099638910593325) +zone = ('nez052', 0.00074278845544724391) + +[68157] +centroid = (0.71869962063432158, -1.6754105069481031) +station = ('kmle', 0.0015827897827969891) +zone = ('nez053', 0.0019246381993050618) + +[68164] +centroid = (0.72076654425428843, -1.6773791859844751) +station = ('kmle', 0.0017650769467549715) +zone = ('nez052', 0.00062546100152635858) + +[68178] +centroid = (0.72022226332705397, -1.6746025416774775) +station = ('koma', 0.00086554021003120059) +zone = ('nez052', 0.0027604049626414155) + +[68301] +centroid = (0.70613708974431677, -1.6848092620497255) +station = ('kbie', 0.004004358866882698) +zone = ('nez090', 0.0037372560704119376) + +[68303] +centroid = (0.7028154314717987, -1.7004499777815949) +station = ('khjh', 0.0029261703881349071) +zone = ('nez087', 0.0027361724516131386) + +[68304] +centroid = (0.71347030003608114, -1.6824602059561737) +station = ('klnk', 0.0049328046538281572) +zone = ('nez067', 0.0034343617323014546) + +[68305] +centroid = (0.70456493206070536, -1.6731532028133289) +station = ('kafk', 0.0040434026500867932) +zone = ('nez091', 0.00040151797075529993) + +[68307] +centroid = (0.7119001320278171, -1.6778025155945466) +station = ('kpmv', 0.0039784570324116969) +zone = ('nez067', 0.0021145338243949417) + +[68309] +centroid = (0.6991050185616916, -1.6854148738468751) +station = ('kbie', 0.0049107190669631122) +zone = ('nez089', 0.0039494038106930021) + +[68310] +centroid = (0.70249189978835658, -1.6885971501253285) +station = ('kbie', 0.00087581509554717797) +zone = ('nez089', 0.00082897166776479915) + +[68313] +centroid = (0.71180954943963859, -1.6977047144945481) +station = ('kjyr', 0.0050423108855781277) +zone = ('nez065', 0.0023286429799254729) + +[68314] +centroid = (0.71578149993815721, -1.6935964886880339) +station = ('klnk', 0.0047172878423748796) +zone = ('nez065', 0.0027832435036793902) + +[68315] +centroid = (0.70254071664753481, -1.7024659726939888) +station = ('khjh', 0.0018429034500734374) +zone = ('nez087', 0.001493505647618471) + +[68316] +centroid = (0.71601380326159758, -1.7039021168689923) +station = ('kjyr', 0.0022328272805959698) +zone = ('nez064', 0.0026768807299675668) + +[68317] +centroid = (0.70985579296837098, -1.6843699975835835) +station = ('klnk', 0.0044400911741315956) +zone = ('nez066', 0.0030896051308527579) + +[68318] +centroid = (0.70076707815507311, -1.686643620546864) +station = ('kbie', 0.0030013616684400287) +zone = ('nez089', 0.0020548296006316397) + +[68319] +centroid = (0.71449861312477125, -1.7062288152948257) +station = ('kjyr', 0.001943129724959126) +zone = ('nez064', 0.0024261605766343324) + +[68320] +centroid = (0.70663398498235952, -1.674451465977425) +station = ('kafk', 0.00229632272907327) +zone = ('nez091', 0.0021048545588566356) + +[68321] +centroid = (0.70492474913929648, -1.6700753670373145) +station = ('kafk', 0.0042593803114655271) +zone = ('nez091', 0.0021314495330279713) + +[68322] +centroid = (0.70410908696666941, -1.7025615643771204) +station = ('khjh', 0.0033576815860793443) +zone = ('nez087', 0.002962213395066617) + +[68323] +centroid = (0.7006214129757018, -1.6821873935407945) +station = ('kbie', 0.0056179870051704939) +zone = ('nez092', 0.0019478508072243545) + +[68324] +centroid = (0.70790639982023351, -1.6806152882170606) +station = ('kafk', 0.00590252270679639) +zone = ('nez068', 0.0025944717372921792) + +[68325] +centroid = (0.69855223788099985, -1.7061134664845614) +station = ('khjh', 0.0031501019304546072) +zone = ('nez087', 0.003394587185282457) + +[68326] +centroid = (0.70307810352422395, -1.7049117200281008) +station = ('khjh', 0.0026313432076907166) +zone = ('nez087', 0.0022170096390283617) + +[68327] +centroid = (0.69855242986721766, -1.7038602987801144) +station = ('khjh', 0.0022901509215951781) +zone = ('nez087', 0.002684747021241835) + +[68328] +centroid = (0.70659700145550974, -1.6901040499482081) +station = ('kbie', 0.0034249283546609445) +zone = ('nez089', 0.0043544734717362102) + +[68329] +centroid = (0.70682206166255446, -1.6784698596873391) +station = ('kafk', 0.0045933055838631364) +zone = ('nez090', 0.0022345956256164591) + +[68331] +centroid = (0.70638475196517481, -1.6879913812485465) +station = ('kbie', 0.0030531741102014084) +zone = ('nez089', 0.0036975931503755322) + +[68332] +centroid = (0.7036313728971062, -1.6825017796989561) +station = ('kbie', 0.0046624732391582239) +zone = ('nez090', 0.0022516787348734837) + +[68333] +centroid = (0.70899084269766766, -1.6920934285895086) +station = ('klnk', 0.0044101019129947905) +zone = ('nez078', 0.0030573266992159958) + +[68335] +centroid = (0.70292947128512406, -1.707002659378575) +station = ('khjh', 0.003599529189972864) +zone = ('nez087', 0.0032765918985235274) + +[68336] +centroid = (0.71498905064458163, -1.6875748584225581) +station = ('klnk', 0.0025195831249387669) +zone = ('nez066', 0.0031724898793712838) + +[68337] +centroid = (0.69984924440803442, -1.6725820787221988) +station = ('kfnb', 0.0033292401529254972) +zone = ('nez093', 0.0016056369378716845) + +[68338] +centroid = (0.70361046385266723, -1.6975936591942435) +station = ('khjh', 0.0051352002927346641) +zone = ('nez088', 0.002911286431340367) + +[68339] +centroid = (0.71090843594683384, -1.6907022440960366) +station = ('klnk', 0.0022345607373353282) +zone = ('nez066', 0.0025756243668904172) + +[68340] +centroid = (0.70031934884205904, -1.7061514797556698) +station = ('khjh', 0.0022945217645560616) +zone = ('nez087', 0.0023182411467384339) + +[68341] +centroid = (0.70478337746988495, -1.6915776663422519) +station = ('kbie', 0.0026710252707901486) +zone = ('nez089', 0.0037114240889816142) + +[68342] +centroid = (0.69982765468518726, -1.6920324293321514) +station = ('kbie', 0.0044023938455398813) +zone = ('nez088', 0.0029560013780577329) + +[68343] +centroid = (0.70892191964550644, -1.6952750067362616) +station = ('klnk', 0.0061202231099544459) +zone = ('nez078', 0.0016487301590416403) + +[68344] +centroid = (0.70802321470706953, -1.6824947285687781) +station = ('kbie', 0.0065811907326128955) +zone = ('nez090', 0.0035280494099048992) + +[68345] +centroid = (0.69884000776806865, -1.6759500056731871) +station = ('kfnb', 0.0059448798896803478) +zone = ('nez092', 0.0032460184241659635) + +[68346] +centroid = (0.70961078364797603, -1.6759556605399637) +station = ('kafk', 0.0025296437208501238) +zone = ('nez068', 0.0014602871176382607) + +[68347] +centroid = (0.71217411381379514, -1.6829483047347866) +station = ('klnk', 0.0045297006609045761) +zone = ('nez066', 0.0034797810617579121) + +[68348] +centroid = (0.70354771926605808, -1.6778357641167969) +station = ('kafk', 0.0062991068598306863) +zone = ('nez090', 0.002268192343257076) + +[68349] +centroid = (0.71264638245609224, -1.6806978946505575) +station = ('klnk', 0.0062036620393044351) +zone = ('nez067', 0.0024709504677484584) + +[68350] +centroid = (0.69885913657667054, -1.6941856769369219) +station = ('kbie', 0.0062052073315812901) +zone = ('nez088', 0.002533509646488648) + +[68351] +centroid = (0.70967462779201407, -1.7005551862289052) +station = ('kjyr', 0.0048009511518578192) +zone = ('nez077', 0.0032079714758994869) + +[68352] +centroid = (0.70061710201244931, -1.6969703323051863) +station = ('khjh', 0.0047752737199644032) +zone = ('nez088', 0.0012935403636899197) + +[68354] +centroid = (0.70928397074554017, -1.7030427341986027) +station = ('kjyr', 0.0045377565369239103) +zone = ('nez077', 0.0020109332493989077) + +[68355] +centroid = (0.70003412713569813, -1.667974217510716) +station = ('kfnb', 0.00049319584100914967) +zone = ('nez093', 0.0020055602937910466) + +[68357] +centroid = (0.70359327235953506, -1.6850762276121105) +station = ('kbie', 0.0027012623993044505) +zone = ('nez089', 0.002084286600327548) + +[68358] +centroid = (0.70740678186855754, -1.6861327801280979) +station = ('kbie', 0.0044564717237922718) +zone = ('nez066', 0.0045339495678497011) + +[68359] +centroid = (0.70914982473923194, -1.6979405782896626) +station = ('kjyr', 0.0064350597841565851) +zone = ('nez078', 0.0026743165671545169) + +[68360] +centroid = (0.71472203272231905, -1.6922086203201403) +station = ('klnk', 0.003233117431751511) +zone = ('nez065', 0.0027743886050834343) + +[68361] +centroid = (0.70707033474865078, -1.7034205281684893) +station = ('khjh', 0.0062838373165673596) +zone = ('nez077', 0.00022123632928985171) + +[68362] +centroid = (0.70078896458389317, -1.7006740431509662) +station = ('khjh', 0.0019409831086389805) +zone = ('nez087', 0.0020880402225558212) + +[68364] +centroid = (0.71266448152043549, -1.6967879279450606) +station = ('klnk', 0.0059704732051841947) +zone = ('nez065', 0.0012546308750997397) + +[68365] +centroid = (0.70868315860383357, -1.7055083782861877) +station = ('kjyr', 0.0052528539134640301) +zone = ('nez077', 0.002134494394638703) + +[68366] +centroid = (0.71513316248091874, -1.6831072518697656) +station = ('kahq', 0.004965712007619384) +zone = ('nez067', 0.0040370754621503763) + +[68367] +centroid = (0.71627476489135578, -1.6998955390381139) +station = ('kjyr', 0.0038835685399687121) +zone = ('nez049', 0.0034213561632703044) + +[68368] +centroid = (0.70786618743426755, -1.6898752721898567) +station = ('kbie', 0.0046010786329942358) +zone = ('nez066', 0.0043356085943782987) + +[68370] +centroid = (0.70056891347180172, -1.702527355923781) +station = ('khjh', 0.00056858684826282418) +zone = ('nez087', 0.00089733402579221955) + +[68371] +centroid = (0.71159475176859555, -1.7067599189862075) +station = ('kjyr', 0.0031090496201960083) +zone = ('nez064', 0.0031038736730027157) + +[68372] +centroid = (0.70874934148906921, -1.6860837014695316) +station = ('klnk', 0.004468281847054301) +zone = ('nez066', 0.0032551612060355392) + +[68375] +centroid = (0.69871094066988371, -1.7009306065510092) +station = ('khjh', 0.0027140594313293338) +zone = ('nez087', 0.0031088530742608561) + +[68376] +centroid = (0.70117480452163161, -1.6745619453190761) +station = ('kfnb', 0.0050852927915258925) +zone = ('nez091', 0.0039465958691676101) + +[68377] +centroid = (0.70186560583957092, -1.6933027323216305) +station = ('kbie', 0.003886305735731641) +zone = ('nez088', 0.0017765831532648073) + +[68378] +centroid = (0.70486847972421229, -1.6758374493897259) +station = ('kafk', 0.0043529787754086596) +zone = ('nez091', 0.0022577787430847454) + +[68379] +centroid = (0.70720540577946256, -1.6732011819144663) +station = ('kafk', 0.0014171040722852262) +zone = ('nez091', 0.0023135451371126062) + +[68380] +centroid = (0.7023754514206636, -1.6822199264780515) +station = ('kbie', 0.0049725423471351339) +zone = ('nez092', 0.0027660256194994288) + +[68381] +centroid = (0.69946947821609307, -1.6839045706319542) +station = ('kbie', 0.0053005193588521755) +zone = ('nez092', 0.0033897753227271087) + +[68382] +centroid = (0.70855653496660143, -1.6759360081325863) +station = ('kafk', 0.0023071334517889039) +zone = ('nez068', 0.0017177470815556953) + +[68401] +centroid = (0.71102270265296186, -1.7032865392418139) +station = ('kjyr', 0.0027902740350985427) +zone = ('nez064', 0.0023435593463334643) + +[68402] +centroid = (0.71397585210721393, -1.6904772537021622) +station = ('klnk', 0.0017656137561688633) +zone = ('nez066', 0.0031087527231806085) + +[68403] +centroid = (0.71419984766341482, -1.6784486364836348) +station = ('kpmv', 0.0033390655647811294) +zone = ('nez067', 0.00040581894542267045) + +[68404] +centroid = (0.7088415123268671, -1.6886556535618555) +station = ('klnk', 0.0038389565483022011) +zone = ('nez066', 0.0030972908876919802) + +[68405] +centroid = (0.71143198236255467, -1.6942521565281305) +station = ('klnk', 0.0042406203207672535) +zone = ('nez065', 0.0021125037384227487) + +[68406] +centroid = (0.70685990040073776, -1.6997000796151833) +station = ('khjh', 0.0066360066397880904) +zone = ('nez078', 0.0032755380443652282) + +[68407] +centroid = (0.71413113405076378, -1.6801754826988506) +station = ('kmle', 0.0052803290757218657) +zone = ('nez067', 0.001668390535411864) + +[68409] +centroid = (0.71397428131088714, -1.6747163720512925) +station = ('kpmv', 0.0008804128058501349) +zone = ('nez067', 0.0024618586828633001) + +[68410] +centroid = (0.70921351180363712, -1.6734750415273965) +station = ('kafk', 0.0007507990871857814) +zone = ('nez091', 0.0043323821379238773) + +[68413] +centroid = (0.71277232541491609, -1.6757366740787158) +station = ('kpmv', 0.002308664421434741) +zone = ('nez067', 0.0020962652667963172) + +[68414] +centroid = (0.70350909512971138, -1.6696838024196294) +station = ('kfnb', 0.0040742227945187535) +zone = ('nez091', 0.0028034849598023654) + +[68415] +centroid = (0.69934704336906561, -1.6898490049846142) +station = ('kbie', 0.0041312561952261285) +zone = ('nez089', 0.0037889482072513939) + +[68416] +centroid = (0.70529278671866458, -1.7009898953856994) +station = ('khjh', 0.0048131396032879579) +zone = ('nez077', 0.0027006826005274475) + +[68417] +centroid = (0.71092789636799358, -1.6771592570454317) +station = ('kafk', 0.0039810584196337678) +zone = ('nez068', 0.0015726211027293332) + +[68418] +centroid = (0.71013549943429566, -1.6825564259578361) +station = ('klnk', 0.0054331846208417597) +zone = ('nez068', 0.0036210065326605792) + +[68419] +centroid = (0.70860029037094896, -1.6844376989052683) +station = ('klnk', 0.0052948773439838283) +zone = ('nez066', 0.0039761359946766201) + +[68420] +centroid = (0.69975433340331095, -1.6791717089394436) +station = ('kfnb', 0.0083620625166642756) +zone = ('nez092', 0.00076491178465384392) + +[68421] +centroid = (0.70675329569002587, -1.6710401675945243) +station = ('kafk', 0.0023274534655706005) +zone = ('nez091', 0.0023156404286695477) + +[68422] +centroid = (0.70491640646547193, -1.6876410413077938) +station = ('kbie', 0.0017144928163502077) +zone = ('nez089', 0.0022148580519968674) + +[68423] +centroid = (0.71222483308185802, -1.6922267368377759) +station = ('klnk', 0.0025599549109277934) +zone = ('nez065', 0.002656746465427086) + +[68424] +centroid = (0.70335363865323619, -1.6932531824241666) +station = ('kbie', 0.003544267357456899) +zone = ('nez088', 0.0027347939148893202) + +[68428] +centroid = (0.71496407498298564, -1.6893585500115111) +station = ('klnk', 0.0023144157362782985) +zone = ('nez066', 0.003440479570867998) + +[68430] +centroid = (0.70980133869570883, -1.6870937933208308) +station = ('klnk', 0.0031827998781759738) +zone = ('nez066', 0.0020412602953175829) + +[68431] +centroid = (0.6993108801469643, -1.6657105254708793) +station = ('kfnb', 0.0019579589490888753) +zone = ('moz011', 0.0030175370761721942) + +[68433] +centroid = (0.69906264196745305, -1.6709526044259519) +station = ('kfnb', 0.0021380084226562219) +zone = ('nez093', 0.0012825436447321589) + +[68434] +centroid = (0.71400697132777691, -1.6950105195414147) +station = ('klnk', 0.0048107115810087989) +zone = ('nez065', 0.00071555645595033858) + +[68436] +centroid = (0.70564115443736253, -1.7058544596235654) +station = ('khjh', 0.0052541813422914705) +zone = ('nez077', 0.002501773602505448) + +[68437] +centroid = (0.70207734918442288, -1.6693018371128305) +station = ('kfnb', 0.0026191517619696646) +zone = ('nez093', 0.0020147023449244338) + +[68438] +centroid = (0.70906802115719081, -1.6885120653242938) +station = ('klnk', 0.0036198586070392159) +zone = ('nez066', 0.0028497379337905984) + +[68439] +centroid = (0.71551336500517326, -1.6965553802755247) +station = ('klnk', 0.0064454348784733599) +zone = ('nez065', 0.0023258934379068812) + +[68440] +centroid = (0.69918860237956948, -1.6930005809215254) +station = ('kbie', 0.0053607379444929612) +zone = ('nez088', 0.0027515054570929104) + +[68441] +centroid = (0.70201402863916063, -1.6797071061407853) +station = ('kbie', 0.0069244294510641419) +zone = ('nez092', 0.0015895126222855663) + +[68442] +centroid = (0.7022973304833442, -1.6715582511296865) +station = ('kfnb', 0.0037103130595885899) +zone = ('nez093', 0.0021239861083970908) + +[68443] +centroid = (0.70594133361541311, -1.6816260607467681) +station = ('kbie', 0.0059076613059850479) +zone = ('nez090', 0.0014824458655878928) + +[68444] +centroid = (0.70531165372787863, -1.7030413204819084) +station = ('khjh', 0.0045250804636582783) +zone = ('nez077', 0.0019945280325187427) + +[68445] +centroid = (0.70492506329856186, -1.6943510294302557) +station = ('kbie', 0.0046473302246089901) +zone = ('nez078', 0.0024905204778325066) + +[68446] +centroid = (0.70953571703684781, -1.6785774592357245) +station = ('kafk', 0.0044100732485448241) +zone = ('nez068', 0.0005444296186379187) + +[68447] +centroid = (0.70177743180576024, -1.6767839588963751) +station = ('kfnb', 0.0068860142845989097) +zone = ('nez092', 0.0025755698006601556) + +[68448] +centroid = (0.70786815965632244, -1.6759378407283008) +station = ('kafk', 0.0024230539250902493) +zone = ('nez068', 0.0021568504769205084) + +[68450] +centroid = (0.70447665330713949, -1.6795259584177207) +station = ('kafk', 0.0065150810314346481) +zone = ('nez090', 0.00068969858445241147) + +[68452] +centroid = (0.70501599495259082, -1.7078446062097372) +station = ('khjh', 0.0055096952633918554) +zone = ('nez076', 0.0034816894582576328) + +[68453] +centroid = (0.70533980588871326, -1.6986558840302999) +station = ('khjh', 0.005727379227054092) +zone = ('nez078', 0.003128629062989358) + +[68454] +centroid = (0.71020630744204905, -1.6805510251940021) +station = ('kpmv', 0.0066540902867292364) +zone = ('nez068', 0.0021703855370187636) + +[68455] +centroid = (0.71244422096883375, -1.6737233844266628) +station = ('kpmv', 0.0022841681343913284) +zone = ('nez067', 0.0035755786774367537) + +[68456] +centroid = (0.71399766872286385, -1.6985694553257411) +station = ('kjyr', 0.0039886145142010174) +zone = ('nez065', 0.0024773619202585447) + +[68457] +centroid = (0.70080542303873949, -1.6702689938645308) +station = ('kfnb', 0.0019710225661980132) +zone = ('nez093', 0.00054529671094894156) + +[68458] +centroid = (0.70210230739272639, -1.6843998950736701) +station = ('kbie', 0.0034500517287630031) +zone = ('nez089', 0.0024757895213443006) + +[68460] +centroid = (0.71367806403023859, -1.7005640001416278) +station = ('kjyr', 0.0024777368091605709) +zone = ('nez064', 0.0021600033236789358) + +[68461] +centroid = (0.71143693909763028, -1.684442254214616) +station = ('klnk', 0.0035927481965401463) +zone = ('nez066', 0.0023618746065940952) + +[68462] +centroid = (0.71474948675145289, -1.6845858424521776) +station = ('klnk', 0.0038625637119653017) +zone = ('nez066', 0.0036776837703773901) + +[68463] +centroid = (0.71341734674657564, -1.6777680977016971) +station = ('kpmv', 0.0030725629358695737) +zone = ('nez067', 0.00061333999559209863) + +[68464] +centroid = (0.70561459052614728, -1.6965793436461545) +station = ('kbie', 0.0064773644078268619) +zone = ('nez078', 0.0018796220176064164) + +[68465] +centroid = (0.70661990017529608, -1.6933573087673404) +station = ('kbie', 0.0048653189705120947) +zone = ('nez078', 0.0017053080653170074) + +[68466] +centroid = (0.69929852321586006, -1.6867355993984441) +station = ('kbie', 0.0043127854269730034) +zone = ('nez089', 0.0034601566593309074) + +[68467] +centroid = (0.71325260511847988, -1.7033652012312011) +station = ('kjyr', 0.00063873554036591182) +zone = ('nez064', 0.00011397687414939434) + +[68502] +centroid = (0.71184667259282841, -1.6876985150000618) +station = ('klnk', 0.0012291238071907922) +zone = ('nez066', 0.00013808384691574115) + +[68503] +centroid = (0.71252288295822108, -1.6872802992046991) +station = ('klnk', 0.0012328144215756199) +zone = ('nez066', 0.00072908197286957496) + +[68504] +centroid = (0.71304515528358792, -1.6870384663835427) +station = ('klnk', 0.0014535527050760974) +zone = ('nez066', 0.0012813421275223069) + +[68505] +centroid = (0.71252785714658928, -1.6863242427470415) +station = ('klnk', 0.0019523020643073465) +zone = ('nez066', 0.0011512746917044206) + +[68506] +centroid = (0.71180906074744799, -1.6865504548713923) +station = ('klnk', 0.001976392850539516) +zone = ('nez066', 0.00073450581778208661) + +[68507] +centroid = (0.71312207194372335, -1.6862472039138583) +station = ('klnk', 0.00205345330334137) +zone = ('nez066', 0.0016223624738000973) + +[68508] +centroid = (0.71241324137461082, -1.6878021002911676) +station = ('klnk', 0.00086916960891560222) +zone = ('nez066', 0.00063337463120770711) + +[68510] +centroid = (0.71220319099913343, -1.6866111923293621) +station = ('klnk', 0.001793266194301487) +zone = ('nez066', 0.00078937588855621118) + +[68512] +centroid = (0.71102621076475847, -1.687864513265219) +station = ('klnk', 0.0018257148477529403) +zone = ('nez066', 0.00083245861879015681) + +[68514] +centroid = (0.71422326998197661, -1.6869150366988415) +station = ('klnk', 0.0021539040644364816) +zone = ('nez066', 0.0024496261484411711) + +[68516] +centroid = (0.71096468790862566, -1.6867348838134508) +station = ('klnk', 0.0023683132864626417) +zone = ('nez066', 0.0010393311168913095) + +[68517] +centroid = (0.71447229355965125, -1.6862502058801718) +station = ('klnk', 0.0026889177147537023) +zone = ('nez066', 0.0028239060207736651) + +[68520] +centroid = (0.71209424754722395, -1.6851552212140557) +station = ('klnk', 0.002890912412978279) +zone = ('nez066', 0.0018120478066855608) + +[68521] +centroid = (0.71328580128085284, -1.6878285943892131) +station = ('klnk', 0.0010123082754027392) +zone = ('nez066', 0.0014873637117895657) + +[68522] +centroid = (0.71192173920395674, -1.6888240080215029) +station = ('klnk', 0.00075638884669507786) +zone = ('nez066', 0.00099253389212834177) + +[68523] +centroid = (0.71097091873405527, -1.6887488715972045) +station = ('klnk', 0.0017088741144727518) +zone = ('nez066', 0.0012575089022546493) + +[68524] +centroid = (0.71396223853904839, -1.6892595374830455) +station = ('klnk', 0.0013150308067403703) +zone = ('nez066', 0.0025166475982559165) + +[68526] +centroid = (0.71087204583192976, -1.6856756609437078) +station = ('klnk', 0.0030338383148249457) +zone = ('nez066', 0.0016868169600664504) + +[68527] +centroid = (0.71291661178417853, -1.6846655167325313) +station = ('klnk', 0.0032102446705152133) +zone = ('nez066', 0.0024244597213719421) + +[68528] +centroid = (0.71245804397650958, -1.6900060846172935) +station = ('klnk', 0.0008671419880621296) +zone = ('nez066', 0.0019877986268352688) + +[68531] +centroid = (0.71386465718056935, -1.6881387219439998) +station = ('klnk', 0.0013196251122050285) +zone = ('nez066', 0.0021005642970708728) + +[68532] +centroid = (0.71195561604473789, -1.6902231861229491) +station = ('klnk', 0.0012355838999645551) +zone = ('nez066', 0.0020510213332383884) + +[68601] +centroid = (0.72351751476798942, -1.699920549606295) +station = ('kolu', 0.0008531231729588854) +zone = ('nez042', 0.0025677430129166161) + +[68620] +centroid = (0.72859118690353686, -1.7117225532747433) +station = ('kbvn', 0.00038391799563552943) +zone = ('nez030', 0.00067669717151400176) + +[68621] +centroid = (0.72417484067087545, -1.6866772530415499) +station = ('kfet', 0.0017667467750835575) +zone = ('nez044', 0.0015052418815371864) + +[68622] +centroid = (0.73214764432032575, -1.721338584414946) +station = ('kodx', 0.0071749450362999095) +zone = ('nez029', 0.0013962999235721) + +[68623] +centroid = (0.72329015072633207, -1.7130750612719914) +station = ('kbvn', 0.0051624453339995007) +zone = ('nez041', 0.0022274516297920485) + +[68624] +centroid = (0.72161707810537024, -1.6969724267002888) +station = ('kolu', 0.0022742896316113605) +zone = ('nez050', 0.0024835433725783258) + +[68626] +centroid = (0.7185432740399279, -1.6928298877206802) +station = ('klnk', 0.006575222039993822) +zone = ('nez050', 0.0020553062019647945) + +[68627] +centroid = (0.72534155836924863, -1.7134661895573631) +station = ('kbvn', 0.0033369731336610454) +zone = ('nez030', 0.0029333648813118663) + +[68628] +centroid = (0.71955771176106464, -1.7075762967438282) +station = ('kauh', 0.0061826265260962734) +zone = ('nez048', 0.0028220709652210137) + +[68629] +centroid = (0.72814530763952989, -1.6952839777286168) +station = ('kolu', 0.0053865899773314586) +zone = ('nez043', 0.0026270011581931486) + +[68631] +centroid = (0.72766429489768025, -1.6989843026356477) +station = ('kolu', 0.0042278938334592798) +zone = ('nez042', 0.0031233385642711834) + +[68632] +centroid = (0.71988119108462922, -1.6952592115065312) +station = ('kolu', 0.0044353227198520714) +zone = ('nez050', 0.00038324996221148671) + +[68633] +centroid = (0.72791054340184402, -1.6911612831426037) +station = ('kfet', 0.0066764440312188401) +zone = ('nez043', 0.0033996467807337291) + +[68634] +centroid = (0.72238999716461605, -1.7015750519240156) +station = ('kolu', 0.00233901068922205) +zone = ('nez042', 0.0031644807724124616) + +[68635] +centroid = (0.71704087716651865, -1.6932470388651992) +station = ('klnk', 0.0054628952904365946) +zone = ('nez050', 0.0028825684009578002) + +[68636] +centroid = (0.73319927500782245, -1.7130861441127416) +station = ('kbvn', 0.0050621360186323015) +zone = ('nez016', 0.0031308565224879019) + +[68637] +centroid = (0.73096167564030312, -1.7230205058552155) +station = ('kodx', 0.0054878716571606619) +zone = ('nez029', 0.0025832988444182896) + +[68638] +centroid = (0.72213856503257368, -1.7102994292559597) +station = ('kbvn', 0.0062123127872661249) +zone = ('nez041', 0.00038071336616425508) + +[68640] +centroid = (0.72361994814178887, -1.7066855854133653) +station = ('kbvn', 0.0058534744780491905) +zone = ('nez041', 0.002916891414032795) + +[68641] +centroid = (0.72842485702582183, -1.6932357989448166) +station = ('kolu', 0.0064881309077360347) +zone = ('nez043', 0.0029863890699793117) + +[68642] +centroid = (0.72761406432180775, -1.7019391799658592) +station = ('kolu', 0.0047950443739787057) +zone = ('nez042', 0.002080357846927245) + +[68643] +centroid = (0.72790659895773457, -1.6975654197669465) +station = ('kolu', 0.004560141672829531) +zone = ('nez043', 0.0032690105527263236) + +[68644] +centroid = (0.72787659674789285, -1.7046633422222497) +station = ('kofk', 0.0057614919620806839) +zone = ('nez042', 0.0030531629370769884) + +[68647] +centroid = (0.72463930769141616, -1.7039359762564807) +station = ('kolu', 0.0040396315708944768) +zone = ('nez042', 0.0016771169487291855) + +[68648] +centroid = (0.72257885924297427, -1.6894844057038725) +station = ('kfet', 0.0038105322918952928) +zone = ('nez044', 0.0036319526437273708) + +[68649] +centroid = (0.72439974379828742, -1.6892232869944817) +station = ('kfet', 0.0036425634475384275) +zone = ('nez044', 0.0021316208112581131) + +[68651] +centroid = (0.71956825354974663, -1.7029200026456024) +station = ('kolu', 0.0049609583706663419) +zone = ('nez049', 0.00072159708506940165) + +[68652] +centroid = (0.73061932930752438, -1.7111937708712666) +station = ('kbvn', 0.0023272324530650671) +zone = ('nez030', 0.0027150714037718882) + +[68653] +centroid = (0.7253280320675457, -1.7014508717477363) +station = ('kolu', 0.0027473847914196584) +zone = ('nez042', 0.00048809477646041729) + +[68654] +centroid = (0.71675483515540939, -1.7065677931421481) +station = ('kjyr', 0.0036172871789272873) +zone = ('nez049', 0.0034716788977536659) + +[68655] +centroid = (0.72702669121534169, -1.7146553347366245) +station = ('kbvn', 0.0027477786360121958) +zone = ('nez030', 0.0024527742930969577) + +[68658] +centroid = (0.71903495074350732, -1.6980523317216676) +station = ('kolu', 0.0044384621707641517) +zone = ('nez050', 0.0021593230716344149) + +[68659] +centroid = (0.72511349619589049, -1.6918419964574665) +station = ('kfet', 0.0057242199649366853) +zone = ('nez043', 0.0020319124322509706) + +[68660] +centroid = (0.72558253597907152, -1.7081462514643591) +station = ('kbvn', 0.0036400849106640624) +zone = ('nez041', 0.0034581803733406504) + +[68661] +centroid = (0.72418082715020982, -1.6945161375774946) +station = ('kolu', 0.0032850694966811344) +zone = ('nez043', 0.0014068724653035693) + +[68662] +centroid = (0.71926247186479719, -1.7002572410722971) +station = ('kolu', 0.0043199321598363987) +zone = ('nez049', 0.0020239320776930738) + +[68663] +centroid = (0.72115580503736065, -1.7049272185518585) +station = ('kolu', 0.0051415680443673362) +zone = ('nez049', 0.0027706830679956923) + +[68664] +centroid = (0.72787230323793295, -1.6892438295197776) +station = ('kfet', 0.0056630095907238744) +zone = ('nez044', 0.0027999423177109662) + +[68665] +centroid = (0.72902198652280659, -1.7172686511322206) +station = ('kbvn', 0.0044437278866283113) +zone = ('nez029', 0.0030857921357846981) + +[68666] +centroid = (0.71751524020391833, -1.7036370188089067) +station = ('kjyr', 0.0037368607239434358) +zone = ('nez049', 0.0014457465993483365) + +[68667] +centroid = (0.71750077142441926, -1.69828831768983) +station = ('kjyr', 0.005601752972272815) +zone = ('nez050', 0.0030372084926260606) + +[68669] +centroid = (0.71696783513732276, -1.697104024525889) +station = ('kolu', 0.00659365103267114) +zone = ('nez050', 0.0028902077349222169) + +[68701] +centroid = (0.73338695026228928, -1.7007009735813243) +station = ('kofk', 0.00065169612716395743) +zone = ('nez031', 0.0027293305703603478) + +[68710] +centroid = (0.74075028493694317, -1.690513137671583) +station = ('klcg', 0.0038328565722924252) +zone = ('nez013', 0.00090251750039087514) + +[68711] +centroid = (0.73649532930021366, -1.7285908812425881) +station = ('konl', 0.0065777568603199365) +zone = ('nez028', 0.0049942606445070913) + +[68713] +centroid = (0.74246568179226569, -1.7271702530446347) +station = ('konl', 0.0037786540302482642) +zone = ('nez010', 0.0026996821951719187) + +[68714] +centroid = (0.74056248750942866, -1.7365194058889153) +station = ('kanw', 0.0070169799613399482) +zone = ('nez009', 0.00060734862184639638) + +[68715] +centroid = (0.73240806489801569, -1.7036140851825357) +station = ('kofk', 0.0023160304390585432) +zone = ('nez031', 0.00083379026527432296) + +[68716] +centroid = (0.73176136805027425, -1.6898737188468222) +station = ('klcg', 0.0058669867865294963) +zone = ('nez033', 0.00049246825740956353) + +[68717] +centroid = (0.73980789440732886, -1.6968609525209639) +station = ('klcg', 0.0040289323919486626) +zone = ('nez018', 0.0033934329476364884) + +[68718] +centroid = (0.74470324625320017, -1.7050637731125347) +station = ('kykn', 0.0058743481704429902) +zone = ('nez011', 0.0026120476972993608) + +[68719] +centroid = (0.74969668560303337, -1.7201991811193666) +station = ('konl', 0.0086588493183997473) +zone = ('nez007', 0.0028048740107608676) + +[68720] +centroid = (0.73905961939712128, -1.7106785322227855) +station = ('konl', 0.0088751428965762793) +zone = ('nez016', 0.0030098680513542886) + +[68722] +centroid = (0.74926871341715184, -1.7255898574069541) +station = ('konl', 0.0084290509078924006) +zone = ('nez007', 0.0014126451777604762) + +[68723] +centroid = (0.73797323920421742, -1.6966038480688528) +station = ('klcg', 0.0030166419855163539) +zone = ('nez018', 0.0017229055965457896) + +[68724] +centroid = (0.74417360863838988, -1.7085727401203767) +station = ('kykn', 0.0081518296783183626) +zone = ('nez011', 3.3243932911842741e-05) + +[68725] +centroid = (0.73648381012715058, -1.7239996181122919) +station = ('konl', 0.0048551665640707764) +zone = ('nez010', 0.0045085834833955086) + +[68726] +centroid = (0.73626122828764362, -1.7140897782458082) +station = ('konl', 0.0078429907248075813) +zone = ('nez016', 0.0018597198597466746) + +[68727] +centroid = (0.74203189765997513, -1.6965032821973527) +station = ('klcg', 0.0055617259409431446) +zone = ('nez012', 0.0015999524017552996) + +[68728] +centroid = (0.73958555691391736, -1.692046444326045) +station = ('klcg', 0.002371015020976597) +zone = ('nez013', 0.0023006684118843275) + +[68729] +centroid = (0.741274005885589, -1.7087659131619872) +station = ('konl', 0.010019860881588294) +zone = ('nez011', 0.0028852584172948444) + +[68730] +centroid = (0.7464295514163477, -1.7023004631210221) +station = ('kykn', 0.0032478345970330005) +zone = ('sdz069', 0.0045828864509595592) + +[68731] +centroid = (0.74009950401875202, -1.6837702326394279) +station = ('ksux', 0.0012129151631936883) +zone = ('nez014', 0.0012047420647903096) + +[68732] +centroid = (0.74165717546957188, -1.692598195262478) +station = ('klcg', 0.0044011438595475709) +zone = ('nez013', 0.0014289533190671481) + +[68733] +centroid = (0.73801449878773462, -1.6881728605841688) +station = ('klcg', 0.0033950955528483017) +zone = ('nez014', 0.0027773129019354856) + +[68734] +centroid = (0.7410407600843526, -1.724454468368654) +station = ('konl', 0.0015596946053829006) +zone = ('nez010', 0.00026421873988960519) + +[68735] +centroid = (0.73547336921000084, -1.7185565295872673) +station = ('konl', 0.0063615520223635974) +zone = ('nez029', 0.0040040529693254317) + +[68736] +centroid = (0.74587293101130159, -1.6993888001430899) +station = ('kykn', 0.0031704426691438071) +zone = ('nez012', 0.0027995372592753069) + +[68739] +centroid = (0.74396399459522533, -1.6976809256568435) +station = ('kykn', 0.0052770168199946545) +zone = ('nez012', 0.00051818779097194065) + +[68740] +centroid = (0.73569724259315417, -1.6981385160801312) +station = ('kofk', 0.0034438142404444559) +zone = ('nez018', 0.0024934727375814903) + +[68741] +centroid = (0.73902514914439432, -1.6858916803452271) +station = ('ksux', 0.0028123558149841989) +zone = ('nez014', 0.00092334451571366273) + +[68742] +centroid = (0.73918908792103422, -1.719662649454011) +station = ('konl', 0.0028125810433956818) +zone = ('nez010', 0.0037413753000650738) + +[68743] +centroid = (0.74103767085157657, -1.6865143440091688) +station = ('ksux', 0.0034389390916166867) +zone = ('nez014', 0.001445735614308353) + +[68745] +centroid = (0.74100042552533907, -1.6944334089709501) +station = ('klcg', 0.003970811416111125) +zone = ('nez012', 0.0033061414239053226) + +[68746] +centroid = (0.74716909978029522, -1.7180574701409521) +station = ('konl', 0.0067674775473030553) +zone = ('nez007', 0.0044940622162234368) + +[68747] +centroid = (0.73986505394033164, -1.7016283891859567) +station = ('kofk', 0.0071638265150816057) +zone = ('nez017', 0.0025952253931221286) + +[68748] +centroid = (0.73029118995485687, -1.7012364580491286) +station = ('kofk', 0.0025114552740809655) +zone = ('nez031', 0.0020969515008941154) + +[68749] +centroid = (0.74094616323889451, -1.7012658144871473) +station = ('kykn', 0.0081766482381087999) +zone = ('nez017', 0.0036720392473244077) + +[68751] +centroid = (0.74508898147118341, -1.6926362958000489) +station = ('kykn', 0.0064916711719548974) +zone = ('nez013', 0.0037374568008526851) + +[68752] +centroid = (0.73354052178317231, -1.7056007760167882) +station = ('kofk', 0.0038487341122827264) +zone = ('nez031', 0.0025253510754089533) + +[68753] +centroid = (0.74856311170715562, -1.7353399647402952) +station = ('kanw', 0.0090766701391441773) +zone = ('nez006', 0.0036461669022890553) + +[68755] +centroid = (0.74920897079685611, -1.7301451667546592) +station = ('konl', 0.0098612002617638351) +zone = ('sdz050', 0.0046944415503897352) + +[68756] +centroid = (0.73622281359080721, -1.7101058896952059) +station = ('kofk', 0.007909583652914793) +zone = ('nez016', 0.0011017010824851499) + +[68757] +centroid = (0.74443439573522285, -1.6917422159841298) +station = ('klcg', 0.0072090444336273159) +zone = ('nez013', 0.0028997492547794567) + +[68758] +centroid = (0.72941557572242388, -1.706686719877379) +station = ('kbvn', 0.0036840401893763236) +zone = ('nez031', 0.0032387400536006933) + +[68759] +centroid = (0.74532784723261136, -1.7332959049335295) +station = ('konl', 0.0090630233472607201) +zone = ('nez009', 0.0052519411282514264) + +[68760] +centroid = (0.74540991261403999, -1.7082406388703071) +station = ('kykn', 0.0072649816523648672) +zone = ('nez011', 0.0012742610294536488) + +[68761] +centroid = (0.73390927494753366, -1.7097603145033111) +station = ('kbvn', 0.0057424536425409768) +zone = ('nez016', 0.0025978217553822426) + +[68763] +centroid = (0.74178313588168843, -1.7210378990914128) +station = ('konl', 0.0011379719858931911) +zone = ('nez010', 0.0023948222916130679) + +[68764] +centroid = (0.74010480981967808, -1.7144660712325381) +station = ('konl', 0.0059170158609257815) +zone = ('nez016', 0.0045132257417257486) + +[68765] +centroid = (0.73901254786719506, -1.7036806520402066) +station = ('kofk', 0.0066856227624704388) +zone = ('nez017', 0.0013690175455528799) + +[68766] +centroid = (0.74059964556920355, -1.717457443397409) +station = ('konl', 0.0036562413480651767) +zone = ('nez016', 0.0062342824318023099) + +[68767] +centroid = (0.73651850727268009, -1.7026171531137964) +station = ('kofk', 0.0040760834638109561) +zone = ('nez017', 0.0012961997737497757) + +[68768] +centroid = (0.73295487655266567, -1.6941287093901367) +station = ('klcg', 0.0044399363375985891) +zone = ('nez032', 0.0021472855041141203) + +[68769] +centroid = (0.73871336352681816, -1.7071297018948277) +station = ('kofk', 0.0077144264397560431) +zone = ('nez017', 0.0029114481953660333) + +[68770] +centroid = (0.74284045634254647, -1.688864831272707) +station = ('ksux', 0.0058140007783696228) +zone = ('nez013', 0.0017823960939442184) + +[68771] +centroid = (0.73994322723752837, -1.6992524026620464) +station = ('klcg', 0.0055760641383533552) +zone = ('nez012', 0.0038153897113850609) + +[68773] +centroid = (0.7393051523162919, -1.7124922434748728) +station = ('konl', 0.0075157418481467796) +zone = ('nez016', 0.0032492144390191807) + +[68774] +centroid = (0.74722554372830463, -1.697757039465523) +station = ('kykn', 0.0022862467354105402) +zone = ('nez012', 0.0037381762323043903) + +[68776] +centroid = (0.74119633873387536, -1.6833185763355971) +station = ('ksux', 0.001681594981335795) +zone = ('nez014', 0.0020168332107494856) + +[68777] +centroid = (0.74806283053036404, -1.722431038353647) +station = ('konl', 0.0068799387975148254) +zone = ('nez007', 0.0012112532869565733) + +[68778] +centroid = (0.74792617124993277, -1.7418121342988806) +station = ('kanw', 0.005369458432162676) +zone = ('nez006', 0.0011902990609861084) + +[68779] +centroid = (0.73229083113215931, -1.6964427541788936) +station = ('kofk', 0.0030747552800620757) +zone = ('nez032', 0.0007077754959022199) + +[68780] +centroid = (0.7440855393243343, -1.7301132970425179) +station = ('konl', 0.0064140447753324118) +zone = ('nez009', 0.00554798051965917) + +[68781] +centroid = (0.73348762085354435, -1.7080452318072539) +station = ('kofk', 0.005631527495312311) +zone = ('nez016', 0.0037235281081900292) + +[68783] +centroid = (0.74383269347559777, -1.7132018245355636) +station = ('konl', 0.0072415683946486743) +zone = ('nez011', 0.0034480269996199383) + +[68784] +centroid = (0.73752669671509474, -1.6910733709081807) +station = ('klcg', 0.0011940751816387264) +zone = ('nez018', 0.0030621687745517761) + +[68785] +centroid = (0.74048260378956476, -1.6881539412150772) +station = ('ksux', 0.0044558027034220394) +zone = ('nez014', 0.0021463666578366777) + +[68786] +centroid = (0.74179215923392117, -1.7026985727234019) +station = ('kykn', 0.0075812602691575515) +zone = ('nez017', 0.0041776619813785462) + +[68787] +centroid = (0.7367578093664211, -1.6935099029038423) +station = ('klcg', 0.00081176177029323191) +zone = ('nez018', 0.0011438997281673035) + +[68788] +centroid = (0.73023931876948756, -1.6881048451032186) +station = ('ktqe', 0.0071138237317868256) +zone = ('nez033', 0.0015916916309966563) + +[68789] +centroid = (0.74252455174793552, -1.7099046532324511) +station = ('konl', 0.0092717659511346306) +zone = ('nez011', 0.0019160864169215413) + +[68790] +centroid = (0.73577271063001048, -1.6961427669870608) +station = ('klcg', 0.0029860770385089098) +zone = ('nez018', 0.0012224383641746988) + +[68791] +centroid = (0.7328362639767001, -1.6926966667388756) +station = ('klcg', 0.0044200699644429001) +zone = ('nez032', 0.002993177334988838) + +[68792] +centroid = (0.7460046684632422, -1.6948585711767359) +station = ('kykn', 0.0046469390166912995) +zone = ('nez012', 0.0031145787573944672) + +[68801] +centroid = (0.71467812023833888, -1.7154963216366981) +station = ('kgri', 0.00047205691319928035) +zone = ('nez062', 0.0030855700475861726) + +[68803] +centroid = (0.71481839235032163, -1.7176583657008984) +station = ('kgri', 0.0013035892293921654) +zone = ('nez062', 0.0018610357976876016) + +[68810] +centroid = (0.71305922263735899, -1.7185153572702128) +station = ('kgri', 0.0027457338301025641) +zone = ('nez062', 0.00059062292051923046) + +[68812] +centroid = (0.71362641973767216, -1.7328299369298321) +station = ('kear', 0.0046179511211384867) +zone = ('nez061', 0.0028146639033925585) + +[68813] +centroid = (0.72778707881055804, -1.7428225577627376) +station = ('kbbw', 0.0054775312005231934) +zone = ('nez026', 0.0040455012284789423) + +[68814] +centroid = (0.72110871605414184, -1.7350830871809866) +station = ('kbbw', 0.0035342543003452753) +zone = ('nez038', 0.0043216422561905016) + +[68815] +centroid = (0.7228854263260871, -1.7303890590643329) +station = ('kodx', 0.0042912876775851949) +zone = ('nez039', 0.003354781960855919) + +[68816] +centroid = (0.71868091070474016, -1.7127430647416768) +station = ('kgri', 0.0044010012900334025) +zone = ('nez048', 0.0012596115743658549) + +[68817] +centroid = (0.72025340000090954, -1.7242774745292095) +station = ('kodx', 0.0064278780308964223) +zone = ('nez046', 0.0025311984940493766) + +[68818] +centroid = (0.7124059458983375, -1.7105252225012901) +station = ('kauh', 0.0013356118318919993) +zone = ('nez063', 0.00099807974299553036) + +[68820] +centroid = (0.71755545258988418, -1.7226646855806114) +station = ('kgri', 0.0056716186527464166) +zone = ('nez047', 0.0030592112989764131) + +[68821] +centroid = (0.73322060293128177, -1.7412729671863545) +station = ('kbbw', 0.010223227732524888) +zone = ('nez026', 0.0032067781932257726) + +[68822] +centroid = (0.72223326659778686, -1.7389015359717923) +station = ('kbbw', 0.00091506419231336515) +zone = ('nez038', 0.0012577389387812858) + +[68823] +centroid = (0.73171876456323315, -1.7298270281386057) +station = ('kodx', 0.005769039536439903) +zone = ('nez028', 0.0015733491600102947) + +[68824] +centroid = (0.71548262975704569, -1.7208547791462936) +station = ('kgri', 0.0037340314966265078) +zone = ('nez062', 0.0024683973727957806) + +[68825] +centroid = (0.72019374464707642, -1.7447718287378275) +station = ('kbbw', 0.0052879469211266836) +zone = ('nez038', 0.003901711160094331) + +[68826] +centroid = (0.71844014253442756, -1.7107088834984776) +station = ('kauh', 0.0047160046781291945) +zone = ('nez048', 0.00029891155661933251) + +[68827] +centroid = (0.71632953332328342, -1.7135896366953567) +station = ('kgri', 0.0022205362916172949) +zone = ('nez048', 0.002915996544816269) + +[68828] +centroid = (0.72517627568908472, -1.7320189173330154) +station = ('kodx', 0.0039303305247284509) +zone = ('nez039', 0.0033508427901323612) + +[68831] +centroid = (0.71748174733557257, -1.7201039908619629) +station = ('kgri', 0.0039953217242653565) +zone = ('nez047', 0.0020047924136258181) + +[68832] +centroid = (0.7114537989782046, -1.7168661083935406) +station = ('khsi', 0.0029739090707343848) +zone = ('nez062', 0.0025921773558695814) + +[68833] +centroid = (0.72999853314588248, -1.7489138615719531) +station = ('ktif', 0.0052864510075038536) +zone = ('nez026', 0.0033349918278850689) + +[68834] +centroid = (0.71613663953435303, -1.7393761608085796) +station = ('klxn', 0.0044781290578964125) +zone = ('nez060', 0.0035279691905461454) + +[68835] +centroid = (0.72137772365175179, -1.7211955372294527) +station = ('kodx', 0.0066058649648124673) +zone = ('nez047', 0.0023536297792366074) + +[68836] +centroid = (0.71052023981460533, -1.7344032465307497) +station = ('khde', 0.0045664650622863935) +zone = ('nez073', 0.0035094578220042729) + +[68837] +centroid = (0.72710055354928604, -1.7292132482005569) +station = ('kodx', 0.0018150477079916642) +zone = ('nez039', 0.002033143222820544) + +[68838] +centroid = (0.71938391187415096, -1.722132185625828) +station = ('kgri', 0.0063954615049325939) +zone = ('nez047', 0.0020196292242234486) + +[68840] +centroid = (0.71139037371318714, -1.7257386641789791) +station = ('kear', 0.0016831858426850754) +zone = ('nez061', 0.0030949637117610391) + +[68841] +centroid = (0.71137574785405533, -1.7134102343015443) +station = ('kauh', 0.0033172917955233945) +zone = ('nez063', 0.0027965738926078619) + +[68842] +centroid = (0.72549066184724642, -1.7191587030857904) +station = ('kodx', 0.005929171311553641) +zone = ('nez040', 0.00026980813593124154) + +[68843] +centroid = (0.713931311304703, -1.7085162089059045) +station = ('kauh', 0.0013820235711842453) +zone = ('nez063', 0.0018343677695488668) + +[68844] +centroid = (0.71652918153641909, -1.7289128595829961) +station = ('kear', 0.0056530031483309423) +zone = ('nez046', 0.0031029337533842105) + +[68845] +centroid = (0.71071620538301916, -1.7307502374997406) +station = ('kear', 0.002188742507500049) +zone = ('nez061', 0.0026228239957607389) + +[68846] +centroid = (0.71677619798545367, -1.7085933524588428) +station = ('kauh', 0.0033123034360373312) +zone = ('nez048', 0.0025782677588040452) + +[68847] +centroid = (0.71139672671166432, -1.7281741315237968) +station = ('kear', 0.00051781607059695194) +zone = ('nez061', 0.0018271852897203168) + +[68849] +centroid = (0.71036127522633363, -1.7297856289287483) +station = ('kear', 0.0015554262052427112) +zone = ('nez061', 0.0027328551094353117) + +[68850] +centroid = (0.71255518900267556, -1.7407875387614973) +station = ('klxn', 0.00079000931580463422) +zone = ('nez060', 0.0012977153079194025) + +[68852] +centroid = (0.7184002268544345, -1.7300510935079769) +station = ('kear', 0.007647987008042827) +zone = ('nez046', 0.0022051417999647493) + +[68853] +centroid = (0.72072120060032163, -1.7277333660744982) +station = ('kodx', 0.005653198344644182) +zone = ('nez046', 0.0013037774045647757) + +[68854] +centroid = (0.71575816488605803, -1.7104650435486812) +station = ('kauh', 0.0020278923149779963) +zone = ('nez063', 0.0023968610761394751) + +[68855] +centroid = (0.71854097020531527, -1.7335571283626754) +station = ('kbbw', 0.0061250208355143202) +zone = ('nez046', 0.0046722099977540548) + +[68856] +centroid = (0.72504001783438154, -1.7411124492550485) +station = ('kbbw', 0.0025005829440634484) +zone = ('nez038', 0.0026076236874658198) + +[68858] +centroid = (0.71498550762620006, -1.7344438079825661) +station = ('kear', 0.0064127114175766692) +zone = ('nez061', 0.0044179142295299413) + +[68859] +centroid = (0.72386687732436106, -1.7248297316111254) +station = ('kodx', 0.0029667474803695784) +zone = ('nez039', 0.0026079170176928762) + +[68860] +centroid = (0.71792251278487107, -1.7417570517076877) +station = ('kbbw', 0.0056409720427943628) +zone = ('nez060', 0.0046191786793631411) + +[68861] +centroid = (0.71039012551886915, -1.7323931682845204) +station = ('khde', 0.0045138580358077968) +zone = ('nez061', 0.0036067733205899437) + +[68862] +centroid = (0.72605620088477019, -1.7267669074544991) +station = ('kodx', 0.00034103212456648154) +zone = ('nez039', 0.00082268536010482647) + +[68863] +centroid = (0.71150617630905688, -1.7371635021960714) +station = ('klxn', 0.0032679327534216943) +zone = ('nez073', 0.0047187210841612148) + +[68864] +centroid = (0.72018620482470774, -1.7145283620335421) +station = ('kgri', 0.0052924247652595307) +zone = ('nez048', 0.0030683255317755995) + +[68865] +centroid = (0.71377943275319444, -1.7135408547427635) +station = ('kgri', 0.0021929700375164576) +zone = ('nez063', 0.0020890782845484528) + +[68866] +centroid = (0.71518262511192032, -1.7300472886902074) +station = ('kear', 0.0045580005636965577) +zone = ('nez061', 0.0022242120742643041) + +[68869] +centroid = (0.71551753634208559, -1.7258548158406992) +station = ('kear', 0.0048347308412583371) +zone = ('nez061', 0.0035199387542285423) + +[68870] +centroid = (0.71303662062354567, -1.7307921603083734) +station = ('kear', 0.0030510252593028224) +zone = ('nez061', 0.0012157996817746544) + +[68871] +centroid = (0.71804445893970803, -1.7253060145107022) +station = ('kear', 0.0073738337657046253) +zone = ('nez046', 0.0021361463982140544) + +[68872] +centroid = (0.71724056028623928, -1.7162520666561041) +station = ('kgri', 0.0022489521119911688) +zone = ('nez047', 0.0032495584274731494) + +[68873] +centroid = (0.71977561611817609, -1.7183424649545103) +station = ('kgri', 0.0051016698128120864) +zone = ('nez047', 0.0009022893005611128) + +[68874] +centroid = (0.72682706045549861, -1.7351876498564738) +station = ('kbbw', 0.0046238728941178286) +zone = ('nez027', 0.004729338599576605) + +[68875] +centroid = (0.72541350084101586, -1.7221254835615005) +station = ('kodx', 0.0037659379078068505) +zone = ('nez040', 0.0019514184366570097) + +[68876] +centroid = (0.71241605135470654, -1.7236041439570824) +station = ('kear', 0.0035595934562059881) +zone = ('nez061', 0.0042705268342058383) + +[68878] +centroid = (0.7152766459987252, -1.7369147578710773) +station = ('klxn', 0.0047799499404958699) +zone = ('nez060', 0.0044351087808697657) + +[68879] +centroid = (0.73125305835892351, -1.7367730196825226) +station = ('kbbw', 0.0082635501350110004) +zone = ('nez027', 0.00077201136949088707) + +[68881] +centroid = (0.72323700545060887, -1.7340175811259366) +station = ('kbbw', 0.0036836799941830818) +zone = ('nez046', 0.0062207752274056399) + +[68882] +centroid = (0.72326442457315765, -1.7172191710479265) +station = ('kbvn', 0.0066573525178277478) +zone = ('nez040', 0.0028141433564318587) + +[68883] +centroid = (0.71223813249075829, -1.7208474138568501) +station = ('khsi', 0.0042326680500320152) +zone = ('nez062', 0.0016835968660548616) + +[68901] +centroid = (0.70847439977200255, -1.7169210339051009) +station = ('khsi', 0.00081873173932966439) +zone = ('nez075', 0.0020814663526346417) + +[68920] +centroid = (0.70082898498364132, -1.7338085779480101) +station = ('khde', 0.0051574413243832733) +zone = ('nez083', 0.00094403354349202064) + +[68922] +centroid = (0.70398202699712431, -1.7435215097682839) +station = ('khde', 0.0077485794482657225) +zone = ('nez082', 0.0027796208428282547) + +[68923] +centroid = (0.70439930031469111, -1.7360497203339111) +station = ('khde', 0.0023948398826971352) +zone = ('nez073', 0.002747443907187105) + +[68924] +centroid = (0.7067807846257449, -1.7299528489243818) +station = ('khde', 0.0029547256479666843) +zone = ('nez074', 0.0022776828632347815) + +[68925] +centroid = (0.70561500940516775, -1.7179295026001957) +station = ('khsi', 0.0029889729170585713) +zone = ('nez075', 0.0019190675266888763) + +[68926] +centroid = (0.69996902635459879, -1.7425211044943334) +station = ('khde', 0.0090307432485585738) +zone = ('nez082', 0.0015795252372383061) + +[68927] +centroid = (0.7068579107253905, -1.7389400204817986) +station = ('khde', 0.0040850052302468373) +zone = ('nez072', 0.0026240298458014757) + +[68928] +centroid = (0.70309445725931508, -1.7210140229872455) +station = ('khsi', 0.0059718555492296503) +zone = ('nez085', 0.0023621867433971477) + +[68929] +centroid = (0.70076505357314089, -1.7287482750345331) +station = ('khde', 0.0064405486159176658) +zone = ('nez084', 0.0013712672408174411) + +[68930] +centroid = (0.703101840002051, -1.7176756619137856) +station = ('khsi', 0.0055068956575309823) +zone = ('nez085', 0.0022000175122568479) + +[68932] +centroid = (0.70363447958317471, -1.7230368246837218) +station = ('khsi', 0.0062820087621697669) +zone = ('nez085', 0.0038325406599300899) + +[68933] +centroid = (0.7071697661561368, -1.7108240577758167) +station = ('khsi', 0.0056267821142452872) +zone = ('nez076', 0.00039127749197639017) + +[68934] +centroid = (0.70404513810287639, -1.7128484302686198) +station = ('khsi', 0.006004539239560092) +zone = ('nez086', 0.0030870670614013738) + +[68935] +centroid = (0.70473529364899246, -1.7097594767452702) +station = ('khjh', 0.0063660860912864567) +zone = ('nez076', 0.0028107597022156649) + +[68936] +centroid = (0.70386416491273707, -1.7413398307499985) +station = ('khde', 0.0061981143722478838) +zone = ('nez082', 0.0032501617514074633) + +[68937] +centroid = (0.70844589854531759, -1.7432676690818738) +station = ('klxn', 0.0037578407912587648) +zone = ('nez072', 0.0014924896692547508) + +[68938] +centroid = (0.70538521935585019, -1.7124671630935218) +station = ('khsi', 0.005288086714053784) +zone = ('nez076', 0.0020911032727001931) + +[68939] +centroid = (0.69989949243719929, -1.7273334762362813) +station = ('khde', 0.0077838471290017069) +zone = ('nez084', 0.0013269864565053863) + +[68940] +centroid = (0.70768128725331125, -1.7321837462275738) +station = ('khde', 0.0020477998607183303) +zone = ('nez073', 0.0023117167677114757) + +[68941] +centroid = (0.70611152067077521, -1.7152762356180213) +station = ('khsi', 0.0032329873395668955) +zone = ('nez076', 0.0032318508549752903) + +[68942] +centroid = (0.69981770630845086, -1.7156688474332575) +station = ('khsi', 0.0089616491955515094) +zone = ('nez085', 0.0030021335552908373) + +[68943] +centroid = (0.6991329961896009, -1.7088038740732183) +station = ('khjh', 0.0045851887190293487) +zone = ('nez086', 0.0027937428525601953) + +[68944] +centroid = (0.70936465731685983, -1.7120771169122859) +station = ('khsi', 0.0045489005054291914) +zone = ('nez076', 0.0021592015229536321) + +[68945] +centroid = (0.70804911539316917, -1.7239982393021829) +station = ('kear', 0.0041181750696166978) +zone = ('nez074', 0.0024996641303197424) + +[68946] +centroid = (0.70008016892136571, -1.7450812232543287) +station = ('kmck', 0.0081187074172773162) +zone = ('nez082', 0.001496291111454868) + +[68947] +centroid = (0.70302029821939782, -1.7287078357557644) +station = ('khde', 0.0048192545221820808) +zone = ('nez084', 0.002209766857884769) + +[68948] +centroid = (0.70368643803500652, -1.7457041836242431) +station = ('klxn', 0.0088656286804298708) +zone = ('nez082', 0.0028715701802382288) + +[68949] +centroid = (0.7055880440682244, -1.7346757098802785) +station = ('khde', 0.00084658707749296982) +zone = ('nez073', 0.0015009094883177293) + +[68950] +centroid = (0.70619133457746874, -1.7221065816457013) +station = ('khsi', 0.0039533696894735485) +zone = ('nez075', 0.0024868845904335185) + +[68952] +centroid = (0.69946303795115305, -1.7219864506332865) +station = ('khsi', 0.0096358895307765615) +zone = ('nez085', 0.0027866362587845432) + +[68954] +centroid = (0.70900414210656793, -1.7145131602157571) +station = ('khsi', 0.002666436520632906) +zone = ('nez076', 0.0029756693552628723) + +[68955] +centroid = (0.70852508413348048, -1.7198419645813612) +station = ('khsi', 0.0014115995175784575) +zone = ('nez075', 0.0013400992986025248) + +[68956] +centroid = (0.70923763225389969, -1.7224832935114518) +station = ('kear', 0.0044259541172848096) +zone = ('nez075', 0.0031844088235551656) + +[68957] +centroid = (0.7029130651901554, -1.7147225299128264) +station = ('khsi', 0.0062090106319339844) +zone = ('nez086', 0.0031532008026689965) + +[68958] +centroid = (0.7071866434900036, -1.7365564766822277) +station = ('khde', 0.0024866046773931311) +zone = ('nez073', 0.0011076033884027776) + +[68959] +centroid = (0.70657909437738442, -1.7264100574356362) +station = ('kear', 0.0044917329661020994) +zone = ('nez074', 0.0005807244290528485) + +[68960] +centroid = (0.69981857897307687, -1.730254022940106) +station = ('khde', 0.0067022754837611654) +zone = ('nez084', 0.0028162056573642186) + +[68961] +centroid = (0.70177938657452232, -1.7111871560734015) +station = ('khjh', 0.0061720533082154517) +zone = ('nez086', 0.00057072582802756514) + +[68964] +centroid = (0.70228725993356023, -1.7088846479110005) +station = ('khjh', 0.0045838665560853468) +zone = ('nez086', 0.0021007172602834933) + +[68966] +centroid = (0.70092256953813337, -1.7360313943767651) +station = ('khde', 0.0053677966037615167) +zone = ('nez083', 0.00088461650906549751) + +[68967] +centroid = (0.70256544796303566, -1.7387738651370088) +station = ('khde', 0.0051658773315706209) +zone = ('nez083', 0.0032269466568488068) + +[68969] +centroid = (0.70343530260893705, -1.7328221876679533) +station = ('khde', 0.0026353835816651855) +zone = ('nez083', 0.0027476513737630043) + +[68970] +centroid = (0.70005716548182451, -1.719316288863953) +station = ('khsi', 0.0086064433557738722) +zone = ('nez085', 0.0011604855604685181) + +[68971] +centroid = (0.70006261090909072, -1.7322031717421482) +station = ('khde', 0.0060312373537511578) +zone = ('nez083', 0.0023855246872412912) + +[68972] +centroid = (0.70020611188018977, -1.7245769730288516) +station = ('khde', 0.0090426853156516506) +zone = ('nez084', 0.0021400558632230608) + +[68973] +centroid = (0.70606914407653665, -1.7202808101684826) +station = ('khsi', 0.0030768453602453998) +zone = ('nez075', 0.0014812071744326441) + +[68974] +centroid = (0.70032840710087685, -1.708112776049306) +station = ('khjh', 0.0037735687325609986) +zone = ('nez086', 0.0025524699606229544) + +[68975] +centroid = (0.70893197274199804, -1.7095258993314757) +station = ('kauh', 0.004839107226898595) +zone = ('nez076', 0.0021364962681331935) + +[68976] +centroid = (0.70843715444576505, -1.7405754288975026) +station = ('klxn', 0.0035630143783485922) +zone = ('nez072', 0.0019005477275169402) + +[68977] +centroid = (0.69935069110720216, -1.7388866657665651) +station = ('khde', 0.0077283259581848373) +zone = ('nez083', 0.0035473890199333217) + +[68978] +centroid = (0.69929513727711123, -1.7121243629751373) +station = ('khjh', 0.0069768550663787373) +zone = ('nez086', 0.0020295633008008476) + +[68979] +centroid = (0.70842350597101444, -1.707830573762551) +station = ('kauh', 0.0056360074902924657) +zone = ('nez076', 0.0028829592822386357) + +[68980] +centroid = (0.70994084286282078, -1.7147982248424853) +station = ('khsi', 0.002763817004193115) +zone = ('nez076', 0.0037479291949856293) + +[68981] +centroid = (0.7029965268349857, -1.7260634524994827) +station = ('khde', 0.0065372306795071613) +zone = ('nez084', 0.0019401239410985478) + +[68982] +centroid = (0.70393136008893886, -1.7310201003086838) +station = ('khde', 0.0028925580276356441) +zone = ('nez083', 0.004041325690661908) + +[69001] +centroid = (0.70243758514203458, -1.7565681600862069) +station = ('kmck', 0.0011475807308425809) +zone = ('nez081', 0.0025484407844078849) + +[69020] +centroid = (0.70157427548082807, -1.7505810000734581) +station = ('kmck', 0.0037653916528984006) +zone = ('nez081', 0.0023749837685457351) + +[69021] +centroid = (0.700603261551481, -1.7722133089543763) +station = ('kiml', 0.0066242753599243462) +zone = ('nez079', 0.0020587434935018137) + +[69022] +centroid = (0.70441835931012287, -1.7486341551060285) +station = ('kmck', 0.0059443966283473076) +zone = ('nez071', 0.0040244251786436328) + +[69023] +centroid = (0.70656134437889151, -1.7786182658834677) +station = ('kiml', 0.0039019808024560241) +zone = ('nez069', 0.0028707791386901474) + +[69024] +centroid = (0.70219353575272814, -1.7601130808766399) +station = ('kmck', 0.0035608143353005974) +zone = ('nez080', 0.0027814889826012499) + +[69025] +centroid = (0.708967891618004, -1.7542213554673902) +station = ('kmck', 0.0074108091204099181) +zone = ('nez071', 0.0022011731638163865) + +[69026] +centroid = (0.6989480087421821, -1.7528284780045438) +station = ('kmck', 0.0033700956591240249) +zone = ('nez081', 0.0023381866435469877) + +[69027] +centroid = (0.70558914362565328, -1.7722813767952041) +station = ('kiml', 0.0018326261148791448) +zone = ('nez069', 0.0026501046623787629) + +[69028] +centroid = (0.70928693780526852, -1.7463309837185117) +station = ('klxn', 0.0045576018609896274) +zone = ('nez072', 0.0037068882842644928) + +[69029] +centroid = (0.7105055441423036, -1.749744393949807) +station = ('klxn', 0.0064516184845653966) +zone = ('nez071', 0.003639595578385228) + +[69030] +centroid = (0.70182689443676172, -1.7788371825315457) +station = ('k2v5', 0.004573524571088736) +zone = ('nez079', 0.003154039211172945) + +[69032] +centroid = (0.70809157925387012, -1.76303394173973) +station = ('kiml', 0.0080431544379622622) +zone = ('nez070', 0.0010177073392808123) + +[69033] +centroid = (0.70789474102083028, -1.7745811447906799) +station = ('kiml', 0.0010841393564705985) +zone = ('nez069', 0.00067920515719919984) + +[69034] +centroid = (0.70251097623708092, -1.7529021832588554) +station = ('kmck', 0.0021806231501565127) +zone = ('nez081', 0.0014302657464355694) + +[69036] +centroid = (0.6989813619841877, -1.7501175627971759) +station = ('kmck', 0.0048968032440828892) +zone = ('nez081', 0.0034963881028046303) + +[69037] +centroid = (0.70136028066124101, -1.7698640608746072) +station = ('kiml', 0.0064329574748760963) +zone = ('nez080', 0.0048500249855796991) + +[69038] +centroid = (0.70842694426964092, -1.7583926225664865) +station = ('kmck', 0.0071498902303056061) +zone = ('nez070', 0.0043071882626339805) + +[69039] +centroid = (0.71021124672383218, -1.7521606103129754) +station = ('klbf', 0.0082517620812980023) +zone = ('nez071', 0.0028277975385806609) + +[69040] +centroid = (0.70424569388722313, -1.7649671905922866) +station = ('kiml', 0.0071458584198497588) +zone = ('nez070', 0.0031596979976193933) + +[69041] +centroid = (0.70112036770226194, -1.7757615633236812) +station = ('kiml', 0.0062610099397409132) +zone = ('nez079', 0.00074841183248059763) + +[69042] +centroid = (0.70645112683662814, -1.7524022162413293) +station = ('kmck', 0.0053786332961794697) +zone = ('nez071', 0.0009440256716214384) + +[69043] +centroid = (0.70037813153126627, -1.767236642218655) +station = ('kiml', 0.0083055691078409814) +zone = ('nez080', 0.0029603575917341255) + +[69044] +centroid = (0.7004031595527398, -1.7630703318546344) +station = ('kmck', 0.0059045041868887507) +zone = ('nez080', 0.00087553367915037185) + +[69045] +centroid = (0.70625432351017325, -1.7692259161402006) +station = ('kiml', 0.0034047212696639286) +zone = ('nez070', 0.0042093891579224295) + +[69046] +centroid = (0.69946525451930319, -1.7468394155829103) +station = ('kmck', 0.0069709812936112267) +zone = ('nez082', 0.0029071901515370659) + +[69101] +centroid = (0.71806152825979241, -1.7593023056259185) +station = ('klbf', 0.0018149106894101985) +zone = ('nez059', 0.0017966550847619983) + +[69120] +centroid = (0.72251414243431034, -1.7491360245324394) +station = ('kbbw', 0.0076802741092065179) +zone = ('nez037', 0.004552850244437111) + +[69121] +centroid = (0.725313982167067, -1.7749370348784537) +station = ('koga', 0.0076982705774992274) +zone = ('nez035', 0.00020029614784385449) + +[69122] +centroid = (0.71787577286750281, -1.7820232985343536) +station = ('koga', 0.0043894861380634077) +zone = ('nez056', 0.003062812842284037) + +[69123] +centroid = (0.7157851127697088, -1.7518186828592173) +station = ('klbf', 0.0042925368367305551) +zone = ('nez059', 0.0049567797477409799) + +[69125] +centroid = (0.72651930654849428, -1.7946269144749503) +station = ('kaia', 0.0073985329036250031) +zone = ('nez021', 0.0028840469834817001) + +[69127] +centroid = (0.71804669296115053, -1.7789982938747972) +station = ('koga', 0.0021386961324438864) +zone = ('nez057', 0.0036598691052934073) + +[69128] +centroid = (0.71954113113317064, -1.8139000792592408) +station = ('kibm', 0.0035244672303847381) +zone = ('nez054', 0.0028525417414863876) + +[69129] +centroid = (0.71756236409372209, -1.7873746874604783) +station = ('ksny', 0.0075561687155111367) +zone = ('nez056', 0.00098832488946853014) + +[69130] +centroid = (0.71373696889249338, -1.7445083363806542) +station = ('klxn', 0.0029353691284402413) +zone = ('nez060', 0.0018111707571238601) + +[69131] +centroid = (0.72269537742383738, -1.7972268965550613) +station = ('ksny', 0.0053666010806017348) +zone = ('nez055', 0.0032862412965587659) + +[69132] +centroid = (0.71197916053634736, -1.7620472547537001) +station = ('klbf', 0.0068239258824767425) +zone = ('nez070', 0.0048857463007384748) + +[69133] +centroid = (0.71887359505416037, -1.8057237004058377) +station = ('kibm', 0.0027114535154303932) +zone = ('nez054', 0.0033484034383452111) + +[69134] +centroid = (0.71271040113305539, -1.7693494156380716) +station = ('kiml', 0.0064072876863204113) +zone = ('nez058', 0.0036193733798382819) + +[69135] +centroid = (0.73701466947243699, -1.7489250665857508) +station = ('ktif', 0.0066045069892976113) +zone = ('nez008', 0.0050180928090164979) + +[69138] +centroid = (0.71551196874177159, -1.7484106482420181) +station = ('klxn', 0.0063656781329093446) +zone = ('nez060', 0.005195588582483022) + +[69140] +centroid = (0.71297228778731714, -1.776282264852721) +station = ('koga', 0.0047026410248214396) +zone = ('nez058', 0.0016354546212705209) + +[69141] +centroid = (0.72093482890076566, -1.7969037837506396) +station = ('ksny', 0.0036236533122741537) +zone = ('nez055', 0.001601980199630901) + +[69142] +centroid = (0.73161025744363661, -1.7509217581566174) +station = ('ktif', 0.0033148675635897473) +zone = ('nez025', 0.0030579885469253498) + +[69143] +centroid = (0.71927667884490842, -1.7635160191324233) +station = ('klbf', 0.0052023725807928854) +zone = ('nez059', 0.0048364642138013572) + +[69144] +centroid = (0.72033504650331781, -1.7721630085653339) +station = ('koga', 0.004039279266598572) +zone = ('nez057', 0.0020690931182022719) + +[69145] +centroid = (0.7198788872500167, -1.8093426231565557) +station = ('kibm', 0.0010942070960928048) +zone = ('nez054', 0.0010473395342441504) + +[69146] +centroid = (0.7210402118810012, -1.7762814270946798) +station = ('koga', 0.0033661993754775885) +zone = ('nez057', 0.002471186785808167) + +[69147] +centroid = (0.7256926488015798, -1.7817480252047291) +station = ('koga', 0.0090345017686733649) +zone = ('nez022', 0.0033219296385309533) + +[69148] +centroid = (0.72588892852925913, -1.7906774263639049) +station = ('kaia', 0.0084402740743265668) +zone = ('nez022', 0.0034676631283030012) + +[69149] +centroid = (0.71945517366750988, -1.7920542817042182) +station = ('ksny', 0.004549914249207445) +zone = ('nez055', 0.0041728936259941944) + +[69150] +centroid = (0.71292685686688784, -1.7722606597369832) +station = ('koga', 0.0056030083938932163) +zone = ('nez058', 0.0014077275531529877) + +[69151] +centroid = (0.71715933266285159, -1.7539730300214165) +station = ('klbf', 0.0023011841931217412) +zone = ('nez059', 0.0033711439320053289) + +[69152] +centroid = (0.73521928417749549, -1.7653449322022958) +station = ('ktif', 0.0080128766453045237) +zone = ('nez024', 0.003651873118147189) + +[69153] +centroid = (0.71735407650078908, -1.7745755946436583) +station = ('koga', 0.0012667496183157315) +zone = ('nez057', 0.0017111170449493809) + +[69154] +centroid = (0.72309989238457206, -1.7863754690104192) +station = ('ksny', 0.010096295538000418) +zone = ('nez022', 0.0033026087685012304) + +[69155] +centroid = (0.71889017568205438, -1.7696967361592184) +station = ('koga', 0.0050467859536338687) +zone = ('nez057', 0.0034861264701801036) + +[69156] +centroid = (0.72100914502031554, -1.8034819122481136) +station = ('kibm', 0.0049240562242668859) +zone = ('nez054', 0.0054002821464752219) + +[69157] +centroid = (0.73408822355574055, -1.7478468021738687) +station = ('ktif', 0.0057674208672426454) +zone = ('nez026', 0.003365654847871585) + +[69161] +centroid = (0.73576983083674463, -1.758965596706624) +station = ('ktif', 0.0043712122212895927) +zone = ('nez025', 0.0051510836418441428) + +[69162] +centroid = (0.71783402459179502, -1.7980502207231046) +station = ('ksny', 0.00070355737753280705) +zone = ('nez055', 0.0016226849325331886) + +[69163] +centroid = (0.72552706941544309, -1.7547826882614166) +station = ('ktif', 0.0068562026956685224) +zone = ('nez037', 0.00077030920785219515) + +[69165] +centroid = (0.72029242556298423, -1.7664455368286034) +station = ('klbf', 0.0076178736032491362) +zone = ('nez036', 0.005562650975727914) + +[69166] +centroid = (0.73353003235436776, -1.755950557877096) +station = ('ktif', 0.001265285180919433) +zone = ('nez025', 0.0021152945498829714) + +[69167] +centroid = (0.72599120482342594, -1.7628878053214605) +station = ('ktif', 0.0085505199063873796) +zone = ('nez036', 0.0008641419102934911) + +[69168] +centroid = (0.71207681170799653, -1.780000619010925) +station = ('kheq', 0.0055228570853345215) +zone = ('nez058', 0.0045410450320882223) + +[69169] +centroid = (0.71247729495815904, -1.7655901858687859) +station = ('kiml', 0.0080495886846165612) +zone = ('nez070', 0.0053493316011895943) + +[69170] +centroid = (0.71202499288250476, -1.7583198423366784) +station = ('klbf', 0.0056890158919122693) +zone = ('nez059', 0.0043942836336815947) + +[69171] +centroid = (0.71366589908535227, -1.7465633917617074) +station = ('klxn', 0.004242499699954291) +zone = ('nez060', 0.0033336021911709907) + +[69201] +centroid = (0.7456679420906549, -1.7557382560268835) +station = ('kvtn', 0.0025662559970912476) +zone = ('nez005', 0.0031122562739967063) + +[69210] +centroid = (0.73913629171116135, -1.7439884202497773) +station = ('kanw', 0.0042011737684608417) +zone = ('nez008', 0.0014092696761642644) + +[69211] +centroid = (0.74756349183136839, -1.7680772800528779) +station = ('kvtn', 0.0096585752320561893) +zone = ('nez094', 0.0054380393790409952) + +[69212] +centroid = (0.74932098602824904, -1.7593169489383427) +station = ('kvtn', 0.0034163947517849534) +zone = ('sdz047', 0.0046677357654216073) + +[69214] +centroid = (0.74348493662213788, -1.747068682033452) +station = ('kanw', 0.0013078216246553143) +zone = ('nez008', 0.003666890183808951) + +[69216] +centroid = (0.75010428979654409, -1.7624961883438981) +station = ('kvtn', 0.0058713059930533256) +zone = ('sdz047', 0.0050581611988917748) + +[69217] +centroid = (0.74290300894293804, -1.7395171659588482) +station = ('kanw', 0.0042916993545663012) +zone = ('nez009', 0.0037558795135916602) + +[69218] +centroid = (0.74681326205239862, -1.7745606371719689) +station = ('kien', 0.011573581555112216) +zone = ('nez094', 0.0052963756809485891) + +[69219] +centroid = (0.74352089040472902, -1.7661410292340078) +station = ('kvtn', 0.009454602163342235) +zone = ('nez094', 0.0034029683005491456) + +[69220] +centroid = (0.74814592565605131, -1.7476044108473519) +station = ('kanw', 0.0052023492892827204) +zone = ('nez005', 0.0072307629265880849) + +[69221] +centroid = (0.74320468910414528, -1.750581698205159) +station = ('kanw', 0.0038673963097612266) +zone = ('nez005', 0.0026912738622491086) + +[69301] +centroid = (0.73518442995233324, -1.7956170746661919) +station = ('kaia', 0.0016523088500857864) +zone = ('nez003', 0.0031382165846415015) + +[69331] +centroid = (0.73152742411733707, -1.7973859135032104) +station = ('kaia', 0.0033608479570148009) +zone = ('nez021', 0.0034648956158873519) + +[69333] +centroid = (0.73401940522333442, -1.7797887185864403) +station = ('kaia', 0.010700099387350776) +zone = ('nez023', 0.0039090808195705977) + +[69334] +centroid = (0.72992824873690465, -1.8027533769117461) +station = ('kbff', 0.0041039195304244016) +zone = ('nez021', 0.0040820287466292503) + +[69335] +centroid = (0.73432628646571263, -1.782073825816199) +station = ('kaia', 0.0090111492200788262) +zone = ('nez023', 0.005483989331445031) + +[69336] +centroid = (0.72655485890535754, -1.8006103045765149) +station = ('kbff', 0.0070008265251920087) +zone = ('nez021', 0.0025521116896323939) + +[69337] +centroid = (0.7474752130778024, -1.7979142595743742) +station = ('kcdr', 0.0011200391445952988) +zone = ('nez002', 0.0024457469757650859) + +[69339] +centroid = (0.74363121266674759, -1.8049086490984489) +station = ('kcdr', 0.0056381436833157252) +zone = ('nez002', 0.0040775743545943283) + +[69340] +centroid = (0.73678847480137855, -1.7838636958707039) +station = ('kaia', 0.0081865860860694251) +zone = ('nez004', 0.0056863801272679596) + +[69341] +centroid = (0.72816454116788676, -1.8087375524114739) +station = ('kbff', 0.0025826482467260162) +zone = ('nez019', 0.0024673294546705064) + +[69343] +centroid = (0.74535165352360844, -1.7806620813441383) +station = ('kien', 0.0085079170071411924) +zone = ('nez004', 0.006056230157212762) + +[69345] +centroid = (0.72587514042816836, -1.8106851478704822) +station = ('kbff', 0.0051899581757484997) +zone = ('nez020', 0.00088217019446062365) + +[69346] +centroid = (0.74475874772341344, -1.8113470465360082) +station = ('ktor', 0.011837715991183394) +zone = ('nez095', 0.00075708731032972474) + +[69347] +centroid = (0.74362929280457035, -1.7921865078483494) +station = ('kcdr', 0.0066320279557937024) +zone = ('nez004', 0.0039668820530971002) + +[69348] +centroid = (0.73784722643222345, -1.8038052344920454) +station = ('kbff', 0.007834412716217886) +zone = ('nez003', 0.0035558273491640919) + +[69350] +centroid = (0.73238239110471892, -1.7761036304037794) +station = ('koga', 0.014708035802007862) +zone = ('nez023', 0.00087872375458425433) + +[69351] +centroid = (0.73371472309581376, -1.7875742658604441) +station = ('kaia', 0.0049232172326151387) +zone = ('nez022', 0.007402285379453425) + +[69352] +centroid = (0.72961719615761422, -1.814680747580365) +station = ('ktor', 0.0048668455031072111) +zone = ('nez019', 0.003548107604063354) + +[69353] +centroid = (0.72862658218076726, -1.8049585829683485) +station = ('kbff', 0.0031692268048955055) +zone = ('nez019', 0.0041999155091071499) + +[69354] +centroid = (0.73948193671622631, -1.8082245128778505) +station = ('kbff', 0.0087708826550396603) +zone = ('nez096', 0.0032343735061018783) + +[69355] +centroid = (0.72925593045574399, -1.8065240734942172) +station = ('kbff', 0.0018989173537599935) +zone = ('nez019', 0.0028757836154615201) + +[69356] +centroid = (0.73132068986743826, -1.8055595172831027) +station = ('kbff', 0.0020305117498561789) +zone = ('nez019', 0.0034571383191643146) + +[69357] +centroid = (0.734966804847902, -1.8111012518174499) +station = ('kbff', 0.0047839373044304143) +zone = ('nez096', 0.0018581322931147193) + +[69358] +centroid = (0.73417856179782393, -1.8145915088957107) +station = ('ktor', 0.0023679913240482915) +zone = ('nez096', 0.0039176032748229504) + +[69360] +centroid = (0.7451961446872557, -1.788388985555275) +station = ('kien', 0.0059112597536213878) +zone = ('nez004', 0.0034297611881454987) + +[69361] +centroid = (0.73169155488019455, -1.8085608552780024) +station = ('kbff', 0.0010245381292718974) +zone = ('nez019', 0.0016769416651708472) + +[69365] +centroid = (0.75021391392686188, -1.7889726585637271) +station = ('kien', 0.00088361466842484782) +zone = ('sdz042', 0.0061692750871791052) + +[69366] +centroid = (0.73582082935748794, -1.772377841142962) +station = ('ktif', 0.013169168904074055) +zone = ('nez023', 0.0049307224234366636) + +[69367] +centroid = (0.74720723522445132, -1.8034557846692112) +station = ('kcdr', 0.0029732905307676993) +zone = ('nez002', 0.0029712189456236504) + +[70001] +centroid = (0.52331470580924422, -1.5737141507850883) +station = ('kmsy', 0.001283765311046827) +zone = ('laz061', 0.0028724249963388384) + +[70002] +centroid = (0.52381210719277016, -1.5736328882551152) +station = ('kmsy', 0.0013392332986214414) +zone = ('laz061', 0.0033588316353704187) + +[70003] +centroid = (0.52361909123079209, -1.5744567011153492) +station = ('kmsy', 0.00060910684244057606) +zone = ('laz060', 0.003095777079645385) + +[70005] +centroid = (0.52358858287546717, -1.5731362024565829) +station = ('knew', 0.0017596780213052379) +zone = ('laz061', 0.0031232358770653338) + +[70006] +centroid = (0.52384368019893868, -1.5741359270521251) +station = ('kmsy', 0.00091971380490366397) +zone = ('laz060', 0.0034526806587753273) + +[70030] +centroid = (0.52044445949446205, -1.5783563949828352) +station = ('kmsy', 0.0041985741887589816) +zone = ('laz060', 0.0015454863933874305) + +[70031] +centroid = (0.52258505346215556, -1.5760146169122644) +station = ('kmsy', 0.0012554599345767964) +zone = ('laz060', 0.0014049338326078816) + +[70032] +centroid = (0.52287624419455825, -1.5707522921378689) +station = ('knew', 0.0016847416449671596) +zone = ('laz062', 0.001989487734916398) + +[70036] +centroid = (0.51860769244295568, -1.5729168320228994) +station = ('knbg', 0.0026187034920513801) +zone = ('laz061', 0.0018857250020464322) + +[70037] +centroid = (0.52043948530609385, -1.5713296819610134) +station = ('knbg', 0.00032703385656534454) +zone = ('laz063', 0.0010607796357331365) + +[70038] +centroid = (0.5122405917053402, -1.5609954303803224) +station = ('kbve', 0.00064740563851133429) +zone = ('laz069', 0.0041167728214543623) + +[70039] +centroid = (0.52162191096773503, -1.5775889038975632) +station = ('kmsy', 0.0028877318335314979) +zone = ('laz060', 0.00040001587232992383) + +[70040] +centroid = (0.51914263585869203, -1.5697193888332459) +station = ('knbg', 0.001950172030596088) +zone = ('laz063', 0.0008528678955254267) + +[70041] +centroid = (0.51211143734069264, -1.5619522024229733) +station = ('kbve', 0.0014267926740691704) +zone = ('laz069', 0.0035228773373146014) + +[70043] +centroid = (0.52269843005036509, -1.5701449350114671) +station = ('knew', 0.0020698092977420343) +zone = ('laz064', 0.0014768643616453303) + +[70047] +centroid = (0.5230567985056771, -1.5772070782171046) +station = ('kmsy', 0.001854371680025215) +zone = ('laz060', 0.0014910114682103975) + +[70049] +centroid = (0.52408903858518407, -1.5807586138054026) +station = ('kmsy', 0.0048728824114763324) +zone = ('laz058', 0.00096633578817003642) + +[70050] +centroid = (0.51276935665552448, -1.5636430599490128) +station = ('kbve', 0.0030027677994898206) +zone = ('laz069', 0.0020359405441404367) + +[70051] +centroid = (0.52510237674889193, -1.5820991313906896) +station = ('kmsy', 0.0061924713621536124) +zone = ('laz058', 0.0015362237145933699) + +[70052] +centroid = (0.52455991096407961, -1.582926626895645) +station = ('kmsy', 0.0067928677379066179) +zone = ('laz057', 0.0016091291188820732) + +[70053] +centroid = (0.52208768698521468, -1.5717248594102502) +station = ('knbg', 0.0015031787865730452) +zone = ('laz061', 0.0021049503712890077) + +[70056] +centroid = (0.52165540383608078, -1.5713027166240703) +station = ('knbg', 0.00098343191521989498) +zone = ('laz063', 0.0020417378276174143) + +[70057] +centroid = (0.52299361758675489, -1.5789537513726228) +station = ('kmsy', 0.0033416146019240125) +zone = ('laz060', 0.002127874781220476) + +[70058] +centroid = (0.52131002063040355, -1.5719286091471278) +station = ('knbg', 0.00095765683410628728) +zone = ('laz061', 0.0014397168154113489) + +[70062] +centroid = (0.5234540878033086, -1.5753004107290558) +station = ('kmsy', 0.00018919831465740949) +zone = ('laz060', 0.0024655920016067199) + +[70065] +centroid = (0.52407511085775316, -1.5752198637840762) +station = ('kmsy', 0.00047918035519495743) +zone = ('laz060', 0.0030056354020633123) + +[70067] +centroid = (0.5185526796649329, -1.5724855437114393) +station = ('knbg', 0.0024578230242835288) +zone = ('laz061', 0.0020338138616830029) + +[70068] +centroid = (0.52632246661579107, -1.5784189650365192) +station = ('kmsy', 0.0039208791981994217) +zone = ('laz058', 0.0021283582441467856) + +[70070] +centroid = (0.52062899315627542, -1.5762178081437814) +station = ('kmsy', 0.0031081858466832815) +zone = ('laz060', 0.0012282900626578901) + +[70071] +centroid = (0.52449807394868142, -1.583113324765731) +station = ('kmsy', 0.006944763167273417) +zone = ('laz057', 0.0014363318860255493) + +[70072] +centroid = (0.5207587060262836, -1.5727589320854716) +station = ('knbg', 0.0014517778212867517) +zone = ('laz061', 0.00053376527806150336) + +[70075] +centroid = (0.52243490278660643, -1.5694219847287061) +station = ('knbg', 0.0022648807160260227) +zone = ('laz064', 0.0007979301054821937) + +[70076] +centroid = (0.52467353189838439, -1.5821243863049659) +station = ('kmsy', 0.0061247971657879116) +zone = ('laz058', 0.0015836233624383007) + +[70079] +centroid = (0.52365836113896191, -1.5779558419195026) +station = ('kmsy', 0.0024222644354420998) +zone = ('laz060', 0.0022096780601161877) + +[70080] +centroid = (0.52157415875940039, -1.5783658023075036) +station = ('kmsy', 0.003437678401756991) +zone = ('laz060', 0.0010698866064322622) + +[70082] +centroid = (0.51581897045753411, -1.5661804719754395) +station = ('kaxo', 0.0063678326491244048) +zone = ('laz069', 0.0017299000388043078) + +[70083] +centroid = (0.51422782359166097, -1.56895942011705) +station = ('kaxo', 0.0038765735618374311) +zone = ('laz068', 0.0025725137666841378) + +[70084] +centroid = (0.52491834923256175, -1.5806862699079076) +station = ('kmsy', 0.0049630072211025705) +zone = ('laz058', 0.00031519521000691349) + +[70085] +centroid = (0.52074877510283979, -1.566213807764153) +station = ('knbg', 0.0042279023135556332) +zone = ('laz064', 0.0024585065476197842) + +[70086] +centroid = (0.52424137092229817, -1.5859227812626659) +station = ('k7r3', 0.0068576608268218374) +zone = ('laz057', 0.0010807016162947263) + +[70087] +centroid = (0.52318036781671828, -1.5762943757380665) +station = ('kmsy', 0.0010681761442109629) +zone = ('laz060', 0.0017689160126198673) + +[70090] +centroid = (0.52306213921318812, -1.5830334584991597) +station = ('kmsy', 0.0068410500991252995) +zone = ('laz057', 0.0017481662033044766) + +[70091] +centroid = (0.50822336736602491, -1.5580749883962528) +station = ('kdlp', 0.0042099683524868337) +zone = ('laz069', 0.0086577983656723131) + +[70092] +centroid = (0.52183494585623336, -1.5689683038429427) +station = ('knbg', 0.0021650760481787606) +zone = ('laz064', 0.00040459276259842988) + +[70094] +centroid = (0.5221288243956842, -1.5744197175884995) +station = ('kmsy', 0.0016036613177918568) +zone = ('laz061', 0.0019353038140643851) + +[70112] +centroid = (0.52284842364628148, -1.572139113308211) +station = ('knew', 0.001751714650655898) +zone = ('laz061', 0.0025763116901291066) + +[70113] +centroid = (0.52260432189709749, -1.5722462416176983) +station = ('knew', 0.0020128135712284604) +zone = ('laz061', 0.0023152793923842808) + +[70114] +centroid = (0.52250698488471381, -1.5713604521157261) +station = ('knbg', 0.0018324693998540602) +zone = ('laz064', 0.0024325442050578978) + +[70115] +centroid = (0.52227176686142252, -1.572572984706964) +station = ('knbg', 0.0020400981058059683) +zone = ('laz061', 0.0019039606878515913) + +[70116] +centroid = (0.52303049639384946, -1.5719270034442161) +station = ('knew', 0.0015173160273301586) +zone = ('laz062', 0.0027337293646732866) + +[70117] +centroid = (0.52304301040458634, -1.5713192623453791) +station = ('knew', 0.0014293382943079292) +zone = ('laz062', 0.0022704611412393198) + +[70118] +centroid = (0.52263407976084408, -1.5729895249862451) +station = ('kmsy', 0.0021129802550832778) +zone = ('laz061', 0.0021804888822459538) + +[70119] +centroid = (0.52316483438637551, -1.5723137858597507) +station = ('knew', 0.0015374260264001786) +zone = ('laz061', 0.0028228901776882562) + +[70121] +centroid = (0.52289650746717387, -1.5736466938094986) +station = ('kmsy', 0.0014868266188706612) +zone = ('laz061', 0.0024501717796275102) + +[70122] +centroid = (0.52383329548988933, -1.571892358658564) +station = ('knew', 0.00077810401419716553) +zone = ('laz062', 0.0024450936760841572) + +[70123] +centroid = (0.52272042119894024, -1.5743882318487934) +station = ('kmsy', 0.0011036516890463772) +zone = ('laz061', 0.002450934458805338) + +[70124] +centroid = (0.52372756344380356, -1.5726100555002767) +station = ('knew', 0.0013003745700336776) +zone = ('laz062', 0.0030754646330872519) + +[70125] +centroid = (0.52276227419440302, -1.5725994788050095) +station = ('knew', 0.0020099859034922894) +zone = ('laz061', 0.0023681209209291654) + +[70126] +centroid = (0.52391642552216189, -1.5711580288290798) +station = ('knew', 0.00058680567171086394) +zone = ('laz062', 0.001804938169987031) + +[70127] +centroid = (0.52401308185613726, -1.5703914802216039) +station = ('knew', 0.00096933914639531259) +zone = ('laz062', 0.0011357406468969547) + +[70128] +centroid = (0.52448620570976789, -1.5700290626024274) +station = ('knew', 0.0011678027041147107) +zone = ('laz062', 0.00082103830979385957) + +[70129] +centroid = (0.52500989175182877, -1.5675389489987295) +station = ('knew', 0.0033659574757254566) +zone = ('laz062', 0.0015505842176648556) + +[70130] +centroid = (0.52250537918180195, -1.5720119137123256) +station = ('knbg', 0.0019846331601950941) +zone = ('laz061', 0.0023132647680441983) + +[70131] +centroid = (0.52196361152869042, -1.5700692749883933) +station = ('knbg', 0.0015496918876982311) +zone = ('laz064', 0.0012813309036948874) + +[70139] +centroid = (0.52273098044091471, -1.5720355454703976) +station = ('knew', 0.0018312214288667974) +zone = ('laz061', 0.002505377131566486) + +[70163] +centroid = (0.52272712326326787, -1.5721130206358935) +station = ('knew', 0.0018568034167880637) +zone = ('laz061', 0.0024737920140019314) + +[70301] +centroid = (0.52025346811441631, -1.5838909562139567) +station = ('khum', 0.0044041423374938486) +zone = ('laz059', 0.003084029180709027) + +[70339] +centroid = (0.52201925262524407, -1.5914412505580844) +station = ('k7r3', 0.0038658419972184208) +zone = ('laz055', 0.0017216240960381782) + +[70340] +centroid = (0.5178353318890706, -1.5900883934949861) +station = ('k7r3', 0.00053366675428467966) +zone = ('laz055', 0.0039730675138022658) + +[70341] +centroid = (0.5241663566710475, -1.5894270184282353) +station = ('k7r3', 0.0058244286768804445) +zone = ('laz056', 0.0023036106852339483) + +[70342] +centroid = (0.51824318042867668, -1.5924094370540431) +station = ('kptn', 0.0014974378420218586) +zone = ('laz055', 0.0027222163170186526) + +[70343] +centroid = (0.51571452995509481, -1.5805187008464237) +station = ('khum', 0.0016948835609548105) +zone = ('laz059', 0.0030932731845780847) + +[70344] +centroid = (0.50923260400599057, -1.5797857323737561) +station = ('k9f2', 0.0049867646937426643) +zone = ('laz067', 0.0052623615064096687) + +[70345] +centroid = (0.51571714794897283, -1.5753170786234125) +station = ('kgao', 0.0018100766010372619) +zone = ('laz067', 0.0030470758829970663) + +[70346] +centroid = (0.52628162591129446, -1.5883054698509038) +station = ('kbtr', 0.0069847980044250727) +zone = ('laz049', 0.0016363159258258825) + +[70352] +centroid = (0.51809053393229731, -1.5872051793838613) +station = ('k7r3', 0.0024387139881715332) +zone = ('laz065', 0.0017361779099686417) + +[70353] +centroid = (0.51239625762132557, -1.5830156910473743) +station = ('khum', 0.0036747535145077604) +zone = ('laz066', 0.0024875185949398285) + +[70354] +centroid = (0.51377211812396528, -1.575713704695928) +station = ('kgao', 0.00034153680620556848) +zone = ('laz067', 0.0011822058522038949) + +[70355] +centroid = (0.51866298447365888, -1.578981048322124) +station = ('khum', 0.0039872258672177105) +zone = ('laz059', 0.0015484050522457699) + +[70356] +centroid = (0.51716838922200603, -1.5877413619833665) +station = ('k7r3', 0.0022937185787333708) +zone = ('laz065', 0.0020154355534365296) + +[70357] +centroid = (0.51037394461703978, -1.5746272895964391) +station = ('kxpy', 0.00232764175423537) +zone = ('laz067', 0.0023545527122375309) + +[70358] +centroid = (0.50992438270831109, -1.5712421362457334) +station = ('kaxo', 0.001070346592764971) +zone = ('laz067', 0.0044242699204283557) + +[70359] +centroid = (0.51825838224646159, -1.5843490702360203) +station = ('khum', 0.0027780638871204807) +zone = ('laz065', 0.0013416572831494407) + +[70360] +centroid = (0.51624519731416363, -1.5848532434970439) +station = ('khum', 0.0021163514059746014) +zone = ('laz065', 0.0011652828202629475) + +[70363] +centroid = (0.51554038100233079, -1.583094737009197) +station = ('khum', 0.00076015873677590898) +zone = ('laz065', 0.0026841123592676553) + +[70364] +centroid = (0.51710004212849792, -1.5826960339948715) +station = ('khum', 0.0010888655411292905) +zone = ('laz059', 0.0023940031727404565) + +[70372] +centroid = (0.51981085261611049, -1.5880570920450523) +station = ('k7r3', 0.0022199080070477392) +zone = ('laz056', 0.0023361590319635772) + +[70373] +centroid = (0.51658174915382582, -1.576357870816254) +station = ('kgao', 0.0028135614462866197) +zone = ('laz067', 0.00403418668047724) + +[70374] +centroid = (0.5166610394617438, -1.5795525563856896) +station = ('khum', 0.0025808287596768855) +zone = ('laz059', 0.0023820307845181798) + +[70375] +centroid = (0.51821464429540653, -1.5801062795441774) +station = ('khum', 0.0029722559026077009) +zone = ('laz059', 0.00081425841839323672) + +[70377] +centroid = (0.51220673231785152, -1.5795691893734609) +station = ('kgao', 0.004047453964028459) +zone = ('laz067', 0.003819772189803733) + +[70380] +centroid = (0.51891471331167405, -1.5905900185753017) +station = ('k7r3', 0.000756121444538786) +zone = ('laz055', 0.0028802494025465812) + +[70390] +centroid = (0.52180599084394275, -1.5887917360338017) +station = ('k7r3', 0.0035980317217129349) +zone = ('laz056', 0.0004806996166482391) + +[70391] +centroid = (0.52343858927955089, -1.5893107795000525) +station = ('k7r3', 0.0051103733950744433) +zone = ('laz056', 0.0015749062367396247) + +[70392] +centroid = (0.51890806360722397, -1.5938053688430807) +station = ('kptn', 0.00034130254443258862) +zone = ('laz054', 0.0018169630151558978) + +[70393] +centroid = (0.52344794424434149, -1.5883765396580449) +station = ('k7r3', 0.0052753523728674241) +zone = ('laz056', 0.0017914427438150548) + +[70394] +centroid = (0.51823576277935568, -1.5815477993332772) +station = ('khum', 0.0023304244780379506) +zone = ('laz059', 0.00088949510749964267) + +[70395] +centroid = (0.51831803760029471, -1.5858363525581072) +station = ('k7r3', 0.0036126101870004221) +zone = ('laz065', 0.0010800237064216233) + +[70397] +centroid = (0.5130194623373352, -1.5846314121491156) +station = ('khum', 0.0035726629623315793) +zone = ('laz066', 0.0011282984159326521) + +[70401] +centroid = (0.53291162559413785, -1.5787442245959209) +station = ('khdc', 0.00061146049306712866) +zone = ('laz072', 0.0010788567629418796) + +[70402] +centroid = (0.53260748451868534, -1.5790016257540049) +station = ('khdc', 0.00079548919917920538) +zone = ('laz072', 0.0011950038103784334) + +[70403] +centroid = (0.53206774144750613, -1.5793125038003704) +station = ('khdc', 0.0012280352847906927) +zone = ('laz072', 0.0014883125197401037) + +[70420] +centroid = (0.53205815958991265, -1.5699765107386499) +station = ('kasd', 0.0031206076016920439) +zone = ('laz040', 0.00066752278671695594) + +[70422] +centroid = (0.53641755572908145, -1.5791632257894472) +station = ('khdc', 0.0038426280772784626) +zone = ('laz071', 0.0017372766827750035) + +[70426] +centroid = (0.53987538458984008, -1.5683601089585004) +station = ('kmcb', 0.010065456295728003) +zone = ('laz039', 0.0030305958543748947) + +[70427] +centroid = (0.5365874809850556, -1.5692618158632508) +station = ('kasd', 0.0070279351446672104) +zone = ('laz039', 0.0027091049153302672) + +[70431] +centroid = (0.53436270978753841, -1.5702271574725286) +station = ('kasd', 0.0051779216870115139) +zone = ('laz040', 0.002971568187658953) + +[70433] +centroid = (0.53160739340400009, -1.5735294251370571) +station = ('khdc', 0.0040703143689521295) +zone = ('laz040', 0.0032626740840957414) + +[70435] +centroid = (0.53347665848617853, -1.5726013986671867) +station = ('khdc', 0.0047863128931136317) +zone = ('laz040', 0.003203596380784221) + +[70436] +centroid = (0.53744794575958132, -1.5799017269558433) +station = ('khdc', 0.0050094708828803463) +zone = ('laz071', 0.0013885534379582233) + +[70437] +centroid = (0.53441276583048569, -1.5744482188151845) +station = ('khdc', 0.0035729361385925381) +zone = ('laz072', 0.0033930399698463955) + +[70438] +centroid = (0.53836817060769537, -1.5727392447715092) +station = ('khdc', 0.0073056724473696474) +zone = ('laz039', 0.0010685404140128518) + +[70441] +centroid = (0.53860803120679701, -1.5838699948096404) +station = ('kmcb', 0.00704934882813219) +zone = ('laz037', 0.00088123281563847063) + +[70442] +centroid = (0.53569635077557232, -1.5766262151887482) +station = ('khdc', 0.0032582520265073624) +zone = ('laz071', 0.0028138725462604603) + +[70443] +centroid = (0.53464100253676894, -1.5801264904569152) +station = ('khdc', 0.0026277808203832992) +zone = ('laz072', 0.0030931808885628479) + +[70444] +centroid = (0.53925507712038878, -1.5793373921955036) +station = ('kmcb', 0.0050082789284705224) +zone = ('laz071', 0.0014393996472474109) + +[70445] +centroid = (0.53013747710797043, -1.5692401912338183) +station = ('kasd', 0.0014819733282078825) +zone = ('laz040', 0.0013556542980766616) + +[70446] +centroid = (0.53459733439888402, -1.5768998653621684) +station = ('khdc', 0.0021631829156856116) +zone = ('laz072', 0.0022722885009138628) + +[70447] +centroid = (0.53096188338014993, -1.574264016765929) +station = ('khdc', 0.0037171958415821355) +zone = ('laz072', 0.0032467610657919881) + +[70448] +centroid = (0.52992000908317194, -1.5714848766381009) +station = ('kasd', 0.0033619632805172908) +zone = ('laz040', 0.00211786335510784) + +[70449] +centroid = (0.52838048905657276, -1.5824927729501843) +station = ('khdc', 0.0057471986101874113) +zone = ('laz050', 0.0032554984369999487) + +[70450] +centroid = (0.53981635755453772, -1.5754415555056647) +station = ('kmcb', 0.0053536436046323008) +zone = ('laz071', 0.003126578730532847) + +[70451] +centroid = (0.53317051028208617, -1.5791892835551793) +station = ('khdc', 0.0010675441940293465) +zone = ('laz072', 0.0015392481557226568) + +[70452] +centroid = (0.53094402866190205, -1.5672919150964022) +station = ('kasd', 0.0012642164646260187) +zone = ('laz040', 0.0021728195080617839) + +[70453] +centroid = (0.53582810568080541, -1.584146140803891) +station = ('khdc', 0.0060895691468487428) +zone = ('laz037', 0.0022700483862843736) + +[70454] +centroid = (0.52993163297599022, -1.5770549727727932) +station = ('khdc', 0.0028963609298307651) +zone = ('laz072', 0.0025322907874089926) + +[70455] +centroid = (0.53276131783895608, -1.5764446136800783) +station = ('khdc', 0.0014132645421494104) +zone = ('laz072', 0.0010807816873536103) + +[70456] +centroid = (0.53741769920364424, -1.5796263489064637) +station = ('khdc', 0.0049114939247653531) +zone = ('laz071', 0.0011943782010251089) + +[70458] +centroid = (0.52817344064740868, -1.5671757634346821) +station = ('kasd', 0.0015764185875819234) +zone = ('laz040', 0.0039338523364587799) + +[70460] +centroid = (0.52879910627766358, -1.5680158078569595) +station = ('kasd', 0.00097775944797973851) +zone = ('laz040', 0.0030179079914687212) + +[70461] +centroid = (0.52763184752722236, -1.5658558756411538) +station = ('kasd', 0.0025626480431143197) +zone = ('laz062', 0.0043859041117964188) + +[70462] +centroid = (0.53016613541428814, -1.5809325533186565) +station = ('khdc', 0.0035212700381377247) +zone = ('laz050', 0.0027168213205869944) + +[70463] +centroid = (0.53508721341333376, -1.5691184894250769) +station = ('kasd', 0.0055372876373702209) +zone = ('laz040', 0.0037078279443249875) + +[70464] +centroid = (0.53321894316882901, -1.5693827497271213) +station = ('kasd', 0.0038342888542067465) +zone = ('laz040', 0.0018270902138601906) + +[70465] +centroid = (0.53854331439813297, -1.5799406303448704) +station = ('kmcb', 0.0057724207534613839) +zone = ('laz071', 0.0013840749928451675) + +[70466] +centroid = (0.53352470740048585, -1.5795362550104759) +station = ('khdc', 0.0015048807341447703) +zone = ('laz072', 0.0019800390604847195) + +[70471] +centroid = (0.53073232022363515, -1.5718723571853361) +station = ('kasd', 0.0038284487631088495) +zone = ('laz040', 0.0019541225931648293) + +[70501] +centroid = (0.52781741093329437, -1.6055466001469747) +station = ('klft', 0.00074040092402770992) +zone = ('laz044', 0.0012606126542797458) + +[70503] +centroid = (0.52646022545365101, -1.6066772244364165) +station = ('klft', 0.0010513093864504457) +zone = ('laz044', 0.00074913888353160475) + +[70506] +centroid = (0.52701044050034229, -1.6071217248903145) +station = ('klft', 0.0012288141908931491) +zone = ('laz044', 0.00032330697501161581) + +[70507] +centroid = (0.52845532877489831, -1.6061907662673007) +station = ('klft', 0.0014294430215877243) +zone = ('laz044', 0.001367907470005538) + +[70508] +centroid = (0.52630820727580241, -1.6061955310161586) +station = ('klft', 0.00088975721754137329) +zone = ('laz044', 0.0010411106300469372) + +[70510] +centroid = (0.52175940800620701, -1.6090744167107383) +station = ('k7r4', 0.0021430788634120412) +zone = ('laz052', 0.0019986063372744558) + +[70512] +centroid = (0.53086487798032411, -1.6042823359967073) +station = ('klft', 0.0039696436787419109) +zone = ('laz033', 0.0034458598981577339) + +[70513] +centroid = (0.52185290529423645, -1.6040143232367712) +station = ('kara', 0.0023470480270703308) +zone = ('laz053', 0.0026128177091625259) + +[70514] +centroid = (0.52091993954258287, -1.5978281258761249) +station = ('kptn', 0.0039736523106683706) +zone = ('laz054', 0.0028898259991474605) + +[70515] +centroid = (0.53149581450492001, -1.6157864294151327) +station = ('k3r7', 0.0039349681640722363) +zone = ('laz043', 0.0037696327925963689) + +[70516] +centroid = (0.52996877358247263, -1.6110125350319078) +station = ('klft', 0.0054142324248089022) +zone = ('laz043', 0.0020787965119282944) + +[70517] +centroid = (0.5288041502792018, -1.6027981603606889) +station = ('klft', 0.0030391745859885042) +zone = ('laz045', 0.0020223822690667724) + +[70518] +centroid = (0.52595158414974241, -1.6044366405558763) +station = ('klft', 0.0015789934839389285) +zone = ('laz044', 0.0024075213232272945) + +[70519] +centroid = (0.52499809332608538, -1.6039118898629716) +station = ('kara', 0.00084463767758036982) +zone = ('laz044', 0.0033409978302202711) + +[70520] +centroid = (0.5293757979691075, -1.6062911576058754) +station = ('klft', 0.0023421340661111028) +zone = ('laz044', 0.0022234957925040336) + +[70523] +centroid = (0.52149043531518224, -1.5964581820396495) +station = ('kptn', 0.0035144782267615216) +zone = ('laz054', 0.0029495893043843167) + +[70524] +centroid = (0.53331943922715885, -1.6111358599968537) +station = ('kacp', 0.0065964872572113822) +zone = ('laz032', 0.0033219352443123497) + +[70525] +centroid = (0.53078138142890863, -1.6095218493177794) +station = ('klft', 0.004949853466385855) +zone = ('laz043', 0.0035946194999114654) + +[70526] +centroid = (0.5272652411178409, -1.6123345172205386) +station = ('k3r7', 0.0044631297987575503) +zone = ('laz043', 0.0014861436190081578) + +[70528] +centroid = (0.52254293866730495, -1.605440972820644) +station = ('kiya', 0.0016285887050678607) +zone = ('laz053', 0.0039276173098643603) + +[70529] +centroid = (0.5271292101559405, -1.6085230148401557) +station = ('klft', 0.0024376400920771779) +zone = ('laz044', 0.0014750543780516555) + +[70531] +centroid = (0.52768192102346201, -1.6147346940078811) +station = ('k3r7', 0.0023574674013463162) +zone = ('laz043', 0.0018724977762256446) + +[70532] +centroid = (0.53150052689390037, -1.6178682930534967) +station = ('k3r7', 0.0036829214351524037) +zone = ('laz042', 0.0036895550961051453) + +[70533] +centroid = (0.52168135688205786, -1.6065138616184298) +station = ('kiya', 0.0016000526483258104) +zone = ('laz052', 0.0041193977284115562) + +[70534] +centroid = (0.52756224379665284, -1.6132350373013973) +station = ('k3r7', 0.0036584084847336908) +zone = ('laz043', 0.0011470060707287147) + +[70535] +centroid = (0.53168411807791771, -1.6130361570331326) +station = ('k3r7', 0.005419957908000787) +zone = ('laz043', 0.0030159219415403136) + +[70537] +centroid = (0.5279684342734694, -1.6156408515022238) +station = ('k3r7', 0.0015752054797120605) +zone = ('laz043', 0.0024743690717371862) + +[70538] +centroid = (0.52020500032108841, -1.5969475200020311) +station = ('kptn', 0.0029424264353389508) +zone = ('laz054', 0.0018720362774753048) + +[70541] +centroid = (0.53104846916434145, -1.6065319257761881) +station = ('klft', 0.0040232001372868878) +zone = ('laz033', 0.0030678388033115152) + +[70542] +centroid = (0.52376768856330691, -1.6159091435148405) +station = ('k3r7', 0.0042818738795463857) +zone = ('laz052', 0.0049503376593497926) + +[70543] +centroid = (0.52945267972265797, -1.6144494199416424) +station = ('k3r7', 0.0030603211638510581) +zone = ('laz043', 0.0015541151241200409) + +[70544] +centroid = (0.52192537136477923, -1.5998053570258317) +station = ('kara', 0.004034267832658138) +zone = ('laz053', 0.0010526484121756497) + +[70546] +centroid = (0.52824777422025115, -1.617458611918176) +station = ('k3r7', 0.00041308527113387034) +zone = ('laz042', 0.002114149532471043) + +[70548] +centroid = (0.51984506106944961, -1.6127742005657006) +station = ('k7r4', 0.0041175841460857213) +zone = ('laz052', 0.0017760583615165728) + +[70549] +centroid = (0.52481232048050308, -1.6197036638416014) +station = ('k3r7', 0.0035924975032968127) +zone = ('laz042', 0.0034491952887208124) + +[70550] +centroid = (0.5326499483793864, -1.6089781443491982) +station = ('klft', 0.0062374810919037654) +zone = ('laz033', 0.0030715887650443049) + +[70552] +centroid = (0.5247777804146061, -1.5999907458989786) +station = ('kara', 0.0032374092123507951) +zone = ('laz045', 0.0029198099672525252) + +[70554] +centroid = (0.53438805196827743, -1.6141563442536477) +station = ('kacp', 0.0038390058458349476) +zone = ('laz032', 0.0022644480117895551) + +[70555] +centroid = (0.52501947360942225, -1.6082485443619869) +station = ('kiya', 0.0020653421864608181) +zone = ('laz044', 0.0025064000466107762) + +[70556] +centroid = (0.52699197491685612, -1.6154055811190551) +station = ('k3r7', 0.0019633218274295212) +zone = ('laz043', 0.0027435775752959516) + +[70558] +centroid = (0.52535326782886616, -1.6070251558228017) +station = ('klft', 0.0020788320432794135) +zone = ('laz044', 0.0018547768310226331) + +[70559] +centroid = (0.52584649787547977, -1.614476123479198) +station = ('k3r7', 0.0032550368216102796) +zone = ('laz043', 0.0031378811537900717) + +[70560] +centroid = (0.52223642394406966, -1.6035852864000459) +station = ('kara', 0.0019454065484206444) +zone = ('laz053', 0.0022907577458732772) + +[70563] +centroid = (0.52388902385290548, -1.600642172588993) +station = ('kara', 0.0026348304030745081) +zone = ('laz053', 0.0021612493365659306) + +[70570] +centroid = (0.5329128473246143, -1.607534826870969) +station = ('klft', 0.0060341019275885104) +zone = ('laz033', 0.0018754525126275165) + +[70575] +centroid = (0.5227072963229652, -1.6084621901157237) +station = ('kiya', 0.001211368024358216) +zone = ('laz052', 0.0029346696476717582) + +[70576] +centroid = (0.53722923855101401, -1.6130028212444196) +station = ('kacp', 0.0040891456507085363) +zone = ('laz032', 0.00092574611288795839) + +[70577] +centroid = (0.53320423004323469, -1.6045550785989167) +station = ('klft', 0.0061944624150618958) +zone = ('laz033', 0.0013691035147247854) + +[70578] +centroid = (0.52760168823774789, -1.6102674539742314) +station = ('klft', 0.0039775531516215573) +zone = ('laz043', 0.0025076619553058123) + +[70580] +centroid = (0.53538390193288032, -1.6131786282599729) +station = ('kacp', 0.004120913461497705) +zone = ('laz032', 0.00099685734557856975) + +[70581] +centroid = (0.52797721327960689, -1.6184687910359379) +station = ('k3r7', 0.0008849929072233324) +zone = ('laz042', 0.0012728896528891201) + +[70582] +centroid = (0.52641844227135826, -1.6019306968158629) +station = ('kara', 0.0026951759296414668) +zone = ('laz045', 0.0014479970432431887) + +[70583] +centroid = (0.52815595244830371, -1.6078665092420179) +station = ('klft', 0.0021522023596592856) +zone = ('laz044', 0.0013173346735450983) + +[70584] +centroid = (0.53034785909600579, -1.6074218866150725) +station = ('klft', 0.0035805509141758579) +zone = ('laz044', 0.0031913271090681784) + +[70585] +centroid = (0.53892878781672848, -1.6128182003161435) +station = ('kacp', 0.00476522922054721) +zone = ('laz032', 0.0026066979414456249) + +[70586] +centroid = (0.53662778063748418, -1.6114300003356923) +station = ('kacp', 0.0054074479686967878) +zone = ('laz032', 0.0012058908269925843) + +[70589] +centroid = (0.53547251229900406, -1.6057587100109694) +station = ('klft', 0.0083832162263267618) +zone = ('laz033', 0.0014214973367294532) + +[70591] +centroid = (0.5280972570255591, -1.620238048751977) +station = ('k3r7', 0.0024160642891338418) +zone = ('laz042', 0.00032801229143923887) + +[70592] +centroid = (0.52500594730771932, -1.6059185996237448) +station = ('klft', 0.0020918196175047079) +zone = ('laz044', 0.0023273079407741893) + +[70601] +centroid = (0.52755704271548187, -1.6269163940551006) +station = ('kcwf', 0.0010026497359525333) +zone = ('laz041', 0.0021486837563282559) + +[70605] +centroid = (0.52583635751252567, -1.6279506238099548) +station = ('kuxl', 0.0015898433427289863) +zone = ('laz041', 0.0021640068477480367) + +[70607] +centroid = (0.5242694183633777, -1.6264745115950805) +station = ('kcwf', 0.0031693225095118811) +zone = ('laz041', 0.004183310168526062) + +[70611] +centroid = (0.52967458088375652, -1.6267096947117869) +station = ('kcwf', 0.0024323324229645858) +zone = ('laz041', 0.0031169481224786249) + +[70615] +centroid = (0.5280565908539876, -1.6253641680315469) +station = ('kcwf', 0.00076343399167650751) +zone = ('laz041', 0.0035188029671964832) + +[70630] +centroid = (0.52405095550090552, -1.6234519154898919) +station = ('kcwf', 0.0038883832701887499) +zone = ('laz074', 0.004585044605992814) + +[70631] +centroid = (0.52103968658256217, -1.6330747010542999) +station = ('korg', 0.0051813372949465883) +zone = ('laz073', 0.0020355894503077052) + +[70632] +centroid = (0.52075296389304448, -1.6241643937971411) +station = ('kcwf', 0.0067723273466831161) +zone = ('laz074', 0.0014813183337298919) + +[70633] +centroid = (0.53103396547825732, -1.6299855031848551) +station = ('klch', 0.0039463527311771269) +zone = ('laz041', 0.0034715312527854947) + +[70634] +centroid = (0.53744546739204357, -1.6273461639301117) +station = ('kdri', 0.0016366176869681) +zone = ('laz030', 0.0029657574674946826) + +[70637] +centroid = (0.53577497785837469, -1.6225185134059255) +station = ('kacp', 0.0042258746408936889) +zone = ('laz031', 0.0021802822307019783) + +[70638] +centroid = (0.53841920403502364, -1.6196155945275459) +station = ('kacp', 0.0023681555717747576) +zone = ('laz031', 0.0034578421425895478) + +[70639] +centroid = (0.54067275571190621, -1.6317281969896791) +station = ('kbkb', 0.0019160770475198966) +zone = ('txz260', 0.0038926611456612222) + +[70640] +centroid = (0.53009019613853392, -1.6214932895500114) +station = ('k3r7', 0.0041504064190667411) +zone = ('laz042', 0.0022884172001166334) + +[70643] +centroid = (0.52046688697535015, -1.6198671837392209) +station = ('kcmb', 0.0071030232881342734) +zone = ('laz074', 0.0049224105192196017) + +[70644] +centroid = (0.53742780466001339, -1.6222066754284714) +station = ('kacp', 0.0039221898638022792) +zone = ('laz031', 0.0030083361259607725) + +[70645] +centroid = (0.52234217344344802, -1.6314270578805397) +station = ('kuxl', 0.0038002558795599238) +zone = ('laz073', 0.0012355207127367979) + +[70646] +centroid = (0.52515016386381164, -1.6217350525579977) +station = ('kcwf', 0.0041438971379921686) +zone = ('laz042', 0.0034859377556928244) + +[70647] +centroid = (0.52804282020618942, -1.623574071084239) +station = ('kcwf', 0.0020129681189526632) +zone = ('laz042', 0.003175151800512636) + +[70648] +centroid = (0.53241396241122418, -1.6212251895236123) +station = ('kacp', 0.0052389584867113606) +zone = ('laz031', 0.0027387274023241044) + +[70650] +centroid = (0.52774283301435665, -1.6218155820496845) +station = ('k3r7', 0.0037659896243898748) +zone = ('laz042', 0.0017274920491011062) + +[70651] +centroid = (0.53351051787366721, -1.6223559534393945) +station = ('kacp', 0.0051045484087572195) +zone = ('laz031', 0.0024066569172231508) + +[70652] +centroid = (0.53421980222838517, -1.6277992863105146) +station = ('kdri', 0.0040482228116770821) +zone = ('laz030', 0.0013552208146352888) + +[70653] +centroid = (0.53524280951614911, -1.6329665604538466) +station = ('kdri', 0.0044010791195123631) +zone = ('laz030', 0.0032995011900531141) + +[70654] +centroid = (0.53514329084220036, -1.6209821000653948) +station = ('kacp', 0.0032059554166954185) +zone = ('laz031', 0.0007294575918492753) + +[70655] +centroid = (0.53520111360031897, -1.6183253075181312) +station = ('kacp', 0.0015847875117281566) +zone = ('laz031', 0.0015855918810184198) + +[70656] +centroid = (0.54037789978807427, -1.6225996886694356) +station = ('kdnk', 0.0036146229199713244) +zone = ('laz027', 0.0041253895790937913) + +[70657] +centroid = (0.53237924781240209, -1.625826697736618) +station = ('kcwf', 0.0049991307506842778) +zone = ('laz030', 0.0038244351293869982) + +[70658] +centroid = (0.53281013469813432, -1.6239136248902144) +station = ('kcwf', 0.0056621198198580315) +zone = ('laz031', 0.0039044075927347562) + +[70659] +centroid = (0.53968952447779528, -1.6281179136187585) +station = ('kdri', 0.001780895383404351) +zone = ('laz027', 0.0035807137383328069) + +[70660] +centroid = (0.53330451666205425, -1.6309175439120052) +station = ('kdri', 0.0050610241130745756) +zone = ('laz030', 0.002217269785510173) + +[70661] +centroid = (0.52978603760978882, -1.6344948231067702) +station = ('klch', 0.0048358145250906705) +zone = ('txz262', 0.0024490260460768003) + +[70662] +centroid = (0.53755374761883723, -1.6230472783561094) +station = ('kpoe', 0.0052994128132147185) +zone = ('laz031', 0.0035711733854934032) + +[70663] +centroid = (0.52866492536477028, -1.6296434186514641) +station = ('klch', 0.0015852417541794069) +zone = ('laz041', 0.0010859394991128547) + +[70665] +centroid = (0.52569608540054291, -1.6309685249794559) +station = ('kuxl', 0.0010350070519675079) +zone = ('laz041', 0.0023353014148870792) + +[70668] +centroid = (0.52687835398255134, -1.6335987361622113) +station = ('kuxl', 0.0034460341136994428) +zone = ('laz041', 0.0036971085333906378) + +[70669] +centroid = (0.52782854613392205, -1.6279090500671725) +station = ('klch', 0.001830130837784182) +zone = ('laz041', 0.0013107312552572438) + +[70706] +centroid = (0.53419678133555137, -1.5866330255484726) +station = ('kbtr', 0.0038673466565460092) +zone = ('laz048', 0.0030749882518342877) + +[70710] +centroid = (0.52975799016870928, -1.5928263962123446) +station = ('kbtr', 0.0035734182877707426) +zone = ('laz047', 0.002076756224129595) + +[70711] +centroid = (0.53285546089880864, -1.58124854517973) +station = ('khdc', 0.0027318160814911907) +zone = ('laz050', 0.0025286843291131298) + +[70712] +centroid = (0.54052105169332287, -1.5986640338680749) +station = ('khzr', 0.0047287252869778864) +zone = ('laz035', 0.0030747947615327202) + +[70714] +centroid = (0.53384715697979179, -1.590477235399038) +station = ('kbtr', 0.00099825884879635191) +zone = ('laz048', 0.00097897249015341139) + +[70715] +centroid = (0.53676288657488103, -1.6003095826467328) +station = ('khzr', 0.0032463028345784163) +zone = ('laz034', 0.0015591726078377319) + +[70719] +centroid = (0.53018599726117588, -1.5934543133173347) +station = ('kbtr', 0.0035180857556340456) +zone = ('laz047', 0.0015179556873269882) + +[70721] +centroid = (0.52750286769549992, -1.5897202686491552) +station = ('kbtr', 0.0054942264152102538) +zone = ('laz049', 0.0026323622109941961) + +[70722] +centroid = (0.53856364748391872, -1.5870109940512847) +station = ('kbtr', 0.0065569106262807261) +zone = ('laz036', 0.001758324513789739) + +[70723] +centroid = (0.52462689670077123, -1.585450181007811) +station = ('k7r3', 0.0074005219325562702) +zone = ('laz057', 0.00086827860485136604) + +[70725] +centroid = (0.52583859153396828, -1.5875322191791001) +station = ('kbtr', 0.0076323623380714261) +zone = ('laz049', 0.0014956536365462573) + +[70726] +centroid = (0.53102646056247371, -1.5862620383626689) +station = ('kbtr', 0.0043921742423911874) +zone = ('laz050', 0.0022524194692219611) + +[70729] +centroid = (0.53385595343922188, -1.5942685094133902) +station = ('khzr', 0.0030386048512448627) +zone = ('laz047', 0.0022202759104687996) + +[70730] +centroid = (0.53784963328692792, -1.5900355100186505) +station = ('kbtr', 0.0049939811397935107) +zone = ('laz036', 0.00098699912450545793) + +[70732] +centroid = (0.53440637792542334, -1.5988681675773881) +station = ('khzr', 0.0026044246485549781) +zone = ('laz034', 0.0015830066575436448) + +[70733] +centroid = (0.52882886414141017, -1.5849804081863441) +station = ('kbtr', 0.0065121428569343441) +zone = ('laz049', 0.0022421401851660211) + +[70734] +centroid = (0.52720499235206209, -1.5881969278247223) +station = ('kbtr', 0.0061501632755582231) +zone = ('laz049', 0.0012935309448611221) + +[70736] +centroid = (0.53463245042343421, -1.594155150278473) +station = ('khzr', 0.0025874991766607295) +zone = ('laz047', 0.0029696170288956839) + +[70737] +centroid = (0.52748003878888383, -1.5868917007969108) +station = ('kbtr', 0.0064202244757902574) +zone = ('laz049', 0.00036823132129591203) + +[70739] +centroid = (0.53408935632009114, -1.5876446358362213) +station = ('kbtr', 0.0030163924101178391) +zone = ('laz048', 0.0022445154479204467) + +[70740] +centroid = (0.52923444375298856, -1.5959887408307407) +station = ('kbtr', 0.0057435266220674727) +zone = ('laz046', 0.0018085926627985816) + +[70743] +centroid = (0.52414473204161516, -1.584400348009444) +station = ('k7r3', 0.0075477730357197334) +zone = ('laz057', 0.00026757370827526462) + +[70744] +centroid = (0.53325894611528468, -1.5825637554908627) +station = ('khdc', 0.0039010615489572589) +zone = ('laz050', 0.0020435286352320885) + +[70747] +centroid = (0.53884717622090517, -1.6000520942221861) +station = ('khzr', 0.004015716411240996) +zone = ('laz034', 0.0030766134545595052) + +[70748] +centroid = (0.53787083903733957, -1.5916353137176136) +station = ('khzr', 0.0046084397547954629) +zone = ('laz036', 0.0022760245135534404) + +[70749] +centroid = (0.53494730782049393, -1.5951351352001752) +station = ('khzr', 0.0017342223001303725) +zone = ('laz034', 0.0032672668662093252) + +[70750] +centroid = (0.53234779697928103, -1.6016151936469796) +station = ('khzr', 0.0057401134491997978) +zone = ('laz033', 0.0039895528884773728) + +[70752] +centroid = (0.53383827325389921, -1.5953459360672311) +station = ('khzr', 0.0025394463510590545) +zone = ('laz047', 0.002567581438559403) + +[70753] +centroid = (0.54004300601120159, -1.6010286582985547) +station = ('khzr', 0.0054501325718097904) +zone = ('laz034', 0.0045095443223589129) + +[70754] +centroid = (0.53078197484085443, -1.583829066838681) +station = ('khdc', 0.0053071087111601373) +zone = ('laz050', 0.00069206974899532509) + +[70755] +centroid = (0.53395397113001397, -1.5975004403090631) +station = ('khzr', 0.0023139074881908524) +zone = ('laz034', 0.0022932115512911948) + +[70756] +centroid = (0.53314251520088418, -1.5989686287291331) +station = ('khzr', 0.0036191770428546767) +zone = ('laz034', 0.0028498223271431625) + +[70757] +centroid = (0.53214008534500123, -1.5973164127927326) +station = ('khzr', 0.0040422749710472402) +zone = ('laz047', 0.0031329620241450705) + +[70759] +centroid = (0.53577042254902696, -1.5983630169319836) +station = ('khzr', 0.0015558878997486772) +zone = ('laz034', 0.00038700496063603359) + +[70760] +centroid = (0.53592875881876789, -1.5961165861984492) +station = ('khzr', 0.00046725180148452216) +zone = ('laz034', 0.002253951514001002) + +[70761] +centroid = (0.54067980684208428, -1.5887980541256941) +station = ('kbtr', 0.0079734814942034726) +zone = ('laz036', 0.0023407642157170184) + +[70762] +centroid = (0.53369271279428288, -1.5963593440441091) +station = ('khzr', 0.0024519062200471903) +zone = ('laz047', 0.003032468436554019) + +[70763] +centroid = (0.52436768040026493, -1.5837401772198771) +station = ('kmsy', 0.0074689820034776347) +zone = ('laz057', 0.00088086981648959474) + +[70764] +centroid = (0.52738380133392893, -1.5931850264670444) +station = ('kbtr', 0.0058741070366166255) +zone = ('laz046', 0.0012398318418973416) + +[70767] +centroid = (0.53199604332183414, -1.5940216325906955) +station = ('kbtr', 0.0028660819421662004) +zone = ('laz047', 0.00040441637443756927) + +[70769] +centroid = (0.52896444131770504, -1.5872136442307334) +station = ('kbtr', 0.0050471504576870474) +zone = ('laz049', 0.0018670838707497085) + +[70770] +centroid = (0.53483515296276074, -1.5881960900666812) +station = ('kbtr', 0.0030009861178361009) +zone = ('laz048', 0.0023647853874324185) + +[70772] +centroid = (0.53122518375110583, -1.5964291572141889) +station = ('khzr', 0.0049126944422640114) +zone = ('laz047', 0.002381072356638053) + +[70773] +centroid = (0.53426563457454257, -1.5945656168119569) +station = ('khzr', 0.0025633350975737385) +zone = ('laz047', 0.0026799945480853265) + +[70774] +centroid = (0.52734343186833021, -1.584094077632304) +station = ('khdc', 0.0074480093730899749) +zone = ('laz049', 0.0022615758610387057) + +[70775] +centroid = (0.53857698179940394, -1.594689517735556) +station = ('khzr', 0.0029436701159157985) +zone = ('laz035', 0.00085234799325561604) + +[70776] +centroid = (0.52821136665205459, -1.5899139652895418) +station = ('kbtr', 0.0047673274879806724) +zone = ('laz049', 0.0029713150290446616) + +[70777] +centroid = (0.53651855793289438, -1.5896219367990978) +station = ('kbtr', 0.003767050341612347) +zone = ('laz036', 0.0018962002449593473) + +[70778] +centroid = (0.52635271317172827, -1.5858524968536882) +station = ('kbtr', 0.00785447954934438) +zone = ('laz049', 0.0010840411910046702) + +[70780] +centroid = (0.52881265003265909, -1.5914836795122005) +station = ('kbtr', 0.0041288716628881993) +zone = ('laz046', 0.0025711528402727279) + +[70782] +centroid = (0.54026865963019199, -1.5971375514509885) +station = ('khzr', 0.0041584053387947149) +zone = ('laz035', 0.0018743993164471097) + +[70783] +centroid = (0.53556237930218931, -1.5952972239278078) +station = ('khzr', 0.0012613165679446455) +zone = ('laz034', 0.0029881245629886383) + +[70785] +centroid = (0.5333220223144518, -1.5850946923457649) +station = ('kbtr', 0.0049890767160978748) +zone = ('laz050', 0.0022121372470185587) + +[70787] +centroid = (0.54038242019083704, -1.595941459861304) +station = ('khzr', 0.0042847681458161799) +zone = ('laz035', 0.001461511969329769) + +[70788] +centroid = (0.52590592633651023, -1.5913523085794028) +station = ('kbtr', 0.0070137592608918789) +zone = ('laz046', 0.0034004565742028936) + +[70789] +centroid = (0.54001501092999971, -1.5896974921024167) +station = ('khzr', 0.0070866880138436656) +zone = ('laz036', 0.001758352263785599) + +[70791] +centroid = (0.53497800816203656, -1.5909451058116197) +station = ('kbtr', 0.0020718839979041075) +zone = ('laz048', 0.0021715265637573616) + +[70801] +centroid = (0.53144675329964652, -1.5914955302978213) +station = ('kbtr', 0.0015574549410189268) +zone = ('laz048', 0.0020583831407692808) + +[70802] +centroid = (0.53135489662111401, -1.5913456414216602) +station = ('kbtr', 0.0016060282861280588) +zone = ('laz048', 0.0020483310596447987) + +[70803] +centroid = (0.53082979686235898, -1.5913502490908855) +station = ('kbtr', 0.002118637162040784) +zone = ('laz047', 0.0022151100236201477) + +[70805] +centroid = (0.53213284222860546, -1.5910122835345291) +station = ('kbtr', 0.00078432256777495276) +zone = ('laz048', 0.0012755612828272195) + +[70806] +centroid = (0.53143109769625607, -1.5904269699165803) +station = ('kbtr', 0.0015241553541849426) +zone = ('laz048', 0.0016227170412832764) + +[70807] +centroid = (0.533088567073705, -1.5920837935222061) +station = ('kbtr', 0.0010630669267925425) +zone = ('laz048', 0.0018660912072280176) + +[70808] +centroid = (0.53065236669060123, -1.5906780355294798) +station = ('kbtr', 0.0022607442135145514) +zone = ('laz048', 0.0024309797973994765) + +[70809] +centroid = (0.53047615824931993, -1.5894883143915652) +station = ('kbtr', 0.0027061795160069615) +zone = ('laz048', 0.0025450576079038638) + +[70810] +centroid = (0.52939962171339727, -1.5898462116079792) +station = ('kbtr', 0.0036164461215115731) +zone = ('laz049', 0.0035263496504225563) + +[70811] +centroid = (0.5329834458928574, -1.5906004207376436) +station = ('kbtr', 0.00024243885893023533) +zone = ('laz048', 0.00058622072962709218) + +[70812] +centroid = (0.53233812785522505, -1.5901770911275726) +station = ('kbtr', 0.00082323212857243202) +zone = ('laz048', 0.00069217290448871061) + +[70814] +centroid = (0.53206671170324737, -1.5894361639535157) +station = ('kbtr', 0.001492430972096606) +zone = ('laz048', 0.001016527078012757) + +[70815] +centroid = (0.53154808711601731, -1.5894061093837963) +station = ('kbtr', 0.0018528726333603405) +zone = ('laz048', 0.0015120576337414259) + +[70816] +centroid = (0.53113533420121306, -1.5886330157916255) +station = ('kbtr', 0.0026168628538355853) +zone = ('laz048', 0.0021642676281886952) + +[70817] +centroid = (0.53014561034228469, -1.5879078838472993) +station = ('kbtr', 0.003759779496164321) +zone = ('laz049', 0.0031710688548693259) + +[70818] +centroid = (0.53306774529572876, -1.5891204338918299) +station = ('kbtr', 0.0015133731268233668) +zone = ('laz048', 0.00069250672856164001) + +[70819] +centroid = (0.5318447407289788, -1.58841605391231) +station = ('kbtr', 0.0023644254890312342) +zone = ('laz048', 0.0017318568751599961) + +[70820] +centroid = (0.52996996040636402, -1.5918109811068271) +station = ('kbtr', 0.0030477456002322967) +zone = ('laz047', 0.0023782005600108068) + +[70836] +centroid = (0.53042734139014169, -1.5898263846676768) +station = ('kbtr', 0.0026372706374270874) +zone = ('laz048', 0.0025678069763002782) + +[71001] +centroid = (0.56882980346848033, -1.6212233045680202) +station = ('krsn', 0.0046269241845812315) +zone = ('laz005', 0.003306514541654244) + +[71003] +centroid = (0.56949301113094564, -1.6236941846433612) +station = ('kmne', 0.0039721629109179474) +zone = ('laz004', 0.0034086670836092022) + +[71004] +centroid = (0.57157435117053401, -1.6381627372495913) +station = ('kdtn', 0.0040922426154855239) +zone = ('laz001', 0.0029694313305565559) + +[71006] +centroid = (0.57111848862320558, -1.6341585330664961) +station = ('kdtn', 0.0037433000503552475) +zone = ('laz002', 0.00084107757999026098) + +[71007] +centroid = (0.56483265041556296, -1.6407273240524718) +station = ('kshv', 0.0029766823004367272) +zone = ('laz001', 0.004211397007972021) + +[71008] +centroid = (0.5645529439496384, -1.6225849580905487) +station = ('krsn', 0.0063050021906317167) +zone = ('laz012', 0.0013083781278709454) + +[71016] +centroid = (0.56242215873234103, -1.6251854986760204) +station = ('kmne', 0.0079055219798581204) +zone = ('laz012', 0.0023201725399195146) + +[71018] +centroid = (0.57288196929942059, -1.6306036289927412) +station = ('kmne', 0.0035571186018651343) +zone = ('laz003', 0.0023477446039365199) + +[71019] +centroid = (0.55935629591499525, -1.6286883046716027) +station = ('kier', 0.0063438704206974852) +zone = ('laz011', 0.00084881882009946858) + +[71021] +centroid = (0.57539505143607472, -1.6309498325031668) +station = ('kmne', 0.0059471478346883148) +zone = ('laz003', 0.0047286601478376197) + +[71023] +centroid = (0.56681682797569266, -1.6303173251822443) +station = ('kmne', 0.0034398605249465423) +zone = ('laz003', 0.0042869233273372161) + +[71024] +centroid = (0.56719900272200185, -1.6266764461895364) +station = ('kmne', 0.0030196486349290358) +zone = ('laz012', 0.0033977235471619213) + +[71027] +centroid = (0.56292764099030357, -1.6343266257267555) +station = ('kbad', 0.0043222517809288546) +zone = ('laz010', 0.0037424410455529191) + +[71028] +centroid = (0.56719189923194624, -1.624468115993573) +station = ('kmne', 0.0042426984526537318) +zone = ('laz012', 0.0026418899879367724) + +[71029] +centroid = (0.57311725713588202, -1.6378350167759443) +station = ('kdtn', 0.0054694662044621357) +zone = ('laz002', 0.0044234512001185521) + +[71030] +centroid = (0.5619257172799037, -1.6368552238404599) +station = ('kshv', 0.0044908116787229467) +zone = ('laz010', 0.0025523160650459129) + +[71031] +centroid = (0.55855716201038474, -1.6214848945163092) +station = ('kier', 0.0054850219301000522) +zone = ('laz019', 0.004090286179768296) + +[71032] +centroid = (0.56016106723308989, -1.6370380121730213) +station = ('kshv', 0.0062235426775302119) +zone = ('laz010', 0.0011008876779536863) + +[71033] +centroid = (0.56569758323297381, -1.6407942399759934) +station = ('kshv', 0.0026936875050275911) +zone = ('laz001', 0.0034836154709667168) + +[71034] +centroid = (0.56167292379104494, -1.6285906011400761) +station = ('kbad', 0.0076388921264255961) +zone = ('laz011', 0.0015962785829081478) + +[71037] +centroid = (0.56679537787918566, -1.6316646320983215) +station = ('kbad', 0.0026736300476786169) +zone = ('laz002', 0.0039655414294370991) + +[71038] +centroid = (0.5751128491493197, -1.6242534928554553) +station = ('keld', 0.0058630226464367495) +zone = ('laz004', 0.0024563202911243999) + +[71039] +centroid = (0.566015407689762, -1.6282124231977539) +station = ('kmne', 0.0038375865886509028) +zone = ('laz012', 0.0037371753138100662) + +[71040] +centroid = (0.57199434720173392, -1.6235703709862248) +station = ('kmne', 0.0045889231171649374) +zone = ('laz004', 0.00096056894941312675) + +[71043] +centroid = (0.5739691872503655, -1.6386518657724627) +station = ('kdtn', 0.0064796866372254236) +zone = ('laz001', 0.0053468161800205097) + +[71044] +centroid = (0.57515890838827988, -1.6385579670587056) +station = ('kdtn', 0.0075981371905049586) +zone = ('arz070', 0.0062536446805201863) + +[71045] +centroid = (0.56429423379461519, -1.6263783614065885) +station = ('kmne', 0.0058096335401831888) +zone = ('laz012', 0.0019158451491812505) + +[71046] +centroid = (0.5613512596099024, -1.6397163246299618) +station = ('kshv', 0.0052899341535406737) +zone = ('laz010', 0.0036481920756766479) + +[71047] +centroid = (0.56355850770172955, -1.6391248849063385) +station = ('kshv', 0.0030482404047147559) +zone = ('laz010', 0.0048563630782249888) + +[71048] +centroid = (0.5731402780287157, -1.6204612240034295) +station = ('keld', 0.0066134773024320035) +zone = ('laz004', 0.0022189324100237015) + +[71049] +centroid = (0.55866603564912398, -1.6400257191464627) +station = ('kshv', 0.0079407437694796901) +zone = ('laz010', 0.0034865147867425782) + +[71051] +centroid = (0.56408088474685147, -1.6314980578745109) +station = ('kbad', 0.0042025616584299222) +zone = ('laz011', 0.0044418788688765278) + +[71052] +centroid = (0.55857025197977461, -1.6347334096155179) +station = ('kaqv', 0.0066791461037298298) +zone = ('laz010', 0.001418351453501863) + +[71055] +centroid = (0.57032127458077209, -1.6282747663586352) +station = ('kmne', 0.00048153026293753072) +zone = ('laz003', 0.00088398257256209914) + +[71060] +centroid = (0.56992243194010639, -1.6402707982800278) +station = ('kdtn', 0.0039929752611188732) +zone = ('laz001', 0.0019454979918401172) + +[71061] +centroid = (0.57209063701656637, -1.6398301375504842) +station = ('kdtn', 0.0052341530375424683) +zone = ('laz001', 0.0036307159989865819) + +[71063] +centroid = (0.55696062207712282, -1.6321468665706473) +station = ('kaqv', 0.004380893807334865) +zone = ('laz011', 0.0040972370834352458) + +[71064] +centroid = (0.57444335830154725, -1.6350175841243277) +station = ('kdtn', 0.0067096638226715509) +zone = ('laz002', 0.0042237385967732214) + +[71065] +centroid = (0.55502674490603554, -1.631955822830724) +station = ('kaqv', 0.0024735518514399603) +zone = ('laz017', 0.0041986076925127572) + +[71067] +centroid = (0.56895340768610658, -1.6319505868429682) +station = ('kbad', 0.0029493529047732478) +zone = ('laz002', 0.0020505445935035623) + +[71068] +centroid = (0.56336805737375195, -1.6285736016331618) +station = ('kmne', 0.0064837502599282499) +zone = ('laz011', 0.0032637354781514566) + +[71069] +centroid = (0.57539819302872841, -1.6403994988590698) +station = ('kdtn', 0.0083501361575160516) +zone = ('txz126', 0.0061708605993474937) + +[71070] +centroid = (0.56028414785194047, -1.6233809154959207) +station = ('kier', 0.0065159926409883951) +zone = ('laz012', 0.0043280892306048566) + +[71071] +centroid = (0.57459532411951841, -1.6311282051527207) +station = ('kmne', 0.0052734076437611771) +zone = ('laz003', 0.004051881637204764) + +[71072] +centroid = (0.574861067951427, -1.6285888732641167) +station = ('kmne', 0.0050137939690592945) +zone = ('laz003', 0.0039182718776029999) + +[71073] +centroid = (0.56759793262913028, -1.6285945455841857) +station = ('kmne', 0.002258513101456) +zone = ('laz003', 0.0033779226811295666) + +[71075] +centroid = (0.57587046167102551, -1.6320430194801536) +station = ('kmne', 0.0067571022155648777) +zone = ('arz071', 0.0045243323758731658) + +[71078] +centroid = (0.56298211271625831, -1.6368015724192537) +station = ('kshv', 0.0034615729377663516) +zone = ('laz010', 0.0035709592054787055) + +[71079] +centroid = (0.57479656058227335, -1.6198523833471639) +station = ('keld', 0.0049444081011810574) +zone = ('laz004', 0.0033307160032724575) + +[71082] +centroid = (0.57304194617865833, -1.639995786749791) +station = ('kdtn', 0.0061068461556997395) +zone = ('laz001', 0.004582925381527457) + +[71101] +centroid = (0.56734320182480169, -1.636197671044771) +station = ('kdtn', 0.00047235533644215309) +zone = ('laz001', 0.002361368487443984) + +[71103] +centroid = (0.56709126354727635, -1.6366318566027898) +station = ('kdtn', 0.00079234664612551451) +zone = ('laz001', 0.0022284793453338086) + +[71104] +centroid = (0.566948827227021, -1.6359258360137729) +station = ('kdtn', 0.0009061605945157354) +zone = ('laz001', 0.0027756612610187509) + +[71105] +centroid = (0.56647612225241084, -1.6355461221817091) +station = ('kbad', 0.00098811181483119217) +zone = ('laz001', 0.003321515200063057) + +[71106] +centroid = (0.56511096061808597, -1.6359087143338109) +station = ('kshv', 0.0019613149838056351) +zone = ('laz001', 0.0041600386581049651) + +[71107] +centroid = (0.56890085582232908, -1.6381577456079308) +station = ('kdtn', 0.0019435011711108853) +zone = ('laz001', 0.00043289108410045362) + +[71108] +centroid = (0.56624018864412629, -1.6369063619875432) +station = ('kshv', 0.00068077222464983721) +zone = ('laz001', 0.0027573898128024372) + +[71109] +centroid = (0.56667194819448463, -1.6373609504445179) +station = ('kshv', 0.0004241018773085404) +zone = ('laz001', 0.0021942760465515037) + +[71110] +centroid = (0.56731721387223955, -1.6335607752509804) +station = ('kbad', 0.0010416416282773913) +zone = ('laz002', 0.0030488271956703372) + +[71111] +centroid = (0.56850805202087518, -1.6353626531707393) +station = ('kdtn', 0.0010181382721637169) +zone = ('laz002', 0.0023146748514008722) + +[71112] +centroid = (0.56626183072685099, -1.6342062329149531) +station = ('kbad', 0.0010886855930296098) +zone = ('laz002', 0.0041218088548411764) + +[71115] +centroid = (0.5631968580274237, -1.6332714520208773) +station = ('kbad', 0.0042344609139333567) +zone = ('laz010', 0.0043936533443504865) + +[71118] +centroid = (0.56537635538414421, -1.637189768551482) +station = ('kshv', 0.0010734112039854778) +zone = ('laz001', 0.0034439501864338799) + +[71119] +centroid = (0.56706956910467399, -1.6393085284502331) +station = ('kshv', 0.0015312227768353216) +zone = ('laz001', 0.0016793771114565616) + +[71129] +centroid = (0.56524583966268005, -1.639091339678115) +station = ('kshv', 0.0016180685430644266) +zone = ('laz001', 0.0034077296825430915) + +[71201] +centroid = (0.56780264229709654, -1.6075384397025207) +station = ('kmlu', 0.0010935018369760386) +zone = ('laz014', 0.0011924516833464074) + +[71202] +centroid = (0.56548501958337327, -1.6066898955267861) +station = ('kmlu', 0.0020663583418329165) +zone = ('laz014', 0.0019908108019104339) + +[71203] +centroid = (0.56866691188939178, -1.6060244014830007) +station = ('kmlu', 0.0011648656612483622) +zone = ('laz014', 0.0026993166589734979) + +[71209] +centroid = (0.56773813492794289, -1.606917416648076) +station = ('kmlu', 0.00057528494513859663) +zone = ('laz014', 0.0015293840053564464) + +[71219] +centroid = (0.56419000273168607, -1.6003485907555148) +station = ('kmlu', 0.0060180213094920788) +zone = ('laz015', 0.0019116172422340336) + +[71220] +centroid = (0.57359441270008471, -1.6041066511542017) +station = ('kbqp', 0.0018719657198924958) +zone = ('laz007', 0.0017450681182687338) + +[71222] +centroid = (0.57294260203763492, -1.6171745072225363) +station = ('krsn', 0.0055516698948961463) +zone = ('laz005', 0.0039388504435257307) + +[71223] +centroid = (0.57401983670525836, -1.599678279602994) +station = ('kbqp', 0.0039962866352747537) +zone = ('laz007', 0.0024624557957854966) + +[71225] +centroid = (0.56744615879737681, -1.6116127537616687) +station = ('krsn', 0.0036755806491451902) +zone = ('laz014', 0.0027735638906431883) + +[71226] +centroid = (0.56288175628426873, -1.6133471397992531) +station = ('krsn', 0.0051080834063973743) +zone = ('laz013', 0.0019801631155994528) + +[71227] +centroid = (0.56786905207513494, -1.6140458474587038) +station = ('krsn', 0.0016684352468506567) +zone = ('laz005', 0.0029716736030778114) + +[71229] +centroid = (0.56953454996714314, -1.603900824475514) +station = ('kbqp', 0.0022488076355545029) +zone = ('laz007', 0.0035748931215397804) + +[71232] +centroid = (0.56557923245639607, -1.5963844593320453) +station = ('ktvr', 0.0065052275163470456) +zone = ('laz016', 0.0033694005330988813) + +[71233] +centroid = (0.56418078739323563, -1.5870644883928582) +station = ('ktvr', 0.0014979375609794345) +zone = ('msz047', 0.0013068238266287328) + +[71234] +centroid = (0.56976748160911428, -1.6114722896634681) +station = ('krsn', 0.0044255660616516349) +zone = ('laz006', 0.0033213896649181736) + +[71235] +centroid = (0.57059228930702177, -1.6174745293209543) +station = ('krsn', 0.0033562614468936173) +zone = ('laz005', 0.0015935014714678222) + +[71237] +centroid = (0.56892776879939488, -1.5968854560938304) +station = ('kbqp', 0.0063324877084911984) +zone = ('laz008', 0.0033860710129839807) + +[71238] +centroid = (0.56484345400363278, -1.6122613530182948) +station = ('krsn', 0.0040959046936644055) +zone = ('laz013', 0.0028874194110246909) + +[71241] +centroid = (0.57210344773327604, -1.611870835598161) +station = ('krsn', 0.0057670408530862104) +zone = ('laz006', 0.00097334320094657166) + +[71243] +centroid = (0.55771594821750847, -1.602403646136568) +station = ('khez', 0.0096065721498414629) +zone = ('laz023', 0.003716993166557569) + +[71245] +centroid = (0.56782704200003953, -1.6183719950756223) +station = ('krsn', 0.002053051471299912) +zone = ('laz005', 0.0014826091031498684) + +[71247] +centroid = (0.56328110507041751, -1.618306231069407) +station = ('krsn', 0.0046424638459706246) +zone = ('laz013', 0.0024759210857530378) + +[71250] +centroid = (0.57517315027497617, -1.5984281875262532) +station = ('kbqp', 0.0055243711446792149) +zone = ('laz008', 0.0034470334888603393) + +[71251] +centroid = (0.56235609802015307, -1.6175168710086076) +station = ('krsn', 0.0052915727605776803) +zone = ('laz013', 0.0022608233005003333) + +[71253] +centroid = (0.57580509909053834, -1.593650366152211) +station = ('kbqp', 0.009285935517491066) +zone = ('laz008', 0.0041441561021628862) + +[71254] +centroid = (0.57240657651776239, -1.5926719171202506) +station = ('ktvr', 0.0084881324247503345) +zone = ('laz009', 0.0011467550201982991) + +[71256] +centroid = (0.5750797053468244, -1.6182892839223704) +station = ('keld', 0.0048653312589612054) +zone = ('arz073', 0.0042718327999879289) + +[71259] +centroid = (0.56323696569363468, -1.6030553695325556) +station = ('kmlu', 0.0050798169658290652) +zone = ('laz015', 0.0028472273248670021) + +[71260] +centroid = (0.5743515365295998, -1.6098037548985615) +station = ('kbqp', 0.0058105438934176312) +zone = ('laz006', 0.0024418229878526588) + +[71261] +centroid = (0.57198631868717464, -1.6004378818000469) +station = ('kbqp', 0.0026749144780249751) +zone = ('laz007', 0.0017333241550859598) + +[71263] +centroid = (0.57374641342464083, -1.5956823133739679) +station = ('kbqp', 0.0069483076706050462) +zone = ('laz008', 0.0015467275874522755) + +[71264] +centroid = (0.56899969381786952, -1.6017327764786866) +station = ('kbqp', 0.0031884849456362205) +zone = ('laz015', 0.0032067863594550995) + +[71266] +centroid = (0.57062951717996679, -1.5970526237295861) +station = ('kbqp', 0.0056318193217259329) +zone = ('laz008', 0.0017810413912475659) + +[71268] +centroid = (0.56454536922068466, -1.6185663374878319) +station = ('krsn', 0.0036652221189068311) +zone = ('laz013', 0.002754297881279834) + +[71269] +centroid = (0.56619589218771071, -1.6021037636644906) +station = ('kmlu', 0.0037683691298973773) +zone = ('laz015', 0.00059829152622182245) + +[71270] +centroid = (0.56712910228545954, -1.6169100200276894) +station = ('krsn', 0.00086765146773327441) +zone = ('laz005', 0.0019053423963060615) + +[71272] +centroid = (0.56770092450829046, -1.6170360502529757) +station = ('krsn', 0.00092363215406958052) +zone = ('laz005', 0.001323758137124746) + +[71275] +centroid = (0.56743968362585195, -1.619959337123726) +station = ('krsn', 0.0033633054989112474) +zone = ('laz005', 0.0027312217948638868) + +[71276] +centroid = (0.56845761200549261, -1.5908299315342809) +station = ('ktvr', 0.0042481639628580347) +zone = ('laz009', 0.0031106228439079894) + +[71277] +centroid = (0.5749698019638263, -1.6153191873210815) +station = ('keld', 0.0061525968154608262) +zone = ('laz006', 0.0032326412967416582) + +[71279] +centroid = (0.56701131001424243, -1.6032092203061188) +station = ('kmlu', 0.0026437352750229978) +zone = ('laz015', 0.0018371404975018274) + +[71280] +centroid = (0.57113568011633764, -1.6073024362810659) +station = ('kbqp', 0.0031710767867905725) +zone = ('laz014', 0.0043775826000190471) + +[71282] +centroid = (0.56477076104028723, -1.5914097822716711) +station = ('ktvr', 0.002235417667408019) +zone = ('laz016', 0.00091340228288272745) + +[71286] +centroid = (0.57005273822206026, -1.5917377470914131) +station = ('ktvr', 0.0060166946889596128) +zone = ('laz009', 0.0013427066589063198) + +[71291] +centroid = (0.56837805989818668, -1.608721039897087) +station = ('kmlu', 0.0022247774266831262) +zone = ('laz014', 0.001545276519768246) + +[71292] +centroid = (0.56542869780841154, -1.6094512507495364) +station = ('kmlu', 0.0033948350785135166) +zone = ('laz014', 0.0016814794841319672) + +[71295] +centroid = (0.56109935623896212, -1.6005941934878556) +station = ('kmlu', 0.0080237574507795555) +zone = ('laz023', 0.00056343831630622653) + +[71301] +centroid = (0.54583699298233979, -1.6138554669438963) +station = ('kesf', 0.0033211051492363828) +zone = ('laz028', 0.0016467527111268597) + +[71302] +centroid = (0.54449068090393637, -1.6121644697915167) +station = ('kesf', 0.0036942403527439453) +zone = ('laz028', 0.0024333285965755557) + +[71303] +centroid = (0.54596204582324515, -1.615255866775819) +station = ('kesf', 0.0042290632877700638) +zone = ('laz028', 0.0014591002945624951) + +[71316] +centroid = (0.54527311200760542, -1.6011895602022961) +station = ('kesf', 0.0087740389406992421) +zone = ('laz026', 0.0038690178804748937) + +[71322] +centroid = (0.5385790761945064, -1.6085280064818164) +station = ('kacp', 0.0081172795745247887) +zone = ('laz032', 0.0042987898390770673) + +[71323] +centroid = (0.54572503011082429, -1.6093978087678402) +station = ('kesf', 0.0026572943069562908) +zone = ('laz029', 0.0045878062218558955) + +[71325] +centroid = (0.54103819275068876, -1.6113254027536204) +station = ('kacp', 0.0069978320895878717) +zone = ('laz028', 0.0046968026705992861) + +[71326] +centroid = (0.55461463776305464, -1.5987902386262867) +station = ('khez', 0.0053112159996707587) +zone = ('laz024', 0.0040968524828970928) + +[71327] +centroid = (0.54074475054355098, -1.6062491126241949) +station = ('kesf', 0.0083197940060052277) +zone = ('laz029', 0.001697603095491146) + +[71328] +centroid = (0.54724985446512164, -1.6087689666383467) +station = ('kesf', 0.002011470141228322) +zone = ('laz029', 0.0055199841421769502) + +[71331] +centroid = (0.54554182289924247, -1.6076777169768297) +station = ('kesf', 0.0037373779740723341) +zone = ('laz029', 0.0035741449190228388) + +[71333] +centroid = (0.53948102744535198, -1.6069572799681915) +station = ('kesf', 0.0092061247328759747) +zone = ('laz029', 0.0030871462716025935) + +[71334] +centroid = (0.55255846537128017, -1.598106907317546) +station = ('khez', 0.0040041190176191045) +zone = ('laz026', 0.0038887764557620401) + +[71336] +centroid = (0.55911186255325351, -1.5986992895189653) +station = ('khez', 0.0085363023312913251) +zone = ('laz023', 0.0020457468137430636) + +[71339] +centroid = (0.54129332498074534, -1.604521219211428) +station = ('khzr', 0.0085315379185646814) +zone = ('laz029', 0.0014999955391431393) + +[71340] +centroid = (0.55431328921440537, -1.6023527523355801) +station = ('khez', 0.0079480813669150514) +zone = ('laz024', 0.001735306348683448) + +[71341] +centroid = (0.54219403704782199, -1.608636042362515) +station = ('kesf', 0.0061624117297524065) +zone = ('laz029', 0.0024999570687316273) + +[71342] +centroid = (0.55163937498717996, -1.6082024851230268) +station = ('kesf', 0.0042949364394067784) +zone = ('laz022', 0.0012497016120757815) + +[71343] +centroid = (0.55019628440175339, -1.6039019414862352) +station = ('kesf', 0.0063802242761670565) +zone = ('laz024', 0.0025891349196084557) + +[71345] +centroid = (0.53631098592495474, -1.6052744509567112) +station = ('khzr', 0.0074556223160768438) +zone = ('laz033', 0.0023049153928197288) + +[71346] +centroid = (0.54311585014555541, -1.6122466398927005) +station = ('kesf', 0.0050429984564501077) +zone = ('laz028', 0.0027485838697618669) + +[71350] +centroid = (0.54223349894220962, -1.6069976319804975) +station = ('kesf', 0.0067078756090060187) +zone = ('laz029', 0.0010995946867122968) + +[71351] +centroid = (0.54425453785614153, -1.6050346601707797) +station = ('kesf', 0.0063036002330539975) +zone = ('laz029', 0.0019637133410026039) + +[71353] +centroid = (0.53708894898573867, -1.6020203369262453) +station = ('khzr', 0.0047517293361552873) +zone = ('laz034', 0.0030298419859012852) + +[71354] +centroid = (0.54811110463781076, -1.601340548635886) +station = ('khez', 0.0076526933482259224) +zone = ('laz026', 0.0017949975853255313) + +[71355] +centroid = (0.5424645456285887, -1.6029795698831413) +station = ('khzr', 0.0083656799675705107) +zone = ('laz029', 0.0023533142807107316) + +[71356] +centroid = (0.53783547866669412, -1.6064173623640872) +station = ('khzr', 0.0086018677432650407) +zone = ('laz033', 0.0038204814607566248) + +[71357] +centroid = (0.56055565127038065, -1.5934854325378975) +station = ('ktvr', 0.005664290959563929) +zone = ('laz025', 0.0021055038914298799) + +[71358] +centroid = (0.53567435962699728, -1.603435816402905) +station = ('khzr', 0.0058921791671137317) +zone = ('laz033', 0.0026048329036825768) + +[71360] +centroid = (0.54677865047366825, -1.6118181266547509) +station = ('kesf', 0.0014621859494353352) +zone = ('laz028', 0.0035424093858011782) + +[71362] +centroid = (0.53929129270236764, -1.6050232806240567) +station = ('khzr', 0.0078898084375096447) +zone = ('laz029', 0.0031488143644768278) + +[71366] +centroid = (0.55740957312061334, -1.5941323911850269) +station = ('khez', 0.0056215947056363624) +zone = ('laz025', 0.0011263007668509608) + +[71367] +centroid = (0.53898516195156787, -1.6109047784038897) +station = ('kacp', 0.0062850152197405536) +zone = ('laz032', 0.0031153478260690496) + +[71368] +centroid = (0.55628322488783877, -1.600120406409109) +station = ('khez', 0.007197248022134067) +zone = ('laz024', 0.0043745699316370358) + +[71369] +centroid = (0.53983073906757406, -1.6035572040523813) +station = ('khzr', 0.0070219619402738225) +zone = ('laz029', 0.0031564911568451319) + +[71371] +centroid = (0.55294966346982211, -1.610158615242077) +station = ('kesf', 0.0049610513474913232) +zone = ('laz022', 0.0014121049320534825) + +[71373] +centroid = (0.54648168270144137, -1.5988779414211995) +station = ('khez', 0.0070426408586935279) +zone = ('laz026', 0.0023952729814310336) + +[71375] +centroid = (0.55630985861222415, -1.5967632306863131) +station = ('khez', 0.005288971661980473) +zone = ('laz025', 0.0031214039354968055) + +[71377] +centroid = (0.55170911834408964, -1.6019726545310806) +station = ('kesf', 0.0084823268185610732) +zone = ('laz024', 0.0013248130447177653) + +[71378] +centroid = (0.557678371278713, -1.6006310722949504) +station = ('khez', 0.008442260577950644) +zone = ('laz023', 0.0031954823180080335) + +[71401] +centroid = (0.55497073729033908, -1.6047590552285971) +station = ('kesf', 0.008708168297895693) +zone = ('laz024', 0.0027221107923701294) + +[71403] +centroid = (0.54480559066087364, -1.6307329229837291) +station = ('kpoe', 0.0046020880861481961) +zone = ('laz027', 0.0041717171633138452) + +[71404] +centroid = (0.55408978235039485, -1.6188205446933848) +station = ('kaex', 0.0043720188611029581) +zone = ('laz019', 0.0038394474953540661) + +[71405] +centroid = (0.54821140870992291, -1.612731108386469) +station = ('kesf', 0.0015399825297847706) +zone = ('laz020', 0.0040468611826335729) + +[71406] +centroid = (0.55384711177119761, -1.6319627692411471) +station = ('kaqv', 0.0014146859234018146) +zone = ('laz017', 0.0030438846404120491) + +[71407] +centroid = (0.54997078786239584, -1.614183745922904) +station = ('kesf', 0.0033786622467839411) +zone = ('laz020', 0.0018949366218523459) + +[71409] +centroid = (0.54650578569841146, -1.6178939319402084) +station = ('kdnk', 0.005169104039448839) +zone = ('laz028', 0.0031673846191798785) + +[71410] +centroid = (0.55789114436782361, -1.6191674463355112) +station = ('kier', 0.0062908167255049012) +zone = ('laz019', 0.0020263142670529331) + +[71411] +centroid = (0.55685523909688739, -1.6247363207397272) +station = ('kier', 0.0029632234215391951) +zone = ('laz018', 0.0031751203280173013) + +[71414] +centroid = (0.55550220750086388, -1.6235732856860756) +station = ('kier', 0.0019572662175445475) +zone = ('laz018', 0.0021142039007454559) + +[71416] +centroid = (0.55048442080796522, -1.6213576600138389) +station = ('kaex', 0.00056632694714031228) +zone = ('laz018', 0.0043583932814609807) + +[71417] +centroid = (0.54992122051163916, -1.6170412164275616) +station = ('kaex', 0.0042831717546648008) +zone = ('laz020', 0.0020864925111303083) + +[71418] +centroid = (0.56119185868931776, -1.6068673955117139) +station = ('kmlu', 0.0063501517448788384) +zone = ('laz021', 0.0013062799822386698) + +[71419] +centroid = (0.55535575692332906, -1.6355887605753352) +station = ('kaqv', 0.0047201571516594714) +zone = ('laz010', 0.0041330923355171788) + +[71422] +centroid = (0.55981934921884191, -1.6173215337587246) +station = ('krsn', 0.0077492790647173525) +zone = ('laz019', 0.0023275128135446261) + +[71423] +centroid = (0.55166770168093981, -1.6156231887701937) +station = ('kesf', 0.0053999025680495898) +zone = ('laz020', 0.00020006909695289817) + +[71424] +centroid = (0.54451160740166771, -1.6177429784132036) +station = ('kdnk', 0.0046637600461650079) +zone = ('laz028', 0.0023385897844773284) + +[71425] +centroid = (0.55651690702138834, -1.6035036748042226) +station = ('khez', 0.0097302308333198743) +zone = ('laz024', 0.0038598805423979169) + +[71426] +centroid = (0.54975839874572063, -1.6311825023457505) +station = ('kaqv', 0.0029328736118649388) +zone = ('laz017', 0.0018120525661780378) + +[71427] +centroid = (0.54792786251964387, -1.6213399972818086) +station = ('kaex', 0.0027798194781043003) +zone = ('laz020', 0.0061626471781993705) + +[71429] +centroid = (0.54819344927191993, -1.6307420336024245) +station = ('kaqv', 0.004499954610150082) +zone = ('laz017', 0.0032396861880634735) + +[71430] +centroid = (0.54184134091257907, -1.6143565335188514) +station = ('kacp', 0.0058979918232939859) +zone = ('laz028', 0.0027346040685159549) + +[71432] +centroid = (0.55413465476546364, -1.6138659912792859) +station = ('kesf', 0.0065912271387209061) +zone = ('laz020', 0.0029491483783453589) + +[71433] +centroid = (0.54110418364970669, -1.6169748066495231) +station = ('kacp', 0.0044521019878578354) +zone = ('laz028', 0.0038064958199609828) + +[71435] +centroid = (0.55905934559606096, -1.6086063543119382) +station = ('kmlu', 0.0086882038683430696) +zone = ('laz021', 0.0012856491161293269) + +[71438] +centroid = (0.54320360530034562, -1.620086257466931) +station = ('kdnk', 0.0027344209061575964) +zone = ('laz028', 0.0045392421583185525) + +[71439] +centroid = (0.54693063374493189, -1.6300629085371809) +station = ('kaqv', 0.0058133423757118106) +zone = ('laz017', 0.0046178697892812681) + +[71441] +centroid = (0.55765997550839697, -1.6083809450390434) +station = ('kesf', 0.0098696542382576812) +zone = ('laz021', 0.0025140665361626457) + +[71446] +centroid = (0.54396172396753439, -1.6264184341662142) +station = ('kpoe', 0.0020396575711412058) +zone = ('laz027', 0.0010202689729190732) + +[71447] +centroid = (0.54871500601229328, -1.6198872724789111) +station = ('kaex', 0.0026405320461346153) +zone = ('laz020', 0.0046972984038874477) + +[71449] +centroid = (0.55056643382951642, -1.6320834063990448) +station = ('kaqv', 0.0023097156162846682) +zone = ('laz017', 0.00072208799486324804) + +[71450] +centroid = (0.55462467340625365, -1.630404190219116) +station = ('kaqv', 0.002004487662900603) +zone = ('laz017', 0.0042654412033516081) + +[71452] +centroid = (0.5512636928656881, -1.6221870928342641) +station = ('kaex', 0.00063432984077696356) +zone = ('laz018', 0.0033064479427153542) + +[71454] +centroid = (0.55311962363238132, -1.6206845039746371) +station = ('kaex', 0.0027079669571184262) +zone = ('laz018', 0.0035770344204460874) + +[71455] +centroid = (0.54809356407882825, -1.6229729447832673) +station = ('kaex', 0.002690982777611396) +zone = ('laz018', 0.0058090437380222265) + +[71456] +centroid = (0.55225842581956985, -1.6227803826068945) +station = ('kaex', 0.0017414898809683856) +zone = ('laz018', 0.002255496384702768) + +[71457] +centroid = (0.55399979317416204, -1.6250052759774591) +station = ('kier', 0.00014542042992858571) +zone = ('laz018', 0.00034921445953402496) + +[71459] +centroid = (0.54191312630471355, -1.6270639092834791) +station = ('kpoe', 0.00044881928256173685) +zone = ('laz027', 0.0011879365054059262) + +[71461] +centroid = (0.54311099813023489, -1.6281985827367857) +station = ('kpoe', 0.0018504994507344652) +zone = ('laz027', 0.0015736688499078299) + +[71462] +centroid = (0.55251481468668773, -1.6357459449277698) +station = ('kaqv', 0.0040345984975997421) +zone = ('laz017', 0.0029591231673962281) + +[71463] +centroid = (0.53773690247054151, -1.6163471862505059) +station = ('kacp', 0.0015723837510826365) +zone = ('laz032', 0.0033701450492993408) + +[71465] +centroid = (0.55635520226619106, -1.6088295644699757) +station = ('kesf', 0.0085133793818275624) +zone = ('laz022', 0.0035035464576148772) + +[71466] +centroid = (0.54480709164403041, -1.6187689004008183) +station = ('kdnk', 0.003847302239469419) +zone = ('laz028', 0.0032287856935714759) + +[71467] +centroid = (0.55088362996777385, -1.6124595351548587) +station = ('kesf', 0.0031313906689746829) +zone = ('laz020', 0.0026390167160892414) + +[71468] +centroid = (0.54944446637316435, -1.6257550519708237) +station = ('kaex', 0.0034270003942874242) +zone = ('laz018', 0.0043083582356800744) + +[71469] +centroid = (0.5531728910811522, -1.6278796063626912) +station = ('kier', 0.0026461097710019066) +zone = ('laz018', 0.0026379187918547397) + +[71472] +centroid = (0.5439990740135271, -1.6194414979346594) +station = ('kdnk', 0.0031787375823764822) +zone = ('laz028', 0.0038274264817419546) + +[71473] +centroid = (0.55955912062736957, -1.6133141879829753) +station = ('krsn', 0.0082371708752104443) +zone = ('laz019', 0.0035966601978996184) + +[71474] +centroid = (0.54584502149689895, -1.6233838825556492) +station = ('kdnk', 0.00189410526647822) +zone = ('laz027', 0.003867303374067879) + +[71479] +centroid = (0.55586745255342873, -1.6121253220563942) +station = ('kesf', 0.0078989361185633836) +zone = ('laz022', 0.0043031161858378538) + +[71480] +centroid = (0.55610174555221648, -1.6107748211877861) +station = ('kesf', 0.0080695697985808373) +zone = ('laz022', 0.003771433065442178) + +[71483] +centroid = (0.55662710711035923, -1.617184996651341) +station = ('kier', 0.007092303789020823) +zone = ('laz019', 0.00095673610679573124) + +[71485] +centroid = (0.54378542825979048, -1.6151569938736936) +station = ('kesf', 0.0055714667466356662) +zone = ('laz028', 0.00074372034470918807) + +[71486] +centroid = (0.55255389260863996, -1.6337579800031634) +station = ('kaqv', 0.0023426081939272011) +zone = ('laz017', 0.0018341097415807688) + +[71601] +centroid = (0.59654224605140138, -1.6038293183360599) +station = ('kpbf', 0.00059148455356637653) +zone = ('arz056', 0.0016587601279920352) + +[71602] +centroid = (0.59803996544241533, -1.6082435178137413) +station = ('kpbf', 0.0033794031514315951) +zone = ('arz056', 0.0030882960642453958) + +[71603] +centroid = (0.59552510306992412, -1.6072410181446883) +station = ('kpbf', 0.0024858257046762467) +zone = ('arz056', 0.0034292985311124599) + +[71630] +centroid = (0.58678500032141956, -1.591863655143652) +station = ('kglh', 0.0040379989460137614) +zone = ('arz065', 0.0037793858186970929) + +[71631] +centroid = (0.58608199915200887, -1.6103273013142823) +station = ('kllq', 0.0075430692969349206) +zone = ('arz068', 0.0024905745660929609) + +[71635] +centroid = (0.57823726776306994, -1.6056437451731407) +station = ('kbqp', 0.00668912361433992) +zone = ('arz074', 0.0035052637162177134) + +[71638] +centroid = (0.58505075391017547, -1.5967100155974199) +station = ('kllq', 0.0043272639676273537) +zone = ('arz069', 0.0036249279535494972) + +[71639] +centroid = (0.59169237748583714, -1.597331858956613) +station = ('kllq', 0.0057447229093720176) +zone = ('arz064', 0.0032347962091242429) + +[71640] +centroid = (0.57772524052041241, -1.5931030134454933) +station = ('kglh', 0.0079352222545438465) +zone = ('arz075', 0.0029062518702299045) + +[71642] +centroid = (0.5827199714138922, -1.6037390499071467) +station = ('kllq', 0.0047357703459652983) +zone = ('arz074', 0.0038430513501143096) + +[71643] +centroid = (0.59370674924202638, -1.5983113900927097) +station = ('kpbf', 0.0059190135188929892) +zone = ('arz064', 0.0024947360877066592) + +[71644] +centroid = (0.59512762178607503, -1.6005491988997391) +station = ('kpbf', 0.0036206387098894417) +zone = ('arz064', 0.0024919847644457264) + +[71646] +centroid = (0.58006967149144628, -1.6019956056107445) +station = ('kllq', 0.0069642843377693215) +zone = ('arz074', 0.00082561261700044638) + +[71647] +centroid = (0.58231793482069527, -1.607693198047295) +station = ('kllq', 0.0070788002265263624) +zone = ('arz068', 0.0019060631641066911) + +[71651] +centroid = (0.58158446020254473, -1.6106761053652934) +station = ('keld', 0.0079754325287919939) +zone = ('arz068', 0.0030785536451729632) + +[71652] +centroid = (0.59223625698734361, -1.6115155389223326) +station = ('kpbf', 0.0072489886235816911) +zone = ('arz063', 0.0022230900874342257) + +[71653] +centroid = (0.58195164257057919, -1.592643799866001) +station = ('kglh', 0.0046109447613606573) +zone = ('arz075', 0.0014652566928806923) + +[71654] +centroid = (0.5868035008114908, -1.5945901212346549) +station = ('kllq', 0.0056238693495093747) +zone = ('arz065', 0.0040247874947602425) + +[71655] +centroid = (0.58701763525741801, -1.6012914350707348) +station = ('kllq', 4.043230950146607e-05) +zone = ('arz069', 0.00086607764328864797) + +[71658] +centroid = (0.58147333508907018, -1.5980593645487216) +station = ('kllq', 0.0061779992562254835) +zone = ('arz074', 0.0037105397538946946) + +[71659] +centroid = (0.59591764507199019, -1.6017908261296079) +station = ('kpbf', 0.0023777962673971181) +zone = ('arz056', 0.0031344566711372151) + +[71660] +centroid = (0.589201146871418, -1.6092410607477186) +station = ('kllq', 0.0069287447488699571) +zone = ('arz063', 0.0024507454070416385) + +[71661] +centroid = (0.57859469374058592, -1.597853171350891) +station = ('kbqp', 0.0083606189575172393) +zone = ('arz074', 0.0032561332512007005) + +[71662] +centroid = (0.59067972000053748, -1.5970955239226003) +station = ('kllq', 0.005089699120947015) +zone = ('arz065', 0.0036695786549863193) + +[71663] +centroid = (0.57991082907622238, -1.5957455117461827) +station = ('kglh', 0.0078997626481150645) +zone = ('arz075', 0.0021016209033213914) + +[71665] +centroid = (0.59219169873154021, -1.607628341612291) +station = ('kpbf', 0.0051074343366419557) +zone = ('arz063', 0.0012174266348241255) + +[71666] +centroid = (0.58924121963104381, -1.593175339889696) +station = ('kglh', 0.0065085308505413763) +zone = ('arz065', 0.0013260257485454485) + +[71667] +centroid = (0.59209409991976869, -1.6028597006701144) +station = ('kpbf', 0.0047270964036253129) +zone = ('arz064', 0.0016095381412193467) + +[71670] +centroid = (0.58861733423662588, -1.5953571585343214) +station = ('kllq', 0.0052306108543099849) +zone = ('arz065', 0.0029146477793734718) + +[71671] +centroid = (0.58646534326891697, -1.6073792831280311) +station = ('kllq', 0.0050592211004047531) +zone = ('arz068', 0.0025627658882427856) + +[71674] +centroid = (0.5905671637170764, -1.5913075932439666) +station = ('kglh', 0.0067729137458910748) +zone = ('arz065', 0.0011440988434378526) + +[71675] +centroid = (0.58628660410022015, -1.604624141277418) +station = ('kllq', 0.0028300290578006301) +zone = ('arz069', 0.00317247700017043) + +[71676] +centroid = (0.5768689470827989, -1.5981564048551324) +station = ('kbqp', 0.0068522270329610243) +zone = ('arz074', 0.0038026438175846416) + +[71677] +centroid = (0.58925588039676058, -1.5966384221915031) +station = ('kllq', 0.0045090069111643066) +zone = ('arz065', 0.0035156260456590815) + +[71701] +centroid = (0.58619436344925224, -1.6200092011804554) +station = ('kcdh', 0.00093382005650539707) +zone = ('arz066', 0.00091374548921777858) + +[71711] +centroid = (0.58708598235092613, -1.618273663225565) +station = ('kcdh', 0.00076670896104561728) +zone = ('arz066', 0.002474559220019676) + +[71720] +centroid = (0.58965994157188983, -1.6171160735991796) +station = ('kcdh', 0.0033636524850637396) +zone = ('arz062', 0.0032249253978346697) + +[71722] +centroid = (0.58843828090866379, -1.6260612176282083) +station = ('km89', 0.0068696418599279441) +zone = ('arz061', 0.0022289706623119603) + +[71724] +centroid = (0.58167942356714564, -1.6150522043054039) +station = ('keld', 0.0045357464445619266) +zone = ('arz073', 0.002875333190234025) + +[71725] +centroid = (0.59427815258583683, -1.6154407495034826) +station = ('km89', 0.007398352653953979) +zone = ('arz062', 0.00197307597966125) + +[71726] +centroid = (0.5877952317990589, -1.6231240728431973) +station = ('kcdh', 0.0035306279646976344) +zone = ('arz066', 0.0022458990210046628) + +[71730] +centroid = (0.57942862951048135, -1.6166473828818491) +station = ('keld', 0.0027861268553117393) +zone = ('arz073', 0.00064786802219393485) + +[71740] +centroid = (0.57730030520742925, -1.6260770826711091) +station = ('keld', 0.0056758336778361543) +zone = ('arz072', 0.0025535512878661509) + +[71742] +centroid = (0.59084058699769382, -1.613537467954183) +station = ('kcdh', 0.0061839255819499724) +zone = ('arz062', 0.0036123063475642478) + +[71743] +centroid = (0.59148042470147499, -1.6248630141901292) +station = ('km89', 0.0037005099508847185) +zone = ('arz053', 0.0030424050925947068) + +[71744] +centroid = (0.58466472198621933, -1.6140965492734742) +station = ('kcdh', 0.0046370984682994054) +zone = ('arz067', 0.0010821064071239082) + +[71745] +centroid = (0.58469812758810258, -1.6126159515624225) +station = ('kcdh', 0.0057570459847070127) +zone = ('arz067', 0.0018501230954276588) + +[71747] +centroid = (0.57701860906615743, -1.6092440278074469) +station = ('kbqp', 0.0070663161205933803) +zone = ('laz006', 0.0047212779287979277) + +[71749] +centroid = (0.57721321327775477, -1.6199898105724659) +station = ('keld', 0.0025271411162287715) +zone = ('arz073', 0.0036705520769082941) + +[71751] +centroid = (0.58314040377740517, -1.6189719520059953) +station = ('keld', 0.0034983178609878278) +zone = ('arz066', 0.0036344033802232253) + +[71752] +centroid = (0.58281135685352659, -1.6265074983179433) +station = ('keld', 0.0062776613329677865) +zone = ('arz072', 0.0031547337369543763) + +[71753] +centroid = (0.57993379760917851, -1.6263659172090217) +station = ('keld', 0.0053653568879392047) +zone = ('arz072', 0.00067577145397368268) + +[71758] +centroid = (0.58135676454832952, -1.6216717669193201) +station = ('keld', 0.002161130573650812) +zone = ('arz072', 0.0048505717996056956) + +[71759] +centroid = (0.58156093316422786, -1.6169460610767428) +station = ('keld', 0.0031064942825153557) +zone = ('arz073', 0.0027006791374595716) + +[71762] +centroid = (0.58194366641589768, -1.619113288768822) +station = ('keld', 0.002313462003033194) +zone = ('arz073', 0.0038992768192073583) + +[71763] +centroid = (0.59195384526107842, -1.6197587464327943) +station = ('km89', 0.0049462404527911364) +zone = ('arz062', 0.0023741874285963362) + +[71764] +centroid = (0.58350765595860976, -1.6239926533987448) +station = ('keld', 0.0050564597200986588) +zone = ('arz066', 0.0037018559589220112) + +[71765] +centroid = (0.57843496120744342, -1.6114938270264378) +station = ('keld', 0.0072021370308541421) +zone = ('arz073', 0.0039132621037715381) + +[71766] +centroid = (0.5886145766164077, -1.6145456748498901) +station = ('kcdh', 0.0042246432745291973) +zone = ('arz067', 0.0029174430414417225) + +[71770] +centroid = (0.58273213635877863, -1.6286963506394545) +station = ('keld', 0.0078936650178907369) +zone = ('arz072', 0.0033059099069743443) + +[71772] +centroid = (0.59049099754851941, -1.6253569249151512) +station = ('km89', 0.0047415979694921725) +zone = ('arz053', 0.0038800551692395767) + +[71801] +centroid = (0.587158954566952, -1.633638634388912) +station = ('ktxk', 0.0064956526845673769) +zone = ('arz060', 0.0019084598755767439) + +[71820] +centroid = (0.58989976726440629, -1.6453624124002859) +station = ('kdeq', 0.0047587709079604653) +zone = ('arz059', 0.001801655373402678) + +[71822] +centroid = (0.58753205360115068, -1.6433368356302989) +station = ('ktxk', 0.0044900272894680942) +zone = ('arz059', 0.0013078127731218033) + +[71823] +centroid = (0.59038948919922329, -1.6427320092313127) +station = ('kdeq', 0.0056054680798856751) +zone = ('arz059', 0.0027449245814403713) + +[71825] +centroid = (0.5912788566261622, -1.6328688918289047) +station = ('km89', 0.0080848663750858699) +zone = ('arz060', 0.0029680249390257466) + +[71826] +centroid = (0.57757378084792432, -1.6357787571177074) +station = ('ktxk', 0.0073027701409644156) +zone = ('arz071', 0.0030925624376830167) + +[71827] +centroid = (0.58337960115139098, -1.630076731544857) +station = ('keld', 0.0092064529145928966) +zone = ('arz061', 0.0043675106224250878) + +[71832] +centroid = (0.59405630378461582, -1.6467379761969525) +station = ('kdeq', 0.00074263715259664635) +zone = ('arz050', 0.001734212085944225) + +[71833] +centroid = (0.59588905657884261, -1.6413294451911176) +station = ('kdeq', 0.0054275988148368417) +zone = ('arz051', 0.0011580636065820064) + +[71834] +centroid = (0.5779630939908742, -1.6398736486087366) +station = ('ktxk', 0.0058613558745811622) +zone = ('arz070', 0.0035802736366747738) + +[71835] +centroid = (0.58719881788706751, -1.6306468433450207) +station = ('ktxk', 0.0087431047250745349) +zone = ('arz061', 0.0018065079712172123) + +[71836] +centroid = (0.58843765259013303, -1.6475497986452252) +station = ('kdeq', 0.0058470568590371311) +zone = ('arz059', 0.0023851360111290161) + +[71837] +centroid = (0.58040685164963901, -1.637902875177262) +station = ('ktxk', 0.0039586818254786008) +zone = ('arz070', 0.0012150088174211749) + +[71838] +centroid = (0.58734687416751419, -1.6373334091489211) +station = ('ktxk', 0.0043220577901838817) +zone = ('arz060', 0.0025416075157398271) + +[71839] +centroid = (0.58180348157037753, -1.6358802131071259) +station = ('ktxk', 0.0042153227479842896) +zone = ('arz070', 0.0024059669489195907) + +[71841] +centroid = (0.59623930925313284, -1.6465350991247008) +station = ('kdeq', 0.0021412512335516045) +zone = ('arz050', 0.0032066241556064075) + +[71842] +centroid = (0.59171691681512018, -1.6455883801785414) +station = ('kdeq', 0.0030578558567334853) +zone = ('arz050', 0.001767107876181933) + +[71845] +centroid = (0.58160620700502452, -1.6342327095597058) +station = ('ktxk', 0.0055399142970792969) +zone = ('arz071', 0.0014988465805698624) + +[71846] +centroid = (0.59242997108102247, -1.6428389106479973) +station = ('kdeq', 0.0043543680728739013) +zone = ('arz050', 0.0018897596619321998) + +[71847] +centroid = (0.59212478280801872, -1.634270548297889) +station = ('ktxk', 0.0097168169633161678) +zone = ('arz060', 0.0033623272557272233) + +[71851] +centroid = (0.59091017327497086, -1.6396063165272083) +station = ('ktxk', 0.0071222607773874886) +zone = ('arz051', 0.0041162878104904262) + +[71852] +centroid = (0.59337147149271829, -1.6380884211300415) +station = ('kdeq', 0.0079283792456381272) +zone = ('arz051', 0.0025490867803064851) + +[71853] +centroid = (0.58632240080317855, -1.6395280036036715) +station = ('ktxk', 0.0025948694793964584) +zone = ('arz059', 0.0046900858489577844) + +[71854] +centroid = (0.58383733120101888, -1.6385470238442954) +station = ('ktxk', 0.0014783463763538723) +zone = ('arz070', 0.0024306172557959334) + +[71855] +centroid = (0.59104794956612328, -1.6362620038809994) +station = ('ktxk', 0.0079844220427048203) +zone = ('arz060', 0.0025520776901028627) + +[71857] +centroid = (0.58994690860750265, -1.6290482613765342) +station = ('km89', 0.0065226991045956549) +zone = ('arz061', 0.0024377641112965048) + +[71858] +centroid = (0.58617120293007829, -1.6277603131083174) +station = ('kcdh', 0.0072477175032870014) +zone = ('arz061', 0.0015156797141659063) + +[71859] +centroid = (0.58895156478838284, -1.6390419468602835) +station = ('ktxk', 0.005247799575966142) +zone = ('arz060', 0.0035127259882395527) + +[71860] +centroid = (0.58102714166579783, -1.6317062582009811) +station = ('ktxk', 0.0077130007777461117) +zone = ('arz071', 0.0019198050117913491) + +[71861] +centroid = (0.57771572847598907, -1.6318820128566571) +station = ('kmne', 0.0083940437513130659) +zone = ('arz071', 0.0029053040644891979) + +[71862] +centroid = (0.58952898951811261, -1.6358591818896393) +station = ('ktxk', 0.0068167894807841982) +zone = ('arz060', 0.0011331877746754121) + +[71865] +centroid = (0.58889131602260392, -1.643225099651586) +station = ('ktxk', 0.0056262097072648865) +zone = ('arz059', 0.001414853269240846) + +[71866] +centroid = (0.59127386498450141, -1.6477039810313465) +station = ('kdeq', 0.0030122079995996091) +zone = ('arz050', 0.0031780669259080163) + +[71901] +centroid = (0.6026002838850737, -1.6227036753862696) +station = ('khot', 0.001961337293610808) +zone = ('arz042', 0.0026821063592212145) + +[71909] +centroid = (0.60464642063364926, -1.6231134786946377) +station = ('khot', 0.0031624277452784008) +zone = ('arz042', 0.0024874983008250535) + +[71913] +centroid = (0.60123246935028574, -1.6248241282543947) +station = ('khot', 0.00061853543051535256) +zone = ('arz042', 0.0023792842936541862) + +[71921] +centroid = (0.59766451021372635, -1.6299788534804049) +station = ('km89', 0.0053205039661064725) +zone = ('arz052', 0.0040790290058652246) + +[71922] +centroid = (0.5938261821227403, -1.6304058133753205) +station = ('km89', 0.005221178937504377) +zone = ('arz053', 0.0034888746308235526) + +[71923] +centroid = (0.59489722087151919, -1.6239455818688184) +station = ('km89', 0.00039526707498743584) +zone = ('arz053', 0.0019876576842586409) + +[71929] +centroid = (0.59871315638820199, -1.6259409818960384) +station = ('khot', 0.0032497822575608647) +zone = ('arz054', 0.0030883159725434103) + +[71933] +centroid = (0.60107929925513082, -1.6291399435221414) +station = ('khot', 0.0035780858827594085) +zone = ('arz042', 0.0036620767093080465) + +[71935] +centroid = (0.60031875458028172, -1.6362732088947973) +station = ('kmwt', 0.003620451399815248) +zone = ('arz041', 0.0028265707076182145) + +[71937] +centroid = (0.60038219729859177, -1.6474215867583737) +station = ('kmez', 0.0037131306053745797) +zone = ('arz040', 0.0027796719531605406) + +[71940] +centroid = (0.59381954987158281, -1.63223900250186) +station = ('km89', 0.0067024849061555524) +zone = ('arz052', 0.0031392728953803617) + +[71941] +centroid = (0.59772727225362809, -1.6222616532999092) +station = ('km89', 0.0030825212782388742) +zone = ('arz054', 0.0012302219861562076) + +[71943] +centroid = (0.59935158037528913, -1.6337550303967274) +station = ('kmwt', 0.0036758545687744803) +zone = ('arz052', 0.0031646722696272414) + +[71944] +centroid = (0.5976500239809347, -1.6464174115732388) +station = ('kdeq', 0.0035027233439383853) +zone = ('arz050', 0.0044848056495735587) + +[71945] +centroid = (0.60187946290400007, -1.6465360241492042) +station = ('kmez', 0.0022330687511753792) +zone = ('arz040', 0.0016035997828396549) + +[71949] +centroid = (0.60561045324598839, -1.6270036081578227) +station = ('khot', 0.0041415977521087775) +zone = ('arz042', 0.0023584067122701764) + +[71950] +centroid = (0.59788902936870281, -1.6356848060440725) +station = ('kmwt', 0.005476197169328771) +zone = ('arz052', 0.0018483234181356438) + +[71952] +centroid = (0.59825926606292845, -1.6375557291890401) +station = ('kmwt', 0.0058900372562225569) +zone = ('arz052', 0.0031449281744153177) + +[71953] +centroid = (0.60402538012591223, -1.6440474289819558) +station = ('kmez', 0.0010994084068615218) +zone = ('arz040', 0.0021810032813295013) + +[71956] +centroid = (0.60384899715170559, -1.6258283557994073) +station = ('khot', 0.0021419673542358978) +zone = ('arz042', 0.00037376104963802878) + +[71957] +centroid = (0.60327347483086047, -1.6331866290192305) +station = ('kmwt', 0.00029009324910012605) +zone = ('arz041', 0.0013020597300771077) + +[71958] +centroid = (0.59552260724909389, -1.6346947331192936) +station = ('kmwt', 0.0075720727327006432) +zone = ('arz052', 0.00074779728134580985) + +[71959] +centroid = (0.59765597555368399, -1.6394154124136253) +station = ('kmez', 0.0065594495248226282) +zone = ('arz051', 0.0028398762447284145) + +[71960] +centroid = (0.60185907745833678, -1.635540554581395) +station = ('kmwt', 0.0021501580842699119) +zone = ('arz041', 0.0011974286691220318) + +[71961] +centroid = (0.6038261682450895, -1.6378493459291033) +station = ('kmwt', 0.0038035492640280722) +zone = ('arz041', 0.0028088293272133607) + +[71962] +centroid = (0.59404307418888569, -1.6287908951250352) +station = ('km89', 0.0038740362777887377) +zone = ('arz053', 0.0021336508565229315) + +[71964] +centroid = (0.60081448044772567, -1.627357752916345) +station = ('khot', 0.0022736801517012988) +zone = ('arz042', 0.0029628603187621862) + +[71965] +centroid = (0.60511411651330627, -1.636186326404633) +station = ('kmwt', 0.0031496600143736792) +zone = ('arz041', 0.0026166633285528199) + +[71968] +centroid = (0.60256005404581525, -1.6282247277689808) +station = ('khot', 0.002829737833526128) +zone = ('arz042', 0.0022117223085315338) + +[71969] +centroid = (0.60509242207070391, -1.6341379905411999) +station = ('kmwt', 0.0021830119194075947) +zone = ('arz041', 0.0023178536970193974) + +[71970] +centroid = (0.60507845943668792, -1.6316826089896168) +station = ('kmwt', 0.002475487495470793) +zone = ('arz041', 0.0033395305762100535) + +[71971] +centroid = (0.59871813057657031, -1.6412073943165255) +station = ('kmez', 0.0048576559516712815) +zone = ('arz051', 0.003804079551411104) + +[71972] +centroid = (0.60009465430432563, -1.6454416503483262) +station = ('kmez', 0.0030294603976749909) +zone = ('arz040', 0.0019283891375833503) + +[71973] +centroid = (0.59868078053057761, -1.6461768528424363) +station = ('kdeq', 0.004549145390242859) +zone = ('arz040', 0.0034665919418499008) + +[71998] +centroid = (0.59561778005320509, -1.624121127084984) +station = ('km89', 0.00049094019152276622) +zone = ('arz053', 0.0021899261062563527) + +[71999] +centroid = (0.59563650743607888, -1.6241871179840019) +station = ('km89', 0.0004946663796661459) +zone = ('arz053', 0.0021580103221336862) + +[72001] +centroid = (0.61188365526984656, -1.6211638412004048) +station = ('krue', 0.0045307012084962748) +zone = ('arz039', 0.0020434968288631089) + +[72002] +centroid = (0.60494497665549551, -1.6149097330785636) +station = ('klit', 0.0044071194555381559) +zone = ('arz043', 0.0021547660324517442) + +[72003] +centroid = (0.6000883362124334, -1.5950609587069653) +station = ('ksgt', 0.0045657458526958666) +zone = ('arz057', 0.0016162066572925232) + +[72004] +centroid = (0.59834749245661678, -1.6018511447085568) +station = ('kpbf', 0.0028200020725172121) +zone = ('arz056', 0.0022084597635134897) + +[72005] +centroid = (0.62024095495351117, -1.5894788023471418) +station = ('km19', 0.0023054805894656564) +zone = ('arz025', 0.0023169730568316942) + +[72006] +centroid = (0.61512162500473144, -1.5945255265990386) +station = ('ksrc', 0.0054127485234841174) +zone = ('arz034', 0.0019412563807565423) + +[72007] +centroid = (0.61089850417355829, -1.6054096965204481) +station = ('klrf', 0.0028117307015294167) +zone = ('arz045', 0.0045300750655670489) + +[72010] +centroid = (0.61644172223776983, -1.59762016989575) +station = ('ksrc', 0.0034167357069167909) +zone = ('arz033', 0.0031727280130145587) + +[72011] +centroid = (0.6021494653392836, -1.6138341390204369) +station = ('klit', 0.0052586645386964084) +zone = ('arz055', 0.0037261650581315456) + +[72012] +centroid = (0.61252148584498789, -1.6040918333088523) +station = ('ksrc', 0.0031766258684714967) +zone = ('arz033', 0.0036436777853443313) + +[72013] +centroid = (0.6188130836391621, -1.612135776578614) +station = ('kcca', 0.0027764813603538543) +zone = ('arz023', 0.0030252862871339181) + +[72014] +centroid = (0.61841411882544872, -1.5902010021383246) +station = ('km19', 0.0036923315094029379) +zone = ('arz025', 0.0032582006510926405) + +[72015] +centroid = (0.60188510031748399, -1.6159180097874408) +station = ('klit', 0.0066538248345919494) +zone = ('arz043', 0.003103333652295251) + +[72016] +centroid = (0.61035600348216101, -1.6167487865113899) +station = ('klrf', 0.0069728125670899662) +zone = ('arz031', 0.0051787116961402643) + +[72017] +centroid = (0.60911015255550238, -1.5955025968208902) +station = ('ksgt', 0.0056576322943282477) +zone = ('arz046', 0.0023116902948860699) + +[72019] +centroid = (0.60454766990457143, -1.6176630248801698) +station = ('khot', 0.0065440367422393694) +zone = ('arz043', 0.00019455023366457522) + +[72020] +centroid = (0.6191037856793743, -1.5964551975266286) +station = ('km19', 0.0050765475669789289) +zone = ('arz025', 0.0042560805526555339) + +[72021] +centroid = (0.60816940263538488, -1.5920453439187845) +station = ('ksgt', 0.0065921834777547313) +zone = ('arz047', 0.0029341779473111601) + +[72022] +centroid = (0.60401400057918919, -1.6142294560960138) +station = ('klit', 0.0042715515276924142) +zone = ('arz043', 0.0027860229010866029) + +[72023] +centroid = (0.61024203348200567, -1.6068146167551334) +station = ('klrf', 0.0014884980994444832) +zone = ('arz045', 0.0044414559330228798) + +[72024] +centroid = (0.60669124838528588, -1.6011985486479436) +station = ('ksgt', 0.0037693324118911603) +zone = ('arz045', 0.0021079086351383984) + +[72025] +centroid = (0.61177745198486277, -1.6231558203822911) +station = ('krue', 0.0037346355193427984) +zone = ('arz039', 0.0020756517293639845) + +[72026] +centroid = (0.60218232988909859, -1.5934942289973277) +station = ('ksgt', 0.0041875023879448569) +zone = ('arz047', 0.0033601290653441566) + +[72027] +centroid = (0.61738959310123553, -1.6157013969739757) +station = ('kcca', 0.0043165687856541657) +zone = ('arz031', 0.0026730971450279551) + +[72029] +centroid = (0.60575353533806686, -1.5924135211244927) +station = ('ksgt', 0.0050679444404097837) +zone = ('arz047', 0.00071477879172469211) + +[72030] +centroid = (0.61831936490035788, -1.6174996097023053) +station = ('kcca', 0.0044053261127987046) +zone = ('arz031', 0.0029006783173537382) + +[72031] +centroid = (0.6219102227567036, -1.6149900007708626) +station = ('kcca', 0.0012983121602357815) +zone = ('arz023', 0.00093918629337319363) + +[72032] +centroid = (0.61201521818886184, -1.6120362579046652) +station = ('klrf', 0.004005931097991613) +zone = ('arz032', 0.0014822780774194392) + +[72034] +centroid = (0.61173652401390344, -1.614186067210809) +station = ('klrf', 0.0053386523531932292) +zone = ('arz032', 0.0027755213532601178) + +[72035] +centroid = (0.61223991187676363, -1.6136852275286568) +station = ('klrf', 0.0052262675796027431) +zone = ('arz032', 0.0021485446348172297) + +[72036] +centroid = (0.61105924899766706, -1.5930160785954515) +station = ('ksrc', 0.007496392943750727) +zone = ('arz034', 0.0030873983302047193) + +[72037] +centroid = (0.60278860491136388, -1.6035156477628913) +station = ('ksgt', 0.0045602055927060426) +zone = ('arz045', 0.0037919619540243109) + +[72038] +centroid = (0.60133315739483328, -1.5924476423113691) +station = ('ksgt', 0.005338378115628109) +zone = ('arz057', 0.0034417305617073174) + +[72039] +centroid = (0.61707457862454307, -1.6126376983649024) +station = ('kcca', 0.0043278589764616767) +zone = ('arz032', 0.003760460873186787) + +[72040] +centroid = (0.61041242997687784, -1.5976896165466865) +station = ('ksrc', 0.0050100891099684308) +zone = ('arz046', 0.0025252660357675356) + +[72041] +centroid = (0.60600947041957931, -1.5964065202937905) +station = ('ksgt', 0.0025594062881422576) +zone = ('arz046', 0.0022467536432309444) + +[72042] +centroid = (0.59795992464291881, -1.5939124971525682) +station = ('ksgt', 0.0068739447357820446) +zone = ('arz057', 0.00089856110336046795) + +[72044] +centroid = (0.62238489995336843, -1.6085822862215533) +station = ('kcca', 0.0041768678336925359) +zone = ('arz024', 0.0028947086977999074) + +[72045] +centroid = (0.61313139115209725, -1.6062664786502523) +station = ('klrf', 0.0040832969307576178) +zone = ('arz032', 0.0042895556983814746) + +[72046] +centroid = (0.60309347902510224, -1.6048238767570162) +station = ('klit', 0.005129625937430644) +zone = ('arz045', 0.0035899670994157255) + +[72047] +centroid = (0.61477097090471333, -1.6093800936759324) +station = ('klrf', 0.0054298211455876839) +zone = ('arz032', 0.0021898168907211) + +[72048] +centroid = (0.59720032244586596, -1.5904784571295141) +station = ('ksgt', 0.0091990865770901712) +zone = ('arz057', 0.0037912193386995334) + +[72051] +centroid = (0.62458441623660932, -1.6113056107199026) +station = ('kcca', 0.003726570082881285) +zone = ('arz014', 0.0026586014202097524) + +[72055] +centroid = (0.59513446347674281, -1.5944314009924787) +station = ('ksgt', 0.0092696801493076485) +zone = ('arz057', 0.0033662027540081146) + +[72057] +centroid = (0.59587179527254042, -1.6111198553276129) +station = ('kpbf', 0.0054950839858399153) +zone = ('arz055', 0.0030723072427579308) + +[72058] +centroid = (0.61515773586695521, -1.6122391698835019) +station = ('kcca', 0.0062720808821174088) +zone = ('arz032', 0.0018296873188346585) + +[72059] +centroid = (0.6133016131140443, -1.5937474588184997) +station = ('ksrc', 0.0061543644674104704) +zone = ('arz034', 0.0013103655811919053) + +[72060] +centroid = (0.61215168548307541, -1.598704281160626) +station = ('ksrc', 0.0031164235063219168) +zone = ('arz033', 0.0038126824632640118) + +[72061] +centroid = (0.6164985152516298, -1.610938794871011) +station = ('kcca', 0.0052877557334478622) +zone = ('arz032', 0.0031015992729913483) + +[72063] +centroid = (0.61641651968337108, -1.6194946083037975) +station = ('krue', 0.0045707403192573604) +zone = ('arz031', 0.001597260070272625) + +[72064] +centroid = (0.60722778005064149, -1.5988734035651444) +station = ('ksgt', 0.0033978188749707512) +zone = ('arz046', 0.0010411834608545407) + +[72065] +centroid = (0.6026047693812514, -1.6106320358016806) +station = ('klit', 0.0036745067068339968) +zone = ('arz044', 0.0042653799667901936) + +[72067] +centroid = (0.62069795196485333, -1.6084157992642056) +station = ('kcca', 0.0042297683669496522) +zone = ('arz024', 0.0018805309251902643) + +[72068] +centroid = (0.61418675684419322, -1.6006548087727772) +station = ('ksrc', 0.00053381894310312178) +zone = ('arz033', 0.0012548508160355471) + +[72069] +centroid = (0.60277209409664001, -1.5908686952969677) +station = ('ksgt', 0.0060897701769244009) +zone = ('arz047', 0.0025875284536867635) + +[72070] +centroid = (0.61100695893327728, -1.6180415518883422) +station = ('krue', 0.007021351448806174) +zone = ('arz039', 0.0033815646711774288) + +[72072] +centroid = (0.60255679028011411, -1.6011571494380865) +station = ('ksgt', 0.0028170125864957346) +zone = ('arz045', 0.0045535713570664816) + +[72073] +centroid = (0.6000640586825382, -1.5999271984609136) +station = ('ksgt', 0.0040940983869621871) +zone = ('arz056', 0.0042604935668200125) + +[72074] +centroid = (0.61223130740355136, -1.5899131973446707) +station = ('km19', 0.0098279234066179586) +zone = ('arz034', 0.0028292631492440839) + +[72076] +centroid = (0.609403856562028, -1.6081382919131386) +station = ('klrf', 0.00014990177866181588) +zone = ('arz044', 0.0035517368950899334) + +[72079] +centroid = (0.60022825925856582, -1.6087317387654017) +station = ('kpbf', 0.0050077588081446764) +zone = ('arz056', 0.0040847038183719209) + +[72080] +centroid = (0.61850974541516546, -1.620267858975601) +station = ('krue', 0.0050051921431649212) +zone = ('arz022', 0.0028443544153740402) + +[72081] +centroid = (0.61753251811368137, -1.5999507429525228) +station = ('ksrc', 0.0031169378435392625) +zone = ('arz033', 0.0024418826895929884) + +[72082] +centroid = (0.61492895810860382, -1.6000056335574981) +station = ('ksrc', 0.00097804536568312059) +zone = ('arz033', 0.0011067150533465423) + +[72083] +centroid = (0.60377096348084891, -1.6058549649192171) +station = ('klit', 0.0040437069471029319) +zone = ('arz045', 0.0032910833962499094) + +[72084] +centroid = (0.59592448676265797, -1.6173531940313557) +station = ('km89', 0.0058107337705305641) +zone = ('arz062', 0.0030454480944880156) + +[72085] +centroid = (0.6172175036369888, -1.6027196030910569) +station = ('ksrc', 0.0029582547402231493) +zone = ('arz033', 0.002222716516587763) + +[72086] +centroid = (0.60749832353799316, -1.604090751204716) +station = ('klrf', 0.0039629829210522357) +zone = ('arz045', 0.00096216448903221018) + +[72087] +centroid = (0.60382679656362026, -1.620122804661468) +station = ('khot', 0.0044058941173772551) +zone = ('arz043', 0.0023182645589911338) + +[72088] +centroid = (0.62125321101308284, -1.6103774969835696) +station = ('kcca', 0.0025866114587341491) +zone = ('arz024', 0.003565469186990067) + +[72099] +centroid = (0.60910730766882171, -1.6081718371413618) +station = ('klrf', 0.00032718526368691922) +zone = ('arz044', 0.0033247189726075552) + +[72101] +centroid = (0.61509568941204684, -1.5911171603692815) +station = ('km19', 0.0068980683011457856) +zone = ('arz034', 0.0014902597405157423) + +[72102] +centroid = (0.61343357745878757, -1.6027361313590731) +station = ('ksrc', 0.0017409728503845956) +zone = ('arz033', 0.0022527200196488096) + +[72103] +centroid = (0.60371787056500326, -1.6125104813157245) +station = ('klit', 0.0033581263322321111) +zone = ('arz044', 0.0033266512313387515) + +[72104] +centroid = (0.59938170475817842, -1.6200460799875502) +station = ('khot', 0.0047039021944954929) +zone = ('arz054', 0.0018397776227252142) + +[72106] +centroid = (0.61041063228774839, -1.6148302507844277) +station = ('klrf', 0.005428570364215568) +zone = ('arz032', 0.0040689685673149017) + +[72107] +centroid = (0.61334046414319376, -1.6150621352288477) +station = ('klrf', 0.006775975750513843) +zone = ('arz031', 0.0031562795603486773) + +[72108] +centroid = (0.60541607592719382, -1.5894019205935916) +station = ('ksgt', 0.0073501335104451879) +zone = ('arz047', 0.0019850700298286316) + +[72110] +centroid = (0.61359892995212162, -1.6193455571856772) +station = ('krue', 0.00482347698734969) +zone = ('arz031', 0.0021691392706815462) + +[72111] +centroid = (0.6150287385819404, -1.6079946164091143) +station = ('klrf', 0.0056242838413406169) +zone = ('arz032', 0.0032795540762867639) + +[72112] +centroid = (0.62102764466055504, -1.5922651681380733) +station = ('km19', 0.0012311519346378415) +zone = ('arz025', 0.00037106938538472871) + +[72113] +centroid = (0.60841380109054166, -1.6126422711275423) +station = ('klit', 0.0032240991759489878) +zone = ('arz044', 0.001989788633316396) + +[72114] +centroid = (0.60675554631492934, -1.6102189861809035) +station = ('klit', 0.00065526790695481633) +zone = ('arz044', 0.0007663219872229536) + +[72116] +centroid = (0.60737908264349683, -1.6099845011958982) +station = ('klit', 0.0011806248752455895) +zone = ('arz044', 0.0010903802055717837) + +[72117] +centroid = (0.60695128499054052, -1.6081587122653869) +station = ('klit', 0.0015205841195018736) +zone = ('arz044', 0.0024549930509198759) + +[72118] +centroid = (0.60807934364598204, -1.6113802584520105) +station = ('klit', 0.0022864703238357916) +zone = ('arz044', 0.0012452022554928783) + +[72119] +centroid = (0.60796842797201767, -1.6108036714803218) +station = ('klit', 0.0019498116382807833) +zone = ('arz044', 0.0011537226205976022) + +[72120] +centroid = (0.60912500530743685, -1.609917794711887) +station = ('klrf', 0.0013403784849176229) +zone = ('arz044', 0.0024886759805578806) + +[72121] +centroid = (0.61881208880148841, -1.6019703506964682) +station = ('ksrc', 0.0043044473803326138) +zone = ('arz033', 0.0035209462943983126) + +[72122] +centroid = (0.60705804678088493, -1.6194458438044967) +station = ('khot', 0.0068774114793818172) +zone = ('arz043', 0.0028461883251531652) + +[72123] +centroid = (0.61538110310462557, -1.5923579149345244) +station = ('km19', 0.0066641182744506221) +zone = ('arz034', 0.0012690889575037701) + +[72125] +centroid = (0.6120198433113796, -1.6195041901613909) +station = ('krue', 0.0054559710417413287) +zone = ('arz039', 0.0028886353468143776) + +[72126] +centroid = (0.60986671787965685, -1.621693339188875) +station = ('krue', 0.0059698759868814398) +zone = ('arz039', 0.0002334295039044733) + +[72127] +centroid = (0.61388966689891877, -1.6162838657052438) +station = ('kcca', 0.0077722911094997562) +zone = ('arz031', 0.0020613298333734928) + +[72128] +centroid = (0.59887604796729077, -1.6165489463120366) +station = ('khot', 0.0075053289564618849) +zone = ('arz055', 0.0028805955871251203) + +[72129] +centroid = (0.59909534858780378, -1.6151754420038873) +station = ('klit', 0.0083919217624698755) +zone = ('arz055', 0.0018266986562537829) + +[72130] +centroid = (0.62240882841741341, -1.6066879407580237) +station = ('kcca', 0.0056849169421286363) +zone = ('arz024', 0.0021929642502926758) + +[72131] +centroid = (0.61812388802413454, -1.6089799943982053) +station = ('kcca', 0.0049200285746181707) +zone = ('arz024', 0.0031288932140517735) + +[72132] +centroid = (0.60120087889082463, -1.609276892357262) +station = ('klit', 0.0050269240997876793) +zone = ('arz055', 0.0041686188673666991) + +[72134] +centroid = (0.60419300154727362, -1.5943690752848898) +station = ('ksgt', 0.0031188570415802675) +zone = ('arz047', 0.0023545353206400332) + +[72135] +centroid = (0.60873316143707157, -1.6151294351248044) +station = ('klit', 0.005068309632533876) +zone = ('arz044', 0.0037747259748089524) + +[72136] +centroid = (0.61508193621754115, -1.6058036871457935) +station = ('ksrc', 0.0038636099198821779) +zone = ('arz033', 0.003715772772412152) + +[72137] +centroid = (0.61672441321671545, -1.606352540835668) +station = ('ksrc', 0.0047894059328227809) +zone = ('arz024', 0.0035356084931548433) + +[72139] +centroid = (0.61716592915759239, -1.5971123663498819) +station = ('ksrc', 0.0041774875322771162) +zone = ('arz033', 0.0038497475201849075) + +[72140] +centroid = (0.59973797881838808, -1.5911676178379566) +station = ('ksgt', 0.0070865898084703999) +zone = ('arz057', 0.0032445653943405824) + +[72141] +centroid = (0.61982411796825732, -1.6174347881738862) +station = ('kcca', 0.0034989108662595559) +zone = ('arz023', 0.0025143235088843151) + +[72142] +centroid = (0.60549587238059488, -1.6066604867288901) +station = ('klit', 0.002658463769323082) +zone = ('arz045', 0.0026166345786263778) + +[72143] +centroid = (0.61493155864918925, -1.6011035154701727) +station = ('ksrc', 0.00036734700257843287) +zone = ('arz033', 0.00042767910473301494) + +[72149] +centroid = (0.61521273119168562, -1.6009244446889179) +station = ('ksrc', 0.00066708803865400538) +zone = ('arz033', 0.00030488361000510013) + +[72150] +centroid = (0.59888119668858408, -1.6125806086450696) +station = ('klit', 0.0076855833414129085) +zone = ('arz055', 0.00058962224801290778) + +[72152] +centroid = (0.59962730749051907, -1.6053421871849809) +station = ('kpbf', 0.0030877115408176514) +zone = ('arz056', 0.0016726612749743725) + +[72153] +centroid = (0.6221421246544161, -1.6113975721181901) +station = ('kcca', 0.0019309965265023386) +zone = ('arz023', 0.0029201270420359934) + +[72156] +centroid = (0.61577024171465011, -1.6176589931695975) +station = ('kcca', 0.0064931060094738499) +zone = ('arz031', 0.00040307237784466574) + +[72157] +centroid = (0.61559939143417242, -1.6154184267423497) +station = ('kcca', 0.0059348983203040299) +zone = ('arz031', 0.0020686291506614809) + +[72160] +centroid = (0.60087746938043018, -1.5974771576168414) +station = ('ksgt', 0.0030556334017752241) +zone = ('arz057', 0.0032592854296744178) + +[72165] +centroid = (0.62090868301873914, -1.596242564063858) +station = ('kbvx', 0.0038743378962121738) +zone = ('arz016', 0.0033037368623540634) + +[72166] +centroid = (0.59443285857073369, -1.5923261324888454) +station = ('kllq', 0.010540537392287549) +zone = ('arz065', 0.0039414951163328485) + +[72167] +centroid = (0.60070400110607436, -1.6170039012881539) +station = ('khot', 0.0066121601872717881) +zone = ('arz055', 0.0039221802740772973) + +[72168] +centroid = (0.60109245903769082, -1.6052105020929182) +station = ('kpbf', 0.004514904689422043) +zone = ('arz056', 0.0030449127600876793) + +[72169] +centroid = (0.61778525924266259, -1.5922038547214508) +station = ('km19', 0.004267070399222331) +zone = ('arz025', 0.0035455583393134362) + +[72170] +centroid = (0.60363957509475874, -1.5955364562083789) +station = ('ksgt', 0.0021569870907641735) +zone = ('arz047', 0.0034620570162309395) + +[72173] +centroid = (0.61261233023255424, -1.6093880698306142) +station = ('klrf', 0.0033187088485429369) +zone = ('arz032', 0.0019108732793277944) + +[72175] +centroid = (0.59928873106892477, -1.6015846329317773) +station = ('kpbf', 0.0036235388829144156) +zone = ('arz056', 0.0026896593761072192) + +[72176] +centroid = (0.61090637560848493, -1.6028273248124898) +station = ('ksrc', 0.003916576148301272) +zone = ('arz045', 0.0043982728627552422) + +[72179] +centroid = (0.619654454511671, -1.6031818360901549) +station = ('kbvx', 0.0049582562468279082) +zone = ('arz024', 0.0025047151415417148) + +[72181] +centroid = (0.6136995830900841, -1.613472454439546) +station = ('klrf', 0.0060153108078980682) +zone = ('arz032', 0.0016355983071213681) + +[72201] +centroid = (0.60644789712768021, -1.6105906889517008) +station = ('klit', 0.00071064215603634025) +zone = ('arz044', 0.00060691828900235603) + +[72202] +centroid = (0.60616173294352327, -1.6097720946259304) +station = ('klit', 4.9366316880961806e-05) +zone = ('arz044', 0.0013209294467003353) + +[72204] +centroid = (0.6059367250963561, -1.6119570897697948) +station = ('klit', 0.0018140133502572047) +zone = ('arz044', 0.0011305453643867317) + +[72205] +centroid = (0.60650760484139099, -1.6118326128875424) +station = ('klit', 0.0017163316725928789) +zone = ('arz044', 0.00066028088698506793) + +[72206] +centroid = (0.60445108338376619, -1.6098041912308747) +station = ('klit', 0.0017601033031042323) +zone = ('arz044', 0.002639312710677964) + +[72207] +centroid = (0.60691260849431627, -1.6117504602396509) +station = ('klit', 0.0017679440946697567) +zone = ('arz044', 0.000501488527790147) + +[72209] +centroid = (0.6052169687661263, -1.61172558929781) +station = ('klit', 0.0018864456834419721) +zone = ('arz044', 0.0017006258730738486) + +[72210] +centroid = (0.60587185120805964, -1.6145770384165483) +station = ('klit', 0.0039611017972152112) +zone = ('arz043', 0.0026840458988702381) + +[72211] +centroid = (0.60651161909867068, -1.6129917907635469) +station = ('klit', 0.0026600769337873161) +zone = ('arz044', 0.0015544533378496945) + +[72212] +centroid = (0.60712827882998521, -1.6129465169227504) +station = ('klit', 0.0027620331212406843) +zone = ('arz044', 0.0015059141020891962) + +[72223] +centroid = (0.60717932971060606, -1.6146279845774141) +station = ('klit', 0.004102528391237357) +zone = ('arz043', 0.0034321409385217948) + +[72227] +centroid = (0.60694318666281133, -1.6122404439738558) +station = ('klit', 0.002153609610800758) +zone = ('arz044', 0.00090483717841681466) + +[72301] +centroid = (0.61339046782626339, -1.5740991180582005) +station = ('kawm', 0.00065982964582465451) +zone = ('arz036', 0.0020326301707360942) + +[72311] +centroid = (0.60604512749619754, -1.5863557101836232) +station = ('kckm', 0.0092097163095742687) +zone = ('arz049', 0.00185657128201076) + +[72315] +centroid = (0.626618440400176, -1.5691098500452796) +station = ('khka', 0.0011260203358474205) +zone = ('arz028', 0.0032252343401398473) + +[72320] +centroid = (0.60778721043578321, -1.5799360750355227) +station = ('kuta', 0.0035602343591233285) +zone = ('msz007', 0.0036729366243231955) + +[72321] +centroid = (0.62510609515003046, -1.5698290827767338) +station = ('khka', 0.0025832590056385036) +zone = ('arz028', 0.0017957459762978835) + +[72322] +centroid = (0.61199856774779782, -1.585144573855787) +station = ('kuta', 0.0095571759681609813) +zone = ('arz048', 0.001299442317564444) + +[72324] +centroid = (0.61767931775706653, -1.5845244932791382) +station = ('km19', 0.0070158862903633937) +zone = ('arz035', 0.0016656359294408875) + +[72325] +centroid = (0.61648687390551904, -1.5750891386231018) +station = ('kawm', 0.0032994446081864815) +zone = ('arz036', 0.0021856126859676234) + +[72326] +centroid = (0.6129091932850258, -1.5866894171366046) +station = ('km19', 0.009837044813773798) +zone = ('arz048', 0.0028573081917239065) + +[72327] +centroid = (0.61493681209023776, -1.5765900694199395) +station = ('kawm', 0.0022410680239065136) +zone = ('arz036', 0.00055168621124403801) + +[72328] +centroid = (0.59317116005446691, -1.5898412199663188) +station = ('kglh', 0.0089152737277691969) +zone = ('arz065', 0.0035613381127369156) + +[72329] +centroid = (0.62159147327541187, -1.5705881788283036) +station = ('knqa', 0.0048024506235146295) +zone = ('arz028', 0.0027688135134532207) + +[72330] +centroid = (0.62112400428855763, -1.5744667367585483) +station = ('knqa', 0.006295179563740338) +zone = ('arz028', 0.0037893042730984881) + +[72331] +centroid = (0.61577203940377978, -1.5789341338718303) +station = ('kawm', 0.0042057714852790119) +zone = ('arz036', 0.0025817054214841151) + +[72332] +centroid = (0.61264460137042365, -1.5761865492968783) +station = ('kawm', 0.0012090991208689758) +zone = ('arz036', 0.0018491765610197655) + +[72333] +centroid = (0.59868297964543504, -1.585922135490843) +station = ('kckm', 0.0051422111467278779) +zone = ('arz058', 0.0022205184863549059) + +[72335] +centroid = (0.61076685398808039, -1.5838162735752639) +station = ('kuta', 0.0079190924864096079) +zone = ('arz048', 0.0004830516731675005) + +[72338] +centroid = (0.61808992391689077, -1.5733755918167862) +station = ('knqa', 0.0040732412237245502) +zone = ('arz036', 0.0042659081179934142) + +[72339] +centroid = (0.61823073708094167, -1.5754756243326633) +station = ('kawm', 0.005062691562864762) +zone = ('arz036', 0.0037818551399705761) + +[72340] +centroid = (0.60980617240790524, -1.5887353095390848) +station = ('ksgt', 0.0097341389963963229) +zone = ('arz049', 0.0044797780466810568) + +[72341] +centroid = (0.60883973124119839, -1.5839532295616681) +station = ('kuta', 0.0068322971849368776) +zone = ('arz049', 0.0018483252809177928) + +[72342] +centroid = (0.60124770607465572, -1.58274291353858) +station = ('kckm', 0.0036161937336877787) +zone = ('arz058', 0.0023810762424409464) + +[72346] +centroid = (0.61230211541130475, -1.5792523946609316) +station = ('kawm', 0.0036949668325708001) +zone = ('arz036', 0.0033292003656115346) + +[72347] +centroid = (0.61745809727437628, -1.5885012608863924) +station = ('km19', 0.0050824334703232386) +zone = ('arz035', 0.0037452842207321303) + +[72348] +centroid = (0.60984833956263329, -1.5780896563132529) +station = ('kawm', 0.0042587704969642582) +zone = ('arz036', 0.0048992970036947515) + +[72350] +centroid = (0.61958757349473459, -1.5730528106249226) +station = ('knqa', 0.0044502967376995163) +zone = ('arz028', 0.00473232204999727) + +[72351] +centroid = (0.62262376571479638, -1.5724775850100501) +station = ('kbyh', 0.0055164409852886207) +zone = ('arz028', 0.0016844530006867289) + +[72353] +centroid = (0.59865692187970276, -1.5883767316442627) +station = ('kckm', 0.0071698700250551707) +zone = ('arz058', 0.0032000322638327796) + +[72354] +centroid = (0.62166624318056718, -1.5763689711102968) +station = ('kjbr', 0.0059974826435172822) +zone = ('arz028', 0.004533218378119) + +[72355] +centroid = (0.60168831444432169, -1.5847188705979329) +station = ('kckm', 0.005139575490436689) +zone = ('arz058', 0.0010797230798820581) + +[72358] +centroid = (0.62469157945268183, -1.5688906192379366) +station = ('khka', 0.00259408794583219) +zone = ('arz028', 0.0023628658695481765) + +[72359] +centroid = (0.61132521972237852, -1.583399768202568) +station = ('kuta', 0.0080824797461914975) +zone = ('arz048', 0.00037476760443803817) + +[72360] +centroid = (0.60648884255193214, -1.5844229151166722) +station = ('kuta', 0.0063448832409120463) +zone = ('arz049', 0.00054743860211732857) + +[72364] +centroid = (0.61466195763963383, -1.5740989086186903) +station = ('kawm', 0.0015986705023027347) +zone = ('arz036', 0.0017148031013666991) + +[72365] +centroid = (0.61995664081836133, -1.5786514603461774) +station = ('kjbr', 0.006145738887103974) +zone = ('arz027', 0.0031612735241498043) + +[72366] +centroid = (0.60245463615899475, -1.5875664974456092) +station = ('kckm', 0.0075258398918385651) +zone = ('arz058', 0.0022569513933388889) + +[72367] +centroid = (0.59685595153115489, -1.5872705070577635) +station = ('kckm', 0.0065112992597453285) +zone = ('arz058', 0.0042617129975985827) + +[72368] +centroid = (0.60755612884281918, -1.5886575202143234) +station = ('ksgt', 0.0086169533736568209) +zone = ('arz047', 0.0034715887270168068) + +[72370] +centroid = (0.62333392273414034, -1.5712799749839166) +station = ('kbyh', 0.004538040247407448) +zone = ('arz028', 0.00094074367586156644) + +[72372] +centroid = (0.61029957698744397, -1.5873867634392391) +station = ('kuta', 0.0099989871875459987) +zone = ('arz048', 0.0030506236831555227) + +[72373] +centroid = (0.61625265071990132, -1.5811675619024375) +station = ('kawm', 0.0059869555207132854) +zone = ('arz035', 0.0025321863891657557) + +[72374] +centroid = (0.60329639100393917, -1.5853436286569769) +station = ('kckm', 0.0065798364131116512) +zone = ('arz058', 0.0024182127594229406) + +[72376] +centroid = (0.61238772381111506, -1.5760279512277497) +station = ('kawm', 0.0012436362194340102) +zone = ('arz036', 0.0021100981573889603) + +[72377] +centroid = (0.62295766465399538, -1.5766598302301416) +station = ('kjbr', 0.0050787275447910169) +zone = ('arz028', 0.0041829245116366083) + +[72379] +centroid = (0.59436803704231456, -1.5889658326266884) +station = ('kckm', 0.0087812820422017417) +zone = ('arz065', 0.004944738804909185) + +[72383] +centroid = (0.60198247223645285, -1.5889411362177726) +station = ('ksgt', 0.0078116714492719678) +zone = ('arz058', 0.0029671102738122478) + +[72384] +centroid = (0.61742470912578562, -1.5746266089180307) +station = ('kawm', 0.0042369820607493927) +zone = ('arz036', 0.0031959064142158635) + +[72386] +centroid = (0.61872340862219466, -1.5771841271374407) +station = ('kawm', 0.0058450133847324443) +zone = ('arz036', 0.0043070520304090663) + +[72389] +centroid = (0.5998931211355979, -1.5867150385700239) +station = ('kckm', 0.0059269793905793126) +zone = ('arz058', 0.0013563290312223835) + +[72390] +centroid = (0.60302949525472427, -1.5826542682658713) +station = ('kckm', 0.005014617733165568) +zone = ('arz058', 0.0032359393528956061) + +[72392] +centroid = (0.61029416646676282, -1.5899351710399534) +station = ('ksgt', 0.0093004942658617019) +zone = ('arz034', 0.0043580477787655524) + +[72394] +centroid = (0.61191294189469503, -1.581512997467992) +station = ('kawm', 0.0055847205491305531) +zone = ('arz048', 0.0020236252806475011) + +[72395] +centroid = (0.62121703033768894, -1.5721840206298647) +station = ('knqa', 0.0050866850603761204) +zone = ('arz028', 0.0030026368560076692) + +[72396] +centroid = (0.61487829120041848, -1.5851731274423495) +station = ('km19', 0.0087012465229509874) +zone = ('arz035', 0.0013710999150669198) + +[72401] +centroid = (0.6263347720368494, -1.5822592304429748) +station = ('kjbr', 0.00093007524036670076) +zone = ('arz026', 0.0010269556703409938) + +[72404] +centroid = (0.62437282997138999, -1.5843894746082041) +station = ('kjbr', 0.0020977388273920772) +zone = ('arz026', 0.0022930687100213569) + +[72410] +centroid = (0.62728435332298182, -1.5899018701578254) +station = ('karg', 0.0041963415960467572) +zone = ('arz017', 0.0017637589214947887) + +[72411] +centroid = (0.62386951192169982, -1.5808408188131717) +station = ('kjbr', 0.0018666277746142159) +zone = ('arz026', 0.0017016879005459153) + +[72412] +centroid = (0.6304856711435749, -1.5829155091483098) +station = ('karg', 0.0031376656209747156) +zone = ('arz018', 0.0019105311680144095) + +[72413] +centroid = (0.63358645799925317, -1.585146755517352) +station = ('k4m9', 0.00296585566859053) +zone = ('arz008', 0.0029726743968112594) + +[72414] +centroid = (0.62525738028959332, -1.577324713408689) +station = ('kjbr', 0.0039078303158105966) +zone = ('arz026', 0.0036631254993733154) + +[72415] +centroid = (0.63053049119876614, -1.5913030379346189) +station = ('karg', 0.0036427314355167188) +zone = ('arz017', 0.001771815926512875) + +[72416] +centroid = (0.62768981076151276, -1.5846842956254508) +station = ('kjbr', 0.0030730621436117012) +zone = ('arz026', 0.0032724002212780809) + +[72417] +centroid = (0.626857271255019, -1.5802128318950115) +station = ('kjbr', 0.0021299294791095585) +zone = ('arz026', 0.001991407862851366) + +[72419] +centroid = (0.62394820881767232, -1.5769669383653224) +station = ('kjbr', 0.0044440866908961561) +zone = ('arz028', 0.0042499915595447142) + +[72421] +centroid = (0.62457167533306979, -1.5877600719129481) +station = ('km19', 0.0038764833118098744) +zone = ('arz025', 0.0047286232571640439) + +[72422] +centroid = (0.63576113824723812, -1.5799962714414242) +station = ('k4m9', 0.0017865388828864506) +zone = ('arz009', 0.0018445667337910557) + +[72424] +centroid = (0.63513451268589449, -1.5836482856347596) +station = ('k4m9', 0.0012245185154806659) +zone = ('arz008', 0.0041843349774666654) + +[72425] +centroid = (0.63207929637698601, -1.5835772681874958) +station = ('karg', 0.0029669460828368925) +zone = ('arz018', 0.0029778124100995769) + +[72426] +centroid = (0.62601830893687771, -1.5715230644421345) +station = ('kbyh', 0.0021519404066899762) +zone = ('arz028', 0.0018288869936962174) + +[72427] +centroid = (0.62599822019718732, -1.587128629242869) +station = ('kjbr', 0.0040853728052724992) +zone = ('arz017', 0.0038868455901161576) + +[72428] +centroid = (0.62376934747592794, -1.5747162664817058) +station = ('kbyh', 0.0055524493880512987) +zone = ('arz028', 0.002454073219230185) + +[72429] +centroid = (0.61944143707646504, -1.5869550387954656) +station = ('km19', 0.0043738827383484535) +zone = ('arz035', 0.0040602655347961565) + +[72430] +centroid = (0.63415716321136284, -1.5737856220179574) +station = ('kbyh', 0.0071376511725206289) +zone = ('moz113', 0.0015725342122112685) + +[72431] +centroid = (0.62190568490064835, -1.589635567820556) +station = ('km19', 0.0013744211065016014) +zone = ('arz025', 0.0020036159206089006) + +[72432] +centroid = (0.62049540650515944, -1.5833617200248746) +station = ('kjbr', 0.0050132560210688739) +zone = ('arz027', 0.00089805541080776544) + +[72433] +centroid = (0.62876779592071441, -1.5890810767171974) +station = ('karg', 0.0026342748325571693) +zone = ('arz017', 0.00088207391241421009) + +[72434] +centroid = (0.63211525015957704, -1.5909784765069179) +station = ('karg', 0.0036827476929381887) +zone = ('arz008', 0.0028200125971818415) + +[72435] +centroid = (0.63382956491076337, -1.5809035284931956) +station = ('k4m9', 0.0017761855589021388) +zone = ('arz009', 0.0024538598975223252) + +[72436] +centroid = (0.63246084280476433, -1.5792583636869733) +station = ('k4m9', 0.0036680349062673239) +zone = ('arz018', 0.0023354929927972205) + +[72437] +centroid = (0.62567229741266994, -1.5787948391442288) +station = ('kjbr', 0.0027252124823102537) +zone = ('arz026', 0.0024882072821737077) + +[72438] +centroid = (0.62743029775503367, -1.5745968859608692) +station = ('kbyh', 0.0037951275877318924) +zone = ('arz028', 0.0039767892312439169) + +[72440] +centroid = (0.62841550121119938, -1.5922124766479555) +station = ('karg', 0.0049140171312602766) +zone = ('arz017', 0.0018045295058517264) + +[72441] +centroid = (0.63594479924442548, -1.5775213771088037) +station = ('k4m9', 0.0037729269800722276) +zone = ('arz009', 0.0012764150604839841) + +[72442] +centroid = (0.62515201476265037, -1.5740547343353224) +station = ('kbyh', 0.0042285860324805585) +zone = ('arz028', 0.002107023728808994) + +[72443] +centroid = (0.63138629594418905, -1.5779768556836964) +station = ('k4m9', 0.0051557648342947992) +zone = ('arz018', 0.0023150814838342757) + +[72444] +centroid = (0.6357998671033398, -1.5856803026696866) +station = ('k4m9', 0.0028918203387660255) +zone = ('arz008', 0.002891435823537764) + +[72445] +centroid = (0.62790843070361757, -1.5887143481347685) +station = ('karg', 0.0031463671690926502) +zone = ('arz017', 0.0016030663351517809) + +[72447] +centroid = (0.62676302347541124, -1.5765120182957901) +station = ('kjbr', 0.0047578310014744401) +zone = ('arz028', 0.0046426046471621301) + +[72449] +centroid = (0.63141587927501031, -1.5851016387561876) +station = ('karg', 0.0015694104783718591) +zone = ('arz018', 0.0038171313162548258) + +[72450] +centroid = (0.62970687032475003, -1.5798099051838961) +station = ('kjbr', 0.0046932427908097226) +zone = ('arz018', 0.00089742358050798083) + +[72453] +centroid = (0.63345986926860587, -1.5831530484595062) +station = ('k4m9', 0.0020124668652456838) +zone = ('arz018', 0.003731839143816887) + +[72454] +centroid = (0.63541795415641844, -1.5743318926205392) +station = ('kpof', 0.006481742185323062) +zone = ('moz113', 0.0028294259701111451) + +[72455] +centroid = (0.63389862758926485, -1.5887619258101777) +station = ('karg', 0.0036192657200546808) +zone = ('arz008', 0.00038082906143489451) + +[72456] +centroid = (0.63612458561067342, -1.5767017530387746) +station = ('k4m9', 0.0044536849371350946) +zone = ('arz009', 0.0017660540657382959) + +[72457] +centroid = (0.62986997134334888, -1.5894403003838429) +station = ('karg', 0.0022733505862233515) +zone = ('arz017', 0.00099539005149320626) + +[72458] +centroid = (0.62958565720819903, -1.5910168213905842) +station = ('karg', 0.0035718196736994078) +zone = ('arz017', 0.0009085328307441527) + +[72459] +centroid = (0.63342402020577004, -1.593363259490258) +station = ('karg', 0.0059834749536383834) +zone = ('arz007', 0.0034909098040838012) + +[72460] +centroid = (0.63442409386716281, -1.5912045140983437) +station = ('karg', 0.0051888089776980905) +zone = ('arz008', 0.0019945265219225836) + +[72461] +centroid = (0.63294265839807007, -1.5757758558705917) +station = ('k4m9', 0.0056435315590847943) +zone = ('arz009', 0.0025908238233595649) + +[72462] +centroid = (0.63510988609014896, -1.5840492226705276) +station = ('k4m9', 0.0015477522660559341) +zone = ('arz008', 0.0038635300467403902) + +[72464] +centroid = (0.6363077404623777, -1.5733114858733606) +station = ('kpof', 0.0059088086045429519) +zone = ('moz113', 0.0033287445854684808) + +[72466] +centroid = (0.62925739568248396, -1.594021894390083) +station = ('karg', 0.0060023311598436432) +zone = ('arz007', 0.0028163996834468996) + +[72467] +centroid = (0.62554413788569596, -1.5825878061279552) +station = ('kjbr', 0.00038640532815632978) +zone = ('arz026', 0.00063143517268630987) + +[72469] +centroid = (0.62747977783932773, -1.5932927656417699) +station = ('km19', 0.0057158249497861729) +zone = ('arz017', 0.0030043482717397583) + +[72470] +centroid = (0.6365359248087834, -1.5830530236400744) +station = ('k4m9', 0.0014374668189626719) +zone = ('moz108', 0.0039016142353448216) + +[72471] +centroid = (0.62531436528967088, -1.5901720645793265) +station = ('km19', 0.0034515792520604552) +zone = ('arz017', 0.0037252354378193376) + +[72472] +centroid = (0.62127523706824295, -1.5801194916866148) +station = ('kjbr', 0.0044482822442957161) +zone = ('arz027', 0.0018686065878461319) + +[72473] +centroid = (0.62375028848049618, -1.5912396999360641) +station = ('km19', 0.001759887861908068) +zone = ('arz025', 0.0025000373619213797) + +[72476] +centroid = (0.62918271304379114, -1.5868518200235027) +station = ('karg', 0.0014636391934494263) +zone = ('arz017', 0.0026454607145002438) + +[72478] +centroid = (0.63613565099813096, -1.5892946177511789) +station = ('k4m9', 0.0058165134181872476) +zone = ('arz008', 0.0019107148002105183) + +[72479] +centroid = (0.62192472644278762, -1.5865996723064673) +station = ('km19', 0.0038396909945402329) +zone = ('arz027', 0.0035961995654841946) + +[72482] +centroid = (0.633147891664812, -1.5946429174445278) +station = ('karg', 0.0068088580386041235) +zone = ('arz007', 0.00257469729790709) + +[72501] +centroid = (0.62467377709431138, -1.5996532690348129) +station = ('kbvx', 0.0010105927396395222) +zone = ('arz016', 0.001467169163679806) + +[72512] +centroid = (0.6321656029084971, -1.6012752209619838) +station = ('kbvx', 0.0086094295399338511) +zone = ('arz006', 0.0029914357756542719) + +[72513] +centroid = (0.63226794901583394, -1.5997392265004735) +station = ('kbvx', 0.0086044293554832386) +zone = ('arz007', 0.0027584365995959158) + +[72515] +centroid = (0.63314221934474291, -1.6066878534915612) +station = ('kbpk', 0.005980154596991711) +zone = ('arz015', 0.0037539182136858708) + +[72517] +centroid = (0.63062782821114993, -1.6052364202323099) +station = ('kbpk', 0.0080596347789827286) +zone = ('arz015', 0.0010672451043815016) + +[72519] +centroid = (0.63065849364610749, -1.608849234330646) +station = ('kbpk', 0.0057209548122237348) +zone = ('arz005', 0.0034661428627558869) + +[72520] +centroid = (0.63514102276400453, -1.6008193584146553) +station = ('kuno', 0.0089558989452360235) +zone = ('arz006', 0.0013877751579100209) + +[72521] +centroid = (0.62744014141201487, -1.5976939100566465) +station = ('kbvx', 0.0040779850143770457) +zone = ('arz016', 0.0036558762743209485) + +[72522] +centroid = (0.62501783384975707, -1.5964601019018267) +station = ('kbvx', 0.0028806781787428632) +zone = ('arz016', 0.0018564736139486269) + +[72523] +centroid = (0.62182716253760117, -1.6029830256350601) +station = ('kbvx', 0.0033093946706495383) +zone = ('arz024', 0.0030297066030748705) + +[72524] +centroid = (0.62543931341082115, -1.5934723251152152) +station = ('km19', 0.003863773806673642) +zone = ('arz016', 0.0041638992564821597) + +[72526] +centroid = (0.62627995124504421, -1.6018510399888017) +station = ('kbvx', 0.0031923605919613168) +zone = ('arz016', 0.0038611828171499349) + +[72527] +centroid = (0.62377823120182063, -1.600204548732348) +station = ('kbvx', 0.00050830655980226242) +zone = ('arz016', 0.0016317408596777311) + +[72528] +centroid = (0.63228892787344304, -1.6081168941765092) +station = ('kbpk', 0.0052186716371208424) +zone = ('arz005', 0.0029842063094210349) + +[72529] +centroid = (0.63342052954726613, -1.5980982504844561) +station = ('karg', 0.0095324362666944686) +zone = ('arz007', 0.0025800950006152558) + +[72530] +centroid = (0.62140556080348941, -1.6047380938242808) +station = ('kbvx', 0.0047502506616967817) +zone = ('arz024', 0.0016352395876987047) + +[72531] +centroid = (0.63407783799685968, -1.6082198860556691) +station = ('kbpk', 0.0045778569793531298) +zone = ('arz005', 0.0028124183715103777) + +[72532] +centroid = (0.63014039265765298, -1.5987200414837717) +station = ('kbvx', 0.0065146574889241807) +zone = ('arz007', 0.0019600194989510275) + +[72533] +centroid = (0.62794461137901136, -1.610007120663004) +station = ('kcca', 0.0072075676521811613) +zone = ('arz014', 0.0024300909680620578) + +[72534] +centroid = (0.62135531277432443, -1.6012416582804678) +station = ('kbvx', 0.0026688497785706524) +zone = ('arz016', 0.0034839376399978515) + +[72536] +centroid = (0.63080227386988674, -1.601659682089613) +station = ('kbvx', 0.0073312262862813317) +zone = ('arz015', 0.0022062019121927207) + +[72537] +centroid = (0.63610498556317352, -1.6095872468048515) +station = ('kbpk', 0.0036988554321857269) +zone = ('arz005', 0.0032064480882772429) + +[72538] +centroid = (0.63609488010680437, -1.6074532327284381) +station = ('kbpk', 0.0053275051922208969) +zone = ('arz005', 0.0043250450560880114) + +[72539] +centroid = (0.6341154672955327, -1.6006614235706424) +station = ('kuno', 0.0099773725547083504) +zone = ('arz006', 0.0017368754811406125) + +[72540] +centroid = (0.6269171360483623, -1.6041329532660293) +station = ('kbvx', 0.0049114910279521428) +zone = ('arz015', 0.003058078351435331) + +[72542] +centroid = (0.63354622815999473, -1.5964096095265665) +station = ('karg', 0.0082814047126973621) +zone = ('arz007', 0.002422237665955469) + +[72543] +centroid = (0.61872862715665811, -1.6054811153934396) +station = ('ksrc', 0.0054790079590115023) +zone = ('arz024', 0.0016275951998592747) + +[72544] +centroid = (0.63536032338451753, -1.6089900474946968) +station = ('kbpk', 0.0039630971502122268) +zone = ('arz005', 0.0029129386252763215) + +[72546] +centroid = (0.62096863507854516, -1.6046742322269503) +station = ('kbvx', 0.004929910776462796) +zone = ('arz024', 0.0014089653910483442) + +[72550] +centroid = (0.6232592750020326, -1.60193254686487) +station = ('kbvx', 0.0019410970541920759) +zone = ('arz016', 0.0030836262522978141) + +[72553] +centroid = (0.62309126960823558, -1.5966418604901293) +station = ('kbvx', 0.0024646306977967095) +zone = ('arz016', 0.0014494950037747794) + +[72554] +centroid = (0.63597525523987275, -1.5980620523557698) +station = ('kuno', 0.0090878430055042255) +zone = ('arz006', 0.0037321030179283126) + +[72555] +centroid = (0.62449926162240443, -1.6035732959880848) +station = ('kbvx', 0.0033351892398872773) +zone = ('arz016', 0.0044192428585152731) + +[72556] +centroid = (0.62856071260496538, -1.6051795399519875) +station = ('kbvx', 0.0066676511896834921) +zone = ('arz015', 0.0016241612196034611) + +[72560] +centroid = (0.62571818211870478, -1.6073446732489642) +station = ('kcca', 0.0066803365126352219) +zone = ('arz014', 0.00089949121608390954) + +[72561] +centroid = (0.62741132602606442, -1.6023612695423297) +station = ('kbvx', 0.0043670831241641728) +zone = ('arz015', 0.0029601994919807432) + +[72562] +centroid = (0.62370159379436552, -1.595250466557147) +station = ('km19', 0.0036190952438213998) +zone = ('arz016', 0.0023919678505822987) + +[72564] +centroid = (0.62126530614479913, -1.5962189846656636) +station = ('kbvx', 0.0036434914722624041) +zone = ('arz016', 0.0030058651202115572) + +[72565] +centroid = (0.63211315576447458, -1.6041803913150985) +station = ('kbpk', 0.0082158917558793221) +zone = ('arz015', 0.0021383262510319108) + +[72566] +centroid = (0.63210170640458152, -1.6070645304507265) +station = ('kbpk', 0.0060611620906512748) +zone = ('arz015', 0.0031471930372378976) + +[72567] +centroid = (0.62508213177940053, -1.604410582790144) +station = ('kbvx', 0.0041568879043980596) +zone = ('arz014', 0.0033593326194583557) + +[72568] +centroid = (0.62080307314570093, -1.5991578922332195) +station = ('kbvx', 0.0028831334772900642) +zone = ('arz016', 0.003104103427649062) + +[72569] +centroid = (0.63086981811193887, -1.595219818575482) +station = ('karg', 0.0068072637305376712) +zone = ('arz007', 0.0011644614407730462) + +[72571] +centroid = (0.62188659099863153, -1.5976247601116824) +station = ('kbvx', 0.002391551568628786) +zone = ('arz016', 0.0019752362298284198) + +[72572] +centroid = (0.62655822654098214, -1.5933293128363066) +station = ('km19', 0.0048479062537556544) +zone = ('arz017', 0.003592639666515247) + +[72573] +centroid = (0.62964786074274015, -1.6021662464517119) +station = ('kbvx', 0.0063358374984988529) +zone = ('arz015', 0.001668995427220829) + +[72576] +centroid = (0.63440163147968964, -1.6031902136705645) +station = ('kbpk', 0.0085887050888905775) +zone = ('arz006', 0.00078502570755777633) + +[72577] +centroid = (0.6287920909039022, -1.6007099437238479) +station = ('kbvx', 0.0052068425597329359) +zone = ('arz015', 0.0030528482559945371) + +[72578] +centroid = (0.63622754258324854, -1.6037194149530616) +station = ('kuno', 0.007510493137649476) +zone = ('arz006', 0.0015712443323616062) + +[72579] +centroid = (0.62568006412784127, -1.5960895685016283) +station = ('kbvx', 0.0034849672869975957) +zone = ('arz016', 0.0025345469761344102) + +[72581] +centroid = (0.6204811995250481, -1.6055151667671461) +station = ('kbvx', 0.0057693320124447287) +zone = ('arz024', 0.00057730519431862745) + +[72583] +centroid = (0.6355577375762107, -1.6056001119418408) +station = ('kbpk', 0.006692169009659475) +zone = ('arz006', 0.0025364110467234547) + +[72584] +centroid = (0.63077939260339311, -1.6029749447606236) +station = ('kbvx', 0.0076234177785928147) +zone = ('arz015', 0.0012700394489733677) + +[72585] +centroid = (0.63151637533334015, -1.605844929276018) +station = ('kbpk', 0.0072025246723948395) +zone = ('arz015', 0.0020394599206900979) + +[72587] +centroid = (0.6322558015242401, -1.6025047356068436) +station = ('kbvx', 0.0089084578327839285) +zone = ('arz015', 0.0026565516378185944) + +[72601] +centroid = (0.63247292048318815, -1.6246566639126661) +station = ('khro', 0.0010305277170724145) +zone = ('arz003', 0.0012341517409280732) + +[72611] +centroid = (0.63259102691367064, -1.6289283223503372) +station = ('khro', 0.0025719234792877491) +zone = ('arz003', 0.0035453001157518568) + +[72616] +centroid = (0.63408942698309279, -1.6328484191167789) +station = ('kbbg', 0.0060829547321154332) +zone = ('arz002', 0.00030100046225129171) + +[72617] +centroid = (0.62871770497118229, -1.6125189461625966) +station = ('kflp', 0.0055475881368089895) +zone = ('arz014', 0.0043597912648172359) + +[72619] +centroid = (0.63483686423525931, -1.6160288207416498) +station = ('kflp', 0.0012876414081665504) +zone = ('arz004', 0.0022489091042212357) + +[72623] +centroid = (0.63626948284517393, -1.6110871827640156) +station = ('kbpk', 0.0027097411313128043) +zone = ('arz005', 0.002965544834764273) + +[72624] +centroid = (0.62932584749574716, -1.6298196096394528) +station = ('khro', 0.004895606972680008) +zone = ('arz012', 0.0033366999790270797) + +[72626] +centroid = (0.6339423655403198, -1.6153296942031785) +station = ('kflp', 0.00059155404863631546) +zone = ('arz004', 0.0020887892786498248) + +[72628] +centroid = (0.62552382225320269, -1.6280738789617308) +station = ('khro', 0.0076774393724542648) +zone = ('arz012', 0.0016647051358783824) + +[72629] +centroid = (0.62375452963057842, -1.6155953507686245) +station = ('kcca', 0.0029301649960564017) +zone = ('arz023', 0.0028478786958372193) + +[72630] +centroid = (0.63667506245675243, -1.6214965184091275) +station = ('kbbg', 0.0042352706142741664) +zone = ('moz104', 0.0036145789023356292) + +[72631] +centroid = (0.63638952659112613, -1.6356067200133384) +station = ('krog', 0.0056818962277278796) +zone = ('arz002', 0.0032475598370542047) + +[72632] +centroid = (0.63483232637920428, -1.6361395864872648) +station = ('krog', 0.0050058434060096723) +zone = ('arz002', 0.0029453364395547669) + +[72633] +centroid = (0.63056782379146636, -1.6209355346809515) +station = ('khro', 0.0045858963725521149) +zone = ('arz004', 0.0036032499213258526) + +[72634] +centroid = (0.63181116144400207, -1.6146654393431619) +station = ('kflp', 0.0020012478247830351) +zone = ('arz005', 0.0029127040311401017) + +[72635] +centroid = (0.63387537980362829, -1.6146700819189721) +station = ('kbpk', 0.0010718400464745637) +zone = ('arz005', 0.0025453987730802352) + +[72636] +centroid = (0.62813879671158823, -1.618203378816587) +station = ('kflp', 0.0057304465128363621) +zone = ('arz013', 0.0013955047085222941) + +[72638] +centroid = (0.63395184267815807, -1.6302168291239145) +station = ('khro', 0.0037121326688733759) +zone = ('arz002', 0.0019060090537841039) + +[72639] +centroid = (0.62869084435399414, -1.6140883462259901) +station = ('kflp', 0.0050751438644316711) +zone = ('arz013', 0.0036454989255562918) + +[72640] +centroid = (0.62833924777617989, -1.6242390415292489) +station = ('khro', 0.004796509470797944) +zone = ('arz012', 0.0026183626566504271) + +[72641] +centroid = (0.62808376648027286, -1.6274102873268299) +station = ('khro', 0.0050644272834424152) +zone = ('arz012', 0.0012175269574253268) + +[72642] +centroid = (0.63487175336700685, -1.6151347932856082) +station = ('kbpk', 0.0010476266719611897) +zone = ('arz004', 0.002753342316903828) + +[72644] +centroid = (0.6358779705873665, -1.6230298948767596) +station = ('kbbg', 0.0033640062480571006) +zone = ('arz003', 0.0025785360326462978) + +[72645] +centroid = (0.6249000939384175, -1.6157452745513707) +station = ('kcca', 0.0039814819471402692) +zone = ('arz013', 0.0025601616383449937) + +[72648] +centroid = (0.62968943448552261, -1.625807394395091) +station = ('khro', 0.0032834169249868345) +zone = ('arz012', 0.0029198719478141918) + +[72650] +centroid = (0.62629948147937409, -1.6179452969800947) +station = ('kcca', 0.0061082657193481191) +zone = ('arz013', 0.00046476841811481285) + +[72651] +centroid = (0.63509731971953454, -1.6141216645614105) +station = ('kbpk', 0.00043869598954637162) +zone = ('arz005', 0.0027011013592168039) + +[72653] +centroid = (0.6342942064642294, -1.6124299343707449) +station = ('kbpk', 0.0012180148757511596) +zone = ('arz005', 0.00117958848085567) + +[72655] +centroid = (0.62658576783657871, -1.6234444629339857) +station = ('khro', 0.0066587024195294059) +zone = ('arz012', 0.0028665911214576195) + +[72658] +centroid = (0.63123998499299439, -1.6112730079694755) +station = ('kbpk', 0.0040505161932866095) +zone = ('arz005', 0.0021061904853822149) + +[72660] +centroid = (0.63667247936945937, -1.6297513149058225) +station = ('kbbg', 0.0026514796337095943) +zone = ('arz002', 0.0032928640825058463) + +[72661] +centroid = (0.63615982380827107, -1.6157932885590931) +station = ('kbpk', 0.0021284434383023604) +zone = ('arz004', 0.0034911308022200489) + +[72662] +centroid = (0.63584165028563255, -1.6263121785213528) +station = ('kbbg', 0.0017479646318444334) +zone = ('arz003', 0.0024784523091875084) + +[72663] +centroid = (0.62723246468432015, -1.6114239964030654) +station = ('kcca', 0.0061440144267953089) +zone = ('arz014', 0.0027746261250992475) + +[72666] +centroid = (0.62730948606421066, -1.6277859170884443) +station = ('khro', 0.0058918787228827508) +zone = ('arz012', 0.00077328367706838035) + +[72668] +centroid = (0.63590706522599727, -1.6193337413066413) +station = ('kflp', 0.003640173398686445) +zone = ('arz004', 0.0032069768277028046) + +[72669] +centroid = (0.62945234895993174, -1.6209947362491792) +station = ('khro', 0.0052231495740987866) +zone = ('arz013', 0.0036679880357679121) + +[72670] +centroid = (0.62799419618306052, -1.6299303158739069) +station = ('khro', 0.0060046476410742138) +zone = ('arz012', 0.0026331812030605741) + +[72672] +centroid = (0.63334661485344412, -1.6204405418517933) +station = ('khro', 0.0043160128641918909) +zone = ('arz004', 0.0022801149543167972) + +[72675] +centroid = (0.6283099786046239, -1.619582136565785) +station = ('kflp', 0.0060350906579504622) +zone = ('arz013', 0.0020544149098382842) + +[72677] +centroid = (0.6327370586121851, -1.6176696222247422) +station = ('kflp', 0.0016554294711275893) +zone = ('arz004', 0.00026670899086484687) + +[72679] +centroid = (0.62360713657524758, -1.6202265470322064) +station = ('kcca', 0.0058749200633831508) +zone = ('arz013', 0.0036723349157933662) + +[72680] +centroid = (0.62635213806290679, -1.6114542953188802) +station = ('kcca', 0.0052973353936113955) +zone = ('arz014', 0.0024907225343462971) + +[72682] +centroid = (0.63071909147773675, -1.6186427130958989) +station = ('kflp', 0.0036045949042880503) +zone = ('arz004', 0.002421793045471033) + +[72683] +centroid = (0.62697689612195062, -1.6249498966802935) +station = ('khro', 0.0060327286531841589) +zone = ('arz012', 0.0016281546130723569) + +[72685] +centroid = (0.62946255913605587, -1.622886742971511) +station = ('khro', 0.004213698664511694) +zone = ('arz012', 0.0041605796459003386) + +[72686] +centroid = (0.62448104038501362, -1.6204309774474925) +station = ('kcca', 0.0064073174735431735) +zone = ('arz013', 0.0030627303482451572) + +[72687] +centroid = (0.63289518544241574, -1.6180383404825185) +station = ('kflp', 0.001857612609784512) +zone = ('arz004', 0.00033538478234704298) + +[72701] +centroid = (0.62818565880200428, -1.6421032194616965) +station = ('kfyv', 0.0011526274887325267) +zone = ('arz010', 0.0018362098996682859) + +[72703] +centroid = (0.63038381372842855, -1.6413642296031097) +station = ('kasg', 0.0015355070476415751) +zone = ('arz010', 0.0034180227125110442) + +[72704] +centroid = (0.63016336119060923, -1.6457895642814189) +station = ('kfyv', 0.0026028849062236766) +zone = ('arz010', 0.0024810189775384506) + +[72712] +centroid = (0.63436726594671788, -1.6450824266816808) +station = ('kvbt', 0.0005600742748996647) +zone = ('arz001', 0.000129375533870015) + +[72714] +centroid = (0.63647443685923555, -1.644464981552203) +station = ('kvbt', 0.0020481183721789021) +zone = ('arz001', 0.0022934662561643004) + +[72715] +centroid = (0.63644857107972108, -1.6459247225786933) +station = ('kvbt', 0.0023684512541640632) +zone = ('arz001', 0.0023073709648671866) + +[72717] +centroid = (0.62550633405409772, -1.6480208630103383) +station = ('kfyv', 0.0046047747784724521) +zone = ('arz010', 0.0038567565743848047) + +[72718] +centroid = (0.63300400672127766, -1.6444395521050013) +station = ('kxna', 0.0011627853523818003) +zone = ('arz001', 0.001344589363286149) + +[72719] +centroid = (0.6347266990528736, -1.6457597366045023) +station = ('kvbt', 0.0011422089882717412) +zone = ('arz001', 0.0007213036212874185) + +[72721] +centroid = (0.62480020874532582, -1.6375677196010017) +station = ('kfyv', 0.0059677539218000921) +zone = ('arz011', 0.0039761691812845697) + +[72722] +centroid = (0.63429973915795812, -1.6487809888061671) +station = ('kslg', 0.0024996464800734457) +zone = ('arz001', 0.0029654981981796628) + +[72727] +centroid = (0.6268588245980532, -1.6388729291755204) +station = ('kfyv', 0.0040336248409618951) +zone = ('arz011', 0.002983742233404205) + +[72729] +centroid = (0.62433090716275719, -1.6485718809084855) +station = ('kfyv', 0.0057152626473040841) +zone = ('okz069', 0.0034723302102895371) + +[72730] +centroid = (0.62885045471408896, -1.6452987776957579) +station = ('kfyv', 0.0015351921250270023) +zone = ('arz010', 0.0011648715621073084) + +[72732] +centroid = (0.63586735898551439, -1.6399016611432311) +station = ('krog', 0.0022846660187924783) +zone = ('arz001', 0.0044907954064031851) + +[72734] +centroid = (0.63303353769222137, -1.6485129411396457) +station = ('kslg', 0.0012974521881958122) +zone = ('arz001', 0.0030026956415259492) + +[72736] +centroid = (0.63554031919027576, -1.6487264298137496) +station = ('kxna', 0.0032507706909471372) +zone = ('arz001', 0.0031965981904246536) + +[72738] +centroid = (0.63103949902181788, -1.6386345695595754) +station = ('kasg', 0.0032732973657774462) +zone = ('arz011', 0.0034106974524274374) + +[72739] +centroid = (0.63570403107411277, -1.6463234081397262) +station = ('kvbt', 0.0020125315551555328) +zone = ('arz001', 0.0017655023372758324) + +[72740] +centroid = (0.63015877097467643, -1.6350948498503133) +station = ('kfyv', 0.0070544628619324257) +zone = ('arz011', 0.0017448059074583098) + +[72742] +centroid = (0.62768679134190686, -1.6319044926974229) +station = ('khro', 0.0072433371104769426) +zone = ('arz011', 0.0032601283994437157) + +[72744] +centroid = (0.62766542851186236, -1.648208049572615) +station = ('kfyv', 0.0038507108285230633) +zone = ('arz010', 0.0031317186147355575) + +[72745] +centroid = (0.63263371766717447, -1.6424096992783468) +station = ('kasg', 0.0011315534270332982) +zone = ('arz001', 0.0026978858109242229) + +[72747] +centroid = (0.63475233793958541, -1.6507810837690751) +station = ('kslg', 0.003258830863878633) +zone = ('okz063', 0.0031660233453718978) + +[72749] +centroid = (0.62602195667501448, -1.6482470053215192) +station = ('kfyv', 0.0044646820078316834) +zone = ('arz010', 0.0037036947626949935) + +[72751] +centroid = (0.63634816228785385, -1.6426240955236617) +station = ('krog', 0.0016444311247764962) +zone = ('arz001', 0.0029020791564903625) + +[72752] +centroid = (0.62513485817610326, -1.633459615967535) +station = ('kfyv', 0.0087470485929789787) +zone = ('arz011', 0.0038725496795078704) + +[72753] +centroid = (0.62716467609617266, -1.6463877933358326) +station = ('kfyv', 0.0025932249470003834) +zone = ('arz010', 0.0018304786381123002) + +[72756] +centroid = (0.63391040856171577, -1.6402322090502661) +station = ('krog', 0.0018908906621049706) +zone = ('arz001', 0.0039354899619293005) + +[72758] +centroid = (0.63354867162094741, -1.6430042631413311) +station = ('krog', 0.0012810970820544972) +zone = ('arz001', 0.0018243053261941472) + +[72760] +centroid = (0.62540287093603952, -1.6354909523240535) +station = ('kfyv', 0.0071250593033196207) +zone = ('arz011', 0.0031178942085936497) + +[72761] +centroid = (0.63125401744018039, -1.6485565918242382) +station = ('kslg', 0.00068101129580342519) +zone = ('arz001', 0.004083736922321334) + +[72762] +centroid = (0.63148775193360751, -1.6446351337009799) +station = ('kasg', 0.0016060326045114455) +zone = ('arz001', 0.0027763806095290424) + +[72764] +centroid = (0.63138476005444732, -1.6416605865100982) +station = ('kasg', 0.00080630260116372975) +zone = ('arz001', 0.0039796780051059117) + +[72768] +centroid = (0.63666682450268297, -1.6493116212586507) +station = ('kgmj', 0.0040295117780757596) +zone = ('moz101', 0.0033649283682583111) + +[72769] +centroid = (0.62894428361467625, -1.6492644450089695) +station = ('kslg', 0.0028703719920270712) +zone = ('okz069', 0.0035105000409724725) + +[72773] +centroid = (0.62870688392981988, -1.6377461795170178) +station = ('kfyv', 0.0046852689131102786) +zone = ('arz011', 0.0015840651532187087) + +[72774] +centroid = (0.62741315862177915, -1.643178167748) +station = ('kfyv', 0.00094631055056349205) +zone = ('arz010', 0.001104267087012024) + +[72776] +centroid = (0.6269482378156328, -1.6344946311205524) +station = ('kfyv', 0.0074314156349269099) +zone = ('arz011', 0.0018872841142639782) + +[72801] +centroid = (0.61573692337922958, -1.6256149718450585) +station = ('krue', 0.00077314934494780957) +zone = ('arz022', 0.0033092863507731356) + +[72802] +centroid = (0.61643023797129182, -1.6245810911560545) +station = ('krue', 0.0012298164303534672) +zone = ('arz022', 0.0023463008680533462) + +[72821] +centroid = (0.61845628598017688, -1.6356766902630506) +station = ('krue', 0.0093632908524577518) +zone = ('arz020', 0.002808158710112411) + +[72823] +centroid = (0.6152498019849979, -1.6215081073953606) +station = ('krue', 0.0027712730170933461) +zone = ('arz031', 0.002916132152331797) + +[72824] +centroid = (0.61318645628999768, -1.6303488981884127) +station = ('krue', 0.0048977807276137748) +zone = ('arz038', 0.0022758690183648403) + +[72826] +centroid = (0.6129498594565973, -1.635528668889189) +station = ('kmwt', 0.010100051760786797) +zone = ('arz030', 0.0016764096509318054) + +[72827] +centroid = (0.60882259210794376, -1.6339022838257182) +station = ('kmwt', 0.0058298626223826306) +zone = ('arz038', 0.0035933203414704085) + +[72828] +centroid = (0.60965603918564859, -1.6324936460397261) +station = ('kmwt', 0.0066808488108320825) +zone = ('arz038', 0.0021688696349096074) + +[72830] +centroid = (0.6197518787905173, -1.6321554535905671) +station = ('krue', 0.0074458013375479542) +zone = ('arz021', 0.0013255868113710904) + +[72832] +centroid = (0.61810381673773662, -1.6348589162420288) +station = ('krue', 0.0086171622850184509) +zone = ('arz030', 0.003541428007696113) + +[72833] +centroid = (0.61124402700557567, -1.6314045431331889) +station = ('krue', 0.0066451875814066697) +zone = ('arz038', 0.00093748914058259668) + +[72834] +centroid = (0.61381177285440225, -1.6263644860390349) +station = ('krue', 0.0018536570096732484) +zone = ('arz038', 0.004355640926115038) + +[72835] +centroid = (0.61571385012651825, -1.6292004715406005) +station = ('krue', 0.0035434763555730149) +zone = ('arz038', 0.0048919719038020204) + +[72837] +centroid = (0.61965597294812025, -1.6250660134354289) +station = ('krue', 0.0044294423160050082) +zone = ('arz022', 0.0014494438028973076) + +[72838] +centroid = (0.60930751438731789, -1.6350077753739314) +station = ('kmwt', 0.0064441935078362305) +zone = ('arz038', 0.0041519190811144333) + +[72839] +centroid = (0.62185548923136102, -1.6274196073850355) +station = ('krue', 0.0069372139807080783) +zone = ('arz021', 0.0032319439048116728) + +[72840] +centroid = (0.61886041696847616, -1.6338974318103976) +station = ('krue', 0.0081866622996018077) +zone = ('arz021', 0.0029501974983840939) + +[72841] +centroid = (0.60802590166428594, -1.637132294859214) +station = ('kmwt', 0.0059061619439937001) +zone = ('arz037', 0.0037825289319835293) + +[72842] +centroid = (0.6123030404358083, -1.633931744983492) +station = ('krue', 0.0079406098581355569) +zone = ('arz030', 0.0027155458583920213) + +[72843] +centroid = (0.62133599197950495, -1.6220657226380806) +station = ('krue', 0.0065299779724729218) +zone = ('arz022', 0.0029924030419179906) + +[72845] +centroid = (0.61717699454505015, -1.6297512625459449) +station = ('krue', 0.0044113767941062554) +zone = ('arz021', 0.0038206580631911131) + +[72846] +centroid = (0.61931088644841592, -1.6288598705370738) +station = ('krue', 0.0052042769850893676) +zone = ('arz021', 0.002416185516673568) + +[72847] +centroid = (0.61745443208294704, -1.6279288595541825) +station = ('krue', 0.0033251835652346115) +zone = ('arz022', 0.0036162863142959753) + +[72851] +centroid = (0.61532094160530926, -1.6308033993789248) +station = ('krue', 0.004820434451690332) +zone = ('arz030', 0.0040261523655022958) + +[72852] +centroid = (0.62255676252481229, -1.6328148564352631) +station = ('krue', 0.0097594758898759959) +zone = ('arz021', 0.0021891151950518958) + +[72853] +centroid = (0.61115902947100353, -1.6266877733763818) +station = ('krue', 0.0043237778101794435) +zone = ('arz038', 0.0029973792825949649) + +[72854] +centroid = (0.62324218822865562, -1.6305452826358471) +station = ('krue', 0.009237942500777729) +zone = ('arz021', 0.0024815472705591677) + +[72855] +centroid = (0.61538508245532009, -1.635091847884) +station = ('krue', 0.0083228336997045755) +zone = ('arz030', 0.00089145987528524429) + +[72856] +centroid = (0.62458464312941209, -1.624610849019801) +station = ('khro', 0.0084406988686247502) +zone = ('arz012', 0.0030145668653374521) + +[72857] +centroid = (0.60844872512887416, -1.628739739524659) +station = ('kmwt', 0.0066220271649463126) +zone = ('arz038', 0.0027876183760009131) + +[72858] +centroid = (0.61505792048703367, -1.6239310083695644) +station = ('krue', 0.00081077937698058647) +zone = ('arz022', 0.0036223192813759409) + +[72860] +centroid = (0.61005493418619194, -1.6307022226421866) +station = ('krue', 0.0070205560583776966) +zone = ('arz038', 0.00090711353250883854) + +[72863] +centroid = (0.61731250190817499, -1.6320792525154251) +station = ('krue', 0.0062169716905579849) +zone = ('arz021', 0.0035781058128502969) + +[72865] +centroid = (0.61626629919465192, -1.6331801538477055) +station = ('krue', 0.0068373877043773788) +zone = ('arz030', 0.0026065294948669541) + +[72901] +centroid = (0.61725640702601581, -1.6478780601709404) +station = ('kfsm', 0.00091170081652753232) +zone = ('arz029', 0.0035501316616012423) + +[72903] +centroid = (0.61699095990008002, -1.6469144464376217) +station = ('kfsm', 0.00031747654908222068) +zone = ('arz029', 0.0029246403743406935) + +[72904] +centroid = (0.61807938212820868, -1.647282798176255) +station = ('kfsm', 0.0014141093461596298) +zone = ('arz019', 0.0036481772725978213) + +[72908] +centroid = (0.61619639875810961, -1.6477766216348144) +station = ('kfsm', 0.00079312036248227154) +zone = ('arz029', 0.0026880464850278785) + +[72916] +centroid = (0.61542147257022406, -1.647406053328031) +station = ('kfsm', 0.0013024796996600654) +zone = ('arz029', 0.0019669781957802634) + +[72921] +centroid = (0.6191922215125728, -1.6440342691993957) +station = ('kfsm', 0.0034892899825535719) +zone = ('arz019', 0.002061257430377697) + +[72923] +centroid = (0.61636063424072229, -1.6460145721285859) +station = ('kfsm', 0.00087307313223051563) +zone = ('arz029', 0.0020800962817678608) + +[72926] +centroid = (0.60619536543820918, -1.6412546403793769) +station = ('kmez', 0.0040398703347224816) +zone = ('arz037', 0.0022719487248301978) + +[72927] +centroid = (0.61225841236683476, -1.6395712877691211) +station = ('kfsm', 0.0075172785772537184) +zone = ('arz030', 0.0039786406322578818) + +[72928] +centroid = (0.61595001062760557, -1.6393984652665883) +station = ('kfsm', 0.0062534289466962198) +zone = ('arz030', 0.0033303268934399182) + +[72930] +centroid = (0.61837800796322495, -1.6400038850775203) +station = ('kfsm', 0.0059575836467977662) +zone = ('arz020', 0.0017799406555743594) + +[72932] +centroid = (0.62141084915112299, -1.647195618980118) +station = ('kfsm', 0.0047302881811908002) +zone = ('arz019', 0.0019254340735792269) + +[72933] +centroid = (0.61659862733752424, -1.6408406657340964) +station = ('kfsm', 0.0050330205958182446) +zone = ('arz020', 0.0036515356783499119) + +[72934] +centroid = (0.62285222931388251, -1.6455720613500353) +station = ('kfyv', 0.0057141796312572667) +zone = ('arz019', 0.0018065354111417365) + +[72935] +centroid = (0.61944061677171658, -1.6428169893125921) +station = ('kfsm', 0.0043905699989217678) +zone = ('arz019', 0.0023744742728111458) + +[72936] +centroid = (0.61416792474156423, -1.644448540550649) +station = ('kfsm', 0.0032705820870185011) +zone = ('arz029', 0.00079053629419444387) + +[72937] +centroid = (0.61322185156722819, -1.6474514842484602) +station = ('kfsm', 0.0034799666614930749) +zone = ('arz029', 0.0020233035341111951) + +[72938] +centroid = (0.6109371108566124, -1.6472036824012624) +station = ('krkr', 0.0034951903042363063) +zone = ('arz029', 0.0037151500423738392) + +[72940] +centroid = (0.61299438280581575, -1.6451342978670502) +station = ('kfsm', 0.0039938865895895771) +zone = ('arz029', 0.0013656077568258472) + +[72941] +centroid = (0.61728667103524548, -1.6433374639488294) +station = ('kfsm', 0.0030548715676054139) +zone = ('arz029', 0.0033871985542382739) + +[72943] +centroid = (0.61400934412572794, -1.6368910554500034) +station = ('kfsm', 0.0086838977909890983) +zone = ('arz030', 0.0011797364605304749) + +[72944] +centroid = (0.61128546112201798, -1.6447039520333859) +station = ('kfsm', 0.0057169219395909136) +zone = ('arz029', 0.00310953636380416) + +[72945] +centroid = (0.61239193005461234, -1.6466710428201385) +station = ('kfsm', 0.004299949190455842) +zone = ('arz029', 0.0022144362896858545) + +[72946] +centroid = (0.62255091567181808, -1.6429654993786444) +station = ('kfyv', 0.0057850053497013288) +zone = ('arz019', 0.0020805464404320146) + +[72947] +centroid = (0.62084946399721896, -1.6411048911295558) +station = ('kfsm', 0.0063632109858875853) +zone = ('arz020', 0.0022173167979504609) + +[72948] +centroid = (0.62312919561288138, -1.6474685535685449) +station = ('kfyv', 0.0060975798125275284) +zone = ('arz019', 0.0029101371597789463) + +[72949] +centroid = (0.62106279559169031, -1.6372089846265467) +station = ('kfyv', 0.0088790500593523072) +zone = ('arz020', 0.0017464303534462143) + +[72950] +centroid = (0.60695641625854135, -1.6386548328321913) +station = ('kmwt', 0.0058901435555919522) +zone = ('arz037', 0.0029149749536074936) + +[72951] +centroid = (0.61657848623795619, -1.6383777094535596) +station = ('kfsm', 0.0070424774650844329) +zone = ('arz030', 0.0029588112978628056) + +[72952] +centroid = (0.6207919903049508, -1.6458527102937561) +station = ('kfsm', 0.0042155737608696965) +zone = ('arz019', 0.00088755934908778776) + +[72955] +centroid = (0.621584526864989, -1.6482506879662411) +station = ('kfsm', 0.0050047393925338156) +zone = ('arz019', 0.0027994829015006517) + +[72956] +centroid = (0.61899847251230888, -1.6467058097788383) +station = ('kfsm', 0.0023286251480889608) +zone = ('arz019', 0.0026230824709980215) + +[72958] +centroid = (0.60918673760307995, -1.6430081552255631) +station = ('kmez', 0.0063271233809566738) +zone = ('arz037', 0.0013002134660929452) + +[72959] +centroid = (0.62459682552759099, -1.6417400513509415) +station = ('kfyv', 0.0039908052329213819) +zone = ('arz010', 0.0039836309448442004) + +[73002] +centroid = (0.60980468887804096, -1.7056809215360398) +station = ('kchk', 0.0043645896656296854) +zone = ('okz027', 0.0026086798034489866) + +[73003] +centroid = (0.62253983283106806, -1.7016502930680693) +station = ('kpwa', 0.003207747205648604) +zone = ('okz025', 0.0024158267311095178) + +[73004] +centroid = (0.61352332228892514, -1.707702012809849) +station = ('kchk', 0.0019985885038447749) +zone = ('okz027', 0.0024294398001408544) + +[73005] +centroid = (0.61176073173062862, -1.7146139180734745) +station = ('kchk', 0.0039915875805382629) +zone = ('okz023', 0.0028858491425977095) + +[73006] +centroid = (0.60922845097220257, -1.7174078236867747) +station = ('kfsi', 0.0053445307132713388) +zone = ('okz038', 0.0043821525705233788) + +[73007] +centroid = (0.62284936697390914, -1.6986987318634363) +station = ('kgok', 0.0031138862040082987) +zone = ('okz025', 0.0026109963001620601) + +[73008] +centroid = (0.61983427578450401, -1.7042789858143752) +station = ('kpwa', 0.00034058039685495162) +zone = ('okz025', 0.0034824638569399703) + +[73009] +centroid = (0.61586391353560466, -1.7169286086340547) +station = ('krqo', 0.0061526387329743793) +zone = ('okz023', 0.0019551050291443579) + +[73010] +centroid = (0.61280892411949883, -1.704823912513433) +station = ('koun', 0.0037515026578230953) +zone = ('okz027', 0.0033584820310481617) + +[73011] +centroid = (0.60820958011476578, -1.7059996012041614) +station = ('kchk', 0.0053510509021846928) +zone = ('okz027', 0.00354803954553132) + +[73012] +centroid = (0.62251066837926716, -1.7033306437120115) +station = ('kpwa', 0.0024700053267960511) +zone = ('okz025', 0.0033286882031423456) + +[73013] +centroid = (0.62166512616984604, -1.7014233129988472) +station = ('kpwa', 0.0027842949548945507) +zone = ('okz025', 0.0016059713105015497) + +[73014] +centroid = (0.62111962351213523, -1.7129566930421209) +station = ('krqo', 0.0028221250817891384) +zone = ('okz024', 0.0024398387669754586) + +[73015] +centroid = (0.61232490941133577, -1.7207975148935355) +station = ('khbr', 0.0067417343746124549) +zone = ('okz023', 0.0035088318935158043) + +[73016] +centroid = (0.62486515244679253, -1.7049719513405872) +station = ('kpwa', 0.0047218427437580833) +zone = ('okz019', 0.0040173842426727115) + +[73017] +centroid = (0.6095833811288881, -1.7120562253211398) +station = ('kchk', 0.0034754302152169387) +zone = ('okz027', 0.0033865800685045941) + +[73018] +centroid = (0.61176324500475143, -1.7093842658626766) +station = ('kchk', 0.0008610046911490339) +zone = ('okz027', 0.0010056357610819875) + +[73019] +centroid = (0.61446162874808985, -1.7007113059304961) +station = ('koun', 0.00020655244289634461) +zone = ('okz029', 0.001661677504180457) + +[73020] +centroid = (0.61887298333909047, -1.6975561346153256) +station = ('ktik', 0.0018651173057276154) +zone = ('okz025', 0.0026127071016888276) + +[73021] +centroid = (0.61688856143286552, -1.7220070804250449) +station = ('koja', 0.0034844857184134739) +zone = ('okz022', 0.0047755424410470893) + +[73024] +centroid = (0.61715721996462491, -1.7243408474343493) +station = ('kclk', 0.0035648245628181335) +zone = ('okz022', 0.0030323873447636379) + +[73025] +centroid = (0.62367461100412969, -1.7030462946702767) +station = ('kgok', 0.0030463330568243738) +zone = ('okz019', 0.0037521376763339129) + +[73026] +centroid = (0.61506205691736093, -1.6977818056876088) +station = ('koun', 0.0025189787688360285) +zone = ('okz029', 0.00097482731612126691) + +[73027] +centroid = (0.62793766496858838, -1.6973672899902599) +station = ('kgok', 0.0032285847573060014) +zone = ('okz019', 0.0028912812254859618) + +[73028] +centroid = (0.62793387760411157, -1.7039911810207213) +station = ('kgok', 0.0037696062641839586) +zone = ('okz019', 0.0028488176581461275) + +[73029] +centroid = (0.60921422653879875, -1.7140227226959466) +station = ('kchk', 0.0047819826062639771) +zone = ('okz023', 0.0052784808617601358) + +[73030] +centroid = (0.60154771071978097, -1.6958411740923161) +station = ('kadm', 0.0035312959109377309) +zone = ('okz041', 0.0014187996076880734) + +[73032] +centroid = (0.60036196893256111, -1.6937915466852367) +station = ('kadm', 0.0017078722934256894) +zone = ('okz041', 0.0014979051423834469) + +[73033] +centroid = (0.61635229156689775, -1.719963072978157) +station = ('koja', 0.0043769218264459479) +zone = ('okz023', 0.0034564277104350508) + +[73034] +centroid = (0.62314212850263873, -1.7005450109593661) +station = ('kgok', 0.0025702246825251348) +zone = ('okz025', 0.0026786245359471657) + +[73036] +centroid = (0.61975578832804179, -1.7097205035430729) +station = ('krqo', 0.00091537906270232133) +zone = ('okz024', 0.0006619479668934045) + +[73038] +centroid = (0.61303824292991838, -1.7182994076818634) +station = ('kchk', 0.0069450852061228394) +zone = ('okz023', 0.0013932004318137729) + +[73040] +centroid = (0.62213243807706753, -1.7169715786402386) +station = ('kjwg', 0.0038792140131073487) +zone = ('okz017', 0.0040920184243544806) + +[73041] +centroid = (0.61160330303209864, -1.7257137583305531) +station = ('khbr', 0.0026901829281937915) +zone = ('okz035', 0.0026601391324142525) + +[73042] +centroid = (0.61475508840852022, -1.7147326528224878) +station = ('kchk', 0.0045773685818713055) +zone = ('okz023', 0.0020140677429384998) + +[73043] +centroid = (0.62368031823078374, -1.7174636044096685) +station = ('kjwg', 0.002290478711424715) +zone = ('okz017', 0.0024966258128033239) + +[73044] +centroid = (0.62586759975596806, -1.7003487835915643) +station = ('kgok', 0.00018830761273331021) +zone = ('okz019', 0.0010836477939453729) + +[73045] +centroid = (0.61984096039553915, -1.6955966185575269) +station = ('ksnl', 0.0040300262594727809) +zone = ('okz025', 0.0037029819101688623) + +[73047] +centroid = (0.61883818147380587, -1.7159224612268651) +station = ('krqo', 0.0044089675111700765) +zone = ('okz023', 0.0050025700879604449) + +[73048] +centroid = (0.61953219419756878, -1.7199569294191899) +station = ('koja', 0.0019267700200698017) +zone = ('okz023', 0.006128541377941909) + +[73049] +centroid = (0.62111112375867794, -1.6983681315965236) +station = ('ktik', 0.0031541275930136877) +zone = ('okz025', 0.0015217011597591715) + +[73050] +centroid = (0.6272485915266085, -1.6975738148006485) +station = ('kgok', 0.0026583943425975325) +zone = ('okz019', 0.0025588691047027114) + +[73051] +centroid = (0.61142117792465311, -1.6972688359671551) +station = ('koun', 0.0043424305373108039) +zone = ('okz028', 0.0028483035086494138) + +[73052] +centroid = (0.60795987585868294, -1.7032501491269096) +station = ('kpvj', 0.0056617138015161023) +zone = ('okz028', 0.0036984846769433075) + +[73053] +centroid = (0.61706944735654212, -1.7176482951511145) +station = ('koja', 0.004897531924955319) +zone = ('okz023', 0.0032085989237813279) + +[73054] +centroid = (0.62257028882651533, -1.6963045066488431) +station = ('kgok', 0.0044727225498069918) +zone = ('okz025', 0.0037051025799848059) + +[73055] +centroid = (0.60464924806703757, -1.7088649082371605) +station = ('kduc', 0.0031015880908255768) +zone = ('okz039', 0.0028906927795471385) + +[73056] +centroid = (0.63140668138985234, -1.7038987832901209) +station = ('kwdg', 0.0042238604023731646) +zone = ('okz012', 0.0041583077551266461) + +[73057] +centroid = (0.60790397296274157, -1.700305202720142) +station = ('kpvj', 0.0035078455628783562) +zone = ('okz040', 0.0027122846275274811) + +[73058] +centroid = (0.62509956761862795, -1.6968109139313095) +station = ('kgok', 0.0028455252181820803) +zone = ('okz019', 0.0036400072152013708) + +[73059] +centroid = (0.61630551674294431, -1.7112323251944432) +station = ('krqo', 0.0028659112962687327) +zone = ('okz024', 0.0041293424392571986) + +[73061] +centroid = (0.63451675339715108, -1.6930663623810329) +station = ('kswo', 0.0034666721635775023) +zone = ('okz013', 0.0032160498370245555) + +[73062] +centroid = (0.6116724006171852, -1.7233541953549043) +station = ('khbr', 0.0045524647708149136) +zone = ('okz035', 0.0041122686812869154) + +[73063] +centroid = (0.62923844140680729, -1.7003871633818157) +station = ('kgok', 0.0035398669264568288) +zone = ('okz019', 0.0023409433263878654) + +[73064] +centroid = (0.61730138416083968, -1.7059992346850184) +station = ('kokc', 0.0021010661021444526) +zone = ('okz024', 0.0045217760174713377) + +[73065] +centroid = (0.61533626559614174, -1.7036155512591074) +station = ('kokc', 0.0022239482088017301) +zone = ('okz028', 0.0049290326102567937) + +[73066] +centroid = (0.61959563691587871, -1.6986849437623457) +station = ('ktik', 0.0016603786028150226) +zone = ('okz025', 0.0014434439069633763) + +[73067] +centroid = (0.60931323906726442, -1.708801308439218) +station = ('kchk', 0.0033378179782858086) +zone = ('okz027', 0.0018777545246243469) + +[73068] +centroid = (0.61328269374495259, -1.6980622626451118) +station = ('koun', 0.0026370531770345813) +zone = ('okz029', 0.0012426572733708074) + +[73069] +centroid = (0.61522266211512944, -1.7010399165220615) +station = ('koun', 0.00060243195896370776) +zone = ('okz029', 0.0020899237595662858) + +[73071] +centroid = (0.61502521301685131, -1.7001583158102942) +station = ('koun', 0.00066206384766007327) +zone = ('okz029', 0.0013526247863008831) + +[73072] +centroid = (0.61457758842359234, -1.7017689929104973) +station = ('koun', 0.00077567519102257588) +zone = ('okz029', 0.002530244086893381) + +[73073] +centroid = (0.63096725984407775, -1.7002231373387133) +station = ('kgok', 0.0052667441371759592) +zone = ('okz019', 0.0040742510473123364) + +[73074] +centroid = (0.6079572927713901, -1.6977533393675086) +station = ('kpvj', 0.0022548165421393909) +zone = ('okz040', 0.0023054145925038663) + +[73075] +centroid = (0.60648111074334565, -1.6970235124874948) +station = ('kpvj', 0.00067034716065531648) +zone = ('okz040', 0.0013485095342647608) + +[73077] +centroid = (0.63366157697025893, -1.6976186348558397) +station = ('kswo', 0.0035447881600426381) +zone = ('okz013', 0.0015246718570761629) + +[73078] +centroid = (0.62264525071788845, -1.7061263121078563) +station = ('kpwa', 0.002877493393273593) +zone = ('okz024', 0.0039838870088173247) + +[73079] +centroid = (0.61454673100241708, -1.7106321239179747) +station = ('kchk', 0.0021083154806887661) +zone = ('okz027', 0.0038459311108818236) + +[73080] +centroid = (0.6107695767017135, -1.7013435689053236) +station = ('koun', 0.0039004953067112314) +zone = ('okz028', 0.00057375322306483221) + +[73082] +centroid = (0.60695913897217457, -1.7087141641496655) +station = ('kduc', 0.0053940648554231755) +zone = ('okz027', 0.0042107052131336595) + +[73084] +centroid = (0.62004322660255273, -1.698979712419715) +station = ('ktik', 0.0019846364514255013) +zone = ('okz025', 0.00099828423262783377) + +[73086] +centroid = (0.60182085474771807, -1.692344319669483) +station = ('kadm', 0.0032195030188154308) +zone = ('okz041', 0.0014921254214653817) + +[73089] +centroid = (0.61555359399460008, -1.7068073046753993) +station = ('kokc', 0.003398514689141189) +zone = ('okz027', 0.0045806560555363748) + +[73090] +centroid = (0.61782742639739086, -1.7095221817801691) +station = ('krqo', 0.0015199939003510841) +zone = ('okz024', 0.002552647278607103) + +[73092] +centroid = (0.61302745679514103, -1.7121682754591177) +station = ('kchk', 0.0019723479991147434) +zone = ('okz027', 0.0036045591182472829) + +[73093] +centroid = (0.61277827613783376, -1.7014602616191119) +station = ('koun', 0.0019396991314753077) +zone = ('okz028', 0.0018647528544725974) + +[73095] +centroid = (0.60909475875149977, -1.6981379924813556) +station = ('kpvj', 0.0034339345882199359) +zone = ('okz028', 0.0028539364435785281) + +[73096] +centroid = (0.61983713812447727, -1.7233554345386735) +station = ('koja', 0.0011626069909449535) +zone = ('okz016', 0.0042922460479731693) + +[73097] +centroid = (0.61785512477261995, -1.7042230654651414) +station = ('kokc', 0.00070411487274197595) +zone = ('okz025', 0.0042836791698848938) + +[73098] +centroid = (0.60435493319527378, -1.6958000715884318) +station = ('kpvj', 0.001710595226235196) +zone = ('okz040', 0.0025079843201665855) + +[73099] +centroid = (0.62003114892412892, -1.7064385515110378) +station = ('krce', 0.0010449440556261223) +zone = ('okz024', 0.0030088550078739796) + +[73102] +centroid = (0.61908135819848609, -1.7020276507056429) +station = ('kokc', 0.0019117380227679451) +zone = ('okz025', 0.0021234905580459294) + +[73103] +centroid = (0.61940117233062153, -1.7020260450027309) +station = ('kokc', 0.0021761460983165935) +zone = ('okz025', 0.0019249142796113254) + +[73104] +centroid = (0.6191595664022681, -1.7017644026945644) +station = ('ktik', 0.0019960910023924631) +zone = ('okz025', 0.0019131050066052704) + +[73105] +centroid = (0.61994150881374654, -1.7017179071232913) +station = ('kpwa', 0.0021255447090591517) +zone = ('okz025', 0.0014443169005734884) + +[73106] +centroid = (0.61927714923397481, -1.7023385112987155) +station = ('kokc', 0.0019418972619631718) +zone = ('okz025', 0.002205234566890299) + +[73107] +centroid = (0.61927084859537518, -1.7030156990484895) +station = ('kpwa', 0.0013899878391633936) +zone = ('okz025', 0.0026855220289204529) + +[73108] +centroid = (0.61871934200503742, -1.7028782543698946) +station = ('kokc', 0.0012508911259974675) +zone = ('okz025', 0.002888076946654005) + +[73109] +centroid = (0.61842492241351854, -1.7021244641192508) +station = ('kokc', 0.0013811668276464742) +zone = ('okz025', 0.0026548633762036172) + +[73110] +centroid = (0.61891436509565534, -1.6999094842188374) +station = ('ktik', 0.00080311173347825786) +zone = ('okz025', 0.0015822060963325525) + +[73111] +centroid = (0.61993215384895572, -1.701301960255956) +station = ('ktik', 0.0022382405403057115) +zone = ('okz025', 0.0011431094329544861) + +[73112] +centroid = (0.61990901078307437, -1.7030124003762031) +station = ('kpwa', 0.001091882767310057) +zone = ('okz025', 0.0024590396828750353) + +[73114] +centroid = (0.62095563237561779, -1.7020044901864688) +station = ('kpwa', 0.0020351404790748405) +zone = ('okz025', 0.0016359070941328136) + +[73115] +centroid = (0.61858557997116459, -1.7006754045077825) +station = ('ktik', 0.00094109069067287859) +zone = ('okz025', 0.0019665852991481957) + +[73116] +centroid = (0.62040697067196082, -1.7028233637649195) +station = ('kpwa', 0.0012351915754700922) +zone = ('okz025', 0.0022365831493642769) + +[73117] +centroid = (0.61915314359062068, -1.7010415571315585) +station = ('ktik', 0.0015161699013262772) +zone = ('okz025', 0.0015512547761931158) + +[73118] +centroid = (0.61990548521798539, -1.7021972443490589) +station = ('kpwa', 0.0017434930833929278) +zone = ('okz025', 0.0018224288652674689) + +[73119] +centroid = (0.61823064981447906, -1.7028501196623524) +station = ('kokc', 0.00082936193619989867) +zone = ('okz025', 0.0031951433662760669) + +[73120] +centroid = (0.6210111163925387, -1.7029818745675855) +station = ('kpwa', 0.0013696082663848879) +zone = ('okz025', 0.002420082199967903) + +[73121] +centroid = (0.61996046308942321, -1.7006407946287154) +station = ('ktik', 0.0019904071334872994) +zone = ('okz025', 0.00070153308136130664) + +[73122] +centroid = (0.61994939770196555, -1.7036759221979336) +station = ('kpwa', 0.00056566203865808756) +zone = ('okz025', 0.0029787504390780192) + +[73127] +centroid = (0.61919782401947165, -1.7043697603887715) +station = ('kpwa', 0.00097689147712425799) +zone = ('okz025', 0.0037261924314178395) + +[73128] +centroid = (0.61886725865914394, -1.7045301037871521) +station = ('kpwa', 0.0013181950901648639) +zone = ('okz025', 0.0039725194757783281) + +[73129] +centroid = (0.61839612448086068, -1.7014215676695952) +station = ('ktik', 0.0014587532853053173) +zone = ('okz025', 0.0023636820670857291) + +[73130] +centroid = (0.61886989410631443, -1.6990017908347526) +station = ('ktik', 0.00090769035363485984) +zone = ('okz025', 0.001841824628115857) + +[73131] +centroid = (0.62092632829747685, -1.7011600998943541) +station = ('kpwa', 0.0026740086851685407) +zone = ('okz025', 0.00098333504825529072) + +[73132] +centroid = (0.62051530325863213, -1.7040670155767206) +station = ('kpwa', 0.00039637300283719049) +zone = ('okz025', 0.0032468380587486302) + +[73134] +centroid = (0.62158449195840382, -1.7028906462075839) +station = ('kpwa', 0.0018250376708264272) +zone = ('okz025', 0.0025367080897453595) + +[73135] +centroid = (0.61785123268838793, -1.7005279765458665) +station = ('ktik', 0.00076328978999471082) +zone = ('okz025', 0.0026649961632962604) + +[73139] +centroid = (0.61760948713369435, -1.7021438896338255) +station = ('kokc', 0.0010591625953119133) +zone = ('okz025', 0.0033372055993857869) + +[73141] +centroid = (0.61988562337109765, -1.6999449318559454) +station = ('ktik', 0.0017635364942512315) +zone = ('okz025', 0.00061448414904786454) + +[73142] +centroid = (0.62162690345922744, -1.7042323506167618) +station = ('kpwa', 0.001454759725744528) +zone = ('okz025', 0.0035657704691456032) + +[73145] +centroid = (0.61817970365361341, -1.6998467745388133) +station = ('ktik', 0.00015812357370043555) +zone = ('okz025', 0.0023185738155001665) + +[73149] +centroid = (0.61766184701125415, -1.7015097067968208) +station = ('kokc', 0.0015783774826549253) +zone = ('okz025', 0.0030602712835239533) + +[73150] +centroid = (0.61786816238213238, -1.6987267967578084) +station = ('ktik', 0.00080670547593002554) +zone = ('okz025', 0.0028435361735706989) + +[73151] +centroid = (0.62084291901252409, -1.7002398575929474) +station = ('ktik', 0.0027463853657178029) +zone = ('okz025', 0.00037646891933128143) + +[73159] +centroid = (0.61763458496833801, -1.703071951010281) +station = ('kokc', 0.00031132952595029802) +zone = ('okz025', 0.0037562737206026475) + +[73160] +centroid = (0.61666737585676035, -1.7012634757459495) +station = ('ktik', 0.0019674712144876648) +zone = ('okz029', 0.0030840350968422956) + +[73162] +centroid = (0.62102324643084006, -1.7041556783027219) +station = ('kpwa', 0.00085929505409972507) +zone = ('okz025', 0.0033607347648665934) + +[73165] +centroid = (0.61706874922484134, -1.6993435786621709) +station = ('ktik', 0.0010993508240459049) +zone = ('okz029', 0.0027050917859524682) + +[73169] +centroid = (0.61754583497587401, -1.7041848776611077) +station = ('kokc', 0.00060627721057338827) +zone = ('okz025', 0.0044574987578339881) + +[73170] +centroid = (0.6165509798489448, -1.7026142209606532) +station = ('kokc', 0.0012101551545901439) +zone = ('okz029', 0.0038566581147576047) + +[73173] +centroid = (0.61690973227669221, -1.7038608921920599) +station = ('kokc', 0.00073094757853045165) +zone = ('okz025', 0.0047252990246216785) + +[73179] +centroid = (0.61834207163392629, -1.7041541947728578) +station = ('kokc', 0.00097775937701245546) +zone = ('okz025', 0.0039548400234102636) + +[73401] +centroid = (0.59696000806115879, -1.6949855787864037) +station = ('k1f0', 0.00098854937189685405) +zone = ('okz046', 0.0025939506511447777) + +[73425] +centroid = (0.60135500891706828, -1.702715589683609) +station = ('kduc', 0.0057853335971918829) +zone = ('okz039', 0.004249148092723606) + +[73430] +centroid = (0.59163734725452177, -1.6992766801919419) +station = ('kgle', 0.0049260112791385683) +zone = ('okz050', 0.0019210380944712532) + +[73432] +centroid = (0.59779684107761255, -1.6827395284496627) +station = ('kaqr', 0.0046120776184802792) +zone = ('okz047', 0.0037359103634913376) + +[73433] +centroid = (0.6043755804403248, -1.7000678903017485) +station = ('kpvj', 0.0030041126353118307) +zone = ('okz040', 0.0019313910068412125) + +[73434] +centroid = (0.60420748778006528, -1.7030781120225407) +station = ('kduc', 0.0060511560806184575) +zone = ('okz039', 0.0045491500495054848) + +[73437] +centroid = (0.59983376248773745, -1.7001666933907038) +station = ('k1f0', 0.0056888696439093313) +zone = ('okz046', 0.0027391259734634802) + +[73438] +centroid = (0.59832607726669473, -1.7017520632167527) +station = ('k1f0', 0.0059759601766307454) +zone = ('okz046', 0.0031812463997823162) + +[73439] +centroid = (0.59232814857246108, -1.6885031292385237) +station = ('kgyi', 0.0040212165401378799) +zone = ('okz051', 0.0015540970435004209) + +[73440] +centroid = (0.59244681350830419, -1.6911672172620604) +station = ('k1f0', 0.0048081538288560722) +zone = ('okz051', 0.002313466741533628) + +[73441] +centroid = (0.59174463264364197, -1.7004843084079817) +station = ('kgle', 0.005567590679223502) +zone = ('okz050', 0.0028130922012567896) + +[73442] +centroid = (0.59911939922489632, -1.7045687104702063) +station = ('kduc', 0.0049395280233185098) +zone = ('okz039', 0.0038596810990300517) + +[73443] +centroid = (0.59629147714447495, -1.6981642247800131) +station = ('k1f0', 0.002549078796533513) +zone = ('okz046', 0.0015092116851835957) + +[73444] +centroid = (0.6017039176878346, -1.6992764009392616) +station = ('kpvj', 0.004571801287198694) +zone = ('okz046', 0.0040615732260371662) + +[73446] +centroid = (0.59497562106151891, -1.6890912179299833) +station = ('kadm', 0.0051038421739935712) +zone = ('okz051', 0.0011430103376555603) + +[73447] +centroid = (0.59772730716021316, -1.6904115944157019) +station = ('kadm', 0.0025845707410057477) +zone = ('okz047', 0.0030323995708084689) + +[73448] +centroid = (0.59250981989430129, -1.6948219367157364) +station = ('k1f0', 0.0034748496328288222) +zone = ('okz050', 0.0019989804105486528) + +[73449] +centroid = (0.59356466198762159, -1.6850130815997733) +station = ('kdua', 0.0024581293438739175) +zone = ('okz051', 0.003266023988918205) + +[73450] +centroid = (0.59800970143318577, -1.6848227708981356) +station = ('kdua', 0.0059541765853096491) +zone = ('okz047', 0.0020569308054709775) + +[73453] +centroid = (0.5941393116438406, -1.6971321243268462) +station = ('k1f0', 0.0024873682268190503) +zone = ('okz050', 0.0016038921236489494) + +[73455] +centroid = (0.59742587134510117, -1.6887867452419727) +station = ('kadm', 0.0039487412675074419) +zone = ('okz047', 0.002085692043225239) + +[73456] +centroid = (0.59558570090155338, -1.7042383021895113) +station = ('kduc', 0.007554433800136871) +zone = ('okz045', 0.0027573733670453121) + +[73458] +centroid = (0.59968713737727741, -1.6973301842903625) +station = ('kadm', 0.0034641154670946115) +zone = ('okz046', 0.0019656982994379541) + +[73459] +centroid = (0.58946558170638774, -1.695247325814325) +station = ('kgle', 0.0023454910352871221) +zone = ('txz092', 0.0026340698494994245) + +[73460] +centroid = (0.59822568592812009, -1.6868827132010946) +station = ('kadm', 0.0053304555522593403) +zone = ('okz047', 0.00072288213275021869) + +[73461] +centroid = (0.59970904125938995, -1.6834907530663061) +station = ('kaqr', 0.0044969298129417436) +zone = ('okz047', 0.0030355117163333267) + +[73463] +centroid = (0.59529182236210265, -1.7005589735933822) +station = ('k1f0', 0.0045644300412566305) +zone = ('okz046', 0.0032980982954097507) + +[73481] +centroid = (0.60107865348330758, -1.7020802549292977) +station = ('kduc', 0.0063272682546130551) +zone = ('okz046', 0.0047324061174287531) + +[73487] +centroid = (0.60186522101730378, -1.7008050824712058) +station = ('kpvj', 0.0051158873874831111) +zone = ('okz040', 0.0043348785782125147) + +[73491] +centroid = (0.60167424709055051, -1.7041034056916247) +station = ('kduc', 0.0046342828264281499) +zone = ('okz039', 0.0030785814718045103) + +[73501] +centroid = (0.60314992297311176, -1.7155011038388484) +station = ('kfsi', 0.0017301399167163228) +zone = ('okz038', 0.0031692662062656894) + +[73503] +centroid = (0.6053320383237103, -1.7190065452816015) +station = ('kfsi', 0.0019584172936375471) +zone = ('okz038', 0.00046486172828640276) + +[73505] +centroid = (0.60346982437170982, -1.7188219243533254) +station = ('klaw', 0.00094306288312683841) +zone = ('okz038', 0.0015042029636145619) + +[73507] +centroid = (0.6072998272421638, -1.7214024285589842) +station = ('kfsi', 0.0047408087279686177) +zone = ('okz038', 0.0032458562531822769) + +[73520] +centroid = (0.59800231869044973, -1.7102458301946308) +station = ('kduc', 0.0036526527662324258) +zone = ('okz045', 0.0034608103640617637) + +[73521] +centroid = (0.60460496906391437, -1.733390152713137) +station = ('klts', 0.00072355649484487979) +zone = ('okz036', 0.0016965179425429851) + +[73526] +centroid = (0.60722873998172999, -1.7326925271578226) +station = ('kaxs', 0.0018518406775986556) +zone = ('okz036', 0.0040738770823621319) + +[73527] +centroid = (0.60350394555858633, -1.7212836414500934) +station = ('kfsi', 0.0032164282175416803) +zone = ('okz038', 0.0026116787289815536) + +[73528] +centroid = (0.60036497089887453, -1.7214779489557179) +station = ('klaw', 0.0042838419395492917) +zone = ('okz037', 0.004211939088217629) + +[73529] +centroid = (0.59953208232653032, -1.7094579362104032) +station = ('kduc', 0.0021089558567752636) +zone = ('okz039', 0.0027115215970851324) + +[73530] +centroid = (0.59786567686331127, -1.7282658485759894) +station = ('kfdr', 0.001747863222216635) +zone = ('okz037', 0.0024931350234801836) + +[73531] +centroid = (0.59680900217427624, -1.7197937236808361) +station = ('ksps', 0.0037263588022384848) +zone = ('okz044', 0.0029046496230777058) + +[73532] +centroid = (0.60463800814665469, -1.7381015643091406) +station = ('kaxs', 0.0036864569130085922) +zone = ('okz036', 0.0026408875878538222) + +[73533] +centroid = (0.60223139109437218, -1.7080824596801989) +station = ('kduc', 0.0014812532617062869) +zone = ('okz039', 0.00040252053838693347) + +[73537] +centroid = (0.60190632352118822, -1.7394692043110034) +station = ('kaxs', 0.0059702800337343665) +zone = ('txz083', 0.0036229055377091477) + +[73538] +centroid = (0.60517532521017359, -1.7145715763858211) +station = ('kfsi', 0.0026643146477615697) +zone = ('okz038', 0.0033651809959285707) + +[73539] +centroid = (0.60139129431221727, -1.7327730915560946) +station = ('klts', 0.0033712333416553663) +zone = ('okz036', 0.0029886856087469214) + +[73540] +centroid = (0.60156423898779743, -1.7202120267426615) +station = ('klaw', 0.0027059056910650864) +zone = ('okz038', 0.0036369253104343571) + +[73541] +centroid = (0.60717784618074189, -1.7135768434319398) +station = ('kfsi', 0.0045553792550269215) +zone = ('okz038', 0.0047230036283276034) + +[73542] +centroid = (0.60042459134612269, -1.726971809108683) +station = ('kfdr', 0.0010360493759662625) +zone = ('okz037', 0.00061281842584480354) + +[73543] +centroid = (0.60161607526658156, -1.7169505648760446) +station = ('klaw', 0.00179413705497513) +zone = ('okz044', 0.0031393060506964047) + +[73544] +centroid = (0.60532444614146408, -1.7408905655472426) +station = ('kaxs', 0.0058564674451650495) +zone = ('okz033', 0.0017995462810846228) + +[73546] +centroid = (0.5973030525256382, -1.723049827386649) +station = ('kfdr', 0.0043541588193592475) +zone = ('okz037', 0.0039007924183741944) + +[73547] +centroid = (0.6107413023678312, -1.7350900161381171) +station = ('kaxs', 0.0052482568103414482) +zone = ('okz034', 0.0023348304226029448) + +[73548] +centroid = (0.59841194746589288, -1.7123176058299181) +station = ('kduc', 0.0038643243626878651) +zone = ('okz044', 0.0038006635756118205) + +[73549] +centroid = (0.60466603813444175, -1.7305433287169165) +station = ('klts', 0.0016370140017272136) +zone = ('okz036', 0.0038899079190914719) + +[73550] +centroid = (0.60544782346628756, -1.7435895077959416) +station = ('kcds', 0.0070930706714384022) +zone = ('okz033', 0.0012268741627441792) + +[73551] +centroid = (0.5995913013480505, -1.7259377364334616) +station = ('kfdr', 0.001361853546842922) +zone = ('okz037', 0.00060417445138206244) + +[73552] +centroid = (0.60462456911141427, -1.7237211857367212) +station = ('kfdr', 0.0060159235404477684) +zone = ('okz038', 0.0041813261324876788) + +[73553] +centroid = (0.59911292405337135, -1.7230254102304137) +station = ('kfdr', 0.0037870148151177112) +zone = ('okz037', 0.0030217762914873832) + +[73554] +centroid = (0.60900187232870862, -1.7386421625916533) +station = ('kaxs', 0.0052446216558851202) +zone = ('okz034', 0.0010911628387357997) + +[73555] +centroid = (0.6021649638630413, -1.7272811861718917) +station = ('kfdr', 0.0026562195121391527) +zone = ('okz037', 0.0023253245541750779) + +[73556] +centroid = (0.60615431529420227, -1.734578913919963) +station = ('kaxs', 0.00085859057344797531) +zone = ('okz036', 0.0025185666217118698) + +[73557] +centroid = (0.60618752890986771, -1.7189568557577972) +station = ('kfsi', 0.0026339834603386347) +zone = ('okz038', 0.0012446868526103769) + +[73559] +centroid = (0.60617703948106327, -1.7272423875026199) +station = ('khbr', 0.0045677116240130005) +zone = ('okz035', 0.0032366454029519429) + +[73560] +centroid = (0.60282420962810457, -1.7356731131879157) +station = ('kaxs', 0.0031890294453561924) +zone = ('okz036', 0.00096699415968029903) + +[73562] +centroid = (0.59657109634393679, -1.7175652523853044) +station = ('ksps', 0.0036910757912387124) +zone = ('okz044', 0.0019797076181481657) + +[73564] +centroid = (0.6082201917166179, -1.7278700079016369) +station = ('khbr', 0.0024619346309745394) +zone = ('okz035', 0.0012145987834830572) + +[73565] +centroid = (0.59375942327885156, -1.7085721816150159) +station = ('k0f2', 0.007683233351561989) +zone = ('okz045', 0.0018001672917664158) + +[73566] +centroid = (0.6041729477141683, -1.7266553634620041) +station = ('kfdr', 0.0047150447865946434) +zone = ('okz037', 0.0042552509952554617) + +[73567] +centroid = (0.60643063582137813, -1.7129378783927844) +station = ('kfsi', 0.0044695105486734048) +zone = ('okz038', 0.0049227611070317978) + +[73568] +centroid = (0.59781181600259459, -1.714140898939599) +station = ('kduc', 0.0052788185263658981) +zone = ('okz044', 0.0023886083944245151) + +[73569] +centroid = (0.59229435899814253, -1.706630153756322) +station = ('k0f2', 0.0060383908092352875) +zone = ('okz045', 0.0031516631884653356) + +[73570] +centroid = (0.6023939336076104, -1.7298791087634853) +station = ('klts', 0.0032165324211686844) +zone = ('okz037', 0.0036948004860098017) + +[73571] +centroid = (0.60967790816117606, -1.7434323583500921) +station = ('kaxs', 0.008912739627622757) +zone = ('okz033', 0.003341776808586426) + +[73572] +centroid = (0.5996889176131146, -1.7164488699825589) +station = ('klaw', 0.0037564327770345214) +zone = ('okz044', 0.0012722014132152022) + +[73573] +centroid = (0.596302926504368, -1.7093517852852969) +station = ('kduc', 0.0053355003025843751) +zone = ('okz045', 0.0017644580963659543) + +[73601] +centroid = (0.61941061456187496, -1.7272388444842384) +station = ('kclk', 0.0010356880388892849) +zone = ('okz016', 0.0026608137185424848) + +[73620] +centroid = (0.62172694573195164, -1.7283145083555349) +station = ('kclk', 0.0020813037707259167) +zone = ('okz016', 0.00044269135151119249) + +[73622] +centroid = (0.61760498418422416, -1.727817473491152) +station = ('kclk', 0.0028588346011515975) +zone = ('okz022', 0.0016724564411266356) + +[73624] +centroid = (0.61682778906831104, -1.7309806384142965) +station = ('kcsm', 0.00034708224975213084) +zone = ('okz022', 0.0027901438142069919) + +[73625] +centroid = (0.62267598596601614, -1.7312008815126056) +station = ('kclk', 0.0045209152494365464) +zone = ('okz016', 0.0027602967035747642) + +[73626] +centroid = (0.61822113777005561, -1.7327443983431918) +station = ('kcsm', 0.0016784966896776757) +zone = ('okz022', 0.0046776351500494974) + +[73627] +centroid = (0.61430378117053952, -1.7357771348113347) +station = ('kcsm', 0.004482742303552229) +zone = ('okz021', 0.0035001243208880612) + +[73628] +centroid = (0.62186297669385215, -1.7400972959489187) +station = ('kcsm', 0.0086276209558000961) +zone = ('okz014', 0.0010173937122677727) + +[73632] +centroid = (0.6155699477296912, -1.7266899035279011) +station = ('kcsm', 0.0040664241604575274) +zone = ('okz022', 0.00093238775632378573) + +[73638] +centroid = (0.62553247908629261, -1.7415717850075885) +station = ('kgag', 0.0080260781082294643) +zone = ('okz014', 0.0029382974349493312) + +[73639] +centroid = (0.62376477471328773, -1.727188648814951) +station = ('kclk', 0.0035525489221305698) +zone = ('okz016', 0.0018421489091141924) + +[73641] +centroid = (0.61559876311564166, -1.7309077185581478) +station = ('kcsm', 0.0014252044567106866) +zone = ('okz022', 0.0026062342335122059) + +[73642] +centroid = (0.6252245331930707, -1.7437574782831535) +station = ('khhf', 0.0070617141657420696) +zone = ('okz014', 0.0038357098888819946) + +[73644] +centroid = (0.61818853501962834, -1.7355168538599848) +station = ('kcsm', 0.0035950203912272025) +zone = ('okz021', 0.004361553135991578) + +[73645] +centroid = (0.61431194931143884, -1.7435210210760932) +station = ('kaxs', 0.011815728192046026) +zone = ('okz021', 0.003299522391422866) + +[73646] +centroid = (0.62534403588695475, -1.7210622987943556) +station = ('kjwg', 0.0027401786866154045) +zone = ('okz017', 0.0026154405702619879) + +[73647] +centroid = (0.61846625181020576, -1.7306676834261212) +station = ('kcsm', 0.0015974298829083482) +zone = ('okz022', 0.0034796754313353392) + +[73650] +centroid = (0.62213910523481009, -1.7349087287887124) +station = ('kcsm', 0.0059156965333563762) +zone = ('okz014', 0.0042163472864064954) + +[73651] +centroid = (0.61111902652454786, -1.7291960741607173) +station = ('khbr', 0.00065652111896411826) +zone = ('okz035', 0.002186298667462879) + +[73654] +centroid = (0.62606752722178394, -1.7342930289884864) +station = ('kclk', 0.0085894480197804424) +zone = ('okz015', 0.0054758121145085988) + +[73655] +centroid = (0.6105571875850383, -1.7324780610993376) +station = ('khbr', 0.0030556640201783191) +zone = ('okz035', 0.0042078138926186634) + +[73658] +centroid = (0.62743206053757827, -1.7233725213120503) +station = ('kjwg', 0.0047732949228938516) +zone = ('okz015', 0.0038173956941723909) + +[73659] +centroid = (0.62592421823690281, -1.7264320136776263) +station = ('kclk', 0.0056684399538616806) +zone = ('okz015', 0.002528880554438331) + +[73660] +centroid = (0.62164531668283585, -1.7438863533951208) +station = ('khhf', 0.0084271105986375144) +zone = ('okz014', 0.003376304704898074) + +[73661] +centroid = (0.61378341125405733, -1.7280391652127403) +station = ('khbr', 0.0032611643077838093) +zone = ('okz022', 0.0021639605935437397) + +[73662] +centroid = (0.61607263746085061, -1.7398196140649262) +station = ('kcsm', 0.0069553760683932278) +zone = ('okz021', 0.00051875457711178432) + +[73663] +centroid = (0.63011524246313166, -1.7260428227077242) +station = ('kjwg', 0.0078819664337828055) +zone = ('okz015', 0.0025670917394324971) + +[73664] +centroid = (0.61411148079355482, -1.7321942705629632) +station = ('kcsm', 0.0029410917798658384) +zone = ('okz022', 0.0040677532643529782) + +[73666] +centroid = (0.61912033140068323, -1.7439358334794148) +station = ('khhf', 0.010090277488408407) +zone = ('okz021', 0.0049194142731175923) + +[73667] +centroid = (0.62842154005041129, -1.7285723458459321) +station = ('kclk', 0.0083361308087111681) +zone = ('okz015', 0.00055120393968097984) + +[73669] +centroid = (0.62361858593514075, -1.7234224726352423) +station = ('koja', 0.0034227190406894109) +zone = ('okz016', 0.0039757881011609772) + +[73673] +centroid = (0.611814959110488, -1.7377809996854268) +station = ('kaxs', 0.0070255314498349737) +zone = ('okz034', 0.002074126454134604) + +[73701] +centroid = (0.63576661858108929, -1.706792190124077) +station = ('kwdg', 0.00083047268453935734) +zone = ('okz012', 0.00084322865822591161) + +[73703] +centroid = (0.63577201164847796, -1.7098874093794412) +station = ('kend', 0.0017953324736241516) +zone = ('okz012', 0.0027512544974969133) + +[73705] +centroid = (0.63422188002002666, -1.7087232224084836) +station = ('kend', 0.00021512231025273772) +zone = ('okz012', 0.0018283566091009103) + +[73716] +centroid = (0.63703564748021435, -1.719582887907195) +station = ('kavk', 0.0051899843944306912) +zone = ('okz011', 0.0032824150737898426) + +[73717] +centroid = (0.64312557247932067, -1.7237637717704697) +station = ('kavk', 0.0018622501718452173) +zone = ('okz005', 0.002000748665909398) + +[73718] +centroid = (0.63224192615668684, -1.713333823786892) +station = ('kend', 0.0039967623921773332) +zone = ('okz018', 0.0058157655496752537) + +[73719] +centroid = (0.64501750938848246, -1.7154568771956029) +station = ('kavk', 0.0062184608383274295) +zone = ('okz006', 0.0039718011975314205) + +[73720] +centroid = (0.63182894634907993, -1.7082017354812802) +station = ('kend', 0.0023886765295326592) +zone = ('okz012', 0.0033523783288035851) + +[73722] +centroid = (0.64312031903827216, -1.714184828876872) +station = ('kavk', 0.0064837510210923113) +zone = ('okz006', 0.0025442333652285478) + +[73724] +centroid = (0.62922875482945873, -1.7220067488124873) +station = ('kjwg', 0.0047408172382741318) +zone = ('okz017', 0.0044849643649254554) + +[73726] +centroid = (0.6385772444486234, -1.7190989081056169) +station = ('kavk', 0.0040388887409590615) +zone = ('okz006', 0.0034817723611549134) + +[73727] +centroid = (0.6370368692106908, -1.7111514291836132) +station = ('kend', 0.0033911555247669247) +zone = ('okz012', 0.004200614715464855) + +[73728] +centroid = (0.64136326117370446, -1.7169233202864211) +station = ('kavk', 0.0041844086600907604) +zone = ('okz006', 0.00073580051661187448) + +[73729] +centroid = (0.63569106327777047, -1.71874057455689) +station = ('kavk', 0.0066931029086244875) +zone = ('okz011', 0.0021066658246043793) + +[73730] +centroid = (0.63391742478530888, -1.7023815511180695) +station = ('kwdg', 0.0036837271769592892) +zone = ('okz012', 0.0035707754311665213) + +[73731] +centroid = (0.63957579967356692, -1.7209547166992627) +station = ('kavk', 0.0024213491078707459) +zone = ('okz006', 0.0041891885419793806) + +[73733] +centroid = (0.63276322109767247, -1.7049761924906695) +station = ('kwdg', 0.0026128739643127884) +zone = ('okz012', 0.0025473477277392488) + +[73734] +centroid = (0.62794133016001763, -1.7080318974917685) +station = ('kend', 0.0062409236353055467) +zone = ('okz018', 0.0012567983339114926) + +[73735] +centroid = (0.63321175326214241, -1.7115199729084642) +station = ('kend', 0.0022546237915617904) +zone = ('okz012', 0.0042978721512635012) + +[73736] +centroid = (0.63425682151165153, -1.7048678075441206) +station = ('kwdg', 0.0016808228536803202) +zone = ('okz012', 0.0015734327107712138) + +[73737] +centroid = (0.63343651676321433, -1.7215906797721043) +station = ('kjwg', 0.0080921483814345215) +zone = ('okz011', 0.0014958704344399502) + +[73738] +centroid = (0.63619022744384079, -1.7026035919055085) +station = ('kwdg', 0.0035848676546949084) +zone = ('okz012', 0.0034768038517048586) + +[73739] +centroid = (0.63726276717577646, -1.7129278602028779) +station = ('kend', 0.0044638914415462425) +zone = ('okz006', 0.0045757810671024817) + +[73741] +centroid = (0.63804778136673845, -1.7149033809299179) +station = ('kend', 0.00617205881330207) +zone = ('okz006', 0.0031722256514995703) + +[73742] +centroid = (0.62997762325161188, -1.7092820942882647) +station = ('kend', 0.0041663745286621579) +zone = ('okz018', 0.0026141585842847401) + +[73743] +centroid = (0.63837405321710616, -1.7106526664432706) +station = ('kend', 0.0044490650906870441) +zone = ('okz012', 0.0047214053164637889) + +[73744] +centroid = (0.62740883020523419, -1.7157666556845395) +station = ('kjwg', 0.0021755707251484096) +zone = ('okz017', 0.0022017710114707249) + +[73746] +centroid = (0.6402762003023923, -1.7219003709945782) +station = ('kavk', 0.0015444285661354313) +zone = ('okz005', 0.0032343083191838495) + +[73747] +centroid = (0.63229596155032852, -1.7162144199041387) +station = ('kjwg', 0.0064616778922001539) +zone = ('okz011', 0.0032229763603916568) + +[73749] +centroid = (0.64082946967527454, -1.7131266881112652) +station = ('kend', 0.0074810160473845633) +zone = ('okz006', 0.0023780854290409957) + +[73750] +centroid = (0.62574638663941695, -1.7095914364448883) +station = ('krqo', 0.0066771895261666372) +zone = ('okz018', 0.0016256964878395915) + +[73753] +centroid = (0.63800948884294961, -1.7080444638623828) +station = ('kwdg', 0.0032379070275200868) +zone = ('okz012', 0.0032792336409274356) + +[73754] +centroid = (0.63526825726647485, -1.7121007312170655) +station = ('kend', 0.0027647895499289124) +zone = ('okz012', 0.0044152649013138477) + +[73755] +centroid = (0.63073115170286798, -1.7202791346524007) +station = ('kjwg', 0.0051880844616310597) +zone = ('okz011', 0.0030527509720294538) + +[73756] +centroid = (0.62796068586142229, -1.7126926247262944) +station = ('kjwg', 0.0045719942652656049) +zone = ('okz018', 0.0027211173258723958) + +[73757] +centroid = (0.63332553127607993, -1.7009660716414099) +station = ('kwdg', 0.0049504598986995869) +zone = ('okz013', 0.0036591134589265013) + +[73758] +centroid = (0.6449034870284498, -1.7118372214065993) +station = ('kp28', 0.0087402465264193492) +zone = ('ksz091', 0.0042130955191207664) + +[73759] +centroid = (0.64333019488082444, -1.7055431452448873) +station = ('kbkn', 0.0055216679620284006) +zone = ('okz007', 0.0014442428315045829) + +[73760] +centroid = (0.63479377205602772, -1.7133733031345721) +station = ('kend', 0.0036082066460690594) +zone = ('okz011', 0.0052618477657657538) + +[73761] +centroid = (0.64023755871275312, -1.711181064874312) +station = ('kend', 0.0063552246246095789) +zone = ('okz006', 0.0040142398372538792) + +[73762] +centroid = (0.62331269953043611, -1.7098019755125562) +station = ('krqo', 0.0042411223773694343) +zone = ('okz024', 0.0029900506082662921) + +[73763] +centroid = (0.62993943544757836, -1.7161191947401497) +station = ('kjwg', 0.0041994403091891218) +zone = ('okz017', 0.0040891758409928487) + +[73764] +centroid = (0.62578326544651164, -1.7139430309623005) +station = ('kjwg', 0.0031045226952041375) +zone = ('okz018', 0.0039967785085454847) + +[73766] +centroid = (0.63976078712098583, -1.707381029307115) +station = ('kwdg', 0.0048489212296109804) +zone = ('okz007', 0.0025158849725976148) + +[73768] +centroid = (0.63451842891323296, -1.7155216114575593) +station = ('kend', 0.0052923693516797191) +zone = ('okz011', 0.0035121137459391289) + +[73771] +centroid = (0.64360419412009506, -1.7099537493443098) +station = ('kwdg', 0.009035128759986407) +zone = ('okz007', 0.0029590770952703728) + +[73772] +centroid = (0.6259317231526863, -1.7179327489126044) +station = ('kjwg', 0.0001363003554403612) +zone = ('okz017', 0.000213501153726666) + +[73773] +centroid = (0.63295632432611315, -1.7090347113200868) +station = ('kend', 0.0011811865432228095) +zone = ('okz012', 0.002767069562056506) + +[73801] +centroid = (0.63669527336949039, -1.7355332774082461) +station = ('kwwr', 0.0013813002662301779) +zone = ('okz010', 0.0026357360884789738) + +[73832] +centroid = (0.62918643059509782, -1.7399146123361124) +station = ('kgag', 0.0045004509275925284) +zone = ('okz009', 0.0030808326696775486) + +[73834] +centroid = (0.64309314426181852, -1.7373059559696191) +station = ('kwwr', 0.0071583876611611879) +zone = ('okz004', 0.0020413895365602049) + +[73835] +centroid = (0.62774475372636551, -1.731703937762908) +station = ('kclk', 0.0085958610009631061) +zone = ('okz015', 0.0030063174197760703) + +[73838] +centroid = (0.63247019776955515, -1.7260518984198345) +station = ('kjwg', 0.0093421171289321692) +zone = ('okz015', 0.0046455938532602445) + +[73840] +centroid = (0.63453493972795694, -1.7386070640203959) +station = ('kwwr', 0.0019255582881106171) +zone = ('okz009', 0.0031074258561475986) + +[73841] +centroid = (0.6380703659272593, -1.7387721198077568) +station = ('kwwr', 0.0025759511459140945) +zone = ('okz004', 0.0040584541384006143) + +[73842] +centroid = (0.64260125811872904, -1.7313417121299488) +station = ('kavk', 0.0074295827112270544) +zone = ('okz005', 0.004746545837038694) + +[73843] +centroid = (0.63527422629251673, -1.7420880534003285) +station = ('kgag', 0.0018454311701852429) +zone = ('okz009', 0.0032557514079904408) + +[73844] +centroid = (0.64353233891479045, -1.747810254979332) +station = ('kgag', 0.011280371958804112) +zone = ('okz003', 0.0051367982796919429) + +[73848] +centroid = (0.63985320230487897, -1.745546685112543) +station = ('kgag', 0.0071812987180495001) +zone = ('okz004', 0.0053188449007808844) + +[73851] +centroid = (0.63864061735376332, -1.7419524762240335) +station = ('kwwr', 0.0048294212150082894) +zone = ('okz004', 0.0039564107550994817) + +[73852] +centroid = (0.63668319569106657, -1.7299721697192014) +station = ('kwwr', 0.0056780323636378346) +zone = ('okz010', 0.0022610453631359321) + +[73853] +centroid = (0.63253460041895371, -1.7304479639265875) +station = ('kwwr', 0.0062614058038251933) +zone = ('okz010', 0.0035679603448127021) + +[73855] +centroid = (0.64433848904299407, -1.7430208795256419) +station = ('kwwr', 0.0096994708048440195) +zone = ('okz004', 0.0035942912528509241) + +[73857] +centroid = (0.63302889511641092, -1.7336202394684275) +station = ('kwwr', 0.0039694115776046767) +zone = ('okz010', 0.0028153532911816075) + +[73858] +centroid = (0.63144568949863444, -1.7439597095835822) +station = ('kgag', 0.0030330935710105229) +zone = ('okz009', 0.0024482804384631349) + +[73859] +centroid = (0.63052483633198975, -1.7331056640450619) +station = ('kwwr', 0.0062474849781455292) +zone = ('okz015', 0.0047743232683239165) + +[73860] +centroid = (0.63784293207243181, -1.7250286293326826) +station = ('kavk', 0.0046046267836805941) +zone = ('okz005', 0.0038807249163952053) + +[73901] +centroid = (0.64123492711380525, -1.7630831774779288) +station = ('klbl', 0.005455396408779037) +zone = ('ksz086', 0.008242057907640472) + +[73931] +centroid = (0.63894229751497056, -1.7592566478126863) +station = ('kpyx', 0.0037536649967922497) +zone = ('okz003', 0.005126425473228672) + +[73932] +centroid = (0.64081110881154346, -1.7540433144303944) +station = ('kpyx', 0.0064141204640109171) +zone = ('okz003', 0.00067111465197140872) + +[73933] +centroid = (0.64124894210769878, -1.7903541564798504) +station = ('kcao', 0.0094669899100271269) +zone = ('okz001', 0.00087590421790828738) + +[73937] +centroid = (0.63800331037739755, -1.7941270870837642) +station = ('kcao', 0.0052943265299543619) +zone = ('okz001', 0.0051535424581151349) + +[73938] +centroid = (0.6445915268779483, -1.7554305370264645) +station = ('klbl', 0.0057841535911877648) +zone = ('okz003', 0.0034924617182980041) + +[73939] +centroid = (0.6418758643750152, -1.7765688304626059) +station = ('keha', 0.0041084946497178575) +zone = ('okz002', 0.0042234065788018379) + +[73942] +centroid = (0.64120754289784154, -1.7716208569397871) +station = ('kguy', 0.00096674913878642369) +zone = ('okz002', 0.00028212117394696705) + +[73944] +centroid = (0.63863251902603402, -1.7646677968123996) +station = ('kguy', 0.0057216404672483373) +zone = ('txz003', 0.0064736032340535175) + +[73945] +centroid = (0.64275074556916234, -1.766847695594848) +station = ('kguy', 0.0044975176105318147) +zone = ('okz002', 0.0038489183367068267) + +[73946] +centroid = (0.64464571935122272, -1.7942696804836522) +station = ('kspd', 0.0066078757018466884) +zone = ('okz001', 0.005163528232692555) + +[73947] +centroid = (0.64263801475277593, -1.7828377564297968) +station = ('keha', 0.0048553124637108255) +zone = ('okz001', 0.0053056560996975529) + +[73949] +centroid = (0.63846126731982844, -1.7787602658714101) +station = ('kguy', 0.0060860931366303623) +zone = ('txz002', 0.0053049246309236093) + +[73950] +centroid = (0.64323706411193804, -1.7609494426541956) +station = ('klbl', 0.0035511252881922401) +zone = ('ksz086', 0.005939734684392386) + +[73951] +centroid = (0.64477487371587017, -1.7638783843917225) +station = ('klbl', 0.0023001517826762219) +zone = ('ksz086', 0.0052704027620382281) + +[74001] +centroid = (0.63692923475572039, -1.6769623140926364) +station = ('kbvo', 0.004859424213560999) +zone = ('okz055', 0.0046090963393735675) + +[74002] +centroid = (0.63804374965616639, -1.6780119725580784) +station = ('kbvo', 0.0040610725370993162) +zone = ('okz055', 0.0043324451868738539) + +[74003] +centroid = (0.64102927496804274, -1.6766954532500065) +station = ('kbvo', 0.00097769503377720282) +zone = ('okz055', 0.0022941085620257792) + +[74006] +centroid = (0.64075286717440438, -1.673684149425078) +station = ('kbvo', 0.0019467439240745347) +zone = ('okz055', 0.00013959182262465559) + +[74008] +centroid = (0.6269829698677476, -1.6733695538274063) +station = ('krvs', 0.0026703462714314833) +zone = ('okz060', 0.0035672553345740027) + +[74010] +centroid = (0.62508174780696513, -1.6818661307853799) +station = ('kokm', 0.0064137129766927755) +zone = ('okz064', 0.0015418234227063286) + +[74011] +centroid = (0.62800102042043582, -1.6721858540754109) +station = ('krvs', 0.002731327911839884) +zone = ('okz060', 0.0030652636315568948) + +[74012] +centroid = (0.62921557759360613, -1.6721261463617001) +station = ('krvs', 0.0025056874403458691) +zone = ('okz060', 0.0022682369984751579) + +[74014] +centroid = (0.62928942247425801, -1.6699452701948707) +station = ('ktul', 0.0038078462941731517) +zone = ('okz067', 0.0027949786494753546) + +[74015] +centroid = (0.63146754102086944, -1.670329626602745) +station = ('ktul', 0.0025652866731790615) +zone = ('okz061', 0.0036126888031361008) + +[74016] +centroid = (0.63783329785496079, -1.6659387621771629) +station = ('kgcm', 0.0043939626605782826) +zone = ('okz061', 0.0037144034482674364) + +[74017] +centroid = (0.63514208741484812, -1.6683220441773459) +station = ('kgcm', 0.0022686417410641602) +zone = ('okz061', 0.00041050456785922607) + +[74019] +centroid = (0.63328861756240029, -1.6685905107228878) +station = ('kgcm', 0.0017451939614105182) +zone = ('okz061', 0.0015156515222596693) + +[74020] +centroid = (0.63261425724601472, -1.682862085469738) +station = ('kcuh', 0.0071685258703895263) +zone = ('okz059', 0.0041071468115177513) + +[74021] +centroid = (0.63501071648205054, -1.6727526846565812) +station = ('ktul', 0.0032547364186126066) +zone = ('okz061', 0.0033405205287920154) + +[74022] +centroid = (0.64479955267149347, -1.6753026456003299) +station = ('kbvo', 0.0031263172867555312) +zone = ('okz055', 0.0041646030006601727) + +[74023] +centroid = (0.62760196834025994, -1.6886301717547765) +station = ('kcuh', 0.00034246213018411552) +zone = ('okz020', 0.0037808395516386616) + +[74026] +centroid = (0.62328751442932995, -1.6888151068423176) +station = ('kcqb', 0.0008528890575975808) +zone = ('okz026', 0.0016922841035065185) + +[74027] +centroid = (0.64208642089597578, -1.668285793688782) +station = ('kcfv', 0.0051467225183570988) +zone = ('okz056', 0.00047488830992312229) + +[74028] +centroid = (0.62458813378791611, -1.6845920209177296) +station = ('kcuh', 0.0045737935127027757) +zone = ('okz064', 0.0029292149836477425) + +[74029] +centroid = (0.64268056587993971, -1.6735945965811581) +station = ('kbvo', 0.0020251934618491499) +zone = ('okz055', 0.0018903316705993249) + +[74030] +centroid = (0.62807617429802676, -1.6852695228267687) +station = ('kcuh', 0.0030881815485247024) +zone = ('okz064', 0.0030283564644888821) + +[74032] +centroid = (0.63193014053911045, -1.6912027172590458) +station = ('kswo', 0.0026930381305546422) +zone = ('okz020', 0.0025088272400502418) + +[74033] +centroid = (0.62737561658956864, -1.6756459867707822) +station = ('krvs', 0.0018472205533739299) +zone = ('okz060', 0.0031950708332833628) + +[74034] +centroid = (0.63226784429607885, -1.6856231265332229) +station = ('kcuh', 0.005546257017063962) +zone = ('okz059', 0.0023157498927577598) + +[74035] +centroid = (0.6356738717846383, -1.6822876627063217) +station = ('kbvo', 0.0079611582447670186) +zone = ('okz054', 0.0036292126080845525) + +[74036] +centroid = (0.63107693633427309, -1.6669037372672979) +station = ('kgcm', 0.0024103961101774713) +zone = ('okz067', 0.0034470332314206972) + +[74037] +centroid = (0.62829324089709726, -1.6751650962019802) +station = ('krvs', 0.00089926894062969138) +zone = ('okz060', 0.002206402818175367) + +[74038] +centroid = (0.63106955359153716, -1.6852773069952327) +station = ('kcuh', 0.0047161298091137104) +zone = ('okz059', 0.003407851803767009) + +[74039] +centroid = (0.62660320367580613, -1.6796447804331966) +station = ('krvs', 0.004414731014831772) +zone = ('okz064', 0.0018993510562865211) + +[74041] +centroid = (0.62729857775638564, -1.6764734473691527) +station = ('krvs', 0.0021452094704031504) +zone = ('okz060', 0.0035183546196297937) + +[74042] +centroid = (0.64330308991754104, -1.6681615262460401) +station = ('kcfv', 0.0039267105374395147) +zone = ('okz056', 0.0011805185701836587) + +[74044] +centroid = (0.62995952418726875, -1.682240748256028) +station = ('kcuh', 0.0060217008511051192) +zone = ('okz064', 0.0033453795128445449) + +[74045] +centroid = (0.63217794238630864, -1.687875857905357) +station = ('kcuh', 0.0048238001557237833) +zone = ('okz059', 0.0016761830021696869) + +[74046] +centroid = (0.62397178821586685, -1.6852754743995182) +station = ('kcqb', 0.0037290829464592581) +zone = ('okz064', 0.0037567070438564616) + +[74047] +centroid = (0.62575696333468422, -1.675705153432425) +station = ('kokm', 0.0033499417161810376) +zone = ('okz066', 0.0036644462821539647) + +[74048] +centroid = (0.64045511400401423, -1.6695610010534592) +station = ('kbvo', 0.0051581640796645482) +zone = ('okz056', 0.0018902701636613975) + +[74050] +centroid = (0.62958951438584598, -1.6766428141197662) +station = ('krvs', 0.0012132353919442496) +zone = ('okz060', 0.0019291704330154319) + +[74051] +centroid = (0.63901757356560918, -1.6747600925490549) +station = ('kbvo', 0.0028101320718349966) +zone = ('okz055', 0.0019279207881964971) + +[74052] +centroid = (0.62980804706148819, -1.6856051321886347) +station = ('kcuh', 0.0036274988010505001) +zone = ('okz064', 0.0043265532191756008) + +[74053] +centroid = (0.63583327270522294, -1.670833782410476) +station = ('kgcm', 0.0042648141674297094) +zone = ('okz061', 0.0020635490950393831) + +[74054] +centroid = (0.63320339313502538, -1.681580507653291) +station = ('krvs', 0.0065132581167918514) +zone = ('okz054', 0.0061385341662148936) + +[74055] +centroid = (0.63314794402468955, -1.6723582751522155) +station = ('ktul', 0.0016157436519332491) +zone = ('okz060', 0.0032169828460283682) + +[74056] +centroid = (0.64219916916565456, -1.681290521198072) +station = ('kbvo', 0.0044202840259788337) +zone = ('okz054', 0.0030491929302407148) + +[74058] +centroid = (0.63464753091800308, -1.6887560449004302) +station = ('kswo', 0.0057079764136402106) +zone = ('okz059', 0.0011540330663063906) + +[74059] +centroid = (0.62756945285629528, -1.6940347583165021) +station = ('kswo', 0.0036714554569589101) +zone = ('okz020', 0.0024194996673525923) + +[74060] +centroid = (0.63306545976424033, -1.6798133792389394) +station = ('krvs', 0.0053602160426222799) +zone = ('okz060', 0.0050353216224087735) + +[74061] +centroid = (0.63762331729265342, -1.6736422091631526) +station = ('kbvo', 0.0044306613081110929) +zone = ('okz055', 0.0031820784504676238) + +[74062] +centroid = (0.62897681655193338, -1.6912406258103991) +station = ('kcuh', 0.0023737202665022514) +zone = ('okz020', 0.001260821903277065) + +[74063] +centroid = (0.63094991127131295, -1.6789995845686119) +station = ('krvs', 0.0035204354491632345) +zone = ('okz060', 0.00367460387326449) + +[74066] +centroid = (0.62819883603785687, -1.678383553155828) +station = ('krvs', 0.0027404520181375188) +zone = ('okz064', 0.0033186505182985397) + +[74068] +centroid = (0.62669979019661137, -1.6856037882851107) +station = ('kcuh', 0.0028510355886613875) +zone = ('okz064', 0.0029286111018549952) + +[74070] +centroid = (0.63529421031245192, -1.6769597135520509) +station = ('ktul', 0.0044733265683570703) +zone = ('okz060', 0.0052525587610868438) + +[74071] +centroid = (0.62453943910178533, -1.6806856773457934) +station = ('kokm', 0.0053209639001089316) +zone = ('okz064', 0.0023339147763187648) + +[74072] +centroid = (0.64492573997641267, -1.6673899510903185) +station = ('kcfv', 0.002344038127180282) +zone = ('okz056', 0.0029118393173874417) + +[74073] +centroid = (0.63343360206336352, -1.6759722411678575) +station = ('ktul', 0.0025843812583090293) +zone = ('okz060', 0.0032294778030178468) + +[74074] +centroid = (0.62969645070911562, -1.6942611275204857) +station = ('kswo', 0.0015365917016752545) +zone = ('okz020', 0.0013870885078656847) + +[74075] +centroid = (0.63127108676026489, -1.6944219421577644) +station = ('kswo', 4.3700129133561617e-05) +zone = ('okz020', 0.0022065520710808548) + +[74078] +centroid = (0.63048450177297621, -1.6941991334254549) +station = ('kswo', 0.00076474556923109656) +zone = ('okz020', 0.0015661785321412222) + +[74079] +centroid = (0.62389632017901053, -1.6869509381215551) +station = ('kcqb', 0.0023725620666578133) +zone = ('okz026', 0.0032877916258314413) + +[74080] +centroid = (0.63778008276606757, -1.6711355149315608) +station = ('kbvo', 0.0054227305860680385) +zone = ('okz061', 0.0036023659521001962) + +[74081] +centroid = (0.6314688325645158, -1.6833976746572974) +station = ('kcuh', 0.0060628423110333151) +zone = ('okz059', 0.0042219251432035285) + +[74082] +centroid = (0.63618082011917265, -1.6734488615886167) +station = ('ktul', 0.0043717022542075143) +zone = ('okz055', 0.0046313834952040975) + +[74083] +centroid = (0.64366364003441801, -1.6712118032731655) +station = ('kcfv', 0.0044123871542393854) +zone = ('okz056', 0.0023636668986977325) + +[74084] +centroid = (0.63762907687918491, -1.6816504429964183) +station = ('kbvo', 0.0062085840889006903) +zone = ('okz054', 0.0017958333339906497) + +[74085] +centroid = (0.63025223335612068, -1.6881279707158074) +station = ('kcuh', 0.0028990297383064334) +zone = ('okz059', 0.0036121879103813942) + +[74103] +centroid = (0.63103426303406185, -1.6754210836433703) +station = ('krvs', 0.0018498508975197017) +zone = ('okz060', 0.00096012957560170247) + +[74104] +centroid = (0.63087489702006228, -1.6747133177251015) +station = ('ktul', 0.0013653923807391613) +zone = ('okz060', 0.00047656994750606285) + +[74105] +centroid = (0.63001921444768694, -1.6748369219427279) +station = ('krvs', 0.00088549504191222502) +zone = ('okz060', 0.00049676228762656274) + +[74106] +centroid = (0.6316685505908215, -1.6752569005206353) +station = ('ktul', 0.0014409509855662379) +zone = ('okz060', 0.001380982735647573) + +[74107] +centroid = (0.63032602587689501, -1.6760809926335491) +station = ('krvs', 0.001328982055807642) +zone = ('okz060', 0.0012855052712604216) + +[74108] +centroid = (0.63075321266461315, -1.6718520074960896) +station = ('ktul', 0.0016858250906282184) +zone = ('okz060', 0.0021587516670823013) + +[74110] +centroid = (0.63160161721400765, -1.6747111186102441) +station = ('ktul', 0.001015097943019151) +zone = ('okz060', 0.0011824320460318938) + +[74112] +centroid = (0.63088479303692102, -1.6738113839275484) +station = ('ktul', 0.00096235403729537264) +zone = ('okz060', 0.00071400102841766473) + +[74114] +centroid = (0.63053410403031773, -1.6745857341567809) +station = ('krvs', 0.0014389012926041061) +zone = ('okz060', 0.00012555329359892797) + +[74115] +centroid = (0.63167104641165195, -1.6739304851957046) +station = ('ktul', 0.0003890061719293964) +zone = ('okz060', 0.0013201221996271286) + +[74116] +centroid = (0.63161290949426807, -1.672768549699482) +station = ('ktul', 0.00060667309225884765) +zone = ('okz060', 0.0018269027337933985) + +[74117] +centroid = (0.63261268644968793, -1.6737970722276823) +station = ('ktul', 0.00084326269949467128) +zone = ('okz060', 0.0022521625626777254) + +[74119] +centroid = (0.6307982247060222, -1.6753269929433952) +station = ('krvs', 0.001609133171799039) +zone = ('okz060', 0.00076518318833732513) + +[74120] +centroid = (0.63094938767253728, -1.6751217771299458) +station = ('ktul', 0.0015798346477387815) +zone = ('okz060', 0.00072370231816800909) + +[74126] +centroid = (0.63254091851084593, -1.675966883007054) +station = ('ktul', 0.0021356540683782673) +zone = ('okz060', 0.0024203939242695605) + +[74127] +centroid = (0.63145408453233653, -1.6763103288972614) +station = ('krvs', 0.0024267502051959775) +zone = ('okz060', 0.0017868677981500143) + +[74128] +centroid = (0.63089236776587465, -1.672923569843644) +station = ('ktul', 0.0010208892414164691) +zone = ('okz060', 0.0013500687455564432) + +[74129] +centroid = (0.63052183436567633, -1.6732683596373756) +station = ('ktul', 0.0012986301440703436) +zone = ('okz060', 0.00099491900182099489) + +[74130] +centroid = (0.63253316924896708, -1.6747584344862658) +station = ('ktul', 0.0012601990814590141) +zone = ('okz060', 0.0021117716548170675) + +[74131] +centroid = (0.62923339740526907, -1.6767136046742273) +station = ('krvs', 0.0012041071084743788) +zone = ('okz060', 0.0021566856038625522) + +[74132] +centroid = (0.62916993723366654, -1.6758081453115852) +station = ('krvs', 0.00047180136193376697) +zone = ('okz060', 0.0016489922803023438) + +[74133] +centroid = (0.62900395642180185, -1.6733767969438018) +station = ('krvs', 0.0015062206438480991) +zone = ('okz060', 0.0016901110876632246) + +[74134] +centroid = (0.63024678792885447, -1.6721212594397947) +station = ('ktul', 0.0019090398944536465) +zone = ('okz060', 0.001926560096394182) + +[74135] +centroid = (0.62999762472483978, -1.674189910935721) +station = ('krvs', 0.0011621256996141955) +zone = ('okz060', 0.00049956867050788244) + +[74136] +centroid = (0.629407616171203, -1.6744943138105612) +station = ('krvs', 0.00062926018487746043) +zone = ('okz060', 0.0010245084505210421) + +[74137] +centroid = (0.6286563566479747, -1.6743284726250369) +station = ('krvs', 0.00090104683950875436) +zone = ('okz060', 0.0017808658895000027) + +[74145] +centroid = (0.63001390864676088, -1.6736046322243574) +station = ('krvs', 0.0015467809713421807) +zone = ('okz060', 0.00083211003830603451) + +[74146] +centroid = (0.63004302073868423, -1.672988688078036) +station = ('ktul', 0.0018101533486819192) +zone = ('okz060', 0.0012776729163546424) + +[74301] +centroid = (0.6401470808443297, -1.6619849980094499) +station = ('kgmj', 0.0069241091241634689) +zone = ('okz057', 0.0014830981682314166) + +[74330] +centroid = (0.63594748705147341, -1.6628165950381477) +station = ('kgcm', 0.0038330039542116626) +zone = ('okz062', 0.0024324138485150642) + +[74331] +centroid = (0.63947854992764586, -1.6570227302400571) +station = ('kgmj', 0.0028888670533431583) +zone = ('okz058', 0.0038746638904971773) + +[74332] +centroid = (0.63734137680528624, -1.6620531356634476) +station = ('kgcm', 0.0052463726251692037) +zone = ('okz062', 0.0037555777610760554) + +[74333] +centroid = (0.64217651479196369, -1.6594923885849215) +station = ('kgmj', 0.0058247960503782304) +zone = ('okz057', 0.0018573015343019057) + +[74337] +centroid = (0.63077492456050799, -1.6639434319631126) +station = ('kgcm', 0.0033524433549187598) +zone = ('okz062', 0.0031829032117279585) + +[74338] +centroid = (0.632806103837394, -1.6533813276485738) +station = ('kslg', 0.003637054582338158) +zone = ('okz063', 0.0028191428541200709) + +[74339] +centroid = (0.64461898090708214, -1.6559633328373891) +station = ('kgmj', 0.0060660798418152714) +zone = ('okz058', 0.001971236013355613) + +[74340] +centroid = (0.63661285892221131, -1.6584659953584087) +station = ('kgmj', 0.0045898188217807596) +zone = ('okz063', 0.0033083099967565715) + +[74342] +centroid = (0.63581124665006283, -1.6569082191878337) +station = ('kgmj', 0.0041149711214205475) +zone = ('okz063', 0.0018783854912322827) + +[74343] +centroid = (0.64115898783805092, -1.6550657972695508) +station = ('kgmj', 0.0025995642343280955) +zone = ('okz058', 0.0017594203583891832) + +[74344] +centroid = (0.63871158244114945, -1.6535369062980965) +station = ('kgmj', 0.00017349166606077162) +zone = ('okz063', 0.0033824276304652645) + +[74346] +centroid = (0.63598850228889536, -1.6537761560319599) +station = ('kgmj', 0.002902572364841221) +zone = ('okz063', 0.00087053629633112326) + +[74347] +centroid = (0.63198223861728253, -1.6547812736948908) +station = ('ktqh', 0.0056061966686913444) +zone = ('okz063', 0.003463188008055743) + +[74349] +centroid = (0.63735095866287961, -1.6587147745899882) +station = ('kgmj', 0.0044593413201520007) +zone = ('okz063', 0.003806504989464758) + +[74350] +centroid = (0.63645040367543559, -1.658978074960944) +station = ('kgmj', 0.0050283688101389881) +zone = ('okz062', 0.0038069360254848806) + +[74352] +centroid = (0.63079518783312372, -1.6612115029915511) +station = ('ktqh', 0.0044709729838540817) +zone = ('okz062', 0.0028798778317010824) + +[74354] +centroid = (0.64378452153841115, -1.6560122195097373) +station = ('kgmj', 0.0052989334953332055) +zone = ('okz058', 0.0013387444977172854) + +[74358] +centroid = (0.6443379828975111, -1.6559788837210243) +station = ('kgmj', 0.00580539454629014) +zone = ('okz058', 0.0017388179376476793) + +[74359] +centroid = (0.63131702382617749, -1.6544835030712082) +station = ('ktqh', 0.0051687144742996894) +zone = ('okz063', 0.0041273915522329801) + +[74360] +centroid = (0.64525508360626405, -1.6551630470154721) +station = ('kjln', 0.0056078444538016541) +zone = ('okz058', 0.0023767879731530985) + +[74361] +centroid = (0.63360281173434441, -1.6634181925780176) +station = ('kgcm', 0.0024361283447368069) +zone = ('okz062', 0.0010683099452475837) + +[74363] +centroid = (0.64499340639151237, -1.6530901892760486) +station = ('kjln', 0.0045289961241000432) +zone = ('okz058', 0.0024804529129310278) + +[74364] +centroid = (0.63174489129230382, -1.6571643637088567) +station = ('ktqh', 0.004733695575784797) +zone = ('okz063', 0.004228807176080894) + +[74365] +centroid = (0.63344470235740613, -1.6593079247362783) +station = ('ktqh', 0.0064367806328366681) +zone = ('okz062', 0.0022488766939618436) + +[74366] +centroid = (0.63513234847762201, -1.6588684682839185) +station = ('kgmj', 0.005716998388978903) +zone = ('okz062', 0.0030225544578678059) + +[74367] +centroid = (0.63558063629599681, -1.6600330566806043) +station = ('kgmj', 0.0062023618329564165) +zone = ('okz062', 0.0025942558530873401) + +[74368] +centroid = (0.6319410139403504, -1.6554193311628349) +station = ('ktqh', 0.0053378113956562287) +zone = ('okz063', 0.0035608070203316669) + +[74369] +centroid = (0.64445619404774857, -1.6615883893902266) +station = ('kcfv', 0.0057885530848000378) +zone = ('okz057', 0.0028449385383673381) + +[74370] +centroid = (0.64140455566380661, -1.652484176053171) +station = ('kgmj', 0.0026504334509217589) +zone = ('okz058', 0.0023551381430944522) + +[74401] +centroid = (0.62348533004675089, -1.6662256943061904) +station = ('kmko', 0.0019178347081984172) +zone = ('okz070', 0.0022480288051419223) + +[74403] +centroid = (0.62256795008531762, -1.6634199902671472) +station = ('kmko', 0.00091947574881132154) +zone = ('okz070', 0.001399326351370147) + +[74421] +centroid = (0.62416216873067421, -1.6762866447793119) +station = ('kokm', 0.0021244431983409207) +zone = ('okz066', 0.0023065942110607834) + +[74422] +centroid = (0.62180942999240096, -1.6703810789090938) +station = ('kokm', 0.0035175056378962369) +zone = ('okz071', 0.0044564589280217106) + +[74423] +centroid = (0.62260735961982761, -1.6614090917161692) +station = ('kmko', 0.0025123267971710389) +zone = ('okz070', 0.002839658260706499) + +[74425] +centroid = (0.61384793607650356, -1.6692590241862792) +station = ('kmlc', 0.0054128381717107651) +zone = ('okz071', 0.0035579128998258162) + +[74426] +centroid = (0.61874883806939618, -1.6673184100442793) +station = ('kmko', 0.0041687403011502712) +zone = ('okz071', 0.002371212204366327) + +[74427] +centroid = (0.6226826531237587, -1.65608876965073) +station = ('kjsv', 0.004339509658809174) +zone = ('okz072', 0.0036846657637683508) + +[74428] +centroid = (0.62080268917326564, -1.6691939408584722) +station = ('kmko', 0.0040961101138855156) +zone = ('okz071', 0.0034399966227292938) + +[74429] +centroid = (0.62754227807984153, -1.6690159347280613) +station = ('krvs', 0.0052869296806598489) +zone = ('okz067', 0.0015056532081760472) + +[74430] +centroid = (0.61307899636795238, -1.6695954189463085) +station = ('kmlc', 0.0045969902702047028) +zone = ('okz073', 0.0037568636271829302) + +[74431] +centroid = (0.61908338278041852, -1.6744991658258819) +station = ('kokm', 0.0034430085838128522) +zone = ('okz066', 0.0030855786530152103) + +[74432] +centroid = (0.61582933856312261, -1.669570094218862) +station = ('kmlc', 0.0072209085694868265) +zone = ('okz071', 0.0015618309681333284) + +[74434] +centroid = (0.62499453370424285, -1.6617431651882935) +station = ('kmko', 0.0035534142155793469) +zone = ('okz068', 0.0034339184020573078) + +[74435] +centroid = (0.62092908591769502, -1.6597005714580997) +station = ('kmko', 0.004077521582567651) +zone = ('okz070', 0.0041108473692758928) + +[74436] +centroid = (0.62478272054622086, -1.6702274026684556) +station = ('kokm', 0.0042197907775875709) +zone = ('okz067', 0.0037843281331387119) + +[74437] +centroid = (0.61868216649196994, -1.6743956678012386) +station = ('kokm', 0.0038471401306629845) +zone = ('okz066', 0.0034936289961638679) + +[74438] +centroid = (0.6203670026320901, -1.6713023335014665) +station = ('kokm', 0.0034538761011889203) +zone = ('okz071', 0.0032525798875075664) + +[74441] +centroid = (0.62791450444941455, -1.6605936738896376) +station = ('ktqh', 0.0021551706956785426) +zone = ('okz068', 0.0023915066496437718) + +[74442] +centroid = (0.61319788819659826, -1.6723590430970863) +station = ('kmlc', 0.0043987098375486014) +zone = ('okz073', 0.0037977888355812169) + +[74445] +centroid = (0.62188641646570642, -1.6725246224832231) +station = ('kokm', 0.001817878738460423) +zone = ('okz066', 0.001943062921144023) + +[74446] +centroid = (0.62568322317378733, -1.6635731778155944) +station = ('kmko', 0.0035475138462112438) +zone = ('okz067', 0.0035002664888140397) + +[74447] +centroid = (0.62203925494830359, -1.6755469916956092) +station = ('kokm', 0.00089683617209131475) +zone = ('okz066', 0.00054335850703361298) + +[74450] +centroid = (0.62133894158594083, -1.6664035084503837) +station = ('kmko', 0.0018022857382415383) +zone = ('okz070', 0.0014251600970786864) + +[74451] +centroid = (0.62370487501335936, -1.6574344534106027) +station = ('ktqh', 0.0034207463777347004) +zone = ('okz068', 0.0030259952300789022) + +[74452] +centroid = (0.63041592778666522, -1.6592509746427857) +station = ('ktqh', 0.0034572425396471131) +zone = ('okz068', 0.0038505040335581678) + +[74454] +centroid = (0.62577593506365337, -1.6670665241266314) +station = ('kmko', 0.004145283029610875) +zone = ('okz067', 0.0018616938688054338) + +[74455] +centroid = (0.61717032738730748, -1.6626539652584467) +station = ('kgzl', 0.0027208319173642526) +zone = ('okz074', 0.0031661839021293854) + +[74456] +centroid = (0.62327871796989975, -1.6754634951441938) +station = ('kokm', 0.0010189836345867495) +zone = ('okz066', 0.0012180344442711442) + +[74457] +centroid = (0.62842134806419359, -1.6552908400233031) +station = ('ktqh', 0.0026692732793780587) +zone = ('okz068', 0.0028317405356621259) + +[74458] +centroid = (0.62628663585607935, -1.6683906181636567) +station = ('kmko', 0.0051748991962356885) +zone = ('okz067', 0.0016778326701319438) + +[74459] +centroid = (0.62019137014946202, -1.6666532650663441) +station = ('kmko', 0.0026923150601713369) +zone = ('okz070', 0.002144727938423832) + +[74460] +centroid = (0.61972898007073118, -1.6747572825689594) +station = ('kokm', 0.0027982819013950334) +zone = ('okz066', 0.0024258150918291914) + +[74462] +centroid = (0.61594275005791721, -1.6609293879712586) +station = ('kgzl', 0.00093490737437091481) +zone = ('okz074', 0.0013389528946846539) + +[74463] +centroid = (0.62412745413185222, -1.6676689594245422) +station = ('kmko', 0.0032337797772880065) +zone = ('okz070', 0.0034888067193566117) + +[74464] +centroid = (0.62706138751103968, -1.6577565539240582) +station = ('ktqh', 0.00031119948057193941) +zone = ('okz068', 0.00044558726640903546) + +[74467] +centroid = (0.62773100053185982, -1.6649160515953716) +station = ('ktqh', 0.0055240870832316069) +zone = ('okz067', 0.0018182584615925223) + +[74468] +centroid = (0.62154955046677896, -1.6679778303422677) +station = ('kmko', 0.0029326527208028913) +zone = ('okz070', 0.0026781605679458294) + +[74469] +centroid = (0.61950646804439435, -1.6634442154371649) +station = ('kmko', 0.0028274013061040403) +zone = ('okz070', 0.0023404541295463607) + +[74470] +centroid = (0.61918551944824518, -1.6609753599437562) +station = ('kgzl', 0.0035628217361055154) +zone = ('okz070', 0.003876360662254422) + +[74471] +centroid = (0.62542484463132209, -1.6558267259168353) +station = ('ktqh', 0.0024989995954137253) +zone = ('okz068', 0.0022055549073789031) + +[74472] +centroid = (0.61522662401253148, -1.6627474974530612) +station = ('kgzl', 0.0024568420316420738) +zone = ('okz074', 0.0022080107319107779) + +[74477] +centroid = (0.62838628439952104, -1.6627155928343347) +station = ('ktqh', 0.0039275299347043945) +zone = ('okz068', 0.0041352171255961368) + +[74501] +centroid = (0.61061684293887153, -1.6718646960397516) +station = ('kmlc', 0.0017910037807828364) +zone = ('okz073', 0.0012384193831943872) + +[74521] +centroid = (0.60483528271200759, -1.6596017160092664) +station = ('krkr', 0.0092615420264239683) +zone = ('okz075', 0.0045130454224737125) + +[74522] +centroid = (0.60918267098592271, -1.6701571706193556) +station = ('kmlc', 0.0013412452384286265) +zone = ('okz073', 0.00086903267492921836) + +[74523] +centroid = (0.59739930743388581, -1.6687429652330494) +station = ('khhw', 0.0035468561519652309) +zone = ('okz053', 0.0036292882417398075) + +[74525] +centroid = (0.59927797984073239, -1.6767068327967294) +station = ('kaqr', 0.0015819337902001408) +zone = ('okz048', 0.00078921484828897758) + +[74528] +centroid = (0.60598041068753361, -1.6706982925006437) +station = ('kmlc', 0.0029729775108177552) +zone = ('okz073', 0.0035738274620486484) + +[74530] +centroid = (0.60102386759808746, -1.6841489167272332) +station = ('kaqr', 0.0050333164044012429) +zone = ('okz047', 0.003174244071911584) + +[74531] +centroid = (0.60886542248778774, -1.6799130375392279) +station = ('kadh', 0.0061723182784659244) +zone = ('okz032', 0.0028446623105433388) + +[74533] +centroid = (0.59704243996173045, -1.678954572527203) +station = ('kaqr', 0.0033958940294781912) +zone = ('okz048', 0.0036923013834648175) + +[74534] +centroid = (0.60414973483511669, -1.6819343207992554) +station = ('kaqr', 0.0049308685977178298) +zone = ('okz043', 0.0011086821404151421) + +[74535] +centroid = (0.60186869422251521, -1.6832981385300563) +station = ('kaqr', 0.00454316426245249) +zone = ('okz043', 0.0027928462516073156) + +[74536] +centroid = (0.60325279267922438, -1.666087551495895) +station = ('kmlc', 0.0072550620538923763) +zone = ('okz049', 0.0028459585904028963) + +[74538] +centroid = (0.60357225774550938, -1.6800357865455209) +station = ('kaqr', 0.0035828917011914898) +zone = ('okz043', 0.00056942804918439969) + +[74540] +centroid = (0.60338561223530118, -1.670432007616667) +station = ('kmlc', 0.005547673591864471) +zone = ('okz049', 0.0055021857664887073) + +[74543] +centroid = (0.59987926322133711, -1.6657008563468234) +station = ('khhw', 0.0060703084662881591) +zone = ('okz049', 0.0011948764936292036) + +[74546] +centroid = (0.60839243826049727, -1.6681692231480412) +station = ('kmlc', 0.0029575360620065936) +zone = ('okz073', 0.0026809333612048659) + +[74547] +centroid = (0.60755410426088674, -1.6687695465975572) +station = ('kmlc', 0.0027470765202687753) +zone = ('okz073', 0.0027688387963626924) + +[74549] +centroid = (0.60322882930859445, -1.6562148347826016) +station = ('krkr', 0.008917063503529405) +zone = ('okz076', 0.0064962414110051889) + +[74552] +centroid = (0.61297377046734969, -1.6622950382977741) +station = ('kgzl', 0.0034422565891709246) +zone = ('okz074', 0.0025533940254741849) + +[74553] +centroid = (0.60586331654801728, -1.6742120417106363) +station = ('kmlc', 0.0035964357692809426) +zone = ('okz073', 0.0044631666983283242) + +[74554] +centroid = (0.60949087867853247, -1.6704668269352443) +station = ('kmlc', 0.0012324768440429667) +zone = ('okz073', 0.00054148835215461137) + +[74555] +centroid = (0.59776064294892617, -1.6748972579749692) +station = ('kaqr', 0.003711490231788816) +zone = ('okz048', 0.0024165707213375073) + +[74556] +centroid = (0.60151479381008832, -1.678651356476254) +station = ('kaqr', 0.0012371863421542435) +zone = ('okz048', 0.0025823385428045461) + +[74557] +centroid = (0.60023670665214546, -1.6702851032535266) +station = ('khhw', 0.0066425020203134651) +zone = ('okz048', 0.0048709287634477868) + +[74558] +centroid = (0.60222201867628899, -1.6609587793158622) +station = ('khhw', 0.0098512837703792194) +zone = ('okz049', 0.0033928702944412241) + +[74560] +centroid = (0.60473475174709279, -1.6713295780910902) +station = ('kmlc', 0.0041077616298506184) +zone = ('okz073', 0.0048052339524765151) + +[74561] +centroid = (0.61313327610768953, -1.6653081921717097) +station = ('kgzl', 0.0052014688698524816) +zone = ('okz075', 0.0050175293825238032) + +[74562] +centroid = (0.59857812026397528, -1.6630461058347847) +station = ('khhw', 0.0058900260910877194) +zone = ('okz049', 0.0024684183609308785) + +[74563] +centroid = (0.61034041769194058, -1.6593307361896019) +station = ('kgzl', 0.0054258093164858334) +zone = ('okz075', 0.0030252657155375499) + +[74565] +centroid = (0.60750190146295968, -1.6727568559934936) +station = ('kmlc', 0.00157009346472056) +zone = ('okz073', 0.0024361645300798518) + +[74567] +centroid = (0.60085224937273884, -1.6649185299629092) +station = ('khhw', 0.0071836113607117152) +zone = ('okz049', 0.00030166445075820121) + +[74569] +centroid = (0.6017432050492969, -1.674195216736647) +station = ('kaqr', 0.0035033750640670993) +zone = ('okz048', 0.0024374971702884958) + +[74570] +centroid = (0.6084706290109867, -1.677278271047125) +station = ('kmlc', 0.0045622924593156644) +zone = ('okz032', 0.0038794956010932166) + +[74571] +centroid = (0.60593065135055924, -1.6576916974890541) +station = ('krkr', 0.0073763116693300072) +zone = ('okz075', 0.0047795787447496019) + +[74572] +centroid = (0.6046589695509712, -1.6829944163336241) +station = ('kadh', 0.0044658559318449175) +zone = ('okz043', 0.0021166183593578506) + +[74574] +centroid = (0.60543810198235393, -1.6631309986496017) +station = ('kmlc', 0.0078374773565970737) +zone = ('okz075', 0.0033146123360837908) + +[74576] +centroid = (0.6048544813337795, -1.6762023628297331) +station = ('kaqr', 0.0047547224451215814) +zone = ('okz043', 0.0038957751377065144) + +[74577] +centroid = (0.6051901430555231, -1.6547120364834642) +station = ('krkr', 0.0066172041384931326) +zone = ('okz076', 0.0042072738722250787) + +[74578] +centroid = (0.60922721178843364, -1.664025776597222) +station = ('kmlc', 0.006335278559968043) +zone = ('okz075', 0.0014077179211722639) + +[74601] +centroid = (0.64057349968717692, -1.6955675064656033) +station = ('kpnc', 0.00087370768766791571) +zone = ('okz008', 0.0020230144374905031) + +[74604] +centroid = (0.64056948542989744, -1.6926615158077403) +station = ('kpnc', 0.0017346931279538544) +zone = ('okz008', 0.0030341348821160199) + +[74630] +centroid = (0.63725657125693191, -1.70053548146165) +station = ('kbkn', 0.0043135216947144117) +zone = ('okz013', 0.0035723142009652991) + +[74631] +centroid = (0.64215925348566139, -1.6982950721140351) +station = ('kbkn', 0.00097824956851038595) +zone = ('okz008', 0.0022950396899011657) + +[74632] +centroid = (0.64470476383981767, -1.6988720430581596) +station = ('kbkn', 0.003300382914738892) +zone = ('okz008', 0.0034362731348037499) + +[74633] +centroid = (0.64071391142549994, -1.6890707975777348) +station = ('kpnc', 0.0045418394274049463) +zone = ('okz054', 0.0054803560474257071) + +[74636] +centroid = (0.64259171116772063, -1.7020847229721829) +station = ('kbkn', 0.0026830482426153258) +zone = ('okz007', 0.0037059894733580644) + +[74637] +centroid = (0.63820473882637019, -1.6871191180482772) +station = ('kpnc', 0.0067543023943163975) +zone = ('okz054', 0.0038903210296127831) + +[74640] +centroid = (0.63794643009707508, -1.7043378208634601) +station = ('kwdg', 0.0035928838188944265) +zone = ('okz012', 0.0035330304072680421) + +[74641] +centroid = (0.64219468366947696, -1.6909901536094456) +station = ('kpnc', 0.0031722057436720328) +zone = ('okz008', 0.003617828688754772) + +[74643] +centroid = (0.63977424360951873, -1.7029660618845626) +station = ('kbkn', 0.0035196217539140181) +zone = ('okz007', 0.0038551725534367431) + +[74644] +centroid = (0.63795133447227315, -1.6946847538365299) +station = ('kpnc', 0.0031663686189099412) +zone = ('okz013', 0.0034020437148854217) + +[74646] +centroid = (0.64284733208996769, -1.7006768705843542) +station = ('kbkn', 0.0019260420585080205) +zone = ('okz008', 0.0041668295926013668) + +[74647] +centroid = (0.64434239858051867, -1.6928744459764837) +station = ('kpnc', 0.0035452984693749904) +zone = ('okz008', 0.0027203662374078895) + +[74650] +centroid = (0.63682694100826087, -1.6886153539094271) +station = ('kpnc', 0.0065100370748215038) +zone = ('okz059', 0.0030632092698921537) + +[74651] +centroid = (0.63649393218698036, -1.6959932795366275) +station = ('kpnc', 0.0047362444532053957) +zone = ('okz013', 0.0016090493249402069) + +[74652] +centroid = (0.64331371897268563, -1.6867562117369101) +station = ('kpnc', 0.0067406940817532112) +zone = ('okz054', 0.0052828164913926289) + +[74653] +centroid = (0.63965172149602867, -1.6990836118700861) +station = ('kbkn', 0.0017567843190664525) +zone = ('okz008', 0.0041232593128488386) + +[74701] +centroid = (0.59353101203964309, -1.6821295009695059) +station = ('kdua', 0.0011496481391241519) +zone = ('okz052', 0.0018883238754175311) + +[74720] +centroid = (0.59047047247651585, -1.6820033136645867) +station = ('kdua', 0.0019609702627234197) +zone = ('okz052', 0.0027986480070722182) + +[74722] +centroid = (0.60003683154620713, -1.6562884178638655) +station = ('k4o4', 0.0082296985621563342) +zone = ('okz077', 0.0049670803077127733) + +[74723] +centroid = (0.59328862071312605, -1.6758156153207837) +station = ('kdua', 0.0055324013347617159) +zone = ('okz052', 0.0035550885111878452) + +[74724] +centroid = (0.59945560199870795, -1.6556425413208724) +station = ('k4o4', 0.007629061080955608) +zone = ('okz077', 0.004239217620110875) + +[74726] +centroid = (0.59238801336580449, -1.6785591681851637) +station = ('kdua', 0.00318677378372835) +zone = ('okz052', 0.001292796521573883) + +[74727] +centroid = (0.59373909019306581, -1.6730510486922094) +station = ('khhw', 0.0045884672436052676) +zone = ('okz053', 0.0044381360844972873) + +[74728] +centroid = (0.59603540243662223, -1.6546211222827278) +station = ('k4o4', 0.0042870195188039152) +zone = ('okz077', 0.00076564584945876452) + +[74729] +centroid = (0.5959685388729784, -1.6799492007613293) +station = ('kdua', 0.0041030038019923406) +zone = ('okz052', 0.0032157533289864553) + +[74730] +centroid = (0.59187638754887495, -1.6830382415511416) +station = ('kdua', 0.00074696323159491773) +zone = ('okz052', 0.0026268512456813307) + +[74731] +centroid = (0.591208729296817, -1.6852975877211409) +station = ('kdua', 0.0026849420191081314) +zone = ('okz051', 0.0040059621184130936) + +[74733] +centroid = (0.59056299238016419, -1.6838768198968472) +station = ('kdua', 0.0022112452136673201) +zone = ('okz052', 0.0038559819932229957) + +[74734] +centroid = (0.59519647502506623, -1.6500780825996642) +station = ('kdeq', 0.0022529706334730453) +zone = ('okz077', 0.0033123811977567798) + +[74735] +centroid = (0.59510435654714589, -1.6623828283591493) +station = ('khhw', 0.0043996526682993694) +zone = ('okz053', 0.0045724088753279378) + +[74736] +centroid = (0.59222953746972351, -1.6579178048936498) +station = ('k4o4', 0.0019612069015735017) +zone = ('okz077', 0.0045119057183226246) + +[74738] +centroid = (0.59159088658983361, -1.6658005321004048) +station = ('khhw', 0.0028003009733101156) +zone = ('okz053', 0.0027737127524087206) + +[74740] +centroid = (0.58964950450296283, -1.6511650736578061) +station = ('k4o4', 0.0042820574221358512) +zone = ('arz059', 0.0055729315102825304) + +[74741] +centroid = (0.58958763258097968, -1.6808234187303608) +station = ('kdua', 0.0031055067851140541) +zone = ('okz052', 0.0032301375565300218) + +[74743] +centroid = (0.59355900712084508, -1.6666929014936569) +station = ('khhw', 0.00081711258022259452) +zone = ('okz053', 0.00089139916525101369) + +[74745] +centroid = (0.59095274185542701, -1.6548575445832032) +station = ('k4o4', 0.0010716576206712125) +zone = ('okz077', 0.0045156060711719357) + +[74747] +centroid = (0.58951260087643642, -1.6817524400379049) +station = ('kdua', 0.0029405852683368774) +zone = ('okz052', 0.0035348662570765864) + +[74748] +centroid = (0.59604788154077404, -1.6824785144600269) +station = ('kdua', 0.0036449224972471871) +zone = ('okz052', 0.0038580955594765087) + +[74750] +centroid = (0.59285056052416807, -1.6583880489540148) +station = ('k4o4', 0.002525950841537433) +zone = ('okz077', 0.0044058990192713541) + +[74753] +centroid = (0.5918049512225908, -1.6848811870682001) +station = ('kdua', 0.0021437135080088613) +zone = ('okz051', 0.0039329249506999684) + +[74754] +centroid = (0.59686574282825855, -1.6604116360486545) +station = ('k4o4', 0.0064228895581600479) +zone = ('okz049', 0.005158703393834607) + +[74755] +centroid = (0.59576260747453558, -1.6600658514172495) +station = ('k4o4', 0.0054002881438591803) +zone = ('okz077', 0.0049756501582394492) + +[74756] +centroid = (0.59488692342893246, -1.664590530236582) +station = ('khhw', 0.0025869972806705581) +zone = ('okz053', 0.0027670326339130197) + +[74759] +centroid = (0.59439983694128584, -1.6704920993028132) +station = ('khhw', 0.0024921638512738916) +zone = ('okz053', 0.0023735323020736784) + +[74760] +centroid = (0.59623105384577091, -1.664397706260822) +station = ('khhw', 0.0034178450540103752) +zone = ('okz053', 0.0036092136830161155) + +[74761] +centroid = (0.59350076548370601, -1.6615685799032165) +station = ('khhw', 0.0049608549142628449) +zone = ('okz053', 0.0050949183588054874) + +[74764] +centroid = (0.59424808056282497, -1.659734221406078) +station = ('k4o4', 0.0041939858083720784) +zone = ('okz077', 0.0048361197109875057) + +[74766] +centroid = (0.59592305559267134, -1.6577167255105276) +station = ('k4o4', 0.0044547232822371823) +zone = ('okz077', 0.0030605784811309519) + +[74801] +centroid = (0.61636527681653253, -1.6924400335256624) +station = ('ksnl', 0.00082846133820710941) +zone = ('okz030', 0.0019150706252018279) + +[74804] +centroid = (0.61769759135433489, -1.6915987499196161) +station = ('ksnl', 0.00067018258195124735) +zone = ('okz030', 0.0032455937681523874) + +[74820] +centroid = (0.60717690370294586, -1.6879983974721393) +station = ('kadh', 0.00068538423162120988) +zone = ('okz042', 0.0011456653551417501) + +[74824] +centroid = (0.62637550802159081, -1.6907212507315907) +station = ('kcuh', 0.0017522218891906202) +zone = ('okz026', 0.0032435180286877296) + +[74825] +centroid = (0.60768790120134464, -1.6826712860759099) +station = ('kadh', 0.0037535930210918929) +zone = ('okz043', 0.0043203020915581637) + +[74826] +centroid = (0.61124763983712727, -1.6911051533538595) +station = ('kadh', 0.0049479824527022187) +zone = ('okz030', 0.0033214806897409106) + +[74827] +centroid = (0.60992335381388407, -1.6814826295888392) +station = ('kadh', 0.0053263964171564489) +zone = ('okz032', 0.002215706292460002) + +[74829] +centroid = (0.61988883477692136, -1.6837597257573311) +station = ('kcqb', 0.0061161189534628922) +zone = ('okz065', 0.0023072338607900548) + +[74830] +centroid = (0.61337634811261466, -1.6871219629349581) +station = ('ksnl', 0.0054354099830485527) +zone = ('okz031', 0.00081625624891629807) + +[74831] +centroid = (0.60926164713457553, -1.6940156644144853) +station = ('kpvj', 0.0041599130155550862) +zone = ('okz040', 0.0050397316499385149) + +[74832] +centroid = (0.62532998598647627, -1.6930876379446149) +station = ('kcqb', 0.0032131899357599981) +zone = ('okz026', 0.0028277488229451774) + +[74833] +centroid = (0.62085000504928711, -1.6827068907926506) +station = ('kokm', 0.0067844877543104358) +zone = ('okz065', 0.0022508508679697321) + +[74834] +centroid = (0.62310615726675511, -1.6909551772112357) +station = ('kcqb', 0.00099270351741458183) +zone = ('okz026', 5.9740277297203964e-05) + +[74836] +centroid = (0.60155430806435362, -1.6878218399650078) +station = ('kadm', 0.0053519978593965876) +zone = ('okz047', 0.0026955824657294144) + +[74837] +centroid = (0.61719530304890347, -1.6833558740217121) +station = ('kcqb', 0.0082167604307216216) +zone = ('okz065', 0.0025400651731377257) + +[74839] +centroid = (0.61507814885306433, -1.6760823714436583) +station = ('kmlc', 0.0071914332724520033) +zone = ('okz032', 0.0045828217893635684) + +[74840] +centroid = (0.61527945512898929, -1.689456934221446) +station = ('ksnl', 0.0027427135320648968) +zone = ('okz030', 0.0022789163245923887) + +[74842] +centroid = (0.60431883978634249, -1.686207340593743) +station = ('kadh', 0.0032449742758512688) +zone = ('okz042', 0.002075131570399521) + +[74843] +centroid = (0.60487919519598776, -1.6882323064984919) +station = ('kadh', 0.0027005905351249197) +zone = ('okz042', 0.0013931578417733939) + +[74844] +centroid = (0.60851808451334832, -1.6855061022068765) +station = ('kadh', 0.0017741879183665072) +zone = ('okz042', 0.0028861176058692702) + +[74845] +centroid = (0.61526936712591285, -1.6735770211155907) +station = ('kmlc', 0.006614542901270489) +zone = ('okz071', 0.0038068512836169017) + +[74848] +centroid = (0.61224204117845105, -1.6818276462753734) +station = ('kadh', 0.0065256292884509435) +zone = ('okz032', 0.0016783738864140376) + +[74849] +centroid = (0.61048808999995197, -1.6883533101755326) +station = ('kadh', 0.0031717181145540525) +zone = ('okz031', 0.003718595234247282) + +[74850] +centroid = (0.61277946296172514, -1.6773845615985714) +station = ('kmlc', 0.0060850846390099605) +zone = ('okz032', 0.0023073638440128646) + +[74851] +centroid = (0.61830444233525339, -1.6943994623169987) +station = ('ksnl', 0.0023175794536729678) +zone = ('okz030', 0.0042766775952908275) + +[74852] +centroid = (0.61302839927293706, -1.6931242200457366) +station = ('ksnl', 0.0041791286172068454) +zone = ('okz030', 0.0016847383164843026) + +[74854] +centroid = (0.61275967092800754, -1.6885902909813684) +station = ('ksnl', 0.0051441002069616661) +zone = ('okz031', 0.0021654689357328391) + +[74855] +centroid = (0.6199242824140293, -1.6911988077215216) +station = ('ksnl', 0.002893503256800573) +zone = ('okz026', 0.0032203777494878762) + +[74856] +centroid = (0.60077280198518801, -1.6896093014651452) +station = ('kadm', 0.0036901416910230145) +zone = ('okz047', 0.0028020884098853105) + +[74857] +centroid = (0.61674348966543968, -1.6964040078694991) +station = ('ktik', 0.0029983820835904691) +zone = ('okz029', 0.0029753026518726609) + +[74859] +centroid = (0.6188322997142266, -1.6811294447614056) +station = ('kokm', 0.0064562819132291836) +zone = ('okz065', 0.00015833423476940066) + +[74860] +centroid = (0.62014869684925078, -1.6854613694181479) +station = ('kcqb', 0.0048838297810199008) +zone = ('okz065', 0.003696389721917338) + +[74864] +centroid = (0.61951966273353953, -1.6879129985118393) +station = ('ksnl', 0.0040972497849465443) +zone = ('okz026', 0.0043510972610985021) + +[74865] +centroid = (0.60392120142286065, -1.689541617596753) +station = ('kadh', 0.0040083110233188465) +zone = ('okz042', 0.0027859508883056822) + +[74867] +centroid = (0.6103469452233431, -1.6853506457304015) +station = ('kadh', 0.0032812411844961955) +zone = ('okz031', 0.003521331063095988) + +[74868] +centroid = (0.61572652121688765, -1.6867667011657146) +station = ('ksnl', 0.0044627944511750929) +zone = ('okz031', 0.0019815156518606337) + +[74869] +centroid = (0.62135763406222966, -1.6887839352618772) +station = ('kcqb', 0.0023050956919943911) +zone = ('okz026', 0.00246763774956581) + +[74871] +centroid = (0.60397309006152244, -1.6850117376962492) +station = ('kadh', 0.003929573777812884) +zone = ('okz042', 0.0029438587450500387) + +[74872] +centroid = (0.60688056424924974, -1.6927602141769407) +station = ('kpvj', 0.0035366728896459687) +zone = ('okz042', 0.0044199748544714234) + +[74873] +centroid = (0.61472218895212005, -1.6924377296910496) +station = ('ksnl', 0.0024081234301815573) +zone = ('okz030', 0.00039119356480588378) + +[74875] +centroid = (0.62617298001518951, -1.692438846701771) +station = ('kcuh', 0.0030575611220538331) +zone = ('okz026', 0.0032873967583870855) + +[74878] +centroid = (0.61094850785662791, -1.6941881203978748) +station = ('kpvj', 0.0055769289711704939) +zone = ('okz030', 0.0039299139893536261) + +[74880] +centroid = (0.61745287873991272, -1.6776067071057652) +station = ('kokm', 0.0056248266500320476) +zone = ('okz065', 0.0032710001722500302) + +[74881] +centroid = (0.62333322460243956, -1.69435895322506) +station = ('kcqb', 0.0036786286126825477) +zone = ('okz026', 0.0028231888561070931) + +[74883] +centroid = (0.61469944731196657, -1.6794528116687699) +station = ('kmlc', 0.0086246443139375156) +zone = ('okz032', 0.003010089777321067) + +[74884] +centroid = (0.61419094563439802, -1.6845115088793352) +station = ('ksnl', 0.006748781348016656) +zone = ('okz031', 0.0014849368919758103) + +[74901] +centroid = (0.61727174847014088, -1.6483202742435181) +station = ('kfsm', 0.0012208278913538382) +zone = ('arz029', 0.0037800299224275075) + +[74902] +centroid = (0.61520979903854223, -1.6490589150362547) +station = ('kfsm', 0.0022293069130166362) +zone = ('arz029', 0.0031184480606713748) + +[74930] +centroid = (0.61406756830957454, -1.6541588020171671) +station = ('krkr', 0.0035874644638624609) +zone = ('okz074', 0.0049061007615588325) + +[74931] +centroid = (0.62307564891143019, -1.6535447253731455) +station = ('kjsv', 0.0046480294713696791) +zone = ('okz069', 0.0034217233307721195) + +[74932] +centroid = (0.61351105262428363, -1.6499991588108891) +station = ('krkr', 0.0025614494515809787) +zone = ('arz029', 0.0038570411592529965) + +[74935] +centroid = (0.60998721541121459, -1.6562631454962968) +station = ('krkr', 0.004134901508578947) +zone = ('okz076', 0.0028995875681067903) + +[74936] +centroid = (0.6174427732835438, -1.653253778986838) +station = ('kjsv', 0.0015432629232802633) +zone = ('okz072', 0.0021119057660118853) + +[74937] +centroid = (0.60766676526410301, -1.6508568136053192) +station = ('krkr', 0.0036100783942096615) +zone = ('okz076', 0.0022123210332812768) + +[74939] +centroid = (0.60614948073217434, -1.651648233154636) +station = ('krkr', 0.0050963839318946408) +zone = ('okz076', 0.0031415988077401983) + +[74940] +centroid = (0.6100560511969132, -1.6514728973779806) +station = ('krkr', 0.0011874344578321628) +zone = ('okz076', 0.0014896285686209468) + +[74941] +centroid = (0.61588749293379907, -1.6560366541192653) +station = ('kjsv', 0.0028661831577337141) +zone = ('okz074', 0.0034935598655260565) + +[74942] +centroid = (0.60912600014511042, -1.6576942631230545) +station = ('krkr', 0.0055345634739806006) +zone = ('okz075', 0.0039100890333105213) + +[74943] +centroid = (0.6121238998413836, -1.6594568885879359) +station = ('kgzl', 0.0036396006948934893) +zone = ('okz074', 0.0027158845741527991) + +[74944] +centroid = (0.61329772102981228, -1.6578868427527196) +station = ('kgzl', 0.0029134956420151783) +zone = ('okz074', 0.0023428110509823843) + +[74945] +centroid = (0.62132894084932677, -1.6547365583594549) +station = ('kjsv', 0.0028197705407456862) +zone = ('okz072', 0.0019769953144425085) + +[74946] +centroid = (0.61771480030075965, -1.6485457533295831) +station = ('kfsm', 0.0016233012499163044) +zone = ('arz029', 0.0042416179127764799) + +[74948] +centroid = (0.61903282059198816, -1.6505394080275515) +station = ('kjsv', 0.0033652557933246318) +zone = ('okz072', 0.0026855867119155059) + +[74949] +centroid = (0.60494516864171322, -1.6537655444301078) +station = ('krkr', 0.0065775708739874818) +zone = ('okz076', 0.0042382385565186403) + +[74951] +centroid = (0.61384371237971369, -1.6520707948198361) +station = ('krkr', 0.0026487155952358977) +zone = ('okz076', 0.0047692176935260951) + +[74953] +centroid = (0.6116233394119116, -1.6512633007881083) +station = ('krkr', 0.00041102509245068429) +zone = ('okz076', 0.002833837360889155) + +[74954] +centroid = (0.61828445831531798, -1.6493639462296257) +station = ('kfsm', 0.0025002473511771951) +zone = ('okz072', 0.0038038053494743097) + +[74955] +centroid = (0.61952947148393567, -1.653666322462132) +station = ('kjsv', 0.0012813518536855025) +zone = ('okz072', 9.8583538502123807e-05) + +[74956] +centroid = (0.6127800912802559, -1.6540326321655403) +station = ('krkr', 0.0026102410240112449) +zone = ('okz076', 0.0037766878431744633) + +[74957] +centroid = (0.60255382322038575, -1.6520438643894779) +station = ('kmez', 0.0065187515766620468) +zone = ('arz040', 0.0061777651157723205) + +[74959] +centroid = (0.61559354458117832, -1.6514882388221055) +station = ('kjsv', 0.0038777177856859162) +zone = ('okz072', 0.0043409512713163722) + +[74960] +centroid = (0.6250097006154427, -1.6519625669529199) +station = ('ktqh', 0.0054163892675926726) +zone = ('okz069', 0.0012877605617576966) + +[74962] +centroid = (0.62036016094142232, -1.6570297988235279) +station = ('kjsv', 0.002695940294711974) +zone = ('okz072', 0.0027745133484572389) + +[74963] +centroid = (0.60040352522205109, -1.6507173617980846) +station = ('kmez', 0.0059787117782508425) +zone = ('arz040', 0.0052669989579320689) + +[74964] +centroid = (0.63027239190898121, -1.6521077434401008) +station = ('kslg', 0.0029113511634648115) +zone = ('okz069', 0.0039801887080568622) + +[74965] +centroid = (0.62825540215891407, -1.6516182483980866) +station = ('kslg', 0.0041172361035243608) +zone = ('okz069', 0.0020025188088279417) + +[74966] +centroid = (0.60942785483924289, -1.6557090034587885) +station = ('krkr', 0.0039305719530574506) +zone = ('okz076', 0.0023336682639200643) + +[75001] +centroid = (0.57526134176207955, -1.6901510516649643) +station = ('kads', 0.00013828028708741809) +zone = ('txz119', 0.0034912969674809431) + +[75002] +centroid = (0.57752224127511298, -1.6861236171495246) +station = ('ktki', 0.0016746966884737282) +zone = ('txz104', 0.001790372180575729) + +[75006] +centroid = (0.57530368344973293, -1.6911921056571937) +station = ('kads', 0.00095224881393559616) +zone = ('txz119', 0.0038465231920465429) + +[75007] +centroid = (0.5760504923833687, -1.6911671823554755) +station = ('kads', 0.0011469487040614405) +zone = ('txz119', 0.0045149460865905071) + +[75009] +centroid = (0.58187355653984496, -1.6886580097563457) +station = ('ktki', 0.0036744385011032391) +zone = ('txz104', 0.0037281942845669045) + +[75010] +centroid = (0.57683418012409926, -1.6907796843549474) +station = ('kads', 0.0015771720944317621) +zone = ('txz103', 0.0044504623617109048) + +[75013] +centroid = (0.57795403573205639, -1.6876280386048661) +station = ('ktki', 0.0020159437094440925) +zone = ('txz104', 0.0021908493442682002) + +[75019] +centroid = (0.57532015935787162, -1.6927017107404136) +station = ('kdfw', 0.0013165804957808367) +zone = ('txz119', 0.0045812389751833877) + +[75020] +centroid = (0.5894113892331132, -1.6860589352474458) +station = ('kgyi', 0.0013106112726103908) +zone = ('txz093', 0.0027304729016020112) + +[75021] +centroid = (0.588649395934985, -1.6837329873131905) +station = ('kgyi', 0.0028492658328535979) +zone = ('txz093', 0.0034768177578972373) + +[75022] +centroid = (0.57656759853414952, -1.6951493953899957) +station = ('kdfw', 0.0027093553687064886) +zone = ('txz103', 0.0029589632137119307) + +[75023] +centroid = (0.57694923222839067, -1.6882714891401989) +station = ('kads', 0.0021732132930763334) +zone = ('txz104', 0.0032548560607061849) + +[75024] +centroid = (0.577275015386568, -1.6895255954742194) +station = ('kads', 0.00195040461284474) +zone = ('txz104', 0.0038955714380689778) + +[75025] +centroid = (0.57753093301478786, -1.6884316580056546) +station = ('kads', 0.0025504633837604568) +zone = ('txz104', 0.002984729296541385) + +[75028] +centroid = (0.57652955035645614, -1.6940177937161727) +station = ('kdfw', 0.0023490815146439306) +zone = ('txz103', 0.003108677014938862) + +[75032] +centroid = (0.57336999826486323, -1.68312868451298) +station = ('khqz', 0.0022907909112547141) +zone = ('txz120', 0.00090667932899149775) + +[75034] +centroid = (0.57851269817232709, -1.6904621566041322) +station = ('kads', 0.003153840164112639) +zone = ('txz104', 0.0042110522703000539) + +[75035] +centroid = (0.57880579131361454, -1.6893075340374755) +station = ('kads', 0.0034864938432674882) +zone = ('txz104', 0.003210593834093208) + +[75038] +centroid = (0.57377407689328508, -1.692912389434422) +station = ('kdfw', 0.00069329310902637787) +zone = ('txz119', 0.003724325036736924) + +[75039] +centroid = (0.57395604492109786, -1.6919589684239351) +station = ('kdfw', 0.0013614693756113041) +zone = ('txz119', 0.0031763307773494329) + +[75040] +centroid = (0.57471775896654587, -1.6863333184591518) +station = ('khqz', 0.003436300425971618) +zone = ('txz120', 0.0031544655417054552) + +[75041] +centroid = (0.57386767890106938, -1.6868878619223882) +station = ('khqz', 0.0029280403687689505) +zone = ('txz119', 0.0027137955302405994) + +[75042] +centroid = (0.5744175623352028, -1.6872942269321298) +station = ('kads', 0.0025119775038315562) +zone = ('txz119', 0.0029491834083855599) + +[75043] +centroid = (0.57347360100926159, -1.6855748507261126) +station = ('khqz', 0.0020463174020856375) +zone = ('txz120', 0.0025692472115158667) + +[75044] +centroid = (0.57534092877597043, -1.6868552417186682) +station = ('kads', 0.0026894357853756048) +zone = ('txz119', 0.0039339460422072071) + +[75048] +centroid = (0.57541774071635066, -1.6856544028334186) +station = ('ktki', 0.0037408543875440022) +zone = ('txz120', 0.0028249580641633472) + +[75050] +centroid = (0.57206082679294235, -1.6931332433979693) +station = ('kgpm', 0.0014682114644504508) +zone = ('txz119', 0.003401721841393094) + +[75051] +centroid = (0.57123649033393287, -1.6929076246855641) +station = ('kgpm', 0.00091271427528737353) +zone = ('txz119', 0.0032732178533991523) + +[75052] +centroid = (0.57011097985919923, -1.693400331133402) +station = ('kgpm', 0.00067029711779662536) +zone = ('txz119', 0.0040349590000296788) + +[75054] +centroid = (0.56882392170890106, -1.6936575403052685) +station = ('kgky', 0.0015896779115605348) +zone = ('txz118', 0.0048514619259929) + +[75056] +centroid = (0.57718547999594061, -1.69144030893012) +station = ('kads', 0.0021470031170965583) +zone = ('txz103', 0.003797503782149565) + +[75057] +centroid = (0.57684379688827758, -1.6925251183266972) +station = ('kads', 0.00253446994032287) +zone = ('txz103', 0.0033951286251839717) + +[75058] +centroid = (0.58382603892075846, -1.6884707010210216) +station = ('kgyi', 0.0047691384049140164) +zone = ('txz093', 0.0032130450188332525) + +[75060] +centroid = (0.57240879308591242, -1.6921822833017277) +station = ('kdal', 0.0017987884524632912) +zone = ('txz119', 0.0026495660434254936) + +[75061] +centroid = (0.57292015710345423, -1.6923919322514773) +station = ('kdfw', 0.0016187621798996472) +zone = ('txz119', 0.0029599772430814347) + +[75062] +centroid = (0.57329475712080979, -1.692234084673927) +station = ('kdfw', 0.0014378324361324114) +zone = ('txz119', 0.0029928757538271377) + +[75063] +centroid = (0.57456998193877939, -1.6927248363530027) +station = ('kdfw', 0.00078002469177243549) +zone = ('txz119', 0.0040643931277924254) + +[75065] +centroid = (0.57788464144099705, -1.6930648264912913) +station = ('kdto', 0.0032446353468207428) +zone = ('txz103', 0.0023128162969044581) + +[75067] +centroid = (0.57619507545860382, -1.6929721669613027) +station = ('kdfw', 0.0020404300488668864) +zone = ('txz103', 0.0037425750026411878) + +[75068] +centroid = (0.57903907202143623, -1.692106326572681) +station = ('kads', 0.0040436111628405309) +zone = ('txz103', 0.0024805305680995556) + +[75069] +centroid = (0.57910014109196339, -1.6857586513496401) +station = ('ktki', 7.7747273717328669e-05) +zone = ('txz104', 0.00025129533637709964) + +[75070] +centroid = (0.57896119543021218, -1.6876682858974172) +station = ('ktki', 0.0016615275677720391) +zone = ('txz104', 0.001830254331890294) + +[75071] +centroid = (0.58025005126963991, -1.6865342582159339) +station = ('ktki', 0.0012969627366609293) +zone = ('txz104', 0.0013293034686172405) + +[75074] +centroid = (0.57650949652335071, -1.6872650101204514) +station = ('kads', 0.0026037593411676794) +zone = ('txz104', 0.0030993436644875852) + +[75075] +centroid = (0.57632984978344293, -1.6884587106090605) +station = ('kads', 0.0016471306590226849) +zone = ('txz104', 0.0038163140596916907) + +[75076] +centroid = (0.58993380118482019, -1.6881869802978176) +station = ('kgyi', 0.0017008582310419614) +zone = ('txz093', 0.0031156577026376017) + +[75077] +centroid = (0.57737877521059899, -1.6940343219841891) +station = ('kdto', 0.0029004439704395624) +zone = ('txz103', 0.0022967933433819263) + +[75078] +centroid = (0.58018063952528809, -1.6896181502844529) +station = ('ktki', 0.0034360390577481701) +zone = ('txz104', 0.0035672680736856745) + +[75080] +centroid = (0.57554087369507889, -1.688467821227756) +station = ('kads', 0.001346186374409327) +zone = ('txz119', 0.0036933347827963156) + +[75081] +centroid = (0.57506710406962502, -1.6879030152285182) +station = ('kads', 0.0018365903084333621) +zone = ('txz119', 0.0033353643964624379) + +[75082] +centroid = (0.57581129500938288, -1.6870887144127074) +station = ('kads', 0.0025305000620801199) +zone = ('txz104', 0.0036727082948792168) + +[75087] +centroid = (0.57497954090105241, -1.6834202417645259) +station = ('khqz', 0.0036200601341430457) +zone = ('txz120', 0.0010418455382411305) + +[75088] +centroid = (0.5741757295140465, -1.6851221123181455) +station = ('khqz', 0.0026501889076926896) +zone = ('txz120', 0.0020909760856200848) + +[75089] +centroid = (0.57487789292541625, -1.6852265179139996) +station = ('khqz', 0.003357757012045793) +zone = ('txz120', 0.0022887710920752396) + +[75090] +centroid = (0.58650272822149463, -1.6851224613839957) +station = ('kgyi', 0.0025904175983937124) +zone = ('txz093', 0.0018905922735585725) + +[75092] +centroid = (0.58742335449533667, -1.6877998488164325) +station = ('kgyi', 0.0011746547921001817) +zone = ('txz093', 0.00064854839467460949) + +[75093] +centroid = (0.57655599209462383, -1.68968129629679) +station = ('kads', 0.0012212489712497526) +zone = ('txz104', 0.0044060686806124787) + +[75094] +centroid = (0.57633901276201593, -1.6862582693013162) +station = ('ktki', 0.0028583220299442632) +zone = ('txz104', 0.0029650422135171152) + +[75098] +centroid = (0.57617044886285829, -1.6848524764020048) +station = ('ktki', 0.0030706247045948136) +zone = ('txz120', 0.0027302512844134359) + +[75101] +centroid = (0.56321830812393081, -1.6877769151900615) +station = ('kjwy', 0.0044806010591711123) +zone = ('txz134', 0.0019268587641263538) + +[75102] +centroid = (0.5595165695002059, -1.6865561097381689) +station = ('kcrs', 0.0037568684642394021) +zone = ('txz146', 0.002376694643828719) + +[75103] +centroid = (0.56754871434422405, -1.6735764102503523) +station = ('ktrl', 0.0065460983794116863) +zone = ('txz122', 0.0011071314192478464) + +[75104] +centroid = (0.56863142934569877, -1.6923528368762326) +station = ('kjwy', 0.0023034760744938421) +zone = ('txz119', 0.0042562466551531643) + +[75105] +centroid = (0.56309575110385579, -1.6822820776527152) +station = ('kcrs', 0.0042999783619272775) +zone = ('txz146', 0.0039725639539949431) + +[75109] +centroid = (0.5592592207019994, -1.6816411927513828) +station = ('kcrs', 0.00066635826090797234) +zone = ('txz146', 0.0017980564684029355) + +[75110] +centroid = (0.55998740697251648, -1.6847344223313998) +station = ('kcrs', 0.002451448630097539) +zone = ('txz146', 0.0010575262413167316) + +[75114] +centroid = (0.56916192217184236, -1.6832698118362963) +station = ('khqz', 0.0026947623535991737) +zone = ('txz121', 0.002306828292038389) + +[75115] +centroid = (0.5689673354135375, -1.6905970356487263) +station = ('krbd', 0.0014649370324189342) +zone = ('txz119', 0.0031805027215074375) + +[75116] +centroid = (0.57003605287441117, -1.6914314252042273) +station = ('krbd', 0.00077322797666374264) +zone = ('txz119', 0.0026999822545858421) + +[75117] +centroid = (0.57098469168274768, -1.6729759471744963) +station = ('kjdd', 0.0052783421642453891) +zone = ('txz122', 0.0026540701678519343) + +[75119] +centroid = (0.56419283016507438, -1.6857828241597803) +station = ('klnc', 0.0048214772898636151) +zone = ('txz134', 0.0030669263600839156) + +[75124] +centroid = (0.56419558778529244, -1.675063273693419) +station = ('ktrl', 0.0080639812529734629) +zone = ('txz135', 0.0026651842593018856) + +[75125] +centroid = (0.56787254273363907, -1.6863676141789536) +station = ('klnc', 0.0016097828159470815) +zone = ('txz134', 0.0041563752872054065) + +[75126] +centroid = (0.57147626366657189, -1.6834555846818784) +station = ('khqz', 0.0011084751166415207) +zone = ('txz120', 0.0027860463134610669) + +[75127] +centroid = (0.57055328119823967, -1.6718497036614768) +station = ('kjdd', 0.0044037773518305406) +zone = ('txz122', 0.002313102019611719) + +[75132] +centroid = (0.57500750107566945, -1.6820667389296042) +station = ('khqz', 0.0041439125441812179) +zone = ('txz120', 0.00095820222327561329) + +[75134] +centroid = (0.56928561365593122, -1.6890957557860384) +station = ('klnc', 0.0010992519042164757) +zone = ('txz119', 0.0025994420640216408) + +[75135] +centroid = (0.57711552719952075, -1.6793930515951814) +station = ('kgvt', 0.0022739563149922373) +zone = ('txz105', 0.0022355959151963757) + +[75137] +centroid = (0.56973152782652314, -1.6915114660037236) +station = ('krbd', 0.0010128139554461991) +zone = ('txz119', 0.0029629583387485703) + +[75140] +centroid = (0.56979018834268269, -1.6700624690541424) +station = ('kjdd', 0.0032638658986401015) +zone = ('txz122', 0.0026247449177460719) + +[75141] +centroid = (0.56964963697801962, -1.6876551261148571) +station = ('klnc', 0.0010914183343066928) +zone = ('txz119', 0.002541863526669724) + +[75142] +centroid = (0.56843281087682174, -1.6799684691962715) +station = ('ktrl', 0.0025863322814906305) +zone = ('txz121', 0.00072220779092418584) + +[75143] +centroid = (0.56490523865915343, -1.6797928192603508) +station = ('ktrl', 0.006116597821909619) +zone = ('txz121', 0.0041138020812842829) + +[75144] +centroid = (0.56041485555962234, -1.6791395774279143) +station = ('kcrs', 0.0030619101429413564) +zone = ('txz146', 0.0040645123148508981) + +[75146] +centroid = (0.56832709628402844, -1.6886437678696495) +station = ('klnc', 0.00056713901033892278) +zone = ('txz119', 0.00357800070458592) + +[75147] +centroid = (0.56612679460262416, -1.6769046309608582) +station = ('ktrl', 0.005608317763367625) +zone = ('txz121', 0.0041817695205076683) + +[75148] +centroid = (0.56073013183570264, -1.6757644422671152) +station = ('kcrs', 0.005791311272464128) +zone = ('txz135', 0.0027927351974662657) + +[75149] +centroid = (0.57197418864887328, -1.686279824117578) +station = ('khqz', 0.0013402931412314094) +zone = ('txz119', 0.0023671587575627901) + +[75150] +centroid = (0.57277009369436782, -1.6865164907641488) +station = ('khqz', 0.0019134588979408803) +zone = ('txz119', 0.0023397672725010378) + +[75152] +centroid = (0.56618259277881045, -1.6873502694544114) +station = ('klnc', 0.0025043415016237844) +zone = ('txz134', 0.0023439413835680402) + +[75153] +centroid = (0.56126760597885428, -1.6812692456344904) +station = ('kcrs', 0.0025958002813880167) +zone = ('txz146', 0.0028681866375587137) + +[75154] +centroid = (0.56761201743619394, -1.6896063867652944) +station = ('klnc', 0.0016418751918280778) +zone = ('txz134', 0.0030318122252470051) + +[75155] +centroid = (0.56250413684730716, -1.6838152795874222) +station = ('kcrs', 0.0039502892489946791) +zone = ('txz146', 0.0031788035493736668) + +[75156] +centroid = (0.56335316971523242, -1.6773544721222671) +station = ('kcrs', 0.006135331062263551) +zone = ('txz135', 0.0038858242813601548) + +[75157] +centroid = (0.5666168830565842, -1.6831871530429219) +station = ('klnc', 0.0045705683758535207) +zone = ('txz121', 0.0032428949795706972) + +[75158] +centroid = (0.56658328546848336, -1.6825345918888936) +station = ('ktrl', 0.0048575170560472124) +zone = ('txz121', 0.0029195022731028347) + +[75159] +centroid = (0.56907856524676714, -1.6849811420744618) +station = ('khqz', 0.0024697669985562359) +zone = ('txz121', 0.0037421565895095301) + +[75160] +centroid = (0.57174207731165061, -1.6807751603765433) +station = ('ktrl', 0.00088860114500212135) +zone = ('txz121', 0.0027787281323997169) + +[75161] +centroid = (0.57139411101868043, -1.6784685855969852) +station = ('ktrl', 0.001481281829018886) +zone = ('txz121', 0.0029862610855670249) + +[75163] +centroid = (0.56141279991932769, -1.6775898821317761) +station = ('kcrs', 0.0047057245733738897) +zone = ('txz135', 0.0039942941025480029) + +[75164] +centroid = (0.5771143927355068, -1.680909219116389) +station = ('kgvt', 0.0035445620064230815) +zone = ('txz120', 0.0032754200459271091) + +[75165] +centroid = (0.56500149356740081, -1.6892159391583306) +station = ('kjwy', 0.0023764313589162245) +zone = ('txz134', 0.00043864533093421367) + +[75166] +centroid = (0.57617947221509114, -1.6834413253418896) +station = ('ktki', 0.0035278194349467437) +zone = ('txz120', 0.0021165116765485916) + +[75167] +centroid = (0.56480301472486416, -1.6914949726422923) +station = ('kjwy', 0.0016588515772128836) +zone = ('txz134', 0.0017974652972168484) + +[75169] +centroid = (0.57077972021539347, -1.6754229860522549) +station = ('ktrl', 0.0040013012142081214) +zone = ('txz122', 0.003367221775932757) + +[75172] +centroid = (0.56906795364491503, -1.6872854130194073) +station = ('klnc', 0.00079724136381548736) +zone = ('txz119', 0.0032016461945088026) + +[75173] +centroid = (0.57703707464964349, -1.6823810029147181) +station = ('ktki', 0.0034947838811199669) +zone = ('txz120', 0.0028698691252201361) + +[75180] +centroid = (0.57101240751126925, -1.6863386068067854) +station = ('khqz', 0.0014209217780421254) +zone = ('txz119', 0.0024756675781451918) + +[75181] +centroid = (0.57117056924808507, -1.6852722629936945) +station = ('khqz', 0.00056180318417138673) +zone = ('txz120', 0.0037351047992760433) + +[75182] +centroid = (0.57247689583332528, -1.6850728591266539) +station = ('khqz', 0.00096869646890120466) +zone = ('txz120', 0.0026624926899738457) + +[75189] +centroid = (0.57494723485659804, -1.6809555750613219) +station = ('ktrl', 0.0039886422314078024) +zone = ('txz120', 0.0016050839331478513) + +[75201] +centroid = (0.57225405219443071, -1.6894680694220738) +station = ('kdal', 0.0013159635431169675) +zone = ('txz119', 0.00048539351547968355) + +[75202] +centroid = (0.57210625771337176, -1.6895622473885112) +station = ('kdal', 0.0014012830838854603) +zone = ('txz119', 0.00045233242429619513) + +[75203] +centroid = (0.57153988091780705, -1.6895255082077572) +station = ('krbd', 0.0014528439046778668) +zone = ('txz119', 0.00050144265438735003) + +[75204] +centroid = (0.57250520507379266, -1.6892841466254989) +station = ('kdal', 0.0012256697347520218) +zone = ('txz119', 0.00064063359195046124) + +[75205] +centroid = (0.57309444568255841, -1.6894004204602664) +station = ('kdal', 0.00083603618879256401) +zone = ('txz119', 0.0012366890731340351) + +[75206] +centroid = (0.57301391619087139, -1.6889759040263039) +station = ('kdal', 0.0012009537183919239) +zone = ('txz119', 0.0011331443396612063) + +[75207] +centroid = (0.57223754137970684, -1.6898272756354267) +station = ('kdal', 0.0011877999408305496) +zone = ('txz119', 0.00071091040710717212) + +[75208] +centroid = (0.57165015081994808, -1.6901700932071035) +station = ('krbd', 0.0012815028075681952) +zone = ('txz119', 0.00093574280007398096) + +[75209] +centroid = (0.57331116321577846, -1.689923321104164) +station = ('kdal', 0.00036082103976369201) +zone = ('txz119', 0.0015877110298561233) + +[75210] +centroid = (0.57195547871929198, -1.6885425562263263) +station = ('kdal', 0.002056676257790031) +zone = ('txz119', 0.00046817336390850923) + +[75211] +centroid = (0.57136819287928842, -1.6913604426635487) +station = ('krbd', 0.0011144645962135704) +zone = ('txz119', 0.0019757741480905975) + +[75212] +centroid = (0.57214067560622117, -1.6908545764331508) +station = ('kdal', 0.0012723211893875823) +zone = ('txz119', 0.0015030538724663898) + +[75214] +centroid = (0.57296804893812903, -1.6885353829231007) +station = ('kdal', 0.0015706296905427007) +zone = ('txz119', 0.0011800762188332796) + +[75215] +centroid = (0.57160583691023992, -1.6887255365451053) +station = ('krbd', 0.0019947521969714099) +zone = ('txz119', 0.00041648018846727835) + +[75216] +centroid = (0.5709203064866416, -1.6891508558305239) +station = ('krbd', 0.0013468038349821276) +zone = ('txz119', 0.00096597490655247337) + +[75217] +centroid = (0.57090253903485633, -1.6873589961006714) +station = ('klnc', 0.0023643454086742935) +zone = ('txz119', 0.0017586106951827847) + +[75218] +centroid = (0.57320080604717505, -1.687778311453463) +station = ('kdal', 0.0021662353930773795) +zone = ('txz119', 0.0017182226019383108) + +[75219] +centroid = (0.57267476381062388, -1.689703915763896) +station = ('kdal', 0.00085988654512274341) +zone = ('txz119', 0.00094202124789707757) + +[75220] +centroid = (0.5736640513372393, -1.6908072256505442) +station = ('kdal', 0.00050120298312936434) +zone = ('txz119', 0.0022891624020996921) + +[75223] +centroid = (0.57233262691735531, -1.688501383909272) +station = ('kdal', 0.001852874948750793) +zone = ('txz119', 0.00066912919299253913) + +[75224] +centroid = (0.57092172020333565, -1.690152255942148) +station = ('krbd', 0.00064038080591851071) +zone = ('txz119', 0.001312200881147189) + +[75225] +centroid = (0.57360048644588169, -1.6893104487373261) +station = ('kdal', 0.0009121936683594039) +zone = ('txz119', 0.0017251386678411688) + +[75226] +centroid = (0.57216825180840258, -1.6890675687186187) +station = ('kdal', 0.0015933075903054059) +zone = ('txz119', 0.0002840031124761566) + +[75227] +centroid = (0.5718941129427918, -1.6875470029676962) +station = ('khqz', 0.0023608013677772028) +zone = ('txz119', 0.0013000276421012646) + +[75228] +centroid = (0.57290300051690723, -1.6873745120777217) +station = ('khqz', 0.0025772843736872986) +zone = ('txz119', 0.0017672006549410417) + +[75229] +centroid = (0.57409629957978825, -1.6906016433179516) +station = ('kdal', 0.00078432983020075434) +zone = ('txz119', 0.0025488504934163239) + +[75230] +centroid = (0.57426008127679529, -1.6893634020268316) +station = ('kdal', 0.0012384741914068639) +zone = ('txz119', 0.0023858694126392662) + +[75231] +centroid = (0.57375054985496821, -1.6885630987516222) +station = ('kdal', 0.0015570453086929008) +zone = ('txz119', 0.0019179097550586555) + +[75232] +centroid = (0.57003957843950026, -1.6901933933526176) +station = ('krbd', 0.00054460228721686448) +zone = ('txz119', 0.0020646994400181679) + +[75233] +centroid = (0.57079096013577635, -1.6907334156764771) +station = ('krbd', 0.00036728229847028643) +zone = ('txz119', 0.0017609998915126992) + +[75234] +centroid = (0.57461804830637941, -1.6910795493737327) +station = ('kads', 0.0011433127141085744) +zone = ('txz119', 0.0032023054969823202) + +[75235] +centroid = (0.57303721633638549, -1.6903353584339749) +station = ('kdal', 0.00030374138626500143) +zone = ('txz119', 0.0015549984574917263) + +[75236] +centroid = (0.57030794026528686, -1.6918622248234971) +station = ('krbd', 0.0010342790387310465) +zone = ('txz119', 0.0028133852043799885) + +[75237] +centroid = (0.57012258629872514, -1.690753783668848) +station = ('krbd', 0.00032312563719567779) +zone = ('txz119', 0.0022491747838572244) + +[75238] +centroid = (0.5738380257570781, -1.6878698539727301) +station = ('kads', 0.0023977848790385087) +zone = ('txz119', 0.0022069478438443237) + +[75240] +centroid = (0.57474282189460446, -1.6892604799608417) +station = ('kads', 0.00092342865535736246) +zone = ('txz119', 0.0028612288756592764) + +[75241] +centroid = (0.5701196017857042, -1.6887710023721199) +station = ('klnc', 0.0016196256112874874) +zone = ('txz119', 0.0017861182593677544) + +[75243] +centroid = (0.57443381135053884, -1.6883728229565698) +station = ('kads', 0.0017016064736865906) +zone = ('txz119', 0.0026195969843657118) + +[75244] +centroid = (0.57465459550091613, -1.6901209970952449) +station = ('kads', 0.00072406370511855702) +zone = ('txz119', 0.0029010782147554956) + +[75246] +centroid = (0.57233702514707041, -1.6890033406021452) +station = ('kdal', 0.0015134802006846132) +zone = ('txz119', 0.000458213396797273) + +[75247] +centroid = (0.57270494055339083, -1.6908407010655973) +station = ('kdal', 0.00075709332285658166) +zone = ('txz119', 0.0016825079191445354) + +[75248] +centroid = (0.57542980094148188, -1.6894321854526528) +station = ('kads', 0.00052978258384195939) +zone = ('txz119', 0.0035561761179874686) + +[75249] +centroid = (0.56960699858439345, -1.6923519118517292) +station = ('kgpm', 0.0016261304829640333) +zone = ('txz119', 0.0035651259304661292) + +[75251] +centroid = (0.57455870711181156, -1.6889716628762217) +station = ('kads', 0.0012265203378480651) +zone = ('txz119', 0.0026755951151084946) + +[75252] +centroid = (0.57591280335867889, -1.6892729939715785) +station = ('kads', 0.0008506418364467546) +zone = ('txz119', 0.0040305841134109935) + +[75253] +centroid = (0.5702689845163823, -1.6861617700469733) +station = ('khqz', 0.0017290510002682166) +zone = ('txz119', 0.0029484439427595443) + +[75254] +centroid = (0.57499212472495942, -1.6895099922307069) +station = ('kads', 0.0006011691882166284) +zone = ('txz119', 0.0031267536540333326) + +[75270] +centroid = (0.57213982039488753, -1.6895176193195378) +station = ('kdal', 0.0013903261486372966) +zone = ('txz119', 0.00043860451876054027) + +[75287] +centroid = (0.57594659293299744, -1.6902063087890824) +station = ('kads', 0.00058269857394089848) +zone = ('txz119', 0.0041677570092838396) + +[75390] +centroid = (0.5727152030893925, -1.6901881922714466) +station = ('kdal', 0.00064031058233985911) +zone = ('txz119', 0.0012396788840109043) + +[75401] +centroid = (0.57925751743061582, -1.6774162218712025) +station = ('kgvt', 0.0022226262687103028) +zone = ('txz105', 0.0011920315651052038) + +[75402] +centroid = (0.57715340084428901, -1.6769869406883819) +station = ('kgvt', 0.00025941335557803956) +zone = ('txz105', 0.00096262007284398233) + +[75407] +centroid = (0.57860713793815255, -1.6839487623686147) +station = ('ktki', 0.0015639322481706831) +zone = ('txz104', 0.0014476847427980632) + +[75409] +centroid = (0.58216261797056024, -1.6845141792330907) +station = ('ktki', 0.0031628308241577205) +zone = ('txz104', 0.0030415422733920464) + +[75410] +centroid = (0.57229700474732215, -1.6690929561079517) +station = ('kjdd', 0.0021609055408038742) +zone = ('txz123', 0.0027492537071282484) + +[75411] +centroid = (0.59093127430562753, -1.6693923673411315) +station = ('khhw', 0.0034373085604432921) +zone = ('okz053', 0.0032613529524259418) + +[75412] +centroid = (0.58995388992451059, -1.6607150964456987) +station = ('klbr', 0.0038650387245039836) +zone = ('txz096', 0.0034889087511197677) + +[75413] +centroid = (0.58366323460813252, -1.6786430661623071) +station = ('kgvt', 0.00674395401789416) +zone = ('txz094', 0.0028627614642432551) + +[75414] +centroid = (0.58684331177172888, -1.6829838919982347) +station = ('kgyi', 0.0038297156613237896) +zone = ('txz093', 0.0036296760077943794) + +[75415] +centroid = (0.58402587912011195, -1.671282977800062) +station = ('kprx', 0.0053778291417206558) +zone = ('txz106', 0.0018150943562950832) + +[75416] +centroid = (0.58789441886044991, -1.6640795152848908) +station = ('kprx', 0.0017653750777772046) +zone = ('txz095', 0.0033008631922947641) + +[75417] +centroid = (0.58363213284086202, -1.66051272551893) +station = ('klbr', 0.002902504133575136) +zone = ('txz096', 0.0034201819008074573) + +[75418] +centroid = (0.58594380398183599, -1.6785742129233159) +station = ('kdua', 0.0072005247212411343) +zone = ('txz094', 0.0010677552964273532) + +[75420] +centroid = (0.57688009973671917, -1.6706506275587718) +station = ('kslr', 0.0023908898799281518) +zone = ('txz107', 0.0028518970801935978) + +[75421] +centroid = (0.58751189504829027, -1.6708274468652915) +station = ('kprx', 0.00411834607190909) +zone = ('txz095', 0.0023297374117963255) + +[75422] +centroid = (0.57842654872044874, -1.6743675680002816) +station = ('kgvt', 0.0023350367757083864) +zone = ('txz105', 0.0022316723717676294) + +[75423] +centroid = (0.58092210775141284, -1.6790135297493354) +station = ('kgvt', 0.0042726187319293892) +zone = ('txz105', 0.0032702921996448308) + +[75424] +centroid = (0.58157397077374018, -1.682121786614212) +station = ('ktki', 0.0038437864933102846) +zone = ('txz104', 0.0036708236482170249) + +[75426] +centroid = (0.58753128565627988, -1.6580149324665234) +station = ('klbr', 0.0015540274299185033) +zone = ('txz096', 0.0010690682342124245) + +[75428] +centroid = (0.58070366234223325, -1.674074701751797) +station = ('kgvt', 0.004193007157952444) +zone = ('txz105', 0.0035658954401126528) + +[75431] +centroid = (0.5762063153789867, -1.6661076227822933) +station = ('kslr', 0.0034729770171987198) +zone = ('txz107', 0.0028015863222967934) + +[75432] +centroid = (0.58285324475557454, -1.6698930499436511) +station = ('kslr', 0.0041656916739578522) +zone = ('txz106', 0.00017233984366840169) + +[75433] +centroid = (0.57767075134116508, -1.6720818673585773) +station = ('kslr', 0.0028801702545061623) +zone = ('txz123', 0.0039783961148343898) + +[75435] +centroid = (0.58438241497970933, -1.6636493788907367) +station = ('kprx', 0.0032383594628799849) +zone = ('txz096', 0.0046036175254708838) + +[75436] +centroid = (0.58841620249362614, -1.6622521555580525) +station = ('klbr', 0.0033209422167630688) +zone = ('txz096', 0.0031978201241082342) + +[75437] +centroid = (0.58051788949665095, -1.6663080738468847) +station = ('kslr', 0.002787013795612261) +zone = ('txz107', 0.0023645213381536722) + +[75438] +centroid = (0.58670183538256204, -1.6767754416896254) +station = ('kdua', 0.007373527314606625) +zone = ('txz094', 0.0006271594621360373) + +[75439] +centroid = (0.58561939963376775, -1.6804535660085709) +station = ('kgyi', 0.0062615603019492349) +zone = ('txz094', 0.0026587564873763628) + +[75440] +centroid = (0.57387705131915268, -1.6711363701428943) +station = ('kjdd', 0.0044277471197707325) +zone = ('txz123', 0.00067495528756299011) + +[75441] +centroid = (0.58342265842403762, -1.6692837031419023) +station = ('kprx', 0.00455670158855554) +zone = ('txz106', 0.00083924844077399999) + +[75442] +centroid = (0.57899934832766076, -1.6817295238648262) +station = ('ktki', 0.0033245958061720506) +zone = ('txz104', 0.0031698698693567989) + +[75446] +centroid = (0.58669534275774471, -1.6737726550714467) +station = ('kprx', 0.0065491662804101052) +zone = ('txz094', 0.0030245090081076178) + +[75447] +centroid = (0.58951551557628723, -1.6774249485174626) +station = ('kdua', 0.0050409684141890822) +zone = ('txz094', 0.0031916055259056521) + +[75448] +centroid = (0.58147858853011869, -1.6718328786874876) +station = ('kslr', 0.0036520600798844245) +zone = ('txz106', 0.0020945213815724835) + +[75449] +centroid = (0.58330425528758234, -1.674568490303771) +station = ('kgvt', 0.0064292471420282988) +zone = ('txz094', 0.0038212827994509703) + +[75450] +centroid = (0.58297924007427593, -1.6664962727001273) +station = ('kprx', 0.0040619998116375698) +zone = ('txz106', 0.002769510339256826) + +[75451] +centroid = (0.57536126186175618, -1.6602804571020748) +station = ('kosa', 0.0033144879147802863) +zone = ('txz110', 0.0021792115417693428) + +[75452] +centroid = (0.58297882119525546, -1.6796799139110392) +station = ('ktki', 0.0063160946758215302) +zone = ('txz094', 0.0038575322010623806) + +[75453] +centroid = (0.57577122224975708, -1.6739965284546001) +station = ('kgvt', 0.0026240301509404245) +zone = ('txz123', 0.0027161062341791923) + +[75454] +centroid = (0.58093490101482992, -1.6853989564440968) +station = ('ktki', 0.0017939038204430944) +zone = ('txz104', 0.0017008929100181718) + +[75455] +centroid = (0.57973240406679094, -1.657698207567164) +station = ('kosa', 0.0021266641203209727) +zone = ('txz109', 0.00019593372959202392) + +[75457] +centroid = (0.57890119101052862, -1.6618178652802789) +station = ('kosa', 0.0039234198093257462) +zone = ('txz108', 0.00013115581054013207) + +[75459] +centroid = (0.58525462582010102, -1.6872358805752357) +station = ('kgyi', 0.0032129866494509645) +zone = ('txz093', 0.0016461463659300085) + +[75460] +centroid = (0.58739338719207979, -1.6686254173079276) +station = ('kprx', 0.0022868885001408198) +zone = ('txz095', 0.00053732240922113638) + +[75462] +centroid = (0.58685912445475175, -1.6666168749514398) +station = ('kprx', 0.0006027511229204632) +zone = ('txz095', 0.0013914404781049969) + +[75468] +centroid = (0.58472285890360332, -1.6650949478437009) +station = ('kprx', 0.0023897554462252164) +zone = ('txz095', 0.003777298872301937) + +[75469] +centroid = (0.58331362770566553, -1.6722104981244492) +station = ('kslr', 0.005318072760347875) +zone = ('txz106', 0.0021062236917799779) + +[75470] +centroid = (0.58602611370935997, -1.6721947378013038) +station = ('kprx', 0.0053209492719967152) +zone = ('txz106', 0.0038804602814980094) + +[75471] +centroid = (0.57695010489301668, -1.6645819083100772) +station = ('kslr', 0.0040516851656522265) +zone = ('txz108', 0.0030725498827205108) + +[75472] +centroid = (0.57394145396855123, -1.6732402074765409) +station = ('kgvt', 0.0042944597996544213) +zone = ('txz123', 0.0011438343683075232) + +[75473] +centroid = (0.5901931920182516, -1.666580083410808) +station = ('kprx', 0.0032282758412812526) +zone = ('txz095', 0.0028583214528711555) + +[75474] +centroid = (0.57464457731100971, -1.6774944998881545) +station = ('kgvt', 0.0025701613193122932) +zone = ('txz105', 0.0034953240239710961) + +[75475] +centroid = (0.58424701233633958, -1.67967410196463) +station = ('ktki', 0.0071567501431572559) +zone = ('txz094', 0.0028252654362269174) + +[75476] +centroid = (0.58832101223622235, -1.6797162865726509) +station = ('kdua', 0.0046517838692074504) +zone = ('txz094', 0.0027893747347181703) + +[75477] +centroid = (0.58520730994407943, -1.6709445933646851) +station = ('kprx', 0.0045610658575268789) +zone = ('txz106', 0.0026831940806954918) + +[75478] +centroid = (0.57903971779325936, -1.6643215749988498) +station = ('kslr', 0.0038445559533327911) +zone = ('txz108', 0.0020481749607003863) + +[75479] +centroid = (0.58673368764141109, -1.6815378168997872) +station = ('kgyi', 0.0049833084132606797) +zone = ('txz094', 0.0034898478896889921) + +[75480] +centroid = (0.57638524653390122, -1.6615027984437087) +station = ('kosa', 0.0036628185766891812) +zone = ('txz108', 0.0026565257113130214) + +[75481] +centroid = (0.5815208080447245, -1.6644924252793276) +station = ('kslr', 0.0046014501134188073) +zone = ('txz108', 0.0033211383015280529) + +[75482] +centroid = (0.57889043978233634, -1.6686782135178007) +station = ('kslr', 0.00022326281219270722) +zone = ('txz107', 0.00072211687763313747) + +[75486] +centroid = (0.58896547506252117, -1.6710537462561048) +station = ('kprx', 0.0046993362091776823) +zone = ('txz095', 0.0028610586437559527) + +[75487] +centroid = (0.58180290561172432, -1.6608814961365839) +station = ('klbr', 0.0047277541976963166) +zone = ('txz108', 0.0029008668427176849) + +[75488] +centroid = (0.58954981129608897, -1.6754606328042205) +station = ('kdua', 0.0064306607048976788) +zone = ('txz094', 0.0035981163233150763) + +[75489] +centroid = (0.58502129275240178, -1.6839690954544004) +station = ('kgyi', 0.0043469011833233923) +zone = ('txz093', 0.0033797820065723694) + +[75490] +centroid = (0.58362283023594885, -1.680952520735131) +station = ('ktki', 0.0059710040348741767) +zone = ('txz094', 0.0040231286624877547) + +[75491] +centroid = (0.58459065021276468, -1.6824295928810935) +station = ('kgyi', 0.0055219428133652547) +zone = ('txz093', 0.0046995077283767091) + +[75492] +centroid = (0.58615785116130048, -1.6754033510981698) +station = ('kdua', 0.0085349448372405261) +zone = ('txz094', 0.0016521623917651101) + +[75493] +centroid = (0.57851365810341582, -1.6599492634232162) +station = ('kosa', 0.0023225197221284672) +zone = ('txz108', 0.0016904617745189007) + +[75494] +centroid = (0.57451338091113724, -1.6625982019888457) +station = ('kjdd', 0.0046247612958903303) +zone = ('txz124', 0.0029022872540329561) + +[75495] +centroid = (0.58356235457736727, -1.6851138743640761) +station = ('ktki', 0.0044308277479243449) +zone = ('txz093', 0.00381838436993036) + +[75496] +centroid = (0.58206058602248878, -1.6765273082298695) +station = ('kgvt', 0.0049400243550025589) +zone = ('txz105', 0.0039650232754789138) + +[75497] +centroid = (0.57465127937533733, -1.6679789473529891) +station = ('kjdd', 0.0033653437085591218) +zone = ('txz124', 0.0036469908829478499) + +[75501] +centroid = (0.58244900904752006, -1.643049746421638) +station = ('ktxk', 0.0026564918929011783) +zone = ('arz070', 0.0037622173988547522) + +[75503] +centroid = (0.58489096901715543, -1.6429462833035799) +station = ('ktxk', 0.0024425795084250866) +zone = ('arz059', 0.0036026393895256846) + +[75550] +centroid = (0.58465425001070748, -1.6561576752495986) +station = ('klbr', 0.0030058414785846068) +zone = ('txz096', 0.0031551011760325674) + +[75551] +centroid = (0.57804140691441108, -1.644457773342392) +station = ('ktxk', 0.0067290150944792791) +zone = ('txz112', 0.0019424579706763282) + +[75554] +centroid = (0.58561931236730513, -1.6542276203495732) +station = ('klbr', 0.0041738054052882206) +zone = ('txz096', 0.0040989587224719067) + +[75555] +centroid = (0.57489749297291615, -1.6430928735074548) +station = ('kasl', 0.0076741042963301906) +zone = ('txz112', 0.0038089310206877499) + +[75556] +centroid = (0.5787100774574353, -1.6416990535668123) +station = ('ktxk', 0.0052313659915699702) +zone = ('arz070', 0.0036742122946471618) + +[75558] +centroid = (0.58018166926954684, -1.6555817689563181) +station = ('kosa', 0.0029736082111977247) +zone = ('txz109', 0.0016356071203374358) + +[75559] +centroid = (0.58474977188066912, -1.6515589595633964) +station = ('klbr', 0.006530627265677315) +zone = ('txz097', 0.0031456471650696156) + +[75560] +centroid = (0.57918808823297141, -1.6469612736214527) +station = ('ktxk', 0.0072248503282439421) +zone = ('txz112', 0.0019001809532953767) + +[75561] +centroid = (0.58496804275692349, -1.6455374165643832) +station = ('ktxk', 0.0045034752594910344) +zone = ('txz097', 0.0023902335876202726) + +[75562] +centroid = (0.57465662008284846, -1.6449457150413722) +station = ('kasl', 0.0071159239103860327) +zone = ('txz126', 0.002736074982578066) + +[75563] +centroid = (0.57600570723476252, -1.6473020317046121) +station = ('kasl', 0.0085132085901026781) +zone = ('txz112', 0.0014298722360990971) + +[75565] +centroid = (0.57473690522844023, -1.6419457209499966) +station = ('kasl', 0.0078720586392026764) +zone = ('txz112', 0.0046802702280739905) + +[75566] +centroid = (0.57854481223056387, -1.6491921360180593) +station = ('kosa', 0.0069266820189639762) +zone = ('txz112', 0.00249241233852073) + +[75567] +centroid = (0.58138660967853861, -1.6460498103261838) +station = ('ktxk', 0.0053655385070109397) +zone = ('txz097', 0.0028511014886967198) + +[75568] +centroid = (0.57934556929137893, -1.6508892941826987) +station = ('kosa', 0.0057086151134481383) +zone = ('txz111', 0.0025259072382566856) + +[75569] +centroid = (0.58366990176587519, -1.6428537633999316) +station = ('ktxk', 0.0021201593834362467) +zone = ('arz070', 0.0041246088357628202) + +[75570] +centroid = (0.58397383340181741, -1.6482666577288967) +station = ('ktxk', 0.0066331916747563559) +zone = ('txz097', 0.0003337749699492823) + +[75571] +centroid = (0.57957181632231491, -1.6541118875668734) +station = ('kosa', 0.0033661398574477367) +zone = ('txz111', 0.0017388235280305368) + +[75572] +centroid = (0.57990122976533631, -1.642838195063004) +station = ('ktxk', 0.0044418446316394867) +zone = ('arz070', 0.0037589093673913443) + +[75573] +centroid = (0.58190519935918372, -1.644875552805442) +station = ('ktxk', 0.0042559319493602719) +zone = ('txz097', 0.0031783902927825158) + +[75574] +centroid = (0.58163104304028035, -1.6502203094804091) +station = ('kosa', 0.007214462192932319) +zone = ('txz097', 0.0028075004358553424) + +[75601] +centroid = (0.56739039552777559, -1.65325323793477) +station = ('kggg', 0.0021975851729430403) +zone = ('txz137', 0.00145502769281998) + +[75602] +centroid = (0.56635127885101566, -1.6522345241569658) +station = ('kggg', 0.001375134173274211) +zone = ('txz137', 0.0022894130640190393) + +[75603] +centroid = (0.56553991018834859, -1.6530218247292479) +station = ('kggg', 0.00035351325437788921) +zone = ('txz137', 0.0020631915078621354) + +[75604] +centroid = (0.56739194887080979, -1.6549982704807913) +station = ('kggg', 0.0027095615116283127) +zone = ('txz137', 0.00051484939966007029) + +[75605] +centroid = (0.56866827324620828, -1.6532686317387724) +station = ('kggg', 0.0034748174107589896) +zone = ('txz137', 0.002235361544417554) + +[75630] +centroid = (0.57364722636325005, -1.6501997495018208) +station = ('kjxi', 0.0065548899872493061) +zone = ('txz126', 0.0030701250250515792) + +[75631] +centroid = (0.56286281946188466, -1.6485170601166805) +station = ('kggg', 0.0045342577188315098) +zone = ('txz151', 0.0026575469636677933) + +[75633] +centroid = (0.56077709864587377, -1.6450526688179343) +station = ('kasl', 0.0068368775549922491) +zone = ('txz151', 0.00094082916310100613) + +[75638] +centroid = (0.57631600932247451, -1.6533451469731799) +station = ('kosa', 0.0036319133844587887) +zone = ('txz111', 0.0016241468958658558) + +[75639] +centroid = (0.56363355685956529, -1.6435709540961612) +station = ('kasl', 0.0043898101053383562) +zone = ('txz151', 0.0030477179027139528) + +[75640] +centroid = (0.57086956976528602, -1.6525332547117373) +station = ('kjxi', 0.0039017924180320285) +zone = ('txz125', 0.0038226491299074737) + +[75641] +centroid = (0.5651098436073646, -1.6506588583615578) +station = ('kggg', 0.002078277562659461) +zone = ('txz137', 0.0039762274570028762) + +[75642] +centroid = (0.56498988712787512, -1.6436917308803991) +station = ('kasl', 0.003165080372038105) +zone = ('txz151', 0.0041167629540428286) + +[75643] +centroid = (0.55884344836758926, -1.6469259656106849) +station = ('kggg', 0.0082342243882652256) +zone = ('txz151', 0.0026315103474871498) + +[75644] +centroid = (0.57231243345790983, -1.6580598746947621) +station = ('kjxi', 0.0017761717783876998) +zone = ('txz125', 0.0012844541328774397) + +[75645] +centroid = (0.57052530357033027, -1.6558260277851347) +station = ('kjxi', 0.0011415402262985772) +zone = ('txz125', 0.0013167314525853468) + +[75647] +centroid = (0.56748745328747907, -1.657247127221986) +station = ('kjxi', 0.0032165477275161503) +zone = ('txz137', 0.0020906717640480259) + +[75650] +centroid = (0.56746373426294439, -1.6501886666610706) +station = ('kggg', 0.0033545529998186435) +zone = ('txz138', 0.0026831307389680154) + +[75651] +centroid = (0.57010145036148341, -1.6500026669226855) +station = ('kasl', 0.0043150921951880267) +zone = ('txz138', 0.0031823081008091579) + +[75652] +centroid = (0.56268383594709259, -1.653321218509135) +station = ('krfi', 0.0024980103171571145) +zone = ('txz150', 0.0023513389285480025) + +[75654] +centroid = (0.559862755557339, -1.6550979985942502) +station = ('krfi', 0.0011250906088030761) +zone = ('txz150', 0.0011373732313988429) + +[75656] +centroid = (0.57615594517677426, -1.6505955901761729) +station = ('kosa', 0.0058795008416133894) +zone = ('txz111', 0.0029476724323477975) + +[75657] +centroid = (0.57238025695264227, -1.6460253582633633) +station = ('kasl', 0.0048015728977469996) +zone = ('txz126', 0.00069001834232803292) + +[75661] +centroid = (0.56952392091199855, -1.6435985652049279) +station = ('kasl', 0.002712887557277555) +zone = ('txz138', 0.003279100619456059) + +[75662] +centroid = (0.56521541857381785, -1.6557968109734564) +station = ('kggg', 0.0022625451426555618) +zone = ('txz137', 0.0018457975378935892) + +[75667] +centroid = (0.55829897545413709, -1.6553448579636523) +station = ('krfi', 0.0026511992323918171) +zone = ('txz150', 0.0024166966310147663) + +[75668] +centroid = (0.57433680595071301, -1.6524539469505264) +station = ('kosa', 0.0052838231567295772) +zone = ('txz111', 0.0036883482018006315) + +[75669] +centroid = (0.55918253093466674, -1.6506604989710547) +station = ('krfi', 0.0044214741131053887) +zone = ('txz150', 0.0030011106510748086) + +[75670] +centroid = (0.56845125900701532, -1.647916457414484) +station = ('kasl', 0.0019506224683062095) +zone = ('txz138', 0.00079176422191744973) + +[75672] +centroid = (0.56667878988515241, -1.645829410148242) +station = ('kasl', 0.00090238472047060353) +zone = ('txz138', 0.001754809574936383) + +[75681] +centroid = (0.55720420022753114, -1.6528971209541929) +station = ('krfi', 0.0043228257481552233) +zone = ('txz150', 0.0032937663964729092) + +[75682] +centroid = (0.56287460043433546, -1.656955116184835) +station = ('krfi', 0.0023113068267313144) +zone = ('txz150', 0.0035861477723310004) + +[75683] +centroid = (0.57293602214635486, -1.6534764829993924) +station = ('kjxi', 0.0038223755243796897) +zone = ('txz125', 0.0033870170956649889) + +[75684] +centroid = (0.56334028918535262, -1.6569659546794897) +station = ('krfi', 0.0027158194162907965) +zone = ('txz150', 0.0039295645697821424) + +[75686] +centroid = (0.57537237960909127, -1.6572404600642434) +station = ('kosa', 0.0022526246737632348) +zone = ('txz110', 0.00039336537267988962) + +[75691] +centroid = (0.5639493043745436, -1.6502437143456785) +station = ('kggg', 0.0027292546221082043) +zone = ('txz151', 0.0044767686835903483) + +[75692] +centroid = (0.56672305143498303, -1.6426696660704312) +station = ('kasl', 0.0028126618997734434) +zone = ('txz138', 0.0039651881016956932) + +[75693] +centroid = (0.56782157911948083, -1.655630847614884) +station = ('kjxi', 0.0031584648042965444) +zone = ('txz137', 0.001131560407401022) + +[75701] +centroid = (0.56412422127217843, -1.6633375758198679) +station = ('ktyr', 0.0015228097381047611) +zone = ('txz136', 0.0010463228184232059) + +[75702] +centroid = (0.56483102725935863, -1.6635651493010355) +station = ('ktyr', 0.0012680380497864265) +zone = ('txz136', 0.00071355920112360735) + +[75703] +centroid = (0.56260803629767853, -1.6636657849857055) +station = ('ktyr', 0.0023198036954822331) +zone = ('txz136', 0.0025591830195126571) + +[75704] +centroid = (0.56571543795122159, -1.6658006717267448) +station = ('ktyr', 0.0012733244605359292) +zone = ('txz136', 0.0026512444083761095) + +[75705] +centroid = (0.564834465557985, -1.6595757804165818) +station = ('krfi', 0.0052252941168476159) +zone = ('txz136', 0.0026991272759470651) + +[75706] +centroid = (0.56670064140738741, -1.6634362916423606) +station = ('ktyr', 0.0024892741259582847) +zone = ('txz136', 0.0017459095061787375) + +[75707] +centroid = (0.5637679297586764, -1.6611688471446322) +station = ('ktyr', 0.0033822127991305294) +zone = ('txz136', 0.0018586796131079988) + +[75708] +centroid = (0.56580802766803995, -1.6617815624318375) +station = ('ktyr', 0.0030027415312317176) +zone = ('txz136', 0.0011217429466930588) + +[75709] +centroid = (0.56381526308799035, -1.6648837804575023) +station = ('ktyr', 0.00081015765512693148) +zone = ('txz136', 0.0021774960498311602) + +[75750] +centroid = (0.563174814518971, -1.6594191720228004) +station = ('krfi', 0.0040329230935865924) +zone = ('txz136', 0.0033902704382757667) + +[75751] +centroid = (0.56015204388085704, -1.6738762927224302) +station = ('kpsn', 0.0062431238874511167) +zone = ('txz135', 0.0021953826617548077) + +[75752] +centroid = (0.56276410363939178, -1.6721582080600594) +station = ('ktyr', 0.0062915823666640537) +zone = ('txz135', 0.00088048345084530493) + +[75754] +centroid = (0.56597498586428585, -1.6696165723368428) +station = ('ktyr', 0.0040939675910124981) +zone = ('txz122', 0.0034944176546812026) + +[75755] +centroid = (0.56968663795816188, -1.6593227774882129) +station = ('kjxi', 0.002080908507936591) +zone = ('txz125', 0.0025452977686252626) + +[75756] +centroid = (0.56379405733757859, -1.6685605085130459) +station = ('ktyr', 0.003082467470362729) +zone = ('txz135', 0.004048172378170828) + +[75757] +centroid = (0.56047304483688387, -1.6641278609051711) +station = ('ktyr', 0.0042128758740797813) +zone = ('txz136', 0.0047209905091550935) + +[75758] +centroid = (0.56324281254662878, -1.6671636691527971) +station = ('ktyr', 0.0022559274482781642) +zone = ('txz136', 0.0041361317290201051) + +[75759] +centroid = (0.55913261451805973, -1.6653721584887953) +station = ('kjso', 0.0041692963355069168) +zone = ('txz149', 0.0051150998699184018) + +[75760] +centroid = (0.55494923483395453, -1.6555205428061581) +station = ('koch', 0.0042414172308040737) +zone = ('txz152', 0.0047373355804830918) + +[75762] +centroid = (0.56231585072760204, -1.6652782423217454) +station = ('ktyr', 0.0023066708517284068) +zone = ('txz136', 0.0034647137457417703) + +[75763] +centroid = (0.55925155870658316, -1.6671976332600411) +station = ('kpsn', 0.0053336967487776794) +zone = ('txz148', 0.0044363912850696957) + +[75764] +centroid = (0.55668021747949747, -1.6605711591422869) +station = ('kjso', 0.0011818252263600889) +zone = ('txz149', 0.0010682980263186641) + +[75765] +centroid = (0.56971112492756748, -1.6621618522225545) +station = ('kjdd', 0.0042186539619394822) +zone = ('txz124', 0.0033200938741105245) + +[75766] +centroid = (0.55754782065066377, -1.662547936506388) +station = ('kjso', 0.0014508919560535514) +zone = ('txz149', 0.0023263409852256126) + +[75770] +centroid = (0.56127270234027016, -1.6692976832292108) +station = ('ktyr', 0.0049095991700299916) +zone = ('txz135', 0.003240911952397744) + +[75771] +centroid = (0.56789343432478545, -1.6656674681982326) +station = ('ktyr', 0.0033213473712063895) +zone = ('txz136', 0.0037545830812663571) + +[75773] +centroid = (0.57039895918577832, -1.6658766633623769) +station = ('kjdd', 0.0012750893036325365) +zone = ('txz124', 0.0020694572916443153) + +[75778] +centroid = (0.56375751014304187, -1.6704517821970919) +station = ('ktyr', 0.004649191577464077) +zone = ('txz135', 0.0026302894304036889) + +[75779] +centroid = (0.5561182040070628, -1.6665208643892877) +station = ('kpsn', 0.0035955984514436162) +zone = ('txz148', 0.0026368484958515983) + +[75780] +centroid = (0.55834863007135638, -1.6596657695928148) +station = ('kjso', 0.0028234892667931906) +zone = ('txz149', 0.0028995282560362289) + +[75783] +centroid = (0.57275478715682782, -1.6654759881259964) +station = ('kjdd', 0.001671941302566207) +zone = ('txz124', 0.0008161748292960637) + +[75784] +centroid = (0.55627369539012295, -1.6576116741428502) +station = ('kjso', 0.0036031616254535745) +zone = ('txz149', 0.002897832509667797) + +[75785] +centroid = (0.55465385531134692, -1.6614255152644306) +station = ('kjso', 0.0016097498000035993) +zone = ('txz149', 0.0010859497973161297) + +[75788] +centroid = (0.55546742308887165, -1.6567690291799873) +station = ('kjso', 0.0043848747162565068) +zone = ('txz149', 0.0035540760281442601) + +[75789] +centroid = (0.5604577033927588, -1.6598146461780099) +station = ('krfi', 0.0037331894804737177) +zone = ('txz149', 0.0048922968932401372) + +[75790] +centroid = (0.56784582174279108, -1.6693023083517287) +station = ('kjdd', 0.0042106285958423435) +zone = ('txz122', 0.0028758112990615106) + +[75791] +centroid = (0.56237260883487694, -1.6619137536693833) +station = ('ktyr', 0.0034680289794177029) +zone = ('txz136', 0.0027718976017691087) + +[75792] +centroid = (0.56692200151641792, -1.6599189994139867) +station = ('kjxi', 0.0044360569841048851) +zone = ('txz136', 0.003042745601054506) + +[75801] +centroid = (0.55387186053999093, -1.6673371374271531) +station = ('kpsn', 0.0027090029271240167) +zone = ('txz148', 0.0022638396274468446) + +[75803] +centroid = (0.55644198003660017, -1.6699221969421596) +station = ('kpsn', 0.0018291311432300597) +zone = ('txz148', 0.0012587209030124832) + +[75831] +centroid = (0.54932018147712991, -1.6756762158734269) +station = ('kpsn', 0.0069824952590129812) +zone = ('txz162', 0.0030997210867949316) + +[75832] +centroid = (0.55731871127975452, -1.6751799838604999) +station = ('kpsn', 0.0048647287542459778) +zone = ('txz147', 0.0046838548281420362) + +[75833] +centroid = (0.54572534427008967, -1.6727450226611649) +station = ('kdkr', 0.0065628668161070922) +zone = ('txz162', 0.0023580391176072383) + +[75835] +centroid = (0.54602435407754124, -1.6666258110372101) +station = ('kdkr', 0.0013535839701529747) +zone = ('txz163', 0.0011644688152789946) + +[75838] +centroid = (0.54941044990604304, -1.6795260980440612) +station = ('kpsn', 0.0093846130026522534) +zone = ('txz147', 0.0041231126669614747) + +[75839] +centroid = (0.55164085851704414, -1.6682439930531969) +station = ('kpsn', 0.0035234703000759753) +zone = ('txz148', 0.0037510133738142752) + +[75840] +centroid = (0.55471029925935644, -1.6771500766135659) +station = ('kcrs', 0.0059264611444891464) +zone = ('txz147', 0.0015851629408248696) + +[75844] +centroid = (0.5500195872682816, -1.6657006294540206) +station = ('kdkr', 0.0036456870588885918) +zone = ('txz163', 0.0034280696821395737) + +[75845] +centroid = (0.54257846326886627, -1.6594040574714781) +station = ('klfk', 0.0055056112904082024) +zone = ('txz164', 0.00087694373484631426) + +[75846] +centroid = (0.5468032770694139, -1.6781825610391683) +station = ('kpsn', 0.010285675214704249) +zone = ('txz162', 0.0024120589172862833) + +[75847] +centroid = (0.54726908799347862, -1.6607313629143272) +station = ('kdkr', 0.0038352847736679505) +zone = ('txz163', 0.0040774909196264475) + +[75848] +centroid = (0.55440802568620351, -1.681274307089321) +station = ('kcrs', 0.0044590313198642579) +zone = ('txz147', 0.0028846849185641356) + +[75849] +centroid = (0.5483375087483795, -1.6664692026434287) +station = ('kdkr', 0.0022518578819757723) +zone = ('txz163', 0.0019481221008844467) + +[75850] +centroid = (0.54343360478917346, -1.674370168540867) +station = ('kuts', 0.0085499364386575835) +zone = ('txz162', 0.0029396614793745948) + +[75851] +centroid = (0.54266417638843178, -1.666788336097156) +station = ('kdkr', 0.0040116854156265298) +zone = ('txz163', 0.0041000099388580737) + +[75852] +centroid = (0.54034557629032731, -1.6705507772722652) +station = ('kuts', 0.0041586548863686412) +zone = ('txz176', 0.0031879480913330101) + +[75853] +centroid = (0.55756293520198608, -1.6722604843542264) +station = ('kpsn', 0.003314081258819079) +zone = ('txz148', 0.0033237860675789112) + +[75855] +centroid = (0.55077821208095334, -1.6731375646632309) +station = ('kpsn', 0.0045296870110544674) +zone = ('txz162', 0.0049575433900078724) + +[75856] +centroid = (0.5443489601686744, -1.662526276970371) +station = ('kdkr', 0.0030188176537619855) +zone = ('txz164', 0.002505688075902136) + +[75858] +centroid = (0.54787236104943049, -1.6602733012521416) +station = ('kdkr', 0.0043797728476444378) +zone = ('txz163', 0.004592575649120809) + +[75859] +centroid = (0.55665670789447308, -1.6796500862341228) +station = ('kcrs', 0.0030466870681516507) +zone = ('txz147', 0.003549722242471152) + +[75860] +centroid = (0.55172213850030949, -1.6796708556522213) +station = ('kcrs', 0.0073949821623700909) +zone = ('txz147', 0.0021014520133900479) + +[75861] +centroid = (0.55591492550908295, -1.6735693242135894) +station = ('kpsn', 0.0029830797113334063) +zone = ('txz148', 0.0035617356849838569) + +[75862] +centroid = (0.54042820017711679, -1.6637538542997612) +station = ('kuts', 0.005370317074798338) +zone = ('txz164', 0.0035845613813950497) + +[75901] +centroid = (0.5463178311912642, -1.6518042830430566) +station = ('klfk', 0.0020120020734617911) +zone = ('txz165', 0.00093023884555049161) + +[75904] +centroid = (0.54699985350306601, -1.6550288835558713) +station = ('klfk', 0.002192632021123827) +zone = ('txz165', 0.0035316942602155554) + +[75925] +centroid = (0.55175006376834146, -1.6591464643271763) +station = ('kjso', 0.0050298311451393487) +zone = ('txz149', 0.0041993320419149091) + +[75926] +centroid = (0.54538196819305229, -1.6575234652024542) +station = ('klfk', 0.0032796248694047657) +zone = ('txz164', 0.0037288013924242349) + +[75928] +centroid = (0.53531682892972621, -1.635571429455863) +station = ('kbkb', 0.0059081221352476907) +zone = ('txz260', 0.0037824571017909038) + +[75929] +centroid = (0.54533095221901651, -1.6436727940580151) +station = ('kjas', 0.0066198589327318745) +zone = ('txz166', 0.002603488724578763) + +[75930] +centroid = (0.54667286606770482, -1.6411787360102079) +station = ('kjas', 0.0076182953988354236) +zone = ('txz166', 0.0023810142024702045) + +[75931] +centroid = (0.54303587915922902, -1.6409827355352087) +station = ('kjas', 0.0039862402751957718) +zone = ('txz259', 0.0043598661145462731) + +[75932] +centroid = (0.54203201813335944, -1.6339014111610923) +station = ('kbkb', 0.0009800668157170045) +zone = ('txz260', 0.0033934393510750235) + +[75933] +centroid = (0.53326461843535367, -1.6373404253725143) +station = ('kbpt', 0.0048458947488953658) +zone = ('txz262', 0.0029817786461724233) + +[75934] +centroid = (0.53918940038063623, -1.6537990023918685) +station = ('klfk', 0.0059357150544451145) +zone = ('txz179', 0.002077215452983856) + +[75935] +centroid = (0.55383683178190335, -1.6439481372008096) +station = ('koch', 0.0082279053317224037) +zone = ('txz153', 0.0012507407254949757) + +[75936] +centroid = (0.54021563652751647, -1.6507258091916643) +station = ('klfk', 0.0055300361441758678) +zone = ('txz180', 0.0043848442730960195) + +[75937] +centroid = (0.54917329456728203, -1.647019689791517) +station = ('koch', 0.0055913033623133466) +zone = ('txz166', 0.0032140695998431044) + +[75938] +centroid = (0.54011658909246574, -1.6468514400516248) +station = ('kjas', 0.0049504261565210799) +zone = ('txz180', 0.0030708665980310689) + +[75939] +centroid = (0.54129255703587442, -1.6545271013959231) +station = ('klfk', 0.0038968939437604311) +zone = ('txz179', 0.0038875494841000675) + +[75941] +centroid = (0.54431466444887266, -1.6538519033214965) +station = ('klfk', 0.00082026595986889621) +zone = ('txz165', 0.0024925197618006945) + +[75942] +centroid = (0.53782610624861094, -1.6481246577409547) +station = ('kbpt', 0.0060226655771027935) +zone = ('txz180', 0.0011164260481905126) + +[75943] +centroid = (0.55226367926061826, -1.6564436649008303) +station = ('koch', 0.0030140742625153674) +zone = ('txz152', 0.0043552912506693714) + +[75944] +centroid = (0.54673732107698103, -1.6473327669527398) +station = ('klfk', 0.0056752523183589733) +zone = ('txz166', 0.0034479532272605781) + +[75946] +centroid = (0.55535189974568211, -1.6496959776665252) +station = ('koch', 0.0050437137932045793) +zone = ('txz152', 0.0038196288982156358) + +[75948] +centroid = (0.54642049145786642, -1.6368413659261991) +station = ('kbkb', 0.0059223460672259256) +zone = ('txz167', 0.0011853435787533659) + +[75949] +centroid = (0.54507524403030683, -1.6495104317137455) +station = ('klfk', 0.0035822788413907604) +zone = ('txz165', 0.0015773221890352628) + +[75951] +centroid = (0.53995814810296971, -1.6415869685222493) +station = ('kjas', 0.00095807120353467101) +zone = ('txz259', 0.0013194145076387026) + +[75954] +centroid = (0.55683579612902012, -1.6414488955251241) +station = ('kshv', 0.010038074067011786) +zone = ('txz153', 0.0024251159141416333) + +[75956] +centroid = (0.53540367651330545, -1.6403155485220489) +station = ('kbpt', 0.0027791001753527836) +zone = ('txz259', 0.0033643703990018261) + +[75959] +centroid = (0.54999351204925673, -1.6381962650245223) +station = ('kaqv', 0.0066878934357034485) +zone = ('txz167', 0.002955178082397346) + +[75960] +centroid = (0.53953111839488421, -1.6557183235169941) +station = ('klfk', 0.0058545679501216096) +zone = ('txz179', 0.0021624671365284426) + +[75961] +centroid = (0.55079768995540568, -1.6494138451929403) +station = ('koch', 0.0031855548455067143) +zone = ('txz152', 0.0019369579902662087) + +[75962] +centroid = (0.55187089291245695, -1.6519031733984748) +station = ('koch', 0.001215208114043306) +zone = ('txz152', 0.00046978993159673858) + +[75964] +centroid = (0.55207804604137611, -1.6535375171633346) +station = ('koch', 0.00091743208826674865) +zone = ('txz152', 0.0018767494396144245) + +[75965] +centroid = (0.55367654074340023, -1.651580566739536) +station = ('koch', 0.0027716772128439267) +zone = ('txz152', 0.0018828631038581805) + +[75966] +centroid = (0.53803104280938008, -1.6356188325983472) +station = ('kbkb', 0.003354584752630731) +zone = ('txz260', 0.001081759467330555) + +[75968] +centroid = (0.5454553941946837, -1.6398053538751058) +station = ('kjas', 0.0065137274007654638) +zone = ('txz167', 0.0021993477064529273) + +[75969] +centroid = (0.54883122748718371, -1.6561010218620789) +station = ('koch', 0.0034982414779453365) +zone = ('txz152', 0.0050181978371865044) + +[75972] +centroid = (0.54952918465505618, -1.6428897171825227) +station = ('klfk', 0.010227685264777752) +zone = ('txz166', 0.0016921004129576778) + +[75973] +centroid = (0.55346565260988179, -1.6396165965165028) +station = ('kaqv', 0.0073645105278203138) +zone = ('txz153', 0.0033141822794868579) + +[75974] +centroid = (0.55777867535082504, -1.6447954596460681) +station = ('koch', 0.0096385833178501846) +zone = ('txz153', 0.0032196540118635216) + +[75975] +centroid = (0.55671008006299905, -1.6478314075200347) +station = ('koch', 0.0070857380757420518) +zone = ('txz153', 0.004384339134314047) + +[75976] +centroid = (0.55003150786707267, -1.6567383113851522) +station = ('koch', 0.0033112059949096128) +zone = ('txz152', 0.0049153514928405228) + +[75977] +centroid = (0.54221430032043771, -1.636818641739338) +station = ('kbkb', 0.0027429504439388025) +zone = ('txz260', 0.0032271718040314114) + +[75978] +centroid = (0.5499366841288118, -1.6498111519438641) +station = ('koch', 0.0031018310499082631) +zone = ('txz152', 0.0022846668666706613) + +[75979] +centroid = (0.53666359479373515, -1.6474009220600303) +station = ('kbpt', 0.0048022446189913744) +zone = ('txz180', 0.00043815069798328065) + +[75980] +centroid = (0.54346728964373692, -1.6471582165742478) +station = ('klfk', 0.0058362133730706827) +zone = ('txz165', 0.0040748315326199934) + +[76001] +centroid = (0.56959802759203815, -1.6955669305069505) +station = ('kgky', 0.0008997651617324309) +zone = ('txz118', 0.0031549054007671807) + +[76002] +centroid = (0.56936691109248905, -1.6945960911105284) +station = ('kgky', 0.0007803953811460942) +zone = ('txz118', 0.0038982655119449072) + +[76006] +centroid = (0.57220535750829993, -1.6947156112577051) +station = ('kgpm', 0.0016985428839201466) +zone = ('txz118', 0.0028266752393977849) + +[76008] +centroid = (0.5706477558706502, -1.7039908145015785) +station = ('knfw', 0.0029382723812189453) +zone = ('txz117', 0.0029222864910822019) + +[76009] +centroid = (0.56574749964958082, -1.6963966251267633) +station = ('kfws', 0.0030561027113159664) +zone = ('txz133', 0.0025816493835455279) + +[76010] +centroid = (0.57112136841647143, -1.6943698091730075) +station = ('kgpm', 0.00064957842420834569) +zone = ('txz118', 0.0032160199765440146) + +[76011] +centroid = (0.57166989049378814, -1.694421418558989) +station = ('kgpm', 0.0011096933714822448) +zone = ('txz118', 0.0030760267511370258) + +[76012] +centroid = (0.57168486541877028, -1.6953996057915615) +station = ('kgky', 0.0016480182502685676) +zone = ('txz118', 0.0022563252699808883) + +[76013] +centroid = (0.57106000263997114, -1.6956751234672816) +station = ('kgky', 0.0012239547997468351) +zone = ('txz118', 0.0021980941352516595) + +[76014] +centroid = (0.57058487165770078, -1.6944793809434475) +station = ('kgky', 0.00048616177263415293) +zone = ('txz118', 0.0033106124186874039) + +[76015] +centroid = (0.57058628537439493, -1.6952959681405781) +station = ('kgky', 0.00066162410975948121) +zone = ('txz118', 0.0026991483428083019) + +[76016] +centroid = (0.57053455381536577, -1.6962703156487966) +station = ('kgky', 0.0013672848523775807) +zone = ('txz118', 0.0020698172906799721) + +[76017] +centroid = (0.5700683938254506, -1.6958321332867907) +station = ('kgky', 0.00094349123455193438) +zone = ('txz118', 0.002659267217395091) + +[76018] +centroid = (0.57011312661417923, -1.694659114949818) +station = ('kgky', 5.441187525370702e-05) +zone = ('txz118', 0.0034037466614301555) + +[76020] +centroid = (0.57421674475146833, -1.7027637956775488) +station = ('knfw', 0.0028442459078053691) +zone = ('txz117', 0.0041680489308906681) + +[76021] +centroid = (0.57339251301221394, -1.6952460342706785) +station = ('kdfw', 0.0016431368558931765) +zone = ('txz118', 0.0027723705878512205) + +[76022] +centroid = (0.5730030776962165, -1.695502842016817) +station = ('kdfw', 0.0020376615341511899) +zone = ('txz118', 0.0023959618910394248) + +[76023] +centroid = (0.57669067915300021, -1.703390438692185) +station = ('klud', 0.0037167224615208957) +zone = ('txz102', 0.0031495990682675586) + +[76028] +centroid = (0.56780213615161357, -1.6983196288966107) +station = ('kfws', 0.00060118945620986331) +zone = ('txz133', 0.0028226567779718356) + +[76031] +centroid = (0.56454702728347406, -1.6986954157378578) +station = ('kcpt', 0.0015614523862021348) +zone = ('txz133', 0.00080373745413528364) + +[76033] +centroid = (0.56333404090663053, -1.701841860406768) +station = ('kcpt', 0.0017375682423520868) +zone = ('txz133', 0.0027530810156914821) + +[76034] +centroid = (0.57406998001466814, -1.6955811025804766) +station = ('kdfw', 0.001710483644751322) +zone = ('txz118', 0.0029734040364679374) + +[76035] +centroid = (0.56831533276487001, -1.7039825940008015) +station = ('kgdj', 0.0034208850682986756) +zone = ('txz131', 0.0037551659590604695) + +[76036] +centroid = (0.56866069851725454, -1.7003097929360749) +station = ('kfws', 0.0017931025873851351) +zone = ('txz133', 0.0036295980659660373) + +[76039] +centroid = (0.57352016639370484, -1.6944708462834053) +station = ('kdfw', 0.0010377952812574238) +zone = ('txz118', 0.0034029424213601819) + +[76040] +centroid = (0.57271420825171893, -1.6945632614672985) +station = ('kdfw', 0.0017234231866164245) +zone = ('txz118', 0.0030401130447419689) + +[76041] +centroid = (0.56265072705118224, -1.6902174090831252) +station = ('kjwy', 0.0039473512781208267) +zone = ('txz134', 0.0020599680679773422) + +[76043] +centroid = (0.56214407542262079, -1.7068490529511071) +station = ('kgdj', 0.0041255684576640009) +zone = ('txz132', 0.00039104512360186135) + +[76044] +centroid = (0.56593934624095998, -1.7023919532804115) +station = ('kcpt', 0.0020114886232353779) +zone = ('txz133', 0.0026857491679085264) + +[76048] +centroid = (0.56586536173396806, -1.7071248847860923) +station = ('kgdj', 0.0004007995756996162) +zone = ('txz131', 0.00034422793259144191) + +[76049] +centroid = (0.56653087323104601, -1.7053035115385884) +station = ('kgdj', 0.0016425597307154966) +zone = ('txz131', 0.0019223727441419398) + +[76050] +centroid = (0.56340839193276548, -1.6957751657400058) +station = ('kinj', 0.0035740280270462089) +zone = ('txz133', 0.0034811773055120317) + +[76051] +centroid = (0.5746630079879107, -1.6942180702478391) +station = ('kdfw', 0.00071810748435121381) +zone = ('txz118', 0.0042180921602537102) + +[76052] +centroid = (0.57572519791738197, -1.699553716304111) +station = ('kafw', 0.00088887388660095518) +zone = ('txz118', 0.0039758001276585147) + +[76053] +centroid = (0.57276819128548306, -1.6961211947175063) +station = ('kdfw', 0.0025979062316329681) +zone = ('txz118', 0.001826035742662376) + +[76054] +centroid = (0.57350489476274991, -1.6960871607970922) +station = ('kdfw', 0.0022445043995467698) +zone = ('txz118', 0.0022745534848423255) + +[76055] +centroid = (0.56134394668033649, -1.6956728894458388) +station = ('kinj', 0.0016256405898004761) +zone = ('txz145', 0.0030192933723316158) + +[76058] +centroid = (0.56677973972908779, -1.7003348907707185) +station = ('kcpt', 0.0021096335136864077) +zone = ('txz133', 0.0018514480780208438) + +[76059] +centroid = (0.56535731384200505, -1.6986860258664818) +station = ('kcpt', 0.0017051388024326812) +zone = ('txz133', 0.00061853928007342223) + +[76060] +centroid = (0.56966934174527462, -1.6967650466785669) +station = ('kfws', 0.0017591899282521075) +zone = ('txz118', 0.0025302892222728236) + +[76061] +centroid = (0.56730134882933891, -1.6962571209596513) +station = ('kfws', 0.0019735885119601081) +zone = ('txz133', 0.0034096916297162582) + +[76063] +centroid = (0.5684663910116301, -1.6954972046033332) +station = ('kgky', 0.00179953675676408) +zone = ('txz118', 0.0041004511337576627) + +[76064] +centroid = (0.56378266033756308, -1.6936189685287992) +station = ('kjwy', 0.0032509718106861025) +zone = ('txz134', 0.0036687847184454728) + +[76065] +centroid = (0.56669561485914177, -1.6928072333469895) +station = ('kjwy', 0.0011793585332476196) +zone = ('txz134', 0.0035789258675822666) + +[76066] +centroid = (0.57080043727361462, -1.7103030769940963) +station = ('kmwl', 0.001749283246337685) +zone = ('txz117', 0.0030414983001346907) + +[76067] +centroid = (0.57246104824371713, -1.712635849165727) +station = ('kmwl', 0.00092692842879545968) +zone = ('txz116', 0.0028498097700049058) + +[76070] +centroid = (0.5631518110794298, -1.7044037419493079) +station = ('kcpt', 0.0036062068453226437) +zone = ('txz132', 0.0019201237444851041) + +[76071] +centroid = (0.57597348845677065, -1.7007257747099951) +station = ('kafw', 0.0018948301648280246) +zone = ('txz118', 0.0046014892699562495) + +[76073] +centroid = (0.57768176436874519, -1.705595470215862) +station = ('kxbp', 0.0020337014136721618) +zone = ('txz102', 0.00228020553765036) + +[76077] +centroid = (0.56336193126807743, -1.7050390068904488) +station = ('kgdj', 0.0034332859778172949) +zone = ('txz132', 0.0015652117760140444) + +[76078] +centroid = (0.57758817981425326, -1.7010466360396819) +station = ('kafw', 0.0028738557623077293) +zone = ('txz102', 0.0035231062072537977) + +[76082] +centroid = (0.57543582232740131, -1.7057756929144232) +station = ('kxbp', 0.0038398481649845866) +zone = ('txz117', 0.0035178600170323346) + +[76084] +centroid = (0.56594608321187267, -1.6945458954412411) +station = ('kjwy', 0.0026735103748658702) +zone = ('txz133', 0.0041497087898061513) + +[76085] +centroid = (0.57339420598158841, -1.7051273380038923) +station = ('knfw', 0.0039191156312839218) +zone = ('txz117', 0.0020658576521752239) + +[76086] +centroid = (0.57168196817221195, -1.706776412347639) +station = ('kmwl', 0.0040745609895054729) +zone = ('txz117', 0.00044540955582134128) + +[76087] +centroid = (0.57042129940020392, -1.7066230502662663) +station = ('kgdj', 0.0041943464349470426) +zone = ('txz117', 0.0016892481677804139) + +[76088] +centroid = (0.57331278637198291, -1.7087335198510705) +station = ('kmwl', 0.0026528404977493513) +zone = ('txz117', 0.001896980191953671) + +[76092] +centroid = (0.57525916010051448, -1.6955626195436979) +station = ('kdfw', 0.0019859811074653655) +zone = ('txz118', 0.0039186388537469632) + +[76093] +centroid = (0.56217920890046347, -1.6998210309323465) +station = ('kcpt', 0.0025701880714358127) +zone = ('txz133', 0.002966379752396595) + +[76102] +centroid = (0.57175422480324445, -1.6987247023627061) +station = ('kftw', 0.0014041692145144045) +zone = ('txz118', 0.00058953537934979417) + +[76103] +centroid = (0.57157960461158253, -1.6977333728008659) +station = ('kftw', 0.0020129053614851167) +zone = ('txz118', 0.00046423768095703012) + +[76104] +centroid = (0.57122336545795782, -1.6985160482506303) +station = ('kftw', 0.0019621187068439476) +zone = ('txz118', 0.00082131188724030404) + +[76105] +centroid = (0.57114236472737279, -1.697671849944733) +station = ('kftw', 0.002382029439914926) +zone = ('txz118', 0.00087365875698106673) + +[76106] +centroid = (0.57275602634059664, -1.69924439160078) +station = ('kftw', 0.00031182636526186418) +zone = ('txz118', 0.0012775278140482709) + +[76107] +centroid = (0.57145671597894954, -1.6996318197881377) +station = ('knfw', 0.0010902455127338778) +zone = ('txz118', 0.0014082496311803101) + +[76108] +centroid = (0.57224125893101352, -1.702112386440827) +station = ('knfw', 0.0011404701180806433) +zone = ('txz118', 0.003416082176606819) + +[76109] +centroid = (0.57073401004228375, -1.6997231877744796) +station = ('knfw', 0.001477852801871207) +zone = ('txz118', 0.0018519974506083451) + +[76110] +centroid = (0.57085934213586942, -1.6988732124287584) +station = ('knfw', 0.0019352843791525483) +zone = ('txz118', 0.0012867993549671073) + +[76111] +centroid = (0.57209273141166872, -1.6982073169592449) +station = ('kftw', 0.001367170744490968) +zone = ('txz118', 0.00018575166579250148) + +[76112] +centroid = (0.57155040525319656, -1.6967682231778054) +station = ('kgky', 0.002229899174356953) +zone = ('txz118', 0.0011611136479802481) + +[76114] +centroid = (0.57202283097512641, -1.6999904151362524) +station = ('knfw', 0.00071357316374336805) +zone = ('txz118', 0.0016213650266085169) + +[76115] +centroid = (0.57034741961296698, -1.6987378795985586) +station = ('kfws', 0.0020027270853846522) +zone = ('txz118', 0.0017012021762403003) + +[76116] +centroid = (0.57108434998303659, -1.7007715721495675) +station = ('knfw', 0.00080305028944824784) +zone = ('txz118', 0.0024367618159002423) + +[76117] +centroid = (0.57252796416723861, -1.697635965975312) +station = ('kftw', 0.0015470165568736022) +zone = ('txz118', 0.00067965765204530671) + +[76118] +centroid = (0.57247556938309374, -1.696333706007229) +station = ('kgky', 0.0027028669855985567) +zone = ('txz118', 0.0015462233917721555) + +[76119] +centroid = (0.57056815140346673, -1.6975530453825498) +station = ('kfws', 0.0022409730077380843) +zone = ('txz118', 0.0014484669926776482) + +[76120] +centroid = (0.57204763210379717, -1.6961277746087862) +station = ('kgky', 0.0022469950226801103) +zone = ('txz118', 0.0016308525798499789) + +[76123] +centroid = (0.56932348730069948, -1.6998383271452335) +station = ('kfws', 0.0016594793490209557) +zone = ('txz118', 0.0030224929643531523) + +[76126] +centroid = (0.56960338575284175, -1.701756775605733) +station = ('knfw', 0.0024141849397174312) +zone = ('txz118', 0.0038947455957181109) + +[76127] +centroid = (0.57203880073778224, -1.7005720112028944) +station = ('knfw', 0.00026066529199612643) +zone = ('txz118', 0.0021106118839691042) + +[76129] +centroid = (0.57087344439622556, -1.6993135589990365) +station = ('knfw', 0.0016243598646247194) +zone = ('txz118', 0.0015055447030051532) + +[76131] +centroid = (0.57389579615531916, -1.6990074282482368) +station = ('kftw', 0.00089886922431518009) +zone = ('txz118', 0.0020998284563346565) + +[76132] +centroid = (0.57015203000320624, -1.7002406778976957) +station = ('knfw', 0.0018021488941759028) +zone = ('txz118', 0.0025673676615621684) + +[76133] +centroid = (0.56990092948372184, -1.6995935621709339) +station = ('kfws', 0.001906187534591056) +zone = ('txz118', 0.0024208798618547823) + +[76134] +centroid = (0.56965852070391232, -1.6988180774776878) +station = ('kfws', 0.0013643675314218378) +zone = ('txz118', 0.0023790397129194048) + +[76135] +centroid = (0.57329398917593899, -1.7013849681151809) +station = ('knfw', 0.0014848017180393871) +zone = ('txz118', 0.0030973434781751095) + +[76137] +centroid = (0.57350969441819288, -1.698057410629791) +station = ('kftw', 0.0011939673951056812) +zone = ('txz118', 0.0015583270344059113) + +[76140] +centroid = (0.56932741429151645, -1.6977678779601777) +station = ('kfws', 0.0010021024049950353) +zone = ('txz118', 0.0026357692436627684) + +[76148] +centroid = (0.57366216638164713, -1.697369907984138) +station = ('kftw', 0.0017875116909149068) +zone = ('txz118', 0.0018074934931702382) + +[76155] +centroid = (0.57288648970218325, -1.6938190181676631) +station = ('kdfw', 0.0013457768856997858) +zone = ('txz118', 0.0036887878136928) + +[76164] +centroid = (0.57213812742551318, -1.6991580501626837) +station = ('kftw', 0.00092871156053253654) +zone = ('txz118', 0.00093864594996648091) + +[76177] +centroid = (0.57552862148372985, -1.6983883774158468) +station = ('kafw', 0.00016598053313973739) +zone = ('txz118', 0.0035876040505586526) + +[76179] +centroid = (0.57444932732758913, -1.7005412235948894) +station = ('kftw', 0.0017111903394653061) +zone = ('txz118', 0.0032513908422284405) + +[76180] +centroid = (0.5731663183411555, -1.6969015139727803) +station = ('kftw', 0.0020764322405003683) +zone = ('txz118', 0.0015590928238156864) + +[76182] +centroid = (0.57397927525344195, -1.6966063613429754) +station = ('kafw', 0.0023166581198135888) +zone = ('txz118', 0.0023690939494417406) + +[76201] +centroid = (0.57981537701943064, -1.6955182183675273) +station = ('kdto', 0.00086886138656646229) +zone = ('txz103', 0.0005130747432249489) + +[76205] +centroid = (0.57932071580283051, -1.6952254917453826) +station = ('kdto', 0.0010410365015960511) +zone = ('txz103', 0.00027026116310502378) + +[76207] +centroid = (0.57993268059845715, -1.696178057544536) +station = ('kdto', 0.00053786511015625738) +zone = ('txz103', 0.0010566518506442632) + +[76208] +centroid = (0.57960309262251053, -1.6939316268110016) +station = ('kdto', 0.0021211551883312005) +zone = ('txz103', 0.00090833495966747668) + +[76209] +centroid = (0.58000029465367953, -1.6948871771231762) +station = ('kdto', 0.0014265700007449866) +zone = ('txz103', 0.00048746335881465631) + +[76210] +centroid = (0.57856734443120716, -1.6946451697690947) +station = ('kdto', 0.0017565252754385115) +zone = ('txz103', 0.0010053572619204904) + +[76225] +centroid = (0.58245883525120878, -1.7046622601181134) +station = ('klud', 0.0024373764603588233) +zone = ('txz102', 0.002741421972297463) + +[76226] +centroid = (0.57796010947785326, -1.6960024425152005) +station = ('kdto', 0.0015376848658645264) +zone = ('txz103', 0.0017699631422626965) + +[76227] +centroid = (0.58073123854441466, -1.6927969184511102) +station = ('kdto', 0.0033212458530828609) +zone = ('txz103', 0.0022119104858259707) + +[76228] +centroid = (0.58672586856636211, -1.7115275127308329) +station = ('k0f2', 0.0041449779530452506) +zone = ('txz090', 0.0036174372850679279) + +[76230] +centroid = (0.58504434855182075, -1.7096568164786679) +station = ('k0f2', 0.0028337665637726953) +zone = ('txz091', 0.0043195647690265184) + +[76233] +centroid = (0.58534339326585738, -1.6913388005808241) +station = ('kgyi', 0.0046809839634938955) +zone = ('txz093', 0.0036745745747179793) + +[76234] +centroid = (0.58078132949394701, -1.701943473475819) +station = ('klud', 0.0010411940464760154) +zone = ('txz102', 0.0023024407954969103) + +[76238] +centroid = (0.58431905952786189, -1.699110228141179) +station = ('kgle', 0.0037584181962897938) +zone = ('txz092', 0.0034535944167750354) + +[76239] +centroid = (0.58497158577530495, -1.7023984982651066) +station = ('k0f2', 0.0037162534691712874) +zone = ('txz091', 0.0038616849251939598) + +[76240] +centroid = (0.58750545478335037, -1.6960472625703917) +station = ('kgle', 0.00034809521483477387) +zone = ('txz092', 0.00065469770716553456) + +[76244] +centroid = (0.57470266186851615, -1.6979246085270068) +station = ('kafw', 0.001077727937436579) +zone = ('txz118', 0.0027537753282430386) + +[76245] +centroid = (0.59046115241831021, -1.690172728654274) +station = ('kgyi', 0.0032068258294895933) +zone = ('okz051', 0.0035299853289114478) + +[76247] +centroid = (0.57770386023707543, -1.6989122030842478) +station = ('kafw', 0.0020657355528827903) +zone = ('txz103', 0.0037376863106140502) + +[76248] +centroid = (0.57463236000624573, -1.69689894833878) +station = ('kafw', 0.0016936653917936449) +zone = ('txz118', 0.0028540617579363519) + +[76249] +centroid = (0.580825032538417, -1.6982456618429111) +station = ('kdto', 0.0020305374669312651) +zone = ('txz103', 0.0030001647787222009) + +[76250] +centroid = (0.58695714214554384, -1.6970840754125389) +station = ('kgle', 0.00067469089141541634) +zone = ('txz092', 0.00037232132313169133) + +[76251] +centroid = (0.58690019205205135, -1.7049750231200707) +station = ('k0f2', 0.0014859855609175095) +zone = ('txz091', 0.0010050015166662403) + +[76252] +centroid = (0.58786321237342409, -1.6996514547422226) +station = ('kgle', 0.0027531447363718028) +zone = ('txz092', 0.0025835403152902345) + +[76253] +centroid = (0.5867073506229985, -1.6983944511616438) +station = ('kgle', 0.0017673776772942093) +zone = ('txz092', 0.0014850783971860687) + +[76255] +centroid = (0.59028405385911042, -1.7057953802283856) +station = ('k0f2', 0.0040808943880534477) +zone = ('txz091', 0.0025365983429307898) + +[76258] +centroid = (0.58243811819298763, -1.6918042275324534) +station = ('kdto', 0.0049071964062105755) +zone = ('txz103', 0.0039604736358394947) + +[76259] +centroid = (0.57942669219501153, -1.6984083090759046) +station = ('kdto', 0.0016304168446429094) +zone = ('txz103', 0.0028425730361758008) + +[76261] +centroid = (0.58980040567009018, -1.7097908926718062) +station = ('k0f2', 0.0044369324299693208) +zone = ('txz091', 0.0040312164319465408) + +[76262] +centroid = (0.5761215796438024, -1.6969263849146212) +station = ('kafw', 0.0013926690734606636) +zone = ('txz103', 0.0037612920840636565) + +[76263] +centroid = (0.58418992261650693, -1.7007393882781607) +station = ('klud', 0.0042732459294130476) +zone = ('txz092', 0.0044731848440661007) + +[76264] +centroid = (0.58883872925224146, -1.6901688714766272) +station = ('kgyi', 0.0025368299125641943) +zone = ('txz093', 0.0030490370532828093) + +[76265] +centroid = (0.58889794827376152, -1.7023126280659084) +station = ('k0f2', 0.0044284490347953091) +zone = ('txz091', 0.0029774301747402614) + +[76266] +centroid = (0.58246962138598601, -1.6966931914732621) +station = ('kdto', 0.0030265919779521493) +zone = ('txz103', 0.003262944847648214) + +[76268] +centroid = (0.58691274096937307, -1.6889096338746057) +station = ('kgyi', 0.0021344349813609688) +zone = ('txz093', 0.0013050219280519926) + +[76270] +centroid = (0.58391719746759019, -1.7060910739102584) +station = ('k0f2', 0.0023745712689012327) +zone = ('txz091', 0.0038550210306899256) + +[76271] +centroid = (0.58406820335447285, -1.6910970550261302) +station = ('kgyi', 0.0054908795730222691) +zone = ('txz093', 0.0042192657538811249) + +[76272] +centroid = (0.58395274982445333, -1.6952130300945234) +station = ('kgle', 0.003518338932158692) +zone = ('txz092', 0.0033917864809202749) + +[76273] +centroid = (0.58894203529066691, -1.6918544755616183) +station = ('kgyi', 0.0039399482017349798) +zone = ('txz093', 0.0042746269112781364) + +[76301] +centroid = (0.59176337747980823, -1.718798170422206) +station = ('ksps', 0.001388578807493236) +zone = ('txz086', 0.0035391329499613036) + +[76302] +centroid = (0.59104728634100745, -1.7189930364331909) +station = ('ksps', 0.00207782153878644) +zone = ('txz086', 0.0037529547821832671) + +[76305] +centroid = (0.59349542477619499, -1.7172077565946184) +station = ('ksps', 0.0016526949054412835) +zone = ('txz090', 0.0046355188939998515) + +[76306] +centroid = (0.59243079138577093, -1.7195518559530947) +station = ('ksps', 0.00076676845598129149) +zone = ('txz086', 0.0027193127090602435) + +[76308] +centroid = (0.59084529938667418, -1.7198601858187519) +station = ('ksps', 0.0023509711388329038) +zone = ('txz086', 0.0033306532134492165) + +[76309] +centroid = (0.59157832021921941, -1.7199114984987607) +station = ('ksps', 0.0016672979870843193) +zone = ('txz086', 0.0028237574829532187) + +[76310] +centroid = (0.5899053174114276, -1.7193210536128107) +station = ('ksps', 0.003218898540417286) +zone = ('txz089', 0.0041179686889694245) + +[76311] +centroid = (0.59288002168194176, -1.7193066720997745) +station = ('ksps', 0.00027409227336999936) +zone = ('txz086', 0.0028288759913779708) + +[76351] +centroid = (0.58569987676557722, -1.722557016219056) +station = ('ksps', 0.0079434322441317776) +zone = ('txz089', 0.0010038027541549612) + +[76354] +centroid = (0.59521439955648414, -1.7212867655894546) +station = ('ksps', 0.0027420721924851818) +zone = ('txz086', 0.0023261227481060913) + +[76357] +centroid = (0.59483028749470523, -1.7136308788255814) +station = ('ksps', 0.004882217350268175) +zone = ('okz044', 0.0045483264166232612) + +[76360] +centroid = (0.59277449907536617, -1.7271977594336463) +station = ('kf05', 0.0065303263114290678) +zone = ('txz086', 0.0037577939338258211) + +[76363] +centroid = (0.58427026012197614, -1.7373827504567068) +station = ('kf05', 0.013614886193764577) +zone = ('txz087', 0.0036505251140296598) + +[76364] +centroid = (0.59415924330389847, -1.7277529486687058) +station = ('kf05', 0.0052729412822562034) +zone = ('txz085', 0.0036469383082225436) + +[76365] +centroid = (0.58919680100158056, -1.7139526128198941) +station = ('ksps', 0.005832425319546101) +zone = ('txz090', 0.00047806555866656549) + +[76366] +centroid = (0.58859220149539726, -1.724100323610132) +station = ('ksps', 0.0061168618237639454) +zone = ('txz089', 0.0023521513848386399) + +[76367] +centroid = (0.59294589040791201, -1.7230081663774039) +station = ('ksps', 0.0032047408681269815) +zone = ('txz086', 0.00036460213115638963) + +[76370] +centroid = (0.58516344981997681, -1.7258650260168233) +station = ('krph', 0.0087272109796689805) +zone = ('txz089', 0.0032507880441455636) + +[76371] +centroid = (0.58442283680518559, -1.7390933127500015) +station = ('kf05', 0.01393430040480313) +zone = ('txz087', 0.0025556028646712805) + +[76372] +centroid = (0.58032551930649612, -1.7265766665660316) +station = ('krph', 0.0059366444940315288) +zone = ('txz100', 0.0037011641983803654) + +[76373] +centroid = (0.59571033486343827, -1.7297368993360327) +station = ('kf05', 0.003035560238522304) +zone = ('txz085', 0.0021361070561062177) + +[76374] +centroid = (0.58221838124016156, -1.723339080803582) +station = ('krph', 0.0051098822299544102) +zone = ('txz100', 0.0032660041906596798) + +[76377] +centroid = (0.59355694763232769, -1.7149486547707147) +station = ('ksps', 0.0035098460710558045) +zone = ('txz090', 0.0039597965948641326) + +[76379] +centroid = (0.58762183333787332, -1.7189590374193622) +station = ('ksps', 0.0055014953941984095) +zone = ('txz089', 0.003030094368829942) + +[76380] +centroid = (0.58679967854042892, -1.7321304613255102) +station = ('kf05', 0.010564726136669976) +zone = ('txz088', 0.0004472812944313286) + +[76384] +centroid = (0.59622000591160573, -1.7338598731747266) +station = ('kf05', 0.0014160639677566202) +zone = ('txz085', 0.0020309097216207545) + +[76388] +centroid = (0.58159320430209716, -1.7390831723870475) +station = ('kbkd', 0.015226424002141357) +zone = ('txz098', 0.0028335083818441754) + +[76389] +centroid = (0.58490569959604222, -1.718409764850467) +station = ('krph', 0.0071700727562144821) +zone = ('txz089', 0.003795650629999561) + +[76401] +centroid = (0.5634312906525516, -1.7138560262990887) +station = ('ksep', 0.0011613099052024014) +zone = ('txz130', 0.0008610585993349746) + +[76402] +centroid = (0.56228099650243968, -1.7142129286778292) +station = ('ksep', 0.00049961415421333601) +zone = ('txz130', 0.00034879458370729879) + +[76424] +centroid = (0.57254255511978525, -1.7259991371165466) +station = ('kbkd', 0.0014712691113496297) +zone = ('txz115', 0.0014511530574219849) + +[76426] +centroid = (0.57885661530143262, -1.7077191693963962) +station = ('kxbp', 0.00029325026332806308) +zone = ('txz102', 0.002918111032594076) + +[76427] +centroid = (0.57871957204856606, -1.7170141472206948) +station = ('krph', 0.0027287244745410164) +zone = ('txz101', 0.0032720365573511673) + +[76429] +centroid = (0.57175891973893234, -1.7220543963010666) +station = ('kbkd', 0.0033530352611805029) +zone = ('txz115', 0.002525277057195934) + +[76430] +centroid = (0.57229574811026085, -1.7320968637374092) +station = ('kbkd', 0.0053073999329363011) +zone = ('txz114', 0.0018992636706864471) + +[76431] +centroid = (0.581471851559206, -1.7079386794564198) +station = ('kxbp', 0.0024911251853835682) +zone = ('txz102', 0.0034416892242674583) + +[76432] +centroid = (0.55575760153030818, -1.7244749061741949) +station = ('kbwd', 0.0022731841747741476) +zone = ('txz140', 0.0031234673794471885) + +[76433] +centroid = (0.56401604576513986, -1.7108214572352309) +station = ('ksep', 0.0029324805745167778) +zone = ('txz130', 0.0031961288769797153) + +[76435] +centroid = (0.56274017517534702, -1.7253825821049871) +station = ('kmkn', 0.0068408097751768539) +zone = ('txz129', 0.001519037180355028) + +[76436] +centroid = (0.55612127578654624, -1.7144038153381196) +station = ('kmnz', 0.003568918505088196) +zone = ('txz143', 0.0032705273993806237) + +[76437] +centroid = (0.56551287503823522, -1.7284902281046257) +station = ('kbkd', 0.0059550465925286402) +zone = ('txz129', 0.0032608140797318187) + +[76442] +centroid = (0.55660471453605609, -1.7211486402324516) +station = ('kmkn', 0.0004937978359352503) +zone = ('txz141', 0.0012973550173105424) + +[76443] +centroid = (0.56084113477612951, -1.7315996019802236) +station = ('kcom', 0.0058252833801783433) +zone = ('txz128', 0.0037111254799790079) + +[76444] +centroid = (0.56067086045430492, -1.7204383784933526) +station = ('kmkn', 0.0036409916083606345) +zone = ('txz141', 0.0030817908490260565) + +[76445] +centroid = (0.56371680906488542, -1.7200613699216292) +station = ('ksep', 0.0056297411462193575) +zone = ('txz129', 0.0041606297142023439) + +[76446] +centroid = (0.55981961101822975, -1.7165072337927456) +station = ('ksep', 0.0034718238866700752) +zone = ('txz130', 0.0034089524217363501) + +[76448] +centroid = (0.56547130129545264, -1.7244036443808362) +station = ('kbkd', 0.0057512491900021155) +zone = ('txz129', 0.0013387302952664007) + +[76449] +centroid = (0.57430048564897906, -1.7160823159330552) +station = ('kmwl', 0.0043332890288102499) +zone = ('txz116', 0.0026544595761054984) + +[76450] +centroid = (0.57696673788078812, -1.721282489532787) +station = ('krph', 0.0013378024890940273) +zone = ('txz100', 0.002286563214695234) + +[76452] +centroid = (0.55409913731518556, -1.7167825071223701) +station = ('kcwc', 0.0027062248345568023) +zone = ('txz143', 0.0038392951845397727) + +[76453] +centroid = (0.56876096768278173, -1.7162451551522659) +station = ('kmwl', 0.005200541833581966) +zone = ('txz116', 0.0029060223912563783) + +[76454] +centroid = (0.56220284065853543, -1.7232646948708621) +station = ('kmkn', 0.0055281000612698653) +zone = ('txz129', 0.0024646351824188892) + +[76455] +centroid = (0.55524738943007268, -1.7171330739559258) +station = ('kcwc', 0.0017639438205203984) +zone = ('txz141', 0.0034861361608141423) + +[76457] +centroid = (0.55753953033671688, -1.7109108704528109) +station = ('kmnz', 0.0051240611564810244) +zone = ('txz143', 0.0043624364789438949) + +[76458] +centroid = (0.57979113439612051, -1.7137065737552404) +station = ('krph', 0.0056945365463116054) +zone = ('txz101', 0.00033349005977266217) + +[76459] +centroid = (0.58078319699624659, -1.7170963522284637) +station = ('krph', 0.0038489571049525623) +zone = ('txz101', 0.0031534262870923646) + +[76460] +centroid = (0.58137104134161088, -1.719157586075069) +station = ('krph', 0.0035830408937111359) +zone = ('txz100', 0.0035914310317000566) + +[76462] +centroid = (0.5677035075955833, -1.7105771111399519) +station = ('kgdj', 0.0031774471731775863) +zone = ('txz131', 0.0031032087100063602) + +[76463] +centroid = (0.56645372967810781, -1.7177210753809224) +station = ('ksep', 0.0054180291862585949) +zone = ('txz130', 0.0048306850966386237) + +[76464] +centroid = (0.56820946109244408, -1.7307511450709516) +station = ('kbkd', 0.0049494517634043056) +zone = ('txz114', 0.0041968630154152519) + +[76466] +centroid = (0.56606802936670964, -1.7232930739244996) +station = ('kbkd', 0.0054838663771129195) +zone = ('txz129', 0.0023220585045195209) + +[76469] +centroid = (0.56445958628794912, -1.7313364586889004) +station = ('kabi', 0.0072701366393360875) +zone = ('txz128', 0.0026934838217920099) + +[76470] +centroid = (0.56716001206651234, -1.7220120022535357) +station = ('kbkd', 0.005132248263581953) +zone = ('txz129', 0.0038503224551206285) + +[76471] +centroid = (0.56054657555827048, -1.72761660354754) +station = ('kbwd', 0.0055562925504679499) +zone = ('txz129', 0.0043064182627039743) + +[76472] +centroid = (0.56898611515628905, -1.7134378977701883) +station = ('kmwl', 0.0035511785817316068) +zone = ('txz116', 0.0033685648687495919) + +[76474] +centroid = (0.55809560968969474, -1.7242780853944477) +station = ('kmkn', 0.0030512891697790012) +zone = ('txz141', 0.0035247796341724485) + +[76475] +centroid = (0.57011993339826206, -1.7190529361331195) +station = ('kbkd', 0.00588700541960067) +zone = ('txz116', 0.0030736850603049807) + +[76476] +centroid = (0.56483477971725038, -1.7091023951884792) +station = ('kgdj', 0.0021312729179611164) +zone = ('txz131', 0.0017938874892424537) + +[76481] +centroid = (0.57579145061578774, -1.7234339219951356) +station = ('krph', 0.0034783638270333085) +zone = ('txz100', 0.0033588725272346784) + +[76483] +centroid = (0.57923484560363225, -1.7325016754041169) +station = ('kbkd', 0.0098388548958535677) +zone = ('txz099', 0.00078922382171636707) + +[76484] +centroid = (0.57184135163950411, -1.7152551171340722) +station = ('kmwl', 0.0031030813879494553) +zone = ('txz116', 0.000563240646396837) + +[76486] +centroid = (0.57622015583995512, -1.7113591059113078) +station = ('kmwl', 0.0040475438729974892) +zone = ('txz101', 0.0041908360988013333) + +[76487] +centroid = (0.57548357453573584, -1.7084989825061874) +station = ('kxbp', 0.0036467222601615466) +zone = ('txz117', 0.0036256349866347639) + +[76490] +centroid = (0.57500694257030871, -1.7107525516363624) +station = ('kmwl', 0.0029151870565986928) +zone = ('txz117', 0.004290564386335868) + +[76491] +centroid = (0.57660219095992415, -1.7287278023224071) +station = ('kbkd', 0.0060003624447918453) +zone = ('txz099', 0.0034270039810867974) + +[76501] +centroid = (0.54236635340487149, -1.6973751614251864) +station = ('ktpl', 0.0025616185517661973) +zone = ('txz158', 0.0034387677648454562) + +[76502] +centroid = (0.54286600626313242, -1.7001604800185666) +station = ('ktpl', 0.00082386652021273923) +zone = ('txz158', 0.0015215179357328992) + +[76504] +centroid = (0.54345861535735451, -1.6994903783055559) +station = ('ktpl', 0.00044712511978808102) +zone = ('txz158', 0.0023453152435166306) + +[76508] +centroid = (0.54240588511242915, -1.6993234899224803) +station = ('ktpl', 0.0013734934486979446) +zone = ('txz158', 0.0018428976125602385) + +[76511] +centroid = (0.53759251138152397, -1.7003767437661814) +station = ('kgtu', 0.0043999128877818669) +zone = ('txz173', 0.0037680344337030157) + +[76513] +centroid = (0.54195419390201294, -1.701694432444852) +station = ('ktpl', 0.0022745403872518875) +zone = ('txz158', 0.00040618060023829143) + +[76518] +centroid = (0.53848037782530611, -1.6955681347841343) +station = ('kt35', 0.002704167182607338) +zone = ('txz174', 0.002826182797902017) + +[76519] +centroid = (0.54141565510801759, -1.6950758123087315) +station = ('kt35', 0.0033332867469078107) +zone = ('txz174', 0.0046251879694542419) + +[76520] +centroid = (0.53915191070830337, -1.6913567076589495) +station = ('kt35', 0.0009730098471346382) +zone = ('txz174', 0.002103791141732772) + +[76522] +centroid = (0.54487512457827314, -1.7098680711313294) +station = ('kgrk', 0.0034926260338351096) +zone = ('txz157', 0.0039178738278588142) + +[76523] +centroid = (0.5373738565328342, -1.6980592432255057) +station = ('kt35', 0.005054440472061072) +zone = ('txz158', 0.0051582437741129116) + +[76524] +centroid = (0.54574079043396972, -1.6965035789033256) +station = ('ktpl', 0.0036027855396104048) +zone = ('txz160', 0.0039879019873609737) + +[76525] +centroid = (0.54963451527541407, -1.7128016205380812) +station = ('kmnz', 0.0031179160078342667) +zone = ('txz143', 0.0037380619348628321) + +[76527] +centroid = (0.53829086997512454, -1.707101287934605) +station = ('kgtu', 0.0033527065800435583) +zone = ('txz173', 0.0046095124992378712) + +[76528] +centroid = (0.54833455914194362, -1.706157152075739) +station = ('kgop', 0.00061939927555963194) +zone = ('txz157', 0.0007958407963764635) + +[76530] +centroid = (0.53600557075914823, -1.7001930304091162) +station = ('kgtu', 0.0040722330914458142) +zone = ('txz173', 0.0030118994480771749) + +[76531] +centroid = (0.55303923376703445, -1.7136869388011553) +station = ('kmnz', 0.00062338256980227894) +zone = ('txz143', 0.0011761607347648701) + +[76534] +centroid = (0.53903317595929023, -1.699580838720687) +station = ('ktpl', 0.0046477070505126245) +zone = ('txz158', 0.0030624260852987854) + +[76537] +centroid = (0.53786511435739304, -1.7034919644947735) +station = ('kgtu', 0.0026326342445576524) +zone = ('txz173', 0.0029550278215263754) + +[76538] +centroid = (0.55235628643072909, -1.7086013286135242) +station = ('kmnz', 0.0037987270539964423) +zone = ('txz143', 0.0033462025930531031) + +[76539] +centroid = (0.54259071548021531, -1.7106092426514812) +station = ('klzz', 0.002784676210419943) +zone = ('txz156', 0.0039285077179343226) + +[76541] +centroid = (0.54302226559106348, -1.7057033315636354) +station = ('khlr', 0.00056833023014047235) +zone = ('txz158', 0.0039806019466700612) + +[76542] +centroid = (0.54122033531142688, -1.705996808677358) +station = ('kgrk', 0.0014471459216615691) +zone = ('txz158', 0.0040414148658418862) + +[76543] +centroid = (0.54365623898855786, -1.7040207294449576) +station = ('khlr', 0.0010356785337157983) +zone = ('txz158', 0.0030255426156375964) + +[76544] +centroid = (0.54355909396239188, -1.706252150346925) +station = ('khlr', 0.00092953676398600891) +zone = ('txz157', 0.0043528393984133993) + +[76548] +centroid = (0.54193967276263644, -1.7042202031251681) +station = ('kile', 0.00081004852681630917) +zone = ('txz158', 0.0024991964781514156) + +[76549] +centroid = (0.5413501179946052, -1.7075095728065242) +station = ('kgrk', 0.0008996806436561306) +zone = ('txz158', 0.0053199857680441952) + +[76550] +centroid = (0.54283888384655643, -1.7149490038365649) +station = ('klzz', 0.00095127950429768615) +zone = ('txz156', 0.0016593009391071961) + +[76554] +centroid = (0.5404408712674863, -1.6994754033805737) +station = ('ktpl', 0.0032547577649007682) +zone = ('txz158', 0.0020245123267008595) + +[76556] +centroid = (0.53582279987987935, -1.6900119140169954) +station = ('krwv', 0.0037493578038347171) +zone = ('txz174', 0.0026585608426547679) + +[76557] +centroid = (0.54602775746958276, -1.6997772231681214) +station = ('ktpl', 0.0023623581343733286) +zone = ('txz158', 0.0045139035394358073) + +[76559] +centroid = (0.54237773295159442, -1.7035176033814854) +station = ('kile', 0.0011873534647896442) +zone = ('txz158', 0.0020010846669039828) + +[76561] +centroid = (0.54819950556442432, -1.7022394115037871) +station = ('kpwg', 0.0034434789540636634) +zone = ('txz157', 0.0040066406825507508) + +[76565] +centroid = (0.55230541008303347, -1.7165466433272556) +station = ('kmnz', 0.003016612994694644) +zone = ('txz143', 0.0037181544914173374) + +[76566] +centroid = (0.55071958647137886, -1.7112792920046143) +station = ('kmnz', 0.0025210062619737631) +zone = ('txz143', 0.0027882187757669163) + +[76567] +centroid = (0.53493550939475043, -1.6930762933044767) +station = ('kt35', 0.00404518081049377) +zone = ('txz174', 0.0024267400094590895) + +[76569] +centroid = (0.54000806451957672, -1.6969316732622548) +station = ('kt35', 0.0039766974264104117) +zone = ('txz158', 0.0041255784398337757) + +[76570] +centroid = (0.54248789813398035, -1.6921580406784176) +station = ('kt35', 0.0035512246985496126) +zone = ('txz160', 0.0029967879504163245) + +[76571] +centroid = (0.53975591680254109, -1.7034177880015637) +station = ('kile', 0.0030283045633351098) +zone = ('txz158', 0.002658389781994174) + +[76573] +centroid = (0.53788661681377758, -1.7017393921263833) +station = ('kgtu', 0.0035964601915372879) +zone = ('txz173', 0.0033217677437658516) + +[76574] +centroid = (0.533709939194, -1.6997521078801849) +station = ('kedc', 0.0041517907178193906) +zone = ('txz173', 0.0034055918455207931) + +[76577] +centroid = (0.53454603917216792, -1.6959407974860199) +station = ('kt35', 0.0053184703424723444) +zone = ('txz174', 0.0040157208778637725) + +[76578] +centroid = (0.53294342549310925, -1.6971087718214548) +station = ('kedc', 0.0055365889962735466) +zone = ('txz194', 0.0056633903278216378) + +[76579] +centroid = (0.5444712553893617, -1.6975989126352922) +station = ('ktpl', 0.0021658412943039228) +zone = ('txz158', 0.0042128899847815628) + +[76596] +centroid = (0.54936994081410429, -1.7056883740919457) +station = ('kgop', 0.0014029840551261761) +zone = ('txz157', 0.001826746857847886) + +[76597] +centroid = (0.54954162885262292, -1.7053068276641672) +station = ('kgop', 0.0017598536802185935) +zone = ('txz157', 0.0021607612341719143) + +[76598] +centroid = (0.54934796711882161, -1.7058054856847547) +station = ('kgop', 0.0013165823283582648) +zone = ('txz157', 0.0017527355639220166) + +[76599] +centroid = (0.54921991231160283, -1.7058022917322233) +station = ('kgop', 0.0012298530830267391) +zone = ('txz157', 0.001648144050454191) + +[76621] +centroid = (0.55644112482526675, -1.6944600601486279) +station = ('kinj', 0.0035230194188353887) +zone = ('txz145', 0.0020252670752409774) + +[76622] +centroid = (0.55529728839338721, -1.6972156208782616) +station = ('kact', 0.0037938986723581604) +zone = ('txz145', 0.0034606774830441855) + +[76623] +centroid = (0.56219015211487344, -1.6886553917624676) +station = ('kjwy', 0.0048751276379277748) +zone = ('txz134', 0.0024735878333117908) + +[76624] +centroid = (0.55258951477867313, -1.6921862277458373) +station = ('kcnw', 0.00174576558905316) +zone = ('txz159', 0.0041279239570066826) + +[76626] +centroid = (0.56065084152778444, -1.6881463490328312) +station = ('kcrs', 0.0053642240076966921) +zone = ('txz134', 0.0040718372929934854) + +[76627] +centroid = (0.56039925231610954, -1.699877649413281) +station = ('kcpt', 0.0043140278808241105) +zone = ('txz145', 0.0044059815833272422) + +[76628] +centroid = (0.55902960518560696, -1.692049934984549) +station = ('kinj', 0.0024045728193338202) +zone = ('txz145', 0.0028238347610223999) + +[76629] +centroid = (0.54366569867310366, -1.6868918761796676) +station = ('klhb', 0.0048735743957536064) +zone = ('txz175', 0.0029841550924338011) + +[76630] +centroid = (0.54699922518453525, -1.6966544800704531) +station = ('kpwg', 0.0029434370928548463) +zone = ('txz159', 0.0036966591945971701) + +[76631] +centroid = (0.55807817385046732, -1.6925708808596844) +station = ('kinj', 0.0025876719457853924) +zone = ('txz145', 0.0023132616940862954) + +[76632] +centroid = (0.54634266722652003, -1.694019556498717) +station = ('kpwg', 0.0049492215392711496) +zone = ('txz160', 0.0020489183171152263) + +[76633] +centroid = (0.5531637281025793, -1.6986464243457542) +station = ('kact', 0.0023005185999403245) +zone = ('txz159', 0.0030773977292304204) + +[76634] +centroid = (0.55531249021117202, -1.7025087856205399) +station = ('kact', 0.0061924643235897782) +zone = ('txz144', 0.0019511624489792485) + +[76635] +centroid = (0.5535536870173523, -1.6870601782794374) +station = ('kcnw', 0.006212854937782516) +zone = ('txz161', 0.0032143075135833447) + +[76636] +centroid = (0.56149153172188515, -1.6980514241504567) +station = ('kinj', 0.0032503646882653097) +zone = ('txz133', 0.0037941727597734106) + +[76637] +centroid = (0.55447370242595617, -1.7070092567231476) +station = ('kmnz', 0.0054136677096724029) +zone = ('txz144', 0.003409221616559442) + +[76638] +centroid = (0.55065108229823811, -1.7006950743684526) +station = ('kpwg', 0.0022060841078089316) +zone = ('txz159', 0.0035824637784879873) + +[76639] +centroid = (0.55618325242828459, -1.6869620209623053) +station = ('kcrs', 0.0048075616057889608) +zone = ('txz146', 0.0041534007457584713) + +[76640] +centroid = (0.55321036330019246, -1.6942558042662672) +station = ('kcnw', 0.00098972101932345066) +zone = ('txz159', 0.0031558962877716564) + +[76641] +centroid = (0.55918057616590455, -1.6896171554467792) +station = ('kinj', 0.0043493701859714873) +zone = ('txz134', 0.0054091509165206785) + +[76642] +centroid = (0.54983205164015481, -1.6845920209177296) +station = ('kcnw', 0.0085203885753259764) +zone = ('txz161', 0.0011655810159339134) + +[76643] +centroid = (0.54896715372932892, -1.6963786831420529) +station = ('kpwg', 0.0018796845321305629) +zone = ('txz159', 0.0017287887845814404) + +[76645] +centroid = (0.55889737904147585, -1.6952969629782517) +station = ('kinj', 0.0011893392501498307) +zone = ('txz145', 0.00055451645831790621) + +[76648] +centroid = (0.55586129154116914, -1.6896057060868861) +station = ('kcnw', 0.0053337419534743961) +zone = ('txz145', 0.0054182331434030088) + +[76649] +centroid = (0.55853120896440744, -1.7083736504126015) +station = ('ksep', 0.0058199155471033923) +zone = ('txz132', 0.0041727649614186728) + +[76650] +centroid = (0.5581576735978957, -1.6905891991203847) +station = ('kinj', 0.0038979189214235141) +zone = ('txz145', 0.0039831347679161293) + +[76651] +centroid = (0.56160702015848962, -1.6903719754416817) +station = ('kinj', 0.0039922048573636099) +zone = ('txz134', 0.003094285894460582) + +[76652] +centroid = (0.5605567857343946, -1.7030155070622717) +station = ('kcpt', 0.0046228301994529009) +zone = ('txz132', 0.0034596511289015043) + +[76653] +centroid = (0.5462808651177069, -1.6861442993011608) +station = ('klhb', 0.0074712695583896878) +zone = ('txz161', 0.0043128423835076847) + +[76654] +centroid = (0.55386533300858842, -1.6931584808589533) +station = ('kcnw', 0.0018633474208840921) +zone = ('txz159', 0.0042559557525521747) + +[76655] +centroid = (0.54805336914615477, -1.6961650897481937) +station = ('kpwg', 0.0024521952132910449) +zone = ('txz159', 0.0026545302814907031) + +[76656] +centroid = (0.54428260275051366, -1.693731507358968) +station = ('kt35', 0.0054454196665591949) +zone = ('txz160', 0.0020022862551116092) + +[76657] +centroid = (0.54882820806757771, -1.6996471612322628) +station = ('kpwg', 0.0011827100582486258) +zone = ('txz159', 0.0032738959986161999) + +[76660] +centroid = (0.55718945219535176, -1.6913026373587228) +station = ('kinj', 0.0039762760203378694) +zone = ('txz145', 0.0035664350221295662) + +[76661] +centroid = (0.54663558583488225, -1.6903160376391553) +station = ('kcnw', 0.0064908601089249431) +zone = ('txz160', 0.0017514434611663266) + +[76664] +centroid = (0.55084327795546772, -1.6895214590438923) +station = ('kcnw', 0.0042094890370611487) +zone = ('txz161', 0.0033120834022813683) + +[76665] +centroid = (0.55704303652440201, -1.7053633588786392) +station = ('kmnz', 0.0078132395162950358) +zone = ('txz144', 0.001156807908418221) + +[76666] +centroid = (0.55927288663004249, -1.6914785141874462) +station = ('kinj', 0.0027874163306254038) +zone = ('txz145', 0.0033548281940435081) + +[76667] +centroid = (0.55248256100211091, -1.6836866139149651) +station = ('kcrs', 0.0064376860518728036) +zone = ('txz161', 0.0025371262494153484) + +[76670] +centroid = (0.56090541525248039, -1.6928379511418243) +station = ('kinj', 0.0018144754304033697) +zone = ('txz145', 0.0032938336000073315) + +[76671] +centroid = (0.55831318243424832, -1.7022154306798647) +station = ('kcpt', 0.0065204563242105109) +zone = ('txz144', 0.0021880877307364718) + +[76673] +centroid = (0.55416284183288345, -1.6910821848209034) +station = ('kcnw', 0.003280764899014734) +zone = ('txz145', 0.0054940039381844545) + +[76676] +centroid = (0.55612731462575815, -1.692122680307772) +station = ('kcnw', 0.0042829512100435209) +zone = ('txz145', 0.0034772136095629837) + +[76678] +centroid = (0.55259036999000666, -1.6887813347212917) +station = ('kcnw', 0.0046198384516020537) +zone = ('txz161', 0.0033456543819470187) + +[76679] +centroid = (0.55724079978194552, -1.6856278040156181) +station = ('kcrs', 0.0032928379544888095) +zone = ('txz146', 0.0026179462559314925) + +[76680] +centroid = (0.54458450980452355, -1.6897272333627025) +station = ('kt35', 0.0061065501239365378) +zone = ('txz160', 0.0020201136852051348) + +[76681] +centroid = (0.55664623591896112, -1.683086185745694) +station = ('kcrs', 0.0022758792410882498) +zone = ('txz146', 0.002739903245109965) + +[76682] +centroid = (0.54896500697434902, -1.6914617415733344) +station = ('kcnw', 0.0040024267194816061) +zone = ('txz160', 0.0035076344147837858) + +[76685] +centroid = (0.54724334438701172, -1.6931940332158164) +station = ('kcnw', 0.0050508948553264323) +zone = ('txz160', 0.0021107190692163987) + +[76686] +centroid = (0.55444876167094514, -1.6852781796598586) +station = ('kcrs', 0.0050697333594714776) +zone = ('txz161', 0.003888665517201721) + +[76687] +centroid = (0.5475606801516093, -1.684155950404119) +station = ('klhb', 0.0089524849735076965) +zone = ('txz161', 0.0032699151140674395) + +[76689] +centroid = (0.55260892283995533, -1.7018021192596999) +station = ('kpwg', 0.00420404809332048) +zone = ('txz144', 0.0045725927377071552) + +[76690] +centroid = (0.55996309453603621, -1.7058274244734521) +station = ('kgdj', 0.0064040883920193038) +zone = ('txz132', 0.0024853293260893345) + +[76691] +centroid = (0.55448855517789053, -1.69468274670789) +station = ('kcnw', 0.0023046537671287852) +zone = ('txz145', 0.0038877327885083485) + +[76692] +centroid = (0.55780201040292421, -1.6987363088022318) +station = ('kinj', 0.0040699139297886251) +zone = ('txz145', 0.0029812508594451188) + +[76693] +centroid = (0.55473524001436747, -1.6825700220727091) +station = ('kcrs', 0.0040727180646929631) +zone = ('txz147', 0.0040308953530811239) + +[76701] +centroid = (0.55068647757546862, -1.6953814194607557) +station = ('kact', 0.0014362462543210689) +zone = ('txz159', 0.0009459511510825705) + +[76704] +centroid = (0.55111954612276592, -1.6951902884543701) +station = ('kcnw', 0.0013928082533607399) +zone = ('txz159', 0.0011877828672151203) + +[76705] +centroid = (0.551889759921671, -1.6946886982806393) +station = ('kcnw', 0.00053851689131323292) +zone = ('txz159', 0.0019467613321651439) + +[76706] +centroid = (0.54935409322449613, -1.694432902825467) +station = ('kcnw', 0.0028754733469090114) +zone = ('txz159', 0.0022075288171749313) + +[76707] +centroid = (0.55071902796601824, -1.6957458791151572) +station = ('kact', 0.0011752385004001056) +zone = ('txz159', 0.00063586319681669702) + +[76708] +centroid = (0.55199742928322659, -1.6967374181165076) +station = ('kact', 0.00047352529864877095) +zone = ('txz159', 0.0013208856195619408) + +[76710] +centroid = (0.55047201151698344, -1.6963729235555212) +station = ('kact', 0.0011002231075555229) +zone = ('txz159', 0.00024322189573897882) + +[76711] +centroid = (0.5500188018701182, -1.6956394314840784) +station = ('kact', 0.0017784250780489665) +zone = ('txz159', 0.0009911002967375928) + +[76712] +centroid = (0.55029644884752538, -1.6975149448449787) +station = ('kpwg', 0.0011635467292144235) +zone = ('txz159', 0.00095830860899366339) + +[76798] +centroid = (0.55062306976374364, -1.6950473808952167) +station = ('kact', 0.0017082679088657911) +zone = ('txz159', 0.0012326067689117297) + +[76801] +centroid = (0.55411241927079324, -1.7284500157186597) +station = ('kbwd', 0.0015253757850458094) +zone = ('txz140', 0.00066858966387185986) + +[76802] +centroid = (0.55403010954326926, -1.7263297199301668) +station = ('kbwd', 0.0011390084740682779) +zone = ('txz140', 0.001417052707511254) + +[76820] +centroid = (0.53698522406829263, -1.7287488509931863) +station = ('kaqo', 0.0058265193378091292) +zone = ('txz170', 0.0027779644513616915) + +[76821] +centroid = (0.55394265109445173, -1.7441801621214015) +station = ('kcom', 0.0081196697517657655) +zone = ('txz066', 0.0017310977331179728) + +[76823] +centroid = (0.55337765310899623, -1.7305179341763002) +station = ('kbwd', 0.0034075710553572768) +zone = ('txz140', 0.0025444434592600566) + +[76824] +centroid = (0.53994846152562115, -1.7185745064785629) +station = ('kaqo', 0.0039585597208437436) +zone = ('txz172', 0.0049903357419863086) + +[76825] +centroid = (0.54290140154036282, -1.7347565011713535) +station = ('kbbd', 0.0016542409921441101) +zone = ('txz154', 0.0017658950833902307) + +[76827] +centroid = (0.5500913552071236, -1.7302403046521855) +station = ('kbwd', 0.0056418966299965605) +zone = ('txz140', 0.0049078555368031775) + +[76828] +centroid = (0.55862622468888612, -1.7329506439008999) +station = ('kcom', 0.0033326598349553271) +zone = ('txz139', 0.0047395899410451643) + +[76831] +centroid = (0.53500879577004179, -1.7264494320635613) +station = ('kaqo', 0.004464143139611576) +zone = ('txz171', 0.003631024257339647) + +[76832] +centroid = (0.540803829938731, -1.7232601744680993) +station = ('kaqo', 0.0036966248044254012) +zone = ('txz155', 0.0032013841211836402) + +[76834] +centroid = (0.55643426568130638, -1.7362738555164523) +station = ('kcom', 0.0014028654407428013) +zone = ('txz139', 0.0019310671871951557) + +[76836] +centroid = (0.54879021224976177, -1.7374600336359851) +station = ('kbbd', 0.0057045913339899461) +zone = ('txz154', 0.0052193754925404529) + +[76837] +centroid = (0.54494003337315489, -1.7435178096702697) +station = ('kbbd', 0.0085778862233744178) +zone = ('txz073', 0.0018732128762640791) + +[76841] +centroid = (0.53926387357981886, -1.7472051144210805) +station = ('kjct', 0.0083872370727969964) +zone = ('txz168', 0.0042987245689512111) + +[76842] +centroid = (0.54000172897439203, -1.7292703553736821) +station = ('kbbd', 0.0055460242199958142) +zone = ('txz170', 0.0044531432286449837) + +[76844] +centroid = (0.54859916850983848, -1.7193008252467801) +station = ('kmnz', 0.0067567520731426746) +zone = ('txz142', 0.0016944710749875471) + +[76845] +centroid = (0.55044309141127801, -1.7363963950832348) +station = ('kcom', 0.0054300432939363942) +zone = ('txz139', 0.0041359027039466929) + +[76848] +centroid = (0.53831403049429849, -1.7378252612352576) +station = ('kjct', 0.0064166828237550294) +zone = ('txz168', 0.0038409136873860474) + +[76849] +centroid = (0.5318401679663386, -1.7422216059946911) +station = ('kjct', 0.001137329811365469) +zone = ('txz169', 0.001130806575219434) + +[76852] +centroid = (0.54749933182840171, -1.7356773368847056) +station = ('kbbd', 0.0037941645724131421) +zone = ('txz154', 0.0033252597738829036) + +[76853] +centroid = (0.54554147383339202, -1.7169980552849913) +station = ('klzz', 0.0037753083784538835) +zone = ('txz156', 0.0022835340908523112) + +[76854] +centroid = (0.53572518361481525, -1.7380223438143927) +station = ('kjct', 0.0041731380860832602) +zone = ('txz169', 0.0044158836501414743) + +[76856] +centroid = (0.53565708086740249, -1.732697239546803) +station = ('kjct', 0.0079701465471245878) +zone = ('txz170', 0.00088604756516726709) + +[76857] +centroid = (0.55730515007146653, -1.7266089202506083) +station = ('kbwd', 0.0023148077726817002) +zone = ('txz140', 0.0029417695601012014) + +[76858] +centroid = (0.54414044568293862, -1.7386343784231895) +station = ('kbbd', 0.0043682372860134426) +zone = ('txz154', 0.004033311408917396) + +[76859] +centroid = (0.53902237237122042, -1.7427974075682164) +station = ('kjct', 0.0065415894660749577) +zone = ('txz168', 0.00052516858921689458) + +[76861] +centroid = (0.55138464418285138, -1.748691035386351) +station = ('ksjt', 0.0062272484551109822) +zone = ('txz072', 0.0051773689351608957) + +[76862] +centroid = (0.54823418525666134, -1.7397847423864714) +station = ('kbbd', 0.0067096418817433438) +zone = ('txz073', 0.00308723969018952) + +[76864] +centroid = (0.55072075584197777, -1.723182891288821) +station = ('kbwd', 0.0053859584942180733) +zone = ('txz142', 0.0022633069520710497) + +[76865] +centroid = (0.55603599899929379, -1.748214944472992) +station = ('ksjt', 0.010174357261421007) +zone = ('txz066', 0.0028447346501376484) + +[76866] +centroid = (0.5490974600112829, -1.7441732506175638) +station = ('ksjt', 0.0086543302682447389) +zone = ('txz073', 0.0025667561394503665) + +[76869] +centroid = (0.539498079312144, -1.7277723218234029) +station = ('kaqo', 0.0054503607279495388) +zone = ('txz170', 0.0048450935962456674) + +[76870] +centroid = (0.5520015133536762, -1.7199646786810687) +station = ('kcwc', 0.0041467331206006749) +zone = ('txz142', 0.0024179766202377527) + +[76871] +centroid = (0.5460982164114857, -1.7277969484191484) +station = ('kbbd', 0.0052634530623818163) +zone = ('txz155', 0.00353716557254082) + +[76872] +centroid = (0.54684514751816915, -1.73077149561003) +station = ('kbbd', 0.0035586585421621916) +zone = ('txz154', 0.0035678563904773183) + +[76873] +centroid = (0.55004602900644928, -1.7345187000607691) +station = ('kcom', 0.005674125276417156) +zone = ('txz139', 0.0046297708293658374) + +[76874] +centroid = (0.53160407727842129, -1.7465361471720835) +station = ('kjct', 0.0046606492998536499) +zone = ('txz169', 0.0048452988661537777) + +[76875] +centroid = (0.55157519923058407, -1.7453213107462329) +station = ('ksjt', 0.0086590942614855303) +zone = ('txz066', 0.0039973547227531497) + +[76877] +centroid = (0.54379385820007764, -1.723756825360047) +station = ('kaqo', 0.0066949836304402606) +zone = ('txz155', 0.00080137670618023909) + +[76878] +centroid = (0.55238166351805307, -1.733031278112342) +station = ('kcom', 0.0036753204706446831) +zone = ('txz139', 0.0031948939035983804) + +[76882] +centroid = (0.55530973259095395, -1.7401329530255369) +station = ('kcom', 0.0045004653600087376) +zone = ('txz139', 0.0037669211826532587) + +[76884] +centroid = (0.5539134342827734, -1.7377857818875773) +station = ('kcom', 0.0030714950363512458) +zone = ('txz139', 0.0018092106722725496) + +[76885] +centroid = (0.53859040338135178, -1.7254554146946728) +station = ('kaqo', 0.003264765095875804) +zone = ('txz171', 0.0037726424152633442) + +[76887] +centroid = (0.54125970993935191, -1.730659480378637) +station = ('kbbd', 0.0038157875706964529) +zone = ('txz154', 0.0043065983203869722) + +[76888] +centroid = (0.55169681377286306, -1.7390546188004847) +station = ('kcom', 0.00537350854366931) +zone = ('txz139', 0.0039782540372265991) + +[76890] +centroid = (0.55303684266595921, -1.7239712565119469) +station = ('kbwd', 0.0032496941722871277) +zone = ('txz140', 0.003653572319018483) + +[76901] +centroid = (0.55171421470550541, -1.7549863507318317) +station = ('ksjt', 0.0046221164551124624) +zone = ('txz072', 0.0038511231698407982) + +[76903] +centroid = (0.54951375594446861, -1.7529715251900373) +station = ('ksjt', 0.0025284644149412192) +zone = ('txz072', 0.0014492050739574793) + +[76904] +centroid = (0.54591054115701876, -1.7524117108324599) +station = ('ksjt', 0.0018804442719706107) +zone = ('txz072', 0.0023543273155937168) + +[76905] +centroid = (0.54994836038150763, -1.7509505211826903) +station = ('ksjt', 0.0038460523474781712) +zone = ('txz072', 0.0027793827757500709) + +[76908] +centroid = (0.5485931994837967, -1.7523484251937826) +station = ('ksjt', 0.0020436387097812377) +zone = ('txz072', 0.0010149409700911086) + +[76930] +centroid = (0.5458089804478452, -1.765798176755746) +station = ('koza', 0.0093036814277153625) +zone = ('txz071', 0.0028917917953276387) + +[76932] +centroid = (0.54574222160395647, -1.7722435904168987) +station = ('koza', 0.010551938148724148) +zone = ('txz070', 0.0017248601273231311) + +[76933] +centroid = (0.55604264870374387, -1.7502904027530011) +station = ('ksjt', 0.0094431712300127053) +zone = ('txz065', 0.0036773537250605645) + +[76934] +centroid = (0.55157750306519671, -1.7570052952506614) +station = ('ksjt', 0.0050828347596073757) +zone = ('txz072', 0.0046368555929799443) + +[76935] +centroid = (0.54250840575269133, -1.7527239153290566) +station = ('ksjt', 0.00478974350166767) +zone = ('txz077', 0.003671930713356167) + +[76936] +centroid = (0.53901944021807702, -1.7557220593714251) +station = ('ksoa', 0.0052609226099662402) +zone = ('txz077', 0.00088729363422488999) + +[76937] +centroid = (0.54783347511369607, -1.7479725356931823) +station = ('ksjt', 0.0052375424714947777) +zone = ('txz073', 0.004418885654732866) + +[76939] +centroid = (0.54574426363918127, -1.7551646186616305) +station = ('ksjt', 0.0017040110050894975) +zone = ('txz072', 0.0028077792980939474) + +[76940] +centroid = (0.54871467439973542, -1.7478238860007902) +station = ('ksjt', 0.0055419679438623434) +zone = ('txz073', 0.0045968210638728906) + +[76941] +centroid = (0.54580603084140933, -1.7608533971854583) +station = ('ksjt', 0.0059633978905661335) +zone = ('txz071', 0.0014912481138882139) + +[76943] +centroid = (0.5329815958438503, -1.7679798906806168) +station = ('koza', 0.0038256576996556556) +zone = ('txz076', 0.0036631179371188205) + +[76945] +centroid = (0.55649908720972541, -1.7559856564483538) +station = ('ksjt', 0.0094818533854646551) +zone = ('txz065', 0.0011969593324863599) + +[76949] +centroid = (0.55922338909245595, -1.7574519599128318) +station = ('ksww', 0.0081637100349594635) +zone = ('txz065', 0.0036115184175021776) + +[76950] +centroid = (0.53130290326269713, -1.7551139168468601) +station = ('ksoa', 0.0028404923790756116) +zone = ('txz078', 0.0010485671292567134) + +[76951] +centroid = (0.55506266378204161, -1.7637533839106947) +station = ('kbpg', 0.0097281194941241014) +zone = ('txz064', 0.00044684181888353668) + +[76953] +centroid = (0.55368420273881647, -1.7511220346882839) +station = ('ksjt', 0.0069863069789328274) +zone = ('txz065', 0.0041098701471318257) + +[76955] +centroid = (0.54610519772849364, -1.7479938461633493) +station = ('ksjt', 0.005285158857113316) +zone = ('txz073', 0.0043527128438314916) + +[76957] +centroid = (0.54754727602295405, -1.7506552987397155) +station = ('ksjt', 0.0029294034113642657) +zone = ('txz072', 0.0024050707049063859) + +[76958] +centroid = (0.55143862721661552, -1.7592806809964863) +station = ('ksjt', 0.0061772026270454578) +zone = ('txz064', 0.0055097351760587067) + +[77002] +centroid = (0.51935492025561203, -1.6644446207111154) +station = ('kmcj', 0.00096925247977374231) +zone = ('txz213', 0.0017991170555650483) + +[77003] +centroid = (0.51923210143614928, -1.6640999007305539) +station = ('kmcj', 0.0010747060356737226) +zone = ('txz213', 0.0020033733716712139) + +[77004] +centroid = (0.51879725265301491, -1.6644114594553276) +station = ('kmcj', 0.00060782452777294468) +zone = ('txz213', 0.0023510448135890842) + +[77005] +centroid = (0.51868453928992098, -1.6654552187078975) +station = ('kmcj', 0.0003862139871608124) +zone = ('txz213', 0.0024694570568701991) + +[77006] +centroid = (0.51907784923685796, -1.664892297664252) +station = ('kmcj', 0.00055637289941549159) +zone = ('txz213', 0.0020303977818202897) + +[77007] +centroid = (0.51961148365565524, -1.6652375412435889) +station = ('kmcj', 0.0010872142872874865) +zone = ('txz213', 0.001523494344418654) + +[77008] +centroid = (0.5200775563791078, -1.6653396430048306) +station = ('kmcj', 0.0015614595465811476) +zone = ('txz213', 0.0010960453508239954) + +[77009] +centroid = (0.52002685456433739, -1.6644784451920192) +station = ('kmcj', 0.0015684015662855819) +zone = ('txz213', 0.0011442339142856708) + +[77010] +centroid = (0.51929870320040528, -1.6643426585762138) +station = ('kmcj', 0.00097504567025447617) +zone = ('txz213', 0.0018751944870436569) + +[77011] +centroid = (0.51912312307765462, -1.6634542859869488) +station = ('kmcj', 0.0014997399335468869) +zone = ('txz213', 0.0023527806728336595) + +[77012] +centroid = (0.51868611008624776, -1.6628473826461527) +station = ('khou', 0.0014934004730362371) +zone = ('txz213', 0.0030116425705801375) + +[77013] +centroid = (0.51996513972198677, -1.6620594363020473) +station = ('khou', 0.0028859654513203516) +zone = ('txz213', 0.0027241769554222773) + +[77014] +centroid = (0.52327081077855664, -1.6661606109783837) +station = ('kiah', 0.001507013288552126) +zone = ('txz213', 0.0024191705518756107) + +[77015] +centroid = (0.51947857683311582, -1.6610843208489581) +station = ('khou', 0.0028261785874896198) +zone = ('txz213', 0.0036976585921233286) + +[77016] +centroid = (0.52119950638216728, -1.6632984280847458) +station = ('kiah', 0.0026026714932933285) +zone = ('txz213', 0.0014003622930902325) + +[77017] +centroid = (0.51818518313763295, -1.6624678782535991) +station = ('khou', 0.0010919198123625869) +zone = ('txz213', 0.0036105756176047928) + +[77018] +centroid = (0.5205697217748777, -1.6655025520372118) +station = ('kmcj', 0.0020709943538578198) +zone = ('txz213', 0.00074456589303090474) + +[77019] +centroid = (0.51930788363227076, -1.6652098777749449) +station = ('kmcj', 0.00078389299100936551) +zone = ('txz213', 0.0018190499016455767) + +[77020] +centroid = (0.51964000233563279, -1.6635488304725294) +station = ('kmcj', 0.0017033801380856722) +zone = ('txz213', 0.0018840770180898732) + +[77021] +centroid = (0.51833538617305952, -1.6642918694949809) +station = ('kmcj', 0.00068388237552583539) +zone = ('txz213', 0.0028241856309944276) + +[77022] +centroid = (0.52065946660501516, -1.6646872389304352) +station = ('kmcj', 0.0021446349025964133) +zone = ('txz213', 0.00048845839797534863) + +[77023] +centroid = (0.51874370595156361, -1.663617736071398) +station = ('kmcj', 0.001255868266263302) +zone = ('txz213', 0.0026168672957678071) + +[77024] +centroid = (0.51960589860204887, -1.6669945292949866) +station = ('kmcj', 0.0020024598460679616) +zone = ('txz213', 0.0023513600919578131) + +[77025] +centroid = (0.51811331047903575, -1.6656508526637537) +station = ('kmcj', 0.00067643670448143249) +zone = ('txz213', 0.0030631948278464524) + +[77026] +centroid = (0.52011138086001141, -1.6638029678649122) +station = ('kmcj', 0.0019075301984254446) +zone = ('txz213', 0.001384002761607333) + +[77027] +centroid = (0.51906229835322271, -1.6658540962551485) +station = ('kmcj', 0.00087771476640498226) +zone = ('txz213', 0.0022039223979726575) + +[77028] +centroid = (0.52055692851146051, -1.6630570315959021) +station = ('kmcj', 0.0026559338954488228) +zone = ('txz213', 0.0016989494218142614) + +[77029] +centroid = (0.51940413854051826, -1.6625352130561413) +station = ('khou', 0.002242808083896799) +zone = ('txz213', 0.0026737202025379704) + +[77030] +centroid = (0.51848124333864876, -1.6650746147579152) +station = ('kmcj', 6.2022882555823856e-05) +zone = ('txz213', 0.0026308431688967229) + +[77031] +centroid = (0.51752860772632514, -1.6675963013677817) +station = ('ksgr', 0.0016920164379440408) +zone = ('txz227', 0.0040436470841713574) + +[77032] +centroid = (0.52338593269601819, -1.6642309924106713) +station = ('kiah', 0.0002923094893977789) +zone = ('txz213', 0.0023524766145024043) + +[77033] +centroid = (0.51778473479405529, -1.6639119636766992) +station = ('khou', 0.00097986255345650151) +zone = ('txz213', 0.0034344667319713223) + +[77034] +centroid = (0.5169554415999702, -1.6613997192980861) +station = ('kefd', 0.00050272048822014293) +zone = ('txz213', 0.0051511117926901686) + +[77035] +centroid = (0.51754977857015183, -1.6663582695161721) +station = ('kmcj', 0.0015095660609842614) +zone = ('txz213', 0.003774091156252784) + +[77036] +centroid = (0.51839502407360027, -1.667392220018346) +station = ('kmcj', 0.002044483039924589) +zone = ('txz213', 0.0034646607095796533) + +[77037] +centroid = (0.52168519660641233, -1.6649136779475888) +station = ('kiah', 0.0019531357882515954) +zone = ('txz213', 0.00057701607785704424) + +[77038] +centroid = (0.52217799032071288, -1.6657630773346568) +station = ('kiah', 0.0018134576286740456) +zone = ('txz213', 0.0013007198348258624) + +[77039] +centroid = (0.52204841707704486, -1.6640175386431524) +station = ('kiah', 0.0015975367734927589) +zone = ('txz213', 0.0012175393192770997) + +[77040] +centroid = (0.52140969638398493, -1.6672624024285827) +station = ('kiah', 0.0032679953541537325) +zone = ('txz213', 0.0020623908329592626) + +[77041] +centroid = (0.52113088003597885, -1.6681991031848356) +station = ('kdwh', 0.0036611280888802097) +zone = ('txz213', 0.0028528515613947397) + +[77042] +centroid = (0.5190840451557025, -1.6678410663420813) +station = ('kmcj', 0.0024896774278323074) +zone = ('txz213', 0.0032508127016015729) + +[77043] +centroid = (0.52032954701651069, -1.6682491243211977) +station = ('kmcj', 0.0033095527114942363) +zone = ('txz213', 0.0029996309136272343) + +[77044] +centroid = (0.52196896968949402, -1.6612147667572521) +station = ('kiah', 0.0032517228996076547) +zone = ('txz213', 0.0033173413579072187) + +[77045] +centroid = (0.51724216428948788, -1.6656181277402788) +station = ('kmcj', 0.0013878686195168775) +zone = ('txz213', 0.0039146471945434736) + +[77046] +centroid = (0.51895230770376199, -1.6656261038949605) +station = ('kmcj', 0.00065396851040115569) +zone = ('txz213', 0.0022437296754094175) + +[77047] +centroid = (0.51680333615565899, -1.664814822498756) +station = ('khou', 0.0016198998948925524) +zone = ('txz213', 0.004305643135088107) + +[77048] +centroid = (0.51694407950653976, -1.6637215133487215) +station = ('khou', 0.00067075845491257953) +zone = ('txz213', 0.0042900191945045105) + +[77049] +centroid = (0.52068281911040692, -1.6606640281117855) +station = ('khou', 0.0040345646922377142) +zone = ('txz213', 0.0037070836843736874) + +[77050] +centroid = (0.52190383400180962, -1.6627628912570638) +station = ('kiah', 0.0022452201373885355) +zone = ('txz213', 0.0020243598768394204) + +[77051] +centroid = (0.5175968151934931, -1.6646722814587456) +station = ('kmcj', 0.00099443514139745072) +zone = ('txz213', 0.0035174204245959672) + +[77053] +centroid = (0.51633021230202836, -1.6661033990855034) +station = ('kaxh', 0.0013166005154462751) +zone = ('txz213', 0.0048891448809154784) + +[77054] +centroid = (0.51801808531504701, -1.6651298544287407) +station = ('kmcj', 0.00052455102290793342) +zone = ('txz213', 0.003096008111849749) + +[77055] +centroid = (0.52005350574201525, -1.6666437006620434) +station = ('kmcj', 0.0020560531131914076) +zone = ('txz213', 0.0018371803068754997) + +[77056] +centroid = (0.51920407144836211, -1.6662474760152555) +station = ('kmcj', 0.0012395738540687481) +zone = ('txz213', 0.0022300662939273561) + +[77057] +centroid = (0.51913214642988748, -1.6665795423587397) +station = ('kmcj', 0.0014600308049951389) +zone = ('txz213', 0.0024503821488934428) + +[77058] +centroid = (0.51594688563841273, -1.6598015911152049) +station = ('kefd', 0.0012186558630586149) +zone = ('txz238', 0.0035685479668748996) + +[77059] +centroid = (0.51685485827517785, -1.6601461889227187) +station = ('kefd', 0.00075594863633204532) +zone = ('txz238', 0.0044924807000791102) + +[77060] +centroid = (0.52245898833028404, -1.6649546059185483) +station = ('kiah', 0.001216957778831608) +zone = ('txz213', 0.0013513580490415891) + +[77061] +centroid = (0.51743797277826908, -1.6628908937044049) +station = ('khou', 0.00025949144660441668) +zone = ('txz213', 0.0040672417385401449) + +[77062] +centroid = (0.51615585390975405, -1.6603424162905203) +station = ('kefd', 0.00071590026339550896) +zone = ('txz238', 0.0040184933322502114) + +[77063] +centroid = (0.51899625509432723, -1.6671959577439592) +station = ('kmcj', 0.0019242637045248248) +zone = ('txz213', 0.002897665551068641) + +[77064] +centroid = (0.52216839100982693, -1.6674122563981588) +station = ('kdwh', 0.0026029473656664307) +zone = ('txz213', 0.0024148861639032865) + +[77065] +centroid = (0.5223169359824642, -1.6685913484809287) +station = ('kdwh', 0.0025744153647296458) +zone = ('txz213', 0.0034130616449263387) + +[77066] +centroid = (0.52285236809039093, -1.6668462984816148) +station = ('kdwh', 0.0020364128761040092) +zone = ('txz213', 0.0024207784614763981) + +[77067] +centroid = (0.52277199567833665, -1.6658575869136523) +station = ('kiah', 0.0014643490062033677) +zone = ('txz213', 0.0018556347273532745) + +[77068] +centroid = (0.52372204820336721, -1.6665863142362376) +station = ('kdwh', 0.0013962536943206471) +zone = ('txz213', 0.0029905457433057896) + +[77069] +centroid = (0.52339712025652341, -1.6673339958344995) +station = ('kdwh', 0.001394448953466988) +zone = ('txz213', 0.0031070708568556181) + +[77070] +centroid = (0.52324395016136838, -1.6680606462152747) +station = ('kdwh', 0.0015570953854239114) +zone = ('txz213', 0.0034669805866279872) + +[77071] +centroid = (0.51753188894531899, -1.6671591487500346) +station = ('kmcj', 0.002094619711599396) +zone = ('txz213', 0.0040747502812605229) + +[77072] +centroid = (0.5183573424150496, -1.6682697715662487) +station = ('ksgr', 0.0017541239955660023) +zone = ('txz213', 0.0040090333716286206) + +[77073] +centroid = (0.52358648848036482, -1.665047719234142) +station = ('kiah', 0.00050711263422126144) +zone = ('txz213', 0.0024811819526516826) + +[77074] +centroid = (0.51815242330757305, -1.6670638886794609) +station = ('kmcj', 0.0017961879875669669) +zone = ('txz213', 0.0034975437403612468) + +[77075] +centroid = (0.51697385482357883, -1.6627566604316342) +station = ('khou', 0.00031382743551414046) +zone = ('txz213', 0.004537368057800556) + +[77076] +centroid = (0.52115568116464972, -1.6647331585430549) +station = ('kiah', 0.0024543428809862778) +zone = ('txz213', 0.00016031610739727789) + +[77077] +centroid = (0.51923951908547017, -1.668803266358706) +station = ('ksgr', 0.002389532316468379) +zone = ('txz213', 0.0038609065909687127) + +[77078] +centroid = (0.52102230310321229, -1.6624972521449102) +station = ('kiah', 0.0030884721408934814) +zone = ('txz213', 0.0020940662880158871) + +[77079] +centroid = (0.51969086123003594, -1.6685877705559622) +station = ('ksgr', 0.0028721664762470138) +zone = ('txz213', 0.0034917463141882253) + +[77080] +centroid = (0.5203855022723296, -1.6671902330640127) +station = ('kmcj', 0.0026242390892999043) +zone = ('txz213', 0.0021061030624015264) + +[77081] +centroid = (0.51857395522851468, -1.6664566886326921) +station = ('kmcj', 0.0012274252512515108) +zone = ('txz213', 0.00286791940738615) + +[77082] +centroid = (0.51879021897612931, -1.6692329315139618) +station = ('ksgr', 0.0018879701148943712) +zone = ('txz227', 0.0039704659678634451) + +[77083] +centroid = (0.51826630604126567, -1.6694009194544661) +station = ('ksgr', 0.0013579710267985984) +zone = ('txz227', 0.003446435471850974) + +[77084] +centroid = (0.52058783829251343, -1.6695805661943741) +station = ('ktme', 0.0036482045447970594) +zone = ('txz213', 0.0040847618376639435) + +[77085] +centroid = (0.51697937006401506, -1.6665477075531834) +station = ('kaxh', 0.0019349614559547154) +zone = ('txz213', 0.0043669179582437913) + +[77086] +centroid = (0.52216228235744488, -1.6666147805563376) +station = ('kiah', 0.0023539699544894684) +zone = ('txz213', 0.0018156212098409405) + +[77087] +centroid = (0.51811182694917168, -1.6633713653941864) +station = ('khou', 0.00096570597676231521) +zone = ('txz213', 0.0032804331004887416) + +[77088] +centroid = (0.52153033354188283, -1.6659624812016973) +station = ('kiah', 0.0024430116565405452) +zone = ('txz213', 0.0010057958992901988) + +[77089] +centroid = (0.516389850202569, -1.6620002696404048) +station = ('kefd', 0.00092292489502993915) +zone = ('txz238', 0.0051977093547357425) + +[77090] +centroid = (0.52374259072866325, -1.6657247149976981) +station = ('kiah', 0.001102631145558324) +zone = ('txz213', 0.002727435537661064) + +[77091] +centroid = (0.52103431096846597, -1.6656718315213626) +station = ('kmcj', 0.0025557361289218492) +zone = ('txz213', 0.00066508849595239437) + +[77092] +centroid = (0.520632134748929, -1.6663427884457067) +station = ('kmcj', 0.002378870587884112) +zone = ('txz213', 0.0013310698254941995) + +[77093] +centroid = (0.52121465584007454, -1.6640215005405543) +station = ('kiah', 0.0024145341812641611) +zone = ('txz213', 0.00077761997208011617) + +[77094] +centroid = (0.51957203921456019, -1.6699535779621102) +station = ('ksgr', 0.002705613701560995) +zone = ('txz227', 0.0044341674315360119) + +[77095] +centroid = (0.52201427843687576, -1.6694289668955458) +station = ('kdwh', 0.0031454264999189181) +zone = ('txz213', 0.004021778677320155) + +[77096] +centroid = (0.51793237219548161, -1.6664294091364833) +station = ('kmcj', 0.0013469028269127747) +zone = ('txz213', 0.0034389037173994147) + +[77098] +centroid = (0.51897038931481265, -1.6653250695055766) +station = ('kmcj', 0.00049707529769808106) +zone = ('txz213', 0.0021679747417577954) + +[77099] +centroid = (0.5178543559779174, -1.6682902442783745) +station = ('ksgr', 0.0013556203086178683) +zone = ('txz227', 0.003758644273806515) + +[77201] +centroid = (0.51951475750850973, -1.6644221408703497) +station = ('kmcj', 0.0011167100084964593) +zone = ('txz213', 0.0016486364378394945) + +[77301] +centroid = (0.52896348138661642, -1.6657168959226492) +station = ('kcxo', 0.00081370511033459114) +zone = ('txz199', 0.00097923600141184815) + +[77302] +centroid = (0.52747084090372587, -1.6639761568865876) +station = ('kcxo', 0.0025256974770656092) +zone = ('txz199', 0.0028277632847490603) + +[77303] +centroid = (0.53019531731938152, -1.6646451241355844) +station = ('kcxo', 0.00076964220656338973) +zone = ('txz199', 0.0023314863547130387) + +[77304] +centroid = (0.5292631718724764, -1.6668768417435247) +station = ('kcxo', 0.001402915790885486) +zone = ('txz199', 0.00042599360063229141) + +[77306] +centroid = (0.52858762473219945, -1.6635151456179658) +station = ('kcxo', 0.0019292177431237383) +zone = ('txz199', 0.0028833322671390875) + +[77316] +centroid = (0.52894232799608232, -1.670042554847377) +station = ('kcxo', 0.0041347254201043841) +zone = ('txz199', 0.0027653904523366924) + +[77318] +centroid = (0.53125740252909759, -1.66736939111173) +station = ('kcxo', 0.0023413086630078885) +zone = ('txz199', 0.0024616024816535307) + +[77320] +centroid = (0.53764288158373663, -1.6676773195516592) +station = ('kuts', 0.0010711285511191186) +zone = ('txz177', 0.001189912878828951) + +[77326] +centroid = (0.53241062883235279, -1.6548691510227289) +station = ('k6r3', 0.0038507286777318787) +zone = ('txz179', 0.0050288963144185361) + +[77327] +centroid = (0.52914140025056466, -1.6566258423681537) +station = ('k6r3', 0.0015756705207738417) +zone = ('txz200', 0.0033045745528948456) + +[77328] +centroid = (0.53044699379751914, -1.6613995273118685) +station = ('k6r3', 0.0027860085360745775) +zone = ('txz178', 0.0032880538315551021) + +[77331] +centroid = (0.53458480293485477, -1.6608357336035966) +station = ('k6r3', 0.0052086247901417118) +zone = ('txz178', 0.00087840436142368802) + +[77334] +centroid = (0.53724437055562879, -1.6645805818598456) +station = ('kuts', 0.0031964002641400213) +zone = ('txz177', 0.0030732617685936396) + +[77335] +centroid = (0.53362270763798536, -1.6565124832332365) +station = ('k6r3', 0.0040253419282535183) +zone = ('txz178', 0.0038437294326914488) + +[77336] +centroid = (0.52470126518019866, -1.6597881869865498) +station = ('kiah', 0.0041941326726101062) +zone = ('txz200', 0.0045950992333090883) + +[77338] +centroid = (0.52390073501218637, -1.6630582184197935) +station = ('kiah', 0.0012528242359297248) +zone = ('txz213', 0.0032206488819833648) + +[77339] +centroid = (0.52441518826250422, -1.661920351013956) +station = ('kiah', 0.0023474425276320669) +zone = ('txz213', 0.0042005858735026588) + +[77340] +centroid = (0.53477237346956652, -1.6674602005927113) +station = ('kuts', 0.0020314018846089672) +zone = ('txz177', 0.0017973231691743024) + +[77342] +centroid = (0.53652086176750702, -1.667763887882558) +station = ('kuts', 0.0004453790831249012) +zone = ('txz177', 0.00024671781596784855) + +[77345] +centroid = (0.52452563269757047, -1.6608194147750905) +station = ('kiah', 0.0032873782519996582) +zone = ('txz213', 0.0049232232764205948) + +[77346] +centroid = (0.52350276503614668, -1.6611607313636105) +station = ('kiah', 0.0028609586536505914) +zone = ('txz213', 0.0040361946914509728) + +[77350] +centroid = (0.53798774119063819, -1.6551560133385868) +station = ('klfk', 0.0072450793594308078) +zone = ('txz179', 0.00055441826276670834) + +[77351] +centroid = (0.53612702822179448, -1.6548728685740357) +station = ('k6r3', 0.0068846038399215147) +zone = ('txz179', 0.0013226567955684834) + +[77354] +centroid = (0.52738366170758866, -1.6693588046596157) +station = ('kdwh', 0.0030040493553191759) +zone = ('txz199', 0.0026158205494664945) + +[77355] +centroid = (0.52632597472758769, -1.6711398433481059) +station = ('kdwh', 0.0033905172248069157) +zone = ('txz212', 0.004402893563900943) + +[77356] +centroid = (0.53172611069972064, -1.6708017381654094) +station = ('kcxo', 0.0051287463967079989) +zone = ('txz198', 0.0040773725529209496) + +[77357] +centroid = (0.52641257796507157, -1.6613747436364901) +station = ('kiah', 0.0038801727032200762) +zone = ('txz199', 0.0053099804471807869) + +[77358] +centroid = (0.53334331533132606, -1.6656768231630232) +station = ('kcxo', 0.003647808377115752) +zone = ('txz177', 0.0037564698361757204) + +[77359] +centroid = (0.5367217666177041, -1.6633265453389954) +station = ('kuts', 0.0042260724857505023) +zone = ('txz178', 0.0036236917834692301) + +[77360] +centroid = (0.53836860694000832, -1.6601137781585091) +station = ('kuts', 0.0071827585460284291) +zone = ('txz164', 0.004241863215201324) + +[77362] +centroid = (0.52640062245969543, -1.6697417298975032) +station = ('kdwh', 0.0024331493001665387) +zone = ('txz199', 0.0034956980378543986) + +[77363] +centroid = (0.52912094499173135, -1.6728979135036397) +station = ('kdwh', 0.0062831720312155719) +zone = ('txz198', 0.0044590865025314758) + +[77364] +centroid = (0.53699569604380459, -1.6618794928561669) +station = ('kuts', 0.0054776973318238758) +zone = ('txz178', 0.0033718108228481857) + +[77365] +centroid = (0.52546078011078901, -1.6632485291214312) +station = ('kiah', 0.0021379560346613154) +zone = ('txz213', 0.0045842594730671395) + +[77367] +centroid = (0.53856001719907465, -1.6650076115679311) +station = ('kuts', 0.0033508929005995071) +zone = ('txz177', 0.0033293573710347791) + +[77368] +centroid = (0.53134468644498989, -1.6549662262357248) +station = ('k6r3', 0.0031779477425276535) +zone = ('txz200', 0.0051023899035508701) + +[77369] +centroid = (0.53096083618259871, -1.6534434264633597) +station = ('k6r3', 0.0042736074061082863) +zone = ('txz200', 0.004856351484563674) + +[77371] +centroid = (0.53203800103705212, -1.65788061192729) +station = ('k6r3', 0.0021778719235695876) +zone = ('txz178', 0.0031494175759763047) + +[77372] +centroid = (0.5277528337509706, -1.6609331578824431) +station = ('k6r3', 0.0031545016772577547) +zone = ('txz200', 0.0055237898872629379) + +[77373] +centroid = (0.52468382934097124, -1.6647642603103256) +station = ('kiah', 0.0011160959665807808) +zone = ('txz213', 0.0035778585997059734) + +[77374] +centroid = (0.53051033179607399, -1.6514959880839843) +station = ('k6r3', 0.0058496470842495565) +zone = ('txz201', 0.0036866704908421772) + +[77375] +centroid = (0.52525484871234618, -1.6682873819384014) +station = ('kdwh', 0.00073166339927079353) +zone = ('txz199', 0.0037949740669312843) + +[77376] +centroid = (0.53134404067316665, -1.6521944513973401) +station = ('k6r3', 0.0054131463942513908) +zone = ('txz201', 0.0045530024407134705) + +[77377] +centroid = (0.52467611498567746, -1.6699572780601246) +station = ('kdwh', 0.0019882651299040076) +zone = ('txz212', 0.0047100746749418176) + +[77378] +centroid = (0.53182580390659462, -1.6644135538504299) +station = ('kcxo', 0.002262523751455644) +zone = ('txz178', 0.0035124742526720259) + +[77379] +centroid = (0.52431219638334403, -1.6672941674209689) +station = ('kdwh', 0.00055139796376823885) +zone = ('txz213', 0.0038123776766911879) + +[77380] +centroid = (0.52598938798134054, -1.6662372134792538) +station = ('kdwh', 0.0017393313810520035) +zone = ('txz199', 0.0028963712792197567) + +[77381] +centroid = (0.52670979008339369, -1.6668061908154039) +station = ('kdwh', 0.0020834309800562391) +zone = ('txz199', 0.0021286861852052768) + +[77382] +centroid = (0.52700190584030004, -1.6676308763402636) +station = ('kdwh', 0.0022397402155466851) +zone = ('txz199', 0.0019587814509937052) + +[77384] +centroid = (0.52768014078762493, -1.6667140548841912) +station = ('kcxo', 0.0023511341224968299) +zone = ('txz199', 0.0011633565486026871) + +[77385] +centroid = (0.52688338053079709, -1.6653284379910327) +station = ('kcxo', 0.002824053126937804) +zone = ('txz199', 0.0023517532470245356) + +[77386] +centroid = (0.52535098144754611, -1.6642827414229928) +station = ('kiah', 0.0017590877981422) +zone = ('txz199', 0.0041294989505746204) + +[77388] +centroid = (0.52463387801777916, -1.6662778621975325) +station = ('kdwh', 0.0012048901880474885) +zone = ('txz213', 0.0037196121876580412) + +[77389] +centroid = (0.52575300058745045, -1.6670872586381451) +station = ('kdwh', 0.0011085072301423732) +zone = ('txz199', 0.0030925368902501248) + +[77396] +centroid = (0.52262428846374032, -1.6625777641833048) +station = ('kiah', 0.0019012664144758126) +zone = ('txz213', 0.002526895522004247) + +[77401] +centroid = (0.51843293262495349, -1.6661070991835174) +station = ('kmcj', 0.00092916699118422426) +zone = ('txz213', 0.0028700247834743749) + +[77406] +centroid = (0.5174218808425658, -1.6719298840873136) +station = ('ksgr', 0.0022519143044690275) +zone = ('txz227', 0.0021028577985493218) + +[77407] +centroid = (0.51783925887988769, -1.6704212738417672) +station = ('ksgr', 0.0012818067782417414) +zone = ('txz227', 0.0026641112901738102) + +[77412] +centroid = (0.51581045325078434, -1.6827091422673857) +station = ('karm', 0.0065365453225675442) +zone = ('txz210', 0.0020908148447587554) + +[77414] +centroid = (0.50454300902563698, -1.6732149002023868) +station = ('kbyy', 0.0011345944207726902) +zone = ('txz236', 0.0019350407118840162) + +[77415] +centroid = (0.50497773563572368, -1.6708900518255605) +station = ('kbyy', 0.0020810530454224113) +zone = ('txz236', 0.0040000334059723365) + +[77417] +centroid = (0.51425089684437231, -1.674926754039328) +station = ('karm', 0.0046515343280645136) +zone = ('txz227', 0.0031673380652637532) + +[77418] +centroid = (0.5233739248307645, -1.679930752631136) +station = ('k11r', 0.0044400311506784139) +zone = ('txz211', 0.0017879991387450712) + +[77419] +centroid = (0.50351532425547763, -1.6799634251947331) +station = ('kpsx', 0.0023161116811870916) +zone = ('txz236', 0.0041301972186872458) + +[77420] +centroid = (0.51066562404163307, -1.674299744505549) +station = ('karm', 0.0034097060038763118) +zone = ('txz226', 0.0044548190762209242) + +[77422] +centroid = (0.50545733466087928, -1.6678065611827695) +station = ('klbx', 0.0030620768703735926) +zone = ('txz237', 0.0043235855535063783) + +[77423] +centroid = (0.52095395600970418, -1.6751164364224347) +station = ('ktme', 0.001346650005056563) +zone = ('txz212', 0.0028430739044355744) + +[77426] +centroid = (0.52573331327348793, -1.6800267457399956) +station = ('k11r', 0.0024271352878063031) +zone = ('txz197', 0.0027179120404812081) + +[77428] +centroid = (0.49957297454107286, -1.6788308984964067) +station = ('kpsx', 0.0018694330228174641) +zone = ('txz236', 0.0052673010785380045) + +[77429] +centroid = (0.52355994202244205, -1.6697467913523341) +station = ('kdwh', 0.0021686556693039324) +zone = ('txz213', 0.0048564018496570936) + +[77430] +centroid = (0.51068120983185339, -1.6697156895850636) +station = ('klbx', 0.0039530970671404495) +zone = ('txz237', 0.0034518076315525302) + +[77432] +centroid = (0.5073221317001726, -1.6788072318317495) +station = ('karm', 0.0033013012503546528) +zone = ('txz226', 0.0037089900828686318) + +[77433] +centroid = (0.52245261787851416, -1.6711113944812983) +station = ('ktme', 0.0031664716074616935) +zone = ('txz212', 0.0038690674482243963) + +[77434] +centroid = (0.51536003613072223, -1.6808425649922552) +station = ('karm', 0.0053017086643685164) +zone = ('txz210', 0.0037270942778577934) + +[77435] +centroid = (0.51514427852859068, -1.6776176154135902) +station = ('karm', 0.0045915409531986908) +zone = ('txz226', 0.0044273415183023754) + +[77436] +centroid = (0.51345338609596602, -1.6796004839767811) +station = ('karm', 0.0031182824602352475) +zone = ('txz226', 0.0024643131990877282) + +[77437] +centroid = (0.50985130577253013, -1.6804132139962646) +station = ('karm', 0.0020592247095194889) +zone = ('txz226', 0.0014501769251645744) + +[77440] +centroid = (0.50430672635150198, -1.6780951200436434) +station = ('kpsx', 0.0034776258469158008) +zone = ('txz236', 0.0025324338702745232) + +[77441] +centroid = (0.51784678124896377, -1.6741588964349132) +station = ('ktme', 0.0024590726414669721) +zone = ('txz227', 0.0033942365131383258) + +[77442] +centroid = (0.51351567689696975, -1.6843515669066824) +station = ('karm', 0.0061076132774709017) +zone = ('txz210', 0.0034781838552696222) + +[77443] +centroid = (0.51223835768389769, -1.6788639899390245) +station = ('karm', 0.0017531503713917058) +zone = ('txz226', 0.0013252934737650979) + +[77444] +centroid = (0.51114370463033942, -1.6716381523028427) +station = ('klbx', 0.00558964422379956) +zone = ('txz227', 0.0042080341331738021) + +[77445] +centroid = (0.52534290057310939, -1.6766602150524088) +station = ('k11r', 0.0050990016562917533) +zone = ('txz212', 0.001946006083263001) + +[77446] +centroid = (0.52511431480097559, -1.6753501534625692) +station = ('ktme', 0.0050217328935450445) +zone = ('txz212', 0.0013224809731351432) + +[77447] +centroid = (0.52442988393480605, -1.6726141753271428) +station = ('ktme', 0.0042666424688630996) +zone = ('txz212', 0.0024122501301367854) + +[77448] +centroid = (0.51341385438840847, -1.6770069072550249) +station = ('karm', 0.0030193111027097034) +zone = ('txz226', 0.0031892208119344125) + +[77449] +centroid = (0.5207636802146518, -1.6708692475008766) +station = ('ktme', 0.0025627761648211829) +zone = ('txz212', 0.0048917521555862037) + +[77450] +centroid = (0.51916007169791945, -1.6710156282652413) +station = ('ktme', 0.0026417124504673371) +zone = ('txz227', 0.0038342736209362226) + +[77451] +centroid = (0.51373726389880292, -1.6755964019667333) +station = ('karm', 0.0038905447103454844) +zone = ('txz227', 0.0039027275405238804) + +[77453] +centroid = (0.50987640360717379, -1.6755147380110322) +station = ('karm', 0.0024527216917183407) +zone = ('txz226', 0.0035637841419649736) + +[77454] +centroid = (0.51525990659153531, -1.6793330297222053) +station = ('karm', 0.0047801856983674656) +zone = ('txz226', 0.004264467831620042) + +[77455] +centroid = (0.5084599641994253, -1.6829615168772241) +station = ('karm', 0.0046615318698264557) +zone = ('txz235', 0.0038626916982989318) + +[77456] +centroid = (0.50684392893841868, -1.6765773991794017) +station = ('kbyy', 0.0032329150148220128) +zone = ('txz236', 0.0032471063562962109) + +[77457] +centroid = (0.50145333991729402, -1.6734542895625903) +station = ('kbyy', 0.0042313706868414118) +zone = ('txz236', 0.0028371284739959349) + +[77458] +centroid = (0.50529405910935521, -1.6796541877578648) +station = ('kpsx', 0.0040984271366577693) +zone = ('txz236', 0.0041239244879814627) + +[77459] +centroid = (0.51537933947224923, -1.6673234540458175) +station = ('kaxh', 0.00083736979013118793) +zone = ('txz227', 0.0036463994531717061) + +[77460] +centroid = (0.51308224183052942, -1.6822270125148147) +station = ('karm', 0.0043056603815020116) +zone = ('txz226', 0.0032340911602008657) + +[77461] +centroid = (0.51282281609051306, -1.6721477884444251) +station = ('ksgr', 0.0047307744485987598) +zone = ('txz227', 0.0025870719504714423) + +[77464] +centroid = (0.51648528480606803, -1.6747355183131869) +station = ('ktme', 0.0038887338860991039) +zone = ('txz227', 0.0030232815396277197) + +[77465] +centroid = (0.5020170987189807, -1.6795373205111515) +station = ('kpsx', 0.00087005149701347177) +zone = ('txz236', 0.0041542236780089618) + +[77466] +centroid = (0.51998048116611184, -1.6757292738826874) +station = ('ktme', 0.0017261675367789898) +zone = ('txz212', 0.0038300281803767206) + +[77467] +centroid = (0.50965661429447018, -1.677288271783739) +station = ('karm', 0.0012239299576030907) +zone = ('txz226', 0.002272551069921296) + +[77468] +centroid = (0.50846099394368394, -1.6744879084522066) +station = ('kbyy', 0.0030278688075836583) +zone = ('txz236', 0.0047011983590255152) + +[77469] +centroid = (0.51456980340529679, -1.6699342746205834) +station = ('ksgr', 0.0023830316785930601) +zone = ('txz227', 0.0015810052003183627) + +[77470] +centroid = (0.51552064132849074, -1.6850492099152894) +station = ('karm', 0.0077416824648714839) +zone = ('txz210', 0.0014907920660837614) + +[77471] +centroid = (0.51571693850946254, -1.6731023962788032) +station = ('ksgr', 0.0034270710762141603) +zone = ('txz227', 0.0014297125219473637) + +[77473] +centroid = (0.5200234337190035, -1.6773960284117571) +station = ('ktme', 0.0031564693847298216) +zone = ('txz211', 0.0030357978610597142) + +[77474] +centroid = (0.51976095365279595, -1.6786778854808841) +station = ('ktme', 0.0042902867810010389) +zone = ('txz211', 0.0023728144818176522) + +[77475] +centroid = (0.51467358068262037, -1.6869037793251662) +station = ('k3t5', 0.0085986303173854021) +zone = ('txz210', 0.0029985000084326017) + +[77476] +centroid = (0.51814647173482364, -1.6746828617296543) +station = ('ktme', 0.002278237281965289) +zone = ('txz227', 0.0039253899507552138) + +[77477] +centroid = (0.5170417481314814, -1.66797570104058) +station = ('ksgr', 0.0012517563504516208) +zone = ('txz227', 0.0035115000693017994) + +[77478] +centroid = (0.51697196986798666, -1.668634126500895) +station = ('ksgr', 0.00067526371655508919) +zone = ('txz227', 0.0029838355308001176) + +[77479] +centroid = (0.51604143012399328, -1.6691633626899773) +station = ('ksgr', 0.00089251720778933067) +zone = ('txz227', 0.0021585887818715379) + +[77480] +centroid = (0.5076520338353846, -1.6714436528110004) +station = ('kbyy', 0.0024665750496443155) +zone = ('txz236', 0.0050908147757942925) + +[77481] +centroid = (0.51440818591656201, -1.6678043097080344) +station = ('kaxh', 0.0013480057791529494) +zone = ('txz227', 0.0033634277854098587) + +[77482] +centroid = (0.50775855127963376, -1.6738327642108854) +station = ('kbyy', 0.0021718642047932595) +zone = ('txz236', 0.0041425596012238629) + +[77483] +centroid = (0.50245374519124464, -1.6727104651419755) +station = ('kbyy', 0.0032424257053229729) +zone = ('txz236', 0.0026119648297537202) + +[77484] +centroid = (0.52498793550983869, -1.6743338656924256) +station = ('ktme', 0.0047305176586250313) +zone = ('txz212', 0.0014596260315614944) + +[77485] +centroid = (0.51718877466766933, -1.6764778455988678) +station = ('ktme', 0.003885755492551695) +zone = ('txz227', 0.0046920169350161646) + +[77486] +centroid = (0.50886149464713903, -1.6699915737799262) +station = ('klbx', 0.0033743030183432761) +zone = ('txz237', 0.0035354729995252434) + +[77488] +centroid = (0.51150739633986997, -1.6771094104419946) +station = ('karm', 0.0013316991942027251) +zone = ('txz226', 0.002055806576612799) + +[77489] +centroid = (0.51662503331927523, -1.6670608168999772) +station = ('kaxh', 0.0016680969166009891) +zone = ('txz227', 0.0040777879403547943) + +[77493] +centroid = (0.52103689405575893, -1.672574434180075) +station = ('ktme', 0.0012829278517046754) +zone = ('txz212', 0.0036301927089420591) + +[77494] +centroid = (0.51907191511740114, -1.6725415347236749) +station = ('ktme', 0.0016137630013258251) +zone = ('txz227', 0.0038272278479496722) + +[77498] +centroid = (0.51737817779809581, -1.6694645017991165) +station = ('ksgr', 0.00047244284517289863) +zone = ('txz227', 0.0026997691043485167) + +[77502] +centroid = (0.51800530950492241, -1.6615496605341249) +station = ('kefd', 0.0014759728891966897) +zone = ('txz213', 0.0042584931864859364) + +[77503] +centroid = (0.51842347294040769, -1.6608360303095695) +station = ('kefd', 0.0018098572396566055) +zone = ('txz213', 0.0044394639763148105) + +[77504] +centroid = (0.5174537505547071, -1.6613750752490479) +station = ('kefd', 0.00090683880405372321) +zone = ('txz213', 0.0047719781187189423) + +[77505] +centroid = (0.51741409667410188, -1.6605117481345488) +station = ('kefd', 0.00089133644235103607) +zone = ('txz238', 0.0051353725427806295) + +[77506] +centroid = (0.51860572022090101, -1.6615482468174307) +station = ('khou', 0.0018938299663324744) +zone = ('txz213', 0.0038436299480582039) + +[77507] +centroid = (0.51704600673485623, -1.6591708640301193) +station = ('kefd', 0.0016231955795154942) +zone = ('txz238', 0.0042918937060198101) + +[77510] +centroid = (0.51243610348814861, -1.659588242067441) +station = ('klvj', 0.0036802360602868314) +zone = ('txz238', 0.0019536267622638874) + +[77511] +centroid = (0.51279270916091613, -1.6622839903636089) +station = ('klvj', 0.0023735370678051489) +zone = ('txz238', 0.0042181371548871312) + +[77514] +centroid = (0.51836795401690183, -1.6511377767083053) +station = ('kgls', 0.00856143329362157) +zone = ('txz214', 0.00067590625241167553) + +[77515] +centroid = (0.50919843045923663, -1.6659183069183292) +station = ('klbx', 0.0010476663717002852) +zone = ('txz237', 0.00029589344626744084) + +[77517] +centroid = (0.51250664969651427, -1.6603505320715422) +station = ('klvj', 0.003213025379331714) +zone = ('txz238', 0.0025797149794926618) + +[77518] +centroid = (0.51499712981935508, -1.6578402075551062) +station = ('kefd', 0.0031695232603941859) +zone = ('txz238', 0.0020023179435028631) + +[77519] +centroid = (0.52766354270643856, -1.6508575815501898) +station = ('kbmt', 0.0062280775632706205) +zone = ('txz201', 0.0034380907198867327) + +[77520] +centroid = (0.51894368577725714, -1.6579602163944733) +station = ('kefd', 0.003501215892318419) +zone = ('txz214', 0.0058524979243911313) + +[77521] +centroid = (0.52015066822147382, -1.6575431176098316) +station = ('kefd', 0.0046208994511867524) +zone = ('txz214', 0.0055989106115998674) + +[77523] +centroid = (0.51992525894857877, -1.6556040568108661) +station = ('kefd', 0.0057168585186590445) +zone = ('txz214', 0.0039063762863169368) + +[77530] +centroid = (0.51986214784282669, -1.660108437450998) +station = ('kefd', 0.0033302154121816704) +zone = ('txz213', 0.0043478574985952017) + +[77531] +centroid = (0.5069628731269421, -1.664907674014962) +station = ('klbx', 0.0016662069576601204) +zone = ('txz237', 0.0026977537772106155) + +[77532] +centroid = (0.52242717097802005, -1.659060890833951) +station = ('kiah', 0.0048238049400005671) +zone = ('txz200', 0.005317312548761742) + +[77533] +centroid = (0.52512012674738473, -1.6510740547373148) +station = ('kbmt', 0.0057405474231481401) +zone = ('txz200', 0.0034012414801304286) + +[77534] +centroid = (0.51018640898891299, -1.6635486908461892) +station = ('klbx', 0.0030674011073194458) +zone = ('txz237', 0.0022566158968981343) + +[77535] +centroid = (0.52454886302991444, -1.6567013278583023) +station = ('k6r3', 0.0054958146637759013) +zone = ('txz200', 0.0023715350989310905) + +[77536] +centroid = (0.51833592722512767, -1.6601793152719215) +station = ('kefd', 0.0018513028671299022) +zone = ('txz213', 0.0049540782917889895) + +[77538] +centroid = (0.52331810920128563, -1.6498137350311572) +station = ('kbmt', 0.0048814907071768089) +zone = ('txz214', 0.0044488281391666844) + +[77539] +centroid = (0.51411755368951995, -1.65860473158065) +station = ('kefd', 0.0032389918417235048) +zone = ('txz238', 0.0014857636073253087) + +[77541] +centroid = (0.50651580703904375, -1.6629191854915797) +station = ('klbx', 0.0033221185192979638) +zone = ('txz237', 0.0040105809202235099) + +[77545] +centroid = (0.51552315460261366, -1.666346383823966) +station = ('kaxh', 0.00048345968230089302) +zone = ('txz227', 0.0044995814370583894) + +[77546] +centroid = (0.51513522026977276, -1.6614161428463472) +station = ('klvj', 0.0008793345330189268) +zone = ('txz238', 0.0040476628698707705) + +[77547] +centroid = (0.51898894216476144, -1.6622197797004281) +station = ('khou', 0.0019162046084682859) +zone = ('txz213', 0.0031528128668928033) + +[77550] +centroid = (0.51156534127103614, -1.6541492027062812) +station = ('kgls', 0.0015813834165973755) +zone = ('txz238', 0.0032257514484012356) + +[77551] +centroid = (0.51100077961789359, -1.6551531509986135) +station = ('kgls', 0.00054648662874171798) +zone = ('txz238', 0.0028464977892290657) + +[77554] +centroid = (0.51056406333245952, -1.6567477187098203) +station = ('kgls', 0.00091381268112714575) +zone = ('txz238', 0.0025348624880214094) + +[77560] +centroid = (0.52130447048338224, -1.6511341987833386) +station = ('kbmt', 0.006774942700700501) +zone = ('txz214', 0.0022657500243213058) + +[77561] +centroid = (0.52650485352262455, -1.6534454510452918) +station = ('k6r3', 0.0053417906377574145) +zone = ('txz200', 0.001187129989054697) + +[77562] +centroid = (0.52067602977961669, -1.6589510049042453) +station = ('kefd', 0.0044217385592665512) +zone = ('txz213', 0.0051864746416951709) + +[77563] +centroid = (0.51144351728924697, -1.6586270019819052) +station = ('kgls', 0.0026026848908739983) +zone = ('txz238', 0.0018840379493673483) + +[77564] +centroid = (0.52693706685858843, -1.6523194518783677) +station = ('k6r3', 0.0058984682147560693) +zone = ('txz200', 0.0022412094545116979) + +[77565] +centroid = (0.5154993134050313, -1.658523434144092) +station = ('kefd', 0.0024051228241606651) +zone = ('txz238', 0.0026459799760638354) + +[77566] +centroid = (0.50702624603208202, -1.6663678164671805) +station = ('klbx', 0.0011639006967103477) +zone = ('txz237', 0.0024783152060873512) + +[77568] +centroid = (0.51248385569648325, -1.657715591046514) +station = ('kgls', 0.0024117898922110708) +zone = ('txz238', 0.00058741612687762104) + +[77571] +centroid = (0.51816087070115269, -1.6590635262811215) +station = ('kefd', 0.0022654784870817075) +zone = ('txz238', 0.0053253501564148632) + +[77573] +centroid = (0.51493827731697783, -1.6595865840046518) +station = ('kefd', 0.0020667448534470718) +zone = ('txz238', 0.0026694748484011968) + +[77575] +centroid = (0.52491925680377272, -1.6534104571937895) +station = ('k6r3', 0.0064827034185590592) +zone = ('txz200', 0.0017806426127957773) + +[77577] +centroid = (0.51111169529185774, -1.6629760657719022) +station = ('klbx', 0.0040672355090277043) +zone = ('txz237', 0.0031044670834530761) + +[77578] +centroid = (0.51454856274829996, -1.6643704442179055) +station = ('kaxh', 0.001869234156187497) +zone = ('txz237', 0.0052610989502371681) + +[77580] +centroid = (0.52135939599494252, -1.6557122497711971) +station = ('kefd', 0.0065834767971132873) +zone = ('txz214', 0.0045350609880330274) + +[77581] +centroid = (0.51594644930609979, -1.6629451559908497) +station = ('klvj', 0.00090426095167978765) +zone = ('txz213', 0.005436458863503215) + +[77583] +centroid = (0.51280220375204699, -1.6662652783736256) +station = ('kaxh', 0.0022496315582934169) +zone = ('txz237', 0.0033256162470064275) + +[77584] +centroid = (0.51566319982179365, -1.6641726286004845) +station = ('klvj', 0.0015998254309726857) +zone = ('txz213', 0.005482503358356771) + +[77585] +centroid = (0.52875165077530195, -1.6497681644843876) +station = ('kbmt', 0.0060492945360710289) +zone = ('txz201', 0.0021270974505230738) + +[77586] +centroid = (0.51633499450417875, -1.6586940051718893) +station = ('kefd', 0.002000618758072338) +zone = ('txz238', 0.0034836838593074464) + +[77587] +centroid = (0.51768266793939866, -1.6620732767630155) +station = ('khou', 0.00094523745995436672) +zone = ('txz213', 0.004218702422817416) + +[77590] +centroid = (0.5129766494107838, -1.6566691265336031) +station = ('kgls', 0.0023240901841106725) +zone = ('txz238', 0.00068214534041084892) + +[77591] +centroid = (0.51311288981219449, -1.6580148626533533) +station = ('kgls', 0.0030494066395443751) +zone = ('txz238', 0.00049997334430205629) + +[77597] +centroid = (0.52074004845657984, -1.6528617954901326) +station = ('kefd', 0.0081610382154751488) +zone = ('txz214', 0.0022176087339704172) + +[77598] +centroid = (0.51554652456129779, -1.6604381825065773) +station = ('kefd', 0.0011671341583634391) +zone = ('txz238', 0.0036237753159708086) + +[77611] +centroid = (0.52385074878240934, -1.6376117193514441) +station = ('korg', 0.0010251324073656338) +zone = ('txz216', 0.002235713159752259) + +[77612] +centroid = (0.53061468503205067, -1.639254650136224) +station = ('kbpt', 0.0044815693787594469) +zone = ('txz261', 0.0011844221599363086) + +[77613] +centroid = (0.52450720202066936, -1.6469058070578244) +station = ('kbmt', 0.0021491159568157556) +zone = ('txz215', 0.0040927433192397581) + +[77614] +centroid = (0.52885542805262542, -1.6366749313287288) +station = ('korg', 0.0040731060085565721) +zone = ('txz262', 0.0015187231960184628) + +[77615] +centroid = (0.52930603715890534, -1.6415163001408359) +station = ('kbpt', 0.0046383309803445872) +zone = ('txz261', 0.0012659214907205973) + +[77616] +centroid = (0.5334921046500587, -1.643739221289346) +station = ('kbpt', 0.00074854572102822853) +zone = ('txz261', 0.0042221779396504466) + +[77617] +centroid = (0.51499196364476918, -1.6496873208334353) +station = ('kxih', 0.0057048882098373705) +zone = ('txz214', 0.0042619375452716563) + +[77619] +centroid = (0.52268275699368216, -1.6391882927180632) +station = ('korg', 0.0027435022591072353) +zone = ('txz216', 0.0031693780205061957) + +[77622] +centroid = (0.52119271705137704, -1.6456435325829044) +station = ('kbmt', 0.0037724483783466785) +zone = ('txz215', 0.0017991978410538442) + +[77623] +centroid = (0.51592533082215064, -1.6478426125338324) +station = ('kxih', 0.0068297069451772547) +zone = ('txz214', 0.0042804048461589214) + +[77624] +centroid = (0.53555450786726277, -1.6457024548984518) +station = ('kbpt', 0.0029686737673068784) +zone = ('txz180', 0.0019691007260185865) + +[77625] +centroid = (0.53018275094876721, -1.6471359287196998) +station = ('kbpt', 0.005102578379983516) +zone = ('txz201', 0.00082038965589169201) + +[77627] +centroid = (0.52336823505740293, -1.6407738370770375) +station = ('kbmt', 0.0034978024149411062) +zone = ('txz216', 0.0029987003243004445) + +[77629] +centroid = (0.52324691722109684, -1.647644447850561) +station = ('kbmt', 0.0031826774007557459) +zone = ('txz215', 0.0038735025392405489) + +[77630] +centroid = (0.52485092716355719, -1.6382528835054568) +station = ('korg', 0.00092796082849415211) +zone = ('txz216', 0.0010927393206330326) + +[77632] +centroid = (0.52711460175010127, -1.6371981112253067) +station = ('korg', 0.0023086828454872946) +zone = ('txz216', 0.0018878748913107141) + +[77640] +centroid = (0.52153253265674038, -1.6395772742484553) +station = ('korg', 0.0038756877236780464) +zone = ('txz215', 0.0035010661493486894) + +[77642] +centroid = (0.52286608637831167, -1.6387231624724068) +station = ('korg', 0.0023546394935584961) +zone = ('txz216', 0.0029692620378859898) + +[77650] +centroid = (0.51358924252494131, -1.6525771497424246) +station = ('kgls', 0.003919399631280877) +zone = ('txz238', 0.0042825089976842529) + +[77651] +centroid = (0.52335394081082909, -1.6398386198506489) +station = ('korg', 0.0027201439220662549) +zone = ('txz216', 0.0026375582719268048) + +[77655] +centroid = (0.51854608232036037, -1.6395247747445552) +station = ('kvbs', 0.0060894844267538337) +zone = ('txz215', 0.0046633324272983062) + +[77656] +centroid = (0.53083794754996583, -1.643640365840513) +station = ('kbpt', 0.0030037597876935375) +zone = ('txz261', 0.0027084218375517293) + +[77657] +centroid = (0.52757845790540381, -1.6440510243602149) +station = ('kbmt', 0.0027793634256056306) +zone = ('txz201', 0.0034337785608561972) + +[77659] +centroid = (0.52657911728229689, -1.6481080596597681) +station = ('kbmt', 0.0036205857806542699) +zone = ('txz201', 0.0028827934943037236) + +[77660] +centroid = (0.534940326503486, -1.6430660477968517) +station = ('kbpt', 0.0011657983127563933) +zone = ('txz259', 0.0040675595077489498) + +[77661] +centroid = (0.51926384897524303, -1.6479523762904902) +station = ('kbmt', 0.0063322182986355379) +zone = ('txz214', 0.0028468523444687126) + +[77662] +centroid = (0.52670436210942007, -1.6409269548123151) +station = ('kbmt', 0.003581954823935959) +zone = ('txz216', 0.0020320596088889502) + +[77663] +centroid = (0.53255936579120788, -1.6474558999314679) +station = ('kbpt', 0.0040789003084507249) +zone = ('txz201', 0.0031592548856656383) + +[77664] +centroid = (0.53409579658503092, -1.6478317565858849) +station = ('kbpt', 0.00422562199938972) +zone = ('txz180', 0.0030153999393127697) + +[77665] +centroid = (0.52033499244377701, -1.6478721085981911) +station = ('kbmt', 0.0053774783252401055) +zone = ('txz214', 0.0031822586557886099) + +[77701] +centroid = (0.52487379097675835, -1.6424505748894285) +station = ('kbmt', 0.001730450136776938) +zone = ('txz215', 0.0034536450344111493) + +[77702] +centroid = (0.52510443623740932, -1.6428488066648561) +station = ('kbmt', 0.0014137128420821984) +zone = ('txz215', 0.0035955025391029871) + +[77703] +centroid = (0.52598799171793897, -1.6425517865327517) +station = ('kbmt', 0.0020143437048040754) +zone = ('txz216', 0.0032457598821452002) + +[77705] +centroid = (0.52181904590674777, -1.6434225312965716) +station = ('kbmt', 0.0031304290038860925) +zone = ('txz215', 0.00029917387338962979) + +[77706] +centroid = (0.52538409034345646, -1.6436367530089615) +station = ('kbmt', 0.00090102463457056596) +zone = ('txz215', 0.0038134340725783432) + +[77707] +centroid = (0.52453132247093193, -1.6435879710563681) +station = ('kbmt', 0.00079953028562269716) +zone = ('txz215', 0.0029607117396491583) + +[77708] +centroid = (0.52612979971966345, -1.6434087606487735) +station = ('kbmt', 0.0015888383221954701) +zone = ('txz215', 0.004562591389365051) + +[77713] +centroid = (0.52473437407610901, -1.6450113219679545) +station = ('kbmt', 0.00049402825474790352) +zone = ('txz215', 0.0033870264848248795) + +[77801] +centroid = (0.5347564037069108, -1.68184209760158) +station = ('kcll', 0.00097858884283835647) +zone = ('txz196', 0.00098018233788223458) + +[77802] +centroid = (0.53513980018369645, -1.6811467235210005) +station = ('kcll', 0.0015123618022493631) +zone = ('txz196', 0.00030496143857384946) + +[77803] +centroid = (0.53548539282888374, -1.6822542221978534) +station = ('kcll', 0.001730236159495151) +zone = ('txz196', 0.0013048195250196016) + +[77807] +centroid = (0.5354266450462617, -1.6839565116304933) +station = ('kcll', 0.0024074606475354013) +zone = ('txz196', 0.0027370454678738911) + +[77808] +centroid = (0.5375218953599884, -1.6809629752573503) +station = ('kcll', 0.0038306553668189347) +zone = ('txz196', 0.0023892612984388159) + +[77830] +centroid = (0.53281388715602618, -1.675715660314522) +station = ('kcll', 0.0054256885323415074) +zone = ('txz198', 0.00047566469018312391) + +[77831] +centroid = (0.53628224035217431, -1.6738384714375394) +station = ('kuts', 0.0048257618984314781) +zone = ('txz198', 0.0034228441039425863) + +[77833] +centroid = (0.52735254248702568, -1.6826766791432985) +station = ('k11r', 0.00054858821282662105) +zone = ('txz197', 0.00010112745698695642) + +[77835] +centroid = (0.52697843116186061, -1.685779455674324) +station = ('k11r', 0.0032560331958564523) +zone = ('txz197', 0.0028058999226653835) + +[77836] +centroid = (0.53305086796186196, -1.6873185568219027) +station = ('krwv', 0.00061917486167480985) +zone = ('txz195', 0.0011941377215240357) + +[77837] +centroid = (0.54110633040468659, -1.6875410688482393) +station = ('klhb', 0.0025023361860167445) +zone = ('txz175', 0.0026681046117161449) + +[77840] +centroid = (0.53422945389914867, -1.6812055760233777) +station = ('kcll', 0.00075873985216859396) +zone = ('txz196', 0.00097488914780529486) + +[77845] +centroid = (0.53339679221960723, -1.6802735527495201) +station = ('kcll', 0.0014647790821876892) +zone = ('txz196', 0.0017966888810225234) + +[77853] +centroid = (0.52979160521010271, -1.690179605251527) +station = ('krwv', 0.0034709693540565666) +zone = ('txz194', 0.0020419528924049382) + +[77855] +centroid = (0.54336361708616854, -1.6779454057004073) +station = ('klhb', 0.0085400682854742758) +zone = ('txz162', 0.00357577772582088) + +[77856] +centroid = (0.5423750276912539, -1.6829474495234529) +station = ('klhb', 0.0046189390027525272) +zone = ('txz175', 0.0015550525139934864) + +[77857] +centroid = (0.53730390373641423, -1.6878390838180175) +station = ('klhb', 0.0019630785806686053) +zone = ('txz174', 0.0040610477049547265) + +[77859] +centroid = (0.53881654569253268, -1.6847128151552602) +station = ('klhb', 0.0014274687357855081) +zone = ('txz175', 0.0027150166406643612) + +[77861] +centroid = (0.53627138440422695, -1.6771990680056694) +station = ('kcll', 0.0047613539705409222) +zone = ('txz196', 0.0032913856079253788) + +[77864] +centroid = (0.5402434919823782, -1.6738640230577886) +station = ('kuts', 0.0059929605757187421) +zone = ('txz176', 0.0004030077946319904) + +[77865] +centroid = (0.54516898566443139, -1.6795177728235291) +station = ('klhb', 0.0086560188252971584) +zone = ('txz162', 0.0036417232014515442) + +[77867] +centroid = (0.53656664175378677, -1.6850880958510239) +station = ('klhb', 0.0025032192186817959) +zone = ('txz196', 0.0039607081534271628) + +[77868] +centroid = (0.53004417180615881, -1.6764719289327037) +station = ('k11r', 0.0054826492130862674) +zone = ('txz198', 0.0032157500045450521) + +[77871] +centroid = (0.5421720808058319, -1.6777311839880173) +station = ('klhb', 0.0081383703085986855) +zone = ('txz176', 0.0034317933477828514) + +[77872] +centroid = (0.5388179943158119, -1.6780747171446875) +station = ('kcll', 0.0060235954503213701) +zone = ('txz176', 0.0036528030774330622) + +[77873] +centroid = (0.53353065897323515, -1.6721601453755293) +station = ('kuts', 0.0046176248721684458) +zone = ('txz198', 0.0027086514283567991) + +[77876] +centroid = (0.53405734698160956, -1.6733292541749774) +station = ('kuts', 0.0051043659172618642) +zone = ('txz198', 0.0019273923041523827) + +[77878] +centroid = (0.53182452981624062, -1.6831626137136388) +station = ('kcll', 0.0022309432922069787) +zone = ('txz195', 0.0027753399651339371) + +[77879] +centroid = (0.53055586743625849, -1.6842052385021951) +station = ('k11r', 0.0036486278010205895) +zone = ('txz195', 0.0024724410525755417) + +[77880] +centroid = (0.52860675354080133, -1.6788211246525953) +station = ('k11r', 0.0030286997133152594) +zone = ('txz197', 0.0034685565441093854) + +[77901] +centroid = (0.50274116601246299, -1.6927025310451622) +station = ('kvct', 0.0013332027725504961) +zone = ('txz234', 0.0002523859764579265) + +[77904] +centroid = (0.50506777717183404, -1.6933245489372803) +station = ('kvct', 0.0018244807798661836) +zone = ('txz234', 0.0025863640905423313) + +[77905] +centroid = (0.50146044340734963, -1.6937199009194424) +station = ('kvct', 0.0028936658051982086) +zone = ('txz234', 0.0015749612692022013) + +[77950] +centroid = (0.49377366431571618, -1.691207621634244) +station = ('krkp', 0.0043066264018741373) +zone = ('txz245', 0.003094078133422864) + +[77951] +centroid = (0.49976434989355406, -1.6912423536863588) +station = ('kpkv', 0.0033859931673641507) +zone = ('txz234', 0.0030257513160777188) + +[77954] +centroid = (0.50783906331802831, -1.6978984111349344) +station = ('kvct', 0.0066761382730414157) +zone = ('txz224', 0.0011640912402029753) + +[77957] +centroid = (0.50688576448058897, -1.6875538795649492) +station = ('kvct', 0.0048218989881063656) +zone = ('txz235', 0.0022720992303745051) + +[77960] +centroid = (0.50050335720543349, -1.696437029498947) +station = ('kvct', 0.00524104367594361) +zone = ('txz233', 0.0035040454875069722) + +[77961] +centroid = (0.50366502114542122, -1.6816922436320036) +station = ('kpsx', 0.0029323557655455885) +zone = ('txz235', 0.0038360202052327872) + +[77962] +centroid = (0.50651083285067555, -1.6840648791237498) +station = ('kpsx', 0.0064525566967567989) +zone = ('txz235', 0.0017714004753179656) + +[77963] +centroid = (0.50007971343609692, -1.7000514842067798) +station = ('kbea', 0.007796245605695056) +zone = ('txz233', 0.00032611489336973216) + +[77964] +centroid = (0.51277836255446474, -1.6901103331335152) +station = ('kvct', 0.0090815783247021817) +zone = ('txz225', 0.0014316750583379151) + +[77968] +centroid = (0.50448895617870271, -1.6899858213446779) +station = ('kvct', 0.0017289062206351357) +zone = ('txz234', 0.0028867897673377891) + +[77969] +centroid = (0.50222135460134165, -1.6870165974080151) +station = ('kpkv', 0.0021437057244613482) +zone = ('txz235', 0.0033811715830252822) + +[77970] +centroid = (0.50346868905786435, -1.6830001759201558) +station = ('kpsx', 0.0035534076835351098) +zone = ('txz235', 0.0029781225600028502) + +[77971] +centroid = (0.50323535599016533, -1.684619928732469) +station = ('kpkv', 0.0039696749580009835) +zone = ('txz235', 0.0023081396994184232) + +[77973] +centroid = (0.49818086502309716, -1.6924647997477482) +station = ('kpkv', 0.0048421806913707668) +zone = ('txz234', 0.0044111302526157045) + +[77974] +centroid = (0.50425312729017324, -1.6983850961968532) +station = ('kvct', 0.0057774578403884695) +zone = ('txz224', 0.0034002126737385876) + +[77975] +centroid = (0.51600484802287161, -1.6944323966799839) +station = ('k3t5', 0.0063232641937675926) +zone = ('txz225', 0.0039222650614764874) + +[77976] +centroid = (0.50534463875107805, -1.6951101080285331) +station = ('kvct', 0.0032704741768260167) +zone = ('txz234', 0.0035945726352582101) + +[77977] +centroid = (0.50083203761016903, -1.6893767363423169) +station = ('kpkv', 0.0018776415096828274) +zone = ('txz234', 0.0032332119694415771) + +[77978] +centroid = (0.50033547398468414, -1.6854817723171038) +station = ('kpkv', 0.0017021746805616692) +zone = ('txz247', 0.0033024733972941071) + +[77979] +centroid = (0.4993337771670871, -1.6861515598708492) +station = ('kpkv', 0.0013424642941781537) +zone = ('txz247', 0.0021631108256797891) + +[77982] +centroid = (0.49645269235764994, -1.6840994017363542) +station = ('kpkv', 0.0046649595479367513) +zone = ('txz247', 0.0025508871235100602) + +[77983] +centroid = (0.49619057881058543, -1.6855372912406097) +station = ('kpkv', 0.0042436591908005094) +zone = ('txz247', 0.0015746761716703829) + +[77984] +centroid = (0.51405756672312897, -1.6963180504038387) +station = ('k3t5', 0.0087428835763747256) +zone = ('txz225', 0.0041564606443320008) + +[77987] +centroid = (0.51212449240349756, -1.6942897334669258) +station = ('kvct', 0.0085849630454609034) +zone = ('txz225', 0.0023292431443346466) + +[77988] +centroid = (0.50333637564727074, -1.6910429323660259) +station = ('kvct', 0.00082389177394808638) +zone = ('txz234', 0.0014553030530900001) + +[77990] +centroid = (0.49712183413957206, -1.6917263858478142) +station = ('kpkv', 0.0048280361190354984) +zone = ('txz247', 0.0042864544669133997) + +[77991] +centroid = (0.50263147206897518, -1.6862420900991499) +station = ('kpkv', 0.0027243743781332815) +zone = ('txz235', 0.0027950718458804738) + +[77993] +centroid = (0.50366247296471334, -1.7004491923834315) +station = ('kvct', 0.0075713184935633972) +zone = ('txz233', 0.0035018801379942226) + +[77994] +centroid = (0.50925555508565434, -1.7011871350444674) +station = ('kvct', 0.0098415753080452195) +zone = ('txz224', 0.0024157449512138469) + +[77995] +centroid = (0.50967694738025582, -1.6943016366124246) +station = ('kvct', 0.0062517707436312653) +zone = ('txz225', 0.0038773319224013627) + +[78001] +centroid = (0.49380902468636162, -1.731616968006281) +station = ('kcot', 0.0027373799041083276) +zone = ('txz229', 0.0019809234142977796) + +[78002] +centroid = (0.51108537572673773, -1.7232904035707441) +station = ('kcvb', 0.0019829181706282773) +zone = ('txz205', 0.00439683165381634) + +[78003] +centroid = (0.51848883552089498, -1.7295370067768017) +station = ('kerv', 0.004531708912029463) +zone = ('txz187', 0.0023944830439700431) + +[78004] +centroid = (0.52191037898650461, -1.7201344817639952) +station = ('k5c1', 0.0037843120311819834) +zone = ('txz189', 0.0024558534874996813) + +[78005] +centroid = (0.50512858444297359, -1.7252806199700856) +station = ('kpez', 0.0050619617206968601) +zone = ('txz219', 0.0041333401592848172) + +[78006] +centroid = (0.52114164871746371, -1.722749491128966) +station = ('k5c1', 0.0024422682366504007) +zone = ('txz189', 0.0014941335469150769) + +[78007] +centroid = (0.49738393023334404, -1.7168587780106823) +station = ('knog', 0.0046410876882722893) +zone = ('txz230', 0.0040074019497712528) + +[78008] +centroid = (0.50127852773941428, -1.7153315101954321) +station = ('knog', 0.0052952562755446677) +zone = ('txz220', 0.0047943696961705758) + +[78009] +centroid = (0.51238068928439784, -1.7258977160337134) +station = ('kcvb', 0.00063373218052921953) +zone = ('txz204', 0.0033991646043255324) + +[78010] +centroid = (0.52188882417024252, -1.7285337915227554) +station = ('kerv', 0.001322629002524531) +zone = ('txz187', 0.0041568451115348041) + +[78011] +centroid = (0.50249626141182324, -1.7229477430786999) +station = ('kpez', 0.0041028785179811336) +zone = ('txz220', 0.0033833952124824609) + +[78012] +centroid = (0.50203586100843967, -1.7189042689874348) +station = ('kpez', 0.003278512299553801) +zone = ('txz220', 0.002293456241469656) + +[78013] +centroid = (0.52311552883500667, -1.7262127654169908) +station = ('kerv', 0.0027025773051404293) +zone = ('txz189', 0.0029595163769779607) + +[78014] +centroid = (0.49524211453517414, -1.7302419278083898) +station = ('kcot', 0.0018029829662089723) +zone = ('txz229', 0.00076213097358259147) + +[78015] +centroid = (0.51919501318954431, -1.7217720194813866) +station = ('k5c1', 0.00077200712121253535) +zone = ('txz189', 0.0035617312643540342) + +[78016] +centroid = (0.50914011900892742, -1.7273078198962772) +station = ('kcvb', 0.0034407690954274682) +zone = ('txz204', 0.0038786827235457529) + +[78017] +centroid = (0.50096876670377033, -1.7312128195646892) +station = ('kcot', 0.0044398021114162856) +zone = ('txz219', 0.0031370327733644854) + +[78019] +centroid = (0.48941971360381359, -1.7348431916753) +station = ('kcot', 0.0076591089633723632) +zone = ('txz239', 0.0050068659685165761) + +[78021] +centroid = (0.49735659837725782, -1.7247404231133008) +station = ('kcot', 0.0061341612485446501) +zone = ('txz230', 0.0046556498749890192) + +[78022] +centroid = (0.49318597704998468, -1.7129193779027134) +station = ('knog', 0.0041128037344199718) +zone = ('txz231', 0.0016631179865777479) + +[78023] +centroid = (0.51679049053236426, -1.723456157489806) +station = ('k5c1', 0.0021054054934238967) +zone = ('txz205', 0.0044437670975457045) + +[78024] +centroid = (0.52406856587305817, -1.7367418655553746) +station = ('kerv', 0.0065042879563205445) +zone = ('txz186', 0.0024604593451727258) + +[78025] +centroid = (0.52502717051142356, -1.7328149096449725) +station = ('kerv', 0.0036252835749409412) +zone = ('txz186', 0.0010741353046953522) + +[78026] +centroid = (0.50302164042325859, -1.72107050184184) +station = ('kpez', 0.0026386806009506712) +zone = ('txz220', 0.0017484502099679234) + +[78027] +centroid = (0.52305901507382713, -1.7198336393608291) +station = ('k5c1', 0.0049100734583132025) +zone = ('txz189', 0.0026413029768942381) + +[78028] +centroid = (0.52423932888707336, -1.7307215268335452) +station = ('kerv', 0.0017162355770166007) +zone = ('txz186', 0.0028589785005855768) + +[78029] +centroid = (0.52637622275675255, -1.7338975373799843) +station = ('kerv', 0.0051873458556803273) +zone = ('txz186', 0.0017058009794472606) + +[78039] +centroid = (0.51159349343187088, -1.7249927104566767) +station = ('kcvb', 0.00053831594747661782) +zone = ('txz204', 0.0042571839849744495) + +[78040] +centroid = (0.4802065917214336, -1.7366400081402282) +station = ('klrd', 0.00081754083715016783) +zone = ('txz239', 0.0050577882070333147) + +[78041] +centroid = (0.48075799359201615, -1.7359391886323823) +station = ('klrd', 3.2640781864219282e-05) +zone = ('txz239', 0.0042703121090955148) + +[78043] +centroid = (0.48096018998585971, -1.7325387985573069) +station = ('klrd', 0.0030145725124185482) +zone = ('txz239', 0.0036990638923483712) + +[78044] +centroid = (0.48435935833045884, -1.7300765578617634) +station = ('klrd', 0.006330039669662192) +zone = ('txz239', 0.0031783811538203212) + +[78045] +centroid = (0.48578637443347439, -1.7398398773375419) +station = ('klrd', 0.0061314399070221707) +zone = ('txz239', 0.0056079190000740999) + +[78046] +centroid = (0.47775845328624617, -1.7339950140187081) +station = ('klrd', 0.0034285077724915455) +zone = ('txz239', 0.0067705276491386449) + +[78050] +centroid = (0.50737676050576008, -1.7188318378234768) +station = ('kpez', 0.0021831991433376515) +zone = ('txz220', 0.0032168337908555114) + +[78052] +centroid = (0.50970035224552512, -1.7239785345349279) +station = ('kcvb', 0.0026280070298154937) +zone = ('txz204', 0.0057272664586194653) + +[78055] +centroid = (0.52063742309656258, -1.7336602075082981) +station = ('kerv', 0.0044442679884747812) +zone = ('txz187', 0.0019408770114710788) + +[78056] +centroid = (0.51551847712021825, -1.7267230647836889) +station = ('kcvb', 0.0036679496704008774) +zone = ('txz204', 0.0041454058514302288) + +[78057] +centroid = (0.50679610691691401, -1.7278952104560357) +station = ('kcvb', 0.0057633482336529682) +zone = ('txz219', 0.0033807685112487054) + +[78058] +centroid = (0.52525884551633328, -1.7388403098216323) +station = ('kjct', 0.0076475350862279584) +zone = ('txz186', 0.0042411002608064331) + +[78059] +centroid = (0.50963265092384025, -1.7251212190495009) +station = ('kcvb', 0.0024498574869307285) +zone = ('txz204', 0.0049032420237631828) + +[78060] +centroid = (0.49649033910961549, -1.7122910942785803) +station = ('knog', 0.00088911486487464704) +zone = ('txz231', 0.0016872073596315141) + +[78061] +centroid = (0.50424054346626634, -1.7303513424991974) +station = ('kcot', 0.0077792479681300965) +zone = ('txz219', 0.00065152492947246417) + +[78063] +centroid = (0.51818287930302032, -1.7263263863512954) +station = ('k5c1', 0.0033950407243265907) +zone = ('txz187', 0.0051773224251181627) + +[78064] +centroid = (0.50502461517943231, -1.7179100596323285) +station = ('kpez', 0.0014119293286086255) +zone = ('txz220', 0.001703596999734024) + +[78065] +centroid = (0.50753911103278049, -1.7216330738196353) +station = ('kpez', 0.0029361425770046065) +zone = ('txz220', 0.0037348845349573193) + +[78066] +centroid = (0.51489054256193578, -1.7253189474004593) +station = ('kcvb', 0.0028114418534775638) +zone = ('txz204', 0.0046531468981650835) + +[78067] +centroid = (0.4734769860981789, -1.7336500322387591) +station = ('kapy', 0.0030340645759515008) +zone = ('txz248', 0.0033621618401552134) + +[78069] +centroid = (0.50939584465092969, -1.7223057935265238) +station = ('kcvb', 0.0037195936889074712) +zone = ('txz205', 0.0052007951621180579) + +[78070] +centroid = (0.52176199109350008, -1.7172463283710877) +station = ('k5c1', 0.0054600165845779614) +zone = ('txz206', 0.0022795383393135172) + +[78071] +centroid = (0.49690014241798375, -1.7143739353013256) +station = ('knog', 0.0024609964636462573) +zone = ('txz231', 0.002595618798688696) + +[78072] +centroid = (0.49410876753209909, -1.7204266498807792) +station = ('knog', 0.0083422058116388968) +zone = ('txz230', 0.0006819850284463274) + +[78073] +centroid = (0.5104026029233576, -1.7212863292571416) +station = ('kskf', 0.0025050395813753555) +zone = ('txz205', 0.0039061927525781081) + +[78075] +centroid = (0.49956009401119317, -1.7168691801730243) +station = ('knog', 0.0052391615883560652) +zone = ('txz220', 0.0052693320297705236) + +[78076] +centroid = (0.47003338167082398, -1.7307167446313947) +station = ('kapy', 0.0015188718315564149) +zone = ('txz248', 0.001222852317638197) + +[78101] +centroid = (0.51231614700865913, -1.7145819261882858) +station = ('krnd', 0.003211518876150221) +zone = ('txz221', 0.0038916931347555187) + +[78102] +centroid = (0.49580810735830338, -1.7053720331650219) +station = ('kbea', 0.0014761874950083721) +zone = ('txz232', 0.00049895577722238219) + +[78104] +centroid = (0.49781225148507596, -1.7062680502964107) +station = ('kbea', 0.0028693323214176274) +zone = ('txz232', 0.0018624885397870447) + +[78107] +centroid = (0.49861051272506057, -1.7030789672338742) +station = ('kbea', 0.0048653754128186915) +zone = ('txz233', 0.0028083798406028054) + +[78108] +centroid = (0.51618119609049307, -1.7142720255263015) +station = ('krnd', 0.0011989543464272405) +zone = ('txz206', 0.004162830871219424) + +[78109] +centroid = (0.51465874538397838, -1.7155098479384008) +station = ('krnd', 0.00080471669927382539) +zone = ('txz205', 0.0035360238246151801) + +[78112] +centroid = (0.50988771334072669, -1.7168953077519267) +station = ('kssf', 0.002536841561263996) +zone = ('txz205', 0.0046819453344647639) + +[78113] +centroid = (0.50382477113185631, -1.7146188748085505) +station = ('kpez', 0.0045102536135492831) +zone = ('txz220', 0.0044128111598228719) + +[78114] +centroid = (0.50814768988965842, -1.714064488424947) +station = ('kssf', 0.005477450260476675) +zone = ('txz221', 0.002129828886444092) + +[78116] +centroid = (0.50807984894163338, -1.7062223924831785) +station = ('krnd', 0.010860733232979293) +zone = ('txz222', 0.0038923565282231562) + +[78117] +centroid = (0.50506927815499081, -1.7090887467137286) +station = ('knog', 0.0082378768688501844) +zone = ('txz222', 0.0011338095277692458) + +[78118] +centroid = (0.50266602958816475, -1.7115211248257707) +station = ('knog', 0.0055383756353721463) +zone = ('txz222', 0.0036114934713325315) + +[78119] +centroid = (0.50149262727875643, -1.7085893382015631) +station = ('knog', 0.0050963286847117619) +zone = ('txz222', 0.0030557750384924047) + +[78121] +centroid = (0.51226099460429608, -1.7122906928528523) +station = ('krnd', 0.0041683783680467046) +zone = ('txz221', 0.0030925776213012119) + +[78122] +centroid = (0.51363149694613208, -1.7058121004826197) +station = ('kbaz', 0.0069256654654172925) +zone = ('txz207', 0.004203173797434779) + +[78123] +centroid = (0.51662536493183309, -1.7112530247993718) +station = ('kbaz', 0.0020286442759433979) +zone = ('txz207', 0.0015353416363684061) + +[78124] +centroid = (0.51587160958777423, -1.7129863112795272) +station = ('krnd', 0.0021134735044226229) +zone = ('txz207', 0.0030465738776332151) + +[78125] +centroid = (0.49813267648244963, -1.7096721928293781) +station = ('knog', 0.001959137449931243) +zone = ('txz232', 0.0039505171509794318) + +[78130] +centroid = (0.5183082986630686, -1.7116570685212082) +station = ('kbaz', 0.00046690896941064343) +zone = ('txz207', 0.0027178587862700583) + +[78132] +centroid = (0.51938944286821653, -1.7137468559543763) +station = ('kbaz', 0.0022522412869146469) +zone = ('txz206', 0.0015839946046829535) + +[78133] +centroid = (0.52166294365844934, -1.7146921611838415) +station = ('kbaz', 0.0042123420548138158) +zone = ('txz206', 0.0015004218000209291) + +[78140] +centroid = (0.51197062417664174, -1.7063299047651013) +station = ('kbaz', 0.0079580599303680187) +zone = ('txz223', 0.0046731109934223178) + +[78141] +centroid = (0.50464690847600824, -1.7040107287083437) +station = ('kbea', 0.0099674546155156807) +zone = ('txz222', 0.0034678900059570308) + +[78142] +centroid = (0.49805818582997452, -1.7071155298213014) +station = ('kbea', 0.0030988429528806555) +zone = ('txz232', 0.0023369525778200351) + +[78143] +centroid = (0.51066002153473422, -1.7078258962801556) +station = ('krnd', 0.0081336986687380684) +zone = ('txz221', 0.0038774697434737805) + +[78144] +centroid = (0.50531186146772555, -1.7084532548797853) +station = ('knog', 0.0086328245330012168) +zone = ('txz222', 0.00091626224387238186) + +[78145] +centroid = (0.49995277563959939, -1.7103201288608882) +station = ('knog', 0.0030358120603419694) +zone = ('txz222', 0.0049921715800021861) + +[78146] +centroid = (0.49921900431547589, -1.7076047456106354) +station = ('knog', 0.0040749697841774056) +zone = ('txz232', 0.0035690677756598098) + +[78147] +centroid = (0.50742735760077529, -1.7118260163928014) +station = ('kssf', 0.0074298713606126129) +zone = ('txz221', 0.0017592802403511903) + +[78148] +centroid = (0.51563681044350351, -1.7155776016199633) +station = ('krnd', 0.00025842379331204331) +zone = ('txz205', 0.0037905124873892793) + +[78150] +centroid = (0.51532537389177757, -1.7152659381754347) +station = ('krnd', 0.00015611072942601879) +zone = ('txz205', 0.0039194305048966521) + +[78151] +centroid = (0.50378024778263786, -1.7052787104099176) +station = ('knog', 0.0086531990068942164) +zone = ('txz222', 0.0024627695646308096) + +[78152] +centroid = (0.51376541605963755, -1.7140026165029638) +station = ('krnd', 0.002064740802993595) +zone = ('txz207', 0.0046629454187268604) + +[78154] +centroid = (0.51569362091065585, -1.7150066346084658) +station = ('krnd', 0.00039519321145842175) +zone = ('txz205', 0.0042656597854831991) + +[78155] +centroid = (0.51561860665940518, -1.7093244708825031) +station = ('kbaz', 0.0034851855567367019) +zone = ('txz207', 0.00072457291463563995) + +[78159] +centroid = (0.51019070249887288, -1.7032785456338395) +station = ('kbaz', 0.010969546554442844) +zone = ('txz223', 0.0042002240050999203) + +[78160] +centroid = (0.51036560194321523, -1.7090708570888957) +station = ('krnd', 0.0074828966038512027) +zone = ('txz221', 0.0027644184157582952) + +[78161] +centroid = (0.51126800697966646, -1.71141778388076) +station = ('krnd', 0.0054185781949528484) +zone = ('txz221', 0.0021320600249489529) + +[78162] +centroid = (0.49898896992006303, -1.7064694438387984) +station = ('kbea', 0.0040215719330120199) +zone = ('txz232', 0.0030522405608327842) + +[78163] +centroid = (0.51957519826050624, -1.7183329354567942) +station = ('ksat', 0.0041263324041624916) +zone = ('txz206', 0.0027359502705419226) + +[78164] +centroid = (0.50584109765680774, -1.7020578972615799) +station = ('kvct', 0.0091983414488848239) +zone = ('txz224', 0.003045743646367666) + +[78201] +centroid = (0.5143208321874998, -1.7196535213820234) +station = ('ksat', 0.0014755438510432772) +zone = ('txz205', 0.00036370372998027338) + +[78202] +centroid = (0.51361844188332717, -1.718466557864327) +station = ('kssf', 0.001657531798096201) +zone = ('txz205', 0.00096860659775640406) + +[78203] +centroid = (0.51339034480338397, -1.7184358749760771) +station = ('kssf', 0.0014317022953569468) +zone = ('txz205', 0.0010980196730540246) + +[78204] +centroid = (0.51320366438659071, -1.7192370683692049) +station = ('kskf', 0.0012462428407592568) +zone = ('txz205', 0.0008121915325297991) + +[78205] +centroid = (0.51354471917572297, -1.7189122975019937) +station = ('kssf', 0.001609753896463273) +zone = ('txz205', 0.00067211011989030457) + +[78207] +centroid = (0.51351782365194965, -1.7196021039822595) +station = ('kskf', 0.0011074661893682755) +zone = ('txz205', 0.00047490099709387919) + +[78208] +centroid = (0.51382371005665428, -1.7184288063926063) +station = ('ksat', 0.0016346624010442083) +zone = ('txz205', 0.00094357083287719779) + +[78209] +centroid = (0.51467850251111091, -1.7183854698672794) +station = ('ksat', 0.0007914260504431976) +zone = ('txz205', 0.0011910253767777154) + +[78210] +centroid = (0.51305307737872863, -1.718527993453997) +station = ('kssf', 0.0010903748822145593) +zone = ('txz205', 0.0012561865506192592) + +[78211] +centroid = (0.51212384663167443, -1.7203719512620217) +station = ('kskf', 0.00074016918580412181) +zone = ('txz205', 0.0020101877276020369) + +[78212] +centroid = (0.51425447476933894, -1.7190385371667904) +station = ('ksat', 0.0012675516188420848) +zone = ('txz205', 0.00048206936424015931) + +[78213] +centroid = (0.51515838078894682, -1.7195512625411491) +station = ('ksat', 0.0009055597303589438) +zone = ('txz205', 0.0011755862680861567) + +[78214] +centroid = (0.51181406814273789, -1.7186263951172245) +station = ('kssf', 0.00015775780411564296) +zone = ('txz205', 0.0022983707935176029) + +[78215] +centroid = (0.51384639933693022, -1.7188092358096634) +station = ('ksat', 0.0016212159144219393) +zone = ('txz205', 0.00061416142605155992) + +[78216] +centroid = (0.51552250883079043, -1.7189378142156579) +station = ('ksat', 0.00032938408748183493) +zone = ('txz205', 0.001613798998500673) + +[78217] +centroid = (0.51553664599773152, -1.7176692391021384) +station = ('ksat', 0.00078593016285213933) +zone = ('txz205', 0.0022229308196920088) + +[78218] +centroid = (0.51472604527993526, -1.7173538406530104) +station = ('ksat', 0.0012827218597636449) +zone = ('txz205', 0.0020077904382270312) + +[78219] +centroid = (0.51394099618238831, -1.7171833917982606) +station = ('ksat', 0.001934032068879807) +zone = ('txz205', 0.0020148324513922025) + +[78220] +centroid = (0.51344359479886237, -1.7173047445411518) +station = ('kssf', 0.0018445493424996454) +zone = ('txz205', 0.00198392281976714) + +[78221] +centroid = (0.51100238532080533, -1.7187837016427068) +station = ('kssf', 0.00097917715147385637) +zone = ('txz205', 0.0030454286865430539) + +[78222] +centroid = (0.51234035472538419, -1.7169133544563921) +station = ('kssf', 0.0014904341005223698) +zone = ('txz205', 0.0027867032569185079) + +[78223] +centroid = (0.5115893744548361, -1.7172453509867065) +station = ('kssf', 0.0012118940689653422) +zone = ('txz205', 0.0030953878114134991) + +[78224] +centroid = (0.51147688798454505, -1.7196927389303156) +station = ('kssf', 0.0010950064415415576) +zone = ('txz205', 0.0025126865267518024) + +[78225] +centroid = (0.51291711622999836, -1.7196034304324912) +station = ('kskf', 0.00087539333005919246) +zone = ('txz205', 0.0010706894003950571) + +[78226] +centroid = (0.51284367277507437, -1.7203699964932595) +station = ('kskf', 0.00020383371908592215) +zone = ('txz205', 0.0013706024780098314) + +[78227] +centroid = (0.51324241069598497, -1.7214235295896407) +station = ('kskf', 0.00082181062256608622) +zone = ('txz205', 0.001834723651480321) + +[78228] +centroid = (0.51418527246449741, -1.7203933664519437) +station = ('kskf', 0.0013617472913739386) +zone = ('txz205', 0.00080640848723669142) + +[78229] +centroid = (0.51490193956195129, -1.7203614618332173) +station = ('ksat', 0.0016557915043053763) +zone = ('txz205', 0.0011873938507354891) + +[78230] +centroid = (0.51566257150326289, -1.7201365412525125) +station = ('ksat', 0.0013809179230419642) +zone = ('txz205', 0.0017687922856651171) + +[78231] +centroid = (0.51624292838613606, -1.7198806759841703) +station = ('ksat', 0.0013882827237795606) +zone = ('txz205', 0.0022837581310464015) + +[78232] +centroid = (0.51641915428070995, -1.7187057377850203) +station = ('ksat', 0.00097270525896284805) +zone = ('txz205', 0.0025307755029445392) + +[78233] +centroid = (0.51585017694455981, -1.7167107915434057) +station = ('krnd', 0.001233764078392958) +zone = ('txz205', 0.0030597816843759588) + +[78234] +centroid = (0.51418441725316388, -1.7180768782022342) +station = ('ksat', 0.0013393959491679029) +zone = ('txz205', 0.0012524220517141648) + +[78235] +centroid = (0.5121711625076959, -1.7181697297184402) +station = ('kssf', 0.00040433443367464503) +zone = ('txz205', 0.0021498713860478463) + +[78236] +centroid = (0.51297465973543654, -1.7212216124484776) +station = ('kskf', 0.00055594580598417986) +zone = ('txz205', 0.0018099345175069219) + +[78237] +centroid = (0.5134956405171569, -1.7203874148791942) +station = ('kskf', 0.00068612259568866284) +zone = ('txz205', 0.00091657607392524266) + +[78238] +centroid = (0.51437408218297809, -1.7212045256751005) +station = ('kskf', 0.0016247362985996128) +zone = ('txz205', 0.0015374295581236886) + +[78239] +centroid = (0.5151974063510214, -1.7167575314607741) +station = ('krnd', 0.0012361830047485575) +zone = ('txz205', 0.0026754770352223484) + +[78240] +centroid = (0.51530881071717627, -1.72100920587851) +station = ('ksat', 0.0021294568504404594) +zone = ('txz205', 0.0018679718318169584) + +[78242] +centroid = (0.51226111677734376, -1.7210177579918446) +station = ('kskf', 0.00067865188246370156) +zone = ('txz205', 0.002173411155082744) + +[78243] +centroid = (0.51262826423879326, -1.720779642721995) +station = ('kskf', 0.000258087962893825) +zone = ('txz205', 0.0017568518587425931) + +[78244] +centroid = (0.51442090936680906, -1.7164978613746624) +station = ('krnd', 0.0014263409026301094) +zone = ('txz205', 0.0026473296963737177) + +[78245] +centroid = (0.51314231606338312, -1.7231753340131599) +station = ('kcvb', 0.0021031839742180116) +zone = ('txz205', 0.0033127892384209653) + +[78247] +centroid = (0.51637070394067452, -1.7175228583377737) +station = ('ksat', 0.001290839205566294) +zone = ('txz205', 0.0029406852038545649) + +[78248] +centroid = (0.51644341435731267, -1.7195902182900533) +station = ('ksat', 0.0013305763687269886) +zone = ('txz205', 0.0024610053602781997) + +[78249] +centroid = (0.51601130574110399, -1.7212299376690097) +station = ('ksat', 0.0023822351675511768) +zone = ('txz205', 0.0025271479862212678) + +[78250] +centroid = (0.51493239555739856, -1.7220227534817281) +station = ('kskf', 0.0024335685680923571) +zone = ('txz205', 0.0023950198976140755) + +[78251] +centroid = (0.51420900894232446, -1.7222347935325526) +station = ('kskf', 0.0019757757057276412) +zone = ('txz205', 0.0023948348972902553) + +[78252] +centroid = (0.51210293758723546, -1.7227381988487056) +station = ('kskf', 0.0019994413970205738) +zone = ('txz205', 0.0033931908831836438) + +[78253] +centroid = (0.51432767387816758, -1.7243453329305269) +station = ('kcvb', 0.0023845231407753679) +zone = ('txz205', 0.0042357863141301213) + +[78254] +centroid = (0.51553154963631576, -1.7232465085400563) +station = ('k5c1', 0.0032519678290018257) +zone = ('txz205', 0.0036123310365906562) + +[78255] +centroid = (0.51753113845374055, -1.7218757443988324) +station = ('k5c1', 0.00128706536853716) +zone = ('txz205', 0.0041069812181788153) + +[78256] +centroid = (0.51704899124787718, -1.7213143592449285) +station = ('k5c1', 0.0019404610162373091) +zone = ('txz205', 0.0034491696914811416) + +[78257] +centroid = (0.51767312098839036, -1.720605860288374) +station = ('k5c1', 0.0019205803138834254) +zone = ('txz205', 0.0038134546288377167) + +[78258] +centroid = (0.51721256350537403, -1.7191043884394683) +station = ('ksat', 0.0018195713833244107) +zone = ('txz205', 0.0032467901395568204) + +[78259] +centroid = (0.51709243249295922, -1.7178764096843502) +station = ('ksat', 0.0017452878350656493) +zone = ('txz205', 0.0034133481217434453) + +[78260] +centroid = (0.51831833430626761, -1.71891767311609) +station = ('ksat', 0.0028805567660598612) +zone = ('txz206', 0.0037040420203788452) + +[78261] +centroid = (0.5181972259094717, -1.7174356093284666) +station = ('ksat', 0.0029144870988323814) +zone = ('txz206', 0.002779826338330669) + +[78263] +centroid = (0.51251178096451511, -1.71574525794791) +station = ('kssf', 0.0025204527180716987) +zone = ('txz205', 0.0035842307859289485) + +[78264] +centroid = (0.50963724113977293, -1.7190219216323115) +station = ('kssf', 0.00235953909771244) +zone = ('txz205', 0.0043661763402285817) + +[78266] +centroid = (0.51759833362994234, -1.716341427513806) +station = ('krnd', 0.0023055075287558512) +zone = ('txz206', 0.002808972453400282) + +[78330] +centroid = (0.48420016684938438, -1.7089504991836781) +station = ('kali', 0.0015688608217693035) +zone = ('txz241', 0.002704025040878009) + +[78332] +centroid = (0.48390995350136279, -1.7127868725059019) +station = ('kali', 0.0018396628238925379) +zone = ('txz241', 0.00070463518596529644) + +[78335] +centroid = (0.48647611110057004, -1.6945784981916683) +station = ('kras', 0.001072385374497407) +zone = ('txz245', 0.0048219965468322534) + +[78336] +centroid = (0.48741658176800717, -1.696072150965525) +station = ('ktfp', 0.00036334032667249605) +zone = ('txz245', 0.004595695090688608) + +[78338] +centroid = (0.46968579935028931, -1.7064742784008262) +station = ('kbks', 0.00746803921923264) +zone = ('txz251', 0.00093935437900204881) + +[78339] +centroid = (0.48528982826128203, -1.7067964487274518) +station = ('krbo', 0.0016418452113472432) +zone = ('txz243', 0.0029176183028700254) + +[78340] +centroid = (0.49079882041886197, -1.6964057531987513) +station = ('krkp', 0.0023536428724705342) +zone = ('txz246', 0.0033939682313306372) + +[78341] +centroid = (0.48231159842567889, -1.7190915777227587) +station = ('knqi', 0.0041458553601856629) +zone = ('txz240', 0.00083971023223655726) + +[78342] +centroid = (0.48275667483822993, -1.7117442302640531) +station = ('kali', 0.0015730688006826339) +zone = ('txz241', 0.0012605996498639817) + +[78343] +centroid = (0.48209692292768358, -1.7060843020327607) +station = ('krbo', 0.002885576249084284) +zone = ('txz243', 0.0026135124784659142) + +[78344] +centroid = (0.47961715912645009, -1.7255153143946014) +station = ('khbv', 0.0032713922098809851) +zone = ('txz240', 0.0065301239604080618) + +[78349] +centroid = (0.47775744099528, -1.7154050932766962) +station = ('kbks', 0.0038699065045876288) +zone = ('txz250', 0.0060563709966602987) + +[78351] +centroid = (0.48298765171143887, -1.7062286582151933) +station = ('krbo', 0.0021260864389224571) +zone = ('txz243', 0.0022295328017379237) + +[78352] +centroid = (0.48804509228494286, -1.7048206312944394) +station = ('krbo', 0.0032263879149853673) +zone = ('txz244', 0.0025998247307268798) + +[78353] +centroid = (0.46915352628830859, -1.7141962956900574) +station = ('kbks', 0.0058812224448696855) +zone = ('txz250', 0.0026371796251600096) + +[78355] +centroid = (0.47462612833098444, -1.7140406472273646) +station = ('kbks', 0.0013557820345362879) +zone = ('txz250', 0.0028412361627681614) + +[78357] +centroid = (0.48582841941515492, -1.7214002643507116) +station = ('knqi', 0.0043058384044794571) +zone = ('txz240', 0.003274351810998331) + +[78358] +centroid = (0.48987850830428536, -1.6937063222578619) +station = ('krkp', 0.00029364834194313156) +zone = ('txz245', 0.0013810454004060801) + +[78359] +centroid = (0.4873625812809505, -1.6979790627996691) +station = ('ktfp', 0.0013438484720764809) +zone = ('txz244', 0.0038730388473596617) + +[78361] +centroid = (0.47299204636551223, -1.7242101746332525) +station = ('khbv', 0.0041585721784949386) +zone = ('txz249', 0.0017508088801340593) + +[78362] +centroid = (0.48638725638835101, -1.6965118866705651) +station = ('ktfp', 0.00090982573707305186) +zone = ('txz244', 0.0054607194837476185) + +[78363] +centroid = (0.47899172038899784, -1.708076892079885) +station = ('kali', 0.0055610807895123526) +zone = ('txz242', 0.0020418584140840805) + +[78368] +centroid = (0.49049419065121885, -1.7070721758426819) +station = ('kbea', 0.0044897545821485562) +zone = ('txz244', 0.004745786380075126) + +[78369] +centroid = (0.47761161873627589, -1.7278185032354105) +station = ('khbv', 0.0041204843219092681) +zone = ('txz248', 0.0068960767781799893) + +[78370] +centroid = (0.48778687082211031, -1.7034192191715503) +station = ('krbo', 0.0032829186943833968) +zone = ('txz244', 0.0016325402983486492) + +[78371] +centroid = (0.48197714098111921, -1.7269399917564192) +station = ('khbv', 0.0059239985962114446) +zone = ('txz239', 0.0064748973770034531) + +[78372] +centroid = (0.48845210306650794, -1.7114731282713407) +station = ('kali', 0.0044649127365422505) +zone = ('txz241', 0.0044788556843988331) + +[78373] +centroid = (0.48480773341529609, -1.6949762063683202) +station = ('kras', 0.00072298007865783146) +zone = ('txz245', 0.006520469837025456) + +[78374] +centroid = (0.48680953880087102, -1.6996755926457776) +station = ('kcrp', 0.0029955056689050918) +zone = ('txz244', 0.0029154948233828331) + +[78375] +centroid = (0.47815577749046267, -1.7134121367104289) +station = ('kbks', 0.0034001036767395045) +zone = ('txz241', 0.0059746765431940149) + +[78376] +centroid = (0.47859289520162462, -1.7193984066052592) +station = ('khbv', 0.0037265028868706737) +zone = ('txz240', 0.0045376924942324122) + +[78377] +centroid = (0.49483094986998932, -1.6956703587184234) +station = ('krkp', 0.0049536126810160418) +zone = ('txz246', 0.00069029905898063408) + +[78379] +centroid = (0.47659032187117889, -1.7065903951559616) +station = ('kbks', 0.0055662347331649461) +zone = ('txz242', 0.0023321066143602983) + +[78380] +centroid = (0.48504886810475167, -1.7059221434919578) +station = ('krbo', 0.00083193157733311898) +zone = ('txz243', 0.0021310791674449543) + +[78382] +centroid = (0.49100696838545477, -1.6940527003012127) +station = ('krkp', 0.00088017441878751991) +zone = ('txz245', 0.0010094758303447497) + +[78383] +centroid = (0.49031815674286267, -1.7097754116013408) +station = ('kbea', 0.0053628575929654523) +zone = ('txz231', 0.0051489726713843569) + +[78384] +centroid = (0.48606648232512695, -1.717155710876324) +station = ('knqi', 0.00062049769262908009) +zone = ('txz240', 0.0034985275569507637) + +[78385] +centroid = (0.47366747133274156, -1.7087012487132009) +station = ('kbks', 0.0036097006176167277) +zone = ('txz251', 0.0047076807844325698) + +[78387] +centroid = (0.49081445856895983, -1.7026212720908311) +station = ('kbea', 0.0055309033076659467) +zone = ('txz244', 0.0020261736459766572) + +[78389] +centroid = (0.49298899919060463, -1.7043296178159755) +station = ('kbea', 0.0029180596584342626) +zone = ('txz232', 0.0032945436056619521) + +[78390] +centroid = (0.48864438599020016, -1.6986843154438149) +station = ('ktfp', 0.0023829185472555017) +zone = ('txz244', 0.0029565263689709004) + +[78391] +centroid = (0.49182638301597364, -1.7053331646825798) +station = ('kbea', 0.0033896528450655943) +zone = ('txz244', 0.0041632437968148004) + +[78393] +centroid = (0.49195745724279838, -1.6996409129535404) +station = ('ktfp', 0.0054415022011637792) +zone = ('txz244', 0.003745196855085418) + +[78401] +centroid = (0.48516316971746482, -1.6999344075205558) +station = ('kcrp', 0.0018954663647971297) +zone = ('txz243', 0.003753252524966659) + +[78402] +centroid = (0.48554045754186836, -1.6998190238037065) +station = ('kcrp', 0.0021273504502188458) +zone = ('txz244', 0.0038474535078638081) + +[78404] +centroid = (0.48464339321292838, -1.6999355943444472) +station = ('kcrp', 0.0018152526571561492) +zone = ('txz243', 0.0036067422542608069) + +[78405] +centroid = (0.48475210977203503, -1.7006274254066451) +station = ('kcrp', 0.0012101594736230071) +zone = ('txz243', 0.0030412301219639596) + +[78406] +centroid = (0.48469952300167246, -1.7020239855142134) +station = ('kcrp', 8.6250259911294997e-05) +zone = ('txz243', 0.0018687901546704442) + +[78407] +centroid = (0.48538824737780195, -1.7006557171938199) +station = ('kcrp', 0.001406230698100804) +zone = ('txz243', 0.0032601116798666612) + +[78408] +centroid = (0.48511414341877629, -1.7007679942246008) +station = ('kcrp', 0.0011863416391474334) +zone = ('txz243', 0.0030510373652133174) + +[78409] +centroid = (0.48536688454775756, -1.7020954567470827) +station = ('kcrp', 0.0007532750821455089) +zone = ('txz243', 0.002199179525923526) + +[78410] +centroid = (0.48586906813343389, -1.7033768774838969) +station = ('kcrp', 0.0017528493860181232) +zone = ('txz243', 0.0020553509748590789) + +[78411] +centroid = (0.48397795152902051, -1.6996932030179304) +station = ('kngp', 0.0017720920202310118) +zone = ('txz243', 0.0037395517613659315) + +[78412] +centroid = (0.48351856341660304, -1.6989915457520435) +station = ('kngp', 0.0010170096872229356) +zone = ('txz243', 0.0043737345438540388) + +[78413] +centroid = (0.4831643313916183, -1.700060455199135) +station = ('kngp', 0.0019003288494329222) +zone = ('txz243', 0.0034857793571587336) + +[78414] +centroid = (0.4828019486790267, -1.6994509164111684) +station = ('kngp', 0.0014083756596785994) +zone = ('txz243', 0.0040953577135224789) + +[78415] +centroid = (0.48272089558856407, -1.7013437434382488) +station = ('kcrp', 0.0019823912148236645) +zone = ('txz243', 0.0025510985084483614) + +[78416] +centroid = (0.48436387873322151, -1.7005877540727476) +station = ('kcrp', 0.0012642923866867254) +zone = ('txz243', 0.0029869934944571444) + +[78417] +centroid = (0.4841478767849946, -1.7011169204486596) +station = ('kcrp', 0.00090300944237776298) +zone = ('txz243', 0.0024931888912818707) + +[78418] +centroid = (0.4821842242968683, -1.6976685338191544) +station = ('kngp', 0.0010049844722460238) +zone = ('txz243', 0.0057838544817873077) + +[78419] +centroid = (0.48337157178700008, -1.6976720419309506) +station = ('kngp', 0.00029769915453174077) +zone = ('txz243', 0.0055503625511702697) + +[78501] +centroid = (0.45755230529700974, -1.7146043362158812) +station = ('kmfe', 0.00058989415974932259) +zone = ('txz253', 0.0032886641137680763) + +[78503] +centroid = (0.45661904283938337, -1.7147633008041527) +station = ('kmfe', 0.00036689848150179671) +zone = ('txz253', 0.0042265648581688011) + +[78504] +centroid = (0.45853229021871211, -1.7145515923658861) +station = ('kmfe', 0.0015611392245474783) +zone = ('txz253', 0.0023451921129164078) + +[78516] +centroid = (0.45630828696606579, -1.7125399607766223) +station = ('kmfe', 0.0021265631257837395) +zone = ('txz253', 0.0045011200193821391) + +[78520] +centroid = (0.45314444136451304, -1.7025765916619802) +station = ('kbro', 0.0023725137761222738) +zone = ('txz255', 0.0027761526253179264) + +[78521] +centroid = (0.45280687723388485, -1.6985185440714605) +station = ('kbro', 0.0017289272303647736) +zone = ('txz257', 0.0038990380806332445) + +[78526] +centroid = (0.45359260700984017, -1.7007113408370813) +station = ('kbro', 0.0016087782909948558) +zone = ('txz255', 0.0031267491030633476) + +[78535] +centroid = (0.458198356372928, -1.7059475729391593) +station = ('khrl', 0.0015954567342845382) +zone = ('txz255', 0.0034612006989046171) + +[78536] +centroid = (0.46511771419245951, -1.7182962835425024) +station = ('kebg', 0.0061903716650386353) +zone = ('txz252', 0.0047341661917716842) + +[78537] +centroid = (0.45661129357750446, -1.7114464247337853) +station = ('kt65', 0.001368240666600392) +zone = ('txz253', 0.0045254671813758588) + +[78538] +centroid = (0.46032257915223779, -1.7100784880259496) +station = ('kebg', 0.0026116949254064016) +zone = ('txz253', 0.0031637752465206591) + +[78539] +centroid = (0.45868455274265602, -1.7136217682068859) +station = ('kmfe', 0.0019944440399546075) +zone = ('txz253', 0.0020268100571876873) + +[78541] +centroid = (0.46164602741743999, -1.7152560945184534) +station = ('kebg', 0.002309499870140755) +zone = ('txz253', 0.0017657369293284139) + +[78542] +centroid = (0.46166536566555211, -1.7120284047728627) +station = ('kebg', 0.00060829965382242239) +zone = ('txz253', 0.0016881878193366355) + +[78543] +centroid = (0.45897577838164377, -1.7104221957155448) +station = ('kt65', 0.0021342282857403061) +zone = ('txz253', 0.0033221123566266999) + +[78545] +centroid = (0.4640337251006309, -1.7299681031020444) +station = ('kapy', 0.0069824486183469609) +zone = ('txz252', 0.0059705883638435315) + +[78548] +centroid = (0.45858224154190413, -1.7218515017755225) +station = ('kmfe', 0.0065360726297311808) +zone = ('txz252', 0.0051812468398218688) + +[78549] +centroid = (0.46172107657527578, -1.7110499906474874) +station = ('kebg', 0.0014778888161451889) +zone = ('txz253', 0.002483412348284115) + +[78550] +centroid = (0.45824532318309913, -1.7046194820981468) +station = ('khrl', 0.00073143071526692092) +zone = ('txz255', 0.0027361481391229691) + +[78552] +centroid = (0.45722154795046432, -1.7060688733221729) +station = ('khrl', 0.0016119548876598905) +zone = ('txz255', 0.0029978654041249927) + +[78557] +centroid = (0.45572621966052562, -1.7146419306079692) +station = ('kmfe', 0.0012657792528112742) +zone = ('txz253', 0.0050744346039625641) + +[78558] +centroid = (0.45915827000823234, -1.7111096460013204) +station = ('kt65', 0.0025003327786116852) +zone = ('txz253', 0.0027064952147377716) + +[78559] +centroid = (0.45638319649756137, -1.7074750152873348) +station = ('kt65', 0.0022791585882911748) +zone = ('txz255', 0.0039771362605309103) + +[78560] +centroid = (0.45802349183517072, -1.7190531979325074) +station = ('kmfe', 0.003966611038306582) +zone = ('txz253', 0.0055910293563455485) + +[78561] +centroid = (0.46211841823278482, -1.7090525136784573) +station = ('kebg', 0.003307716288314568) +zone = ('txz254', 0.0031740974266481225) + +[78562] +centroid = (0.45898090964964466, -1.7087207091343606) +station = ('kt65', 0.0023705286162354019) +zone = ('txz254', 0.0041158509477715348) + +[78563] +centroid = (0.46520499810835175, -1.7149609069820637) +station = ('kebg', 0.0042297529055037291) +zone = ('txz253', 0.0046598611189133474) + +[78564] +centroid = (0.46562235869238117, -1.7296751844936822) +station = ('kapy', 0.0055833540000369804) +zone = ('txz248', 0.0057221858544714045) + +[78565] +centroid = (0.45821397706973338, -1.7203220173921221) +station = ('kmfe', 0.0051161635570913669) +zone = ('txz252', 0.0060108288802682049) + +[78566] +centroid = (0.45637577884824043, -1.6994336551048661) +station = ('kpil', 0.0006620632002038425) +zone = ('txz257', 0.00093539567517410976) + +[78567] +centroid = (0.45470562092712946, -1.705892682334184) +station = ('khrl', 0.0031932746648699476) +zone = ('txz255', 0.002787212104337813) + +[78569] +centroid = (0.46021215217046407, -1.705947119153554) +station = ('khrl', 0.0030232039614591405) +zone = ('txz254', 0.0017589095461495224) + +[78570] +centroid = (0.45683150176922865, -1.7088971968283224) +station = ('kt65', 0.00094841286798716699) +zone = ('txz253', 0.0057188472427646252) + +[78572] +centroid = (0.45777778438307493, -1.7169880021885) +station = ('kmfe', 0.0021286587622638777) +zone = ('txz253', 0.0042329177486116502) + +[78573] +centroid = (0.45895935483338257, -1.715658253284698) +station = ('kmfe', 0.002123371585345455) +zone = ('txz253', 0.0025544906284913293) + +[78574] +centroid = (0.45935168739593835, -1.716881327664618) +station = ('kmfe', 0.0030217451979209836) +zone = ('txz253', 0.003252699669644827) + +[78575] +centroid = (0.45416538916375965, -1.7021517087088747) +station = ('kbro', 0.0027323086130185944) +zone = ('txz255', 0.0019097801726550481) + +[78576] +centroid = (0.45939870656598708, -1.7187332965339093) +station = ('kmfe', 0.0042844904179128989) +zone = ('txz253', 0.0047973925795670941) + +[78577] +centroid = (0.45639808415608091, -1.7137338008915715) +station = ('kmfe', 0.0011120797928582296) +zone = ('txz253', 0.0043150942149589588) + +[78578] +centroid = (0.45468663174486779, -1.6984281883760846) +station = ('kpil', 0.0020335625301679486) +zone = ('txz257', 0.0020190922935935914) + +[78579] +centroid = (0.45523731803045697, -1.7097618852996379) +station = ('kt65', 0.0016551084230412016) +zone = ('txz253', 0.0064584415065218675) + +[78580] +centroid = (0.46229827441220278, -1.7058665373019892) +station = ('khrl', 0.0049314212428305405) +zone = ('txz254', 0.0004873776306022933) + +[78582] +centroid = (0.46332095008740887, -1.7229157861000959) +station = ('kmfe', 0.0096539258691194212) +zone = ('txz252', 0.00044740111153416796) + +[78583] +centroid = (0.45834725041141561, -1.7015042962761397) +station = ('khrl', 0.0026381716366471199) +zone = ('txz255', 0.002840679739352293) + +[78584] +centroid = (0.46379156066691662, -1.7272808894659188) +station = ('kapy', 0.0082179941324514519) +zone = ('txz252', 0.0035568042746480931) + +[78585] +centroid = (0.46308035645002149, -1.7298479371830446) +station = ('kapy', 0.0079279400408352099) +zone = ('txz252', 0.0058711479282905557) + +[78586] +centroid = (0.45563715550879641, -1.7039525917909599) +station = ('khrl', 0.0019570694358886898) +zone = ('txz255', 0.00082127721027895454) + +[78588] +centroid = (0.46666374429716861, -1.717355236916412) +station = ('kebg', 0.006643725703043302) +zone = ('txz250', 0.0058313406346915085) + +[78589] +centroid = (0.45671487886861034, -1.7131251871281086) +station = ('kmfe', 0.0015148280844466489) +zone = ('txz253', 0.0040172621254805641) + +[78590] +centroid = (0.46265826602371918, -1.7042751809966059) +station = ('khrl', 0.0050912326930597392) +zone = ('txz254', 0.0013271954803331376) + +[78591] +centroid = (0.46395963587388372, -1.7195268628382059) +station = ('kebg', 0.0066009040114990538) +zone = ('txz252', 0.0034031518567764619) + +[78592] +centroid = (0.45486781437451729, -1.7077518070534086) +station = ('kt65', 0.002822633412575905) +zone = ('txz255', 0.0043168557113714701) + +[78593] +centroid = (0.45859829857102247, -1.7073425797036936) +station = ('kt65', 0.0029019424684214746) +zone = ('txz254', 0.0037109010722719436) + +[78594] +centroid = (0.45981147693408375, -1.7068428570322625) +station = ('khrl', 0.0031903442619708247) +zone = ('txz254', 0.002428261325248965) + +[78595] +centroid = (0.45887147750554463, -1.7199430889582217) +station = ('kmfe', 0.0049955033956903174) +zone = ('txz252', 0.0056047946661935159) + +[78596] +centroid = (0.45655408168462414, -1.7102333859970642) +station = ('kt65', 0.00041491941280357168) +zone = ('txz253', 0.0051287218886883973) + +[78597] +centroid = (0.45788712926071234, -1.6977127953689848) +station = ('kpil', 0.0015334947565392183) +zone = ('txz257', 0.0013578453412611006) + +[78598] +centroid = (0.46372190457646956, -1.7006895067681387) +station = ('khrl', 0.0069585955326827873) +zone = ('txz256', 0.0014697485741946908) + +[78602] +centroid = (0.52575984227811823, -1.6986889929262101) +station = ('kgyb', 0.0053072022420632093) +zone = ('txz193', 0.00042436387304812091) + +[78605] +centroid = (0.53709531943750843, -1.7112112067104941) +station = ('kbmq', 0.0029070121115445059) +zone = ('txz172', 0.0020741683040828313) + +[78606] +centroid = (0.52506111716537485, -1.7187332092674465) +station = ('kt82', 0.0071084550312698449) +zone = ('txz190', 0.0033890604514968982) + +[78607] +centroid = (0.53794107108643985, -1.7187546593639538) +station = ('kaqo', 0.0028456934597962768) +zone = ('txz171', 0.0037028710476729922) + +[78608] +centroid = (0.53993516211672088, -1.7092808551044958) +station = ('kgrk', 0.0028830799496188629) +zone = ('txz172', 0.0045200748229329187) + +[78609] +centroid = (0.53685844335142774, -1.7180732304640975) +station = ('kaqo', 0.003378938935553728) +zone = ('txz171', 0.0038044939765596417) + +[78610] +centroid = (0.5249691034072097, -1.7075954430057225) +station = ('kaus', 0.002966227428658237) +zone = ('txz191', 0.0029379825313759459) + +[78611] +centroid = (0.53757394107828282, -1.7153623850698998) +station = ('kbmq', 0.0013923083058138767) +zone = ('txz172', 0.0015241127514317408) + +[78612] +centroid = (0.52524109551784048, -1.7016105693742936) +station = ('kaus', 0.0032399840967630641) +zone = ('txz193', 0.0027683168228399358) + +[78613] +centroid = (0.53239434491043169, -1.7073543781294369) +station = ('kryw', 0.0021936175302603622) +zone = ('txz192', 0.0030217794850693085) + +[78614] +centroid = (0.51330848886146552, -1.7032174940166049) +station = ('kbaz', 0.0088282436587600703) +zone = ('txz223', 0.0016503687640944183) + +[78615] +centroid = (0.53172248041487657, -1.6996733760776277) +station = ('kedc', 0.0030216517479775395) +zone = ('txz173', 0.0045572060570261809) + +[78616] +centroid = (0.5225527299644086, -1.7028879758538282) +station = ('kaus', 0.0045876652956226352) +zone = ('txz208', 0.0019584305989258119) + +[78617] +centroid = (0.52623396096942243, -1.7035689684213713) +station = ('kaus', 0.0012785320314052965) +zone = ('txz192', 0.0041485903573891415) + +[78618] +centroid = (0.53171740150675328, -1.7306026000983146) +station = ('kt82', 0.0053633946451318764) +zone = ('txz188', 0.004070238873308026) + +[78619] +centroid = (0.5255520608306683, -1.711008626344215) +station = ('khyi', 0.0045858764538470936) +zone = ('txz191', 0.00093824721447987919) + +[78620] +centroid = (0.52751065186396384, -1.7127756325855192) +station = ('kryw', 0.0054168721512251918) +zone = ('txz191', 0.00329209519520801) + +[78621] +centroid = (0.52950818119287135, -1.6992739225717237) +station = ('kedc', 0.0033215535336004105) +zone = ('txz193', 0.004167620715882169) + +[78622] +centroid = (0.51931435880379573, -1.7065102845432949) +station = ('khyi', 0.0027757025336228678) +zone = ('txz208', 0.0027664687950145158) + +[78623] +centroid = (0.52309505612288076, -1.7144060493595621) +station = ('kbaz', 0.0051967345967684712) +zone = ('txz206', 0.002942624611526768) + +[78624] +centroid = (0.52850206869226668, -1.7257236718007043) +station = ('kt82', 0.00081751763560630113) +zone = ('txz188', 0.0012346632965851566) + +[78626] +centroid = (0.53510262467062897, -1.7037589126038659) +station = ('kgtu', 0.0010652379851994256) +zone = ('txz173', 0.00032437554613306283) + +[78628] +centroid = (0.53490718270099058, -1.7061147929347928) +station = ('kgtu', 0.0012171116193741111) +zone = ('txz173', 0.00228799316581641) + +[78629] +centroid = (0.51446990075891263, -1.7008045763257227) +station = ('khyi', 0.0096244707812931617) +zone = ('txz223', 0.00075061232177391264) + +[78631] +centroid = (0.52952888079780003, -1.7332267898951503) +station = ('kt82', 0.0062158340946420381) +zone = ('txz186', 0.00490089339055248) + +[78632] +centroid = (0.51829489453441335, -1.7011839934518138) +station = ('khyi', 0.0068923675571943011) +zone = ('txz208', 0.0033440706823942659) + +[78633] +centroid = (0.53664790428375964, -1.7062002093483857) +station = ('kgtu', 0.0015868461048373814) +zone = ('txz173', 0.0029309109250772584) + +[78634] +centroid = (0.53337335244775297, -1.7025010363586612) +station = ('kedc', 0.0028162515570050992) +zone = ('txz173', 0.001742608750086411) + +[78635] +centroid = (0.52679122714629179, -1.7203107949250318) +station = ('kt82', 0.0052790862817259894) +zone = ('txz190', 0.0029063239861162487) + +[78636] +centroid = (0.52909998358741495, -1.7178142934162715) +station = ('kdzb', 0.0038689632660135367) +zone = ('txz190', 0.00092356767661422366) + +[78638] +centroid = (0.51765758755804758, -1.7066737346277441) +station = ('kbaz', 0.0041366554081542547) +zone = ('txz207', 0.0028130957319921429) + +[78639] +centroid = (0.53534166496498203, -1.7181500773110627) +station = ('kdzb', 0.002785415522464391) +zone = ('txz171', 0.0036658589806482606) + +[78640] +centroid = (0.52358311999490847, -1.7074243134725644) +station = ('khyi', 0.001922212146587468) +zone = ('txz191', 0.0032346929788465476) + +[78641] +centroid = (0.53341714275868546, -1.7088151663534787) +station = ('kryw', 0.0014364896379745419) +zone = ('txz192', 0.0044055078973278903) + +[78642] +centroid = (0.53565690633447727, -1.7094003577983798) +station = ('kryw', 0.0033590282526703695) +zone = ('txz172', 0.0039947861792176808) + +[78643] +centroid = (0.5356161179898582, -1.7224635014777341) +station = ('kaqo', 0.0017113901172695048) +zone = ('txz171', 0.00031054285827133006) + +[78644] +centroid = (0.52135552136400309, -1.7047812741198067) +station = ('khyi', 0.0028703521804612046) +zone = ('txz208', 0.0010470349407046852) + +[78645] +centroid = (0.53145268741910323, -1.7099305888251357) +station = ('kryw', 0.00087315714355182782) +zone = ('txz192', 0.0034961801666008154) + +[78648] +centroid = (0.51819146632294011, -1.7040269951769724) +station = ('khyi', 0.0049865415985662345) +zone = ('txz208', 0.0025741187935724302) + +[78650] +centroid = (0.52890256939572189, -1.6967898827138226) +station = ('kgyb', 0.0043017674747821057) +zone = ('txz193', 0.0037677322146465061) + +[78652] +centroid = (0.5259166775647024, -1.7082355425088913) +station = ('kaus', 0.0030193463380085916) +zone = ('txz191', 0.0026970542634717474) + +[78653] +centroid = (0.52952758925415355, -1.7021063825082001) +station = ('kedc', 0.0012640446020618095) +zone = ('txz192', 0.0038931711164809637) + +[78654] +centroid = (0.5337429084635702, -1.7140657276087157) +station = ('kdzb', 0.0024429218676353393) +zone = ('txz172', 0.0036358432903806372) + +[78655] +centroid = (0.52038740468121436, -1.7075436067269383) +station = ('khyi', 0.0014270978993334129) +zone = ('txz208', 0.0032769749001406645) + +[78656] +centroid = (0.52193648911211443, -1.7070593476726796) +station = ('khyi', 0.00089039189729710861) +zone = ('txz208', 0.0030701049446583777) + +[78657] +centroid = (0.53286472859713674, -1.7170156831104366) +station = ('kdzb', 0.00026733756057003021) +zone = ('txz190', 0.0046283121966794521) + +[78659] +centroid = (0.52721888517290794, -1.6951578253302828) +station = ('kgyb', 0.0022927198490166195) +zone = ('txz194', 0.003007475585566151) + +[78660] +centroid = (0.53125263778023968, -1.7033467531010074) +station = ('kedc', 0.00076757917373553074) +zone = ('txz192', 0.0033523147575005964) + +[78661] +centroid = (0.51885727452599095, -1.7061717081217005) +station = ('khyi', 0.0033181786399922629) +zone = ('txz208', 0.0028074702635729853) + +[78662] +centroid = (0.52241320834400418, -1.7001550520445929) +station = ('kaus', 0.0060056194142616894) +zone = ('txz193', 0.0033508791034214348) + +[78663] +centroid = (0.53061955450066378, -1.7166983298925462) +station = ('kdzb', 0.0022294755612483176) +zone = ('txz190', 0.0024474410333737984) + +[78664] +centroid = (0.53235591276030292, -1.7042652500731621) +station = ('kedc', 0.0021220088210856108) +zone = ('txz173', 0.0026478154927683161) + +[78665] +centroid = (0.53308212680876521, -1.7042370455524498) +station = ('kgtu', 0.0025079831690762075) +zone = ('txz173', 0.00194803620411939) + +[78666] +centroid = (0.52150720792929384, -1.7098321173487383) +station = ('khyi', 0.0015528798917924624) +zone = ('txz191', 0.0032587686002430011) + +[78669] +centroid = (0.53110445932674533, -1.7123888676232772) +station = ('kryw', 0.002469068478267728) +zone = ('txz190', 0.0051828621228777348) + +[78670] +centroid = (0.51965345882416569, -1.707224176567238) +station = ('khyi', 0.0022112209274302093) +zone = ('txz208', 0.0031774602215063454) + +[78671] +centroid = (0.52742263490978569, -1.7214052036324949) +station = ('kt82', 0.004246801469381215) +zone = ('txz190', 0.0035568332739199307) + +[78672] +centroid = (0.53858829153295684, -1.7186171797787739) +station = ('kaqo', 0.0031690271551182967) +zone = ('txz171', 0.0041828669796473506) + +[78675] +centroid = (0.531227068706698, -1.722792059709422) +station = ('kt82', 0.0045323966488233329) +zone = ('txz188', 0.0041376051246667985) + +[78676] +centroid = (0.52420002407231836, -1.7129145782472703) +station = ('khyi', 0.0048701463946076067) +zone = ('txz191', 0.0017373715340333377) + +[78677] +centroid = (0.51225329770229477, -1.7030958794743261) +station = ('kbaz', 0.0095843461972572978) +zone = ('txz223', 0.002291195343130297) + +[78681] +centroid = (0.53292502972279321, -1.7056337976462359) +station = ('kgtu', 0.0026766194947176968) +zone = ('txz173', 0.0027308977479412566) + +[78701] +centroid = (0.52832109550212736, -1.7059299974735918) +station = ('katt', 0.00088259402068372069) +zone = ('txz192', 0.0012663816769443693) + +[78702] +centroid = (0.52819558887561646, -1.7054394552340264) +station = ('katt', 0.001217992360070226) +zone = ('txz192', 0.0016067469787835545) + +[78703] +centroid = (0.5287172677890376, -1.7063394691694023) +station = ('katt', 0.00040848947422481014) +zone = ('txz192', 0.00076153806770027288) + +[78704] +centroid = (0.52784048418600571, -1.7063225569289504) +station = ('katt', 0.0012853895796168867) +zone = ('txz192', 0.0016198632489439913) + +[78705] +centroid = (0.52873585554557134, -1.7058589276664506) +station = ('katt', 0.00057607109101124189) +zone = ('txz192', 0.00096105420527718786) + +[78712] +centroid = (0.52852362350852877, -1.7057277836264557) +station = ('katt', 0.000807007160075023) +zone = ('txz192', 0.0011952446969102025) + +[78717] +centroid = (0.53219241031597597, -1.7060298826666835) +station = ('katt', 0.0030791795822597062) +zone = ('txz192', 0.0027980682033783956) + +[78719] +centroid = (0.52680665585687936, -1.7049122261735838) +station = ('kaus', 1.6358706235552347e-05) +zone = ('txz192', 0.0030170449240822139) + +[78721] +centroid = (0.5283106235266154, -1.7048996947095545) +station = ('katt', 0.0014943087375758112) +zone = ('txz192', 0.0018634428359027779) + +[78722] +centroid = (0.52865958465725915, -1.7054431727853332) +station = ('katt', 0.00091131894396628919) +zone = ('txz192', 0.0012786599356820086) + +[78723] +centroid = (0.52890920164687938, -1.7049374810878601) +station = ('katt', 0.0012386905680084707) +zone = ('txz192', 0.0015433223634301724) + +[78724] +centroid = (0.52878413135268154, -1.7037514425946674) +station = ('kedc', 0.0019347049139231479) +zone = ('txz192', 0.0025585314086460013) + +[78725] +centroid = (0.52761797215966899, -1.7035900694520281) +station = ('kaus', 0.0013945609793445674) +zone = ('txz192', 0.0031858538944565637) + +[78726] +centroid = (0.53111676389797191, -1.7076316236811162) +station = ('katt', 0.0022774308846096373) +zone = ('txz192', 0.0018914788011001017) + +[78727] +centroid = (0.53110259182444575, -1.7054972779921449) +station = ('katt', 0.0021094596449976618) +zone = ('txz192', 0.0019221011821298067) + +[78728] +centroid = (0.5314994273364716, -1.7050011157923879) +station = ('kedc', 0.0020180170030206861) +zone = ('txz192', 0.0024859969961780006) + +[78729] +centroid = (0.53159929507627079, -1.7061526142196837) +station = ('katt', 0.0024795104681526979) +zone = ('txz192', 0.0021956056168544371) + +[78730] +centroid = (0.53006445253206702, -1.7075576042675391) +station = ('katt', 0.0014025198198245766) +zone = ('txz192', 0.001024464447279353) + +[78731] +centroid = (0.5296766403722738, -1.7063758767375987) +station = ('katt', 0.00055143321487125798) +zone = ('txz192', 0.00031431821070096916) + +[78732] +centroid = (0.53019418285536768, -1.7085904726655767) +station = ('katt', 0.0022089208846537418) +zone = ('txz192', 0.0018629896891855945) + +[78733] +centroid = (0.52920171882951361, -1.708411192444812) +station = ('katt', 0.0017807072969653875) +zone = ('txz192', 0.0015677056757373137) + +[78734] +centroid = (0.53020222882321943, -1.7095711033591026) +station = ('kryw', 0.0021419388786508456) +zone = ('txz192', 0.0026612375934338922) + +[78735] +centroid = (0.52827866654801148, -1.7081396017599093) +station = ('katt', 0.0017619800420695239) +zone = ('txz192', 0.0017549315843486486) + +[78736] +centroid = (0.52815555102257572, -1.7097146741433715) +station = ('katt', 0.0030628625395636806) +zone = ('txz192', 0.0029678794440977496) + +[78737] +centroid = (0.52692050368398702, -1.7096719833898675) +station = ('katt', 0.0036188130082957294) +zone = ('txz191', 0.0025630180156788378) + +[78738] +centroid = (0.52917943097496567, -1.7096935382061298) +station = ('katt', 0.0028865601851990027) +zone = ('txz192', 0.0026690927636212206) + +[78739] +centroid = (0.52671277459641463, -1.7084794522718574) +station = ('katt', 0.0030339991357337332) +zone = ('txz191', 0.003004436588186082) + +[78741] +centroid = (0.52762132319183275, -1.705432456463726) +station = ('kaus', 0.00094449311825818007) +zone = ('txz192', 0.0020865707848468518) + +[78742] +centroid = (0.52782865085367714, -1.7044745848636462) +station = ('kaus', 0.0010925223889743838) +zone = ('txz192', 0.0024530041058887231) + +[78744] +centroid = (0.52668825272042408, -1.7056385100352163) +station = ('kaus', 0.00065144706204997137) +zone = ('txz192', 0.0028787731555530481) + +[78745] +centroid = (0.52720888443629399, -1.7068869789557528) +station = ('katt', 0.0019720360544793498) +zone = ('txz192', 0.0022437374040597965) + +[78746] +centroid = (0.52875489708771062, -1.707077743442996) +station = ('katt', 0.0007293542713134051) +zone = ('txz192', 0.00079291824995000437) + +[78747] +centroid = (0.52581475033638603, -1.7058842698471897) +station = ('kaus', 0.0013032177372537038) +zone = ('txz192', 0.0036803659793233135) + +[78748] +centroid = (0.52651539531130664, -1.7073508525643479) +station = ('kaus', 0.0021411860760280044) +zone = ('txz192', 0.0029930666241342009) + +[78749] +centroid = (0.52737161893574991, -1.707909497551326) +station = ('katt', 0.0022114009968458976) +zone = ('txz192', 0.0023510615289067498) + +[78750] +centroid = (0.53090397335556871, -1.7069764270799175) +station = ('katt', 0.0018585832263446765) +zone = ('txz192', 0.001496229030107222) + +[78751] +centroid = (0.52902296220752443, -1.7055838637763363) +station = ('katt', 0.00066950842744833744) +zone = ('txz192', 0.00098395789106915177) + +[78752] +centroid = (0.52939009221568134, -1.7052616236365408) +station = ('katt', 0.00097616762361065531) +zone = ('txz192', 0.0011701369164294447) + +[78753] +centroid = (0.5302743283746193, -1.7047235909880283) +station = ('kedc', 0.0015874270478065235) +zone = ('txz192', 0.0018336220428453829) + +[78754] +centroid = (0.52980616125606439, -1.7042211979628419) +station = ('kedc', 0.00136508623545708) +zone = ('txz192', 0.0020989137157505573) + +[78756] +centroid = (0.52922275004700026, -1.7058877255991085) +station = ('katt', 0.00041088452869963722) +zone = ('txz192', 0.00066530204234316944) + +[78757] +centroid = (0.52973427114417471, -1.7057551503891268) +station = ('katt', 0.00079637624118539295) +zone = ('txz192', 0.0007990230155033853) + +[78758] +centroid = (0.53037030403018648, -1.7053062866120992) +station = ('katt', 0.0015364575834851228) +zone = ('txz192', 0.0014635733461649694) + +[78759] +centroid = (0.53062641364462404, -1.7062524470528979) +station = ('katt', 0.0015031320905881599) +zone = ('txz192', 0.0012268214700959287) + +[78801] +centroid = (0.51247935274701306, -1.7435513199919079) +station = ('kuva', 0.0035456134365637148) +zone = ('txz203', 0.0020700431207149863) + +[78802] +centroid = (0.50878113968837724, -1.7456062357466211) +station = ('kuva', 0.0042833787061303825) +zone = ('txz203', 0.0052804752051476434) + +[78827] +centroid = (0.49605662479049489, -1.7406692577980898) +station = ('kftn', 0.0057551519148480593) +zone = ('txz228', 0.00036387963874203626) + +[78828] +centroid = (0.52128731389683514, -1.7456526615047241) +station = ('kecu', 0.0027223068427545435) +zone = ('txz185', 0.0030383307871471987) + +[78829] +centroid = (0.50420376937892686, -1.7376960894173175) +station = ('kuva', 0.0062653766511952405) +zone = ('txz218', 0.0030507385478564116) + +[78830] +centroid = (0.49785347616200804, -1.7367506096549272) +station = ('kcot', 0.0046634248366133058) +zone = ('txz228', 0.0042067539130059622) + +[78832] +centroid = (0.513050372118388, -1.7530084389037166) +station = ('kdlf', 0.0048855938694427883) +zone = ('txz202', 0.00086038259912138871) + +[78833] +centroid = (0.51792121954156134, -1.7467008713468868) +station = ('kecu', 0.0049600425419290281) +zone = ('txz185', 0.004756290986872482) + +[78834] +centroid = (0.49661486835174523, -1.7439016424793683) +station = ('kftn', 0.0046509906089842717) +zone = ('txz228', 0.0025386363542385408) + +[78836] +centroid = (0.49395683662071305, -1.7401679119704545) +station = ('kftn', 0.0050239115410162438) +zone = ('txz228', 0.0022578018234805618) + +[78837] +centroid = (0.52075772864190251, -1.7664902521640395) +station = ('kdrt', 0.0093591562099526512) +zone = ('txz183', 0.0013389718534212679) + +[78838] +centroid = (0.51551154816308786, -1.7409117014844842) +station = ('kuva', 0.0056817390622856097) +zone = ('txz203', 0.003138637600916466) + +[78839] +centroid = (0.50122922218804544, -1.7422483269855391) +station = ('kuva', 0.0086874730539577127) +zone = ('txz218', 0.0027543651353289884) + +[78840] +centroid = (0.51888469364853973, -1.7607114844639788) +station = ('kdrt', 0.0063623236235507983) +zone = ('txz183', 0.0049865912709779314) + +[78843] +centroid = (0.51240288987248328, -1.7588989425824901) +station = ('kdrt', 0.0021218622380454882) +zone = ('txz202', 0.0054705606304264499) + +[78850] +centroid = (0.51112464563490756, -1.7336212692126862) +station = ('khdo', 0.0028518174231633017) +zone = ('txz204', 0.0035531700668809474) + +[78851] +centroid = (0.52408863715945608, -1.7797202842264694) +station = ('k6r6', 0.0037395764763248542) +zone = ('txz082', 0.0037915950909303609) + +[78852] +centroid = (0.50169868085024683, -1.7507636487796794) +station = ('mmpg', 0.0032398433176185791) +zone = ('txz217', 6.6206622192963258e-05) + +[78860] +centroid = (0.4970068693017432, -1.7501618592535917) +station = ('mmpg', 0.0053604036685679464) +zone = ('txz217', 0.0046817417680016316) + +[78861] +centroid = (0.51360458396906639, -1.7303392124608958) +station = ('khdo', 0.001128452814192653) +zone = ('txz204', 0.0013370224519767815) + +[78870] +centroid = (0.51144809005188718, -1.7388860025414496) +station = ('kuva', 0.0023564061476720592) +zone = ('txz203', 0.0022061416889460239) + +[78871] +centroid = (0.5237207915663058, -1.7742108557365766) +station = ('k6r6', 0.0085233727674776192) +zone = ('txz082', 0.0074169769244150016) + +[78872] +centroid = (0.50486048441657472, -1.7429777000799476) +station = ('kuva', 0.0053062763621509138) +zone = ('txz218', 0.0019133408037022414) + +[78873] +centroid = (0.52037869548824689, -1.7405680112481814) +station = ('kecu', 0.0071328862549827898) +zone = ('txz185', 0.001464820970913589) + +[78877] +centroid = (0.50529329116448429, -1.7556857914295685) +station = ('kdlf', 0.0034759506926248336) +zone = ('txz217', 0.0056061509065009557) + +[78879] +centroid = (0.51739360650868338, -1.7397873254737646) +station = ('kuva', 0.007619914806192324) +zone = ('txz185', 0.0038945354376221891) + +[78880] +centroid = (0.52339094179097145, -1.7503222201052648) +station = ('kecu', 0.0018477881190469686) +zone = ('txz184', 0.0002974129694509222) + +[78881] +centroid = (0.5128417878194822, -1.7371209161623227) +station = ('kuva', 0.0044321773202645985) +zone = ('txz203', 0.0035661845993947283) + +[78883] +centroid = (0.51798389431500047, -1.7334015322598602) +station = ('khdo', 0.0058962505873231767) +zone = ('txz187', 0.001606799410633369) + +[78884] +centroid = (0.51673233616168779, -1.7358396699584338) +station = ('khdo', 0.0060740613621136728) +zone = ('txz187', 0.0040202827842443067) + +[78885] +centroid = (0.52025978620630853, -1.7373085914167898) +station = ('kerv', 0.0074463876334357184) +zone = ('txz187', 0.0045834051909947361) + +[78886] +centroid = (0.50851628597438703, -1.7308236111414943) +station = ('khdo', 0.0040288796953527866) +zone = ('txz204', 0.0039403817956858945) + +[78931] +centroid = (0.52402207030178505, -1.6833884069589695) +station = ('k11r', 0.0035898518959047417) +zone = ('txz197', 0.003396831708427459) + +[78932] +centroid = (0.52647118612135357, -1.6878253829833891) +station = ('kgyb', 0.0041463001188540701) +zone = ('txz197', 0.0046336794512727387) + +[78933] +centroid = (0.5199448415427862, -1.6817829483932298) +station = ('ktme', 0.0069608812686444881) +zone = ('txz211', 0.0020819164675614926) + +[78934] +centroid = (0.51824841641643271, -1.6852445646184653) +station = ('k3t5', 0.0070274202082166223) +zone = ('txz210', 0.0013528312719132758) + +[78935] +centroid = (0.51829260815309319, -1.6829417597500915) +station = ('karm', 0.0087437070602435652) +zone = ('txz210', 0.0020151360300498895) + +[78938] +centroid = (0.52022255833336351, -1.6874984130013206) +station = ('k3t5', 0.0043637058875519745) +zone = ('txz209', 0.0037381340918140778) + +[78940] +centroid = (0.52238798833631284, -1.6870807557113183) +station = ('k3t5', 0.0043652810333490574) +zone = ('txz209', 0.0040030363519263585) + +[78941] +centroid = (0.51884479542183914, -1.6957348486342847) +station = ('k3t5', 0.0044588288333485791) +zone = ('txz209', 0.0044545507677364376) + +[78942] +centroid = (0.52652436630366184, -1.6916261341355798) +station = ('kgyb', 0.00085993724478462634) +zone = ('txz194', 0.0025786718393960672) + +[78943] +centroid = (0.51851983256841039, -1.6862602938832485) +station = ('k3t5', 0.0061413574099457519) +zone = ('txz210', 0.0020502780415240138) + +[78944] +centroid = (0.52385423944091325, -1.6843806964518981) +station = ('k11r', 0.0040969408815909698) +zone = ('txz197', 0.0038272483682107515) + +[78945] +centroid = (0.52206854072332032, -1.6910418677151822) +station = ('k3t5', 0.00091737558450873265) +zone = ('txz209', 0.00077055103148391743) + +[78946] +centroid = (0.52688704572222622, -1.6891120571612521) +station = ('kgyb', 0.0030512751652851527) +zone = ('txz194', 0.0035327022284566225) + +[78947] +centroid = (0.53093184626372314, -1.6935947433587817) +station = ('kgyb', 0.0044606236936578806) +zone = ('txz194', 0.0021828256072907136) + +[78948] +centroid = (0.52920311509291529, -1.6925568658657908) +station = ('kgyb', 0.0026523904773120823) +zone = ('txz194', 0.00024248513936308048) + +[78949] +centroid = (0.52068725224670698, -1.6944948445606203) +station = ('k3t5', 0.0024560574688906353) +zone = ('txz209', 0.0026487680347454618) + +[78950] +centroid = (0.52193980523769323, -1.683939337590654) +station = ('k11r', 0.0057189549733831493) +zone = ('txz211', 0.0031118281655565425) + +[78951] +centroid = (0.5163955050693454, -1.6899041050290995) +station = ('k3t5', 0.0059133345810784641) +zone = ('txz225', 0.0038904866678135925) + +[78953] +centroid = (0.52087628885799042, -1.6992175833434693) +station = ('k3t5', 0.0062748981949432596) +zone = ('txz208', 0.0039683154940176896) + +[78954] +centroid = (0.52434954642933673, -1.6877192146049906) +station = ('k3t5', 0.0044640018927157498) +zone = ('txz209', 0.0044208683014324108) + +[78956] +centroid = (0.51812329376235722, -1.6918105630776381) +station = ('k3t5', 0.0038787052831732662) +zone = ('txz209', 0.0033318053663559115) + +[78957] +centroid = (0.52384135891103356, -1.6961484567604224) +station = ('k3t5', 0.0039667034960424574) +zone = ('txz193', 0.0025109034554514982) + +[78959] +centroid = (0.5183757905452433, -1.6982285401629491) +station = ('k3t5', 0.0064344473231551331) +zone = ('txz223', 0.0051538849604445078) + +[78962] +centroid = (0.5176377780710375, -1.6883014215368708) +station = ('k3t5', 0.0054614326176243644) +zone = ('txz210', 0.0031969638372956271) + +[78963] +centroid = (0.52214875605574196, -1.6934713834872508) +station = ('k3t5', 0.0012015529518131297) +zone = ('txz209', 0.0017912218703809081) + +[79001] +centroid = (0.61679511650471375, -1.7941109776947683) +station = ('khrx', 0.010686362683510021) +zone = ('txz011', 0.0029613718248409971) + +[79003] +centroid = (0.62102034918428173, -1.7465287120694701) +station = ('khhf', 0.0072703292124686831) +zone = ('txz015', 0.0042527623253179681) + +[79005] +centroid = (0.63495484849269423, -1.7541857856572345) +station = ('kpyx', 0.0031924312215044662) +zone = ('txz005', 0.0037496420216312043) + +[79007] +centroid = (0.62320187112293446, -1.7697427953981786) +station = ('kbgd', 0.00012054812301810885) +zone = ('txz008', 0.0024065411111515475) + +[79009] +centroid = (0.60271947241969248, -1.7955882418269489) +station = ('kcvn', 0.0034105144490567002) +zone = ('txz021', 0.0013689006951491955) + +[79010] +centroid = (0.61873620188561174, -1.7826898572289827) +station = ('kama', 0.0072909914338075031) +zone = ('txz012', 0.003612791187209652) + +[79011] +centroid = (0.62203330337555418, -1.7493647150243283) +station = ('khhf', 0.0051306534796843953) +zone = ('txz010', 0.0034954026889294889) + +[79012] +centroid = (0.61558659817075523, -1.7821404275804551) +station = ('kama', 0.0056725739044973062) +zone = ('txz012', 0.0038199574629234098) + +[79013] +centroid = (0.62899526468212685, -1.7802901167739533) +station = ('kdux', 0.0031621039665332019) +zone = ('txz007', 0.0038394466627383345) + +[79014] +centroid = (0.62671731330230152, -1.750309339575385) +station = ('khhf', 0.0016273879159949775) +zone = ('txz010', 0.0012509246485126772) + +[79015] +centroid = (0.60977391872332831, -1.7787703887810717) +station = ('kama', 0.0056439385573856396) +zone = ('txz017', 0.00056597980540573135) + +[79016] +centroid = (0.61057458851768076, -1.7788175824840455) +station = ('kama', 0.0049908703908330358) +zone = ('txz017', 0.0004351901950011641) + +[79018] +centroid = (0.62392473413923299, -1.7839602125783394) +station = ('kdux', 0.0034198987941921419) +zone = ('txz007', 0.0047982444254828166) + +[79019] +centroid = (0.61098915657490693, -1.7696597526323687) +station = ('kama', 0.0058818640177372653) +zone = ('txz018', 0.00090382549433709136) + +[79021] +centroid = (0.59314742357663985, -1.7807201135417672) +station = ('kpvw', 0.005511499738411715) +zone = ('txz029', 0.0032672799005941883) + +[79022] +centroid = (0.63003919846762235, -1.7907692132292672) +station = ('kdht', 0.0016169349687533757) +zone = ('txz001', 0.0031296573092307327) + +[79024] +centroid = (0.63599401752933171, -1.7517709830107604) +station = ('kpyx', 0.0051625614041758772) +zone = ('txz005', 0.0031339531679939851) + +[79025] +centroid = (0.60983528449982838, -1.7838292081646845) +station = ('khrx', 0.0022703219380763163) +zone = ('txz017', 0.004439948022461399) + +[79027] +centroid = (0.60053372678424988, -1.7875582262846184) +station = ('khrx', 0.0079921703764307527) +zone = ('txz022', 0.003112666350305558) + +[79029] +centroid = (0.6266075146390585, -1.7806878249506051) +station = ('kdux', 0.00079232138602530885) +zone = ('txz007', 0.0021900496912351905) + +[79031] +centroid = (0.59812880270134194, -1.7880825406452099) +station = ('khrx', 0.010435478011411996) +zone = ('txz028', 0.0037927869820334388) + +[79032] +centroid = (0.5983492203325762, -1.7792133882518129) +station = ('kpvw', 0.0038057989577761865) +zone = ('txz029', 0.0040589082882610469) + +[79033] +centroid = (0.63407881538124067, -1.7625032394740763) +station = ('kpyx', 0.0037285210514861958) +zone = ('txz004', 0.0025342454469966772) + +[79034] +centroid = (0.63459771922115116, -1.7480731888311452) +station = ('kgag', 0.0055896070119591298) +zone = ('txz005', 0.0021696856609516161) + +[79035] +centroid = (0.60546295547090234, -1.7939345249073915) +station = ('kcvn', 0.0062083016686248268) +zone = ('txz021', 0.0027990246668191691) + +[79036] +centroid = (0.62156110454642721, -1.7723360754139619) +station = ('kbgd', 0.0025851200748984397) +zone = ('txz013', 0.0045695124383136896) + +[79039] +centroid = (0.61540024936651982, -1.7644634885701611) +station = ('kppa', 0.0063226235831448556) +zone = ('txz013', 0.0044464173193529237) + +[79040] +centroid = (0.63397489847757704, -1.7725505240191544) +station = ('kguy', 0.006325673593000871) +zone = ('txz003', 0.0029981826102203433) + +[79041] +centroid = (0.59416688784602223, -1.7790484197309144) +station = ('kpvw', 0.0037914701892881675) +zone = ('txz029', 0.001591906044686976) + +[79042] +centroid = (0.60635066483505173, -1.7786091029048949) +station = ('khrx', 0.0064090827282346149) +zone = ('txz017', 0.0039219259539595916) + +[79043] +centroid = (0.59988120053680671, -1.7825277161414725) +station = ('kpvw', 0.0069409161007277231) +zone = ('txz022', 0.0033548909162802493) + +[79044] +centroid = (0.62593523126448281, -1.7866537966662348) +station = ('kdht', 0.0037128980940003492) +zone = ('txz006', 0.0033520212749309978) + +[79045] +centroid = (0.60937832239507128, -1.7899141764287154) +station = ('khrx', 0.003353768035776502) +zone = ('txz016', 0.0011479284142406261) + +[79046] +centroid = (0.63117277236350011, -1.7474542427185102) +station = ('khhf', 0.0060480905515605914) +zone = ('txz005', 0.0029174436291586558) + +[79051] +centroid = (0.63674997198824801, -1.7847624531690185) +station = ('kdht', 0.009110622087376976) +zone = ('okz001', 0.0058766058878737979) + +[79052] +centroid = (0.59972687852434536, -1.7757485606207537) +station = ('kpvw', 0.0034020286833733164) +zone = ('txz023', 0.0029444886281116624) + +[79053] +centroid = (0.60053318573218173, -1.7903483096268564) +station = ('khrx', 0.0086635567607852744) +zone = ('txz021', 0.0036399815030410108) + +[79054] +centroid = (0.61740706384704802, -1.7596674110521433) +station = ('kppa', 0.00483778597019437) +zone = ('txz014', 0.00047759302437020871) + +[79056] +centroid = (0.63222478702343221, -1.749021949812529) +station = ('khhf', 0.0062456201570441202) +zone = ('txz005', 0.0012784564559878537) + +[79057] +centroid = (0.61515874815792138, -1.7565373724782016) +station = ('kppa', 0.0081433611527494121) +zone = ('txz014', 0.0036368715308864427) + +[79058] +centroid = (0.6209794212133225, -1.7777074832666071) +station = ('kdux', 0.0053475827586973281) +zone = ('txz012', 0.0031588315452114575) + +[79059] +centroid = (0.62536478785176097, -1.7586968160018168) +station = ('kbpc', 0.0038334120727414682) +zone = ('txz009', 0.0006854659782390333) + +[79061] +centroid = (0.62002673324112134, -1.7530521943080644) +station = ('khhf', 0.006574104403717208) +zone = ('txz015', 0.0032692961955308772) + +[79062] +centroid = (0.62885302034808943, -1.7720223699342084) +station = ('kbgd', 0.0060537869548436176) +zone = ('txz008', 0.0041429631987658904) + +[79063] +centroid = (0.60268114498931868, -1.7819160655051112) +station = ('khrx', 0.0066486162535365385) +zone = ('txz022', 0.0023787011767104163) + +[79064] +centroid = (0.59682369784657807, -1.7823154491978448) +station = ('kpvw', 0.0058229379133695339) +zone = ('txz028', 0.0040237555510344684) + +[79065] +centroid = (0.62031155352175438, -1.7611519183007196) +station = ('kppa', 0.0017817772521326676) +zone = ('txz014', 0.0027852403027947901) + +[79068] +centroid = (0.61691563148956396, -1.7705363791557678) +station = ('kama', 0.0044956084420377223) +zone = ('txz013', 0.00162073489138324) + +[79070] +centroid = (0.63304240396482137, -1.7592047417207322) +station = ('kpyx', 0.0024182514101994705) +zone = ('txz004', 0.00031971536456290795) + +[79072] +centroid = (0.59637476425638003, -1.7755906432300332) +station = ('kpvw', 0.0002419444231520593) +zone = ('txz029', 0.0021928714490567079) + +[79078] +centroid = (0.62343733349232111, -1.7729128020119909) +station = ('kbgd', 0.0025813741891736581) +zone = ('txz008', 0.0038180136059075046) + +[79079] +centroid = (0.61451262726883304, -1.7495689709066893) +station = ('khhf', 0.01226508291658474) +zone = ('txz015', 0.003378223694832891) + +[79080] +centroid = (0.6239316456430708, -1.7665123480323697) +station = ('kbgd', 0.0027728975189046652) +zone = ('txz008', 0.0025546588679351279) + +[79081] +centroid = (0.63253559525662728, -1.766594500680261) +station = ('kbpc', 0.0068484256777822808) +zone = ('txz003', 0.0020150394374039322) + +[79082] +centroid = (0.59732595124542442, -1.7852579346903672) +station = ('kpvw', 0.0082942238455350811) +zone = ('txz028', 0.002869478457941227) + +[79083] +centroid = (0.62633185733699859, -1.7717726133182479) +station = ('kbgd', 0.0036349520872695105) +zone = ('txz008', 0.0024075485256518738) + +[79084] +centroid = (0.6331510158041731, -1.7801786775012134) +station = ('kdux', 0.0073183584745697052) +zone = ('txz002', 0.0014524662865105814) + +[79085] +centroid = (0.60633989615356687, -1.7892142644920805) +station = ('khrx', 0.003364579456890109) +zone = ('txz016', 0.0041399512727164633) + +[79086] +centroid = (0.62904772927944197, -1.7761934625003795) +station = ('kdux', 0.0047184163649774315) +zone = ('txz007', 0.0039727219995411307) + +[79087] +centroid = (0.6333342404690474, -1.7961495571676827) +station = ('kcao', 0.0043889830359131023) +zone = ('txz001', 0.0043588184277847334) + +[79088] +centroid = (0.60355049348973711, -1.7749512942184429) +station = ('kpvw', 0.0072111850425877339) +zone = ('txz023', 0.0010352130653936459) + +[79091] +centroid = (0.60908144188930702, -1.782438913789131) +station = ('khrx', 0.0029912711987835519) +zone = ('txz017', 0.0034886975743264248) + +[79092] +centroid = (0.61632757770468949, -1.7880268297354862) +station = ('khrx', 0.0080786623908738822) +zone = ('txz011', 0.0027464178039470852) + +[79093] +centroid = (0.63337844965900048, -1.7633750314354473) +station = ('kpyx', 0.0046423077351964697) +zone = ('txz004', 0.0030784780522918019) + +[79094] +centroid = (0.60807405529834846, -1.7716784877116878) +station = ('kama', 0.007207648297532409) +zone = ('txz018', 0.0030819820671453518) + +[79095] +centroid = (0.60919042024780157, -1.748964074694533) +station = ('kcds', 0.008285758115311485) +zone = ('txz020', 0.0013824631999790082) + +[79096] +centroid = (0.61849915126660582, -1.7487624193527576) +station = ('khhf', 0.0085731626251137096) +zone = ('txz015', 0.0012143583850478775) + +[79097] +centroid = (0.61847288406136336, -1.7658955137681298) +station = ('kppa', 0.0040290825763452092) +zone = ('txz013', 0.0025640836051078401) + +[79098] +centroid = (0.6135417006059487, -1.7840171975784169) +station = ('khrx', 0.005370203759470801) +zone = ('txz017', 0.0056177134408643128) + +[79101] +centroid = (0.61446114005589925, -1.7774363638206023) +station = ('kama', 0.0017628448556702889) +zone = ('txz012', 0.0034950721287651831) + +[79102] +centroid = (0.61429201765138097, -1.7779014591596736) +station = ('kama', 0.0021624663172347828) +zone = ('txz012', 0.0035990000625891077) + +[79103] +centroid = (0.6139598465881414, -1.7766487490890548) +station = ('kama', 0.0013051407279874704) +zone = ('txz017', 0.0039697785758357265) + +[79104] +centroid = (0.61440768062091067, -1.7765484450169429) +station = ('kama', 0.0010550559055382022) +zone = ('txz012', 0.0037723831071270939) + +[79105] +centroid = (0.62292961721291584, -1.7771087480667105) +station = ('kdux', 0.0039821760209613278) +zone = ('txz007', 0.0027524716473931671) + +[79106] +centroid = (0.61440940849687009, -1.7784032936794998) +station = ('kama', 0.0025541545545967686) +zone = ('txz012', 0.0034598654859813076) + +[79107] +centroid = (0.61488982782677415, -1.7767888466681125) +station = ('kama', 0.0012477160831928917) +zone = ('txz012', 0.0032519077413291826) + +[79108] +centroid = (0.61623907205832085, -1.7748416002749547) +station = ('kama', 0.0016339731048307898) +zone = ('txz012', 0.0033185804335355692) + +[79109] +centroid = (0.61376974532601414, -1.7782535444296785) +station = ('kama', 0.0025752405762497132) +zone = ('txz017', 0.0035029246154906013) + +[79110] +centroid = (0.61338638375581356, -1.7781086646484705) +station = ('kama', 0.0026255219022096117) +zone = ('txz017', 0.0031279528857057204) + +[79111] +centroid = (0.61471433497048611, -1.7751419714392231) +station = ('kama', 0.00013904641374256184) +zone = ('txz012', 0.0041182855899274187) + +[79118] +centroid = (0.61272169256348408, -1.7756964276359968) +station = ('kama', 0.0019534538353710362) +zone = ('txz017', 0.0033241449240690984) + +[79119] +centroid = (0.61276911315926086, -1.7805480240775204) +station = ('kama', 0.0046901817926138841) +zone = ('txz017', 0.0030380048244596242) + +[79121] +centroid = (0.61391459020063721, -1.7790097432346901) +station = ('kama', 0.0031260841773105806) +zone = ('txz017', 0.0036744120065255281) + +[79124] +centroid = (0.61544103771113901, -1.7796296492784134) +station = ('kama', 0.0036317122185986631) +zone = ('txz012', 0.0026317165597132233) + +[79201] +centroid = (0.6010524037313576, -1.750232963967318) +station = ('kcds', 8.4560506881235068e-05) +zone = ('txz026', 0.0019132645428194888) + +[79220] +centroid = (0.58910972652519855, -1.7591981967360371) +station = ('kcds', 0.013978445898819832) +zone = ('txz037', 0.002400271747853816) + +[79225] +centroid = (0.59787878428599361, -1.7368679655938311) +station = ('kf05', 0.003383285535439266) +zone = ('txz083', 0.0033780702313224008) + +[79226] +centroid = (0.60913317344833617, -1.7626874066167468) +station = ('kama', 0.011697506306124398) +zone = ('txz019', 0.0028189972798566562) + +[79227] +centroid = (0.59166335266037651, -1.741376028878685) +station = ('kf05', 0.0090825560634122306) +zone = ('txz084', 0.0013069069741857248) + +[79229] +centroid = (0.58757741470841007, -1.7571375039415) +station = ('kcds', 0.014554427021642185) +zone = ('txz037', 0.0017162977577303215) + +[79230] +centroid = (0.60566892177593012, -1.746537403809145) +station = ('kcds', 0.0056126381854050009) +zone = ('okz033', 0.0032801052337076385) + +[79231] +centroid = (0.59177795097906249, -1.7640049033091996) +station = ('kpvw', 0.010415056060669078) +zone = ('txz030', 0.0044476038101739718) + +[79233] +centroid = (0.60250504126779236, -1.7545035403008529) +station = ('kcds', 0.0038072902695193795) +zone = ('txz025', 0.0022418220559835907) + +[79234] +centroid = (0.5974339347662454, -1.7616520598511709) +station = ('kpvw', 0.011340770362501825) +zone = ('txz031', 0.0035334747194231231) + +[79235] +centroid = (0.59274603275526616, -1.7670784804818391) +station = ('kpvw', 0.0077034946479085428) +zone = ('txz030', 0.0020986895462429748) + +[79236] +centroid = (0.58836242889937218, -1.7520351036864648) +station = ('kcds', 0.012696655676583613) +zone = ('txz038', 0.0024863712017662554) + +[79237] +centroid = (0.60943900749316315, -1.7565961377141164) +station = ('kcds', 0.0099331411981537377) +zone = ('txz019', 0.0025465288619584249) + +[79239] +centroid = (0.60485472567987475, -1.7586616999772666) +station = ('kcds', 0.0079233646108310043) +zone = ('txz025', 0.0024821716895398107) + +[79240] +centroid = (0.60887671476804817, -1.7589416158827016) +station = ('kcds', 0.010642431360476727) +zone = ('txz019', 0.001467959441009184) + +[79241] +centroid = (0.59652739329946702, -1.7695005262447092) +station = ('kpvw', 0.0048019711429528461) +zone = ('txz030', 0.0021961406680558577) + +[79243] +centroid = (0.58947586169568189, -1.7626100012644208) +station = ('kpvw', 0.012567719024900352) +zone = ('txz037', 0.0041230636885894309) + +[79244] +centroid = (0.59394247341080075, -1.7600556246376644) +station = ('kcds', 0.010716957859800069) +zone = ('txz031', 0.0011988366999161571) + +[79245] +centroid = (0.60837392031713367, -1.7542804872224478) +station = ('kcds', 0.0080997279454898454) +zone = ('txz020', 0.0039499815028391852) + +[79247] +centroid = (0.5991682684439521, -1.735015560392227) +station = ('kf05', 0.0025660896614838119) +zone = ('okz036', 0.0045069417909534915) + +[79248] +centroid = (0.5933128458831437, -1.7503426579108057) +station = ('kcds', 0.0076624014206033162) +zone = ('txz032', 0.0014586008069207958) + +[79250] +centroid = (0.59127721601666516, -1.7731629775069719) +station = ('klbb', 0.0048918339327670961) +zone = ('txz029', 0.0047554454159609667) + +[79251] +centroid = (0.60987774836052944, -1.7532105654843904) +station = ('kcds', 0.009224268287758729) +zone = ('txz020', 0.0026227828098706412) + +[79252] +centroid = (0.598723593457129, -1.7421687399716481) +station = ('kf05', 0.0078427742919491908) +zone = ('txz083', 0.0010837190636427767) + +[79255] +centroid = (0.59951907962360296, -1.7636685085491703) +station = ('kpvw', 0.010124181389668521) +zone = ('txz024', 0.0038824900499597505) + +[79256] +centroid = (0.59167340575686789, -1.7583472265526423) +station = ('kcds', 0.01145145468374353) +zone = ('txz031', 0.0030713217394999714) + +[79257] +centroid = (0.6013964430335107, -1.7677944494475923) +station = ('kpvw', 0.0079970548023051216) +zone = ('txz024', 0.0017007304590817736) + +[79258] +centroid = (0.59739637528074241, -1.7678219209300188) +station = ('kpvw', 0.0062741676453446551) +zone = ('txz030', 0.0027288211869612175) + +[79259] +centroid = (0.6003669431209292, -1.7535833852659088) +station = ('kcds', 0.0027967187174559073) +zone = ('txz025', 0.0037823116528801141) + +[79261] +centroid = (0.60121751187859618, -1.7594637660350205) +station = ('kcds', 0.0075825275180192398) +zone = ('txz025', 0.0023575360875964352) + +[79311] +centroid = (0.59093151865172266, -1.7781682850957188) +station = ('klbb', 0.0034675361872754671) +zone = ('txz029', 0.0037942330727917112) + +[79312] +centroid = (0.59374467524667229, -1.7875654170411366) +station = ('kpvw', 0.010484488737168693) +zone = ('txz028', 0.0013121796094922181) + +[79313] +centroid = (0.59000666868109097, -1.7830683493305701) +station = ('klbb', 0.0055664375845612766) +zone = ('txz034', 0.0043308591681265121) + +[79314] +centroid = (0.58616708395304351, -1.7979423593753314) +station = ('kcvs', 0.014605257703530893) +zone = ('txz033', 0.002724909068864073) + +[79316] +centroid = (0.57836558436967656, -1.7859288043482489) +station = ('kgnc', 0.0093839637343947624) +zone = ('txz040', 0.00064015608398906919) + +[79322] +centroid = (0.58703391917933911, -1.765926161749795) +station = ('klbb', 0.0092651809111798863) +zone = ('txz036', 0.0017767898832560156) + +[79323] +centroid = (0.57501174222575169, -1.7954097819109325) +station = ('kgnc', 0.0056927211093988957) +zone = ('txz039', 0.0040127444116465532) + +[79324] +centroid = (0.59162968525910553, -1.7921475346461522) +station = ('kcvn', 0.010992880539713049) +zone = ('txz027', 0.0036622953771218891) + +[79325] +centroid = (0.60082275330838009, -1.7967072422235724) +station = ('kcvn', 0.0020153129549940019) +zone = ('txz021', 0.0029392432533423118) + +[79326] +centroid = (0.59477222039049149, -1.7840082614926467) +station = ('kpvw', 0.0073782321364913132) +zone = ('txz028', 0.0019664905094908224) + +[79329] +centroid = (0.58844025313071857, -1.7745628711934114) +station = ('klbb', 0.0022249470253138301) +zone = ('txz035', 0.002797221611160988) + +[79330] +centroid = (0.57667046824026214, -1.766708592853464) +station = ('ksnk', 0.007279200532508732) +zone = ('txz042', 0.0026548961226556689) + +[79331] +centroid = (0.57063913394414534, -1.7804028650436319) +station = ('kgnc', 0.0094507526833182785) +zone = ('txz046', 0.001227390700863697) + +[79336] +centroid = (0.58649874887080011, -1.7871894731202569) +station = ('klbb', 0.0085241931566547562) +zone = ('txz034', 0.00080519394821431452) + +[79339] +centroid = (0.59143104933693602, -1.786111959199953) +station = ('klbb', 0.0084636299088768057) +zone = ('txz028', 0.003185621161619987) + +[79342] +centroid = (0.57435658053113814, -1.7861106152964292) +station = ('kgnc', 0.0061651923400652666) +zone = ('txz040', 0.0046355001216577506) + +[79343] +centroid = (0.58745463079553228, -1.7720508886141859) +station = ('klbb', 0.0041515855531941903) +zone = ('txz036', 0.0034441953948644672) + +[79344] +centroid = (0.59070600465907253, -1.7964745723809892) +station = ('kcvn', 0.010503949250264617) +zone = ('txz027', 0.0041645043345307151) + +[79345] +centroid = (0.58184987242189545, -1.7860189855106994) +station = ('klbb', 0.0094395392753508361) +zone = ('txz040', 0.0028583893803761831) + +[79346] +centroid = (0.58726988769420874, -1.7946340703248835) +station = ('kcvn', 0.014205420420133142) +zone = ('txz033', 0.0007694243275869607) + +[79347] +centroid = (0.59642368583531347, -1.7940136406823846) +station = ('kcvn', 0.0062187331387914694) +zone = ('txz027', 0.0019076482209471667) + +[79350] +centroid = (0.58873132169007358, -1.7771952814910243) +station = ('klbb', 0.001144829066147201) +zone = ('txz035', 0.0021240591926507965) + +[79351] +centroid = (0.57468473733709813, -1.7761240856626128) +station = ('klbb', 0.012931928815432066) +zone = ('txz046', 0.0041946427637882533) + +[79353] +centroid = (0.58963362200676972, -1.7903927108030271) +station = ('klbb', 0.011294494720349277) +zone = ('txz034', 0.004630990598264135) + +[79355] +centroid = (0.57912928809047171, -1.7955376796385187) +station = ('kgnc', 0.009428798145354713) +zone = ('txz039', 0.00073060751819508686) + +[79356] +centroid = (0.58094837495665541, -1.7687038707076366) +station = ('klbb', 0.009616069786765595) +zone = ('txz042', 0.0019437021313733712) + +[79357] +centroid = (0.58663807850498673, -1.7698459094503864) +station = ('klbb', 0.0060619750123216583) +zone = ('txz036', 0.0015225644375954229) + +[79358] +centroid = (0.58367623731105989, -1.7836398050342581) +station = ('klbb', 0.0067554765065814173) +zone = ('txz034', 0.0036031219726768864) + +[79359] +centroid = (0.57545496858929579, -1.7904731530282516) +station = ('kgnc', 0.0052535871755721589) +zone = ('txz045', 0.0040847001053527067) + +[79360] +centroid = (0.57054499088429267, -1.7928835574450108) +station = ('kgnc', 0.0010900071775683921) +zone = ('txz045', 0.0015856846042194117) + +[79363] +centroid = (0.58828968357614897, -1.7809893829387649) +station = ('klbb', 0.0033622118421533839) +zone = ('txz035', 0.0036455895370073594) + +[79364] +centroid = (0.58385752466046459, -1.7740255017700148) +station = ('klbb', 0.0045007052281655444) +zone = ('txz035', 0.0037615947627198808) + +[79366] +centroid = (0.58521439598084246, -1.7747440363697684) +station = ('klbb', 0.0030509165236687957) +zone = ('txz035', 0.0024097876566767369) + +[79367] +centroid = (0.58680505415452511, -1.7835656809009262) +station = ('klbb', 0.0054928510495357184) +zone = ('txz034', 0.0022284570740284072) + +[79369] +centroid = (0.59263951531101688, -1.782769548962629) +station = ('klbb', 0.0069389592040135627) +zone = ('txz028', 0.0035787617513319938) + +[79370] +centroid = (0.58480612856221592, -1.761160121348204) +station = ('ksnk', 0.014213881899394416) +zone = ('txz037', 0.0026716023202233699) + +[79371] +centroid = (0.59258502613176967, -1.797099435159788) +station = ('kcvn', 0.0085586856875476541) +zone = ('txz027', 0.0028258404895980596) + +[79372] +centroid = (0.58353762326186653, -1.7887600425542489) +station = ('klbb', 0.010579351726618138) +zone = ('txz034', 0.0036902945303200034) + +[79373] +centroid = (0.57899329203515637, -1.7773135100945543) +station = ('klbb', 0.0086040062228998019) +zone = ('txz041', 0.00024586766839087713) + +[79376] +centroid = (0.58004028014684272, -1.7919837704024377) +station = ('kgnc', 0.0097537688221939946) +zone = ('txz039', 0.0024963543378759079) + +[79377] +centroid = (0.57473077912276571, -1.7825659563053837) +station = ('kgnc', 0.0088135807982094617) +zone = ('txz046', 0.0042536447058418546) + +[79378] +centroid = (0.57697326541219063, -1.7885205135677054) +station = ('kgnc', 0.0071725661263934443) +zone = ('txz040', 0.0028692517441119419) + +[79379] +centroid = (0.58486868116260737, -1.7915180292915429) +station = ('klbb', 0.012367933563553325) +zone = ('txz033', 0.0031114934696443884) + +[79380] +centroid = (0.58879780128128212, -1.7860341000620217) +station = ('klbb', 0.0075819873383335245) +zone = ('txz034', 0.0022402160229264023) + +[79381] +centroid = (0.58147317800943754, -1.7762146682507913) +station = ('klbb', 0.0061592154169242425) +zone = ('txz041', 0.0025218234071882626) + +[79382] +centroid = (0.58390491034965619, -1.780481143060584) +station = ('klbb', 0.004674617293739379) +zone = ('txz035', 0.003903811728567515) + +[79401] +centroid = (0.58623464564838834, -1.7776255924181035) +station = ('klbb', 0.0014454381952345948) +zone = ('txz035', 0.00057390889952990557) + +[79403] +centroid = (0.58718989925458986, -1.7763167001988629) +station = ('klbb', 0.00072249344408822252) +zone = ('txz035', 0.00087548677945881268) + +[79404] +centroid = (0.58516879052748783, -1.7766355194933248) +station = ('klbb', 0.0024482307311903552) +zone = ('txz035', 0.0014916113868765439) + +[79406] +centroid = (0.58618469432519626, -1.7781132025045256) +station = ('klbb', 0.0016706512600636045) +zone = ('txz035', 0.00094223085308770265) + +[79407] +centroid = (0.58585226146256886, -1.7816188882933741) +station = ('klbb', 0.004195125788374182) +zone = ('txz035', 0.0038371912450133137) + +[79410] +centroid = (0.58590826907826532, -1.7783336201357602) +station = ('klbb', 0.002002459504705388) +zone = ('txz035', 0.001241559931817736) + +[79411] +centroid = (0.58590762330644208, -1.7777528094672812) +station = ('klbb', 0.0017890567373811661) +zone = ('txz035', 0.00088570631486274427) + +[79412] +centroid = (0.58549483548505288, -1.7777315688102846) +station = ('klbb', 0.0021777946017697875) +zone = ('txz035', 0.001230793980499313) + +[79413] +centroid = (0.58551262039013074, -1.7782399483148055) +station = ('klbb', 0.0023104580328571216) +zone = ('txz035', 0.0014486404662966935) + +[79414] +centroid = (0.58551946208079864, -1.7788435878899003) +station = ('klbb', 0.0025633332390243217) +zone = ('txz035', 0.0018136341707618762) + +[79415] +centroid = (0.58820014818552169, -1.7784527388572087) +station = ('klbb', 0.001325452580452577) +zone = ('txz035', 0.0019481173511514092) + +[79416] +centroid = (0.58643240890593173, -1.7799351517106825) +station = ('klbb', 0.0026788092388629666) +zone = ('txz035', 0.0023654172261059802) + +[79423] +centroid = (0.58363768298788332, -1.777713190493261) +station = ('klbb', 0.0039965371701167398) +zone = ('txz035', 0.0030142062909671507) + +[79424] +centroid = (0.58413262345716388, -1.7793228553024978) +station = ('klbb', 0.0039513348873812647) +zone = ('txz035', 0.0030910009361512329) + +[79501] +centroid = (0.57155803234202784, -1.7436780658021878) +station = ('kdys', 0.0057664768905874471) +zone = ('txz113', 0.00041578136207662904) + +[79502] +centroid = (0.57915372269999965, -1.7496076299496208) +station = ('ksww', 0.012908329787488959) +zone = ('txz044', 0.00013790866505941215) + +[79503] +centroid = (0.57366562213356609, -1.7399971315031466) +station = ('kabi', 0.0078897608076682127) +zone = ('txz113', 0.0035142021177392941) + +[79504] +centroid = (0.56436621117296748, -1.7339945776863954) +station = ('kabi', 0.0051039876999687027) +zone = ('txz128', 0.00074606384849289914) + +[79505] +centroid = (0.58603703947047747, -1.742046008418648) +station = ('kf05', 0.013657005032367296) +zone = ('txz087', 0.0011402386652412703) + +[79506] +centroid = (0.56036284474791287, -1.7507992534964198) +station = ('ksww', 0.0066894042801288892) +zone = ('txz054', 0.0037019737142171792) + +[79508] +centroid = (0.56328897650534404, -1.7422930946808528) +station = ('kdys', 0.0025872101761977091) +zone = ('txz127', 0.0010594088885449294) + +[79510] +centroid = (0.56315491776549831, -1.7369321064438419) +station = ('kabi', 0.0035719716383422104) +zone = ('txz128', 0.0022136099455538428) + +[79511] +centroid = (0.56576444679661764, -1.76715134797811) +station = ('kbpg', 0.0054441189946829831) +zone = ('txz052', 0.0033347289480718276) + +[79512] +centroid = (0.56399450840217014, -1.7613575878997747) +station = ('ksnk', 0.0066284760620270453) +zone = ('txz053', 0.00015089838340927105) + +[79517] +centroid = (0.57385572339569335, -1.7670897378555146) +station = ('ksnk', 0.00543013790353453) +zone = ('txz047', 0.0036022379322334804) + +[79518] +centroid = (0.58191115093193302, -1.7578036786636937) +station = ('ksnk', 0.011818711273214958) +zone = ('txz043', 0.0029336364895734264) + +[79519] +centroid = (0.55941424084616154, -1.7399998891233648) +station = ('kcom', 0.0057221191632434313) +zone = ('txz127', 0.0052237568585018646) + +[79520] +centroid = (0.57346290214094697, -1.747494018772163) +station = ('ksww', 0.0084607863727774509) +zone = ('txz113', 0.0041390655930552325) + +[79521] +centroid = (0.578099910350938, -1.7392273889431398) +station = ('kabi', 0.012331825488906285) +zone = ('txz098', 0.0015173452886963707) + +[79525] +centroid = (0.56950919033311165, -1.7423733972797368) +station = ('kdys', 0.003693782400691719) +zone = ('txz113', 0.0020361575992750651) + +[79526] +centroid = (0.56961080340216275, -1.7578411683360267) +station = ('ksnk', 0.0035708671830300374) +zone = ('txz048', 0.0035035668972813612) + +[79527] +centroid = (0.56885806034907005, -1.7638200031282434) +station = ('ksnk', 0.0023728136763859339) +zone = ('txz048', 0.00339999349375639) + +[79528] +centroid = (0.57932078561600053, -1.7609262472284366) +station = ('ksnk', 0.0087538687653049389) +zone = ('txz043', 0.0017062692864410253) + +[79529] +centroid = (0.58349563064006349, -1.7427752593400088) +station = ('kf05', 0.0161311155897172) +zone = ('txz087', 0.0034524023838866423) + +[79530] +centroid = (0.56060410161041618, -1.7410187599808016) +station = ('kabi', 0.0052747115260859765) +zone = ('txz127', 0.0037555988649772623) + +[79532] +centroid = (0.56557165772744233, -1.757745454479847) +station = ('ksww', 0.0037695637418067593) +zone = ('txz053', 0.0035403184722898845) + +[79533] +centroid = (0.57346510125580441, -1.7375094962669868) +station = ('kabi', 0.007926305934506982) +zone = ('txz114', 0.0035911131562964111) + +[79534] +centroid = (0.57184543570995372, -1.74902922783551) +station = ('ksww', 0.0063934374767513121) +zone = ('txz049', 0.0028170916131152099) + +[79535] +centroid = (0.56240508941225653, -1.7537039526106364) +station = ('ksww', 0.0042594541933773673) +zone = ('txz054', 0.0017711012595942855) + +[79536] +centroid = (0.56677160649477354, -1.7459003760854597) +station = ('kdys', 0.0027529374997247954) +zone = ('txz127', 0.0036664679777801607) + +[79537] +centroid = (0.56359929604634862, -1.7490074984863224) +station = ('ksww', 0.0048544480907917039) +zone = ('txz054', 0.0028891738876877194) + +[79538] +centroid = (0.55799246073090192, -1.7398168738980007) +station = ('kcom', 0.0047878413458488202) +zone = ('txz139', 0.0048528386095626121) + +[79539] +centroid = (0.58226128143317557, -1.7431803153528116) +station = ('kdys', 0.016428134779083465) +zone = ('txz098', 0.0038427482565025262) + +[79540] +centroid = (0.57891112193397243, -1.7460448195343548) +station = ('kdys', 0.013351301787173574) +zone = ('txz044', 0.0031062655188985378) + +[79541] +centroid = (0.56112654846870802, -1.7420227606330114) +station = ('kdys', 0.0047586853260622227) +zone = ('txz127', 0.002890366976308633) + +[79543] +centroid = (0.5709727710839565, -1.7524462334450646) +station = ('ksww', 0.004398134139468388) +zone = ('txz049', 0.00050358736939781247) + +[79544] +centroid = (0.58122097793252436, -1.7427618726646459) +station = ('kdys', 0.015385348688926962) +zone = ('txz098', 0.0027990461988723105) + +[79545] +centroid = (0.56575217713197612, -1.7553393959329253) +station = ('ksww', 0.0018207035092601058) +zone = ('txz054', 0.0031456618128944875) + +[79546] +centroid = (0.57407052106673628, -1.7540245870475204) +station = ('ksww', 0.007425320016486955) +zone = ('txz049', 0.0029576105963053209) + +[79547] +centroid = (0.57940993703419241, -1.7436789210135213) +station = ('kdys', 0.013592823542414947) +zone = ('txz098', 0.0025808318556037671) + +[79548] +centroid = (0.57682726862026135, -1.7439148895283909) +station = ('kdys', 0.01102917267940029) +zone = ('txz098', 0.0035540279398453235) + +[79549] +centroid = (0.57399671109266936, -1.7600142603343922) +station = ('ksnk', 0.0037479687776746022) +zone = ('txz048', 0.0027002778109458713) + +[79553] +centroid = (0.57492735555641783, -1.7427280830903273) +station = ('kdys', 0.0090920365263969793) +zone = ('txz113', 0.0035318007322757443) + +[79556] +centroid = (0.56651270435353274, -1.7515764660656257) +station = ('ksww', 0.00160380551839933) +zone = ('txz054', 0.0028016897669770821) + +[79560] +centroid = (0.57010933924970242, -1.7490446216395124) +station = ('ksww', 0.0050797277597486737) +zone = ('txz049', 0.0030954465342107294) + +[79561] +centroid = (0.56750157300112758, -1.7487345289913108) +station = ('ksww', 0.0040813504868389373) +zone = ('txz054', 0.0048320752728400829) + +[79562] +centroid = (0.56262871844931461, -1.7429983822315835) +station = ('kdys', 0.0032100882336154935) +zone = ('txz127', 0.0011910884707997567) + +[79563] +centroid = (0.56576284109370589, -1.7436926567547344) +station = ('kdys', 0.00072979312108462438) +zone = ('txz127', 0.0020094338372268787) + +[79565] +centroid = (0.56544081039342031, -1.7643152228502041) +station = ('ksnk', 0.0055477077658013189) +zone = ('txz053', 0.0029269489694567531) + +[79566] +centroid = (0.56052135555057903, -1.747634325790731) +station = ('kdys', 0.0066879343859036003) +zone = ('txz127', 0.0048276379179134988) + +[79567] +centroid = (0.55802417336341059, -1.744461910622551) +station = ('kdys', 0.0079323346730203522) +zone = ('txz066', 0.0024963365308499708) + +[79601] +centroid = (0.56856699178971504, -1.7394880364136325) +station = ('kabi', 0.0028019968447418925) +zone = ('txz113', 0.0042384824604634313) + +[79602] +centroid = (0.56436402951140241, -1.7395258227919383) +station = ('kabi', 0.0014327026053977808) +zone = ('txz127', 0.0033371751731691448) + +[79603] +centroid = (0.56432692381150507, -1.7440677978241581) +station = ('kdys', 0.0018343950730718558) +zone = ('txz127', 0.00078796365847129217) + +[79605] +centroid = (0.56609054411406023, -1.7415214148053761) +station = ('kdys', 0.0011355737989937687) +zone = ('txz127', 0.0028185032368354119) + +[79606] +centroid = (0.56483711845844808, -1.7421407797970312) +station = ('kdys', 0.0011568838261377884) +zone = ('txz127', 0.0015153265121906295) + +[79607] +centroid = (0.56601638507414298, -1.7424082864114843) +station = ('kdys', 0.00040103138320598516) +zone = ('txz127', 0.0024030926105977324) + +[79699] +centroid = (0.56657288330614142, -1.7403706668696586) +station = ('kabi', 0.00092874078893121306) +zone = ('txz127', 0.0038030150003776804) + +[79701] +centroid = (0.55837243636235356, -1.7816576520560607) +station = ('kmdd', 0.00081977785409484264) +zone = ('txz062', 0.002273299923592864) + +[79703] +centroid = (0.55814629405117266, -1.7825460595519111) +station = ('kmdd', 0.0010982581965822676) +zone = ('txz062', 0.0024349995792244772) + +[79705] +centroid = (0.5593991612014243, -1.7812766466803505) +station = ('kmdd', 0.00066213640368587001) +zone = ('txz062', 0.0032036993512558139) + +[79706] +centroid = (0.55586970402816371, -1.7803244124937549) +station = ('kmaf', 0.0032420367458497593) +zone = ('txz062', 0.00052825545407911094) + +[79707] +centroid = (0.55944092693042446, -1.7837554680037879) +station = ('kmdd', 0.0015215861572324047) +zone = ('txz062', 0.0040865099783431421) + +[79713] +centroid = (0.56705429747371905, -1.7759508442810596) +station = ('kbpg', 0.0061549467844926415) +zone = ('txz051', 0.0043226133459694348) + +[79714] +centroid = (0.56436493708261348, -1.7924060702682503) +station = ('ke11', 0.0024755169026388045) +zone = ('txz050', 0.0010285281912976298) + +[79718] +centroid = (0.5411387935287737, -1.8109373130408104) +station = ('kpeq', 0.0075577007887598375) +zone = ('txz074', 0.0055620081227651863) + +[79719] +centroid = (0.54909201458401657, -1.8047426508332918) +station = ('kpeq', 0.0020942989855346982) +zone = ('txz067', 0.0045711752240439494) + +[79720] +centroid = (0.56293048587698435, -1.7710316686908989) +station = ('kbpg', 0.0011383188486822017) +zone = ('txz052', 0.0010700633141128588) + +[79730] +centroid = (0.54401080262610058, -1.7991749981595522) +station = ('kfst', 0.0050815796750063617) +zone = ('txz067', 0.0059392974926561343) + +[79731] +centroid = (0.54843125038250418, -1.7887490993398389) +station = ('kodo', 0.0087177189864781311) +zone = ('txz068', 0.0004247601125067622) + +[79733] +centroid = (0.56030149642470528, -1.7691605710130056) +station = ('kbpg', 0.0028045315857619241) +zone = ('txz052', 0.0036958675660494059) + +[79734] +centroid = (0.53557416027464022, -1.814446908367183) +station = ('kmrf', 0.0056402121146799022) +zone = ('txz074', 0.0011077332034460253) + +[79735] +centroid = (0.53664439617196313, -1.794037761132647) +station = ('kfst', 0.0035043163585444818) +zone = ('txz075', 0.0011662717700971815) + +[79738] +centroid = (0.5715778592823304, -1.7712467456146219) +station = ('ksnk', 0.0079110059701161303) +zone = ('txz047', 0.00078732512952276942) + +[79739] +centroid = (0.55437023930789786, -1.7715401703684672) +station = ('kbpg', 0.0076289658477457049) +zone = ('txz063', 0.0018787747168693284) + +[79741] +centroid = (0.5579697539973334, -1.791246805125783) +station = ('kodo', 0.0035407575442806291) +zone = ('txz061', 0.0021807528704550663) + +[79742] +centroid = (0.54702179229176362, -1.7953930965632834) +station = ('kfst', 0.0074590352641471652) +zone = ('txz067', 0.0045478230014367911) + +[79743] +centroid = (0.54431387905070927, -1.79064241505911) +station = ('kfst', 0.0067227775907756837) +zone = ('txz068', 0.0043854877268739339) + +[79744] +centroid = (0.53969088583461178, -1.7797169157410133) +station = ('koza', 0.011972958682950124) +zone = ('txz069', 0.0078732749402708156) + +[79745] +centroid = (0.55556299731871084, -1.7986662695891811) +station = ('kink', 0.0022949813143485413) +zone = ('txz060', 0.00034429990374052762) + +[79748] +centroid = (0.56564281480104617, -1.7740878274776035) +station = ('kbpg', 0.0041277252041432956) +zone = ('txz052', 0.0036065907545641184) + +[79749] +centroid = (0.56355019993449007, -1.7779976966146287) +station = ('kbpg', 0.0054673624139278338) +zone = ('txz051', 0.0012091186976040161) + +[79752] +centroid = (0.5450270031297817, -1.7830632878757395) +station = ('kmaf', 0.012327758070444091) +zone = ('txz069', 0.0030348377032407381) + +[79754] +centroid = (0.55507660896276501, -1.8081596040829686) +station = ('kink', 0.0059429930544339154) +zone = ('txz059', 0.00084975857448161716) + +[79755] +centroid = (0.55008638101875529, -1.7788047892206285) +station = ('kmaf', 0.0083765197120838665) +zone = ('txz069', 0.0031955056373613061) + +[79756] +centroid = (0.55048129666860413, -1.7949776558414312) +station = ('kink', 0.0067725060366962842) +zone = ('txz067', 0.0038721284996490295) + +[79758] +centroid = (0.55852506540544045, -1.7856886470431743) +station = ('kodo', 0.0019633818868381027) +zone = ('txz061', 0.0041164951058200823) + +[79759] +centroid = (0.55500023335469784, -1.7912826018287413) +station = ('kodo', 0.0040160547667350112) +zone = ('txz061', 0.001811092896880059) + +[79761] +centroid = (0.55597552334071221, -1.7863557816964566) +station = ('kodo', 0.0013005432649418258) +zone = ('txz061', 0.0028590537735396554) + +[79762] +centroid = (0.55720166950011574, -1.7864804854715117) +station = ('kodo', 0.00064318408797398312) +zone = ('txz061', 0.0029110409265082978) + +[79763] +centroid = (0.55500000646189496, -1.7885102684849961) +station = ('kodo', 0.002326488513229755) +zone = ('txz061', 0.001591359881774071) + +[79764] +centroid = (0.55617119220315325, -1.7896177497085566) +station = ('kodo', 0.0022199746163436402) +zone = ('txz061', 9.3268190398151579e-05) + +[79765] +centroid = (0.55687759676460546, -1.7848146734202384) +station = ('kmaf', 0.001033724436349329) +zone = ('txz062', 0.003481710733625942) + +[79766] +centroid = (0.55370868970822196, -1.7874546409935124) +station = ('kodo', 0.0033483161194052973) +zone = ('txz061', 0.0031609812762725866) + +[79770] +centroid = (0.55632575856170996, -1.8139784794492404) +station = ('kcnm', 0.0093940013210459319) +zone = ('txz059', 0.0052567808297896389) + +[79772] +centroid = (0.54842369310684302, -1.8086377370315525) +station = ('kpeq', 0.0018750647553326986) +zone = ('txz058', 0.0032858357308745249) + +[79777] +centroid = (0.54950968932731137, -1.8004999125013261) +station = ('kink', 0.0052461575661631888) +zone = ('txz067', 0.00097508453014046091) + +[79778] +centroid = (0.54412814111171204, -1.7789063150232169) +station = ('koza', 0.013241367561573443) +zone = ('txz069', 0.0038019591810576282) + +[79780] +centroid = (0.54213347412277779, -1.8080230495222926) +station = ('kpeq', 0.005720567631529748) +zone = ('txz058', 0.007612784437915421) + +[79781] +centroid = (0.53401835632611994, -1.776475176094944) +station = ('koza', 0.0091230794257424162) +zone = ('txz076', 0.0060083863452143381) + +[79782] +centroid = (0.56122133730038393, -1.7773898507960368) +station = ('kmdd', 0.0044220802145899813) +zone = ('txz051', 0.0031215720028788161) + +[79783] +centroid = (0.56411961360295315, -1.7809740764012247) +station = ('kmdd', 0.0050536725733701634) +zone = ('txz051', 0.0013709399388199487) + +[79785] +centroid = (0.54676770725925827, -1.8135157577579517) +station = ('kpeq', 0.0059825597419051035) +zone = ('txz058', 0.0021533057452392114) + +[79788] +centroid = (0.55121813977221112, -1.7972850858323228) +station = ('kink', 0.0048243222828894365) +zone = ('txz067', 0.0022604041787162355) + +[79789] +centroid = (0.55320394048854515, -1.8001149975880915) +station = ('kink', 0.0017691890319074496) +zone = ('txz060', 0.0030025958111952154) + +[79821] +centroid = (0.55822081961023284, -1.8604515359750182) +station = ('k5t6', 0.0024115461881853658) +zone = ('txz418', 0.0014799339140382881) + +[79830] +centroid = (0.52014466428884698, -1.801570043678894) +station = ('ke38', 0.012315131923760591) +zone = ('txz081', 0.0012768706231546527) + +[79831] +centroid = (0.53109320195306997, -1.8033748013919189) +station = ('ke38', 0.0054399394123252603) +zone = ('txz074', 0.0097701273377067705) + +[79834] +centroid = (0.50895432871005264, -1.802502450925187) +station = ('ke38', 0.02222420898913887) +zone = ('txz081', 0.0099523593930585623) + +[79835] +centroid = (0.55739543595367225, -1.8603416500453129) +station = ('k5t6', 0.0019605284750139253) +zone = ('txz418', 0.00065153295833786308) + +[79836] +centroid = (0.55104495075053572, -1.8535198735842602) +station = ('mmcs', 0.0036432265872615305) +zone = ('txz419', 0.004572495305642907) + +[79837] +centroid = (0.56258192617206859, -1.8375967635794181) +station = ('kgdp', 0.0098553728969419351) +zone = ('nmz417', 0.0026381282627581243) + +[79838] +centroid = (0.54947919842527904, -1.8529820154686731) +station = ('mmcs', 0.0047397085370980982) +zone = ('txz423', 0.0043855213789193749) + +[79839] +centroid = (0.54686710376015935, -1.8483481139447508) +station = ('mmcs', 0.0094793381884009618) +zone = ('txz423', 0.0011811727751643204) + +[79842] +centroid = (0.52509508127261861, -1.7997440802154576) +station = ('ke38', 0.0099933600030301401) +zone = ('txz081', 0.0064111291164062265) + +[79843] +centroid = (0.52857813014106858, -1.8152429704923103) +station = ('kmrf', 0.0014296577341006049) +zone = ('txz080', 0.0042179896526148728) + +[79845] +centroid = (0.52164480968752114, -1.8242031068996134) +station = ('kmrf', 0.01128335347719105) +zone = ('txz079', 0.0016922839986040605) + +[79846] +centroid = (0.51291133919017418, -1.8149760049299251) +station = ('kmrf', 0.017091577144628407) +zone = ('txz079', 0.010246134101267016) + +[79847] +centroid = (0.55563190291757958, -1.8335357489291702) +station = ('kgdp', 0.0035172589879851439) +zone = ('txz421', 0.0029252267076781474) + +[79848] +centroid = (0.52815935584034512, -1.7854905521730731) +station = ('k6r6', 0.0039017012867345467) +zone = ('txz082', 0.0034448391609748466) + +[79849] +centroid = (0.55083723911625593, -1.8544142850127374) +station = ('mmcs', 0.0030046842451618202) +zone = ('txz419', 0.0045867608325693109) + +[79851] +centroid = (0.54591013973129077, -1.8380346666887433) +station = ('kgdp', 0.012166066895922574) +zone = ('txz422', 0.001657403634543415) + +[79852] +centroid = (0.5130610011735327, -1.8084618602028291) +station = ('ke38', 0.017271732585763033) +zone = ('txz081', 0.0083855935326123555) + +[79853] +centroid = (0.54862681452519002, -1.8511675711783) +station = ('mmcs', 0.0065019360071667514) +zone = ('txz423', 0.0026600204352963284) + +[79854] +centroid = (0.53391838386656576, -1.8266643353041909) +station = ('kmrf', 0.010442740831160806) +zone = ('txz080', 0.0097248073462218119) + +[79855] +centroid = (0.54268360190300646, -1.8260422475989027) +station = ('kgdp', 0.013225931286689757) +zone = ('txz057', 0.003525991946348654) + +[79901] +centroid = (0.55432735656817644, -1.8584017689415988) +station = ('kelp', 0.0017185600227738131) +zone = ('txz418', 0.0028600255109718924) + +[79902] +centroid = (0.55473047526550956, -1.8587502413800518) +station = ('kelp', 0.00180314155091317) +zone = ('txz418', 0.0023617141946791309) + +[79903] +centroid = (0.5547735325381562, -1.8577622628503754) +station = ('kelp', 0.0010191823776614112) +zone = ('txz419', 0.0021865131885047649) + +[79904] +centroid = (0.55593560766071914, -1.8578617291644468) +station = ('kbif', 0.0009545178940373718) +zone = ('txz418', 0.0021279759166147093) + +[79905] +centroid = (0.55442223266631485, -1.8574876352925742) +station = ('kelp', 0.0010884628531690492) +zone = ('txz419', 0.0020955740504292456) + +[79906] +centroid = (0.55520059715282666, -1.8571131050883887) +station = ('kelp', 0.00033443980439463387) +zone = ('txz419', 0.0015619858186330811) + +[79907] +centroid = (0.55339557764041414, -1.8557486066791795) +station = ('mmcs', 0.0020442198205923665) +zone = ('txz419', 0.0020072736056445661) + +[79908] +centroid = (0.55601304791963002, -1.8566880301490654) +station = ('kbif', 0.00013304999347054516) +zone = ('txz419', 0.0013573002341326107) + +[79911] +centroid = (0.55662857318693093, -1.8595190589155552) +station = ('kelp', 0.0027063872715520211) +zone = ('txz418', 0.00056965616162141111) + +[79912] +centroid = (0.55586263544469328, -1.8593745805600754) +station = ('kelp', 0.0023070586700305808) +zone = ('txz418', 0.0011241843238468706) + +[79915] +centroid = (0.55407293992311324, -1.8565316137415018) +station = ('kelp', 0.001245245587339644) +zone = ('txz419', 0.0016700817437783353) + +[79916] +centroid = (0.55526178839640161, -1.8573450069861013) +station = ('kelp', 0.00051644544056657425) +zone = ('txz419', 0.0017534335827921028) + +[79920] +centroid = (0.55544623479175237, -1.8579331305841458) +station = ('kelp', 0.0010239897908586599) +zone = ('txz418', 0.0023111782253152349) + +[79922] +centroid = (0.55527426750055342, -1.8598439345025215) +station = ('k5t6', 0.0024191906984833895) +zone = ('txz418', 0.0015116544152781234) + +[79924] +centroid = (0.55680265232652482, -1.8572614929813933) +station = ('kbif', 0.001016998373252604) +zone = ('txz419', 0.0022109753547386868) + +[79925] +centroid = (0.5549613474189633, -1.8562768480305882) +station = ('kelp', 0.00052253936887612944) +zone = ('txz419', 0.00093402799646965953) + +[79927] +centroid = (0.55229212812742579, -1.8548054482046945) +station = ('mmcs', 0.0023967601794143735) +zone = ('txz419', 0.0030986002007132884) + +[79928] +centroid = (0.55202434226029229, -1.8527686315143244) +station = ('kelp', 0.0047089915556738022) +zone = ('txz419', 0.0039664865845883013) + +[79930] +centroid = (0.55552615341820122, -1.8584847768008237) +station = ('kelp', 0.0014992957065534218) +zone = ('txz418', 0.0018909283998909936) + +[79932] +centroid = (0.55632307075466181, -1.8606603995266047) +station = ('k5t6', 0.0014373439953026081) +zone = ('txz418', 0.0006024650234049241) + +[79934] +centroid = (0.55764438971817665, -1.8576153235806503) +station = ('kbif', 0.0019078972693054265) +zone = ('txz418', 0.0023431724777048355) + +[79935] +centroid = (0.55445122258519042, -1.8557969348461671) +station = ('kelp', 0.0011711931050035244) +zone = ('txz419', 0.0010109753063311587) + +[79936] +centroid = (0.55460617291618242, -1.8552322161133921) +station = ('kelp', 0.0014595209433093696) +zone = ('txz419', 0.00075892189794471833) + +[79938] +centroid = (0.55553327436154931, -1.8495491797228032) +station = ('km63', 0.0049585062508533126) +zone = ('txz420', 0.0034246694535507317) + +[79942] +centroid = (0.53364520493204359, -1.7685637556752862) +station = ('koza', 0.0034804686936079077) +zone = ('txz076', 0.0028444443741024133) + +[80002] +centroid = (0.69455066914507491, -1.8344334066700561) +station = ('kbjc', 0.00213204441200109) +zone = ('coz039', 0.002972016743243734) + +[80003] +centroid = (0.69508388468485172, -1.8337044350013754) +station = ('kbjc', 0.0017451550073371812) +zone = ('coz039', 0.0026652930998642206) + +[80004] +centroid = (0.69493226793273088, -1.8347387520226923) +station = ('kbjc', 0.0017469168695826601) +zone = ('coz039', 0.0025508496993633723) + +[80005] +centroid = (0.69553255647566192, -1.8348687266920884) +station = ('kbjc', 0.0011590348090613231) +zone = ('coz039', 0.0019423631874997912) + +[80007] +centroid = (0.69573253630135534, -1.8359532044761075) +station = ('kbjc', 0.0013857373859165589) +zone = ('coz039', 0.0017794145400149674) + +[80010] +centroid = (0.69358073731986414, -1.830202536577004) +station = ('kbkf', 0.0014968892899031487) +zone = ('coz040', 0.00091419599710009891) + +[80011] +centroid = (0.69357361637651593, -1.8287954521340462) +station = ('kbkf', 0.00059913327874506301) +zone = ('coz040', 0.00055064485799303771) + +[80012] +centroid = (0.69289056432045548, -1.8297622074600184) +station = ('kbkf', 0.0010837885934390323) +zone = ('coz040', 0.0012356023174104015) + +[80013] +centroid = (0.69222215557681921, -1.8285056227584597) +station = ('kbkf', 0.00085421059179052706) +zone = ('coz040', 0.0018899616279219272) + +[80014] +centroid = (0.69225968015573713, -1.8297694505764139) +station = ('kbkf', 0.0013460595202947924) +zone = ('coz040', 0.0018387606935648354) + +[80015] +centroid = (0.6916272077413993, -1.8287391478123767) +station = ('kapa', 0.0014252972615939193) +zone = ('coz040', 0.0024366162366906961) + +[80016] +centroid = (0.69118970605780183, -1.8274489829760099) +station = ('kbkf', 0.0020105949125435603) +zone = ('coz040', 0.0031451552386511411) + +[80017] +centroid = (0.69285954981964748, -1.8288512852168175) +station = ('kbkf', 0.00042403166675698546) +zone = ('coz040', 0.0012070302571152145) + +[80018] +centroid = (0.69268630843809453, -1.8271806560568085) +station = ('kbkf', 0.00099449332253514046) +zone = ('coz040', 0.0020461251931048799) + +[80019] +centroid = (0.69441383533171852, -1.8273976004828312) +station = ('kden', 0.0014699236703598203) +zone = ('coz040', 0.0014159791275163737) + +[80020] +centroid = (0.69692361879608644, -1.8338922673354749) +station = ('kbjc', 0.00061843642849395536) +zone = ('coz039', 0.0012109085291829751) + +[80021] +centroid = (0.69622341015347888, -1.8345805728325841) +station = ('kbjc', 0.00045555650954656068) +zone = ('coz039', 0.0013454071701372817) + +[80022] +centroid = (0.69603109232320148, -1.8290799408021212) +station = ('kden', 0.0017811579797697649) +zone = ('coz040', 0.0019917781167541823) + +[80023] +centroid = (0.69771034340971538, -1.8327595486509307) +station = ('keik', 0.00094255724026850584) +zone = ('coz039', 0.0019791250748045584) + +[80024] +centroid = (0.69540682295634826, -1.8311632356104717) +station = ('kbkf', 0.0031714544553065201) +zone = ('coz040', 0.002049331323493918) + +[80025] +centroid = (0.69708174562631708, -1.8375513850188663) +station = ('kbdu', 0.0017310052929198167) +zone = ('coz039', 0.0017497097301783654) + +[80026] +centroid = (0.69834550363110115, -1.8343364012702301) +station = ('keik', 0.00067840772919205853) +zone = ('coz039', 0.0011742143057269501) + +[80027] +centroid = (0.69727558189304351, -1.8353721494615334) +station = ('kbjc', 0.00082470984073174157) +zone = ('coz039', 0.00017341927757829999) + +[80030] +centroid = (0.69517898767579278, -1.8332496894647683) +station = ('kbjc', 0.0018357957334880677) +zone = ('coz039', 0.0027657822640196378) + +[80031] +centroid = (0.69592967124036809, -1.8332707032289624) +station = ('kbjc', 0.0012843580318513403) +zone = ('coz039', 0.0021817279290374521) + +[80033] +centroid = (0.69415803987654623, -1.8343935608032329) +station = ('kbjc', 0.0025258591374805327) +zone = ('coz039', 0.0033618034422486392) + +[80045] +centroid = (0.69373130687443363, -1.8297737440863739) +station = ('kbkf', 0.001263943820902708) +zone = ('coz040', 0.00055466755893383108) + +[80101] +centroid = (0.68704938364634338, -1.8154770016917101) +station = ('klic', 0.0050599835432649128) +zone = ('coz046', 0.0045607167559538996) + +[80102] +centroid = (0.69369167044712077, -1.822874143393975) +station = ('kftg', 0.0015793949227370621) +zone = ('coz040', 0.0048564191817541584) + +[80103] +centroid = (0.6942921509762694, -1.8176311917742765) +station = ('kftg', 0.0054646704655368639) +zone = ('coz045', 0.00051146860567908941) + +[80104] +centroid = (0.68580642996624308, -1.8296350253174254) +station = ('kmnh', 0.0029771935237976961) +zone = ('coz041', 0.0043455511234296116) + +[80105] +centroid = (0.69234584706090807, -1.8145994675970998) +station = ('kftg', 0.0080538896038394314) +zone = ('coz045', 0.0027175921345779053) + +[80106] +centroid = (0.68392728632049837, -1.8241468374845293) +station = ('kmnh', 0.0016821676519478432) +zone = ('coz041', 0.0021200115019751969) + +[80107] +centroid = (0.68782305319716741, -1.8251356712255391) +station = ('kmnh', 0.0034635280617562932) +zone = ('coz041', 0.0019733372097316356) + +[80108] +centroid = (0.68845386754871574, -1.8300298537008115) +station = ('kapa', 0.0021151223264125503) +zone = ('coz040', 0.0056254814219429093) + +[80109] +centroid = (0.68703604933085816, -1.8308743836192667) +station = ('kapa', 0.003599742802011952) +zone = ('coz036', 0.0053663544390769504) + +[80110] +centroid = (0.69195313052591678, -1.8327948741149911) +station = ('kapa', 0.0025744471743122184) +zone = ('coz040', 0.0034805064277173836) + +[80111] +centroid = (0.69137736385897641, -1.8304656624150344) +station = ('kapa', 0.00089189607278559817) +zone = ('coz040', 0.0028424831226263416) + +[80112] +centroid = (0.69072696691322077, -1.8301111511373696) +station = ('kapa', 0.00018882904890042592) +zone = ('coz040', 0.0033911456314009076) + +[80113] +centroid = (0.6919260953758033, -1.8319867866713175) +station = ('kapa', 0.0020588173003605235) +zone = ('coz040', 0.0030251164614734792) + +[80116] +centroid = (0.68626337461770781, -1.8275292332150166) +station = ('kmnh', 0.0020741245301485506) +zone = ('coz041', 0.0027177087134928803) + +[80117] +centroid = (0.68712911028657464, -1.8211269989995584) +station = ('kmnh', 0.0047512235867108081) +zone = ('coz041', 0.0024916572632399528) + +[80118] +centroid = (0.6840369628106937, -1.8309422769271693) +station = ('kmnh', 0.0036945076253793539) +zone = ('coz041', 0.005718694443340706) + +[80120] +centroid = (0.69104280169466159, -1.8327957293263246) +station = ('kapa', 0.0022230940497157967) +zone = ('coz036', 0.0039523066399417099) + +[80121] +centroid = (0.69134223038113374, -1.8317706974566283) +station = ('kapa', 0.0015835668601890344) +zone = ('coz040', 0.0033573399749934852) + +[80122] +centroid = (0.69080671100674429, -1.8318088678073694) +station = ('kapa', 0.0014314052457875849) +zone = ('coz040', 0.0038168912257506627) + +[80123] +centroid = (0.69142981100299883, -1.8338078283062638) +station = ('kapa', 0.0030745930209739149) +zone = ('coz036', 0.0035315080230884925) + +[80124] +centroid = (0.68996478162887476, -1.8307101481366539) +station = ('kapa', 0.00082677468636955457) +zone = ('coz040', 0.0042438299215044424) + +[80125] +centroid = (0.68914445942714497, -1.8335088010455194) +station = ('kapa', 0.0030735129612863982) +zone = ('coz036', 0.0029067815693331841) + +[80126] +centroid = (0.69011316952187929, -1.8318723977921421) +station = ('kapa', 0.001530198916825896) +zone = ('coz036', 0.0042841622376422143) + +[80127] +centroid = (0.68993910783557799, -1.8354696086469651) +station = ('kapa', 0.0042812394061584489) +zone = ('coz036', 0.0016147179886438865) + +[80128] +centroid = (0.69051937745198844, -1.8339741930905638) +station = ('kapa', 0.0030812715418948112) +zone = ('coz036', 0.0029041764616199372) + +[80129] +centroid = (0.69019979021265576, -1.8327763736249199) +station = ('kapa', 0.0021890582120362542) +zone = ('coz036', 0.0036338871756514614) + +[80130] +centroid = (0.68994537356759256, -1.8312590716396988) +station = ('kapa', 0.00116816860056034) +zone = ('coz040', 0.0043984777230280719) + +[80131] +centroid = (0.68899385496599019, -1.8327273822328165) +station = ('kapa', 0.0026417205044500305) +zone = ('coz036', 0.0035123611425747644) + +[80132] +centroid = (0.68241344008719607, -1.8299171577910103) +station = ('kaff', 0.0023519182930705081) +zone = ('coz081', 0.0053841366154983835) + +[80133] +centroid = (0.68233678522644858, -1.8321714599594712) +station = ('kaff', 0.0031091461242980451) +zone = ('coz081', 0.004334107661627582) + +[80134] +centroid = (0.68915198179622106, -1.8287322188552464) +station = ('kapa', 0.001711657167853484) +zone = ('coz041', 0.0047819860951099843) + +[80135] +centroid = (0.68510929310311897, -1.8353469992670122) +station = ('k4bm', 0.0059956494370575495) +zone = ('coz036', 0.0042808587075291657) + +[80136] +centroid = (0.69437746267010692, -1.8200451392094175) +station = ('kftg', 0.0036092508700985449) +zone = ('coz045', 0.0023620049904565805) + +[80137] +centroid = (0.69413807330990351, -1.8255804509321174) +station = ('kftg', 0.00067857915616940684) +zone = ('coz040', 0.0027645178623318606) + +[80138] +centroid = (0.68971327968366236, -1.8268519407454877) +station = ('kapa', 0.0025577184063981934) +zone = ('coz041', 0.0042678479654415288) + +[80202] +centroid = (0.69380166109658159, -1.8325544026506513) +station = ('kbjc', 0.0032884886002978462) +zone = ('coz040', 0.002608964950883942) + +[80203] +centroid = (0.6934487380685358, -1.8322928999688251) +station = ('kapa', 0.0033871581539384626) +zone = ('coz040', 0.0024693111862630589) + +[80204] +centroid = (0.69350378575314364, -1.8329516570416977) +station = ('kbjc', 0.0034258106438365887) +zone = ('coz040', 0.0029529547613484264) + +[80205] +centroid = (0.69392296147959509, -1.8319469582577872) +station = ('kbkf', 0.0028776791831548847) +zone = ('coz040', 0.0021341667154262554) + +[80206] +centroid = (0.69342440817876294, -1.8317687426878662) +station = ('kapa', 0.0031713316657198047) +zone = ('coz040', 0.0020873751406760067) + +[80207] +centroid = (0.69398298335257125, -1.8311407383164133) +station = ('kbkf', 0.0023158439913429046) +zone = ('coz040', 0.0015122360813773072) + +[80209] +centroid = (0.69301057315982262, -1.8319979393252379) +station = ('kapa', 0.0028954532858004155) +zone = ('coz040', 0.0024029152732649712) + +[80210] +centroid = (0.69248775978238764, -1.831937987265432) +station = ('kapa', 0.0024419377144969234) +zone = ('coz040', 0.0026321709469435449) + +[80211] +centroid = (0.6940728329024638, -1.8329401727752195) +station = ('kbjc', 0.0029103817079405578) +zone = ('coz040', 0.0028944066825758756) + +[80212] +centroid = (0.69415317040793323, -1.8334339438739014) +station = ('kbjc', 0.0026864584137411907) +zone = ('coz039', 0.0035947124019537597) + +[80214] +centroid = (0.69365128352822969, -1.8338004630168203) +station = ('kbjc', 0.0030926114906841334) +zone = ('coz039', 0.0039677495556125564) + +[80215] +centroid = (0.69367714930774427, -1.8346198951006316) +station = ('kbjc', 0.0030001246870011403) +zone = ('coz039', 0.0038048715358395425) + +[80216] +centroid = (0.69441903641288949, -1.8318495688855261) +station = ('kbkf', 0.0029940151021134427) +zone = ('coz040', 0.0020901666595469766) + +[80218] +centroid = (0.6934381962798537, -1.8320838618843138) +station = ('kapa', 0.0032961080613119224) +zone = ('coz040', 0.0023163263103382092) + +[80219] +centroid = (0.69281356039385744, -1.8332170692610485) +station = ('kapa', 0.0033561959250851562) +zone = ('coz040', 0.0033421128258846796) + +[80220] +centroid = (0.69348584376843314, -1.831140057638005) +station = ('kbkf', 0.0021685039449885761) +zone = ('coz040', 0.001609566465794336) + +[80221] +centroid = (0.69493891763718108, -1.8327883116770036) +station = ('kbjc', 0.00224146909668521) +zone = ('coz039', 0.0031692920805293547) + +[80222] +centroid = (0.69239003879756855, -1.8313373147500656) +station = ('kapa', 0.0021010589945983874) +zone = ('coz040', 0.0023433355993621309) + +[80223] +centroid = (0.69282230449340998, -1.8326627875972001) +station = ('kapa', 0.0030586837614267849) +zone = ('coz040', 0.0029461287286511161) + +[80224] +centroid = (0.69268217200776727, -1.8310482533193504) +station = ('kapa', 0.0022687029684579853) +zone = ('coz040', 0.0019802602697519107) + +[80226] +centroid = (0.6931199005841675, -1.8341930224721787) +station = ('kbjc', 0.0035732987080798616) +zone = ('coz039', 0.0044096456846582817) + +[80227] +centroid = (0.69230744981736414, -1.8341634391413573) +station = ('kapa', 0.0036633605216433119) +zone = ('coz036', 0.0039871067451909738) + +[80228] +centroid = (0.69280787062049598, -1.8356179441800917) +station = ('kbjc', 0.0039428333809755052) +zone = ('coz036', 0.0039005005681683443) + +[80229] +centroid = (0.69560652352936136, -1.8318472999574984) +station = ('kbjc', 0.0023899791359561994) +zone = ('coz040', 0.0025819069322090991) + +[80230] +centroid = (0.69323542392735704, -1.8306807218854655) +station = ('kbkf', 0.0017828587898571944) +zone = ('coz040', 0.0014103516341543326) + +[80231] +centroid = (0.6923969153948214, -1.830637507533186) +station = ('kapa', 0.0018976333884048742) +zone = ('coz040', 0.0019918834841552487) + +[80232] +centroid = (0.69266648149779197, -1.8341705949912905) +station = ('kapa', 0.0038509982154529662) +zone = ('coz036', 0.0042760877593939831) + +[80233] +centroid = (0.69638062941249834, -1.8316630280950728) +station = ('keik', 0.0025150457750822849) +zone = ('coz039', 0.0029979984609089733) + +[80234] +centroid = (0.69656079975118179, -1.8326394525451009) +station = ('kbjc', 0.0015326942868371413) +zone = ('coz039', 0.0022359958507471925) + +[80235] +centroid = (0.69202022098236349, -1.8341377129881831) +station = ('kapa', 0.0035183599828177482) +zone = ('coz036', 0.0037744790061177715) + +[80236] +centroid = (0.6920522826807225, -1.8332863937389379) +station = ('kapa', 0.0029493872315176808) +zone = ('coz040', 0.0037360690205174257) + +[80237] +centroid = (0.69184626401581717, -1.8308802479255535) +station = ('kapa', 0.001454632099224565) +zone = ('coz040', 0.0025567243459253168) + +[80238] +centroid = (0.69414638107714299, -1.8305446560169798) +station = ('kbkf', 0.0019866062710093596) +zone = ('coz040', 0.0010581601411440889) + +[80239] +centroid = (0.69442511015868635, -1.8297778979699937) +station = ('kbkf', 0.0017327519065190892) +zone = ('coz040', 0.00060216314637264714) + +[80241] +centroid = (0.69690155783434116, -1.8318069653984848) +station = ('keik', 0.0020285228231750893) +zone = ('coz039', 0.002746212899780537) + +[80246] +centroid = (0.69298641780297499, -1.8313886797899517) +station = ('kapa', 0.0026507549011939757) +zone = ('coz040', 0.0020024167787594032) + +[80247] +centroid = (0.69286651368336294, -1.8304806373400166) +station = ('kbkf', 0.0016342755106523775) +zone = ('coz040', 0.0015449902272642549) + +[80249] +centroid = (0.69554627476358255, -1.8272820771396416) +station = ('kden', 0.0004652758031755118) +zone = ('coz040', 0.0020931007600681431) + +[80260] +centroid = (0.69580898172259265, -1.8327014640934243) +station = ('kbjc', 0.00171690306717845) +zone = ('coz039', 0.0025889051442865869) + +[80264] +centroid = (0.69363707654811846, -1.8323423276932416) +station = ('kbjc', 0.003512030081553659) +zone = ('coz040', 0.0024683466636188519) + +[80290] +centroid = (0.69366526361553815, -1.832364528281327) +station = ('kbjc', 0.0034790842115425226) +zone = ('coz040', 0.0024807364626233367) + +[80293] +centroid = (0.69370298018067378, -1.8324200472048329) +station = ('kbjc', 0.0034251271252416179) +zone = ('coz040', 0.0025175611693299665) + +[80294] +centroid = (0.69375881326344502, -1.8324084407653072) +station = ('kbjc', 0.0033812289593193267) +zone = ('coz040', 0.002501758756994777) + +[80301] +centroid = (0.69899508027210833, -1.8361111742267056) +station = ('kbdu', 0.00051115778315878016) +zone = ('coz039', 0.0016656696442134975) + +[80302] +centroid = (0.69881571278488097, -1.8390886361174377) +station = ('kbdu', 0.0019045718530635674) +zone = ('coz039', 0.003197325855341597) + +[80303] +centroid = (0.69766433653063276, -1.8362482698394498) +station = ('kbdu', 0.0010289690681897282) +zone = ('coz039', 0.00074591758355615091) + +[80304] +centroid = (0.69892444679728016, -1.8376792129332822) +station = ('kbdu', 0.0008617431285592894) +zone = ('coz039', 0.0023370621565868659) + +[80305] +centroid = (0.69770119788443485, -1.8369268887592103) +station = ('kbdu', 0.00098450183430065551) +zone = ('coz039', 0.0012592668293734332) + +[80310] +centroid = (0.69816919047006465, -1.8371973624333917) +station = ('kbdu', 0.000662327157417546) +zone = ('coz039', 0.0016120457153584761) + +[80401] +centroid = (0.69322254339747724, -1.8367152326808207) +station = ('kbjc', 0.0038073019832246167) +zone = ('coz036', 0.0041228491203973349) + +[80403] +centroid = (0.69524531018736868, -1.8377104019670154) +station = ('kbjc', 0.0027626150418955356) +zone = ('coz039', 0.0028639160584454314) + +[80419] +centroid = (0.69339124692297505, -1.8361355739296485) +station = ('kbjc', 0.0034830364425558354) +zone = ('coz039', 0.0041010682687990232) + +[80420] +centroid = (0.68634840705886491, -1.8520903267538293) +station = ('kccu', 0.0025248808904543493) +zone = ('coz058', 0.0017972611114608333) + +[80421] +centroid = (0.68874699559658825, -1.8413584019030713) +station = ('k4bm', 0.0071930204242786006) +zone = ('coz036', 0.003174383683646169) + +[80422] +centroid = (0.6958714470565216, -1.841825452010905) +station = ('kbdu', 0.0048718973530226467) +zone = ('coz034', 0.0063409830027889424) + +[80423] +centroid = (0.6962808314858695, -1.8602338585107099) +station = ('k20v', 0.0040010185201778412) +zone = ('coz032', 0.0059001037595194632) + +[80424] +centroid = (0.6889396450394234, -1.8501210717588044) +station = ('kccu', 0.0019719709058543013) +zone = ('coz034', 0.0030836177335184047) + +[80425] +centroid = (0.68675917029832179, -1.8361880385269633) +station = ('kapa', 0.00612399718875017) +zone = ('coz036', 0.0025078912410970754) + +[80426] +centroid = (0.69659729458584096, -1.867510205975444) +station = ('kege', 0.0047102721205072142) +zone = ('coz008', 0.004962752423764919) + +[80427] +centroid = (0.69429688081854246, -1.8412343962597173) +station = ('kbdu', 0.0056196094533603061) +zone = ('coz039', 0.0055245374698653874) + +[80428] +centroid = (0.71285693897705282, -1.8661976485647742) +station = ('ksbs', 0.0057601305324642546) +zone = ('coz004', 0.0048750251239577398) + +[80432] +centroid = (0.68455960165520335, -1.8465043655762365) +station = ('k4bm', 0.0048625056054363482) +zone = ('coz037', 0.0044729007450515458) + +[80433] +centroid = (0.68901621263370838, -1.837175214205184) +station = ('kapa', 0.0057649319067462406) +zone = ('coz036', 0.00013107973204397121) + +[80434] +centroid = (0.71284922462175904, -1.8550544194224914) +station = ('k33v', 0.0016655983990595535) +zone = ('coz030', 0.0029234096944081218) + +[80435] +centroid = (0.69069097822404457, -1.8489072301706271) +station = ('kccu', 0.0034475332393515447) +zone = ('coz034', 0.0012515767185769927) + +[80436] +centroid = (0.69432056493649197, -1.8438043935832789) +station = ('kbdu', 0.0070176440131249846) +zone = ('coz034', 0.0041706113824506088) + +[80438] +centroid = (0.69399577661598844, -1.8462919240996838) +station = ('kccu', 0.0071280451755146614) +zone = ('coz034', 0.002906100482138141) + +[80439] +centroid = (0.69175116102487599, -1.8402794393594886) +station = ('kbjc', 0.0065654884422727969) +zone = ('coz036', 0.0035037714696176956) + +[80440] +centroid = (0.68470675036443907, -1.8495085833644018) +station = ('klxv', 0.0046998772882944915) +zone = ('coz058', 0.0033382687300361597) + +[80442] +centroid = (0.6968053727392638, -1.8481189522139638) +station = ('k20v', 0.0067989126799059066) +zone = ('coz032', 0.0049983908289468219) + +[80443] +centroid = (0.69016605299821476, -1.8530640633968094) +station = ('kccu', 0.0013669954436483322) +zone = ('coz034', 0.0044632146956344945) + +[80444] +centroid = (0.69129699144692203, -1.8457032245429861) +station = ('kccu', 0.0059121651983139968) +zone = ('coz034', 0.0013397045950937342) + +[80446] +centroid = (0.70120636007450754, -1.8491653120071196) +station = ('k20v', 0.0059941632600096538) +zone = ('coz032', 0.0039080791491980169) + +[80447] +centroid = (0.70330447272820751, -1.8459035359812375) +station = ('klmo', 0.0083736025291631603) +zone = ('coz033', 0.0038575668346829614) + +[80448] +centroid = (0.68806338503516706, -1.8439389759219003) +station = ('k4bm', 0.0067602593200867785) +zone = ('coz034', 0.0041597554678022937) + +[80449] +centroid = (0.68026958235380142, -1.8475496432652558) +station = ('kaej', 0.0045685386701719063) +zone = ('coz037', 0.0024881081972001769) + +[80451] +centroid = (0.69984990763315025, -1.8513255932887756) +station = ('k20v', 0.0040264834851966589) +zone = ('coz032', 0.001869373884541345) + +[80452] +centroid = (0.69271076050091496, -1.8443032261367911) +station = ('kccu', 0.0075260512851307252) +zone = ('coz034', 0.0028343713479337973) + +[80453] +centroid = (0.69224447833795211, -1.836829412120486) +station = ('kbjc', 0.0047434910566465302) +zone = ('coz036', 0.0031409973423785023) + +[80454] +centroid = (0.69164860547802876, -1.836824001599805) +station = ('kbjc', 0.0053033858377160605) +zone = ('coz036', 0.0025501060538423745) + +[80455] +centroid = (0.69978672671422792, -1.839548792174726) +station = ('kbdu', 0.0025177490429251852) +zone = ('coz039', 0.0039976769540207889) + +[80456] +centroid = (0.68499582924844682, -1.8419599819896488) +station = ('k4bm', 0.0034528760212813206) +zone = ('coz037', 0.0049480635486142755) + +[80457] +centroid = (0.6919925051538417, -1.8376742387449141) +station = ('kbjc', 0.0052357334109326024) +zone = ('coz036', 0.0028866524959420426) + +[80459] +centroid = (0.70122449404543585, -1.8579834309731884) +station = ('k20v', 0.0024417500887195824) +zone = ('coz032', 0.003751923580922527) + +[80461] +centroid = (0.68472306919294512, -1.8555146278396573) +station = ('klxv', 5.497865763635019e-05) +zone = ('coz059', 0.00088456698042566572) + +[80463] +centroid = (0.69761759661326428, -1.8626238774818058) +station = ('k20v', 0.0049185553562643564) +zone = ('coz008', 0.0072631653975538685) + +[80465] +centroid = (0.69130896440559064, -1.836183727563711) +station = ('kapa', 0.0048396086345163167) +zone = ('coz036', 0.0023429642407202648) + +[80466] +centroid = (0.69772016961340411, -1.8420471437324935) +station = ('kbdu', 0.004268606382504295) +zone = ('coz039', 0.0051642548220445141) + +[80467] +centroid = (0.70175571990986541, -1.8644723207860079) +station = ('ksbs', 0.0054200402441961573) +zone = ('coz005', 0.0036609349734127651) + +[80468] +centroid = (0.69729259885325057, -1.8521901944936285) +station = ('k20v', 0.0037396435711674436) +zone = ('coz032', 0.002401573756425193) + +[80469] +centroid = (0.7016237730184145, -1.8669536553835682) +station = ('ksbs', 0.0056892261994719801) +zone = ('coz005', 0.0033212422932027232) + +[80470] +centroid = (0.68730109503106607, -1.838263950592578) +station = ('k4bm', 0.006291723781229509) +zone = ('coz036', 0.0019749331022159726) + +[80471] +centroid = (0.69700161756035806, -1.8399479664279497) +station = ('kbdu', 0.0030457347525820696) +zone = ('coz039', 0.0035766030184117559) + +[80473] +centroid = (0.7053982744186551, -1.852393699884411) +station = ('k33v', 0.0060569150230760441) +zone = ('coz033', 0.0032668618204726115) + +[80475] +centroid = (0.68862457820285328, -1.8425513868066872) +station = ('k4bm', 0.0071090215115961145) +zone = ('coz036', 0.0041035138217803161) + +[80476] +centroid = (0.69238307493385309, -1.8471577470350131) +station = ('kccu', 0.0055381124755757329) +zone = ('coz034', 0.0011761191168228862) + +[80477] +centroid = (0.70662082519979952, -1.8645239650785743) +station = ('ksbs', 0.0007241735878528191) +zone = ('coz004', 0.0021642729197147393) + +[80478] +centroid = (0.69863817789336802, -1.8474793937628631) +station = ('k20v', 0.0069096386531779944) +zone = ('coz032', 0.0048196180628905039) + +[80479] +centroid = (0.69875848343870806, -1.8642646615116056) +station = ('k20v', 0.0059618740366926895) +zone = ('coz005', 0.0064885386542822112) + +[80480] +centroid = (0.70987581189489146, -1.8560104584268562) +station = ('k33v', 0.0017250424028007355) +zone = ('coz030', 0.0004359159395563059) + +[80481] +centroid = (0.69990165664547177, -1.8426621454010186) +station = ('klmo', 0.0056546748142613582) +zone = ('coz039', 0.0061366564354963958) + +[80482] +centroid = (0.6962239686588394, -1.8463062881594277) +station = ('kccu', 0.0088672501624961122) +zone = ('coz034', 0.0050722164642600324) + +[80483] +centroid = (0.6998087004095106, -1.8662628540656288) +station = ('ksbs', 0.0073872472709120051) +zone = ('coz005', 0.0051533706272901885) + +[80487] +centroid = (0.70757298957322501, -1.8648865921372613) +station = ('ksbs', 0.00047716521955085259) +zone = ('coz004', 0.0014567207812341558) + +[80488] +centroid = (0.70596304551130795, -1.8643290118011266) +station = ('ksbs', 0.0013495470518715112) +zone = ('coz005', 0.0021611305098977076) + +[80497] +centroid = (0.6923853089552956, -1.8500501066714181) +station = ('kccu', 0.0040869883034899464) +zone = ('coz034', 0.0023199764729974152) + +[80498] +centroid = (0.69370957752524631, -1.8547706463394096) +station = ('kccu', 0.0051376936733821708) +zone = ('coz032', 0.0057485574316030186) + +[80501] +centroid = (0.70100864917684169, -1.8343965278629613) +station = ('klmo', 0.00076257394077188466) +zone = ('coz039', 0.0036337659329381058) + +[80503] +centroid = (0.70108155157969743, -1.8362674684612215) +station = ('klmo', 0.00069007429204729753) +zone = ('coz039', 0.0037093148367203866) + +[80504] +centroid = (0.70098335935598022, -1.8331208318060934) +station = ('klmo', 0.0017338249879013889) +zone = ('coz039', 0.0039186277020583126) + +[80510] +centroid = (0.70185188755165029, -1.843184068660535) +station = ('klmo', 0.0060274082411327316) +zone = ('coz033', 0.0062433902234217209) + +[80511] +centroid = (0.70406897930045864, -1.8425822965877399) +station = ('klmo', 0.0063275143231199069) +zone = ('coz035', 0.0048961585172759801) + +[80512] +centroid = (0.70918675590620406, -1.8427457641254816) +station = ('kfnl', 0.0081474611547812208) +zone = ('coz035', 0.0015235126429871241) + +[80513] +centroid = (0.70337376229951176, -1.8344096003790586) +station = ('klmo', 0.0025609473846531791) +zone = ('coz039', 0.0059702959960949605) + +[80514] +centroid = (0.69927904534140795, -1.8318194445026366) +station = ('keik', 0.001493589987109677) +zone = ('coz039', 0.0032479041142348948) + +[80515] +centroid = (0.70620173673981068, -1.8392679163382026) +station = ('klmo', 0.0060501449407286689) +zone = ('coz035', 0.0028297715806462199) + +[80516] +centroid = (0.69902377348501121, -1.833077983972957) +station = ('keik', 0.00061983886074338526) +zone = ('coz039', 0.0023325229742445848) + +[80517] +centroid = (0.7048473088803856, -1.8428225760658619) +station = ('klmo', 0.006896722027846784) +zone = ('coz035', 0.0042159393498531744) + +[80520] +centroid = (0.70010565072844488, -1.8313989597792462) +station = ('keik', 0.002269012757136759) +zone = ('coz039', 0.0040111521791005578) + +[80521] +centroid = (0.70850937617021259, -1.8348195433137671) +station = ('kfnl', 0.0029202669780026792) +zone = ('coz035', 0.0045581265434359378) + +[80524] +centroid = (0.70943466247315734, -1.8331063455733021) +station = ('kfnl', 0.0034530193911804282) +zone = ('coz038', 0.0027649489339789334) + +[80525] +centroid = (0.70737576736774965, -1.8332377863192697) +station = ('kfnl', 0.0014155102189898499) +zone = ('coz038', 0.0041808122232830369) + +[80526] +centroid = (0.70718709727560913, -1.8350954449619223) +station = ('kfnl', 0.0020653859173759086) +zone = ('coz035', 0.004624946335168462) + +[80528] +centroid = (0.70676402946492567, -1.8326766804180461) +station = ('kfnl', 0.00079456005246755692) +zone = ('coz038', 0.0044577140242212879) + +[80530] +centroid = (0.69983849317984204, -1.8313614002937431) +station = ('keik', 0.0021080911650062316) +zone = ('coz039', 0.0038618721695298495) + +[80532] +centroid = (0.70673783207285323, -1.840749840499486) +station = ('klmo', 0.0071067297022711362) +zone = ('coz035', 0.0020391916909016242) + +[80534] +centroid = (0.70392301741511432, -1.831504430025944) +station = ('kfnl', 0.0023157729363066887) +zone = ('coz043', 0.0047314451697920623) + +[80535] +centroid = (0.71092416136339431, -1.8358044326106675) +station = ('kfnl', 0.0054127532508382184) +zone = ('coz035', 0.0043636948212628385) + +[80536] +centroid = (0.71328704046462177, -1.8390371139979189) +station = ('kfnl', 0.0086648084861317923) +zone = ('coz035', 0.0047069401892589954) + +[80537] +centroid = (0.70449288486918304, -1.8357367138356899) +station = ('kfnl', 0.0026340771560382963) +zone = ('coz035', 0.0057665357680179007) + +[80538] +centroid = (0.70613981245794999, -1.8334579770577013) +station = ('kfnl', 0.00046128332411576487) +zone = ('coz038', 0.0052955557951050438) + +[80540] +centroid = (0.70224533712492743, -1.8389582949288987) +station = ('klmo', 0.0030300485780867794) +zone = ('coz039', 0.0055501938696731149) + +[80542] +centroid = (0.70223463825661259, -1.8325849982724387) +station = ('klmo', 0.0025103466152945207) +zone = ('coz039', 0.0052270224081821083) + +[80543] +centroid = (0.70414179443685176, -1.8299942664373634) +station = ('kfnl', 0.0028726086977117122) +zone = ('coz043', 0.0036978937822125233) + +[80544] +centroid = (0.69993658068380415, -1.8355818507711608) +station = ('klmo', 0.00099867832478041244) +zone = ('coz039', 0.0025006871130309675) + +[80545] +centroid = (0.71341502545867053, -1.8437320496857836) +station = ('klar', 0.0077060317778666993) +zone = ('coz035', 0.0051389068691571642) + +[80546] +centroid = (0.70729890306749188, -1.8299724149151284) +station = ('kfnl', 0.0025762107016395141) +zone = ('coz038', 0.0033709219482336563) + +[80547] +centroid = (0.70732312823750954, -1.8319912023543252) +station = ('kfnl', 0.0015008342878191693) +zone = ('coz038', 0.003721373205873024) + +[80549] +centroid = (0.71321930423635183, -1.8334469640301212) +station = ('kcys', 0.0059642770054609386) +zone = ('coz038', 0.0037350559151473526) + +[80550] +centroid = (0.70659056119056995, -1.8308675419285987) +station = ('kfnl', 0.0016508597193208561) +zone = ('coz038', 0.0041513242456524876) + +[80601] +centroid = (0.69746894692087202, -1.8292413488513457) +station = ('kden', 0.0025179432934100388) +zone = ('coz040', 0.0034286776232877588) + +[80602] +centroid = (0.69751090463608989, -1.831052878441868) +station = ('keik', 0.0020893350895734913) +zone = ('coz039', 0.0032700764303084913) + +[80603] +centroid = (0.69782122417709458, -1.8280071392707977) +station = ('kden', 0.0022260703408752114) +zone = ('coz040', 0.0038853428484814916) + +[80610] +centroid = (0.70966249775371271, -1.8254605817190905) +station = ('kgxy', 0.0040068819018443036) +zone = ('coz038', 0.0034721366833799687) + +[80611] +centroid = (0.70903969446343107, -1.820153209996701) +station = ('kgxy', 0.0056819811214389041) +zone = ('coz042', 0.0042905854269135995) + +[80612] +centroid = (0.71335343278936769, -1.8300225582245384) +station = ('kcys', 0.0048987240716695767) +zone = ('coz038', 0.0026884580930134627) + +[80615] +centroid = (0.70765522948757908, -1.8264119781476451) +station = ('kgxy', 0.0019672933777745145) +zone = ('coz038', 0.0039825139781710251) + +[80620] +centroid = (0.70465497359681573, -1.8276648452978967) +station = ('kgxy', 0.0015270965684986483) +zone = ('coz043', 0.0025010345882745177) + +[80621] +centroid = (0.70000335698098559, -1.8291241325387815) +station = ('keik', 0.0036568363305517285) +zone = ('coz043', 0.0039367796789046092) + +[80622] +centroid = (0.70752179906626411, -1.8231780750299174) +station = ('kgxy', 0.0029337902499300219) +zone = ('coz043', 0.0050481733338167394) + +[80623] +centroid = (0.70311250396378067, -1.8288001819763191) +station = ('kgxy', 0.0032566021195757256) +zone = ('coz043', 0.002552437252626911) + +[80624] +centroid = (0.70662768434375989, -1.8238481592896354) +station = ('kgxy', 0.0020154130722546773) +zone = ('coz043', 0.0040360927392775661) + +[80631] +centroid = (0.70586120554945397, -1.8268897445770862) +station = ('kgxy', 0.00055349040231092211) +zone = ('coz043', 0.0032548978072214985) + +[80634] +centroid = (0.70517087547041268, -1.8289814344191386) +station = ('kgxy', 0.0021842689960976137) +zone = ('coz043', 0.003576817547255539) + +[80640] +centroid = (0.6961303491977624, -1.830547989595851) +station = ('kden', 0.0029115354137726232) +zone = ('coz040', 0.0023407117835616874) + +[80642] +centroid = (0.69902907928593727, -1.8258262631039683) +station = ('kden', 0.0033059682222000052) +zone = ('coz043', 0.0037683693118822983) + +[80643] +centroid = (0.70009938499643032, -1.8235618554791384) +station = ('kden', 0.004951433868867189) +zone = ('coz043', 0.0030628319095336474) + +[80644] +centroid = (0.70481353675935943, -1.8232198931187951) +station = ('kgxy', 0.0024315911155800697) +zone = ('coz043', 0.0026599684564879043) + +[80645] +centroid = (0.70390399332626763, -1.8268005407990167) +station = ('kgxy', 0.001849029311649295) +zone = ('coz043', 0.0015021895545792292) + +[80648] +centroid = (0.71132401629502628, -1.8280738981146867) +station = ('kgxy', 0.0058069853163675933) +zone = ('coz038', 0.0014924349735438971) + +[80649] +centroid = (0.70477695465823753, -1.8182205196495049) +station = ('kgxy', 0.0061420893611911298) +zone = ('coz044', 0.005295021702411134) + +[80650] +centroid = (0.70897923625814196, -1.8296257750723899) +station = ('kfnl', 0.0038862546001201034) +zone = ('coz038', 0.0016972051683714795) + +[80651] +centroid = (0.70235047575906751, -1.8292695708253504) +station = ('kgxy', 0.0040832092187873684) +zone = ('coz043', 0.0029237612392303959) + +[80652] +centroid = (0.70054955777039718, -1.8199625502292129) +station = ('kgxy', 0.0070060673651366713) +zone = ('coz043', 0.0047729522266450773) + +[80653] +centroid = (0.70509151534932446, -1.8146457188222778) +station = ('kstk', 0.010136802542129206) +zone = ('coz044', 0.0032048075774261031) + +[80654] +centroid = (0.70054205285461357, -1.8162854556545263) +station = ('kftg', 0.0089638356645744474) +zone = ('coz044', 0.0040431532518337846) + +[80701] +centroid = (0.70106722242653863, -1.8122060277806697) +station = ('kako', 0.0082035833484498406) +zone = ('coz044', 0.0016752160802808618) + +[80705] +centroid = (0.70285279897108399, -1.8121693060532078) +station = ('kstk', 0.0096108363384372446) +zone = ('coz044', 0.00029737698066810794) + +[80720] +centroid = (0.69949745584400236, -1.8015267769667371) +station = ('kako', 0.0015437232067341553) +zone = ('coz049', 0.0018883017374734046) + +[80721] +centroid = (0.71016770075899494, -1.7829218987530353) +station = ('kheq', 0.0026632229498162103) +zone = ('coz051', 0.0031719042865480046) + +[80722] +centroid = (0.7069737656811379, -1.8024305084534196) +station = ('kstk', 0.0018110564682115254) +zone = ('coz048', 0.0043668968488225516) + +[80723] +centroid = (0.70103350266539011, -1.8073791452013546) +station = ('kako', 0.0045150993553948384) +zone = ('coz044', 0.0037878396133013805) + +[80726] +centroid = (0.71392766356656634, -1.7940771183072797) +station = ('ksny', 0.0042261145648666409) +zone = ('coz048', 0.0052389200899206796) + +[80727] +centroid = (0.69937400870600885, -1.7892066199499568) +station = ('k2v5', 0.0038253705468012751) +zone = ('coz090', 0.0016901127421152318) + +[80728] +centroid = (0.70938673573189759, -1.7954877806752041) +station = ('kstk', 0.0051508523939826382) +zone = ('coz048', 0.003422903016749722) + +[80729] +centroid = (0.71356465253544399, -1.8198425239365534) +station = ('kgxy', 0.0092285253084225232) +zone = ('coz042', 0.0043038177577510326) + +[80731] +centroid = (0.70850681053621212, -1.7907135372261287) +station = ('kheq', 0.0045513767161833264) +zone = ('coz051', 0.0032181979419599084) + +[80733] +centroid = (0.70461360929354355, -1.8055524486996322) +station = ('kako', 0.0047398706370876207) +zone = ('coz044', 0.0051435600357642615) + +[80734] +centroid = (0.70720551049921765, -1.7853313606919985) +station = ('kheq', 0.0008183246043340387) +zone = ('coz051', 0.0015569129205044992) + +[80735] +centroid = (0.69306717418746466, -1.7850034482321337) +station = ('k2v5', 0.0068343330003982333) +zone = ('coz090', 0.0055013626809855146) + +[80736] +centroid = (0.71230054546480959, -1.7981645048825252) +station = ('kstk', 0.0046786248555691721) +zone = ('coz048', 0.0018738891512378581) + +[80737] +centroid = (0.71342322850615492, -1.7833421565836229) +station = ('kheq', 0.0056233492101133015) +zone = ('coz050', 0.0022939096886437083) + +[80740] +centroid = (0.69334358198110313, -1.8043719603534607) +station = ('kako', 0.0080119345626510751) +zone = ('coz049', 0.0049250842339074062) + +[80741] +centroid = (0.70814887841321317, -1.80601675864054) +station = ('kstk', 0.0029458192842323531) +zone = ('coz048', 0.0055268390180037482) + +[80742] +centroid = (0.71126209201316548, -1.8121942642615116) +station = ('kibm', 0.0078285013821106225) +zone = ('coz042', 0.0022727658531656899) + +[80743] +centroid = (0.70156628187285386, -1.7969030332590612) +station = ('kako', 0.003529060757254249) +zone = ('coz049', 0.0051332431397061035) + +[80744] +centroid = (0.71337935092875981, -1.7870769691966735) +station = ('kheq', 0.0057454486500243384) +zone = ('coz050', 0.00053146028367773612) + +[80745] +centroid = (0.71377758270418734, -1.8044588253903324) +station = ('kstk', 0.0052775107914226306) +zone = ('coz048', 0.0047380694582312552) + +[80746] +centroid = (0.70877128027776681, -1.788367535458768) +station = ('kheq', 0.0028633355136284738) +zone = ('coz051', 0.0014625237077644728) + +[80747] +centroid = (0.71457900299011812, -1.799193149583773) +station = ('ksny', 0.003066530690294392) +zone = ('coz048', 0.0038120171585025488) + +[80749] +centroid = (0.71326471770348876, -1.7897876051513606) +station = ('kheq', 0.0065699320837532002) +zone = ('coz050', 0.0025843660320492051) + +[80750] +centroid = (0.70537071566976617, -1.8082456837216769) +station = ('kstk', 0.0057051686973665682) +zone = ('coz044', 0.003805022218359318) + +[80751] +centroid = (0.70924735373783332, -1.8017453794555494) +station = ('kstk', 0.00059474123058099373) +zone = ('coz048', 0.0022293201002637039) + +[80754] +centroid = (0.71075240351170554, -1.8093297077200907) +station = ('kstk', 0.0057378335409822541) +zone = ('coz042', 0.0044508493798410022) + +[80755] +centroid = (0.69659401336684734, -1.7862567691679909) +station = ('k2v5', 0.0036250200345636801) +zone = ('coz090', 0.0019102234457877992) + +[80757] +centroid = (0.69448363104850586, -1.8078682562709332) +station = ('kako', 0.0081869623696068199) +zone = ('coz049', 0.0060030460987747815) + +[80758] +centroid = (0.70055484611803065, -1.783605963100062) +station = ('k2v5', 0.00083788956133675288) +zone = ('coz090', 0.003894188952829582) + +[80759] +centroid = (0.7004921015314215, -1.7922080801179039) +station = ('kako', 0.0071010524405483106) +zone = ('coz090', 0.0041891509545114612) + +[80801] +centroid = (0.69345910532429267, -1.7994566419409466) +station = ('kako', 0.0077370952612545235) +zone = ('coz049', 0.0043767192516081764) + +[80802] +centroid = (0.67783257911924166, -1.783261958704494) +station = ('kitr', 0.007361600869025306) +zone = ('ksz027', 0.0057388080231402057) + +[80804] +centroid = (0.68673190825540564, -1.8020187503762892) +station = ('klic', 0.0058236602063276299) +zone = ('coz046', 0.0058504720397260235) + +[80805] +centroid = (0.68601840020389793, -1.7881878014523975) +station = ('kitr', 0.00252417046774138) +zone = ('coz091', 0.0019891157881307174) + +[80807] +centroid = (0.68629255652280108, -1.7841319529767357) +station = ('kitr', 0.0014912279981535339) +zone = ('coz091', 0.0051346919992543523) + +[80808] +centroid = (0.68047188346739995, -1.82043897275513) +station = ('kfly', 0.0036775597098685207) +zone = ('coz084', 0.0020293396656402064) + +[80809] +centroid = (0.6781532833692957, -1.8325999208375434) +station = ('kaff', 0.0031610246303202211) +zone = ('coz082', 0.00093510556838001708) + +[80810] +centroid = (0.67756917402853079, -1.7880008068763389) +station = ('kitr', 0.0077869522335753533) +zone = ('coz092', 0.0021577478265749736) + +[80812] +centroid = (0.69148204870751095, -1.7950697045061814) +station = ('kitr', 0.0099904878961705329) +zone = ('coz091', 0.0064060093802189959) + +[80813] +centroid = (0.67728503442630605, -1.8353447303389847) +station = ('kfcs', 0.0056298089526380275) +zone = ('coz081', 0.0012892135685710826) + +[80814] +centroid = (0.67998546020486916, -1.835907703742508) +station = ('kaff', 0.005064415221198452) +zone = ('coz081', 0.0018779165705803554) + +[80815] +centroid = (0.68760249593959288, -1.7987957555663865) +station = ('klic', 0.0084543898050792998) +zone = ('coz091', 0.0064161777101616538) + +[80816] +centroid = (0.67819552033719388, -1.8381085813825655) +station = ('k4bm', 0.0043077399922243631) +zone = ('coz081', 0.0027662735292054326) + +[80817] +centroid = (0.67437043929523055, -1.8271236186968531) +station = ('kfcs', 0.0015308070539043145) +zone = ('coz085', 0.0028083734073431222) + +[80818] +centroid = (0.68741386075403743, -1.8060738483603729) +station = ('klic', 0.0032642121702058146) +zone = ('coz046', 0.0027616399547972597) + +[80819] +centroid = (0.68002413670109341, -1.8327978760813046) +station = ('kaff', 0.002646112921539942) +zone = ('coz081', 0.0021116198939528938) + +[80820] +centroid = (0.67701318194201532, -1.8427151161438164) +station = ('k4bm', 0.0046286117988034994) +zone = ('coz076', 0.003423445807607593) + +[80821] +centroid = (0.68032380973366091, -1.8043503706306134) +station = ('klic', 0.0063229754217042225) +zone = ('coz047', 0.0042033448068770603) + +[80822] +centroid = (0.6928982437691642, -1.7920236860824306) +station = ('k2v5', 0.0091797456010936692) +zone = ('coz090', 0.0062642326777983788) + +[80823] +centroid = (0.67480474702629689, -1.8050053054324242) +station = ('klhx', 0.010789764525067734) +zone = ('coz047', 0.0034315342174761261) + +[80824] +centroid = (0.69202919197471868, -1.7890869078165625) +station = ('kitr', 0.0076106086724766009) +zone = ('coz091', 0.0061572388285066476) + +[80825] +centroid = (0.67710791841381368, -1.7947518276895156) +station = ('kitr', 0.010873471155849877) +zone = ('coz092', 0.0031562053038290045) + +[80827] +centroid = (0.68166422259919246, -1.8407570312560042) +station = ('k4bm', 0.00064395744558660832) +zone = ('coz037', 0.0030632575795820349) + +[80828] +centroid = (0.68650037287683607, -1.8104214984336757) +station = ('klic', 0.0014436312682635634) +zone = ('coz046', 0.00075821273629528719) + +[80829] +centroid = (0.67767518532729687, -1.8314743754562246) +station = ('kaff', 0.0029120413522836339) +zone = ('coz082', 0.0015198828049876546) + +[80830] +centroid = (0.68267237713502193, -1.8132944325555063) +station = ('klic', 0.0040673578245261719) +zone = ('coz046', 0.0051061379589275183) + +[80831] +centroid = (0.680445127569967, -1.823656469777889) +station = ('kfly', 0.0012854736282107838) +zone = ('coz084', 0.00068422320297427581) + +[80832] +centroid = (0.68097820348340354, -1.8153671157620044) +station = ('kabh', 0.0058158193263400668) +zone = ('coz047', 0.0067851459187762315) + +[80833] +centroid = (0.67654604456771905, -1.8145331276322316) +station = ('kabh', 0.0045591111377559302) +zone = ('coz047', 0.0050951709569779157) + +[80834] +centroid = (0.68529998777719192, -1.7956582644365389) +station = ('kitr', 0.0081168042028589345) +zone = ('coz091', 0.0038581371745943257) + +[80835] +centroid = (0.68453862279759448, -1.8155637620088267) +station = ('klic', 0.0048967330390156504) +zone = ('coz046', 0.0051935216708714222) + +[80836] +centroid = (0.68588072863250049, -1.790302512187284) +station = ('kitr', 0.0040525483850217762) +zone = ('coz091', 0.00037527015756991673) + +[80840] +centroid = (0.68058580110767775, -1.8301864271880079) +station = ('kaff', 0.00078541860390304202) +zone = ('coz082', 0.0040057324000162785) + +[80860] +centroid = (0.6755449935219453, -1.8341364912577065) +station = ('kfcs', 0.0043817394880795715) +zone = ('coz082', 0.0019980469855816079) + +[80861] +centroid = (0.68647047538674943, -1.7928341646271793) +station = ('kitr', 0.0060930159793807937) +zone = ('coz091', 0.0016709516167368401) + +[80862] +centroid = (0.67846505153357939, -1.7986999544437445) +station = ('klic', 0.010733349739277259) +zone = ('coz047', 0.007390270097436283) + +[80863] +centroid = (0.68102738686172481, -1.8345781642782162) +station = ('kaff', 0.0041338629337559678) +zone = ('coz081', 0.0026039561270638531) + +[80864] +centroid = (0.67540168453706395, -1.8184016324659844) +station = ('kabh', 0.0019928888857797008) +zone = ('coz085', 0.0043207199352843003) + +[80902] +centroid = (0.67490784362521217, -1.8292441762847338) +station = ('kfcs', 0.00077616853086542935) +zone = ('coz082', 0.0041289650825644579) + +[80903] +centroid = (0.67773735395525292, -1.8293581462848891) +station = ('kcos', 0.0013552181796130955) +zone = ('coz082', 0.0031654224076464888) + +[80904] +centroid = (0.67824941610449552, -1.8304343512082539) +station = ('kaff', 0.0020161923580264518) +zone = ('coz082', 0.0024452476978277233) + +[80905] +centroid = (0.67751779153535208, -1.8297743549516121) +station = ('kcos', 0.0016551609460248343) +zone = ('coz082', 0.0028298298866420196) + +[80906] +centroid = (0.67636084768079008, -1.8304698162986544) +station = ('kfcs', 0.0017747069534236567) +zone = ('coz082', 0.0025387244611176202) + +[80907] +centroid = (0.67855978800537764, -1.8295667131305025) +station = ('kaff', 0.0015425757953220654) +zone = ('coz082', 0.0031856252965642116) + +[80908] +centroid = (0.68148968967399304, -1.8272418473003833) +station = ('kaff', 0.0021777335542517463) +zone = ('coz084', 0.0033538423604619308) + +[80909] +centroid = (0.67812106459130383, -1.828672528594828) +station = ('kcos', 0.0010229203059419327) +zone = ('coz085', 0.0044418767040499078) + +[80910] +centroid = (0.67739834120134557, -1.8286613933942004) +station = ('kcos', 0.00079166179769787426) +zone = ('coz085', 0.0040792029639589661) + +[80911] +centroid = (0.6763659789487908, -1.8277694777865539) +station = ('kfcs', 0.0010948922381878716) +zone = ('coz085', 0.0030782261753598277) + +[80913] +centroid = (0.67522376567311571, -1.8282110286340159) +station = ('kfcs', 0.00032742214454482171) +zone = ('coz085', 0.0033707101078589885) + +[80914] +centroid = (0.67760664624757105, -1.8274327514139665) +station = ('kcos', 0.00021259845532902951) +zone = ('coz085', 0.0033544758965477896) + +[80915] +centroid = (0.67805687138141557, -1.8276571833024804) +station = ('kcos', 0.000578256035258844) +zone = ('coz085', 0.0037671372079610336) + +[80916] +centroid = (0.67730934686278632, -1.8274996673374879) +station = ('kcos', 0.00020614047071250904) +zone = ('coz085', 0.003236271039798286) + +[80917] +centroid = (0.6786916650836583, -1.8281497326706859) +station = ('kcos', 0.0012737828571834414) +zone = ('coz085', 0.004473325157531201) + +[80918] +centroid = (0.67911447109495393, -1.8287623083315507) +station = ('kaff', 0.0010988839425029274) +zone = ('coz082', 0.0039760124346427447) + +[80919] +centroid = (0.67942540150119668, -1.830023553062212) +station = ('kaff', 0.00082993818379229346) +zone = ('coz082', 0.0032856794515587237) + +[80920] +centroid = (0.67993845848811307, -1.8285950534293323) +station = ('kaff', 0.00064251573685741566) +zone = ('coz084', 0.0044583844994533781) + +[80921] +centroid = (0.68096109925673398, -1.8310334005674158) +station = ('kaff', 0.001538525302680518) +zone = ('coz081', 0.0037412457965426836) + +[80922] +centroid = (0.67876847702403864, -1.8273707224123508) +station = ('kcos', 0.0013081262293282762) +zone = ('coz084', 0.0040139964124574629) + +[80923] +centroid = (0.67940183955629485, -1.827617826127848) +station = ('kaff', 0.001547623556600814) +zone = ('coz084', 0.0038934044412676171) + +[80924] +centroid = (0.68012012980995307, -1.8277312201693499) +station = ('kaff', 0.001294543830428891) +zone = ('coz084', 0.0037634622430323217) + +[80925] +centroid = (0.67645059251092754, -1.8265894083194028) +station = ('kcos', 0.0013195134320394479) +zone = ('coz085', 0.0022209578700093913) + +[80926] +centroid = (0.6743032964789063, -1.8309028499393667) +station = ('kfcs', 0.0021793412711022912) +zone = ('coz082', 0.0037117559237837485) + +[80927] +centroid = (0.67943184176613658, -1.8266326401249746) +station = ('kfly', 0.001256198537867521) +zone = ('coz084', 0.0031855880601604838) + +[80928] +centroid = (0.67422772372229511, -1.8221522577620577) +station = ('kabh', 0.0028022544813812531) +zone = ('coz085', 0.0019940101272334816) + +[80929] +centroid = (0.67761902063196777, -1.8260850605254539) +station = ('kcos', 0.0012277936217057429) +zone = ('coz085', 0.0025812600538620322) + +[80930] +centroid = (0.67743609267306615, -1.8239123175929388) +station = ('kfly', 0.002541027962122223) +zone = ('coz085', 0.0017755503307388309) + +[80938] +centroid = (0.67901524912697808, -1.8267213377575611) +station = ('kfly', 0.0014946200804657748) +zone = ('coz084', 0.0034551881872269142) + +[80939] +centroid = (0.67854221253981006, -1.8269646017487042) +station = ('kcos', 0.0011902304107208848) +zone = ('coz085', 0.0037287435438483787) + +[80951] +centroid = (0.67884485263210592, -1.8265139053759616) +station = ('kfly', 0.0014659951498984898) +zone = ('coz084', 0.0034204780967988188) + +[81001] +centroid = (0.66834301453663825, -1.8245059913380046) +station = ('kpub', 0.00052894461944003404) +zone = ('coz086', 0.0020539927004303913) + +[81003] +centroid = (0.66807212198343624, -1.8260698936142541) +station = ('kpub', 0.0017304017229259675) +zone = ('coz086', 0.0025320289512469592) + +[81004] +centroid = (0.66398852277266751, -1.8276102863054793) +station = ('kpub', 0.0051126444487839678) +zone = ('coz086', 0.0039448378864569093) + +[81005] +centroid = (0.66667533498306519, -1.8292873731837207) +station = ('kpub', 0.0045105577215987219) +zone = ('coz086', 0.0044425205737873008) + +[81006] +centroid = (0.66734545414936841, -1.8238865565331794) +station = ('kpub', 0.00082487546372999828) +zone = ('coz086', 0.00096092056291832294) + +[81007] +centroid = (0.66950903410331064, -1.8286372729439377) +station = ('kpub', 0.0039732126616867734) +zone = ('coz086', 0.005000259863700905) + +[81008] +centroid = (0.67093282134721011, -1.8259900971608531) +station = ('kpub', 0.0032245751030324453) +zone = ('coz086', 0.0048887581262480415) + +[81019] +centroid = (0.6622424953889724, -1.8298359301676226) +station = ('kpub', 0.0075615820748748553) +zone = ('coz087', 0.0044350833835894339) + +[81020] +centroid = (0.65535113265064282, -1.8237123377672453) +station = ('ktad', 0.0049896081924046308) +zone = ('coz088', 0.0036626817620551001) + +[81021] +centroid = (0.66999022137808539, -1.8043376122737815) +station = ('klhx', 0.0061794094029688331) +zone = ('coz095', 0.0040037333645559494) + +[81022] +centroid = (0.6641006776304007, -1.8225177122541327) +station = ('kpub', 0.0042059419705578064) +zone = ('coz086', 0.0024677680954495788) + +[81023] +centroid = (0.66414343819707455, -1.8319719862792609) +station = ('kpub', 0.0075364708611565592) +zone = ('coz080', 0.0025921606796494817) + +[81024] +centroid = (0.65012388899421236, -1.8279655829813077) +station = ('ktad', 0.0041974660131559498) +zone = ('coz088', 0.0050758047772909085) + +[81025] +centroid = (0.67116718415916787, -1.8213435070932684) +station = ('kpub', 0.0035920252099081503) +zone = ('coz085', 0.0049268157430482819) + +[81027] +centroid = (0.64907663908313817, -1.8116506989192702) +station = ('ktad', 0.0089050373170117096) +zone = ('coz094', 0.0040081480944095891) + +[81029] +centroid = (0.64730455393371089, -1.7888857935268552) +station = ('kspd', 0.0038049709458727338) +zone = ('coz099', 0.0041378943070357081) + +[81030] +centroid = (0.66498332553971928, -1.8068279702235746) +station = ('klhx', 0.00089067895143985735) +zone = ('coz093', 0.0043561993336594324) + +[81033] +centroid = (0.66662651812388685, -1.81272243579975) +station = ('klhx', 0.0053657848103764779) +zone = ('coz089', 0.0025263021462639391) + +[81036] +centroid = (0.67000512648989752, -1.7934341913707224) +station = ('klaa', 0.0057046434993181898) +zone = ('coz095', 0.0046328781520964257) + +[81038] +centroid = (0.66460816701700309, -1.8001399208898099) +station = ('klhx', 0.0051952287556052464) +zone = ('coz097', 0.0023637814077194751) + +[81039] +centroid = (0.66216168664460506, -1.8166295124099721) +station = ('klhx', 0.0080559887899458553) +zone = ('coz093', 0.0051172892094944588) + +[81040] +centroid = (0.65945490786756467, -1.8365490947893235) +station = ('kals', 0.010760795838111436) +zone = ('coz080', 0.0037927676161368319) + +[81041] +centroid = (0.66091210071334727, -1.7866979011364326) +station = ('klaa', 0.0055357445221025318) +zone = ('coz098', 0.0015636625910702244) + +[81043] +centroid = (0.66551317259403975, -1.7840898207285925) +station = ('klaa', 0.0064513295602206351) +zone = ('coz098', 0.0038788520627131484) + +[81044] +centroid = (0.66191685185713522, -1.7968272336096469) +station = ('klaa', 0.0044299834218919721) +zone = ('coz097', 0.0017472762254764807) + +[81045] +centroid = (0.67173788937127754, -1.8005625523681803) +station = ('klhx', 0.009035494922893671) +zone = ('coz095', 0.0014920012324698185) + +[81047] +centroid = (0.66516553791362754, -1.7828768518050415) +station = ('klaa', 0.0073492804969340388) +zone = ('coz098', 0.0042984870690925816) + +[81049] +centroid = (0.65238246721934068, -1.804453571949284) +station = ('klhx', 0.011850115814963808) +zone = ('coz094', 0.0026464471559537058) + +[81050] +centroid = (0.66218194991722068, -1.8065186280669512) +station = ('klhx', 0.0019215527372320933) +zone = ('coz093', 0.0029713809596983946) + +[81052] +centroid = (0.66179422502389018, -1.791398160078516) +station = ('klaa', 0.0026634101677084901) +zone = ('coz098', 0.0034513160863809101) + +[81054] +centroid = (0.66227747178718233, -1.8004362079836285) +station = ('klhx', 0.0052659501616763504) +zone = ('coz097', 0.0011907530021979199) + +[81055] +centroid = (0.65435208873350881, -1.8345462771127825) +station = ('ktad', 0.010195303699848345) +zone = ('coz074', 0.0048124441796091478) + +[81057] +centroid = (0.66535021120178095, -1.7956504104549049) +station = ('klaa', 0.0029086971224826573) +zone = ('coz097', 0.0038955858667804474) + +[81058] +centroid = (0.66496962470509113, -1.8130979259350239) +station = ('klhx', 0.0051062067688572854) +zone = ('coz093', 0.0041344057120407821) + +[81059] +centroid = (0.65459256019784862, -1.8155048396932794) +station = ('ktad', 0.0070777142307076202) +zone = ('coz088', 0.0058040833331324858) + +[81062] +centroid = (0.66840682377409111, -1.8145200202095491) +station = ('klhx', 0.007503127418621228) +zone = ('coz089', 0.0025114786787015357) + +[81063] +centroid = (0.67074242337910994, -1.8111466652845869) +station = ('klhx', 0.0075041456977990844) +zone = ('coz089', 0.0018269024229506645) + +[81064] +centroid = (0.64969370024018092, -1.7976766155434227) +station = ('kspd', 0.0054129367164717536) +zone = ('coz099', 0.006313378965096924) + +[81067] +centroid = (0.66206675818658911, -1.811276011635452) +station = ('klhx', 0.004134359523762599) +zone = ('coz093', 0.0010108617949271719) + +[81069] +centroid = (0.66136234330048416, -1.830913670980729) +station = ('kpub', 0.008780009631496841) +zone = ('coz087', 0.0036053279815069124) + +[81071] +centroid = (0.67083815468858188, -1.7845294866204624) +station = ('klaa', 0.0088047578317373715) +zone = ('coz096', 0.0019582740249946824) + +[81073] +centroid = (0.65311306204422559, -1.7926698767846891) +station = ('kspd', 0.0027397588854795149) +zone = ('coz099', 0.0027520463515660633) + +[81076] +centroid = (0.6692154522698327, -1.8081889430676947) +station = ('klhx', 0.0052485788815083067) +zone = ('coz089', 0.0025262181591566065) + +[81077] +centroid = (0.66353266022533908, -1.808699451873903) +station = ('klhx', 0.0016682471004474597) +zone = ('coz093', 0.0023257447757967999) + +[81081] +centroid = (0.64661244361883252, -1.8188940247545571) +station = ('ktad', 0.0048755441775780502) +zone = ('nmz527', 0.0049190047958190281) + +[81082] +centroid = (0.64889437434935238, -1.8241611317311031) +station = ('ktad', 0.0019208008657270856) +zone = ('coz088', 0.0034996003974990678) + +[81084] +centroid = (0.6559717542793595, -1.7874069062384703) +station = ('kspd', 0.0059789281148955719) +zone = ('coz099', 0.0050719042275740511) + +[81087] +centroid = (0.65215798297094929, -1.7873742860347506) +station = ('kspd', 0.0032223624209385391) +zone = ('coz099', 0.0022546218257180517) + +[81089] +centroid = (0.65714402212475398, -1.8280187806169088) +station = ('ktad', 0.0079321707718994112) +zone = ('coz087', 0.001788121723469405) + +[81090] +centroid = (0.65202364497842324, -1.7841143775111679) +station = ('kspd', 0.0056285635813289594) +zone = ('coz099', 0.0047431814165252977) + +[81091] +centroid = (0.64837211947727824, -1.8319805383925956) +station = ('ktad', 0.007667276782952771) +zone = ('coz074', 0.0015669048155623571) + +[81092] +centroid = (0.66660789546076804, -1.7933650065191733) +station = ('klaa', 0.0024124811856319549) +zone = ('coz097', 0.0060517215537183337) + +[81101] +centroid = (0.65417113299666207, -1.8471380248144655) +station = ('kals', 0.00095607340226417249) +zone = ('coz070', 0.001624735382943384) + +[81120] +centroid = (0.64974349448374014, -1.8556220703084099) +station = ('ke33', 0.0067973985347838722) +zone = ('coz067', 0.005219534628273295) + +[81121] +centroid = (0.64768779333086379, -1.8751656389537117) +station = ('kdro', 0.0046121398325966543) +zone = ('coz023', 0.0033585391432478292) + +[81122] +centroid = (0.65190651593232185, -1.875806820561017) +station = ('kdro', 0.0053567382018590666) +zone = ('coz019', 0.0038994266571341449) + +[81123] +centroid = (0.65274844531019138, -1.8425757690563374) +station = ('kals', 0.0041291202788835907) +zone = ('coz071', 0.0039942397377702383) + +[81124] +centroid = (0.65111678935237949, -1.8528517964531821) +station = ('kals', 0.0046412518383140968) +zone = ('coz070', 0.0057961168302522416) + +[81125] +centroid = (0.66007062512108317, -1.851268241769555) +station = ('k04v', 0.0050380840562340053) +zone = ('coz069', 0.0017431100086402172) + +[81126] +centroid = (0.64848738102107983, -1.8384353593784162) +station = ('kals', 0.0088361131147765455) +zone = ('coz075', 0.0024329091654533451) + +[81128] +centroid = (0.64720693766864679, -1.8608219472021692) +station = ('ke33', 0.0032153841230203929) +zone = ('coz068', 0.0061302278078577618) + +[81129] +centroid = (0.64757581300605582, -1.8505559729018162) +station = ('kals', 0.0061849786714928629) +zone = ('coz071', 0.0043570247981822366) + +[81130] +centroid = (0.65659984591727472, -1.8685065097256526) +station = ('kcpw', 0.0046236524218556986) +zone = ('coz068', 0.0059863477064468875) + +[81131] +centroid = (0.66087611202417107, -1.8444489611293329) +station = ('k04v', 0.0078555580066798844) +zone = ('coz073', 0.002122425182300886) + +[81132] +centroid = (0.65818600114148729, -1.8575357191134665) +station = ('kcpw', 0.006852193905811441) +zone = ('coz067', 0.004504982633653563) + +[81133] +centroid = (0.65327900794950511, -1.8379572787897098) +station = ('kals', 0.0077540633831182319) +zone = ('coz075', 0.0043678672848723619) + +[81136] +centroid = (0.65860222726150286, -1.8470461332293482) +station = ('kals', 0.0052944629768515621) +zone = ('coz070', 0.0031621873871007324) + +[81137] +centroid = (0.64667784110590465, -1.8782116573774623) +station = ('kdro', 0.0027332799141849048) +zone = ('coz022', 0.0040441018721351996) + +[81138] +centroid = (0.64630875632898543, -1.8434233009411058) +station = ('kals', 0.0078153926997612724) +zone = ('coz071', 0.0038247859725808273) + +[81140] +centroid = (0.65124334317644161, -1.8519834951503149) +station = ('kals', 0.0039804793566073585) +zone = ('coz071', 0.0052090470275802762) + +[81141] +centroid = (0.64860445770730368, -1.8475765387890293) +station = ('kals', 0.004731872085423125) +zone = ('coz071', 0.0017935691720456406) + +[81143] +centroid = (0.66408046671766263, -1.847547705949786) +station = ('k04v', 0.0043675741286743402) +zone = ('coz069', 0.0033839487732470505) + +[81144] +centroid = (0.65543115599684676, -1.8529644574563984) +station = ('kals', 0.0046579169771103161) +zone = ('coz070', 0.0037955778919454199) + +[81146] +centroid = (0.65667053175198054, -1.8445338015842725) +station = ('kals', 0.0041855303821706326) +zone = ('coz070', 0.0030914160893322374) + +[81147] +centroid = (0.65140672344772077, -1.8689966854460751) +station = ('kpso', 0.00089669086176051723) +zone = ('coz023', 0.0035943822518865261) + +[81148] +centroid = (0.64877063050538608, -1.8497944333892935) +station = ('kals', 0.0048528894833314009) +zone = ('coz071', 0.003340199528612647) + +[81149] +centroid = (0.66500025523346362, -1.8560859264637124) +station = ('k04v', 0.0024361317228554598) +zone = ('coz065', 0.00010624149444141925) + +[81151] +centroid = (0.65063438034712828, -1.8467000169853849) +station = ('kals', 0.0028200511871252971) +zone = ('coz071', 0.0012384637414202618) + +[81152] +centroid = (0.64770508954375106, -1.8396140325821655) +station = ('kals', 0.0085628705408600705) +zone = ('coz075', 0.0036104168388425245) + +[81154] +centroid = (0.65580378379214765, -1.8605854027286464) +station = ('kcpw', 0.0034706789169850825) +zone = ('coz067', 0.0020383724369343031) + +[81155] +centroid = (0.66825716179073258, -1.8513476542505207) +station = ('k04v', 0.0035767798863034204) +zone = ('coz065', 0.0048482011695198512) + +[81201] +centroid = (0.67290876095327035, -1.8512015876454215) +station = ('kank', 0.00048555989456285819) +zone = ('coz062', 0.002340625979989153) + +[81210] +centroid = (0.67733915708641035, -1.8618816238575175) +station = ('kguc', 0.0059332527633870783) +zone = ('coz012', 0.0044391969124490454) + +[81211] +centroid = (0.68021441249614589, -1.856711574640675) +station = ('k7bm', 0.0040061004295703639) +zone = ('coz060', 0.0027011785814524615) + +[81212] +centroid = (0.67257960930963678, -1.8395714640017096) +station = ('kfcs', 0.0090945276061017277) +zone = ('coz077', 0.0028835195557655444) + +[81220] +centroid = (0.66860497100407001, -1.875889898233412) +station = ('kmtj', 0.0066414896380019451) +zone = ('coz018', 0.0044577442163524121) + +[81221] +centroid = (0.66954928139586156, -1.8351112401916529) +station = ('kfcs', 0.0078286655333156523) +zone = ('coz083', 0.0014855191472835469) + +[81222] +centroid = (0.66929880919490792, -1.8470982662141051) +station = ('kank', 0.0043656667090584854) +zone = ('coz077', 0.0039955756587844162) + +[81223] +centroid = (0.66959111693803197, -1.8432883520833419) +station = ('kank', 0.006637644252964264) +zone = ('coz077', 0.0013050778177918151) + +[81224] +centroid = (0.67858202350004804, -1.8663513248054124) +station = ('kguc', 0.0060484930289008351) +zone = ('coz012', 0.0016733661736108394) + +[81225] +centroid = (0.6798799201450012, -1.8658181267189282) +station = ('kase', 0.0048964150699182035) +zone = ('coz012', 0.0030027778826307357) + +[81226] +centroid = (0.66882641837956314, -1.8350886207245469) +station = ('kfcs', 0.0083763631727357766) +zone = ('coz083', 0.0021870856549925555) + +[81227] +centroid = (0.67281117959479142, -1.8551142493092496) +station = ('kmyp', 0.0011883519435133012) +zone = ('coz061', 0.0033880025489033848) + +[81230] +centroid = (0.67012030076723672, -1.8666939154842863) +station = ('kguc', 0.0024292083735608276) +zone = ('coz014', 0.0035136134292671228) + +[81231] +centroid = (0.6728248455228345, -1.8661003115523906) +station = ('kguc', 0.00034588955958622506) +zone = ('coz014', 0.0038775907108735564) + +[81232] +centroid = (0.66820159050734917, -1.8432503562655258) +station = ('kank', 0.0073757019875144315) +zone = ('coz077', 0.002549919327464924) + +[81233] +centroid = (0.67065976458573551, -1.8469925516213117) +station = ('kank', 0.0035717704334351334) +zone = ('coz077', 0.0036792201312763539) + +[81235] +centroid = (0.66344912876733875, -1.8727281295736691) +station = ('kguc', 0.010377243983169589) +zone = ('coz018', 0.0035422052405634954) + +[81236] +centroid = (0.67501354076471298, -1.854669556869134) +station = ('k7bm', 0.0019739103363727848) +zone = ('coz061', 0.0011594563618449471) + +[81237] +centroid = (0.67375062051796997, -1.8607662362924455) +station = ('kguc', 0.0045237553622372081) +zone = ('coz060', 0.0051379851657207768) + +[81239] +centroid = (0.67210549061833258, -1.8616322861205776) +station = ('kguc', 0.0037070315028157165) +zone = ('coz064', 0.0035780526638018247) + +[81240] +centroid = (0.67195790557678392, -1.8331944323406502) +station = ('kfcs', 0.0050466445504654253) +zone = ('coz083', 0.0014720354364437464) + +[81241] +centroid = (0.67409623061644985, -1.8589226275502715) +station = ('kmyp', 0.0035590688180004563) +zone = ('coz060', 0.0039954580153395867) + +[81242] +centroid = (0.67209398889856198, -1.8513665387130274) +station = ('kank', 0.00051632671702461406) +zone = ('coz062', 0.0031356783291683066) + +[81243] +centroid = (0.66786767411485759, -1.8708549724072585) +station = ('kguc', 0.0058563840692093206) +zone = ('coz014', 0.0036935384951698401) + +[81244] +centroid = (0.6695594915719858, -1.8356975311939829) +station = ('kfcs', 0.0081305003458058359) +zone = ('coz083', 0.0016605316717075494) + +[81248] +centroid = (0.67132871438144004, -1.8566508546359981) +station = ('kmyp', 0.00090855532129592955) +zone = ('coz061', 0.0051177783832941246) + +[81251] +centroid = (0.68263776725595493, -1.8583948923443459) +station = ('klxv', 0.0030399259443688307) +zone = ('coz059', 0.0022325409483866551) + +[81252] +centroid = (0.66515620040212942, -1.8400573811187571) +station = ('k04v', 0.010180687900799708) +zone = ('coz078', 0.00053118002598485925) + +[81253] +centroid = (0.66717992712310925, -1.833733424920251) +station = ('kfcs', 0.009214742186689065) +zone = ('coz079', 0.0033456203790949708) + +[81301] +centroid = (0.65347008659601347, -1.8823861358823823) +station = ('kdro', 0.0052190717322231862) +zone = ('coz019', 0.0030129221018264521) + +[81303] +centroid = (0.64789222374614985, -1.8829571727070498) +station = ('kdro', 0.0017266726097075972) +zone = ('coz022', 0.00048947108275279897) + +[81320] +centroid = (0.65834065476650638, -1.8977863277900346) +station = ('kcez', 0.0074670948231440274) +zone = ('coz021', 0.0059217451151901005) + +[81321] +centroid = (0.65123418019786861, -1.8977756812815976) +station = ('kcez', 0.0014230728764594207) +zone = ('coz021', 0.0011892813684655356) + +[81323] +centroid = (0.65803866044603387, -1.8871720555841536) +station = ('ktex', 0.0053162173237708884) +zone = ('coz019', 0.0072012289227706546) + +[81324] +centroid = (0.65726396115095109, -1.9029255893988721) +station = ('k4bl', 0.0060845206005832771) +zone = ('coz021', 0.0063969243405645722) + +[81325] +centroid = (0.66181152123677744, -1.8976465094636574) +station = ('kcez', 0.010881276200430182) +zone = ('coz020', 0.0048457406211088331) + +[81326] +centroid = (0.64850113421558553, -1.8882207366652144) +station = ('kdro', 0.0058492786073102302) +zone = ('coz022', 0.0043085191218047826) + +[81327] +centroid = (0.65481351888115102, -1.8964878377331358) +station = ('kcez', 0.0038246398834265423) +zone = ('coz021', 0.0025677076011463421) + +[81328] +centroid = (0.65205506090495902, -1.8894645106500632) +station = ('kcez', 0.0053084849718863306) +zone = ('coz021', 0.0065218708990397124) + +[81330] +centroid = (0.64980793203972387, -1.8933768407013336) +station = ('kcez', 0.0024143143178988009) +zone = ('coz021', 0.0042916382410163852) + +[81331] +centroid = (0.65355970925310336, -1.9007910691769756) +station = ('kcez', 0.0045773813502053787) +zone = ('coz021', 0.0027370971423426862) + +[81332] +centroid = (0.65799500976144143, -1.8848018111934828) +station = ('ktex', 0.0045693936512225973) +zone = ('coz019', 0.005553961560656232) + +[81334] +centroid = (0.64832244740676648, -1.8956538670566554) +station = ('kcez', 0.0027002409690989066) +zone = ('coz021', 0.0043968673692130426) + +[81335] +centroid = (0.65443579472443447, -1.8981689737752419) +station = ('kcez', 0.0038333576095730625) +zone = ('coz021', 0.0020564161546348563) + +[81401] +centroid = (0.67167509242479073, -1.8809560829064682) +station = ('kmtj', 0.0017858944794907354) +zone = ('coz011', 0.0038818735969789126) + +[81403] +centroid = (0.66966218674517319, -1.884210598362662) +station = ('kmtj', 0.0024199497004568382) +zone = ('coz011', 0.0053419472952295219) + +[81410] +centroid = (0.67726826181219446, -1.8843685332066751) +station = ('kajz', 0.0013604282002026239) +zone = ('coz011', 0.002373443988886087) + +[81411] +centroid = (0.66760343126610566, -1.9020588763456243) +station = ('k4bl', 0.012938585892168867) +zone = ('coz020', 0.0038284890966597896) + +[81413] +centroid = (0.68010121044086147, -1.8841781526918675) +station = ('kajz', 0.0034764083991115631) +zone = ('coz009', 0.0032061034838105173) + +[81415] +centroid = (0.67426996069019329, -1.8786398040962691) +station = ('kmtj', 0.0042596338139781259) +zone = ('coz011', 0.0039082443631423625) + +[81416] +centroid = (0.67635168470221696, -1.8873455587650942) +station = ('kajz', 0.0011637703868259183) +zone = ('coz011', 0.0032560653282001752) + +[81418] +centroid = (0.67804119832473264, -1.8847433426635407) +station = ('kajz', 0.0015003189519638114) +zone = ('coz011', 0.0031970881703969637) + +[81419] +centroid = (0.67860549817848737, -1.8805060148522565) +station = ('kajz', 0.0046362864157895624) +zone = ('coz011', 0.0043378889332726335) + +[81422] +centroid = (0.66927420005245486, -1.8973702587496517) +station = ('kajz', 0.011706870176138608) +zone = ('coz020', 0.0026231199622025422) + +[81423] +centroid = (0.66362931655931456, -1.8914564200187793) +station = ('ktex', 0.0064941481649689464) +zone = ('coz020', 0.0055275122670995821) + +[81424] +centroid = (0.66892466296315789, -1.8927157448872634) +station = ('kmtj', 0.0080396503468053923) +zone = ('coz017', 0.003973143534344077) + +[81425] +centroid = (0.67184004349239679, -1.8892750202531741) +station = ('kajz', 0.0056922645204920642) +zone = ('coz017', 0.0027002498600366622) + +[81426] +centroid = (0.66092496378993448, -1.8830583145372031) +station = ('ktex', 0.0015142546717175028) +zone = ('coz018', 0.0057505032183374936) + +[81427] +centroid = (0.66375794732518656, -1.8786009007072422) +station = ('ktex', 0.0039824173938413253) +zone = ('coz018', 0.0012746181888006452) + +[81428] +centroid = (0.68003240956174782, -1.8779669098564551) +station = ('kajz', 0.0070179752156519035) +zone = ('coz009', 0.0045609662391989823) + +[81429] +centroid = (0.66887904005651078, -1.9002477481808298) +station = ('kajz', 0.01371660641236163) +zone = ('coz020', 0.0031907467569695) + +[81430] +centroid = (0.66361243922544777, -1.8853546093274669) +station = ('ktex', 0.0019725713230633129) +zone = ('coz018', 0.00652570739764099) + +[81431] +centroid = (0.66515639238834701, -1.8949054524201079) +station = ('kmtj', 0.011419327978056254) +zone = ('coz020', 0.0024280792682135799) + +[81432] +centroid = (0.66514698506367875, -1.8805865617972362) +station = ('ktex', 0.0034941112125125707) +zone = ('coz018', 0.0028803003786530977) + +[81433] +centroid = (0.65911954285179386, -1.8777247977826186) +station = ('ktex', 0.0055401736383340009) +zone = ('coz019', 0.0043825112000559323) + +[81434] +centroid = (0.68000013842387841, -1.8735850338765208) +station = ('k5sm', 0.0081162123634905443) +zone = ('coz012', 0.0054484780973943761) + +[81435] +centroid = (0.66164644799612382, -1.8826730156515328) +station = ('ktex', 0.00094496924996719444) +zone = ('coz018', 0.0051010352477782305) + +[81501] +centroid = (0.68193239243876147, -1.8945048295436049) +station = ('kgjt', 0.0010892715901649138) +zone = ('coz006', 0.0023113676240746148) + +[81503] +centroid = (0.68119842912842021, -1.8925314032116676) +station = ('kgjt', 0.0022526459116018966) +zone = ('coz006', 0.0039858680807323445) + +[81504] +centroid = (0.68206772526896109, -1.8935294697444205) +station = ('kgjt', 0.0010974218584246368) +zone = ('coz006', 0.0028785444666167008) + +[81505] +centroid = (0.68514341428999548, -1.8942799438694855) +station = ('kgjt', 0.0021379359852151691) +zone = ('coz006', 0.0026619773078175547) + +[81506] +centroid = (0.6826825524045611, -1.8941501262797222) +station = ('kgjt', 0.00033482882235808415) +zone = ('coz006', 0.0021958023543238972) + +[81507] +centroid = (0.68083442325962429, -1.8963383328294099) +station = ('kgjt', 0.0027031653379067356) +zone = ('coz006', 0.0025632362582180958) + +[81520] +centroid = (0.68261474636312114, -1.8925262893969592) +station = ('kgjt', 0.0014036235195245875) +zone = ('coz006', 0.0034294724387166292) + +[81521] +centroid = (0.68283038179220501, -1.898893233054942) +station = ('kgjt', 0.0035953115631048057) +zone = ('coz006', 0.0016811539044208805) + +[81522] +centroid = (0.67401505535293949, -1.9008962601709931) +station = ('kgjt', 0.010367595199501967) +zone = ('coz017', 0.0066942345492031399) + +[81523] +centroid = (0.68013301033983276, -1.9005133523863984) +station = ('kgjt', 0.0056395199274597617) +zone = ('coz006', 0.0043130333248240183) + +[81524] +centroid = (0.685465008657968, -1.8986937593747315) +station = ('kgjt', 0.0042227922280339445) +zone = ('coz006', 0.0025419495211526934) + +[81525] +centroid = (0.68568240686959636, -1.9014693215775931) +station = ('kgjt', 0.0061914941194052163) +zone = ('coz006', 0.0042686814505509176) + +[81526] +centroid = (0.68237008610857663, -1.8907923920515655) +station = ('kgjt', 0.0027674974040196292) +zone = ('coz006', 0.0047961212046130188) + +[81527] +centroid = (0.67717171019797406, -1.8931563183503439) +station = ('kajz', 0.0055308743048625699) +zone = ('coz017', 0.0043142454598151152) + +[81601] +centroid = (0.69117565615732335, -1.8728135808938466) +station = ('k5sm', 0.0032311155814113541) +zone = ('coz008', 0.0037291599177780559) + +[81610] +centroid = (0.70301335180897495, -1.8982473739652415) +station = ('keeo', 0.012380513761264061) +zone = ('coz001', 0.0029843961899032193) + +[81611] +centroid = (0.6834771309998241, -1.8620488089465661) +station = ('kase', 0.0027372803590431792) +zone = ('coz010', 0.0050967935599467275) + +[81612] +centroid = (0.68302034342799212, -1.8646638357648291) +station = ('kase', 0.001775312705395242) +zone = ('coz010', 0.0052643968084073161) + +[81615] +centroid = (0.68454691311154148, -1.8662442488558026) +station = ('kase', 0.00085287350254677652) +zone = ('coz010', 0.0040300324033583045) + +[81620] +centroid = (0.6910736067559593, -1.8590101383589663) +station = ('kccu', 0.0053775900768865724) +zone = ('coz010', 0.0049276272539927864) + +[81621] +centroid = (0.6877843592476508, -1.8654086375698253) +station = ('kase', 0.0030388870312722661) +zone = ('coz010', 0.0010087965996735805) + +[81623] +centroid = (0.68480878231251063, -1.8703281447725439) +station = ('k5sm', 0.0044127574722444118) +zone = ('coz010', 0.005829957669798296) + +[81624] +centroid = (0.68408024697614311, -1.8796966533182291) +station = ('kril', 0.0056351288348177658) +zone = ('coz009', 0.0023725093489118743) + +[81625] +centroid = (0.71113829580932153, -1.8796287425570342) +station = ('kcag', 0.0048873455216203411) +zone = ('coz002', 0.0066137204561148629) + +[81630] +centroid = (0.6882508857567089, -1.8950158444952963) +station = ('kgjt', 0.0052775532460591938) +zone = ('coz003', 0.0031024711728805236) + +[81631] +centroid = (0.69166328369703811, -1.8631396222757701) +station = ('kege', 0.0022682619585380555) +zone = ('coz010', 0.003497502471107744) + +[81632] +centroid = (0.69165947887926871, -1.8606546573933656) +station = ('kege', 0.0041690379278860896) +zone = ('coz010', 0.0043836619679797871) + +[81633] +centroid = (0.70403641145661644, -1.8924466500231907) +station = ('keeo', 0.0088477848678699296) +zone = ('coz001', 0.0040376680774780807) + +[81635] +centroid = (0.68932054569537871, -1.8857894930171863) +station = ('kril', 0.00425100750300494) +zone = ('coz007', 0.0013251590546207266) + +[81637] +centroid = (0.69425399807882093, -1.8693491895951004) +station = ('kege', 0.0033802871091743766) +zone = ('coz008', 0.0028002962681651323) + +[81638] +centroid = (0.70363947122483539, -1.8770850647985926) +station = ('kcag', 0.0032475222877545425) +zone = ('coz002', 0.0050885824218025212) + +[81639] +centroid = (0.70697910638864903, -1.8716776508034787) +station = ('khdn', 0.0005090557709598756) +zone = ('coz004', 0.0039028547144125871) + +[81640] +centroid = (0.70978578781207358, -1.893915484215084) +station = ('kcag', 0.013531577792495727) +zone = ('coz001', 0.0046188099027530344) + +[81641] +centroid = (0.69956383071545569, -1.880553191101938) +station = ('keeo', 0.0018953022005737423) +zone = ('coz013', 0.0045353226090572036) + +[81642] +centroid = (0.68620186921486748, -1.8614943352965001) +station = ('kase', 0.0031976003688845996) +zone = ('coz010', 0.0029831020761893466) + +[81643] +centroid = (0.68183538703893565, -1.8876007084484434) +station = ('kajz', 0.0050285393396689625) +zone = ('coz009', 0.0041843248080758134) + +[81645] +centroid = (0.6886302156163373, -1.8580487411937978) +station = ('klxv', 0.0043251261531777286) +zone = ('coz058', 0.0048150890691008369) + +[81646] +centroid = (0.68237547917596519, -1.8850010230743053) +station = ('kajz', 0.0054876552145515485) +zone = ('coz009', 0.0020963252709738276) + +[81647] +centroid = (0.69133421931986705, -1.8773917715080455) +station = ('kril', 0.002777644633381952) +zone = ('coz007', 0.0062607647690701316) + +[81648] +centroid = (0.6976103709501611, -1.8969019345514642) +station = ('keeo', 0.010799986370343819) +zone = ('coz003', 0.0076370773546577632) + +[81649] +centroid = (0.68993261521076044, -1.8549038498679218) +station = ('kccu', 0.0020434088568501005) +zone = ('coz058', 0.0048893035016405384) + +[81650] +centroid = (0.69378647673208915, -1.8869404154858289) +station = ('keeo', 0.0060615304918685839) +zone = ('coz003', 0.0053199185343115489) + +[81652] +centroid = (0.68914625711627442, -1.8789292494994196) +station = ('kril', 0.0011929454863412309) +zone = ('coz007', 0.0044108618760936337) + +[81653] +centroid = (0.71516225711954962, -1.872170235078269) +station = ('khdn', 0.0086210053880209376) +zone = ('wyz112', 0.0040428005247955421) + +[81654] +centroid = (0.68412618404205572, -1.8684187545708624) +station = ('kase', 0.0025894981546006205) +zone = ('coz010', 0.0052469708040982161) + +[81655] +centroid = (0.69431244915547019, -1.8580755319978159) +station = ('k20v', 0.0049084862257122016) +zone = ('coz032', 0.0060948096098656689) + +[81656] +centroid = (0.68563252535957442, -1.8657090785472636) +station = ('kase', 0.00097378184482697059) +zone = ('coz010', 0.0028684771387503991) + +[81657] +centroid = (0.69247681656797766, -1.8554297873847176) +station = ('kccu', 0.0042186508330749823) +zone = ('coz034', 0.0062784724498594416) + +[82001] +centroid = (0.71719690960164706, -1.8314833988084573) +station = ('kfew', 0.0021455475334938722) +zone = ('wyz117', 0.0040625362777380438) + +[82005] +centroid = (0.71803281759359716, -1.8304058674348613) +station = ('kfew', 0.0010383789549124832) +zone = ('wyz117', 0.0036671843819197363) + +[82007] +centroid = (0.71703483832730674, -1.8274840990005603) +station = ('kcys', 0.0016899311226727222) +zone = ('wyz118', 0.0043249494371870555) + +[82009] +centroid = (0.72211976783652965, -1.8300407969152215) +station = ('kfew', 0.0038077691411361001) +zone = ('wyz118', 0.0027319356808504129) + +[82050] +centroid = (0.72357219593345434, -1.8177698930899326) +station = ('kibm', 0.0079465615811422224) +zone = ('wyz119', 0.0032021889615231852) + +[82051] +centroid = (0.72574165764697574, -1.8429879111059033) +station = ('klar', 0.0047226504197892269) +zone = ('wyz115', 0.0038386990382953444) + +[82052] +centroid = (0.71765409859920681, -1.8379820101052107) +station = ('klar', 0.005835506057290869) +zone = ('wyz116', 0.0030420049308083714) + +[82053] +centroid = (0.71998446221646972, -1.8214157113644234) +station = ('kfew', 0.0060040737999289403) +zone = ('wyz119', 0.0017472438873863236) + +[82054] +centroid = (0.71670676878780948, -1.8214346830933925) +station = ('kfew', 0.0060157014833939516) +zone = ('wyz119', 0.0041988423156410007) + +[82055] +centroid = (0.72138679936386219, -1.8531188841886146) +station = ('klar', 0.0066801031673166204) +zone = ('wyz114', 0.0018619883003866541) + +[82058] +centroid = (0.73455815345684017, -1.8436990280563359) +station = ('kdgw', 0.012861821548919209) +zone = ('wyz103', 0.0046524889727611544) + +[82059] +centroid = (0.71651740056396807, -1.8357137278494413) +station = ('kfew', 0.0053156225001860513) +zone = ('wyz116', 0.0048098252742221018) + +[82060] +centroid = (0.72042630976990463, -1.8238162895774941) +station = ('kfew', 0.0044747803660591771) +zone = ('wyz118', 0.0022455100053331758) + +[82061] +centroid = (0.72335488498828859, -1.8354119429684792) +station = ('kfew', 0.0068718368691012225) +zone = ('wyz117', 0.0028506618608685214) + +[82063] +centroid = (0.71353054880186007, -1.8500035587402672) +station = ('k33v', 0.0041668618501973995) +zone = ('coz030', 0.0054632656950428368) + +[82070] +centroid = (0.71899674548618109, -1.8472847546446809) +station = ('klar', 0.0031214157409617084) +zone = ('wyz115', 0.0037296939337451472) + +[82072] +centroid = (0.72282465396153261, -1.840905227162791) +station = ('klar', 0.0030273122443149857) +zone = ('wyz116', 0.0026103105555409412) + +[82073] +centroid = (0.72181169977026016, -1.8428502569877985) +station = ('klar', 0.0012509700439136632) +zone = ('wyz116', 0.0030311495440257883) + +[82081] +centroid = (0.72489873343143263, -1.8237310127902417) +station = ('kfew', 0.0076682859881372408) +zone = ('wyz118', 0.0041762676715978138) + +[82082] +centroid = (0.71969208466017565, -1.8174852647955173) +station = ('kibm', 0.0062059632800565258) +zone = ('wyz119', 0.0015677592280220383) + +[82083] +centroid = (0.72714903879590642, -1.8514446421970541) +station = ('klar', 0.0081020742171115309) +zone = ('wyz110', 0.002383927387586859) + +[82084] +centroid = (0.71602809750817142, -1.8434127591524239) +station = ('klar', 0.005120969310442528) +zone = ('wyz116', 0.0055437108227003734) + +[82190] +centroid = (0.77758978721682848, -1.929114726063945) +station = ('kp60', 0.0014119740738717547) +zone = ('wyz001', 0.00066396073968582995) + +[82201] +centroid = (0.73336522091310197, -1.8351962900861025) +station = ('ktor', 0.012961798918218619) +zone = ('wyz106', 0.0026468155735674789) + +[82210] +centroid = (0.72856909103520662, -1.8296343097324321) +station = ('kfew', 0.010199287685229654) +zone = ('wyz106', 0.0056325766587365933) + +[82212] +centroid = (0.73790091276001479, -1.8245547907438904) +station = ('ktor', 0.006425138915611861) +zone = ('wyz108', 0.004105239854097234) + +[82213] +centroid = (0.74167407025673127, -1.8326726836140588) +station = ('kdgw', 0.0072137300529304879) +zone = ('wyz107', 0.0047628537575371277) + +[82214] +centroid = (0.73757128987748311, -1.8287619069058227) +station = ('ktor', 0.0089394733200535929) +zone = ('wyz107', 0.0013717132542713515) + +[82215] +centroid = (0.73970544358023671, -1.8283993671135985) +station = ('ktor', 0.0097805949743000557) +zone = ('wyz107', 0.0029798250560863016) + +[82217] +centroid = (0.72885577881813912, -1.8175234875061361) +station = ('ktor', 0.0050582461302660919) +zone = ('wyz108', 0.0063742813457526581) + +[82219] +centroid = (0.74174252206999447, -1.8241009004186168) +station = ('ktor', 0.0091292678216242616) +zone = ('wyz107', 0.0065905670116033809) + +[82221] +centroid = (0.72672085717051471, -1.8208753399747137) +station = ('ktor', 0.0075552700522376415) +zone = ('wyz119', 0.0062834112746047712) + +[82222] +centroid = (0.75391477988596078, -1.8264953001661353) +station = ('kdgw', 0.011632465988249241) +zone = ('wyz102', 0.003303452636628765) + +[82223] +centroid = (0.73531293854515756, -1.822050156000816) +station = ('ktor', 0.0034784260747130996) +zone = ('wyz108', 0.00092106683355458723) + +[82224] +centroid = (0.75096552251594073, -1.8292529203842862) +station = ('kdgw', 0.0083494241154427121) +zone = ('wyz102', 0.0042793685472682285) + +[82225] +centroid = (0.7502421708074517, -1.8207964510925234) +station = ('kcut', 0.015837041325612641) +zone = ('wyz102', 0.0022936986432278436) + +[82227] +centroid = (0.74624077660445198, -1.8277789549243919) +station = ('kdgw', 0.0084802537134605425) +zone = ('wyz102', 0.0061259313837109617) + +[82229] +centroid = (0.74836316678804715, -1.8320214314569698) +station = ('kdgw', 0.0054983891615986071) +zone = ('wyz102', 0.0070095311743663879) + +[82240] +centroid = (0.7376673527995129, -1.8179056971590302) +station = ('ktor', 0.0037579458669056184) +zone = ('wyz108', 0.0039909345104188268) + +[82242] +centroid = (0.74516034798429742, -1.817051393396764) +station = ('ktor', 0.011261585781439151) +zone = ('nez095', 0.0043419641256039095) + +[82243] +centroid = (0.73295821013153695, -1.8226340035421931) +station = ('ktor', 0.0037437465266115591) +zone = ('wyz108', 0.0018921227481806286) + +[82244] +centroid = (0.73099476708292077, -1.8226559248775982) +station = ('ktor', 0.0046640757847982604) +zone = ('wyz108', 0.0037168577538364395) + +[82301] +centroid = (0.73115360949814479, -1.8760647976777542) +station = ('krwl', 0.0041053736227547929) +zone = ('wyz109', 0.0051912946669679938) + +[82321] +centroid = (0.71971391872911805, -1.8804422230680962) +station = ('krwl', 0.012114334550311662) +zone = ('wyz111', 0.00096089426750394012) + +[82322] +centroid = (0.73718757924143219, -1.8772940854298112) +station = ('krwl', 0.0089600599728161586) +zone = ('wyz019', 0.0057363851245520242) + +[82323] +centroid = (0.71650061049656388, -1.8762302199842582) +station = ('kcag', 0.0096447572320279111) +zone = ('wyz111', 0.0049221611681887654) + +[82324] +centroid = (0.72734896626172241, -1.8572400079783011) +station = ('krwl', 0.010495402788792477) +zone = ('wyz110', 0.0020148912980575478) + +[82325] +centroid = (0.71989524098510771, -1.8624952292626411) +station = ('k33v', 0.010528764946922122) +zone = ('wyz113', 0.0025554181805103292) + +[82327] +centroid = (0.73568156953647135, -1.8621711390738385) +station = ('krwl', 0.0089798181534092684) +zone = ('wyz104', 0.0031553252701051432) + +[82329] +centroid = (0.73439545386396921, -1.851458168498757) +station = ('klar', 0.014337725072698471) +zone = ('wyz105', 0.00099715615562199437) + +[82331] +centroid = (0.72204313042907464, -1.8639512352845324) +station = ('krwl', 0.0091683355505708386) +zone = ('wyz113', 0.00044041483060962251) + +[82332] +centroid = (0.7162147779249648, -1.8724017355502534) +station = ('khdn', 0.0096844066944354237) +zone = ('wyz112', 0.0033367057860845266) + +[82334] +centroid = (0.73131112546313737, -1.8678124097354269) +station = ('krwl', 0.0029534388984570098) +zone = ('wyz109', 0.0017911913907893838) + +[82335] +centroid = (0.728740936153358, -1.8633166335685072) +station = ('krwl', 0.0057811311903543244) +zone = ('wyz109', 0.0046103726856669223) + +[82336] +centroid = (0.72777079488863694, -1.8885956159352502) +station = ('krks', 0.011106728325122358) +zone = ('wyz030', 0.0034336644353212347) + +[82401] +centroid = (0.76774543210387969, -1.8876111280640779) +station = ('kwrl', 0.002567558244000576) +zone = ('wyz005', 0.0040107881260058884) + +[82410] +centroid = (0.77413579808042421, -1.887035745369573) +station = ('kgey', 0.002861699108828844) +zone = ('wyz004', 0.0040143929420581497) + +[82411] +centroid = (0.77517915590726638, -1.8929497760866631) +station = ('kgey', 0.0049962915370468574) +zone = ('wyz004', 0.0029996934236520036) + +[82412] +centroid = (0.78185249211543673, -1.8946157801241543) +station = ('kcod', 0.0075484806202507663) +zone = ('wyz004', 0.0054040670471771661) + +[82414] +centroid = (0.77653864522152238, -1.91276910675378) +station = ('kcod', 0.0071938759363572614) +zone = ('wyz002', 0.0048307569946177608) + +[82420] +centroid = (0.78425200567766362, -1.8929443306593969) +station = ('kgey', 0.0086423918537928048) +zone = ('mtz039', 0.0067224998127327898) + +[82421] +centroid = (0.78382199145655729, -1.8954119120624515) +station = ('kcod', 0.0085951022690865866) +zone = ('mtz039', 0.0062737189499566613) + +[82422] +centroid = (0.77663072879285755, -1.8916275320986446) +station = ('kgey', 0.0037356772400368491) +zone = ('wyz004', 0.0013045627743235812) + +[82423] +centroid = (0.78480834683002931, -1.8950996901125623) +station = ('kcod', 0.0095236247357968432) +zone = ('mtz039', 0.0054549361752817072) + +[82426] +centroid = (0.77689116682384018, -1.8807843250547795) +station = ('kgey', 0.0040121620641635752) +zone = ('wyz098', 0.0057139334903139162) + +[82428] +centroid = (0.77364282983319843, -1.8764228868803858) +station = ('kjpd', 0.0052949795969851289) +zone = ('wyz008', 0.0014091870080972556) + +[82430] +centroid = (0.76472393555611962, -1.8881833168060516) +station = ('kwrl', 0.0039619519153371256) +zone = ('wyz005', 0.0013463769968199886) + +[82431] +centroid = (0.78260986029104729, -1.8878246167381818) +station = ('kgey', 0.0057363306817403894) +zone = ('wyz004', 0.0054287784364765047) + +[82432] +centroid = (0.77148787180576095, -1.8825914040557095) +station = ('kwrl', 0.0042616464459352488) +zone = ('wyz006', 0.0045846681425986066) + +[82433] +centroid = (0.76901152884986135, -1.9041942692321467) +station = ('kcod', 0.0080225239908834848) +zone = ('wyz002', 0.0062580134168460661) + +[82434] +centroid = (0.77462761441034367, -1.8901589771594316) +station = ('kgey', 0.0035515464757014561) +zone = ('wyz004', 0.0028242604396320338) + +[82435] +centroid = (0.78209305084623915, -1.9008438653868485) +station = ('kcod', 0.0052977281841715051) +zone = ('wyz003', 0.0063584778051498378) + +[82440] +centroid = (0.78050684326214914, -1.9000382388574202) +station = ('kcod', 0.0040189684723440991) +zone = ('wyz003', 0.0050765945066394676) + +[82441] +centroid = (0.77919974873203812, -1.8809201814837548) +station = ('kgey', 0.0045050433288004342) +zone = ('wyz098', 0.0041475635025185276) + +[82442] +centroid = (0.76583820611047027, -1.8731175997962515) +station = ('kjpd', 0.0051098578390837467) +zone = ('wyz009', 0.0037538903639092605) + +[82443] +centroid = (0.76317396100730095, -1.8931958151513169) +station = ('ktbx', 0.0054497195461422673) +zone = ('wyz005', 0.0026039906303220936) + +[82450] +centroid = (0.77676190773943743, -1.9100108058572207) +station = ('kcod', 0.0052174686087547197) +zone = ('wyz002', 0.0052323295449523488) + +[82501] +centroid = (0.75106003209493621, -1.8885759286212878) +station = ('kriw', 0.0031505038724351608) +zone = ('wyz017', 0.0019976298826825905) + +[82510] +centroid = (0.7503876614538979, -1.8953902176198492) +station = ('kriw', 0.0022726851071736072) +zone = ('wyz018', 0.0034787118767436267) + +[82512] +centroid = (0.75575486306304585, -1.907341481845928) +station = ('klnd', 0.010985739059052757) +zone = ('wyz016', 0.002696039824058138) + +[82513] +centroid = (0.76143798672009733, -1.9140705638704072) +station = ('kpna', 0.014626404845428393) +zone = ('wyz016', 0.0051819932379910828) + +[82514] +centroid = (0.75112347481324626, -1.9012069462311407) +station = ('klnd', 0.004590390183938046) +zone = ('wyz015', 0.004526194176309885) + +[82515] +centroid = (0.74881138479325182, -1.8944259406614148) +station = ('klnd', 0.002874503419385617) +zone = ('wyz018', 0.0022327039292749898) + +[82516] +centroid = (0.75378051170660487, -1.8994739390036655) +station = ('klnd', 0.0066093990827795508) +zone = ('wyz017', 0.0071434757897998503) + +[82520] +centroid = (0.74524110436878721, -1.8957521640001278) +station = ('klnd', 0.0025233240244067526) +zone = ('wyz018', 0.0017269760081687221) + +[82523] +centroid = (0.75856948573456695, -1.8993137177783324) +station = ('ktbx', 0.0074656201505998851) +zone = ('wyz005', 0.0088044612998216237) + +[82601] +centroid = (0.75204462468586375, -1.8567135119561446) +station = ('kcpr', 0.0034715505118566945) +zone = ('wyz020', 0.003800520479587561) + +[82604] +centroid = (0.74800628186259932, -1.863501376669831) +station = ('kcpr', 0.003959071463429044) +zone = ('wyz020', 0.0038241421330856384) + +[82609] +centroid = (0.74709169442796919, -1.8532053652530511) +station = ('kcpr', 0.0040139703258551635) +zone = ('wyz022', 0.0036338151817915851) + +[82620] +centroid = (0.74111999803239315, -1.8693727864465874) +station = ('kcpr', 0.011211313304169841) +zone = ('wyz104', 0.0044725244675447584) + +[82630] +centroid = (0.7533743212297882, -1.8730391821529595) +station = ('kcpr', 0.011797049140767997) +zone = ('wyz020', 0.0083223582354856988) + +[82633] +centroid = (0.75088026318198087, -1.8397559278503528) +station = ('kdgw', 0.0038945720956355899) +zone = ('wyz101', 0.0010984266786561744) + +[82635] +centroid = (0.75744065913425473, -1.8539304448374996) +station = ('kcpr', 0.009234054013005857) +zone = ('wyz011', 0.0078551879497408463) + +[82636] +centroid = (0.74885306325578949, -1.8530272369495926) +station = ('kcpr', 0.0037861026794049624) +zone = ('wyz022', 0.0053704225589105209) + +[82637] +centroid = (0.74725126988147905, -1.8480345480913374) +station = ('kcpr', 0.0075958642793957226) +zone = ('wyz022', 0.0060703627999626076) + +[82638] +centroid = (0.75249027705706806, -1.8731406555956704) +station = ('kcpr', 0.011553487922252912) +zone = ('wyz020', 0.0082613723265567013) + +[82639] +centroid = (0.76292036466698621, -1.8607414875236523) +station = ('kjpd', 0.010339357910586777) +zone = ('wyz011', 0.0029148994199918073) + +[82640] +centroid = (0.76033218101261879, -1.8535383217144539) +station = ('kcpr', 0.012072234841896713) +zone = ('wyz011', 0.0053870725235516202) + +[82642] +centroid = (0.75478206889786181, -1.8779821291275325) +station = ('ktbx', 0.0089084235894402088) +zone = ('wyz007', 0.0098514764439768671) + +[82643] +centroid = (0.75815683753951801, -1.8545843149884667) +station = ('kcpr', 0.0097718678441275561) +zone = ('wyz011', 0.0070221910354787611) + +[82644] +centroid = (0.74770971551610055, -1.8564475586847256) +station = ('kcpr', 0.0016469565092636571) +zone = ('wyz022', 0.0043004212545952845) + +[82646] +centroid = (0.75050772265314269, -1.864394950340267) +station = ('kcpr', 0.0048686488803008666) +zone = ('wyz020', 0.0021561671337947076) + +[82648] +centroid = (0.75539687858016935, -1.8701669985227074) +station = ('kcpr', 0.010985502440752349) +zone = ('wyz020', 0.0071095549629179439) + +[82649] +centroid = (0.75575083135247378, -1.8858866554966449) +station = ('ktbx', 0.0036795477888515093) +zone = ('wyz017', 0.0040414956279824612) + +[82701] +centroid = (0.762911969633284, -1.8227147250200977) +station = ('kcut', 0.010314530728021507) +zone = ('wyz058', 0.0028911457943883484) + +[82710] +centroid = (0.78027600601528035, -1.8194843125608742) +station = ('kspf', 0.0069739047473058209) +zone = ('wyz071', 0.002668455250187511) + +[82711] +centroid = (0.7803231648116693, -1.8231469034494767) +station = ('kspf', 0.0092723689905408) +zone = ('wyz071', 0.0042763289475485286) + +[82712] +centroid = (0.77585575024509446, -1.8172651264169633) +station = ('kspf', 0.0042460621746802278) +zone = ('wyz057', 0.0026134529700506948) + +[82714] +centroid = (0.77792031767057113, -1.8273528676941027) +station = ('kspf', 0.011504359541352451) +zone = ('wyz056', 0.001445091034400354) + +[82715] +centroid = (0.77002451794771887, -1.8174705342166306) +station = ('kspf', 0.0077148574960874509) +zone = ('wyz057', 0.0052452850171375229) + +[82716] +centroid = (0.77605428144750888, -1.8447267826396654) +station = ('kgcc', 0.0029195489169580664) +zone = ('wyz054', 0.0029202107581283092) + +[82718] +centroid = (0.7658301775959111, -1.8434450651968783) +station = ('kgcc', 0.0079830783584286993) +zone = ('wyz055', 0.001114113010093823) + +[82720] +centroid = (0.78183763936350226, -1.8268456226535956) +station = ('kspf', 0.012295251497333848) +zone = ('wyz056', 0.0036103275374557583) + +[82721] +centroid = (0.77635453043872948, -1.8311368985920591) +station = ('kgcc', 0.0083140132429313663) +zone = ('wyz056', 0.0026730374755646403) + +[82723] +centroid = (0.76797853827877594, -1.8225232100412765) +station = ('kcut', 0.011175258442678028) +zone = ('wyz058', 0.0042154252212359003) + +[82725] +centroid = (0.78324781303923607, -1.8448583455586807) +station = ('kgcc', 0.0096728498216651221) +zone = ('wyz054', 0.0052546142999600415) + +[82727] +centroid = (0.77360099429102813, -1.8360552364241791) +station = ('kgcc', 0.0043950237429554485) +zone = ('wyz054', 0.0064572224932542633) + +[82729] +centroid = (0.77393445689791418, -1.8215134323492426) +station = ('kspf', 0.0076535033457140085) +zone = ('wyz057', 0.001062787863096392) + +[82730] +centroid = (0.7687576358035737, -1.8274295574614354) +station = ('kcut', 0.014728649268191951) +zone = ('wyz058', 0.0043054623531892612) + +[82731] +centroid = (0.78233980549588622, -1.8376938911522915) +station = ('kgcc', 0.0091567760743065402) +zone = ('wyz054', 0.0051137940673187622) + +[82732] +centroid = (0.76280386393941546, -1.8434091986807497) +station = ('kgcc', 0.010993496698837949) +zone = ('wyz055', 0.0025753519044907375) + +[82801] +centroid = (0.78267044066938396, -1.8646398374876143) +station = ('kshr', 0.0021039719391480649) +zone = ('wyz099', 0.0024072835705972787) + +[82831] +centroid = (0.77841853935884542, -1.8509181112683124) +station = ('kgcc', 0.0077737608727040056) +zone = ('wyz054', 0.0062154027898258133) + +[82832] +centroid = (0.77832687466653061, -1.8639608345954184) +station = ('kshr', 0.0036635768079382276) +zone = ('wyz099', 0.0039069944445496692) + +[82833] +centroid = (0.77861378934226599, -1.8686095016048128) +station = ('kshr', 0.0029658757963848615) +zone = ('wyz099', 0.0059967943655164042) + +[82834] +centroid = (0.77212908831965121, -1.8615457352429714) +station = ('kbyg', 0.0026086235336079556) +zone = ('wyz010', 0.0036303290087759863) + +[82835] +centroid = (0.78116135918493956, -1.8561940321575812) +station = ('kshr', 0.0076179761936785518) +zone = ('wyz099', 0.0038012617077719988) + +[82836] +centroid = (0.78131981762772817, -1.8763631268067975) +station = ('kshr', 0.0067040748535805335) +zone = ('wyz098', 0.00028410791072922443) + +[82837] +centroid = (0.7814194410214319, -1.8545165787601967) +station = ('kshr', 0.0088066206827722565) +zone = ('wyz099', 0.00495109745751537) + +[82838] +centroid = (0.78410110451053616, -1.8777143781669841) +station = ('kshr', 0.0081405604013092287) +zone = ('wyz098', 0.0028201283334613257) + +[82839] +centroid = (0.78410335598527126, -1.8703136061798749) +station = ('kshr', 0.0036745883396381725) +zone = ('wyz098', 0.0048376676447155469) + +[82842] +centroid = (0.7779457820243576, -1.8663245689079793) +station = ('kshr', 0.0034064152200543266) +zone = ('wyz099', 0.0051808930601522354) + +[82844] +centroid = (0.78160322419166695, -1.8713609608107042) +station = ('kshr', 0.0031643799004466015) +zone = ('wyz098', 0.0033571089115542845) + +[82845] +centroid = (0.78126805116211395, -1.8618033458405656) +station = ('kshr', 0.0036336561801654536) +zone = ('wyz099', 0.00059101245509490591) + +[82901] +centroid = (0.72220417195915609, -1.9020286123363948) +station = ('krks', 0.0039654641631699915) +zone = ('wyz029', 0.0064776258745980935) + +[82922] +centroid = (0.75269907079548415, -1.9270399484623442) +station = ('kjac', 0.0092197109147305906) +zone = ('wyz025', 0.005387402531223078) + +[82923] +centroid = (0.74439077995721548, -1.9104831617659803) +station = ('kpna', 0.0050872919307130924) +zone = ('wyz014', 0.0045320137353810066) + +[82925] +centroid = (0.75466966969403337, -1.9182164538821795) +station = ('kpna', 0.0078529574043917326) +zone = ('wyz025', 0.0048312422916637681) + +[82929] +centroid = (0.72528459082246355, -1.9171330756555889) +station = ('krks', 0.010390405779215444) +zone = ('wyz028', 0.0022379832677480683) + +[82930] +centroid = (0.71585852131804772, -1.9311157984112342) +station = ('kevw', 0.0067284565097505203) +zone = ('wyz021', 0.0049148838367079704) + +[82932] +centroid = (0.73747337690644621, -1.9086393610375885) +station = ('kfwz', 0.0087004709841082186) +zone = ('wyz026', 0.0056095929123039035) + +[82933] +centroid = (0.72075008579944211, -1.9275141369668185) +station = ('kevw', 0.0078193850044108743) +zone = ('wyz021', 0.0014390637761963045) + +[82934] +centroid = (0.72612826552958498, -1.9200876039199501) +station = ('kevw', 0.014592855532197961) +zone = ('wyz028', 0.0045193370647672176) + +[82935] +centroid = (0.72760278949483992, -1.9140106990770636) +station = ('krks', 0.0081653679634565261) +zone = ('wyz028', 0.0022827390187463805) + +[82936] +centroid = (0.716673188653001, -1.9230711919163568) +station = ('kevw', 0.011717154427781869) +zone = ('wyz021', 0.0061878317033391703) + +[82937] +centroid = (0.72164310096451756, -1.9244812783256282) +station = ('kevw', 0.010175150880917121) +zone = ('wyz021', 0.0038516500474521354) + +[82938] +centroid = (0.71732402193106981, -1.9179217724912727) +station = ('kvel', 0.012714358110602531) +zone = ('wyz029', 0.0064316840224727971) + +[82939] +centroid = (0.71940585066284857, -1.925893528943172) +station = ('kevw', 0.0090642335467973085) +zone = ('wyz021', 0.0029093322842944206) + +[82941] +centroid = (0.74883512127107899, -1.9153268693192851) +station = ('kpna', 0.0020985681814966674) +zone = ('wyz025', 0.0040400249169612566) + +[82942] +centroid = (0.72805174053833044, -1.9001538843736574) +station = ('krks', 0.0030724081212428313) +zone = ('wyz030', 0.0063376675997870334) + +[82943] +centroid = (0.72875599834480276, -1.9060392742377226) +station = ('krks', 0.003395190003464266) +zone = ('wyz028', 0.0069604167059718561) + +[82944] +centroid = (0.71841410222198776, -1.9279716575769366) +station = ('kevw', 0.0076863296417534676) +zone = ('wyz021', 0.0024462445823930199) + +[82945] +centroid = (0.72857144722969691, -1.9032996483641595) +station = ('krks', 0.0025145147437237651) +zone = ('wyz028', 0.0087292667271511391) + +[83001] +centroid = (0.75737777492130542, -1.9308536150509994) +station = ('kjac', 0.00381801673997096) +zone = ('wyz013', 0.0044433367898589361) + +[83011] +centroid = (0.75964024523066564, -1.9278187143745842) +station = ('kjac', 0.0037502679899525338) +zone = ('wyz012', 0.0029322841014370379) + +[83012] +centroid = (0.76327550426318191, -1.9336614832983157) +station = ('kjac', 0.0024225233486621593) +zone = ('wyz013', 0.0020046639131910426) + +[83013] +centroid = (0.76783624158486086, -1.9279864056091158) +station = ('kjac', 0.0076563404241139586) +zone = ('wyz012', 0.0053553061354119835) + +[83014] +centroid = (0.75845293264711888, -1.9368683861725149) +station = ('kjac', 0.0039506538765915963) +zone = ('wyz013', 0.0049220176023867437) + +[83025] +centroid = (0.7608518353441075, -1.9346655537636952) +station = ('kjac', 0.0014558243248352649) +zone = ('wyz013', 0.0022378410840516896) + +[83101] +centroid = (0.73241476696234342, -1.9295563118179921) +station = ('kbpi', 0.012301699867879066) +zone = ('wyz027', 0.0024972353522041604) + +[83110] +centroid = (0.74570766578443026, -1.9346838448142563) +station = ('ku78', 0.009510756649796212) +zone = ('wyz023', 0.0029412308308747279) + +[83111] +centroid = (0.74650786433988459, -1.9403586607040681) +station = ('ku78', 0.005658927905439393) +zone = ('wyz023', 0.002936584459303909) + +[83112] +centroid = (0.74910592655781838, -1.9343916243375947) +station = ('ku78', 0.010714797899565235) +zone = ('wyz023', 0.0021569672825546699) + +[83113] +centroid = (0.74232090673081286, -1.9243628228292953) +station = ('kbpi', 0.0022195391601333631) +zone = ('wyz026', 0.0070413530313184203) + +[83114] +centroid = (0.73662287796194936, -1.9369065390699634) +station = ('ku78', 0.011014509644515289) +zone = ('wyz024', 0.0074136894166989802) + +[83115] +centroid = (0.74858489341622048, -1.9253709773651246) +station = ('kbpi', 0.0060356792443964765) +zone = ('wyz025', 0.0038625144770759378) + +[83116] +centroid = (0.72900654035892654, -1.9291707162263489) +station = ('kevw', 0.010934262364304509) +zone = ('wyz027', 0.0009625418084018533) + +[83118] +centroid = (0.75132680567110355, -1.9372731629326374) +station = ('kjac', 0.01020408079686343) +zone = ('wyz023', 0.0032254894290913365) + +[83119] +centroid = (0.74427677505047529, -1.9371094685020929) +station = ('ku78', 0.0076408622999817426) +zone = ('wyz023', 0.0038315067108276929) + +[83120] +centroid = (0.7490626074857839, -1.9393875944148435) +station = ('ku78', 0.0075708197789267368) +zone = ('wyz023', 0.0019922151051361167) + +[83121] +centroid = (0.729891736448953, -1.9291805773366228) +station = ('kevw', 0.01165046269344666) +zone = ('wyz027', 0.00030409972222619075) + +[83122] +centroid = (0.74735448865344212, -1.9363821723494945) +station = ('ku78', 0.0086874874432241248) +zone = ('wyz023', 0.00087923550833954832) + +[83123] +centroid = (0.73689740079999555, -1.9242291131553) +station = ('kbpi', 0.0066117233599203946) +zone = ('wyz026', 0.0065070061803437678) + +[83124] +centroid = (0.72907829084447595, -1.9239464570829397) +station = ('kevw', 0.013683233159996089) +zone = ('wyz027', 0.0042881341348568296) + +[83126] +centroid = (0.74340102119170204, -1.9343617268475082) +station = ('ku78', 0.0097148319105774088) +zone = ('wyz024', 0.0021936143646572345) + +[83127] +centroid = (0.74980095157254756, -1.9366854931201984) +station = ('ku78', 0.0096055472737201983) +zone = ('wyz023', 0.0017092163176383238) + +[83128] +centroid = (0.75161558784913851, -1.9334204358753226) +station = ('kjac', 0.0093642620144950787) +zone = ('wyz023', 0.0043787628647623429) + +[83201] +centroid = (0.74883234619756822, -1.9614023922013366) +station = ('kpih', 0.0028187087166357326) +zone = ('idz021', 0.0041075169057887603) + +[83202] +centroid = (0.74919146514445856, -1.9579582467219137) +station = ('kpih', 0.0053351392411511564) +zone = ('idz021', 0.0063752001634512865) + +[83203] +centroid = (0.7512313885208971, -1.9634246353924525) +station = ('kpih', 0.0025651630423901756) +zone = ('idz021', 0.002285114910623943) + +[83204] +centroid = (0.74798420344756167, -1.9657619977800158) +station = ('kpih', 0.0011200622195415089) +zone = ('idz021', 0.0027004486919486076) + +[83209] +centroid = (0.74800956308159305, -1.9622094848073364) +station = ('kpih', 0.0024471758493176919) +zone = ('idz021', 0.00406425481344531) + +[83210] +centroid = (0.75081149720945228, -1.969891411883649) +station = ('kpih', 0.0038378808616741766) +zone = ('idz021', 0.0025272120857453527) + +[83211] +centroid = (0.74527564443468419, -1.9727187405521249) +station = ('kpih', 0.0066517152504108413) +zone = ('idz021', 0.0070654456646574238) + +[83212] +centroid = (0.7424419802210237, -1.9642630741118179) +station = ('kpih', 0.0066341442929253001) +zone = ('idz021', 0.0083509808026614816) + +[83213] +centroid = (0.75990141629993402, -1.9768763766297632) +station = ('kpih', 0.013780724783091561) +zone = ('idz032', 0.010928765226263553) + +[83214] +centroid = (0.74246048071109494, -1.9601384073037498) +station = ('kpih', 0.0075696926427331101) +zone = ('idz024', 0.0086112062002310624) + +[83215] +centroid = (0.75822614456411463, -1.9689494053264702) +station = ('kida', 0.009532105376973991) +zone = ('idz020', 0.0051411013466398474) + +[83217] +centroid = (0.74661445159730389, -1.9537689503716442) +station = ('ku78', 0.0051204686017568765) +zone = ('idz023', 0.0045439030019997616) + +[83218] +centroid = (0.75603626249834488, -1.9576533027950052) +station = ('kida', 0.0036909839180356077) +zone = ('idz020', 0.0064483459005670249) + +[83220] +centroid = (0.73961726954642593, -1.9447145661847329) +station = ('ku78', 0.005188125385951938) +zone = ('idz025', 0.0018702748598611338) + +[83221] +centroid = (0.75614785885071745, -1.9644037651028212) +station = ('kida', 0.0070112816994513201) +zone = ('idz020', 0.0050723937061052521) + +[83223] +centroid = (0.73621096280518628, -1.9444182441843294) +station = ('ku78', 0.0084820802108558739) +zone = ('idz025', 0.0015558072348959705) + +[83226] +centroid = (0.77897458380523832, -1.9957821321532161) +station = ('kllj', 0.0025383681145945505) +zone = ('idz018', 0.0075806957172325461) + +[83227] +centroid = (0.77228920482522911, -1.998517761222792) +station = ('kllj', 0.0060065344000527323) +zone = ('idz018', 0.0009178124925945918) + +[83228] +centroid = (0.73711767880488988, -1.9558223651432005) +station = ('klgu', 0.0083208837620007935) +zone = ('idz024', 0.0024098262517568444) + +[83232] +centroid = (0.73545492107980737, -1.9542641526403124) +station = ('klgu', 0.0063943015586189894) +zone = ('idz024', 0.00042553276319969333) + +[83233] +centroid = (0.73535803785302911, -1.941458026146607) +station = ('ku78', 0.010066670497720953) +zone = ('idz025', 0.0034142530611299105) + +[83234] +centroid = (0.74041368073740355, -1.9565331853876602) +station = ('ku78', 0.0077519004549499093) +zone = ('idz024', 0.0055512782728285547) + +[83235] +centroid = (0.77799782774265214, -1.9843818509186995) +station = ('kllj', 0.0065131123198727643) +zone = ('idz010', 0.0042807770324434381) + +[83236] +centroid = (0.7538261346132521, -1.9525427693056556) +station = ('kida', 0.0061944001278530442) +zone = ('idz023', 0.0054263148062805066) + +[83237] +centroid = (0.73351741362387579, -1.9509038702314478) +station = ('klgu', 0.0043605654378891835) +zone = ('idz024', 0.0027400370419000284) + +[83238] +centroid = (0.73864107198920048, -1.9393475391085102) +station = ('ku78', 0.0083115750187524075) +zone = ('idz025', 0.0040952861288953996) + +[83239] +centroid = (0.74202009923423162, -1.9426813099660372) +station = ('ku78', 0.0042606873344349502) +zone = ('idz025', 0.0045379875439657807) + +[83241] +centroid = (0.74202413094480368, -1.9506735565833546) +station = ('ku78', 0.0033220392758747312) +zone = ('idz025', 0.0061177995709289388) + +[83243] +centroid = (0.73822933136536251, -1.9661357425860377) +station = ('kpih', 0.010827861632240261) +zone = ('idz022', 0.006316877013466865) + +[83244] +centroid = (0.76998346780371185, -1.9743839591914527) +station = ('kida', 0.016940023405454991) +zone = ('idz032', 0.0061457362283273611) + +[83245] +centroid = (0.747317156060742, -1.9583943695954018) +station = ('kpih', 0.0053044968576942001) +zone = ('idz021', 0.006766006348955694) + +[83246] +centroid = (0.74370256172656912, -1.955199334960116) +station = ('ku78', 0.0057079022332125673) +zone = ('idz023', 0.0072915486025461971) + +[83250] +centroid = (0.74477611374947084, -1.9583423413304) +station = ('kpih', 0.0066166452753419411) +zone = ('idz021', 0.0083454833334363834) + +[83251] +centroid = (0.7669400150139617, -1.9876538545739981) +station = ('ksun', 0.0093346754236090981) +zone = ('idz032', 0.0045080143981465343) + +[83252] +centroid = (0.73608238439919182, -1.9618646601070198) +station = ('klgu', 0.0099365305772229594) +zone = ('idz024', 0.006067709545185658) + +[83253] +centroid = (0.77344621849296125, -1.9842765726582192) +station = ('kllj', 0.0074730431104948203) +zone = ('idz032', 0.0036578418338571563) + +[83254] +centroid = (0.73877677133854314, -1.9420608803235382) +station = ('ku78', 0.0068916702709614251) +zone = ('idz025', 0.0022400375386556941) + +[83255] +centroid = (0.76245924867860926, -1.9824084420400545) +station = ('ksun', 0.0096178101451205294) +zone = ('idz032', 0.0074660640884684024) + +[83261] +centroid = (0.73680920931289229, -1.9448753459154267) +station = ('ku78', 0.0078168987666072838) +zone = ('idz025', 0.0009425120859421739) + +[83262] +centroid = (0.75443185113015665, -1.9682862674771751) +station = ('kpih', 0.0058354537715214674) +zone = ('idz021', 0.0040251399274518354) + +[83263] +centroid = (0.73620167765356559, -1.9504615165325299) +station = ('klgu', 0.0070575457472161814) +zone = ('idz024', 0.0026191389872994046) + +[83271] +centroid = (0.7407562016031074, -1.9706997785800029) +station = ('kpih', 0.0092021619806180698) +zone = ('idz022', 0.0040304896294813403) + +[83272] +centroid = (0.73594254861952202, -1.9462029480642487) +station = ('klgu', 0.0080157605524129889) +zone = ('idz025', 0.0021008719859724107) + +[83274] +centroid = (0.75656743600289689, -1.9564795514197466) +station = ('kida', 0.0029683977556552305) +zone = ('idz020', 0.0066256859788559391) + +[83276] +centroid = (0.74626245359376175, -1.9463197629510847) +station = ('ku78', 0.0020689331234621513) +zone = ('idz023', 0.003402295765259748) + +[83277] +centroid = (0.75165911636068339, -1.9664128659646694) +station = ('kpih', 0.0027585920535526096) +zone = ('idz021', 0.0010211721680211292) + +[83278] +centroid = (0.77381505892378522, -2.003878854179558) +station = ('ksnt', 0.002691210736598434) +zone = ('idz018', 0.0035401159583498543) + +[83281] +centroid = (0.73879528928190674, -1.9541657858836701) +station = ('ku78', 0.007443574564031984) +zone = ('idz024', 0.003551645693652696) + +[83283] +centroid = (0.73951515033189175, -1.9483539092876991) +station = ('ku78', 0.0049086312363109674) +zone = ('idz025', 0.0031975072314525893) + +[83285] +centroid = (0.75175598213416905, -1.9430224520216322) +station = ('ku78', 0.0080695179390181861) +zone = ('idz023', 0.0048583907364619927) + +[83286] +centroid = (0.73414522600911081, -1.9550436166842533) +station = ('klgu', 0.0053413539618290245) +zone = ('idz024', 0.0014653908687008708) + +[83287] +centroid = (0.73377561763341592, -1.9442826670080344) +station = ('klgu', 0.0073961283569284209) +zone = ('idz025', 0.0039866849912986333) + +[83301] +centroid = (0.74002928942294421, -1.9988361616382335) +station = ('ktwf', 0.0015406519393994385) +zone = ('idz030', 0.0036415422573915284) + +[83302] +centroid = (0.73699831573734587, -2.0072862953848118) +station = ('ktwf', 0.0081243074540135723) +zone = ('idz030', 0.0042732062919329586) + +[83311] +centroid = (0.73987535138291838, -1.9820782781054547) +station = ('kbyi', 0.0037933054876968133) +zone = ('idz022', 0.0057917580294460144) + +[83312] +centroid = (0.73261914501775205, -1.9835801862866735) +station = ('kbyi', 0.01012966774130019) +zone = ('idz022', 0.0085169108582645401) + +[83313] +centroid = (0.75662962208414541, -1.9941641770300325) +station = ('ksun', 0.0026448657136686174) +zone = ('idz031', 0.0042665014952067825) + +[83314] +centroid = (0.75023005822244293, -2.0062837608091737) +station = ('kjer', 0.0077766551877883894) +zone = ('idz028', 0.0057702761749531192) + +[83316] +centroid = (0.7436181401506502, -2.0050403707967606) +station = ('kjer', 0.0059518614824754287) +zone = ('idz016', 0.0044544851264986208) + +[83318] +centroid = (0.74068080337942122, -1.986472633189541) +station = ('kbyi', 0.0020591963200253241) +zone = ('idz017', 0.0092115072846578484) + +[83320] +centroid = (0.75889455330775091, -1.987453682762087) +station = ('ksun', 0.0054200874800915443) +zone = ('idz031', 0.005694983255646051) + +[83321] +centroid = (0.74112790437390463, -2.0056437834790524) +station = ('ktwf', 0.0055667990609790542) +zone = ('idz030', 0.0051540498537730375) + +[83322] +centroid = (0.75659148663998943, -2.0067550520670894) +station = ('ksun', 0.0089939227544828144) +zone = ('idz028', 0.0022042347076913797) + +[83323] +centroid = (0.74182758941773674, -1.9790662936021179) +station = ('kbyi', 0.0048848565715513062) +zone = ('idz022', 0.0050261043925404402) + +[83324] +centroid = (0.7482704723514737, -1.9944245627011374) +station = ('kjer', 0.0033330222078213029) +zone = ('idz016', 0.0046418251024551603) + +[83325] +centroid = (0.74329867508436509, -1.993878902963794) +station = ('kjer', 0.0036947565763161059) +zone = ('idz016', 0.0053534901896680927) + +[83327] +centroid = (0.75908905279959327, -2.0038030021702662) +station = ('ksun', 0.0064514659427355944) +zone = ('idz028', 0.0033459141500913271) + +[83328] +centroid = (0.74299448164903503, -2.0003771302881117) +station = ('ktwf', 0.0022584350552317038) +zone = ('idz016', 0.0031570368753405229) + +[83330] +centroid = (0.74965265094600553, -2.0020322434710707) +station = ('kjer', 0.0050455126942682621) +zone = ('idz016', 0.0037999469865249904) + +[83332] +centroid = (0.74705528685977263, -2.0058193810550957) +station = ('kjer', 0.0062064445195697251) +zone = ('idz016', 0.0043336076266231099) + +[83333] +centroid = (0.76041033685652304, -1.9951014711982311) +station = ('ksun', 0.0012000549829937171) +zone = ('idz031', 0.00050154064322259755) + +[83334] +centroid = (0.74079557623103243, -1.9947732620323935) +station = ('ktwf', 0.0025540980406748856) +zone = ('idz030', 0.0062805803601920203) + +[83335] +centroid = (0.74315390002291226, -1.9908416111863034) +station = ('kbyi', 0.0038927581051248165) +zone = ('idz016', 0.0073997991280583065) + +[83336] +centroid = (0.74289374124460994, -1.9866148949768709) +station = ('kbyi', 0.00078820798676106118) +zone = ('idz017', 0.0070129100501132189) + +[83337] +centroid = (0.754402355065798, -2.0097825525474766) +station = ('ksun', 0.011835800006175406) +zone = ('idz028', 0.0044494282094600553) + +[83338] +centroid = (0.74569373805699946, -1.9972134766727769) +station = ('kjer', 0.00027287416502078874) +zone = ('idz016', 0.0021295014503866627) + +[83340] +centroid = (0.76282112524571777, -2.0004688298870117) +station = ('ksun', 0.0054015120154862822) +zone = ('idz031', 0.004527884452407308) + +[83341] +centroid = (0.7403535541446723, -1.9961476390051689) +station = ('ktwf', 0.0018314928745326246) +zone = ('idz030', 0.0052128539399243327) + +[83342] +centroid = (0.7361356518479627, -1.9766743373155524) +station = ('kbyi', 0.009262677044485754) +zone = ('idz022', 0.0023767679720251419) + +[83344] +centroid = (0.74083849387733902, -1.9920891725356289) +station = ('ktwf', 0.0044875396933656848) +zone = ('idz016', 0.0079025727414573539) + +[83346] +centroid = (0.73789579894530644, -1.9865322361834967) +station = ('kbyi', 0.0047911782490908765) +zone = ('idz030', 0.01112886047281063) + +[83347] +centroid = (0.74462067472628812, -1.9863421174680769) +station = ('kbyi', 0.0020563577479833679) +zone = ('idz017', 0.005274887864503211) + +[83348] +centroid = (0.75484568614909697, -1.9915547178120832) +station = ('ksun', 0.0050071870279832769) +zone = ('idz031', 0.0064742925812570273) + +[83349] +centroid = (0.75217746169523314, -1.9928426311737149) +station = ('ksun', 0.0071999378127206321) +zone = ('idz017', 0.0056959570590119661) + +[83350] +centroid = (0.7451565606198205, -1.9823446502558941) +station = ('kbyi', 0.0034775541751501556) +zone = ('idz017', 0.0053271350350542028) + +[83352] +centroid = (0.75171479236382188, -1.9968717935651137) +station = ('kjer', 0.0058971282969315624) +zone = ('idz016', 0.006038602447425395) + +[83353] +centroid = (0.76257421351643817, -1.9952746776731989) +station = ('ksun', 0.003366289290325061) +zone = ('idz031', 0.0017360485205693455) + +[83354] +centroid = (0.76218856556491754, -1.9952999151341828) +station = ('ksun', 0.0029836470357744163) +zone = ('idz031', 0.0013637942905196194) + +[83355] +centroid = (0.7462580204574617, -2.002280219851194) +station = ('kjer', 0.0035142114312359828) +zone = ('idz016', 0.0016432638787597211) + +[83401] +centroid = (0.75995840130001158, -1.9526383435354948) +station = ('kida', 0.0024300873411888775) +zone = ('idz020', 0.0076686702586703228) + +[83402] +centroid = (0.75982137550043749, -1.9578022142867855) +station = ('kida', 0.0013912962456849919) +zone = ('idz020', 0.004055055213400726) + +[83404] +centroid = (0.75787055118231339, -1.9549794758342425) +station = ('kida', 0.0017785027931551114) +zone = ('idz020', 0.0067307337311453266) + +[83406] +centroid = (0.75823993266520551, -1.9514811378815449) +station = ('kida', 0.0034702391859475134) +zone = ('idz020', 0.0089060304372564486) + +[83414] +centroid = (0.76629200916928142, -1.9363240528854029) +station = ('kdij', 0.0034959880052304851) +zone = ('wyz013', 0.0055664758880403283) + +[83420] +centroid = (0.76929699490231762, -1.9433620581874851) +station = ('kdij', 0.0066554078223907027) +zone = ('idz019', 0.0061818666809680652) + +[83421] +centroid = (0.76829582168349608, -1.9465522408074505) +station = ('krxe', 0.0047129200878552819) +zone = ('idz019', 0.0045683366185632658) + +[83422] +centroid = (0.76320750623552425, -1.9413551564404945) +station = ('kdij', 0.0016697579297440305) +zone = ('wyz013', 0.0070291144948839632) + +[83423] +centroid = (0.7731823770699372, -1.9596651961836566) +station = ('krxe', 0.010133116591272282) +zone = ('idz019', 0.006144286783826846) + +[83424] +centroid = (0.76637318443279157, -1.9402496125324036) +station = ('kdij', 0.0030876810712826604) +zone = ('wyz013', 0.0076226314408800689) + +[83425] +centroid = (0.76641240198108396, -1.9589999813925514) +station = ('kida', 0.0072506339485134607) +zone = ('idz020', 0.0060545169373408111) + +[83427] +centroid = (0.7596478025063268, -1.9535914329334236) +station = ('kida', 0.0017030915690794228) +zone = ('idz020', 0.0070468983066246131) + +[83428] +centroid = (0.75874887067508712, -1.9402594736426773) +station = ('kdij', 0.0047383163993487869) +zone = ('wyz013', 0.0068037360309317098) + +[83429] +centroid = (0.77627361697460695, -1.9442639047185755) +station = ('kwys', 0.0050184531225949758) +zone = ('idz019', 0.007405707034179307) + +[83431] +centroid = (0.7625068961671887, -1.9553435864227933) +station = ('kida', 0.0030279457510061611) +zone = ('idz020', 0.0057780082872125136) + +[83433] +centroid = (0.77640067694415216, -1.9431292138119765) +station = ('kwys', 0.0043913077540540255) +zone = ('idz019', 0.008085695906919441) + +[83434] +centroid = (0.76362774661281951, -1.9548802015063889) +station = ('krxe', 0.0029570169321098535) +zone = ('idz020', 0.0064469833203616876) + +[83435] +centroid = (0.76775049355871039, -1.9646927392670739) +station = ('kida', 0.010390475730928472) +zone = ('idz020', 0.0067185664917414172) + +[83436] +centroid = (0.7654518076673712, -1.9455542266345751) +station = ('krxe', 0.0041490236593110102) +zone = ('idz019', 0.007103623876724475) + +[83440] +centroid = (0.76471060124063428, -1.9516716056628152) +station = ('krxe', 0.00043182889673037045) +zone = ('idz019', 0.0063498052082844704) + +[83442] +centroid = (0.76220589668438976, -1.9529140881040175) +station = ('krxe', 0.0030669051547152306) +zone = ('idz020', 0.0074487645561420344) + +[83443] +centroid = (0.75949662208651902, -1.9463578809419482) +station = ('krxe', 0.0065839605465458934) +zone = ('idz023', 0.010436833718896085) + +[83444] +centroid = (0.76304766898262666, -1.9600324309115686) +station = ('kida', 0.0046186722735719749) +zone = ('idz020', 0.0029317138433755728) + +[83445] +centroid = (0.76758344809600199, -1.9507083759019319) +station = ('krxe', 0.0025803173977238213) +zone = ('idz019', 0.003537537139508599) + +[83446] +centroid = (0.77619282568353209, -1.9580436282289211) +station = ('krxe', 0.012167036591108878) +zone = ('idz019', 0.0068906950833193424) + +[83448] +centroid = (0.76532694681268354, -1.949404475324352) +station = ('krxe', 0.0013823346209280065) +zone = ('idz019', 0.0059499805617105926) + +[83449] +centroid = (0.75501281887826799, -1.9445968262733935) +station = ('kdij', 0.0093052777850678239) +zone = ('idz023', 0.0065323219965900178) + +[83450] +centroid = (0.76498912088266746, -1.96184727662767) +station = ('kida', 0.0069522153288226248) +zone = ('idz020', 0.0039626958823153402) + +[83451] +centroid = (0.76561581625718111, -1.9483690063857286) +station = ('krxe', 0.0021765671300983959) +zone = ('idz019', 0.0059241730865673085) + +[83452] +centroid = (0.76507242544786525, -1.9411259947097075) +station = ('kdij', 0.0022352452912391659) +zone = ('wyz013', 0.0074794144974034658) + +[83454] +centroid = (0.76088368760295644, -1.9539352278894817) +station = ('kida', 0.0019960220293024282) +zone = ('idz020', 0.0066406269119843242) + +[83455] +centroid = (0.76120863300309272, -1.9405247985955656) +station = ('kdij', 0.002440081989908372) +zone = ('wyz013', 0.0063090116119137868) + +[83460] +centroid = (0.76475126741220578, -1.9509676794689006) +station = ('krxe', 0.00036224743165529896) +zone = ('idz019', 0.0063262675727283101) + +[83462] +centroid = (0.79065479839848241, -1.9863476501618058) +station = ('ksmn', 0.003346485340608411) +zone = ('idz010', 0.0090387330542836958) + +[83463] +centroid = (0.79556589311420667, -1.9906170745780343) +station = ('ksmn', 0.0083965086324286706) +zone = ('idz009', 0.0090511512534103902) + +[83464] +centroid = (0.77712441262507659, -1.9765779078743797) +station = ('ksmn', 0.012955688645626698) +zone = ('idz010', 0.006450316656547354) + +[83465] +centroid = (0.78164375073689829, -1.9839984369886212) +station = ('ksmn', 0.0063379830133047967) +zone = ('idz010', 0.0011806101657106695) + +[83466] +centroid = (0.79263859198617659, -1.990489176850448) +station = ('ksmn', 0.0055774083436066907) +zone = ('idz009', 0.0066423081718970222) + +[83467] +centroid = (0.78505951716268385, -1.9878863498836565) +station = ('ksmn', 0.0023812779174337251) +zone = ('idz010', 0.0048962589032512348) + +[83468] +centroid = (0.78404132698365536, -1.9825601984185155) +station = ('ksmn', 0.0049398138397828261) +zone = ('idz010', 0.0019944027615913934) + +[83469] +centroid = (0.79217269379564925, -1.9970178427169207) +station = ('ksmn', 0.0081267307566392499) +zone = ('idz009', 0.0046795485451264348) + +[83501] +centroid = (0.80651865447521953, -2.0407912414090066) +station = ('klws', 0.0029309807946475228) +zone = ('idz027', 0.0041164081118285085) + +[83520] +centroid = (0.8123863816072544, -2.0302545490883768) +station = ('kgic', 0.010814827967481101) +zone = ('idz026', 0.0048392456634395731) + +[83522] +centroid = (0.80144821119878817, -2.0335099895690738) +station = ('kgic', 0.004728494096580018) +zone = ('idz008', 0.0045231854986144604) + +[83523] +centroid = (0.8071956502387756, -2.0323230958645477) +station = ('kgic', 0.0066029676636037123) +zone = ('idz027', 0.002011707037370017) + +[83524] +centroid = (0.80923471840388062, -2.0361978315237304) +station = ('klws', 0.0042288278353467953) +zone = ('idz026', 0.0015502873119175372) + +[83525] +centroid = (0.79942600291425747, -2.016036294150175) +station = ('kp69', 0.0060325502962699489) +zone = ('idz006', 0.0030155487996024934) + +[83526] +centroid = (0.80543040678001598, -2.0317739280154079) +station = ('kgic', 0.0050055038236223003) +zone = ('idz027', 0.0022760431562101045) + +[83530] +centroid = (0.8014539358787347, -2.0260515693567718) +station = ('kgic', 0.00061850661505751089) +zone = ('idz007', 0.0050546931369431529) + +[83533] +centroid = (0.80450080951381875, -2.0287168791107844) +station = ('kgic', 0.0029874904237372655) +zone = ('idz007', 0.00283477762886199) + +[83535] +centroid = (0.81217491751508264, -2.0372182033643238) +station = ('klws', 0.0045754161383260109) +zone = ('idz026', 0.0014787529072255985) + +[83536] +centroid = (0.80676766059960148, -2.0246055117116168) +station = ('kp69', 0.0050897439214395469) +zone = ('idz007', 0.00088312819925078835) + +[83537] +centroid = (0.81397964032152237, -2.0341963053908358) +station = ('klws', 0.0073262963519866693) +zone = ('idz026', 0.0037390217550382003) + +[83539] +centroid = (0.80595561125852611, -2.0067812145525767) +station = ('kp69', 0.0074733790743922047) +zone = ('idz006', 0.0069158444626519783) + +[83540] +centroid = (0.80887652448149372, -2.0382422578496389) +station = ('klws', 0.0028433457856553391) +zone = ('idz026', 0.0020753925233493601) + +[83541] +centroid = (0.81181155741811006, -2.0327756422862975) +station = ('klws', 0.0070619033849249769) +zone = ('idz026', 0.0030133911622295187) + +[83542] +centroid = (0.79533144303578629, -2.0308171559727572) +station = ('kgic', 0.0071123134268538451) +zone = ('idz008', 0.0020024629108436431) + +[83543] +centroid = (0.80761976524701018, -2.0286560194797678) +station = ('kgic', 0.0059224445763279114) +zone = ('idz007', 0.0022527534762371688) + +[83544] +centroid = (0.81153124008694721, -2.0270787654347404) +station = ('kp69', 0.0090226674960678342) +zone = ('idz007', 0.0050990770064970603) + +[83545] +centroid = (0.81029388891374576, -2.0319437310983344) +station = ('kgic', 0.009182486524521586) +zone = ('idz027', 0.004551093243430138) + +[83546] +centroid = (0.8126253869950224, -2.0214794001284919) +station = ('kp69', 0.0077509461264215146) +zone = ('idz005', 0.0039810917388357417) + +[83547] +centroid = (0.78842657144904627, -2.028389001557505) +station = ('kmyl', 0.0053305807540706815) +zone = ('idz011', 0.0080602229382969928) + +[83548] +centroid = (0.80915078552015218, -2.0333964209946469) +station = ('kgic', 0.0086375349140526223) +zone = ('idz027', 0.0031071492010059706) + +[83549] +centroid = (0.79140504563074465, -2.0279143069075478) +station = ('kmyl', 0.0081515477067844021) +zone = ('idz008', 0.0064162017630055935) + +[83552] +centroid = (0.8029920770952248, -2.0234115494236198) +station = ('kgic', 0.0025777314992238526) +zone = ('idz007', 0.0038919978207176071) + +[83553] +centroid = (0.80954681818072227, -2.0226721406860122) +station = ('kp69', 0.0054832368282552828) +zone = ('idz007', 0.0037402817435334703) + +[83554] +centroid = (0.79786506769773624, -2.0293059451866253) +station = ('kgic', 0.0043677826889295373) +zone = ('idz008', 0.0023475410920349594) + +[83555] +centroid = (0.80507750120526278, -2.0366147732287394) +station = ('klws', 0.0057461180737370787) +zone = ('idz027', 0.0016632063496849138) + +[83601] +centroid = (0.76604542905255957, -2.0116654137445282) +station = ('ksnt', 0.0068823937022836658) +zone = ('idz013', 0.00360679936309027) + +[83602] +centroid = (0.76917709078270557, -2.0264787561444897) +station = ('kboi', 0.0089342982259948776) +zone = ('idz012', 0.0087572711657940075) + +[83604] +centroid = (0.74203275287130865, -2.020181171870981) +station = ('kmuo', 0.00945478257630754) +zone = ('idz015', 0.0048861327058459889) + +[83605] +centroid = (0.76204405230285233, -2.036036353661336) +station = ('keul', 0.00057687037800841575) +zone = ('idz012', 0.0023867158767351001) + +[83607] +centroid = (0.76287313605742724, -2.0376813439346328) +station = ('keul', 0.0019880726512158551) +zone = ('idz012', 0.0016849821821913493) + +[83610] +centroid = (0.78092027685536158, -2.0380788601250672) +station = ('kmyl', 0.0088850576312067796) +zone = ('idz033', 0.0052499828016605654) + +[83611] +centroid = (0.78063835382128688, -2.0135476640763414) +station = ('ksnt', 0.010539427252718159) +zone = ('idz011', 0.0066002547656385871) + +[83612] +centroid = (0.78399448234653191, -2.0348548006643208) +station = ('kmyl', 0.0062782204678506186) +zone = ('idz033', 0.0077425951907860299) + +[83615] +centroid = (0.78051550009523907, -2.0255392803147263) +station = ('kmyl', 0.0028682153279234773) +zone = ('idz011', 0.0021567590776636267) + +[83616] +centroid = (0.76402763645103644, -2.0314745516888135) +station = ('kman', 0.0037551030088605738) +zone = ('idz012', 0.0037605472371934857) + +[83617] +centroid = (0.76684330632010878, -2.0333993531477903) +station = ('keul', 0.0055385131043344934) +zone = ('idz012', 0.0033991052497133359) + +[83619] +centroid = (0.76735320426107889, -2.0404689838159187) +station = ('kono', 0.0016012707824037309) +zone = ('idz012', 0.0040412900663568613) + +[83622] +centroid = (0.76974903517858406, -2.022802778580524) +station = ('kboi', 0.010274316090688171) +zone = ('idz013', 0.0081422791810283404) + +[83623] +centroid = (0.75192330684955766, -2.0139813434888767) +station = ('kmuo', 0.0060701288714798875) +zone = ('idz014', 0.006023192659647598) + +[83624] +centroid = (0.74876186980237269, -2.0273458531701731) +station = ('kmuo', 0.0045438587362855052) +zone = ('idz014', 0.0051567665581871858) + +[83626] +centroid = (0.76214163366133136, -2.0391053231647502) +station = ('keul', 0.0025803540065641867) +zone = ('idz012', 0.0028581049331674697) + +[83627] +centroid = (0.74905761584412311, -2.0166810536824467) +station = ('kmuo', 0.0046846784787082296) +zone = ('idz014', 0.0051832372510337132) + +[83628] +centroid = (0.76088403666880688, -2.0417842639402211) +station = ('kman', 0.0058527104457111248) +zone = ('idz012', 0.0050995619042801758) + +[83629] +centroid = (0.76640617115565424, -2.026858382710091) +station = ('kboi', 0.0061625508789416358) +zone = ('idz012', 0.0073502460363481523) + +[83631] +centroid = (0.76559639074260655, -2.0183072118531147) +station = ('kboi', 0.0091171094912406957) +zone = ('idz013', 0.0029029776741948329) + +[83632] +centroid = (0.77736982337119964, -2.031788239715274) +station = ('kmyl', 0.0072535357783192842) +zone = ('idz033', 0.0023599257296106914) + +[83633] +centroid = (0.75072986816033649, -2.0109825362213924) +station = ('kjer', 0.011006395259816509) +zone = ('idz028', 0.0071703594777138896) + +[83634] +centroid = (0.75844645747559403, -2.0303145186014753) +station = ('kboi', 0.002279275175023666) +zone = ('idz012', 0.0075096977445888811) + +[83636] +centroid = (0.76635508536844843, -2.0361623315267448) +station = ('keul', 0.0048247661603187404) +zone = ('idz012', 0.0019996130411636176) + +[83637] +centroid = (0.76985178271164889, -2.0114828872113546) +station = ('ksnt', 0.0043089245164945299) +zone = ('idz013', 0.0068312827644968713) + +[83638] +centroid = (0.78656715002384903, -2.0239763903294428) +station = ('kmyl', 0.0035209275337452794) +zone = ('idz011', 0.0052247759694213254) + +[83639] +centroid = (0.75742711537925922, -2.0397056640675584) +station = ('keul', 0.0050666599399640426) +zone = ('idz012', 0.0073019635207513247) + +[83641] +centroid = (0.75667184159875123, -2.0347865931971527) +station = ('kman', 0.0040429685045432233) +zone = ('idz029', 0.0073957097274546619) + +[83642] +centroid = (0.76041892387644283, -2.0316283675557916) +station = ('kman', 0.0015247158537626108) +zone = ('idz012', 0.0053843464975838716) + +[83643] +centroid = (0.77897791738410971, -2.0322784154356968) +station = ('kmyl', 0.0062342471965617062) +zone = ('idz033', 0.0032268301752234234) + +[83644] +centroid = (0.76359826800175323, -2.0346986635094373) +station = ('keul', 0.002161849054818117) +zone = ('idz012', 0.0016212473997239837) + +[83645] +centroid = (0.77438462967188104, -2.0347658063257614) +station = ('kono', 0.0081970996167052054) +zone = ('idz033', 0.0018685452725983049) + +[83646] +centroid = (0.76182848668693859, -2.032117496078663) +station = ('kman', 0.001657239645555264) +zone = ('idz012', 0.0041624060788543115) + +[83647] +centroid = (0.75747802663353991, -2.0162628902469613) +station = ('kmuo', 0.0075127374624163867) +zone = ('idz013', 0.0061746772335170312) + +[83648] +centroid = (0.751356895147408, -2.0222502073393427) +station = ('kmuo', 8.0861285429863817e-06) +zone = ('idz014', 0.00094148043653175374) + +[83650] +centroid = (0.74793358889925377, -2.0363379116494955) +station = ('kman', 0.012848554654788924) +zone = ('idz029', 0.0021764930889057966) + +[83651] +centroid = (0.76074973358286591, -2.035408872888659) +station = ('keul', 0.00081236866686982135) +zone = ('idz012', 0.0037488732773028753) + +[83654] +centroid = (0.78731720526989357, -2.0308549074444775) +station = ('kmyl', 0.0052205842882913876) +zone = ('idz011', 0.0082197685978329695) + +[83655] +centroid = (0.76709435447971575, -2.0383638549386256) +station = ('kono', 0.0030709742744028522) +zone = ('idz012', 0.0029722465205081127) + +[83656] +centroid = (0.76317085432123244, -2.0385293470582995) +station = ('keul', 0.0026498713882794674) +zone = ('idz012', 0.0018178793279318981) + +[83657] +centroid = (0.77183739144176533, -2.0297556990815715) +station = ('keul', 0.011129224323770765) +zone = ('idz033', 0.0056577864622261442) + +[83660] +centroid = (0.76441436650669325, -2.0408060068944782) +station = ('kono', 0.0039752306759991947) +zone = ('idz012', 0.0029929722631051162) + +[83661] +centroid = (0.76935363083654473, -2.0369479740362375) +station = ('kono', 0.0040239234906467754) +zone = ('idz012', 0.0049700804873985018) + +[83666] +centroid = (0.76730478882762865, -2.0241609414445487) +station = ('kboi', 0.0076458115980030427) +zone = ('idz013', 0.0073371895458622192) + +[83669] +centroid = (0.76305297478355272, -2.0332283981475574) +station = ('keul', 0.002303109642220481) +zone = ('idz012', 0.0028149136092131643) + +[83670] +centroid = (0.76827009553032155, -2.0300433991554705) +station = ('keul', 0.0078421728161813323) +zone = ('idz012', 0.0061476041987756488) + +[83671] +centroid = (0.79033282005807448, -2.0118621996176902) +station = ('kmyl', 0.012196436281759085) +zone = ('idz006', 0.0096424980321956535) + +[83672] +centroid = (0.77447489810079406, -2.0412860247986546) +station = ('kono', 0.0062835443650198497) +zone = ('idz033', 0.0050261894268034653) + +[83676] +centroid = (0.76194165383563783, -2.0404211967009989) +station = ('keul', 0.0034855619703732911) +zone = ('idz012', 0.0036569530446910656) + +[83677] +centroid = (0.78680645211759004, -2.0155303930131918) +station = ('kmyl', 0.008190641997361239) +zone = ('idz011', 0.0074449896365624251) + +[83686] +centroid = (0.7590823856418506, -2.0351883854442545) +station = ('kman', 0.0018892572626695383) +zone = ('idz012', 0.0054112675540927656) + +[83687] +centroid = (0.76113758064924408, -2.0338170627976697) +station = ('kman', 0.00050473402283346034) +zone = ('idz012', 0.0038454346550720825) + +[83702] +centroid = (0.76229759628328952, -2.0272366479188757) +station = ('kboi', 0.0021733986493331801) +zone = ('idz012', 0.0071220031670874342) + +[83703] +centroid = (0.76210793135347532, -2.0288236583544217) +station = ('kboi', 0.001730499630370641) +zone = ('idz012', 0.0061039973442540358) + +[83704] +centroid = (0.76143760274766192, -2.0296024242666615) +station = ('kboi', 0.0012594342702128747) +zone = ('idz012', 0.0058928342848505325) + +[83705] +centroid = (0.76029319035712917, -2.0283325052496179) +station = ('kboi', 0.00024948009829173597) +zone = ('idz012', 0.0072825052328222327) + +[83706] +centroid = (0.76080869080499824, -2.0279741542475986) +station = ('kboi', 0.00065197484646159617) +zone = ('idz012', 0.0072283005571329891) + +[83709] +centroid = (0.76011029730481272, -2.0296447659543149) +station = ('kboi', 0.00076733780424707322) +zone = ('idz012', 0.0066362895075972031) + +[83712] +centroid = (0.76122406171368029, -2.0264619311705006) +station = ('kboi', 0.0017974998869316693) +zone = ('idz014', 0.0094453972029767755) + +[83713] +centroid = (0.76165763640646078, -2.0304045775908781) +station = ('kboi', 0.0017983549703562125) +zone = ('idz012', 0.0052812952592024166) + +[83714] +centroid = (0.76327916945461116, -2.0296160378348271) +station = ('kboi', 0.0029797771526555881) +zone = ('idz012', 0.0052062165385218908) + +[83716] +centroid = (0.76002221053746455, -2.0236128382462524) +station = ('kboi', 0.003671228959706866) +zone = ('idz014', 0.0077910052793401258) + +[83801] +centroid = (0.83665560373525605, -2.0362089143644808) +station = ('kcoe', 0.0034536114927741497) +zone = ('idz002', 0.0061384041132174164) + +[83802] +centroid = (0.82117523140176707, -2.0171070361929808) +station = ('kmlp', 0.0070735103536184599) +zone = ('idz005', 0.0058659407729968367) + +[83803] +centroid = (0.83830783712494894, -2.0323236194633236) +station = ('kszt', 0.0048689558799207035) +zone = ('idz001', 0.0082879904354954733) + +[83804] +centroid = (0.83854808169648587, -2.0415345073242608) +station = ('kcoe', 0.0051881822218418656) +zone = ('idz002', 0.0079706893126001346) + +[83805] +centroid = (0.85289095314328012, -2.0340193988178537) +station = ('k65s', 0.0036580076682340766) +zone = ('idz001', 0.0064101141027583363) + +[83806] +centroid = (0.81845578153435705, -2.0308853983465101) +station = ('klws', 0.012101582297065859) +zone = ('idz004', 0.0076074298411905146) + +[83808] +centroid = (0.82611515895673426, -2.0247858565832253) +station = ('kmlp', 0.0045601286916431829) +zone = ('idz004', 0.0015013874104382163) + +[83809] +centroid = (0.83886808781483901, -2.0345921984250657) +station = ('kszt', 0.0041192620703940997) +zone = ('idz001', 0.0076182241395310497) + +[83810] +centroid = (0.82977288037672381, -2.032449614782025) +station = ('kcoe', 0.0058148192895605228) +zone = ('idz002', 0.0044425110868997952) + +[83811] +centroid = (0.83964229841773119, -2.0269919527577462) +station = ('kszt', 0.0059376963832726845) +zone = ('idz001', 0.0084149092204252544) + +[83812] +centroid = (0.82071015351598819, -2.0286587945532784) +station = ('kmlp', 0.010030655882981717) +zone = ('idz004', 0.004992254570601623) + +[83813] +centroid = (0.83924230385975918, -2.0363240188286493) +station = ('kszt', 0.003965395912705871) +zone = ('idz001', 0.0073598193263756904) + +[83814] +centroid = (0.83237781919191034, -2.03599828803035) +station = ('kcoe', 0.0023134849028000073) +zone = ('idz002', 0.0025039081587442322) + +[83815] +centroid = (0.83298076063530435, -2.0383691258329661) +station = ('kcoe', 0.00077144678568856397) +zone = ('idz002', 0.0022237373539832888) + +[83821] +centroid = (0.8471649641997997, -2.0394285232356344) +station = ('kszt', 0.0053676785453903031) +zone = ('idz001', 0.0034281829189298208) + +[83822] +centroid = (0.84089170981606398, -2.0418531520857974) +station = ('kcoe', 0.0074839430390710431) +zone = ('idz001', 0.0074911441418167518) + +[83823] +centroid = (0.81718523419878275, -2.0340878157245319) +station = ('klws', 0.009746738847582306) +zone = ('idz003', 0.0044181254792280567) + +[83824] +centroid = (0.82228742501430796, -2.0404650742783939) +station = ('kpuw', 0.0068070835106044877) +zone = ('idz003', 0.0032124343667587259) + +[83825] +centroid = (0.8420477635527075, -2.0349602534577262) +station = ('kszt', 0.0010193294563037186) +zone = ('idz001', 0.0044550562788126342) + +[83826] +centroid = (0.85479461866501527, -2.0278796970284803) +station = ('k65s', 0.0044809916024853179) +zone = ('idz001', 0.009343220349973605) + +[83827] +centroid = (0.81644079891292975, -2.0276145989683951) +station = ('kp69', 0.01306892006501381) +zone = ('idz026', 0.008545573867153081) + +[83830] +centroid = (0.82181842013771211, -2.0309522270035689) +station = ('kmlp', 0.010421010706002938) +zone = ('idz004', 0.0046606284106030984) + +[83832] +centroid = (0.81249080465640122, -2.0404568712309095) +station = ('klws', 0.0034863186727451877) +zone = ('idz026', 0.0030490357724432173) + +[83833] +centroid = (0.82920510731775754, -2.0371198366076815) +station = ('kcoe', 0.0046272226505618052) +zone = ('idz002', 0.001967027967309153) + +[83834] +centroid = (0.82014236300372934, -2.0357451978355181) +station = ('kpuw', 0.0070745513935478186) +zone = ('idz003', 0.0030315880384499034) + +[83835] +centroid = (0.83421875758032893, -2.0361046833015517) +station = ('kcoe', 0.001910837743150019) +zone = ('idz002', 0.0039058827624973841) + +[83836] +centroid = (0.84213775272894031, -2.0292787878634644) +station = ('kszt', 0.0034834427346798862) +zone = ('idz001', 0.0055016928484170309) + +[83837] +centroid = (0.82912946474797611, -2.0265210629255579) +station = ('kmlp', 0.0053318017505167388) +zone = ('idz004', 0.0035897927892796404) + +[83839] +centroid = (0.83094246041507025, -2.0274410608808693) +station = ('kmlp', 0.0064863949386032146) +zone = ('idz004', 0.0054120176771437593) + +[83840] +centroid = (0.84317854492178201, -2.0335732752077513) +station = ('kszt', 0.00055554540933049805) +zone = ('idz001', 0.0033467033942137449) + +[83841] +centroid = (0.84127519355931213, -2.0376912224981996) +station = ('kszt', 0.0028024902356988449) +zone = ('idz001', 0.0056614689321221809) + +[83842] +centroid = (0.82806861872202886, -2.0341209944336121) +station = ('kcoe', 0.006453995130981543) +zone = ('idz002', 0.0041968271401059114) + +[83843] +centroid = (0.81545700917345809, -2.0409907849023869) +station = ('kpuw', 0.0021662149192120906) +zone = ('idz003', 0.0037136949069330677) + +[83844] +centroid = (0.81559351137425651, -2.0422936382824157) +station = ('kpuw', 0.0012670483640595405) +zone = ('idz003', 0.0038630807415525352) + +[83845] +centroid = (0.85152928216745916, -2.0265823763421804) +station = ('k65s', 0.002368758437150207) +zone = ('idz001', 0.0071991118808280548) + +[83846] +centroid = (0.82869477304447436, -2.0205197831991608) +station = ('kmlp', 0.0013022962167637926) +zone = ('idz004', 0.005309865890312424) + +[83847] +centroid = (0.84784358311955998, -2.0324200838110813) +station = ('k65s', 0.0031632117510161429) +zone = ('idz001', 0.0018679416154406888) + +[83848] +centroid = (0.84949038853527925, -2.0401422058200676) +station = ('kszt', 0.007552339694441015) +zone = ('idz001', 0.00486675984824752) + +[83849] +centroid = (0.82969648731536394, -2.024441346042174) +station = ('kmlp', 0.0041326310548135646) +zone = ('idz004', 0.0044553617917621737) + +[83850] +centroid = (0.8282344599075534, -2.0286676608258785) +station = ('kmlp', 0.0066972090553466005) +zone = ('idz004', 0.0029610524051587274) + +[83851] +centroid = (0.82548622956077811, -2.040687900463996) +station = ('ksff', 0.0081896228664027591) +zone = ('idz002', 0.005437741666072398) + +[83852] +centroid = (0.84318741119438212, -2.0340670637597258) +station = ('kszt', 0.00027950045898463336) +zone = ('idz001', 0.0033028417539675975) + +[83854] +centroid = (0.83285876212058996, -2.0414672946947667) +station = ('kcoe', 0.0019534235152235922) +zone = ('idz002', 0.0027187735010161876) + +[83855] +centroid = (0.82021413094257134, -2.0400824981063566) +station = ('kpuw', 0.0050687452854376557) +zone = ('idz003', 0.0011230080323750727) + +[83856] +centroid = (0.84296762188167851, -2.040423989227802) +station = ('kszt', 0.0040368724751096456) +zone = ('idz001', 0.00534805769492011) + +[83857] +centroid = (0.81849939731236443, -2.0384770395406173) +station = ('kpuw', 0.0046039718477270848) +zone = ('idz003', 0.0011495607414421037) + +[83858] +centroid = (0.83536915645019594, -2.041146398458495) +station = ('kcoe', 0.002289676601255414) +zone = ('idz002', 0.0048376354596189122) + +[83860] +centroid = (0.8409094249079716, -2.0339419760122355) +station = ('kszt', 0.0020931302308798533) +zone = ('idz001', 0.0055820430128640658) + +[83861] +centroid = (0.82492292454469685, -2.0340165888377579) +station = ('kcoe', 0.009347552867036894) +zone = ('idz002', 0.0067136102974478295) + +[83864] +centroid = (0.84570419342905045, -2.0335246503347908) +station = ('kszt', 0.0027753205189163274) +zone = ('idz001', 0.00095536968497005091) + +[83866] +centroid = (0.82301093380242973, -2.0319956022837036) +station = ('kmlp', 0.010344363228125836) +zone = ('idz004', 0.0043251761176560603) + +[83867] +centroid = (0.82925772899470518, -2.0236294363274387) +station = ('kmlp', 0.0034668855557245656) +zone = ('idz004', 0.0042993338283681863) + +[83868] +centroid = (0.82931569137916394, -2.0277690955137815) +station = ('kmlp', 0.0061945826568574214) +zone = ('idz004', 0.0038223403480716202) + +[83869] +centroid = (0.83744988562454603, -2.0401565349732262) +station = ('kcoe', 0.0038671709810872089) +zone = ('idz002', 0.0067243858075927195) + +[83870] +centroid = (0.82250166417999027, -2.0390947464694831) +station = ('kpuw', 0.0073880448345820492) +zone = ('idz003', 0.0034502480259799989) + +[83871] +centroid = (0.81580078667622336, -2.0375440737889638) +station = ('kpuw', 0.0044749824781802486) +zone = ('idz003', 0.0036735144753082391) + +[83872] +centroid = (0.81799211736527233, -2.0416330835204133) +station = ('kpuw', 0.0026439667555601142) +zone = ('idz003', 0.0016122714149573562) + +[83873] +centroid = (0.83047762687538662, -2.021851835937575) +station = ('kmlp', 0.0031186433181788287) +zone = ('idz004', 0.0059733457173949843) + +[83874] +centroid = (0.83153334163333292, -2.0211611567926835) +station = ('kmlp', 0.0037424226063052062) +zone = ('idz004', 0.0071104359605583074) + +[83876] +centroid = (0.82828910616643336, -2.0408232856540733) +station = ('kcoe', 0.0055603985286755203) +zone = ('idz002', 0.0028227095538132648) + +[84001] +centroid = (0.70418251296830081, -1.9246785179843959) +station = ('kvel', 0.010425265890276279) +zone = ('utz011', 0.0018541776877204262) + +[84002] +centroid = (0.70602142677478708, -1.9252158699544999) +station = ('kvel', 0.01072085455899905) +zone = ('utz011', 0.0036067640620027009) + +[84003] +centroid = (0.70636197541843626, -1.9491939362566839) +station = ('k36u', 0.0033464880513731825) +zone = ('utz008', 0.00460527488419503) + +[84004] +centroid = (0.70700212728148271, -1.9504343941159539) +station = ('k36u', 0.0043084923130344141) +zone = ('utz008', 0.0054844958006704889) + +[84005] +centroid = (0.70380604544864578, -1.9547083389349451) +station = ('kpvu', 0.0041800876041681746) +zone = ('utz004', 0.0041342059979312482) + +[84006] +centroid = (0.70862947227604223, -1.9568149338888097) +station = ('kslc', 0.0037475879965282581) +zone = ('utz003', 0.0023170251385292019) + +[84007] +centroid = (0.70378136649302248, -1.9234899836703729) +station = ('kvel', 0.0096039012557293333) +zone = ('utz011', 0.0020099611193255748) + +[84010] +centroid = (0.71328014641407644, -1.952462222360676) +station = ('kslc', 0.0019707900100753295) +zone = ('utz006', 0.0045739627706954961) + +[84013] +centroid = (0.70329654893340354, -1.9564175398714232) +station = ('kpvu', 0.0052188541287849395) +zone = ('utz003', 0.0040695743966704251) + +[84014] +centroid = (0.71439968786276831, -1.9527447562599889) +station = ('kslc', 0.0028160850151481682) +zone = ('utz006', 0.0050784121013511731) + +[84015] +centroid = (0.71768579377842312, -1.9558292242871609) +station = ('khif', 0.0012388662979623791) +zone = ('utz002', 0.0038403270578589994) + +[84017] +centroid = (0.71435629897756359, -1.9412303130390993) +station = ('kevw', 0.0063966708410560886) +zone = ('utz006', 0.0043770700530925489) + +[84018] +centroid = (0.71934108149430698, -1.9450935993383887) +station = ('kevw', 0.0054852754939300795) +zone = ('utz007', 0.0041919778639685984) + +[84020] +centroid = (0.7068610348647516, -1.9524924340100278) +station = ('kslc', 0.0051069323402163592) +zone = ('utz008', 0.0060875724563494707) + +[84021] +centroid = (0.70002091499326058, -1.9291777324499422) +station = ('kpuc', 0.0090555944452614182) +zone = ('utz011', 0.0037366907849969832) + +[84022] +centroid = (0.70496721299999754, -1.9657070548151629) +station = ('kslc', 0.011102654392683802) +zone = ('utz003', 0.0055588848221095766) + +[84023] +centroid = (0.71452079625956411, -1.905716877018294) +station = ('kvel', 0.0097355618009479176) +zone = ('utz023', 0.0051172591806872411) + +[84024] +centroid = (0.71571875535154794, -1.9451229557764074) +station = ('kevw', 0.0070745344968393452) +zone = ('utz006', 0.0033460149773495472) + +[84025] +centroid = (0.71524990755458473, -1.9531077498378187) +station = ('khif', 0.0025070945068888105) +zone = ('utz006', 0.0056859308338185581) + +[84026] +centroid = (0.70306714285652139, -1.9170307470015446) +station = ('kvel', 0.0052042875559179082) +zone = ('utz024', 0.0041638334204062181) + +[84027] +centroid = (0.70081512706938054, -1.9341747846313271) +station = ('kpuc', 0.0094206845620959396) +zone = ('utz010', 0.0061567051682706285) + +[84028] +centroid = (0.73178622153882267, -1.9446039995766191) +station = ('klgu', 0.0061639416653355384) +zone = ('idz025', 0.0059619546221586798) + +[84029] +centroid = (0.70940569000757425, -1.9676440561256112) +station = ('ku16', 0.0082821021440993396) +zone = ('utz005', 0.008307862346043875) + +[84031] +centroid = (0.70799064686322732, -1.9339743161134431) +station = ('k36u', 0.0083560921408640798) +zone = ('utz009', 0.0024619607162948585) + +[84032] +centroid = (0.70754623367579206, -1.9429227588147582) +station = ('k36u', 0.0017450511513237565) +zone = ('utz006', 0.0056794634212549034) + +[84033] +centroid = (0.71533382298502057, -1.9460620999936127) +station = ('kevw', 0.0078669208935772984) +zone = ('utz006', 0.0028153305452276543) + +[84034] +centroid = (0.69916285877310258, -1.9875474593027966) +station = ('kqca', 0.0072945616465181287) +zone = ('nvz033', 0.011314453432055116) + +[84035] +centroid = (0.7045247196747394, -1.9058914623033711) +station = ('kvel', 0.0041614488490439782) +zone = ('utz024', 0.0052208638137520051) + +[84036] +centroid = (0.70992824158562129, -1.9375896434859017) +station = ('k36u', 0.0064386978309858333) +zone = ('utz009', 0.0037787582892796082) + +[84037] +centroid = (0.71605932144848961, -1.9539088036046064) +station = ('khif', 0.0015759059896711743) +zone = ('utz002', 0.0059700708898228847) + +[84038] +centroid = (0.73168912887253434, -1.9426599122294077) +station = ('klgu', 0.0074760928192459533) +zone = ('idz025', 0.0062535249256085029) + +[84039] +centroid = (0.70650153194542575, -1.9164380680941524) +station = ('kvel', 0.0041145584820008541) +zone = ('utz024', 0.0058128762376498232) + +[84040] +centroid = (0.71719668270884418, -1.9535131898230569) +station = ('khif', 0.00066181321013612511) +zone = ('utz002', 0.0052344868574002871) + +[84041] +centroid = (0.716805240264207, -1.9544415828120703) +station = ('khif', 0.00083822653550181441) +zone = ('utz002', 0.0051249153759384937) + +[84042] +centroid = (0.70407929419633797, -1.9499606768503777) +station = ('kpvu', 0.0021685674074858594) +zone = ('utz008', 0.0027033281789097287) + +[84043] +centroid = (0.70527220928678347, -1.95254667884318) +station = ('kpvu', 0.0039489097942855796) +zone = ('utz008', 0.0048973722962159681) + +[84044] +centroid = (0.71071814269848899, -1.9576475955683512) +station = ('kslc', 0.0028373218770919566) +zone = ('utz003', 0.00391460838736837) + +[84045] +centroid = (0.70400466391752259, -1.9532188749512931) +station = ('kpvu', 0.0033292282407049647) +zone = ('utz004', 0.0041091573681203662) + +[84046] +centroid = (0.71420522327751101, -1.9169071427839186) +station = ('kvel', 0.0095700848677641292) +zone = ('utz023', 0.005074168642015443) + +[84047] +centroid = (0.70890359368836053, -1.9529373184363614) +station = ('kslc', 0.0030506941005283687) +zone = ('utz003', 0.0049232694905583388) + +[84049] +centroid = (0.70727106506592252, -1.946385998196198) +station = ('k36u', 0.001407927947758331) +zone = ('utz006', 0.0052672429420304217) + +[84050] +centroid = (0.71597922828911553, -1.9491286958492444) +station = ('khif', 0.004151975132288795) +zone = ('utz006', 0.0039751366593994896) + +[84051] +centroid = (0.70488270415761589, -1.9272485153079575) +station = ('kvel', 0.012295610056436283) +zone = ('utz011', 0.002829156671819418) + +[84052] +centroid = (0.70103849430705079, -1.9198195562534288) +station = ('kvel', 0.0080960102391623243) +zone = ('utz011', 0.0044988100313370413) + +[84053] +centroid = (0.70606722421435952, -1.9200393281128398) +station = ('kvel', 0.006786366247874558) +zone = ('utz011', 0.0054926767308964581) + +[84054] +centroid = (0.71277302354661698, -1.953325043329692) +station = ('kslc', 0.0011686210046851964) +zone = ('utz006', 0.005172476221297493) + +[84055] +centroid = (0.710489347486845, -1.9407791977873363) +station = ('k36u', 0.0049897863732784572) +zone = ('utz006', 0.0047897463273349579) + +[84056] +centroid = (0.71783868462089773, -1.9546279141630132) +station = ('khif', 0.00039701329439156276) +zone = ('utz002', 0.0042022813074874014) + +[84057] +centroid = (0.70361686921102196, -1.9497143236264587) +station = ('kpvu', 0.0017056634482760882) +zone = ('utz008', 0.0022189331702424249) + +[84058] +centroid = (0.70315376354729786, -1.9500201227647005) +station = ('kpvu', 0.0012495447092268433) +zone = ('utz008', 0.0020477097548355135) + +[84060] +centroid = (0.70952051521906301, -1.9460755564821455) +station = ('k36u', 0.0031307719737972807) +zone = ('utz006', 0.0030338967554492022) + +[84061] +centroid = (0.71125936929953237, -1.9430668881043878) +station = ('k36u', 0.0048964037545490184) +zone = ('utz006', 0.0028938154985223958) + +[84062] +centroid = (0.70583129060607486, -1.9490170296837017) +station = ('k36u', 0.0032857883494635024) +zone = ('utz008', 0.0040582759898448815) + +[84063] +centroid = (0.69550655106980719, -1.9142927617374785) +station = ('kvel', 0.010470215663287097) +zone = ('utz025', 0.0065349123497952062) + +[84064] +centroid = (0.7274405436875746, -1.9397193291457702) +station = ('kevw', 0.0073296048131916052) +zone = ('utz007', 0.0060797367600435677) + +[84065] +centroid = (0.70678485124290202, -1.9537759491419446) +station = ('kslc', 0.0050282782935656221) +zone = ('utz003', 0.0038719710958266202) + +[84066] +centroid = (0.70386229741043749, -1.9203289480489159) +station = ('kvel', 0.0072389026632069531) +zone = ('utz011', 0.004147819833565717) + +[84067] +centroid = (0.71857037900321141, -1.955608928828974) +station = ('kogd', 0.00065282528510110407) +zone = ('utz002', 0.0031716070552611896) + +[84069] +centroid = (0.70500283517003071, -1.9638921567391843) +station = ('kslc', 0.010028269846963669) +zone = ('utz003', 0.0042764854623640273) + +[84070] +centroid = (0.70820410063074624, -1.952832267068684) +station = ('kslc', 0.0037430954996167192) +zone = ('utz003', 0.004762617881843987) + +[84071] +centroid = (0.70500587204292919, -1.9601291221521291) +station = ('kslc', 0.0081589868861033799) +zone = ('utz003', 0.0021370643016371685) + +[84072] +centroid = (0.70433468822578227, -1.9313867607776061) +station = ('k36u', 0.010448653845328343) +zone = ('utz011', 0.004933289687048828) + +[84073] +centroid = (0.70432156334980722, -1.9274516367263046) +station = ('k36u', 0.013394065673940185) +zone = ('utz011', 0.0024512597721174914) + +[84074] +centroid = (0.7078688752413157, -1.9593952286549583) +station = ('kslc', 0.005575442144189347) +zone = ('utz003', 0.0010362393905517856) + +[84075] +centroid = (0.71699848311898773, -1.9561772080334234) +station = ('khif', 0.0016239290026390258) +zone = ('utz002', 0.0043705172994091337) + +[84076] +centroid = (0.70627292871999958, -1.9171662194580845) +station = ('kvel', 0.0046254642693605384) +zone = ('utz024', 0.0059973187092396485) + +[84078] +centroid = (0.70913488472083486, -1.9108405877434964) +station = ('kvel', 0.003447386638034791) +zone = ('utz023', 0.0024117684855725781) + +[84080] +centroid = (0.69988130610639354, -1.9622732242316192) +station = ('kpvu', 0.009729268393389898) +zone = ('utz004', 0.0071473866622268718) + +[84081] +centroid = (0.70865259788863122, -1.9554256343509298) +station = ('kslc', 0.003287836093300038) +zone = ('utz003', 0.0031386755798896502) + +[84082] +centroid = (0.70451620246798974, -1.9442138137690432) +station = ('k36u', 0.0020757172621022517) +zone = ('utz008', 0.0038953321852187367) + +[84083] +centroid = (0.71236686797638538, -1.9821457874409221) +station = ('kenv', 0.0063082322492216498) +zone = ('utz005', 0.0052930910875827897) + +[84084] +centroid = (0.70900312981560176, -1.9541502873599124) +station = ('kslc', 0.002800454986411341) +zone = ('utz003', 0.0041464001266600077) + +[84085] +centroid = (0.7084413955958474, -1.9190272814927785) +station = ('kvel', 0.0065986344607606084) +zone = ('utz011', 0.0077467700862837363) + +[84086] +centroid = (0.72385225146522925, -1.9413830293486485) +station = ('kevw', 0.0044606209442389771) +zone = ('utz007', 0.0034009523006653516) + +[84087] +centroid = (0.71357662549411272, -1.9535862493055454) +station = ('kslc', 0.0018305060011611423) +zone = ('utz006', 0.0054626052935122654) + +[84088] +centroid = (0.70851925473377886, -1.954086495575752) +station = ('kslc', 0.003285075687645717) +zone = ('utz003', 0.0039699087782493125) + +[84092] +centroid = (0.70780300651534533, -1.949643812324678) +station = ('k36u', 0.0038910960913462324) +zone = ('utz006', 0.0053022747980132597) + +[84093] +centroid = (0.70851246540298862, -1.9517760810718394) +station = ('kslc', 0.003764632770924529) +zone = ('utz006', 0.0056764295308222735) + +[84094] +centroid = (0.70811275009769681, -1.952362564060387) +station = ('kslc', 0.0039415279523331631) +zone = ('utz006', 0.0062739624836710538) + +[84095] +centroid = (0.70782356649393396, -1.954394982521042) +station = ('kslc', 0.0039830057065774645) +zone = ('utz003', 0.0035171741673224819) + +[84096] +centroid = (0.70713454541183152, -1.9565503768807924) +station = ('kslc', 0.0050013908768524219) +zone = ('utz003', 0.001773582567836303) + +[84097] +centroid = (0.7034520228631711, -1.9490635776148526) +station = ('kpvu', 0.0016444645155806485) +zone = ('utz008', 0.0018099252123682339) + +[84098] +centroid = (0.71093486023170904, -1.9466181967998832) +station = ('k36u', 0.0046032358598582044) +zone = ('utz006', 0.0016054612491128066) + +[84101] +centroid = (0.71133302219396655, -1.9530245674456685) +station = ('kslc', 0.00099815097504851562) +zone = ('utz006', 0.0050875145636549253) + +[84102] +centroid = (0.71140056643601868, -1.9524018514218495) +station = ('kslc', 0.001410665889729506) +zone = ('utz006', 0.0046135747879545589) + +[84103] +centroid = (0.7120084646144883, -1.952021107845527) +station = ('kslc', 0.0016525917610169443) +zone = ('utz006', 0.0042152549257061488) + +[84104] +centroid = (0.71124765814025148, -1.9544111791765004) +station = ('kslc', 0.0005811468719665202) +zone = ('utz003', 0.0054959374472848058) + +[84105] +centroid = (0.71101762374483868, -1.9523176043788557) +station = ('kslc', 0.0016193900429462504) +zone = ('utz006', 0.0046629077435561671) + +[84106] +centroid = (0.71046704217900458, -1.9522494841781504) +station = ('kslc', 0.0019851157243884468) +zone = ('utz006', 0.0048245779963036811) + +[84107] +centroid = (0.70961633379499744, -1.9527521040961398) +station = ('kslc', 0.0024425615624487046) +zone = ('utz006', 0.0055679679642060727) + +[84108] +centroid = (0.71224324630546665, -1.9500407351031666) +station = ('kslc', 0.0031695437418739676) +zone = ('utz006', 0.0026988402628747399) + +[84109] +centroid = (0.7104504440978181, -1.9496120822388767) +station = ('kslc', 0.0037207848033999377) +zone = ('utz006', 0.0031506739266689543) + +[84111] +centroid = (0.71132567435781557, -1.9527438835953628) +station = ('kslc', 0.0011927873634414788) +zone = ('utz006', 0.0048831449846016006) + +[84112] +centroid = (0.71148476111913483, -1.9520022582896055) +station = ('kslc', 0.0016848835310434291) +zone = ('utz006', 0.0042994929263646684) + +[84113] +centroid = (0.71147746564286163, -1.9518651103169837) +station = ('kslc', 0.0017882983122321371) +zone = ('utz006', 0.0042007513403208296) + +[84115] +centroid = (0.71060202594335375, -1.9528957970534564) +station = ('kslc', 0.0015492702150825498) +zone = ('utz006', 0.0052190842998212699) + +[84116] +centroid = (0.71212299312000427, -1.954019562198938) +station = ('kslc', 0.00034376786755309282) +zone = ('utz006', 0.0057092854790691417) + +[84117] +centroid = (0.70966890311206754, -1.9518837329801024) +station = ('kslc', 0.0027574205361746333) +zone = ('utz006', 0.0049892652670778803) + +[84118] +centroid = (0.70953793360499784, -1.9550025316336612) +station = ('kslc', 0.0023483235816719752) +zone = ('utz003', 0.0039357671192823442) + +[84119] +centroid = (0.71035350851116219, -1.9538337020868932) +station = ('kslc', 0.0014744377939699342) +zone = ('utz003', 0.0051401997467718013) + +[84120] +centroid = (0.71030491854478672, -1.9547904217696663) +station = ('kslc', 0.0015667243842454037) +zone = ('utz003', 0.0045900038763336155) + +[84121] +centroid = (0.70880705952743261, -1.9497931077888937) +station = ('k36u', 0.0044175458602096181) +zone = ('utz006', 0.0044902581491351231) + +[84123] +centroid = (0.70963153561278236, -1.9534008953389836) +station = ('kslc', 0.002252141796138891) +zone = ('utz003', 0.004960441015728405) + +[84124] +centroid = (0.70995107049223738, -1.9515096391082301) +station = ('kslc', 0.0027472876283628324) +zone = ('utz006', 0.004595252859659618) + +[84128] +centroid = (0.71035685954332606, -1.9555850701780995) +station = ('kslc', 0.0017929484140064716) +zone = ('utz003', 0.0042489558401356455) + +[84144] +centroid = (0.71154036730910342, -1.9528929696200683) +station = ('kslc', 0.0010146209714594705) +zone = ('utz006', 0.0049443956831366452) + +[84180] +centroid = (0.71157848529996692, -1.9530427188698893) +station = ('kslc', 0.00089523186659545243) +zone = ('utz006', 0.0050480209438061134) + +[84301] +centroid = (0.72619994620196449, -1.9570398021096367) +station = ('klgu', 0.0047613725931640663) +zone = ('utz001', 0.0044018924716540623) + +[84302] +centroid = (0.725247380402811, -1.9556546564553765) +station = ('klgu', 0.0047880898502115068) +zone = ('utz002', 0.0045275660971777236) + +[84304] +centroid = (0.72988637828814928, -1.9547298413913297) +station = ('klgu', 0.0020230717199213664) +zone = ('utz001', 0.0012616462173402629) + +[84305] +centroid = (0.7320614774151547, -1.9560875504697484) +station = ('klgu', 0.0040573791454238057) +zone = ('utz001', 0.0033890964826611804) + +[84306] +centroid = (0.72946807522632384, -1.9555092530753928) +station = ('klgu', 0.0025129859928586531) +zone = ('utz001', 0.0017792008191173999) + +[84307] +centroid = (0.72358846240208297, -1.9635792192043016) +station = ('kogd', 0.0078290514427956561) +zone = ('utz002', 0.0047809974152649478) + +[84308] +centroid = (0.73247597565921085, -1.9549196110408991) +station = ('klgu', 0.0038228201969563334) +zone = ('idz024', 0.0029116845835796936) + +[84309] +centroid = (0.72804831969299655, -1.9564890460108773) +station = ('klgu', 0.0034548937931138642) +zone = ('utz001', 0.002895552091439854) + +[84310] +centroid = (0.72144345275138189, -1.9521054247016909) +station = ('kogd', 0.0032460875132690348) +zone = ('utz002', 0.0045323364928442182) + +[84311] +centroid = (0.72995982174307328, -1.9567919479025611) +station = ('klgu', 0.003530416447174695) +zone = ('utz001', 0.0027747985921595416) + +[84312] +centroid = (0.72909085721509026, -1.9574315063536616) +station = ('klgu', 0.0039414691404781408) +zone = ('utz001', 0.0032373910311916882) + +[84313] +centroid = (0.72710666220166797, -1.9890175675850441) +station = ('kqcj', 0.015684444540355794) +zone = ('idz030', 0.013556603333793918) + +[84314] +centroid = (0.72690057372359262, -1.9563883928729149) +station = ('klgu', 0.0039442722580537368) +zone = ('utz001', 0.0035560636202019639) + +[84315] +centroid = (0.7185085594411057, -1.9571733547039991) +station = ('kogd', 0.0016888355706885987) +zone = ('utz002', 0.0027037963583905989) + +[84316] +centroid = (0.72904087098531312, -1.9632236781823778) +station = ('klgu', 0.0082603337097726954) +zone = ('utz002', 0.0087958298723929181) + +[84317] +centroid = (0.72096058996052514, -1.9481375757269144) +station = ('khif', 0.0056445744507924696) +zone = ('utz007', 0.0030374305986487523) + +[84318] +centroid = (0.72959190633675286, -1.9515170393042585) +station = ('klgu', 0.0005792893706140738) +zone = ('utz001', 0.0012014770070185804) + +[84319] +centroid = (0.72616671513300646, -1.9488918197631637) +station = ('klgu', 0.0039331816218498407) +zone = ('utz007', 0.0034926197130371356) + +[84320] +centroid = (0.73241202679541784, -1.9520662071533985) +station = ('klgu', 0.0031559158671135954) +zone = ('utz001', 0.0030260618381643123) + +[84321] +centroid = (0.72811160533167385, -1.9519150267335907) +station = ('klgu', 0.0011585609715547807) +zone = ('utz001', 0.0016468018949496522) + +[84324] +centroid = (0.72409905847475386, -1.9539425059124624) +station = ('kogd', 0.0050929398241580312) +zone = ('utz002', 0.0043291170863434189) + +[84325] +centroid = (0.72823444160442929, -1.9545759382578887) +station = ('klgu', 0.0020780524081242314) +zone = ('utz001', 0.001658689106131666) + +[84326] +centroid = (0.72729027083897779, -1.9515895926412639) +station = ('klgu', 0.0020105737740076768) +zone = ('utz001', 0.0024795617937909457) + +[84327] +centroid = (0.73076740304126364, -1.9546453500022407) +station = ('klgu', 0.0023953143829843603) +zone = ('utz001', 0.0017083389307967327) + +[84328] +centroid = (0.72511168105346846, -1.951885094336919) +station = ('klgu', 0.00414980688562117) +zone = ('utz001', 0.0044749152653280845) + +[84329] +centroid = (0.72885818737250696, -1.9795324884986183) +station = ('kqcj', 0.013155397936342133) +zone = ('idz022', 0.0098219903216720632) + +[84330] +centroid = (0.73174773702881624, -1.957618116957285) +station = ('klgu', 0.00477374298887353) +zone = ('utz001', 0.0040379851973851751) + +[84331] +centroid = (0.73213851624833781, -1.9595445764790513) +station = ('klgu', 0.0062147513821508554) +zone = ('idz024', 0.0053105974775610517) + +[84332] +centroid = (0.72780196646907758, -1.9514921334558326) +station = ('klgu', 0.0015355389377274186) +zone = ('utz001', 0.0020808399962110829) + +[84333] +centroid = (0.73141916134383589, -1.951489567821832) +station = ('klgu', 0.0022178109795074215) +zone = ('utz001', 0.0022807323236903529) + +[84334] +centroid = (0.72924371315098002, -1.9573455663412935) +station = ('klgu', 0.0038736467698829132) +zone = ('utz001', 0.0031580123598634554) + +[84335] +centroid = (0.73017790063310994, -1.9525843605017306) +station = ('klgu', 0.0009762100532281384) +zone = ('utz001', 0.00079640958511877243) + +[84336] +centroid = (0.73151946541594792, -1.9682183392626875) +station = ('klgu', 0.012180923924287653) +zone = ('idz022', 0.0080496311058973133) + +[84337] +centroid = (0.72893852487797628, -1.9603086816255744) +station = ('klgu', 0.0060922834297390685) +zone = ('utz001', 0.0053867129606730256) + +[84338] +centroid = (0.73150510135620395, -1.9537323857238147) +station = ('klgu', 0.0025383530439764984) +zone = ('utz001', 0.0020655712613668171) + +[84339] +centroid = (0.72651108604771752, -1.9538298274559536) +station = ('klgu', 0.0030182803310100886) +zone = ('utz001', 0.0030253258376680158) + +[84340] +centroid = (0.72192989346720526, -1.9553982326816735) +station = ('kogd', 0.0028655597700328371) +zone = ('utz002', 0.0022031516643052349) + +[84341] +centroid = (0.72912049290578917, -1.9513903982137337) +station = ('klgu', 0.00058315886129829057) +zone = ('utz001', 0.0013436463025503806) + +[84401] +centroid = (0.71929071129209454, -1.9553533602666047) +station = ('kogd', 0.00030834832595531353) +zone = ('utz002', 0.00276982985669921) + +[84403] +centroid = (0.71898032193791983, -1.9531341741226937) +station = ('khif', 0.0015733841255234041) +zone = ('utz002', 0.004317211472331159) + +[84404] +centroid = (0.72028818441290177, -1.9568220548321578) +station = ('kogd', 0.0017963298782921067) +zone = ('utz002', 0.0012820241132501886) + +[84405] +centroid = (0.71832159977163212, -1.9541718421761747) +station = ('khif', 0.00070048185063880633) +zone = ('utz002', 0.0040799068342444551) + +[84414] +centroid = (0.72120409829776333, -1.9543510176771843) +station = ('kogd', 0.002194092388582103) +zone = ('utz002', 0.0028358055822537) + +[84501] +centroid = (0.69021469532446778, -1.9330832033572523) +station = ('kpuc', 0.0012307286177002284) +zone = ('utz012', 0.0036934176422756654) + +[84511] +centroid = (0.6559870608168995, -1.9095342786115486) +station = ('k4bl', 0.00097585300628843543) +zone = ('utz022', 0.0064118063093664829) + +[84512] +centroid = (0.64811759811245984, -1.9127467665393543) +station = ('k4bl', 0.0085956058928972866) +zone = ('utz022', 0.0025543012143903923) + +[84513] +centroid = (0.68482654976429591, -1.937568106122932) +station = ('kpuc', 0.0075144736109506336) +zone = ('utz012', 0.0028392712350368016) + +[84515] +centroid = (0.68024368166770166, -1.9046528021332307) +station = ('kcny', 0.0091945124434215757) +zone = ('coz006', 0.0068237350029487116) + +[84516] +centroid = (0.68317400221533764, -1.9385169543707785) +station = ('kpuc', 0.0093192856794241108) +zone = ('utz012', 0.0045702403740815935) + +[84518] +centroid = (0.68746552249989634, -1.9351667250584055) +station = ('kpuc', 0.0043274029015483171) +zone = ('utz012', 0.0006740247679184689) + +[84520] +centroid = (0.68998197312200682, -1.9273582965179081) +station = ('kpuc', 0.0045519530971312137) +zone = ('utz010', 0.0064876522324139726) + +[84521] +centroid = (0.68795700721725805, -1.9331693702624231) +station = ('kpuc', 0.0034882921592405227) +zone = ('utz012', 0.001787748944211788) + +[84522] +centroid = (0.67934180023002622, -1.9409879391658749) +station = ('k4hv', 0.011820423672218795) +zone = ('utz012', 0.0088190768121154568) + +[84523] +centroid = (0.68231334545459421, -1.9407709598332668) +station = ('kpuc', 0.010948478543062534) +zone = ('utz012', 0.0063721904809416561) + +[84525] +centroid = (0.68209982187390517, -1.9208110603481943) +station = ('kcny', 0.0068747479732875292) +zone = ('utz027', 0.0077659548452685837) + +[84526] +centroid = (0.69358571150823223, -1.9362070983722266) +station = ('kpuc', 0.0032976359111725521) +zone = ('utz010', 0.0026201440892524822) + +[84528] +centroid = (0.68785132753104983, -1.938809838072556) +station = ('kpuc', 0.005771423677369927) +zone = ('utz012', 0.0031610184270468413) + +[84529] +centroid = (0.69253697806729386, -1.9341869844827986) +station = ('kpuc', 0.0014507202095427917) +zone = ('utz010', 0.0023212663361220987) + +[84530] +centroid = (0.66817401430516776, -1.9051778669854009) +station = ('kcny', 0.011674488879501578) +zone = ('utz028', 0.0051549711045281851) + +[84531] +centroid = (0.64885850783322396, -1.9178307186641963) +station = ('k4bl', 0.0096096421765947491) +zone = ('utz022', 0.0036327931094781588) + +[84532] +centroid = (0.6724142044564253, -1.9119786471355515) +station = ('kcny', 0.0050129524440502152) +zone = ('utz027', 0.0057912634274667682) + +[84533] +centroid = (0.65484390506342838, -1.9264803959041548) +station = ('k4hv', 0.015493387987764498) +zone = ('utz021', 0.0070190458661110655) + +[84534] +centroid = (0.65019656450426544, -1.9064567220882147) +station = ('k4bl', 0.0071242626694640616) +zone = ('utz022', 0.0058406634767903323) + +[84535] +centroid = (0.66321946089106876, -1.9121343828647073) +station = ('k4bl', 0.0068004187835369462) +zone = ('utz028', 0.0025260878109505999) + +[84536] +centroid = (0.64787347890998337, -1.9259635166461768) +station = ('k4bl', 0.014999961981107809) +zone = ('utz021', 0.0077115551326181978) + +[84537] +centroid = (0.68633240238962423, -1.9410902329133342) +station = ('kpuc', 0.0080973207563714636) +zone = ('utz012', 0.0047755386658415461) + +[84539] +centroid = (0.69138514802744022, -1.9257579168602919) +station = ('kpuc', 0.0055423231339597773) +zone = ('utz010', 0.0065734894642044007) + +[84540] +centroid = (0.68492652222385009, -1.9100144710486497) +station = ('kcny', 0.0093485121797709896) +zone = ('utz025', 0.00458876413961537) + +[84542] +centroid = (0.69014374769037423, -1.9326901552097031) +station = ('kpuc', 0.001313142817132053) +zone = ('utz012', 0.0037589438216825435) + +[84601] +centroid = (0.70208546496544466, -1.9494819853964331) +station = ('kpvu', 0.00031260471910867746) +zone = ('utz008', 0.001196131212591171) + +[84604] +centroid = (0.70369279103348381, -1.9473773452113308) +station = ('kpvu', 0.0025789628286897724) +zone = ('utz008', 0.001886862130298978) + +[84606] +centroid = (0.70187441975229348, -1.9482332721298012) +station = ('kpvu', 0.0012150757453833405) +zone = ('utz008', 0.00022124744597810093) + +[84620] +centroid = (0.67919178918081724, -1.9535063306790965) +station = ('ku24', 0.011496330494789493) +zone = ('utz517', 0.0023836813284198941) + +[84621] +centroid = (0.68156791533106742, -1.9517362002984313) +station = ('ku24', 0.01136504847023439) +zone = ('utz517', 0.0015583874659462619) + +[84622] +centroid = (0.68249060109342674, -1.9516564736582003) +station = ('ku24', 0.011050382546533011) +zone = ('utz014', 0.0021721106620721988) + +[84623] +centroid = (0.68859937564845453, -1.9475858596970663) +station = ('kpvu', 0.013424302496185479) +zone = ('utz014', 0.0054875635904614549) + +[84624] +centroid = (0.68870507278795534, -1.9659860980559718) +station = ('ku24', 0.0023495729675086481) +zone = ('utz015', 0.0072728909793875959) + +[84626] +centroid = (0.69646400379086626, -1.9547509598752788) +station = ('kpvu', 0.0066269092788307287) +zone = ('utz004', 0.0037099262743530881) + +[84627] +centroid = (0.68684177673181868, -1.9471098735034624) +station = ('kpuc', 0.011855352003835378) +zone = ('utz014', 0.0046891698920487439) + +[84628] +centroid = (0.69711150349006357, -1.9570611474863886) +station = ('kpvu', 0.0073296526545233052) +zone = ('utz004', 0.0042185861207912467) + +[84629] +centroid = (0.6945562367453888, -1.945550840695826) +station = ('kpvu', 0.0080521580656021888) +zone = ('utz008', 0.0075267405790147525) + +[84630] +centroid = (0.68596099632479979, -1.9519952769725974) +station = ('ku24', 0.010036441022424385) +zone = ('utz014', 0.0014182766355342079) + +[84631] +centroid = (0.67993931369944649, -1.9615518621984775) +station = ('ku24', 0.0070666180946484143) +zone = ('utz014', 0.0084737266901165238) + +[84632] +centroid = (0.69150220726037159, -1.9488043962209312) +station = ('kpvu', 0.010440347333819719) +zone = ('utz014', 0.0074629083340946867) + +[84633] +centroid = (0.69756438152437106, -1.9531415917720147) +station = ('kpvu', 0.0050354062298457181) +zone = ('utz004', 0.0023427347918596828) + +[84634] +centroid = (0.6834430970794102, -1.9514713291311487) +station = ('ku24', 0.010875572774940098) +zone = ('utz014', 0.0013538283311979901) + +[84635] +centroid = (0.68769398609898258, -1.9673864978878945) +station = ('ku24', 0.0022323263263438228) +zone = ('utz015', 0.0058859016456969419) + +[84636] +centroid = (0.68313237611267763, -1.9606841717608483) +station = ('ku24', 0.0047149758675652338) +zone = ('utz014', 0.0065693025506304258) + +[84637] +centroid = (0.67505748815527822, -1.9638036510928156) +station = ('kmlf', 0.0081970173864845831) +zone = ('utz014', 0.013003798628558287) + +[84638] +centroid = (0.68960135171873194, -1.9592402085107961) +station = ('ku24', 0.0053940381852087696) +zone = ('utz014', 0.007281687154002724) + +[84639] +centroid = (0.6895389736512656, -1.9530247594318864) +station = ('ku24', 0.0097016914334698712) +zone = ('utz014', 0.004980165193468904) + +[84640] +centroid = (0.6893569183569902, -1.9614129863498961) +station = ('ku24', 0.0039560273685075613) +zone = ('utz014', 0.0084367574123718307) + +[84642] +centroid = (0.68570490416365459, -1.9480668549856237) +station = ('kpuc', 0.013004347883531364) +zone = ('utz014', 0.0035515943560224671) + +[84643] +centroid = (0.68268839925755531, -1.9497570492865475) +station = ('ku24', 0.012370084053672304) +zone = ('utz517', 0.0025874024899727698) + +[84645] +centroid = (0.69526112287039166, -1.9520403064672989) +station = ('kpvu', 0.0068652669468455968) +zone = ('utz004', 0.0046900800028277911) + +[84646] +centroid = (0.69012159946216645, -1.9479409469333846) +station = ('kpvu', 0.011879828864995843) +zone = ('utz014', 0.0065323938131057278) + +[84647] +centroid = (0.69012250703337741, -1.944572915262641) +station = ('kpuc', 0.0090532285625801248) +zone = ('utz012', 0.0081366219317615014) + +[84648] +centroid = (0.69264798100772074, -1.952403718924149) +station = ('kpvu', 0.0094740150011935476) +zone = ('utz004', 0.0072646788283706682) + +[84649] +centroid = (0.68668991563360271, -1.9605143337713367) +station = ('ku24', 0.003435938612865585) +zone = ('utz014', 0.0066121830052368749) + +[84651] +centroid = (0.69740058237407132, -1.9498031434320926) +station = ('kpvu', 0.0045126924418746649) +zone = ('utz004', 0.0034617810724980589) + +[84652] +centroid = (0.68097342128125316, -1.9524688197052484) +station = ('ku24', 0.011140712070637144) +zone = ('utz517', 0.0015432809765195941) + +[84653] +centroid = (0.69860122927310331, -1.948559037834686) +station = ('kpvu', 0.0034503053262230172) +zone = ('utz008', 0.0032887492141482821) + +[84654] +centroid = (0.67857587994108104, -1.9482391364360878) +station = ('k4hv', 0.015291335294922995) +zone = ('utz517', 0.0025438523625952495) + +[84655] +centroid = (0.69763101819521223, -1.9513971351846464) +station = ('kpvu', 0.0044481848321104326) +zone = ('utz004', 0.0025555505141410064) + +[84656] +centroid = (0.68304554598239087, -1.9559623754557953) +station = ('ku24', 0.0077696379719717273) +zone = ('utz014', 0.0031475460110294081) + +[84657] +centroid = (0.67751213666857557, -1.9537030118325036) +station = ('ku24', 0.012527656248799611) +zone = ('utz517', 0.0035542357120021558) + +[84660] +centroid = (0.70024822667504028, -1.9494549676996122) +station = ('kpvu', 0.0016886887951645547) +zone = ('utz008', 0.0019793741679453181) + +[84662] +centroid = (0.68817407381632856, -1.9455521322394724) +station = ('kpuc', 0.010253646910626578) +zone = ('utz014', 0.0064121876528171837) + +[84663] +centroid = (0.70102247218451752, -1.9459561759613091) +station = ('kpvu', 0.0030857247950569948) +zone = ('utz008', 0.0017327142963073519) + +[84664] +centroid = (0.70014074929970249, -1.9471786394759911) +station = ('kpvu', 0.0026883629477691606) +zone = ('utz008', 0.0018125805189171448) + +[84665] +centroid = (0.68409365110479847, -1.9490134866653204) +station = ('ku24', 0.012570120165759613) +zone = ('utz014', 0.002682430280595117) + +[84667] +centroid = (0.68941334485170713, -1.9489312642042589) +station = ('kpvu', 0.012518658662186582) +zone = ('utz014', 0.005533379197474003) + +[84701] +centroid = (0.67371876825912091, -1.9495049888359743) +station = ('kbce', 0.016906690442897412) +zone = ('utz517', 0.0065679199533504786) + +[84710] +centroid = (0.65418956367356307, -1.963107037828467) +station = ('kbce', 0.0059145242407443004) +zone = ('utz518', 0.0069343998727426741) + +[84711] +centroid = (0.67489335739242062, -1.9551434146108824) +station = ('ku24', 0.013881706629362138) +zone = ('utz517', 0.0063329067091234519) + +[84712] +centroid = (0.66302016174378353, -1.9536443862229294) +station = ('kbce', 0.0058348053474534117) +zone = ('utz518', 0.0067216620436190873) + +[84713] +centroid = (0.668848200088628, -1.9661296513869484) +station = ('kmlf', 0.005269360827204095) +zone = ('utz518', 0.008517527295154096) + +[84714] +centroid = (0.66057228510798394, -1.9848633872593247) +station = ('kcdc', 0.0089915802786008411) +zone = ('utz016', 0.0057345391605269939) + +[84715] +centroid = (0.66828821119812576, -1.9468934177696302) +station = ('kbce', 0.013208046956900551) +zone = ('utz517', 0.012300114990080734) + +[84716] +centroid = (0.66225453816081115, -1.945034362863576) +station = ('kbce', 0.010648904656996113) +zone = ('utz020', 0.011459638859439073) + +[84718] +centroid = (0.65518930572239797, -1.9555559929927613) +station = ('kbce', 0.0031530645541984498) +zone = ('utz020', 0.004389417515316402) + +[84719] +centroid = (0.65751045400121022, -1.9689120378271852) +station = ('kcdc', 0.0040291816621330408) +zone = ('utz518', 0.0066470785537704668) + +[84720] +centroid = (0.65606949271747117, -1.9754968334824019) +station = ('kcdc', 0.002269713768620223) +zone = ('utz019', 0.0088721161587900568) + +[84721] +centroid = (0.65921679259771504, -1.9735941278917553) +station = ('kcdc', 0.0012626546593562313) +zone = ('utz016', 0.0077838088919265358) + +[84722] +centroid = (0.65375834517527287, -1.9827884700313838) +station = ('ksgu', 0.0065325132107124633) +zone = ('utz019', 0.0050844908686452049) + +[84723] +centroid = (0.66636787778203388, -1.959175090276404) +station = ('kbce', 0.0084966217543548279) +zone = ('utz518', 0.0057073967288480869) + +[84724] +centroid = (0.67501092277083496, -1.9573673480503584) +station = ('kmlf', 0.012676224820902613) +zone = ('utz517', 0.0073320934742736659) + +[84725] +centroid = (0.65520274475763829, -1.9858392182974074) +station = ('ksgu', 0.0083595304036744641) +zone = ('utz019', 0.0072249502165580692) + +[84726] +centroid = (0.65867369849437207, -1.9475882158915565) +station = ('kbce', 0.0077809450178684672) +zone = ('utz020', 0.007353981349236545) + +[84728] +centroid = (0.68583014899077777, -1.9880450526725404) +station = ('kely', 0.012742398176279812) +zone = ('utz015', 0.010467441661173069) + +[84729] +centroid = (0.65234780498039613, -1.9657467086957683) +station = ('kcdc', 0.0086206475190375945) +zone = ('utz518', 0.0092446678532180551) + +[84730] +centroid = (0.67607611466661965, -1.9551070070426855) +station = ('ku24', 0.012924025045358837) +zone = ('utz517', 0.0053580977556776455) + +[84731] +centroid = (0.6676493334254332, -1.9696599288649572) +station = ('kmlf', 0.0036220431234838383) +zone = ('utz016', 0.0087173824989394428) + +[84732] +centroid = (0.6709987424330579, -1.9530637500873758) +station = ('kbce', 0.013447354255898552) +zone = ('utz517', 0.0093940013629192284) + +[84733] +centroid = (0.6502958737387039, -1.9857468205668067) +station = ('ksgu', 0.0039166127378724392) +zone = ('utz019', 0.0035205846470629082) + +[84734] +centroid = (0.66855426918929961, -1.931242369688589) +station = ('k4hv', 0.0013887330141582202) +zone = ('utz013', 0.0039627207631246436) + +[84735] +centroid = (0.65695240242617758, -1.9622871519590501) +station = ('kbce', 0.0040150156363453465) +zone = ('utz518', 0.0041116102511638284) + +[84736] +centroid = (0.65536910954193839, -1.9547329829839832) +station = ('kbce', 0.003358909071024509) +zone = ('utz020', 0.0041004114576639814) + +[84737] +centroid = (0.64651158104135975, -1.9758095615777742) +station = ('ksgu', 0.0055399207618328627) +zone = ('utz019', 0.0052581234010268289) + +[84738] +centroid = (0.64883503315478464, -1.98454205469074) +station = ('ksgu', 0.0021815109952267203) +zone = ('utz019', 0.0022006674632786011) + +[84739] +centroid = (0.67420721610358403, -1.9583663919674925) +station = ('kmlf', 0.011672858444092325) +zone = ('utz517', 0.0084521758815365427) + +[84740] +centroid = (0.6680416310814038, -1.9595062315953851) +station = ('kbce', 0.01019034501302123) +zone = ('utz518', 0.0072237561912407832) + +[84741] +centroid = (0.64903792768032897, -1.9591224685994564) +station = ('kbce', 0.009056657120948608) +zone = ('utz020', 0.006661894065805302) + +[84742] +centroid = (0.65519848615426346, -1.975852863196516) +station = ('kcdc', 0.0031651302203536901) +zone = ('utz019', 0.007998037191875083) + +[84743] +centroid = (0.66626520006213896, -1.9571854498357155) +station = ('kbce', 0.008277594786958338) +zone = ('utz518', 0.0063565927939167781) + +[84744] +centroid = (0.67404976995176169, -1.9537746925048831) +station = ('ku24', 0.015178397859272101) +zone = ('utz517', 0.0066045025161680614) + +[84745] +centroid = (0.64981466901063645, -1.976491042837508) +station = ('ksgu', 0.0055802700678792456) +zone = ('utz019', 0.0043506791881930901) + +[84746] +centroid = (0.65000904632943124, -1.9784383066839581) +station = ('ksgu', 0.0043870166831794363) +zone = ('utz019', 0.0029519666090431656) + +[84747] +centroid = (0.67032113580426356, -1.948553330608032) +station = ('kbce', 0.014158366475723451) +zone = ('utz517', 0.010040722433323811) + +[84749] +centroid = (0.6707479211662537, -1.9465495006405247) +station = ('k4hv', 0.011168859158996342) +zone = ('utz517', 0.010016534481209611) + +[84750] +centroid = (0.67087583634713244, -1.9581435483285978) +station = ('kbce', 0.01290047334745003) +zone = ('utz518', 0.010240292409886342) + +[84751] +centroid = (0.66991710953571948, -1.9709595359325771) +station = ('kmlf', 0.0013485895023182728) +zone = ('utz016', 0.0087865469362136475) + +[84752] +centroid = (0.66648483229521005, -1.9699988019925245) +station = ('kmlf', 0.0044713248533416339) +zone = ('utz016', 0.008176431762248252) + +[84753] +centroid = (0.6626628928459003, -1.9871899111522333) +station = ('kcdc', 0.011441163410033366) +zone = ('utz016', 0.0059617605744171692) + +[84754] +centroid = (0.67412078739902537, -1.9566660223970296) +station = ('kmlf', 0.012916972980601168) +zone = ('utz517', 0.0076477995389575672) + +[84755] +centroid = (0.64978026857107973, -1.9682128763821287) +station = ('kcdc', 0.0093939953911447004) +zone = ('utz518', 0.012362236468232295) + +[84756] +centroid = (0.65579442882735695, -1.9821543221009641) +station = ('kcdc', 0.0068445816455194155) +zone = ('utz019', 0.007063458996728264) + +[84757] +centroid = (0.65379389753213601, -1.9768209100661349) +station = ('kcdc', 0.0047659220392406009) +zone = ('utz019', 0.0064144271632269592) + +[84758] +centroid = (0.65133595034655234, -1.9673780679476074) +station = ('kcdc', 0.0084608487918661473) +zone = ('utz518', 0.010671022156715936) + +[84759] +centroid = (0.66159513531611525, -1.9617399912385498) +station = ('kbce', 0.0049833656713769775) +zone = ('utz518', 0.00055136266852860358) + +[84760] +centroid = (0.66243915908908713, -1.96644819142873) +station = ('kcdc', 0.0074212973091859289) +zone = ('utz518', 0.0039302807689520144) + +[84761] +centroid = (0.66104767788964214, -1.9695768860991474) +station = ('kcdc', 0.0046253535303967279) +zone = ('utz518', 0.0061463997341500822) + +[84762] +centroid = (0.65445110126197448, -1.9679577092454872) +station = ('kcdc', 0.0059320593643711643) +zone = ('utz518', 0.0082038879689205167) + +[84763] +centroid = (0.64825521732397962, -1.9734531052881941) +station = ('ksgu', 0.0074406457434737019) +zone = ('utz019', 0.0066563039148185661) + +[84764] +centroid = (0.65607163947245117, -1.9576884537261403) +station = ('kbce', 0.0019323118857050522) +zone = ('utz518', 0.0059379865791843872) + +[84765] +centroid = (0.64791707723469827, -1.9844761161515998) +station = ('ksgu', 0.001580293794673328) +zone = ('utz019', 0.0022979983038075888) + +[84766] +centroid = (0.67328430344842205, -1.9603027300528251) +station = ('kmlf', 0.0099543488751167135) +zone = ('utz517', 0.010180395400042678) + +[84767] +centroid = (0.64990811393878833, -1.971988302806873) +station = ('kcdc', 0.0082322584010920009) +zone = ('utz019', 0.0078887669108468096) + +[84770] +centroid = (0.64901253313971252, -1.982865718304077) +station = ('ksgu', 0.0017915051495152961) +zone = ('utz019', 0.0009055869446230999) + +[84772] +centroid = (0.65928620434206697, -1.97113478444277) +station = ('kcdc', 0.0025885192511152593) +zone = ('utz016', 0.0091553991960006756) + +[84773] +centroid = (0.6671639922670386, -1.9432662221582579) +station = ('k4hv', 0.008898230129371968) +zone = ('utz013', 0.010933498000793462) + +[84774] +centroid = (0.65084071317129888, -1.9771306012886087) +station = ('ksgu', 0.0057191458798507575) +zone = ('utz019', 0.004259883882232988) + +[84775] +centroid = (0.66207351261079439, -1.9364329963373124) +station = ('k4hv', 0.0081991765856645384) +zone = ('utz021', 0.010508292658771613) + +[84776] +centroid = (0.6568651185102854, -1.9561186173304341) +station = ('kbce', 0.0015069988078929132) +zone = ('utz020', 0.005956068443583395) + +[84779] +centroid = (0.65161668655673566, -1.9743539395283183) +station = ('kcdc', 0.0063798130672186731) +zone = ('utz019', 0.0065771723744423296) + +[84780] +centroid = (0.64796865171409468, -1.9808472275708531) +station = ('ksgu', 0.0016494076423192088) +zone = ('utz019', 0.0010709236397937257) + +[84781] +centroid = (0.65295472577448455, -1.9802871514138882) +station = ('ksgu', 0.0060403716683465761) +zone = ('utz019', 0.0043822612845933473) + +[84782] +centroid = (0.65185988073470857, -1.9838193138474891) +station = ('ksgu', 0.0047194754413781457) +zone = ('utz019', 0.0035182802520369845) + +[84783] +centroid = (0.64998052764945358, -1.9844645446186588) +station = ('ksgu', 0.0030946417419747832) +zone = ('utz019', 0.0024713671284953818) + +[84784] +centroid = (0.64621398495060223, -1.9715918163606974) +station = ('ksgu', 0.0089179033161211983) +zone = ('utz019', 0.0085111337991484581) + +[84790] +centroid = (0.64661497434624793, -1.9819619344575168) +station = ('ksgu', 0.00084553611244090731) +zone = ('utz019', 0.0021269572050050573) + +[85003] +centroid = (0.58382418887175147, -1.9561362800624644) +station = ('kphx', 0.00049019440117060499) +zone = ('azz023', 0.0012057481528072421) + +[85004] +centroid = (0.58383998410148197, -1.9559885030346977) +station = ('kphx', 0.00040864897198141301) +zone = ('azz023', 0.0012291945357863904) + +[85006] +centroid = (0.58407851825035206, -1.9556199767631393) +station = ('kphx', 0.00054329706352786449) +zone = ('azz023', 0.0011773459592555322) + +[85007] +centroid = (0.58377099123615073, -1.9563549698177392) +station = ('kphx', 0.00062497988258019069) +zone = ('azz023', 0.0012237888896171408) + +[85008] +centroid = (0.58403872474340668, -1.9545100695319186) +station = ('kphx', 0.0010836762445027011) +zone = ('azz023', 0.0019242452509967154) + +[85009] +centroid = (0.58369215471383806, -1.9570051573239846) +station = ('kphx', 0.0011325943622783939) +zone = ('azz023', 0.0013574365470376186) + +[85012] +centroid = (0.58481754301552402, -1.9560076143900071) +station = ('kphx', 0.0013135038442247723) +zone = ('azz023', 0.00045780702252090053) + +[85013] +centroid = (0.58487880407226911, -1.9562479113214217) +station = ('kphx', 0.0014290448863730325) +zone = ('azz023', 0.00024962108138032913) + +[85014] +centroid = (0.5848304409986963, -1.9557697260129603) +station = ('kphx', 0.0012973346516249489) +zone = ('azz023', 0.00064294744921773489) + +[85015] +centroid = (0.58483651474449327, -1.9565493122299487) +station = ('kphx', 0.001496622597378712) +zone = ('azz023', 0.00015303072000069919) + +[85016] +centroid = (0.58488630898805249, -1.9551032720380863) +station = ('kphx', 0.0014278812293056758) +zone = ('azz023', 0.0011834885754917583) + +[85017] +centroid = (0.58483857423301044, -1.9569167040374935) +station = ('kphx', 0.0016713547234148073) +zone = ('azz023', 0.00036447096315485013) + +[85018] +centroid = (0.58478925122834913, -1.9545136998167627) +station = ('kphx', 0.001576566458713206) +zone = ('azz023', 0.0016824746226252157) + +[85019] +centroid = (0.58484026720238502, -1.9572910073488763) +station = ('kphx', 0.0018840147662294189) +zone = ('azz023', 0.00066138787337356633) + +[85020] +centroid = (0.5858607961226111, -1.9557041016330854) +station = ('kdvt', 0.0020331734209587653) +zone = ('azz023', 0.0011058056909289688) + +[85021] +centroid = (0.58572239151292793, -1.9563897367764389) +station = ('kdvt', 0.0021959651720215379) +zone = ('azz023', 0.00074283309180791666) + +[85022] +centroid = (0.58690605635833804, -1.9556137459377094) +station = ('kdvt', 0.001014289765648611) +zone = ('azz023', 0.0020613004279277669) + +[85023] +centroid = (0.58704339631717739, -1.9564053225666591) +station = ('kdvt', 0.00092920367226121238) +zone = ('azz023', 0.002058281037963682) + +[85024] +centroid = (0.58880609159522901, -1.955285362238947) +station = ('kdvt', 0.0010667299102345147) +zone = ('azz023', 0.0039542811834680754) + +[85027] +centroid = (0.58782272073477793, -1.9563836979372269) +station = ('kdvt', 0.00038075008328724425) +zone = ('azz023', 0.0028376714359276949) + +[85028] +centroid = (0.58600721179356097, -1.9549155269704492) +station = ('ksdl', 0.0015129725367479905) +zone = ('azz023', 0.0016802178982555801) + +[85029] +centroid = (0.58633878944485474, -1.9566861984031825) +station = ('kdvt', 0.0016688066948605358) +zone = ('azz023', 0.001358832887362737) + +[85031] +centroid = (0.58458007351749774, -1.9576821705408332) +station = ('kgeu', 0.0019558914821337938) +zone = ('azz023', 0.0010529784279403227) + +[85032] +centroid = (0.58688301801221165, -1.9548124478248265) +station = ('ksdl', 0.0012579236688826383) +zone = ('azz023', 0.0023690471340601592) + +[85033] +centroid = (0.58456258531839267, -1.9584297125127548) +station = ('kgeu', 0.0013806716376120187) +zone = ('azz023', 0.0016499866639551654) + +[85034] +centroid = (0.5834541790703287, -1.9550105601482204) +station = ('kphx', 0.00054884578166089655) +zone = ('azz023', 0.0019825502945096311) + +[85035] +centroid = (0.58418699046336353, -1.9581674767926427) +station = ('kgeu', 0.0017575495186299887) +zone = ('azz023', 0.0015917092014977405) + +[85037] +centroid = (0.58451362883287428, -1.9594467158678921) +station = ('kgeu', 0.00075868439487050601) +zone = ('azz023', 0.0024879524232233161) + +[85040] +centroid = (0.58305305004834274, -1.9552132801408395) +station = ('kphx', 0.00061078128684711314) +zone = ('azz023', 0.0022192555044299829) + +[85041] +centroid = (0.58269440234035053, -1.9566939825716465) +station = ('kphx', 0.0012052258346801226) +zone = ('azz023', 0.002297558003906242) + +[85042] +centroid = (0.58240235639661431, -1.9555281549911918) +station = ('kphx', 0.0011393304065193972) +zone = ('azz023', 0.0027135329355354189) + +[85043] +centroid = (0.58349681746395488, -1.9582070259534927) +station = ('kgeu', 0.0021941930802008083) +zone = ('azz023', 0.0020511590419201521) + +[85044] +centroid = (0.58211891492609047, -1.9551018059615146) +station = ('kphx', 0.0014922425281566249) +zone = ('azz023', 0.0031021264587724586) + +[85045] +centroid = (0.58126211534299388, -1.9565732232407009) +station = ('kphx', 0.0023984375933006202) +zone = ('azz023', 0.0037254155775055778) + +[85048] +centroid = (0.58141371464182201, -1.9557668287664021) +station = ('kphx', 0.0021244217363965544) +zone = ('azz023', 0.0036280561709255178) + +[85050] +centroid = (0.58787467918660985, -1.954734955206038) +station = ('kdvt', 0.00099639929159400808) +zone = ('azz023', 0.0032468272693155454) + +[85051] +centroid = (0.58570909210402777, -1.957079892322555) +station = ('kdvt', 0.0023765659365097367) +zone = ('azz023', 0.00086066544022012266) + +[85053] +centroid = (0.58695316279484933, -1.9570611474863886) +station = ('kdvt', 0.0013233738331160673) +zone = ('azz023', 0.0020174122531009028) + +[85054] +centroid = (0.58780118337180831, -1.9537407458509317) +station = ('ksdl', 0.0011365262551159682) +zone = ('azz023', 0.0036425211689973232) + +[85083] +centroid = (0.58860485513247407, -1.9575358770429312) +station = ('kdvt', 0.0015158242142758304) +zone = ('azz023', 0.0037156631336168005) + +[85085] +centroid = (0.58905553405192412, -1.9563435902710162) +station = ('kdvt', 0.0012194325190721612) +zone = ('azz023', 0.0040708710327737171) + +[85086] +centroid = (0.59020003370891938, -1.9568602949960692) +station = ('kdvt', 0.002440165806800352) +zone = ('azz023', 0.0052205900788618604) + +[85087] +centroid = (0.59210136048945694, -1.9569939523101867) +station = ('kdvt', 0.0043075879830984419) +zone = ('azz023', 0.0071251442124485951) + +[85118] +centroid = (0.58210446359988388, -1.9429177846263899) +station = ('kiwa', 0.0048373414577928533) +zone = ('azz024', 0.0062053399632551048) + +[85119] +centroid = (0.58310900530416176, -1.9460763244270165) +station = ('kiwa', 0.002700473220594561) +zone = ('azz028', 0.0067800137556892721) + +[85120] +centroid = (0.5829816137220587, -1.9472268105633461) +station = ('kiwa', 0.0019160954983057526) +zone = ('azz028', 0.0063012292994365062) + +[85121] +centroid = (0.57847901331776364, -1.953411018248645) +station = ('kchd', 0.0027154113383664425) +zone = ('azz028', 0.0035309558865419073) + +[85122] +centroid = (0.57451221154053844, -1.9503043845399728) +station = ('kcgz', 0.00066138756299549727) +zone = ('azz028', 0.0025570986082640587) + +[85123] +centroid = (0.57099135884049035, -1.9494919861330471) +station = ('kcgz', 0.004217824677565458) +zone = ('azz028', 0.0060062745744640274) + +[85128] +centroid = (0.57578296831562292, -1.9467045905978571) +station = ('kcgz', 0.0034206502015531287) +zone = ('azz028', 0.0027031688974693555) + +[85131] +centroid = (0.57024289184406507, -1.9468672727374354) +station = ('kcgz', 0.0058148207816479383) +zone = ('azz505', 0.0033072998408427844) + +[85132] +centroid = (0.57468075798640361, -1.9410696903880382) +station = ('kiwa', 0.0093121836292688297) +zone = ('azz505', 0.0036552886360329217) + +[85135] +centroid = (0.57602446952422148, -1.9335718606412255) +station = ('kiwa', 0.013760980211428976) +zone = ('azz506', 0.0031503668542384429) + +[85137] +centroid = (0.57833950915065169, -1.9377103155503843) +station = ('kiwa', 0.0096848154136041399) +zone = ('azz506', 0.0067207066830126316) + +[85138] +centroid = (0.57608581784742907, -1.9545812789654) +station = ('kcgz', 0.0034089035533727517) +zone = ('azz028', 0.0042865222071492397) + +[85139] +centroid = (0.57560936041492716, -1.9572969065617478) +station = ('kcgz', 0.0055625800556883421) +zone = ('azz028', 0.0066134262790375634) + +[85140] +centroid = (0.58022652423132304, -1.9468068145321462) +station = ('kiwa', 0.0019963852372160674) +zone = ('azz028', 0.0039799026719442229) + +[85141] +centroid = (0.56970246809447755, -1.9448980875555801) +station = ('kcgz', 0.0072621204950144144) +zone = ('azz505', 0.0022860699795004685) + +[85142] +centroid = (0.57944913712919222, -1.9484208950243906) +station = ('kiwa', 0.0020461929316763286) +zone = ('azz028', 0.0026387388972520008) + +[85143] +centroid = (0.57872779254934292, -1.9463744266632572) +station = ('kiwa', 0.0033555792965581643) +zone = ('azz028', 0.0031981302218471864) + +[85145] +centroid = (0.56814500608316787, -1.9436977373625213) +station = ('kryn', 0.0077530506971801288) +zone = ('azz505', 0.0033887902066510817) + +[85147] +centroid = (0.57821164632965061, -1.950116953631601) +station = ('kchd', 0.0026949960657270031) +zone = ('azz028', 0.0012936667394746327) + +[85172] +centroid = (0.57392389595627624, -1.9539545137777161) +station = ('kcgz', 0.0029717582214548021) +zone = ('azz028', 0.0047834847860164934) + +[85173] +centroid = (0.58067385211860922, -1.9394671639754419) +station = ('kiwa', 0.0077268533934399652) +zone = ('azz024', 0.0056793804932130281) + +[85192] +centroid = (0.57531186904392462, -1.9317047772206122) +station = ('kdma', 0.014220368878696862) +zone = ('azz506', 0.0026281709256493761) + +[85193] +centroid = (0.57247234052397755, -1.9515818608326774) +station = ('kcgz', 0.0027174022644401168) +zone = ('azz028', 0.0048251819861548076) + +[85194] +centroid = (0.57417232612200508, -1.9482893321053751) +station = ('kcgz', 0.0022174001043086628) +zone = ('azz028', 0.0030267281439120583) + +[85201] +centroid = (0.58352544086368763, -1.9521577496726654) +station = ('kffz', 0.0018001220154278802) +zone = ('azz023', 0.0039194334418979782) + +[85202] +centroid = (0.58261444880731661, -1.9525696648294288) +station = ('kchd', 0.0021621121435243039) +zone = ('azz023', 0.0040596571665715989) + +[85203] +centroid = (0.58381890052411789, -1.9513286135582131) +station = ('kffz', 0.0010521049422738723) +zone = ('azz023', 0.0044827435006003389) + +[85204] +centroid = (0.5828652700741207, -1.9510443692362334) +station = ('kffz', 0.0014613049291289314) +zone = ('azz023', 0.0050352819398683897) + +[85205] +centroid = (0.58350580590960266, -1.9498558698287953) +station = ('kffz', 0.00063549268275829877) +zone = ('azz023', 0.0057508036767272537) + +[85206] +centroid = (0.58287603875560556, -1.9498311036067095) +station = ('kffz', 0.0012500692942655702) +zone = ('azz028', 0.0058825140741129269) + +[85207] +centroid = (0.58387384348897076, -1.9484096551040078) +station = ('kffz', 0.0014407684797398972) +zone = ('azz023', 0.0068532662193810916) + +[85208] +centroid = (0.58299768820446951, -1.948277236973659) +station = ('kiwa', 0.0015456031917607277) +zone = ('azz028', 0.0060994768472119928) + +[85209] +centroid = (0.58251149183474149, -1.9484623640474181) +station = ('kiwa', 0.001039176231657752) +zone = ('azz028', 0.0055937951000858922) + +[85210] +centroid = (0.58276077721180386, -1.9520374092207404) +station = ('kffz', 0.0020924295687208792) +zone = ('azz023', 0.0043507986832951517) + +[85212] +centroid = (0.58158426821632703, -1.9484042794899115) +station = ('kiwa', 0.00023547835362563118) +zone = ('azz028', 0.0046923795988695347) + +[85213] +centroid = (0.58379052147048038, -1.9507373134609298) +station = ('kffz', 0.00060656351328805655) +zone = ('azz023', 0.004967337164600791) + +[85215] +centroid = (0.58489292378591762, -1.947427837586591) +station = ('kffz', 0.0023756770742884665) +zone = ('azz028', 0.0080991230368190666) + +[85224] +centroid = (0.5816154921566451, -1.952643247910693) +station = ('kchd', 0.0013704068851867694) +zone = ('azz023', 0.0046717810107605668) + +[85225] +centroid = (0.58149916596199969, -1.951810202258716) +station = ('kchd', 0.00088881473144323587) +zone = ('azz028', 0.0048719393550288714) + +[85226] +centroid = (0.580331488332538, -1.9550462346781312) +station = ('kchd', 0.0030063405885087154) +zone = ('azz023', 0.0048151256717298254) + +[85233] +centroid = (0.58212847933039125, -1.9514776297697483) +station = ('kchd', 0.0014719890432172756) +zone = ('azz023', 0.005085459109280618) + +[85234] +centroid = (0.58230219195084232, -1.9502404531294724) +station = ('kiwa', 0.001552421513395918) +zone = ('azz028', 0.0053333244475595549) + +[85248] +centroid = (0.57970744585848744, -1.9524983855827773) +station = ('kchd', 0.0012796721730780102) +zone = ('azz028', 0.0036464731458164153) + +[85249] +centroid = (0.57988487603024508, -1.9512033512777975) +station = ('kchd', 0.00080367267080577905) +zone = ('azz028', 0.0031898310431469359) + +[85250] +centroid = (0.58528658279870494, -1.9528027186444477) +station = ('ksdl', 0.0014969037534729407) +zone = ('azz023', 0.0031112786973095459) + +[85251] +centroid = (0.58457207990952353, -1.953359216876446) +station = ('ksdl', 0.0021497625667885652) +zone = ('azz023', 0.0026660740112096652) + +[85253] +centroid = (0.58546778288164691, -1.95402809685898) +station = ('ksdl', 0.0013876092172625722) +zone = ('azz023', 0.0021301124635712656) + +[85254] +centroid = (0.58670089290476601, -1.953935105716434) +station = ('ksdl', 0.0005173794303619866) +zone = ('azz023', 0.0027508184585395695) + +[85255] +centroid = (0.5876301411051128, -1.9516914326031178) +station = ('ksdl', 0.0016281843608285957) +zone = ('azz023', 0.0048110619854391263) + +[85256] +centroid = (0.58469549214093208, -1.9520413013049724) +station = ('kffz', 0.0017125582682774507) +zone = ('azz023', 0.0037437059265409199) + +[85257] +centroid = (0.58402137617064176, -1.9533095273526417) +station = ('kphx', 0.0020209647249207824) +zone = ('azz023', 0.0028444756940367178) + +[85258] +centroid = (0.5858074588606702, -1.9529515428697652) +station = ('ksdl', 0.00096271821051737035) +zone = ('azz023', 0.0030833627691856215) + +[85259] +centroid = (0.58645003673137697, -1.9514437005690897) +station = ('ksdl', 0.0015813958709236619) +zone = ('azz023', 0.0044740288758651613) + +[85260] +centroid = (0.58661805957846647, -1.9528745913030445) +station = ('ksdl', 0.00038053571509406289) +zone = ('azz023', 0.0034459201857942566) + +[85262] +centroid = (0.59053264110447201, -1.9513831376440454) +station = ('ksdl', 0.0041357527297631938) +zone = ('azz023', 0.0070005868894198638) + +[85263] +centroid = (0.59061172197287981, -1.9464540834903183) +station = ('ksdl', 0.0069055547703554786) +zone = ('azz024', 0.0090134812458595188) + +[85264] +centroid = (0.58704346613034741, -1.9466055780693914) +station = ('kffz', 0.0041467020488832459) +zone = ('azz024', 0.0079531267621406401) + +[85266] +centroid = (0.58933590374296452, -1.9533384823649325) +station = ('kdvt', 0.002599800869477881) +zone = ('azz023', 0.0050907376083190589) + +[85268] +centroid = (0.58653690176824858, -1.9502881006180517) +station = ('kffz', 0.0024376748474306451) +zone = ('azz023', 0.0054173414880058068) + +[85281] +centroid = (0.58341841727395527, -1.9536139825873595) +station = ('kphx', 0.0017122536183862861) +zone = ('azz023', 0.0028857407044599321) + +[85282] +centroid = (0.58282970026396508, -1.9535766674479518) +station = ('kphx', 0.0018776913516171476) +zone = ('azz023', 0.0032673172340117024) + +[85283] +centroid = (0.58232278683601579, -1.9535750268384549) +station = ('kphx', 0.0021224576215053042) +zone = ('azz023', 0.0036233176635016577) + +[85284] +centroid = (0.58185917502680862, -1.9536250305215248) +station = ('kchd', 0.0021643341892198542) +zone = ('azz023', 0.0039512687513498573) + +[85286] +centroid = (0.58070586145709069, -1.9518348463077542) +station = ('kchd', 0.00030733768193703259) +zone = ('azz028', 0.0041594736693460832) + +[85295] +centroid = (0.58124958387896453, -1.9502427395107924) +station = ('kchd', 0.0011864814867086951) +zone = ('azz028', 0.0042879283154448854) + +[85296] +centroid = (0.58181220821663737, -1.9502418842994589) +station = ('kiwa', 0.0013614386312114245) +zone = ('azz028', 0.0048463441200807412) + +[85297] +centroid = (0.58080667167468591, -1.9500817503405883) +station = ('kiwa', 0.0013685022114452313) +zone = ('azz028', 0.0038321610691311901) + +[85298] +centroid = (0.5801681429678438, -1.9499992486268465) +station = ('kchd', 0.0013248817504027031) +zone = ('azz028', 0.0031899169546995816) + +[85301] +centroid = (0.58523949381548623, -1.9578743138381853) +station = ('kgeu', 0.0017090613515928184) +zone = ('azz023', 0.0011588268589209239) + +[85302] +centroid = (0.58587163461726599, -1.9578747676237906) +station = ('kgeu', 0.0018487714966236145) +zone = ('azz023', 0.0014358688417315361) + +[85303] +centroid = (0.58524324627337798, -1.9586683513813798) +station = ('kgeu', 0.0010485952203356621) +zone = ('azz023', 0.001811169462801914) + +[85304] +centroid = (0.58642607336074704, -1.9578802654109344) +station = ('kgeu', 0.002120690647557977) +zone = ('azz023', 0.0018329535214574207) + +[85305] +centroid = (0.58524012213401688, -1.9592402957772588) +station = ('kgeu', 0.00057410593798383914) +zone = ('azz023', 0.0022838315835298577) + +[85306] +centroid = (0.58685921172121447, -1.957850839159746) +station = ('kdvt', 0.0018980849021564428) +zone = ('azz023', 0.0021767658040716849) + +[85307] +centroid = (0.58537393652776726, -1.9602309272073981) +station = ('kgeu', 0.00033430546770156142) +zone = ('azz023', 0.0031195496077156795) + +[85308] +centroid = (0.58748501697780953, -1.9579701498674122) +station = ('kdvt', 0.0017424850142978834) +zone = ('azz023', 0.0027754379320511133) + +[85309] +centroid = (0.58522423963782366, -1.9614496382641879) +station = ('kluf', 4.3570042342358852e-05) +zone = ('azz023', 0.004118450242947538) + +[85310] +centroid = (0.58830945815657421, -1.9575475707489194) +station = ('kdvt', 0.001409305998972588) +zone = ('azz023', 0.0034311661481467265) + +[85320] +centroid = (0.59184441311697844, -1.9758864956912021) +station = ('kbxk', 0.011544049358548521) +zone = ('azz022', 0.0062464507264191702) + +[85321] +centroid = (0.56265493329467953, -1.9661710331435129) +station = ('kgbn', 0.0034421293316593432) +zone = ('azz501', 0.0047874325032429823) + +[85322] +centroid = (0.57873562907768439, -1.9699886267229854) +station = ('kbxk', 0.0051213626013319139) +zone = ('azz027', 0.0045141179841736417) + +[85323] +centroid = (0.58328462033349737, -1.9604740690254934) +station = ('kgyr', 0.00082401032816648988) +zone = ('azz023', 0.0037137484661777533) + +[85324] +centroid = (0.59549222106681665, -1.9555414369467994) +station = ('kdvt', 0.0076140662323025922) +zone = ('azz037', 0.0086652783310959096) + +[85325] +centroid = (0.59327837563041697, -1.9881269609743364) +station = ('kblh', 0.013394672531549048) +zone = ('azz021', 0.0034598438122227311) + +[85326] +centroid = (0.58105016255863162, -1.9650530624911482) +station = ('kbxk', 0.0025335993546191748) +zone = ('azz027', 0.0072109862968464562) + +[85328] +centroid = (0.58036779118097948, -2.0005026020080376) +station = ('kblh', 0.0065067328697065796) +zone = ('caz031', 0.0012099555341028112) + +[85331] +centroid = (0.59129899772573014, -1.9532445312912974) +station = ('kdvt', 0.004079907183538253) +zone = ('azz023', 0.0068741119979196866) + +[85332] +centroid = (0.59657291148635894, -1.9705595064680201) +station = ('kprc', 0.010786884899763564) +zone = ('azz037', 0.0071318413253978761) + +[85333] +centroid = (0.57634444073598956, -1.9771707438614046) +station = ('kbxk', 0.010997423345839556) +zone = ('azz027', 0.0075860001120452948) + +[85334] +centroid = (0.58497469246137357, -1.9986890129289978) +station = ('kblh', 0.003395573708765834) +zone = ('azz020', 0.0018095461379485419) + +[85335] +centroid = (0.58629594161171839, -1.9604880491128018) +station = ('kgeu', 0.0012294922914420127) +zone = ('azz023', 0.0035582258251300176) + +[85336] +centroid = (0.56808297708155198, -2.0034413524959609) +station = ('knyl', 0.0032899010627472484) +zone = ('azz025', 0.0041603689256613516) + +[85337] +centroid = (0.57533089313277153, -1.9670618666470234) +station = ('kbxk', 0.0077864288289187216) +zone = ('azz027', 0.0014656302420555964) + +[85338] +centroid = (0.58248091366624644, -1.9619291849294662) +station = ('kgyr', 0.00084639884477216709) +zone = ('azz023', 0.0051644322746960316) + +[85339] +centroid = (0.58009730005350535, -1.9575890746785318) +station = ('kphx', 0.0037976235385137756) +zone = ('azz023', 0.0049711298325094272) + +[85340] +centroid = (0.58496153267881357, -1.961995140921899) +station = ('kluf', 0.00054127770604794261) +zone = ('azz023', 0.0045668550462921072) + +[85341] +centroid = (0.55639684582214355, -1.9687134717181858) +station = ('kgbn', 0.0098213830210903512) +zone = ('azz501', 0.0064501596919681568) + +[85342] +centroid = (0.59244414315454874, -1.962646724691546) +station = ('kdvt', 0.0072046129473533433) +zone = ('azz022', 0.0073799469417981161) + +[85343] +centroid = (0.58185329326722934, -1.9667360485822614) +station = ('kbxk', 0.0012627842210472212) +zone = ('azz022', 0.0067860014304363747) + +[85344] +centroid = (0.59481962353297557, -1.9934494297947558) +station = ('kblh', 0.010871793404621643) +zone = ('azz021', 0.0074902250989807009) + +[85345] +centroid = (0.58596364837543113, -1.9590596891062622) +station = ('kgeu', 0.0010779786030099088) +zone = ('azz023', 0.0023328809549662708) + +[85346] +centroid = (0.58705803962960168, -1.9922223935174335) +station = ('kblh', 0.0083011322043962787) +zone = ('azz020', 0.0047284143711437089) + +[85347] +centroid = (0.57242547843356151, -1.9860093704461843) +station = ('knyl', 0.012169678521698684) +zone = ('azz026', 0.0010603811046938627) + +[85348] +centroid = (0.58842442299440301, -1.9848106608626219) +station = ('kbxk', 0.015910540180583941) +zone = ('azz021', 0.0021602700419452894) + +[85349] +centroid = (0.5673914601786193, -2.0027071797461091) +station = ('knyl', 0.0032706693009468923) +zone = ('azz025', 0.0039832621017861702) + +[85350] +centroid = (0.56830046255964295, -2.0017800259408647) +station = ('knyl', 0.0020718980253447068) +zone = ('azz025', 0.0028216797298477314) + +[85351] +centroid = (0.58653763480653442, -1.9597274869846604) +station = ('kgeu', 0.0013867544265767494) +zone = ('azz023', 0.0030916315093506403) + +[85352] +centroid = (0.57106078803813454, -1.9868743207168875) +station = ('knyl', 0.011236688465578744) +zone = ('azz026', 0.0017475610642325372) + +[85353] +centroid = (0.58324559477142279, -1.9596028704760677) +station = ('kgyr', 0.0015495104109310028) +zone = ('azz023', 0.00310765161911176) + +[85354] +centroid = (0.5834694856078686, -1.9730264770058368) +station = ('kbxk', 0.0051994565793486314) +zone = ('azz022', 0.0053547807675002083) + +[85355] +centroid = (0.58601382659142598, -1.9627033606257731) +station = ('kluf', 0.0012777604058864527) +zone = ('azz023', 0.0052566614075101386) + +[85356] +centroid = (0.57053104570356927, -1.9925070218118488) +station = ('knyl', 0.006467544002540169) +zone = ('azz026', 0.0050047239150416752) + +[85357] +centroid = (0.59376111624822603, -1.9800467672160109) +station = ('kbxk', 0.015315001580463563) +zone = ('azz021', 0.0064155581627032528) + +[85360] +centroid = (0.60631743376609371, -1.9803210108013767) +station = ('kigm', 0.011154843913295704) +zone = ('azz003', 0.0095047691119754633) + +[85361] +centroid = (0.58929499322529777, -1.9654955034565287) +station = ('kluf', 0.0052453672200684608) +zone = ('azz022', 0.0038049282732793787) + +[85362] +centroid = (0.59829741896037703, -1.9693373047527261) +station = ('kprc', 0.0088265663844255514) +zone = ('azz037', 0.0053311420662409343) + +[85363] +centroid = (0.58616828823022749, -1.9600905503756603) +station = ('kgeu', 0.0010175737727280915) +zone = ('azz023', 0.0032033548887899777) + +[85364] +centroid = (0.57074816466251743, -2.0011461921697107) +station = ('knyl', 0.0012302936508519829) +zone = ('azz025', 0.0020802174817396296) + +[85365] +centroid = (0.57764183123545954, -1.9918629255046929) +station = ('knyl', 0.010446225343159657) +zone = ('azz026', 0.0062373755268503202) + +[85367] +centroid = (0.57022899902321911, -1.9965784037178536) +station = ('knyl', 0.003028408824913704) +zone = ('azz025', 0.0020373053198049595) + +[85371] +centroid = (0.59041943904918759, -1.9962350101875237) +station = ('kblh', 0.0061768359661768862) +zone = ('azz020', 0.004006327118997813) + +[85373] +centroid = (0.58767719518174655, -1.9599987460570052) +station = ('kgeu', 0.0025175830303964561) +zone = ('azz023', 0.0039552802394564081) + +[85374] +centroid = (0.58714614385024233, -1.9613718663927193) +station = ('kluf', 0.0018804756019045808) +zone = ('azz023', 0.0045843757358988409) + +[85375] +centroid = (0.58792827824793847, -1.9611595994490918) +station = ('kluf', 0.0026728734882117146) +zone = ('azz023', 0.0048578229492715879) + +[85377] +centroid = (0.59032398699239608, -1.9532703272576419) +station = ('kdvt', 0.00329346567176524) +zone = ('azz023', 0.0059820013801149341) + +[85379] +centroid = (0.5864884165216282, -1.9612199354813331) +station = ('kluf', 0.0012375035993882906) +zone = ('azz023', 0.0041961994706864042) + +[85381] +centroid = (0.58659313627674792, -1.958812585390765) +station = ('kgeu', 0.0017051983907365989) +zone = ('azz023', 0.0024972094223978006) + +[85382] +centroid = (0.58737818537429498, -1.9591229049317695) +station = ('kgeu', 0.0023155908158565184) +zone = ('azz023', 0.0032291148632506718) + +[85383] +centroid = (0.58995771219557247, -1.9590919951507166) +station = ('kdvt', 0.0033465021864685454) +zone = ('azz023', 0.0054126832433424856) + +[85387] +centroid = (0.58834171184115092, -1.9626394990284426) +station = ('kluf', 0.0032279091312445063) +zone = ('azz023', 0.0061028577120082429) + +[85388] +centroid = (0.58645860629800417, -1.9623028599223182) +station = ('kluf', 0.0013834443051563841) +zone = ('azz023', 0.0050404760193390749) + +[85390] +centroid = (0.59172983225158493, -1.9700520345347103) +station = ('kbxk', 0.0090276923485757832) +zone = ('azz022', 0.0036102018439032281) + +[85392] +centroid = (0.5842939965998033, -1.9601598923068417) +station = ('kgeu', 0.0008887771493178839) +zone = ('azz023', 0.0031154684910191248) + +[85395] +centroid = (0.58431342211437798, -1.9616671586488643) +station = ('kluf', 0.0009692915786724324) +zone = ('azz023', 0.0043468002071666585) + +[85396] +centroid = (0.58514351815991905, -1.967025232186024) +station = ('kbxk', 0.0020368310389187456) +zone = ('azz022', 0.0037958981897392081) + +[85501] +centroid = (0.58583789740282499, -1.9330875143205046) +station = ('kiwa', 0.013704013506360571) +zone = ('azz024', 0.0033787948286993579) + +[85530] +centroid = (0.57709697434957197, -1.9233460987268385) +station = ('ksad', 0.0091039858050105203) +zone = ('azz511', 0.0073086315242696497) + +[85531] +centroid = (0.57393597363470006, -1.9161982773082209) +station = ('ksad', 0.0023736182467348908) +zone = ('azz509', 0.00072350047244492711) + +[85533] +centroid = (0.58213629840544023, -1.9094908199131739) +station = ('ksad', 0.0094038979454671521) +zone = ('azz510', 0.0013292483291970172) + +[85534] +centroid = (0.57166133838045341, -1.9048812308257317) +station = ('ksad', 0.0074059881342738998) +zone = ('nmz401', 0.0079259751072277111) + +[85535] +centroid = (0.57571963031706819, -1.9183379811579959) +station = ('ksad', 0.0047337960715144404) +zone = ('azz509', 0.0032100124024985106) + +[85536] +centroid = (0.57806441035395251, -1.9201403652232378) +station = ('ksad', 0.0073272595088602396) +zone = ('azz509', 0.0059299028424877635) + +[85539] +centroid = (0.5818871701080105, -1.9354773762119679) +station = ('kiwa', 0.011021961780773849) +zone = ('azz024', 0.0043492452876879193) + +[85540] +centroid = (0.57596245797589807, -1.9091209322847988) +station = ('ksad', 0.0044894401295731603) +zone = ('azz509', 0.0057483955181047265) + +[85541] +centroid = (0.59681532026616857, -1.9426399282094724) +station = ('kpan', 0.0010251584914186581) +zone = ('azz018', 0.0061535628899824883) + +[85542] +centroid = (0.58149492481191734, -1.9254274038598418) +station = ('ksad', 0.012922485349120568) +zone = ('azz506', 0.010664993908617793) + +[85543] +centroid = (0.57558468145930386, -1.9196770850265885) +station = ('ksad', 0.0056790816742284958) +zone = ('azz509', 0.0040715052439951526) + +[85544] +centroid = (0.59871523333001198, -1.947109088105299) +station = ('kpan', 0.0034634128631806436) +zone = ('azz018', 0.010307005066908018) + +[85545] +centroid = (0.58581812282239987, -1.9397691408426221) +station = ('kiwa', 0.0085915312458449654) +zone = ('azz024', 0.0022011257483686084) + +[85546] +centroid = (0.57270823922567704, -1.9086092890145767) +station = ('ksad', 0.0041268426148728535) +zone = ('azz509', 0.0057845872516739723) + +[85550] +centroid = (0.58537283697033848, -1.928107723445422) +station = ('ksow', 0.014361248429588407) +zone = ('azz024', 0.0075516598045463632) + +[85551] +centroid = (0.57114728655586344, -1.9126797284427854) +station = ('ksad', 0.0022899970146626134) +zone = ('azz509', 0.0034009898357029306) + +[85552] +centroid = (0.57281576896089248, -1.9158626504930623) +station = ('ksad', 0.0020837694395568823) +zone = ('azz509', 0.00093444212174796551) + +[85553] +centroid = (0.59074628685820851, -1.9405716257793966) +station = ('kpan', 0.007328646056165569) +zone = ('azz018', 0.0050936321398347912) + +[85554] +centroid = (0.59300444620431647, -1.936623341945535) +station = ('kpan', 0.0071619082410542545) +zone = ('azz018', 0.0012353415713897177) + +[85601] +centroid = (0.55132622801278708, -1.9428080383230244) +station = ('kols', 0.0075386665654511957) +zone = ('azz503', 0.0023232657992508332) + +[85602] +centroid = (0.56158372001297552, -1.9269323838205439) +station = ('ktus', 0.0080866068119742982) +zone = ('azz507', 0.0044856445722276754) + +[85603] +centroid = (0.54860454412393467, -1.9184580598105332) +station = ('kdug', 0.0047946361206146577) +zone = ('azz513', 0.0075216629382954623) + +[85605] +centroid = (0.56377738944322209, -1.9108103586408518) +station = ('ksad', 0.0098209642424377866) +zone = ('azz508', 0.0068263335122009687) + +[85606] +centroid = (0.55924806804807914, -1.9180990979432755) +station = ('kalk', 0.010925268465456817) +zone = ('azz508', 0.0056931837820870532) + +[85607] +centroid = (0.55014823548744607, -1.9090354809646213) +station = ('kdug', 0.0034141464458162692) +zone = ('azz512', 0.0059519839573107074) + +[85608] +centroid = (0.54902666945682199, -1.912548130617185) +station = ('kdug', 0.00033097132606740317) +zone = ('azz512', 0.0078137469618525385) + +[85609] +centroid = (0.55971796304259358, -1.9215549894885644) +station = ('kalk', 0.0094910273370391075) +zone = ('azz507', 0.0039185357888905526) + +[85610] +centroid = (0.55404075605170644, -1.9150158167399947) +station = ('kdug', 0.0051738527603761575) +zone = ('azz508', 0.0039691561965475696) + +[85611] +centroid = (0.55266143979714788, -1.9287683480205942) +station = ('kalk', 0.0017589062847364113) +zone = ('azz513', 0.002165489016240496) + +[85613] +centroid = (0.55096332170141993, -1.9264393457601481) +station = ('kalk', 0.00085212409134991819) +zone = ('azz513', 0.00064297598054229011) + +[85614] +centroid = (0.55526430167052454, -1.9359087343365984) +station = ('ktus', 0.0055865649398948386) +zone = ('azz503', 0.0049495008002786185) + +[85615] +centroid = (0.54807656457191389, -1.9235666734377057) +station = ('kalk', 0.0046306243185032722) +zone = ('azz513', 0.004345910009617651) + +[85616] +centroid = (0.55330242941823526, -1.9254804967756873) +station = ('kalk', 0.0022992835420832677) +zone = ('azz513', 0.001932183438713167) + +[85617] +centroid = (0.55012147959001301, -1.9147762004869884) +station = ('kdug', 0.0018619223775759655) +zone = ('azz508', 0.0073094079367412926) + +[85618] +centroid = (0.57106642545161856, -1.9292540033382541) +station = ('kdma', 0.010909623162211477) +zone = ('azz506', 0.003639223779950432) + +[85619] +centroid = (0.5656180136723753, -1.9326580586047588) +station = ('kdma', 0.0047520450483199842) +zone = ('azz514', 0.0014616721726430425) + +[85620] +centroid = (0.54693874952595367, -1.9188381052551549) +station = ('kdug', 0.0055635949742644832) +zone = ('azz513', 0.0080625751585403655) + +[85621] +centroid = (0.54782356164354473, -1.9357795974252434) +station = ('kols', 0.0010506147654869326) +zone = ('azz503', 0.0055180065032028906) + +[85622] +centroid = (0.55548334049164982, -1.9386333852851794) +station = ('kryn', 0.0056416426725725008) +zone = ('azz503', 0.0038252660535622526) + +[85623] +centroid = (0.57083167866722528, -1.9339157603170385) +station = ('kdma', 0.0094874837454281147) +zone = ('azz506', 0.0022240910836761624) + +[85624] +centroid = (0.54986547469533043, -1.9319572914567906) +station = ('kols', 0.0027997492691378299) +zone = ('azz513', 0.0049214965269816814) + +[85625] +centroid = (0.55653230082539096, -1.9131263581983706) +station = ('kdug', 0.0073383375118091267) +zone = ('azz508', 0.0011294963161880972) + +[85626] +centroid = (0.54729703071480307, -1.9122992990257281) +station = ('kdug', 0.0019636670119828692) +zone = ('azz512', 0.0093337797388318416) + +[85627] +centroid = (0.55864125197374581, -1.9239731431672025) +station = ('kalk', 0.007624993075007208) +zone = ('azz507', 0.001681661228078464) + +[85629] +centroid = (0.55707136321816186, -1.9376476931368229) +station = ('ktus', 0.0038973570967422606) +zone = ('azz504', 0.0045414691281544291) + +[85630] +centroid = (0.55652566857423336, -1.9230220434446208) +station = ('kalk', 0.0061314781953916561) +zone = ('azz507', 0.0020392040815172402) + +[85631] +centroid = (0.5688187206277302, -1.9294835315881842) +station = ('kdma', 0.0088760078056169898) +zone = ('azz514', 0.0048343290907413988) + +[85632] +centroid = (0.55927087950140264, -1.9052196152611085) +station = ('klsb', 0.0085790340792103337) +zone = ('azz512', 0.0042958562534886977) + +[85633] +centroid = (0.55174922601030041, -1.9460955230487886) +station = ('kols', 0.010302809773680338) +zone = ('azz515', 0.0038309200877907298) + +[85634] +centroid = (0.55910742941695335, -1.9546715473943128) +station = ('kgbn', 0.012324531608973923) +zone = ('azz502', 0.0021612622699909625) + +[85635] +centroid = (0.55101809013334746, -1.9228333384458951) +station = ('kalk', 0.0037477526572051306) +zone = ('azz513', 0.0032205650570100199) + +[85637] +centroid = (0.55360983425938903, -1.9319243221872204) +station = ('kalk', 0.0045356270823579273) +zone = ('azz513', 0.0049952494499100218) + +[85638] +centroid = (0.55355162752883502, -1.9207628369009617) +station = ('kalk', 0.0058364568040205154) +zone = ('azz507', 0.0053584130190585605) + +[85640] +centroid = (0.55078727033977126, -1.9381487422584853) +station = ('kols', 0.0038377237074584854) +zone = ('azz503', 0.0020351804407615025) + +[85641] +centroid = (0.55936116538360836, -1.9307343916097959) +station = ('kdma', 0.0043629638023595999) +zone = ('azz514', 0.005087789164584809) + +[85643] +centroid = (0.56561312675046982, -1.9192598640688994) +station = ('ksad', 0.0091406561354433879) +zone = ('azz511', 0.0048148091372312695) + +[85645] +centroid = (0.55302989625553634, -1.9401190095444767) +station = ('kols', 0.0065945312080641525) +zone = ('azz503', 0.0011451104877333034) + +[85646] +centroid = (0.55234989852566674, -1.9362802974810556) +station = ('kols', 0.0042456760313820561) +zone = ('azz503', 0.0033360487357001079) + +[85648] +centroid = (0.54961187835501568, -1.9379803703455454) +station = ('kols', 0.0030823399482477541) +zone = ('azz503', 0.0029358786317728565) + +[85650] +centroid = (0.54979105385602534, -1.9233848624895253) +station = ('kalk', 0.003678623533827593) +zone = ('azz513', 0.0032485737491259352) + +[85653] +centroid = (0.56546555916221364, -1.944058252572813) +station = ('kryn', 0.0055311178265620171) +zone = ('azz505', 0.0060854414299399062) + +[85654] +centroid = (0.56575294507684704, -1.9400104326117102) +station = ('kryn', 0.0048096283810308872) +zone = ('azz504', 0.0044169374069056968) + +[85658] +centroid = (0.5681230323878852, -1.9398190747125215) +station = ('kryn', 0.0071848873041920648) +zone = ('azz505', 0.0044459107501976652) + +[85701] +centroid = (0.56229178263721713, -1.9368095860300152) +station = ('ktus', 0.0014919734395909508) +zone = ('azz504', 0.0014499275686295572) + +[85704] +centroid = (0.56442935718530451, -1.9370536179660292) +station = ('kdma', 0.003367885404870498) +zone = ('azz504', 0.0030395631161733339) + +[85705] +centroid = (0.56324139882993463, -1.9371767334914649) +station = ('kdma', 0.0024321772090787476) +zone = ('azz504', 0.0019155869327940485) + +[85706] +centroid = (0.56108179822668691, -1.9361520506876189) +station = ('ktus', 0.0003503976153674945) +zone = ('azz504', 0.0018863534953651186) + +[85707] +centroid = (0.56163314773739192, -1.9353415895961628) +station = ('kdma', 0.00022517451505416167) +zone = ('azz504', 0.0025059265379195439) + +[85708] +centroid = (0.56168051597329105, -1.934983832006089) +station = ('kdma', 0.00036527803396839046) +zone = ('azz504', 0.002809941880358669) + +[85710] +centroid = (0.56224268652535847, -1.9342387684017051) +station = ('kdma', 0.0012089976687031344) +zone = ('azz514', 0.0030002694503102069) + +[85711] +centroid = (0.5622620596800556, -1.9352802238196627) +station = ('kdma', 0.00084781735407146871) +zone = ('azz504', 0.0026464720419708538) + +[85712] +centroid = (0.56291905397038378, -1.935335690383291) +station = ('kdma', 0.0015055687224537766) +zone = ('azz504', 0.0028447700355076194) + +[85713] +centroid = (0.5619012477637908, -1.9375771818350422) +station = ('ktus', 0.0014368142051497692) +zone = ('azz504', 0.00069266497144929553) + +[85714] +centroid = (0.56142695453956137, -1.9364578847324458) +station = ('ktus', 0.00059462531121796502) +zone = ('azz504', 0.0015679852373838383) + +[85715] +centroid = (0.5628119605674814, -1.934455311402) +station = ('kdma', 0.0015619377169880794) +zone = ('azz514', 0.0027748790770242495) + +[85716] +centroid = (0.562720976553575, -1.9359750044882966) +station = ('kdma', 0.0014332263071261198) +zone = ('azz504', 0.0022758577747697662) + +[85718] +centroid = (0.56432264775483765, -1.9358599523840052) +station = ('kdma', 0.0029495783985958595) +zone = ('azz504', 0.0034339211466149493) + +[85719] +centroid = (0.56281145442199842, -1.9364193129559768) +station = ('kdma', 0.0016978609018458244) +zone = ('azz504', 0.0020138222865978593) + +[85723] +centroid = (0.56165100245563981, -1.9367072922825559) +station = ('ktus', 0.00084860984907238028) +zone = ('azz504', 0.0013513253332563893) + +[85724] +centroid = (0.5627086021691784, -1.9363666389191514) +station = ('kdma', 0.0015880656248691103) +zone = ('azz504', 0.0019891265914734647) + +[85726] +centroid = (0.56207853830920851, -1.9363659756940359) +station = ('kdma', 0.0011345386587372742) +zone = ('azz504', 0.0017125771217539987) + +[85730] +centroid = (0.56167390117542604, -1.9328919676311112) +station = ('kdma', 0.0020372933418306991) +zone = ('azz514', 0.0028716924280984945) + +[85735] +centroid = (0.56014787254394482, -1.9434112939256838) +station = ('kryn', 0.002768348206815467) +zone = ('azz504', 0.0045573806615708838) + +[85736] +centroid = (0.55693180669117248, -1.9436758509337011) +station = ('kryn', 0.0049409549870889869) +zone = ('azz515', 0.0037451373328982068) + +[85737] +centroid = (0.5657417575163417, -1.9363827832147327) +station = ('kdma', 0.0044269205628607085) +zone = ('azz504', 0.0044676929106194033) + +[85739] +centroid = (0.5693451119301316, -1.9371351248420972) +station = ('kdma', 0.0080842050107601798) +zone = ('azz506', 0.004992888540323215) + +[85741] +centroid = (0.56435539013160518, -1.9380518415784147) +station = ('kdma', 0.0037614592603802135) +zone = ('azz504', 0.0027845256102316911) + +[85742] +centroid = (0.56537708842243006, -1.9384568626846326) +station = ('kryn', 0.0046896313299172781) +zone = ('azz504', 0.003800470903608594) + +[85743] +centroid = (0.56378101972806627, -1.9404893160518726) +station = ('kryn', 0.0028375959033313546) +zone = ('azz504', 0.0028763784742322296) + +[85745] +centroid = (0.5629368912353393, -1.9387141765762541) +station = ('kryn', 0.0023903577375863796) +zone = ('azz504', 0.0014021537899757389) + +[85746] +centroid = (0.56010420440606001, -1.9380885807591692) +station = ('ktus', 0.0015727528918007209) +zone = ('azz504', 0.001485670732159293) + +[85747] +centroid = (0.56016766457766243, -1.9332204036897516) +station = ('kdma', 0.0021433066841706067) +zone = ('azz514', 0.0043903305453048182) + +[85748] +centroid = (0.56232637506299155, -1.9329889730309371) +station = ('kdma', 0.0021420773078064882) +zone = ('azz514', 0.0023045358630587251) + +[85749] +centroid = (0.56355955489928067, -1.9326646559493317) +station = ('kdma', 0.0030812794450444736) +zone = ('azz514', 0.0011280770258335073) + +[85750] +centroid = (0.56374359986890343, -1.9344530599272649) +station = ('kdma', 0.002431935789422403) +zone = ('azz514', 0.0023750055511441862) + +[85755] +centroid = (0.5666781266600367, -1.9369919031236784) +station = ('kdma', 0.0054592410139938669) +zone = ('azz504', 0.0052179641068560217) + +[85756] +centroid = (0.55988877841648632, -1.9355516399716404) +station = ('ktus', 0.0012084620988189049) +zone = ('azz504', 0.0028774818240086923) + +[85757] +centroid = (0.56074830071321591, -1.9394459407717377) +station = ('kryn', 0.00073625877095770875) +zone = ('azz504', 0.0012761483400108317) + +[85901] +centroid = (0.59888018439761792, -1.9202204409293193) +station = ('ksow', 0.00086562168137530786) +zone = ('azz017', 0.0086219211609063102) + +[85911] +centroid = (0.59643227285523326, -1.9262733474949909) +station = ('ksow', 0.0054636559064268697) +zone = ('azz016', 0.0079457518779300525) + +[85912] +centroid = (0.60100018348013784, -1.9180944379141724) +station = ('ksow', 0.0033348805653570946) +zone = ('azz014', 0.0073205540671443152) + +[85920] +centroid = (0.59100199504691819, -1.9054982919827743) +station = ('ksjn', 0.011809314721395495) +zone = ('azz017', 0.0069221558463154476) + +[85922] +centroid = (0.58412023161947468, -1.9050406142930238) +station = ('ksad', 0.012880543648453693) +zone = ('nmz509', 0.0038282000417647227) + +[85923] +centroid = (0.59908356761535275, -1.9258060530410619) +station = ('ksow', 0.0049414400499520174) +zone = ('azz016', 0.0070928854979810853) + +[85924] +centroid = (0.60330136519230737, -1.9141437280726508) +station = ('ksjn', 0.0042456440879050953) +zone = ('azz014', 0.0036339238147779667) + +[85925] +centroid = (0.59494975528200422, -1.9080461585314208) +station = ('ksjn', 0.0075301493384411274) +zone = ('azz017', 0.00548080123475815) + +[85926] +centroid = (0.58938459842909507, -1.9195005798793343) +station = ('ksow', 0.0086656573143579132) +zone = ('azz017', 0.0055332785312385254) + +[85927] +centroid = (0.59352390854958748, -1.9105127625500944) +station = ('ksjn', 0.0089818613672768485) +zone = ('azz017', 0.0030006451826643963) + +[85928] +centroid = (0.60276272167855693, -1.9295876230247728) +station = ('kinw', 0.0089799930987543714) +zone = ('azz016', 0.0040178565390316364) + +[85929] +centroid = (0.59663527210053269, -1.9188118729564976) +station = ('ksow', 0.0016966117524223898) +zone = ('azz017', 0.0061615507103919736) + +[85930] +centroid = (0.59423790529328591, -1.9149870188073368) +station = ('ksow', 0.0056035119343276433) +zone = ('azz017', 0.00234361675709012) + +[85931] +centroid = (0.60147168417756425, -1.9350220721700002) +station = ('kpan', 0.0076066333660892637) +zone = ('azz016', 0.00088348170022024754) + +[85932] +centroid = (0.59259759250238409, -1.9061351451735347) +station = ('ksjn', 0.010132683635861258) +zone = ('azz017', 0.0063122507020849754) + +[85933] +centroid = (0.59964439426389615, -1.9287504933023465) +station = ('ksow', 0.0074362609988737043) +zone = ('azz016', 0.0046063049650787134) + +[85934] +centroid = (0.59865227930389253, -1.9241510445778582) +station = ('ksow', 0.0035170028789255911) +zone = ('azz016', 0.0085262272628278193) + +[85935] +centroid = (0.59550508414340386, -1.9180590949968197) +station = ('ksow', 0.0029842133163658678) +zone = ('azz017', 0.0049218822032603381) + +[85936] +centroid = (0.60480341299986629, -1.9070992999589214) +station = ('ksjn', 0.0028890836683815951) +zone = ('azz014', 0.0025420589846228024) + +[85937] +centroid = (0.60342493450334855, -1.920980968150876) +station = ('ksow', 0.0054486152191312318) +zone = ('azz013', 0.0059150448731409948) + +[85938] +centroid = (0.59601763498483706, -1.9082819525133652) +station = ('ksjn', 0.0064472722304725338) +zone = ('azz017', 0.0059465290763193249) + +[85939] +centroid = (0.60094180221665872, -1.9213502623673053) +station = ('ksow', 0.0031190518282634035) +zone = ('azz013', 0.0079073669093746562) + +[85940] +centroid = (0.5978042936335185, -1.9143165156685982) +station = ('ksow', 0.0046697135963256337) +zone = ('azz017', 0.0056841780010459426) + +[85941] +centroid = (0.59029463055437748, -1.9193355589985581) +station = ('ksow', 0.0077644974767703129) +zone = ('azz017', 0.0050118215045596654) + +[85942] +centroid = (0.60625242025145698, -1.919071577949194) +station = ('ksow', 0.0082430212448311238) +zone = ('azz013', 0.0054697474718367551) + +[86001] +centroid = (0.61588586977759474, -1.948473411981583) +station = ('kflg', 0.0027216433963660734) +zone = ('azz015', 0.0021066918600814227) + +[86003] +centroid = (0.61417626741538878, -1.9412252690375609) +station = ('kflg', 0.0063922030627951284) +zone = ('azz012', 0.0050721769316149001) + +[86004] +centroid = (0.61751387799726998, -1.9438336286980813) +station = ('kflg', 0.0060114070687409616) +zone = ('azz012', 0.0031470483556163653) + +[86011] +centroid = (0.61400791295574131, -1.9487479871795068) +station = ('kflg', 0.00083228692844751386) +zone = ('azz015', 0.0018396635629902743) + +[86015] +centroid = (0.61489742000902026, -1.9519517659143453) +station = ('kflg', 0.0029870598044223666) +zone = ('azz015', 0.00099396467717928136) + +[86016] +centroid = (0.62399739219599348, -1.9485176735314138) +station = ('kgcn', 0.0079730724187681932) +zone = ('azz012', 0.0080214108974298991) + +[86017] +centroid = (0.6089333332489828, -1.948243604478973) +station = ('ksez', 0.0023532439507214301) +zone = ('azz038', 0.0036491334875130704) + +[86018] +centroid = (0.61415856977677352, -1.9533049196834165) +station = ('kflg', 0.0036883010870789267) +zone = ('azz015', 0.0022175791582069383) + +[86020] +centroid = (0.62819269247888987, -1.9460038758097664) +station = ('kgcn', 0.0092424876337399205) +zone = ('azz012', 0.0099894613126666112) + +[86021] +centroid = (0.64528800051595658, -1.9726464839210922) +station = ('ksgu', 0.0082522325509277721) +zone = ('azz001', 0.0079050849368980831) + +[86022] +centroid = (0.64326406435546635, -1.9693770982596714) +station = ('ksgu', 0.011353368952272172) +zone = ('azz001', 0.0083161682631348044) + +[86023] +centroid = (0.62889677575243685, -1.9551634858972802) +station = ('kgcn', 0.0023110644507183787) +zone = ('azz006', 0.004932379556827785) + +[86024] +centroid = (0.60479041029693881, -1.943305736412523) +station = ('kpan', 0.0070177199928156157) +zone = ('azz038', 0.0089260786557138483) + +[86025] +centroid = (0.60965713874307748, -1.9216914218761929) +station = ('kinw', 0.0089307820150137003) +zone = ('azz013', 0.0033407947284886984) + +[86028] +centroid = (0.61215262796087144, -1.9157527471100642) +station = ('ksjn', 0.011153110403700924) +zone = ('azz040', 0.0093785407264292478) + +[86029] +centroid = (0.61123196678044434, -1.919733563881183) +station = ('kinw', 0.010350238616167434) +zone = ('azz013', 0.0055255730506720028) + +[86030] +centroid = (0.62776859492394776, -1.9326113186873906) +station = ('kinw', 0.016322758941309315) +zone = ('azz009', 0.0083321573997628649) + +[86031] +centroid = (0.61761262872634792, -1.9207644775104586) +station = ('kinw', 0.011310710396981579) +zone = ('azz040', 0.0025783153737278185) + +[86032] +centroid = (0.61225469481552808, -1.9248175858191949) +station = ('kinw', 0.0062351341992996964) +zone = ('azz013', 0.0041328606650774492) + +[86033] +centroid = (0.64011302947062332, -1.9238454199725414) +station = ('kpga', 0.017655501851971591) +zone = ('azz039', 0.0056024156770316576) + +[86034] +centroid = (0.6247267129305244, -1.9220589882166628) +station = ('krqe', 0.015217945395859632) +zone = ('azz040', 0.0053887642419138361) + +[86035] +centroid = (0.61883647105113881, -1.9363412967384128) +station = ('kinw', 0.0080697669062874938) +zone = ('azz012', 0.0034814818539509202) + +[86036] +centroid = (0.64120335410763662, -1.951681903105402) +station = ('kpga', 0.0062258558849724111) +zone = ('azz005', 0.0022746137602959039) + +[86038] +centroid = (0.61058280901845763, -1.9448258483778402) +station = ('kflg', 0.004267526362530312) +zone = ('azz015', 0.0064632119518808363) + +[86039] +centroid = (0.62929247680044897, -1.929028925677917) +station = ('kinw', 0.018051369986861732) +zone = ('azz039', 0.0065624272091461336) + +[86040] +centroid = (0.640631741324316, -1.9447768569857367) +station = ('kpga', 0.0039889292947055763) +zone = ('azz005', 0.0035931995831747793) + +[86042] +centroid = (0.62590575265341664, -1.9265668769685913) +station = ('kinw', 0.01521204028692482) +zone = ('azz040', 0.0071079256234688583) + +[86043] +centroid = (0.62499791964299178, -1.9292010325954563) +station = ('kinw', 0.013794826410117119) +zone = ('azz040', 0.0075074328796834343) + +[86044] +centroid = (0.6404170134664432, -1.9340041263370671) +station = ('kpga', 0.0098726670881954855) +zone = ('azz009', 0.0055186010918955621) + +[86045] +centroid = (0.63000490274782062, -1.939341482816006) +station = ('kpga', 0.01533612223189834) +zone = ('azz009', 0.0057495400434213126) + +[86046] +centroid = (0.61812390547742713, -1.9569424127373753) +station = ('kcmr', 0.0022901745986630587) +zone = ('azz015', 0.0060182969264381487) + +[86047] +centroid = (0.61284506988830767, -1.9315776648911895) +station = ('kinw', 0.0015412501871456472) +zone = ('azz013', 0.0069562882267990185) + +[86052] +centroid = (0.63087669470919172, -1.9553008433094121) +station = ('kgcn', 0.0038229408394285184) +zone = ('azz006', 0.0041090665011117257) + +[86053] +centroid = (0.641147608291328, -1.938278804194344) +station = ('kpga', 0.0065109376585541926) +zone = ('azz009', 0.0058867048041072014) + +[86054] +centroid = (0.6409658322497328, -1.9305465941822813) +station = ('kpga', 0.012258160905175036) +zone = ('azz009', 0.0075177248163866223) + +[86301] +centroid = (0.60373293275644802, -1.9622093102744111) +station = ('kprc', 0.0010329847130454688) +zone = ('azz037', 0.0030741897526872881) + +[86303] +centroid = (0.60183207721480847, -1.9626181361983983) +station = ('kprc', 0.0029628774690634027) +zone = ('azz037', 0.0012844099907598119) + +[86305] +centroid = (0.60849598864501808, -1.9706888353655929) +station = ('kprc', 0.0080288369375120777) +zone = ('azz008', 0.003710158431899745) + +[86313] +centroid = (0.60307340773870444, -1.9626646317696714) +station = ('kprc', 0.0017597205120286122) +zone = ('azz037', 0.0023206843938986853) + +[86314] +centroid = (0.60433728791653607, -1.9601128556835008) +station = ('kprc', 0.0016408499593453035) +zone = ('azz037', 0.0045258993558044847) + +[86315] +centroid = (0.60568885343598799, -1.9594847814988778) +station = ('kprc', 0.0022995940187581407) +zone = ('azz037', 0.0059054819594084335) + +[86320] +centroid = (0.6169063288846508, -1.9660345833025921) +station = ('kcmr', 0.0063946720602162006) +zone = ('azz007', 0.0068872470286646401) + +[86321] +centroid = (0.60201346928396826, -1.9740216811986162) +station = ('kprc', 0.010239405732169875) +zone = ('azz037', 0.0085676677229359274) + +[86322] +centroid = (0.60214346140665675, -1.9512983146423986) +station = ('ksez', 0.0061091424994136013) +zone = ('azz038', 0.0072683195500557957) + +[86323] +centroid = (0.60697709841017744, -1.9618516399507999) +station = ('kprc', 0.0022259596806236282) +zone = ('azz008', 0.00372132108002046) + +[86324] +centroid = (0.60837711426966479, -1.9568706098919484) +station = ('ksez', 0.004829738414211541) +zone = ('azz038', 0.0035756141062563526) + +[86325] +centroid = (0.60623440845357635, -1.9529877409984515) +station = ('ksez', 0.0025981857068031835) +zone = ('azz038', 0.0031008760187124368) + +[86326] +centroid = (0.60562979149410057, -1.9551812533490656) +station = ('ksez', 0.0043265326536946029) +zone = ('azz038', 0.0042318505657275131) + +[86327] +centroid = (0.60338334330727361, -1.9566018117338486) +station = ('kprc', 0.0046824832172876283) +zone = ('azz038', 0.0067635208876823949) + +[86329] +centroid = (0.60164342457596043, -1.9586957355973438) +station = ('kprc', 0.0041570569334958216) +zone = ('azz037', 0.0042018852513810937) + +[86331] +centroid = (0.60609773171985259, -1.9572798023350784) +station = ('kprc', 0.004138258944820266) +zone = ('azz038', 0.004974716843308081) + +[86332] +centroid = (0.59900635424924453, -1.9658155095748817) +station = ('kprc', 0.0065379632097131582) +zone = ('azz037', 0.0025822620401370847) + +[86333] +centroid = (0.59904489111912862, -1.9561986057700529) +station = ('kprc', 0.0074708484987403775) +zone = ('azz037', 0.0064811624627466478) + +[86334] +centroid = (0.60997585331778403, -1.9642731272083094) +station = ('kprc', 0.0055317653918260674) +zone = ('azz008', 0.0025304997368881836) + +[86335] +centroid = (0.60553693997789437, -1.9490685168966357) +station = ('ksez', 0.0031352399800273338) +zone = ('azz038', 0.0048036677799807156) + +[86336] +centroid = (0.60929245219587314, -1.9524518725582116) +station = ('ksez', 0.0015925276242320324) +zone = ('azz038', 0.00017954385649014711) + +[86337] +centroid = (0.61714500265986094, -1.9727680461034938) +station = ('kigm', 0.012990378973832723) +zone = ('azz007', 0.0093838657690705259) + +[86338] +centroid = (0.60356541605484149, -1.9679256824537132) +station = ('kprc', 0.0049873314939867007) +zone = ('azz037', 0.0043628674213548289) + +[86343] +centroid = (0.59650088174812921, -1.9600045056435369) +station = ('kprc', 0.008424912405914399) +zone = ('azz037', 0.0053784894623005808) + +[86351] +centroid = (0.6069984088803444, -1.9510175086190451) +station = ('ksez', 0.0012490830695888451) +zone = ('azz038', 0.0026911629022038329) + +[86401] +centroid = (0.61316416843544974, -1.9845079858637411) +station = ('kigm', 0.0038688602661323523) +zone = ('azz003', 0.0022484480012053437) + +[86403] +centroid = (0.60179388941077483, -1.9957581338760013) +station = ('keed', 0.0063104047378564048) +zone = ('caz527', 0.0022187203064320976) + +[86404] +centroid = (0.60370958025105625, -1.9950483782823851) +station = ('keed', 0.0053992768398492376) +zone = ('azz002', 0.0016172341432394283) + +[86406] +centroid = (0.60079880739104286, -1.9915928183496543) +station = ('keed', 0.00943113868937542) +zone = ('azz002', 0.0055972942045456669) + +[86409] +centroid = (0.61890830880315084, -1.9900463519126321) +station = ('kigm', 0.0038867619924328749) +zone = ('azz003', 0.0054267021948009231) + +[86411] +centroid = (0.62100280862529922, -1.9858906880570484) +station = ('kigm', 0.0061566989290240525) +zone = ('azz003', 0.0069890884640459632) + +[86413] +centroid = (0.61453988931174919, -1.9957150242434769) +station = ('kifp', 0.0031816890185401539) +zone = ('azz003', 0.0071185338257655582) + +[86426] +centroid = (0.61099824974030981, -1.9996165681599702) +station = ('kifp', 0.0026198923233199073) +zone = ('azz002', 0.006589804550951945) + +[86429] +centroid = (0.61372108554646865, -1.9981389200553543) +station = ('kifp', 0.0010686394085020394) +zone = ('azz002', 0.0087261449745427693) + +[86431] +centroid = (0.61811825061065062, -1.9935120173017322) +station = ('kigm', 0.0049990264951295937) +zone = ('azz003', 0.0066633638415578332) + +[86432] +centroid = (0.63471750116771553, -1.9800162065008087) +station = ('ksgu', 0.012691558808880871) +zone = ('azz001', 0.0042525270689794618) + +[86433] +centroid = (0.60942645857584132, -1.9957632127841247) +station = ('keed', 0.004653813517550235) +zone = ('azz002', 0.0042126002231395142) + +[86434] +centroid = (0.62267502603492753, -1.9830527128801358) +station = ('kigm', 0.0086729250654243428) +zone = ('azz003', 0.0091882980736944734) + +[86435] +centroid = (0.62908947755514966, -1.9705446188095006) +station = ('kgcn', 0.01077143598673547) +zone = ('azz007', 0.0073047745913641556) + +[86436] +centroid = (0.60662560655211828, -1.996395004520054) +station = ('keed', 0.0033258150289380093) +zone = ('azz002', 0.001502304976123742) + +[86437] +centroid = (0.61747741806919587, -1.9829398598907018) +station = ('kigm', 0.005072413997886183) +zone = ('azz003', 0.0047627853694249076) + +[86438] +centroid = (0.6029924942745819, -1.9862793030682975) +station = ('kigm', 0.012372298593813291) +zone = ('azz002', 0.0081207004456054655) + +[86440] +centroid = (0.60906201637473245, -1.9988438585402348) +station = ('keed', 0.002619545129842363) +zone = ('azz002', 0.0046023120027720958) + +[86441] +centroid = (0.62083654856075421, -1.9961737665840713) +station = ('kifp', 0.0076977690802134359) +zone = ('azz036', 0.0040801141884901472) + +[86442] +centroid = (0.61242928010060504, -1.9994643405426111) +station = ('kifp', 0.0011850259269705992) +zone = ('azz002', 0.0078259957743240707) + +[86443] +centroid = (0.62781755140946627, -1.9973598225305564) +station = ('kbvu', 0.0059547688648815952) +zone = ('nvz021', 0.0022260041333341083) + +[86444] +centroid = (0.62652148736022772, -1.9904993521199872) +station = ('kigm', 0.011408048275729004) +zone = ('azz036', 0.004198937744403124) + +[86445] +centroid = (0.62436956620568884, -1.9984372491843976) +station = ('kbvu', 0.0058363214123057314) +zone = ('azz036', 0.0026292529186472953) + +[86502] +centroid = (0.61466916584944442, -1.912738825291258) +station = ('krqe', 0.010613290969880621) +zone = ('azz040', 0.009646321643381665) + +[86503] +centroid = (0.63099565635100774, -1.9143707779550427) +station = ('krqe', 0.012397457472308681) +zone = ('azz010', 0.0067613507059731091) + +[86504] +centroid = (0.62713640176229035, -1.9047731251318634) +station = ('krqe', 0.005021871463731631) +zone = ('azz011', 0.0017788784066260835) + +[86505] +centroid = (0.62181014557739422, -1.9148417201471084) +station = ('krqe', 0.0091673490912067297) +zone = ('azz040', 0.0070979219177154359) + +[86506] +centroid = (0.61711444194465859, -1.9062556077985071) +station = ('krqe', 0.0055438809622223003) +zone = ('nmz505', 0.0081686574718473799) + +[86507] +centroid = (0.63549555149496206, -1.9070460325101504) +station = ('krqe', 0.013579391982337386) +zone = ('azz010', 0.0065885109901504457) + +[86508] +centroid = (0.61662314921351469, -1.90407897278176) +station = ('kgup', 0.0055100679513988525) +zone = ('nmz505', 0.006629123948380891) + +[86510] +centroid = (0.63282120093542371, -1.9237084290795525) +station = ('krqe', 0.019449319191450688) +zone = ('azz039', 0.0017228938379300876) + +[86511] +centroid = (0.62046631186652867, -1.9050908099623112) +station = ('krqe', 0.0021364065622910622) +zone = ('azz011', 0.0056873561779877202) + +[86512] +centroid = (0.6125245925310564, -1.9066529145494313) +station = ('kgup', 0.0098507967968506655) +zone = ('nmz505', 0.0062149791002627441) + +[86514] +centroid = (0.64368191363168636, -1.9082187017812728) +station = ('kcez', 0.012186890646191577) +zone = ('azz010', 0.007909226348866186) + +[86515] +centroid = (0.62272038714218692, -1.9016099776620115) +station = ('krqe', 0.0016741242748150673) +zone = ('azz011', 0.0051712973047201346) + +[86520] +centroid = (0.63023687445870313, -1.9187383945949885) +station = ('krqe', 0.014677487403076759) +zone = ('azz039', 0.0060847963699395208) + +[86535] +centroid = (0.64217691621769168, -1.9173353942224802) +station = ('k4bl', 0.015340119086394688) +zone = ('azz010', 0.0048900595420755359) + +[86538] +centroid = (0.63543303380115568, -1.9128056539483167) +station = ('krqe', 0.01518575527938041) +zone = ('azz010', 0.0027930858185416913) + +[86540] +centroid = (0.62729641354811316, -1.9101577625802386) +station = ('krqe', 0.0073758574896798093) +zone = ('azz011', 0.003219203806173724) + +[86544] +centroid = (0.63923994596560574, -1.9050402652271736) +station = ('kfmn', 0.013022025460576967) +zone = ('azz010', 0.0079338275298179075) + +[86545] +centroid = (0.64073502990944908, -1.9129963835289745) +station = ('k4bl', 0.015919108591006516) +zone = ('azz010', 0.003298145855380213) + +[86547] +centroid = (0.63726383182662016, -1.9110322423486579) +station = ('krqe', 0.016216260888643749) +zone = ('azz010', 0.0030228011962212089) + +[86556] +centroid = (0.63335141450888699, -1.9068681834593721) +station = ('krqe', 0.011456370483390713) +zone = ('nmz502', 0.0063615891074385268) + +[87001] +centroid = (0.61743844486699884, -1.8559321804099043) +station = ('ksaf', 0.0055275569364766439) +zone = ('nmz518', 0.0041641072647228515) + +[87002] +centroid = (0.60399778647043811, -1.8615513552031626) +station = ('ke80', 0.0025871707807282826) +zone = ('nmz519', 0.007014836198972663) + +[87004] +centroid = (0.61729492644260742, -1.8604740332690766) +station = ('kaeg', 0.0048103996917971447) +zone = ('nmz519', 0.0067247701480566335) + +[87005] +centroid = (0.61554094035752316, -1.8845557895821214) +station = ('kgnt', 0.0020808692073819648) +zone = ('nmz506', 0.0035465450446926805) + +[87006] +centroid = (0.60195931171727879, -1.8647740882136776) +station = ('ke80', 0.0027832462342801323) +zone = ('nmz519', 0.0090588951191074261) + +[87007] +centroid = (0.61128577528128347, -1.8763880675618085) +station = ('kgnt', 0.0061114086133803166) +zone = ('nmz507', 0.0024290216398719531) + +[87008] +centroid = (0.61295828939688446, -1.8571527240624091) +station = ('kabq', 0.0031436286263405657) +zone = ('nmz521', 0.003241534746473913) + +[87010] +centroid = (0.61799117318781283, -1.852314915721976) +station = ('ksaf', 0.0036964230798063385) +zone = ('nmz518', 0.0021008395665847264) + +[87011] +centroid = (0.59452316190623178, -1.8491225514404457) +station = ('k4cr', 0.0038626471173808636) +zone = ('nmz524', 0.0033701493919676959) + +[87012] +centroid = (0.63019434078483205, -1.8616552372002413) +station = ('klam', 0.0068587831004729141) +zone = ('nmz511', 0.0036942756510029615) + +[87013] +centroid = (0.62679601019827391, -1.8741380589033076) +station = ('k4sl', 0.0034101055803981714) +zone = ('nmz504', 0.0027737183643803068) + +[87014] +centroid = (0.61489368500442099, -1.874316920245052) +station = ('kgnt', 0.0073529856200845777) +zone = ('nmz507', 0.00462191149966524) + +[87015] +centroid = (0.6122036613881997, -1.8532357863419131) +station = ('k0e0', 0.003107631900382195) +zone = ('nmz521', 0.0028686750745953791) + +[87016] +centroid = (0.60695378081137075, -1.8487233073740519) +station = ('k0e0', 0.0037247056719503452) +zone = ('nmz522', 0.0010337856229638304) + +[87017] +centroid = (0.63385194003177403, -1.8634093803649583) +station = ('klam', 0.010356059951428317) +zone = ('nmz511', 0.0076045131752007621) + +[87018] +centroid = (0.63120799310780529, -1.8773377535676963) +station = ('k4sl', 0.0083389299884367284) +zone = ('nmz504', 0.0025009633443469487) + +[87020] +centroid = (0.60850927060062576, -1.884052628612064) +station = ('kgnt', 0.0053098578541208273) +zone = ('nmz506', 0.0040112824231721455) + +[87021] +centroid = (0.61423096603414618, -1.8828417191770304) +station = ('kgnt', 0.00054721727655949049) +zone = ('nmz506', 0.0032826126198516217) + +[87022] +centroid = (0.60904121205004857, -1.8623917835978754) +station = ('kabq', 0.0028527865188530455) +zone = ('nmz519', 0.0019382939034436307) + +[87023] +centroid = (0.60385662424053688, -1.8633062663127504) +station = ('ke80', 0.0013591058120735583) +zone = ('nmz519', 0.0070521596259983345) + +[87024] +centroid = (0.62260868607005915, -1.8626720485691608) +station = ('klam', 0.0073741473949223329) +zone = ('nmz511', 0.0043859504994064021) + +[87025] +centroid = (0.62554942623332943, -1.8610167433999842) +station = ('klam', 0.0051253640139468431) +zone = ('nmz511', 0.0011540569215152973) + +[87026] +centroid = (0.61026008018647138, -1.8715791618737887) +station = ('kaeg', 0.0070070645056070305) +zone = ('nmz507', 0.0017198749689874924) + +[87027] +centroid = (0.63052239287103695, -1.8665943968103376) +station = ('k4sl', 0.0065940362015218775) +zone = ('nmz511', 0.0062914480472570948) + +[87028] +centroid = (0.60003739005156775, -1.8634370787401875) +station = ('ke80', 0.0047907082311358642) +zone = ('nmz520', 0.0079964109839843443) + +[87029] +centroid = (0.63524113484989886, -1.8674759800688125) +station = ('ke33', 0.010534630238363747) +zone = ('nmz504', 0.0084690734513870082) + +[87031] +centroid = (0.605724737405409, -1.8678607204491222) +station = ('ke80', 0.0028851308632144731) +zone = ('nmz519', 0.0065185686251200865) + +[87032] +centroid = (0.60826954962786439, -1.8502489171265128) +station = ('k0e0', 0.0022525952002218348) +zone = ('nmz522', 0.00096220263500059909) + +[87034] +centroid = (0.60696381645456987, -1.8773557653655768) +station = ('kgnt', 0.0083303627323060379) +zone = ('nmz507', 0.0044997873394521815) + +[87035] +centroid = (0.60965755762209783, -1.8494477062800923) +station = ('k0e0', 0.00098999787843137522) +zone = ('nmz522', 0.0023297419375369944) + +[87036] +centroid = (0.60079264637878316, -1.8545079219271068) +station = ('ke80', 0.0091753294620791504) +zone = ('nmz524', 0.005228101167836118) + +[87037] +centroid = (0.63123005406955057, -1.8808092658097906) +station = ('k4sl', 0.010386378555005031) +zone = ('nmz504', 0.0049164670835870209) + +[87038] +centroid = (0.61239461786166038, -1.8746991124446537) +station = ('kgnt', 0.0070964418709314574) +zone = ('nmz507', 0.0022541779209310224) + +[87040] +centroid = (0.61267819895852449, -1.8742115023582315) +station = ('kgnt', 0.0074402922994164511) +zone = ('nmz507', 0.0024166197455512363) + +[87041] +centroid = (0.62284983821280726, -1.8559014800683618) +station = ('klam', 0.0034972198884939982) +zone = ('nmz518', 0.0042312148176763551) + +[87042] +centroid = (0.60786339405763268, -1.8620319490659918) +station = ('ke80', 0.0037554942464208549) +zone = ('nmz519', 0.0031521842772937445) + +[87043] +centroid = (0.61567276507592616, -1.8581146273730607) +station = ('kabq', 0.0046613077155948221) +zone = ('nmz521', 0.0060505214831453203) + +[87044] +centroid = (0.62248111995503086, -1.8612936573391057) +station = ('klam', 0.0064952288066192042) +zone = ('nmz511', 0.0041917919716035479) + +[87045] +centroid = (0.61700560321250419, -1.8865022854837006) +station = ('kgnt', 0.0042033705284438873) +zone = ('nmz506', 0.0048304194859940782) + +[87046] +centroid = (0.63274342906395487, -1.8659215898369863) +station = ('k4sl', 0.0088092650346931062) +zone = ('nmz511', 0.0075321094217663219) + +[87047] +centroid = (0.61524322209371785, -1.8550889245818032) +station = ('kabq', 0.0058431120106073502) +zone = ('nmz521', 0.005240398784425105) + +[87048] +centroid = (0.61504675037982093, -1.8609935828808102) +station = ('kaeg', 0.0029088884505546397) +zone = ('nmz519', 0.0044666879849631245) + +[87049] +centroid = (0.6128485430935191, -1.8779191925547056) +station = ('kgnt', 0.0044246447444129672) +zone = ('nmz507', 0.0043069112948800484) + +[87051] +centroid = (0.61148147905030947, -1.8823873925194436) +station = ('kgnt', 0.0023894418928171669) +zone = ('nmz506', 0.0030328607643937762) + +[87052] +centroid = (0.61948025319902944, -1.8555039987845128) +station = ('ksaf', 0.0038995047587565817) +zone = ('nmz518', 0.0029339834753638514) + +[87053] +centroid = (0.62190118195117827, -1.8678447157798814) +station = ('k4sl', 0.003734652098658065) +zone = ('nmz511', 0.0076082758329829208) + +[87056] +centroid = (0.6140602030201312, -1.8478835945643324) +station = ('k0e0', 0.0039623535582702712) +zone = ('nmz518', 0.0068768159174921418) + +[87059] +centroid = (0.61080861971708056, -1.8552960951640149) +station = ('kabq', 0.0043265461295120553) +zone = ('nmz521', 0.0008121198637301314) + +[87061] +centroid = (0.60617279833098103, -1.8566748354599205) +station = ('kabq', 0.0061458925998241617) +zone = ('nmz521', 0.0039603224269401591) + +[87062] +centroid = (0.60109193543891515, -1.8615475503853933) +station = ('ke80', 0.0044116337164487067) +zone = ('nmz524', 0.0089177347629008571) + +[87063] +centroid = (0.60199263005269932, -1.8475481771886841) +station = ('k4cr', 0.0072781659389049274) +zone = ('nmz522', 0.0056964284459548918) + +[87064] +centroid = (0.63144708576203612, -1.8601890210022258) +station = ('klam', 0.0068337368058377645) +zone = ('nmz511', 0.004831202422456487) + +[87068] +centroid = (0.60845537483332413, -1.8602253587572524) +station = ('kabq', 0.0030014372250997709) +zone = ('nmz519', 0.0033653081076649282) + +[87070] +centroid = (0.61124633084018831, -1.8461743238146844) +station = ('kcqc', 0.0016364584237651312) +zone = ('nmz523', 0.0040925516506323048) + +[87072] +centroid = (0.62145991035639658, -1.8569750669978484) +station = ('ksaf', 0.0044514953267216278) +zone = ('nmz518', 0.0042976777720792189) + +[87083] +centroid = (0.62218324461159302, -1.856031297658125) +station = ('ksaf', 0.0037217338682437209) +zone = ('nmz518', 0.0039162022801014114) + +[87102] +centroid = (0.6122851857175603, -1.8613338697250716) +station = ('kabq', 0.0010701881659371355) +zone = ('nmz519', 0.0019631437454150631) + +[87104] +centroid = (0.61266612128010067, -1.8618395439692521) +station = ('kabq', 0.0016281567096122016) +zone = ('nmz519', 0.0020162173927907282) + +[87105] +centroid = (0.61046740784831577, -1.8606633142264555) +station = ('kabq', 0.00098651972981133175) +zone = ('nmz519', 0.0019953550455708625) + +[87106] +centroid = (0.61187613290077048, -1.8608920745315143) +station = ('kabq', 0.00052577911869233459) +zone = ('nmz519', 0.0020085766609475339) + +[87107] +centroid = (0.6132703019072635, -1.8612634980496312) +station = ('kabq', 0.0019218609665179747) +zone = ('nmz519', 0.0027759134044291812) + +[87108] +centroid = (0.61213021793327571, -1.8601433282824087) +station = ('kabq', 0.00074989619781240437) +zone = ('nmz519', 0.0026689615123121849) + +[87109] +centroid = (0.61353353246504927, -1.8600940052777475) +station = ('kabq', 0.0021155636801541075) +zone = ('nmz519', 0.0035661939881153314) + +[87110] +centroid = (0.61275357972891809, -1.8601395758245169) +station = ('kabq', 0.0013433376569614321) +zone = ('nmz519', 0.0030085017855801862) + +[87111] +centroid = (0.61337699388443789, -1.8585567890857608) +station = ('kabq', 0.0025115735210985354) +zone = ('nmz521', 0.0041933355274901933) + +[87112] +centroid = (0.61262119650515434, -1.8590597057097229) +station = ('kabq', 0.0016760621456876786) +zone = ('nmz519', 0.0036821966929047436) + +[87113] +centroid = (0.61402456339680545, -1.8604097004328481) +station = ('kabq', 0.0025791559728692791) +zone = ('nmz519', 0.0037893883815466505) + +[87114] +centroid = (0.6142448937615772, -1.8620161363829688) +station = ('kaeg', 0.0017759374359556188) +zone = ('nmz519', 0.0034428741537903406) + +[87116] +centroid = (0.61196631406322111, -1.8595180815311743) +station = ('kabq', 0.00097148617472612184) +zone = ('nmz519', 0.0030724054453844496) + +[87117] +centroid = (0.61101345155809461, -1.8598902904474546) +station = ('kabq', 0.0006743514669535403) +zone = ('nmz519', 0.0025817678843332321) + +[87120] +centroid = (0.61321797693628877, -1.8632251957689954) +station = ('kaeg', 0.00059881662023871082) +zone = ('nmz519', 0.0023175854689808117) + +[87121] +centroid = (0.61242790129049596, -1.8657128135518628) +station = ('kaeg', 0.0017542025669534122) +zone = ('nmz519', 0.0026661118164873075) + +[87122] +centroid = (0.61419897414895719, -1.8588040149743059) +station = ('kabq', 0.003089655916595171) +zone = ('nmz519', 0.0047808683055169266) + +[87123] +centroid = (0.6120448015196831, -1.8582650747545826) +station = ('kabq', 0.0019411302255746467) +zone = ('nmz521', 0.0030435066431637185) + +[87124] +centroid = (0.61555141233303512, -1.8637268383026036) +station = ('kaeg', 0.0021614812691620757) +zone = ('nmz519', 0.004679911587403972) + +[87144] +centroid = (0.61654104892550099, -1.8623613625090132) +station = ('kaeg', 0.0033943179204381818) +zone = ('nmz519', 0.0056628692665948166) + +[87301] +centroid = (0.62020245299021215, -1.8978352319156755) +station = ('kgup', 0.00071956930754112829) +zone = ('nmz505', 0.008946366726136367) + +[87305] +centroid = (0.6175410702270161, -1.8989891563506316) +station = ('kgup', 0.0023601791999825761) +zone = ('nmz505', 0.0062175142797515999) + +[87310] +centroid = (0.62491712835191704, -1.8943739473029979) +station = ('kgup', 0.0061063273420902007) +zone = ('nmz502', 0.006832209492010171) + +[87311] +centroid = (0.62145050303172822, -1.8939580702488328) +station = ('kgup', 0.0041092161765770375) +zone = ('nmz502', 0.0095111237104794945) + +[87312] +centroid = (0.61824101707023593, -1.8905931801707427) +station = ('kgnt', 0.0075009426362225434) +zone = ('nmz506', 0.0071212198513101307) + +[87313] +centroid = (0.62504516570584323, -1.8862907515783591) +station = ('kgnt', 0.011546746738683522) +zone = ('nmz504', 0.010047804558786831) + +[87315] +centroid = (0.60679509547577959, -1.8969096663600504) +station = ('ksjn', 0.01093766800609731) +zone = ('nmz505', 0.0049057371175577442) + +[87316] +centroid = (0.61723017472735831, -1.8915871102731685) +station = ('kgup', 0.0063194503152591685) +zone = ('nmz506', 0.0068033201533418798) + +[87317] +centroid = (0.62111957115225769, -1.8982381062669134) +station = ('kgup', 0.0012766960579973618) +zone = ('nmz502', 0.0081740256244757677) + +[87319] +centroid = (0.61910753813726604, -1.9015203200983364) +station = ('kgup', 0.0024796816384308456) +zone = ('nmz505', 0.0080083958803194733) + +[87320] +centroid = (0.62496496782671418, -1.9002463868240131) +station = ('krqe', 0.0038575611311383361) +zone = ('nmz502', 0.0040422730380884949) + +[87321] +centroid = (0.61101877481231326, -1.8912589883737936) +station = ('kgnt', 0.0071391792960765329) +zone = ('nmz506', 0.0044718563338171091) + +[87322] +centroid = (0.62004601912935597, -1.8963550705369367) +station = ('kgup', 0.0018565872839770346) +zone = ('nmz505', 0.0090245793314728522) + +[87323] +centroid = (0.61885385453048869, -1.8883333627618457) +station = ('kgnt', 0.0065787823698815681) +zone = ('nmz506', 0.0069300438526213315) + +[87325] +centroid = (0.62821197836712439, -1.8956764865237612) +station = ('kgup', 0.0086666055320654359) +zone = ('nmz502', 0.0045250757068417014) + +[87326] +centroid = (0.61543569700362788, -1.8992893704352671) +station = ('kgup', 0.0044797065479809765) +zone = ('nmz505', 0.0041103027057532325) + +[87327] +centroid = (0.61095735667593554, -1.8985993196089062) +station = ('kgup', 0.0089254453107314793) +zone = ('nmz505', 0.00061653249558788913) + +[87328] +centroid = (0.62794747371898463, -1.9020821939444308) +station = ('krqe', 0.0058634781126138385) +zone = ('nmz502', 0.0012169865025258503) + +[87347] +centroid = (0.61832203525411344, -1.8927477018658672) +station = ('kgup', 0.0050363071364054593) +zone = ('nmz506', 0.0082476641961406957) + +[87357] +centroid = (0.60928859501822619, -1.8904514070756033) +station = ('kgnt', 0.0074344311748121006) +zone = ('nmz506', 0.0046693996364317869) + +[87364] +centroid = (0.63078677534612893, -1.8971439069989606) +station = ('krqe', 0.010034063059268248) +zone = ('nmz502', 0.003765280187106191) + +[87375] +centroid = (0.62265580995986303, -1.8981644359191867) +station = ('kgup', 0.0027984666871097869) +zone = ('nmz502', 0.0067418322082487157) + +[87401] +centroid = (0.6412395696896156, -1.8880743384475571) +station = ('kfmn', 0.00078264374109609169) +zone = ('nmz501', 0.0067698152782630829) + +[87402] +centroid = (0.64195431692489224, -1.8874777500026403) +station = ('kfmn', 0.0013565624812048875) +zone = ('coz022', 0.0074169301830798876) + +[87410] +centroid = (0.64347282318729737, -1.8829014792506187) +station = ('kdro', 0.0051744007919993333) +zone = ('coz022', 0.0048965085255658529) + +[87412] +centroid = (0.64049859015568134, -1.8758018638259413) +station = ('kdro', 0.0088753785305857019) +zone = ('nmz503', 0.0023282306813617714) + +[87413] +centroid = (0.63557039121328762, -1.8845806954305475) +station = ('kfmn', 0.0068437443205737209) +zone = ('nmz501', 0.0061464716826304007) + +[87415] +centroid = (0.64258328122743347, -1.8865975804608595) +station = ('kfmn', 0.0022735800256288474) +zone = ('coz022', 0.0065261437159463863) + +[87416] +centroid = (0.64057407564583013, -1.8922999900061457) +station = ('kfmn', 0.0027520376371634654) +zone = ('nmz501', 0.0052328101694207752) + +[87417] +centroid = (0.64129990572185702, -1.8909819871682096) +station = ('kfmn', 0.0015694428505915996) +zone = ('nmz501', 0.0060395891414710334) + +[87418] +centroid = (0.64491113157057345, -1.8875773384897592) +station = ('kfmn', 0.0036899852504484586) +zone = ('coz022', 0.005136836441810155) + +[87419] +centroid = (0.64341079418568148, -1.8760961437911199) +station = ('kdro', 0.0062772350391030905) +zone = ('nmz503', 0.0006477436533052119) + +[87420] +centroid = (0.64319919046716978, -1.9006569580772523) +station = ('kcez', 0.0086442917580489397) +zone = ('coz021', 0.0095256276739753998) + +[87421] +centroid = (0.6416925349903857, -1.8939099689746477) +station = ('kfmn', 0.0039215579837709623) +zone = ('nmz501', 0.0064953925081799495) + +[87455] +centroid = (0.63408565707190856, -1.8963783357758659) +station = ('kfmn', 0.0094073799238511453) +zone = ('nmz501', 0.0035818284175712844) + +[87461] +centroid = (0.63406895427096699, -1.9013893854978516) +station = ('krqe', 0.011989895772200394) +zone = ('nmz502', 0.0051383570023319581) + +[87499] +centroid = (0.63433160887009954, -1.8887225711850404) +station = ('kfmn', 0.0070811444399731137) +zone = ('nmz501', 0.0029861545935806039) + +[87501] +centroid = (0.62385263458783313, -1.8475498701580586) +station = ('ksaf', 0.0039066327500386026) +zone = ('nmz514', 0.0042706360940498291) + +[87505] +centroid = (0.62163069082370426, -1.8478651464341389) +station = ('ksaf', 0.0029576875285367765) +zone = ('nmz518', 0.0036870790006293765) + +[87506] +centroid = (0.62505675469207644, -1.8497776956817666) +station = ('ksaf', 0.0037039165341544991) +zone = ('nmz518', 0.0052929856265885797) + +[87507] +centroid = (0.62125087227188514, -1.8519862876771178) +station = ('ksaf', 0.00054443748515628563) +zone = ('nmz518', 0.0011773186520767723) + +[87508] +centroid = (0.62007089007119687, -1.8495035917227411) +station = ('ksaf', 0.0022518670127944862) +zone = ('nmz518', 0.0020105957011764559) + +[87510] +centroid = (0.63326132061289908, -1.8572311067991158) +station = ('klam', 0.0073226465439332937) +zone = ('nmz517', 0.0048536090554972171) + +[87511] +centroid = (0.63016325647085403, -1.8488315526942607) +station = ('klam', 0.0062016753836574056) +zone = ('nmz517', 0.0027173750383346143) + +[87512] +centroid = (0.64443868839535112, -1.8385927880769464) +station = ('kaxx', 0.0088347593877315771) +zone = ('nmz513', 0.003288786390914403) + +[87513] +centroid = (0.63843414490325245, -1.8445918861417787) +station = ('kskx', 0.0022801304339990698) +zone = ('nmz516', 0.0017659098393660751) + +[87514] +centroid = (0.63776489840157524, -1.8417621838255203) +station = ('kskx', 0.0025446902795070261) +zone = ('nmz516', 0.0040482999425593101) + +[87515] +centroid = (0.63699688371752761, -1.856915062578165) +station = ('ke33', 0.0075153236795966125) +zone = ('nmz510', 0.0031222892421926196) + +[87516] +centroid = (0.63099855359756596, -1.8581307891219341) +station = ('klam', 0.0055075385254931327) +zone = ('nmz511', 0.0047747195333802976) + +[87517] +centroid = (0.6352098934562882, -1.846341613623488) +station = ('kskx', 0.0019519972788233756) +zone = ('nmz516', 0.0043628600716444019) + +[87518] +centroid = (0.63718864304244427, -1.8598589268807963) +station = ('ke33', 0.0068443229600404368) +zone = ('nmz510', 0.0032866229404843335) + +[87519] +centroid = (0.64175603006857318, -1.8435553001924341) +station = ('kskx', 0.005609819111080808) +zone = ('nmz516', 0.0030851657908338723) + +[87520] +centroid = (0.64357906137886634, -1.8610986342484879) +station = ('ke33', 0.00082629821612934451) +zone = ('nmz510', 0.004414828833540687) + +[87521] +centroid = (0.62862096137074419, -1.8432941814830432) +station = ('kskx', 0.0075892831318988474) +zone = ('nmz512', 0.0013201114863313742) + +[87522] +centroid = (0.62711121666118419, -1.8463797141610592) +station = ('ksaf', 0.0068808046837389872) +zone = ('nmz514', 0.0024655575766962638) + +[87523] +centroid = (0.62855666344110073, -1.8473042674257178) +station = ('klam', 0.0064627245019935253) +zone = ('nmz512', 0.0032232731575356638) + +[87524] +centroid = (0.64459246935574432, -1.8443294235288636) +station = ('kskx', 0.0084203250480534165) +zone = ('coz071', 0.0051863631848988187) + +[87525] +centroid = (0.63825498685553517, -1.8405691989219044) +station = ('kaxx', 0.0035984140089089464) +zone = ('nmz513', 0.0031779319017848548) + +[87527] +centroid = (0.63095849829123285, -1.8472267399003444) +station = ('kskx', 0.0057457776046423471) +zone = ('nmz512', 0.0030515577587101692) + +[87528] +centroid = (0.64003921949655651, -1.8672109518218971) +station = ('ke33', 0.0068669919298706165) +zone = ('nmz510', 0.0075384568342361097) + +[87529] +centroid = (0.63652255558671311, -1.8434663233071675) +station = ('kskx', 0.0007078171985007419) +zone = ('nmz516', 0.0037930820850558284) + +[87530] +centroid = (0.63440691982732311, -1.8533907715794904) +station = ('kskx', 0.0075809593316708054) +zone = ('nmz517', 0.0038575104239781436) + +[87531] +centroid = (0.63262444996884637, -1.8472483296231916) +station = ('kskx', 0.0043004485936865991) +zone = ('nmz512', 0.0039614799732169102) + +[87532] +centroid = (0.6282114896749339, -1.8516019487225364) +station = ('klam', 0.0032330473939668363) +zone = ('nmz517', 0.0025106689460541276) + +[87533] +centroid = (0.62874210467412506, -1.8512111171431374) +station = ('klam', 0.003815342188737557) +zone = ('nmz517', 0.0020810193913414227) + +[87535] +centroid = (0.62009323028562235, -1.8456455937710852) +station = ('ksaf', 0.005005765730243584) +zone = ('nmz518', 0.0051503669701164247) + +[87537] +centroid = (0.62923006382639779, -1.8533446599806527) +station = ('klam', 0.0032175671308337936) +zone = ('nmz517', 0.0017538899947229854) + +[87538] +centroid = (0.61949629277485529, -1.8425659777592336) +station = ('ksaf', 0.0075771530419938933) +zone = ('nmz514', 0.007048864781904909) + +[87539] +centroid = (0.634892871850956, -1.8508025181119527) +station = ('kskx', 0.0054408858842485653) +zone = ('nmz517', 0.0043422877594164085) + +[87540] +centroid = (0.61870829407087236, -1.8484415937794878) +station = ('ksaf', 0.0038384534082490976) +zone = ('nmz518', 0.003183874103235086) + +[87543] +centroid = (0.63018664388283085, -1.8441359363279877) +station = ('kskx', 0.0059863615288775051) +zone = ('nmz512', 0.00046345512044896687) + +[87544] +centroid = (0.62553858773867466, -1.8550774577686178) +station = ('klam', 0.00073153506684288838) +zone = ('nmz511', 0.004518825528727486) + +[87548] +centroid = (0.6313274434418118, -1.8524542279028702) +station = ('klam', 0.005434256267427052) +zone = ('nmz517', 0.00069266332245743265) + +[87549] +centroid = (0.63245667146785223, -1.8502073782903152) +station = ('kskx', 0.0060810005051535124) +zone = ('nmz517', 0.0023565636835136479) + +[87551] +centroid = (0.64044155279572623, -1.8617330788848803) +station = ('ke33', 0.0037815713334387428) +zone = ('nmz510', 0.0031705197988717787) + +[87552] +centroid = (0.62214266570648424, -1.8430952488549011) +station = ('ksaf', 0.0068533666388076618) +zone = ('nmz514', 0.0043760014226147705) + +[87553] +centroid = (0.63206905129427671, -1.8445943645093166) +station = ('kskx', 0.0041138747019141353) +zone = ('nmz512', 0.0022876129787633686) + +[87554] +centroid = (0.63674669076925416, -1.8503748600853367) +station = ('kskx', 0.0049739766428416174) +zone = ('nmz516', 0.0043398664845485666) + +[87556] +centroid = (0.64199976529861413, -1.8411829439533685) +station = ('kskx', 0.0063200572470985487) +zone = ('nmz513', 0.0019564088752912811) + +[87557] +centroid = (0.63339768318735734, -1.8444902905260201) +station = ('kskx', 0.0027826578083246789) +zone = ('nmz512', 0.0035547540330716897) + +[87558] +centroid = (0.63990639994047971, -1.8403033329169483) +station = ('kaxx', 0.0048230551229010762) +zone = ('nmz513', 0.0016481525195928179) + +[87560] +centroid = (0.61499744482845209, -1.8417795847581626) +station = ('kcqc', 0.0045931068121785818) +zone = ('nmz523', 0.0066181531197721556) + +[87562] +centroid = (0.61814029411910321, -1.8445420744449268) +station = ('ksaf', 0.0066535913694550806) +zone = ('nmz518', 0.006353882529303692) + +[87564] +centroid = (0.63892964387789353, -1.8435544624343931) +station = ('kskx', 0.0028102536945055052) +zone = ('nmz516', 0.0022751187016505467) + +[87565] +centroid = (0.61808782952178831, -1.8411457509870084) +station = ('klvs', 0.0065297009362534388) +zone = ('nmz529', 0.007206013706026468) + +[87566] +centroid = (0.62957923439655161, -1.8512468440329255) +station = ('klam', 0.004394527183126668) +zone = ('nmz517', 0.0013174539717461173) + +[87567] +centroid = (0.62821183874078423, -1.8504015810761847) +station = ('klam', 0.0040432739073698156) +zone = ('nmz517', 0.0028418676265073621) + +[87569] +centroid = (0.61691065730119565, -1.8378427502841943) +station = ('klvs', 0.0058079992237017493) +zone = ('nmz529', 0.00532055112192357) + +[87571] +centroid = (0.63515062207489037, -1.8407572930553919) +station = ('kaxx', 0.0026822472441934385) +zone = ('nmz515', 0.0051548153178636339) + +[87573] +centroid = (0.62464269278033335, -1.8445624075307125) +station = ('ksaf', 0.0063920012742297878) +zone = ('nmz514', 0.002082064993081118) + +[87574] +centroid = (0.625205910529952, -1.8482880571651898) +station = ('ksaf', 0.004428950711581797) +zone = ('nmz514', 0.0041498609322585594) + +[87575] +centroid = (0.64123562524550604, -1.8565210894061124) +station = ('ke33', 0.0040748885043239372) +zone = ('nmz510', 0.0015852986179083713) + +[87577] +centroid = (0.63999907692376068, -1.8502961108294866) +station = ('kskx', 0.0061946984106650473) +zone = ('nmz516', 0.0032548301116384622) + +[87578] +centroid = (0.62914653236839724, -1.8460367395097497) +station = ('kskx', 0.0071752681598631785) +zone = ('nmz512', 0.0020482412765519629) + +[87579] +centroid = (0.62996757015512039, -1.8424290741327074) +station = ('kskx', 0.0063727789398364942) +zone = ('nmz512', 0.0010145218422339612) + +[87580] +centroid = (0.63826819899797271, -1.8424704907958571) +station = ('kskx', 0.0025287778616413436) +zone = ('nmz516', 0.0033200137126786974) + +[87581] +centroid = (0.63728044736109912, -1.8524860452551342) +station = ('kskx', 0.0067290732924965109) +zone = ('nmz510', 0.0050866991999950571) + +[87582] +centroid = (0.63104738791003678, -1.8503298654972202) +station = ('klam', 0.0060061592508293691) +zone = ('nmz517', 0.0015003775549730636) + +[87583] +centroid = (0.61490347630152475, -1.8384653266816731) +station = ('kcqc', 0.006209058424439081) +zone = ('nmz529', 0.0070669123265312645) + +[87701] +centroid = (0.62032689496587934, -1.8314348437486669) +station = ('klvs', 0.0034043706242636953) +zone = ('nmz529', 0.0010196129099113143) + +[87710] +centroid = (0.63499369952184359, -1.8367200846961413) +station = ('kaxx', 0.00089778118546082319) +zone = ('nmz515', 0.0029998329112293077) + +[87711] +centroid = (0.61486818574404933, -1.8344078550498066) +station = ('klvs', 0.007353670864185903) +zone = ('nmz529', 0.0054772075805841107) + +[87712] +centroid = (0.62570894932696175, -1.8357871538510728) +station = ('klvs', 0.0035686908806883116) +zone = ('nmz529', 0.0060997344282123353) + +[87713] +centroid = (0.63123541223035418, -1.8389639148890902) +station = ('kaxx', 0.0045721320590561979) +zone = ('nmz515', 0.0028908414922243063) + +[87714] +centroid = (0.63511623908862613, -1.8310770687053006) +station = ('kaxx', 0.0051829294578565463) +zone = ('nmz515', 0.004680890267560662) + +[87715] +centroid = (0.62861624898176383, -1.8400839101233875) +station = ('kaxx', 0.0073391117309067021) +zone = ('nmz514', 0.0034290950967568565) + +[87718] +centroid = (0.63878715519776086, -1.8376900688812297) +station = ('kaxx', 0.0031426672605658328) +zone = ('nmz513', 0.0025907909746050433) + +[87722] +centroid = (0.63166837605789639, -1.8371548462128131) +station = ('kaxx', 0.0039892927559837116) +zone = ('nmz515', 0.0013693645380346345) + +[87723] +centroid = (0.62934394656009029, -1.839150769838809) +station = ('kaxx', 0.0064469219073269241) +zone = ('nmz515', 0.0040284476960005021) + +[87724] +centroid = (0.61389099334915032, -1.8339480829649537) +station = ('klvs', 0.0083567303358700277) +zone = ('nmz529', 0.0063541070398129675) + +[87728] +centroid = (0.63873006547792799, -1.8259474762205192) +station = ('krtn', 0.0025950038367976973) +zone = ('nmz527', 0.0053432833626577796) + +[87729] +centroid = (0.63361518611874101, -1.8294186393967631) +station = ('kaxx', 0.0068048576237032081) +zone = ('nmz528', 0.0033141047864206036) + +[87730] +centroid = (0.63098890192680257, -1.8188852282951271) +station = ('krtn', 0.012016515762295543) +zone = ('nmz528', 0.0055848440828914821) + +[87731] +centroid = (0.62412726214563441, -1.8397992120158022) +station = ('klvs', 0.0043995789896510828) +zone = ('nmz514', 0.0037857191730383713) + +[87732] +centroid = (0.6275855273387061, -1.8389537047129663) +station = ('klvs', 0.0062916457986391169) +zone = ('nmz514', 0.0037786794823669464) + +[87733] +centroid = (0.62509721142413777, -1.8123346410932493) +station = ('ktcc', 0.011543570402216704) +zone = ('nmz531', 0.00079118826911894063) + +[87734] +centroid = (0.63122527186740007, -1.8340946731688288) +station = ('kaxx', 0.0051985810390131277) +zone = ('nmz515', 0.0014983869590615767) + +[87735] +centroid = (0.62953085386968632, -1.8352688957829855) +station = ('kaxx', 0.0063732416083397267) +zone = ('nmz515', 0.0026224532122110238) + +[87736] +centroid = (0.62797730139590124, -1.8360353396707063) +station = ('klvs', 0.0058375542723742516) +zone = ('nmz515', 0.0041827102191630472) + +[87740] +centroid = (0.64134969996541646, -1.8223911584300707) +station = ('krtn', 0.0033918648981036714) +zone = ('nmz527', 0.0015566493313722751) + +[87742] +centroid = (0.62661423415667872, -1.8415132649676007) +station = ('klvs', 0.0069272834647069311) +zone = ('nmz514', 0.0015538770015148876) + +[87743] +centroid = (0.62785715293019395, -1.8167274253810088) +station = ('ktcc', 0.015451940642566908) +zone = ('nmz531', 0.0043280999466215097) + +[87745] +centroid = (0.62501856688804291, -1.8363245407277617) +station = ('klvs', 0.0030304286588345416) +zone = ('nmz529', 0.0056942573557712192) + +[87746] +centroid = (0.62441018001738269, -1.8159608767735329) +station = ('ktcc', 0.012139332629249046) +zone = ('nmz531', 0.0035164609187694814) + +[87747] +centroid = (0.63453528879380738, -1.8233763967928214) +station = ('krtn', 0.0072200891049669421) +zone = ('nmz528', 0.0024121540630654493) + +[87749] +centroid = (0.63782067912446894, -1.8343997741753699) +station = ('kaxx', 0.0032955658794414228) +zone = ('nmz513', 0.0049654341066844056) + +[87750] +centroid = (0.62527003392667013, -1.831325149805179) +station = ('klvs', 0.004229924865141811) +zone = ('nmz529', 0.0052264908477312666) + +[87752] +centroid = (0.62869541711663435, -1.8264868178659706) +station = ('klvs', 0.0094251964796286981) +zone = ('nmz528', 0.0041778979085930262) + +[87753] +centroid = (0.6259328925232851, -1.8317980642192995) +station = ('klvs', 0.0045045405422530363) +zone = ('nmz529', 0.005817110574375132) + +[87801] +centroid = (0.59563219647282661, -1.8644686905011638) +station = ('konm', 0.0022048127574201713) +zone = ('nmz520', 0.0035951759894084136) + +[87820] +centroid = (0.59232378524933105, -1.8951975332704292) +station = ('ksjn', 0.015304837341016411) +zone = ('nmz508', 0.0075236692521378429) + +[87821] +centroid = (0.5930620420696322, -1.8860464229363723) +station = ('konm', 0.016833163382101266) +zone = ('nmz508', 0.001440985599719188) + +[87823] +centroid = (0.59701941906889666, -1.8672570459674422) +station = ('konm', 0.0035415042255285199) +zone = ('nmz520', 0.0056394413280621246) + +[87824] +centroid = (0.59041889799711944, -1.902093538584569) +station = ('ksjn', 0.0133360146074921) +zone = ('nmz509', 0.0065120822146215833) + +[87825] +centroid = (0.59127072339184783, -1.878955603971125) +station = ('konm', 0.011215827653468298) +zone = ('nmz508', 0.0059996502019459327) + +[87827] +centroid = (0.60051238140749796, -1.8866441632985955) +station = ('kgnt', 0.013558279618363088) +zone = ('nmz508', 0.0088962982395512803) + +[87828] +centroid = (0.59700475830317989, -1.8660487719795793) +station = ('konm', 0.0033107512622014531) +zone = ('nmz520', 0.0052250319322267869) + +[87829] +centroid = (0.59965504077233334, -1.8961739926270424) +station = ('ksjn', 0.011015211701281832) +zone = ('nmz508', 0.011535097803369596) + +[87830] +centroid = (0.58866561004373608, -1.8979340000980458) +station = ('ksjn', 0.016579375936249571) +zone = ('nmz509', 0.0050683426325662667) + +[87831] +centroid = (0.59803362989723063, -1.8663315851315725) +station = ('konm', 0.0043568309337226789) +zone = ('nmz520', 0.0062754156128479021) + +[87832] +centroid = (0.58934351337850321, -1.8643819476373398) +station = ('konm', 0.0045062683751907898) +zone = ('nmz520', 0.0027284110385711251) + +[87901] +centroid = (0.57974243970998984, -1.8692578390620511) +station = ('ktcs', 0.0024419302305565163) +zone = ('nmz409', 0.0016267516524895156) + +[87930] +centroid = (0.57335254497234334, -1.8752440042371263) +station = ('ktcs', 0.0071625018189140979) +zone = ('nmz408', 0.0031146960498514621) + +[87931] +centroid = (0.57514651655059079, -1.8749520630131451) +station = ('ktcs', 0.0054170349821651489) +zone = ('nmz408', 0.002112038494656643) + +[87933] +centroid = (0.57229686512098199, -1.8723527965180276) +station = ('ktcs', 0.0077359741870942321) +zone = ('nmz408', 0.0055225298074987831) + +[87935] +centroid = (0.58040580445208789, -1.8715038858231501) +station = ('ktcs', 0.00066206502485157564) +zone = ('nmz409', 0.0032950147540022523) + +[87936] +centroid = (0.57164467048609691, -1.8721032318882851) +station = ('ktcs', 0.0083865366487628525) +zone = ('nmz410', 0.005709404998510483) + +[87937] +centroid = (0.568858322148458, -1.8707192905112087) +station = ('klru', 0.0065603645218137684) +zone = ('nmz410', 0.0038884157936648128) + +[87939] +centroid = (0.58316129536855144, -1.8760292976807686) +station = ('ktcs', 0.0045022428835001281) +zone = ('nmz408', 0.0072778015030968441) + +[87940] +centroid = (0.56935286119201056, -1.8676164616203055) +station = ('klru', 0.0059281377354206705) +zone = ('nmz410', 0.0013265701176928782) + +[87941] +centroid = (0.57108379147767596, -1.8713352521108224) +station = ('klru', 0.0087090360240511377) +zone = ('nmz410', 0.0048803906681179569) + +[87942] +centroid = (0.57702309456233514, -1.8735921024599913) +station = ('ktcs', 0.0032392544062883133) +zone = ('nmz408', 0.0032669030871209591) + +[87943] +centroid = (0.58264486989617881, -1.8803504187494413) +station = ('ktcs', 0.0073297492440971982) +zone = ('nmz402', 0.0069982417393011018) + +[88001] +centroid = (0.5635677230401801, -1.8632069221717271) +station = ('klru', 0.002479498891305935) +zone = ('nmz411', 0.0038505059249617705) + +[88002] +centroid = (0.56658531005041568, -1.8585340648988999) +station = ('klru', 0.007101556776913394) +zone = ('nmz413', 0.0040718284024767442) + +[88003] +centroid = (0.56340367954378512, -1.8630681859494858) +station = ('klru', 0.0026014215631985811) +zone = ('nmz411', 0.0038039396158399716) + +[88004] +centroid = (0.56239912038621465, -1.8672829292002495) +station = ('klru', 0.0015083782392493769) +zone = ('nmz411', 0.0020567224419166382) + +[88005] +centroid = (0.56301438385412772, -1.8644152659727602) +station = ('klru', 0.0015559727740681955) +zone = ('nmz411', 0.0028067540632791075) + +[88007] +centroid = (0.56620386834239222, -1.8661282891802999) +station = ('klru', 0.002646767546103481) +zone = ('nmz410', 0.0027735312789049487) + +[88008] +centroid = (0.55570197788704712, -1.8619536186891623) +station = ('k5t6', 0.00079756824668046112) +zone = ('txz418', 0.001846343842397367) + +[88009] +centroid = (0.55843596634712611, -1.8949872734554412) +station = ('klsb', 0.0061377403749824878) +zone = ('nmz405', 0.00378881897878428) + +[88011] +centroid = (0.56412940490005692, -1.8614928517666358) +station = ('klru', 0.0039692528093106848) +zone = ('nmz411', 0.0052621052502382732) + +[88012] +centroid = (0.56868733224164014, -1.8635120929914382) +station = ('klru', 0.0055891081195264085) +zone = ('nmz410', 0.0022046333433934939) + +[88020] +centroid = (0.55453316579357159, -1.8996062873208441) +station = ('klsb', 0.010032970939503633) +zone = ('nmz405', 0.0035548458636830154) + +[88021] +centroid = (0.55766563037517336, -1.8677862996098171) +station = ('k5t6', 0.0047792174796466138) +zone = ('nmz411', 0.0032615888519985214) + +[88022] +centroid = (0.57260765590088469, -1.8880355397782853) +station = ('ksvc', 0.0030732172467755358) +zone = ('nmz403', 0.003770366928365786) + +[88023] +centroid = (0.57129118895269038, -1.8874763013793612) +station = ('ksvc', 0.0017340107312147806) +zone = ('nmz403', 0.0024051514631701007) + +[88024] +centroid = (0.55973677769193009, -1.8612088343374587) +station = ('k5t6', 0.0034495608925808594) +zone = ('txz418', 0.0031039543340711786) + +[88025] +centroid = (0.57677558942110974, -1.8979309632251473) +station = ('ksvc', 0.011305035579785808) +zone = ('nmz401', 0.0019459744473766724) + +[88026] +centroid = (0.5716391028857829, -1.8877984542526944) +station = ('ksvc', 0.0020885815766304612) +zone = ('nmz403', 0.0028457340154698966) + +[88027] +centroid = (0.55927553953050557, -1.8638298127284711) +station = ('k5t6', 0.003114733742137108) +zone = ('nmz411', 0.0023394683043387464) + +[88028] +centroid = (0.57478614096663894, -1.8960549437187639) +station = ('ksvc', 0.0088411281117749228) +zone = ('nmz401', 0.0005908943308168815) + +[88029] +centroid = (0.55579798844919936, -1.8796274859199726) +station = ('kdmn', 0.0073687368585570066) +zone = ('nmz407', 0.0061863162783422285) + +[88030] +centroid = (0.56185000489695225, -1.8802332722500474) +station = ('kdmn', 0.0013230574088495862) +zone = ('nmz407', 0.00089507959366848971) + +[88032] +centroid = (0.56547903310403913, -1.8643390648976181) +station = ('klru', 0.00245126223971401) +zone = ('nmz410', 0.003802495292132088) + +[88033] +centroid = (0.56408376454011722, -1.8680058969363029) +station = ('klru', 0.0016627229269147682) +zone = ('nmz411', 0.0038368895628465524) + +[88034] +centroid = (0.5692074229054418, -1.8838745526684832) +station = ('ksvc', 0.0031352372451160194) +zone = ('nmz403', 0.0016498933305958072) + +[88038] +centroid = (0.57808743124678619, -1.8916408489608374) +station = ('ksvc', 0.0091869394113154364) +zone = ('nmz401', 0.0049408035023995591) + +[88039] +centroid = (0.5811676057639984, -1.8989651929800015) +station = ('ksad', 0.014451324417827968) +zone = ('nmz509', 0.0031401299454355551) + +[88040] +centroid = (0.55147756551222749, -1.8911497831224964) +station = ('klsb', 0.013781919307278045) +zone = ('nmz405', 0.0048387593512082628) + +[88041] +centroid = (0.57229553867075045, -1.8834290922834966) +station = ('ksvc', 0.0044326532917313621) +zone = ('nmz403', 0.0035904529475048741) + +[88042] +centroid = (0.57268577683820387, -1.877596987321495) +station = ('ktcs', 0.0086464677307856556) +zone = ('nmz408', 0.0032839424982840692) + +[88043] +centroid = (0.569158082447488, -1.8867038884655987) +station = ('ksvc', 0.00083509372340167132) +zone = ('nmz403', 0.00075651563528329974) + +[88044] +centroid = (0.5610880639587017, -1.8641137428911858) +station = ('klru', 0.0030057965811427852) +zone = ('nmz411', 0.0017563334391630437) + +[88045] +centroid = (0.56522643160139796, -1.8981519044551576) +station = ('klsb', 0.0013084394683163382) +zone = ('nmz404', 0.0013208613206562967) + +[88046] +centroid = (0.56286899792743661, -1.864051120477624) +station = ('klru', 0.0018955295844748537) +zone = ('nmz411', 0.0028590334458675668) + +[88047] +centroid = (0.5621712676523668, -1.8625227007450678) +station = ('klru', 0.0033584977235993252) +zone = ('nmz411', 0.0034162714617629432) + +[88048] +centroid = (0.56135804894069263, -1.8615696811603086) +station = ('klru', 0.0044478745525803236) +zone = ('nmz411', 0.0039152225228169949) + +[88049] +centroid = (0.57657967621257333, -1.8835365696588344) +station = ('ksvc', 0.0077970706191393593) +zone = ('nmz402', 0.0015420981727753242) + +[88051] +centroid = (0.5759439051259494, -1.9010184681252178) +station = ('klsb', 0.012094216662685432) +zone = ('nmz401', 0.0038723289046721865) + +[88052] +centroid = (0.56592931059776108, -1.8605109818893415) +station = ('klru', 0.0053138361580309977) +zone = ('nmz410', 0.0056170629654314422) + +[88053] +centroid = (0.57425723639011461, -1.8885497312292152) +station = ('ksvc', 0.004769286662833272) +zone = ('nmz402', 0.0038684408785836727) + +[88055] +centroid = (0.57120816364017302, -1.8978883073782287) +station = ('klsb', 0.0069208099226706335) +zone = ('nmz401', 0.0042227914351938888) + +[88056] +centroid = (0.55578612021028573, -1.9021038883870331) +station = ('klsb', 0.0095607288359365657) +zone = ('azz512', 0.0055450604725528797) + +[88061] +centroid = (0.56992747594164472, -1.890777068060733) +station = ('ksvc', 0.0027224935233202004) +zone = ('nmz403', 0.0042105276466212161) + +[88063] +centroid = (0.55532823308102508, -1.860505396835735) +station = ('k5t6', 0.0019119983323132334) +zone = ('txz418', 0.0014595451151292976) + +[88065] +centroid = (0.5703295474414265, -1.8906954041050321) +station = ('ksvc', 0.0027389450378060773) +zone = ('nmz403', 0.0042190965659443073) + +[88072] +centroid = (0.56091503201665893, -1.8608020853552816) +station = ('k5t6', 0.0046771592520953691) +zone = ('txz418', 0.0041892133274334881) + +[88081] +centroid = (0.56254131236037463, -1.8540731429571424) +station = ('km63', 0.0030556767509902841) +zone = ('nmz413', 0.0029494856461031579) + +[88101] +centroid = (0.60212784070985137, -1.8024935322927094) +station = ('kcvs', 0.0021112848484419497) +zone = ('nmz535', 0.0016621219461286352) + +[88103] +centroid = (0.60011345150036965, -1.8032401492401273) +station = ('kcvs', 2.2797242632701845e-05) +zone = ('nmz535', 0.0033458413447357812) + +[88112] +centroid = (0.60817694245775356, -1.8007769660667878) +station = ('kcvn', 0.0073262108843447976) +zone = ('nmz535', 0.005332879575145221) + +[88113] +centroid = (0.58943276951645018, -1.7991757835577156) +station = ('kcvs', 0.011182075253857534) +zone = ('txz033', 0.0047416416983895203) + +[88114] +centroid = (0.58509662116291794, -1.801168949563493) +station = ('khob', 0.014667021841859178) +zone = ('nmz029', 0.0051781160165110867) + +[88115] +centroid = (0.59220552173921603, -1.8037191897599223) +station = ('kcvs', 0.0079078225788302078) +zone = ('nmz536', 0.0025083228905835929) + +[88116] +centroid = (0.59194063311864087, -1.8130276415260462) +station = ('k4mr', 0.0068033559553810179) +zone = ('nmz536', 0.0060573175521980551) + +[88118] +centroid = (0.59741819189639234, -1.8097229304005651) +station = ('k4mr', 0.0020132894939420814) +zone = ('nmz536', 0.00472786358001623) + +[88119] +centroid = (0.59903183605632371, -1.822241496446712) +station = ('k4mr', 0.0087554221232473365) +zone = ('nmz537', 0.0003640758433182284) + +[88120] +centroid = (0.60737196170014873, -1.8037361194536667) +station = ('kcvs', 0.0072821854064351313) +zone = ('nmz535', 0.0039383383566707645) + +[88121] +centroid = (0.6058844699385515, -1.8148044565177466) +station = ('k4mr', 0.0076887537378574223) +zone = ('nmz537', 0.0089819419386661971) + +[88124] +centroid = (0.6028956634076813, -1.8090655172312164) +station = ('k4mr', 0.0047533735944368851) +zone = ('nmz535', 0.0044170904937807162) + +[88125] +centroid = (0.58827249208301691, -1.8016322646667278) +station = ('kcvs', 0.011902444453716134) +zone = ('txz033', 0.0060390761461725524) + +[88126] +centroid = (0.59011788106102803, -1.8041818416380411) +station = ('kcvs', 0.010016474926865618) +zone = ('nmz536', 0.0039867167418272459) + +[88130] +centroid = (0.59566650964592072, -1.8029149245873106) +station = ('kcvs', 0.0044428396137601162) +zone = ('nmz536', 0.0032210970131258841) + +[88132] +centroid = (0.59179400800818083, -1.8005997453345401) +station = ('kcvs', 0.0085858745289645755) +zone = ('nmz536', 0.0049542190621561545) + +[88134] +centroid = (0.59905098231821807, -1.8154690604436134) +station = ('k4mr', 0.0031786845176739334) +zone = ('nmz537', 0.0056782284799501877) + +[88135] +centroid = (0.60358386418503518, -1.799427721835241) +station = ('kcvn', 0.0026193121683479609) +zone = ('nmz535', 0.0035552765300516471) + +[88136] +centroid = (0.60153352119296222, -1.8282529514426487) +station = ('k4mr', 0.014001219198593543) +zone = ('nmz537', 0.0053347354709991487) + +[88201] +centroid = (0.58707746514417636, -1.8217384751029948) +station = ('krow', 0.0063029416624884515) +zone = ('nmz538', 0.0026111678982776521) + +[88203] +centroid = (0.58136165147023511, -1.8166824656994776) +station = ('krow', 0.0064946549837322492) +zone = ('nmz538', 0.0046241430037865681) + +[88210] +centroid = (0.57197575944520007, -1.818976369388666) +station = ('kats', 0.0038986787612314967) +zone = ('nmz028', 0.004781739773755133) + +[88220] +centroid = (0.56394165983241973, -1.822680726006269) +station = ('kcnm', 0.002466882548663351) +zone = ('nmz028', 0.0042030302125503401) + +[88230] +centroid = (0.57978380401326202, -1.8220812752213789) +station = ('krow', 0.0024323830712243912) +zone = ('nmz538', 0.005030558294683872) + +[88231] +centroid = (0.56639266060758053, -1.8022753486829175) +station = ('khob', 0.0040956488441284376) +zone = ('nmz034', 0.0040150303846247784) + +[88232] +centroid = (0.5773091365734444, -1.8232670170085987) +station = ('kats', 0.0039249527817590999) +zone = ('nmz538', 0.007682445326995439) + +[88240] +centroid = (0.57078738221080971, -1.8061559311950941) +station = ('khob', 0.0039589806389087661) +zone = ('nmz033', 0.0010852443860040019) + +[88242] +centroid = (0.57270214802658759, -1.8005210658918602) +station = ('khob', 0.0024067536562929434) +zone = ('nmz033', 0.0041688877828963506) + +[88250] +centroid = (0.57075561721842338, -1.831904791103059) +station = ('kats', 0.0076960451741041663) +zone = ('nmz540', 0.0028456952815637329) + +[88252] +centroid = (0.56121269792058648, -1.8042852873028066) +station = ('kink', 0.0070032943350289605) +zone = ('nmz034', 0.0016757356587986725) + +[88253] +centroid = (0.57481802813207283, -1.8260746060032345) +station = ('kats', 0.0027342828668288225) +zone = ('nmz540', 0.0071728224229767835) + +[88254] +centroid = (0.56919976091002555, -1.8230007146713296) +station = ('kats', 0.0041921912720088933) +zone = ('nmz028', 0.0035079595630166422) + +[88255] +centroid = (0.57271584886121574, -1.815080427979072) +station = ('kats', 0.0069403067716970546) +zone = ('nmz028', 0.0066680291719608611) + +[88256] +centroid = (0.56196224702114805, -1.8135373998406763) +station = ('kcnm', 0.0057953674865377225) +zone = ('nmz028', 0.0073193206989884286) + +[88260] +centroid = (0.57581736875517986, -1.8043542452615531) +station = ('khob', 0.0059054678594059632) +zone = ('nmz033', 0.0042898743264801796) + +[88262] +centroid = (0.57800313184391494, -1.8050397233252737) +station = ('khob', 0.0081427963130589528) +zone = ('nmz029', 0.0028861924406794874) + +[88263] +centroid = (0.56021370636333001, -1.8165669249029957) +station = ('kcnm', 0.0049349557014739974) +zone = ('nmz028', 0.0074503471091940379) + +[88264] +centroid = (0.5740547083837132, -1.8101107949202357) +station = ('khob', 0.0081170174014804242) +zone = ('nmz033', 0.0047256443110731605) + +[88265] +centroid = (0.56933432579535437, -1.8029752257129672) +station = ('khob', 0.0016760435699018845) +zone = ('nmz033', 0.0029975642692889473) + +[88267] +centroid = (0.58184816199922851, -1.8051106011461973) +station = ('khob', 0.011817376153750319) +zone = ('nmz029', 0.0010086928632866282) + +[88268] +centroid = (0.56158269026871688, -1.821768861285272) +station = ('kcnm', 0.0032080833676889258) +zone = ('nmz028', 0.0059366549817846835) + +[88301] +centroid = (0.58964226138656706, -1.8463091155928157) +station = ('k4cr', 0.0057107907951709311) +zone = ('nmz525', 0.0042923889451696121) + +[88310] +centroid = (0.569676672128133, -1.8513616866977067) +station = ('kalm', 0.0036327988716671551) +zone = ('nmz413', 0.0047006810708689478) + +[88311] +centroid = (0.57260725447515681, -1.8498316263556533) +station = ('kalm', 0.00044680746325086439) +zone = ('nmz414', 0.0023557617851461348) + +[88312] +centroid = (0.58359701681631182, -1.8443347642363748) +station = ('ksrr', 0.0020902799880106061) +zone = ('nmz526', 0.002893139622325595) + +[88314] +centroid = (0.57788067954359501, -1.8477271607034762) +station = ('kalm', 0.0051225745470894471) +zone = ('nmz415', 0.0032242626783552356) + +[88316] +centroid = (0.58988037665641668, -1.8382312605756879) +station = ('ksrr', 0.0065363446154142598) +zone = ('nmz539', 0.00232550781720789) + +[88317] +centroid = (0.57462824102921095, -1.8437132350364471) +station = ('kalm', 0.0053163650669884321) +zone = ('nmz415', 0.0015403450902023758) + +[88318] +centroid = (0.59702655746553734, -1.8395235896203275) +station = ('k4cr', 0.0045392292893567431) +zone = ('nmz539', 0.0080231940356822566) + +[88321] +centroid = (0.60669925944655256, -1.8405950821547117) +station = ('kcqc', 0.0051237754311392021) +zone = ('nmz523', 0.0023601658318863337) + +[88323] +centroid = (0.58459286678091471, -1.8418031117964795) +station = ('ksrr', 0.0004965455712942306) +zone = ('nmz526', 0.0018206757857687919) + +[88324] +centroid = (0.58276215602191284, -1.8402587048479748) +station = ('ksrr', 0.0019196484940017208) +zone = ('nmz526', 0.0040513687710602405) + +[88325] +centroid = (0.57345593827723151, -1.847577202014145) +station = ('kalm', 0.0018767563243808215) +zone = ('nmz414', 0.00077631358910642254) + +[88330] +centroid = (0.57310701205317283, -1.8513995952490601) +station = ('khmn', 0.00040568348082951287) +zone = ('nmz414', 0.003235144133326485) + +[88336] +centroid = (0.58168865635888878, -1.8374826888595075) +station = ('ksrr', 0.004411074265217663) +zone = ('nmz526', 0.0063431952054529292) + +[88337] +centroid = (0.57590095257305773, -1.8480366250331473) +station = ('kalm', 0.0031965147701576986) +zone = ('nmz414', 0.0017013046287380959) + +[88338] +centroid = (0.58450247617895401, -1.8394813875590141) +station = ('ksrr', 0.0020598122900982712) +zone = ('nmz526', 0.0032643378084844924) + +[88339] +centroid = (0.57494418053040708, -1.8371443916905936) +station = ('ksrr', 0.0099877085904671158) +zone = ('nmz416', 0.0026311176875071633) + +[88340] +centroid = (0.57903278883612896, -1.8427752078299628) +station = ('ksrr', 0.0051227077715441018) +zone = ('nmz415', 0.0034478089254610608) + +[88341] +centroid = (0.58339682755110811, -1.8475472347108881) +station = ('ksrr', 0.0047613445048051151) +zone = ('nmz526', 0.0048344888954122501) + +[88342] +centroid = (0.56528734359229249, -1.8520010531625899) +station = ('km63', 0.0055887169075475194) +zone = ('nmz413', 0.00160633613691632) + +[88343] +centroid = (0.5799017184575268, -1.8339427597107352) +station = ('ksrr', 0.0078667660869636575) +zone = ('nmz540', 0.0071143125554963315) + +[88344] +centroid = (0.56825641044932274, -1.8376977134233534) +station = ('kalm', 0.011224353707267347) +zone = ('nmz540', 0.0053768399057050175) + +[88345] +centroid = (0.58201889010665853, -1.8444689102426832) +station = ('ksrr', 0.0029882559629397436) +zone = ('nmz526', 0.0044021281624757299) + +[88346] +centroid = (0.58213375022473235, -1.8420214001260264) +station = ('ksrr', 0.0019722034064944146) +zone = ('nmz526', 0.0041231096729859888) + +[88347] +centroid = (0.5717032786423788, -1.8440744134718547) +station = ('kalm', 0.0049639226663873671) +zone = ('nmz414', 0.003999565567762881) + +[88348] +centroid = (0.58287305424258462, -1.8388508175535609) +station = ('ksrr', 0.002829672102795134) +zone = ('nmz526', 0.0046975656062017476) + +[88349] +centroid = (0.5721063100732493, -1.8465977581445105) +station = ('kalm', 0.0028188780718775559) +zone = ('nmz414', 0.0023294425612193372) + +[88350] +centroid = (0.56973465196588435, -1.8444118379761429) +station = ('kalm', 0.0055868713804496295) +zone = ('nmz414', 0.0052990038476157658) + +[88351] +centroid = (0.58554787604102099, -1.8341266301474328) +station = ('ksrr', 0.0066438432243930076) +zone = ('nmz539', 0.0043449682043838088) + +[88352] +centroid = (0.5788613276904131, -1.8499448633175228) +station = ('khmn', 0.0057343899183653424) +zone = ('nmz412', 0.0039169048917442068) + +[88353] +centroid = (0.60338397162580415, -1.8346227574406047) +station = ('kcqc', 0.010873923666099053) +zone = ('nmz533', 0.0069109193609883371) + +[88354] +centroid = (0.57168519703132814, -1.84122361012494) +station = ('kalm', 0.0073029005733294241) +zone = ('nmz416', 0.003492879820648196) + +[88355] +centroid = (0.58224909903499666, -1.8442436056895433) +station = ('ksrr', 0.0026930088354809255) +zone = ('nmz526', 0.0041261852889960182) + +[88401] +centroid = (0.61295059249488315, -1.8120397502628325) +station = ('ktcc', 0.0033614170087261763) +zone = ('nmz534', 0.0039000096198696941) + +[88410] +centroid = (0.62617224697690366, -1.8027642503129861) +station = ('kcao', 0.010195116318206963) +zone = ('nmz531', 0.0074910242030975958) + +[88411] +centroid = (0.61332014851070049, -1.800317927020221) +station = ('ktcc', 0.006455123498221518) +zone = ('nmz534', 0.0057322917966617622) + +[88414] +centroid = (0.6418790757808388, -1.8150671809300492) +station = ('ktad', 0.010499593463094816) +zone = ('nmz527', 0.0044023302247999637) + +[88415] +centroid = (0.63375976919397614, -1.8033931622556498) +station = ('kcao', 0.0034632760907521202) +zone = ('nmz530', 0.0027924217721166209) + +[88416] +centroid = (0.61585288305473196, -1.8185405432211508) +station = ('ktcc', 0.0086643489088588741) +zone = ('nmz532', 0.0028362482926395445) + +[88417] +centroid = (0.61189864764812119, -1.8217157683694265) +station = ('ktcc', 0.011296486649392501) +zone = ('nmz533', 0.0068389146767047085) + +[88418] +centroid = (0.64098719507977719, -1.8096400796209728) +station = ('kcao', 0.0089072027194164061) +zone = ('nmz530', 0.0060289052704744278) + +[88419] +centroid = (0.64420195193561058, -1.8069571944013922) +station = ('kcao', 0.0096392433076315457) +zone = ('coz094', 0.007206655173863148) + +[88421] +centroid = (0.6160724629279255, -1.8235434422555297) +station = ('klvs', 0.011115130321754244) +zone = ('nmz532', 0.0041675060884119562) + +[88422] +centroid = (0.63434527479814262, -1.8149946450463363) +station = ('krtn', 0.011627405735740334) +zone = ('nmz528', 0.0085597191208175959) + +[88424] +centroid = (0.63551867710755094, -1.809146133989366) +station = ('kcao', 0.0071415859895722486) +zone = ('nmz530', 0.0033533264504665458) + +[88426] +centroid = (0.62031705130889814, -1.8065809014146623) +station = ('ktcc', 0.0063834700678118373) +zone = ('nmz531', 0.007061507018043197) + +[88427] +centroid = (0.60685974247127339, -1.8112045229492906) +station = ('ktcc', 0.0076245953978711896) +zone = ('nmz534', 0.0066539056352156933) + +[88430] +centroid = (0.62101443251811739, -1.8008371275661041) +station = ('ktcc', 0.0091624371659224501) +zone = ('txz006', 0.0093448275239949308) + +[88431] +centroid = (0.61383325785749421, -1.8199386915783382) +station = ('ktcc', 0.0096295260640653253) +zone = ('nmz532', 0.0047688550223021218) + +[88434] +centroid = (0.61391432840124949, -1.8030294879994118) +station = ('ktcc', 0.0041970618814450161) +zone = ('nmz534', 0.0036891211124506257) + +[88435] +centroid = (0.60936687303517822, -1.8272862833831391) +station = ('klvs', 0.014275931139371072) +zone = ('nmz533', 0.0016229019281979596) + +[88436] +centroid = (0.63071432672887884, -1.7998382756351876) +station = ('kcao', 0.0054712511467778563) +zone = ('nmz530', 0.0069218751472170615) + +[89001] +centroid = (0.65060507626898723, -2.0140073488947317) +station = ('kins', 0.012688588662694329) +zone = ('nvz018', 0.0093333298556330536) + +[89002] +centroid = (0.62829015166432123, -2.0064470014541125) +station = ('kbvu', 0.0017524795523179198) +zone = ('nvz020', 0.0039004651341465568) + +[89003] +centroid = (0.64527203075330086, -2.0375699395684781) +station = ('kdra', 0.011553582424798547) +zone = ('caz522', 0.010840644226315527) + +[89004] +centroid = (0.6301118041645053, -2.0156438219612789) +station = ('klas', 0.0031286858577571474) +zone = ('nvz019', 0.0035454932131004473) + +[89005] +centroid = (0.6280869604328041, -2.0037885159374751) +station = ('kbvu', 0.0010917711491077251) +zone = ('nvz021', 0.0031425068568613091) + +[89007] +centroid = (0.63995389034942651, -1.9936328289925553) +station = ('ksgu', 0.011377904183018497) +zone = ('nvz016', 0.0041551493536544429) + +[89008] +centroid = (0.65076498333505495, -1.9986307189319812) +station = ('ksgu', 0.01318047761358335) +zone = ('nvz015', 0.0081604549897584169) + +[89010] +centroid = (0.65942963549999578, -2.0607957689630525) +station = ('kbih', 0.0083048868893118646) +zone = ('caz521', 0.01348559059594037) + +[89011] +centroid = (0.6297622845285008, -2.0065784596533729) +station = ('klsv', 0.0027830266938702096) +zone = ('nvz020', 0.003048833176651966) + +[89012] +centroid = (0.62852610272589837, -2.0078836692278919) +station = ('khnd', 0.001457432037636162) +zone = ('nvz020', 0.0029211559214401398) + +[89013] +centroid = (0.65301799395986937, -2.0480897894618266) +station = ('ktph', 0.011385907653149686) +zone = ('nvz014', 0.0061601594716966775) + +[89014] +centroid = (0.62939559085265695, -2.0081419430506018) +station = ('khnd', 0.0018899933346433805) +zone = ('nvz020', 0.0021408622703683795) + +[89015] +centroid = (0.62900439275411479, -2.005872334344601) +station = ('kbvu', 0.0019814542302188415) +zone = ('nvz020', 0.0038820972459736236) + +[89017] +centroid = (0.65875789317748823, -2.0115083341118485) +station = ('kbjn', 0.014169673808415004) +zone = ('nvz015', 0.0054619598622238823) + +[89018] +centroid = (0.63724365582046716, -2.0183881253172373) +station = ('kins', 0.0012917837316505545) +zone = ('nvz019', 0.0048506521329163268) + +[89019] +centroid = (0.62424543838928703, -2.019953266777256) +station = ('klas', 0.0090044453813893192) +zone = ('nvz019', 0.0082088830994947858) + +[89020] +centroid = (0.63760834236767128, -2.0323243874081944) +station = ('kdra', 0.0060144746233323915) +zone = ('nvz017', 0.0064481727626075937) + +[89021] +centroid = (0.63949375174543066, -1.9978964938222521) +station = ('klsv', 0.010620093629014928) +zone = ('nvz016', 0.00092807981465649445) + +[89022] +centroid = (0.67266722483808694, -2.0423971537603518) +station = ('ktph', 0.0089017322862646048) +zone = ('nvz040', 0.011432560599144329) + +[89025] +centroid = (0.63814243057207409, -2.0051303948795782) +station = ('klsv', 0.0061148977416216584) +zone = ('nvz018', 0.0052915424881534081) + +[89026] +centroid = (0.62404669774736243, -2.0121852600622345) +station = ('khnd', 0.0043862066252307501) +zone = ('nvz022', 0.0053912623549478766) + +[89027] +centroid = (0.64252006540192619, -1.9917732679410181) +station = ('ksgu', 0.00864847559616512) +zone = ('nvz016', 0.0066382724314102901) + +[89029] +centroid = (0.61312057011073495, -2.001133992318239) +station = ('kifp', 0.0014708947923371841) +zone = ('nvz022', 0.0088013331680566846) + +[89030] +centroid = (0.63200913414105575, -2.0092954311532449) +station = ('kvgt', 0.00085715821845721121) +zone = ('nvz020', 0.0013587249977660123) + +[89031] +centroid = (0.63283699616515432, -2.0101271503549905) +station = ('kvgt', 0.0010405497685448523) +zone = ('nvz020', 0.0020139358176004432) + +[89032] +centroid = (0.63221370418268197, -2.0101425616122852) +station = ('kvgt', 0.00043141325579052468) +zone = ('nvz020', 0.0013907833253401969) + +[89039] +centroid = (0.61589045999352743, -2.0050309460187994) +station = ('kifp', 0.0051035232860322036) +zone = ('nvz022', 0.004776900478664063) + +[89040] +centroid = (0.63454265408325072, -1.9997793375660113) +station = ('klsv', 0.0067447052372090954) +zone = ('nvz016', 0.0043152443551445277) + +[89042] +centroid = (0.65878307827859439, -1.9954763330149743) +station = ('ksgu', 0.015382763946377501) +zone = ('nvz015', 0.0075918189498420715) + +[89043] +centroid = (0.66769137840711368, -1.9979379628452796) +station = ('kely', 0.018929628093332051) +zone = ('nvz015', 0.011787543475336981) + +[89044] +centroid = (0.62661571768654289, -2.0102517319569975) +station = ('khnd', 0.0013793453763204641) +zone = ('nvz020', 0.0042087788609002025) + +[89045] +centroid = (0.67859382192579154, -2.0414918514773421) +station = ('ktph', 0.014869453061769837) +zone = ('nvz037', 0.013263471496898263) + +[89046] +centroid = (0.61961167649170457, -2.0051753894676945) +station = ('kifp', 0.0076071579365244966) +zone = ('nvz022', 0.0019989375606416166) + +[89047] +centroid = (0.6591401726435524, -2.0533426720049688) +station = ('ktph', 0.0090678919080114124) +zone = ('nvz014', 0.010178927296658794) + +[89048] +centroid = (0.63120431046308367, -2.0246399296044659) +station = ('kdra', 0.0081788449834785532) +zone = ('nvz019', 0.0047245578088490163) + +[89049] +centroid = (0.66945005942788571, -2.0291601752874988) +station = ('kbjn', 0.012905701357431958) +zone = ('nvz040', 0.0061361575753219799) + +[89052] +centroid = (0.62753486043052065, -2.0081181367596046) +station = ('khnd', 0.0011408562914359609) +zone = ('nvz020', 0.0036637721429574632) + +[89054] +centroid = (0.62704807064884693, -2.0107636719331925) +station = ('khnd', 0.0013117320132919705) +zone = ('nvz020', 0.0038110946785443549) + +[89060] +centroid = (0.63505068452192126, -2.0256368965797904) +station = ('kdra', 0.0043383014552907913) +zone = ('nvz017', 0.0025156577575857274) + +[89061] +centroid = (0.62982682680423963, -2.0228074560629197) +station = ('kins', 0.0092642379558468962) +zone = ('nvz019', 0.0040311237247959457) + +[89074] +centroid = (0.62895672781224288, -2.0085410125840704) +station = ('khnd', 0.0013455553189057336) +zone = ('nvz020', 0.0022593010988841448) + +[89081] +centroid = (0.63281949051275677, -2.0089303082737278) +station = ('klsv', 0.0010731058746975121) +zone = ('nvz020', 0.0022140725037824642) + +[89084] +centroid = (0.63350053544017737, -2.010169160430086) +station = ('kvgt', 0.0016962151742124436) +zone = ('nvz020', 0.0026777924415584847) + +[89085] +centroid = (0.63372303001322172, -2.0105859450554622) +station = ('kvgt', 0.0019250754230446224) +zone = ('nvz020', 0.0029245585056047632) + +[89086] +centroid = (0.63341927291020461, -2.0090238753749272) +station = ('klsv', 0.0014761506379318535) +zone = ('nvz020', 0.0027418019716712954) + +[89101] +centroid = (0.6313298869027647, -2.0092619731914843) +station = ('kvgt', 0.00098517766227539626) +zone = ('nvz020', 0.0008561719845566263) + +[89102] +centroid = (0.63085644888986858, -2.0103892464487623) +station = ('kvgt', 0.00095400518689294791) +zone = ('nvz020', 0.0002226507460964217) + +[89103] +centroid = (0.63027038478034136, -2.0108230829409304) +station = ('klas', 0.00077991851200159325) +zone = ('nvz020', 0.00079438562003769663) + +[89104] +centroid = (0.63096017380731473, -2.0090256381574716) +station = ('kvgt', 0.0013515599411734907) +zone = ('nvz020', 0.00089159213717649388) + +[89106] +centroid = (0.63148958452932213, -2.0099774360117544) +station = ('kvgt', 0.00042706054213010491) +zone = ('nvz020', 0.00067591558542810435) + +[89107] +centroid = (0.63130724998236631, -2.0107814044783927) +station = ('kvgt', 0.00062098130308164056) +zone = ('nvz020', 0.00072284088105747056) + +[89108] +centroid = (0.63190109826035734, -2.0110314927069113) +station = ('kvgt', 0.00057473708776680703) +zone = ('nvz020', 0.0013067105314723464) + +[89109] +centroid = (0.63061646611771938, -2.010067460094572) +station = ('kvgt', 0.0012111851485412353) +zone = ('nvz020', 0.00021039553471103225) + +[89110] +centroid = (0.63131046138818991, -2.0079619996047211) +station = ('klsv', 0.0010994103663474221) +zone = ('nvz020', 0.0018066394503773297) + +[89113] +centroid = (0.62938550284958028, -2.0117275823724841) +station = ('klas', 0.00097027381849002165) +zone = ('nvz020', 0.001939263465526193) + +[89115] +centroid = (0.6327453489261321, -2.0078446611191096) +station = ('klsv', 0.00037055354493718032) +zone = ('nvz020', 0.0026564258889284079) + +[89117] +centroid = (0.63077876428486235, -2.0120346032412022) +station = ('klas', 0.00047025122774312707) +zone = ('nvz020', 0.0015494924630155668) + +[89118] +centroid = (0.6296690664931518, -2.010863050980801) +station = ('klas', 0.0010112029301239367) +zone = ('nvz020', 0.0013020612276152639) + +[89119] +centroid = (0.62979713875366328, -2.009679037069541) +station = ('khnd', 0.0019606719051929195) +zone = ('nvz020', 0.001085139030312731) + +[89120] +centroid = (0.62973786737226545, -2.0087946263776777) +station = ('khnd', 0.0019727768020833766) +zone = ('nvz020', 0.0015226038890735793) + +[89121] +centroid = (0.63043950718485975, -2.0087225442795704) +station = ('kvgt', 0.001885998436044979) +zone = ('nvz020', 0.0011894931732203929) + +[89122] +centroid = (0.63017634644024401, -2.0078323041880055) +station = ('klsv', 0.0022168040222229853) +zone = ('nvz020', 0.0019551953511440985) + +[89123] +centroid = (0.6289330087877083, -2.0097252882947183) +station = ('khnd', 0.0011082283717026116) +zone = ('nvz020', 0.0019163451653959737) + +[89124] +centroid = (0.63032290173753402, -2.0178313303792663) +station = ('klas', 0.0048862311496334285) +zone = ('nvz019', 0.002290180505566355) + +[89128] +centroid = (0.63175372265831886, -2.0117427667369765) +station = ('kvgt', 0.0011426997799970965) +zone = ('nvz020', 0.0016091377759753821) + +[89129] +centroid = (0.63239064566224912, -2.0121927126181403) +station = ('kvgt', 0.0016125761743863256) +zone = ('nvz020', 0.0022945032770201493) + +[89130] +centroid = (0.63275109105937111, -2.0110921254451255) +station = ('kvgt', 0.0011254901156015277) +zone = ('nvz020', 0.0020825220267840002) + +[89131] +centroid = (0.63367922224899664, -2.0114219577671673) +station = ('kvgt', 0.0020675284868711076) +zone = ('nvz020', 0.0030440692223634809) + +[89134] +centroid = (0.63185685416381931, -2.012500030192832) +station = ('klas', 0.0016098450979939408) +zone = ('nvz020', 0.0021841036293401067) + +[89135] +centroid = (0.63008087693015991, -2.0136895418912357) +station = ('klas', 0.0015645702529390924) +zone = ('nvz020', 0.0029799554863946093) + +[89138] +centroid = (0.63122642378470639, -2.0134341304084988) +station = ('klas', 0.0015931307666948353) +zone = ('nvz020', 0.0027088136063497963) + +[89139] +centroid = (0.62892381090255034, -2.0108230480343456) +station = ('khnd', 0.0015350235774637074) +zone = ('nvz020', 0.0019832000062186372) + +[89141] +centroid = (0.62811684046959815, -2.0107421869301008) +station = ('khnd', 0.0010611481538620379) +zone = ('nvz020', 0.0027530720560705259) + +[89142] +centroid = (0.63090023920080107, -2.0077627877238986) +station = ('klsv', 0.001491325516048051) +zone = ('nvz020', 0.0019023499242817054) + +[89143] +centroid = (0.63394405850969426, -2.0122450899489928) +station = ('kvgt', 0.002635556551143003) +zone = ('nvz020', 0.0035620336526904456) + +[89144] +centroid = (0.63144069785697376, -2.0127270451686385) +station = ('klas', 0.0013268736872603839) +zone = ('nvz020', 0.0021961679333608211) + +[89145] +centroid = (0.6312452384340429, -2.0119763616040633) +station = ('klas', 0.00090409809733288686) +zone = ('nvz020', 0.0015597852497447994) + +[89146] +centroid = (0.63081857524510032, -2.0110885998800363) +station = ('klas', 0.00072770750610744682) +zone = ('nvz020', 0.00078491013101005707) + +[89147] +centroid = (0.63028719230103825, -2.0120172895750228) +station = ('klas', 0.00020107648040597085) +zone = ('nvz020', 0.001625997060087443) + +[89148] +centroid = (0.62971776117928258, -2.012313506855671) +station = ('klas', 0.00076785335847670273) +zone = ('nvz020', 0.0020908262063873721) + +[89149] +centroid = (0.63307020705980566, -2.0122340071082427) +station = ('kvgt', 0.0019881222253029392) +zone = ('nvz020', 0.0028228369092712789) + +[89156] +centroid = (0.6311705383420575, -2.0069215041178521) +station = ('klsv', 0.0013764975471259901) +zone = ('nvz020', 0.0026031753232466678) + +[89161] +centroid = (0.62832481390326578, -2.0134795089690507) +station = ('klas', 0.0024498844722814412) +zone = ('nvz020', 0.0036918223079663117) + +[89166] +centroid = (0.63496202179591987, -2.0159752948928178) +station = ('kins', 0.0041884153767157871) +zone = ('nvz019', 0.0035137998521651719) + +[89169] +centroid = (0.63048556642381981, -2.0095948423864245) +station = ('kvgt', 0.0014500804233085085) +zone = ('nvz020', 0.00053992229001252774) + +[89178] +centroid = (0.62827784709309464, -2.0121214508247816) +station = ('klas', 0.0020948623955089779) +zone = ('nvz020', 0.0030173036508867085) + +[89179] +centroid = (0.62647788903551294, -2.0129220158993788) +station = ('khnd', 0.003107076317231422) +zone = ('nvz020', 0.0049019606879146015) + +[89183] +centroid = (0.62824613446058586, -2.0098794183209621) +station = ('khnd', 0.00051884624020666651) +zone = ('nvz020', 0.0025840678812655334) + +[89191] +centroid = (0.63249843719685239, -2.0075778526363575) +station = ('klsv', 0.00015160088213129135) +zone = ('nvz020', 0.0026466813434573803) + +[89301] +centroid = (0.69010405890318394, -2.0031228473607641) +station = ('kely', 0.0043246558308249142) +zone = ('nvz035', 0.0024677669571376809) + +[89310] +centroid = (0.68819278374590998, -2.0448761147101293) +station = ('k05u', 0.0158567737220289) +zone = ('nvz037', 0.0068862074250782392) + +[89311] +centroid = (0.68043483012738015, -1.9931672100547082) +station = ('kely', 0.010364532123892113) +zone = ('nvz035', 0.012300596283404745) + +[89314] +centroid = (0.67758580701630211, -2.0206030528577732) +station = ('kp68', 0.013910486552993604) +zone = ('nvz041', 0.004946223492739492) + +[89316] +centroid = (0.69512952504479131, -2.022847109943525) +station = ('k05u', 0.0041900385109638382) +zone = ('nvz037', 0.011487436759746193) + +[89317] +centroid = (0.67715111531280059, -2.0075677297266958) +station = ('kely', 0.0090791847515560853) +zone = ('nvz035', 0.011309536868000009) + +[89318] +centroid = (0.68842280068803019, -2.0038158128869759) +station = ('kely', 0.0025652699618973372) +zone = ('nvz035', 0.0011833328371726802) + +[89319] +centroid = (0.68584967922510753, -2.0067098305861704) +station = ('kely', 0.0017030925102738863) +zone = ('nvz035', 0.0026943120151503219) + +[89402] +centroid = (0.68460662082525225, -2.0944333600103993) +station = ('ktrk', 0.0023865229606127038) +zone = ('nvz002', 0.0011925677159581086) + +[89403] +centroid = (0.6847195959877338, -2.0852898767651737) +station = ('kcxp', 0.0035052724966838072) +zone = ('nvz003', 0.0039999748884638284) + +[89404] +centroid = (0.73134842314925241, -2.0711590628224967) +station = ('kreo', 0.015757350302216391) +zone = ('nvz030', 0.011302670955244478) + +[89405] +centroid = (0.70651915977087099, -2.0843537170609889) +station = ('klol', 0.013517476721557824) +zone = ('nvz005', 0.011492248914383132) + +[89406] +centroid = (0.68985362160881525, -2.0642082192632594) +station = ('knfl', 0.0057914114796691731) +zone = ('nvz004', 0.0090369135115906263) + +[89408] +centroid = (0.6905102493800005, -2.0799721552403199) +station = ('krno', 0.0081051524346220233) +zone = ('nvz003', 0.006989638968628047) + +[89409] +centroid = (0.67721988128532917, -2.0614083795305027) +station = ('knfl', 0.013481386556235481) +zone = ('nvz001', 0.0075340041318721039) + +[89410] +centroid = (0.6784409485366093, -2.0874862514557608) +station = ('kcxp', 0.0058568341747670012) +zone = ('caz072', 0.0051216327283196443) + +[89411] +centroid = (0.68101005574225248, -2.0917808609730959) +station = ('ktvl', 0.0029784919148933189) +zone = ('caz072', 0.0020243265577842059) + +[89412] +centroid = (0.71738153052992293, -2.0890781488132126) +station = ('kaat', 0.013214585526852635) +zone = ('nvz005', 0.00039027035530687904) + +[89413] +centroid = (0.68196030025350085, -2.0930487030483294) +station = ('kcxp', 0.0033073931419742067) +zone = ('caz072', 0.0022728648881581558) + +[89414] +centroid = (0.71636306109821424, -2.045195125990809) +station = ('kwmc', 0.0085377530699011096) +zone = ('nvz036', 0.011577448147928542) + +[89415] +centroid = (0.6716095902179634, -2.0706151135078201) +station = ('kban', 0.012236097395620395) +zone = ('nvz001', 0.0022530690247645176) + +[89418] +centroid = (0.70770099202056636, -2.0600881775777089) +station = ('kwmc', 0.0068769536118839939) +zone = ('nvz004', 0.011107144003008579) + +[89419] +centroid = (0.70467342172700942, -2.0627880273976191) +station = ('klol', 0.0073654280953873354) +zone = ('nvz004', 0.00744924535185096) + +[89420] +centroid = (0.67272939346604299, -2.0634448471550222) +station = ('knfl', 0.016703286572108057) +zone = ('nvz001', 0.005253414721935008) + +[89421] +centroid = (0.73394758492461487, -2.0569717002120553) +station = ('kreo', 0.009272849285865005) +zone = ('nvz030', 0.011746573784466915) + +[89422] +centroid = (0.66632497758901976, -2.0674088040455665) +station = ('kmmh', 0.01109831941588647) +zone = ('caz073', 0.0072618827441748805) + +[89423] +centroid = (0.68100762973459228, -2.0901302681928997) +station = ('kcxp', 0.0030418806523520941) +zone = ('caz072', 0.0031383343074616013) + +[89424] +centroid = (0.69617982928205646, -2.0818994874267123) +station = ('krno', 0.0095885844557200388) +zone = ('nvz003', 0.0096494551133223146) + +[89425] +centroid = (0.72657808923770151, -2.0580263328658654) +station = ('kwmc', 0.012829349180732124) +zone = ('nvz030', 0.0046585077490342384) + +[89426] +centroid = (0.72410127504290389, -2.0494506401328989) +station = ('kwmc', 0.011382973308070692) +zone = ('nvz030', 0.0091001159057592061) + +[89427] +centroid = (0.67878659354167437, -2.070542891783373) +station = ('knfl', 0.0094790532416324583) +zone = ('nvz001', 0.0049892695064559407) + +[89428] +centroid = (0.68523429358414689, -2.0880184197979865) +station = ('kcxp', 0.001786838493355784) +zone = ('nvz003', 0.002703957796213477) + +[89429] +centroid = (0.68634769147387165, -2.0821260486169133) +station = ('krno', 0.0069112645447512227) +zone = ('nvz003', 0.0050893302716317488) + +[89430] +centroid = (0.67675298825712804, -2.0822664952618215) +station = ('kban', 0.0079613199102299189) +zone = ('nvz001', 0.010000455003844062) + +[89431] +centroid = (0.69011013264898091, -2.0900162632861594) +station = ('krno', 0.0010236349364420301) +zone = ('nvz003', 0.0025230832768255843) + +[89433] +centroid = (0.69130636386500521, -2.0904970316819136) +station = ('krts', 0.001693410337090252) +zone = ('nvz003', 0.0037547247507469395) + +[89434] +centroid = (0.69012617222480666, -2.0882891552715557) +station = ('krno', 0.0018669176872239523) +zone = ('nvz003', 0.0022041683908223223) + +[89436] +centroid = (0.69122300693993, -2.0889723295006641) +station = ('krno', 0.0023519159550035511) +zone = ('nvz003', 0.003330606897554338) + +[89438] +centroid = (0.71206887045989986, -2.0436670902306875) +station = ('kwmc', 0.0094939735090292434) +zone = ('nvz036', 0.0074878463924403635) + +[89439] +centroid = (0.6897602464938335, -2.0943916117346912) +station = ('krts', 0.0030674445974102614) +zone = ('nvz002', 0.0054459888267386009) + +[89440] +centroid = (0.68585299535068633, -2.0884385205489417) +station = ('kcxp', 0.0020750795193872867) +zone = ('nvz003', 0.002070673918136656) + +[89441] +centroid = (0.69248332664608758, -2.0887372161971278) +station = ('krts', 0.0026988116731855969) +zone = ('nvz003', 0.0045680950094147852) + +[89442] +centroid = (0.69305836027474221, -2.0841822733685658) +station = ('krno', 0.0061598455419330234) +zone = ('nvz003', 0.0060721897454557956) + +[89444] +centroid = (0.67491557543379854, -2.0836723230677179) +station = ('kban', 0.0058616720627234463) +zone = ('caz072', 0.0092944857712898166) + +[89445] +centroid = (0.71854051641970984, -2.0640947205020019) +station = ('kwmc', 0.0077071417534369576) +zone = ('nvz030', 0.0045984661504797309) + +[89446] +centroid = (0.71937242760767295, -2.0572251918326154) +station = ('kwmc', 0.0056096289061436759) +zone = ('nvz030', 0.0045838118676929428) + +[89447] +centroid = (0.67738458800683976, -2.0792334969942909) +station = ('kban', 0.0096155987462466039) +zone = ('nvz001', 0.0080274933556609522) + +[89448] +centroid = (0.68061707740787336, -2.0929547868812794) +station = ('ktvl', 0.0021678255360542439) +zone = ('caz072', 0.0010903059441117935) + +[89449] +centroid = (0.6798928879413435, -2.0928456165365672) +station = ('ktvl', 0.0015884380518004268) +zone = ('caz072', 0.0007840207508760629) + +[89450] +centroid = (0.68487571568932459, -2.0933329822768942) +station = ('kcxp', 0.0029185087097975586) +zone = ('nvz002', 0.00054836783979634229) + +[89451] +centroid = (0.68489477468475646, -2.0932463615861181) +station = ('kcxp', 0.0028599828888933583) +zone = ('nvz002', 0.00052757907989129543) + +[89460] +centroid = (0.67897240129384162, -2.0907734220222594) +station = ('ktvl', 0.0026133743967106959) +zone = ('caz072', 0.0025176661780382621) + +[89501] +centroid = (0.68985445936685619, -2.0911322268098846) +station = ('krno', 0.00096860863697028341) +zone = ('nvz003', 0.0028677384171750244) + +[89502] +centroid = (0.689253455238932, -2.0899243542477492) +station = ('krno', 0.00033748898766243832) +zone = ('nvz003', 0.0017833830984587944) + +[89503] +centroid = (0.69012133766277872, -2.0916047747048618) +station = ('krno', 0.0014116571325019588) +zone = ('nvz003', 0.0033172779022682519) + +[89506] +centroid = (0.69310731676026072, -2.0912677341730093) +station = ('krts', 0.0010707135804573524) +zone = ('nvz003', 0.0056400312397139217) + +[89508] +centroid = (0.69430248332544131, -2.0928898257265205) +station = ('krts', 0.0020251134012076082) +zone = ('nvz003', 0.0072620945553644777) + +[89509] +centroid = (0.68933449087610199, -2.0913835716754643) +station = ('krno', 0.0008478684193963758) +zone = ('nvz003', 0.0027108284324710535) + +[89510] +centroid = (0.69956114290840776, -2.0876402244023717) +station = ('krts', 0.0080370462803084821) +zone = ('nvz003', 0.011651986907352953) + +[89511] +centroid = (0.68740562279996797, -2.0922467591636229) +station = ('krno', 0.0022644080810912733) +zone = ('nvz002', 0.0030135245179794615) + +[89512] +centroid = (0.69038016999084939, -2.0909199249596719) +station = ('krno', 0.001347232716359825) +zone = ('nvz003', 0.0031402398247784768) + +[89519] +centroid = (0.68906827580529539, -2.0919145008339211) +station = ('krno', 0.0012294721467605856) +zone = ('nvz003', 0.0029555706184719978) + +[89521] +centroid = (0.68740291753962746, -2.0890189821515697) +station = ('krno', 0.0019855051609612693) +zone = ('nvz003', 0.00071418498677377324) + +[89523] +centroid = (0.68982951861184527, -2.0929516627419185) +station = ('krno', 0.0021509257515615592) +zone = ('nvz003', 0.0040070327813069712) + +[89701] +centroid = (0.68295129820278311, -2.0895997928200485) +station = ('kcxp', 0.0010864610749450536) +zone = ('nvz002', 0.0029646989302503741) + +[89702] +centroid = (0.68345517475783402, -2.0897841170423517) +station = ('kcxp', 0.00057987614786545838) +zone = ('nvz002', 0.0026137439705587627) + +[89703] +centroid = (0.68353758920511309, -2.0915121500814586) +station = ('kcxp', 0.0014704152820919976) +zone = ('nvz002', 0.0014074187559322514) + +[89704] +centroid = (0.68526270754436935, -2.0911809738558929) +station = ('kcxp', 0.0016676652922910408) +zone = ('nvz002', 0.0015736120867471982) + +[89705] +centroid = (0.6826274523600756, -2.0919614327375071) +station = ('kcxp', 0.0022317304226585331) +zone = ('nvz002', 0.00195241672418907) + +[89706] +centroid = (0.68456523906868738, -2.0891859054412305) +station = ('kcxp', 0.00067698240400180262) +zone = ('nvz002', 0.0028879400230757001) + +[89801] +centroid = (0.71991325278298834, -2.0204176639846265) +station = ('keko', 0.0072428961312046075) +zone = ('nvz031', 0.0056060730773304698) + +[89815] +centroid = (0.70887128764390606, -2.0175002937800404) +station = ('keko', 0.0045532022352381477) +zone = ('nvz038', 0.0025456041738199597) + +[89820] +centroid = (0.70531587742466839, -2.04163652181904) +station = ('kwmc', 0.013833065679775878) +zone = ('nvz036', 0.003914538237070905) + +[89821] +centroid = (0.70677738123370348, -2.0327563214914779) +station = ('keko', 0.010818576380048881) +zone = ('nvz036', 0.0030880676028920699) + +[89822] +centroid = (0.70739362208599765, -2.0279674870898559) +station = ('keko', 0.0075792255366212338) +zone = ('nvz036', 0.0067643373727525923) + +[89823] +centroid = (0.71571283868538371, -2.0120294196133242) +station = ('keko', 0.0072901027510854522) +zone = ('nvz038', 0.0077860971660689785) + +[89825] +centroid = (0.73087716679792147, -2.0032435368785397) +station = ('ktwf', 0.011258719638804609) +zone = ('idz030', 0.0062303754478786741) + +[89826] +centroid = (0.73112894799581418, -2.0138548943845698) +station = ('ktwf', 0.015591628382549768) +zone = ('nvz031', 0.0066389772647041517) + +[89828] +centroid = (0.71173982353602139, -2.0123028952538191) +station = ('keko', 0.0064997081510728364) +zone = ('nvz034', 0.0043001179139702901) + +[89830] +centroid = (0.72029673652623649, -1.9946792236922959) +station = ('kenv', 0.0099427622278630626) +zone = ('nvz033', 0.010874783237058559) + +[89831] +centroid = (0.72808615843117985, -2.0259521030427003) +station = ('keko', 0.015888969757061191) +zone = ('nvz031', 0.006953889489153783) + +[89832] +centroid = (0.73268948178660742, -2.0273405997291247) +station = ('kmuo', 0.019047262108003411) +zone = ('idz015', 0.0065094972582660972) + +[89833] +centroid = (0.70653579275864242, -2.0129166577385753) +station = ('keko', 0.0085716019434605249) +zone = ('nvz034', 0.001346070438558754) + +[89834] +centroid = (0.7222169477692808, -2.0281331711957473) +station = ('keko', 0.011025158486138534) +zone = ('nvz031', 0.0084321922626725918) + +[89835] +centroid = (0.71758341276450111, -2.004554698025808) +station = ('kenv', 0.012686971348788668) +zone = ('nvz039', 0.0089797982657051374) + +[89883] +centroid = (0.71294401345343483, -1.9924148684273437) +station = ('kenv', 0.0025926478443923508) +zone = ('nvz033', 0.0036410267841545255) + +[90001] +centroid = (0.59295863131145155, -2.0638432709166676) +station = ('kcqt', 0.0011449554933954723) +zone = ('caz041', 0.0010887528284191017) + +[90002] +centroid = (0.5925235556355144, -2.063794890389802) +station = ('khhr', 0.0013758279278010552) +zone = ('caz041', 0.00085913065269245265) + +[90003] +centroid = (0.59278591352867427, -2.0642494788467767) +station = ('khhr', 0.0012062089949834217) +zone = ('caz041', 0.00074521738163086976) + +[90004] +centroid = (0.59474185166150662, -2.0649116393116906) +station = ('kcqt', 0.0008464914487615545) +zone = ('caz041', 0.0025891088319385217) + +[90005] +centroid = (0.5944445348234294, -2.0648447932013392) +station = ('kcqt', 0.00056507090229611433) +zone = ('caz041', 0.002289409087715803) + +[90006] +centroid = (0.59425041930402256, -2.0646228745869482) +station = ('kcqt', 0.00030081226774552521) +zone = ('caz041', 0.0020953015505492572) + +[90007] +centroid = (0.59390295915653557, -2.0644597037551793) +station = ('kcqt', 9.3302192656686078e-05) +zone = ('caz041', 0.0017603918170787478) + +[90008] +centroid = (0.59357865952822253, -2.0655399927489935) +station = ('kcqt', 0.0010065573562078674) +zone = ('caz041', 0.0015718047129993087) + +[90010] +centroid = (0.59449663290160148, -2.0650018204741412) +station = ('kcqt', 0.00068888988250652818) +zone = ('caz041', 0.0023502901669547856) + +[90011] +centroid = (0.59353568952203839, -2.0640033525156603) +station = ('kcqt', 0.00058049287163289048) +zone = ('caz041', 0.0015050938964082008) + +[90012] +centroid = (0.59456168132282328, -2.06365510697001) +station = ('kcqt', 0.00085944760338635569) +zone = ('caz041', 0.0025648767954318174) + +[90013] +centroid = (0.59420441242494015, -2.0636852313528995) +station = ('kcqt', 0.00065496485006222912) +zone = ('caz041', 0.0022235707942356753) + +[90014] +centroid = (0.59416498543713747, -2.0638823139320346) +station = ('kcqt', 0.00048789189680475129) +zone = ('caz041', 0.0021278078981326011) + +[90015] +centroid = (0.59409922143092231, -2.0641363116980771) +station = ('kcqt', 0.00026800950727593912) +zone = ('caz041', 0.0020038894777145043) + +[90016] +centroid = (0.59390641490845464, -2.0656728821182404) +station = ('kcqt', 0.001030728649915315) +zone = ('caz041', 0.0019156413320211842) + +[90017] +centroid = (0.59433545174517977, -2.0641021206980308) +station = ('kcqt', 0.0004384404392417394) +zone = ('caz041', 0.0022400266152492561) + +[90018] +centroid = (0.59391611893909557, -2.065024405034662) +station = ('kcqt', 0.00049571805410168908) +zone = ('caz041', 0.0017757564570991024) + +[90019] +centroid = (0.59428183523055855, -2.065395758739609) +station = ('kcqt', 0.00084772299173567966) +zone = ('caz041', 0.0021950061188837112) + +[90020] +centroid = (0.59457047778225336, -2.0648967691064639) +station = ('kcqt', 0.00069275348616151334) +zone = ('caz041', 0.0024173108642359374) + +[90021] +centroid = (0.59391871947968111, -2.0636401320450277) +station = ('kcqt', 0.00066185063113711193) +zone = ('caz041', 0.0019805286045897433) + +[90022] +centroid = (0.59382607740298521, -2.0622160306418631) +station = ('kemt', 0.0020597876661769049) +zone = ('caz041', 0.0026715212704430764) + +[90023] +centroid = (0.59380467966635586, -2.0629724214330922) +station = ('kcqt', 0.0012256541440407393) +zone = ('caz041', 0.0022005987768884279) + +[90024] +centroid = (0.59455913314211539, -2.0670806821461918) +station = ('ksmo', 0.00088335496900319023) +zone = ('caz547', 0.0025039960489907898) + +[90025] +centroid = (0.59420362702677676, -2.0672695093179652) +station = ('ksmo', 0.0005044330455306785) +zone = ('caz547', 0.0028173924945156157) + +[90026] +centroid = (0.59480850578564026, -2.0640725024606241) +station = ('kcqt', 0.00086797445507568393) +zone = ('caz041', 0.0027071453892591477) + +[90027] +centroid = (0.59563189976685371, -2.0646485309269527) +station = ('kbur', 0.0016329753918857945) +zone = ('caz547', 0.0029817831263065607) + +[90028] +centroid = (0.5951557390403247, -2.0651942081175885) +station = ('kcqt', 0.0013218409726204346) +zone = ('caz547', 0.0028639213903493216) + +[90029] +centroid = (0.59498008910440392, -2.0646313219805279) +station = ('kcqt', 0.00099987285480939705) +zone = ('caz041', 0.0028242559541690354) + +[90031] +centroid = (0.59490956034933085, -2.0630946642939021) +station = ('kcqt', 0.0014384796735438339) +zone = ('caz041', 0.0030687784183451258) + +[90032] +centroid = (0.59477670588666898, -2.0627260507558809) +station = ('kcqt', 0.0016169284671829864) +zone = ('caz548', 0.0030682983790466549) + +[90033] +centroid = (0.5942912425552267, -2.0631884582879043) +station = ('kcqt', 0.0010738140648836145) +zone = ('caz041', 0.0024882923949781106) + +[90034] +centroid = (0.59394563245674681, -2.0664630799370811) +station = ('ksmo', 0.00076824514323900245) +zone = ('caz041', 0.0022936510740829974) + +[90035] +centroid = (0.59431618331023772, -2.0661848919076058) +station = ('ksmo', 0.0011386300599739052) +zone = ('caz041', 0.0024726569621752697) + +[90036] +centroid = (0.59464083200440132, -2.0656043430385145) +station = ('kcqt', 0.0011660265413384978) +zone = ('caz041', 0.0025870453610959249) + +[90037] +centroid = (0.59345947099360385, -2.0645061120599899) +station = ('kcqt', 0.00053761962566544808) +zone = ('caz041', 0.0013157618288238281) + +[90038] +centroid = (0.5949561257337741, -2.0651700353074482) +station = ('kcqt', 0.0011394818315263885) +zone = ('caz041', 0.0028225808339458237) + +[90039] +centroid = (0.59535842412635875, -2.0640360076259654) +station = ('kcqt', 0.0014038818092334988) +zone = ('caz041', 0.0032528537489029193) + +[90040] +centroid = (0.59331637144823279, -2.0621056909265518) +station = ('kemt', 0.0022907037845840621) +zone = ('caz041', 0.0024672151369723129) + +[90041] +centroid = (0.59581023750982243, -2.0631119430534968) +station = ('kcqt', 0.0021208274379662835) +zone = ('caz548', 0.0036033591533758142) + +[90042] +centroid = (0.59541397795644968, -2.0628412599398049) +station = ('kcqt', 0.0019382501922577981) +zone = ('caz548', 0.0032691710083530179) + +[90043] +centroid = (0.59321132008055533, -2.0653590719187318) +station = ('kcqt', 0.0010957436135419097) +zone = ('caz041', 0.0011757748187915813) + +[90044] +centroid = (0.59258682382089922, -2.0645832032530502) +station = ('khhr', 0.00086945157636517697) +zone = ('caz041', 0.00044702985854841502) + +[90045] +centroid = (0.59240153966750742, -2.066775057540875) +station = ('klax', 0.00051772996121313359) +zone = ('caz041', 0.0017130268253034943) + +[90046] +centroid = (0.5953048425183225, -2.0658080229622224) +station = ('kbur', 0.0015991338018540081) +zone = ('caz547', 0.0023861763619911912) + +[90047] +centroid = (0.59260240961111954, -2.0648716014586501) +station = ('khhr', 0.00073889401804755187) +zone = ('caz041', 0.000460275722033856) + +[90048] +centroid = (0.59468470958179642, -2.0659935340084168) +station = ('kcqt', 0.001465542271553681) +zone = ('caz041', 0.0027356425953358899) + +[90049] +centroid = (0.59501466407688586, -2.0680623425839757) +station = ('ksmo', 0.0014410366108943114) +zone = ('caz547', 0.0019698160221882175) + +[90056] +centroid = (0.59320332647258123, -2.0659525362242874) +station = ('klax', 0.0009732229945266721) +zone = ('caz041', 0.0014561733182062192) + +[90057] +centroid = (0.59448942469179067, -2.0643188382312507) +station = ('kcqt', 0.00050474306187108702) +zone = ('caz041', 0.0023573290333407347) + +[90058] +centroid = (0.59346158284199879, -2.0632654098546244) +station = ('kcqt', 0.0011048713392893762) +zone = ('caz041', 0.0017833317250799988) + +[90059] +centroid = (0.59212497479423654, -2.0638497984480697) +station = ('khhr', 0.0012201420759244575) +zone = ('caz041', 0.00073228146040540292) + +[90061] +centroid = (0.5920380224909022, -2.0642739658161822) +station = ('khhr', 0.00086041970277110646) +zone = ('caz041', 0.00039786089488064034) + +[90062] +centroid = (0.59347544075625969, -2.0648781988032225) +station = ('kcqt', 0.00063592767646704937) +zone = ('caz041', 0.0013239900063487767) + +[90063] +centroid = (0.59419917643718412, -2.0627333287788616) +station = ('kcqt', 0.0014238524849282922) +zone = ('caz041', 0.0026296915723720352) + +[90064] +centroid = (0.59406209827773238, -2.0668812608258591) +station = ('ksmo', 0.00052459071167171355) +zone = ('caz041', 0.0026089997190545315) + +[90065] +centroid = (0.59537146173587108, -2.063424165003386) +station = ('kcqt', 0.0016116210663512653) +zone = ('caz041', 0.0033921260795730314) + +[90066] +centroid = (0.59344734095530249, -2.0670048824967777) +station = ('ksmo', 0.00037894800157309749) +zone = ('caz041', 0.0022847253989525373) + +[90067] +centroid = (0.59441720296734324, -2.0667141455499807) +station = ('ksmo', 0.00088399799830296273) +zone = ('caz547', 0.00273173654186711) + +[90068] +centroid = (0.59567689435497018, -2.0652653651911925) +station = ('kbur', 0.0013295969244603223) +zone = ('caz547', 0.0025132137245442907) + +[90069] +centroid = (0.59504955320863329, -2.0661503867482938) +station = ('ksmo', 0.0016700688422993421) +zone = ('caz547', 0.0023936480062611673) + +[90071] +centroid = (0.59433480597335653, -2.0639381121082208) +station = ('kcqt', 0.00053377620181609315) +zone = ('caz041', 0.0022749326321624156) + +[90073] +centroid = (0.59436372607906207, -2.0674651956336985) +station = ('ksmo', 0.00066866792873929821) +zone = ('caz547', 0.0026347271186829119) + +[90077] +centroid = (0.59530627368830913, -2.0674660857516169) +station = ('ksmo', 0.0016067051280370115) +zone = ('caz547', 0.001703562585979732) + +[90079] +centroid = (0.59412032246157898, -2.0639461580760723) +station = ('kcqt', 0.00042332000646914475) +zone = ('caz041', 0.0020684455602604109) + +[90089] +centroid = (0.59376486870611778, -2.0644807698792507) +station = ('kcqt', 0.00023216602457385438) +zone = ('caz041', 0.0016212025203211852) + +[90090] +centroid = (0.59468362747766013, -2.0636945688643973) +station = ('kcqt', 0.00092244212184749595) +zone = ('caz041', 0.0026688109042709725) + +[90094] +centroid = (0.59298287393476179, -2.0667663483479077) +station = ('ksmo', 0.00086401018388658349) +zone = ('caz041', 0.0018791223273224779) + +[90095] +centroid = (0.59465657487425427, -2.0672298379840672) +station = ('ksmo', 0.00095829871642495691) +zone = ('caz547', 0.0023797521836101047) + +[90201] +centroid = (0.59289433338180808, -2.0624794531858663) +station = ('kcqt', 0.0019578520195154981) +zone = ('caz041', 0.0020083601344430364) + +[90210] +centroid = (0.59520317708939374, -2.0667485983494145) +station = ('ksmo', 0.0015789595411106899) +zone = ('caz547', 0.0020003247822101716) + +[90211] +centroid = (0.59454567665358249, -2.0661727618693044) +station = ('ksmo', 0.0012844868904468365) +zone = ('caz041', 0.0026708334507898283) + +[90212] +centroid = (0.59449771500573767, -2.0665041475343804) +station = ('ksmo', 0.0010556736207473867) +zone = ('caz547', 0.0027235488618004788) + +[90220] +centroid = (0.59134390504738399, -2.0635804592379023) +station = ('khhr', 0.0015583554245405275) +zone = ('caz041', 0.0012545252693891217) + +[90221] +centroid = (0.59141570789281106, -2.0630824644424304) +station = ('klgb', 0.0014510093407310851) +zone = ('caz041', 0.0015564880540827062) + +[90222] +centroid = (0.59188034944627699, -2.0636209857831336) +station = ('khhr', 0.0014007054983935854) +zone = ('caz041', 0.00096215796439071285) + +[90230] +centroid = (0.59338075664433887, -2.0663661443504253) +station = ('ksmo', 0.00087109324675545198) +zone = ('caz041', 0.0018263592175455606) + +[90232] +centroid = (0.59374919564943496, -2.0663284975984597) +station = ('ksmo', 0.00084174484292504515) +zone = ('caz041', 0.0020709727276946176) + +[90240] +centroid = (0.59263927096492164, -2.0615540447098741) +station = ('klgb', 0.0024700470763099934) +zone = ('caz548', 0.0028385186435903034) + +[90241] +centroid = (0.59238017683746302, -2.0617334994635641) +station = ('klgb', 0.0021900074854834884) +zone = ('caz041', 0.0024973459631863417) + +[90242] +centroid = (0.59204697602996481, -2.0619422408421024) +station = ('klgb', 0.001839863356163851) +zone = ('caz041', 0.0023170465607775634) + +[90245] +centroid = (0.5919657658598696, -2.066544307560469) +station = ('klax', 0.00041447174531997519) +zone = ('caz041', 0.0015163781438751458) + +[90247] +centroid = (0.59150697115939777, -2.0646890225655987) +station = ('khhr', 0.00068223299670003605) +zone = ('caz041', 0.00065103732608493134) + +[90248] +centroid = (0.59125614989259379, -2.0644465963324969) +station = ('khhr', 0.0010005457964253077) +zone = ('caz041', 0.00093141800945306717) + +[90249] +centroid = (0.59169087650268037, -2.0649984694419774) +station = ('khhr', 0.00036925703455528708) +zone = ('caz041', 0.00051614980204583419) + +[90250] +centroid = (0.59192448882305981, -2.0655637117735282) +station = ('khhr', 0.00021616704124804997) +zone = ('caz041', 0.00072869208280386096) + +[90254] +centroid = (0.59104281829812233, -2.0664576694163999) +station = ('klax', 0.0012275713432739971) +zone = ('caz041', 0.00181507184040024) + +[90255] +centroid = (0.59302849684140879, -2.0632783427443817) +station = ('kcqt', 0.0013597249630141251) +zone = ('caz041', 0.0014873949085018011) + +[90260] +centroid = (0.5914669507596495, -2.0656288125546278) +station = ('khhr', 0.00055884212652348227) +zone = ('caz041', 0.0010153071670758497) + +[90262] +centroid = (0.59207734475894958, -2.0629914804285239) +station = ('khhr', 0.0019245948857812593) +zone = ('caz041', 0.0014459875002831685) + +[90263] +centroid = (0.59409321749829558, -2.0718453088310884) +station = ('kvny', 0.0044885175158322988) +zone = ('caz046', 0.00082605731756088237) + +[90265] +centroid = (0.59456590501961315, -2.0742599718512227) +station = ('kcma', 0.0043155471228514359) +zone = ('caz046', 0.0022842560504260602) + +[90266] +centroid = (0.59147726565552883, -2.0665069575144761) +station = ('klax', 0.00081776496008233418) +zone = ('caz041', 0.0016227613600040798) + +[90270] +centroid = (0.59319777632555981, -2.0627452493776528) +station = ('kcqt', 0.001610049639294785) +zone = ('caz041', 0.0019486647531093409) + +[90272] +centroid = (0.59493841064186626, -2.0689871576480225) +station = ('ksmo', 0.0018394177397385982) +zone = ('caz547', 0.0022409837902419311) + +[90274] +centroid = (0.58957335578769832, -2.0659890659655318) +station = ('ktoa', 0.00066562375555626507) +zone = ('caz041', 0.0027867902220068755) + +[90275] +centroid = (0.58910353060635401, -2.0659018867693946) +station = ('ktoa', 0.00095594151179697554) +zone = ('caz041', 0.0032045320175016034) + +[90277] +centroid = (0.59044499066943679, -2.0662451057667992) +station = ('ktoa', 0.00093951230459538232) +zone = ('caz041', 0.0021237423672136979) + +[90278] +centroid = (0.59119911253263846, -2.0659525013177023) +station = ('khhr', 0.00092891649593508272) +zone = ('caz041', 0.0013945363096004959) + +[90280] +centroid = (0.59243733637046592, -2.0628528314727457) +station = ('kcqt', 0.0020347680129868006) +zone = ('caz041', 0.0015836458731366113) + +[90290] +centroid = (0.59529215397466051, -2.0702394139330362) +station = ('kvny', 0.0026990469023271133) +zone = ('caz046', 0.0011451012552139872) + +[90291] +centroid = (0.59329668413427028, -2.067607666860539) +station = ('ksmo', 0.00046182132869347463) +zone = ('caz041', 0.0026437974093218614) + +[90292] +centroid = (0.59304554870820092, -2.0674795422401502) +station = ('ksmo', 0.00066703268614157814) +zone = ('caz041', 0.0024465240132689513) + +[90293] +centroid = (0.59249224442873361, -2.0671651909885731) +station = ('klax', 0.00085377278415662032) +zone = ('caz041', 0.0020467440840041648) + +[90301] +centroid = (0.59265318123905997, -2.0657481930754642) +station = ('klax', 0.00053995076626410564) +zone = ('caz041', 0.00097855353089218227) + +[90302] +centroid = (0.59298140785819009, -2.0656888344276036) +station = ('klax', 0.00083820357673247616) +zone = ('caz041', 0.0011446392730008659) + +[90303] +centroid = (0.59236066405642573, -2.0652670407072744) +station = ('khhr', 0.00040447205767582778) +zone = ('caz041', 0.00048876865537875939) + +[90304] +centroid = (0.59232786931978088, -2.0657465524659671) +station = ('klax', 0.00036744035478466055) +zone = ('caz041', 0.00085933914586497156) + +[90305] +centroid = (0.59269444082257716, -2.065257668289191) +station = ('khhr', 0.00073803901697483464) +zone = ('caz041', 0.00069233629825404971) + +[90401] +centroid = (0.5936504623736496, -2.0681060805350309) +station = ('ksmo', 0.00063508779129596614) +zone = ('caz547', 0.0033332052651324343) + +[90402] +centroid = (0.59401698151656845, -2.0682856574617685) +station = ('ksmo', 0.00084244191640395389) +zone = ('caz547', 0.0029811455616180174) + +[90403] +centroid = (0.59394872168952284, -2.0680773000556654) +station = ('ksmo', 0.0006567732172019598) +zone = ('caz547', 0.0030340579263738779) + +[90404] +centroid = (0.59387634288544278, -2.0677551471823321) +station = ('ksmo', 0.00038350845781499914) +zone = ('caz041', 0.003040228007542604) + +[90405] +centroid = (0.59360684659564222, -2.0676851071194498) +station = ('ksmo', 0.00029977159886040609) +zone = ('caz041', 0.0028464239123559545) + +[90501] +centroid = (0.59051023107687639, -2.0649692351770064) +station = ('ktoa', 0.00065212648127847589) +zone = ('caz041', 0.00165860900265315) + +[90502] +centroid = (0.59050040487318767, -2.0645859608732686) +station = ('ktoa', 0.00083278491852467899) +zone = ('caz041', 0.0016610486165923987) + +[90503] +centroid = (0.59062638273859658, -2.065661991263708) +station = ('ktoa', 0.000764520446723754) +zone = ('caz041', 0.0017145462152619892) + +[90504] +centroid = (0.59109514326909729, -2.065261961799151) +station = ('khhr', 0.00086314574896798903) +zone = ('caz041', 0.0011495781119342826) + +[90505] +centroid = (0.59005885402572555, -2.0655615126586708) +station = ('ktoa', 0.00025279236847283607) +zone = ('caz041', 0.0022084895335408665) + +[90506] +centroid = (0.59139951123735246, -2.0652480689783053) +station = ('khhr', 0.00056008136823942163) +zone = ('caz041', 0.00087045214621322791) + +[90601] +centroid = (0.59354877949142848, -2.0600168459711798) +station = ('kemt', 0.0013183512811251947) +zone = ('caz548', 0.001298796272808718) + +[90602] +centroid = (0.59292730265137827, -2.0598822112726811) +station = ('kful', 0.0019280522431160808) +zone = ('caz548', 0.0017772752804245467) + +[90603] +centroid = (0.59245756473649647, -2.0593500429304554) +station = ('kful', 0.0013785407201692031) +zone = ('caz548', 0.002117618309411675) + +[90604] +centroid = (0.59218504902709013, -2.0596993531269496) +station = ('kful', 0.0011763872897827034) +zone = ('caz548', 0.0024373515841206142) + +[90605] +centroid = (0.59254442977336819, -2.0599135399327544) +station = ('kful', 0.0015758880203469139) +zone = ('caz548', 0.0021428768917622393) + +[90606] +centroid = (0.59301526724567877, -2.0606467702048099) +station = ('kemt', 0.0019117762113593313) +zone = ('caz548', 0.0020432491824421378) + +[90620] +centroid = (0.59072940952434183, -2.0597018838543653) +station = ('kful', 0.0005492570405568188) +zone = ('caz548', 0.0038694118934221029) + +[90621] +centroid = (0.59121674035808358, -2.0593727671173165) +station = ('kful', 0.00019632579226040075) +zone = ('caz548', 0.0033538678997878332) + +[90623] +centroid = (0.59080274825951062, -2.0601847640985143) +station = ('kful', 0.00086691181610582023) +zone = ('caz548', 0.0038758303272135339) + +[90630] +centroid = (0.59024377165997444, -2.0601571006298705) +station = ('ksli', 0.00063638485839713238) +zone = ('caz042', 0.0041313269035810141) + +[90631] +centroid = (0.59241201164301949, -2.0586591892526389) +station = ('kful', 0.0014003901619620482) +zone = ('caz548', 0.0021686600149113111) + +[90638] +centroid = (0.59170230840928106, -2.0596449163075801) +station = ('kful', 0.00072051870215183533) +zone = ('caz548', 0.0029012911394053183) + +[90640] +centroid = (0.59368149432775008, -2.061426042262533) +station = ('kemt', 0.0016327279610299933) +zone = ('caz548', 0.0021696378551892674) + +[90650] +centroid = (0.59178802152884646, -2.0609308574471568) +station = ('kful', 0.0016014606705981771) +zone = ('caz548', 0.0031870381228407906) + +[90660] +centroid = (0.59322910498563319, -2.0610470789220474) +station = ('kemt', 0.0018264421546974963) +zone = ('caz548', 0.0021351202746931106) + +[90670] +centroid = (0.59225243618950962, -2.0605812854512751) +station = ('kful', 0.0016377479115401538) +zone = ('caz548', 0.0026400509814032327) + +[90680] +centroid = (0.58994184715267184, -2.0593995230147497) +station = ('ksli', 0.00085773780199835566) +zone = ('caz042', 0.0034348317279035401) + +[90701] +centroid = (0.59110112974843165, -2.0608954621699267) +station = ('klgb', 0.0013423891537987208) +zone = ('caz548', 0.003787447104505503) + +[90703] +centroid = (0.59110896627677301, -2.0606964248220292) +station = ('kful', 0.0012447286750423071) +zone = ('caz548', 0.0037158337460861286) + +[90704] +centroid = (0.58290033373879324, -2.0671903411830943) +station = ('kavx', 0.00036085431590155066) +zone = ('caz087', 0.00029929782688835305) + +[90706] +centroid = (0.59145405277647733, -2.0617094488264716) +station = ('klgb', 0.0012849105986461175) +zone = ('caz041', 0.0026047542489913999) + +[90710] +centroid = (0.58991961165800144, -2.0647011351506075) +station = ('ktoa', 0.00050287031097066056) +zone = ('caz041', 0.0022375842241266005) + +[90712] +centroid = (0.59077709191950634, -2.0620698942235935) +station = ('klgb', 0.00056573479272064263) +zone = ('caz041', 0.0026049882065906829) + +[90713] +centroid = (0.59075885322882293, -2.0614537755443472) +station = ('klgb', 0.00076996521792221614) +zone = ('caz041', 0.0030591461642733297) + +[90715] +centroid = (0.59063734340629903, -2.06086978837663) +station = ('ksli', 0.0010920229801199691) +zone = ('caz041', 0.0035478024613912825) + +[90716] +centroid = (0.59045286210436332, -2.0607563070686647) +station = ('ksli', 0.00088557169745714351) +zone = ('caz041', 0.0037142838922506185) + +[90717] +centroid = (0.58981323384009243, -2.0650241781418592) +station = ('ktoa', 0.00025813540998328603) +zone = ('caz041', 0.0023563882103989019) + +[90720] +centroid = (0.5898342301509939, -2.060582699167969) +station = ('ksli', 0.00027466378135747749) +zone = ('caz041', 0.0041550187220294821) + +[90723] +centroid = (0.59164712109833295, -2.0623967420326146) +station = ('klgb', 0.0014550453964328565) +zone = ('caz041', 0.0020035391054056724) + +[90731] +centroid = (0.58872472434550116, -2.0643556995850529) +station = ('ktoa', 0.0014339574150729923) +zone = ('caz041', 0.0034464957349878518) + +[90732] +centroid = (0.58891109060302904, -2.0649492686103637) +station = ('ktoa', 0.0010528869791341868) +zone = ('caz041', 0.0032510002347875674) + +[90740] +centroid = (0.58919531747171638, -2.0607982647838829) +station = ('ksli', 0.00056683902283789734) +zone = ('caz041', 0.0044095124025726662) + +[90742] +centroid = (0.58846683449522641, -2.0608307802678474) +station = ('ksli', 0.0012273298970302098) +zone = ('caz041', 0.0049111134301090863) + +[90743] +centroid = (0.58863874942654781, -2.0610650209067578) +station = ('ksli', 0.001151439378750375) +zone = ('caz041', 0.0046535319470137814) + +[90744] +centroid = (0.58955972476624019, -2.0640564454315062) +station = ('ktoa', 0.0010998484749099059) +zone = ('caz041', 0.0026571388390413766) + +[90745] +centroid = (0.59029836555897675, -2.064098141347336) +station = ('ktoa', 0.0010723062131528611) +zone = ('caz041', 0.0019316389880829376) + +[90746] +centroid = (0.59095401594578101, -2.0638914943639) +station = ('khhr', 0.0015447778636622949) +zone = ('caz041', 0.0013904912404728805) + +[90747] +centroid = (0.59101909927358787, -2.0638748439228358) +station = ('khhr', 0.0015141168473468902) +zone = ('caz041', 0.0013418453361438102) + +[90755] +centroid = (0.58998146612669222, -2.0624230266911496) +station = ('klgb', 0.00034984242396632158) +zone = ('caz041', 0.002899546934523291) + +[90802] +centroid = (0.58897465549438666, -2.0631195352357432) +station = ('klgb', 0.001496798472757655) +zone = ('caz041', 0.0034525910219934982) + +[90803] +centroid = (0.58915838630474415, -2.0617685456749442) +station = ('klgb', 0.001090582297979532) +zone = ('caz041', 0.0038792057454492112) + +[90804] +centroid = (0.5896016475748731, -2.0620779750980303) +station = ('klgb', 0.00061098815480696805) +zone = ('caz041', 0.0033743144615981575) + +[90805] +centroid = (0.59104906657684464, -2.0626400060237575) +station = ('klgb', 0.00094696249922635067) +zone = ('caz041', 0.0020594732618699194) + +[90806] +centroid = (0.59001972374389577, -2.0627801385094) +station = ('klgb', 0.00059186372361371483) +zone = ('caz041', 0.0026820623510966485) + +[90807] +centroid = (0.59040544150858654, -2.0625397019516454) +station = ('klgb', 0.00040849281393507965) +zone = ('caz041', 0.0025257425436704269) + +[90808] +centroid = (0.5903391713568884, -2.0614316796760166) +station = ('klgb', 0.0005748450472437504) +zone = ('caz041', 0.0032879131683437217) + +[90810] +centroid = (0.59026710671207361, -2.0633704088624243) +station = ('klgb', 0.0010514912161274043) +zone = ('caz041', 0.0022020277555262848) + +[90813] +centroid = (0.58961164831148716, -2.0629232031481859) +station = ('klgb', 0.00090620946327494103) +zone = ('caz041', 0.0029553590560100775) + +[90814] +centroid = (0.58942589291919734, -2.061995351211241) +station = ('klgb', 0.00079169054067938305) +zone = ('caz041', 0.003552865638804715) + +[90815] +centroid = (0.58982264116476069, -2.0615199235229973) +station = ('klgb', 0.00062394648395439046) +zone = ('caz041', 0.0035442281843403459) + +[90822] +centroid = (0.58954492437418327, -2.0615593156042151) +station = ('klgb', 0.00080746385349372992) +zone = ('caz041', 0.0037098764498154869) + +[90831] +centroid = (0.5893686810263169, -2.0630077818037376) +station = ('klgb', 0.0011280491130546894) +zone = ('caz041', 0.0031343893429979538) + +[91001] +centroid = (0.59682013737490403, -2.0618835803259432) +station = ('kmws', 0.0012158649101808694) +zone = ('caz548', 0.0032694060613977448) + +[91006] +centroid = (0.59579009641025449, -2.0599545900767615) +station = ('kemt', 0.00092866406717480375) +zone = ('caz548', 0.0014495168294754823) + +[91007] +centroid = (0.59565092385570051, -2.0603215979118708) +station = ('kemt', 0.00081166254707326125) +zone = ('caz548', 0.001528028535633445) + +[91008] +centroid = (0.59608507450713411, -2.0589442887859519) +station = ('kemt', 0.0015343384815445804) +zone = ('caz548', 0.0015281443312025269) + +[91010] +centroid = (0.59588308755280073, -2.0587489689893612) +station = ('kemt', 0.0014934733753113911) +zone = ('caz548', 0.0013449255178229222) + +[91011] +centroid = (0.59729113192684724, -2.0630728825848372) +station = ('kbur', 0.0023602668715477118) +zone = ('caz054', 0.0036241782599917153) + +[91016] +centroid = (0.59607880877511932, -2.0594969298403036) +station = ('kemt', 0.0013020318309409462) +zone = ('caz548', 0.0015683180795035268) + +[91020] +centroid = (0.59710054197252938, -2.0635141541796189) +station = ('kbur', 0.001973230292386031) +zone = ('caz547', 0.0035997280009407305) + +[91024] +centroid = (0.59635755530995538, -2.0603649518904903) +station = ('kmws', 0.0011515753539578903) +zone = ('caz548', 0.0021107650942756044) + +[91030] +centroid = (0.5953136040711674, -2.0622219647613198) +station = ('kemt', 0.001837061427694166) +zone = ('caz548', 0.0027482416904426859) + +[91040] +centroid = (0.59798404509318137, -2.0653541849968264) +station = ('kwhp', 0.00094545784899412448) +zone = ('caz547', 0.0023064410064194329) + +[91042] +centroid = (0.5990357455938482, -2.0636409523497763) +station = ('kwhp', 0.002655535406534021) +zone = ('caz054', 0.001882945136820432) + +[91046] +centroid = (0.59710247928799909, -2.0636953891691459) +station = ('kbur', 0.0018243724891232505) +zone = ('caz547', 0.0034500045156454851) + +[91101] +centroid = (0.59597183754526462, -2.0619224837149699) +station = ('kmws', 0.0018417628637736694) +zone = ('caz548', 0.0027799548804635825) + +[91103] +centroid = (0.59637094198531826, -2.0623672808748408) +station = ('kmws', 0.0018033723396730455) +zone = ('caz548', 0.003303390301698796) + +[91104] +centroid = (0.59629842355489782, -2.061648397209237) +station = ('kmws', 0.0014441435715140643) +zone = ('caz548', 0.0027788053859759388) + +[91105] +centroid = (0.59584598185290338, -2.062397091098465) +station = ('kemt', 0.002161223826454848) +zone = ('caz548', 0.0030699967885704236) + +[91106] +centroid = (0.59584496956193711, -2.0617340230623395) +station = ('kemt', 0.0016896992915796504) +zone = ('caz548', 0.0025813396649842497) + +[91107] +centroid = (0.59614158826831354, -2.0609872839418739) +station = ('kmws', 0.0013711190567530743) +zone = ('caz548', 0.002264636277659922) + +[91108] +centroid = (0.59555295852478596, -2.061459186065028) +station = ('kemt', 0.0013393976369700576) +zone = ('caz548', 0.0022430556942255537) + +[91201] +centroid = (0.59638790658564755, -2.0645405997660093) +station = ('kbur', 0.0012277463671575774) +zone = ('caz547', 0.0028119600261914887) + +[91202] +centroid = (0.59634280727777611, -2.0641579537808021) +station = ('kbur', 0.0015367913675819469) +zone = ('caz547', 0.0031310304669743875) + +[91203] +centroid = (0.59608819864649509, -2.0640782795004484) +station = ('kbur', 0.0017044070981403882) +zone = ('caz547', 0.0032560155961603643) + +[91204] +centroid = (0.59578897939953324, -2.0640426747837077) +station = ('kcqt', 0.0018242213301201953) +zone = ('caz547', 0.0033779978446498559) + +[91205] +centroid = (0.59579571637044593, -2.0637792173331193) +station = ('kcqt', 0.0018817343102435643) +zone = ('caz547', 0.0035806181842774612) + +[91206] +centroid = (0.59621073821327764, -2.0632194902420045) +station = ('kcqt', 0.0024343384880979452) +zone = ('caz547', 0.0039182653756049532) + +[91207] +centroid = (0.59659504226127424, -2.0640773719292373) +station = ('kbur', 0.0015289926018385842) +zone = ('caz547', 0.0031556656778871572) + +[91208] +centroid = (0.59665532593363813, -2.0636689997908557) +station = ('kbur', 0.0018520757589141836) +zone = ('caz547', 0.0034850347754852608) + +[91210] +centroid = (0.59593494128487745, -2.063965409057722) +station = ('kbur', 0.0018619139183968737) +zone = ('caz547', 0.0033900588916773019) + +[91214] +centroid = (0.59753619360711974, -2.063837616049891) +station = ('kbur', 0.001810029749443011) +zone = ('caz547', 0.0033761545546294788) + +[91301] +centroid = (0.59556369229968575, -2.0727275553146791) +station = ('kvny', 0.0042953242272267128) +zone = ('caz046', 0.0012080730907867196) + +[91302] +centroid = (0.59556411117870622, -2.0712001653263816) +station = ('kvny', 0.0031624493535003669) +zone = ('caz046', 0.00073940071192990552) + +[91303] +centroid = (0.59687279395843673, -2.0699764277213455) +station = ('kvny', 0.0017271790102852736) +zone = ('caz547', 0.0017499739243382894) + +[91304] +centroid = (0.59732806309381936, -2.070530447585806) +station = ('kvny', 0.0021591869860880437) +zone = ('caz547', 0.002232373154091913) + +[91306] +centroid = (0.59706896896636086, -2.069568893341005) +station = ('kvny', 0.0013657088998221194) +zone = ('caz547', 0.0014126314703394596) + +[91307] +centroid = (0.59691714277472985, -2.0710932115498193) +station = ('kvny', 0.0026352232384861196) +zone = ('caz046', 0.0020723189657755334) + +[91311] +centroid = (0.59854569204647323, -2.0700282640001295) +station = ('kvny', 0.0022028721940338721) +zone = ('caz547', 0.0023786829798406492) + +[91316] +centroid = (0.59620859145829763, -2.0684852009551493) +station = ('kvny', 0.0010887242030693668) +zone = ('caz547', 0.0009247923135292745) + +[91320] +centroid = (0.59648318410951395, -2.0759839382731724) +station = ('kcma', 0.0021179271757970296) +zone = ('caz045', 0.0020374894940911139) + +[91321] +centroid = (0.59983667718758837, -2.0680238231673842) +station = ('kwhp', 0.0024283853270800834) +zone = ('caz088', 0.0017886041193000979) + +[91324] +centroid = (0.59756945958266272, -2.0690928896941085) +station = ('kvny', 0.0010367927236610715) +zone = ('caz547', 0.0011756579733160921) + +[91325] +centroid = (0.59754284331156982, -2.0685221321221214) +station = ('kvny', 0.00060530777477346806) +zone = ('caz547', 0.00078439264852416056) + +[91326] +centroid = (0.59832480317634085, -2.0691926352608601) +station = ('kvny', 0.0015424196089963095) +zone = ('caz547', 0.0017379582720540077) + +[91330] +centroid = (0.59773219408211864, -2.0686702756690307) +station = ('kvny', 0.00081890256096597727) +zone = ('caz547', 0.00100666047138404) + +[91331] +centroid = (0.59787024962595148, -2.0668418338380561) +station = ('kwhp', 0.00032181660521989053) +zone = ('caz547', 0.0012294057417250354) + +[91335] +centroid = (0.59690565850825172, -2.0689300155683124) +station = ('kvny', 0.00088014098687556191) +zone = ('caz547', 0.00088430145039801629) + +[91340] +centroid = (0.59841561265732213, -2.067082060956301) +station = ('kwhp', 0.00081610385652310579) +zone = ('caz547', 0.0015766760203663995) + +[91342] +centroid = (0.59911348255873198, -2.0661602478585674) +station = ('kwhp', 0.0013624396034575765) +zone = ('caz547', 0.0025583539670152467) + +[91343] +centroid = (0.59756429340807682, -2.0679063450554325) +station = ('kvny', 0.00037109725978783738) +zone = ('caz547', 0.00058766676563264228) + +[91344] +centroid = (0.59855394745383517, -2.0683373541142127) +station = ('kvny', 0.0014026432557943972) +zone = ('caz547', 0.0016240594480761612) + +[91345] +centroid = (0.5980523921866896, -2.0674688782784201) +station = ('kvny', 0.0009377820700643267) +zone = ('caz547', 0.0011233706843273208) + +[91350] +centroid = (0.60110694527048236, -2.0682456545153127) +station = ('kwhp', 0.0036400313722681605) +zone = ('caz088', 0.0008371696816497395) + +[91351] +centroid = (0.60111630023527296, -2.0673091282919853) +station = ('kwhp', 0.0034121380169770785) +zone = ('caz088', 0.0015942548287223362) + +[91352] +centroid = (0.59744110806947104, -2.0658739091414851) +station = ('kbur', 0.00053863097565699889) +zone = ('caz547', 0.00170991863598316) + +[91354] +centroid = (0.60154090393569826, -2.0691539587646357) +station = ('kwhp', 0.0043691942153127432) +zone = ('caz088', 0.00022360357121159881) + +[91355] +centroid = (0.60108687398408445, -2.0705681466976493) +station = ('kvny', 0.0044637969080626302) +zone = ('caz088', 0.0011324238067865666) + +[91356] +centroid = (0.5961188989880376, -2.0690451200324813) +station = ('kvny', 0.0014193029910667546) +zone = ('caz547', 0.0013006329355459961) + +[91360] +centroid = (0.59712597141973089, -2.07488537568209) +station = ('kcma', 0.0029040537767266702) +zone = ('caz045', 0.00094033204705405639) + +[91361] +centroid = (0.59578658829845799, -2.075002906153919) +station = ('kcma', 0.0031401628071956182) +zone = ('caz045', 0.0021733832768008371) + +[91362] +centroid = (0.59678617326766015, -2.073777143966951) +station = ('kcma', 0.0038417996251073074) +zone = ('caz045', 0.0010989551108019067) + +[91364] +centroid = (0.59609509269704053, -2.0698454407609832) +station = ('kvny', 0.0019318790471289766) +zone = ('caz046', 0.0018507723260713759) + +[91367] +centroid = (0.59651981857051339, -2.0702347539039332) +station = ('kvny', 0.0020262775565031998) +zone = ('caz046', 0.0019613332014855921) + +[91371] +centroid = (0.59663410272993389, -2.0695437955063611) +station = ('kvny', 0.0014515780473241579) +zone = ('caz547', 0.0014309779857694729) + +[91377] +centroid = (0.59664036846194857, -2.072873761546119) +station = ('kvny', 0.0041307825028754023) +zone = ('caz045', 0.0015975983425289464) + +[91381] +centroid = (0.60012352205015373, -2.0707810943196852) +station = ('kvny', 0.0037622659620274593) +zone = ('caz088', 0.0017579771163583463) + +[91384] +centroid = (0.60225425490757334, -2.0716892065827901) +station = ('ksdb', 0.0042551899358902398) +zone = ('caz088', 0.002233122286340219) + +[91387] +centroid = (0.60043668647783899, -2.0659890310589466) +station = ('kwhp', 0.0026908745245238382) +zone = ('caz054', 0.0022025067775617644) + +[91390] +centroid = (0.60293423518415035, -2.0668205582744745) +station = ('kwjf', 0.0043898142805253327) +zone = ('caz088', 0.0025529843670015324) + +[91401] +centroid = (0.59652706168690905, -2.0670246919837876) +station = ('kvny', 0.00099886900697595139) +zone = ('caz547', 0.00082789823944442596) + +[91402] +centroid = (0.59729540798351455, -2.0672498045507099) +station = ('kvny', 0.00056694760174304758) +zone = ('caz547', 0.00059936219417916622) + +[91403] +centroid = (0.59598018021908916, -2.0675757622418125) +station = ('kvny', 0.0012470963216883999) +zone = ('caz547', 0.001025649582228678) + +[91405] +centroid = (0.5968995324025772, -2.0673007681648681) +station = ('kvny', 0.00059354643613481915) +zone = ('caz547', 0.00047261935502802615) + +[91406] +centroid = (0.59682729322483707, -2.0680537555640561) +station = ('kvny', 0.00038153443982951569) +zone = ('caz547', 0.00021713569026165469) + +[91411] +centroid = (0.59652774236531736, -2.0675036626904126) +station = ('kvny', 0.00075116636424516793) +zone = ('caz547', 0.00053984490825951408) + +[91423] +centroid = (0.59600580165250849, -2.0670509940956152) +station = ('kbur', 0.0013152787455619533) +zone = ('caz547', 0.0011820706058169384) + +[91436] +centroid = (0.5960601162988306, -2.0680538079239335) +station = ('kvny', 0.0011384302009890511) +zone = ('caz547', 0.00093082776631174134) + +[91501] +centroid = (0.5969199178482405, -2.0645983701642501) +station = ('kbur', 0.0010668099149607735) +zone = ('caz547', 0.0027017622917472079) + +[91502] +centroid = (0.59650583848320482, -2.064899561633267) +station = ('kbur', 0.00090885506102622517) +zone = ('caz547', 0.0024973624020430819) + +[91504] +centroid = (0.5969823308222918, -2.0651846611665801) +station = ('kbur', 0.0005871877487115593) +zone = ('caz547', 0.0022162087495139074) + +[91505] +centroid = (0.59644681144790235, -2.0655437103003003) +station = ('kbur', 0.00053748025594242883) +zone = ('caz547', 0.0019916527770481641) + +[91506] +centroid = (0.59637387413846155, -2.0651354952415515) +station = ('kbur', 0.0008167702993037622) +zone = ('caz547', 0.0023366854015459955) + +[91601] +centroid = (0.5963650427724464, -2.0659898339104026) +station = ('kbur', 0.00054411452062860723) +zone = ('caz547', 0.0016672487109629357) + +[91602] +centroid = (0.5960442163493449, -2.0659141040741589) +station = ('kbur', 0.00085865826164549942) +zone = ('caz547', 0.0018640005932170915) + +[91604] +centroid = (0.59583938450833085, -2.0663432979905165) +station = ('kbur', 0.0011279653881922996) +zone = ('caz547', 0.001696870377016777) + +[91605] +centroid = (0.59702992595099369, -2.0664702183337216) +station = ('kbur', 0.00049802289884918484) +zone = ('caz547', 0.0011541662358050702) + +[91606] +centroid = (0.59665419146962428, -2.0662660322645308) +station = ('kbur', 0.00039931647372120114) +zone = ('caz547', 0.0013610134162057468) + +[91607] +centroid = (0.59630540487190575, -2.0664662564363194) +station = ('kbur', 0.00076513466425187345) +zone = ('caz547', 0.0013377256475903549) + +[91608] +centroid = (0.59583378200143189, -2.0656134536572099) +station = ('kbur', 0.0010927038659220129) +zone = ('caz547', 0.0021855463934080774) + +[91701] +centroid = (0.59581287295699303, -2.0525062229609503) +station = ('kont', 0.0015470054094335781) +zone = ('caz548', 0.0055466700989026821) + +[91702] +centroid = (0.59830467953006528, -2.0571522370698818) +station = ('kpoc', 0.0033668014521525034) +zone = ('caz548', 0.0040558152064530725) + +[91706] +centroid = (0.59511207090243978, -2.0589347069283588) +station = ('kemt', 0.00097200344290266564) +zone = ('caz548', 0.00055918934487736904) + +[91708] +centroid = (0.59260481816548727, -2.0531915264917457) +station = ('kcno', 0.00024086899783708966) +zone = ('caz042', 0.0048946608707531323) + +[91709] +centroid = (0.59277919401105406, -2.0549243242797108) +station = ('kcno', 0.001523048235938956) +zone = ('caz548', 0.0038412151838592835) + +[91710] +centroid = (0.59349001425551373, -2.0539855291283557) +station = ('kcno', 0.00099400284334513907) +zone = ('caz548', 0.0043157452579014348) + +[91711] +centroid = (0.59563619327681361, -2.0545192857202008) +station = ('kpoc', 0.0010937420525482589) +zone = ('caz548', 0.0038886046014536082) + +[91722] +centroid = (0.59511093643842583, -2.0578607534797286) +station = ('kemt', 0.001846110526095579) +zone = ('caz548', 0.0011157378975048104) + +[91723] +centroid = (0.59489105985925972, -2.0575135725849223) +station = ('kpoc', 0.0015196104824077019) +zone = ('caz548', 0.0013003015083245418) + +[91724] +centroid = (0.59481595834154632, -2.0569531299088144) +station = ('kpoc', 0.0010869914488825078) +zone = ('caz548', 0.0017404771700692925) + +[91730] +centroid = (0.59517420462381065, -2.0521375396097592) +station = ('kont', 0.00089198389149752158) +zone = ('caz548', 0.0057426095573314857) + +[91731] +centroid = (0.59478330323124151, -2.0602469676330557) +station = ('kemt', 0.00016827120842627291) +zone = ('caz548', 0.0010317854772145477) + +[91732] +centroid = (0.59469336641488624, -2.0597563381270274) +station = ('kemt', 0.00031234140372912928) +zone = ('caz548', 0.00061556729624672173) + +[91733] +centroid = (0.59421903828407174, -2.0604265969196707) +station = ('kemt', 0.00071146420415109889) +zone = ('caz548', 0.0012048850561260484) + +[91737] +centroid = (0.5960750214106425, -2.0521181140951845) +station = ('kont', 0.001792256587540064) +zone = ('caz548', 0.0059213223774303549) + +[91739] +centroid = (0.59640865855045377, -2.0511636458871463) +station = ('kont', 0.0022959085426215377) +zone = ('caz548', 0.0067710372604456873) + +[91740] +centroid = (0.59549522303313007, -2.0569588196821758) +station = ('kpoc', 0.0010901908455889261) +zone = ('caz548', 0.0019551715621053197) + +[91741] +centroid = (0.59614389210292629, -2.0567240030846126) +station = ('kpoc', 0.0012969888256844945) +zone = ('caz548', 0.0024823855119788731) + +[91744] +centroid = (0.59396024086258614, -2.0583797096795169) +station = ('kemt', 0.001668175430950673) +zone = ('caz548', 0.00080590807859355705) + +[91745] +centroid = (0.5933945796520147, -2.0590023733434584) +station = ('kemt', 0.0017173507220178525) +zone = ('caz548', 0.0011642931530437754) + +[91746] +centroid = (0.59418715111863785, -2.0592331058705722) +station = ('kemt', 0.00097075009928861611) +zone = ('caz548', 0.00040738826292825719) + +[91748] +centroid = (0.59297357132984863, -2.0577549865270579) +station = ('kful', 0.0022361572984437744) +zone = ('caz548', 0.0019056136063732667) + +[91750] +centroid = (0.59650240018457845, -2.0556453547002951) +station = ('kpoc', 0.0013460916734773566) +zone = ('caz548', 0.0034110274574334718) + +[91752] +centroid = (0.59331254917717091, -2.0513787926240399) +station = ('kont', 0.0011944674694878165) +zone = ('caz048', 0.00496137024686905) + +[91754] +centroid = (0.59433560882481251, -2.0619924539646828) +station = ('kemt', 0.0016784006976160678) +zone = ('caz548', 0.0024633571576193718) + +[91755] +centroid = (0.59430145273135093, -2.0614850692978353) +station = ('kemt', 0.0013010278595069762) +zone = ('caz548', 0.0020491199134002468) + +[91759] +centroid = (0.59801326190485982, -2.0542432793522902) +station = ('kpoc', 0.0031020671905804412) +zone = ('caz548', 0.0052563709127809236) + +[91761] +centroid = (0.59403331779836699, -2.0523593360511025) +station = ('kont', 0.00027783649379467832) +zone = ('caz548', 0.00555285961054134) + +[91762] +centroid = (0.59444884578668189, -2.0537989359780249) +station = ('kont', 0.0013214546371024777) +zone = ('caz548', 0.004335968934920287) + +[91763] +centroid = (0.59467432487274707, -2.0542231207994295) +station = ('kpoc', 0.001320409088283931) +zone = ('caz548', 0.0039845497851590927) + +[91764] +centroid = (0.59470500776099711, -2.0526052529427088) +station = ('kont', 0.00052967333502243431) +zone = ('caz548', 0.0053250076524715964) + +[91765] +centroid = (0.59318112588449579, -2.0563627722893272) +station = ('kpoc', 0.0020495012274495115) +zone = ('caz548', 0.0026054905350865443) + +[91766] +centroid = (0.59414997560557037, -2.0552317640274498) +station = ('kpoc', 0.0010814802486430034) +zone = ('caz548', 0.003174319144786132) + +[91767] +centroid = (0.59486206994038404, -2.0549157023532061) +station = ('kpoc', 0.00071870873539951361) +zone = ('caz548', 0.0034224231149071823) + +[91768] +centroid = (0.5945205090057688, -2.0558299407219858) +station = ('kpoc', 0.00064485965665899206) +zone = ('caz548', 0.0026522515649167679) + +[91770] +centroid = (0.59455501416508061, -2.0609638267167272) +station = ('kemt', 0.00080295370165736689) +zone = ('caz548', 0.0016009517931927159) + +[91773] +centroid = (0.59533505416767452, -2.0561791985586022) +station = ('kpoc', 0.00042952767057447157) +zone = ('caz548', 0.0024863386663930768) + +[91775] +centroid = (0.59541509496717104, -2.0610493827566598) +station = ('kemt', 0.00097898031361652051) +zone = ('caz548', 0.001878004318702666) + +[91776] +centroid = (0.59499628575986241, -2.0611481683923225) +station = ('kemt', 0.00090208337036311423) +zone = ('caz548', 0.0018071900522864187) + +[91780] +centroid = (0.59518649174174476, -2.0604646625506571) +station = ('kemt', 0.00045730547157149038) +zone = ('caz548', 0.0013429928542593832) + +[91784] +centroid = (0.5958754081040919, -2.0534773067034675) +station = ('kont', 0.0019029088579005627) +zone = ('caz548', 0.00478360862870257) + +[91786] +centroid = (0.5952494457678642, -2.0535899153468065) +station = ('kont', 0.0014917537946220038) +zone = ('caz548', 0.0045591579325715637) + +[91789] +centroid = (0.5937322834089831, -2.0569563936745157) +station = ('kpoc', 0.0017612566767295046) +zone = ('caz548', 0.0019075506187171054) + +[91790] +centroid = (0.59458068795837749, -2.0583890820975999) +station = ('kemt', 0.0014215584942716417) +zone = ('caz548', 0.00053241509991217603) + +[91791] +centroid = (0.59448766190924618, -2.0576239646601109) +station = ('kpoc', 0.0017231714724567097) +zone = ('caz548', 0.0011679677318294742) + +[91792] +centroid = (0.59380605847646495, -2.0577843604183692) +station = ('kemt', 0.0021705557603011291) +zone = ('caz548', 0.0012782044498076128) + +[91801] +centroid = (0.59499544800182147, -2.0617142833884996) +station = ('kemt', 0.0013676344007958708) +zone = ('caz548', 0.0022648170642321015) + +[91803] +centroid = (0.5947163349478426, -2.0620359824762273) +station = ('kemt', 0.0016350118989769339) +zone = ('caz548', 0.0024939735286736218) + +[91901] +centroid = (0.57265341843387196, -2.0369854113486929) +station = ('ksee', 0.0038459029569294493) +zone = ('caz050', 0.0049863847030177785) + +[91902] +centroid = (0.57012509957284796, -2.0423608509119102) +station = ('mmml', 0.00062889739211488202) +zone = ('caz050', 0.0059769564871172461) + +[91905] +centroid = (0.57041110667737227, -2.030070032879856) +station = ('kczz', 0.0024637832165194736) +zone = ('caz062', 0.0065008919084909326) + +[91906] +centroid = (0.56993487613767302, -2.0327042234133059) +station = ('kczz', 0.00050369767582527595) +zone = ('caz058', 0.0073343193142350735) + +[91910] +centroid = (0.56963878103007226, -2.0430473587198894) +station = ('mmml', 0.00085605071325027299) +zone = ('caz043', 0.0064938058057868236) + +[91911] +centroid = (0.56909964882413122, -2.0429768125115242) +station = ('mmml', 0.00091654658757126006) +zone = ('caz043', 0.0070130716819154434) + +[91913] +centroid = (0.56931695976929697, -2.0417877371454329) +station = ('mmml', 0.0003195045955081374) +zone = ('caz050', 0.0067340551637621437) + +[91914] +centroid = (0.57026280605083024, -2.0410692374522643) +station = ('mmml', 0.0010754817817848566) +zone = ('caz050', 0.0057824900914705251) + +[91915] +centroid = (0.56938199073722628, -2.041146031939352) +station = ('mmml', 0.00076952769727213239) +zone = ('caz050', 0.0066607727573820439) + +[91916] +centroid = (0.57400372731626237, -2.0354266927003217) +station = ('krnm', 0.005013603185490139) +zone = ('caz058', 0.003454296941514379) + +[91917] +centroid = (0.56913205958834079, -2.0371423688083246) +station = ('ksdm', 0.0040627584766785314) +zone = ('caz050', 0.0077589156602488347) + +[91931] +centroid = (0.57327718165524222, -2.0343161396972778) +station = ('kczz', 0.0040619870033741946) +zone = ('caz058', 0.003943375351603203) + +[91932] +centroid = (0.56851927448796546, -2.0441448392068362) +station = ('knrs', 0.00013831577138064333) +zone = ('caz043', 0.0072623498712953531) + +[91934] +centroid = (0.56983246021716605, -2.0272446415268499) +station = ('kczz', 0.0046581705418127983) +zone = ('caz062', 0.0071727130083457527) + +[91935] +centroid = (0.57110937800451023, -2.0384191295160359) +station = ('ksee', 0.0031974287576089395) +zone = ('caz050', 0.005509436009120309) + +[91941] +centroid = (0.57175811688747646, -2.041987402811861) +station = ('ksee', 0.0012221194568160776) +zone = ('caz050', 0.0043165100263646335) + +[91942] +centroid = (0.57208400476540888, -2.0424106626087619) +station = ('ksee', 0.001108137292312666) +zone = ('caz050', 0.0040567762341569471) + +[91945] +centroid = (0.57130171328807988, -2.0426314991190169) +station = ('mmml', 0.0018134293394044603) +zone = ('caz050', 0.0048607716942465264) + +[91948] +centroid = (0.57363118678742431, -2.0324066796824258) +station = ('kczz', 0.00420838765427864) +zone = ('caz058', 0.0037780866531718135) + +[91950] +centroid = (0.57021034145351535, -2.0436874931296436) +station = ('mmml', 0.0015360320596495254) +zone = ('caz043', 0.0057594912467852184) + +[91962] +centroid = (0.57133569484861624, -2.0318278586892946) +station = ('kczz', 0.0020567356604485202) +zone = ('caz062', 0.0060016099973828401) + +[91963] +centroid = (0.56943515346624196, -2.0352287898164381) +station = ('kczz', 0.0020826916666252188) +zone = ('caz058', 0.007850850588525745) + +[91977] +centroid = (0.57118056998469902, -2.0419360552252672) +station = ('mmml', 0.0016236045060642862) +zone = ('caz050', 0.0048854829607410085) + +[91978] +centroid = (0.57114423222967248, -2.0409896504383735) +station = ('mmml', 0.0018130444084763944) +zone = ('caz050', 0.0049054930207558323) + +[91980] +centroid = (0.56878301119123442, -2.0353885223495807) +station = ('kczz', 0.0023109897229491917) +zone = ('caz058', 0.0085156828923594382) + +[92003] +centroid = (0.58093154998266605, -2.0455169647048765) +station = ('kokb', 0.0024990753085026712) +zone = ('caz043', 0.0053791974816087386) + +[92004] +centroid = (0.57843836459948472, -2.0264327841719925) +station = ('ktrm', 0.0084934107645155011) +zone = ('caz062', 0.002678788356125355) + +[92007] +centroid = (0.57636444220921734, -2.0468335363728261) +station = ('kcrq', 0.0019252495691666198) +zone = ('caz043', 0.00096358991584706674) + +[92008] +centroid = (0.57847574955206249, -2.0476104871426437) +station = ('kcrq', 0.00056082796362221562) +zone = ('caz043', 0.0031385608680042031) + +[92009] +centroid = (0.57762230100112977, -2.0462902677365578) +station = ('kcrq', 0.00087990688060938756) +zone = ('caz043', 0.0020450215571258192) + +[92010] +centroid = (0.57872500002253968, -2.0468726317480708) +station = ('kcrq', 0.00044840079277328626) +zone = ('caz043', 0.0032002811465511368) + +[92011] +centroid = (0.57783631327400931, -2.0471347627484278) +station = ('kcrq', 0.0004676875432651746) +zone = ('caz043', 0.0023979623680373055) + +[92014] +centroid = (0.57535855660141555, -2.0463688075528972) +station = ('knkx', 0.0022487056836013614) +zone = ('caz043', 0.00027897906163335223) + +[92019] +centroid = (0.57204932507317174, -2.0399518951184299) +station = ('ksee', 0.0016031039207662534) +zone = ('caz050', 0.0041590343914585338) + +[92020] +centroid = (0.57238962937072557, -2.0415067565891545) +station = ('ksee', 0.00053534890060766011) +zone = ('caz050', 0.0036536083915360658) + +[92021] +centroid = (0.57318743682510465, -2.0398132810692364) +station = ('ksee', 0.0014832525800292703) +zone = ('caz050', 0.0031292354274184654) + +[92024] +centroid = (0.57693642151168101, -2.0465713355592987) +station = ('kcrq', 0.0013921609750535587) +zone = ('caz043', 0.0013983500005200244) + +[92025] +centroid = (0.57773897626162551, -2.0434388186178194) +station = ('krnm', 0.0026782571650623803) +zone = ('caz050', 0.0024427052232415141) + +[92026] +centroid = (0.57966664006057578, -2.0440615520949312) +station = ('kcrq', 0.0028063269829198289) +zone = ('caz050', 0.0042812269871332232) + +[92027] +centroid = (0.57824775719187438, -2.0416337467455294) +station = ('krnm', 0.0019218112655014473) +zone = ('caz050', 0.0022203833846411803) + +[92028] +centroid = (0.58277376246143864, -2.0456904155259399) +station = ('knfg', 0.0025873358427687281) +zone = ('caz057', 0.0054416686090018257) + +[92029] +centroid = (0.57742963410500203, -2.0442940648578816) +station = ('kcrq', 0.0024074711951594906) +zone = ('caz043', 0.0024260068052821696) + +[92036] +centroid = (0.57635089845422205, -2.0331984133910082) +station = ('krnm', 0.0061923149211186536) +zone = ('caz058', 0.0010232063943769079) + +[92037] +centroid = (0.57345143532776133, -2.0463995602543177) +station = ('knkx', 0.0014779160393739075) +zone = ('caz043', 0.0021374601723984283) + +[92040] +centroid = (0.57436872802273198, -2.0401503041477969) +station = ('ksee', 0.0018630615958869759) +zone = ('caz050', 0.0019490453166076081) + +[92054] +centroid = (0.57937136525772337, -2.0482230802568013) +station = ('kokb', 0.00037474076326236025) +zone = ('caz043', 0.0041646552952127967) + +[92055] +centroid = (0.58272569609383873, -2.0497977163079506) +station = ('knxf', 0.001720006851489798) +zone = ('caz057', 0.0041544115303058082) + +[92056] +centroid = (0.57947098865142721, -2.0472185734591082) +station = ('kokb', 0.00081965381895324348) +zone = ('caz043', 0.0039896744023999141) + +[92057] +centroid = (0.58040243596663155, -2.0469811214143747) +station = ('kokb', 0.0011766148015554955) +zone = ('caz043', 0.0048705553972190566) + +[92058] +centroid = (0.58166341889790485, -2.0473543775282059) +station = ('knfg', 0.00080934951263958866) +zone = ('caz057', 0.0056541531121885704) + +[92059] +centroid = (0.58252924183323418, -2.0431892539880767) +station = ('knfg', 0.0043491265501185176) +zone = ('caz050', 0.0066697643417762201) + +[92060] +centroid = (0.58200611429653393, -2.0394670775588111) +station = ('krnm', 0.0055445793469923611) +zone = ('caz050', 0.0061688343983215153) + +[92061] +centroid = (0.58116853078850195, -2.0407224754364779) +station = ('krnm', 0.0046296208042476703) +zone = ('caz050', 0.0051541877373292777) + +[92064] +centroid = (0.57567262860031199, -2.0423674831630678) +station = ('krnm', 0.0017314750029245596) +zone = ('caz050', 0.00093394094936440541) + +[92065] +centroid = (0.57688378238144089, -2.0394285930488047) +station = ('krnm', 0.0010250507657038818) +zone = ('caz050', 0.0018137898203067545) + +[92066] +centroid = (0.57978729467176615, -2.0339237547748446) +station = ('krnm', 0.0064516019130092667) +zone = ('caz058', 0.0025845566370161902) + +[92067] +centroid = (0.57632356659813566, -2.0453573892513668) +station = ('kcrq', 0.0023873774214516704) +zone = ('caz043', 0.0010066749662887395) + +[92069] +centroid = (0.57893929154809964, -2.0448046085706753) +station = ('kcrq', 0.001935245843087681) +zone = ('caz043', 0.0035479018370850701) + +[92070] +centroid = (0.57856444718464883, -2.037266409358264) +station = ('krnm', 0.0034361591108608633) +zone = ('caz058', 0.0031507840728089709) + +[92071] +centroid = (0.57338181414389933, -2.0418230277029079) +station = ('ksee', 0.0005121670962328779) +zone = ('caz050', 0.0026890887011575362) + +[92075] +centroid = (0.57591062169711382, -2.0465832037982126) +station = ('kcrq', 0.0023983403726080656) +zone = ('caz043', 0.00048122899967132493) + +[92078] +centroid = (0.57798285111800674, -2.0451936599142373) +station = ('kcrq', 0.0015266542876638414) +zone = ('caz043', 0.0025375088702090228) + +[92081] +centroid = (0.57882752066280196, -2.0462287274271325) +station = ('kcrq', 0.0008303583211221843) +zone = ('caz043', 0.0032480236617729559) + +[92082] +centroid = (0.58039843916264444, -2.042079817995754) +station = ('krnm', 0.0040570450989846534) +zone = ('caz050', 0.0044010974801377356) + +[92083] +centroid = (0.57941161255027429, -2.0463671843966931) +station = ('kcrq', 0.0012373267374385325) +zone = ('caz043', 0.0038353861253446401) + +[92084] +centroid = (0.57979724304850244, -2.0455713666176614) +station = ('kcrq', 0.0019171033964702126) +zone = ('caz043', 0.004246685124272038) + +[92086] +centroid = (0.58166624633129316, -2.0361009133903671) +station = ('krnm', 0.0063507677814221442) +zone = ('caz058', 0.0048365310061357176) + +[92091] +centroid = (0.57623867378331872, -2.0462860091331825) +station = ('kcrq', 0.0021281583192336376) +zone = ('caz043', 0.00066634895464459014) + +[92101] +centroid = (0.57114334211175399, -2.0450182019645342) +station = ('ksan', 0.00024333881216737728) +zone = ('caz043', 0.0045402244127255688) + +[92102] +centroid = (0.57100577526011176, -2.0440782723491653) +station = ('ksan', 0.0010179256809108269) +zone = ('caz043', 0.0048990102040157484) + +[92103] +centroid = (0.57155016090710131, -2.0449479001022639) +station = ('ksan', 0.00034451776943015638) +zone = ('caz043', 0.0041577067279979082) + +[92104] +centroid = (0.5714469944950159, -2.0442683387047071) +station = ('ksan', 0.00082551200865488804) +zone = ('caz043', 0.004429797773125293) + +[92105] +centroid = (0.57138285364500507, -2.0436526039978964) +station = ('ksan', 0.0013333756187321314) +zone = ('caz043', 0.0046983380320184823) + +[92106] +centroid = (0.57091147512062657, -2.0461823540289066) +station = ('knzy', 0.00036094458157236533) +zone = ('caz043', 0.0046684607853880195) + +[92107] +centroid = (0.57140430374151219, -2.0463183326309298) +station = ('knzy', 0.00080168268868638923) +zone = ('caz043', 0.0041775624087569989) + +[92108] +centroid = (0.57201501190007742, -2.0445215161660015) +station = ('kmyf', 0.000755810798997419) +zone = ('caz043', 0.0038232167454836843) + +[92109] +centroid = (0.57223712250068626, -2.046122908114584) +station = ('ksan', 0.0011947518152096441) +zone = ('caz043', 0.0033429939117929608) + +[92110] +centroid = (0.57186138801931696, -2.0455327075747296) +station = ('ksan', 0.00061064237330519632) +zone = ('caz043', 0.0037564266376216115) + +[92111] +centroid = (0.57258107453637686, -2.0449824576214533) +station = ('kmyf', 0.00055068603418845523) +zone = ('caz043', 0.0031593374069645297) + +[92113] +centroid = (0.57066203266393145, -2.0440916939311129) +station = ('ksan', 0.0011567266983962844) +zone = ('caz043', 0.0052176960654987253) + +[92114] +centroid = (0.57085803313893047, -2.0429968139847516) +station = ('mmml', 0.0015304937685341983) +zone = ('caz050', 0.0053653886409126533) + +[92115] +centroid = (0.57185714686923461, -2.0433205376544117) +station = ('kmyf', 0.0012570321175756241) +zone = ('caz043', 0.0044240441134623248) + +[92116] +centroid = (0.57185657091058151, -2.0441846152604888) +station = ('kmyf', 0.0009145962482162176) +zone = ('caz043', 0.0040784603660552485) + +[92117] +centroid = (0.57289676969147763, -2.0455175232102372) +station = ('knkx', 0.0010330376366957251) +zone = ('caz043', 0.0027379012430195663) + +[92118] +centroid = (0.57070929618007549, -2.0456941679838314) +station = ('knzy', 0.00010403525478718586) +zone = ('caz043', 0.0048867558051760417) + +[92119] +centroid = (0.57278019915073686, -2.0425929622491328) +station = ('ksee', 0.00088779422339807393) +zone = ('caz050', 0.0034249115989128916) + +[92120] +centroid = (0.57237573654987961, -2.0432877429177667) +station = ('kmyf', 0.00098111142891155862) +zone = ('caz050', 0.0040118679694678191) + +[92121] +centroid = (0.57420620296278624, -2.0455468796482559) +station = ('knkx', 0.0009452230710909449) +zone = ('caz043', 0.0014688213458146973) + +[92122] +centroid = (0.57354533404151864, -2.0450236473918002) +station = ('knkx', 0.00032286829676418975) +zone = ('caz043', 0.0022493861988287212) + +[92123] +centroid = (0.57258627561754771, -2.0443899183404013) +station = ('kmyf', 0.00017415759563115763) +zone = ('caz043', 0.0033447099869664378) + +[92124] +centroid = (0.57288278960416905, -2.043647525089773) +station = ('kmyf', 0.00061335083417291458) +zone = ('caz043', 0.0034274250717944389) + +[92126] +centroid = (0.5743600362830571, -2.0445012528933861) +station = ('knkx', 0.00073958137451938925) +zone = ('caz043', 0.0018549651145905899) + +[92127] +centroid = (0.57616517796851729, -2.0443510324046668) +station = ('knkx', 0.0025462916010538963) +zone = ('caz043', 0.0016312053066453987) + +[92128] +centroid = (0.57595547665889013, -2.0432885108626375) +station = ('krnm', 0.0023446058583578904) +zone = ('caz050', 0.0016329243492713733) + +[92129] +centroid = (0.57538227562595023, -2.0442374987368246) +station = ('knkx', 0.0017851712204464741) +zone = ('caz043', 0.0016302549188074932) + +[92130] +centroid = (0.57501252762391519, -2.0457766173376957) +station = ('knkx', 0.0016723215378548094) +zone = ('caz043', 0.00065490146104097888) + +[92131] +centroid = (0.5739727826286245, -2.04348952043259) +station = ('knkx', 0.0010351828660185695) +zone = ('caz050', 0.0027418559056243694) + +[92132] +centroid = (0.57096016980675712, -2.0450387444898301) +station = ('ksan', 0.00038181462972308023) +zone = ('caz043', 0.0047158897279357403) + +[92134] +centroid = (0.57114517470746851, -2.0445938077036194) +station = ('ksan', 0.00056241432372276269) +zone = ('caz043', 0.0046273419647774915) + +[92135] +centroid = (0.57067978266242436, -2.0453997832988975) +station = ('knzy', 0.00035351549200661583) +zone = ('caz043', 0.0049422889222517077) + +[92139] +centroid = (0.57037141789018198, -2.0428886908375907) +station = ('mmml', 0.0010845062301842654) +zone = ('caz050', 0.0058158989034934657) + +[92140] +centroid = (0.5714120006435135, -2.0454805222300947) +station = ('ksan', 0.0002328589193834146) +zone = ('caz043', 0.0042075507584604663) + +[92145] +centroid = (0.5747465918057888, -2.0421759507309538) +station = ('ksee', 0.0018970633730893117) +zone = ('caz050', 0.0014702973322227207) + +[92147] +centroid = (0.57115233055740167, -2.0458626097099413) +station = ('knzy', 0.00043139266970958841) +zone = ('caz043', 0.0044349361080278206) + +[92154] +centroid = (0.56822703655801166, -2.0421419866237103) +station = ('ksdm', 0.0003722287968548885) +zone = ('caz050', 0.0078423915620759125) + +[92155] +centroid = (0.57028605383646691, -2.0448578760194458) +station = ('knzy', 0.0009175693382453121) +zone = ('caz043', 0.0054068541114065142) + +[92173] +centroid = (0.56816804442929425, -2.042777024672048) +station = ('ksdm', 0.00081959976872867811) +zone = ('caz043', 0.0079409600339491182) + +[92201] +centroid = (0.58836766488712822, -2.0281571345663774) +station = ('ktrm', 0.0016126168247925592) +zone = ('caz061', 0.001518552727391591) + +[92203] +centroid = (0.58911773758646524, -2.028883959480078) +station = ('ktrm', 0.0025561109530081454) +zone = ('caz061', 0.00083611370569817089) + +[92210] +centroid = (0.58803970006738593, -2.0305375193200024) +station = ('ktrm', 0.002877835091705941) +zone = ('caz061', 0.0010419368788742579) + +[92211] +centroid = (0.58931742070618587, -2.0304149099400499) +station = ('kpsp', 0.0026810263987039964) +zone = ('caz061', 0.00061169112108571831) + +[92220] +centroid = (0.5925209201883439, -2.0391093897819075) +station = ('kpsp', 0.00522094711483659) +zone = ('caz056', 0.0057395844123960737) + +[92222] +centroid = (0.57222061168596239, -1.9991962230629199) +station = ('knyl', 0.0025020222671012786) +zone = ('azz025', 0.0024269718161502125) + +[92223] +centroid = (0.59250880760333502, -2.0418229229831528) +station = ('ksbd', 0.0044300526609580499) +zone = ('caz048', 0.0040616548328662261) + +[92225] +centroid = (0.58881227006078118, -2.0016827412883584) +station = ('kblh', 0.0021318850279792327) +zone = ('azz020', 0.0038304300110984383) + +[92227] +centroid = (0.57578623208132429, -2.0133901306580562) +station = ('kipl', 0.0042173182433093964) +zone = ('caz033', 0.0018658596462678139) + +[92230] +centroid = (0.59184834010779541, -2.0379463198216707) +station = ('kpsp', 0.0040788813441708085) +zone = ('caz056', 0.0047169802504118613) + +[92231] +centroid = (0.57050537191027251, -2.0165708710467682) +station = ('kipl', 0.0026178083554556208) +zone = ('caz033', 0.0062764698255828822) + +[92233] +centroid = (0.578975995822269, -2.0167937321389555) +station = ('kipl', 0.0059228522102617569) +zone = ('caz033', 0.0025881200331900377) + +[92234] +centroid = (0.59023991448232749, -2.0327281344240582) +station = ('kpsp', 0.00054932607230984663) +zone = ('caz061', 0.0027270231040297755) + +[92236] +centroid = (0.58793414255422527, -2.0275999207493856) +station = ('ktrm', 0.0010563856408606234) +zone = ('caz061', 0.0021207745619048627) + +[92239] +centroid = (0.58926066259891108, -2.0152636194370244) +station = ('kblh', 0.011175610776221584) +zone = ('caz032', 0.0034508257880873517) + +[92240] +centroid = (0.59256615912255561, -2.033659459566215) +station = ('kpsp', 0.0020835537628419057) +zone = ('caz061', 0.0048251787139021885) + +[92241] +centroid = (0.59054330506620167, -2.0296917502177787) +station = ('kpsp', 0.0030045856026631695) +zone = ('caz061', 0.0016333104383553295) + +[92242] +centroid = (0.5962606022700071, -1.9952450594357924) +station = ('kblh', 0.011143056239288967) +zone = ('caz527', 0.0064174891038673298) + +[92243] +centroid = (0.57194919553398471, -2.0175762156025021) +station = ('kipl', 0.0011530398973692191) +zone = ('caz033', 0.0051058675320305013) + +[92249] +centroid = (0.57116852721286027, -2.0153773101844994) +station = ('kipl', 0.002452198647193881) +zone = ('caz033', 0.0055267777209306165) + +[92250] +centroid = (0.57265999832515191, -2.0097966373545404) +station = ('kipl', 0.0062574586914657757) +zone = ('caz033', 0.0061547553183178482) + +[92251] +centroid = (0.57388954787659696, -2.0189176233057076) +station = ('knjk', 0.0010091619579792395) +zone = ('caz033', 0.004112803324078272) + +[92252] +centroid = (0.59634991076783161, -2.029616002928242) +station = ('knxp', 0.0028927351614852488) +zone = ('caz525', 0.004127973110839506) + +[92253] +centroid = (0.58715960033877523, -2.0293631396262133) +station = ('ktrm', 0.0016845735294815545) +zone = ('caz061', 0.0018043366597778943) + +[92254] +centroid = (0.58545036449571208, -2.0244755719488055) +station = ('ktrm', 0.0028076811774815661) +zone = ('caz061', 0.005665891876936795) + +[92256] +centroid = (0.59475687894636631, -2.0351695533416256) +station = ('kpsp', 0.0045252330256932314) +zone = ('caz056', 0.0072985348240130312) + +[92257] +centroid = (0.58118553029541631, -2.0122571501741242) +station = ('kipl', 0.0091270208484527573) +zone = ('caz033', 0.0051762654157852198) + +[92258] +centroid = (0.59194305912630107, -2.0343535595564406) +station = ('kpsp', 0.0016811680742979871) +zone = ('caz056', 0.004626690838129814) + +[92259] +centroid = (0.57138067198344011, -2.0233982849213046) +station = ('knjk', 0.0042670715143997917) +zone = ('caz062', 0.0072185121371285089) + +[92260] +centroid = (0.58831691071248005, -2.0316268491193421) +station = ('kpsp', 0.002594914328934527) +zone = ('caz061', 0.0015870716416359078) + +[92262] +centroid = (0.59098462902086091, -2.0344635676591936) +station = ('kpsp', 0.0010733425092256958) +zone = ('caz056', 0.0036814735782657489) + +[92264] +centroid = (0.58832588170483535, -2.0332670397371966) +station = ('kpsp', 0.002177455688576916) +zone = ('caz056', 0.0022806952920763268) + +[92266] +centroid = (0.58197892206678781, -2.0059145364059141) +station = ('kblh', 0.0056724045103207056) +zone = ('caz031', 0.0039696652270827127) + +[92267] +centroid = (0.59818987177186911, -1.9931053555860174) +station = ('keed', 0.01051248626875452) +zone = ('caz527', 0.0058883049770994695) + +[92268] +centroid = (0.5972879554276086, -2.0344294639256097) +station = ('kl35', 0.0043185740774007216) +zone = ('caz525', 0.0070892284294264835) + +[92270] +centroid = (0.58937344577517492, -2.0320863768580999) +station = ('kpsp', 0.0015190517717283808) +zone = ('caz061', 0.0019068923445684576) + +[92273] +centroid = (0.57276862761779612, -2.0193472710076708) +station = ('knjk', 0.00059532511864735242) +zone = ('caz033', 0.0051737543345639972) + +[92274] +centroid = (0.58399608634978029, -2.0260582888743914) +station = ('ktrm', 0.0030976591041117947) +zone = ('caz061', 0.0058507105295909963) + +[92275] +centroid = (0.58105667263674166, -2.0218621159268695) +station = ('ktrm', 0.007427851932114201) +zone = ('caz033', 0.0069920585410798925) + +[92276] +centroid = (0.59031101919605378, -2.0309390846743014) +station = ('kpsp', 0.0019777181824281237) +zone = ('caz061', 0.0016585638760417886) + +[92277] +centroid = (0.59587907329552114, -2.0179702062278473) +station = ('knxp', 0.0083450993556605894) +zone = ('caz030', 0.0052108631875332507) + +[92278] +centroid = (0.59742573171876101, -2.0255427884265229) +station = ('knxp', 0.0020213004143562483) +zone = ('caz525', 0.0020438168243183488) + +[92280] +centroid = (0.59538339978795474, -2.0007301056760349) +station = ('kblh', 0.0087455543011252333) +zone = ('caz527', 0.0069991207234925351) + +[92281] +centroid = (0.57686198321908344, -2.0177533490682871) +station = ('kipl', 0.003823240276303261) +zone = ('caz033', 0.0020352778322109558) + +[92282] +centroid = (0.59305642210944076, -2.0365063882821905) +station = ('kpsp', 0.0036828587616084653) +zone = ('caz056', 0.0056083980420833148) + +[92283] +centroid = (0.57406580867775592, -2.0031657650070707) +station = ('knyl', 0.0049208370611551018) +zone = ('azz025', 0.005547032503963629) + +[92284] +centroid = (0.59665640803777431, -2.032129015251726) +station = ('knxp', 0.0043205698992661561) +zone = ('caz525', 0.0055848873017882638) + +[92285] +centroid = (0.59934993976579209, -2.0340143024564377) +station = ('knxp', 0.0054332904862976466) +zone = ('caz525', 0.0064236122345349674) + +[92301] +centroid = (0.60362620587268856, -2.0499542025286841) +station = ('kvcv', 0.0010406045553051802) +zone = ('caz060', 0.0063591701626613487) + +[92304] +centroid = (0.6028626068716485, -2.0183791892314673) +station = ('knxp', 0.0086172689238190395) +zone = ('caz525', 0.0073514510200495117) + +[92305] +centroid = (0.59588457108266502, -2.0388583939821783) +station = ('kl35', 0.0021524591071427892) +zone = ('caz055', 0.0042982786530532955) + +[92307] +centroid = (0.60338555987542364, -2.0443578391887498) +station = ('kvcv', 0.0036160950982412885) +zone = ('caz060', 0.0017794619156715028) + +[92308] +centroid = (0.60083416776168808, -2.0448579807392009) +station = ('kvcv', 0.0043719387124377621) +zone = ('caz060', 0.0029495659860650485) + +[92309] +centroid = (0.6166624365749771, -2.0252553850585966) +station = ('kbys', 0.0082775220588312409) +zone = ('caz524', 0.0032909563648738415) + +[92310] +centroid = (0.61543344552889279, -2.0366358568061034) +station = ('kbys', 0.0011193969285143569) +zone = ('caz523', 0.0044796349709627708) + +[92311] +centroid = (0.61052130361561741, -2.0414147428309892) +station = ('kdag', 0.0034482153615457609) +zone = ('caz523', 0.0056957114072194032) + +[92313] +centroid = (0.59395318973240796, -2.047496866208339) +station = ('ksbd', 0.0016655920614487324) +zone = ('caz048', 0.0033488036184048256) + +[92314] +centroid = (0.59796886072868904, -2.0387103027951463) +station = ('kl35', 0.00072876462842273748) +zone = ('caz055', 0.0041637915776574774) + +[92315] +centroid = (0.59749177497765638, -2.0403569685845251) +station = ('kl35', 0.0007809529605643504) +zone = ('caz055', 0.0027690746721829437) + +[92316] +centroid = (0.59445429121394811, -2.0488601603403644) +station = ('kral', 0.0020964231989085715) +zone = ('caz048', 0.0042758947865912528) + +[92320] +centroid = (0.59324378320464233, -2.0429471419142402) +station = ('ksbd', 0.0032433814740693654) +zone = ('caz048', 0.0036893058509645735) + +[92321] +centroid = (0.59784187057231397, -2.0446687695949923) +station = ('ksbd', 0.0029366840581370583) +zone = ('caz055', 0.00089505146986725178) + +[92322] +centroid = (0.59785138261673743, -2.0477329045363786) +station = ('ksbd', 0.0030109944648115468) +zone = ('caz055', 0.0033554702645559546) + +[92324] +centroid = (0.59383724751019806, -2.0470853524773038) +station = ('ksbd', 0.0015487063670961156) +zone = ('caz048', 0.0031459672068227642) + +[92325] +centroid = (0.59766150824741293, -2.0469449058323956) +station = ('ksbd', 0.0025982724929198365) +zone = ('caz055', 0.0026877861372395445) + +[92327] +centroid = (0.60848434729890732, -2.0396277002098722) +station = ('kdag', 0.0011521599033706828) +zone = ('caz060', 0.0060114350135427475) + +[92328] +centroid = (0.6387534528899047, -2.0390225596516207) +station = ('kdra', 0.011141044368911609) +zone = ('caz522', 0.0049334307852909659) + +[92332] +centroid = (0.60933678355887388, -2.0130992715382114) +station = ('kifp', 0.011974598571321736) +zone = ('caz526', 0.009863839083848398) + +[92333] +centroid = (0.59813494626030894, -2.0411505523421147) +station = ('kl35', 0.0013014804896894425) +zone = ('caz055', 0.00222542732866056) + +[92335] +centroid = (0.59491217834320886, -2.0501533795029219) +station = ('kont', 0.0018204691270681166) +zone = ('caz048', 0.0052601105086301945) + +[92336] +centroid = (0.59599011114253297, -2.0501423839286343) +station = ('kont', 0.0024203428136614193) +zone = ('caz048', 0.0061396316195911687) + +[92337] +centroid = (0.5942812941784904, -2.0502489537327611) +station = ('kont', 0.0016300584846623491) +zone = ('caz048', 0.0048336888714296759) + +[92338] +centroid = (0.6070726202801392, -2.0279079015491925) +station = ('knxp', 0.0084316891259435499) +zone = ('caz524', 0.0067000246209537326) + +[92339] +centroid = (0.59504663850878237, -2.0409220887430286) +station = ('kl35', 0.0031047783946317529) +zone = ('caz055', 0.003316635934722529) + +[92341] +centroid = (0.59754214517986903, -2.0431319548287337) +station = ('ksbd', 0.0034277393465465627) +zone = ('caz055', 0.00048654128374017085) + +[92342] +centroid = (0.60662490842041761, -2.0481463555828836) +station = ('kvcv', 0.0028285253802721151) +zone = ('caz060', 0.0061030072167902565) + +[92344] +centroid = (0.60023873123407778, -2.0491163921278495) +station = ('kvcv', 0.0036118185684319861) +zone = ('caz055', 0.0052769449304714477) + +[92345] +centroid = (0.59995042029494083, -2.0472788047715946) +station = ('kvcv', 0.0040616053164828731) +zone = ('caz055', 0.0038793861669616531) + +[92346] +centroid = (0.59563514607926249, -2.045231760451808) +station = ('ksbd', 0.00086847395039926258) +zone = ('caz055', 0.0021970960446492994) + +[92347] +centroid = (0.61012183265642084, -2.0458680725905003) +station = ('kvcv', 0.0067074928629616334) +zone = ('caz523', 0.0068300142619788125) + +[92352] +centroid = (0.59794929558777421, -2.0455150797492845) +station = ('ksbd', 0.0028347314173164501) +zone = ('caz055', 0.0015823945192472212) + +[92354] +centroid = (0.59430515282936525, -2.0463734675820002) +station = ('ksbd', 0.00088010578209314172) +zone = ('caz048', 0.0035372423116501153) + +[92356] +centroid = (0.60232439969021101, -2.0402326138753208) +station = ('kl35', 0.0044064505222980088) +zone = ('caz060', 0.0017808794098236463) + +[92358] +centroid = (0.59793709573630283, -2.0511278840907732) +station = ('kont', 0.0037619026280211721) +zone = ('caz548', 0.0073607415929603324) + +[92359] +centroid = (0.5948608482099077, -2.0433148478810503) +station = ('ksbd', 0.0023317669424879933) +zone = ('caz055', 0.0025925695019011949) + +[92363] +centroid = (0.60902157709596361, -2.0008513013392935) +station = ('keed', 0.0022544201103641714) +zone = ('azz002', 0.0056492833865656256) + +[92364] +centroid = (0.61680668803765448, -2.0145676519444993) +station = ('khnd', 0.011786865999490328) +zone = ('nvz022', 0.0066809736478867527) + +[92365] +centroid = (0.60912022310528646, -2.0360138912738628) +station = ('kdag', 0.0020343514971937794) +zone = ('caz060', 0.0080906481313472688) + +[92368] +centroid = (0.60474237883592397, -2.0476241879772719) +station = ('kvcv', 0.0012765985211077395) +zone = ('caz060', 0.0047720396973158904) + +[92371] +centroid = (0.60113720927971193, -2.0514916805200585) +station = ('kgxa', 0.0028465902061428341) +zone = ('caz055', 0.0074199831005631045) + +[92372] +centroid = (0.60122917067799952, -2.0529251368880144) +station = ('kgxa', 0.0021771705369362337) +zone = ('caz059', 0.0074340483333928311) + +[92373] +centroid = (0.59362025072429758, -2.0448224458356306) +station = ('ksbd', 0.0018698172437607648) +zone = ('caz048', 0.0030854092016506952) + +[92374] +centroid = (0.59458503382821504, -2.0450371911467959) +station = ('ksbd', 0.001055221054874987) +zone = ('caz055', 0.0030539383811678312) + +[92376] +centroid = (0.59535982038976032, -2.0486222021501472) +station = ('ksbd', 0.0020918786457610056) +zone = ('caz055', 0.0045658128712324914) + +[92377] +centroid = (0.59616726206161041, -2.0491224135137687) +station = ('ksbd', 0.0026921760504077892) +zone = ('caz055', 0.0046559317288724054) + +[92378] +centroid = (0.59735783841085843, -2.0459784646656889) +station = ('ksbd', 0.0022031585434295264) +zone = ('caz055', 0.0018808005569572689) + +[92382] +centroid = (0.59699487973961363, -2.0440842937350845) +station = ('ksbd', 0.0024860595820087004) +zone = ('caz055', 0.00053871998551149154) + +[92384] +centroid = (0.6284530257901173, -2.0276969610557969) +station = ('kdra', 0.011108378758496682) +zone = ('nvz019', 0.0080793623526180108) + +[92385] +centroid = (0.59715986571380464, -2.0453919467705561) +station = ('ksbd', 0.0020883321945308645) +zone = ('caz055', 0.0014209831220861511) + +[92386] +centroid = (0.59755237280928564, -2.0390279352657168) +station = ('kl35', 0.00061250641861738736) +zone = ('caz055', 0.003869009824092438) + +[92389] +centroid = (0.62659681577074378, -2.027834702440364) +station = ('kbys', 0.012395287591784298) +zone = ('nvz019', 0.0092241005423275846) + +[92391] +centroid = (0.59756404906198157, -2.0461330484775377) +station = ('ksbd', 0.0024068658010203718) +zone = ('caz055', 0.0020112223736068599) + +[92392] +centroid = (0.60179383705089717, -2.0491594144939111) +station = ('kvcv', 0.0020740255578113927) +zone = ('caz060', 0.0057686765410110176) + +[92394] +centroid = (0.6031179136346303, -2.0482072675737784) +station = ('kvcv', 0.00083082467201723935) +zone = ('caz060', 0.004883570768385484) + +[92395] +centroid = (0.60216609832705514, -2.0471252157974194) +station = ('kvcv', 0.002122100253099828) +zone = ('caz060', 0.0040521204328783323) + +[92397] +centroid = (0.59993963416016349, -2.0530033799983811) +station = ('kgxa', 0.0034155058002934818) +zone = ('caz548', 0.0073347692726489578) + +[92398] +centroid = (0.60930831723877377, -2.0394063401008418) +station = ('kdag', 0.0014212683000445366) +zone = ('caz060', 0.0068462056384321294) + +[92399] +centroid = (0.59397540777378588, -2.0422186240311651) +station = ('ksbd', 0.0034315876366884501) +zone = ('caz055', 0.0036702876842011475) + +[92401] +centroid = (0.59524094601440691, -2.0471342042430671) +station = ('ksbd', 0.00085412482127438752) +zone = ('caz055', 0.0035852336574853836) + +[92404] +centroid = (0.59661472957523676, -2.0459025777498119) +station = ('ksbd', 0.0014673051796287918) +zone = ('caz055', 0.0019928320056408324) + +[92405] +centroid = (0.59593621537523145, -2.0472939193229167) +station = ('ksbd', 0.0012534518694084739) +zone = ('caz055', 0.0033244540221926172) + +[92407] +centroid = (0.59711581360348431, -2.0486866222528382) +station = ('ksbd', 0.0028966076845114348) +zone = ('caz055', 0.0041309519122274688) + +[92408] +centroid = (0.59486856256520149, -2.0467478930664305) +station = ('ksbd', 0.0006037140885375951) +zone = ('caz055', 0.0035938153266913686) + +[92410] +centroid = (0.59527808662088932, -2.0472285043825522) +station = ('ksbd', 0.00093591915149324081) +zone = ('caz055', 0.003625052008677842) + +[92411] +centroid = (0.5955499914650576, -2.047622686994115) +station = ('ksbd', 0.0013144059852979451) +zone = ('caz055', 0.0037481640481500942) + +[92501] +centroid = (0.59332537734717317, -2.048548514349128) +station = ('kral', 0.0013616693169414625) +zone = ('caz048', 0.0031915841330308432) + +[92503] +centroid = (0.59136256261708775, -2.0497548684748139) +station = ('kral', 0.0011819874186027527) +zone = ('caz048', 0.0029741685585824352) + +[92504] +centroid = (0.59172131504483527, -2.0489824032011739) +station = ('kral', 0.0011113995945328059) +zone = ('caz048', 0.0024640076067149789) + +[92505] +centroid = (0.59229830344225209, -2.0506550743964076) +station = ('kral', 0.00067952217128546303) +zone = ('caz048', 0.0039671725475494647) + +[92506] +centroid = (0.59226587522474994, -2.0484461507884983) +station = ('kral', 0.0012279844304621547) +zone = ('caz048', 0.0023617243341758449) + +[92507] +centroid = (0.59290312984123816, -2.0477096392974494) +station = ('kriv', 0.0016468781761303092) +zone = ('caz048', 0.0024555849338089688) + +[92508] +centroid = (0.59151184062801088, -2.0477380881642571) +station = ('kriv', 0.0011226133452381735) +zone = ('caz048', 0.0014450025173476102) + +[92509] +centroid = (0.59346479424782239, -2.0497523901072761) +station = ('kral', 0.00093244153807642803) +zone = ('caz048', 0.0039666761885624258) + +[92518] +centroid = (0.59147642789748789, -2.046893662965557) +station = ('kriv', 0.00045285143266195752) +zone = ('caz048', 0.00088873156437131728) + +[92530] +centroid = (0.58731723847681527, -2.048535825805466) +station = ('kriv', 0.0046982150081119898) +zone = ('caz057', 0.0012775062504528994) + +[92532] +centroid = (0.5880481125543805, -2.0473227172555748) +station = ('kriv', 0.0036991076827826994) +zone = ('caz057', 0.0024999035968021601) + +[92536] +centroid = (0.58455249731531611, -2.0392070060469711) +station = ('kpsp', 0.0077143168166943048) +zone = ('caz056', 0.0040695410771834474) + +[92539] +centroid = (0.58517167032075368, -2.0358850336151879) +station = ('kpsp', 0.0057463346916390833) +zone = ('caz056', 0.0023069718300568393) + +[92543] +centroid = (0.58760525270997943, -2.0413982843761427) +station = ('kriv', 0.0058108866673923683) +zone = ('caz048', 0.0051234080099931915) + +[92544] +centroid = (0.58724438843383708, -2.0399887913788173) +station = ('kpsp', 0.00644029245197971) +zone = ('caz056', 0.0034851274914408812) + +[92545] +centroid = (0.58869699106368689, -2.0426296839765947) +station = ('kriv', 0.0043155331463736917) +zone = ('caz048', 0.0036500778391153916) + +[92548] +centroid = (0.58919982042118646, -2.0439460811116188) +station = ('kriv', 0.0031992996385049066) +zone = ('caz048', 0.002472448914260069) + +[92549] +centroid = (0.58937264292371905, -2.0377330754936622) +station = ('kpsp', 0.0038465019378373668) +zone = ('caz056', 0.0024790155155520006) + +[92551] +centroid = (0.59136537259718347, -2.0459600863486656) +station = ('kriv', 0.00047246018076475187) +zone = ('caz048', 0.00064108987532908337) + +[92553] +centroid = (0.5920747791249491, -2.0463082271745607) +station = ('kriv', 0.00041498837655304176) +zone = ('caz048', 0.0013063182141312085) + +[92555] +centroid = (0.59150334087455358, -2.0440037642433975) +station = ('kriv', 0.0019945031188913225) +zone = ('caz048', 0.0020003441980533713) + +[92557] +centroid = (0.59292604601431687, -2.0465459933785599) +station = ('kriv', 0.001265356644496693) +zone = ('caz048', 0.0021709519682907505) + +[92561] +centroid = (0.58707990860512904, -2.0355288468214408) +station = ('kpsp', 0.0038893681718281808) +zone = ('caz056', 0.0004622288190001764) + +[92562] +centroid = (0.5855282759935212, -2.0480520554433985) +station = ('knfg', 0.0043343126377206635) +zone = ('caz057', 0.0020952927005912442) + +[92563] +centroid = (0.58609980151037921, -2.044604174959376) +station = ('knfg', 0.0057258276250900806) +zone = ('caz048', 0.0048650769938706978) + +[92567] +centroid = (0.59010878789562515, -2.0438750636643555) +station = ('kriv', 0.002611215108516622) +zone = ('caz048', 0.002076583045285481) + +[92570] +centroid = (0.58969949073273997, -2.0476320245056132) +station = ('kriv', 0.0022179124112958683) +zone = ('caz048', 0.0015725631091811046) + +[92571] +centroid = (0.59043284317784295, -2.0456215448336561) +station = ('kriv', 0.00139228790424531) +zone = ('caz048', 0.00061763922069277906) + +[92582] +centroid = (0.59003836386030717, -2.0423854949609486) +station = ('kriv', 0.003709193274389217) +zone = ('caz048', 0.0032884301757103709) + +[92583] +centroid = (0.58987521048183067, -2.0408850004964236) +station = ('kriv', 0.0049170051167872651) +zone = ('caz048', 0.0045417622391045031) + +[92584] +centroid = (0.5874532519854232, -2.045065430574093) +station = ('kriv', 0.0043566328454994986) +zone = ('caz048', 0.0034582346762130987) + +[92585] +centroid = (0.58899114885581805, -2.0450396695143334) +station = ('kriv', 0.0029038831063240055) +zone = ('caz048', 0.0020410302391061608) + +[92586] +centroid = (0.58833261867574804, -2.0455057422377863) +station = ('kriv', 0.0034155393553316768) +zone = ('caz048', 0.0025131649284110985) + +[92587] +centroid = (0.58805038148240807, -2.0463989668423719) +station = ('kriv', 0.0036162349604299221) +zone = ('caz048', 0.0027221477896769374) + +[92590] +centroid = (0.58434558853249219, -2.0459972095018553) +station = ('knfg', 0.0036250452374959508) +zone = ('caz057', 0.0041722301771645954) + +[92591] +centroid = (0.58530098176503398, -2.0438640680900679) +station = ('knfg', 0.0054427069134284078) +zone = ('caz048', 0.0058162814220427518) + +[92592] +centroid = (0.58488109045358916, -2.0427750349967009) +station = ('knfg', 0.0058031944273258676) +zone = ('caz048', 0.006558286634650066) + +[92595] +centroid = (0.58674208267511319, -2.046560933396957) +station = ('kriv', 0.0049263839470556001) +zone = ('caz057', 0.0028473769509144231) + +[92596] +centroid = (0.58757436038221911, -2.0429145042572281) +station = ('kriv', 0.0050131834221822224) +zone = ('caz048', 0.004228008852287816) + +[92602] +centroid = (0.58917507165239313, -2.0551324198864265) +station = ('ksna', 0.0021241931510784006) +zone = ('caz042', 0.0011097139685216275) + +[92603] +centroid = (0.58684730857571588, -2.0556658623190058) +station = ('ksna', 0.0016207170521919351) +zone = ('caz042', 0.0013836021953663395) + +[92604] +centroid = (0.58797671113468142, -2.0557894316300471) +station = ('ksna', 0.0011452832475550229) +zone = ('caz042', 0.00024955359676842592) + +[92606] +centroid = (0.58820569833254299, -2.0562753662003872) +station = ('ksna', 0.00080391930870167636) +zone = ('caz042', 0.00037800322359958581) + +[92610] +centroid = (0.58810827405369681, -2.0538326033792962) +station = ('ksna', 0.0027787255560981624) +zone = ('caz042', 0.001658847750576755) + +[92612] +centroid = (0.58745059908496022, -2.0564518015344713) +station = ('ksna', 0.00073316400086048748) +zone = ('caz042', 0.00093512522224812006) + +[92614] +centroid = (0.58783216296603114, -2.0565789662237717) +station = ('ksna', 0.00048754953444223677) +zone = ('caz042', 0.00074249711027440186) + +[92617] +centroid = (0.5871726030417026, -2.0567254517078917) +station = ('ksna', 0.00079954525105697591) +zone = ('caz042', 0.0012934481724300019) + +[92618] +centroid = (0.58760252999634632, -2.0548133911524542) +station = ('ksna', 0.0019743292756427681) +zone = ('caz042', 0.0010445240293682782) + +[92620] +centroid = (0.58839637555332347, -2.0551491401406605) +station = ('ksna', 0.0017504955592178022) +zone = ('caz042', 0.00058510282560963697) + +[92624] +centroid = (0.58383827367881513, -2.0535379219883896) +station = ('knxf', 0.0040447631154164384) +zone = ('caz057', 0.0042483616386904807) + +[92625] +centroid = (0.58646494184318887, -2.057119285253604) +station = ('ksna', 0.00142056084582239) +zone = ('caz042', 0.0020649672356796824) + +[92626] +centroid = (0.5877989493503657, -2.0579476534231858) +station = ('ksna', 0.00065990635117259657) +zone = ('caz042', 0.0018195307060423589) + +[92627] +centroid = (0.58726425028072471, -2.0580880826148009) +station = ('ksna', 0.00099007759502612366) +zone = ('caz042', 0.0021166805939072243) + +[92629] +centroid = (0.58425106150020412, -2.0543515770323766) +station = ('ksna', 0.0043227277574023953) +zone = ('caz042', 0.0041581655802205792) + +[92630] +centroid = (0.5872288724567869, -2.053999509215664) +station = ('ksna', 0.0027122202171328672) +zone = ('caz042', 0.0018141645208472818) + +[92637] +centroid = (0.58665621247591493, -2.0548013134740306) +station = ('ksna', 0.0023173365282301451) +zone = ('caz042', 0.001783744880244397) + +[92646] +centroid = (0.58751360547095721, -2.0589380230539374) +station = ('ksna', 0.0015244779071788925) +zone = ('caz042', 0.0026890276830772103) + +[92647] +centroid = (0.58858136300074226, -2.0596402213718923) +station = ('ksli', 0.0012082207477829723) +zone = ('caz042', 0.0031963987473927736) + +[92648] +centroid = (0.58780961331209547, -2.0597433877839775) +station = ('ksli', 0.0018918880107096385) +zone = ('caz042', 0.0032894191732104248) + +[92649] +centroid = (0.58861647902529246, -2.0603887407281949) +station = ('ksli', 0.0010141788085991814) +zone = ('caz042', 0.003819181200386062) + +[92651] +centroid = (0.58592317419007744, -2.055527265723105) +station = ('ksna', 0.0023875720702747605) +zone = ('caz042', 0.0023146595903649671) + +[92653] +centroid = (0.5862788548383413, -2.0542091058055365) +station = ('ksna', 0.002936248653828031) +zone = ('caz042', 0.0023640346788404223) + +[92655] +centroid = (0.58896311886803099, -2.059224483944067) +station = ('ksli', 0.0011568218804673053) +zone = ('caz042', 0.002924978558867055) + +[92656] +centroid = (0.58601532757458275, -2.0547824813714013) +station = ('ksna', 0.0027238596175563649) +zone = ('caz042', 0.0023728190645944396) + +[92657] +centroid = (0.58634489809723667, -2.0565046675575145) +station = ('ksna', 0.0016343448015384975) +zone = ('caz042', 0.0019640463848560772) + +[92660] +centroid = (0.58703496637689023, -2.0573047962997988) +station = ('ksna', 0.0008584399989606255) +zone = ('caz042', 0.001714512327893075) + +[92661] +centroid = (0.58646525600245436, -2.0579700983573663) +station = ('ksna', 0.0015713438328682197) +zone = ('caz042', 0.0025089182418530269) + +[92662] +centroid = (0.58651939611585113, -2.0576091293614689) +station = ('ksna', 0.001415622202468017) +zone = ('caz042', 0.0022632950911779118) + +[92663] +centroid = (0.5868356846828976, -2.0583349070776182) +station = ('ksna', 0.0014336651823858302) +zone = ('caz042', 0.0025111041897370777) + +[92672] +centroid = (0.58335221693542716, -2.0526266332260454) +station = ('knxf', 0.0031656401214191447) +zone = ('caz057', 0.0041603068975566296) + +[92673] +centroid = (0.5841158333897597, -2.0527429768739833) +station = ('knxf', 0.0038195596148349778) +zone = ('caz057', 0.0035975986973961777) + +[92675] +centroid = (0.5847162441057383, -2.0526585902046492) +station = ('knxf', 0.0042842424750261735) +zone = ('caz057', 0.0031089638220365254) + +[92676] +centroid = (0.58909246521889636, -2.0527272340041303) +station = ('kajo', 0.0025806328697924215) +zone = ('caz042', 0.0027158472218420438) + +[92677] +centroid = (0.58519226520592715, -2.0542730372160367) +station = ('ksna', 0.0036108411556573473) +zone = ('caz042', 0.0032953658785930106) + +[92678] +centroid = (0.5878308365157997, -2.0512181699729788) +station = ('kajo', 0.0039825697774712983) +zone = ('caz057', 0.0014061681137507241) + +[92679] +centroid = (0.58654747846351574, -2.0525832967007185) +station = ('ksna', 0.0040391233200743337) +zone = ('caz057', 0.0021958040301740794) + +[92683] +centroid = (0.58909138311476017, -2.0593821220821074) +station = ('ksli', 0.00097619300492577277) +zone = ('caz042', 0.0030854403668573453) + +[92688] +centroid = (0.58677396984054708, -2.05271815829202) +station = ('ksna', 0.0038619529480464114) +zone = ('caz057', 0.0022853513672207323) + +[92691] +centroid = (0.58663910824924548, -2.0536567963637427) +station = ('ksna', 0.0031723742333156792) +zone = ('caz042', 0.0024002761193248128) + +[92692] +centroid = (0.58654402271159678, -2.0532596466924513) +station = ('ksna', 0.00351411483619774) +zone = ('caz042', 0.0027152918513315008) + +[92694] +centroid = (0.58550972314357241, -2.0529218905756053) +station = ('ksna', 0.0042552455013252759) +zone = ('caz057', 0.0028091293453551829) + +[92701] +centroid = (0.58901755568740077, -2.0570184052228391) +station = ('ksna', 0.0011387160684804823) +zone = ('caz042', 0.001272499247221754) + +[92703] +centroid = (0.5890069964454262, -2.057861189812042) +station = ('ksna', 0.0012639362271067512) +zone = ('caz042', 0.001868003332126797) + +[92704] +centroid = (0.588544763446328, -2.0578323744260913) +station = ('ksna', 0.00086416332225351341) +zone = ('caz042', 0.0017029780564842641) + +[92705] +centroid = (0.58932157458980561, -2.0558246349210596) +station = ('ksna', 0.0018165046396262628) +zone = ('caz042', 0.0010967503900289552) + +[92706] +centroid = (0.58931567537693386, -2.057428609956935) +station = ('ksna', 0.0014477639276898441) +zone = ('caz042', 0.0017251183763968498) + +[92707] +centroid = (0.58834935638327468, -2.0572271116947922) +station = ('ksna', 0.00046749331008455014) +zone = ('caz042', 0.0011758633844282534) + +[92708] +centroid = (0.5883606486635351, -2.0586355574945667) +station = ('ksna', 0.0013154435981695318) +zone = ('caz042', 0.0023448540081380575) + +[92780] +centroid = (0.58876954440069229, -2.0563322115741247) +station = ('ksna', 0.0011216511192976191) +zone = ('caz042', 0.00069073358987328099) + +[92782] +centroid = (0.58886866164891305, -2.0557309980066902) +station = ('ksna', 0.0015437826848246415) +zone = ('caz042', 0.00064822779765633532) + +[92801] +centroid = (0.59070638863150793, -2.058653394759522) +station = ('kful', 0.00058948186737968478) +zone = ('caz042', 0.0034203855800410974) + +[92802] +centroid = (0.59006564335651579, -2.0581560457358736) +station = ('kful', 0.001336886078834547) +zone = ('caz042', 0.0026750212758756753) + +[92804] +centroid = (0.59023982721586477, -2.0590521326804327) +station = ('kful', 0.00085361009939467314) +zone = ('caz042', 0.0033576198537871148) + +[92805] +centroid = (0.59044853368781847, -2.0578498102653189) +station = ('kful', 0.0012875955425292736) +zone = ('caz042', 0.0027906551283723869) + +[92806] +centroid = (0.59058381415814043, -2.0572282112522209) +station = ('kful', 0.0017105746571278672) +zone = ('caz042', 0.0026328811937746588) + +[92807] +centroid = (0.59077183847845782, -2.0557946501645108) +station = ('kful', 0.002843195749918149) +zone = ('caz042', 0.0025471097040933744) + +[92808] +centroid = (0.5909073109349976, -2.0549543264895527) +station = ('kajo', 0.0021689161881435401) +zone = ('caz042', 0.0027776496452152472) + +[92821] +centroid = (0.59214764662121977, -2.0575177962817119) +station = ('kful', 0.0017532002112673462) +zone = ('caz548', 0.0027179455481599175) + +[92823] +centroid = (0.5921588341817251, -2.0561610994942594) +station = ('kful', 0.0027397156376863952) +zone = ('caz548', 0.003379528295951199) + +[92831] +centroid = (0.59131348395852168, -2.0576793090506915) +station = ('kful', 0.001281187283364945) +zone = ('caz548', 0.0034333591598454307) + +[92832] +centroid = (0.59111943825228497, -2.0582502935154814) +station = ('kful', 0.00078735885760856581) +zone = ('caz548', 0.003499644846449853) + +[92833] +centroid = (0.59130549035054758, -2.0588208067413736) +station = ('kful', 0.00038284706837059962) +zone = ('caz548', 0.0032578141845963533) + +[92835] +centroid = (0.5916995333357703, -2.058033593435554) +station = ('kful', 0.0011452793477024577) +zone = ('caz548', 0.0029763652325395908) + +[92840] +centroid = (0.58969727416458995, -2.0582997561464831) +station = ('kful', 0.0015753353239615598) +zone = ('caz042', 0.0025326604360976848) + +[92841] +centroid = (0.58969170656427605, -2.0591747071538005) +station = ('ksli', 0.00098801780082446197) +zone = ('caz042', 0.003150514185638676) + +[92843] +centroid = (0.58929171200630404, -2.0582908724205904) +station = ('ksna', 0.0016914834795025697) +zone = ('caz042', 0.0023141446809917393) + +[92844] +centroid = (0.58931879951629484, -2.0589563490110834) +station = ('ksli', 0.0012086019411733661) +zone = ('caz042', 0.002827179367803499) + +[92845] +centroid = (0.58962569821196564, -2.0599469804412229) +station = ('ksli', 0.00034429468890809049) +zone = ('caz042', 0.0037054367758959619) + +[92860] +centroid = (0.59211200699789412, -2.0516687092660884) +station = ('kajo', 0.00082618711637222277) +zone = ('caz042', 0.0051976331827868691) + +[92861] +centroid = (0.59022951231998555, -2.0561726186673224) +station = ('ksna', 0.0024844185235461036) +zone = ('caz042', 0.0020258170549237353) + +[92865] +centroid = (0.59039306712418993, -2.0568913976131711) +station = ('kful', 0.0020364869072009755) +zone = ('caz042', 0.0023435517958046567) + +[92866] +centroid = (0.58965276826866408, -2.056779312568608) +station = ('ksna', 0.0017960321686394485) +zone = ('caz042', 0.0016350052659185287) + +[92867] +centroid = (0.58993839140075299, -2.0567618243695032) +station = ('ksna', 0.0020800328362602597) +zone = ('caz042', 0.0018834706225556047) + +[92868] +centroid = (0.58971437839125951, -2.0573339083917217) +station = ('ksna', 0.0018349245266516255) +zone = ('caz042', 0.001949389957076417) + +[92869] +centroid = (0.59006937836111506, -2.0558414948016344) +station = ('ksna', 0.0024445367906669479) +zone = ('caz042', 0.0018446255273770907) + +[92870] +centroid = (0.59133776148841688, -2.0569540025734403) +station = ('kful', 0.0018798987788473786) +zone = ('caz042', 0.0032520843637263118) + +[92879] +centroid = (0.59136779860484379, -2.0512313646621236) +station = ('kajo', 0.0011004144502527046) +zone = ('caz057', 0.0046099852797139833) + +[92880] +centroid = (0.59198152618301503, -2.0528180260318192) +station = ('kajo', 0.00040707795736801347) +zone = ('caz042', 0.0045100781141958713) + +[92881] +centroid = (0.59039966446876257, -2.0511823383634353) +station = ('kajo', 0.0016779243001158659) +zone = ('caz057', 0.0036622330692863397) + +[92882] +centroid = (0.59062729030980765, -2.0525414262519632) +station = ('kajo', 0.0010397145519081268) +zone = ('caz042', 0.0036340744492217246) + +[92883] +centroid = (0.58909658419593092, -2.0503127280636289) +station = ('kajo', 0.0031509407067270628) +zone = ('caz057', 0.0022367188641232508) + +[92886] +centroid = (0.59160271992216218, -2.0559353062489287) +station = ('kful', 0.0027574237848856978) +zone = ('caz042', 0.0033792145187832119) + +[92887] +centroid = (0.59141378803063382, -2.0547789907128973) +station = ('kajo', 0.0019026469833860113) +zone = ('caz042', 0.0033045695481047645) + +[93001] +centroid = (0.59406368652735186, -2.0909182319902975) +station = ('ksba', 0.0069477318575490374) +zone = ('caz039', 0.0074696692341954841) + +[93003] +centroid = (0.59836288626061929, -2.0808373149505335) +station = ('koxr', 0.0014981424232332176) +zone = ('caz040', 0.0018617963950014233) + +[93004] +centroid = (0.59827581178423728, -2.0798323369139426) +station = ('koxr', 0.0014600819796034843) +zone = ('caz040', 0.0012348248148702856) + +[93010] +centroid = (0.59738876564520371, -2.0783357868935277) +station = ('kcma', 0.00020157178621692137) +zone = ('caz040', 0.00062306146372399828) + +[93012] +centroid = (0.59688202675017976, -2.0767352152496934) +station = ('kcma', 0.0014085520126103171) +zone = ('caz040', 0.001952334781563444) + +[93013] +centroid = (0.60111579408978999, -2.0858981938226639) +station = ('ksba', 0.0048506451639553447) +zone = ('caz039', 0.005625783960317739) + +[93015] +centroid = (0.60046489099855116, -2.0751576644986933) +station = ('kcma', 0.0042258699553920729) +zone = ('caz045', 0.002752735047434899) + +[93021] +centroid = (0.59859607970197837, -2.075171103533934) +station = ('kcma', 0.0030121375540223807) +zone = ('caz045', 0.0011334252948604821) + +[93022] +centroid = (0.60052904930185458, -2.0822921865084107) +station = ('koxr', 0.0039384168782267978) +zone = ('caz044', 0.0026999815081810989) + +[93023] +centroid = (0.60266568137214604, -2.0823546692956323) +station = ('koxr', 0.0059775114486814085) +zone = ('caz053', 0.0030515457224989679) + +[93030] +centroid = (0.59699418160791284, -2.0799802884746343) +station = ('koxr', 0.00038502681844407874) +zone = ('caz040', 0.00079291291709116549) + +[93033] +centroid = (0.59603363965407785, -2.0791711014735319) +station = ('kntd', 0.00060689637493772063) +zone = ('caz040', 0.0011883874717509083) + +[93035] +centroid = (0.59658793877121863, -2.0808685388908517) +station = ('koxr', 0.00047866658564499196) +zone = ('caz040', 0.0016227981271415117) + +[93036] +centroid = (0.59754835855200605, -2.0801597955882016) +station = ('koxr', 0.00068398590389827255) +zone = ('caz040', 0.00096680209402490364) + +[93040] +centroid = (0.60168276429730039, -2.0734019505376495) +station = ('ksdb', 0.0049559850601349365) +zone = ('caz088', 0.0034617581091899692) + +[93041] +centroid = (0.5952776328352839, -2.0786790233442249) +station = ('kntd', 0.00030060934384027973) +zone = ('caz040', 0.0019663948207707988) + +[93042] +centroid = (0.58042067465731484, -2.0857310785467851) +station = ('knsi', 0.00066500334989042333) +zone = ('caz087', 0.015767353763507214) + +[93043] +centroid = (0.59639391051827439, -2.0804745133589213) +station = ('koxr', 0.00050988129361019606) +zone = ('caz040', 0.0014309466762573919) + +[93060] +centroid = (0.60043415575042358, -2.0785968008831635) +station = ('kcma', 0.0032448945452380382) +zone = ('caz044', 0.00038739083405767285) + +[93063] +centroid = (0.59880030067775414, -2.0714828039454494) +station = ('kvny', 0.0033513135129742762) +zone = ('caz045', 0.0024014883131299428) + +[93064] +centroid = (0.59773261296113922, -2.0717222282122378) +station = ('kvny', 0.0031859610143387712) +zone = ('caz045', 0.0020076795799729421) + +[93065] +centroid = (0.59791964244378282, -2.0730089023901006) +station = ('kvny', 0.0042657840165420792) +zone = ('caz045', 0.00094434779902162242) + +[93066] +centroid = (0.59860653422419774, -2.0771970991829414) +station = ('kcma', 0.0017259809606051824) +zone = ('caz040', 0.0020733911852700709) + +[93067] +centroid = (0.60077660680295741, -2.0873000422778656) +station = ('ksba', 0.0036981932031006654) +zone = ('caz039', 0.0045050900494090409) + +[93101] +centroid = (0.60072450872478533, -2.0893190915164501) +station = ('ksba', 0.0020429284962607394) +zone = ('caz039', 0.0028755551604586101) + +[93103] +centroid = (0.60107020608972794, -2.0887895586213951) +station = ('ksba', 0.0024658418121244808) +zone = ('caz039', 0.0032503496381038853) + +[93105] +centroid = (0.60274738023443186, -2.0908630446793497) +station = ('ksba', 0.0019258442012315756) +zone = ('caz039', 0.0020446947579722415) + +[93108] +centroid = (0.6012314396060271, -2.0877102121053768) +station = ('ksba', 0.0033638043204092848) +zone = ('caz039', 0.0041277963147010677) + +[93109] +centroid = (0.60050245048405415, -2.0896292365245297) +station = ('ksba', 0.0018337615573562) +zone = ('caz039', 0.00269182388863726) + +[93110] +centroid = (0.60125992337941958, -2.0902407126279661) +station = ('ksba', 0.0012987033657166339) +zone = ('caz039', 0.0020421034097094361) + +[93111] +centroid = (0.60124676359685958, -2.0909746584850146) +station = ('ksba', 0.00071539918948379196) +zone = ('caz039', 0.0014397110195104852) + +[93117] +centroid = (0.60177341669864881, -2.0958554717382167) +station = ('kiza', 0.0022347569856375621) +zone = ('caz039', 0.0026201227698790111) + +[93201] +centroid = (0.62591999454011293, -2.0858593951533919) +station = ('kptv', 0.0069488404619913388) +zone = ('caz091', 0.003813362061824129) + +[93202] +centroid = (0.6337874152093278, -2.0893066298655909) +station = ('khjo', 0.0011226835226406536) +zone = ('caz091', 0.009361020716266202) + +[93203] +centroid = (0.61283077564173383, -2.0740147530913173) +station = ('kbfl', 0.0063996704311635923) +zone = ('caz095', 0.0055998322374481982) + +[93204] +centroid = (0.62639536986847866, -2.0955922237271385) +station = ('knlc', 0.0079194613550297704) +zone = ('caz091', 0.0047822899193235248) + +[93205] +centroid = (0.61991119244463944, -2.0669939916422453) +station = ('ktsp', 0.0066024933095510628) +zone = ('caz095', 0.003524068184535877) + +[93206] +centroid = (0.61849759792357162, -2.0852798585752672) +station = ('kbfl', 0.006082964839252877) +zone = ('caz091', 0.007175751539088511) + +[93207] +centroid = (0.62639571893432899, -2.0704944239900449) +station = ('kptv', 0.0066500445557366927) +zone = ('caz097', 0.0067380693411798172) + +[93208] +centroid = (0.62930616018178465, -2.0694100509257809) +station = ('kptv', 0.0070423389160893766) +zone = ('caz097', 0.0037087487497673875) + +[93210] +centroid = (0.63209390478282512, -2.1017995570250263) +station = ('knlc', 0.0069784704836562622) +zone = ('caz089', 0.0071489842044720137) + +[93212] +centroid = (0.62905420445096671, -2.0861519123360264) +station = ('khjo', 0.0050313064845870252) +zone = ('caz091', 0.0056492414970526518) + +[93215] +centroid = (0.62447020189035884, -2.0804468673435697) +station = ('kptv', 0.0048190004880423838) +zone = ('caz092', 0.00021560268698869733) + +[93218] +centroid = (0.6258904810224617, -2.0775725718649229) +station = ('kptv', 0.0030405747443295948) +zone = ('caz092', 0.0025458987223862576) + +[93219] +centroid = (0.62611358646074411, -2.0818558018355344) +station = ('kptv', 0.0041210227450761009) +zone = ('caz092', 0.0021291485881294687) + +[93220] +centroid = (0.6179095790452821, -2.0726923694769588) +station = ('kbfl', 0.0042063223340676817) +zone = ('caz095', 0.0027832704983506984) + +[93221] +centroid = (0.63346749635743727, -2.0773961365308389) +station = ('kptv', 0.0046029406711039483) +zone = ('caz094', 0.0017424985299719733) + +[93222] +centroid = (0.60811236527542978, -2.0804966964937144) +station = ('ksdb', 0.0071634490290570941) +zone = ('caz053', 0.0038466963073393256) + +[93223] +centroid = (0.63363373896868957, -2.0805179196974186) +station = ('kvis', 0.0027521310003042611) +zone = ('caz094', 0.0042201139134225322) + +[93224] +centroid = (0.61484806209777387, -2.0868780391180262) +station = ('kbfl', 0.0082154589442716731) +zone = ('caz038', 0.0055389408996644142) + +[93225] +centroid = (0.60682544675147176, -2.077470522463559) +station = ('ksdb', 0.0045086572868685828) +zone = ('caz053', 0.0028593399586906644) + +[93226] +centroid = (0.6237055207851826, -2.0723774771733141) +station = ('kbfl', 0.0068847560199616483) +zone = ('caz095', 0.0070985505465277756) + +[93230] +centroid = (0.63341890639106169, -2.0878095562464005) +station = ('khjo', 0.00046865617246665285) +zone = ('caz091', 0.0091707593874076117) + +[93234] +centroid = (0.63165680452495565, -2.0959675742360724) +station = ('knlc', 0.0031677913797648286) +zone = ('caz091', 0.0085817907439091172) + +[93235] +centroid = (0.63512229538113052, -2.0807797190852177) +station = ('kvis', 0.0028354179081107947) +zone = ('caz094', 0.0049111078120459744) + +[93238] +centroid = (0.62359038141442846, -2.0663250592998335) +station = ('kiyk', 0.0079889521110495867) +zone = ('caz095', 0.0070520030779756999) + +[93239] +centroid = (0.62914215159197473, -2.094224356832473) +station = ('knlc', 0.0050261693089187409) +zone = ('caz091', 0.0057090285306117799) + +[93240] +centroid = (0.62164296048834566, -2.0673772484926909) +station = ('ktsp', 0.0083401344514193246) +zone = ('caz095', 0.0049280611326842482) + +[93241] +centroid = (0.61531060925613734, -2.0754177534638258) +station = ('kbfl', 0.0036799685552920095) +zone = ('caz095', 0.0051527866423665396) + +[93242] +centroid = (0.63603416010212754, -2.089642972265743) +station = ('khjo', 0.0025635784336410124) +zone = ('caz089', 0.011300561333888697) + +[93243] +centroid = (0.60689810480823225, -2.0733110886967907) +station = ('ksdb', 0.0011501949243214312) +zone = ('caz053', 0.005523894676989158) + +[93244] +centroid = (0.63639366302145328, -2.0768945289038157) +station = ('kvis', 0.0062053836897097148) +zone = ('caz094', 0.0037451907800199261) + +[93245] +centroid = (0.63341960452276247, -2.0914186702467221) +station = ('knlc', 0.001840481625078501) +zone = ('caz091', 0.0090191375138766738) + +[93247] +centroid = (0.63191860391275478, -2.0781823026391071) +station = ('kptv', 0.0030189365972080034) +zone = ('caz094', 0.002451932010154968) + +[93249] +centroid = (0.62167357356342567, -2.0924512070322017) +station = ('kprb', 0.010595033922348923) +zone = ('caz091', 0.0033274503377580681) + +[93250] +centroid = (0.62247310889376428, -2.0803968287539152) +station = ('kbfl', 0.0045579163452546022) +zone = ('caz092', 0.0020081107244913116) + +[93251] +centroid = (0.616723191486239, -2.0901757340199141) +station = ('kbfl', 0.010221153607139122) +zone = ('caz051', 0.005307203525586098) + +[93252] +centroid = (0.60580285834272818, -2.0811913200827155) +station = ('ksdb', 0.007588811332978662) +zone = ('caz053', 0.0020991372354242127) + +[93254] +centroid = (0.61028636484500642, -2.091086446823605) +station = ('kiza', 0.0073414235234864891) +zone = ('caz038', 0.0011296633052625396) + +[93255] +centroid = (0.62268073326158146, -2.0612578972423958) +station = ('kiyk', 0.0038047390653918379) +zone = ('caz098', 0.0043410653506699643) + +[93256] +centroid = (0.62763149931120366, -2.0824045508056543) +station = ('kptv', 0.0037024424758120528) +zone = ('caz092', 0.0036357598980042158) + +[93257] +centroid = (0.62811060964416854, -2.0745022060981069) +station = ('kptv', 0.0030197055585601388) +zone = ('caz094', 0.0047958629671733029) + +[93258] +centroid = (0.62926764076519315, -2.0795667327083742) +station = ('kptv', 0.0012373959129547368) +zone = ('caz092', 0.00481982412450582) + +[93260] +centroid = (0.62512888915006148, -2.0711669342574233) +station = ('kptv', 0.0067670037537056167) +zone = ('caz097', 0.008115628520102362) + +[93261] +centroid = (0.62497683606562771, -2.079177279939084) +station = ('kptv', 0.0040183534652532202) +zone = ('caz092', 0.0009572296224872373) + +[93262] +centroid = (0.6390609449975212, -2.0716618572734116) +station = ('kvis', 0.011154939997556989) +zone = ('caz519', 0.0062036199970695533) + +[93263] +centroid = (0.61946630801830593, -2.0819484788188158) +station = ('kbfl', 0.0035234605896132501) +zone = ('caz092', 0.0052092063862724022) + +[93265] +centroid = (0.63261074913421811, -2.0715860576239975) +station = ('kptv', 0.0064409755831678489) +zone = ('caz097', 0.0032197844782900957) + +[93266] +centroid = (0.63085613473060331, -2.0920788410362889) +station = ('knlc', 0.0034806800031605863) +zone = ('caz091', 0.0065797089501358512) + +[93267] +centroid = (0.63095711948112365, -2.0778008958376688) +station = ('kptv', 0.0020714748187238116) +zone = ('caz094', 0.0027275136492185916) + +[93268] +centroid = (0.61369953073020655, -2.0843614837761604) +station = ('kbfl', 0.0071353577231822504) +zone = ('caz038', 0.0058887420626823322) + +[93270] +centroid = (0.62748820777961489, -2.0782131600602827) +station = ('kptv', 0.0014147902760971436) +zone = ('caz092', 0.0034105007337941152) + +[93271] +centroid = (0.63651356714106533, -2.0734656899619326) +station = ('kptv', 0.0084829764979193721) +zone = ('caz094', 0.0039681301537999245) + +[93272] +centroid = (0.62914606112949933, -2.0829510483010387) +station = ('kvis', 0.0047643946685991759) +zone = ('caz092', 0.0051831255934240558) + +[93274] +centroid = (0.63142680503612791, -2.0834126529816062) +station = ('kvis', 0.00245338875385623) +zone = ('caz094', 0.0066415899941753261) + +[93276] +centroid = (0.61608684444096196, -2.083196511407039) +station = ('kbfl', 0.0049744167107567856) +zone = ('caz038', 0.0082520530385666434) + +[93277] +centroid = (0.63362071881246973, -2.083498069395199) +station = ('kvis', 0.00040964034749345856) +zone = ('caz094', 0.0065945824354134205) + +[93280] +centroid = (0.62224900861780819, -2.0847329596541546) +station = ('kbfl', 0.0068035340330068767) +zone = ('caz092', 0.0043135800162938049) + +[93283] +centroid = (0.62119809351530475, -2.0646869979836664) +station = ('kiyk', 0.0067172020195378004) +zone = ('caz095', 0.005709531309680169) + +[93285] +centroid = (0.62334851368668698, -2.0683408622260093) +station = ('kbfl', 0.009142324178671845) +zone = ('caz095', 0.0063978377832280275) + +[93286] +centroid = (0.63642794128796254, -2.0785884931159235) +station = ('kvis', 0.0050110591570926236) +zone = ('caz094', 0.0044129784907378225) + +[93287] +centroid = (0.62409284425278511, -2.0767351803431087) +station = ('kptv', 0.0049339353922620306) +zone = ('caz092', 0.0028217933661505426) + +[93291] +centroid = (0.63515632930154442, -2.0834491303629727) +station = ('kvis', 0.0013653734317357134) +zone = ('caz094', 0.0069019080630410559) + +[93292] +centroid = (0.63487381285552413, -2.0806364799135064) +station = ('kvis', 0.0028399762911425551) +zone = ('caz094', 0.0046973331410239613) + +[93301] +centroid = (0.61757316683196017, -2.0773006844740474) +station = ('kbfl', 0.00095218988912192559) +zone = ('caz095', 0.006418249266641439) + +[93304] +centroid = (0.61679415657362513, -2.0773511070361375) +station = ('kbfl', 0.0016772703436522317) +zone = ('caz095', 0.0064407102838405263) + +[93305] +centroid = (0.6176676415043707, -2.0766832567978617) +station = ('kbfl', 0.0011952616037480958) +zone = ('caz095', 0.0059262842518368513) + +[93306] +centroid = (0.61903657304988002, -2.0730959594131901) +station = ('kbfl', 0.0038915952710980072) +zone = ('caz095', 0.0035871035478832244) + +[93307] +centroid = (0.61514338926050383, -2.0759138109438275) +station = ('kbfl', 0.003632456184833122) +zone = ('caz095', 0.0055904913119728438) + +[93308] +centroid = (0.62170525128934939, -2.0732709810305803) +station = ('kbfl', 0.0049407453784018696) +zone = ('caz095', 0.0056233783796823221) + +[93309] +centroid = (0.61684981512347126, -2.0780728355884222) +station = ('kbfl', 0.0015925070236579107) +zone = ('caz095', 0.007027410283387615) + +[93311] +centroid = (0.61422332149202252, -2.0800112506155646) +station = ('kbfl', 0.0045711556455819216) +zone = ('caz095', 0.0090558217214731177) + +[93312] +centroid = (0.61773272483217767, -2.0790442334902046) +station = ('kbfl', 0.0012199843284637912) +zone = ('caz092', 0.006803956917486087) + +[93313] +centroid = (0.61371344100434488, -2.0777502812893611) +station = ('kbfl', 0.0047151816950808546) +zone = ('caz095', 0.0075323622593783009) + +[93314] +centroid = (0.61773949670967543, -2.08121517873359) +station = ('kbfl', 0.0028558587388380274) +zone = ('caz092', 0.0067863746290598766) + +[93401] +centroid = (0.61497985190959203, -2.1051458593465826) +station = ('ksbp', 0.0002510539834854503) +zone = ('caz034', 0.0023862821353372752) + +[93402] +centroid = (0.61601800865526324, -2.1089766999750772) +station = ('ksbp', 0.0030764056732734695) +zone = ('caz034', 0.0014591107754092234) + +[93405] +centroid = (0.61604823775790785, -2.1071907569113892) +station = ('ksbp', 0.0018044754503096087) +zone = ('caz034', 0.0005351787221650389) + +[93410] +centroid = (0.61612216990502233, -2.1059306291914495) +station = ('ksbp', 0.0012481024064603359) +zone = ('caz034', 0.0012219620785556746) + +[93420] +centroid = (0.61393710494798803, -2.1027158199757383) +station = ('ksbp', 0.0024470642337572207) +zone = ('caz034', 0.0045933467191403574) + +[93422] +centroid = (0.61896072104058819, -2.1064943530865508) +station = ('kprb', 0.0036407706037646249) +zone = ('caz034', 0.0024818918907795525) + +[93424] +centroid = (0.61411018924990823, -2.1071701096663382) +station = ('ksbp', 0.0016317305535426048) +zone = ('caz034', 0.002465428589452505) + +[93426] +centroid = (0.62567646874958216, -2.110782190726388) +station = ('kprb', 0.005368095695125071) +zone = ('caz516', 0.0047047110847068738) + +[93427] +centroid = (0.60406606375077621, -2.0982265015270509) +station = ('kiza', 0.0020689806527638601) +zone = ('caz036', 0.0023535128121025626) + +[93428] +centroid = (0.62107494308328415, -2.1125726890994239) +station = ('kprb', 0.0059634807433383815) +zone = ('caz034', 0.0062096498485239579) + +[93429] +centroid = (0.60852705550570352, -2.1037595966816012) +station = ('ksmx', 0.0011629460369516676) +zone = ('caz035', 0.0029736399403073859) + +[93430] +centroid = (0.61932957892470475, -2.1108782187418327) +station = ('kprb', 0.0054366369693158688) +zone = ('caz034', 0.0039999656054067363) + +[93432] +centroid = (0.61926446069031282, -2.1027304283815775) +station = ('kprb', 0.0039195036861219886) +zone = ('caz037', 0.001799797127215753) + +[93433] +centroid = (0.6129751318241663, -2.1052102794492735) +station = ('ksbp', 0.0019722056989925131) +zone = ('caz034', 0.0039898376370243894) + +[93434] +centroid = (0.60945511688215914, -2.1049566132957889) +station = ('ksmx', 0.0020099301721886028) +zone = ('caz035', 0.0042951287483207756) + +[93436] +centroid = (0.6039023344136466, -2.1010782648050546) +station = ('klpc', 0.0016606675333895801) +zone = ('caz035', 0.0021958255246783778) + +[93437] +centroid = (0.60629184723925944, -2.103885138214697) +station = ('kvbg', 0.0004951447518866753) +zone = ('caz035', 0.0017082876163542369) + +[93440] +centroid = (0.60584245986345597, -2.0984119078534906) +station = ('kiza', 0.0028811763950125197) +zone = ('caz036', 0.0021904925570439895) + +[93441] +centroid = (0.60716791525729807, -2.0942053327436261) +station = ('kiza', 0.0033972582191288776) +zone = ('caz036', 0.0022602104525054549) + +[93442] +centroid = (0.61788039714018883, -2.1083464964887675) +station = ('ksbp', 0.0037748917302467561) +zone = ('caz034', 0.0015516622577066875) + +[93444] +centroid = (0.61151446577317214, -2.1032019116257112) +station = ('ksmx', 0.002455227066949491) +zone = ('caz035', 0.0056194242531205935) + +[93445] +centroid = (0.61164025165236335, -2.1052196518673569) +station = ('ksbp', 0.0033027441898938934) +zone = ('caz034', 0.0052231345398981877) + +[93446] +centroid = (0.62244680678193676, -2.1071304034258551) +station = ('kprb', 0.0013672205857365569) +zone = ('caz034', 0.0058764290634369777) + +[93449] +centroid = (0.61375677752967184, -2.1058417570259378) +station = ('ksbp', 0.0012237622916271942) +zone = ('caz034', 0.0030644710895194314) + +[93450] +centroid = (0.62980965276439993, -2.1086845493115862) +station = ('kprb', 0.007764907260782738) +zone = ('caz516', 0.0033382561597043534) + +[93451] +centroid = (0.62634224204604783, -2.1050182408716767) +station = ('kprb', 0.003857328632781066) +zone = ('caz516', 0.0073271166048932143) + +[93452] +centroid = (0.62389384181147278, -2.1157466750639307) +station = ('kprb', 0.0084772329552999688) +zone = ('caz516', 0.0066377696892019819) + +[93453] +centroid = (0.61616974758043153, -2.0988730412951599) +station = ('ksbp', 0.0055084018894255519) +zone = ('caz037', 0.0035468260307998018) + +[93454] +centroid = (0.60987952859636652, -2.0988758687285483) +station = ('ksmx', 0.0030988684750167458) +zone = ('caz035', 0.0045705862920690944) + +[93455] +centroid = (0.60792945476982074, -2.1019612617802235) +station = ('ksmx', 0.0012816560381733746) +zone = ('caz035', 0.0019242451407962366) + +[93458] +centroid = (0.61015558732415442, -2.1029486294446618) +station = ('ksmx', 0.0010885225682800937) +zone = ('caz035', 0.0042470380605529679) + +[93460] +centroid = (0.60481339628318764, -2.094521429324455) +station = ('kiza', 0.0012711835696178331) +zone = ('caz036', 0.0011892867445275821) + +[93461] +centroid = (0.62226068487050412, -2.0990451482126988) +station = ('kprb', 0.005208498608831642) +zone = ('caz037', 0.0030608564520095091) + +[93463] +centroid = (0.60430976407423209, -2.0968014750993826) +station = ('kiza', 0.00094555805052074263) +zone = ('caz036', 0.0013075150709615836) + +[93465] +centroid = (0.62026922928739348, -2.1073086713556539) +station = ('kprb', 0.0026956269518100522) +zone = ('caz034', 0.0036967822486564214) + +[93501] +centroid = (0.61203654611232117, -2.0627163467252396) +station = ('kmhv', 0.00049919953804335279) +zone = ('caz099', 0.0022154302513397732) + +[93505] +centroid = (0.61372304031523084, -2.0575080398911934) +station = ('k9l2', 0.0031916260021073264) +zone = ('caz099', 0.0025923127479828578) + +[93510] +centroid = (0.60145948432609264, -2.0633431468195083) +station = ('kpmd', 0.003597998258183232) +zone = ('caz054', 0.00055395663409500793) + +[93512] +centroid = (0.66135002127596509, -2.0691763862455241) +station = ('kmmh', 0.0061588345541699601) +zone = ('caz073', 0.004637573236389499) + +[93513] +centroid = (0.64807546586431664, -2.0622091365913175) +station = ('kbih', 0.0050350960102968807) +zone = ('caz521', 0.0026761390129490972) + +[93514] +centroid = (0.65435481144714192, -2.0662842535019217) +station = ('kbih', 0.0022059985573981609) +zone = ('caz521', 0.0097110371875384453) + +[93516] +centroid = (0.61090506661154587, -2.0530297693766713) +station = ('k9l2', 0.0031637702003896404) +zone = ('caz099', 0.0058475919745336986) + +[93517] +centroid = (0.66809201873690893, -2.0835880760247241) +station = ('kban', 0.0022368657229171144) +zone = ('caz073', 0.0090125244490779008) + +[93518] +centroid = (0.61755079171094973, -2.067650567053553) +station = ('ktsp', 0.0042758919385142745) +zone = ('caz095', 0.0015691921251218231) + +[93519] +centroid = (0.61600259739796803, -2.0581932212489416) +station = ('kmhv', 0.0051011225556940078) +zone = ('caz099', 0.0041443103628409066) + +[93522] +centroid = (0.63383705237325438, -2.0523551123543129) +station = ('knid', 0.011151552229603149) +zone = ('caz522', 0.0071296131114378181) + +[93523] +centroid = (0.61018150546354655, -2.0566154261518461) +station = ('k9l2', 0.00044499702896007526) +zone = ('caz099', 0.0033987050829578274) + +[93524] +centroid = (0.60967818741385638, -2.0578675777171043) +station = ('kedw', 0.00028618024629211005) +zone = ('caz099', 0.0030194858226201236) + +[93526] +centroid = (0.6426973559473439, -2.0643974129541758) +station = ('kbih', 0.0095483239993241469) +zone = ('caz519', 0.00083632792192006101) + +[93527] +centroid = (0.63041177390304548, -2.0625737009654741) +station = ('kiyk', 0.0092824033919421071) +zone = ('caz097', 0.0046610230261322381) + +[93528] +centroid = (0.61735095151159636, -2.0532632944305882) +station = ('knid', 0.0054999450359523609) +zone = ('caz098', 0.0049936445202962395) + +[93529] +centroid = (0.66000510546096325, -2.0786111649429073) +station = ('kmmh', 0.0050159655768250494) +zone = ('caz073', 0.0035960401024465252) + +[93530] +centroid = (0.63662333089772327, -2.057047080982449) +station = ('knid', 0.014014853820092908) +zone = ('caz520', 0.0022385525105460746) + +[93531] +centroid = (0.6147382285279458, -2.0696562121634821) +station = ('ktsp', 0.0026038834848645183) +zone = ('caz095', 0.0022831983129945987) + +[93532] +centroid = (0.6054520646163698, -2.0688031475849846) +station = ('ksdb', 0.0028270961557603767) +zone = ('caz088', 0.0041414383016149126) + +[93534] +centroid = (0.60586123960620752, -2.0621574748454585) +station = ('kwjf', 0.00097906657736769077) +zone = ('caz059', 0.001469177909915399) + +[93535] +centroid = (0.6058675926046847, -2.0571263887436597) +station = ('kedw', 0.0035792079860898049) +zone = ('caz059', 0.0030310378496041499) + +[93536] +centroid = (0.60645636197455255, -2.0659331281630053) +station = ('kwjf', 0.0022020628057142114) +zone = ('caz059', 0.0045489278686320425) + +[93541] +centroid = (0.6630169677912523, -2.0789382221914385) +station = ('kmmh', 0.0075526005831349809) +zone = ('caz073', 0.0032479740704875323) + +[93543] +centroid = (0.60180886433575687, -2.0591744628077051) +station = ('kpmd', 0.0030298585178911751) +zone = ('caz059', 0.0034615257744091484) + +[93544] +centroid = (0.60206069789352712, -2.0552411713521184) +station = ('kgxa', 0.0017543118296576784) +zone = ('caz059', 0.0053756490719516917) + +[93545] +centroid = (0.63802931578325239, -2.0604348523270328) +station = ('kbih', 0.014798072336617568) +zone = ('caz520', 0.00095108543062519116) + +[93546] +centroid = (0.65534968402736382, -2.0741471886749587) +station = ('kmmh', 0.0011884574115077057) +zone = ('caz096', 0.0056327642048125057) + +[93549] +centroid = (0.63201234554687946, -2.0585808588758092) +station = ('kiyk', 0.0096485939791606228) +zone = ('caz520', 0.0053429244373347853) + +[93550] +centroid = (0.60053957363724408, -2.0616456919488964) +station = ('kmws', 0.0031634837104874444) +zone = ('caz054', 0.0014774345865508215) + +[93551] +centroid = (0.60395565422229491, -2.063659941532038) +station = ('kwjf', 0.0022780531709988838) +zone = ('caz059', 0.0026868928589235948) + +[93552] +centroid = (0.60337545441905449, -2.0599029283309025) +station = ('kpmd', 0.0013861735696865782) +zone = ('caz059', 0.0017839127997535259) + +[93553] +centroid = (0.60052089861424773, -2.0579495732853625) +station = ('kmws', 0.0037685807443502057) +zone = ('caz054', 0.0044967834091110487) + +[93554] +centroid = (0.61808992391689077, -2.0553753522650111) +station = ('kiyk', 0.0045183844405230714) +zone = ('caz098', 0.0037575512165269544) + +[93555] +centroid = (0.62145081719099371, -2.0539640615785562) +station = ('knid', 0.0013611755748092228) +zone = ('caz098', 0.0017127454774433317) + +[93558] +centroid = (0.61693772735789421, -2.0528805786322106) +station = ('knid', 0.0059594879215457324) +zone = ('caz098', 0.0055038320165279276) + +[93560] +centroid = (0.6085421002438558, -2.0654197046569465) +station = ('kwjf', 0.002923993131871395) +zone = ('caz059', 0.0052388802375881111) + +[93561] +centroid = (0.61293820065719407, -2.0681071451858744) +station = ('ktsp', 0.00098332357083377015) +zone = ('caz095', 0.0042245586875281895) + +[93562] +centroid = (0.62392675872116532, -2.0487538348823326) +station = ('knid', 0.004606549826123919) +zone = ('caz098', 0.0062727852209616217) + +[93563] +centroid = (0.60043726243649209, -2.0554055988209483) +station = ('kgxa', 0.0031777238649057706) +zone = ('caz059', 0.0063280369192552678) + +[93591] +centroid = (0.60378613039204876, -2.0562366547975781) +station = ('kgxa', 0.0021154657326410498) +zone = ('caz059', 0.0038611023508072074) + +[93592] +centroid = (0.6257496678584108, -2.0459571367422296) +station = ('knid', 0.0073520936117018286) +zone = ('caz522', 0.010050910283056019) + +[93601] +centroid = (0.65263918769901652, -2.0898753454023535) +station = ('kmae', 0.0088610497307615096) +zone = ('caz093', 0.0023689992332110977) + +[93602] +centroid = (0.64627508892771446, -2.0824684647628624) +station = ('kfat', 0.0070373776729801604) +zone = ('caz096', 0.0064681954434256204) + +[93603] +centroid = (0.63918332748467099, -2.0761945820605958) +station = ('kvis', 0.0081927007997967521) +zone = ('caz094', 0.0063631246542630946) + +[93604] +centroid = (0.65187323250348628, -2.0843731076689784) +station = ('kmmh', 0.0094368983297258291) +zone = ('caz096', 0.0033208871033199123) + +[93605] +centroid = (0.64931759923966859, -2.0812919208608007) +station = ('kmmh', 0.0092374975529584524) +zone = ('caz096', 0.0032863262256623213) + +[93606] +centroid = (0.64233715489631726, -2.0947188609694405) +station = ('kmae', 0.003429141366913024) +zone = ('caz090', 0.0045364126709915784) + +[93608] +centroid = (0.63693803121515036, -2.1007065969408423) +station = ('knlc', 0.0064245662400700477) +zone = ('caz089', 0.0029682239650457194) + +[93609] +centroid = (0.63750945201225329, -2.0920228683271773) +station = ('knlc', 0.0035824427938541603) +zone = ('caz089', 0.0090936297828387077) + +[93610] +centroid = (0.64748753425248995, -2.099303212595899) +station = ('kmae', 0.0030465333496951883) +zone = ('caz090', 0.0024351019781892118) + +[93611] +centroid = (0.64272266322149774, -2.0888133649123923) +station = ('kfat', 0.00089231860499120635) +zone = ('caz093', 0.0075983728925153654) + +[93612] +centroid = (0.64254057302063727, -2.0893440322714611) +station = ('kfat', 0.00055680032085066351) +zone = ('caz090', 0.0070060459528054654) + +[93614] +centroid = (0.64943769534549833, -2.0900291961759168) +station = ('kmae', 0.0064600079702201831) +zone = ('caz093', 0.0010329642337036085) + +[93615] +centroid = (0.63710315681568153, -2.0819391762139023) +station = ('kvis', 0.0036279837739135136) +zone = ('caz094', 0.0067821102525907504) + +[93616] +centroid = (0.63975659833078102, -2.0873066396224385) +station = ('kfat', 0.0028179883106139694) +zone = ('caz090', 0.010049848024337839) + +[93618] +centroid = (0.63741190556035932, -2.083738924831974) +station = ('kvis', 0.0035695777716500308) +zone = ('caz094', 0.0081317013820033038) + +[93619] +centroid = (0.64433320069536049, -2.0873000073712804) +station = ('kfat', 0.002906747839225083) +zone = ('caz093', 0.0061927323137183615) + +[93620] +centroid = (0.64610251077127723, -2.1053334822411718) +station = ('kmce', 0.0049396790116390463) +zone = ('caz089', 0.00715872005838) + +[93621] +centroid = (0.64209340221298372, -2.079391972890372) +station = ('kvis', 0.0090154391873463417) +zone = ('caz094', 0.0097870533001578452) + +[93622] +centroid = (0.64253428983533001, -2.1044349343823674) +station = ('kmae', 0.0070461640718037493) +zone = ('caz089', 0.0035272058176348616) + +[93623] +centroid = (0.65440804398932773, -2.0881877341887227) +station = ('kmae', 0.011079871829234825) +zone = ('caz093', 0.0041983080936820434) + +[93624] +centroid = (0.63492345001945083, -2.096429999221388) +station = ('knlc', 0.0024703703705362002) +zone = ('caz089', 0.0068696208794136312) + +[93625] +centroid = (0.63921877512177905, -2.0886682233317968) +station = ('kfat', 0.0028414911785130258) +zone = ('caz090', 0.0096957940801098378) + +[93626] +centroid = (0.64658832316856996, -2.0889357124929573) +station = ('kfat', 0.0046163956150516638) +zone = ('caz093', 0.0037348471629158027) + +[93627] +centroid = (0.63659844250258979, -2.0954684275232944) +station = ('knlc', 0.0029180928714684301) +zone = ('caz089', 0.006687350595444356) + +[93628] +centroid = (0.64192916673037104, -2.0758717659621468) +station = ('kvis', 0.010352917170352536) +zone = ('caz094', 0.009083382033912903) + +[93630] +centroid = (0.64101436985623073, -2.0965510378050141) +station = ('kmae', 0.0044675922619324768) +zone = ('caz089', 0.0056148720868715533) + +[93631] +centroid = (0.63666537587940386, -2.0860414329943753) +station = ('khjo', 0.0031691424644940611) +zone = ('caz094', 0.009397821127396639) + +[93633] +centroid = (0.64266798205603282, -2.0708214288786984) +station = ('kbih', 0.010285849162472094) +zone = ('caz519', 0.0043084176599934359) + +[93634] +centroid = (0.64966390746984926, -2.0769596296849149) +station = ('kmmh', 0.0072533015183857373) +zone = ('caz096', 0.0038714170253748665) + +[93635] +centroid = (0.64695953724717659, -2.1091188046827747) +station = ('kmce', 0.0060787079586192647) +zone = ('caz089', 0.0091435005801707193) + +[93636] +centroid = (0.64550801672146296, -2.0921944865525259) +station = ('kfat', 0.0041464792402838421) +zone = ('caz090', 0.0035747165787989523) + +[93637] +centroid = (0.64434203206137564, -2.0976402454313061) +station = ('kmae', 0.0014934793956647193) +zone = ('caz090', 0.0025126940586492723) + +[93638] +centroid = (0.64648615159415823, -2.0949415475287023) +station = ('kmae', 0.0015574327410951721) +zone = ('caz090', 0.0012024487529444996) + +[93640] +centroid = (0.64005906389015166, -2.102188364022493) +station = ('kmae', 0.0071155927517958517) +zone = ('caz089', 0.0011900676401839056) + +[93641] +centroid = (0.64047926936086186, -2.0773615790116495) +station = ('kvis', 0.0084748942687442892) +zone = ('caz094', 0.0077905247221707417) + +[93643] +centroid = (0.6496935082539631, -2.085157737887505) +station = ('kfat', 0.0084314442081329811) +zone = ('caz093', 0.0033809903675914364) + +[93644] +centroid = (0.65236545025913373, -2.0879790102634765) +station = ('kmae', 0.0096304775940242605) +zone = ('caz093', 0.0023209446542685882) + +[93645] +centroid = (0.64880782347174604, -2.0881298939773116) +station = ('kfat', 0.0068986286796052405) +zone = ('caz093', 0.0017817136927208658) + +[93646] +centroid = (0.63957131417738933, -2.0819889704574619) +station = ('kvis', 0.005933343061083794) +zone = ('caz094', 0.0085693936982156899) + +[93647] +centroid = (0.63880377073223982, -2.0800046009111144) +station = ('kvis', 0.0058752003124436809) +zone = ('caz094', 0.0070199862300794474) + +[93648] +centroid = (0.63915063746778122, -2.0860302803404549) +station = ('kfat', 0.003947263416334148) +zone = ('caz094', 0.010637079462609769) + +[93650] +centroid = (0.64299348596152972, -2.090901162670213) +station = ('kfat', 0.0015349990105329313) +zone = ('caz090', 0.0057441728720169323) + +[93651] +centroid = (0.64576023425166873, -2.0859964733128438) +station = ('kfat', 0.0046734852351217448) +zone = ('caz093', 0.0052703308295685971) + +[93652] +centroid = (0.63870344920683508, -2.0927296568610649) +station = ('kfat', 0.0042094748729972573) +zone = ('caz089', 0.0083838628894715456) + +[93653] +centroid = (0.65010608663584202, -2.0934340368405846) +station = ('kmae', 0.0052061986655015172) +zone = ('caz093', 0.0032700806000029821) + +[93654] +centroid = (0.63981517158047796, -2.0839453623758999) +station = ('kfat', 0.0049192736254107354) +zone = ('caz094', 0.0097972532679954111) + +[93656] +centroid = (0.63617643934275014, -2.0932515277607036) +station = ('knlc', 0.0020517667632807476) +zone = ('caz089', 0.0085003647893763089) + +[93657] +centroid = (0.64259167626113556, -2.0849284714369634) +station = ('kfat', 0.0036701134068926056) +zone = ('caz093', 0.0084812717727604358) + +[93660] +centroid = (0.63853649101058929, -2.0974301776025359) +station = ('knlc', 0.0054073620087943851) +zone = ('caz089', 0.0046404329363416673) + +[93662] +centroid = (0.6376834962452621, -2.0880883725944064) +station = ('khjo', 0.0038066219434126822) +zone = ('caz090', 0.011191674752220526) + +[93664] +centroid = (0.64802890047987349, -2.0807735057130805) +station = ('kfat', 0.0091943262714579265) +zone = ('caz096', 0.0044908182791705709) + +[93665] +centroid = (0.64507557649269631, -2.1057058831436701) +station = ('kmce', 0.0060058559570521702) +zone = ('caz089', 0.0062586390824044217) + +[93666] +centroid = (0.63786665109696639, -2.0827998504279384) +station = ('kvis', 0.0041215486199812088) +zone = ('caz094', 0.0078008656229736646) + +[93667] +centroid = (0.64500283116947321, -2.082793794135434) +station = ('kfat', 0.0061180762591004408) +zone = ('caz093', 0.0074407133241541738) + +[93668] +centroid = (0.63966797051136481, -2.0993533209987238) +station = ('kmae', 0.00626597838815947) +zone = ('caz089', 0.003095537517716962) + +[93669] +centroid = (0.65084310427237424, -2.0865133002109442) +station = ('kfat', 0.0091579366440683561) +zone = ('caz093', 0.0023067710498467248) + +[93673] +centroid = (0.6362195838818594, -2.0853602833471991) +station = ('kvis', 0.0026410855567792634) +zone = ('caz094', 0.0087188880488135532) + +[93675] +centroid = (0.64096733323288946, -2.0803064381519545) +station = ('kvis', 0.0076921788215928398) +zone = ('caz094', 0.0090303701864785941) + +[93701] +centroid = (0.64140256598845935, -2.0906894891385313) +station = ('kfat', 0.0011538252230195473) +zone = ('caz090', 0.0069819948124017987) + +[93702] +centroid = (0.64121988237565308, -2.0901004056093981) +station = ('kfat', 0.00093006014028163117) +zone = ('caz090', 0.007433377008331141) + +[93703] +centroid = (0.64173766920484221, -2.0902480779174093) +station = ('kfat', 0.00068734433240162196) +zone = ('caz090', 0.0069782541638374303) + +[93704] +centroid = (0.64226465391918941, -2.0909325087835788) +station = ('kfat', 0.0012185184471058749) +zone = ('caz090', 0.006218023465486419) + +[93705] +centroid = (0.64204852979791494, -2.0913989829327595) +station = ('kfat', 0.0015620015833724805) +zone = ('caz090', 0.0061216070491520325) + +[93706] +centroid = (0.63969879302595489, -2.0927639525808668) +station = ('kfat', 0.0035082076125173118) +zone = ('caz090', 0.0075564503114056089) + +[93710] +centroid = (0.64267121091514889, -2.0902105184319062) +station = ('kfat', 0.00091350257352614103) +zone = ('caz090', 0.0063760551979361669) + +[93711] +centroid = (0.64287962068112958, -2.0914865111947467) +station = ('kfat', 0.0018572803220700035) +zone = ('caz090', 0.0054706921599735883) + +[93720] +centroid = (0.64336691660828638, -2.0902201526493775) +station = ('kfat', 0.0015083798068619184) +zone = ('caz090', 0.0059578473118601788) + +[93721] +centroid = (0.64110990917948496, -2.0906206358995401) +station = ('kfat', 0.0012863343333709744) +zone = ('caz090', 0.0072405613572559396) + +[93722] +centroid = (0.64227001207999301, -2.0922098454499434) +station = ('kfat', 0.0022277745188576349) +zone = ('caz090', 0.0055390391567650861) + +[93723] +centroid = (0.64216731690680573, -2.0936414343155993) +station = ('kfat', 0.0033613833035166176) +zone = ('caz090', 0.0050177969095332028) + +[93725] +centroid = (0.6392654277726848, -2.0897156652290882) +station = ('kfat', 0.0027331600976714075) +zone = ('caz090', 0.009143319883684926) + +[93726] +centroid = (0.64217052831262933, -2.0902318114487808) +station = ('kfat', 0.00065154262242705116) +zone = ('caz090', 0.0066888851860253942) + +[93727] +centroid = (0.64143501165925398, -2.0888205556689106) +station = ('kfat', 0.00075004622950254791) +zone = ('caz090', 0.0080228990724649906) + +[93728] +centroid = (0.64153578697026403, -2.091227033094853) +station = ('kfat', 0.0014942697793970845) +zone = ('caz090', 0.0066030153817436881) + +[93730] +centroid = (0.64403324841011289, -2.0901040882541198) +station = ('kfat', 0.0021089676521041838) +zone = ('caz093', 0.0063064552648112822) + +[93901] +centroid = (0.63951516693535271, -2.1227076240795371) +station = ('ksns', 0.00053772278860865356) +zone = ('caz530', 0.0019326273903319895) + +[93905] +centroid = (0.64022780232223442, -2.1224234146641425) +station = ('ksns', 0.00028594700771259396) +zone = ('caz528', 0.0014197771661756051) + +[93906] +centroid = (0.64093225211492444, -2.1229076737184007) +station = ('ksns', 0.0010856451356214825) +zone = ('caz528', 0.0019737012174158041) + +[93907] +centroid = (0.64174690199658524, -2.1234990261755615) +station = ('ksns', 0.0020265547595410588) +zone = ('caz528', 0.002791898080522646) + +[93908] +centroid = (0.6396936268513691, -2.1223106663944638) +station = ('ksns', 0.00026054853166654183) +zone = ('caz528', 0.0013971981304073666) + +[93920] +centroid = (0.62994125059000039, -2.121444668926209) +station = ('kmry', 0.009542302721275174) +zone = ('caz517', 0.0021920014120137849) + +[93921] +centroid = (0.63797325580767827, -2.1279745390698657) +station = ('kmry', 0.0011627063590100724) +zone = ('caz530', 0.0025928348174037714) + +[93923] +centroid = (0.63614933437946664, -2.1266750018154155) +station = ('kmry', 0.0023502940227796885) +zone = ('caz530', 0.003205833988868438) + +[93924] +centroid = (0.63554559008461675, -2.1229785689926168) +station = ('kmry', 0.0041949210416656682) +zone = ('caz530', 0.0039067176438790209) + +[93925] +centroid = (0.63858111907956283, -2.1188106529256845) +station = ('ksns', 0.0031334571068709315) +zone = ('caz528', 0.0021454058663020604) + +[93926] +centroid = (0.63749686818834639, -2.1187724476683583) +station = ('ksns', 0.0037618566849598914) +zone = ('caz528', 0.0030391663299451448) + +[93927] +centroid = (0.63265930419400873, -2.1185961345073219) +station = ('ksns', 0.0078857902398607582) +zone = ('caz517', 0.0016031778809840272) + +[93928] +centroid = (0.62899690529162378, -2.1161071553676378) +station = ('kprb', 0.010808702894800229) +zone = ('caz516', 0.0028863678609445786) + +[93930] +centroid = (0.63189750288209823, -2.1120292633835227) +station = ('kprb', 0.010802108509176398) +zone = ('caz516', 0.0019136027947700344) + +[93932] +centroid = (0.62814036750791513, -2.1128246099236567) +station = ('kprb', 0.0082198650687797699) +zone = ('caz516', 0.0019480178984485324) + +[93933] +centroid = (0.64030623741881909, -2.1255821639042791) +station = ('kmry', 0.0020112673211004099) +zone = ('caz530', 0.001298933386410996) + +[93940] +centroid = (0.63835155592304804, -2.1265218491735531) +station = ('kmry', 0.00019701200054048152) +zone = ('caz530', 0.0013849491769479015) + +[93943] +centroid = (0.63873821616553483, -2.1271049462233518) +station = ('kmry', 0.00041392030950086772) +zone = ('caz530', 0.0016815353079600041) + +[93950] +centroid = (0.63916018441878952, -2.1279958146334472) +station = ('kmry', 0.0012433508049324807) +zone = ('caz530', 0.0023629321405411008) + +[93953] +centroid = (0.63853252911318736, -2.1283466781729761) +station = ('kmry', 0.0013357506145883383) +zone = ('caz530', 0.0026995298735180153) + +[93954] +centroid = (0.63064613671500325, -2.1106006939374731) +station = ('kprb', 0.0091521814199732963) +zone = ('caz516', 0.0018631802055470562) + +[93955] +centroid = (0.63904200817513701, -2.1255824082503745) +station = ('kmry', 0.001037254860337151) +zone = ('caz530', 0.00042605115172906084) + +[93960] +centroid = (0.63511864764299386, -2.1178374224281873) +station = ('ksns', 0.006029757073564697) +zone = ('caz517', 0.0041364359070093807) + +[93962] +centroid = (0.63922188180784756, -2.1231317216344792) +station = ('ksns', 0.00097972428509453735) +zone = ('caz530', 0.0015491210190296516) + +[94002] +centroid = (0.65474895915211984, -2.1345184067541232) +station = ('ksql', 0.00067810850796200999) +zone = ('caz508', 0.0023141098593920774) + +[94005] +centroid = (0.65779410491124435, -2.1364389496097251) +station = ('ksfo', 0.0013882638530576992) +zone = ('caz006', 0.0012563962338528346) + +[94010] +centroid = (0.65572508689617515, -2.1356857178644422) +station = ('ksfo', 0.00080969333423121562) +zone = ('caz006', 0.0034061715723029983) + +[94014] +centroid = (0.6578297445345701, -2.1371109362783276) +station = ('ksfo', 0.0017096284862750889) +zone = ('caz006', 0.0011354938952194233) + +[94015] +centroid = (0.65766217547308614, -2.1376895827385343) +station = ('ksfo', 0.0019364138080302127) +zone = ('caz006', 0.001404160629795263) + +[94019] +centroid = (0.65396532377126693, -2.1364896688777879) +station = ('khaf', 0.0013322815397353827) +zone = ('caz509', 0.0016878443122041956) + +[94020] +centroid = (0.65056470680338851, -2.1333581816805673) +station = ('kpao', 0.0037166715267783123) +zone = ('caz509', 0.0028165489854241701) + +[94021] +centroid = (0.65049883807741826, -2.1342014898685457) +station = ('kpao', 0.0041062249542495391) +zone = ('caz509', 0.002374757739821369) + +[94022] +centroid = (0.65201088662159112, -2.1318222221256424) +station = ('knuq', 0.0018619847031643426) +zone = ('caz509', 0.0034505978607905666) + +[94024] +centroid = (0.65191978043463705, -2.1309481786895357) +station = ('knuq', 0.0015429152027259844) +zone = ('caz512', 0.0032250825861457194) + +[94025] +centroid = (0.65375712344479642, -2.1323829266011378) +station = ('kpao', 0.000844700929740346) +zone = ('caz508', 0.0023838245260282389) + +[94027] +centroid = (0.65368713574179149, -2.1328753537962957) +station = ('ksql', 0.0012678813387094106) +zone = ('caz508', 0.0025095344339687944) + +[94028] +centroid = (0.6523491837905051, -2.1329631089510857) +station = ('kpao', 0.0020305218160936037) +zone = ('caz509', 0.0025319313799713008) + +[94030] +centroid = (0.65622582185857237, -2.1363177539464666) +station = ('ksfo', 0.00057788199889592651) +zone = ('caz006', 0.0027932607541806828) + +[94037] +centroid = (0.65544719557267261, -2.1379701793223771) +station = ('khaf', 0.00094984642653823915) +zone = ('caz509', 0.0034640070242355939) + +[94038] +centroid = (0.65496799797324512, -2.1382406355432662) +station = ('khaf', 0.00049881415353155583) +zone = ('caz509', 0.0031432390881170262) + +[94040] +centroid = (0.65241395295904669, -2.1307902089389379) +station = ('knuq', 0.0010428283955186187) +zone = ('caz512', 0.0036837767889372625) + +[94041] +centroid = (0.65255291607409049, -2.1306234950887872) +station = ('knuq', 0.00085953367213008195) +zone = ('caz508', 0.0037899439656198567) + +[94043] +centroid = (0.65313475648682773, -2.1305390386062832) +station = ('knuq', 0.00035204473489827541) +zone = ('caz508', 0.003271473233572421) + +[94044] +centroid = (0.65635886830745183, -2.1376308873157894) +station = ('ksfo', 0.001538687955345351) +zone = ('caz006', 0.0026484677317827397) + +[94060] +centroid = (0.65008517759140316, -2.1340320882113475) +station = ('kpao', 0.0043893781520556608) +zone = ('caz509', 0.0027814428116258497) + +[94061] +centroid = (0.65382035672359617, -2.1334372101890975) +station = ('ksql', 0.00098571525141963258) +zone = ('caz508', 0.0025203282003003493) + +[94062] +centroid = (0.65293749937476742, -2.134487793679043) +station = ('ksql', 0.0019636412042891654) +zone = ('caz509', 0.0014657252768652724) + +[94063] +centroid = (0.65438148007811237, -2.1327142424530439) +station = ('ksql', 0.0008574667521416675) +zone = ('caz508', 0.0018042548973974076) + +[94065] +centroid = (0.65509373149255878, -2.1336191433103253) +station = ('ksql', 0.00030653981157669554) +zone = ('caz508', 0.0015440680801208056) + +[94066] +centroid = (0.65668191129870346, -2.1368699586685049) +station = ('ksfo', 0.00093734726524695488) +zone = ('caz006', 0.0022842511332241563) + +[94070] +centroid = (0.65443670229564543, -2.1340586870291478) +station = ('ksql', 0.00047105764334020412) +zone = ('caz508', 0.0022586520024305045) + +[94074] +centroid = (0.65156216247090337, -2.1352610094442617) +station = ('ksql', 0.003467171489691492) +zone = ('caz509', 0.0010204313538242007) + +[94080] +centroid = (0.65721228195179959, -2.1366682858734372) +station = ('ksfo', 0.0010225519289321725) +zone = ('caz006', 0.0017728745604332068) + +[94085] +centroid = (0.65255340476628099, -2.129611308842386) +station = ('knuq', 0.00090042795714018078) +zone = ('caz512', 0.003781798705515363) + +[94086] +centroid = (0.65225828704306132, -2.1297057660615035) +station = ('knuq', 0.0011391634304377832) +zone = ('caz512', 0.0034818972188612536) + +[94087] +centroid = (0.65190714425085261, -2.1299467960312044) +station = ('knuq', 0.001439173313741763) +zone = ('caz512', 0.003123167834386366) + +[94089] +centroid = (0.6529695959797116, -2.1295740460628556) +station = ('knuq', 0.00060062153360766226) +zone = ('caz508', 0.0037818405023095979) + +[94102] +centroid = (0.65937820064693942, -2.1366201671459595) +station = ('ksfo', 0.002935004297114345) +zone = ('caz006', 0.00052241032924545648) + +[94103] +centroid = (0.65926555709701573, -2.1364779053586296) +station = ('ksfo', 0.0027991685293348462) +zone = ('caz006', 0.00052540050585170707) + +[94104] +centroid = (0.65958451601781776, -2.1363201799541267) +station = ('koak', 0.00266970178601227) +zone = ('caz006', 0.00083268518343201372) + +[94105] +centroid = (0.6595575506808744, -2.1361724378329456) +station = ('koak', 0.0025548489137851085) +zone = ('caz006', 0.00089646823799114836) + +[94107] +centroid = (0.65904435406761808, -2.1362781873323238) +station = ('ksfo', 0.0025508603825819139) +zone = ('caz006', 0.00059309316474566237) + +[94108] +centroid = (0.65959495308674465, -2.136432666424418) +station = ('koak', 0.0027526040741092761) +zone = ('caz006', 0.00078473139773578657) + +[94109] +centroid = (0.65965396266875465, -2.1366748832180096) +station = ('ksfo', 0.0032129840864195485) +zone = ('caz006', 0.00074321190131965186) + +[94110] +centroid = (0.6588621591470023, -2.136548311940655) +station = ('ksfo', 0.0024220941287603649) +zone = ('caz006', 0.00038731865510917149) + +[94111] +centroid = (0.65972340931969142, -2.1362552013460752) +station = ('koak', 0.0026966122379136338) +zone = ('caz006', 0.00097202045298061513) + +[94112] +centroid = (0.65834473883695599, -2.1370326233547909) +station = ('ksfo', 0.0020945039399527894) +zone = ('caz006', 0.00061834797433895012) + +[94114] +centroid = (0.65900241380569258, -2.1369010255291907) +station = ('ksfo', 0.002644081588740247) +zone = ('caz006', 0.00010291165475229241) + +[94115] +centroid = (0.65948957010650922, -2.1369331919473047) +station = ('ksfo', 0.0031115034104699968) +zone = ('caz006', 0.00053113226531133705) + +[94116] +centroid = (0.65878149002897513, -2.1377851220617883) +station = ('ksfo', 0.0027871380845430763) +zone = ('caz006', 0.00063064974955871311) + +[94117] +centroid = (0.65920101482127702, -2.137114863269145) +station = ('ksfo', 0.0028914671350070403) +zone = ('caz006', 0.00024922741382112914) + +[94118] +centroid = (0.65938708437283211, -2.1373756678192706) +station = ('ksfo', 0.0031450736133004525) +zone = ('caz006', 0.00050824174311163493) + +[94121] +centroid = (0.65932899981532578, -2.1379359534157456) +station = ('ksfo', 0.0033067915997003236) +zone = ('caz006', 0.00081040872189315743) + +[94122] +centroid = (0.65901532924215733, -2.1377687683266973) +station = ('ksfo', 0.0029716312745108431) +zone = ('caz006', 0.00059328431016134183) + +[94123] +centroid = (0.65975075862907018, -2.1369526174618794) +station = ('ksfo', 0.0033650017533500055) +zone = ('caz006', 0.00078960404364706238) + +[94124] +centroid = (0.65849344088922601, -2.1359824412905732) +station = ('ksfo', 0.0019713601026219354) +zone = ('caz006', 0.00094622417402694071) + +[94127] +centroid = (0.65862128625693461, -2.1373186479126076) +station = ('ksfo', 0.0024479934166802366) +zone = ('caz006', 0.00041481763008544855) + +[94128] +centroid = (0.65670402462032629, -2.1360333176382689) +station = ('ksfo', 0.00031283011201196247) +zone = ('caz006', 0.0023904530929116127) + +[94129] +centroid = (0.65968796168258348, -2.1374080785834799) +station = ('ksfo', 0.0034302541781399088) +zone = ('caz006', 0.00078677062753615716) + +[94130] +centroid = (0.66009912634776835, -2.1357546060100181) +station = ('koak', 0.0026172744645261131) +zone = ('caz006', 0.0015141947498841506) + +[94131] +centroid = (0.65879051338120798, -2.1370068273884466) +station = ('ksfo', 0.0024812138910426731) +zone = ('caz006', 0.00017288635097325461) + +[94132] +centroid = (0.65837255938523287, -2.1377519782592929) +station = ('ksfo', 0.0024520987901287309) +zone = ('caz006', 0.00082616499915086036) + +[94133] +centroid = (0.6598135381222644, -2.1364724075714858) +station = ('koak', 0.0028898782084585822) +zone = ('caz006', 0.00095476121543130522) + +[94134] +centroid = (0.65835655471599208, -2.1365198979804325) +station = ('ksfo', 0.0019336844428616063) +zone = ('caz006', 0.00072457800948509156) + +[94158] +centroid = (0.65917780194222553, -2.1360548375479462) +station = ('ksfo', 0.0026578848646879598) +zone = ('caz006', 0.00079364643077123309) + +[94301] +centroid = (0.65352321441844419, -2.1319181977812094) +station = ('kpao', 0.00060582660741958084) +zone = ('caz508', 0.0026207068894952192) + +[94303] +centroid = (0.65376700200836269, -2.1313157624832986) +station = ('kpao', 0.00015071933807242406) +zone = ('caz508', 0.0024660890153274588) + +[94304] +centroid = (0.65231169411817236, -2.1324728983240782) +station = ('kpao', 0.0018408027288303391) +zone = ('caz509', 0.0029210668295597676) + +[94305] +centroid = (0.65306625231368709, -2.1322944035014766) +station = ('kpao', 0.0011401663306831325) +zone = ('caz508', 0.0030706429771470787) + +[94306] +centroid = (0.65302762817734039, -2.1315839672294525) +station = ('kpao', 0.00091027745956278575) +zone = ('caz508', 0.003143898923191829) + +[94401] +centroid = (0.65584146545069821, -2.1348326881925295) +station = ('ksfo', 0.00097679402577403288) +zone = ('caz508', 0.0021214249782290405) + +[94402] +centroid = (0.65491190309108605, -2.1353218865285712) +station = ('ksfo', 0.0016504027187015896) +zone = ('caz509', 0.0026937308468242133) + +[94403] +centroid = (0.65516953114197285, -2.1346327432734213) +station = ('ksql', 0.00085647115033337415) +zone = ('caz508', 0.0021699055781347581) + +[94404] +centroid = (0.65547583642569784, -2.1339735673215281) +station = ('ksql', 0.00072877915937860638) +zone = ('caz508', 0.0015660814344261409) + +[94501] +centroid = (0.65927712862995658, -2.1341558495086059) +station = ('koak', 0.0011731727346943994) +zone = ('caz006', 0.0022868857272110342) + +[94502] +centroid = (0.65864488310842151, -2.1335865929197757) +station = ('koak', 0.00040170725618224795) +zone = ('caz508', 0.0027447600906068776) + +[94503] +centroid = (0.66648076567805281, -2.133919217768621) +station = ('kapc', 0.0003485794649724521) +zone = ('caz506', 0.0060793522901388172) + +[94505] +centroid = (0.6609859805005841, -2.1222672600559664) +station = ('klvk', 0.0042620836715919382) +zone = ('caz510', 0.0039036296792853667) + +[94506] +centroid = (0.65989883236280944, -2.1277820118000781) +station = ('klvk', 0.002326258713148132) +zone = ('caz510', 0.0013172696936870232) + +[94507] +centroid = (0.66061408574356928, -2.1296701787980554) +station = ('kccr', 0.0026411440422075645) +zone = ('caz510', 0.0020118267133289389) + +[94508] +centroid = (0.67328899838410994, -2.1370577211894348) +station = ('ksts', 0.0052552587184865555) +zone = ('caz507', 0.003433177213677991) + +[94509] +centroid = (0.66316404668731799, -2.1260257218803811) +station = ('kccr', 0.0032698126237084338) +zone = ('caz510', 0.0022325099482041629) + +[94510] +centroid = (0.66493677760856851, -2.1316742880182433) +station = ('kccr', 0.0020796536734033581) +zone = ('caz510', 0.0051798500861008866) + +[94511] +centroid = (0.66373131360080118, -2.123028380689469) +station = ('ksuu', 0.005936698190805386) +zone = ('caz018', 0.0026017381769803585) + +[94512] +centroid = (0.66557872716074462, -2.1264071635884045) +station = ('ksuu', 0.002795940216869134) +zone = ('caz018', 0.00099708927095726861) + +[94513] +centroid = (0.6618677382919842, -2.1235134600484753) +station = ('klvk', 0.0043846919122015916) +zone = ('caz510', 0.0030064883239777586) + +[94514] +centroid = (0.6601947354841925, -2.1227138723582595) +station = ('klvk', 0.0034696680758863336) +zone = ('caz510', 0.0036719880562919322) + +[94515] +centroid = (0.67430484982194072, -2.1400363524507657) +station = ('ksts', 0.0036203176969316973) +zone = ('caz507', 0.0018088012801036329) + +[94516] +centroid = (0.66032614132357514, -2.1321820741108186) +station = ('koak', 0.0022526432895222511) +zone = ('caz508', 0.0041905530136497884) + +[94517] +centroid = (0.66130911075829835, -2.1271786514776636) +station = ('kccr', 0.0030417182797476631) +zone = ('caz510', 0.00017480699756276154) + +[94518] +centroid = (0.66235871686386272, -2.1296862532804663) +station = ('kccr', 0.00094799005333198304) +zone = ('caz510', 0.0023053250564417753) + +[94519] +centroid = (0.6630237047621651, -2.1295292783675421) +station = ('kccr', 0.00054681016329910309) +zone = ('caz510', 0.0026291679614049296) + +[94520] +centroid = (0.66314278857702869, -2.130010709988412) +station = ('kccr', 0.0001529947002465983) +zone = ('caz510', 0.002984926543360997) + +[94521] +centroid = (0.66245731051330781, -2.1285371459542457) +station = ('kccr', 0.001501657027926793) +zone = ('caz510', 0.0016863317838833347) + +[94523] +centroid = (0.66242472521617313, -2.1306303018728703) +station = ('kccr', 0.00087738100737895421) +zone = ('caz510', 0.0029909363092883142) + +[94525] +centroid = (0.66414928505006876, -2.133352491907206) +station = ('kapc', 0.0026611603094909759) +zone = ('caz006', 0.0059394604885728165) + +[94526] +centroid = (0.65998950221745056, -2.1291367887253534) +station = ('khwd', 0.0031140413867200489) +zone = ('caz510', 0.0019056706328925645) + +[94528] +centroid = (0.66053034484605855, -2.128439704222107) +station = ('kccr', 0.0030222827221222325) +zone = ('caz510', 0.0011448793997029657) + +[94530] +centroid = (0.66185593986624069, -2.1345088248965296) +station = ('kccr', 0.0036815089410911213) +zone = ('caz006', 0.0035079864770091651) + +[94531] +centroid = (0.66262789899439778, -2.1253891828488864) +station = ('kccr', 0.0038186329254869134) +zone = ('caz510', 0.002070446437180077) + +[94533] +centroid = (0.66812709985487395, -2.1294182928804077) +station = ('ksuu', 0.00081520272020973246) +zone = ('caz018', 0.004123613721184324) + +[94534] +centroid = (0.66749923510976161, -2.1316729266614267) +station = ('kapc', 0.0021685352172839691) +zone = ('caz018', 0.0054227726977769865) + +[94535] +centroid = (0.66815080142611616, -2.1279877163057184) +station = ('ksuu', 0.00044014217419976738) +zone = ('caz018', 0.0032936265095187853) + +[94536] +centroid = (0.65572906624686966, -2.1289744381983331) +station = ('khwd', 0.002514225685677037) +zone = ('caz508', 0.0025738222605803823) + +[94538] +centroid = (0.65459914008912867, -2.1286467002713936) +station = ('knuq', 0.0017516630979766109) +zone = ('caz508', 0.003196004191382433) + +[94539] +centroid = (0.65479360467438585, -2.1277616612609997) +station = ('knuq', 0.0024070834297012463) +zone = ('caz508', 0.0037520746876959048) + +[94541] +centroid = (0.65753439991854767, -2.1307820757046234) +station = ('khwd', 0.00045793794602977855) +zone = ('caz508', 0.0017846133914149458) + +[94542] +centroid = (0.65728895426583966, -2.129949937623858) +station = ('khwd', 0.0011050968551004779) +zone = ('caz508', 0.0021104313320147736) + +[94544] +centroid = (0.65683406910289244, -2.1303000157652225) +station = ('khwd', 0.0010019635780371399) +zone = ('caz508', 0.0016459442878801139) + +[94545] +centroid = (0.65634686044219814, -2.131516039014965) +station = ('khwd', 0.0010698321271544937) +zone = ('caz508', 0.0005679794188438135) + +[94546] +centroid = (0.65824235782303409, -2.1306899572267035) +station = ('khwd', 0.00097986433651949976) +zone = ('caz508', 0.0024151400714202769) + +[94547] +centroid = (0.66339854912561591, -2.1338718495327216) +station = ('kccr', 0.0029186272337177574) +zone = ('caz006', 0.005084563906109554) + +[94548] +centroid = (0.66277647887362001, -2.1232181852456233) +station = ('klvk', 0.0053014594441872908) +zone = ('caz018', 0.0033183334846297635) + +[94549] +centroid = (0.66142758370792365, -2.1312964591417716) +station = ('kccr', 0.0020035183209403404) +zone = ('caz510', 0.0032389708067638067) + +[94550] +centroid = (0.65496379172974772, -2.1220304886896413) +station = ('klvk', 0.0044220323430649725) +zone = ('caz511', 0.0016943659039448454) + +[94551] +centroid = (0.65887055418070439, -2.1249218709416651) +station = ('klvk', 0.0012837744760956654) +zone = ('caz510', 0.0028977081268056351) + +[94552] +centroid = (0.65838566680791544, -2.1296778407934718) +station = ('khwd', 0.0016378588245263134) +zone = ('caz508', 0.0029985637262476298) + +[94553] +centroid = (0.66311851104713349, -2.1316830321177958) +station = ('kccr', 0.0011936754274272546) +zone = ('caz510', 0.0040473896734702077) + +[94555] +centroid = (0.65533837429381081, -2.1310231929407868) +station = ('kpao', 0.0014434348231314991) +zone = ('caz508', 0.0012158863287252083) + +[94556] +centroid = (0.66044426520735011, -2.1313076990621544) +station = ('koak', 0.0027113702784482487) +zone = ('caz510', 0.0033090233290919207) + +[94558] +centroid = (0.67093966303787789, -2.1334611561064349) +station = ('kapc', 0.0042686229394274695) +zone = ('caz507', 0.0065098707700481937) + +[94559] +centroid = (0.66751389587547838, -2.1347714620423699) +station = ('kapc', 0.00089827539179628728) +zone = ('caz506', 0.0049930331200454918) + +[94560] +centroid = (0.65457074358219858, -2.129866458525735) +station = ('knuq', 0.001259755985017922) +zone = ('caz508', 0.0024119541817815243) + +[94561] +centroid = (0.66311927899200429, -2.12391104605208) +station = ('klvk', 0.0054140023768054647) +zone = ('caz018', 0.0027826006693118291) + +[94563] +centroid = (0.661129341845343, -2.1325230765400729) +station = ('kccr', 0.0027970353710471867) +zone = ('caz006', 0.004161693915455204) + +[94564] +centroid = (0.66312105922784137, -2.1342337959130004) +station = ('kccr', 0.0032007065124359376) +zone = ('caz006', 0.0047043181087831438) + +[94565] +centroid = (0.66347951494961588, -2.1276655285257999) +station = ('kccr', 0.0019930857649663519) +zone = ('caz510', 0.0023710438806374941) + +[94566] +centroid = (0.65708361627934253, -2.1266829605168049) +station = ('klvk', 0.0010156061190564616) +zone = ('caz510', 0.0040736250585565277) + +[94567] +centroid = (0.67556295295994817, -2.1361782323260621) +station = ('ksts', 0.0068026132540712873) +zone = ('caz507', 0.0049068376273875914) + +[94568] +centroid = (0.65829279783841677, -2.1277840887418882) +station = ('klvk', 0.0013650240049480563) +zone = ('caz510', 0.0028792392664982532) + +[94569] +centroid = (0.66399756357819284, -2.1327707911208087) +station = ('kccr', 0.0021864018725464784) +zone = ('caz510', 0.0052361000066182359) + +[94571] +centroid = (0.66582324778894908, -2.124723618991931) +station = ('ksuu', 0.0035643937430322541) +zone = ('caz018', 0.00035187464501941035) + +[94572] +centroid = (0.66379617003580527, -2.1337042281113603) +station = ('kccr', 0.0028389850305095775) +zone = ('caz006', 0.0054964807609830238) + +[94573] +centroid = (0.67123380337671645, -2.1367862003177018) +station = ('ko69', 0.0043332490165074204) +zone = ('caz506', 0.0033024974283179585) + +[94574] +centroid = (0.67269261937870339, -2.1366307263879341) +station = ('ksts', 0.0054679773279923934) +zone = ('caz507', 0.0037431686693563454) + +[94575] +centroid = (0.66044936156876599, -2.1312128578706009) +station = ('koak', 0.0027611743397989567) +zone = ('caz510', 0.0032347458650441915) + +[94576] +centroid = (0.67281439100061502, -2.1376161392836104) +station = ('ksts', 0.0047257648090268545) +zone = ('caz507', 0.0029692216540893558) + +[94577] +centroid = (0.65822082046006458, -2.1322224959362948) +station = ('khwd', 0.0010731901154677633) +zone = ('caz508', 0.0020854849497792469) + +[94578] +centroid = (0.65809623885805713, -2.1314929657622534) +station = ('khwd', 0.00069973101559577574) +zone = ('caz508', 0.0020350243719362794) + +[94579] +centroid = (0.65775335147321023, -2.1320453624705098) +station = ('khwd', 0.00065821111020126274) +zone = ('caz508', 0.0016213499202841601) + +[94580] +centroid = (0.65756555404569572, -2.1316232720442074) +station = ('khwd', 0.00027576872850614719) +zone = ('caz508', 0.0014967349514774435) + +[94582] +centroid = (0.65907426901099719, -2.1278319107633927) +station = ('klvk', 0.0017463115619331892) +zone = ('caz510', 0.0021195858137125008) + +[94583] +centroid = (0.65895785554988917, -2.1288306056146764) +station = ('khwd', 0.0025176339297886445) +zone = ('caz510', 0.0025268618423708953) + +[94585] +centroid = (0.66658483966134929, -2.1280368298708692) +station = ('ksuu', 0.001330643588216811) +zone = ('caz018', 0.0024250184933707489) + +[94586] +centroid = (0.65580031058693611, -2.1267484103637546) +station = ('klvk', 0.0022478917402874252) +zone = ('caz511', 0.0034578806214629818) + +[94587] +centroid = (0.65629888134106085, -2.1296269818990687) +station = ('khwd', 0.0017505677249202967) +zone = ('caz508', 0.0020305207369925326) + +[94588] +centroid = (0.65960673405919557, -2.1268685239228766) +station = ('klvk', 0.0017274550207941216) +zone = ('caz510', 0.0015526888557164914) + +[94589] +centroid = (0.66649499011145663, -2.1332125165011959) +station = ('kapc', 0.00084230972304064435) +zone = ('caz506', 0.0065506708057445099) + +[94590] +centroid = (0.66502688895784912, -2.1336492327866297) +station = ('kapc', 0.0017530382633970756) +zone = ('caz510', 0.0063953152973982982) + +[94591] +centroid = (0.66536958435647819, -2.1327375949584355) +station = ('kapc', 0.0017945288081611728) +zone = ('caz510', 0.0060747281896486871) + +[94592] +centroid = (0.66479119969565981, -2.1341431260583592) +station = ('kapc', 0.0019263004610244256) +zone = ('caz006', 0.006254785392596416) + +[94595] +centroid = (0.660990274010544, -2.1305127015878709) +station = ('kccr', 0.002250717552161901) +zone = ('caz510', 0.0026117797222133367) + +[94596] +centroid = (0.66128917909824059, -2.1299572331001313) +station = ('kccr', 0.0019434936291199813) +zone = ('caz510', 0.0021744132688305134) + +[94597] +centroid = (0.66179734916325117, -2.1305526696277415) +station = ('kccr', 0.0014585921482837233) +zone = ('caz510', 0.0027200679291863048) + +[94598] +centroid = (0.66147866949512957, -2.1292884927439371) +station = ('kccr', 0.0018809667769297484) +zone = ('caz510', 0.0016764880842434779) + +[94599] +centroid = (0.67037883638933449, -2.1356112446652591) +station = ('kapc', 0.0038163417550578327) +zone = ('caz506', 0.0038989661585397961) + +[94601] +centroid = (0.65930763698528139, -2.1331188097736562) +station = ('koak', 0.0010472637881575491) +zone = ('caz508', 0.0032576285753971195) + +[94602] +centroid = (0.65980985547754267, -2.1329240310291335) +station = ('koak', 0.0015706764652375436) +zone = ('caz508', 0.0037209448144416061) + +[94603] +centroid = (0.65862671423090824, -2.1324337505889561) +station = ('koak', 0.00082061199527482139) +zone = ('caz508', 0.0024991171460386537) + +[94605] +centroid = (0.65906089978892701, -2.1319231370629925) +station = ('koak', 0.0013879545514011431) +zone = ('caz508', 0.0029324485856535238) + +[94606] +centroid = (0.6595928586916423, -2.1335835735001698) +station = ('koak', 0.0013232456870366871) +zone = ('caz006', 0.0027893207948451308) + +[94607] +centroid = (0.65986031294621794, -2.1345636980482121) +station = ('koak', 0.0018389540660541995) +zone = ('caz006', 0.0021395971876833424) + +[94608] +centroid = (0.66037703512456336, -2.1343556198947895) +station = ('koak', 0.0022359162019331266) +zone = ('caz006', 0.002536987424216776) + +[94609] +centroid = (0.66033469343690987, -2.1339158841897494) +station = ('koak', 0.0020988255390891413) +zone = ('caz006', 0.0028112511983144047) + +[94610] +centroid = (0.65993352950833906, -2.1335333778308825) +station = ('koak', 0.0016582992675611284) +zone = ('caz006', 0.0029224461499370484) + +[94611] +centroid = (0.66024903267722213, -2.1328515649585911) +station = ('koak', 0.0020118741232432046) +zone = ('caz508', 0.0041474609825388744) + +[94612] +centroid = (0.65988804622803199, -2.1340000439662807) +station = ('koak', 0.0016824421804641511) +zone = ('caz006', 0.0025607286915888374) + +[94613] +centroid = (0.65940020924880716, -2.1324933186763264) +station = ('koak', 0.0013190452718107178) +zone = ('caz508', 0.0032739346071301192) + +[94618] +centroid = (0.66050173889961827, -2.1334574909150059) +station = ('koak', 0.0022226995771801941) +zone = ('caz006', 0.0032089271774915361) + +[94619] +centroid = (0.6594109953835845, -2.1316121542968722) +station = ('koak', 0.0017944592749559384) +zone = ('caz508', 0.0033062481352975149) + +[94621] +centroid = (0.6588316333383849, -2.1330859975837186) +station = ('koak', 0.00059683058029387655) +zone = ('caz508', 0.0027894889723030143) + +[94702] +centroid = (0.66088260464898851, -2.1342990188671473) +station = ('koak', 0.0027032717628531081) +zone = ('caz006', 0.0028827545387730405) + +[94703] +centroid = (0.66084982736563602, -2.134112512983279) +station = ('koak', 0.0026352275363508673) +zone = ('caz006', 0.0029734074394228006) + +[94704] +centroid = (0.66089572952496356, -2.1338045496367646) +station = ('koak', 0.0026377363739494898) +zone = ('caz006', 0.0031927591854125337) + +[94705] +centroid = (0.66087201050042899, -2.1334592187909651) +station = ('koak', 0.0025928664903341106) +zone = ('caz006', 0.0034005640995341674) + +[94706] +centroid = (0.66130008740606561, -2.1344595891583307) +station = ('koak', 0.0031394891360523604) +zone = ('caz006', 0.0030913517108630004) + +[94707] +centroid = (0.66144817859309735, -2.1341734249741737) +station = ('koak', 0.0032304885282120111) +zone = ('caz006', 0.0033519995836774306) + +[94708] +centroid = (0.66153116899902953, -2.1338708721483406) +station = ('koak', 0.0032747544563751416) +zone = ('caz006', 0.0035759057813324652) + +[94709] +centroid = (0.66111735143338168, -2.1339589065558111) +station = ('koak', 0.0028747158906863618) +zone = ('caz006', 0.0032393726148504643) + +[94710] +centroid = (0.66084996699197629, -2.1346505107252067) +station = ('koak', 0.0027608105963891497) +zone = ('caz006', 0.0026587174662501358) + +[94720] +centroid = (0.66102317346694417, -2.1337511251083612) +station = ('koak', 0.0027592864662972071) +zone = ('caz006', 0.0033042733622523869) + +[94801] +centroid = (0.66240208829577474, -2.1359683913900946) +station = ('kdvo', 0.004081334690988655) +zone = ('caz006', 0.0035381195327345238) + +[94803] +centroid = (0.6625189555424883, -2.1342506557935748) +station = ('kccr', 0.0032897403230988734) +zone = ('caz006', 0.0041749078398662185) + +[94804] +centroid = (0.66176872576351864, -2.1352573267995401) +station = ('koak', 0.0037926647085454891) +zone = ('caz006', 0.0031325283531947433) + +[94805] +centroid = (0.66222663034607177, -2.1349379315464252) +station = ('kccr', 0.0038856921558956862) +zone = ('caz006', 0.0036547753448533905) + +[94806] +centroid = (0.66288983800853707, -2.135194390226713) +station = ('kapc', 0.0038979487160843446) +zone = ('caz006', 0.0041832748733634266) + +[94850] +centroid = (0.66151863753500029, -2.1348409785064768) +station = ('koak', 0.0034397243317272541) +zone = ('caz006', 0.0030816861531865695) + +[94901] +centroid = (0.66284665856284275, -2.1379731638353983) +station = ('kdvo', 0.0029523894067718078) +zone = ('caz006', 0.0039556687659915895) + +[94903] +centroid = (0.66361547609834626, -2.1389988240236253) +station = ('kdvo', 0.002053988257244396) +zone = ('caz006', 0.0049072440426283764) + +[94904] +centroid = (0.66227412075501857, -2.1390776256393527) +station = ('kdvo', 0.0033944563563975635) +zone = ('caz006', 0.003687794665386207) + +[94920] +centroid = (0.66122896523904684, -2.137479951242077) +station = ('koak', 0.0043841815386776077) +zone = ('caz006', 0.0022947279073970398) + +[94922] +centroid = (0.66924555919942963, -2.1458613539227116) +station = ('ksts', 0.0032539001802137867) +zone = ('caz505', 0.001895983215628582) + +[94923] +centroid = (0.66915841490987749, -2.1473668225756044) +station = ('ksts', 0.0040891095962835482) +zone = ('caz505', 0.002119046133841155) + +[94924] +centroid = (0.66223179652065767, -2.1419342060260917) +station = ('kdvo', 0.004108551874667756) +zone = ('caz006', 0.0050729068393682731) + +[94925] +centroid = (0.6620408225939044, -2.1381633349106952) +station = ('kdvo', 0.0036982148202032929) +zone = ('caz006', 0.0032072129566610751) + +[94928] +centroid = (0.66927128535260405, -2.1414164890100724) +station = ('ko69', 0.0021199578565657845) +zone = ('caz506', 0.00082305311985595472) + +[94929] +centroid = (0.66763067585572933, -2.1461042688480041) +station = ('ksts', 0.0047607901337290547) +zone = ('caz505', 0.00030247084055557539) + +[94930] +centroid = (0.66224708560490508, -2.1400602111016402) +station = ('kdvo', 0.0035082745781103561) +zone = ('caz006', 0.0040673289048002411) + +[94931] +centroid = (0.66888228636891944, -2.1417743862264866) +station = ('ko69', 0.0020347473800624446) +zone = ('caz506', 0.0012753299677068296) + +[94933] +centroid = (0.66344500979030407, -2.1413004420681077) +station = ('kdvo', 0.0028305027373046847) +zone = ('caz505', 0.005355209245793525) + +[94937] +centroid = (0.66525297890915247, -2.1455373335470789) +station = ('ko69', 0.0050970088763512911) +zone = ('caz505', 0.0021239185204341331) + +[94938] +centroid = (0.6637324655181075, -2.1419819058745486) +station = ('kdvo', 0.0029969466133289383) +zone = ('caz505', 0.0047825288471009244) + +[94939] +centroid = (0.66212698949907534, -2.138593279318632) +station = ('kdvo', 0.0035618959424277849) +zone = ('caz006', 0.0033987674642586185) + +[94940] +centroid = (0.66634209926898191, -2.1447151438430496) +station = ('ko69', 0.0040776730629117916) +zone = ('caz505', 0.0014038572329772149) + +[94941] +centroid = (0.66143665942003405, -2.139127210443402) +station = ('kdvo', 0.0042321131274864025) +zone = ('caz006', 0.0029809088198935883) + +[94945] +centroid = (0.66556504377940895, -2.1385028887166708) +station = ('kdvo', 0.00046215020179713536) +zone = ('caz506', 0.0044044649871585973) + +[94946] +centroid = (0.6646707545239795, -2.1410220445991222) +station = ('kdvo', 0.0018279123968486292) +zone = ('caz505', 0.0047162669949763706) + +[94947] +centroid = (0.66518278176663725, -2.1403737769550535) +station = ('kdvo', 0.0011309241862060674) +zone = ('caz506', 0.0044977417670357071) + +[94949] +centroid = (0.66439804682835546, -2.1384472825267027) +station = ('kdvo', 0.0013633210803325828) +zone = ('caz506', 0.0055231833247851476) + +[94950] +centroid = (0.66365944094220397, -2.1425650203776403) +station = ('kdvo', 0.0034030519235825609) +zone = ('caz505', 0.0045550710936096547) + +[94951] +centroid = (0.6688251966490868, -2.1405789229553331) +station = ('ko69', 0.001388916689767471) +zone = ('caz506', 0.00085611440045503225) + +[94952] +centroid = (0.66731883787827551, -2.142572909265859) +station = ('ko69', 0.0022149974480405342) +zone = ('caz505', 0.0026585959791640911) + +[94954] +centroid = (0.66732700601917483, -2.139028965859807) +station = ('ko69', 0.00064065265908657873) +zone = ('caz506', 0.0026220430790405225) + +[94956] +centroid = (0.66402547139293222, -2.1443326200308901) +station = ('ko69', 0.0050545719556592114) +zone = ('caz505', 0.0035626570687583318) + +[94957] +centroid = (0.66258128125007698, -2.1391381536578118) +station = ('kdvo', 0.0030876892606725706) +zone = ('caz006', 0.0039856087542016558) + +[94960] +centroid = (0.66315292893998268, -2.1393864441972008) +station = ('kdvo', 0.0025275281845095051) +zone = ('caz006', 0.0045870169361015064) + +[94963] +centroid = (0.66346455747792632, -2.1409974878165463) +station = ('kdvo', 0.0026733249892657521) +zone = ('caz006', 0.0054874541187804318) + +[94964] +centroid = (0.66223476358038613, -2.137891342800065) +station = ('kdvo', 0.0035582097092199875) +zone = ('caz006', 0.0033430967556995822) + +[94965] +centroid = (0.66065780624133164, -2.1388522512730428) +station = ('ksfo', 0.0048176879565526168) +zone = ('caz006', 0.0022282589738417146) + +[94970] +centroid = (0.66173308614019277, -2.1405920478313081) +station = ('kdvo', 0.0041127994130482574) +zone = ('caz006', 0.0039530119186206025) + +[94971] +centroid = (0.66726611148157278, -2.1455027062147196) +station = ('ksts', 0.0049281765214260927) +zone = ('caz505', 0.00036709698153462107) + +[94972] +centroid = (0.66832327486279819, -2.1462500387471311) +station = ('ksts', 0.0041984040877426224) +zone = ('caz505', 0.00099898996160753409) + +[94973] +centroid = (0.66344672021297102, -2.140464778422253) +station = ('kdvo', 0.0024764103089366242) +zone = ('caz006', 0.0052430820317305804) + +[95002] +centroid = (0.65342552834021006, -2.1294979671607615) +station = ('knuq', 0.0005446624254840407) +zone = ('caz508', 0.0034460101996792443) + +[95003] +centroid = (0.6459664972626693, -2.1272360204501766) +station = ('kwvi', 0.0019297780841963314) +zone = ('caz529', 0.00067229231325060331) + +[95004] +centroid = (0.64358585070965657, -2.1228567101042426) +station = ('kwvi', 0.002362488707487028) +zone = ('caz528', 0.0038766856097326974) + +[95005] +centroid = (0.64750694231377215, -2.1309015958518001) +station = ('ksjc', 0.0052602778695132) +zone = ('caz512', 0.0014657292645663511) + +[95006] +centroid = (0.64876099628791506, -2.1319113735438342) +station = ('ksjc', 0.0047000930395047179) +zone = ('caz512', 0.0015233538128584692) + +[95007] +centroid = (0.64760379063396534, -2.1311674967633416) +station = ('ksjc', 0.0052773456084277215) +zone = ('caz512', 0.0015033235382540019) + +[95008] +centroid = (0.65063366476213491, -2.1285180520522289) +station = ('ksjc', 0.0016276008821559541) +zone = ('caz512', 0.0021937156572887973) + +[95010] +centroid = (0.64535599854361425, -2.1284841752114478) +station = ('kwvi', 0.0024838113881482772) +zone = ('caz529', 0.00073429723912838752) + +[95012] +centroid = (0.64201032454058871, -2.1250963864135719) +station = ('kwvi', 0.0026199768950289568) +zone = ('caz530', 0.00293204008691306) + +[95013] +centroid = (0.6495316289658406, -2.1247886674131524) +station = ('krhv', 0.0023080814720653612) +zone = ('caz513', 0.00077727561043044286) + +[95014] +centroid = (0.65112317725744173, -2.1307089115023801) +station = ('knuq', 0.0022521707690510017) +zone = ('caz512', 0.0024060768104089522) + +[95017] +centroid = (0.64776734543816961, -2.1334409451936969) +station = ('knuq', 0.0061444802749187838) +zone = ('caz512', 0.0029254443944868795) + +[95018] +centroid = (0.64706497258728957, -2.1303379243165761) +station = ('kwvi', 0.0045649034367209965) +zone = ('caz512', 0.0017402959562466329) + +[95019] +centroid = (0.64464674909548136, -2.1255166616974521) +station = ('kwvi', 3.8579045899921882e-05) +zone = ('caz529', 0.0017806677603332225) + +[95020] +centroid = (0.64609329543282679, -2.1215218648390248) +station = ('ke16', 0.0012517432930528381) +zone = ('caz513', 0.0048735714352370063) + +[95023] +centroid = (0.64406218596911091, -2.117970713223162) +station = ('kcvh', 0.00085285809001622262) +zone = ('caz528', 0.0044798902853170845) + +[95030] +centroid = (0.64966020737183505, -2.1290097636623933) +station = ('ksjc', 0.0026760401748430634) +zone = ('caz512', 0.001178652976330067) + +[95032] +centroid = (0.64955608102866114, -2.1280197081909069) +station = ('krhv', 0.0025424391062360942) +zone = ('caz512', 0.0017560377793038736) + +[95033] +centroid = (0.6485873883872193, -2.1290384219687111) +station = ('ksjc', 0.0037072341621547785) +zone = ('caz512', 0.00079100806324828633) + +[95035] +centroid = (0.65351476702486455, -2.127119205563341) +station = ('ksjc', 0.0014625982211083697) +zone = ('caz511', 0.0029932824789515376) + +[95037] +centroid = (0.64880979569380082, -2.1222985014495772) +station = ('ke16', 0.0016142541112495127) +zone = ('caz513', 0.002869877347975963) + +[95039] +centroid = (0.64277247491834966, -2.125402325178154) +station = ('kwvi', 0.0018382127338159207) +zone = ('caz529', 0.0031020847844567424) + +[95041] +centroid = (0.64665180079346496, -2.1303107495401226) +station = ('kwvi', 0.0043378584831573466) +zone = ('caz512', 0.0021468280330257162) + +[95043] +centroid = (0.63749377895557036, -2.1110127661738689) +station = ('kcvh', 0.0090261882247819492) +zone = ('caz518', 0.0027205219395297804) + +[95045] +centroid = (0.6427304997498392, -2.1208994455211787) +station = ('kcvh', 0.0018860384406746652) +zone = ('caz528', 0.0026050838414367226) + +[95046] +centroid = (0.64750507481147246, -2.1223071059227894) +station = ('ke16', 0.000311157970304755) +zone = ('caz513', 0.0034615214005075208) + +[95050] +centroid = (0.65190068653262012, -2.1284690781134183) +station = ('ksjc', 0.00056352642821854402) +zone = ('caz513', 0.0031490585959909681) + +[95051] +centroid = (0.65185693112827259, -2.1290289971907503) +station = ('ksjc', 0.00099056006612140493) +zone = ('caz512', 0.0031683294986177826) + +[95053] +centroid = (0.65185822267191917, -2.128211886394844) +station = ('ksjc', 0.0004266894770483655) +zone = ('caz513', 0.0029804998367308263) + +[95054] +centroid = (0.65263951931157438, -2.1286850975149374) +station = ('ksjc', 0.00081389801676097354) +zone = ('caz513', 0.0038239539681278879) + +[95060] +centroid = (0.64640818773647168, -2.1314266257973853) +station = ('kwvi', 0.0050497331732898935) +zone = ('caz512', 0.0026345036766219476) + +[95062] +centroid = (0.64525738744087668, -2.1290833118370727) +station = ('kwvi', 0.0029205225704569812) +zone = ('caz529', 0.0012162967931138601) + +[95064] +centroid = (0.64561661110752211, -2.1303318156641939) +station = ('kwvi', 0.003974710673191599) +zone = ('caz529', 0.0022263901065630145) + +[95065] +centroid = (0.64632111326008956, -2.1290109155796997) +station = ('kwvi', 0.0032725472082090908) +zone = ('caz529', 0.0015102000939137801) + +[95066] +centroid = (0.64695730322573408, -2.1295458589954364) +station = ('kwvi', 0.0039817729700277384) +zone = ('caz512', 0.0018624720235970683) + +[95070] +centroid = (0.6502623285104806, -2.1300899479364528) +station = ('ksjc', 0.002612678565060195) +zone = ('caz512', 0.0014798087072308958) + +[95073] +centroid = (0.64650929466003959, -2.1280808470746044) +station = ('kwvi', 0.0027924088611165896) +zone = ('caz529', 0.0012324404679437636) + +[95075] +centroid = (0.64191544844245041, -2.1143344244463869) +station = ('kcvh', 0.0042094662022788207) +zone = ('caz528', 0.0053719472952040185) + +[95076] +centroid = (0.64483381348471003, -2.125051444185333) +station = ('kwvi', 0.00043727021345995237) +zone = ('caz529', 0.0020732122915372744) + +[95110] +centroid = (0.65182127405165446, -2.127728639631552) +station = ('ksjc', 0.00036256183857380806) +zone = ('caz513', 0.0027140776061518501) + +[95111] +centroid = (0.65071304233651561, -2.1262690905912791) +station = ('krhv', 0.00088657296583984698) +zone = ('caz513', 0.0011801114945013144) + +[95112] +centroid = (0.65178460468407007, -2.1272690246263322) +station = ('ksjc', 0.00060069384496003924) +zone = ('caz513', 0.002488653387820033) + +[95113] +centroid = (0.65159610912485455, -2.1274001337597417) +station = ('ksjc', 0.00067620084188829959) +zone = ('caz513', 0.0023808895052321241) + +[95116] +centroid = (0.65188860885419631, -2.1267291070222276) +station = ('krhv', 0.00058142112620001218) +zone = ('caz513', 0.0024105731974605874) + +[95117] +centroid = (0.65120295625755031, -2.1286361933892968) +station = ('ksjc', 0.0011538067842161196) +zone = ('caz512', 0.0026511384940912592) + +[95118] +centroid = (0.65023147108930535, -2.127381511096623) +station = ('krhv', 0.0016972680821242404) +zone = ('caz513', 0.0014348106547862024) + +[95119] +centroid = (0.64978711026174751, -2.1255509748705461) +station = ('krhv', 0.0018550172517794378) +zone = ('caz513', 0.00024725396161554805) + +[95120] +centroid = (0.64902059656085664, -2.1265711896315072) +station = ('krhv', 0.0025959990799437086) +zone = ('caz513', 0.00087066366453780958) + +[95121] +centroid = (0.65108025961113514, -2.1259831358466323) +station = ('krhv', 0.00051801372599173787) +zone = ('caz513', 0.0014863012761234709) + +[95122] +centroid = (0.65150872048920727, -2.126427618847238) +station = ('krhv', 0.00027131199209828752) +zone = ('caz513', 0.0019767865996225295) + +[95123] +centroid = (0.65003458049638785, -2.1263626227858938) +station = ('krhv', 0.0015687790181337763) +zone = ('caz513', 0.00064405561382788505) + +[95124] +centroid = (0.65025323534507773, -2.1279536649320119) +station = ('ksjc', 0.0019199949980781333) +zone = ('caz513', 0.0018627011514262886) + +[95125] +centroid = (0.65092223750065958, -2.1274067834641919) +station = ('ksjc', 0.0012972969803998558) +zone = ('caz513', 0.0018583234861508757) + +[95126] +centroid = (0.65147561159329692, -2.1278489626301846) +station = ('ksjc', 0.00069575357313705411) +zone = ('caz513', 0.0025025934536648973) + +[95127] +centroid = (0.65224837357290999, -2.1258233509536124) +station = ('krhv', 0.0006950065018118337) +zone = ('caz511', 0.0024021626687888726) + +[95128] +centroid = (0.6512866447951835, -2.1281901395923644) +station = ('ksjc', 0.0009257674339340807) +zone = ('caz513', 0.0025628559384905211) + +[95129] +centroid = (0.65110799289294941, -2.1293176222891526) +station = ('ksjc', 0.0015803510781040647) +zone = ('caz512', 0.0023863556941828268) + +[95130] +centroid = (0.65060849711432112, -2.1290596626257079) +station = ('ksjc', 0.0018363453667413897) +zone = ('caz512', 0.0019718674081528392) + +[95131] +centroid = (0.65252808003883456, -2.1275112414199238) +station = ('ksjc', 0.00044557890702899572) +zone = ('caz513', 0.0032382820648260407) + +[95132] +centroid = (0.65318345117295851, -2.1249106135679896) +station = ('krhv', 0.0018537948312598552) +zone = ('caz511', 0.0013167172305727048) + +[95133] +centroid = (0.65225825213647626, -2.1268715607957751) +station = ('ksjc', 0.00078027068203020728) +zone = ('caz513', 0.002797033326266666) + +[95134] +centroid = (0.6532357237840557, -2.1283490169141732) +station = ('ksjc', 0.0011365593325647562) +zone = ('caz513', 0.0041740611213463667) + +[95135] +centroid = (0.65077138869340978, -2.1238625433521672) +station = ('krhv', 0.001960067727186471) +zone = ('caz513', 0.0019088038990452878) + +[95136] +centroid = (0.65048522450925272, -2.1267069587940197) +station = ('krhv', 0.0012046789579892383) +zone = ('caz513', 0.0011590192018314839) + +[95138] +centroid = (0.65007617169246279, -2.124656319095974) +station = ('krhv', 0.0019008232615328278) +zone = ('caz513', 0.00099757524133871952) + +[95139] +centroid = (0.6496973130717324, -2.1251840193953146) +station = ('krhv', 0.0020283333365309127) +zone = ('caz513', 0.00046825742153499948) + +[95140] +centroid = (0.65263974620437726, -2.1226695933551363) +station = ('krhv', 0.0029231686221770871) +zone = ('caz511', 0.0011312484464830531) + +[95148] +centroid = (0.65163590263180016, -2.1254201275365241) +station = ('krhv', 0.00054407043981691966) +zone = ('caz513', 0.0020493031032537338) + +[95202] +centroid = (0.66252237638782219, -2.1168799522538357) +station = ('ksck', 0.0012881449928358096) +zone = ('caz019', 0.0048986032497770615) + +[95203] +centroid = (0.66239524660510696, -2.1176019600588005) +station = ('ksck', 0.0016113831247164688) +zone = ('caz019', 0.0052277237297739358) + +[95204] +centroid = (0.66276672248310153, -2.1174202887369606) +station = ('ksck', 0.0017477874660860593) +zone = ('caz019', 0.005372374561520097) + +[95205] +centroid = (0.66260688523020383, -2.1163834758948132) +station = ('ksck', 0.0011846975113946371) +zone = ('caz019', 0.0046989284300606995) + +[95206] +centroid = (0.66180885088302199, -2.1191338704498612) +station = ('ksck', 0.0025563021567408459) +zone = ('caz019', 0.0058985252087942119) + +[95207] +centroid = (0.66326220400445013, -2.1175203484629774) +station = ('ksck', 0.002183537116719903) +zone = ('caz019', 0.0057830323078598899) + +[95209] +centroid = (0.66405700949251578, -2.1179766298893266) +station = ('ksck', 0.003044391960452733) +zone = ('caz019', 0.0066167623921489348) + +[95210] +centroid = (0.66375180376621956, -2.1170479401943401) +station = ('ksck', 0.0024396039391308202) +zone = ('caz019', 0.0059220359158288095) + +[95211] +centroid = (0.66286295993805644, -2.1173184138685217) +station = ('ksck', 0.0017686297341106753) +zone = ('caz019', 0.0053837539339264707) + +[95212] +centroid = (0.66409671573299867, -2.11591448847151) +station = ('ksck', 0.002616934001356261) +zone = ('caz019', 0.0057387551380069382) + +[95215] +centroid = (0.66234234567547901, -2.1145935011205532) +station = ('ksck', 0.001356563155573993) +zone = ('caz019', 0.0037037859716005121) + +[95219] +centroid = (0.66412790476673189, -2.120278963518802) +station = ('ksck', 0.0043375548742613504) +zone = ('caz018', 0.004154704527004744) + +[95220] +centroid = (0.66671980597240599, -2.115950512067271) +station = ('ksck', 0.005240071597471546) +zone = ('caz019', 0.0081652957702396025) + +[95222] +centroid = (0.66447000675341517, -2.1054294404434466) +station = ('ko22', 0.0030046004581144761) +zone = ('caz019', 0.0078464974796860106) + +[95223] +centroid = (0.67070341527032795, -2.0941007351615544) +station = ('kban', 0.006526628190989728) +zone = ('caz069', 0.0078906212129957933) + +[95224] +centroid = (0.6672624811967286, -2.1000270704498707) +station = ('ko22', 0.0037591749334580679) +zone = ('caz067', 0.0091215732445455618) + +[95225] +centroid = (0.66668788390038702, -2.1098634494081381) +station = ('ko22', 0.0070451719874070817) +zone = ('caz067', 0.0075150645453428136) + +[95226] +centroid = (0.66722179757186462, -2.1093473380950307) +station = ('ko22', 0.0069287754348580548) +zone = ('caz067', 0.0069132747633113747) + +[95227] +centroid = (0.66684498098635903, -2.112764500784218) +station = ('ksck', 0.0059129074973020817) +zone = ('caz019', 0.007843409230140189) + +[95228] +centroid = (0.66206089388030243, -2.1067288206182639) +station = ('ko22', 0.0042896663534511235) +zone = ('caz019', 0.0055300728395223575) + +[95230] +centroid = (0.66323373768435012, -2.1100708119765677) +station = ('ksck', 0.0049351900243468378) +zone = ('caz019', 0.0046658606855880073) + +[95231] +centroid = (0.6610134868895956, -2.1169453497409081) +station = ('ksck', 0.00093339990264481351) +zone = ('caz019', 0.0040026818769915663) + +[95232] +centroid = (0.66942693381529694, -2.1047626723093074) +station = ('ko22', 0.00615955058320282) +zone = ('caz067', 0.0051937788683197655) + +[95233] +centroid = (0.66604677210625196, -2.1008204273146576) +station = ('ko22', 0.0024059064127037073) +zone = ('caz067', 0.0096931409482233725) + +[95234] +centroid = (0.66192943568104223, -2.1210641871492744) +station = ('ksck', 0.0040826660463836829) +zone = ('caz018', 0.0049773311885442798) + +[95236] +centroid = (0.66374400214446316, -2.11226535407144) +station = ('ksck', 0.0036649967316820168) +zone = ('caz019', 0.0047466913753103756) + +[95237] +centroid = (0.66604452063151687, -2.1144723229105868) +station = ('ksck', 0.0047051653248911633) +zone = ('caz019', 0.0072003158779833758) + +[95240] +centroid = (0.66522156298261648, -2.114373153302489) +station = ('ksck', 0.0039354775759267999) +zone = ('caz019', 0.0063800054033730123) + +[95242] +centroid = (0.66561740365696875, -2.1185599887385127) +station = ('ksck', 0.0046306331216956556) +zone = ('caz018', 0.0051865526266749867) + +[95245] +centroid = (0.66844813571748585, -2.1053332029884917) +station = ('ko22', 0.0054891162577013573) +zone = ('caz067', 0.0059165999787389465) + +[95246] +centroid = (0.66728902765465137, -2.1033946657883016) +station = ('ko22', 0.0037759377743145773) +zone = ('caz067', 0.0075859842920919449) + +[95247] +centroid = (0.66564307745026563, -2.1022997509353556) +station = ('ko22', 0.0019475423113199744) +zone = ('caz067', 0.0094433074645068095) + +[95248] +centroid = (0.66877018387106391, -2.1024430250136517) +station = ('ko22', 0.0050530530776786986) +zone = ('caz067', 0.006744048680925983) + +[95249] +centroid = (0.66652579517275434, -2.1055426599520235) +station = ('ko22', 0.0040906015962282197) +zone = ('caz067', 0.0077175614201133056) + +[95250] +centroid = (0.6673760846777409, -2.1018765958582093) +station = ('ko22', 0.0036293169584213645) +zone = ('caz067', 0.0081276888054742057) + +[95251] +centroid = (0.66458104460042711, -2.1022330095447592) +station = ('ko22', 0.00092330172106640023) +zone = ('caz019', 0.0098759757196644239) + +[95252] +centroid = (0.66583989823001311, -2.1091722815710559) +station = ('ko22', 0.0062228398652425182) +zone = ('caz019', 0.0073411929952131097) + +[95254] +centroid = (0.66658675952352642, -2.1111125990070829) +station = ('ksck', 0.006357593106124786) +zone = ('caz019', 0.0076694091116760099) + +[95255] +centroid = (0.67055378819355449, -2.1026759566556228) +station = ('kpvf', 0.0064475529885950249) +zone = ('caz067', 0.0053258237153187638) + +[95257] +centroid = (0.66985218328754526, -2.1022141774421299) +station = ('ko22', 0.0061155374434474332) +zone = ('caz067', 0.0060657284638951665) + +[95258] +centroid = (0.66618528143569011, -2.1172757405683105) +station = ('ksck', 0.0048249916054035041) +zone = ('caz018', 0.0062112491016832576) + +[95301] +centroid = (0.65137701794385183, -2.1055079453532013) +station = ('kmer', 0.0012553062706681997) +zone = ('caz090', 0.0086321604757424644) + +[95303] +centroid = (0.65397989727052097, -2.1061077102973567) +station = ('kmer', 0.0023164051057289626) +zone = ('caz019', 0.0071685894802469043) + +[95304] +centroid = (0.65748478020791346, -2.1189441880667546) +station = ('ksck', 0.0046550221900639524) +zone = ('caz511', 0.0052005580908104443) + +[95305] +centroid = (0.65963366448955385, -2.0990924815420127) +station = ('ko22', 0.0046096501421189892) +zone = ('caz093', 0.012117487440439979) + +[95306] +centroid = (0.65262436985366712, -2.096622264691788) +station = ('kmce', 0.0055083505461479693) +zone = ('caz090', 0.00596435529748) + +[95307] +centroid = (0.6554456422296383, -2.1110023116516494) +station = ('kmod', 0.0010892484216978489) +zone = ('caz019', 0.0037662370221230703) + +[95310] +centroid = (0.66472328893446464, -2.1010020462766201) +station = ('ko22', 0.0011288358094568532) +zone = ('caz067', 0.010739253562031075) + +[95311] +centroid = (0.65807786054103357, -2.0958290300000493) +station = ('ko22', 0.0073366223866727148) +zone = ('caz093', 0.0093226302945195582) + +[95312] +centroid = (0.65312089857256694, -2.1057918057027458) +station = ('kmer', 0.0015277938482195304) +zone = ('caz019', 0.0079622660110589376) + +[95313] +centroid = (0.65330103400466533, -2.1127436440996568) +station = ('kmod', 0.0035245527060582958) +zone = ('caz019', 0.005703906993396614) + +[95314] +centroid = (0.66884319099367473, -2.0907261235995307) +station = ('kban', 0.0037710458982285226) +zone = ('caz069', 0.011027750764546197) + +[95315] +centroid = (0.65313536735206601, -2.1078216061695225) +station = ('kmer', 0.0029702902988081141) +zone = ('caz019', 0.0069679458384267765) + +[95316] +centroid = (0.6554300564394181, -2.1068577131835236) +station = ('kmod', 0.0034452069887919885) +zone = ('caz019', 0.0057598586249044551) + +[95317] +centroid = (0.64799502363909234, -2.1032340256839479) +station = ('kmce', 0.0027233677493672726) +zone = ('caz090', 0.0055873923717810704) + +[95318] +centroid = (0.65717531587824229, -2.0906272332441125) +station = ('ko22', 0.010955500683964975) +zone = ('caz093', 0.0069420031025907792) + +[95319] +centroid = (0.65692953861297654, -2.1101562807500378) +station = ('kmod', 0.0007596743462586421) +zone = ('caz019', 0.0028158798859382519) + +[95320] +centroid = (0.66018122663578205, -2.1119384015426639) +station = ('ksck', 0.003401669100095461) +zone = ('caz019', 0.0012775840636246743) + +[95321] +centroid = (0.66068974576664319, -2.0946491699724081) +station = ('ko22', 0.0063639750904205435) +zone = ('caz093', 0.011202759286057686) + +[95322] +centroid = (0.64867254300142396, -2.1122748137559859) +station = ('kcvh', 0.0072180496879400511) +zone = ('caz019', 0.010333170751850307) + +[95323] +centroid = (0.65638871343766103, -2.1063533304829898) +station = ('kmod', 0.0036645721149700283) +zone = ('caz019', 0.0055672023983990805) + +[95324] +centroid = (0.65265777545555037, -2.1099415703454576) +station = ('kmod', 0.003962762246089992) +zone = ('caz019', 0.0066770904242484429) + +[95325] +centroid = (0.65414739651883502, -2.0984166551490557) +station = ('kmce', 0.0050740586772258112) +zone = ('caz090', 0.0076502920735883875) + +[95326] +centroid = (0.65605038136216187, -2.1093217864747817) +station = ('kmod', 0.0013969887713813499) +zone = ('caz019', 0.0039120809059688556) + +[95327] +centroid = (0.66081001640539805, -2.1027783027629599) +station = ('ko22', 0.0030537273350142368) +zone = ('caz019', 0.0079394879424081015) + +[95328] +centroid = (0.65551866680554183, -2.1102755041912413) +station = ('kmod', 0.0011576626157553812) +zone = ('caz019', 0.0039273429050745686) + +[95329] +centroid = (0.65740596113889338, -2.1015774289711251) +station = ('kmer', 0.005658101705099141) +zone = ('caz019', 0.0088368909557409135) + +[95330] +centroid = (0.65989986210706808, -2.1173482066388534) +station = ('ksck', 0.0019407003185740914) +zone = ('caz019', 0.0038859810599147413) + +[95333] +centroid = (0.64999956919159285, -2.0985916069532755) +station = ('kmce', 0.003676060895355767) +zone = ('caz090', 0.0037554315638607116) + +[95334] +centroid = (0.65183347390312585, -2.1073563886574034) +station = ('kmer', 0.0024643895690499456) +zone = ('caz019', 0.0082733973207552974) + +[95335] +centroid = (0.66540813867965476, -2.0960147853923385) +station = ('ko22', 0.0047918318855250707) +zone = ('caz069', 0.011976872243897421) + +[95336] +centroid = (0.66026271605855769, -2.1153568208689126) +station = ('ksck', 0.0012959621846107341) +zone = ('caz019', 0.0025410825574889162) + +[95337] +centroid = (0.65874030025862818, -2.1160089107840427) +station = ('ksck', 0.0027403696637469917) +zone = ('caz019', 0.0027365038386132573) + +[95338] +centroid = (0.65465144760681082, -2.0940895999609261) +station = ('kmce', 0.0081835270881084367) +zone = ('caz093', 0.0057560064956472395) + +[95340] +centroid = (0.65180690999191049, -2.1017979164155292) +station = ('kmce', 0.0015154557228395855) +zone = ('caz090', 0.006688801675008166) + +[95341] +centroid = (0.64980431920817228, -2.1031404585827485) +station = ('kmce', 0.00091272506928990647) +zone = ('caz090', 0.0062026400844034666) + +[95345] +centroid = (0.65596047945239166, -2.0939889293696714) +station = ('kmce', 0.0089490704539158909) +zone = ('caz093', 0.0067527997745255768) + +[95346] +centroid = (0.66436881256338454, -2.0973743619730572) +station = ('ko22', 0.0034821543518887476) +zone = ('caz067', 0.012674243678557297) + +[95348] +centroid = (0.65261852300067302, -2.1030920606025907) +station = ('kmer', 0.001048337191270142) +zone = ('caz090', 0.0079754407394858565) + +[95350] +centroid = (0.65750005183886839, -2.1119776365442489) +station = ('kmod', 0.0012495185654847868) +zone = ('caz019', 0.0015730509917668768) + +[95351] +centroid = (0.65665571390663113, -2.1117842366098354) +station = ('kmod', 0.00065173372772104482) +zone = ('caz019', 0.002427188833400225) + +[95354] +centroid = (0.65692498330362881, -2.1112335503242461) +station = ('kmod', 0.00044048322473582628) +zone = ('caz019', 0.002329589278121227) + +[95355] +centroid = (0.65751624849432688, -2.1109162843728186) +station = ('kmod', 0.0009826894904332909) +zone = ('caz019', 0.0019773286454303684) + +[95356] +centroid = (0.6583036886929492, -2.1124193619246361) +station = ('kmod', 0.0021059954675692106) +zone = ('caz019', 0.00070876356237257717) + +[95357] +centroid = (0.6575097907760945, -2.109878546506168) +station = ('kmod', 0.0013059791572003771) +zone = ('caz019', 0.0025967243254475599) + +[95358] +centroid = (0.6564639196751294, -2.1137432639754441) +station = ('kmod', 0.0021933984077288663) +zone = ('caz019', 0.0027053168234219731) + +[95360] +centroid = (0.65146081120124011, -2.1152235649805231) +station = ('kmod', 0.0060917974053166114) +zone = ('caz019', 0.0078316076848493812) + +[95361] +centroid = (0.65949869817849727, -2.1076193923223863) +station = ('kmod', 0.0039796141305812674) +zone = ('caz019', 0.0039397418949393415) + +[95363] +centroid = (0.6536763147004292, -2.1158617795280996) +station = ('kmod', 0.0048148152628121714) +zone = ('caz019', 0.0059330480978825838) + +[95364] +centroid = (0.66773471493244074, -2.0906082615151433) +station = ('kban', 0.0039832084225909061) +zone = ('caz069', 0.011921733390570033) + +[95365] +centroid = (0.65155083528405799, -2.0995406297340473) +station = ('kmce', 0.0029679713287945929) +zone = ('caz090', 0.0054803508048916769) + +[95366] +centroid = (0.65908762077977501, -2.114040772799739) +station = ('ksck', 0.0028155624086737131) +zone = ('caz019', 0.0011705694262210177) + +[95367] +centroid = (0.65850019531343118, -2.1108518991767125) +station = ('kmod', 0.001967950657180792) +zone = ('caz019', 0.0014442505674559761) + +[95368] +centroid = (0.65826183569748642, -2.1134059790974962) +station = ('kmod', 0.0025853133787568537) +zone = ('caz019', 0.00099647466185507944) + +[95369] +centroid = (0.65505325730720509, -2.1020042492397004) +station = ('kmer', 0.003403630289397881) +zone = ('caz090', 0.0094903517750436085) + +[95370] +centroid = (0.6629554449351196, -2.1004909091518811) +station = ('ko22', 0.0012552066771852213) +zone = ('caz019', 0.010317358600934964) + +[95372] +centroid = (0.66307395279133008, -2.098981373881831) +station = ('ko22', 0.0022649212974417306) +zone = ('caz019', 0.011468249162983203) + +[95374] +centroid = (0.65130114848126752, -2.1093308098270147) +station = ('kmce', 0.0049735683392152135) +zone = ('caz019', 0.0081175006210341509) + +[95375] +centroid = (0.66648181287560404, -2.0948529895224564) +station = ('ko22', 0.0060590261065545607) +zone = ('caz069', 0.011267697802308126) + +[95376] +centroid = (0.65863823340397154, -2.1194123726386018) +station = ('ksck', 0.0039600357221251745) +zone = ('caz019', 0.0054274035849408622) + +[95377] +centroid = (0.65753597071487446, -2.1208766515211477) +station = ('klvk', 0.0041598315059005325) +zone = ('caz511', 0.0043685905391852575) + +[95379] +centroid = (0.66217386904278397, -2.0976763562935297) +station = ('ko22', 0.0035588277714380195) +zone = ('caz093', 0.013581149570860278) + +[95380] +centroid = (0.65405159539619295, -2.1096827380173866) +station = ('kmod', 0.0026863960422795902) +zone = ('caz019', 0.0054522292049115186) + +[95382] +centroid = (0.65499546945567144, -2.109288223793266) +station = ('kmod', 0.0020391321604091152) +zone = ('caz019', 0.0047738433434850241) + +[95383] +centroid = (0.66510031495948052, -2.0984202679806074) +station = ('ko22', 0.0029321945464122331) +zone = ('caz067', 0.011585374764318519) + +[95385] +centroid = (0.65643124711153211, -2.1161651177520966) +station = ('ksck', 0.0050522325346512896) +zone = ('caz019', 0.0038388401247893907) + +[95386] +centroid = (0.6574459291787641, -2.1053391371079484) +station = ('kmod', 0.0045553157950600099) +zone = ('caz019', 0.0059237654130072986) + +[95387] +centroid = (0.65447578021759767, -2.1170580805572943) +station = ('kmod', 0.0052429054424224554) +zone = ('caz019', 0.0057589530260572239) + +[95388] +centroid = (0.65300918004714681, -2.1046364675510953) +station = ('kmer', 0.00088305178621610322) +zone = ('caz019', 0.0086828225636111905) + +[95389] +centroid = (0.65670611901542864, -2.0888323890012392) +station = ('kmae', 0.012749033113237766) +zone = ('caz093', 0.0064088084309310445) + +[95391] +centroid = (0.65918008832354558, -2.1224894230164528) +station = ('klvk', 0.003095267830451766) +zone = ('caz510', 0.0042099162234299648) + +[95401] +centroid = (0.67106403520037505, -2.143155273277372) +station = ('ksts', 0.00094132511211885773) +zone = ('caz507', 0.0022476672302389642) + +[95403] +centroid = (0.67201607740075286, -2.1424624648307931) +station = ('ksts', 0.00085758422126578011) +zone = ('caz507', 0.0011709379368780458) + +[95404] +centroid = (0.67241074870450634, -2.1413612144326621) +station = ('ksts', 0.0017770236767491831) +zone = ('caz507', 0.00044168524260440947) + +[95405] +centroid = (0.67085419426440773, -2.1409254580783168) +station = ('ksts', 0.0023332342184388798) +zone = ('caz506', 0.0012201901773521494) + +[95407] +centroid = (0.67008949570593901, -2.1423052281184809) +station = ('ksts', 0.0021039051715867015) +zone = ('caz506', 0.0014696159380224653) + +[95409] +centroid = (0.67140884244739907, -2.1394340044193174) +station = ('ksts', 0.00327135069991833) +zone = ('caz506', 0.0019222929445450081) + +[95410] +centroid = (0.68425190010807679, -2.1588070718499917) +station = ('kuki', 0.0067535574317601913) +zone = ('caz002', 0.0016815510100728927) + +[95412] +centroid = (0.67567666116071567, -2.1528597402507734) +station = ('kuki', 0.0076057947093501471) +zone = ('caz002', 0.0099105977719192682) + +[95415] +centroid = (0.68094458844201011, -2.1532258928745494) +station = ('kuki', 0.0030984550903055746) +zone = ('caz002', 0.0050223187000107616) + +[95417] +centroid = (0.69271751492512024, -2.1574018723626263) +station = ('kuki', 0.011175483065141422) +zone = ('caz076', 0.004895634965141683) + +[95420] +centroid = (0.68706886152079572, -2.1608046186321919) +station = ('kuki', 0.0091307594032084306) +zone = ('caz002', 0.0036125564306172375) + +[95421] +centroid = (0.67418655140524053, -2.149538535763861) +station = ('ksts', 0.0051847839965644934) +zone = ('caz505', 0.0073887282330479982) + +[95422] +centroid = (0.68021837439354782, -2.1401707428031691) +station = ('ksts', 0.008677917819751477) +zone = ('caz064', 0.00068867678124156866) + +[95423] +centroid = (0.68180320316752874, -2.1402396833086228) +station = ('kuki', 0.0078577211795360213) +zone = ('caz064', 0.0012961500898235525) + +[95425] +centroid = (0.67759048449869763, -2.1478644333986407) +station = ('kuki', 0.0057226865053320308) +zone = ('caz507', 0.0069158632597756675) + +[95426] +centroid = (0.67775424874241219, -2.1420494850231862) +station = ('ksts', 0.0059203915389892028) +zone = ('caz064', 0.0029950703369540179) + +[95427] +centroid = (0.68494020560518587, -2.1565904513400813) +station = ('kuki', 0.00528454358418343) +zone = ('caz002', 0.00028282142679829511) + +[95428] +centroid = (0.69506749604317541, -2.1498756112022988) +station = ('kuki', 0.012065362883021269) +zone = ('caz076', 0.0053606785590591521) + +[95429] +centroid = (0.69325423857669355, -2.1520011778851327) +station = ('kuki', 0.010338043948489962) +zone = ('caz076', 0.0032623326902134321) + +[95430] +centroid = (0.67127850125886002, -2.1475785135605787) +station = ('ksts', 0.0032206689296468477) +zone = ('caz505', 0.0041280853020049281) + +[95431] +centroid = (0.66930484803411983, -2.1383260170502738) +station = ('ko69', 0.0020583397978646773) +zone = ('caz506', 0.0017491466533175652) + +[95432] +centroid = (0.68256776209965742, -2.1580144654767839) +station = ('kuki', 0.0060430616029088953) +zone = ('caz002', 0.0026469279692809835) + +[95435] +centroid = (0.68080429887673488, -2.1444774998120981) +station = ('kuki', 0.0049899745778343796) +zone = ('caz064', 0.0027886265228146009) + +[95436] +centroid = (0.67172434561628203, -2.1451103911054563) +station = ('ksts', 0.0012382700922881373) +zone = ('caz507', 0.0031046893377081313) + +[95437] +centroid = (0.68915826498152821, -2.1597208738864584) +station = ('kuki', 0.0095709885439998216) +zone = ('caz002', 0.0046261021388162406) + +[95439] +centroid = (0.67183271310953829, -2.1428724252187941) +station = ('ksts', 0.00054747826716379261) +zone = ('caz507', 0.0015299240344382084) + +[95441] +centroid = (0.67599558517493252, -2.1451277571315135) +station = ('ksts', 0.0042263719236878463) +zone = ('caz507', 0.0042792019639314267) + +[95442] +centroid = (0.66970611668244584, -2.1378038145380773) +station = ('ko69', 0.0026217610474417886) +zone = ('caz506', 0.0021178974150089904) + +[95443] +centroid = (0.68162317245518556, -2.1424131767327168) +station = ('kuki', 0.0062340780475522309) +zone = ('caz064', 0.0015519273495241521) + +[95444] +centroid = (0.670786161330165, -2.1444686160862054) +station = ('ksts', 0.0013675137103417788) +zone = ('caz507', 0.0031596622683014398) + +[95445] +centroid = (0.67775559264593621, -2.1550028300392974) +station = ('kuki', 0.0064215426979674804) +zone = ('caz002', 0.0074664023396207573) + +[95446] +centroid = (0.67242586325582865, -2.1468927213375926) +station = ('ksts', 0.0026541573840306362) +zone = ('caz505', 0.0051274837687744152) + +[95448] +centroid = (0.67416881886004032, -2.1448626939780131) +station = ('ksts', 0.0024414194732722554) +zone = ('caz507', 0.0030017155836541353) + +[95449] +centroid = (0.67968699144948563, -2.1485187224286282) +station = ('kuki', 0.0035793545108957132) +zone = ('caz064', 0.0059969931545420579) + +[95450] +centroid = (0.67197555085552152, -2.1497373811255409) +station = ('ksts', 0.0048382275391474555) +zone = ('caz505', 0.005492627057782069) + +[95451] +centroid = (0.67931933784255305, -2.143082091621836) +station = ('kuki', 0.006675049177367845) +zone = ('caz064', 0.002134585665552077) + +[95452] +centroid = (0.67065189315080898, -2.1386428641226809) +station = ('ko69', 0.0031892713885760334) +zone = ('caz506', 0.0017537312754288123) + +[95453] +centroid = (0.68145963510427376, -2.1457488849057134) +station = ('kuki', 0.003817255820926541) +zone = ('caz064', 0.0038631405249097998) + +[95454] +centroid = (0.69474836258944828, -2.1557610534262412) +station = ('kuki', 0.012490864626180286) +zone = ('caz076', 0.0055188765457416722) + +[95456] +centroid = (0.68518650646922719, -2.1600322057184291) +station = ('kuki', 0.007891836925757888) +zone = ('caz002', 0.0024181320404067924) + +[95457] +centroid = (0.67863590181405709, -2.1385994054243063) +station = ('ksts', 0.0077226878477930508) +zone = ('caz064', 0.0026647346997190104) + +[95458] +centroid = (0.68349324038881998, -2.1423098357877062) +station = ('kuki', 0.0061737056656977337) +zone = ('caz064', 0.0030826627510854394) + +[95459] +centroid = (0.68049205947355307, -2.1576954367428116) +station = ('kuki', 0.0063070169771180804) +zone = ('caz002', 0.004621151542363304) + +[95460] +centroid = (0.6860059385530386, -2.1598207939861354) +station = ('kuki', 0.0080019743833913883) +zone = ('caz002', 0.0024366307593174058) + +[95461] +centroid = (0.67636350058125305, -2.1390265922120246) +station = ('ksts', 0.0056550991483758214) +zone = ('caz507', 0.0039764690818217463) + +[95462] +centroid = (0.67129108508276691, -2.1470766092275828) +station = ('ksts', 0.0028346664418792229) +zone = ('caz505', 0.0040366008100740283) + +[95463] +centroid = (0.68393852624088125, -2.1565005843368961) +station = ('kuki', 0.0049389150797806008) +zone = ('caz002', 0.0011787076334403687) + +[95464] +centroid = (0.68291876526552597, -2.144124803676855) +station = ('kuki', 0.0047487622343451701) +zone = ('caz064', 0.0034058149232009537) + +[95465] +centroid = (0.67057829261625246, -2.1479018008979258) +station = ('ksts', 0.0036702121585847937) +zone = ('caz505', 0.0035695374212148016) + +[95466] +centroid = (0.68210647157835536, -2.1555666586541542) +station = ('kuki', 0.0042256590851018688) +zone = ('caz002', 0.0031449036721038284) + +[95467] +centroid = (0.67735291028091615, -2.1387180354535644) +station = ('ksts', 0.0065910197449068168) +zone = ('caz064', 0.0036741438133692031) + +[95468] +centroid = (0.67921606671071244, -2.1573284114544098) +station = ('kuki', 0.0066810467370708509) +zone = ('caz002', 0.0058659585472292204) + +[95469] +centroid = (0.68750119702980728, -2.1476772293830715) +station = ('kuki', 0.0049158649046468546) +zone = ('caz076', 0.0042408796982310827) + +[95470] +centroid = (0.68615926572782637, -2.1511169766327796) +station = ('kuki', 0.003225180468053963) +zone = ('caz076', 0.003911757039936267) + +[95471] +centroid = (0.67237198494181949, -2.1462099834407975) +station = ('ksts', 0.0021193779312521388) +zone = ('caz507', 0.0037829563272164437) + +[95472] +centroid = (0.67018575061418639, -2.1443450816817493) +station = ('ksts', 0.0018712174650452583) +zone = ('caz505', 0.0031041178566235538) + +[95476] +centroid = (0.66767457088641702, -2.1375170045820968) +station = ('ko69', 0.0017742236338220232) +zone = ('caz506', 0.0030847468482189675) + +[95482] +centroid = (0.68279434074315137, -2.1509847853952335) +station = ('kuki', 0.0006110405261263084) +zone = ('caz002', 0.005128814165376052) + +[95485] +centroid = (0.68461374176860035, -2.1454095405392479) +station = ('kuki', 0.0040792060366189979) +zone = ('caz064', 0.0053169026632488813) + +[95486] +centroid = (0.67150036751337361, -2.1471774019918857) +station = ('ksts', 0.0028709732014343889) +zone = ('caz505', 0.004258163691653472) + +[95488] +centroid = (0.69261176542574188, -2.1596979577133801) +station = ('kuki', 0.012067139195069597) +zone = ('caz076', 0.0063972002745408809) + +[95490] +centroid = (0.68928012386990245, -2.1527060814634282) +station = ('kuki', 0.0065570202408928163) +zone = ('caz076', 0.00084359859758599131) + +[95492] +centroid = (0.67244183301848437, -2.1436369317910451) +station = ('ksts', 0.00049422506324364962) +zone = ('caz507', 0.0017872495369085175) + +[95493] +centroid = (0.68390252009841257, -2.1462239460748136) +station = ('kuki', 0.0032448517872806087) +zone = ('caz064', 0.0052836463691664911) + +[95494] +centroid = (0.67875245490150526, -2.152651068685405) +station = ('kuki', 0.0046456329332055287) +zone = ('caz002', 0.0071343074412240481) + +[95497] +centroid = (0.67619121913078861, -2.1550642656289676) +station = ('kuki', 0.0077770378953869249) +zone = ('caz002', 0.0089973617894089728) + +[95501] +centroid = (0.71207342576924759, -2.1668597766725983) +station = ('kacv', 0.0032927249188970287) +zone = ('caz001', 0.0040051744776812715) + +[95503] +centroid = (0.71100229975400608, -2.166108883668513) +station = ('kfot', 0.0032178780736827027) +zone = ('caz001', 0.0050098822703729413) + +[95511] +centroid = (0.70060755506144079, -2.1586567466415176) +station = ('kfot', 0.009363570835817547) +zone = ('caz003', 0.011193399443678757) + +[95514] +centroid = (0.70327541299616192, -2.1581602353759104) +station = ('kfot', 0.0078106829133904416) +zone = ('caz003', 0.0086014196962574709) + +[95519] +centroid = (0.71487583113600472, -2.1651025093685203) +station = ('kacv', 0.00076674403894549112) +zone = ('caz001', 0.0012751039164602218) + +[95521] +centroid = (0.71306599451485675, -2.1653727561498992) +station = ('kacv', 0.0022709279745507134) +zone = ('caz001', 0.0029676414010960462) + +[95524] +centroid = (0.71253914942684971, -2.1650719486533183) +station = ('kacv', 0.0028343977034930509) +zone = ('caz001', 0.0035228441566845787) + +[95525] +centroid = (0.71421368812438324, -2.1609840559325892) +station = ('kacv', 0.003905679947388396) +zone = ('caz003', 0.0025503696962264335) + +[95526] +centroid = (0.70614386162181453, -2.1585039256122127) +station = ('kfot', 0.0063185806907945508) +zone = ('caz003', 0.0057365617012870782) + +[95527] +centroid = (0.71579893577738463, -2.1535262291322326) +station = ('ko54', 0.0076922458800097434) +zone = ('caz004', 0.0064355967829881353) + +[95528] +centroid = (0.70681092646192678, -2.1629929997148047) +station = ('kfot', 0.0028601767999559607) +zone = ('caz003', 0.0053852203263664127) + +[95531] +centroid = (0.72988932789458516, -2.1653543778328759) +station = ('kcec', 0.0022713276811807876) +zone = ('orz022', 0.0096140810839301927) + +[95536] +centroid = (0.7072627049388055, -2.169909076315343) +station = ('kfot', 0.0026282229067822755) +zone = ('caz001', 0.0092641211707210156) + +[95537] +centroid = (0.71081591604318561, -2.1680022342943688) +station = ('kfot', 0.0032179620183650217) +zone = ('caz001', 0.0054361765544727108) + +[95540] +centroid = (0.70823415520046562, -2.1665970871668807) +station = ('kfot', 0.00043786003475486992) +zone = ('caz003', 0.0060213406436329803) + +[95542] +centroid = (0.69953503278279783, -2.1604374537174498) +station = ('kfot', 0.0094785231852875483) +zone = ('caz076', 0.011482700588714805) + +[95543] +centroid = (0.730783529883552, -2.1618131571404566) +station = ('kcec', 0.0050554255824886481) +zone = ('orz024', 0.0091938109809590208) + +[95545] +centroid = (0.70302541203410618, -2.1653195236077134) +station = ('kfot', 0.004861672984134301) +zone = ('caz003', 0.0095641268713758561) + +[95546] +centroid = (0.71720507774254638, -2.1585499848511729) +station = ('kacv', 0.0059022625237316103) +zone = ('caz003', 0.0055929147004142934) + +[95547] +centroid = (0.70786161467162734, -2.165625741624976) +station = ('kfot', 0.00068506789941640304) +zone = ('caz003', 0.0056876719327015905) + +[95548] +centroid = (0.72593835625367553, -2.1650109843025458) +station = ('kcec', 0.0041199228990398311) +zone = ('caz001', 0.0099505245972312355) + +[95549] +centroid = (0.70976784582736308, -2.1626095159715568) +station = ('kfot', 0.0035640983206785171) +zone = ('caz003', 0.0027187292879526947) + +[95550] +centroid = (0.7117665270735769, -2.1611780841855337) +station = ('kacv', 0.0050477604421625679) +zone = ('caz003', 0.00078249626841699375) + +[95551] +centroid = (0.70991244635589079, -2.1682425312257836) +station = ('kfot', 0.0024830221967119372) +zone = ('caz001', 0.0063538625564784857) + +[95552] +centroid = (0.70169110782095645, -2.1505870074054116) +station = ('ko54', 0.010270966864225222) +zone = ('caz004', 0.0089286458226713605) + +[95553] +centroid = (0.7023940566304897, -2.1622687055285197) +station = ('kfot', 0.0063026085241716899) +zone = ('caz003', 0.0094878347649784318) + +[95554] +centroid = (0.70330391422284688, -2.1603181430097838) +station = ('kfot', 0.0065214915262263194) +zone = ('caz003', 0.0084406333818012758) + +[95555] +centroid = (0.71980532162204502, -2.1626972536730547) +station = ('kacv', 0.0051351908983158778) +zone = ('caz001', 0.0044884546207783023) + +[95556] +centroid = (0.72096188150417162, -2.1569863792808963) +station = ('kacv', 0.0088159887279044037) +zone = ('caz080', 0.007018831226543008) + +[95558] +centroid = (0.70333738963790027, -2.168450661739084) +station = ('kfot', 0.0046973650827461582) +zone = ('caz003', 0.010511998343541882) + +[95559] +centroid = (0.70133759138096508, -2.1597562342571042) +station = ('kfot', 0.0082671588684487401) +zone = ('caz003', 0.010410135816214808) + +[95560] +centroid = (0.70107783402839086, -2.1611739826617917) +station = ('kfot', 0.0078614408347511024) +zone = ('caz003', 0.010694364405317399) + +[95562] +centroid = (0.70637703760988102, -2.1663347816335987) +station = ('kfot', 0.0014300509548798603) +zone = ('caz003', 0.0071321836782170618) + +[95563] +centroid = (0.71344399792425373, -2.1554666861945999) +station = ('ko54', 0.0079520185650702006) +zone = ('caz003', 0.0039272767782046946) + +[95564] +centroid = (0.71193760424685737, -2.16777991425425) +station = ('kacv', 0.0036293805370559932) +zone = ('caz001', 0.0043180843777958179) + +[95565] +centroid = (0.70607624756659226, -2.1644726549480606) +station = ('kfot', 0.0023244409492140699) +zone = ('caz003', 0.0065504523820549493) + +[95567] +centroid = (0.73217754181041228, -2.1659028824569) +station = ('kbok', 0.0033050840860045206) +zone = ('orz022', 0.0073217526897957283) + +[95568] +centroid = (0.72348594176182079, -2.1548673052228802) +station = ('kacv', 0.011689603459435085) +zone = ('caz080', 0.004325731384165009) + +[95569] +centroid = (0.70474405520183758, -2.1615029597725002) +station = ('kfot', 0.004891657437868983) +zone = ('caz003', 0.007075030458420839) + +[95570] +centroid = (0.71698226901023676, -2.1669359253878628) +station = ('kacv', 0.0018436367232878379) +zone = ('caz001', 0.0012589490937751236) + +[95571] +centroid = (0.70376513493097892, -2.1628228650193204) +station = ('kfot', 0.0049206734282688852) +zone = ('caz003', 0.0082337227382946881) + +[95573] +centroid = (0.71410017190983344, -2.1584263980868394) +station = ('kacv', 0.0058092421859416779) +zone = ('caz003', 0.0026915030059278529) + +[95585] +centroid = (0.69542089031011922, -2.1582205539548593) +station = ('kuki', 0.01385710229736295) +zone = ('caz076', 0.0071752438448119751) + +[95587] +centroid = (0.69749064136347427, -2.1602941447325685) +station = ('kfot', 0.01135253217757263) +zone = ('caz076', 0.0097821627210024024) + +[95589] +centroid = (0.69910552470717457, -2.1636719153405384) +station = ('kfot', 0.0089622102147141388) +zone = ('caz076', 0.012719538172936718) + +[95595] +centroid = (0.70004819448946931, -2.1541813035603834) +station = ('kfot', 0.012190604781930242) +zone = ('caz076', 0.010178610223721143) + +[95601] +centroid = (0.67067241822281254, -2.1088065827328855) +station = ('kpvf', 0.0052222882618681368) +zone = ('caz067', 0.003445442767114558) + +[95602] +centroid = (0.68050439895136461, -2.1138451912037604) +station = ('kaun', 0.0009527842642930869) +zone = ('caz067', 0.0079911014275633133) + +[95603] +centroid = (0.67921004532479323, -2.1132496150498099) +station = ('kaun', 0.0006237275423698074) +zone = ('caz067', 0.0066829436757030649) + +[95604] +centroid = (0.6849248641610608, -2.0956413721988745) +station = ('ktrk', 0.0015295197332293987) +zone = ('nvz002', 0.0021716290722737981) + +[95605] +centroid = (0.67358401138757451, -2.121270851586003) +station = ('ksac', 0.0017205766671261351) +zone = ('caz017', 0.00065775390159069377) + +[95606] +centroid = (0.67642305121533108, -2.1327127763764722) +station = ('kedu', 0.0067919891031252653) +zone = ('caz507', 0.0076759094392849251) + +[95607] +centroid = (0.67778936476696239, -2.1315211353763805) +station = ('kedu', 0.0070242776331946276) +zone = ('caz507', 0.0091648142723476135) + +[95608] +centroid = (0.67411858828416782, -2.1175191616390863) +station = ('kmcc', 0.0012642584725382669) +zone = ('caz017', 0.0032399176649310453) + +[95610] +centroid = (0.67535354835629391, -2.1165917111278687) +station = ('kmcc', 0.0018152735205251905) +zone = ('caz017', 0.0041366662751994958) + +[95612] +centroid = (0.66993848981905635, -2.1219486327477224) +station = ('ksac', 0.0022826967489053898) +zone = ('caz017', 0.0042321381562609693) + +[95614] +centroid = (0.67868981503465131, -2.1115410075252776) +station = ('kaun', 0.0015984621441878129) +zone = ('caz067', 0.0054832462389263186) + +[95615] +centroid = (0.66888048867979, -2.1213815054605791) +station = ('ksac', 0.0031356078345416137) +zone = ('caz018', 0.0043286497051264949) + +[95616] +centroid = (0.67289650874192142, -2.1257843079382455) +station = ('kedu', 0.00043672823666069896) +zone = ('caz017', 0.0034599222793379519) + +[95618] +centroid = (0.67270593624089614, -2.1237428137654799) +station = ('kedu', 0.0014990961192782044) +zone = ('caz017', 0.0021827017464472504) + +[95619] +centroid = (0.6751039139133812, -2.1086066378137769) +station = ('kpvf', 0.0011130618972769232) +zone = ('caz067', 0.0012312009593469357) + +[95620] +centroid = (0.67042660605096172, -2.1250469586891554) +station = ('kedu', 0.002100103286456512) +zone = ('caz017', 0.0045795411498523566) + +[95621] +centroid = (0.67536744117713987, -2.1172292973569147) +station = ('kmcc', 0.0013482192934366312) +zone = ('caz017', 0.0036671109397202798) + +[95623] +centroid = (0.67378940173394919, -2.1093461163645544) +station = ('kpvf', 0.0024738746145003274) +zone = ('caz067', 0.0012088021731447331) + +[95624] +centroid = (0.6706890337572915, -2.1173571252713308) +station = ('kmhr', 0.0021460377484277104) +zone = ('caz017', 0.004841836395958931) + +[95625] +centroid = (0.66947550632837982, -2.1277578913498156) +station = ('kvcb', 0.00068592489639558989) +zone = ('caz018', 0.0042726012937554184) + +[95626] +centroid = (0.67602090990237906, -2.1200195726853708) +station = ('kmcc', 0.0014861100796752966) +zone = ('caz017', 0.0022575845181062545) + +[95627] +centroid = (0.67604478600654638, -2.1297440585852927) +station = ('kedu', 0.0047996376032772856) +zone = ('caz017', 0.0065804123280970841) + +[95628] +centroid = (0.67460579694486211, -2.1162886870631374) +station = ('kmhr', 0.0018867880465072151) +zone = ('caz017', 0.00422315242212254) + +[95629] +centroid = (0.67223928755879048, -2.1064119909991494) +station = ('kpvf', 0.0036498033903157889) +zone = ('caz067', 0.002108281460462789) + +[95630] +centroid = (0.67485942819176192, -2.1143203919992009) +station = ('kmhr', 0.0029675317189632351) +zone = ('caz017', 0.0057787958903336807) + +[95631] +centroid = (0.68161147874919714, -2.1082815004274229) +station = ('kgoo', 0.0040925215333221044) +zone = ('caz067', 0.0075874159775728969) + +[95632] +centroid = (0.66801518934323612, -2.1163723057876007) +station = ('kmhr', 0.0048414952372170701) +zone = ('caz018', 0.0072698965474128725) + +[95633] +centroid = (0.67796475290349523, -2.1088215402045751) +station = ('kpvf', 0.002410077726164429) +zone = ('caz067', 0.0040078060485818166) + +[95634] +centroid = (0.67959747351215083, -2.1078127748035076) +station = ('kpvf', 0.0038145392242634286) +zone = ('caz067', 0.0055652964658984066) + +[95635] +centroid = (0.67900812818362999, -2.1103482669677573) +station = ('kaun', 0.0022204042980000878) +zone = ('caz067', 0.00534918402153627) + +[95636] +centroid = (0.67406846242805052, -2.1010835007928108) +station = ('kpvf', 0.0052866884586509769) +zone = ('caz069', 0.0028753639989563397) + +[95637] +centroid = (0.6777835877271382, -2.1334370182028799) +station = ('kedu', 0.0080781437711535866) +zone = ('caz064', 0.0064573759680364657) + +[95638] +centroid = (0.66869581539163647, -2.1140106135102643) +station = ('kmhr', 0.0047794430654631874) +zone = ('caz067', 0.0072034907182786934) + +[95639] +centroid = (0.67001497014687872, -2.1205825111823091) +station = ('ksac', 0.0019368007075645079) +zone = ('caz017', 0.0042355754299338196) + +[95640] +centroid = (0.66890176424337178, -2.1110767324909547) +station = ('kmhr', 0.0061262410337281194) +zone = ('caz067', 0.0057253773858173661) + +[95641] +centroid = (0.66567395232473336, -2.122138838729605) +station = ('ksuu', 0.0054126103863539297) +zone = ('caz018', 0.0023711613337956149) + +[95642] +centroid = (0.66921217105083886, -2.1076756791907632) +station = ('kpvf', 0.0065810046612266712) +zone = ('caz067', 0.0048215497669303912) + +[95645] +centroid = (0.67866937722911047, -2.1254384709469627) +station = ('ksmf', 0.0040397583642423403) +zone = ('caz017', 0.0053801380816942178) + +[95646] +centroid = (0.6752553735858694, -2.0953537942980236) +station = ('ktvl', 0.0035240980655897015) +zone = ('caz069', 0.0042398104566808243) + +[95648] +centroid = (0.67933122353475917, -2.1172939094458236) +station = ('klhm', 0.00056233458500029197) +zone = ('caz017', 0.0061894190651127596) + +[95650] +centroid = (0.67734788373267041, -2.1148394529187442) +station = ('kaun', 0.0028398963477118382) +zone = ('caz017', 0.0062048460566406964) + +[95651] +centroid = (0.67749876744650517, -2.1106139584397883) +station = ('kaun', 0.0029675721864765303) +zone = ('caz067', 0.0040906039086323117) + +[95652] +centroid = (0.6747962472728396, -2.1188489454494728) +station = ('kmcc', 6.6124778824390416e-05) +zone = ('caz017', 0.0022889189904228787) + +[95653] +centroid = (0.67540053261975774, -2.1289309620466659) +station = ('kedu', 0.0038965506660456509) +zone = ('caz017', 0.0058059093076602009) + +[95655] +centroid = (0.67281095270198865, -2.1167108473026102) +station = ('kmhr', 0.00029244092376438366) +zone = ('caz017', 0.0041029127536477339) + +[95658] +centroid = (0.67864028259047959, -2.1146266100164635) +station = ('kaun', 0.0017136519855078141) +zone = ('caz067', 0.0070231072146595876) + +[95659] +centroid = (0.6779248023169171, -2.1218345405745196) +station = ('ksmf', 0.0025111138451291235) +zone = ('caz017', 0.0037622640880856039) + +[95660] +centroid = (0.67506796013079018, -2.1184801050186493) +station = ('kmcc', 0.00034275461852272172) +zone = ('caz017', 0.0026467600987572083) + +[95661] +centroid = (0.67615929705876965, -2.1161714532972811) +station = ('kmcc', 0.0024474348581483354) +zone = ('caz017', 0.0047300238702417544) + +[95662] +centroid = (0.67525347117698464, -2.1156608048647327) +station = ('kmcc', 0.0025048687147899368) +zone = ('caz017', 0.0048139917449454058) + +[95663] +centroid = (0.67816183548263043, -2.1150303570323272) +station = ('kaun', 0.002273693969202694) +zone = ('caz017', 0.0065392897325320613) + +[95664] +centroid = (0.67719930385344806, -2.1124895590671513) +station = ('kaun', 0.0026379769041137142) +zone = ('caz067', 0.0048215193861568416) + +[95665] +centroid = (0.6702427879741415, -2.1057341051176746) +station = ('kpvf', 0.0057151233972864285) +zone = ('caz067', 0.0041292765946052065) + +[95666] +centroid = (0.67236821503063515, -2.1009685185016891) +station = ('kpvf', 0.0061351152516824501) +zone = ('caz069', 0.0045452312751206167) + +[95667] +centroid = (0.6760519767630645, -2.1081823657259098) +station = ('kpvf', 0.00060313337748764092) +zone = ('caz067', 0.0020383607531406596) + +[95668] +centroid = (0.67777337755101408, -2.1205419148239075) +station = ('klhm', 0.0024145709658271947) +zone = ('caz017', 0.0037135323736268303) + +[95669] +centroid = (0.67164840634052769, -2.110093850322694) +station = ('kpvf', 0.0046175430801634679) +zone = ('caz067', 0.002969033523107466) + +[95670] +centroid = (0.67377158192228626, -2.116741024045377) +station = ('kmhr', 0.00098445736378055255) +zone = ('caz017', 0.0038680773945740914) + +[95672] +centroid = (0.67588037599100848, -2.1118560569085552) +station = ('kpvf', 0.0034113312388761399) +zone = ('caz067', 0.0036459291199081546) + +[95673] +centroid = (0.67525464054758355, -2.1198597005258879) +station = ('kmcc', 0.00089542239907557033) +zone = ('caz017', 0.0017823986209150723) + +[95674] +centroid = (0.67987833189538172, -2.1202586129797236) +station = ('klhm', 0.0019492117921340979) +zone = ('caz017', 0.0058178281500585122) + +[95675] +centroid = (0.67273192419345829, -2.1073192655042132) +station = ('kpvf', 0.0030623025299165397) +zone = ('caz067', 0.0013603335210718927) + +[95677] +centroid = (0.67703197913805935, -2.1159473704746175) +station = ('klhm', 0.0025995779968033578) +zone = ('caz017', 0.0053040417686520836) + +[95678] +centroid = (0.67656070533343593, -2.1168664783120104) +station = ('kmcc', 0.0022883910262594597) +zone = ('caz017', 0.0044465040478622476) + +[95679] +centroid = (0.67887495956170274, -2.1353870222162556) +station = ('ksts', 0.0094111007280776662) +zone = ('caz064', 0.004624468702335089) + +[95680] +centroid = (0.66742121889219752, -2.1221028151338435) +station = ('ksac', 0.0046862072056296916) +zone = ('caz018', 0.0029370376327429322) + +[95681] +centroid = (0.68060086329912239, -2.1180189192171022) +station = ('klhm', 0.0014940263375420569) +zone = ('caz017', 0.0070354767205948344) + +[95682] +centroid = (0.67390878225478568, -2.1112291870011162) +station = ('kpvf', 0.0034771934440459068) +zone = ('caz067', 0.0026583145775181077) + +[95683] +centroid = (0.67216106190171598, -2.1135284663044009) +station = ('kmhr', 0.0028596948864799475) +zone = ('caz067', 0.0048320783461817552) + +[95684] +centroid = (0.67357968297102966, -2.1046219638650112) +station = ('kpvf', 0.0031449827335437307) +zone = ('caz067', 0.0025479379254099571) + +[95685] +centroid = (0.67076315789062368, -2.1078456044467373) +station = ('kpvf', 0.0050362218768278009) +zone = ('caz067', 0.0032690575388677331) + +[95686] +centroid = (0.66597914059773722, -2.1209279991077414) +station = ('ksac', 0.0059790358748070668) +zone = ('caz018', 0.0033322817454149844) + +[95687] +centroid = (0.66903938345489145, -2.1279080594786572) +station = ('kvcb', 0.00096671596413283763) +zone = ('caz018', 0.0039587185958945125) + +[95688] +centroid = (0.67035602493601099, -2.1296991861702237) +station = ('kvcb', 0.0010885734949360481) +zone = ('caz018', 0.0058471041022059829) + +[95689] +centroid = (0.67158231072175467, -2.105076395242353) +station = ('kpvf', 0.004610937456932274) +zone = ('caz067', 0.003262173768022689) + +[95690] +centroid = (0.66670837406580541, -2.1226392944393218) +station = ('ksuu', 0.0046961512402241652) +zone = ('caz018', 0.0022076222009377506) + +[95691] +centroid = (0.6741849282490362, -2.1222032064724186) +station = ('ksmf', 0.0012608156882148952) +zone = ('caz017', 0.00042025810951433034) + +[95692] +centroid = (0.68149750874904202, -2.1188836600482954) +station = ('kbab', 0.0015626626239785436) +zone = ('caz017', 0.0076462123120036637) + +[95693] +centroid = (0.67019857878418854, -2.1155196426348311) +station = ('kmhr', 0.0028975363011753564) +zone = ('caz017', 0.006233747008730417) + +[95694] +centroid = (0.67314715547580029, -2.1307016160261067) +station = ('kvcb', 0.0036889912081683948) +zone = ('caz507', 0.008380692570851625) + +[95695] +centroid = (0.67521629566391717, -2.1268072628661319) +station = ('kedu', 0.0028895862721388939) +zone = ('caz017', 0.0041503099846075583) + +[95697] +centroid = (0.67600738360067614, -2.1259901695235182) +station = ('kedu', 0.0035428120403702109) +zone = ('caz017', 0.0038458833965233723) + +[95698] +centroid = (0.67747323327954867, -2.1277443999546977) +station = ('kedu', 0.0052618442786569568) +zone = ('caz017', 0.0057823944124687308) + +[95699] +centroid = (0.67084290198414731, -2.1093642852420675) +station = ('kpvf', 0.0051620438880986795) +zone = ('caz067', 0.0034074976742372383) + +[95701] +centroid = (0.68459639319583543, -2.1078112563670581) +station = ('kblu', 0.0013844701349758812) +zone = ('caz069', 0.0096355280599769617) + +[95703] +centroid = (0.68043200269399196, -2.1114760289172261) +station = ('kaun', 0.0013484254248101479) +zone = ('caz067', 0.007002005297731536) + +[95709] +centroid = (0.67628569380319914, -2.1061850109299272) +station = ('kpvf', 0.001128133320616402) +zone = ('caz067', 0.0025939244305599974) + +[95713] +centroid = (0.68266256838462569, -2.1096451785318839) +station = ('kgoo', 0.0026020976513781743) +zone = ('caz067', 0.0087452478502230736) + +[95714] +centroid = (0.68417782833462215, -2.1090685392003174) +station = ('kgoo', 0.0022336173459851609) +zone = ('caz069', 0.009941701099428598) + +[95715] +centroid = (0.68539016893964255, -2.1062216453909266) +station = ('kblu', 0.0003820288359286378) +zone = ('caz069', 0.0096402255822020527) + +[95717] +centroid = (0.68320082792594072, -2.109275273450216) +station = ('kgoo', 0.0024640387143715337) +zone = ('caz067', 0.0092373396131452384) + +[95720] +centroid = (0.67659496614665249, -2.0980545865957296) +station = ('ktvl', 0.0036963208978836506) +zone = ('caz069', 0.0018284851317473324) + +[95721] +centroid = (0.67790665089269631, -2.0957437706660893) +station = ('ktvl', 0.0014733830388514091) +zone = ('caz072', 0.0023817917079187495) + +[95722] +centroid = (0.68084842080022523, -2.1124436918144092) +station = ('kaun', 0.0011323925233049843) +zone = ('caz067', 0.0077058698715774679) + +[95724] +centroid = (0.68611866936942489, -2.100121964001302) +station = ('ktrk', 0.0026317598255605383) +zone = ('nvz002', 0.0058319341619608401) + +[95726] +centroid = (0.67719384097288926, -2.1031893103485118) +station = ('kpvf', 0.0036314200248359066) +zone = ('caz069', 0.0022189469188285973) + +[95728] +centroid = (0.68625180308476708, -2.1013655809065179) +station = ('kblu', 0.00410845179019639) +zone = ('nvz002', 0.0067935794770201674) + +[95735] +centroid = (0.67789940777630053, -2.0970045441578522) +station = ('ktvl', 0.002377382797932604) +zone = ('caz069', 0.0028097433845731619) + +[95736] +centroid = (0.68135575310719498, -2.1114562194302158) +station = ('kaun', 0.0019658352363129418) +zone = ('caz067', 0.0078493066228898511) + +[95742] +centroid = (0.67330933146989558, -2.1153702599041528) +station = ('kmhr', 0.0014253157663232142) +zone = ('caz017', 0.0049938147660921143) + +[95746] +centroid = (0.67633191012179195, -2.1150660315622378) +station = ('kmcc', 0.003284838533624095) +zone = ('caz017', 0.0055887612183730933) + +[95747] +centroid = (0.67687481223891721, -2.118361178283418) +station = ('kmcc', 0.0020470680773605086) +zone = ('caz017', 0.0037409603380690786) + +[95757] +centroid = (0.66924454690846336, -2.1193747956998066) +station = ('ksac', 0.0028658745773773764) +zone = ('caz017', 0.0052369290781785986) + +[95758] +centroid = (0.67069186119067969, -2.1196098042835874) +station = ('ksac', 0.001469201900714721) +zone = ('caz017', 0.0038273744227951992) + +[95762] +centroid = (0.67518449576494588, -2.112968285427681) +station = ('kmhr', 0.0039890753417157971) +zone = ('caz067', 0.0041744348631647527) + +[95765] +centroid = (0.67745831071444407, -2.1167274977436739) +station = ('klhm', 0.0019070369819173135) +zone = ('caz017', 0.0050687151452560152) + +[95776] +centroid = (0.67533911448337991, -2.1239685022910555) +station = ('ksmf', 0.0012904470913388184) +zone = ('caz017', 0.0021475229304578846) + +[95811] +centroid = (0.6734043995542518, -2.1201928315202161) +station = ('ksac', 0.0014830796921670368) +zone = ('caz017', 0.0013796270500091884) + +[95814] +centroid = (0.67335793888956363, -2.1204980721530977) +station = ('ksac', 0.0014074650189382456) +zone = ('caz017', 0.0012181749506406398) + +[95815] +centroid = (0.67379146122246658, -2.1196603664720177) +station = ('kmcc', 0.0012506618004765719) +zone = ('caz017', 0.0016108614053687155) + +[95816] +centroid = (0.67320101633651686, -2.1199897450084539) +station = ('ksac', 0.0013305053430652117) +zone = ('caz017', 0.0016263159238285516) + +[95817] +centroid = (0.67283397359482244, -2.119813606380343) +station = ('ksac', 0.001064495580609169) +zone = ('caz017', 0.0019665610069562879) + +[95818] +centroid = (0.67290273956735103, -2.1205236935865166) +station = ('ksac', 0.00095182556977367421) +zone = ('caz017', 0.0015459308821599304) + +[95819] +centroid = (0.67317049052789946, -2.1195290129925128) +station = ('ksac', 0.0014679252521209748) +zone = ('caz017', 0.0019436451806425813) + +[95820] +centroid = (0.67256051540761996, -2.1196041494168112) +station = ('ksac', 0.00097346768667847666) +zone = ('caz017', 0.0022740839696021569) + +[95821] +centroid = (0.6741455187145261, -2.1185664464567453) +station = ('kmcc', 0.00074409798173034664) +zone = ('caz017', 0.0024214551398198249) + +[95822] +centroid = (0.67217493726926947, -2.1204636542602482) +station = ('ksac', 0.00023959310190002745) +zone = ('caz017', 0.0022007320921200698) + +[95823] +centroid = (0.67149970428825789, -2.1195881272942776) +station = ('ksac', 0.00089505373831061407) +zone = ('caz017', 0.0031214271082926626) + +[95824] +centroid = (0.67225867816677998, -2.119540741605086) +station = ('ksac', 0.00086559164363125081) +zone = ('caz017', 0.0025286263489820641) + +[95825] +centroid = (0.67355566724052218, -2.1189774889488824) +station = ('kmcc', 0.0013100732208890134) +zone = ('caz017', 0.0021872931215290272) + +[95826] +centroid = (0.67271541337873442, -2.118440363871581) +station = ('kmhr', 0.0010660991252520197) +zone = ('caz017', 0.0029082422950898407) + +[95827] +centroid = (0.67293139787366874, -2.1175077471857779) +station = ('kmhr', 0.00034793627764570376) +zone = ('caz017', 0.0034762289671319024) + +[95828] +centroid = (0.67175644222122621, -2.1187571585841107) +station = ('kmhr', 0.0016892255528913114) +zone = ('caz017', 0.0033126980873536107) + +[95829] +centroid = (0.67176927039122836, -2.1174937321918845) +station = ('kmhr', 0.0011026917283924935) +zone = ('caz017', 0.0040475566827486631) + +[95830] +centroid = (0.67178609536521749, -2.1168081145018234) +station = ('kmhr', 0.0010605904885857237) +zone = ('caz017', 0.0044819559211518346) + +[95831] +centroid = (0.67186156340207381, -2.1210889882779451) +station = ('ksac', 0.00041222284952504873) +zone = ('caz017', 0.0023470332225575528) + +[95832] +centroid = (0.67102761017888579, -2.1205072176783779) +station = ('ksac', 0.00092567602070814012) +zone = ('caz017', 0.0032655166106299251) + +[95833] +centroid = (0.67402955903902351, -2.1208813813634202) +station = ('kmcc', 0.0018051569878198915) +zone = ('caz017', 0.00062765173303667076) + +[95834] +centroid = (0.67431935350802474, -2.1208964610081575) +station = ('ksmf', 0.0015802827936631822) +zone = ('caz017', 0.00062059174348654922) + +[95835] +centroid = (0.67493014893305259, -2.1210285300726559) +station = ('ksmf', 0.0011310567095028554) +zone = ('caz017', 0.00091294080470027104) + +[95837] +centroid = (0.67533674083559725, -2.1223052558737825) +station = ('ksmf', 0.00010633602483605808) +zone = ('caz017', 0.0012738226677287796) + +[95838] +centroid = (0.67450290978545691, -2.1196177629849764) +station = ('kmcc', 0.00071181678321144306) +zone = ('caz017', 0.0016351548689865106) + +[95841] +centroid = (0.67475074653924016, -2.1179115640148116) +station = ('kmcc', 0.00072529021572909677) +zone = ('caz017', 0.0029902480046745858) + +[95842] +centroid = (0.67521219414017486, -2.1179421421833071) +station = ('kmcc', 0.00077699033104794608) +zone = ('caz017', 0.0030907333349000144) + +[95843] +centroid = (0.67571230078404143, -2.1181913053873216) +station = ('kmcc', 0.00098671985675130472) +zone = ('caz017', 0.0031230835259618873) + +[95864] +centroid = (0.67341865889424057, -2.1184081450935892) +station = ('kmhr', 0.0011934754205275809) +zone = ('caz017', 0.0026528886379518133) + +[95901] +centroid = (0.68458688115141209, -2.1204711940826169) +station = ('kbab', 0.0017819996989188282) +zone = ('caz016', 0.0064121158858452326) + +[95903] +centroid = (0.68253018516086195, -2.1182743481531312) +station = ('kbab', 0.0010021284141302576) +zone = ('caz017', 0.008772232293380559) + +[95910] +centroid = (0.68925017401993827, -2.1086584915458539) +station = ('kblu', 0.0039564406101445827) +zone = ('nvz002', 0.013094620655392873) + +[95912] +centroid = (0.68096991316945665, -2.1303862873901491) +station = ('kmyv', 0.0068705419949137512) +zone = ('caz016', 0.0065424144140913392) + +[95914] +centroid = (0.68851502388570562, -2.1176170746101231) +station = ('kove', 0.0039564551987866566) +zone = ('caz016', 0.0081289713741051432) + +[95915] +centroid = (0.69824088859573663, -2.1146216183748026) +station = ('kove', 0.010761102119556862) +zone = ('caz068', 0.0041964764702064001) + +[95916] +centroid = (0.69229425512821907, -2.1179911684819954) +station = ('kove', 0.0045854350363956431) +zone = ('caz016', 0.00923018968239743) + +[95917] +centroid = (0.68789756130293511, -2.1251353421624763) +station = ('kove', 0.0024638520077924376) +zone = ('caz016', 0.002314675601087105) + +[95918] +centroid = (0.68593584613027847, -2.1177463686011109) +station = ('kbab', 0.0032017327071385288) +zone = ('caz016', 0.0080457898272076819) + +[95919] +centroid = (0.68823362445040659, -2.1164062000816743) +station = ('kgoo', 0.0050423517740845938) +zone = ('caz016', 0.0090201686233552982) + +[95920] +centroid = (0.6885287945335038, -2.1281911693366231) +station = ('kove', 0.0043953790932037742) +zone = ('caz016', 0.0012885793155857196) + +[95922] +centroid = (0.68922772908575758, -2.1130742618198619) +station = ('kgoo', 0.0047269821191952754) +zone = ('caz016', 0.011704597778589008) + +[95923] +centroid = (0.70046569469983877, -2.11346619295669) +station = ('kove', 0.013102540880175914) +zone = ('caz068', 0.0036069456264718426) + +[95925] +centroid = (0.68912768681303327, -2.1152107542638134) +station = ('kgoo', 0.0052105413920367372) +zone = ('caz016', 0.01006333571938756) + +[95926] +centroid = (0.69369207187284887, -2.1265760765534125) +station = ('kcic', 0.00095256826858519509) +zone = ('caz066', 0.0064949605799918386) + +[95928] +centroid = (0.69264630549163886, -2.1265804398765424) +station = ('kcic', 0.0019963161841422016) +zone = ('caz016', 0.0055099460539496025) + +[95930] +centroid = (0.69025326710093693, -2.1152012596726824) +station = ('kove', 0.0057783265468853411) +zone = ('caz016', 0.010335561669754056) + +[95932] +centroid = (0.6853291696822853, -2.1289282567863252) +station = ('kove', 0.0063601730379025155) +zone = ('caz016', 0.0020459007917111101) + +[95934] +centroid = (0.6991978526246051, -2.1101532438771393) +station = ('kove', 0.013695164577897108) +zone = ('caz068', 0.0064228643453983752) + +[95935] +centroid = (0.6872992100754739, -2.1152039474797308) +station = ('kgoo', 0.00372506545883397) +zone = ('caz016', 0.0098990224956518689) + +[95936] +centroid = (0.69125437050658833, -2.1082065734426347) +station = ('kblu', 0.0057638661326096944) +zone = ('caz068', 0.012744323187986772) + +[95937] +centroid = (0.67867559060124749, -2.1292849846321404) +station = ('kedu', 0.0068226592881908462) +zone = ('caz017', 0.0074597833984754378) + +[95938] +centroid = (0.69123264115740091, -2.1257287890147394) +station = ('kove', 0.0030196159142033756) +zone = ('caz016', 0.0043564203606765621) + +[95939] +centroid = (0.69066139489322331, -2.1394390484208556) +station = ('krbl', 0.011018952222324374) +zone = ('caz063', 0.0048915960529716191) + +[95941] +centroid = (0.68970752009713077, -2.1160839250352934) +station = ('kove', 0.0050450943627616401) +zone = ('caz016', 0.0095323757267601859) + +[95942] +centroid = (0.69847116733724468, -2.1217380413201767) +station = ('kcic', 0.0053908388172071962) +zone = ('caz066', 0.0030051054457513036) + +[95943] +centroid = (0.69088521591649898, -2.1298653764215985) +station = ('kcic', 0.0044833201714806949) +zone = ('caz016', 0.0039090978722385664) + +[95944] +centroid = (0.68931668851773165, -2.1108760370802675) +station = ('kgoo', 0.0047943640971536789) +zone = ('caz068', 0.013407318774594112) + +[95945] +centroid = (0.6841060080359026, -2.1113647467241186) +station = ('kgoo', 0.00063730398978908628) +zone = ('caz067', 0.010442437741323678) + +[95946] +centroid = (0.68444109379899309, -2.1153956020848921) +station = ('kbab', 0.0034282675317362792) +zone = ('caz017', 0.011375365138505723) + +[95947] +centroid = (0.70117846971306086, -2.1087027181890994) +station = ('kblu', 0.015637809540492792) +zone = ('caz071', 0.0062479776153695531) + +[95948] +centroid = (0.68659968211127453, -2.1253011309881233) +station = ('kove', 0.0034911405385269138) +zone = ('caz016', 0.0021925971705228056) + +[95949] +centroid = (0.68241063010710035, -2.1142716973130704) +station = ('kaun', 0.0027826648681049744) +zone = ('caz067', 0.0097649251681838582) + +[95950] +centroid = (0.68143670147790247, -2.1278722453224059) +station = ('kmyv', 0.0048631225311594186) +zone = ('caz016', 0.0058121083196427357) + +[95951] +centroid = (0.69331124103006359, -2.1293699123535426) +station = ('kcic', 0.0024560669686155448) +zone = ('caz016', 0.0061533950179366425) + +[95953] +centroid = (0.68519437790415383, -2.1254090796023593) +station = ('kmyv', 0.0039713876138841942) +zone = ('caz016', 0.0028750673760823305) + +[95954] +centroid = (0.69620318178744822, -2.1220309075686616) +station = ('kcic', 0.0038989504281314847) +zone = ('caz066', 0.0045167056923071181) + +[95955] +centroid = (0.68581868217759212, -2.1328222783337423) +station = ('kove', 0.0086674631944901933) +zone = ('caz016', 0.0039868845361865357) + +[95956] +centroid = (0.69530929395774677, -2.1141912376345533) +station = ('kove', 0.00876733979708718) +zone = ('caz068', 0.0068951824678119304) + +[95957] +centroid = (0.68174168031139604, -2.1262849730874724) +station = ('kmyv', 0.0035944811722403761) +zone = ('caz016', 0.0056660415553541612) + +[95959] +centroid = (0.68674885540244257, -2.1104299309234578) +station = ('kgoo', 0.002442534784598134) +zone = ('caz069', 0.012578776569134642) + +[95960] +centroid = (0.68771587252780242, -2.1124502891589816) +station = ('kgoo', 0.0031560582246281904) +zone = ('caz067', 0.01414664035694276) + +[95961] +centroid = (0.68138184577951233, -2.1216306861178866) +station = ('kmyv', 0.0010452545138133369) +zone = ('caz017', 0.007217058315780794) + +[95962] +centroid = (0.68669726346975357, -2.1164637959469901) +station = ('kbab', 0.0043406455914571573) +zone = ('caz016', 0.0089442255899005278) + +[95963] +centroid = (0.69351181426770292, -2.133813922054848) +station = ('kcic', 0.0055957318373294753) +zone = ('caz016', 0.0076980894611065288) + +[95965] +centroid = (0.69104470410354624, -2.1219950934124103) +station = ('kove', 0.0017071016311371366) +zone = ('caz016', 0.0059972982781212551) + +[95966] +centroid = (0.68894945378981964, -2.1191076905110813) +station = ('kove', 0.0027420607934453703) +zone = ('caz016', 0.007084135464052733) + +[95968] +centroid = (0.68827427316868561, -2.1214813033872084) +station = ('kove', 0.0014281409447729184) +zone = ('caz016', 0.005147997870230331) + +[95969] +centroid = (0.69318973120753968, -2.1231263634736757) +station = ('kcic', 0.0030959367911773538) +zone = ('caz016', 0.0070347851925980087) + +[95970] +centroid = (0.68763221889675441, -2.1303653957990027) +station = ('kove', 0.0062445838984001604) +zone = ('caz016', 0.0018604534394639635) + +[95971] +centroid = (0.69708754011943364, -2.1098565902641777) +station = ('kblu', 0.011733291723955964) +zone = ('caz068', 0.0076519807755610165) + +[95973] +centroid = (0.69624018276759048, -2.1265437530556657) +station = ('kcic', 0.0016027458002468812) +zone = ('caz066', 0.0040070881548977524) + +[95974] +centroid = (0.68905984586500824, -2.1264821778396552) +station = ('kove', 0.0030072002221531854) +zone = ('caz016', 0.0021624880923303918) + +[95975] +centroid = (0.68459513655877402, -2.1144946631250123) +station = ('kgoo', 0.0020083264730492338) +zone = ('caz067', 0.01176670619761732) + +[95977] +centroid = (0.68376057247034794, -2.1169393807148662) +station = ('kbab', 0.0020603155801062504) +zone = ('caz017', 0.010276548819914941) + +[95978] +centroid = (0.69596049375495839, -2.1212088574909722) +station = ('kcic', 0.0044061110038508952) +zone = ('caz066', 0.0050652077098868589) + +[95979] +centroid = (0.68595000075051216, -2.1382223793992905) +station = ('kuki', 0.0097692808309544944) +zone = ('caz064', 0.0057269229609692779) + +[95981] +centroid = (0.69267002451617343, -2.1118505416681188) +station = ('kgoo', 0.0080816919716454865) +zone = ('caz068', 0.010058435030185666) + +[95982] +centroid = (0.68369393579950688, -2.1259130434238727) +station = ('kmyv', 0.0034781244197054553) +zone = ('caz016', 0.0039071212645633031) + +[95983] +centroid = (0.69949152172454565, -2.106740077991939) +station = ('krts', 0.013228821215733568) +zone = ('caz071', 0.0071014769233572724) + +[95984] +centroid = (0.69884650039288609, -2.1139890761472948) +station = ('kove', 0.011535100890264591) +zone = ('caz068', 0.0040794897978299258) + +[95986] +centroid = (0.68665692891073993, -2.1078492870914589) +station = ('kblu', 0.0014084570875952187) +zone = ('caz069', 0.011363832664617468) + +[95987] +centroid = (0.68238790592023935, -2.1342939225057314) +station = ('kbab', 0.011563359297808279) +zone = ('caz064', 0.0054273849954164215) + +[95988] +centroid = (0.68925938935838871, -2.1338758463367089) +station = ('kcic', 0.0077221198457523331) +zone = ('caz016', 0.0049569124959514734) + +[95991] +centroid = (0.68095869070236625, -2.1223028124128298) +station = ('kmyv', 0.0015291538247047226) +zone = ('caz017', 0.0068119503765879663) + +[95993] +centroid = (0.68211825255080627, -2.1237186235020475) +station = ('kmyv', 0.0015668536527056369) +zone = ('caz016', 0.0061125609118432098) + +[96001] +centroid = (0.70860964533573956, -2.1372432147823366) +station = ('krdd', 0.002872428041504694) +zone = ('caz013', 0.00650793422806209) + +[96002] +centroid = (0.70734414200170359, -2.1348649069705212) +station = ('krdd', 0.00067588893047128588) +zone = ('caz015', 0.0053855514400807094) + +[96003] +centroid = (0.71125547721530036, -2.1333277780449973) +station = ('krdd', 0.0044521080045111881) +zone = ('caz013', 0.0031070430833063717) + +[96006] +centroid = (0.71796108456134011, -2.1090620814820848) +station = ('kaat', 0.0070422861087609569) +zone = ('caz085', 0.0074940909617025033) + +[96007] +centroid = (0.70612515169223311, -2.1341536154871639) +station = ('krdd', 0.00073661254940111053) +zone = ('caz015', 0.0041632958050496043) + +[96008] +centroid = (0.71043628947758442, -2.1314030114926057) +station = ('krdd', 0.0041789278729725769) +zone = ('caz013', 0.0041599819480231896) + +[96009] +centroid = (0.71656307583049283, -2.1122114583041385) +station = ('kaat', 0.0095449967956383244) +zone = ('caz014', 0.0064688381029707545) + +[96010] +centroid = (0.71408055440904095, -2.1521214136173024) +station = ('ko54', 0.0058597465165744923) +zone = ('caz004', 0.0044201568295617688) + +[96011] +centroid = (0.71647888114737646, -2.1290310217726827) +station = ('kmhs', 0.0063641332978468428) +zone = ('caz013', 0.0038075390431583128) + +[96013] +centroid = (0.71515307668768413, -2.1238960711270978) +station = ('kmhs', 0.010162739582720744) +zone = ('caz014', 0.0027248962542981803) + +[96014] +centroid = (0.7212856575337091, -2.1428049158833269) +station = ('kmhs', 0.0059928717498409188) +zone = ('caz080', 0.0064921133620490495) + +[96015] +centroid = (0.72408392647013908, -2.1103469754241106) +station = ('kaat', 0.0045414031030634001) +zone = ('caz085', 0.0024087368496692936) + +[96016] +centroid = (0.71374225724012696, -2.120679097703114) +station = ('kmhs', 0.012960663659114295) +zone = ('caz014', 0.0008678926399461591) + +[96017] +centroid = (0.71698747009140773, -2.1333828955427756) +station = ('kmhs', 0.0042654307694875515) +zone = ('caz013', 0.0026287081628113668) + +[96019] +centroid = (0.70998630868983525, -2.1358973564895387) +station = ('krdd', 0.0033697497766639129) +zone = ('caz013', 0.0048206855638134255) + +[96020] +centroid = (0.70507805886079167, -2.1170586914225327) +station = ('kcic', 0.012772458331787594) +zone = ('caz068', 0.0035728873841073864) + +[96021] +centroid = (0.69679558144216003, -2.1340281437672375) +station = ('krbl', 0.003963875614822485) +zone = ('caz015', 0.0051823536826114845) + +[96022] +centroid = (0.70400284877510055, -2.1371300650869296) +station = ('krdd', 0.003601731278510289) +zone = ('caz015', 0.0028854270978589717) + +[96023] +centroid = (0.73179725201969537, -2.127675197649856) +station = ('klmt', 0.0045789415009880553) +zone = ('caz084', 0.0036829461139232626) + +[96024] +centroid = (0.7076117184293268, -2.1446075966545415) +station = ('ko54', 0.0036115490286048172) +zone = ('caz004', 0.004238904122646543) + +[96025] +centroid = (0.71924917245589703, -2.1346761670652108) +station = ('kmhs', 0.0018662159952590107) +zone = ('caz082', 0.0019322193996614606) + +[96027] +centroid = (0.72256679901784293, -2.1479642662318548) +station = ('ko86', 0.0087960526560163597) +zone = ('caz080', 0.0029944283783416071) + +[96028] +centroid = (0.71569699109577556, -2.1202389082124689) +station = ('kmhs', 0.012246042307172684) +zone = ('caz014', 0.0011233609731856106) + +[96029] +centroid = (0.6970890411025904, -2.1378398381338384) +station = ('krbl', 0.004859494512070529) +zone = ('caz063', 0.0041722784846822628) + +[96031] +centroid = (0.71883245764369086, -2.1499279187199809) +station = ('ko54', 0.0083884811706490727) +zone = ('caz080', 0.0064642135010332799) + +[96032] +centroid = (0.72621422299524574, -2.1461181791221429) +station = ('ksiy', 0.0070361270905915643) +zone = ('caz080', 0.0027761357548619059) + +[96033] +centroid = (0.71177377018997268, -2.1394970108053144) +station = ('ko86', 0.0037962839977132138) +zone = ('caz013', 0.0054048160542016117) + +[96034] +centroid = (0.72305995925128652, -2.1399384394797289) +station = ('kmhs', 0.0043010653727245541) +zone = ('caz081', 0.0054080933940061039) + +[96035] +centroid = (0.6989282167084645, -2.1325280856350264) +station = ('krbl', 0.0020184487096608019) +zone = ('caz015', 0.0033758008475226592) + +[96037] +centroid = (0.72509136542097519, -2.1456146690862345) +station = ('ksiy', 0.0072288227351028148) +zone = ('caz080', 0.0030035207411433619) + +[96038] +centroid = (0.72618088720653273, -2.1388262109606031) +station = ('ksiy', 0.0029694382806519301) +zone = ('caz081', 0.0022645905392131107) + +[96039] +centroid = (0.72759120050860671, -2.1551896151758458) +station = ('kcec', 0.0099098244622779115) +zone = ('caz080', 0.0047565389565905987) + +[96040] +centroid = (0.71198149927754495, -2.1195035311854338) +station = ('kmhs', 0.014727761742527462) +zone = ('caz014', 0.0026776737579402837) + +[96041] +centroid = (0.70730731555448645, -2.1501394700786154) +station = ('ko54', 0.0052814713153071999) +zone = ('caz004', 0.0033788368238495108) + +[96044] +centroid = (0.73183313598911637, -2.1382042803349472) +station = ('ksiy', 0.0029223121986211528) +zone = ('caz081', 0.0034682506355007436) + +[96046] +centroid = (0.70836704456971233, -2.1543077701179834) +station = ('ko54', 0.0073179316075392487) +zone = ('caz003', 0.0055673698053324856) + +[96047] +centroid = (0.70633157178286643, -2.1408423804059216) +station = ('ko54', 0.0059497772132776636) +zone = ('caz015', 0.0065412378011653729) + +[96048] +centroid = (0.71260072464286006, -2.1471539447667385) +station = ('ko54', 0.0019509936700859015) +zone = ('caz004', 0.0023999029922972801) + +[96049] +centroid = (0.72889339066351966, -2.1524895035565481) +station = ('ksiy', 0.011220536812589398) +zone = ('caz080', 0.0041910990248558511) + +[96050] +centroid = (0.73127340889800174, -2.1448098454082629) +station = ('ksiy', 0.0059518664603796182) +zone = ('caz081', 0.0050972936133512796) + +[96051] +centroid = (0.71441448825482512, -2.1359963864712967) +station = ('ko86', 0.0041793138453178457) +zone = ('caz013', 0.0020956129311651963) + +[96052] +centroid = (0.71101905491482531, -2.1436323241218198) +station = ('ko54', 0.0013462339635572872) +zone = ('caz004', 0.0038693985983327323) + +[96054] +centroid = (0.71977683784865254, -2.1124917058221313) +station = ('kaat', 0.0074798355036887676) +zone = ('caz085', 0.0066823342655842029) + +[96055] +centroid = (0.69993350890432071, -2.1306060592495601) +station = ('krbl', 0.0024772575147811353) +zone = ('caz015', 0.0035724886358141652) + +[96056] +centroid = (0.71607675728771703, -2.1172295242497179) +station = ('kaat', 0.012561831367610646) +zone = ('caz014', 0.0028041608815735134) + +[96057] +centroid = (0.72027471047107638, -2.1280979862078593) +station = ('kmhs', 0.0051258289208948472) +zone = ('caz082', 0.0033264616007365536) + +[96058] +centroid = (0.72829926313284821, -2.1276642020755685) +station = ('ksiy', 0.0073288384978747127) +zone = ('caz083', 0.0032482128710936684) + +[96059] +centroid = (0.70549065469596306, -2.1263878951534623) +station = ('krbl', 0.0073001490655759073) +zone = ('caz066', 0.0055044054005775308) + +[96061] +centroid = (0.70403210049336395, -2.1202097437606677) +station = ('kcic', 0.010617750224241489) +zone = ('caz068', 0.0030005552754133673) + +[96062] +centroid = (0.70825776950524511, -2.1300250740481563) +station = ('krdd', 0.003500219638086144) +zone = ('caz013', 0.0065670069965688728) + +[96063] +centroid = (0.70459870418173143, -2.1224310242996811) +station = ('krbl', 0.0093972278917041768) +zone = ('caz068', 0.0045608966497362232) + +[96064] +centroid = (0.72878167213809941, -2.1356787365474341) +station = ('ksiy', 0.0013314616582746834) +zone = ('caz081', 0.0025980760206315259) + +[96065] +centroid = (0.71370986392920999, -2.1271392943030309) +station = ('krdd', 0.0087167270821549084) +zone = ('caz014', 0.0051890522558064034) + +[96067] +centroid = (0.7209554586925242, -2.135876761604365) +station = ('kmhs', 0.00080271250165700545) +zone = ('caz082', 0.0026023256760532134) + +[96068] +centroid = (0.7176514980586215, -2.1154710701217483) +station = ('kaat', 0.010544318393614202) +zone = ('caz014', 0.0048061285940626834) + +[96069] +centroid = (0.71009307048017967, -2.1295821443905849) +station = ('krdd', 0.0047968728171694794) +zone = ('caz013', 0.0050809291784591603) + +[96071] +centroid = (0.70970182002176019, -2.1199240159088242) +station = ('krbl', 0.013770182834804469) +zone = ('caz014', 0.0048877434172467493) + +[96073] +centroid = (0.70867188377686563, -2.1325434445324438) +station = ('krdd', 0.0022279901807324295) +zone = ('caz013', 0.0057128947618772814) + +[96074] +centroid = (0.69611411763571884, -2.1395575039171884) +station = ('krbl', 0.0064694335475440042) +zone = ('caz063', 0.0025464018934813542) + +[96075] +centroid = (0.70412240382886215, -2.1267221780650969) +station = ('krbl', 0.0062814958343737019) +zone = ('caz066', 0.0042372220115425279) + +[96076] +centroid = (0.70497225700153576, -2.1456672733098898) +station = ('ko54', 0.0062043169201715228) +zone = ('caz004', 0.0059889705810671507) + +[96080] +centroid = (0.70112673815403159, -2.1361939751959151) +station = ('krbl', 0.0019691632546577392) +zone = ('caz015', 0.0015763536955615354) + +[96084] +centroid = (0.71287983769683894, -2.1287772683527355) +station = ('krdd', 0.0073121062546153198) +zone = ('caz013', 0.0036733708758305149) + +[96085] +centroid = (0.72846485997227761, -2.1480739252687573) +station = ('ksiy', 0.0079441366393249273) +zone = ('caz080', 0.00337592860870784) + +[96086] +centroid = (0.73171487247900124, -2.1513065892027163) +station = ('kmfr', 0.0093847375420033161) +zone = ('caz080', 0.0065446315012736124) + +[96087] +centroid = (0.7089526723469266, -2.1405354642569585) +station = ('ko54', 0.0043040118058065074) +zone = ('caz004', 0.0063784441190340799) + +[96088] +centroid = (0.70706719315599709, -2.1272879789020087) +station = ('krdd', 0.0052951628290172715) +zone = ('caz066', 0.0071907310686278141) + +[96090] +centroid = (0.69850829049043461, -2.1315299841956885) +station = ('krbl', 0.002773464958570802) +zone = ('caz015', 0.0041170879669457294) + +[96091] +centroid = (0.71619072728787225, -2.1431128443232561) +station = ('ko86', 0.0015730849961670167) +zone = ('caz004', 0.007082022604413582) + +[96092] +centroid = (0.69749151402810039, -2.1296026171027109) +station = ('kcic', 0.0036252323501497277) +zone = ('caz066', 0.0043401597049734422) + +[96093] +centroid = (0.71149181224931302, -2.1457327057035473) +station = ('ko54', 0.00040742301618946006) +zone = ('caz004', 0.0024510044694784827) + +[96094] +centroid = (0.72355380016313831, -2.1374936869832903) +station = ('kmhs', 0.003156139977493613) +zone = ('caz082', 0.0049470650835652698) + +[96096] +centroid = (0.70952599555291418, -2.1262182666034612) +station = ('krdd', 0.0066559363242949419) +zone = ('caz014', 0.0067177956681981578) + +[96097] +centroid = (0.72876601653470918, -2.1407618160076498) +station = ('ksiy', 0.0024810120602721209) +zone = ('caz081', 0.0012622020933777034) + +[96101] +centroid = (0.72348629082767113, -2.1037930022834841) +station = ('kaat', 0.00064940711034610786) +zone = ('caz085', 0.0034423916426087253) + +[96103] +centroid = (0.69473860619892969, -2.1060186810522121) +station = ('kblu', 0.0091265892768303304) +zone = ('caz068', 0.01141702154623851) + +[96104] +centroid = (0.72442117644150195, -2.0968927732725544) +station = ('kaat', 0.0055515745864133555) +zone = ('caz070', 0.0019827975205202308) + +[96105] +centroid = (0.69383230907824656, -2.0953581401678609) +station = ('krts', 0.0028258149442342323) +zone = ('nvz003', 0.0079868482131681979) + +[96106] +centroid = (0.69353527149284955, -2.1038852254811595) +station = ('kblu', 0.0081867571708535633) +zone = ('nvz002', 0.012432406129347998) + +[96107] +centroid = (0.67064765200072674, -2.0852450567099825) +station = ('kban', 0.0014281996746507584) +zone = ('caz072', 0.011326661410734436) + +[96108] +centroid = (0.72902638475252168, -2.1019194611446381) +station = ('kaat', 0.0053088336897461532) +zone = ('caz085', 0.005615231529075379) + +[96109] +centroid = (0.69847579245976243, -2.0961261723052012) +station = ('krts', 0.0068230277764037076) +zone = ('caz071', 0.0098121721185785507) + +[96110] +centroid = (0.72081918338452855, -2.0957650636829634) +station = ('kaat', 0.0071489039607629196) +zone = ('caz070', 0.0054411776269675189) + +[96111] +centroid = (0.6888519771510957, -2.0950115177784148) +station = ('ktrk', 0.002958512582126426) +zone = ('nvz002', 0.0047055145223705141) + +[96112] +centroid = (0.73057464887867329, -2.0962276632012045) +station = ('klkv', 0.0065953248488170337) +zone = ('caz070', 0.0043221615111935542) + +[96113] +centroid = (0.70062635225748482, -2.097170298076914) +station = ('krts', 0.0091088236722587455) +zone = ('caz071', 0.0076470059858615626) + +[96114] +centroid = (0.70331087808656245, -2.1031189212197789) +station = ('krts', 0.013778838941433471) +zone = ('caz071', 0.0030201448991053685) + +[96115] +centroid = (0.72783423760694699, -2.0967397253504472) +station = ('kaat', 0.0068109006605109297) +zone = ('caz070', 0.0016953015289192233) + +[96116] +centroid = (0.72004001604656076, -2.1008976930406433) +station = ('kaat', 0.0047232853712174984) +zone = ('caz070', 0.0072610274799057902) + +[96117] +centroid = (0.70744362576906727, -2.098501966842893) +station = ('krts', 0.015844948361903203) +zone = ('caz071', 0.0043026111039541513) + +[96118] +centroid = (0.69184148181366678, -2.0987085789197444) +station = ('krts', 0.005006257866991372) +zone = ('nvz002', 0.0086545895572810987) + +[96119] +centroid = (0.71598069436568723, -2.103540872019741) +station = ('kaat', 0.0080595122087189133) +zone = ('caz071', 0.0097205537277089554) + +[96120] +centroid = (0.67619966652436825, -2.0920848100623308) +station = ('ktvl', 0.002905483314065697) +zone = ('caz072', 0.0038260079578658476) + +[96121] +centroid = (0.70106252749085074, -2.1009185497252045) +station = ('krts', 0.010972466063389402) +zone = ('caz071', 0.0056908512879036578) + +[96122] +centroid = (0.69508620597275683, -2.1027197469665553) +station = ('krts', 0.008513691207876874) +zone = ('caz071', 0.011217818033334043) + +[96123] +centroid = (0.71084108369099941, -2.1013114931529988) +station = ('kaat', 0.013368784133494472) +zone = ('caz071', 0.0049935956684535087) + +[96124] +centroid = (0.69188117060085708, -2.1021664426870883) +station = ('ktrk', 0.0070621283055266231) +zone = ('nvz002', 0.010322314963795626) + +[96125] +centroid = (0.69118745458306696, -2.1054907189534839) +station = ('kblu', 0.005630973325673117) +zone = ('nvz002', 0.011834972522729527) + +[96126] +centroid = (0.68992374893816033, -2.1023218293503931) +station = ('kblu', 0.0054297627305487355) +zone = ('nvz002', 0.0091132591387254568) + +[96128] +centroid = (0.70439338364852677, -2.1015187335483803) +station = ('krts', 0.013992609253761499) +zone = ('caz071', 0.0026290763980843482) + +[96129] +centroid = (0.69445376846500417, -2.1006307798381356) +station = ('krts', 0.0067914882347113814) +zone = ('nvz002', 0.011655223926287999) + +[96130] +centroid = (0.70776167711865823, -2.1061878209100233) +station = ('kaat', 0.016322313356270417) +zone = ('caz071', 0.0022696155847377378) + +[96132] +centroid = (0.71409858366021406, -2.1014164223476284) +station = ('kaat', 0.010154255987703231) +zone = ('caz071', 0.0080646418765104675) + +[96133] +centroid = (0.67406298209419935, -2.0857589340016474) +station = ('kban', 0.0047318150917684933) +zone = ('caz072', 0.0085028034670950204) + +[96134] +centroid = (0.7289773060939555, -2.1195373731196296) +station = ('klmt', 0.0075796715573840795) +zone = ('caz084', 0.0030623731570379692) + +[96135] +centroid = (0.6947920307273332, -2.0979847559723575) +station = ('krts', 0.005053261882621703) +zone = ('nvz003', 0.010092640541815431) + +[96136] +centroid = (0.7041696498917136, -2.095812082853012) +station = ('krts', 0.012141892852127521) +zone = ('caz071', 0.0065369517276107061) + +[96137] +centroid = (0.70285684813494853, -2.1125371192892684) +station = ('kcic', 0.013594610594661601) +zone = ('caz068', 0.0043338925141327578) + +[96140] +centroid = (0.68472804338131343, -2.0960778266849207) +station = ('ktrk', 0.0015591897564117964) +zone = ('nvz002', 0.002471499221923492) + +[96141] +centroid = (0.68203191111271011, -2.0974862724846952) +station = ('ktrk', 0.0042151704493849935) +zone = ('caz072', 0.0036226163375314949) + +[96142] +centroid = (0.68062859658093666, -2.0966575727025556) +station = ('ktvl', 0.0028089193110408077) +zone = ('caz072', 0.0023505022437078893) + +[96143] +centroid = (0.68511981743850858, -2.0947820244350703) +station = ('ktrk', 0.001852928697927358) +zone = ('nvz002', 0.0016032273063479637) + +[96145] +centroid = (0.68312574386152003, -2.0975983749825504) +station = ('ktrk', 0.0031534440409158549) +zone = ('nvz002', 0.0038635109488891679) + +[96146] +centroid = (0.6841349805014858, -2.0985452684616352) +station = ('ktrk', 0.0025057566144540302) +zone = ('nvz002', 0.0043771069720846224) + +[96148] +centroid = (0.68501151975842234, -2.0955171396627175) +station = ('ktrk', 0.0015149659316131183) +zone = ('nvz002', 0.0020999810544293099) + +[96150] +centroid = (0.6784084854125223, -2.0945511871882014) +station = ('ktvl', 0.00041916584838257702) +zone = ('caz072', 0.0014715441616622795) + +[96155] +centroid = (0.67626392954742676, -2.0959372927735505) +station = ('ktvl', 0.0027741874112384313) +zone = ('caz069', 0.003511905600953455) + +[96161] +centroid = (0.686142842179565, -2.0980215998728671) +station = ('ktrk', 0.0010072452054864611) +zone = ('nvz002', 0.004310042510883013) + +[96701] +centroid = (0.37360610470640976, -2.755612251753206) +station = ('phnl', 0.001651858434640096) +zone = ('hiz008', 0.0015936896596808747) + +[96703] +centroid = (0.38651325085722082, -2.7818049139833683) +station = ('phli', 0.002955586144301108) +zone = ('hiz002', 0.0016039706719295039) + +[96704] +centroid = (0.33750074026979088, -2.719872725781098) +station = ('phko', 0.0077465517488776404) +zone = ('hiz023', 0.0035466039343288644) + +[96705] +centroid = (0.38221607570588556, -2.7849876615007201) +station = ('phli', 0.004072482069846825) +zone = ('hiz003', 0.0025680590729947991) + +[96706] +centroid = (0.37253627023481478, -2.7580091124149697) +station = ('phjr', 0.00087237657665639853) +zone = ('hiz005', 0.0011811218333623527) + +[96707] +centroid = (0.37285653815255571, -2.7590549835159353) +station = ('phjr', 0.00084897419155900125) +zone = ('hiz011', 0.0020109570331277699) + +[96708] +centroid = (0.36394284495664786, -2.7266155260934974) +station = ('phog', 0.0035203318226900674) +zone = ('hiz020', 0.0011875324754115513) + +[96710] +centroid = (0.34631491479175003, -2.709582857923285) +station = ('phto', 0.0039182809283939855) +zone = ('hiz025', 0.0014060899953065237) + +[96712] +centroid = (0.37736404293204878, -2.7584581681782159) +station = ('phhi', 0.0024208952873030708) +zone = ('hiz007', 0.0014097011220294176) + +[96713] +centroid = (0.36196070943174297, -2.7234998341260077) +station = ('phog', 0.0069309514813800854) +zone = ('hiz020', 0.0023878519201516128) + +[96714] +centroid = (0.38626307536223992, -2.7841659953954663) +station = ('phli', 0.0039844379847176281) +zone = ('hiz004', 0.00070242014660282573) + +[96716] +centroid = (0.38483244642767273, -2.7854131727723566) +station = ('phbk', 0.0031010605188036941) +zone = ('hiz004', 0.0011502852575557047) + +[96717] +centroid = (0.37625371682180753, -2.7559690668654837) +station = ('phhi', 0.002449885171619585) +zone = ('hiz008', 0.0010833692971283688) + +[96719] +centroid = (0.35315627384700987, -2.7198502633936243) +station = ('phsf', 0.0091628604549805742) +zone = ('hiz026', 0.0050421858411427312) + +[96720] +centroid = (0.34312841481650641, -2.7093177598631994) +station = ('phto', 0.0031585074034800706) +zone = ('hiz025', 0.0021955725376198616) + +[96722] +centroid = (0.38725526013541367, -2.7831213111183923) +station = ('phli', 0.004128126994067666) +zone = ('hiz004', 0.0020738868221901086) + +[96725] +centroid = (0.34254681874986437, -2.7211488756235713) +station = ('phko', 0.0029571612505449297) +zone = ('hiz023', 0.001654201805559118) + +[96726] +centroid = (0.33908570867011195, -2.7195892494039891) +station = ('phko', 0.0065228432125327036) +zone = ('hiz023', 0.0021119330513298469) + +[96727] +centroid = (0.35098471773838608, -2.7163653644761676) +station = ('phsf', 0.0058735024841539115) +zone = ('hiz026', 0.0034637665155609889) + +[96728] +centroid = (0.34664291451807733, -2.7074412516646253) +station = ('phto', 0.0028065359051333062) +zone = ('hiz025', 0.003131598646509508) + +[96729] +centroid = (0.36954830146198553, -2.7422056796369372) +station = ('phmk', 0.00049389666870689299) +zone = ('hiz013', 0.00065590072132302513) + +[96730] +centroid = (0.3759987940312613, -2.7550105844001664) +station = ('phng', 0.002303313104563403) +zone = ('hiz008', 0.0011956565814969025) + +[96731] +centroid = (0.37801548707535565, -2.7572500687232777) +station = ('phhi', 0.0031860419961818125) +zone = ('hiz007', 0.0027078112097092999) + +[96732] +centroid = (0.36449077362201898, -2.7307882418158731) +station = ('phog', 0.00055541551045935899) +zone = ('hiz019', 0.00077105472997327103) + +[96734] +centroid = (0.37341465954075848, -2.753399802580208) +station = ('phng', 0.00096765351546768195) +zone = ('hiz009', 0.00031806181006674238) + +[96737] +centroid = (0.33273859195243177, -2.7188681840768201) +station = ('phko', 0.012492579401159179) +zone = ('hiz024', 0.0056042321865675928) + +[96738] +centroid = (0.34685179552295597, -2.7191594446223926) +station = ('phsf', 0.0043379755109738492) +zone = ('hiz026', 0.0014834219199912283) + +[96740] +centroid = (0.34482155872386611, -2.7213168112041983) +station = ('phko', 0.0021750293660425094) +zone = ('hiz023', 0.0038996312953042361) + +[96741] +centroid = (0.38324442370116063, -2.784009997866923) +station = ('phli', 0.0029250706104404175) +zone = ('hiz002', 0.0022628860710628084) + +[96742] +centroid = (0.36949740766099737, -2.7394450749057651) +station = ('phmk', 0.0023288632074135855) +zone = ('hiz012', 0.0019660415496244514) + +[96743] +centroid = (0.34666003619803937, -2.7174575217088957) +station = ('phsf', 0.0028045435275715854) +zone = ('hiz026', 0.0019294978175409482) + +[96744] +centroid = (0.37440337110872074, -2.7545524005649327) +station = ('phng', 0.0012061471333799163) +zone = ('hiz008', 0.0015002619280144276) + +[96746] +centroid = (0.38557747512547152, -2.7817581217061225) +station = ('phli', 0.0020591685761088864) +zone = ('hiz002', 0.00091214199977882992) + +[96747] +centroid = (0.38268605796686261, -2.7859716083198243) +station = ('phbk', 0.0031789030762159392) +zone = ('hiz003', 0.0016800310270468212) + +[96748] +centroid = (0.36880699031549347, -2.7373115495215421) +station = ('phjh', 0.0038632753540709325) +zone = ('hiz012', 0.00014014121849283216) + +[96749] +centroid = (0.34245597436229802, -2.7050811825434935) +station = ('phto', 0.0019371307223910038) +zone = ('hiz025', 0.0056132903265542974) + +[96750] +centroid = (0.34093329676298062, -2.7177176630339055) +station = ('phsf', 0.0051161536206429537) +zone = ('hiz027', 0.0023933732909640825) + +[96751] +centroid = (0.38580452500786344, -2.7803539345097228) +station = ('phli', 0.0021806183288796618) +zone = ('hiz002', 0.0021892505655821981) + +[96752] +centroid = (0.38346567909043594, -2.787544010349531) +station = ('phbk', 0.0015573576311155367) +zone = ('hiz003', 0.0010607621935097605) + +[96753] +centroid = (0.36149180927490215, -2.7303668669745642) +station = ('phog', 0.0032830858879321712) +zone = ('hiz021', 0.0016660265697069129) + +[96754] +centroid = (0.38706920803715106, -2.7822682814464801) +station = ('phli', 0.0036200073810153141) +zone = ('hiz002', 0.0020098378520307537) + +[96755] +centroid = (0.35250250841579783, -2.7190468359790541) +station = ('phsf', 0.0082210659564006545) +zone = ('hiz026', 0.0042736818530566528) + +[96756] +centroid = (0.38235051841816664, -2.7829565520370041) +station = ('phli', 0.0023326546680263486) +zone = ('hiz002', 0.0027520096167434325) + +[96757] +centroid = (0.36921056279843212, -2.7397156707529939) +station = ('phmk', 0.0020499063770295762) +zone = ('hiz012', 0.0021402417443154068) + +[96759] +centroid = (0.37467702128214092, -2.7588841332354574) +station = ('phhi', 0.00069293887689688717) +zone = ('hiz010', 0.00079435148785012846) + +[96760] +centroid = (0.34129501625045644, -2.7062396971943827) +station = ('phto', 0.0028275207855760708) +zone = ('hiz025', 0.0054219898676892081) + +[96761] +centroid = (0.36472661996384098, -2.7334219262038402) +station = ('phjh', 0.0021082402511879554) +zone = ('hiz018', 0.00051714990541374588) + +[96762] +centroid = (0.37731363782325122, -2.7566420134651755) +station = ('phhi', 0.0027692638388558057) +zone = ('hiz008', 0.0022407751934081801) + +[96763] +centroid = (0.36366521543253311, -2.7388994151684218) +station = ('phny', 0.00097133394223219332) +zone = ('hiz014', 0.00031219555340814432) + +[96764] +centroid = (0.34753119984087982, -2.7100932271031533) +station = ('phsf', 0.0050148206969382273) +zone = ('hiz025', 0.0024399909651760953) + +[96765] +centroid = (0.38261294612449659, -2.7836627995188237) +station = ('phli', 0.0027838338158848656) +zone = ('hiz002', 0.0026629163682386713) + +[96766] +centroid = (0.38384865668820106, -2.7820836081583264) +station = ('phli', 0.0011181625454933285) +zone = ('hiz002', 0.0013163804008776924) + +[96768] +centroid = (0.36359159744468394, -2.7279122010079742) +station = ('phog', 0.0025058525481843571) +zone = ('hiz020', 0.0020740406041553998) + +[96769] +centroid = (0.38213978736428089, -2.7951781852175097) +station = ('phbk', 0.0064360486330360929) +zone = ('hiz001', 8.9490885918413226e-05) + +[96770] +centroid = (0.36885938509963834, -2.74394531911557) +station = ('phmk', 0.0019164509699838728) +zone = ('hiz013', 0.00181430930123428) + +[96771] +centroid = (0.34075579677805279, -2.7074107782158854) +station = ('phto', 0.0035737274875453123) +zone = ('hiz025', 0.0051475816387878256) + +[96772] +centroid = (0.33433324693010147, -2.7161680026443524) +station = ('phsf', 0.011020310254369062) +zone = ('hiz024', 0.0026193349868059005) + +[96773] +centroid = (0.34697428272986092, -2.709434487483573) +station = ('phto', 0.0042180485222963263) +zone = ('hiz025', 0.0020564745946649227) + +[96774] +centroid = (0.34844100507335946, -2.7108900571731516) +station = ('phsf', 0.0048889040941578346) +zone = ('hiz025', 0.0033787444460471978) + +[96776] +centroid = (0.34895015252275119, -2.7122398948166437) +station = ('phsf', 0.0044167076085578393) +zone = ('hiz025', 0.0042427912105399796) + +[96777] +centroid = (0.33600989747602983, -2.7132324635622531) +station = ('phsf', 0.0094003608823994278) +zone = ('hiz024', 0.00079496401488823724) + +[96778] +centroid = (0.33927350609762652, -2.7057521045612529) +station = ('phto', 0.0048605119122695304) +zone = ('hiz025', 0.0072557842921385359) + +[96779] +centroid = (0.36491734954449889, -2.7293975983744692) +station = ('phog', 0.00083371180778248337) +zone = ('hiz019', 0.0014431843186839251) + +[96780] +centroid = (0.34853801047318528, -2.7090331664753697) +station = ('phto', 0.005191719771110717) +zone = ('hiz025', 0.0036487667589569419) + +[96781] +centroid = (0.34533349870006108, -2.7090599921859724) +station = ('phto', 0.0030099168012189446) +zone = ('hiz025', 0.001225801021638895) + +[96782] +centroid = (0.37380369343102798, -2.7565183394343791) +station = ('phnl', 0.0014822354075082764) +zone = ('hiz005', 0.0014667472319434597) + +[96783] +centroid = (0.34611322454338955, -2.7077763897875933) +station = ('phto', 0.0025222138179931126) +zone = ('hiz025', 0.0026146894747401269) + +[96785] +centroid = (0.33953162284070393, -2.7123733426912509) +station = ('phsf', 0.0062111324706625986) +zone = ('hiz028', 0.0030194204875939054) + +[96786] +centroid = (0.37649177973177961, -2.7572604010724495) +station = ('phhi', 0.0017689586852521599) +zone = ('hiz010', 0.0017053081929208303) + +[96789] +centroid = (0.37494089761174998, -2.7564721580223717) +station = ('phhi', 0.0016097199827654141) +zone = ('hiz008', 0.0005478338407334391) + +[96790] +centroid = (0.36103643541976427, -2.7280220694843873) +station = ('phog', 0.0042907868444311235) +zone = ('hiz021', 0.00057453113989309036) + +[96791] +centroid = (0.37635651671475001, -2.7608517127144006) +station = ('phhi', 0.002835574660310175) +zone = ('hiz007', 0.0010570138457045226) + +[96792] +centroid = (0.37469820957926014, -2.7605335042851773) +station = ('phhi', 0.0021847674890762433) +zone = ('hiz006', 0.00024185329539518917) + +[96793] +centroid = (0.36469255113684207, -2.7319694457470378) +station = ('phog', 0.0015834569287672695) +zone = ('hiz017', 0.00085867746727263993) + +[96795] +centroid = (0.37236622280579296, -2.7525748901625455) +station = ('phng', 0.0021049705883964629) +zone = ('hiz009', 0.00098215367225483485) + +[96796] +centroid = (0.3856144062924437, -2.7876383628488939) +station = ('phbk', 0.0014752436557117874) +zone = ('hiz003', 0.0016358272735074203) + +[96797] +centroid = (0.37380535149381744, -2.7573381380373334) +station = ('phhi', 0.0014028234959207243) +zone = ('hiz010', 0.0013609305140131773) + +[96813] +centroid = (0.37204394775941224, -2.7549158828349531) +station = ('phnl', 0.0017312290736379882) +zone = ('hiz005', 0.0017421572128244966) + +[96814] +centroid = (0.37163545344798293, -2.7549807043633723) +station = ('phnl', 0.001789241273384614) +zone = ('hiz005', 0.0018033717606043317) + +[96815] +centroid = (0.37129195519789793, -2.7545212813443696) +station = ('phnl', 0.0023225036337367407) +zone = ('hiz009', 0.0022505221591054723) + +[96816] +centroid = (0.37159127916461493, -2.7539258448167594) +station = ('phnl', 0.0027324477616048636) +zone = ('hiz009', 0.0017201692996047465) + +[96817] +centroid = (0.37272343934379865, -2.7545076503229118) +station = ('phng', 0.0020192879426808807) +zone = ('hiz009', 0.0013089006781267277) + +[96818] +centroid = (0.37252736905562955, -2.7565710832843742) +station = ('phnl', 0.0002515830389076572) +zone = ('hiz005', 0.00024472423112350964) + +[96819] +centroid = (0.37259161462539547, -2.7554607920807181) +station = ('phnl', 0.0012252984351109448) +zone = ('hiz005', 0.0012298726807430317) + +[96821] +centroid = (0.37194821644994036, -2.7532615899567427) +station = ('phng', 0.0024249120437413482) +zone = ('hiz009', 0.0012209530136525735) + +[96822] +centroid = (0.37210786171662025, -2.7543173221679815) +station = ('phnl', 0.0022753699644205839) +zone = ('hiz009', 0.001494501217019978) + +[96825] +centroid = (0.37165945172519788, -2.7521878459476232) +station = ('phng', 0.0028905199311047591) +zone = ('hiz009', 0.0017709497615786809) + +[96826] +centroid = (0.37160709184763802, -2.7545985121637702) +station = ('phnl', 0.0021309454916383736) +zone = ('hiz009', 0.0020411580290009036) + +[96850] +centroid = (0.37182117393368769, -2.7552230433300116) +station = ('phnl', 0.001510936681804435) +zone = ('hiz005', 0.001524388504894104) + +[96853] +centroid = (0.37234426656380287, -2.7565548168157457) +station = ('phnl', 0.00017968086131847123) +zone = ('hiz005', 0.00018789906499249169) + +[96857] +centroid = (0.37501470758581679, -2.7585194990481305) +station = ('phhi', 0.00030143468451474621) +zone = ('hiz010', 0.00040060484691994855) + +[96859] +centroid = (0.37281035674054797, -2.7557113166415492) +station = ('phnl', 0.0010750154588253483) +zone = ('hiz005', 0.0010750424887794581) + +[96860] +centroid = (0.37272649366998961, -2.7565945230562288) +station = ('phnl', 0.00041484168498278175) +zone = ('hiz005', 0.00040201418923419327) + +[96863] +centroid = (0.37434612430925535, -2.7534720068513634) +station = ('phng', 0.00020202599646923128) +zone = ('hiz009', 0.0012088498863697355) + +[97001] +centroid = (0.78522863956720212, -2.1049373972207244) +station = ('kdls', 0.0129313279957543) +zone = ('orz042', 0.0051836683068327265) + +[97002] +centroid = (0.78959505192996404, -2.1431565124611409) +station = ('kuao', 0.0003729095629191496) +zone = ('orz006', 0.0043280660371889752) + +[97004] +centroid = (0.78984808976491805, -2.1371447956658165) +station = ('kttd', 0.0051649622586425236) +zone = ('orz006', 0.0057617552695300904) + +[97005] +centroid = (0.79396710170620965, -2.1433269787691831) +station = ('khio', 0.0020657260957787638) +zone = ('orz006', 0.00027063389233941384) + +[97006] +centroid = (0.79442177742964681, -2.1443084123141647) +station = ('khio', 0.0012437633214142415) +zone = ('orz006', 0.0010779954451344055) + +[97007] +centroid = (0.79332672295036055, -2.144653900239597) +station = ('khio', 0.0018795443442546805) +zone = ('orz006', 0.0013364275583049241) + +[97008] +centroid = (0.79342999408220094, -2.1433374681979878) +station = ('khio', 0.0023744526174275752) +zone = ('orz006', 0.00056195832216796146) + +[97009] +centroid = (0.79278080141362928, -2.1351096195849437) +station = ('kttd', 0.0024428425989920744) +zone = ('waz039', 0.0060054802178467577) + +[97011] +centroid = (0.79215478671752393, -2.1297628557813364) +station = ('kczk', 0.0051831268857810749) +zone = ('orz009', 0.0045636350599448797) + +[97013] +centroid = (0.78925226926487224, -2.1409653737583096) +station = ('kuao', 0.0013120691164408172) +zone = ('orz006', 0.0048715329396280841) + +[97014] +centroid = (0.79557146071452045, -2.1295949900138798) +station = ('kczk', 0.0021891274375210154) +zone = ('waz023', 0.001750226808174269) + +[97015] +centroid = (0.79261551873346536, -2.138669881819502) +station = ('kttd', 0.0027988132216775572) +zone = ('orz006', 0.0032718135929375057) + +[97016] +centroid = (0.80390402908268432, -2.1514141538445166) +station = ('kkls', 0.0045494275886954995) +zone = ('orz005', 0.0031164771855943592) + +[97017] +centroid = (0.7884790011397762, -2.136103060995179) +station = ('kttd', 0.0065268619045922701) +zone = ('orz011', 0.0067162315626994942) + +[97018] +centroid = (0.80105470926563349, -2.1434498499485239) +station = ('kspb', 0.0023755286565397514) +zone = ('orz005', 0.0034168492299017097) + +[97019] +centroid = (0.79439762207279918, -2.1335381251264476) +station = ('kttd', 0.0022095396490698204) +zone = ('orz009', 0.0048890610089832301) + +[97020] +centroid = (0.78928944477793972, -2.1438511185968494) +station = ('kuao', 0.00094866715970469298) +zone = ('orz007', 0.003958417879621901) + +[97021] +centroid = (0.79213372059345233, -2.114333377248836) +station = ('kdls', 0.0040382509552655439) +zone = ('orz042', 0.006582475229686407) + +[97022] +centroid = (0.7914496562464256, -2.1348860603610555) +station = ('kttd', 0.0037402010143542204) +zone = ('waz023', 0.0072614801000424247) + +[97023] +centroid = (0.790258486485232, -2.1349423821360176) +station = ('kttd', 0.0048754143001822191) +zone = ('orz011', 0.0075194466853034572) + +[97024] +centroid = (0.79493849960799223, -2.1370230589504899) +station = ('kttd', 0.00032003530560591187) +zone = ('waz039', 0.0035167319784728322) + +[97026] +centroid = (0.7872508653050253, -2.1460557312415065) +station = ('kmmv', 0.0026903228530009327) +zone = ('orz007', 0.0014168371395055148) + +[97027] +centroid = (0.79212902565776444, -2.1396484704778023) +station = ('kuao', 0.0031870004713605102) +zone = ('orz006', 0.0029267485117046477) + +[97028] +centroid = (0.79043256562482589, -2.1259400262141082) +station = ('kczk', 0.006666229180918205) +zone = ('orz014', 0.0058387744842292354) + +[97029] +centroid = (0.79040889896016897, -2.1083974775562182) +station = ('kdls', 0.0072795095579504601) +zone = ('orz042', 0.0054147527307990316) + +[97030] +centroid = (0.79428590354737905, -2.1368688242044911) +station = ('kttd', 0.00074095965946946755) +zone = ('waz039', 0.0041737192647540548) + +[97031] +centroid = (0.79633614181969681, -2.1214559786597618) +station = ('kdls', 0.0046882914295821978) +zone = ('orz014', 0.00085446691877275808) + +[97032] +centroid = (0.78848093845524592, -2.1429829220137377) +station = ('kuao', 0.0012979139386486806) +zone = ('orz007', 0.0038938734235875435) + +[97033] +centroid = (0.79028953589262496, -2.1047952052465644) +station = ('kdls', 0.0091278865145823125) +zone = ('orz041', 0.0064068442052694968) + +[97034] +centroid = (0.7925427385036572, -2.1412304543651026) +station = ('kuao', 0.0029626864598352965) +zone = ('orz006', 0.0018297942168457519) + +[97035] +centroid = (0.79261506494785972, -2.1419583090230621) +station = ('kuao', 0.0028986429633258985) +zone = ('orz006', 0.0014782355886277384) + +[97037] +centroid = (0.78656837175432548, -2.1123304723058323) +station = ('kdls', 0.0097431256526962322) +zone = ('orz042', 0.00085169556905220886) + +[97038] +centroid = (0.78706387072896666, -2.1390572751002743) +station = ('kuao', 0.0037160172461520075) +zone = ('orz010', 0.0053274926853692306) + +[97039] +centroid = (0.79327930235458377, -2.1059990810047124) +station = ('kdls', 0.0067780597873938952) +zone = ('orz041', 0.0036670153779861108) + +[97040] +centroid = (0.79616878219772302, -2.1186222795395167) +station = ('kdls', 0.0027033967568536226) +zone = ('orz014', 0.0023966554567235849) + +[97041] +centroid = (0.79301223207244365, -2.1227530200933815) +station = ('kczk', 0.0051144115783818131) +zone = ('orz014', 0.0026013281816117742) + +[97042] +centroid = (0.78897875871779222, -2.1387235332407082) +station = ('kuao', 0.0028960815496264776) +zone = ('orz006', 0.0057646594987925751) + +[97045] +centroid = (0.79098805156585816, -2.1386648029113786) +station = ('kuao', 0.0030814356841495742) +zone = ('orz006', 0.0041997233230259869) + +[97048] +centroid = (0.80363327615582247, -2.1464412221133942) +station = ('kkls', 0.0015998634066682488) +zone = ('orz005', 0.00041964204514813568) + +[97049] +centroid = (0.79144339051441104, -2.1268995035170994) +station = ('kczk', 0.0055961816370377676) +zone = ('orz009', 0.0048847265675302561) + +[97050] +centroid = (0.79715442198620179, -2.1080375208512869) +station = ('kdls', 0.0048016623005667633) +zone = ('waz024', 0.00144362231535004) + +[97051] +centroid = (0.80074519257608479, -2.1458823327803209) +station = ('kspb', 0.0022120515246753353) +zone = ('orz005', 0.0027960907395231677) + +[97053] +centroid = (0.79984912308481837, -2.1447179363698528) +station = ('kspb', 0.0010890435220360876) +zone = ('orz005', 0.003915466544470148) + +[97054] +centroid = (0.8018434235546098, -2.1458759448752582) +station = ('kkls', 0.0031030964521556684) +zone = ('orz005', 0.0017662877690774472) + +[97055] +centroid = (0.79218379408969197, -2.1320099846465719) +station = ('kttd', 0.0042615434035123316) +zone = ('orz009', 0.0053757918303128632) + +[97056] +centroid = (0.7988729429808854, -2.1462210488282554) +station = ('kspb', 0.0012543472280456729) +zone = ('orz005', 0.0045932518914905121) + +[97057] +centroid = (0.78544586324590526, -2.1074846005442547) +station = ('kdls', 0.011873233877197508) +zone = ('orz042', 0.0033701364202784112) + +[97058] +centroid = (0.79476101707635682, -2.1145580883900301) +station = ('kdls', 0.0014069352958513445) +zone = ('waz024', 0.0047144660253744721) + +[97060] +centroid = (0.79467156895219215, -2.1357435231692681) +station = ('kttd', 0.00066668200051658302) +zone = ('waz039', 0.0041045955824159748) + +[97062] +centroid = (0.79184369923164832, -2.1426064544940826) +station = ('kuao', 0.0020829002223747136) +zone = ('orz006', 0.0020905859927148368) + +[97063] +centroid = (0.78932342633847608, -2.1171040525297915) +station = ('kdls', 0.0070332050547207052) +zone = ('orz042', 0.0049788528328949819) + +[97064] +centroid = (0.80039206010852881, -2.1508654921408601) +station = ('kkls', 0.006063391805847888) +zone = ('orz005', 0.0040724483577786715) + +[97065] +centroid = (0.7960035169708517, -2.1056458263641087) +station = ('kdls', 0.0063755015800799819) +zone = ('orz041', 0.0013222435241383088) + +[97067] +centroid = (0.79059634732183315, -2.1302505182276366) +station = ('kttd', 0.0062503166831209154) +zone = ('orz009', 0.0061356384678421675) + +[97068] +centroid = (0.79154781356355775, -2.1409702606802155) +station = ('kuao', 0.0021544164131996114) +zone = ('orz006', 0.0027485606152411199) + +[97070] +centroid = (0.79074075586414316, -2.1427942344683046) +station = ('kuao', 0.00098241801667124911) +zone = ('orz006', 0.0031816513239281822) + +[97071] +centroid = (0.78774032544045469, -2.1437264671816725) +station = ('kuao', 0.0021508892103592973) +zone = ('orz007', 0.0030667485136092474) + +[97080] +centroid = (0.79374631755583236, -2.1361211600595218) +station = ('kttd', 0.0012907506663703257) +zone = ('waz039', 0.0048472664381972435) + +[97086] +centroid = (0.79316793289501408, -2.1385183697871359) +station = ('kttd', 0.0022814207010430319) +zone = ('orz006', 0.003195574810295062) + +[97089] +centroid = (0.7928437728930412, -2.1370357998540297) +station = ('kttd', 0.0021779096388187058) +zone = ('orz006', 0.0042836669199442052) + +[97101] +centroid = (0.78697238056957708, -2.1507465828589214) +station = ('kmmv', 0.0022474440649412459) +zone = ('orz007', 0.0023184847416544054) + +[97102] +centroid = (0.79928496285740369, -2.1635069991795173) +station = ('kast', 0.0062536911422537388) +zone = ('orz001', 0.0022126912107220788) + +[97103] +centroid = (0.80518876594507738, -2.1591574466973298) +station = ('kast', 0.0021075178519685002) +zone = ('waz021', 0.0062250380377335164) + +[97106] +centroid = (0.79701737873333511, -2.1488315377904632) +station = ('khio', 0.0028873329352217653) +zone = ('orz003', 0.0044835864972814568) + +[97107] +centroid = (0.79504149148715242, -2.1621030737825055) +station = ('ktmk', 0.0024638267375966714) +zone = ('orz001', 0.0028580987343109661) + +[97108] +centroid = (0.79009107450338067, -2.1591255944384806) +station = ('ktmk', 0.0029151066963833115) +zone = ('orz003', 0.0077592203336215851) + +[97109] +centroid = (0.7982756738575606, -2.1499176910905642) +station = ('kspb', 0.0038635138653238354) +zone = ('orz003', 0.0038225080843001208) + +[97110] +centroid = (0.80112426063632547, -2.1634298730798718) +station = ('kast', 0.004432088138643285) +zone = ('orz001', 0.0036736099564104803) + +[97111] +centroid = (0.79036448033070561, -2.1501616183068233) +station = ('kmmv', 0.0016599201707742045) +zone = ('orz007', 0.0044168285884913028) + +[97112] +centroid = (0.79013205483421756, -2.1619126758144054) +station = ('ktmk', 0.0026937379136828502) +zone = ('orz001', 0.0077052804515182665) + +[97113] +centroid = (0.79407660366347987, -2.1475287891301895) +station = ('khio', 0.0014760308846069039) +zone = ('orz006', 0.0032158455458229655) + +[97114] +centroid = (0.78867685166378221, -2.1480913785612774) +station = ('kmmv', 0.00072962974267992144) +zone = ('orz007', 0.0023663764096940143) + +[97115] +centroid = (0.79020178073783476, -2.1474436868758624) +station = ('kmmv', 0.0017478280704372846) +zone = ('orz007', 0.0038659927106621233) + +[97116] +centroid = (0.79553554183851449, -2.1496471999630904) +station = ('khio', 0.0026901341282480917) +zone = ('orz003', 0.004306593052877135) + +[97117] +centroid = (0.79641899259928894, -2.1517893647271107) +station = ('kspb', 0.0056572321717752762) +zone = ('orz003', 0.0025802364795816345) + +[97118] +centroid = (0.79518551605702703, -2.1626609333713205) +station = ('ktmk', 0.0027521308131241633) +zone = ('orz001', 0.0028409413631712154) + +[97119] +centroid = (0.79358136648822641, -2.1502493560083207) +station = ('khio', 0.0033721377223405041) +zone = ('orz003', 0.0051366609914997169) + +[97121] +centroid = (0.80585200851412775, -2.1633676869986229) +station = ('kast', 0.00091222852531627481) +zone = ('waz021', 0.005780461610006689) + +[97122] +centroid = (0.7882155087826026, -2.1611675598501439) +station = ('ktmk', 0.0045171947341440298) +zone = ('orz001', 0.0096024481890015362) + +[97123] +centroid = (0.79308040463302654, -2.1464069613001775) +station = ('khio', 0.001952025688041586) +zone = ('orz006', 0.0025682147148945794) + +[97124] +centroid = (0.79534327636811486, -2.1458756656225781) +station = ('khio', 0.00034583342657125161) +zone = ('orz006', 0.0024968534625534155) + +[97125] +centroid = (0.79711119018062981, -2.1501919695825151) +station = ('khio', 0.0036819057995006415) +zone = ('orz003', 0.0035285664061283292) + +[97127] +centroid = (0.78969387247221179, -2.1486984389817061) +station = ('kmmv', 0.00084919124231619078) +zone = ('orz007', 0.0034466669037119414) + +[97128] +centroid = (0.78909700477461486, -2.15167958351716) +station = ('kmmv', 0.001841896635545887) +zone = ('orz007', 0.0039929182405648604) + +[97130] +centroid = (0.79764787892561806, -2.16291206879739) +station = ('ktmk', 0.005118585500329796) +zone = ('orz001', 0.001253961005890511) + +[97131] +centroid = (0.79825954701527202, -2.1610147388208394) +station = ('ktmk', 0.0055316662946310845) +zone = ('orz001', 0.00044927181154628395) + +[97132] +centroid = (0.79105685244497181, -2.1465338467367978) +station = ('kmmv', 0.0028137885191029735) +zone = ('orz006', 0.0038136255616247434) + +[97133] +centroid = (0.79737307683489167, -2.1471514838524932) +station = ('kspb', 0.0023646701261470183) +zone = ('orz006', 0.0045363583165457209) + +[97134] +centroid = (0.79338438862884642, -2.1638075623300033) +station = ('ktmk', 0.0021482226011355376) +zone = ('orz001', 0.0048124721196538154) + +[97135] +centroid = (0.78927148533993674, -2.1635578231673356) +station = ('ktmk', 0.0039324756718739379) +zone = ('orz001', 0.0087139865513634774) + +[97136] +centroid = (0.79640407003418434, -2.1628254306533212) +station = ('ktmk', 0.0039171411128901094) +zone = ('orz001', 0.0018432577703162152) + +[97137] +centroid = (0.78923001631690937, -2.1458535523009554) +station = ('kmmv', 0.0022999918204168728) +zone = ('orz007', 0.0031413055055460009) + +[97138] +centroid = (0.80021703849113879, -2.156741352507209) +station = ('kast', 0.0064668027730413677) +zone = ('orz003', 0.0030512229392052406) + +[97140] +centroid = (0.79156123514550569, -2.1444147377721965) +station = ('kuao', 0.0021733723171228989) +zone = ('orz006', 0.0025745706302183098) + +[97141] +centroid = (0.79431229292566918, -2.1597290594806502) +station = ('ktmk', 0.0017814746676387181) +zone = ('orz001', 0.003640599647340953) + +[97144] +centroid = (0.79834087935841502, -2.1519952088590908) +station = ('kspb', 0.0052981654812187017) +zone = ('orz003', 0.0024651993174167521) + +[97145] +centroid = (0.80025351587250548, -2.163348313843926) +station = ('kast', 0.0052795450194669993) +zone = ('orz001', 0.0028842631606825521) + +[97146] +centroid = (0.80511513050393579, -2.1632642413338572) +station = ('kast', 0.00083561517503572208) +zone = ('waz021', 0.0064625424822833243) + +[97147] +centroid = (0.79740896080431256, -2.1621378931010828) +station = ('ktmk', 0.0047610093138016766) +zone = ('orz001', 0.00081229407964832133) + +[97148] +centroid = (0.7916534757964736, -2.1510917391717959) +station = ('kmmv', 0.0031053146528187158) +zone = ('orz007', 0.0058611304555419418) + +[97149] +centroid = (0.78736933825465072, -2.1631410559952515) +station = ('ktmk', 0.0055880551369525524) +zone = ('orz002', 0.010418327884694645) + +[97201] +centroid = (0.79426192272345653, -2.1413583171861039) +station = ('kpdx', 0.0017224999502353391) +zone = ('orz006', 0.0011644746154665204) + +[97202] +centroid = (0.79382358328181823, -2.1405493047179269) +station = ('kpdx', 0.0018378196713562821) +zone = ('orz006', 0.00168356647464022) + +[97203] +centroid = (0.79593208064456755, -2.1421805592500109) +station = ('kvuo', 0.0010974000069519864) +zone = ('orz006', 0.0020818024132653796) + +[97204] +centroid = (0.79444544409430384, -2.1410642641137279) +station = ('kpdx', 0.0014499413087632543) +zone = ('orz006', 0.0014198789050607009) + +[97205] +centroid = (0.79448368425821503, -2.1416975568328138) +station = ('kpdx', 0.0017364603215098519) +zone = ('orz006', 0.0010408960385559652) + +[97206] +centroid = (0.79381820766772215, -2.1397493156019829) +station = ('kpdx', 0.0017611256194449609) +zone = ('orz006', 0.0022439758472114278) + +[97208] +centroid = (0.79462512574079669, -2.1411521414415655) +station = ('kpdx', 0.0013572093046022732) +zone = ('orz006', 0.0014415056217822659) + +[97209] +centroid = (0.79466807829368813, -2.1412387097724648) +station = ('kpdx', 0.0013720578453719119) +zone = ('orz006', 0.0014111452371958801) + +[97210] +centroid = (0.79489600084070622, -2.1419842271624541) +station = ('kvuo', 0.0015738954078391347) +zone = ('orz006', 0.0011858324537000584) + +[97211] +centroid = (0.79554083018614796, -2.1404247580225046) +station = ('kpdx', 0.00045730838267642415) +zone = ('orz006', 0.0023970386178399465) + +[97212] +centroid = (0.79489687350533211, -2.1405323226643049) +station = ('kpdx', 0.00086472986425758169) +zone = ('orz006', 0.0019532321970689168) + +[97213] +centroid = (0.79479142071192665, -2.1397739072911435) +station = ('kpdx', 0.00078783000758446192) +zone = ('orz006', 0.0023877525632800094) + +[97214] +centroid = (0.79438088436527254, -2.1405243988695006) +station = ('kpdx', 0.001308619070690529) +zone = ('orz006', 0.0017590353077994278) + +[97215] +centroid = (0.79438872089361401, -2.1397846061594579) +station = ('kpdx', 0.0011905544720709229) +zone = ('orz006', 0.0022651509654929248) + +[97216] +centroid = (0.79436718353064439, -2.139047658336096) +station = ('kpdx', 0.0013143825540267236) +zone = ('orz006', 0.0027690484799686292) + +[97217] +centroid = (0.79590181663533799, -2.1415329199244733) +station = ('kvuo', 0.00067220194342856084) +zone = ('orz006', 0.0022148426393431633) + +[97218] +centroid = (0.7954563387970589, -2.1397893010951461) +station = ('kpdx', 0.00012339828746039993) +zone = ('orz006', 0.0026926479810764218) + +[97219] +centroid = (0.7933259899120747, -2.1414932660438679) +station = ('kpdx', 0.0025551763153829148) +zone = ('orz006', 0.0011799949545392937) + +[97220] +centroid = (0.79499789316243763, -2.1390632615796088) +station = ('kpdx', 0.00076506243895627058) +zone = ('orz006', 0.0029264884166189829) + +[97221] +centroid = (0.79409475508770055, -2.1420223277000248) +station = ('kpdx', 0.0021643120882907482) +zone = ('orz006', 0.00067095296762187699) + +[97222] +centroid = (0.79309410546765469, -2.1400891661139312) +station = ('kpdx', 0.002494960548454907) +zone = ('orz006', 0.0021678464492768963) + +[97223] +centroid = (0.79308267356105411, -2.1428560016705327) +station = ('khio', 0.0028577260101343939) +zone = ('orz006', 0.0008403421284325105) + +[97224] +centroid = (0.79247549096757786, -2.1431780498241104) +station = ('kuao', 0.0027362707914321853) +zone = ('orz006', 0.0014542036410744269) + +[97225] +centroid = (0.79415235095301651, -2.1427406179536832) +station = ('kvuo', 0.0024869668222435243) +zone = ('orz006', 0.00027307132696802736) + +[97227] +centroid = (0.79488203820669012, -2.1411367650908555) +station = ('kpdx', 0.0011818886278778093) +zone = ('orz006', 0.0015914587461998714) + +[97229] +centroid = (0.79501546862800521, -2.1434262007371592) +station = ('khio', 0.001720062189924925) +zone = ('orz006', 0.0011452565111478422) + +[97230] +centroid = (0.79513285947349432, -2.1381202776380488) +station = ('kttd', 0.0010912685100814489) +zone = ('waz039', 0.0031831558606095402) + +[97231] +centroid = (0.79739955347964442, -2.1436868482076519) +station = ('kspb', 0.0014732691783499799) +zone = ('orz006', 0.0035172976204533597) + +[97232] +centroid = (0.79462971595672938, -2.1405403337255717) +station = ('kpdx', 0.0010907810571339103) +zone = ('orz006', 0.0018293898274068081) + +[97233] +centroid = (0.79438866853373646, -2.1380852139733761) +station = ('kttd', 0.0012212538875900493) +zone = ('orz006', 0.0034393337670597041) + +[97236] +centroid = (0.79382621872898873, -2.1381991141603613) +station = ('kttd', 0.0016336169505928437) +zone = ('orz006', 0.0033297945571580316) + +[97239] +centroid = (0.7939929151258468, -2.1413873420115643) +station = ('kpdx', 0.0019478180217193696) +zone = ('orz006', 0.0010955242784882265) + +[97266] +centroid = (0.79382735319300257, -2.1390442549440545) +station = ('kpdx', 0.0018248869087700854) +zone = ('orz006', 0.0027375258990821522) + +[97267] +centroid = (0.79252655930149118, -2.139998234459902) +station = ('kpdx', 0.0030567473604503495) +zone = ('orz006', 0.0024943890901833626) + +[97301] +centroid = (0.7845042057545768, -2.1468187717371858) +station = ('ksle', 0.0008525688724068056) +zone = ('orz007', 0.0019121948610125031) + +[97302] +centroid = (0.78370060380708106, -2.1478398591627723) +station = ('ksle', 0.00076992820008840431) +zone = ('orz007', 0.0026424998659313461) + +[97303] +centroid = (0.78592783591884352, -2.1471683960929453) +station = ('ksle', 0.0022937291162889676) +zone = ('orz007', 0.00050593109442764706) + +[97304] +centroid = (0.78551328531490983, -2.1487043556478702) +station = ('ksle', 0.0023161188027568157) +zone = ('orz007', 0.0011401015865642628) + +[97305] +centroid = (0.78564835634572172, -2.1455111361550063) +station = ('ksle', 0.0021810176685608585) +zone = ('orz007', 0.0016220795234293006) + +[97306] +centroid = (0.78265632095573523, -2.1484086968725826) +station = ('ksle', 0.0015383638863961544) +zone = ('orz007', 0.0037262392496543758) + +[97317] +centroid = (0.78369826506588336, -2.1451384210932432) +station = ('ksle', 0.0011459479621983722) +zone = ('orz007', 0.0031574148696306326) + +[97321] +centroid = (0.77934972487466192, -2.1491901680451631) +station = ('kcvo', 0.0032201169880936948) +zone = ('orz008', 0.0042821686000026884) + +[97322] +centroid = (0.77889773695827291, -2.1470623847941792) +station = ('kcvo', 0.0039842039035968219) +zone = ('orz008', 0.0041177687020672923) + +[97324] +centroid = (0.77431575897959737, -2.1576304755880522) +station = ('kcvo', 0.004845890300258132) +zone = ('orz004', 0.00083482052852980673) + +[97325] +centroid = (0.7824977926997766, -2.1441759069173534) +station = ('ksle', 0.0021622622088723147) +zone = ('orz007', 0.0045362439854825937) + +[97326] +centroid = (0.77875685398105199, -2.1572760864834351) +station = ('kcvo', 0.0044870272904506498) +zone = ('orz004', 0.0045485117369557879) + +[97327] +centroid = (0.7744904664377219, -2.1458401481723) +station = ('kcvo', 0.0047184124884885274) +zone = ('orz008', 0.002457256035677383) + +[97329] +centroid = (0.77512278177242699, -2.1360143982691775) +station = ('ksle', 0.011451354140047925) +zone = ('orz010', 0.0068077703559588539) + +[97330] +centroid = (0.77915841933535079, -2.1512276654139413) +station = ('kcvo', 0.002509569653779113) +zone = ('orz008', 0.0043428839668009644) + +[97331] +centroid = (0.77779906964743506, -2.1516492147881752) +station = ('kcvo', 0.0011281353597198255) +zone = ('orz008', 0.0032492215211916376) + +[97333] +centroid = (0.77611311649659365, -2.1518819718972213) +station = ('kcvo', 0.00057328146395393574) +zone = ('orz008', 0.0021926209268670672) + +[97338] +centroid = (0.7841209663574239, -2.1528195453181) +station = ('kmmv', 0.0054498837105269819) +zone = ('orz007', 0.0043120840507347609) + +[97341] +centroid = (0.78206948890133721, -2.1651019334098671) +station = ('konp', 0.0039977643578501809) +zone = ('orz002', 0.0050909721761141693) + +[97342] +centroid = (0.78084735699921326, -2.1271885300412299) +station = ('krdm', 0.012612600565966968) +zone = ('orz011', 0.0034219744135452956) + +[97343] +centroid = (0.77798505193252754, -2.1598710071087148) +station = ('konp', 0.0038121750850018412) +zone = ('orz002', 0.0034485905912053022) + +[97344] +centroid = (0.78311356231317275, -2.1548640589104715) +station = ('kcvo', 0.0068235161278389547) +zone = ('orz007', 0.006073583758937795) + +[97345] +centroid = (0.77512815738652308, -2.1394037055035029) +station = ('ksle', 0.010000733692976969) +zone = ('orz010', 0.0068148346592235409) + +[97346] +centroid = (0.78136224658184417, -2.1356405661966926) +station = ('kuao', 0.009763872811124865) +zone = ('orz010', 0.0015074913150863883) + +[97347] +centroid = (0.78674405659683122, -2.1582111291768986) +station = ('ktmk', 0.0062750951221096597) +zone = ('orz007', 0.007513228079450188) + +[97348] +centroid = (0.77463461318064408, -2.1488888369498063) +station = ('kcvo', 0.0028596371826924241) +zone = ('orz008', 0.00048118699300773061) + +[97350] +centroid = (0.77896674727689685, -2.1269240253930901) +station = ('kbdn', 0.012566766487828243) +zone = ('orz011', 0.0052633637255020144) + +[97351] +centroid = (0.78219860835939981, -2.1491594327970351) +station = ('ksle', 0.0022404822583847977) +zone = ('orz007', 0.004285213188133098) + +[97352] +centroid = (0.78101126086926809, -2.1472184346826002) +station = ('ksle', 0.002661947188488935) +zone = ('orz007', 0.0053323623415439114) + +[97355] +centroid = (0.77723660238939485, -2.1436248366593285) +station = ('ksle', 0.0067908314388149095) +zone = ('orz008', 0.0045205536890423241) + +[97357] +centroid = (0.78108140565190565, -2.161164365897613) +station = ('konp', 0.0041687922353270601) +zone = ('orz002', 0.0047271569321188879) + +[97358] +centroid = (0.78197798128865514, -2.1365274727093864) +station = ('kuao', 0.0089166772639362544) +zone = ('orz010', 0.00081735921445471357) + +[97360] +centroid = (0.78131873552359188, -2.1380180537037594) +station = ('ksle', 0.0066209574775757101) +zone = ('orz010', 0.00057000063899807058) + +[97361] +centroid = (0.78133193021273695, -2.1527182987681921) +station = ('kcvo', 0.0047164036063877431) +zone = ('orz007', 0.006184401758725107) + +[97362] +centroid = (0.78650543518149862, -2.1427597467622852) +station = ('kuao', 0.003256506426799748) +zone = ('orz007', 0.0034156233163586797) + +[97364] +centroid = (0.78537826664397559, -2.1639788140362088) +station = ('konp', 0.0073586805602599411) +zone = ('orz002', 0.0083904958879592872) + +[97365] +centroid = (0.77957569265291771, -2.1643964713262114) +station = ('konp', 0.0016137036481466572) +zone = ('orz002', 0.002580738828968498) + +[97366] +centroid = (0.7780203948498805, -2.1651433675263099) +station = ('konp', 7.63427426700538e-05) +zone = ('orz002', 0.0011202393292423177) + +[97367] +centroid = (0.7839103225700006, -2.1637583265918043) +station = ('konp', 0.005929466997229807) +zone = ('orz002', 0.0069345958121753556) + +[97368] +centroid = (0.78582432044090778, -2.1625169437080309) +station = ('ktmk', 0.0069984324568494721) +zone = ('orz002', 0.0089404682043818084) + +[97369] +centroid = (0.78123623380985008, -2.1651117770668487) +station = ('konp', 0.0031645678698933662) +zone = ('orz002', 0.004261885477125962) + +[97370] +centroid = (0.77778543862597693, -2.1545295141994489) +station = ('kcvo', 0.0023041418383232168) +zone = ('orz004', 0.0045990942168309904) + +[97371] +centroid = (0.78523579541713517, -2.1500843002209593) +station = ('ksle', 0.0028387530244915289) +zone = ('orz007', 0.0020792325846091119) + +[97373] +centroid = (0.78639270436511222, -2.1427714928281514) +station = ('kuao', 0.0033693660980245563) +zone = ('orz007', 0.0034038235744594772) + +[97374] +centroid = (0.77974158619831968, -2.1428827226613807) +station = ('ksle', 0.0047802195531962922) +zone = ('orz010', 0.0042568755787626691) + +[97375] +centroid = (0.78500230526980352, -2.1397097315345475) +station = ('kuao', 0.0052010623726251757) +zone = ('orz010', 0.0034898377014339027) + +[97376] +centroid = (0.77645150093197024, -2.1639250928018323) +station = ('konp', 0.0018660405292698283) +zone = ('orz002', 0.00068463307776894409) + +[97377] +centroid = (0.77603087658223957, -2.1486049940535543) +station = ('kcvo', 0.0022993163976741792) +zone = ('orz008', 0.0010479303143924041) + +[97378] +centroid = (0.78663188428580555, -2.1541050675786564) +station = ('kmmv', 0.0042011079360197183) +zone = ('orz007', 0.0046117962250568642) + +[97380] +centroid = (0.78166347295744576, -2.1629860009445045) +station = ('konp', 0.0039269059240616159) +zone = ('orz002', 0.0047910586042386469) + +[97381] +centroid = (0.7843415410682909, -2.141880537151593) +station = ('ksle', 0.0035196146538522843) +zone = ('orz010', 0.0039064543771434694) + +[97383] +centroid = (0.7818108834660692, -2.1419005560781135) +station = ('ksle', 0.0039036272035646202) +zone = ('orz010', 0.0030092402657589117) + +[97384] +centroid = (0.78175030308773252, -2.140103163654532) +station = ('ksle', 0.0050854893361200349) +zone = ('orz010', 0.0017355345706381864) + +[97385] +centroid = (0.78305687401906798, -2.1419300172358873) +station = ('ksle', 0.0034702819866840586) +zone = ('orz010', 0.0032676991816439618) + +[97386] +centroid = (0.77422292491668376, -2.1419891140843594) +station = ('kcvo', 0.0073542566107435538) +zone = ('orz008', 0.0052099734040308128) + +[97388] +centroid = (0.78371416501536906, -2.1645199708240823) +station = ('konp', 0.005663500827667459) +zone = ('orz002', 0.0067180232331329626) + +[97389] +centroid = (0.77725588827762937, -2.1483220063686357) +station = ('kcvo', 0.0024785922557051627) +zone = ('orz008', 0.002272894530802246) + +[97390] +centroid = (0.77333718777458915, -2.161213619089104) +station = ('konp', 0.0055327858771178707) +zone = ('orz004', 0.0019977017873095229) + +[97391] +centroid = (0.77884511528132538, -2.1624344594475819) +station = ('konp', 0.0021294422660963126) +zone = ('orz002', 0.0023659934341454291) + +[97392] +centroid = (0.78181632889333541, -2.1455131781902312) +station = ('ksle', 0.0020366378791641677) +zone = ('orz007', 0.0047537921944337874) + +[97394] +centroid = (0.77556752657242012, -2.1628183969764354) +station = ('konp', 0.0030352261786372042) +zone = ('orz002', 0.0018687340612168421) + +[97396] +centroid = (0.78721320109976733, -2.1563360696016036) +station = ('kmmv', 0.0053831377020522016) +zone = ('orz007', 0.0062382234577690399) + +[97401] +centroid = (0.76913148532935094, -2.148154402400567) +station = ('keug', 0.0020559745550718074) +zone = ('orz012', 0.0044335211979865501) + +[97402] +centroid = (0.76877800379594452, -2.1507851371820981) +station = ('keug', 0.001504605949620041) +zone = ('orz008', 0.0063935077243032837) + +[97403] +centroid = (0.76857006526886185, -2.1476795506709769) +station = ('keug', 0.002666090935902068) +zone = ('orz012', 0.0038363097015999335) + +[97404] +centroid = (0.76978621069165143, -2.1490782226269398) +station = ('keug', 0.0011541113984302508) +zone = ('orz008', 0.0052818792706330851) + +[97405] +centroid = (0.76688994151772205, -2.1501192591658769) +station = ('keug', 0.0033953120949386248) +zone = ('orz012', 0.0050192628540896272) + +[97406] +centroid = (0.74378710547553573, -2.1645792422054799) +station = ('kbok', 0.010065355005608944) +zone = ('orz024', 0.0053114732401301924) + +[97408] +centroid = (0.77045032592532792, -2.1477831185087903) +station = ('keug', 0.001984040767294159) +zone = ('orz008', 0.0047247281733077216) + +[97410] +centroid = (0.74698241936350196, -2.1493358157712419) +station = ('ksxt', 0.0044645253864442781) +zone = ('orz026', 0.0069988522535476411) + +[97411] +centroid = (0.75181167559060014, -2.1704806541920783) +station = ('koth', 0.0061123899462620368) +zone = ('orz021', 0.0031696989017281282) + +[97412] +centroid = (0.77152164392678713, -2.1563207281574783) +station = ('keug', 0.0043330397753281102) +zone = ('orz004', 0.0033295742959018825) + +[97413] +centroid = (0.7701226752648509, -2.130563124149961) +station = ('kbdn', 0.010948227557765287) +zone = ('orz013', 0.0054165617064573903) + +[97414] +centroid = (0.74982056907333994, -2.1677516573736604) +station = ('koth', 0.007965678478124065) +zone = ('orz021', 0.0038753200618363167) + +[97415] +centroid = (0.73451109938020642, -2.1672584447803391) +station = ('kbok', 0.0015028573711498288) +zone = ('orz022', 0.0047831838532007998) + +[97416] +centroid = (0.75108710215163466, -2.1587407493384161) +station = ('krbg', 0.0055211728514992942) +zone = ('orz023', 0.0049654203729310254) + +[97417] +centroid = (0.74957800321389778, -2.1507812450978658) +station = ('krbg', 0.0052127591242928052) +zone = ('orz023', 0.0061318503078778815) + +[97419] +centroid = (0.77110297434581865, -2.153922506138898) +station = ('keug', 0.0025674137580458641) +zone = ('orz004', 0.0047604612240549349) + +[97420] +centroid = (0.75661702080694604, -2.1665924271377777) +station = ('koth', 0.0018395792557745351) +zone = ('orz021', 0.0029773732732794444) + +[97423] +centroid = (0.75387304906354569, -2.1672354587940901) +station = ('koth', 0.0040103887802785754) +zone = ('orz021', 0.00030802554247918659) + +[97424] +centroid = (0.76322551803340488, -2.1470102343561295) +station = ('keug', 0.0074901060695161661) +zone = ('orz012', 0.0043099376538738967) + +[97426] +centroid = (0.76618132038811981, -2.1472778107837529) +station = ('keug', 0.0047143783645188387) +zone = ('orz012', 0.0029806388461411332) + +[97429] +centroid = (0.74993829153138702, -2.1478632640280417) +station = ('krbg', 0.0058929818021883958) +zone = ('orz025', 0.0065291674115219994) + +[97430] +centroid = (0.77099640454169194, -2.1590629196650415) +station = ('kcvo', 0.0077420357588382487) +zone = ('orz004', 0.0033487399503974867) + +[97431] +centroid = (0.76566744309645507, -2.1439931709446696) +station = ('keug', 0.0065844779949521086) +zone = ('orz012', 0.0010441699401168721) + +[97434] +centroid = (0.76135832989303631, -2.1418115093796763) +station = ('krbg', 0.010515985747145667) +zone = ('orz012', 0.0052596508593196027) + +[97435] +centroid = (0.76253747433568364, -2.1524882643727792) +station = ('keug', 0.0078612633118193501) +zone = ('orz023', 0.0076595126491062248) + +[97436] +centroid = (0.76166194736971315, -2.1569611767264978) +station = ('krbg', 0.0076963204016985342) +zone = ('orz023', 0.0068431105042449248) + +[97437] +centroid = (0.76964506591504278, -2.1536039311905313) +station = ('keug', 0.0022897047414292852) +zone = ('orz004', 0.005990783528532031) + +[97438] +centroid = (0.766971710193178, -2.1412127916330723) +station = ('keug', 0.0074709831397614971) +zone = ('orz012', 0.001477190870672186) + +[97439] +centroid = (0.76952739581687324, -2.1650506207298585) +station = ('konp', 0.0085461072155885599) +zone = ('orz004', 0.0065752723651020294) + +[97441] +centroid = (0.76401349928409523, -2.1669516158978386) +station = ('koth', 0.0063588829357052899) +zone = ('orz021', 0.010362876778322726) + +[97442] +centroid = (0.74650390244248266, -2.1541447563658469) +station = ('ksxt', 0.003080865488427024) +zone = ('orz024', 0.0078294410220918556) + +[97443] +centroid = (0.75482573703574662, -2.1470270942367038) +station = ('krbg', 0.0042598496575743522) +zone = ('orz025', 0.003901801981750449) + +[97444] +centroid = (0.74187148444842432, -2.1700951807734827) +station = ('kbok', 0.0075586027417988734) +zone = ('orz022', 0.0029020925457011394) + +[97446] +centroid = (0.77249541547635225, -2.1477087674826554) +station = ('keug', 0.0030089586179232412) +zone = ('orz008', 0.0027798283404932289) + +[97447] +centroid = (0.75320116711469787, -2.1329749248301217) +station = ('kmfr', 0.015994548770684319) +zone = ('orz027', 0.00088510416116476844) + +[97448] +centroid = (0.77163034303260125, -2.1516323549076013) +station = ('keug', 0.0015693708940079647) +zone = ('orz008', 0.0038583759489998703) + +[97449] +centroid = (0.76032418740464458, -2.1649152006331964) +station = ('koth', 0.0036867917923848375) +zone = ('orz021', 0.0068344419556608561) + +[97450] +centroid = (0.74884990420984321, -2.17113822444106) +station = ('koth', 0.0091083593974559222) +zone = ('orz021', 0.0056961756452605979) + +[97451] +centroid = (0.76471997365871747, -2.1514327939609279) +station = ('keug', 0.0055893431816870821) +zone = ('orz012', 0.0062259393682377543) + +[97452] +centroid = (0.76574835656057771, -2.1423930705397334) +station = ('keug', 0.0074009209381147648) +zone = ('orz012', 0.00095743816855280823) + +[97453] +centroid = (0.76799368773668331, -2.1618236814758465) +station = ('konp', 0.010368234982981651) +zone = ('orz004', 0.0067067839010985569) + +[97454] +centroid = (0.77181091479701258, -2.1436421154189236) +station = ('keug', 0.0051785172961198046) +zone = ('orz008', 0.0051304939841983034) + +[97455] +centroid = (0.76739643606665087, -2.1453539168959868) +station = ('keug', 0.0047056583977061247) +zone = ('orz012', 0.0017984017222358803) + +[97456] +centroid = (0.77386586545831071, -2.1531501804915978) +station = ('kcvo', 0.0029907145783548239) +zone = ('orz008', 0.0030800055436507028) + +[97457] +centroid = (0.75161747280473079, -2.150760370960012) +station = ('krbg', 0.0033221630829194755) +zone = ('orz023', 0.0044240307892492517) + +[97458] +centroid = (0.75134432877679358, -2.1643572712312116) +station = ('koth', 0.0071159679871965129) +zone = ('orz021', 0.002980329623523994) + +[97459] +centroid = (0.75894275930169108, -2.1673975998816002) +station = ('koth', 0.0014547760216932263) +zone = ('orz021', 0.0053024461661496311) + +[97461] +centroid = (0.76983905926140184, -2.1551284064789784) +station = ('keug', 0.0033246867559053681) +zone = ('orz004', 0.0052122404510080329) + +[97462] +centroid = (0.75904315064026584, -2.1533731986634175) +station = ('krbg', 0.0044944321487308016) +zone = ('orz023', 0.0041084442148911823) + +[97463] +centroid = (0.76341890051452588, -2.1360590263381511) +station = ('keug', 0.01247593110204325) +zone = ('orz013', 0.0024697891483495644) + +[97465] +centroid = (0.7463511512263481, -2.1701720625270333) +station = ('koth', 0.011472323615404881) +zone = ('orz022', 0.0073624587900581375) + +[97466] +centroid = (0.74785449057755338, -2.1656958340477357) +station = ('koth', 0.010129080817726708) +zone = ('orz021', 0.0058674513971154977) + +[97467] +centroid = (0.76473266220237945, -2.1611329674243693) +station = ('koth', 0.0088072207271657141) +zone = ('orz004', 0.0097523993274394611) + +[97469] +centroid = (0.7490084848256795, -2.1543797824029203) +station = ('ksxt', 0.0055713360303329702) +zone = ('orz023', 0.006028580712083351) + +[97470] +centroid = (0.75486898629461119, -2.1509839650904854) +station = ('krbg', 0.0014028248544726231) +zone = ('orz023', 0.0026478318280734035) + +[97471] +centroid = (0.75430224297990356, -2.155267666299995) +station = ('krbg', 0.0017711738751779479) +zone = ('orz023', 0.00087423494626925175) + +[97473] +centroid = (0.76228843330471663, -2.1616355873423592) +station = ('koth', 0.0067636109287537508) +zone = ('orz023', 0.0088654925230675138) + +[97476] +centroid = (0.74773795494339779, -2.1712383888868318) +station = ('koth', 0.010212983514980348) +zone = ('orz021', 0.0066950415884190198) + +[97477] +centroid = (0.76896527762468347, -2.1469573857863788) +station = ('keug', 0.0028835197294884178) +zone = ('orz012', 0.0036581851756226271) + +[97478] +centroid = (0.76950191400979429, -2.1440016357915419) +station = ('keug', 0.004754750337419884) +zone = ('orz012', 0.0030357568965412225) + +[97479] +centroid = (0.75730447109272159, -2.1503905880513923) +station = ('krbg', 0.0032784402352865512) +zone = ('orz023', 0.003818994651409017) + +[97480] +centroid = (0.77007898967367361, -2.1611568958884146) +station = ('konp', 0.0085056314462174931) +zone = ('orz004', 0.0045836991688794236) + +[97481] +centroid = (0.75250357646596822, -2.1566331944534629) +station = ('krbg', 0.0034354997719903782) +zone = ('orz023', 0.002928685600350968) + +[97484] +centroid = (0.74944474732550803, -2.1441422220627899) +station = ('krbg', 0.0081716635175454709) +zone = ('orz025', 0.0055103263722895007) + +[97486] +centroid = (0.75718182680618384, -2.1560338832949131) +station = ('krbg', 0.0034892335508131477) +zone = ('orz023', 0.0023832032216083462) + +[97487] +centroid = (0.76774401838718553, -2.1535227035671434) +station = ('keug', 0.0033159186928244234) +zone = ('orz004', 0.007603686467812577) + +[97488] +centroid = (0.770189975160808, -2.1365880007278455) +station = ('kcvo', 0.012606664112339766) +zone = ('orz013', 0.0054206884815134176) + +[97489] +centroid = (0.77081984703456008, -2.1401346319409456) +station = ('kcvo', 0.010133074286376656) +zone = ('orz012', 0.0048159476250974331) + +[97490] +centroid = (0.76801711005524509, -2.157436674227911) +station = ('keug', 0.0054464746287324972) +zone = ('orz004', 0.0063975354957697093) + +[97492] +centroid = (0.76302880197341261, -2.137762816753948) +station = ('keug', 0.01170913191794975) +zone = ('orz013', 0.0036582313375548643) + +[97493] +centroid = (0.76601781794379309, -2.164642981629763) +station = ('koth', 0.008729753165861746) +zone = ('orz004', 0.0093197388872771243) + +[97494] +centroid = (0.75625821601932108, -2.152481073616261) +station = ('krbg', 0.0017169404337562895) +zone = ('orz023', 0.0019757341440440504) + +[97495] +centroid = (0.75541115537345072, -2.1522245451228028) +station = ('krbg', 0.00096658104765800633) +zone = ('orz023', 0.0017789739243320225) + +[97496] +centroid = (0.75165189069758009, -2.1550052385936653) +station = ('krbg', 0.0033047973165491913) +zone = ('orz023', 0.0033948904057389331) + +[97497] +centroid = (0.74465704738789973, -2.1541812686537987) +station = ('ksxt', 0.0013732183028368993) +zone = ('orz024', 0.0063194691787905044) + +[97498] +centroid = (0.77291226991489859, -2.1646040433341511) +station = ('konp', 0.0051791625178461628) +zone = ('orz002', 0.0040844703126674108) + +[97499] +centroid = (0.76087567654168975, -2.1510787713754538) +station = ('krbg', 0.0064434515031596114) +zone = ('orz023', 0.0063799088200088725) + +[97501] +centroid = (0.73768040786231781, -2.1450241718404075) +station = ('kmfr', 0.0020607151737488463) +zone = ('orz026', 0.0035490883223466474) + +[97502] +centroid = (0.74027892386585714, -2.1459518841510126) +station = ('kmfr', 0.0010639341812651647) +zone = ('orz026', 0.0016484315558184066) + +[97503] +centroid = (0.74359213474479546, -2.1454236253463117) +station = ('kmfr', 0.0038982216656062788) +zone = ('orz026', 0.0026332370516357574) + +[97504] +centroid = (0.73876252945184684, -2.143263693130506) +station = ('kmfr', 0.0014455806890016768) +zone = ('orz026', 0.0024665093639389918) + +[97520] +centroid = (0.7362013809475928, -2.1394108264468508) +station = ('kmfr', 0.0052785878059577584) +zone = ('orz028', 0.0031393770314716136) + +[97522] +centroid = (0.74303910971800857, -2.1385894221409849) +station = ('kmfr', 0.0056030755671484592) +zone = ('orz028', 0.0043029543263647836) + +[97523] +centroid = (0.73518668142706833, -2.1566487453370984) +station = ('ksxt', 0.008714820865263883) +zone = ('orz024', 0.0051948414634169979) + +[97524] +centroid = (0.74119705431886873, -2.1406066387838552) +station = ('kmfr', 0.0033718843169499393) +zone = ('orz028', 0.003447073371770781) + +[97525] +centroid = (0.74090474657574468, -2.147817920374075) +station = ('kmfr', 0.0025725177721415186) +zone = ('orz026', 0.0027825703284979886) + +[97526] +centroid = (0.74238721178909617, -2.1526599873178829) +station = ('ksxt', 0.0011806315757333387) +zone = ('orz024', 0.0058109198744422316) + +[97527] +centroid = (0.73951593573005514, -2.1539741155248793) +station = ('ksxt', 0.0040397951364663006) +zone = ('orz024', 0.0042761505440375878) + +[97530] +centroid = (0.73569376938794273, -2.1477585268196298) +station = ('kmfr', 0.0046196112950078298) +zone = ('orz026', 0.0061095192546080524) + +[97531] +centroid = (0.73653356946412485, -2.1580202076100226) +station = ('ksxt', 0.0078475661598952015) +zone = ('orz024', 0.0035521433266282637) + +[97532] +centroid = (0.74305225204727599, -2.1558483024355488) +station = ('ksxt', 0.002035499946254724) +zone = ('orz024', 0.0043039707087201414) + +[97534] +centroid = (0.73511480876847124, -2.160478242062069) +station = ('kbok', 0.0065695354993179529) +zone = ('orz024', 0.0047647219132569835) + +[97535] +centroid = (0.73771119547032304, -2.1434641092885123) +station = ('kmfr', 0.0022205476536357911) +zone = ('orz026', 0.003474552324320757) + +[97536] +centroid = (0.74668515488530229, -2.1379357963361127) +station = ('kmfr', 0.0085635760313635366) +zone = ('orz026', 0.0071325831793303072) + +[97537] +centroid = (0.74257490449685559, -2.149160392728124) +station = ('ksxt', 0.0030864715448294679) +zone = ('orz026', 0.0040169798299022645) + +[97538] +centroid = (0.73777008287928536, -2.1568777674415447) +station = ('ksxt', 0.006363999393038498) +zone = ('orz024', 0.00296892016637896) + +[97539] +centroid = (0.74308858980230252, -2.1430162403491582) +station = ('kmfr', 0.003586835558799711) +zone = ('orz026', 0.0020791553836756373) + +[97540] +centroid = (0.73641755742874482, -2.1435741872044356) +station = ('kmfr', 0.0034177027053440552) +zone = ('orz026', 0.0047536956660250238) + +[97541] +centroid = (0.7457202147017522, -2.1421866329958079) +station = ('kmfr', 0.0062751217825337885) +zone = ('orz026', 0.0047669276063836453) + +[97543] +centroid = (0.73958437009002587, -2.1565657549311656) +station = ('ksxt', 0.0046626674993855846) +zone = ('orz024', 0.0023635353886445041) + +[97544] +centroid = (0.73529995329552278, -2.1517949672340095) +station = ('kmfr', 0.0068588675591928928) +zone = ('orz024', 0.0074372785579156567) + +[97601] +centroid = (0.74076637687264657, -2.1306425540842193) +station = ('klmt', 0.006908786206890157) +zone = ('orz028', 0.0051807114416925386) + +[97603] +centroid = (0.73549724531416816, -2.1237220094407965) +station = ('klmt', 0.00049665503595799942) +zone = ('orz029', 0.0036982406522821842) + +[97604] +centroid = (0.74968684194605217, -2.1330225548654087) +station = ('kmfr', 0.013157611246728792) +zone = ('orz027', 0.0041401328101798489) + +[97620] +centroid = (0.73660191655763296, -2.0906929099838649) +station = ('klkv', 0.0079432317970146889) +zone = ('caz070', 0.011044523067292481) + +[97621] +centroid = (0.74122785938016633, -2.1169736415280829) +station = ('klmt', 0.0078007586579703653) +zone = ('orz030', 0.0054544108161992686) + +[97622] +centroid = (0.74036400866689178, -2.1123285873502398) +station = ('klmt', 0.010066959189361326) +zone = ('orz030', 0.0068927436677742602) + +[97623] +centroid = (0.73656107585313635, -2.1165684458889396) +station = ('klmt', 0.0058421718372341008) +zone = ('caz084', 0.0075750731734979026) + +[97624] +centroid = (0.75056228164555994, -2.1229265232743226) +station = ('klmt', 0.014943150423823428) +zone = ('orz030', 0.0063094799946932538) + +[97625] +centroid = (0.73853205872412098, -2.1219868380050486) +station = ('klmt', 0.003368797088243941) +zone = ('orz029', 0.0019269229280904267) + +[97626] +centroid = (0.7446857406008025, -2.1297888088273136) +station = ('klmt', 0.0098801854810773113) +zone = ('orz029', 0.0067861879764108549) + +[97627] +centroid = (0.73548761109669714, -2.1301731128753105) +station = ('klmt', 0.0043159398661444109) +zone = ('orz029', 0.0056021404838714119) + +[97630] +centroid = (0.73852696236270521, -2.1007880689103255) +station = ('klkv', 0.0026163070590198441) +zone = ('orz031', 0.0087838090878047531) + +[97632] +centroid = (0.73367908347248811, -2.1194376450061707) +station = ('klmt', 0.0041512223791149308) +zone = ('caz084', 0.0039988484976800015) + +[97633] +centroid = (0.7336341412442493, -2.1216716140888456) +station = ('klmt', 0.0028388086828294392) +zone = ('caz084', 0.0031237454285297445) + +[97634] +centroid = (0.73527761308109718, -2.1260715193199538) +station = ('klmt', 0.0013268331986239356) +zone = ('orz029', 0.0040589178574167006) + +[97635] +centroid = (0.73181641573488221, -2.0995297737861001) +station = ('klkv', 0.0043524153694612438) +zone = ('caz070', 0.0061814549626825477) + +[97636] +centroid = (0.74380063177723865, -2.1033741930761756) +station = ('klkv', 0.0079908601396493743) +zone = ('orz031', 0.004784296834329441) + +[97637] +centroid = (0.74531461763688112, -2.0924763746800155) +station = ('klkv', 0.011440917404887115) +zone = ('orz031', 0.0049853301308112486) + +[97638] +centroid = (0.75291550907602389, -2.1118589367018208) +station = ('kbdn', 0.016790267310052082) +zone = ('orz030', 0.007014864792071418) + +[97639] +centroid = (0.74085345134902847, -2.1193364682694327) +station = ('klmt', 0.006387299841456362) +zone = ('orz029', 0.0041424065847353274) + +[97640] +centroid = (0.74783674057906069, -2.1059725694533746) +station = ('klkv', 0.012362913978648271) +zone = ('orz031', 0.0053219282304318855) + +[97641] +centroid = (0.75503407698855729, -2.1033632498617654) +station = ('kbdn', 0.01687412881595949) +zone = ('orz031', 0.0085375261024642178) + +[97701] +centroid = (0.76990553885261037, -2.1154497072917038) +station = ('kbdn', 0.00039788703580095636) +zone = ('orz509', 0.0050554596388563003) + +[97702] +centroid = (0.76795579663862246, -2.1159292539569821) +station = ('kbdn', 0.0016165294431622261) +zone = ('orz509', 0.0060637560610108058) + +[97707] +centroid = (0.76492251911841147, -2.120425553722677) +station = ('kbdn', 0.0058739580253196946) +zone = ('orz509', 0.0076446842017822538) + +[97710] +centroid = (0.73607837014191213, -2.0677009547090579) +station = ('kreo', 0.010564496432357949) +zone = ('nvz030', 0.014182720513459564) + +[97711] +centroid = (0.78028468030166287, -2.1061126146725546) +station = ('krdm', 0.0098346478737851729) +zone = ('orz042', 0.0069549850856354687) + +[97712] +centroid = (0.76427002777755337, -2.1023565090426302) +station = ('kbdn', 0.010719463883949381) +zone = ('orz506', 0.0086374561796793703) + +[97720] +centroid = (0.76070466918157931, -2.0749838820650721) +station = ('kbno', 0.00082755008137336977) +zone = ('orz061', 0.0091527312037022104) + +[97721] +centroid = (0.74223203456530129, -2.0672608699381678) +station = ('kreo', 0.0075047587355514585) +zone = ('orz061', 0.011519967136995666) + +[97722] +centroid = (0.74958557794285141, -2.0719858427424591) +station = ('kbno', 0.011759958288289267) +zone = ('orz061', 0.0037981061089143136) + +[97730] +centroid = (0.77671160735039491, -2.1231437469530254) +station = ('krdm', 0.0077768918241505102) +zone = ('orz509', 0.0043483757726236411) + +[97731] +centroid = (0.75303970670559583, -2.1257670466319429) +station = ('klmt', 0.017414353503041814) +zone = ('orz027', 0.0046310811731695616) + +[97732] +centroid = (0.75742559694280998, -2.0672221759886509) +station = ('kbno', 0.0073281151649435472) +zone = ('orz061', 0.0088528653644643889) + +[97733] +centroid = (0.75697109575229815, -2.1292933447592577) +station = ('kbdn', 0.016094540419202691) +zone = ('orz027', 0.0037787178660962997) + +[97734] +centroid = (0.77741219996543798, -2.1177152493805478) +station = ('krdm', 0.0056962934932264465) +zone = ('orz509', 0.0055726961662144053) + +[97735] +centroid = (0.75765947106257725, -2.1105598881395613) +station = ('kbdn', 0.012348565431273346) +zone = ('orz030', 0.011746769605565612) + +[97736] +centroid = (0.74598662175877661, -2.0770605446222654) +station = ('kreo', 0.014892200985863349) +zone = ('orz061', 0.0056439244666707574) + +[97737] +centroid = (0.75916377034487104, -2.1248279373213226) +station = ('kbdn', 0.0124126952611343) +zone = ('orz027', 0.0075269541017661317) + +[97738] +centroid = (0.75882851004885554, -2.0796894642613744) +station = ('kbno', 0.0033831727501769686) +zone = ('orz061', 0.0076110652412972506) + +[97739] +centroid = (0.76261564763288037, -2.1198927221553356) +station = ('kbdn', 0.007640603790533859) +zone = ('orz509', 0.0099794207576790438) + +[97741] +centroid = (0.77940204984563666, -2.1127993201027953) +station = ('krdm', 0.0071615489532518214) +zone = ('orz042', 0.0063298770384595466) + +[97750] +centroid = (0.77943159826987296, -2.0978281301252832) +station = ('kbdn', 0.015968234938978972) +zone = ('orz505', 0.0052960053716959435) + +[97751] +centroid = (0.77048432493915675, -2.0921110598142807) +station = ('kgcd', 0.012198783034001301) +zone = ('orz506', 0.0017799081257634736) + +[97752] +centroid = (0.77043926053787026, -2.0988352025569768) +station = ('kbdn', 0.011884425456941943) +zone = ('orz506', 0.0031024146137851134) + +[97753] +centroid = (0.77214259716806166, -2.1121648056532329) +station = ('krdm', 0.0014498685970735707) +zone = ('orz509', 0.0066804020587784736) + +[97754] +centroid = (0.77057176593468157, -2.104344875392965) +station = ('kbdn', 0.0079628276244666975) +zone = ('orz506', 0.0070351739579934056) + +[97756] +centroid = (0.77288984243401049, -2.1156309422812307) +station = ('krdm', 0.0011935575197323917) +zone = ('orz509', 0.0042003754273626098) + +[97758] +centroid = (0.75640861104096546, -2.0921669801635145) +station = ('kbno', 0.012539308811911129) +zone = ('orz031', 0.010409509936107068) + +[97759] +centroid = (0.77665013685413975, -2.1275584525761899) +station = ('kbdn', 0.011286915048590756) +zone = ('orz509', 0.0059897297563243114) + +[97760] +centroid = (0.77465513825264765, -2.1158675914745086) +station = ('krdm', 0.0026408040559803541) +zone = ('orz509', 0.0045401664913591721) + +[97761] +centroid = (0.78257991044108299, -2.1164125879867366) +station = ('krdm', 0.010394717689347171) +zone = ('orz042', 0.0043127803820229823) + +[97801] +centroid = (0.79711026515612626, -2.0738690530053612) +station = ('kmeh', 0.0056569496156691143) +zone = ('orz507', 0.0016309832124932336) + +[97810] +centroid = (0.79785953500400753, -2.0674820206076876) +station = ('kmeh', 0.0034805978828159399) +zone = ('orz507', 0.003118183896555245) + +[97812] +centroid = (0.79543572645859295, -2.0987480757207169) +station = ('kdls', 0.01122526648642163) +zone = ('orz508', 0.005034741521348478) + +[97813] +centroid = (0.80024096695518376, -2.0687055138666284) +station = ('kalw', 0.0052713457273290496) +zone = ('orz507', 0.0031585373572648899) + +[97814] +centroid = (0.78247466708718771, -2.0552828847212408) +station = ('kbke', 0.00071347287174073888) +zone = ('orz062', 0.002388979949238854) + +[97817] +centroid = (0.78091989288292618, -2.0701779957966582) +station = ('kgcd', 0.0073888782866806738) +zone = ('orz503', 0.0060827007633176529) + +[97818] +centroid = (0.79910540338395863, -2.0924782247290223) +station = ('kpdt', 0.0090598256922592452) +zone = ('orz044', 0.0051838242432671235) + +[97819] +centroid = (0.77641577404218187, -2.0553065688391903) +station = ('kbke', 0.0061135551947308258) +zone = ('orz062', 0.0040475597758666488) + +[97820] +centroid = (0.76920995533252057, -2.0851956464388586) +station = ('kgcd', 0.0085913756204577668) +zone = ('orz506', 0.0069043171559436071) + +[97823] +centroid = (0.78958580168492831, -2.0981783827995737) +station = ('kdls', 0.013364330064911755) +zone = ('orz508', 0.0031948366548604943) + +[97824] +centroid = (0.7915810271792233, -2.0552365985894778) +station = ('klgd', 0.0032358719578739182) +zone = ('orz049', 0.0024166159538832185) + +[97825] +centroid = (0.77466662251912577, -2.0856030237395666) +station = ('kgcd', 0.0066928696737946379) +zone = ('orz505', 0.0070155701081668726) + +[97826] +centroid = (0.79699231580527652, -2.0809964889783155) +station = ('khri', 0.0029797725184959197) +zone = ('orz044', 0.0032049908640390326) + +[97827] +centroid = (0.79544120679244412, -2.056661956629704) +station = ('klgd', 0.0054702693541441583) +zone = ('orz502', 0.0029114508104545727) + +[97828] +centroid = (0.79790805515721286, -2.0459078311908607) +station = ('klws', 0.01161220028586946) +zone = ('orz050', 0.0041119896800406296) + +[97830] +centroid = (0.7848144031225337, -2.0975917252781007) +station = ('kdls', 0.016570037829794351) +zone = ('orz505', 0.0064348868587732269) + +[97833] +centroid = (0.7841570423130626, -2.0597482048927129) +station = ('kbke', 0.0029648230518389625) +zone = ('orz062', 0.0056899882902472238) + +[97834] +centroid = (0.78491551004610183, -2.0448493239061114) +station = ('kbke', 0.008458026388831098) +zone = ('orz062', 0.0078464097486319381) + +[97835] +centroid = (0.80128078176364437, -2.0732163173184079) +station = ('kpsc', 0.0073971059230254037) +zone = ('orz507', 0.0033691980140606063) + +[97836] +centroid = (0.79099356680629451, -2.0854326970578643) +station = ('khri', 0.0093432512916405055) +zone = ('orz508', 0.0063494582303291781) + +[97837] +centroid = (0.77765832629655418, -2.0606624956213704) +station = ('kbke', 0.0057449747008726662) +zone = ('orz062', 0.0055496817924224487) + +[97838] +centroid = (0.80028543794452445, -2.0819548841771702) +station = ('khri', 0.00042432562998891111) +zone = ('orz044', 0.0028959224365743617) + +[97839] +centroid = (0.7957160263364631, -2.0872923453758645) +station = ('khri', 0.0058038188426746129) +zone = ('orz044', 0.0030905072331023709) + +[97840] +centroid = (0.78338599075611659, -2.0406117168421467) +station = ('kmyl', 0.010327147567632625) +zone = ('idz033', 0.0082785904564423238) + +[97841] +centroid = (0.79351596900115429, -2.058527277267773) +station = ('klgd', 0.0032437661162200734) +zone = ('orz049', 0.0015975421012525543) + +[97842] +centroid = (0.7923410657085892, -2.0374288646050394) +station = ('kmyl', 0.012049834265152734) +zone = ('idz008', 0.0058220210861243951) + +[97843] +centroid = (0.79416533620265128, -2.0926997942775634) +station = ('khri', 0.0096739545160873883) +zone = ('orz508', 0.0030195726209092865) + +[97844] +centroid = (0.80082949197895614, -2.0865208051267277) +station = ('khri', 0.0035425842019014588) +zone = ('orz044', 0.0026139254176557143) + +[97845] +centroid = (0.77495802269103864, -2.0752498876963688) +station = ('kgcd', 0.00071073837919038161) +zone = ('orz503', 0.010149661874041196) + +[97846] +centroid = (0.79347378439313354, -2.0427261308710603) +station = ('kgic', 0.013958693364828948) +zone = ('orz050', 0.0017956370450828191) + +[97848] +centroid = (0.78054911513663239, -2.0870698508028203) +station = ('kgcd', 0.0095455351709318823) +zone = ('orz505', 0.0025126440090445634) + +[97850] +centroid = (0.79069590090236685, -2.0614655914233828) +station = ('klgd', 0.0014348329889101261) +zone = ('orz049', 0.0023320944147047109) + +[97856] +centroid = (0.78217300437927306, -2.0791279220278378) +station = ('kgcd', 0.0075321097546546525) +zone = ('orz503', 0.003464433383528585) + +[97857] +centroid = (0.79210797698698543, -2.0504177096181366) +station = ('klgd', 0.0066162178389512043) +zone = ('orz050', 0.0040190782822846563) + +[97859] +centroid = (0.79467537376996156, -2.0665257547105202) +station = ('kmeh', 0.0003074597928877921) +zone = ('orz507', 0.005059915381225793) + +[97862] +centroid = (0.80149119865826479, -2.0650048573470396) +station = ('kalw', 0.0031308254424858586) +zone = ('orz502', 0.005484712777863286) + +[97864] +centroid = (0.78200290459037369, -2.084550258588056) +station = ('kgcd', 0.0092226507349980145) +zone = ('orz505', 0.0044842008630230018) + +[97865] +centroid = (0.7759989719635132, -2.0800841006585427) +station = ('kgcd', 0.0029447936292061778) +zone = ('orz505', 0.0088471381426658106) + +[97867] +centroid = (0.78674161313587843, -2.0592773674204028) +station = ('klgd', 0.0036047237358424219) +zone = ('orz049', 0.0051981418180232159) + +[97868] +centroid = (0.79255228545466549, -2.0744076092526487) +station = ('kmeh', 0.0056777496648743051) +zone = ('orz507', 0.0057441738636937597) + +[97869] +centroid = (0.77488365421161121, -2.0705535382918101) +station = ('kgcd', 0.0040657539562795192) +zone = ('orz503', 0.011016704855915197) + +[97870] +centroid = (0.7816978733970027, -2.0452913634457639) +station = ('kbke', 0.007841995546537887) +zone = ('orz062', 0.0062121778273368277) + +[97873] +centroid = (0.7702488625697701, -2.0769920404491247) +station = ('kgcd', 0.0047079259656474162) +zone = ('orz506', 0.012608254808285365) + +[97874] +centroid = (0.78151606244882232, -2.0920842690102623) +station = ('kgcd', 0.013064697578746114) +zone = ('orz505', 0.0013262863393776801) + +[97875] +centroid = (0.79968453853635535, -2.0792605321444042) +station = ('khri', 0.0016477918936420562) +zone = ('orz507', 0.005366394998745758) + +[97876] +centroid = (0.79441172433315521, -2.0601112159238353) +station = ('klgd', 0.0040918880204025747) +zone = ('orz049', 0.0026960869565042676) + +[97877] +centroid = (0.78039898191437596, -2.0666954530736916) +station = ('kbke', 0.0076776955557248307) +zone = ('orz503', 0.0083462490126482661) + +[97880] +centroid = (0.78683697792620744, -2.0750613048706912) +station = ('kmeh', 0.0095669145691340308) +zone = ('orz503', 0.0020195409528102428) + +[97882] +centroid = (0.80106217927483203, -2.0833382845021786) +station = ('khri', 0.001650882980887965) +zone = ('orz044', 0.0029305586027123277) + +[97883] +centroid = (0.78875692736986369, -2.0531034746309831) +station = ('klgd', 0.0047677591001444326) +zone = ('orz049', 0.0050193745973494902) + +[97884] +centroid = (0.77588857988832449, -2.0634149322116428) +station = ('kbke', 0.0083231850186152364) +zone = ('orz062', 0.0081455574847331229) + +[97885] +centroid = (0.79684174625070703, -2.0509661444289904) +station = ('klgd', 0.0088289265994391138) +zone = ('orz050', 0.0050193604275992508) + +[97886] +centroid = (0.79923696630297392, -2.0639820071389083) +station = ('kmeh', 0.0051977875480690872) +zone = ('orz502', 0.0035257316516277329) + +[97901] +centroid = (0.76133783972761793, -2.0439075267884426) +station = ('kono', 0.0069916549095594086) +zone = ('idz012', 0.0060623627731301718) + +[97903] +centroid = (0.77224925423865098, -2.0533547147768076) +station = ('kbke', 0.010451382229713009) +zone = ('orz064', 0.007009123863761465) + +[97904] +centroid = (0.76596020462518477, -2.0686044069430602) +station = ('kbno', 0.0073518252778324083) +zone = ('orz061', 0.015421341375538977) + +[97905] +centroid = (0.77795991919129881, -2.0500552221857897) +station = ('kbke', 0.0063359607354104936) +zone = ('orz062', 0.0035726534415099955) + +[97906] +centroid = (0.75986467711917949, -2.0555559065761302) +station = ('kono', 0.012701237545273287) +zone = ('orz063', 0.0073705470637986685) + +[97907] +centroid = (0.77526656199620625, -2.0480656166516864) +station = ('kono', 0.0081456953372216322) +zone = ('orz062', 0.0065101025892855954) + +[97908] +centroid = (0.77339460910697977, -2.0582364879610981) +station = ('kbke', 0.0091998990845465131) +zone = ('orz062', 0.0076099750932091346) + +[97909] +centroid = (0.77225045851583496, -2.049347421360936) +station = ('kono', 0.0064431379715326424) +zone = ('orz064', 0.0048888205053700872) + +[97910] +centroid = (0.74611212838528751, -2.0509618683723234) +station = ('kreo', 0.00539897321744224) +zone = ('orz063', 0.0067980324410584388) + +[97911] +centroid = (0.76334561413923463, -2.0602108742241243) +station = ('kbno', 0.011715730656620439) +zone = ('orz063', 0.011745810795935443) + +[97913] +centroid = (0.76120072666158112, -2.0476776299589678) +station = ('kono', 0.0080251403325183393) +zone = ('orz064', 0.0073642935417956882) + +[97914] +centroid = (0.76992789652032845, -2.0435041288384292) +station = ('kono', 0.0018920432129437437) +zone = ('orz064', 0.0020091724397496894) + +[97918] +centroid = (0.76864363089683341, -2.0482204448096306) +station = ('kono', 0.00425757964637382) +zone = ('orz064', 0.0021641177862921678) + +[97920] +centroid = (0.7692045622651319, -2.0569450664876698) +station = ('kbke', 0.013292977061692699) +zone = ('orz064', 0.0084577522793053972) + +[98001] +centroid = (0.82570647265908725, -2.1339175422525392) +station = ('ksea', 0.0025286583454362994) +zone = ('waz509', 0.0037369765213323249) + +[98002] +centroid = (0.82568535417513822, -2.1330857706909159) +station = ('ksea', 0.0027404874509126043) +zone = ('waz509', 0.0041700148125868005) + +[98003] +centroid = (0.82567535343852416, -2.1348129659719821) +station = ('ksea', 0.002483399092146918) +zone = ('waz509', 0.0032759809776290597) + +[98004] +centroid = (0.83109676497423901, -2.1328855639724198) +station = ('kbfi', 0.0017720405253246543) +zone = ('waz505', 0.0023234496762220194) + +[98005] +centroid = (0.8310303726494932, -2.1322477683038632) +station = ('krnt', 0.0020769693115416641) +zone = ('waz505', 0.0019095691732291756) + +[98006] +centroid = (0.83003717558535328, -2.1319372218700559) +station = ('krnt', 0.0012690060394359691) +zone = ('waz505', 0.0014683839253745424) + +[98007] +centroid = (0.83101801571838907, -2.1318213320077235) +station = ('krnt', 0.0021614558931790642) +zone = ('waz505', 0.0016562507212293212) + +[98008] +centroid = (0.83087790068603906, -2.131031622881074) +station = ('krnt', 0.0023079950003721296) +zone = ('waz505', 0.0011467981461082367) + +[98010] +centroid = (0.82575080402208789, -2.1293089829093552) +station = ('krnt', 0.0041577933241474432) +zone = ('waz505', 0.0043735469727783369) + +[98011] +centroid = (0.83345292455784636, -2.13282669401675) +station = ('kpae', 0.0030058371713399764) +zone = ('waz505', 0.0039251451200390287) + +[98012] +centroid = (0.83498591705304304, -2.1327760969217344) +station = ('kpae', 0.0016459814683912864) +zone = ('waz507', 0.0037861745535931329) + +[98014] +centroid = (0.83183168821566889, -2.1274099774167232) +station = ('krnt', 0.0047420481907880984) +zone = ('waz505', 0.00233904085285564) + +[98019] +centroid = (0.83312127709338235, -2.1267763181784938) +station = ('krnt', 0.0058992508759593025) +zone = ('waz505', 0.0036191712440694127) + +[98020] +centroid = (0.83430829297095621, -2.1358325873209973) +station = ('kpae', 0.0022612676411049503) +zone = ('waz507', 0.0046248486342046514) + +[98021] +centroid = (0.834136884185118, -2.1329357421884145) +station = ('kpae', 0.0023384995912868172) +zone = ('waz505', 0.0045549546283131133) + +[98022] +centroid = (0.82408115224646006, -2.1277816103743503) +station = ('krnt', 0.0061157859627617153) +zone = ('waz519', 0.0046316695579633627) + +[98023] +centroid = (0.82573994807414053, -2.1356356618214947) +station = ('ksea', 0.0024797528088257607) +zone = ('waz509', 0.002977390055248583) + +[98024] +centroid = (0.83031288524729085, -2.1275420813878063) +station = ('ksea', 0.0053723560915480703) +zone = ('waz505', 0.0015125036699378596) + +[98026] +centroid = (0.83497937206834816, -2.1351133720428352) +station = ('kpae', 0.0014461660470519435) +zone = ('waz507', 0.0038478452784110515) + +[98027] +centroid = (0.82892199745979156, -2.1292794170318263) +station = ('krnt', 0.0025723014691650401) +zone = ('waz505', 0.0012356485321552747) + +[98028] +centroid = (0.83349385252880559, -2.1336314304282595) +station = ('kpae', 0.0028399468699512116) +zone = ('waz505', 0.0042674902476319094) + +[98029] +centroid = (0.83002771590080748, -2.1294369155435269) +station = ('krnt', 0.0026560263800425627) +zone = ('waz505', 0.0002369334183549991) + +[98030] +centroid = (0.82673667070336943, -2.1327570204730102) +station = ('ksea', 0.0019969130857397052) +zone = ('waz505', 0.0039365621176933067) + +[98031] +centroid = (0.82738169203502898, -2.1327185534162965) +station = ('ksea', 0.0016252500209265402) +zone = ('waz505', 0.0033836325929990749) + +[98032] +centroid = (0.82714542681418646, -2.1337905346428712) +station = ('ksea', 0.0012329073545098432) +zone = ('waz508', 0.0032008546872234638) + +[98033] +centroid = (0.8321028600215512, -2.1326802608925077) +station = ('kbfi', 0.0026328949842912095) +zone = ('waz505', 0.0027966242354250707) + +[98034] +centroid = (0.83279727417104221, -2.1330322938026347) +station = ('kbfi', 0.0031362267882552395) +zone = ('waz505', 0.0034715468975909099) + +[98036] +centroid = (0.83443681901707312, -2.1341954859359191) +station = ('kpae', 0.0018670981539402206) +zone = ('waz507', 0.004290106963367811) + +[98037] +centroid = (0.8349520227589694, -2.1342840439421651) +station = ('kpae', 0.0013518081374650091) +zone = ('waz507', 0.003781573440434392) + +[98038] +centroid = (0.82762427534776373, -2.1285687887735847) +station = ('ksea', 0.0042678927980466606) +zone = ('waz505', 0.0026170009273316355) + +[98039] +centroid = (0.83132990605572044, -2.133497546221339) +station = ('kbfi', 0.0016848859806210849) +zone = ('waz508', 0.0031331754488309253) + +[98040] +centroid = (0.83021326185358701, -2.1333643950527046) +station = ('krnt', 0.0011970147264579623) +zone = ('waz508', 0.0026848043314696471) + +[98042] +centroid = (0.82672296986874128, -2.1313442288033984) +station = ('krnt', 0.0025908654905048233) +zone = ('waz505', 0.003554808117150531) + +[98043] +centroid = (0.83411375857252901, -2.1346729556593869) +station = ('kpae', 0.002208434559143266) +zone = ('waz507', 0.0046444176458438988) + +[98045] +centroid = (0.82711704776054906, -2.122439506599846) +station = ('ksmp', 0.0037350471850600723) +zone = ('waz505', 0.0057869144974327128) + +[98047] +centroid = (0.82487347936698796, -2.1336456199550784) +station = ('kplu', 0.0028652116443216463) +zone = ('waz509', 0.0034208550923458211) + +[98050] +centroid = (0.82982148779639175, -2.1282420631376113) +station = ('ksea', 0.0047504721846254403) +zone = ('waz505', 0.0010679860315647494) + +[98051] +centroid = (0.82634725284066446, -2.1272298245313324) +station = ('ksea', 0.0054532424235710824) +zone = ('waz505', 0.0041377945211815703) + +[98052] +centroid = (0.83219026611049107, -2.1314053502338033) +station = ('krnt', 0.0033554429192138666) +zone = ('waz505', 0.0023529954722425386) + +[98053] +centroid = (0.83198644656044318, -2.1294785067396016) +station = ('krnt', 0.0038267428884997106) +zone = ('waz505', 0.001882822992254546) + +[98055] +centroid = (0.82810605603448417, -2.1328188923949933) +station = ('krnt', 0.00094243145481959559) +zone = ('waz505', 0.0028788942089916685) + +[98056] +centroid = (0.82925003209270387, -2.1326221414284161) +station = ('krnt', 0.00038054889741764907) +zone = ('waz505', 0.0021138258177206951) + +[98057] +centroid = (0.82854305157259855, -2.1331745730432576) +station = ('krnt', 0.00049222847571590996) +zone = ('waz508', 0.0028212219805836369) + +[98058] +centroid = (0.82803196680773705, -2.1314654244666569) +station = ('krnt', 0.0014814708421438626) +zone = ('waz505', 0.0023777332340490292) + +[98059] +centroid = (0.82902573983053007, -2.1312789883959589) +station = ('krnt', 0.0012189475488632027) +zone = ('waz505', 0.0014930800780494126) + +[98065] +centroid = (0.83050136335321378, -2.1256705473776005) +station = ('ksea', 0.0066138142132105126) +zone = ('waz505', 0.0027888796531546777) + +[98068] +centroid = (0.82784313963596379, -2.1183769909664414) +station = ('ksmp', 0.0026376189881488436) +zone = ('waz519', 0.0094363012746375274) + +[98070] +centroid = (0.82741165933828575, -2.1375627147552065) +station = ('ksea', 0.0019948474187042164) +zone = ('waz508', 0.0020053887146225442) + +[98072] +centroid = (0.83358295158711992, -2.1315798831590027) +station = ('kpae', 0.0032567311801970605) +zone = ('waz505', 0.0036786596003274157) + +[98074] +centroid = (0.83117015606928546, -2.1300732974953887) +station = ('krnt', 0.0029495248515112749) +zone = ('waz505', 0.0010770229681571276) + +[98075] +centroid = (0.83053398355693353, -2.1299550688918587) +station = ('krnt', 0.0025916646066323945) +zone = ('waz505', 0.00043975952941496495) + +[98077] +centroid = (0.83343623921019727, -2.1303538242660616) +station = ('kpae', 0.0038795335584248568) +zone = ('waz505', 0.0033463908061364149) + +[98087] +centroid = (0.83536817906581484, -2.1339612976568865) +station = ('kpae', 0.00095480904460996366) +zone = ('waz507', 0.0033512215123432491) + +[98092] +centroid = (0.82537121236307165, -2.1315160564682571) +station = ('ksea', 0.0035781560537686032) +zone = ('waz505', 0.0048881459414859005) + +[98101] +centroid = (0.83096699974435329, -2.1351733590092263) +station = ('kbfi', 0.0010880888457209491) +zone = ('waz508', 0.0020610456526307707) + +[98102] +centroid = (0.83142493923349159, -2.134919745215619) +station = ('kbfi', 0.0015221225061624649) +zone = ('waz508', 0.0025259101242846751) + +[98103] +centroid = (0.83214253135544902, -2.1352035532052858) +station = ('kbfi', 0.0022527003368818174) +zone = ('waz508', 0.0030434415658576672) + +[98104] +centroid = (0.83080960595240838, -2.13505183173341) +station = ('kbfi', 0.00091798744570341362) +zone = ('waz508', 0.0020012462377640081) + +[98105] +centroid = (0.83182149549283713, -2.1342754743755381) +station = ('kbfi', 0.0019533627906491492) +zone = ('waz508', 0.0031052189713543055) + +[98106] +centroid = (0.82979993298012977, -2.1354081407002048) +station = ('kbfi', 0.00040482638454368195) +zone = ('waz508', 0.0012453756348107434) + +[98107] +centroid = (0.83195529243329502, -2.1358911954772792) +station = ('kbfi', 0.0021727418909287858) +zone = ('waz508', 0.0026954271787126075) + +[98108] +centroid = (0.82963985138113672, -2.1346387995659257) +station = ('kbfi', 0.00029362420740550383) +zone = ('waz508', 0.0017154354294738126) + +[98109] +centroid = (0.83133283820886383, -2.1353102800890453) +station = ('kbfi', 0.0014652492599111615) +zone = ('waz508', 0.0023001743901092404) + +[98110] +centroid = (0.831596452739085, -2.1386315369358355) +station = ('kbfi', 0.0030725359711571074) +zone = ('waz508', 0.0024138990590873138) + +[98112] +centroid = (0.83134936647688018, -2.1343371543113032) +station = ('kbfi', 0.0014828172820809031) +zone = ('waz508', 0.0027237644672462626) + +[98115] +centroid = (0.83227327396971595, -2.1342163426204803) +station = ('kbfi', 0.0024048873533759883) +zone = ('waz508', 0.0034915348748523157) + +[98116] +centroid = (0.83032176897318344, -2.1362860587672503) +station = ('kbfi', 0.0010685349365505239) +zone = ('waz508', 0.0010939191145024937) + +[98117] +centroid = (0.83230844235414359, -2.1360189361252329) +station = ('kbfi', 0.0025347331813915085) +zone = ('waz508', 0.0030094515031061845) + +[98118] +centroid = (0.82973381990806427, -2.1339886818728502) +station = ('kbfi', 0.0005919363791648235) +zone = ('waz508', 0.002163395124360788) + +[98119] +centroid = (0.83145179985067985, -2.1357759164801848) +station = ('kbfi', 0.0016744124984134873) +zone = ('waz508', 0.0022544428189633643) + +[98121] +centroid = (0.8310418743692638, -2.1354204801780163) +station = ('kbfi', 0.0012058335134040878) +zone = ('waz508', 0.0020175521529866478) + +[98122] +centroid = (0.83096951301847621, -2.1344191149729768) +station = ('kbfi', 0.0011006703048412232) +zone = ('waz508', 0.0024238394471628112) + +[98125] +centroid = (0.83281025942067699, -2.1344648775059643) +station = ('kbfi', 0.0029165154213655945) +zone = ('waz508', 0.0038638754341257559) + +[98126] +centroid = (0.83000261806616382, -2.1359267827407273) +station = ('kbfi', 0.00074772346853012512) +zone = ('waz508', 0.0010256599818970319) + +[98133] +centroid = (0.83322847521603993, -2.1352858803861023) +station = ('kpae', 0.0031532572010241171) +zone = ('waz508', 0.0040321191580871092) + +[98134] +centroid = (0.83038575274356163, -2.1352016857029863) +station = ('kbfi', 0.00054352307370837162) +zone = ('waz508', 0.0016468422453845275) + +[98136] +centroid = (0.82966781155575375, -2.1361854230825803) +station = ('kbfi', 0.00094590348645433981) +zone = ('waz508', 0.00070745825485878447) + +[98144] +centroid = (0.83052576305615666, -2.1344066358688254) +station = ('kbfi', 0.00068378301612004604) +zone = ('waz508', 0.0021702380231177448) + +[98146] +centroid = (0.82903240698827274, -2.1355473132547589) +station = ('kbfi', 0.00099766788376826499) +zone = ('waz508', 0.0011450930437491731) + +[98148] +centroid = (0.82805572073885658, -2.1349715465878183) +station = ('ksea', 0.00014128314851679399) +zone = ('waz508', 0.0019941813216992114) + +[98154] +centroid = (0.83088512634914224, -2.135127456849899) +station = ('kbfi', 0.0010015721174815595) +zone = ('waz508', 0.0020202936997867835) + +[98155] +centroid = (0.83347173920718287, -2.1345460004095971) +station = ('kpae', 0.0028389744232729382) +zone = ('waz508', 0.0044366653281781264) + +[98158] +centroid = (0.82815297048477776, -2.1346710707037948) +station = ('ksea', 0.00010665776954583036) +zone = ('waz508', 0.0020892808818652716) + +[98164] +centroid = (0.83088078047930469, -2.1350966866951864) +station = ('kbfi', 0.00099332722601423902) +zone = ('waz508', 0.0020312315171328592) + +[98166] +centroid = (0.82818623646032086, -2.1354624553465267) +station = ('ksea', 0.00042953407528691605) +zone = ('waz508', 0.0016657421210857165) + +[98168] +centroid = (0.82884933940303107, -2.1345369770573641) +station = ('ksea', 0.00071818667775475856) +zone = ('waz508', 0.001850964394268656) + +[98174] +centroid = (0.83085646804282443, -2.1351548061592776) +station = ('kbfi', 0.00097750618261137844) +zone = ('waz508', 0.0019867295142644362) + +[98177] +centroid = (0.83325926282404505, -2.1358747370224331) +station = ('kpae', 0.0032345680749806369) +zone = ('waz508', 0.0039564023857935251) + +[98178] +centroid = (0.82902069582899174, -2.133557690267363) +station = ('krnt', 0.00032071828119679209) +zone = ('waz508', 0.0024582223440124864) + +[98188] +centroid = (0.82811221704674376, -2.1340680419939386) +station = ('ksea', 0.00051640196799803415) +zone = ('waz508', 0.0024498956349758324) + +[98195] +centroid = (0.83162779885245086, -2.1346822233577152) +station = ('kbfi', 0.001726561733708964) +zone = ('waz508', 0.0027842031183555834) + +[98198] +centroid = (0.82713464067940912, -2.1347990556978438) +station = ('ksea', 0.0010242839901727135) +zone = ('waz508', 0.0027672498461218317) + +[98199] +centroid = (0.83167331703934277, -2.1364112686877883) +station = ('kbfi', 0.0020662052721445666) +zone = ('waz508', 0.0023298854742492218) + +[98201] +centroid = (0.83786818868637147, -2.132967646807141) +station = ('kpae', 0.0017837085427346187) +zone = ('waz507', 0.00099418174713352694) + +[98203] +centroid = (0.83680716812749911, -2.1333350735212706) +station = ('kpae', 0.00079167088096304293) +zone = ('waz507', 0.0019285253934051387) + +[98204] +centroid = (0.83603648308969603, -2.1338550943719028) +station = ('kpae', 0.00037454872294709438) +zone = ('waz507', 0.0026807837230602275) + +[98205] +centroid = (0.83755729318671379, -2.1319229625300671) +station = ('kpae', 0.0019985080932558418) +zone = ('waz507', 0.0016810460232613914) + +[98207] +centroid = (0.83754371452513332, -2.133199129825833) +station = ('kpae', 0.0014248589725384213) +zone = ('waz507', 0.0012277545418885672) + +[98208] +centroid = (0.83604376111267675, -2.1325679664084345) +station = ('kpae', 0.0011549343839398095) +zone = ('waz507', 0.0027859217581953314) + +[98220] +centroid = (0.8497125864023507, -2.13270846541322) +station = ('kbvs', 0.0045555821580283724) +zone = ('waz506', 0.0043262894499962335) + +[98221] +centroid = (0.84657239001216256, -2.1408083813920928) +station = ('knuw', 0.0027078326983096999) +zone = ('waz506', 0.003456349755692277) + +[98222] +centroid = (0.84765082895696986, -2.1435802784035252) +station = ('kfhr', 0.0026365823722166067) +zone = ('waz001', 0.0016824701679327278) + +[98223] +centroid = (0.84153996000683962, -2.1284671582512411) +station = ('kawo', 0.0026438154708528822) +zone = ('waz507', 0.0045136364611409819) + +[98224] +centroid = (0.83070366446681232, -2.1200673248937054) +station = ('ksmp', 0.0056904910099620587) +zone = ('waz505', 0.0065678161973221584) + +[98225] +centroid = (0.85091942922022723, -2.1381702115079482) +station = ('kbli', 0.00085207420630645507) +zone = ('waz503', 0.0018617600733632864) + +[98226] +centroid = (0.85169620545711988, -2.1370762914926758) +station = ('kbli', 0.0010106204965760867) +zone = ('waz503', 0.0011122411067862516) + +[98229] +centroid = (0.84990774911930866, -2.1365192871151946) +station = ('kbli', 0.0022775675199598099) +zone = ('waz503', 0.002932075053644376) + +[98230] +centroid = (0.85440818531533125, -2.1417286760533769) +station = ('cwwk', 0.0013653569526215529) +zone = ('waz503', 0.0031648240924184098) + +[98232] +centroid = (0.84771605191111687, -2.1364761251227926) +station = ('kbvs', 0.001744078623551982) +zone = ('waz506', 0.0019187137918066459) + +[98233] +centroid = (0.8465012503918512, -2.1353333184351717) +station = ('kbvs', 0.0010168440666907901) +zone = ('waz506', 0.00068022170815522929) + +[98235] +centroid = (0.84583027601421457, -2.1333854088168986) +station = ('kbvs', 0.0021672404071245693) +zone = ('waz506', 0.0015375889815689493) + +[98236] +centroid = (0.83685732889020148, -2.1365067905577502) +station = ('kpae', 0.0016122840359277695) +zone = ('waz507', 0.0026218241509006336) + +[98237] +centroid = (0.84764135181913147, -2.1238776404501967) +station = ('kawo', 0.0089045111302961093) +zone = ('waz518', 0.0025197949813286404) + +[98238] +centroid = (0.84361168328224945, -2.1353164411013048) +station = ('kbvs', 0.0025235077834370044) +zone = ('waz506', 0.0022697558182529637) + +[98239] +centroid = (0.84118757803086197, -2.1407851510597489) +station = ('knuw', 0.0026807081523977051) +zone = ('waz510', 0.0014698496446214585) + +[98240] +centroid = (0.8543076892570014, -2.1401346668475303) +station = ('cwwk', 0.0022131147541840793) +zone = ('waz503', 0.0022684154364186488) + +[98241] +centroid = (0.84110324372140555, -2.1154930263637381) +station = ('ksmp', 0.015920612774525143) +zone = ('waz518', 0.0062610669285521536) + +[98243] +centroid = (0.84838671212948824, -2.1468187542838932) +station = ('kfhr', 0.0016472043260182382) +zone = ('waz001', 0.00071035369875881377) + +[98244] +centroid = (0.85227588166158474, -2.1281467856137448) +station = ('cyxx', 0.0060828237339575824) +zone = ('waz503', 0.0062588489849262265) + +[98245] +centroid = (0.8485732005600638, -2.1445169442531928) +station = ('kors', 0.0016053332326680988) +zone = ('waz001', 0.00127089231554743) + +[98247] +centroid = (0.85367329698048644, -2.1350638046920789) +station = ('cyxx', 0.0021607127290033824) +zone = ('waz503', 0.0019252330195069329) + +[98248] +centroid = (0.85284499862407503, -2.1401125884324927) +station = ('kbli', 0.0014974262263704164) +zone = ('waz503', 0.0016359250168152591) + +[98249] +centroid = (0.83800650602959204, -2.1387752298931519) +station = ('kpae', 0.0034776132977312733) +zone = ('waz510', 0.0020672469476041093) + +[98250] +centroid = (0.84776359467994122, -2.1487634524963428) +station = ('kfhr', 0.0013668565254983706) +zone = ('waz001', 0.0017620350668339326) + +[98251] +centroid = (0.83622768390925206, -2.1224394367866757) +station = ('kawo', 0.0078986373591932273) +zone = ('waz505', 0.0078517341773305226) + +[98252] +centroid = (0.83902445186252528, -2.1238842901546469) +station = ('kpae', 0.0074492392600444823) +zone = ('waz518', 0.0076607163258487175) + +[98253] +centroid = (0.83937067282624334, -2.1393641563426526) +station = ('knuw', 0.0045764556428316916) +zone = ('waz510', 0.00082740832867833896) + +[98255] +centroid = (0.846870754047791, -2.1291166476257857) +station = ('kbvs', 0.0050694980289429934) +zone = ('waz506', 0.0044791369411284225) + +[98256] +centroid = (0.83464154613833208, -2.1189419889518968) +station = ('ksmp', 0.009431088171249432) +zone = ('waz505', 0.008577207641548552) + +[98257] +centroid = (0.84484451405268812, -2.1382403388372935) +station = ('kbvs', 0.0015483363334613451) +zone = ('waz506', 0.0019692299534993722) + +[98258] +centroid = (0.83852945903336717, -2.1306434267488452) +station = ('kawo', 0.002379888074204421) +zone = ('waz507', 0.0020807928819132158) + +[98260] +centroid = (0.83833803132100848, -2.137223719454592) +station = ('kpae', 0.0028479199461907594) +zone = ('waz510', 0.0025833405159534665) + +[98261] +centroid = (0.84617911497181064, -2.1447296824357185) +station = ('kfhr', 0.0018275851825786508) +zone = ('waz001', 0.001908382658645386) + +[98262] +centroid = (0.84952779094114961, -2.140588818972192) +station = ('kbli', 0.0025518083623987326) +zone = ('waz503', 0.0037636744288325062) + +[98263] +centroid = (0.8468987316757004, -2.130441404887927) +station = ('kbvs', 0.0042142541741496432) +zone = ('waz506', 0.0036366738349023994) + +[98264] +centroid = (0.8543430845342318, -2.1373265717074119) +station = ('cyxx', 0.0017999967936138412) +zone = ('waz503', 0.001608601248109394) + +[98266] +centroid = (0.85458249134772801, -2.1314426130133333) +station = ('cyxx', 0.0030449797140564283) +zone = ('waz503', 0.0044618224707196627) + +[98267] +centroid = (0.8453960031897334, -2.117067767134643) +station = ('kpae', 0.014625108016170577) +zone = ('waz518', 0.0025325844452422338) + +[98270] +centroid = (0.83874804406888692, -2.1318656459174319) +station = ('kawo', 0.001932649472234543) +zone = ('waz507', 0.0012556064449868183) + +[98271] +centroid = (0.83932827877871241, -2.1334500034525146) +station = ('kawo', 0.0015736445927941932) +zone = ('waz507', 0.00064271354124691149) + +[98272] +centroid = (0.8351154553901261, -2.1274682365071547) +station = ('kpae', 0.0046987403331676478) +zone = ('waz505', 0.0052351447667245239) + +[98273] +centroid = (0.84478742433285547, -2.1358667085078737) +station = ('kbvs', 0.0012959816789613226) +zone = ('waz506', 0.0010848307172246865) + +[98274] +centroid = (0.84384524324275134, -2.1318405655360806) +station = ('kawo', 0.003187852453400758) +zone = ('waz506', 0.0032654254459843716) + +[98275] +centroid = (0.83630093537795813, -2.1345976447021635) +station = ('kpae', 0.00023516406191109067) +zone = ('waz507', 0.0024820204414416928) + +[98276] +centroid = (0.85393202458880213, -2.1349946547471146) +station = ('cyxx', 0.0019179918510876545) +zone = ('waz503', 0.0020993988874275175) + +[98277] +centroid = (0.84327076811945734, -2.1402725129518529) +station = ('knuw', 0.00064566652824158473) +zone = ('waz510', 0.0035414278214164806) + +[98278] +centroid = (0.84368702914605809, -2.1410242960738572) +station = ('knuw', 0.00030884989853901293) +zone = ('waz510', 0.0039716825684414387) + +[98279] +centroid = (0.84890886228180729, -2.1433972108182835) +station = ('kors', 0.0016902863196582366) +zone = ('waz001', 0.0020761667362602662) + +[98280] +centroid = (0.84836966026269622, -2.1451891578145985) +station = ('kors', 0.0017462814281043301) +zone = ('waz001', 0.00079335484877243268) + +[98281] +centroid = (0.85507048540658559, -2.1476483092773662) +station = ('cyvr', 0.0035919500909701702) +zone = ('waz503', 0.0069802405192015016) + +[98282] +centroid = (0.84149500032530833, -2.138032365403626) +station = ('knuw', 0.0029412197729257301) +zone = ('waz510', 0.0024022511592454122) + +[98283] +centroid = (0.85175654148936131, -2.1163919058351004) +station = ('cwza', 0.0097314720019747256) +zone = ('waz518', 0.0060640553608139781) + +[98284] +centroid = (0.84729682382478777, -2.1314490009183955) +station = ('kbvs', 0.0036882098359608921) +zone = ('waz506', 0.0031608094572976005) + +[98286] +centroid = (0.84768571808871729, -2.146013895699336) +station = ('kfhr', 0.0012630956869875303) +zone = ('waz001', 0.00018089788404630007) + +[98288] +centroid = (0.83185102646378095, -2.1167141285216036) +station = ('ksmp', 0.0066324707669304815) +zone = ('waz505', 0.0089676123376122487) + +[98290] +centroid = (0.83698314967597776, -2.1290655792918725) +station = ('kpae', 0.0035370837289664947) +zone = ('waz507', 0.0035776426653038843) + +[98292] +centroid = (0.84154177514926165, -2.1347888280684271) +station = ('kawo', 0.0019286099452144273) +zone = ('waz507', 0.0029103857554917106) + +[98294] +centroid = (0.83557077688538639, -2.1250058038253932) +station = ('kawo', 0.007013782614439204) +zone = ('waz505', 0.0063269495128360533) + +[98295] +centroid = (0.85488591683818715, -2.1327941959860781) +station = ('cyxx', 0.0021117000345285191) +zone = ('waz503', 0.0038307222402403766) + +[98296] +centroid = (0.83494921277887368, -2.1310664421996512) +station = ('kpae', 0.002526751161720864) +zone = ('waz507', 0.0041720321524520336) + +[98297] +centroid = (0.85001133441041454, -2.1472176143778512) +station = ('kors', 0.001342813948695812) +zone = ('waz001', 0.0022770058631733331) + +[98303] +centroid = (0.82305198394643653, -2.1414061741141932) +station = ('ktiw', 0.002372832035847104) +zone = ('waz509', 0.0022591921514617244) + +[98304] +centroid = (0.81827569846213632, -2.1247081379214654) +station = ('kplu', 0.0075905834852335007) +zone = ('waz519', 0.0015399514376705577) + +[98305] +centroid = (0.83885569597714993, -2.171871524526285) +station = ('kuil', 0.0027080752268491518) +zone = ('waz516', 0.0023346860624611741) + +[98310] +centroid = (0.8306363994774405, -2.1402322307527171) +station = ('kpwt', 0.0021681009508106156) +zone = ('waz508', 0.0024185908802416213) + +[98311] +centroid = (0.83132121431604555, -2.1403150117191392) +station = ('kpwt', 0.002684520686792459) +zone = ('waz508', 0.0028716971110996675) + +[98312] +centroid = (0.83044245849095899, -2.1429915090336573) +station = ('kpwt', 0.0014680187494640177) +zone = ('waz511', 0.0025944827868270605) + +[98314] +centroid = (0.83001378817337657, -2.1404214942568034) +station = ('kpwt', 0.0016537284268700969) +zone = ('waz508', 0.002290273269746867) + +[98315] +centroid = (0.83295053153265985, -2.1417984368635792) +station = ('kpwt', 0.0039394879383778366) +zone = ('waz508', 0.0047350508969719336) + +[98320] +centroid = (0.83284568960449246, -2.1461776773963432) +station = ('kpwt', 0.004589543497484529) +zone = ('waz511', 0.0038526922572908536) + +[98321] +centroid = (0.82296822559563332, -2.1305537517318776) +station = ('kplu', 0.0027496685347522119) +zone = ('waz519', 0.0047473272146276056) + +[98323] +centroid = (0.82105668863897163, -2.1262911864596097) +station = ('ktcm', 0.0080125097886695543) +zone = ('waz519', 0.0014448933225170157) + +[98325] +centroid = (0.83717593874515306, -2.1425609014006053) +station = ('knuw', 0.0068115574141990355) +zone = ('waz510', 0.0029105894560416136) + +[98326] +centroid = (0.84089500848835019, -2.1713930948717284) +station = ('kuil', 0.0046652197606415072) +zone = ('waz515', 0.0030728916587359992) + +[98327] +centroid = (0.82209142453930906, -2.1409027164381631) +station = ('kgrf', 0.0013850329401151945) +zone = ('waz509', 0.0022452084897537526) + +[98328] +centroid = (0.81796408737748527, -2.1320578415746616) +station = ('kplu', 0.004378210522689106) +zone = ('waz519', 0.0048380468124992358) + +[98329] +centroid = (0.82672911342770827, -2.1419736853737716) +station = ('kpwt', 0.0023195767390245996) +zone = ('waz511', 0.0036355915985241002) + +[98330] +centroid = (0.81639723549479992, -2.1322452201231554) +station = ('kplu', 0.0058348766166047561) +zone = ('waz519', 0.005708931524606684) + +[98331] +centroid = (0.83387204792442027, -2.1675536148634365) +station = ('kuil', 0.0051670107772806614) +zone = ('waz516', 0.0036766914916531745) + +[98332] +centroid = (0.82680601263455122, -2.1397008478086548) +station = ('ktiw', 0.001847297533432205) +zone = ('waz508', 0.0031120217260058882) + +[98333] +centroid = (0.82471051797472916, -2.1404717248326754) +station = ('ktiw', 0.0008011174493902924) +zone = ('waz509', 0.0021565555892694988) + +[98335] +centroid = (0.82548745129125456, -2.1401866252993624) +station = ('ktiw', 0.00076230266226210406) +zone = ('waz509', 0.002625555305621162) + +[98336] +centroid = (0.81301342604761828, -2.1305937546783333) +station = ('kplu', 0.0093972741587160964) +zone = ('waz519', 0.0075779258021458152) + +[98337] +centroid = (0.83023068023952196, -2.1403244539503925) +station = ('kpwt', 0.0018401557305978199) +zone = ('waz508', 0.0022964607255210106) + +[98338] +centroid = (0.82090367562344924, -2.1341337012803985) +station = ('kplu', 0.0011570054525508679) +zone = ('waz509', 0.003594651302525096) + +[98339] +centroid = (0.83817700724421951, -2.1423747794891725) +station = ('knuw', 0.0058052086880389341) +zone = ('waz510', 0.0020058123840562274) + +[98340] +centroid = (0.83614732895049015, -2.1392618625951934) +station = ('kpae', 0.0033650769850192062) +zone = ('waz510', 0.003675962129265443) + +[98342] +centroid = (0.83348767406325353, -2.1382291512767879) +station = ('kpae', 0.0038826941474591338) +zone = ('waz508', 0.0041534365009020429) + +[98345] +centroid = (0.8324980025642027, -2.1401899239716489) +station = ('kpwt', 0.0037711476768707555) +zone = ('waz508', 0.0037148238309519369) + +[98346] +centroid = (0.83463510587339218, -2.1384738464379178) +station = ('kpae', 0.003290090260999288) +zone = ('waz507', 0.0051670070885669779) + +[98349] +centroid = (0.82506630334274833, -2.1426352349734477) +station = ('ktiw', 0.0022265432494505809) +zone = ('waz509', 0.0035622112752874721) + +[98350] +centroid = (0.836123191046935, -2.1750558777465487) +station = ('kuil', 0.00079611751460653593) +zone = ('waz516', 0.0025502422212078909) + +[98351] +centroid = (0.82378915866260138, -2.1428152831390834) +station = ('kgrf', 0.0030300977353056495) +zone = ('waz509', 0.003245396858394077) + +[98353] +centroid = (0.82970578992027721, -2.1378994062212091) +station = ('ksea', 0.0025881296162626037) +zone = ('waz508', 0.0005900453017962671) + +[98354] +centroid = (0.82470287343260551, -2.1348394251634422) +station = ('ktcm', 0.0026543949768041528) +zone = ('waz509', 0.0026340951395665319) + +[98355] +centroid = (0.8151346992204922, -2.1300001332931453) +station = ('kplu', 0.0075305247223480696) +zone = ('waz519', 0.0055432647068453158) + +[98356] +centroid = (0.81264495213593735, -2.1343681513588191) +station = ('kplu', 0.0094051261777349879) +zone = ('waz019', 0.0088676181280723243) + +[98357] +centroid = (0.8435849099315238, -2.1752981643533107) +station = ('kuil', 0.0070361251718461994) +zone = ('waz515', 0.0062377645839956745) + +[98358] +centroid = (0.83887149120688054, -2.1417487298864821) +station = ('knuw', 0.0050489410199511114) +zone = ('waz510', 0.0012083519660256198) + +[98359] +centroid = (0.8278284963235395, -2.1393358645554779) +station = ('kpwt', 0.0023905155031018863) +zone = ('waz508', 0.0021536055224837185) + +[98360] +centroid = (0.821015376695577, -2.1318273359403506) +station = ('kplu', 0.0020133570428308226) +zone = ('waz509', 0.0048314598842706868) + +[98361] +centroid = (0.8122528813727693, -2.1206573159940496) +station = ('ksmp', 0.013156602847917682) +zone = ('waz520', 0.0066119178303035032) + +[98362] +centroid = (0.83655268166926577, -2.1531783326524327) +station = ('kclm', 0.0035890009955293648) +zone = ('waz514', 0.0028209388406350267) + +[98363] +centroid = (0.83780593279195292, -2.1610814627581432) +station = ('kclm', 0.0042380510241353427) +zone = ('waz515', 0.0049579120046873799) + +[98364] +centroid = (0.83508960706390412, -2.139570576433286) +station = ('kpae', 0.0037711973881223797) +zone = ('waz510', 0.0046820375493548229) + +[98365] +centroid = (0.83574794525775631, -2.1415429032077946) +station = ('kpae', 0.0049228928867375487) +zone = ('waz510', 0.004047193710995863) + +[98366] +centroid = (0.82966053353277303, -2.1394061664177482) +station = ('kpwt', 0.0021121507062420749) +zone = ('waz508', 0.0015432752524534073) + +[98367] +centroid = (0.82835532395825406, -2.1415092707131089) +station = ('kpwt', 0.00090150232187414354) +zone = ('waz511', 0.0032198413165935185) + +[98368] +centroid = (0.83835846912654932, -2.143944179552566) +station = ('knuw', 0.0059307419502488013) +zone = ('waz510', 0.0026922296572140397) + +[98370] +centroid = (0.83346501968956266, -2.1402332255903906) +station = ('kpwt', 0.0046661674582193233) +zone = ('waz508', 0.0045657961774566765) + +[98371] +centroid = (0.82378577272385245, -2.1349485431482771) +station = ('kplu', 0.0017807690554225198) +zone = ('waz509', 0.0022013560367207417) + +[98372] +centroid = (0.82389398313747608, -2.1339501799095513) +station = ('kplu', 0.0018651687361542451) +zone = ('waz509', 0.0028868167782463193) + +[98373] +centroid = (0.82283692447600576, -2.1349592245632993) +station = ('kplu', 0.00088523114914765798) +zone = ('waz509', 0.0021804797274789373) + +[98374] +centroid = (0.82255761943580918, -2.1339080127548233) +station = ('kplu', 0.00059458577151202962) +zone = ('waz509', 0.0029402087985045638) + +[98375] +centroid = (0.82211610349493214, -2.1349387169445886) +station = ('kplu', 0.00039731624836074098) +zone = ('waz509', 0.0024437501468353795) + +[98376] +centroid = (0.83508484231504609, -2.144176465422714) +station = ('kpwt', 0.0061715927252723205) +zone = ('waz510', 0.0052652350733794527) + +[98377] +centroid = (0.81201164196355857, -2.1274658104994941) +station = ('kplu', 0.011092882802812048) +zone = ('waz019', 0.0075105449538381301) + +[98380] +centroid = (0.83040336311571428, -2.1450600209032435) +station = ('kpwt', 0.0022643388074314072) +zone = ('waz511', 0.001599941727366476) + +[98381] +centroid = (0.84253458824096616, -2.1724961080524037) +station = ('kuil', 0.0060357065666539131) +zone = ('waz515', 0.0041098346808589575) + +[98382] +centroid = (0.83800905421029992, -2.1481161273300708) +station = ('kclm', 0.0052359422253734087) +zone = ('waz514', 0.0023961656036768919) + +[98383] +centroid = (0.83186703113302174, -2.1418011421239198) +station = ('kpwt', 0.0028634767177668149) +zone = ('waz511', 0.0041208058882881158) + +[98385] +centroid = (0.82268122365343543, -2.1308636349405696) +station = ('kplu', 0.0024635959776903769) +zone = ('waz509', 0.0049568776243247422) + +[98387] +centroid = (0.82136868369605809, -2.1361821418635865) +station = ('kplu', 0.0014137317804494133) +zone = ('waz509', 0.0023119349439319039) + +[98388] +centroid = (0.82396540201046775, -2.1412471048061668) +station = ('ktiw', 0.0016320415381157972) +zone = ('waz509', 0.0022467929523366167) + +[98390] +centroid = (0.82396025328917444, -2.1332691524354228) +station = ('kplu', 0.0020499294518160427) +zone = ('waz509', 0.0033531683805782162) + +[98391] +centroid = (0.82339562182286163, -2.1322044666851214) +station = ('kplu', 0.0019916475986058329) +zone = ('waz509', 0.0040093317102762177) + +[98392] +centroid = (0.833085445483839, -2.1391159879763118) +station = ('kbfi', 0.004297212485827543) +zone = ('waz508', 0.0039174598645541243) + +[98394] +centroid = (0.82572504296232851, -2.1428887265940078) +station = ('kpwt', 0.0033234229827872703) +zone = ('waz511', 0.0039545906030149826) + +[98396] +centroid = (0.82195883187603491, -2.1293316547363386) +station = ('kplu', 0.0034264199271714381) +zone = ('waz519', 0.0034551107815916676) + +[98402] +centroid = (0.82467082918753887, -2.1369642064481127) +station = ('ktcm', 0.0018253275790617305) +zone = ('waz509', 0.001593054396538325) + +[98403] +centroid = (0.82494673083569414, -2.1373045805588369) +station = ('ktcm', 0.0020452388342316425) +zone = ('waz509', 0.0017548933961932264) + +[98404] +centroid = (0.82395215496144514, -2.1364861258594066) +station = ('ktcm', 0.001335322416847734) +zone = ('waz509', 0.0012878148864911127) + +[98405] +centroid = (0.8245920973849814, -2.1375466053662109) +station = ('ktcm', 0.0016743836579633533) +zone = ('waz509', 0.001367714418981994) + +[98406] +centroid = (0.82491428516489962, -2.1382480880991723) +station = ('ktiw', 0.00075464484907669519) +zone = ('waz509', 0.0016403323155420786) + +[98407] +centroid = (0.82537257371988826, -2.1383380772754053) +station = ('ktiw', 0.00079802738991513575) +zone = ('waz509', 0.0021017621240262316) + +[98408] +centroid = (0.82375001092747913, -2.1370948967025019) +station = ('ktcm', 0.00093549948608755932) +zone = ('waz509', 0.00083081022244831809) + +[98409] +centroid = (0.82398664266746457, -2.1377067916849586) +station = ('ktcm', 0.0010641043469200619) +zone = ('waz509', 0.00075821607949402251) + +[98416] +centroid = (0.8248866042429629, -2.1377001943403862) +station = ('ktiw', 0.0011274880672993031) +zone = ('waz509', 0.0016322955984310365) + +[98418] +centroid = (0.82420082947326934, -2.1370949839689648) +station = ('ktcm', 0.0013506102541310052) +zone = ('waz509', 0.0011487468308128909) + +[98421] +centroid = (0.82485372223985542, -2.1362866521791961) +station = ('ktcm', 0.0021679826273439248) +zone = ('waz509', 0.0020007065997917481) + +[98422] +centroid = (0.82537323694500397, -2.1361528203321529) +station = ('ktcm', 0.0026764220064386507) +zone = ('waz509', 0.0024783338878888212) + +[98424] +centroid = (0.82441222375227086, -2.1354835040173059) +station = ('ktcm', 0.002136457466934799) +zone = ('waz509', 0.0021091344715955976) + +[98430] +centroid = (0.82236135716142245, -2.1392006888049107) +station = ('kgrf', 0.0002049563529315441) +zone = ('waz509', 0.0011828171083574327) + +[98433] +centroid = (0.82227367181980227, -2.1395827588314646) +station = ('kgrf', 0.00046881497726600631) +zone = ('waz509', 0.0014227052923967097) + +[98438] +centroid = (0.82260214278502752, -2.1379753978568408) +station = ('ktcm', 0.0003591393556296115) +zone = ('waz509', 0.00068019113046408216) + +[98439] +centroid = (0.82261856633328889, -2.1382498334284246) +station = ('ktcm', 0.00046259164742639981) +zone = ('waz509', 0.00066632635655804987) + +[98443] +centroid = (0.82393112374395872, -2.1358031436165161) +station = ('ktcm', 0.0016569386268818383) +zone = ('waz509', 0.0016923368236775604) + +[98444] +centroid = (0.82297581777787954, -2.1371352661681007) +station = ('ktcm', 0.00041294428188238592) +zone = ('waz509', 0.00072174511064511014) + +[98445] +centroid = (0.82274763343147372, -2.136455826943592) +station = ('ktcm', 0.00088910151272527218) +zone = ('waz509', 0.0012370033608684542) + +[98446] +centroid = (0.82260647120157249, -2.1358610710943897) +station = ('ktcm', 0.0013149071801604407) +zone = ('waz509', 0.001663677673925918) + +[98447] +centroid = (0.82281969807628863, -2.1370411929214184) +station = ('ktcm', 0.00048461655098255) +zone = ('waz509', 0.00085289348395642709) + +[98465] +centroid = (0.82469880681544838, -2.1386577866877854) +station = ('ktiw', 0.00054815032027134857) +zone = ('waz509', 0.0014714051417906333) + +[98466] +centroid = (0.82425006521146804, -2.1387166042835775) +station = ('ktiw', 0.00084391267883527417) +zone = ('waz509', 0.0010594146850320205) + +[98467] +centroid = (0.8238526362874965, -2.1392102532092117) +station = ('ktiw', 0.0011252712619224238) +zone = ('waz509', 0.00094907687982900759) + +[98498] +centroid = (0.82308320788675471, -2.1389554874982983) +station = ('kgrf', 0.00074316688570058445) +zone = ('waz509', 0.00061315774957898831) + +[98499] +centroid = (0.82324899671240159, -2.1380867498631182) +station = ('ktcm', 0.00040355253159722859) +zone = ('waz509', 2.9436126614502202e-05) + +[98501] +centroid = (0.81985975929124644, -2.1445905447877496) +station = ('kolm', 0.00031701615870421821) +zone = ('waz504', 0.0044387577921003209) + +[98502] +centroid = (0.821832854010626, -2.1471383938831035) +station = ('kolm', 0.0025606992430374561) +zone = ('waz509', 0.0063166495474679379) + +[98503] +centroid = (0.8206892793781343, -2.1432137592606066) +station = ('kolm', 0.0015601888723459421) +zone = ('waz509', 0.0043377870188626277) + +[98506] +centroid = (0.82219480039090453, -2.1444969253266724) +station = ('kolm', 0.0024964050728737979) +zone = ('waz509', 0.0044839388623829357) + +[98512] +centroid = (0.8198683812177513, -2.1478626531628033) +station = ('kolm', 0.0019522274354301801) +zone = ('waz504', 0.0048629837888157666) + +[98513] +centroid = (0.81990384630815183, -2.142111391851754) +station = ('kolm', 0.0019859027197978579) +zone = ('waz509', 0.0043408051151149875) + +[98516] +centroid = (0.82221909537409232, -2.1431641570032647) +station = ('kolm', 0.0027950845819635873) +zone = ('waz509', 0.003603555455449747) + +[98520] +centroid = (0.82389380860455097, -2.1599205046463017) +station = ('khqm', 0.0046820006595666231) +zone = ('waz517', 0.0032471609688081589) + +[98524] +centroid = (0.82649703699707067, -2.1443521328119273) +station = ('kpwt', 0.0028604299846480045) +zone = ('waz511', 0.0027852129002996356) + +[98526] +centroid = (0.82823196408672306, -2.1640467946105741) +station = ('khqm', 0.0085361765074222617) +zone = ('waz517', 0.0046277385221726794) + +[98527] +centroid = (0.81306411040909621, -2.1628944933318226) +station = ('khqm', 0.0066596563499042635) +zone = ('waz021', 0.0023146655266365148) + +[98528] +centroid = (0.82803795328707142, -2.1450328810333752) +station = ('kpwt', 0.0020431363974993148) +zone = ('waz511', 0.0012297794629612393) + +[98530] +centroid = (0.81664845818733189, -2.1436806522888072) +station = ('kcls', 0.0026849302864246959) +zone = ('waz504', 0.0015033541661292284) + +[98531] +centroid = (0.81559998654578147, -2.1450580661344811) +station = ('kcls', 0.0012764107186187205) +zone = ('waz504', 0.00018375510431729134) + +[98532] +centroid = (0.81378227848970686, -2.1476742623233434) +station = ('kcls', 0.001279340735037889) +zone = ('waz504', 0.0024842462343563089) + +[98533] +centroid = (0.81455790280929319, -2.1366248795349403) +station = ('kplu', 0.007649977476561062) +zone = ('waz504', 0.005784421238584872) + +[98535] +centroid = (0.82216231981352494, -2.1666159716293873) +station = ('khqm', 0.0034459214500173726) +zone = ('waz517', 0.0019661624030688305) + +[98536] +centroid = (0.82370772159970329, -2.1660299075198601) +station = ('khqm', 0.0044733126377816757) +zone = ('waz517', 0.00091905898717640339) + +[98537] +centroid = (0.81737957661099236, -2.1571827288217458) +station = ('khqm', 0.0046405290195442612) +zone = ('waz512', 0.0040680302803092058) + +[98538] +centroid = (0.81127734704065957, -2.1493055168554274) +station = ('kcls', 0.0039776438067298482) +zone = ('waz020', 0.0033613883220763589) + +[98541] +centroid = (0.82136501850462895, -2.1535553761307411) +station = ('kshn', 0.0042812518503019684) +zone = ('waz512', 0.0014450734722035105) + +[98542] +centroid = (0.81201797750874338, -2.1431008190047098) +station = ('kcls', 0.0035292640238665041) +zone = ('waz504', 0.0036421339239498187) + +[98544] +centroid = (0.81574893294414663, -2.1472260094115536) +station = ('kcls', 0.0011728403706264372) +zone = ('waz504', 0.0015842664420921862) + +[98546] +centroid = (0.82588744584922658, -2.1454394380293347) +station = ('kshn', 0.0028963169115108671) +zone = ('waz511', 0.003145627494318173) + +[98547] +centroid = (0.81653394713510863, -2.1648358230588158) +station = ('khqm', 0.0034159880148782796) +zone = ('waz021', 0.0059413198519970706) + +[98548] +centroid = (0.82698852171443227, -2.1539384409949687) +station = ('kshn', 0.0042026287329657115) +zone = ('waz511', 0.0056178966713075545) + +[98550] +centroid = (0.82194165783619544, -2.162910829613621) +station = ('khqm', 0.0022205619390478905) +zone = ('waz517', 0.0020699026055139738) + +[98552] +centroid = (0.8258056073606006, -2.162885277993372) +station = ('khqm', 0.0060836020842239928) +zone = ('waz517', 0.0024993577110727873) + +[98555] +centroid = (0.82963759990640173, -2.1478172746022519) +station = ('kshn', 0.0053296679582346971) +zone = ('waz511', 0.0012805203494911654) + +[98557] +centroid = (0.82107635849964156, -2.1514380648552689) +station = ('kshn', 0.0036692979654094245) +zone = ('waz512', 0.002896933436903493) + +[98558] +centroid = (0.81915180138675991, -2.1390269761844598) +station = ('kgrf', 0.0031903205072338885) +zone = ('waz509', 0.004173321279240849) + +[98559] +centroid = (0.8195860567579486, -2.152468559605524) +station = ('kshn', 0.0053169330006578143) +zone = ('waz512', 0.0027878059791006105) + +[98560] +centroid = (0.82558175143073964, -2.1541866791744799) +station = ('kshn', 0.0036673032422627908) +zone = ('waz512', 0.0043848020245995153) + +[98562] +centroid = (0.82446547374774914, -2.1677046032970262) +station = ('khqm', 0.0057054679331313037) +zone = ('waz517', 0.0022181078018092696) + +[98563] +centroid = (0.82368368841590334, -2.1574952300243151) +station = ('khqm', 0.0054743480655033809) +zone = ('waz512', 0.0026725439921331563) + +[98564] +centroid = (0.81069630947937821, -2.1366259616390764) +station = ('kcls', 0.0078358210336900592) +zone = ('waz040', 0.0073204949660052206) + +[98565] +centroid = (0.81294495678106271, -2.1450439464208326) +station = ('kcls', 0.0020061047732792005) +zone = ('waz504', 0.0024839706038281119) + +[98568] +centroid = (0.81777061762990166, -2.1522302872560419) +station = ('kcls', 0.0050223445026558785) +zone = ('waz512', 0.004253707198025888) + +[98569] +centroid = (0.82019556063933008, -2.1665942073736151) +station = ('khqm', 0.0024673232190688225) +zone = ('waz517', 0.0036673960769048478) + +[98570] +centroid = (0.8138594744025226, -2.1406628558390617) +station = ('kcls', 0.0040347148726723762) +zone = ('waz504', 0.0033413196464209603) + +[98571] +centroid = (0.82370161294732136, -2.1671903245796336) +station = ('khqm', 0.0048784221962274209) +zone = ('waz517', 0.0017055721070425808) + +[98572] +centroid = (0.81238685284615231, -2.1522367798808593) +station = ('kcls', 0.0046351757459366519) +zone = ('waz020', 0.0015361300231722282) + +[98575] +centroid = (0.82756386950235217, -2.1607671464131513) +station = ('khqm', 0.0079921892958820795) +zone = ('waz517', 0.0047508858875988866) + +[98576] +centroid = (0.81746251465704722, -2.1404431014329428) +station = ('kolm', 0.0038528710960104222) +zone = ('waz504', 0.0037036301305869153) + +[98577] +centroid = (0.81405383426802469, -2.1574082777209811) +station = ('khqm', 0.006857397312451368) +zone = ('waz020', 0.003307641979463228) + +[98579] +centroid = (0.81660815853490343, -2.1489448969253804) +station = ('kcls', 0.0025679797750064806) +zone = ('waz504', 0.0029726062775759219) + +[98580] +centroid = (0.82028647484006656, -2.138410246639975) +station = ('kgrf', 0.0020815161708243797) +zone = ('waz509', 0.0029980265574382587) + +[98581] +centroid = (0.80909753552467378, -2.1479298308857127) +station = ('kkls', 0.0046693200661304781) +zone = ('waz022', 0.0033633374650898075) + +[98582] +centroid = (0.8119914310508205, -2.1402229106945114) +station = ('kcls', 0.0050487491802571477) +zone = ('waz504', 0.0047337436845850348) + +[98583] +centroid = (0.82032002006828986, -2.1552476822800597) +station = ('kshn', 0.005836467226262727) +zone = ('waz512', 0.0010370874797930095) + +[98584] +centroid = (0.82444899783961034, -2.1492998794419433) +station = ('kshn', 0.00016439474178714356) +zone = ('waz511', 0.005011562342307734) + +[98585] +centroid = (0.81246336808055986, -2.1376282344153266) +station = ('kcls', 0.0064376679087444714) +zone = ('waz504', 0.0058439538090375069) + +[98586] +centroid = (0.81247595190446664, -2.1612553673648121) +station = ('kast', 0.0070350138696525242) +zone = ('waz021', 0.0012184719062880436) + +[98587] +centroid = (0.82569224822568354, -2.1677325111117658) +station = ('khqm', 0.0067676198574832631) +zone = ('waz517', 0.0029259462833690951) + +[98588] +centroid = (0.82820014673445919, -2.1471044821357372) +station = ('kshn', 0.0040510190591913579) +zone = ('waz511', 0.0010099002766589364) + +[98589] +centroid = (0.81740781603828971, -2.1435499271278329) +station = ('kolm', 0.0025208571820861544) +zone = ('waz504', 0.0022032586300385088) + +[98590] +centroid = (0.81520617045336141, -2.1641825812263793) +station = ('khqm', 0.0045833794799722723) +zone = ('waz021', 0.0045689693681800836) + +[98591] +centroid = (0.81054875934441462, -2.1422799208443268) +station = ('kcls', 0.0050443159794776515) +zone = ('waz022', 0.0050580928682624178) + +[98592] +centroid = (0.82599982759976243, -2.148187476389892) +station = ('kshn', 0.001732433307260536) +zone = ('waz511', 0.0032873067812888841) + +[98593] +centroid = (0.80987960010920002, -2.1469305775290684) +station = ('kcls', 0.0048535296455795626) +zone = ('waz022', 0.0038747358313667287) + +[98595] +centroid = (0.81835060799363191, -2.1661870395124172) +station = ('khqm', 0.0025472655422463029) +zone = ('waz517', 0.0053724410907275751) + +[98596] +centroid = (0.81144297878667382, -2.1459290377911038) +station = ('kcls', 0.0032930655749922981) +zone = ('waz504', 0.0040402555799596189) + +[98597] +centroid = (0.81758946990683723, -2.1379027398000803) +station = ('kgrf', 0.0048000573912390151) +zone = ('waz509', 0.0056891628962183853) + +[98601] +centroid = (0.801864280239171, -2.1356287852242417) +station = ('kvuo', 0.0066911955459254928) +zone = ('waz040', 0.0023111654795366305) + +[98602] +centroid = (0.8005320180612463, -2.1164820869975509) +station = ('kdls', 0.0045337093136354392) +zone = ('waz024', 0.0053599715634971455) + +[98603] +centroid = (0.80382044526480623, -2.1365405626787761) +station = ('kspb', 0.0074519385193152401) +zone = ('waz040', 0.0011187988383788258) + +[98604] +centroid = (0.79946110148551497, -2.1382164278265412) +station = ('kvuo', 0.0037107145237120845) +zone = ('waz039', 0.0011679422426681514) + +[98605] +centroid = (0.79895748672985201, -2.1234628455001676) +station = ('kczk', 0.003278537980248165) +zone = ('orz014', 0.0035725348978601734) + +[98606] +centroid = (0.7981345465342442, -2.1372668989002861) +station = ('kpdx', 0.0030983000487836308) +zone = ('waz039', 0.00085712435821715691) + +[98607] +centroid = (0.79660712163936143, -2.1359335895248099) +station = ('kttd', 0.0016708360813030381) +zone = ('waz039', 0.0024550278007878772) + +[98610] +centroid = (0.80051079485754195, -2.1304399562646479) +station = ('kczk', 0.0041223956128913965) +zone = ('waz023', 0.0036984538311178147) + +[98611] +centroid = (0.80817711869034203, -2.1450216585662849) +station = ('kkls', 0.0032894558076536542) +zone = ('waz022', 0.0021436768644792527) + +[98612] +centroid = (0.80661578204809292, -2.1524319425978171) +station = ('kkls', 0.0054231448697624465) +zone = ('orz005', 0.0049411937617793505) + +[98613] +centroid = (0.79825642287591103, -2.111248996488126) +station = ('kdls', 0.0032248001386815457) +zone = ('waz024', 0.0011135716837032232) + +[98614] +centroid = (0.80803490926288957, -2.1626255206407978) +station = ('kast', 0.0025845711194467402) +zone = ('waz021', 0.0035548131179594126) + +[98616] +centroid = (0.80622482829564623, -2.1316207587700844) +station = ('kczk', 0.0096774560877960839) +zone = ('waz019', 0.0024344508501030599) + +[98617] +centroid = (0.79662118899313239, -2.1147716992371817) +station = ('kdls', 0.00046027238152853014) +zone = ('waz024', 0.003816992468971445) + +[98619] +centroid = (0.80243049995510307, -2.1166436346731157) +station = ('kdls', 0.0064059341472568858) +zone = ('waz024', 0.0065495840776999053) + +[98620] +centroid = (0.80066014268163521, -2.1079358903289429) +station = ('kdls', 0.0065499677905453812) +zone = ('waz521', 0.0022870731999974064) + +[98621] +centroid = (0.80946873214998794, -2.1561894444911434) +station = ('kast', 0.00575328181075015) +zone = ('waz020', 0.0025570955591926073) + +[98624] +centroid = (0.8089850839609678, -2.1640722938709458) +station = ('kast', 0.0037531762193731316) +zone = ('waz021', 0.0033111641999721332) + +[98625] +centroid = (0.80350160851705199, -2.142101652914528) +station = ('kkls', 0.0024475463343333671) +zone = ('orz005', 0.0033837025635445315) + +[98626] +centroid = (0.80585494066727104, -2.1428106405632734) +station = ('kkls', 0.0018046800787469093) +zone = ('waz022', 0.0020452320388156409) + +[98628] +centroid = (0.80089412152115746, -2.1132786573285629) +station = ('kdls', 0.0048442368418869638) +zone = ('waz024', 0.0038090041185241744) + +[98629] +centroid = (0.8006977894336007, -2.1401084170955804) +station = ('kspb', 0.0035697323790659847) +zone = ('waz039', 0.0026499435462469744) + +[98631] +centroid = (0.80991595531751903, -2.164758801678925) +station = ('kast', 0.0047924824415241443) +zone = ('waz021', 0.0031476474023959399) + +[98632] +centroid = (0.80652875993158846, -2.1477540413234522) +station = ('kkls', 0.0025111896850843092) +zone = ('waz022', 0.0014577802781986289) + +[98635] +centroid = (0.79846994645659997, -2.1150658221227276) +station = ('kdls', 0.0023189596911978023) +zone = ('waz024', 0.0037791561882316209) + +[98638] +centroid = (0.80972885602170519, -2.160042293721506) +station = ('kast', 0.0045066396042771377) +zone = ('waz021', 0.0016544669098624398) + +[98639] +centroid = (0.79709028113619096, -2.1291213076548883) +station = ('kczk', 0.001298114302357726) +zone = ('waz023', 0.00051682975308537705) + +[98640] +centroid = (0.81302189089449051, -2.1646839968671849) +station = ('khqm', 0.0067944757364561672) +zone = ('waz021', 0.0032386869302412848) + +[98641] +centroid = (0.81238821420296892, -2.1647307542378456) +station = ('kast', 0.0071406386536242272) +zone = ('waz021', 0.0029872770402467174) + +[98642] +centroid = (0.79949510049934391, -2.1414126667390105) +station = ('kspb', 0.0022211741197106054) +zone = ('waz039', 0.0023718137777245575) + +[98643] +centroid = (0.80800787411277608, -2.1575708900473893) +station = ('kast', 0.0040715191819741207) +zone = ('waz021', 0.0039477200459082399) + +[98644] +centroid = (0.8086041833050126, -2.1652025690945371) +station = ('kast', 0.0037709252389076442) +zone = ('waz021', 0.0041416683302035419) + +[98645] +centroid = (0.80864361029281506, -2.1425676034649332) +station = ('kkls', 0.0041184288509192911) +zone = ('waz022', 0.0033663716368995621) + +[98647] +centroid = (0.8083535540244261, -2.1537587768017681) +station = ('kcls', 0.0081330859242996576) +zone = ('waz020', 0.003269663660020827) + +[98648] +centroid = (0.79772462105282838, -2.128539170536178) +station = ('kczk', 0.001126545438519785) +zone = ('waz023', 0.00063190349848994806) + +[98649] +centroid = (0.80833428558948417, -2.1386322176142438) +station = ('kkls', 0.0055993163866165192) +zone = ('waz040', 0.00490729873702933) + +[98650] +centroid = (0.80194159832503442, -2.1212868213486584) +station = ('kczk', 0.0064386290013266042) +zone = ('orz014', 0.0064083834597382216) + +[98651] +centroid = (0.79831227341197486, -2.1220317278734098) +station = ('kczk', 0.0038722832176174265) +zone = ('orz014', 0.0027641688272662095) + +[98660] +centroid = (0.79724887920531973, -2.1418767672404089) +station = ('kvuo', 0.0013868294376210943) +zone = ('waz039', 0.0026035554695786438) + +[98661] +centroid = (0.79656943998081087, -2.1402103094173119) +station = ('kvuo', 0.00050967849916579383) +zone = ('waz039', 0.0021203375168308064) + +[98662] +centroid = (0.79741472039084427, -2.139387020155854) +station = ('kvuo', 0.001531865876491261) +zone = ('waz039', 0.0010979771635759885) + +[98663] +centroid = (0.79687188808688891, -2.1408760303539003) +station = ('kvuo', 0.0007287787086040497) +zone = ('waz039', 0.0022096612556462038) + +[98664] +centroid = (0.79621065264647839, -2.1393753613564503) +station = ('kpdx', 0.00069016327913142233) +zone = ('waz039', 0.0021893555628598443) + +[98665] +centroid = (0.79725769311804229, -2.1408306343400558) +station = ('kvuo', 0.0011042085871286339) +zone = ('waz039', 0.001953909371839025) + +[98670] +centroid = (0.8003901227930591, -2.1143080350680967) +station = ('kdls', 0.0042407027913285173) +zone = ('waz024', 0.0039973294784805217) + +[98671] +centroid = (0.79612181538755189, -2.1334633726745849) +station = ('kttd', 0.0024502035023737175) +zone = ('orz009', 0.0044412814417002676) + +[98672] +centroid = (0.80004229612642919, -2.1197343684323022) +station = ('kdls', 0.005209149915385315) +zone = ('orz014', 0.0047479296826007482) + +[98673] +centroid = (0.79685099649574254, -2.1123446792859433) +station = ('kdls', 0.0018225589432810079) +zone = ('waz024', 0.0021935992116356713) + +[98674] +centroid = (0.80200090461301721, -2.1409175691900977) +station = ('kspb', 0.0040443695760673699) +zone = ('waz040', 0.0024549772405541258) + +[98675] +centroid = (0.7998573784921803, -2.1352868577704833) +station = ('kttd', 0.0049423645754153849) +zone = ('waz039', 0.0027077871504943107) + +[98682] +centroid = (0.79714794681467682, -2.1377097936512719) +station = ('kpdx', 0.00213163773605413) +zone = ('waz039', 0.0012744723534071419) + +[98683] +centroid = (0.79592750788192734, -2.1382058336779814) +station = ('kttd', 0.001473015917707591) +zone = ('waz039', 0.0023862557303355528) + +[98684] +centroid = (0.79640344171565358, -2.1382873231007569) +station = ('kpdx', 0.001326835621840263) +zone = ('waz039', 0.0019074461998649771) + +[98685] +centroid = (0.79788060112807901, -2.1413987041049949) +station = ('kvuo', 0.0017981632474844186) +zone = ('waz039', 0.0020884304177906997) + +[98686] +centroid = (0.79802373558003503, -2.1401994709226573) +station = ('kvuo', 0.0018887001429695801) +zone = ('waz039', 0.0012399756770289907) + +[98801] +centroid = (0.82769785842902777, -2.1002704566140618) +station = ('keat', 0.0016654921849856184) +zone = ('waz041', 0.0038400890128532715) + +[98802] +centroid = (0.82881191954386824, -2.0975144770054075) +station = ('keat', 0.0015463777595175756) +zone = ('waz041', 0.0025336986907709877) + +[98811] +centroid = (0.83276365912964867, -2.1009627414618652) +station = ('keat', 0.0058579799958086223) +zone = ('waz041', 0.0023327602758036739) + +[98812] +centroid = (0.84043097780012244, -2.0899074594605898) +station = ('komk', 0.0060693734971981432) +zone = ('waz043', 0.0048157374132563394) + +[98813] +centroid = (0.83846802344369686, -2.0867244501438504) +station = ('komk', 0.0074523195460081309) +zone = ('waz043', 0.0055377609377880452) + +[98814] +centroid = (0.84136863848746379, -2.0971709438487371) +station = ('komk', 0.0087238123543575494) +zone = ('waz042', 0.0033192233729004636) + +[98815] +centroid = (0.82834329863970779, -2.1027427154995117) +station = ('keat', 0.0034515682902238761) +zone = ('waz041', 0.004219562181300953) + +[98816] +centroid = (0.83780903947802143, -2.1003290473170511) +station = ('keat', 0.010650663938856445) +zone = ('waz042', 0.0050815746648886296) + +[98817] +centroid = (0.83411140237803882, -2.0942963691174104) +station = ('keat', 0.0072418326830333436) +zone = ('waz041', 0.0038861432896811609) + +[98819] +centroid = (0.84851511600255747, -2.0912787995604671) +station = ('komk', 0.0043848924381713278) +zone = ('waz043', 0.0063206181585501314) + +[98821] +centroid = (0.82989912004152055, -2.1041447384876384) +station = ('keat', 0.0049724588613342191) +zone = ('waz041', 0.0041982246789310741) + +[98822] +centroid = (0.83604632674667734, -2.1040022847140909) +station = ('keat', 0.0096808613416671761) +zone = ('waz041', 0.006117178021868017) + +[98823] +centroid = (0.82575026297001974, -2.0877718920411423) +station = ('keph', 0.0012467889956959128) +zone = ('waz034', 0.0054744418377411308) + +[98824] +centroid = (0.8216624924223388, -2.0919286729074469) +station = ('keph', 0.0056122297281651036) +zone = ('waz026', 0.0059079830021246758) + +[98826] +centroid = (0.83397320720786583, -2.1091111601406509) +station = ('keat', 0.010100966326706122) +zone = ('waz041', 0.0077699196180850286) + +[98827] +centroid = (0.8529190529442372, -2.090393446390808) +station = ('cwyy', 0.0048180970216318893) +zone = ('waz043', 0.0097779191997833768) + +[98828] +centroid = (0.82571663047533383, -2.0975062914112157) +station = ('keat', 0.0015903498147753026) +zone = ('waz041', 0.0056007562896214468) + +[98829] +centroid = (0.84294618923846398, -2.0910014841956177) +station = ('komk', 0.0044672790482121055) +zone = ('waz043', 0.0042047025542793224) + +[98830] +centroid = (0.83593183314774644, -2.0860741753711425) +station = ('komk', 0.009971371611557929) +zone = ('waz044', 0.0043957389833445496) + +[98831] +centroid = (0.83705069391802989, -2.0961905749545995) +station = ('keat', 0.0098311008213208487) +zone = ('waz041', 0.0059249116641662512) + +[98832] +centroid = (0.82679091553652151, -2.0773650347635684) +station = ('kmwh', 0.0045780554226456313) +zone = ('waz035', 0.0048863983019451539) + +[98833] +centroid = (0.85124835397105814, -2.105568316292028) +station = ('cydc', 0.012189765627060273) +zone = ('waz042', 0.0088240853619017262) + +[98834] +centroid = (0.83985765459413486, -2.095555851065527) +station = ('komk', 0.0087925412465944246) +zone = ('waz042', 0.0050276225109223936) + +[98836] +centroid = (0.82860668627712619, -2.1020921789274158) +station = ('keat', 0.0031367285651396153) +zone = ('waz041', 0.0037230898685915947) + +[98837] +centroid = (0.82292103189265942, -2.0822820286921644) +station = ('kmwh', 0.00088353317669463628) +zone = ('waz034', 0.0032820834230412976) + +[98840] +centroid = (0.84325807957579535, -2.0870637072438534) +station = ('komk', 0.0027446180059887124) +zone = ('waz043', 0.0016028777332850231) + +[98841] +centroid = (0.84403508270549077, -2.0816293104585033) +station = ('komk', 0.0034276953111508596) +zone = ('waz043', 0.002133440154889474) + +[98843] +centroid = (0.8335131558703327, -2.0954064857881409) +station = ('keat', 0.0064477727613541785) +zone = ('waz041', 0.0029412469945983067) + +[98844] +centroid = (0.85394213004517128, -2.0809203228097584) +station = ('cwyy', 0.0029934870631278514) +zone = ('waz038', 0.0091924752399347442) + +[98845] +centroid = (0.82783722296979945, -2.0933257566137913) +station = ('keat', 0.003134468155239521) +zone = ('waz041', 0.0048066324819007137) + +[98846] +centroid = (0.83801769359009737, -2.0938918890632605) +station = ('komk', 0.009491412526061534) +zone = ('waz044', 0.006939861933082798) + +[98847] +centroid = (0.82763195479647245, -2.1056302580271811) +station = ('keat', 0.0052524720462359233) +zone = ('waz041', 0.0061714337095084898) + +[98848] +centroid = (0.8232481240477757, -2.0916538708167205) +station = ('keph', 0.0044951707526582532) +zone = ('waz034', 0.0050000082654164842) + +[98849] +centroid = (0.84720009767764237, -2.0840893345858968) +station = ('komk', 0.0017938350425919349) +zone = ('waz043', 0.0033762224203892927) + +[98850] +centroid = (0.82571394266828579, -2.0957212559187384) +station = ('keat', 0.0021498278488005637) +zone = ('waz041', 0.0058399953860858072) + +[98851] +centroid = (0.82749730264468113, -2.0846150801164751) +station = ('keph', 0.0021581127428201849) +zone = ('waz044', 0.0052994271323058718) + +[98852] +centroid = (0.84184253028596534, -2.1040964626805283) +station = ('keat', 0.015142067087037511) +zone = ('waz042', 0.0018904042956341166) + +[98853] +centroid = (0.82833338516955635, -2.0815475592363399) +station = ('keph', 0.0040894010528964445) +zone = ('waz044', 0.0061209049025958018) + +[98855] +centroid = (0.84953044384161258, -2.0813576499604305) +station = ('komk', 0.0047360865297988919) +zone = ('waz043', 0.0061192584408817927) + +[98856] +centroid = (0.84374500898380922, -2.0990018640472496) +station = ('komk', 0.0089232553061586797) +zone = ('waz042', 0.0019980905163019878) + +[98857] +centroid = (0.82004530524402597, -2.077859207287978) +station = ('kmwh', 0.0048899427580041382) +zone = ('waz034', 0.0052476341997085068) + +[98858] +centroid = (0.83163933547880664, -2.0926982932944065) +station = ('keat', 0.0055876230999960218) +zone = ('waz041', 0.0037722473764892736) + +[98859] +centroid = (0.85168451175113147, -2.0761806368798723) +station = ('cwyy', 0.0068415022036677955) +zone = ('waz038', 0.0054972234300741983) + +[98860] +centroid = (0.82836740163667777, -2.0804407586911879) +station = ('keph', 0.0046854295559239775) +zone = ('waz044', 0.0067191882635598416) + +[98862] +centroid = (0.84827773377099369, -2.0999894062446129) +station = ('komk', 0.009588912993399059) +zone = ('waz042', 0.0055763213417349541) + +[98901] +centroid = (0.81546364142461558, -2.1014818198347007) +station = ('kykm', 0.0031201896658340049) +zone = ('waz026', 0.0039985128774680367) + +[98902] +centroid = (0.81326536432514374, -2.1037125600582596) +station = ('kykm', 0.00052374612900785969) +zone = ('waz027', 0.0039051824275304998) + +[98903] +centroid = (0.81234744331164233, -2.112239627918266) +station = ('kykm', 0.0058830914812774233) +zone = ('waz520', 0.0038153654866495794) + +[98908] +centroid = (0.81358882619541584, -2.1070332583996891) +station = ('kykm', 0.0024399914562245302) +zone = ('waz520', 0.004743426172938406) + +[98921] +centroid = (0.81037560522932428, -2.0999595087545262) +station = ('kykm', 0.0034986371581532303) +zone = ('waz027', 8.9108729670725129e-05) + +[98922] +centroid = (0.82496535349881284, -2.1097362149056678) +station = ('keln', 0.0057852316188399481) +zone = ('waz026', 0.0087778960384296955) + +[98923] +centroid = (0.81448100360245035, -2.1069201087042821) +station = ('kykm', 0.0028118998835328143) +zone = ('waz520', 0.004399716479009907) + +[98925] +centroid = (0.82479527116320606, -2.1165761078843559) +station = ('ksmp', 0.00086816641563014485) +zone = ('waz519', 0.0078903514355941878) + +[98926] +centroid = (0.82055249792465546, -2.1024007705924608) +station = ('keln', 0.00094882140284530212) +zone = ('waz026', 0.002125316482360376) + +[98929] +centroid = (0.81824005883881057, -2.1168251489153231) +station = ('ksmp', 0.0070331430761581219) +zone = ('waz520', 0.0034295944437822377) + +[98930] +centroid = (0.80754813693450833, -2.0925097453753136) +station = ('khms', 0.0062701291592155688) +zone = ('waz027', 0.0058134554080512607) + +[98932] +centroid = (0.80865839323157951, -2.0971218477368789) +station = ('kykm', 0.0061021743890422248) +zone = ('waz027', 0.0025665308113483978) + +[98933] +centroid = (0.8098716065012258, -2.1054121965904367) +station = ('kykm', 0.0031018294455420511) +zone = ('waz027', 0.0038786988203555264) + +[98934] +centroid = (0.81998833769724078, -2.1016391438134754) +station = ('keln', 0.0016698414848844707) +zone = ('waz026', 0.0013825732614558103) + +[98935] +centroid = (0.80516532617322312, -2.0959007455790135) +station = ('kykm', 0.0092955996105659189) +zone = ('waz027', 0.0059097430267117338) + +[98936] +centroid = (0.81224502739113535, -2.0969031405283114) +station = ('kykm', 0.0047028499902208275) +zone = ('waz027', 0.0027305804481378036) + +[98937] +centroid = (0.8170081007329979, -2.1151699135593165) +station = ('ksmp', 0.008415431473820267) +zone = ('waz520', 0.0018023667730368577) + +[98938] +centroid = (0.80962687643351106, -2.0960388360294311) +station = ('kykm', 0.0061287200089307301) +zone = ('waz027', 0.0027358303434807138) + +[98939] +centroid = (0.81152307194604789, -2.1025246540627673) +station = ('kykm', 0.0014637885500411111) +zone = ('waz027', 0.0021577760843754647) + +[98940] +centroid = (0.82862632123121116, -2.1132527391891709) +station = ('ksmp', 0.0045090428302868128) +zone = ('waz041', 0.010455564966355128) + +[98941] +centroid = (0.8242005676738815, -2.1115344276339973) +station = ('ksmp', 0.0042921927712095253) +zone = ('waz520', 0.0081127811774424439) + +[98942] +centroid = (0.81683739007886036, -2.1059982257933791) +station = ('keln', 0.004341914961880175) +zone = ('waz026', 0.0048605437893753482) + +[98943] +centroid = (0.823526242264081, -2.1112351385738655) +station = ('keln', 0.0057658048595036707) +zone = ('waz520', 0.0074707499740059189) + +[98944] +centroid = (0.81153670296750591, -2.0879420790965044) +station = ('khms', 0.0012585693365880662) +zone = ('waz028', 0.0060720778209737633) + +[98946] +centroid = (0.82170607329376111, -2.1070421072189967) +station = ('keln', 0.0024176309705187717) +zone = ('waz026', 0.0054432239711971848) + +[98947] +centroid = (0.81485008837936956, -2.1083853300646243) +station = ('kykm', 0.0038448654525841779) +zone = ('waz520', 0.0033297201222781299) + +[98948] +centroid = (0.80805194367638911, -2.0998513507007801) +station = ('kykm', 0.0053890768557516575) +zone = ('waz027', 0.0023585450517914714) + +[98950] +centroid = (0.81849773924957503, -2.0941869544266027) +station = ('khms', 0.0073948980348418868) +zone = ('waz026', 0.0039689814182100143) + +[98951] +centroid = (0.81081064599867636, -2.1033591832446086) +station = ('kykm', 0.0019454961214912274) +zone = ('waz027', 0.0024573507705615261) + +[98952] +centroid = (0.80906851069921315, -2.1077131165032186) +station = ('kykm', 0.0045957008197974412) +zone = ('waz027', 0.0055929924226544589) + +[98953] +centroid = (0.81057089011932981, -2.0983537534828138) +station = ('kykm', 0.004274464292545058) +zone = ('waz027', 0.0010370825258413333) + +[99001] +centroid = (0.83141359459335362, -2.052268177504271) +station = ('kgeg', 0.00071270783249912436) +zone = ('waz036', 0.0004490186730630791) + +[99003] +centroid = (0.83636542529381941, -2.0471434370348103) +station = ('kdew', 0.0018334747610190313) +zone = ('waz036', 0.0064746954026123193) + +[99004] +centroid = (0.82763621339984739, -2.0530511322067153) +station = ('kska', 0.0034385732614191119) +zone = ('waz036', 0.0034630403982664703) + +[99005] +centroid = (0.83503988263351481, -2.0484265507409987) +station = ('kdew', 0.0022762114759207956) +zone = ('waz036', 0.0048964353943406359) + +[99006] +centroid = (0.83748091757864651, -2.0508001287105406) +station = ('kdew', 0.00086030037559472171) +zone = ('waz036', 0.0065190303100944825) + +[99008] +centroid = (0.82908960142786059, -2.0583267912965963) +station = ('kska', 0.003880279461234998) +zone = ('waz036', 0.0042726050961337872) + +[99009] +centroid = (0.83821332754595346, -2.0464412387168553) +station = ('kdew', 0.0023534597488859875) +zone = ('waz037', 0.0078913581858770336) + +[99011] +centroid = (0.83110540435403635, -2.053347716006507) +station = ('kska', 4.3564578800688311e-05) +zone = ('waz036', 0.00041381855281867722) + +[99012] +centroid = (0.82697262176494657, -2.0453998182054827) +station = ('ksff', 0.0054574337385776273) +zone = ('waz036', 0.0064440548421931471) + +[99013] +centroid = (0.83590305266838105, -2.0565357169649072) +station = ('kska', 0.0052804319544781878) +zone = ('waz036', 0.0054472202073012109) + +[99016] +centroid = (0.83072946043315687, -2.0441475793737616) +station = ('ksff', 0.0027473765648146301) +zone = ('idz002', 0.0035643993731549065) + +[99017] +centroid = (0.82351840573573953, -2.0575120716017654) +station = ('kska', 0.0080506760696094793) +zone = ('waz033', 0.006365565568153932) + +[99018] +centroid = (0.82536257298327431, -2.0447379195399562) +station = ('ksff', 0.0071287990388435056) +zone = ('idz002', 0.0067201198386503732) + +[99019] +centroid = (0.83153026985384937, -2.0433550428137237) +station = ('ksff', 0.0029187991714197093) +zone = ('idz002', 0.0031193500351602743) + +[99020] +centroid = (0.83012398826234757, -2.0507025473520617) +station = ('kgeg', 0.0010379688485479032) +zone = ('waz036', 0.001677949924744532) + +[99021] +centroid = (0.8351098005233496, -2.0453445785346571) +station = ('ksff', 0.0032416402384258278) +zone = ('waz036', 0.0063905435352670228) + +[99022] +centroid = (0.83077288422494655, -2.0544093474306178) +station = ('kska', 0.00075405725729629552) +zone = ('waz036', 0.0011738225834984691) + +[99023] +centroid = (0.83009749416430234, -2.0450334212356114) +station = ('ksff', 0.0027308286212807315) +zone = ('waz036', 0.0052880847402184579) + +[99025] +centroid = (0.83416020178392447, -2.0433502257049883) +station = ('ksff', 0.003427021861573603) +zone = ('idz002', 0.0045317579876519316) + +[99026] +centroid = (0.83446539005692832, -2.0529704107288111) +station = ('kska', 0.003408928151345979) +zone = ('waz036', 0.003376507224907995) + +[99027] +centroid = (0.83269882014793717, -2.0442615668272097) +station = ('ksff', 0.0022701308227362801) +zone = ('idz002', 0.0041111712801402073) + +[99029] +centroid = (0.83241455837266487, -2.0565390156371937) +station = ('kska', 0.0025184368429623182) +zone = ('waz036', 0.0028837580611791734) + +[99030] +centroid = (0.82875345101392639, -2.043958630028941) +station = ('ksff', 0.0042429011784825997) +zone = ('idz002', 0.0039938221220813851) + +[99031] +centroid = (0.82769611309977575, -2.0483606296551509) +station = ('kgeg', 0.0039275061619306346) +zone = ('waz036', 0.0045010470649007968) + +[99032] +centroid = (0.82606873319863128, -2.0601870155732493) +station = ('kska', 0.006794063406766488) +zone = ('waz036', 0.0071145348118297307) + +[99033] +centroid = (0.82435963698190828, -2.0437678655416978) +station = ('ksff', 0.0082790158654303583) +zone = ('idz003', 0.0058804917679906466) + +[99034] +centroid = (0.83555313160664879, -2.0551342699354334) +station = ('kska', 0.0046380596091317268) +zone = ('waz036', 0.0047435036296400298) + +[99036] +centroid = (0.8294728233717209, -2.0468508500390055) +station = ('ksff', 0.0027997185973427309) +zone = ('waz036', 0.0042870175591216064) + +[99037] +centroid = (0.83140127256883456, -2.0454840827017691) +station = ('ksff', 0.0016271592963679584) +zone = ('waz036', 0.0048959137023163856) + +[99039] +centroid = (0.82632006061091845, -2.0466705575272748) +station = ('kgeg', 0.0057020816725207773) +zone = ('waz036', 0.0062904820785222894) + +[99040] +centroid = (0.8359840359456735, -2.0595530421757551) +station = ('kska', 0.0064338065461750204) +zone = ('waz036', 0.0067037073564335395) + +[99101] +centroid = (0.84334847017775616, -2.0581037731247767) +station = ('kdew', 0.0083848579792155081) +zone = ('waz037', 0.0038599697152188837) + +[99102] +centroid = (0.81667489992549969, -2.0464029636463588) +station = ('kpuw', 0.0017572877708112407) +zone = ('waz033', 0.0038652526764237183) + +[99103] +centroid = (0.83349952484887468, -2.0756783311211486) +station = ('keph', 0.010560915182978272) +zone = ('waz035', 0.0079193599914063953) + +[99105] +centroid = (0.81808795339449936, -2.0607445435495069) +station = ('kalw', 0.013728179074139079) +zone = ('waz033', 0.0068058722395743744) + +[99109] +centroid = (0.84287093064111795, -2.0542271350567094) +station = ('kdew', 0.0064787335372056372) +zone = ('waz037', 0.0022317809827770499) + +[99110] +centroid = (0.83796898145067411, -2.0520944648838197) +station = ('kdew', 0.001849128533068076) +zone = ('waz036', 0.0068897546434298759) + +[99111] +centroid = (0.81747258520683119, -2.0493786802078393) +station = ('kpuw', 0.0039429071842835561) +zone = ('waz033', 0.0018687524300712432) + +[99113] +centroid = (0.81320981049505281, -2.0453475455943853) +station = ('kpuw', 0.002868527566280706) +zone = ('waz032', 0.0037619233314637435) + +[99114] +centroid = (0.84919340330976001, -2.0548779508814854) +station = ('cycg', 0.011315005204569193) +zone = ('waz037', 0.0045307852371158659) + +[99115] +centroid = (0.83159413145117989, -2.084214404880095) +station = ('keph', 0.0061672280869372112) +zone = ('waz044', 0.0031502733101348062) + +[99116] +centroid = (0.83829280984008925, -2.0756742295974062) +station = ('komk', 0.010238118466354884) +zone = ('waz043', 0.0082606047746716614) + +[99117] +centroid = (0.83290722991391775, -2.0687737038805039) +station = ('kmwh', 0.012990461167792611) +zone = ('waz035', 0.0064662112786686016) + +[99118] +centroid = (0.85340563328640062, -2.0706335790913064) +station = ('cycg', 0.01347386051093895) +zone = ('waz038', 0.0063844006209848557) + +[99119] +centroid = (0.84663970736141192, -2.0475419655162104) +station = ('kdew', 0.0095620357667761773) +zone = ('waz037', 0.0038883938459174303) + +[99121] +centroid = (0.85411165387541743, -2.0676879520061306) +station = ('cycg', 0.011464550146146672) +zone = ('waz038', 0.007528903062018844) + +[99122] +centroid = (0.83230997824388531, -2.0631228513613218) +station = ('kska', 0.0066796896494461279) +zone = ('waz035', 0.0074999607896166845) + +[99123] +centroid = (0.8350664116381451, -2.0794632521370233) +station = ('keph', 0.010485464675393595) +zone = ('waz044', 0.0070423740431490335) + +[99124] +centroid = (0.8377569064932644, -2.0761189045842294) +station = ('komk', 0.010455632803078865) +zone = ('waz043', 0.0084250223305652617) + +[99125] +centroid = (0.81910116938515964, -2.0553896814181702) +station = ('kpuw', 0.0083619654347507916) +zone = ('waz033', 0.0030800230053869703) + +[99126] +centroid = (0.85052275078783401, -2.0590023733434584) +station = ('cycg', 0.010655411349957199) +zone = ('waz037', 0.0069861513151220286) + +[99128] +centroid = (0.82201429843966334, -2.0434549454601076) +station = ('kpuw', 0.0060874515889659548) +zone = ('idz003', 0.0037864598837253306) + +[99129] +centroid = (0.83802425602808495, -2.062851190863249) +station = ('kska', 0.0094257743238906448) +zone = ('waz037', 0.0095990643851079013) + +[99130] +centroid = (0.82025778162716378, -2.0452488123185999) +station = ('kpuw', 0.0043907549522115051) +zone = ('waz033', 0.0040336250601101702) + +[99131] +centroid = (0.84259974138194316, -2.0617817403640895) +station = ('kdew', 0.0097754041538297923) +zone = ('waz037', 0.006408525287084103) + +[99133] +centroid = (0.83814016334370989, -2.0784269279870666) +station = ('komk', 0.0092424257279620087) +zone = ('waz043', 0.0071366470633999471) + +[99134] +centroid = (0.82725297400269437, -2.0643347032741515) +station = ('kska', 0.0083252615448676202) +zone = ('waz035', 0.0040161700036153254) + +[99135] +centroid = (0.83190778457105585, -2.0786748520073122) +station = ('keph', 0.0080482677955418559) +zone = ('waz044', 0.0068597729046526784) + +[99136] +centroid = (0.81462619754292376, -2.058712299621777) +station = ('kalw', 0.010777893458650387) +zone = ('waz029', 0.0070443760147341581) + +[99137] +centroid = (0.84034020322572622, -2.0614948780482316) +station = ('kska', 0.010751714434327361) +zone = ('waz037', 0.0073707917952380393) + +[99138] +centroid = (0.84135067904946093, -2.0663969319584301) +station = ('kska', 0.013485731151919138) +zone = ('waz038', 0.0067019455429270331) + +[99139] +centroid = (0.85089944520029193, -2.0491496406501) +station = ('cycg', 0.0098911017709692687) +zone = ('waz037', 0.0064767489254663997) + +[99140] +centroid = (0.83970258209009518, -2.0707663113809205) +station = ('komk', 0.011858922093634299) +zone = ('waz038', 0.0073815354193133261) + +[99141] +centroid = (0.85062094301155122, -2.0619091319461922) +station = ('cycg', 0.01140243187568978) +zone = ('waz037', 0.0083352752589504718) + +[99143] +centroid = (0.81621257965993887, -2.0568398929469449) +station = ('kalw', 0.012740338071512545) +zone = ('waz033', 0.004957256889132824) + +[99144] +centroid = (0.82689771223345099, -2.068290038238191) +station = ('kska', 0.010902562010683401) +zone = ('waz035', 0.0013266369420643954) + +[99146] +centroid = (0.85447040630316484, -2.0646812209438425) +station = ('cycg', 0.009657241358205497) +zone = ('waz038', 0.008731992235700663) + +[99147] +centroid = (0.83555396936468973, -2.0683787533240698) +station = ('ksff', 0.014377813910316974) +zone = ('waz035', 0.0091241938611400144) + +[99148] +centroid = (0.83951157325675696, -2.0524549102809417) +station = ('kdew', 0.0030170316483256652) +zone = ('waz037', 0.0053750625058274493) + +[99149] +centroid = (0.82409431202902006, -2.0501328195243333) +station = ('kgeg', 0.0070212665109454092) +zone = ('waz033', 0.0050857251213330045) + +[99150] +centroid = (0.85179883081713714, -2.0691974174630103) +station = ('cycg', 0.013647043049487169) +zone = ('waz038', 0.0050161492095252367) + +[99151] +centroid = (0.84935523023800497, -2.0605991750761081) +station = ('cycg', 0.012137839319948104) +zone = ('waz037', 0.0068456200045774436) + +[99152] +centroid = (0.85249863803401682, -2.0489606738519868) +station = ('cycg', 0.0083961636683356246) +zone = ('waz037', 0.0080220681825281283) + +[99153] +centroid = (0.85365959614585829, -2.0449328379108191) +station = ('cycg', 0.0086361726312753021) +zone = ('waz037', 0.010190782448909592) + +[99154] +centroid = (0.82710688994430237, -2.0658751134186693) +station = ('kska', 0.0093241328179069147) +zone = ('waz035', 0.0029646743388151604) + +[99155] +centroid = (0.84210501035217278, -2.0763428477805528) +station = ('komk', 0.0074333607757133538) +zone = ('waz038', 0.0058408338710621236) + +[99156] +centroid = (0.84100171791881706, -2.0454702946006784) +station = ('kdew', 0.0047160542747448015) +zone = ('waz037', 0.0062176776000814381) + +[99157] +centroid = (0.85208445394922605, -2.0583256742858751) +station = ('cycg', 0.0090394572141872798) +zone = ('waz037', 0.0080837408668459395) + +[99158] +centroid = (0.82257840630720047, -2.04635358828182) +station = ('kpuw', 0.0068174297343737084) +zone = ('waz033', 0.0046992966211540886) + +[99159] +centroid = (0.82600918256455313, -2.0728554704955577) +station = ('keph', 0.0088965696977400758) +zone = ('waz035', 0.0018918617244840161) + +[99160] +centroid = (0.85239629192667976, -2.0648348622778956) +station = ('cycg', 0.011137059094374312) +zone = ('waz038', 0.0069948704254111874) + +[99161] +centroid = (0.81861235502155361, -2.0444634316084951) +station = ('kpuw', 0.0026843617738345192) +zone = ('waz033', 0.0044036573646322576) + +[99163] +centroid = (0.81559813649677426, -2.0458405138416111) +station = ('kpuw', 0.0012600242098187464) +zone = ('waz033', 0.0048679446407591444) + +[99164] +centroid = (0.81560836412619098, -2.0446980387665481) +station = ('kpuw', 0.00054343540297781961) +zone = ('idz003', 0.0047833193190089567) + +[99166] +centroid = (0.84780471463711815, -2.071086090606471) +station = ('komk', 0.010033041634276277) +zone = ('waz038', 0.00084404534722426591) + +[99167] +centroid = (0.84507500223370657, -2.0616001039488343) +station = ('kdew', 0.01124272848049713) +zone = ('waz037', 0.0058624551845192982) + +[99169] +centroid = (0.82215301720861189, -2.0654264416278587) +station = ('kska', 0.012085265098931666) +zone = ('waz035', 0.0054150376697306756) + +[99170] +centroid = (0.82442063623926554, -2.0489069351643177) +station = ('kgeg', 0.0068483497704088809) +zone = ('waz033', 0.0055516149307147187) + +[99171] +centroid = (0.8220194995208342, -2.0534477582792312) +station = ('kska', 0.0090482295248102609) +zone = ('waz033', 0.0034606721936279493) + +[99173] +centroid = (0.83840332408832552, -2.0570974686379544) +station = ('kdew', 0.0051655832578354106) +zone = ('waz037', 0.0070909875282378241) + +[99174] +centroid = (0.82048909011293059, -2.0482954939674665) +station = ('kpuw', 0.0053867772320062863) +zone = ('waz033', 0.0022866270337264455) + +[99176] +centroid = (0.8217168070686609, -2.0494335009996445) +station = ('kpuw', 0.0068388748432063797) +zone = ('waz033', 0.0028584002597729311) + +[99179] +centroid = (0.81149046919562062, -2.0442329957873544) +station = ('klws', 0.0025966455045817586) +zone = ('waz032', 0.0033041819507927759) + +[99180] +centroid = (0.84286604371921248, -2.0480072004816221) +station = ('kdew', 0.0057880384203770922) +zone = ('waz037', 0.0037543458238761943) + +[99181] +centroid = (0.84033001050289458, -2.0557679640802475) +station = ('kdew', 0.0051914547353431569) +zone = ('waz037', 0.0049698217850043845) + +[99185] +centroid = (0.83338480435714102, -2.0720080607838369) +station = ('kmwh', 0.01191413008112095) +zone = ('waz035', 0.0069872735823629213) + +[99201] +centroid = (0.83188441461237161, -2.049645942476197) +station = ('ksff', 0.0014453763467154298) +zone = ('waz036', 0.0022262823331639179) + +[99202] +centroid = (0.83178023590932004, -2.0486494990996484) +station = ('ksff', 0.00085995574845026566) +zone = ('waz036', 0.0028368534755572597) + +[99203] +centroid = (0.8312766037003646, -2.049068849359025) +station = ('ksff', 0.0013932846516231249) +zone = ('waz036', 0.0024772187242211884) + +[99204] +centroid = (0.83157444413721737, -2.0494923709553139) +station = ('ksff', 0.0014564440374414357) +zone = ('waz036', 0.0022370694610459449) + +[99205] +centroid = (0.83246663899754436, -2.0497998281563454) +station = ('ksff', 0.0015245990990088209) +zone = ('waz036', 0.0024070911947152765) + +[99206] +centroid = (0.83128803560696507, -2.0464798279466168) +station = ('ksff', 0.0011920251867820854) +zone = ('waz036', 0.004219878289346818) + +[99207] +centroid = (0.83232570366044578, -2.0487977473663128) +station = ('ksff', 0.00083718319871855552) +zone = ('waz036', 0.0029242638783146353) + +[99208] +centroid = (0.83395512559681517, -2.0499890567538466) +station = ('ksff', 0.0023741505650939406) +zone = ('waz036', 0.0034068919124365838) + +[99212] +centroid = (0.83190603924180373, -2.0474520636064404) +station = ('ksff', 0.00033346149949936902) +zone = ('waz036', 0.003650635868144821) + +[99216] +centroid = (0.83227206969253198, -2.0458480362106872) +station = ('ksff', 0.0011546544192299673) +zone = ('waz036', 0.0047862671486998383) + +[99217] +centroid = (0.83323233239368677, -2.046599365547086) +station = ('ksff', 0.0011924594327610177) +zone = ('waz036', 0.0046516996714263646) + +[99218] +centroid = (0.83355047100974033, -2.04918039335152) +station = ('ksff', 0.0017105006985902865) +zone = ('waz036', 0.0034298175360850764) + +[99223] +centroid = (0.83059184122163709, -2.0480500308614658) +station = ('ksff', 0.0016719691930311492) +zone = ('waz036', 0.0031977032466249224) + +[99224] +centroid = (0.8316914510102712, -2.0512164595503117) +station = ('kgeg', 0.000629698752472618) +zone = ('waz036', 0.0011850779127485491) + +[99301] +centroid = (0.8094671089937836, -2.0761422745429137) +station = ('kpsc', 0.0027717135805357691) +zone = ('waz028', 0.0028438044654429942) + +[99320] +centroid = (0.80749207695893421, -2.0854458044805471) +station = ('kpdt', 0.0021386046538864043) +zone = ('waz028', 0.003881302446331582) + +[99321] +centroid = (0.81818338799799839, -2.0928034144752541) +station = ('khms', 0.0065775038713052044) +zone = ('waz026', 0.0049603642085401271) + +[99322] +centroid = (0.80187377483030198, -2.0975502038951959) +station = ('kykm', 0.011671007029564509) +zone = ('orz041', 0.0068823797194241349) + +[99323] +centroid = (0.80618135214397912, -2.0747228680754368) +station = ('kpsc', 0.0032278181323588196) +zone = ('waz028', 0.004526378440031789) + +[99324] +centroid = (0.80359458220630575, -2.0662402362981864) +station = ('kalw', 0.0016047849398204098) +zone = ('waz029', 0.00515057194025285) + +[99326] +centroid = (0.81419752722534133, -2.0743822670719099) +station = ('kpsc', 0.0074029693368870752) +zone = ('waz028', 0.0067404022251518481) + +[99328] +centroid = (0.80744809466178402, -2.0571397230591453) +station = ('kalw', 0.0057994274179157318) +zone = ('waz030', 0.0020649443589342274) + +[99329] +centroid = (0.80557994659032683, -2.0620244458498713) +station = ('kalw', 0.0019376281461197214) +zone = ('waz029', 0.0028314478113274861) + +[99330] +centroid = (0.81139950263500671, -2.0776961586292568) +station = ('kpsc', 0.0039929979540693303) +zone = ('waz028', 0.0031442026763688581) + +[99333] +centroid = (0.81482060976830339, -2.062502997677476) +station = ('kalw', 0.010310169309653328) +zone = ('waz029', 0.0065445184311490176) + +[99335] +centroid = (0.81422742471542808, -2.0680123214476138) +station = ('kalw', 0.0099420895030725969) +zone = ('waz029', 0.006798619059640223) + +[99336] +centroid = (0.8065873331812855, -2.0800088420611971) +station = ('kpsc', 0.0011625966264261353) +zone = ('waz028', 0.0021526235712348569) + +[99337] +centroid = (0.80412943835557937, -2.0785255216365117) +station = ('kpsc', 0.0033907406201038044) +zone = ('waz028', 0.004740126851707209) + +[99338] +centroid = (0.80543211720268293, -2.0817148490451438) +station = ('kpdt', 0.0013680951765391127) +zone = ('waz028', 0.0034843091494506321) + +[99341] +centroid = (0.81878451429897026, -2.0708858489813897) +station = ('kmwh', 0.0093476179006737325) +zone = ('waz035', 0.0077405169767521846) + +[99343] +centroid = (0.81321188743686268, -2.0800849384165838) +station = ('khms', 0.0050592988034015166) +zone = ('waz028', 0.0044735222956389506) + +[99344] +centroid = (0.81716436006092896, -2.0800494384195982) +station = ('khms', 0.0067137878595127324) +zone = ('waz034', 0.0050072396968284666) + +[99345] +centroid = (0.80201746778761862, -2.0892929813908405) +station = ('kpdt', 0.0054257351203380296) +zone = ('orz044', 0.0046379285339074941) + +[99346] +centroid = (0.80280993453448668, -2.0821654581514237) +station = ('khri', 0.0028945994570948085) +zone = ('orz044', 0.0048592014306509008) + +[99347] +centroid = (0.81031682254011705, -2.0519031069846312) +station = ('klws', 0.0066902506599410072) +zone = ('waz032', 0.0022385901253817895) + +[99348] +centroid = (0.80943345904580521, -2.0677270997412527) +station = ('kalw', 0.0053462581683854562) +zone = ('waz029', 0.0033305955401019536) + +[99349] +centroid = (0.81561314632834148, -2.0891692200935816) +station = ('khms', 0.0031140965954725946) +zone = ('waz034', 0.00547913755529189) + +[99350] +centroid = (0.8060505048099571, -2.089088306629459) +station = ('kpdt', 0.0037892233878749487) +zone = ('waz028', 0.0067547120926451055) + +[99352] +centroid = (0.80725996562171154, -2.0819721454834728) +station = ('kpdt', 0.0018890926491988756) +zone = ('waz028', 0.0019530214210508822) + +[99353] +centroid = (0.80832843873648996, -2.0837096382071256) +station = ('kpdt', 0.002568658613722899) +zone = ('waz028', 0.0025089351397022692) + +[99354] +centroid = (0.80863910734334499, -2.0822252007717195) +station = ('kpdt', 0.0030387562876413735) +zone = ('waz028', 0.0014532772829072898) + +[99356] +centroid = (0.79979276640327157, -2.100005515633609) +station = ('kdls', 0.010920543301613739) +zone = ('orz041', 0.004191186109992159) + +[99357] +centroid = (0.81840775007334221, -2.0884893445367596) +station = ('khms', 0.005713856204222028) +zone = ('waz034', 0.0029056859808728186) + +[99359] +centroid = (0.81233299198543585, -2.0611879793525607) +station = ('kalw', 0.0080543755300119223) +zone = ('waz029', 0.0042696497274637884) + +[99360] +centroid = (0.80442603960866332, -2.0710605738928072) +station = ('kalw', 0.0045987182433536332) +zone = ('orz507', 0.0064244878497339243) + +[99361] +centroid = (0.80698008462286175, -2.0619989640427927) +station = ('kalw', 0.0029194257237792581) +zone = ('waz029', 0.0015514232962605154) + +[99362] +centroid = (0.80461568708518505, -2.0649620269671956) +station = ('kalw', 0.00036688414388285972) +zone = ('waz029', 0.0038759412089272548) + +[99363] +centroid = (0.80390635037058944, -2.0749091296132094) +station = ('kpsc', 0.0045713106862142949) +zone = ('waz028', 0.0060319231618286119) + +[99371] +centroid = (0.81681614942186354, -2.0649345729380619) +station = ('kalw', 0.012224237654052015) +zone = ('waz029', 0.0086064020336209662) + +[99401] +centroid = (0.80437366227781093, -2.0463981116310386) +station = ('klws', 0.0056324008328593146) +zone = ('waz031', 0.0025523678565049319) + +[99402] +centroid = (0.8061810728912987, -2.0442590710063793) +station = ('klws', 0.0033480186381543669) +zone = ('waz031', 0.0031728879360846435) + +[99403] +centroid = (0.80917595316796587, -2.0469674729396239) +station = ('klws', 0.0032037309389930033) +zone = ('waz032', 0.0015633234039588591) + +[99501] +centroid = (1.068490882230194, -2.6154754027874518) +station = ('pamr', 7.5612117268769409e-05) +zone = ('akz101', 0.0028710468060106228) + +[99502] +centroid = (1.0675069528643821, -2.6179346938765593) +station = ('palh', 0.00036136401002845081) +zone = ('akz101', 0.0040617627441911176) + +[99503] +centroid = (1.0828712258960282, -2.7606861856881415) +station = ('pahc', 0.013340536737007363) +zone = ('akz215', 0.016614592811876508) + +[99504] +centroid = (1.0682217873661215, -2.6135623997542181) +station = ('paed', 0.0009361728086620969) +zone = ('akz101', 0.0019238197795494968) + +[99505] +centroid = (1.0691337393535809, -2.6110596325134434) +station = ('paed', 0.0016061380062696502) +zone = ('akz101', 0.0012949174999259325) + +[99506] +centroid = (1.0690746075985236, -2.6146909645551428) +station = ('paed', 0.00014176883640483603) +zone = ('akz101', 0.0026627036318678321) + +[99507] +centroid = (1.0672279270768656, -2.6136941197528665) +station = ('pamr', 0.0014518582733245762) +zone = ('akz101', 0.0021454979167663691) + +[99508] +centroid = (1.0681660415498127, -2.6148091407987955) +station = ('pamr', 0.00038137212949851889) +zone = ('akz101', 0.0025195947570514619) + +[99510] +centroid = (1.2235087225577175, -2.6156788732716487) +station = ('paku', 0.0041072241330197597) +zone = ('akz203', 0.0025771008214539662) + +[99513] +centroid = (1.0683993222576345, -2.6159982336181793) +station = ('pamr', 0.00030148851675137518) +zone = ('akz101', 0.003108786342773054) + +[99515] +centroid = (1.0666820753533044, -2.6160805607989954) +station = ('palh', 0.0014065361011570082) +zone = ('akz101', 0.0034195711684573758) + +[99516] +centroid = (1.0660381361257814, -2.6129330863858264) +station = ('pamr', 0.0026686955120076164) +zone = ('akz101', 0.0025812353076561595) + +[99517] +centroid = (1.0679730081345422, -2.6169311121033698) +station = ('palh', 0.00039162730865034982) +zone = ('akz101', 0.003540755286301313) + +[99518] +centroid = (1.0674359877769959, -2.6159802392735907) +station = ('palh', 0.00092842134684234133) +zone = ('akz101', 0.0031439039439738843) + +[99519] +centroid = (1.2080512314907226, -2.5619245998125231) +station = ('parc', 0.020703044668738776) +zone = ('akz218', 0.02311170260726178) + +[99540] +centroid = (1.0644861893549078, -2.607831105009812) +station = ('paed', 0.0055715352843339963) +zone = ('akz101', 0.0036639808246336524) + +[99546] +centroid = (0.90459434255826487, -3.0827749530778292) +station = ('padk', 0.00086079445251153466) +zone = ('akz187', 0.019861994775752071) + +[99547] +centroid = (0.91129035059341856, -3.0406365788290115) +station = ('paak', 0.00015976788646657197) +zone = ('akz187', 0.0069478979238956672) + +[99548] +centroid = (0.98152770549459645, -2.7707395614323094) +station = ('pajc', 0.0038871349194034483) +zone = ('akz181', 0.02635421839790349) + +[99549] +centroid = (0.99421244433882594, -2.7677542106533579) +station = ('paph', 0.00055923248986120163) +zone = ('akz161', 0.042555925178413251) + +[99550] +centroid = (1.0106213667409609, -2.6711008786442254) +station = ('padq', 0.0058557649934555178) +zone = ('akz171', 0.012340784993833917) + +[99551] +centroid = (1.0629558846667593, -2.8173411789107896) +station = ('pabe', 0.0040745450240106786) +zone = ('akz155', 0.012796136233532684) + +[99552] +centroid = (1.0629725525611158, -2.8139716288035967) +station = ('pabe', 0.0055548628438370842) +zone = ('akz155', 0.014370247414172647) + +[99553] +centroid = (0.94452606212720092, -2.894294072081451) +station = ('padu', 0.0081428844490490752) +zone = ('akz185', 0.016475316209166143) + +[99554] +centroid = (1.0945162197449672, -2.873592320397818) +station = ('paem', 0.0017100814105325366) +zone = ('akz214', 0.010863034808428087) + +[99555] +centroid = (1.0344239052802717, -2.7687230952810173) +station = ('padl', 0.0039542378728711254) +zone = ('akz161', 0.012412273146031973) + +[99556] +centroid = (1.0453347961925292, -2.644379905249485) +station = ('paho', 0.0042532628126602723) +zone = ('akz121', 0.010277992333060971) + +[99557] +centroid = (1.0719832860634346, -2.723485051187243) +station = ('pasv', 0.0068757215932768881) +zone = ('akz152', 0.0028625948316747685) + +[99558] +centroid = (1.093117443069249, -2.7962563274563439) +station = ('panv', 0.00035819020713024382) +zone = ('akz215', 0.0039650133874296533) + +[99559] +centroid = (1.0614072365681722, -2.8248295315197636) +station = ('pabe', 0.00055814424271091788) +zone = ('akz155', 0.0088564344144038253) + +[99561] +centroid = (1.0498368380914636, -2.8667271026916832) +station = ('paki', 0.0042718019477591025) +zone = ('akz155', 0.015127217673360215) + +[99563] +centroid = (1.0739165000094062, -2.8902159357512409) +station = ('pava', 0.00016084758064198739) +zone = ('akz214', 0.017552626895831959) + +[99564] +centroid = (0.98270178848241307, -2.7645348635815914) +station = ('pajc', 0.00025040026082395929) +zone = ('akz181', 0.029983807579335761) + +[99565] +centroid = (0.98268156011638241, -2.7663689602793422) +station = ('pajc', 0.0012462582231694854) +zone = ('akz181', 0.029039965644438906) + +[99566] +centroid = (1.0693790628332414, -2.4889357857054537) +station = ('pamx', 0.0039446984397139761) +zone = ('akz141', 0.022232580845481253) + +[99567] +centroid = (1.0695305050524369, -2.5983655387044235) +station = ('paaq', 0.0058980274101561479) +zone = ('akz111', 0.0059106406377295254) + +[99568] +centroid = (1.0507825447466566, -2.6425598759055053) +station = ('pasx', 0.0058285244622073773) +zone = ('akz121', 0.0063992070723729588) + +[99569] +centroid = (1.0263440082279192, -2.7668720688895223) +station = ('padl', 0.0042746261162086539) +zone = ('akz161', 0.014391460194278638) + +[99571] +centroid = (0.96369372175820822, -2.8409790107285895) +station = ('pacd', 0.00042630847569382024) +zone = ('akz181', 0.017035815545987449) + +[99572] +centroid = (1.0564457367436504, -2.6171665046595867) +station = ('pawd', 0.0084186415412551285) +zone = ('akz101', 0.012177938702397287) + +[99573] +centroid = (1.0770830508712994, -2.5473389181601922) +station = ('pagk', 0.0086795518902345725) +zone = ('akz141', 0.0090429379874847216) + +[99574] +centroid = (1.0628007074429644, -2.5326304700482751) +station = ('pacv', 0.0075834421327142963) +zone = ('akz135', 0.0053827736379445561) + +[99575] +centroid = (1.0790344336947841, -2.7587321150576085) +station = ('pahc', 0.01544136959796787) +zone = ('akz215', 0.019979799671384083) + +[99576] +centroid = (1.051754745499895, -2.7766945026670662) +station = ('padl', 0.021739616279524046) +zone = ('akz161', 0.023360766037790352) + +[99577] +centroid = (1.0681690435161262, -2.604876314946063) +station = ('paed', 0.0046696673164741982) +zone = ('akz101', 0.0022715805451643824) + +[99578] +centroid = (1.0509334284604916, -2.8279654169466992) +station = ('pabe', 0.010079306063551025) +zone = ('akz155', 0.010635637466000224) + +[99579] +centroid = (1.0158290801630616, -2.7472977300895081) +station = ('paii', 0.00037075844659334103) +zone = ('akz161', 0.019180413078004371) + +[99580] +centroid = (1.0361241003178094, -2.7487370507637499) +station = ('panw', 0.0020540186167878533) +zone = ('akz161', 0.0024832102846513329) + +[99581] +centroid = (1.0958122139810356, -2.8719820272700507) +station = ('paem', 0.00042022653633372634) +zone = ('akz214', 0.011670112811931338) + +[99583] +centroid = (0.95801291938906186, -2.8520537706043165) +station = ('pakf', 0.00069985455750958003) +zone = ('akz181', 0.025298256036838884) + +[99585] +centroid = (1.0806853755408308, -2.8324684187767222) +station = ('padm', 0.0023597677810443503) +zone = ('akz214', 0.014391418064714157) + +[99586] +centroid = (1.0965443097890772, -2.5033799560620338) +station = ('pabn', 0.0082788170310708602) +zone = ('akz226', 0.0093265292562587764) + +[99587] +centroid = (1.0640968413053729, -2.5997808261948654) +station = ('pato', 0.003351864233425332) +zone = ('akz101', 0.0061732468500197025) + +[99588] +centroid = (1.0896944858869451, -2.5615634911902854) +station = ('pazk', 0.0093400624149856965) +zone = ('akz141', 0.017612135698757241) + +[99589] +centroid = (1.0319693963933145, -2.8199070747106085) +station = ('papm', 0.0029472016086593347) +zone = ('akz155', 0.029174176131348178) + +[99590] +centroid = (1.0977325648504199, -2.7944779416683168) +station = ('panv', 0.0043575420915683265) +zone = ('akz215', 0.0050297927848083658) + +[99591] +centroid = (0.98734181611201, -2.9600553904895492) +station = ('papb', 0.0006907919218391127) +zone = ('akz195', 0.0069421643692398781) + +[99602] +centroid = (1.085368146283809, -2.7900148555182871) +station = ('pahc', 0.00062168112965108014) +zone = ('akz215', 0.0084554059432966743) + +[99603] +centroid = (1.0391460331978826, -2.6386749300701982) +station = ('paho', 0.0032745209306610126) +zone = ('akz121', 0.014347603505830238) + +[99604] +centroid = (1.0739965408089025, -2.8993712348755025) +station = ('pahp', 0.00034205973462536594) +zone = ('akz214', 0.021006672720903233) + +[99605] +centroid = (1.0613511242327205, -2.6098560360079754) +station = ('palh', 0.0075311292744999698) +zone = ('akz101', 0.0067009101775032231) + +[99606] +centroid = (1.0446004314564601, -2.6975179204030235) +station = ('pail', 0.003622637310572724) +zone = ('akz171', 0.027456523026769281) + +[99607] +centroid = (1.0775806442410429, -2.7919676171518808) +station = ('pani', 0.0044890435275628049) +zone = ('akz215', 0.016296742163769945) + +[99609] +centroid = (1.0622781733182098, -2.8368208685054679) +station = ('pabe', 0.0061577651080654923) +zone = ('akz155', 0.0042737619446601436) + +[99610] +centroid = (1.0524315492772334, -2.626707207389273) +station = ('paen', 0.0080262695129186094) +zone = ('akz121', 0.0018670791949320427) + +[99611] +centroid = (1.0576786024206741, -2.6373029441984981) +station = ('paen', 0.0011290165084883565) +zone = ('akz121', 0.0058944088859277698) + +[99612] +centroid = (0.9610949090486961, -2.8324762203984784) +station = ('pavc', 0.00094959222859394604) +zone = ('akz181', 0.014352482518596487) + +[99613] +centroid = (1.0291282970770406, -2.7194649470546617) +station = ('paig', 0.0062487709961614882) +zone = ('akz171', 0.019058021955069258) + +[99614] +centroid = (1.0461526225734288, -2.8635164822661774) +station = ('paki', 0.00034909298338047054) +zone = ('akz155', 0.016557436230928736) + +[99615] +centroid = (1.0055401896896297, -2.6773971364675027) +station = ('padq', 0.0089121982299478885) +zone = ('akz171', 0.013763440980418177) + +[99620] +centroid = (1.100061392577941, -2.8542369680590514) +station = ('paem', 0.0087816066296766936) +zone = ('akz214', 0.015282865900803957) + +[99621] +centroid = (1.0610043273103493, -2.8174287595326541) +station = ('pabe', 0.0034657379443775319) +zone = ('akz155', 0.01229838230587268) + +[99622] +centroid = (1.0448141470233667, -2.8482636659605634) +station = ('paki', 0.0074240986650872974) +zone = ('akz155', 0.01441501991821963) + +[99624] +centroid = (1.0050946594914731, -2.686290147511774) +station = ('padq', 0.013642755311440064) +zone = ('akz171', 0.01249317885128249) + +[99625] +centroid = (1.034810181550323, -2.7341014876013969) +station = ('paig', 0.0067240765216627476) +zone = ('akz161', 0.0052834432250392725) + +[99626] +centroid = (1.073673637443991, -2.798891268481372) +station = ('palg', 0.00045130919642498896) +zone = ('akz215', 0.020750978949368309) + +[99627] +centroid = (1.1101341763833907, -2.7015038335355586) +station = ('pafs', 0.010755938625400856) +zone = ('akz227', 0.011625741592277345) + +[99628] +centroid = (1.029008742023279, -2.7787759299731172) +station = ('pamb', 0.0015626981061066766) +zone = ('akz161', 0.018590841874971318) + +[99630] +centroid = (1.0536680103325164, -2.9019063605206092) +station = ('pamy', 7.0972397442282682e-05) +zone = ('akz214', 0.036959777483683398) + +[99631] +centroid = (1.057822103391773, -2.6085453635528979) +station = ('pawd', 0.0085886584428350385) +zone = ('akz125', 0.0054245890376503859) + +[99632] +centroid = (1.0840649089313448, -2.8564824737680823) +station = ('pamo', 0.00025032345263759667) +zone = ('akz214', 0.0026515582484611883) + +[99633] +centroid = (1.0262286943242398, -2.7385032777880967) +station = ('pakn', 0.0030603140546878317) +zone = ('akz161', 0.0092433096494120952) + +[99634] +centroid = (1.059116334845297, -2.8274153066197631) +station = ('pabe', 0.0022516981965084596) +zone = ('akz155', 0.0072521473047809778) + +[99636] +centroid = (1.0382642754064824, -2.745237107108141) +station = ('panw', 0.00075250034078932831) +zone = ('akz161', 0.0033364349877510685) + +[99637] +centroid = (1.056835241872818, -2.8816797398192469) +station = ('paoo', 0.00038779343671782487) +zone = ('akz214', 0.029909904333632789) + +[99638] +centroid = (0.92323557598028561, -2.9486277948522388) +station = ('padu', 0.030582103374777337) +zone = ('akz185', 0.022216069597868301) + +[99639] +centroid = (1.0482839488427942, -2.6425013899222707) +station = ('paho', 0.007228419142159671) +zone = ('akz121', 0.0075806689916858242) + +[99640] +centroid = (1.0472423537984965, -2.7120801622835011) +station = ('pail', 0.0060560104129988501) +zone = ('akz152', 0.027632007603872605) + +[99641] +centroid = (1.0625610911899581, -2.8354667548053083) +station = ('pabe', 0.0055948682153116056) +zone = ('akz155', 0.004915928044022513) + +[99643] +centroid = (0.99867809612285607, -2.6761220338225806) +station = ('padq', 0.012194876224181313) +zone = ('akz171', 0.020236448526584558) + +[99644] +centroid = (1.0107249171254817, -2.6595814437816752) +station = ('padq', 0.0029491778852716241) +zone = ('akz171', 0.017711350982187825) + +[99645] +centroid = (1.0755504772551232, -2.6001896521188526) +station = ('paaq', 0.0010845183645973335) +zone = ('akz111', 0.0016644391151679119) + +[99647] +centroid = (1.0450903628307875, -2.6890554646319265) +station = ('palj', 0.0059917532465201869) +zone = ('akz171', 0.027730841914723862) + +[99648] +centroid = (0.97616598421929979, -2.7776292137479719) +station = ('pajc', 0.010041787011957374) +zone = ('akz181', 0.020950071831768537) + +[99649] +centroid = (1.0035720342520333, -2.7450719640543171) +station = ('papn', 0.0030421699700221771) +zone = ('akz161', 0.031382006795760635) + +[99650] +centroid = (1.0811730728937154, -2.8427625626912025) +station = ('padm', 0.0071349209758067664) +zone = ('akz214', 0.0097061337775389434) + +[99651] +centroid = (1.0297562141820304, -2.8219892001483604) +station = ('papm', 0.0011888542684522132) +zone = ('akz155', 0.03087743969442196) + +[99652] +centroid = (1.0739680570355099, -2.6175437575774048) +station = ('paed', 0.0051269924138235418) +zone = ('akz101', 0.0070400407580749613) + +[99653] +centroid = (1.0506602844325545, -2.6926142258833279) +station = ('palj', 0.00035876840874324306) +zone = ('akz171', 0.033303799300580431) + +[99654] +centroid = (1.0724892395602952, -2.6162621099477881) +station = ('paed', 0.0035367085733117019) +zone = ('akz111', 0.0065847188634846551) + +[99655] +centroid = (1.0426848976958112, -2.8254678682403878) +station = ('papm', 0.012665361213208937) +zone = ('akz155', 0.018238266067244019) + +[99656] +centroid = (1.0809986097816862, -2.7509012939428081) +station = ('pasl', 0.0054246485651209802) +zone = ('akz215', 0.021351956446226224) + +[99657] +centroid = (1.0773605407690741, -2.8216685133515993) +station = ('padm', 0.0037582554010168142) +zone = ('akz155', 0.020934466596735077) + +[99658] +centroid = (1.0836950038496771, -2.8491190169203806) +station = ('pasm', 0.00085837272865305579) +zone = ('akz214', 0.0060371686750049407) + +[99659] +centroid = (1.1076705568777383, -2.8296894357285272) +station = ('pamk', 0.00046394518572471214) +zone = ('akz212', 0.011626649322161467) + +[99660] +centroid = (0.99796252858283097, -2.9727332352832327) +station = ('pasn', 0.0010481359986669893) +zone = ('akz195', 0.0057425006685731476) + +[99661] +centroid = (0.96424742746340331, -2.8044815406222177) +station = ('pasd', 0.0020649016017333117) +zone = ('akz181', 0.0081421041286969982) + +[99662] +centroid = (1.078470727252975, -2.8965754094000253) +station = ('pacz', 0.00061055396357136398) +zone = ('akz214', 0.017718433967499326) + +[99663] +centroid = (1.0367463451027306, -2.6463482526732989) +station = ('paso', 0.0010834957105027758) +zone = ('akz121', 0.018015183156656098) + +[99664] +centroid = (1.0485304067864682, -2.6091366287435958) +station = ('pawd', 0.00079471956479100763) +zone = ('akz125', 0.0070864406473048654) + +[99665] +centroid = (1.0933829251017697, -2.7843155352057769) +station = ('pahc', 0.008215880859434508) +zone = ('akz215', 0.0016166621251068867) + +[99666] +centroid = (1.0897944932530843, -2.882333348170826) +station = ('paem', 0.0079144042664966441) +zone = ('akz214', 0.010670300194755934) + +[99667] +centroid = (1.0787243410465823, -2.6484145828813199) +station = ('pasw', 0.0052520461870972307) +zone = ('akz145', 0.010263105514592846) + +[99668] +centroid = (1.0765619130099464, -2.7429174423591927) +station = ('pasl', 0.00060041993348401474) +zone = ('akz152', 0.0075337686235037614) + +[99669] +centroid = (1.0534845413215468, -2.6357572806129319) +station = ('pasx', 0.0021529481395939688) +zone = ('akz121', 0.0027349027160958701) + +[99670] +centroid = (1.0237774317496915, -2.7403717923786965) +station = ('pakn', 0.0033120948721863997) +zone = ('akz161', 0.011370298861176725) + +[99671] +centroid = (1.1078014565716376, -2.8320063254039645) +station = ('pamk', 0.0012239840675603607) +zone = ('akz212', 0.012292827723914233) + +[99672] +centroid = (1.0603351331685495, -2.6289892951994256) +station = ('paen', 0.0059456122799557334) +zone = ('akz121', 0.007489052411824881) + +[99674] +centroid = (1.0775518114018001, -2.5869219383978717) +station = ('paaq', 0.0076849496733699466) +zone = ('akz111', 0.0082652570629063345) + +[99676] +centroid = (1.0899400188061157, -2.614339123631233) +station = ('patk', 0.0034055601446132079) +zone = ('akz145', 0.0092493535175180927) + +[99677] +centroid = (1.0628697526681734, -2.5600414070029136) +station = ('pavd', 0.0053917987906718593) +zone = ('akz131', 0.0049568316567109002) + +[99678] +centroid = (1.0405670802748563, -2.7906354422404189) +station = ('patg', 0.010930758580652254) +zone = ('akz161', 0.024132283593848555) + +[99679] +centroid = (1.0664707508874731, -2.8088905215654352) +station = ('palg', 0.0091039889511455203) +zone = ('akz215', 0.029049010521868698) + +[99680] +centroid = (1.0543933866229378, -2.8391054521364509) +station = ('paki', 0.014481988903558826) +zone = ('akz155', 0.0047726949086306439) + +[99681] +centroid = (1.0578089959690906, -2.8819014489941277) +station = ('paoo', 0.0013643414787109687) +zone = ('akz214', 0.029021840901929725) + +[99682] +centroid = (1.057808036038002, -2.6683852859544626) +station = ('paen', 0.014178316091639524) +zone = ('akz145', 0.032196177394844511) + +[99683] +centroid = (1.0910936465350989, -2.6359617982946806) +station = ('patk', 0.0082714296885585854) +zone = ('akz145', 0.0073996740550009684) + +[99684] +centroid = (1.1168240757661627, -2.7994272067347823) +station = ('paun', 0.0036123437648187201) +zone = ('akz212', 0.0051688676053910304) + +[99685] +centroid = (0.94024026652258874, -2.9056730777523856) +station = ('padu', 0.00071585070843506069) +zone = ('akz185', 0.0085313825806275223) + +[99686] +centroid = (1.0672702338579341, -2.5623203357671205) +station = ('pavd', 0.0045873962765342474) +zone = ('akz131', 0.0025406384509357631) + +[99688] +centroid = (1.0809378374171317, -2.6172881715617429) +station = ('patk', 0.0067905654263110196) +zone = ('akz145', 0.0068089709282213532) + +[99689] +centroid = (1.0382163312119301, -2.4333317424918945) +station = ('paya', 0.0022034512061323681) +zone = ('akz017', 0.012274545164393346) + +[99690] +centroid = (1.0563381197419723, -2.87687127046354) +station = ('paoo', 0.0023847905952734715) +zone = ('akz214', 0.02973473960636518) + +[99691] +centroid = (1.0963753619174841, -2.6768930504729416) +station = ('pafk', 0.0051969053434694533) +zone = ('akz227', 0.0075651696663828726) + +[99692] +centroid = (0.9404847696975005, -2.9066420845530927) +station = ('padu', 0.0002529597150000066) +zone = ('akz185', 0.0081929189598770828) + +[99693] +centroid = (1.0620425538691907, -2.5836784359692584) +station = ('pato', 0.0070438216613169938) +zone = ('akz111', 0.016009531567631893) + +[99694] +centroid = (1.0755434610315302, -2.6142460277689321) +station = ('pabv', 0.0042549236799199639) +zone = ('akz111', 0.0051802929819934904) + +[99695] +centroid = (0.97595668433540073, -2.7836831849644872) +station = ('paou', 0.016359954307779555) +zone = ('akz181', 0.017629431230837489) + +[99701] +centroid = (1.1710207203774987, -2.6064051011977623) +station = ('papr', 0.010199648064312478) +zone = ('akz206', 0.034726209048095417) + +[99702] +centroid = (1.1283660951892338, -2.566547191602893) +station = ('paei', 0.00035643475318737991) +zone = ('akz222', 0.0063728222133883862) + +[99703] +centroid = (1.1315427515074961, -2.5765024972963908) +station = ('pafb', 0.0002925887326953402) +zone = ('akz222', 0.0034650900468168378) + +[99704] +centroid = (1.1221795313094445, -2.6031507079146161) +station = ('pann', 0.0044742988070379311) +zone = ('akz225', 0.014385470307071173) + +[99705] +centroid = (1.1303070758503768, -2.571108644509565) +station = ('paei', 0.0025195459455644616) +zone = ('akz222', 0.0040497413978751512) + +[99706] +centroid = (1.117193230356252, -2.5251189394668345) +station = ('pabi', 0.0079423483327288099) +zone = ('akz224', 0.015340235822090204) + +[99709] +centroid = (1.1323208018347426, -2.5856794035967923) +station = ('pafa', 0.0023922438483842553) +zone = ('akz222', 0.0062567129121835477) + +[99712] +centroid = (1.1344267335634917, -2.5507523982046574) +station = ('pafa', 0.013238513555168814) +zone = ('akz222', 0.0088577701143973345) + +[99714] +centroid = (1.1237214773437039, -2.5578413147610202) +station = ('paei', 0.0061896787796863776) +zone = ('akz223', 0.0029864151745905617) + +[99720] +centroid = (1.1617606142316552, -2.6662978198091998) +station = ('papr', 0.015296561976233894) +zone = ('akz219', 0.0036708753474389024) + +[99721] +centroid = (1.1894731440810389, -2.6476656970058747) +station = ('pakp', 0.00042391617969819408) +zone = ('akz219', 0.031431546050465567) + +[99722] +centroid = (1.1884286168835978, -2.5412702687246673) +station = ('parc', 0.00042482279537268242) +zone = ('akz218', 0.0091219937973461753) + +[99723] +centroid = (1.2436183712926114, -2.7366579237166699) +station = ('pabr', 0.00054161328798952256) +zone = ('akz202', 0.012800496194143255) + +[99724] +centroid = (1.1587342831218672, -2.5715317472268335) +station = ('pafb', 0.027236581957458265) +zone = ('akz220', 0.012319530576922668) + +[99726] +centroid = (1.17534938126854, -2.65972609667008) +station = ('pakp', 0.014455315449134198) +zone = ('akz219', 0.016843197067063033) + +[99727] +centroid = (1.1514968914060371, -2.8124001867049788) +station = ('pabl', 0.00014503860612078768) +zone = ('akz209', 0.011864582880633384) + +[99729] +centroid = (1.0996650981179832, -2.6075338579849046) +station = ('paec', 0.0051073983459977981) +zone = ('akz225', 0.011494231049142349) + +[99730] +centroid = (1.1454276834651522, -2.5379735861137456) +station = ('pfyu', 0.016413443315197285) +zone = ('akz220', 0.013628307634360473) + +[99732] +centroid = (1.1182629252015068, -2.4784998163359564) +station = ('paeg', 0.01399923577326824) +zone = ('akz224', 0.0088450414628776525) + +[99733] +centroid = (1.1491065582756756, -2.5164093974335322) +station = ('pfyu', 0.014829136757228212) +zone = ('akz220', 0.013973287496703348) + +[99734] +centroid = (1.2292040809728255, -2.6055590004829803) +station = ('paku', 0.0026071162083759606) +zone = ('akz203', 0.004185032764168763) + +[99736] +centroid = (1.1534014295923982, -2.8407280498354455) +station = ('pade', 0.00032247053430356764) +zone = ('akz210', 0.010442059098379197) + +[99737] +centroid = (1.1133432609191551, -2.5361658787942845) +station = ('pabi', 0.0048090788161908159) +zone = ('akz226', 0.01402224667388687) + +[99738] +centroid = (1.1455699452524821, -2.4763082413008126) +station = ('paeg', 0.015821675390088892) +zone = ('akz224', 0.022642871817948065) + +[99739] +centroid = (1.135492047632324, -2.8372590683207664) +station = ('pawm', 0.0090167597594580564) +zone = ('akz210', 0.0075526316188351834) + +[99740] +centroid = (1.1846359640591364, -2.523688851584335) +station = ('parc', 0.0076677320077253404) +zone = ('akz220', 0.026471510077730614) + +[99741] +centroid = (1.1298588927517572, -2.7379505145606973) +station = ('paga', 0.00045204342640007259) +zone = ('akz216', 0.0019978363434782691) + +[99742] +centroid = (1.1131221451562201, -2.9971790498249513) +station = ('pagm', 0.00019303293342369792) +zone = ('akz213', 0.028937257845068568) + +[99743] +centroid = (1.1114733500651535, -2.6184602125143348) +station = ('paec', 0.014990369304033021) +zone = ('akz225', 0.001791839281008984) + +[99744] +centroid = (1.122414854052491, -2.6033840584356076) +station = ('pann', 0.0042573760581947106) +zone = ('akz225', 0.014537209536749206) + +[99745] +centroid = (1.1527774918381029, -2.6918690226526039) +station = ('paim', 0.016717807301114662) +zone = ('akz219', 0.013371255499527442) + +[99746] +centroid = (1.1449417139882268, -2.760944651497069) +station = ('paga', 0.017716121946886636) +zone = ('akz209', 0.02627826720481214) + +[99747] +centroid = (1.2237967193375892, -2.5078147853314738) +station = ('paba', 0.00070793330329161849) +zone = ('akz204', 0.0040857362395915371) + +[99748] +centroid = (1.1230546219431019, -2.7710804067819312) +station = ('pakv', 0.00059103392720670782) +zone = ('akz212', 0.01884471886506504) + +[99749] +centroid = (1.1689941313165457, -2.8000632745273788) +station = ('paik', 8.6210160396041897e-05) +zone = ('akz209', 0.0065108823775349243) + +[99750] +centroid = (1.1820877833512247, -2.8718250349038335) +station = ('pavl', 9.2636690142355331e-05) +zone = ('akz207', 0.016918726283116713) + +[99751] +centroid = (1.1680212149783138, -2.7379790856005526) +station = ('pagh', 0.0022219611647556828) +zone = ('akz217', 0.0080295504842173068) + +[99752] +centroid = (1.1739628568041707, -2.8260257627357883) +station = ('paot', 0.0080840061767026902) +zone = ('akz208', 0.0098920318079873202) + +[99753] +centroid = (1.1334099571011571, -2.8126202901769477) +station = ('pakk', 0.00011169370912585916) +zone = ('akz210', 0.014195233518408604) + +[99754] +centroid = (1.1327584431446802, -2.7522847989875716) +station = ('pakv', 0.012842122750761275) +zone = ('akz216', 0.0085652304263722587) + +[99755] +centroid = (1.1132570416541068, -2.5921884868690572) +station = ('pahv', 0.0041044863462881779) +zone = ('akz225', 0.012692549088667132) + +[99756] +centroid = (1.1268753745685203, -2.6485660600071004) +station = ('pata', 0.010810424234856184) +zone = ('akz221', 0.003163652281430097) + +[99757] +centroid = (1.1136286571584413, -2.6649823476986789) +station = ('pamh', 0.0032809687112035561) +zone = ('akz227', 0.018832245137200096) + +[99758] +centroid = (1.1371130919882837, -2.6070399123532977) +station = ('pann', 0.010745019882622385) +zone = ('akz225', 0.027886292415088432) + +[99759] +centroid = (1.217051562830699, -2.8434199933138435) +station = ('ppiz', 0.00057374739050253731) +zone = ('akz201', 0.016647230580125245) + +[99760] +centroid = (1.121383521544195, -2.5853284527908014) +station = ('pafa', 0.0098416225435930555) +zone = ('akz222', 0.014218658989129381) + +[99761] +centroid = (1.1802088665982828, -2.845898500478016) +station = ('pawn', 0.0010702330920819502) +zone = ('akz208', 0.0065638123994664612) + +[99762] +centroid = (1.1320694220625778, -2.87212123473119) +station = ('pate', 0.014567033172243008) +zone = ('akz211', 0.0043614353609731059) + +[99763] +centroid = (1.1663543557294891, -2.8104897842123302) +station = ('pfno', 0.0018717509490178313) +zone = ('akz209', 0.0033439184210826796) + +[99764] +centroid = (1.1046495664754612, -2.4688346890838955) +station = ('cyxq', 0.015972675068643038) +zone = ('akz224', 0.022364807136680306) + +[99765] +centroid = (1.1297396867638458, -2.7599308246411707) +station = ('pakv', 0.0084984278608736426) +zone = ('akz216', 0.011379224930633276) + +[99766] +centroid = (1.1990866270405338, -2.8764255482791654) +station = ('palu', 0.0087511627336462807) +zone = ('akz207', 0.033309995266216121) + +[99767] +centroid = (1.1432285686076391, -2.6206351022018297) +station = ('paml', 0.0094810280199786115) +zone = ('akz221', 0.017002120501900541) + +[99768] +centroid = (1.1350404785949555, -2.7037455518801123) +station = ('pary', 0.0067073138778976048) +zone = ('akz216', 0.013529220443686225) + +[99769] +centroid = (1.111437919881338, -2.9755618729486475) +station = ('pasa', 0.00010961771022671085) +zone = ('akz213', 0.021972808066898133) + +[99770] +centroid = (1.1649421051119455, -2.7839924573079404) +station = ('pask', 0.0040655666067673834) +zone = ('akz209', 0.0095129956786011872) + +[99771] +centroid = (1.123379689516286, -2.8136166113804486) +station = ('pfsh', 0.00012491723603952749) +zone = ('akz212', 0.0076445805647985358) + +[99772] +centroid = (1.1519779390544718, -2.8957002140466126) +station = ('pash', 0.0047513020452186108) +zone = ('akz207', 0.014617262290317718) + +[99773] +centroid = (1.16740961670183, -2.7430414829091321) +station = ('pagh', 0.00031008075758980134) +zone = ('akz217', 0.0081877496145189074) + +[99774] +centroid = (1.1523290294868029, -2.6019646345148382) +station = ('pafa', 0.0230163577088821) +zone = ('akz221', 0.028884644624003031) + +[99775] +centroid = (1.13198791518651, -2.580028777970413) +station = ('pafa', 0.001020539163549947) +zone = ('akz222', 0.0042437188797553099) + +[99776] +centroid = (1.1064546383477514, -2.5028382756753849) +station = ('pabn', 0.017705050205275932) +zone = ('akz224', 0.018146048476057854) + +[99777] +centroid = (1.1380089520400398, -2.654570935111757) +station = ('pata', 0.00063683157668839726) +zone = ('akz221', 0.0097661266208278769) + +[99778] +centroid = (1.1354936009753582, -2.9047555756179051) +station = ('pate', 0.0031247740290788984) +zone = ('akz207', 0.031503170879519871) + +[99780] +centroid = (1.1027256376811103, -2.4976043648612118) +station = ('pabn', 0.013705273133819014) +zone = ('akz224', 0.021493007507633506) + +[99781] +centroid = (1.1744024703361629, -2.5523641923155815) +station = ('parc', 0.015067552973438338) +zone = ('akz218', 0.011408443611544227) + +[99782] +centroid = (1.2330038547406348, -2.7906696157871722) +station = ('pawi', 0.00083783577002602969) +zone = ('akz201', 0.010184754928794436) + +[99783] +centroid = (1.1462725973560424, -2.9335488831532937) +station = ('paiw', 0.0010556095076698997) +zone = ('akz213', 0.020505668582104768) + +[99784] +centroid = (1.1289089973063591, -2.851973345832385) +station = ('pawm', 0.00013935710716341055) +zone = ('akz211', 0.0082024610654571235) + +[99785] +centroid = (1.1404665501597731, -2.9061214353839304) +station = ('pate', 0.0023148678470116561) +zone = ('akz207', 0.026889608752476341) + +[99786] +centroid = (1.1709323718107629, -2.7253995377503406) +station = ('pafm', 0.01152272187499365) +zone = ('akz217', 0.0089231996085066979) + +[99788] +centroid = (1.1632042284158572, -2.5097639341335158) +station = ('pfyu', 0.010266476848944075) +zone = ('akz220', 0.013042515557666006) + +[99789] +centroid = (1.2217581398646749, -2.6517737482794632) +station = ('paku', 0.014978196374607214) +zone = ('akz202', 0.023448725702233816) + +[99790] +centroid = (1.141273991831623, -2.5887865434509472) +station = ('pafa', 0.010754830356267543) +zone = ('akz222', 0.0099651802385152897) + +[99791] +centroid = (1.2298978493504933, -2.7365449485541884) +station = ('patq', 0.0037784114684487869) +zone = ('akz202', 0.0090934951426155323) + +[99801] +centroid = (1.0187958082788939, -2.3418615147624093) +station = ('pajn', 0.0035732385318627026) +zone = ('akz025', 0.0070418496938238441) + +[99820] +centroid = (1.0019814807981058, -2.3418530324622449) +station = ('pagn', 0.0041192599961896543) +zone = ('akz024', 0.0043644081500936391) + +[99824] +centroid = (1.0169119696974613, -2.3457373848856058) +station = ('pajn', 0.0021271394641798895) +zone = ('akz025', 0.0069742280134357506) + +[99825] +centroid = (1.0150832660670994, -2.3690467108315958) +station = ('paoh', 0.0027446161724268389) +zone = ('akz021', 0.0045600959227406652) + +[99826] +centroid = (1.0245561278487612, -2.3867221837653179) +station = ('pael', 0.0095012870300054206) +zone = ('akz022', 0.0081950559443676983) + +[99827] +centroid = (1.0314879298658595, -2.3662842735047094) +station = ('pahn', 0.002676650687357261) +zone = ('akz019', 0.0028094484726267376) + +[99829] +centroid = (1.0141440520367238, -2.3632369286307271) +station = ('paoh', 0.0004661889852598188) +zone = ('akz021', 0.0029646947039999073) + +[99830] +centroid = (0.99137914664430848, -2.3408807968024217) +station = ('pafe', 0.0033456705122648475) +zone = ('akz024', 0.0098707863976870581) + +[99832] +centroid = (1.0118390131469073, -2.3754368324620452) +station = ('pael', 0.0045561350187236531) +zone = ('akz022', 0.0059295717012224367) + +[99833] +centroid = (0.99354056238997812, -2.3233300450970469) +station = ('papg', 0.002382551617846773) +zone = ('akz026', 0.0058363088140708395) + +[99835] +centroid = (0.9948448818465786, -2.357565062347351) +station = ('pasi', 0.0028706807591715629) +zone = ('akz023', 0.0024938664872990049) + +[99836] +centroid = (0.98148970967678062, -2.3501468894275996) +station = ('paap', 0.00026021549589899179) +zone = ('akz023', 0.011490362487410033) + +[99840] +centroid = (1.0397815948449962, -2.3620486386627992) +station = ('pagy', 0.0018997328504210213) +zone = ('akz018', 9.7745161601851306e-05) + +[99841] +centroid = (1.0087008238853588, -2.359412598080342) +station = ('paoh', 0.0061405102234232999) +zone = ('akz021', 0.0036737586401994677) + +[99901] +centroid = (0.96936293514112115, -2.2882199721196699) +station = ('pakt', 0.0069040732210073757) +zone = ('akz029', 0.0046694730447327127) + +[99903] +centroid = (0.97421540424727093, -2.304983039280327) +station = ('pakt', 0.0088714301702198291) +zone = ('akz028', 0.0048624662196142341) + +[99918] +centroid = (0.97593354126951926, -2.315973429940013) +station = ('pakw', 0.0069570661433812327) +zone = ('akz028', 0.0091064284681631972) + +[99919] +centroid = (0.97118853208541478, -2.3124852847101471) +station = ('pahy', 0.0084563772295516756) +zone = ('akz028', 0.004718045471584398) + +[99921] +centroid = (0.9670351546111513, -2.3172079362265339) +station = ('pahy', 0.0036743826786812782) +zone = ('akz027', 0.003090004144389839) + +[99922] +centroid = (0.96529846473895431, -2.3221049810417798) +station = ('pahy', 0.0028340183775348287) +zone = ('akz027', 0.00044679787434039509) + +[99923] +centroid = (0.97742478548900824, -2.2696440663715514) +station = ('czst', 0.0013293173012423633) +zone = ('akz029', 0.0086915732489297667) + +[99925] +centroid = (0.96953395995452418, -2.3203442579857825) +station = ('pakw', 0.0014741222734313928) +zone = ('akz027', 0.0044939726200358002) + +[99926] +centroid = (0.96234084724181734, -2.2945973004867022) +station = ('pamm', 0.0010775618683122922) +zone = ('akz028', 0.0090997837451370425) + +[99927] +centroid = (0.98155680013322721, -2.3292801866763608) +station = ('papg', 0.011135043490031886) +zone = ('akz026', 0.0077983912097752458) + +[99929] +centroid = (0.98460704225376772, -2.2969725365190339) +station = ('pawg', 0.0074291688921157163) +zone = ('akz026', 0.013626682734218059) \ No newline at end of file diff --git a/zlist b/zlist new file mode 100644 index 0000000..02b12b1 --- /dev/null +++ b/zlist @@ -0,0 +1,3578 @@ +# Copyright (c) 2006-2012 Jeremy Stanley . Permission to # use, copy, modify, and distribute this software is granted under terms +# provided in the LICENSE file distributed with this software. +# +# generated by manually on 2012-06-25 by running: +# +# for area in $( +# wget -qO- http://weather.noaa.gov/pub/data/forecasts/zone/ \ +# | grep '' \ +# | sed 's,.*.*,\1,' +# ) ; do +# wget -qO- http://weather.noaa.gov/pub/data/forecasts/zone/$area \ +# | grep '.*-'$( date +%b-%Y )' ' \ +# | sed 's,.*.*,\1,' +# sleep 1 +# done + +akz017 +akz018 +akz019 +akz020 +akz021 +akz022 +akz023 +akz024 +akz025 +akz026 +akz027 +akz028 +akz029 +akz101 +akz111 +akz121 +akz125 +akz131 +akz135 +akz141 +akz145 +akz152 +akz155 +akz161 +akz171 +akz181 +akz185 +akz187 +akz191 +akz195 +akz201 +akz202 +akz203 +akz204 +akz205 +akz206 +akz207 +akz208 +akz209 +akz210 +akz211 +akz212 +akz213 +akz214 +akz215 +akz216 +akz217 +akz218 +akz219 +akz220 +akz221 +akz222 +akz223 +akz224 +akz225 +akz226 +akz227 +alz001 +alz002 +alz003 +alz004 +alz005 +alz006 +alz007 +alz008 +alz009 +alz010 +alz011 +alz012 +alz013 +alz014 +alz015 +alz016 +alz017 +alz018 +alz019 +alz020 +alz021 +alz022 +alz023 +alz024 +alz025 +alz026 +alz027 +alz028 +alz029 +alz030 +alz031 +alz032 +alz033 +alz034 +alz035 +alz036 +alz037 +alz038 +alz039 +alz040 +alz041 +alz042 +alz043 +alz044 +alz045 +alz046 +alz047 +alz048 +alz049 +alz050 +alz051 +alz052 +alz053 +alz054 +alz055 +alz056 +alz057 +alz058 +alz059 +alz060 +alz061 +alz062 +alz063 +alz064 +alz065 +alz066 +alz067 +alz068 +alz069 +arz001 +arz002 +arz003 +arz004 +arz005 +arz006 +arz007 +arz008 +arz009 +arz010 +arz011 +arz012 +arz013 +arz014 +arz015 +arz016 +arz017 +arz018 +arz019 +arz020 +arz021 +arz022 +arz023 +arz024 +arz025 +arz026 +arz027 +arz028 +arz029 +arz030 +arz031 +arz032 +arz033 +arz034 +arz035 +arz036 +arz037 +arz038 +arz039 +arz040 +arz041 +arz042 +arz043 +arz044 +arz045 +arz046 +arz047 +arz048 +arz049 +arz050 +arz051 +arz052 +arz053 +arz054 +arz055 +arz056 +arz057 +arz058 +arz059 +arz060 +arz061 +arz062 +arz063 +arz064 +arz065 +arz066 +arz067 +arz068 +arz069 +arz070 +arz071 +arz072 +arz073 +arz074 +arz075 +asz001 +asz002 +asz003 +azz001 +azz002 +azz003 +azz004 +azz005 +azz006 +azz007 +azz008 +azz009 +azz010 +azz011 +azz012 +azz013 +azz014 +azz015 +azz016 +azz017 +azz018 +azz020 +azz021 +azz022 +azz023 +azz024 +azz025 +azz026 +azz027 +azz028 +azz036 +azz037 +azz038 +azz039 +azz040 +azz501 +azz502 +azz503 +azz504 +azz505 +azz506 +azz507 +azz508 +azz509 +azz510 +azz511 +azz512 +azz513 +azz514 +azz515 +caz001 +caz002 +caz003 +caz004 +caz006 +caz013 +caz014 +caz015 +caz016 +caz017 +caz018 +caz019 +caz030 +caz031 +caz032 +caz033 +caz034 +caz035 +caz036 +caz037 +caz038 +caz039 +caz040 +caz041 +caz042 +caz043 +caz044 +caz045 +caz046 +caz048 +caz050 +caz051 +caz052 +caz053 +caz054 +caz055 +caz056 +caz057 +caz058 +caz059 +caz060 +caz061 +caz062 +caz063 +caz064 +caz066 +caz067 +caz068 +caz069 +caz070 +caz071 +caz072 +caz073 +caz076 +caz080 +caz081 +caz082 +caz083 +caz084 +caz085 +caz087 +caz088 +caz089 +caz090 +caz091 +caz092 +caz093 +caz094 +caz095 +caz096 +caz097 +caz098 +caz099 +caz505 +caz506 +caz507 +caz508 +caz509 +caz510 +caz511 +caz512 +caz513 +caz516 +caz517 +caz518 +caz519 +caz520 +caz521 +caz522 +caz523 +caz524 +caz525 +caz526 +caz527 +caz528 +caz529 +caz530 +caz547 +caz548 +coz001 +coz002 +coz003 +coz004 +coz005 +coz006 +coz007 +coz008 +coz009 +coz010 +coz011 +coz012 +coz013 +coz014 +coz017 +coz018 +coz019 +coz020 +coz021 +coz022 +coz023 +coz030 +coz031 +coz032 +coz033 +coz034 +coz035 +coz036 +coz037 +coz038 +coz039 +coz040 +coz041 +coz042 +coz043 +coz044 +coz045 +coz046 +coz047 +coz048 +coz049 +coz050 +coz051 +coz058 +coz059 +coz060 +coz061 +coz062 +coz063 +coz064 +coz065 +coz066 +coz067 +coz068 +coz069 +coz070 +coz071 +coz072 +coz073 +coz074 +coz075 +coz076 +coz077 +coz078 +coz079 +coz080 +coz081 +coz082 +coz083 +coz084 +coz085 +coz086 +coz087 +coz088 +coz089 +coz090 +coz091 +coz092 +coz093 +coz094 +coz095 +coz096 +coz097 +coz098 +coz099 +ctz001 +ctz002 +ctz003 +ctz004 +ctz005 +ctz006 +ctz007 +ctz008 +ctz009 +ctz010 +ctz011 +ctz012 +ctz013 +dcz001 +dez001 +dez002 +dez003 +dez004 +flz001 +flz002 +flz003 +flz004 +flz005 +flz006 +flz007 +flz008 +flz009 +flz010 +flz011 +flz012 +flz013 +flz014 +flz015 +flz016 +flz017 +flz018 +flz019 +flz020 +flz021 +flz022 +flz023 +flz024 +flz025 +flz026 +flz027 +flz028 +flz029 +flz030 +flz031 +flz032 +flz033 +flz034 +flz035 +flz036 +flz037 +flz038 +flz039 +flz040 +flz041 +flz042 +flz043 +flz044 +flz045 +flz046 +flz047 +flz048 +flz049 +flz050 +flz051 +flz052 +flz053 +flz054 +flz055 +flz056 +flz057 +flz058 +flz059 +flz060 +flz061 +flz062 +flz063 +flz064 +flz065 +flz066 +flz067 +flz068 +flz069 +flz070 +flz071 +flz072 +flz073 +flz074 +flz075 +flz076 +flz077 +flz078 +flz108 +flz112 +flz114 +flz115 +flz118 +flz127 +flz128 +flz134 +flz141 +flz144 +flz147 +flz168 +flz172 +flz173 +flz174 +gaz001 +gaz002 +gaz003 +gaz004 +gaz005 +gaz006 +gaz007 +gaz008 +gaz009 +gaz010 +gaz011 +gaz012 +gaz013 +gaz014 +gaz015 +gaz016 +gaz017 +gaz018 +gaz019 +gaz020 +gaz021 +gaz022 +gaz023 +gaz024 +gaz025 +gaz026 +gaz027 +gaz028 +gaz029 +gaz030 +gaz031 +gaz032 +gaz033 +gaz034 +gaz035 +gaz036 +gaz037 +gaz038 +gaz039 +gaz040 +gaz041 +gaz042 +gaz043 +gaz044 +gaz045 +gaz046 +gaz047 +gaz048 +gaz049 +gaz050 +gaz051 +gaz052 +gaz053 +gaz054 +gaz055 +gaz056 +gaz057 +gaz058 +gaz059 +gaz060 +gaz061 +gaz062 +gaz063 +gaz064 +gaz065 +gaz066 +gaz067 +gaz068 +gaz069 +gaz070 +gaz071 +gaz072 +gaz073 +gaz074 +gaz075 +gaz076 +gaz077 +gaz078 +gaz079 +gaz080 +gaz081 +gaz082 +gaz083 +gaz084 +gaz085 +gaz086 +gaz087 +gaz088 +gaz089 +gaz090 +gaz091 +gaz092 +gaz093 +gaz094 +gaz095 +gaz096 +gaz097 +gaz098 +gaz099 +gaz100 +gaz101 +gaz102 +gaz103 +gaz104 +gaz105 +gaz106 +gaz107 +gaz108 +gaz109 +gaz110 +gaz111 +gaz112 +gaz113 +gaz114 +gaz115 +gaz116 +gaz117 +gaz118 +gaz119 +gaz120 +gaz121 +gaz122 +gaz123 +gaz124 +gaz125 +gaz126 +gaz127 +gaz128 +gaz129 +gaz130 +gaz131 +gaz132 +gaz133 +gaz134 +gaz135 +gaz136 +gaz137 +gaz138 +gaz139 +gaz140 +gaz141 +gaz142 +gaz143 +gaz144 +gaz145 +gaz146 +gaz147 +gaz148 +gaz149 +gaz150 +gaz151 +gaz152 +gaz153 +gaz154 +gaz155 +gaz156 +gaz157 +gaz158 +gaz159 +gaz160 +gaz161 +gaz162 +gaz163 +gaz164 +gaz165 +gaz166 +guz001 +guz002 +guz003 +guz004 +hiz001 +hiz002 +hiz003 +hiz004 +hiz005 +hiz006 +hiz007 +hiz008 +hiz009 +hiz010 +hiz011 +hiz012 +hiz013 +hiz014 +hiz015 +hiz016 +hiz017 +hiz018 +hiz019 +hiz020 +hiz021 +hiz022 +hiz023 +hiz024 +hiz025 +hiz026 +hiz027 +hiz028 +iaz001 +iaz002 +iaz003 +iaz004 +iaz005 +iaz006 +iaz007 +iaz008 +iaz009 +iaz010 +iaz011 +iaz012 +iaz013 +iaz014 +iaz015 +iaz016 +iaz017 +iaz018 +iaz019 +iaz020 +iaz021 +iaz022 +iaz023 +iaz024 +iaz025 +iaz026 +iaz027 +iaz028 +iaz029 +iaz030 +iaz031 +iaz032 +iaz033 +iaz034 +iaz035 +iaz036 +iaz037 +iaz038 +iaz039 +iaz040 +iaz041 +iaz042 +iaz043 +iaz044 +iaz045 +iaz046 +iaz047 +iaz048 +iaz049 +iaz050 +iaz051 +iaz052 +iaz053 +iaz054 +iaz055 +iaz056 +iaz057 +iaz058 +iaz059 +iaz060 +iaz061 +iaz062 +iaz063 +iaz064 +iaz065 +iaz066 +iaz067 +iaz068 +iaz069 +iaz070 +iaz071 +iaz072 +iaz073 +iaz074 +iaz075 +iaz076 +iaz077 +iaz078 +iaz079 +iaz080 +iaz081 +iaz082 +iaz083 +iaz084 +iaz085 +iaz086 +iaz087 +iaz088 +iaz089 +iaz090 +iaz091 +iaz092 +iaz093 +iaz094 +iaz095 +iaz096 +iaz097 +iaz098 +iaz099 +idz001 +idz002 +idz003 +idz004 +idz005 +idz006 +idz007 +idz008 +idz009 +idz010 +idz011 +idz012 +idz013 +idz014 +idz015 +idz016 +idz017 +idz018 +idz019 +idz020 +idz021 +idz022 +idz023 +idz024 +idz025 +idz026 +idz027 +idz028 +idz029 +idz030 +idz031 +idz032 +idz033 +ilz001 +ilz002 +ilz003 +ilz004 +ilz005 +ilz006 +ilz007 +ilz008 +ilz009 +ilz010 +ilz011 +ilz012 +ilz013 +ilz014 +ilz015 +ilz016 +ilz017 +ilz018 +ilz019 +ilz020 +ilz021 +ilz022 +ilz023 +ilz024 +ilz025 +ilz026 +ilz027 +ilz028 +ilz029 +ilz030 +ilz031 +ilz032 +ilz033 +ilz034 +ilz035 +ilz036 +ilz037 +ilz038 +ilz039 +ilz040 +ilz041 +ilz042 +ilz043 +ilz044 +ilz045 +ilz046 +ilz047 +ilz048 +ilz049 +ilz050 +ilz051 +ilz052 +ilz053 +ilz054 +ilz055 +ilz056 +ilz057 +ilz058 +ilz059 +ilz060 +ilz061 +ilz062 +ilz063 +ilz064 +ilz065 +ilz066 +ilz067 +ilz068 +ilz069 +ilz070 +ilz071 +ilz072 +ilz073 +ilz074 +ilz075 +ilz076 +ilz077 +ilz078 +ilz079 +ilz080 +ilz081 +ilz082 +ilz083 +ilz084 +ilz085 +ilz086 +ilz087 +ilz088 +ilz089 +ilz090 +ilz091 +ilz092 +ilz093 +ilz094 +ilz095 +ilz096 +ilz097 +ilz098 +ilz099 +ilz100 +ilz101 +ilz102 +inz001 +inz002 +inz003 +inz004 +inz005 +inz006 +inz007 +inz008 +inz009 +inz010 +inz011 +inz012 +inz013 +inz014 +inz015 +inz016 +inz017 +inz018 +inz019 +inz020 +inz021 +inz022 +inz023 +inz024 +inz025 +inz026 +inz027 +inz028 +inz029 +inz030 +inz031 +inz032 +inz033 +inz034 +inz035 +inz036 +inz037 +inz038 +inz039 +inz040 +inz041 +inz042 +inz043 +inz044 +inz045 +inz046 +inz047 +inz048 +inz049 +inz050 +inz051 +inz052 +inz053 +inz054 +inz055 +inz056 +inz057 +inz058 +inz059 +inz060 +inz061 +inz062 +inz063 +inz064 +inz065 +inz066 +inz067 +inz068 +inz069 +inz070 +inz071 +inz072 +inz073 +inz074 +inz075 +inz076 +inz077 +inz078 +inz079 +inz080 +inz081 +inz082 +inz083 +inz084 +inz085 +inz086 +inz087 +inz088 +inz089 +inz090 +inz091 +inz092 +ksz001 +ksz002 +ksz003 +ksz004 +ksz005 +ksz006 +ksz007 +ksz008 +ksz009 +ksz010 +ksz011 +ksz012 +ksz013 +ksz014 +ksz015 +ksz016 +ksz017 +ksz018 +ksz019 +ksz020 +ksz021 +ksz022 +ksz023 +ksz024 +ksz025 +ksz026 +ksz027 +ksz028 +ksz029 +ksz030 +ksz031 +ksz032 +ksz033 +ksz034 +ksz035 +ksz036 +ksz037 +ksz038 +ksz039 +ksz040 +ksz041 +ksz042 +ksz043 +ksz044 +ksz045 +ksz046 +ksz047 +ksz048 +ksz049 +ksz050 +ksz051 +ksz052 +ksz053 +ksz054 +ksz055 +ksz056 +ksz057 +ksz058 +ksz059 +ksz060 +ksz061 +ksz062 +ksz063 +ksz064 +ksz065 +ksz066 +ksz067 +ksz068 +ksz069 +ksz070 +ksz071 +ksz072 +ksz073 +ksz074 +ksz075 +ksz076 +ksz077 +ksz078 +ksz079 +ksz080 +ksz081 +ksz082 +ksz083 +ksz084 +ksz085 +ksz086 +ksz087 +ksz088 +ksz089 +ksz090 +ksz091 +ksz092 +ksz093 +ksz094 +ksz095 +ksz096 +ksz097 +ksz098 +ksz099 +ksz100 +ksz101 +ksz102 +ksz103 +ksz104 +ksz105 +kyz001 +kyz002 +kyz003 +kyz004 +kyz005 +kyz006 +kyz007 +kyz008 +kyz009 +kyz010 +kyz011 +kyz012 +kyz013 +kyz014 +kyz015 +kyz016 +kyz017 +kyz018 +kyz019 +kyz020 +kyz021 +kyz022 +kyz023 +kyz024 +kyz025 +kyz026 +kyz027 +kyz028 +kyz029 +kyz030 +kyz031 +kyz032 +kyz033 +kyz034 +kyz035 +kyz036 +kyz037 +kyz038 +kyz039 +kyz040 +kyz041 +kyz042 +kyz043 +kyz044 +kyz045 +kyz046 +kyz047 +kyz048 +kyz049 +kyz050 +kyz051 +kyz052 +kyz053 +kyz054 +kyz055 +kyz056 +kyz057 +kyz058 +kyz059 +kyz060 +kyz061 +kyz062 +kyz063 +kyz064 +kyz065 +kyz066 +kyz067 +kyz068 +kyz069 +kyz070 +kyz071 +kyz072 +kyz073 +kyz074 +kyz075 +kyz076 +kyz077 +kyz078 +kyz079 +kyz080 +kyz081 +kyz082 +kyz083 +kyz084 +kyz085 +kyz086 +kyz087 +kyz088 +kyz089 +kyz090 +kyz091 +kyz092 +kyz093 +kyz094 +kyz095 +kyz096 +kyz097 +kyz098 +kyz099 +kyz100 +kyz101 +kyz102 +kyz103 +kyz104 +kyz105 +kyz106 +kyz107 +kyz108 +kyz109 +kyz110 +kyz111 +kyz112 +kyz113 +kyz114 +kyz115 +kyz116 +kyz117 +kyz118 +kyz119 +kyz120 +laz001 +laz002 +laz003 +laz004 +laz005 +laz006 +laz007 +laz008 +laz009 +laz010 +laz011 +laz012 +laz013 +laz014 +laz015 +laz016 +laz017 +laz018 +laz019 +laz020 +laz021 +laz022 +laz023 +laz024 +laz025 +laz026 +laz027 +laz028 +laz029 +laz030 +laz031 +laz032 +laz033 +laz034 +laz035 +laz036 +laz037 +laz039 +laz040 +laz041 +laz042 +laz043 +laz044 +laz045 +laz046 +laz047 +laz048 +laz049 +laz050 +laz052 +laz053 +laz054 +laz055 +laz056 +laz057 +laz058 +laz059 +laz060 +laz061 +laz062 +laz063 +laz064 +laz065 +laz066 +laz067 +laz068 +laz069 +laz070 +laz071 +laz072 +laz073 +laz074 +maz001 +maz002 +maz003 +maz004 +maz005 +maz006 +maz007 +maz008 +maz009 +maz010 +maz011 +maz012 +maz013 +maz014 +maz015 +maz016 +maz017 +maz018 +maz019 +maz020 +maz021 +maz022 +maz023 +maz024 +maz025 +maz026 +mdz001 +mdz003 +mdz004 +mdz005 +mdz006 +mdz007 +mdz008 +mdz009 +mdz010 +mdz011 +mdz012 +mdz013 +mdz014 +mdz015 +mdz016 +mdz017 +mdz018 +mdz019 +mdz020 +mdz021 +mdz022 +mdz023 +mdz024 +mdz025 +mdz501 +mdz502 +mez001 +mez002 +mez003 +mez004 +mez005 +mez006 +mez007 +mez008 +mez009 +mez010 +mez011 +mez012 +mez013 +mez014 +mez015 +mez016 +mez017 +mez018 +mez019 +mez020 +mez021 +mez022 +mez023 +mez024 +mez025 +mez026 +mez027 +mez028 +mez029 +mez030 +mez031 +mez032 +miz001 +miz002 +miz003 +miz004 +miz005 +miz006 +miz007 +miz008 +miz009 +miz010 +miz011 +miz012 +miz013 +miz014 +miz015 +miz016 +miz017 +miz018 +miz019 +miz020 +miz021 +miz022 +miz023 +miz024 +miz025 +miz026 +miz027 +miz028 +miz029 +miz030 +miz031 +miz032 +miz033 +miz034 +miz035 +miz036 +miz037 +miz038 +miz039 +miz040 +miz041 +miz042 +miz043 +miz044 +miz045 +miz046 +miz047 +miz048 +miz049 +miz050 +miz051 +miz052 +miz053 +miz054 +miz055 +miz056 +miz057 +miz058 +miz059 +miz060 +miz061 +miz062 +miz063 +miz064 +miz065 +miz066 +miz067 +miz068 +miz069 +miz070 +miz071 +miz072 +miz073 +miz074 +miz075 +miz076 +miz077 +miz078 +miz079 +miz080 +miz081 +miz082 +miz083 +miz084 +miz085 +mnz001 +mnz002 +mnz003 +mnz004 +mnz005 +mnz006 +mnz007 +mnz008 +mnz009 +mnz010 +mnz011 +mnz012 +mnz013 +mnz014 +mnz015 +mnz016 +mnz017 +mnz018 +mnz019 +mnz020 +mnz021 +mnz022 +mnz023 +mnz024 +mnz025 +mnz026 +mnz027 +mnz028 +mnz029 +mnz030 +mnz031 +mnz032 +mnz033 +mnz034 +mnz035 +mnz036 +mnz037 +mnz038 +mnz039 +mnz040 +mnz041 +mnz042 +mnz043 +mnz044 +mnz045 +mnz046 +mnz047 +mnz048 +mnz049 +mnz050 +mnz051 +mnz052 +mnz053 +mnz054 +mnz055 +mnz056 +mnz057 +mnz058 +mnz059 +mnz060 +mnz061 +mnz062 +mnz063 +mnz064 +mnz065 +mnz066 +mnz067 +mnz068 +mnz069 +mnz070 +mnz071 +mnz072 +mnz073 +mnz074 +mnz075 +mnz076 +mnz077 +mnz078 +mnz079 +mnz080 +mnz081 +mnz082 +mnz083 +mnz084 +mnz085 +mnz086 +mnz087 +mnz088 +mnz089 +mnz090 +mnz091 +mnz092 +mnz093 +mnz094 +mnz095 +mnz096 +mnz097 +mnz098 +moz001 +moz002 +moz003 +moz004 +moz005 +moz006 +moz007 +moz008 +moz009 +moz010 +moz011 +moz012 +moz013 +moz014 +moz015 +moz016 +moz017 +moz018 +moz019 +moz020 +moz021 +moz022 +moz023 +moz024 +moz025 +moz026 +moz027 +moz028 +moz029 +moz030 +moz031 +moz032 +moz033 +moz034 +moz035 +moz036 +moz037 +moz038 +moz039 +moz040 +moz041 +moz042 +moz043 +moz044 +moz045 +moz046 +moz047 +moz048 +moz049 +moz050 +moz051 +moz052 +moz053 +moz054 +moz055 +moz056 +moz057 +moz058 +moz059 +moz060 +moz061 +moz062 +moz063 +moz064 +moz065 +moz066 +moz067 +moz068 +moz069 +moz070 +moz071 +moz072 +moz073 +moz074 +moz075 +moz076 +moz077 +moz078 +moz079 +moz080 +moz081 +moz082 +moz083 +moz084 +moz085 +moz086 +moz087 +moz088 +moz089 +moz090 +moz091 +moz092 +moz093 +moz094 +moz095 +moz096 +moz097 +moz098 +moz099 +moz100 +moz101 +moz102 +moz103 +moz104 +moz105 +moz106 +moz107 +moz108 +moz109 +moz110 +moz111 +moz112 +moz113 +moz114 +moz115 +msz001 +msz002 +msz003 +msz004 +msz005 +msz006 +msz007 +msz008 +msz009 +msz010 +msz011 +msz012 +msz013 +msz014 +msz015 +msz016 +msz017 +msz018 +msz019 +msz020 +msz021 +msz022 +msz023 +msz024 +msz025 +msz026 +msz027 +msz028 +msz029 +msz030 +msz031 +msz032 +msz033 +msz034 +msz035 +msz036 +msz037 +msz038 +msz039 +msz040 +msz041 +msz042 +msz043 +msz044 +msz045 +msz046 +msz047 +msz048 +msz049 +msz050 +msz051 +msz052 +msz053 +msz054 +msz055 +msz056 +msz057 +msz058 +msz059 +msz060 +msz061 +msz062 +msz063 +msz064 +msz065 +msz066 +msz067 +msz068 +msz069 +msz070 +msz071 +msz072 +msz073 +msz074 +msz075 +msz076 +msz077 +msz078 +msz079 +msz080 +msz081 +msz082 +mtz001 +mtz002 +mtz003 +mtz004 +mtz005 +mtz006 +mtz007 +mtz008 +mtz009 +mtz010 +mtz011 +mtz012 +mtz013 +mtz014 +mtz015 +mtz016 +mtz017 +mtz018 +mtz019 +mtz020 +mtz021 +mtz022 +mtz023 +mtz024 +mtz025 +mtz026 +mtz027 +mtz028 +mtz029 +mtz030 +mtz031 +mtz032 +mtz033 +mtz034 +mtz035 +mtz036 +mtz037 +mtz038 +mtz039 +mtz040 +mtz041 +mtz042 +mtz043 +mtz044 +mtz045 +mtz046 +mtz047 +mtz048 +mtz049 +mtz050 +mtz051 +mtz052 +mtz053 +mtz054 +mtz055 +mtz056 +mtz057 +mtz058 +mtz059 +mtz060 +mtz061 +mtz062 +mtz063 +mtz064 +mtz065 +mtz066 +mtz067 +mtz068 +ncz001 +ncz002 +ncz003 +ncz004 +ncz005 +ncz006 +ncz007 +ncz008 +ncz009 +ncz010 +ncz011 +ncz012 +ncz013 +ncz014 +ncz015 +ncz016 +ncz017 +ncz018 +ncz019 +ncz020 +ncz021 +ncz022 +ncz023 +ncz024 +ncz025 +ncz026 +ncz027 +ncz028 +ncz029 +ncz030 +ncz031 +ncz032 +ncz033 +ncz035 +ncz036 +ncz037 +ncz038 +ncz039 +ncz040 +ncz041 +ncz042 +ncz043 +ncz044 +ncz045 +ncz046 +ncz047 +ncz048 +ncz049 +ncz050 +ncz051 +ncz052 +ncz053 +ncz056 +ncz057 +ncz058 +ncz059 +ncz060 +ncz061 +ncz062 +ncz063 +ncz064 +ncz065 +ncz068 +ncz069 +ncz070 +ncz071 +ncz072 +ncz073 +ncz074 +ncz075 +ncz076 +ncz077 +ncz078 +ncz079 +ncz080 +ncz081 +ncz082 +ncz083 +ncz084 +ncz085 +ncz086 +ncz087 +ncz088 +ncz089 +ncz090 +ncz091 +ncz092 +ncz093 +ncz094 +ncz095 +ncz096 +ncz098 +ncz099 +ncz102 +ncz103 +ncz104 +ncz105 +ncz106 +ncz107 +ncz108 +ncz109 +ncz110 +ncz501 +ncz502 +ncz503 +ncz504 +ncz505 +ncz506 +ncz507 +ncz508 +ncz509 +ncz510 +ndz001 +ndz002 +ndz003 +ndz004 +ndz005 +ndz006 +ndz007 +ndz008 +ndz009 +ndz010 +ndz011 +ndz012 +ndz013 +ndz014 +ndz015 +ndz016 +ndz017 +ndz018 +ndz019 +ndz020 +ndz021 +ndz022 +ndz023 +ndz024 +ndz025 +ndz026 +ndz027 +ndz028 +ndz029 +ndz030 +ndz031 +ndz032 +ndz033 +ndz034 +ndz035 +ndz036 +ndz037 +ndz038 +ndz039 +ndz040 +ndz041 +ndz042 +ndz043 +ndz044 +ndz045 +ndz046 +ndz047 +ndz048 +ndz049 +ndz050 +ndz051 +ndz052 +ndz053 +ndz054 +nez002 +nez003 +nez004 +nez005 +nez006 +nez007 +nez008 +nez009 +nez010 +nez011 +nez012 +nez013 +nez014 +nez015 +nez016 +nez017 +nez018 +nez019 +nez020 +nez021 +nez022 +nez023 +nez024 +nez025 +nez026 +nez027 +nez028 +nez029 +nez030 +nez031 +nez032 +nez033 +nez034 +nez035 +nez036 +nez037 +nez038 +nez039 +nez040 +nez041 +nez042 +nez043 +nez044 +nez045 +nez046 +nez047 +nez048 +nez049 +nez050 +nez051 +nez052 +nez053 +nez054 +nez055 +nez056 +nez057 +nez058 +nez059 +nez060 +nez061 +nez062 +nez063 +nez064 +nez065 +nez066 +nez067 +nez068 +nez069 +nez070 +nez071 +nez072 +nez073 +nez074 +nez075 +nez076 +nez077 +nez078 +nez079 +nez080 +nez081 +nez082 +nez083 +nez084 +nez085 +nez086 +nez087 +nez088 +nez089 +nez090 +nez091 +nez092 +nez093 +nez094 +nez095 +nez096 +nhz001 +nhz002 +nhz003 +nhz004 +nhz005 +nhz006 +nhz007 +nhz008 +nhz009 +nhz010 +nhz011 +nhz012 +nhz013 +nhz014 +nhz015 +njz001 +njz002 +njz004 +njz006 +njz007 +njz008 +njz009 +njz010 +njz012 +njz013 +njz014 +njz015 +njz016 +njz017 +njz018 +njz019 +njz020 +njz021 +njz022 +njz023 +njz024 +njz025 +njz026 +njz027 +njz103 +njz104 +njz105 +njz106 +njz107 +njz108 +nmz027 +nmz028 +nmz029 +nmz033 +nmz034 +nmz401 +nmz402 +nmz403 +nmz404 +nmz405 +nmz406 +nmz407 +nmz408 +nmz409 +nmz410 +nmz411 +nmz412 +nmz413 +nmz414 +nmz415 +nmz416 +nmz417 +nmz501 +nmz502 +nmz503 +nmz504 +nmz505 +nmz506 +nmz507 +nmz508 +nmz509 +nmz510 +nmz511 +nmz512 +nmz513 +nmz514 +nmz515 +nmz516 +nmz517 +nmz518 +nmz519 +nmz520 +nmz521 +nmz522 +nmz523 +nmz524 +nmz525 +nmz526 +nmz527 +nmz528 +nmz529 +nmz530 +nmz531 +nmz532 +nmz533 +nmz534 +nmz535 +nmz536 +nmz537 +nmz538 +nmz539 +nmz540 +nvz001 +nvz002 +nvz003 +nvz004 +nvz005 +nvz014 +nvz015 +nvz016 +nvz017 +nvz018 +nvz019 +nvz020 +nvz021 +nvz022 +nvz030 +nvz031 +nvz033 +nvz034 +nvz035 +nvz036 +nvz037 +nvz038 +nvz039 +nvz040 +nvz041 +nyz001 +nyz002 +nyz003 +nyz004 +nyz005 +nyz006 +nyz007 +nyz008 +nyz009 +nyz010 +nyz011 +nyz012 +nyz013 +nyz014 +nyz015 +nyz016 +nyz017 +nyz018 +nyz019 +nyz020 +nyz021 +nyz022 +nyz023 +nyz024 +nyz025 +nyz026 +nyz027 +nyz028 +nyz029 +nyz030 +nyz031 +nyz032 +nyz033 +nyz034 +nyz035 +nyz036 +nyz037 +nyz038 +nyz039 +nyz040 +nyz041 +nyz042 +nyz043 +nyz044 +nyz045 +nyz046 +nyz047 +nyz048 +nyz049 +nyz050 +nyz051 +nyz052 +nyz053 +nyz054 +nyz055 +nyz056 +nyz057 +nyz058 +nyz059 +nyz060 +nyz061 +nyz062 +nyz063 +nyz064 +nyz065 +nyz066 +nyz067 +nyz068 +nyz069 +nyz070 +nyz071 +nyz072 +nyz073 +nyz074 +nyz075 +nyz078 +nyz079 +nyz080 +nyz081 +nyz082 +nyz083 +nyz084 +nyz085 +nyz087 +nyz176 +nyz177 +nyz178 +nyz179 +ohz001 +ohz002 +ohz003 +ohz004 +ohz005 +ohz006 +ohz007 +ohz008 +ohz009 +ohz010 +ohz011 +ohz012 +ohz013 +ohz014 +ohz015 +ohz016 +ohz017 +ohz018 +ohz019 +ohz020 +ohz021 +ohz022 +ohz023 +ohz024 +ohz025 +ohz026 +ohz027 +ohz028 +ohz029 +ohz030 +ohz031 +ohz032 +ohz033 +ohz034 +ohz035 +ohz036 +ohz037 +ohz038 +ohz039 +ohz040 +ohz041 +ohz042 +ohz043 +ohz044 +ohz045 +ohz046 +ohz047 +ohz048 +ohz049 +ohz050 +ohz051 +ohz052 +ohz053 +ohz054 +ohz055 +ohz056 +ohz057 +ohz058 +ohz059 +ohz060 +ohz061 +ohz062 +ohz063 +ohz064 +ohz065 +ohz066 +ohz067 +ohz068 +ohz069 +ohz070 +ohz071 +ohz072 +ohz073 +ohz074 +ohz075 +ohz076 +ohz077 +ohz078 +ohz079 +ohz080 +ohz081 +ohz082 +ohz083 +ohz084 +ohz085 +ohz086 +ohz087 +ohz088 +ohz089 +okz001 +okz002 +okz003 +okz004 +okz005 +okz006 +okz007 +okz008 +okz009 +okz010 +okz011 +okz012 +okz013 +okz014 +okz015 +okz016 +okz017 +okz018 +okz019 +okz020 +okz021 +okz022 +okz023 +okz024 +okz025 +okz026 +okz027 +okz028 +okz029 +okz030 +okz031 +okz032 +okz033 +okz034 +okz035 +okz036 +okz037 +okz038 +okz039 +okz040 +okz041 +okz042 +okz043 +okz044 +okz045 +okz046 +okz047 +okz048 +okz049 +okz050 +okz051 +okz052 +okz053 +okz054 +okz055 +okz056 +okz057 +okz058 +okz059 +okz060 +okz061 +okz062 +okz063 +okz064 +okz065 +okz066 +okz067 +okz068 +okz069 +okz070 +okz071 +okz072 +okz073 +okz074 +okz075 +okz076 +okz077 +orz001 +orz002 +orz003 +orz004 +orz005 +orz006 +orz007 +orz008 +orz009 +orz010 +orz011 +orz012 +orz013 +orz014 +orz021 +orz022 +orz023 +orz024 +orz025 +orz026 +orz027 +orz028 +orz029 +orz030 +orz031 +orz041 +orz042 +orz044 +orz049 +orz050 +orz061 +orz062 +orz063 +orz064 +orz502 +orz503 +orz505 +orz506 +orz507 +orz508 +orz509 +paz001 +paz002 +paz003 +paz004 +paz005 +paz006 +paz007 +paz008 +paz009 +paz010 +paz011 +paz012 +paz013 +paz014 +paz015 +paz016 +paz017 +paz018 +paz019 +paz020 +paz021 +paz022 +paz023 +paz024 +paz025 +paz026 +paz027 +paz028 +paz029 +paz031 +paz033 +paz034 +paz035 +paz036 +paz037 +paz038 +paz039 +paz040 +paz041 +paz042 +paz043 +paz044 +paz045 +paz046 +paz047 +paz048 +paz049 +paz050 +paz051 +paz052 +paz053 +paz054 +paz055 +paz056 +paz057 +paz058 +paz059 +paz060 +paz061 +paz062 +paz063 +paz064 +paz065 +paz066 +paz067 +paz068 +paz069 +paz070 +paz071 +paz072 +paz073 +paz074 +paz075 +paz076 +prz001 +prz002 +prz003 +prz004 +prz005 +prz006 +prz007 +prz008 +prz009 +prz010 +prz011 +prz012 +prz013 +riz001 +riz002 +riz003 +riz004 +riz005 +riz006 +riz007 +riz008 +scz001 +scz002 +scz003 +scz004 +scz005 +scz006 +scz007 +scz008 +scz009 +scz010 +scz011 +scz012 +scz013 +scz014 +scz015 +scz016 +scz017 +scz018 +scz019 +scz020 +scz021 +scz022 +scz023 +scz024 +scz025 +scz026 +scz027 +scz028 +scz029 +scz030 +scz031 +scz032 +scz033 +scz035 +scz036 +scz037 +scz038 +scz039 +scz040 +scz041 +scz042 +scz043 +scz044 +scz045 +scz047 +scz048 +scz049 +scz050 +scz051 +scz052 +scz053 +scz054 +scz055 +scz056 +sdz001 +sdz002 +sdz003 +sdz004 +sdz005 +sdz006 +sdz007 +sdz008 +sdz009 +sdz010 +sdz011 +sdz012 +sdz013 +sdz014 +sdz015 +sdz016 +sdz017 +sdz018 +sdz019 +sdz020 +sdz021 +sdz022 +sdz023 +sdz024 +sdz025 +sdz026 +sdz027 +sdz028 +sdz029 +sdz030 +sdz031 +sdz032 +sdz033 +sdz034 +sdz035 +sdz036 +sdz037 +sdz038 +sdz039 +sdz040 +sdz041 +sdz042 +sdz043 +sdz044 +sdz045 +sdz046 +sdz047 +sdz048 +sdz049 +sdz050 +sdz051 +sdz052 +sdz053 +sdz054 +sdz055 +sdz056 +sdz057 +sdz058 +sdz059 +sdz060 +sdz061 +sdz062 +sdz063 +sdz064 +sdz065 +sdz066 +sdz067 +sdz068 +sdz069 +sdz070 +sdz071 +sdz072 +sdz073 +sdz074 +tnz001 +tnz002 +tnz003 +tnz004 +tnz005 +tnz006 +tnz007 +tnz008 +tnz009 +tnz010 +tnz011 +tnz012 +tnz013 +tnz014 +tnz015 +tnz016 +tnz017 +tnz018 +tnz019 +tnz020 +tnz021 +tnz022 +tnz023 +tnz024 +tnz025 +tnz026 +tnz027 +tnz028 +tnz029 +tnz030 +tnz031 +tnz032 +tnz033 +tnz034 +tnz035 +tnz036 +tnz037 +tnz038 +tnz039 +tnz040 +tnz041 +tnz042 +tnz043 +tnz044 +tnz045 +tnz046 +tnz047 +tnz048 +tnz049 +tnz050 +tnz051 +tnz052 +tnz053 +tnz054 +tnz055 +tnz056 +tnz057 +tnz058 +tnz059 +tnz060 +tnz061 +tnz062 +tnz063 +tnz064 +tnz065 +tnz066 +tnz067 +tnz068 +tnz069 +tnz070 +tnz071 +tnz072 +tnz073 +tnz074 +tnz075 +tnz076 +tnz077 +tnz078 +tnz079 +tnz080 +tnz081 +tnz082 +tnz083 +tnz084 +tnz085 +tnz086 +tnz087 +tnz088 +tnz089 +tnz090 +tnz091 +tnz092 +tnz093 +tnz094 +tnz095 +tnz096 +tnz097 +tnz098 +tnz099 +tnz100 +tnz101 +tnz102 +txz001 +txz002 +txz003 +txz004 +txz005 +txz006 +txz007 +txz008 +txz009 +txz010 +txz011 +txz012 +txz013 +txz014 +txz015 +txz016 +txz017 +txz018 +txz019 +txz020 +txz021 +txz022 +txz023 +txz024 +txz025 +txz026 +txz027 +txz028 +txz029 +txz030 +txz031 +txz032 +txz033 +txz034 +txz035 +txz036 +txz037 +txz038 +txz039 +txz040 +txz041 +txz042 +txz043 +txz044 +txz045 +txz046 +txz047 +txz048 +txz049 +txz050 +txz051 +txz052 +txz053 +txz054 +txz057 +txz058 +txz059 +txz060 +txz061 +txz062 +txz063 +txz064 +txz065 +txz066 +txz067 +txz068 +txz069 +txz070 +txz071 +txz072 +txz073 +txz074 +txz075 +txz076 +txz077 +txz078 +txz079 +txz080 +txz081 +txz082 +txz083 +txz084 +txz085 +txz086 +txz087 +txz088 +txz089 +txz090 +txz091 +txz092 +txz093 +txz094 +txz095 +txz096 +txz097 +txz098 +txz099 +txz100 +txz101 +txz102 +txz103 +txz104 +txz105 +txz106 +txz107 +txz108 +txz109 +txz110 +txz111 +txz112 +txz113 +txz114 +txz115 +txz116 +txz117 +txz118 +txz119 +txz120 +txz121 +txz122 +txz123 +txz124 +txz125 +txz126 +txz127 +txz128 +txz129 +txz130 +txz131 +txz132 +txz133 +txz134 +txz135 +txz136 +txz137 +txz138 +txz139 +txz140 +txz141 +txz142 +txz143 +txz144 +txz145 +txz146 +txz147 +txz148 +txz149 +txz150 +txz151 +txz152 +txz153 +txz154 +txz155 +txz156 +txz157 +txz158 +txz159 +txz160 +txz161 +txz162 +txz163 +txz164 +txz165 +txz166 +txz167 +txz168 +txz169 +txz170 +txz171 +txz172 +txz173 +txz174 +txz175 +txz176 +txz177 +txz178 +txz179 +txz180 +txz183 +txz184 +txz185 +txz186 +txz187 +txz188 +txz189 +txz190 +txz191 +txz192 +txz193 +txz194 +txz195 +txz196 +txz197 +txz198 +txz199 +txz200 +txz201 +txz202 +txz203 +txz204 +txz205 +txz206 +txz207 +txz208 +txz209 +txz210 +txz211 +txz212 +txz213 +txz214 +txz215 +txz216 +txz217 +txz218 +txz219 +txz220 +txz221 +txz222 +txz223 +txz224 +txz225 +txz226 +txz227 +txz228 +txz229 +txz230 +txz231 +txz232 +txz233 +txz234 +txz235 +txz236 +txz237 +txz238 +txz239 +txz240 +txz241 +txz242 +txz243 +txz244 +txz245 +txz246 +txz247 +txz248 +txz249 +txz250 +txz251 +txz252 +txz253 +txz254 +txz255 +txz256 +txz257 +txz258 +txz259 +txz260 +txz261 +txz262 +txz418 +txz419 +txz420 +txz421 +txz422 +txz423 +txz424 +utz001 +utz002 +utz003 +utz004 +utz005 +utz006 +utz007 +utz008 +utz009 +utz010 +utz011 +utz012 +utz013 +utz014 +utz015 +utz016 +utz019 +utz020 +utz021 +utz022 +utz023 +utz024 +utz025 +utz027 +utz028 +utz029 +utz517 +utz518 +vaz001 +vaz002 +vaz003 +vaz004 +vaz005 +vaz006 +vaz007 +vaz008 +vaz009 +vaz010 +vaz011 +vaz012 +vaz013 +vaz014 +vaz015 +vaz016 +vaz017 +vaz018 +vaz019 +vaz020 +vaz022 +vaz023 +vaz024 +vaz025 +vaz026 +vaz027 +vaz028 +vaz029 +vaz030 +vaz031 +vaz032 +vaz033 +vaz034 +vaz035 +vaz036 +vaz037 +vaz038 +vaz039 +vaz040 +vaz042 +vaz043 +vaz044 +vaz045 +vaz046 +vaz047 +vaz048 +vaz049 +vaz050 +vaz051 +vaz052 +vaz053 +vaz054 +vaz055 +vaz056 +vaz057 +vaz058 +vaz059 +vaz060 +vaz061 +vaz062 +vaz063 +vaz064 +vaz065 +vaz066 +vaz067 +vaz068 +vaz069 +vaz070 +vaz071 +vaz072 +vaz073 +vaz074 +vaz075 +vaz076 +vaz077 +vaz078 +vaz079 +vaz080 +vaz081 +vaz082 +vaz083 +vaz084 +vaz085 +vaz086 +vaz087 +vaz088 +vaz089 +vaz090 +vaz091 +vaz092 +vaz093 +vaz094 +vaz095 +vaz096 +vaz097 +vaz098 +vaz099 +vaz100 +vaz501 +vaz502 +vaz503 +vaz504 +viz001 +viz002 +vtz001 +vtz002 +vtz003 +vtz004 +vtz005 +vtz006 +vtz007 +vtz008 +vtz009 +vtz010 +vtz011 +vtz012 +vtz013 +vtz014 +vtz015 +vtz016 +vtz017 +vtz018 +vtz019 +waz001 +waz019 +waz020 +waz021 +waz022 +waz023 +waz024 +waz026 +waz027 +waz028 +waz029 +waz030 +waz031 +waz032 +waz033 +waz034 +waz035 +waz036 +waz037 +waz038 +waz039 +waz040 +waz041 +waz042 +waz043 +waz044 +waz503 +waz504 +waz505 +waz506 +waz507 +waz508 +waz509 +waz510 +waz511 +waz512 +waz513 +waz514 +waz515 +waz516 +waz517 +waz518 +waz519 +waz520 +waz521 +wiz001 +wiz002 +wiz003 +wiz004 +wiz005 +wiz006 +wiz007 +wiz008 +wiz009 +wiz010 +wiz011 +wiz012 +wiz013 +wiz014 +wiz015 +wiz016 +wiz017 +wiz018 +wiz019 +wiz020 +wiz021 +wiz022 +wiz023 +wiz024 +wiz025 +wiz026 +wiz027 +wiz028 +wiz029 +wiz030 +wiz031 +wiz032 +wiz033 +wiz034 +wiz035 +wiz036 +wiz037 +wiz038 +wiz039 +wiz040 +wiz041 +wiz042 +wiz043 +wiz044 +wiz045 +wiz046 +wiz047 +wiz048 +wiz049 +wiz050 +wiz051 +wiz052 +wiz053 +wiz054 +wiz055 +wiz056 +wiz057 +wiz058 +wiz059 +wiz060 +wiz061 +wiz062 +wiz063 +wiz064 +wiz065 +wiz066 +wiz067 +wiz068 +wiz069 +wiz070 +wiz071 +wiz072 +wiz073 +wiz074 +wvz001 +wvz002 +wvz003 +wvz004 +wvz005 +wvz006 +wvz007 +wvz008 +wvz009 +wvz010 +wvz011 +wvz012 +wvz013 +wvz014 +wvz015 +wvz016 +wvz017 +wvz018 +wvz019 +wvz020 +wvz021 +wvz022 +wvz023 +wvz024 +wvz025 +wvz026 +wvz027 +wvz028 +wvz029 +wvz030 +wvz031 +wvz032 +wvz033 +wvz034 +wvz035 +wvz036 +wvz037 +wvz038 +wvz039 +wvz040 +wvz041 +wvz042 +wvz043 +wvz044 +wvz045 +wvz046 +wvz047 +wvz050 +wvz051 +wvz052 +wvz053 +wvz055 +wvz501 +wvz502 +wvz503 +wvz504 +wvz505 +wvz506 +wyz001 +wyz002 +wyz003 +wyz004 +wyz005 +wyz006 +wyz007 +wyz008 +wyz009 +wyz010 +wyz011 +wyz012 +wyz013 +wyz014 +wyz015 +wyz016 +wyz017 +wyz018 +wyz019 +wyz020 +wyz021 +wyz022 +wyz023 +wyz024 +wyz025 +wyz026 +wyz027 +wyz028 +wyz029 +wyz030 +wyz054 +wyz055 +wyz056 +wyz057 +wyz058 +wyz071 +wyz098 +wyz099 +wyz101 +wyz102 +wyz103 +wyz104 +wyz105 +wyz106 +wyz107 +wyz108 +wyz109 +wyz110 +wyz111 +wyz112 +wyz113 +wyz114 +wyz115 +wyz116 +wyz117 +wyz118 +wyz119 diff --git a/zones b/zones new file mode 100644 index 0000000..36b3e2d --- /dev/null +++ b/zones @@ -0,0 +1,96205 @@ +# Copyright (c) 2006-2012 Jeremy Stanley . Permission to +# use, copy, modify, and distribute this software is granted under terms +# provided in the LICENSE file distributed with this software. +# +# generated by weather on 2012-06-26 from these public domain sources: +# +# http://www.census.gov/geo/www/gazetteer/gazetteer2010.html +# a410aa212529e11b103bd5d222a952fc 2011-03-02 Gaz_counties_national.zip +# 680d807fce3bfe6aea8df5df5a6ebb04 2011-03-02 Gaz_cousubs_national.zip +# 41f34b79edfc3814b48419421d56e2a1 2011-03-02 Gaz_places_national.zip +# 8b298a6117e7942fd20f3e15076bd38a 2011-05-16 Gaz_zcta_national.zip +# +# http://www.weather.gov/geodata/catalog/wsom/html/cntyzone.htm +# 7e64372572d4923ad1be3c33ec79d7b6 2012-04-05 bp03ap12.dbx +# +# http://weather.noaa.gov/data/nsd_cccc.txt +# 6561bd4dc1ffd4147e35cf6dee7503d5 2011-05-04 nsd_cccc.txt +# +# http://weather.noaa.gov/pub/data/zonecatalog.curr.tar +# 748043471973d418cb415fccc3a0000b 2007-06-07 zonecatalog.curr.tar +# +# http://www.nco.ncep.noaa.gov/pmb/codes/nwprod/dictionaries/metar.tbl +# 2bbef16bbf41add353650c5d09f35066 2012-04-04 metar.tbl +# +# ftp://ftp.ncdc.noaa.gov/pub/data/inventories/COOP-ACT.TXT +# 23919279dec601f31f47f46fc60db095 2012-06-25 COOP-ACT.TXT +# +# ...and these manually-generated or hand-compiled adjustments: +# f4934ba2494d41fc4de1360ac2e09a49 2012-06-26 overrides.conf +# d115dda76af5661fb8afd793a9b8ff9d 2012-06-25 slist +# 12c0635d5b8157b564dc665e8a1cd124 2012-06-25 zlist + +[akz017] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ak/akz017.txt +centroid = (1.0459758207202017, -2.4521875990520332) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ak/akz017.txt +description = Cape Fairweather to Cape Suckling Coastal Area, AK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ak/akz017.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ak/akz017.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ak/akz017.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ak/akz017.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ak/akz017.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ak/akz017.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ak/akz017.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ak/akz017.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ak.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ak/akz017.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ak/akz017.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ak/akz017.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ak/akz017.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ak/akz017.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ak/akz017.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ak/akz017.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ak.txt +station = ('paya', 0.010493779901826568) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ak/akz017.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ak/akz017.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ak/akz017.txt + +[akz018] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ak/akz018.txt +centroid = (1.039692635413022, -2.3621286096491256) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ak/akz018.txt +description = Taiya Inlet and Klondike Highway, AK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ak/akz018.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ak/akz018.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ak/akz018.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ak/akz018.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ak/akz018.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ak/akz018.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ak/akz018.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ak/akz018.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ak.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ak/akz018.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ak/akz018.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ak/akz018.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ak/akz018.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ak/akz018.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ak/akz018.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ak/akz018.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ak.txt +station = ('pagy', 0.0018152994393913979) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ak/akz018.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ak/akz018.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ak/akz018.txt + +[akz019] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ak/akz019.txt +centroid = (1.0323622525546459, -2.3610814120979291) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ak/akz019.txt +description = Haines Borough and Lynn Canal, AK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ak/akz019.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ak/akz019.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ak/akz019.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ak/akz019.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ak/akz019.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ak/akz019.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ak/akz019.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ak/akz019.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ak.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ak/akz019.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ak/akz019.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ak/akz019.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ak/akz019.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ak/akz019.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ak/akz019.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ak/akz019.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ak.txt +station = ('pahn', 0.0027421885796070173) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ak/akz019.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ak/akz019.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ak/akz019.txt + +[akz020] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ak/akz020.txt +centroid = (1.0257300013970676, -2.3773129741414762) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ak/akz020.txt +description = Glacier Bay, AK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ak/akz020.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ak/akz020.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ak/akz020.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ak/akz020.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ak/akz020.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ak/akz020.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ak/akz020.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ak/akz020.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ak.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ak/akz020.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ak/akz020.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ak/akz020.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ak/akz020.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ak/akz020.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ak/akz020.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ak/akz020.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ak.txt +station = ('pags', 0.0077165151923778777) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ak/akz020.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ak/akz020.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ak/akz020.txt + +[akz021] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ak/akz021.txt +centroid = (1.0112437686055145, -2.3643975376767181) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ak/akz021.txt +description = Eastern Chichagof Island, AK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ak/akz021.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ak/akz021.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ak/akz021.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ak/akz021.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ak/akz021.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ak/akz021.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ak/akz021.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ak/akz021.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ak.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ak/akz021.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ak/akz021.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ak/akz021.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ak/akz021.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ak/akz021.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ak/akz021.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ak/akz021.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ak.txt +station = ('paoh', 0.0030889496828081071) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ak/akz021.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ak/akz021.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ak/akz021.txt + +[akz022] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ak/akz022.txt +centroid = (1.0168288222118964, -2.3815017643462624) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ak/akz022.txt +description = Salisbury Sound to Cape Fairweather Coastal Area, AK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ak/akz022.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ak/akz022.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ak/akz022.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ak/akz022.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ak/akz022.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ak/akz022.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ak/akz022.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ak/akz022.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ak.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ak/akz022.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ak/akz022.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ak/akz022.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ak/akz022.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ak/akz022.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ak/akz022.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ak/akz022.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ak.txt +station = ('pael', 0.0013932202284193721) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ak/akz022.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ak/akz022.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ak/akz022.txt + +[akz023] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ak/akz023.txt +centroid = (0.99239421268397576, -2.3567180889679431) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ak/akz023.txt +description = Cape Decision to Salisbury Sound Coastal Area, AK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ak/akz023.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ak/akz023.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ak/akz023.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ak/akz023.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ak/akz023.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ak/akz023.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ak/akz023.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ak/akz023.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ak.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ak/akz023.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ak/akz023.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ak/akz023.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ak/akz023.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ak/akz023.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ak/akz023.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ak/akz023.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ak.txt +station = ('pasi', 0.0046111911808242607) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ak/akz023.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ak/akz023.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ak/akz023.txt + +[akz024] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ak/akz024.txt +centroid = (1.0001522012090904, -2.3491992105503514) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ak/akz024.txt +description = Eastern Baranof Island and Southern Admiralty Island, AK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ak/akz024.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ak/akz024.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ak/akz024.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ak/akz024.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ak/akz024.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ak/akz024.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ak/akz024.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ak/akz024.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ak.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ak/akz024.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ak/akz024.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ak/akz024.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ak/akz024.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ak/akz024.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ak/akz024.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ak/akz024.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ak.txt +station = ('pagn', 0.0034153786742232789) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ak/akz024.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ak/akz024.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ak/akz024.txt + +[akz025] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ak/akz025.txt +centroid = (1.0126819199091579, -2.3352313405466409) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ak/akz025.txt +description = Juneau Borough and Northern Admiralty Island, AK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ak/akz025.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ak/akz025.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ak/akz025.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ak/akz025.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ak/akz025.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ak/akz025.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ak/akz025.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ak/akz025.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ak.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ak/akz025.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ak/akz025.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ak/akz025.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ak/akz025.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ak/akz025.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ak/akz025.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ak/akz025.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ak.txt +station = ('pajn', 0.0090879127128411352) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ak/akz025.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ak/akz025.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ak/akz025.txt + +[akz026] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ak/akz026.txt +centroid = (0.98785112064103453, -2.3209562925945795) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ak/akz026.txt +description = Inner Channels from Kupreanof Island to Etolin Island, AK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ak/akz026.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ak/akz026.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ak/akz026.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ak/akz026.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ak/akz026.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ak/akz026.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ak/akz026.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ak/akz026.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ak.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ak/akz026.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ak/akz026.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ak/akz026.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ak/akz026.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ak/akz026.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ak/akz026.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ak/akz026.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ak.txt +station = ('papg', 0.0037892715223763977) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ak/akz026.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ak/akz026.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ak/akz026.txt + +[akz027] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ak/akz027.txt +centroid = (0.96508155521951644, -2.3214188048463575) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ak/akz027.txt +description = Dixon Entrance to Cape Decision Coastal Area, AK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ak/akz027.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ak/akz027.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ak/akz027.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ak/akz027.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ak/akz027.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ak/akz027.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ak/akz027.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ak/akz027.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ak.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ak/akz027.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ak/akz027.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ak/akz027.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ak/akz027.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ak/akz027.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ak/akz027.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ak/akz027.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ak.txt +station = ('pahy', 0.0023994701980934482) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ak/akz027.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ak/akz027.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ak/akz027.txt + +[akz028] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ak/akz028.txt +centroid = (0.9693541212283987, -2.3047927983918601) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ak/akz028.txt +description = Southern Inner Channels, AK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ak/akz028.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ak/akz028.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ak/akz028.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ak/akz028.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ak/akz028.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ak/akz028.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ak/akz028.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ak/akz028.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ak.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ak/akz028.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ak/akz028.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ak/akz028.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ak/akz028.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ak/akz028.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ak/akz028.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ak/akz028.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ak.txt +station = ('pakt', 0.0047112987444973909) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ak/akz028.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ak/akz028.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ak/akz028.txt + +[akz029] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ak/akz029.txt +centroid = (0.97295299014601089, -2.2829290588521269) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ak/akz029.txt +description = Misty Fjords, AK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ak/akz029.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ak/akz029.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ak/akz029.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ak/akz029.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ak/akz029.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ak/akz029.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ak/akz029.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ak/akz029.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ak.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ak/akz029.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ak/akz029.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ak/akz029.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ak/akz029.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ak/akz029.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ak/akz029.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ak/akz029.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ak.txt +station = ('pakt', 0.011371608939386525) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ak/akz029.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ak/akz029.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ak/akz029.txt + +[akz101] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ak/akz101.txt +centroid = (1.0680507450994261, -2.6095848816553859) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ak/akz101.txt +description = Anchorage, AK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ak/akz101.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ak/akz101.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ak/akz101.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ak/akz101.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ak/akz101.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ak/akz101.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ak/akz101.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ak/akz101.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ak.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ak/akz101.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ak/akz101.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ak/akz101.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ak/akz101.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ak/akz101.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ak/akz101.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ak/akz101.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ak.txt +station = ('paed', 0.0025296119021460416) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ak/akz101.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ak/akz101.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ak/akz101.txt + +[akz111] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ak/akz111.txt +centroid = (1.0749221063645278, -2.6034308507128539) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ak/akz111.txt +description = Matanuska Valley, AK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ak/akz111.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ak/akz111.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ak/akz111.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ak/akz111.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ak/akz111.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ak/akz111.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ak/akz111.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ak/akz111.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ak.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ak/akz111.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ak/akz111.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ak/akz111.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ak/akz111.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ak/akz111.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ak/akz111.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ak/akz111.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ak.txt +station = ('paaq', 0.0005804657686013146) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ak/akz111.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ak/akz111.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ak/akz111.txt + +[akz121] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ak/akz121.txt +centroid = (1.0528768525825873, -2.6303682623881341) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ak/akz121.txt +description = Western Kenai Peninsula, AK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ak/akz121.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ak/akz121.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ak/akz121.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ak/akz121.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ak/akz121.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ak/akz121.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ak/akz121.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ak/akz121.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ak.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ak/akz121.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ak/akz121.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ak/akz121.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ak/akz121.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ak/akz121.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ak/akz121.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ak/akz121.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ak.txt +station = ('pasx', 0.003926038655234939) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ak/akz121.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ak/akz121.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ak/akz121.txt + +[akz125] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ak/akz125.txt +centroid = (1.0541491976072912, -2.6004376110456833) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ak/akz125.txt +description = Western Prince Wiilliam Sound, AK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ak/akz125.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ak/akz125.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ak/akz125.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ak/akz125.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ak/akz125.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ak/akz125.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ak/akz125.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ak/akz125.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ak.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ak/akz125.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ak/akz125.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ak/akz125.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ak/akz125.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ak/akz125.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ak/akz125.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ak/akz125.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ak.txt +station = ('pawd', 0.0063042512876871747) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ak/akz125.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ak/akz125.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ak/akz125.txt + +[akz131] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ak/akz131.txt +centroid = (1.0676179034449313, -2.5571028310479162) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ak/akz131.txt +description = Northeast Prince William Sound, AK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ak/akz131.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ak/akz131.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ak/akz131.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ak/akz131.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ak/akz131.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ak/akz131.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ak/akz131.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ak/akz131.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ak.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ak/akz131.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ak/akz131.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ak/akz131.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ak/akz131.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ak/akz131.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ak/akz131.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ak/akz131.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ak.txt +station = ('pavd', 0.0021563833983423968) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ak/akz131.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ak/akz131.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ak/akz131.txt + +[akz135] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ak/akz135.txt +centroid = (1.0575490989901761, -2.535047105290464) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ak/akz135.txt +description = Southeast Prince William Sound, AK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ak/akz135.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ak/akz135.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ak/akz135.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ak/akz135.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ak/akz135.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ak/akz135.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ak/akz135.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ak/akz135.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ak.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ak/akz135.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ak/akz135.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ak/akz135.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ak/akz135.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ak/akz135.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ak/akz135.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ak/akz135.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ak.txt +station = ('pacv', 0.0025954990013002527) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ak/akz135.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ak/akz135.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ak/akz135.txt + +[akz141] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ak/akz141.txt +centroid = (1.0803937135695298, -2.5295266288664058) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ak/akz141.txt +description = Copper River Basin, AK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ak/akz141.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ak/akz141.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ak/akz141.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ak/akz141.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ak/akz141.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ak/akz141.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ak/akz141.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ak/akz141.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ak.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ak/akz141.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ak/akz141.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ak/akz141.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ak/akz141.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ak/akz141.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ak/akz141.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ak/akz141.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ak.txt +station = ('pagk', 0.0060642030833568056) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ak/akz141.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ak/akz141.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ak/akz141.txt + +[akz145] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ak/akz145.txt +centroid = (1.0842334379239174, -2.6299912712697031) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ak/akz145.txt +description = Susitna Valley, AK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ak/akz145.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ak/akz145.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ak/akz145.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ak/akz145.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ak/akz145.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ak/akz145.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ak/akz145.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ak/akz145.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ak.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ak/akz145.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ak/akz145.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ak/akz145.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ak/akz145.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ak/akz145.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ak/akz145.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ak/akz145.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ak.txt +station = ('patk', 0.0058630939271129617) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ak/akz145.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ak/akz145.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ak/akz145.txt + +[akz152] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ak/akz152.txt +centroid = (1.0737230651684075, -2.7282445815107241) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ak/akz152.txt +description = Lower Kuskokwim Valley, AK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ak/akz152.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ak/akz152.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ak/akz152.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ak/akz152.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ak/akz152.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ak/akz152.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ak/akz152.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ak/akz152.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ak.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ak/akz152.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ak/akz152.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ak/akz152.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ak/akz152.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ak/akz152.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ak/akz152.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ak/akz152.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ak.txt +station = ('pasv', 0.0096537968401540688) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ak/akz152.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ak/akz152.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ak/akz152.txt + +[akz155] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ak/akz155.txt +centroid = (1.0589139464652357, -2.8422180723244579) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ak/akz155.txt +description = Kuskokwim Delta, AK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ak/akz155.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ak/akz155.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ak/akz155.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ak/akz155.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ak/akz155.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ak/akz155.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ak/akz155.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ak/akz155.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ak.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ak/akz155.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ak/akz155.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ak/akz155.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ak/akz155.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ak/akz155.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ak/akz155.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ak/akz155.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ak.txt +station = ('paki', 0.016455809624464825) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ak/akz155.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ak/akz155.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ak/akz155.txt + +[akz161] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ak/akz161.txt +centroid = (1.0349523211646054, -2.7444447276277355) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ak/akz161.txt +description = Bristol Bay, AK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ak/akz161.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ak/akz161.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ak/akz161.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ak/akz161.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ak/akz161.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ak/akz161.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ak/akz161.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ak/akz161.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ak.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ak/akz161.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ak/akz161.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ak/akz161.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ak/akz161.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ak/akz161.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ak/akz161.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ak/akz161.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ak.txt +station = ('panw', 0.0027514913127084113) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ak/akz161.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ak/akz161.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ak/akz161.txt + +[akz171] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ak/akz171.txt +centroid = (1.0173716196092666, -2.6906501894227666) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ak/akz171.txt +description = Kodiak Island, AK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ak/akz171.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ak/akz171.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ak/akz171.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ak/akz171.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ak/akz171.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ak/akz171.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ak/akz171.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ak/akz171.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ak.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ak/akz171.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ak/akz171.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ak/akz171.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ak/akz171.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ak/akz171.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ak/akz171.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ak/akz171.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ak.txt +station = ('padq', 0.018171131655806815) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ak/akz171.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ak/akz171.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ak/akz171.txt + +[akz181] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ak/akz181.txt +centroid = (0.97057061571703873, -2.8135213687631673) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ak/akz181.txt +description = Alaska Peninsula, AK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ak/akz181.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ak/akz181.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ak/akz181.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ak/akz181.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ak/akz181.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ak/akz181.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ak/akz181.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ak/akz181.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ak.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ak/akz181.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ak/akz181.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ak/akz181.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ak/akz181.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ak/akz181.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ak/akz181.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ak/akz181.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ak.txt +station = ('paou', 0.0070009528083678453) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ak/akz181.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ak/akz181.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ak/akz181.txt + +[akz185] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ak/akz185.txt +centroid = (0.93567973864042009, -2.9178641327643962) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ak/akz185.txt +description = Eastern Aleutians, AK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ak/akz185.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ak/akz185.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ak/akz185.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ak/akz185.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ak/akz185.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ak/akz185.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ak/akz185.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ak/akz185.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ak.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ak/akz185.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ak/akz185.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ak/akz185.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ak/akz185.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ak/akz185.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ak/akz185.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ak/akz185.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ak.txt +station = ('padu', 0.008380735930325232) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ak/akz185.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ak/akz185.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ak/akz185.txt + +[akz187] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ak/akz187.txt +centroid = (0.90910186479105037, -3.0513835658712143) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ak/akz187.txt +description = Central Aleutians, AK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ak/akz187.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ak/akz187.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ak/akz187.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ak/akz187.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ak/akz187.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ak/akz187.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ak/akz187.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ak/akz187.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ak.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ak/akz187.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ak/akz187.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ak/akz187.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ak/akz187.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ak/akz187.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ak/akz187.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ak/akz187.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ak.txt +station = ('paak', 0.0070814989133461143) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ak/akz187.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ak/akz187.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ak/akz187.txt + +[akz191] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ak/akz191.txt +centroid = (0.9125174741372033, 2.3215654125035252) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ak/akz191.txt +description = Western Aleutians, AK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ak/akz191.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ak/akz191.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ak/akz191.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ak/akz191.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ak/akz191.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ak/akz191.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ak/akz191.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ak/akz191.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ak.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ak/akz191.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ak/akz191.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ak/akz191.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ak/akz191.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ak/akz191.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ak/akz191.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ak/akz191.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ak.txt +station = ('uhbb', 0.069378824375080111) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ak/akz191.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ak/akz191.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ak/akz191.txt + +[akz195] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ak/akz195.txt +centroid = (0.993252914675957, -2.9666932092474418) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ak/akz195.txt +description = Pribilof Islands, AK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ak/akz195.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ak/akz195.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ak/akz195.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ak/akz195.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ak/akz195.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ak/akz195.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ak/akz195.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ak/akz195.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ak.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ak/akz195.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ak/akz195.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ak/akz195.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ak/akz195.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ak/akz195.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ak/akz195.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ak/akz195.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ak.txt +station = ('pasn', 0.005028549438556313) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ak/akz195.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ak/akz195.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ak/akz195.txt + +[akz201] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ak/akz201.txt +centroid = (1.2231494290779021, -2.7983265322953046) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ak/akz201.txt +description = Western Arctic Coast, AK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ak/akz201.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ak/akz201.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ak/akz201.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ak/akz201.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ak/akz201.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ak/akz201.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ak/akz201.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ak/akz201.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ak.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ak/akz201.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ak/akz201.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ak/akz201.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ak/akz201.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ak/akz201.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ak/akz201.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ak/akz201.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ak.txt +station = ('pawi', 0.0097931299363120915) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ak/akz201.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ak/akz201.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ak/akz201.txt + +[akz202] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ak/akz202.txt +centroid = (1.2337261243449875, -2.7117390027746135) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ak/akz202.txt +description = Northern Arctic Coast, AK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ak/akz202.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ak/akz202.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ak/akz202.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ak/akz202.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ak/akz202.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ak/akz202.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ak/akz202.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ak/akz202.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ak.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ak/akz202.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ak/akz202.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ak/akz202.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ak/akz202.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ak/akz202.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ak/akz202.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ak/akz202.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ak.txt +station = ('patq', 0.012590206959305624) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ak/akz202.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ak/akz202.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ak/akz202.txt + +[akz203] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ak/akz203.txt +centroid = (1.225341562618407, -2.6103423545507511) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ak/akz203.txt +description = Central Beaufort Sea Coast, AK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ak/akz203.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ak/akz203.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ak/akz203.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ak/akz203.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ak/akz203.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ak/akz203.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ak/akz203.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ak/akz203.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ak.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ak/akz203.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ak/akz203.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ak/akz203.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ak/akz203.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ak/akz203.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ak/akz203.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ak/akz203.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ak.txt +station = ('paku', 0.0019200679647157866) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ak/akz203.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ak/akz203.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ak/akz203.txt + +[akz204] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ak/akz204.txt +centroid = (1.2197512730242692, -2.5094885037242585) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ak/akz204.txt +description = Eastern Beaufort Sea Coast, AK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ak/akz204.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ak/akz204.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ak/akz204.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ak/akz204.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ak/akz204.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ak/akz204.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ak/akz204.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ak/akz204.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ak.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ak/akz204.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ak/akz204.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ak/akz204.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ak/akz204.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ak/akz204.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ak/akz204.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ak/akz204.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ak.txt +station = ('paba', 0.0044878484497454163) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ak/akz204.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ak/akz204.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ak/akz204.txt + +[akz205] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ak/akz205.txt +centroid = (1.2079685552440553, -2.7454029133870805) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ak/akz205.txt +description = Northwestern Brooks Range, AK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ak/akz205.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ak/akz205.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ak/akz205.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ak/akz205.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ak/akz205.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ak/akz205.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ak/akz205.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ak/akz205.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ak.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ak/akz205.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ak/akz205.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ak/akz205.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ak/akz205.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ak/akz205.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ak/akz205.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ak/akz205.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ak.txt +station = ('patq', 0.021981089641832586) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ak/akz205.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ak/akz205.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ak/akz205.txt + +[akz206] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ak/akz206.txt +centroid = (1.2050224394666889, -2.5874942493128934) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ak/akz206.txt +description = Northeastern Brooks Range, AK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ak/akz206.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ak/akz206.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ak/akz206.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ak/akz206.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ak/akz206.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ak/akz206.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ak/akz206.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ak/akz206.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ak.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ak/akz206.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ak/akz206.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ak/akz206.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ak/akz206.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ak/akz206.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ak/akz206.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ak/akz206.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ak.txt +station = ('pasc', 0.02024731979684348) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ak/akz206.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ak/akz206.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ak/akz206.txt + +[akz207] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ak/akz207.txt +centroid = (1.1659270642220161, -2.8847849074513476) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ak/akz207.txt +description = Chukchi Sea Coast, AK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ak/akz207.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ak/akz207.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ak/akz207.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ak/akz207.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ak/akz207.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ak/akz207.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ak/akz207.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ak/akz207.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ak.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ak/akz207.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ak/akz207.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ak/akz207.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ak/akz207.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ak/akz207.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ak/akz207.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ak/akz207.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ak.txt +station = ('pash', 0.01087327353738082) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ak/akz207.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ak/akz207.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ak/akz207.txt + +[akz208] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ak/akz208.txt +centroid = (1.1836578640930264, -2.8311683928300817) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ak/akz208.txt +description = Lower Kobuk and Noatak Valleys, AK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ak/akz208.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ak/akz208.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ak/akz208.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ak/akz208.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ak/akz208.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ak/akz208.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ak/akz208.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ak/akz208.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ak.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ak/akz208.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ak/akz208.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ak/akz208.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ak/akz208.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ak/akz208.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ak/akz208.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ak/akz208.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ak.txt +station = ('pawn', 0.0067312323431661927) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ak/akz208.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ak/akz208.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ak/akz208.txt + +[akz209] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ak/akz209.txt +centroid = (1.1632060959181567, -2.8076361185254424) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ak/akz209.txt +description = Baldwin Peninsula and Selawik Valley, AK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ak/akz209.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ak/akz209.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ak/akz209.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ak/akz209.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ak/akz209.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ak/akz209.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ak/akz209.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ak/akz209.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ak.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ak/akz209.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ak/akz209.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ak/akz209.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ak/akz209.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ak/akz209.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ak/akz209.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ak/akz209.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ak.txt +station = ('pfno', 0.0016638608824092057) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ak/akz209.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ak/akz209.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ak/akz209.txt + +[akz210] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ak/akz210.txt +centroid = (1.1430440523991183, -2.8374917207100574) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ak/akz210.txt +description = Northern and Interior Seward Peninsula, AK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ak/akz210.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ak/akz210.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ak/akz210.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ak/akz210.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ak/akz210.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ak/akz210.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ak/akz210.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ak/akz210.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ak.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ak/akz210.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ak/akz210.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ak/akz210.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ak/akz210.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ak/akz210.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ak/akz210.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ak/akz210.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ak.txt +station = ('pade', 0.010128930708708081) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ak/akz210.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ak/akz210.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ak/akz210.txt + +[akz211] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ak/akz211.txt +centroid = (1.127737514859128, -2.8709339745075204) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ak/akz211.txt +description = Southern Seward Peninsula Coast, AK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ak/akz211.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ak/akz211.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ak/akz211.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ak/akz211.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ak/akz211.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ak/akz211.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ak/akz211.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ak/akz211.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ak.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ak/akz211.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ak/akz211.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ak/akz211.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ak/akz211.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ak/akz211.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ak/akz211.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ak/akz211.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ak.txt +station = ('paom', 0.0072571192726280176) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ak/akz211.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ak/akz211.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ak/akz211.txt + +[akz212] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ak/akz212.txt +centroid = (1.1158221520557627, -2.8109784240430113) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ak/akz212.txt +description = Eastern Norton Sound and Nulato Hills, AK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ak/akz212.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ak/akz212.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ak/akz212.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ak/akz212.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ak/akz212.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ak/akz212.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ak/akz212.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ak/akz212.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ak.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ak/akz212.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ak/akz212.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ak/akz212.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ak/akz212.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ak/akz212.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ak/akz212.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ak/akz212.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ak.txt +station = ('paun', 0.0021486130851384551) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ak/akz212.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ak/akz212.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ak/akz212.txt + +[akz213] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ak/akz213.txt +centroid = (1.1258368513037063, -2.9375671546901603) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ak/akz213.txt +description = St Lawrence Island and Bering Strait Coast, AK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ak/akz213.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ak/akz213.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ak/akz213.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ak/akz213.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ak/akz213.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ak/akz213.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ak/akz213.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ak/akz213.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ak.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ak/akz213.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ak/akz213.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ak/akz213.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ak/akz213.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ak/akz213.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ak/akz213.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ak/akz213.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ak.txt +station = ('patc', 0.018742789019132126) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ak/akz213.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ak/akz213.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ak/akz213.txt + +[akz214] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ak/akz214.txt +centroid = (1.0851636984152304, -2.8616470775576586) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ak/akz214.txt +description = Yukon Delta, AK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ak/akz214.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ak/akz214.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ak/akz214.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ak/akz214.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ak/akz214.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ak/akz214.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ak/akz214.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ak/akz214.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ak.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ak/akz214.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ak/akz214.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ak/akz214.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ak/akz214.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ak/akz214.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ak/akz214.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ak/akz214.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ak.txt +station = ('pamo', 0.0026371508472714219) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ak/akz214.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ak/akz214.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ak/akz214.txt + +[akz215] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ak/akz215.txt +centroid = (1.0937576996520506, -2.7877393650527065) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ak/akz215.txt +description = Lower Yukon Valley, AK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ak/akz215.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ak/akz215.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ak/akz215.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ak/akz215.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ak/akz215.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ak/akz215.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ak/akz215.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ak/akz215.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ak.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ak/akz215.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ak/akz215.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ak/akz215.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ak/akz215.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ak/akz215.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ak/akz215.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ak/akz215.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ak.txt +station = ('panv', 0.0037350623811356204) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ak/akz215.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ak/akz215.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ak/akz215.txt + +[akz216] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ak/akz216.txt +centroid = (1.1299401203751447, -2.7332728750857198) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ak/akz216.txt +description = Lower Koyukuk and Middle Yukon Valleys, AK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ak/akz216.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ak/akz216.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ak/akz216.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ak/akz216.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ak/akz216.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ak/akz216.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ak/akz216.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ak/akz216.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ak.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ak/akz216.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ak/akz216.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ak/akz216.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ak/akz216.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ak/akz216.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ak/akz216.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ak/akz216.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ak.txt +station = ('paga', 0.0024490879308601428) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ak/akz216.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ak/akz216.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ak/akz216.txt + +[akz217] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ak/akz217.txt +centroid = (1.1755577910345207, -2.7451096980727452) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ak/akz217.txt +description = Upper Kobuk and Noatak Valleys, AK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ak/akz217.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ak/akz217.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ak/akz217.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ak/akz217.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ak/akz217.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ak/akz217.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ak/akz217.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ak/akz217.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ak.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ak/akz217.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ak/akz217.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ak/akz217.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ak/akz217.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ak/akz217.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ak/akz217.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ak/akz217.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ak.txt +station = ('pafm', 0.0058644825914927106) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ak/akz217.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ak/akz217.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ak/akz217.txt + +[akz218] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ak/akz218.txt +centroid = (1.1849494077395022, -2.5637734794490386) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ak/akz218.txt +description = Southeastern Brooks Range, AK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ak/akz218.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ak/akz218.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ak/akz218.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ak/akz218.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ak/akz218.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ak/akz218.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ak/akz218.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ak/akz218.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ak.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ak/akz218.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ak/akz218.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ak/akz218.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ak/akz218.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ak/akz218.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ak/akz218.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ak/akz218.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ak.txt +station = ('parc', 0.0094232530964251573) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ak/akz218.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ak/akz218.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ak/akz218.txt + +[akz219] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ak/akz219.txt +centroid = (1.1585286135228119, -2.6619377778982076) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ak/akz219.txt +description = Upper Koyukuk Valley, AK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ak/akz219.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ak/akz219.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ak/akz219.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ak/akz219.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ak/akz219.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ak/akz219.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ak/akz219.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ak/akz219.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ak.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ak/akz219.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ak/akz219.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ak/akz219.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ak/akz219.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ak/akz219.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ak/akz219.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ak/akz219.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ak.txt +station = ('papr', 0.015037218222469244) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ak/akz219.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ak/akz219.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ak/akz219.txt + +[akz220] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ak/akz220.txt +centroid = (1.1590085790671105, -2.5407682945785011) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ak/akz220.txt +description = Yukon Flats and Surrounding Uplands, AK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ak/akz220.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ak/akz220.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ak/akz220.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ak/akz220.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ak/akz220.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ak/akz220.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ak/akz220.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ak/akz220.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ak.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ak/akz220.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ak/akz220.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ak/akz220.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ak/akz220.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ak/akz220.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ak/akz220.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ak/akz220.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ak.txt +station = ('pfyu', 0.0035288148081521324) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ak/akz220.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ak/akz220.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ak/akz220.txt + +[akz221] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ak/akz221.txt +centroid = (1.129341472441711, -2.6439399426516421) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ak/akz221.txt +description = Central Interior, AK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ak/akz221.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ak/akz221.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ak/akz221.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ak/akz221.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ak/akz221.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ak/akz221.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ak/akz221.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ak/akz221.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ak.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ak/akz221.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ak/akz221.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ak/akz221.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ak/akz221.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ak/akz221.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ak/akz221.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ak/akz221.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ak.txt +station = ('pata', 0.0092233525380552867) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ak/akz221.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ak/akz221.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ak/akz221.txt + +[akz222] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ak/akz222.txt +centroid = (1.1343488220656825, -2.5717077462286051) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ak/akz222.txt +description = Middle Tanana Valley, AK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ak/akz222.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ak/akz222.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ak/akz222.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ak/akz222.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ak/akz222.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ak/akz222.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ak/akz222.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ak/akz222.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ak.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ak/akz222.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ak/akz222.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ak/akz222.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ak/akz222.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ak/akz222.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ak/akz222.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ak/akz222.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ak.txt +station = ('pafb', 0.0032920161946244151) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ak/akz222.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ak/akz222.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ak/akz222.txt + +[akz223] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ak/akz223.txt +centroid = (1.1207719058144188, -2.5589197187992423) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ak/akz223.txt +description = Deltana and Tanana Flats, AK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ak/akz223.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ak/akz223.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ak/akz223.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ak/akz223.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ak/akz223.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ak/akz223.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ak/akz223.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ak/akz223.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ak.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ak/akz223.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ak/akz223.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ak/akz223.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ak/akz223.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ak/akz223.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ak/akz223.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ak/akz223.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ak.txt +station = ('paei', 0.0084164731359773742) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ak/akz223.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ak/akz223.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ak/akz223.txt + +[akz224] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ak/akz224.txt +centroid = (1.1241491179170278, -2.4936915286644581) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ak/akz224.txt +description = Upper Tanana Valley and the Fortymile Country, AK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ak/akz224.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ak/akz224.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ak/akz224.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ak/akz224.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ak/akz224.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ak/akz224.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ak/akz224.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ak/akz224.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ak.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ak/akz224.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ak/akz224.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ak/akz224.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ak/akz224.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ak/akz224.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ak/akz224.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ak/akz224.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ak.txt +station = ('paeg', 0.014493544864307111) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ak/akz224.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ak/akz224.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ak/akz224.txt + +[akz225] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ak/akz225.txt +centroid = (1.1097710955390985, -2.6197200086217163) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ak/akz225.txt +description = Denali, AK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ak/akz225.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ak/akz225.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ak/akz225.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ak/akz225.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ak/akz225.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ak/akz225.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ak/akz225.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ak/akz225.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ak.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ak/akz225.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ak/akz225.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ak/akz225.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ak/akz225.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ak/akz225.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ak/akz225.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ak/akz225.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ak.txt +station = ('paec', 0.013344517692436372) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ak/akz225.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ak/akz225.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ak/akz225.txt + +[akz226] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ak/akz226.txt +centroid = (1.100962418804283, -2.5214440091004198) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ak/akz226.txt +description = Eastern Alaska Range, AK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ak/akz226.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ak/akz226.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ak/akz226.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ak/akz226.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ak/akz226.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ak/akz226.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ak/akz226.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ak/akz226.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ak.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ak/akz226.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ak/akz226.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ak/akz226.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ak/akz226.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ak/akz226.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ak/akz226.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ak/akz226.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ak.txt +station = ('pabn', 0.016747758853690772) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ak/akz226.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ak/akz226.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ak/akz226.txt + +[akz227] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ak/akz227.txt +centroid = (1.0992816667346126, -2.6922262217373172) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ak/akz227.txt +description = Upper Kuskokwim Valley, AK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ak/akz227.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ak/akz227.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ak/akz227.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ak/akz227.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ak/akz227.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ak/akz227.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ak/akz227.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ak/akz227.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ak.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ak/akz227.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ak/akz227.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ak/akz227.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ak/akz227.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ak/akz227.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ak/akz227.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ak/akz227.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ak.txt +station = ('pafs', 0.001051871940583994) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ak/akz227.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ak/akz227.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ak/akz227.txt + +[alz001] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/al/alz001.txt +centroid = (0.60914608888480093, -1.5298578838601176) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/al/alz001.txt +description = Lauderdale, AL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/al/alz001.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/al/alz001.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/al/alz001.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/al/alz001.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/al/alz001.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/al/alz001.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/al/alz001.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/al/alz001.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/al.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/al/alz001.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/al/alz001.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/al/alz001.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/al/alz001.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/al/alz001.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/al/alz001.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/al/alz001.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/al.txt +station = ('kmsl', 0.0027566510252050361) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/al/alz001.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/al/alz001.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/al/alz001.txt + +[alz002] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/al/alz002.txt +centroid = (0.60563797708829226, -1.5324846043843692) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/al/alz002.txt +description = Colbert, AL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/al/alz002.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/al/alz002.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/al/alz002.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/al/alz002.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/al/alz002.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/al/alz002.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/al/alz002.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/al/alz002.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/al.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/al/alz002.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/al/alz002.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/al/alz002.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/al/alz002.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/al/alz002.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/al/alz002.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/al/alz002.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/al.txt +station = ('kmsl', 0.0030635764175191388) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/al/alz002.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/al/alz002.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/al/alz002.txt + +[alz003] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/al/alz003.txt +centroid = (0.60112106498413098, -1.533163537463395) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/al/alz003.txt +description = Franklin, AL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/al/alz003.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/al/alz003.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/al/alz003.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/al/alz003.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/al/alz003.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/al/alz003.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/al/alz003.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/al/alz003.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/al.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/al/alz003.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/al/alz003.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/al/alz003.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/al/alz003.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/al/alz003.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/al/alz003.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/al/alz003.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/al.txt +station = ('k1m4', 0.0044997331925102609) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/al/alz003.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/al/alz003.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/al/alz003.txt + +[alz004] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/al/alz004.txt +centroid = (0.60252256437348239, -1.5238644232087692) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/al/alz004.txt +description = Lawrence, AL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/al/alz004.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/al/alz004.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/al/alz004.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/al/alz004.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/al/alz004.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/al/alz004.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/al/alz004.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/al/alz004.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/al.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/al/alz004.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/al/alz004.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/al/alz004.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/al/alz004.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/al/alz004.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/al/alz004.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/al/alz004.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/al.txt +station = ('k9a4', 0.0022725509883357031) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/al/alz004.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/al/alz004.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/al/alz004.txt + +[alz005] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/al/alz005.txt +centroid = (0.60755085794847807, -1.5181100726649439) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/al/alz005.txt +description = Limestone, AL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/al/alz005.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/al/alz005.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/al/alz005.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/al/alz005.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/al/alz005.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/al/alz005.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/al/alz005.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/al/alz005.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/al.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/al/alz005.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/al/alz005.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/al/alz005.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/al/alz005.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/al/alz005.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/al/alz005.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/al/alz005.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/al.txt +station = ('kdcu', 0.0028301104877790418) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/al/alz005.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/al/alz005.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/al/alz005.txt + +[alz006] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/al/alz006.txt +centroid = (0.60673055320004077, -1.5105859582595962) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/al/alz006.txt +description = Madison, AL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/al/alz006.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/al/alz006.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/al/alz006.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/al/alz006.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/al/alz006.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/al/alz006.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/al/alz006.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/al/alz006.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/al.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/al/alz006.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/al/alz006.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/al/alz006.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/al/alz006.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/al/alz006.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/al/alz006.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/al/alz006.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/al.txt +station = ('kmdq', 0.0017184134513286748) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/al/alz006.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/al/alz006.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/al/alz006.txt + +[alz007] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/al/alz007.txt +centroid = (0.60132701383586629, -1.5158690699053832) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/al/alz007.txt +description = Morgan, AL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/al/alz007.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/al/alz007.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/al/alz007.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/al/alz007.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/al/alz007.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/al/alz007.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/al/alz007.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/al/alz007.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/al.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/al/alz007.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/al/alz007.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/al/alz007.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/al/alz007.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/al/alz007.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/al/alz007.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/al/alz007.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/al.txt +station = ('k3a1', 0.0032278692321113496) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/al/alz007.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/al/alz007.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/al/alz007.txt + +[alz008] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/al/alz008.txt +centroid = (0.59981555870363923, -1.5063343362017381) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/al/alz008.txt +description = Marshall, AL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/al/alz008.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/al/alz008.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/al/alz008.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/al/alz008.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/al/alz008.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/al/alz008.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/al/alz008.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/al/alz008.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/al.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/al/alz008.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/al/alz008.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/al/alz008.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/al/alz008.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/al/alz008.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/al/alz008.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/al/alz008.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/al.txt +station = ('k8a0', 0.0025186782980914008) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/al/alz008.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/al/alz008.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/al/alz008.txt + +[alz009] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/al/alz009.txt +centroid = (0.60701504186811595, -1.5009709394103596) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/al/alz009.txt +description = Jackson, AL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/al/alz009.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/al/alz009.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/al/alz009.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/al/alz009.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/al/alz009.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/al/alz009.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/al/alz009.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/al/alz009.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/al.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/al/alz009.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/al/alz009.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/al/alz009.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/al/alz009.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/al/alz009.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/al/alz009.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/al/alz009.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/al.txt +station = ('k4a6', 0.0017348863325757032) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/al/alz009.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/al/alz009.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/al/alz009.txt + +[alz010] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/al/alz010.txt +centroid = (0.60143696957874204, -1.4975640567104667) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/al/alz010.txt +description = De Kalb, AL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/al/alz010.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/al/alz010.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/al/alz010.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/al/alz010.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/al/alz010.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/al/alz010.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/al/alz010.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/al/alz010.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/al.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/al/alz010.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/al/alz010.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/al/alz010.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/al/alz010.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/al/alz010.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/al/alz010.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/al/alz010.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/al.txt +station = ('k4a9', 0.0012143329937710434) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/al/alz010.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/al/alz010.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/al/alz010.txt + +[alz011] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/al/alz011.txt +centroid = (0.59579606543629637, -1.5339192650295084) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/al/alz011.txt +description = Marion, AL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/al/alz011.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/al/alz011.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/al/alz011.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/al/alz011.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/al/alz011.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/al/alz011.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/al/alz011.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/al/alz011.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/al.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/al/alz011.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/al/alz011.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/al/alz011.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/al/alz011.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/al/alz011.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/al/alz011.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/al/alz011.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/al.txt +station = ('k1m4', 0.0048401876702047278) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/al/alz011.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/al/alz011.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/al/alz011.txt + +[alz012] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/al/alz012.txt +centroid = (0.5895582586896686, -1.5375809658001927) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/al/alz012.txt +description = Lamar, AL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/al/alz012.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/al/alz012.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/al/alz012.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/al/alz012.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/al/alz012.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/al/alz012.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/al/alz012.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/al/alz012.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/al.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/al/alz012.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/al/alz012.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/al/alz012.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/al/alz012.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/al/alz012.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/al/alz012.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/al/alz012.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/al.txt +station = ('km40', 0.0059289747572087081) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/al/alz012.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/al/alz012.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/al/alz012.txt + +[alz013] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/al/alz013.txt +centroid = (0.58854596772351186, -1.5313326870780528) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/al/alz013.txt +description = Fayette, AL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/al/alz013.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/al/alz013.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/al/alz013.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/al/alz013.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/al/alz013.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/al/alz013.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/al/alz013.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/al/alz013.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/al.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/al/alz013.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/al/alz013.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/al/alz013.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/al/alz013.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/al/alz013.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/al/alz013.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/al/alz013.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/al.txt +station = ('kjfx', 0.0069587022129803441) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/al/alz013.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/al/alz013.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/al/alz013.txt + +[alz014] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/al/alz014.txt +centroid = (0.59601597692204755, -1.5249587446497694) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/al/alz014.txt +description = Winston, AL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/al/alz014.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/al/alz014.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/al/alz014.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/al/alz014.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/al/alz014.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/al/alz014.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/al/alz014.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/al/alz014.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/al.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/al/alz014.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/al/alz014.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/al/alz014.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/al/alz014.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/al/alz014.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/al/alz014.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/al/alz014.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/al.txt +station = ('k1m4', 0.0039909346329880012) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/al/alz014.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/al/alz014.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/al/alz014.txt + +[alz015] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/al/alz015.txt +centroid = (0.58998062836865128, -1.523625313101246) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/al/alz015.txt +description = Walker, AL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/al/alz015.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/al/alz015.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/al/alz015.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/al/alz015.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/al/alz015.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/al/alz015.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/al/alz015.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/al/alz015.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/al.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/al/alz015.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/al/alz015.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/al/alz015.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/al/alz015.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/al/alz015.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/al/alz015.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/al/alz015.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/al.txt +station = ('kjfx', 0.0016960076371152347) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/al/alz015.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/al/alz015.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/al/alz015.txt + +[alz016] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/al/alz016.txt +centroid = (0.59571578029070449, -1.516125633305426) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/al/alz016.txt +description = Cullman, AL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/al/alz016.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/al/alz016.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/al/alz016.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/al/alz016.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/al/alz016.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/al/alz016.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/al/alz016.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/al/alz016.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/al.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/al/alz016.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/al/alz016.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/al/alz016.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/al/alz016.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/al/alz016.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/al/alz016.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/al/alz016.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/al.txt +station = ('k3a1', 0.0023880630605886007) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/al/alz016.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/al/alz016.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/al/alz016.txt + +[alz017] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/al/alz017.txt +centroid = (0.59307858779094114, -1.5108861548909394) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/al/alz017.txt +description = Blount, AL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/al/alz017.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/al/alz017.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/al/alz017.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/al/alz017.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/al/alz017.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/al/alz017.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/al/alz017.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/al/alz017.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/al.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/al/alz017.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/al/alz017.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/al/alz017.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/al/alz017.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/al/alz017.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/al/alz017.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/al/alz017.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/al.txt +station = ('k8a0', 0.0062484530430941647) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/al/alz017.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/al/alz017.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/al/alz017.txt + +[alz018] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/al/alz018.txt +centroid = (0.59420257982922542, -1.5015905312948175) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/al/alz018.txt +description = Etowah, AL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/al/alz018.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/al/alz018.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/al/alz018.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/al/alz018.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/al/alz018.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/al/alz018.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/al/alz018.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/al/alz018.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/al.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/al/alz018.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/al/alz018.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/al/alz018.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/al/alz018.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/al/alz018.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/al/alz018.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/al/alz018.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/al.txt +station = ('kgad', 0.0015416212428305946) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/al/alz018.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/al/alz018.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/al/alz018.txt + +[alz019] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/al/alz019.txt +centroid = (0.589422123008013, -1.4979480291459053) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/al/alz019.txt +description = Calhoun, AL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/al/alz019.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/al/alz019.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/al/alz019.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/al/alz019.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/al/alz019.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/al/alz019.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/al/alz019.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/al/alz019.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/al.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/al/alz019.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/al/alz019.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/al/alz019.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/al/alz019.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/al/alz019.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/al/alz019.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/al/alz019.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/al.txt +station = ('kanb', 0.0033006866597234267) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/al/alz019.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/al/alz019.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/al/alz019.txt + +[alz020] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/al/alz020.txt +centroid = (0.5964837251615821, -1.494068162218722) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/al/alz020.txt +description = Cherokee, AL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/al/alz020.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/al/alz020.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/al/alz020.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/al/alz020.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/al/alz020.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/al/alz020.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/al/alz020.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/al/alz020.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/al.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/al/alz020.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/al/alz020.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/al/alz020.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/al/alz020.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/al/alz020.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/al/alz020.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/al/alz020.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/al.txt +station = ('k4a9', 0.0054638262679964113) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/al/alz020.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/al/alz020.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/al/alz020.txt + +[alz021] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/al/alz021.txt +centroid = (0.58773089896283048, -1.4925846323545267) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/al/alz021.txt +description = Cleburne, AL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/al/alz021.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/al/alz021.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/al/alz021.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/al/alz021.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/al/alz021.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/al/alz021.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/al/alz021.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/al/alz021.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/al.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/al/alz021.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/al/alz021.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/al/alz021.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/al/alz021.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/al/alz021.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/al/alz021.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/al/alz021.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/al.txt +station = ('kctj', 0.0054140702943186406) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/al/alz021.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/al/alz021.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/al/alz021.txt + +[alz022] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/al/alz022.txt +centroid = (0.58086128302698081, -1.537437848801529) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/al/alz022.txt +description = Pickens, AL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/al/alz022.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/al/alz022.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/al/alz022.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/al/alz022.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/al/alz022.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/al/alz022.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/al/alz022.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/al/alz022.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/al.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/al/alz022.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/al/alz022.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/al/alz022.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/al/alz022.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/al/alz022.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/al/alz022.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/al/alz022.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/al.txt +station = ('ktcl', 0.0069804753117904709) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/al/alz022.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/al/alz022.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/al/alz022.txt + +[alz023] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/al/alz023.txt +centroid = (0.58101138134265229, -1.5275994278080369) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/al/alz023.txt +description = Tuscaloosa, AL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/al/alz023.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/al/alz023.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/al/alz023.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/al/alz023.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/al/alz023.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/al/alz023.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/al/alz023.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/al/alz023.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/al.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/al/alz023.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/al/alz023.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/al/alz023.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/al/alz023.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/al/alz023.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/al/alz023.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/al/alz023.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/al.txt +station = ('ktcl', 0.0018455126990794257) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/al/alz023.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/al/alz023.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/al/alz023.txt + +[alz024] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/al/alz024.txt +centroid = (0.58563301320193328, -1.5166300334592526) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/al/alz024.txt +description = Jefferson, AL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/al/alz024.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/al/alz024.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/al/alz024.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/al/alz024.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/al/alz024.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/al/alz024.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/al/alz024.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/al/alz024.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/al.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/al/alz024.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/al/alz024.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/al/alz024.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/al/alz024.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/al/alz024.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/al/alz024.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/al/alz024.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/al.txt +station = ('kbhm', 0.0021415820676353192) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/al/alz024.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/al/alz024.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/al/alz024.txt + +[alz025] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/al/alz025.txt +centroid = (0.58057155837114971, -1.5125145470830501) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/al/alz025.txt +description = Shelby, AL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/al/alz025.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/al/alz025.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/al/alz025.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/al/alz025.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/al/alz025.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/al/alz025.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/al/alz025.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/al/alz025.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/al.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/al/alz025.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/al/alz025.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/al/alz025.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/al/alz025.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/al/alz025.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/al/alz025.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/al/alz025.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/al.txt +station = ('keet', 0.0022809620443748199) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/al/alz025.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/al/alz025.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/al/alz025.txt + +[alz026] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/al/alz026.txt +centroid = (0.58844997461465209, -1.5064757078711497) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/al/alz026.txt +description = St. Clair, AL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/al/alz026.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/al/alz026.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/al/alz026.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/al/alz026.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/al/alz026.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/al/alz026.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/al/alz026.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/al/alz026.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/al.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/al/alz026.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/al/alz026.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/al/alz026.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/al/alz026.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/al/alz026.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/al/alz026.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/al/alz026.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/al.txt +station = ('kgad', 0.0055168211410086907) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/al/alz026.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/al/alz026.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/al/alz026.txt + +[alz027] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/al/alz027.txt +centroid = (0.58259090431570726, -1.5038786579441819) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/al/alz027.txt +description = Talladega, AL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/al/alz027.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/al/alz027.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/al/alz027.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/al/alz027.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/al/alz027.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/al/alz027.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/al/alz027.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/al/alz027.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/al.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/al/alz027.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/al/alz027.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/al/alz027.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/al/alz027.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/al/alz027.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/al/alz027.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/al/alz027.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/al.txt +station = ('kanb', 0.0058087246523427557) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/al/alz027.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/al/alz027.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/al/alz027.txt + +[alz028] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/al/alz028.txt +centroid = (0.58065533417524551, -1.4985484224085914) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/al/alz028.txt +description = Clay, AL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/al/alz028.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/al/alz028.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/al/alz028.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/al/alz028.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/al/alz028.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/al/alz028.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/al/alz028.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/al/alz028.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/al.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/al/alz028.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/al/alz028.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/al/alz028.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/al/alz028.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/al/alz028.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/al/alz028.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/al/alz028.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/al.txt +station = ('kanb', 0.0054865385418426914) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/al/alz028.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/al/alz028.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/al/alz028.txt + +[alz029] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/al/alz029.txt +centroid = (0.58108643050048803, -1.4915426707910862) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/al/alz029.txt +description = Randolph, AL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/al/alz029.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/al/alz029.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/al/alz029.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/al/alz029.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/al/alz029.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/al/alz029.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/al/alz029.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/al/alz029.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/al.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/al/alz029.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/al/alz029.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/al/alz029.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/al/alz029.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/al/alz029.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/al/alz029.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/al/alz029.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/al.txt +station = ('kctj', 0.0073950404929242191) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/al/alz029.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/al/alz029.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/al/alz029.txt + +[alz030] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/al/alz030.txt +centroid = (0.56882025651747192, -1.5393594563079749) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/al/alz030.txt +description = Sumter, AL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/al/alz030.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/al/alz030.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/al/alz030.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/al/alz030.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/al/alz030.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/al/alz030.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/al/alz030.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/al/alz030.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/al.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/al/alz030.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/al/alz030.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/al/alz030.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/al/alz030.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/al/alz030.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/al/alz030.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/al/alz030.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/al.txt +station = ('kmei', 0.0092795654393895491) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/al/alz030.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/al/alz030.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/al/alz030.txt + +[alz031] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/al/alz031.txt +centroid = (0.57339476448694904, -1.5350554743725568) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/al/alz031.txt +description = Greene, AL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/al/alz031.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/al/alz031.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/al/alz031.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/al/alz031.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/al/alz031.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/al/alz031.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/al/alz031.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/al/alz031.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/al.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/al/alz031.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/al/alz031.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/al/alz031.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/al/alz031.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/al/alz031.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/al/alz031.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/al/alz031.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/al.txt +station = ('ktcl', 0.0080229059936316027) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/al/alz031.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/al/alz031.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/al/alz031.txt + +[alz032] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/al/alz032.txt +centroid = (0.5718169868431463, -1.529416315559363) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/al/alz032.txt +description = Hale, AL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/al/alz032.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/al/alz032.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/al/alz032.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/al/alz032.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/al/alz032.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/al/alz032.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/al/alz032.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/al/alz032.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/al.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/al/alz032.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/al/alz032.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/al/alz032.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/al/alz032.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/al/alz032.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/al/alz032.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/al/alz032.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/al.txt +station = ('ktcl', 0.0079253033847200786) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/al/alz032.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/al/alz032.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/al/alz032.txt + +[alz033] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/al/alz033.txt +centroid = (0.56964928791216929, -1.5235712078944341) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/al/alz033.txt +description = Perry, AL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/al/alz033.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/al/alz033.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/al/alz033.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/al/alz033.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/al/alz033.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/al/alz033.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/al/alz033.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/al/alz033.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/al.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/al/alz033.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/al/alz033.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/al/alz033.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/al/alz033.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/al/alz033.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/al/alz033.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/al/alz033.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/al.txt +station = ('ktcl', 0.0111419119739404) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/al/alz033.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/al/alz033.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/al/alz033.txt + +[alz034] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/al/alz034.txt +centroid = (0.57593421854860094, -1.5206425454095875) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/al/alz034.txt +description = Bibb, AL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/al/alz034.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/al/alz034.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/al/alz034.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/al/alz034.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/al/alz034.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/al/alz034.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/al/alz034.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/al/alz034.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/al.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/al/alz034.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/al/alz034.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/al/alz034.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/al/alz034.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/al/alz034.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/al/alz034.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/al/alz034.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/al.txt +station = ('keet', 0.0059632588893196213) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/al/alz034.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/al/alz034.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/al/alz034.txt + +[alz035] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/al/alz035.txt +centroid = (0.57330400736584541, -1.5135285833784586) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/al/alz035.txt +description = Chilton, AL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/al/alz035.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/al/alz035.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/al/alz035.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/al/alz035.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/al/alz035.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/al/alz035.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/al/alz035.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/al/alz035.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/al.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/al/alz035.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/al/alz035.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/al/alz035.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/al/alz035.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/al/alz035.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/al/alz035.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/al/alz035.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/al.txt +station = ('keet', 0.0059301058517778928) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/al/alz035.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/al/alz035.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/al/alz035.txt + +[alz036] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/al/alz036.txt +centroid = (0.57484513309535634, -1.5053045919430614) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/al/alz036.txt +description = Coosa, AL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/al/alz036.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/al/alz036.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/al/alz036.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/al/alz036.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/al/alz036.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/al/alz036.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/al/alz036.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/al/alz036.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/al.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/al/alz036.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/al/alz036.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/al/alz036.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/al/alz036.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/al/alz036.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/al/alz036.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/al/alz036.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/al.txt +station = ('kalx', 0.0041894248661681014) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/al/alz036.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/al/alz036.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/al/alz036.txt + +[alz037] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/al/alz037.txt +centroid = (0.5735570801073846, -1.497448864979835) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/al/alz037.txt +description = Tallapoosa, AL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/al/alz037.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/al/alz037.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/al/alz037.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/al/alz037.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/al/alz037.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/al/alz037.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/al/alz037.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/al/alz037.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/al.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/al/alz037.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/al/alz037.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/al/alz037.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/al/alz037.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/al/alz037.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/al/alz037.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/al/alz037.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/al.txt +station = ('kalx', 0.0025887319307284218) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/al/alz037.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/al/alz037.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/al/alz037.txt + +[alz038] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/al/alz038.txt +centroid = (0.57446465131842162, -1.4903715548629979) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/al/alz038.txt +description = Chambers, AL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/al/alz038.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/al/alz038.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/al/alz038.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/al/alz038.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/al/alz038.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/al/alz038.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/al/alz038.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/al/alz038.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/al.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/al/alz038.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/al/alz038.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/al/alz038.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/al/alz038.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/al/alz038.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/al/alz038.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/al/alz038.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/al.txt +station = ('klgc', 0.004960865648234637) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/al/alz038.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/al/alz038.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/al/alz038.txt + +[alz039] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/al/alz039.txt +centroid = (0.56282679586612339, -1.532215823679562) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/al/alz039.txt +description = Marengo, AL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/al/alz039.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/al/alz039.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/al/alz039.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/al/alz039.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/al/alz039.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/al/alz039.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/al/alz039.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/al/alz039.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/al.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/al/alz039.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/al/alz039.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/al/alz039.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/al/alz039.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/al/alz039.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/al/alz039.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/al/alz039.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/al.txt +station = ('kmei', 0.014250092924250925) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/al/alz039.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/al/alz039.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/al/alz039.txt + +[alz040] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/al/alz040.txt +centroid = (0.56419164334118299, -1.5202952248884407) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/al/alz040.txt +description = Dallas, AL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/al/alz040.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/al/alz040.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/al/alz040.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/al/alz040.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/al/alz040.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/al/alz040.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/al/alz040.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/al/alz040.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/al.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/al/alz040.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/al/alz040.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/al/alz040.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/al/alz040.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/al/alz040.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/al/alz040.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/al/alz040.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/al.txt +station = ('kmxf', 0.010953989740980261) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/al/alz040.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/al/alz040.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/al/alz040.txt + +[alz041] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/al/alz041.txt +centroid = (0.56784112680710308, -1.5122021331469429) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/al/alz041.txt +description = Autauga, AL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/al/alz041.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/al/alz041.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/al/alz041.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/al/alz041.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/al/alz041.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/al/alz041.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/al/alz041.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/al/alz041.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/al.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/al/alz041.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/al/alz041.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/al/alz041.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/al/alz041.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/al/alz041.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/al/alz041.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/al/alz041.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/al.txt +station = ('kmxf', 0.0048512209817974357) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/al/alz041.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/al/alz041.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/al/alz041.txt + +[alz042] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/al/alz042.txt +centroid = (0.56120538499102068, -1.5123295421823384) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/al/alz042.txt +description = Lowndes, AL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/al/alz042.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/al/alz042.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/al/alz042.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/al/alz042.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/al/alz042.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/al/alz042.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/al/alz042.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/al/alz042.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/al.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/al/alz042.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/al/alz042.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/al/alz042.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/al/alz042.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/al/alz042.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/al/alz042.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/al/alz042.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/al.txt +station = ('kmgm', 0.0044795354490528806) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/al/alz042.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/al/alz042.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/al/alz042.txt + +[alz043] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/al/alz043.txt +centroid = (0.56891799495558371, -1.5035871879590987) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/al/alz043.txt +description = Elmore, AL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/al/alz043.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/al/alz043.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/al/alz043.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/al/alz043.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/al/alz043.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/al/alz043.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/al/alz043.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/al/alz043.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/al.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/al/alz043.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/al/alz043.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/al/alz043.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/al/alz043.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/al/alz043.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/al/alz043.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/al/alz043.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/al.txt +station = ('kmxf', 0.004909593896445714) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/al/alz043.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/al/alz043.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/al/alz043.txt + +[alz044] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/al/alz044.txt +centroid = (0.56234857565107699, -1.5046064602422635) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/al/alz044.txt +description = Montgomery, AL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/al/alz044.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/al/alz044.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/al/alz044.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/al/alz044.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/al/alz044.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/al/alz044.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/al/alz044.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/al/alz044.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/al.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/al/alz044.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/al/alz044.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/al/alz044.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/al/alz044.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/al/alz044.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/al/alz044.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/al/alz044.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/al.txt +station = ('kmgm', 0.0031628184020778549) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/al/alz044.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/al/alz044.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/al/alz044.txt + +[alz045] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/al/alz045.txt +centroid = (0.56524233155088366, -1.4956180145944928) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/al/alz045.txt +description = Macon, AL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/al/alz045.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/al/alz045.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/al/alz045.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/al/alz045.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/al/alz045.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/al/alz045.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/al/alz045.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/al/alz045.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/al.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/al/alz045.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/al/alz045.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/al/alz045.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/al/alz045.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/al/alz045.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/al/alz045.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/al/alz045.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/al.txt +station = ('kauo', 0.0055472692403988584) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/al/alz045.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/al/alz045.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/al/alz045.txt + +[alz046] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/al/alz046.txt +centroid = (0.56025941653643974, -1.4960281669687114) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/al/alz046.txt +description = Bullock, AL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/al/alz046.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/al/alz046.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/al/alz046.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/al/alz046.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/al/alz046.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/al/alz046.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/al/alz046.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/al/alz046.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/al.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/al/alz046.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/al/alz046.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/al/alz046.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/al/alz046.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/al/alz046.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/al/alz046.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/al/alz046.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/al.txt +station = ('ktoi', 0.0060377421692128534) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/al/alz046.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/al/alz046.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/al/alz046.txt + +[alz047] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/al/alz047.txt +centroid = (0.56899828010117537, -1.489736255015272) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/al/alz047.txt +description = Lee, AL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/al/alz047.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/al/alz047.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/al/alz047.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/al/alz047.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/al/alz047.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/al/alz047.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/al/alz047.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/al/alz047.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/al.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/al/alz047.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/al/alz047.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/al/alz047.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/al/alz047.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/al/alz047.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/al/alz047.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/al/alz047.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/al.txt +station = ('kauo', 0.0011742916244402593) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/al/alz047.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/al/alz047.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/al/alz047.txt + +[alz048] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/al/alz048.txt +centroid = (0.56353889020093717, -1.4867569779821177) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/al/alz048.txt +description = Russell, AL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/al/alz048.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/al/alz048.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/al/alz048.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/al/alz048.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/al/alz048.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/al/alz048.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/al/alz048.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/al/alz048.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/al.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/al/alz048.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/al/alz048.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/al/alz048.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/al/alz048.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/al/alz048.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/al/alz048.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/al/alz048.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/al.txt +station = ('kcsg', 0.0052776853319531159) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/al/alz048.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/al/alz048.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/al/alz048.txt + +[alz049] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/al/alz049.txt +centroid = (0.55505659003624463, -1.4999516671271949) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/al/alz049.txt +description = Pike, AL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/al/alz049.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/al/alz049.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/al/alz049.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/al/alz049.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/al/alz049.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/al/alz049.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/al/alz049.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/al/alz049.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/al.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/al/alz049.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/al/alz049.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/al/alz049.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/al/alz049.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/al/alz049.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/al/alz049.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/al/alz049.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/al.txt +station = ('kprn', 0.00035911485589813411) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/al/alz049.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/al/alz049.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/al/alz049.txt + +[alz050] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/al/alz050.txt +centroid = (0.55622945129358481, -1.4903924988140218) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/al/alz050.txt +description = Barbour, AL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/al/alz050.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/al/alz050.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/al/alz050.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/al/alz050.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/al/alz050.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/al/alz050.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/al/alz050.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/al/alz050.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/al.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/al/alz050.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/al/alz050.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/al/alz050.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/al/alz050.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/al/alz050.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/al/alz050.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/al/alz050.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/al.txt +station = ('keuf', 0.0041255082567577565) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/al/alz050.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/al/alz050.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/al/alz050.txt + +[alz051] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/al/alz051.txt +centroid = (0.55884046385456831, -1.540476467029251) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/al/alz051.txt +description = Choctaw, AL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/al/alz051.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/al/alz051.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/al/alz051.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/al/alz051.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/al/alz051.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/al/alz051.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/al/alz051.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/al/alz051.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/al.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/al/alz051.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/al/alz051.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/al/alz051.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/al/alz051.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/al/alz051.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/al/alz051.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/al/alz051.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/al.txt +station = ('kmei', 0.0090476405108107331) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/al/alz051.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/al/alz051.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/al/alz051.txt + +[alz052] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/al/alz052.txt +centroid = (0.54816777547862305, -1.5395043186358901) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/al/alz052.txt +description = Washington, AL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/al/alz052.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/al/alz052.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/al/alz052.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/al/alz052.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/al/alz052.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/al/alz052.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/al/alz052.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/al/alz052.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/al.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/al/alz052.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/al/alz052.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/al/alz052.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/al/alz052.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/al/alz052.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/al/alz052.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/al/alz052.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/al.txt +station = ('kmob', 0.012648667413487176) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/al/alz052.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/al/alz052.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/al/alz052.txt + +[alz053] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/al/alz053.txt +centroid = (0.55276148206987208, -1.5329383899898876) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/al/alz053.txt +description = Clarke, AL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/al/alz053.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/al/alz053.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/al/alz053.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/al/alz053.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/al/alz053.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/al/alz053.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/al/alz053.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/al/alz053.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/al.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/al/alz053.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/al/alz053.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/al/alz053.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/al/alz053.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/al/alz053.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/al/alz053.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/al/alz053.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/al.txt +station = ('kgzh', 0.012434059282942099) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/al/alz053.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/al/alz053.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/al/alz053.txt + +[alz054] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/al/alz054.txt +centroid = (0.55831686507897005, -1.5238155539897131) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/al/alz054.txt +description = Wilcox, AL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/al/alz054.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/al/alz054.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/al/alz054.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/al/alz054.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/al/alz054.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/al/alz054.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/al/alz054.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/al/alz054.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/al.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/al/alz054.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/al/alz054.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/al/alz054.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/al/alz054.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/al/alz054.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/al/alz054.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/al/alz054.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/al.txt +station = ('kgzh', 0.010702861233681485) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/al/alz054.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/al/alz054.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/al/alz054.txt + +[alz055] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/al/alz055.txt +centroid = (0.55101091683012182, -1.5248208636388618) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/al/alz055.txt +description = Monroe, AL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/al/alz055.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/al/alz055.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/al/alz055.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/al/alz055.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/al/alz055.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/al/alz055.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/al/alz055.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/al/alz055.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/al.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/al/alz055.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/al/alz055.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/al/alz055.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/al/alz055.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/al/alz055.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/al/alz055.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/al/alz055.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/al.txt +station = ('kgzh', 0.0054135650387894417) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/al/alz055.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/al/alz055.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/al/alz055.txt + +[alz056] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/al/alz056.txt +centroid = (0.54854476659705387, -1.5183247481629392) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/al/alz056.txt +description = Conecuh, AL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/al/alz056.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/al/alz056.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/al/alz056.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/al/alz056.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/al/alz056.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/al/alz056.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/al/alz056.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/al/alz056.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/al.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/al/alz056.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/al/alz056.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/al/alz056.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/al/alz056.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/al/alz056.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/al/alz056.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/al/alz056.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/al.txt +station = ('kgzh', 0.00086845714567094958) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/al/alz056.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/al/alz056.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/al/alz056.txt + +[alz057] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/al/alz057.txt +centroid = (0.55418392541024752, -1.5128566316164409) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/al/alz057.txt +description = Butler, AL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/al/alz057.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/al/alz057.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/al/alz057.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/al/alz057.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/al/alz057.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/al/alz057.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/al/alz057.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/al/alz057.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/al.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/al/alz057.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/al/alz057.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/al/alz057.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/al/alz057.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/al/alz057.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/al/alz057.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/al/alz057.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/al.txt +station = ('kgzh', 0.0080342168106810902) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/al/alz057.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/al/alz057.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/al/alz057.txt + +[alz058] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/al/alz058.txt +centroid = (0.55381915159658068, -1.5064565092493776) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/al/alz058.txt +description = Crenshaw, AL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/al/alz058.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/al/alz058.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/al/alz058.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/al/alz058.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/al/alz058.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/al/alz058.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/al/alz058.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/al/alz058.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/al.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/al/alz058.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/al/alz058.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/al/alz058.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/al/alz058.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/al/alz058.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/al/alz058.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/al/alz058.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/al.txt +station = ('ktoi', 0.0049965670330312595) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/al/alz058.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/al/alz058.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/al/alz058.txt + +[alz059] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/al/alz059.txt +centroid = (0.54325467363425906, -1.5212569013062898) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/al/alz059.txt +description = Escambia, AL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/al/alz059.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/al/alz059.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/al/alz059.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/al/alz059.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/al/alz059.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/al/alz059.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/al/alz059.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/al/alz059.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/al.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/al/alz059.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/al/alz059.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/al/alz059.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/al/alz059.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/al/alz059.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/al/alz059.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/al/alz059.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/al.txt +station = ('kgzh', 0.005335954995612277) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/al/alz059.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/al/alz059.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/al/alz059.txt + +[alz060] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/al/alz060.txt +centroid = (0.54538921130944806, -1.5088580823001219) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/al/alz060.txt +description = Covington, AL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/al/alz060.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/al/alz060.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/al/alz060.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/al/alz060.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/al/alz060.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/al/alz060.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/al/alz060.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/al/alz060.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/al.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/al/alz060.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/al/alz060.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/al/alz060.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/al/alz060.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/al/alz060.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/al/alz060.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/al/alz060.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/al.txt +station = ('k79j', 0.001353822379419877) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/al/alz060.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/al/alz060.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/al/alz060.txt + +[alz061] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/al/alz061.txt +centroid = (0.53972038189897054, -1.5391186008711994) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/al/alz061.txt +description = Upper Mobile, AL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/al/alz061.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/al/alz061.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/al/alz061.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/al/alz061.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/al/alz061.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/al/alz061.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/al/alz061.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/al/alz061.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/al.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/al/alz061.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/al/alz061.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/al/alz061.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/al/alz061.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/al/alz061.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/al/alz061.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/al/alz061.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/al.txt +station = ('kmob', 0.0042573018369557744) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/al/alz061.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/al/alz061.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/al/alz061.txt + +[alz062] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/al/alz062.txt +centroid = (0.54012878894393712, -1.5317271314890035) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/al/alz062.txt +description = Upper Baldwin, AL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/al/alz062.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/al/alz062.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/al/alz062.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/al/alz062.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/al/alz062.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/al/alz062.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/al/alz062.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/al/alz062.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/al.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/al/alz062.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/al/alz062.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/al/alz062.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/al/alz062.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/al/alz062.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/al/alz062.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/al/alz062.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/al.txt +station = ('kbfm', 0.0071360943273226819) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/al/alz062.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/al/alz062.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/al/alz062.txt + +[alz063] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/al/alz063.txt +centroid = (0.53281935003658498, -1.5400139547774725) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/al/alz063.txt +description = Lower Mobile, AL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/al/alz063.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/al/alz063.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/al/alz063.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/al/alz063.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/al/alz063.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/al/alz063.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/al/alz063.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/al/alz063.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/al.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/al/alz063.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/al/alz063.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/al/alz063.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/al/alz063.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/al/alz063.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/al/alz063.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/al/alz063.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/al.txt +station = ('kmob', 0.0027062090812189424) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/al/alz063.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/al/alz063.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/al/alz063.txt + +[alz064] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/al/alz064.txt +centroid = (0.53222070210315087, -1.5301284098941768) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/al/alz064.txt +description = Lower Baldwin, AL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/al/alz064.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/al/alz064.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/al/alz064.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/al/alz064.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/al/alz064.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/al/alz064.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/al/alz064.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/al/alz064.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/al.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/al/alz064.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/al/alz064.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/al/alz064.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/al/alz064.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/al/alz064.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/al/alz064.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/al/alz064.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/al.txt +station = ('kcqf', 0.0033634653483865158) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/al/alz064.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/al/alz064.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/al/alz064.txt + +[alz065] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/al/alz065.txt +centroid = (0.54807876368677133, -1.5007772078633881) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/al/alz065.txt +description = Coffee, AL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/al/alz065.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/al/alz065.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/al/alz065.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/al/alz065.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/al/alz065.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/al/alz065.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/al/alz065.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/al/alz065.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/al.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/al/alz065.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/al/alz065.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/al/alz065.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/al/alz065.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/al/alz065.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/al/alz065.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/al/alz065.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/al.txt +station = ('klor', 0.0036546061590857597) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/al/alz065.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/al/alz065.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/al/alz065.txt + +[alz066] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/al/alz066.txt +centroid = (0.54858839982835361, -1.4941938259248655) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/al/alz066.txt +description = Dale, AL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/al/alz066.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/al/alz066.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/al/alz066.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/al/alz066.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/al/alz066.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/al/alz066.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/al/alz066.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/al/alz066.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/al.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/al/alz066.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/al/alz066.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/al/alz066.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/al/alz066.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/al/alz066.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/al/alz066.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/al/alz066.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/al.txt +station = ('klor', 0.0024094486600709833) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/al/alz066.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/al/alz066.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/al/alz066.txt + +[alz067] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/al/alz067.txt +centroid = (0.550035277778257, -1.4877430890094945) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/al/alz067.txt +description = Henry, AL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/al/alz067.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/al/alz067.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/al/alz067.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/al/alz067.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/al/alz067.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/al/alz067.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/al/alz067.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/al/alz067.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/al.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/al/alz067.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/al/alz067.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/al/alz067.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/al/alz067.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/al/alz067.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/al/alz067.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/al/alz067.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/al.txt +station = ('kdhn', 0.0046475787965401839) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/al/alz067.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/al/alz067.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/al/alz067.txt + +[alz068] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/al/alz068.txt +centroid = (0.54271013090763676, -1.4981731766194124) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/al/alz068.txt +description = Geneva, AL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/al/alz068.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/al/alz068.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/al/alz068.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/al/alz068.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/al/alz068.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/al/alz068.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/al/alz068.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/al/alz068.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/al.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/al/alz068.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/al/alz068.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/al/alz068.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/al/alz068.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/al/alz068.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/al/alz068.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/al/alz068.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/al.txt +station = ('kozr', 0.0037604198264264681) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/al/alz068.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/al/alz068.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/al/alz068.txt + +[alz069] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/al/alz069.txt +centroid = (0.54372591253229741, -1.4888094851824629) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/al/alz069.txt +description = Houston, AL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/al/alz069.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/al/alz069.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/al/alz069.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/al/alz069.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/al/alz069.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/al/alz069.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/al/alz069.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/al/alz069.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/al.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/al/alz069.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/al/alz069.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/al/alz069.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/al/alz069.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/al/alz069.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/al/alz069.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/al/alz069.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/al.txt +station = ('kdhn', 0.0036034808500632906) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/al/alz069.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/al/alz069.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/al/alz069.txt + +[arz001] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ar/arz001.txt +centroid = (0.63423868754072332, -1.6451002290400512) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ar/arz001.txt +description = Benton, AR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ar/arz001.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ar/arz001.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ar/arz001.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ar/arz001.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ar/arz001.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ar/arz001.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ar/arz001.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ar/arz001.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ar.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ar/arz001.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ar/arz001.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ar/arz001.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ar/arz001.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ar/arz001.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ar/arz001.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ar/arz001.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ar.txt +station = ('kvbt', 0.0006015224707254887) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ar/arz001.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ar/arz001.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ar/arz001.txt + +[arz002] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ar/arz002.txt +centroid = (0.63427010346725932, -1.63254956638896) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ar/arz002.txt +description = Carroll, AR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ar/arz002.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ar/arz002.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ar/arz002.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ar/arz002.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ar/arz002.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ar/arz002.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ar/arz002.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ar/arz002.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ar.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ar/arz002.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ar/arz002.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ar/arz002.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ar/arz002.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ar/arz002.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ar/arz002.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ar/arz002.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ar.txt +station = ('kbbg', 0.0057821282035356624) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ar/arz002.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ar/arz002.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ar/arz002.txt + +[arz003] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ar/arz003.txt +centroid = (0.6337046167896131, -1.6247531806203013) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ar/arz003.txt +description = Boone, AR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ar/arz003.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ar/arz003.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ar/arz003.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ar/arz003.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ar/arz003.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ar/arz003.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ar/arz003.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ar/arz003.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ar.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ar/arz003.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ar/arz003.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ar/arz003.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ar/arz003.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ar/arz003.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ar/arz003.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ar/arz003.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ar.txt +station = ('khro', 0.0011013470264663271) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ar/arz003.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ar/arz003.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ar/arz003.txt + +[arz004] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ar/arz004.txt +centroid = (0.63300299443031138, -1.6176444545769284) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ar/arz004.txt +description = Marion, AR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ar/arz004.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ar/arz004.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ar/arz004.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ar/arz004.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ar/arz004.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ar/arz004.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ar/arz004.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ar/arz004.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ar.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ar/arz004.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ar/arz004.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ar/arz004.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ar/arz004.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ar/arz004.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ar/arz004.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ar/arz004.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ar.txt +station = ('kflp', 0.0015224945673553254) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ar/arz004.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ar/arz004.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ar/arz004.txt + +[arz005] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ar/arz005.txt +centroid = (0.63333111632968631, -1.6115846714140041) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ar/arz005.txt +description = Baxter, AR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ar/arz005.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ar/arz005.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ar/arz005.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ar/arz005.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ar/arz005.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ar/arz005.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ar/arz005.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ar/arz005.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ar.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ar/arz005.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ar/arz005.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ar/arz005.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ar/arz005.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ar/arz005.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ar/arz005.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ar/arz005.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ar.txt +station = ('kbpk', 0.0022908453352082779) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ar/arz005.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ar/arz005.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ar/arz005.txt + +[arz006] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ar/arz006.txt +centroid = (0.63498045247282098, -1.6025316485839094) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ar/arz006.txt +description = Fulton, AR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ar/arz006.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ar/arz006.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ar/arz006.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ar/arz006.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ar/arz006.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ar/arz006.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ar/arz006.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ar/arz006.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ar.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ar/arz006.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ar/arz006.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ar/arz006.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ar/arz006.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ar/arz006.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ar/arz006.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ar/arz006.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ar.txt +station = ('kuno', 0.008829613156082227) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ar/arz006.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ar/arz006.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ar/arz006.txt + +[arz007] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ar/arz007.txt +centroid = (0.63113025614292151, -1.5966254543951608) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ar/arz007.txt +description = Sharp, AR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ar/arz007.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ar/arz007.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ar/arz007.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ar/arz007.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ar/arz007.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ar/arz007.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ar/arz007.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ar/arz007.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ar.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ar/arz007.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ar/arz007.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ar/arz007.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ar/arz007.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ar/arz007.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ar/arz007.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ar/arz007.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ar.txt +station = ('kbvx', 0.0078432499855904999) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ar/arz007.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ar/arz007.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ar/arz007.txt + +[arz008] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ar/arz008.txt +centroid = (0.63427883011351938, -1.5887348208468943) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ar/arz008.txt +description = Randolph, AR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ar/arz008.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ar/arz008.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ar/arz008.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ar/arz008.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ar/arz008.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ar/arz008.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ar/arz008.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ar/arz008.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ar.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ar/arz008.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ar/arz008.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ar/arz008.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ar/arz008.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ar/arz008.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ar/arz008.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ar/arz008.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ar.txt +station = ('karg', 0.0039557102597323375) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ar/arz008.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ar/arz008.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ar/arz008.txt + +[arz009] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ar/arz009.txt +centroid = (0.63475006901155773, -1.5780795857634689) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ar/arz009.txt +description = Clay, AR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ar/arz009.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ar/arz009.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ar/arz009.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ar/arz009.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ar/arz009.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ar/arz009.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ar/arz009.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ar/arz009.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ar.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ar/arz009.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ar/arz009.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ar/arz009.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ar/arz009.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ar/arz009.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ar/arz009.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ar/arz009.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ar.txt +station = ('k4m9', 0.0033155415010262842) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ar/arz009.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ar/arz009.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ar/arz009.txt + +[arz010] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ar/arz010.txt +centroid = (0.62796946486755967, -1.6443567187787014) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ar/arz010.txt +description = Washington, AR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ar/arz010.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ar/arz010.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ar/arz010.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ar/arz010.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ar/arz010.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ar/arz010.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ar/arz010.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ar/arz010.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ar.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ar/arz010.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ar/arz010.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ar/arz010.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ar/arz010.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ar/arz010.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ar/arz010.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ar/arz010.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ar.txt +station = ('kfyv', 0.00076286375308674294) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ar/arz010.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ar/arz010.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ar/arz010.txt + +[arz011] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ar/arz011.txt +centroid = (0.62851051693567805, -1.6358028601146772) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ar/arz011.txt +description = Madison, AR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ar/arz011.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ar/arz011.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ar/arz011.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ar/arz011.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ar/arz011.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ar/arz011.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ar/arz011.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ar/arz011.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ar.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ar/arz011.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ar/arz011.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ar/arz011.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ar/arz011.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ar/arz011.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ar/arz011.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ar/arz011.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ar.txt +station = ('kfyv', 0.0062444971212553589) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ar/arz011.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ar/arz011.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ar/arz011.txt + +[arz012] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ar/arz012.txt +centroid = (0.62692226731636325, -1.6269592767948222) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ar/arz012.txt +description = Newton, AR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ar/arz012.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ar/arz012.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ar/arz012.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ar/arz012.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ar/arz012.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ar/arz012.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ar/arz012.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ar/arz012.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ar.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ar/arz012.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ar/arz012.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ar/arz012.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ar/arz012.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ar/arz012.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ar/arz012.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ar/arz012.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ar.txt +station = ('khro', 0.0061257864330539272) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ar/arz012.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ar/arz012.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ar/arz012.txt + +[arz013] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ar/arz013.txt +centroid = (0.62676344235443171, -1.6179114899524836) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ar/arz013.txt +description = Searcy, AR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ar/arz013.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ar/arz013.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ar/arz013.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ar/arz013.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ar/arz013.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ar/arz013.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ar/arz013.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ar/arz013.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ar.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ar/arz013.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ar/arz013.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ar/arz013.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ar/arz013.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ar/arz013.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ar/arz013.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ar/arz013.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ar.txt +station = ('kcca', 0.0064754817125612851) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ar/arz013.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ar/arz013.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ar/arz013.txt + +[arz014] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ar/arz014.txt +centroid = (0.62587332443591459, -1.6084378427726582) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ar/arz014.txt +description = Stone, AR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ar/arz014.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ar/arz014.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ar/arz014.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ar/arz014.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ar/arz014.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ar/arz014.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ar/arz014.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ar/arz014.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ar.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ar/arz014.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ar/arz014.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ar/arz014.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ar/arz014.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ar/arz014.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ar/arz014.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ar/arz014.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ar.txt +station = ('kcca', 0.0061518030466743813) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ar/arz014.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ar/arz014.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ar/arz014.txt + +[arz015] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ar/arz015.txt +centroid = (0.62997484817810134, -1.6041914567025559) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ar/arz015.txt +description = Izard, AR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ar/arz015.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ar/arz015.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ar/arz015.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ar/arz015.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ar/arz015.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ar/arz015.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ar/arz015.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ar/arz015.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ar.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ar/arz015.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ar/arz015.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ar/arz015.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ar/arz015.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ar/arz015.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ar/arz015.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ar/arz015.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ar.txt +station = ('kbvx', 0.007327024569331376) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ar/arz015.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ar/arz015.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ar/arz015.txt + +[arz016] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ar/arz016.txt +centroid = (0.62380685460155338, -1.5981945053927036) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ar/arz016.txt +description = Independence, AR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ar/arz016.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ar/arz016.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ar/arz016.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ar/arz016.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ar/arz016.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ar/arz016.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ar/arz016.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ar/arz016.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ar.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ar/arz016.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ar/arz016.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ar/arz016.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ar/arz016.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ar/arz016.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ar/arz016.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ar/arz016.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ar.txt +station = ('kbvx', 0.0011450892039427635) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ar/arz016.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ar/arz016.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ar/arz016.txt + +[arz017] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ar/arz017.txt +centroid = (0.62903935169903225, -1.5901188669437258) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ar/arz017.txt +description = Lawrence, AR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ar/arz017.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ar/arz017.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ar/arz017.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ar/arz017.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ar/arz017.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ar/arz017.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ar/arz017.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ar/arz017.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ar.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ar/arz017.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ar/arz017.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ar/arz017.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ar/arz017.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ar/arz017.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ar/arz017.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ar/arz017.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ar.txt +station = ('karg', 0.003129603689895229) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ar/arz017.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ar/arz017.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ar/arz017.txt + +[arz018] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ar/arz018.txt +centroid = (0.63037278324755597, -1.580554462642797) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ar/arz018.txt +description = Greene, AR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ar/arz018.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ar/arz018.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ar/arz018.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ar/arz018.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ar/arz018.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ar/arz018.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ar/arz018.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ar/arz018.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ar.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ar/arz018.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ar/arz018.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ar/arz018.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ar/arz018.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ar/arz018.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ar/arz018.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ar/arz018.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ar.txt +station = ('k4m9', 0.0050904342009239056) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ar/arz018.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ar/arz018.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ar/arz018.txt + +[arz019] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ar/arz019.txt +centroid = (0.62114348216300996, -1.6448506469570159) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ar/arz019.txt +description = Crawford, AR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ar/arz019.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ar/arz019.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ar/arz019.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ar/arz019.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ar/arz019.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ar/arz019.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ar/arz019.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ar/arz019.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ar.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ar/arz019.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ar/arz019.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ar/arz019.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ar/arz019.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ar/arz019.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ar/arz019.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ar/arz019.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ar.txt +station = ('kfsm', 0.0047944273925304036) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ar/arz019.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ar/arz019.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ar/arz019.txt + +[arz020] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ar/arz020.txt +centroid = (0.61980655995598233, -1.638700106672988) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ar/arz020.txt +description = Franklin, AR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ar/arz020.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ar/arz020.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ar/arz020.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ar/arz020.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ar/arz020.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ar/arz020.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ar/arz020.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ar/arz020.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ar.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ar/arz020.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ar/arz020.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ar/arz020.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ar/arz020.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ar/arz020.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ar/arz020.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ar/arz020.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ar.txt +station = ('kfsm', 0.0074566634614580719) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ar/arz020.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ar/arz020.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ar/arz020.txt + +[arz021] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ar/arz021.txt +centroid = (0.62081536026363493, -1.6311829735846486) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ar/arz021.txt +description = Johnson, AR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ar/arz021.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ar/arz021.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ar/arz021.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ar/arz021.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ar/arz021.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ar/arz021.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ar/arz021.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ar/arz021.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ar.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ar/arz021.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ar/arz021.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ar/arz021.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ar/arz021.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ar/arz021.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ar/arz021.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ar/arz021.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ar.txt +station = ('krue', 0.0075777167493757801) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ar/arz021.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ar/arz021.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ar/arz021.txt + +[arz022] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ar/arz022.txt +centroid = (0.61867733192994201, -1.6237531069589086) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ar/arz022.txt +description = Pope, AR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ar/arz022.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ar/arz022.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ar/arz022.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ar/arz022.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ar/arz022.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ar/arz022.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ar/arz022.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ar/arz022.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ar.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ar/arz022.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ar/arz022.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ar/arz022.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ar/arz022.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ar/arz022.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ar/arz022.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ar/arz022.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ar.txt +station = ('krue', 0.0035737150748849601) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ar/arz022.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ar/arz022.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ar/arz022.txt + +[arz023] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ar/arz023.txt +centroid = (0.62100036516434642, -1.614703574787318) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ar/arz023.txt +description = Van Buren, AR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ar/arz023.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ar/arz023.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ar/arz023.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ar/arz023.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ar/arz023.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ar/arz023.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ar/arz023.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ar/arz023.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ar.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ar/arz023.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ar/arz023.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ar/arz023.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ar/arz023.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ar/arz023.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ar/arz023.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ar/arz023.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ar.txt +station = ('kcca', 0.00099145629609664844) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ar/arz023.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ar/arz023.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ar/arz023.txt + +[arz024] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ar/arz024.txt +centroid = (0.62025685490299687, -1.6061689147450657) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ar/arz024.txt +description = Cleburne, AR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ar/arz024.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ar/arz024.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ar/arz024.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ar/arz024.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ar/arz024.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ar/arz024.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ar/arz024.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ar/arz024.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ar.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ar/arz024.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ar/arz024.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ar/arz024.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ar/arz024.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ar/arz024.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ar/arz024.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ar/arz024.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ar.txt +station = ('kcca', 0.0061058268583057459) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ar/arz024.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ar/arz024.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ar/arz024.txt + +[arz025] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ar/arz025.txt +centroid = (0.62132674173446945, -1.5919950958896198) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ar/arz025.txt +description = Jackson, AR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ar/arz025.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ar/arz025.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ar/arz025.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ar/arz025.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ar/arz025.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ar/arz025.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ar/arz025.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ar/arz025.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ar.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ar/arz025.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ar/arz025.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ar/arz025.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ar/arz025.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ar/arz025.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ar/arz025.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ar/arz025.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ar.txt +station = ('km19', 0.00086045915904763449) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ar/arz025.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ar/arz025.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ar/arz025.txt + +[arz026] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ar/arz026.txt +centroid = (0.62536543362358432, -1.5818407703015167) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ar/arz026.txt +description = Craighead, AR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ar/arz026.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ar/arz026.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ar/arz026.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ar/arz026.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ar/arz026.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ar/arz026.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ar/arz026.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ar/arz026.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ar.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ar/arz026.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ar/arz026.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ar/arz026.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ar/arz026.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ar/arz026.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ar/arz026.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ar/arz026.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ar.txt +station = ('kjbr', 0.00024736398597848474) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ar/arz026.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ar/arz026.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ar/arz026.txt + +[arz027] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ar/arz027.txt +centroid = (0.62088342810446273, -1.582366114406367) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ar/arz027.txt +description = Poinsett, AR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ar/arz027.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ar/arz027.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ar/arz027.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ar/arz027.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ar/arz027.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ar/arz027.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ar/arz027.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ar/arz027.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ar.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ar/arz027.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ar/arz027.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ar/arz027.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ar/arz027.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ar/arz027.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ar/arz027.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ar/arz027.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ar.txt +station = ('kjbr', 0.0045299115857011111) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ar/arz027.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ar/arz027.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ar/arz027.txt + +[arz028] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ar/arz028.txt +centroid = (0.62419780835400007, -1.5717388045909735) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ar/arz028.txt +description = Mississippi, AR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ar/arz028.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ar/arz028.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ar/arz028.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ar/arz028.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ar/arz028.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ar/arz028.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ar/arz028.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ar/arz028.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ar.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ar/arz028.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ar/arz028.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ar/arz028.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ar/arz028.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ar/arz028.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ar/arz028.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ar/arz028.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ar.txt +station = ('kbyh', 0.0038324836600060331) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ar/arz028.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ar/arz028.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ar/arz028.txt + +[arz029] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ar/arz029.txt +centroid = (0.61434367939724011, -1.6453916990251343) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ar/arz029.txt +description = Sebastian, AR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ar/arz029.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ar/arz029.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ar/arz029.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ar/arz029.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ar/arz029.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ar/arz029.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ar/arz029.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ar/arz029.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ar.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ar/arz029.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ar/arz029.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ar/arz029.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ar/arz029.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ar/arz029.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ar/arz029.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ar/arz029.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ar.txt +station = ('kfsm', 0.0026862990658592018) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ar/arz029.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ar/arz029.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ar/arz029.txt + +[arz030] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ar/arz030.txt +centroid = (0.61462293207755914, -1.635657997786762) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ar/arz030.txt +description = Logan, AR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ar/arz030.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ar/arz030.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ar/arz030.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ar/arz030.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ar/arz030.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ar/arz030.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ar/arz030.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ar/arz030.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ar.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ar/arz030.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ar/arz030.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ar/arz030.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ar/arz030.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ar/arz030.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ar/arz030.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ar/arz030.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ar.txt +station = ('krue', 0.0088068892204726835) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ar/arz030.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ar/arz030.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ar/arz030.txt + +[arz031] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ar/arz031.txt +centroid = (0.61544149149674443, -1.6179446512082716) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ar/arz031.txt +description = Conway, AR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ar/arz031.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ar/arz031.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ar/arz031.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ar/arz031.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ar/arz031.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ar/arz031.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ar/arz031.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ar/arz031.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ar.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ar/arz031.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ar/arz031.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ar/arz031.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ar/arz031.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ar/arz031.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ar/arz031.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ar/arz031.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ar.txt +station = ('kcca', 0.0068950357202712661) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ar/arz031.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ar/arz031.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ar/arz031.txt + +[arz032] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ar/arz032.txt +centroid = (0.61343087219844694, -1.6114991502806564) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ar/arz032.txt +description = Faulkner, AR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ar/arz032.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ar/arz032.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ar/arz032.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ar/arz032.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ar/arz032.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ar/arz032.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ar/arz032.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ar/arz032.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ar.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ar/arz032.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ar/arz032.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ar/arz032.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ar/arz032.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ar/arz032.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ar/arz032.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ar/arz032.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ar.txt +station = ('klrf', 0.0047889181327133851) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ar/arz032.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ar/arz032.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ar/arz032.txt + +[arz033] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ar/arz033.txt +centroid = (0.61533851707087683, -1.6012645395469616) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ar/arz033.txt +description = White, AR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ar/arz033.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ar/arz033.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ar/arz033.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ar/arz033.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ar/arz033.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ar/arz033.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ar/arz033.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ar/arz033.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ar.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ar/arz033.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ar/arz033.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ar/arz033.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ar/arz033.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ar/arz033.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ar/arz033.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ar/arz033.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ar.txt +station = ('ksrc', 0.00078352770408707771) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ar/arz033.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ar/arz033.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ar/arz033.txt + +[arz034] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ar/arz034.txt +centroid = (0.61411678659448088, -1.5924925147264382) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ar/arz034.txt +description = Woodruff, AR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ar/arz034.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ar/arz034.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ar/arz034.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ar/arz034.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ar/arz034.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ar/arz034.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ar/arz034.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ar/arz034.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ar.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ar/arz034.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ar/arz034.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ar/arz034.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ar/arz034.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ar/arz034.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ar/arz034.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ar/arz034.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ar.txt +station = ('ksrc', 0.0070613741695043364) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ar/arz034.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ar/arz034.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ar/arz034.txt + +[arz035] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ar/arz035.txt +centroid = (0.61602792212541457, -1.5842580513155289) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ar/arz035.txt +description = Cross, AR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ar/arz035.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ar/arz035.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ar/arz035.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ar/arz035.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ar/arz035.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ar/arz035.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ar/arz035.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ar/arz035.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ar.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ar/arz035.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ar/arz035.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ar/arz035.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ar/arz035.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ar/arz035.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ar/arz035.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ar/arz035.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ar.txt +station = ('km19', 0.0082872796557406005) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ar/arz035.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ar/arz035.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ar/arz035.txt + +[arz036] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ar/arz036.txt +centroid = (0.61449377771291158, -1.576187648854307) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ar/arz036.txt +description = Crittenden, AR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ar/arz036.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ar/arz036.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ar/arz036.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ar/arz036.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ar/arz036.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ar/arz036.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ar/arz036.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ar/arz036.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ar.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ar/arz036.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ar/arz036.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ar/arz036.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ar/arz036.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ar/arz036.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ar/arz036.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ar/arz036.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ar.txt +station = ('kawm', 0.0016899864772721817) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ar/arz036.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ar/arz036.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ar/arz036.txt + +[arz037] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ar/arz037.txt +centroid = (0.60843573987923916, -1.6417142902911821) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ar/arz037.txt +description = Scott, AR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ar/arz037.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ar/arz037.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ar/arz037.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ar/arz037.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ar/arz037.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ar/arz037.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ar/arz037.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ar/arz037.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ar.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ar/arz037.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ar/arz037.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ar/arz037.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ar/arz037.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ar/arz037.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ar/arz037.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ar/arz037.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ar.txt +station = ('kmez', 0.00585792151268645) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ar/arz037.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ar/arz037.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ar/arz037.txt + +[arz038] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ar/arz038.txt +centroid = (0.61091061675856717, -1.6303347435681792) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ar/arz038.txt +description = Yell, AR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ar/arz038.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ar/arz038.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ar/arz038.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ar/arz038.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ar/arz038.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ar/arz038.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ar/arz038.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ar/arz038.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ar.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ar/arz038.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ar/arz038.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ar/arz038.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ar/arz038.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ar/arz038.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ar/arz038.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ar/arz038.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ar.txt +station = ('krue', 0.0061960810051148348) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ar/arz038.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ar/arz038.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ar/arz038.txt + +[arz039] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ar/arz039.txt +centroid = (0.60994719501146633, -1.6219606538171103) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ar/arz039.txt +description = Perry, AR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ar/arz039.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ar/arz039.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ar/arz039.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ar/arz039.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ar/arz039.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ar/arz039.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ar/arz039.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ar/arz039.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ar.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ar/arz039.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ar/arz039.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ar/arz039.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ar/arz039.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ar/arz039.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ar/arz039.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ar/arz039.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ar.txt +station = ('krue', 0.0058036368633963562) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ar/arz039.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ar/arz039.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ar/arz039.txt + +[arz040] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ar/arz040.txt +centroid = (0.6018907551842605, -1.6445905928984688) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ar/arz040.txt +description = Polk, AR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ar/arz040.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ar/arz040.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ar/arz040.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ar/arz040.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ar/arz040.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ar/arz040.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ar/arz040.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ar/arz040.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ar.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ar/arz040.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ar/arz040.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ar/arz040.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ar/arz040.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ar/arz040.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ar/arz040.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ar/arz040.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ar.txt +station = ('kmez', 0.0011014327527372196) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ar/arz040.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ar/arz040.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ar/arz040.txt + +[arz041] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ar/arz041.txt +centroid = (0.60281577968781752, -1.634666650771629) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ar/arz041.txt +description = Montgomery, AR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ar/arz041.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ar/arz041.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ar/arz041.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ar/arz041.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ar/arz041.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ar/arz041.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ar/arz041.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ar/arz041.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ar.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ar/arz041.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ar/arz041.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ar/arz041.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ar/arz041.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ar/arz041.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ar/arz041.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ar/arz041.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ar.txt +station = ('kmwt', 0.0011122873922965683) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ar/arz041.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ar/arz041.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ar/arz041.txt + +[arz042] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ar/arz042.txt +centroid = (0.6034772594743234, -1.6257811795497261) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ar/arz042.txt +description = Garland, AR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ar/arz042.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ar/arz042.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ar/arz042.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ar/arz042.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ar/arz042.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ar/arz042.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ar/arz042.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ar/arz042.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ar.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ar/arz042.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ar/arz042.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ar/arz042.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ar/arz042.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ar/arz042.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ar/arz042.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ar/arz042.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ar.txt +station = ('khot', 0.0017834264877037557) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ar/arz042.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ar/arz042.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ar/arz042.txt + +[arz043] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ar/arz043.txt +centroid = (0.60469724462146734, -1.6175118095537766) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ar/arz043.txt +description = Saline, AR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ar/arz043.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ar/arz043.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ar/arz043.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ar/arz043.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ar/arz043.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ar/arz043.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ar/arz043.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ar/arz043.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ar.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ar/arz043.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ar/arz043.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ar/arz043.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ar/arz043.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ar/arz043.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ar/arz043.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ar/arz043.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ar.txt +station = ('khot', 0.0067194367269585546) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ar/arz043.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ar/arz043.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ar/arz043.txt + +[arz044] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ar/arz044.txt +centroid = (0.60684923558917636, -1.6111448484425015) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ar/arz044.txt +description = Pulaski, AR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ar/arz044.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ar/arz044.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ar/arz044.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ar/arz044.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ar/arz044.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ar/arz044.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ar/arz044.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ar/arz044.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ar.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ar/arz044.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ar/arz044.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ar/arz044.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ar/arz044.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ar/arz044.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ar/arz044.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ar/arz044.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ar.txt +station = ('klit', 0.0012936155363428743) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ar/arz044.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ar/arz044.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ar/arz044.txt + +[arz045] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ar/arz045.txt +centroid = (0.60657521889661326, -1.6037603603773134) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ar/arz045.txt +description = Lonoke, AR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ar/arz045.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ar/arz045.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ar/arz045.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ar/arz045.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ar/arz045.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ar/arz045.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ar/arz045.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ar/arz045.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ar.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ar/arz045.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ar/arz045.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ar/arz045.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ar/arz045.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ar/arz045.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ar/arz045.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ar/arz045.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ar.txt +station = ('klrf', 0.0046960198261984725) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ar/arz045.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ar/arz045.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ar/arz045.txt + +[arz046] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ar/arz046.txt +centroid = (0.60789294248186909, -1.5978977994198647) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ar/arz046.txt +description = Prairie, AR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ar/arz046.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ar/arz046.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ar/arz046.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ar/arz046.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ar/arz046.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ar/arz046.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ar/arz046.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ar/arz046.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ar.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ar/arz046.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ar/arz046.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ar/arz046.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ar/arz046.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ar/arz046.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ar/arz046.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ar/arz046.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ar.txt +station = ('ksgt', 0.0040139541872103645) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ar/arz046.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ar/arz046.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ar/arz046.txt + +[arz047] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ar/arz047.txt +centroid = (0.60524178734808953, -1.5918066003304043) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ar/arz047.txt +description = Monroe, AR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ar/arz047.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ar/arz047.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ar/arz047.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ar/arz047.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ar/arz047.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ar/arz047.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ar/arz047.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ar/arz047.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ar.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ar/arz047.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ar/arz047.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ar/arz047.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ar/arz047.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ar/arz047.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ar/arz047.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ar/arz047.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ar.txt +station = ('ksgt', 0.0053846756029542926) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ar/arz047.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ar/arz047.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ar/arz047.txt + +[arz048] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ar/arz048.txt +centroid = (0.61124921063345405, -1.5838478989413101) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ar/arz048.txt +description = St. Francis, AR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ar/arz048.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ar/arz048.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ar/arz048.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ar/arz048.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ar/arz048.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ar/arz048.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ar/arz048.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ar/arz048.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ar.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ar/arz048.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ar/arz048.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ar/arz048.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ar/arz048.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ar/arz048.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ar/arz048.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ar/arz048.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ar.txt +station = ('kuta', 0.0082771030247259288) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ar/arz048.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ar/arz048.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ar/arz048.txt + +[arz049] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ar/arz049.txt +centroid = (0.60703598581913976, -1.5844448015454922) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ar/arz049.txt +description = Lee, AR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ar/arz049.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ar/arz049.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ar/arz049.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ar/arz049.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ar/arz049.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ar/arz049.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ar/arz049.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ar/arz049.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ar.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ar/arz049.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ar/arz049.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ar/arz049.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ar/arz049.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ar/arz049.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ar/arz049.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ar/arz049.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ar.txt +station = ('kuta', 0.0064863958530585854) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ar/arz049.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ar/arz049.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ar/arz049.txt + +[arz050] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ar/arz050.txt +centroid = (0.59336482178826822, -1.6448192310304801) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ar/arz050.txt +description = Sevier, AR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ar/arz050.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ar/arz050.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ar/arz050.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ar/arz050.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ar/arz050.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ar/arz050.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ar/arz050.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ar/arz050.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ar.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ar/arz050.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ar/arz050.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ar/arz050.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ar/arz050.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ar/arz050.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ar/arz050.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ar/arz050.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ar.txt +station = ('kdeq', 0.002474410384909218) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ar/arz050.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ar/arz050.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ar/arz050.txt + +[arz051] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ar/arz051.txt +centroid = (0.59496005272459107, -1.6404943051440379) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ar/arz051.txt +description = Howard, AR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ar/arz051.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ar/arz051.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ar/arz051.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ar/arz051.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ar/arz051.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ar/arz051.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ar/arz051.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ar/arz051.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ar.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ar/arz051.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ar/arz051.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ar/arz051.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ar/arz051.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ar/arz051.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ar/arz051.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ar/arz051.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ar.txt +station = ('kdeq', 0.0059171380852279338) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ar/arz051.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ar/arz051.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ar/arz051.txt + +[arz052] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ar/arz052.txt +centroid = (0.59626730433433484, -1.6346125455648173) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ar/arz052.txt +description = Pike, AR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ar/arz052.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ar/arz052.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ar/arz052.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ar/arz052.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ar/arz052.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ar/arz052.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ar/arz052.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ar/arz052.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ar.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ar/arz052.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ar/arz052.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ar/arz052.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ar/arz052.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ar/arz052.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ar/arz052.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ar/arz052.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ar.txt +station = ('kmwt', 0.0068256289612464256) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ar/arz052.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ar/arz052.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ar/arz052.txt + +[arz053] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ar/arz053.txt +centroid = (0.59430206359658921, -1.6262349651552446) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ar/arz053.txt +description = Clark, AR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ar/arz053.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ar/arz053.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ar/arz053.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ar/arz053.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ar/arz053.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ar/arz053.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ar/arz053.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ar/arz053.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ar.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ar/arz053.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ar/arz053.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ar/arz053.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ar/arz053.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ar/arz053.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ar/arz053.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ar/arz053.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ar.txt +station = ('km89', 0.0018069949643405594) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ar/arz053.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ar/arz053.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ar/arz053.txt + +[arz054] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ar/arz054.txt +centroid = (0.5989568567116581, -1.6222137265586496) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ar/arz054.txt +description = Hot Spring, AR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ar/arz054.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ar/arz054.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ar/arz054.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ar/arz054.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ar/arz054.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ar/arz054.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ar/arz054.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ar/arz054.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ar.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ar/arz054.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ar/arz054.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ar/arz054.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ar/arz054.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ar/arz054.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ar/arz054.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ar/arz054.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ar.txt +station = ('khot', 0.0036435317105939732) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ar/arz054.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ar/arz054.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ar/arz054.txt + +[arz055] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ar/arz055.txt +centroid = (0.59847340050885556, -1.6130961265462311) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ar/arz055.txt +description = Grant, AR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ar/arz055.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ar/arz055.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ar/arz055.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ar/arz055.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ar/arz055.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ar/arz055.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ar/arz055.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ar/arz055.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ar.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ar/arz055.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ar/arz055.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ar/arz055.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ar/arz055.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ar/arz055.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ar/arz055.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ar/arz055.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ar.txt +station = ('klit', 0.0082072179849158652) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ar/arz055.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ar/arz055.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ar/arz055.txt + +[arz056] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ar/arz056.txt +centroid = (0.59810339070743279, -1.604507361297167) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ar/arz056.txt +description = Jefferson, AR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ar/arz056.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ar/arz056.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ar/arz056.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ar/arz056.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ar/arz056.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ar/arz056.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ar/arz056.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ar/arz056.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ar.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ar/arz056.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ar/arz056.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ar/arz056.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ar/arz056.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ar/arz056.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ar/arz056.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ar/arz056.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ar.txt +station = ('kpbf', 0.0014919093329796281) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ar/arz056.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ar/arz056.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ar/arz056.txt + +[arz057] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ar/arz057.txt +centroid = (0.59848736314287154, -1.5947928586805666) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ar/arz057.txt +description = Arkansas, AR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ar/arz057.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ar/arz057.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ar/arz057.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ar/arz057.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ar/arz057.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ar/arz057.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ar/arz057.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ar/arz057.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ar.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ar/arz057.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ar/arz057.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ar/arz057.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ar/arz057.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ar/arz057.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ar/arz057.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ar/arz057.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ar.txt +station = ('ksgt', 0.0060614410721938402) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ar/arz057.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ar/arz057.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ar/arz057.txt + +[arz058] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ar/arz058.txt +centroid = (0.60088719086436371, -1.5855967188518085) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ar/arz058.txt +description = Phillips, AR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ar/arz058.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ar/arz058.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ar/arz058.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ar/arz058.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ar/arz058.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ar/arz058.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ar/arz058.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ar/arz058.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ar.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ar/arz058.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ar/arz058.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ar/arz058.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ar/arz058.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ar/arz058.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ar/arz058.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ar/arz058.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ar.txt +station = ('kckm', 0.0053597832958251863) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ar/arz058.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ar/arz058.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ar/arz058.txt + +[arz059] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ar/arz059.txt +centroid = (0.58818468456834905, -1.6446988033120926) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ar/arz059.txt +description = Little River, AR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ar/arz059.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ar/arz059.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ar/arz059.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ar/arz059.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ar/arz059.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ar/arz059.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ar/arz059.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ar/arz059.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ar.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ar/arz059.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ar/arz059.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ar/arz059.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ar/arz059.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ar/arz059.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ar/arz059.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ar/arz059.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ar.txt +station = ('ktxk', 0.0056949901027047211) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ar/arz059.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ar/arz059.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ar/arz059.txt + +[arz060] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ar/arz060.txt +centroid = (0.58879380447729501, -1.6348219850750567) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ar/arz060.txt +description = Hempstead, AR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ar/arz060.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ar/arz060.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ar/arz060.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ar/arz060.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ar/arz060.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ar/arz060.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ar/arz060.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ar/arz060.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ar.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ar/arz060.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ar/arz060.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ar/arz060.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ar/arz060.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ar/arz060.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ar/arz060.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ar/arz060.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ar.txt +station = ('ktxk', 0.0067657887657878064) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ar/arz060.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ar/arz060.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ar/arz060.txt + +[arz061] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ar/arz061.txt +centroid = (0.58754938472062301, -1.6285178558168529) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ar/arz061.txt +description = Nevada, AR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ar/arz061.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ar/arz061.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ar/arz061.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ar/arz061.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ar/arz061.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ar/arz061.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ar/arz061.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ar/arz061.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ar.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ar/arz061.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ar/arz061.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ar/arz061.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ar/arz061.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ar/arz061.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ar/arz061.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ar/arz061.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ar.txt +station = ('km89', 0.0083671372524796173) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ar/arz061.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ar/arz061.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ar/arz061.txt + +[arz062] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ar/arz062.txt +centroid = (0.59288485624396969, -1.617126091789086) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ar/arz062.txt +description = Dallas, AR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ar/arz062.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ar/arz062.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ar/arz062.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ar/arz062.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ar/arz062.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ar/arz062.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ar/arz062.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ar/arz062.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ar.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ar/arz062.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ar/arz062.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ar/arz062.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ar/arz062.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ar/arz062.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ar/arz062.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ar/arz062.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ar.txt +station = ('km89', 0.0063705630368459092) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ar/arz062.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ar/arz062.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ar/arz062.txt + +[arz063] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ar/arz063.txt +centroid = (0.59163869115804579, -1.6089352616094765) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ar/arz063.txt +description = Cleveland, AR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ar/arz063.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ar/arz063.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ar/arz063.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ar/arz063.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ar/arz063.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ar/arz063.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ar/arz063.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ar/arz063.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ar.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ar/arz063.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ar/arz063.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ar/arz063.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ar/arz063.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ar/arz063.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ar/arz063.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ar/arz063.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ar.txt +station = ('kpbf', 0.0061643768991048132) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ar/arz063.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ar/arz063.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ar/arz063.txt + +[arz064] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ar/arz064.txt +centroid = (0.59267018074597455, -1.6010481187197143) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ar/arz064.txt +description = Lincoln, AR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ar/arz064.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ar/arz064.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ar/arz064.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ar/arz064.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ar/arz064.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ar/arz064.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ar/arz064.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ar/arz064.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ar.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ar/arz064.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ar/arz064.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ar/arz064.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ar/arz064.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ar/arz064.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ar/arz064.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ar/arz064.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ar.txt +station = ('kpbf', 0.0048886756406782694) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ar/arz064.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ar/arz064.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ar/arz064.txt + +[arz065] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ar/arz065.txt +centroid = (0.59050248181499754, -1.5926827556149055) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ar/arz065.txt +description = Desha, AR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ar/arz065.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ar/arz065.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ar/arz065.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ar/arz065.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ar/arz065.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ar/arz065.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ar/arz065.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ar/arz065.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ar.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ar/arz065.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ar/arz065.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ar/arz065.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ar/arz065.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ar/arz065.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ar/arz065.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ar/arz065.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ar.txt +station = ('kglh', 0.0072642714130960384) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ar/arz065.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ar/arz065.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ar/arz065.txt + +[arz066] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ar/arz066.txt +centroid = (0.58631369161021107, -1.6210967158373732) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ar/arz066.txt +description = Ouachita, AR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ar/arz066.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ar/arz066.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ar/arz066.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ar/arz066.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ar/arz066.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ar/arz066.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ar/arz066.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ar/arz066.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ar.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ar/arz066.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ar/arz066.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ar/arz066.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ar/arz066.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ar/arz066.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ar/arz066.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ar/arz066.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ar.txt +station = ('kcdh', 0.0017254188767772472) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ar/arz066.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ar/arz066.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ar/arz066.txt + +[arz067] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ar/arz067.txt +centroid = (0.58569759038425706, -1.6144836633015667) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ar/arz067.txt +description = Calhoun, AR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ar/arz067.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ar/arz067.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ar/arz067.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ar/arz067.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ar/arz067.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ar/arz067.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ar/arz067.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ar/arz067.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ar.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ar/arz067.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ar/arz067.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ar/arz067.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ar/arz067.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ar/arz067.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ar/arz067.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ar/arz067.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ar.txt +station = ('kcdh', 0.0039665248130845146) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ar/arz067.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ar/arz067.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ar/arz067.txt + +[arz068] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ar/arz068.txt +centroid = (0.58409014214317034, -1.608533835881518) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ar/arz068.txt +description = Bradley, AR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ar/arz068.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ar/arz068.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ar/arz068.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ar/arz068.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ar/arz068.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ar/arz068.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ar/arz068.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ar/arz068.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ar.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ar/arz068.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ar/arz068.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ar/arz068.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ar/arz068.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ar/arz068.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ar/arz068.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ar/arz068.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ar.txt +station = ('kllq', 0.0066699633294406008) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ar/arz068.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ar/arz068.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ar/arz068.txt + +[arz069] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ar/arz069.txt +centroid = (0.5862473690986354, -1.6008159899291989) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ar/arz069.txt +description = Drew, AR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ar/arz069.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ar/arz069.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ar/arz069.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ar/arz069.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ar/arz069.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ar/arz069.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ar/arz069.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ar/arz069.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ar.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ar/arz069.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ar/arz069.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ar/arz069.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ar/arz069.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ar/arz069.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ar/arz069.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ar/arz069.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ar.txt +station = ('kllq', 0.00088058350859895852) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ar/arz069.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ar/arz069.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ar/arz069.txt + +[arz070] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ar/arz070.txt +centroid = (0.58141106174135893, -1.638721050624012) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ar/arz070.txt +description = Miller, AR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ar/arz070.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ar/arz070.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ar/arz070.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ar/arz070.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ar/arz070.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ar/arz070.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ar/arz070.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ar/arz070.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ar.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ar/arz070.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ar/arz070.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ar/arz070.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ar/arz070.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ar/arz070.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ar/arz070.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ar/arz070.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ar.txt +station = ('ktxk', 0.0027472029632652712) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ar/arz070.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ar/arz070.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ar/arz070.txt + +[arz071] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ar/arz071.txt +centroid = (0.58016140599693111, -1.6337555889020881) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ar/arz071.txt +description = Lafayette, AR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ar/arz071.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ar/arz071.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ar/arz071.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ar/arz071.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ar/arz071.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ar/arz071.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ar/arz071.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ar/arz071.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ar.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ar/arz071.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ar/arz071.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ar/arz071.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ar/arz071.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ar/arz071.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ar/arz071.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ar/arz071.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ar.txt +station = ('ktxk', 0.0065870982574478985) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ar/arz071.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ar/arz071.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ar/arz071.txt + +[arz072] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ar/arz072.txt +centroid = (0.5796988937451526, -1.6271233377445096) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ar/arz072.txt +description = Columbia, AR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ar/arz072.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ar/arz072.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ar/arz072.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ar/arz072.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ar/arz072.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ar/arz072.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ar/arz072.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ar/arz072.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ar.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ar/arz072.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ar/arz072.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ar/arz072.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ar/arz072.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ar/arz072.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ar/arz072.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ar/arz072.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ar.txt +station = ('keld', 0.0059960869558984779) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ar/arz072.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ar/arz072.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ar/arz072.txt + +[arz073] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ar/arz073.txt +centroid = (0.57894840216679511, -1.6161277634569453) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ar/arz073.txt +description = Union, AR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ar/arz073.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ar/arz073.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ar/arz073.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ar/arz073.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ar/arz073.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ar/arz073.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ar/arz073.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ar/arz073.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ar.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ar/arz073.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ar/arz073.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ar/arz073.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ar/arz073.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ar/arz073.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ar/arz073.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ar/arz073.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ar.txt +station = ('keld', 0.0033003045806761144) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ar/arz073.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ar/arz073.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ar/arz073.txt + +[arz074] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ar/arz074.txt +centroid = (0.57929572268794194, -1.6016520026409042) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ar/arz074.txt +description = Ashley, AR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ar/arz074.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ar/arz074.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ar/arz074.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ar/arz074.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ar/arz074.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ar/arz074.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ar/arz074.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ar/arz074.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ar.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ar/arz074.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ar/arz074.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ar/arz074.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ar/arz074.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ar/arz074.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ar/arz074.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ar/arz074.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ar.txt +station = ('kbqp', 0.0077027580516102999) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ar/arz074.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ar/arz074.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ar/arz074.txt + +[arz075] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ar/arz075.txt +centroid = (0.58062217291945761, -1.5933808873157032) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ar/arz075.txt +description = Chicot, AR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ar/arz075.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ar/arz075.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ar/arz075.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ar/arz075.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ar/arz075.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ar/arz075.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ar/arz075.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ar/arz075.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ar.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ar/arz075.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ar/arz075.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ar/arz075.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ar/arz075.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ar/arz075.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ar/arz075.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ar/arz075.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ar.txt +station = ('kglh', 0.0058934000945683029) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ar/arz075.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ar/arz075.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ar/arz075.txt + +[asz001] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/as/asz001.txt +centroid = (-0.24967807614404883, -2.9795737391271597) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/as/asz001.txt +description = Tutuila and Aunu'u (Aunuu), AS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/as/asz001.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/as/asz001.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/as/asz001.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/as/asz001.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/as/asz001.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/as/asz001.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/as/asz001.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/as/asz001.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/as.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/as/asz001.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/as/asz001.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/as/asz001.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/as/asz001.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/as/asz001.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/as/asz001.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/as/asz001.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/as.txt +station = ('nstu', 0.00048581601339893406) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/as/asz001.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/as/asz001.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/as/asz001.txt + +[asz002] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/as/asz002.txt +centroid = (-0.24830799268123327, -2.9584255845807443) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/as/asz002.txt +description = Manu'a, AS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/as/asz002.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/as/asz002.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/as/asz002.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/as/asz002.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/as/asz002.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/as/asz002.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/as/asz002.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/as/asz002.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/as.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/as/asz002.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/as/asz002.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/as/asz002.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/as/asz002.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/as/asz002.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/as/asz002.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/as/asz002.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/as.txt +station = ('nstu', 0.020572915806310831) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/as/asz002.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/as/asz002.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/as/asz002.txt + +[asz003] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/as/asz003.txt +centroid = (-0.19295585283861422, -2.9858705030959194) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/as/asz003.txt +description = Swains Island County, AS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/as/asz003.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/as/asz003.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/as/asz003.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/as/asz003.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/as/asz003.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/as/asz003.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/as/asz003.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/as/asz003.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/as.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/as/asz003.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/as/asz003.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/as/asz003.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/as/asz003.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/as/asz003.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/as/asz003.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/as/asz003.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/as.txt +station = ('nsfa', 0.050688527430040035) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/as/asz003.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/as/asz003.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/as/asz003.txt + +[azz001] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/az/azz001.txt +centroid = (0.63865262521901711, -1.9780113118824576) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/az/azz001.txt +description = Northwest Plateau, AZ +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/az/azz001.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/az/azz001.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/az/azz001.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/az/azz001.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/az/azz001.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/az/azz001.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/az/azz001.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/az/azz001.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/az.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/az/azz001.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/az/azz001.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/az/azz001.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/az/azz001.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/az/azz001.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/az/azz001.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/az/azz001.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/az.txt +station = ('ksgu', 0.0093569596070801325) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/az/azz001.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/az/azz001.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/az/azz001.txt + +[azz002] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/az/azz002.txt +centroid = (0.60521386208005767, -1.9957700370214999) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/az/azz002.txt +description = Lake Havasu and Fort Mohave, AZ +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/az/azz002.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/az/azz002.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/az/azz002.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/az/azz002.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/az/azz002.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/az/azz002.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/az/azz002.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/az/azz002.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/az.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/az/azz002.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/az/azz002.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/az/azz002.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/az/azz002.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/az/azz002.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/az/azz002.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/az/azz002.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/az.txt +station = ('keed', 0.004149092841835786) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/az/azz002.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/az/azz002.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/az/azz002.txt + +[azz003] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/az/azz003.txt +centroid = (0.61407489869243292, -1.9870224468105042) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/az/azz003.txt +description = Northwest Deserts, AZ +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/az/azz003.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/az/azz003.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/az/azz003.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/az/azz003.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/az/azz003.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/az/azz003.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/az/azz003.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/az/azz003.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/az.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/az/azz003.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/az/azz003.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/az/azz003.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/az/azz003.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/az/azz003.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/az/azz003.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/az/azz003.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/az.txt +station = ('kigm', 0.0016767346015355946) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/az/azz003.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/az/azz003.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/az/azz003.txt + +[azz004] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/az/azz004.txt +centroid = (0.63968760546544978, -1.9582908366641738) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/az/azz004.txt +description = Kaibab Plateau, AZ +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/az/azz004.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/az/azz004.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/az/azz004.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/az/azz004.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/az/azz004.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/az/azz004.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/az/azz004.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/az/azz004.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/az.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/az/azz004.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/az/azz004.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/az/azz004.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/az/azz004.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/az/azz004.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/az/azz004.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/az/azz004.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/az.txt +station = ('kpga', 0.011602785402058358) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/az/azz004.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/az/azz004.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/az/azz004.txt + +[azz005] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/az/azz005.txt +centroid = (0.6418919563107186, -1.9489760144462798) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/az/azz005.txt +description = Marble and Glen Canyons, AZ +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/az/azz005.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/az/azz005.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/az/azz005.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/az/azz005.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/az/azz005.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/az/azz005.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/az/azz005.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/az/azz005.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/az.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/az/azz005.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/az/azz005.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/az/azz005.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/az/azz005.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/az/azz005.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/az/azz005.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/az/azz005.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/az.txt +station = ('kpga', 0.004081100899396466) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/az/azz005.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/az/azz005.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/az/azz005.txt + +[azz006] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/az/azz006.txt +centroid = (0.63152993654162815, -1.9603258905719989) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/az/azz006.txt +description = Grand Canyon Country, AZ +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/az/azz006.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/az/azz006.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/az/azz006.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/az/azz006.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/az/azz006.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/az/azz006.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/az/azz006.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/az/azz006.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/az.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/az/azz006.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/az/azz006.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/az/azz006.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/az/azz006.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/az/azz006.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/az/azz006.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/az/azz006.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/az.txt +station = ('kgcn', 0.0047248257050587477) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/az/azz006.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/az/azz006.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/az/azz006.txt + +[azz007] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/az/azz007.txt +centroid = (0.62367770023690572, -1.9644885008380055) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/az/azz007.txt +description = Coconino Plateau, AZ +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/az/azz007.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/az/azz007.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/az/azz007.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/az/azz007.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/az/azz007.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/az/azz007.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/az/azz007.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/az/azz007.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/az.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/az/azz007.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/az/azz007.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/az/azz007.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/az/azz007.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/az/azz007.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/az/azz007.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/az/azz007.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/az.txt +station = ('kgcn', 0.0068804816942394627) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/az/azz007.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/az/azz007.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/az/azz007.txt + +[azz008] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/az/azz008.txt +centroid = (0.60800464355399664, -1.96620765015122) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/az/azz008.txt +description = Yavapai County Mountains, AZ +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/az/azz008.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/az/azz008.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/az/azz008.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/az/azz008.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/az/azz008.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/az/azz008.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/az/azz008.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/az/azz008.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/az.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/az/azz008.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/az/azz008.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/az/azz008.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/az/azz008.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/az/azz008.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/az/azz008.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/az/azz008.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/az.txt +station = ('kprc', 0.004719370852866848) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/az/azz008.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/az/azz008.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/az/azz008.txt + +[azz009] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/az/azz009.txt +centroid = (0.63538013287152773, -1.9368110695598795) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/az/azz009.txt +description = Northeast Plateaus and Mesas Hwy 264 Northward, AZ +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/az/azz009.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/az/azz009.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/az/azz009.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/az/azz009.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/az/azz009.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/az/azz009.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/az/azz009.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/az/azz009.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/az.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/az/azz009.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/az/azz009.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/az/azz009.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/az/azz009.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/az/azz009.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/az/azz009.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/az/azz009.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/az.txt +station = ('kpga', 0.011406338938372475) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/az/azz009.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/az/azz009.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/az/azz009.txt + +[azz010] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/az/azz010.txt +centroid = (0.63775028999573591, -1.9147448718269151) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/az/azz010.txt +description = Chinle Valley, AZ +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/az/azz010.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/az/azz010.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/az/azz010.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/az/azz010.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/az/azz010.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/az/azz010.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/az/azz010.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/az/azz010.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/az.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/az/azz010.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/az/azz010.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/az/azz010.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/az/azz010.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/az/azz010.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/az/azz010.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/az/azz010.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/az.txt +station = ('krqe', 0.017972211650672126) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/az/azz010.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/az/azz010.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/az/azz010.txt + +[azz011] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/az/azz011.txt +centroid = (0.62603738538560205, -1.9064999364404938) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/az/azz011.txt +description = Chuska Mountains and Defiance Plateay, AZ +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/az/azz011.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/az/azz011.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/az/azz011.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/az/azz011.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/az/azz011.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/az/azz011.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/az/azz011.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/az/azz011.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/az.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/az/azz011.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/az/azz011.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/az/azz011.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/az/azz011.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/az/azz011.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/az/azz011.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/az/azz011.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/az.txt +station = ('krqe', 0.0045048015960597633) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/az/azz011.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/az/azz011.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/az/azz011.txt + +[azz012] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/az/azz012.txt +centroid = (0.6192218746565642, -1.9405897073904472) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/az/azz012.txt +description = Little Colorado River Valley in Coconino County, AZ +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/az/azz012.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/az/azz012.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/az/azz012.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/az/azz012.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/az/azz012.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/az/azz012.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/az/azz012.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/az/azz012.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/az.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/az/azz012.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/az/azz012.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/az/azz012.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/az/azz012.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/az/azz012.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/az/azz012.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/az/azz012.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/az.txt +station = ('kflg', 0.0091057286743153106) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/az/azz012.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/az/azz012.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/az/azz012.txt + +[azz013] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/az/azz013.txt +centroid = (0.60814252456490425, -1.9253215670940007) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/az/azz013.txt +description = Little Colorado River Valley in Navajo County, AZ +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/az/azz013.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/az/azz013.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/az/azz013.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/az/azz013.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/az/azz013.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/az/azz013.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/az/azz013.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/az/azz013.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/az.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/az/azz013.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/az/azz013.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/az/azz013.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/az/azz013.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/az/azz013.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/az/azz013.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/az/azz013.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/az.txt +station = ('kinw', 0.0066565042427468501) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/az/azz013.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/az/azz013.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/az/azz013.txt + +[azz014] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/az/azz014.txt +centroid = (0.6034790048035753, -1.9097357768736913) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/az/azz014.txt +description = Little Colorado River Valley in Apache County, AZ +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/az/azz014.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/az/azz014.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/az/azz014.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/az/azz014.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/az/azz014.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/az/azz014.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/az/azz014.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/az/azz014.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/az.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/az/azz014.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/az/azz014.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/az/azz014.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/az/azz014.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/az/azz014.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/az/azz014.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/az/azz014.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/az.txt +station = ('ksjn', 0.0011731671113242002) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/az/azz014.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/az/azz014.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/az/azz014.txt + +[azz015] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/az/azz015.txt +centroid = (0.6148725141605943, -1.9507353063322903) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/az/azz015.txt +description = Western Mogollon Rim, AZ +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/az/azz015.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/az/azz015.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/az/azz015.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/az/azz015.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/az/azz015.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/az/azz015.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/az/azz015.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/az/azz015.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/az.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/az/azz015.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/az/azz015.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/az/azz015.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/az/azz015.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/az/azz015.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/az/azz015.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/az/azz015.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/az.txt +station = ('kflg', 0.0022248183790543976) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/az/azz015.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/az/azz015.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/az/azz015.txt + +[azz016] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/az/azz016.txt +centroid = (0.60112281031338299, -1.9340377413784606) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/az/azz016.txt +description = Eastern Mogollon Rim, AZ +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/az/azz016.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/az/azz016.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/az/azz016.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/az/azz016.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/az/azz016.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/az/azz016.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/az/azz016.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/az/azz016.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/az.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/az/azz016.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/az/azz016.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/az/azz016.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/az/azz016.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/az/azz016.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/az/azz016.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/az/azz016.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/az.txt +station = ('kpan', 0.0081781222469389566) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/az/azz016.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/az/azz016.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/az/azz016.txt + +[azz017] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/az/azz017.txt +centroid = (0.59214134598262014, -1.9137238542144985) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/az/azz017.txt +description = White Mountains, AZ +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/az/azz017.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/az/azz017.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/az/azz017.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/az/azz017.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/az/azz017.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/az/azz017.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/az/azz017.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/az/azz017.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/az.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/az/azz017.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/az/azz017.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/az/azz017.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/az/azz017.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/az/azz017.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/az/azz017.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/az/azz017.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/az.txt +station = ('ksow', 0.0078407556284827238) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/az/azz017.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/az/azz017.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/az/azz017.txt + +[azz018] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/az/azz018.txt +centroid = (0.5941118227081218, -1.9359628395434101) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/az/azz018.txt +description = Northern Gila County, AZ +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/az/azz018.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/az/azz018.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/az/azz018.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/az/azz018.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/az/azz018.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/az/azz018.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/az/azz018.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/az/azz018.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/az.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/az/azz018.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/az/azz018.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/az/azz018.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/az/azz018.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/az/azz018.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/az/azz018.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/az/azz018.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/az.txt +station = ('kpan', 0.006933118958664262) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/az/azz018.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/az/azz018.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/az/azz018.txt + +[azz020] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/az/azz020.txt +centroid = (0.58665403081434997, -1.9978801400871611) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/az/azz020.txt +description = Lower Colorado River Valley AZ, AZ +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/az/azz020.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/az/azz020.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/az/azz020.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/az/azz020.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/az/azz020.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/az/azz020.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/az/azz020.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/az/azz020.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/az.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/az/azz020.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/az/azz020.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/az/azz020.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/az/azz020.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/az/azz020.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/az/azz020.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/az/azz020.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/az.txt +station = ('kblh', 0.0035844154075759583) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/az/azz020.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/az/azz020.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/az/azz020.txt + +[azz021] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/az/azz021.txt +centroid = (0.59012374536731471, -1.9864150722308103) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/az/azz021.txt +description = West Central Deserts, AZ +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/az/azz021.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/az/azz021.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/az/azz021.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/az/azz021.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/az/azz021.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/az/azz021.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/az/azz021.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/az/azz021.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/az.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/az/azz021.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/az/azz021.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/az/azz021.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/az/azz021.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/az/azz021.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/az/azz021.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/az/azz021.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/az.txt +station = ('kblh', 0.013550491130280784) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/az/azz021.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/az/azz021.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/az/azz021.txt + +[azz022] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/az/azz022.txt +centroid = (0.58812359804452929, -1.9698484069708802) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/az/azz022.txt +description = Northwest Maricopa County, AZ +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/az/azz022.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/az/azz022.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/az/azz022.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/az/azz022.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/az/azz022.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/az/azz022.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/az/azz022.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/az/azz022.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/az.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/az/azz022.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/az/azz022.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/az/azz022.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/az/azz022.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/az/azz022.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/az/azz022.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/az/azz022.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/az.txt +station = ('kbxk', 0.0056121427175386679) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/az/azz022.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/az/azz022.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/az/azz022.txt + +[azz023] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/az/azz023.txt +centroid = (0.5849872413786954, -1.9565175821441474) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/az/azz023.txt +description = Greater Phoenix Area, AZ +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/az/azz023.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/az/azz023.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/az/azz023.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/az/azz023.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/az/azz023.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/az/azz023.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/az/azz023.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/az/azz023.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/az.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/az/azz023.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/az/azz023.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/az/azz023.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/az/azz023.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/az/azz023.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/az/azz023.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/az/azz023.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/az.txt +station = ('kphx', 0.0016173962802027144) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/az/azz023.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/az/azz023.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/az/azz023.txt + +[azz024] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/az/azz024.txt +centroid = (0.5860100043203641, -1.9371374461300024) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/az/azz024.txt +description = Southern Gila/Tonto NF Foothills, AZ +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/az/azz024.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/az/azz024.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/az/azz024.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/az/azz024.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/az/azz024.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/az/azz024.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/az/azz024.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/az/azz024.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/az.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/az/azz024.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/az/azz024.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/az/azz024.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/az/azz024.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/az/azz024.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/az/azz024.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/az/azz024.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/az.txt +station = ('kiwa', 0.010625895775653742) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/az/azz024.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/az/azz024.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/az/azz024.txt + +[azz025] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/az/azz025.txt +centroid = (0.56980287688634479, -1.9989447909308775) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/az/azz025.txt +description = Yuma/Martinez Lake and Vicinity, AZ +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/az/azz025.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/az/azz025.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/az/azz025.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/az/azz025.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/az/azz025.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/az/azz025.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/az/azz025.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/az/azz025.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/az.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/az/azz025.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/az/azz025.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/az/azz025.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/az/azz025.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/az/azz025.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/az/azz025.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/az/azz025.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/az.txt +station = ('knyl', 0.0010136213381773613) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/az/azz025.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/az/azz025.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/az/azz025.txt + +[azz026] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/az/azz026.txt +centroid = (0.57278738990725508, -1.9871952344064518) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/az/azz026.txt +description = Southwest Deserts, AZ +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/az/azz026.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/az/azz026.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/az/azz026.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/az/azz026.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/az/azz026.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/az/azz026.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/az/azz026.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/az/azz026.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/az.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/az/azz026.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/az/azz026.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/az/azz026.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/az/azz026.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/az/azz026.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/az/azz026.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/az/azz026.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/az.txt +station = ('knyl', 0.011284142039180422) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/az/azz026.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/az/azz026.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/az/azz026.txt + +[azz027] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/az/azz027.txt +centroid = (0.57441578209936572, -1.9684259636305046) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/az/azz027.txt +description = Southwest Maricopa County, AZ +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/az/azz027.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/az/azz027.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/az/azz027.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/az/azz027.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/az/azz027.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/az/azz027.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/az/azz027.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/az/azz027.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/az.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/az/azz027.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/az/azz027.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/az/azz027.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/az/azz027.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/az/azz027.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/az/azz027.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/az/azz027.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/az.txt +station = ('kgbn', 0.0084735165699145656) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/az/azz027.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/az/azz027.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/az/azz027.txt + +[azz028] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/az/azz028.txt +centroid = (0.57699712406306536, -1.949585134355226) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/az/azz028.txt +description = Northwest and North Central Pinal County, AZ +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/az/azz028.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/az/azz028.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/az/azz028.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/az/azz028.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/az/azz028.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/az/azz028.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/az/azz028.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/az/azz028.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/az.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/az/azz028.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/az/azz028.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/az/azz028.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/az/azz028.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/az/azz028.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/az/azz028.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/az/azz028.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/az.txt +station = ('kcgz', 0.0021262240615387206) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/az/azz028.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/az/azz028.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/az/azz028.txt + +[azz036] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/az/azz036.txt +centroid = (0.62484707083574187, -1.9952499289044057) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/az/azz036.txt +description = Lake Mead National Recreation Area, AZ +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/az/azz036.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/az/azz036.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/az/azz036.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/az/azz036.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/az/azz036.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/az/azz036.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/az/azz036.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/az/azz036.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/az.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/az/azz036.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/az/azz036.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/az/azz036.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/az/azz036.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/az/azz036.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/az/azz036.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/az/azz036.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/az.txt +station = ('kbvu', 0.0080209039724774851) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/az/azz036.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/az/azz036.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/az/azz036.txt + +[azz037] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/az/azz037.txt +centroid = (0.6009203521201516, -1.9637153199793722) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/az/azz037.txt +description = Yavapai County Valleys and Basins, AZ +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/az/azz037.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/az/azz037.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/az/azz037.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/az/azz037.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/az/azz037.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/az/azz037.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/az/azz037.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/az/azz037.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/az.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/az/azz037.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/az/azz037.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/az/azz037.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/az/azz037.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/az/azz037.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/az/azz037.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/az/azz037.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/az.txt +station = ('kprc', 0.0040766301754208327) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/az/azz037.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/az/azz037.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/az/azz037.txt + +[azz038] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/az/azz038.txt +centroid = (0.60932411246850438, -1.9526673858142478) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/az/azz038.txt +description = Oak Creek and Sycamore Canyons, AZ +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/az/azz038.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/az/azz038.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/az/azz038.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/az/azz038.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/az/azz038.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/az/azz038.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/az/azz038.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/az/azz038.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/az.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/az/azz038.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/az/azz038.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/az/azz038.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/az/azz038.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/az/azz038.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/az/azz038.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/az/azz038.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/az.txt +station = ('ksez', 0.0017491139216797237) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/az/azz038.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/az/azz038.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/az/azz038.txt + +[azz039] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/az/azz039.txt +centroid = (0.63451444956253844, -1.9241033272761086) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/az/azz039.txt +description = Black Mesa Area, AZ +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/az/azz039.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/az/azz039.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/az/azz039.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/az/azz039.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/az/azz039.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/az/azz039.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/az/azz039.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/az/azz039.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/az.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/az/azz039.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/az/azz039.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/az/azz039.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/az/azz039.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/az/azz039.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/az/azz039.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/az/azz039.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/az.txt +station = ('krqe', 0.020670253542996297) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/az/azz039.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/az/azz039.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/az/azz039.txt + +[azz040] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/az/azz040.txt +centroid = (0.61939815291101563, -1.9230474030786522) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/az/azz040.txt +description = Northeast Plateaus and Mesas South of Hwy 264, AZ +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/az/azz040.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/az/azz040.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/az/azz040.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/az/azz040.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/az/azz040.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/az/azz040.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/az/azz040.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/az/azz040.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/az.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/az/azz040.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/az/azz040.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/az/azz040.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/az/azz040.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/az/azz040.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/az/azz040.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/az/azz040.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/az.txt +station = ('kinw', 0.011007702840017617) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/az/azz040.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/az/azz040.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/az/azz040.txt + +[azz501] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/az/azz501.txt +centroid = (0.56228748912725723, -1.9718136477086259) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/az/azz501.txt +description = Western Pima County, AZ +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/az/azz501.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/az/azz501.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/az/azz501.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/az/azz501.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/az/azz501.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/az/azz501.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/az/azz501.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/az/azz501.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/az.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/az/azz501.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/az/azz501.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/az/azz501.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/az/azz501.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/az/azz501.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/az/azz501.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/az/azz501.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/az.txt +station = ('kgbn', 0.0057448619122218566) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/az/azz501.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/az/azz501.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/az/azz501.txt + +[azz502] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/az/azz502.txt +centroid = (0.56100816278554533, -1.9558857729549253) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/az/azz502.txt +description = Tohono O'Odham Nation, AZ +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/az/azz502.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/az/azz502.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/az/azz502.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/az/azz502.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/az/azz502.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/az/azz502.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/az/azz502.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/az/azz502.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/az.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/az/azz502.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/az/azz502.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/az/azz502.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/az/azz502.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/az/azz502.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/az/azz502.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/az/azz502.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/az.txt +station = ('kgbn', 0.010445480765907653) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/az/azz502.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/az/azz502.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/az/azz502.txt + +[azz503] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/az/azz503.txt +centroid = (0.55188532678537094, -1.9401603563944565) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/az/azz503.txt +description = Upper Santa Cruz River Valley/Altar Valley, AZ +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/az/azz503.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/az/azz503.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/az/azz503.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/az/azz503.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/az/azz503.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/az/azz503.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/az/azz503.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/az/azz503.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/az.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/az/azz503.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/az/azz503.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/az/azz503.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/az/azz503.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/az/azz503.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/az/azz503.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/az/azz503.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/az.txt +station = ('kols', 0.005862433944555618) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/az/azz503.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/az/azz503.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/az/azz503.txt + +[azz504] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/az/azz504.txt +centroid = (0.56157888545094747, -1.9383015807410826) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/az/azz504.txt +description = Tucson metro area, AZ +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/az/azz504.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/az/azz504.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/az/azz504.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/az/azz504.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/az/azz504.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/az/azz504.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/az/azz504.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/az/azz504.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/az.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/az/azz504.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/az/azz504.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/az/azz504.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/az/azz504.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/az/azz504.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/az/azz504.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/az/azz504.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/az.txt +station = ('ktus', 0.0017417130921350012) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/az/azz504.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/az/azz504.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/az/azz504.txt + +[azz505] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/az/azz505.txt +centroid = (0.57151155422404709, -1.9432373718657225) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/az/azz505.txt +description = South Central Pinal County, AZ +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/az/azz505.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/az/azz505.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/az/azz505.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/az/azz505.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/az/azz505.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/az/azz505.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/az/azz505.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/az/azz505.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/az.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/az/azz505.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/az/azz505.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/az/azz505.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/az/azz505.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/az/azz505.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/az/azz505.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/az/azz505.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/az.txt +station = ('kcgz', 0.0072141579482121933) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/az/azz505.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/az/azz505.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/az/azz505.txt + +[azz506] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/az/azz506.txt +centroid = (0.57291305361339862, -1.9329835625102558) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/az/azz506.txt +description = Southeast Pinal County, AZ +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/az/azz506.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/az/azz506.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/az/azz506.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/az/azz506.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/az/azz506.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/az/azz506.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/az/azz506.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/az/azz506.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/az.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/az/azz506.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/az/azz506.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/az/azz506.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/az/azz506.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/az/azz506.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/az/azz506.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/az/azz506.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/az.txt +station = ('kdma', 0.011660687009945866) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/az/azz506.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/az/azz506.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/az/azz506.txt + +[azz507] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/az/azz507.txt +centroid = (0.55733773536860121, -1.9252255739851409) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/az/azz507.txt +description = Upper San Pedro River Valley, AZ +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/az/azz507.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/az/azz507.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/az/azz507.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/az/azz507.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/az/azz507.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/az/azz507.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/az/azz507.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/az/azz507.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/az.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/az/azz507.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/az/azz507.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/az/azz507.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/az/azz507.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/az/azz507.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/az/azz507.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/az/azz507.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/az.txt +station = ('kalk', 0.0060494370422692449) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/az/azz507.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/az/azz507.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/az/azz507.txt + +[azz508] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/az/azz508.txt +centroid = (0.55701659478623433, -1.9119244197556922) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/az/azz508.txt +description = Eastern Cochise County below 5000 feet, AZ +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/az/azz508.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/az/azz508.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/az/azz508.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/az/azz508.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/az/azz508.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/az/azz508.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/az/azz508.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/az/azz508.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/az.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/az/azz508.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/az/azz508.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/az/azz508.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/az/azz508.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/az/azz508.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/az/azz508.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/az/azz508.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/az.txt +station = ('kdug', 0.0078618921327979017) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/az/azz508.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/az/azz508.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/az/azz508.txt + +[azz509] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/az/azz509.txt +centroid = (0.57366529052100823, -1.9153993702964129) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/az/azz509.txt +description = Upper Gila River Valley, AZ +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/az/azz509.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/az/azz509.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/az/azz509.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/az/azz509.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/az/azz509.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/az/azz509.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/az/azz509.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/az/azz509.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/az.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/az/azz509.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/az/azz509.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/az/azz509.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/az/azz509.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/az/azz509.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/az/azz509.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/az/azz509.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/az.txt +station = ('ksad', 0.0016589397847658807) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/az/azz509.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/az/azz509.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/az/azz509.txt + +[azz510] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/az/azz510.txt +centroid = (0.58270784137559073, -1.9109278367528035) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/az/azz510.txt +description = White Mountains of Graham and Greenlee Counties, AZ +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/az/azz510.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/az/azz510.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/az/azz510.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/az/azz510.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/az/azz510.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/az/azz510.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/az/azz510.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/az/azz510.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/az.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/az/azz510.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/az/azz510.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/az/azz510.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/az/azz510.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/az/azz510.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/az/azz510.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/az/azz510.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/az.txt +station = ('ksad', 0.0096047477026974422) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/az/azz510.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/az/azz510.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/az/azz510.txt + +[azz511] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/az/azz511.txt +centroid = (0.56989363400744852, -1.9218745418213121) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/az/azz511.txt +description = Galiuro and Pinaleno Mountains, AZ +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/az/azz511.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/az/azz511.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/az/azz511.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/az/azz511.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/az/azz511.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/az/azz511.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/az/azz511.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/az/azz511.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/az.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/az/azz511.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/az/azz511.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/az/azz511.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/az/azz511.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/az/azz511.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/az/azz511.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/az/azz511.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/az.txt +station = ('ksad', 0.0078697098812771805) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/az/azz511.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/az/azz511.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/az/azz511.txt + +[azz512] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/az/azz512.txt +centroid = (0.55608982495342529, -1.908622256810919) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/az/azz512.txt +description = Chiricahua Mountains, AZ +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/az/azz512.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/az/azz512.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/az/azz512.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/az/azz512.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/az/azz512.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/az/azz512.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/az/azz512.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/az/azz512.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/az.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/az/azz512.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/az/azz512.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/az/azz512.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/az/azz512.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/az/azz512.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/az/azz512.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/az/azz512.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/az.txt +station = ('kdug', 0.00778781011636268) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/az/azz512.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/az/azz512.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/az/azz512.txt + +[azz513] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/az/azz513.txt +centroid = (0.55159909278804387, -1.9265520242166569) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/az/azz513.txt +description = Dragoon, Mule, Huachuca and Santa Rita Mountains, AZ +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/az/azz513.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/az/azz513.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/az/azz513.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/az/azz513.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/az/azz513.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/az/azz513.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/az/azz513.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/az/azz513.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/az.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/az/azz513.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/az/azz513.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/az/azz513.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/az/azz513.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/az/azz513.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/az/azz513.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/az/azz513.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/az.txt +station = ('kalk', 0.00055068694867831363) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/az/azz513.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/az/azz513.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/az/azz513.txt + +[azz514] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/az/azz514.txt +centroid = (0.56437664824189437, -1.93174437874134) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/az/azz514.txt +description = Catalina and Rincon Mountains, AZ +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/az/azz514.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/az/azz514.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/az/azz514.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/az/azz514.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/az/azz514.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/az/azz514.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/az/azz514.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/az/azz514.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/az.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/az/azz514.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/az/azz514.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/az/azz514.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/az/azz514.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/az/azz514.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/az/azz514.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/az/azz514.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/az.txt +station = ('kdma', 0.0042086675175570069) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/az/azz514.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/az/azz514.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/az/azz514.txt + +[azz515] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/az/azz515.txt +centroid = (0.55533933337506769, -1.9476670175072843) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/az/azz515.txt +description = Baboquivari Mountains, AZ +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/az/azz515.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/az/azz515.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/az/azz515.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/az/azz515.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/az/azz515.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/az/azz515.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/az/azz515.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/az/azz515.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/az.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/az/azz515.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/az/azz515.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/az/azz515.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/az/azz515.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/az/azz515.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/az/azz515.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/az/azz515.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/az.txt +station = ('kryn', 0.0084084157665980479) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/az/azz515.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/az/azz515.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/az/azz515.txt + +[caz001] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz001.txt +centroid = (0.71600910832590969, -2.1658768072378751) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz001.txt +description = Redwood Coast, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz001.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz001.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz001.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz001.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz001.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz001.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz001.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz001.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz001.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz001.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz001.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz001.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz001.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz001.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz001.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('kacv', 0.00071734809298621121) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz001.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz001.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz001.txt + +[caz002] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz002.txt +centroid = (0.68507314733431035, -2.1569127961996322) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz002.txt +description = Mendocino Coast, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz002.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz002.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz002.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz002.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz002.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz002.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz002.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz002.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz002.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz002.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz002.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz002.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz002.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz002.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz002.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('kuki', 0.0055655405449509072) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz002.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz002.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz002.txt + +[caz003] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz003.txt +centroid = (0.71174352363403559, -2.1601451459743259) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz003.txt +description = North Coast Interior, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz003.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz003.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz003.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz003.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz003.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz003.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz003.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz003.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz003.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz003.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz003.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz003.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz003.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz003.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz003.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('kacv', 0.0056473313479050036) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz003.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz003.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz003.txt + +[caz004] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz004.txt +centroid = (0.71050259453586762, -2.1486922954227392) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz004.txt +description = Upper Trinity River, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz004.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz004.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz004.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz004.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz004.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz004.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz004.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz004.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz004.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz004.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz004.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz004.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz004.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz004.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz004.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('ko54', 0.0025853300619982774) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz004.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz004.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz004.txt + +[caz006] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz006.txt +centroid = (0.65896302172447507, -2.137021278714653) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz006.txt +description = San Francisco, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz006.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz006.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz006.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz006.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz006.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz006.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz006.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz006.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz006.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz006.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz006.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz006.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz006.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz006.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz006.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('ksfo', 0.0026435014516300159) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz006.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz006.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz006.txt + +[caz013] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz013.txt +centroid = (0.71436151751202714, -2.1332234422623131) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz013.txt +description = Shasta Lake Area / Northern Shasta County, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz013.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz013.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz013.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz013.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz013.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz013.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz013.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz013.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz013.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz013.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz013.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz013.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz013.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz013.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz013.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('kmhs', 0.006857786083009792) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz013.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz013.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz013.txt + +[caz014] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz014.txt +centroid = (0.71457793833927441, -2.1203690923213752) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz014.txt +description = Burney Basin / Eastern Shasta County, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz014.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz014.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz014.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz014.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz014.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz014.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz014.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz014.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz014.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz014.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz014.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz014.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz014.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz014.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz014.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('kmhs', 0.012700747227248101) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz014.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz014.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz014.txt + +[caz015] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz015.txt +centroid = (0.70196793449361539, -2.1344486633972135) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz015.txt +description = Northern Sacramento Valley, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz015.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz015.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz015.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz015.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz015.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz015.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz015.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz015.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz015.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz015.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz015.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz015.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz015.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz015.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz015.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('krbl', 0.001357398573047773) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz015.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz015.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz015.txt + +[caz016] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz016.txt +centroid = (0.68724782758229508, -2.1280101437866064) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz016.txt +description = Central Sacramento Valley, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz016.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz016.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz016.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz016.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz016.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz016.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz016.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz016.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz016.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz016.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz016.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz016.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz016.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz016.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz016.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('kove', 0.0046946004029224872) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz016.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz016.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz016.txt + +[caz017] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz017.txt +centroid = (0.67416483950934569, -2.121665871955607) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz017.txt +description = Southern Sacramento Valley, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz017.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz017.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz017.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz017.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz017.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz017.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz017.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz017.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz017.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz017.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz017.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz017.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz017.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz017.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz017.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('ksmf', 0.0013760040290181428) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz017.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz017.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz017.txt + +[caz018] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz018.txt +centroid = (0.66572442724670111, -2.1251530398010914) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz018.txt +description = Carquinez Strait and Delta, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz018.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz018.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz018.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz018.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz018.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz018.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz018.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz018.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz018.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz018.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz018.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz018.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz018.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz018.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz018.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('ksuu', 0.0033571562524348777) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz018.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz018.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz018.txt + +[caz019] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz019.txt +centroid = (0.6590031642972709, -2.1125639799064562) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz019.txt +description = Northern San Joaquin Valley, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz019.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz019.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz019.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz019.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz019.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz019.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz019.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz019.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz019.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz019.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz019.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz019.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz019.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz019.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz019.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('kmod', 0.0027700380972431821) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz019.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz019.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz019.txt + +[caz030] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz030.txt +centroid = (0.59245201458947516, -2.0227074486967802) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz030.txt +description = Joshua Tree National Park, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz030.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz030.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz030.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz030.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz030.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz030.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz030.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz030.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz030.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz030.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz030.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz030.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz030.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz030.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz030.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('ktrm', 0.0067713890211022467) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz030.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz030.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz030.txt + +[caz031] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz031.txt +centroid = (0.58142327904612301, -2.001210228299966) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz031.txt +description = Lower Colorado River Valley CA, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz031.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz031.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz031.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz031.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz031.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz031.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz031.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz031.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz031.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz031.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz031.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz031.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz031.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz031.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz031.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('kblh', 0.0053600932652254837) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz031.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz031.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz031.txt + +[caz032] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz032.txt +centroid = (0.58849884383370799, -2.0112162009016497) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz032.txt +description = Riverside County/Eastern Deserts, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz032.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz032.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz032.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz032.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz032.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz032.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz032.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz032.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz032.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz032.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz032.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz032.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz032.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz032.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz032.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('kblh', 0.0077248269631900223) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz032.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz032.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz032.txt + +[caz033] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz033.txt +centroid = (0.57669518210247039, -2.0153334326071044) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz033.txt +description = Imperial County, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz033.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz033.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz033.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz033.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz033.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz033.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz033.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz033.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz033.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz033.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz033.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz033.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz033.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz033.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz033.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('kipl', 0.00396352591408459) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz033.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz033.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz033.txt + +[caz034] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz034.txt +centroid = (0.61657246485203676, -2.1073227561627177) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz034.txt +description = San Luis Obispo County Central Coast, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz034.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz034.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz034.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz034.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz034.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz034.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz034.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz034.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz034.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz034.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz034.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz034.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz034.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz034.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz034.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('ksbp', 0.0022388917264104841) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz034.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz034.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz034.txt + +[caz035] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz035.txt +centroid = (0.60600798688971513, -2.1018354409944471) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz035.txt +description = Santa Barbara County Central Coast, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz035.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz035.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz035.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz035.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz035.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz035.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz035.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz035.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz035.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz035.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz035.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz035.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz035.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz035.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz035.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('klpc', 0.0011216661757152879) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz035.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz035.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz035.txt + +[caz036] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz036.txt +centroid = (0.6053377804569493, -2.0958192910628228) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz036.txt +description = Santa Ynez Valley, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz036.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz036.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz036.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz036.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz036.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz036.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz036.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz036.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz036.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz036.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz036.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz036.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz036.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz036.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz036.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('kiza', 0.0013354789765493997) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz036.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz036.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz036.txt + +[caz037] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz037.txt +centroid = (0.61944876745932342, -2.1005316800432077) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz037.txt +description = San Luis Obispo County Interior Valleys, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz037.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz037.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz037.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz037.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz037.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz037.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz037.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz037.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz037.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz037.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz037.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz037.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz037.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz037.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz037.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('kprb', 0.0050307275327625195) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz037.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz037.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz037.txt + +[caz038] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz038.txt +centroid = (0.60985643789036259, -2.0898118677774584) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz038.txt +description = Cuyama Valley, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz038.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz038.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz038.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz038.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz038.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz038.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz038.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz038.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz038.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz038.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz038.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz038.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz038.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz038.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz038.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('kiza', 0.0075986449815543238) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz038.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz038.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz038.txt + +[caz039] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz039.txt +centroid = (0.60138460970118213, -2.092712604994273) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz039.txt +description = Santa Barbara County South Coast, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz039.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz039.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz039.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz039.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz039.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz039.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz039.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz039.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz039.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz039.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz039.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz039.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz039.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz039.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz039.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('ksba', 0.00087345373833755033) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz039.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz039.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz039.txt + +[caz040] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz040.txt +centroid = (0.59721850877667171, -2.0790606395851734) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz040.txt +description = Ventura County Coast, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz040.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz040.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz040.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz040.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz040.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz040.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz040.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz040.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz040.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz040.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz040.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz040.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz040.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz040.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz040.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('kcma', 0.00054995889599968137) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz040.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz040.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz040.txt + +[caz041] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz041.txt +centroid = (0.59215705394588813, -2.0647314864262998) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz041.txt +description = Los Angeles County Coast including Downtown Los Angeles, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz041.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz041.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz041.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz041.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz041.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz041.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz041.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz041.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz041.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz041.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz041.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz041.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz041.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz041.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz041.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('khhr', 0.00051702263259649234) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz041.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz041.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz041.txt + +[caz042] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz042.txt +centroid = (0.58822482714114499, -2.055821580594869) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz042.txt +description = Orange County Coastal Areas, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz042.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz042.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz042.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz042.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz042.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz042.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz042.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz042.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz042.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz042.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz042.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz042.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz042.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz042.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz042.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('ksna', 0.0011653937538663684) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz042.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz042.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz042.txt + +[caz043] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz043.txt +centroid = (0.57557991671044595, -2.0461664191728359) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz043.txt +description = San Diego County Coastal Areas, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz043.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz043.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz043.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz043.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz043.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz043.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz043.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz043.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz043.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz043.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz043.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz043.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz043.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz043.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz043.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('knkx', 0.0023258386397061624) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz043.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz043.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz043.txt + +[caz044] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz044.txt +centroid = (0.60029028826018171, -2.0790327143171412) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz044.txt +description = Ventura County Interior Valleys, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz044.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz044.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz044.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz044.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz044.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz044.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz044.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz044.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz044.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz044.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz044.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz044.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz044.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz044.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz044.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('kcma', 0.0031411072400491192) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz044.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz044.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz044.txt + +[caz045] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz045.txt +centroid = (0.59784159131963366, -2.0741475377408092) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz045.txt +description = Ventura County Coastal Valleys, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz045.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz045.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz045.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz045.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz045.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz045.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz045.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz045.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz045.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz045.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz045.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz045.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz045.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz045.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz045.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('kcma', 0.0035718476258887535) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz045.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz045.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz045.txt + +[caz046] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz046.txt +centroid = (0.59487627692049527, -2.0715277985335661) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz046.txt +description = Santa Monica Mountains Recreational Area, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz046.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz046.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz046.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz046.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz046.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz046.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz046.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz046.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz046.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz046.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz046.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz046.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz046.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz046.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz046.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('kvny', 0.0037766063753928683) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz046.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz046.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz046.txt + +[caz048] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz048.txt +centroid = (0.5907695171905526, -2.0462449589891758) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz048.txt +description = San Bernardino and Riverside County Valleys -The Inland Empire, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz048.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz048.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz048.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz048.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz048.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz048.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz048.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz048.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz048.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz048.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz048.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz048.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz048.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz048.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz048.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('kriv', 0.0009061170831309622) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz048.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz048.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz048.txt + +[caz050] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz050.txt +centroid = (0.57604068363297245, -2.0413440744495759) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz050.txt +description = San Diego County Valleys, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz050.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz050.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz050.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz050.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz050.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz050.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz050.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz050.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz050.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz050.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz050.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz050.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz050.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz050.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz050.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('krnm', 0.00081201020352194924) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz050.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz050.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz050.txt + +[caz051] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz051.txt +centroid = (0.61333487908958728, -2.0951770098980886) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz051.txt +description = San Luis Obispo County Mountains, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz051.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz051.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz051.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz051.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz051.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz051.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz051.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz051.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz051.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz051.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz051.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz051.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz051.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz051.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz051.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('ksmx', 0.0073569658792424939) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz051.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz051.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz051.txt + +[caz052] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz052.txt +centroid = (0.60644257387346168, -2.0912727083613776) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz052.txt +description = Santa Barbara County Mountains, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz052.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz052.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz052.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz052.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz052.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz052.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz052.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz052.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz052.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz052.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz052.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz052.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz052.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz052.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz052.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('kiza', 0.0043908972377459839) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz052.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz052.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz052.txt + +[caz053] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz053.txt +centroid = (0.60439355733162037, -2.0792997496926966) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz053.txt +description = Ventura County Mountains, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz053.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz053.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz053.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz053.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz053.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz053.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz053.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz053.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz053.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz053.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz053.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz053.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz053.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz053.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz053.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('ksdb', 0.006364272935023705) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz053.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz053.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz053.txt + +[caz054] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz054.txt +centroid = (0.60090638948613573, -2.0633806015852563) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz054.txt +description = Los Angeles County Mountains excluding the Santa Monica Range, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz054.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz054.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz054.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz054.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz054.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz054.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz054.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz054.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz054.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz054.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz054.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz054.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz054.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz054.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz054.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('kwhp', 0.0040386258356182097) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz054.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz054.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz054.txt + +[caz055] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz055.txt +centroid = (0.59743318427466707, -2.0437055049275239) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz055.txt +description = San Bernardino County Mountains, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz055.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz055.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz055.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz055.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz055.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz055.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz055.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz055.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz055.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz055.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz055.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz055.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz055.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz055.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz055.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('ksbd', 0.0030216376033300467) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz055.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz055.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz055.txt + +[caz056] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz056.txt +centroid = (0.5874778262212913, -2.0358113807207538) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz056.txt +description = Riverside County Mountains, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz056.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz056.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz056.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz056.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz056.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz056.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz056.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz056.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz056.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz056.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz056.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz056.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz056.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz056.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz056.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('kpsp', 0.0036719159523094379) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz056.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz056.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz056.txt + +[caz057] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz057.txt +centroid = (0.58687743295860528, -2.0499764729299397) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz057.txt +description = Santa Ana Mountains and Foothills, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz057.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz057.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz057.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz057.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz057.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz057.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz057.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz057.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz057.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz057.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz057.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz057.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz057.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz057.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz057.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('kajo', 0.0052309358568998158) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz057.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz057.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz057.txt + +[caz058] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz058.txt +centroid = (0.57720307291480077, -2.0338740652510401) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz058.txt +description = San Diego County Mountains, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz058.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz058.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz058.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz058.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz058.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz058.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz058.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz058.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz058.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz058.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz058.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz058.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz058.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz058.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz058.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('krnm', 0.0056603075465181752) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz058.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz058.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz058.txt + +[caz059] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz059.txt +centroid = (0.60504281981336228, -2.060673595915413) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz059.txt +description = Antelope Valley, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz059.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz059.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz059.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz059.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz059.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz059.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz059.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz059.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz059.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz059.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz059.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz059.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz059.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz059.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz059.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('kpmd', 0.00061820033525038795) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz059.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz059.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz059.txt + +[caz060] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz060.txt +centroid = (0.60288384752864532, -2.0422848069164008) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz060.txt +description = Apple and Lucerne Valleys, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz060.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz060.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz060.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz060.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz060.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz060.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz060.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz060.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz060.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz060.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz060.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz060.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz060.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz060.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz060.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('kl35', 0.005411303128934267) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz060.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz060.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz060.txt + +[caz061] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz061.txt +centroid = (0.58891597752493474, -2.0298598079714534) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz061.txt +description = Coachella Valley, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz061.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz061.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz061.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz061.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz061.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz061.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz061.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz061.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz061.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz061.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz061.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz061.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz061.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz061.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz061.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('ktrm', 0.0028966269188092932) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz061.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz061.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz061.txt + +[caz062] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz062.txt +centroid = (0.5768505164058978, -2.02900808729648) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz062.txt +description = San Diego County Deserts, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz062.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz062.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz062.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz062.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz062.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz062.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz062.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz062.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz062.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz062.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz062.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz062.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz062.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz062.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz062.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('kczz', 0.0080581742793201291) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz062.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz062.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz062.txt + +[caz063] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz063.txt +centroid = (0.69494647491284223, -2.1425051032244191) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz063.txt +description = Mountains Southwestern Shasta County to Northern Lake County, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz063.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz063.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz063.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz063.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz063.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz063.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz063.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz063.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz063.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz063.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz063.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz063.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz063.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz063.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz063.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('krbl', 0.0089194923457247503) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz063.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz063.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz063.txt + +[caz064] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz064.txt +centroid = (0.68061208576621279, -2.1408976549833323) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz064.txt +description = Clear Lake/Southern Lake County, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz064.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz064.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz064.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz064.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz064.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz064.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz064.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz064.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz064.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz064.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz064.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz064.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz064.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz064.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz064.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('ksts', 0.0089048844827770805) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz064.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz064.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz064.txt + +[caz066] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz066.txt +centroid = (0.70008123357220942, -2.1250535560337278) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz066.txt +description = Northeast Foothills/Sacramento Valley, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz066.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz066.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz066.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz066.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz066.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz066.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz066.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz066.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz066.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz066.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz066.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz066.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz066.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz066.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz066.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('kcic', 0.005581852858374879) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz066.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz066.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz066.txt + +[caz067] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz067.txt +centroid = (0.67403219448619411, -2.1078306469750481) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz067.txt +description = Motherlode, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz067.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz067.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz067.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz067.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz067.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz067.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz067.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz067.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz067.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz067.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz067.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz067.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz067.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz067.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz067.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('kpvf', 0.001779861341653284) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz067.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz067.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz067.txt + +[caz068] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz068.txt +centroid = (0.70157174475341266, -2.1179587926243708) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz068.txt +description = Western Plumas County/Lassen Park, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz068.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz068.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz068.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz068.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz068.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz068.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz068.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz068.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz068.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz068.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz068.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz068.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz068.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz068.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz068.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('kcic', 0.0096284576264682523) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz068.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz068.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz068.txt + +[caz069] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz069.txt +centroid = (0.67688929847170876, -2.1003693644227721) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz069.txt +description = West Slope Northern Sierra Nevada, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz069.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz069.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz069.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz069.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz069.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz069.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz069.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz069.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz069.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz069.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz069.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz069.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz069.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz069.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz069.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('ktvl', 0.0051856419789861148) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz069.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz069.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz069.txt + +[caz070] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz070.txt +centroid = (0.72625942702287249, -2.0958995762084145) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz070.txt +description = Surprise Valley California, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz070.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz070.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz070.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz070.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz070.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz070.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz070.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz070.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz070.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz070.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz070.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz070.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz070.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz070.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz070.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('kaat', 0.006663244513393108) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz070.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz070.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz070.txt + +[caz071] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz071.txt +centroid = (0.70626493511202537, -2.1039437987308562) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz071.txt +description = Lassen-Eastern Plumas-Eastern Sierra Counties, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz071.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz071.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz071.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz071.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz071.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz071.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz071.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz071.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz071.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz071.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz071.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz071.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz071.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz071.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz071.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('krts', 0.016557033436137285) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz071.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz071.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz071.txt + +[caz072] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz072.txt +centroid = (0.67977258239600336, -2.0938418330203135) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz072.txt +description = Greater Lake Tahoe Area, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz072.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz072.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz072.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz072.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz072.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz072.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz072.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz072.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz072.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz072.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz072.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz072.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz072.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz072.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz072.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('ktvl', 0.0011486787174832787) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz072.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz072.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz072.txt + +[caz073] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz073.txt +centroid = (0.66216046491412872, -2.0749643518307428) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz073.txt +description = Mono, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz073.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz073.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz073.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz073.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz073.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz073.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz073.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz073.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz073.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz073.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz073.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz073.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz073.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz073.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz073.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('kmmh', 0.0056737421136229425) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz073.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz073.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz073.txt + +[caz076] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz076.txt +centroid = (0.68999323049568229, -2.1521218674029079) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz076.txt +description = Mendocino Interior, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz076.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz076.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz076.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz076.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz076.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz076.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz076.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz076.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz076.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz076.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz076.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz076.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz076.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz076.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz076.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('kuki', 0.0071368168881609205) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz076.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz076.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz076.txt + +[caz080] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz080.txt +centroid = (0.72529251461726751, -2.149619065255548) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz080.txt +description = Western Siskiyou County, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz080.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz080.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz080.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz080.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz080.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz080.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz080.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz080.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz080.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz080.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz080.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz080.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz080.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz080.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz080.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('ksiy', 0.0098077414563449202) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz080.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz080.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz080.txt + +[caz081] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz081.txt +centroid = (0.72843410727085733, -2.1391296364510621) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz081.txt +description = Central Siskiyou County, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz081.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz081.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz081.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz081.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz081.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz081.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz081.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz081.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz081.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz081.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz081.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz081.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz081.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz081.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz081.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('ksiy', 0.001363597034616714) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz081.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz081.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz081.txt + +[caz082] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz082.txt +centroid = (0.72030436361506778, -2.1325235652322636) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz082.txt +description = South Central Siskiyou County, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz082.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz082.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz082.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz082.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz082.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz082.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz082.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz082.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz082.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz082.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz082.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz082.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz082.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz082.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz082.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('kmhs', 0.0019108411162825896) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz082.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz082.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz082.txt + +[caz083] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz083.txt +centroid = (0.72505340450974431, -2.127498762315772) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz083.txt +description = North Central and Southeast Siskiyou County, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz083.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz083.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz083.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz083.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz083.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz083.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz083.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz083.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz083.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz083.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz083.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz083.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz083.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz083.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz083.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('kmhs', 0.0067629730643131193) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz083.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz083.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz083.txt + +[caz084] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz084.txt +centroid = (0.7306628927256541, -2.1229678875775946) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz084.txt +description = Northeast Siskiyou and Northwest Modoc Counties, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz084.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz084.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz084.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz084.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz084.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz084.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz084.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz084.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz084.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz084.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz084.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz084.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz084.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz084.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz084.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('klmt', 0.0050988928754832422) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz084.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz084.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz084.txt + +[caz085] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz085.txt +centroid = (0.72537803575061532, -2.1076334247695723) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz085.txt +description = Modoc County, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz085.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz085.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz085.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz085.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz085.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz085.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz085.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz085.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz085.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz085.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz085.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz085.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz085.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz085.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz085.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('kaat', 0.0028506032184236621) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz085.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz085.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz085.txt + +[caz087] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz087.txt +centroid = (0.58262581090074705, -2.0670475383436964) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz087.txt +description = Catalina Island, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz087.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz087.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz087.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz087.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz087.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz087.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz087.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz087.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz087.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz087.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz087.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz087.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz087.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz087.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz087.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('kavx', 0.00039502283656503689) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz087.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz087.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz087.txt + +[caz088] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz088.txt +centroid = (0.60132526850661439, -2.0692257092501851) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz088.txt +description = Santa Clarita Valley, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz088.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz088.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz088.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz088.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz088.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz088.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz088.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz088.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz088.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz088.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz088.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz088.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz088.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz088.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz088.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('kwhp', 0.0042165288639341002) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz088.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz088.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz088.txt + +[caz089] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz089.txt +centroid = (0.63915877070209537, -2.1031584005674588) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz089.txt +description = West-Central San Joaquin Valley, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz089.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz089.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz089.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz089.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz089.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz089.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz089.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz089.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz089.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz089.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz089.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz089.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz089.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz089.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz089.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('kmae', 0.0083056051723804161) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz089.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz089.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz089.txt + +[caz090] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz090.txt +centroid = (0.64666194115641906, -2.0964319016302726) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz090.txt +description = East-Central San Joaquin Valley, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz090.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz090.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz090.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz090.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz090.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz090.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz090.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz090.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz090.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz090.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz090.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz090.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz090.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz090.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz090.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('kmae', 0.0011810062185709821) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz090.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz090.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz090.txt + +[caz091] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz091.txt +centroid = (0.62445437175404317, -2.0902010762006529) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz091.txt +description = Southwestern San Joaquin Valley, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz091.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz091.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz091.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz091.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz091.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz091.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz091.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz091.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz091.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz091.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz091.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz091.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz091.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz091.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz091.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('khjo', 0.0096040320671241259) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz091.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz091.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz091.txt + +[caz092] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz092.txt +centroid = (0.62447357037581508, -2.0801811409649535) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz092.txt +description = Southeastern San Joaquin Valley, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz092.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz092.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz092.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz092.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz092.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz092.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz092.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz092.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz092.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz092.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz092.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz092.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz092.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz092.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz092.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('kptv', 0.0047352773114807791) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz092.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz092.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz092.txt + +[caz093] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz093.txt +centroid = (0.65030967929308714, -2.0893336475624116) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz093.txt +description = Mariposa Madera and Fresno County Foothills, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz093.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz093.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz093.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz093.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz093.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz093.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz093.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz093.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz093.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz093.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz093.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz093.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz093.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz093.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz093.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('kmae', 0.0074394234293493986) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz093.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz093.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz093.txt + +[caz094] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz094.txt +centroid = (0.63285464144389192, -2.0753727588757092) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz094.txt +description = Tulare County Foothills, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz094.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz094.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz094.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz094.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz094.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz094.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz094.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz094.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz094.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz094.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz094.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz094.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz094.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz094.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz094.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('kptv', 0.0045283385931102803) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz094.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz094.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz094.txt + +[caz095] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz095.txt +centroid = (0.61701577848204336, -2.0694595833699525) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz095.txt +description = Kern County Mountains, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz095.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz095.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz095.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz095.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz095.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz095.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz095.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz095.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz095.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz095.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz095.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz095.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz095.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz095.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz095.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('ktsp', 0.004218867507964387) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz095.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz095.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz095.txt + +[caz096] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz096.txt +centroid = (0.65250181283359199, -2.0802701527568055) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz096.txt +description = Sierra Nevada from Yosemite to Kings Canyon, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz096.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz096.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz096.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz096.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz096.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz096.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz096.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz096.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz096.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz096.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz096.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz096.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz096.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz096.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz096.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('kmmh', 0.0063835031376382545) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz096.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz096.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz096.txt + +[caz097] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz097.txt +centroid = (0.63271326977448039, -2.0675955717288224) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz097.txt +description = Tulare County Mountains, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz097.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz097.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz097.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz097.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz097.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz097.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz097.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz097.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz097.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz097.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz097.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz097.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz097.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz097.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz097.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('kptv', 0.0093043443699553276) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz097.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz097.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz097.txt + +[caz098] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz098.txt +centroid = (0.62181019793727177, -2.0560240387881001) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz098.txt +description = Indian Wells Valley, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz098.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz098.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz098.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz098.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz098.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz098.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz098.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz098.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz098.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz098.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz098.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz098.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz098.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz098.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz098.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('kiyk', 0.00082506315534884144) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz098.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz098.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz098.txt + +[caz099] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz099.txt +centroid = (0.61213409256421514, -2.0600121161289073) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz099.txt +description = Southeastern Kern County Desert, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz099.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz099.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz099.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz099.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz099.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz099.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz099.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz099.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz099.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz099.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz099.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz099.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz099.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz099.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz099.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('kmhv', 0.0017173969369579975) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz099.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz099.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz099.txt + +[caz505] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz505.txt +centroid = (0.66735107410955985, -2.1459573644848642) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz505.txt +description = Coastal North Bay Including Point Reyes National Seashore, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz505.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz505.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz505.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz505.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz505.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz505.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz505.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz505.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz505.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz505.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz505.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz505.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz505.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz505.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz505.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('ksts', 0.0049712608093170655) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz505.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz505.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz505.txt + +[caz506] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz506.txt +centroid = (0.66967934333172019, -2.1405049559016338) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz506.txt +description = North Bay Interior Valleys, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz506.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz506.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz506.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz506.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz506.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz506.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz506.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz506.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz506.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz506.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz506.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz506.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz506.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz506.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz506.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('ko69', 0.0021682144738019676) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz506.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz506.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz506.txt + +[caz507] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz507.txt +centroid = (0.67285060658259388, -2.1414125271126707) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz507.txt +description = North Bay Mountains, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz507.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz507.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz507.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz507.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz507.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz507.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz507.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz507.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz507.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz507.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz507.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz507.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz507.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz507.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz507.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('ksts', 0.0019020618458789971) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz507.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz507.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz507.txt + +[caz508] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz508.txt +centroid = (0.6561355883362443, -2.1321814806988728) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz508.txt +description = San Francisco Bay Shoreline, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz508.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz508.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz508.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz508.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz508.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz508.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz508.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz508.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz508.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz508.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz508.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz508.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz508.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz508.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz508.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('khwd', 0.0014365649066010401) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz508.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz508.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz508.txt + +[caz509] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz509.txt +centroid = (0.65229935464036082, -2.1361486140886559) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz509.txt +description = San Fransisco Peninsula Coast, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz509.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz509.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz509.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz509.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz509.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz509.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz509.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz509.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz509.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz509.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz509.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz509.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz509.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz509.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz509.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('khaf', 0.0026577766179397932) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz509.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz509.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz509.txt + +[caz510] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz510.txt +centroid = (0.66113595664320801, -2.1272090376599406) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz510.txt +description = East Bay Interior Valleys, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz510.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz510.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz510.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz510.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz510.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz510.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz510.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz510.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz510.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz510.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz510.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz510.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz510.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz510.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz510.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('kccr', 0.0031358657136249662) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz510.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz510.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz510.txt + +[caz511] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz511.txt +centroid = (0.65363278618888443, -2.1233518600130332) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz511.txt +description = East Bay Hills and the Diablo Range, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz511.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz511.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz511.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz511.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz511.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz511.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz511.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz511.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz511.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz511.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz511.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz511.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz511.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz511.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz511.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('krhv', 0.0029914114811358155) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz511.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz511.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz511.txt + +[caz512] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz512.txt +centroid = (0.64878426152684421, -2.12999981913388) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz512.txt +description = Santa Cruz Mountains, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz512.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz512.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz512.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz512.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz512.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz512.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz512.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz512.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz512.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz512.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz512.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz512.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz512.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz512.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz512.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('ksjc', 0.0037956346286083702) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz512.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz512.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz512.txt + +[caz513] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz513.txt +centroid = (0.64960456627528151, -2.1257604143807858) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz513.txt +description = Santa Clara Valley Including San Jose, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz513.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz513.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz513.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz513.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz513.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz513.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz513.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz513.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz513.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz513.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz513.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz513.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz513.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz513.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz513.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('krhv', 0.0020035349291352123) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz513.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz513.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz513.txt + +[caz516] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz516.txt +centroid = (0.6300882945794809, -2.1128013446847276) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz516.txt +description = Southern Salinas Valley/Arroyo Seco and Lake San Antonio, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz516.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz516.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz516.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz516.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz516.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz516.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz516.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz516.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz516.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz516.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz516.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz516.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz516.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz516.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz516.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('kprb', 0.0096465657493401847) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz516.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz516.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz516.txt + +[caz517] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz517.txt +centroid = (0.63112152949666156, -2.1191578338204913) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz517.txt +description = Santa Lucia Mountains and Los Padres National Forest, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz517.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz517.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz517.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz517.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz517.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz517.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz517.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz517.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz517.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz517.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz517.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz517.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz517.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz517.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz517.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('ksns', 0.0091918873751593352) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz517.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz517.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz517.txt + +[caz518] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz518.txt +centroid = (0.63480766487687357, -2.1104765661210712) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz518.txt +description = Mountains Of San Benito County And Interior Monterey County Including Pinnacles National Monument, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz518.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz518.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz518.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz518.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz518.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz518.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz518.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz518.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz518.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz518.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz518.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz518.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz518.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz518.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz518.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('ksns', 0.010820517856717145) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz518.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz518.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz518.txt + +[caz519] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz519.txt +centroid = (0.64275065830269973, -2.0654400901026095) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz519.txt +description = Eastern Sierra Slopes, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz519.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz519.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz519.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz519.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz519.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz519.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz519.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz519.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz519.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz519.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz519.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz519.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz519.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz519.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz519.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('kbih', 0.0094274789004632747) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz519.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz519.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz519.txt + +[caz520] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz520.txt +centroid = (0.63727730576844555, -2.0597101741683121) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz520.txt +description = Owens Valley, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz520.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz520.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz520.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz520.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz520.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz520.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz520.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz520.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz520.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz520.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz520.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz520.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz520.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz520.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz520.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('kiyk', 0.014991515083878507) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz520.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz520.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz520.txt + +[caz521] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz521.txt +centroid = (0.6459533374801093, -2.0601657051030826) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz521.txt +description = White Mountains of Inyo County, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz521.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz521.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz521.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz521.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz521.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz521.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz521.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz521.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz521.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz521.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz521.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz521.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz521.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz521.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz521.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('kbih', 0.0077100942945273207) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz521.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz521.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz521.txt + +[caz522] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz522.txt +centroid = (0.63564716824708278, -2.0437910260608718) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz522.txt +description = Death Valley National Park, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz522.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz522.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz522.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz522.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz522.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz522.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz522.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz522.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz522.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz522.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz522.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz522.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz522.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz522.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz522.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('knid', 0.015388276810089809) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz522.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz522.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz522.txt + +[caz523] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz523.txt +centroid = (0.61619372840435405, -2.0420439514796254) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz523.txt +description = Western Mojave Desert, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz523.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz523.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz523.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz523.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz523.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz523.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz523.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz523.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz523.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz523.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz523.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz523.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz523.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz523.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz523.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('kqck', 0.001481123092741541) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz523.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz523.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz523.txt + +[caz524] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz524.txt +centroid = (0.61337315005242388, -2.02512704476477) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz524.txt +description = Eastern Mojave Desert, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz524.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz524.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz524.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz524.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz524.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz524.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz524.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz524.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz524.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz524.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz524.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz524.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz524.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz524.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz524.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('kbys', 0.0086964705381401188) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz524.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz524.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz524.txt + +[caz525] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz525.txt +centroid = (0.59938795303690062, -2.0262347591150611) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz525.txt +description = Morongo Basin, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz525.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz525.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz525.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz525.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz525.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz525.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz525.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz525.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz525.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz525.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz525.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz525.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz525.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz525.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz525.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('knxp', 0.0012742649528561826) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz525.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz525.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz525.txt + +[caz526] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz526.txt +centroid = (0.60012971796899828, -2.0087971745583855) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz526.txt +description = Cadiz Basin, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz526.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz526.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz526.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz526.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz526.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz526.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz526.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz526.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz526.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz526.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz526.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz526.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz526.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz526.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz526.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('keed', 0.009579456983107415) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz526.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz526.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz526.txt + +[caz527] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz527.txt +centroid = (0.60211764798701983, -1.9984211921552792) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz527.txt +description = Upper Colorado River Valley of San Bernardino County, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz527.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz527.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz527.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz527.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz527.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz527.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz527.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz527.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz527.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz527.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz527.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz527.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz527.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz527.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz527.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('keed', 0.0049609904340968333) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz527.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz527.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz527.txt + +[caz528] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz528.txt +centroid = (0.64013266442470829, -2.1206570716479543) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz528.txt +description = Northern Salinas Valley, Hollister Valley and Carmel Valley, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz528.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz528.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz528.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz528.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz528.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz528.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz528.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz528.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz528.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz528.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz528.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz528.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz528.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz528.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz528.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('ksns', 0.00134598440501219) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz528.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz528.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz528.txt + +[caz529] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz529.txt +centroid = (0.64534770822966736, -2.1275650848273475) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz529.txt +description = Northern Monterey Bay, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz529.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz529.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz529.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz529.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz529.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz529.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz529.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz529.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz529.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz529.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz529.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz529.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz529.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz529.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz529.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('kwvi', 0.0017936515302809214) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz529.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz529.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz529.txt + +[caz530] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz530.txt +centroid = (0.63907848555650371, -2.1250535560337278) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz530.txt +description = Southern Monterey Bay and Big Sur Coast, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz530.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz530.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz530.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz530.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz530.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz530.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz530.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz530.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz530.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz530.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz530.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz530.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz530.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz530.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz530.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('kmry', 0.0014310116399360033) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz530.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz530.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz530.txt + +[caz547] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz547.txt +centroid = (0.5969776533398965, -2.0678643524336295) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz547.txt +description = San Fernando Valley of Los Angeles County, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz547.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz547.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz547.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz547.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz547.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz547.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz547.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz547.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz547.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz547.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz547.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz547.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz547.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz547.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz547.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('kvny', 0.00022145471284903303) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz547.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz547.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz547.txt + +[caz548] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ca/caz548.txt +centroid = (0.59455862699663231, -2.0590312410892864) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ca/caz548.txt +description = San Gabriel Valley of Los Angeles County, CA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ca/caz548.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ca/caz548.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ca/caz548.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ca/caz548.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ca/caz548.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ca/caz548.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ca/caz548.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ca/caz548.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ca.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ca/caz548.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ca/caz548.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ca/caz548.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ca/caz548.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ca/caz548.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ca/caz548.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ca/caz548.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ca.txt +station = ('kemt', 0.00091402791690196417) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ca/caz548.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ca/caz548.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ca/caz548.txt + +[coz001] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/co/coz001.txt +centroid = (0.70588096267658673, -1.8971624249423242) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/co/coz001.txt +description = Lower Yampa River Basin, CO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/co/coz001.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/co/coz001.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/co/coz001.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/co/coz001.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/co/coz001.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/co/coz001.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/co/coz001.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/co/coz001.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/co.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/co/coz001.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/co/coz001.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/co/coz001.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/co/coz001.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/co/coz001.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/co/coz001.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/co/coz001.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/co.txt +station = ('keeo', 0.012863481401462177) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/co/coz001.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/co/coz001.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/co/coz001.txt + +[coz002] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/co/coz002.txt +centroid = (0.70519330295130089, -1.8834441370216488) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/co/coz002.txt +description = Central Yampa River Basin, CO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/co/coz002.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/co/coz002.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/co/coz002.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/co/coz002.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/co/coz002.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/co/coz002.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/co/coz002.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/co/coz002.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/co.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/co/coz002.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/co/coz002.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/co/coz002.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/co/coz002.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/co/coz002.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/co/coz002.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/co/coz002.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/co.txt +station = ('kcag', 0.0055258402817506174) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/co/coz002.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/co/coz002.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/co/coz002.txt + +[coz003] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/co/coz003.txt +centroid = (0.69072801411077189, -1.8925948982898553) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/co/coz003.txt +description = Roan and Tavaputs Plateaus, CO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/co/coz003.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/co/coz003.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/co/coz003.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/co/coz003.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/co/coz003.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/co/coz003.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/co/coz003.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/co/coz003.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/co.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/co/coz003.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/co/coz003.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/co/coz003.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/co/coz003.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/co/coz003.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/co/coz003.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/co/coz003.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/co.txt +station = ('kgjt', 0.007829603373786069) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/co/coz003.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/co/coz003.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/co/coz003.txt + +[coz004] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/co/coz004.txt +centroid = (0.70799804705925573, -1.8667203921290392) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/co/coz004.txt +description = Elkhead and Park Mountains, CO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/co/coz004.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/co/coz004.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/co/coz004.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/co/coz004.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/co/coz004.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/co/coz004.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/co/coz004.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/co/coz004.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/co.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/co/coz004.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/co/coz004.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/co/coz004.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/co/coz004.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/co/coz004.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/co/coz004.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/co/coz004.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/co.txt +station = ('ksbs', 0.0014489192949473015) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/co/coz004.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/co/coz004.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/co/coz004.txt + +[coz005] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/co/coz005.txt +centroid = (0.70494372086826573, -1.8668320932011668) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/co/coz005.txt +description = Upper Yampa River Basin, CO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/co/coz005.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/co/coz005.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/co/coz005.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/co/coz005.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/co/coz005.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/co/coz005.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/co/coz005.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/co/coz005.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/co.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/co/coz005.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/co/coz005.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/co/coz005.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/co/coz005.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/co/coz005.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/co/coz005.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/co/coz005.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/co.txt +station = ('ksbs', 0.0025404490068993719) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/co/coz005.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/co/coz005.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/co/coz005.txt + +[coz006] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/co/coz006.txt +centroid = (0.68336796065511174, -1.8968395390307051) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/co/coz006.txt +description = Grand Valley, CO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/co/coz006.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/co/coz006.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/co/coz006.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/co/coz006.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/co/coz006.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/co/coz006.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/co/coz006.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/co/coz006.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/co.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/co/coz006.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/co/coz006.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/co/coz006.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/co/coz006.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/co/coz006.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/co/coz006.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/co/coz006.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/co.txt +station = ('kgjt', 0.0020301030462150198) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/co/coz006.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/co/coz006.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/co/coz006.txt + +[coz007] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/co/coz007.txt +centroid = (0.68839625423010742, -1.8845594024136731) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/co/coz007.txt +description = Debeque to Silt Corridor, CO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/co/coz007.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/co/coz007.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/co/coz007.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/co/coz007.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/co/coz007.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/co/coz007.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/co/coz007.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/co/coz007.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/co.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/co/coz007.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/co/coz007.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/co/coz007.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/co/coz007.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/co/coz007.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/co/coz007.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/co/coz007.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/co.txt +station = ('kril', 0.0035342178787795527) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/co/coz007.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/co/coz007.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/co/coz007.txt + +[coz008] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/co/coz008.txt +centroid = (0.69164954795582489, -1.8680119357755149) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/co/coz008.txt +description = Central Colorado River Basin, CO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/co/coz008.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/co/coz008.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/co/coz008.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/co/coz008.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/co/coz008.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/co/coz008.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/co/coz008.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/co/coz008.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/co.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/co/coz008.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/co/coz008.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/co/coz008.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/co/coz008.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/co/coz008.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/co/coz008.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/co/coz008.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/co.txt +station = ('kege', 0.0015579227695308277) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/co/coz008.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/co/coz008.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/co/coz008.txt + +[coz009] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/co/coz009.txt +centroid = (0.68300318684144501, -1.8824231194092322) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/co/coz009.txt +description = Grand and Battlement Mesas, CO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/co/coz009.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/co/coz009.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/co/coz009.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/co/coz009.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/co/coz009.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/co/coz009.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/co/coz009.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/co/coz009.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/co.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/co/coz009.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/co/coz009.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/co/coz009.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/co/coz009.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/co/coz009.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/co/coz009.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/co/coz009.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/co.txt +station = ('kajz', 0.0066825100149935151) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/co/coz009.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/co/coz009.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/co/coz009.txt + +[coz010] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/co/coz010.txt +centroid = (0.68827582651171981, -1.8642682045299872) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/co/coz010.txt +description = Gore and Elk Mountains/Central Mountain Valleys, CO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/co/coz010.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/co/coz010.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/co/coz010.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/co/coz010.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/co/coz010.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/co/coz010.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/co/coz010.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/co/coz010.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/co.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/co/coz010.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/co/coz010.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/co/coz010.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/co/coz010.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/co/coz010.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/co/coz010.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/co/coz010.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/co.txt +station = ('kase', 0.0035941114467508781) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/co/coz010.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/co/coz010.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/co/coz010.txt + +[coz011] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/co/coz011.txt +centroid = (0.67497990827002696, -1.8835610740815325) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/co/coz011.txt +description = Central Gunnison and Uncompahgre River Basin, CO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/co/coz011.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/co/coz011.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/co/coz011.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/co/coz011.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/co/coz011.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/co/coz011.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/co/coz011.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/co/coz011.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/co.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/co/coz011.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/co/coz011.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/co/coz011.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/co/coz011.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/co/coz011.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/co/coz011.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/co/coz011.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/co.txt +station = ('kajz', 0.002775224522094534) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/co/coz011.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/co/coz011.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/co/coz011.txt + +[coz012] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/co/coz012.txt +centroid = (0.67720694839557172, -1.8675756034625164) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/co/coz012.txt +description = West Elk and Sawatch Mountains, CO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/co/coz012.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/co/coz012.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/co/coz012.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/co/coz012.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/co/coz012.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/co/coz012.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/co/coz012.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/co/coz012.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/co.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/co/coz012.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/co/coz012.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/co/coz012.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/co/coz012.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/co/coz012.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/co/coz012.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/co/coz012.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/co.txt +station = ('kguc', 0.0047721458829027919) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/co/coz012.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/co/coz012.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/co/coz012.txt + +[coz013] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/co/coz013.txt +centroid = (0.69772329375276509, -1.8751398604406599) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/co/coz013.txt +description = Flattops, CO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/co/coz013.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/co/coz013.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/co/coz013.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/co/coz013.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/co/coz013.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/co/coz013.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/co/coz013.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/co/coz013.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/co.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/co/coz013.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/co/coz013.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/co/coz013.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/co/coz013.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/co/coz013.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/co/coz013.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/co/coz013.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/co.txt +station = ('keeo', 0.0060944489239609821) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/co/coz013.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/co/coz013.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/co/coz013.txt + +[coz014] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/co/coz014.txt +centroid = (0.67156080826537023, -1.870785263956934) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/co/coz014.txt +description = Upper Gunnison River Valley, CO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/co/coz014.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/co/coz014.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/co/coz014.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/co/coz014.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/co/coz014.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/co/coz014.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/co/coz014.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/co/coz014.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/co.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/co/coz014.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/co/coz014.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/co/coz014.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/co/coz014.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/co/coz014.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/co/coz014.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/co/coz014.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/co.txt +station = ('kguc', 0.003613021496679622) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/co/coz014.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/co/coz014.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/co/coz014.txt + +[coz017] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/co/coz017.txt +centroid = (0.67289249448464183, -1.8924535266204434) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/co/coz017.txt +description = Uncompahgre Plateau/Dallas Divide, CO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/co/coz017.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/co/coz017.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/co/coz017.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/co/coz017.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/co/coz017.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/co/coz017.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/co/coz017.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/co/coz017.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/co.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/co/coz017.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/co/coz017.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/co/coz017.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/co/coz017.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/co/coz017.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/co/coz017.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/co/coz017.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/co.txt +station = ('kajz', 0.0064297206191698464) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/co/coz017.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/co/coz017.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/co/coz017.txt + +[coz018] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/co/coz018.txt +centroid = (0.66425136935801787, -1.8771085918369093) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/co/coz018.txt +description = Northwestern San Juan Mountains, CO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/co/coz018.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/co/coz018.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/co/coz018.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/co/coz018.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/co/coz018.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/co/coz018.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/co/coz018.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/co/coz018.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/co.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/co/coz018.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/co/coz018.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/co/coz018.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/co/coz018.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/co/coz018.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/co/coz018.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/co/coz018.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/co.txt +station = ('ktex', 0.0052554736231010934) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/co/coz018.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/co/coz018.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/co/coz018.txt + +[coz019] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/co/coz019.txt +centroid = (0.65485800732378441, -1.8790162367093393) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/co/coz019.txt +description = Southwest San Juan Mountains, CO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/co/coz019.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/co/coz019.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/co/coz019.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/co/coz019.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/co/coz019.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/co/coz019.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/co/coz019.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/co/coz019.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/co.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/co/coz019.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/co/coz019.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/co/coz019.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/co/coz019.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/co/coz019.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/co/coz019.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/co/coz019.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/co.txt +station = ('kdro', 0.0066363297363421139) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/co/coz019.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/co/coz019.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/co/coz019.txt + +[coz020] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/co/coz020.txt +centroid = (0.66665119707951015, -1.8973387031967757) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/co/coz020.txt +description = Paradox Valley/Little Dolores River, CO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/co/coz020.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/co/coz020.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/co/coz020.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/co/coz020.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/co/coz020.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/co/coz020.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/co/coz020.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/co/coz020.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/co.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/co/coz020.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/co/coz020.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/co/coz020.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/co/coz020.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/co/coz020.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/co/coz020.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/co/coz020.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/co.txt +station = ('kajz', 0.013561998501528744) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/co/coz020.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/co/coz020.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/co/coz020.txt + +[coz021] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/co/coz021.txt +centroid = (0.65241978235874831, -1.8976580984498908) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/co/coz021.txt +description = Four Corners/Upper Dolores River, CO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/co/coz021.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/co/coz021.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/co/coz021.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/co/coz021.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/co/coz021.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/co/coz021.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/co/coz021.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/co/coz021.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/co.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/co/coz021.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/co/coz021.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/co/coz021.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/co/coz021.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/co/coz021.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/co/coz021.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/co/coz021.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/co.txt +station = ('kcez', 0.0019266420958711562) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/co/coz021.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/co/coz021.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/co/coz021.txt + +[coz022] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/co/coz022.txt +centroid = (0.64836887316486946, -1.8828175638201827) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/co/coz022.txt +description = Animas River Basin, CO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/co/coz022.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/co/coz022.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/co/coz022.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/co/coz022.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/co/coz022.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/co/coz022.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/co/coz022.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/co/coz022.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/co.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/co/coz022.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/co/coz022.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/co/coz022.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/co/coz022.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/co/coz022.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/co/coz022.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/co/coz022.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/co.txt +station = ('kdro', 0.0015419871375885901) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/co/coz022.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/co/coz022.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/co/coz022.txt + +[coz023] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/co/coz023.txt +centroid = (0.64818561359341009, -1.8709999394549293) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/co/coz023.txt +description = San Juan River Basin, CO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/co/coz023.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/co/coz023.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/co/coz023.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/co/coz023.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/co/coz023.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/co/coz023.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/co/coz023.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/co/coz023.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/co.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/co/coz023.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/co/coz023.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/co/coz023.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/co/coz023.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/co/coz023.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/co/coz023.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/co/coz023.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/co.txt +station = ('kpso', 0.0032383723465140009) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/co/coz023.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/co/coz023.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/co/coz023.txt + +[coz030] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/co/coz030.txt +centroid = (0.70994059851672542, -1.8554420745026519) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/co/coz030.txt +description = Jackson County Below 9000 Feet, CO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/co/coz030.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/co/coz030.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/co/coz030.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/co/coz030.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/co/coz030.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/co/coz030.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/co/coz030.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/co/coz030.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/co.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/co/coz030.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/co/coz030.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/co/coz030.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/co/coz030.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/co/coz030.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/co/coz030.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/co/coz030.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/co.txt +station = ('k33v', 0.0014357415608552485) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/co/coz030.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/co/coz030.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/co/coz030.txt + +[coz031] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/co/coz031.txt +centroid = (0.70890910892879677, -1.8606815529171388) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/co/coz031.txt +description = West Jackson and West Grand Counties Above 9000 Feet, CO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/co/coz031.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/co/coz031.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/co/coz031.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/co/coz031.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/co/coz031.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/co/coz031.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/co/coz031.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/co/coz031.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/co.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/co/coz031.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/co/coz031.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/co/coz031.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/co/coz031.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/co/coz031.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/co/coz031.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/co/coz031.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/co.txt +station = ('ksbs', 0.0038405224318467804) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/co/coz031.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/co/coz031.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/co/coz031.txt + +[coz032] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/co/coz032.txt +centroid = (0.69939880983467972, -1.8536967452506574) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/co/coz032.txt +description = Grand and Summit Counties Below 9000 Feet, CO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/co/coz032.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/co/coz032.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/co/coz032.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/co/coz032.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/co/coz032.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/co/coz032.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/co/coz032.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/co/coz032.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/co.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/co/coz032.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/co/coz032.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/co/coz032.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/co/coz032.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/co/coz032.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/co/coz032.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/co/coz032.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/co.txt +station = ('k20v', 0.0021612982474193006) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/co/coz032.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/co/coz032.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/co/coz032.txt + +[coz033] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/co/coz033.txt +centroid = (0.70664890754746412, -1.8484275962388865) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/co/coz033.txt +description = South and East Jackson/Larimer/North and Northeast Grand/Northwest Boulder Counties Above 9000 Feet, CO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/co/coz033.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/co/coz033.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/co/coz033.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/co/coz033.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/co/coz033.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/co/coz033.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/co/coz033.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/co/coz033.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/co.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/co/coz033.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/co/coz033.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/co/coz033.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/co/coz033.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/co/coz033.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/co/coz033.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/co/coz033.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/co.txt +station = ('k33v', 0.0065397046861017678) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/co/coz033.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/co/coz033.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/co/coz033.txt + +[coz034] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/co/coz034.txt +centroid = (0.69122717827684221, -1.8474397398822577) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/co/coz034.txt +description = South and Southeast Grand/West Central and Southwest Boulder/Gilpin/Clear Creek/Summit/North and West Park Counties Above 9000 Feet, CO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/co/coz034.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/co/coz034.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/co/coz034.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/co/coz034.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/co/coz034.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/co/coz034.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/co/coz034.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/co/coz034.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/co.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/co/coz034.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/co/coz034.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/co/coz034.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/co/coz034.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/co/coz034.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/co/coz034.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/co/coz034.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/co.txt +station = ('kccu', 0.0046919670132569641) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/co/coz034.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/co/coz034.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/co/coz034.txt + +[coz035] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/co/coz035.txt +centroid = (0.7087764639056453, -1.8408127247124353) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/co/coz035.txt +description = Larimer and Boulder Counties Between 6000 and 9000 Feet, CO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/co/coz035.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/co/coz035.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/co/coz035.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/co/coz035.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/co/coz035.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/co/coz035.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/co/coz035.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/co/coz035.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/co.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/co/coz035.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/co/coz035.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/co/coz035.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/co/coz035.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/co/coz035.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/co/coz035.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/co/coz035.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/co.txt +station = ('kfnl', 0.006639385919774388) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/co/coz035.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/co/coz035.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/co/coz035.txt + +[coz036] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/co/coz036.txt +centroid = (0.68912231119893708, -1.837274942318643) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/co/coz036.txt +description = Jefferson and West Douglas Counties Above 6000 Feet/Gilpin/Clear Creek/Northeast Park Counties Below 9000 Feet, CO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/co/coz036.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/co/coz036.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/co/coz036.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/co/coz036.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/co/coz036.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/co/coz036.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/co/coz036.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/co/coz036.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/co.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/co/coz036.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/co/coz036.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/co/coz036.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/co/coz036.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/co/coz036.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/co/coz036.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/co/coz036.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/co.txt +station = ('kapa', 0.0058115087886935687) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/co/coz036.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/co/coz036.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/co/coz036.txt + +[coz037] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/co/coz037.txt +centroid = (0.6804096275729814, -1.8443539977647319) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/co/coz037.txt +description = Central and Southeast Park County, CO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/co/coz037.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/co/coz037.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/co/coz037.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/co/coz037.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/co/coz037.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/co/coz037.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/co/coz037.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/co/coz037.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/co.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/co/coz037.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/co/coz037.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/co/coz037.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/co/coz037.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/co/coz037.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/co/coz037.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/co/coz037.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/co.txt +station = ('k4bm', 0.0024449402342290013) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/co/coz037.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/co/coz037.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/co/coz037.txt + +[coz038] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/co/coz038.txt +centroid = (0.71066840081480709, -1.8298433303636508) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/co/coz038.txt +description = Larimer County Below 6000 Feet/Northwest Weld County, CO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/co/coz038.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/co/coz038.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/co/coz038.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/co/coz038.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/co/coz038.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/co/coz038.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/co/coz038.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/co/coz038.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/co.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/co/coz038.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/co/coz038.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/co/coz038.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/co/coz038.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/co/coz038.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/co/coz038.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/co/coz038.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/co.txt +station = ('kfnl', 0.0052220248490634424) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/co/coz038.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/co/coz038.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/co/coz038.txt + +[coz039] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/co/coz039.txt +centroid = (0.69744404107244606, -1.8353184282271573) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/co/coz039.txt +description = Boulder And Jefferson Counties Below 6000 Feet/West Broomfield County, CO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/co/coz039.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/co/coz039.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/co/coz039.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/co/coz039.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/co/coz039.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/co/coz039.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/co/coz039.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/co/coz039.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/co.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/co/coz039.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/co/coz039.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/co/coz039.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/co/coz039.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/co/coz039.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/co/coz039.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/co/coz039.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/co.txt +station = ('kbjc', 0.00093005765139049892) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/co/coz039.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/co/coz039.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/co/coz039.txt + +[coz040] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/co/coz040.txt +centroid = (0.69404064903105711, -1.8291748692601373) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/co/coz040.txt +description = North Douglas County Below 6000 Feet/Denver/West Adams and Arapahoe Counties/East Broomfield County, CO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/co/coz040.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/co/coz040.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/co/coz040.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/co/coz040.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/co/coz040.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/co/coz040.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/co/coz040.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/co/coz040.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/co.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/co/coz040.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/co/coz040.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/co/coz040.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/co/coz040.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/co/coz040.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/co/coz040.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/co/coz040.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/co.txt +station = ('kbkf', 0.0011497451453225411) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/co/coz040.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/co/coz040.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/co/coz040.txt + +[coz041] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/co/coz041.txt +centroid = (0.68604529572767103, -1.8240278932960059) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/co/coz041.txt +description = Elbert/Central and East Douglas Counties Above 6000 Feet, CO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/co/coz041.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/co/coz041.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/co/coz041.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/co/coz041.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/co/coz041.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/co/coz041.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/co/coz041.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/co/coz041.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/co.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/co/coz041.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/co/coz041.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/co/coz041.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/co/coz041.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/co/coz041.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/co/coz041.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/co/coz041.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/co.txt +station = ('kmnh', 0.002314513722416024) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/co/coz041.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/co/coz041.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/co/coz041.txt + +[coz042] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/co/coz042.txt +centroid = (0.71109426115229368, -1.8151860553054024) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/co/coz042.txt +description = Northeast Weld County, CO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/co/coz042.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/co/coz042.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/co/coz042.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/co/coz042.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/co/coz042.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/co/coz042.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/co/coz042.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/co/coz042.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/co.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/co/coz042.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/co/coz042.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/co/coz042.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/co/coz042.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/co/coz042.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/co/coz042.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/co/coz042.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/co.txt +station = ('kibm', 0.0088732266568013682) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/co/coz042.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/co/coz042.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/co/coz042.txt + +[coz043] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/co/coz043.txt +centroid = (0.7027882392420528, -1.825481752562917) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/co/coz043.txt +description = Central and South Weld County, CO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/co/coz043.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/co/coz043.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/co/coz043.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/co/coz043.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/co/coz043.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/co/coz043.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/co/coz043.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/co/coz043.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/co.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/co/coz043.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/co/coz043.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/co/coz043.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/co/coz043.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/co/coz043.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/co/coz043.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/co/coz043.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/co.txt +station = ('kgxy', 0.0029571102001634689) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/co/coz043.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/co/coz043.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/co/coz043.txt + +[coz044] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/co/coz044.txt +centroid = (0.70271668074272098, -1.8118228058368095) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/co/coz044.txt +description = Morgan County, CO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/co/coz044.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/co/coz044.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/co/coz044.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/co/coz044.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/co/coz044.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/co/coz044.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/co/coz044.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/co/coz044.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/co.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/co/coz044.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/co/coz044.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/co/coz044.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/co/coz044.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/co/coz044.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/co/coz044.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/co/coz044.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/co.txt +station = ('kstk', 0.0094912885351273527) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/co/coz044.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/co/coz044.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/co/coz044.txt + +[coz045] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/co/coz045.txt +centroid = (0.69436004428417208, -1.8169715271301927) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/co/coz045.txt +description = Central and East Adams and Arapahoe Counties, CO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/co/coz045.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/co/coz045.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/co/coz045.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/co/coz045.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/co/coz045.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/co/coz045.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/co/coz045.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/co/coz045.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/co.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/co/coz045.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/co/coz045.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/co/coz045.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/co/coz045.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/co/coz045.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/co/coz045.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/co/coz045.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/co.txt +station = ('kftg', 0.0059711451292399163) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/co/coz045.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/co/coz045.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/co/coz045.txt + +[coz046] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/co/coz046.txt +centroid = (0.68689178041488841, -1.8095818030772488) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/co/coz046.txt +description = North and Northeast Elbert County Below 6000 Feet/North Lincoln County, CO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/co/coz046.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/co/coz046.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/co/coz046.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/co/coz046.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/co/coz046.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/co/coz046.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/co/coz046.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/co/coz046.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/co.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/co/coz046.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/co/coz046.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/co/coz046.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/co/coz046.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/co/coz046.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/co/coz046.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/co/coz046.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/co.txt +station = ('klic', 0.001571803512438223) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/co/coz046.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/co/coz046.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/co/coz046.txt + +[coz047] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/co/coz047.txt +centroid = (0.67727152557789561, -1.8080633666280137) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/co/coz047.txt +description = Southeast Elbert County Below 6000 Feet/South Lincoln County, CO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/co/coz047.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/co/coz047.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/co/coz047.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/co/coz047.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/co/coz047.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/co/coz047.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/co/coz047.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/co/coz047.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/co.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/co/coz047.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/co/coz047.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/co/coz047.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/co/coz047.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/co/coz047.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/co/coz047.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/co/coz047.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/co.txt +station = ('klic', 0.0081204099388955172) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/co/coz047.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/co/coz047.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/co/coz047.txt + +[coz048] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/co/coz048.txt +centroid = (0.71078010188693475, -1.7996107370606051) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/co/coz048.txt +description = Logan County, CO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/co/coz048.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/co/coz048.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/co/coz048.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/co/coz048.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/co/coz048.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/co/coz048.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/co/coz048.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/co/coz048.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/co.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/co/coz048.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/co/coz048.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/co/coz048.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/co/coz048.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/co/coz048.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/co/coz048.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/co/coz048.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/co.txt +station = ('kstk', 0.0028187887546903588) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/co/coz048.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/co/coz048.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/co/coz048.txt + +[coz049] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/co/coz049.txt +centroid = (0.69762555531465342, -1.8012024773384241) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/co/coz049.txt +description = Washington County, CO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/co/coz049.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/co/coz049.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/co/coz049.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/co/coz049.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/co/coz049.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/co/coz049.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/co/coz049.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/co/coz049.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/co.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/co/coz049.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/co/coz049.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/co/coz049.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/co/coz049.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/co/coz049.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/co/coz049.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/co/coz049.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/co.txt +station = ('kako', 0.0034211896616622795) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/co/coz049.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/co/coz049.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/co/coz049.txt + +[coz050] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/co/coz050.txt +centroid = (0.7134172943866981, -1.7863759053427322) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/co/coz050.txt +description = Sedgwick County, CO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/co/coz050.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/co/coz050.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/co/coz050.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/co/coz050.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/co/coz050.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/co/coz050.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/co/coz050.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/co/coz050.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/co.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/co/coz050.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/co/coz050.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/co/coz050.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/co/coz050.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/co/coz050.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/co/coz050.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/co/coz050.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/co.txt +station = ('kheq', 0.0056439398818455607) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/co/coz050.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/co/coz050.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/co/coz050.txt + +[coz051] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/co/coz051.txt +centroid = (0.70849721122532605, -1.786475389110096) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/co/coz051.txt +description = Phillips County, CO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/co/coz051.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/co/coz051.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/co/coz051.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/co/coz051.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/co/coz051.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/co/coz051.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/co/coz051.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/co/coz051.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/co.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/co/coz051.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/co/coz051.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/co/coz051.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/co/coz051.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/co/coz051.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/co/coz051.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/co/coz051.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/co.txt +station = ('kheq', 0.0014214818878364992) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/co/coz051.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/co/coz051.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/co/coz051.txt + +[coz058] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/co/coz058.txt +centroid = (0.68512027122411412, -1.8537857570425091) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/co/coz058.txt +description = Western Mosquito Range/East Lake County Above 11000 Ft, CO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/co/coz058.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/co/coz058.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/co/coz058.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/co/coz058.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/co/coz058.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/co/coz058.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/co/coz058.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/co/coz058.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/co.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/co/coz058.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/co/coz058.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/co/coz058.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/co/coz058.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/co/coz058.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/co/coz058.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/co/coz058.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/co.txt +station = ('klxv', 0.001434757188279202) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/co/coz058.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/co/coz058.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/co/coz058.txt + +[coz059] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/co/coz059.txt +centroid = (0.68394740996677394, -1.8560634117163617) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/co/coz059.txt +description = Leadville Vicinity/Lake County Below 11000 Ft, CO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/co/coz059.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/co/coz059.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/co/coz059.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/co/coz059.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/co/coz059.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/co/coz059.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/co/coz059.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/co/coz059.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/co.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/co/coz059.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/co/coz059.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/co/coz059.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/co/coz059.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/co/coz059.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/co/coz059.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/co/coz059.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/co.txt +station = ('klxv', 0.0008878071951661879) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/co/coz059.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/co/coz059.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/co/coz059.txt + +[coz060] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/co/coz060.txt +centroid = (0.67753157963644273, -1.8563077578116409) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/co/coz060.txt +description = Eastern Sawatch Mountains Above 11000 Ft, CO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/co/coz060.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/co/coz060.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/co/coz060.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/co/coz060.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/co/coz060.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/co/coz060.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/co/coz060.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/co/coz060.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/co.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/co/coz060.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/co/coz060.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/co/coz060.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/co/coz060.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/co/coz060.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/co/coz060.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/co/coz060.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/co.txt +station = ('k7bm', 0.0020189048188396872) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/co/coz060.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/co/coz060.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/co/coz060.txt + +[coz061] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/co/coz061.txt +centroid = (0.67616673216138323, -1.8545153046698428) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/co/coz061.txt +description = Western Chaffee County Between 9000 and 11000 Ft, CO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/co/coz061.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/co/coz061.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/co/coz061.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/co/coz061.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/co/coz061.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/co/coz061.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/co/coz061.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/co/coz061.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/co.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/co/coz061.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/co/coz061.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/co/coz061.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/co/coz061.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/co/coz061.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/co/coz061.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/co/coz061.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/co.txt +station = ('k7bm', 0.0008816591871014008) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/co/coz061.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/co/coz061.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/co/coz061.txt + +[coz062] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/co/coz062.txt +centroid = (0.67522076370680228, -1.8516686726598399) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/co/coz062.txt +description = Central Chaffee County Below 9000 Ft, CO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/co/coz062.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/co/coz062.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/co/coz062.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/co/coz062.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/co/coz062.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/co/coz062.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/co/coz062.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/co/coz062.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/co.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/co/coz062.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/co/coz062.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/co/coz062.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/co/coz062.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/co/coz062.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/co/coz062.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/co/coz062.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/co.txt +station = ('kaej', 0.0022462391363534196) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/co/coz062.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/co/coz062.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/co/coz062.txt + +[coz063] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/co/coz063.txt +centroid = (0.6776118647820345, -1.8504905754147438) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/co/coz063.txt +description = Western Mosquito Range/East Chaffee County Above 9000 Ft, CO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/co/coz063.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/co/coz063.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/co/coz063.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/co/coz063.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/co/coz063.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/co/coz063.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/co/coz063.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/co/coz063.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/co.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/co/coz063.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/co/coz063.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/co/coz063.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/co/coz063.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/co/coz063.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/co/coz063.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/co/coz063.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/co.txt +station = ('kaej', 0.0013073358167738779) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/co/coz063.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/co/coz063.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/co/coz063.txt + +[coz064] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/co/coz064.txt +centroid = (0.6685710592567039, -1.8623431063650375) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/co/coz064.txt +description = Saguache County West of Continental Divide Below 10000 Ft, CO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/co/coz064.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/co/coz064.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/co/coz064.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/co/coz064.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/co/coz064.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/co/coz064.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/co/coz064.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/co/coz064.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/co.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/co/coz064.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/co/coz064.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/co/coz064.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/co/coz064.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/co/coz064.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/co/coz064.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/co/coz064.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/co.txt +station = ('kguc', 0.0050498733811251452) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/co/coz064.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/co/coz064.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/co/coz064.txt + +[coz065] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/co/coz065.txt +centroid = (0.66509436338673122, -1.8560232691435659) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/co/coz065.txt +description = Saguache County East of Continental Divide Below 10000 Ft, CO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/co/coz065.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/co/coz065.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/co/coz065.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/co/coz065.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/co/coz065.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/co/coz065.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/co/coz065.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/co/coz065.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/co.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/co/coz065.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/co/coz065.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/co/coz065.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/co/coz065.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/co/coz065.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/co/coz065.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/co/coz065.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/co.txt +station = ('k04v', 0.0023916993387356907) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/co/coz065.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/co/coz065.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/co/coz065.txt + +[coz066] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/co/coz066.txt +centroid = (0.6636247961565519, -1.8628213265800839) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/co/coz066.txt +description = La Garita Mountains Above 10000 Ft, CO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/co/coz066.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/co/coz066.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/co/coz066.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/co/coz066.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/co/coz066.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/co/coz066.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/co/coz066.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/co/coz066.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/co.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/co/coz066.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/co/coz066.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/co/coz066.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/co/coz066.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/co/coz066.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/co/coz066.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/co/coz066.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/co.txt +station = ('k04v', 0.0078473442336118113) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/co/coz066.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/co/coz066.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/co/coz066.txt + +[coz067] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/co/coz067.txt +centroid = (0.65395741742975533, -1.8594964743550348) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/co/coz067.txt +description = Upper Rio Grande Valley/Eastern San Juan Mountains Below 10000 Ft, CO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/co/coz067.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/co/coz067.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/co/coz067.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/co/coz067.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/co/coz067.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/co/coz067.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/co/coz067.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/co/coz067.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/co.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/co/coz067.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/co/coz067.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/co/coz067.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/co/coz067.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/co/coz067.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/co/coz067.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/co/coz067.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/co.txt +station = ('kcpw', 0.0036010206754269023) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/co/coz067.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/co/coz067.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/co/coz067.txt + +[coz068] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/co/coz068.txt +centroid = (0.65322786980242165, -1.8622698025364535) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/co/coz068.txt +description = Eastern San Juan Mountains Above 10000 Ft, CO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/co/coz068.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/co/coz068.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/co/coz068.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/co/coz068.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/co/coz068.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/co/coz068.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/co/coz068.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/co/coz068.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/co.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/co/coz068.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/co/coz068.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/co/coz068.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/co/coz068.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/co/coz068.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/co/coz068.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/co/coz068.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/co.txt +station = ('kcpw', 0.0014496993531378124) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/co/coz068.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/co/coz068.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/co/coz068.txt + +[coz069] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/co/coz069.txt +centroid = (0.66174507655215398, -1.8506546363644314) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/co/coz069.txt +description = Del Norte Vicinity/Northern San Luis Valley Below 8500 Ft, CO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/co/coz069.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/co/coz069.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/co/coz069.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/co/coz069.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/co/coz069.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/co/coz069.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/co/coz069.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/co/coz069.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/co.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/co/coz069.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/co/coz069.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/co/coz069.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/co/coz069.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/co/coz069.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/co/coz069.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/co/coz069.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/co.txt +station = ('k04v', 0.0036720566817190453) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/co/coz069.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/co/coz069.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/co/coz069.txt + +[coz070] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/co/coz070.txt +centroid = (0.65557010165859808, -1.8481797594851033) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/co/coz070.txt +description = Alamosa Vicinity/Central San Luis Valley Below 8500 Ft, CO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/co/coz070.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/co/coz070.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/co/coz070.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/co/coz070.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/co/coz070.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/co/coz070.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/co/coz070.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/co/coz070.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/co.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/co/coz070.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/co/coz070.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/co/coz070.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/co/coz070.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/co/coz070.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/co/coz070.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/co/coz070.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/co.txt +station = ('kals', 0.0022645102657026166) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/co/coz070.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/co/coz070.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/co/coz070.txt + +[coz071] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/co/coz071.txt +centroid = (0.64965343549433729, -1.8457502611663272) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/co/coz071.txt +description = Southern San Luis Valley, CO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/co/coz071.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/co/coz071.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/co/coz071.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/co/coz071.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/co/coz071.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/co/coz071.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/co/coz071.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/co/coz071.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/co.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/co/coz071.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/co/coz071.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/co/coz071.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/co/coz071.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/co/coz071.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/co/coz071.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/co/coz071.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/co.txt +station = ('kals', 0.0040014137713263592) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/co/coz071.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/co/coz071.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/co/coz071.txt + +[coz072] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/co/coz072.txt +centroid = (0.66151120243238681, -1.8419838406405233) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/co/coz072.txt +description = Northern Sangre De Cristo Mountains Between 8500 And 11000 Ft, CO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/co/coz072.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/co/coz072.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/co/coz072.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/co/coz072.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/co/coz072.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/co/coz072.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/co/coz072.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/co/coz072.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/co.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/co/coz072.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/co/coz072.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/co/coz072.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/co/coz072.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/co/coz072.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/co/coz072.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/co/coz072.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/co.txt +station = ('k04v', 0.0093209015823541106) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/co/coz072.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/co/coz072.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/co/coz072.txt + +[coz073] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/co/coz073.txt +centroid = (0.66281845404213058, -1.8433643960788511) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/co/coz073.txt +description = Northern Sangre De Cristo Mountains Above 11000 Feet, CO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/co/coz073.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/co/coz073.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/co/coz073.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/co/coz073.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/co/coz073.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/co/coz073.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/co/coz073.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/co/coz073.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/co.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/co/coz073.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/co/coz073.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/co/coz073.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/co/coz073.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/co/coz073.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/co/coz073.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/co/coz073.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/co.txt +station = ('k04v', 0.0078690380970989262) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/co/coz073.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/co/coz073.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/co/coz073.txt + +[coz074] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/co/coz074.txt +centroid = (0.64969008740862921, -1.8330442642118085) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/co/coz074.txt +description = Southern Sangre De Cristo Mountains Between 7500 and 11000 Ft, CO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/co/coz074.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/co/coz074.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/co/coz074.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/co/coz074.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/co/coz074.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/co/coz074.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/co/coz074.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/co/coz074.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/co.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/co/coz074.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/co/coz074.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/co/coz074.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/co/coz074.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/co/coz074.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/co/coz074.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/co/coz074.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/co.txt +station = ('ktad', 0.0082629721880396433) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/co/coz074.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/co/coz074.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/co/coz074.txt + +[coz075] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/co/coz075.txt +centroid = (0.64934276688748227, -1.8355767369564524) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/co/coz075.txt +description = Southern Sangre De Cristo Mountains Above 11000 Ft, CO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/co/coz075.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/co/coz075.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/co/coz075.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/co/coz075.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/co/coz075.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/co/coz075.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/co/coz075.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/co/coz075.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/co.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/co/coz075.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/co/coz075.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/co/coz075.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/co/coz075.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/co/coz075.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/co/coz075.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/co/coz075.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/co.txt +station = ('ktad', 0.010304541583067648) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/co/coz075.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/co/coz075.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/co/coz075.txt + +[coz076] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/co/coz076.txt +centroid = (0.67371628989158316, -1.8438967215007092) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/co/coz076.txt +description = Northwestern Fremont County above 8500 Ft, CO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/co/coz076.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/co/coz076.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/co/coz076.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/co/coz076.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/co/coz076.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/co/coz076.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/co/coz076.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/co/coz076.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/co.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/co/coz076.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/co/coz076.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/co/coz076.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/co/coz076.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/co/coz076.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/co/coz076.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/co/coz076.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/co.txt +station = ('kank', 0.0056312024061879002) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/co/coz076.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/co/coz076.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/co/coz076.txt + +[coz077] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/co/coz077.txt +centroid = (0.67063927442031712, -1.8422962545766306) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/co/coz077.txt +description = Western/Central Fremont County Below 8500 Ft, CO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/co/coz077.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/co/coz077.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/co/coz077.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/co/coz077.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/co/coz077.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/co/coz077.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/co/coz077.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/co/coz077.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/co.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/co/coz077.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/co/coz077.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/co/coz077.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/co/coz077.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/co/coz077.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/co/coz077.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/co/coz077.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/co.txt +station = ('kank', 0.0069976069123272502) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/co/coz077.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/co/coz077.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/co/coz077.txt + +[coz078] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/co/coz078.txt +centroid = (0.66558654623579361, -1.8404531868865244) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/co/coz078.txt +description = Wet Mountain Valley Below 8500 Feet, CO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/co/coz078.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/co/coz078.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/co/coz078.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/co/coz078.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/co/coz078.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/co/coz078.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/co/coz078.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/co/coz078.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/co.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/co/coz078.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/co/coz078.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/co/coz078.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/co/coz078.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/co/coz078.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/co/coz078.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/co/coz078.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/co.txt +station = ('k04v', 0.0098872337107549727) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/co/coz078.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/co/coz078.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/co/coz078.txt + +[coz079] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/co/coz079.txt +centroid = (0.66402796721376256, -1.8351596032652258) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/co/coz079.txt +description = Wet Mountains Between 6300 and 10000 Ft, CO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/co/coz079.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/co/coz079.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/co/coz079.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/co/coz079.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/co/coz079.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/co/coz079.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/co/coz079.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/co/coz079.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/co.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/co/coz079.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/co/coz079.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/co/coz079.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/co/coz079.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/co/coz079.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/co/coz079.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/co/coz079.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/co.txt +station = ('kpub', 0.0097958957465856047) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/co/coz079.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/co/coz079.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/co/coz079.txt + +[coz080] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/co/coz080.txt +centroid = (0.66302963888162181, -1.8349431824379785) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/co/coz080.txt +description = Wet Mountains Above 10000 Ft, CO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/co/coz080.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/co/coz080.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/co/coz080.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/co/coz080.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/co/coz080.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/co/coz080.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/co/coz080.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/co/coz080.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/co.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/co/coz080.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/co/coz080.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/co/coz080.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/co/coz080.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/co/coz080.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/co/coz080.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/co/coz080.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/co.txt +station = ('kpub', 0.010114058057502815) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/co/coz080.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/co/coz080.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/co/coz080.txt + +[coz081] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/co/coz081.txt +centroid = (0.67842344288421186, -1.8345679366487997) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/co/coz081.txt +description = Teller County/Rampart Range above 7500 Ft/Pikes Peak Between 7500 And 11000 Ft, CO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/co/coz081.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/co/coz081.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/co/coz081.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/co/coz081.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/co/coz081.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/co/coz081.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/co/coz081.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/co/coz081.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/co.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/co/coz081.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/co/coz081.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/co/coz081.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/co/coz081.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/co/coz081.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/co/coz081.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/co/coz081.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/co.txt +station = ('kaff', 0.0043579990995423548) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/co/coz081.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/co/coz081.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/co/coz081.txt + +[coz082] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/co/coz082.txt +centroid = (0.67746002113711101, -1.8334055473669715) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/co/coz082.txt +description = PIkes Peak above 11000 Ft, CO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/co/coz082.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/co/coz082.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/co/coz082.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/co/coz082.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/co/coz082.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/co/coz082.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/co/coz082.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/co/coz082.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/co.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/co/coz082.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/co/coz082.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/co/coz082.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/co/coz082.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/co/coz082.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/co/coz082.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/co/coz082.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/co.txt +station = ('kaff', 0.0040854999626680029) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/co/coz082.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/co/coz082.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/co/coz082.txt + +[coz083] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/co/coz083.txt +centroid = (0.67097961362445602, -1.8345993525753355) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/co/coz083.txt +description = Canon City Vicinity/Eastern Fremont County, CO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/co/coz083.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/co/coz083.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/co/coz083.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/co/coz083.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/co/coz083.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/co/coz083.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/co/coz083.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/co/coz083.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/co.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/co/coz083.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/co/coz083.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/co/coz083.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/co/coz083.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/co/coz083.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/co/coz083.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/co/coz083.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/co.txt +station = ('kfcs', 0.0065178965027694116) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/co/coz083.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/co/coz083.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/co/coz083.txt + +[coz084] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/co/coz084.txt +centroid = (0.68089482910503585, -1.8229929130495732) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/co/coz084.txt +description = Northern El Paso County/Monument Ridge/Rampart Range Below 7500 Ft, CO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/co/coz084.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/co/coz084.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/co/coz084.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/co/coz084.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/co/coz084.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/co/coz084.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/co/coz084.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/co/coz084.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/co.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/co/coz084.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/co/coz084.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/co/coz084.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/co/coz084.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/co/coz084.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/co/coz084.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/co/coz084.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/co.txt +station = ('kfly', 0.0019610210037411466) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/co/coz084.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/co/coz084.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/co/coz084.txt + +[coz085] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/co/coz085.txt +centroid = (0.67566058667830475, -1.8239284095286421) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/co/coz085.txt +description = Colorado Springs Vicinity/Southern El Paso County/Rampart Range Below 7400 Ft, CO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/co/coz085.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/co/coz085.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/co/coz085.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/co/coz085.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/co/coz085.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/co/coz085.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/co/coz085.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/co/coz085.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/co.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/co/coz085.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/co/coz085.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/co/coz085.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/co/coz085.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/co/coz085.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/co/coz085.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/co/coz085.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/co.txt +station = ('kcos', 0.0034247086212163221) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/co/coz085.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/co/coz085.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/co/coz085.txt + +[coz086] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/co/coz086.txt +centroid = (0.66640336032572689, -1.823645666189819) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/co/coz086.txt +description = Pueblo and Vicinity/Pueblo County Below 6300 Ft, CO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/co/coz086.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/co/coz086.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/co/coz086.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/co/coz086.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/co/coz086.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/co/coz086.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/co/coz086.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/co/coz086.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/co.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/co/coz086.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/co/coz086.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/co/coz086.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/co/coz086.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/co/coz086.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/co/coz086.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/co/coz086.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/co.txt +station = ('kpub', 0.0017755480417594124) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/co/coz086.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/co/coz086.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/co/coz086.txt + +[coz087] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/co/coz087.txt +centroid = (0.65781284974741083, -1.83011385639771) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/co/coz087.txt +description = Walsenburg Vicinity/Upper Huerfano River Basin Below 7500 Ft, CO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/co/coz087.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/co/coz087.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/co/coz087.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/co/coz087.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/co/coz087.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/co/coz087.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/co/coz087.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/co/coz087.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/co.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/co/coz087.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/co/coz087.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/co/coz087.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/co/coz087.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/co/coz087.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/co/coz087.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/co/coz087.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/co.txt +station = ('ktad', 0.0094408073737218927) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/co/coz087.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/co/coz087.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/co/coz087.txt + +[coz088] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/co/coz088.txt +centroid = (0.65194679813145784, -1.8220102926807005) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/co/coz088.txt +description = Trinidad Vicinity/Western Las Animas County Below 7500 Ft, CO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/co/coz088.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/co/coz088.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/co/coz088.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/co/coz088.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/co/coz088.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/co/coz088.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/co/coz088.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/co/coz088.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/co.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/co/coz088.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/co/coz088.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/co/coz088.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/co/coz088.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/co/coz088.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/co/coz088.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/co/coz088.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/co.txt +station = ('ktad', 0.0016181724349567904) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/co/coz088.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/co/coz088.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/co/coz088.txt + +[coz089] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/co/coz089.txt +centroid = (0.66892536109485867, -1.8113882188530628) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/co/coz089.txt +description = Crowley County, CO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/co/coz089.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/co/coz089.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/co/coz089.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/co/coz089.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/co/coz089.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/co/coz089.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/co/coz089.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/co/coz089.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/co.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/co/coz089.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/co/coz089.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/co/coz089.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/co/coz089.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/co/coz089.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/co/coz089.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/co/coz089.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/co.txt +station = ('klhx', 0.0060700146806609923) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/co/coz089.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/co/coz089.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/co/coz089.txt + +[coz090] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/co/coz090.txt +centroid = (0.69818231534603958, -1.7876412690504282) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/co/coz090.txt +description = Yuma County, CO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/co/coz090.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/co/coz090.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/co/coz090.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/co/coz090.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/co/coz090.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/co/coz090.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/co/coz090.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/co/coz090.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/co.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/co/coz090.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/co/coz090.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/co/coz090.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/co/coz090.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/co/coz090.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/co/coz090.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/co/coz090.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/co.txt +station = ('k2v5', 0.003100063640322575) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/co/coz090.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/co/coz090.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/co/coz090.txt + +[coz091] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/co/coz091.txt +centroid = (0.68600864381337923, -1.7907584270944901) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/co/coz091.txt +description = Kit Carson County, CO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/co/coz091.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/co/coz091.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/co/coz091.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/co/coz091.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/co/coz091.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/co/coz091.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/co/coz091.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/co/coz091.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/co.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/co/coz091.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/co/coz091.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/co/coz091.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/co/coz091.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/co/coz091.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/co/coz091.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/co/coz091.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/co.txt +station = ('kitr', 0.0044244056970534707) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/co/coz091.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/co/coz091.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/co/coz091.txt + +[coz092] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/co/coz092.txt +centroid = (0.67767469663510627, -1.7907671537407499) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/co/coz092.txt +description = Cheyenne County, CO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/co/coz092.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/co/coz092.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/co/coz092.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/co/coz092.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/co/coz092.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/co/coz092.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/co/coz092.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/co/coz092.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/co.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/co/coz092.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/co/coz092.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/co/coz092.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/co/coz092.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/co/coz092.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/co/coz092.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/co/coz092.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/co.txt +station = ('kitr', 0.0085498019968625397) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/co/coz092.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/co/coz092.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/co/coz092.txt + +[coz093] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/co/coz093.txt +centroid = (0.66152691039565481, -1.8101926683154468) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/co/coz093.txt +description = La Junta Vicinity/Otero County, CO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/co/coz093.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/co/coz093.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/co/coz093.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/co/coz093.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/co/coz093.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/co/coz093.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/co/coz093.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/co/coz093.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/co.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/co/coz093.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/co/coz093.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/co/coz093.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/co/coz093.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/co/coz093.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/co/coz093.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/co/coz093.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/co.txt +station = ('klhx', 0.0037630150342368093) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/co/coz093.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/co/coz093.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/co/coz093.txt + +[coz094] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/co/coz094.txt +centroid = (0.6513935287585757, -1.8075415131816674) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/co/coz094.txt +description = Eastern Las Animas County, CO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/co/coz094.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/co/coz094.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/co/coz094.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/co/coz094.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/co/coz094.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/co/coz094.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/co/coz094.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/co/coz094.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/co.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/co/coz094.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/co/coz094.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/co/coz094.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/co/coz094.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/co/coz094.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/co/coz094.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/co/coz094.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/co.txt +station = ('ktad', 0.012102153388994633) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/co/coz094.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/co/coz094.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/co/coz094.txt + +[coz095] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/co/coz095.txt +centroid = (0.67062531178630114, -1.7992930871367421) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/co/coz095.txt +description = Western Kiowa County, CO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/co/coz095.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/co/coz095.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/co/coz095.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/co/coz095.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/co/coz095.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/co/coz095.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/co/coz095.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/co/coz095.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/co.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/co/coz095.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/co/coz095.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/co/coz095.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/co/coz095.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/co/coz095.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/co/coz095.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/co/coz095.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/co.txt +station = ('klaa', 0.0083820644034568528) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/co/coz095.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/co/coz095.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/co/coz095.txt + +[coz096] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/co/coz096.txt +centroid = (0.67092899907614822, -1.787026913153726) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/co/coz096.txt +description = Eastern Kiowa County, CO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/co/coz096.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/co/coz096.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/co/coz096.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/co/coz096.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/co/coz096.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/co/coz096.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/co/coz096.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/co/coz096.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/co.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/co/coz096.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/co/coz096.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/co/coz096.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/co/coz096.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/co/coz096.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/co/coz096.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/co/coz096.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/co.txt +station = ('klaa', 0.0076836174179210773) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/co/coz096.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/co/coz096.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/co/coz096.txt + +[coz097] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/co/coz097.txt +centroid = (0.66244146292369976, -1.7989405306278394) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/co/coz097.txt +description = Las Animas Vicinity/Bent County, CO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/co/coz097.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/co/coz097.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/co/coz097.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/co/coz097.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/co/coz097.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/co/coz097.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/co/coz097.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/co/coz097.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/co.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/co/coz097.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/co/coz097.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/co/coz097.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/co/coz097.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/co/coz097.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/co/coz097.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/co/coz097.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/co.txt +station = ('klhx', 0.0063397632563097382) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/co/coz097.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/co/coz097.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/co/coz097.txt + +[coz098] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/co/coz098.txt +centroid = (0.66244320825295178, -1.7871002169823098) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/co/coz098.txt +description = Lamar Vicinity/Prowers County, CO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/co/coz098.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/co/coz098.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/co/coz098.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/co/coz098.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/co/coz098.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/co/coz098.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/co/coz098.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/co/coz098.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/co.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/co/coz098.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/co/coz098.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/co/coz098.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/co/coz098.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/co/coz098.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/co/coz098.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/co/coz098.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/co.txt +station = ('klaa', 0.0044375309317984781) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/co/coz098.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/co/coz098.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/co/coz098.txt + +[coz099] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/co/coz099.txt +centroid = (0.65134291421026791, -1.7900184074916445) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/co/coz099.txt +description = Springfield Vicinity/Baca County, CO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/co/coz099.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/co/coz099.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/co/coz099.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/co/coz099.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/co/coz099.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/co/coz099.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/co/coz099.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/co/coz099.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/co.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/co/coz099.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/co/coz099.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/co/coz099.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/co/coz099.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/co/coz099.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/co/coz099.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/co/coz099.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/co.txt +station = ('kspd', 0.0009999642644881858) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/co/coz099.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/co/coz099.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/co/coz099.txt + +[ctz001] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ct/ctz001.txt +centroid = (0.73103290252707698, -1.2784571677443506) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ct/ctz001.txt +description = Northern Litchfield, CT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ct/ctz001.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ct/ctz001.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ct/ctz001.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ct/ctz001.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ct/ctz001.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ct/ctz001.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ct/ctz001.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ct/ctz001.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ct.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ct/ctz001.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ct/ctz001.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ct/ctz001.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ct/ctz001.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ct/ctz001.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ct/ctz001.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ct/ctz001.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ct.txt +station = ('koxc', 0.0071756997720525111) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ct/ctz001.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ct/ctz001.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ct/ctz001.txt + +[ctz002] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ct/ctz002.txt +centroid = (0.72965932840575731, -1.2694268341945316) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ct/ctz002.txt +description = Hartford, CT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ct/ctz002.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ct/ctz002.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ct/ctz002.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ct/ctz002.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ct/ctz002.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ct/ctz002.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ct/ctz002.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ct/ctz002.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ct.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ct/ctz002.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ct/ctz002.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ct/ctz002.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ct/ctz002.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ct/ctz002.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ct/ctz002.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ct/ctz002.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ct.txt +station = ('khfd', 0.0016697196794856943) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ct/ctz002.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ct/ctz002.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ct/ctz002.txt + +[ctz003] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ct/ctz003.txt +centroid = (0.73050755842222659, -1.2625100943688783) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ct/ctz003.txt +description = Tolland, CT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ct/ctz003.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ct/ctz003.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ct/ctz003.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ct/ctz003.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ct/ctz003.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ct/ctz003.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ct/ctz003.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ct/ctz003.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ct.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ct/ctz003.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ct/ctz003.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ct/ctz003.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ct/ctz003.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ct/ctz003.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ct/ctz003.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ct/ctz003.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ct.txt +station = ('kijd', 0.0027073152708788459) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ct/ctz003.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ct/ctz003.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ct/ctz003.txt + +[ctz004] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ct/ctz004.txt +centroid = (0.73007122610922803, -1.256418895279418) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ct/ctz004.txt +description = Windham, CT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ct/ctz004.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ct/ctz004.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ct/ctz004.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ct/ctz004.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ct/ctz004.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ct/ctz004.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ct/ctz004.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ct/ctz004.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ct.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ct/ctz004.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ct/ctz004.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ct/ctz004.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ct/ctz004.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ct/ctz004.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ct/ctz004.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ct/ctz004.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ct.txt +station = ('kijd', 0.0029058255729352499) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ct/ctz004.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ct/ctz004.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ct/ctz004.txt + +[ctz005] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ct/ctz005.txt +centroid = (0.72174600557721513, -1.2804241538113479) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ct/ctz005.txt +description = Northern Fairfield, CT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ct/ctz005.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ct/ctz005.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ct/ctz005.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ct/ctz005.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ct/ctz005.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ct/ctz005.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ct/ctz005.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ct/ctz005.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ct.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ct/ctz005.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ct/ctz005.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ct/ctz005.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ct/ctz005.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ct/ctz005.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ct/ctz005.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ct/ctz005.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ct.txt +station = ('kdxr', 0.0015956056942770188) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ct/ctz005.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ct/ctz005.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ct/ctz005.txt + +[ctz006] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ct/ctz006.txt +centroid = (0.72369728368094466, -1.2740135594687727) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ct/ctz006.txt +description = Northern New Haven, CT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ct/ctz006.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ct/ctz006.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ct/ctz006.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ct/ctz006.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ct/ctz006.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ct/ctz006.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ct/ctz006.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ct/ctz006.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ct.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ct/ctz006.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ct/ctz006.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ct/ctz006.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ct/ctz006.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ct/ctz006.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ct/ctz006.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ct/ctz006.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ct.txt +station = ('kmmk', 0.0023064804583825954) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ct/ctz006.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ct/ctz006.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ct/ctz006.txt + +[ctz007] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ct/ctz007.txt +centroid = (0.72427149700485094, -1.2663253841137376) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ct/ctz007.txt +description = Northern Middlesex, CT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ct/ctz007.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ct/ctz007.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ct/ctz007.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ct/ctz007.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ct/ctz007.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ct/ctz007.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ct/ctz007.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ct/ctz007.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ct.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ct/ctz007.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ct/ctz007.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ct/ctz007.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ct/ctz007.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ct/ctz007.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ct/ctz007.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ct/ctz007.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ct.txt +station = ('ksnc', 0.0020883475102556164) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ct/ctz007.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ct/ctz007.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ct/ctz007.txt + +[ctz008] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ct/ctz008.txt +centroid = (0.72486490895052902, -1.2583684280538956) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ct/ctz008.txt +description = Northern New London, CT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ct/ctz008.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ct/ctz008.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ct/ctz008.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ct/ctz008.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ct/ctz008.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ct/ctz008.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ct/ctz008.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ct/ctz008.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ct.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ct/ctz008.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ct/ctz008.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ct/ctz008.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ct/ctz008.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ct/ctz008.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ct/ctz008.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ct/ctz008.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ct.txt +station = ('kgon', 0.003521500974782433) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ct/ctz008.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ct/ctz008.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ct/ctz008.txt + +[ctz009] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ct/ctz009.txt +centroid = (0.71785566667451972, -1.2816825362020359) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ct/ctz009.txt +description = Southern Fairfield, CT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ct/ctz009.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ct/ctz009.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ct/ctz009.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ct/ctz009.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ct/ctz009.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ct/ctz009.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ct/ctz009.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ct/ctz009.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ct.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ct/ctz009.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ct/ctz009.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ct/ctz009.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ct/ctz009.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ct/ctz009.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ct/ctz009.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ct/ctz009.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ct.txt +station = ('kbdr', 0.0040156819264368154) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ct/ctz009.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ct/ctz009.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ct/ctz009.txt + +[ctz010] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ct/ctz010.txt +centroid = (0.72100947663287351, -1.2708684761566791) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ct/ctz010.txt +description = Southern New Haven, CT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ct/ctz010.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ct/ctz010.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ct/ctz010.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ct/ctz010.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ct/ctz010.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ct/ctz010.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ct/ctz010.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ct/ctz010.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ct.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ct/ctz010.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ct/ctz010.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ct/ctz010.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ct/ctz010.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ct/ctz010.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ct/ctz010.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ct/ctz010.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ct.txt +station = ('khvn', 0.0011777172418055014) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ct/ctz010.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ct/ctz010.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ct/ctz010.txt + +[ctz011] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ct/ctz011.txt +centroid = (0.72118924554582897, -1.2644875524113877) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ct/ctz011.txt +description = Southern Middlesex, CT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ct/ctz011.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ct/ctz011.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ct/ctz011.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ct/ctz011.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ct/ctz011.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ct/ctz011.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ct/ctz011.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ct/ctz011.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ct.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ct/ctz011.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ct/ctz011.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ct/ctz011.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ct/ctz011.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ct/ctz011.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ct/ctz011.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ct/ctz011.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ct.txt +station = ('ksnc', 0.0013190406066677387) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ct/ctz011.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ct/ctz011.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ct/ctz011.txt + +[ctz012] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ct/ctz012.txt +centroid = (0.7218943585636346, -1.2584417318824792) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ct/ctz012.txt +description = Southern New London, CT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ct/ctz012.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ct/ctz012.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ct/ctz012.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ct/ctz012.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ct/ctz012.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ct/ctz012.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ct/ctz012.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ct/ctz012.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ct.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ct/ctz012.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ct/ctz012.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ct/ctz012.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ct/ctz012.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ct/ctz012.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ct/ctz012.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ct/ctz012.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ct.txt +station = ('kgon', 0.00085511064312976609) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ct/ctz012.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ct/ctz012.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ct/ctz012.txt + +[ctz013] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ct/ctz013.txt +centroid = (0.72665736209232712, -1.2782232936245832) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ct/ctz013.txt +description = Southern Litchfield, CT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ct/ctz013.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ct/ctz013.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ct/ctz013.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ct/ctz013.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ct/ctz013.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ct/ctz013.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ct/ctz013.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ct/ctz013.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ct.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ct/ctz013.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ct/ctz013.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ct/ctz013.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ct/ctz013.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ct/ctz013.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ct/ctz013.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ct/ctz013.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ct.txt +station = ('koxc', 0.0029627039759460988) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ct/ctz013.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ct/ctz013.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ct/ctz013.txt + +[dcz001] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/dc/dcz001.txt +centroid = (0.6790953946462297, -1.3441583421064249) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/dc/dcz001.txt +description = District of Columbia, DC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/dc/dcz001.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/dc/dcz001.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/dc/dcz001.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/dc/dcz001.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/dc/dcz001.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/dc/dcz001.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/dc/dcz001.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/dc/dcz001.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/dc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/dc/dcz001.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/dc/dcz001.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/dc/dcz001.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/dc/dcz001.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/dc/dcz001.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/dc/dcz001.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/dc/dcz001.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/dc.txt +station = ('kdca', 0.001065817797886103) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/dc/dcz001.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/dc/dcz001.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/dc/dcz001.txt + +[dez001] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/de/dez001.txt +centroid = (0.69081877123187563, -1.3203223805119384) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/de/dez001.txt +description = New Castle, DE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/de/dez001.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/de/dez001.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/de/dez001.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/de/dez001.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/de/dez001.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/de/dez001.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/de/dez001.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/de/dez001.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/de.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/de/dez001.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/de/dez001.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/de/dez001.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/de/dez001.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/de/dez001.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/de/dez001.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/de/dez001.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/de.txt +station = ('kilg', 0.0016332998572441328) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/de/dez001.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/de/dez001.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/de/dez001.txt + +[dez002] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/de/dez002.txt +centroid = (0.68219160873926765, -1.3189243717810908) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/de/dez002.txt +description = Kent, DE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/de/dez002.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/de/dez002.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/de/dez002.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/de/dez002.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/de/dez002.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/de/dez002.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/de/dez002.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/de/dez002.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/de.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/de/dez002.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/de/dez002.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/de/dez002.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/de/dez002.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/de/dez002.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/de/dez002.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/de/dez002.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/de.txt +station = ('kdov', 0.0016048548035464223) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/de/dez002.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/de/dez002.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/de/dez002.txt + +[dez003] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/de/dez003.txt +centroid = (0.67483679127136353, -1.3162941605983354) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/de/dez003.txt +description = Inland Sussex, DE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/de/dez003.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/de/dez003.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/de/dez003.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/de/dez003.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/de/dez003.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/de/dez003.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/de/dez003.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/de/dez003.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/de.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/de/dez003.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/de/dez003.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/de/dez003.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/de/dez003.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/de/dez003.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/de/dez003.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/de/dez003.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/de.txt +station = ('kged', 0.00076825991663661327) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/de/dez003.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/de/dez003.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/de/dez003.txt + +[dez004] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/de/dez004.txt +centroid = (0.67389605880453862, -1.3106008965783298) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/de/dez004.txt +description = Delaware Beaches, DE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/de/dez004.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/de/dez004.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/de/dez004.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/de/dez004.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/de/dez004.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/de/dez004.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/de/dez004.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/de/dez004.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/de.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/de/dez004.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/de/dez004.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/de/dez004.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/de/dez004.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/de/dez004.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/de/dez004.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/de/dez004.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/de.txt +station = ('kged', 0.0039501906923299262) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/de/dez004.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/de/dez004.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/de/dez004.txt + +[flz001] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz001.txt +centroid = (0.53882677332194939, -1.5259832529206903) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz001.txt +description = Inland Escambia, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz001.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz001.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz001.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz001.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz001.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz001.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz001.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz001.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz001.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz001.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz001.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz001.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz001.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz001.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz001.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('kndz', 0.0069224157227956804) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz001.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz001.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz001.txt + +[flz002] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz002.txt +centroid = (0.53249995478347001, -1.5239621616468806) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz002.txt +description = Coastal Escambia, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz002.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz002.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz002.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz002.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz002.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz002.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz002.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz002.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz002.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz002.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz002.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz002.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz002.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz002.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz002.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('kpns', 0.0020575000622513238) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz002.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz002.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz002.txt + +[flz003] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz003.txt +centroid = (0.53843931022800662, -1.5190647677657847) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz003.txt +description = Inland Santa Rosa, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz003.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz003.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz003.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz003.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz003.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz003.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz003.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz003.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz003.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz003.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz003.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz003.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz003.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz003.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz003.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('knse', 0.0020619294696294361) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz003.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz003.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz003.txt + +[flz004] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz004.txt +centroid = (0.53369725065033813, -1.5183107855289231) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz004.txt +description = Coastal Santa Rosa, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz004.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz004.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz004.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz004.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz004.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz004.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz004.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz004.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz004.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz004.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz004.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz004.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz004.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz004.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz004.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('kndz', 0.0021489272970118658) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz004.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz004.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz004.txt + +[flz005] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz005.txt +centroid = (0.53846374483753456, -1.511270127326378) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz005.txt +description = Inland Okaloosa, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz005.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz005.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz005.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz005.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz005.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz005.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz005.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz005.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz005.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz005.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz005.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz005.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz005.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz005.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz005.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('kcew', 0.0018415537825342758) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz005.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz005.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz005.txt + +[flz006] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz006.txt +centroid = (0.53342497928702692, -1.511514473421657) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz006.txt +description = Coastal Okaloosa, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz006.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz006.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz006.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz006.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz006.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz006.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz006.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz006.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz006.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz006.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz006.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz006.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz006.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz006.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz006.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('kvps', 0.0019062464978227625) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz006.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz006.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz006.txt + +[flz007] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz007.txt +centroid = (0.53843232891099868, -1.5047059440096273) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz007.txt +description = Inland Walton, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz007.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz007.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz007.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz007.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz007.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz007.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz007.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz007.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz007.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz007.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz007.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz007.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz007.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz007.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz007.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('k0j4', 0.0034545822209101863) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz007.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz007.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz007.txt + +[flz008] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz008.txt +centroid = (0.53394508740412128, -1.5029326894896011) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz008.txt +description = Coastal Walton, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz008.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz008.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz008.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz008.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz008.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz008.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz008.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz008.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz008.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz008.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz008.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz008.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz008.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz008.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz008.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('kecp', 0.0062872307939389575) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz008.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz008.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz008.txt + +[flz009] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz009.txt +centroid = (0.53874648817635762, -1.4977420802941699) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz009.txt +description = Holmes, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz009.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz009.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz009.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz009.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz009.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz009.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz009.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz009.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz009.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz009.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz009.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz009.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz009.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz009.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz009.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('k1j0', 0.0032672070083875045) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz009.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz009.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz009.txt + +[flz010] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz010.txt +centroid = (0.53425750134022831, -1.4951415397086985) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz010.txt +description = Washington, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz010.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz010.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz010.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz010.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz010.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz010.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz010.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz010.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz010.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz010.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz010.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz010.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz010.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz010.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz010.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('k1j0', 0.0040072999658405332) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz010.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz010.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz010.txt + +[flz011] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz011.txt +centroid = (0.53721234376385463, -1.4821562900738605) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz011.txt +description = Jackson, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz011.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz011.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz011.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz011.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz011.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz011.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz011.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz011.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz011.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz011.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz011.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz011.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz011.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz011.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz011.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('kmai', 0.0040368317764779135) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz011.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz011.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz011.txt + +[flz012] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz012.txt +centroid = (0.52998668066059806, -1.4929686047899655) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz012.txt +description = Bay, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz012.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz012.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz012.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz012.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz012.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz012.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz012.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz012.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz012.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz012.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz012.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz012.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz012.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz012.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz012.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('kecp', 0.003896977530101829) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz012.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz012.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz012.txt + +[flz013] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz013.txt +centroid = (0.53068655769064776, -1.486971653480113) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz013.txt +description = Calhoun, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz013.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz013.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz013.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz013.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz013.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz013.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz013.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz013.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz013.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz013.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz013.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz013.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz013.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz013.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz013.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('kmai', 0.0074595364237165351) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz013.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz013.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz013.txt + +[flz014] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz014.txt +centroid = (0.52273832827706568, -1.4862316338772672) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz014.txt +description = Gulf, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz014.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz014.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz014.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz014.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz014.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz014.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz014.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz014.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz014.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz014.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz014.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz014.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz014.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz014.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz014.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('kaaf', 0.0043319457320142515) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz014.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz014.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz014.txt + +[flz015] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz015.txt +centroid = (0.52265978846072592, -1.4811789056927438) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz015.txt +description = Franklin, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz015.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz015.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz015.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz015.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz015.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz015.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz015.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz015.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz015.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz015.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz015.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz015.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz015.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz015.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz015.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('kaaf', 0.0043651196704074186) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz015.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz015.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz015.txt + +[flz016] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz016.txt +centroid = (0.53371295861360601, -1.4767876572947258) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz016.txt +description = Gadsden, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz016.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz016.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz016.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz016.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz016.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz016.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz016.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz016.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz016.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz016.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz016.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz016.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz016.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz016.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz016.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('k2j9', 0.0010217459813232882) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz016.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz016.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz016.txt + +[flz017] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz017.txt +centroid = (0.53159412890168489, -1.4709268416665291) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz017.txt +description = Leon, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz017.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz017.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz017.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz017.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz017.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz017.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz017.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz017.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz017.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz017.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz017.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz017.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz017.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz017.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz017.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('ktlh', 0.001485126500633807) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz017.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz017.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz017.txt + +[flz018] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz018.txt +centroid = (0.53158889291392886, -1.4640956229742232) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz018.txt +description = Jefferson, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz018.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz018.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz018.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz018.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz018.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz018.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz018.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz018.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz018.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz018.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz018.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz018.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz018.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz018.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz018.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('ktlh', 0.0070478912954644113) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz018.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz018.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz018.txt + +[flz019] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz019.txt +centroid = (0.53135152813565767, -1.4568263266396668) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz019.txt +description = Madison, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz019.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz019.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz019.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz019.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz019.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz019.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz019.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz019.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz019.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz019.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz019.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz019.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz019.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz019.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz019.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('kvld', 0.006660521754826512) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz019.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz019.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz019.txt + +[flz020] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz020.txt +centroid = (0.53226259000519871, -1.4477122172857524) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz020.txt +description = Hamilton, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz020.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz020.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz020.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz020.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz020.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz020.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz020.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz020.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz020.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz020.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz020.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz020.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz020.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz020.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz020.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('kvld', 0.006928708781257442) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz020.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz020.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz020.txt + +[flz021] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz021.txt +centroid = (0.52701263961519973, -1.4484749261688741) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz021.txt +description = Suwannee, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz021.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz021.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz021.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz021.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz021.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz021.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz021.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz021.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz021.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz021.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz021.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz021.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz021.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz021.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz021.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('kcty', 0.0099497247781421064) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz021.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz021.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz021.txt + +[flz022] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz022.txt +centroid = (0.52751354911052217, -1.442017207936495) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz022.txt +description = Columbia, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz022.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz022.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz022.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz022.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz022.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz022.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz022.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz022.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz022.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz022.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz022.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz022.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz022.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz022.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz022.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('kgnv', 0.010482473516248916) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz022.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz022.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz022.txt + +[flz023] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz023.txt +centroid = (0.52937581542240009, -1.4361371936865261) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz023.txt +description = Baker, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz023.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz023.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz023.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz023.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz023.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz023.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz023.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz023.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz023.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz023.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz023.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz023.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz023.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz023.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz023.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('kvqq', 0.0064540646375543711) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz023.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz023.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz023.txt + +[flz024] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz024.txt +centroid = (0.53423655738920428, -1.427827681117781) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz024.txt +description = Nassau, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz024.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz024.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz024.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz024.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz024.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz024.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz024.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz024.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz024.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz024.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz024.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz024.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz024.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz024.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz024.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('kjax', 0.0025123149150027917) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz024.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz024.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz024.txt + +[flz025] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz025.txt +centroid = (0.52936185278838421, -1.4254802132738489) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz025.txt +description = Duval, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz025.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz025.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz025.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz025.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz025.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz025.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz025.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz025.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz025.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz025.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz025.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz025.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz025.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz025.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz025.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('knip', 0.0016942513231396055) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz025.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz025.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz025.txt + +[flz026] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz026.txt +centroid = (0.52781200041261311, -1.4814860836410948) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz026.txt +description = Liberty, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz026.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz026.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz026.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz026.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz026.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz026.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz026.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz026.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz026.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz026.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz026.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz026.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz026.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz026.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz026.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('k2j9', 0.0080171712495992545) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz026.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz026.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz026.txt + +[flz027] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz027.txt +centroid = (0.52711910469957146, -1.4738851747486594) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz027.txt +description = Wakulla, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz027.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz027.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz027.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz027.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz027.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz027.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz027.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz027.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz027.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz027.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz027.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz027.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz027.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz027.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz027.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('ktlh', 0.003759338559617572) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz027.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz027.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz027.txt + +[flz028] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz028.txt +centroid = (0.52526381970470148, -1.458688592951545) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz028.txt +description = Taylor, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz028.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz028.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz028.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz028.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz028.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz028.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz028.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz028.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz028.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz028.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz028.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz028.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz028.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz028.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz028.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('k40j', 0.00051139973932709667) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz028.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz028.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz028.txt + +[flz029] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz029.txt +centroid = (0.52334570285675963, -1.4517840704306553) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz029.txt +description = Lafayette, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz029.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz029.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz029.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz029.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz029.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz029.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz029.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz029.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz029.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz029.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz029.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz029.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz029.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz029.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz029.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('kcty', 0.0062679715594340856) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz029.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz029.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz029.txt + +[flz030] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz030.txt +centroid = (0.52436497513992442, -1.437652139477257) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz030.txt +description = Union, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz030.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz030.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz030.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz030.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz030.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz030.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz030.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz030.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz030.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz030.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz030.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz030.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz030.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz030.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz030.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('kgnv', 0.0061483906827796931) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz030.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz030.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz030.txt + +[flz031] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz031.txt +centroid = (0.52272960163080562, -1.4341178477419685) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz031.txt +description = Bradford, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz031.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz031.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz031.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz031.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz031.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz031.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz031.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz031.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz031.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz031.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz031.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz031.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz031.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz031.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz031.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('k42j', 0.0039304763497651669) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz031.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz031.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz031.txt + +[flz032] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz032.txt +centroid = (0.52330381495471179, -1.4286898737682663) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz032.txt +description = Clay, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz032.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz032.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz032.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz032.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz032.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz032.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz032.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz032.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz032.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz032.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz032.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz032.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz032.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz032.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz032.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('kvqq', 0.0041202002886729589) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz032.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz032.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz032.txt + +[flz033] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz033.txt +centroid = (0.52187613562658042, -1.4214642106650097) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz033.txt +description = St. Johns, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz033.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz033.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz033.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz033.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz033.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz033.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz033.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz033.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz033.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz033.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz033.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz033.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz033.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz033.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz033.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('ksgj', 0.001871636185056792) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz033.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz033.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz033.txt + +[flz034] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz034.txt +centroid = (0.51785838768848946, -1.4507787607815066) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz034.txt +description = Dixie, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz034.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz034.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz034.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz034.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz034.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz034.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz034.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz034.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz034.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz034.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz034.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz034.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz034.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz034.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz034.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('kcty', 0.00074935450174326893) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz034.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz034.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz034.txt + +[flz035] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz035.txt +centroid = (0.51881482811858237, -1.4451413472975649) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz035.txt +description = Gilchrist, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz035.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz035.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz035.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz035.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz035.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz035.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz035.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz035.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz035.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz035.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz035.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz035.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz035.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz035.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz035.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('kcty', 0.0048202909737135218) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz035.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz035.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz035.txt + +[flz036] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz036.txt +centroid = (0.51792471020006536, -1.437411284040482) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz036.txt +description = Alachua, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz036.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz036.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz036.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz036.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz036.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz036.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz036.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz036.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz036.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz036.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz036.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz036.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz036.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz036.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz036.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('kgnv', 0.0012082717811818838) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz036.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz036.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz036.txt + +[flz037] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz037.txt +centroid = (0.51676755690599308, -1.4267054344087489) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz037.txt +description = Putnam, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz037.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz037.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz037.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz037.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz037.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz037.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz037.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz037.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz037.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz037.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz037.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz037.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz037.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz037.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz037.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('k42j', 0.005252858270547194) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz037.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz037.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz037.txt + +[flz038] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz038.txt +centroid = (0.51418272428378942, -1.4192057546129291) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz038.txt +description = Flagler, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz038.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz038.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz038.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz038.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz038.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz038.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz038.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz038.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz038.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz038.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz038.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz038.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz038.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz038.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz038.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('kxfl', 0.0015965920328777554) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz038.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz038.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz038.txt + +[flz039] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz039.txt +centroid = (0.51175846195276931, -1.4440592431613284) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz039.txt +description = Levy, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz039.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz039.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz039.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz039.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz039.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz039.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz039.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz039.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz039.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz039.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz039.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz039.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz039.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz039.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz039.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('kcty', 0.0077311476347230604) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz039.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz039.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz039.txt + +[flz040] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz040.txt +centroid = (0.50981591049529962, -1.432161333650483) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz040.txt +description = Marion, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz040.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz040.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz040.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz040.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz040.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz040.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz040.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz040.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz040.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz040.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz040.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz040.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz040.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz040.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz040.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('kocf', 0.0025521678940045303) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz040.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz040.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz040.txt + +[flz041] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz041.txt +centroid = (0.50775816730719836, -1.4200662019341623) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz041.txt +description = Inland Volusia County, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz041.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz041.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz041.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz041.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz041.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz041.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz041.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz041.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz041.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz041.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz041.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz041.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz041.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz041.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz041.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('kded', 0.0012988397757268772) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz041.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz041.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz041.txt + +[flz042] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz042.txt +centroid = (0.50353970650512803, -1.4393259102299196) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz042.txt +description = Citrus, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz042.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz042.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz042.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz042.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz042.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz042.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz042.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz042.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz042.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz042.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz042.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz042.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz042.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz042.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz042.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('kcgc', 0.0016055614106888249) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz042.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz042.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz042.txt + +[flz043] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz043.txt +centroid = (0.50098978046796427, -1.4325837033294657) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz043.txt +description = Sumter, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz043.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz043.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz043.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz043.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz043.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz043.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz043.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz043.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz043.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz043.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz043.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz043.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz043.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz043.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz043.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('kinf', 0.0040204847307098359) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz043.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz043.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz043.txt + +[flz044] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz044.txt +centroid = (0.50494644188223547, -1.4247140137322232) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz044.txt +description = Northern Lake County, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz044.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz044.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz044.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz044.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz044.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz044.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz044.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz044.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz044.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz044.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz044.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz044.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz044.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz044.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz044.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('klee', 0.0034833052799316971) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz044.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz044.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz044.txt + +[flz045] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz045.txt +centroid = (0.49767714554767911, -1.4193680702333646) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz045.txt +description = Orange, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz045.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz045.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz045.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz045.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz045.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz045.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz045.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz045.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz045.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz045.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz045.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz045.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz045.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz045.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz045.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('korl', 0.00063150747109583022) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz045.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz045.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz045.txt + +[flz046] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz046.txt +centroid = (0.50120620129521154, -1.4178391618086175) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz046.txt +description = Seminole, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz046.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz046.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz046.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz046.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz046.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz046.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz046.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz046.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz046.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz046.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz046.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz046.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz046.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz046.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz046.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('ksfb', 0.001176835055489074) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz046.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz046.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz046.txt + +[flz047] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz047.txt +centroid = (0.4895212219531096, -1.4087686856860029) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz047.txt +description = Southern Brevard County, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz047.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz047.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz047.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz047.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz047.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz047.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz047.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz047.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz047.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz047.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz047.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz047.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz047.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz047.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz047.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('kmlb', 0.001374173513359777) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz047.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz047.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz047.txt + +[flz048] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz048.txt +centroid = (0.49834037066343695, -1.4385160774569945) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz048.txt +description = Hernando, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz048.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz048.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz048.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz048.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz048.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz048.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz048.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz048.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz048.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz048.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz048.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz048.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz048.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz048.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz048.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('kbkv', 0.0015681604236447439) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz048.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz048.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz048.txt + +[flz049] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz049.txt +centroid = (0.49409049393483073, -1.437997714669152) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz049.txt +description = Pasco, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz049.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz049.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz049.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz049.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz049.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz049.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz049.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz049.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz049.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz049.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz049.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz049.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz049.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz049.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz049.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('kbkv', 0.0028911511944260935) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz049.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz049.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz049.txt + +[flz050] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz050.txt +centroid = (0.48744078948473235, -1.4437695185054973) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz050.txt +description = Pinellas, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz050.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz050.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz050.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz050.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz050.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz050.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz050.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz050.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz050.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz050.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz050.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz050.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz050.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz050.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz050.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('kpie', 0.00062845509391718673) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz050.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz050.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz050.txt + +[flz051] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz051.txt +centroid = (0.48378077295677646, -1.4378759517738866) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz051.txt +description = Hillsborough, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz051.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz051.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz051.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz051.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz051.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz051.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz051.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz051.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz051.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz051.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz051.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz051.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz051.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz051.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz051.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('kmcf', 0.0029078706829555184) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz051.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz051.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz051.txt + +[flz052] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz052.txt +centroid = (0.48780032731064316, -1.4258956016358233) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz052.txt +description = Polk, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz052.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz052.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz052.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz052.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz052.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz052.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz052.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz052.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz052.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz052.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz052.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz052.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz052.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz052.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz052.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('kbow', 0.0013188555072179812) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz052.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz052.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz052.txt + +[flz053] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz053.txt +centroid = (0.4897865119994127, -1.4163259613471386) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz053.txt +description = Osceola, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz053.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz053.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz053.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz053.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz053.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz053.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz053.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz053.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz053.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz053.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz053.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz053.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz053.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz053.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz053.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('kism', 0.0059409317353803582) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz053.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz053.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz053.txt + +[flz054] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz054.txt +centroid = (0.48333228442553772, -1.4070111391292446) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz054.txt +description = Indian River, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz054.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz054.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz054.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz054.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz054.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz054.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz054.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz054.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz054.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz054.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz054.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz054.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz054.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz054.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz054.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('kvrb', 0.0031677780604366275) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz054.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz054.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz054.txt + +[flz055] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz055.txt +centroid = (0.47946463480311824, -1.4363675771477893) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz055.txt +description = Manatee, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz055.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz055.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz055.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz055.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz055.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz055.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz055.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz055.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz055.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz055.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz055.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz055.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz055.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz055.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz055.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('ksrq', 0.0041000629980427862) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz055.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz055.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz055.txt + +[flz056] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz056.txt +centroid = (0.47983813526304503, -1.427852115727309) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz056.txt +description = Hardee, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz056.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz056.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz056.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz056.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz056.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz056.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz056.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz056.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz056.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz056.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz056.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz056.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz056.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz056.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz056.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('kbow', 0.0079919377437683674) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz056.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz056.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz056.txt + +[flz057] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz057.txt +centroid = (0.4772323586898175, -1.4196665215354556) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz057.txt +description = Highlands, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz057.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz057.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz057.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz057.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz057.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz057.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz057.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz057.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz057.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz057.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz057.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz057.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz057.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz057.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz057.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('kobe', 0.0077215748406900377) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz057.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz057.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz057.txt + +[flz058] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz058.txt +centroid = (0.47871414322476069, -1.4119975448021924) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz058.txt +description = Okeechobee, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz058.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz058.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz058.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz058.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz058.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz058.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz058.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz058.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz058.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz058.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz058.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz058.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz058.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz058.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz058.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('kobe', 0.0029295007408663091) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz058.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz058.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz058.txt + +[flz059] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz059.txt +centroid = (0.47780831734297563, -1.4047038138581081) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz059.txt +description = St. Lucie, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz059.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz059.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz059.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz059.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz059.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz059.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz059.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz059.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz059.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz059.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz059.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz059.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz059.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz059.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz059.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('kfpr', 0.0026581616702621622) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz059.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz059.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz059.txt + +[flz060] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz060.txt +centroid = (0.47439096266757069, -1.43678820149752) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz060.txt +description = Sarasota, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz060.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz060.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz060.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz060.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz060.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz060.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz060.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz060.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz060.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz060.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz060.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz060.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz060.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz060.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz060.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('kvnc', 0.0024593302484403404) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz060.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz060.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz060.txt + +[flz061] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz061.txt +centroid = (0.47449044643493438, -1.4278416437517969) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz061.txt +description = De Soto, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz061.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz061.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz061.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz061.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz061.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz061.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz061.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz061.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz061.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz061.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz061.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz061.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz061.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz061.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz061.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('kpgd', 0.005561733918709318) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz061.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz061.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz061.txt + +[flz062] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz062.txt +centroid = (0.46961225117561028, -1.4293094656527243) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz062.txt +description = Charlotte, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz062.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz062.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz062.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz062.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz062.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz062.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz062.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz062.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz062.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz062.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz062.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz062.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz062.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz062.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz062.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('kpgd', 0.0016679489778884705) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz062.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz062.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz062.txt + +[flz063] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz063.txt +centroid = (0.47054949298393123, -1.4179002483324372) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz063.txt +description = Glades, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz063.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz063.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz063.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz063.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz063.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz063.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz063.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz063.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz063.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz063.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz063.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz063.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz063.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz063.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz063.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('kobe', 0.0080685584588176592) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz063.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz063.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz063.txt + +[flz064] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz064.txt +centroid = (0.47271195592715215, -1.4030579683734776) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz064.txt +description = Martin, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz064.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz064.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz064.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz064.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz064.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz064.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz064.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz064.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz064.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz064.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz064.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz064.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz064.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz064.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz064.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('ksua', 0.0031155376429726394) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz064.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz064.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz064.txt + +[flz065] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz065.txt +centroid = (0.46388233524131284, -1.4280423566157765) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz065.txt +description = Lee, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz065.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz065.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz065.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz065.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz065.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz065.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz065.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz065.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz065.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz065.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz065.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz065.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz065.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz065.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz065.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('kfmy', 0.00072086447591216297) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz065.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz065.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz065.txt + +[flz066] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz066.txt +centroid = (0.46333779251469065, -1.4167151697703333) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz066.txt +description = Hendry, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz066.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz066.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz066.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz066.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz066.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz066.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz066.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz066.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz066.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz066.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz066.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz066.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz066.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz066.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz066.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('krsw', 0.009291478081538903) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz066.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz066.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz066.txt + +[flz067] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz067.txt +centroid = (0.4645577776618347, -1.4051802887439029) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz067.txt +description = Palm Beach Western, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz067.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz067.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz067.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz067.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz067.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz067.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz067.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz067.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz067.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz067.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz067.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz067.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz067.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz067.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz067.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('kpbi', 0.0065127542647884047) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz067.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz067.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz067.txt + +[flz068] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz068.txt +centroid = (0.46464504412443441, -1.3988185636203834) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz068.txt +description = Palm Beach Eastern, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz068.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz068.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz068.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz068.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz068.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz068.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz068.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz068.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz068.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz068.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz068.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz068.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz068.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz068.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz068.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('kpbi', 0.001289302527195238) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz068.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz068.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz068.txt + +[flz069] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz069.txt +centroid = (0.45404740490632484, -1.4242183402246567) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz069.txt +description = Western Collier, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz069.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz069.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz069.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz069.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz069.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz069.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz069.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz069.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz069.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz069.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz069.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz069.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz069.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz069.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz069.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('kapf', 0.0034984328383461522) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz069.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz069.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz069.txt + +[flz070] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz070.txt +centroid = (0.45619415988627787, -1.4188305088237505) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz070.txt +description = Eastern Collier, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz070.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz070.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz070.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz070.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz070.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz070.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz070.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz070.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz070.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz070.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz070.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz070.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz070.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz070.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz070.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('kapf', 0.0074241879347142882) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz070.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz070.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz070.txt + +[flz071] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz071.txt +centroid = (0.45663398285778045, -1.4069884498489689) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz071.txt +description = Western Broward, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz071.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz071.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz071.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz071.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz071.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz071.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz071.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz071.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz071.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz071.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz071.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz071.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz071.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz071.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz071.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('khwo', 0.0066193535034520436) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz071.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz071.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz071.txt + +[flz072] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz072.txt +centroid = (0.45597948438828251, -1.4009862625513603) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz072.txt +description = Broward Metropolitan, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz072.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz072.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz072.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz072.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz072.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz072.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz072.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz072.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz072.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz072.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz072.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz072.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz072.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz072.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz072.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('kfxe', 0.0018842610077825324) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz072.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz072.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz072.txt + +[flz073] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz073.txt +centroid = (0.44842395405639907, -1.4074265274912194) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz073.txt +description = Western Dade, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz073.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz073.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz073.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz073.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz073.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz073.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz073.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz073.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz073.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz073.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz073.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz073.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz073.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz073.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz073.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('ktmb', 0.0033295631669713588) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz073.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz073.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz073.txt + +[flz074] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz074.txt +centroid = (0.45063354088942398, -1.4015133519854626) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz074.txt +description = Dade Metropolitan, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz074.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz074.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz074.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz074.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz074.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz074.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz074.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz074.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz074.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz074.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz074.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz074.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz074.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz074.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz074.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('kmia', 0.00067705787314949856) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz074.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz074.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz074.txt + +[flz075] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz075.txt +centroid = (0.44541675175521284, -1.414285671451557) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz075.txt +description = Mainland Monroe, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz075.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz075.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz075.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz075.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz075.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz075.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz075.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz075.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz075.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz075.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz075.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz075.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz075.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz075.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz075.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('ktmb', 0.009700561280623481) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz075.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz075.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz075.txt + +[flz076] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz076.txt +centroid = (0.43890143765751805, -1.4035850578075799) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz076.txt +description = Monroe/Upper Keys, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz076.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz076.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz076.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz076.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz076.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz076.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz076.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz076.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz076.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz076.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz076.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz076.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz076.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz076.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz076.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('khst', 0.0058943177154134035) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz076.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz076.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz076.txt + +[flz077] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz077.txt +centroid = (0.43191879419930918, -1.4134994878899962) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz077.txt +description = Monroe/Middle Keys, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz077.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz077.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz077.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz077.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz077.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz077.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz077.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz077.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz077.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz077.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz077.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz077.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz077.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz077.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz077.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('kmth', 0.0010186801852580234) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz077.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz077.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz077.txt + +[flz078] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz078.txt +centroid = (0.43024809522613011, -1.4233631288911797) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz078.txt +description = Monroe/Lower Keys, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz078.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz078.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz078.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz078.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz078.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz078.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz078.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz078.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz078.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz078.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz078.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz078.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz078.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz078.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz078.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('knqx', 0.0023890630183016669) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz078.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz078.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz078.txt + +[flz108] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz108.txt +centroid = (0.53089948785939112, -1.5039676697360338) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz108.txt +description = South Walton County, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz108.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz108.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz108.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz108.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz108.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz108.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz108.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz108.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz108.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz108.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz108.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz108.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz108.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz108.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz108.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('kdts', 0.0044619061832142978) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz108.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz108.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz108.txt + +[flz112] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz112.txt +centroid = (0.52746118923296226, -1.4951432850379505) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz112.txt +description = Coastal Bay County, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz112.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz112.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz112.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz112.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz112.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz112.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz112.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz112.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz112.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz112.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz112.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz112.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz112.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz112.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz112.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('kpam', 0.0029695219948428636) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz112.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz112.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz112.txt + +[flz114] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz114.txt +centroid = (0.52041005905490523, -1.4882876317361167) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz114.txt +description = Coastal Gulf County, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz114.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz114.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz114.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz114.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz114.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz114.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz114.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz114.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz114.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz114.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz114.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz114.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz114.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz114.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz114.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('kaaf', 0.0041448799479618858) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz114.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz114.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz114.txt + +[flz115] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz115.txt +centroid = (0.52077483286857207, -1.4798629274367401) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz115.txt +description = Coastal Franklin County, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz115.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz115.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz115.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz115.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz115.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz115.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz115.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz115.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz115.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz115.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz115.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz115.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz115.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz115.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz115.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('kaaf', 0.0038921420983032227) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz115.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz115.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz115.txt + +[flz118] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz118.txt +centroid = (0.52617662690349454, -1.4664622894399275) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz118.txt +description = Coastal Jefferson County, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz118.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz118.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz118.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz118.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz118.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz118.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz118.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz118.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz118.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz118.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz118.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz118.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz118.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz118.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz118.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('ktlh', 0.0066195512324188147) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz118.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz118.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz118.txt + +[flz127] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz127.txt +centroid = (0.52528825431422943, -1.4713282673944876) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz127.txt +description = Coastal Wakulla County, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz127.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz127.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz127.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz127.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz127.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz127.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz127.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz127.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz127.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz127.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz127.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz127.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz127.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz127.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz127.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('ktlh', 0.0053433666198543671) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz127.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz127.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz127.txt + +[flz128] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz128.txt +centroid = (0.52230548662257104, -1.4603222211314115) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz128.txt +description = Coastal Taylor County, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz128.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz128.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz128.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz128.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz128.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz128.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz128.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz128.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz128.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz128.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz128.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz128.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz128.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz128.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz128.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('k40j', 0.0027864155087277791) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz128.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz128.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz128.txt + +[flz134] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz134.txt +centroid = (0.51473948431517569, -1.4525520153015328) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz134.txt +description = Coastal Dixie County, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz134.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz134.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz134.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz134.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz134.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz134.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz134.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz134.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz134.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz134.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz134.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz134.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz134.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz134.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz134.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('kcty', 0.0031075999472140658) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz134.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz134.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz134.txt + +[flz141] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz141.txt +centroid = (0.50675111232879766, -1.4146295013142001) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz141.txt +description = Coastal Volusia County, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz141.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz141.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz141.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz141.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz141.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz141.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz141.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz141.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz141.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz141.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz141.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz141.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz141.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz141.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz141.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('kevb', 0.0016275820461834596) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz141.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz141.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz141.txt + +[flz144] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz144.txt +centroid = (0.49852537556414833, -1.4277857932157332) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz144.txt +description = Southern Lake County, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz144.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz144.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz144.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz144.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz144.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz144.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz144.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz144.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz144.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz144.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz144.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz144.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz144.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz144.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz144.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('klee', 0.0044232967662170509) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz144.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz144.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz144.txt + +[flz147] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz147.txt +centroid = (0.49844159976005259, -1.4098874417365315) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz147.txt +description = Northern Brevard County, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz147.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz147.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz147.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz147.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz147.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz147.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz147.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz147.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz147.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz147.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz147.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz147.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz147.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz147.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz147.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('ktix', 0.00079001305987375233) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz147.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz147.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz147.txt + +[flz168] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz168.txt +centroid = (0.46609541273284172, -1.397670136972571) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz168.txt +description = Coastal Palm Beach County, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz168.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz168.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz168.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz168.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz168.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz168.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz168.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz168.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz168.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz168.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz168.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz168.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz168.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz168.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz168.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('kpbi', 0.00048836233753161995) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz168.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz168.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz168.txt + +[flz172] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz172.txt +centroid = (0.45640010873801318, -1.3984729884284883) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz172.txt +description = Coastal Broward County, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz172.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz172.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz172.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz172.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz172.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz172.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz172.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz172.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz172.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz172.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz172.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz172.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz172.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz172.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz172.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('kfxe', 0.0012479312012106845) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz172.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz172.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz172.txt + +[flz173] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz173.txt +centroid = (0.44648140259892938, -1.4017035928739301) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz173.txt +description = Coastal Miami Dade County, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz173.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz173.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz173.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz173.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz173.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz173.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz173.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz173.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz173.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz173.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz173.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz173.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz173.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz173.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz173.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('khst', 0.0020513915267655921) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz173.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz173.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz173.txt + +[flz174] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/fl/flz174.txt +centroid = (0.44155084746204543, -1.4076028057456706) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/fl/flz174.txt +description = Far South Miami Dade County, FL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/fl/flz174.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/fl/flz174.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/fl/flz174.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/fl/flz174.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/fl/flz174.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/fl/flz174.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/fl/flz174.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/fl/flz174.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/fl.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/fl/flz174.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/fl/flz174.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/fl/flz174.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/fl/flz174.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/fl/flz174.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/fl/flz174.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/fl/flz174.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/fl.txt +station = ('khst', 0.0052905179134504982) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/fl/flz174.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/fl/flz174.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/fl/flz174.txt + +[gaz001] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz001.txt +centroid = (0.60832752946561552, -1.4923350502714914) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz001.txt +description = Dade, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz001.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz001.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz001.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz001.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz001.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz001.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz001.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz001.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz001.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz001.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz001.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz001.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz001.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz001.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz001.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kcha', 0.0053580991704779016) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz001.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz001.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz001.txt + +[gaz002] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz002.txt +centroid = (0.60625058765574225, -1.488781559914431) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz002.txt +description = Walker, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz002.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz002.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz002.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz002.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz002.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz002.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz002.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz002.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz002.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz002.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz002.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz002.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz002.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz002.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz002.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kcha', 0.0053934854057568586) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz002.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz002.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz002.txt + +[gaz003] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz003.txt +centroid = (0.60918274079909274, -1.4859401638921841) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz003.txt +description = Catoosa, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz003.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz003.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz003.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz003.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz003.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz003.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz003.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz003.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz003.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz003.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz003.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz003.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz003.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz003.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz003.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kcha', 0.002431198233919918) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz003.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz003.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz003.txt + +[gaz004] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz004.txt +centroid = (0.60747231813213831, -1.4829591415297778) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz004.txt +description = Whitfield, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz004.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz004.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz004.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz004.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz004.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz004.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz004.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz004.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz004.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz004.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz004.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz004.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz004.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz004.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz004.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kdnn', 0.0020311917408823159) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz004.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz004.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz004.txt + +[gaz005] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz005.txt +centroid = (0.60717386683004737, -1.4791333798094064) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz005.txt +description = Murray, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz005.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz005.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz005.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz005.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz005.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz005.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz005.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz005.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz005.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz005.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz005.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz005.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz005.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz005.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz005.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kdnn', 0.0020915249949004888) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz005.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz005.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz005.txt + +[gaz006] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz006.txt +centroid = (0.60849333574455511, -1.4716563892938626) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz006.txt +description = Fannin, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz006.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz006.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz006.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz006.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz006.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz006.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz006.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz006.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz006.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz006.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz006.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz006.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz006.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz006.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz006.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('krhp', 0.0087087265014831293) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz006.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz006.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz006.txt + +[gaz007] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz007.txt +centroid = (0.60548089745561284, -1.4740248010888191) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz007.txt +description = Gilmer, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz007.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz007.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz007.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz007.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz007.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz007.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz007.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz007.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz007.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz007.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz007.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz007.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz007.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz007.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz007.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kcni', 0.0066369756915657533) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz007.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz007.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz007.txt + +[gaz008] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz008.txt +centroid = (0.60797148229820874, -1.4659142560548015) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz008.txt +description = Union, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz008.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz008.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz008.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz008.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz008.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz008.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz008.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz008.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz008.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz008.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz008.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz008.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz008.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz008.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz008.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('krhp', 0.0065539509145121043) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz008.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz008.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz008.txt + +[gaz009] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz009.txt +centroid = (0.60941137893110409, -1.4614915917302478) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz009.txt +description = Towns, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz009.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz009.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz009.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz009.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz009.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz009.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz009.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz009.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz009.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz009.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz009.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz009.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz009.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz009.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz009.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('krhp', 0.0051816543214223392) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz009.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz009.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz009.txt + +[gaz010] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz010.txt +centroid = (0.60880225902215801, -1.4556412480775629) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz010.txt +description = Rabun, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz010.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz010.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz010.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz010.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz010.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz010.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz010.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz010.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz010.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz010.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz010.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz010.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz010.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz010.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz010.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('ktoc', 0.0052668226266419363) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz010.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz010.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz010.txt + +[gaz011] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz011.txt +centroid = (0.60170225962504509, -1.4895582314315685) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz011.txt +description = Chattooga, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz011.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz011.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz011.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz011.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz011.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz011.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz011.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz011.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz011.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz011.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz011.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz011.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz011.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz011.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz011.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('krmg', 0.0033738363480722549) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz011.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz011.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz011.txt + +[gaz012] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz012.txt +centroid = (0.6021979331326115, -1.481360419934951) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz012.txt +description = Gordon, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz012.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz012.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz012.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz012.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz012.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz012.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz012.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz012.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz012.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz012.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz012.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz012.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz012.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz012.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz012.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kdnn', 0.0038106277599780115) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz012.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz012.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz012.txt + +[gaz013] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz013.txt +centroid = (0.60151550939508169, -1.4742028246725223) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz013.txt +description = Pickens, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz013.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz013.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz013.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz013.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz013.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz013.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz013.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz013.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz013.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz013.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz013.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz013.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz013.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz013.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz013.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kcni', 0.0027270970047928644) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz013.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz013.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz013.txt + +[gaz014] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz014.txt +centroid = (0.6011577168984229, -1.4690506127206351) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz014.txt +description = Dawson, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz014.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz014.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz014.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz014.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz014.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz014.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz014.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz014.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz014.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz014.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz014.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz014.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz014.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz014.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz014.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kcni', 0.0042924827476049192) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz014.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz014.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz014.txt + +[gaz015] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz015.txt +centroid = (0.60339697432873163, -1.4661306768820488) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz015.txt +description = Lumpkin, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz015.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz015.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz015.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz015.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz015.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz015.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz015.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz015.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz015.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz015.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz015.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz015.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz015.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz015.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz015.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kgvl', 0.0058644572916310396) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz015.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz015.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz015.txt + +[gaz016] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz016.txt +centroid = (0.60469375396296343, -1.4616643793261952) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz016.txt +description = White, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz016.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz016.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz016.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz016.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz016.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz016.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz016.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz016.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz016.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz016.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz016.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz016.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz016.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz016.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz016.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('ktoc', 0.0065424609063227243) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz016.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz016.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz016.txt + +[gaz017] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz017.txt +centroid = (0.60442497325815625, -1.4578944681418873) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz017.txt +description = Habersham, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz017.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz017.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz017.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz017.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz017.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz017.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz017.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz017.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz017.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz017.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz017.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz017.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz017.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz017.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz017.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('ktoc', 0.0034383804123377828) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz017.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz017.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz017.txt + +[gaz018] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz018.txt +centroid = (0.60308106973412068, -1.4537458205098968) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz018.txt +description = Stephens, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz018.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz018.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz018.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz018.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz018.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz018.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz018.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz018.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz018.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz018.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz018.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz018.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz018.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz018.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz018.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('ktoc', 0.00067864793104063803) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz018.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz018.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz018.txt + +[gaz019] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz019.txt +centroid = (0.59800565226932112, -1.4872701047822039) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz019.txt +description = Floyd, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz019.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz019.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz019.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz019.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz019.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz019.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz019.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz019.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz019.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz019.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz019.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz019.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz019.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz019.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz019.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('krmg', 0.0016633275192459098) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz019.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz019.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz019.txt + +[gaz020] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz020.txt +centroid = (0.59756408396856664, -1.4807460640382493) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz020.txt +description = Bartow, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz020.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz020.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz020.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz020.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz020.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz020.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz020.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz020.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz020.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz020.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz020.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz020.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz020.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz020.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz020.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kvpc', 0.0018301793687658771) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz020.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz020.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz020.txt + +[gaz021] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz021.txt +centroid = (0.59766880372368614, -1.4743913202317378) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz021.txt +description = Cherokee, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz021.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz021.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz021.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz021.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz021.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz021.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz021.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz021.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz021.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz021.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz021.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz021.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz021.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz021.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz021.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kcni', 0.0014260924327571057) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz021.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz021.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz021.txt + +[gaz022] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz022.txt +centroid = (0.59734766314131915, -1.4682634692279857) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz022.txt +description = Forsyth, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz022.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz022.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz022.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz022.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz022.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz022.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz022.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz022.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz022.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz022.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz022.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz022.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz022.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz022.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz022.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kcni', 0.0045413160803946901) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz022.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz022.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz022.txt + +[gaz023] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz023.txt +centroid = (0.59894114874839011, -1.462929743033891) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz023.txt +description = Hall, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz023.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz023.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz023.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz023.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz023.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz023.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz023.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz023.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz023.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz023.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz023.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz023.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz023.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz023.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz023.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kgvl', 0.00089680366350296974) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz023.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz023.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz023.txt + +[gaz024] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz024.txt +centroid = (0.59959215655938403, -1.4573045468547132) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz024.txt +description = Banks, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz024.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz024.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz024.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz024.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz024.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz024.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz024.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz024.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz024.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz024.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz024.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz024.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz024.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz024.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz024.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('k19a', 0.0032457776186883861) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz024.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz024.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz024.txt + +[gaz025] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz025.txt +centroid = (0.59574894154649238, -1.4585070787093375) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz025.txt +description = Jackson, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz025.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz025.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz025.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz025.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz025.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz025.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz025.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz025.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz025.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz025.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz025.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz025.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz025.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz025.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz025.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('k19a', 0.00073547949002181689) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz025.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz025.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz025.txt + +[gaz026] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz026.txt +centroid = (0.59996565701931082, -1.4526235738008646) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz026.txt +description = Franklin, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz026.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz026.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz026.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz026.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz026.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz026.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz026.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz026.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz026.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz026.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz026.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz026.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz026.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz026.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz026.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('ktoc', 0.003913977571718877) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz026.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz026.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz026.txt + +[gaz027] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz027.txt +centroid = (0.59564422179137277, -1.4522710172919617) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz027.txt +description = Madison, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz027.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz027.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz027.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz027.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz027.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz027.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz027.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz027.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz027.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz027.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz027.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz027.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz027.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz027.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz027.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kahn', 0.0035880637777799861) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz027.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz027.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz027.txt + +[gaz028] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz028.txt +centroid = (0.59953979668182422, -1.4479949606245754) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz028.txt +description = Hart, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz028.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz028.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz028.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz028.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz028.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz028.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz028.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz028.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz028.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz028.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz028.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz028.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz028.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz028.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz028.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kand', 0.0044082454624005622) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz028.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz028.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz028.txt + +[gaz029] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz029.txt +centroid = (0.59545223557365345, -1.4458359883398586) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz029.txt +description = Elbert, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz029.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz029.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz029.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz029.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz029.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz029.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz029.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz029.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz029.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz029.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz029.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz029.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz029.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz029.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz029.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kiiy', 0.005895036256886978) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz029.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz029.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz029.txt + +[gaz030] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz030.txt +centroid = (0.59344336160460798, -1.4868145738474334) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz030.txt +description = Polk, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz030.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz030.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz030.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz030.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz030.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz030.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz030.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz030.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz030.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz030.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz030.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz030.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz030.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz030.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz030.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kpuj', 0.0039342081790113975) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz030.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz030.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz030.txt + +[gaz031] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz031.txt +centroid = (0.59201917293498063, -1.4812120669485316) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz031.txt +description = Paulding, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz031.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz031.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz031.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz031.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz031.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz031.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz031.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz031.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz031.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz031.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz031.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz031.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz031.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz031.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz031.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kpuj', 0.0010693491945136342) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz031.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz031.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz031.txt + +[gaz032] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz032.txt +centroid = (0.5923909280656553, -1.4761418854714881) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz032.txt +description = Cobb, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz032.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz032.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz032.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz032.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz032.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz032.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz032.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz032.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz032.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz032.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz032.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz032.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz032.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz032.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz032.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kmge', 0.00097142430015910095) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz032.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz032.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz032.txt + +[gaz033] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz033.txt +centroid = (0.59227748166427574, -1.4722847078245807) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz033.txt +description = North Fulton, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz033.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz033.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz033.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz033.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz033.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz033.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz033.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz033.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz033.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz033.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz033.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz033.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz033.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz033.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz033.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kpdk', 0.0012099995351792935) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz033.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz033.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz033.txt + +[gaz034] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz034.txt +centroid = (0.59274348457455828, -1.4664867240494555) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz034.txt +description = Gwinnett, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz034.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz034.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz034.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz034.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz034.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz034.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz034.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz034.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz034.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz034.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz034.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz034.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz034.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz034.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz034.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('klzu', 0.00092794629006395226) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz034.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz034.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz034.txt + +[gaz035] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz035.txt +centroid = (0.5932932632889365, -1.4610622407342571) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz035.txt +description = Barrow, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz035.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz035.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz035.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz035.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz035.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz035.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz035.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz035.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz035.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz035.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz035.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz035.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz035.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz035.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz035.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kwdr', 0.00067388476910782845) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz035.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz035.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz035.txt + +[gaz036] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz036.txt +centroid = (0.59256197033235092, -1.4550356188271207) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz036.txt +description = Clarke, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz036.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz036.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz036.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz036.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz036.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz036.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz036.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz036.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz036.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz036.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz036.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz036.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz036.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz036.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz036.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kahn', 0.00049373322939337072) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz036.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz036.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz036.txt + +[gaz037] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz037.txt +centroid = (0.5905304070830294, -1.4562503679865086) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz037.txt +description = Oconee, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz037.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz037.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz037.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz037.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz037.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz037.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz037.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz037.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz037.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz037.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz037.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz037.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz037.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz037.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz037.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kahn', 0.0025082384673935951) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz037.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz037.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz037.txt + +[gaz038] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz038.txt +centroid = (0.59132976788044278, -1.450030014532401) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz038.txt +description = Oglethorpe, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz038.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz038.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz038.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz038.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz038.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz038.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz038.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz038.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz038.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz038.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz038.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz038.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz038.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz038.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz038.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kiiy', 0.0042165854521381881) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz038.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz038.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz038.txt + +[gaz039] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz039.txt +centroid = (0.58960712790872438, -1.4441412736361721) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz039.txt +description = Wilkes, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz039.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz039.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz039.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz039.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz039.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz039.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz039.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz039.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz039.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz039.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz039.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz039.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz039.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz039.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz039.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kiiy', 0.001062470133943824) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz039.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz039.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz039.txt + +[gaz040] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz040.txt +centroid = (0.58980958610195566, -1.4390449122203486) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz040.txt +description = Lincoln, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz040.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz040.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz040.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz040.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz040.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz040.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz040.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz040.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz040.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz040.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz040.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz040.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz040.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz040.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz040.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('khqu', 0.0047066363513842777) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz040.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz040.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz040.txt + +[gaz041] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz041.txt +centroid = (0.58982005807746762, -1.4872125089168882) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz041.txt +description = Haralson, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz041.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz041.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz041.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz041.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz041.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz041.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz041.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz041.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz041.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz041.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz041.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz041.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz041.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz041.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz041.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kctj', 0.0029995498719990361) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz041.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz041.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz041.txt + +[gaz042] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz042.txt +centroid = (0.5861304320387517, -1.4849208916090197) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz042.txt +description = Carroll, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz042.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz042.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz042.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz042.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz042.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz042.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz042.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz042.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz042.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz042.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz042.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz042.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz042.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz042.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz042.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kctj', 0.0013125924921023114) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz042.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz042.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz042.txt + +[gaz043] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz043.txt +centroid = (0.58820213786086906, -1.4794754643427974) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz043.txt +description = Douglas, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz043.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz043.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz043.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz043.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz043.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz043.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz043.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz043.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz043.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz043.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz043.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz043.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz043.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz043.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz043.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kfty', 0.0039132426313310516) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz043.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz043.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz043.txt + +[gaz044] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz044.txt +centroid = (0.58657898165651423, -1.4766619935885823) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz044.txt +description = South Fulton, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz044.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz044.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz044.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz044.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz044.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz044.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz044.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz044.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz044.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz044.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz044.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz044.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz044.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz044.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz044.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('katl', 0.002618670434488937) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz044.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz044.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz044.txt + +[gaz045] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz045.txt +centroid = (0.58942386833726501, -1.4700262517724998) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz045.txt +description = DeKalb, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz045.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz045.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz045.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz045.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz045.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz045.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz045.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz045.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz045.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz045.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz045.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz045.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz045.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz045.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz045.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kpdk', 0.0022252134203054391) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz045.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz045.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz045.txt + +[gaz046] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz046.txt +centroid = (0.58738183311243164, -1.4665425745855194) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz046.txt +description = Rockdale, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz046.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz046.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz046.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz046.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz046.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz046.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz046.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz046.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz046.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz046.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz046.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz046.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz046.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz046.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz046.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('k9a1', 0.0026028316889931589) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz046.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz046.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz046.txt + +[gaz047] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz047.txt +centroid = (0.58992128717408332, -1.4611896497696526) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz047.txt +description = Walton, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz047.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz047.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz047.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz047.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz047.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz047.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz047.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz047.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz047.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz047.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz047.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz047.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz047.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz047.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz047.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kwdr', 0.0032682046170784502) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz047.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz047.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz047.txt + +[gaz048] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz048.txt +centroid = (0.58564697583594938, -1.4634638137850013) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz048.txt +description = Newton, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz048.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz048.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz048.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz048.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz048.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz048.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz048.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz048.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz048.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz048.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz048.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz048.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz048.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz048.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz048.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('k9a1', 0.001307258885690316) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz048.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz048.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz048.txt + +[gaz049] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz049.txt +centroid = (0.58627005837891133, -1.4572172803921137) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz049.txt +description = Morgan, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz049.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz049.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz049.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz049.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz049.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz049.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz049.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz049.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz049.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz049.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz049.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz049.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz049.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz049.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz049.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('k9a1', 0.0052427127500132287) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz049.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz049.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz049.txt + +[gaz050] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz050.txt +centroid = (0.5860623641979239, -1.4515327430183682) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz050.txt +description = Greene, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz050.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz050.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz050.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz050.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz050.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz050.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz050.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz050.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz050.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz050.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz050.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz050.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz050.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz050.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz050.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('k3j7', 0.00051854177529490268) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz050.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz050.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz050.txt + +[gaz051] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz051.txt +centroid = (0.58584070738292071, -1.4465061947726243) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz051.txt +description = Taliaferro, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz051.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz051.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz051.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz051.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz051.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz051.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz051.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz051.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz051.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz051.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz051.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz051.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz051.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz051.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz051.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kiiy', 0.0038349934792381419) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz051.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz051.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz051.txt + +[gaz052] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz052.txt +centroid = (0.58114228103655186, -1.4857691216254887) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz052.txt +description = Heard, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz052.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz052.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz052.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz052.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz052.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz052.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz052.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz052.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz052.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz052.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz052.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz052.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz052.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz052.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz052.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('klgc', 0.0050941624131223091) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz052.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz052.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz052.txt + +[gaz053] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz053.txt +centroid = (0.58212839206392863, -1.4793986698557096) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz053.txt +description = Coweta, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz053.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz053.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz053.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz053.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz053.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz053.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz053.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz053.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz053.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz053.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz053.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz053.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz053.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz053.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz053.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kffc', 0.0028756254928956693) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz053.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz053.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz053.txt + +[gaz054] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz054.txt +centroid = (0.58318431626138534, -1.4747002435093408) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz054.txt +description = Fayette, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz054.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz054.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz054.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz054.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz054.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz054.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz054.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz054.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz054.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz054.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz054.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz054.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz054.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz054.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz054.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kffc', 0.0013419135559836187) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz054.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz054.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz054.txt + +[gaz055] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz055.txt +centroid = (0.58541659237468602, -1.4723196144096204) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz055.txt +description = Clayton, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz055.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz055.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz055.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz055.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz055.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz055.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz055.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz055.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz055.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz055.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz055.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz055.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz055.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz055.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz055.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('katl', 0.0021837237570136885) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz055.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz055.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz055.txt + +[gaz056] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz056.txt +centroid = (0.58051221717658197, -1.4710350520801527) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz056.txt +description = Spalding, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz056.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz056.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz056.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz056.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz056.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz056.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz056.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz056.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz056.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz056.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz056.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz056.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz056.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz056.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz056.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('k6a2', 0.00060705038280400327) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz056.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz056.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz056.txt + +[gaz057] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz057.txt +centroid = (0.58387197598667107, -1.468788813332836) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz057.txt +description = Henry, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz057.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz057.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz057.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz057.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz057.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz057.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz057.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz057.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz057.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz057.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz057.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz057.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz057.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz057.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz057.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('k6a2', 0.0043192426036518187) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz057.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz057.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz057.txt + +[gaz058] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz058.txt +centroid = (0.58100440002564435, -1.4653295707553833) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz058.txt +description = Butts, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz058.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz058.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz058.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz058.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz058.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz058.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz058.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz058.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz058.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz058.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz058.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz058.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz058.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz058.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz058.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('k6a2', 0.0047624326455933397) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz058.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz058.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz058.txt + +[gaz059] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz059.txt +centroid = (0.58148087491143885, -1.4606328897382665) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz059.txt +description = Jasper, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz059.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz059.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz059.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz059.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz059.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz059.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz059.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz059.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz059.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz059.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz059.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz059.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz059.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz059.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz059.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('k9a1', 0.0059592908417110402) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz059.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz059.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz059.txt + +[gaz060] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz060.txt +centroid = (0.58157512269104661, -1.4551298666067283) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz060.txt +description = Putnam, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz060.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz060.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz060.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz060.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz060.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz060.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz060.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz060.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz060.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz060.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz060.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz060.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz060.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz060.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz060.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kmlj', 0.0035052604915790349) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz060.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz060.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz060.txt + +[gaz061] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz061.txt +centroid = (0.58067627812626943, -1.4486407324478137) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz061.txt +description = Hancock, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz061.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz061.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz061.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz061.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz061.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz061.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz061.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz061.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz061.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz061.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz061.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz061.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz061.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz061.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz061.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kmlj', 0.0040428582018666344) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz061.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz061.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz061.txt + +[gaz062] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz062.txt +centroid = (0.58309530446953362, -1.4429806296835959) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz062.txt +description = Warren, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz062.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz062.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz062.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz062.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz062.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz062.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz062.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz062.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz062.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz062.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz062.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz062.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz062.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz062.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz062.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('khqu', 0.0031422869760200896) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz062.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz062.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz062.txt + +[gaz063] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz063.txt +centroid = (0.58438684811600938, -1.4395720016544509) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz063.txt +description = McDuffie, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz063.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz063.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz063.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz063.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz063.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz063.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz063.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz063.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz063.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz063.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz063.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz063.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz063.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz063.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz063.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('khqu', 0.00095874763708886661) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz063.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz063.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz063.txt + +[gaz064] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz064.txt +centroid = (0.58545673494748185, -1.4357776558606152) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz064.txt +description = Columbia, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz064.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz064.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz064.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz064.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz064.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz064.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz064.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz064.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz064.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz064.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz064.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz064.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz064.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz064.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz064.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('khqu', 0.0036807376671906689) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz064.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz064.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz064.txt + +[gaz065] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz065.txt +centroid = (0.58223485714830037, -1.4324528036355659) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz065.txt +description = Richmond, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz065.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz065.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz065.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz065.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz065.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz065.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz065.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz065.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz065.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz065.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz065.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz065.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz065.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz065.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz065.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kags', 0.001562188279558838) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz065.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz065.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz065.txt + +[gaz066] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz066.txt +centroid = (0.57654333845754679, -1.4840237923734945) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz066.txt +description = Troup, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz066.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz066.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz066.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz066.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz066.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz066.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz066.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz066.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz066.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz066.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz066.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz066.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz066.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz066.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz066.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('klgc', 0.00077646065721613273) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz066.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz066.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz066.txt + +[gaz067] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz067.txt +centroid = (0.57666725683443842, -1.4780896729167137) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz067.txt +description = Meriwether, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz067.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz067.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz067.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz067.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz067.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz067.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz067.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz067.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz067.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz067.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz067.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz067.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz067.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz067.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz067.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('klgc', 0.0056493471583768931) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz067.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz067.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz067.txt + +[gaz068] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz068.txt +centroid = (0.5775678467284675, -1.4728693931239989) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz068.txt +description = Pike, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz068.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz068.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz068.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz068.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz068.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz068.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz068.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz068.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz068.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz068.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz068.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz068.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz068.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz068.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz068.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('k6a2', 0.0028844066773815215) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz068.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz068.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz068.txt + +[gaz069] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz069.txt +centroid = (0.57388694733601153, -1.4713003421264559) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz069.txt +description = Upson, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz069.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz069.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz069.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz069.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz069.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz069.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz069.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz069.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz069.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz069.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz069.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz069.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz069.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz069.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz069.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kopn', 0.0013839705222221642) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz069.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz069.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz069.txt + +[gaz070] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz070.txt +centroid = (0.57729383003590451, -1.4685095606525169) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz070.txt +description = Lamar, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz070.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz070.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz070.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz070.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz070.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz070.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz070.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz070.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz070.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz070.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz070.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz070.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz070.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz070.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz070.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kopn', 0.0028010364384681201) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz070.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz070.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz070.txt + +[gaz071] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz071.txt +centroid = (0.57620474458265991, -1.4646576189933656) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz071.txt +description = Monroe, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz071.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz071.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz071.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz071.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz071.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz071.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz071.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz071.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz071.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz071.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz071.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz071.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz071.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz071.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz071.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kopn', 0.0051657695603844278) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz071.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz071.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz071.txt + +[gaz072] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz072.txt +centroid = (0.57639673080037934, -1.4584058496127219) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz072.txt +description = Jones, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz072.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz072.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz072.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz072.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz072.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz072.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz072.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz072.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz072.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz072.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz072.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz072.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz072.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz072.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz072.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kmlj', 0.0051925112730699203) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz072.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz072.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz072.txt + +[gaz073] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz073.txt +centroid = (0.57716293034200483, -1.4529848569560273) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz073.txt +description = Baldwin, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz073.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz073.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz073.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz073.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz073.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz073.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz073.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz073.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz073.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz073.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz073.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz073.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz073.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz073.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz073.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kmlj', 0.0014927027547432462) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz073.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz073.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz073.txt + +[gaz074] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz074.txt +centroid = (0.57542632773627045, -1.4450610621519731) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz074.txt +description = Washington, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz074.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz074.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz074.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz074.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz074.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz074.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz074.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz074.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz074.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz074.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz074.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz074.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz074.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz074.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz074.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kmlj', 0.0072588755166597928) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz074.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz074.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz074.txt + +[gaz075] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz075.txt +centroid = (0.57996069313295173, -1.4418287123772795) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz075.txt +description = Glascock, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz075.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz075.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz075.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz075.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz075.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz075.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz075.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz075.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz075.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz075.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz075.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz075.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz075.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz075.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz075.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('khqu', 0.0054158347152737946) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz075.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz075.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz075.txt + +[gaz076] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz076.txt +centroid = (0.5769168389174737, -1.4384672082379384) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz076.txt +description = Jefferson, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz076.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz076.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz076.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz076.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz076.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz076.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz076.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz076.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz076.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz076.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz076.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz076.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz076.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz076.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz076.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('ksbo', 0.0076231398706488014) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz076.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz076.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz076.txt + +[gaz077] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz077.txt +centroid = (0.57702679466034923, -1.4311839492693661) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz077.txt +description = Burke, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz077.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz077.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz077.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz077.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz077.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz077.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz077.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz077.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz077.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz077.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz077.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz077.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz077.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz077.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz077.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kags', 0.0053546457627883549) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz077.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz077.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz077.txt + +[gaz078] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz078.txt +centroid = (0.57135098393286365, -1.4819416145758655) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz078.txt +description = Harris, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz078.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz078.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz078.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz078.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz078.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz078.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz078.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz078.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz078.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz078.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz078.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz078.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz078.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz078.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz078.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kcsg', 0.0038752384485295872) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz078.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz078.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz078.txt + +[gaz079] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz079.txt +centroid = (0.57071393875588583, -1.4753791765883666) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz079.txt +description = Talbot, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz079.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz079.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz079.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz079.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz079.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz079.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz079.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz079.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz079.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz079.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz079.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz079.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz079.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz079.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz079.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kopn', 0.005949673780451567) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz079.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz079.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz079.txt + +[gaz080] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz080.txt +centroid = (0.5682024099622659, -1.4704468761222307) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz080.txt +description = Taylor, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz080.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz080.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz080.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz080.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz080.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz080.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz080.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz080.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz080.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz080.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz080.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz080.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz080.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz080.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz080.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kopn', 0.0069738924374650769) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz080.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz080.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz080.txt + +[gaz081] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz081.txt +centroid = (0.57097573814368496, -1.4658392068969657) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz081.txt +description = Crawford, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz081.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz081.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz081.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz081.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz081.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz081.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz081.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz081.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz081.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz081.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz081.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz081.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz081.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz081.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz081.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kwrb', 0.0058508510996848539) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz081.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz081.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz081.txt + +[gaz082] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz082.txt +centroid = (0.57258493171402369, -1.4608039320049619) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz082.txt +description = Bibb, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz082.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz082.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz082.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz082.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz082.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz082.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz082.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz082.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz082.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz082.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz082.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz082.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz082.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz082.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz082.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kmcn', 0.0022650620354893393) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz082.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz082.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz082.txt + +[gaz083] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz083.txt +centroid = (0.57015019740749162, -1.4560793257198132) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz083.txt +description = Twiggs, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz083.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz083.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz083.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz083.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz083.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz083.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz083.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz083.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz083.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz083.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz083.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz083.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz083.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz083.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz083.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kwrb', 0.0026072357175079301) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz083.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz083.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz083.txt + +[gaz084] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz084.txt +centroid = (0.57250988255618795, -1.4516130281639599) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz084.txt +description = Wilkinson, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz084.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz084.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz084.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz084.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz084.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz084.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz084.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz084.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz084.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz084.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz084.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz084.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz084.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz084.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz084.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kdbn', 0.004973723170208999) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz084.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz084.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz084.txt + +[gaz085] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz085.txt +centroid = (0.57074884534092574, -1.4426909050277648) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz085.txt +description = Johnson, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz085.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz085.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz085.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz085.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz085.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz085.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz085.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz085.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz085.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz085.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz085.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz085.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz085.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz085.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz085.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('ksbo', 0.0044936815550598395) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz085.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz085.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz085.txt + +[gaz086] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz086.txt +centroid = (0.568799312566448, -1.4364373903178691) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz086.txt +description = Emanuel, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz086.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz086.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz086.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz086.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz086.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz086.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz086.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz086.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz086.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz086.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz086.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz086.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz086.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz086.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz086.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('ksbo', 0.0011328228561920813) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz086.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz086.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz086.txt + +[gaz087] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz087.txt +centroid = (0.57233709496024043, -1.4305346867876243) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz087.txt +description = Jenkins, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz087.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz087.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz087.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz087.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz087.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz087.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz087.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz087.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz087.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz087.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz087.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz087.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz087.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz087.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz087.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kjyl', 0.0059730620953967143) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz087.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz087.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz087.txt + +[gaz088] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz088.txt +centroid = (0.57160754733290697, -1.4243963638083603) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz088.txt +description = Screven, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz088.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz088.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz088.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz088.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz088.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz088.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz088.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz088.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz088.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz088.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz088.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz088.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz088.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz088.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz088.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kjyl', 0.0018540151527824155) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz088.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz088.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz088.txt + +[gaz089] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz089.txt +centroid = (0.56740653982335654, -1.481383109215227) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz089.txt +description = Muscogee, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz089.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz089.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz089.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz089.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz089.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz089.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz089.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz089.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz089.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz089.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz089.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz089.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz089.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz089.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz089.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kcsg', 0.0010806797135696372) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz089.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz089.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz089.txt + +[gaz090] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz090.txt +centroid = (0.56456165314260576, -1.4798123128884324) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz090.txt +description = Chattahoochee, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz090.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz090.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz090.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz090.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz090.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz090.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz090.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz090.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz090.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz090.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz090.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz090.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz090.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz090.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz090.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('klsf', 0.00072367439415749776) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz090.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz090.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz090.txt + +[gaz091] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz091.txt +centroid = (0.56467335421473341, -1.4752325689311991) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz091.txt +description = Marion, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz091.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz091.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz091.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz091.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz091.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz091.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz091.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz091.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz091.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz091.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz091.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz091.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz091.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz091.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz091.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('klsf', 0.0045658898411286251) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz091.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz091.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz091.txt + +[gaz092] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz092.txt +centroid = (0.56307812327841056, -1.4715726134897669) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz092.txt +description = Schley, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz092.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz092.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz092.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz092.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz092.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz092.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz092.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz092.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz092.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz092.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz092.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz092.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz092.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz092.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz092.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kacj', 0.0031493450039102749) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz092.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz092.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz092.txt + +[gaz093] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz093.txt +centroid = (0.56476062067733324, -1.4668183366073344) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz093.txt +description = Macon, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz093.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz093.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz093.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz093.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz093.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz093.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz093.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz093.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz093.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz093.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz093.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz093.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz093.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz093.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz093.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kacj', 0.0049195837216726981) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz093.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz093.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz093.txt + +[gaz094] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz094.txt +centroid = (0.56843279342352926, -1.4630554067400345) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz094.txt +description = Peach, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz094.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz094.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz094.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz094.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz094.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz094.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz094.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz094.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz094.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz094.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz094.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz094.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz094.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz094.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz094.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kmcn', 0.0032798645074828933) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz094.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz094.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz094.txt + +[gaz095] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz095.txt +centroid = (0.56651642190483953, -1.4602506626320797) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz095.txt +description = Houston, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz095.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz095.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz095.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz095.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz095.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz095.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz095.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz095.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz095.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz095.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz095.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz095.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz095.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz095.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz095.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kwrb', 0.0031947713817938239) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz095.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz095.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz095.txt + +[gaz096] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz096.txt +centroid = (0.5660870709088488, -1.4543462137725829) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz096.txt +description = Bleckley, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz096.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz096.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz096.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz096.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz096.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz096.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz096.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz096.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz096.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz096.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz096.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz096.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz096.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz096.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz096.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kezm', 0.0048462655785657671) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz096.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz096.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz096.txt + +[gaz097] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz097.txt +centroid = (0.5665984523796832, -1.447265412997242) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz097.txt +description = Laurens, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz097.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz097.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz097.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz097.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz097.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz097.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz097.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz097.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz097.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz097.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz097.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz097.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz097.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz097.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz097.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kdbn', 0.0019864463807877574) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz097.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz097.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz097.txt + +[gaz098] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz098.txt +centroid = (0.56555474548699058, -1.4410712394819141) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz098.txt +description = Treutlen, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz098.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz098.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz098.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz098.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz098.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz098.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz098.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz098.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz098.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz098.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz098.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz098.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz098.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz098.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz098.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kvdi', 0.0046818358731443611) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz098.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz098.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz098.txt + +[gaz099] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz099.txt +centroid = (0.56554776416998265, -1.4324562942940702) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz099.txt +description = Candler, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz099.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz099.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz099.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz099.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz099.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz099.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz099.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz099.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz099.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz099.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz099.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz099.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz099.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz099.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz099.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kcwv', 0.0046524377126085587) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz099.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz099.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz099.txt + +[gaz100] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz100.txt +centroid = (0.56543257243935097, -1.4266879811162287) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz100.txt +description = Bulloch, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz100.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz100.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz100.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz100.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz100.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz100.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz100.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz100.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz100.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz100.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz100.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz100.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz100.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz100.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz100.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('ktbr', 0.0015062738949414725) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz100.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz100.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz100.txt + +[gaz101] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz101.txt +centroid = (0.56491944563926466, -1.4196630308769516) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz101.txt +description = Effingham, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz101.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz101.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz101.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz101.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz101.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz101.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz101.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz101.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz101.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz101.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz101.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz101.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz101.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz101.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz101.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('ksav', 0.0048455862240596283) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz101.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz101.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz101.txt + +[gaz102] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz102.txt +centroid = (0.55987544410100099, -1.4806535615878935) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz102.txt +description = Stewart, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz102.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz102.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz102.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz102.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz102.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz102.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz102.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz102.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz102.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz102.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz102.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz102.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz102.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz102.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz102.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('klsf', 0.004447766138734024) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz102.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz102.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz102.txt + +[gaz103] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz103.txt +centroid = (0.55931868406961482, -1.4756933358537256) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz103.txt +description = Webster, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz103.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz103.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz103.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz103.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz103.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz103.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz103.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz103.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz103.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz103.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz103.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz103.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz103.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz103.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz103.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kacj', 0.0053074202030037806) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz103.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz103.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz103.txt + +[gaz104] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz104.txt +centroid = (0.55920349233898314, -1.4695166156309178) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz104.txt +description = Sumter, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz104.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz104.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz104.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz104.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz104.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz104.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz104.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz104.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz104.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz104.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz104.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz104.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz104.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz104.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz104.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kacj', 0.0012224830361831835) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz104.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz104.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz104.txt + +[gaz105] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz105.txt +centroid = (0.56124901822232065, -1.4625632238909723) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz105.txt +description = Dooly, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz105.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz105.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz105.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz105.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz105.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz105.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz105.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz105.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz105.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz105.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz105.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz105.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz105.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz105.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz105.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kacj', 0.0059879970970192114) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz105.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz105.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz105.txt + +[gaz106] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz106.txt +centroid = (0.55716145711414977, -1.4620291531398621) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz106.txt +description = Crisp, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz106.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz106.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz106.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz106.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz106.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz106.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz106.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz106.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz106.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz106.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz106.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz106.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz106.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz106.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz106.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kacj', 0.0071765814826234937) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz106.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz106.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz106.txt + +[gaz107] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz107.txt +centroid = (0.56256848713682817, -1.4569380277117945) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz107.txt +description = Pulaski, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz107.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz107.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz107.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz107.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz107.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz107.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz107.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz107.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz107.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz107.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz107.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz107.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz107.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz107.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz107.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kezm', 0.0051576832626796546) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz107.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz107.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz107.txt + +[gaz108] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz108.txt +centroid = (0.55803935772790292, -1.456166592182413) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz108.txt +description = Wilcox, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz108.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz108.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz108.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz108.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz108.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz108.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz108.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz108.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz108.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz108.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz108.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz108.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz108.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz108.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz108.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kfzg', 0.0056559755867590421) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz108.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz108.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz108.txt + +[gaz109] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz109.txt +centroid = (0.56151081761011967, -1.451562413615652) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz109.txt +description = Dodge, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz109.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz109.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz109.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz109.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz109.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz109.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz109.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz109.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz109.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz109.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz109.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz109.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz109.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz109.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz109.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kezm', 0.0009468257359744578) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz109.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz109.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz109.txt + +[gaz110] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz110.txt +centroid = (0.55728013950328548, -1.4475568829823251) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz110.txt +description = Telfair, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz110.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz110.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz110.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz110.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz110.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz110.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz110.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz110.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz110.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz110.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz110.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz110.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz110.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz110.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz110.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kezm', 0.0056952525499527592) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz110.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz110.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz110.txt + +[gaz111] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz111.txt +centroid = (0.56054914119227084, -1.4438166423953012) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz111.txt +description = Wheeler, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz111.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz111.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz111.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz111.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz111.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz111.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz111.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz111.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz111.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz111.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz111.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz111.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz111.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz111.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz111.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kvdi', 0.0053745045662541855) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz111.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz111.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz111.txt + +[gaz112] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz112.txt +centroid = (0.56155270551216752, -1.440486554182496) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz112.txt +description = Montgomery, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz112.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz112.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz112.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz112.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz112.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz112.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz112.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz112.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz112.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz112.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz112.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz112.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz112.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz112.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz112.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kvdi', 0.0024111786191334202) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz112.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz112.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz112.txt + +[gaz113] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz113.txt +centroid = (0.5606102277160907, -1.4369400451424434) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz113.txt +description = Toombs, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz113.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz113.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz113.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz113.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz113.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz113.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz113.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz113.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz113.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz113.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz113.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz113.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz113.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz113.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz113.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kvdi', 0.0013956911982427132) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz113.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz113.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz113.txt + +[gaz114] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz114.txt +centroid = (0.55930472143559884, -1.432185768260011) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz114.txt +description = Tattnall, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz114.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz114.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz114.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz114.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz114.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz114.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz114.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz114.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz114.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz114.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz114.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz114.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz114.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz114.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz114.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kcwv', 0.0038706291498904169) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz114.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz114.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz114.txt + +[gaz115] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz115.txt +centroid = (0.56124203690531249, -1.4291960192513447) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz115.txt +description = Evans, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz115.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz115.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz115.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz115.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz115.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz115.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz115.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz115.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz115.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz115.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz115.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz115.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz115.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz115.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz115.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kcwv', 0.00079423912402208717) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz115.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz115.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz115.txt + +[gaz116] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz116.txt +centroid = (0.55921047365599108, -1.4220070080623799) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz116.txt +description = Inland Bryan, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz116.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz116.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz116.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz116.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz116.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz116.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz116.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz116.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz116.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz116.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz116.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz116.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz116.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz116.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz116.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('klhw', 0.0030589657725645938) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz116.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz116.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz116.txt + +[gaz117] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz117.txt +centroid = (0.55523635894920009, -1.4172108432778996) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz117.txt +description = Coastal Bryan, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz117.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz117.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz117.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz117.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz117.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz117.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz117.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz117.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz117.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz117.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz117.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz117.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz117.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz117.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz117.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('ksvn', 0.0036367461932445412) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz117.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz117.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz117.txt + +[gaz118] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz118.txt +centroid = (0.55985275482072505, -1.41769255415145) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz118.txt +description = Inland Chatham, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz118.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz118.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz118.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz118.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz118.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz118.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz118.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz118.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz118.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz118.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz118.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz118.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz118.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz118.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz118.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('ksav', 0.00080214105245778641) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz118.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz118.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz118.txt + +[gaz119] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz119.txt +centroid = (0.55707768131005408, -1.414313596719589) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz119.txt +description = Coastal Chatham, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz119.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz119.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz119.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz119.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz119.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz119.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz119.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz119.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz119.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz119.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz119.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz119.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz119.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz119.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz119.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('ksvn', 0.0024276109935050783) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz119.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz119.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz119.txt + +[gaz120] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz120.txt +centroid = (0.55619105405004099, -1.4838579860945551) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz120.txt +description = Quitman, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz120.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz120.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz120.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz120.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz120.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz120.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz120.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz120.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz120.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz120.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz120.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz120.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz120.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz120.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz120.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('keuf', 0.0022268570548471113) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz120.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz120.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz120.txt + +[gaz121] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz121.txt +centroid = (0.55198481055273463, -1.4831860343325372) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz121.txt +description = Clay, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz121.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz121.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz121.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz121.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz121.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz121.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz121.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz121.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz121.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz121.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz121.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz121.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz121.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz121.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz121.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kbij', 0.004173609381714234) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz121.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz121.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz121.txt + +[gaz122] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz122.txt +centroid = (0.55436194899395086, -1.479239844893778) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz122.txt +description = Randolph, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz122.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz122.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz122.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz122.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz122.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz122.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz122.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz122.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz122.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz122.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz122.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz122.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz122.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz122.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz122.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('keuf', 0.0064972647303998838) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz122.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz122.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz122.txt + +[gaz123] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz123.txt +centroid = (0.55028835051979619, -1.4769831341709494) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz123.txt +description = Calhoun, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz123.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz123.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz123.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz123.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz123.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz123.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz123.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz123.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz123.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz123.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz123.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz123.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz123.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz123.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz123.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kbij', 0.0045453355013107344) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz123.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz123.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz123.txt + +[gaz124] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz124.txt +centroid = (0.55460978574773412, -1.4737001698479482) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz124.txt +description = Terrell, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz124.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz124.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz124.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz124.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz124.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz124.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz124.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz124.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz124.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz124.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz124.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz124.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz124.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz124.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz124.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kaby', 0.005516625798831395) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz124.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz124.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz124.txt + +[gaz125] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz125.txt +centroid = (0.5503599090191279, -1.4698534641765524) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz125.txt +description = Dougherty, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz125.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz125.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz125.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz125.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz125.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz125.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz125.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz125.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz125.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz125.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz125.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz125.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz125.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz125.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz125.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kaby', 0.00024396828920284486) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz125.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz125.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz125.txt + +[gaz126] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz126.txt +centroid = (0.5546586549667899, -1.4685374859205489) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz126.txt +description = Lee, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz126.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz126.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz126.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz126.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz126.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz126.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz126.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz126.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz126.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz126.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz126.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz126.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz126.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz126.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz126.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kaby', 0.004386629151032528) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz126.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz126.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz126.txt + +[gaz127] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz127.txt +centroid = (0.55067755894299086, -1.4634760310897652) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz127.txt +description = Worth, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz127.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz127.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz127.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz127.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz127.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz127.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz127.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz127.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz127.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz127.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz127.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz127.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz127.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz127.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz127.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('ktma', 0.0059798075433983638) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz127.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz127.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz127.txt + +[gaz128] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz128.txt +centroid = (0.55355386155027753, -1.4595176243462422) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz128.txt +description = Turner, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz128.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz128.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz128.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz128.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz128.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz128.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz128.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz128.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz128.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz128.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz128.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz128.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz128.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz128.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz128.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('ktma', 0.0055983579801553145) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz128.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz128.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz128.txt + +[gaz129] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz129.txt +centroid = (0.54903694944611625, -1.4578141829962956) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz129.txt +description = Tift, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz129.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz129.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz129.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz129.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz129.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz129.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz129.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz129.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz129.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz129.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz129.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz129.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz129.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz129.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz129.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('ktma', 0.00095388765490439715) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz129.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz129.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz129.txt + +[gaz130] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz130.txt +centroid = (0.55431307977489508, -1.4524717301559411) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz130.txt +description = Ben Hill, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz130.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz130.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz130.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz130.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz130.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz130.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz130.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz130.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz130.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz130.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz130.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz130.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz130.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz130.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz130.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kfzg', 0.0015747633117350283) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz130.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz130.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz130.txt + +[gaz131] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz131.txt +centroid = (0.55156418620300396, -1.4534473692078058) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz131.txt +description = Irwin, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz131.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz131.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz131.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz131.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz131.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz131.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz131.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz131.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz131.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz131.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz131.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz131.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz131.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz131.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz131.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kfzg', 0.0013594510257181293) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz131.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz131.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz131.txt + +[gaz132] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz132.txt +centroid = (0.55063741637019503, -1.4459930679725381) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz132.txt +description = Coffee, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz132.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz132.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz132.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz132.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz132.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz132.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz132.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz132.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz132.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz132.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz132.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz132.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz132.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz132.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz132.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kdqh', 0.0012764397849498448) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz132.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz132.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz132.txt + +[gaz133] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz133.txt +centroid = (0.55511244057230846, -1.4422877339705542) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz133.txt +description = Jeff Davis, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz133.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz133.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz133.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz133.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz133.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz133.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz133.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz133.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz133.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz133.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz133.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz133.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz133.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz133.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz133.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kamg', 0.005169372897217828) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz133.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz133.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz133.txt + +[gaz134] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz134.txt +centroid = (0.55071595618653479, -1.4390710921591285) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz134.txt +description = Bacon, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz134.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz134.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz134.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz134.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz134.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz134.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz134.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz134.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz134.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz134.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz134.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz134.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz134.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz134.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz134.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kamg', 0.00078826025893624825) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz134.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz134.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz134.txt + +[gaz135] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz135.txt +centroid = (0.55412982020343571, -1.4362139881736138) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz135.txt +description = Appling, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz135.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz135.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz135.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz135.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz135.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz135.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz135.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz135.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz135.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz135.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz135.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz135.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz135.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz135.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz135.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kamg', 0.004902794280123501) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz135.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz135.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz135.txt + +[gaz136] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz136.txt +centroid = (0.55067755894299086, -1.4297178726976909) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz136.txt +description = Wayne, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz136.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz136.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz136.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz136.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz136.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz136.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz136.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz136.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz136.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz136.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz136.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz136.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz136.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz136.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz136.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kjes', 0.00051184436840714974) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz136.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz136.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz136.txt + +[gaz137] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz137.txt +centroid = (0.55419090672725546, -1.4267368503352846) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz137.txt +description = Long, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz137.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz137.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz137.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz137.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz137.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz137.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz137.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz137.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz137.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz137.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz137.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz137.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz137.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz137.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz137.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('klhw', 0.0035019801649160387) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz137.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz137.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz137.txt + +[gaz138] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz138.txt +centroid = (0.55590132939420989, -1.4230576962720807) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz138.txt +description = Inland Liberty, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz138.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz138.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz138.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz138.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz138.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz138.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz138.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz138.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz138.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz138.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz138.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz138.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz138.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz138.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz138.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('klhw', 0.00073481938254482801) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz138.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz138.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz138.txt + +[gaz139] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz139.txt +centroid = (0.55277369937463605, -1.4172282965704195) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz139.txt +description = Coastal Liberty, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz139.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz139.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz139.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz139.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz139.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz139.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz139.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz139.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz139.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz139.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz139.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz139.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz139.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz139.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz139.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('ksvn', 0.0060702013171463334) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz139.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz139.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz139.txt + +[gaz140] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz140.txt +centroid = (0.55026391591026824, -1.4222286648773834) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz140.txt +description = Inland McIntosh, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz140.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz140.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz140.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz140.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz140.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz140.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz140.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz140.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz140.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz140.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz140.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz140.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz140.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz140.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz140.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kbqk', 0.0048586413445663142) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz140.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz140.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz140.txt + +[gaz141] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz141.txt +centroid = (0.54905440273863615, -1.418954427200642) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz141.txt +description = Coastal McIntosh, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz141.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz141.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz141.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz141.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz141.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz141.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz141.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz141.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz141.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz141.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz141.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz141.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz141.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz141.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz141.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kbqk', 0.0044051878037186009) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz141.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz141.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz141.txt + +[gaz142] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz142.txt +centroid = (0.54668773627293188, -1.4818491121255095) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz142.txt +description = Early, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz142.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz142.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz142.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz142.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz142.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz142.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz142.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz142.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz142.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz142.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz142.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz142.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz142.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz142.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz142.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kbij', 0.0013610506322850862) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz142.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz142.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz142.txt + +[gaz143] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz143.txt +centroid = (0.54391440809151292, -1.4788296925195594) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz143.txt +description = Miller, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz143.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz143.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz143.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz143.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz143.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz143.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz143.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz143.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz143.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz143.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz143.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz143.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz143.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz143.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz143.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kbge', 0.0037390953597056004) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz143.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz143.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz143.txt + +[gaz144] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz144.txt +centroid = (0.54674533213824761, -1.4738380508588556) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz144.txt +description = Baker, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz144.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz144.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz144.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz144.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz144.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz144.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz144.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz144.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz144.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz144.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz144.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz144.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz144.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz144.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz144.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kaby', 0.0051331834663871818) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz144.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz144.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz144.txt + +[gaz145] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz145.txt +centroid = (0.5449860402522374, -1.4694660010826097) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz145.txt +description = Mitchell, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz145.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz145.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz145.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz145.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz145.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz145.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz145.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz145.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz145.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz145.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz145.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz145.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz145.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz145.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz145.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kaby', 0.0053751453531845298) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz145.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz145.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz145.txt + +[gaz146] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz146.txt +centroid = (0.54434026842899952, -1.462041370444626) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz146.txt +description = Colquitt, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz146.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz146.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz146.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz146.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz146.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz146.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz146.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz146.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz146.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz146.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz146.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz146.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz146.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz146.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz146.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kmgr', 0.001880488328183259) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz146.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz146.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz146.txt + +[gaz147] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz147.txt +centroid = (0.54373987516631339, -1.456136921585129) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz147.txt +description = Cook, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz147.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz147.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz147.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz147.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz147.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz147.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz147.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz147.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz147.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz147.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz147.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz147.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz147.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz147.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz147.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('ktma', 0.0047009144665427259) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz147.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz147.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz147.txt + +[gaz148] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz148.txt +centroid = (0.54587092218299849, -1.4526323004471244) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz148.txt +description = Berrien, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz148.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz148.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz148.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz148.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz148.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz148.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz148.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz148.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz148.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz148.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz148.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz148.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz148.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz148.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz148.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('ktma', 0.0044974428096523815) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz148.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz148.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz148.txt + +[gaz149] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz149.txt +centroid = (0.54623744132591734, -1.4465288840529003) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz149.txt +description = Atkinson, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz149.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz149.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz149.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz149.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz149.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz149.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz149.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz149.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz149.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz149.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz149.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz149.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz149.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz149.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz149.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kdqh', 0.00314777508541705) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz149.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz149.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz149.txt + +[gaz150] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz150.txt +centroid = (0.54198581926805911, -1.4385666920053022) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz150.txt +description = Ware, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz150.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz150.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz150.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz150.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz150.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz150.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz150.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz150.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz150.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz150.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz150.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz150.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz150.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz150.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz150.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kays', 0.0034479467007287813) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz150.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz150.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz150.txt + +[gaz151] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz151.txt +centroid = (0.54731605480364975, -1.4348927739298543) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz151.txt +description = Pierce, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz151.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz151.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz151.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz151.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz151.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz151.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz151.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz151.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz151.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz151.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz151.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz151.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz151.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz151.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz151.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kays', 0.0033710525438409118) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz151.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz151.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz151.txt + +[gaz152] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz152.txt +centroid = (0.54449036674467099, -1.4308540820407392) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz152.txt +description = Brantley, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz152.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz152.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz152.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz152.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz152.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz152.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz152.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz152.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz152.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz152.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz152.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz152.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz152.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz152.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz152.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kjes', 0.0064025690413836781) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz152.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz152.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz152.txt + +[gaz153] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz153.txt +centroid = (0.54576096644012284, -1.4248693480356507) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz153.txt +description = Inland Glynn, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz153.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz153.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz153.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz153.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz153.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz153.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz153.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz153.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz153.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz153.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz153.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz153.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz153.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz153.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz153.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kbqk', 0.0025942401968697209) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz153.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz153.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz153.txt + +[gaz154] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz154.txt +centroid = (0.54454098129297879, -1.421404869470442) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz154.txt +description = Coastal Glynn, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz154.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz154.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz154.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz154.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz154.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz154.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz154.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz154.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz154.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz154.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz154.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz154.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz154.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz154.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz154.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kbqk', 0.00095765962781261616) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz154.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz154.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz154.txt + +[gaz155] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz155.txt +centroid = (0.54014624223645713, -1.4812277749117995) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz155.txt +description = Seminole, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz155.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz155.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz155.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz155.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz155.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz155.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz155.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz155.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz155.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz155.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz155.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz155.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz155.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz155.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz155.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kbge', 0.0035286800279099115) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz155.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz155.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz155.txt + +[gaz156] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz156.txt +centroid = (0.53898385295462892, -1.4760598549966444) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz156.txt +description = Decatur, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz156.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz156.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz156.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz156.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz156.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz156.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz156.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz156.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz156.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz156.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz156.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz156.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz156.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz156.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz156.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kbge', 0.0017472193384307528) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz156.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz156.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz156.txt + +[gaz157] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz157.txt +centroid = (0.53886517056549332, -1.4701676234419114) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz157.txt +description = Grady, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz157.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz157.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz157.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz157.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz157.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz157.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz157.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz157.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz157.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz157.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz157.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz157.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz157.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz157.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz157.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('ktvi', 0.0053082714789139005) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz157.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz157.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz157.txt + +[gaz158] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz158.txt +centroid = (0.53867318434777389, -1.4646698362981294) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz158.txt +description = Thomas, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz158.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz158.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz158.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz158.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz158.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz158.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz158.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz158.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz158.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz158.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz158.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz158.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz158.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz158.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz158.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('ktvi', 0.00087365121935028915) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz158.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz158.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz158.txt + +[gaz159] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz159.txt +centroid = (0.53829444790009107, -1.4587514248046165) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz159.txt +description = Brooks, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz159.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz159.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz159.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz159.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz159.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz159.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz159.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz159.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz159.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz159.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz159.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz159.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz159.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz159.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz159.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('ktvi', 0.00462910589888978) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz159.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz159.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz159.txt + +[gaz160] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz160.txt +centroid = (0.53815307623067954, -1.4532955255628823) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz160.txt +description = Lowndes, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz160.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz160.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz160.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz160.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz160.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz160.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz160.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz160.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz160.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz160.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz160.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz160.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz160.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz160.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz160.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kvld', 0.0008826907498611609) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz160.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz160.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz160.txt + +[gaz161] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz161.txt +centroid = (0.54171529323400003, -1.4497158552670419) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz161.txt +description = Lanier, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz161.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz161.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz161.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz161.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz161.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz161.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz161.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz161.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz161.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz161.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz161.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz161.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz161.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz161.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz161.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kvad', 0.0024031517366114273) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz161.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz161.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz161.txt + +[gaz162] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz162.txt +centroid = (0.53599235861671057, -1.4467714848189275) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz162.txt +description = Echols, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz162.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz162.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz162.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz162.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz162.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz162.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz162.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz162.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz162.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz162.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz162.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz162.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz162.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz162.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz162.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('khoe', 0.0063826617630479629) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz162.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz162.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz162.txt + +[gaz163] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz163.txt +centroid = (0.53957028358329895, -1.4434972471421861) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz163.txt +description = Clinch, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz163.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz163.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz163.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz163.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz163.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz163.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz163.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz163.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz163.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz163.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz163.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz163.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz163.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz163.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz163.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('khoe', 0.0027026193849130115) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz163.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz163.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz163.txt + +[gaz164] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz164.txt +centroid = (0.53724375969039051, -1.4335785410031026) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz164.txt +description = Charlton, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz164.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz164.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz164.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz164.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz164.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz164.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz164.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz164.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz164.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz164.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz164.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz164.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz164.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz164.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz164.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kjax', 0.0082127560752659704) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz164.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz164.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz164.txt + +[gaz165] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz165.txt +centroid = (0.54042724024602817, -1.4271347854047394) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz165.txt +description = Inland Camden, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz165.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz165.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz165.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz165.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz165.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz165.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz165.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz165.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz165.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz165.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz165.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz165.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz165.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz165.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz165.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kssi', 0.0066129533614210515) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz165.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz165.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz165.txt + +[gaz166] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ga/gaz166.txt +centroid = (0.53910428067301652, -1.4233927994884634) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ga/gaz166.txt +description = Coastal Camden, GA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ga/gaz166.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ga/gaz166.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ga/gaz166.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ga/gaz166.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ga/gaz166.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ga/gaz166.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ga/gaz166.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ga/gaz166.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ga.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ga/gaz166.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ga/gaz166.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ga/gaz166.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ga/gaz166.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ga/gaz166.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ga/gaz166.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ga/gaz166.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ga.txt +station = ('kfhb', 0.0048524939382695483) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ga/gaz166.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ga/gaz166.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ga/gaz166.txt + +[guz001] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/gu/guz001.txt +centroid = (0.23460541272382579, 2.5267986792455388) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/gu/guz001.txt +description = Guam, GU +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/gu/guz001.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/gu/guz001.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/gu/guz001.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/gu/guz001.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/gu/guz001.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/gu/guz001.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/gu/guz001.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/gu/guz001.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/gu.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/gu/guz001.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/gu/guz001.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/gu/guz001.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/gu/guz001.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/gu/guz001.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/gu/guz001.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/gu/guz001.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/gu.txt +station = ('pgum', 0.00083931719942712457) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/gu/guz001.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/gu/guz001.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/gu/guz001.txt + +[guz002] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/gu/guz002.txt +centroid = (0.24706531825381328, 2.5344379853815178) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/gu/guz002.txt +description = Rota, GU +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/gu/guz002.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/gu/guz002.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/gu/guz002.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/gu/guz002.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/gu/guz002.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/gu/guz002.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/gu/guz002.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/gu/guz002.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/gu.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/gu/guz002.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/gu/guz002.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/gu/guz002.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/gu/guz002.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/gu/guz002.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/gu/guz002.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/gu/guz002.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/gu.txt +station = ('pgro', 0.00079465706363179768) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/gu/guz002.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/gu/guz002.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/gu/guz002.txt + +[guz003] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/gu/guz003.txt +centroid = (0.26182382240867735, 2.5416200152534745) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/gu/guz003.txt +description = Tinian, GU +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/gu/guz003.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/gu/guz003.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/gu/guz003.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/gu/guz003.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/gu/guz003.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/gu/guz003.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/gu/guz003.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/gu/guz003.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/gu.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/gu/guz003.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/gu/guz003.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/gu/guz003.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/gu/guz003.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/gu/guz003.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/gu/guz003.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/gu/guz003.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/gu.txt +station = ('pgwt', 0.00033931338383280451) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/gu/guz003.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/gu/guz003.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/gu/guz003.txt + +[guz004] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/gu/guz004.txt +centroid = (0.26509631475616674, 2.5438575273545312) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/gu/guz004.txt +description = Saipan, GU +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/gu/guz004.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/gu/guz004.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/gu/guz004.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/gu/guz004.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/gu/guz004.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/gu/guz004.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/gu/guz004.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/gu/guz004.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/gu.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/gu/guz004.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/gu/guz004.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/gu/guz004.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/gu/guz004.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/gu/guz004.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/gu/guz004.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/gu/guz004.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/gu.txt +station = ('pgsn', 0.0013005700511888995) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/gu/guz004.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/gu/guz004.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/gu/guz004.txt + +[hiz001] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/hi/hiz001.txt +centroid = (0.38217474630919829, -2.7952669701165584) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/hi/hiz001.txt +description = Niihau, HI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/hi/hiz001.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/hi/hiz001.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/hi/hiz001.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/hi/hiz001.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/hi/hiz001.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/hi/hiz001.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/hi/hiz001.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/hi/hiz001.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/hi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/hi/hiz001.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/hi/hiz001.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/hi/hiz001.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/hi/hiz001.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/hi/hiz001.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/hi/hiz001.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/hi/hiz001.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/hi.txt +station = ('phbk', 0.0064995297955778462) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/hi/hiz001.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/hi/hiz001.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/hi/hiz001.txt + +[hiz002] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/hi/hiz002.txt +centroid = (0.38508071951376893, -2.7825836624423155) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/hi/hiz002.txt +description = Kauai Windward, HI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/hi/hiz002.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/hi/hiz002.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/hi/hiz002.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/hi/hiz002.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/hi/hiz002.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/hi/hiz002.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/hi/hiz002.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/hi/hiz002.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/hi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/hi/hiz002.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/hi/hiz002.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/hi/hiz002.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/hi/hiz002.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/hi/hiz002.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/hi/hiz002.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/hi/hiz002.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/hi.txt +station = ('phli', 0.0021021690244537655) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/hi/hiz002.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/hi/hiz002.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/hi/hiz002.txt + +[hiz003] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/hi/hiz003.txt +centroid = (0.38421154554627573, -2.7867305647450542) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/hi/hiz003.txt +description = Kauai Leeward, HI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/hi/hiz003.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/hi/hiz003.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/hi/hiz003.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/hi/hiz003.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/hi/hiz003.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/hi/hiz003.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/hi/hiz003.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/hi/hiz003.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/hi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/hi/hiz003.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/hi/hiz003.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/hi/hiz003.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/hi/hiz003.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/hi/hiz003.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/hi/hiz003.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/hi/hiz003.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/hi.txt +station = ('phbk', 0.0018988542661676122) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/hi/hiz003.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/hi/hiz003.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/hi/hiz003.txt + +[hiz004] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/hi/hiz004.txt +centroid = (0.38565493283767505, -2.784545412521557) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/hi/hiz004.txt +description = Kauai Mountains, HI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/hi/hiz004.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/hi/hiz004.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/hi/hiz004.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/hi/hiz004.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/hi/hiz004.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/hi/hiz004.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/hi/hiz004.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/hi/hiz004.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/hi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/hi/hiz004.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/hi/hiz004.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/hi/hiz004.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/hi/hiz004.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/hi/hiz004.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/hi/hiz004.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/hi/hiz004.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/hi.txt +station = ('phli', 0.0039200405731955323) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/hi/hiz004.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/hi/hiz004.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/hi/hiz004.txt + +[hiz005] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/hi/hiz005.txt +centroid = (0.37235377860822622, -2.7567562801713037) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/hi/hiz005.txt +description = Oahu South Shore, HI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/hi/hiz005.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/hi/hiz005.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/hi/hiz005.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/hi/hiz005.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/hi/hiz005.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/hi/hiz005.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/hi/hiz005.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/hi/hiz005.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/hi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/hi/hiz005.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/hi/hiz005.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/hi/hiz005.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/hi/hiz005.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/hi/hiz005.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/hi/hiz005.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/hi/hiz005.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/hi.txt +station = ('phnl', 1.8727611974535563e-05) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/hi/hiz005.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/hi/hiz005.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/hi/hiz005.txt + +[hiz006] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/hi/hiz006.txt +centroid = (0.37464190525759078, -2.7607862454141583) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/hi/hiz006.txt +description = Waianae Coast, HI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/hi/hiz006.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/hi/hiz006.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/hi/hiz006.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/hi/hiz006.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/hi/hiz006.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/hi/hiz006.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/hi/hiz006.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/hi/hiz006.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/hi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/hi/hiz006.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/hi/hiz006.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/hi/hiz006.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/hi/hiz006.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/hi/hiz006.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/hi/hiz006.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/hi/hiz006.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/hi.txt +station = ('phhi', 0.0024251386800491982) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/hi/hiz006.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/hi/hiz006.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/hi/hiz006.txt + +[hiz007] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/hi/hiz007.txt +centroid = (0.37663332593411636, -2.7597547558262296) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/hi/hiz007.txt +description = Oahu North Shore, HI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/hi/hiz007.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/hi/hiz007.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/hi/hiz007.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/hi/hiz007.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/hi/hiz007.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/hi/hiz007.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/hi/hiz007.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/hi/hiz007.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/hi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/hi/hiz007.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/hi/hiz007.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/hi/hiz007.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/hi/hiz007.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/hi/hiz007.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/hi/hiz007.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/hi/hiz007.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/hi.txt +station = ('phhi', 0.0022143650924371012) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/hi/hiz007.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/hi/hiz007.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/hi/hiz007.txt + +[hiz008] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/hi/hiz008.txt +centroid = (0.37517074002094508, -2.7559377207521183) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/hi/hiz008.txt +description = Oahu Koolau, HI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/hi/hiz008.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/hi/hiz008.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/hi/hiz008.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/hi/hiz008.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/hi/hiz008.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/hi/hiz008.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/hi/hiz008.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/hi/hiz008.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/hi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/hi/hiz008.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/hi/hiz008.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/hi/hiz008.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/hi/hiz008.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/hi/hiz008.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/hi/hiz008.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/hi/hiz008.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/hi.txt +station = ('phhi', 0.0021178988618291992) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/hi/hiz008.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/hi/hiz008.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/hi/hiz008.txt + +[hiz009] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/hi/hiz009.txt +centroid = (0.37316710203965564, -2.7531853365217231) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/hi/hiz009.txt +description = Olomana, HI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/hi/hiz009.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/hi/hiz009.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/hi/hiz009.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/hi/hiz009.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/hi/hiz009.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/hi/hiz009.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/hi/hiz009.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/hi/hiz009.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/hi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/hi/hiz009.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/hi/hiz009.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/hi/hiz009.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/hi/hiz009.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/hi/hiz009.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/hi/hiz009.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/hi/hiz009.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/hi.txt +station = ('phng', 0.0012078610216929681) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/hi/hiz009.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/hi/hiz009.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/hi/hiz009.txt + +[hiz010] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/hi/hiz010.txt +centroid = (0.37497177248621777, -2.7580914570490789) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/hi/hiz010.txt +description = Central Oahu, HI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/hi/hiz010.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/hi/hiz010.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/hi/hiz010.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/hi/hiz010.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/hi/hiz010.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/hi/hiz010.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/hi/hiz010.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/hi/hiz010.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/hi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/hi/hiz010.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/hi/hiz010.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/hi/hiz010.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/hi/hiz010.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/hi/hiz010.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/hi/hiz010.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/hi/hiz010.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/hi.txt +station = ('phhi', 0.00010423200571916837) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/hi/hiz010.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/hi/hiz010.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/hi/hiz010.txt + +[hiz011] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/hi/hiz011.txt +centroid = (0.37469251980589863, -2.7599362700684371) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/hi/hiz011.txt +description = Waianae Mountains, HI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/hi/hiz011.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/hi/hiz011.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/hi/hiz011.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/hi/hiz011.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/hi/hiz011.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/hi/hiz011.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/hi/hiz011.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/hi/hiz011.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/hi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/hi/hiz011.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/hi/hiz011.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/hi/hiz011.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/hi/hiz011.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/hi/hiz011.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/hi/hiz011.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/hi/hiz011.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/hi.txt +station = ('phhi', 0.0016350582231633326) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/hi/hiz011.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/hi/hiz011.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/hi/hiz011.txt + +[hiz012] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/hi/hiz012.txt +centroid = (0.36885439345797766, -2.7374529386442465) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/hi/hiz012.txt +description = Molokai Windward, HI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/hi/hiz012.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/hi/hiz012.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/hi/hiz012.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/hi/hiz012.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/hi/hiz012.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/hi/hiz012.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/hi/hiz012.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/hi/hiz012.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/hi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/hi/hiz012.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/hi/hiz012.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/hi/hiz012.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/hi/hiz012.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/hi/hiz012.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/hi/hiz012.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/hi/hiz012.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/hi.txt +station = ('phjh', 0.0040007864226240574) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/hi/hiz012.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/hi/hiz012.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/hi/hiz012.txt + +[hiz013] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/hi/hiz013.txt +centroid = (0.36892071596955339, -2.7420012666749431) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/hi/hiz013.txt +description = Molokai Leeward, HI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/hi/hiz013.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/hi/hiz013.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/hi/hiz013.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/hi/hiz013.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/hi/hiz013.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/hi/hiz013.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/hi/hiz013.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/hi/hiz013.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/hi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/hi/hiz013.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/hi/hiz013.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/hi/hiz013.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/hi/hiz013.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/hi/hiz013.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/hi/hiz013.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/hi/hiz013.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/hi.txt +station = ('phmk', 0.000231797727164622) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/hi/hiz013.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/hi/hiz013.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/hi/hiz013.txt + +[hiz014] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/hi/hiz014.txt +centroid = (0.36390813035782571, -2.7391092561043888) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/hi/hiz014.txt +description = Lanai Makai, HI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/hi/hiz014.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/hi/hiz014.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/hi/hiz014.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/hi/hiz014.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/hi/hiz014.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/hi/hiz014.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/hi/hiz014.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/hi/hiz014.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/hi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/hi/hiz014.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/hi/hiz014.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/hi/hiz014.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/hi/hiz014.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/hi/hiz014.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/hi/hiz014.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/hi/hiz014.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/hi.txt +station = ('phny', 0.0011485248561076747) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/hi/hiz014.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/hi/hiz014.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/hi/hiz014.txt + +[hiz015] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/hi/hiz015.txt +centroid = (0.36333740769242351, -2.7386624518158786) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/hi/hiz015.txt +description = Lanai Mauka, HI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/hi/hiz015.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/hi/hiz015.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/hi/hiz015.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/hi/hiz015.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/hi/hiz015.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/hi/hiz015.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/hi/hiz015.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/hi/hiz015.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/hi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/hi/hiz015.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/hi/hiz015.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/hi/hiz015.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/hi/hiz015.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/hi/hiz015.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/hi/hiz015.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/hi/hiz015.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/hi.txt +station = ('phny', 0.0008311858288004918) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/hi/hiz015.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/hi/hiz015.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/hi/hiz015.txt + +[hiz016] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/hi/hiz016.txt +centroid = (0.3586703972725907, -2.7333915574748553) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/hi/hiz016.txt +description = Kahoolawe, HI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/hi/hiz016.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/hi/hiz016.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/hi/hiz016.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/hi/hiz016.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/hi/hiz016.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/hi/hiz016.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/hi/hiz016.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/hi/hiz016.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/hi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/hi/hiz016.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/hi/hiz016.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/hi/hiz016.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/hi/hiz016.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/hi/hiz016.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/hi/hiz016.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/hi/hiz016.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/hi.txt +station = ('phog', 0.0067630447649807308) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/hi/hiz016.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/hi/hiz016.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/hi/hiz016.txt + +[hiz017] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/hi/hiz017.txt +centroid = (0.36511415287095378, -2.7327702202611452) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/hi/hiz017.txt +description = Maui Windward West, HI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/hi/hiz017.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/hi/hiz017.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/hi/hiz017.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/hi/hiz017.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/hi/hiz017.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/hi/hiz017.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/hi/hiz017.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/hi/hiz017.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/hi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/hi/hiz017.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/hi/hiz017.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/hi/hiz017.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/hi/hiz017.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/hi/hiz017.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/hi/hiz017.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/hi/hiz017.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/hi.txt +station = ('phjh', 0.0019346861168572454) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/hi/hiz017.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/hi/hiz017.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/hi/hiz017.txt + +[hiz018] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/hi/hiz018.txt +centroid = (0.3646219700218914, -2.7339640254695095) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/hi/hiz018.txt +description = Maui Leeward West, HI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/hi/hiz018.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/hi/hiz018.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/hi/hiz018.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/hi/hiz018.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/hi/hiz018.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/hi/hiz018.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/hi/hiz018.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/hi/hiz018.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/hi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/hi/hiz018.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/hi/hiz018.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/hi/hiz018.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/hi/hiz018.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/hi/hiz018.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/hi/hiz018.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/hi/hiz018.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/hi.txt +station = ('phjh', 0.0021957535457955849) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/hi/hiz018.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/hi/hiz018.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/hi/hiz018.txt + +[hiz019] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/hi/hiz019.txt +centroid = (0.36381388257821795, -2.7303930818199289) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/hi/hiz019.txt +description = Maui Central Valley, HI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/hi/hiz019.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/hi/hiz019.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/hi/hiz019.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/hi/hiz019.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/hi/hiz019.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/hi/hiz019.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/hi/hiz019.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/hi/hiz019.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/hi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/hi/hiz019.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/hi/hiz019.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/hi/hiz019.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/hi/hiz019.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/hi/hiz019.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/hi/hiz019.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/hi/hiz019.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/hi.txt +station = ('phog', 0.00096606812977984491) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/hi/hiz019.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/hi/hiz019.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/hi/hiz019.txt + +[hiz020] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/hi/hiz020.txt +centroid = (0.36305815501210448, -2.7257679593021442) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/hi/hiz020.txt +description = Windward Haleakala, HI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/hi/hiz020.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/hi/hiz020.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/hi/hiz020.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/hi/hiz020.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/hi/hiz020.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/hi/hiz020.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/hi/hiz020.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/hi/hiz020.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/hi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/hi/hiz020.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/hi/hiz020.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/hi/hiz020.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/hi/hiz020.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/hi/hiz020.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/hi/hiz020.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/hi/hiz020.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/hi.txt +station = ('phog', 0.0045493913869903979) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/hi/hiz020.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/hi/hiz020.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/hi/hiz020.txt + +[hiz021] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/hi/hiz021.txt +centroid = (0.36113654750565871, -2.7286268086169105) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/hi/hiz021.txt +description = Leeward Heleakala, HI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/hi/hiz021.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/hi/hiz021.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/hi/hiz021.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/hi/hiz021.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/hi/hiz021.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/hi/hiz021.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/hi/hiz021.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/hi/hiz021.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/hi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/hi/hiz021.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/hi/hiz021.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/hi/hiz021.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/hi/hiz021.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/hi/hiz021.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/hi/hiz021.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/hi/hiz021.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/hi.txt +station = ('phog', 0.0039507957710135056) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/hi/hiz021.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/hi/hiz021.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/hi/hiz021.txt + +[hiz022] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/hi/hiz022.txt +centroid = (0.36160604107444516, -2.7266685491961731) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/hi/hiz022.txt +description = Haleakala Summit, HI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/hi/hiz022.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/hi/hiz022.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/hi/hiz022.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/hi/hiz022.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/hi/hiz022.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/hi/hiz022.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/hi/hiz022.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/hi/hiz022.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/hi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/hi/hiz022.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/hi/hiz022.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/hi/hiz022.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/hi/hiz022.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/hi/hiz022.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/hi/hiz022.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/hi/hiz022.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/hi.txt +station = ('phog', 0.0046271605532693825) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/hi/hiz022.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/hi/hiz022.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/hi/hiz022.txt + +[hiz023] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/hi/hiz023.txt +centroid = (0.34098672129138413, -2.7205651328019491) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/hi/hiz023.txt +description = Kona, HI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/hi/hiz023.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/hi/hiz023.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/hi/hiz023.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/hi/hiz023.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/hi/hiz023.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/hi/hiz023.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/hi/hiz023.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/hi/hiz023.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/hi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/hi/hiz023.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/hi/hiz023.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/hi/hiz023.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/hi/hiz023.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/hi/hiz023.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/hi/hiz023.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/hi/hiz023.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/hi.txt +station = ('phko', 0.0044527350181149204) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/hi/hiz023.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/hi/hiz023.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/hi/hiz023.txt + +[hiz024] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/hi/hiz024.txt +centroid = (0.33528822128362268, -2.713585561123224) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/hi/hiz024.txt +description = South Big Island, HI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/hi/hiz024.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/hi/hiz024.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/hi/hiz024.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/hi/hiz024.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/hi/hiz024.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/hi/hiz024.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/hi/hiz024.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/hi/hiz024.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/hi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/hi/hiz024.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/hi/hiz024.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/hi/hiz024.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/hi/hiz024.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/hi/hiz024.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/hi/hiz024.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/hi/hiz024.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/hi.txt +station = ('phsf', 0.010067975317063682) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/hi/hiz024.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/hi/hiz024.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/hi/hiz024.txt + +[hiz025] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/hi/hiz025.txt +centroid = (0.34510220766758681, -2.7103392487145141) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/hi/hiz025.txt +description = Big Island North and East, HI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/hi/hiz025.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/hi/hiz025.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/hi/hiz025.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/hi/hiz025.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/hi/hiz025.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/hi/hiz025.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/hi/hiz025.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/hi/hiz025.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/hi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/hi/hiz025.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/hi/hiz025.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/hi/hiz025.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/hi/hiz025.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/hi/hiz025.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/hi/hiz025.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/hi/hiz025.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/hi.txt +station = ('phto', 0.0040787863070676812) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/hi/hiz025.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/hi/hiz025.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/hi/hiz025.txt + +[hiz026] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/hi/hiz026.txt +centroid = (0.34824729097968055, -2.7186243266737313) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/hi/hiz026.txt +description = Kohala, HI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/hi/hiz026.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/hi/hiz026.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/hi/hiz026.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/hi/hiz026.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/hi/hiz026.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/hi/hiz026.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/hi/hiz026.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/hi/hiz026.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/hi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/hi/hiz026.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/hi/hiz026.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/hi/hiz026.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/hi/hiz026.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/hi/hiz026.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/hi/hiz026.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/hi/hiz026.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/hi.txt +station = ('phsf', 0.0046168229871953815) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/hi/hiz026.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/hi/hiz026.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/hi/hiz026.txt + +[hiz027] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/hi/hiz027.txt +centroid = (0.34188032986840527, -2.7153849955820295) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/hi/hiz027.txt +description = Big Island Interior, HI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/hi/hiz027.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/hi/hiz027.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/hi/hiz027.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/hi/hiz027.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/hi/hiz027.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/hi/hiz027.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/hi/hiz027.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/hi/hiz027.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/hi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/hi/hiz027.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/hi/hiz027.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/hi/hiz027.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/hi/hiz027.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/hi/hiz027.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/hi/hiz027.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/hi/hiz027.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/hi.txt +station = ('phsf', 0.003439724695387409) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/hi/hiz027.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/hi/hiz027.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/hi/hiz027.txt + +[hiz028] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/hi/hiz028.txt +centroid = (0.34123455804516739, -2.715018476439111) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/hi/hiz028.txt +description = Big Island Summit, HI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/hi/hiz028.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/hi/hiz028.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/hi/hiz028.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/hi/hiz028.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/hi/hiz028.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/hi/hiz028.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/hi/hiz028.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/hi/hiz028.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/hi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/hi/hiz028.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/hi/hiz028.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/hi/hiz028.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/hi/hiz028.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/hi/hiz028.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/hi/hiz028.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/hi/hiz028.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/hi.txt +station = ('phsf', 0.0040525063566535244) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/hi/hiz028.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/hi/hiz028.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/hi/hiz028.txt + +[iaz001] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz001.txt +centroid = (0.75713255616140007, -1.6791865093315006) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz001.txt +description = Lyon, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz001.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz001.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz001.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz001.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz001.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz001.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz001.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz001.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz001.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz001.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz001.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz001.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz001.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz001.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz001.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('klyv', 0.0041999831562224603) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz001.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz001.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz001.txt + +[iaz002] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz002.txt +centroid = (0.75709764957636028, -1.6689501532685538) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz002.txt +description = Osceola, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz002.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz002.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz002.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz002.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz002.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz002.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz002.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz002.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz002.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz002.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz002.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz002.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz002.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz002.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz002.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('kshl', 0.003880986601481607) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz002.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz002.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz002.txt + +[iaz003] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz003.txt +centroid = (0.7570871776008482, -1.6606982365651244) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz003.txt +description = Dickinson, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz003.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz003.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz003.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz003.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz003.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz003.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz003.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz003.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz003.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz003.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz003.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz003.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz003.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz003.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz003.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('kspw', 0.0037799785195063965) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz003.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz003.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz003.txt + +[iaz004] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz004.txt +centroid = (0.7570871776008482, -1.6524498105201992) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz004.txt +description = Emmet, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz004.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz004.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz004.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz004.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz004.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz004.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz004.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz004.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz004.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz004.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz004.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz004.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz004.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz004.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz004.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('kest', 0.00098665347605105956) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz004.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz004.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz004.txt + +[iaz005] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz005.txt +centroid = (0.75405554069013414, -1.644217092438542) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz005.txt +description = Kossuth, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz005.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz005.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz005.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz005.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz005.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz005.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz005.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz005.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz005.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz005.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz005.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz005.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz005.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz005.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz005.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('kaxa', 0.00224348946154797) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz005.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz005.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz005.txt + +[iaz006] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz006.txt +centroid = (0.75708019628384027, -1.6359704117228688) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz006.txt +description = Winnebago, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz006.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz006.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz006.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz006.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz006.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz006.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz006.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz006.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz006.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz006.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz006.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz006.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz006.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz006.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz006.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('kfxy', 0.0029548650549850214) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz006.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz006.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz006.txt + +[iaz007] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz007.txt +centroid = (0.75707845095458837, -1.6277097683731798) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz007.txt +description = Worth, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz007.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz007.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz007.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz007.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz007.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz007.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz007.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz007.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz007.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz007.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz007.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz007.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz007.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz007.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz007.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('kmcw', 0.0040742481136228576) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz007.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz007.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz007.txt + +[iaz008] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz008.txt +centroid = (0.75671193181166951, -1.6194753049622705) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz008.txt +description = Mitchell, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz008.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz008.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz008.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz008.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz008.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz008.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz008.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz008.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz008.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz008.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz008.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz008.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz008.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz008.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz008.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('kccy', 0.0055120198370719109) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz008.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz008.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz008.txt + +[iaz009] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz009.txt +centroid = (0.75671891312867745, -1.6112390962221093) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz009.txt +description = Howard, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz009.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz009.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz009.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz009.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz009.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz009.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz009.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz009.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz009.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz009.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz009.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz009.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz009.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz009.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz009.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('kfka', 0.0058476011542273531) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz009.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz009.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz009.txt + +[iaz010] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz010.txt +centroid = (0.75556350516385717, -1.602974962213916) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz010.txt +description = Winneshiek, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz010.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz010.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz010.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz010.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz010.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz010.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz010.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz010.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz010.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz010.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz010.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz010.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz010.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz010.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz010.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('kdeh', 0.0014079052474706417) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz010.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz010.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz010.txt + +[iaz011] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz011.txt +centroid = (0.75545354942098164, -1.5948487092166306) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz011.txt +description = Allamakee, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz011.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz011.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz011.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz011.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz011.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz011.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz011.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz011.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz011.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz011.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz011.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz011.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz011.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz011.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz011.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('kpdc', 0.0056013472774177776) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz011.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz011.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz011.txt + +[iaz012] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz012.txt +centroid = (0.75193322031970899, -1.6786210226538543) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz012.txt +description = Sioux, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz012.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz012.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz012.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz012.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz012.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz012.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz012.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz012.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz012.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz012.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz012.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz012.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz012.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz012.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz012.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('korc', 0.0022395187886684394) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz012.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz012.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz012.txt + +[iaz013] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz013.txt +centroid = (0.75195416427073292, -1.6689710972195777) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz013.txt +description = O'Brien, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz013.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz013.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz013.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz013.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz013.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz013.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz013.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz013.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz013.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz013.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz013.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz013.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz013.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz013.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz013.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('kshl', 0.0035234542840496242) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz013.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz013.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz013.txt + +[iaz014] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz014.txt +centroid = (0.75193322031970899, -1.6606982365651244) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz014.txt +description = Clay, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz014.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz014.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz014.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz014.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz014.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz014.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz014.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz014.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz014.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz014.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz014.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz014.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz014.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz014.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz014.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('kspw', 0.0016889430152277811) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz014.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz014.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz014.txt + +[iaz015] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz015.txt +centroid = (0.75192274834419703, -1.6524463198616954) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz015.txt +description = Palo Alto, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz015.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz015.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz015.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz015.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz015.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz015.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz015.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz015.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz015.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz015.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz015.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz015.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz015.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz015.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz015.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('kaxa', 0.0052460028793404048) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz015.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz015.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz015.txt + +[iaz016] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz016.txt +centroid = (0.75191925768569312, -1.6359721570521208) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz016.txt +description = Hancock, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz016.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz016.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz016.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz016.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz016.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz016.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz016.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz016.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz016.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz016.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz016.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz016.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz016.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz016.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz016.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('kfxy', 0.0029678639162164125) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz016.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz016.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz016.txt + +[iaz017] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz017.txt +centroid = (0.7519157670271891, -1.6277080230439278) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz017.txt +description = Cerro Gordo, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz017.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz017.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz017.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz017.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz017.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz017.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz017.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz017.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz017.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz017.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz017.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz017.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz017.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz017.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz017.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('kmcw', 0.0015096835206371017) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz017.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz017.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz017.txt + +[iaz018] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz018.txt +centroid = (0.75153877590875839, -1.6194735596330185) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz018.txt +description = Floyd, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz018.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz018.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz018.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz018.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz018.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz018.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz018.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz018.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz018.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz018.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz018.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz018.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz018.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz018.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz018.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('kccy', 0.0022005631336799907) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz018.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz018.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz018.txt + +[iaz019] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz019.txt +centroid = (0.7515405212380103, -1.6112460775391171) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz019.txt +description = Chickasaw, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz019.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz019.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz019.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz019.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz019.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz019.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz019.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz019.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz019.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz019.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz019.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz019.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz019.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz019.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz019.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('kccy', 0.0038152248942652182) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz019.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz019.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz019.txt + +[iaz020] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz020.txt +centroid = (0.74591532505883262, -1.6792545771723284) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz020.txt +description = Plymouth, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz020.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz020.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz020.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz020.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz020.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz020.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz020.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz020.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz020.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz020.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz020.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz020.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz020.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz020.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz020.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('klrj', 0.00075049805530193246) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz020.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz020.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz020.txt + +[iaz021] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz021.txt +centroid = (0.7458786731445407, -1.6689518985978058) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz021.txt +description = Cherokee, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz021.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz021.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz021.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz021.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz021.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz021.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz021.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz021.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz021.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz021.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz021.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz021.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz021.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz021.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz021.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('kckp', 0.00087543039241826711) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz021.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz021.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz021.txt + +[iaz022] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz022.txt +centroid = (0.74587518248603668, -1.6607034725528806) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz022.txt +description = Buena Vista, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz022.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz022.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz022.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz022.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz022.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz022.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz022.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz022.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz022.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz022.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz022.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz022.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz022.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz022.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz022.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('kslb', 0.0025886593235600083) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz022.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz022.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz022.txt + +[iaz023] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz023.txt +centroid = (0.74585074787650874, -1.6524585371664593) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz023.txt +description = Pocahontas, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz023.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz023.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz023.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz023.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz023.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz023.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz023.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz023.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz023.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz023.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz023.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz023.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz023.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz023.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz023.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('kaxa', 0.0080574503673072513) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz023.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz023.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz023.txt + +[iaz024] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz024.txt +centroid = (0.74658902215010248, -1.644227564414054) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz024.txt +description = Humboldt, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz024.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz024.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz024.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz024.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz024.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz024.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz024.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz024.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz024.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz024.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz024.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz024.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz024.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz024.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz024.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('kfod', 0.0039633795019546822) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz024.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz024.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz024.txt + +[iaz025] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz025.txt +centroid = (0.74583329458398884, -1.635987865015389) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz025.txt +description = Wright, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz025.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz025.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz025.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz025.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz025.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz025.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz025.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz025.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz025.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz025.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz025.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz025.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz025.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz025.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz025.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('kcav', 0.00049968697001080275) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz025.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz025.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz025.txt + +[iaz026] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz026.txt +centroid = (0.74582282260847688, -1.6277359483119596) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz026.txt +description = Franklin, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz026.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz026.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz026.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz026.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz026.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz026.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz026.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz026.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz026.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz026.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz026.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz026.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz026.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz026.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz026.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('kifa', 0.0045825295563787288) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz026.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz026.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz026.txt + +[iaz027] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz027.txt +centroid = (0.74580711464520888, -1.6194945035840425) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz027.txt +description = Butler, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz027.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz027.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz027.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz027.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz027.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz027.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz027.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz027.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz027.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz027.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz027.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz027.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz027.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz027.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz027.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('kalo', 0.0059281713486161779) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz027.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz027.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz027.txt + +[iaz028] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz028.txt +centroid = (0.7465593515528185, -1.6112565495146292) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz028.txt +description = Bremer, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz028.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz028.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz028.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz028.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz028.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz028.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz028.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz028.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz028.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz028.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz028.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz028.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz028.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz028.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz028.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('kalo', 0.0040598470944510556) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz028.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz028.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz028.txt + +[iaz029] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz029.txt +centroid = (0.74809175063606947, -1.6029854341894281) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz029.txt +description = Fayette, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz029.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz029.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz029.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz029.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz029.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz029.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz029.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz029.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz029.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz029.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz029.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz029.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz029.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz029.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz029.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('kolz', 0.0035823751255621753) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz029.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz029.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz029.txt + +[iaz030] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz030.txt +centroid = (0.74778108202921456, -1.5942081733811484) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz030.txt +description = Clayton, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz030.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz030.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz030.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz030.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz030.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz030.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz030.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz030.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz030.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz030.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz030.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz030.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz030.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz030.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz030.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('kpdc', 0.0041516149352505936) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz030.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz030.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz030.txt + +[iaz031] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz031.txt +centroid = (0.7398398339326403, -1.6762997347487019) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz031.txt +description = Woodbury, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz031.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz031.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz031.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz031.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz031.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz031.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz031.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz031.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz031.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz031.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz031.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz031.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz031.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz031.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz031.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('ksux', 0.0043642394003424153) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz031.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz031.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz031.txt + +[iaz032] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz032.txt +centroid = (0.73978921938433251, -1.6670268004328559) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz032.txt +description = Ida, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz032.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz032.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz032.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz032.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz032.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz032.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz032.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz032.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz032.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz032.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz032.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz032.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz032.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz032.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz032.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('kslb', 0.0051822102533082871) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz032.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz032.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz032.txt + +[iaz033] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz033.txt +centroid = (0.73977874740882055, -1.6599041117554671) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz033.txt +description = Sac, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz033.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz033.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz033.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz033.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz033.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz033.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz033.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz033.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz033.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz033.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz033.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz033.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz033.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz033.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz033.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('kslb', 0.0040780679529826063) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz033.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz033.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz033.txt + +[iaz034] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz034.txt +centroid = (0.73976129411630054, -1.6517883307336936) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz034.txt +description = Calhoun, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz034.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz034.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz034.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz034.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz034.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz034.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz034.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz034.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz034.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz034.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz034.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz034.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz034.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz034.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz034.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('kcin', 0.0061347462221785498) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz034.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz034.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz034.txt + +[iaz035] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz035.txt +centroid = (0.74050480437765009, -1.6437825054547954) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz035.txt +description = Webster, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz035.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz035.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz035.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz035.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz035.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz035.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz035.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz035.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz035.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz035.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz035.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz035.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz035.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz035.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz035.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('kfod', 0.0021328836427382805) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz035.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz035.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz035.txt + +[iaz036] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz036.txt +centroid = (0.73973511417752058, -1.6354921915078224) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz036.txt +description = Hamilton, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz036.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz036.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz036.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz036.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz036.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz036.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz036.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz036.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz036.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz036.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz036.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz036.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz036.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz036.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz036.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('kebs', 0.0022348746601969084) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz036.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz036.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz036.txt + +[iaz037] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz037.txt +centroid = (0.7397368595067727, -1.6273519758765207) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz037.txt +description = Hardin, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz037.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz037.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz037.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz037.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz037.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz037.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz037.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz037.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz037.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz037.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz037.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz037.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz037.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz037.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz037.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('kifa', 0.0015520496111445065) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz037.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz037.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz037.txt + +[iaz038] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz038.txt +centroid = (0.74005276410138354, -1.6195084662180583) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz038.txt +description = Grundy, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz038.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz038.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz038.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz038.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz038.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz038.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz038.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz038.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz038.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz038.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz038.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz038.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz038.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz038.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz038.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('kmiw', 0.0052362292670728615) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz038.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz038.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz038.txt + +[iaz039] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz039.txt +centroid = (0.74124307865124384, -1.6110872525771855) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz039.txt +description = Black Hawk, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz039.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz039.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz039.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz039.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz039.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz039.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz039.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz039.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz039.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz039.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz039.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz039.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz039.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz039.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz039.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('kalo', 0.0018249763751588355) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz039.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz039.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz039.txt + +[iaz040] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz040.txt +centroid = (0.74125355062675569, -1.6028737331173004) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz040.txt +description = Buchanan, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz040.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz040.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz040.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz040.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz040.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz040.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz040.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz040.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz040.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz040.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz040.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz040.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz040.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz040.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz040.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('kiib', 0.0012808165606781397) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz040.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz040.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz040.txt + +[iaz041] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz041.txt +centroid = (0.74126053194376373, -1.5946602136574151) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz041.txt +description = Delaware, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz041.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz041.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz041.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz041.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz041.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz041.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz041.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz041.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz041.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz041.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz041.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz041.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz041.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz041.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz041.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('kmxo', 0.0048905768309749562) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz041.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz041.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz041.txt + +[iaz042] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz042.txt +centroid = (0.7412203893709679, -1.5861971121144947) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz042.txt +description = Dubuque, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz042.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz042.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz042.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz042.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz042.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz042.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz042.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz042.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz042.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz042.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz042.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz042.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz042.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz042.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz042.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('kdbq', 0.0026386280886241801) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz042.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz042.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz042.txt + +[iaz043] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz043.txt +centroid = (0.73393887573164751, -1.6748179502137586) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz043.txt +description = Monona, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz043.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz043.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz043.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz043.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz043.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz043.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz043.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz043.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz043.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz043.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz043.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz043.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz043.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz043.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz043.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('ktqe', 0.0057572368035544502) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz043.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz043.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz043.txt + +[iaz044] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz044.txt +centroid = (0.73368754831936023, -1.6647316924664832) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz044.txt +description = Crawford, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz044.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz044.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz044.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz044.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz044.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz044.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz044.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz044.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz044.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz044.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz044.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz044.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz044.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz044.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz044.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('kdns', 0.00094028672931292866) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz044.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz044.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz044.txt + +[iaz045] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz045.txt +centroid = (0.73367009502684033, -1.6556315457465849) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz045.txt +description = Carroll, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz045.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz045.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz045.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz045.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz045.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz045.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz045.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz045.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz045.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz045.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz045.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz045.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz045.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz045.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz045.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('kcin', 0.001031310143316463) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz045.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz045.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz045.txt + +[iaz046] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz046.txt +centroid = (0.73367009502684033, -1.6475367086758352) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz046.txt +description = Greene, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz046.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz046.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz046.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz046.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz046.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz046.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz046.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz046.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz046.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz046.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz046.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz046.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz046.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz046.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz046.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('kpro', 0.0047342333561334075) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz046.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz046.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz046.txt + +[iaz047] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz047.txt +centroid = (0.73367707634384838, -1.6394191823248097) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz047.txt +description = Boone, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz047.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz047.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz047.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz047.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz047.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz047.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz047.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz047.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz047.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz047.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz047.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz047.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz047.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz047.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz047.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('kbnw', 0.0010857382737043545) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz047.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz047.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz047.txt + +[iaz048] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz048.txt +centroid = (0.73367009502684033, -1.6312737307057523) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz048.txt +description = Story, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz048.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz048.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz048.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz048.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz048.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz048.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz048.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz048.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz048.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz048.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz048.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz048.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz048.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz048.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz048.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('kamw', 0.0021713641455965264) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz048.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz048.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz048.txt + +[iaz049] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz049.txt +centroid = (0.73366311370983239, -1.6231352604037026) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz049.txt +description = Marshall, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz049.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz049.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz049.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz049.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz049.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz049.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz049.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz049.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz049.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz049.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz049.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz049.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz049.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz049.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz049.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('kmiw', 0.0017675281555136798) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz049.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz049.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz049.txt + +[iaz050] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz050.txt +centroid = (0.73443105858070989, -1.6149985354309051) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz050.txt +description = Tama, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz050.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz050.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz050.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz050.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz050.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz050.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz050.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz050.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz050.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz050.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz050.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz050.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz050.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz050.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz050.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('kmiw', 0.0050152150063656649) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz050.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz050.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz050.txt + +[iaz051] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz051.txt +centroid = (0.73443629456846593, -1.6068495931533435) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz051.txt +description = Benton, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz051.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz051.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz051.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz051.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz051.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz051.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz051.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz051.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz051.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz051.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz051.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz051.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz051.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz051.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz051.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('kvti', 0.0024719030317396245) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz051.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz051.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz051.txt + +[iaz052] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz052.txt +centroid = (0.7344153506174419, -1.598702396205034) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz052.txt +description = Linn, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz052.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz052.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz052.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz052.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz052.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz052.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz052.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz052.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz052.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz052.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz052.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz052.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz052.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz052.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz052.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('kcid', 0.0037396580578769796) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz052.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz052.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz052.txt + +[iaz053] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz053.txt +centroid = (0.73515362489103553, -1.5905429819519605) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz053.txt +description = Jones, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz053.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz053.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz053.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz053.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz053.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz053.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz053.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz053.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz053.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz053.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz053.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz053.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz053.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz053.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz053.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('kmxo', 0.0020095499575435967) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz053.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz053.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz053.txt + +[iaz054] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz054.txt +centroid = (0.7360350161632927, -1.5808180073598481) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz054.txt +description = Jackson, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz054.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz054.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz054.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz054.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz054.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz054.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz054.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz054.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz054.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz054.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz054.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz054.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz054.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz054.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz054.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('kdbq', 0.0043029435869960326) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz054.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz054.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz054.txt + +[iaz055] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz055.txt +centroid = (0.72750384677954438, -1.6723168933956507) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz055.txt +description = Harrison, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz055.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz055.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz055.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz055.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz055.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz055.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz055.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz055.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz055.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz055.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz055.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz055.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz055.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz055.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz055.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('ktqe', 0.0049946267942843374) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz055.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz055.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz055.txt + +[iaz056] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz056.txt +centroid = (0.7275422440230882, -1.6634785460635515) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz056.txt +description = Shelby, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz056.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz056.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz056.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz056.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz056.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz056.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz056.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz056.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz056.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz056.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz056.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz056.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz056.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz056.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz056.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('khnr', 0.0017982060054746261) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz056.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz056.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz056.txt + +[iaz057] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz057.txt +centroid = (0.72753351737682836, -1.6564186892392343) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz057.txt +description = Audubon, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz057.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz057.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz057.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz057.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz057.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz057.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz057.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz057.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz057.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz057.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz057.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz057.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz057.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz057.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz057.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('kadu', 0.000344450151281342) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz057.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz057.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz057.txt + +[iaz058] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz058.txt +centroid = (0.72751955474281227, -1.6493535964271615) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz058.txt +description = Guthrie, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz058.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz058.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz058.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz058.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz058.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz058.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz058.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz058.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz058.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz058.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz058.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz058.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz058.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz058.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz058.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('kpro', 0.0051207649153300347) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz058.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz058.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz058.txt + +[iaz059] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz059.txt +centroid = (0.72753875336458429, -1.6413041379169635) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz059.txt +description = Dallas, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz059.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz059.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz059.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz059.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz059.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz059.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz059.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz059.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz059.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz059.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz059.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz059.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz059.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz059.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz059.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('kpro', 0.0029769981242063872) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz059.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz059.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz059.txt + +[iaz060] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz060.txt +centroid = (0.72754922534009625, -1.633163922285662) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz060.txt +description = Polk, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz060.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz060.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz060.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz060.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz060.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz060.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz060.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz060.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz060.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz060.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz060.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz060.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz060.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz060.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz060.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('kikv', 0.00012607477724631944) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz060.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz060.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz060.txt + +[iaz061] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz061.txt +centroid = (0.7275579519863562, -1.6240934461630476) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz061.txt +description = Jasper, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz061.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz061.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz061.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz061.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz061.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz061.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz061.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz061.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz061.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz061.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz061.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz061.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz061.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz061.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz061.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('ktnu', 0.00048494590334814978) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz061.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz061.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz061.txt + +[iaz062] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz062.txt +centroid = (0.72756493330336414, -1.6149775914798812) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz062.txt +description = Poweshiek, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz062.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz062.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz062.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz062.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz062.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz062.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz062.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz062.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz062.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz062.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz062.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz062.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz062.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz062.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz062.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('kggi', 0.0026206589972414718) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz062.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz062.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz062.txt + +[iaz063] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz063.txt +centroid = (0.72756318797411224, -1.6068478478240915) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz063.txt +description = Iowa, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz063.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz063.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz063.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz063.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz063.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz063.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz063.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz063.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz063.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz063.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz063.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz063.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz063.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz063.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz063.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('kcid', 0.0056962219060088248) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz063.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz063.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz063.txt + +[iaz064] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz064.txt +centroid = (0.72730487924481702, -1.5985139006458184) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz064.txt +description = Johnson, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz064.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz064.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz064.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz064.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz064.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz064.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz064.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz064.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz064.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz064.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz064.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz064.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz064.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz064.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz064.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('kiow', 0.00083102578572763464) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz064.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz064.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz064.txt + +[iaz065] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz065.txt +centroid = (0.72906417113082733, -1.5905604352444804) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz065.txt +description = Cedar, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz065.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz065.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz065.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz065.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz065.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz065.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz065.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz065.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz065.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz065.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz065.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz065.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz065.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz065.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz065.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('kmut', 0.0070833662692952604) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz065.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz065.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz065.txt + +[iaz066] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz066.txt +centroid = (0.7312580500005843, -1.5800814784155064) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz066.txt +description = Clinton, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz066.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz066.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz066.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz066.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz066.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz066.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz066.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz066.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz066.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz066.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz066.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz066.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz066.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz066.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz066.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('kcwi', 0.0028180866977301601) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz066.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz066.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz066.txt + +[iaz067] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz067.txt +centroid = (0.72403064156807562, -1.5902166053818376) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz067.txt +description = Muscatine, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz067.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz067.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz067.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz067.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz067.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz067.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz067.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz067.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz067.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz067.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz067.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz067.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz067.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz067.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz067.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('kmut', 0.002103529205272812) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz067.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz067.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz067.txt + +[iaz068] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz068.txt +centroid = (0.72670448598213089, -1.5816732186933251) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz068.txt +description = Scott, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz068.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz068.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz068.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz068.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz068.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz068.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz068.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz068.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz068.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz068.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz068.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz068.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz068.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz068.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz068.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('kdvn', 0.00063062898566891145) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz068.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz068.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz068.txt + +[iaz069] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz069.txt +centroid = (0.72145628092138403, -1.6675277099281782) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz069.txt +description = Pottawattamie, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz069.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz069.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz069.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz069.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz069.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz069.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz069.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz069.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz069.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz069.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz069.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz069.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz069.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz069.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz069.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('kcbf', 0.0031836540268230353) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz069.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz069.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz069.txt + +[iaz070] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz070.txt +centroid = (0.72137075978803633, -1.6568026616746732) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz070.txt +description = Cass, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz070.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz070.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz070.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz070.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz070.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz070.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz070.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz070.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz070.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz070.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz070.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz070.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz070.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz070.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz070.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('kaio', 0.0019978730857214406) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz070.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz070.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz070.txt + +[iaz071] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz071.txt +centroid = (0.72135679715402035, -1.6488299976515632) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz071.txt +description = Adair, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz071.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz071.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz071.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz071.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz071.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz071.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz071.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz071.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz071.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz071.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz071.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz071.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz071.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz071.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz071.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('kcsq', 0.0056497037244935622) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz071.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz071.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz071.txt + +[iaz072] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz072.txt +centroid = (0.72135679715402035, -1.640880022908729) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz072.txt +description = Madison, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz072.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz072.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz072.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz072.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz072.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz072.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz072.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz072.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz072.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz072.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz072.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz072.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz072.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz072.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz072.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('kdsm', 0.0057743866086974911) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz072.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz072.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz072.txt + +[iaz073] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz073.txt +centroid = (0.72141962900709211, -1.6329544827754228) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz073.txt +description = Warren, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz073.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz073.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz073.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz073.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz073.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz073.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz073.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz073.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz073.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz073.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz073.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz073.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz073.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz073.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz073.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('kdsm', 0.0037369087169683572) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz073.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz073.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz073.txt + +[iaz074] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz074.txt +centroid = (0.72142137433634423, -1.6248928069604609) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz074.txt +description = Marion, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz074.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz074.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz074.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz074.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz074.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz074.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz074.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz074.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz074.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz074.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz074.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz074.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz074.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz074.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz074.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('koxv', 0.00064117922641554481) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz074.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz074.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz074.txt + +[iaz075] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz075.txt +centroid = (0.7214335916411081, -1.616888727010815) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz075.txt +description = Mahaska, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz075.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz075.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz075.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz075.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz075.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz075.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz075.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz075.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz075.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz075.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz075.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz075.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz075.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz075.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz075.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('kooa', 0.0027111598721449377) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz075.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz075.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz075.txt + +[iaz076] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz076.txt +centroid = (0.72145628092138403, -1.6088218152080971) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz076.txt +description = Keokuk, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz076.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz076.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz076.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz076.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz076.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz076.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz076.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz076.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz076.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz076.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz076.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz076.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz076.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz076.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz076.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('kotm', 0.0054506461945410681) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz076.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz076.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz076.txt + +[iaz077] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz077.txt +centroid = (0.72144231828736805, -1.6007793380149071) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz077.txt +description = Washington, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz077.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz077.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz077.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz077.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz077.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz077.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz077.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz077.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz077.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz077.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz077.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz077.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz077.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz077.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz077.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('kawg', 0.0011328297513142479) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz077.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz077.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz077.txt + +[iaz078] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz078.txt +centroid = (0.71939853773328266, -1.592782239382269) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz078.txt +description = Louisa, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz078.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz078.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz078.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz078.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz078.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz078.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz078.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz078.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz078.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz078.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz078.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz078.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz078.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz078.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz078.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('kmut', 0.0029591905022725656) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz078.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz078.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz078.txt + +[iaz079] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz079.txt +centroid = (0.71616444262933721, -1.6689082653665057) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz079.txt +description = Mills, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz079.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz079.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz079.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz079.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz079.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz079.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz079.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz079.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz079.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz079.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz079.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz079.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz079.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz079.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz079.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('kcbf', 0.0044998219810920845) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz079.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz079.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz079.txt + +[iaz080] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz080.txt +centroid = (0.71611033742252539, -1.6607907390154801) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz080.txt +description = Montgomery, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz080.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz080.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz080.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz080.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz080.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz080.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz080.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz080.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz080.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz080.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz080.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz080.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz080.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz080.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz080.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('krdk', 0.001472043306450234) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz080.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz080.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz080.txt + +[iaz081] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz081.txt +centroid = (0.71609113880075348, -1.6528128390046142) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz081.txt +description = Adams, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz081.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz081.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz081.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz081.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz081.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz081.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz081.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz081.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz081.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz081.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz081.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz081.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz081.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz081.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz081.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('kcsq', 0.0043839520767256692) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz081.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz081.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz081.txt + +[iaz082] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz082.txt +centroid = (0.71606844952047755, -1.644840174981504) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz082.txt +description = Union, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz082.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz082.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz082.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz082.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz082.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz082.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz082.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz082.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz082.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz082.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz082.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz082.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz082.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz082.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz082.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('kcsq', 0.001647602267909288) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz082.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz082.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz082.txt + +[iaz083] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz083.txt +centroid = (0.71609113880075348, -1.6368587843121341) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz083.txt +description = Clarke, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz083.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz083.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz083.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz083.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz083.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz083.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz083.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz083.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz083.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz083.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz083.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz083.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz083.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz083.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz083.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('ki75', 0.0014312887438717909) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz083.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz083.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz083.txt + +[iaz084] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz084.txt +centroid = (0.7160963747885094, -1.6288756483135118) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz084.txt +description = Lucas, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz084.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz084.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz084.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz084.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz084.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz084.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz084.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz084.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz084.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz084.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz084.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz084.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz084.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz084.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz084.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('kcnc', 0.00051783854210228945) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz084.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz084.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz084.txt + +[iaz085] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz085.txt +centroid = (0.71610335610551745, -1.6208698230346139) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz085.txt +description = Monroe, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz085.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz085.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz085.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz085.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz085.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz085.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz085.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz085.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz085.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz085.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz085.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz085.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz085.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz085.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz085.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('kotm', 0.0056485670481795768) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz085.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz085.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz085.txt + +[iaz086] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz086.txt +centroid = (0.71611906406878534, -1.6128500351216999) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz086.txt +description = Wapello, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz086.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz086.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz086.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz086.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz086.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz086.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz086.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz086.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz086.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz086.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz086.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz086.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz086.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz086.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz086.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('kotm', 0.0013233201546788964) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz086.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz086.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz086.txt + +[iaz087] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz087.txt +centroid = (0.71614000801980926, -1.604811048587014) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz087.txt +description = Jefferson, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz087.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz087.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz087.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz087.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz087.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz087.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz087.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz087.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz087.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz087.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz087.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz087.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz087.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz087.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz087.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('kffl', 0.00055350182816118001) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz087.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz087.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz087.txt + +[iaz088] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz088.txt +centroid = (0.71537380847818388, -1.597754682421201) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz088.txt +description = Henry, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz088.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz088.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz088.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz088.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz088.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz088.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz088.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz088.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz088.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz088.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz088.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz088.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz088.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz088.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz088.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('kmpz', 0.00084420844184577963) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz088.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz088.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz088.txt + +[iaz089] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz089.txt +centroid = (0.71424458045214345, -1.5914173919072097) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz089.txt +description = Des Moines, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz089.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz089.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz089.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz089.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz089.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz089.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz089.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz089.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz089.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz089.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz089.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz089.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz089.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz089.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz089.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('kbrl', 0.0028050625190361705) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz089.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz089.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz089.txt + +[iaz090] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz090.txt +centroid = (0.71114487570060159, -1.6686167953814226) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz090.txt +description = Fremont, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz090.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz090.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz090.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz090.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz090.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz090.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz090.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz090.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz090.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz090.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz090.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz090.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz090.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz090.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz090.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('ksda', 0.0024874448402088852) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz090.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz090.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz090.txt + +[iaz091] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz091.txt +centroid = (0.71103142929922192, -1.6606842739311085) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz091.txt +description = Page, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz091.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz091.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz091.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz091.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz091.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz091.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz091.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz091.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz091.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz091.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz091.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz091.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz091.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz091.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz091.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('kicl', 0.0015945426507003866) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz091.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz091.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz091.txt + +[iaz092] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz092.txt +centroid = (0.71100175870193805, -1.6527657151148103) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz092.txt +description = Taylor, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz092.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz092.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz092.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz092.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz092.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz092.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz092.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz092.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz092.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz092.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz092.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz092.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz092.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz092.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz092.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('kicl', 0.0044698184028292894) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz092.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz092.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz092.txt + +[iaz093] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz093.txt +centroid = (0.71096336145839412, -1.644868100249536) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz093.txt +description = Ringgold, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz093.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz093.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz093.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz093.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz093.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz093.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz093.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz093.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz093.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz093.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz093.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz093.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz093.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz093.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz093.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('kcsq', 0.0051723713446877586) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz093.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz093.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz093.txt + +[iaz094] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz094.txt +centroid = (0.71100699468969397, -1.6368797282631578) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz094.txt +description = Decatur, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz094.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz094.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz094.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz094.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz094.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz094.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz094.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz094.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz094.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz094.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz094.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz094.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz094.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz094.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz094.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('klwd', 0.0023627170505892969) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz094.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz094.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz094.txt + +[iaz095] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz095.txt +centroid = (0.71103841061622985, -1.6288704123257558) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz095.txt +description = Wayne, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz095.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz095.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz095.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz095.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz095.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz095.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz095.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz095.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz095.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz095.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz095.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz095.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz095.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz095.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz095.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('kcnc', 0.0051544651495004767) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz095.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz095.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz095.txt + +[iaz096] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz096.txt +centroid = (0.71110298779855374, -1.6208645870468581) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz096.txt +description = Appanoose, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz096.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz096.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz096.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz096.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz096.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz096.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz096.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz096.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz096.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz096.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz096.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz096.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz096.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz096.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz096.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('ktvk', 0.0011782120212574451) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz096.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz096.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz096.txt + +[iaz097] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz097.txt +centroid = (0.7111815276148935, -1.6128535257802039) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz097.txt +description = Davis, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz097.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz097.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz097.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz097.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz097.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz097.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz097.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz097.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz097.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz097.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz097.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz097.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz097.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz097.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz097.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('kotm', 0.006171719114923359) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz097.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz097.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz097.txt + +[iaz098] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz098.txt +centroid = (0.71127752072375305, -1.6048302472087861) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz098.txt +description = Van Buren, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz098.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz098.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz098.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz098.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz098.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz098.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz098.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz098.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz098.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz098.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz098.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz098.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz098.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz098.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz098.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('kffl', 0.0051987671730098382) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz098.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz098.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz098.txt + +[iaz099] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ia/iaz099.txt +centroid = (0.70933671459553549, -1.5966132370903967) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ia/iaz099.txt +description = Lee, IA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ia/iaz099.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ia/iaz099.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ia/iaz099.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ia/iaz099.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ia/iaz099.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ia/iaz099.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ia/iaz099.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ia/iaz099.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ia.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ia/iaz099.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ia/iaz099.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ia/iaz099.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ia/iaz099.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ia/iaz099.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ia/iaz099.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ia/iaz099.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ia.txt +station = ('kfsw', 0.0019788206524955442) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ia/iaz099.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ia/iaz099.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ia/iaz099.txt + +[idz001] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/id/idz001.txt +centroid = (0.84648468721724979, -2.0343557761245905) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/id/idz001.txt +description = Northern Panhandle, ID +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/id/idz001.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/id/idz001.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/id/idz001.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/id/idz001.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/id/idz001.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/id/idz001.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/id/idz001.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/id/idz001.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/id.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/id/idz001.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/id/idz001.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/id/idz001.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/id/idz001.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/id/idz001.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/id/idz001.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/id/idz001.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/id.txt +station = ('kszt', 0.0035003547775763083) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/id/idz001.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/id/idz001.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/id/idz001.txt + +[idz002] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/id/idz002.txt +centroid = (0.83078195993705684, -2.0388622162532402) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/id/idz002.txt +description = Coeur d'Alene Area, ID +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/id/idz002.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/id/idz002.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/id/idz002.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/id/idz002.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/id/idz002.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/id/idz002.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/id/idz002.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/id/idz002.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/id.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/id/idz002.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/id/idz002.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/id/idz002.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/id/idz002.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/id/idz002.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/id/idz002.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/id/idz002.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/id.txt +station = ('kcoe', 0.0029037019935441075) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/id/idz002.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/id/idz002.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/id/idz002.txt + +[idz003] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/id/idz003.txt +centroid = (0.81909698059495473, -2.0399146497921925) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/id/idz003.txt +description = Idaho Palouse, ID +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/id/idz003.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/id/idz003.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/id/idz003.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/id/idz003.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/id/idz003.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/id/idz003.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/id/idz003.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/id/idz003.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/id.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/id/idz003.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/id/idz003.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/id/idz003.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/id/idz003.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/id/idz003.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/id/idz003.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/id/idz003.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/id.txt +station = ('kpuw', 0.0042476252212682456) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/id/idz003.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/id/idz003.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/id/idz003.txt + +[idz004] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/id/idz004.txt +centroid = (0.82554597218107384, -2.026835152377747) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/id/idz004.txt +description = Central Panhandle Mountains, ID +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/id/idz004.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/id/idz004.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/id/idz004.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/id/idz004.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/id/idz004.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/id/idz004.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/id/idz004.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/id/idz004.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/id.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/id/idz004.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/id/idz004.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/id/idz004.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/id/idz004.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/id/idz004.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/id/idz004.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/id/idz004.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/id.txt +station = ('kmlp', 0.006058008439875826) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/id/idz004.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/id/idz004.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/id/idz004.txt + +[idz005] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/id/idz005.txt +centroid = (0.81530961611812713, -2.0171974442482341) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/id/idz005.txt +description = Northern Clearwater Mountains, ID +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/id/idz005.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/id/idz005.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/id/idz005.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/id/idz005.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/id/idz005.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/id/idz005.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/id/idz005.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/id/idz005.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/id.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/id/idz005.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/id/idz005.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/id/idz005.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/id/idz005.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/id/idz005.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/id/idz005.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/id/idz005.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/id.txt +station = ('kp69', 0.0099447410035328858) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/id/idz005.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/id/idz005.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/id/idz005.txt + +[idz006] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/id/idz006.txt +centroid = (0.79997515331010494, -2.0117816875792958) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/id/idz006.txt +description = Southern Clearwater Mountains, ID +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/id/idz006.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/id/idz006.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/id/idz006.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/id/idz006.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/id/idz006.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/id/idz006.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/id/idz006.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/id/idz006.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/id.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/id/idz006.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/id/idz006.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/id/idz006.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/id/idz006.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/id/idz006.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/id/idz006.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/id/idz006.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/id.txt +station = ('kp69', 0.0067135507075874084) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/id/idz006.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/id/idz006.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/id/idz006.txt + +[idz007] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/id/idz007.txt +centroid = (0.80650617537106772, -2.0258246067408425) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/id/idz007.txt +description = Orofino/Grangeville Region, ID +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/id/idz007.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/id/idz007.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/id/idz007.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/id/idz007.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/id/idz007.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/id/idz007.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/id/idz007.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/id/idz007.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/id.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/id/idz007.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/id/idz007.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/id/idz007.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/id/idz007.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/id/idz007.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/id/idz007.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/id/idz007.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/id.txt +station = ('kgic', 0.0047000269580006662) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/id/idz007.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/id/idz007.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/id/idz007.txt + +[idz008] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/id/idz008.txt +centroid = (0.79698889495994263, -2.0324236966426326) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/id/idz008.txt +description = Lower Hells Canyon/Salmon River Region, ID +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/id/idz008.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/id/idz008.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/id/idz008.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/id/idz008.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/id/idz008.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/id/idz008.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/id/idz008.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/id/idz008.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/id.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/id/idz008.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/id/idz008.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/id/idz008.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/id/idz008.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/id/idz008.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/id/idz008.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/id/idz008.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/id.txt +station = ('kgic', 0.0062722234300176217) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/id/idz008.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/id/idz008.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/id/idz008.txt + +[idz009] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/id/idz009.txt +centroid = (0.78750826646310945, -1.9964838766855657) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/id/idz009.txt +description = Western Lemhi County, ID +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/id/idz009.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/id/idz009.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/id/idz009.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/id/idz009.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/id/idz009.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/id/idz009.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/id/idz009.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/id/idz009.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/id.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/id/idz009.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/id/idz009.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/id/idz009.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/id/idz009.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/id/idz009.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/id/idz009.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/id/idz009.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/id.txt +station = ('ksmn', 0.0062416282501132538) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/id/idz009.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/id/idz009.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/id/idz009.txt + +[idz010] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/id/idz010.txt +centroid = (0.78204887656287125, -1.9824357215362631) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/id/idz010.txt +description = Eastern Lemhi County, ID +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/id/idz010.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/id/idz010.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/id/idz010.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/id/idz010.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/id/idz010.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/id/idz010.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/id/idz010.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/id/idz010.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/id.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/id/idz010.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/id/idz010.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/id/idz010.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/id/idz010.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/id/idz010.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/id/idz010.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/id/idz010.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/id.txt +station = ('ksmn', 0.0065237270991754144) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/id/idz010.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/id/idz010.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/id/idz010.txt + +[idz011] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/id/idz011.txt +centroid = (0.78141183138589321, -2.0227772618668602) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/id/idz011.txt +description = West Central Mountains, ID +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/id/idz011.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/id/idz011.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/id/idz011.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/id/idz011.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/id/idz011.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/id/idz011.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/id/idz011.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/id/idz011.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/id.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/id/idz011.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/id/idz011.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/id/idz011.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/id/idz011.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/id/idz011.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/id/idz011.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/id/idz011.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/id.txt +station = ('kmyl', 0.0030242067619221389) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/id/idz011.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/id/idz011.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/id/idz011.txt + +[idz012] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/id/idz012.txt +centroid = (0.76438788986194051, -2.0366596107372228) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/id/idz012.txt +description = Lower Treasure Valley, ID +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/id/idz012.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/id/idz012.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/id/idz012.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/id/idz012.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/id/idz012.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/id/idz012.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/id/idz012.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/id/idz012.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/id.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/id/idz012.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/id/idz012.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/id/idz012.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/id/idz012.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/id/idz012.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/id/idz012.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/id/idz012.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/id.txt +station = ('keul', 0.0029373229634049943) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/id/idz012.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/id/idz012.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/id/idz012.txt + +[idz013] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/id/idz013.txt +centroid = (0.76361819966181099, -2.0153631032043884) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/id/idz013.txt +description = Boise Mountains, ID +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/id/idz013.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/id/idz013.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/id/idz013.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/id/idz013.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/id/idz013.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/id/idz013.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/id/idz013.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/id/idz013.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/id.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/id/idz013.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/id/idz013.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/id/idz013.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/id/idz013.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/id/idz013.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/id/idz013.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/id/idz013.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/id.txt +station = ('ksnt', 0.01044156165402403) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/id/idz013.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/id/idz013.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/id/idz013.txt + +[idz014] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/id/idz014.txt +centroid = (0.75229799413337584, -2.0222135205184659) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/id/idz014.txt +description = Upper Treasure Valley, ID +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/id/idz014.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/id/idz014.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/id/idz014.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/id/idz014.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/id/idz014.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/id/idz014.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/id/idz014.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/id/idz014.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/id.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/id/idz014.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/id/idz014.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/id/idz014.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/id/idz014.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/id/idz014.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/id/idz014.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/id/idz014.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/id.txt +station = ('kmuo', 0.00093423847949926538) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/id/idz014.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/id/idz014.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/id/idz014.txt + +[idz015] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/id/idz015.txt +centroid = (0.73904047313522692, -2.0254144543666235) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/id/idz015.txt +description = Southwest Highlands, ID +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/id/idz015.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/id/idz015.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/id/idz015.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/id/idz015.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/id/idz015.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/id/idz015.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/id/idz015.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/id/idz015.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/id.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/id/idz015.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/id/idz015.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/id/idz015.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/id/idz015.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/id/idz015.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/id/idz015.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/id/idz015.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/id.txt +station = ('kmuo', 0.012540635346570753) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/id/idz015.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/id/idz015.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/id/idz015.txt + +[idz016] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/id/idz016.txt +centroid = (0.74614221786159185, -2.000047839018138) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/id/idz016.txt +description = Western Magic Valley, ID +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/id/idz016.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/id/idz016.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/id/idz016.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/id/idz016.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/id/idz016.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/id/idz016.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/id/idz016.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/id/idz016.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/id.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/id/idz016.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/id/idz016.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/id/idz016.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/id/idz016.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/id/idz016.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/id/idz016.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/id/idz016.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/id.txt +station = ('kjer', 0.00187458903948508) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/id/idz016.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/id/idz016.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/id/idz016.txt + +[idz017] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/id/idz017.txt +centroid = (0.74987547713160774, -1.9857151952007606) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/id/idz017.txt +description = Eastern Magic Valley, ID +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/id/idz017.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/id/idz017.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/id/idz017.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/id/idz017.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/id/idz017.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/id/idz017.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/id/idz017.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/id/idz017.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/id.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/id/idz017.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/id/idz017.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/id/idz017.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/id/idz017.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/id/idz017.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/id/idz017.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/id/idz017.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/id.txt +station = ('kbyi', 0.0072383499076653047) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/id/idz017.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/id/idz017.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/id/idz017.txt + +[idz018] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/id/idz018.txt +centroid = (0.77192771223055612, -1.9996952825092351) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/id/idz018.txt +description = Sawtooth Mountains, ID +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/id/idz018.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/id/idz018.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/id/idz018.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/id/idz018.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/id/idz018.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/id/idz018.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/id/idz018.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/id/idz018.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/id.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/id/idz018.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/id/idz018.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/id/idz018.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/id/idz018.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/id/idz018.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/id/idz018.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/id/idz018.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/id.txt +station = ('ksnt', 0.0045203274367031634) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/id/idz018.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/id/idz018.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/id/idz018.txt + +[idz019] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/id/idz019.txt +centroid = (0.77106028359231482, -1.9516166976045473) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/id/idz019.txt +description = Upper Snake Highlands, ID +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/id/idz019.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/id/idz019.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/id/idz019.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/id/idz019.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/id/idz019.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/id/idz019.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/id/idz019.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/id/idz019.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/id.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/id/idz019.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/id/idz019.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/id/idz019.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/id/idz019.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/id/idz019.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/id/idz019.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/id/idz019.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/id.txt +station = ('krxe', 0.0060292154372029822) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/id/idz019.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/id/idz019.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/id/idz019.txt + +[idz020] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/id/idz020.txt +centroid = (0.76113110547771912, -1.963099218753418) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/id/idz020.txt +description = Upper Snake River Plain, ID +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/id/idz020.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/id/idz020.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/id/idz020.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/id/idz020.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/id/idz020.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/id/idz020.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/id/idz020.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/id/idz020.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/id.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/id/idz020.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/id/idz020.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/id/idz020.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/id/idz020.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/id/idz020.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/id/idz020.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/id/idz020.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/id.txt +station = ('kida', 0.0054406451378095641) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/id/idz020.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/id/idz020.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/id/idz020.txt + +[idz021] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/id/idz021.txt +centroid = (0.75063818601472931, -1.966443269600239) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/id/idz021.txt +description = Lower Snake River Plain, ID +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/id/idz021.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/id/idz021.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/id/idz021.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/id/idz021.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/id/idz021.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/id/idz021.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/id/idz021.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/id/idz021.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/id.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/id/idz021.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/id/idz021.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/id/idz021.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/id/idz021.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/id/idz021.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/id/idz021.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/id/idz021.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/id.txt +station = ('kpih', 0.0018269586268327847) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/id/idz021.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/id/idz021.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/id/idz021.txt + +[idz022] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/id/idz022.txt +centroid = (0.73799153025477826, -1.9746690063648884) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/id/idz022.txt +description = South Central Highlands, ID +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/id/idz022.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/id/idz022.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/id/idz022.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/id/idz022.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/id/idz022.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/id/idz022.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/id/idz022.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/id/idz022.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/id.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/id/idz022.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/id/idz022.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/id/idz022.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/id/idz022.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/id/idz022.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/id/idz022.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/id/idz022.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/id.txt +station = ('kbyi', 0.009313583373662223) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/id/idz022.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/id/idz022.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/id/idz022.txt + +[idz023] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/id/idz023.txt +centroid = (0.74919654405258196, -1.9486688364979288) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/id/idz023.txt +description = Caribou Highlands, ID +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/id/idz023.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/id/idz023.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/id/idz023.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/id/idz023.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/id/idz023.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/id/idz023.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/id/idz023.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/id/idz023.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/id.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/id/idz023.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/id/idz023.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/id/idz023.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/id/idz023.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/id/idz023.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/id/idz023.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/id/idz023.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/id.txt +station = ('ku78', 0.0048898914043005674) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/id/idz023.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/id/idz023.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/id/idz023.txt + +[idz024] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/id/idz024.txt +centroid = (0.73525659931690313, -1.9537564712674922) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/id/idz024.txt +description = Cache Valley/Idaho Portion, ID +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/id/idz024.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/id/idz024.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/id/idz024.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/id/idz024.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/id/idz024.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/id/idz024.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/id/idz024.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/id/idz024.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/id.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/id/idz024.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/id/idz024.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/id/idz024.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/id/idz024.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/id/idz024.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/id/idz024.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/id/idz024.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/id.txt +station = ('klgu', 0.0061175325418223086) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/id/idz024.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/id/idz024.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/id/idz024.txt + +[idz025] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/id/idz025.txt +centroid = (0.73774718415949903, -1.9447505723272016) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/id/idz025.txt +description = Wasatch Mountains/Idaho Portion, ID +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/id/idz025.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/id/idz025.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/id/idz025.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/id/idz025.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/id/idz025.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/id/idz025.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/id/idz025.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/id/idz025.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/id.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/id/idz025.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/id/idz025.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/id/idz025.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/id/idz025.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/id/idz025.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/id/idz025.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/id/idz025.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/id.txt +station = ('ku78', 0.0069380893830063399) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/id/idz025.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/id/idz025.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/id/idz025.txt + +[idz026] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/id/idz026.txt +centroid = (0.81071765485613001, -2.0368533422841946) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/id/idz026.txt +description = Lewiston Area, ID +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/id/idz026.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/id/idz026.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/id/idz026.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/id/idz026.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/id/idz026.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/id/idz026.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/id/idz026.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/id/idz026.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/id.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/id/idz026.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/id/idz026.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/id/idz026.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/id/idz026.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/id/idz026.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/id/idz026.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/id/idz026.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/id.txt +station = ('klws', 0.004048527894901283) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/id/idz026.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/id/idz026.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/id/idz026.txt + +[idz027] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/id/idz027.txt +centroid = (0.8062129600567326, -2.0348601762784169) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/id/idz027.txt +description = Lewis and Southern Nez Perce Counties, ID +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/id/idz027.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/id/idz027.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/id/idz027.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/id/idz027.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/id/idz027.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/id/idz027.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/id/idz027.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/id/idz027.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/id.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/id/idz027.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/id/idz027.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/id/idz027.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/id/idz027.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/id/idz027.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/id/idz027.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/id/idz027.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/id.txt +station = ('kgic', 0.0071286016631160977) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/id/idz027.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/id/idz027.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/id/idz027.txt + +[idz028] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/id/idz028.txt +centroid = (0.75574501940606464, -2.0039573765426053) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/id/idz028.txt +description = Camas Prairie, ID +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/id/idz028.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/id/idz028.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/id/idz028.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/id/idz028.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/id/idz028.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/id/idz028.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/id/idz028.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/id/idz028.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/id.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/id/idz028.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/id/idz028.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/id/idz028.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/id/idz028.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/id/idz028.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/id/idz028.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/id/idz028.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/id.txt +station = ('ksun', 0.0074338103988273825) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/id/idz028.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/id/idz028.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/id/idz028.txt + +[idz029] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/id/idz029.txt +centroid = (0.74968349091388831, -2.0381047433578745) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/id/idz029.txt +description = Owyhee Mountains, ID +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/id/idz029.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/id/idz029.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/id/idz029.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/id/idz029.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/id/idz029.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/id/idz029.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/id/idz029.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/id/idz029.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/id.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/id/idz029.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/id/idz029.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/id/idz029.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/id/idz029.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/id/idz029.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/id/idz029.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/id/idz029.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/id.txt +station = ('kman', 0.011412836396817316) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/id/idz029.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/id/idz029.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/id/idz029.txt + +[idz030] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/id/idz030.txt +centroid = (0.7369740033008656, -2.0015156609190652) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/id/idz030.txt +description = Southern Twin Falls County, ID +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/id/idz030.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/id/idz030.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/id/idz030.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/id/idz030.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/id/idz030.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/id/idz030.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/id/idz030.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/id/idz030.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/id.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/id/idz030.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/id/idz030.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/id/idz030.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/id/idz030.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/id/idz030.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/id/idz030.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/id/idz030.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/id.txt +station = ('ktwf', 0.0051556055512817344) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/id/idz030.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/id/idz030.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/id/idz030.txt + +[idz031] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/id/idz031.txt +centroid = (0.76086930608991998, -1.994822323237667) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/id/idz031.txt +description = Big and Little Wood River Region, ID +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/id/idz031.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/id/idz031.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/id/idz031.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/id/idz031.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/id/idz031.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/id/idz031.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/id/idz031.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/id/idz031.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/id.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/id/idz031.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/id/idz031.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/id/idz031.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/id/idz031.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/id/idz031.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/id/idz031.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/id/idz031.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/id.txt +station = ('ksun', 0.0016523414822183851) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/id/idz031.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/id/idz031.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/id/idz031.txt + +[idz032] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/id/idz032.txt +centroid = (0.76991534760300662, -1.9829436123485935) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/id/idz032.txt +description = Lost River/Pashimeroi, ID +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/id/idz032.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/id/idz032.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/id/idz032.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/id/idz032.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/id/idz032.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/id/idz032.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/id/idz032.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/id/idz032.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/id.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/id/idz032.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/id/idz032.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/id/idz032.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/id/idz032.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/id/idz032.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/id/idz032.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/id/idz032.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/id.txt +station = ('kllj', 0.01036543264305643) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/id/idz032.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/id/idz032.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/id/idz032.txt + +[idz033] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/id/idz033.txt +centroid = (0.77625263811699796, -2.0347030966457371) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/id/idz033.txt +description = Upper Weiser River, ID +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/id/idz033.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/id/idz033.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/id/idz033.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/id/idz033.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/id/idz033.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/id/idz033.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/id/idz033.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/id/idz033.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/id.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/id/idz033.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/id/idz033.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/id/idz033.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/id/idz033.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/id/idz033.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/id/idz033.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/id/idz033.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/id.txt +station = ('kmyl', 0.0094083734272631826) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/id/idz033.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/id/idz033.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/id/idz033.txt + +[ilz001] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz001.txt +centroid = (0.73942095491216164, -1.5745016607968805) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz001.txt +description = Jo Daviess, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz001.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz001.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz001.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz001.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz001.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz001.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz001.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz001.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz001.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz001.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz001.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz001.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz001.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz001.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz001.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('ksfy', 0.0057439372843697553) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz001.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz001.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz001.txt + +[ilz002] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz002.txt +centroid = (0.73917660881688252, -1.5649058405694156) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz002.txt +description = Stephenson, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz002.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz002.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz002.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz002.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz002.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz002.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz002.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz002.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz002.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz002.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz002.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz002.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz002.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz002.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz002.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('kfep', 0.0021100471781917195) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz002.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz002.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz002.txt + +[ilz003] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz003.txt +centroid = (0.73890782811207534, -1.5561512690414121) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz003.txt +description = Winnebago, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz003.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz003.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz003.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz003.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz003.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz003.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz003.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz003.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz003.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz003.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz003.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz003.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz003.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz003.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz003.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('krfd', 0.0025055451520576699) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz003.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz003.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz003.txt + +[ilz004] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz004.txt +centroid = (0.73867744465081198, -1.5502607828159314) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz004.txt +description = Boone, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz004.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz004.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz004.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz004.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz004.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz004.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz004.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz004.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz004.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz004.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz004.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz004.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz004.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz004.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz004.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('krfd', 0.0041690508305003791) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz004.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz004.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz004.txt + +[ilz005] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz005.txt +centroid = (0.73870013393108791, -1.5437856112910322) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz005.txt +description = McHenry, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz005.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz005.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz005.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz005.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz005.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz005.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz005.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz005.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz005.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz005.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz005.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz005.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz005.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz005.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz005.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('kbuu', 0.006667104086273328) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz005.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz005.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz005.txt + +[ilz006] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz006.txt +centroid = (0.73867744465081198, -1.5359525736080819) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz006.txt +description = Lake, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz006.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz006.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz006.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz006.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz006.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz006.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz006.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz006.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz006.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz006.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz006.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz006.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz006.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz006.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz006.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('kugn', 0.0024051123903186017) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz006.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz006.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz006.txt + +[ilz007] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz007.txt +centroid = (0.73423907236299057, -1.5696531361348403) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz007.txt +description = Carroll, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz007.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz007.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz007.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz007.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz007.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz007.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz007.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz007.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz007.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz007.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz007.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz007.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz007.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz007.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz007.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('ksfy', 0.0022809406222895198) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz007.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz007.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz007.txt + +[ilz008] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz008.txt +centroid = (0.73378354142822, -1.5589403051860991) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz008.txt +description = Ogle, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz008.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz008.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz008.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz008.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz008.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz008.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz008.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz008.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz008.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz008.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz008.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz008.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz008.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz008.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz008.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('krfd', 0.0039623415477833468) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz008.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz008.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz008.txt + +[ilz009] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz009.txt +centroid = (0.7287849184505083, -1.5692970889674336) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz009.txt +description = Whiteside, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz009.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz009.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz009.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz009.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz009.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz009.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz009.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz009.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz009.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz009.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz009.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz009.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz009.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz009.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz009.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('ksqi', 0.0032235850416169527) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz009.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz009.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz009.txt + +[ilz010] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz010.txt +centroid = (0.72860689486680474, -1.5585877486771962) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz010.txt +description = Lee, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz010.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz010.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz010.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz010.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz010.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz010.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz010.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz010.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz010.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz010.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz010.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz010.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz010.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz010.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz010.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('krpj', 0.0038638083498664937) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz010.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz010.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz010.txt + +[ilz011] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz011.txt +centroid = (0.73117776485499242, -1.5493357583123741) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz011.txt +description = De Kalb, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz011.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz011.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz011.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz011.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz011.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz011.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz011.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz011.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz011.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz011.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz011.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz011.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz011.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz011.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz011.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('kdkb', 0.0010499549928065339) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz011.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz011.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz011.txt + +[ilz012] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz012.txt +centroid = (0.73197363499390189, -1.5433719682583098) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz012.txt +description = Kane, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz012.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz012.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz012.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz012.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz012.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz012.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz012.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz012.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz012.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz012.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz012.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz012.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz012.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz012.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz012.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('kdpa', 0.0024184898485043334) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz012.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz012.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz012.txt + +[ilz013] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz013.txt +centroid = (0.73045519854466678, -1.5373854889239691) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz013.txt +description = DuPage, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz013.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz013.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz013.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz013.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz013.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz013.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz013.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz013.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz013.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz013.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz013.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz013.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz013.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz013.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz013.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('kdpa', 0.0022936423498343176) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz013.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz013.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz013.txt + +[ilz014] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz014.txt +centroid = (0.73024401370517544, -1.5326905532361044) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz014.txt +description = Cook, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz014.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz014.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz014.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz014.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz014.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz014.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz014.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz014.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz014.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz014.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz014.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz014.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz014.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz014.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz014.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('kmdw', 0.0013143722295491157) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz014.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz014.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz014.txt + +[ilz015] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz015.txt +centroid = (0.72374266224149653, -1.5806993249707126) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz015.txt +description = Rock Island, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz015.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz015.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz015.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz015.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz015.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz015.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz015.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz015.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz015.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz015.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz015.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz015.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz015.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz015.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz015.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('kmli', 0.0007297844976312521) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz015.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz015.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz015.txt + +[ilz016] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz016.txt +centroid = (0.72174775090646703, -1.5730896894320172) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz016.txt +description = Henry, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz016.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz016.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz016.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz016.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz016.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz016.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz016.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz016.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz016.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz016.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz016.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz016.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz016.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz016.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz016.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('kmli', 0.0053197411069390846) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz016.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz016.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz016.txt + +[ilz017] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz017.txt +centroid = (0.72263786882498415, -1.5625705900302473) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz017.txt +description = Bureau, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz017.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz017.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz017.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz017.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz017.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz017.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz017.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz017.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz017.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz017.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz017.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz017.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz017.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz017.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz017.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('ksqi', 0.0063000963155981143) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz017.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz017.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz017.txt + +[ilz018] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz018.txt +centroid = (0.71915419163800354, -1.5583311852771531) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz018.txt +description = Putnam, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz018.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz018.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz018.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz018.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz018.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz018.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz018.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz018.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz018.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz018.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz018.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz018.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz018.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz018.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz018.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('kvys', 0.0031070678913673599) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz018.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz018.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz018.txt + +[ilz019] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz019.txt +centroid = (0.7215871806152836, -1.551351613598428) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz019.txt +description = La Salle, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz019.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz019.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz019.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz019.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz019.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz019.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz019.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz019.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz019.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz019.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz019.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz019.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz019.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz019.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz019.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('kvys', 0.0035031904730317845) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz019.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz019.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz019.txt + +[ilz020] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz020.txt +centroid = (0.72589290787995364, -1.5433754589168136) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz020.txt +description = Kendall, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz020.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz020.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz020.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz020.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz020.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz020.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz020.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz020.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz020.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz020.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz020.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz020.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz020.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz020.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz020.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('kc09', 0.002888549107969146) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz020.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz020.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz020.txt + +[ilz021] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz021.txt +centroid = (0.72055743635660696, -1.5431939446746061) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz021.txt +description = Grundy, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz021.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz021.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz021.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz021.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz021.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz021.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz021.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz021.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz021.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz021.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz021.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz021.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz021.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz021.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz021.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('kc09', 0.0024500548512902845) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz021.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz021.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz021.txt + +[ilz022] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz022.txt +centroid = (0.72335170848904984, -1.5355179866243354) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz022.txt +description = Will, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz022.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz022.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz022.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz022.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz022.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz022.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz022.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz022.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz022.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz022.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz022.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz022.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz022.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz022.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz022.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('kjot', 0.0028692257012391366) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz022.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz022.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz022.txt + +[ilz023] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz023.txt +centroid = (0.7179883116976713, -1.5334776967287538) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz023.txt +description = Kankakee, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz023.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz023.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz023.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz023.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz023.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz023.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz023.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz023.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz023.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz023.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz023.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz023.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz023.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz023.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz023.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('kikk', 0.0011749595283886026) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz023.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz023.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz023.txt + +[ilz024] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz024.txt +centroid = (0.71916815427201952, -1.5837361978691826) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz024.txt +description = Mercer, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz024.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz024.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz024.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz024.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz024.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz024.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz024.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz024.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz024.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz024.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz024.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz024.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz024.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz024.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz024.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('kmli', 0.0051880248856864724) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz024.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz024.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz024.txt + +[ilz025] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz025.txt +centroid = (0.7124102394082974, -1.5869423677050962) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz025.txt +description = Henderson, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz025.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz025.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz025.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz025.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz025.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz025.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz025.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz025.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz025.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz025.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz025.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz025.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz025.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz025.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz025.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('kbrl', 0.0028942377467263687) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz025.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz025.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz025.txt + +[ilz026] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz026.txt +centroid = (0.71294605548865964, -1.5815301016946617) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz026.txt +description = Warren, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz026.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz026.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz026.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz026.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz026.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz026.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz026.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz026.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz026.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz026.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz026.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz026.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz026.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz026.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz026.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('kgbg', 0.0028831995475473598) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz026.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz026.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz026.txt + +[ilz027] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz027.txt +centroid = (0.71439467876781504, -1.5745191140894006) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz027.txt +description = Knox, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz027.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz027.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz027.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz027.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz027.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz027.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz027.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz027.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz027.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz027.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz027.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz027.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz027.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz027.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz027.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('kgbg', 0.0028739488691582964) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz027.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz027.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz027.txt + +[ilz028] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz028.txt +centroid = (0.71721513083903787, -1.567262035059608) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz028.txt +description = Stark, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz028.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz028.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz028.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz028.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz028.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz028.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz028.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz028.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz028.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz028.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz028.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz028.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz028.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz028.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz028.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('kc75', 0.0055635526381828566) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz028.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz028.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz028.txt + +[ilz029] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz029.txt +centroid = (0.71188664063269913, -1.5666075365901102) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz029.txt +description = Peoria, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz029.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz029.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz029.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz029.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz029.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz029.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz029.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz029.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz029.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz029.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz029.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz029.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz029.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz029.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz029.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('kpia', 0.0023495028999171905) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz029.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz029.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz029.txt + +[ilz030] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz030.txt +centroid = (0.71616444262933721, -1.5593609295358299) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz030.txt +description = Marshall, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz030.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz030.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz030.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz030.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz030.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz030.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz030.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz030.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz030.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz030.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz030.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz030.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz030.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz030.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz030.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('kc75', 0.0005998777769292351) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz030.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz030.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz030.txt + +[ilz031] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz031.txt +centroid = (0.71188838596195114, -1.5570274243259135) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz031.txt +description = Woodford, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz031.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz031.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz031.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz031.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz031.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz031.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz031.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz031.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz031.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz031.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz031.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz031.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz031.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz031.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz031.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('kc75', 0.0046472282041965336) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz031.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz031.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz031.txt + +[ilz032] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz032.txt +centroid = (0.71368956575000919, -1.5456251883226344) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz032.txt +description = Livingston, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz032.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz032.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz032.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz032.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz032.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz032.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz032.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz032.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz032.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz032.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz032.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz032.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz032.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz032.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz032.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('kpnt', 0.001052753732355716) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz032.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz032.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz032.txt + +[ilz033] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz033.txt +centroid = (0.71117629162713747, -1.5328231982592559) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz033.txt +description = Iroquois, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz033.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz033.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz033.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz033.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz033.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz033.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz033.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz033.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz033.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz033.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz033.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz033.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz033.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz033.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz033.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('kikk', 0.0056621739536254568) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz033.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz033.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz033.txt + +[ilz034] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz034.txt +centroid = (0.7051775949880329, -1.5911241765928745) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz034.txt +description = Hancock, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz034.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz034.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz034.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz034.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz034.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz034.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz034.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz034.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz034.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz034.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz034.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz034.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz034.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz034.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz034.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('keok', 0.0037340161653234352) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz034.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz034.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz034.txt + +[ilz035] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz035.txt +centroid = (0.70609389284532997, -1.5826296591234181) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz035.txt +description = McDonough, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz035.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz035.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz035.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz035.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz035.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz035.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz035.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz035.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz035.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz035.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz035.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz035.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz035.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz035.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz035.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('kmqb', 0.0011684688097069048) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz035.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz035.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz035.txt + +[ilz036] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz036.txt +centroid = (0.70638361750116097, -1.5744178849927848) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz036.txt +description = Fulton, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz036.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz036.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz036.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz036.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz036.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz036.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz036.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz036.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz036.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz036.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz036.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz036.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz036.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz036.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz036.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('kpia', 0.0077292390203904798) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz036.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz036.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz036.txt + +[ilz037] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz037.txt +centroid = (0.70698924675160302, -1.562305299983944) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz037.txt +description = Tazewell, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz037.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz037.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz037.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz037.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz037.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz037.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz037.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz037.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz037.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz037.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz037.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz037.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz037.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz037.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz037.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('kpia', 0.003575515065041693) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz037.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz037.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz037.txt + +[ilz038] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz038.txt +centroid = (0.70669777676652001, -1.550677916507158) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz038.txt +description = McLean, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz038.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz038.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz038.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz038.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz038.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz038.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz038.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz038.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz038.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz038.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz038.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz038.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz038.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz038.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz038.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('kbmi', 0.00094135607059528197) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz038.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz038.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz038.txt + +[ilz039] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz039.txt +centroid = (0.708554807090642, -1.5397870619747132) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz039.txt +description = Ford, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz039.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz039.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz039.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz039.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz039.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz039.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz039.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz039.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz039.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz039.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz039.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz039.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz039.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz039.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz039.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('ktip', 0.0054062204100747717) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz039.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz039.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz039.txt + +[ilz040] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz040.txt +centroid = (0.70088932101588286, -1.5815318470239137) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz040.txt +description = Schuyler, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz040.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz040.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz040.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz040.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz040.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz040.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz040.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz040.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz040.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz040.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz040.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz040.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz040.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz040.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz040.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('kmqb', 0.0063424852897758389) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz040.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz040.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz040.txt + +[ilz041] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz041.txt +centroid = (0.70231525501476222, -1.5693442128572372) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz041.txt +description = Mason, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz041.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz041.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz041.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz041.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz041.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz041.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz041.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz041.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz041.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz041.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz041.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz041.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz041.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz041.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz041.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('kspi', 0.0074827518488215601) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz041.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz041.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz041.txt + +[ilz042] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz042.txt +centroid = (0.70030463571646473, -1.5597588646052845) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz042.txt +description = Logan, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz042.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz042.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz042.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz042.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz042.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz042.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz042.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz042.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz042.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz042.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz042.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz042.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz042.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz042.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz042.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('kaaa', 0.00073731312136051004) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz042.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz042.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz042.txt + +[ilz043] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz043.txt +centroid = (0.70117904567171385, -1.5516692635222906) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz043.txt +description = De Witt, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz043.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz043.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz043.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz043.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz043.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz043.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz043.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz043.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz043.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz043.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz043.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz043.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz043.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz043.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz043.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('kbmi', 0.0052792150626055868) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz043.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz043.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz043.txt + +[ilz044] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz044.txt +centroid = (0.69831321503993915, -1.5462063829635484) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz044.txt +description = Piatt, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz044.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz044.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz044.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz044.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz044.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz044.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz044.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz044.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz044.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz044.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz044.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz044.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz044.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz044.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz044.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('kdec', 0.0048120493226423726) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz044.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz044.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz044.txt + +[ilz045] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz045.txt +centroid = (0.70057690707977582, -1.5393646922957307) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz045.txt +description = Champaign, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz045.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz045.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz045.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz045.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz045.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz045.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz045.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz045.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz045.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz045.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz045.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz045.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz045.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz045.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz045.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('kcmi', 0.0020703543713088352) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz045.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz045.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz045.txt + +[ilz046] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz046.txt +centroid = (0.70133612530439338, -1.5312279673229332) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz046.txt +description = Vermilion, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz046.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz046.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz046.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz046.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz046.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz046.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz046.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz046.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz046.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz046.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz046.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz046.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz046.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz046.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz046.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('kdnv', 0.0018518975585203939) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz046.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz046.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz046.txt + +[ilz047] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz047.txt +centroid = (0.69767093387520529, -1.5751142713643305) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz047.txt +description = Cass, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz047.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz047.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz047.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz047.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz047.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz047.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz047.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz047.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz047.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz047.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz047.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz047.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz047.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz047.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz047.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('kijx', 0.0034827585231241615) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz047.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz047.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz047.txt + +[ilz048] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz048.txt +centroid = (0.6986099210127783, -1.5673440655344517) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz048.txt +description = Menard, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz048.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz048.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz048.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz048.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz048.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz048.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz048.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz048.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz048.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz048.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz048.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz048.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz048.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz048.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz048.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('kspi', 0.00348091587143649) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz048.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz048.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz048.txt + +[ilz049] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz049.txt +centroid = (0.69192181931913599, -1.5790814047541137) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz049.txt +description = Scott, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz049.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz049.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz049.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz049.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz049.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz049.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz049.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz049.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz049.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz049.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz049.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz049.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz049.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz049.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz049.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('kijx', 0.0038979110341194161) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz049.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz049.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz049.txt + +[ilz050] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz050.txt +centroid = (0.69316798440506, -1.5743131652376652) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz050.txt +description = Morgan, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz050.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz050.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz050.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz050.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz050.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz050.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz050.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz050.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz050.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz050.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz050.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz050.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz050.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz050.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz050.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('kijx', 0.0011370499216060857) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz050.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz050.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz050.txt + +[ilz051] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz051.txt +centroid = (0.69391149466640956, -1.5648430087163441) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz051.txt +description = Sangamon, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz051.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz051.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz051.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz051.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz051.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz051.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz051.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz051.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz051.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz051.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz051.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz051.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz051.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz051.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz051.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('kspi', 0.0016353628450933187) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz051.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz051.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz051.txt + +[ilz052] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz052.txt +centroid = (0.69020441533517363, -1.5581828322907336) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz052.txt +description = Christian, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz052.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz052.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz052.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz052.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz052.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz052.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz052.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz052.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz052.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz052.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz052.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz052.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz052.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz052.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz052.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('ktaz', 0.00070910280680912675) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz052.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz052.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz052.txt + +[ilz053] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz053.txt +centroid = (0.69568649451568787, -1.5526745731714393) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz053.txt +description = Macon, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz053.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz053.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz053.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz053.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz053.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz053.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz053.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz053.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz053.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz053.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz053.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz053.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz053.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz053.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz053.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('kdec', 0.0013552332966981634) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz053.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz053.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz053.txt + +[ilz054] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz054.txt +centroid = (0.6918729501000801, -1.5467003111418629) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz054.txt +description = Moultrie, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz054.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz054.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz054.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz054.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz054.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz054.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz054.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz054.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz054.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz054.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz054.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz054.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz054.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz054.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz054.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('kdec', 0.0047153921872937323) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz054.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz054.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz054.txt + +[ilz055] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz055.txt +centroid = (0.69410871687188491, -1.5396840875488456) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz055.txt +description = Douglas, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz055.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz055.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz055.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz055.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz055.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz055.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz055.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz055.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz055.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz055.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz055.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz055.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz055.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz055.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz055.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('kcmi', 0.0046517681877605603) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz055.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz055.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz055.txt + +[ilz056] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz056.txt +centroid = (0.68975761104666311, -1.5397608820359334) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz056.txt +description = Coles, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz056.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz056.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz056.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz056.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz056.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz056.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz056.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz056.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz056.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz056.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz056.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz056.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz056.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz056.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz056.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('kmto', 0.0011127214927452282) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz056.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz056.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz056.txt + +[ilz057] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz057.txt +centroid = (0.69252221258182212, -1.5314496241379363) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz057.txt +description = Edgar, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz057.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz057.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz057.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz057.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz057.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz057.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz057.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz057.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz057.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz057.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz057.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz057.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz057.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz057.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz057.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('kprg', 0.0010870517525186035) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz057.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz057.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz057.txt + +[ilz058] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz058.txt +centroid = (0.68689527107339232, -1.5776118375239345) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz058.txt +description = Greene, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz058.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz058.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz058.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz058.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz058.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz058.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz058.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz058.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz058.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz058.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz058.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz058.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz058.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz058.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz058.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('kppq', 0.0071850826172103017) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz058.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz058.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz058.txt + +[ilz059] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz059.txt +centroid = (0.68523371762549379, -1.569476857880389) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz059.txt +description = Macoupin, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz059.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz059.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz059.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz059.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz059.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz059.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz059.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz059.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz059.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz059.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz059.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz059.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz059.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz059.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz059.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('k3lf', 0.003794433119887408) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz059.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz059.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz059.txt + +[ilz060] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz060.txt +centroid = (0.68471011884989541, -1.561701416062754) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz060.txt +description = Montgomery, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz060.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz060.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz060.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz060.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz060.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz060.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz060.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz060.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz060.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz060.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz060.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz060.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz060.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz060.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz060.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('k3lf', 0.002904584859826176) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz060.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz060.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz060.txt + +[ilz061] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz061.txt +centroid = (0.6875043909823384, -1.5499483688798243) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz061.txt +description = Shelby, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz061.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz061.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz061.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz061.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz061.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz061.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz061.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz061.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz061.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz061.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz061.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz061.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz061.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz061.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz061.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('k1h2', 0.0066961087862622368) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz061.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz061.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz061.txt + +[ilz062] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz062.txt +centroid = (0.68544664779423703, -1.5400820226183005) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz062.txt +description = Cumberland, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz062.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz062.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz062.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz062.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz062.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz062.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz062.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz062.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz062.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz062.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz062.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz062.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz062.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz062.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz062.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('kmto', 0.0033954608736802999) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz062.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz062.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz062.txt + +[ilz063] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz063.txt +centroid = (0.6864990813331896, -1.532186153082278) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz063.txt +description = Clark, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz063.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz063.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz063.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz063.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz063.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz063.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz063.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz063.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz063.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz063.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz063.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz063.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz063.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz063.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz063.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('krsv', 0.0058506247398701005) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz063.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz063.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz063.txt + +[ilz064] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz064.txt +centroid = (0.678702695564531, -1.5609456884966404) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz064.txt +description = Bond, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz064.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz064.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz064.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz064.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz064.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz064.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz064.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz064.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz064.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz064.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz064.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz064.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz064.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz064.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz064.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('k3lf', 0.0057961482973866727) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz064.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz064.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz064.txt + +[ilz065] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz065.txt +centroid = (0.6806818989362925, -1.5537654039539359) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz065.txt +description = Fayette, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz065.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz065.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz065.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz065.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz065.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz065.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz065.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz065.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz065.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz065.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz065.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz065.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz065.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz065.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz065.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('kslo', 0.0062913795560029162) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz065.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz065.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz065.txt + +[ilz066] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz066.txt +centroid = (0.68172036984122908, -1.5461854390125245) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz066.txt +description = Effingham, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz066.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz066.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz066.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz066.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz066.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz066.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz066.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz066.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz066.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz066.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz066.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz066.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz066.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz066.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz066.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('k1h2', 0.00078961731187150697) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz066.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz066.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz066.txt + +[ilz067] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz067.txt +centroid = (0.68085294120298789, -1.5385740581445773) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz067.txt +description = Jasper, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz067.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz067.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz067.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz067.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz067.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz067.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz067.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz067.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz067.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz067.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz067.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz067.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz067.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz067.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz067.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('koly', 0.0050368805611255597) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz067.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz067.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz067.txt + +[ilz068] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz068.txt +centroid = (0.68072727749684436, -1.5316922249039637) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz068.txt +description = Crawford, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz068.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz068.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz068.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz068.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz068.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz068.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz068.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz068.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz068.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz068.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz068.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz068.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz068.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz068.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz068.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('krsv', 0.0015060804810193105) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz068.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz068.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz068.txt + +[ilz069] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz069.txt +centroid = (0.67381053767119081, -1.5607153050353773) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz069.txt +description = Clinton, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz069.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz069.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz069.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz069.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz069.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz069.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz069.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz069.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz069.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz069.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz069.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz069.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz069.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz069.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz069.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('kenl', 0.004782365163780459) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz069.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz069.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz069.txt + +[ilz070] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz070.txt +centroid = (0.67456277457880043, -1.5519293175808377) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz070.txt +description = Marion, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz070.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz070.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz070.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz070.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz070.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz070.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz070.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz070.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz070.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz070.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz070.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz070.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz070.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz070.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz070.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('kslo', 0.00062708956967655555) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz070.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz070.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz070.txt + +[ilz071] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz071.txt +centroid = (0.67638838897638642, -1.5444453457482863) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz071.txt +description = Clay, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz071.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz071.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz071.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz071.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz071.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz071.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz071.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz071.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz071.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz071.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz071.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz071.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz071.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz071.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz071.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('kfoa', 0.0016369621544537721) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz071.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz071.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz071.txt + +[ilz072] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz072.txt +centroid = (0.67565884134905285, -1.537373271619205) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz072.txt +description = Richland, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz072.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz072.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz072.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz072.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz072.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz072.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz072.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz072.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz072.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz072.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz072.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz072.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz072.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz072.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz072.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('koly', 0.0012556156107918989) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz072.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz072.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz072.txt + +[ilz073] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz073.txt +centroid = (0.67579148637220443, -1.5311180115800576) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz073.txt +description = Lawrence, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz073.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz073.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz073.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz073.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz073.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz073.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz073.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz073.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz073.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz073.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz073.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz073.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz073.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz073.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz073.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('kajg', 0.0019828881638404433) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz073.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz073.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz073.txt + +[ilz074] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz074.txt +centroid = (0.6693721653833693, -1.56050761085439) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz074.txt +description = Washington, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz074.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz074.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz074.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz074.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz074.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz074.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz074.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz074.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz074.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz074.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz074.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz074.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz074.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz074.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz074.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('ksar', 0.0053089969503777182) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz074.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz074.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz074.txt + +[ilz075] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz075.txt +centroid = (0.66847157548934022, -1.5520165840434377) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz075.txt +description = Jefferson, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz075.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz075.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz075.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz075.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz075.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz075.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz075.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz075.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz075.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz075.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz075.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz075.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz075.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz075.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz075.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('kmvn', 0.00083376735825068694) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz075.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz075.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz075.txt + +[ilz076] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz076.txt +centroid = (0.6707213048951608, -1.5433178630514979) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz076.txt +description = Wayne, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz076.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz076.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz076.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz076.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz076.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz076.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz076.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz076.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz076.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz076.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz076.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz076.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz076.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz076.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz076.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('kfwc', 0.0009053270084900865) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz076.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz076.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz076.txt + +[ilz077] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz077.txt +centroid = (0.67049441209240157, -1.536818256917071) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz077.txt +description = Edwards, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz077.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz077.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz077.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz077.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz077.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz077.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz077.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz077.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz077.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz077.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz077.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz077.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz077.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz077.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz077.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('kajg', 0.0055561096969789043) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz077.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz077.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz077.txt + +[ilz078] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz078.txt +centroid = (0.6710110295509919, -1.5331722641096548) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz078.txt +description = Wabash, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz078.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz078.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz078.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz078.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz078.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz078.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz078.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz078.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz078.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz078.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz078.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz078.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz078.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz078.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz078.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('kajg', 0.0032258636008558879) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz078.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz078.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz078.txt + +[ilz079] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz079.txt +centroid = (0.66413443229813429, -1.5677472365916625) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz079.txt +description = Randolph, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz079.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz079.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz079.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz079.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz079.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz079.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz079.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz079.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz079.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz079.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz079.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz079.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz079.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz079.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz079.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('ksar', 0.0024251425894595289) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz079.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz079.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz079.txt + +[ilz080] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz080.txt +centroid = (0.66468770167101643, -1.5597501379590244) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz080.txt +description = Perry, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz080.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz080.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz080.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz080.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz080.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz080.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz080.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz080.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz080.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz080.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz080.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz080.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz080.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz080.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz080.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('ksar', 0.0046917618428269567) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz080.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz080.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz080.txt + +[ilz081] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz081.txt +centroid = (0.66309072540544167, -1.5520200747019415) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz081.txt +description = Franklin, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz081.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz081.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz081.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz081.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz081.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz081.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz081.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz081.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz081.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz081.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz081.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz081.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz081.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz081.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz081.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('kmwa', 0.0043549657816999128) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz081.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz081.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz081.txt + +[ilz082] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz082.txt +centroid = (0.66464930442747261, -1.5453005570817633) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz082.txt +description = Hamilton, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz082.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz082.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz082.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz082.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz082.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz082.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz082.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz082.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz082.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz082.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz082.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz082.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz082.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz082.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz082.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('khsb', 0.0047180681254518258) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz082.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz082.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz082.txt + +[ilz083] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz083.txt +centroid = (0.66475227885334021, -1.5390226077623399) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz083.txt +description = White, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz083.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz083.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz083.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz083.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz083.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz083.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz083.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz083.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz083.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz083.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz083.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz083.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz083.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz083.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz083.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('kcul', 0.00077610688150046511) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz083.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz083.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz083.txt + +[ilz084] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz084.txt +centroid = (0.65947614852456149, -1.5600119373468235) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz084.txt +description = Jackson, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz084.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz084.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz084.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz084.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz084.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz084.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz084.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz084.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz084.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz084.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz084.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz084.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz084.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz084.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz084.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('kmdh', 0.0018224445955351697) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz084.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz084.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz084.txt + +[ilz085] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz085.txt +centroid = (0.65851796276521657, -1.5521195584693053) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz085.txt +description = Williamson, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz085.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz085.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz085.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz085.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz085.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz085.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz085.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz085.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz085.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz085.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz085.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz085.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz085.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz085.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz085.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('kmwa', 0.0010428683178396536) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz085.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz085.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz085.txt + +[ilz086] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz086.txt +centroid = (0.65891938849317522, -1.5453284823497955) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz086.txt +description = Saline, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz086.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz086.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz086.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz086.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz086.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz086.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz086.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz086.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz086.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz086.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz086.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz086.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz086.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz086.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz086.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('khsb', 0.0010203901055050055) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz086.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz086.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz086.txt + +[ilz087] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz087.txt +centroid = (0.65908519477211469, -1.5399127256808571) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz087.txt +description = Gallatin, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz087.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz087.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz087.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz087.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz087.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz087.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz087.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz087.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz087.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz087.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz087.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz087.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz087.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz087.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz087.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('khsb', 0.0044764963004187809) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz087.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz087.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz087.txt + +[ilz088] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz088.txt +centroid = (0.65399581467329926, -1.5577953691967907) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz088.txt +description = Union, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz088.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz088.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz088.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz088.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz088.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz088.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz088.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz088.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz088.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz088.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz088.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz088.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz088.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz088.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz088.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('kmdh', 0.0054482104884848162) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz088.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz088.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz088.txt + +[ilz089] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz089.txt +centroid = (0.65379335648006787, -1.5512643471358281) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz089.txt +description = Johnson, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz089.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz089.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz089.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz089.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz089.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz089.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz089.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz089.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz089.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz089.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz089.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz089.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz089.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz089.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz089.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('km30', 0.005109146297174817) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz089.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz089.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz089.txt + +[ilz090] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz090.txt +centroid = (0.65297305173163045, -1.5456897655049582) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz090.txt +description = Pope, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz090.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz090.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz090.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz090.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz090.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz090.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz090.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz090.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz090.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz090.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz090.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz090.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz090.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz090.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz090.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('km30', 0.0047491001974020843) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz090.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz090.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz090.txt + +[ilz091] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz091.txt +centroid = (0.65481611942173656, -1.5405480255285831) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz091.txt +description = Hardin, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz091.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz091.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz091.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz091.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz091.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz091.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz091.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz091.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz091.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz091.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz091.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz091.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz091.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz091.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz091.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('khsb', 0.0064337517318387126) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz091.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz091.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz091.txt + +[ilz092] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz092.txt +centroid = (0.64911412875547103, -1.559235265829686) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz092.txt +description = Alexander, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz092.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz092.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz092.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz092.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz092.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz092.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz092.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz092.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz092.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz092.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz092.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz092.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz092.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz092.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz092.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('kcir', 0.0027605750857555658) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz092.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz092.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz092.txt + +[ilz093] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz093.txt +centroid = (0.64966041681134534, -1.55555436643723) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz093.txt +description = Pulaski, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz093.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz093.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz093.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz093.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz093.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz093.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz093.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz093.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz093.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz093.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz093.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz093.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz093.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz093.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz093.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('kcir', 0.0030501819109613909) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz093.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz093.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz093.txt + +[ilz094] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz094.txt +centroid = (0.64959409429976955, -1.548243182200626) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz094.txt +description = Massac, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz094.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz094.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz094.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz094.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz094.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz094.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz094.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz094.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz094.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz094.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz094.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz094.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz094.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz094.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz094.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('km30', 0.00082967782064420159) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz094.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz094.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz094.txt + +[ilz095] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz095.txt +centroid = (0.69791877062898855, -1.5915413102841012) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz095.txt +description = Adams, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz095.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz095.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz095.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz095.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz095.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz095.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz095.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz095.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz095.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz095.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz095.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz095.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz095.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz095.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz095.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('kuin', 0.00096277801969283326) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz095.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz095.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz095.txt + +[ilz096] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz096.txt +centroid = (0.69746498502346987, -1.5838932775018619) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz096.txt +description = Brown, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz096.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz096.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz096.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz096.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz096.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz096.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz096.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz096.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz096.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz096.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz096.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz096.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz096.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz096.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz096.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('kppq', 0.0056482948040591768) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz096.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz096.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz096.txt + +[ilz097] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz097.txt +centroid = (0.69154308287145327, -1.5862651799553225) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz097.txt +description = Pike, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz097.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz097.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz097.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz097.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz097.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz097.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz097.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz097.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz097.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz097.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz097.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz097.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz097.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz097.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz097.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('kppq', 0.0014792109543014245) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz097.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz097.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz097.txt + +[ilz098] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz098.txt +centroid = (0.68363150537216288, -1.5824463995519589) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz098.txt +description = Calhoun, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz098.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz098.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz098.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz098.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz098.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz098.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz098.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz098.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz098.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz098.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz098.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz098.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz098.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz098.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz098.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('kset', 0.0051981008985964436) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz098.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz098.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz098.txt + +[ilz099] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz099.txt +centroid = (0.68217241011749563, -1.5770201709075085) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz099.txt +description = Jersey, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz099.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz099.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz099.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz099.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz099.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz099.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz099.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz099.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz099.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz099.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz099.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz099.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz099.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz099.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz099.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('kset', 0.002854041591271258) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz099.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz099.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz099.txt + +[ilz100] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz100.txt +centroid = (0.67770960322014617, -1.5691400093347541) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz100.txt +description = Madison, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz100.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz100.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz100.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz100.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz100.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz100.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz100.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz100.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz100.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz100.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz100.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz100.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz100.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz100.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz100.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('kaln', 0.0023182709038734751) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz100.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz100.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz100.txt + +[ilz101] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz101.txt +centroid = (0.67143339922997458, -1.5695466710504686) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz101.txt +description = St. Clair, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz101.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz101.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz101.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz101.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz101.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz101.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz101.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz101.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz101.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz101.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz101.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz101.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz101.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz101.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz101.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('kblv', 0.0017553921365082085) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz101.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz101.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz101.txt + +[ilz102] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/il/ilz102.txt +centroid = (0.66808585772464946, -1.5738925408879347) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/il/ilz102.txt +description = Monroe, IL +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/il/ilz102.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/il/ilz102.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/il/ilz102.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/il/ilz102.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/il/ilz102.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/il/ilz102.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/il/ilz102.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/il/ilz102.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/il.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/il/ilz102.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/il/ilz102.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/il/ilz102.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/il/ilz102.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/il/ilz102.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/il/ilz102.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/il/ilz102.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/il.txt +station = ('kcps', 0.0050433926049471287) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/il/ilz102.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/il/ilz102.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/il/ilz102.txt + +[inz001] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz001.txt +centroid = (0.72283858168896353, -1.5250983709899291) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz001.txt +description = Lake, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz001.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz001.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz001.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz001.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz001.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz001.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz001.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz001.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz001.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz001.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz001.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz001.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz001.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz001.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz001.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('kigq', 0.002930548446075861) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz001.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz001.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz001.txt + +[inz002] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz002.txt +centroid = (0.72362223452310903, -1.5196075651631549) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz002.txt +description = Porter, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz002.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz002.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz002.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz002.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz002.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz002.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz002.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz002.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz002.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz002.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz002.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz002.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz002.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz002.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz002.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('kvpz', 0.00089664712139212106) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz002.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz002.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz002.txt + +[inz003] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz003.txt +centroid = (0.72511449103356418, -1.5138968478506296) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz003.txt +description = La Porte, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz003.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz003.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz003.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz003.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz003.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz003.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz003.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz003.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz003.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz003.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz003.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz003.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz003.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz003.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz003.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('kppo', 0.00043837956956196961) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz003.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz003.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz003.txt + +[inz004] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz004.txt +centroid = (0.72634843881472422, -1.5060411208874029) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz004.txt +description = St. Joseph, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz004.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz004.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz004.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz004.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz004.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz004.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz004.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz004.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz004.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz004.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz004.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz004.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz004.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz004.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz004.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('ksbn', 0.0014954733975145291) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz004.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz004.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz004.txt + +[inz005] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz005.txt +centroid = (0.72601159026908924, -1.4985170064820554) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz005.txt +description = Elkhart, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz005.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz005.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz005.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz005.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz005.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz005.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz005.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz005.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz005.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz005.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz005.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz005.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz005.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz005.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz005.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('kgsh', 0.0014896043112221059) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz005.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz005.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz005.txt + +[inz006] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz006.txt +centroid = (0.72680222442024267, -1.490973693454936) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz006.txt +description = Lagrange, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz006.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz006.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz006.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz006.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz006.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz006.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz006.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz006.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz006.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz006.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz006.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz006.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz006.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz006.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz006.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('kirs', 0.0029729989832749421) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz006.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz006.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz006.txt + +[inz007] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz007.txt +centroid = (0.72682316837126659, -1.4835438268291961) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz007.txt +description = Steuben, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz007.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz007.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz007.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz007.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz007.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz007.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz007.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz007.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz007.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz007.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz007.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz007.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz007.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz007.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz007.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('koeb', 0.0050961697991200828) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz007.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz007.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz007.txt + +[inz008] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz008.txt +centroid = (0.72254187571612449, -1.4908148684930045) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz008.txt +description = Noble, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz008.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz008.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz008.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz008.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz008.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz008.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz008.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz008.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz008.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz008.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz008.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz008.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz008.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz008.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz008.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('kgsh', 0.0053324015658979228) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz008.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz008.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz008.txt + +[inz009] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz009.txt +centroid = (0.72252442242360448, -1.4835141562319121) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz009.txt +description = De Kalb, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz009.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz009.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz009.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz009.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz009.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz009.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz009.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz009.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz009.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz009.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz009.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz009.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz009.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz009.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz009.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('kgwb', 0.0019402717685632908) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz009.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz009.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz009.txt + +[inz010] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz010.txt +centroid = (0.7148153031175456, -1.5253741330117441) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz010.txt +description = Newton, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz010.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz010.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz010.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz010.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz010.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz010.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz010.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz010.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz010.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz010.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz010.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz010.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz010.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz010.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz010.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('krzl', 0.0027371118961221994) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz010.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz010.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz010.txt + +[inz011] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz011.txt +centroid = (0.71598641904563387, -1.5204645218258843) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz011.txt +description = Jasper, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz011.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz011.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz011.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz011.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz011.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz011.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz011.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz011.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz011.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz011.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz011.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz011.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz011.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz011.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz011.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('krzl', 0.0016027110749118163) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz011.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz011.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz011.txt + +[inz012] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz012.txt +centroid = (0.72048936851577916, -1.5122893996095428) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz012.txt +description = Starke, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz012.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz012.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz012.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz012.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz012.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz012.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz012.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz012.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz012.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz012.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz012.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz012.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz012.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz012.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz012.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('koxi', 0.00087004107971845417) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz012.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz012.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz012.txt + +[inz013] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz013.txt +centroid = (0.71631628627426069, -1.5131812628573116) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz013.txt +description = Pulaski, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz013.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz013.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz013.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz013.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz013.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz013.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz013.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz013.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz013.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz013.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz013.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz013.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz013.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz013.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz013.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('koxi', 0.005054186715817483) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz013.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz013.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz013.txt + +[inz014] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz014.txt +centroid = (0.72125731338665677, -1.5055524286968445) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz014.txt +description = Marshall, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz014.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz014.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz014.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz014.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz014.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz014.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz014.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz014.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz014.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz014.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz014.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz014.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz014.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz014.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz014.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('krcr', 0.0047482562091325812) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz014.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz014.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz014.txt + +[inz015] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz015.txt +centroid = (0.71640529806611242, -1.5055838446233805) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz015.txt +description = Fulton, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz015.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz015.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz015.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz015.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz015.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz015.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz015.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz015.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz015.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz015.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz015.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz015.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz015.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz015.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz015.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('krcr', 0.0011234490628902638) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz015.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz015.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz015.txt + +[inz016] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz016.txt +centroid = (0.71984534202179329, -1.4985519130670952) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz016.txt +description = Kosciusko, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz016.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz016.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz016.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz016.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz016.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz016.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz016.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz016.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz016.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz016.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz016.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz016.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz016.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz016.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz016.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('kasw', 0.00059518699132721806) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz016.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz016.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz016.txt + +[inz017] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz017.txt +centroid = (0.71801798229495528, -1.4923472675762555) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz017.txt +description = Whitley, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz017.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz017.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz017.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz017.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz017.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz017.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz017.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz017.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz017.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz017.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz017.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz017.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz017.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz017.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz017.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('kfwa', 0.004695399324828555) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz017.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz017.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz017.txt + +[inz018] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz018.txt +centroid = (0.71716975227848601, -1.4846905081477564) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz018.txt +description = Allen, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz018.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz018.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz018.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz018.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz018.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz018.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz018.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz018.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz018.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz018.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz018.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz018.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz018.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz018.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz018.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('kfwa', 0.0023663188463238982) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz018.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz018.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz018.txt + +[inz019] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz019.txt +centroid = (0.70871363205257343, -1.5238626778795172) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz019.txt +description = Benton, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz019.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz019.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz019.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz019.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz019.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz019.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz019.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz019.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz019.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz019.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz019.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz019.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz019.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz019.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz019.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('klaf', 0.0058213153935911862) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz019.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz019.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz019.txt + +[inz020] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz020.txt +centroid = (0.71121992485843721, -1.5160872360618822) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz020.txt +description = White, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz020.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz020.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz020.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz020.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz020.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz020.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz020.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz020.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz020.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz020.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz020.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz020.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz020.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz020.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz020.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('krzl', 0.0055282452153005901) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz020.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz020.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz020.txt + +[inz021] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz021.txt +centroid = (0.70830347967835472, -1.5108180870501116) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz021.txt +description = Carroll, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz021.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz021.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz021.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz021.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz021.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz021.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz021.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz021.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz021.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz021.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz021.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz021.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz021.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz021.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz021.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('kggp', 0.0033782477095158497) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz021.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz021.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz021.txt + +[inz022] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz022.txt +centroid = (0.71142238305166861, -1.5070219959270239) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz022.txt +description = Cass, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz022.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz022.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz022.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz022.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz022.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz022.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz022.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz022.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz022.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz022.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz022.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz022.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz022.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz022.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz022.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('kggp', 0.00094496258838781843) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz022.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz022.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz022.txt + +[inz023] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz023.txt +centroid = (0.71156200939182823, -1.5017703002077729) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz023.txt +description = Miami, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz023.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz023.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz023.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz023.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz023.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz023.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz023.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz023.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz023.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz023.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz023.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz023.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz023.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz023.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz023.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('kgus', 0.0025052096127270392) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz023.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz023.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz023.txt + +[inz024] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz024.txt +centroid = (0.71289195028184793, -1.497387778456015) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz024.txt +description = Wabash, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz024.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz024.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz024.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz024.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz024.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz024.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz024.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz024.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz024.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz024.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz024.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz024.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz024.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz024.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz024.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('kgus', 0.0058158302329342406) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz024.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz024.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz024.txt + +[inz025] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz025.txt +centroid = (0.71260397095526884, -1.4920488162741645) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz025.txt +description = Huntington, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz025.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz025.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz025.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz025.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz025.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz025.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz025.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz025.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz025.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz025.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz025.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz025.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz025.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz025.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz025.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('kfwa', 0.0048295997435450645) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz025.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz025.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz025.txt + +[inz026] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz026.txt +centroid = (0.7108568963740225, -1.4873905325005916) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz026.txt +description = Wells, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz026.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz026.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz026.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz026.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz026.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz026.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz026.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz026.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz026.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz026.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz026.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz026.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz026.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz026.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz026.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('kfwa', 0.0047363700407261639) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz026.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz026.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz026.txt + +[inz027] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz027.txt +centroid = (0.71114313037134957, -1.4824233254494157) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz027.txt +description = Adams, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz027.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz027.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz027.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz027.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz027.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz027.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz027.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz027.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz027.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz027.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz027.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz027.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz027.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz027.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz027.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('kfwa', 0.005640417354985619) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz027.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz027.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz027.txt + +[inz028] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz028.txt +centroid = (0.70418624797290008, -1.5246026974823628) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz028.txt +description = Warren, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz028.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz028.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz028.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz028.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz028.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz028.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz028.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz028.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz028.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz028.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz028.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz028.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz028.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz028.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz028.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('kdnv', 0.0041267594215901445) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz028.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz028.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz028.txt + +[inz029] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz029.txt +centroid = (0.70491405027098175, -1.5165881455572046) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz029.txt +description = Tippecanoe, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz029.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz029.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz029.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz029.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz029.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz029.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz029.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz029.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz029.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz029.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz029.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz029.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz029.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz029.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz029.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('klaf', 0.00088991256171702107) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz029.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz029.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz029.txt + +[inz030] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz030.txt +centroid = (0.70339735915099866, -1.5092769613206005) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz030.txt +description = Clinton, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz030.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz030.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz030.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz030.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz030.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz030.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz030.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz030.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz030.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz030.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz030.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz030.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz030.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz030.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz030.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('ktyq', 0.0056132584462880294) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz030.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz030.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz030.txt + +[inz031] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz031.txt +centroid = (0.70657211306037648, -1.5030234466107049) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz031.txt +description = Howard, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz031.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz031.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz031.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz031.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz031.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz031.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz031.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz031.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz031.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz031.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz031.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz031.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz031.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz031.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz031.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('kokk', 0.0010944344652524265) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz031.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz031.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz031.txt + +[inz032] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz032.txt +centroid = (0.70713410907951857, -1.494958280137239) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz032.txt +description = Grant, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz032.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz032.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz032.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz032.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz032.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz032.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz032.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz032.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz032.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz032.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz032.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz032.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz032.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz032.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz032.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('kmzz', 0.00056089986533684917) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz032.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz032.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz032.txt + +[inz033] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz033.txt +centroid = (0.70639583480592494, -1.4891986936056576) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz033.txt +description = Blackford, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz033.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz033.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz033.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz033.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz033.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz033.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz033.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz033.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz033.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz033.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz033.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz033.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz033.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz033.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz033.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('kmie', 0.0043093779475989122) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz033.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz033.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz033.txt + +[inz034] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz034.txt +centroid = (0.70577624292146701, -1.483629347962544) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz034.txt +description = Jay, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz034.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz034.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz034.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz034.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz034.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz034.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz034.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz034.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz034.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz034.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz034.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz034.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz034.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz034.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz034.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('kmie', 0.0063465003058121184) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz034.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz034.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz034.txt + +[inz035] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz035.txt +centroid = (0.70024180386339296, -1.522658400695641) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz035.txt +description = Fountain, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz035.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz035.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz035.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz035.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz035.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz035.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz035.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz035.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz035.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz035.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz035.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz035.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz035.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz035.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz035.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('kdnv', 0.0049124122849391666) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz035.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz035.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz035.txt + +[inz036] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz036.txt +centroid = (0.69883681381553753, -1.5165741829231887) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz036.txt +description = Montgomery, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz036.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz036.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz036.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz036.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz036.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz036.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz036.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz036.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz036.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz036.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz036.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz036.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz036.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz036.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz036.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('klaf', 0.006610410546136509) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz036.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz036.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz036.txt + +[inz037] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz037.txt +centroid = (0.699018328057745, -1.5091635149192208) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz037.txt +description = Boone, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz037.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz037.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz037.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz037.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz037.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz037.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz037.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz037.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz037.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz037.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz037.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz037.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz037.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz037.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz037.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('ktyq', 0.0029447497050127114) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz037.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz037.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz037.txt + +[inz038] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz038.txt +centroid = (0.70356665608844215, -1.5018889825969086) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz038.txt +description = Tipton, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz038.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz038.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz038.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz038.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz038.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz038.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz038.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz038.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz038.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz038.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz038.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz038.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz038.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz038.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz038.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('kokk', 0.0038784333620879578) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz038.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz038.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz038.txt + +[inz039] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz039.txt +centroid = (0.69939706450542771, -1.5018907279261606) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz039.txt +description = Hamilton, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz039.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz039.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz039.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz039.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz039.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz039.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz039.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz039.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz039.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz039.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz039.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz039.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz039.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz039.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz039.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('ktyq', 0.0027473028621408501) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz039.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz039.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz039.txt + +[inz040] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz040.txt +centroid = (0.70095215286895463, -1.4960857628340272) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz040.txt +description = Madison, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz040.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz040.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz040.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz040.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz040.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz040.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz040.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz040.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz040.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz040.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz040.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz040.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz040.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz040.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz040.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('kaid', 0.0015792264056860893) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz040.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz040.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz040.txt + +[inz041] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz041.txt +centroid = (0.70210407017527099, -1.4904570759963456) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz041.txt +description = Delaware, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz041.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz041.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz041.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz041.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz041.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz041.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz041.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz041.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz041.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz041.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz041.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz041.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz041.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz041.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz041.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('kmie', 0.00010825600185121527) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz041.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz041.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz041.txt + +[inz042] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz042.txt +centroid = (0.70088233969887492, -1.4837288317299073) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz042.txt +description = Randolph, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz042.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz042.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz042.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz042.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz042.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz042.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz042.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz042.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz042.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz042.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz042.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz042.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz042.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz042.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz042.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('kves', 0.0064619368522222387) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz042.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz042.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz042.txt + +[inz043] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz043.txt +centroid = (0.69558002943131614, -1.5265347769643203) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz043.txt +description = Vermillion, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz043.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz043.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz043.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz043.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz043.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz043.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz043.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz043.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz043.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz043.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz043.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz043.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz043.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz043.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz043.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('kprg', 0.0038463209875103117) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz043.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz043.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz043.txt + +[inz044] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz044.txt +centroid = (0.69418027537121674, -1.5220370634819309) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz044.txt +description = Parke, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz044.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz044.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz044.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz044.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz044.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz044.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz044.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz044.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz044.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz044.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz044.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz044.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz044.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz044.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz044.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('khuf', 0.0058395822750209629) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz044.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz044.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz044.txt + +[inz045] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz045.txt +centroid = (0.69230753708382675, -1.5157311888944756) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz045.txt +description = Putnam, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz045.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz045.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz045.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz045.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz045.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz045.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz045.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz045.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz045.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz045.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz045.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz045.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz045.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz045.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz045.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('kind', 0.0075943381761336293) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz045.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz045.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz045.txt + +[inz046] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz046.txt +centroid = (0.69410871687188491, -1.5098843359002945) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz046.txt +description = Hendricks, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz046.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz046.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz046.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz046.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz046.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz046.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz046.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz046.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz046.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz046.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz046.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz046.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz046.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz046.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz046.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('kind', 0.0031785964711086136) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz046.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz046.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz046.txt + +[inz047] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz047.txt +centroid = (0.69431990171137614, -1.5033986923998837) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz047.txt +description = Marion, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz047.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz047.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz047.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz047.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz047.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz047.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz047.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz047.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz047.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz047.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz047.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz047.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz047.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz047.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz047.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('kind', 0.0022509651975957225) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz047.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz047.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz047.txt + +[inz048] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz048.txt +centroid = (0.69505119466796184, -1.4970247499716003) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz048.txt +description = Hancock, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz048.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz048.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz048.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz048.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz048.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz048.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz048.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz048.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz048.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz048.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz048.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz048.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz048.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz048.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz048.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('kgez', 0.0042071184019255936) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz048.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz048.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz048.txt + +[inz049] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz049.txt +centroid = (0.69692916894310775, -1.4904500946793378) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz049.txt +description = Henry, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz049.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz049.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz049.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz049.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz049.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz049.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz049.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz049.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz049.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz049.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz049.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz049.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz049.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz049.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz049.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('kaid', 0.0043758829986426679) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz049.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz049.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz049.txt + +[inz050] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz050.txt +centroid = (0.69576503433202752, -1.4837026517911276) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz050.txt +description = Wayne, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz050.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz050.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz050.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz050.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz050.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz050.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz050.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz050.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz050.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz050.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz050.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz050.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz050.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz050.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz050.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('kmie', 0.0082840575225466492) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz050.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz050.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz050.txt + +[inz051] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz051.txt +centroid = (0.68819379603687603, -1.5252432333178445) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz051.txt +description = Vigo, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz051.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz051.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz051.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz051.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz051.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz051.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz051.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz051.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz051.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz051.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz051.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz051.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz051.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz051.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz051.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('khuf', 0.0010448404748255175) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz051.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz051.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz051.txt + +[inz052] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz052.txt +centroid = (0.68753406157962227, -1.520457540508876) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz052.txt +description = Clay, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz052.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz052.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz052.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz052.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz052.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz052.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz052.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz052.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz052.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz052.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz052.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz052.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz052.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz052.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz052.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('khuf', 0.0028863533240893698) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz052.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz052.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz052.txt + +[inz053] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz053.txt +centroid = (0.68613954350727879, -1.5156020345298278) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz053.txt +description = Owen, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz053.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz053.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz053.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz053.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz053.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz053.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz053.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz053.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz053.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz053.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz053.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz053.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz053.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz053.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz053.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('kbmg', 0.0041236822176483308) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz053.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz053.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz053.txt + +[inz054] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz054.txt +centroid = (0.68908216862614113, -1.5087708158375222) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz054.txt +description = Morgan, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz054.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz054.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz054.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz054.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz054.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz054.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz054.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz054.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz054.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz054.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz054.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz054.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz054.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz054.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz054.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('kind', 0.0046522659893697294) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz054.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz054.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz054.txt + +[inz055] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz055.txt +centroid = (0.6892287762833087, -1.5027581565644015) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz055.txt +description = Johnson, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz055.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz055.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz055.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz055.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz055.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz055.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz055.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz055.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz055.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz055.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz055.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz055.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz055.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz055.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz055.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('kind', 0.0046508171627308451) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz055.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz055.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz055.txt + +[inz056] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz056.txt +centroid = (0.68981695224123085, -1.4973493812124712) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz056.txt +description = Shelby, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz056.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz056.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz056.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz056.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz056.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz056.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz056.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz056.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz056.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz056.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz056.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz056.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz056.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz056.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz056.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('kgez', 0.001048366922552476) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz056.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz056.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz056.txt + +[inz057] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz057.txt +centroid = (0.69149770431090141, -1.4916578625217176) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz057.txt +description = Rush, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz057.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz057.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz057.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz057.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz057.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz057.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz057.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz057.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz057.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz057.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz057.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz057.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz057.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz057.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz057.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('kgez', 0.0045406317653044473) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz057.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz057.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz057.txt + +[inz058] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz058.txt +centroid = (0.69185026081980416, -1.4866487675684941) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz058.txt +description = Fayette, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz058.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz058.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz058.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz058.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz058.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz058.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz058.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz058.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz058.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz058.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz058.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz058.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz058.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz058.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz058.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('khao', 0.010112318227504444) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz058.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz058.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz058.txt + +[inz059] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz059.txt +centroid = (0.69159544274901308, -1.4822226125854363) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz059.txt +description = Union, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz059.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz059.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz059.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz059.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz059.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz059.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz059.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz059.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz059.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz059.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz059.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz059.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz059.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz059.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz059.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('khao', 0.0071180609605453341) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz059.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz059.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz059.txt + +[inz060] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz060.txt +centroid = (0.68222826065355946, -1.525672584313835) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz060.txt +description = Sullivan, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz060.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz060.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz060.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz060.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz060.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz060.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz060.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz060.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz060.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz060.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz060.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz060.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz060.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz060.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz060.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('krsv', 0.003431819839210292) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz060.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz060.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz060.txt + +[inz061] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz061.txt +centroid = (0.68131196279626238, -1.5177732241193089) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz061.txt +description = Greene, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz061.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz061.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz061.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz061.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz061.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz061.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz061.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz061.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz061.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz061.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz061.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz061.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz061.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz061.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz061.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('kbmg', 0.0050813559251179389) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz061.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz061.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz061.txt + +[inz062] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz062.txt +centroid = (0.68348664304424733, -1.5101129740323058) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz062.txt +description = Monroe, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz062.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz062.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz062.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz062.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz062.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz062.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz062.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz062.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz062.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz062.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz062.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz062.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz062.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz062.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz062.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('kbmg', 0.0012805327029299497) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz062.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz062.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz062.txt + +[inz063] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz063.txt +centroid = (0.68410274427020135, -1.5049520354341586) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz063.txt +description = Brown, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz063.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz063.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz063.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz063.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz063.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz063.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz063.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz063.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz063.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz063.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz063.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz063.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz063.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz063.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz063.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('kbak', 0.004593899970569232) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz063.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz063.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz063.txt + +[inz064] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz064.txt +centroid = (0.68427204120764484, -1.4991976848903332) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz064.txt +description = Bartholomew, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz064.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz064.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz064.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz064.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz064.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz064.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz064.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz064.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz064.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz064.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz064.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz064.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz064.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz064.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz064.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('kbak', 0.0010610340642071253) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz064.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz064.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz064.txt + +[inz065] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz065.txt +centroid = (0.68603482375215907, -1.4922791997354277) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz065.txt +description = Decatur, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz065.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz065.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz065.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz065.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz065.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz065.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz065.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz065.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz065.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz065.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz065.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz065.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz065.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz065.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz065.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('kbak', 0.0054314611548601024) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz065.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz065.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz065.txt + +[inz066] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz066.txt +centroid = (0.68791803401506102, -1.4845822977341327) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz066.txt +description = Franklin, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz066.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz066.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz066.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz066.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz066.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz066.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz066.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz066.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz066.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz066.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz066.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz066.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz066.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz066.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz066.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('kcvg', 0.0082980071273963986) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz066.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz066.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz066.txt + +[inz067] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz067.txt +centroid = (0.67525217963333817, -1.5257319255084032) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz067.txt +description = Knox, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz067.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz067.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz067.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz067.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz067.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz067.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz067.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz067.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz067.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz067.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz067.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz067.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz067.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz067.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz067.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('klwv', 0.0028237532509958097) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz067.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz067.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz067.txt + +[inz068] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz068.txt +centroid = (0.67548430842385332, -1.5196948316257548) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz068.txt +description = Daviess, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz068.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz068.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz068.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz068.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz068.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz068.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz068.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz068.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz068.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz068.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz068.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz068.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz068.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz068.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz068.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('khnb', 0.0080701935585928402) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz068.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz068.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz068.txt + +[inz069] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz069.txt +centroid = (0.6755820468619651, -1.5149998959378899) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz069.txt +description = Martin, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz069.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz069.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz069.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz069.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz069.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz069.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz069.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz069.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz069.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz069.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz069.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz069.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz069.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz069.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz069.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('kbmg', 0.0081190219981998202) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz069.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz069.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz069.txt + +[inz070] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz070.txt +centroid = (0.67790682542562153, -1.5094200783192639) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz070.txt +description = Lawrence, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz070.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz070.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz070.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz070.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz070.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz070.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz070.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz070.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz070.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz070.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz070.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz070.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz070.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz070.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz070.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('kbmg', 0.0056846569678023215) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz070.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz070.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz070.txt + +[inz071] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz071.txt +centroid = (0.6790447800979218, -1.5016394005138733) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz071.txt +description = Jackson, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz071.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz071.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz071.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz071.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz071.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz071.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz071.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz071.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz071.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz071.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz071.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz071.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz071.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz071.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz071.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('kbak', 0.0065583317540333719) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz071.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz071.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz071.txt + +[inz072] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz072.txt +centroid = (0.68062430307097666, -1.4944922772269567) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz072.txt +description = Jennings, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz072.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz072.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz072.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz072.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz072.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz072.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz072.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz072.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz072.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz072.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz072.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz072.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz072.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz072.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz072.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('kbak', 0.0059765127133824631) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz072.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz072.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz072.txt + +[inz073] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz073.txt +centroid = (0.68248307872435066, -1.4881096081524132) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz073.txt +description = Ripley, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz073.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz073.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz073.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz073.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz073.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz073.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz073.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz073.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz073.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz073.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz073.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz073.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz073.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz073.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz073.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('kbak', 0.0090840637696074714) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz073.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz073.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz073.txt + +[inz074] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz074.txt +centroid = (0.68321437168093624, -1.4830638612848976) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz074.txt +description = Dearborn, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz074.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz074.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz074.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz074.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz074.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz074.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz074.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz074.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz074.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz074.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz074.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz074.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz074.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz074.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz074.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('kcvg', 0.0044740228153625451) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz074.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz074.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz074.txt + +[inz075] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz075.txt +centroid = (0.67980748898104337, -1.4829189989569822) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz075.txt +description = Ohio, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz075.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz075.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz075.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz075.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz075.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz075.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz075.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz075.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz075.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz075.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz075.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz075.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz075.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz075.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz075.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('kcvg', 0.0044061732581403851) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz075.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz075.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz075.txt + +[inz076] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz076.txt +centroid = (0.67268130964515049, -1.5096242818417471) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz076.txt +description = Orange, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz076.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz076.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz076.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz076.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz076.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz076.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz076.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz076.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz076.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz076.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz076.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz076.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz076.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz076.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz076.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('khnb', 0.0080409194287665939) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz076.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz076.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz076.txt + +[inz077] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz077.txt +centroid = (0.67369709126981125, -1.5028209884174735) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz077.txt +description = Washington, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz077.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz077.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz077.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz077.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz077.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz077.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz077.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz077.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz077.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz077.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz077.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz077.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz077.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz077.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz077.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('klou', 0.0087711335217208301) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz077.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz077.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz077.txt + +[inz078] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz078.txt +centroid = (0.67518236646325835, -1.4965744550245856) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz078.txt +description = Scott, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz078.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz078.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz078.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz078.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz078.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz078.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz078.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz078.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz078.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz078.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz078.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz078.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz078.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz078.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz078.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('klou', 0.007961640679256695) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz078.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz078.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz078.txt + +[inz079] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz079.txt +centroid = (0.67693991302001666, -1.4911831329651752) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz079.txt +description = Jefferson, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz079.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz079.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz079.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz079.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz079.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz079.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz079.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz079.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz079.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz079.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz079.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz079.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz079.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz079.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz079.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('klou', 0.010133371841715757) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz079.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz079.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz079.txt + +[inz080] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz080.txt +centroid = (0.6776450260378224, -1.4841756360184182) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz080.txt +description = Switzerland, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz080.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz080.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz080.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz080.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz080.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz080.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz080.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz080.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz080.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz080.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz080.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz080.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz080.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz080.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz080.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('kcvg', 0.0063665417114734755) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz080.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz080.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz080.txt + +[inz081] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz081.txt +centroid = (0.66866705236556356, -1.5286396440422254) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz081.txt +description = Gibson, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz081.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz081.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz081.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz081.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz081.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz081.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz081.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz081.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz081.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz081.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz081.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz081.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz081.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz081.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz081.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('kevv', 0.0049108008325790984) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz081.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz081.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz081.txt + +[inz082] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz082.txt +centroid = (0.67018548881479867, -1.5224891037581976) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz082.txt +description = Pike, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz082.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz082.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz082.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz082.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz082.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz082.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz082.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz082.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz082.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz082.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz082.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz082.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz082.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz082.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz082.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('khnb', 0.0046556337629627036) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz082.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz082.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz082.txt + +[inz083] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz083.txt +centroid = (0.66958335022286053, -1.5163385634741695) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz083.txt +description = Dubois, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz083.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz083.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz083.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz083.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz083.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz083.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz083.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz083.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz083.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz083.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz083.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz083.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz083.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz083.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz083.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('khnb', 0.0022145016639157356) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz083.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz083.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz083.txt + +[inz084] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz084.txt +centroid = (0.66832671316142456, -1.5088668089463819) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz084.txt +description = Crawford, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz084.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz084.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz084.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz084.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz084.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz084.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz084.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz084.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz084.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz084.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz084.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz084.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz084.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz084.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz084.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('khnb', 0.00686768300985428) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz084.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz084.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz084.txt + +[inz085] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz085.txt +centroid = (0.66360559753477999, -1.5335928884593855) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz085.txt +description = Posey, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz085.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz085.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz085.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz085.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz085.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz085.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz085.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz085.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz085.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz085.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz085.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz085.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz085.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz085.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz085.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('kcul', 0.0036934898972659624) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz085.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz085.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz085.txt + +[inz086] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz086.txt +centroid = (0.66366842938785175, -1.5286588426639975) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz086.txt +description = Vanderburgh, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz086.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz086.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz086.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz086.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz086.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz086.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz086.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz086.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz086.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz086.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz086.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz086.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz086.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz086.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz086.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('kevv', 0.00073312450089719951) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz086.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz086.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz086.txt + +[inz087] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz087.txt +centroid = (0.66483430932818399, -1.5231854901297432) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz087.txt +description = Warrick, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz087.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz087.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz087.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz087.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz087.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz087.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz087.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz087.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz087.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz087.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz087.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz087.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz087.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz087.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz087.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('kevv', 0.0037338967007109667) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz087.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz087.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz087.txt + +[inz088] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz088.txt +centroid = (0.66347295251162841, -1.5185708395874702) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz088.txt +description = Spencer, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz088.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz088.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz088.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz088.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz088.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz088.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz088.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz088.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz088.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz088.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz088.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz088.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz088.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz088.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz088.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('khnb', 0.0041910272117018192) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz088.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz088.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz088.txt + +[inz089] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz089.txt +centroid = (0.66461614317168471, -1.5121183573428474) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz089.txt +description = Perry, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz089.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz089.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz089.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz089.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz089.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz089.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz089.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz089.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz089.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz089.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz089.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz089.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz089.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz089.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz089.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('khnb', 0.0052119862337820485) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz089.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz089.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz089.txt + +[inz090] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz090.txt +centroid = (0.66663199845773813, -1.5029257081725931) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz090.txt +description = Harrison, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz090.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz090.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz090.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz090.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz090.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz090.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz090.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz090.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz090.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz090.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz090.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz090.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz090.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz090.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz090.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('ksdf', 0.0051890069820407728) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz090.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz090.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz090.txt + +[inz091] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz091.txt +centroid = (0.66879969738871514, -1.4993565098522648) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz091.txt +description = Floyd, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz091.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz091.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz091.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz091.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz091.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz091.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz091.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz091.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz091.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz091.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz091.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz091.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz091.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz091.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz091.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('ksdf', 0.0033604281815445575) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz091.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz091.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz091.txt + +[inz092] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/in/inz092.txt +centroid = (0.6715555722776142, -1.4958745779945362) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/in/inz092.txt +description = Clark, IN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/in/inz092.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/in/inz092.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/in/inz092.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/in/inz092.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/in/inz092.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/in/inz092.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/in/inz092.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/in/inz092.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/in.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/in/inz092.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/in/inz092.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/in/inz092.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/in/inz092.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/in/inz092.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/in/inz092.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/in/inz092.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/in.txt +station = ('klou', 0.0042941849325675912) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/in/inz092.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/in/inz092.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/in/inz092.txt + +[ksz001] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz001.txt +centroid = (0.69439320553995998, -1.7755443920048555) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz001.txt +description = Cheyenne, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz001.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz001.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz001.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz001.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz001.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz001.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz001.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz001.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz001.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz001.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz001.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz001.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz001.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz001.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz001.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('ksyf', 0.00096777492818328698) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz001.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz001.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz001.txt + +[ksz002] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz002.txt +centroid = (0.69438273356444802, -1.7641055040872846) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz002.txt +description = Rawlins, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz002.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz002.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz002.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz002.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz002.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz002.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz002.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz002.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz002.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz002.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz002.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz002.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz002.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz002.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz002.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('kcbk', 0.0062091086795852853) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz002.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz002.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz002.txt + +[ksz003] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz003.txt +centroid = (0.69437400691818807, -1.7533560212242516) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz003.txt +description = Decatur, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz003.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz003.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz003.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz003.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz003.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz003.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz003.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz003.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz003.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz003.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz003.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz003.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz003.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz003.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz003.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('kmck', 0.0074338876941070029) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz003.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz003.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz003.txt + +[ksz004] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz004.txt +centroid = (0.69436877093043203, -1.7436432639369031) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz004.txt +description = Norton, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz004.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz004.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz004.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz004.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz004.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz004.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz004.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz004.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz004.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz004.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz004.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz004.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz004.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz004.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz004.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('khlc', 0.0073514997098546248) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz004.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz004.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz004.txt + +[ksz005] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz005.txt +centroid = (0.69437051625968405, -1.7339305066495547) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz005.txt +description = Phillips, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz005.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz005.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz005.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz005.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz005.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz005.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz005.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz005.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz005.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz005.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz005.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz005.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz005.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz005.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz005.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('khlc', 0.0097981084400297434) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz005.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz005.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz005.txt + +[ksz006] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz006.txt +centroid = (0.69438098823519601, -1.7241322282288585) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz006.txt +description = Smith, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz006.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz006.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz006.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz006.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz006.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz006.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz006.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz006.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz006.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz006.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz006.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz006.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz006.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz006.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz006.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('khde', 0.013716079785673442) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz006.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz006.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz006.txt + +[ksz007] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz007.txt +centroid = (0.69437400691818807, -1.7142344660407987) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz007.txt +description = Jewell, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz007.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz007.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz007.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz007.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz007.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz007.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz007.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz007.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz007.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz007.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz007.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz007.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz007.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz007.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz007.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('kcnk', 0.0086475797580734936) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz007.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz007.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz007.txt + +[ksz008] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz008.txt +centroid = (0.69512624382579769, -1.7043244865479747) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz008.txt +description = Republic, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz008.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz008.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz008.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz008.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz008.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz008.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz008.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz008.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz008.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz008.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz008.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz008.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz008.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz008.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz008.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('kcnk', 0.0048242840149250316) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz008.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz008.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz008.txt + +[ksz009] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz009.txt +centroid = (0.69436528027192801, -1.6944947922007427) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz009.txt +description = Washington, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz009.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz009.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz009.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz009.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz009.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz009.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz009.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz009.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz009.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz009.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz009.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz009.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz009.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz009.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz009.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('kcnk', 0.008587950162893522) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz009.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz009.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz009.txt + +[ksz010] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz010.txt +centroid = (0.69435480829641605, -1.6846424085732348) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz010.txt +description = Marshall, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz010.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz010.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz010.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz010.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz010.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz010.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz010.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz010.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz010.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz010.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz010.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz010.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz010.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz010.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz010.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('kbie', 0.0095099842718746486) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz010.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz010.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz010.txt + +[ksz011] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz011.txt +centroid = (0.69435306296716404, -1.6757621733390875) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz011.txt +description = Nemaha, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz011.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz011.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz011.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz011.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz011.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz011.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz011.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz011.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz011.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz011.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz011.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz011.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz011.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz011.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz011.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('kfnb', 0.007785858713329691) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz011.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz011.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz011.txt + +[ksz012] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz012.txt +centroid = (0.69510529987477365, -1.6679099370343651) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz012.txt +description = Brown, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz012.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz012.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz012.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz012.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz012.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz012.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz012.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz012.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz012.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz012.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz012.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz012.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz012.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz012.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz012.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('kfnb', 0.0044881478128412245) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz012.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz012.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz012.txt + +[ksz013] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz013.txt +centroid = (0.68681149526929652, -1.7753489151286319) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz013.txt +description = Sherman, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz013.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz013.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz013.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz013.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz013.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz013.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz013.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz013.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz013.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz013.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz013.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz013.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz013.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz013.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz013.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('kgld', 0.00037926229205122896) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz013.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz013.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz013.txt + +[ksz014] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz014.txt +centroid = (0.68680276862303669, -1.7637512022491295) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz014.txt +description = Thomas, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz014.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz014.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz014.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz014.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz014.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz014.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz014.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz014.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz014.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz014.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz014.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz014.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz014.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz014.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz014.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('kcbk', 0.0013825473098612183) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz014.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz014.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz014.txt + +[ksz015] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz015.txt +centroid = (0.68679229664752461, -1.7530401166296405) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz015.txt +description = Sheridan, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz015.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz015.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz015.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz015.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz015.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz015.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz015.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz015.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz015.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz015.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz015.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz015.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz015.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz015.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz015.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('kcbk', 0.008320874232953945) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz015.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz015.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz015.txt + +[ksz016] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz016.txt +centroid = (0.68678182467201265, -1.7432924527572522) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz016.txt +description = Graham, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz016.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz016.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz016.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz016.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz016.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz016.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz016.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz016.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz016.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz016.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz016.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz016.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz016.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz016.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz016.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('khlc', 0.00073644997049386357) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz016.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz016.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz016.txt + +[ksz017] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz017.txt +centroid = (0.68678880598902059, -1.7335500248726199) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz017.txt +description = Rooks, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz017.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz017.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz017.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz017.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz017.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz017.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz017.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz017.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz017.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz017.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz017.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz017.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz017.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz017.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz017.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('khlc', 0.0068645842255843316) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz017.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz017.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz017.txt + +[ksz018] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz018.txt +centroid = (0.68679229664752461, -1.7238250502805075) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz018.txt +description = Osborne, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz018.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz018.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz018.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz018.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz018.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz018.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz018.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz018.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz018.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz018.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz018.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz018.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz018.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz018.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz018.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('krsl', 0.0084667915200156464) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz018.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz018.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz018.txt + +[ksz019] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz019.txt +centroid = (0.68754278822588233, -1.7140791317373711) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz019.txt +description = Mitchell, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz019.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz019.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz019.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz019.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz019.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz019.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz019.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz019.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz019.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz019.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz019.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz019.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz019.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz019.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz019.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('kcnk', 0.0080200636509146408) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz019.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz019.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz019.txt + +[ksz020] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz020.txt +centroid = (0.68906297000436934, -1.7043052879262028) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz020.txt +description = Cloud, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz020.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz020.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz020.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz020.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz020.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz020.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz020.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz020.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz020.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz020.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz020.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz020.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz020.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz020.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz020.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('kcnk', 0.0012390713547359138) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz020.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz020.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz020.txt + +[ksz021] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz021.txt +centroid = (0.68678182467201265, -1.6958509130295423) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz021.txt +description = Clay, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz021.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz021.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz021.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz021.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz021.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz021.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz021.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz021.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz021.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz021.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz021.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz021.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz021.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz021.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz021.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('kcnk', 0.0074293343524213171) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz021.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz021.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz021.txt + +[ksz022] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz022.txt +centroid = (0.68585330950995171, -1.6883477425752187) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz022.txt +description = Riley, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz022.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz022.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz022.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz022.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz022.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz022.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz022.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz022.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz022.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz022.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz022.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz022.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz022.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz022.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz022.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('kmhk', 0.0029328912960708596) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz022.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz022.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz022.txt + +[ksz023] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz023.txt +centroid = (0.68729320614284695, -1.6814938346026369) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz023.txt +description = Pottawatomie, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz023.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz023.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz023.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz023.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz023.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz023.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz023.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz023.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz023.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz023.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz023.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz023.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz023.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz023.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz023.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('kmhk', 0.0062929505961079194) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz023.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz023.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz023.txt + +[ksz024] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz024.txt +centroid = (0.68795643125860495, -1.6719154676676922) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz024.txt +description = Jackson, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz024.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz024.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz024.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz024.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz024.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz024.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz024.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz024.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz024.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz024.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz024.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz024.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz024.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz024.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz024.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('ktop', 0.0064873501199854177) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz024.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz024.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz024.txt + +[ksz025] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz025.txt +centroid = (0.6899635598983983, -1.6635239246241034) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz025.txt +description = Atchison, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz025.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz025.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz025.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz025.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz025.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz025.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz025.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz025.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz025.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz025.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz025.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz025.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz025.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz025.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz025.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('kstj', 0.0067177046379040652) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz025.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz025.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz025.txt + +[ksz026] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz026.txt +centroid = (0.6847938946539911, -1.6647543817467592) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz026.txt +description = Jefferson, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz026.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz026.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz026.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz026.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz026.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz026.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz026.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz026.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz026.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz026.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz026.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz026.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz026.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz026.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz026.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('klwc', 0.0044411475896531192) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz026.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz026.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz026.txt + +[ksz027] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz027.txt +centroid = (0.67922280368162524, -1.7761098786825016) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz027.txt +description = Wallace, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz027.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz027.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz027.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz027.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz027.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz027.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz027.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz027.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz027.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz027.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz027.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz027.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz027.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz027.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz027.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('kgld', 0.0079021824229857894) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz027.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz027.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz027.txt + +[ksz028] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz028.txt +centroid = (0.67923502098638922, -1.7653743584534844) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz028.txt +description = Logan, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz028.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz028.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz028.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz028.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz028.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz028.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz028.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz028.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz028.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz028.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz028.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz028.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz028.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz028.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz028.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('kcbk', 0.0090470050904881) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz028.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz028.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz028.txt + +[ksz029] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz029.txt +centroid = (0.67921407703536529, -1.7537574469522101) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz029.txt +description = Gove, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz029.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz029.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz029.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz029.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz029.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz029.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz029.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz029.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz029.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz029.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz029.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz029.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz029.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz029.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz029.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('khlc', 0.011796380859288049) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz029.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz029.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz029.txt + +[ksz030] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz030.txt +centroid = (0.6791826611088293, -1.7431109385150447) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz030.txt +description = Trego, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz030.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz030.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz030.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz030.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz030.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz030.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz030.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz030.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz030.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz030.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz030.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz030.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz030.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz030.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz030.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('khlc', 0.0079134339905391812) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz030.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz030.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz030.txt + +[ksz031] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz031.txt +centroid = (0.67919138775508936, -1.7334138891909643) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz031.txt +description = Ellis, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz031.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz031.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz031.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz031.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz031.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz031.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz031.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz031.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz031.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz031.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz031.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz031.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz031.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz031.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz031.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('khys', 0.0013237567859098259) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz031.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz031.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz031.txt + +[ksz032] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz032.txt +centroid = (0.67919313308434137, -1.7237273118423957) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz032.txt +description = Russell, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz032.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz032.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz032.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz032.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz032.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz032.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz032.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz032.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz032.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz032.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz032.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz032.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz032.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz032.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz032.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('krsl', 0.0011198835477799914) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz032.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz032.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz032.txt + +[ksz033] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz033.txt +centroid = (0.68147078775819392, -1.7140494611400874) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz033.txt +description = Lincoln, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz033.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz033.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz033.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz033.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz033.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz033.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz033.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz033.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz033.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz033.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz033.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz033.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz033.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz033.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz033.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('krsl', 0.0088328166963174484) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz033.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz033.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz033.txt + +[ksz034] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz034.txt +centroid = (0.68299271486593294, -1.7043192505602187) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz034.txt +description = Ottawa, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz034.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz034.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz034.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz034.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz034.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz034.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz034.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz034.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz034.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz034.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz034.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz034.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz034.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz034.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz034.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('ksln', 0.0060958546605381419) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz034.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz034.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz034.txt + +[ksz035] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz035.txt +centroid = (0.67834664839712411, -1.695634492202295) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz035.txt +description = Dickinson, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz035.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz035.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz035.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz035.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz035.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz035.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz035.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz035.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz035.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz035.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz035.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz035.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz035.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz035.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz035.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('kfri', 0.0062211146475158368) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz035.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz035.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz035.txt + +[ksz036] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz036.txt +centroid = (0.68072029617983643, -1.6886514298650657) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz036.txt +description = Geary, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz036.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz036.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz036.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz036.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz036.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz036.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz036.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz036.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz036.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz036.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz036.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz036.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz036.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz036.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz036.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('kfri', 0.00094090063586881295) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz036.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz036.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz036.txt + +[ksz037] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz037.txt +centroid = (0.6752242543653062, -1.6868589767232676) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz037.txt +description = Morris, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz037.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz037.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz037.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz037.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz037.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz037.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz037.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz037.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz037.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz037.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz037.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz037.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz037.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz037.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz037.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('kfri', 0.0066087672307406911) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz037.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz037.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz037.txt + +[ksz038] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz038.txt +centroid = (0.6798633395171072, -1.6790940068811446) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz038.txt +description = Wabaunsee, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz038.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz038.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz038.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz038.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz038.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz038.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz038.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz038.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz038.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz038.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz038.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz038.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz038.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz038.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz038.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('kfoe', 0.0075419551727715839) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz038.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz038.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz038.txt + +[ksz039] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz039.txt +centroid = (0.68140271991736612, -1.6712644598566981) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz039.txt +description = Shawnee, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz039.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz039.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz039.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz039.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz039.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz039.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz039.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz039.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz039.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz039.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz039.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz039.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz039.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz039.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz039.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('ktop', 0.0017248346647155558) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz039.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz039.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz039.txt + +[ksz040] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz040.txt +centroid = (0.67866255299173517, -1.6631661321274445) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz040.txt +description = Douglas, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz040.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz040.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz040.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz040.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz040.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz040.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz040.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz040.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz040.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz040.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz040.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz040.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz040.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz040.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz040.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('klwc', 0.0025254179955124865) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz040.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz040.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz040.txt + +[ksz041] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz041.txt +centroid = (0.67161142281367792, -1.7768498982853471) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz041.txt +description = Greeley, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz041.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz041.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz041.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz041.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz041.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz041.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz041.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz041.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz041.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz041.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz041.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz041.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz041.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz041.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz041.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('klaa', 0.014024026339932872) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz041.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz041.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz041.txt + +[ksz042] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz042.txt +centroid = (0.67163934808170989, -1.768845818335701) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz042.txt +description = Wichita, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz042.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz042.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz042.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz042.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz042.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz042.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz042.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz042.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz042.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz042.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz042.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz042.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz042.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz042.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz042.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('kgck', 0.013123637582503112) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz042.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz042.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz042.txt + +[ksz043] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz043.txt +centroid = (0.6716410934109619, -1.7611576429806659) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz043.txt +description = Scott, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz043.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz043.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz043.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz043.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz043.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz043.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz043.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz043.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz043.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz043.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz043.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz043.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz043.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz043.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz043.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('kgck', 0.010209458266543809) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz043.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz043.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz043.txt + +[ksz044] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz044.txt +centroid = (0.67162713077694591, -1.7534694676256311) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz044.txt +description = Lane, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz044.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz044.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz044.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz044.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz044.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz044.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz044.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz044.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz044.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz044.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz044.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz044.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz044.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz044.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz044.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('kgck', 0.010437075117464738) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz044.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz044.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz044.txt + +[ksz045] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz045.txt +centroid = (0.67159396952115802, -1.7438666660811584) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz045.txt +description = Ness, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz045.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz045.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz045.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz045.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz045.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz045.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz045.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz045.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz045.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz045.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz045.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz045.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz045.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz045.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz045.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('khys', 0.010962046382841319) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz045.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz045.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz045.txt + +[ksz046] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz046.txt +centroid = (0.6723584237335315, -1.7332725175215529) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz046.txt +description = Rush, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz046.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz046.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz046.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz046.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz046.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz046.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz046.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz046.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz046.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz046.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz046.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz046.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz046.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz046.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz046.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('khys', 0.0057313581770060624) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz046.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz046.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz046.txt + +[ksz047] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz047.txt +centroid = (0.67158524287489807, -1.7236260827457801) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz047.txt +description = Barton, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz047.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz047.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz047.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz047.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz047.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz047.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz047.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz047.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz047.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz047.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz047.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz047.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz047.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz047.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz047.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('kgbd', 0.0027090332017451649) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz047.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz047.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz047.txt + +[ksz048] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz048.txt +centroid = (0.67538307932723762, -1.7139971012625275) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz048.txt +description = Ellsworth, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz048.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz048.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz048.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz048.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz048.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz048.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz048.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz048.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz048.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz048.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz048.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz048.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz048.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz048.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz048.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('krsl', 0.0088380781207501712) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz048.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz048.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz048.txt + +[ksz049] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz049.txt +centroid = (0.67690675176422888, -1.7043157599017147) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz049.txt +description = Saline, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz049.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz049.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz049.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz049.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz049.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz049.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz049.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz049.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz049.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz049.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz049.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz049.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz049.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz049.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz049.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('ksln', 9.9833331793525114e-06) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz049.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz049.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz049.txt + +[ksz050] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz050.txt +centroid = (0.66928315359151747, -1.7139325240802035) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz050.txt +description = Rice, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz050.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz050.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz050.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz050.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz050.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz050.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz050.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz050.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz050.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz050.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz050.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz050.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz050.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz050.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz050.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('khut', 0.0067076516860560395) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz050.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz050.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz050.txt + +[ksz051] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz051.txt +centroid = (0.67005982510865492, -1.7042791079874229) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz051.txt +description = McPherson, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz051.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz051.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz051.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz051.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz051.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz051.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz051.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz051.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz051.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz051.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz051.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz051.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz051.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz051.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz051.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('khut', 0.0064148157635926725) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz051.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz051.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz051.txt + +[ksz052] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz052.txt +centroid = (0.66948735711400087, -1.6946605984796823) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz052.txt +description = Marion, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz052.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz052.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz052.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz052.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz052.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz052.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz052.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz052.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz052.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz052.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz052.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz052.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz052.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz052.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz052.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('kewk', 0.0059653466153513617) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz052.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz052.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz052.txt + +[ksz053] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz053.txt +centroid = (0.66849601009886805, -1.6858833376714026) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz053.txt +description = Chase, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz053.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz053.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz053.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz053.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz053.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz053.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz053.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz053.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz053.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz053.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz053.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz053.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz053.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz053.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz053.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('kemp', 0.0054229171482611128) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz053.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz053.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz053.txt + +[ksz054] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz054.txt +centroid = (0.67118905313469535, -1.6781811996823517) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz054.txt +description = Lyon, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz054.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz054.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz054.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz054.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz054.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz054.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz054.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz054.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz054.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz054.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz054.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz054.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz054.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz054.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz054.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('kemp', 0.0022415820936076089) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz054.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz054.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz054.txt + +[ksz055] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz055.txt +centroid = (0.67461164379785621, -1.6707495877273599) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz055.txt +description = Osage, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz055.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz055.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz055.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz055.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz055.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz055.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz055.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz055.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz055.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz055.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz055.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz055.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz055.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz055.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz055.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('kfoe', 0.0050135618240945388) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz055.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz055.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz055.txt + +[ksz056] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz056.txt +centroid = (0.67307924471460523, -1.6630526857260648) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz056.txt +description = Franklin, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz056.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz056.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz056.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz056.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz056.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz056.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz056.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz056.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz056.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz056.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz056.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz056.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz056.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz056.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz056.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('kixd', 0.0070306431974708639) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz056.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz056.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz056.txt + +[ksz057] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz057.txt +centroid = (0.67306179142208533, -1.6552371013356342) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz057.txt +description = Miami, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz057.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz057.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz057.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz057.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz057.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz057.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz057.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz057.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz057.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz057.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz057.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz057.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz057.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz057.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz057.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('kixd', 0.0044596242862258032) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz057.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz057.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz057.txt + +[ksz058] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz058.txt +centroid = (0.66736154608507181, -1.6708769967627555) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz058.txt +description = Coffey, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz058.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz058.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz058.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz058.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz058.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz058.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz058.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz058.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz058.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz058.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz058.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz058.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz058.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz058.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz058.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('kemp', 0.0065991064388828567) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz058.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz058.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz058.txt + +[ksz059] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz059.txt +centroid = (0.66696535634486909, -1.6631818400907126) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz059.txt +description = Anderson, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz059.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz059.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz059.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz059.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz059.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz059.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz059.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz059.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz059.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz059.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz059.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz059.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz059.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz059.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz059.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('kcnu', 0.0099094551170026239) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz059.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz059.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz059.txt + +[ksz060] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz060.txt +centroid = (0.66693044975982918, -1.6553208771397301) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz060.txt +description = Linn, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz060.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz060.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz060.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz060.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz060.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz060.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz060.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz060.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz060.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz060.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz060.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz060.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz060.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz060.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz060.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('kixd', 0.010562630348145129) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz060.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz060.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz060.txt + +[ksz061] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz061.txt +centroid = (0.66320940779457727, -1.776593334885304) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz061.txt +description = Hamilton, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz061.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz061.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz061.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz061.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz061.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz061.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz061.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz061.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz061.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz061.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz061.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz061.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz061.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz061.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz061.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('klaa', 0.012319494326185924) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz061.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz061.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz061.txt + +[ksz062] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz062.txt +centroid = (0.66322860641634918, -1.7683658527914028) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz062.txt +description = Kearny, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz062.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz062.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz062.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz062.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz062.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz062.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz062.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz062.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz062.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz062.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz062.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz062.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz062.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz062.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz062.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('kgck', 0.0084282378010758236) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz062.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz062.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz062.txt + +[ksz063] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz063.txt +centroid = (0.66400004194573081, -1.758190583252276) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz063.txt +description = Finney, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz063.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz063.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz063.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz063.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz063.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz063.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz063.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz063.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz063.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz063.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz063.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz063.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz063.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz063.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz063.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('kgck', 0.0022466769298815649) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz063.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz063.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz063.txt + +[ksz064] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz064.txt +centroid = (0.66475227885334021, -1.7435472708280435) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz064.txt +description = Hodgeman, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz064.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz064.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz064.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz064.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz064.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz064.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz064.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz064.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz064.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz064.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz064.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz064.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz064.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz064.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz064.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('kddc', 0.0056790631649199178) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz064.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz064.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz064.txt + +[ksz065] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz065.txt +centroid = (0.66639114302096292, -1.7320088991431088) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz065.txt +description = Pawnee, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz065.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz065.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz065.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz065.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz065.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz065.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz065.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz065.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz065.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz065.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz065.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz065.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz065.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz065.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz065.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('kgbd', 0.005863874189055515) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz065.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz065.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz065.txt + +[ksz066] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz066.txt +centroid = (0.66376791315521555, -1.7229454043375023) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz066.txt +description = Stafford, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz066.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz066.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz066.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz066.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz066.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz066.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz066.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz066.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz066.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz066.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz066.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz066.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz066.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz066.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz066.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('kptt', 0.0057961093812689225) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz066.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz066.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz066.txt + +[ksz067] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz067.txt +centroid = (0.66240306568015594, -1.7119253954404101) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz067.txt +description = Reno, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz067.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz067.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz067.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz067.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz067.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz067.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz067.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz067.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz067.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz067.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz067.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz067.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz067.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz067.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz067.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('khut', 0.0036122293972816115) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz067.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz067.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz067.txt + +[ksz068] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz068.txt +centroid = (0.66397909799470678, -1.7004289116575235) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz068.txt +description = Harvey, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz068.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz068.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz068.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz068.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz068.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz068.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz068.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz068.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz068.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz068.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz068.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz068.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz068.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz068.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz068.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('kewk', 0.0019836975115939503) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz068.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz068.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz068.txt + +[ksz069] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz069.txt +centroid = (0.65940633535448157, -1.6901611396680407) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz069.txt +description = Butler, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz069.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz069.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz069.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz069.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz069.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz069.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz069.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz069.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz069.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz069.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz069.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz069.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz069.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz069.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz069.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('kaao', 0.005237752740248635) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz069.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz069.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz069.txt + +[ksz070] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz070.txt +centroid = (0.66109232341190816, -1.6795774630839471) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz070.txt +description = Greenwood, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz070.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz070.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz070.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz070.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz070.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz070.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz070.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz070.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz070.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz070.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz070.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz070.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz070.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz070.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz070.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('kemp', 0.0079632295877343703) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz070.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz070.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz070.txt + +[ksz071] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz071.txt +centroid = (0.66124765771533556, -1.6709817165178751) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz071.txt +description = Woodson, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz071.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz071.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz071.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz071.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz071.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz071.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz071.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz071.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz071.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz071.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz071.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz071.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz071.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz071.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz071.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('kcnu', 0.0052253620678883728) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz071.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz071.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz071.txt + +[ksz072] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz072.txt +centroid = (0.66123194975206778, -1.663323211760124) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz072.txt +description = Allen, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz072.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz072.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz072.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz072.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz072.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz072.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz072.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz072.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz072.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz072.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz072.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz072.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz072.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz072.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz072.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('kcnu', 0.0045745706225385468) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz072.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz072.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz072.txt + +[ksz073] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz073.txt +centroid = (0.66069787900095756, -1.6554325782118575) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz073.txt +description = Bourbon, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz073.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz073.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz073.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz073.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz073.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz073.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz073.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz073.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz073.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz073.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz073.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz073.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz073.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz073.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz073.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('kpts', 0.0072616679710104) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz073.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz073.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz073.txt + +[ksz074] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz074.txt +centroid = (0.65559802692663005, -1.7764694165084123) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz074.txt +description = Stanton, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz074.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz074.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz074.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz074.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz074.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz074.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz074.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz074.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz074.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz074.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz074.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz074.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz074.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz074.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz074.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('keha', 0.0099221698670958446) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz074.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz074.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz074.txt + +[ksz075] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz075.txt +centroid = (0.65558406429261395, -1.7681581586104156) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz075.txt +description = Grant, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz075.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz075.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz075.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz075.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz075.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz075.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz075.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz075.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz075.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz075.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz075.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz075.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz075.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz075.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz075.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('klbl', 0.010117784351526089) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz075.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz075.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz075.txt + +[ksz076] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz076.txt +centroid = (0.65558580962186608, -1.7605345604377043) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz076.txt +description = Haskell, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz076.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz076.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz076.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz076.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz076.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz076.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz076.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz076.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz076.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz076.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz076.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz076.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz076.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz076.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz076.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('kgck', 0.0065423015310116196) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz076.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz076.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz076.txt + +[ksz077] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz077.txt +centroid = (0.65865584377612407, -1.7529703034595607) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz077.txt +description = Gray, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz077.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz077.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz077.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz077.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz077.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz077.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz077.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz077.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz077.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz077.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz077.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz077.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz077.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz077.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz077.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('kgck', 0.0049478569824997166) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz077.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz077.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz077.txt + +[ksz078] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz078.txt +centroid = (0.65784426567394672, -1.7433727379028439) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz078.txt +description = Ford, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz078.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz078.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz078.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz078.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz078.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz078.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz078.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz078.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz078.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz078.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz078.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz078.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz078.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz078.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz078.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('kddc', 0.0017012240541063092) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz078.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz078.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz078.txt + +[ksz079] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz079.txt +centroid = (0.66126336567860355, -1.7333213867406085) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz079.txt +description = Edwards, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz079.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz079.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz079.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz079.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz079.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz079.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz079.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz079.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz079.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz079.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz079.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz079.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz079.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz079.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz079.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('kddc', 0.0092685678957425428) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz079.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz079.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz079.txt + +[ksz080] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz080.txt +centroid = (0.65551425112253425, -1.7328676011350901) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz080.txt +description = Kiowa, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz080.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz080.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz080.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz080.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz080.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz080.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz080.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz080.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz080.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz080.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz080.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz080.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz080.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz080.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz080.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('kptt', 0.0078113511408174621) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz080.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz080.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz080.txt + +[ksz081] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz081.txt +centroid = (0.65707806613232111, -1.723331122102193) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz081.txt +description = Pratt, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz081.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz081.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz081.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz081.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz081.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz081.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz081.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz081.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz081.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz081.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz081.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz081.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz081.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz081.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz081.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('kptt', 0.0009223201590985217) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz081.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz081.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz081.txt + +[ksz082] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz082.txt +centroid = (0.65552646842729823, -1.712803296054163) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz082.txt +description = Kingman, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz082.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz082.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz082.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz082.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz082.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz082.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz082.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz082.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz082.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz082.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz082.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz082.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz082.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz082.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz082.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('kp28', 0.0074832416885726536) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz082.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz082.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz082.txt + +[ksz083] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz083.txt +centroid = (0.65772383795555911, -1.7010170876154456) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz083.txt +description = Sedgwick, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz083.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz083.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz083.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz083.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz083.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz083.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz083.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz083.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz083.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz083.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz083.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz083.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz083.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz083.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz083.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('kict', 0.00071837410392849551) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz083.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz083.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz083.txt + +[ksz084] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz084.txt +centroid = (0.64911238342621913, -1.7767329612254636) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz084.txt +description = Morton, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz084.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz084.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz084.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz084.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz084.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz084.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz084.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz084.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz084.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz084.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz084.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz084.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz084.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz084.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz084.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('keha', 0.0035394754875256872) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz084.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz084.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz084.txt + +[ksz085] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz085.txt +centroid = (0.64912983671873903, -1.7682297171097472) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz085.txt +description = Stevens, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz085.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz085.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz085.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz085.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz085.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz085.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz085.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz085.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz085.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz085.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz085.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz085.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz085.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz085.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz085.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('klbl', 0.0054117024848018636) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz085.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz085.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz085.txt + +[ksz086] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz086.txt +centroid = (0.64914554468200703, -1.7601872399165572) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz086.txt +description = Seward, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz086.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz086.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz086.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz086.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz086.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz086.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz086.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz086.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz086.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz086.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz086.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz086.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz086.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz086.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz086.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('klbl', 0.0029720207229183087) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz086.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz086.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz086.txt + +[ksz087] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz087.txt +centroid = (0.64992919751615241, -1.7517206477151328) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz087.txt +description = Meade, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz087.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz087.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz087.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz087.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz087.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz087.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz087.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz087.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz087.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz087.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz087.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz087.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz087.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz087.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz087.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('klbl', 0.0089764515355594179) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz087.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz087.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz087.txt + +[ksz088] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz088.txt +centroid = (0.64988207362634864, -1.7421928953284957) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz088.txt +description = Clark, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz088.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz088.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz088.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz088.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz088.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz088.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz088.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz088.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz088.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz088.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz088.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz088.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz088.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz088.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz088.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('kddc', 0.0094895420237001427) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz088.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz088.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz088.txt + +[ksz089] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz089.txt +centroid = (0.64911063809696701, -1.7326215097105588) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz089.txt +description = Comanche, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz089.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz089.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz089.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz089.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz089.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz089.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz089.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz089.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz089.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz089.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz089.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz089.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz089.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz089.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz089.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('kavk', 0.011122341801471217) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz089.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz089.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz089.txt + +[ksz090] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz090.txt +centroid = (0.64976688189571696, -1.7223746816720999) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz090.txt +description = Barber, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz090.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz090.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz090.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz090.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz090.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz090.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz090.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz090.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz090.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz090.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz090.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz090.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz090.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz090.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz090.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('kp28', 0.0020998156040872989) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz090.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz090.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz090.txt + +[ksz091] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz091.txt +centroid = (0.64911587408472304, -1.7117403905396988) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz091.txt +description = Harper, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz091.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz091.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz091.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz091.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz091.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz091.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz091.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz091.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz091.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz091.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz091.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz091.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz091.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz091.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz091.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('kp28', 0.0067848560253023077) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz091.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz091.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz091.txt + +[ksz092] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz092.txt +centroid = (0.64991348955288442, -1.7012858683202527) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz092.txt +description = Sumner, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz092.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz092.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz092.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz092.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz092.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz092.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz092.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz092.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz092.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz092.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz092.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz092.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz092.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz092.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz092.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('kwld', 0.0062828963208754257) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz092.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz092.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz092.txt + +[ksz093] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz093.txt +centroid = (0.64992047086989235, -1.690133214400009) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz093.txt +description = Cowley, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz093.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz093.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz093.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz093.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz093.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz093.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz093.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz093.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz093.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz093.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz093.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz093.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz093.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz093.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz093.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('kwld', 0.0029914092012007839) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz093.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz093.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz093.txt + +[ksz094] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz094.txt +centroid = (0.65369038205420016, -1.6797764306186747) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz094.txt +description = Elk, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz094.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz094.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz094.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz094.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz094.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz094.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz094.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz094.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz094.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz094.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz094.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz094.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz094.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz094.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz094.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('kidp', 0.0084509901929987509) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz094.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz094.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz094.txt + +[ksz095] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz095.txt +centroid = (0.65553344974430627, -1.6710375670539388) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz095.txt +description = Wilson, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz095.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz095.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz095.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz095.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz095.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz095.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz095.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz095.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz095.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz095.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz095.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz095.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz095.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz095.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz095.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('kcnu', 0.0040545974964372325) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz095.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz095.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz095.txt + +[ksz096] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz096.txt +centroid = (0.65552123243954219, -1.6634174595397315) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz096.txt +description = Neosho, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz096.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz096.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz096.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz096.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz096.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz096.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz096.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz096.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz096.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz096.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz096.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz096.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz096.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz096.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz096.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('kcnu', 0.0030845506435097083) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz096.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz096.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz096.txt + +[ksz097] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz097.txt +centroid = (0.65462587853326915, -1.6554762114431574) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz097.txt +description = Crawford, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz097.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz097.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz097.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz097.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz097.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz097.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz097.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz097.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz097.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz097.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz097.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz097.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz097.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz097.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz097.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('kpts', 0.0019611527096770592) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz097.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz097.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz097.txt + +[ksz098] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz098.txt +centroid = (0.64839156244514551, -1.6797973745696984) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz098.txt +description = Chautauqua, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz098.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz098.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz098.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz098.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz098.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz098.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz098.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz098.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz098.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz098.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz098.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz098.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz098.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz098.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz098.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('kidp', 0.0066120169709382344) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz098.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz098.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz098.txt + +[ksz099] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz099.txt +centroid = (0.64913158204799104, -1.671028840407679) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz099.txt +description = Montgomery, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz099.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz099.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz099.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz099.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz099.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz099.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz099.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz099.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz099.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz099.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz099.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz099.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz099.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz099.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz099.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('kidp', 0.00083202218473531491) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz099.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz099.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz099.txt + +[ksz100] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz100.txt +centroid = (0.64911063809696701, -1.6632568892485482) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz100.txt +description = Labette, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz100.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz100.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz100.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz100.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz100.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz100.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz100.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz100.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz100.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz100.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz100.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz100.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz100.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz100.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz100.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('kppf', 0.0037482597161683584) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz100.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz100.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz100.txt + +[ksz101] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz101.txt +centroid = (0.64872666566152837, -1.6553784730050458) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz101.txt +description = Cherokee, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz101.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz101.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz101.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz101.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz101.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz101.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz101.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz101.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz101.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz101.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz101.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz101.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz101.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz101.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz101.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('kpts', 0.0051578627637441834) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz101.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz101.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz101.txt + +[ksz102] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz102.txt +centroid = (0.69444032942976375, -1.6606284233950448) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz102.txt +description = Doniphan, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz102.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz102.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz102.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz102.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz102.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz102.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz102.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz102.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz102.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz102.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz102.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz102.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz102.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz102.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz102.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('kstj', 0.0031129743544304755) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz102.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz102.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz102.txt + +[ksz103] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz103.txt +centroid = (0.68415684947701327, -1.6587242691811188) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz103.txt +description = Leavenworth, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz103.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz103.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz103.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz103.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz103.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz103.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz103.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz103.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz103.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz103.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz103.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz103.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz103.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz103.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz103.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('klwc', 0.0040027395981590838) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz103.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz103.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz103.txt + +[ksz104] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz104.txt +centroid = (0.68267681027132199, -1.6539542843354185) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz104.txt +description = Wyandotte, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz104.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz104.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz104.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz104.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz104.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz104.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz104.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz104.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz104.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz104.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz104.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz104.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz104.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz104.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz104.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('kmkc', 0.0022292629844459758) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz104.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz104.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz104.txt + +[ksz105] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ks/ksz105.txt +centroid = (0.67865033568697108, -1.6549613393138192) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ks/ksz105.txt +description = Johnson, KS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ks/ksz105.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ks/ksz105.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ks/ksz105.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ks/ksz105.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ks/ksz105.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ks/ksz105.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ks/ksz105.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ks/ksz105.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ks.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ks/ksz105.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ks/ksz105.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ks/ksz105.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ks/ksz105.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ks/ksz105.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ks/ksz105.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ks/ksz105.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ks.txt +station = ('kixd', 0.0014356517622325616) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ks/ksz105.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ks/ksz105.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ks/ksz105.txt + +[kyz001] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz001.txt +centroid = (0.63798940010325922, -1.5566120359639386) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz001.txt +description = Fulton, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz001.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz001.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz001.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz001.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz001.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz001.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz001.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz001.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz001.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz001.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz001.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz001.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz001.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz001.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz001.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('kcir', 0.0089185091644479846) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz001.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz001.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz001.txt + +[kyz002] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz002.txt +centroid = (0.64015360837573221, -1.5529259005837266) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz002.txt +description = Hickman, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz002.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz002.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz002.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz002.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz002.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz002.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz002.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz002.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz002.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz002.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz002.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz002.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz002.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz002.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz002.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('kpah', 0.0071192644865004148) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz002.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz002.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz002.txt + +[kyz003] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz003.txt +centroid = (0.64320967989597433, -1.5528351434626229) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz003.txt +description = Carlisle, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz003.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz003.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz003.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz003.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz003.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz003.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz003.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz003.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz003.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz003.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz003.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz003.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz003.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz003.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz003.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('kpah', 0.0044623204820285695) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz003.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz003.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz003.txt + +[kyz004] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz004.txt +centroid = (0.64679109552106662, -1.5533290716409374) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz004.txt +description = Ballard, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz004.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz004.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz004.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz004.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz004.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz004.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz004.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz004.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz004.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz004.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz004.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz004.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz004.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz004.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz004.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('kpah', 0.0032422436859845262) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz004.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz004.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz004.txt + +[kyz005] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz005.txt +centroid = (0.64671255570472685, -1.5483287033339737) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz005.txt +description = McCracken, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz005.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz005.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz005.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz005.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz005.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz005.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz005.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz005.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz005.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz005.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz005.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz005.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz005.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz005.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz005.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('kpah', 0.00075479280177901146) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz005.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz005.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz005.txt + +[kyz006] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz006.txt +centroid = (0.6409372612098776, -1.5472553258439972) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz006.txt +description = Graves, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz006.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz006.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz006.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz006.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz006.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz006.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz006.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz006.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz006.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz006.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz006.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz006.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz006.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz006.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz006.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('kcey', 0.0042211191065494522) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz006.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz006.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz006.txt + +[kyz007] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz007.txt +centroid = (0.64943177867933399, -1.5420612259900619) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz007.txt +description = Livingston, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz007.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz007.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz007.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz007.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz007.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz007.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz007.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz007.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz007.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz007.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz007.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz007.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz007.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz007.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz007.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('kpah', 0.0063879765824036358) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz007.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz007.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz007.txt + +[kyz008] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz008.txt +centroid = (0.64373676933007662, -1.5416371109818274) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz008.txt +description = Marshall, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz008.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz008.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz008.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz008.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz008.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz008.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz008.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz008.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz008.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz008.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz008.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz008.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz008.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz008.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz008.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('kcey', 0.0039226173582241654) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz008.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz008.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz008.txt + +[kyz009] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz009.txt +centroid = (0.63915877070209537, -1.5406422733081906) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz009.txt +description = Calloway, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz009.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz009.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz009.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz009.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz009.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz009.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz009.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz009.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz009.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz009.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz009.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz009.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz009.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz009.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz009.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('kcey', 0.0014033527863983484) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz009.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz009.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz009.txt + +[kyz010] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz010.txt +centroid = (0.65192759950968593, -1.5375862017879485) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz010.txt +description = Crittenden, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz010.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz010.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz010.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz010.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz010.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz010.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz010.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz010.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz010.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz010.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz010.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz010.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz010.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz010.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz010.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('kehr', 0.0099165951101306878) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz010.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz010.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz010.txt + +[kyz011] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz011.txt +centroid = (0.6461051811250329, -1.5373418556926695) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz011.txt +description = Lyon, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz011.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz011.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz011.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz011.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz011.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz011.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz011.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz011.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz011.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz011.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz011.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz011.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz011.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz011.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz011.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('kcey', 0.0073641100306214733) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz011.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz011.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz011.txt + +[kyz012] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz012.txt +centroid = (0.64239286580604082, -1.5336801549219852) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz012.txt +description = Trigg, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz012.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz012.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz012.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz012.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz012.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz012.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz012.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz012.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz012.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz012.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz012.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz012.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz012.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz012.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz012.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('khop', 0.0057640844136927502) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz012.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz012.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz012.txt + +[kyz013] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz013.txt +centroid = (0.64830778664104971, -1.5335841618131256) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz013.txt +description = Caldwell, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz013.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz013.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz013.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz013.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz013.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz013.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz013.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz013.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz013.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz013.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz013.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz013.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz013.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz013.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz013.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('k2i0', 0.0074894343466253175) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz013.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz013.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz013.txt + +[kyz014] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz014.txt +centroid = (0.65726307103303261, -1.5349350466541691) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz014.txt +description = Union, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz014.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz014.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz014.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz014.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz014.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz014.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz014.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz014.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz014.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz014.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz014.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz014.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz014.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz014.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz014.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('kehr', 0.0045501678315669584) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz014.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz014.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz014.txt + +[kyz015] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz015.txt +centroid = (0.65481786475098858, -1.5303605386846919) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz015.txt +description = Webster, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz015.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz015.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz015.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz015.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz015.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz015.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz015.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz015.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz015.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz015.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz015.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz015.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz015.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz015.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz015.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('k2i0', 0.0048608773363226698) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz015.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz015.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz015.txt + +[kyz016] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz016.txt +centroid = (0.65116139996806044, -1.5278769351591039) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz016.txt +description = Hopkins, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz016.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz016.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz016.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz016.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz016.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz016.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz016.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz016.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz016.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz016.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz016.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz016.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz016.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz016.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz016.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('k2i0', 0.002144126550309784) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz016.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz016.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz016.txt + +[kyz017] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz017.txt +centroid = (0.64392351956004001, -1.5269955438868468) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz017.txt +description = Christian, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz017.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz017.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz017.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz017.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz017.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz017.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz017.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz017.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz017.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz017.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz017.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz017.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz017.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz017.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz017.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('khop', 0.0039717283031913426) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz017.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz017.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz017.txt + +[kyz018] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz018.txt +centroid = (0.6596663894130288, -1.5284354405197422) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz018.txt +description = Henderson, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz018.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz018.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz018.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz018.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz018.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz018.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz018.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz018.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz018.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz018.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz018.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz018.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz018.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz018.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz018.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('kehr', 0.0015645669710935292) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz018.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz018.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz018.txt + +[kyz019] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz019.txt +centroid = (0.65854414270399642, -1.5199601216720577) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz019.txt +description = Daviess, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz019.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz019.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz019.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz019.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz019.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz019.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz019.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz019.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz019.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz019.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz019.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz019.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz019.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz019.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz019.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('kowb', 0.0011047885384543284) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz019.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz019.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz019.txt + +[kyz020] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz020.txt +centroid = (0.65500636031020387, -1.5230371371433238) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz020.txt +description = McLean, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz020.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz020.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz020.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz020.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz020.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz020.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz020.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz020.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz020.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz020.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz020.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz020.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz020.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz020.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz020.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('k2i0', 0.0035517292937884259) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz020.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz020.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz020.txt + +[kyz021] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz021.txt +centroid = (0.64953649843445371, -1.5209165621021505) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz021.txt +description = Muhlenberg, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz021.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz021.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz021.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz021.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz021.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz021.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz021.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz021.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz021.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz021.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz021.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz021.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz021.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz021.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz021.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('k2i0', 0.0043173059574086667) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz021.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz021.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz021.txt + +[kyz022] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz022.txt +centroid = (0.64290250194762322, -1.5215623339253888) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz022.txt +description = Todd, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz022.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz022.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz022.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz022.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz022.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz022.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz022.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz022.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz022.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz022.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz022.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz022.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz022.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz022.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz022.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('kckv', 0.0050640957539723423) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz022.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz022.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz022.txt + +[kyz023] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz023.txt +centroid = (0.66045876889343424, -1.5145618182956393) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz023.txt +description = Hancock, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz023.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz023.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz023.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz023.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz023.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz023.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz023.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz023.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz023.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz023.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz023.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz023.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz023.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz023.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz023.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('kowb', 0.0056458183762210928) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz023.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz023.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz023.txt + +[kyz024] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz024.txt +centroid = (0.65926670901432216, -1.508475855193935) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz024.txt +description = Breckinridge, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz024.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz024.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz024.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz024.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz024.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz024.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz024.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz024.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz024.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz024.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz024.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz024.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz024.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz024.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz024.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('kftk', 0.0067500181068062097) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz024.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz024.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz024.txt + +[kyz025] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz025.txt +centroid = (0.66269279033598694, -1.5047687758626991) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz025.txt +description = Meade, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz025.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz025.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz025.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz025.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz025.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz025.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz025.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz025.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz025.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz025.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz025.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz025.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz025.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz025.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz025.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('kftk', 0.0036519496874719299) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz025.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz025.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz025.txt + +[kyz026] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz026.txt +centroid = (0.65411973305019078, -1.5158010020645554) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz026.txt +description = Ohio, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz026.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz026.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz026.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz026.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz026.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz026.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz026.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz026.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz026.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz026.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz026.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz026.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz026.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz026.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz026.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('kowb', 0.0063366697632855282) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz026.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz026.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz026.txt + +[kyz027] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz027.txt +centroid = (0.65381430043109179, -1.5069853440127321) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz027.txt +description = Grayson, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz027.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz027.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz027.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz027.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz027.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz027.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz027.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz027.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz027.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz027.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz027.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz027.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz027.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz027.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz027.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('kbwg', 0.0086833582127506508) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz027.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz027.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz027.txt + +[kyz028] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz028.txt +centroid = (0.65795247608757035, -1.5003461115381453) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz028.txt +description = Hardin, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz028.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz028.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz028.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz028.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz028.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz028.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz028.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz028.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz028.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz028.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz028.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz028.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz028.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz028.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz028.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('kftk', 0.0035275807548872263) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz028.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz028.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz028.txt + +[kyz029] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz029.txt +centroid = (0.66270151698224689, -1.4956756104598086) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz029.txt +description = Bullitt, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz029.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz029.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz029.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz029.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz029.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz029.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz029.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz029.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz029.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz029.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz029.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz029.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz029.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz029.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz029.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('ksdf', 0.0037587201287736459) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz029.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz029.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz029.txt + +[kyz030] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz030.txt +centroid = (0.66649237211757861, -1.4950403106120826) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz030.txt +description = Jefferson, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz030.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz030.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz030.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz030.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz030.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz030.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz030.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz030.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz030.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz030.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz030.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz030.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz030.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz030.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz030.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('klou', 0.0008111547267788447) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz030.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz030.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz030.txt + +[kyz031] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz031.txt +centroid = (0.67019770611956264, -1.4913576658903747) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz031.txt +description = Oldham, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz031.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz031.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz031.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz031.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz031.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz031.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz031.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz031.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz031.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz031.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz031.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz031.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz031.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz031.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz031.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('klou', 0.0041636835058928333) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz031.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz031.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz031.txt + +[kyz032] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz032.txt +centroid = (0.67392398407257048, -1.4894186050914091) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz032.txt +description = Trimble, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz032.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz032.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz032.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz032.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz032.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz032.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz032.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz032.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz032.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz032.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz032.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz032.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz032.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz032.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz032.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('klou', 0.0080112341962133553) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz032.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz032.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz032.txt + +[kyz033] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz033.txt +centroid = (0.67105117212378784, -1.4856050606758013) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz033.txt +description = Henry, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz033.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz033.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz033.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz033.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz033.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz033.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz033.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz033.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz033.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz033.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz033.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz033.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz033.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz033.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz033.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('kfft', 0.0055125396291111376) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz033.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz033.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz033.txt + +[kyz034] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz034.txt +centroid = (0.66698630029589301, -1.4869297655780651) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz034.txt +description = Shelby, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz034.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz034.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz034.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz034.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz034.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz034.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz034.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz034.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz034.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz034.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz034.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz034.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz034.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz034.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz034.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('kfft', 0.0040822343699515231) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz034.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz034.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz034.txt + +[kyz035] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz035.txt +centroid = (0.66739819799936373, -1.481383109215227) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz035.txt +description = Franklin, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz035.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz035.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz035.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz035.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz035.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz035.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz035.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz035.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz035.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz035.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz035.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz035.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz035.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz035.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz035.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('kfft', 0.0010231434273781279) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz035.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz035.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz035.txt + +[kyz036] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz036.txt +centroid = (0.66831275052740868, -1.4762675491776318) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz036.txt +description = Scott, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz036.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz036.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz036.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz036.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz036.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz036.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz036.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz036.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz036.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz036.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz036.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz036.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz036.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz036.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz036.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('klex', 0.0045112717636591427) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz036.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz036.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz036.txt + +[kyz037] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz037.txt +centroid = (0.67093598039315616, -1.4718623381455982) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz037.txt +description = Harrison, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz037.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz037.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz037.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz037.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz037.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz037.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz037.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz037.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz037.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz037.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz037.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz037.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz037.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz037.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz037.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('klex', 0.0080232120205349228) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz037.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz037.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz037.txt + +[kyz038] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz038.txt +centroid = (0.66379234776474338, -1.4892527988124695) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz038.txt +description = Spencer, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz038.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz038.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz038.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz038.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz038.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz038.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz038.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz038.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz038.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz038.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz038.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz038.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz038.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz038.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz038.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('klou', 0.0058237147243713396) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz038.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz038.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz038.txt + +[kyz039] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz039.txt +centroid = (0.66329492892792496, -1.4833710392332486) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz039.txt +description = Anderson, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz039.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz039.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz039.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz039.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz039.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz039.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz039.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz039.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz039.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz039.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz039.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz039.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz039.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz039.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz039.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('kfft', 0.0033698056086598231) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz039.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz039.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz039.txt + +[kyz040] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz040.txt +centroid = (0.66396339003143878, -1.4790530946638145) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz040.txt +description = Woodford, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz040.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz040.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz040.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz040.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz040.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz040.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz040.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz040.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz040.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz040.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz040.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz040.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz040.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz040.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz040.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('klex', 0.0019787902157400563) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz040.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz040.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz040.txt + +[kyz041] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz041.txt +centroid = (0.66396339003143878, -1.4740841422833868) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz041.txt +description = Fayette, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz041.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz041.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz041.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz041.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz041.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz041.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz041.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz041.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz041.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz041.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz041.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz041.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz041.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz041.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz041.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('klex', 0.0019472744036377696) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz041.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz041.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz041.txt + +[kyz042] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz042.txt +centroid = (0.66683445665096952, -1.4698656814813165) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz042.txt +description = Bourbon, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz042.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz042.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz042.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz042.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz042.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz042.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz042.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz042.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz042.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz042.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz042.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz042.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz042.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz042.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz042.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('kiob', 0.0041385684033332683) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz042.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz042.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz042.txt + +[kyz043] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz043.txt +centroid = (0.6690824407275382, -1.4663436070507918) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz043.txt +description = Nicholas, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz043.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz043.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz043.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz043.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz043.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz043.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz043.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz043.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz043.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz043.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz043.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz043.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz043.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz043.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz043.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('kiob', 0.00487406339188271) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz043.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz043.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz043.txt + +[kyz044] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz044.txt +centroid = (0.66968457931947623, -1.4607829880539382) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz044.txt +description = Fleming, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz044.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz044.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz044.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz044.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz044.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz044.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz044.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz044.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz044.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz044.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz044.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz044.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz044.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz044.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz044.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('kiob', 0.0067208707154819648) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz044.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz044.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz044.txt + +[kyz045] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz045.txt +centroid = (0.65982346904570832, -1.4916665891679777) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz045.txt +description = Nelson, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz045.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz045.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz045.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz045.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz045.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz045.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz045.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz045.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz045.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz045.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz045.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz045.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz045.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz045.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz045.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('ksdf', 0.0075550556989388961) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz045.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz045.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz045.txt + +[kyz046] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz046.txt +centroid = (0.65892113382242723, -1.4865789543984143) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz046.txt +description = Washington, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz046.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz046.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz046.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz046.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz046.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz046.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz046.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz046.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz046.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz046.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz046.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz046.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz046.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz046.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz046.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('kdvk', 0.0063577089290985482) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz046.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz046.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz046.txt + +[kyz047] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz047.txt +centroid = (0.65992818880082804, -1.4813377306546751) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz047.txt +description = Mercer, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz047.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz047.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz047.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz047.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz047.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz047.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz047.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz047.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz047.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz047.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz047.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz047.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz047.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz047.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz047.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('kdvk', 0.0042834014006895311) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz047.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz047.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz047.txt + +[kyz048] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz048.txt +centroid = (0.66099109431529246, -1.4762151893000719) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz048.txt +description = Jessamine, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz048.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz048.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz048.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz048.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz048.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz048.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz048.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz048.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz048.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz048.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz048.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz048.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz048.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz048.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz048.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('klex', 0.0028280403716998662) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz048.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz048.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz048.txt + +[kyz049] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz049.txt +centroid = (0.66271722494551488, -1.4686509323219283) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz049.txt +description = Clark, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz049.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz049.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz049.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz049.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz049.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz049.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz049.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz049.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz049.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz049.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz049.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz049.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz049.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz049.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz049.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('kiob', 0.0027216407841401781) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz049.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz049.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz049.txt + +[kyz050] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz050.txt +centroid = (0.66381154638651529, -1.4645616258845058) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz050.txt +description = Montgomery, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz050.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz050.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz050.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz050.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz050.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz050.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz050.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz050.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz050.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz050.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz050.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz050.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz050.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz050.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz050.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('kiob', 0.0010448890950825486) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz050.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz050.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz050.txt + +[kyz051] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz051.txt +centroid = (0.66575409784398498, -1.4615875848391076) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz051.txt +description = Bath, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz051.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz051.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz051.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz051.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz051.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz051.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz051.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz051.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz051.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz051.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz051.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz051.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz051.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz051.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz051.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('kiob', 0.003633348050443273) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz051.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz051.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz051.txt + +[kyz052] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz052.txt +centroid = (0.66665119707951015, -1.4559728606354416) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz052.txt +description = Rowan, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz052.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz052.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz052.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz052.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz052.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz052.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz052.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz052.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz052.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz052.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz052.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz052.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz052.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz052.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz052.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('kiob', 0.0080847212627076347) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz052.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz052.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz052.txt + +[kyz053] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz053.txt +centroid = (0.65529608496603498, -1.4957122623741004) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz053.txt +description = Larue, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz053.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz053.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz053.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz053.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz053.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz053.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz053.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz053.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz053.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz053.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz053.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz053.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz053.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz053.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz053.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('kftk', 0.0072107342409762432) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz053.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz053.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz053.txt + +[kyz054] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz054.txt +centroid = (0.65541476735517068, -1.4882352718585568) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz054.txt +description = Marion, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz054.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz054.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz054.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz054.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz054.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz054.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz054.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz054.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz054.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz054.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz054.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz054.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz054.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz054.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz054.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('kdvk', 0.0069282697346459273) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz054.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz054.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz054.txt + +[kyz055] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz055.txt +centroid = (0.65666965908735453, -1.4812033403022715) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz055.txt +description = Boyle, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz055.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz055.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz055.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz055.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz055.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz055.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz055.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz055.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz055.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz055.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz055.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz055.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz055.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz055.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz055.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('kdvk', 0.0015454571827347257) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz055.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz055.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz055.txt + +[kyz056] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz056.txt +centroid = (0.65693494913365769, -1.4754594617339583) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz056.txt +description = Garrard, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz056.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz056.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz056.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz056.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz056.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz056.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz056.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz056.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz056.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz056.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz056.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz056.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz056.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz056.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz056.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('ki39', 0.0028742497726471933) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz056.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz056.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz056.txt + +[kyz057] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz057.txt +centroid = (0.65834168451076502, -1.4709285869957811) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz057.txt +description = Madison, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz057.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz057.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz057.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz057.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz057.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz057.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz057.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz057.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz057.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz057.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz057.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz057.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz057.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz057.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz057.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('ki39', 0.001730428055734691) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz057.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz057.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz057.txt + +[kyz058] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz058.txt +centroid = (0.65785648297871069, -1.4654534891322748) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz058.txt +description = Estill, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz058.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz058.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz058.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz058.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz058.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz058.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz058.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz058.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz058.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz058.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz058.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz058.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz058.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz058.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz058.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('ki39', 0.0051687959276941805) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz058.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz058.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz058.txt + +[kyz059] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz059.txt +centroid = (0.6602789999804789, -1.4630030468624746) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz059.txt +description = Powell, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz059.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz059.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz059.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz059.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz059.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz059.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz059.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz059.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz059.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz059.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz059.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz059.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz059.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz059.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz059.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('kiob', 0.0045154457977800841) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz059.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz059.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz059.txt + +[kyz060] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz060.txt +centroid = (0.66220235281617656, -1.4590760560454876) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz060.txt +description = Menifee, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz060.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz060.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz060.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz060.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz060.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz060.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz060.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz060.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz060.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz060.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz060.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz060.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz060.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz060.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz060.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('kiob', 0.0056567190629000135) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz060.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz060.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz060.txt + +[kyz061] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz061.txt +centroid = (0.64939163610653816, -1.5128793208967168) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz061.txt +description = Butler, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz061.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz061.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz061.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz061.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz061.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz061.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz061.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz061.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz061.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz061.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz061.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz061.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz061.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz061.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz061.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('kbwg', 0.0055909976553486472) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz061.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz061.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz061.txt + +[kyz062] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz062.txt +centroid = (0.6494143253868141, -1.5051457669811299) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz062.txt +description = Edmonson, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz062.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz062.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz062.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz062.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz062.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz062.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz062.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz062.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz062.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz062.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz062.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz062.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz062.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz062.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz062.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('kbwg', 0.0048987458640369639) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz062.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz062.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz062.txt + +[kyz063] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz063.txt +centroid = (0.65100606566463293, -1.4989707920875739) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz063.txt +description = Hart, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz063.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz063.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz063.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz063.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz063.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz063.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz063.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz063.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz063.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz063.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz063.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz063.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz063.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz063.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz063.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('kglw', 0.004778656763855884) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz063.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz063.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz063.txt + +[kyz064] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz064.txt +centroid = (0.65037774713391494, -1.4931832802879608) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz064.txt +description = Green, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz064.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz064.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz064.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz064.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz064.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz064.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz064.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz064.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz064.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz064.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz064.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz064.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz064.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz064.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz064.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('kglw', 0.0068900889054728676) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz064.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz064.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz064.txt + +[kyz065] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz065.txt +centroid = (0.65216670961720913, -1.4892527988124695) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz065.txt +description = Taylor, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz065.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz065.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz065.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz065.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz065.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz065.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz065.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz065.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz065.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz065.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz065.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz065.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz065.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz065.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz065.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('kdvk', 0.0085800215511242593) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz065.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz065.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz065.txt + +[kyz066] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz066.txt +centroid = (0.65139701941707961, -1.4822784631215) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz066.txt +description = Casey, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz066.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz066.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz066.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz066.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz066.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz066.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz066.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz066.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz066.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz066.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz066.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz066.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz066.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz066.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz066.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('kdvk', 0.0050040190410965925) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz066.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz066.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz066.txt + +[kyz067] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz067.txt +centroid = (0.65371656199298012, -1.4776079620431635) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz067.txt +description = Lincoln, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz067.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz067.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz067.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz067.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz067.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz067.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz067.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz067.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz067.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz067.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz067.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz067.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz067.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz067.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz067.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('kdvk', 0.0026521379515966432) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz067.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz067.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz067.txt + +[kyz068] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz068.txt +centroid = (0.65214576566618521, -1.471591812111539) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz068.txt +description = Rockcastle, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz068.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz068.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz068.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz068.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz068.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz068.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz068.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz068.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz068.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz068.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz068.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz068.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz068.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz068.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz068.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('ki39', 0.0046256958587727014) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz068.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz068.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz068.txt + +[kyz069] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz069.txt +centroid = (0.6530987154377742, -1.4661778007718524) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz069.txt +description = Jackson, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz069.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz069.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz069.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz069.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz069.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz069.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz069.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz069.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz069.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz069.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz069.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz069.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz069.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz069.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz069.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('ki39', 0.0057963362916406648) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz069.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz069.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz069.txt + +[kyz070] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz070.txt +centroid = (0.64332312629735378, -1.5163211101816496) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz070.txt +description = Logan, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz070.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz070.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz070.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz070.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz070.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz070.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz070.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz070.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz070.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz070.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz070.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz070.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz070.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz070.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz070.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('kbwg', 0.0067137257951165579) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz070.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz070.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz070.txt + +[kyz071] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz071.txt +centroid = (0.64566012216577429, -1.5083816074143275) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz071.txt +description = Warren, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz071.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz071.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz071.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz071.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz071.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz071.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz071.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz071.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz071.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz071.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz071.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz071.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz071.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz071.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz071.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('kbwg', 0.0004807719270451434) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz071.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz071.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz071.txt + +[kyz072] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz072.txt +centroid = (0.64126712843850464, -1.5111462089494865) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz072.txt +description = Simpson, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz072.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz072.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz072.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz072.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz072.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz072.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz072.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz072.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz072.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz072.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz072.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz072.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz072.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz072.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz072.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('kbwg', 0.0045541116364217742) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz072.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz072.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz072.txt + +[kyz073] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz073.txt +centroid = (0.64143118938819199, -1.5043062636109206) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz073.txt +description = Allen, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz073.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz073.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz073.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz073.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz073.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz073.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz073.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz073.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz073.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz073.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz073.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz073.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz073.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz073.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz073.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('kbwg', 0.0049104853494639517) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz073.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz073.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz073.txt + +[kyz074] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz074.txt +centroid = (0.64517142997521593, -1.4998242580917991) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz074.txt +description = Barren, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz074.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz074.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz074.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz074.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz074.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz074.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz074.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz074.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz074.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz074.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz074.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz074.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz074.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz074.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz074.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('kglw', 0.00118633928045962) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz074.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz074.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz074.txt + +[kyz075] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz075.txt +centroid = (0.6407487656506623, -1.4960334029564675) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz075.txt +description = Monroe, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz075.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz075.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz075.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz075.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz075.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz075.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz075.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz075.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz075.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz075.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz075.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz075.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz075.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz075.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz075.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('kglw', 0.0064852309623354039) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz075.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz075.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz075.txt + +[kyz076] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz076.txt +centroid = (0.64560601695896247, -1.4945097305194763) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz076.txt +description = Metcalfe, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz076.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz076.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz076.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz076.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz076.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz076.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz076.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz076.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz076.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz076.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz076.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz076.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz076.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz076.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz076.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('kglw', 0.0045793563162043263) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz076.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz076.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz076.txt + +[kyz077] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz077.txt +centroid = (0.6475887109892281, -1.4884272580762763) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz077.txt +description = Adair, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz077.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz077.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz077.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz077.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz077.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz077.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz077.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz077.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz077.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz077.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz077.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz077.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz077.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz077.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz077.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('kekq', 0.0073408117711499009) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz077.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz077.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz077.txt + +[kyz078] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz078.txt +centroid = (0.64561648893447454, -1.4845526271368488) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz078.txt +description = Russell, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz078.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz078.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz078.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz078.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz078.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz078.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz078.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz078.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz078.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz078.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz078.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz078.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz078.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz078.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz078.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('kekq', 0.0036880641881496001) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz078.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz078.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz078.txt + +[kyz079] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz079.txt +centroid = (0.64758522033072408, -1.4761488667884961) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz079.txt +description = Pulaski, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz079.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz079.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz079.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz079.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz079.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz079.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz079.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz079.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz079.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz079.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz079.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz079.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz079.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz079.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz079.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('ksme', 0.0010158458032033296) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz079.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz079.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz079.txt + +[kyz080] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz080.txt +centroid = (0.64770390271985967, -1.4681325695340861) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz080.txt +description = Laurel, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz080.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz080.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz080.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz080.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz080.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz080.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz080.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz080.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz080.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz080.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz080.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz080.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz080.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz080.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz080.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('kloz', 0.00085722652239782508) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz080.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz080.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz080.txt + +[kyz081] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz081.txt +centroid = (0.642047290614146, -1.4903087230099261) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz081.txt +description = Cumberland, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz081.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz081.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz081.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz081.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz081.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz081.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz081.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz081.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz081.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz081.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz081.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz081.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz081.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz081.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz081.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('kglw', 0.0089728068071294447) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz081.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz081.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz081.txt + +[kyz082] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz082.txt +centroid = (0.64101580102621736, -1.4859052573071443) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz082.txt +description = Clinton, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz082.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz082.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz082.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz082.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz082.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz082.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz082.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz082.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz082.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz082.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz082.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz082.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz082.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz082.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz082.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('kekq', 0.00450424024040236) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz082.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz082.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz082.txt + +[kyz083] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz083.txt +centroid = (0.64230385401418921, -1.4805366245280098) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz083.txt +description = Wayne, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz083.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz083.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz083.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz083.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz083.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz083.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz083.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz083.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz083.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz083.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz083.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz083.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz083.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz083.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz083.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('kekq', 0.001017999967372181) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz083.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz083.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz083.txt + +[kyz084] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz084.txt +centroid = (0.64118335263440884, -1.4745257105841414) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz084.txt +description = McCreary, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz084.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz084.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz084.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz084.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz084.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz084.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz084.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz084.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz084.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz084.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz084.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz084.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz084.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz084.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz084.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('kekq', 0.0055934383158556238) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz084.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz084.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz084.txt + +[kyz085] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz085.txt +centroid = (0.64155161710657971, -1.4686107897491327) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz085.txt +description = Whitley, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz085.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz085.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz085.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz085.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz085.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz085.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz085.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz085.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz085.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz085.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz085.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz085.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz085.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz085.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz085.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('kloz', 0.0057794803374463981) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz085.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz085.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz085.txt + +[kyz086] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz086.txt +centroid = (0.64386417836547216, -1.4635266456380731) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz086.txt +description = Knox, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz086.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz086.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz086.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz086.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz086.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz086.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz086.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz086.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz086.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz086.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz086.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz086.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz086.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz086.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz086.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('kloz', 0.0044835333357741251) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz086.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz086.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz086.txt + +[kyz087] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz087.txt +centroid = (0.64107165156228119, -1.4603867983137355) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz087.txt +description = Bell, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz087.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz087.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz087.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz087.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz087.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz087.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz087.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz087.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz087.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz087.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz087.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz087.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz087.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz087.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz087.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('k1a6', 0.0022760410590182373) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz087.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz087.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz087.txt + +[kyz088] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz088.txt +centroid = (0.64327600240755001, -1.4524263515953892) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz088.txt +description = Harlan, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz088.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz088.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz088.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz088.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz088.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz088.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz088.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz088.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz088.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz088.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz088.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz088.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz088.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz088.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz088.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('ki35', 0.0019635060521837589) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz088.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz088.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz088.txt + +[kyz089] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz089.txt +centroid = (0.6748821698319154, -1.4856853458213932) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz089.txt +description = Carroll, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz089.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz089.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz089.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz089.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz089.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz089.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz089.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz089.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz089.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz089.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz089.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz089.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz089.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz089.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz089.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('kfft', 0.0089924608880934467) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz089.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz089.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz089.txt + +[kyz090] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz090.txt +centroid = (0.6764355128661903, -1.4810724406083722) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz090.txt +description = Gallatin, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz090.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz090.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz090.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz090.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz090.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz090.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz090.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz090.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz090.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz090.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz090.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz090.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz090.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz090.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz090.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('kcvg', 0.005745199371320741) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz090.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz090.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz090.txt + +[kyz091] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz091.txt +centroid = (0.68015480950219021, -1.4787808233005035) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz091.txt +description = Boone, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz091.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz091.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz091.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz091.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz091.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz091.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz091.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz091.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz091.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz091.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz091.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz091.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz091.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz091.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz091.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('kcvg', 0.0016245541063273658) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz091.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz091.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz091.txt + +[kyz092] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz092.txt +centroid = (0.67951427366670836, -1.4753809219176186) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz092.txt +description = Kenton, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz092.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz092.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz092.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz092.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz092.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz092.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz092.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz092.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz092.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz092.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz092.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz092.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz092.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz092.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz092.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('kcvg', 0.002726069377627652) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz092.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz092.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz092.txt + +[kyz093] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz093.txt +centroid = (0.67974465712797161, -1.4726966055280513) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz093.txt +description = Campbell, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz093.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz093.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz093.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz093.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz093.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz093.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz093.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz093.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz093.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz093.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz093.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz093.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz093.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz093.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz093.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('kluk', 0.0027265695527294641) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz093.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz093.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz093.txt + +[kyz094] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz094.txt +centroid = (0.67229559188045973, -1.48052789788175) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz094.txt +description = Owen, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz094.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz094.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz094.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz094.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz094.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz094.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz094.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz094.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz094.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz094.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz094.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz094.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz094.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz094.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz094.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('kfft', 0.0059528435639870205) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz094.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz094.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz094.txt + +[kyz095] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz095.txt +centroid = (0.67454881194478444, -1.4769761528539413) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz095.txt +description = Grant, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz095.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz095.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz095.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz095.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz095.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz095.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz095.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz095.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz095.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz095.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz095.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz095.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz095.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz095.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz095.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('kcvg', 0.0070256786011919543) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz095.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz095.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz095.txt + +[kyz096] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz096.txt +centroid = (0.67536737136396985, -1.4723632476409205) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz096.txt +description = Pendleton, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz096.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz096.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz096.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz096.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz096.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz096.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz096.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz096.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz096.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz096.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz096.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz096.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz096.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz096.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz096.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('kluk', 0.0070979287338285525) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz096.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz096.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz096.txt + +[kyz097] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz097.txt +centroid = (0.67524694364558213, -1.4676491133312839) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz097.txt +description = Bracken, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz097.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz097.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz097.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz097.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz097.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz097.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz097.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz097.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz097.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz097.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz097.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz097.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz097.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz097.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz097.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('kluk', 0.0084371115832972444) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz097.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz097.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz097.txt + +[kyz098] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz098.txt +centroid = (0.67227988391719173, -1.4669858882155258) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz098.txt +description = Robertson, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz098.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz098.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz098.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz098.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz098.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz098.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz098.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz098.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz098.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz098.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz098.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz098.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz098.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz098.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz098.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('kiob', 0.0081068205873870668) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz098.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz098.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz098.txt + +[kyz099] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz099.txt +centroid = (0.67361331546571546, -1.4630047921917269) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz099.txt +description = Mason, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz099.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz099.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz099.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz099.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz099.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz099.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz099.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz099.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz099.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz099.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz099.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz099.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz099.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz099.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz099.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('kiob', 0.0096335217170147088) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz099.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz099.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz099.txt + +[kyz100] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz100.txt +centroid = (0.67250503139069906, -1.4552223690570842) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz100.txt +description = Lewis, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz100.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz100.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz100.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz100.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz100.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz100.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz100.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz100.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz100.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz100.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz100.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz100.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz100.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz100.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz100.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('khts', 0.011679756879122422) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz100.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz100.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz100.txt + +[kyz101] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz101.txt +centroid = (0.67274763215672628, -1.447267158326494) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz101.txt +description = Greenup, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz101.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz101.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz101.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz101.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz101.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz101.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz101.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz101.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz101.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz101.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz101.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz101.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz101.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz101.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz101.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('khts', 0.005970296051064407) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz101.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz101.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz101.txt + +[kyz102] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz102.txt +centroid = (0.66877700810843921, -1.4494872171350306) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz102.txt +description = Carter, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz102.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz102.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz102.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz102.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz102.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz102.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz102.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz102.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz102.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz102.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz102.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz102.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz102.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz102.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz102.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('khts', 0.0068899501436481964) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz102.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz102.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz102.txt + +[kyz103] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz103.txt +centroid = (0.66950131974801685, -1.4431726159013154) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz103.txt +description = Boyd, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz103.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz103.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz103.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz103.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz103.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz103.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz103.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz103.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz103.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz103.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz103.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz103.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz103.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz103.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz103.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('khts', 0.0018884567761170959) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz103.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz103.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz103.txt + +[kyz104] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz104.txt +centroid = (0.66528285894594652, -1.4503267205052399) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz104.txt +description = Elliott, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz104.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz104.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz104.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz104.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz104.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz104.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz104.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz104.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz104.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz104.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz104.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz104.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz104.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz104.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz104.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('khts', 0.0086716129791539111) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz104.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz104.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz104.txt + +[kyz105] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz105.txt +centroid = (0.66441019431994941, -1.4439929206497526) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz105.txt +description = Lawrence, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz105.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz105.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz105.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz105.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz105.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz105.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz105.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz105.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz105.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz105.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz105.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz105.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz105.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz105.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz105.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('kk22', 0.0056931986597093167) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz105.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz105.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz105.txt + +[kyz106] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz106.txt +centroid = (0.66186899492904561, -1.4531419365887068) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz106.txt +description = Morgan, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz106.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz106.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz106.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz106.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz106.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz106.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz106.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz106.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz106.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz106.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz106.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz106.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz106.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz106.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz106.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('kjkl', 0.0059695485099868955) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz106.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz106.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz106.txt + +[kyz107] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz107.txt +centroid = (0.66054952601453787, -1.4456806540364311) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz107.txt +description = Johnson, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz107.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz107.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz107.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz107.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz107.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz107.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz107.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz107.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz107.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz107.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz107.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz107.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz107.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz107.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz107.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('kk22', 0.0031622229344265341) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz107.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz107.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz107.txt + +[kyz108] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz108.txt +centroid = (0.65867504239789598, -1.4572294976968776) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz108.txt +description = Wolfe, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz108.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz108.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz108.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz108.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz108.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz108.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz108.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz108.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz108.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz108.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz108.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz108.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz108.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz108.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz108.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('kjkl', 0.0036541024140929229) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz108.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz108.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz108.txt + +[kyz109] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz109.txt +centroid = (0.65810431973249395, -1.449754252510586) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz109.txt +description = Magoffin, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz109.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz109.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz109.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz109.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz109.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz109.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz109.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz109.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz109.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz109.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz109.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz109.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz109.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz109.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz109.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('kjkl', 0.0040919392979237379) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz109.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz109.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz109.txt + +[kyz110] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz110.txt +centroid = (0.65549679783001435, -1.4441849068674719) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz110.txt +description = Floyd, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz110.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz110.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz110.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz110.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz110.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz110.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz110.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz110.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz110.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz110.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz110.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz110.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz110.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz110.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz110.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('kk22', 0.0037026305948328338) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz110.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz110.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz110.txt + +[kyz111] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz111.txt +centroid = (0.6561512962995123, -1.461125072587329) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz111.txt +description = Lee, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz111.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz111.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz111.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz111.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz111.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz111.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz111.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz111.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz111.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz111.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz111.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz111.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz111.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz111.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz111.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('kjkl', 0.005530525675329679) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz111.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz111.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz111.txt + +[kyz112] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz112.txt +centroid = (0.65487546061630431, -1.4542798912610071) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz112.txt +description = Breathitt, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz112.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz112.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz112.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz112.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz112.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz112.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz112.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz112.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz112.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz112.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz112.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz112.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz112.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz112.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz112.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('kjkl', 0.0010823480640799069) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz112.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz112.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz112.txt + +[kyz113] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz113.txt +centroid = (0.65195028878996186, -1.447820427699376) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz113.txt +description = Knott, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz113.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz113.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz113.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz113.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz113.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz113.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz113.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz113.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz113.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz113.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz113.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz113.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz113.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz113.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz113.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('kjkl', 0.0064233630426413042) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz113.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz113.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz113.txt + +[kyz114] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz114.txt +centroid = (0.65308998879151414, -1.4605473686049188) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz114.txt +description = Owsley, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz114.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz114.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz114.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz114.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz114.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz114.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz114.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz114.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz114.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz114.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz114.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz114.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz114.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz114.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz114.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('kjkl', 0.0058269632608808431) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz114.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz114.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz114.txt + +[kyz115] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz115.txt +centroid = (0.65003566260052414, -1.452489183448461) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz115.txt +description = Perry, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz115.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz115.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz115.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz115.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz115.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz115.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz115.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz115.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz115.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz115.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz115.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz115.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz115.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz115.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz115.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('kjkl', 0.0060625281630048364) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz115.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz115.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz115.txt + +[kyz116] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz116.txt +centroid = (0.64856085938258878, -1.4610954019900451) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz116.txt +description = Clay, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz116.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz116.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz116.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz116.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz116.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz116.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz116.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz116.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz116.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz116.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz116.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz116.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz116.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz116.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz116.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('kloz', 0.0050780472481781755) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz116.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz116.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz116.txt + +[kyz117] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz117.txt +centroid = (0.64741417806402857, -1.4552747289346439) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz117.txt +description = Leslie, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz117.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz117.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz117.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz117.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz117.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz117.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz117.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz117.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz117.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz117.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz117.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz117.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz117.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz117.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz117.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('ki35', 0.0041096186994169981) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz117.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz117.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz117.txt + +[kyz118] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz118.txt +centroid = (0.64788716229131904, -1.4460977877276577) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz118.txt +description = Letcher, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz118.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz118.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz118.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz118.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz118.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz118.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz118.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz118.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz118.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz118.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz118.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz118.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz118.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz118.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz118.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('klnp', 0.0050894843906813224) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz118.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz118.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz118.txt + +[kyz119] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz119.txt +centroid = (0.65976238252188846, -1.4401270163565851) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz119.txt +description = Martin, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz119.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz119.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz119.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz119.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz119.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz119.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz119.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz119.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz119.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz119.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz119.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz119.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz119.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz119.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz119.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('kk22', 0.0019189998046937017) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz119.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz119.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz119.txt + +[kyz120] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ky/kyz120.txt +centroid = (0.65395741742975533, -1.4380779998147437) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ky/kyz120.txt +description = Pike, KY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ky/kyz120.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ky/kyz120.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ky/kyz120.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ky/kyz120.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ky/kyz120.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ky/kyz120.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ky/kyz120.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ky/kyz120.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ky.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ky/kyz120.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ky/kyz120.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ky/kyz120.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ky/kyz120.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ky/kyz120.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ky/kyz120.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ky/kyz120.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ky.txt +station = ('kk22', 0.0059429038989394041) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ky/kyz120.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ky/kyz120.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ky/kyz120.txt + +[laz001] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/la/laz001.txt +centroid = (0.56862303431199668, -1.6385517536865684) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/la/laz001.txt +description = Caddo, LA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/la/laz001.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/la/laz001.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/la/laz001.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/la/laz001.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/la/laz001.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/la/laz001.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/la/laz001.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/la/laz001.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/la.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/la/laz001.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/la/laz001.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/la/laz001.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/la/laz001.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/la/laz001.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/la/laz001.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/la/laz001.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/la.txt +station = ('kdtn', 0.0021050503661004917) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/la/laz001.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/la/laz001.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/la/laz001.txt + +[laz002] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/la/laz002.txt +centroid = (0.57036312757623497, -1.633718936987796) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/la/laz002.txt +description = Bossier, LA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/la/laz002.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/la/laz002.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/la/laz002.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/la/laz002.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/la/laz002.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/la/laz002.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/la/laz002.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/la/laz002.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/la.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/la/laz002.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/la/laz002.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/la/laz002.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/la/laz002.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/la/laz002.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/la/laz002.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/la/laz002.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/la.txt +station = ('kbad', 0.0032589753068099948) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/la/laz002.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/la/laz002.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/la/laz002.txt + +[laz003] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/la/laz003.txt +centroid = (0.57095828485116507, -1.6290030573489074) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/la/laz003.txt +description = Webster, LA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/la/laz003.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/la/laz003.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/la/laz003.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/la/laz003.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/la/laz003.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/la/laz003.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/la/laz003.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/la/laz003.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/la.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/la/laz003.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/la/laz003.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/la/laz003.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/la/laz003.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/la/laz003.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/la/laz003.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/la/laz003.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/la.txt +station = ('kmne', 0.0012217400135503165) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/la/laz003.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/la/laz003.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/la/laz003.txt + +[laz004] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/la/laz004.txt +centroid = (0.57286243906509082, -1.6230811551968907) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/la/laz004.txt +description = Claiborne, LA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/la/laz004.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/la/laz004.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/la/laz004.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/la/laz004.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/la/laz004.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/la/laz004.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/la/laz004.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/la/laz004.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/la.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/la/laz004.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/la/laz004.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/la/laz004.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/la/laz004.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/la/laz004.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/la/laz004.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/la/laz004.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/la.txt +station = ('kmne', 0.0053882353074081518) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/la/laz004.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/la/laz004.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/la/laz004.txt + +[laz005] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/la/laz005.txt +centroid = (0.56900526141818331, -1.6173041153727894) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/la/laz005.txt +description = Lincoln, LA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/la/laz005.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/la/laz005.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/la/laz005.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/la/laz005.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/la/laz005.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/la/laz005.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/la/laz005.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/la/laz005.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/la.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/la/laz005.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/la/laz005.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/la/laz005.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/la/laz005.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/la/laz005.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/la/laz005.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/la/laz005.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/la.txt +station = ('krsn', 0.0018910056262489328) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/la/laz005.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/la/laz005.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/la/laz005.txt + +[laz006] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/la/laz006.txt +centroid = (0.57302475468552627, -1.6122444058712577) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/la/laz006.txt +description = Union, LA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/la/laz006.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/la/laz006.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/la/laz006.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/la/laz006.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/la/laz006.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/la/laz006.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/la/laz006.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/la/laz006.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/la.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/la/laz006.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/la/laz006.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/la/laz006.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/la/laz006.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/la/laz006.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/la/laz006.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/la/laz006.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/la.txt +station = ('krsn', 0.0063671265183631353) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/la/laz006.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/la/laz006.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/la/laz006.txt + +[laz007] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/la/laz007.txt +centroid = (0.57282578715079902, -1.6022419239280783) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/la/laz007.txt +description = Morehouse, LA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/la/laz007.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/la/laz007.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/la/laz007.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/la/laz007.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/la/laz007.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/la/laz007.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/la/laz007.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/la/laz007.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/la.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/la/laz007.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/la/laz007.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/la/laz007.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/la/laz007.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/la/laz007.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/la/laz007.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/la/laz007.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/la.txt +station = ('kbqp', 0.0015603861239151175) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/la/laz007.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/la/laz007.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/la/laz007.txt + +[laz008] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/la/laz008.txt +centroid = (0.57226728179016073, -1.596220538008698) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/la/laz008.txt +description = West Carroll, LA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/la/laz008.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/la/laz008.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/la/laz008.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/la/laz008.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/la/laz008.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/la/laz008.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/la/laz008.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/la/laz008.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/la.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/la/laz008.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/la/laz008.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/la/laz008.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/la/laz008.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/la/laz008.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/la/laz008.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/la/laz008.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/la.txt +station = ('kbqp', 0.0062317655970211168) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/la/laz008.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/la/laz008.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/la/laz008.txt + +[laz009] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/la/laz009.txt +centroid = (0.57129164273829591, -1.5923528883862785) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/la/laz009.txt +description = East Carroll, LA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/la/laz009.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/la/laz009.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/la/laz009.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/la/laz009.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/la/laz009.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/la/laz009.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/la/laz009.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/la/laz009.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/la.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/la/laz009.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/la/laz009.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/la/laz009.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/la/laz009.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/la/laz009.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/la/laz009.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/la/laz009.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/la.txt +station = ('ktvr', 0.007358778084521074) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/la/laz009.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/la/laz009.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/la/laz009.txt + +[laz010] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/la/laz010.txt +centroid = (0.55947227304379032, -1.6360245169296808) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/la/laz010.txt +description = De Soto, LA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/la/laz010.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/la/laz010.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/la/laz010.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/la/laz010.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/la/laz010.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/la/laz010.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/la/laz010.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/la/laz010.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/la.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/la/laz010.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/la/laz010.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/la/laz010.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/la/laz010.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/la/laz010.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/la/laz010.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/la/laz010.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/la.txt +station = ('kshv', 0.0070314262989029149) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/la/laz010.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/la/laz010.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/la/laz010.txt + +[laz011] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/la/laz011.txt +centroid = (0.56013375283029621, -1.6290903238115073) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/la/laz011.txt +description = Red River, LA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/la/laz011.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/la/laz011.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/la/laz011.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/la/laz011.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/la/laz011.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/la/laz011.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/la/laz011.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/la/laz011.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/la.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/la/laz011.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/la/laz011.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/la/laz011.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/la/laz011.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/la/laz011.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/la/laz011.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/la/laz011.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/la.txt +station = ('kier', 0.0071871345777069521) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/la/laz011.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/la/laz011.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/la/laz011.txt + +[laz012] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/la/laz012.txt +centroid = (0.56456514380110978, -1.6241335887358432) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/la/laz012.txt +description = Bienville, LA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/la/laz012.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/la/laz012.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/la/laz012.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/la/laz012.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/la/laz012.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/la/laz012.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/la/laz012.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/la/laz012.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/la.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/la/laz012.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/la/laz012.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/la/laz012.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/la/laz012.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/la/laz012.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/la/laz012.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/la/laz012.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/la.txt +station = ('kmne', 0.0063898461313637647) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/la/laz012.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/la/laz012.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/la/laz012.txt + +[laz013] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/la/laz013.txt +centroid = (0.56377625497920836, -1.6154366130731554) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/la/laz013.txt +description = Jackson, LA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/la/laz013.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/la/laz013.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/la/laz013.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/la/laz013.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/la/laz013.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/la/laz013.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/la/laz013.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/la/laz013.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/la.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/la/laz013.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/la/laz013.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/la/laz013.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/la/laz013.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/la/laz013.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/la/laz013.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/la/laz013.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/la.txt +station = ('krsn', 0.0037352286657938018) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/la/laz013.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/la/laz013.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/la/laz013.txt + +[laz014] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/la/laz014.txt +centroid = (0.56685676110897831, -1.6083994455291144) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/la/laz014.txt +description = Ouachita, LA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/la/laz014.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/la/laz014.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/la/laz014.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/la/laz014.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/la/laz014.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/la/laz014.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/la/laz014.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/la/laz014.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/la.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/la/laz014.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/la/laz014.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/la/laz014.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/la/laz014.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/la/laz014.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/la/laz014.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/la/laz014.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/la.txt +station = ('kmlu', 0.0019039486258935307) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/la/laz014.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/la/laz014.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/la/laz014.txt + +[laz015] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/la/laz015.txt +centroid = (0.5657956009237658, -1.6015769534830686) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/la/laz015.txt +description = Richland, LA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/la/laz015.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/la/laz015.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/la/laz015.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/la/laz015.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/la/laz015.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/la/laz015.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/la/laz015.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/la/laz015.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/la.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/la/laz015.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/la/laz015.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/la/laz015.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/la/laz015.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/la/laz015.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/la/laz015.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/la/laz015.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/la.txt +station = ('kmlu', 0.0043312363043983403) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/la/laz015.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/la/laz015.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/la/laz015.txt + +[laz016] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/la/laz016.txt +centroid = (0.56486359510320083, -1.5924855334094301) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/la/laz016.txt +description = Madison, LA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/la/laz016.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/la/laz016.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/la/laz016.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/la/laz016.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/la/laz016.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/la/laz016.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/la/laz016.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/la/laz016.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/la.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/la/laz016.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/la/laz016.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/la/laz016.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/la/laz016.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/la/laz016.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/la/laz016.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/la/laz016.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/la.txt +station = ('ktvr', 0.0031487217989639841) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/la/laz016.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/la/laz016.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/la/laz016.txt + +[laz017] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/la/laz017.txt +centroid = (0.55089572509949014, -1.6328375457155391) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/la/laz017.txt +description = Sabine, LA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/la/laz017.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/la/laz017.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/la/laz017.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/la/laz017.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/la/laz017.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/la/laz017.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/la/laz017.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/la/laz017.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/la.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/la/laz017.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/la/laz017.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/la/laz017.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/la/laz017.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/la/laz017.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/la/laz017.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/la/laz017.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/la.txt +station = ('kaqv', 0.0023732720900053457) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/la/laz017.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/la/laz017.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/la/laz017.txt + +[laz018] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/la/laz018.txt +centroid = (0.55368127058567318, -1.624836956424397) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/la/laz018.txt +description = Natchitoches, LA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/la/laz018.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/la/laz018.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/la/laz018.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/la/laz018.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/la/laz018.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/la/laz018.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/la/laz018.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/la/laz018.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/la.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/la/laz018.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/la/laz018.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/la/laz018.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/la/laz018.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/la/laz018.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/la/laz018.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/la/laz018.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/la.txt +station = ('kier', 0.00021771141794363534) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/la/laz018.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/la/laz018.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/la/laz018.txt + +[laz019] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/la/laz019.txt +centroid = (0.55753146691557265, -1.6168171685114829) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/la/laz019.txt +description = Winn, LA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/la/laz019.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/la/laz019.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/la/laz019.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/la/laz019.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/la/laz019.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/la/laz019.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/la/laz019.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/la/laz019.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/la.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/la/laz019.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/la/laz019.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/la/laz019.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/la/laz019.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/la/laz019.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/la/laz019.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/la/laz019.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/la.txt +station = ('kier', 0.007760367739151946) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/la/laz019.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/la/laz019.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/la/laz019.txt + +[laz020] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/la/laz020.txt +centroid = (0.55151880764245209, -1.6154662836704394) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/la/laz020.txt +description = Grant, LA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/la/laz020.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/la/laz020.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/la/laz020.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/la/laz020.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/la/laz020.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/la/laz020.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/la/laz020.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/la/laz020.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/la.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/la/laz020.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/la/laz020.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/la/laz020.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/la/laz020.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/la/laz020.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/la/laz020.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/la/laz020.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/la.txt +station = ('kesf', 0.0052009182591017476) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/la/laz020.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/la/laz020.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/la/laz020.txt + +[laz021] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/la/laz021.txt +centroid = (0.56011455420852418, -1.6077397110718605) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/la/laz021.txt +description = Caldwell, LA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/la/laz021.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/la/laz021.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/la/laz021.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/la/laz021.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/la/laz021.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/la/laz021.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/la/laz021.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/la/laz021.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/la.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/la/laz021.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/la/laz021.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/la/laz021.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/la/laz021.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/la/laz021.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/la/laz021.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/la/laz021.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/la.txt +station = ('kmlu', 0.0075097233462730678) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/la/laz021.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/la/laz021.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/la/laz021.txt + +[laz022] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/la/laz022.txt +centroid = (0.55286271116648777, -1.608502419954982) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/la/laz022.txt +description = La Salle, LA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/la/laz022.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/la/laz022.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/la/laz022.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/la/laz022.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/la/laz022.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/la/laz022.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/la/laz022.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/la/laz022.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/la.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/la/laz022.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/la/laz022.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/la/laz022.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/la/laz022.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/la/laz022.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/la/laz022.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/la/laz022.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/la.txt +station = ('kesf', 0.0052568610968012535) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/la/laz022.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/la/laz022.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/la/laz022.txt + +[laz023] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/la/laz023.txt +centroid = (0.56083013920184199, -1.6000096478147776) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/la/laz023.txt +description = Franklin, LA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/la/laz023.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/la/laz023.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/la/laz023.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/la/laz023.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/la/laz023.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/la/laz023.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/la/laz023.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/la/laz023.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/la.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/la/laz023.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/la/laz023.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/la/laz023.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/la/laz023.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/la/laz023.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/la/laz023.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/la/laz023.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/la.txt +station = ('kmlu', 0.0085387476641529004) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/la/laz023.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/la/laz023.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/la/laz023.txt + +[laz024] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/la/laz024.txt +centroid = (0.55267770626577639, -1.6030343034084837) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/la/laz024.txt +description = Catahoula, LA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/la/laz024.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/la/laz024.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/la/laz024.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/la/laz024.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/la/laz024.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/la/laz024.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/la/laz024.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/la/laz024.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/la.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/la/laz024.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/la/laz024.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/la/laz024.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/la/laz024.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/la/laz024.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/la/laz024.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/la/laz024.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/la.txt +station = ('kesf', 0.0081830275861499418) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/la/laz024.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/la/laz024.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/la/laz024.txt + +[laz025] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/la/laz025.txt +centroid = (0.55853503123546933, -1.5941837387716207) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/la/laz025.txt +description = Tensas, LA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/la/laz025.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/la/laz025.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/la/laz025.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/la/laz025.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/la/laz025.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/la/laz025.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/la/laz025.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/la/laz025.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/la.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/la/laz025.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/la/laz025.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/la/laz025.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/la/laz025.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/la/laz025.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/la/laz025.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/la/laz025.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/la.txt +station = ('khez', 0.0067462368694092356) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/la/laz025.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/la/laz025.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/la/laz025.txt + +[laz026] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/la/laz026.txt +centroid = (0.54883274592363285, -1.5994144905398477) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/la/laz026.txt +description = Concordia, LA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/la/laz026.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/la/laz026.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/la/laz026.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/la/laz026.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/la/laz026.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/la/laz026.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/la/laz026.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/la/laz026.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/la.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/la/laz026.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/la/laz026.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/la/laz026.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/la/laz026.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/la/laz026.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/la/laz026.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/la/laz026.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/la.txt +station = ('khez', 0.0058678260961538753) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/la/laz026.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/la/laz026.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/la/laz026.txt + +[laz027] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/la/laz027.txt +centroid = (0.54294225969815202, -1.6263711008369002) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/la/laz027.txt +description = Vernon, LA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/la/laz027.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/la/laz027.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/la/laz027.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/la/laz027.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/la/laz027.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/la/laz027.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/la/laz027.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/la/laz027.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/la.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/la/laz027.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/la/laz027.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/la/laz027.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/la/laz027.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/la/laz027.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/la/laz027.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/la/laz027.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/la.txt +station = ('kpoe', 0.001027782356202071) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/la/laz027.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/la/laz027.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/la/laz027.txt + +[laz028] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/la/laz028.txt +centroid = (0.54451829201270285, -1.6150090074064167) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/la/laz028.txt +description = Rapides, LA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/la/laz028.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/la/laz028.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/la/laz028.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/la/laz028.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/la/laz028.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/la/laz028.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/la/laz028.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/la/laz028.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/la.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/la/laz028.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/la/laz028.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/la/laz028.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/la/laz028.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/la/laz028.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/la/laz028.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/la/laz028.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/la.txt +station = ('kesf', 0.0049447650070999875) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/la/laz028.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/la/laz028.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/la/laz028.txt + +[laz029] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/la/laz029.txt +centroid = (0.54238200900826183, -1.6057256011150591) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/la/laz029.txt +description = Avoyelles, LA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/la/laz029.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/la/laz029.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/la/laz029.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/la/laz029.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/la/laz029.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/la/laz029.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/la/laz029.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/la/laz029.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/la.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/la/laz029.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/la/laz029.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/la/laz029.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/la/laz029.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/la/laz029.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/la/laz029.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/la/laz029.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/la.txt +station = ('kesf', 0.0071977071767139571) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/la/laz029.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/la/laz029.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/la/laz029.txt + +[laz030] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/la/laz030.txt +centroid = (0.53491723579748207, -1.6291496650060751) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/la/laz030.txt +description = Beauregard, LA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/la/laz030.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/la/laz030.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/la/laz030.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/la/laz030.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/la/laz030.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/la/laz030.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/la/laz030.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/la/laz030.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/la.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/la/laz030.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/la/laz030.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/la/laz030.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/la/laz030.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/la/laz030.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/la/laz030.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/la/laz030.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/la.txt +station = ('kdri', 0.0031973374334703787) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/la/laz030.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/la/laz030.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/la/laz030.txt + +[laz031] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/la/laz031.txt +centroid = (0.53499228495531781, -1.6201524927120443) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/la/laz031.txt +description = Allen, LA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/la/laz031.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/la/laz031.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/la/laz031.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/la/laz031.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/la/laz031.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/la/laz031.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/la/laz031.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/la/laz031.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/la.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/la/laz031.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/la/laz031.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/la/laz031.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/la/laz031.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/la/laz031.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/la/laz031.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/la/laz031.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/la.txt +station = ('kacp', 0.0026982125804160986) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/la/laz031.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/la/laz031.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/la/laz031.txt + +[laz032] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/la/laz032.txt +centroid = (0.53632222584533751, -1.6127872032686281) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/la/laz032.txt +description = Evangeline, LA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/la/laz032.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/la/laz032.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/la/laz032.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/la/laz032.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/la/laz032.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/la/laz032.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/la/laz032.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/la/laz032.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/la.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/la/laz032.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/la/laz032.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/la/laz032.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/la/laz032.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/la/laz032.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/la/laz032.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/la/laz032.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/la.txt +station = ('kacp', 0.0042576204164750126) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/la/laz032.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/la/laz032.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/la/laz032.txt + +[laz033] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/la/laz033.txt +centroid = (0.5340515524884929, -1.6058041409313988) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/la/laz033.txt +description = St. Landry, LA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/la/laz033.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/la/laz033.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/la/laz033.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/la/laz033.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/la/laz033.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/la/laz033.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/la/laz033.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/la/laz033.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/la.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/la/laz033.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/la/laz033.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/la/laz033.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/la/laz033.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/la/laz033.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/la/laz033.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/la/laz033.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/la.txt +station = ('klft', 0.0069626658501722059) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/la/laz033.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/la/laz033.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/la/laz033.txt + +[laz034] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/la/laz034.txt +centroid = (0.53598537729970264, -1.5987373027900738) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/la/laz034.txt +description = Pointe Coupee, LA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/la/laz034.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/la/laz034.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/la/laz034.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/la/laz034.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/la/laz034.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/la/laz034.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/la/laz034.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/la/laz034.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/la.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/la/laz034.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/la/laz034.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/la/laz034.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/la/laz034.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/la/laz034.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/la/laz034.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/la/laz034.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/la.txt +station = ('khzr', 0.0018402592475214754) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/la/laz034.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/la/laz034.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/la/laz034.txt + +[laz035] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/la/laz035.txt +centroid = (0.53895418235734494, -1.595580002173216) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/la/laz035.txt +description = West Feliciana, LA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/la/laz035.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/la/laz035.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/la/laz035.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/la/laz035.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/la/laz035.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/la/laz035.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/la/laz035.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/la/laz035.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/la.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/la/laz035.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/la/laz035.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/la/laz035.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/la/laz035.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/la/laz035.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/la/laz035.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/la/laz035.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/la.txt +station = ('khzr', 0.0029526450453609605) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/la/laz035.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/la/laz035.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/la/laz035.txt + +[laz036] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/la/laz036.txt +centroid = (0.53834855310690288, -1.5890437441244973) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/la/laz036.txt +description = East Feliciana, LA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/la/laz036.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/la/laz036.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/la/laz036.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/la/laz036.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/la/laz036.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/la/laz036.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/la/laz036.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/la/laz036.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/la.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/la/laz036.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/la/laz036.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/la/laz036.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/la/laz036.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/la/laz036.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/la/laz036.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/la/laz036.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/la.txt +station = ('kbtr', 0.0056628890495992153) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/la/laz036.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/la/laz036.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/la/laz036.txt + +[laz037] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/la/laz037.txt +centroid = (0.53794538204969222, -1.5831934004718125) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/la/laz037.txt +description = St. Helena, LA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/la/laz037.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/la/laz037.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/la/laz037.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/la/laz037.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/la/laz037.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/la/laz037.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/la/laz037.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/la/laz037.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/la.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/la/laz037.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/la/laz037.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/la/laz037.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/la/laz037.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/la/laz037.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/la/laz037.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/la/laz037.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/la.txt +station = ('khdc', 0.0068519246342068204) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/la/laz037.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/la/laz037.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/la/laz037.txt + +[laz039] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/la/laz039.txt +centroid = (0.53849341543481843, -1.5715031851419543) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/la/laz039.txt +description = Washington, LA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/la/laz039.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/la/laz039.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/la/laz039.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/la/laz039.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/la/laz039.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/la/laz039.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/la/laz039.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/la/laz039.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/la.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/la/laz039.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/la/laz039.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/la/laz039.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/la/laz039.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/la/laz039.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/la/laz039.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/la/laz039.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/la.txt +station = ('khdc', 0.0081061184444330987) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/la/laz039.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/la/laz039.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/la/laz039.txt + +[laz040] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/la/laz040.txt +centroid = (0.53141959597648547, -1.569750874572952) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/la/laz040.txt +description = St. Tammany, LA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/la/laz040.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/la/laz040.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/la/laz040.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/la/laz040.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/la/laz040.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/la/laz040.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/la/laz040.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/la/laz040.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/la.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/la/laz040.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/la/laz040.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/la/laz040.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/la/laz040.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/la/laz040.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/la/laz040.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/la/laz040.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/la.txt +station = ('kasd', 0.0025267027821754382) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/la/laz040.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/la/laz040.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/la/laz040.txt + +[laz041] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/la/laz041.txt +centroid = (0.52759907024386987, -1.6294027377476141) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/la/laz041.txt +description = Calcasieu, LA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/la/laz041.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/la/laz041.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/la/laz041.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/la/laz041.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/la/laz041.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/la/laz041.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/la/laz041.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/la/laz041.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/la.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/la/laz041.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/la/laz041.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/la/laz041.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/la/laz041.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/la/laz041.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/la/laz041.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/la/laz041.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/la.txt +station = ('klch', 0.00063786426312871188) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/la/laz041.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/la/laz041.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/la/laz041.txt + +[laz042] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/la/laz042.txt +centroid = (0.52825705937187173, -1.6199064012875131) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/la/laz042.txt +description = Jefferson Davis, LA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/la/laz042.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/la/laz042.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/la/laz042.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/la/laz042.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/la/laz042.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/la/laz042.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/la/laz042.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/la/laz042.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/la.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/la/laz042.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/la/laz042.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/la/laz042.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/la/laz042.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/la/laz042.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/la/laz042.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/la/laz042.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/la.txt +station = ('k3r7', 0.002156926317319703) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/la/laz042.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/la/laz042.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/la/laz042.txt + +[laz043] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/la/laz043.txt +centroid = (0.52867070240459446, -1.612893668353) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/la/laz043.txt +description = Acadia, LA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/la/laz043.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/la/laz043.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/la/laz043.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/la/laz043.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/la/laz043.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/la/laz043.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/la/laz043.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/la/laz043.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/la.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/la/laz043.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/la/laz043.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/la/laz043.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/la/laz043.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/la/laz043.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/la/laz043.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/la/laz043.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/la.txt +station = ('k3r7', 0.004029584022940607) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/la/laz043.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/la/laz043.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/la/laz043.txt + +[laz044] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/la/laz044.txt +centroid = (0.52719938984516312, -1.6068181772268075) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/la/laz044.txt +description = Lafayette, LA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/la/laz044.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/la/laz044.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/la/laz044.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/la/laz044.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/la/laz044.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/la/laz044.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/la/laz044.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/la/laz044.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/la.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/la/laz044.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/la/laz044.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/la/laz044.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/la/laz044.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/la/laz044.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/la/laz044.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/la/laz044.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/la.txt +station = ('klft', 0.00097011640837081344) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/la/laz044.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/la/laz044.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/la/laz044.txt + +[laz045] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/la/laz045.txt +centroid = (0.52758161695134997, -1.6009329269890826) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/la/laz045.txt +description = Upper St. Martin, LA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/la/laz045.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/la/laz045.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/la/laz045.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/la/laz045.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/la/laz045.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/la/laz045.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/la/laz045.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/la/laz045.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/la.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/la/laz045.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/la/laz045.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/la/laz045.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/la/laz045.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/la/laz045.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/la/laz045.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/la/laz045.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/la.txt +station = ('kara', 0.0041421676737569647) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/la/laz045.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/la/laz045.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/la/laz045.txt + +[laz046] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/la/laz046.txt +centroid = (0.52811045171470428, -1.594347799721308) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/la/laz046.txt +description = Iberville, LA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/la/laz046.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/la/laz046.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/la/laz046.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/la/laz046.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/la/laz046.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/la/laz046.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/la/laz046.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/la/laz046.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/la.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/la/laz046.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/la/laz046.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/la/laz046.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/la/laz046.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/la/laz046.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/la/laz046.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/la/laz046.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/la.txt +station = ('kbtr', 0.0056585994036757476) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/la/laz046.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/la/laz046.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/la/laz046.txt + +[laz047] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/la/laz047.txt +centroid = (0.53168663135204064, -1.5937194811905901) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/la/laz047.txt +description = West Baton Rouge, LA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/la/laz047.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/la/laz047.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/la/laz047.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/la/laz047.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/la/laz047.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/la/laz047.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/la/laz047.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/la/laz047.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/la.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/la/laz047.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/la/laz047.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/la/laz047.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/la/laz047.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/la/laz047.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/la/laz047.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/la/laz047.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/la.txt +station = ('kbtr', 0.0027437336406474972) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/la/laz047.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/la/laz047.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/la/laz047.txt + +[laz048] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/la/laz048.txt +centroid = (0.53299388296178429, -1.5899198994089982) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/la/laz048.txt +description = East Baton Rouge, LA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/la/laz048.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/la/laz048.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/la/laz048.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/la/laz048.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/la/laz048.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/la/laz048.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/la/laz048.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/la/laz048.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/la.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/la/laz048.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/la/laz048.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/la/laz048.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/la/laz048.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/la/laz048.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/la/laz048.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/la/laz048.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/la.txt +station = ('kbtr', 0.00082086682517731728) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/la/laz048.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/la/laz048.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/la/laz048.txt + +[laz049] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/la/laz049.txt +centroid = (0.52715052062610734, -1.5867015122683208) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/la/laz049.txt +description = Ascension, LA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/la/laz049.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/la/laz049.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/la/laz049.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/la/laz049.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/la/laz049.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/la/laz049.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/la/laz049.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/la/laz049.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/la.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/la/laz049.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/la/laz049.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/la/laz049.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/la/laz049.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/la/laz049.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/la/laz049.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/la/laz049.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/la.txt +station = ('kbtr', 0.0067867187054537767) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/la/laz049.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/la/laz049.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/la/laz049.txt + +[laz050] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/la/laz050.txt +centroid = (0.53146497453703734, -1.5836995459548906) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/la/laz050.txt +description = Livingston, LA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/la/laz050.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/la/laz050.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/la/laz050.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/la/laz050.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/la/laz050.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/la/laz050.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/la/laz050.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/la/laz050.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/la.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/la/laz050.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/la/laz050.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/la/laz050.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/la/laz050.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/la/laz050.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/la/laz050.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/la/laz050.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/la.txt +station = ('khdc', 0.0049924049595265058) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/la/laz050.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/la/laz050.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/la/laz050.txt + +[laz052] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/la/laz052.txt +centroid = (0.52097380040329933, -1.6111937176615574) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/la/laz052.txt +description = Vermilion, LA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/la/laz052.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/la/laz052.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/la/laz052.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/la/laz052.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/la/laz052.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/la/laz052.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/la/laz052.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/la/laz052.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/la.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/la/laz052.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/la/laz052.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/la/laz052.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/la/laz052.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/la/laz052.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/la/laz052.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/la/laz052.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/la.txt +station = ('k7r4', 0.0029786100694019022) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/la/laz052.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/la/laz052.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/la/laz052.txt + +[laz053] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/la/laz053.txt +centroid = (0.52175047192043689, -1.6010027401591624) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/la/laz053.txt +description = Iberia, LA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/la/laz053.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/la/laz053.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/la/laz053.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/la/laz053.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/la/laz053.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/la/laz053.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/la/laz053.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/la/laz053.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/la.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/la/laz053.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/la/laz053.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/la/laz053.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/la/laz053.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/la/laz053.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/la/laz053.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/la/laz053.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/la.txt +station = ('kara', 0.0033513673078716844) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/la/laz053.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/la/laz053.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/la/laz053.txt + +[laz054] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/la/laz054.txt +centroid = (0.51858618998657113, -1.5958644908412911) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/la/laz054.txt +description = St. Mary, LA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/la/laz054.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/la/laz054.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/la/laz054.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/la/laz054.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/la/laz054.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/la/laz054.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/la/laz054.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/la/laz054.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/la.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/la/laz054.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/la/laz054.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/la/laz054.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/la/laz054.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/la/laz054.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/la/laz054.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/la/laz054.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/la.txt +station = ('kptn', 0.001562253326687524) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/la/laz054.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/la/laz054.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/la/laz054.txt + +[laz055] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/la/laz055.txt +centroid = (0.52092144052573952, -1.5929707349414846) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/la/laz055.txt +description = Lower St. Martin, LA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/la/laz055.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/la/laz055.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/la/laz055.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/la/laz055.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/la/laz055.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/la/laz055.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/la/laz055.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/la/laz055.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/la.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/la/laz055.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/la/laz055.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/la/laz055.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/la/laz055.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/la/laz055.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/la/laz055.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/la/laz055.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/la.txt +station = ('kptn', 0.0024594093018941404) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/la/laz055.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/la/laz055.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/la/laz055.txt + +[laz056] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/la/laz056.txt +centroid = (0.52186391832181656, -1.5893421954265885) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/la/laz056.txt +description = Assumption, LA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/la/laz056.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/la/laz056.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/la/laz056.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/la/laz056.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/la/laz056.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/la/laz056.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/la/laz056.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/la/laz056.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/la.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/la/laz056.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/la/laz056.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/la/laz056.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/la/laz056.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/la/laz056.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/la/laz056.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/la/laz056.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/la.txt +station = ('k7r3', 0.0035466551153353555) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/la/laz056.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/la/laz056.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/la/laz056.txt + +[laz057] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/la/laz057.txt +centroid = (0.5240577971915733, -1.5846926382992754) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/la/laz057.txt +description = St. James, LA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/la/laz057.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/la/laz057.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/la/laz057.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/la/laz057.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/la/laz057.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/la/laz057.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/la/laz057.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/la/laz057.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/la.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/la/laz057.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/la/laz057.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/la/laz057.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/la/laz057.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/la/laz057.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/la/laz057.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/la/laz057.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/la.txt +station = ('k7r3', 0.0073196277378215708) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/la/laz057.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/la/laz057.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/la/laz057.txt + +[laz058] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/la/laz058.txt +centroid = (0.52498107636587843, -1.5803293151692897) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/la/laz058.txt +description = St. John The Baptist, LA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/la/laz058.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/la/laz058.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/la/laz058.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/la/laz058.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/la/laz058.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/la/laz058.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/la/laz058.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/la/laz058.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/la.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/la/laz058.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/la/laz058.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/la/laz058.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/la/laz058.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/la/laz058.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/la/laz058.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/la/laz058.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/la.txt +station = ('kmsy', 0.004683888759307561) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/la/laz058.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/la/laz058.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/la/laz058.txt + +[laz059] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/la/laz059.txt +centroid = (0.5188008654845665, -1.5807569208360284) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/la/laz059.txt +description = Upper Lafourche, LA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/la/laz059.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/la/laz059.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/la/laz059.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/la/laz059.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/la/laz059.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/la/laz059.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/la/laz059.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/la/laz059.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/la.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/la/laz059.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/la/laz059.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/la/laz059.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/la/laz059.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/la/laz059.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/la/laz059.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/la/laz059.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/la.txt +station = ('khum', 0.0031249402467851896) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/la/laz059.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/la/laz059.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/la/laz059.txt + +[laz060] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/la/laz060.txt +centroid = (0.52156721234897752, -1.5771318719796359) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/la/laz060.txt +description = St. Charles, LA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/la/laz060.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/la/laz060.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/la/laz060.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/la/laz060.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/la/laz060.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/la/laz060.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/la/laz060.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/la/laz060.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/la.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/la/laz060.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/la/laz060.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/la/laz060.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/la/laz060.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/la/laz060.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/la/laz060.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/la/laz060.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/la.txt +station = ('kmsy', 0.002654790305672242) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/la/laz060.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/la/laz060.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/la/laz060.txt + +[laz061] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/la/laz061.txt +centroid = (0.52046765492022107, -1.5732746943327285) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/la/laz061.txt +description = Upper Jefferson, LA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/la/laz061.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/la/laz061.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/la/laz061.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/la/laz061.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/la/laz061.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/la/laz061.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/la/laz061.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/la/laz061.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/la.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/la/laz061.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/la/laz061.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/la/laz061.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/la/laz061.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/la/laz061.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/la/laz061.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/la/laz061.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/la.txt +station = ('knbg', 0.0019106757764513951) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/la/laz061.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/la/laz061.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/la/laz061.txt + +[laz062] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/la/laz062.txt +centroid = (0.52427072736031666, -1.5691138293959741) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/la/laz062.txt +description = Orleans, LA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/la/laz062.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/la/laz062.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/la/laz062.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/la/laz062.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/la/laz062.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/la/laz062.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/la/laz062.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/la/laz062.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/la.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/la/laz062.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/la/laz062.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/la/laz062.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/la/laz062.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/la/laz062.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/la/laz062.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/la/laz062.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/la.txt +station = ('knew', 0.0019702935143417503) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/la/laz062.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/la/laz062.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/la/laz062.txt + +[laz063] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/la/laz063.txt +centroid = (0.51977999519493523, -1.5703722117866621) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/la/laz063.txt +description = Upper Plaquemines, LA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/la/laz063.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/la/laz063.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/la/laz063.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/la/laz063.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/la/laz063.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/la/laz063.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/la/laz063.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/la/laz063.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/la.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/la/laz063.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/la/laz063.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/la/laz063.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/la/laz063.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/la/laz063.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/la/laz063.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/la/laz063.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/la.txt +station = ('knbg', 0.0011012826530351889) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/la/laz063.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/la/laz063.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/la/laz063.txt + +[laz064] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/la/laz064.txt +centroid = (0.52208033914906382, -1.5685972119373837) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/la/laz064.txt +description = Upper St. Bernard, LA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/la/laz064.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/la/laz064.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/la/laz064.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/la/laz064.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/la/laz064.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/la/laz064.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/la/laz064.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/la/laz064.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/la.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/la/laz064.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/la/laz064.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/la/laz064.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/la/laz064.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/la/laz064.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/la/laz064.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/la/laz064.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/la.txt +station = ('knbg', 0.0025681305164869544) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/la/laz064.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/la/laz064.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/la/laz064.txt + +[laz065] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/la/laz065.txt +centroid = (0.51729813699859928, -1.5854274219143651) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/la/laz065.txt +description = Upper Terrebonne, LA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/la/laz065.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/la/laz065.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/la/laz065.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/la/laz065.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/la/laz065.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/la/laz065.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/la/laz065.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/la/laz065.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/la.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/la/laz065.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/la/laz065.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/la/laz065.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/la/laz065.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/la/laz065.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/la/laz065.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/la/laz065.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/la.txt +station = ('khum', 0.0028943921757766597) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/la/laz065.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/la/laz065.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/la/laz065.txt + +[laz066] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/la/laz066.txt +centroid = (0.51265032520053844, -1.5858550275811036) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/la/laz066.txt +description = Lower Terrebonne, LA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/la/laz066.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/la/laz066.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/la/laz066.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/la/laz066.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/la/laz066.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/la/laz066.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/la/laz066.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/la/laz066.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/la.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/la/laz066.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/la/laz066.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/la/laz066.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/la/laz066.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/la/laz066.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/la/laz066.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/la/laz066.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/la.txt +station = ('khum', 0.004510280173058003) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/la/laz066.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/la/laz066.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/la/laz066.txt + +[laz067] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/la/laz067.txt +centroid = (0.51267126915156236, -1.5752189911194503) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/la/laz067.txt +description = Lower Lafourche, LA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/la/laz067.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/la/laz067.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/la/laz067.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/la/laz067.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/la/laz067.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/la/laz067.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/la/laz067.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/la/laz067.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/la.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/la/laz067.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/la/laz067.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/la/laz067.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/la/laz067.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/la/laz067.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/la/laz067.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/la/laz067.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/la.txt +station = ('kgao', 0.0012416285992141211) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/la/laz067.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/la/laz067.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/la/laz067.txt + +[laz068] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/la/laz068.txt +centroid = (0.51498383041045481, -1.5717841831515253) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/la/laz068.txt +description = Lower Jefferson, LA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/la/laz068.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/la/laz068.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/la/laz068.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/la/laz068.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/la/laz068.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/la/laz068.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/la/laz068.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/la/laz068.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/la.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/la/laz068.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/la/laz068.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/la/laz068.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/la/laz068.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/la/laz068.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/la/laz068.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/la/laz068.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/la.txt +station = ('kgao', 0.0032885680746418669) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/la/laz068.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/la/laz068.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/la/laz068.txt + +[laz069] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/la/laz069.txt +centroid = (0.51442755907125925, -1.5649993204041523) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/la/laz069.txt +description = Lower Plaquemines, LA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/la/laz069.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/la/laz069.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/la/laz069.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/la/laz069.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/la/laz069.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/la/laz069.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/la/laz069.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/la/laz069.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/la.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/la/laz069.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/la/laz069.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/la/laz069.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/la/laz069.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/la/laz069.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/la/laz069.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/la/laz069.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/la.txt +station = ('kbve', 0.0047602543966678715) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/la/laz069.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/la/laz069.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/la/laz069.txt + +[laz070] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/la/laz070.txt +centroid = (0.52095983776928345, -1.5628830039663542) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/la/laz070.txt +description = Lower St. Bernard, LA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/la/laz070.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/la/laz070.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/la/laz070.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/la/laz070.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/la/laz070.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/la/laz070.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/la/laz070.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/la/laz070.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/la.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/la/laz070.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/la/laz070.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/la/laz070.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/la/laz070.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/la/laz070.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/la/laz070.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/la/laz070.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/la.txt +station = ('knew', 0.0081554496592948708) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/la/laz070.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/la/laz070.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/la/laz070.txt + +[laz071] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/la/laz071.txt +centroid = (0.53803962982929998, -1.5784391235893798) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/la/laz071.txt +description = Saint Helena, Ascension, Livingston and Northern Tangipahoa, LA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/la/laz071.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/la/laz071.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/la/laz071.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/la/laz071.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/la/laz071.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/la/laz071.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/la/laz071.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/la/laz071.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/la.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/la/laz071.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/la/laz071.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/la/laz071.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/la/laz071.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/la/laz071.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/la/laz071.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/la/laz071.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/la.txt +station = ('khdc', 0.0053593537148715837) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/la/laz071.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/la/laz071.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/la/laz071.txt + +[laz072] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/la/laz072.txt +centroid = (0.5324144336501222, -1.5776327814749584) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/la/laz072.txt +description = Washington, Saint Tammany, Southern Tangipahoa and Pearl River, LA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/la/laz072.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/la/laz072.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/la/laz072.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/la/laz072.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/la/laz072.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/la/laz072.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/la/laz072.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/la/laz072.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/la.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/la/laz072.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/la/laz072.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/la/laz072.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/la/laz072.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/la/laz072.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/la/laz072.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/la/laz072.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/la.txt +station = ('khdc', 0.00047528758510313604) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/la/laz072.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/la/laz072.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/la/laz072.txt + +[laz073] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/la/laz073.txt +centroid = (0.52125913371848054, -1.6307411961895293) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/la/laz073.txt +description = West Cameron, LA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/la/laz073.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/la/laz073.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/la/laz073.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/la/laz073.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/la/laz073.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/la/laz073.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/la/laz073.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/la/laz073.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/la.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/la/laz073.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/la/laz073.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/la/laz073.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/la/laz073.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/la/laz073.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/la/laz073.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/la/laz073.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/la.txt +station = ('kuxl', 0.0046818509225600193) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/la/laz073.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/la/laz073.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/la/laz073.txt + +[laz074] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/la/laz074.txt +centroid = (0.51982019348425701, -1.6254906455869365) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/la/laz074.txt +description = East Cameron, LA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/la/laz074.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/la/laz074.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/la/laz074.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/la/laz074.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/la/laz074.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/la/laz074.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/la/laz074.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/la/laz074.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/la.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/la/laz074.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/la/laz074.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/la/laz074.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/la/laz074.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/la/laz074.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/la/laz074.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/la/laz074.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/la.txt +station = ('kcmb', 0.0064287706157941417) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/la/laz074.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/la/laz074.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/la/laz074.txt + +[maz001] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ma/maz001.txt +centroid = (0.74281212964878673, -1.2767397637603879) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ma/maz001.txt +description = Northern Berkshire, MA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ma/maz001.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ma/maz001.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ma/maz001.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ma/maz001.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ma/maz001.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ma/maz001.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ma/maz001.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ma/maz001.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ma.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ma/maz001.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ma/maz001.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ma/maz001.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ma/maz001.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ma/maz001.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ma/maz001.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ma/maz001.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ma.txt +station = ('kaqw', 0.0024509071806547347) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ma/maz001.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ma/maz001.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ma/maz001.txt + +[maz002] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ma/maz002.txt +centroid = (0.74380871265167547, -1.2704373798314366) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ma/maz002.txt +description = Western Franklin, MA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ma/maz002.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ma/maz002.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ma/maz002.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ma/maz002.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ma/maz002.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ma/maz002.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ma/maz002.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ma/maz002.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ma.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ma/maz002.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ma/maz002.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ma/maz002.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ma/maz002.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ma/maz002.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ma/maz002.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ma/maz002.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ma.txt +station = ('kaqw', 0.005037859670113198) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ma/maz002.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ma/maz002.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ma/maz002.txt + +[maz003] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ma/maz003.txt +centroid = (0.74279642168551874, -1.2645154776794199) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ma/maz003.txt +description = Eastern Franklin, MA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ma/maz003.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ma/maz003.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ma/maz003.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ma/maz003.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ma/maz003.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ma/maz003.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ma/maz003.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ma/maz003.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ma.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ma/maz003.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ma/maz003.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ma/maz003.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ma/maz003.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ma/maz003.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ma/maz003.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ma/maz003.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ma.txt +station = ('kore', 0.0022461231826653777) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ma/maz003.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ma/maz003.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ma/maz003.txt + +[maz004] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ma/maz004.txt +centroid = (0.74096033531242067, -1.2562495983419746) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ma/maz004.txt +description = Northern Worcester, MA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ma/maz004.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ma/maz004.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ma/maz004.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ma/maz004.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ma/maz004.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ma/maz004.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ma/maz004.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ma/maz004.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ma.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ma/maz004.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ma/maz004.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ma/maz004.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ma/maz004.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ma/maz004.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ma/maz004.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ma/maz004.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ma.txt +station = ('korh', 0.00356832630685394) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ma/maz004.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ma/maz004.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ma/maz004.txt + +[maz005] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ma/maz005.txt +centroid = (0.74112439626210813, -1.2458107840857964) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ma/maz005.txt +description = Central Middlesex County, MA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ma/maz005.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ma/maz005.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ma/maz005.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ma/maz005.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ma/maz005.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ma/maz005.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ma/maz005.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ma/maz005.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ma.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ma/maz005.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ma/maz005.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ma/maz005.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ma/maz005.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ma/maz005.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ma/maz005.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ma/maz005.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ma.txt +station = ('kbed', 0.0010278280693411142) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ma/maz005.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ma/maz005.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ma/maz005.txt + +[maz006] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ma/maz006.txt +centroid = (0.74552262597713381, -1.2403339408930383) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ma/maz006.txt +description = Western Essex, MA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ma/maz006.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ma/maz006.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ma/maz006.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ma/maz006.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ma/maz006.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ma/maz006.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ma/maz006.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ma/maz006.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ma.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ma/maz006.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ma/maz006.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ma/maz006.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ma/maz006.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ma/maz006.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ma/maz006.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ma/maz006.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ma.txt +station = ('klwm', 0.00086505195828497799) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ma/maz006.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ma/maz006.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ma/maz006.txt + +[maz007] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ma/maz007.txt +centroid = (0.74415952383132633, -1.2368694623278296) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ma/maz007.txt +description = Eastern Essex, MA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ma/maz007.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ma/maz007.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ma/maz007.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ma/maz007.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ma/maz007.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ma/maz007.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ma/maz007.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ma/maz007.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ma.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ma/maz007.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ma/maz007.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ma/maz007.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ma/maz007.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ma/maz007.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ma/maz007.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ma/maz007.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ma.txt +station = ('kbvy', 0.0011333004681379254) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ma/maz007.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ma/maz007.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ma/maz007.txt + +[maz008] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ma/maz008.txt +centroid = (0.73982936195712834, -1.2717987366479921) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ma/maz008.txt +description = Western Hampshire, MA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ma/maz008.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ma/maz008.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ma/maz008.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ma/maz008.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ma/maz008.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ma/maz008.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ma/maz008.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ma/maz008.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ma.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ma/maz008.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ma/maz008.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ma/maz008.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ma/maz008.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ma/maz008.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ma/maz008.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ma/maz008.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ma.txt +station = ('kbaf', 0.0043503918398231974) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ma/maz008.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ma/maz008.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ma/maz008.txt + +[maz009] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ma/maz009.txt +centroid = (0.73596171233470886, -1.2729279646740324) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ma/maz009.txt +description = Western Hampden, MA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ma/maz009.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ma/maz009.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ma/maz009.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ma/maz009.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ma/maz009.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ma/maz009.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ma/maz009.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ma/maz009.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ma.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ma/maz009.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ma/maz009.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ma/maz009.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ma/maz009.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ma/maz009.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ma/maz009.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ma/maz009.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ma.txt +station = ('kbaf', 0.0028037454317211999) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ma/maz009.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ma/maz009.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ma/maz009.txt + +[maz010] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ma/maz010.txt +centroid = (0.73835106808068918, -1.2656185257666801) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ma/maz010.txt +description = Eastern Hampshire, MA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ma/maz010.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ma/maz010.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ma/maz010.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ma/maz010.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ma/maz010.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ma/maz010.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ma/maz010.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ma/maz010.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ma.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ma/maz010.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ma/maz010.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ma/maz010.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ma/maz010.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ma/maz010.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ma/maz010.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ma/maz010.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ma.txt +station = ('kcef', 0.0018381253217088086) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ma/maz010.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ma/maz010.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ma/maz010.txt + +[maz011] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ma/maz011.txt +centroid = (0.73513617159851552, -1.2652415346482493) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ma/maz011.txt +description = Eastern Hampden, MA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ma/maz011.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ma/maz011.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ma/maz011.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ma/maz011.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ma/maz011.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ma/maz011.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ma/maz011.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ma/maz011.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ma.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ma/maz011.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ma/maz011.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ma/maz011.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ma/maz011.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ma/maz011.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ma/maz011.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ma/maz011.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ma.txt +station = ('kcef', 0.0014873163594557013) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ma/maz011.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ma/maz011.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ma/maz011.txt + +[maz012] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ma/maz012.txt +centroid = (0.73567896899588581, -1.2526385121195982) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ma/maz012.txt +description = Southern Worcester, MA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ma/maz012.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ma/maz012.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ma/maz012.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ma/maz012.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ma/maz012.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ma/maz012.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ma/maz012.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ma/maz012.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ma.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ma/maz012.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ma/maz012.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ma/maz012.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ma/maz012.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ma/maz012.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ma/maz012.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ma/maz012.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ma.txt +station = ('korh', 0.0023636898286487507) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ma/maz012.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ma/maz012.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ma/maz012.txt + +[maz013] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ma/maz013.txt +centroid = (0.73552188936320628, -1.2438228540677749) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ma/maz013.txt +description = Western Norfolk, MA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ma/maz013.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ma/maz013.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ma/maz013.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ma/maz013.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ma/maz013.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ma/maz013.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ma/maz013.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ma/maz013.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ma.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ma/maz013.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ma/maz013.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ma/maz013.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ma/maz013.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ma/maz013.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ma/maz013.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ma/maz013.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ma.txt +station = ('kowd', 0.0014689082062336026) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ma/maz013.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ma/maz013.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ma/maz013.txt + +[maz014] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ma/maz014.txt +centroid = (0.74035645139123063, -1.241923935841605) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ma/maz014.txt +description = Southeast Middlesex, MA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ma/maz014.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ma/maz014.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ma/maz014.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ma/maz014.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ma/maz014.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ma/maz014.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ma/maz014.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ma/maz014.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ma.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ma/maz014.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ma/maz014.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ma/maz014.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ma/maz014.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ma/maz014.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ma/maz014.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ma/maz014.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ma.txt +station = ('kbed', 0.0020188179259027265) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ma/maz014.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ma/maz014.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ma/maz014.txt + +[maz015] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ma/maz015.txt +centroid = (0.73881183500321568, -1.2406254108781214) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ma/maz015.txt +description = Suffolk, MA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ma/maz015.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ma/maz015.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ma/maz015.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ma/maz015.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ma/maz015.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ma/maz015.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ma/maz015.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ma/maz015.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ma.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ma/maz015.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ma/maz015.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ma/maz015.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ma/maz015.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ma/maz015.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ma/maz015.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ma/maz015.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ma.txt +station = ('kbos', 0.0010560168284349976) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ma/maz015.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ma/maz015.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ma/maz015.txt + +[maz016] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ma/maz016.txt +centroid = (0.73690768078928981, -1.2393460845364095) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ma/maz016.txt +description = Eastern Norfolk, MA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ma/maz016.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ma/maz016.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ma/maz016.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ma/maz016.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ma/maz016.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ma/maz016.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ma/maz016.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ma/maz016.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ma.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ma/maz016.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ma/maz016.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ma/maz016.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ma/maz016.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ma/maz016.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ma/maz016.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ma/maz016.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ma.txt +station = ('kmqe', 0.0013905511699041871) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ma/maz016.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ma/maz016.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ma/maz016.txt + +[maz017] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ma/maz017.txt +centroid = (0.73159140788771504, -1.2424108827029114) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ma/maz017.txt +description = Northern Bristol, MA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ma/maz017.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ma/maz017.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ma/maz017.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ma/maz017.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ma/maz017.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ma/maz017.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ma/maz017.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ma/maz017.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ma.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ma/maz017.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ma/maz017.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ma/maz017.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ma/maz017.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ma/maz017.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ma/maz017.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ma/maz017.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ma.txt +station = ('ktan', 0.0022635262105268105) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ma/maz017.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ma/maz017.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ma/maz017.txt + +[maz018] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ma/maz018.txt +centroid = (0.73247803514772825, -1.237319757274844) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ma/maz018.txt +description = Western Plymouth, MA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ma/maz018.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ma/maz018.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ma/maz018.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ma/maz018.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ma/maz018.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ma/maz018.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ma/maz018.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ma/maz018.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ma.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ma/maz018.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ma/maz018.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ma/maz018.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ma/maz018.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ma/maz018.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ma/maz018.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ma/maz018.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ma.txt +station = ('ktan', 0.0021792110982323106) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ma/maz018.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ma/maz018.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ma/maz018.txt + +[maz019] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ma/maz019.txt +centroid = (0.73351127006490879, -1.234246232462082) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ma/maz019.txt +description = Eastern Plymouth, MA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ma/maz019.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ma/maz019.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ma/maz019.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ma/maz019.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ma/maz019.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ma/maz019.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ma/maz019.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ma/maz019.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ma.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ma/maz019.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ma/maz019.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ma/maz019.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ma/maz019.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ma/maz019.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ma/maz019.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ma/maz019.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ma.txt +station = ('kghg', 0.0013601292944775472) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ma/maz019.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ma/maz019.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ma/maz019.txt + +[maz020] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ma/maz020.txt +centroid = (0.72735898445162883, -1.2398539753487396) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ma/maz020.txt +description = Southern Bristol, MA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ma/maz020.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ma/maz020.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ma/maz020.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ma/maz020.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ma/maz020.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ma/maz020.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ma/maz020.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ma/maz020.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ma.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ma/maz020.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ma/maz020.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ma/maz020.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ma/maz020.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ma/maz020.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ma/maz020.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ma/maz020.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ma.txt +station = ('kewb', 0.00094742562437289996) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ma/maz020.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ma/maz020.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ma/maz020.txt + +[maz021] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ma/maz021.txt +centroid = (0.72852660972121308, -1.2352759767207586) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ma/maz021.txt +description = Southern Plymouth, MA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ma/maz021.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ma/maz021.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ma/maz021.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ma/maz021.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ma/maz021.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ma/maz021.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ma/maz021.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ma/maz021.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ma.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ma/maz021.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ma/maz021.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ma/maz021.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ma/maz021.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ma/maz021.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ma/maz021.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ma/maz021.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ma.txt +station = ('kewb', 0.0026823822722785691) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ma/maz021.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ma/maz021.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ma/maz021.txt + +[maz022] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ma/maz022.txt +centroid = (0.72825957434565791, -1.2269420295424855) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ma/maz022.txt +description = Barnstable, MA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ma/maz022.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ma/maz022.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ma/maz022.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ma/maz022.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ma/maz022.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ma/maz022.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ma/maz022.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ma/maz022.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ma.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ma/maz022.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ma/maz022.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ma/maz022.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ma/maz022.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ma/maz022.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ma/maz022.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ma/maz022.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ma.txt +station = ('khya', 0.0011192926476798135) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ma/maz022.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ma/maz022.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ma/maz022.txt + +[maz023] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ma/maz023.txt +centroid = (0.72250696913108459, -1.2331815816183653) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ma/maz023.txt +description = Dukes, MA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ma/maz023.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ma/maz023.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ma/maz023.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ma/maz023.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ma/maz023.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ma/maz023.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ma/maz023.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ma/maz023.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ma.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ma/maz023.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ma/maz023.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ma/maz023.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ma/maz023.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ma/maz023.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ma/maz023.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ma/maz023.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ma.txt +station = ('kmvy', 0.00051967027368990545) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ma/maz023.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ma/maz023.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ma/maz023.txt + +[maz024] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ma/maz024.txt +centroid = (0.72043875396747137, -1.2230290013595144) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ma/maz024.txt +description = Nantucket, MA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ma/maz024.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ma/maz024.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ma/maz024.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ma/maz024.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ma/maz024.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ma/maz024.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ma/maz024.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ma/maz024.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ma.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ma/maz024.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ma/maz024.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ma/maz024.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ma/maz024.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ma/maz024.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ma/maz024.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ma/maz024.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ma.txt +station = ('kack', 0.00050082152269230831) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ma/maz024.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ma/maz024.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ma/maz024.txt + +[maz025] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ma/maz025.txt +centroid = (0.73680470636342221, -1.2784728757076183) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ma/maz025.txt +description = Southern Berkshire, MA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ma/maz025.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ma/maz025.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ma/maz025.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ma/maz025.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ma/maz025.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ma/maz025.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ma/maz025.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ma/maz025.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ma.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ma/maz025.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ma/maz025.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ma/maz025.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ma/maz025.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ma/maz025.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ma/maz025.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ma/maz025.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ma.txt +station = ('kpsf', 0.0038193884993009564) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ma/maz025.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ma/maz025.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ma/maz025.txt + +[maz026] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ma/maz026.txt +centroid = (0.74418395844085417, -1.2506994513206326) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ma/maz026.txt +description = Northwest Middlesex County, MA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ma/maz026.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ma/maz026.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ma/maz026.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ma/maz026.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ma/maz026.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ma/maz026.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ma/maz026.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ma/maz026.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ma.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ma/maz026.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ma/maz026.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ma/maz026.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ma/maz026.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ma/maz026.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ma/maz026.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ma/maz026.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ma.txt +station = ('kfit', 0.0019518833794115703) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ma/maz026.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ma/maz026.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ma/maz026.txt + +[mdz001] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/md/mdz001.txt +centroid = (0.68990421870383045, -1.3835905658967327) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/md/mdz001.txt +description = Garrett, MD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/md/mdz001.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/md/mdz001.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/md/mdz001.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/md/mdz001.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/md/mdz001.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/md/mdz001.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/md/mdz001.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/md/mdz001.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/md.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/md/mdz001.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/md/mdz001.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/md/mdz001.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/md/mdz001.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/md/mdz001.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/md/mdz001.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/md/mdz001.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/md.txt +station = ('k2g4', 0.0012633267985862741) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/md/mdz001.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/md/mdz001.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/md/mdz001.txt + +[mdz003] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/md/mdz003.txt +centroid = (0.69121496097207835, -1.3581139948053715) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/md/mdz003.txt +description = Washington, MD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/md/mdz003.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/md/mdz003.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/md/mdz003.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/md/mdz003.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/md/mdz003.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/md/mdz003.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/md/mdz003.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/md/mdz003.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/md.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/md/mdz003.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/md/mdz003.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/md/mdz003.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/md/mdz003.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/md/mdz003.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/md/mdz003.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/md/mdz003.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/md.txt +station = ('khgr', 0.0020014493575402376) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/md/mdz003.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/md/mdz003.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/md/mdz003.txt + +[mdz004] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/md/mdz004.txt +centroid = (0.6889198530057058, -1.3508516797878232) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/md/mdz004.txt +description = Frederick, MD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/md/mdz004.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/md/mdz004.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/md/mdz004.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/md/mdz004.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/md/mdz004.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/md/mdz004.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/md/mdz004.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/md/mdz004.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/md.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/md/mdz004.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/md/mdz004.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/md/mdz004.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/md/mdz004.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/md/mdz004.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/md/mdz004.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/md/mdz004.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/md.txt +station = ('kfdk', 0.0010065267285631939) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/md/mdz004.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/md/mdz004.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/md/mdz004.txt + +[mdz005] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/md/mdz005.txt +centroid = (0.69050635729576859, -1.3442997137758366) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/md/mdz005.txt +description = Carroll, MD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/md/mdz005.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/md/mdz005.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/md/mdz005.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/md/mdz005.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/md/mdz005.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/md/mdz005.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/md/mdz005.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/md/mdz005.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/md.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/md/mdz005.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/md/mdz005.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/md/mdz005.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/md/mdz005.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/md/mdz005.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/md/mdz005.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/md/mdz005.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/md.txt +station = ('kdmw', 0.00083619369970054918) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/md/mdz005.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/md/mdz005.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/md/mdz005.txt + +[mdz006] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/md/mdz006.txt +centroid = (0.69017998072564568, -1.3381037949312566) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/md/mdz006.txt +description = Northern Baltimore, MD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/md/mdz006.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/md/mdz006.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/md/mdz006.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/md/mdz006.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/md/mdz006.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/md/mdz006.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/md/mdz006.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/md/mdz006.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/md.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/md/mdz006.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/md/mdz006.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/md/mdz006.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/md/mdz006.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/md/mdz006.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/md/mdz006.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/md/mdz006.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/md.txt +station = ('kdmh', 0.0046081422433850655) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/md/mdz006.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/md/mdz006.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/md/mdz006.txt + +[mdz007] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/md/mdz007.txt +centroid = (0.6918397888442922, -1.3292514849651413) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/md/mdz007.txt +description = Harford, MD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/md/mdz007.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/md/mdz007.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/md/mdz007.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/md/mdz007.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/md/mdz007.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/md/mdz007.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/md/mdz007.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/md/mdz007.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/md.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/md/mdz007.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/md/mdz007.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/md/mdz007.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/md/mdz007.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/md/mdz007.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/md/mdz007.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/md/mdz007.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/md.txt +station = ('kapg', 0.0030176519869925321) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/md/mdz007.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/md/mdz007.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/md/mdz007.txt + +[mdz008] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/md/mdz008.txt +centroid = (0.6907123061475039, -1.325375108696462) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/md/mdz008.txt +description = Cecil, MD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/md/mdz008.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/md/mdz008.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/md/mdz008.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/md/mdz008.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/md/mdz008.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/md/mdz008.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/md/mdz008.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/md/mdz008.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/md.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/md/mdz008.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/md/mdz008.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/md/mdz008.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/md/mdz008.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/md/mdz008.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/md/mdz008.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/md/mdz008.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/md.txt +station = ('kapg', 0.0036073809164031802) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/md/mdz008.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/md/mdz008.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/md/mdz008.txt + +[mdz009] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/md/mdz009.txt +centroid = (0.68305729204825671, -1.3474657410389541) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/md/mdz009.txt +description = Montgomery, MD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/md/mdz009.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/md/mdz009.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/md/mdz009.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/md/mdz009.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/md/mdz009.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/md/mdz009.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/md/mdz009.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/md/mdz009.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/md.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/md/mdz009.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/md/mdz009.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/md/mdz009.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/md/mdz009.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/md/mdz009.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/md/mdz009.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/md/mdz009.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/md.txt +station = ('kgai', 0.00074763147567238474) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/md/mdz009.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/md/mdz009.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/md/mdz009.txt + +[mdz010] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/md/mdz010.txt +centroid = (0.68505918470029425, -1.3427079734980176) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/md/mdz010.txt +description = Howard, MD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/md/mdz010.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/md/mdz010.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/md/mdz010.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/md/mdz010.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/md/mdz010.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/md/mdz010.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/md/mdz010.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/md/mdz010.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/md.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/md/mdz010.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/md/mdz010.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/md/mdz010.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/md/mdz010.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/md/mdz010.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/md/mdz010.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/md/mdz010.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/md.txt +station = ('kgai', 0.0035215346538638205) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/md/mdz010.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/md/mdz010.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/md/mdz010.txt + +[mdz011] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/md/mdz011.txt +centroid = (0.68645893876039377, -1.3370897586358479) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/md/mdz011.txt +description = Southern Baltimore, MD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/md/mdz011.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/md/mdz011.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/md/mdz011.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/md/mdz011.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/md/mdz011.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/md/mdz011.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/md/mdz011.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/md/mdz011.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/md.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/md/mdz011.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/md/mdz011.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/md/mdz011.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/md/mdz011.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/md/mdz011.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/md/mdz011.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/md/mdz011.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/md.txt +station = ('kdmh', 0.00084086401210725561) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/md/mdz011.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/md/mdz011.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/md/mdz011.txt + +[mdz012] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/md/mdz012.txt +centroid = (0.68517088577242191, -1.3270820407049122) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/md/mdz012.txt +description = Kent, MD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/md/mdz012.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/md/mdz012.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/md/mdz012.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/md/mdz012.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/md/mdz012.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/md/mdz012.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/md/mdz012.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/md/mdz012.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/md.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/md/mdz012.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/md/mdz012.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/md/mdz012.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/md/mdz012.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/md/mdz012.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/md/mdz012.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/md/mdz012.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/md.txt +station = ('kapg', 0.0040545551987843341) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/md/mdz012.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/md/mdz012.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/md/mdz012.txt + +[mdz013] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/md/mdz013.txt +centroid = (0.67773403782967412, -1.3411738290855146) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/md/mdz013.txt +description = Prince Georges, MD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/md/mdz013.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/md/mdz013.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/md/mdz013.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/md/mdz013.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/md/mdz013.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/md/mdz013.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/md/mdz013.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/md/mdz013.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/md.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/md/mdz013.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/md/mdz013.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/md/mdz013.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/md/mdz013.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/md/mdz013.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/md/mdz013.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/md/mdz013.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/md.txt +station = ('kadw', 0.00026981880102926268) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/md/mdz013.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/md/mdz013.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/md/mdz013.txt + +[mdz014] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/md/mdz014.txt +centroid = (0.67950903767895232, -1.3356655699662205) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/md/mdz014.txt +description = Anne Arundel, MD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/md/mdz014.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/md/mdz014.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/md/mdz014.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/md/mdz014.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/md/mdz014.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/md/mdz014.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/md/mdz014.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/md/mdz014.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/md.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/md/mdz014.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/md/mdz014.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/md/mdz014.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/md/mdz014.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/md/mdz014.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/md/mdz014.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/md/mdz014.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/md.txt +station = ('knak', 0.0010673409521304562) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/md/mdz014.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/md/mdz014.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/md/mdz014.txt + +[mdz015] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/md/mdz015.txt +centroid = (0.6819088654004446, -1.3267923160490813) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/md/mdz015.txt +description = Queen Anne's, MD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/md/mdz015.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/md/mdz015.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/md/mdz015.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/md/mdz015.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/md/mdz015.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/md/mdz015.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/md/mdz015.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/md/mdz015.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/md.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/md/mdz015.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/md/mdz015.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/md/mdz015.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/md/mdz015.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/md/mdz015.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/md/mdz015.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/md/mdz015.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/md.txt +station = ('kesn', 0.0047641611867298055) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/md/mdz015.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/md/mdz015.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/md/mdz015.txt + +[mdz016] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/md/mdz016.txt +centroid = (0.670072042413419, -1.3435701661485029) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/md/mdz016.txt +description = Charles, MD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/md/mdz016.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/md/mdz016.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/md/mdz016.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/md/mdz016.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/md/mdz016.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/md/mdz016.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/md/mdz016.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/md/mdz016.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/md.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/md/mdz016.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/md/mdz016.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/md/mdz016.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/md/mdz016.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/md/mdz016.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/md/mdz016.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/md/mdz016.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/md.txt +station = ('knyg', 0.0047496565163332467) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/md/mdz016.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/md/mdz016.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/md/mdz016.txt + +[mdz017] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/md/mdz017.txt +centroid = (0.66854138865941992, -1.3370635786970679) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/md/mdz017.txt +description = St. Marys, MD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/md/mdz017.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/md/mdz017.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/md/mdz017.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/md/mdz017.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/md/mdz017.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/md/mdz017.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/md/mdz017.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/md/mdz017.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/md.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/md/mdz017.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/md/mdz017.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/md/mdz017.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/md/mdz017.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/md/mdz017.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/md/mdz017.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/md/mdz017.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/md.txt +station = ('k2w6', 0.00083982900449964583) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/md/mdz017.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/md/mdz017.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/md/mdz017.txt + +[mdz018] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/md/mdz018.txt +centroid = (0.67284711592408997, -1.33639162693505) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/md/mdz018.txt +description = Calvert, MD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/md/mdz018.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/md/mdz018.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/md/mdz018.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/md/mdz018.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/md/mdz018.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/md/mdz018.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/md/mdz018.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/md/mdz018.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/md.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/md/mdz018.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/md/mdz018.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/md/mdz018.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/md/mdz018.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/md/mdz018.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/md/mdz018.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/md/mdz018.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/md.txt +station = ('k2w6', 0.004045829739204353) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/md/mdz018.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/md/mdz018.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/md/mdz018.txt + +[mdz019] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/md/mdz019.txt +centroid = (0.67673221883902934, -1.3280698970615412) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/md/mdz019.txt +description = Talbot, MD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/md/mdz019.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/md/mdz019.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/md/mdz019.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/md/mdz019.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/md/mdz019.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/md/mdz019.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/md/mdz019.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/md/mdz019.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/md.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/md/mdz019.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/md/mdz019.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/md/mdz019.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/md/mdz019.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/md/mdz019.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/md/mdz019.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/md/mdz019.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/md.txt +station = ('kesn', 0.0005778501058210676) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/md/mdz019.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/md/mdz019.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/md/mdz019.txt + +[mdz020] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/md/mdz020.txt +centroid = (0.67843915084747974, -1.3235128423845839) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/md/mdz020.txt +description = Caroline, MD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/md/mdz020.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/md/mdz020.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/md/mdz020.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/md/mdz020.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/md/mdz020.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/md/mdz020.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/md/mdz020.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/md/mdz020.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/md.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/md/mdz020.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/md/mdz020.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/md/mdz020.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/md/mdz020.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/md/mdz020.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/md/mdz020.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/md/mdz020.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/md.txt +station = ('kesn', 0.0034307810554016537) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/md/mdz020.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/md/mdz020.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/md/mdz020.txt + +[mdz021] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/md/mdz021.txt +centroid = (0.67160095083816607, -1.3265898578558499) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/md/mdz021.txt +description = Dorchester, MD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/md/mdz021.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/md/mdz021.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/md/mdz021.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/md/mdz021.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/md/mdz021.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/md/mdz021.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/md/mdz021.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/md/mdz021.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/md.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/md/mdz021.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/md/mdz021.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/md/mdz021.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/md/mdz021.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/md/mdz021.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/md/mdz021.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/md/mdz021.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/md.txt +station = ('kcge', 0.0010911262161928542) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/md/mdz021.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/md/mdz021.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/md/mdz021.txt + +[mdz022] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/md/mdz022.txt +centroid = (0.66974741117254799, -1.319805763053348) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/md/mdz022.txt +description = Wicomico, MD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/md/mdz022.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/md/mdz022.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/md/mdz022.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/md/mdz022.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/md/mdz022.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/md/mdz022.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/md/mdz022.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/md/mdz022.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/md.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/md/mdz022.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/md/mdz022.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/md/mdz022.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/md/mdz022.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/md/mdz022.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/md/mdz022.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/md/mdz022.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/md.txt +station = ('ksby', 0.0017783483985700471) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/md/mdz022.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/md/mdz022.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/md/mdz022.txt + +[mdz023] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/md/mdz023.txt +centroid = (0.66529856690921452, -1.321997896593853) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/md/mdz023.txt +description = Somerset, MD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/md/mdz023.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/md/mdz023.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/md/mdz023.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/md/mdz023.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/md/mdz023.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/md/mdz023.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/md/mdz023.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/md/mdz023.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/md.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/md/mdz023.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/md/mdz023.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/md/mdz023.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/md/mdz023.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/md/mdz023.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/md/mdz023.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/md/mdz023.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/md.txt +station = ('kwal', 0.0050110859267956283) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/md/mdz023.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/md/mdz023.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/md/mdz023.txt + +[mdz024] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/md/mdz024.txt +centroid = (0.66696361101561707, -1.3156867860186414) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/md/mdz024.txt +description = Inland Worcester, MD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/md/mdz024.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/md/mdz024.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/md/mdz024.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/md/mdz024.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/md/mdz024.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/md/mdz024.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/md/mdz024.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/md/mdz024.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/md.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/md/mdz024.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/md/mdz024.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/md/mdz024.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/md/mdz024.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/md/mdz024.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/md/mdz024.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/md/mdz024.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/md.txt +station = ('ksby', 0.0026230113146807122) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/md/mdz024.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/md/mdz024.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/md/mdz024.txt + +[mdz025] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/md/mdz025.txt +centroid = (0.66760589218035093, -1.3117859751404342) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/md/mdz025.txt +description = Maryland Beaches, MD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/md/mdz025.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/md/mdz025.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/md/mdz025.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/md/mdz025.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/md/mdz025.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/md/mdz025.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/md/mdz025.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/md/mdz025.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/md.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/md/mdz025.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/md/mdz025.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/md/mdz025.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/md/mdz025.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/md/mdz025.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/md/mdz025.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/md/mdz025.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/md.txt +station = ('koxb', 0.0012894717964366928) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/md/mdz025.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/md/mdz025.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/md/mdz025.txt + +[mdz501] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/md/mdz501.txt +centroid = (0.69117656372853442, -1.3775604533310923) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/md/mdz501.txt +description = Extreme Western Allegany, MD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/md/mdz501.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/md/mdz501.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/md/mdz501.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/md/mdz501.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/md/mdz501.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/md/mdz501.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/md/mdz501.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/md/mdz501.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/md.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/md/mdz501.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/md/mdz501.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/md/mdz501.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/md/mdz501.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/md/mdz501.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/md/mdz501.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/md/mdz501.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/md.txt +station = ('kcbe', 0.0022659576094693902) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/md/mdz501.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/md/mdz501.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/md/mdz501.txt + +[mdz502] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/md/mdz502.txt +centroid = (0.69168096388236078, -1.371776432189983) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/md/mdz502.txt +description = Central and Eastern Allegany, MD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/md/mdz502.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/md/mdz502.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/md/mdz502.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/md/mdz502.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/md/mdz502.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/md/mdz502.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/md/mdz502.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/md/mdz502.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/md.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/md/mdz502.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/md/mdz502.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/md/mdz502.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/md/mdz502.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/md/mdz502.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/md/mdz502.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/md/mdz502.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/md.txt +station = ('kcbe', 0.0022182600346247047) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/md/mdz502.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/md/mdz502.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/md/mdz502.txt + +[mez001] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/me/mez001.txt +centroid = (0.81939717722629779, -1.2061569034804851) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/me/mez001.txt +description = Northwest Aroostook, ME +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/me/mez001.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/me/mez001.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/me/mez001.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/me/mez001.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/me/mez001.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/me/mez001.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/me/mez001.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/me/mez001.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/me.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/me/mez001.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/me/mez001.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/me/mez001.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/me/mez001.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/me/mez001.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/me/mez001.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/me/mez001.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/me.txt +station = ('k40b', 0.0077018369117949157) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/me/mez001.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/me/mez001.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/me/mez001.txt + +[mez002] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/me/mez002.txt +centroid = (0.81552952760387842, -1.1906321997839957) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/me/mez002.txt +description = Northeast Aroostook, ME +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/me/mez002.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/me/mez002.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/me/mez002.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/me/mez002.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/me/mez002.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/me/mez002.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/me/mez002.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/me/mez002.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/me.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/me/mez002.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/me/mez002.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/me/mez002.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/me/mez002.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/me/mez002.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/me/mez002.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/me/mez002.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/me.txt +station = ('kpqi', 0.0021488842013866988) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/me/mez002.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/me/mez002.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/me/mez002.txt + +[mez003] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/me/mez003.txt +centroid = (0.80698090492761021, -1.2212348028884643) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/me/mez003.txt +description = Northern Somerset, ME +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/me/mez003.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/me/mez003.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/me/mez003.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/me/mez003.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/me/mez003.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/me/mez003.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/me/mez003.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/me/mez003.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/me.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/me/mez003.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/me/mez003.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/me/mez003.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/me/mez003.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/me/mez003.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/me/mez003.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/me/mez003.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/me.txt +station = ('k40b', 0.0084735182963425627) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/me/mez003.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/me/mez003.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/me/mez003.txt + +[mez004] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/me/mez004.txt +centroid = (0.80603668180228116, -1.2084659740808736) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/me/mez004.txt +description = Northern Piscataquis, ME +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/me/mez004.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/me/mez004.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/me/mez004.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/me/mez004.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/me/mez004.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/me/mez004.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/me/mez004.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/me/mez004.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/me.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/me/mez004.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/me/mez004.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/me/mez004.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/me/mez004.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/me/mez004.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/me/mez004.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/me/mez004.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/me.txt +station = ('k40b', 0.0083597632055142142) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/me/mez004.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/me/mez004.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/me/mez004.txt + +[mez005] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/me/mez005.txt +centroid = (0.80189850614580271, -1.1980917370070194) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/me/mez005.txt +description = Northern Penobscot, ME +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/me/mez005.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/me/mez005.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/me/mez005.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/me/mez005.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/me/mez005.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/me/mez005.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/me/mez005.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/me/mez005.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/me.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/me/mez005.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/me/mez005.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/me/mez005.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/me/mez005.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/me/mez005.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/me/mez005.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/me/mez005.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/me.txt +station = ('kmlt', 0.0051980239054208463) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/me/mez005.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/me/mez005.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/me/mez005.txt + +[mez006] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/me/mez006.txt +centroid = (0.80290556112420353, -1.1888711625687334) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/me/mez006.txt +description = Southeast Aroostook, ME +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/me/mez006.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/me/mez006.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/me/mez006.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/me/mez006.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/me/mez006.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/me/mez006.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/me/mez006.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/me/mez006.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/me.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/me/mez006.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/me/mez006.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/me/mez006.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/me/mez006.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/me/mez006.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/me/mez006.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/me/mez006.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/me.txt +station = ('khul', 0.0043238719057879715) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/me/mez006.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/me/mez006.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/me/mez006.txt + +[mez007] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/me/mez007.txt +centroid = (0.78265974180106923, -1.237070175191809) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/me/mez007.txt +description = Northern Oxford, ME +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/me/mez007.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/me/mez007.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/me/mez007.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/me/mez007.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/me/mez007.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/me/mez007.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/me/mez007.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/me/mez007.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/me.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/me/mez007.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/me/mez007.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/me/mez007.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/me/mez007.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/me/mez007.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/me/mez007.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/me/mez007.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/me.txt +station = ('kbml', 0.0059001954639355866) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/me/mez007.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/me/mez007.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/me/mez007.txt + +[mez008] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/me/mez008.txt +centroid = (0.78664956447112822, -1.2308917096397489) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/me/mez008.txt +description = Northern Franklin, ME +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/me/mez008.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/me/mez008.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/me/mez008.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/me/mez008.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/me/mez008.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/me/mez008.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/me/mez008.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/me/mez008.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/me.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/me/mez008.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/me/mez008.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/me/mez008.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/me/mez008.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/me/mez008.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/me/mez008.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/me/mez008.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/me.txt +station = ('kbml', 0.011793156396225097) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/me/mez008.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/me/mez008.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/me/mez008.txt + +[mez009] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/me/mez009.txt +centroid = (0.79377574380702098, -1.2229173002873868) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/me/mez009.txt +description = Central Somerset, ME +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/me/mez009.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/me/mez009.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/me/mez009.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/me/mez009.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/me/mez009.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/me/mez009.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/me/mez009.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/me/mez009.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/me.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/me/mez009.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/me/mez009.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/me/mez009.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/me/mez009.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/me/mez009.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/me/mez009.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/me/mez009.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/me.txt +station = ('kgnr', 0.0059363732311623115) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/me/mez009.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/me/mez009.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/me/mez009.txt + +[mez010] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/me/mez010.txt +centroid = (0.79518771517188447, -1.2117489384038751) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/me/mez010.txt +description = Central Piscataquis, ME +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/me/mez010.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/me/mez010.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/me/mez010.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/me/mez010.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/me/mez010.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/me/mez010.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/me/mez010.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/me/mez010.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/me.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/me/mez010.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/me/mez010.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/me/mez010.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/me/mez010.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/me/mez010.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/me/mez010.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/me/mez010.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/me.txt +station = ('kgnr', 0.0025118511301528076) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/me/mez010.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/me/mez010.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/me/mez010.txt + +[mez011] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/me/mez011.txt +centroid = (0.79220669280947809, -1.1939256360825088) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/me/mez011.txt +description = Central Penobscot, ME +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/me/mez011.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/me/mez011.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/me/mez011.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/me/mez011.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/me/mez011.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/me/mez011.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/me/mez011.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/me/mez011.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/me.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/me/mez011.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/me/mez011.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/me/mez011.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/me/mez011.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/me/mez011.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/me/mez011.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/me/mez011.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/me.txt +station = ('kmlt', 0.0057812767844126409) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/me/mez011.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/me/mez011.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/me/mez011.txt + +[mez012] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/me/mez012.txt +centroid = (0.77253683213950208, -1.2334398903476607) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/me/mez012.txt +description = Southern Oxford, ME +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/me/mez012.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/me/mez012.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/me/mez012.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/me/mez012.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/me/mez012.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/me/mez012.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/me/mez012.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/me/mez012.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/me.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/me/mez012.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/me/mez012.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/me/mez012.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/me/mez012.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/me/mez012.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/me/mez012.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/me/mez012.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/me.txt +station = ('kizg', 0.0060057918070011342) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/me/mez012.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/me/mez012.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/me/mez012.txt + +[mez013] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/me/mez013.txt +centroid = (0.77941342939235969, -1.2249034849761562) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/me/mez013.txt +description = Southern Franklin, ME +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/me/mez013.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/me/mez013.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/me/mez013.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/me/mez013.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/me/mez013.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/me/mez013.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/me/mez013.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/me/mez013.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/me.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/me/mez013.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/me/mez013.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/me/mez013.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/me/mez013.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/me/mez013.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/me/mez013.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/me/mez013.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/me.txt +station = ('kaug', 0.0076094130684294867) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/me/mez013.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/me/mez013.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/me/mez013.txt + +[mez014] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/me/mez014.txt +centroid = (0.78260214593575328, -1.2158522074753138) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/me/mez014.txt +description = Southern Somerset, ME +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/me/mez014.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/me/mez014.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/me/mez014.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/me/mez014.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/me/mez014.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/me/mez014.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/me/mez014.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/me/mez014.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/me.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/me/mez014.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/me/mez014.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/me/mez014.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/me/mez014.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/me/mez014.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/me/mez014.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/me/mez014.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/me.txt +station = ('kwvl', 0.0053546834801563468) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/me/mez014.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/me/mez014.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/me/mez014.txt + +[mez015] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/me/mez015.txt +centroid = (0.78428464333467596, -1.2015562155722281) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/me/mez015.txt +description = Southern Penobscot, ME +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/me/mez015.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/me/mez015.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/me/mez015.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/me/mez015.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/me/mez015.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/me/mez015.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/me/mez015.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/me/mez015.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/me.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/me/mez015.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/me/mez015.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/me/mez015.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/me/mez015.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/me/mez015.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/me/mez015.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/me/mez015.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/me.txt +station = ('kbgr', 0.0024012372604524795) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/me/mez015.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/me/mez015.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/me/mez015.txt + +[mez016] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/me/mez016.txt +centroid = (0.78279762281197673, -1.1924770128033537) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/me/mez016.txt +description = Interior Hancock, ME +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/me/mez016.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/me/mez016.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/me/mez016.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/me/mez016.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/me/mez016.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/me/mez016.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/me/mez016.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/me/mez016.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/me.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/me/mez016.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/me/mez016.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/me/mez016.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/me/mez016.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/me/mez016.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/me/mez016.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/me/mez016.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/me.txt +station = ('kbgr', 0.0061644874161994739) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/me/mez016.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/me/mez016.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/me/mez016.txt + +[mez017] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/me/mez017.txt +centroid = (0.78556047901788384, -1.1804324956353407) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/me/mez017.txt +description = Central Washington, ME +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/me/mez017.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/me/mez017.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/me/mez017.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/me/mez017.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/me/mez017.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/me/mez017.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/me/mez017.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/me/mez017.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/me.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/me/mez017.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/me/mez017.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/me/mez017.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/me/mez017.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/me/mez017.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/me/mez017.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/me/mez017.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/me.txt +station = ('cwss', 0.0059536254606811275) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/me/mez017.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/me/mez017.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/me/mez017.txt + +[mez018] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/me/mez018.txt +centroid = (0.76024796887620993, -1.2353161192935547) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/me/mez018.txt +description = Interior York, ME +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/me/mez018.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/me/mez018.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/me/mez018.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/me/mez018.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/me/mez018.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/me/mez018.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/me/mez018.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/me/mez018.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/me.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/me/mez018.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/me/mez018.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/me/mez018.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/me/mez018.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/me/mez018.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/me/mez018.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/me/mez018.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/me.txt +station = ('ksfm', 0.002883101425068737) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/me/mez018.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/me/mez018.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/me/mez018.txt + +[mez019] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/me/mez019.txt +centroid = (0.76612100180917087, -1.2306368915689578) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/me/mez019.txt +description = Interior Cumberland, ME +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/me/mez019.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/me/mez019.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/me/mez019.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/me/mez019.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/me/mez019.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/me/mez019.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/me/mez019.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/me/mez019.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/me.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/me/mez019.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/me/mez019.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/me/mez019.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/me/mez019.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/me/mez019.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/me/mez019.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/me/mez019.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/me.txt +station = ('klew', 0.0039241000526099544) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/me/mez019.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/me/mez019.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/me/mez019.txt + +[mez020] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/me/mez020.txt +centroid = (0.77083164546030358, -1.2252996747163589) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/me/mez020.txt +description = Androscoggin, ME +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/me/mez020.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/me/mez020.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/me/mez020.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/me/mez020.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/me/mez020.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/me/mez020.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/me/mez020.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/me/mez020.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/me.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/me/mez020.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/me/mez020.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/me/mez020.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/me/mez020.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/me/mez020.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/me/mez020.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/me/mez020.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/me.txt +station = ('klew', 0.0022433607168471214) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/me/mez020.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/me/mez020.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/me/mez020.txt + +[mez021] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/me/mez021.txt +centroid = (0.77508850350591785, -1.217667349897388) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/me/mez021.txt +description = Kennebec, ME +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/me/mez021.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/me/mez021.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/me/mez021.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/me/mez021.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/me/mez021.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/me/mez021.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/me/mez021.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/me/mez021.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/me.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/me/mez021.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/me/mez021.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/me/mez021.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/me/mez021.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/me/mez021.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/me/mez021.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/me/mez021.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/me.txt +station = ('kaug', 0.001667754498559292) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/me/mez021.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/me/mez021.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/me/mez021.txt + +[mez022] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/me/mez022.txt +centroid = (0.77738012081378627, -1.2072599515677458) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/me/mez022.txt +description = Interior Waldo, ME +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/me/mez022.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/me/mez022.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/me/mez022.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/me/mez022.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/me/mez022.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/me/mez022.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/me/mez022.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/me/mez022.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/me.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/me/mez022.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/me/mez022.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/me/mez022.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/me/mez022.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/me/mez022.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/me/mez022.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/me/mez022.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/me.txt +station = ('kbgr', 0.0063110127929065143) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/me/mez022.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/me/mez022.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/me/mez022.txt + +[mez023] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/me/mez023.txt +centroid = (0.75631923272997081, -1.2322111785542567) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/me/mez023.txt +description = Coastal York, ME +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/me/mez023.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/me/mez023.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/me/mez023.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/me/mez023.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/me/mez023.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/me/mez023.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/me/mez023.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/me/mez023.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/me.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/me/mez023.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/me/mez023.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/me/mez023.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/me/mez023.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/me/mez023.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/me/mez023.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/me/mez023.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/me.txt +station = ('ksfm', 0.001871736204449497) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/me/mez023.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/me/mez023.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/me/mez023.txt + +[mez024] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/me/mez024.txt +centroid = (0.76349253595566746, -1.2249767888047403) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/me/mez024.txt +description = Coastal Cumberland, ME +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/me/mez024.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/me/mez024.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/me/mez024.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/me/mez024.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/me/mez024.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/me/mez024.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/me/mez024.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/me/mez024.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/me.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/me/mez024.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/me/mez024.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/me/mez024.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/me/mez024.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/me/mez024.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/me/mez024.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/me/mez024.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/me.txt +station = ('kpwm', 0.0021937996983260547) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/me/mez024.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/me/mez024.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/me/mez024.txt + +[mez025] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/me/mez025.txt +centroid = (0.76742999874816664, -1.2193097047235146) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/me/mez025.txt +description = Sagadahoc, ME +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/me/mez025.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/me/mez025.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/me/mez025.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/me/mez025.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/me/mez025.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/me/mez025.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/me/mez025.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/me/mez025.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/me.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/me/mez025.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/me/mez025.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/me/mez025.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/me/mez025.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/me/mez025.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/me/mez025.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/me/mez025.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/me.txt +station = ('kiwi', 0.0018180419764057274) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/me/mez025.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/me/mez025.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/me/mez025.txt + +[mez026] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/me/mez026.txt +centroid = (0.76925735847500476, -1.2137560670436685) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/me/mez026.txt +description = Lincoln, ME +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/me/mez026.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/me/mez026.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/me/mez026.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/me/mez026.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/me/mez026.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/me/mez026.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/me/mez026.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/me/mez026.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/me.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/me/mez026.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/me/mez026.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/me/mez026.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/me/mez026.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/me/mez026.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/me/mez026.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/me/mez026.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/me.txt +station = ('kiwi', 0.0028867574562693294) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/me/mez026.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/me/mez026.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/me/mez026.txt + +[mez027] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/me/mez027.txt +centroid = (0.77056286475549651, -1.2072966034820376) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/me/mez027.txt +description = Knox, ME +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/me/mez027.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/me/mez027.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/me/mez027.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/me/mez027.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/me/mez027.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/me/mez027.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/me/mez027.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/me/mez027.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/me.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/me/mez027.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/me/mez027.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/me/mez027.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/me/mez027.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/me/mez027.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/me/mez027.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/me/mez027.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/me.txt +station = ('krkd', 0.0017182287102736778) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/me/mez027.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/me/mez027.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/me/mez027.txt + +[mez028] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/me/mez028.txt +centroid = (0.77403606996696517, -1.2051707924531083) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/me/mez028.txt +description = Coastal Waldo, ME +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/me/mez028.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/me/mez028.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/me/mez028.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/me/mez028.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/me/mez028.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/me/mez028.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/me/mez028.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/me/mez028.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/me.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/me/mez028.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/me/mez028.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/me/mez028.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/me/mez028.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/me/mez028.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/me/mez028.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/me/mez028.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/me.txt +station = ('krkd', 0.0049653234729070527) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/me/mez028.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/me/mez028.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/me/mez028.txt + +[mez029] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/me/mez029.txt +centroid = (0.77553530779442836, -1.1936795446579778) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/me/mez029.txt +description = Coastal Hancock, ME +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/me/mez029.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/me/mez029.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/me/mez029.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/me/mez029.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/me/mez029.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/me/mez029.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/me/mez029.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/me/mez029.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/me.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/me/mez029.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/me/mez029.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/me/mez029.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/me/mez029.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/me/mez029.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/me/mez029.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/me/mez029.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/me.txt +station = ('kbhb', 0.00041892664291282445) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/me/mez029.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/me/mez029.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/me/mez029.txt + +[mez030] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/me/mez030.txt +centroid = (0.7798061284740585, -1.178814575418742) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/me/mez030.txt +description = Coastal Washington, ME +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/me/mez030.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/me/mez030.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/me/mez030.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/me/mez030.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/me/mez030.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/me/mez030.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/me/mez030.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/me/mez030.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/me.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/me/mez030.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/me/mez030.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/me/mez030.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/me/mez030.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/me/mez030.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/me/mez030.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/me/mez030.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/me.txt +station = ('cwss', 0.010039597999005011) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/me/mez030.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/me/mez030.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/me/mez030.txt + +[mez031] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/me/mez031.txt +centroid = (0.78971785329613431, -1.2070138601432145) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/me/mez031.txt +description = Southern Piscataquis, ME +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/me/mez031.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/me/mez031.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/me/mez031.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/me/mez031.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/me/mez031.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/me/mez031.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/me/mez031.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/me/mez031.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/me.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/me/mez031.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/me/mez031.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/me/mez031.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/me/mez031.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/me/mez031.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/me/mez031.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/me/mez031.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/me.txt +station = ('kgnr', 0.0064804359503266634) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/me/mez031.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/me/mez031.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/me/mez031.txt + +[mez032] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/me/mez032.txt +centroid = (0.79371640261245324, -1.1823191965567468) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/me/mez032.txt +description = Northern Washington, ME +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/me/mez032.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/me/mez032.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/me/mez032.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/me/mez032.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/me/mez032.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/me/mez032.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/me/mez032.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/me/mez032.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/me.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/me/mez032.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/me/mez032.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/me/mez032.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/me/mez032.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/me/mez032.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/me/mez032.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/me/mez032.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/me.txt +station = ('cwss', 0.0075490908733265817) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/me/mez032.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/me/mez032.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/me/mez032.txt + +[miz001] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mi/miz001.txt +centroid = (0.83082384783910468, -1.5432550311984261) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mi/miz001.txt +description = Keweenaw, MI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mi/miz001.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mi/miz001.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mi/miz001.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mi/miz001.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mi/miz001.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mi/miz001.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mi/miz001.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mi/miz001.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mi/miz001.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mi/miz001.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mi/miz001.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mi/miz001.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mi/miz001.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mi/miz001.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mi/miz001.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mi.txt +station = ('kp59', 0.0067768584209973153) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mi/miz001.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mi/miz001.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mi/miz001.txt + +[miz002] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mi/miz002.txt +centroid = (0.81444742346764187, -1.5588408214187355) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mi/miz002.txt +description = Ontonagon, MI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mi/miz002.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mi/miz002.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mi/miz002.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mi/miz002.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mi/miz002.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mi/miz002.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mi/miz002.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mi/miz002.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mi/miz002.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mi/miz002.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mi/miz002.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mi/miz002.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mi/miz002.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mi/miz002.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mi/miz002.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mi.txt +station = ('klnl', 0.008995992764104243) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mi/miz002.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mi/miz002.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mi/miz002.txt + +[miz003] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mi/miz003.txt +centroid = (0.82123151827014385, -1.5467230004221388) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mi/miz003.txt +description = Northern Houghton, MI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mi/miz003.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mi/miz003.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mi/miz003.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mi/miz003.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mi/miz003.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mi/miz003.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mi/miz003.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mi/miz003.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mi/miz003.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mi/miz003.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mi/miz003.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mi/miz003.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mi/miz003.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mi/miz003.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mi/miz003.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mi.txt +station = ('kcmx', 0.0025673514073359109) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mi/miz003.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mi/miz003.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mi/miz003.txt + +[miz004] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mi/miz004.txt +centroid = (0.81441600754110599, -1.5422636841832933) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mi/miz004.txt +description = Baraga, MI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mi/miz004.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mi/miz004.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mi/miz004.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mi/miz004.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mi/miz004.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mi/miz004.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mi/miz004.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mi/miz004.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mi/miz004.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mi/miz004.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mi/miz004.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mi/miz004.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mi/miz004.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mi/miz004.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mi/miz004.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mi.txt +station = ('kcmx', 0.0089096410516089613) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mi/miz004.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mi/miz004.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mi/miz004.txt + +[miz005] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mi/miz005.txt +centroid = (0.81038080631049503, -1.5296327363866102) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mi/miz005.txt +description = Marquette, MI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mi/miz005.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mi/miz005.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mi/miz005.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mi/miz005.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mi/miz005.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mi/miz005.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mi/miz005.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mi/miz005.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mi/miz005.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mi/miz005.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mi/miz005.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mi/miz005.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mi/miz005.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mi/miz005.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mi/miz005.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mi.txt +station = ('ksaw', 0.0032601196037994212) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mi/miz005.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mi/miz005.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mi/miz005.txt + +[miz006] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mi/miz006.txt +centroid = (0.81000556052131634, -1.5114882934828773) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mi/miz006.txt +description = Alger, MI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mi/miz006.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mi/miz006.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mi/miz006.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mi/miz006.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mi/miz006.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mi/miz006.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mi/miz006.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mi/miz006.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mi/miz006.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mi/miz006.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mi/miz006.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mi/miz006.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mi/miz006.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mi/miz006.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mi/miz006.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mi.txt +station = ('kp53', 0.00059072301170205841) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mi/miz006.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mi/miz006.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mi/miz006.txt + +[miz007] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mi/miz007.txt +centroid = (0.81106672070652897, -1.4930296913137853) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mi/miz007.txt +description = Luce, MI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mi/miz007.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mi/miz007.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mi/miz007.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mi/miz007.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mi/miz007.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mi/miz007.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mi/miz007.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mi/miz007.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mi/miz007.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mi/miz007.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mi/miz007.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mi/miz007.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mi/miz007.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mi/miz007.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mi/miz007.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mi.txt +station = ('kery', 0.0029760741211876203) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mi/miz007.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mi/miz007.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mi/miz007.txt + +[miz008] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mi/miz008.txt +centroid = (0.80806300906384665, -1.4760947615816842) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mi/miz008.txt +description = Chippewa, MI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mi/miz008.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mi/miz008.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mi/miz008.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mi/miz008.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mi/miz008.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mi/miz008.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mi/miz008.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mi/miz008.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mi/miz008.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mi/miz008.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mi/miz008.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mi/miz008.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mi/miz008.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mi/miz008.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mi/miz008.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mi.txt +station = ('kciu', 0.0015479448378803214) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mi/miz008.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mi/miz008.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mi/miz008.txt + +[miz009] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mi/miz009.txt +centroid = (0.80998810722879644, -1.5654626006008019) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mi/miz009.txt +description = Gogebic, MI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mi/miz009.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mi/miz009.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mi/miz009.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mi/miz009.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mi/miz009.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mi/miz009.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mi/miz009.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mi/miz009.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mi/miz009.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mi/miz009.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mi/miz009.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mi/miz009.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mi/miz009.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mi/miz009.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mi/miz009.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mi.txt +station = ('kd25', 0.0054972919501036326) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mi/miz009.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mi/miz009.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mi/miz009.txt + +[miz010] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mi/miz010.txt +centroid = (0.80649395806630375, -1.545150458766092) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mi/miz010.txt +description = Iron, MI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mi/miz010.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mi/miz010.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mi/miz010.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mi/miz010.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mi/miz010.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mi/miz010.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mi/miz010.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mi/miz010.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mi/miz010.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mi/miz010.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mi/miz010.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mi/miz010.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mi/miz010.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mi/miz010.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mi/miz010.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mi.txt +station = ('klnl', 0.0082889249461458626) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mi/miz010.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mi/miz010.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mi/miz010.txt + +[miz011] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mi/miz011.txt +centroid = (0.80301028087932302, -1.5336277950444255) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mi/miz011.txt +description = Dickinson, MI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mi/miz011.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mi/miz011.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mi/miz011.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mi/miz011.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mi/miz011.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mi/miz011.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mi/miz011.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mi/miz011.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mi/miz011.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mi/miz011.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mi/miz011.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mi/miz011.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mi/miz011.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mi/miz011.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mi/miz011.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mi.txt +station = ('kimt', 0.0044969913057001073) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mi/miz011.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mi/miz011.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mi/miz011.txt + +[miz012] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mi/miz012.txt +centroid = (0.79550711042499944, -1.528163169156431) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mi/miz012.txt +description = Menominee, MI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mi/miz012.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mi/miz012.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mi/miz012.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mi/miz012.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mi/miz012.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mi/miz012.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mi/miz012.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mi/miz012.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mi/miz012.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mi/miz012.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mi/miz012.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mi/miz012.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mi/miz012.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mi/miz012.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mi/miz012.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mi.txt +station = ('kesc', 0.0070520382627250805) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mi/miz012.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mi/miz012.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mi/miz012.txt + +[miz013] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mi/miz013.txt +centroid = (0.80144995652804008, -1.5171169803205591) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mi/miz013.txt +description = Delta, MI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mi/miz013.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mi/miz013.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mi/miz013.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mi/miz013.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mi/miz013.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mi/miz013.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mi/miz013.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mi/miz013.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mi/miz013.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mi/miz013.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mi/miz013.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mi/miz013.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mi/miz013.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mi/miz013.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mi/miz013.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mi.txt +station = ('kesc', 0.0032445490811478976) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mi/miz013.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mi/miz013.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mi/miz013.txt + +[miz014] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mi/miz014.txt +centroid = (0.80375902712842862, -1.5043289528911965) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mi/miz014.txt +description = Southern Schoolcraft, MI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mi/miz014.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mi/miz014.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mi/miz014.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mi/miz014.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mi/miz014.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mi/miz014.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mi/miz014.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mi/miz014.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mi/miz014.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mi/miz014.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mi/miz014.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mi/miz014.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mi/miz014.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mi/miz014.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mi/miz014.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mi.txt +station = ('kisq', 0.0013698438234706243) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mi/miz014.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mi/miz014.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mi/miz014.txt + +[miz015] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mi/miz015.txt +centroid = (0.80426866327001101, -1.485137312436267) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mi/miz015.txt +description = Mackinac, MI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mi/miz015.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mi/miz015.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mi/miz015.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mi/miz015.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mi/miz015.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mi/miz015.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mi/miz015.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mi/miz015.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mi/miz015.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mi/miz015.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mi/miz015.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mi/miz015.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mi/miz015.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mi/miz015.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mi/miz015.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mi.txt +station = ('kery', 0.0059631386913386467) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mi/miz015.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mi/miz015.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mi/miz015.txt + +[miz016] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mi/miz016.txt +centroid = (0.79448260215407873, -1.4816187286642464) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mi/miz016.txt +description = Emmet, MI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mi/miz016.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mi/miz016.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mi/miz016.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mi/miz016.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mi/miz016.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mi/miz016.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mi/miz016.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mi/miz016.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mi/miz016.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mi/miz016.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mi/miz016.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mi/miz016.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mi/miz016.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mi/miz016.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mi/miz016.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mi.txt +station = ('kpln', 0.001368585878868815) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mi/miz016.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mi/miz016.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mi/miz016.txt + +[miz017] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mi/miz017.txt +centroid = (0.793196294495359, -1.4748014726059564) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mi/miz017.txt +description = Cheboygan, MI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mi/miz017.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mi/miz017.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mi/miz017.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mi/miz017.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mi/miz017.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mi/miz017.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mi/miz017.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mi/miz017.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mi/miz017.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mi/miz017.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mi/miz017.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mi/miz017.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mi/miz017.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mi/miz017.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mi/miz017.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mi.txt +station = ('kslh', 0.0036172079349116328) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mi/miz017.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mi/miz017.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mi/miz017.txt + +[miz018] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mi/miz018.txt +centroid = (0.79132530153722103, -1.4646087497743094) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mi/miz018.txt +description = Presque Isle, MI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mi/miz018.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mi/miz018.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mi/miz018.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mi/miz018.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mi/miz018.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mi/miz018.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mi/miz018.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mi/miz018.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mi/miz018.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mi/miz018.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mi/miz018.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mi/miz018.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mi/miz018.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mi/miz018.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mi/miz018.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mi.txt +station = ('kpzq', 0.0017262964535871726) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mi/miz018.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mi/miz018.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mi/miz018.txt + +[miz019] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mi/miz019.txt +centroid = (0.79066905773847118, -1.4857691216254887) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mi/miz019.txt +description = Charlevoix, MI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mi/miz019.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mi/miz019.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mi/miz019.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mi/miz019.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mi/miz019.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mi/miz019.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mi/miz019.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mi/miz019.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mi/miz019.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mi/miz019.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mi/miz019.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mi/miz019.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mi/miz019.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mi/miz019.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mi/miz019.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mi.txt +station = ('kcvx', 0.0017980812597719346) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mi/miz019.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mi/miz019.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mi/miz019.txt + +[miz020] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mi/miz020.txt +centroid = (0.78429336998093591, -1.4977071737091299) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mi/miz020.txt +description = Leelanau, MI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mi/miz020.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mi/miz020.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mi/miz020.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mi/miz020.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mi/miz020.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mi/miz020.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mi/miz020.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mi/miz020.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mi/miz020.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mi/miz020.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mi/miz020.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mi/miz020.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mi/miz020.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mi/miz020.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mi/miz020.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mi.txt +station = ('ktvc', 0.004673425182106436) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mi/miz020.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mi/miz020.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mi/miz020.txt + +[miz021] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mi/miz021.txt +centroid = (0.78540339938520431, -1.4859331825751763) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mi/miz021.txt +description = Antrim, MI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mi/miz021.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mi/miz021.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mi/miz021.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mi/miz021.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mi/miz021.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mi/miz021.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mi/miz021.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mi/miz021.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mi/miz021.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mi/miz021.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mi/miz021.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mi/miz021.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mi/miz021.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mi/miz021.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mi/miz021.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mi.txt +station = ('kacb', 0.00077696879901135768) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mi/miz021.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mi/miz021.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mi/miz021.txt + +[miz022] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mi/miz022.txt +centroid = (0.78577166385737507, -1.4765276032361787) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mi/miz022.txt +description = Otsego, MI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mi/miz022.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mi/miz022.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mi/miz022.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mi/miz022.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mi/miz022.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mi/miz022.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mi/miz022.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mi/miz022.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mi/miz022.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mi/miz022.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mi/miz022.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mi/miz022.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mi/miz022.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mi/miz022.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mi/miz022.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mi.txt +station = ('kglr', 0.0010461749452326985) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mi/miz022.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mi/miz022.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mi/miz022.txt + +[miz023] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mi/miz023.txt +centroid = (0.7858781289417468, -1.4682983758130257) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mi/miz023.txt +description = Montmorency, MI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mi/miz023.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mi/miz023.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mi/miz023.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mi/miz023.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mi/miz023.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mi/miz023.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mi/miz023.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mi/miz023.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mi/miz023.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mi/miz023.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mi/miz023.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mi/miz023.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mi/miz023.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mi/miz023.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mi/miz023.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mi.txt +station = ('kpzq', 0.0076688180554659218) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mi/miz023.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mi/miz023.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mi/miz023.txt + +[miz024] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mi/miz024.txt +centroid = (0.78600379264789033, -1.4595926735040778) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mi/miz024.txt +description = Alpena, MI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mi/miz024.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mi/miz024.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mi/miz024.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mi/miz024.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mi/miz024.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mi/miz024.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mi/miz024.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mi/miz024.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mi/miz024.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mi/miz024.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mi/miz024.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mi/miz024.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mi/miz024.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mi/miz024.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mi/miz024.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mi.txt +station = ('kapn', 0.0011408824863625364) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mi/miz024.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mi/miz024.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mi/miz024.txt + +[miz025] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mi/miz025.txt +centroid = (0.77910625144400869, -1.5012589187369385) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mi/miz025.txt +description = Benzie, MI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mi/miz025.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mi/miz025.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mi/miz025.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mi/miz025.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mi/miz025.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mi/miz025.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mi/miz025.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mi/miz025.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mi/miz025.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mi/miz025.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mi/miz025.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mi/miz025.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mi/miz025.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mi/miz025.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mi/miz025.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mi.txt +station = ('kfks', 0.0023086315975553002) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mi/miz025.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mi/miz025.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mi/miz025.txt + +[miz026] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mi/miz026.txt +centroid = (0.77965428482913501, -1.4932862547138284) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mi/miz026.txt +description = Grand Traverse, MI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mi/miz026.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mi/miz026.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mi/miz026.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mi/miz026.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mi/miz026.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mi/miz026.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mi/miz026.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mi/miz026.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mi/miz026.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mi/miz026.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mi/miz026.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mi/miz026.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mi/miz026.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mi/miz026.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mi/miz026.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mi.txt +station = ('ktvc', 0.0010938099108262851) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mi/miz026.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mi/miz026.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mi/miz026.txt + +[miz027] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mi/miz027.txt +centroid = (0.77989339493665821, -1.485104151180479) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mi/miz027.txt +description = Kalkaska, MI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mi/miz027.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mi/miz027.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mi/miz027.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mi/miz027.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mi/miz027.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mi/miz027.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mi/miz027.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mi/miz027.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mi/miz027.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mi/miz027.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mi/miz027.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mi/miz027.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mi/miz027.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mi/miz027.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mi/miz027.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mi.txt +station = ('kgov', 0.004484340375490903) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mi/miz027.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mi/miz027.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mi/miz027.txt + +[miz028] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mi/miz028.txt +centroid = (0.7798759416441382, -1.4767283161001581) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mi/miz028.txt +description = Crawford, MI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mi/miz028.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mi/miz028.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mi/miz028.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mi/miz028.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mi/miz028.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mi/miz028.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mi/miz028.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mi/miz028.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mi/miz028.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mi/miz028.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mi/miz028.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mi/miz028.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mi/miz028.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mi/miz028.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mi/miz028.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mi.txt +station = ('kgov', 0.0014727895608407874) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mi/miz028.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mi/miz028.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mi/miz028.txt + +[miz029] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mi/miz029.txt +centroid = (0.77984278038835031, -1.4683402637150735) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mi/miz029.txt +description = Oscoda, MI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mi/miz029.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mi/miz029.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mi/miz029.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mi/miz029.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mi/miz029.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mi/miz029.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mi/miz029.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mi/miz029.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mi/miz029.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mi/miz029.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mi/miz029.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mi/miz029.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mi/miz029.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mi/miz029.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mi/miz029.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mi.txt +station = ('kgov', 0.0074358772369081264) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mi/miz029.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mi/miz029.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mi/miz029.txt + +[miz030] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mi/miz030.txt +centroid = (0.7799073575706742, -1.4589870442536359) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mi/miz030.txt +description = Alcona, MI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mi/miz030.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mi/miz030.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mi/miz030.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mi/miz030.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mi/miz030.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mi/miz030.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mi/miz030.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mi/miz030.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mi/miz030.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mi/miz030.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mi/miz030.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mi/miz030.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mi/miz030.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mi/miz030.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mi/miz030.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mi.txt +station = ('kosc', 0.0049855661101830305) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mi/miz030.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mi/miz030.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mi/miz030.txt + +[miz031] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mi/miz031.txt +centroid = (0.77376030794515005, -1.5019797397180124) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mi/miz031.txt +description = Manistee, MI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mi/miz031.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mi/miz031.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mi/miz031.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mi/miz031.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mi/miz031.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mi/miz031.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mi/miz031.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mi/miz031.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mi/miz031.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mi/miz031.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mi/miz031.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mi/miz031.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mi/miz031.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mi/miz031.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mi/miz031.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mi.txt +station = ('kmbl', 0.0026747694021023857) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mi/miz031.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mi/miz031.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mi/miz031.txt + +[miz032] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mi/miz032.txt +centroid = (0.77385106506625378, -1.4936265939179674) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mi/miz032.txt +description = Wexford, MI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mi/miz032.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mi/miz032.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mi/miz032.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mi/miz032.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mi/miz032.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mi/miz032.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mi/miz032.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mi/miz032.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mi/miz032.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mi/miz032.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mi/miz032.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mi/miz032.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mi/miz032.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mi/miz032.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mi/miz032.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mi.txt +station = ('kcad', 0.0022379938068931154) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mi/miz032.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mi/miz032.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mi/miz032.txt + +[miz033] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mi/miz033.txt +centroid = (0.77383186644448188, -1.4851826909968189) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mi/miz033.txt +description = Missaukee, MI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mi/miz033.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mi/miz033.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mi/miz033.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mi/miz033.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mi/miz033.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mi/miz033.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mi/miz033.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mi/miz033.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mi/miz033.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mi/miz033.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mi/miz033.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mi/miz033.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mi/miz033.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mi/miz033.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mi/miz033.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mi.txt +station = ('kcad', 0.0041298811086779245) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mi/miz033.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mi/miz033.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mi/miz033.txt + +[miz034] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mi/miz034.txt +centroid = (0.773802195847198, -1.476751005380434) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mi/miz034.txt +description = Roscommon, MI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mi/miz034.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mi/miz034.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mi/miz034.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mi/miz034.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mi/miz034.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mi/miz034.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mi/miz034.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mi/miz034.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mi/miz034.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mi/miz034.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mi/miz034.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mi/miz034.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mi/miz034.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mi/miz034.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mi/miz034.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mi.txt +station = ('khtl', 0.00073185457544814214) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mi/miz034.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mi/miz034.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mi/miz034.txt + +[miz035] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mi/miz035.txt +centroid = (0.77378997854243392, -1.4682861585082616) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mi/miz035.txt +description = Ogemaw, MI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mi/miz035.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mi/miz035.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mi/miz035.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mi/miz035.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mi/miz035.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mi/miz035.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mi/miz035.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mi/miz035.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mi/miz035.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mi/miz035.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mi/miz035.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mi/miz035.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mi/miz035.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mi/miz035.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mi/miz035.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mi.txt +station = ('khtl', 0.0067463359085471629) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mi/miz035.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mi/miz035.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mi/miz035.txt + +[miz036] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mi/miz036.txt +centroid = (0.77415649768535277, -1.4597235731979774) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mi/miz036.txt +description = Iosco, MI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mi/miz036.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mi/miz036.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mi/miz036.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mi/miz036.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mi/miz036.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mi/miz036.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mi/miz036.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mi/miz036.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mi/miz036.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mi/miz036.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mi/miz036.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mi/miz036.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mi/miz036.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mi/miz036.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mi/miz036.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mi.txt +station = ('kosc', 0.0037384617974626343) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mi/miz036.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mi/miz036.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mi/miz036.txt + +[miz037] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mi/miz037.txt +centroid = (0.76786458573191319, -1.5053412438573532) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mi/miz037.txt +description = Mason, MI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mi/miz037.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mi/miz037.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mi/miz037.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mi/miz037.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mi/miz037.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mi/miz037.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mi/miz037.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mi/miz037.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mi/miz037.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mi/miz037.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mi/miz037.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mi/miz037.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mi/miz037.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mi/miz037.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mi/miz037.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mi.txt +station = ('kldm', 0.0019530780255575867) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mi/miz037.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mi/miz037.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mi/miz037.txt + +[miz038] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mi/miz038.txt +centroid = (0.76777033795230565, -1.4975221688084186) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mi/miz038.txt +description = Lake, MI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mi/miz038.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mi/miz038.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mi/miz038.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mi/miz038.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mi/miz038.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mi/miz038.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mi/miz038.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mi/miz038.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mi/miz038.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mi/miz038.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mi/miz038.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mi/miz038.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mi/miz038.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mi/miz038.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mi/miz038.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mi.txt +station = ('krqb', 0.0059848669430191031) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mi/miz038.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mi/miz038.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mi/miz038.txt + +[miz039] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mi/miz039.txt +centroid = (0.76776859262305353, -1.4892056749226656) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mi/miz039.txt +description = Osceola, MI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mi/miz039.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mi/miz039.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mi/miz039.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mi/miz039.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mi/miz039.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mi/miz039.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mi/miz039.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mi/miz039.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mi/miz039.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mi/miz039.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mi/miz039.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mi/miz039.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mi/miz039.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mi/miz039.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mi/miz039.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mi.txt +station = ('krqb', 0.0051820821879664403) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mi/miz039.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mi/miz039.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mi/miz039.txt + +[miz040] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mi/miz040.txt +centroid = (0.76773368603801373, -1.4808734730736448) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mi/miz040.txt +description = Clare, MI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mi/miz040.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mi/miz040.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mi/miz040.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mi/miz040.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mi/miz040.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mi/miz040.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mi/miz040.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mi/miz040.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mi/miz040.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mi/miz040.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mi/miz040.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mi/miz040.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mi/miz040.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mi/miz040.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mi/miz040.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mi.txt +station = ('kmop', 0.0066377426399295289) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mi/miz040.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mi/miz040.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mi/miz040.txt + +[miz041] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mi/miz041.txt +centroid = (0.7677808099278175, -1.4728519398314788) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mi/miz041.txt +description = Gladwin, MI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mi/miz041.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mi/miz041.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mi/miz041.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mi/miz041.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mi/miz041.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mi/miz041.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mi/miz041.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mi/miz041.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mi/miz041.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mi/miz041.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mi/miz041.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mi/miz041.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mi/miz041.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mi/miz041.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mi/miz041.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mi.txt +station = ('kikw', 0.005991610238452863) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mi/miz041.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mi/miz041.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mi/miz041.txt + +[miz042] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mi/miz042.txt +centroid = (0.76908980686681339, -1.4642404853021389) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mi/miz042.txt +description = Arenac, MI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mi/miz042.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mi/miz042.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mi/miz042.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mi/miz042.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mi/miz042.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mi/miz042.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mi/miz042.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mi/miz042.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mi/miz042.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mi/miz042.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mi/miz042.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mi/miz042.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mi/miz042.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mi/miz042.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mi/miz042.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mi.txt +station = ('kikw', 0.0084399277947953873) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mi/miz042.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mi/miz042.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mi/miz042.txt + +[miz043] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mi/miz043.txt +centroid = (0.7616739028750894, -1.5056484218057045) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mi/miz043.txt +description = Oceana, MI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mi/miz043.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mi/miz043.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mi/miz043.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mi/miz043.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mi/miz043.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mi/miz043.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mi/miz043.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mi/miz043.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mi/miz043.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mi/miz043.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mi/miz043.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mi/miz043.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mi/miz043.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mi/miz043.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mi/miz043.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mi.txt +station = ('kffx', 0.0049576586025432152) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mi/miz043.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mi/miz043.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mi/miz043.txt + +[miz044] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mi/miz044.txt +centroid = (0.76016419307211436, -1.4975082061744027) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mi/miz044.txt +description = Newaygo, MI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mi/miz044.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mi/miz044.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mi/miz044.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mi/miz044.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mi/miz044.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mi/miz044.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mi/miz044.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mi/miz044.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mi/miz044.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mi/miz044.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mi/miz044.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mi/miz044.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mi/miz044.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mi/miz044.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mi/miz044.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mi.txt +station = ('kffx', 0.0031152321652748245) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mi/miz044.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mi/miz044.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mi/miz044.txt + +[miz045] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mi/miz045.txt +centroid = (0.76167739353359343, -1.4891934576179018) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mi/miz045.txt +description = Mecosta, MI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mi/miz045.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mi/miz045.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mi/miz045.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mi/miz045.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mi/miz045.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mi/miz045.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mi/miz045.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mi/miz045.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mi/miz045.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mi/miz045.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mi/miz045.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mi/miz045.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mi/miz045.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mi/miz045.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mi/miz045.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mi.txt +station = ('krqb', 0.0026778753871777843) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mi/miz045.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mi/miz045.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mi/miz045.txt + +[miz046] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mi/miz046.txt +centroid = (0.76167215754583739, -1.4808542744518727) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mi/miz046.txt +description = Isabella, MI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mi/miz046.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mi/miz046.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mi/miz046.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mi/miz046.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mi/miz046.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mi/miz046.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mi/miz046.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mi/miz046.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mi/miz046.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mi/miz046.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mi/miz046.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mi/miz046.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mi/miz046.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mi/miz046.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mi/miz046.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mi.txt +station = ('kmop', 0.0014918529903078042) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mi/miz046.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mi/miz046.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mi/miz046.txt + +[miz047] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mi/miz047.txt +centroid = (0.76178036795946102, -1.472846703843723) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mi/miz047.txt +description = Midland, MI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mi/miz047.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mi/miz047.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mi/miz047.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mi/miz047.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mi/miz047.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mi/miz047.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mi/miz047.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mi/miz047.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mi/miz047.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mi/miz047.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mi/miz047.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mi/miz047.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mi/miz047.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mi/miz047.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mi/miz047.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mi.txt +station = ('kikw', 0.0016314643686025597) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mi/miz047.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mi/miz047.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mi/miz047.txt + +[miz048] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mi/miz048.txt +centroid = (0.7628345468276656, -1.4659386906643292) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mi/miz048.txt +description = Bay, MI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mi/miz048.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mi/miz048.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mi/miz048.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mi/miz048.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mi/miz048.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mi/miz048.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mi/miz048.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mi/miz048.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mi/miz048.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mi/miz048.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mi/miz048.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mi/miz048.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mi/miz048.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mi/miz048.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mi/miz048.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mi.txt +station = ('kmbs', 0.0032461118651657284) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mi/miz048.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mi/miz048.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mi/miz048.txt + +[miz049] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mi/miz049.txt +centroid = (0.76503540701443051, -1.4489601277009285) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mi/miz049.txt +description = Huron, MI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mi/miz049.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mi/miz049.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mi/miz049.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mi/miz049.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mi/miz049.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mi/miz049.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mi/miz049.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mi/miz049.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mi/miz049.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mi/miz049.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mi/miz049.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mi/miz049.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mi/miz049.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mi/miz049.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mi/miz049.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mi.txt +station = ('kbax', 0.0010095482927967891) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mi/miz049.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mi/miz049.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mi/miz049.txt + +[miz050] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mi/miz050.txt +centroid = (0.75557397713936925, -1.503567989337327) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mi/miz050.txt +description = Muskegon, MI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mi/miz050.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mi/miz050.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mi/miz050.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mi/miz050.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mi/miz050.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mi/miz050.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mi/miz050.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mi/miz050.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mi/miz050.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mi/miz050.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mi/miz050.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mi/miz050.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mi/miz050.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mi/miz050.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mi/miz050.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mi.txt +station = ('kmkg', 0.0024287886840002504) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mi/miz050.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mi/miz050.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mi/miz050.txt + +[miz051] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mi/miz051.txt +centroid = (0.75591955233126407, -1.4861897459752196) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mi/miz051.txt +description = Montcalm, MI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mi/miz051.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mi/miz051.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mi/miz051.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mi/miz051.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mi/miz051.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mi/miz051.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mi/miz051.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mi/miz051.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mi/miz051.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mi/miz051.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mi/miz051.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mi/miz051.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mi/miz051.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mi/miz051.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mi/miz051.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mi.txt +station = ('ky70', 0.0065812787304925617) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mi/miz051.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mi/miz051.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mi/miz051.txt + +[miz052] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mi/miz052.txt +centroid = (0.7556001570781492, -1.4766323229912985) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mi/miz052.txt +description = Gratiot, MI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mi/miz052.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mi/miz052.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mi/miz052.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mi/miz052.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mi/miz052.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mi/miz052.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mi/miz052.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mi/miz052.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mi/miz052.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mi/miz052.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mi/miz052.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mi/miz052.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mi/miz052.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mi/miz052.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mi/miz052.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mi.txt +station = ('kamn', 0.0011709567040036827) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mi/miz052.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mi/miz052.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mi/miz052.txt + +[miz053] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mi/miz053.txt +centroid = (0.75633843135174272, -1.4670050868372979) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mi/miz053.txt +description = Saginaw, MI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mi/miz053.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mi/miz053.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mi/miz053.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mi/miz053.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mi/miz053.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mi/miz053.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mi/miz053.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mi/miz053.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mi/miz053.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mi/miz053.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mi/miz053.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mi/miz053.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mi/miz053.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mi/miz053.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mi/miz053.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mi.txt +station = ('khyx', 0.002965915478243306) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mi/miz053.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mi/miz053.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mi/miz053.txt + +[miz054] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mi/miz054.txt +centroid = (0.75859165141606744, -1.455896066148354) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mi/miz054.txt +description = Tuscola, MI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mi/miz054.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mi/miz054.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mi/miz054.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mi/miz054.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mi/miz054.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mi/miz054.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mi/miz054.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mi/miz054.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mi/miz054.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mi/miz054.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mi/miz054.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mi/miz054.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mi/miz054.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mi/miz054.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mi/miz054.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mi.txt +station = ('kcfs', 0.00037449160008082793) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mi/miz054.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mi/miz054.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mi/miz054.txt + +[miz055] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mi/miz055.txt +centroid = (0.75788304773975768, -1.4454834318309557) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mi/miz055.txt +description = Sanilac, MI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mi/miz055.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mi/miz055.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mi/miz055.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mi/miz055.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mi/miz055.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mi/miz055.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mi/miz055.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mi/miz055.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mi/miz055.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mi/miz055.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mi/miz055.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mi/miz055.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mi/miz055.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mi/miz055.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mi/miz055.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mi.txt +station = ('kbax', 0.0065778844034186865) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mi/miz055.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mi/miz055.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mi/miz055.txt + +[miz056] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mi/miz056.txt +centroid = (0.74979519198601596, -1.5008766916307517) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mi/miz056.txt +description = Ottawa, MI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mi/miz056.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mi/miz056.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mi/miz056.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mi/miz056.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mi/miz056.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mi/miz056.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mi/miz056.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mi/miz056.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mi/miz056.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mi/miz056.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mi/miz056.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mi/miz056.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mi/miz056.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mi/miz056.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mi/miz056.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mi.txt +station = ('kbiv', 0.003910146243997813) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mi/miz056.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mi/miz056.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mi/miz056.txt + +[miz057] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mi/miz057.txt +centroid = (0.75105357437670395, -1.493115212447133) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mi/miz057.txt +description = Kent, MI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mi/miz057.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mi/miz057.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mi/miz057.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mi/miz057.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mi/miz057.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mi/miz057.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mi/miz057.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mi/miz057.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mi/miz057.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mi/miz057.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mi/miz057.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mi/miz057.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mi/miz057.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mi/miz057.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mi/miz057.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mi.txt +station = ('kgrr', 0.00263123572161548) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mi/miz057.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mi/miz057.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mi/miz057.txt + +[miz058] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mi/miz058.txt +centroid = (0.74953339259821672, -1.484831879817168) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mi/miz058.txt +description = Ionia, MI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mi/miz058.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mi/miz058.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mi/miz058.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mi/miz058.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mi/miz058.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mi/miz058.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mi/miz058.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mi/miz058.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mi/miz058.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mi/miz058.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mi/miz058.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mi/miz058.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mi/miz058.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mi/miz058.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mi/miz058.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mi.txt +station = ('ky70', 0.00020668548548700573) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mi/miz058.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mi/miz058.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mi/miz058.txt + +[miz059] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mi/miz059.txt +centroid = (0.74950721265943698, -1.4765747271259828) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mi/miz059.txt +description = Clinton, MI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mi/miz059.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mi/miz059.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mi/miz059.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mi/miz059.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mi/miz059.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mi/miz059.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mi/miz059.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mi/miz059.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mi/miz059.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mi/miz059.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mi/miz059.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mi/miz059.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mi/miz059.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mi/miz059.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mi/miz059.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mi.txt +station = ('klan', 0.0028068190059478771) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mi/miz059.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mi/miz059.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mi/miz059.txt + +[miz060] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mi/miz060.txt +centroid = (0.74968349091388831, -1.4686369696879125) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mi/miz060.txt +description = Shiawassee, MI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mi/miz060.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mi/miz060.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mi/miz060.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mi/miz060.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mi/miz060.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mi/miz060.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mi/miz060.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mi/miz060.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mi/miz060.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mi/miz060.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mi/miz060.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mi/miz060.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mi/miz060.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mi/miz060.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mi/miz060.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mi.txt +station = ('krnp', 0.00068929146809441411) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mi/miz060.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mi/miz060.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mi/miz060.txt + +[miz061] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mi/miz061.txt +centroid = (0.75087031480524458, -1.4609575209791374) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mi/miz061.txt +description = Genesee, MI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mi/miz061.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mi/miz061.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mi/miz061.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mi/miz061.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mi/miz061.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mi/miz061.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mi/miz061.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mi/miz061.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mi/miz061.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mi/miz061.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mi/miz061.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mi/miz061.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mi/miz061.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mi/miz061.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mi/miz061.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mi.txt +station = ('kfnt', 0.0011082078288004752) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mi/miz061.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mi/miz061.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mi/miz061.txt + +[miz062] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mi/miz062.txt +centroid = (0.75206412001360856, -1.452494419436217) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mi/miz062.txt +description = Lapeer, MI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mi/miz062.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mi/miz062.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mi/miz062.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mi/miz062.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mi/miz062.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mi/miz062.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mi/miz062.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mi/miz062.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mi/miz062.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mi/miz062.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mi/miz062.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mi/miz062.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mi/miz062.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mi/miz062.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mi/miz062.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mi.txt +station = ('kd95', 0.00075632519884791792) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mi/miz062.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mi/miz062.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mi/miz062.txt + +[miz063] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mi/miz063.txt +centroid = (0.74948801403766496, -1.4430731321339516) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mi/miz063.txt +description = St. Clair, MI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mi/miz063.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mi/miz063.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mi/miz063.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mi/miz063.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mi/miz063.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mi/miz063.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mi/miz063.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mi/miz063.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mi/miz063.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mi/miz063.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mi/miz063.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mi/miz063.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mi/miz063.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mi/miz063.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mi/miz063.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mi.txt +station = ('kphn', 0.0019526024071604966) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mi/miz063.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mi/miz063.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mi/miz063.txt + +[miz064] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mi/miz064.txt +centroid = (0.74335841770466082, -1.4990353692698979) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mi/miz064.txt +description = Allegan, MI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mi/miz064.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mi/miz064.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mi/miz064.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mi/miz064.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mi/miz064.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mi/miz064.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mi/miz064.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mi/miz064.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mi/miz064.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mi/miz064.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mi/miz064.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mi/miz064.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mi/miz064.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mi/miz064.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mi/miz064.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mi.txt +station = ('kbiv', 0.0038788425724991821) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mi/miz064.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mi/miz064.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mi/miz064.txt + +[miz065] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mi/miz065.txt +centroid = (0.7434229948869846, -1.4889229315838426) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mi/miz065.txt +description = Barry, MI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mi/miz065.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mi/miz065.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mi/miz065.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mi/miz065.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mi/miz065.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mi/miz065.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mi/miz065.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mi/miz065.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mi/miz065.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mi/miz065.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mi/miz065.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mi/miz065.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mi/miz065.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mi/miz065.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mi/miz065.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mi.txt +station = ('kbtl', 0.0052044874605457992) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mi/miz065.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mi/miz065.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mi/miz065.txt + +[miz066] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mi/miz066.txt +centroid = (0.74344219350875662, -1.4807094121239572) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mi/miz066.txt +description = Eaton, MI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mi/miz066.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mi/miz066.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mi/miz066.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mi/miz066.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mi/miz066.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mi/miz066.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mi/miz066.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mi/miz066.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mi/miz066.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mi/miz066.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mi/miz066.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mi/miz066.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mi/miz066.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mi/miz066.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mi/miz066.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mi.txt +station = ('kfpk', 0.00051316113897098765) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mi/miz066.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mi/miz066.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mi/miz066.txt + +[miz067] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mi/miz067.txt +centroid = (0.74345964680127652, -1.4725971217606875) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mi/miz067.txt +description = Ingham, MI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mi/miz067.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mi/miz067.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mi/miz067.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mi/miz067.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mi/miz067.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mi/miz067.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mi/miz067.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mi/miz067.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mi/miz067.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mi/miz067.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mi/miz067.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mi/miz067.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mi/miz067.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mi/miz067.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mi/miz067.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mi.txt +station = ('ktew', 0.00084040608805507975) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mi/miz067.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mi/miz067.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mi/miz067.txt + +[miz068] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mi/miz068.txt +centroid = (0.74356262122714423, -1.4645319552872218) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mi/miz068.txt +description = Livingston, MI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mi/miz068.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mi/miz068.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mi/miz068.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mi/miz068.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mi/miz068.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mi/miz068.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mi/miz068.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mi/miz068.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mi/miz068.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mi/miz068.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mi/miz068.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mi/miz068.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mi/miz068.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mi/miz068.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mi/miz068.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mi.txt +station = ('kozw', 0.0010412126971421699) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mi/miz068.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mi/miz068.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mi/miz068.txt + +[miz069] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mi/miz069.txt +centroid = (0.744564440217789, -1.4553515234217316) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mi/miz069.txt +description = Oakland, MI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mi/miz069.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mi/miz069.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mi/miz069.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mi/miz069.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mi/miz069.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mi/miz069.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mi/miz069.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mi/miz069.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mi/miz069.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mi/miz069.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mi/miz069.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mi/miz069.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mi/miz069.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mi/miz069.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mi/miz069.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mi.txt +station = ('kptk', 0.00041468337289422602) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mi/miz069.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mi/miz069.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mi/miz069.txt + +[miz070] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mi/miz070.txt +centroid = (0.74517879611449089, -1.4474399459224412) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mi/miz070.txt +description = Macomb, MI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mi/miz070.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mi/miz070.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mi/miz070.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mi/miz070.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mi/miz070.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mi/miz070.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mi/miz070.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mi/miz070.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mi/miz070.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mi/miz070.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mi/miz070.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mi/miz070.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mi/miz070.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mi/miz070.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mi/miz070.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mi.txt +station = ('kmtc', 0.0018730556404446988) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mi/miz070.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mi/miz070.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mi/miz070.txt + +[miz071] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mi/miz071.txt +centroid = (0.73742429824788014, -1.5013130239437504) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mi/miz071.txt +description = Van Buren, MI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mi/miz071.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mi/miz071.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mi/miz071.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mi/miz071.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mi/miz071.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mi/miz071.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mi/miz071.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mi/miz071.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mi/miz071.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mi/miz071.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mi/miz071.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mi/miz071.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mi/miz071.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mi/miz071.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mi/miz071.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mi.txt +station = ('klwa', 0.0035205521642767473) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mi/miz071.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mi/miz071.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mi/miz071.txt + +[miz072] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mi/miz072.txt +centroid = (0.73732132382201243, -1.4928010531817739) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mi/miz072.txt +description = Kalamazoo, MI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mi/miz072.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mi/miz072.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mi/miz072.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mi/miz072.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mi/miz072.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mi/miz072.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mi/miz072.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mi/miz072.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mi/miz072.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mi/miz072.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mi/miz072.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mi/miz072.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mi/miz072.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mi/miz072.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mi/miz072.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mi.txt +station = ('kazo', 0.00032150442581426884) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mi/miz072.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mi/miz072.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mi/miz072.txt + +[miz073] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mi/miz073.txt +centroid = (0.73734226777303646, -1.4836258573040397) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mi/miz073.txt +description = Calhoun, MI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mi/miz073.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mi/miz073.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mi/miz073.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mi/miz073.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mi/miz073.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mi/miz073.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mi/miz073.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mi/miz073.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mi/miz073.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mi/miz073.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mi/miz073.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mi/miz073.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mi/miz073.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mi/miz073.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mi/miz073.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mi.txt +station = ('krmy', 0.00065004190947358484) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mi/miz073.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mi/miz073.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mi/miz073.txt + +[miz074] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mi/miz074.txt +centroid = (0.73737542902882436, -1.4734645503989288) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mi/miz074.txt +description = Jackson, MI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mi/miz074.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mi/miz074.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mi/miz074.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mi/miz074.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mi/miz074.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mi/miz074.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mi/miz074.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mi/miz074.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mi/miz074.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mi/miz074.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mi/miz074.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mi/miz074.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mi/miz074.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mi/miz074.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mi/miz074.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mi.txt +station = ('kjxn', 0.00064370261660763768) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mi/miz074.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mi/miz074.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mi/miz074.txt + +[miz075] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mi/miz075.txt +centroid = (0.73746095016217206, -1.4632578649332659) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mi/miz075.txt +description = Washtenaw, MI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mi/miz075.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mi/miz075.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mi/miz075.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mi/miz075.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mi/miz075.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mi/miz075.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mi/miz075.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mi/miz075.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mi/miz075.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mi/miz075.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mi/miz075.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mi/miz075.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mi/miz075.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mi/miz075.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mi/miz075.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mi.txt +station = ('karb', 0.0013110713388839715) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mi/miz075.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mi/miz075.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mi/miz075.txt + +[miz076] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mi/miz076.txt +centroid = (0.73799502091328228, -1.4536236474622573) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mi/miz076.txt +description = Wayne, MI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mi/miz076.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mi/miz076.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mi/miz076.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mi/miz076.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mi/miz076.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mi/miz076.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mi/miz076.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mi/miz076.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mi/miz076.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mi/miz076.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mi/miz076.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mi/miz076.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mi/miz076.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mi/miz076.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mi/miz076.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mi.txt +station = ('kdtw', 0.001071435052347784) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mi/miz076.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mi/miz076.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mi/miz076.txt + +[miz077] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mi/miz077.txt +centroid = (0.73224590635721298, -1.5081791492210961) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mi/miz077.txt +description = Berrien, MI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mi/miz077.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mi/miz077.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mi/miz077.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mi/miz077.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mi/miz077.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mi/miz077.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mi/miz077.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mi/miz077.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mi/miz077.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mi/miz077.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mi/miz077.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mi/miz077.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mi/miz077.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mi/miz077.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mi/miz077.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mi.txt +station = ('kbeh', 0.0031199985443309238) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mi/miz077.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mi/miz077.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mi/miz077.txt + +[miz078] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mi/miz078.txt +centroid = (0.73155999196117927, -1.5008714556429958) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mi/miz078.txt +description = Cass, MI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mi/miz078.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mi/miz078.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mi/miz078.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mi/miz078.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mi/miz078.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mi/miz078.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mi/miz078.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mi/miz078.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mi/miz078.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mi/miz078.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mi/miz078.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mi/miz078.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mi/miz078.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mi/miz078.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mi/miz078.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mi.txt +station = ('kekm', 0.0034678050764264685) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mi/miz078.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mi/miz078.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mi/miz078.txt + +[miz079] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mi/miz079.txt +centroid = (0.73154602932716317, -1.4927417119872062) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mi/miz079.txt +description = St. Joseph, MI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mi/miz079.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mi/miz079.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mi/miz079.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mi/miz079.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mi/miz079.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mi/miz079.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mi/miz079.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mi/miz079.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mi/miz079.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mi/miz079.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mi/miz079.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mi/miz079.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mi/miz079.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mi/miz079.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mi/miz079.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mi.txt +station = ('khai', 0.0011325942863091771) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mi/miz079.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mi/miz079.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mi/miz079.txt + +[miz080] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mi/miz080.txt +centroid = (0.73157395459519514, -1.4845596084538568) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mi/miz080.txt +description = Branch, MI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mi/miz080.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mi/miz080.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mi/miz080.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mi/miz080.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mi/miz080.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mi/miz080.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mi/miz080.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mi/miz080.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mi/miz080.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mi/miz080.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mi/miz080.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mi/miz080.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mi/miz080.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mi/miz080.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mi/miz080.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mi.txt +station = ('koeb', 0.00031239742963288478) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mi/miz080.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mi/miz080.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mi/miz080.txt + +[miz081] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mi/miz081.txt +centroid = (0.73108002641688075, -1.4764263741395633) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mi/miz081.txt +description = Hillsdale, MI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mi/miz081.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mi/miz081.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mi/miz081.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mi/miz081.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mi/miz081.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mi/miz081.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mi/miz081.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mi/miz081.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mi/miz081.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mi/miz081.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mi/miz081.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mi/miz081.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mi/miz081.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mi/miz081.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mi/miz081.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mi.txt +station = ('kjym', 0.00059358219304146329) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mi/miz081.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mi/miz081.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mi/miz081.txt + +[miz082] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mi/miz082.txt +centroid = (0.7312074354522764, -1.4672354702985611) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mi/miz082.txt +description = Lenawee, MI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mi/miz082.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mi/miz082.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mi/miz082.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mi/miz082.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mi/miz082.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mi/miz082.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mi/miz082.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mi/miz082.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mi/miz082.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mi/miz082.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mi/miz082.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mi/miz082.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mi/miz082.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mi/miz082.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mi/miz082.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mi.txt +station = ('kadg', 0.00054285131895381053) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mi/miz082.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mi/miz082.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mi/miz082.txt + +[miz083] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mi/miz083.txt +centroid = (0.73180259272720649, -1.4580009332262591) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mi/miz083.txt +description = Monroe, MI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mi/miz083.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mi/miz083.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mi/miz083.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mi/miz083.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mi/miz083.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mi/miz083.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mi/miz083.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mi/miz083.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mi/miz083.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mi/miz083.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mi/miz083.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mi/miz083.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mi/miz083.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mi/miz083.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mi/miz083.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mi.txt +station = ('kttf', 0.0013451062990911245) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mi/miz083.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mi/miz083.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mi/miz083.txt + +[miz084] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mi/miz084.txt +centroid = (0.81344560447699721, -1.5501874789873475) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mi/miz084.txt +description = Southern Houghton, MI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mi/miz084.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mi/miz084.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mi/miz084.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mi/miz084.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mi/miz084.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mi/miz084.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mi/miz084.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mi/miz084.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mi/miz084.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mi/miz084.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mi/miz084.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mi/miz084.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mi/miz084.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mi/miz084.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mi/miz084.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mi.txt +station = ('klnl', 0.0092142321983561641) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mi/miz084.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mi/miz084.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mi/miz084.txt + +[miz085] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mi/miz085.txt +centroid = (0.80865467568027283, -1.5045942429374997) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mi/miz085.txt +description = Northern Schoolcraft, MI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mi/miz085.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mi/miz085.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mi/miz085.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mi/miz085.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mi/miz085.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mi/miz085.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mi/miz085.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mi/miz085.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mi/miz085.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mi/miz085.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mi/miz085.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mi/miz085.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mi/miz085.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mi/miz085.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mi/miz085.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mi.txt +station = ('kp53', 0.0055342072513159457) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mi/miz085.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mi/miz085.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mi/miz085.txt + +[mnz001] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz001.txt +centroid = (0.83508070588471894, -1.6878171624826126) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz001.txt +description = West Polk, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz001.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz001.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz001.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz001.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz001.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz001.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz001.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz001.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz001.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz001.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz001.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz001.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz001.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz001.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz001.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('kckn', 0.0010339951028520173) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz001.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz001.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz001.txt + +[mnz002] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz002.txt +centroid = (0.82600324844509643, -1.6834590753403826) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz002.txt +description = Norman, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz002.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz002.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz002.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz002.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz002.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz002.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz002.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz002.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz002.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz002.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz002.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz002.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz002.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz002.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz002.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('kfar', 0.0080944294677339733) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz002.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz002.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz002.txt + +[mnz003] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz003.txt +centroid = (0.81842677416218901, -1.6840786672248405) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz003.txt +description = Clay, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz003.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz003.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz003.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz003.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz003.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz003.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz003.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz003.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz003.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz003.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz003.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz003.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz003.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz003.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz003.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('kjkj', 0.0022579216324403609) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz003.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz003.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz003.txt + +[mnz004] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz004.txt +centroid = (0.8513122679282662, -1.6891750286406639) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz004.txt +description = Kittson, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz004.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz004.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz004.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz004.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz004.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz004.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz004.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz004.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz004.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz004.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz004.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz004.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz004.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz004.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz004.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('khco', 0.0018921880244418456) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz004.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz004.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz004.txt + +[mnz005] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz005.txt +centroid = (0.85128608798948624, -1.6722121736405311) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz005.txt +description = Roseau, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz005.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz005.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz005.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz005.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz005.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz005.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz005.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz005.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz005.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz005.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz005.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz005.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz005.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz005.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz005.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('krox', 0.0018242007746141009) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz005.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz005.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz005.txt + +[mnz006] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz006.txt +centroid = (0.85123023745342241, -1.6564064719344704) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz006.txt +description = Lake of The Woods, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz006.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz006.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz006.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz006.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz006.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz006.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz006.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz006.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz006.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz006.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz006.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz006.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz006.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz006.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz006.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('kbde', 0.003386612556345152) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz006.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz006.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz006.txt + +[mnz007] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz007.txt +centroid = (0.84402726363044178, -1.6888800679970768) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz007.txt +description = West Marshall, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz007.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz007.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz007.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz007.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz007.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz007.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz007.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz007.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz007.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz007.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz007.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz007.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz007.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz007.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz007.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('khco', 0.0071682584785125493) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz007.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz007.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz007.txt + +[mnz008] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz008.txt +centroid = (0.84399061171614997, -1.6754480140737285) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz008.txt +description = East Marshall, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz008.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz008.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz008.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz008.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz008.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz008.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz008.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz008.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz008.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz008.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz008.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz008.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz008.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz008.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz008.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('ktvf', 0.0055169646399529848) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz008.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz008.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz008.txt + +[mnz009] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz009.txt +centroid = (0.84059769165027298, -1.6582792102218604) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz009.txt +description = North Beltrami, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz009.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz009.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz009.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz009.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz009.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz009.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz009.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz009.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz009.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz009.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz009.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz009.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz009.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz009.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz009.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('kvwu', 0.0057703142513069626) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz009.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz009.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz009.txt + +[mnz010] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz010.txt +centroid = (0.84198522840560841, -1.6368989268849299) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz010.txt +description = Koochiching, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz010.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz010.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz010.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz010.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz010.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz010.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz010.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz010.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz010.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz010.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz010.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz010.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz010.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz010.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz010.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('kinl', 0.0072261798544528515) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz010.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz010.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz010.txt + +[mnz011] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz011.txt +centroid = (0.84018404861755036, -1.6149426848948412) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz011.txt +description = North St. Louis, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz011.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz011.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz011.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz011.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz011.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz011.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz011.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz011.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz011.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz011.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz011.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz011.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz011.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz011.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz011.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('kcdd', 0.002286267153029375) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz011.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz011.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz011.txt + +[mnz012] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz012.txt +centroid = (0.8346827708152641, -1.5917071165630405) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz012.txt +description = Northern Cook/Northern Lake, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz012.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz012.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz012.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz012.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz012.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz012.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz012.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz012.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz012.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz012.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz012.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz012.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz012.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz012.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz012.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('kelo', 0.0074454270254865184) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz012.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz012.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz012.txt + +[mnz013] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz013.txt +centroid = (0.83891344892209851, -1.6761566177500382) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz013.txt +description = Pennington, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz013.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz013.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz013.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz013.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz013.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz013.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz013.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz013.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz013.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz013.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz013.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz013.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz013.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz013.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz013.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('ktvf', 0.001710274896628594) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz013.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz013.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz013.txt + +[mnz014] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz014.txt +centroid = (0.8355187835269694, -1.6771793806917068) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz014.txt +description = Red Lake, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz014.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz014.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz014.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz014.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz014.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz014.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz014.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz014.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz014.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz014.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz014.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz014.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz014.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz014.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz014.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('ktvf', 0.0035549072413209788) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz014.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz014.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz014.txt + +[mnz015] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz015.txt +centroid = (0.83178377892770161, -1.6740849119279211) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz015.txt +description = East Polk, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz015.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz015.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz015.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz015.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz015.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz015.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz015.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz015.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz015.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz015.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz015.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz015.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz015.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz015.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz015.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('kfse', 0.002044460057999309) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz015.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz015.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz015.txt + +[mnz016] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz016.txt +centroid = (0.83342962441233226, -1.664853865514123) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz016.txt +description = North Clearwater, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz016.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz016.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz016.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz016.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz016.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz016.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz016.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz016.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz016.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz016.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz016.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz016.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz016.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz016.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz016.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('kfse', 0.0053022685728457784) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz016.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz016.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz016.txt + +[mnz017] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz017.txt +centroid = (0.83132301200517511, -1.6546105281341683) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz017.txt +description = South Beltrami, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz017.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz017.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz017.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz017.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz017.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz017.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz017.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz017.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz017.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz017.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz017.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz017.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz017.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz017.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz017.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('kbji', 0.0027633946760468858) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz017.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz017.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz017.txt + +[mnz018] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz018.txt +centroid = (0.83190071598758519, -1.635893617235781) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz018.txt +description = North Itasca, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz018.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz018.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz018.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz018.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz018.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz018.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz018.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz018.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz018.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz018.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz018.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz018.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz018.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz018.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz018.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('kfoz', 0.0022672514245679403) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz018.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz018.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz018.txt + +[mnz019] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz019.txt +centroid = (0.82809066223048167, -1.6132985847394623) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz019.txt +description = Central St. Louis, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz019.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz019.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz019.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz019.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz019.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz019.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz019.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz019.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz019.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz019.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz019.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz019.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz019.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz019.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz019.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('kevm', 0.00092153808968016429) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz019.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz019.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz019.txt + +[mnz020] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz020.txt +centroid = (0.82522657692795887, -1.5960669490345225) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz020.txt +description = Southern Lake/North Shore, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz020.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz020.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz020.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz020.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz020.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz020.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz020.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz020.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz020.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz020.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz020.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz020.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz020.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz020.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz020.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('kbfw', 0.0015396094116007779) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz020.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz020.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz020.txt + +[mnz021] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz021.txt +centroid = (0.8343249783186053, -1.5779818473253573) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz021.txt +description = Southern Cook/North Shore, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz021.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz021.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz021.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz021.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz021.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz021.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz021.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz021.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz021.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz021.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz021.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz021.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz021.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz021.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz021.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('kgna', 0.00062071379002765718) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz021.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz021.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz021.txt + +[mnz022] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz022.txt +centroid = (0.82598055916482049, -1.6721825030432471) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz022.txt +description = Mahnomen, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz022.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz022.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz022.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz022.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz022.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz022.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz022.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz022.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz022.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz022.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz022.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz022.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz022.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz022.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz022.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('kfse', 0.0046890403366839171) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz022.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz022.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz022.txt + +[mnz023] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz023.txt +centroid = (0.82593867126277265, -1.6644210238596284) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz023.txt +description = South Clearwater, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz023.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz023.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz023.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz023.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz023.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz023.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz023.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz023.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz023.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz023.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz023.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz023.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz023.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz023.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz023.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('kfse', 0.0067454926067390866) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz023.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz023.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz023.txt + +[mnz024] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz024.txt +centroid = (0.82220192133425274, -1.6566071847984498) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz024.txt +description = Hubbard, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz024.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz024.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz024.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz024.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz024.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz024.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz024.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz024.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz024.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz024.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz024.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz024.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz024.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz024.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz024.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('kpkd', 0.0040568478277627175) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz024.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz024.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz024.txt + +[mnz025] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz025.txt +centroid = (0.82211814553015705, -1.6447005486413444) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz025.txt +description = North Cass, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz025.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz025.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz025.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz025.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz025.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz025.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz025.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz025.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz025.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz025.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz025.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz025.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz025.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz025.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz025.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('kxvg', 0.0020160056652245291) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz025.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz025.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz025.txt + +[mnz026] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz026.txt +centroid = (0.82483562317551218, -1.6314325556676834) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz026.txt +description = South Itasca, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz026.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz026.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz026.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz026.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz026.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz026.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz026.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz026.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz026.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz026.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz026.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz026.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz026.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz026.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz026.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('kgpz', 0.00090262464232928404) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz026.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz026.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz026.txt + +[mnz027] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz027.txt +centroid = (0.81918424705755455, -1.6741704330612688) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz027.txt +description = West Becker, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz027.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz027.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz027.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz027.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz027.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz027.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz027.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz027.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz027.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz027.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz027.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz027.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz027.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz027.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz027.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('kdtl', 0.0018496144049082381) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz027.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz027.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz027.txt + +[mnz028] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz028.txt +centroid = (0.81914235915550659, -1.6652936884856255) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz028.txt +description = East Becker, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz028.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz028.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz028.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz028.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz028.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz028.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz028.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz028.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz028.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz028.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz028.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz028.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz028.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz028.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz028.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('kdtl', 0.005861368190376714) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz028.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz028.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz028.txt + +[mnz029] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz029.txt +centroid = (0.80908228134701132, -1.6836912041308978) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz029.txt +description = Wilkin, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz029.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz029.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz029.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz029.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz029.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz029.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz029.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz029.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz029.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz029.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz029.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz029.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz029.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz029.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz029.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('kbwp', 0.0025883094383786455) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz029.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz029.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz029.txt + +[mnz030] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz030.txt +centroid = (0.80993923800974055, -1.6758215145336552) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz030.txt +description = West Otter Tail, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz030.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz030.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz030.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz030.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz030.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz030.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz030.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz030.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz030.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz030.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz030.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz030.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz030.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz030.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz030.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('kffm', 0.0026720001618146939) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz030.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz030.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz030.txt + +[mnz031] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz031.txt +centroid = (0.81002301381383623, -1.6661331918558349) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz031.txt +description = East Otter Tail, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz031.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz031.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz031.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz031.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz031.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz031.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz031.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz031.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz031.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz031.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz031.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz031.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz031.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz031.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz031.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('kadc', 0.003103251319801912) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz031.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz031.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz031.txt + +[mnz032] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz032.txt +centroid = (0.81307559467557433, -1.6575287186435026) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz032.txt +description = Wadena, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz032.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz032.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz032.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz032.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz032.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz032.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz032.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz032.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz032.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz032.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz032.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz032.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz032.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz032.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz032.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('ksaz', 0.0040770180614470991) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz032.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz032.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz032.txt + +[mnz033] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz033.txt +centroid = (0.81270558487415157, -1.6502472050041825) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz033.txt +description = South Cass, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz033.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz033.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz033.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz033.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz033.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz033.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz033.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz033.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz033.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz033.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz033.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz033.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz033.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz033.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz033.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('kpwc', 0.0034522131775959566) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz033.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz033.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz033.txt + +[mnz034] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz034.txt +centroid = (0.81127092422901226, -1.6418469353143337) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz034.txt +description = Crow Wing, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz034.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz034.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz034.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz034.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz034.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz034.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz034.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz034.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz034.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz034.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz034.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz034.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz034.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz034.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz034.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('kbrd', 0.0016223784412865232) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz034.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz034.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz034.txt + +[mnz035] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz035.txt +centroid = (0.81726787553886471, -1.6304604072743227) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz035.txt +description = Northern Aitkin, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz035.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz035.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz035.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz035.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz035.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz035.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz035.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz035.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz035.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz035.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz035.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz035.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz035.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz035.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz035.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('khzx', 0.0038464995158052095) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz035.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz035.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz035.txt + +[mnz036] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz036.txt +centroid = (0.8099985792043084, -1.6303574328484551) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz036.txt +description = South Aitkin, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz036.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz036.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz036.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz036.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz036.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz036.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz036.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz036.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz036.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz036.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz036.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz036.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz036.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz036.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz036.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('khzx', 0.0038531794868994097) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz036.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz036.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz036.txt + +[mnz037] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz037.txt +centroid = (0.815969350575381, -1.6158275668256024) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz037.txt +description = Carlton/South St. Louis, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz037.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz037.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz037.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz037.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz037.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz037.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz037.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz037.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz037.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz037.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz037.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz037.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz037.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz037.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz037.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('kcoq', 0.0013150826910214818) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz037.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz037.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz037.txt + +[mnz038] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz038.txt +centroid = (0.80495981365380076, -1.618642782909069) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz038.txt +description = Pine, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz038.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz038.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz038.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz038.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz038.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz038.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz038.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz038.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz038.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz038.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz038.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz038.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz038.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz038.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz038.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('k04w', 0.0025164940117398597) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz038.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz038.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz038.txt + +[mnz039] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz039.txt +centroid = (0.79887385055209659, -1.6837470546669615) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz039.txt +description = Traverse, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz039.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz039.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz039.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz039.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz039.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz039.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz039.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz039.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz039.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz039.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz039.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz039.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz039.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz039.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz039.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('keth', 0.00075753204554804385) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz039.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz039.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz039.txt + +[mnz040] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz040.txt +centroid = (0.80169953861107524, -1.6757272667540477) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz040.txt +description = Grant, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz040.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz040.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz040.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz040.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz040.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz040.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz040.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz040.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz040.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz040.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz040.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz040.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz040.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz040.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz040.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('ky63', 0.00092908169897852025) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz040.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz040.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz040.txt + +[mnz041] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz041.txt +centroid = (0.80169430262331942, -1.6659778575524073) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz041.txt +description = Douglas, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz041.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz041.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz041.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz041.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz041.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz041.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz041.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz041.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz041.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz041.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz041.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz041.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz041.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz041.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz041.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('kaxn', 0.0013382965952027424) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz041.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz041.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz041.txt + +[mnz042] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz042.txt +centroid = (0.80408365836929951, -1.6562755722405709) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz042.txt +description = Todd, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz042.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz042.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz042.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz042.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz042.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz042.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz042.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz042.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz042.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz042.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz042.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz042.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz042.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz042.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz042.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('k14y', 0.0030010702931637838) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz042.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz042.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz042.txt + +[mnz043] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz043.txt +centroid = (0.80307136740314289, -1.6452939605870225) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz043.txt +description = Morrison, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz043.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz043.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz043.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz043.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz043.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz043.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz043.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz043.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz043.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz043.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz043.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz043.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz043.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz043.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz043.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('klxl', 0.0014741596886002372) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz043.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz043.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz043.txt + +[mnz044] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz044.txt +centroid = (0.80176935178115516, -1.6341535239715428) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz044.txt +description = Mille Lacs, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz044.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz044.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz044.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz044.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz044.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz044.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz044.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz044.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz044.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz044.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz044.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz044.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz044.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz044.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz044.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('kjmr', 0.0044457891544972365) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz044.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz044.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz044.txt + +[mnz045] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz045.txt +centroid = (0.8018967608165507, -1.6282787457093297) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz045.txt +description = Kanabec, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz045.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz045.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz045.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz045.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz045.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz045.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz045.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz045.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz045.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz045.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz045.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz045.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz045.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz045.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz045.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('kjmr', 0.0010665167728556664) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz045.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz045.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz045.txt + +[mnz046] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz046.txt +centroid = (0.79283501134019607, -1.6826893851402531) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz046.txt +description = Big Stone, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz046.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz046.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz046.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz046.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz046.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz046.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz046.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz046.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz046.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz046.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz046.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz046.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz046.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz046.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz046.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('kvvv', 0.0021103466929456487) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz046.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz046.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz046.txt + +[mnz047] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz047.txt +centroid = (0.79562753814338705, -1.6755213179023123) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz047.txt +description = Stevens, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz047.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz047.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz047.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz047.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz047.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz047.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz047.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz047.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz047.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz047.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz047.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz047.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz047.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz047.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz047.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('kmox', 0.00053279047654309416) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz047.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz047.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz047.txt + +[mnz048] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz048.txt +centroid = (0.79562579281413504, -1.665820777919728) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz048.txt +description = Pope, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz048.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz048.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz048.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz048.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz048.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz048.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz048.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz048.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz048.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz048.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz048.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz048.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz048.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz048.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz048.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('kghw', 0.0019191027273762985) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz048.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz048.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz048.txt + +[mnz049] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz049.txt +centroid = (0.79503587152696098, -1.6513083651893949) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz049.txt +description = Stearns, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz049.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz049.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz049.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz049.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz049.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz049.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz049.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz049.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz049.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz049.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz049.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz049.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz049.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz049.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz049.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('kpex', 0.0035402547959863589) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz049.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz049.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz049.txt + +[mnz050] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz050.txt +centroid = (0.79759976019814072, -1.6405902982528979) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz050.txt +description = Benton, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz050.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz050.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz050.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz050.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz050.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz050.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz050.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz050.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz050.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz050.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz050.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz050.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz050.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz050.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz050.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('kstc', 0.0026759916544691407) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz050.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz050.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz050.txt + +[mnz051] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz051.txt +centroid = (0.7931456799470511, -1.6366737794114226) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz051.txt +description = Sherburne, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz051.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz051.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz051.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz051.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz051.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz051.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz051.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz051.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz051.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz051.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz051.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz051.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz051.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz051.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz051.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('kpnm', 0.002826044173868118) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz051.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz051.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz051.txt + +[mnz052] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz052.txt +centroid = (0.79519818714739654, -1.6283084163066137) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz052.txt +description = Isanti, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz052.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz052.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz052.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz052.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz052.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz052.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz052.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz052.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz052.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz052.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz052.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz052.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz052.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz052.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz052.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('kcbg', 0.0003601283403708889) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz052.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz052.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz052.txt + +[mnz053] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz053.txt +centroid = (0.79416844288871979, -1.6215557374306477) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz053.txt +description = Chisago, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz053.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz053.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz053.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz053.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz053.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz053.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz053.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz053.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz053.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz053.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz053.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz053.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz053.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz053.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz053.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('kros', 0.0034565679430357578) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz053.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz053.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz053.txt + +[mnz054] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz054.txt +centroid = (0.78531962358110852, -1.6785442281667666) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz054.txt +description = Lac qui Parle, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz054.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz054.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz054.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz054.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz054.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz054.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz054.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz054.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz054.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz054.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz054.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz054.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz054.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz054.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz054.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('kdxx', 0.00017216402434238085) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz054.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz054.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz054.txt + +[mnz055] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz055.txt +centroid = (0.7903322091928362, -1.6699554629177025) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz055.txt +description = Swift, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz055.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz055.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz055.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz055.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz055.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz055.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz055.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz055.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz055.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz055.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz055.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz055.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz055.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz055.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz055.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('kbbb', 0.00070714001080932152) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz055.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz055.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz055.txt + +[mnz056] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz056.txt +centroid = (0.78578737182064307, -1.6679518249364129) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz056.txt +description = Chippewa, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz056.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz056.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz056.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz056.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz056.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz056.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz056.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz056.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz056.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz056.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz056.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz056.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz056.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz056.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz056.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('kmve', 0.0020912825808266796) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz056.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz056.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz056.txt + +[mnz057] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz057.txt +centroid = (0.78805804517748768, -1.6581465651987088) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz057.txt +description = Kandiyohi, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz057.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz057.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz057.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz057.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz057.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz057.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz057.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz057.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz057.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz057.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz057.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz057.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz057.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz057.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz057.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('kbdh', 0.0016419101802871029) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz057.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz057.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz057.txt + +[mnz058] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz058.txt +centroid = (0.78754666370665338, -1.6498143633496878) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz058.txt +description = Meeker, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz058.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz058.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz058.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz058.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz058.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz058.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz058.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz058.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz058.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz058.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz058.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz058.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz058.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz058.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz058.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('kljf', 0.00051552190584579476) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz058.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz058.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz058.txt + +[mnz059] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz059.txt +centroid = (0.78843329096666648, -1.6399637250514318) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz059.txt +description = Wright, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz059.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz059.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz059.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz059.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz059.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz059.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz059.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz059.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz059.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz059.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz059.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz059.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz059.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz059.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz059.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('kmgg', 0.0011206561206517762) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz059.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz059.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz059.txt + +[mnz060] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz060.txt +centroid = (0.78547670321378804, -1.6314779342282355) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz060.txt +description = Hennepin, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz060.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz060.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz060.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz060.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz060.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz060.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz060.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz060.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz060.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz060.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz060.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz060.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz060.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz060.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz060.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('kmic', 0.001903435335188887) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz060.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz060.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz060.txt + +[mnz061] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz061.txt +centroid = (0.79016640291389684, -1.6274566956316403) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz061.txt +description = Anoka, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz061.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz061.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz061.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz061.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz061.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz061.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz061.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz061.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz061.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz061.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz061.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz061.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz061.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz061.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz061.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('kane', 0.0021811036807777824) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz061.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz061.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz061.txt + +[mnz062] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz062.txt +centroid = (0.78569661469953933, -1.6248910616312089) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz062.txt +description = Ramsey, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz062.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz062.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz062.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz062.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz062.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz062.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz062.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz062.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz062.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz062.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz062.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz062.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz062.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz062.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz062.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('kstp', 0.0015841292405817792) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz062.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz062.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz062.txt + +[mnz063] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz063.txt +centroid = (0.7860666245009621, -1.621129877093161) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz063.txt +description = Washington, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz063.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz063.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz063.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz063.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz063.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz063.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz063.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz063.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz063.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz063.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz063.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz063.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz063.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz063.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz063.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('k21d', 0.00078851626944449445) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz063.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz063.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz063.txt + +[mnz064] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz064.txt +centroid = (0.78044491898028845, -1.67321748328968) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz064.txt +description = Yellow Medicine, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz064.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz064.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz064.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz064.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz064.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz064.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz064.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz064.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz064.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz064.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz064.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz064.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz064.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz064.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz064.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('kgdb', 0.0039271140454521358) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz064.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz064.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz064.txt + +[mnz065] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz065.txt +centroid = (0.78062992388099972, -1.6571412555495599) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz065.txt +description = Renville, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz065.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz065.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz065.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz065.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz065.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz065.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz065.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz065.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz065.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz065.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz065.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz065.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz065.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz065.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz065.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('kovl', 0.0013938371128842228) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz065.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz065.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz065.txt + +[mnz066] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz066.txt +centroid = (0.78231765726767832, -1.6453637737571023) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz066.txt +description = McLeod, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz066.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz066.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz066.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz066.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz066.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz066.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz066.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz066.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz066.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz066.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz066.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz066.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz066.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz066.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz066.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('khcd', 0.0015659148747603432) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz066.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz066.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz066.txt + +[mnz067] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz067.txt +centroid = (0.77805905389281216, -1.6446604060685486) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz067.txt +description = Sibley, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz067.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz067.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz067.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz067.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz067.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz067.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz067.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz067.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz067.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz067.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz067.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz067.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz067.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz067.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz067.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('kgyl', 0.0036074922469349615) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz067.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz067.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz067.txt + +[mnz068] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz068.txt +centroid = (0.78227053337787444, -1.6371624716019808) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz068.txt +description = Carver, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz068.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz068.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz068.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz068.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz068.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz068.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz068.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz068.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz068.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz068.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz068.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz068.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz068.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz068.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz068.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('kgyl', 0.0036310932474254575) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz068.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz068.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz068.txt + +[mnz069] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz069.txt +centroid = (0.77926158574743631, -1.6325059331576601) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz069.txt +description = Scott, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz069.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz069.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz069.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz069.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz069.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz069.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz069.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz069.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz069.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz069.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz069.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz069.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz069.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz069.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz069.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('kfcm', 0.0033092305311114931) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz069.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz069.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz069.txt + +[mnz070] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz070.txt +centroid = (0.7796699927924029, -1.6243011403440348) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz070.txt +description = Dakota, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz070.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz070.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz070.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz070.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz070.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz070.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz070.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz070.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz070.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz070.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz070.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz070.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz070.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz070.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz070.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('klvn', 0.0021585118762418093) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz070.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz070.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz070.txt + +[mnz071] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz071.txt +centroid = (0.77514609937123358, -1.6801778563466332) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz071.txt +description = Lincoln, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz071.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz071.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz071.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz071.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz071.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz071.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz071.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz071.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz071.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz071.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz071.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz071.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz071.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz071.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz071.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('kcnb', 0.005306967214409956) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz071.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz071.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz071.txt + +[mnz072] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz072.txt +centroid = (0.77516180733450157, -1.6727061018188454) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz072.txt +description = Lyon, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz072.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz072.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz072.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz072.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz072.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz072.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz072.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz072.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz072.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz072.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz072.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz072.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz072.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz072.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz072.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('kmml', 0.00069519891226352726) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz072.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz072.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz072.txt + +[mnz073] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz073.txt +centroid = (0.77499076506780606, -1.6624941803654267) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz073.txt +description = Redwood, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz073.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz073.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz073.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz073.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz073.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz073.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz073.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz073.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz073.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz073.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz073.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz073.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz073.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz073.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz073.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('krwf', 0.0033214386738888778) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz073.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz073.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz073.txt + +[mnz074] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz074.txt +centroid = (0.77217031299658323, -1.6533102578414325) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz074.txt +description = Brown, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz074.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz074.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz074.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz074.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz074.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz074.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz074.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz074.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz074.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz074.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz074.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz074.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz074.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz074.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz074.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('kulm', 0.0031287587672887084) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz074.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz074.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz074.txt + +[mnz075] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz075.txt +centroid = (0.77405352325948518, -1.6449274414441037) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz075.txt +description = Nicollet, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz075.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz075.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz075.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz075.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz075.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz075.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz075.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz075.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz075.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz075.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz075.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz075.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz075.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz075.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz075.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('kulm', 0.0032066985258201023) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz075.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz075.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz075.txt + +[mnz076] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz076.txt +centroid = (0.77442702371941197, -1.6358971078942852) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz076.txt +description = Le Sueur, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz076.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz076.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz076.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz076.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz076.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz076.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz076.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz076.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz076.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz076.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz076.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz076.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz076.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz076.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz076.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('kmkt', 0.0035680723203313372) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz076.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz076.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz076.txt + +[mnz077] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz077.txt +centroid = (0.774125081758817, -1.6283328509161417) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz077.txt +description = Rice, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz077.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz077.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz077.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz077.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz077.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz077.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz077.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz077.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz077.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz077.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz077.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz077.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz077.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz077.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz077.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('kfbl', 0.00044057099324197222) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz077.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz077.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz077.txt + +[mnz078] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz078.txt +centroid = (0.77509897548142981, -1.6183129156804421) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz078.txt +description = Goodhue, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz078.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz078.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz078.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz078.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz078.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz078.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz078.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz078.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz078.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz078.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz078.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz078.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz078.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz078.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz078.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('ksyn', 0.0038324410405341266) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz078.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz078.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz078.txt + +[mnz079] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz079.txt +centroid = (0.77290509661167284, -1.6097224051021262) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz079.txt +description = Wabasha, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz079.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz079.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz079.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz079.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz079.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz079.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz079.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz079.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz079.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz079.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz079.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz079.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz079.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz079.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz079.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('k9mn', 0.0056426080715121733) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz079.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz079.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz079.txt + +[mnz080] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz080.txt +centroid = (0.76833058864219583, -1.6713831422458338) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz080.txt +description = Murray, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz080.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz080.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz080.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz080.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz080.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz080.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz080.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz080.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz080.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz080.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz080.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz080.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz080.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz080.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz080.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('kdvp', 0.00066419753058111197) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz080.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz080.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz080.txt + +[mnz081] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz081.txt +centroid = (0.76806878925439659, -1.6612253259992269) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz081.txt +description = Cottonwood, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz081.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz081.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz081.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz081.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz081.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz081.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz081.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz081.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz081.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz081.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz081.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz081.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz081.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz081.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz081.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('kmwm', 0.0018684020188661668) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz081.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz081.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz081.txt + +[mnz082] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz082.txt +centroid = (0.76756613442982213, -1.6513275638111669) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz082.txt +description = Watonwan, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz082.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz082.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz082.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz082.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz082.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz082.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz082.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz082.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz082.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz082.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz082.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz082.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz082.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz082.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz082.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('kjyg', 0.00071785808391092057) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz082.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz082.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz082.txt + +[mnz083] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz083.txt +centroid = (0.768548754798695, -1.6417806128027579) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz083.txt +description = Blue Earth, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz083.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz083.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz083.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz083.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz083.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz083.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz083.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz083.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz083.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz083.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz083.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz083.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz083.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz083.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz083.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('kmkt', 0.0036945211216968237) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz083.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz083.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz083.txt + +[mnz084] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz084.txt +centroid = (0.76833058864219583, -1.6334065230516892) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz084.txt +description = Waseca, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz084.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz084.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz084.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz084.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz084.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz084.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz084.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz084.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz084.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz084.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz084.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz084.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz084.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz084.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz084.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('kacq', 0.0009920292742877845) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz084.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz084.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz084.txt + +[mnz085] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz085.txt +centroid = (0.76833407930069975, -1.6271006484642336) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz085.txt +description = Steele, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz085.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz085.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz085.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz085.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz085.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz085.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz085.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz085.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz085.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz085.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz085.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz085.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz085.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz085.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz085.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('kowa', 0.0016742812108428715) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz085.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz085.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz085.txt + +[mnz086] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz086.txt +centroid = (0.76833756995920377, -1.6207476499869742) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz086.txt +description = Dodge, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz086.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz086.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz086.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz086.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz086.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz086.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz086.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz086.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz086.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz086.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz086.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz086.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz086.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz086.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz086.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('ktob', 0.00039193925326835345) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz086.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz086.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz086.txt + +[mnz087] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz087.txt +centroid = (0.76800770273057672, -1.6127156447692963) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz087.txt +description = Olmsted, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz087.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz087.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz087.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz087.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz087.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz087.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz087.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz087.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz087.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz087.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz087.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz087.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz087.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz087.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz087.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('k9mn', 0.0011435202441215995) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz087.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz087.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz087.txt + +[mnz088] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz088.txt +centroid = (0.76771623274549372, -1.6018474795171278) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz088.txt +description = Winona, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz088.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz088.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz088.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz088.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz088.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz088.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz088.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz088.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz088.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz088.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz088.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz088.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz088.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz088.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz088.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('kona', 0.0019539221591676568) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz088.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz088.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz088.txt + +[mnz089] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz089.txt +centroid = (0.76225858817450742, -1.6712120999791384) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz089.txt +description = Nobles, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz089.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz089.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz089.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz089.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz089.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz089.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz089.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz089.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz089.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz089.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz089.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz089.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz089.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz089.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz089.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('kotg', 0.0021884292496592512) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz089.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz089.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz089.txt + +[mnz090] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz090.txt +centroid = (0.76225684284525552, -1.6607523417719363) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz090.txt +description = Jackson, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz090.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz090.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz090.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz090.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz090.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz090.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz090.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz090.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz090.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz090.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz090.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz090.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz090.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz090.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz090.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('kmjq', 0.0021967689347370013) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz090.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz090.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz090.txt + +[mnz091] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz091.txt +centroid = (0.76225858817450742, -1.6502280063824106) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz091.txt +description = Martin, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz091.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz091.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz091.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz091.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz091.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz091.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz091.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz091.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz091.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz091.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz091.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz091.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz091.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz091.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz091.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('kfrm', 0.001749134025331191) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz091.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz091.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz091.txt + +[mnz092] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz092.txt +centroid = (0.7622533521867515, -1.6397001803343807) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz092.txt +description = Faribault, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz092.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz092.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz092.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz092.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz092.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz092.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz092.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz092.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz092.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz092.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz092.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz092.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz092.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz092.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz092.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('kfrm', 0.0059333968633857436) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz092.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz092.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz092.txt + +[mnz093] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz093.txt +centroid = (0.76225160685749949, -1.6292456581149346) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz093.txt +description = Freeborn, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz093.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz093.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz093.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz093.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz093.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz093.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz093.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz093.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz093.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz093.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz093.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz093.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz093.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz093.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz093.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('kael', 0.00027924675501492496) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz093.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz093.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz093.txt + +[mnz094] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz094.txt +centroid = (0.76220971895545164, -1.6188365144560404) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz094.txt +description = Mower, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz094.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz094.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz094.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz094.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz094.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz094.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz094.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz094.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz094.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz094.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz094.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz094.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz094.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz094.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz094.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('kaum', 0.0022844553567015037) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz094.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz094.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz094.txt + +[mnz095] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz095.txt +centroid = (0.76225509751600351, -1.6072754534908302) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz095.txt +description = Fillmore, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz095.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz095.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz095.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz095.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz095.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz095.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz095.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz095.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz095.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz095.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz095.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz095.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz095.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz095.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz095.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('kfka', 0.0011322893142168241) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz095.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz095.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz095.txt + +[mnz096] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz096.txt +centroid = (0.76220971895545164, -1.5968506018686679) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz096.txt +description = Houston, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz096.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz096.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz096.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz096.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz096.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz096.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz096.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz096.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz096.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz096.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz096.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz096.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz096.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz096.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz096.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('klse', 0.0048004199735343107) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz096.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz096.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz096.txt + +[mnz097] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz097.txt +centroid = (0.76834629660546372, -1.6800295033602137) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz097.txt +description = Pipestone, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz097.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz097.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz097.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz097.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz097.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz097.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz097.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz097.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz097.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz097.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz097.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz097.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz097.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz097.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz097.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('kpqn', 0.0010053403638913268) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz097.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz097.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz097.txt + +[mnz098] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mn/mnz098.txt +centroid = (0.76226731482076748, -1.6799352555806062) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mn/mnz098.txt +description = Rock, MN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mn/mnz098.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mn/mnz098.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mn/mnz098.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mn/mnz098.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mn/mnz098.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mn/mnz098.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mn/mnz098.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mn/mnz098.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mn/mnz098.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mn/mnz098.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mn/mnz098.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mn/mnz098.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mn/mnz098.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mn/mnz098.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mn/mnz098.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mn.txt +station = ('klyv', 0.0010491955039339089) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mn/mnz098.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mn/mnz098.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mn/mnz098.txt + +[moz001] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz001.txt +centroid = (0.70564883388607147, -1.6655153453006291) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz001.txt +description = Atchison, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz001.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz001.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz001.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz001.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz001.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz001.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz001.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz001.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz001.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz001.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz001.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz001.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz001.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz001.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz001.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('ksda', 0.0055745188963206961) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz001.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz001.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz001.txt + +[moz002] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz002.txt +centroid = (0.7044271034096754, -1.6560277354867876) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz002.txt +description = Nodaway, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz002.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz002.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz002.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz002.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz002.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz002.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz002.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz002.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz002.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz002.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz002.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz002.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz002.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz002.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz002.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('kicl', 0.0065233175701218645) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz002.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz002.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz002.txt + +[moz003] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz003.txt +centroid = (0.70649357324403672, -1.6479782769765898) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz003.txt +description = Worth, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz003.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz003.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz003.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz003.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz003.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz003.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz003.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz003.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz003.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz003.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz003.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz003.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz003.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz003.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz003.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('klwd', 0.0074294168955162353) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz003.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz003.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz003.txt + +[moz004] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz004.txt +centroid = (0.7018335441412118, -1.6477636014785944) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz004.txt +description = Gentry, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz004.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz004.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz004.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz004.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz004.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz004.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz004.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz004.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz004.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz004.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz004.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz004.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz004.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz004.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz004.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('klwd', 0.0099975010295003594) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz004.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz004.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz004.txt + +[moz005] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz005.txt +centroid = (0.70432238365455568, -1.640471615863762) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz005.txt +description = Harrison, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz005.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz005.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz005.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz005.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz005.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz005.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz005.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz005.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz005.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz005.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz005.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz005.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz005.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz005.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz005.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('klwd', 0.0050143541382721684) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz005.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz005.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz005.txt + +[moz006] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz006.txt +centroid = (0.70550222622890391, -1.6330784011523143) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz006.txt +description = Mercer, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz006.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz006.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz006.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz006.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz006.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz006.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz006.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz006.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz006.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz006.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz006.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz006.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz006.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz006.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz006.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('klwd', 0.0057363653833530153) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz006.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz006.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz006.txt + +[moz007] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz007.txt +centroid = (0.7064900825855327, -1.6234372023642976) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz007.txt +description = Putnam, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz007.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz007.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz007.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz007.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz007.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz007.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz007.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz007.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz007.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz007.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz007.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz007.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz007.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz007.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz007.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('ktvk', 0.0038324437835643892) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz007.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz007.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz007.txt + +[moz008] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz008.txt +centroid = (0.7063382389406091, -1.6147943319084217) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz008.txt +description = Schuyler, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz008.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz008.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz008.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz008.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz008.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz008.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz008.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz008.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz008.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz008.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz008.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz008.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz008.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz008.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz008.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('ktvk', 0.0062181027479900879) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz008.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz008.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz008.txt + +[moz009] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz009.txt +centroid = (0.7060310609922581, -1.6082702911644668) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz009.txt +description = Scotland, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz009.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz009.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz009.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz009.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz009.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz009.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz009.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz009.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz009.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz009.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz009.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz009.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz009.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz009.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz009.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('kirk', 0.0081641928808056687) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz009.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz009.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz009.txt + +[moz010] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz010.txt +centroid = (0.70529278671866458, -1.601137130511566) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz010.txt +description = Clark, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz010.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz010.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz010.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz010.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz010.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz010.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz010.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz010.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz010.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz010.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz010.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz010.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz010.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz010.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz010.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('keok', 0.0041701311867273381) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz010.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz010.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz010.txt + +[moz011] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz011.txt +centroid = (0.69978278227011848, -1.661815247286401) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz011.txt +description = Holt, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz011.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz011.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz011.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz011.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz011.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz011.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz011.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz011.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz011.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz011.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz011.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz011.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz011.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz011.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz011.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('kfnb', 0.004922119475214177) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz011.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz011.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz011.txt + +[moz012] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz012.txt +centroid = (0.6978419761419008, -1.6546070374756645) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz012.txt +description = Andrew, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz012.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz012.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz012.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz012.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz012.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz012.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz012.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz012.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz012.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz012.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz012.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz012.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz012.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz012.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz012.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('kstj', 0.0040826293013362337) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz012.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz012.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz012.txt + +[moz013] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz013.txt +centroid = (0.69626768915660187, -1.6476728443574908) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz013.txt +description = De Kalb, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz013.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz013.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz013.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz013.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz013.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz013.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz013.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz013.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz013.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz013.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz013.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz013.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz013.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz013.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz013.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('kstj', 0.0072086160938950317) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz013.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz013.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz013.txt + +[moz014] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz014.txt +centroid = (0.69744578640169808, -1.6403564241331305) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz014.txt +description = Daviess, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz014.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz014.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz014.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz014.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz014.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz014.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz014.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz014.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz014.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz014.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz014.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz014.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz014.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz014.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz014.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('kcdj', 0.0059435164329033913) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz014.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz014.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz014.txt + +[moz015] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz015.txt +centroid = (0.70012137614500536, -1.6330225506162503) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz015.txt +description = Grundy, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz015.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz015.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz015.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz015.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz015.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz015.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz015.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz015.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz015.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz015.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz015.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz015.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz015.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz015.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz015.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('kcdj', 0.0051950492408760814) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz015.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz015.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz015.txt + +[moz016] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz016.txt +centroid = (0.70180910953168396, -1.6251022464707003) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz016.txt +description = Sullivan, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz016.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz016.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz016.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz016.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz016.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz016.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz016.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz016.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz016.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz016.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz016.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz016.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz016.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz016.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz016.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('ktvk', 0.0086591747123944442) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz016.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz016.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz016.txt + +[moz017] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz017.txt +centroid = (0.7014582983520331, -1.6161871046515133) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz017.txt +description = Adair, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz017.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz017.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz017.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz017.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz017.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz017.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz017.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz017.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz017.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz017.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz017.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz017.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz017.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz017.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz017.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('kirk', 0.0017198678446278344) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz017.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz017.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz017.txt + +[moz018] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz018.txt +centroid = (0.70036921289878851, -1.6082877444569867) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz018.txt +description = Knox, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz018.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz018.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz018.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz018.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz018.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz018.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz018.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz018.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz018.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz018.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz018.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz018.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz018.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz018.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz018.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('kirk', 0.0053869392529277841) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz018.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz018.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz018.txt + +[moz019] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz019.txt +centroid = (0.69982292484291431, -1.600854387172743) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz019.txt +description = Lewis, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz019.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz019.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz019.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz019.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz019.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz019.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz019.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz019.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz019.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz019.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz019.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz019.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz019.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz019.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz019.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('keok', 0.0075128111327948397) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz019.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz019.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz019.txt + +[moz020] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz020.txt +centroid = (0.69219409068244708, -1.6546803413042481) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz020.txt +description = Buchanan, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz020.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz020.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz020.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz020.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz020.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz020.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz020.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz020.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz020.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz020.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz020.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz020.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz020.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz020.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz020.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('kstj', 0.002382966833846166) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz020.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz020.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz020.txt + +[moz021] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz021.txt +centroid = (0.69118179971629035, -1.6476710990282388) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz021.txt +description = Clinton, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz021.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz021.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz021.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz021.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz021.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz021.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz021.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz021.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz021.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz021.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz021.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz021.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz021.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz021.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz021.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('kmci', 0.006882803988376574) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz021.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz021.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz021.txt + +[moz022] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz022.txt +centroid = (0.69212253218311537, -1.6403093002433267) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz022.txt +description = Caldwell, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz022.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz022.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz022.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz022.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz022.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz022.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz022.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz022.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz022.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz022.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz022.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz022.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz022.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz022.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz022.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('kcdj', 0.0060529104325931218) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz022.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz022.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz022.txt + +[moz023] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz023.txt +centroid = (0.6943286283576362, -1.6327258446434114) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz023.txt +description = Livingston, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz023.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz023.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz023.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz023.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz023.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz023.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz023.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz023.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz023.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz023.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz023.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz023.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz023.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz023.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz023.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('kcdj', 0.00076462818061093913) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz023.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz023.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz023.txt + +[moz024] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz024.txt +centroid = (0.69586626342864311, -1.6250271973128645) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz024.txt +description = Linn, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz024.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz024.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz024.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz024.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz024.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz024.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz024.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz024.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz024.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz024.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz024.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz024.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz024.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz024.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz024.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('kcdj', 0.0064485134494925668) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz024.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz024.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz024.txt + +[moz025] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz025.txt +centroid = (0.69517860370335749, -1.6155570407915432) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz025.txt +description = Macon, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz025.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz025.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz025.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz025.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz025.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz025.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz025.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz025.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz025.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz025.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz025.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz025.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz025.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz025.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz025.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('kirk', 0.004702483634595374) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz025.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz025.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz025.txt + +[moz026] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz026.txt +centroid = (0.69460264505019931, -1.6070398340418108) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz026.txt +description = Shelby, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz026.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz026.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz026.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz026.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz026.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz026.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz026.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz026.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz026.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz026.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz026.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz026.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz026.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz026.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz026.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('kirk', 0.0082425398941895836) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz026.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz026.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz026.txt + +[moz027] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz027.txt +centroid = (0.69474576204886274, -1.5991125485792526) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz027.txt +description = Marion, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz027.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz027.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz027.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz027.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz027.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz027.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz027.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz027.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz027.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz027.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz027.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz027.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz027.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz027.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz027.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('kuin', 0.0060790389491573197) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz027.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz027.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz027.txt + +[moz028] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz028.txt +centroid = (0.687317640752375, -1.654111363968098) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz028.txt +description = Platte, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz028.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz028.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz028.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz028.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz028.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz028.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz028.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz028.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz028.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz028.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz028.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz028.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz028.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz028.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz028.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('kmci', 0.0015048329258834457) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz028.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz028.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz028.txt + +[moz029] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz029.txt +centroid = (0.68609765560523084, -1.6479538423670619) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz029.txt +description = Clay, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz029.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz029.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz029.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz029.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz029.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz029.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz029.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz029.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz029.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz029.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz029.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz029.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz029.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz029.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz029.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('kmkc', 0.0041613837163913467) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz029.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz029.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz029.txt + +[moz030] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz030.txt +centroid = (0.68682894856181664, -1.6404332186202184) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz030.txt +description = Ray, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz030.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz030.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz030.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz030.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz030.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz030.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz030.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz030.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz030.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz030.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz030.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz030.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz030.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz030.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz030.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('klxt', 0.0084452241522609221) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz030.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz030.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz030.txt + +[moz031] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz031.txt +centroid = (0.68812747352530035, -1.6319718624065498) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz031.txt +description = Carroll, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz031.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz031.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz031.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz031.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz031.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz031.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz031.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz031.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz031.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz031.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz031.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz031.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz031.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz031.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz031.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('kcdj', 0.0068852597641717141) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz031.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz031.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz031.txt + +[moz032] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz032.txt +centroid = (0.68965812727929932, -1.6225034512144805) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz032.txt +description = Chariton, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz032.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz032.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz032.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz032.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz032.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz032.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz032.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz032.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz032.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz032.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz032.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz032.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz032.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz032.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz032.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('kver', 0.010730191338891613) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz032.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz032.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz032.txt + +[moz033] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz033.txt +centroid = (0.68836134764506751, -1.6143789435464471) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz033.txt +description = Randolph, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz033.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz033.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz033.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz033.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz033.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz033.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz033.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz033.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz033.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz033.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz033.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz033.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz033.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz033.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz033.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('kver', 0.0090739462775955744) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz033.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz033.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz033.txt + +[moz034] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz034.txt +centroid = (0.68932651472142037, -1.6057151291395471) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz034.txt +description = Monroe, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz034.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz034.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz034.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz034.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz034.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz034.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz034.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz034.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz034.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz034.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz034.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz034.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz034.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz034.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz034.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('kcou', 0.012203069716281739) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz034.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz034.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz034.txt + +[moz035] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz035.txt +centroid = (0.68988676541131055, -1.5973602380102503) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz035.txt +description = Ralls, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz035.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz035.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz035.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz035.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz035.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz035.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz035.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz035.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz035.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz035.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz035.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz035.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz035.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz035.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz035.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('kuin', 0.00829615217787694) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz035.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz035.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz035.txt + +[moz036] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz036.txt +centroid = (0.68667885024614506, -1.5912411136527582) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz036.txt +description = Pike, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz036.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz036.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz036.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz036.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz036.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz036.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz036.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz036.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz036.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz036.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz036.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz036.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz036.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz036.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz036.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('kppq', 0.0073860723546646809) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz036.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz036.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz036.txt + +[moz037] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz037.txt +centroid = (0.68082676126420805, -1.6466500814158223) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz037.txt +description = Jackson, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz037.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz037.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz037.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz037.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz037.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz037.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz037.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz037.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz037.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz037.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz037.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz037.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz037.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz037.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz037.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('klxt', 0.00078162370962079155) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz037.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz037.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz037.txt + +[moz038] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz038.txt +centroid = (0.6818233442670969, -1.6368657656291419) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz038.txt +description = Lafayette, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz038.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz038.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz038.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz038.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz038.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz038.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz038.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz038.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz038.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz038.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz038.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz038.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz038.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz038.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz038.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('krcm', 0.0049885472567166057) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz038.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz038.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz038.txt + +[moz039] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz039.txt +centroid = (0.68306252803601275, -1.626685260102259) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz039.txt +description = Saline, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz039.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz039.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz039.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz039.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz039.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz039.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz039.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz039.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz039.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz039.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz039.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz039.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz039.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz039.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz039.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('kdmo', 0.0073450816773941822) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz039.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz039.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz039.txt + +[moz040] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz040.txt +centroid = (0.68316899312038437, -1.6178469127701598) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz040.txt +description = Howard, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz040.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz040.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz040.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz040.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz040.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz040.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz040.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz040.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz040.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz040.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz040.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz040.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz040.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz040.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz040.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('kver', 0.0035442598762097668) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz040.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz040.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz040.txt + +[moz041] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz041.txt +centroid = (0.68051609265735302, -1.6111064511989577) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz041.txt +description = Boone, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz041.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz041.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz041.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz041.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz041.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz041.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz041.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz041.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz041.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz041.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz041.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz041.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz041.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz041.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz041.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('kcou', 0.0032892818228340034) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz041.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz041.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz041.txt + +[moz042] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz042.txt +centroid = (0.68444482880359236, -1.6029383102996242) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz042.txt +description = Audrain, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz042.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz042.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz042.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz042.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz042.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz042.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz042.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz042.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz042.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz042.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz042.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz042.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz042.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz042.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz042.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('kcou', 0.0086253313597976691) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz042.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz042.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz042.txt + +[moz043] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz043.txt +centroid = (0.67451739601824856, -1.6468019250607455) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz043.txt +description = Cass, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz043.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz043.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz043.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz043.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz043.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz043.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz043.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz043.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz043.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz043.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz043.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz043.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz043.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz043.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz043.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('klxt', 0.0055815697394480702) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz043.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz043.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz043.txt + +[moz044] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz044.txt +centroid = (0.6762121107219351, -1.6372287941135566) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz044.txt +description = Johnson, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz044.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz044.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz044.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz044.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz044.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz044.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz044.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz044.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz044.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz044.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz044.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz044.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz044.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz044.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz044.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('krcm', 0.00063241207486294316) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz044.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz044.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz044.txt + +[moz045] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz045.txt +centroid = (0.67593634870011987, -1.6281321380521623) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz045.txt +description = Pettis, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz045.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz045.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz045.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz045.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz045.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz045.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz045.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz045.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz045.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz045.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz045.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz045.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz045.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz045.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz045.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('kdmo', 0.0016254138503713853) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz045.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz045.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz045.txt + +[moz046] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz046.txt +centroid = (0.6779539493154253, -1.6198453147636933) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz046.txt +description = Cooper, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz046.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz046.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz046.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz046.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz046.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz046.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz046.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz046.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz046.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz046.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz046.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz046.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz046.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz046.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz046.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('kver', 0.0024385018846538337) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz046.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz046.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz046.txt + +[moz047] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz047.txt +centroid = (0.6742678139352134, -1.6158799267031621) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz047.txt +description = Moniteau, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz047.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz047.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz047.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz047.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz047.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz047.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz047.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz047.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz047.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz047.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz047.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz047.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz047.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz047.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz047.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('kver', 0.0055230331129452123) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz047.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz047.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz047.txt + +[moz048] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz048.txt +centroid = (0.67204775512667647, -1.6106177590083992) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz048.txt +description = Cole, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz048.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz048.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz048.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz048.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz048.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz048.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz048.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz048.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz048.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz048.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz048.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz048.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz048.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz048.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz048.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('kjef', 0.0024385876354982121) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz048.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz048.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz048.txt + +[moz049] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz049.txt +centroid = (0.67126061163402717, -1.6032908668085271) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz049.txt +description = Osage, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz049.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz049.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz049.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz049.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz049.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz049.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz049.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz049.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz049.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz049.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz049.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz049.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz049.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz049.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz049.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('kjef', 0.0046281555799218676) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz049.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz049.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz049.txt + +[moz050] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz050.txt +centroid = (0.67780734165825796, -1.6044113681883074) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz050.txt +description = Callaway, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz050.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz050.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz050.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz050.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz050.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz050.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz050.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz050.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz050.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz050.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz050.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz050.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz050.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz050.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz050.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('kcou', 0.0039658482067336147) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz050.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz050.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz050.txt + +[moz051] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz051.txt +centroid = (0.67965739066537179, -1.5964561574577174) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz051.txt +description = Montgomery, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz051.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz051.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz051.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz051.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz051.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz051.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz051.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz051.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz051.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz051.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz051.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz051.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz051.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz051.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz051.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('kfyg', 0.0089546730567379527) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz051.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz051.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz051.txt + +[moz052] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz052.txt +centroid = (0.68169244457319733, -1.5875549782725462) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz052.txt +description = Lincoln, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz052.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz052.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz052.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz052.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz052.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz052.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz052.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz052.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz052.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz052.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz052.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz052.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz052.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz052.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz052.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('kfyg', 0.0082247691712898485) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz052.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz052.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz052.txt + +[moz053] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz053.txt +centroid = (0.66771584792322669, -1.6465436163314506) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz053.txt +description = Bates, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz053.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz053.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz053.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz053.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz053.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz053.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz053.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz053.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz053.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz053.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz053.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz053.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz053.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz053.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz053.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('kojc', 0.01139754071484052) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz053.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz053.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz053.txt + +[moz054] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz054.txt +centroid = (0.66994812403652737, -1.6369914293352854) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz054.txt +description = Henry, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz054.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz054.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz054.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz054.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz054.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz054.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz054.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz054.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz054.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz054.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz054.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz054.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz054.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz054.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz054.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('kgly', 0.0016035930774514124) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz054.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz054.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz054.txt + +[moz055] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz055.txt +centroid = (0.66837034639272452, -1.628181007271218) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz055.txt +description = Benton, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz055.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz055.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz055.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz055.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz055.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz055.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz055.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz055.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz055.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz055.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz055.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz055.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz055.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz055.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz055.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('kgly', 0.0054878126800121836) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz055.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz055.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz055.txt + +[moz056] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz056.txt +centroid = (0.67062356645704924, -1.6211682743367049) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz056.txt +description = Morgan, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz056.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz056.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz056.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz056.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz056.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz056.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz056.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz056.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz056.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz056.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz056.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz056.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz056.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz056.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz056.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('kdmo', 0.0063849121107129271) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz056.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz056.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz056.txt + +[moz057] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz057.txt +centroid = (0.66696884700337311, -1.6131799023503268) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz057.txt +description = Miller, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz057.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz057.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz057.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz057.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz057.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz057.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz057.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz057.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz057.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz057.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz057.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz057.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz057.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz057.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz057.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('kaiz', 0.0026035675487125287) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz057.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz057.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz057.txt + +[moz058] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz058.txt +centroid = (0.6660455678290681, -1.6043921695665353) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz058.txt +description = Maries, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz058.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz058.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz058.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz058.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz058.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz058.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz058.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz058.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz058.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz058.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz058.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz058.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz058.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz058.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz058.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('kvih', 0.0022271879019316182) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz058.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz058.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz058.txt + +[moz059] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz059.txt +centroid = (0.67092027242988816, -1.5971141465857193) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz059.txt +description = Gasconade, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz059.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz059.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz059.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz059.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz059.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz059.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz059.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz059.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz059.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz059.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz059.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz059.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz059.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz059.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz059.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('kvih', 0.0064329205425202284) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz059.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz059.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz059.txt + +[moz060] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz060.txt +centroid = (0.67656990321859389, -1.5910543634227949) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz060.txt +description = Warren, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz060.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz060.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz060.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz060.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz060.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz060.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz060.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz060.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz060.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz060.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz060.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz060.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz060.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz060.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz060.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('kfyg', 0.0038361976763483315) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz060.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz060.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz060.txt + +[moz061] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz061.txt +centroid = (0.67687184517918886, -1.5825807899043625) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz061.txt +description = St. Charles, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz061.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz061.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz061.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz061.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz061.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz061.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz061.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz061.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz061.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz061.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz061.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz061.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz061.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz061.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz061.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('ksus', 0.0023275273916261185) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz061.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz061.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz061.txt + +[moz062] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz062.txt +centroid = (0.67040190964204593, -1.5895586162538358) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz062.txt +description = Franklin, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz062.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz062.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz062.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz062.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz062.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz062.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz062.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz062.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz062.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz062.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz062.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz062.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz062.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz062.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz062.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('kfyg', 0.0032721498200473016) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz062.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz062.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz062.txt + +[moz063] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz063.txt +centroid = (0.67440744027537292, -1.5785281353812315) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz063.txt +description = St. Louis, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz063.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz063.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz063.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz063.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz063.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz063.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz063.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz063.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz063.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz063.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz063.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz063.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz063.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz063.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz063.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('kstl', 0.0021726281061691197) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz063.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz063.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz063.txt + +[moz064] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz064.txt +centroid = (0.67432191914202522, -1.5750723834622828) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz064.txt +description = St. Louis City, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz064.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz064.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz064.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz064.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz064.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz064.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz064.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz064.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz064.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz064.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz064.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz064.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz064.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz064.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz064.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('kcps', 0.0017705815583221535) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz064.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz064.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz064.txt + +[moz065] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz065.txt +centroid = (0.66778042510555047, -1.5801827075121222) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz065.txt +description = Jefferson, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz065.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz065.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz065.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz065.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz065.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz065.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz065.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz065.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz065.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz065.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz065.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz065.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz065.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz065.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz065.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('ksus', 0.0069603589381894539) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz065.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz065.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz065.txt + +[moz066] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz066.txt +centroid = (0.66061759385536567, -1.6465855042334983) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz066.txt +description = Vernon, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz066.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz066.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz066.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz066.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz066.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz066.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz066.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz066.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz066.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz066.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz066.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz066.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz066.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz066.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz066.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('kpts', 0.008807547427931179) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz066.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz066.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz066.txt + +[moz067] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz067.txt +centroid = (0.66387263291033516, -1.6366999593502025) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz067.txt +description = St. Clair, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz067.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz067.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz067.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz067.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz067.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz067.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz067.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz067.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz067.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz067.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz067.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz067.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz067.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz067.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz067.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('kgly', 0.0057874477966026669) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz067.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz067.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz067.txt + +[moz068] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz068.txt +centroid = (0.6621918808406646, -1.6287534752658723) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz068.txt +description = Hickory, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz068.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz068.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz068.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz068.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz068.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz068.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz068.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz068.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz068.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz068.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz068.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz068.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz068.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz068.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz068.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('kgly', 0.008823194038850634) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz068.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz068.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz068.txt + +[moz069] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz069.txt +centroid = (0.66369809998513563, -1.6190721339050598) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz069.txt +description = Camden, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz069.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz069.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz069.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz069.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz069.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz069.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz069.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz069.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz069.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz069.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz069.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz069.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz069.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz069.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz069.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('kh21', 0.0014442239655997281) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz069.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz069.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz069.txt + +[moz070] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz070.txt +centroid = (0.66016380824984711, -1.6093262153619234) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz070.txt +description = Pulaski, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz070.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz070.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz070.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz070.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz070.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz070.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz070.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz070.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz070.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz070.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz070.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz070.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz070.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz070.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz070.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('ktbn', 0.0018939163801720792) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz070.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz070.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz070.txt + +[moz071] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz071.txt +centroid = (0.66108010610714418, -1.602079608307643) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz071.txt +description = Phelps, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz071.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz071.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz071.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz071.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz071.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz071.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz071.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz071.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz071.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz071.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz071.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz071.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz071.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz071.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz071.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('kvih', 0.0044860959251733388) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz071.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz071.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz071.txt + +[moz072] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz072.txt +centroid = (0.66281321805437454, -1.5935554202409026) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz072.txt +description = Crawford, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz072.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz072.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz072.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz072.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz072.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz072.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz072.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz072.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz072.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz072.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz072.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz072.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz072.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz072.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz072.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('kvih', 0.0069233010641280655) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz072.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz072.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz072.txt + +[moz073] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz073.txt +centroid = (0.66255665465433145, -1.5861098456518947) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz073.txt +description = Washington, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz073.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz073.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz073.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz073.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz073.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz073.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz073.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz073.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz073.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz073.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz073.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz073.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz073.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz073.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz073.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('kfam', 0.0070018216271115563) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz073.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz073.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz073.txt + +[moz074] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz074.txt +centroid = (0.65991597149606396, -1.5790499888275777) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz074.txt +description = St. Francois, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz074.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz074.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz074.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz074.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz074.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz074.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz074.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz074.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz074.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz074.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz074.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz074.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz074.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz074.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz074.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('kfam', 0.00093832071374157927) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz074.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz074.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz074.txt + +[moz075] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz075.txt +centroid = (0.66137506675073121, -1.5742032094947895) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz075.txt +description = Ste. Genevieve, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz075.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz075.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz075.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz075.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz075.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz075.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz075.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz075.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz075.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz075.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz075.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz075.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz075.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz075.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz075.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('kfam', 0.0039642289319481239) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz075.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz075.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz075.txt + +[moz076] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz076.txt +centroid = (0.65811304637875379, -1.5677315286283946) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz076.txt +description = Perry, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz076.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz076.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz076.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz076.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz076.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz076.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz076.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz076.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz076.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz076.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz076.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz076.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz076.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz076.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz076.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('ksar', 0.0079027371465332369) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz076.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz076.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz076.txt + +[moz077] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz077.txt +centroid = (0.65453861207066943, -1.6466675347083422) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz077.txt +description = Barton, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz077.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz077.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz077.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz077.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz077.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz077.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz077.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz077.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz077.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz077.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz077.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz077.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz077.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz077.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz077.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('kpts', 0.0053815419715879343) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz077.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz077.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz077.txt + +[moz078] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz078.txt +centroid = (0.65840451636383679, -1.63810669472731) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz078.txt +description = Cedar, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz078.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz078.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz078.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz078.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz078.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz078.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz078.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz078.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz078.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz078.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz078.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz078.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz078.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz078.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz078.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('ksgf', 0.010781725152742823) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz078.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz078.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz078.txt + +[moz079] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz079.txt +centroid = (0.65653177807644703, -1.6301462480089637) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz079.txt +description = Polk, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz079.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz079.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz079.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz079.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz079.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz079.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz079.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz079.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz079.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz079.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz079.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz079.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz079.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz079.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz079.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('ksgf', 0.0066917514264189116) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz079.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz079.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz079.txt + +[moz080] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz080.txt +centroid = (0.65764704346847136, -1.6235681020581971) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz080.txt +description = Dallas, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz080.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz080.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz080.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz080.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz080.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz080.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz080.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz080.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz080.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz080.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz080.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz080.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz080.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz080.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz080.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('kh21', 0.0068336484221094137) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz080.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz080.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz080.txt + +[moz081] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz081.txt +centroid = (0.6572613257037806, -1.6160055904093058) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz081.txt +description = Laclede, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz081.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz081.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz081.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz081.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz081.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz081.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz081.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz081.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz081.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz081.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz081.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz081.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz081.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz081.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz081.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('kh21', 0.0056111864108524395) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz081.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz081.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz081.txt + +[moz082] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz082.txt +centroid = (0.65130975295448001, -1.6050937919258372) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz082.txt +description = Texas, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz082.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz082.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz082.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz082.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz082.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz082.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz082.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz082.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz082.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz082.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz082.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz082.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz082.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz082.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz082.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('ktbn', 0.0076254165346960473) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz082.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz082.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz082.txt + +[moz083] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz083.txt +centroid = (0.6563589904804995, -1.5971141465857193) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz083.txt +description = Dent, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz083.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz083.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz083.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz083.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz083.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz083.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz083.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz083.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz083.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz083.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz083.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz083.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz083.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz083.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz083.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('kvih', 0.009860325325445075) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz083.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz083.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz083.txt + +[moz084] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz084.txt +centroid = (0.65546189124497445, -1.5842964485590727) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz084.txt +description = Iron, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz084.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz084.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz084.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz084.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz084.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz084.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz084.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz084.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz084.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz084.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz084.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz084.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz084.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz084.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz084.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('kfam', 0.0059759307966881477) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz084.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz084.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz084.txt + +[moz085] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz085.txt +centroid = (0.65411624239168675, -1.5768177127142771) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz085.txt +description = Madison, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz085.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz085.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz085.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz085.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz085.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz085.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz085.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz085.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz085.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz085.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz085.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz085.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz085.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz085.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz085.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('kfam', 0.0051823562373320576) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz085.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz085.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz085.txt + +[moz086] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz086.txt +centroid = (0.65139527408782771, -1.571248367071163) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz086.txt +description = Bollinger, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz086.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz086.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz086.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz086.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz086.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz086.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz086.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz086.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz086.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz086.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz086.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz086.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz086.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz086.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz086.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('kcgi', 0.0063389217954804939) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz086.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz086.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz086.txt + +[moz087] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz087.txt +centroid = (0.65247214223630812, -1.5652898130048545) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz087.txt +description = Cape Girardeau, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz087.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz087.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz087.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz087.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz087.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz087.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz087.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz087.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz087.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz087.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz087.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz087.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz087.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz087.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz087.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('kcgi', 0.0029796157720663268) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz087.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz087.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz087.txt + +[moz088] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz088.txt +centroid = (0.64932356826571036, -1.6465540883069625) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz088.txt +description = Jasper, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz088.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz088.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz088.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz088.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz088.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz088.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz088.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz088.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz088.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz088.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz088.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz088.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz088.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz088.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz088.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('kjln', 0.002405311836604568) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz088.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz088.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz088.txt + +[moz089] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz089.txt +centroid = (0.65331164560651744, -1.6379967389844343) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz089.txt +description = Dade, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz089.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz089.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz089.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz089.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz089.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz089.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz089.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz089.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz089.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz089.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz089.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz089.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz089.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz089.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz089.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('ksgf', 0.0073496836497587426) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz089.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz089.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz089.txt + +[moz090] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz090.txt +centroid = (0.65027651803729924, -1.6291252303965471) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz090.txt +description = Greene, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz090.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz090.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz090.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz090.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz090.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz090.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz090.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz090.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz090.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz090.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz090.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz090.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz090.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz090.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz090.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('ksgf', 0.00071877353816509682) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz090.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz090.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz090.txt + +[moz091] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz091.txt +centroid = (0.65067445310675409, -1.6209902507530016) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz091.txt +description = Webster, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz091.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz091.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz091.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz091.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz091.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz091.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz091.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz091.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz091.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz091.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz091.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz091.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz091.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz091.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz091.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('ksgf', 0.0070977427448344664) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz091.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz091.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz091.txt + +[moz092] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz092.txt +centroid = (0.65048595754753857, -1.6138832700388805) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz092.txt +description = Wright, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz092.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz092.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz092.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz092.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz092.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz092.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz092.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz092.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz092.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz092.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz092.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz092.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz092.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz092.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz092.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('ktbn', 0.0093235697359666247) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz092.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz092.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz092.txt + +[moz093] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz093.txt +centroid = (0.64412248709476738, -1.6465296536974345) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz093.txt +description = Newton, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz093.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz093.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz093.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz093.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz093.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz093.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz093.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz093.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz093.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz093.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz093.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz093.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz093.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz093.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz093.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('khfj', 0.0044559874321537024) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz093.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz093.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz093.txt + +[moz094] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz094.txt +centroid = (0.64762885356202393, -1.6376930516945871) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz094.txt +description = Lawrence, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz094.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz094.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz094.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz094.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz094.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz094.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz094.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz094.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz094.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz094.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz094.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz094.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz094.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz094.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz094.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('khfj', 0.0044472260048993391) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz094.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz094.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz094.txt + +[moz095] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz095.txt +centroid = (0.64524124314529563, -1.6264531313117438) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz095.txt +description = Christian, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz095.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz095.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz095.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz095.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz095.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz095.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz095.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz095.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz095.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz095.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz095.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz095.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz095.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz095.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz095.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('ksgf', 0.0053397680798037781) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz095.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz095.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz095.txt + +[moz096] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz096.txt +centroid = (0.64459547132205774, -1.614408614143731) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz096.txt +description = Douglas, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz096.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz096.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz096.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz096.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz096.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz096.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz096.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz096.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz096.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz096.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz096.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz096.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz096.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz096.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz096.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('kbpk', 0.0098876431615700002) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz096.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz096.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz096.txt + +[moz097] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz097.txt +centroid = (0.64182737912839471, -1.6037219631337696) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz097.txt +description = Howell, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz097.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz097.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz097.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz097.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz097.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz097.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz097.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz097.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz097.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz097.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz097.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz097.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz097.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz097.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz097.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('kuno', 0.001917523881109436) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz097.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz097.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz097.txt + +[moz098] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz098.txt +centroid = (0.64851897148054105, -1.595239662969077) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz098.txt +description = Shannon, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz098.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz098.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz098.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz098.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz098.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz098.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz098.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz098.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz098.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz098.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz098.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz098.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz098.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz098.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz098.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('kuno', 0.0084456987417176402) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz098.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz098.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz098.txt + +[moz099] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz099.txt +centroid = (0.6520951511178773, -1.5877103125759735) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz099.txt +description = Reynolds, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz099.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz099.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz099.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz099.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz099.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz099.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz099.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz099.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz099.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz099.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz099.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz099.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz099.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz099.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz099.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('kfam', 0.01023464303963241) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz099.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz099.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz099.txt + +[moz100] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz100.txt +centroid = (0.64773706397564756, -1.5788492759635984) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz100.txt +description = Wayne, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz100.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz100.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz100.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz100.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz100.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz100.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz100.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz100.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz100.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz100.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz100.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz100.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz100.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz100.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz100.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('kpof', 0.0063663100824111057) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz100.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz100.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz100.txt + +[moz101] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz101.txt +centroid = (0.63929141572524706, -1.6466902239886181) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz101.txt +description = McDonald, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz101.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz101.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz101.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz101.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz101.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz101.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz101.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz101.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz101.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz101.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz101.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz101.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz101.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz101.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz101.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('kvbt', 0.0052036110233382674) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz101.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz101.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz101.txt + +[moz102] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz102.txt +centroid = (0.64070862307786636, -1.6376267291830113) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz102.txt +description = Barry, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz102.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz102.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz102.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz102.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz102.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz102.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz102.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz102.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz102.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz102.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz102.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz102.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz102.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz102.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz102.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('khfj', 0.0042573509683082296) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz102.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz102.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz102.txt + +[moz103] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz103.txt +centroid = (0.64135439490110424, -1.6311131604145686) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz103.txt +description = Stone, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz103.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz103.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz103.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz103.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz103.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz103.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz103.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz103.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz103.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz103.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz103.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz103.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz103.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz103.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz103.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('kbbg', 0.0052129386433631695) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz103.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz103.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz103.txt + +[moz104] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz104.txt +centroid = (0.63974520133076551, -1.6238717893480441) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz104.txt +description = Taney, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz104.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz104.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz104.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz104.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz104.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz104.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz104.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz104.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz104.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz104.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz104.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz104.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz104.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz104.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz104.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('kbbg', 0.0031146820795120477) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz104.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz104.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz104.txt + +[moz105] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz105.txt +centroid = (0.63965095355115775, -1.6134626456891499) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz105.txt +description = Ozark, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz105.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz105.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz105.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz105.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz105.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz105.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz105.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz105.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz105.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz105.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz105.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz105.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz105.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz105.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz105.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('kbpk', 0.0049425859134865141) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz105.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz105.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz105.txt + +[moz106] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz106.txt +centroid = (0.64030370669140368, -1.5952885321881332) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz106.txt +description = Oregon, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz106.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz106.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz106.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz106.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz106.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz106.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz106.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz106.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz106.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz106.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz106.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz106.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz106.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz106.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz106.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('kuno', 0.0077448105010729726) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz106.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz106.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz106.txt + +[moz107] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz107.txt +centroid = (0.64474731496698123, -1.587591630186838) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz107.txt +description = Carter, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz107.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz107.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz107.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz107.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz107.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz107.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz107.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz107.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz107.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz107.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz107.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz107.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz107.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz107.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz107.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('kpof', 0.0095178151929602699) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz107.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz107.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz107.txt + +[moz108] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz108.txt +centroid = (0.63971204007497762, -1.5858742262028755) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz108.txt +description = Ripley, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz108.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz108.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz108.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz108.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz108.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz108.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz108.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz108.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz108.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz108.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz108.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz108.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz108.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz108.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz108.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('k4m9', 0.0053354750857469418) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz108.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz108.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz108.txt + +[moz109] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz109.txt +centroid = (0.64082206947924603, -1.5778910902042533) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz109.txt +description = Butler, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz109.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz109.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz109.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz109.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz109.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz109.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz109.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz109.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz109.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz109.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz109.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz109.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz109.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz109.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz109.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('kpof', 0.0015324050088499363) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz109.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz109.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz109.txt + +[moz110] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz110.txt +centroid = (0.64324982246877016, -1.5698259237307877) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz110.txt +description = Stoddard, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz110.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz110.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz110.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz110.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz110.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz110.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz110.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz110.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz110.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz110.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz110.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz110.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz110.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz110.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz110.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('kpof', 0.0054279601378494627) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz110.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz110.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz110.txt + +[moz111] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz111.txt +centroid = (0.64669684774145886, -1.563266976401793) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz111.txt +description = Scott, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz111.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz111.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz111.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz111.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz111.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz111.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz111.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz111.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz111.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz111.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz111.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz111.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz111.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz111.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz111.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('kcgi', 0.0031540780268907945) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz111.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz111.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz111.txt + +[moz112] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz112.txt +centroid = (0.64277160225372365, -1.5584236877275088) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz112.txt +description = Mississippi, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz112.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz112.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz112.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz112.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz112.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz112.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz112.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz112.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz112.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz112.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz112.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz112.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz112.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz112.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz112.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('kcir', 0.0042443523292620714) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz112.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz112.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz112.txt + +[moz113] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz113.txt +centroid = (0.63306408095413125, -1.5723828310849595) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz113.txt +description = Dunklin, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz113.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz113.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz113.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz113.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz113.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz113.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz113.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz113.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz113.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz113.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz113.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz113.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz113.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz113.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz113.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('kbyh', 0.0056856442098942835) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz113.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz113.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz113.txt + +[moz114] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz114.txt +centroid = (0.63868927713330892, -1.5647155996809483) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz114.txt +description = New Madrid, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz114.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz114.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz114.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz114.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz114.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz114.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz114.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz114.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz114.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz114.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz114.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz114.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz114.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz114.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz114.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('kpof', 0.0097836026696125917) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz114.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz114.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz114.txt + +[moz115] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mo/moz115.txt +centroid = (0.63200292076891873, -1.5670578315371246) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mo/moz115.txt +description = Pemiscot, MO +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mo/moz115.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mo/moz115.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mo/moz115.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mo/moz115.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mo/moz115.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mo/moz115.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mo/moz115.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mo/moz115.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mo.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mo/moz115.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mo/moz115.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mo/moz115.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mo/moz115.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mo/moz115.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mo/moz115.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mo/moz115.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mo.txt +station = ('kbyh', 0.004854224881714506) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mo/moz115.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mo/moz115.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mo/moz115.txt + +[msz001] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ms/msz001.txt +centroid = (0.60869055795003035, -1.5706532097962331) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ms/msz001.txt +description = De Soto, MS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ms/msz001.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ms/msz001.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ms/msz001.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ms/msz001.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ms/msz001.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ms/msz001.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ms/msz001.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ms/msz001.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ms.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ms/msz001.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ms/msz001.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ms/msz001.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ms/msz001.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ms/msz001.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ms/msz001.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ms/msz001.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ms.txt +station = ('kmem', 0.0027591161738362451) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ms/msz001.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ms/msz001.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ms/msz001.txt + +[msz002] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ms/msz002.txt +centroid = (0.60671659056602489, -1.5621237857417369) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ms/msz002.txt +description = Marshall, MS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ms/msz002.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ms/msz002.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ms/msz002.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ms/msz002.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ms/msz002.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ms/msz002.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ms/msz002.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ms/msz002.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ms.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ms/msz002.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ms/msz002.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ms/msz002.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ms/msz002.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ms/msz002.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ms/msz002.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ms/msz002.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ms.txt +station = ('kolv', 0.0055506717005407956) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ms/msz002.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ms/msz002.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ms/msz002.txt + +[msz003] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ms/msz003.txt +centroid = (0.60767652165462172, -1.5566329799149627) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ms/msz003.txt +description = Benton, MS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ms/msz003.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ms/msz003.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ms/msz003.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ms/msz003.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ms/msz003.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ms/msz003.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ms/msz003.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ms/msz003.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ms.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ms/msz003.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ms/msz003.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ms/msz003.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ms/msz003.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ms/msz003.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ms/msz003.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ms/msz003.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ms.txt +station = ('kcrx', 0.0086157122865955452) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ms/msz003.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ms/msz003.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ms/msz003.txt + +[msz004] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ms/msz004.txt +centroid = (0.60682305565039651, -1.5517530393263865) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ms/msz004.txt +description = Tippah, MS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ms/msz004.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ms/msz004.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ms/msz004.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ms/msz004.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ms/msz004.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ms/msz004.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ms/msz004.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ms/msz004.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ms.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ms/msz004.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ms/msz004.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ms/msz004.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ms/msz004.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ms/msz004.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ms/msz004.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ms/msz004.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ms.txt +station = ('kcrx', 0.0051554687517484316) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ms/msz004.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ms/msz004.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ms/msz004.txt + +[msz005] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ms/msz005.txt +centroid = (0.60878480572963811, -1.5460178874043331) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ms/msz005.txt +description = Alcorn, MS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ms/msz005.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ms/msz005.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ms/msz005.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ms/msz005.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ms/msz005.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ms/msz005.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ms/msz005.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ms/msz005.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ms.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ms/msz005.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ms/msz005.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ms/msz005.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ms/msz005.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ms/msz005.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ms/msz005.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ms/msz005.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ms.txt +station = ('kcrx', 0.00074000433534732429) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ms/msz005.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ms/msz005.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ms/msz005.txt + +[msz006] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ms/msz006.txt +centroid = (0.60633436345983804, -1.5400663146550324) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ms/msz006.txt +description = Tishomingo, MS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ms/msz006.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ms/msz006.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ms/msz006.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ms/msz006.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ms/msz006.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ms/msz006.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ms/msz006.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ms/msz006.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ms.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ms/msz006.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ms/msz006.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ms/msz006.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ms/msz006.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ms/msz006.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ms/msz006.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ms/msz006.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ms.txt +station = ('kcrx', 0.0060439630713703891) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ms/msz006.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ms/msz006.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ms/msz006.txt + +[msz007] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ms/msz007.txt +centroid = (0.6047914924010751, -1.5773500381361354) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ms/msz007.txt +description = Tunica, MS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ms/msz007.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ms/msz007.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ms/msz007.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ms/msz007.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ms/msz007.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ms/msz007.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ms/msz007.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ms/msz007.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ms.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ms/msz007.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ms/msz007.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ms/msz007.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ms/msz007.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ms/msz007.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ms/msz007.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ms/msz007.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ms.txt +station = ('kuta', 0.00065412361292309872) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ms/msz007.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ms/msz007.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ms/msz007.txt + +[msz008] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ms/msz008.txt +centroid = (0.60476182180379123, -1.5698329050477957) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ms/msz008.txt +description = Tate, MS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ms/msz008.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ms/msz008.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ms/msz008.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ms/msz008.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ms/msz008.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ms/msz008.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ms/msz008.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ms/msz008.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ms.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ms/msz008.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ms/msz008.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ms/msz008.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ms/msz008.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ms/msz008.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ms/msz008.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ms/msz008.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ms.txt +station = ('kolv', 0.006164909708086243) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ms/msz008.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ms/msz008.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ms/msz008.txt + +[msz009] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ms/msz009.txt +centroid = (0.60420331644315295, -1.5449671991946325) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ms/msz009.txt +description = Prentiss, MS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ms/msz009.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ms/msz009.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ms/msz009.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ms/msz009.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ms/msz009.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ms/msz009.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ms/msz009.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ms/msz009.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ms.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ms/msz009.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ms/msz009.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ms/msz009.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ms/msz009.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ms/msz009.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ms/msz009.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ms/msz009.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ms.txt +station = ('kcrx', 0.0053888220056333147) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ms/msz009.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ms/msz009.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ms/msz009.txt + +[msz010] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ms/msz010.txt +centroid = (0.59741224032364304, -1.5813154261966664) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ms/msz010.txt +description = Coahoma, MS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ms/msz010.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ms/msz010.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ms/msz010.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ms/msz010.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ms/msz010.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ms/msz010.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ms/msz010.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ms/msz010.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ms.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ms/msz010.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ms/msz010.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ms/msz010.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ms/msz010.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ms/msz010.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ms/msz010.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ms/msz010.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ms.txt +station = ('kckm', 0.0018206696295361435) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ms/msz010.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ms/msz010.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ms/msz010.txt + +[msz011] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ms/msz011.txt +centroid = (0.5977997034175857, -1.5758420736624124) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ms/msz011.txt +description = Quitman, MS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ms/msz011.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ms/msz011.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ms/msz011.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ms/msz011.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ms/msz011.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ms/msz011.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ms/msz011.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ms/msz011.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ms.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ms/msz011.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ms/msz011.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ms/msz011.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ms/msz011.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ms/msz011.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ms/msz011.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ms/msz011.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ms.txt +station = ('kckm', 0.003296872171798857) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ms/msz011.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ms/msz011.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ms/msz011.txt + +[msz012] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ms/msz012.txt +centroid = (0.59976319882607942, -1.5699323888151595) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ms/msz012.txt +description = Panola, MS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ms/msz012.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ms/msz012.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ms/msz012.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ms/msz012.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ms/msz012.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ms/msz012.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ms/msz012.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ms/msz012.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ms.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ms/msz012.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ms/msz012.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ms/msz012.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ms/msz012.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ms/msz012.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ms/msz012.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ms/msz012.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ms.txt +station = ('kuox', 0.0059881776617060206) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ms/msz012.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ms/msz012.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ms/msz012.txt + +[msz013] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ms/msz013.txt +centroid = (0.59963928044918779, -1.5618061358178736) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ms/msz013.txt +description = Lafayette, MS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ms/msz013.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ms/msz013.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ms/msz013.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ms/msz013.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ms/msz013.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ms/msz013.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ms/msz013.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ms/msz013.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ms.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ms/msz013.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ms/msz013.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ms/msz013.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ms/msz013.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ms/msz013.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ms/msz013.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ms/msz013.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ms.txt +station = ('kuox', 0.0008748254448855741) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ms/msz013.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ms/msz013.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ms/msz013.txt + +[msz014] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ms/msz014.txt +centroid = (0.60197278565910417, -1.553409356786529) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ms/msz014.txt +description = Union, MS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ms/msz014.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ms/msz014.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ms/msz014.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ms/msz014.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ms/msz014.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ms/msz014.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ms/msz014.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ms/msz014.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ms.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ms/msz014.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ms/msz014.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ms/msz014.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ms/msz014.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ms/msz014.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ms/msz014.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ms/msz014.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ms.txt +station = ('ktup', 0.0051893662188576247) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ms/msz014.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ms/msz014.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ms/msz014.txt + +[msz015] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ms/msz015.txt +centroid = (0.59734591781206725, -1.5539957874151993) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ms/msz015.txt +description = Pontotoc, MS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ms/msz015.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ms/msz015.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ms/msz015.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ms/msz015.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ms/msz015.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ms/msz015.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ms/msz015.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ms/msz015.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ms.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ms/msz015.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ms/msz015.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ms/msz015.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ms/msz015.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ms/msz015.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ms/msz015.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ms/msz015.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ms.txt +station = ('ktup', 0.0039718236825971786) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ms/msz015.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ms/msz015.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ms/msz015.txt + +[msz016] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ms/msz016.txt +centroid = (0.59847165517960366, -1.5477649619855796) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ms/msz016.txt +description = Lee, MS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ms/msz016.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ms/msz016.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ms/msz016.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ms/msz016.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ms/msz016.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ms/msz016.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ms/msz016.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ms/msz016.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ms.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ms/msz016.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ms/msz016.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ms/msz016.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ms/msz016.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ms/msz016.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ms/msz016.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ms/msz016.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ms.txt +station = ('ktup', 0.0013085404202539408) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ms/msz016.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ms/msz016.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ms/msz016.txt + +[msz017] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ms/msz017.txt +centroid = (0.59829886758365614, -1.5421956163424655) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ms/msz017.txt +description = Itawamba, MS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ms/msz017.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ms/msz017.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ms/msz017.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ms/msz017.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ms/msz017.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ms/msz017.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ms/msz017.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ms/msz017.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ms.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ms/msz017.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ms/msz017.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ms/msz017.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ms/msz017.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ms/msz017.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ms/msz017.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ms/msz017.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ms.txt +station = ('ktup', 0.0058511119889615099) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ms/msz017.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ms/msz017.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ms/msz017.txt + +[msz018] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ms/msz018.txt +centroid = (0.58984274735774356, -1.5861622055294546) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ms/msz018.txt +description = Bolivar, MS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ms/msz018.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ms/msz018.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ms/msz018.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ms/msz018.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ms/msz018.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ms/msz018.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ms/msz018.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ms/msz018.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ms.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ms/msz018.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ms/msz018.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ms/msz018.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ms/msz018.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ms/msz018.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ms/msz018.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ms/msz018.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ms.txt +station = ('kglh', 0.0056499037521724714) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ms/msz018.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ms/msz018.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ms/msz018.txt + +[msz019] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ms/msz019.txt +centroid = (0.5864707712428906, -1.5810710801013872) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ms/msz019.txt +description = Sunflower, MS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ms/msz019.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ms/msz019.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ms/msz019.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ms/msz019.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ms/msz019.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ms/msz019.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ms/msz019.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ms/msz019.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ms.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ms/msz019.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ms/msz019.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ms/msz019.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ms/msz019.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ms/msz019.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ms/msz019.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ms/msz019.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ms.txt +station = ('kglh', 0.0061046309753690284) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ms/msz019.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ms/msz019.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ms/msz019.txt + +[msz020] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ms/msz020.txt +centroid = (0.59254800769833482, -1.5738192370593507) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ms/msz020.txt +description = Tallahatchie, MS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ms/msz020.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ms/msz020.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ms/msz020.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ms/msz020.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ms/msz020.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ms/msz020.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ms/msz020.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ms/msz020.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ms.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ms/msz020.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ms/msz020.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ms/msz020.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ms/msz020.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ms/msz020.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ms/msz020.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ms/msz020.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ms.txt +station = ('kckm', 0.0078030705449804536) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ms/msz020.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ms/msz020.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ms/msz020.txt + +[msz021] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ms/msz021.txt +centroid = (0.59390412852713437, -1.5656929840620653) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ms/msz021.txt +description = Yalobusha, MS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ms/msz021.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ms/msz021.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ms/msz021.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ms/msz021.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ms/msz021.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ms/msz021.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ms/msz021.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ms/msz021.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ms.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ms/msz021.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ms/msz021.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ms/msz021.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ms/msz021.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ms/msz021.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ms/msz021.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ms/msz021.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ms.txt +station = ('kuox', 0.0066952127984237116) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ms/msz021.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ms/msz021.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ms/msz021.txt + +[msz022] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ms/msz022.txt +centroid = (0.59230191627380369, -1.5592143218786623) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ms/msz022.txt +description = Calhoun, MS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ms/msz022.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ms/msz022.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ms/msz022.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ms/msz022.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ms/msz022.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ms/msz022.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ms/msz022.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ms/msz022.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ms.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ms/msz022.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ms/msz022.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ms/msz022.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ms/msz022.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ms/msz022.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ms/msz022.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ms/msz022.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ms.txt +station = ('kuox', 0.0083320210726793922) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ms/msz022.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ms/msz022.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ms/msz022.txt + +[msz023] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ms/msz023.txt +centroid = (0.59202964491049248, -1.5524337177346643) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ms/msz023.txt +description = Chickasaw, MS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ms/msz023.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ms/msz023.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ms/msz023.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ms/msz023.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ms/msz023.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ms/msz023.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ms/msz023.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ms/msz023.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ms.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ms/msz023.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ms/msz023.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ms/msz023.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ms/msz023.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ms/msz023.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ms/msz023.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ms/msz023.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ms.txt +station = ('ktup', 0.0065803441189504477) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ms/msz023.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ms/msz023.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ms/msz023.txt + +[msz024] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ms/msz024.txt +centroid = (0.59153222607367417, -1.5442743034815909) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ms/msz024.txt +description = Monroe, MS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ms/msz024.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ms/msz024.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ms/msz024.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ms/msz024.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ms/msz024.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ms/msz024.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ms/msz024.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ms/msz024.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ms.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ms/msz024.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ms/msz024.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ms/msz024.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ms/msz024.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ms/msz024.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ms/msz024.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ms/msz024.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ms.txt +station = ('km40', 0.00035049786524257698) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ms/msz024.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ms/msz024.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ms/msz024.txt + +[msz025] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ms/msz025.txt +centroid = (0.58556669069035749, -1.5760497678433996) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ms/msz025.txt +description = Leflore, MS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ms/msz025.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ms/msz025.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ms/msz025.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ms/msz025.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ms/msz025.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ms/msz025.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ms/msz025.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ms/msz025.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ms.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ms/msz025.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ms/msz025.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ms/msz025.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ms/msz025.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ms/msz025.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ms/msz025.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ms/msz025.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ms.txt +station = ('kgwo', 0.0032873673820793415) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ms/msz025.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ms/msz025.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ms/msz025.txt + +[msz026] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ms/msz026.txt +centroid = (0.58939768839848516, -1.5673405748759479) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ms/msz026.txt +description = Grenada, MS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ms/msz026.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ms/msz026.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ms/msz026.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ms/msz026.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ms/msz026.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ms/msz026.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ms/msz026.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ms/msz026.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ms.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ms/msz026.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ms/msz026.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ms/msz026.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ms/msz026.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ms/msz026.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ms/msz026.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ms/msz026.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ms.txt +station = ('kgwo', 0.0062385450095803511) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ms/msz026.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ms/msz026.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ms/msz026.txt + +[msz027] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ms/msz027.txt +centroid = (0.58378645485332337, -1.569403554051805) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ms/msz027.txt +description = Carroll, MS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ms/msz027.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ms/msz027.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ms/msz027.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ms/msz027.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ms/msz027.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ms/msz027.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ms/msz027.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ms/msz027.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ms.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ms/msz027.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ms/msz027.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ms/msz027.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ms/msz027.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ms/msz027.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ms/msz027.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ms/msz027.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ms.txt +station = ('kgwo', 0.0025393584527225962) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ms/msz027.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ms/msz027.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ms/msz027.txt + +[msz028] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ms/msz028.txt +centroid = (0.58458232499223284, -1.5641012437842463) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ms/msz028.txt +description = Montgomery, MS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ms/msz028.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ms/msz028.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ms/msz028.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ms/msz028.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ms/msz028.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ms/msz028.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ms/msz028.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ms/msz028.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ms.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ms/msz028.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ms/msz028.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ms/msz028.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ms/msz028.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ms/msz028.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ms/msz028.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ms/msz028.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ms.txt +station = ('kgwo', 0.0067967785122552129) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ms/msz028.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ms/msz028.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ms/msz028.txt + +[msz029] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ms/msz029.txt +centroid = (0.58665926680210601, -1.5583137319846332) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ms/msz029.txt +description = Webster, MS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ms/msz029.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ms/msz029.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ms/msz029.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ms/msz029.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ms/msz029.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ms/msz029.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ms/msz029.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ms/msz029.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ms.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ms/msz029.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ms/msz029.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ms/msz029.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ms/msz029.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ms/msz029.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ms/msz029.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ms/msz029.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ms.txt +station = ('kstf', 0.0072179997758312058) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ms/msz029.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ms/msz029.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ms/msz029.txt + +[msz030] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ms/msz030.txt +centroid = (0.58740277706345567, -1.5495294898593457) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ms/msz030.txt +description = Clay, MS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ms/msz030.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ms/msz030.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ms/msz030.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ms/msz030.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ms/msz030.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ms/msz030.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ms/msz030.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ms/msz030.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ms.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ms/msz030.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ms/msz030.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ms/msz030.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ms/msz030.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ms/msz030.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ms/msz030.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ms/msz030.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ms.txt +station = ('kstf', 0.0040300797917738503) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ms/msz030.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ms/msz030.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ms/msz030.txt + +[msz031] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ms/msz031.txt +centroid = (0.58421231519080996, -1.5436267863291007) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ms/msz031.txt +description = Lowndes, MS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ms/msz031.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ms/msz031.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ms/msz031.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ms/msz031.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ms/msz031.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ms/msz031.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ms/msz031.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ms/msz031.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ms.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ms/msz031.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ms/msz031.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ms/msz031.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ms/msz031.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ms/msz031.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ms/msz031.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ms/msz031.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ms.txt +station = ('kgtr', 0.0020777633280187088) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ms/msz031.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ms/msz031.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ms/msz031.txt + +[msz032] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ms/msz032.txt +centroid = (0.582020181650305, -1.5576784321369073) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ms/msz032.txt +description = Choctaw, MS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ms/msz032.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ms/msz032.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ms/msz032.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ms/msz032.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ms/msz032.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ms/msz032.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ms/msz032.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ms/msz032.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ms.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ms/msz032.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ms/msz032.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ms/msz032.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ms/msz032.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ms/msz032.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ms/msz032.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ms/msz032.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ms.txt +station = ('kstf', 0.0061240327139374358) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ms/msz032.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ms/msz032.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ms/msz032.txt + +[msz033] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ms/msz033.txt +centroid = (0.58337630247910455, -1.5512364218677961) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ms/msz033.txt +description = Oktibbeha, MS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ms/msz033.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ms/msz033.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ms/msz033.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ms/msz033.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ms/msz033.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ms/msz033.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ms/msz033.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ms/msz033.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ms.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ms/msz033.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ms/msz033.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ms/msz033.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ms/msz033.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ms/msz033.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ms/msz033.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ms/msz033.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ms.txt +station = ('kstf', 0.00057906625342185082) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ms/msz033.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ms/msz033.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ms/msz033.txt + +[msz034] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ms/msz034.txt +centroid = (0.58090840691678469, -1.5873315761282909) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ms/msz034.txt +description = Washington, MS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ms/msz034.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ms/msz034.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ms/msz034.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ms/msz034.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ms/msz034.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ms/msz034.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ms/msz034.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ms/msz034.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ms.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ms/msz034.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ms/msz034.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ms/msz034.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ms/msz034.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ms/msz034.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ms/msz034.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ms/msz034.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ms.txt +station = ('kglh', 0.0035251190837804593) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ms/msz034.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ms/msz034.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ms/msz034.txt + +[msz035] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ms/msz035.txt +centroid = (0.57820489190544544, -1.5799854853066466) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ms/msz035.txt +description = Humphreys, MS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ms/msz035.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ms/msz035.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ms/msz035.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ms/msz035.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ms/msz035.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ms/msz035.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ms/msz035.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ms/msz035.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ms.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ms/msz035.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ms/msz035.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ms/msz035.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ms/msz035.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ms/msz035.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ms/msz035.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ms/msz035.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ms.txt +station = ('kglh', 0.0090947139503156291) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ms/msz035.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ms/msz035.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ms/msz035.txt + +[msz036] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ms/msz036.txt +centroid = (0.5781141347843417, -1.5724037750359834) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ms/msz036.txt +description = Holmes, MS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ms/msz036.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ms/msz036.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ms/msz036.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ms/msz036.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ms/msz036.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ms/msz036.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ms/msz036.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ms/msz036.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ms.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ms/msz036.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ms/msz036.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ms/msz036.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ms/msz036.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ms/msz036.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ms/msz036.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ms/msz036.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ms.txt +station = ('kgwo', 0.006572408581216019) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ms/msz036.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ms/msz036.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ms/msz036.txt + +[msz037] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ms/msz037.txt +centroid = (0.57746487230259991, -1.5634956145338044) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ms/msz037.txt +description = Attala, MS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ms/msz037.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ms/msz037.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ms/msz037.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ms/msz037.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ms/msz037.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ms/msz037.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ms/msz037.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ms/msz037.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ms.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ms/msz037.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ms/msz037.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ms/msz037.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ms/msz037.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ms/msz037.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ms/msz037.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ms/msz037.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ms.txt +station = ('knmm', 0.0099414175876478758) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ms/msz037.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ms/msz037.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ms/msz037.txt + +[msz038] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ms/msz038.txt +centroid = (0.57750326954614384, -1.5539434275376394) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ms/msz038.txt +description = Winston, MS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ms/msz038.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ms/msz038.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ms/msz038.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ms/msz038.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ms/msz038.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ms/msz038.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ms/msz038.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ms/msz038.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ms.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ms/msz038.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ms/msz038.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ms/msz038.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ms/msz038.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ms/msz038.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ms/msz038.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ms/msz038.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ms.txt +station = ('knmm', 0.0033440616118952365) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ms/msz038.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ms/msz038.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ms/msz038.txt + +[msz039] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ms/msz039.txt +centroid = (0.57788026066457454, -1.5458346278328736) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ms/msz039.txt +description = Noxubee, MS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ms/msz039.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ms/msz039.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ms/msz039.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ms/msz039.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ms/msz039.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ms/msz039.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ms/msz039.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ms/msz039.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ms.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ms/msz039.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ms/msz039.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ms/msz039.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ms/msz039.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ms/msz039.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ms/msz039.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ms/msz039.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ms.txt +station = ('kgtr', 0.0059356595677820976) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ms/msz039.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ms/msz039.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ms/msz039.txt + +[msz040] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ms/msz040.txt +centroid = (0.57144523171247141, -1.5880611237556244) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ms/msz040.txt +description = Issaquena, MS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ms/msz040.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ms/msz040.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ms/msz040.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ms/msz040.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ms/msz040.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ms/msz040.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ms/msz040.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ms/msz040.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ms.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ms/msz040.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ms/msz040.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ms/msz040.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ms/msz040.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ms/msz040.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ms/msz040.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ms/msz040.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ms.txt +station = ('ktvr', 0.0068913488891908384) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ms/msz040.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ms/msz040.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ms/msz040.txt + +[msz041] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ms/msz041.txt +centroid = (0.57385902206797956, -1.5849893442721144) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ms/msz041.txt +description = Sharkey, MS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ms/msz041.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ms/msz041.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ms/msz041.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ms/msz041.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ms/msz041.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ms/msz041.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ms/msz041.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ms/msz041.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ms.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ms/msz041.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ms/msz041.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ms/msz041.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ms/msz041.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ms/msz041.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ms/msz041.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ms/msz041.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ms.txt +station = ('ktvr', 0.0098110738391984642) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ms/msz041.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ms/msz041.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ms/msz041.txt + +[msz042] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ms/msz042.txt +centroid = (0.5721259101207492, -1.5777165572790541) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ms/msz042.txt +description = Yazoo, MS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ms/msz042.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ms/msz042.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ms/msz042.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ms/msz042.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ms/msz042.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ms/msz042.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ms/msz042.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ms/msz042.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ms.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ms/msz042.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ms/msz042.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ms/msz042.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ms/msz042.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ms/msz042.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ms/msz042.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ms/msz042.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ms.txt +station = ('khks', 0.0082390446980345269) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ms/msz042.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ms/msz042.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ms/msz042.txt + +[msz043] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ms/msz043.txt +centroid = (0.5695829654005935, -1.5713862480820706) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ms/msz043.txt +description = Madison, MS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ms/msz043.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ms/msz043.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ms/msz043.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ms/msz043.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ms/msz043.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ms/msz043.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ms/msz043.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ms/msz043.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ms.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ms/msz043.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ms/msz043.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ms/msz043.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ms/msz043.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ms/msz043.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ms/msz043.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ms/msz043.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ms.txt +station = ('kjan', 0.005534924797932988) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ms/msz043.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ms/msz043.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ms/msz043.txt + +[msz044] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ms/msz044.txt +centroid = (0.57165641655196275, -1.5624903048846557) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ms/msz044.txt +description = Leake, MS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ms/msz044.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ms/msz044.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ms/msz044.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ms/msz044.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ms/msz044.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ms/msz044.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ms/msz044.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ms/msz044.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ms.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ms/msz044.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ms/msz044.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ms/msz044.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ms/msz044.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ms/msz044.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ms/msz044.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ms/msz044.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ms.txt +station = ('knmm', 0.0091195434328007769) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ms/msz044.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ms/msz044.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ms/msz044.txt + +[msz045] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ms/msz045.txt +centroid = (0.57165641655196275, -1.5553955414752985) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ms/msz045.txt +description = Neshoba, MS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ms/msz045.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ms/msz045.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ms/msz045.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ms/msz045.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ms/msz045.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ms/msz045.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ms/msz045.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ms/msz045.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ms.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ms/msz045.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ms/msz045.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ms/msz045.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ms/msz045.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ms/msz045.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ms/msz045.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ms/msz045.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ms.txt +station = ('knmm', 0.0039258192482343338) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ms/msz045.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ms/msz045.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ms/msz045.txt + +[msz046] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ms/msz046.txt +centroid = (0.57167561517373477, -1.5470807929187975) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ms/msz046.txt +description = Kemper, MS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ms/msz046.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ms/msz046.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ms/msz046.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ms/msz046.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ms/msz046.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ms/msz046.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ms/msz046.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ms/msz046.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ms.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ms/msz046.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ms/msz046.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ms/msz046.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ms/msz046.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ms/msz046.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ms/msz046.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ms/msz046.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ms.txt +station = ('knmm', 0.0051336309043229639) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ms/msz046.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ms/msz046.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ms/msz046.txt + +[msz047] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ms/msz047.txt +centroid = (0.56474316738481312, -1.5856682773511401) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ms/msz047.txt +description = Warren, MS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ms/msz047.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ms/msz047.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ms/msz047.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ms/msz047.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ms/msz047.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ms/msz047.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ms/msz047.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ms/msz047.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ms.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ms/msz047.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ms/msz047.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ms/msz047.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ms/msz047.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ms/msz047.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ms/msz047.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ms/msz047.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ms.txt +station = ('ktvr', 0.0026280251108145476) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ms/msz047.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ms/msz047.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ms/msz047.txt + +[msz048] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ms/msz048.txt +centroid = (0.56316015375325434, -1.5785228993934755) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ms/msz048.txt +description = Hinds, MS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ms/msz048.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ms/msz048.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ms/msz048.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ms/msz048.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ms/msz048.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ms/msz048.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ms/msz048.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ms/msz048.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ms.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ms/msz048.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ms/msz048.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ms/msz048.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ms/msz048.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ms/msz048.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ms/msz048.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ms/msz048.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ms.txt +station = ('kjvw', 0.00081237234410500361) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ms/msz048.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ms/msz048.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ms/msz048.txt + +[msz049] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ms/msz049.txt +centroid = (0.56311477519270248, -1.5698486130110638) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ms/msz049.txt +description = Rankin, MS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ms/msz049.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ms/msz049.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ms/msz049.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ms/msz049.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ms/msz049.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ms/msz049.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ms/msz049.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ms/msz049.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ms.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ms/msz049.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ms/msz049.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ms/msz049.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ms/msz049.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ms/msz049.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ms/msz049.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ms/msz049.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ms.txt +station = ('kjan', 0.0021734241651419671) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ms/msz049.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ms/msz049.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ms/msz049.txt + +[msz050] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ms/msz050.txt +centroid = (0.56559837871829033, -1.5627259243336749) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ms/msz050.txt +description = Scott, MS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ms/msz050.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ms/msz050.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ms/msz050.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ms/msz050.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ms/msz050.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ms/msz050.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ms/msz050.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ms/msz050.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ms.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ms/msz050.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ms/msz050.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ms/msz050.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ms/msz050.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ms/msz050.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ms/msz050.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ms/msz050.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ms.txt +station = ('kjan', 0.0081018652696609617) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ms/msz050.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ms/msz050.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ms/msz050.txt + +[msz051] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ms/msz051.txt +centroid = (0.5654901683046667, -1.5554164854263224) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ms/msz051.txt +description = Newton, MS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ms/msz051.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ms/msz051.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ms/msz051.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ms/msz051.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ms/msz051.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ms/msz051.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ms/msz051.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ms/msz051.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ms.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ms/msz051.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ms/msz051.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ms/msz051.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ms/msz051.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ms/msz051.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ms/msz051.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ms/msz051.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ms.txt +station = ('kmei', 0.0055605918256677106) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ms/msz051.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ms/msz051.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ms/msz051.txt + +[msz052] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ms/msz052.txt +centroid = (0.56556172680399852, -1.5474542933787243) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ms/msz052.txt +description = Lauderdale, MS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ms/msz052.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ms/msz052.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ms/msz052.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ms/msz052.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ms/msz052.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ms/msz052.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ms/msz052.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ms/msz052.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ms.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ms/msz052.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ms/msz052.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ms/msz052.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ms/msz052.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ms/msz052.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ms/msz052.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ms/msz052.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ms.txt +station = ('kmei', 0.0017872051907637132) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ms/msz052.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ms/msz052.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ms/msz052.txt + +[msz053] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ms/msz053.txt +centroid = (0.55804633904491097, -1.5867102389145809) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ms/msz053.txt +description = Claiborne, MS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ms/msz053.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ms/msz053.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ms/msz053.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ms/msz053.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ms/msz053.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ms/msz053.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ms/msz053.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ms/msz053.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ms.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ms/msz053.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ms/msz053.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ms/msz053.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ms/msz053.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ms/msz053.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ms/msz053.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ms/msz053.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ms.txt +station = ('ktvr', 0.0067631139262064885) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ms/msz053.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ms/msz053.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ms/msz053.txt + +[msz054] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ms/msz054.txt +centroid = (0.55622246997657687, -1.5786293644778473) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ms/msz054.txt +description = Copiah, MS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ms/msz054.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ms/msz054.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ms/msz054.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ms/msz054.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ms/msz054.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ms/msz054.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ms/msz054.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ms/msz054.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ms.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ms/msz054.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ms/msz054.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ms/msz054.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ms/msz054.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ms/msz054.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ms/msz054.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ms/msz054.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ms.txt +station = ('k1r7', 0.0047178352769506994) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ms/msz054.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ms/msz054.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ms/msz054.txt + +[msz055] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ms/msz055.txt +centroid = (0.55699041484745437, -1.5693913367470411) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ms/msz055.txt +description = Simpson, MS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ms/msz055.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ms/msz055.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ms/msz055.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ms/msz055.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ms/msz055.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ms/msz055.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ms/msz055.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ms/msz055.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ms.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ms/msz055.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ms/msz055.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ms/msz055.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ms/msz055.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ms/msz055.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ms/msz055.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ms/msz055.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ms.txt +station = ('kjan', 0.0074696879872597349) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ms/msz055.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ms/msz055.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ms/msz055.txt + +[msz056] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ms/msz056.txt +centroid = (0.55881428391578847, -1.5621866175948085) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ms/msz056.txt +description = Smith, MS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ms/msz056.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ms/msz056.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ms/msz056.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ms/msz056.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ms/msz056.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ms/msz056.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ms/msz056.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ms/msz056.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ms.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ms/msz056.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ms/msz056.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ms/msz056.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ms/msz056.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ms/msz056.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ms/msz056.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ms/msz056.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ms.txt +station = ('kpib', 0.0099556386493268017) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ms/msz056.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ms/msz056.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ms/msz056.txt + +[msz057] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ms/msz057.txt +centroid = (0.55883871852531641, -1.5554164854263224) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ms/msz057.txt +description = Jasper, MS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ms/msz057.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ms/msz057.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ms/msz057.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ms/msz057.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ms/msz057.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ms/msz057.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ms/msz057.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ms/msz057.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ms.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ms/msz057.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ms/msz057.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ms/msz057.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ms/msz057.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ms/msz057.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ms/msz057.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ms/msz057.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ms.txt +station = ('kmei', 0.0077305343298773631) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ms/msz057.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ms/msz057.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ms/msz057.txt + +[msz058] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ms/msz058.txt +centroid = (0.5592279269485112, -1.5479220416182591) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ms/msz058.txt +description = Clarke, MS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ms/msz058.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ms/msz058.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ms/msz058.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ms/msz058.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ms/msz058.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ms/msz058.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ms/msz058.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ms/msz058.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ms.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ms/msz058.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ms/msz058.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ms/msz058.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ms/msz058.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ms/msz058.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ms/msz058.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ms/msz058.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ms.txt +station = ('kmei', 0.005173226444676716) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ms/msz058.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ms/msz058.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ms/msz058.txt + +[msz059] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ms/msz059.txt +centroid = (0.55386627548638456, -1.5888971364673297) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ms/msz059.txt +description = Jefferson, MS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ms/msz059.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ms/msz059.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ms/msz059.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ms/msz059.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ms/msz059.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ms/msz059.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ms/msz059.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ms/msz059.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ms.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ms/msz059.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ms/msz059.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ms/msz059.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ms/msz059.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ms/msz059.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ms/msz059.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ms/msz059.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ms.txt +station = ('khez', 0.0044109712273551508) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ms/msz059.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ms/msz059.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ms/msz059.txt + +[msz060] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ms/msz060.txt +centroid = (0.54948549906387878, -1.5944123769036318) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ms/msz060.txt +description = Adams, MS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ms/msz060.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ms/msz060.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ms/msz060.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ms/msz060.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ms/msz060.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ms/msz060.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ms/msz060.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ms/msz060.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ms.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ms/msz060.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ms/msz060.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ms/msz060.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ms/msz060.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ms/msz060.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ms/msz060.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ms/msz060.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ms.txt +station = ('khez', 0.0024596762193329182) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ms/msz060.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ms/msz060.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ms/msz060.txt + +[msz061] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ms/msz061.txt +centroid = (0.54938077930875906, -1.5864658928193018) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ms/msz061.txt +description = Franklin, MS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ms/msz061.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ms/msz061.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ms/msz061.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ms/msz061.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ms/msz061.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ms/msz061.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ms/msz061.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ms/msz061.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ms.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ms/msz061.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ms/msz061.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ms/msz061.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ms/msz061.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ms/msz061.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ms/msz061.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ms/msz061.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ms.txt +station = ('khez', 0.0064585401544753679) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ms/msz061.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ms/msz061.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ms/msz061.txt + +[msz062] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ms/msz062.txt +centroid = (0.55034420105585991, -1.5787201215989508) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ms/msz062.txt +description = Lincoln, MS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ms/msz062.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ms/msz062.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ms/msz062.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ms/msz062.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ms/msz062.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ms/msz062.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ms/msz062.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ms/msz062.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ms.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ms/msz062.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ms/msz062.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ms/msz062.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ms/msz062.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ms/msz062.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ms/msz062.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ms/msz062.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ms.txt +station = ('k1r7', 0.0012836152721847549) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ms/msz062.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ms/msz062.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ms/msz062.txt + +[msz063] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ms/msz063.txt +centroid = (0.55065486966271493, -1.5726638290945305) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ms/msz063.txt +description = Lawrence, MS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ms/msz063.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ms/msz063.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ms/msz063.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ms/msz063.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ms/msz063.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ms/msz063.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ms/msz063.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ms/msz063.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ms.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ms/msz063.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ms/msz063.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ms/msz063.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ms/msz063.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ms/msz063.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ms/msz063.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ms/msz063.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ms.txt +station = ('k1r7', 0.0047345892244127254) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ms/msz063.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ms/msz063.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ms/msz063.txt + +[msz064] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ms/msz064.txt +centroid = (0.55099346353760192, -1.5677070940188664) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ms/msz064.txt +description = Jefferson Davis, MS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ms/msz064.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ms/msz064.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ms/msz064.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ms/msz064.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ms/msz064.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ms/msz064.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ms/msz064.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ms/msz064.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ms.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ms/msz064.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ms/msz064.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ms/msz064.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ms/msz064.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ms/msz064.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ms/msz064.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ms/msz064.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ms.txt +station = ('kpib', 0.0075037266683134372) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ms/msz064.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ms/msz064.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ms/msz064.txt + +[msz065] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ms/msz065.txt +centroid = (0.55210349294187022, -1.562987723721474) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ms/msz065.txt +description = Covington, MS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ms/msz065.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ms/msz065.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ms/msz065.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ms/msz065.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ms/msz065.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ms/msz065.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ms/msz065.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ms/msz065.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ms.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ms/msz065.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ms/msz065.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ms/msz065.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ms/msz065.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ms/msz065.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ms/msz065.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ms/msz065.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ms.txt +station = ('kpib', 0.0043684974530456477) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ms/msz065.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ms/msz065.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ms/msz065.txt + +[msz066] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ms/msz066.txt +centroid = (0.55191848804115884, -1.5562891500523197) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ms/msz066.txt +description = Jones, MS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ms/msz066.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ms/msz066.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ms/msz066.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ms/msz066.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ms/msz066.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ms/msz066.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ms/msz066.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ms/msz066.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ms.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ms/msz066.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ms/msz066.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ms/msz066.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ms/msz066.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ms/msz066.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ms/msz066.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ms/msz066.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ms.txt +station = ('kpib', 0.0036600775472826531) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ms/msz066.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ms/msz066.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ms/msz066.txt + +[msz067] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ms/msz067.txt +centroid = (0.5522361379650218, -1.5480337426903867) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ms/msz067.txt +description = Wayne, MS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ms/msz067.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ms/msz067.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ms/msz067.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ms/msz067.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ms/msz067.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ms/msz067.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ms/msz067.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ms/msz067.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ms.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ms/msz067.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ms/msz067.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ms/msz067.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ms/msz067.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ms/msz067.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ms/msz067.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ms/msz067.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ms.txt +station = ('kpib', 0.0099570631153866121) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ms/msz067.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ms/msz067.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ms/msz067.txt + +[msz068] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ms/msz068.txt +centroid = (0.54386204821395301, -1.5936758479592903) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ms/msz068.txt +description = Wilkinson, MS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ms/msz068.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ms/msz068.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ms/msz068.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ms/msz068.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ms/msz068.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ms/msz068.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ms/msz068.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ms/msz068.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ms.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ms/msz068.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ms/msz068.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ms/msz068.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ms/msz068.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ms/msz068.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ms/msz068.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ms/msz068.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ms.txt +station = ('khez', 0.0079545415505524828) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ms/msz068.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ms/msz068.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ms/msz068.txt + +[msz069] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ms/msz069.txt +centroid = (0.54409592233372028, -1.5848375006271911) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ms/msz069.txt +description = Amite, MS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ms/msz069.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ms/msz069.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ms/msz069.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ms/msz069.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ms/msz069.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ms/msz069.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ms/msz069.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ms/msz069.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ms.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ms/msz069.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ms/msz069.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ms/msz069.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ms/msz069.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ms/msz069.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ms/msz069.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ms/msz069.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ms.txt +station = ('kmcb', 0.0050470209166792795) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ms/msz069.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ms/msz069.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ms/msz069.txt + +[msz070] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ms/msz070.txt +centroid = (0.54410464897998023, -1.5778509476314577) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ms/msz070.txt +description = Pike, MS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ms/msz070.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ms/msz070.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ms/msz070.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ms/msz070.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ms/msz070.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ms/msz070.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ms/msz070.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ms/msz070.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ms.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ms/msz070.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ms/msz070.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ms/msz070.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ms/msz070.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ms/msz070.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ms/msz070.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ms/msz070.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ms.txt +station = ('kmcb', 0.00094430756986525603) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ms/msz070.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ms/msz070.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ms/msz070.txt + +[msz071] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ms/msz071.txt +centroid = (0.54364388205745373, -1.5726481211312626) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ms/msz071.txt +description = Walthall, MS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ms/msz071.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ms/msz071.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ms/msz071.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ms/msz071.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ms/msz071.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ms/msz071.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ms/msz071.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ms/msz071.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ms.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ms/msz071.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ms/msz071.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ms/msz071.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ms/msz071.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ms/msz071.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ms/msz071.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ms/msz071.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ms.txt +station = ('kmcb', 0.0054190187362825699) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ms/msz071.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ms/msz071.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ms/msz071.txt + +[msz072] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ms/msz072.txt +centroid = (0.54508028803184505, -1.5676966220433548) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ms/msz072.txt +description = Marion, MS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ms/msz072.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ms/msz072.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ms/msz072.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ms/msz072.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ms/msz072.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ms/msz072.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ms/msz072.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ms/msz072.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ms.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ms/msz072.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ms/msz072.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ms/msz072.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ms/msz072.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ms/msz072.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ms/msz072.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ms/msz072.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ms.txt +station = ('kpib', 0.0083717861159650422) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ms/msz072.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ms/msz072.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ms/msz072.txt + +[msz073] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ms/msz073.txt +centroid = (0.54464570104809851, -1.5622215241798485) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ms/msz073.txt +description = Lamar, MS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ms/msz073.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ms/msz073.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ms/msz073.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ms/msz073.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ms/msz073.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ms/msz073.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ms/msz073.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ms/msz073.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ms.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ms/msz073.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ms/msz073.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ms/msz073.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ms/msz073.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ms/msz073.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ms/msz073.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ms/msz073.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ms.txt +station = ('khbg', 0.0040036587403915911) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ms/msz073.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ms/msz073.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ms/msz073.txt + +[msz074] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ms/msz074.txt +centroid = (0.54434899507525947, -1.5578442384158468) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ms/msz074.txt +description = Forrest, MS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ms/msz074.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ms/msz074.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ms/msz074.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ms/msz074.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ms/msz074.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ms/msz074.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ms/msz074.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ms/msz074.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ms.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ms/msz074.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ms/msz074.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ms/msz074.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ms/msz074.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ms/msz074.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ms/msz074.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ms/msz074.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ms.txt +station = ('khbg', 0.0013623957586785299) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ms/msz074.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ms/msz074.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ms/msz074.txt + +[msz075] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ms/msz075.txt +centroid = (0.54405577976092445, -1.5532086439225496) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ms/msz075.txt +description = Perry, MS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ms/msz075.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ms/msz075.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ms/msz075.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ms/msz075.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ms/msz075.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ms/msz075.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ms/msz075.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ms/msz075.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ms.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ms/msz075.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ms/msz075.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ms/msz075.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ms/msz075.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ms/msz075.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ms/msz075.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ms/msz075.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ms.txt +station = ('khbg', 0.0041855572353332012) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ms/msz075.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ms/msz075.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ms/msz075.txt + +[msz076] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ms/msz076.txt +centroid = (0.54479056337601406, -1.5470458863337577) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ms/msz076.txt +description = Greene, MS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ms/msz076.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ms/msz076.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ms/msz076.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ms/msz076.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ms/msz076.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ms/msz076.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ms/msz076.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ms/msz076.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ms.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ms/msz076.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ms/msz076.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ms/msz076.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ms/msz076.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ms/msz076.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ms/msz076.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ms/msz076.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ms.txt +station = ('khbg', 0.009160558000417927) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ms/msz076.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ms/msz076.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ms/msz076.txt + +[msz077] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ms/msz077.txt +centroid = (0.53701337622912726, -1.5636369862032158) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ms/msz077.txt +description = Pearl River, MS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ms/msz077.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ms/msz077.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ms/msz077.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ms/msz077.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ms/msz077.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ms/msz077.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ms/msz077.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ms/msz077.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ms.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ms/msz077.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ms/msz077.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ms/msz077.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ms/msz077.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ms/msz077.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ms/msz077.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ms/msz077.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ms.txt +station = ('khsa', 0.0072842201772555211) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ms/msz077.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ms/msz077.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ms/msz077.txt + +[msz078] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ms/msz078.txt +centroid = (0.53738687668905405, -1.5553972868045507) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ms/msz078.txt +description = Stone, MS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ms/msz078.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ms/msz078.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ms/msz078.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ms/msz078.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ms/msz078.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ms/msz078.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ms/msz078.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ms/msz078.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ms.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ms/msz078.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ms/msz078.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ms/msz078.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ms/msz078.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ms/msz078.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ms/msz078.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ms/msz078.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ms.txt +station = ('kgpt', 0.0065363160001825366) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ms/msz078.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ms/msz078.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ms/msz078.txt + +[msz079] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ms/msz079.txt +centroid = (0.53865398572600198, -1.5471296621378536) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ms/msz079.txt +description = George, MS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ms/msz079.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ms/msz079.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ms/msz079.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ms/msz079.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ms/msz079.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ms/msz079.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ms/msz079.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ms/msz079.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ms.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ms/msz079.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ms/msz079.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ms/msz079.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ms/msz079.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ms/msz079.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ms/msz079.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ms/msz079.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ms.txt +station = ('kpql', 0.0071072545186310048) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ms/msz079.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ms/msz079.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ms/msz079.txt + +[msz080] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ms/msz080.txt +centroid = (0.53086632660360322, -1.5618724583294494) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ms/msz080.txt +description = Hancock, MS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ms/msz080.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ms/msz080.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ms/msz080.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ms/msz080.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ms/msz080.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ms/msz080.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ms/msz080.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ms/msz080.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ms.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ms/msz080.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ms/msz080.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ms/msz080.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ms/msz080.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ms/msz080.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ms/msz080.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ms/msz080.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ms.txt +station = ('khsa', 0.00099086733460717214) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ms/msz080.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ms/msz080.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ms/msz080.txt + +[msz081] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ms/msz081.txt +centroid = (0.5325837305875657, -1.5554060134508105) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ms/msz081.txt +description = Harrison, MS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ms/msz081.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ms/msz081.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ms/msz081.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ms/msz081.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ms/msz081.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ms/msz081.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ms/msz081.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ms/msz081.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ms.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ms/msz081.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ms/msz081.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ms/msz081.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ms/msz081.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ms/msz081.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ms/msz081.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ms/msz081.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ms.txt +station = ('kgpt', 0.0017912653740710988) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ms/msz081.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ms/msz081.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ms/msz081.txt + +[msz082] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ms/msz082.txt +centroid = (0.5331300186434399, -1.546991781126946) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ms/msz082.txt +description = Jackson, MS +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ms/msz082.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ms/msz082.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ms/msz082.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ms/msz082.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ms/msz082.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ms/msz082.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ms/msz082.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ms/msz082.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ms.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ms/msz082.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ms/msz082.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ms/msz082.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ms/msz082.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ms/msz082.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ms/msz082.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ms/msz082.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ms.txt +station = ('kpql', 0.0020760726537454293) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ms/msz082.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ms/msz082.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ms/msz082.txt + +[mtz001] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mt/mtz001.txt +centroid = (0.84299402871326112, -2.0102702324470689) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mt/mtz001.txt +description = Kootenai/Cabinet Region, MT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mt/mtz001.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mt/mtz001.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mt/mtz001.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mt/mtz001.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mt/mtz001.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mt/mtz001.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mt/mtz001.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mt/mtz001.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mt.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mt/mtz001.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mt/mtz001.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mt/mtz001.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mt/mtz001.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mt/mtz001.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mt/mtz001.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mt/mtz001.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mt.txt +station = ('kmlp', 0.015891587081731648) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mt/mtz001.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mt/mtz001.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mt/mtz001.txt + +[mtz002] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mt/mtz002.txt +centroid = (0.84256642304652263, -1.9862492659518709) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mt/mtz002.txt +description = West Glacier/Bob Marshall Region, MT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mt/mtz002.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mt/mtz002.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mt/mtz002.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mt/mtz002.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mt/mtz002.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mt/mtz002.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mt/mtz002.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mt/mtz002.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mt.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mt/mtz002.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mt/mtz002.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mt/mtz002.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mt/mtz002.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mt/mtz002.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mt/mtz002.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mt/mtz002.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mt.txt +station = ('kgpi', 0.0053935146857536876) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mt/mtz002.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mt/mtz002.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mt/mtz002.txt + +[mtz003] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mt/mtz003.txt +centroid = (0.83379963421375514, -1.9948764284444789) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mt/mtz003.txt +description = Flathead/Mission Valleys, MT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mt/mtz003.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mt/mtz003.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mt/mtz003.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mt/mtz003.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mt/mtz003.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mt/mtz003.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mt/mtz003.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mt/mtz003.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mt.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mt/mtz003.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mt/mtz003.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mt/mtz003.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mt/mtz003.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mt/mtz003.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mt/mtz003.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mt/mtz003.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mt.txt +station = ('kgpi', 0.0092016628178102841) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mt/mtz003.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mt/mtz003.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mt/mtz003.txt + +[mtz004] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mt/mtz004.txt +centroid = (0.82567687187497341, -2.0072385955363545) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mt/mtz004.txt +description = Lower Clark Fork Region, MT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mt/mtz004.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mt/mtz004.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mt/mtz004.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mt/mtz004.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mt/mtz004.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mt/mtz004.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mt/mtz004.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mt/mtz004.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mt.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mt/mtz004.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mt/mtz004.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mt/mtz004.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mt/mtz004.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mt/mtz004.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mt/mtz004.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mt/mtz004.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mt.txt +station = ('kmlp', 0.0081895934886285701) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mt/mtz004.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mt/mtz004.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mt/mtz004.txt + +[mtz005] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mt/mtz005.txt +centroid = (0.8113826253011398, -1.9915585575364376) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mt/mtz005.txt +description = Missoula/Bitterroot Valleys, MT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mt/mtz005.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mt/mtz005.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mt/mtz005.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mt/mtz005.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mt/mtz005.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mt/mtz005.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mt/mtz005.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mt/mtz005.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mt.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mt/mtz005.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mt/mtz005.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mt/mtz005.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mt/mtz005.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mt/mtz005.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mt/mtz005.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mt/mtz005.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mt.txt +station = ('kmso', 0.0074682806988962853) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mt/mtz005.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mt/mtz005.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mt/mtz005.txt + +[mtz006] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mt/mtz006.txt +centroid = (0.80622168670299266, -1.9890941526326216) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mt/mtz006.txt +description = Bitterroot/Sapphire Mountains, MT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mt/mtz006.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mt/mtz006.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mt/mtz006.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mt/mtz006.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mt/mtz006.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mt/mtz006.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mt/mtz006.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mt/mtz006.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mt.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mt/mtz006.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mt/mtz006.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mt/mtz006.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mt/mtz006.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mt/mtz006.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mt/mtz006.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mt/mtz006.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mt.txt +station = ('kmso', 0.012729550332876803) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mt/mtz006.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mt/mtz006.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mt/mtz006.txt + +[mtz007] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mt/mtz007.txt +centroid = (0.80963380539064145, -1.9707996114132169) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mt/mtz007.txt +description = Butte/Blackfoot Region, MT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mt/mtz007.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mt/mtz007.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mt/mtz007.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mt/mtz007.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mt/mtz007.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mt/mtz007.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mt/mtz007.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mt/mtz007.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mt.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mt/mtz007.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mt/mtz007.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mt/mtz007.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mt/mtz007.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mt/mtz007.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mt/mtz007.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mt/mtz007.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mt.txt +station = ('k3du', 0.0055929224992648831) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mt/mtz007.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mt/mtz007.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mt/mtz007.txt + +[mtz008] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mt/mtz008.txt +centroid = (0.78771596064409677, -1.9704557815505741) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mt/mtz008.txt +description = Beaverhead, MT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mt/mtz008.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mt/mtz008.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mt/mtz008.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mt/mtz008.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mt/mtz008.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mt/mtz008.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mt/mtz008.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mt/mtz008.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mt.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mt/mtz008.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mt/mtz008.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mt/mtz008.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mt/mtz008.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mt/mtz008.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mt/mtz008.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mt/mtz008.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mt.txt +station = ('kdln', 0.0047529377945706979) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mt/mtz008.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mt/mtz008.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mt/mtz008.txt + +[mtz009] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mt/mtz009.txt +centroid = (0.84761740590179413, -1.9758348863052206) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mt/mtz009.txt +description = Northern Rocky Mountain Front, MT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mt/mtz009.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mt/mtz009.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mt/mtz009.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mt/mtz009.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mt/mtz009.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mt/mtz009.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mt/mtz009.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mt/mtz009.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mt.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mt/mtz009.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mt/mtz009.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mt/mtz009.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mt/mtz009.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mt/mtz009.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mt/mtz009.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mt/mtz009.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mt.txt +station = ('k8s0', 0.001238781229136493) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mt/mtz009.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mt/mtz009.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mt/mtz009.txt + +[mtz010] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mt/mtz010.txt +centroid = (0.85075376256762791, -1.9655444250354621) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mt/mtz010.txt +description = Eastern Glacier, MT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mt/mtz010.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mt/mtz010.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mt/mtz010.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mt/mtz010.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mt/mtz010.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mt/mtz010.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mt/mtz010.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mt/mtz010.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mt.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mt/mtz010.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mt/mtz010.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mt/mtz010.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mt/mtz010.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mt/mtz010.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mt/mtz010.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mt/mtz010.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mt.txt +station = ('kctb', 0.0036941976582365965) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mt/mtz010.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mt/mtz010.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mt/mtz010.txt + +[mtz011] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mt/mtz011.txt +centroid = (0.8487221993183065, -1.9218047286512321) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mt/mtz011.txt +description = Hill, MT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mt/mtz011.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mt/mtz011.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mt/mtz011.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mt/mtz011.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mt/mtz011.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mt/mtz011.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mt/mtz011.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mt/mtz011.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mt.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mt/mtz011.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mt/mtz011.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mt/mtz011.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mt/mtz011.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mt/mtz011.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mt/mtz011.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mt/mtz011.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mt.txt +station = ('khvr', 0.0042062271942322283) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mt/mtz011.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mt/mtz011.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mt/mtz011.txt + +[mtz012] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mt/mtz012.txt +centroid = (0.82568036253347743, -1.9433752528766302) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mt/mtz012.txt +description = Cascade, MT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mt/mtz012.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mt/mtz012.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mt/mtz012.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mt/mtz012.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mt/mtz012.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mt/mtz012.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mt/mtz012.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mt/mtz012.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mt.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mt/mtz012.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mt/mtz012.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mt/mtz012.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mt/mtz012.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mt/mtz012.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mt/mtz012.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mt/mtz012.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mt.txt +station = ('kgtf', 0.0028019781428042746) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mt/mtz012.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mt/mtz012.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mt/mtz012.txt + +[mtz013] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mt/mtz013.txt +centroid = (0.83567411783039702, -1.9274578500984418) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mt/mtz013.txt +description = Chouteau, MT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mt/mtz013.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mt/mtz013.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mt/mtz013.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mt/mtz013.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mt/mtz013.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mt/mtz013.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mt/mtz013.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mt/mtz013.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mt.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mt/mtz013.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mt/mtz013.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mt/mtz013.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mt/mtz013.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mt/mtz013.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mt/mtz013.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mt/mtz013.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mt.txt +station = ('kfhu', 0.0044780753111821892) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mt/mtz013.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mt/mtz013.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mt/mtz013.txt + +[mtz014] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mt/mtz014.txt +centroid = (0.81943906512834574, -1.9593188355935982) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mt/mtz014.txt +description = Central and Southern Lewis and Clark, MT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mt/mtz014.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mt/mtz014.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mt/mtz014.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mt/mtz014.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mt/mtz014.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mt/mtz014.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mt/mtz014.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mt/mtz014.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mt.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mt/mtz014.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mt/mtz014.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mt/mtz014.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mt/mtz014.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mt/mtz014.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mt/mtz014.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mt/mtz014.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mt.txt +station = ('khln', 0.0070536010793573814) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mt/mtz014.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mt/mtz014.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mt/mtz014.txt + +[mtz015] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mt/mtz015.txt +centroid = (0.79064811378744726, -1.9533777348198096) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mt/mtz015.txt +description = Madison, MT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mt/mtz015.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mt/mtz015.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mt/mtz015.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mt/mtz015.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mt/mtz015.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mt/mtz015.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mt/mtz015.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mt/mtz015.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mt.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mt/mtz015.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mt/mtz015.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mt/mtz015.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mt/mtz015.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mt/mtz015.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mt/mtz015.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mt/mtz015.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mt.txt +station = ('kdln', 0.0077845348722406773) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mt/mtz015.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mt/mtz015.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mt/mtz015.txt + +[mtz016] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mt/mtz016.txt +centroid = (0.83983672809640353, -1.8821264134363931) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mt/mtz016.txt +description = Central and Southeast Phillips, MT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mt/mtz016.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mt/mtz016.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mt/mtz016.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mt/mtz016.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mt/mtz016.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mt/mtz016.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mt/mtz016.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mt/mtz016.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mt.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mt/mtz016.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mt/mtz016.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mt/mtz016.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mt/mtz016.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mt/mtz016.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mt/mtz016.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mt/mtz016.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mt.txt +station = ('kggw', 0.014317209673419918) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mt/mtz016.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mt/mtz016.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mt/mtz016.txt + +[mtz017] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mt/mtz017.txt +centroid = (0.84093628552515987, -1.8619661152466067) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mt/mtz017.txt +description = Central and Southern Valley, MT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mt/mtz017.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mt/mtz017.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mt/mtz017.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mt/mtz017.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mt/mtz017.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mt/mtz017.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mt/mtz017.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mt/mtz017.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mt.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mt/mtz017.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mt/mtz017.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mt/mtz017.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mt/mtz017.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mt/mtz017.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mt/mtz017.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mt/mtz017.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mt.txt +station = ('kggw', 0.00097768796846291477) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mt/mtz017.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mt/mtz017.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mt/mtz017.txt + +[mtz018] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mt/mtz018.txt +centroid = (0.85143793163440973, -1.8421688455412351) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mt/mtz018.txt +description = Daniels, MT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mt/mtz018.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mt/mtz018.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mt/mtz018.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mt/mtz018.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mt/mtz018.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mt/mtz018.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mt/mtz018.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mt/mtz018.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mt.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mt/mtz018.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mt/mtz018.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mt/mtz018.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mt/mtz018.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mt/mtz018.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mt/mtz018.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mt/mtz018.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mt.txt +station = ('cwaq', 0.004705802499662899) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mt/mtz018.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mt/mtz018.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mt/mtz018.txt + +[mtz019] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mt/mtz019.txt +centroid = (0.85034535552266133, -1.823949353479666) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mt/mtz019.txt +description = Sheridan, MT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mt/mtz019.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mt/mtz019.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mt/mtz019.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mt/mtz019.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mt/mtz019.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mt/mtz019.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mt/mtz019.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mt/mtz019.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mt.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mt/mtz019.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mt/mtz019.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mt/mtz019.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mt/mtz019.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mt/mtz019.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mt/mtz019.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mt/mtz019.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mt.txt +station = ('cwaq', 0.012613477144688055) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mt/mtz019.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mt/mtz019.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mt/mtz019.txt + +[mtz020] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mt/mtz020.txt +centroid = (0.84323662947928835, -1.8396555714183631) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mt/mtz020.txt +description = Western Roosevelt, MT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mt/mtz020.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mt/mtz020.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mt/mtz020.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mt/mtz020.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mt/mtz020.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mt/mtz020.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mt/mtz020.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mt/mtz020.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mt.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mt/mtz020.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mt/mtz020.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mt/mtz020.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mt/mtz020.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mt/mtz020.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mt/mtz020.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mt/mtz020.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mt.txt +station = ('kolf', 0.004273651229823123) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mt/mtz020.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mt/mtz020.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mt/mtz020.txt + +[mtz021] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mt/mtz021.txt +centroid = (0.82235551030842824, -1.8893206606131139) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mt/mtz021.txt +description = Petroleum, MT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mt/mtz021.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mt/mtz021.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mt/mtz021.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mt/mtz021.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mt/mtz021.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mt/mtz021.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mt/mtz021.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mt/mtz021.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mt.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mt/mtz021.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mt/mtz021.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mt/mtz021.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mt/mtz021.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mt/mtz021.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mt/mtz021.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mt/mtz021.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mt.txt +station = ('klwt', 0.014308585191753213) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mt/mtz021.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mt/mtz021.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mt/mtz021.txt + +[mtz022] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mt/mtz022.txt +centroid = (0.82515152777012324, -1.867376635927789) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mt/mtz022.txt +description = Garfield, MT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mt/mtz022.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mt/mtz022.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mt/mtz022.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mt/mtz022.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mt/mtz022.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mt/mtz022.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mt/mtz022.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mt/mtz022.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mt.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mt/mtz022.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mt/mtz022.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mt/mtz022.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mt/mtz022.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mt/mtz022.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mt/mtz022.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mt/mtz022.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mt.txt +station = ('kjdn', 0.0010951653666058606) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mt/mtz022.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mt/mtz022.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mt/mtz022.txt + +[mtz023] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mt/mtz023.txt +centroid = (0.83156561277120233, -1.8464763181351569) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mt/mtz023.txt +description = McCone, MT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mt/mtz023.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mt/mtz023.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mt/mtz023.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mt/mtz023.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mt/mtz023.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mt/mtz023.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mt/mtz023.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mt/mtz023.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mt.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mt/mtz023.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mt/mtz023.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mt/mtz023.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mt/mtz023.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mt/mtz023.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mt/mtz023.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mt/mtz023.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mt.txt +station = ('kolf', 0.0083166105480266522) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mt/mtz023.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mt/mtz023.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mt/mtz023.txt + +[mtz024] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mt/mtz024.txt +centroid = (0.83405619761379823, -1.8249407004947991) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mt/mtz024.txt +description = Richland, MT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mt/mtz024.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mt/mtz024.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mt/mtz024.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mt/mtz024.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mt/mtz024.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mt/mtz024.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mt/mtz024.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mt/mtz024.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mt.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mt/mtz024.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mt/mtz024.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mt/mtz024.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mt/mtz024.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mt/mtz024.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mt/mtz024.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mt/mtz024.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mt.txt +station = ('ksdy', 0.0045104438254444795) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mt/mtz024.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mt/mtz024.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mt/mtz024.txt + +[mtz025] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mt/mtz025.txt +centroid = (0.82495430556464777, -1.8308399133665398) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mt/mtz025.txt +description = Dawson, MT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mt/mtz025.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mt/mtz025.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mt/mtz025.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mt/mtz025.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mt/mtz025.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mt/mtz025.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mt/mtz025.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mt/mtz025.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mt.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mt/mtz025.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mt/mtz025.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mt/mtz025.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mt/mtz025.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mt/mtz025.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mt/mtz025.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mt/mtz025.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mt.txt +station = ('kgdv', 0.0026044573089432721) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mt/mtz025.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mt/mtz025.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mt/mtz025.txt + +[mtz026] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mt/mtz026.txt +centroid = (0.81787001413080285, -1.8391913138373326) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mt/mtz026.txt +description = Prairie, MT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mt/mtz026.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mt/mtz026.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mt/mtz026.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mt/mtz026.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mt/mtz026.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mt/mtz026.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mt/mtz026.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mt/mtz026.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mt.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mt/mtz026.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mt/mtz026.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mt/mtz026.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mt/mtz026.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mt/mtz026.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mt/mtz026.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mt/mtz026.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mt.txt +station = ('kmls', 0.0096050359280638927) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mt/mtz026.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mt/mtz026.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mt/mtz026.txt + +[mtz027] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mt/mtz027.txt +centroid = (0.81969911918689287, -1.8194882919115685) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mt/mtz027.txt +description = Wibaux, MT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mt/mtz027.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mt/mtz027.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mt/mtz027.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mt/mtz027.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mt/mtz027.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mt/mtz027.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mt/mtz027.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mt/mtz027.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mt.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mt/mtz027.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mt/mtz027.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mt/mtz027.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mt/mtz027.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mt/mtz027.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mt/mtz027.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mt/mtz027.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mt.txt +station = ('k20u', 0.0032578124127352133) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mt/mtz027.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mt/mtz027.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mt/mtz027.txt + +[mtz028] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mt/mtz028.txt +centroid = (0.80952734030626994, -1.9169352600381682) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mt/mtz028.txt +description = Southern Wheatland, MT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mt/mtz028.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mt/mtz028.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mt/mtz028.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mt/mtz028.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mt/mtz028.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mt/mtz028.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mt/mtz028.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mt/mtz028.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mt.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mt/mtz028.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mt/mtz028.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mt/mtz028.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mt/mtz028.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mt/mtz028.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mt/mtz028.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mt/mtz028.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mt.txt +station = ('klwt', 0.012516019606243553) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mt/mtz028.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mt/mtz028.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mt/mtz028.txt + +[mtz029] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mt/mtz029.txt +centroid = (0.81151876098279541, -1.8918967665890574) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mt/mtz029.txt +description = Musselshell, MT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mt/mtz029.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mt/mtz029.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mt/mtz029.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mt/mtz029.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mt/mtz029.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mt/mtz029.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mt/mtz029.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mt/mtz029.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mt.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mt/mtz029.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mt/mtz029.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mt/mtz029.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mt/mtz029.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mt/mtz029.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mt/mtz029.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mt/mtz029.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mt.txt +station = ('kbil', 0.012009061384560735) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mt/mtz029.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mt/mtz029.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mt/mtz029.txt + +[mtz030] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mt/mtz030.txt +centroid = (0.80654282728535964, -1.8722443592116012) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mt/mtz030.txt +description = Treasure, MT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mt/mtz030.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mt/mtz030.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mt/mtz030.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mt/mtz030.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mt/mtz030.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mt/mtz030.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mt/mtz030.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mt/mtz030.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mt.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mt/mtz030.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mt/mtz030.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mt/mtz030.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mt/mtz030.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mt/mtz030.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mt/mtz030.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mt/mtz030.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mt.txt +station = ('km46', 0.0091922959364239987) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mt/mtz030.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mt/mtz030.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mt/mtz030.txt + +[mtz031] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mt/mtz031.txt +centroid = (0.80956922820831778, -1.8635962527679693) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mt/mtz031.txt +description = Northern Rosebud, MT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mt/mtz031.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mt/mtz031.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mt/mtz031.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mt/mtz031.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mt/mtz031.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mt/mtz031.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mt/mtz031.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mt/mtz031.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mt.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mt/mtz031.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mt/mtz031.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mt/mtz031.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mt/mtz031.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mt/mtz031.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mt/mtz031.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mt/mtz031.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mt.txt +station = ('km46', 0.0093604921907088547) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mt/mtz031.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mt/mtz031.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mt/mtz031.txt + +[mtz032] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mt/mtz032.txt +centroid = (0.80726190293718125, -1.8425755072569496) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mt/mtz032.txt +description = Custer, MT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mt/mtz032.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mt/mtz032.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mt/mtz032.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mt/mtz032.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mt/mtz032.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mt/mtz032.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mt/mtz032.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mt/mtz032.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mt.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mt/mtz032.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mt/mtz032.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mt/mtz032.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mt/mtz032.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mt/mtz032.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mt/mtz032.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mt/mtz032.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mt.txt +station = ('kmls', 0.0049018773804776622) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mt/mtz032.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mt/mtz032.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mt/mtz032.txt + +[mtz033] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mt/mtz033.txt +centroid = (0.80868085561905267, -1.8224274263719271) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mt/mtz033.txt +description = Fallon, MT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mt/mtz033.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mt/mtz033.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mt/mtz033.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mt/mtz033.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mt/mtz033.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mt/mtz033.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mt/mtz033.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mt/mtz033.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mt.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mt/mtz033.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mt/mtz033.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mt/mtz033.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mt/mtz033.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mt/mtz033.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mt/mtz033.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mt/mtz033.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mt.txt +station = ('kbhk', 0.0020362283485057873) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mt/mtz033.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mt/mtz033.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mt/mtz033.txt + +[mtz034] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mt/mtz034.txt +centroid = (0.79953183968009844, -1.9062067211261589) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mt/mtz034.txt +description = Northern Stillwater, MT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mt/mtz034.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mt/mtz034.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mt/mtz034.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mt/mtz034.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mt/mtz034.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mt/mtz034.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mt/mtz034.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mt/mtz034.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mt.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mt/mtz034.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mt/mtz034.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mt/mtz034.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mt/mtz034.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mt/mtz034.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mt/mtz034.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mt/mtz034.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mt.txt +station = ('kbil', 0.0081221720060910951) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mt/mtz034.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mt/mtz034.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mt/mtz034.txt + +[mtz035] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mt/mtz035.txt +centroid = (0.80175538914713906, -1.8897447756213483) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mt/mtz035.txt +description = Yellowstone, MT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mt/mtz035.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mt/mtz035.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mt/mtz035.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mt/mtz035.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mt/mtz035.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mt/mtz035.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mt/mtz035.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mt/mtz035.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mt.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mt/mtz035.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mt/mtz035.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mt/mtz035.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mt/mtz035.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mt/mtz035.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mt/mtz035.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mt/mtz035.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mt.txt +station = ('kbil', 0.0039547607790922923) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mt/mtz035.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mt/mtz035.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mt/mtz035.txt + +[mtz036] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mt/mtz036.txt +centroid = (0.79229221394282601, -1.8435930342108622) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mt/mtz036.txt +description = Powder River, MT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mt/mtz036.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mt/mtz036.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mt/mtz036.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mt/mtz036.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mt/mtz036.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mt/mtz036.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mt/mtz036.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mt/mtz036.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mt.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mt/mtz036.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mt/mtz036.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mt/mtz036.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mt/mtz036.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mt/mtz036.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mt/mtz036.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mt/mtz036.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mt.txt +station = ('km46', 0.015493565063626051) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mt/mtz036.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mt/mtz036.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mt/mtz036.txt + +[mtz037] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mt/mtz037.txt +centroid = (0.79441802497175507, -1.8245008775232963) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mt/mtz037.txt +description = Carter, MT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mt/mtz037.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mt/mtz037.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mt/mtz037.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mt/mtz037.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mt/mtz037.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mt/mtz037.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mt/mtz037.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mt/mtz037.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mt.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mt/mtz037.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mt/mtz037.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mt/mtz037.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mt/mtz037.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mt/mtz037.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mt/mtz037.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mt/mtz037.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mt.txt +station = ('kbhk', 0.014951272393176382) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mt/mtz037.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mt/mtz037.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mt/mtz037.txt + +[mtz038] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mt/mtz038.txt +centroid = (0.78983479035601789, -1.876337156307528) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mt/mtz038.txt +description = Southern Big Horn, MT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mt/mtz038.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mt/mtz038.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mt/mtz038.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mt/mtz038.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mt/mtz038.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mt/mtz038.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mt/mtz038.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mt/mtz038.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mt.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mt/mtz038.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mt/mtz038.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mt/mtz038.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mt/mtz038.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mt/mtz038.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mt/mtz038.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mt/mtz038.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mt.txt +station = ('kshr', 0.010803853127751162) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mt/mtz038.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mt/mtz038.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mt/mtz038.txt + +[mtz039] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mt/mtz039.txt +centroid = (0.78969690934511028, -1.8985290177466358) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mt/mtz039.txt +description = Eastern Carbon, MT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mt/mtz039.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mt/mtz039.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mt/mtz039.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mt/mtz039.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mt/mtz039.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mt/mtz039.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mt/mtz039.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mt/mtz039.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mt.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mt/mtz039.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mt/mtz039.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mt/mtz039.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mt/mtz039.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mt/mtz039.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mt/mtz039.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mt/mtz039.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mt.txt +station = ('kbil', 0.010336711327837547) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mt/mtz039.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mt/mtz039.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mt/mtz039.txt + +[mtz040] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mt/mtz040.txt +centroid = (0.80218997613088572, -1.9303568419860042) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mt/mtz040.txt +description = Northern Park, MT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mt/mtz040.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mt/mtz040.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mt/mtz040.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mt/mtz040.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mt/mtz040.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mt/mtz040.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mt/mtz040.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mt/mtz040.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mt.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mt/mtz040.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mt/mtz040.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mt/mtz040.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mt/mtz040.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mt/mtz040.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mt/mtz040.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mt/mtz040.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mt.txt +station = ('klvm', 0.0050098413403796031) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mt/mtz040.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mt/mtz040.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mt/mtz040.txt + +[mtz041] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mt/mtz041.txt +centroid = (0.80212714427781395, -1.9174326788749863) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mt/mtz041.txt +description = Northern Sweet Grass, MT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mt/mtz041.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mt/mtz041.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mt/mtz041.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mt/mtz041.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mt/mtz041.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mt/mtz041.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mt/mtz041.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mt/mtz041.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mt.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mt/mtz041.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mt/mtz041.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mt/mtz041.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mt/mtz041.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mt/mtz041.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mt/mtz041.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mt/mtz041.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mt.txt +station = ('klvm', 0.0082967250291630899) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mt/mtz041.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mt/mtz041.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mt/mtz041.txt + +[mtz042] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mt/mtz042.txt +centroid = (0.80852552131562516, -1.9052764606348458) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mt/mtz042.txt +description = Golden Valley, MT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mt/mtz042.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mt/mtz042.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mt/mtz042.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mt/mtz042.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mt/mtz042.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mt/mtz042.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mt/mtz042.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mt/mtz042.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mt.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mt/mtz042.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mt/mtz042.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mt/mtz042.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mt/mtz042.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mt/mtz042.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mt/mtz042.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mt/mtz042.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mt.txt +station = ('kbil', 0.011578905278402619) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mt/mtz042.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mt/mtz042.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mt/mtz042.txt + +[mtz043] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mt/mtz043.txt +centroid = (0.82380413358758353, -1.9824147775852394) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mt/mtz043.txt +description = Potomac/Seeley Lake Region, MT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mt/mtz043.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mt/mtz043.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mt/mtz043.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mt/mtz043.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mt/mtz043.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mt/mtz043.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mt/mtz043.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mt/mtz043.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mt.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mt/mtz043.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mt/mtz043.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mt/mtz043.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mt/mtz043.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mt/mtz043.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mt/mtz043.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mt/mtz043.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mt.txt +station = ('kmso', 0.0078855221246934403) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mt/mtz043.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mt/mtz043.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mt/mtz043.txt + +[mtz044] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mt/mtz044.txt +centroid = (0.84919343821634508, -1.9494577253198304) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mt/mtz044.txt +description = Toole, MT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mt/mtz044.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mt/mtz044.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mt/mtz044.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mt/mtz044.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mt/mtz044.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mt/mtz044.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mt/mtz044.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mt/mtz044.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mt.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mt/mtz044.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mt/mtz044.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mt/mtz044.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mt/mtz044.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mt/mtz044.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mt/mtz044.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mt/mtz044.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mt.txt +station = ('kctb', 0.0079906378156066188) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mt/mtz044.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mt/mtz044.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mt/mtz044.txt + +[mtz045] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mt/mtz045.txt +centroid = (0.84756155536573041, -1.9377448207096966) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mt/mtz045.txt +description = Liberty, MT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mt/mtz045.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mt/mtz045.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mt/mtz045.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mt/mtz045.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mt/mtz045.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mt/mtz045.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mt/mtz045.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mt/mtz045.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mt.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mt/mtz045.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mt/mtz045.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mt/mtz045.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mt/mtz045.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mt/mtz045.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mt/mtz045.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mt/mtz045.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mt.txt +station = ('cwoe', 0.011614389103703467) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mt/mtz045.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mt/mtz045.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mt/mtz045.txt + +[mtz046] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mt/mtz046.txt +centroid = (0.841812440809661, -1.9544720562608102) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mt/mtz046.txt +description = Eastern Pondera, MT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mt/mtz046.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mt/mtz046.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mt/mtz046.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mt/mtz046.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mt/mtz046.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mt/mtz046.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mt/mtz046.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mt/mtz046.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mt.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mt/mtz046.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mt/mtz046.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mt/mtz046.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mt/mtz046.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mt/mtz046.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mt/mtz046.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mt/mtz046.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mt.txt +station = ('kctb', 0.0079177643225962994) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mt/mtz046.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mt/mtz046.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mt/mtz046.txt + +[mtz047] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mt/mtz047.txt +centroid = (0.8453100806306576, -1.9016863183634936) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mt/mtz047.txt +description = Blaine, MT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mt/mtz047.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mt/mtz047.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mt/mtz047.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mt/mtz047.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mt/mtz047.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mt/mtz047.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mt/mtz047.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mt/mtz047.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mt.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mt/mtz047.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mt/mtz047.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mt/mtz047.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mt/mtz047.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mt/mtz047.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mt/mtz047.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mt/mtz047.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mt.txt +station = ('khvr', 0.0095683406334284207) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mt/mtz047.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mt/mtz047.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mt/mtz047.txt + +[mtz048] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mt/mtz048.txt +centroid = (0.83274545534555044, -1.9646194005319051) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mt/mtz048.txt +description = Southern Rocky Mountain Front, MT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mt/mtz048.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mt/mtz048.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mt/mtz048.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mt/mtz048.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mt/mtz048.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mt/mtz048.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mt/mtz048.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mt/mtz048.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mt.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mt/mtz048.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mt/mtz048.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mt/mtz048.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mt/mtz048.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mt/mtz048.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mt/mtz048.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mt/mtz048.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mt.txt +station = ('kctb', 0.015627399310747584) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mt/mtz048.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mt/mtz048.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mt/mtz048.txt + +[mtz049] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mt/mtz049.txt +centroid = (0.83446111400026091, -1.9508714420139459) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mt/mtz049.txt +description = Eastern Teton, MT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mt/mtz049.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mt/mtz049.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mt/mtz049.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mt/mtz049.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mt/mtz049.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mt/mtz049.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mt/mtz049.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mt/mtz049.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mt.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mt/mtz049.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mt/mtz049.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mt/mtz049.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mt/mtz049.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mt/mtz049.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mt/mtz049.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mt/mtz049.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mt.txt +station = ('kgtf', 0.0075853617313325055) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mt/mtz049.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mt/mtz049.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mt/mtz049.txt + +[mtz050] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mt/mtz050.txt +centroid = (0.82109887324699227, -1.9245064983333193) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mt/mtz050.txt +description = Judith Basin, MT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mt/mtz050.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mt/mtz050.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mt/mtz050.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mt/mtz050.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mt/mtz050.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mt/mtz050.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mt/mtz050.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mt/mtz050.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mt.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mt/mtz050.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mt/mtz050.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mt/mtz050.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mt/mtz050.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mt/mtz050.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mt/mtz050.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mt/mtz050.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mt.txt +station = ('kfhu', 0.010290395903399188) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mt/mtz050.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mt/mtz050.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mt/mtz050.txt + +[mtz051] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mt/mtz051.txt +centroid = (0.82490543634559188, -1.9063236581860425) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mt/mtz051.txt +description = Fergus, MT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mt/mtz051.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mt/mtz051.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mt/mtz051.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mt/mtz051.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mt/mtz051.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mt/mtz051.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mt/mtz051.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mt/mtz051.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mt.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mt/mtz051.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mt/mtz051.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mt/mtz051.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mt/mtz051.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mt/mtz051.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mt/mtz051.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mt/mtz051.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mt.txt +station = ('klwt', 0.0045905580503731187) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mt/mtz051.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mt/mtz051.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mt/mtz051.txt + +[mtz052] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mt/mtz052.txt +centroid = (0.80544326985660319, -1.9564041357427677) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mt/mtz052.txt +description = Jefferson, MT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mt/mtz052.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mt/mtz052.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mt/mtz052.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mt/mtz052.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mt/mtz052.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mt/mtz052.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mt/mtz052.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mt/mtz052.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mt.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mt/mtz052.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mt/mtz052.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mt/mtz052.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mt/mtz052.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mt/mtz052.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mt/mtz052.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mt/mtz052.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mt.txt +station = ('kbtm', 0.0058554782218467336) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mt/mtz052.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mt/mtz052.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mt/mtz052.txt + +[mtz053] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mt/mtz053.txt +centroid = (0.80864420370476076, -1.9459618308280857) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mt/mtz053.txt +description = Broadwater, MT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mt/mtz053.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mt/mtz053.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mt/mtz053.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mt/mtz053.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mt/mtz053.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mt/mtz053.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mt/mtz053.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mt/mtz053.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mt.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mt/mtz053.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mt/mtz053.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mt/mtz053.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mt/mtz053.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mt/mtz053.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mt/mtz053.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mt/mtz053.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mt.txt +station = ('khln', 0.0073478715068301488) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mt/mtz053.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mt/mtz053.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mt/mtz053.txt + +[mtz054] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mt/mtz054.txt +centroid = (0.8132920155028216, -1.9353188130494243) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mt/mtz054.txt +description = Meagher, MT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mt/mtz054.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mt/mtz054.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mt/mtz054.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mt/mtz054.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mt/mtz054.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mt/mtz054.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mt/mtz054.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mt/mtz054.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mt.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mt/mtz054.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mt/mtz054.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mt/mtz054.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mt/mtz054.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mt/mtz054.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mt/mtz054.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mt/mtz054.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mt.txt +station = ('kbzn', 0.014576440678651171) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mt/mtz054.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mt/mtz054.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mt/mtz054.txt + +[mtz055] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mt/mtz055.txt +centroid = (0.79531686953653213, -1.940348851953672) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mt/mtz055.txt +description = Gallatin, MT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mt/mtz055.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mt/mtz055.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mt/mtz055.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mt/mtz055.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mt/mtz055.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mt/mtz055.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mt/mtz055.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mt/mtz055.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mt.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mt/mtz055.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mt/mtz055.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mt/mtz055.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mt/mtz055.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mt/mtz055.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mt/mtz055.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mt/mtz055.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mt.txt +station = ('kbzn', 0.0037642456134602265) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mt/mtz055.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mt/mtz055.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mt/mtz055.txt + +[mtz056] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mt/mtz056.txt +centroid = (0.79034268116834816, -1.9075122274066507) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mt/mtz056.txt +description = Red Lodge Foothills, MT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mt/mtz056.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mt/mtz056.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mt/mtz056.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mt/mtz056.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mt/mtz056.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mt/mtz056.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mt/mtz056.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mt/mtz056.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mt.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mt/mtz056.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mt/mtz056.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mt/mtz056.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mt/mtz056.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mt/mtz056.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mt/mtz056.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mt/mtz056.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mt.txt +station = ('kbil', 0.012999582839581936) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mt/mtz056.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mt/mtz056.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mt/mtz056.txt + +[mtz057] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mt/mtz057.txt +centroid = (0.79817048286354275, -1.8755220875468466) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mt/mtz057.txt +description = Northern Big Horn, MT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mt/mtz057.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mt/mtz057.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mt/mtz057.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mt/mtz057.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mt/mtz057.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mt/mtz057.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mt/mtz057.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mt/mtz057.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mt.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mt/mtz057.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mt/mtz057.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mt/mtz057.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mt/mtz057.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mt/mtz057.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mt/mtz057.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mt/mtz057.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mt.txt +station = ('km46', 0.0092329613210218684) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mt/mtz057.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mt/mtz057.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mt/mtz057.txt + +[mtz058] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mt/mtz058.txt +centroid = (0.79287864457149604, -1.8587110761916372) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mt/mtz058.txt +description = Southern Rosebud, MT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mt/mtz058.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mt/mtz058.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mt/mtz058.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mt/mtz058.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mt/mtz058.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mt/mtz058.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mt/mtz058.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mt/mtz058.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mt.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mt/mtz058.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mt/mtz058.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mt/mtz058.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mt/mtz058.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mt/mtz058.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mt/mtz058.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mt/mtz058.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mt.txt +station = ('km46', 0.0078450563710407255) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mt/mtz058.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mt/mtz058.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mt/mtz058.txt + +[mtz059] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mt/mtz059.txt +centroid = (0.85139604373236188, -1.8804229720864467) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mt/mtz059.txt +description = Northern Phillips, MT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mt/mtz059.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mt/mtz059.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mt/mtz059.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mt/mtz059.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mt/mtz059.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mt/mtz059.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mt/mtz059.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mt/mtz059.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mt.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mt/mtz059.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mt/mtz059.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mt/mtz059.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mt/mtz059.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mt/mtz059.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mt/mtz059.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mt/mtz059.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mt.txt +station = ('cwvn', 0.0052942505424141365) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mt/mtz059.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mt/mtz059.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mt/mtz059.txt + +[mtz060] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mt/mtz060.txt +centroid = (0.83454488980435659, -1.8934553456110883) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mt/mtz060.txt +description = Southwest Phillips, MT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mt/mtz060.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mt/mtz060.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mt/mtz060.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mt/mtz060.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mt/mtz060.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mt/mtz060.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mt/mtz060.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mt/mtz060.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mt.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mt/mtz060.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mt/mtz060.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mt/mtz060.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mt/mtz060.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mt/mtz060.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mt/mtz060.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mt/mtz060.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mt.txt +station = ('klwt', 0.0175483423067604) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mt/mtz060.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mt/mtz060.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mt/mtz060.txt + +[mtz061] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mt/mtz061.txt +centroid = (0.85135241050106203, -1.8610986866083654) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mt/mtz061.txt +description = Northern Valley, MT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mt/mtz061.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mt/mtz061.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mt/mtz061.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mt/mtz061.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mt/mtz061.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mt/mtz061.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mt/mtz061.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mt/mtz061.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mt.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mt/mtz061.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mt/mtz061.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mt/mtz061.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mt/mtz061.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mt/mtz061.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mt/mtz061.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mt/mtz061.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mt.txt +station = ('kggw', 0.009814663144020009) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mt/mtz061.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mt/mtz061.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mt/mtz061.txt + +[mtz062] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mt/mtz062.txt +centroid = (0.84247915658392281, -1.8244415363287285) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mt/mtz062.txt +description = Eastern Roosevelt, MT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mt/mtz062.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mt/mtz062.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mt/mtz062.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mt/mtz062.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mt/mtz062.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mt/mtz062.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mt/mtz062.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mt/mtz062.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mt.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mt/mtz062.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mt/mtz062.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mt/mtz062.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mt/mtz062.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mt/mtz062.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mt/mtz062.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mt/mtz062.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mt.txt +station = ('ksdy', 0.01068914010054535) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mt/mtz062.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mt/mtz062.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mt/mtz062.txt + +[mtz063] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mt/mtz063.txt +centroid = (0.81399363786212331, -1.9142457076608448) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mt/mtz063.txt +description = Judith Gap, MT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mt/mtz063.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mt/mtz063.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mt/mtz063.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mt/mtz063.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mt/mtz063.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mt/mtz063.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mt/mtz063.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mt/mtz063.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mt.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mt/mtz063.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mt/mtz063.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mt/mtz063.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mt/mtz063.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mt/mtz063.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mt/mtz063.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mt/mtz063.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mt.txt +station = ('klwt', 0.0076829523205412852) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mt/mtz063.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mt/mtz063.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mt/mtz063.txt + +[mtz064] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mt/mtz064.txt +centroid = (0.79227301532105399, -1.9322505242244183) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mt/mtz064.txt +description = Paradise Valley, MT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mt/mtz064.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mt/mtz064.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mt/mtz064.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mt/mtz064.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mt/mtz064.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mt/mtz064.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mt/mtz064.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mt/mtz064.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mt.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mt/mtz064.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mt/mtz064.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mt/mtz064.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mt/mtz064.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mt/mtz064.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mt/mtz064.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mt/mtz064.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mt.txt +station = ('klvm', 0.0063214687292960552) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mt/mtz064.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mt/mtz064.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mt/mtz064.txt + +[mtz065] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mt/mtz065.txt +centroid = (0.79754390966207689, -1.928608022075506) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mt/mtz065.txt +description = Livingston Area, MT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mt/mtz065.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mt/mtz065.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mt/mtz065.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mt/mtz065.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mt/mtz065.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mt/mtz065.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mt/mtz065.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mt/mtz065.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mt.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mt/mtz065.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mt/mtz065.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mt/mtz065.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mt/mtz065.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mt/mtz065.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mt/mtz065.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mt/mtz065.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mt.txt +station = ('klvm', 0.00082917550498928262) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mt/mtz065.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mt/mtz065.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mt/mtz065.txt + +[mtz066] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mt/mtz066.txt +centroid = (0.79540588132838375, -1.9164326052135936) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mt/mtz066.txt +description = Beartooth Foothills, MT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mt/mtz066.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mt/mtz066.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mt/mtz066.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mt/mtz066.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mt/mtz066.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mt/mtz066.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mt/mtz066.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mt/mtz066.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mt.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mt/mtz066.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mt/mtz066.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mt/mtz066.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mt/mtz066.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mt/mtz066.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mt/mtz066.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mt/mtz066.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mt.txt +station = ('klvm', 0.0079974062078176263) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mt/mtz066.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mt/mtz066.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mt/mtz066.txt + +[mtz067] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mt/mtz067.txt +centroid = (0.79000059663495736, -1.9231660854677879) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mt/mtz067.txt +description = Absaroka/Beartooth Mountains, MT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mt/mtz067.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mt/mtz067.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mt/mtz067.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mt/mtz067.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mt/mtz067.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mt/mtz067.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mt/mtz067.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mt/mtz067.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mt.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mt/mtz067.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mt/mtz067.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mt/mtz067.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mt/mtz067.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mt/mtz067.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mt/mtz067.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mt/mtz067.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mt.txt +station = ('klvm', 0.0081794780046327027) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mt/mtz067.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mt/mtz067.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mt/mtz067.txt + +[mtz068] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/mt/mtz068.txt +centroid = (0.80399115591894388, -1.9253704363130566) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/mt/mtz068.txt +description = Crazy Mountains, MT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/mt/mtz068.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/mt/mtz068.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/mt/mtz068.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/mt/mtz068.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/mt/mtz068.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/mt/mtz068.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/mt/mtz068.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/mt/mtz068.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/mt.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/mt/mtz068.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/mt/mtz068.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/mt/mtz068.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/mt/mtz068.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/mt/mtz068.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/mt/mtz068.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/mt/mtz068.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/mt.txt +station = ('klvm', 0.0065341794763975735) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/mt/mtz068.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/mt/mtz068.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/mt/mtz068.txt + +[ncz001] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz001.txt +centroid = (0.6359037316471261, -1.4224607936678986) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz001.txt +description = Ashe, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz001.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz001.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz001.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz001.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz001.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz001.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz001.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz001.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz001.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz001.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz001.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz001.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz001.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz001.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz001.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('kgev', 0.0011844069092700543) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz001.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz001.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz001.txt + +[ncz002] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz002.txt +centroid = (0.63689682399151082, -1.4159611875334717) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz002.txt +description = Alleghany, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz002.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz002.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz002.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz002.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz002.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz002.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz002.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz002.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz002.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz002.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz002.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz002.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz002.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz002.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz002.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('kgev', 0.0041690143356864079) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz002.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz002.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz002.txt + +[ncz003] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz003.txt +centroid = (0.63555815645523106, -1.4082747575076886) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz003.txt +description = Surry, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz003.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz003.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz003.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz003.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz003.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz003.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz003.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz003.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz003.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz003.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz003.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz003.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz003.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz003.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz003.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('kmwk', 0.0020531981833493223) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz003.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz003.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz003.txt + +[ncz004] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz004.txt +centroid = (0.63533126365247183, -1.4004434651539901) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz004.txt +description = Stokes, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz004.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz004.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz004.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz004.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz004.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz004.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz004.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz004.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz004.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz004.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz004.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz004.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz004.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz004.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz004.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('kint', 0.0046864307402294872) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz004.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz004.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz004.txt + +[ncz005] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz005.txt +centroid = (0.63523177988510815, -1.3923381561077284) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz005.txt +description = Rockingham, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz005.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz005.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz005.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz005.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz005.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz005.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz005.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz005.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz005.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz005.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz005.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz005.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz005.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz005.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz005.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('ksif', 0.001301410517695392) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz005.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz005.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz005.txt + +[ncz006] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz006.txt +centroid = (0.63518465599530427, -1.3846342727894252) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz006.txt +description = Caswell, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz006.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz006.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz006.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz006.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz006.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz006.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz006.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz006.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz006.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz006.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz006.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz006.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz006.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz006.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz006.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('kdan', 0.0030240781950727374) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz006.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz006.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz006.txt + +[ncz007] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz007.txt +centroid = (0.63512706012998843, -1.378316180897206) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz007.txt +description = Person, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz007.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz007.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz007.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz007.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz007.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz007.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz007.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz007.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz007.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz007.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz007.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz007.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz007.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz007.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz007.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('ktdf', 0.0018426957558485267) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz007.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz007.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz007.txt + +[ncz008] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz008.txt +centroid = (0.63362433164402143, -1.3727538165711002) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz008.txt +description = Granville, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz008.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz008.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz008.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz008.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz008.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz008.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz008.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz008.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz008.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz008.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz008.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz008.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz008.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz008.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz008.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('khnz', 0.0020110897215446602) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz008.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz008.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz008.txt + +[ncz009] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz009.txt +centroid = (0.63468549182923395, -1.3684829958914699) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz009.txt +description = Vance, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz009.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz009.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz009.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz009.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz009.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz009.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz009.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz009.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz009.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz009.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz009.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz009.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz009.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz009.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz009.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('khnz', 0.0016996234689822054) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz009.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz009.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz009.txt + +[ncz010] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz010.txt +centroid = (0.6352405065313681, -1.3632225735259589) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz010.txt +description = Warren, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz010.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz010.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz010.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz010.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz010.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz010.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz010.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz010.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz010.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz010.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz010.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz010.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz010.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz010.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz010.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('kavc', 0.0051499167716612011) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz010.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz010.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz010.txt + +[ncz011] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz011.txt +centroid = (0.63281275354184408, -1.3552813254293847) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz011.txt +description = Halifax, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz011.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz011.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz011.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz011.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz011.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz011.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz011.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz011.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz011.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz011.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz011.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz011.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz011.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz011.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz011.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('kixa', 0.0012763886837596551) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz011.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz011.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz011.txt + +[ncz012] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz012.txt +centroid = (0.63560877100353896, -1.3508272451782952) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz012.txt +description = Northampton, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz012.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz012.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz012.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz012.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz012.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz012.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz012.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz012.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz012.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz012.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz012.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz012.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz012.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz012.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz012.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('kixa', 0.0037460272424600597) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz012.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz012.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz012.txt + +[ncz013] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz013.txt +centroid = (0.63458426273261836, -1.3436207806968108) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz013.txt +description = Hertford, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz013.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz013.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz013.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz013.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz013.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz013.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz013.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz013.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz013.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz013.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz013.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz013.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz013.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz013.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz013.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('kasj', 0.002840490672009941) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz013.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz013.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz013.txt + +[ncz014] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz014.txt +centroid = (0.6360747739138215, -1.3386972068769347) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz014.txt +description = Gates, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz014.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz014.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz014.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz014.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz014.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz014.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz014.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz014.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz014.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz014.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz014.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz014.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz014.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz014.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz014.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('ksfq', 0.0043800174240953456) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz014.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz014.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz014.txt + +[ncz015] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz015.txt +centroid = (0.63350913991338986, -1.331454090481158) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz015.txt +description = Pasquotank, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz015.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz015.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz015.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz015.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz015.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz015.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz015.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz015.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz015.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz015.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz015.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz015.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz015.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz015.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz015.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('kecg', 0.0018806971910715138) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz015.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz015.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz015.txt + +[ncz016] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz016.txt +centroid = (0.63512880545924055, -1.3301171682741304) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz016.txt +description = Camden, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz016.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz016.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz016.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz016.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz016.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz016.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz016.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz016.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz016.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz016.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz016.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz016.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz016.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz016.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz016.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('kecg', 0.0025220277907900281) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz016.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz016.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz016.txt + +[ncz017] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz017.txt +centroid = (0.63532079167695998, -1.3270436434613686) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz017.txt +description = Western Currituck, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz017.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz017.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz017.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz017.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz017.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz017.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz017.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz017.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz017.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz017.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz017.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz017.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz017.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz017.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz017.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('konx', 0.00025452040408240355) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz017.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz017.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz017.txt + +[ncz018] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz018.txt +centroid = (0.63235547727782149, -1.4258798936725554) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz018.txt +description = Watauga, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz018.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz018.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz018.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz018.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz018.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz018.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz018.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz018.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz018.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz018.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz018.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz018.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz018.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz018.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz018.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('ktnb', 0.0008570739684663931) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz018.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz018.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz018.txt + +[ncz019] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz019.txt +centroid = (0.63192263562332684, -1.4165755434301734) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz019.txt +description = Wilkes, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz019.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz019.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz019.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz019.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz019.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz019.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz019.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz019.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz019.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz019.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz019.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz019.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz019.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz019.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz019.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('kukf', 0.0011469429948051074) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz019.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz019.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz019.txt + +[ncz020] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz020.txt +centroid = (0.63111978416740955, -1.4078750771089819) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz020.txt +description = Yadkin, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz020.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz020.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz020.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz020.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz020.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz020.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz020.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz020.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz020.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz020.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz020.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz020.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz020.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz020.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz020.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('kmwk', 0.0054557930031417018) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz020.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz020.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz020.txt + +[ncz021] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz021.txt +centroid = (0.63059444006255927, -1.400736680468325) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz021.txt +description = Forsyth, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz021.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz021.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz021.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz021.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz021.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz021.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz021.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz021.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz021.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz021.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz021.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz021.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz021.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz021.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz021.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('kint', 0.00032776947393061654) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz021.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz021.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz021.txt + +[ncz022] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz022.txt +centroid = (0.62970432214404215, -1.3925807568737556) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz022.txt +description = Guilford, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz022.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz022.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz022.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz022.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz022.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz022.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz022.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz022.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz022.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz022.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz022.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz022.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz022.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz022.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz022.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('kgso', 0.0022990204158167596) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz022.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz022.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz022.txt + +[ncz023] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz023.txt +centroid = (0.62908647558883612, -1.3857826994372378) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz023.txt +description = Alamance, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz023.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz023.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz023.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz023.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz023.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz023.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz023.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz023.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz023.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz023.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz023.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz023.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz023.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz023.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz023.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('kbuy', 0.00096603708533151463) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz023.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz023.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz023.txt + +[ncz024] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz024.txt +centroid = (0.6293901628786831, -1.3809132308241736) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz024.txt +description = Orange, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz024.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz024.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz024.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz024.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz024.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz024.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz024.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz024.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz024.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz024.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz024.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz024.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz024.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz024.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz024.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('kigx', 0.0023609073051117091) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz024.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz024.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz024.txt + +[ncz025] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz025.txt +centroid = (0.6289451039194246, -1.3766528821200554) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz025.txt +description = Durham, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz025.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz025.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz025.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz025.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz025.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz025.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz025.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz025.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz025.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz025.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz025.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz025.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz025.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz025.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz025.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('krdu', 0.0028334820267506091) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz025.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz025.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz025.txt + +[ncz026] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz026.txt +centroid = (0.62976191800935799, -1.366343222228525) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz026.txt +description = Franklin, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz026.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz026.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz026.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz026.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz026.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz026.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz026.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz026.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz026.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz026.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz026.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz026.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz026.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz026.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz026.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('klhz', 0.0012121279055204738) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz026.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz026.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz026.txt + +[ncz027] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz027.txt +centroid = (0.62774606272330447, -1.361121197106558) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz027.txt +description = Nash, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz027.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz027.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz027.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz027.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz027.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz027.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz027.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz027.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz027.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz027.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz027.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz027.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz027.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz027.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz027.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('krwi', 0.002383149619504366) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz027.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz027.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz027.txt + +[ncz028] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz028.txt +centroid = (0.62679834893947162, -1.3543248849992919) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz028.txt +description = Edgecombe, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz028.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz028.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz028.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz028.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz028.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz028.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz028.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz028.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz028.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz028.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz028.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz028.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz028.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz028.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz028.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('ketc', 0.00086047124490576333) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz028.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz028.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz028.txt + +[ncz029] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz029.txt +centroid = (0.62555392918279962, -1.3457727716645198) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz029.txt +description = Martin, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz029.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz029.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz029.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz029.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz029.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz029.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz029.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz029.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz029.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz029.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz029.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz029.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz029.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz029.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz029.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('kocw', 0.0048000011512839731) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz029.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz029.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz029.txt + +[ncz030] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz030.txt +centroid = (0.6294739386827789, -1.3435387502219669) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz030.txt +description = Bertie, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz030.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz030.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz030.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz030.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz030.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz030.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz030.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz030.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz030.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz030.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz030.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz030.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz030.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz030.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz030.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('kasj', 0.0048572028088194729) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz030.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz030.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz030.txt + +[ncz031] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz031.txt +centroid = (0.63094874190071415, -1.3370618333678161) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz031.txt +description = Chowan, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz031.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz031.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz031.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz031.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz031.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz031.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz031.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz031.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz031.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz031.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz031.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz031.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz031.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz031.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz031.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('kede', 0.0022211494926288435) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz031.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz031.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz031.txt + +[ncz032] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz032.txt +centroid = (0.63192961694033489, -1.3341628414802535) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz032.txt +description = Perquimans, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz032.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz032.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz032.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz032.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz032.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz032.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz032.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz032.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz032.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz032.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz032.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz032.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz032.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz032.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz032.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('kede', 0.0035910387715307412) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz032.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz032.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz032.txt + +[ncz033] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz033.txt +centroid = (0.62965545292498626, -1.4298156111358025) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz033.txt +description = Avery, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz033.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz033.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz033.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz033.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz033.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz033.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz033.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz033.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz033.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz033.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz033.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz033.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz033.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz033.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz033.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('ktnb', 0.0044023379015529357) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz033.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz033.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz033.txt + +[ncz035] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz035.txt +centroid = (0.62694146593813516, -1.4168094175499408) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz035.txt +description = Alexander, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz035.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz035.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz035.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz035.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz035.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz035.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz035.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz035.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz035.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz035.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz035.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz035.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz035.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz035.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz035.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('ksvh', 0.00413900588292906) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz035.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz035.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz035.txt + +[ncz036] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz036.txt +centroid = (0.6249535359201136, -1.411510597940886) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz036.txt +description = Iredell, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz036.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz036.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz036.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz036.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz036.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz036.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz036.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz036.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz036.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz036.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz036.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz036.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz036.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz036.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz036.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('ksvh', 0.0013851010651761732) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz036.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz036.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz036.txt + +[ncz037] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz037.txt +centroid = (0.62708283760754668, -1.4057684647018247) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz037.txt +description = Davie, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz037.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz037.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz037.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz037.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz037.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz037.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz037.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz037.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz037.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz037.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz037.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz037.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz037.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz037.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz037.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('kexx', 0.0042749118963180078) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz037.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz037.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz037.txt + +[ncz038] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz038.txt +centroid = (0.62470918982483437, -1.3999757169144555) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz038.txt +description = Davidson, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz038.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz038.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz038.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz038.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz038.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz038.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz038.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz038.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz038.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz038.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz038.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz038.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz038.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz038.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz038.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('kexx', 0.0013081813064826397) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz038.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz038.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz038.txt + +[ncz039] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz039.txt +centroid = (0.62326231187493097, -1.3928774628465945) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz039.txt +description = Randolph, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz039.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz039.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz039.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz039.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz039.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz039.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz039.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz039.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz039.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz039.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz039.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz039.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz039.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz039.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz039.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('khbi', 0.0016004104164527599) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz039.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz039.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz039.txt + +[ncz040] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz040.txt +centroid = (0.62313141218103152, -1.383265934655862) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz040.txt +description = Chatham, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz040.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz040.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz040.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz040.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz040.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz040.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz040.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz040.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz040.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz040.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz040.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz040.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz040.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz040.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz040.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('ktta', 0.0030288733084711012) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz040.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz040.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz040.txt + +[ncz041] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz041.txt +centroid = (0.62465508461802255, -1.3727084380105483) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz041.txt +description = Wake, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz041.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz041.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz041.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz041.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz041.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz041.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz041.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz041.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz041.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz041.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz041.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz041.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz041.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz041.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz041.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('krdu', 0.0025268332298987953) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz041.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz041.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz041.txt + +[ncz042] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz042.txt +centroid = (0.61989906240633807, -1.3677394856301204) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz042.txt +description = Johnston, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz042.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz042.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz042.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz042.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz042.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz042.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz042.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz042.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz042.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz042.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz042.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz042.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz042.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz042.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz042.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('kjnx', 0.00053506869420216351) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz042.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz042.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz042.txt + +[ncz043] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz043.txt +centroid = (0.62316631876607131, -1.3599343732152016) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz043.txt +description = Wilson, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz043.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz043.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz043.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz043.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz043.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz043.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz043.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz043.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz043.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz043.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz043.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz043.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz043.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz043.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz043.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('krwi', 0.0025477209164242094) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz043.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz043.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz043.txt + +[ncz044] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz044.txt +centroid = (0.62122376730860163, -1.3504450180721084) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz044.txt +description = Pitt, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz044.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz044.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz044.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz044.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz044.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz044.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz044.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz044.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz044.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz044.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz044.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz044.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz044.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz044.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz044.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('kpgv', 0.00078178271573011598) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz044.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz044.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz044.txt + +[ncz045] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz045.txt +centroid = (0.62521358997866072, -1.3365137999826897) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz045.txt +description = Washington, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz045.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz045.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz045.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz045.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz045.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz045.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz045.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz045.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz045.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz045.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz045.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz045.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz045.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz045.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz045.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('kede', 0.003592200393216948) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz045.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz045.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz045.txt + +[ncz046] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz046.txt +centroid = (0.625108870223541, -1.3301468388714144) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz046.txt +description = Tyrrell, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz046.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz046.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz046.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz046.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz046.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz046.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz046.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz046.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz046.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz046.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz046.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz046.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz046.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz046.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz046.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('k2dp', 0.0051295377470046569) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz046.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz046.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz046.txt + +[ncz047] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz047.txt +centroid = (0.62439677588872744, -1.3239666279901023) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz047.txt +description = Western Dare, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz047.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz047.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz047.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz047.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz047.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz047.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz047.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz047.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz047.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz047.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz047.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz047.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz047.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz047.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz047.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('k2dp', 0.0019884945575903549) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz047.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz047.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz047.txt + +[ncz048] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz048.txt +centroid = (0.62584190850937871, -1.443486775166674) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz048.txt +description = Madison, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz048.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz048.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz048.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz048.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz048.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz048.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz048.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz048.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz048.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz048.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz048.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz048.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz048.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz048.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz048.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('kavl', 0.007806256516067373) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz048.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz048.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz048.txt + +[ncz049] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz049.txt +centroid = (0.62655400284419238, -1.4365386194144847) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz049.txt +description = Yancey, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz049.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz049.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz049.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz049.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz049.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz049.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz049.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz049.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz049.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz049.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz049.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz049.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz049.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz049.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz049.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('k0a9', 0.0084479172795376666) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz049.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz049.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz049.txt + +[ncz050] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz050.txt +centroid = (0.62855065950847389, -1.4340218546331089) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz050.txt +description = Mitchell, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz050.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz050.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz050.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz050.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz050.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz050.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz050.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz050.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz050.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz050.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz050.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz050.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz050.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz050.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz050.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('k0a9', 0.0062262835086525567) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz050.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz050.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz050.txt + +[ncz051] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz051.txt +centroid = (0.6193597556674717, -1.4572225163798695) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz051.txt +description = Swain, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz051.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz051.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz051.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz051.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz051.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz051.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz051.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz051.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz051.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz051.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz051.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz051.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz051.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz051.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz051.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('k1a5', 0.0048356557184117792) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz051.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz051.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz051.txt + +[ncz052] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz052.txt +centroid = (0.62057101416835581, -1.4483126105484387) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz052.txt +description = Haywood, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz052.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz052.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz052.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz052.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz052.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz052.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz052.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz052.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz052.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz052.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz052.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz052.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz052.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz052.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz052.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('kavl', 0.0067286335796741797) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz052.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz052.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz052.txt + +[ncz053] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz053.txt +centroid = (0.62153269058620464, -1.4404237223294241) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz053.txt +description = Buncombe, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz053.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz053.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz053.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz053.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz053.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz053.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz053.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz053.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz053.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz053.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz053.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz053.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz053.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz053.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz053.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('kavl', 0.0031046780240620055) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz053.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz053.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz053.txt + +[ncz056] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz056.txt +centroid = (0.6224297898217297, -1.4174586800316826) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz056.txt +description = Catawba, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz056.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz056.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz056.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz056.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz056.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz056.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz056.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz056.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz056.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz056.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz056.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz056.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz056.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz056.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz056.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('khky', 0.0028388472638071322) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz056.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz056.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz056.txt + +[ncz057] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz057.txt +centroid = (0.62202836409377105, -1.4054211441806779) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz057.txt +description = Rowan, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz057.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz057.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz057.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz057.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz057.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz057.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz057.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz057.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz057.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz057.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz057.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz057.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz057.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz057.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz057.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('kruq', 0.00021431197729869844) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz057.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz057.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz057.txt + +[ncz058] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz058.txt +centroid = (0.61697738123849954, -1.4631705984706662) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz058.txt +description = Graham, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz058.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz058.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz058.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz058.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz058.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz058.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz058.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz058.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz058.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz058.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz058.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz058.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz058.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz058.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz058.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('krhp', 0.0027425209553660203) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz058.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz058.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz058.txt + +[ncz059] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz059.txt +centroid = (0.61721474601677062, -1.4517264745653395) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz059.txt +description = Northern Jackson, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz059.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz059.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz059.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz059.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz059.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz059.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz059.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz059.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz059.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz059.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz059.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz059.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz059.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz059.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz059.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('k1a5', 0.0042631098295726148) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz059.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz059.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz059.txt + +[ncz060] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz060.txt +centroid = (0.6132022340664357, -1.4671848557502534) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz060.txt +description = Cherokee, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz060.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz060.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz060.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz060.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz060.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz060.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz060.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz060.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz060.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz060.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz060.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz060.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz060.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz060.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz060.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('krhp', 0.0030448821773796345) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz060.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz060.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz060.txt + +[ncz061] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz061.txt +centroid = (0.61186356653015617, -1.4617167392037551) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz061.txt +description = Clay, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz061.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz061.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz061.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz061.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz061.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz061.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz061.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz061.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz061.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz061.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz061.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz061.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz061.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz061.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz061.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('krhp', 0.0028991800937316799) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz061.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz061.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz061.txt + +[ncz062] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz062.txt +centroid = (0.61349021339301479, -1.4559903139279615) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz062.txt +description = Macon, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz062.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz062.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz062.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz062.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz062.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz062.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz062.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz062.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz062.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz062.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz062.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz062.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz062.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz062.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz062.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('k1a5', 0.0011591655312953527) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz062.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz062.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz062.txt + +[ncz063] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz063.txt +centroid = (0.61368219961073422, -1.4500177972276369) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz063.txt +description = Southern Jackson, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz063.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz063.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz063.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz063.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz063.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz063.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz063.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz063.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz063.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz063.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz063.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz063.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz063.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz063.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz063.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('k1a5', 0.0048994578837463464) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz063.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz063.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz063.txt + +[ncz064] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz064.txt +centroid = (0.61439429394554779, -1.4451029500540209) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz064.txt +description = Transylvania, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz064.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz064.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz064.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz064.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz064.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz064.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz064.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz064.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz064.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz064.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz064.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz064.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz064.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz064.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz064.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('kavl', 0.0055237847050047494) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz064.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz064.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz064.txt + +[ncz065] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz065.txt +centroid = (0.6167330351432202, -1.4395458217156711) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz065.txt +description = Henderson, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz065.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz065.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz065.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz065.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz065.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz065.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz065.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz065.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz065.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz065.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz065.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz065.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz065.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz065.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz065.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('kavl', 0.0018579878489620894) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz065.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz065.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz065.txt + +[ncz068] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz068.txt +centroid = (0.61669463789967649, -1.4234102527809835) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz068.txt +description = Cleveland, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz068.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz068.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz068.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz068.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz068.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz068.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz068.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz068.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz068.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz068.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz068.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz068.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz068.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz068.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz068.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('keho', 0.001597829833448284) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz068.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz068.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz068.txt + +[ncz069] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz069.txt +centroid = (0.61935102902121175, -1.4176244863106222) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz069.txt +description = Lincoln, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz069.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz069.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz069.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz069.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz069.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz069.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz069.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz069.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz069.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz069.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz069.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz069.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz069.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz069.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz069.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('kipj', 0.00089008361928253775) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz069.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz069.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz069.txt + +[ncz070] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz070.txt +centroid = (0.61600523284513864, -1.4168600320982487) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz070.txt +description = Gaston, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz070.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz070.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz070.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz070.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz070.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz070.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz070.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz070.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz070.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz070.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz070.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz070.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz070.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz070.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz070.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('kakh', 0.0017042236910991253) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz070.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz070.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz070.txt + +[ncz071] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz071.txt +centroid = (0.61517271079193736, -1.4107985036060726) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz071.txt +description = Mecklenburg, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz071.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz071.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz071.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz071.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz071.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz071.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz071.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz071.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz071.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz071.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz071.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz071.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz071.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz071.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz071.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('kclt', 0.0017516552973285782) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz071.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz071.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz071.txt + +[ncz072] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz072.txt +centroid = (0.61761617174472938, -1.4058958737372205) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz072.txt +description = Cabarrus, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz072.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz072.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz072.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz072.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz072.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz072.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz072.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz072.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz072.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz072.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz072.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz072.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz072.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz072.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz072.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('kjqf', 0.0022458293574558587) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz072.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz072.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz072.txt + +[ncz073] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz073.txt +centroid = (0.61631066546423763, -1.4006389420302134) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz073.txt +description = Stanly, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz073.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz073.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz073.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz073.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz073.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz073.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz073.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz073.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz073.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz073.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz073.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz073.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz073.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz073.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz073.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('kvuj', 0.0023146247368920794) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz073.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz073.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz073.txt + +[ncz074] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz074.txt +centroid = (0.61666671263164452, -1.3946123201230769) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz074.txt +description = Montgomery, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz074.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz074.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz074.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz074.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz074.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz074.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz074.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz074.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz074.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz074.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz074.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz074.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz074.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz074.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz074.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('kvuj', 0.0037898139742538577) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz074.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz074.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz074.txt + +[ncz075] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz075.txt +centroid = (0.61628797618396169, -1.3872103787653691) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz075.txt +description = Moore, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz075.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz075.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz075.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz075.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz075.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz075.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz075.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz075.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz075.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz075.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz075.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz075.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz075.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz075.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz075.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('ksop', 0.0017791429268300429) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz075.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz075.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz075.txt + +[ncz076] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz076.txt +centroid = (0.61915555214498841, -1.3818050940719426) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz076.txt +description = Lee, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz076.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz076.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz076.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz076.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz076.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz076.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz076.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz076.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz076.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz076.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz076.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz076.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz076.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz076.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz076.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('ktta', 0.0021248026172907934) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz076.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz076.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz076.txt + +[ncz077] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz077.txt +centroid = (0.61730026715011843, -1.3765289637431637) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz077.txt +description = Harnett, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz077.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz077.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz077.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz077.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz077.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz077.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz077.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz077.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz077.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz077.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz077.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz077.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz077.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz077.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz077.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('khrj', 0.0019387629819185494) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz077.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz077.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz077.txt + +[ncz078] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz078.txt +centroid = (0.61721474601677062, -1.361426629725657) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz078.txt +description = Wayne, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz078.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz078.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz078.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz078.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz078.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz078.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz078.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz078.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz078.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz078.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz078.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz078.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz078.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz078.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz078.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('kgsb', 0.00075180375402137398) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz078.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz078.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz078.txt + +[ncz079] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz079.txt +centroid = (0.61933357572869185, -1.3556949684621076) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz079.txt +description = Greene, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz079.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz079.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz079.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz079.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz079.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz079.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz079.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz079.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz079.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz079.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz079.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz079.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz079.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz079.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz079.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('kiso', 0.002779987856306568) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz079.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz079.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz079.txt + +[ncz080] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz080.txt +centroid = (0.61949938200763133, -1.3415141682896536) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz080.txt +description = Beaufort, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz080.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz080.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz080.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz080.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz080.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz080.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz080.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz080.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz080.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz080.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz080.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz080.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz080.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz080.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz080.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('kocw', 0.0029628803442992907) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz080.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz080.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz080.txt + +[ncz081] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz081.txt +centroid = (0.62024638292748491, -1.3308694051817402) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz081.txt +description = Western Hyde, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz081.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz081.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz081.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz081.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz081.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz081.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz081.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz081.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz081.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz081.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz081.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz081.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz081.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz081.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz081.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('k2dp', 0.0054958763115588302) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz081.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz081.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz081.txt + +[ncz082] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz082.txt +centroid = (0.61066278000478402, -1.4055258639357975) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz082.txt +description = Union, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz082.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz082.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz082.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz082.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz082.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz082.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz082.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz082.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz082.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz082.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz082.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz082.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz082.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz082.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz082.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('keqy', 0.0013243404877885843) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz082.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz082.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz082.txt + +[ncz083] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz083.txt +centroid = (0.61040796193399283, -1.3980558547372617) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz083.txt +description = Anson, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz083.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz083.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz083.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz083.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz083.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz083.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz083.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz083.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz083.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz083.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz083.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz083.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz083.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz083.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz083.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('kafp', 0.00089527501166781164) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz083.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz083.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz083.txt + +[ncz084] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz084.txt +centroid = (0.6109682126238829, -1.391865171880438) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz084.txt +description = Richmond, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz084.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz084.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz084.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz084.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz084.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz084.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz084.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz084.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz084.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz084.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz084.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz084.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz084.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz084.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz084.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('krcz', 0.0020301081563694361) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz084.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz084.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz084.txt + +[ncz085] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz085.txt +centroid = (0.60809191001659635, -1.3871964161313532) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz085.txt +description = Scotland, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz085.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz085.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz085.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz085.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz085.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz085.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz085.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz085.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz085.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz085.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz085.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz085.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz085.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz085.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz085.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('kmeb', 0.0019176246470739211) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz085.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz085.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz085.txt + +[ncz086] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz086.txt +centroid = (0.61116892548786239, -1.3829482847319989) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz086.txt +description = Hoke, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz086.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz086.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz086.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz086.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz086.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz086.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz086.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz086.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz086.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz086.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz086.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz086.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz086.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz086.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz086.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('khff', 0.0037677649315671869) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz086.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz086.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz086.txt + +[ncz087] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz087.txt +centroid = (0.60458379822008768, -1.3806165248513345) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz087.txt +description = Robeson, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz087.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz087.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz087.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz087.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz087.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz087.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz087.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz087.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz087.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz087.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz087.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz087.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz087.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz087.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz087.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('klbt', 0.00087732947731158949) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz087.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz087.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz087.txt + +[ncz088] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz088.txt +centroid = (0.61171172288523257, -1.375795925457326) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz088.txt +description = Cumberland, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz088.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz088.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz088.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz088.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz088.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz088.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz088.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz088.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz088.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz088.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz088.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz088.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz088.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz088.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz088.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('kfay', 0.0013910906524463814) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz088.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz088.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz088.txt + +[ncz089] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz089.txt +centroid = (0.61071688521159584, -1.3678354787389799) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz089.txt +description = Sampson, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz089.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz089.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz089.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz089.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz089.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz089.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz089.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz089.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz089.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz089.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz089.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz089.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz089.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz089.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz089.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('kctz', 0.00029329493533635404) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz089.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz089.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz089.txt + +[ncz090] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz090.txt +centroid = (0.60975695412299902, -1.3601926819444969) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz090.txt +description = Duplin, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz090.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz090.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz090.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz090.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz090.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz090.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz090.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz090.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz090.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz090.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz090.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz090.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz090.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz090.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz090.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('kdpl', 0.0013064561179893443) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz090.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz090.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz090.txt + +[ncz091] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz091.txt +centroid = (0.61504181109803779, -1.3551015565164293) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz091.txt +description = Lenoir, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz091.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz091.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz091.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz091.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz091.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz091.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz091.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz091.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz091.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz091.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz091.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz091.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz091.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz091.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz091.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('kiso', 0.0016791927485644868) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz091.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz091.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz091.txt + +[ncz092] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz092.txt +centroid = (0.61125270129195808, -1.3501081695264736) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz092.txt +description = Jones, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz092.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz092.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz092.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz092.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz092.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz092.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz092.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz092.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz092.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz092.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz092.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz092.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz092.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz092.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz092.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('kewn', 0.0044753888557332172) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz092.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz092.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz092.txt + +[ncz093] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz093.txt +centroid = (0.61306784371403211, -1.3455947480808164) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz093.txt +description = Craven, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz093.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz093.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz093.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz093.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz093.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz093.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz093.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz093.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz093.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz093.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz093.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz093.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz093.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz093.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz093.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('kewn', 0.0012461382709533573) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz093.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz093.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz093.txt + +[ncz094] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz094.txt +centroid = (0.61332091645557141, -1.3395175116253719) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz094.txt +description = Pamlico, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz094.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz094.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz094.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz094.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz094.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz094.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz094.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz094.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz094.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz094.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz094.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz094.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz094.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz094.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz094.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('knkt', 0.0046414261889430406) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz094.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz094.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz094.txt + +[ncz095] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz095.txt +centroid = (0.6079453023594289, -1.3381561548088163) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz095.txt +description = Carteret, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz095.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz095.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz095.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz095.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz095.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz095.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz095.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz095.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz095.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz095.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz095.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz095.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz095.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz095.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz095.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('kmrh', 0.0017594769812552249) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz095.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz095.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz095.txt + +[ncz096] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz096.txt +centroid = (0.60413350327307325, -1.371186510902809) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz096.txt +description = Bladen, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz096.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz096.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz096.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz096.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz096.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz096.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz096.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz096.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz096.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz096.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz096.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz096.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz096.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz096.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz096.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('keyf', 0.00038201974749988061) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz096.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz096.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz096.txt + +[ncz098] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz098.txt +centroid = (0.60628200358227824, -1.3514817436477933) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz098.txt +description = Onslow, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz098.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz098.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz098.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz098.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz098.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz098.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz098.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz098.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz098.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz098.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz098.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz098.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz098.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz098.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz098.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('knca', 0.00069098741948102902) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz098.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz098.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz098.txt + +[ncz099] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz099.txt +centroid = (0.59804579484211706, -1.37278872315614) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz099.txt +description = Columbus, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz099.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz099.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz099.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz099.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz099.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz099.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz099.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz099.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz099.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz099.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz099.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz099.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz099.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz099.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz099.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('kcpc', 0.00087467801452118443) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz099.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz099.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz099.txt + +[ncz102] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz102.txt +centroid = (0.63530159305518796, -1.3237275178825791) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz102.txt +description = Eastern Currituck, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz102.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz102.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz102.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz102.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz102.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz102.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz102.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz102.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz102.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz102.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz102.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz102.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz102.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz102.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz102.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('konx', 0.0024179327648291607) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz102.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz102.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz102.txt + +[ncz103] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz103.txt +centroid = (0.62411926853766031, -1.319837178979884) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz103.txt +description = Eastern Dare, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz103.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz103.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz103.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz103.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz103.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz103.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz103.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz103.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz103.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz103.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz103.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz103.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz103.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz103.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz103.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('kmqi', 0.00296315436918133) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz103.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz103.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz103.txt + +[ncz104] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz104.txt +centroid = (0.61311322227458398, -1.3249387763834632) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz104.txt +description = Eastern Hyde, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz104.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz104.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz104.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz104.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz104.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz104.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz104.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz104.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz104.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz104.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz104.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz104.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz104.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz104.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz104.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('khse', 0.0046093958550499151) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz104.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz104.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz104.txt + +[ncz105] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz105.txt +centroid = (0.60271105993269791, -1.3599745157879974) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz105.txt +description = Inland Pender County, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz105.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz105.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz105.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz105.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz105.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz105.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz105.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz105.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz105.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz105.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz105.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz105.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz105.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz105.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz105.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('kilm', 0.004654551247480424) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz105.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz105.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz105.txt + +[ncz106] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz106.txt +centroid = (0.60006863144517841, -1.3551870776497772) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz106.txt +description = Coastal Pender County, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz106.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz106.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz106.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz106.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz106.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz106.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz106.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz106.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz106.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz106.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz106.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz106.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz106.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz106.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz106.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('kilm', 0.0041666827318494332) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz106.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz106.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz106.txt + +[ncz107] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz107.txt +centroid = (0.59832853818094012, -1.359581816706299) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz107.txt +description = Inland New Hanover County, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz107.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz107.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz107.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz107.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz107.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz107.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz107.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz107.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz107.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz107.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz107.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz107.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz107.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz107.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz107.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('kilm', 0.00026352424033406385) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz107.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz107.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz107.txt + +[ncz108] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz108.txt +centroid = (0.59580653741180822, -1.358934299553809) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz108.txt +description = Coastal New Hanover County, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz108.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz108.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz108.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz108.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz108.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz108.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz108.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz108.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz108.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz108.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz108.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz108.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz108.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz108.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz108.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('kilm', 0.0023279960373535839) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz108.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz108.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz108.txt + +[ncz109] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz109.txt +centroid = (0.595272466660698, -1.3657061770515468) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz109.txt +description = Inland Brunswick County, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz109.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz109.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz109.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz109.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz109.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz109.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz109.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz109.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz109.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz109.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz109.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz109.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz109.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz109.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz109.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('ksut', 0.0039951253466159187) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz109.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz109.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz109.txt + +[ncz110] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz110.txt +centroid = (0.59258989560038267, -1.3608541617310026) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz110.txt +description = Coastal Brunswick County, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz110.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz110.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz110.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz110.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz110.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz110.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz110.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz110.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz110.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz110.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz110.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz110.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz110.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz110.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz110.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('ksut', 0.001555128413093583) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz110.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz110.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz110.txt + +[ncz501] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz501.txt +centroid = (0.6288438748228089, -1.4249007639621867) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz501.txt +description = Mountains of Caldwell County, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz501.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz501.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz501.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz501.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz501.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz501.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz501.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz501.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz501.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz501.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz501.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz501.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz501.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz501.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz501.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('ktnb', 0.002968150140656572) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz501.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz501.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz501.txt + +[ncz502] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz502.txt +centroid = (0.62659414541698832, -1.4221501250610435) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz502.txt +description = Greater Caldwell County, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz502.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz502.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz502.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz502.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz502.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz502.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz502.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz502.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz502.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz502.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz502.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz502.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz502.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz502.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz502.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('khky', 0.0029935279441054754) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz502.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz502.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz502.txt + +[ncz503] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz503.txt +centroid = (0.62637423393123692, -1.4287614322675979) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz503.txt +description = Mountains of Burke County, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz503.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz503.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz503.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz503.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz503.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz503.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz503.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz503.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz503.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz503.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz503.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz503.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz503.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz503.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz503.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('ktnb', 0.0062039749069296764) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz503.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz503.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz503.txt + +[ncz504] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz504.txt +centroid = (0.62334085169127074, -1.4253266242996732) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz504.txt +description = Greater Burke County, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz504.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz504.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz504.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz504.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz504.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz504.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz504.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz504.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz504.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz504.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz504.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz504.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz504.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz504.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz504.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('khky', 0.0040404010290769708) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz504.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz504.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz504.txt + +[ncz505] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz505.txt +centroid = (0.62322565996063917, -1.4330095636669522) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz505.txt +description = Mountains of McDowell County, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz505.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz505.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz505.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz505.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz505.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz505.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz505.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz505.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz505.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz505.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz505.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz505.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz505.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz505.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz505.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('kfqd', 0.005450829220700954) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz505.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz505.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz505.txt + +[ncz506] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz506.txt +centroid = (0.62190793637538344, -1.4302240181807695) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz506.txt +description = Eastern McDowell County, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz506.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz506.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz506.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz506.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz506.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz506.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz506.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz506.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz506.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz506.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz506.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz506.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz506.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz506.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz506.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('kfqd', 0.0035701682596792571) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz506.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz506.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz506.txt + +[ncz507] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz507.txt +centroid = (0.61898101921978899, -1.4345384720916992) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz507.txt +description = Mountains of Rutherford County, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz507.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz507.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz507.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz507.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz507.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz507.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz507.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz507.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz507.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz507.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz507.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz507.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz507.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz507.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz507.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('kfqd', 0.0037237547885020971) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz507.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz507.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz507.txt + +[ncz508] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz508.txt +centroid = (0.61776277940189694, -1.4292361618241405) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz508.txt +description = Greater Rutherford County, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz508.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz508.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz508.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz508.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz508.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz508.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz508.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz508.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz508.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz508.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz508.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz508.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz508.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz508.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz508.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('kfqd', 0.00087111911549812122) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz508.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz508.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz508.txt + +[ncz509] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz509.txt +centroid = (0.61584989854171124, -1.4362838013436938) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz509.txt +description = Mountains of Polk County, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz509.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz509.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz509.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz509.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz509.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz509.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz509.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz509.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz509.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz509.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz509.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz509.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz509.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz509.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz509.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('kavl', 0.0042837572315303643) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz509.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz509.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz509.txt + +[ncz510] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nc/ncz510.txt +centroid = (0.61571027220155161, -1.4335366531010545) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nc/ncz510.txt +description = Eastern Polk County, NC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nc/ncz510.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nc/ncz510.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nc/ncz510.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nc/ncz510.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nc/ncz510.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nc/ncz510.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nc/ncz510.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nc/ncz510.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nc/ncz510.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nc/ncz510.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nc/ncz510.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nc/ncz510.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nc/ncz510.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nc/ncz510.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nc/ncz510.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nc.txt +station = ('kfqd', 0.003882669686119894) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nc/ncz510.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nc/ncz510.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nc/ncz510.txt + +[ndz001] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nd/ndz001.txt +centroid = (0.85198072903178002, -1.806194118999128) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nd/ndz001.txt +description = Divide, ND +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nd/ndz001.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nd/ndz001.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nd/ndz001.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nd/ndz001.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nd/ndz001.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nd/ndz001.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nd/ndz001.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nd/ndz001.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nd/ndz001.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nd/ndz001.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nd/ndz001.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nd/ndz001.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nd/ndz001.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nd/ndz001.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nd/ndz001.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nd.txt +station = ('kd50', 0.0029496032786054407) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nd/ndz001.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nd/ndz001.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nd/ndz001.txt + +[ndz002] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nd/ndz002.txt +centroid = (0.85156185001130136, -1.7892818785473026) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nd/ndz002.txt +description = Burke, ND +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nd/ndz002.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nd/ndz002.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nd/ndz002.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nd/ndz002.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nd/ndz002.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nd/ndz002.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nd/ndz002.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nd/ndz002.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nd/ndz002.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nd/ndz002.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nd/ndz002.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nd/ndz002.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nd/ndz002.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nd/ndz002.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nd/ndz002.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nd.txt +station = ('kd60', 0.0083981060999774645) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nd/ndz002.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nd/ndz002.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nd/ndz002.txt + +[ndz003] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nd/ndz003.txt +centroid = (0.85031044893762142, -1.7742685563216476) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nd/ndz003.txt +description = Renville, ND +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nd/ndz003.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nd/ndz003.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nd/ndz003.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nd/ndz003.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nd/ndz003.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nd/ndz003.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nd/ndz003.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nd/ndz003.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nd/ndz003.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nd/ndz003.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nd/ndz003.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nd/ndz003.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nd/ndz003.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nd/ndz003.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nd/ndz003.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nd.txt +station = ('kmib', 0.0063672888990060818) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nd/ndz003.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nd/ndz003.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nd/ndz003.txt + +[ndz004] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nd/ndz004.txt +centroid = (0.85158279396232528, -1.7598765713097022) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nd/ndz004.txt +description = Bottineau, ND +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nd/ndz004.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nd/ndz004.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nd/ndz004.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nd/ndz004.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nd/ndz004.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nd/ndz004.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nd/ndz004.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nd/ndz004.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nd/ndz004.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nd/ndz004.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nd/ndz004.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nd/ndz004.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nd/ndz004.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nd/ndz004.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nd/ndz004.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nd.txt +station = ('kmib', 0.0088582273313779457) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nd/ndz004.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nd/ndz004.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nd/ndz004.txt + +[ndz005] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nd/ndz005.txt +centroid = (0.85123896409968236, -1.7425559238129105) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nd/ndz005.txt +description = Rolette, ND +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nd/ndz005.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nd/ndz005.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nd/ndz005.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nd/ndz005.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nd/ndz005.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nd/ndz005.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nd/ndz005.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nd/ndz005.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nd/ndz005.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nd/ndz005.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nd/ndz005.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nd/ndz005.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nd/ndz005.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nd/ndz005.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nd/ndz005.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nd.txt +station = ('k06d', 0.003198307596846374) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nd/ndz005.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nd/ndz005.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nd/ndz005.txt + +[ndz006] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nd/ndz006.txt +centroid = (0.84972401830895128, -1.7321677241050404) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nd/ndz006.txt +description = Towner, ND +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nd/ndz006.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nd/ndz006.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nd/ndz006.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nd/ndz006.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nd/ndz006.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nd/ndz006.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nd/ndz006.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nd/ndz006.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nd/ndz006.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nd/ndz006.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nd/ndz006.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nd/ndz006.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nd/ndz006.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nd/ndz006.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nd/ndz006.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nd.txt +station = ('k9d7', 0.0035900768720179541) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nd/ndz006.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nd/ndz006.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nd/ndz006.txt + +[ndz007] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nd/ndz007.txt +centroid = (0.85123547344117834, -1.7185384479762167) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nd/ndz007.txt +description = Cavalier, ND +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nd/ndz007.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nd/ndz007.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nd/ndz007.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nd/ndz007.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nd/ndz007.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nd/ndz007.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nd/ndz007.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nd/ndz007.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nd/ndz007.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nd/ndz007.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nd/ndz007.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nd/ndz007.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nd/ndz007.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nd/ndz007.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nd/ndz007.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nd.txt +station = ('kd55', 0.00088668524020316607) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nd/ndz007.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nd/ndz007.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nd/ndz007.txt + +[ndz008] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nd/ndz008.txt +centroid = (0.85114820697857874, -1.7025983559177522) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nd/ndz008.txt +description = Pembina, ND +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nd/ndz008.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nd/ndz008.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nd/ndz008.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nd/ndz008.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nd/ndz008.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nd/ndz008.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nd/ndz008.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nd/ndz008.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nd/ndz008.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nd/ndz008.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nd/ndz008.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nd/ndz008.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nd/ndz008.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nd/ndz008.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nd/ndz008.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nd.txt +station = ('k2c8', 0.00096638910887180448) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nd/ndz008.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nd/ndz008.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nd/ndz008.txt + +[ndz009] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nd/ndz009.txt +centroid = (0.8437567375963827, -1.8060702006222362) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nd/ndz009.txt +description = Williams, ND +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nd/ndz009.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nd/ndz009.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nd/ndz009.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nd/ndz009.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nd/ndz009.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nd/ndz009.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nd/ndz009.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nd/ndz009.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nd/ndz009.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nd/ndz009.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nd/ndz009.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nd/ndz009.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nd/ndz009.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nd/ndz009.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nd/ndz009.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nd.txt +station = ('kisn', 0.0034243495636277579) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nd/ndz009.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nd/ndz009.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nd/ndz009.txt + +[ndz010] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nd/ndz010.txt +centroid = (0.84127138874154284, -1.786442227854308) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nd/ndz010.txt +description = Mountrail, ND +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nd/ndz010.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nd/ndz010.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nd/ndz010.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nd/ndz010.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nd/ndz010.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nd/ndz010.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nd/ndz010.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nd/ndz010.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nd/ndz010.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nd/ndz010.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nd/ndz010.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nd/ndz010.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nd/ndz010.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nd/ndz010.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nd/ndz010.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nd.txt +station = ('k08d', 0.0018347209959801364) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nd/ndz010.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nd/ndz010.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nd/ndz010.txt + +[ndz011] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nd/ndz011.txt +centroid = (0.84162918123820163, -1.7722387384015781) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nd/ndz011.txt +description = Ward, ND +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nd/ndz011.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nd/ndz011.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nd/ndz011.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nd/ndz011.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nd/ndz011.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nd/ndz011.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nd/ndz011.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nd/ndz011.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nd/ndz011.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nd/ndz011.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nd/ndz011.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nd/ndz011.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nd/ndz011.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nd/ndz011.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nd/ndz011.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nd.txt +station = ('kmot', 0.0031045723607412727) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nd/ndz011.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nd/ndz011.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nd/ndz011.txt + +[ndz012] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nd/ndz012.txt +centroid = (0.84185258338245683, -1.7564347820247697) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nd/ndz012.txt +description = McHenry, ND +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nd/ndz012.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nd/ndz012.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nd/ndz012.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nd/ndz012.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nd/ndz012.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nd/ndz012.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nd/ndz012.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nd/ndz012.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nd/ndz012.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nd/ndz012.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nd/ndz012.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nd/ndz012.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nd/ndz012.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nd/ndz012.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nd/ndz012.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nd.txt +station = ('krug', 0.0076058796053664491) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nd/ndz012.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nd/ndz012.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nd/ndz012.txt + +[ndz013] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nd/ndz013.txt +centroid = (0.84211438277025608, -1.7448370691452673) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nd/ndz013.txt +description = Pierce, ND +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nd/ndz013.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nd/ndz013.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nd/ndz013.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nd/ndz013.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nd/ndz013.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nd/ndz013.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nd/ndz013.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nd/ndz013.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nd/ndz013.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nd/ndz013.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nd/ndz013.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nd/ndz013.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nd/ndz013.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nd/ndz013.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nd/ndz013.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nd.txt +station = ('krug', 0.0025348736376177828) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nd/ndz013.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nd/ndz013.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nd/ndz013.txt + +[ndz014] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nd/ndz014.txt +centroid = (0.83896929945816223, -1.7342621192074335) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nd/ndz014.txt +description = Benson, ND +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nd/ndz014.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nd/ndz014.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nd/ndz014.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nd/ndz014.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nd/ndz014.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nd/ndz014.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nd/ndz014.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nd/ndz014.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nd/ndz014.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nd/ndz014.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nd/ndz014.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nd/ndz014.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nd/ndz014.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nd/ndz014.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nd/ndz014.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nd.txt +station = ('kdvl', 0.0053014886856245797) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nd/ndz014.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nd/ndz014.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nd/ndz014.txt + +[ndz015] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nd/ndz015.txt +centroid = (0.84245297664514285, -1.7229907828980542) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nd/ndz015.txt +description = Ramsey, ND +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nd/ndz015.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nd/ndz015.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nd/ndz015.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nd/ndz015.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nd/ndz015.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nd/ndz015.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nd/ndz015.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nd/ndz015.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nd/ndz015.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nd/ndz015.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nd/ndz015.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nd/ndz015.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nd/ndz015.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nd/ndz015.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nd/ndz015.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nd.txt +station = ('kdvl', 0.0035070229044688759) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nd/ndz015.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nd/ndz015.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nd/ndz015.txt + +[ndz016] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nd/ndz016.txt +centroid = (0.84418608859237321, -1.7016925300359671) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nd/ndz016.txt +description = Eastern Walsh County, ND +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nd/ndz016.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nd/ndz016.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nd/ndz016.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nd/ndz016.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nd/ndz016.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nd/ndz016.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nd/ndz016.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nd/ndz016.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nd/ndz016.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nd/ndz016.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nd/ndz016.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nd/ndz016.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nd/ndz016.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nd/ndz016.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nd/ndz016.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nd.txt +station = ('kgaf', 0.001624374945486167) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nd/ndz016.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nd/ndz016.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nd/ndz016.txt + +[ndz017] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nd/ndz017.txt +centroid = (0.83322367556059695, -1.8045884160872931) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nd/ndz017.txt +description = McKenzie, ND +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nd/ndz017.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nd/ndz017.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nd/ndz017.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nd/ndz017.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nd/ndz017.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nd/ndz017.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nd/ndz017.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nd/ndz017.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nd/ndz017.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nd/ndz017.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nd/ndz017.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nd/ndz017.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nd/ndz017.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nd/ndz017.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nd/ndz017.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nd.txt +station = ('kisn', 0.0082871911390943499) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nd/ndz017.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nd/ndz017.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nd/ndz017.txt + +[ndz018] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nd/ndz018.txt +centroid = (0.82653208320845062, -1.791025462470045) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nd/ndz018.txt +description = Dunn, ND +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nd/ndz018.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nd/ndz018.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nd/ndz018.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nd/ndz018.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nd/ndz018.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nd/ndz018.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nd/ndz018.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nd/ndz018.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nd/ndz018.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nd/ndz018.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nd/ndz018.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nd/ndz018.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nd/ndz018.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nd/ndz018.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nd/ndz018.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nd.txt +station = ('kdik', 0.0099553163525394669) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nd/ndz018.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nd/ndz018.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nd/ndz018.txt + +[ndz019] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nd/ndz019.txt +centroid = (0.82570130648450135, -1.7772949572446057) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nd/ndz019.txt +description = Mercer, ND +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nd/ndz019.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nd/ndz019.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nd/ndz019.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nd/ndz019.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nd/ndz019.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nd/ndz019.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nd/ndz019.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nd/ndz019.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nd/ndz019.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nd/ndz019.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nd/ndz019.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nd/ndz019.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nd/ndz019.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nd/ndz019.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nd/ndz019.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nd.txt +station = ('khze', 0.0029858058832364603) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nd/ndz019.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nd/ndz019.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nd/ndz019.txt + +[ndz020] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nd/ndz020.txt +centroid = (0.82231711306488431, -1.7687218999588095) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nd/ndz020.txt +description = Oliver, ND +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nd/ndz020.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nd/ndz020.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nd/ndz020.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nd/ndz020.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nd/ndz020.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nd/ndz020.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nd/ndz020.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nd/ndz020.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nd/ndz020.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nd/ndz020.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nd/ndz020.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nd/ndz020.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nd/ndz020.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nd/ndz020.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nd/ndz020.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nd.txt +station = ('khze', 0.0041751730845735659) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nd/ndz020.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nd/ndz020.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nd/ndz020.txt + +[ndz021] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nd/ndz021.txt +centroid = (0.83089889699694042, -1.7683990140471906) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nd/ndz021.txt +description = McLean, ND +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nd/ndz021.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nd/ndz021.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nd/ndz021.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nd/ndz021.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nd/ndz021.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nd/ndz021.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nd/ndz021.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nd/ndz021.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nd/ndz021.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nd/ndz021.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nd/ndz021.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nd/ndz021.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nd/ndz021.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nd/ndz021.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nd/ndz021.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nd.txt +station = ('kn60', 0.0015113944365119062) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nd/ndz021.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nd/ndz021.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nd/ndz021.txt + +[ndz022] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nd/ndz022.txt +centroid = (0.83034737295331029, -1.7513611098892221) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nd/ndz022.txt +description = Sheridan, ND +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nd/ndz022.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nd/ndz022.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nd/ndz022.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nd/ndz022.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nd/ndz022.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nd/ndz022.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nd/ndz022.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nd/ndz022.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nd/ndz022.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nd/ndz022.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nd/ndz022.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nd/ndz022.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nd/ndz022.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nd/ndz022.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nd/ndz022.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nd.txt +station = ('k5h4', 0.006150611429103771) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nd/ndz022.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nd/ndz022.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nd/ndz022.txt + +[ndz023] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nd/ndz023.txt +centroid = (0.83056030312205364, -1.7394125858300689) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nd/ndz023.txt +description = Wells, ND +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nd/ndz023.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nd/ndz023.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nd/ndz023.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nd/ndz023.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nd/ndz023.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nd/ndz023.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nd/ndz023.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nd/ndz023.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nd/ndz023.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nd/ndz023.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nd/ndz023.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nd/ndz023.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nd/ndz023.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nd/ndz023.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nd/ndz023.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nd.txt +station = ('k5h4', 0.0047674377384133333) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nd/ndz023.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nd/ndz023.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nd/ndz023.txt + +[ndz024] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nd/ndz024.txt +centroid = (0.83282923114964613, -1.726158555490424) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nd/ndz024.txt +description = Eddy, ND +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nd/ndz024.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nd/ndz024.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nd/ndz024.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nd/ndz024.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nd/ndz024.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nd/ndz024.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nd/ndz024.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nd/ndz024.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nd/ndz024.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nd/ndz024.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nd/ndz024.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nd/ndz024.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nd/ndz024.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nd/ndz024.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nd/ndz024.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nd.txt +station = ('k46d', 0.0055027104518664887) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nd/ndz024.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nd/ndz024.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nd/ndz024.txt + +[ndz025] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nd/ndz025.txt +centroid = (0.82828264844820088, -1.7258356695788049) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nd/ndz025.txt +description = Foster, ND +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nd/ndz025.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nd/ndz025.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nd/ndz025.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nd/ndz025.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nd/ndz025.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nd/ndz025.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nd/ndz025.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nd/ndz025.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nd/ndz025.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nd/ndz025.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nd/ndz025.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nd/ndz025.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nd/ndz025.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nd/ndz025.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nd/ndz025.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nd.txt +station = ('k46d', 0.0031679552883129925) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nd/ndz025.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nd/ndz025.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nd/ndz025.txt + +[ndz026] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nd/ndz026.txt +centroid = (0.83638970282371461, -1.7137754444475239) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nd/ndz026.txt +description = Nelson, ND +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nd/ndz026.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nd/ndz026.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nd/ndz026.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nd/ndz026.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nd/ndz026.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nd/ndz026.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nd/ndz026.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nd/ndz026.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nd/ndz026.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nd/ndz026.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nd/ndz026.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nd/ndz026.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nd/ndz026.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nd/ndz026.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nd/ndz026.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nd.txt +station = ('ks32', 0.0087649229394855047) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nd/ndz026.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nd/ndz026.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nd/ndz026.txt + +[ndz027] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nd/ndz027.txt +centroid = (0.83639493881147065, -1.7009455291161137) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nd/ndz027.txt +description = Grand Forks, ND +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nd/ndz027.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nd/ndz027.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nd/ndz027.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nd/ndz027.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nd/ndz027.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nd/ndz027.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nd/ndz027.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nd/ndz027.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nd/ndz027.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nd/ndz027.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nd/ndz027.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nd/ndz027.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nd/ndz027.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nd/ndz027.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nd/ndz027.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nd.txt +station = ('krdr', 0.0010269138240500929) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nd/ndz027.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nd/ndz027.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nd/ndz027.txt + +[ndz028] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nd/ndz028.txt +centroid = (0.828284393777453, -1.7145608426109216) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nd/ndz028.txt +description = Griggs, ND +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nd/ndz028.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nd/ndz028.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nd/ndz028.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nd/ndz028.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nd/ndz028.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nd/ndz028.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nd/ndz028.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nd/ndz028.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nd/ndz028.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nd/ndz028.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nd/ndz028.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nd/ndz028.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nd/ndz028.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nd/ndz028.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nd/ndz028.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nd.txt +station = ('ks32', 0.0016619574851379092) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nd/ndz028.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nd/ndz028.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nd/ndz028.txt + +[ndz029] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nd/ndz029.txt +centroid = (0.8282669404849331, -1.7056177755237025) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nd/ndz029.txt +description = Steele, ND +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nd/ndz029.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nd/ndz029.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nd/ndz029.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nd/ndz029.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nd/ndz029.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nd/ndz029.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nd/ndz029.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nd/ndz029.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nd/ndz029.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nd/ndz029.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nd/ndz029.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nd/ndz029.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nd/ndz029.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nd/ndz029.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nd/ndz029.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nd.txt +station = ('ks32', 0.0045368765957044862) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nd/ndz029.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nd/ndz029.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nd/ndz029.txt + +[ndz030] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nd/ndz030.txt +centroid = (0.82823203389989308, -1.6957880811764705) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nd/ndz030.txt +description = Traill, ND +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nd/ndz030.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nd/ndz030.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nd/ndz030.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nd/ndz030.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nd/ndz030.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nd/ndz030.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nd/ndz030.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nd/ndz030.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nd/ndz030.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nd/ndz030.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nd/ndz030.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nd/ndz030.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nd/ndz030.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nd/ndz030.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nd/ndz030.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nd.txt +station = ('kgfk', 0.0086571415632902132) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nd/ndz030.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nd/ndz030.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nd/ndz030.txt + +[ndz031] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nd/ndz031.txt +centroid = (0.81926104154464219, -1.8124668323307953) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nd/ndz031.txt +description = Golden Valley, ND +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nd/ndz031.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nd/ndz031.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nd/ndz031.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nd/ndz031.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nd/ndz031.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nd/ndz031.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nd/ndz031.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nd/ndz031.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nd/ndz031.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nd/ndz031.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nd/ndz031.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nd/ndz031.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nd/ndz031.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nd/ndz031.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nd/ndz031.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nd.txt +station = ('k20u', 0.0016327610813304822) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nd/ndz031.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nd/ndz031.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nd/ndz031.txt + +[ndz032] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nd/ndz032.txt +centroid = (0.82071490081155352, -1.8042585488586662) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nd/ndz032.txt +description = Billings, ND +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nd/ndz032.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nd/ndz032.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nd/ndz032.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nd/ndz032.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nd/ndz032.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nd/ndz032.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nd/ndz032.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nd/ndz032.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nd/ndz032.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nd/ndz032.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nd/ndz032.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nd/ndz032.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nd/ndz032.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nd/ndz032.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nd/ndz032.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nd.txt +station = ('kdik', 0.0079021573776746935) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nd/ndz032.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nd/ndz032.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nd/ndz032.txt + +[ndz033] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nd/ndz033.txt +centroid = (0.81700084016330954, -1.791667743634779) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nd/ndz033.txt +description = Stark, ND +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nd/ndz033.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nd/ndz033.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nd/ndz033.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nd/ndz033.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nd/ndz033.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nd/ndz033.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nd/ndz033.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nd/ndz033.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nd/ndz033.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nd/ndz033.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nd/ndz033.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nd/ndz033.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nd/ndz033.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nd/ndz033.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nd/ndz033.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nd.txt +station = ('kdik', 0.0017422672146783997) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nd/ndz033.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nd/ndz033.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nd/ndz033.txt + +[ndz034] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nd/ndz034.txt +centroid = (0.81534975869092297, -1.7676886650416288) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nd/ndz034.txt +description = Morton, ND +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nd/ndz034.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nd/ndz034.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nd/ndz034.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nd/ndz034.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nd/ndz034.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nd/ndz034.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nd/ndz034.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nd/ndz034.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nd/ndz034.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nd/ndz034.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nd/ndz034.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nd/ndz034.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nd/ndz034.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nd/ndz034.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nd/ndz034.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nd.txt +station = ('kbis', 0.0064587760276704487) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nd/ndz034.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nd/ndz034.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nd/ndz034.txt + +[ndz035] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nd/ndz035.txt +centroid = (0.81991030402638421, -1.7535113555276789) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nd/ndz035.txt +description = Burleigh, ND +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nd/ndz035.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nd/ndz035.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nd/ndz035.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nd/ndz035.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nd/ndz035.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nd/ndz035.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nd/ndz035.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nd/ndz035.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nd/ndz035.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nd/ndz035.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nd/ndz035.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nd/ndz035.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nd/ndz035.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nd/ndz035.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nd/ndz035.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nd.txt +station = ('kbis', 0.004767183374700174) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nd/ndz035.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nd/ndz035.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nd/ndz035.txt + +[ndz036] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nd/ndz036.txt +centroid = (0.8199591732454401, -1.741491272969194) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nd/ndz036.txt +description = Kidder, ND +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nd/ndz036.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nd/ndz036.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nd/ndz036.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nd/ndz036.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nd/ndz036.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nd/ndz036.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nd/ndz036.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nd/ndz036.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nd/ndz036.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nd/ndz036.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nd/ndz036.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nd/ndz036.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nd/ndz036.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nd/ndz036.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nd/ndz036.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nd.txt +station = ('k46d', 0.011095135792660409) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nd/ndz036.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nd/ndz036.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nd/ndz036.txt + +[ndz037] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nd/ndz037.txt +centroid = (0.81994171995292009, -1.7271568838225646) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nd/ndz037.txt +description = Stutsman, ND +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nd/ndz037.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nd/ndz037.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nd/ndz037.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nd/ndz037.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nd/ndz037.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nd/ndz037.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nd/ndz037.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nd/ndz037.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nd/ndz037.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nd/ndz037.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nd/ndz037.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nd/ndz037.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nd/ndz037.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nd/ndz037.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nd/ndz037.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nd.txt +station = ('kjms', 0.0035710242131033192) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nd/ndz037.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nd/ndz037.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nd/ndz037.txt + +[ndz038] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nd/ndz038.txt +centroid = (0.81918948304531058, -1.711672322698871) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nd/ndz038.txt +description = Barnes, ND +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nd/ndz038.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nd/ndz038.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nd/ndz038.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nd/ndz038.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nd/ndz038.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nd/ndz038.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nd/ndz038.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nd/ndz038.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nd/ndz038.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nd/ndz038.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nd/ndz038.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nd/ndz038.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nd/ndz038.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nd/ndz038.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nd/ndz038.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nd.txt +station = ('kbac', 0.00064404390446479198) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nd/ndz038.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nd/ndz038.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nd/ndz038.txt + +[ndz039] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nd/ndz039.txt +centroid = (0.81913537783849866, -1.6972995363086976) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nd/ndz039.txt +description = Cass, ND +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nd/ndz039.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nd/ndz039.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nd/ndz039.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nd/ndz039.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nd/ndz039.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nd/ndz039.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nd/ndz039.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nd/ndz039.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nd/ndz039.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nd/ndz039.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nd/ndz039.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nd/ndz039.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nd/ndz039.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nd/ndz039.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nd/ndz039.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nd.txt +station = ('kfar', 0.005141818459488399) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nd/ndz039.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nd/ndz039.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nd/ndz039.txt + +[ndz040] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nd/ndz040.txt +centroid = (0.81065656833231026, -1.8057158987840813) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nd/ndz040.txt +description = Slope, ND +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nd/ndz040.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nd/ndz040.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nd/ndz040.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nd/ndz040.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nd/ndz040.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nd/ndz040.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nd/ndz040.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nd/ndz040.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nd/ndz040.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nd/ndz040.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nd/ndz040.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nd/ndz040.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nd/ndz040.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nd/ndz040.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nd/ndz040.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nd.txt +station = ('kdik', 0.010024094484883627) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nd/ndz040.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nd/ndz040.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nd/ndz040.txt + +[ndz041] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nd/ndz041.txt +centroid = (0.81040175026151906, -1.7882713329103981) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nd/ndz041.txt +description = Hettinger, ND +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nd/ndz041.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nd/ndz041.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nd/ndz041.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nd/ndz041.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nd/ndz041.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nd/ndz041.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nd/ndz041.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nd/ndz041.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nd/ndz041.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nd/ndz041.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nd/ndz041.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nd/ndz041.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nd/ndz041.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nd/ndz041.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nd/ndz041.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nd.txt +station = ('kdik', 0.0075955776493938721) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nd/ndz041.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nd/ndz041.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nd/ndz041.txt + +[ndz042] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nd/ndz042.txt +centroid = (0.80910497062728726, -1.7739474157392807) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nd/ndz042.txt +description = Grant, ND +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nd/ndz042.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nd/ndz042.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nd/ndz042.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nd/ndz042.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nd/ndz042.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nd/ndz042.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nd/ndz042.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nd/ndz042.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nd/ndz042.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nd/ndz042.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nd/ndz042.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nd/ndz042.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nd/ndz042.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nd/ndz042.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nd/ndz042.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nd.txt +station = ('kbis', 0.012999297496091029) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nd/ndz042.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nd/ndz042.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nd/ndz042.txt + +[ndz043] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nd/ndz043.txt +centroid = (0.80481669665513722, -1.806777058969294) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nd/ndz043.txt +description = Bowman, ND +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nd/ndz043.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nd/ndz043.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nd/ndz043.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nd/ndz043.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nd/ndz043.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nd/ndz043.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nd/ndz043.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nd/ndz043.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nd/ndz043.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nd/ndz043.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nd/ndz043.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nd/ndz043.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nd/ndz043.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nd/ndz043.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nd/ndz043.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nd.txt +station = ('k2wx', 0.0089536439337948668) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nd/ndz043.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nd/ndz043.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nd/ndz043.txt + +[ndz044] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nd/ndz044.txt +centroid = (0.80454267996257411, -1.789459902131006) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nd/ndz044.txt +description = Adams, ND +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nd/ndz044.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nd/ndz044.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nd/ndz044.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nd/ndz044.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nd/ndz044.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nd/ndz044.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nd/ndz044.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nd/ndz044.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nd/ndz044.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nd/ndz044.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nd/ndz044.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nd/ndz044.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nd/ndz044.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nd/ndz044.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nd/ndz044.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nd.txt +station = ('khei', 0.0020313629272981828) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nd/ndz044.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nd/ndz044.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nd/ndz044.txt + +[ndz045] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nd/ndz045.txt +centroid = (0.80481669665513722, -1.7634894028613304) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nd/ndz045.txt +description = Sioux, ND +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nd/ndz045.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nd/ndz045.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nd/ndz045.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nd/ndz045.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nd/ndz045.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nd/ndz045.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nd/ndz045.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nd/ndz045.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nd/ndz045.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nd/ndz045.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nd/ndz045.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nd/ndz045.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nd/ndz045.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nd/ndz045.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nd/ndz045.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nd.txt +station = ('ky19', 0.0115749519076545) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nd/ndz045.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nd/ndz045.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nd/ndz045.txt + +[ndz046] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nd/ndz046.txt +centroid = (0.80782738961482747, -1.749497098248092) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nd/ndz046.txt +description = Emmons, ND +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nd/ndz046.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nd/ndz046.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nd/ndz046.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nd/ndz046.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nd/ndz046.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nd/ndz046.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nd/ndz046.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nd/ndz046.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nd/ndz046.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nd/ndz046.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nd/ndz046.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nd/ndz046.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nd/ndz046.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nd/ndz046.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nd/ndz046.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nd.txt +station = ('k7l2', 0.001129459517882903) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nd/ndz046.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nd/ndz046.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nd/ndz046.txt + +[ndz047] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nd/ndz047.txt +centroid = (0.8108345919160137, -1.7362099066526593) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nd/ndz047.txt +description = Logan, ND +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nd/ndz047.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nd/ndz047.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nd/ndz047.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nd/ndz047.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nd/ndz047.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nd/ndz047.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nd/ndz047.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nd/ndz047.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nd/ndz047.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nd/ndz047.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nd/ndz047.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nd/ndz047.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nd/ndz047.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nd/ndz047.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nd/ndz047.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nd.txt +station = ('kjms', 0.012775344357365119) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nd/ndz047.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nd/ndz047.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nd/ndz047.txt + +[ndz048] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nd/ndz048.txt +centroid = (0.81082586526975364, -1.7197689050988725) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nd/ndz048.txt +description = La Moure, ND +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nd/ndz048.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nd/ndz048.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nd/ndz048.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nd/ndz048.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nd/ndz048.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nd/ndz048.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nd/ndz048.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nd/ndz048.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nd/ndz048.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nd/ndz048.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nd/ndz048.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nd/ndz048.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nd/ndz048.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nd/ndz048.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nd/ndz048.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nd.txt +station = ('k2d5', 0.007395471213966498) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nd/ndz048.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nd/ndz048.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nd/ndz048.txt + +[ndz049] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nd/ndz049.txt +centroid = (0.81081190263573777, -1.7044449142663625) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nd/ndz049.txt +description = Ransom, ND +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nd/ndz049.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nd/ndz049.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nd/ndz049.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nd/ndz049.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nd/ndz049.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nd/ndz049.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nd/ndz049.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nd/ndz049.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nd/ndz049.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nd/ndz049.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nd/ndz049.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nd/ndz049.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nd/ndz049.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nd/ndz049.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nd/ndz049.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nd.txt +station = ('kgwr', 0.0041484767749278067) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nd/ndz049.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nd/ndz049.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nd/ndz049.txt + +[ndz050] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nd/ndz050.txt +centroid = (0.80480447935037325, -1.7355763521341852) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nd/ndz050.txt +description = McIntosh, ND +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nd/ndz050.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nd/ndz050.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nd/ndz050.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nd/ndz050.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nd/ndz050.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nd/ndz050.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nd/ndz050.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nd/ndz050.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nd/ndz050.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nd/ndz050.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nd/ndz050.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nd/ndz050.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nd/ndz050.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nd/ndz050.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nd/ndz050.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nd.txt +station = ('k7l2', 0.0099058994316378809) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nd/ndz050.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nd/ndz050.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nd/ndz050.txt + +[ndz051] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nd/ndz051.txt +centroid = (0.80477480875308938, -1.7192295983600063) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nd/ndz051.txt +description = Dickey, ND +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nd/ndz051.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nd/ndz051.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nd/ndz051.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nd/ndz051.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nd/ndz051.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nd/ndz051.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nd/ndz051.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nd/ndz051.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nd/ndz051.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nd/ndz051.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nd/ndz051.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nd/ndz051.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nd/ndz051.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nd/ndz051.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nd/ndz051.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nd.txt +station = ('k2d5', 0.0052505670628733353) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nd/ndz051.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nd/ndz051.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nd/ndz051.txt + +[ndz052] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nd/ndz052.txt +centroid = (0.80473292085104142, -1.7039754206975759) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nd/ndz052.txt +description = Sargent, ND +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nd/ndz052.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nd/ndz052.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nd/ndz052.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nd/ndz052.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nd/ndz052.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nd/ndz052.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nd/ndz052.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nd/ndz052.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nd/ndz052.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nd/ndz052.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nd/ndz052.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nd/ndz052.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nd/ndz052.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nd/ndz052.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nd/ndz052.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nd.txt +station = ('kgwr', 0.0019401342762502001) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nd/ndz052.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nd/ndz052.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nd/ndz052.txt + +[ndz053] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nd/ndz053.txt +centroid = (0.80746959711816857, -1.6920670392112187) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nd/ndz053.txt +description = Richland, ND +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nd/ndz053.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nd/ndz053.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nd/ndz053.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nd/ndz053.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nd/ndz053.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nd/ndz053.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nd/ndz053.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nd/ndz053.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nd/ndz053.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nd/ndz053.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nd/ndz053.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nd/ndz053.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nd/ndz053.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nd/ndz053.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nd/ndz053.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nd.txt +station = ('kbwp', 0.004132048751329903) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nd/ndz053.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nd/ndz053.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nd/ndz053.txt + +[ndz054] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nd/ndz054.txt +centroid = (0.84424019379918513, -1.7118887435261183) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nd/ndz054.txt +description = Western Walsh County, ND +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nd/ndz054.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nd/ndz054.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nd/ndz054.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nd/ndz054.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nd/ndz054.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nd/ndz054.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nd/ndz054.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nd/ndz054.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nd/ndz054.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nd/ndz054.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nd/ndz054.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nd/ndz054.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nd/ndz054.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nd/ndz054.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nd/ndz054.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nd.txt +station = ('kd55', 0.007560423311025812) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nd/ndz054.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nd/ndz054.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nd/ndz054.txt + +[nez002] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez002.txt +centroid = (0.74559942046422167, -1.8000523053613597) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez002.txt +description = Dawes, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez002.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez002.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez002.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez002.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez002.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez002.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez002.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez002.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez002.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez002.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez002.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez002.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez002.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez002.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez002.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('kcdr', 0.0020344652864224722) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez002.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez002.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez002.txt + +[nez003] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez003.txt +centroid = (0.73687451953350191, -1.7991848767231187) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez003.txt +description = Box Butte, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez003.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez003.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez003.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez003.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez003.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez003.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez003.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez003.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez003.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez003.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez003.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez003.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez003.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez003.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez003.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('kaia', 0.0047387857579710355) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez003.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez003.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez003.txt + +[nez004] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez004.txt +centroid = (0.74184870790168589, -1.787374233674873) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez004.txt +description = Sheridan, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez004.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez004.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez004.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez004.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez004.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez004.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez004.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez004.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez004.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez004.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez004.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez004.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez004.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez004.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez004.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('kien', 0.0093272179833783185) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez004.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez004.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez004.txt + +[nez005] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez005.txt +centroid = (0.74277198707599068, -1.7541885432774527) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez005.txt +description = Eastern Cherry, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez005.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez005.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez005.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez005.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez005.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez005.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez005.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez005.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez005.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez005.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez005.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez005.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez005.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez005.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez005.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('kvtn', 0.0054198299405844802) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez005.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez005.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez005.txt + +[nez006] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez006.txt +centroid = (0.74837798463339655, -1.7403096850655939) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez006.txt +description = Keya Paha, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez006.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez006.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez006.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez006.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez006.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez006.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez006.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez006.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez006.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez006.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez006.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez006.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez006.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez006.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez006.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('kanw', 0.0063408111528869991) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez006.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez006.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez006.txt + +[nez007] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez007.txt +centroid = (0.74874101311781149, -1.7238006156709793) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez007.txt +description = Boyd, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez007.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez007.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez007.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez007.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez007.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez007.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez007.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez007.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez007.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez007.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez007.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez007.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez007.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez007.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez007.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('konl', 0.00763280854565003) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez007.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez007.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez007.txt + +[nez008] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez008.txt +centroid = (0.74054320162119402, -1.7440987948716735) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez008.txt +description = Brown, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez008.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez008.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez008.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez008.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez008.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez008.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez008.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez008.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez008.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez008.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez008.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez008.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez008.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez008.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez008.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('kanw', 0.0028257223980713924) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez008.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez008.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez008.txt + +[nez009] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez009.txt +centroid = (0.74039135797627054, -1.7357299411083609) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez009.txt +description = Rock, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez009.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez009.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez009.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez009.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez009.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez009.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez009.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez009.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez009.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez009.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez009.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez009.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez009.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez009.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez009.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('kanw', 0.007621194781620046) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez009.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez009.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez009.txt + +[nez010] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez010.txt +centroid = (0.74099175123895655, -1.7241025576315745) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez010.txt +description = Holt, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez010.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez010.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez010.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez010.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez010.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez010.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez010.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez010.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez010.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez010.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez010.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez010.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez010.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez010.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez010.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('konl', 0.0013076826097217565) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez010.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez010.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez010.txt + +[nez011] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez011.txt +centroid = (0.74415428784357029, -1.7085359660330373) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez011.txt +description = Knox, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez011.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez011.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez011.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez011.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez011.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez011.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez011.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez011.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez011.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez011.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez011.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez011.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez011.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez011.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez011.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('kykn', 0.0081418029363975776) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez011.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez011.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez011.txt + +[nez012] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez012.txt +centroid = (0.74349804404482045, -1.6973728401372814) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez012.txt +description = Cedar, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez012.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez012.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez012.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez012.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez012.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez012.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez012.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez012.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez012.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez012.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez012.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez012.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez012.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez012.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez012.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('kykn', 0.0057880117448762631) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez012.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez012.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez012.txt + +[nez013] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez013.txt +centroid = (0.7416462497084545, -1.6906603038341113) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez013.txt +description = Dixon, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez013.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez013.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez013.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez013.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez013.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez013.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez013.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez013.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez013.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez013.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez013.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez013.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez013.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez013.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez013.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('klcg', 0.0046284011024092164) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez013.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez013.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez013.txt + +[nez014] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez014.txt +centroid = (0.73986426854216825, -1.6853702108713162) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez014.txt +description = Dakota, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez014.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez014.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez014.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez014.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez014.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez014.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez014.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez014.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez014.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez014.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez014.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez014.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez014.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez014.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez014.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('ksux', 0.0023406551813254248) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez014.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez014.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez014.txt + +[nez015] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez015.txt +centroid = (0.73579939671427341, -1.6850124183746575) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez015.txt +description = Thurston, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez015.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez015.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez015.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez015.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez015.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez015.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez015.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez015.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez015.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez015.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez015.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez015.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez015.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez015.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez015.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('ksux', 0.0044441579140746508) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez015.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez015.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez015.txt + +[nez016] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez016.txt +centroid = (0.73612577328439643, -1.7115868015655231) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez016.txt +description = Antelope, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez016.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez016.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez016.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez016.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez016.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez016.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez016.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez016.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez016.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez016.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez016.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez016.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez016.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez016.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez016.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('kbvn', 0.007830301491881176) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez016.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez016.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez016.txt + +[nez017] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez017.txt +centroid = (0.73765293637989149, -1.7034640392267415) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez017.txt +description = Pierce, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez017.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez017.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez017.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez017.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez017.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez017.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez017.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez017.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez017.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez017.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez017.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez017.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez017.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez017.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez017.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('kofk', 0.0053658190704203249) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez017.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez017.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez017.txt + +[nez018] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez018.txt +centroid = (0.73668951463279064, -1.6950515522321288) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez018.txt +description = Wayne, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez018.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez018.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez018.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez018.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez018.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez018.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez018.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez018.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez018.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez018.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez018.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez018.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez018.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez018.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez018.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('klcg', 0.0018703060561598088) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez018.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez018.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez018.txt + +[nez019] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez019.txt +centroid = (0.73043076393513884, -1.8100460606582793) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez019.txt +description = Scotts Bluff, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez019.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez019.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez019.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez019.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez019.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez019.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez019.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez019.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez019.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez019.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez019.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez019.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez019.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez019.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez019.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('kbff', 0.0014316339491431264) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez019.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez019.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez019.txt + +[nez020] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez020.txt +centroid = (0.72511449103356418, -1.8100879485603272) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez020.txt +description = Banner, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez020.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez020.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez020.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez020.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez020.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez020.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez020.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez020.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez020.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez020.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez020.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez020.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez020.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez020.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez020.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('kbff', 0.0057786011305824081) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez020.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez020.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez020.txt + +[nez021] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez021.txt +centroid = (0.72808155076195458, -1.7978723891256188) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez021.txt +description = Morrill, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez021.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez021.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez021.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez021.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez021.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez021.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez021.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez021.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez021.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez021.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez021.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez021.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez021.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez021.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez021.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('kaia', 0.0064392168145147657) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez021.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez021.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez021.txt + +[nez022] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez022.txt +centroid = (0.72639556270452799, -1.7860896713454053) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez022.txt +description = Garden, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez022.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez022.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez022.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez022.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez022.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez022.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez022.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez022.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez022.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez022.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez022.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez022.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez022.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez022.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez022.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('kaia', 0.009642707468904721) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez022.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez022.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez022.txt + +[nez023] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez023.txt +centroid = (0.73155475597342323, -1.7757067076252908) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez023.txt +description = Grant, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez023.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez023.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez023.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez023.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez023.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez023.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez023.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez023.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez023.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez023.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez023.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez023.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez023.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez023.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez023.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('koga', 0.013885172517240066) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez023.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez023.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez023.txt + +[nez024] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez024.txt +centroid = (0.73157046393669123, -1.7651439749922211) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez024.txt +description = Hooker, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez024.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez024.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez024.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez024.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez024.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez024.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez024.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez024.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez024.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez024.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez024.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez024.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez024.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez024.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez024.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('ktif', 0.0073973503478212905) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez024.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez024.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez024.txt + +[nez025] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez025.txt +centroid = (0.73152857603464327, -1.7550297919769142) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez025.txt +description = Thomas, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez025.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez025.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez025.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez025.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez025.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez025.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez025.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez025.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez025.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez025.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez025.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez025.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez025.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez025.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez025.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('ktif', 0.00086242274784232317) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez025.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez025.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez025.txt + +[nez026] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez026.txt +centroid = (0.7315163587298793, -1.7449260809371188) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez026.txt +description = Blaine, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez026.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez026.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez026.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez026.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez026.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez026.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez026.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez026.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez026.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez026.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez026.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez026.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez026.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez026.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez026.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('kbbw', 0.0094915190058541526) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez026.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez026.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez026.txt + +[nez027] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez027.txt +centroid = (0.73153381202239931, -1.7358067355954485) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez027.txt +description = Loup, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez027.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez027.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez027.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez027.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez027.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez027.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez027.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez027.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez027.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez027.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez027.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez027.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez027.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez027.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez027.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('kodx', 0.0083672065582034594) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez027.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez027.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez027.txt + +[nez028] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez028.txt +centroid = (0.73154253866865926, -1.7277258611587147) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez028.txt +description = Garfield, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez028.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez028.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez028.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez028.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez028.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez028.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez028.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez028.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez028.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez028.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez028.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez028.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez028.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez028.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez028.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('kodx', 0.0052225642824302101) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez028.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez028.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez028.txt + +[nez029] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez029.txt +centroid = (0.73155126531491921, -1.7196414960634769) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez029.txt +description = Wheeler, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez029.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez029.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez029.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez029.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez029.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez029.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez029.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez029.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez029.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez029.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez029.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez029.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez029.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez029.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez029.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('kodx', 0.0075647872076732466) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez029.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez029.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez029.txt + +[nez030] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez030.txt +centroid = (0.72792098047077103, -1.7115972735410352) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez030.txt +description = Boone, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez030.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez030.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez030.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez030.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez030.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez030.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez030.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez030.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez030.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez030.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez030.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez030.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez030.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez030.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez030.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('kbvn', 0.00040577879397637041) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez030.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez030.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez030.txt + +[nez031] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez031.txt +centroid = (0.7315826812414552, -1.7034553125804817) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez031.txt +description = Madison, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez031.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez031.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez031.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez031.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez031.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez031.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez031.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez031.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez031.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez031.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez031.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez031.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez031.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez031.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez031.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('kofk', 0.0024661680020387879) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez031.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez031.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez031.txt + +[nez032] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez032.txt +centroid = (0.73158617189995911, -1.6963535678541166) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez032.txt +description = Stanton, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez032.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez032.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez032.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez032.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez032.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez032.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez032.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez032.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez032.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez032.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez032.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez032.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez032.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez032.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez032.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('kofk', 0.0033178115173648406) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez032.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez032.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez032.txt + +[nez033] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez033.txt +centroid = (0.73157919058295118, -1.6892588044447598) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez033.txt +description = Cuming, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez033.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez033.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez033.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez033.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez033.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez033.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez033.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez033.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez033.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez033.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez033.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez033.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez033.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez033.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez033.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('klcg', 0.0062083009553794899) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez033.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez033.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez033.txt + +[nez034] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez034.txt +centroid = (0.73044647189840683, -1.6812529791658617) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez034.txt +description = Burt, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez034.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez034.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez034.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez034.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez034.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez034.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez034.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez034.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez034.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez034.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez034.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez034.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez034.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez034.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez034.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('ktqe', 0.0024017683826200223) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez034.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez034.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez034.txt + +[nez035] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez035.txt +centroid = (0.72551417143227082, -1.7749282907789012) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez035.txt +description = Arthur, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez035.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez035.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez035.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez035.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez035.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez035.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez035.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez035.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez035.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez035.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez035.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez035.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez035.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez035.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez035.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('koga', 0.0078977508065247864) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez035.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez035.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez035.txt + +[nez036] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez036.txt +centroid = (0.72550020879825494, -1.7638384687117294) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez036.txt +description = McPherson, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez036.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez036.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez036.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez036.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez036.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez036.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez036.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez036.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez036.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez036.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez036.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez036.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez036.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez036.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez036.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('ktif', 0.0093918926700109432) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez036.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez036.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez036.txt + +[nez037] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez037.txt +centroid = (0.72547228353022297, -1.7537557016229581) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez037.txt +description = Logan, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez037.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez037.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez037.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez037.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez037.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez037.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez037.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez037.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez037.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez037.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez037.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez037.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez037.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez037.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez037.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('ktif', 0.0069922073224804038) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez037.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez037.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez037.txt + +[nez038] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez038.txt +centroid = (0.72246682655828875, -1.7405487951731171) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez038.txt +description = Custer, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez038.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez038.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez038.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez038.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez038.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez038.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez038.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez038.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez038.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez038.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez038.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez038.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez038.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez038.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez038.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('kbbw', 0.001392293195365201) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez038.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez038.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez038.txt + +[nez039] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez039.txt +centroid = (0.72548624616423896, -1.7275600548797752) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez039.txt +description = Valley, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez039.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez039.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez039.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez039.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez039.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez039.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez039.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez039.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez039.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez039.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez039.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez039.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez039.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez039.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez039.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('kodx', 0.0009569528338030398) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez039.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez039.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez039.txt + +[nez040] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez040.txt +centroid = (0.72548973682274298, -1.7195193230158372) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez040.txt +description = Greeley, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez040.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez040.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez040.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez040.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez040.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez040.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez040.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez040.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez040.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez040.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez040.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez040.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez040.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez040.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez040.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('kodx', 0.0056625784183785347) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez040.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez040.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez040.txt + +[nez041] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez041.txt +centroid = (0.72251918643584856, -1.7102882766020393) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez041.txt +description = Nance, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez041.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez041.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez041.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez041.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez041.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez041.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez041.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez041.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez041.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez041.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez041.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez041.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez041.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez041.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez041.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('kbvn', 0.0058363752902349693) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez041.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez041.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez041.txt + +[nez042] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez042.txt +centroid = (0.72553511538329474, -1.7020415958863662) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez042.txt +description = Platte, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez042.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez042.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez042.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez042.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez042.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez042.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez042.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez042.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez042.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez042.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez042.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez042.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez042.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez042.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez042.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('kolu', 0.0032145118308301588) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez042.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez042.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez042.txt + +[nez043] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez043.txt +centroid = (0.72558747526085454, -1.6944825748959786) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez043.txt +description = Colfax, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez043.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez043.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez043.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez043.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez043.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez043.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez043.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez043.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez043.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez043.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez043.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez043.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez043.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez043.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez043.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('kolu', 0.0038737623755583277) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez043.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez043.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez043.txt + +[nez044] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez044.txt +centroid = (0.72566776040644632, -1.6869340258811034) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez044.txt +description = Dodge, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez044.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez044.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez044.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez044.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez044.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez044.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez044.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez044.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez044.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez044.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez044.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez044.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez044.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez044.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez044.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('kfet', 0.0028632469896528435) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez044.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez044.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez044.txt + +[nez045] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez045.txt +centroid = (0.72485443697501706, -1.6793872221954798) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez045.txt +description = Washington, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez045.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez045.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez045.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez045.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez045.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez045.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez045.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez045.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez045.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez045.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez045.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez045.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez045.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez045.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez045.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('kbta', 0.0023520338951444298) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez045.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez045.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez045.txt + +[nez046] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez046.txt +centroid = (0.71943344431832268, -1.7274623164416636) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez046.txt +description = Sherman, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez046.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez046.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez046.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez046.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez046.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez046.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez046.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez046.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez046.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez046.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez046.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez046.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez046.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez046.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez046.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('kodx', 0.0069229753866304321) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez046.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez046.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez046.txt + +[nez047] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez047.txt +centroid = (0.71942471767206262, -1.7194477645165056) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez047.txt +description = Howard, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez047.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez047.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez047.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez047.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez047.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez047.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez047.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez047.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez047.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez047.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez047.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez047.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez047.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez047.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez047.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('kgri', 0.0051478374172989642) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez047.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez047.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez047.txt + +[nez048] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez048.txt +centroid = (0.71854856238756148, -1.7110789107531927) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez048.txt +description = Merrick, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez048.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez048.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez048.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez048.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez048.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez048.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez048.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez048.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez048.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez048.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez048.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez048.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez048.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez048.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez048.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('kauh', 0.0048489602999489427) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez048.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez048.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez048.txt + +[nez049] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez049.txt +centroid = (0.71884701368965254, -1.7028898259028353) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez049.txt +description = Polk, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez049.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez049.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez049.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez049.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez049.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez049.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez049.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez049.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez049.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez049.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez049.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez049.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez049.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez049.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez049.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('kjyr', 0.0051158537502215993) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez049.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez049.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez049.txt + +[nez050] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez050.txt +centroid = (0.71949802150064646, -1.6952487744376044) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez050.txt +description = Butler, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez050.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez050.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez050.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez050.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez050.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez050.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez050.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez050.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez050.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez050.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez050.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez050.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez050.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez050.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez050.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('kolu', 0.0047528215572633578) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez050.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez050.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez050.txt + +[nez051] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez051.txt +centroid = (0.71953118275643435, -1.6866390652375161) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez051.txt +description = Saunders, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez051.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez051.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez051.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez051.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez051.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez051.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez051.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez051.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez051.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez051.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez051.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez051.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez051.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez051.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez051.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('kahq', 0.00049432682105024083) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez051.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez051.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez051.txt + +[nez052] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez052.txt +centroid = (0.72073895059881432, -1.6782108702796354) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez052.txt +description = Douglas, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez052.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez052.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez052.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez052.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez052.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez052.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez052.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez052.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez052.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez052.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez052.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez052.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez052.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez052.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez052.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('kmle', 0.0018221217849970865) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez052.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez052.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez052.txt + +[nez053] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez053.txt +centroid = (0.71755896070168079, -1.6774691053475381) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez053.txt +description = Sarpy, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez053.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez053.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez053.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez053.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez053.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez053.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez053.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez053.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez053.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez053.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez053.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez053.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez053.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez053.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez053.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('kmle', 0.0014439752764130761) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez053.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez053.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez053.txt + +[nez054] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez054.txt +centroid = (0.71903550924886783, -1.8101682337059188) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez054.txt +description = Kimball, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez054.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez054.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez054.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez054.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez054.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez054.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez054.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez054.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez054.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez054.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez054.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez054.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez054.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez054.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez054.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('kibm', 0.0006825381514872095) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez054.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez054.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez054.txt + +[nez055] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez055.txt +centroid = (0.7194212270135586, -1.7976018630915598) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez055.txt +description = Cheyenne, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez055.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez055.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez055.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez055.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez055.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez055.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez055.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez055.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez055.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez055.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez055.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez055.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez055.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez055.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez055.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('ksny', 0.0020965168323903516) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez055.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez055.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez055.txt + +[nez056] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez056.txt +centroid = (0.71753278076290083, -1.7860634914066251) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez056.txt +description = Deuel, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez056.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez056.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez056.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez056.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez056.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez056.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez056.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez056.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez056.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez056.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez056.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez056.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez056.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez056.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez056.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('ksny', 0.0085430777997165062) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez056.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez056.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez056.txt + +[nez057] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez057.txt +centroid = (0.71905470787063985, -1.7743244068577113) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez057.txt +description = Keith, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez057.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez057.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez057.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez057.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez057.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez057.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez057.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez057.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez057.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez057.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez057.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez057.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez057.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez057.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez057.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('koga', 0.0019757397544548608) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez057.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez057.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez057.txt + +[nez058] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez058.txt +centroid = (0.71298270740295167, -1.7741202033352281) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez058.txt +description = Perkins, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez058.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez058.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez058.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez058.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez058.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez058.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez058.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez058.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez058.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez058.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez058.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez058.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez058.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez058.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez058.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('koga', 0.0049480645972586421) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez058.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez058.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez058.txt + +[nez059] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez059.txt +centroid = (0.7164192607001284, -1.7583354455801912) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez059.txt +description = Lincoln, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez059.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez059.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez059.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez059.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez059.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez059.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez059.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez059.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez059.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez059.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez059.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez059.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez059.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez059.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez059.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('klbf', 0.0015849631685031871) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez059.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez059.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez059.txt + +[nez060] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez060.txt +centroid = (0.7133143199608305, -1.7421789326944799) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez060.txt +description = Dawson, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez060.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez060.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez060.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez060.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez060.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez060.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez060.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez060.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez060.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez060.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez060.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez060.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez060.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez060.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez060.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('klxn', 0.0014841464906571507) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez060.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez060.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez060.txt + +[nez061] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez061.txt +centroid = (0.71305601123153528, -1.7291849564133821) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez061.txt +description = Buffalo, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez061.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez061.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez061.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez061.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez061.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez061.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez061.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez061.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez061.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez061.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez061.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez061.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez061.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez061.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez061.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('kear', 0.0023449222529123301) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez061.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez061.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez061.txt + +[nez062] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez062.txt +centroid = (0.71335969852138237, -1.7191877104579585) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez062.txt +description = Hall, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez062.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez062.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez062.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez062.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez062.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez062.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez062.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez062.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez062.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez062.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez062.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez062.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez062.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez062.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez062.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('kgri', 0.0029475832850074089) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez062.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez062.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez062.txt + +[nez063] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez063.txt +centroid = (0.71337715181390227, -1.7108293286701577) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez063.txt +description = Hamilton, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez063.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez063.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez063.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez063.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez063.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez063.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez063.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez063.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez063.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez063.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez063.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez063.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez063.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez063.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez063.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('kauh', 0.00052116195939880478) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez063.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez063.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez063.txt + +[nez064] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez064.txt +centroid = (0.71336493450913829, -1.7033907353981577) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez064.txt +description = York, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez064.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez064.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez064.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez064.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez064.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez064.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez064.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez064.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez064.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez064.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez064.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez064.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez064.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez064.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez064.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('kjyr', 0.00053695100410899475) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez064.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez064.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez064.txt + +[nez065] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez065.txt +centroid = (0.71335620786287846, -1.6954041087410316) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez065.txt +description = Seward, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez065.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez065.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez065.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez065.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez065.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez065.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez065.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez065.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez065.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez065.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez065.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez065.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez065.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez065.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez065.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('klnk', 0.004968733555527626) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez065.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez065.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez065.txt + +[nez066] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez066.txt +centroid = (0.71181682746261943, -1.6875204565097732) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez066.txt +description = Lancaster, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez066.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez066.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez066.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez066.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez066.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez066.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez066.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez066.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez066.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez066.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez066.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez066.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez066.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez066.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez066.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('klnk', 0.0013504917719192292) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez066.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez066.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez066.txt + +[nez067] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez067.txt +centroid = (0.71401070633237618, -1.6779735055013643) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez067.txt +description = Cass, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez067.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez067.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez067.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez067.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez067.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez067.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez067.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez067.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez067.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez067.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez067.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez067.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez067.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez067.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez067.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('kpmv', 0.0030233459411451807) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez067.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez067.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez067.txt + +[nez068] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez068.txt +centroid = (0.70945016099691505, -1.6778687857462447) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez068.txt +description = Otoe, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez068.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez068.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez068.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez068.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez068.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez068.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez068.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez068.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez068.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez068.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez068.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez068.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez068.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez068.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez068.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('kafk', 0.0038665331388585467) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez068.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez068.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez068.txt + +[nez069] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez069.txt +centroid = (0.70728071673668613, -1.7749631973639413) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez069.txt +description = Chase, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez069.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez069.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez069.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez069.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez069.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez069.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez069.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez069.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez069.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez069.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez069.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez069.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez069.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez069.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez069.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('kiml', 0.0010857572046477815) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez069.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez069.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez069.txt + +[nez070] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez070.txt +centroid = (0.70729118871219809, -1.7638611579920054) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez070.txt +description = Hayes, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez070.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez070.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez070.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez070.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez070.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez070.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez070.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez070.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez070.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez070.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez070.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez070.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez070.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez070.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez070.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('kiml', 0.0073630415923775895) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez070.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez070.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez070.txt + +[nez071] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez071.txt +centroid = (0.70738369116255373, -1.7522093399056911) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez071.txt +description = Frontier, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez071.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez071.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez071.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez071.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez071.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez071.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez071.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez071.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez071.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez071.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez071.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez071.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez071.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez071.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez071.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('kmck', 0.0062864001297770139) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez071.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez071.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez071.txt + +[nez072] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez072.txt +centroid = (0.70711665578699867, -1.742374409570703) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez072.txt +description = Gosper, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez072.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez072.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez072.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez072.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez072.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez072.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez072.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez072.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez072.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez072.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez072.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez072.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez072.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez072.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez072.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('klxn', 0.0048742488349236661) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez072.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez072.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez072.txt + +[nez073] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez073.txt +centroid = (0.70705207860467478, -1.7351103492239028) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez073.txt +description = Phelps, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez073.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez073.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez073.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez073.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez073.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez073.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez073.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez073.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez073.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez073.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez073.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez073.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez073.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez073.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez073.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('khde', 0.0015159999138862855) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez073.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez073.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez073.txt + +[nez074] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez074.txt +centroid = (0.70697528411758714, -1.7269683882633491) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez074.txt +description = Kearney, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez074.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez074.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez074.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez074.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez074.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez074.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez074.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez074.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez074.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez074.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez074.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez074.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez074.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez074.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez074.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('kear', 0.0040150374599814218) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez074.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez074.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez074.txt + +[nez075] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez075.txt +centroid = (0.70728595272444217, -1.7191702571654386) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez075.txt +description = Adams, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez075.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez075.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez075.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez075.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez075.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez075.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez075.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez075.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez075.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez075.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez075.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez075.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez075.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez075.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez075.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('khsi', 0.001595665014981649) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez075.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez075.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez075.txt + +[nez076] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez076.txt +centroid = (0.70728420739519005, -1.7113162755314639) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez076.txt +description = Clay, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez076.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez076.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez076.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez076.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez076.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez076.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez076.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez076.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez076.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez076.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez076.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez076.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez076.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez076.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez076.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('khsi', 0.0052357920293917923) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez076.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez076.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez076.txt + +[nez077] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez077.txt +centroid = (0.70728944338294608, -1.703380263422646) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez077.txt +description = Fillmore, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez077.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez077.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez077.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez077.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez077.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez077.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez077.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez077.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez077.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez077.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez077.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez077.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez077.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez077.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez077.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('kjyr', 0.0065013446417704268) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez077.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez077.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez077.txt + +[nez078] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez078.txt +centroid = (0.70727722607818211, -1.6954267980213076) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez078.txt +description = Saline, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez078.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez078.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez078.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez078.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez078.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez078.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez078.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez078.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez078.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez078.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez078.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez078.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez078.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez078.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez078.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('kbie', 0.0065003882973194366) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez078.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez078.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez078.txt + +[nez079] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez079.txt +centroid = (0.70120697093974582, -1.7747886644387418) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez079.txt +description = Dundy, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez079.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez079.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez079.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez079.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez079.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez079.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez079.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez079.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez079.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez079.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez079.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez079.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez079.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez079.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez079.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('kiml', 0.0060173357265828767) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez079.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez079.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez079.txt + +[nez080] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez080.txt +centroid = (0.70120871626899783, -1.7635190734586144) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez080.txt +description = Hitchcock, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez080.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez080.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez080.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez080.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez080.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez080.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez080.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez080.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez080.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez080.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez080.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez080.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez080.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez080.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez080.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('kmck', 0.0061320685910913938) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez080.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez080.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez080.txt + +[nez081] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez081.txt +centroid = (0.70119998962273788, -1.7536509818678385) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez081.txt +description = Red Willow, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez081.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez081.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez081.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez081.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez081.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez081.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez081.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez081.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez081.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez081.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez081.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez081.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez081.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez081.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez081.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('kmck', 0.001481890005843196) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez081.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez081.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez081.txt + +[nez082] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez082.txt +centroid = (0.70121046159824985, -1.7437985982403306) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez082.txt +description = Furnas, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez082.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez082.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez082.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez082.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez082.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez082.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez082.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez082.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez082.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez082.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez082.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez082.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez082.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez082.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez082.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('khde', 0.0090648599541218039) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez082.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez082.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez082.txt + +[nez083] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez083.txt +centroid = (0.70121220692750175, -1.7349375616279554) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez083.txt +description = Harlan, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez083.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez083.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez083.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez083.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez083.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez083.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez083.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez083.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez083.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez083.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez083.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez083.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez083.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez083.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez083.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('khde', 0.0048667874309369962) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez083.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez083.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez083.txt + +[nez084] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez084.txt +centroid = (0.70120871626899783, -1.7270504187381928) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez084.txt +description = Franklin, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez084.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez084.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez084.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez084.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez084.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez084.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez084.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez084.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez084.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez084.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez084.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez084.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez084.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez084.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez084.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('khde', 0.0069627610760406846) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez084.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez084.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez084.txt + +[nez085] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez085.txt +centroid = (0.70121046159824985, -1.7191475678851627) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez085.txt +description = Webster, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez085.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez085.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez085.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez085.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez085.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez085.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez085.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez085.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez085.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez085.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez085.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez085.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez085.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez085.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez085.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('khsi', 0.0074459847376444508) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez085.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez085.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez085.txt + +[nez086] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez086.txt +centroid = (0.70121046159824985, -1.7112464623613843) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez086.txt +description = Nuckolls, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez086.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez086.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez086.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez086.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez086.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez086.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez086.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez086.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez086.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez086.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez086.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez086.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez086.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez086.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez086.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('khjh', 0.0061532622330904441) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez086.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez086.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez086.txt + +[nez087] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez087.txt +centroid = (0.70120871626899783, -1.7033505928253621) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez087.txt +description = Thayer, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez087.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez087.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez087.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez087.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez087.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez087.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez087.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez087.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez087.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez087.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez087.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez087.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez087.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez087.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez087.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('khjh', 0.00043310120735116269) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez087.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez087.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez087.txt + +[nez088] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez088.txt +centroid = (0.70119824429348587, -1.6954582139478436) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez088.txt +description = Jefferson, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez088.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez088.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez088.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez088.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez088.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez088.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez088.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez088.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez088.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez088.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez088.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez088.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez088.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez088.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez088.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('kbie', 0.0056627700472351022) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez088.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez088.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez088.txt + +[nez089] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez089.txt +centroid = (0.70270271810870488, -1.6875466364485534) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez089.txt +description = Gage, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez089.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez089.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez089.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez089.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez089.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez089.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez089.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez089.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez089.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez089.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez089.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez089.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez089.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez089.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez089.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('kbie', 0.0010466082824967758) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez089.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez089.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez089.txt + +[nez090] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez090.txt +centroid = (0.70498386344106156, -1.6801394591030894) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez090.txt +description = Johnson, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez090.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez090.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez090.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez090.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez090.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez090.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez090.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez090.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez090.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez090.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez090.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez090.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez090.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez090.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez090.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('kbie', 0.0066520813637293511) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez090.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez090.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez090.txt + +[nez091] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez091.txt +centroid = (0.7049053236247218, -1.672873653427037) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez091.txt +description = Nemaha, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez091.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez091.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez091.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez091.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez091.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez091.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez091.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez091.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez091.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez091.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez091.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez091.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez091.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez091.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez091.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('kafk', 0.003698399365556047) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez091.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez091.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez091.txt + +[nez092] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez092.txt +centroid = (0.70042506343485234, -1.6796525122417829) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez092.txt +description = Pawnee, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez092.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez092.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez092.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez092.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez092.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez092.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez092.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez092.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez092.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez092.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez092.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez092.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez092.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez092.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez092.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('kfnb', 0.0087659797133772723) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez092.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez092.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez092.txt + +[nez093] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez093.txt +centroid = (0.70031161703347267, -1.6705715641436565) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez093.txt +description = Richardson, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez093.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez093.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez093.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez093.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez093.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez093.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez093.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez093.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez093.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez093.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez093.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez093.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez093.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez093.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez093.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('kfnb', 0.0019225250410271632) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez093.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez093.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez093.txt + +[nez094] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez094.txt +centroid = (0.74242990254259988, -1.7705178437591118) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez094.txt +description = Western Cherry, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez094.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez094.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez094.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez094.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez094.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez094.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez094.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez094.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez094.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez094.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez094.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez094.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez094.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez094.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez094.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('kvtn', 0.012811352586397191) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez094.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez094.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez094.txt + +[nez095] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez095.txt +centroid = (0.7455034273553619, -1.8111613260503037) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez095.txt +description = North Sioux, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez095.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez095.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez095.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez095.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez095.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez095.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez095.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez095.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez095.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez095.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez095.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez095.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez095.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez095.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez095.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('kcdr', 0.008855536943977383) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez095.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez095.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez095.txt + +[nez096] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ne/nez096.txt +centroid = (0.73679597971716215, -1.8106604165549813) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ne/nez096.txt +description = Banner and South Sioux, NE +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ne/nez096.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ne/nez096.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ne/nez096.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ne/nez096.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ne/nez096.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ne/nez096.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ne/nez096.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ne/nez096.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ne.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ne/nez096.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ne/nez096.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ne/nez096.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ne/nez096.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ne/nez096.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ne/nez096.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ne/nez096.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ne.txt +station = ('ktor', 0.0060038998557337322) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ne/nez096.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ne/nez096.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ne/nez096.txt + +[nhz001] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nh/nhz001.txt +centroid = (0.78498102970622174, -1.2441265413576219) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nh/nhz001.txt +description = Northern Coos, NH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nh/nhz001.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nh/nhz001.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nh/nhz001.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nh/nhz001.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nh/nhz001.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nh/nhz001.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nh/nhz001.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nh/nhz001.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nh/nhz001.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nh/nhz001.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nh/nhz001.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nh/nhz001.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nh/nhz001.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nh/nhz001.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nh/nhz001.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nh.txt +station = ('kbml', 0.0069658230075529959) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nh/nhz001.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nh/nhz001.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nh/nhz001.txt + +[nhz002] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nh/nhz002.txt +centroid = (0.7761740983006582, -1.2448176917414118) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nh/nhz002.txt +description = Southern Coos, NH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nh/nhz002.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nh/nhz002.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nh/nhz002.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nh/nhz002.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nh/nhz002.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nh/nhz002.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nh/nhz002.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nh/nhz002.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nh/nhz002.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nh/nhz002.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nh/nhz002.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nh/nhz002.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nh/nhz002.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nh/nhz002.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nh/nhz002.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nh.txt +station = ('kbml', 0.0026117370840842294) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nh/nhz002.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nh/nhz002.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nh/nhz002.txt + +[nhz003] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nh/nhz003.txt +centroid = (0.76962736827642764, -1.2522981729154594) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nh/nhz003.txt +description = Northern Grafton, NH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nh/nhz003.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nh/nhz003.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nh/nhz003.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nh/nhz003.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nh/nhz003.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nh/nhz003.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nh/nhz003.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nh/nhz003.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nh/nhz003.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nh/nhz003.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nh/nhz003.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nh/nhz003.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nh/nhz003.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nh/nhz003.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nh/nhz003.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nh.txt +station = ('khie', 0.0053473440556714375) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nh/nhz003.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nh/nhz003.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nh/nhz003.txt + +[nhz004] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nh/nhz004.txt +centroid = (0.76951566720429998, -1.2419762957191649) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nh/nhz004.txt +description = Northern Carroll, NH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nh/nhz004.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nh/nhz004.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nh/nhz004.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nh/nhz004.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nh/nhz004.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nh/nhz004.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nh/nhz004.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nh/nhz004.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nh/nhz004.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nh/nhz004.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nh/nhz004.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nh/nhz004.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nh/nhz004.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nh/nhz004.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nh/nhz004.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nh.txt +station = ('kizg', 0.0032262197081377527) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nh/nhz004.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nh/nhz004.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nh/nhz004.txt + +[nhz005] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nh/nhz005.txt +centroid = (0.7630736569351888, -1.2552093821077859) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nh/nhz005.txt +description = Southern Grafton, NH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nh/nhz005.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nh/nhz005.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nh/nhz005.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nh/nhz005.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nh/nhz005.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nh/nhz005.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nh/nhz005.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nh/nhz005.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nh/nhz005.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nh/nhz005.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nh/nhz005.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nh/nhz005.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nh/nhz005.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nh/nhz005.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nh/nhz005.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nh.txt +station = ('k1p1', 0.0023108676301860061) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nh/nhz005.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nh/nhz005.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nh/nhz005.txt + +[nhz006] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nh/nhz006.txt +centroid = (0.76359201972303115, -1.2429850960268176) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nh/nhz006.txt +description = Southern Carroll, NH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nh/nhz006.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nh/nhz006.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nh/nhz006.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nh/nhz006.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nh/nhz006.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nh/nhz006.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nh/nhz006.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nh/nhz006.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nh/nhz006.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nh/nhz006.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nh/nhz006.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nh/nhz006.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nh/nhz006.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nh/nhz006.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nh/nhz006.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nh.txt +station = ('klci', 0.0040756670582089141) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nh/nhz006.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nh/nhz006.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nh/nhz006.txt + +[nhz007] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nh/nhz007.txt +centroid = (0.7567957076157652, -1.2605169283631008) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nh/nhz007.txt +description = Sullivan, NH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nh/nhz007.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nh/nhz007.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nh/nhz007.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nh/nhz007.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nh/nhz007.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nh/nhz007.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nh/nhz007.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nh/nhz007.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nh/nhz007.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nh/nhz007.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nh/nhz007.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nh/nhz007.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nh/nhz007.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nh/nhz007.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nh/nhz007.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nh.txt +station = ('kleb', 0.0048504281004289893) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nh/nhz007.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nh/nhz007.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nh/nhz007.txt + +[nhz008] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nh/nhz008.txt +centroid = (0.7556874235407488, -1.2510554984880393) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nh/nhz008.txt +description = Merrimack, NH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nh/nhz008.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nh/nhz008.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nh/nhz008.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nh/nhz008.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nh/nhz008.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nh/nhz008.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nh/nhz008.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nh/nhz008.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nh/nhz008.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nh/nhz008.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nh/nhz008.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nh/nhz008.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nh/nhz008.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nh/nhz008.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nh/nhz008.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nh.txt +station = ('kcon', 0.0028947044690455421) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nh/nhz008.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nh/nhz008.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nh/nhz008.txt + +[nhz009] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nh/nhz009.txt +centroid = (0.75954634651690822, -1.2465717476396658) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nh/nhz009.txt +description = Belknap, NH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nh/nhz009.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nh/nhz009.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nh/nhz009.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nh/nhz009.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nh/nhz009.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nh/nhz009.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nh/nhz009.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nh/nhz009.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nh/nhz009.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nh/nhz009.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nh/nhz009.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nh/nhz009.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nh/nhz009.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nh/nhz009.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nh/nhz009.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nh.txt +station = ('klci', 0.00083963525278513585) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nh/nhz009.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nh/nhz009.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nh/nhz009.txt + +[nhz010] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nh/nhz010.txt +centroid = (0.75568393288224478, -1.2396951503868083) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nh/nhz010.txt +description = Strafford, NH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nh/nhz010.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nh/nhz010.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nh/nhz010.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nh/nhz010.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nh/nhz010.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nh/nhz010.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nh/nhz010.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nh/nhz010.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nh/nhz010.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nh/nhz010.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nh/nhz010.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nh/nhz010.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nh/nhz010.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nh/nhz010.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nh/nhz010.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nh.txt +station = ('kdaw', 0.0014521027793019258) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nh/nhz010.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nh/nhz010.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nh/nhz010.txt + +[nhz011] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nh/nhz011.txt +centroid = (0.74908309765120229, -1.2610213285169269) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nh/nhz011.txt +description = Cheshire, NH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nh/nhz011.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nh/nhz011.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nh/nhz011.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nh/nhz011.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nh/nhz011.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nh/nhz011.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nh/nhz011.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nh/nhz011.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nh/nhz011.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nh/nhz011.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nh/nhz011.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nh/nhz011.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nh/nhz011.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nh/nhz011.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nh/nhz011.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nh.txt +station = ('keen', 0.0003905868438033641) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nh/nhz011.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nh/nhz011.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nh/nhz011.txt + +[nhz012] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nh/nhz012.txt +centroid = (0.74778282735846646, -1.2471669049145961) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nh/nhz012.txt +description = Eastern Hillsborough, NH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nh/nhz012.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nh/nhz012.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nh/nhz012.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nh/nhz012.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nh/nhz012.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nh/nhz012.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nh/nhz012.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nh/nhz012.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nh/nhz012.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nh/nhz012.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nh/nhz012.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nh/nhz012.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nh/nhz012.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nh/nhz012.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nh/nhz012.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nh.txt +station = ('kash', 0.0013239242268389486) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nh/nhz012.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nh/nhz012.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nh/nhz012.txt + +[nhz013] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nh/nhz013.txt +centroid = (0.75023501495751854, -1.2423497961790917) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nh/nhz013.txt +description = Interior Rockingham, NH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nh/nhz013.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nh/nhz013.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nh/nhz013.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nh/nhz013.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nh/nhz013.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nh/nhz013.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nh/nhz013.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nh/nhz013.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nh/nhz013.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nh/nhz013.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nh/nhz013.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nh/nhz013.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nh/nhz013.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nh/nhz013.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nh/nhz013.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nh.txt +station = ('kmht', 0.003343314479301248) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nh/nhz013.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nh/nhz013.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nh/nhz013.txt + +[nhz014] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nh/nhz014.txt +centroid = (0.7505003050038217, -1.2362010012243156) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nh/nhz014.txt +description = Coastal Rockingham, NH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nh/nhz014.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nh/nhz014.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nh/nhz014.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nh/nhz014.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nh/nhz014.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nh/nhz014.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nh/nhz014.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nh/nhz014.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nh/nhz014.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nh/nhz014.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nh/nhz014.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nh/nhz014.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nh/nhz014.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nh/nhz014.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nh/nhz014.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nh.txt +station = ('kpsm', 0.0014543875754113413) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nh/nhz014.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nh/nhz014.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nh/nhz014.txt + +[nhz015] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nh/nhz015.txt +centroid = (0.74937980362404133, -1.2530224845550371) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nh/nhz015.txt +description = Western And Central Hillsborough, NH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nh/nhz015.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nh/nhz015.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nh/nhz015.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nh/nhz015.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nh/nhz015.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nh/nhz015.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nh/nhz015.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nh/nhz015.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nh/nhz015.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nh/nhz015.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nh/nhz015.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nh/nhz015.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nh/nhz015.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nh/nhz015.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nh/nhz015.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nh.txt +station = ('kafn', 0.0035605242827042418) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nh/nhz015.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nh/nhz015.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nh/nhz015.txt + +[njz001] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nj/njz001.txt +centroid = (0.71801798229495528, -1.3035899089730687) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nj/njz001.txt +description = Sussex, NJ +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nj/njz001.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nj/njz001.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nj/njz001.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nj/njz001.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nj/njz001.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nj/njz001.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nj/njz001.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nj/njz001.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nj.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nj/njz001.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nj/njz001.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nj/njz001.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nj/njz001.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nj/njz001.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nj/njz001.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nj/njz001.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nj.txt +station = ('kfwn', 0.0012949366624309278) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nj/njz001.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nj/njz001.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nj/njz001.txt + +[njz002] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nj/njz002.txt +centroid = (0.71721513083903787, -1.2976837147843199) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nj/njz002.txt +description = Western Passaic, NJ +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nj/njz002.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nj/njz002.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nj/njz002.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nj/njz002.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nj/njz002.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nj/njz002.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nj/njz002.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nj/njz002.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nj.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nj/njz002.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nj/njz002.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nj/njz002.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nj/njz002.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nj/njz002.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nj/njz002.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nj/njz002.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nj.txt +station = ('kcdw', 0.0037756832820926476) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nj/njz002.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nj/njz002.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nj/njz002.txt + +[njz004] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nj/njz004.txt +centroid = (0.71414684201403178, -1.2950325596505405) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nj/njz004.txt +description = Eastern Passaic, NJ +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nj/njz004.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nj/njz004.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nj/njz004.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nj/njz004.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nj/njz004.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nj/njz004.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nj/njz004.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nj/njz004.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nj.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nj/njz004.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nj/njz004.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nj/njz004.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nj/njz004.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nj/njz004.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nj/njz004.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nj/njz004.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nj.txt +station = ('kcdw', 0.0012526476008932852) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nj/njz004.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nj/njz004.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nj/njz004.txt + +[njz006] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nj/njz006.txt +centroid = (0.71106459055500981, -1.2928962766460994) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nj/njz006.txt +description = Hudson, NJ +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nj/njz006.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nj/njz006.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nj/njz006.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nj/njz006.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nj/njz006.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nj/njz006.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nj/njz006.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nj/njz006.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nj.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nj/njz006.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nj/njz006.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nj/njz006.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nj/njz006.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nj/njz006.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nj/njz006.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nj/njz006.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nj.txt +station = ('kewr', 0.0015506516755971927) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nj/njz006.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nj/njz006.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nj/njz006.txt + +[njz007] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nj/njz007.txt +centroid = (0.71309615380433122, -1.3089445791181873) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nj/njz007.txt +description = Warren, NJ +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nj/njz007.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nj/njz007.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nj/njz007.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nj/njz007.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nj/njz007.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nj/njz007.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nj/njz007.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nj/njz007.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nj.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nj/njz007.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nj/njz007.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nj/njz007.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nj/njz007.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nj/njz007.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nj/njz007.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nj/njz007.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nj.txt +station = ('k12n', 0.0044510729117561302) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nj/njz007.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nj/njz007.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nj/njz007.txt + +[njz008] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nj/njz008.txt +centroid = (0.7131781842791749, -1.301046964252913) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nj/njz008.txt +description = Morris, NJ +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nj/njz008.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nj/njz008.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nj/njz008.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nj/njz008.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nj/njz008.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nj/njz008.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nj/njz008.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nj/njz008.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nj.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nj/njz008.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nj/njz008.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nj/njz008.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nj/njz008.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nj/njz008.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nj/njz008.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nj/njz008.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nj.txt +station = ('kmmu', 0.0020061360005165247) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nj/njz008.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nj/njz008.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nj/njz008.txt + +[njz009] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nj/njz009.txt +centroid = (0.70803120831504363, -1.3074662852417482) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nj/njz009.txt +description = Hunterdon, NJ +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nj/njz009.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nj/njz009.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nj/njz009.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nj/njz009.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nj/njz009.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nj/njz009.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nj/njz009.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nj/njz009.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nj.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nj/njz009.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nj/njz009.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nj/njz009.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nj/njz009.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nj/njz009.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nj/njz009.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nj/njz009.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nj.txt +station = ('ksmq', 0.0033680079316245216) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nj/njz009.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nj/njz009.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nj/njz009.txt + +[njz010] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nj/njz010.txt +centroid = (0.70797012179122376, -1.3023001106558449) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nj/njz010.txt +description = Somerset, NJ +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nj/njz010.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nj/njz010.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nj/njz010.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nj/njz010.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nj/njz010.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nj/njz010.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nj/njz010.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nj/njz010.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nj.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nj/njz010.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nj/njz010.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nj/njz010.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nj/njz010.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nj/njz010.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nj/njz010.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nj/njz010.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nj.txt +station = ('ksmq', 0.0011402684669386011) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nj/njz010.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nj/njz010.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nj/njz010.txt + +[njz012] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nj/njz012.txt +centroid = (0.70580067753099485, -1.2987221856892566) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nj/njz012.txt +description = Middlesex, NJ +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nj/njz012.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nj/njz012.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nj/njz012.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nj/njz012.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nj/njz012.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nj/njz012.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nj/njz012.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nj/njz012.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nj.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nj/njz012.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nj/njz012.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nj/njz012.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nj/njz012.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nj/njz012.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nj/njz012.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nj/njz012.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nj.txt +station = ('ksmq', 0.0045878797996535244) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nj/njz012.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nj/njz012.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nj/njz012.txt + +[njz013] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nj/njz013.txt +centroid = (0.70266257553590905, -1.296105937140517) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nj/njz013.txt +description = Western Monmouth, NJ +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nj/njz013.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nj/njz013.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nj/njz013.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nj/njz013.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nj/njz013.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nj/njz013.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nj/njz013.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nj/njz013.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nj.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nj/njz013.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nj/njz013.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nj/njz013.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nj/njz013.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nj/njz013.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nj/njz013.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nj/njz013.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nj.txt +station = ('kblm', 0.0021643960078461346) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nj/njz013.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nj/njz013.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nj/njz013.txt + +[njz014] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nj/njz014.txt +centroid = (0.70259450769508125, -1.2920585186051421) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nj/njz014.txt +description = Eastern Monmouth, NJ +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nj/njz014.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nj/njz014.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nj/njz014.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nj/njz014.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nj/njz014.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nj/njz014.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nj/njz014.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nj/njz014.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nj.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nj/njz014.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nj/njz014.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nj/njz014.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nj/njz014.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nj/njz014.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nj/njz014.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nj/njz014.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nj.txt +station = ('kblm', 0.0018735268100695372) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nj/njz014.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nj/njz014.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nj/njz014.txt + +[njz015] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nj/njz015.txt +centroid = (0.70307621856863167, -1.3037871311785441) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nj/njz015.txt +description = Mercer, NJ +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nj/njz015.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nj/njz015.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nj/njz015.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nj/njz015.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nj/njz015.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nj/njz015.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nj/njz015.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nj/njz015.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nj.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nj/njz015.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nj/njz015.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nj/njz015.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nj/njz015.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nj/njz015.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nj/njz015.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nj/njz015.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nj.txt +station = ('kttn', 0.0015333704506457486) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nj/njz015.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nj/njz015.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nj/njz015.txt + +[njz016] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nj/njz016.txt +centroid = (0.69092698164549926, -1.3150340328783956) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nj/njz016.txt +description = Salem, NJ +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nj/njz016.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nj/njz016.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nj/njz016.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nj/njz016.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nj/njz016.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nj/njz016.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nj/njz016.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nj/njz016.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nj.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nj/njz016.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nj/njz016.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nj/njz016.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nj/njz016.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nj/njz016.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nj/njz016.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nj/njz016.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nj.txt +station = ('kilg', 0.003686646148720692) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nj/njz016.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nj/njz016.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nj/njz016.txt + +[njz017] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nj/njz017.txt +centroid = (0.69319765500234387, -1.3114735612043273) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nj/njz017.txt +description = Gloucester, NJ +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nj/njz017.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nj/njz017.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nj/njz017.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nj/njz017.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nj/njz017.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nj/njz017.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nj/njz017.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nj/njz017.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nj.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nj/njz017.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nj/njz017.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nj/njz017.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nj/njz017.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nj/njz017.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nj/njz017.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nj/njz017.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nj.txt +station = ('kphl', 0.0028809113659029723) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nj/njz017.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nj/njz017.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nj/njz017.txt + +[njz018] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nj/njz018.txt +centroid = (0.69470736480531903, -1.3082970619656975) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nj/njz018.txt +description = Camden, NJ +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nj/njz018.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nj/njz018.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nj/njz018.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nj/njz018.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nj/njz018.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nj/njz018.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nj/njz018.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nj/njz018.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nj.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nj/njz018.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nj/njz018.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nj/njz018.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nj/njz018.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nj/njz018.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nj/njz018.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nj/njz018.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nj.txt +station = ('kvay', 0.0028258950613749873) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nj/njz018.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nj/njz018.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nj/njz018.txt + +[njz019] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nj/njz019.txt +centroid = (0.69786990140993266, -1.304759279571905) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nj/njz019.txt +description = Northwestern Burlington, NJ +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nj/njz019.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nj/njz019.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nj/njz019.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nj/njz019.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nj/njz019.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nj/njz019.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nj/njz019.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nj/njz019.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nj.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nj/njz019.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nj/njz019.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nj/njz019.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nj/njz019.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nj/njz019.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nj/njz019.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nj/njz019.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nj.txt +station = ('kvay', 0.0013603394981458066) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nj/njz019.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nj/njz019.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nj/njz019.txt + +[njz020] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nj/njz020.txt +centroid = (0.69671972943286842, -1.2969524218277342) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nj/njz020.txt +description = Ocean, NJ +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nj/njz020.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nj/njz020.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nj/njz020.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nj/njz020.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nj/njz020.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nj/njz020.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nj/njz020.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nj/njz020.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nj.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nj/njz020.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nj/njz020.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nj/njz020.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nj/njz020.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nj/njz020.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nj/njz020.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nj/njz020.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nj.txt +station = ('knel', 0.001995800789265435) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nj/njz020.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nj/njz020.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nj/njz020.txt + +[njz021] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nj/njz021.txt +centroid = (0.6871972130339874, -1.3109150558436888) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nj/njz021.txt +description = Cumberland, NJ +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nj/njz021.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nj/njz021.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nj/njz021.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nj/njz021.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nj/njz021.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nj/njz021.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nj/njz021.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nj/njz021.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nj.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nj/njz021.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nj/njz021.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nj/njz021.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nj/njz021.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nj/njz021.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nj/njz021.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nj/njz021.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nj.txt +station = ('kmiv', 0.00037777163259157401) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nj/njz021.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nj/njz021.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nj/njz021.txt + +[njz022] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nj/njz022.txt +centroid = (0.68924099358807267, -1.3037190633377163) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nj/njz022.txt +description = Atlantic, NJ +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nj/njz022.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nj/njz022.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nj/njz022.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nj/njz022.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nj/njz022.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nj/njz022.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nj/njz022.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nj/njz022.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nj.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nj/njz022.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nj/njz022.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nj/njz022.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nj/njz022.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nj/njz022.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nj/njz022.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nj/njz022.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nj.txt +station = ('kacy', 0.001595015351494078) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nj/njz022.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nj/njz022.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nj/njz022.txt + +[njz023] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nj/njz023.txt +centroid = (0.68376415039531446, -1.3059024702319613) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nj/njz023.txt +description = Cape May, NJ +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nj/njz023.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nj/njz023.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nj/njz023.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nj/njz023.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nj/njz023.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nj/njz023.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nj/njz023.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nj/njz023.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nj.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nj/njz023.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nj/njz023.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nj/njz023.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nj/njz023.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nj/njz023.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nj/njz023.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nj/njz023.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nj.txt +station = ('kwwd', 0.003071028531507237) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nj/njz023.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nj/njz023.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nj/njz023.txt + +[njz024] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nj/njz024.txt +centroid = (0.68233996172568712, -1.305014097642696) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nj/njz024.txt +description = Atlantic Coastal Cape May, NJ +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nj/njz024.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nj/njz024.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nj/njz024.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nj/njz024.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nj/njz024.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nj/njz024.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nj/njz024.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nj/njz024.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nj.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nj/njz024.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nj/njz024.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nj/njz024.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nj/njz024.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nj/njz024.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nj/njz024.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nj/njz024.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nj.txt +station = ('kwwd', 0.0023944913331620916) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nj/njz024.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nj/njz024.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nj/njz024.txt + +[njz025] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nj/njz025.txt +centroid = (0.68753755223812629, -1.2993068709886746) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nj/njz025.txt +description = Coastal Atlantic, NJ +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nj/njz025.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nj/njz025.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nj/njz025.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nj/njz025.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nj/njz025.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nj/njz025.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nj/njz025.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nj/njz025.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nj.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nj/njz025.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nj/njz025.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nj/njz025.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nj/njz025.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nj/njz025.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nj/njz025.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nj/njz025.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nj.txt +station = ('kacy', 0.0022673521346768702) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nj/njz025.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nj/njz025.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nj/njz025.txt + +[njz026] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nj/njz026.txt +centroid = (0.69444905607602381, -1.2944182037538385) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nj/njz026.txt +description = Coastal Ocean, NJ +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nj/njz026.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nj/njz026.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nj/njz026.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nj/njz026.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nj/njz026.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nj/njz026.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nj/njz026.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nj/njz026.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nj.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nj/njz026.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nj/njz026.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nj/njz026.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nj/njz026.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nj/njz026.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nj/njz026.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nj/njz026.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nj.txt +station = ('knel', 0.004724848396252695) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nj/njz026.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nj/njz026.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nj/njz026.txt + +[njz027] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nj/njz027.txt +centroid = (0.69372998042420209, -1.3013262169332322) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nj/njz027.txt +description = Southeastern Burlington, NJ +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nj/njz027.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nj/njz027.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nj/njz027.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nj/njz027.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nj/njz027.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nj/njz027.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nj/njz027.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nj/njz027.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nj.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nj/njz027.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nj/njz027.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nj/njz027.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nj/njz027.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nj/njz027.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nj/njz027.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nj/njz027.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nj.txt +station = ('kwri', 0.0047223342507039323) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nj/njz027.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nj/njz027.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nj/njz027.txt + +[njz103] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nj/njz103.txt +centroid = (0.71600910832590969, -1.2942436708286391) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nj/njz103.txt +description = Western Bergen, NJ +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nj/njz103.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nj/njz103.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nj/njz103.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nj/njz103.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nj/njz103.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nj/njz103.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nj/njz103.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nj/njz103.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nj.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nj/njz103.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nj/njz103.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nj/njz103.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nj/njz103.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nj/njz103.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nj/njz103.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nj/njz103.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nj.txt +station = ('kcdw', 0.0029880053829611235) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nj/njz103.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nj/njz103.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nj/njz103.txt + +[njz104] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nj/njz104.txt +centroid = (0.7141154260874959, -1.2919346002282506) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nj/njz104.txt +description = Eastern Bergen, NJ +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nj/njz104.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nj/njz104.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nj/njz104.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nj/njz104.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nj/njz104.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nj/njz104.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nj/njz104.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nj/njz104.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nj.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nj/njz104.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nj/njz104.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nj/njz104.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nj/njz104.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nj/njz104.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nj/njz104.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nj/njz104.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nj.txt +station = ('kteb', 0.00093165345617292523) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nj/njz104.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nj/njz104.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nj/njz104.txt + +[njz105] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nj/njz105.txt +centroid = (0.7121536760082543, -1.2963729725160722) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nj/njz105.txt +description = Western Essex, NJ +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nj/njz105.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nj/njz105.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nj/njz105.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nj/njz105.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nj/njz105.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nj/njz105.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nj/njz105.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nj/njz105.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nj.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nj/njz105.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nj/njz105.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nj/njz105.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nj/njz105.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nj/njz105.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nj/njz105.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nj/njz105.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nj.txt +station = ('kcdw', 0.0013978463118103784) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nj/njz105.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nj/njz105.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nj/njz105.txt + +[njz106] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nj/njz106.txt +centroid = (0.71117803695638948, -1.2945525941062421) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nj/njz106.txt +description = Eastern Essex, NJ +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nj/njz106.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nj/njz106.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nj/njz106.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nj/njz106.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nj/njz106.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nj/njz106.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nj/njz106.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nj/njz106.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nj.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nj/njz106.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nj/njz106.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nj/njz106.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nj/njz106.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nj/njz106.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nj/njz106.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nj/njz106.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nj.txt +station = ('kewr', 0.0011224849511910604) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nj/njz106.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nj/njz106.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nj/njz106.txt + +[njz107] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nj/njz107.txt +centroid = (0.70976606559152611, -1.2977901798686915) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nj/njz107.txt +description = Western Union, NJ +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nj/njz107.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nj/njz107.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nj/njz107.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nj/njz107.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nj/njz107.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nj/njz107.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nj/njz107.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nj/njz107.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nj.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nj/njz107.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nj/njz107.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nj/njz107.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nj/njz107.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nj/njz107.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nj/njz107.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nj/njz107.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nj.txt +station = ('kmmu', 0.002454564973315435) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nj/njz107.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nj/njz107.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nj/njz107.txt + +[njz108] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nj/njz108.txt +centroid = (0.70946935961868696, -1.2956486608764946) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nj/njz108.txt +description = Eastern Union, NJ +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nj/njz108.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nj/njz108.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nj/njz108.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nj/njz108.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nj/njz108.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nj/njz108.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nj/njz108.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nj/njz108.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nj.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nj/njz108.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nj/njz108.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nj/njz108.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nj/njz108.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nj/njz108.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nj/njz108.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nj/njz108.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nj.txt +station = ('kewr', 0.0010815739544744519) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nj/njz108.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nj/njz108.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nj/njz108.txt + +[nmz027] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz027.txt +centroid = (0.5626766975504518, -1.8278903069306693) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz027.txt +description = Guadalupe Mountains of Eddy County, NM +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz027.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz027.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz027.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz027.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz027.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz027.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz027.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz027.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz027.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz027.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz027.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz027.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz027.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz027.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz027.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +station = ('kgdp', 0.0071943417344818893) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz027.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz027.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz027.txt + +[nmz028] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz028.txt +centroid = (0.56721978959339314, -1.8195650863986563) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz028.txt +description = Eddy County Plains, NM +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz028.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz028.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz028.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz028.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz028.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz028.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz028.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz028.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz028.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz028.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz028.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz028.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz028.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz028.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz028.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +station = ('kcnm', 0.0029032522905055092) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz028.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz028.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz028.txt + +[nmz029] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz029.txt +centroid = (0.58088048164875272, -1.8047699303295004) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz029.txt +description = Northern Lea County, NM +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz029.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz029.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz029.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz029.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz029.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz029.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz029.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz029.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz029.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz029.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz029.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz029.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz029.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz029.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz029.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +station = ('khob', 0.010809000485656986) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz029.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz029.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz029.txt + +[nmz033] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz033.txt +centroid = (0.57160231134515094, -1.8053040010806107) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz033.txt +description = Central Lea County, NM +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz033.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz033.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz033.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz033.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz033.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz033.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz033.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz033.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz033.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz033.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz033.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz033.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz033.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz033.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz033.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +station = ('khob', 0.0034310193313523492) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz033.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz033.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz033.txt + +[nmz034] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz034.txt +centroid = (0.56287217442667525, -1.804560490819261) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz034.txt +description = Southern Lea County, NM +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz034.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz034.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz034.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz034.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz034.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz034.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz034.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz034.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz034.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz034.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz034.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz034.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz034.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz034.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz034.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +station = ('khob', 0.0079964600695062848) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz034.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz034.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz034.txt + +[nmz401] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz401.txt +centroid = (0.57526052145733109, -1.8964747652170384) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz401.txt +description = Upper Gila River Valley, NM +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz401.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz401.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz401.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz401.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz401.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz401.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz401.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz401.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz401.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz401.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz401.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz401.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz401.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz401.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz401.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +station = ('ksvc', 0.0094069465860856741) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz401.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz401.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz401.txt + +[nmz402] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz402.txt +centroid = (0.57700585070932542, -1.8853046580042747) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz402.txt +description = Southern Gila Highlands/Black Range, NM +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz402.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz402.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz402.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz402.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz402.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz402.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz402.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz402.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz402.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz402.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz402.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz402.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz402.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz402.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz402.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +station = ('ksvc', 0.0076868332815674583) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz402.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz402.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz402.txt + +[nmz403] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz403.txt +centroid = (0.56932640200055029, -1.885828256779873) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz403.txt +description = Southern Gila Foothills/Mimbres Valley, NM +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz403.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz403.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz403.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz403.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz403.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz403.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz403.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz403.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz403.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz403.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz403.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz403.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz403.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz403.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz403.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +station = ('ksvc', 0.0014882257555050024) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz403.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz403.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz403.txt + +[nmz404] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz404.txt +centroid = (0.56635934227216, -1.8973474298430355) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz404.txt +description = Southwest Desert/Lower Gila River Valley, NM +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz404.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz404.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz404.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz404.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz404.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz404.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz404.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz404.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz404.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz404.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz404.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz404.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz404.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz404.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz404.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +station = ('klsb', 0.0020516663970894262) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz404.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz404.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz404.txt + +[nmz405] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz405.txt +centroid = (0.55466563628379795, -1.8954275676658419) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz405.txt +description = Lowlands of the Bootheel, NM +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz405.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz405.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz405.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz405.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz405.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz405.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz405.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz405.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz405.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz405.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz405.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz405.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz405.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz405.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz405.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +station = ('klsb', 0.0097546165658073496) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz405.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz405.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz405.txt + +[nmz406] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz406.txt +centroid = (0.55030231315381217, -1.8996163578706284) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz406.txt +description = Uplands of the Bootheel, NM +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz406.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz406.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz406.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz406.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz406.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz406.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz406.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz406.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz406.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz406.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz406.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz406.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz406.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz406.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz406.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +station = ('kdug', 0.011363913225460674) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz406.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz406.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz406.txt + +[nmz407] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz407.txt +centroid = (0.5618214862169747, -1.881290400724688) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz407.txt +description = Southwest Desert/Mimbres Basin, NM +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz407.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz407.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz407.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz407.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz407.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz407.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz407.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz407.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz407.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz407.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz407.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz407.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz407.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz407.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz407.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +station = ('kdmn', 0.001721260747211073) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz407.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz407.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz407.txt + +[nmz408] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz408.txt +centroid = (0.57595865315812877, -1.8772761434451009) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz408.txt +description = Eastern Black Range Foothills, NM +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz408.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz408.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz408.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz408.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz408.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz408.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz408.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz408.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz408.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz408.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz408.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz408.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz408.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz408.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz408.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +station = ('ktcs', 0.0059136779895563717) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz408.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz408.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz408.txt + +[nmz409] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz409.txt +centroid = (0.57822758118572137, -1.8685494971851293) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz409.txt +description = Sierra County Lakes, NM +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz409.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz409.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz409.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz409.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz409.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz409.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz409.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz409.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz409.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz409.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz409.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz409.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz409.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz409.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz409.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +station = ('ktcs', 0.0035165462243673022) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz409.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz409.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz409.txt + +[nmz410] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz410.txt +centroid = (0.56897733615015145, -1.8661060362323372) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz410.txt +description = Northern Dona Ana County, NM +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz410.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz410.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz410.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz410.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz410.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz410.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz410.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz410.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz410.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz410.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz410.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz410.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz410.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz410.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz410.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +station = ('klru', 0.0054202926181276612) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz410.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz410.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz410.txt + +[nmz411] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz411.txt +centroid = (0.56059975574057863, -1.8661060362323372) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz411.txt +description = Southern Dona Ana County/Mesilla Valley, NM +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz411.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz411.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz411.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz411.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz411.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz411.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz411.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz411.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz411.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz411.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz411.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz411.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz411.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz411.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz411.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +station = ('klru', 0.0029575028648752698) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz411.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz411.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz411.txt + +[nmz412] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz412.txt +centroid = (0.57700585070932542, -1.8540632643935764) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz412.txt +description = Central Tularosa Basin, NM +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz412.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz412.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz412.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz412.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz412.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz412.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz412.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz412.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz412.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz412.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz412.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz412.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz412.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz412.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz412.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +station = ('khmn', 0.0041301664973127381) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz412.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz412.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz412.txt + +[nmz413] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz413.txt +centroid = (0.56548667764616278, -1.8538887314683767) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz413.txt +description = Southern Tularosa Basin, NM +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz413.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz413.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz413.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz413.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz413.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz413.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz413.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz413.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz413.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz413.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz413.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz413.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz413.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz413.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz413.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +station = ('km63', 0.0058515631867813826) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz413.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz413.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz413.txt + +[nmz414] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz414.txt +centroid = (0.57421332390613444, -1.8477800790863967) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz414.txt +description = West Slopes Sacramento Mountains Below 7500 Feet, NM +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz414.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz414.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz414.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz414.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz414.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz414.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz414.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz414.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz414.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz414.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz414.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz414.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz414.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz414.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz414.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +station = ('kalm', 0.0020283470209188311) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz414.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz414.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz414.txt + +[nmz415] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz415.txt +centroid = (0.57595865315812877, -1.8446384864328069) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz415.txt +description = Sacramento Mountains Above 7500 Feet, NM +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz415.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz415.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz415.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz415.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz415.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz415.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz415.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz415.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz415.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz415.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz415.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz415.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz415.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz415.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz415.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +station = ('kalm', 0.0051896135320795541) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz415.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz415.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz415.txt + +[nmz416] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz416.txt +centroid = (0.57508598853213166, -1.8402751633028209) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz416.txt +description = East Slopes Sacramento Mountains Below 7500 Feet, NM +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz416.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz416.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz416.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz416.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz416.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz416.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz416.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz416.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz416.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz416.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz416.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz416.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz416.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz416.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz416.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +station = ('ksrr', 0.0091199505336074429) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz416.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz416.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz416.txt + +[nmz417] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz417.txt +centroid = (0.56321774961857018, -1.8406242291532198) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz417.txt +description = Otero Mesa, NM +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz417.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz417.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz417.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz417.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz417.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz417.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz417.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz417.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz417.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz417.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz417.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz417.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz417.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz417.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz417.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +station = ('km63', 0.01077492896163911) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz417.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz417.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz417.txt + +[nmz501] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz501.txt +centroid = (0.63534173562798379, -1.8922126711836684) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz501.txt +description = Northwest Plateau, NM +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz501.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz501.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz501.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz501.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz501.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz501.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz501.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz501.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz501.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz501.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz501.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz501.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz501.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz501.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz501.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +station = ('kfmn', 0.006583787805492302) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz501.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz501.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz501.txt + +[nmz502] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz502.txt +centroid = (0.62893288661466074, -1.9011993715021871) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz502.txt +description = Chuska Mountains, NM +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz502.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz502.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz502.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz502.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz502.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz502.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz502.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz502.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz502.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz502.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz502.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz502.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz502.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz502.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz502.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +station = ('krqe', 0.0069928056460980348) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz502.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz502.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz502.txt + +[nmz503] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz503.txt +centroid = (0.64278905554624355, -1.8763231936735119) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz503.txt +description = Far Northwest Highlands, NM +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz503.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz503.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz503.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz503.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz503.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz503.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz503.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz503.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz503.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz503.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz503.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz503.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz503.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz503.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz503.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +station = ('kdro', 0.006680898737119685) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz503.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz503.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz503.txt + +[nmz504] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz504.txt +centroid = (0.62944950407325095, -1.8751363697821557) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz504.txt +description = Northwest Highlands, NM +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz504.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz504.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz504.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz504.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz504.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz504.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz504.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz504.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz504.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz504.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz504.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz504.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz504.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz504.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz504.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +station = ('k4sl', 0.0058524422691292859) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz504.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz504.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz504.txt + +[nmz505] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz505.txt +centroid = (0.61132600512054192, -1.8992027148379056) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz505.txt +description = West Central Plateau, NM +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz505.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz505.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz505.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz505.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz505.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz505.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz505.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz505.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz505.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz505.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz505.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz505.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz505.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz505.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz505.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +station = ('kgup', 0.0085696519329416451) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz505.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz505.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz505.txt + +[nmz506] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz506.txt +centroid = (0.61219343375878299, -1.8859888270710565) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz506.txt +description = West Central Mountains, NM +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz506.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz506.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz506.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz506.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz506.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz506.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz506.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz506.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz506.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz506.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz506.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz506.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz506.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz506.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz506.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +station = ('kgnt', 0.0027683322592464187) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz506.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz506.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz506.txt + +[nmz507] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz507.txt +centroid = (0.61030149684962121, -1.8736772745274888) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz507.txt +description = West Central Highlands, NM +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz507.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz507.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz507.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz507.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz507.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz507.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz507.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz507.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz507.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz507.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz507.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz507.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz507.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz507.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz507.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +station = ('ke80', 0.0093245018632472764) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz507.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz507.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz507.txt + +[nmz508] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz508.txt +centroid = (0.59162472852402981, -1.8861703413132638) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz508.txt +description = Southwest Mountains, NM +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz508.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz508.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz508.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz508.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz508.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz508.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz508.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz508.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz508.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz508.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz508.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz508.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz508.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz508.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz508.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +station = ('ktcs', 0.016454867965275694) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz508.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz508.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz508.txt + +[nmz509] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz509.txt +centroid = (0.58405174489962652, -1.9004523705823335) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz509.txt +description = San Francisco River Valley, NM +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz509.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz509.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz509.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz509.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz509.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz509.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz509.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz509.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz509.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz509.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz509.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz509.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz509.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz509.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz509.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +station = ('ksad', 0.015276043323309372) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz509.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz509.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz509.txt + +[nmz510] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz510.txt +centroid = (0.64003492598659661, -1.8578122316268602) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz510.txt +description = San Juan Mountains, NM +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz510.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz510.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz510.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz510.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz510.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz510.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz510.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz510.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz510.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz510.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz510.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz510.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz510.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz510.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz510.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +station = ('ke33', 0.0044364770325273162) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz510.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz510.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz510.txt + +[nmz511] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz511.txt +centroid = (0.62662207068502018, -1.8604913120286712) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz511.txt +description = Jemez Mountains, NM +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz511.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz511.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz511.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz511.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz511.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz511.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz511.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz511.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz511.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz511.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz511.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz511.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz511.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz511.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz511.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +station = ('klam', 0.0046711614237157136) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz511.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz511.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz511.txt + +[nmz512] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz512.txt +centroid = (0.62990328967876952, -1.8436820460027139) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz512.txt +description = West Slopes Sangre De Cristo Mountains, NM +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz512.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz512.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz512.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz512.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz512.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz512.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz512.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz512.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz512.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz512.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz512.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz512.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz512.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz512.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz512.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +station = ('kskx', 0.0062848394159403052) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz512.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz512.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz512.txt + +[nmz513] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz513.txt +centroid = (0.64116415401263682, -1.8389748930100853) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz513.txt +description = Northern Sangre de Cristo Mountains above 9500 feet, NM +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz513.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz513.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz513.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz513.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz513.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz513.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz513.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz513.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz513.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz513.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz513.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz513.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz513.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz513.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz513.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +station = ('kaxx', 0.0056439270712973404) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz513.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz513.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz513.txt + +[nmz514] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz514.txt +centroid = (0.62651036961289253, -1.8434272279319228) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz514.txt +description = Southern Sangre de Cristo Mountains above 9500 feet, NM +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz514.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz514.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz514.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz514.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz514.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz514.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz514.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz514.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz514.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz514.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz514.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz514.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz514.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz514.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz514.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +station = ('ksaf', 0.0081725151665627965) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz514.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz514.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz514.txt + +[nmz515] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz515.txt +centroid = (0.63214254710907813, -1.8355627743224363) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz515.txt +description = East Slopes Sangre de Cristo Mountains, NM +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz515.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz515.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz515.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz515.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz515.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz515.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz515.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz515.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz515.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz515.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz515.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz515.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz515.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz515.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz515.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +station = ('kaxx', 0.0038324205310715006) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz515.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz515.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz515.txt + +[nmz516] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz516.txt +centroid = (0.63957241373481799, -1.8462738599419255) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz516.txt +description = Upper Rio Grande Valley, NM +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz516.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz516.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz516.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz516.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz516.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz516.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz516.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz516.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz516.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz516.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz516.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz516.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz516.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz516.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz516.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +station = ('kskx', 0.00377519424114917) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz516.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz516.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz516.txt + +[nmz517] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz517.txt +centroid = (0.63068519718366289, -1.8521329302408704) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz517.txt +description = Lower Chama River Valley, NM +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz517.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz517.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz517.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz517.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz517.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz517.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz517.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz517.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz517.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz517.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz517.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz517.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz517.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz517.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz517.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +station = ('klam', 0.0049411988050364706) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz517.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz517.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz517.txt + +[nmz518] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz518.txt +centroid = (0.62007359533153739, -1.8519741052789389) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz518.txt +description = Santa Fe metro area, NM +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz518.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz518.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz518.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz518.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz518.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz518.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz518.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz518.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz518.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz518.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz518.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz518.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz518.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz518.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz518.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +station = ('ksaf', 0.0016009514473556172) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz518.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz518.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz518.txt + +[nmz519] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz519.txt +centroid = (0.61090538077081113, -1.863039492736583) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz519.txt +description = Albuquerque metro area, NM +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz519.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz519.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz519.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz519.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz519.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz519.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz519.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz519.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz519.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz519.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz519.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz519.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz519.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz519.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz519.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +station = ('kabq', 0.0021325238066776339) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz519.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz519.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz519.txt + +[nmz520] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz520.txt +centroid = (0.59205582484927244, -1.8640256037639598) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz520.txt +description = Lower Rio Grande Valley, NM +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz520.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz520.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz520.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz520.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz520.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz520.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz520.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz520.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz520.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz520.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz520.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz520.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz520.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz520.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz520.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +station = ('konm', 0.0021850397596938965) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz520.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz520.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz520.txt + +[nmz521] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz521.txt +centroid = (0.61001351752304211, -1.8554979250387158) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz521.txt +description = Sandia/Manzano Mountains, NM +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz521.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz521.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz521.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz521.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz521.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz521.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz521.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz521.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz521.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz521.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz521.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz521.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz521.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz521.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz521.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +station = ('kabq', 0.0043575706848248338) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz521.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz521.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz521.txt + +[nmz522] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz522.txt +centroid = (0.60735538107225484, -1.8498832008350499) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz522.txt +description = Estancia Valley, NM +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz522.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz522.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz522.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz522.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz522.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz522.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz522.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz522.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz522.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz522.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz522.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz522.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz522.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz522.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz522.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +station = ('k0e0', 0.0031637159292151355) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz522.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz522.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz522.txt + +[nmz523] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz523.txt +centroid = (0.60841130526971132, -1.8425737619276978) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz523.txt +description = Central Highlands, NM +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz523.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz523.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz523.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz523.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz523.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz523.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz523.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz523.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz523.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz523.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz523.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz523.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz523.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz523.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz523.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +station = ('kcqc', 0.0028050629939087336) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz523.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz523.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz523.txt + +[nmz524] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz524.txt +centroid = (0.59573148825397249, -1.8529218190627719) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz524.txt +description = South Central Highlands, NM +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz524.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz524.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz524.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz524.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz524.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz524.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz524.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz524.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz524.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz524.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz524.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz524.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz524.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz524.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz524.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +station = ('k4cr', 0.0069777561083855296) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz524.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz524.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz524.txt + +[nmz525] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz525.txt +centroid = (0.58745164628251134, -1.8507471388147871) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz525.txt +description = Upper Tularosa Valley, NM +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz525.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz525.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz525.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz525.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz525.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz525.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz525.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz525.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz525.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz525.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz525.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz525.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz525.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz525.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz525.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +station = ('ksrr', 0.0080936832636695055) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz525.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz525.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz525.txt + +[nmz526] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz526.txt +centroid = (0.58620199053808342, -1.8428250893399849) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz526.txt +description = South Central Mountains, NM +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz526.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz526.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz526.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz526.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz526.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz526.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz526.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz526.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz526.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz526.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz526.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz526.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz526.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz526.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz526.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +station = ('ksrr', 0.0022344969570971293) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz526.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz526.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz526.txt + +[nmz527] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz527.txt +centroid = (0.64187799367670251, -1.820563414730797) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz527.txt +description = Raton Ridge/Johnson Mesa, NM +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz527.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz527.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz527.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz527.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz527.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz527.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz527.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz527.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz527.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz527.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz527.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz527.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz527.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz527.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz527.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +station = ('krtn', 0.0048927006767001289) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz527.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz527.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz527.txt + +[nmz528] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz528.txt +centroid = (0.63278657360306412, -1.8254381193316174) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz528.txt +description = Far Northeast Highlands, NM +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz528.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz528.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz528.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz528.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz528.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz528.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz528.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz528.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz528.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz528.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz528.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz528.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz528.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz528.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz528.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +station = ('krtn', 0.0085346291121668524) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz528.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz528.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz528.txt + +[nmz529] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz529.txt +centroid = (0.62015911646488509, -1.8326707637518818) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz529.txt +description = Northeast Highlands, NM +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz529.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz529.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz529.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz529.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz529.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz529.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz529.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz529.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz529.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz529.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz529.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz529.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz529.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz529.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz529.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +station = ('klvs', 0.002749447240813861) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz529.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz529.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz529.txt + +[nmz530] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz530.txt +centroid = (0.63620567360772107, -1.8050666363023395) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz530.txt +description = Union County, NM +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz530.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz530.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz530.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz530.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz530.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz530.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz530.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz530.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz530.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz530.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz530.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz530.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz530.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz530.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz530.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +station = ('kcao', 0.0038285316441298454) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz530.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz530.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz530.txt + +[nmz531] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz531.txt +centroid = (0.62584016318012659, -1.811999084091261) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz531.txt +description = Harding County, NM +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz531.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz531.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz531.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz531.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz531.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz531.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz531.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz531.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz531.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz531.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz531.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz531.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz531.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz531.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz531.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +station = ('ktcc', 0.01218243895531889) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz531.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz531.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz531.txt + +[nmz532] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz532.txt +centroid = (0.61858657480883827, -1.8194673479605445) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz532.txt +description = Eastern San Miguel County, NM +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz532.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz532.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz532.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz532.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz532.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz532.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz532.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz532.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz532.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz532.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz532.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz532.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz532.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz532.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz532.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +station = ('ktcc', 0.01027436845940052) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz532.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz532.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz532.txt + +[nmz533] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz533.txt +centroid = (0.60847937311053912, -1.8289427404696219) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz533.txt +description = Guadalupe County, NM +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz533.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz533.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz533.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz533.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz533.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz533.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz533.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz533.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz533.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz533.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz533.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz533.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz533.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz533.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz533.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +station = ('kcqc', 0.01275906847130274) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz533.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz533.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz533.txt + +[nmz534] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz534.txt +centroid = (0.61268561660784548, -1.8072832044523723) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz534.txt +description = Quay County, NM +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz534.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz534.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz534.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz534.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz534.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz534.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz534.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz534.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz534.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz534.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz534.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz534.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz534.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz534.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz534.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +station = ('ktcc', 0.0015550099883627638) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz534.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz534.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz534.txt + +[nmz535] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz535.txt +centroid = (0.60343362624302344, -1.8037419314000758) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz535.txt +description = Curry County, NM +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz535.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz535.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz535.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz535.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz535.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz535.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz535.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz535.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz535.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz535.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz535.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz535.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz535.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz535.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz535.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +station = ('kcvs', 0.0033593443614754748) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz535.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz535.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz535.txt + +[nmz536] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz536.txt +centroid = (0.59378370080874676, -1.8060702006222362) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz536.txt +description = Roosevelt County, NM +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz536.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz536.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz536.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz536.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz536.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz536.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz536.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz536.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz536.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz536.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz536.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz536.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz536.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz536.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz536.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +station = ('k4mr', 0.0067075852310735365) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz536.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz536.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz536.txt + +[nmz537] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz537.txt +centroid = (0.59938795303690062, -1.8223331785923196) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz537.txt +description = De Baca County, NM +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz537.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz537.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz537.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz537.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz537.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz537.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz537.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz537.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz537.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz537.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz537.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz537.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz537.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz537.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz537.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +station = ('k4mr', 0.008852641613431066) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz537.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz537.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz537.txt + +[nmz538] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz538.txt +centroid = (0.58465388349156444, -1.820572141377057) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz538.txt +description = Chaves County Plains, NM +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz538.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz538.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz538.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz538.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz538.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz538.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz538.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz538.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz538.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz538.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz538.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz538.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz538.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz538.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz538.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +station = ('krow', 0.0047383558602047127) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz538.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz538.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz538.txt + +[nmz539] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz539.txt +centroid = (0.58975373556589195, -1.8354371106162928) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz539.txt +description = Eastern Lincoln County, NM +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz539.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz539.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz539.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz539.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz539.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz539.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz539.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz539.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz539.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz539.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz539.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz539.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz539.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz539.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz539.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +station = ('ksrr', 0.0078051346344324563) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz539.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz539.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz539.txt + +[nmz540] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nm/nmz540.txt +centroid = (0.57279262589501112, -1.8342677400174565) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nm/nmz540.txt +description = Southwest Chaves County, NM +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nm/nmz540.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nm/nmz540.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nm/nmz540.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nm/nmz540.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nm/nmz540.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nm/nmz540.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nm/nmz540.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nm/nmz540.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nm.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nm/nmz540.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nm/nmz540.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nm/nmz540.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nm/nmz540.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nm/nmz540.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nm/nmz540.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nm/nmz540.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nm.txt +station = ('kats', 0.0092328483362189295) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nm/nmz540.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nm/nmz540.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nm/nmz540.txt + +[nvz001] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nv/nvz001.txt +centroid = (0.67381402832969473, -2.0700198340598424) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nv/nvz001.txt +description = Mineral and Southern Lyon Counties, NV +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nv/nvz001.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nv/nvz001.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nv/nvz001.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nv/nvz001.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nv/nvz001.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nv/nvz001.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nv/nvz001.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nv/nvz001.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nv/nvz001.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nv/nvz001.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nv/nvz001.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nv/nvz001.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nv/nvz001.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nv/nvz001.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nv/nvz001.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nv.txt +station = ('kban', 0.013258003630362681) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nv/nvz001.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nv/nvz001.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nv/nvz001.txt + +[nvz002] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nv/nvz002.txt +centroid = (0.6844361021573323, -2.0929098271997484) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nv/nvz002.txt +description = Greater Lake Tahoe Area, NV +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nv/nvz002.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nv/nvz002.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nv/nvz002.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nv/nvz002.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nv/nvz002.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nv/nvz002.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nv/nvz002.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nv/nvz002.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nv/nvz002.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nv/nvz002.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nv/nvz002.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nv/nvz002.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nv/nvz002.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nv/nvz002.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nv/nvz002.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nv.txt +station = ('kcxp', 0.0024995542625908126) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nv/nvz002.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nv/nvz002.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nv/nvz002.txt + +[nvz003] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nv/nvz003.txt +centroid = (0.68792327000281706, -2.0883859337785791) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nv/nvz003.txt +description = Greater Reno-Carson City-Minden Area, NV +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nv/nvz003.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nv/nvz003.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nv/nvz003.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nv/nvz003.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nv/nvz003.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nv/nvz003.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nv/nvz003.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nv/nvz003.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nv/nvz003.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nv/nvz003.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nv/nvz003.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nv/nvz003.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nv/nvz003.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nv/nvz003.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nv/nvz003.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nv.txt +station = ('krno', 0.0019117585936473719) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nv/nvz003.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nv/nvz003.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nv/nvz003.txt + +[nvz004] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nv/nvz004.txt +centroid = (0.69839699084403495, -2.0680406306880812) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nv/nvz004.txt +description = Western Nevada Basin and Range including Pyramid Lake, NV +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nv/nvz004.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nv/nvz004.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nv/nvz004.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nv/nvz004.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nv/nvz004.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nv/nvz004.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nv/nvz004.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nv/nvz004.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nv/nvz004.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nv/nvz004.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nv/nvz004.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nv/nvz004.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nv/nvz004.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nv/nvz004.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nv/nvz004.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nv.txt +station = ('klol', 0.0013624642583752928) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nv/nvz004.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nv/nvz004.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nv/nvz004.txt + +[nvz005] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nv/nvz005.txt +centroid = (0.71755023405542073, -2.0886110812520862) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nv/nvz005.txt +description = Northern Washoe County, NV +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nv/nvz005.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nv/nvz005.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nv/nvz005.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nv/nvz005.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nv/nvz005.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nv/nvz005.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nv/nvz005.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nv/nvz005.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nv/nvz005.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nv/nvz005.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nv/nvz005.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nv/nvz005.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nv/nvz005.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nv/nvz005.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nv/nvz005.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nv.txt +station = ('kaat', 0.013436343142288795) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nv/nvz005.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nv/nvz005.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nv/nvz005.txt + +[nvz014] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nv/nvz014.txt +centroid = (0.65583015571714531, -2.0411817588291403) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nv/nvz014.txt +description = Esmeralda and Central Nye County, NV +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nv/nvz014.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nv/nvz014.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nv/nvz014.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nv/nvz014.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nv/nvz014.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nv/nvz014.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nv/nvz014.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nv/nvz014.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nv/nvz014.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nv/nvz014.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nv/nvz014.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nv/nvz014.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nv/nvz014.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nv/nvz014.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nv/nvz014.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nv.txt +station = ('ktph', 0.0081825041096496801) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nv/nvz014.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nv/nvz014.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nv/nvz014.txt + +[nvz015] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nv/nvz015.txt +centroid = (0.65724910839901673, -2.0048736743999025) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nv/nvz015.txt +description = Lincoln County, NV +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nv/nvz015.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nv/nvz015.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nv/nvz015.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nv/nvz015.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nv/nvz015.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nv/nvz015.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nv/nvz015.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nv/nvz015.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nv/nvz015.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nv/nvz015.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nv/nvz015.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nv/nvz015.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nv/nvz015.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nv/nvz015.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nv/nvz015.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nv.txt +station = ('ksgu', 0.020276803491436898) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nv/nvz015.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nv/nvz015.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nv/nvz015.txt + +[nvz016] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nv/nvz016.txt +centroid = (0.63875036365712878, -1.9985887437634706) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nv/nvz016.txt +description = Northeast Clark County, NV +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nv/nvz016.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nv/nvz016.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nv/nvz016.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nv/nvz016.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nv/nvz016.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nv/nvz016.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nv/nvz016.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nv/nvz016.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nv/nvz016.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nv/nvz016.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nv/nvz016.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nv/nvz016.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nv/nvz016.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nv/nvz016.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nv/nvz016.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nv.txt +station = ('klsv', 0.0097120770569686272) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nv/nvz016.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nv/nvz016.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nv/nvz016.txt + +[nvz017] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nv/nvz017.txt +centroid = (0.63732792031675334, -2.0243079156208594) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nv/nvz017.txt +description = Western Clark and Southern Nye County, NV +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nv/nvz017.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nv/nvz017.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nv/nvz017.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nv/nvz017.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nv/nvz017.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nv/nvz017.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nv/nvz017.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nv/nvz017.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nv/nvz017.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nv/nvz017.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nv/nvz017.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nv/nvz017.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nv/nvz017.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nv/nvz017.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nv/nvz017.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nv.txt +station = ('kdra', 0.0021567933079713712) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nv/nvz017.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nv/nvz017.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nv/nvz017.txt + +[nvz018] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nv/nvz018.txt +centroid = (0.64190766427398649, -2.0097658322932426) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nv/nvz018.txt +description = Sheep Range, NV +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nv/nvz018.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nv/nvz018.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nv/nvz018.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nv/nvz018.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nv/nvz018.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nv/nvz018.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nv/nvz018.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nv/nvz018.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nv/nvz018.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nv/nvz018.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nv/nvz018.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nv/nvz018.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nv/nvz018.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nv/nvz018.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nv/nvz018.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nv.txt +station = ('kins', 0.0079806903332036248) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nv/nvz018.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nv/nvz018.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nv/nvz018.txt + +[nvz019] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nv/nvz019.txt +centroid = (0.63241656380164135, -2.0189811707437726) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nv/nvz019.txt +description = Spring Mountains-Red Rock Canyon, NV +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nv/nvz019.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nv/nvz019.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nv/nvz019.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nv/nvz019.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nv/nvz019.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nv/nvz019.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nv/nvz019.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nv/nvz019.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nv/nvz019.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nv/nvz019.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nv/nvz019.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nv/nvz019.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nv/nvz019.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nv/nvz019.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nv/nvz019.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nv.txt +station = ('kins', 0.0060855606810320999) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nv/nvz019.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nv/nvz019.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nv/nvz019.txt + +[nvz020] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nv/nvz020.txt +centroid = (0.63082307819457051, -2.0101166434728932) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nv/nvz020.txt +description = Las Vegas Valley, NV +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nv/nvz020.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nv/nvz020.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nv/nvz020.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nv/nvz020.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nv/nvz020.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nv/nvz020.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nv/nvz020.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nv/nvz020.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nv/nvz020.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nv/nvz020.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nv/nvz020.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nv/nvz020.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nv/nvz020.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nv/nvz020.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nv/nvz020.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nv.txt +station = ('kvgt', 0.0010008189040588977) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nv/nvz020.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nv/nvz020.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nv/nvz020.txt + +[nvz021] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nv/nvz021.txt +centroid = (0.62729227711778601, -2.0000321310548701) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nv/nvz021.txt +description = Lake Mead National Recreation Area, NV +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nv/nvz021.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nv/nvz021.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nv/nvz021.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nv/nvz021.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nv/nvz021.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nv/nvz021.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nv/nvz021.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nv/nvz021.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nv/nvz021.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nv/nvz021.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nv/nvz021.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nv/nvz021.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nv/nvz021.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nv/nvz021.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nv/nvz021.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nv.txt +station = ('kbvu', 0.0037672851956314451) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nv/nvz021.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nv/nvz021.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nv/nvz021.txt + +[nvz022] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nv/nvz022.txt +centroid = (0.62021671233020104, -2.0075161028874215) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nv/nvz022.txt +description = Southern Clark County, NV +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nv/nvz022.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nv/nvz022.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nv/nvz022.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nv/nvz022.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nv/nvz022.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nv/nvz022.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nv/nvz022.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nv/nvz022.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nv/nvz022.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nv/nvz022.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nv/nvz022.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nv/nvz022.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nv/nvz022.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nv/nvz022.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nv/nvz022.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nv.txt +station = ('kbvu', 0.0074194170211329628) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nv/nvz022.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nv/nvz022.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nv/nvz022.txt + +[nvz030] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nv/nvz030.txt +centroid = (0.72268499271478803, -2.0614432861155425) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nv/nvz030.txt +description = Humboldt County, NV +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nv/nvz030.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nv/nvz030.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nv/nvz030.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nv/nvz030.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nv/nvz030.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nv/nvz030.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nv/nvz030.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nv/nvz030.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nv/nvz030.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nv/nvz030.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nv/nvz030.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nv/nvz030.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nv/nvz030.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nv/nvz030.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nv/nvz030.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nv.txt +station = ('kwmc', 0.0097493887001493737) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nv/nvz030.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nv/nvz030.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nv/nvz030.txt + +[nvz031] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nv/nvz031.txt +centroid = (0.72509180175328825, -2.0175552367448928) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nv/nvz031.txt +description = Northern Elko County, NV +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nv/nvz031.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nv/nvz031.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nv/nvz031.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nv/nvz031.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nv/nvz031.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nv/nvz031.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nv/nvz031.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nv/nvz031.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nv/nvz031.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nv/nvz031.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nv/nvz031.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nv/nvz031.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nv/nvz031.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nv/nvz031.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nv/nvz031.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nv.txt +station = ('keko', 0.012653576893404055) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nv/nvz031.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nv/nvz031.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nv/nvz031.txt + +[nvz033] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nv/nvz033.txt +centroid = (0.70944492500915912, -1.9937437097599344) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nv/nvz033.txt +description = Extreme Eastern Elko County, NV +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nv/nvz033.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nv/nvz033.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nv/nvz033.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nv/nvz033.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nv/nvz033.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nv/nvz033.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nv/nvz033.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nv/nvz033.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nv/nvz033.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nv/nvz033.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nv/nvz033.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nv/nvz033.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nv/nvz033.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nv/nvz033.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nv/nvz033.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nv.txt +station = ('kenv', 0.0030326125479132253) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nv/nvz033.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nv/nvz033.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nv/nvz033.txt + +[nvz034] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nv/nvz034.txt +centroid = (0.70762629192858095, -2.0139546224980287) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nv/nvz034.txt +description = Ruby Mountains/East Humboldt Range, NV +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nv/nvz034.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nv/nvz034.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nv/nvz034.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nv/nvz034.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nv/nvz034.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nv/nvz034.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nv/nvz034.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nv/nvz034.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nv/nvz034.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nv/nvz034.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nv/nvz034.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nv/nvz034.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nv/nvz034.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nv/nvz034.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nv/nvz034.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nv.txt +station = ('keko', 0.0072419469212040071) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nv/nvz034.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nv/nvz034.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nv/nvz034.txt + +[nvz035] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nv/nvz035.txt +centroid = (0.68832818638927962, -2.0053431679686886) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nv/nvz035.txt +description = White Pine County, NV +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nv/nvz035.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nv/nvz035.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nv/nvz035.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nv/nvz035.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nv/nvz035.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nv/nvz035.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nv/nvz035.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nv/nvz035.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nv/nvz035.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nv/nvz035.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nv/nvz035.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nv/nvz035.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nv/nvz035.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nv/nvz035.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nv/nvz035.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nv.txt +station = ('kely', 0.0024981206972126625) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nv/nvz035.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nv/nvz035.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nv/nvz035.txt + +[nvz036] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nv/nvz036.txt +centroid = (0.70668032347400012, -2.0368149450406507) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nv/nvz036.txt +description = Northern Lander County and Northern Eureka County, NV +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nv/nvz036.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nv/nvz036.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nv/nvz036.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nv/nvz036.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nv/nvz036.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nv/nvz036.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nv/nvz036.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nv/nvz036.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nv/nvz036.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nv/nvz036.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nv/nvz036.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nv/nvz036.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nv/nvz036.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nv/nvz036.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nv/nvz036.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nv.txt +station = ('keko', 0.013547148226023807) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nv/nvz036.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nv/nvz036.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nv/nvz036.txt + +[nvz037] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nv/nvz037.txt +centroid = (0.69138600323877375, -2.0369667886855738) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nv/nvz037.txt +description = Southern Lander County and Southern Eureka County, NV +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nv/nvz037.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nv/nvz037.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nv/nvz037.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nv/nvz037.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nv/nvz037.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nv/nvz037.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nv/nvz037.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nv/nvz037.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nv/nvz037.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nv/nvz037.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nv/nvz037.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nv/nvz037.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nv/nvz037.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nv/nvz037.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nv/nvz037.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nv.txt +station = ('k05u', 0.0094596534300600624) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nv/nvz037.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nv/nvz037.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nv/nvz037.txt + +[nvz038] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nv/nvz038.txt +centroid = (0.71067059992966464, -2.0198743080818953) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nv/nvz038.txt +description = Southwestern Elko County, NV +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nv/nvz038.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nv/nvz038.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nv/nvz038.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nv/nvz038.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nv/nvz038.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nv/nvz038.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nv/nvz038.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nv/nvz038.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nv/nvz038.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nv/nvz038.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nv/nvz038.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nv/nvz038.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nv/nvz038.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nv/nvz038.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nv/nvz038.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nv.txt +station = ('keko', 0.0021245902650282649) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nv/nvz038.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nv/nvz038.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nv/nvz038.txt + +[nvz039] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nv/nvz039.txt +centroid = (0.70860367630969778, -2.0045106459154876) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nv/nvz039.txt +description = South Central Elko County, NV +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nv/nvz039.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nv/nvz039.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nv/nvz039.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nv/nvz039.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nv/nvz039.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nv/nvz039.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nv/nvz039.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nv/nvz039.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nv/nvz039.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nv/nvz039.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nv/nvz039.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nv/nvz039.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nv/nvz039.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nv/nvz039.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nv/nvz039.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nv.txt +station = ('kenv', 0.011059056541769165) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nv/nvz039.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nv/nvz039.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nv/nvz039.txt + +[nvz040] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nv/nvz040.txt +centroid = (0.66403849154915207, -2.0328411444931249) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nv/nvz040.txt +description = Northwestern Nye County, NV +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nv/nvz040.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nv/nvz040.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nv/nvz040.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nv/nvz040.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nv/nvz040.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nv/nvz040.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nv/nvz040.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nv/nvz040.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nv/nvz040.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nv/nvz040.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nv/nvz040.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nv/nvz040.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nv/nvz040.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nv/nvz040.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nv/nvz040.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nv.txt +station = ('kbjn', 0.0080290706243569699) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nv/nvz040.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nv/nvz040.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nv/nvz040.txt + +[nvz041] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/nv/nvz041.txt +centroid = (0.67281898121654793, -2.022294154729908) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/nv/nvz041.txt +description = Northeastern Nye County, NV +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/nv/nvz041.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/nv/nvz041.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/nv/nvz041.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/nv/nvz041.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/nv/nvz041.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/nv/nvz041.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/nv/nvz041.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/nv/nvz041.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/nv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/nv/nvz041.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/nv/nvz041.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/nv/nvz041.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/nv/nvz041.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/nv/nvz041.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/nv/nvz041.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/nv/nvz041.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/nv.txt +station = ('kbjn', 0.017156434008649506) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/nv/nvz041.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/nv/nvz041.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/nv/nvz041.txt + +[nyz001] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz001.txt +centroid = (0.75400143548332221, -1.3743158862516351) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz001.txt +description = Niagara, NY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz001.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz001.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz001.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz001.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz001.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz001.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz001.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz001.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz001.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz001.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz001.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz001.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz001.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz001.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz001.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +station = ('kiag', 0.0028415686642183613) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz001.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz001.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz001.txt + +[nyz002] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz002.txt +centroid = (0.75489329873109146, -1.365392017786188) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz002.txt +description = Orleans, NY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz002.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz002.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz002.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz002.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz002.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz002.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz002.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz002.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz002.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz002.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz002.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz002.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz002.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz002.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz002.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +station = ('kroc', 0.0073625656542418965) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz002.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz002.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz002.txt + +[nyz003] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz003.txt +centroid = (0.75304674038248143, -1.3560492703002622) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz003.txt +description = Monroe, NY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz003.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz003.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz003.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz003.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz003.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz003.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz003.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz003.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz003.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz003.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz003.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz003.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz003.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz003.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz003.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +station = ('kroc', 0.00054306893783886306) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz003.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz003.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz003.txt + +[nyz004] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz004.txt +centroid = (0.75322476396618476, -1.3444131601772162) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz004.txt +description = Wayne, NY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz004.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz004.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz004.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz004.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz004.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz004.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz004.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz004.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz004.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz004.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz004.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz004.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz004.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz004.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz004.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +station = ('kroc', 0.0083601941901045203) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz004.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz004.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz004.txt + +[nyz005] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz005.txt +centroid = (0.75358953777985171, -1.337068814684824) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz005.txt +description = Northern Cayuga, NY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz005.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz005.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz005.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz005.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz005.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz005.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz005.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz005.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz005.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz005.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz005.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz005.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz005.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz005.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz005.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +station = ('kfzy', 0.0041529204595653875) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz005.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz005.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz005.txt + +[nyz006] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz006.txt +centroid = (0.75792668097105753, -1.3289146364195064) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz006.txt +description = Oswego, NY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz006.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz006.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz006.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz006.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz006.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz006.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz006.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz006.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz006.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz006.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz006.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz006.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz006.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz006.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz006.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +station = ('kfzy', 0.0033453397338893387) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz006.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz006.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz006.txt + +[nyz007] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz007.txt +centroid = (0.76865871054157064, -1.3248829258473995) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz007.txt +description = Jefferson, NY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz007.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz007.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz007.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz007.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz007.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz007.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz007.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz007.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz007.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz007.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz007.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz007.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz007.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz007.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz007.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +station = ('kart', 0.0018434669168991074) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz007.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz007.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz007.txt + +[nyz008] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz008.txt +centroid = (0.76418717699796124, -1.3168299766786977) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz008.txt +description = Lewis, NY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz008.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz008.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz008.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz008.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz008.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz008.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz008.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz008.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz008.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz008.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz008.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz008.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz008.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz008.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz008.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +station = ('kgtb', 0.0058512224778748904) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz008.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz008.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz008.txt + +[nyz009] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz009.txt +centroid = (0.75714651879541617, -1.3171860238461046) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz009.txt +description = Northern Oneida, NY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz009.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz009.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz009.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz009.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz009.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz009.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz009.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz009.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz009.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz009.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz009.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz009.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz009.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz009.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz009.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +station = ('krme', 0.0027279578356460207) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz009.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz009.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz009.txt + +[nyz010] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz010.txt +centroid = (0.74940074757506525, -1.3734397309671338) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz010.txt +description = Northern Erie, NY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz010.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz010.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz010.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz010.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz010.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz010.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz010.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz010.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz010.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz010.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz010.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz010.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz010.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz010.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz010.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +station = ('kbuf', 0.00052934058656521025) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz010.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz010.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz010.txt + +[nyz011] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz011.txt +centroid = (0.75050903165008165, -1.3647357739874382) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz011.txt +description = Genesee, NY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz011.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz011.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz011.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz011.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz011.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz011.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz011.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz011.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz011.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz011.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz011.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz011.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz011.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz011.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz011.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +station = ('kroc', 0.0068130197947931436) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz011.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz011.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz011.txt + +[nyz012] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz012.txt +centroid = (0.74529573317437459, -1.3652750807263043) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz012.txt +description = Wyoming, NY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz012.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz012.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz012.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz012.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz012.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz012.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz012.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz012.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz012.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz012.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz012.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz012.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz012.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz012.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz012.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +station = ('kbuf', 0.00766122851053862) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz012.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz012.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz012.txt + +[nyz013] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz013.txt +centroid = (0.74574602812138913, -1.3574368070555978) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz013.txt +description = Livingston, NY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz013.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz013.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz013.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz013.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz013.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz013.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz013.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz013.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz013.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz013.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz013.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz013.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz013.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz013.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz013.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +station = ('kdsv', 0.002916685067522305) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz013.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz013.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz013.txt + +[nyz014] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz014.txt +centroid = (0.74792419902787799, -1.3491360211331129) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz014.txt +description = Ontario, NY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz014.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz014.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz014.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz014.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz014.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz014.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz014.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz014.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz014.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz014.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz014.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz014.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz014.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz014.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz014.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +station = ('kpeo', 0.0047738705377976245) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz014.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz014.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz014.txt + +[nyz015] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz015.txt +centroid = (0.74409494664900244, -1.3457448463964878) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz015.txt +description = Yates, NY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz015.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz015.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz015.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz015.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz015.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz015.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz015.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz015.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz015.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz015.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz015.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz015.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz015.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz015.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz015.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +station = ('kpeo', 0.00076854211102928504) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz015.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz015.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz015.txt + +[nyz016] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz016.txt +centroid = (0.74666930729569414, -1.3408265085643678) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz016.txt +description = Seneca, NY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz016.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz016.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz016.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz016.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz016.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz016.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz016.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz016.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz016.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz016.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz016.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz016.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz016.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz016.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz016.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +station = ('kpeo', 0.0036944352361303469) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz016.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz016.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz016.txt + +[nyz017] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz017.txt +centroid = (0.74702186380459701, -1.3357039672097644) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz017.txt +description = Southern Cayuga, NY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz017.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz017.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz017.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz017.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz017.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz017.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz017.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz017.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz017.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz017.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz017.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz017.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz017.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz017.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz017.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +station = ('kith', 0.0054949276303378073) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz017.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz017.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz017.txt + +[nyz018] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz018.txt +centroid = (0.75059280745417734, -1.3298466422400712) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz018.txt +description = Onondaga, NY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz018.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz018.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz018.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz018.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz018.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz018.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz018.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz018.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz018.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz018.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz018.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz018.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz018.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz018.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz018.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +station = ('ksyr', 0.0022802164741948733) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz018.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz018.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz018.txt + +[nyz019] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz019.txt +centroid = (0.73702112719066948, -1.3852049954548276) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz019.txt +description = Chautauqua, NY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz019.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz019.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz019.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz019.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz019.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz019.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz019.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz019.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz019.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz019.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz019.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz019.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz019.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz019.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz019.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +station = ('kjhw', 0.0018778156557588889) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz019.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz019.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz019.txt + +[nyz020] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz020.txt +centroid = (0.73737717435807637, -1.3732058568473666) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz020.txt +description = Cattaraugus, NY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz020.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz020.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz020.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz020.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz020.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz020.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz020.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz020.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz020.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz020.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz020.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz020.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz020.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz020.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz020.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +station = ('kole', 0.00404318325571417) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz020.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz020.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz020.txt + +[nyz021] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz021.txt +centroid = (0.73753076333225176, -1.3618385274291276) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz021.txt +description = Allegany, NY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz021.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz021.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz021.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz021.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz021.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz021.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz021.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz021.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz021.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz021.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz021.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz021.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz021.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz021.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz021.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +station = ('kelz', 0.0027702443123244535) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz021.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz021.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz021.txt + +[nyz022] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz022.txt +centroid = (0.73771227757445923, -1.3506020977047879) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz022.txt +description = Steuben, NY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz022.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz022.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz022.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz022.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz022.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz022.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz022.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz022.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz022.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz022.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz022.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz022.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz022.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz022.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz022.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +station = ('kelm', 0.0064978983057383342) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz022.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz022.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz022.txt + +[nyz023] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz023.txt +centroid = (0.73991139243197201, -1.3417253531291449) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz023.txt +description = Schuyler, NY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz023.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz023.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz023.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz023.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz023.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz023.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz023.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz023.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz023.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz023.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz023.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz023.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz023.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz023.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz023.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +station = ('kelm', 0.0039771386020580638) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz023.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz023.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz023.txt + +[nyz024] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz024.txt +centroid = (0.73550443607068638, -1.3397147338308475) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz024.txt +description = Chemung, NY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz024.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz024.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz024.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz024.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz024.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz024.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz024.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz024.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz024.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz024.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz024.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz024.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz024.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz024.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz024.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +station = ('kelm', 0.0018647634186832447) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz024.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz024.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz024.txt + +[nyz025] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz025.txt +centroid = (0.74092717405663278, -1.3347178561823876) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz025.txt +description = Tompkins, NY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz025.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz025.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz025.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz025.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz025.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz025.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz025.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz025.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz025.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz025.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz025.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz025.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz025.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz025.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz025.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +station = ('kith', 0.00070605041559720309) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz025.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz025.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz025.txt + +[nyz026] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz026.txt +centroid = (0.782722573654141, -1.3075203904485599) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz026.txt +description = Northern St. Lawrence, NY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz026.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz026.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz026.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz026.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz026.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz026.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz026.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz026.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz026.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz026.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz026.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz026.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz026.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz026.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz026.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +station = ('kmss', 0.0017147025404951966) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz026.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz026.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz026.txt + +[nyz027] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz027.txt +centroid = (0.78368075941348592, -1.2989752584307956) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz027.txt +description = Northern Franklin, NY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz027.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz027.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz027.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz027.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz027.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz027.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz027.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz027.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz027.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz027.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz027.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz027.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz027.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz027.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz027.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +station = ('cwbz', 0.0041448817881510891) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz027.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz027.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz027.txt + +[nyz028] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz028.txt +centroid = (0.78195288345401148, -1.2830456383478435) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz028.txt +description = Eastern Clinton, NY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz028.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz028.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz028.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz028.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz028.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz028.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz028.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz028.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz028.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz028.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz028.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz028.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz028.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz028.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz028.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +station = ('kpbg', 0.002724899110839661) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz028.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz028.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz028.txt + +[nyz029] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz029.txt +centroid = (0.77354214178865088, -1.3064749382266154) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz029.txt +description = Southeastern St. Lawrence, NY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz029.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz029.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz029.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz029.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz029.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz029.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz029.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz029.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz029.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz029.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz029.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz029.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz029.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz029.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz029.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +station = ('kslk', 0.0082958027408079546) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz029.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz029.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz029.txt + +[nyz030] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz030.txt +centroid = (0.77695426047629967, -1.2963153766507562) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz030.txt +description = Southern Franklin, NY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz030.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz030.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz030.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz030.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz030.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz030.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz030.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz030.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz030.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz030.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz030.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz030.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz030.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz030.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz030.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +station = ('kslk', 0.0022246731213133369) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz030.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz030.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz030.txt + +[nyz031] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz031.txt +centroid = (0.78028260335985289, -1.2879325602534275) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz031.txt +description = Western Clinton, NY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz031.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz031.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz031.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz031.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz031.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz031.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz031.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz031.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz031.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz031.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz031.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz031.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz031.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz031.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz031.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +station = ('kpbg', 0.0041711137156645994) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz031.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz031.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz031.txt + +[nyz032] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz032.txt +centroid = (0.76290261466849341, -1.3084611229153851) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz032.txt +description = Northern Herkimer, NY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz032.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz032.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz032.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz032.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz032.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz032.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz032.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz032.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz032.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz032.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz032.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz032.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz032.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz032.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz032.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +station = ('krme', 0.0099644999171139316) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz032.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz032.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz032.txt + +[nyz033] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz033.txt +centroid = (0.76202995004249618, -1.3002231688459716) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz033.txt +description = Hamilton, NY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz033.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz033.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz033.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz033.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz033.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz033.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz033.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz033.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz033.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz033.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz033.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz033.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz033.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz033.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz033.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +station = ('kgfl', 0.012531316711693212) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz033.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz033.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz033.txt + +[nyz034] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz034.txt +centroid = (0.76943014607095217, -1.2890146643896641) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz034.txt +description = Western Essex, NY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz034.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz034.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz034.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz034.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz034.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz034.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz034.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz034.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz034.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz034.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz034.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz034.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz034.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz034.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz034.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +station = ('kslk', 0.0069859351294547017) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz034.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz034.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz034.txt + +[nyz035] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz035.txt +centroid = (0.77228899538571882, -1.281673809555776) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz035.txt +description = Eastern Essex, NY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz035.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz035.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz035.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz035.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz035.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz035.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz035.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz035.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz035.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz035.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz035.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz035.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz035.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz035.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz035.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +station = ('kbtv', 0.0052009458352123457) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz035.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz035.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz035.txt + +[nyz036] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz036.txt +centroid = (0.74897139657907463, -1.3206854089963533) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz036.txt +description = Madison, NY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz036.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz036.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz036.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz036.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz036.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz036.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz036.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz036.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz036.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz036.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz036.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz036.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz036.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz036.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz036.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +station = ('krme', 0.0065650957696699059) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz036.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz036.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz036.txt + +[nyz037] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz037.txt +centroid = (0.75258597345995482, -1.3160969383928602) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz037.txt +description = Southern Oneida, NY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz037.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz037.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz037.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz037.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz037.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz037.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz037.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz037.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz037.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz037.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz037.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz037.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz037.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz037.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz037.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +station = ('krme', 0.0019799323760721901) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz037.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz037.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz037.txt + +[nyz038] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz038.txt +centroid = (0.75210251725715249, -1.3082097955030976) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz038.txt +description = Southern Herkimer, NY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz038.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz038.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz038.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz038.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz038.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz038.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz038.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz038.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz038.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz038.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz038.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz038.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz038.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz038.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz038.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +station = ('krme', 0.0061779507223872383) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz038.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz038.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz038.txt + +[nyz039] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz039.txt +centroid = (0.75119669137536738, -1.298896718614456) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz039.txt +description = Southern Fulton, NY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz039.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz039.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz039.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz039.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz039.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz039.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz039.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz039.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz039.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz039.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz039.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz039.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz039.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz039.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz039.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +station = ('ksch', 0.0070645786563126025) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz039.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz039.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz039.txt + +[nyz040] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz040.txt +centroid = (0.74878639167836314, -1.2992178591968229) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz040.txt +description = Montgomery, NY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz040.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz040.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz040.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz040.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz040.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz040.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz040.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz040.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz040.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz040.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz040.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz040.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz040.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz040.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz040.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +station = ('kalb', 0.0086091436451136566) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz040.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz040.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz040.txt + +[nyz041] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz041.txt +centroid = (0.75364713364516744, -1.2890687695964758) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz041.txt +description = Northern Saratoga, NY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz041.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz041.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz041.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz041.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz041.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz041.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz041.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz041.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz041.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz041.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz041.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz041.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz041.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz041.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz041.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +station = ('kgfl', 0.0040636219784833186) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz041.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz041.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz041.txt + +[nyz042] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz042.txt +centroid = (0.76092166596747979, -1.2891804706686034) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz042.txt +description = Northern Warren, NY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz042.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz042.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz042.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz042.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz042.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz042.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz042.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz042.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz042.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz042.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz042.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz042.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz042.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz042.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz042.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +station = ('kgfl', 0.0055800791651188404) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz042.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz042.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz042.txt + +[nyz043] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz043.txt +centroid = (0.75956030915092421, -1.2814888046550645) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz043.txt +description = Northern Washington, NY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz043.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz043.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz043.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz043.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz043.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz043.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz043.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz043.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz043.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz043.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz043.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz043.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz043.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz043.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz043.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +station = ('kgfl', 0.0040668302380158167) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz043.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz043.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz043.txt + +[nyz044] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz044.txt +centroid = (0.7434229948869846, -1.3276754526505905) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz044.txt +description = Cortland, NY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz044.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz044.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz044.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz044.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz044.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz044.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz044.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz044.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz044.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz044.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz044.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz044.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz044.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz044.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz044.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +station = ('kith', 0.0053118456362933573) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz044.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz044.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz044.txt + +[nyz045] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz045.txt +centroid = (0.74165323102546243, -1.3196696273716926) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz045.txt +description = Chenango, NY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz045.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz045.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz045.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz045.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz045.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz045.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz045.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz045.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz045.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz045.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz045.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz045.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz045.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz045.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz045.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +station = ('kbgm', 0.0070188182126966056) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz045.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz045.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz045.txt + +[nyz046] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz046.txt +centroid = (0.74410018263675848, -1.3095659163318973) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz046.txt +description = Otsego, NY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz046.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz046.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz046.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz046.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz046.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz046.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz046.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz046.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz046.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz046.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz046.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz046.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz046.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz046.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz046.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +station = ('krme', 0.011468728169078086) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz046.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz046.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz046.txt + +[nyz047] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz047.txt +centroid = (0.74330431249784912, -1.2992597470988707) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz047.txt +description = Schoharie, NY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz047.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz047.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz047.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz047.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz047.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz047.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz047.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz047.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz047.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz047.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz047.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz047.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz047.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz047.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz047.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +station = ('kalb', 0.0087105425678949185) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz047.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz047.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz047.txt + +[nyz048] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz048.txt +centroid = (0.74682638692837355, -1.2942681054381668) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz048.txt +description = Western Schenectady, NY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz048.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz048.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz048.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz048.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz048.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz048.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz048.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz048.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz048.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz048.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz048.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz048.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz048.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz048.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz048.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +station = ('ksch', 0.0030380155854904814) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz048.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz048.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz048.txt + +[nyz049] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz049.txt +centroid = (0.74773570346866269, -1.2911212767968214) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz049.txt +description = Eastern Schenectady, NY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz049.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz049.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz049.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz049.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz049.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz049.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz049.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz049.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz049.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz049.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz049.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz049.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz049.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz049.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz049.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +station = ('ksch', 0.00056064252466014354) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz049.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz049.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz049.txt + +[nyz050] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz050.txt +centroid = (0.74946707008664104, -1.2893934008373469) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz050.txt +description = Southern Saratoga, NY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz050.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz050.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz050.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz050.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz050.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz050.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz050.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz050.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz050.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz050.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz050.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz050.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz050.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz050.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz050.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +station = ('ksch', 0.0017497719884924155) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz050.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz050.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz050.txt + +[nyz051] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz051.txt +centroid = (0.7428924147943784, -1.2937253080407969) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz051.txt +description = Western Albany, NY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz051.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz051.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz051.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz051.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz051.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz051.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz051.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz051.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz051.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz051.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz051.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz051.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz051.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz051.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz051.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +station = ('kalb', 0.005279422734088688) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz051.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz051.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz051.txt + +[nyz052] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz052.txt +centroid = (0.74389946977277921, -1.2894422700564026) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz052.txt +description = Eastern Albany, NY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz052.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz052.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz052.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz052.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz052.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz052.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz052.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz052.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz052.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz052.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz052.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz052.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz052.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz052.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz052.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +station = ('kalb', 0.0024516110127244008) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz052.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz052.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz052.txt + +[nyz053] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz053.txt +centroid = (0.74534809305193439, -1.2848398368188936) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz053.txt +description = Western Rensselaer, NY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz053.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz053.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz053.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz053.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz053.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz053.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz053.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz053.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz053.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz053.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz053.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz053.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz053.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz053.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz053.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +station = ('kalb', 0.0024859312073899093) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz053.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz053.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz053.txt + +[nyz054] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz054.txt +centroid = (0.74554706058666187, -1.2811729000604535) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz054.txt +description = Eastern Rensselaer, NY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz054.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz054.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz054.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz054.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz054.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz054.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz054.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz054.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz054.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz054.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz054.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz054.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz054.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz054.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz054.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +station = ('kaqw', 0.003080692268677584) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz054.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz054.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz054.txt + +[nyz055] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz055.txt +centroid = (0.73601058155376475, -1.3317961750145491) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz055.txt +description = Tioga, NY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz055.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz055.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz055.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz055.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz055.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz055.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz055.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz055.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz055.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz055.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz055.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz055.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz055.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz055.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz055.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +station = ('kbgm', 0.0042088124927092815) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz055.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz055.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz055.txt + +[nyz056] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz056.txt +centroid = (0.73583430329931343, -1.3233016575450927) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz056.txt +description = Broome, NY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz056.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz056.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz056.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz056.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz056.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz056.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz056.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz056.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz056.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz056.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz056.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz056.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz056.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz056.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz056.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +station = ('kbgm', 0.0022286722009413709) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz056.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz056.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz056.txt + +[nyz057] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz057.txt +centroid = (0.73649752841507121, -1.308412253696329) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz057.txt +description = Delaware, NY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz057.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz057.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz057.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz057.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz057.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz057.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz057.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz057.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz057.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz057.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz057.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz057.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz057.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz057.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz057.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +station = ('kmsv', 0.008959803759463281) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz057.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz057.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz057.txt + +[nyz058] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz058.txt +centroid = (0.73752378201524382, -1.2956905487785424) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz058.txt +description = Western Greene, NY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz058.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz058.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz058.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz058.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz058.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz058.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz058.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz058.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz058.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz058.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz058.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz058.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz058.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz058.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz058.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +station = ('kalb', 0.010283035407533139) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz058.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz058.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz058.txt + +[nyz059] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz059.txt +centroid = (0.73848371310384064, -1.2900548806238525) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz059.txt +description = Eastern Greene, NY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz059.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz059.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz059.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz059.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz059.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz059.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz059.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz059.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz059.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz059.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz059.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz059.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz059.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz059.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz059.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +station = ('kalb', 0.007785579945436355) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz059.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz059.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz059.txt + +[nyz060] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz060.txt +centroid = (0.73731608783425651, -1.2868836173729792) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz060.txt +description = Western Columbia, NY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz060.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz060.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz060.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz060.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz060.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz060.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz060.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz060.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz060.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz060.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz060.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz060.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz060.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz060.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz060.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +station = ('kpsf', 0.0066667877044522201) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz060.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz060.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz060.txt + +[nyz061] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz061.txt +centroid = (0.7374853847717, -1.2834453187465502) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz061.txt +description = Eastern Columbia, NY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz061.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz061.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz061.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz061.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz061.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz061.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz061.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz061.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz061.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz061.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz061.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz061.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz061.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz061.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz061.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +station = ('kpsf', 0.0045092134696333545) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz061.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz061.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz061.txt + +[nyz062] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz062.txt +centroid = (0.72808853207896251, -1.3049495204603723) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz062.txt +description = Sullivan, NY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz062.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz062.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz062.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz062.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz062.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz062.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz062.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz062.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz062.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz062.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz062.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz062.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz062.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz062.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz062.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +station = ('kmsv', 0.00050466909907202577) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz062.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz062.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz062.txt + +[nyz063] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz063.txt +centroid = (0.7316699477040548, -1.2981671709871223) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz063.txt +description = Western Ulster, NY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz063.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz063.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz063.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz063.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz063.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz063.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz063.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz063.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz063.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz063.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz063.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz063.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz063.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz063.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz063.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +station = ('kmsv', 0.0066993806215275686) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz063.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz063.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz063.txt + +[nyz064] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz064.txt +centroid = (0.7301340579622998, -1.2926187692950324) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz064.txt +description = Eastern Ulster, NY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz064.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz064.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz064.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz064.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz064.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz064.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz064.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz064.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz064.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz064.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz064.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz064.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz064.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz064.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz064.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +station = ('kpou', 0.0041962022526543493) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz064.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz064.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz064.txt + +[nyz065] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz065.txt +centroid = (0.72905195382606336, -1.2888506034399765) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz065.txt +description = Western Dutchess, NY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz065.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz065.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz065.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz065.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz065.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz065.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz065.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz065.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz065.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz065.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz065.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz065.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz065.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz065.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz065.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +station = ('kpou', 0.0024625311772513599) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz065.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz065.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz065.txt + +[nyz066] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz066.txt +centroid = (0.7288041170722801, -1.2848991780134613) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz066.txt +description = Eastern Dutchess, NY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz066.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz066.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz066.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz066.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz066.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz066.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz066.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz066.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz066.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz066.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz066.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz066.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz066.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz066.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz066.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +station = ('kpou', 0.0040655757438049457) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz066.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz066.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz066.txt + +[nyz067] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz067.txt +centroid = (0.72260470756919637, -1.2968773726698986) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz067.txt +description = Orange, NY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz067.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz067.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz067.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz067.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz067.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz067.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz067.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz067.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz067.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz067.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz067.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz067.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz067.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz067.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz067.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +station = ('kmgj', 0.002061702210747448) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz067.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz067.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz067.txt + +[nyz068] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz068.txt +centroid = (0.72303231323593486, -1.2871715966995581) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz068.txt +description = Putnam, NY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz068.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz068.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz068.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz068.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz068.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz068.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz068.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz068.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz068.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz068.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz068.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz068.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz068.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz068.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz068.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +station = ('kpou', 0.0040079952074442348) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz068.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz068.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz068.txt + +[nyz069] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz069.txt +centroid = (0.71825360174397446, -1.2919642708255346) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz069.txt +description = Rockland, NY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz069.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz069.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz069.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz069.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz069.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz069.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz069.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz069.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz069.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz069.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz069.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz069.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz069.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz069.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz069.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +station = ('khpn', 0.0045199159838259593) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz069.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz069.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz069.txt + +[nyz070] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz070.txt +centroid = (0.71946136958635443, -1.2871349447852662) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz070.txt +description = Northern Westchester, NY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz070.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz070.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz070.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz070.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz070.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz070.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz070.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz070.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz070.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz070.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz070.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz070.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz070.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz070.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz070.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +station = ('khpn', 0.0027834381646593184) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz070.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz070.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz070.txt + +[nyz071] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz071.txt +centroid = (0.71529352333259211, -1.2877021767921644) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz071.txt +description = Southern Westchester, NY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz071.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz071.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz071.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz071.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz071.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz071.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz071.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz071.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz071.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz071.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz071.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz071.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz071.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz071.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz071.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +station = ('khpn', 0.0017955263504674023) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz071.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz071.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz071.txt + +[nyz072] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz072.txt +centroid = (0.71172083435375966, -1.2909589611763856) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz072.txt +description = New York (Manhattan), NY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz072.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz072.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz072.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz072.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz072.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz072.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz072.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz072.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz072.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz072.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz072.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz072.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz072.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz072.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz072.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +station = ('knyc', 8.2641608936897146e-05) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz072.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz072.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz072.txt + +[nyz073] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz073.txt +centroid = (0.71301237800023554, -1.2892206132413995) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz073.txt +description = Bronx, NY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz073.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz073.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz073.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz073.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz073.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz073.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz073.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz073.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz073.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz073.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz073.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz073.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz073.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz073.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz073.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +station = ('klga', 0.0012282629435135808) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz073.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz073.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz073.txt + +[nyz074] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz074.txt +centroid = (0.70825810111780285, -1.294261124121159) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz074.txt +description = Richmond (Staten Is.), NY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz074.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz074.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz074.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz074.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz074.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz074.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz074.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz074.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz074.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz074.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz074.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz074.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz074.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz074.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz074.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +station = ('kewr', 0.0018058678115635968) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz074.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz074.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz074.txt + +[nyz075] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz075.txt +centroid = (0.70935067722955136, -1.290541827485159) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz075.txt +description = Kings (Brooklyn), NY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz075.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz075.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz075.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz075.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz075.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz075.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz075.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz075.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz075.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz075.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz075.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz075.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz075.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz075.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz075.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +station = ('knyc', 0.0024733473738332602) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz075.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz075.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz075.txt + +[nyz078] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz078.txt +centroid = (0.713452200971738, -1.2770835936230307) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz078.txt +description = Northwest Suffolk, NY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz078.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz078.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz078.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz078.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz078.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz078.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz078.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz078.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz078.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz078.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz078.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz078.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz078.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz078.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz078.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +station = ('kisp', 0.0016538259520009746) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz078.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz078.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz078.txt + +[nyz079] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz079.txt +centroid = (0.71544711230676761, -1.2667721884022483) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz079.txt +description = Northeast Suffolk, NY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz079.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz079.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz079.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz079.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz079.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz079.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz079.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz079.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz079.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz079.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz079.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz079.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz079.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz079.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz079.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +station = ('kfok', 0.0025250632828290429) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz079.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz079.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz079.txt + +[nyz080] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz080.txt +centroid = (0.71122690617544537, -1.2772808158285063) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz080.txt +description = Southwest Suffolk, NY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz080.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz080.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz080.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz080.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz080.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz080.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz080.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz080.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz080.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz080.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz080.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz080.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz080.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz080.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz080.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +station = ('kisp', 0.0013964500560672856) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz080.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz080.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz080.txt + +[nyz081] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz081.txt +centroid = (0.71402990495414809, -1.2646516133610752) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz081.txt +description = Southeast Suffolk, NY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz081.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz081.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz081.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz081.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz081.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz081.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz081.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz081.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz081.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz081.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz081.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz081.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz081.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz081.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz081.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +station = ('kfok', 0.0023340049225906941) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz081.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz081.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz081.txt + +[nyz082] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz082.txt +centroid = (0.75331028509953246, -1.2989228985532357) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz082.txt +description = Northern Fulton, NY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz082.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz082.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz082.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz082.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz082.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz082.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz082.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz082.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz082.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz082.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz082.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz082.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz082.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz082.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz082.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +station = ('ksch', 0.0082816124480882148) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz082.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz082.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz082.txt + +[nyz083] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz083.txt +centroid = (0.75654438020347803, -1.2869639025185708) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz083.txt +description = Southeast Warren, NY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz083.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz083.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz083.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz083.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz083.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz083.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz083.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz083.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz083.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz083.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz083.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz083.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz083.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz083.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz083.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +station = ('kgfl', 0.0015529752651510687) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz083.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz083.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz083.txt + +[nyz084] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz084.txt +centroid = (0.75322127330768085, -1.281699989494556) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz084.txt +description = Southern Washington, NY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz084.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz084.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz084.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz084.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz084.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz084.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz084.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz084.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz084.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz084.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz084.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz084.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz084.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz084.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz084.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +station = ('kgfl', 0.0038486316350779212) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz084.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz084.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz084.txt + +[nyz085] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz085.txt +centroid = (0.74394135767482694, -1.37463528150475) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz085.txt +description = Southern Erie, NY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz085.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz085.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz085.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz085.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz085.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz085.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz085.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz085.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz085.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz085.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz085.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz085.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz085.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz085.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz085.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +station = ('kbuf', 0.0053981471914571243) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz085.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz085.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz085.txt + +[nyz087] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz087.txt +centroid = (0.77697345909807169, -1.3143393918361017) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz087.txt +description = Southwestern St. Lawrence, NY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz087.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz087.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz087.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz087.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz087.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz087.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz087.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz087.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz087.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz087.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz087.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz087.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz087.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz087.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz087.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +station = ('kmss', 0.0092039030764359611) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz087.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz087.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz087.txt + +[nyz176] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz176.txt +centroid = (0.71118676360264932, -1.2888174421841887) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz176.txt +description = Northern Queens County, NY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz176.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz176.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz176.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz176.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz176.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz176.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz176.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz176.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz176.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz176.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz176.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz176.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz176.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz176.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz176.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +station = ('klga', 0.00080832836185865933) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz176.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz176.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz176.txt + +[nyz177] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz177.txt +centroid = (0.71267902011310458, -1.2845204415657787) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz177.txt +description = Northern Nassau County, NY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz177.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz177.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz177.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz177.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz177.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz177.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz177.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz177.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz177.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz177.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz177.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz177.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz177.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz177.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz177.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +station = ('utff', 0.002950497235144507) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz177.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz177.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz177.txt + +[nyz178] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz178.txt +centroid = (0.70973464966499011, -1.2879133616316556) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz178.txt +description = Southern Queens County, NY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz178.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz178.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz178.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz178.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz178.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz178.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz178.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz178.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz178.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz178.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz178.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz178.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz178.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz178.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz178.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +station = ('kjfk', 0.00064354817610925183) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz178.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz178.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz178.txt + +[nyz179] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ny/nyz179.txt +centroid = (0.71017970862424873, -1.2842760954704995) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ny/nyz179.txt +description = Southern Nassau County, NY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ny/nyz179.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ny/nyz179.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ny/nyz179.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ny/nyz179.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ny/nyz179.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ny/nyz179.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ny/nyz179.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ny/nyz179.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ny.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ny/nyz179.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ny/nyz179.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ny/nyz179.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ny/nyz179.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ny/nyz179.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ny/nyz179.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ny/nyz179.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ny.txt +station = ('utff', 0.0023339279784403153) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ny/nyz179.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ny/nyz179.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ny/nyz179.txt + +[ohz001] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/oh/ohz001.txt +centroid = (0.72536407311659934, -1.4763425983354674) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/oh/ohz001.txt +description = Williams, OH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/oh/ohz001.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/oh/ohz001.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/oh/ohz001.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/oh/ohz001.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/oh/ohz001.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/oh/ohz001.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/oh/ohz001.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/oh/ohz001.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/oh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/oh/ohz001.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/oh/ohz001.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/oh/ohz001.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/oh/ohz001.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/oh/ohz001.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/oh/ohz001.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/oh/ohz001.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/oh.txt +station = ('kdfi', 0.0044493635614397068) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/oh/ohz001.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/oh/ohz001.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/oh/ohz001.txt + +[ohz002] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/oh/ohz002.txt +centroid = (0.72608838475617699, -1.4683472450320814) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/oh/ohz002.txt +description = Fulton, OH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/oh/ohz002.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/oh/ohz002.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/oh/ohz002.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/oh/ohz002.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/oh/ohz002.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/oh/ohz002.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/oh/ohz002.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/oh/ohz002.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/oh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/oh/ohz002.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/oh/ohz002.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/oh/ohz002.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/oh/ohz002.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/oh/ohz002.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/oh/ohz002.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/oh/ohz002.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/oh.txt +station = ('ktol', 0.0043208440550517972) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/oh/ohz002.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/oh/ohz002.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/oh/ohz002.txt + +[ohz003] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/oh/ohz003.txt +centroid = (0.72640603468003995, -1.4601180176089283) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/oh/ohz003.txt +description = Lucas, OH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/oh/ohz003.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/oh/ohz003.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/oh/ohz003.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/oh/ohz003.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/oh/ohz003.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/oh/ohz003.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/oh/ohz003.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/oh/ohz003.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/oh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/oh/ohz003.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/oh/ohz003.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/oh/ohz003.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/oh/ohz003.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/oh/ohz003.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/oh/ohz003.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/oh/ohz003.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/oh.txt +station = ('ktol', 0.001953250768878108) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/oh/ohz003.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/oh/ohz003.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/oh/ohz003.txt + +[ohz004] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/oh/ohz004.txt +centroid = (0.72123986009413665, -1.4746391569855211) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/oh/ohz004.txt +description = Defiance, OH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/oh/ohz004.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/oh/ohz004.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/oh/ohz004.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/oh/ohz004.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/oh/ohz004.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/oh/ohz004.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/oh/ohz004.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/oh/ohz004.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/oh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/oh/ohz004.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/oh/ohz004.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/oh/ohz004.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/oh/ohz004.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/oh/ohz004.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/oh/ohz004.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/oh/ohz004.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/oh.txt +station = ('kdfi', 0.00076802619387311569) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/oh/ohz004.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/oh/ohz004.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/oh/ohz004.txt + +[ohz005] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/oh/ohz005.txt +centroid = (0.72141264769008417, -1.467266886225097) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/oh/ohz005.txt +description = Henry, OH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/oh/ohz005.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/oh/ohz005.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/oh/ohz005.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/oh/ohz005.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/oh/ohz005.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/oh/ohz005.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/oh/ohz005.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/oh/ohz005.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/oh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/oh/ohz005.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/oh/ohz005.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/oh/ohz005.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/oh/ohz005.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/oh/ohz005.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/oh/ohz005.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/oh/ohz005.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/oh.txt +station = ('ktol', 0.0055909690773664547) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/oh/ohz005.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/oh/ohz005.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/oh/ohz005.txt + +[ohz006] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/oh/ohz006.txt +centroid = (0.72189784922213862, -1.4594966803952183) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/oh/ohz006.txt +description = Wood, OH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/oh/ohz006.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/oh/ohz006.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/oh/ohz006.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/oh/ohz006.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/oh/ohz006.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/oh/ohz006.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/oh/ohz006.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/oh/ohz006.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/oh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/oh/ohz006.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/oh/ohz006.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/oh/ohz006.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/oh/ohz006.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/oh/ohz006.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/oh/ohz006.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/oh/ohz006.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/oh.txt +station = ('ktdz', 0.0040167387971978274) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/oh/ohz006.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/oh/ohz006.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/oh/ohz006.txt + +[ohz007] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/oh/ohz007.txt +centroid = (0.72497661002265656, -1.4511836771679691) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/oh/ohz007.txt +description = Ottawa, OH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/oh/ohz007.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/oh/ohz007.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/oh/ohz007.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/oh/ohz007.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/oh/ohz007.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/oh/ohz007.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/oh/ohz007.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/oh/ohz007.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/oh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/oh/ohz007.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/oh/ohz007.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/oh/ohz007.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/oh/ohz007.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/oh/ohz007.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/oh/ohz007.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/oh/ohz007.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/oh.txt +station = ('ktdz', 0.0044249987584418027) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/oh/ohz007.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/oh/ohz007.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/oh/ohz007.txt + +[ohz008] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/oh/ohz008.txt +centroid = (0.72180709210103489, -1.4511540065706852) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/oh/ohz008.txt +description = Sandusky, OH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/oh/ohz008.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/oh/ohz008.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/oh/ohz008.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/oh/ohz008.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/oh/ohz008.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/oh/ohz008.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/oh/ohz008.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/oh/ohz008.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/oh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/oh/ohz008.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/oh/ohz008.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/oh/ohz008.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/oh/ohz008.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/oh/ohz008.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/oh/ohz008.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/oh/ohz008.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/oh.txt +station = ('ktdz', 0.005747826829023063) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/oh/ohz008.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/oh/ohz008.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/oh/ohz008.txt + +[ohz009] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/oh/ohz009.txt +centroid = (0.7219292651486745, -1.4419526307541712) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/oh/ohz009.txt +description = Erie, OH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/oh/ohz009.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/oh/ohz009.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/oh/ohz009.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/oh/ohz009.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/oh/ohz009.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/oh/ohz009.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/oh/ohz009.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/oh/ohz009.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/oh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/oh/ohz009.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/oh/ohz009.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/oh/ohz009.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/oh/ohz009.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/oh/ohz009.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/oh/ohz009.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/oh/ohz009.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/oh.txt +station = ('klpr', 0.0056966501254437805) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/oh/ohz009.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/oh/ohz009.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/oh/ohz009.txt + +[ohz010] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/oh/ohz010.txt +centroid = (0.72074244125731834, -1.4338089244643657) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/oh/ohz010.txt +description = Lorain, OH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/oh/ohz010.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/oh/ohz010.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/oh/ohz010.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/oh/ohz010.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/oh/ohz010.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/oh/ohz010.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/oh/ohz010.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/oh/ohz010.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/oh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/oh/ohz010.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/oh/ohz010.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/oh/ohz010.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/oh/ohz010.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/oh/ohz010.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/oh/ohz010.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/oh/ohz010.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/oh.txt +station = ('klpr', 0.0010402825353259088) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/oh/ohz010.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/oh/ohz010.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/oh/ohz010.txt + +[ohz011] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/oh/ohz011.txt +centroid = (0.72299042533388713, -1.4252131778982935) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/oh/ohz011.txt +description = Cuyahoga, OH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/oh/ohz011.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/oh/ohz011.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/oh/ohz011.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/oh/ohz011.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/oh/ohz011.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/oh/ohz011.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/oh/ohz011.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/oh/ohz011.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/oh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/oh/ohz011.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/oh/ohz011.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/oh/ohz011.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/oh/ohz011.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/oh/ohz011.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/oh/ohz011.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/oh/ohz011.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/oh.txt +station = ('kbkl', 0.0019058397909068815) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/oh/ohz011.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/oh/ohz011.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/oh/ohz011.txt + +[ohz012] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/oh/ohz012.txt +centroid = (0.72774644754557161, -1.4178531244426333) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/oh/ohz012.txt +description = Lake, OH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/oh/ohz012.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/oh/ohz012.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/oh/ohz012.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/oh/ohz012.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/oh/ohz012.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/oh/ohz012.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/oh/ohz012.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/oh/ohz012.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/oh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/oh/ohz012.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/oh/ohz012.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/oh/ohz012.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/oh/ohz012.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/oh/ohz012.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/oh/ohz012.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/oh/ohz012.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/oh.txt +station = ('kcgf', 0.0039350760619610405) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/oh/ohz012.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/oh/ohz012.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/oh/ohz012.txt + +[ohz013] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/oh/ohz013.txt +centroid = (0.72430291293138671, -1.4168338521594688) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/oh/ohz013.txt +description = Geauga, OH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/oh/ohz013.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/oh/ohz013.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/oh/ohz013.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/oh/ohz013.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/oh/ohz013.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/oh/ohz013.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/oh/ohz013.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/oh/ohz013.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/oh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/oh/ohz013.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/oh/ohz013.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/oh/ohz013.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/oh/ohz013.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/oh/ohz013.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/oh/ohz013.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/oh/ohz013.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/oh.txt +station = ('kpov', 0.0049670560509251947) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/oh/ohz013.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/oh/ohz013.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/oh/ohz013.txt + +[ohz014] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/oh/ohz014.txt +centroid = (0.72744625091422854, -1.4092311979377814) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/oh/ohz014.txt +description = Ashtabula Inland, OH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/oh/ohz014.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/oh/ohz014.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/oh/ohz014.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/oh/ohz014.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/oh/ohz014.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/oh/ohz014.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/oh/ohz014.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/oh/ohz014.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/oh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/oh/ohz014.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/oh/ohz014.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/oh/ohz014.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/oh/ohz014.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/oh/ohz014.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/oh/ohz014.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/oh/ohz014.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/oh.txt +station = ('khzy', 0.0018951377876231272) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/oh/ohz014.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/oh/ohz014.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/oh/ohz014.txt + +[ohz015] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/oh/ohz015.txt +centroid = (0.71762004722550043, -1.476201226666056) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/oh/ohz015.txt +description = Paulding, OH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/oh/ohz015.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/oh/ohz015.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/oh/ohz015.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/oh/ohz015.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/oh/ohz015.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/oh/ohz015.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/oh/ohz015.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/oh/ohz015.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/oh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/oh/ohz015.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/oh/ohz015.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/oh/ohz015.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/oh/ohz015.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/oh/ohz015.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/oh/ohz015.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/oh/ohz015.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/oh.txt +station = ('kdfi', 0.0042450857023751069) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/oh/ohz015.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/oh/ohz015.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/oh/ohz015.txt + +[ohz016] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/oh/ohz016.txt +centroid = (0.71597071108236587, -1.4683751703001133) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/oh/ohz016.txt +description = Putnam, OH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/oh/ohz016.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/oh/ohz016.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/oh/ohz016.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/oh/ohz016.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/oh/ohz016.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/oh/ohz016.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/oh/ohz016.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/oh/ohz016.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/oh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/oh/ohz016.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/oh/ohz016.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/oh/ohz016.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/oh/ohz016.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/oh/ohz016.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/oh/ohz016.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/oh/ohz016.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/oh.txt +station = ('kaoh', 0.0058231586785468317) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/oh/ohz016.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/oh/ohz016.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/oh/ohz016.txt + +[ohz017] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/oh/ohz017.txt +centroid = (0.71561815457346301, -1.4602558986198357) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/oh/ohz017.txt +description = Hancock, OH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/oh/ohz017.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/oh/ohz017.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/oh/ohz017.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/oh/ohz017.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/oh/ohz017.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/oh/ohz017.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/oh/ohz017.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/oh/ohz017.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/oh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/oh/ohz017.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/oh/ohz017.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/oh/ohz017.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/oh/ohz017.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/oh/ohz017.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/oh/ohz017.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/oh/ohz017.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/oh.txt +station = ('kfdy', 0.00025773630089953906) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/oh/ohz017.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/oh/ohz017.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/oh/ohz017.txt + +[ohz018] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/oh/ohz018.txt +centroid = (0.71774745626089609, -1.4508520646100904) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/oh/ohz018.txt +description = Seneca, OH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/oh/ohz018.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/oh/ohz018.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/oh/ohz018.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/oh/ohz018.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/oh/ohz018.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/oh/ohz018.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/oh/ohz018.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/oh/ohz018.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/oh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/oh/ohz018.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/oh/ohz018.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/oh/ohz018.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/oh/ohz018.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/oh/ohz018.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/oh/ohz018.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/oh/ohz018.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/oh.txt +station = ('kmnn', 0.0088894624778464819) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/oh/ohz018.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/oh/ohz018.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/oh/ohz018.txt + +[ohz019] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/oh/ohz019.txt +centroid = (0.71813666468409088, -1.4416140368792842) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/oh/ohz019.txt +description = Huron, OH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/oh/ohz019.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/oh/ohz019.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/oh/ohz019.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/oh/ohz019.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/oh/ohz019.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/oh/ohz019.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/oh/ohz019.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/oh/ohz019.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/oh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/oh/ohz019.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/oh/ohz019.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/oh/ohz019.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/oh/ohz019.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/oh/ohz019.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/oh/ohz019.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/oh/ohz019.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/oh.txt +station = ('kmfd', 0.0058513931874447601) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/oh/ohz019.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/oh/ohz019.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/oh/ohz019.txt + +[ohz020] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/oh/ohz020.txt +centroid = (0.71763750051802044, -1.4294194213955997) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/oh/ohz020.txt +description = Medina, OH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/oh/ohz020.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/oh/ohz020.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/oh/ohz020.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/oh/ohz020.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/oh/ohz020.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/oh/ohz020.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/oh/ohz020.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/oh/ohz020.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/oh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/oh/ohz020.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/oh/ohz020.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/oh/ohz020.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/oh/ohz020.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/oh/ohz020.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/oh/ohz020.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/oh/ohz020.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/oh.txt +station = ('kbjj', 0.0043849169207567738) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/oh/ohz020.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/oh/ohz020.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/oh/ohz020.txt + +[ohz021] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/oh/ohz021.txt +centroid = (0.717782362845936, -1.4230035910652687) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/oh/ohz021.txt +description = Summit, OH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/oh/ohz021.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/oh/ohz021.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/oh/ohz021.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/oh/ohz021.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/oh/ohz021.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/oh/ohz021.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/oh/ohz021.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/oh/ohz021.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/oh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/oh/ohz021.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/oh/ohz021.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/oh/ohz021.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/oh/ohz021.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/oh/ohz021.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/oh/ohz021.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/oh/ohz021.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/oh.txt +station = ('kakr', 0.0018306324174053624) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/oh/ohz021.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/oh/ohz021.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/oh/ohz021.txt + +[ohz022] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/oh/ohz022.txt +centroid = (0.71851016514401767, -1.41714103010782) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/oh/ohz022.txt +description = Portage, OH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/oh/ohz022.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/oh/ohz022.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/oh/ohz022.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/oh/ohz022.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/oh/ohz022.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/oh/ohz022.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/oh/ohz022.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/oh/ohz022.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/oh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/oh/ohz022.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/oh/ohz022.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/oh/ohz022.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/oh/ohz022.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/oh/ohz022.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/oh/ohz022.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/oh/ohz022.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/oh.txt +station = ('kpov', 0.0011557050696513155) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/oh/ohz022.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/oh/ohz022.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/oh/ohz022.txt + +[ohz023] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/oh/ohz023.txt +centroid = (0.72112466836350508, -1.4095348852276286) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/oh/ohz023.txt +description = Trumbull, OH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/oh/ohz023.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/oh/ohz023.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/oh/ohz023.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/oh/ohz023.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/oh/ohz023.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/oh/ohz023.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/oh/ohz023.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/oh/ohz023.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/oh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/oh/ohz023.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/oh/ohz023.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/oh/ohz023.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/oh/ohz023.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/oh/ohz023.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/oh/ohz023.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/oh/ohz023.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/oh.txt +station = ('kyng', 0.001701494638118803) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/oh/ohz023.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/oh/ohz023.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/oh/ohz023.txt + +[ohz024] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/oh/ohz024.txt +centroid = (0.71306124721929132, -1.4763059464211756) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/oh/ohz024.txt +description = Van Wert, OH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/oh/ohz024.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/oh/ohz024.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/oh/ohz024.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/oh/ohz024.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/oh/ohz024.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/oh/ohz024.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/oh/ohz024.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/oh/ohz024.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/oh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/oh/ohz024.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/oh/ohz024.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/oh/ohz024.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/oh/ohz024.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/oh/ohz024.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/oh/ohz024.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/oh/ohz024.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/oh.txt +station = ('kaoh', 0.0079997060584157155) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/oh/ohz024.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/oh/ohz024.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/oh/ohz024.txt + +[ohz025] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/oh/ohz025.txt +centroid = (0.71159691597686814, -1.4679213846945949) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/oh/ohz025.txt +description = Allen, OH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/oh/ohz025.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/oh/ohz025.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/oh/ohz025.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/oh/ohz025.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/oh/ohz025.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/oh/ohz025.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/oh/ohz025.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/oh/ohz025.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/oh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/oh/ohz025.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/oh/ohz025.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/oh/ohz025.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/oh/ohz025.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/oh/ohz025.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/oh/ohz025.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/oh/ohz025.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/oh.txt +station = ('kaoh', 0.0017157130252581187) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/oh/ohz025.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/oh/ohz025.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/oh/ohz025.txt + +[ohz026] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/oh/ohz026.txt +centroid = (0.70967705379967427, -1.4601319802429442) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/oh/ohz026.txt +description = Hardin, OH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/oh/ohz026.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/oh/ohz026.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/oh/ohz026.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/oh/ohz026.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/oh/ohz026.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/oh/ohz026.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/oh/ohz026.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/oh/ohz026.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/oh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/oh/ohz026.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/oh/ohz026.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/oh/ohz026.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/oh/ohz026.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/oh/ohz026.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/oh/ohz026.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/oh/ohz026.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/oh.txt +station = ('kaoh', 0.0047761974145277457) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/oh/ohz026.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/oh/ohz026.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/oh/ohz026.txt + +[ohz027] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/oh/ohz027.txt +centroid = (0.71283435441653198, -1.4539360613983643) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/oh/ohz027.txt +description = Wyandot, OH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/oh/ohz027.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/oh/ohz027.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/oh/ohz027.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/oh/ohz027.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/oh/ohz027.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/oh/ohz027.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/oh/ohz027.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/oh/ohz027.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/oh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/oh/ohz027.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/oh/ohz027.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/oh/ohz027.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/oh/ohz027.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/oh/ohz027.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/oh/ohz027.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/oh/ohz027.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/oh.txt +station = ('kmnn', 0.0050406728284767737) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/oh/ohz027.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/oh/ohz027.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/oh/ohz027.txt + +[ohz028] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/oh/ohz028.txt +centroid = (0.71298270740295167, -1.4472217797659421) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/oh/ohz028.txt +description = Crawford, OH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/oh/ohz028.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/oh/ohz028.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/oh/ohz028.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/oh/ohz028.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/oh/ohz028.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/oh/ohz028.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/oh/ohz028.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/oh/ohz028.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/oh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/oh/ohz028.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/oh/ohz028.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/oh/ohz028.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/oh/ohz028.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/oh/ohz028.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/oh/ohz028.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/oh/ohz028.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/oh.txt +station = ('kmnn', 0.0045266696396597398) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/oh/ohz028.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/oh/ohz028.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/oh/ohz028.txt + +[ohz029] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/oh/ohz029.txt +centroid = (0.71165276651293197, -1.4405336780722999) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/oh/ohz029.txt +description = Richland, OH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/oh/ohz029.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/oh/ohz029.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/oh/ohz029.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/oh/ohz029.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/oh/ohz029.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/oh/ohz029.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/oh/ohz029.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/oh/ohz029.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/oh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/oh/ohz029.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/oh/ohz029.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/oh/ohz029.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/oh/ohz029.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/oh/ohz029.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/oh/ohz029.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/oh/ohz029.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/oh.txt +station = ('kmfd', 0.00077792413219166803) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/oh/ohz029.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/oh/ohz029.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/oh/ohz029.txt + +[ohz030] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/oh/ohz030.txt +centroid = (0.71289893159885587, -1.4358945929204989) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/oh/ohz030.txt +description = Ashland, OH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/oh/ohz030.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/oh/ohz030.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/oh/ohz030.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/oh/ohz030.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/oh/ohz030.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/oh/ohz030.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/oh/ohz030.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/oh/ohz030.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/oh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/oh/ohz030.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/oh/ohz030.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/oh/ohz030.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/oh/ohz030.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/oh/ohz030.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/oh/ohz030.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/oh/ohz030.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/oh.txt +station = ('kmfd', 0.0032885585092000658) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/oh/ohz030.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/oh/ohz030.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/oh/ohz030.txt + +[ohz031] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/oh/ohz031.txt +centroid = (0.7125987349675128, -1.4292204538608726) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/oh/ohz031.txt +description = Wayne, OH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/oh/ohz031.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/oh/ohz031.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/oh/ohz031.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/oh/ohz031.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/oh/ohz031.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/oh/ohz031.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/oh/ohz031.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/oh/ohz031.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/oh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/oh/ohz031.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/oh/ohz031.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/oh/ohz031.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/oh/ohz031.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/oh/ohz031.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/oh/ohz031.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/oh/ohz031.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/oh.txt +station = ('kbjj', 0.00066240623830784962) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/oh/ohz031.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/oh/ohz031.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/oh/ohz031.txt + +[ohz032] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/oh/ohz032.txt +centroid = (0.71233519025046166, -1.4201028538484541) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/oh/ohz032.txt +description = Stark, OH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/oh/ohz032.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/oh/ohz032.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/oh/ohz032.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/oh/ohz032.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/oh/ohz032.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/oh/ohz032.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/oh/ohz032.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/oh/ohz032.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/oh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/oh/ohz032.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/oh/ohz032.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/oh/ohz032.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/oh/ohz032.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/oh/ohz032.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/oh/ohz032.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/oh/ohz032.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/oh.txt +station = ('kcak', 0.0021108091221680291) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/oh/ohz032.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/oh/ohz032.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/oh/ohz032.txt + +[ohz033] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/oh/ohz033.txt +centroid = (0.71583981138846631, -1.4097949392861757) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/oh/ohz033.txt +description = Mahoning, OH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/oh/ohz033.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/oh/ohz033.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/oh/ohz033.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/oh/ohz033.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/oh/ohz033.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/oh/ohz033.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/oh/ohz033.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/oh/ohz033.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/oh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/oh/ohz033.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/oh/ohz033.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/oh/ohz033.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/oh/ohz033.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/oh/ohz033.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/oh/ohz033.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/oh/ohz033.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/oh.txt +station = ('kyng', 0.0043496161359034653) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/oh/ohz033.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/oh/ohz033.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/oh/ohz033.txt + +[ohz034] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/oh/ohz034.txt +centroid = (0.70755647875850114, -1.4770599286580373) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/oh/ohz034.txt +description = Mercer, OH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/oh/ohz034.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/oh/ohz034.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/oh/ohz034.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/oh/ohz034.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/oh/ohz034.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/oh/ohz034.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/oh/ohz034.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/oh/ohz034.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/oh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/oh/ohz034.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/oh/ohz034.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/oh/ohz034.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/oh/ohz034.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/oh/ohz034.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/oh/ohz034.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/oh/ohz034.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/oh.txt +station = ('kves', 0.0060792486319000026) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/oh/ohz034.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/oh/ohz034.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/oh/ohz034.txt + +[ohz035] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/oh/ohz035.txt +centroid = (0.70792125257216798, -1.4699459666269081) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/oh/ohz035.txt +description = Auglaize, OH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/oh/ohz035.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/oh/ohz035.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/oh/ohz035.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/oh/ohz035.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/oh/ohz035.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/oh/ohz035.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/oh/ohz035.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/oh/ohz035.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/oh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/oh/ohz035.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/oh/ohz035.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/oh/ohz035.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/oh/ohz035.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/oh/ohz035.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/oh/ohz035.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/oh/ohz035.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/oh.txt +station = ('kaoh', 0.0036427523891471745) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/oh/ohz035.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/oh/ohz035.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/oh/ohz035.txt + +[ohz036] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/oh/ohz036.txt +centroid = (0.70838201949469448, -1.4514315139217524) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/oh/ohz036.txt +description = Marion, OH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/oh/ohz036.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/oh/ohz036.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/oh/ohz036.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/oh/ohz036.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/oh/ohz036.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/oh/ohz036.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/oh/ohz036.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/oh/ohz036.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/oh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/oh/ohz036.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/oh/ohz036.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/oh/ohz036.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/oh/ohz036.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/oh/ohz036.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/oh/ohz036.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/oh/ohz036.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/oh.txt +station = ('kmnn', 0.0013498187468848984) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/oh/ohz036.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/oh/ohz036.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/oh/ohz036.txt + +[ohz037] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/oh/ohz037.txt +centroid = (0.70727722607818211, -1.4450296462254373) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/oh/ohz037.txt +description = Morrow, OH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/oh/ohz037.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/oh/ohz037.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/oh/ohz037.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/oh/ohz037.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/oh/ohz037.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/oh/ohz037.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/oh/ohz037.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/oh/ohz037.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/oh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/oh/ohz037.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/oh/ohz037.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/oh/ohz037.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/oh/ohz037.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/oh/ohz037.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/oh/ohz037.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/oh/ohz037.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/oh.txt +station = ('kmnn', 0.0039590211455724292) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/oh/ohz037.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/oh/ohz037.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/oh/ohz037.txt + +[ohz038] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/oh/ohz038.txt +centroid = (0.70792648855992402, -1.4299377841834422) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/oh/ohz038.txt +description = Holmes, OH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/oh/ohz038.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/oh/ohz038.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/oh/ohz038.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/oh/ohz038.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/oh/ohz038.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/oh/ohz038.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/oh/ohz038.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/oh/ohz038.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/oh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/oh/ohz038.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/oh/ohz038.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/oh/ohz038.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/oh/ohz038.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/oh/ohz038.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/oh/ohz038.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/oh/ohz038.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/oh.txt +station = ('kbjj', 0.0053661169244701686) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/oh/ohz038.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/oh/ohz038.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/oh/ohz038.txt + +[ohz039] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/oh/ohz039.txt +centroid = (0.70582860279902682, -1.421986064111356) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/oh/ohz039.txt +description = Tuscarawas, OH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/oh/ohz039.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/oh/ohz039.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/oh/ohz039.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/oh/ohz039.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/oh/ohz039.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/oh/ohz039.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/oh/ohz039.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/oh/ohz039.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/oh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/oh/ohz039.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/oh/ohz039.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/oh/ohz039.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/oh/ohz039.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/oh/ohz039.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/oh/ohz039.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/oh/ohz039.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/oh.txt +station = ('kphd', 0.00088114102293434507) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/oh/ohz039.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/oh/ohz039.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/oh/ohz039.txt + +[ohz040] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/oh/ohz040.txt +centroid = (0.70824762914229089, -1.4152822544544457) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/oh/ohz040.txt +description = Carroll, OH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/oh/ohz040.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/oh/ohz040.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/oh/ohz040.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/oh/ohz040.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/oh/ohz040.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/oh/ohz040.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/oh/ohz040.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/oh/ohz040.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/oh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/oh/ohz040.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/oh/ohz040.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/oh/ohz040.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/oh/ohz040.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/oh/ohz040.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/oh/ohz040.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/oh/ohz040.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/oh.txt +station = ('kphd', 0.004764677054172382) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/oh/ohz040.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/oh/ohz040.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/oh/ohz040.txt + +[ohz041] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/oh/ohz041.txt +centroid = (0.71154630142856024, -1.4098333365297195) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/oh/ohz041.txt +description = Columbiana, OH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/oh/ohz041.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/oh/ohz041.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/oh/ohz041.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/oh/ohz041.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/oh/ohz041.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/oh/ohz041.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/oh/ohz041.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/oh/ohz041.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/oh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/oh/ohz041.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/oh/ohz041.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/oh/ohz041.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/oh/ohz041.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/oh/ohz041.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/oh/ohz041.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/oh/ohz041.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/oh.txt +station = ('kbvi', 0.0049900926291009656) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/oh/ohz041.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/oh/ohz041.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/oh/ohz041.txt + +[ohz042] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/oh/ohz042.txt +centroid = (0.70045822469064023, -1.4768853957328376) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/oh/ohz042.txt +description = Darke, OH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/oh/ohz042.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/oh/ohz042.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/oh/ohz042.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/oh/ohz042.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/oh/ohz042.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/oh/ohz042.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/oh/ohz042.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/oh/ohz042.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/oh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/oh/ohz042.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/oh/ohz042.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/oh/ohz042.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/oh/ohz042.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/oh/ohz042.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/oh/ohz042.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/oh/ohz042.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/oh.txt +station = ('kves', 0.00166545541964316) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/oh/ohz042.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/oh/ohz042.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/oh/ohz042.txt + +[ohz043] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/oh/ohz043.txt +centroid = (0.70391921259734502, -1.4696510059833212) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/oh/ohz043.txt +description = Shelby, OH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/oh/ohz043.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/oh/ohz043.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/oh/ohz043.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/oh/ohz043.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/oh/ohz043.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/oh/ohz043.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/oh/ohz043.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/oh/ohz043.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/oh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/oh/ohz043.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/oh/ohz043.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/oh/ohz043.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/oh/ohz043.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/oh/ohz043.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/oh/ohz043.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/oh/ohz043.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/oh.txt +station = ('kves', 0.0049023086000935358) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/oh/ohz043.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/oh/ohz043.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/oh/ohz043.txt + +[ohz044] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/oh/ohz044.txt +centroid = (0.70491230494172985, -1.4619890105670661) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/oh/ohz044.txt +description = Logan, OH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/oh/ohz044.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/oh/ohz044.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/oh/ohz044.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/oh/ohz044.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/oh/ohz044.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/oh/ohz044.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/oh/ohz044.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/oh/ohz044.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/oh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/oh/ohz044.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/oh/ohz044.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/oh/ohz044.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/oh/ohz044.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/oh/ohz044.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/oh/ohz044.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/oh/ohz044.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/oh.txt +station = ('kedj', 0.00076495585837472221) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/oh/ohz044.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/oh/ohz044.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/oh/ohz044.txt + +[ohz045] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/oh/ohz045.txt +centroid = (0.70335896190745484, -1.4551071773264523) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/oh/ohz045.txt +description = Union, OH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/oh/ohz045.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/oh/ohz045.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/oh/ohz045.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/oh/ohz045.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/oh/ohz045.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/oh/ohz045.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/oh/ohz045.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/oh/ohz045.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/oh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/oh/ohz045.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/oh/ohz045.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/oh/ohz045.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/oh/ohz045.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/oh/ohz045.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/oh/ohz045.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/oh/ohz045.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/oh.txt +station = ('kmrt', 0.0014167778232657758) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/oh/ohz045.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/oh/ohz045.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/oh/ohz045.txt + +[ohz046] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/oh/ohz046.txt +centroid = (0.7029924427645361, -1.4487140362763973) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/oh/ohz046.txt +description = Delaware, OH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/oh/ohz046.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/oh/ohz046.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/oh/ohz046.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/oh/ohz046.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/oh/ohz046.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/oh/ohz046.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/oh/ohz046.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/oh/ohz046.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/oh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/oh/ohz046.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/oh/ohz046.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/oh/ohz046.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/oh/ohz046.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/oh/ohz046.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/oh/ohz046.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/oh/ohz046.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/oh.txt +station = ('kdlz', 0.0015415894182150727) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/oh/ohz046.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/oh/ohz046.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/oh/ohz046.txt + +[ohz047] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/oh/ohz047.txt +centroid = (0.7050920738546852, -1.4385282947617584) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/oh/ohz047.txt +description = Knox, OH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/oh/ohz047.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/oh/ohz047.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/oh/ohz047.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/oh/ohz047.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/oh/ohz047.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/oh/ohz047.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/oh/ohz047.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/oh/ohz047.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/oh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/oh/ohz047.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/oh/ohz047.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/oh/ohz047.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/oh/ohz047.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/oh/ohz047.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/oh/ohz047.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/oh/ohz047.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/oh.txt +station = ('k4i3', 0.0017760116651569619) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/oh/ohz047.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/oh/ohz047.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/oh/ohz047.txt + +[ohz048] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/oh/ohz048.txt +centroid = (0.70339561382174676, -1.4297737232337548) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/oh/ohz048.txt +description = Coshocton, OH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/oh/ohz048.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/oh/ohz048.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/oh/ohz048.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/oh/ohz048.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/oh/ohz048.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/oh/ohz048.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/oh/ohz048.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/oh/ohz048.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/oh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/oh/ohz048.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/oh/ohz048.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/oh/ohz048.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/oh/ohz048.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/oh/ohz048.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/oh/ohz048.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/oh/ohz048.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/oh.txt +station = ('kzzv', 0.0061423793210203812) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/oh/ohz048.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/oh/ohz048.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/oh/ohz048.txt + +[ohz049] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/oh/ohz049.txt +centroid = (0.70325947814009115, -1.4153066890639736) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/oh/ohz049.txt +description = Harrison, OH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/oh/ohz049.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/oh/ohz049.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/oh/ohz049.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/oh/ohz049.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/oh/ohz049.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/oh/ohz049.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/oh/ohz049.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/oh/ohz049.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/oh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/oh/ohz049.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/oh/ohz049.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/oh/ohz049.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/oh/ohz049.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/oh/ohz049.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/oh/ohz049.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/oh/ohz049.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/oh.txt +station = ('kphd', 0.0052762312108706388) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/oh/ohz049.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/oh/ohz049.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/oh/ohz049.txt + +[ohz050] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/oh/ohz050.txt +centroid = (0.70485121841790999, -1.4095453572031404) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/oh/ohz050.txt +description = Jefferson, OH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/oh/ohz050.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/oh/ohz050.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/oh/ohz050.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/oh/ohz050.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/oh/ohz050.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/oh/ohz050.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/oh/ohz050.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/oh/ohz050.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/oh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/oh/ohz050.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/oh/ohz050.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/oh/ohz050.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/oh/ohz050.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/oh/ohz050.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/oh/ohz050.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/oh/ohz050.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/oh.txt +station = ('khlg', 0.0040872470722519271) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/oh/ohz050.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/oh/ohz050.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/oh/ohz050.txt + +[ohz051] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/oh/ohz051.txt +centroid = (0.69906370661829687, -1.4700716303330517) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/oh/ohz051.txt +description = Miami, OH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/oh/ohz051.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/oh/ohz051.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/oh/ohz051.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/oh/ohz051.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/oh/ohz051.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/oh/ohz051.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/oh/ohz051.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/oh/ohz051.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/oh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/oh/ohz051.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/oh/ohz051.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/oh/ohz051.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/oh/ohz051.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/oh/ohz051.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/oh/ohz051.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/oh/ohz051.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/oh.txt +station = ('kday', 0.0026823297806611358) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/oh/ohz051.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/oh/ohz051.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/oh/ohz051.txt + +[ohz052] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/oh/ohz052.txt +centroid = (0.70053676450697999, -1.4620553330786419) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/oh/ohz052.txt +description = Champaign, OH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/oh/ohz052.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/oh/ohz052.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/oh/ohz052.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/oh/ohz052.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/oh/ohz052.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/oh/ohz052.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/oh/ohz052.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/oh/ohz052.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/oh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/oh/ohz052.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/oh/ohz052.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/oh/ohz052.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/oh/ohz052.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/oh/ohz052.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/oh/ohz052.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/oh/ohz052.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/oh.txt +station = ('kedj', 0.0041455009194912643) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/oh/ohz052.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/oh/ohz052.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/oh/ohz052.txt + +[ohz053] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/oh/ohz053.txt +centroid = (0.69667958686007259, -1.4622979338446691) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/oh/ohz053.txt +description = Clark, OH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/oh/ohz053.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/oh/ohz053.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/oh/ohz053.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/oh/ohz053.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/oh/ohz053.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/oh/ohz053.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/oh/ohz053.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/oh/ohz053.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/oh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/oh/ohz053.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/oh/ohz053.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/oh/ohz053.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/oh/ohz053.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/oh/ohz053.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/oh/ohz053.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/oh/ohz053.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/oh.txt +station = ('ksgh', 0.001535056585461959) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/oh/ohz053.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/oh/ohz053.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/oh/ohz053.txt + +[ohz054] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/oh/ohz054.txt +centroid = (0.69628514244912176, -1.4556028508340189) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/oh/ohz054.txt +description = Madison, OH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/oh/ohz054.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/oh/ohz054.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/oh/ohz054.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/oh/ohz054.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/oh/ohz054.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/oh/ohz054.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/oh/ohz054.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/oh/ohz054.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/oh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/oh/ohz054.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/oh/ohz054.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/oh/ohz054.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/oh/ohz054.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/oh/ohz054.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/oh/ohz054.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/oh/ohz054.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/oh.txt +station = ('ktzr', 0.0035191703449860786) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/oh/ohz054.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/oh/ohz054.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/oh/ohz054.txt + +[ohz055] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/oh/ohz055.txt +centroid = (0.69760112070512559, -1.4487855947757289) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/oh/ohz055.txt +description = Franklin, OH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/oh/ohz055.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/oh/ohz055.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/oh/ohz055.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/oh/ohz055.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/oh/ohz055.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/oh/ohz055.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/oh/ohz055.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/oh/ohz055.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/oh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/oh/ohz055.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/oh/ohz055.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/oh/ohz055.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/oh/ohz055.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/oh/ohz055.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/oh/ohz055.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/oh/ohz055.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/oh.txt +station = ('kcmh', 0.0017661312346776547) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/oh/ohz055.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/oh/ohz055.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/oh/ohz055.txt + +[ohz056] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/oh/ohz056.txt +centroid = (0.69973391305106258, -1.4396086535687429) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/oh/ohz056.txt +description = Licking, OH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/oh/ohz056.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/oh/ohz056.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/oh/ohz056.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/oh/ohz056.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/oh/ohz056.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/oh/ohz056.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/oh/ohz056.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/oh/ohz056.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/oh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/oh/ohz056.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/oh/ohz056.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/oh/ohz056.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/oh/ohz056.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/oh/ohz056.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/oh/ohz056.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/oh/ohz056.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/oh.txt +station = ('kvta', 0.0013304672069794719) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/oh/ohz056.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/oh/ohz056.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/oh/ohz056.txt + +[ohz057] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/oh/ohz057.txt +centroid = (0.69752781687654186, -1.4301995835712413) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/oh/ohz057.txt +description = Muskingum, OH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/oh/ohz057.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/oh/ohz057.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/oh/ohz057.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/oh/ohz057.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/oh/ohz057.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/oh/ohz057.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/oh/ohz057.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/oh/ohz057.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/oh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/oh/ohz057.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/oh/ohz057.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/oh/ohz057.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/oh/ohz057.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/oh/ohz057.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/oh/ohz057.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/oh/ohz057.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/oh.txt +station = ('kzzv', 0.0006519767528126569) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/oh/ohz057.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/oh/ohz057.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/oh/ohz057.txt + +[ohz058] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/oh/ohz058.txt +centroid = (0.69904101733802093, -1.4223421112787631) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/oh/ohz058.txt +description = Guernsey, OH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/oh/ohz058.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/oh/ohz058.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/oh/ohz058.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/oh/ohz058.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/oh/ohz058.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/oh/ohz058.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/oh/ohz058.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/oh/ohz058.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/oh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/oh/ohz058.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/oh/ohz058.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/oh/ohz058.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/oh/ohz058.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/oh/ohz058.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/oh/ohz058.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/oh/ohz058.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/oh.txt +station = ('kzzv', 0.0057106055690232145) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/oh/ohz058.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/oh/ohz058.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/oh/ohz058.txt + +[ohz059] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/oh/ohz059.txt +centroid = (0.69840746281954691, -1.4135159812514275) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/oh/ohz059.txt +description = Belmont, OH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/oh/ohz059.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/oh/ohz059.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/oh/ohz059.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/oh/ohz059.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/oh/ohz059.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/oh/ohz059.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/oh/ohz059.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/oh/ohz059.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/oh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/oh/ohz059.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/oh/ohz059.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/oh/ohz059.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/oh/ohz059.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/oh/ohz059.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/oh/ohz059.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/oh/ohz059.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/oh.txt +station = ('khlg', 0.0052307620588863358) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/oh/ohz059.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/oh/ohz059.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/oh/ohz059.txt + +[ohz060] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/oh/ohz060.txt +centroid = (0.69362177001057845, -1.477388050557412) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/oh/ohz060.txt +description = Preble, OH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/oh/ohz060.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/oh/ohz060.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/oh/ohz060.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/oh/ohz060.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/oh/ohz060.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/oh/ohz060.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/oh/ohz060.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/oh/ohz060.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/oh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/oh/ohz060.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/oh/ohz060.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/oh/ohz060.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/oh/ohz060.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/oh/ohz060.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/oh/ohz060.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/oh/ohz060.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/oh.txt +station = ('kmwo', 0.0049758853166275811) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/oh/ohz060.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/oh/ohz060.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/oh/ohz060.txt + +[ohz061] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/oh/ohz061.txt +centroid = (0.69384691748408578, -1.4711484984815324) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/oh/ohz061.txt +description = Montgomery, OH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/oh/ohz061.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/oh/ohz061.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/oh/ohz061.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/oh/ohz061.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/oh/ohz061.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/oh/ohz061.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/oh/ohz061.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/oh/ohz061.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/oh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/oh/ohz061.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/oh/ohz061.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/oh/ohz061.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/oh/ohz061.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/oh/ohz061.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/oh/ohz061.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/oh/ohz061.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/oh.txt +station = ('kday', 0.0027259633426294939) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/oh/ohz061.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/oh/ohz061.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/oh/ohz061.txt + +[ohz062] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/oh/ohz062.txt +centroid = (0.69274736005532922, -1.464153218839539) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/oh/ohz062.txt +description = Greene, OH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/oh/ohz062.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/oh/ohz062.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/oh/ohz062.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/oh/ohz062.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/oh/ohz062.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/oh/ohz062.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/oh/ohz062.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/oh/ohz062.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/oh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/oh/ohz062.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/oh/ohz062.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/oh/ohz062.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/oh/ohz062.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/oh/ohz062.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/oh/ohz062.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/oh/ohz062.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/oh.txt +station = ('ksgh', 0.0026812338535807706) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/oh/ohz062.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/oh/ohz062.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/oh/ohz062.txt + +[ohz063] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/oh/ohz063.txt +centroid = (0.69045050675970476, -1.4565837258736398) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/oh/ohz063.txt +description = Fayette, OH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/oh/ohz063.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/oh/ohz063.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/oh/ohz063.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/oh/ohz063.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/oh/ohz063.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/oh/ohz063.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/oh/ohz063.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/oh/ohz063.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/oh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/oh/ohz063.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/oh/ohz063.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/oh/ohz063.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/oh/ohz063.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/oh/ohz063.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/oh/ohz063.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/oh/ohz063.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/oh.txt +station = ('kiln', 0.0049298083838603627) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/oh/ohz063.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/oh/ohz063.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/oh/ohz063.txt + +[ohz064] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/oh/ohz064.txt +centroid = (0.69188342207559217, -1.449047394163528) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/oh/ohz064.txt +description = Pickaway, OH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/oh/ohz064.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/oh/ohz064.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/oh/ohz064.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/oh/ohz064.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/oh/ohz064.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/oh/ohz064.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/oh/ohz064.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/oh/ohz064.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/oh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/oh/ohz064.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/oh/ohz064.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/oh/ohz064.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/oh/ohz064.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/oh/ohz064.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/oh/ohz064.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/oh/ohz064.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/oh.txt +station = ('klck', 0.0032839485429916214) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/oh/ohz064.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/oh/ohz064.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/oh/ohz064.txt + +[ohz065] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/oh/ohz065.txt +centroid = (0.69379630293577799, -1.4421742875691745) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/oh/ohz065.txt +description = Fairfield, OH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/oh/ohz065.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/oh/ohz065.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/oh/ohz065.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/oh/ohz065.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/oh/ohz065.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/oh/ohz065.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/oh/ohz065.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/oh/ohz065.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/oh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/oh/ohz065.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/oh/ohz065.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/oh/ohz065.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/oh/ohz065.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/oh/ohz065.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/oh/ohz065.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/oh/ohz065.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/oh.txt +station = ('klhq', 0.00048611116569838877) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/oh/ohz065.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/oh/ohz065.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/oh/ohz065.txt + +[ohz066] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/oh/ohz066.txt +centroid = (0.69354323019423869, -1.4352907089993088) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/oh/ohz066.txt +description = Perry, OH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/oh/ohz066.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/oh/ohz066.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/oh/ohz066.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/oh/ohz066.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/oh/ohz066.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/oh/ohz066.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/oh/ohz066.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/oh/ohz066.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/oh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/oh/ohz066.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/oh/ohz066.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/oh/ohz066.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/oh/ohz066.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/oh/ohz066.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/oh/ohz066.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/oh/ohz066.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/oh.txt +station = ('kvta', 0.0057745323656730021) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/oh/ohz066.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/oh/ohz066.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/oh/ohz066.txt + +[ohz067] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/oh/ohz067.txt +centroid = (0.69150468562790934, -1.4285991166471625) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/oh/ohz067.txt +description = Morgan, OH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/oh/ohz067.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/oh/ohz067.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/oh/ohz067.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/oh/ohz067.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/oh/ohz067.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/oh/ohz067.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/oh/ohz067.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/oh/ohz067.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/oh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/oh/ohz067.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/oh/ohz067.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/oh/ohz067.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/oh/ohz067.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/oh/ohz067.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/oh/ohz067.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/oh/ohz067.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/oh.txt +station = ('kzzv', 0.005789213479411805) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/oh/ohz067.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/oh/ohz067.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/oh/ohz067.txt + +[ohz068] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/oh/ohz068.txt +centroid = (0.69404763034806505, -1.4216666688582411) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/oh/ohz068.txt +description = Noble, OH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/oh/ohz068.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/oh/ohz068.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/oh/ohz068.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/oh/ohz068.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/oh/ohz068.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/oh/ohz068.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/oh/ohz068.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/oh/ohz068.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/oh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/oh/ohz068.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/oh/ohz068.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/oh/ohz068.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/oh/ohz068.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/oh/ohz068.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/oh/ohz068.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/oh/ohz068.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/oh.txt +station = ('kzzv', 0.0067659895238730327) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/oh/ohz068.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/oh/ohz068.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/oh/ohz068.txt + +[ohz069] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/oh/ohz069.txt +centroid = (0.69337393325679531, -1.4151635720653102) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/oh/ohz069.txt +description = Monroe, OH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/oh/ohz069.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/oh/ohz069.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/oh/ohz069.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/oh/ohz069.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/oh/ohz069.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/oh/ohz069.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/oh/ohz069.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/oh/ohz069.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/oh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/oh/ohz069.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/oh/ohz069.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/oh/ohz069.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/oh/ohz069.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/oh/ohz069.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/oh/ohz069.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/oh/ohz069.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/oh.txt +station = ('kpkb', 0.0084689931054921213) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/oh/ohz069.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/oh/ohz069.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/oh/ohz069.txt + +[ohz070] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/oh/ohz070.txt +centroid = (0.68833342237703565, -1.4761209415204644) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/oh/ohz070.txt +description = Butler, OH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/oh/ohz070.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/oh/ohz070.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/oh/ohz070.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/oh/ohz070.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/oh/ohz070.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/oh/ohz070.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/oh/ohz070.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/oh/ohz070.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/oh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/oh/ohz070.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/oh/ohz070.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/oh/ohz070.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/oh/ohz070.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/oh/ohz070.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/oh/ohz070.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/oh/ohz070.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/oh.txt +station = ('khao', 0.0014851804036259831) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/oh/ohz070.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/oh/ohz070.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/oh/ohz070.txt + +[ohz071] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/oh/ohz071.txt +centroid = (0.68814318148856835, -1.4689877808675633) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/oh/ohz071.txt +description = Warren, OH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/oh/ohz071.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/oh/ohz071.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/oh/ohz071.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/oh/ohz071.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/oh/ohz071.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/oh/ohz071.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/oh/ohz071.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/oh/ohz071.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/oh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/oh/ohz071.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/oh/ohz071.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/oh/ohz071.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/oh/ohz071.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/oh/ohz071.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/oh/ohz071.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/oh/ohz071.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/oh.txt +station = ('kmgy', 0.0031378040338028569) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/oh/ohz071.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/oh/ohz071.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/oh/ohz071.txt + +[ohz072] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/oh/ohz072.txt +centroid = (0.68792152467356493, -1.4627325208284159) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/oh/ohz072.txt +description = Clinton, OH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/oh/ohz072.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/oh/ohz072.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/oh/ohz072.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/oh/ohz072.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/oh/ohz072.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/oh/ohz072.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/oh/ohz072.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/oh/ohz072.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/oh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/oh/ohz072.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/oh/ohz072.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/oh/ohz072.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/oh/ohz072.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/oh/ohz072.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/oh/ohz072.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/oh/ohz072.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/oh.txt +station = ('kiln', 0.00046539864085534091) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/oh/ohz072.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/oh/ohz072.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/oh/ohz072.txt + +[ohz073] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/oh/ohz073.txt +centroid = (0.68657063983252142, -1.4496181168289304) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/oh/ohz073.txt +description = Ross, OH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/oh/ohz073.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/oh/ohz073.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/oh/ohz073.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/oh/ohz073.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/oh/ohz073.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/oh/ohz073.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/oh/ohz073.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/oh/ohz073.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/oh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/oh/ohz073.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/oh/ohz073.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/oh/ohz073.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/oh/ohz073.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/oh/ohz073.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/oh/ohz073.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/oh/ohz073.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/oh.txt +station = ('klck', 0.0085251835744790568) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/oh/ohz073.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/oh/ohz073.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/oh/ohz073.txt + +[ohz074] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/oh/ohz074.txt +centroid = (0.68935269466020033, -1.439531859081655) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/oh/ohz074.txt +description = Hocking, OH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/oh/ohz074.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/oh/ohz074.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/oh/ohz074.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/oh/ohz074.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/oh/ohz074.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/oh/ohz074.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/oh/ohz074.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/oh/ohz074.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/oh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/oh/ohz074.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/oh/ohz074.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/oh/ohz074.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/oh/ohz074.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/oh/ohz074.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/oh/ohz074.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/oh/ohz074.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/oh.txt +station = ('klhq', 0.0050849171270093418) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/oh/ohz074.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/oh/ohz074.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/oh/ohz074.txt + +[ohz075] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/oh/ohz075.txt +centroid = (0.68650257199169362, -1.4319588754572516) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/oh/ohz075.txt +description = Athens, OH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/oh/ohz075.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/oh/ohz075.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/oh/ohz075.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/oh/ohz075.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/oh/ohz075.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/oh/ohz075.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/oh/ohz075.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/oh/ohz075.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/oh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/oh/ohz075.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/oh/ohz075.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/oh/ohz075.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/oh/ohz075.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/oh/ohz075.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/oh/ohz075.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/oh/ohz075.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/oh.txt +station = ('kuni', 0.0033008752347953437) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/oh/ohz075.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/oh/ohz075.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/oh/ohz075.txt + +[ohz076] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/oh/ohz076.txt +centroid = (0.68862489236211877, -1.4223613099005348) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/oh/ohz076.txt +description = Washington, OH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/oh/ohz076.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/oh/ohz076.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/oh/ohz076.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/oh/ohz076.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/oh/ohz076.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/oh/ohz076.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/oh/ohz076.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/oh/ohz076.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/oh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/oh/ohz076.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/oh/ohz076.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/oh/ohz076.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/oh/ohz076.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/oh/ohz076.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/oh/ohz076.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/oh/ohz076.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/oh.txt +station = ('kpkb', 0.0022146711280618412) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/oh/ohz076.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/oh/ohz076.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/oh/ohz076.txt + +[ohz077] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/oh/ohz077.txt +centroid = (0.68408878163618547, -1.475546728196558) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/oh/ohz077.txt +description = Hamilton, OH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/oh/ohz077.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/oh/ohz077.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/oh/ohz077.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/oh/ohz077.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/oh/ohz077.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/oh/ohz077.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/oh/ohz077.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/oh/ohz077.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/oh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/oh/ohz077.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/oh/ohz077.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/oh/ohz077.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/oh/ohz077.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/oh/ohz077.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/oh/ohz077.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/oh/ohz077.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/oh.txt +station = ('kluk', 0.0023828315009831137) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/oh/ohz077.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/oh/ohz077.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/oh/ohz077.txt + +[ohz078] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/oh/ohz078.txt +centroid = (0.68150918500173785, -1.468732962796772) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/oh/ohz078.txt +description = Clermont, OH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/oh/ohz078.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/oh/ohz078.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/oh/ohz078.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/oh/ohz078.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/oh/ohz078.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/oh/ohz078.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/oh/ohz078.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/oh/ohz078.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/oh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/oh/ohz078.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/oh/ohz078.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/oh/ohz078.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/oh/ohz078.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/oh/ohz078.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/oh/ohz078.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/oh/ohz078.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/oh.txt +station = ('kluk', 0.0036982793465364459) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/oh/ohz078.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/oh/ohz078.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/oh/ohz078.txt + +[ohz079] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/oh/ohz079.txt +centroid = (0.67953347228848016, -1.4637727370626041) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/oh/ohz079.txt +description = Brown, OH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/oh/ohz079.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/oh/ohz079.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/oh/ohz079.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/oh/ohz079.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/oh/ohz079.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/oh/ohz079.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/oh/ohz079.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/oh/ohz079.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/oh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/oh/ohz079.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/oh/ohz079.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/oh/ohz079.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/oh/ohz079.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/oh/ohz079.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/oh/ohz079.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/oh/ohz079.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/oh.txt +station = ('kiln', 0.0087830353734353103) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/oh/ohz079.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/oh/ohz079.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/oh/ohz079.txt + +[ohz080] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/oh/ohz080.txt +centroid = (0.68390377673547409, -1.4591109626305274) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/oh/ohz080.txt +description = Highland, OH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/oh/ohz080.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/oh/ohz080.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/oh/ohz080.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/oh/ohz080.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/oh/ohz080.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/oh/ohz080.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/oh/ohz080.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/oh/ohz080.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/oh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/oh/ohz080.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/oh/ohz080.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/oh/ohz080.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/oh/ohz080.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/oh/ohz080.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/oh/ohz080.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/oh/ohz080.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/oh.txt +station = ('kiln', 0.0049885199202632782) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/oh/ohz080.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/oh/ohz080.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/oh/ohz080.txt + +[ohz081] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/oh/ohz081.txt +centroid = (0.67798536524196129, -1.4568612332247066) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/oh/ohz081.txt +description = Adams, OH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/oh/ohz081.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/oh/ohz081.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/oh/ohz081.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/oh/ohz081.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/oh/ohz081.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/oh/ohz081.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/oh/ohz081.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/oh/ohz081.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/oh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/oh/ohz081.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/oh/ohz081.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/oh/ohz081.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/oh/ohz081.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/oh/ohz081.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/oh/ohz081.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/oh/ohz081.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/oh.txt +station = ('kiln', 0.011088279717912907) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/oh/ohz081.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/oh/ohz081.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/oh/ohz081.txt + +[ohz082] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/oh/ohz082.txt +centroid = (0.68202929311883209, -1.4497891590956258) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/oh/ohz082.txt +description = Pike, OH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/oh/ohz082.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/oh/ohz082.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/oh/ohz082.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/oh/ohz082.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/oh/ohz082.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/oh/ohz082.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/oh/ohz082.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/oh/ohz082.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/oh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/oh/ohz082.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/oh/ohz082.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/oh/ohz082.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/oh/ohz082.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/oh/ohz082.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/oh/ohz082.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/oh/ohz082.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/oh.txt +station = ('kiln', 0.01150497141689691) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/oh/ohz082.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/oh/ohz082.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/oh/ohz082.txt + +[ohz083] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/oh/ohz083.txt +centroid = (0.68102223814043139, -1.4419631027296831) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/oh/ohz083.txt +description = Jackson, OH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/oh/ohz083.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/oh/ohz083.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/oh/ohz083.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/oh/ohz083.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/oh/ohz083.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/oh/ohz083.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/oh/ohz083.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/oh/ohz083.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/oh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/oh/ohz083.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/oh/ohz083.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/oh/ohz083.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/oh/ohz083.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/oh/ohz083.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/oh/ohz083.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/oh/ohz083.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/oh.txt +station = ('kuni', 0.0062205084204826483) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/oh/ohz083.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/oh/ohz083.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/oh/ohz083.txt + +[ohz084] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/oh/ohz084.txt +centroid = (0.68505918470029425, -1.4396418148245307) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/oh/ohz084.txt +description = Vinton, OH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/oh/ohz084.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/oh/ohz084.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/oh/ohz084.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/oh/ohz084.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/oh/ohz084.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/oh/ohz084.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/oh/ohz084.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/oh/ohz084.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/oh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/oh/ohz084.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/oh/ohz084.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/oh/ohz084.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/oh/ohz084.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/oh/ohz084.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/oh/ohz084.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/oh/ohz084.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/oh.txt +station = ('kuni', 0.0035262391094212095) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/oh/ohz084.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/oh/ohz084.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/oh/ohz084.txt + +[ohz085] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/oh/ohz085.txt +centroid = (0.68211132359367577, -1.431569667034057) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/oh/ohz085.txt +description = Meigs, OH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/oh/ohz085.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/oh/ohz085.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/oh/ohz085.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/oh/ohz085.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/oh/ohz085.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/oh/ohz085.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/oh/ohz085.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/oh/ohz085.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/oh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/oh/ohz085.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/oh/ohz085.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/oh/ohz085.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/oh/ohz085.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/oh/ohz085.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/oh/ohz085.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/oh/ohz085.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/oh.txt +station = ('k3i2', 0.0030998721966916682) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/oh/ohz085.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/oh/ohz085.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/oh/ohz085.txt + +[ohz086] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/oh/ohz086.txt +centroid = (0.67762059142829456, -1.4367009350349202) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/oh/ohz086.txt +description = Gallia, OH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/oh/ohz086.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/oh/ohz086.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/oh/ohz086.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/oh/ohz086.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/oh/ohz086.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/oh/ohz086.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/oh/ohz086.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/oh/ohz086.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/oh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/oh/ohz086.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/oh/ohz086.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/oh/ohz086.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/oh/ohz086.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/oh/ohz086.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/oh/ohz086.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/oh/ohz086.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/oh.txt +station = ('k3i2', 0.0033569438710267432) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/oh/ohz086.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/oh/ohz086.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/oh/ohz086.txt + +[ohz087] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/oh/ohz087.txt +centroid = (0.6736709113310313, -1.4405389140600557) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/oh/ohz087.txt +description = Lawrence, OH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/oh/ohz087.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/oh/ohz087.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/oh/ohz087.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/oh/ohz087.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/oh/ohz087.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/oh/ohz087.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/oh/ohz087.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/oh/ohz087.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/oh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/oh/ohz087.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/oh/ohz087.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/oh/ohz087.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/oh/ohz087.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/oh/ohz087.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/oh/ohz087.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/oh/ohz087.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/oh.txt +station = ('khts', 0.0040502719730737928) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/oh/ohz087.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/oh/ohz087.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/oh/ohz087.txt + +[ohz088] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/oh/ohz088.txt +centroid = (0.67725756294387962, -1.44849761544915) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/oh/ohz088.txt +description = Scioto, OH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/oh/ohz088.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/oh/ohz088.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/oh/ohz088.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/oh/ohz088.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/oh/ohz088.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/oh/ohz088.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/oh/ohz088.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/oh/ohz088.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/oh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/oh/ohz088.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/oh/ohz088.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/oh/ohz088.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/oh/ohz088.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/oh/ohz088.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/oh/ohz088.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/oh/ohz088.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/oh.txt +station = ('khts', 0.0097342301339780595) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/oh/ohz088.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/oh/ohz088.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/oh/ohz088.txt + +[ohz089] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/oh/ohz089.txt +centroid = (0.73087582289439745, -1.4099066403583034) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/oh/ohz089.txt +description = Ashtabula Lakeshore, OH +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/oh/ohz089.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/oh/ohz089.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/oh/ohz089.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/oh/ohz089.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/oh/ohz089.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/oh/ohz089.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/oh/ohz089.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/oh/ohz089.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/oh.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/oh/ohz089.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/oh/ohz089.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/oh/ohz089.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/oh/ohz089.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/oh/ohz089.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/oh/ohz089.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/oh/ohz089.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/oh.txt +station = ('khzy', 0.0019365823918117459) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/oh/ohz089.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/oh/ohz089.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/oh/ohz089.txt + +[okz001] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ok/okz001.txt +centroid = (0.64137882951063219, -1.7892731519010427) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ok/okz001.txt +description = Cimarron, OK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ok/okz001.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ok/okz001.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ok/okz001.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ok/okz001.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ok/okz001.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ok/okz001.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ok/okz001.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ok/okz001.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ok.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ok/okz001.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ok/okz001.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ok/okz001.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ok/okz001.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ok/okz001.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ok/okz001.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ok/okz001.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ok.txt +station = ('kspd', 0.0094391882846626609) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ok/okz001.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ok/okz001.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ok/okz001.txt + +[okz002] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ok/okz002.txt +centroid = (0.64137184819362425, -1.771334657849045) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ok/okz002.txt +description = Texas, OK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ok/okz002.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ok/okz002.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ok/okz002.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ok/okz002.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ok/okz002.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ok/okz002.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ok/okz002.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ok/okz002.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ok.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ok/okz002.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ok/okz002.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ok/okz002.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ok/okz002.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ok/okz002.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ok/okz002.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ok/okz002.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ok.txt +station = ('kguy', 0.0011355526738583619) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ok/okz002.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ok/okz002.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ok/okz002.txt + +[okz003] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ok/okz003.txt +centroid = (0.64140326412016002, -1.7536492365385865) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ok/okz003.txt +description = Beaver, OK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ok/okz003.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ok/okz003.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ok/okz003.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ok/okz003.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ok/okz003.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ok/okz003.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ok/okz003.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ok/okz003.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ok.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ok/okz003.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ok/okz003.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ok/okz003.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ok/okz003.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ok/okz003.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ok/okz003.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ok/okz003.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ok.txt +station = ('kpyx', 0.0070845241540708091) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ok/okz003.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ok/okz003.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ok/okz003.txt + +[okz004] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ok/okz004.txt +centroid = (0.64208394252843792, -1.7395225415729443) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ok/okz004.txt +description = Harper, OK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ok/okz004.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ok/okz004.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ok/okz004.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ok/okz004.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ok/okz004.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ok/okz004.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ok/okz004.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ok/okz004.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ok.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ok/okz004.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ok/okz004.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ok/okz004.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ok/okz004.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ok/okz004.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ok/okz004.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ok/okz004.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ok.txt +station = ('kwwr', 0.0064764861122687542) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ok/okz004.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ok/okz004.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ok/okz004.txt + +[okz005] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ok/okz005.txt +centroid = (0.6417034607515032, -1.7255215103134458) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ok/okz005.txt +description = Woods, OK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ok/okz005.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ok/okz005.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ok/okz005.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ok/okz005.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ok/okz005.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ok/okz005.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ok/okz005.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ok/okz005.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ok.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ok/okz005.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ok/okz005.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ok/okz005.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ok/okz005.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ok/okz005.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ok/okz005.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ok/okz005.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ok.txt +station = ('kavk', 0.0027297832170878659) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ok/okz005.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ok/okz005.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ok/okz005.txt + +[okz006] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ok/okz006.txt +centroid = (0.64107688755003722, -1.7160775337309047) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ok/okz006.txt +description = Alfalfa, OK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ok/okz006.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ok/okz006.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ok/okz006.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ok/okz006.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ok/okz006.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ok/okz006.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ok/okz006.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ok/okz006.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ok.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ok/okz006.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ok/okz006.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ok/okz006.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ok/okz006.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ok/okz006.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ok/okz006.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ok/okz006.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ok.txt +station = ('kavk', 0.0048938703864735327) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ok/okz006.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ok/okz006.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ok/okz006.txt + +[okz007] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ok/okz007.txt +centroid = (0.64221484222233749, -1.7066894076844272) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ok/okz007.txt +description = Grant, OK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ok/okz007.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ok/okz007.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ok/okz007.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ok/okz007.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ok/okz007.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ok/okz007.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ok/okz007.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ok/okz007.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ok.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ok/okz007.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ok/okz007.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ok/okz007.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ok/okz007.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ok/okz007.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ok/okz007.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ok/okz007.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ok.txt +station = ('kwdg', 0.0072789435247392299) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ok/okz007.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ok/okz007.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ok/okz007.txt + +[okz008] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ok/okz008.txt +centroid = (0.64259532399927222, -1.6954809032281195) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ok/okz008.txt +description = Kay, OK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ok/okz008.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ok/okz008.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ok/okz008.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ok/okz008.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ok/okz008.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ok/okz008.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ok/okz008.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ok/okz008.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ok.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ok/okz008.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ok/okz008.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ok/okz008.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ok/okz008.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ok/okz008.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ok/okz008.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ok/okz008.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ok.txt +station = ('kpnc', 0.0016000871262677461) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ok/okz008.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ok/okz008.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ok/okz008.txt + +[okz009] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ok/okz009.txt +centroid = (0.63212858447506226, -1.7410462140099354) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ok/okz009.txt +description = Ellis, OK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ok/okz009.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ok/okz009.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ok/okz009.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ok/okz009.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ok/okz009.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ok/okz009.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ok/okz009.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ok/okz009.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ok.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ok/okz009.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ok/okz009.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ok/okz009.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ok/okz009.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ok/okz009.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ok/okz009.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ok/okz009.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ok.txt +station = ('kgag', 0.0014360106287001589) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ok/okz009.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ok/okz009.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ok/okz009.txt + +[okz010] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ok/okz010.txt +centroid = (0.63569603746613867, -1.7325010819921713) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ok/okz010.txt +description = Woodward, OK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ok/okz010.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ok/okz010.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ok/okz010.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ok/okz010.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ok/okz010.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ok/okz010.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ok/okz010.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ok/okz010.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ok.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ok/okz010.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ok/okz010.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ok/okz010.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ok/okz010.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ok/okz010.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ok/okz010.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ok/okz010.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ok.txt +station = ('kwwr', 0.0036047366361183714) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ok/okz010.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ok/okz010.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ok/okz010.txt + +[okz011] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ok/okz011.txt +centroid = (0.6337569766671729, -1.7197776317451325) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ok/okz011.txt +description = Major, OK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ok/okz011.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ok/okz011.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ok/okz011.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ok/okz011.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ok/okz011.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ok/okz011.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ok/okz011.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ok/okz011.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ok.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ok/okz011.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ok/okz011.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ok/okz011.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ok/okz011.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ok/okz011.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ok/okz011.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ok/okz011.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ok.txt +station = ('kjwg', 0.0079668343860792492) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ok/okz011.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ok/okz011.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ok/okz011.txt + +[okz012] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ok/okz012.txt +centroid = (0.6349333285830171, -1.7066318118191113) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ok/okz012.txt +description = Garfield, OK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ok/okz012.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ok/okz012.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ok/okz012.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ok/okz012.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ok/okz012.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ok/okz012.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ok/okz012.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ok/okz012.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ok.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ok/okz012.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ok/okz012.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ok/okz012.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ok/okz012.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ok/okz012.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ok/okz012.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ok/okz012.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ok.txt +station = ('kwdg', 0.00011682251605122646) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ok/okz012.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ok/okz012.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ok/okz012.txt + +[okz013] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ok/okz013.txt +centroid = (0.63510088019120858, -1.6969941036895986) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ok/okz013.txt +description = Noble, OK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ok/okz013.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ok/okz013.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ok/okz013.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ok/okz013.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ok/okz013.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ok/okz013.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ok/okz013.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ok/okz013.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ok.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ok/okz013.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ok/okz013.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ok/okz013.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ok/okz013.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ok/okz013.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ok/okz013.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ok/okz013.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ok.txt +station = ('kswo', 0.0043928549805236439) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ok/okz013.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ok/okz013.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ok/okz013.txt + +[okz014] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ok/okz014.txt +centroid = (0.62287833943949233, -1.7400182150805108) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ok/okz014.txt +description = Roger Mills, OK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ok/okz014.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ok/okz014.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ok/okz014.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ok/okz014.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ok/okz014.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ok/okz014.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ok/okz014.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ok/okz014.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ok.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ok/okz014.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ok/okz014.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ok/okz014.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ok/okz014.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ok/okz014.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ok/okz014.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ok/okz014.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ok.txt +station = ('kcsm', 0.0091895520392237997) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ok/okz014.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ok/okz014.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ok/okz014.txt + +[okz015] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ok/okz015.txt +centroid = (0.62810385521996326, -1.7280155858145456) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ok/okz015.txt +description = Dewey, OK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ok/okz015.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ok/okz015.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ok/okz015.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ok/okz015.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ok/okz015.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ok/okz015.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ok/okz015.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ok/okz015.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ok.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ok/okz015.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ok/okz015.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ok/okz015.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ok/okz015.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ok/okz015.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ok/okz015.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ok/okz015.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ok.txt +station = ('kclk', 0.0079430571362458322) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ok/okz015.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ok/okz015.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ok/okz015.txt + +[okz016] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ok/okz016.txt +centroid = (0.62201614678900707, -1.7279021394131659) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ok/okz016.txt +description = Custer, OK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ok/okz016.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ok/okz016.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ok/okz016.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ok/okz016.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ok/okz016.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ok/okz016.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ok/okz016.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ok/okz016.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ok.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ok/okz016.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ok/okz016.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ok/okz016.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ok/okz016.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ok/okz016.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ok/okz016.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ok/okz016.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ok.txt +station = ('kclk', 0.0020954007890915116) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ok/okz016.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ok/okz016.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ok/okz016.txt + +[okz017] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ok/okz017.txt +centroid = (0.62614035981146976, -1.7179886692618382) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ok/okz017.txt +description = Blaine, OK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ok/okz017.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ok/okz017.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ok/okz017.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ok/okz017.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ok/okz017.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ok/okz017.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ok/okz017.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ok/okz017.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ok.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ok/okz017.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ok/okz017.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ok/okz017.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ok/okz017.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ok/okz017.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ok/okz017.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ok/okz017.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ok.txt +station = ('kjwg', 0.00025600008779111649) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ok/okz017.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ok/okz017.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ok/okz017.txt + +[okz018] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ok/okz018.txt +centroid = (0.62736558094636974, -1.7094121213175382) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ok/okz018.txt +description = Kingfisher, OK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ok/okz018.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ok/okz018.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ok/okz018.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ok/okz018.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ok/okz018.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ok/okz018.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ok/okz018.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ok/okz018.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ok.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ok/okz018.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ok/okz018.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ok/okz018.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ok/okz018.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ok/okz018.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ok/okz018.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ok/okz018.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ok.txt +station = ('kend', 0.0067801973615129974) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ok/okz018.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ok/okz018.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ok/okz018.txt + +[okz019] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ok/okz019.txt +centroid = (0.62691179534085129, -1.7007064190085903) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ok/okz019.txt +description = Logan, OK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ok/okz019.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ok/okz019.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ok/okz019.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ok/okz019.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ok/okz019.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ok/okz019.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ok/okz019.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ok/okz019.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ok.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ok/okz019.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ok/okz019.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ok/okz019.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ok/okz019.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ok/okz019.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ok/okz019.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ok/okz019.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ok.txt +station = ('kgok', 0.0012684572184585262) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ok/okz019.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ok/okz019.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ok/okz019.txt + +[okz020] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ok/okz020.txt +centroid = (0.62966767022975023, -1.6925452594262651) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ok/okz020.txt +description = Payne, OK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ok/okz020.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ok/okz020.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ok/okz020.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ok/okz020.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ok/okz020.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ok/okz020.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ok/okz020.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ok/okz020.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ok.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ok/okz020.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ok/okz020.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ok/okz020.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ok/okz020.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ok/okz020.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ok/okz020.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ok/okz020.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ok.txt +station = ('kswo', 0.0021760946076432239) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ok/okz020.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ok/okz020.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ok/okz020.txt + +[okz021] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ok/okz021.txt +centroid = (0.6155549378981241, -1.7397791049729876) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ok/okz021.txt +description = Beckham, OK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ok/okz021.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ok/okz021.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ok/okz021.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ok/okz021.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ok/okz021.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ok/okz021.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ok/okz021.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ok/okz021.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ok.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ok/okz021.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ok/okz021.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ok/okz021.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ok/okz021.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ok/okz021.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ok/okz021.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ok/okz021.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ok.txt +station = ('kcsm', 0.0070100570820581546) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ok/okz021.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ok/okz021.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ok/okz021.txt + +[okz022] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ok/okz022.txt +centroid = (0.61593367434580681, -1.7277415691219826) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ok/okz022.txt +description = Washita, OK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ok/okz022.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ok/okz022.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ok/okz022.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ok/okz022.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ok/okz022.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ok/okz022.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ok/okz022.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ok/okz022.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ok.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ok/okz022.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ok/okz022.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ok/okz022.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ok/okz022.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ok/okz022.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ok/okz022.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ok/okz022.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ok.txt +station = ('kcsm', 0.0031353827630361802) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ok/okz022.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ok/okz022.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ok/okz022.txt + +[okz023] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ok/okz023.txt +centroid = (0.61390909241349345, -1.7169693969786737) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ok/okz023.txt +description = Caddo, OK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ok/okz023.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ok/okz023.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ok/okz023.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ok/okz023.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ok/okz023.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ok/okz023.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ok/okz023.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ok/okz023.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ok.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ok/okz023.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ok/okz023.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ok/okz023.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ok/okz023.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ok/okz023.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ok/okz023.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ok/okz023.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ok.txt +station = ('kchk', 0.0059953701370959161) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ok/okz023.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ok/okz023.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ok/okz023.txt + +[okz024] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ok/okz024.txt +centroid = (0.62033364939008451, -1.7101172343353439) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ok/okz024.txt +description = Canadian, OK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ok/okz024.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ok/okz024.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ok/okz024.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ok/okz024.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ok/okz024.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ok/okz024.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ok/okz024.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ok/okz024.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ok.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ok/okz024.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ok/okz024.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ok/okz024.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ok/okz024.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ok/okz024.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ok/okz024.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ok/okz024.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ok.txt +station = ('krqo', 0.0012648812668237454) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ok/okz024.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ok/okz024.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ok/okz024.txt + +[okz025] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ok/okz025.txt +centroid = (0.62049072902276403, -1.7000763551486207) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ok/okz025.txt +description = Oklahoma, OK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ok/okz025.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ok/okz025.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ok/okz025.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ok/okz025.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ok/okz025.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ok/okz025.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ok/okz025.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ok/okz025.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ok.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ok/okz025.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ok/okz025.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ok/okz025.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ok/okz025.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ok/okz025.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ok/okz025.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ok/okz025.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ok.txt +station = ('ktik', 0.0023776042353073372) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ok/okz025.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ok/okz025.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ok/okz025.txt + +[okz026] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ok/okz026.txt +centroid = (0.62313490283953554, -1.6908906872953744) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ok/okz026.txt +description = Lincoln, OK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ok/okz026.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ok/okz026.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ok/okz026.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ok/okz026.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ok/okz026.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ok/okz026.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ok/okz026.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ok/okz026.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ok.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ok/okz026.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ok/okz026.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ok/okz026.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ok/okz026.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ok/okz026.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ok/okz026.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ok/okz026.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ok.txt +station = ('kcqb', 0.00093324558336024929) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ok/okz026.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ok/okz026.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ok/okz026.txt + +[okz027] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ok/okz027.txt +centroid = (0.61116194417085445, -1.7083998303513817) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ok/okz027.txt +description = Grady, OK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ok/okz027.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ok/okz027.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ok/okz027.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ok/okz027.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ok/okz027.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ok/okz027.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ok/okz027.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ok/okz027.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ok.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ok/okz027.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ok/okz027.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ok/okz027.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ok/okz027.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ok/okz027.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ok/okz027.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ok/okz027.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ok.txt +station = ('kchk', 0.0018108932456611315) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ok/okz027.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ok/okz027.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ok/okz027.txt + +[okz028] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ok/okz028.txt +centroid = (0.61101708184293879, -1.7007116549963466) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ok/okz028.txt +description = McClain, OK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ok/okz028.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ok/okz028.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ok/okz028.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ok/okz028.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ok/okz028.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ok/okz028.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ok/okz028.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ok/okz028.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ok.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ok/okz028.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ok/okz028.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ok/okz028.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ok/okz028.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ok/okz028.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ok/okz028.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ok/okz028.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ok.txt +station = ('koun', 0.0036308530046593656) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ok/okz028.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ok/okz028.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ok/okz028.txt + +[okz029] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ok/okz029.txt +centroid = (0.61441872855507584, -1.698678346417773) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ok/okz029.txt +description = Cleveland, OK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ok/okz029.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ok/okz029.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ok/okz029.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ok/okz029.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ok/okz029.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ok/okz029.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ok/okz029.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ok/okz029.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ok.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ok/okz029.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ok/okz029.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ok/okz029.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ok/okz029.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ok/okz029.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ok/okz029.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ok/okz029.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ok.txt +station = ('koun', 0.0017673407448920435) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ok/okz029.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ok/okz029.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ok/okz029.txt + +[okz030] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ok/okz030.txt +centroid = (0.61447457909113967, -1.6920670392112187) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ok/okz030.txt +description = Pottawatomie, OK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ok/okz030.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ok/okz030.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ok/okz030.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ok/okz030.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ok/okz030.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ok/okz030.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ok/okz030.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ok/okz030.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ok.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ok/okz030.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ok/okz030.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ok/okz030.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ok/okz030.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ok/okz030.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ok/okz030.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ok/okz030.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ok.txt +station = ('ksnl', 0.0026265416958200171) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ok/okz030.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ok/okz030.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ok/okz030.txt + +[okz031] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ok/okz031.txt +centroid = (0.61378866469510573, -1.6862603287898335) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ok/okz031.txt +description = Seminole, OK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ok/okz031.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ok/okz031.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ok/okz031.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ok/okz031.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ok/okz031.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ok/okz031.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ok/okz031.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ok/okz031.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ok.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ok/okz031.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ok/okz031.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ok/okz031.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ok/okz031.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ok/okz031.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ok/okz031.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ok/okz031.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ok.txt +station = ('ksnl', 0.0057187544485516302) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ok/okz031.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ok/okz031.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ok/okz031.txt + +[okz032] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ok/okz032.txt +centroid = (0.61170997755598067, -1.6798828957030463) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ok/okz032.txt +description = Hughes, OK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ok/okz032.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ok/okz032.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ok/okz032.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ok/okz032.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ok/okz032.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ok/okz032.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ok/okz032.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ok/okz032.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ok.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ok/okz032.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ok/okz032.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ok/okz032.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ok/okz032.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ok/okz032.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ok/okz032.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ok/okz032.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ok.txt +station = ('kadh', 0.0073793566685993617) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ok/okz032.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ok/okz032.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ok/okz032.txt + +[okz033] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ok/okz033.txt +centroid = (0.60639894064216193, -1.7426466809340142) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ok/okz033.txt +description = Harmon, OK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ok/okz033.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ok/okz033.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ok/okz033.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ok/okz033.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ok/okz033.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ok/okz033.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ok/okz033.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ok/okz033.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ok.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ok/okz033.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ok/okz033.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ok/okz033.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ok/okz033.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ok/okz033.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ok/okz033.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ok/okz033.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ok.txt +station = ('kaxs', 0.0073340689429195567) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ok/okz033.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ok/okz033.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ok/okz033.txt + +[okz034] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ok/okz034.txt +centroid = (0.60974299148898292, -1.7376655112488224) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ok/okz034.txt +description = Greer, OK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ok/okz034.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ok/okz034.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ok/okz034.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ok/okz034.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ok/okz034.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ok/okz034.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ok/okz034.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ok/okz034.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ok.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ok/okz034.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ok/okz034.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ok/okz034.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ok/okz034.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ok/okz034.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ok/okz034.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ok/okz034.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ok.txt +station = ('kaxs', 0.0052267257649155864) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ok/okz034.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ok/okz034.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ok/okz034.txt + +[okz035] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ok/okz035.txt +centroid = (0.60940439761409604, -1.7275408562580035) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ok/okz035.txt +description = Kiowa, OK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ok/okz035.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ok/okz035.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ok/okz035.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ok/okz035.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ok/okz035.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ok/okz035.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ok/okz035.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ok/okz035.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ok.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ok/okz035.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ok/okz035.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ok/okz035.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ok/okz035.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ok/okz035.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ok/okz035.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ok/okz035.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ok.txt +station = ('khbr', 0.0015325772251031308) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ok/okz035.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ok/okz035.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ok/okz035.txt + +[okz036] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ok/okz036.txt +centroid = (0.60367448167979876, -1.7351138398824066) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ok/okz036.txt +description = Jackson, OK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ok/okz036.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ok/okz036.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ok/okz036.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ok/okz036.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ok/okz036.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ok/okz036.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ok/okz036.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ok/okz036.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ok.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ok/okz036.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ok/okz036.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ok/okz036.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ok/okz036.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ok/okz036.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ok/okz036.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ok/okz036.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ok.txt +station = ('kaxs', 0.002222186166461746) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ok/okz036.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ok/okz036.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ok/okz036.txt + +[okz037] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ok/okz037.txt +centroid = (0.59991853312950683, -1.7265529999013745) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ok/okz037.txt +description = Tillman, OK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ok/okz037.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ok/okz037.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ok/okz037.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ok/okz037.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ok/okz037.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ok/okz037.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ok/okz037.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ok/okz037.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ok.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ok/okz037.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ok/okz037.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ok/okz037.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ok/okz037.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ok/okz037.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ok/okz037.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ok/okz037.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ok.txt +station = ('kfdr', 0.00094032060828542574) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ok/okz037.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ok/okz037.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ok/okz037.txt + +[okz038] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ok/okz038.txt +centroid = (0.60496777065552654, -1.7186553850361002) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ok/okz038.txt +description = Comanche, OK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ok/okz038.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ok/okz038.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ok/okz038.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ok/okz038.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ok/okz038.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ok/okz038.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ok/okz038.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ok/okz038.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ok.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ok/okz038.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ok/okz038.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ok/okz038.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ok/okz038.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ok/okz038.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ok/okz038.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ok/okz038.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ok.txt +station = ('kfsi', 0.0014949875444728489) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ok/okz038.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ok/okz038.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ok/okz038.txt + +[okz039] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ok/okz039.txt +centroid = (0.60188726452575647, -1.7078291076859793) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ok/okz039.txt +description = Stephens, OK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ok/okz039.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ok/okz039.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ok/okz039.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ok/okz039.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ok/okz039.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ok/okz039.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ok/okz039.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ok/okz039.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ok.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ok/okz039.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ok/okz039.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ok/okz039.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ok/okz039.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ok/okz039.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ok/okz039.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ok/okz039.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ok.txt +station = ('kduc', 0.0015835925171547793) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ok/okz039.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ok/okz039.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ok/okz039.txt + +[okz040] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ok/okz040.txt +centroid = (0.60570779025837218, -1.698367677810918) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ok/okz040.txt +description = Garvin, OK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ok/okz040.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ok/okz040.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ok/okz040.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ok/okz040.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ok/okz040.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ok/okz040.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ok/okz040.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ok/okz040.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ok.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ok/okz040.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ok/okz040.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ok/okz040.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ok/okz040.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ok/okz040.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ok/okz040.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ok/okz040.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ok.txt +station = ('kpvj', 0.0012388149691148021) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ok/okz040.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ok/okz040.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ok/okz040.txt + +[okz041] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ok/okz041.txt +centroid = (0.60182966866044074, -1.6941544529966037) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ok/okz041.txt +description = Murray, OK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ok/okz041.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ok/okz041.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ok/okz041.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ok/okz041.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ok/okz041.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ok/okz041.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ok/okz041.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ok/okz041.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ok.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ok/okz041.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ok/okz041.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ok/okz041.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ok/okz041.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ok/okz041.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ok/okz041.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ok/okz041.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ok.txt +station = ('kadm', 0.0032052986881053029) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ok/okz041.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ok/okz041.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ok/okz041.txt + +[okz042] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ok/okz042.txt +centroid = (0.60611968796184268, -1.6874611153152055) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ok/okz042.txt +description = Pontotoc, OK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ok/okz042.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ok/okz042.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ok/okz042.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ok/okz042.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ok/okz042.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ok/okz042.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ok/okz042.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ok/okz042.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ok.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ok/okz042.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ok/okz042.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ok/okz042.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ok/okz042.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ok/okz042.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ok/okz042.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ok/okz042.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ok.txt +station = ('kadh', 0.0013454571877463584) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ok/okz042.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ok/okz042.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ok/okz042.txt + +[okz043] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ok/okz043.txt +centroid = (0.60367797233830267, -1.6807154177562476) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ok/okz043.txt +description = Coal, OK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ok/okz043.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ok/okz043.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ok/okz043.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ok/okz043.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ok/okz043.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ok/okz043.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ok/okz043.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ok/okz043.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ok.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ok/okz043.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ok/okz043.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ok/okz043.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ok/okz043.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ok/okz043.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ok/okz043.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ok/okz043.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ok.txt +station = ('kaqr', 0.0039531510498093322) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ok/okz043.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ok/okz043.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ok/okz043.txt + +[okz044] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ok/okz044.txt +centroid = (0.59847689116735958, -1.716917037101114) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ok/okz044.txt +description = Cotton, OK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ok/okz044.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ok/okz044.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ok/okz044.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ok/okz044.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ok/okz044.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ok/okz044.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ok/okz044.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ok/okz044.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ok.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ok/okz044.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ok/okz044.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ok/okz044.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ok/okz044.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ok/okz044.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ok/okz044.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ok/okz044.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ok.txt +station = ('klaw', 0.0048677202597031078) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ok/okz044.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ok/okz044.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ok/okz044.txt + +[okz045] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ok/okz045.txt +centroid = (0.59535100647703776, -1.7075568363226683) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ok/okz045.txt +description = Jefferson, OK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ok/okz045.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ok/okz045.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ok/okz045.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ok/okz045.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ok/okz045.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ok/okz045.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ok/okz045.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ok/okz045.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ok.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ok/okz045.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ok/okz045.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ok/okz045.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ok/okz045.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ok/okz045.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ok/okz045.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ok/okz045.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ok.txt +station = ('kduc', 0.0065289615788866615) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ok/okz045.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ok/okz045.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ok/okz045.txt + +[okz046] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ok/okz046.txt +centroid = (0.59779097677132587, -1.6979575254366994) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ok/okz046.txt +description = Carter, OK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ok/okz046.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ok/okz046.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ok/okz046.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ok/okz046.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ok/okz046.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ok/okz046.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ok/okz046.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ok/okz046.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ok.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ok/okz046.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ok/okz046.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ok/okz046.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ok/okz046.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ok/okz046.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ok/okz046.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ok/okz046.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ok.txt +station = ('k1f0', 0.0029746996480786362) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ok/okz046.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ok/okz046.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ok/okz046.txt + +[okz047] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ok/okz047.txt +centroid = (0.59893591276063407, -1.6870457269532309) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ok/okz047.txt +description = Johnston, OK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ok/okz047.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ok/okz047.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ok/okz047.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ok/okz047.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ok/okz047.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ok/okz047.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ok/okz047.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ok/okz047.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ok.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ok/okz047.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ok/okz047.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ok/okz047.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ok/okz047.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ok/okz047.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ok/okz047.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ok/okz047.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ok.txt +station = ('kadm', 0.0051785815278505409) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ok/okz047.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ok/okz047.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ok/okz047.txt + +[okz048] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ok/okz048.txt +centroid = (0.59993424109277482, -1.6761758163718103) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ok/okz048.txt +description = Atoka, OK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ok/okz048.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ok/okz048.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ok/okz048.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ok/okz048.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ok/okz048.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ok/okz048.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ok/okz048.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ok/okz048.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ok.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ok/okz048.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ok/okz048.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ok/okz048.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ok/okz048.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ok/okz048.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ok/okz048.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ok/okz048.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ok.txt +station = ('kaqr', 0.0016452184572710246) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ok/okz048.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ok/okz048.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ok/okz048.txt + +[okz049] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ok/okz049.txt +centroid = (0.60067600602487248, -1.6646217367236078) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ok/okz049.txt +description = Pushmataha, OK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ok/okz049.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ok/okz049.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ok/okz049.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ok/okz049.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ok/okz049.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ok/okz049.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ok/okz049.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ok/okz049.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ok.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ok/okz049.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ok/okz049.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ok/okz049.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ok/okz049.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ok/okz049.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ok/okz049.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ok/okz049.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ok.txt +station = ('khhw', 0.0070948998209221818) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ok/okz049.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ok/okz049.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ok/okz049.txt + +[okz050] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ok/okz050.txt +centroid = (0.59253753572282286, -1.69723146846787) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ok/okz050.txt +description = Love, OK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ok/okz050.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ok/okz050.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ok/okz050.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ok/okz050.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ok/okz050.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ok/okz050.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ok/okz050.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ok/okz050.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ok.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ok/okz050.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ok/okz050.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ok/okz050.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ok/okz050.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ok/okz050.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ok/okz050.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ok/okz050.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ok.txt +station = ('k1f0', 0.003863232269995976) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ok/okz050.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ok/okz050.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ok/okz050.txt + +[okz051] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ok/okz051.txt +centroid = (0.5938395513448107, -1.6889394091916448) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ok/okz051.txt +description = Marshall, OK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ok/okz051.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ok/okz051.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ok/okz051.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ok/okz051.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ok/okz051.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ok/okz051.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ok/okz051.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ok/okz051.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ok.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ok/okz051.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ok/okz051.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ok/okz051.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ok/okz051.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ok/okz051.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ok/okz051.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ok/okz051.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ok.txt +station = ('kgyi', 0.0055739942858666625) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ok/okz051.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ok/okz051.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ok/okz051.txt + +[okz052] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ok/okz052.txt +centroid = (0.59275395655007013, -1.6800539379697417) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ok/okz052.txt +description = Bryan, OK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ok/okz052.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ok/okz052.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ok/okz052.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ok/okz052.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ok/okz052.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ok/okz052.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ok/okz052.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ok/okz052.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ok.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ok/okz052.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ok/okz052.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ok/okz052.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ok/okz052.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ok/okz052.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ok/okz052.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ok/okz052.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ok.txt +station = ('kdua', 0.0019777201569197724) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ok/okz052.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ok/okz052.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ok/okz052.txt + +[okz053] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ok/okz053.txt +centroid = (0.5938744579298505, -1.6676987521948736) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ok/okz053.txt +description = Choctaw, OK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ok/okz053.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ok/okz053.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ok/okz053.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ok/okz053.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ok/okz053.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ok/okz053.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ok/okz053.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ok/okz053.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ok.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ok/okz053.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ok/okz053.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ok/okz053.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ok/okz053.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ok/okz053.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ok/okz053.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ok/okz053.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ok.txt +station = ('khhw', 0.00019136950176126458) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ok/okz053.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ok/okz053.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ok/okz053.txt + +[okz054] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ok/okz054.txt +centroid = (0.6393001423715069, -1.6824694736545016) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ok/okz054.txt +description = Osage, OK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ok/okz054.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ok/okz054.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ok/okz054.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ok/okz054.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ok/okz054.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ok/okz054.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ok/okz054.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ok/okz054.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ok.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ok/okz054.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ok/okz054.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ok/okz054.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ok/okz054.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ok/okz054.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ok/okz054.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ok/okz054.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ok.txt +station = ('kbvo', 0.0058560243959891629) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ok/okz054.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ok/okz054.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ok/okz054.txt + +[okz055] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ok/okz055.txt +centroid = (0.6408011255282221, -1.6738475471496497) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ok/okz055.txt +description = Washington, OK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ok/okz055.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ok/okz055.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ok/okz055.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ok/okz055.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ok/okz055.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ok/okz055.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ok/okz055.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ok/okz055.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ok.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ok/okz055.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ok/okz055.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ok/okz055.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ok/okz055.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ok/okz055.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ok/okz055.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ok/okz055.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ok.txt +station = ('kbvo', 0.0018089617235742467) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ok/okz055.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ok/okz055.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ok/okz055.txt + +[okz056] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ok/okz056.txt +centroid = (0.64225498479513332, -1.6688401975256781) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ok/okz056.txt +description = Nowata, OK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ok/okz056.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ok/okz056.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ok/okz056.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ok/okz056.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ok/okz056.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ok/okz056.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ok/okz056.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ok/okz056.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ok.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ok/okz056.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ok/okz056.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ok/okz056.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ok/okz056.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ok/okz056.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ok/okz056.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ok/okz056.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ok.txt +station = ('kcfv', 0.0050215982974850006) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ok/okz056.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ok/okz056.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ok/okz056.txt + +[okz057] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ok/okz057.txt +centroid = (0.64161270363039935, -1.6617018008850213) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ok/okz057.txt +description = Craig, OK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ok/okz057.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ok/okz057.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ok/okz057.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ok/okz057.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ok/okz057.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ok/okz057.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ok/okz057.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ok/okz057.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ok.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ok/okz057.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ok/okz057.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ok/okz057.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ok/okz057.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ok/okz057.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ok/okz057.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ok/okz057.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ok.txt +station = ('kcfv', 0.0075157765744258594) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ok/okz057.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ok/okz057.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ok/okz057.txt + +[okz058] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ok/okz058.txt +centroid = (0.64290075661837132, -1.654755390462084) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ok/okz058.txt +description = Ottawa, OK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ok/okz058.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ok/okz058.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ok/okz058.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ok/okz058.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ok/okz058.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ok/okz058.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ok/okz058.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ok/okz058.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ok.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ok/okz058.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ok/okz058.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ok/okz058.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ok/okz058.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ok/okz058.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ok/okz058.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ok/okz058.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ok.txt +station = ('kgmj', 0.004142086761659382) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ok/okz058.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ok/okz058.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ok/okz058.txt + +[okz059] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ok/okz059.txt +centroid = (0.63384947911752865, -1.6877211693737526) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ok/okz059.txt +description = Pawnee, OK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ok/okz059.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ok/okz059.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ok/okz059.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ok/okz059.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ok/okz059.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ok/okz059.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ok/okz059.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ok/okz059.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ok.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ok/okz059.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ok/okz059.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ok/okz059.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ok/okz059.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ok/okz059.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ok/okz059.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ok/okz059.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ok.txt +station = ('kcuh', 0.0064916210280199895) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ok/okz059.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ok/okz059.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ok/okz059.txt + +[okz060] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ok/okz060.txt +centroid = (0.63043212444212371, -1.6744950643021397) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ok/okz060.txt +description = Tulsa, OK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ok/okz060.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ok/okz060.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ok/okz060.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ok/okz060.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ok/okz060.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ok/okz060.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ok/okz060.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ok/okz060.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ok.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ok/okz060.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ok/okz060.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ok/okz060.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ok/okz060.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ok/okz060.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ok/okz060.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ok/okz060.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ok.txt +station = ('krvs', 0.0013740665091314741) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ok/okz060.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ok/okz060.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ok/okz060.txt + +[okz061] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ok/okz061.txt +centroid = (0.63480417421836954, -1.6686115593936668) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ok/okz061.txt +description = Rogers, OK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ok/okz061.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ok/okz061.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ok/okz061.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ok/okz061.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ok/okz061.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ok/okz061.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ok/okz061.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ok/okz061.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ok.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ok/okz061.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ok/okz061.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ok/okz061.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ok/okz061.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ok/okz061.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ok/okz061.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ok/okz061.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ok.txt +station = ('kgcm', 0.0022105078939293858) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ok/okz061.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ok/okz061.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ok/okz061.txt + +[okz062] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ok/okz062.txt +centroid = (0.6335859344004775, -1.662092754637468) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ok/okz062.txt +description = Mayes, OK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ok/okz062.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ok/okz062.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ok/okz062.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ok/okz062.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ok/okz062.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ok/okz062.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ok/okz062.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ok/okz062.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ok.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ok/okz062.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ok/okz062.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ok/okz062.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ok/okz062.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ok/okz062.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ok/okz062.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ok/okz062.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ok.txt +station = ('kgcm', 0.0035023956807346329) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ok/okz062.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ok/okz062.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ok/okz062.txt + +[okz063] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ok/okz063.txt +centroid = (0.63544296472459949, -1.6546192547804284) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ok/okz063.txt +description = Delaware, OK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ok/okz063.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ok/okz063.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ok/okz063.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ok/okz063.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ok/okz063.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ok/okz063.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ok/okz063.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ok/okz063.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ok.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ok/okz063.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ok/okz063.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ok/okz063.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ok/okz063.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ok/okz063.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ok/okz063.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ok/okz063.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ok.txt +station = ('kgmj', 0.0035552196636238647) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ok/okz063.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ok/okz063.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ok/okz063.txt + +[okz064] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ok/okz064.txt +centroid = (0.62662032535576817, -1.6819895081102034) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ok/okz064.txt +description = Creek, OK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ok/okz064.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ok/okz064.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ok/okz064.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ok/okz064.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ok/okz064.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ok/okz064.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ok/okz064.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ok/okz064.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ok.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ok/okz064.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ok/okz064.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ok/okz064.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ok/okz064.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ok/okz064.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ok/okz064.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ok/okz064.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ok.txt +station = ('kcuh', 0.0057388045508438229) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ok/okz064.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ok/okz064.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ok/okz064.txt + +[okz065] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ok/okz065.txt +centroid = (0.61898974586604893, -1.6811500047399941) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ok/okz065.txt +description = Okfuskee, OK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ok/okz065.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ok/okz065.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ok/okz065.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ok/okz065.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ok/okz065.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ok/okz065.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ok/okz065.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ok/okz065.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ok.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ok/okz065.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ok/okz065.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ok/okz065.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ok/okz065.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ok/okz065.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ok/okz065.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ok/okz065.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ok.txt +station = ('kokm', 0.006381208508888246) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ok/okz065.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ok/okz065.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ok/okz065.txt + +[okz066] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ok/okz066.txt +centroid = (0.62215228247066268, -1.6748929993715942) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ok/okz066.txt +description = Okmulgee, OK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ok/okz066.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ok/okz066.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ok/okz066.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ok/okz066.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ok/okz066.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ok/okz066.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ok/okz066.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ok/okz066.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ok.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ok/okz066.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ok/okz066.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ok/okz066.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ok/okz066.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ok/okz066.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ok/okz066.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ok/okz066.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ok.txt +station = ('kokm', 0.00043407794010024981) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ok/okz066.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ok/okz066.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ok/okz066.txt + +[okz067] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ok/okz067.txt +centroid = (0.62763610698042893, -1.6671594454560075) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ok/okz067.txt +description = Wagoner, OK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ok/okz067.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ok/okz067.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ok/okz067.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ok/okz067.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ok/okz067.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ok/okz067.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ok/okz067.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ok/okz067.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ok.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ok/okz067.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ok/okz067.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ok/okz067.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ok/okz067.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ok/okz067.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ok/okz067.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ok/okz067.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ok.txt +station = ('kmko', 0.0058505187194183988) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ok/okz067.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ok/okz067.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ok/okz067.txt + +[okz068] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ok/okz068.txt +centroid = (0.62668839319659586, -1.6580575534068571) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ok/okz068.txt +description = Cherokee, OK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ok/okz068.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ok/okz068.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ok/okz068.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ok/okz068.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ok/okz068.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ok/okz068.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ok/okz068.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ok/okz068.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ok.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ok/okz068.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ok/okz068.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ok/okz068.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ok/okz068.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ok/okz068.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ok/okz068.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ok/okz068.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ok.txt +station = ('ktqh', 0.00039475246954009832) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ok/okz068.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ok/okz068.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ok/okz068.txt + +[okz069] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ok/okz069.txt +centroid = (0.62629220345639314, -1.6521059806575564) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ok/okz069.txt +description = Adair, OK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ok/okz069.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ok/okz069.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ok/okz069.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ok/okz069.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ok/okz069.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ok/okz069.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ok/okz069.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ok/okz069.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ok.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ok/okz069.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ok/okz069.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ok/okz069.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ok/okz069.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ok/okz069.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ok/okz069.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ok/okz069.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ok.txt +station = ('ktqh', 0.0049503697746373088) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ok/okz069.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ok/okz069.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ok/okz069.txt + +[okz070] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ok/okz070.txt +centroid = (0.62161821171955245, -1.6646845685766796) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ok/okz070.txt +description = Muskogee, OK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ok/okz070.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ok/okz070.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ok/okz070.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ok/okz070.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ok/okz070.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ok/okz070.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ok/okz070.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ok/okz070.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ok.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ok/okz070.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ok/okz070.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ok/okz070.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ok/okz070.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ok/okz070.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ok/okz070.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ok/okz070.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ok.txt +station = ('kmko', 0.00061862408058487061) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ok/okz070.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ok/okz070.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ok/okz070.txt + +[okz071] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ok/okz071.txt +centroid = (0.61738753361271814, -1.6697006448469112) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ok/okz071.txt +description = McIntosh, OK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ok/okz071.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ok/okz071.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ok/okz071.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ok/okz071.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ok/okz071.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ok/okz071.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ok/okz071.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ok/okz071.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ok.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ok/okz071.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ok/okz071.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ok/okz071.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ok/okz071.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ok/okz071.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ok/okz071.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ok/okz071.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ok.txt +station = ('kmko', 0.0064371030913442833) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ok/okz071.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ok/okz071.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ok/okz071.txt + +[okz072] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ok/okz072.txt +centroid = (0.61950985398314329, -1.6537849873979751) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ok/okz072.txt +description = Sequoyah, OK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ok/okz072.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ok/okz072.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ok/okz072.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ok/okz072.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ok/okz072.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ok/okz072.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ok/okz072.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ok/okz072.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ok.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ok/okz072.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ok/okz072.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ok/okz072.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ok/okz072.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ok/okz072.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ok/okz072.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ok/okz072.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ok.txt +station = ('kjsv', 0.001208881374479658) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ok/okz072.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ok/okz072.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ok/okz072.txt + +[okz073] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ok/okz073.txt +centroid = (0.60953704263724773, -1.6711248335165387) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ok/okz073.txt +description = Pittsburg, OK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ok/okz073.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ok/okz073.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ok/okz073.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ok/okz073.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ok/okz073.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ok/okz073.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ok/okz073.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ok/okz073.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ok.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ok/okz073.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ok/okz073.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ok/okz073.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ok/okz073.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ok/okz073.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ok/okz073.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ok/okz073.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ok.txt +station = ('kmlc', 0.00086678771544615853) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ok/okz073.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ok/okz073.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ok/okz073.txt + +[okz074] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ok/okz074.txt +centroid = (0.61478873835649861, -1.6600978433024385) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ok/okz074.txt +description = Haskell, OK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ok/okz074.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ok/okz074.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ok/okz074.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ok/okz074.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ok/okz074.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ok/okz074.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ok/okz074.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ok/okz074.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ok.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ok/okz074.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ok/okz074.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ok/okz074.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ok/okz074.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ok/okz074.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ok/okz074.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ok/okz074.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ok.txt +station = ('kgzl', 0.00099204751000547104) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ok/okz074.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ok/okz074.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ok/okz074.txt + +[okz075] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ok/okz075.txt +centroid = (0.60870277525479444, -1.6624330938416068) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ok/okz075.txt +description = Latimer, OK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ok/okz075.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ok/okz075.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ok/okz075.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ok/okz075.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ok/okz075.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ok/okz075.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ok/okz075.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ok/okz075.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ok.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ok/okz075.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ok/okz075.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ok/okz075.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ok/okz075.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ok/okz075.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ok/okz075.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ok/okz075.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ok.txt +station = ('kgzl', 0.0073694331637125573) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ok/okz075.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ok/okz075.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ok/okz075.txt + +[okz076] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ok/okz076.txt +centroid = (0.60912165427527309, -1.65288788816245) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ok/okz076.txt +description = Le Flore, OK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ok/okz076.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ok/okz076.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ok/okz076.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ok/okz076.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ok/okz076.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ok/okz076.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ok/okz076.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ok/okz076.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ok.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ok/okz076.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ok/okz076.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ok/okz076.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ok/okz076.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ok/okz076.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ok/okz076.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ok/okz076.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ok.txt +station = ('krkr', 0.0024251211253018198) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ok/okz076.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ok/okz076.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ok/okz076.txt + +[okz077] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ok/okz077.txt +centroid = (0.59542081964711746, -1.6540694760660499) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ok/okz077.txt +description = McCurtain, OK +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ok/okz077.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ok/okz077.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ok/okz077.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ok/okz077.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ok/okz077.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ok/okz077.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ok/okz077.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ok/okz077.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ok.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ok/okz077.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ok/okz077.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ok/okz077.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ok/okz077.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ok/okz077.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ok/okz077.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ok/okz077.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ok.txt +station = ('k4o4', 0.0038128733727304173) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ok/okz077.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ok/okz077.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ok/okz077.txt + +[orz001] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/or/orz001.txt +centroid = (0.79781792635463988, -2.1611330023309545) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/or/orz001.txt +description = North Oregon Coast, OR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/or/orz001.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/or/orz001.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/or/orz001.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/or/orz001.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/or/orz001.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/or/orz001.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/or/orz001.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/or/orz001.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/or.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/or/orz001.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/or/orz001.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/or/orz001.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/or/orz001.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/or/orz001.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/or/orz001.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/or/orz001.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/or.txt +station = ('ktmk', 0.0050921726580101497) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/or/orz001.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/or/orz001.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/or/orz001.txt + +[orz002] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/or/orz002.txt +centroid = (0.77699614837834763, -2.1645067237750597) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/or/orz002.txt +description = Central Oregon Coast, OR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/or/orz002.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/or/orz002.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/or/orz002.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/or/orz002.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/or/orz002.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/or/orz002.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/or/orz002.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/or/orz002.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/or.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/or/orz002.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/or/orz002.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/or/orz002.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/or/orz002.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/or/orz002.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/or/orz002.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/or/orz002.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/or.txt +station = ('konp', 0.0011909255802846869) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/or/orz002.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/or/orz002.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/or/orz002.txt + +[orz003] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/or/orz003.txt +centroid = (0.79735366877360947, -2.1552302988007099) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/or/orz003.txt +description = Coast Range of Northwest Oregon, OR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/or/orz003.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/or/orz003.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/or/orz003.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/or/orz003.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/or/orz003.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/or/orz003.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/or/orz003.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/or/orz003.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/or.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/or/orz003.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/or/orz003.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/or/orz003.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/or/orz003.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/or/orz003.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/or/orz003.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/or/orz003.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/or.txt +station = ('ktmk', 0.0060918620570202774) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/or/orz003.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/or/orz003.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/or/orz003.txt + +[orz004] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/or/orz004.txt +centroid = (0.77433975725681226, -2.158797751791786) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/or/orz004.txt +description = Central Coast Range of Western Oregon, OR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/or/orz004.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/or/orz004.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/or/orz004.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/or/orz004.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/or/orz004.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/or/orz004.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/or/orz004.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/or/orz004.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/or.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/or/orz004.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/or/orz004.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/or/orz004.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/or/orz004.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/or/orz004.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/or/orz004.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/or/orz004.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/or.txt +station = ('konp', 0.0059115113574543555) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/or/orz004.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/or/orz004.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/or/orz004.txt + +[orz005] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/or/orz005.txt +centroid = (0.80343614121680962, -2.1469748914387767) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/or/orz005.txt +description = Lower Columbia, OR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/or/orz005.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/or/orz005.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/or/orz005.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/or/orz005.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/or/orz005.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/or/orz005.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/or/orz005.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/or/orz005.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/or.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/or/orz005.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/or/orz005.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/or/orz005.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/or/orz005.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/or/orz005.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/or/orz005.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/or/orz005.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/or.txt +station = ('kkls', 0.0019913758359370723) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/or/orz005.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/or/orz005.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/or/orz005.txt + +[orz006] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/or/orz006.txt +centroid = (0.79392060613493665, -2.1429466715251739) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/or/orz006.txt +description = Greater Portland Metro Area, OR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/or/orz006.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/or/orz006.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/or/orz006.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/or/orz006.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/or/orz006.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/or/orz006.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/or/orz006.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/or/orz006.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/or.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/or/orz006.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/or/orz006.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/or/orz006.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/or/orz006.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/or/orz006.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/or/orz006.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/or/orz006.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/or.txt +station = ('kvuo', 0.0027593931493071896) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/or/orz006.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/or/orz006.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/or/orz006.txt + +[orz007] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/or/orz007.txt +centroid = (0.78633715053502129, -2.1475892473354787) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/or/orz007.txt +description = Central Willamette Valley, OR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/or/orz007.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/or/orz007.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/or/orz007.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/or/orz007.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/or/orz007.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/or/orz007.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/or/orz007.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/or/orz007.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/or.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/or/orz007.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/or/orz007.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/or/orz007.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/or/orz007.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/or/orz007.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/or/orz007.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/or/orz007.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/or.txt +station = ('ksle', 0.002748424143822759) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/or/orz007.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/or/orz007.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/or/orz007.txt + +[orz008] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/or/orz008.txt +centroid = (0.77506755955489381, -2.1491827329425495) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/or/orz008.txt +description = South Willamette Valley, OR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/or/orz008.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/or/orz008.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/or/orz008.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/or/orz008.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/or/orz008.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/or/orz008.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/or/orz008.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/or/orz008.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/or.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/or/orz008.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/or/orz008.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/or/orz008.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/or/orz008.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/or/orz008.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/or/orz008.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/or/orz008.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/or.txt +station = ('kcvo', 0.0024086454301888694) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/or/orz008.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/or/orz008.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/or/orz008.txt + +[orz009] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/or/orz009.txt +centroid = (0.79632566984418485, -2.1271200258680891) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/or/orz009.txt +description = Western Columbia River Gorge, OR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/or/orz009.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/or/orz009.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/or/orz009.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/or/orz009.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/or/orz009.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/or/orz009.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/or/orz009.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/or/orz009.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/or.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/or/orz009.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/or/orz009.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/or/orz009.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/or/orz009.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/or/orz009.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/or/orz009.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/or/orz009.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/or.txt +station = ('kczk', 0.00071528551902114634) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/or/orz009.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/or/orz009.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/or/orz009.txt + +[orz010] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/or/orz010.txt +centroid = (0.78182896507711985, -2.1376600692208827) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/or/orz010.txt +description = Northern Oregon Cascade Foothills, OR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/or/orz010.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/or/orz010.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/or/orz010.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/or/orz010.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/or/orz010.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/or/orz010.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/or/orz010.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/or/orz010.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/or.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/or/orz010.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/or/orz010.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/or/orz010.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/or/orz010.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/or/orz010.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/or/orz010.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/or/orz010.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/or.txt +station = ('kuao', 0.0086906406139041215) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/or/orz010.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/or/orz010.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/or/orz010.txt + +[orz011] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/or/orz011.txt +centroid = (0.78402109861762481, -2.1289927641554791) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/or/orz011.txt +description = Northern Oregon Cascades, OR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/or/orz011.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/or/orz011.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/or/orz011.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/or/orz011.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/or/orz011.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/or/orz011.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/or/orz011.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/or/orz011.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/or.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/or/orz011.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/or/orz011.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/or/orz011.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/or/orz011.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/or/orz011.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/or/orz011.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/or/orz011.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/or.txt +station = ('kttd', 0.012205739294763158) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/or/orz011.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/or/orz011.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/or/orz011.txt + +[orz012] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/or/orz012.txt +centroid = (0.76652591819563365, -2.143168328340177) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/or/orz012.txt +description = Cascade Foothills in Lane County, OR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/or/orz012.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/or/orz012.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/or/orz012.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/or/orz012.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/or/orz012.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/or/orz012.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/or/orz012.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/or/orz012.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/or.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/or/orz012.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/or/orz012.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/or/orz012.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/or/orz012.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/or/orz012.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/or/orz012.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/or/orz012.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/or.txt +station = ('keug', 0.0064885018182784292) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/or/orz012.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/or/orz012.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/or/orz012.txt + +[orz013] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/or/orz013.txt +centroid = (0.76519074131785791, -2.13367548253858) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/or/orz013.txt +description = Cascades in Lane County, OR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/or/orz013.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/or/orz013.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/or/orz013.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/or/orz013.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/or/orz013.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/or/orz013.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/or/orz013.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/or/orz013.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/or.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/or/orz013.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/or/orz013.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/or/orz013.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/or/orz013.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/or/orz013.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/or/orz013.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/or/orz013.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/or.txt +station = ('kbdn', 0.013888115847587298) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/or/orz013.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/or/orz013.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/or/orz013.txt + +[orz014] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/or/orz014.txt +centroid = (0.7955489983270474, -2.1219311620019097) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/or/orz014.txt +description = Upper Hood River Valley, OR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/or/orz014.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/or/orz014.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/or/orz014.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/or/orz014.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/or/orz014.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/or/orz014.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/or/orz014.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/or/orz014.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/or.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/or/orz014.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/or/orz014.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/or/orz014.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/or/orz014.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/or/orz014.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/or/orz014.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/or/orz014.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/or.txt +station = ('kdls', 0.0050565517143688881) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/or/orz014.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/or/orz014.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/or/orz014.txt + +[orz021] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/or/orz021.txt +centroid = (0.75365062430367136, -2.1669432034108436) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/or/orz021.txt +description = South Central Oregon Coast, OR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/or/orz021.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/or/orz021.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/or/orz021.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/or/orz021.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/or/orz021.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/or/orz021.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/or/orz021.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/or/orz021.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/or.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/or/orz021.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/or/orz021.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/or/orz021.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/or/orz021.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/or/orz021.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/or/orz021.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/or/orz021.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/or.txt +station = ('koth', 0.0042804890434227838) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/or/orz021.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/or/orz021.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/or/orz021.txt + +[orz022] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/or/orz022.txt +centroid = (0.73900731187943902, -2.1694617135214718) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/or/orz022.txt +description = Curry County Coast, OR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/or/orz022.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/or/orz022.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/or/orz022.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/or/orz022.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/or/orz022.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/or/orz022.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/or/orz022.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/or/orz022.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/or.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/or/orz022.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/or/orz022.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/or/orz022.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/or/orz022.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/or/orz022.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/or/orz022.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/or/orz022.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/or.txt +station = ('kbok', 0.0046718901360436058) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/or/orz022.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/or/orz022.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/or/orz022.txt + +[orz023] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/or/orz023.txt +centroid = (0.75503467040050298, -2.1546124522455039) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/or/orz023.txt +description = Central Douglas County, OR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/or/orz023.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/or/orz023.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/or/orz023.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/or/orz023.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/or/orz023.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/or/orz023.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/or/orz023.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/or/orz023.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/or.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/or/orz023.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/or/orz023.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/or/orz023.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/or/orz023.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/or/orz023.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/or/orz023.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/or/orz023.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/or.txt +station = ('krbg', 0.0013580233835850527) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/or/orz023.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/or/orz023.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/or/orz023.txt + +[orz024] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/or/orz024.txt +centroid = (0.73984856057890025, -2.159745465575619) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/or/orz024.txt +description = Eastern Curry County and Josephine County, OR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/or/orz024.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/or/orz024.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/or/orz024.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/or/orz024.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/or/orz024.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/or/orz024.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/or/orz024.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/or/orz024.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/or.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/or/orz024.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/or/orz024.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/or/orz024.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/or/orz024.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/or/orz024.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/or/orz024.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/or/orz024.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/or.txt +station = ('ksxt', 0.0060848127983114189) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/or/orz024.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/or/orz024.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/or/orz024.txt + +[orz025] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/or/orz025.txt +centroid = (0.75465244329431613, -2.1416760718297221) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/or/orz025.txt +description = Eastern Douglas County Foothills, OR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/or/orz025.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/or/orz025.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/or/orz025.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/or/orz025.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/or/orz025.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/or/orz025.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/or/orz025.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/or/orz025.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/or.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/or/orz025.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/or/orz025.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/or/orz025.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/or/orz025.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/or/orz025.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/or/orz025.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/or/orz025.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/or.txt +station = ('krbg', 0.0081510446721010463) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/or/orz025.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/or/orz025.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/or/orz025.txt + +[orz026] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/or/orz026.txt +centroid = (0.74115755751789614, -2.1440619369171978) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/or/orz026.txt +description = Jackson County, OR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/or/orz026.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/or/orz026.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/or/orz026.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/or/orz026.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/or/orz026.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/or/orz026.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/or/orz026.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/or/orz026.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/or.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/or/orz026.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/or/orz026.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/or/orz026.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/or/orz026.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/or/orz026.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/or/orz026.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/or/orz026.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/or.txt +station = ('kmfr', 0.0015088638518342926) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/or/orz026.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/or/orz026.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/or/orz026.txt + +[orz027] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/or/orz027.txt +centroid = (0.75376407070505103, -2.1320383637002092) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/or/orz027.txt +description = South Central Oregon Cascades, OR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/or/orz027.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/or/orz027.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/or/orz027.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/or/orz027.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/or/orz027.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/or/orz027.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/or/orz027.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/or/orz027.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/or.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/or/orz027.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/or/orz027.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/or/orz027.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/or/orz027.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/or/orz027.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/or/orz027.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/or/orz027.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/or.txt +station = ('kmfr', 0.016840148256320592) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/or/orz027.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/or/orz027.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/or/orz027.txt + +[orz028] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/or/orz028.txt +centroid = (0.73886594021002749, -2.1371678863718206) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/or/orz028.txt +description = Siskiyou Mountains and Southern Oregon Cascades, OR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/or/orz028.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/or/orz028.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/or/orz028.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/or/orz028.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/or/orz028.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/or/orz028.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/or/orz028.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/or/orz028.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/or.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/or/orz028.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/or/orz028.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/or/orz028.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/or/orz028.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/or/orz028.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/or/orz028.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/or/orz028.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/or.txt +station = ('kmfr', 0.0056459650319372794) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/or/orz028.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/or/orz028.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/or/orz028.txt + +[orz029] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/or/orz029.txt +centroid = (0.73915566486585849, -2.1244531627710419) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/or/orz029.txt +description = Klamath Basin, OR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/or/orz029.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/or/orz029.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/or/orz029.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/or/orz029.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/or/orz029.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/or/orz029.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/or/orz029.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/or/orz029.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/or.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/or/orz029.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/or/orz029.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/or/orz029.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/or/orz029.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/or/orz029.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/or/orz029.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/or/orz029.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/or.txt +station = ('klmt', 0.0035001152392704865) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/or/orz029.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/or/orz029.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/or/orz029.txt + +[orz030] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/or/orz030.txt +centroid = (0.74665010867392212, -2.116169830141077) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/or/orz030.txt +description = Northern and Eastern Klamath County and Western Lake County, OR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/or/orz030.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/or/orz030.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/or/orz030.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/or/orz030.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/or/orz030.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/or/orz030.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/or/orz030.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/or/orz030.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/or.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/or/orz030.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/or/orz030.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/or/orz030.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/or/orz030.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/or/orz030.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/or/orz030.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/or/orz030.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/or.txt +station = ('klmt', 0.012543362990075512) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/or/orz030.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/or/orz030.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/or/orz030.txt + +[orz031] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/or/orz031.txt +centroid = (0.74718417942503246, -2.0987706428279451) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/or/orz031.txt +description = Central and Eastern Lake County, OR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/or/orz031.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/or/orz031.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/or/orz031.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/or/orz031.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/or/orz031.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/or/orz031.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/or/orz031.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/or/orz031.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/or.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/or/orz031.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/or/orz031.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/or/orz031.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/or/orz031.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/or/orz031.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/or/orz031.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/or/orz031.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/or.txt +station = ('klkv', 0.011400112732707407) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/or/orz031.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/or/orz031.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/or/orz031.txt + +[orz041] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/or/orz041.txt +centroid = (0.79667299036533168, -2.1040153572301881) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/or/orz041.txt +description = East Columbia River Gorge, OR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/or/orz041.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/or/orz041.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/or/orz041.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/or/orz041.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/or/orz041.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/or/orz041.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/or/orz041.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/or/orz041.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/or.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/or/orz041.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/or/orz041.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/or/orz041.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/or/orz041.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/or/orz041.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/or/orz041.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/or/orz041.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/or.txt +station = ('kdls', 0.007528937196716037) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/or/orz041.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/or/orz041.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/or/orz041.txt + +[orz042] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/or/orz042.txt +centroid = (0.78571930397981526, -2.1122358580070815) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/or/orz042.txt +description = North Central Oregon, OR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/or/orz042.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/or/orz042.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/or/orz042.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/or/orz042.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/or/orz042.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/or/orz042.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/or/orz042.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/or/orz042.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/or.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/or/orz042.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/or/orz042.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/or/orz042.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/or/orz042.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/or/orz042.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/or/orz042.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/or/orz042.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/or.txt +station = ('kdls', 0.010591176001726788) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/or/orz042.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/or/orz042.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/or/orz042.txt + +[orz044] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/or/orz044.txt +centroid = (0.79840610231256204, -2.0851151867603415) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/or/orz044.txt +description = Lower Columbia Basin, OR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/or/orz044.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/or/orz044.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/or/orz044.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/or/orz044.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/or/orz044.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/or/orz044.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/or/orz044.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/or/orz044.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/or.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/or/orz044.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/or/orz044.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/or/orz044.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/or/orz044.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/or/orz044.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/or/orz044.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/or/orz044.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/or.txt +station = ('khri', 0.0028952391717515019) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/or/orz044.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/or/orz044.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/or/orz044.txt + +[orz049] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/or/orz049.txt +centroid = (0.79192045881215112, -2.0586420326660915) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/or/orz049.txt +description = Grande Ronde Valley, OR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/or/orz049.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/or/orz049.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/or/orz049.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/or/orz049.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/or/orz049.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/or/orz049.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/or/orz049.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/or/orz049.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/or.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/or/orz049.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/or/orz049.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/or/orz049.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/or/orz049.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/or/orz049.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/or/orz049.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/or/orz049.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/or.txt +station = ('klgd', 0.0016857361433654735) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/or/orz049.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/or/orz049.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/or/orz049.txt + +[orz050] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/or/orz050.txt +centroid = (0.79382286769682497, -2.0452379040107749) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/or/orz050.txt +description = Wallowa County, OR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/or/orz050.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/or/orz050.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/or/orz050.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/or/orz050.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/or/orz050.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/or/orz050.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/or/orz050.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/or/orz050.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/or.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/or/orz050.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/or/orz050.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/or/orz050.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/or/orz050.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/or/orz050.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/or/orz050.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/or/orz050.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/or.txt +station = ('klgd', 0.01059664280084617) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/or/orz050.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/or/orz050.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/or/orz050.txt + +[orz061] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/or/orz061.txt +centroid = (0.7516085890788381, -2.0763815591833619) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/or/orz061.txt +description = Harney County, OR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/or/orz061.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/or/orz061.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/or/orz061.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/or/orz061.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/or/orz061.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/or/orz061.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/or/orz061.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/or/orz061.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/or.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/or/orz061.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/or/orz061.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/or/orz061.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/or/orz061.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/or/orz061.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/or/orz061.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/or/orz061.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/or.txt +station = ('kbno', 0.0093577243971584602) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/or/orz061.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/or/orz061.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/or/orz061.txt + +[orz062] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/or/orz062.txt +centroid = (0.78032274593264883, -2.0538214332720832) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/or/orz062.txt +description = Baker County, OR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/or/orz062.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/or/orz062.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/or/orz062.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/or/orz062.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/or/orz062.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/or/orz062.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/or/orz062.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/or/orz062.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/or.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/or/orz062.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/or/orz062.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/or/orz062.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/or/orz062.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/or/orz062.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/or/orz062.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/or/orz062.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/or.txt +station = ('kbke', 0.0027860350303022122) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/or/orz062.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/or/orz062.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/or/orz062.txt + +[orz063] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/or/orz063.txt +centroid = (0.75263833333751473, -2.0535613792135359) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/or/orz063.txt +description = Malheur County, OR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/or/orz063.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/or/orz063.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/or/orz063.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/or/orz063.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/or/orz063.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/or/orz063.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/or/orz063.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/or/orz063.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/or.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/or/orz063.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/or/orz063.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/or/orz063.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/or/orz063.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/or/orz063.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/or/orz063.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/or/orz063.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/or.txt +station = ('kreo', 0.0097817123639904659) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/or/orz063.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/or/orz063.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/or/orz063.txt + +[orz064] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/or/orz064.txt +centroid = (0.76835153259321964, -2.0452379040107749) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/or/orz064.txt +description = Oregon Lower Treasure Valley, OR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/or/orz064.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/or/orz064.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/or/orz064.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/or/orz064.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/or/orz064.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/or/orz064.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/or/orz064.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/or/orz064.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/or.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/or/orz064.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/or/orz064.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/or/orz064.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/or/orz064.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/or/orz064.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/or/orz064.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/or/orz064.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/or.txt +station = ('kono', 0.0020970594024054628) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/or/orz064.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/or/orz064.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/or/orz064.txt + +[orz502] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/or/orz502.txt +centroid = (0.79753169235731292, -2.0595600758526404) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/or/orz502.txt +description = Northern Blue Mountains of Oregon, OR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/or/orz502.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/or/orz502.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/or/orz502.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/or/orz502.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/or/orz502.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/or/orz502.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/or/orz502.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/or/orz502.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/or.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/or/orz502.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/or/orz502.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/or/orz502.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/or/orz502.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/or/orz502.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/or/orz502.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/or/orz502.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/or.txt +station = ('kmeh', 0.0059233136247301621) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/or/orz502.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/or/orz502.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/or/orz502.txt + +[orz503] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/or/orz503.txt +centroid = (0.78507178682732526, -2.0764496270241897) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/or/orz503.txt +description = Southern Blue Mountains of Oregon, OR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/or/orz503.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/or/orz503.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/or/orz503.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/or/orz503.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/or/orz503.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/or/orz503.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/or/orz503.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/or/orz503.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/or.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/or/orz503.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/or/orz503.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/or/orz503.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/or/orz503.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/or/orz503.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/or/orz503.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/or/orz503.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/or.txt +station = ('kgcd', 0.010146655292793077) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/or/orz503.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/or/orz503.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/or/orz503.txt + +[orz505] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/or/orz505.txt +centroid = (0.78071195435584351, -2.0905990112701076) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/or/orz505.txt +description = John Day Basin, OR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/or/orz505.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/or/orz505.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/or/orz505.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/or/orz505.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/or/orz505.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/or/orz505.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/or/orz505.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/or/orz505.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/or.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/or/orz505.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/or/orz505.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/or/orz505.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/or/orz505.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/or/orz505.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/or/orz505.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/or/orz505.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/or.txt +station = ('kgcd', 0.011750432688002254) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/or/orz505.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/or/orz505.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/or/orz505.txt + +[orz506] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/or/orz506.txt +centroid = (0.77082815480179956, -2.094545200708867) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/or/orz506.txt +description = Ochoco-John Day Highlands, OR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/or/orz506.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/or/orz506.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/or/orz506.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/or/orz506.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/or/orz506.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/or/orz506.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/or/orz506.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/or/orz506.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/or.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/or/orz506.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/or/orz506.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/or/orz506.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/or/orz506.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/or/orz506.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/or/orz506.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/or/orz506.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/or.txt +station = ('kbdn', 0.014983101829607996) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/or/orz506.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/or/orz506.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/or/orz506.txt + +[orz507] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/or/orz507.txt +centroid = (0.79803085652338324, -2.0719414415662882) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/or/orz507.txt +description = Northern Blue Mountains Foothills, OR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/or/orz507.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/or/orz507.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/or/orz507.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/or/orz507.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/or/orz507.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/or/orz507.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/or/orz507.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/or/orz507.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/or.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/or/orz507.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/or/orz507.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/or/orz507.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/or/orz507.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/or/orz507.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/or/orz507.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/or/orz507.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/or.txt +station = ('kmeh', 0.0051184666604172915) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/or/orz507.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/or/orz507.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/or/orz507.txt + +[orz508] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/or/orz508.txt +centroid = (0.7914055866828128, -2.0944457169415034) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/or/orz508.txt +description = Southern Blue Mountains Foothills, OR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/or/orz508.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/or/orz508.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/or/orz508.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/or/orz508.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/or/orz508.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/or/orz508.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/or/orz508.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/or/orz508.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/or.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/or/orz508.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/or/orz508.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/or/orz508.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/or/orz508.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/or/orz508.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/or/orz508.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/or/orz508.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/or.txt +station = ('khri', 0.012399125392387217) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/or/orz508.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/or/orz508.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/or/orz508.txt + +[orz509] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/or/orz509.txt +centroid = (0.77252985082249415, -2.1214756310671392) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/or/orz509.txt +description = East Slopes of the Cascades, OR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/or/orz509.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/or/orz509.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/or/orz509.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/or/orz509.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/or/orz509.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/or/orz509.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/or/orz509.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/or/orz509.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/or.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/or/orz509.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/or/orz509.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/or/orz509.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/or/orz509.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/or/orz509.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/or/orz509.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/or/orz509.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/or.txt +station = ('kbdn', 0.0053343489039915162) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/or/orz509.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/or/orz509.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/or/orz509.txt + +[paz001] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pa/paz001.txt +centroid = (0.73481503101614853, -1.3984363365141965) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pa/paz001.txt +description = Northern Erie, PA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pa/paz001.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pa/paz001.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pa/paz001.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pa/paz001.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pa/paz001.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pa/paz001.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pa/paz001.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pa/paz001.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pa/paz001.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pa/paz001.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pa/paz001.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pa/paz001.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pa/paz001.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pa/paz001.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pa/paz001.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pa.txt +station = ('keri', 0.00082733782144395825) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pa/paz001.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pa/paz001.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pa/paz001.txt + +[paz002] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pa/paz002.txt +centroid = (0.73251468706202005, -1.3965077476907428) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pa/paz002.txt +description = Southern Erie, PA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pa/paz002.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pa/paz002.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pa/paz002.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pa/paz002.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pa/paz002.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pa/paz002.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pa/paz002.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pa/paz002.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pa/paz002.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pa/paz002.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pa/paz002.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pa/paz002.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pa/paz002.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pa/paz002.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pa/paz002.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pa.txt +station = ('keri', 0.0029550568698466497) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pa/paz002.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pa/paz002.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pa/paz002.txt + +[paz003] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pa/paz003.txt +centroid = (0.72753700803533228, -1.3981186865903337) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pa/paz003.txt +description = Crawford, PA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pa/paz003.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pa/paz003.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pa/paz003.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pa/paz003.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pa/paz003.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pa/paz003.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pa/paz003.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pa/paz003.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pa/paz003.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pa/paz003.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pa/paz003.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pa/paz003.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pa/paz003.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pa/paz003.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pa/paz003.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pa.txt +station = ('kgkj', 0.0016964629941848255) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pa/paz003.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pa/paz003.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pa/paz003.txt + +[paz004] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pa/paz004.txt +centroid = (0.72980419073367297, -1.3835940565552369) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pa/paz004.txt +description = Warren, PA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pa/paz004.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pa/paz004.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pa/paz004.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pa/paz004.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pa/paz004.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pa/paz004.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pa/paz004.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pa/paz004.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pa/paz004.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pa/paz004.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pa/paz004.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pa/paz004.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pa/paz004.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pa/paz004.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pa/paz004.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pa.txt +station = ('kjhw', 0.005852883557243397) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pa/paz004.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pa/paz004.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pa/paz004.txt + +[paz005] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pa/paz005.txt +centroid = (0.72968376301528526, -1.3712877399994248) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pa/paz005.txt +description = McKean, PA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pa/paz005.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pa/paz005.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pa/paz005.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pa/paz005.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pa/paz005.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pa/paz005.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pa/paz005.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pa/paz005.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pa/paz005.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pa/paz005.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pa/paz005.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pa/paz005.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pa/paz005.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pa/paz005.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pa/paz005.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pa.txt +station = ('kbfd', 0.00084798961812331854) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pa/paz005.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pa/paz005.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pa/paz005.txt + +[paz006] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pa/paz006.txt +centroid = (0.72858769624503283, -1.3595381834749989) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pa/paz006.txt +description = Potter, PA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pa/paz006.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pa/paz006.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pa/paz006.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pa/paz006.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pa/paz006.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pa/paz006.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pa/paz006.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pa/paz006.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pa/paz006.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pa/paz006.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pa/paz006.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pa/paz006.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pa/paz006.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pa/paz006.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pa/paz006.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pa.txt +station = ('kelz', 0.0063419564717229005) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pa/paz006.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pa/paz006.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pa/paz006.txt + +[paz007] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pa/paz007.txt +centroid = (0.72085937831720193, -1.4007611150778529) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pa/paz007.txt +description = Mercer, PA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pa/paz007.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pa/paz007.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pa/paz007.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pa/paz007.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pa/paz007.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pa/paz007.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pa/paz007.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pa/paz007.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pa/paz007.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pa/paz007.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pa/paz007.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pa/paz007.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pa/paz007.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pa/paz007.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pa/paz007.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pa.txt +station = ('kucp', 0.0052480058474393835) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pa/paz007.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pa/paz007.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pa/paz007.txt + +[paz008] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pa/paz008.txt +centroid = (0.72258376361817245, -1.3920397048056372) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pa/paz008.txt +description = Venango, PA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pa/paz008.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pa/paz008.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pa/paz008.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pa/paz008.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pa/paz008.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pa/paz008.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pa/paz008.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pa/paz008.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pa/paz008.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pa/paz008.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pa/paz008.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pa/paz008.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pa/paz008.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pa/paz008.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pa/paz008.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pa.txt +station = ('kfkl', 0.001455852480053913) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pa/paz008.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pa/paz008.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pa/paz008.txt + +[paz009] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pa/paz009.txt +centroid = (0.72454202303891002, -1.3829308314394788) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pa/paz009.txt +description = Forest, PA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pa/paz009.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pa/paz009.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pa/paz009.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pa/paz009.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pa/paz009.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pa/paz009.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pa/paz009.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pa/paz009.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pa/paz009.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pa/paz009.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pa/paz009.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pa/paz009.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pa/paz009.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pa/paz009.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pa/paz009.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pa.txt +station = ('kduj', 0.0073830399423638858) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pa/paz009.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pa/paz009.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pa/paz009.txt + +[paz010] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pa/paz010.txt +centroid = (0.72300787862640703, -1.3726874940595242) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pa/paz010.txt +description = Elk, PA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pa/paz010.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pa/paz010.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pa/paz010.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pa/paz010.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pa/paz010.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pa/paz010.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pa/paz010.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pa/paz010.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pa/paz010.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pa/paz010.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pa/paz010.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pa/paz010.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pa/paz010.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pa/paz010.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pa/paz010.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pa.txt +station = ('kduj', 0.0052209270355851661) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pa/paz010.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pa/paz010.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pa/paz010.txt + +[paz011] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pa/paz011.txt +centroid = (0.7232085914903863, -1.3649137975711416) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pa/paz011.txt +description = Cameron, PA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pa/paz011.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pa/paz011.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pa/paz011.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pa/paz011.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pa/paz011.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pa/paz011.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pa/paz011.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pa/paz011.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pa/paz011.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pa/paz011.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pa/paz011.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pa/paz011.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pa/paz011.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pa/paz011.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pa/paz011.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pa.txt +station = ('kfig', 0.0073060826054767635) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pa/paz011.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pa/paz011.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pa/paz011.txt + +[paz012] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pa/paz012.txt +centroid = (0.72067088275798663, -1.356700278111256) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pa/paz012.txt +description = Northern Clinton, PA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pa/paz012.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pa/paz012.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pa/paz012.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pa/paz012.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pa/paz012.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pa/paz012.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pa/paz012.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pa/paz012.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pa/paz012.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pa/paz012.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pa/paz012.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pa/paz012.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pa/paz012.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pa/paz012.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pa/paz012.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pa.txt +station = ('kunv', 0.0078556801731434495) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pa/paz012.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pa/paz012.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pa/paz012.txt + +[paz013] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pa/paz013.txt +centroid = (0.71543140434349961, -1.4020962919556286) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pa/paz013.txt +description = Lawrence, PA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pa/paz013.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pa/paz013.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pa/paz013.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pa/paz013.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pa/paz013.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pa/paz013.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pa/paz013.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pa/paz013.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pa/paz013.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pa/paz013.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pa/paz013.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pa/paz013.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pa/paz013.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pa/paz013.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pa/paz013.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pa.txt +station = ('kucp', 0.0011999949949927336) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pa/paz013.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pa/paz013.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pa/paz013.txt + +[paz014] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pa/paz014.txt +centroid = (0.71404386758816418, -1.3947449651462285) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pa/paz014.txt +description = Butler, PA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pa/paz014.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pa/paz014.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pa/paz014.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pa/paz014.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pa/paz014.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pa/paz014.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pa/paz014.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pa/paz014.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pa/paz014.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pa/paz014.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pa/paz014.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pa/paz014.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pa/paz014.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pa/paz014.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pa/paz014.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pa.txt +station = ('kbtp', 0.0022930578198136174) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pa/paz014.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pa/paz014.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pa/paz014.txt + +[paz015] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pa/paz015.txt +centroid = (0.71894475212776421, -1.3861579452264166) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pa/paz015.txt +description = Clarion, PA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pa/paz015.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pa/paz015.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pa/paz015.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pa/paz015.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pa/paz015.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pa/paz015.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pa/paz015.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pa/paz015.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pa/paz015.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pa/paz015.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pa/paz015.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pa/paz015.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pa/paz015.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pa/paz015.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pa/paz015.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pa.txt +station = ('kfkl', 0.0067270683821976564) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pa/paz015.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pa/paz015.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pa/paz015.txt + +[paz016] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pa/paz016.txt +centroid = (0.71782076008947993, -1.3788013824292604) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pa/paz016.txt +description = Jefferson, PA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pa/paz016.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pa/paz016.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pa/paz016.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pa/paz016.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pa/paz016.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pa/paz016.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pa/paz016.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pa/paz016.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pa/paz016.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pa/paz016.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pa/paz016.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pa/paz016.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pa/paz016.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pa/paz016.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pa/paz016.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pa.txt +station = ('kduj', 0.0018054486093462539) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pa/paz016.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pa/paz016.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pa/paz016.txt + +[paz017] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pa/paz017.txt +centroid = (0.71558848397617913, -1.3696314225392823) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pa/paz017.txt +description = Clearfield, PA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pa/paz017.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pa/paz017.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pa/paz017.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pa/paz017.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pa/paz017.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pa/paz017.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pa/paz017.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pa/paz017.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pa/paz017.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pa/paz017.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pa/paz017.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pa/paz017.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pa/paz017.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pa/paz017.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pa/paz017.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pa.txt +station = ('kfig', 0.001152107652809568) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pa/paz017.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pa/paz017.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pa/paz017.txt + +[paz018] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pa/paz018.txt +centroid = (0.71540173374621574, -1.3614126670916409) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pa/paz018.txt +description = Northern Centre, PA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pa/paz018.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pa/paz018.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pa/paz018.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pa/paz018.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pa/paz018.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pa/paz018.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pa/paz018.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pa/paz018.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pa/paz018.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pa/paz018.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pa/paz018.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pa/paz018.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pa/paz018.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pa/paz018.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pa/paz018.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pa.txt +station = ('kunv', 0.0031638686666741627) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pa/paz018.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pa/paz018.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pa/paz018.txt + +[paz019] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pa/paz019.txt +centroid = (0.7133841331309102, -1.3561592260431381) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pa/paz019.txt +description = Southern Centre, PA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pa/paz019.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pa/paz019.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pa/paz019.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pa/paz019.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pa/paz019.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pa/paz019.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pa/paz019.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pa/paz019.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pa/paz019.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pa/paz019.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pa/paz019.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pa/paz019.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pa/paz019.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pa/paz019.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pa/paz019.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pa.txt +station = ('kunv', 0.0019950141723065868) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pa/paz019.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pa/paz019.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pa/paz019.txt + +[paz020] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pa/paz020.txt +centroid = (0.7100400822840891, -1.4023598366726797) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pa/paz020.txt +description = Beaver, PA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pa/paz020.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pa/paz020.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pa/paz020.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pa/paz020.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pa/paz020.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pa/paz020.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pa/paz020.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pa/paz020.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pa/paz020.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pa/paz020.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pa/paz020.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pa/paz020.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pa/paz020.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pa/paz020.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pa/paz020.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pa.txt +station = ('kbvi', 0.0016179947695380856) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pa/paz020.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pa/paz020.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pa/paz020.txt + +[paz021] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pa/paz021.txt +centroid = (0.70631380433108126, -1.3959352796960887) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pa/paz021.txt +description = Allegheny, PA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pa/paz021.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pa/paz021.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pa/paz021.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pa/paz021.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pa/paz021.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pa/paz021.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pa/paz021.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pa/paz021.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pa/paz021.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pa/paz021.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pa/paz021.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pa/paz021.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pa/paz021.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pa/paz021.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pa/paz021.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pa.txt +station = ('kagc', 0.0022438143824761092) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pa/paz021.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pa/paz021.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pa/paz021.txt + +[paz022] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pa/paz022.txt +centroid = (0.71231250097018572, -1.386917163451034) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pa/paz022.txt +description = Armstrong, PA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pa/paz022.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pa/paz022.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pa/paz022.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pa/paz022.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pa/paz022.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pa/paz022.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pa/paz022.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pa/paz022.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pa/paz022.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pa/paz022.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pa/paz022.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pa/paz022.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pa/paz022.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pa/paz022.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pa/paz022.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pa.txt +station = ('kidi', 0.0057466569809093418) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pa/paz022.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pa/paz022.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pa/paz022.txt + +[paz023] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pa/paz023.txt +centroid = (0.70951299284998681, -1.3803372721710154) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pa/paz023.txt +description = Indiana, PA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pa/paz023.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pa/paz023.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pa/paz023.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pa/paz023.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pa/paz023.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pa/paz023.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pa/paz023.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pa/paz023.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pa/paz023.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pa/paz023.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pa/paz023.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pa/paz023.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pa/paz023.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pa/paz023.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pa/paz023.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pa.txt +station = ('kidi', 0.00036699657813668855) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pa/paz023.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pa/paz023.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pa/paz023.txt + +[paz024] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pa/paz024.txt +centroid = (0.70677806191211168, -1.3738114860978086) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pa/paz024.txt +description = Cambria, PA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pa/paz024.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pa/paz024.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pa/paz024.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pa/paz024.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pa/paz024.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pa/paz024.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pa/paz024.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pa/paz024.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pa/paz024.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pa/paz024.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pa/paz024.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pa/paz024.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pa/paz024.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pa/paz024.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pa/paz024.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pa.txt +station = ('kjst', 0.003501904792632272) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pa/paz024.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pa/paz024.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pa/paz024.txt + +[paz025] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pa/paz025.txt +centroid = (0.70653197048758043, -1.3674410343280294) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pa/paz025.txt +description = Blair, PA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pa/paz025.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pa/paz025.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pa/paz025.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pa/paz025.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pa/paz025.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pa/paz025.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pa/paz025.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pa/paz025.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pa/paz025.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pa/paz025.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pa/paz025.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pa/paz025.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pa/paz025.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pa/paz025.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pa/paz025.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pa.txt +station = ('kaoo', 0.003192628478092993) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pa/paz025.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pa/paz025.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pa/paz025.txt + +[paz026] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pa/paz026.txt +centroid = (0.70540972377854816, -1.3610286946562022) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pa/paz026.txt +description = Huntingdon, PA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pa/paz026.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pa/paz026.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pa/paz026.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pa/paz026.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pa/paz026.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pa/paz026.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pa/paz026.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pa/paz026.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pa/paz026.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pa/paz026.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pa/paz026.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pa/paz026.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pa/paz026.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pa/paz026.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pa/paz026.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pa.txt +station = ('kaoo', 0.0049066601100786278) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pa/paz026.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pa/paz026.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pa/paz026.txt + +[paz027] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pa/paz027.txt +centroid = (0.70878519055190514, -1.3546739508496906) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pa/paz027.txt +description = Mifflin, PA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pa/paz027.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pa/paz027.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pa/paz027.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pa/paz027.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pa/paz027.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pa/paz027.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pa/paz027.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pa/paz027.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pa/paz027.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pa/paz027.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pa/paz027.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pa/paz027.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pa/paz027.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pa/paz027.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pa/paz027.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pa.txt +station = ('kunv', 0.0051938285378738819) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pa/paz027.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pa/paz027.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pa/paz027.txt + +[paz028] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pa/paz028.txt +centroid = (0.70740114445507374, -1.350919747628651) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pa/paz028.txt +description = Juniata, PA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pa/paz028.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pa/paz028.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pa/paz028.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pa/paz028.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pa/paz028.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pa/paz028.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pa/paz028.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pa/paz028.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pa/paz028.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pa/paz028.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pa/paz028.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pa/paz028.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pa/paz028.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pa/paz028.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pa/paz028.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pa.txt +station = ('kunv', 0.008131940235050648) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pa/paz028.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pa/paz028.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pa/paz028.txt + +[paz029] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pa/paz029.txt +centroid = (0.70143735440100907, -1.4005953087989136) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pa/paz029.txt +description = Washington, PA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pa/paz029.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pa/paz029.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pa/paz029.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pa/paz029.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pa/paz029.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pa/paz029.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pa/paz029.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pa/paz029.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pa/paz029.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pa/paz029.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pa/paz029.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pa/paz029.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pa/paz029.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pa/paz029.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pa/paz029.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pa.txt +station = ('kafj', 0.0010849706486548295) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pa/paz029.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pa/paz029.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pa/paz029.txt + +[paz031] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pa/paz031.txt +centroid = (0.69558002943131614, -1.400153740498159) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pa/paz031.txt +description = Greene, PA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pa/paz031.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pa/paz031.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pa/paz031.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pa/paz031.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pa/paz031.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pa/paz031.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pa/paz031.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pa/paz031.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pa/paz031.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pa/paz031.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pa/paz031.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pa/paz031.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pa/paz031.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pa/paz031.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pa/paz031.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pa.txt +station = ('kafj', 0.0049452439648472925) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pa/paz031.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pa/paz031.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pa/paz031.txt + +[paz033] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pa/paz033.txt +centroid = (0.69765173525343327, -1.3793040372538348) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pa/paz033.txt +description = Somerset, PA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pa/paz033.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pa/paz033.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pa/paz033.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pa/paz033.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pa/paz033.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pa/paz033.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pa/paz033.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pa/paz033.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pa/paz033.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pa/paz033.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pa/paz033.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pa/paz033.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pa/paz033.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pa/paz033.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pa/paz033.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pa.txt +station = ('kjst', 0.0065458533037588721) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pa/paz033.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pa/paz033.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pa/paz033.txt + +[paz034] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pa/paz034.txt +centroid = (0.69824689252836347, -1.3699124205488533) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pa/paz034.txt +description = Bedford, PA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pa/paz034.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pa/paz034.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pa/paz034.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pa/paz034.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pa/paz034.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pa/paz034.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pa/paz034.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pa/paz034.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pa/paz034.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pa/paz034.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pa/paz034.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pa/paz034.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pa/paz034.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pa/paz034.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pa/paz034.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pa.txt +station = ('kaoo', 0.0056197315148118088) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pa/paz034.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pa/paz034.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pa/paz034.txt + +[paz035] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pa/paz035.txt +centroid = (0.69683143050499607, -1.3633185666348187) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pa/paz035.txt +description = Fulton, PA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pa/paz035.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pa/paz035.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pa/paz035.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pa/paz035.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pa/paz035.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pa/paz035.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pa/paz035.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pa/paz035.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pa/paz035.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pa/paz035.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pa/paz035.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pa/paz035.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pa/paz035.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pa/paz035.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pa/paz035.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pa.txt +station = ('khgr', 0.0064277810619735682) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pa/paz035.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pa/paz035.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pa/paz035.txt + +[paz036] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pa/paz036.txt +centroid = (0.69686633709003598, -1.3564908386010168) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pa/paz036.txt +description = Franklin, PA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pa/paz036.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pa/paz036.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pa/paz036.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pa/paz036.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pa/paz036.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pa/paz036.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pa/paz036.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pa/paz036.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pa/paz036.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pa/paz036.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pa/paz036.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pa/paz036.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pa/paz036.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pa/paz036.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pa/paz036.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pa.txt +station = ('khgr', 0.003973954565579251) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pa/paz036.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pa/paz036.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pa/paz036.txt + +[paz037] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pa/paz037.txt +centroid = (0.72906068047232342, -1.3483418963234552) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pa/paz037.txt +description = Tioga, PA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pa/paz037.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pa/paz037.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pa/paz037.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pa/paz037.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pa/paz037.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pa/paz037.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pa/paz037.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pa/paz037.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pa/paz037.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pa/paz037.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pa/paz037.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pa/paz037.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pa/paz037.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pa/paz037.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pa/paz037.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pa.txt +station = ('kelm', 0.0082801741298993009) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pa/paz037.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pa/paz037.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pa/paz037.txt + +[paz038] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pa/paz038.txt +centroid = (0.7293486597989024, -1.3354508944682251) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pa/paz038.txt +description = Bradford, PA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pa/paz038.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pa/paz038.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pa/paz038.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pa/paz038.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pa/paz038.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pa/paz038.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pa/paz038.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pa/paz038.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pa/paz038.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pa/paz038.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pa/paz038.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pa/paz038.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pa/paz038.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pa/paz038.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pa/paz038.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pa.txt +station = ('kelm', 0.0082705875970964272) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pa/paz038.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pa/paz038.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pa/paz038.txt + +[paz039] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pa/paz039.txt +centroid = (0.72992112779355645, -1.3229735356457177) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pa/paz039.txt +description = Susquehanna, PA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pa/paz039.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pa/paz039.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pa/paz039.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pa/paz039.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pa/paz039.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pa/paz039.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pa/paz039.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pa/paz039.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pa/paz039.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pa/paz039.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pa/paz039.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pa/paz039.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pa/paz039.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pa/paz039.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pa/paz039.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pa.txt +station = ('kbgm', 0.0070190039622330062) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pa/paz039.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pa/paz039.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pa/paz039.txt + +[paz040] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pa/paz040.txt +centroid = (0.72915143759342693, -1.3140549031680266) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pa/paz040.txt +description = Northern Wayne, PA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pa/paz040.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pa/paz040.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pa/paz040.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pa/paz040.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pa/paz040.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pa/paz040.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pa/paz040.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pa/paz040.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pa/paz040.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pa/paz040.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pa/paz040.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pa/paz040.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pa/paz040.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pa/paz040.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pa/paz040.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pa.txt +station = ('kmsv', 0.0065199916165431223) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pa/paz040.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pa/paz040.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pa/paz040.txt + +[paz041] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pa/paz041.txt +centroid = (0.72302882257743084, -1.3469124716660719) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pa/paz041.txt +description = Northern Lycoming, PA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pa/paz041.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pa/paz041.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pa/paz041.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pa/paz041.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pa/paz041.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pa/paz041.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pa/paz041.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pa/paz041.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pa/paz041.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pa/paz041.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pa/paz041.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pa/paz041.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pa/paz041.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pa/paz041.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pa/paz041.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pa.txt +station = ('kipt', 0.0045519371902568813) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pa/paz041.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pa/paz041.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pa/paz041.txt + +[paz042] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pa/paz042.txt +centroid = (0.72336916178156974, -1.3353845719566493) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pa/paz042.txt +description = Sullivan, PA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pa/paz042.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pa/paz042.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pa/paz042.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pa/paz042.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pa/paz042.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pa/paz042.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pa/paz042.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pa/paz042.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pa/paz042.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pa/paz042.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pa/paz042.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pa/paz042.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pa/paz042.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pa/paz042.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pa/paz042.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pa.txt +station = ('kipt', 0.0063109550344259821) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pa/paz042.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pa/paz042.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pa/paz042.txt + +[paz043] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pa/paz043.txt +centroid = (0.72463278016001376, -1.3267382108422694) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pa/paz043.txt +description = Wyoming, PA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pa/paz043.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pa/paz043.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pa/paz043.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pa/paz043.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pa/paz043.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pa/paz043.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pa/paz043.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pa/paz043.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pa/paz043.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pa/paz043.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pa/paz043.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pa/paz043.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pa/paz043.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pa/paz043.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pa/paz043.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pa.txt +station = ('kavp', 0.004915824009965976) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pa/paz043.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pa/paz043.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pa/paz043.txt + +[paz044] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pa/paz044.txt +centroid = (0.72321208214889032, -1.3196294847988967) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pa/paz044.txt +description = Lackawanna, PA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pa/paz044.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pa/paz044.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pa/paz044.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pa/paz044.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pa/paz044.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pa/paz044.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pa/paz044.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pa/paz044.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pa/paz044.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pa/paz044.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pa/paz044.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pa/paz044.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pa/paz044.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pa/paz044.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pa/paz044.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pa.txt +station = ('kavp', 0.0024322716781504301) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pa/paz044.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pa/paz044.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pa/paz044.txt + +[paz045] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pa/paz045.txt +centroid = (0.71696205809749858, -1.3505724271075039) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pa/paz045.txt +description = Southern Clinton, PA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pa/paz045.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pa/paz045.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pa/paz045.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pa/paz045.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pa/paz045.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pa/paz045.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pa/paz045.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pa/paz045.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pa/paz045.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pa/paz045.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pa/paz045.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pa/paz045.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pa/paz045.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pa/paz045.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pa/paz045.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pa.txt +station = ('kunv', 0.0073475810253131307) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pa/paz045.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pa/paz045.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pa/paz045.txt + +[paz046] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pa/paz046.txt +centroid = (0.71957656131698622, -1.3424339568054546) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pa/paz046.txt +description = Southern Lycoming, PA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pa/paz046.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pa/paz046.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pa/paz046.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pa/paz046.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pa/paz046.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pa/paz046.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pa/paz046.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pa/paz046.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pa/paz046.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pa/paz046.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pa/paz046.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pa/paz046.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pa/paz046.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pa/paz046.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pa/paz046.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pa.txt +station = ('kipt', 0.00037192909605607955) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pa/paz046.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pa/paz046.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pa/paz046.txt + +[paz047] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pa/paz047.txt +centroid = (0.71867771675220904, -1.3262564999687192) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pa/paz047.txt +description = Luzerne, PA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pa/paz047.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pa/paz047.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pa/paz047.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pa/paz047.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pa/paz047.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pa/paz047.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pa/paz047.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pa/paz047.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pa/paz047.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pa/paz047.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pa/paz047.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pa/paz047.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pa/paz047.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pa/paz047.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pa/paz047.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pa.txt +station = ('kavp', 0.0043209269139817437) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pa/paz047.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pa/paz047.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pa/paz047.txt + +[paz048] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pa/paz048.txt +centroid = (0.72138123176354818, -1.3095851149536692) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pa/paz048.txt +description = Pike, PA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pa/paz048.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pa/paz048.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pa/paz048.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pa/paz048.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pa/paz048.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pa/paz048.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pa/paz048.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pa/paz048.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pa/paz048.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pa/paz048.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pa/paz048.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pa/paz048.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pa/paz048.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pa/paz048.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pa/paz048.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pa.txt +station = ('kmpo', 0.0057528166114827082) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pa/paz048.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pa/paz048.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pa/paz048.txt + +[paz049] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pa/paz049.txt +centroid = (0.71493922149443723, -1.3449873735011222) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pa/paz049.txt +description = Union, PA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pa/paz049.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pa/paz049.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pa/paz049.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pa/paz049.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pa/paz049.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pa/paz049.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pa/paz049.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pa/paz049.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pa/paz049.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pa/paz049.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pa/paz049.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pa/paz049.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pa/paz049.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pa/paz049.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pa/paz049.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pa.txt +station = ('kseg', 0.0036293196089019091) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pa/paz049.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pa/paz049.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pa/paz049.txt + +[paz050] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pa/paz050.txt +centroid = (0.71157073603808818, -1.3451269998412818) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pa/paz050.txt +description = Snyder, PA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pa/paz050.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pa/paz050.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pa/paz050.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pa/paz050.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pa/paz050.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pa/paz050.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pa/paz050.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pa/paz050.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pa/paz050.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pa/paz050.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pa/paz050.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pa/paz050.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pa/paz050.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pa/paz050.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pa/paz050.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pa.txt +station = ('kseg', 0.002808728763319055) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pa/paz050.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pa/paz050.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pa/paz050.txt + +[paz051] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pa/paz051.txt +centroid = (0.71607368550823347, -1.3379449699693253) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pa/paz051.txt +description = Montour, PA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pa/paz051.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pa/paz051.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pa/paz051.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pa/paz051.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pa/paz051.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pa/paz051.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pa/paz051.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pa/paz051.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pa/paz051.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pa/paz051.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pa/paz051.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pa/paz051.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pa/paz051.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pa/paz051.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pa/paz051.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pa.txt +station = ('kseg', 0.0045971511282385073) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pa/paz051.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pa/paz051.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pa/paz051.txt + +[paz052] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pa/paz052.txt +centroid = (0.71300190602472346, -1.3388263612415823) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pa/paz052.txt +description = Northumberland, PA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pa/paz052.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pa/paz052.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pa/paz052.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pa/paz052.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pa/paz052.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pa/paz052.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pa/paz052.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pa/paz052.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pa/paz052.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pa/paz052.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pa/paz052.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pa/paz052.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pa/paz052.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pa/paz052.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pa/paz052.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pa.txt +station = ('kseg', 0.002170165700395845) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pa/paz052.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pa/paz052.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pa/paz052.txt + +[paz053] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pa/paz053.txt +centroid = (0.71643322333414439, -1.3335223056447714) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pa/paz053.txt +description = Columbia, PA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pa/paz053.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pa/paz053.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pa/paz053.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pa/paz053.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pa/paz053.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pa/paz053.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pa/paz053.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pa/paz053.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pa/paz053.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pa/paz053.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pa/paz053.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pa/paz053.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pa/paz053.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pa/paz053.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pa/paz053.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pa.txt +station = ('kseg', 0.0073082097010611132) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pa/paz053.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pa/paz053.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pa/paz053.txt + +[paz054] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pa/paz054.txt +centroid = (0.71415905931879575, -1.3213678327338829) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pa/paz054.txt +description = Carbon, PA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pa/paz054.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pa/paz054.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pa/paz054.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pa/paz054.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pa/paz054.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pa/paz054.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pa/paz054.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pa/paz054.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pa/paz054.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pa/paz054.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pa/paz054.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pa/paz054.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pa/paz054.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pa/paz054.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pa/paz054.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pa.txt +station = ('kmpo', 0.0056964948718150428) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pa/paz054.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pa/paz054.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pa/paz054.txt + +[paz055] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pa/paz055.txt +centroid = (0.71660077494233576, -1.3149205864770159) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pa/paz055.txt +description = Monroe, PA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pa/paz055.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pa/paz055.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pa/paz055.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pa/paz055.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pa/paz055.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pa/paz055.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pa/paz055.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pa/paz055.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pa/paz055.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pa/paz055.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pa/paz055.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pa/paz055.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pa/paz055.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pa/paz055.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pa/paz055.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pa.txt +station = ('kmpo', 0.0014329995285897537) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pa/paz055.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pa/paz055.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pa/paz055.txt + +[paz056] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pa/paz056.txt +centroid = (0.70508509253767726, -1.3484797773343631) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pa/paz056.txt +description = Perry, PA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pa/paz056.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pa/paz056.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pa/paz056.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pa/paz056.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pa/paz056.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pa/paz056.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pa/paz056.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pa/paz056.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pa/paz056.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pa/paz056.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pa/paz056.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pa/paz056.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pa/paz056.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pa/paz056.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pa/paz056.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pa.txt +station = ('kcxy', 0.0063371125769254204) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pa/paz056.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pa/paz056.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pa/paz056.txt + +[paz057] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pa/paz057.txt +centroid = (0.70538354383976831, -1.3400498370472302) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pa/paz057.txt +description = Dauphin, PA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pa/paz057.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pa/paz057.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pa/paz057.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pa/paz057.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pa/paz057.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pa/paz057.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pa/paz057.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pa/paz057.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pa/paz057.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pa/paz057.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pa/paz057.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pa/paz057.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pa/paz057.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pa/paz057.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pa/paz057.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pa.txt +station = ('kcxy', 0.0035959273993305418) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pa/paz057.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pa/paz057.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pa/paz057.txt + +[paz058] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pa/paz058.txt +centroid = (0.71045197998755982, -1.330220142699998) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pa/paz058.txt +description = Schuylkill, PA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pa/paz058.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pa/paz058.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pa/paz058.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pa/paz058.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pa/paz058.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pa/paz058.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pa/paz058.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pa/paz058.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pa/paz058.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pa/paz058.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pa/paz058.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pa/paz058.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pa/paz058.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pa/paz058.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pa/paz058.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pa.txt +station = ('kmui', 0.0066516549462791348) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pa/paz058.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pa/paz058.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pa/paz058.txt + +[paz059] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pa/paz059.txt +centroid = (0.70454054981105496, -1.3344386035020686) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pa/paz059.txt +description = Lebanon, PA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pa/paz059.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pa/paz059.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pa/paz059.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pa/paz059.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pa/paz059.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pa/paz059.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pa/paz059.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pa/paz059.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pa/paz059.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pa/paz059.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pa/paz059.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pa/paz059.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pa/paz059.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pa/paz059.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pa/paz059.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pa.txt +station = ('kmui', 0.0018519925902495012) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pa/paz059.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pa/paz059.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pa/paz059.txt + +[paz060] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pa/paz060.txt +centroid = (0.70539925180303631, -1.3251586878692148) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pa/paz060.txt +description = Berks, PA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pa/paz060.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pa/paz060.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pa/paz060.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pa/paz060.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pa/paz060.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pa/paz060.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pa/paz060.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pa/paz060.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pa/paz060.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pa/paz060.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pa/paz060.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pa/paz060.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pa/paz060.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pa/paz060.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pa/paz060.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pa.txt +station = ('krdg', 0.0010225809965411681) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pa/paz060.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pa/paz060.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pa/paz060.txt + +[paz061] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pa/paz061.txt +centroid = (0.70882882378320511, -1.3193362694845616) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pa/paz061.txt +description = Lehigh, PA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pa/paz061.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pa/paz061.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pa/paz061.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pa/paz061.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pa/paz061.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pa/paz061.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pa/paz061.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pa/paz061.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pa/paz061.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pa/paz061.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pa/paz061.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pa/paz061.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pa/paz061.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pa/paz061.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pa/paz061.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pa.txt +station = ('kxll', 0.0015499979196171693) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pa/paz061.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pa/paz061.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pa/paz061.txt + +[paz062] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pa/paz062.txt +centroid = (0.71129671934552507, -1.3143620811163776) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pa/paz062.txt +description = Northampton, PA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pa/paz062.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pa/paz062.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pa/paz062.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pa/paz062.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pa/paz062.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pa/paz062.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pa/paz062.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pa/paz062.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pa/paz062.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pa/paz062.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pa/paz062.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pa/paz062.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pa/paz062.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pa/paz062.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pa/paz062.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pa.txt +station = ('kabe', 0.0026218008859308583) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pa/paz062.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pa/paz062.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pa/paz062.txt + +[paz063] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pa/paz063.txt +centroid = (0.70098880478324654, -1.3485303918826708) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pa/paz063.txt +description = Cumberland, PA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pa/paz063.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pa/paz063.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pa/paz063.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pa/paz063.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pa/paz063.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pa/paz063.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pa/paz063.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pa/paz063.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pa/paz063.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pa/paz063.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pa/paz063.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pa/paz063.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pa/paz063.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pa/paz063.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pa/paz063.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pa.txt +station = ('kmdt', 0.0066763906971868655) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pa/paz063.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pa/paz063.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pa/paz063.txt + +[paz064] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pa/paz064.txt +centroid = (0.69588895270891904, -1.3477065964757293) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pa/paz064.txt +description = Adams, PA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pa/paz064.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pa/paz064.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pa/paz064.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pa/paz064.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pa/paz064.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pa/paz064.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pa/paz064.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pa/paz064.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pa/paz064.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pa/paz064.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pa/paz064.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pa/paz064.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pa/paz064.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pa/paz064.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pa/paz064.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pa.txt +station = ('kryt', 0.0037666484273645153) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pa/paz064.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pa/paz064.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pa/paz064.txt + +[paz065] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pa/paz065.txt +centroid = (0.69673369206688429, -1.3391300485314293) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pa/paz065.txt +description = York, PA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pa/paz065.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pa/paz065.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pa/paz065.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pa/paz065.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pa/paz065.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pa/paz065.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pa/paz065.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pa/paz065.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pa/paz065.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pa/paz065.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pa/paz065.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pa/paz065.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pa/paz065.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pa/paz065.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pa/paz065.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pa.txt +station = ('kthv', 0.0021001266479350402) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pa/paz065.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pa/paz065.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pa/paz065.txt + +[paz066] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pa/paz066.txt +centroid = (0.69887172040057743, -1.3307734120728802) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pa/paz066.txt +description = Lancaster, PA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pa/paz066.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pa/paz066.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pa/paz066.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pa/paz066.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pa/paz066.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pa/paz066.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pa/paz066.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pa/paz066.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pa/paz066.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pa/paz066.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pa/paz066.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pa/paz066.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pa/paz066.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pa/paz066.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pa/paz066.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pa.txt +station = ('klns', 0.0014723929997428051) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pa/paz066.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pa/paz066.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pa/paz066.txt + +[paz067] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pa/paz067.txt +centroid = (0.69766569788744937, -1.3220572377884208) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pa/paz067.txt +description = Chester, PA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pa/paz067.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pa/paz067.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pa/paz067.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pa/paz067.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pa/paz067.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pa/paz067.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pa/paz067.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pa/paz067.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pa/paz067.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pa/paz067.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pa/paz067.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pa/paz067.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pa/paz067.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pa/paz067.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pa/paz067.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pa.txt +station = ('kmqs', 0.0016318800008606692) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pa/paz067.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pa/paz067.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pa/paz067.txt + +[paz068] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pa/paz068.txt +centroid = (0.70181260019018787, -1.3154057880090704) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pa/paz068.txt +description = Montgomery, PA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pa/paz068.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pa/paz068.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pa/paz068.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pa/paz068.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pa/paz068.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pa/paz068.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pa/paz068.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pa/paz068.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pa/paz068.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pa/paz068.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pa/paz068.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pa/paz068.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pa/paz068.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pa/paz068.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pa/paz068.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pa.txt +station = ('klom', 0.0018704808641711317) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pa/paz068.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pa/paz068.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pa/paz068.txt + +[paz069] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pa/paz069.txt +centroid = (0.70401346037695278, -1.3108592053076251) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pa/paz069.txt +description = Bucks, PA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pa/paz069.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pa/paz069.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pa/paz069.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pa/paz069.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pa/paz069.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pa/paz069.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pa/paz069.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pa/paz069.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pa/paz069.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pa/paz069.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pa/paz069.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pa/paz069.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pa/paz069.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pa/paz069.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pa/paz069.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pa.txt +station = ('kdyl', 0.00014723324563508189) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pa/paz069.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pa/paz069.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pa/paz069.txt + +[paz070] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pa/paz070.txt +centroid = (0.69667784153082057, -1.3159608027112046) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pa/paz070.txt +description = Delaware, PA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pa/paz070.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pa/paz070.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pa/paz070.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pa/paz070.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pa/paz070.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pa/paz070.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pa/paz070.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pa/paz070.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pa/paz070.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pa/paz070.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pa/paz070.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pa/paz070.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pa/paz070.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pa/paz070.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pa/paz070.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pa.txt +station = ('kphl', 0.0023841513355516916) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pa/paz070.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pa/paz070.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pa/paz070.txt + +[paz071] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pa/paz071.txt +centroid = (0.69826434582088337, -1.3113321895349155) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pa/paz071.txt +description = Philadelphia, PA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pa/paz071.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pa/paz071.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pa/paz071.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pa/paz071.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pa/paz071.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pa/paz071.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pa/paz071.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pa/paz071.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pa/paz071.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pa/paz071.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pa/paz071.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pa/paz071.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pa/paz071.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pa/paz071.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pa/paz071.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pa.txt +station = ('kpne', 0.0020485261550137902) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pa/paz071.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pa/paz071.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pa/paz071.txt + +[paz072] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pa/paz072.txt +centroid = (0.72389799654492415, -1.3146046818824049) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pa/paz072.txt +description = Southern Wayne, PA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pa/paz072.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pa/paz072.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pa/paz072.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pa/paz072.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pa/paz072.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pa/paz072.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pa/paz072.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pa/paz072.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pa/paz072.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pa/paz072.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pa/paz072.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pa/paz072.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pa/paz072.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pa/paz072.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pa/paz072.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pa.txt +station = ('kmpo', 0.0060408987186773965) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pa/paz072.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pa/paz072.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pa/paz072.txt + +[paz073] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pa/paz073.txt +centroid = (0.70414610540010425, -1.3888422616159837) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pa/paz073.txt +description = Westmoreland, PA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pa/paz073.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pa/paz073.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pa/paz073.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pa/paz073.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pa/paz073.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pa/paz073.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pa/paz073.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pa/paz073.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pa/paz073.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pa/paz073.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pa/paz073.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pa/paz073.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pa/paz073.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pa/paz073.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pa/paz073.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pa.txt +station = ('klbe', 0.0025602844192729006) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pa/paz073.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pa/paz073.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pa/paz073.txt + +[paz074] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pa/paz074.txt +centroid = (0.70226987645421035, -1.3828697449156593) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pa/paz074.txt +description = Westmoreland Ridges, PA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pa/paz074.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pa/paz074.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pa/paz074.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pa/paz074.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pa/paz074.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pa/paz074.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pa/paz074.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pa/paz074.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pa/paz074.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pa/paz074.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pa/paz074.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pa/paz074.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pa/paz074.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pa/paz074.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pa/paz074.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pa.txt +station = ('klbe', 0.0023711124746770484) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pa/paz074.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pa/paz074.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pa/paz074.txt + +[paz075] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pa/paz075.txt +centroid = (0.69723285623295483, -1.3922805602424126) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pa/paz075.txt +description = Fayette, PA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pa/paz075.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pa/paz075.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pa/paz075.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pa/paz075.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pa/paz075.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pa/paz075.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pa/paz075.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pa/paz075.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pa/paz075.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pa/paz075.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pa/paz075.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pa/paz075.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pa/paz075.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pa/paz075.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pa/paz075.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pa.txt +station = ('kmgw', 0.0055601770528792213) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pa/paz075.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pa/paz075.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pa/paz075.txt + +[paz076] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pa/paz076.txt +centroid = (0.6962048573035301, -1.3878247346620709) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pa/paz076.txt +description = Fayette Ridges, PA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pa/paz076.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pa/paz076.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pa/paz076.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pa/paz076.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pa/paz076.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pa/paz076.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pa/paz076.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pa/paz076.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pa/paz076.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pa/paz076.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pa/paz076.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pa/paz076.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pa/paz076.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pa/paz076.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pa/paz076.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pa.txt +station = ('k2g4', 0.0059000077748796297) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pa/paz076.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pa/paz076.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pa/paz076.txt + +[prz001] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pr/prz001.txt +centroid = (0.32063443688387827, -1.153629474312464) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pr/prz001.txt +description = San Juan and Vicinity, PR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pr/prz001.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pr/prz001.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pr/prz001.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pr/prz001.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pr/prz001.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pr/prz001.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pr/prz001.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pr/prz001.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pr.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pr/prz001.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pr/prz001.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pr/prz001.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pr/prz001.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pr/prz001.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pr/prz001.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pr/prz001.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pr.txt +station = ('tjig', 0.0013791690614553852) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pr/prz001.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pr/prz001.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pr/prz001.txt + +[prz002] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pr/prz002.txt +centroid = (0.31915265234893514, -1.148070600644862) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pr/prz002.txt +description = Northeast, PR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pr/prz002.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pr/prz002.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pr/prz002.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pr/prz002.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pr/prz002.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pr/prz002.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pr/prz002.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pr/prz002.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pr.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pr/prz002.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pr/prz002.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pr/prz002.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pr/prz002.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pr/prz002.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pr/prz002.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pr/prz002.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pr.txt +station = ('tjnr', 0.0025047145947882446) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pr/prz002.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pr/prz002.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pr/prz002.txt + +[prz003] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pr/prz003.txt +centroid = (0.31460956030599385, -1.1532367752307651) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pr/prz003.txt +description = Southeast, PR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pr/prz003.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pr/prz003.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pr/prz003.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pr/prz003.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pr/prz003.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pr/prz003.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pr/prz003.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pr/prz003.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pr.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pr/prz003.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pr/prz003.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pr/prz003.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pr/prz003.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pr/prz003.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pr/prz003.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pr/prz003.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pr.txt +station = ('tjig', 0.0074147265223550108) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pr/prz003.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pr/prz003.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pr/prz003.txt + +[prz004] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pr/prz004.txt +centroid = (0.31746491896225654, -1.1528248775272947) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pr/prz004.txt +description = Eastern Interior, PR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pr/prz004.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pr/prz004.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pr/prz004.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pr/prz004.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pr/prz004.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pr/prz004.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pr/prz004.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pr/prz004.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pr.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pr/prz004.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pr/prz004.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pr/prz004.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pr/prz004.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pr/prz004.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pr/prz004.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pr/prz004.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pr.txt +station = ('tjig', 0.0046173353643142699) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pr/prz004.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pr/prz004.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pr/prz004.txt + +[prz005] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pr/prz005.txt +centroid = (0.32140936307176382, -1.1611832593150955) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pr/prz005.txt +description = North Central, PR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pr/prz005.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pr/prz005.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pr/prz005.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pr/prz005.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pr/prz005.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pr/prz005.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pr/prz005.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pr/prz005.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pr.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pr/prz005.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pr/prz005.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pr/prz005.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pr/prz005.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pr/prz005.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pr/prz005.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pr/prz005.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pr.txt +station = ('tjps', 0.0069844254374107325) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pr/prz005.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pr/prz005.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pr/prz005.txt + +[prz006] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pr/prz006.txt +centroid = (0.31787681666572726, -1.1590591936154182) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pr/prz006.txt +description = Central Interior, PR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pr/prz006.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pr/prz006.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pr/prz006.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pr/prz006.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pr/prz006.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pr/prz006.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pr/prz006.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pr/prz006.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pr.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pr/prz006.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pr/prz006.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pr/prz006.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pr/prz006.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pr/prz006.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pr/prz006.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pr/prz006.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pr.txt +station = ('tjps', 0.0043087164875130982) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pr/prz006.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pr/prz006.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pr/prz006.txt + +[prz007] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pr/prz007.txt +centroid = (0.31509999782580422, -1.1633090703440243) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pr/prz007.txt +description = Ponce and Vicinity, PR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pr/prz007.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pr/prz007.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pr/prz007.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pr/prz007.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pr/prz007.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pr/prz007.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pr/prz007.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pr/prz007.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pr.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pr/prz007.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pr/prz007.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pr/prz007.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pr/prz007.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pr/prz007.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pr/prz007.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pr/prz007.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pr.txt +station = ('tjps', 0.0015687171309632527) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pr/prz007.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pr/prz007.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pr/prz007.txt + +[prz008] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pr/prz008.txt +centroid = (0.32175668359291065, -1.1683408545775242) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pr/prz008.txt +description = Northwest, PR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pr/prz008.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pr/prz008.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pr/prz008.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pr/prz008.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pr/prz008.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pr/prz008.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pr/prz008.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pr/prz008.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pr.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pr/prz008.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pr/prz008.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pr/prz008.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pr/prz008.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pr/prz008.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pr/prz008.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pr/prz008.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pr.txt +station = ('tjbq', 0.0033782967704795567) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pr/prz008.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pr/prz008.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pr/prz008.txt + +[prz009] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pr/prz009.txt +centroid = (0.31832187562498576, -1.1667211890316735) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pr/prz009.txt +description = Western Interior, PR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pr/prz009.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pr/prz009.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pr/prz009.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pr/prz009.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pr/prz009.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pr/prz009.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pr/prz009.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pr/prz009.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pr.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pr/prz009.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pr/prz009.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pr/prz009.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pr/prz009.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pr/prz009.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pr/prz009.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pr/prz009.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pr.txt +station = ('tjmz', 0.0050264713124498995) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pr/prz009.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pr/prz009.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pr/prz009.txt + +[prz010] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pr/prz010.txt +centroid = (0.31839168879506557, -1.1723079879673073) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pr/prz010.txt +description = Mayaguez and Vicinity, PR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pr/prz010.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pr/prz010.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pr/prz010.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pr/prz010.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pr/prz010.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pr/prz010.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pr/prz010.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pr/prz010.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pr.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pr/prz010.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pr/prz010.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pr/prz010.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pr/prz010.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pr/prz010.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pr/prz010.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pr/prz010.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pr.txt +station = ('tjmz', 0.00051952757297808315) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pr/prz010.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pr/prz010.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pr/prz010.txt + +[prz011] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pr/prz011.txt +centroid = (0.3144734246243383, -1.1704422309969253) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pr/prz011.txt +description = Southwest, PR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pr/prz011.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pr/prz011.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pr/prz011.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pr/prz011.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pr/prz011.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pr/prz011.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pr/prz011.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pr/prz011.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pr.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pr/prz011.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pr/prz011.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pr/prz011.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pr/prz011.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pr/prz011.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pr/prz011.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pr/prz011.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pr.txt +station = ('tjmz', 0.0045820776867999576) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pr/prz011.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pr/prz011.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pr/prz011.txt + +[prz012] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pr/prz012.txt +centroid = (0.31967276046602938, -1.1394853260543019) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pr/prz012.txt +description = Culebra, PR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pr/prz012.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pr/prz012.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pr/prz012.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pr/prz012.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pr/prz012.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pr/prz012.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pr/prz012.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pr/prz012.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pr.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pr/prz012.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pr/prz012.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pr/prz012.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pr/prz012.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pr/prz012.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pr/prz012.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pr/prz012.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pr.txt +station = ('tist', 0.0050519917630014299) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pr/prz012.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pr/prz012.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pr/prz012.txt + +[prz013] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/pr/prz013.txt +centroid = (0.31630776566818436, -1.1421696424438692) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/pr/prz013.txt +description = Vieques, PR +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/pr/prz013.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/pr/prz013.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/pr/prz013.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/pr/prz013.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/pr/prz013.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/pr/prz013.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/pr/prz013.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/pr/prz013.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/pr.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/pr/prz013.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/pr/prz013.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/pr/prz013.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/pr/prz013.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/pr/prz013.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/pr/prz013.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/pr/prz013.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/pr.txt +station = ('tjnr', 0.0038759980564569891) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/pr/prz013.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/pr/prz013.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/pr/prz013.txt + +[riz001] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ri/riz001.txt +centroid = (0.73113238629444055, -1.2500100462660948) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ri/riz001.txt +description = Northwest Providence, RI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ri/riz001.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ri/riz001.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ri/riz001.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ri/riz001.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ri/riz001.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ri/riz001.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ri/riz001.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ri/riz001.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ri.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ri/riz001.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ri/riz001.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ri/riz001.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ri/riz001.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ri/riz001.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ri/riz001.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ri/riz001.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ri.txt +station = ('ksfz', 0.0016265942761173498) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ri/riz001.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ri/riz001.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ri/riz001.txt + +[riz002] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ri/riz002.txt +centroid = (0.72975881217312111, -1.2470831291105005) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ri/riz002.txt +description = Southeast Providence, RI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ri/riz002.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ri/riz002.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ri/riz002.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ri/riz002.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ri/riz002.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ri/riz002.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ri/riz002.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ri/riz002.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ri.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ri/riz002.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ri/riz002.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ri/riz002.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ri/riz002.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ri/riz002.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ri/riz002.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ri/riz002.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ri.txt +station = ('kpvd', 0.0013974251353918532) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ri/riz002.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ri/riz002.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ri/riz002.txt + +[riz003] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ri/riz003.txt +centroid = (0.7271809608679255, -1.2507675191614605) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ri/riz003.txt +description = Western Kent, RI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ri/riz003.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ri/riz003.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ri/riz003.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ri/riz003.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ri/riz003.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ri/riz003.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ri/riz003.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ri/riz003.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ri.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ri/riz003.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ri/riz003.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ri/riz003.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ri/riz003.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ri/riz003.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ri/riz003.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ri/riz003.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ri.txt +station = ('kpvd', 0.0032341382635487879) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ri/riz003.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ri/riz003.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ri/riz003.txt + +[riz004] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ri/riz004.txt +centroid = (0.72755969731560821, -1.2472943139499915) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ri/riz004.txt +description = Eastern Kent, RI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ri/riz004.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ri/riz004.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ri/riz004.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ri/riz004.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ri/riz004.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ri/riz004.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ri/riz004.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ri/riz004.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ri.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ri/riz004.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ri/riz004.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ri/riz004.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ri/riz004.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ri/riz004.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ri/riz004.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ri/riz004.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ri.txt +station = ('kpvd', 0.00092012084423191991) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ri/riz004.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ri/riz004.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ri/riz004.txt + +[riz005] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ri/riz005.txt +centroid = (0.72808329609120648, -1.2441439946501418) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ri/riz005.txt +description = Bristol, RI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ri/riz005.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ri/riz005.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ri/riz005.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ri/riz005.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ri/riz005.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ri/riz005.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ri/riz005.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ri/riz005.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ri.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ri/riz005.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ri/riz005.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ri/riz005.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ri/riz005.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ri/riz005.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ri/riz005.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ri/riz005.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ri.txt +station = ('kpvd', 0.0019657996698222279) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ri/riz005.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ri/riz005.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ri/riz005.txt + +[riz006] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ri/riz006.txt +centroid = (0.72392766714220802, -1.2500885860824344) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ri/riz006.txt +description = Washington, RI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ri/riz006.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ri/riz006.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ri/riz006.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ri/riz006.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ri/riz006.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ri/riz006.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ri/riz006.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ri/riz006.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ri.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ri/riz006.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ri/riz006.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ri/riz006.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ri/riz006.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ri/riz006.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ri/riz006.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ri/riz006.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ri.txt +station = ('kwst', 0.0032015068426778084) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ri/riz006.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ri/riz006.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ri/riz006.txt + +[riz007] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ri/riz007.txt +centroid = (0.72528902395876349, -1.2433132179261925) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ri/riz007.txt +description = Newport, RI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ri/riz007.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ri/riz007.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ri/riz007.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ri/riz007.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ri/riz007.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ri/riz007.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ri/riz007.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ri/riz007.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ri.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ri/riz007.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ri/riz007.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ri/riz007.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ri/riz007.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ri/riz007.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ri/riz007.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ri/riz007.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ri.txt +station = ('kuuu', 0.00072744256140259197) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ri/riz007.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ri/riz007.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ri/riz007.txt + +[riz008] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ri/riz008.txt +centroid = (0.71869167938622502, -1.2492804986387613) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ri/riz008.txt +description = Block Island, RI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ri/riz008.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ri/riz008.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ri/riz008.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ri/riz008.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ri/riz008.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ri/riz008.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ri/riz008.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ri/riz008.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ri.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ri/riz008.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ri/riz008.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ri/riz008.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ri/riz008.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ri/riz008.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ri/riz008.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ri/riz008.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ri.txt +station = ('kbid', 0.00025158491881671771) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ri/riz008.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ri/riz008.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ri/riz008.txt + +[scz001] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sc/scz001.txt +centroid = (0.60764336039883371, -1.4504715828331556) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sc/scz001.txt +description = Oconee Mountains, SC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sc/scz001.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sc/scz001.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sc/scz001.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sc/scz001.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sc/scz001.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sc/scz001.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sc/scz001.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sc/scz001.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sc/scz001.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sc/scz001.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sc/scz001.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sc/scz001.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sc/scz001.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sc/scz001.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sc/scz001.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sc.txt +station = ('kceu', 0.0041143407599516053) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sc/scz001.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sc/scz001.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sc/scz001.txt + +[scz002] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sc/scz002.txt +centroid = (0.61034338475166905, -1.444499066132831) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sc/scz002.txt +description = Pickens Mountains, SC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sc/scz002.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sc/scz002.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sc/scz002.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sc/scz002.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sc/scz002.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sc/scz002.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sc/scz002.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sc/scz002.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sc/scz002.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sc/scz002.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sc/scz002.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sc/scz002.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sc/scz002.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sc/scz002.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sc/scz002.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sc.txt +station = ('klqk', 0.0029393162601887568) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sc/scz002.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sc/scz002.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sc/scz002.txt + +[scz003] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sc/scz003.txt +centroid = (0.61257217020646582, -1.4388267460638493) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sc/scz003.txt +description = Greenville Mountains, SC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sc/scz003.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sc/scz003.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sc/scz003.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sc/scz003.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sc/scz003.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sc/scz003.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sc/scz003.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sc/scz003.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sc/scz003.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sc/scz003.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sc/scz003.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sc/scz003.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sc/scz003.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sc/scz003.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sc/scz003.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sc.txt +station = ('kgmu', 0.004507124345728866) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sc/scz003.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sc/scz003.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sc/scz003.txt + +[scz004] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sc/scz004.txt +centroid = (0.60437435870984846, -1.4483579891089906) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sc/scz004.txt +description = Greater Oconee, SC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sc/scz004.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sc/scz004.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sc/scz004.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sc/scz004.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sc/scz004.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sc/scz004.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sc/scz004.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sc/scz004.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sc/scz004.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sc/scz004.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sc/scz004.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sc/scz004.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sc/scz004.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sc/scz004.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sc/scz004.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sc.txt +station = ('kceu', 0.0016048647431632828) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sc/scz004.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sc/scz004.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sc/scz004.txt + +[scz005] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sc/scz005.txt +centroid = (0.607589255192022, -1.4432197397911191) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sc/scz005.txt +description = Greater Pickens, SC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sc/scz005.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sc/scz005.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sc/scz005.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sc/scz005.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sc/scz005.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sc/scz005.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sc/scz005.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sc/scz005.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sc/scz005.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sc/scz005.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sc/scz005.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sc/scz005.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sc/scz005.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sc/scz005.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sc/scz005.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sc.txt +station = ('klqk', 0.00014330352989718376) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sc/scz005.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sc/scz005.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sc/scz005.txt + +[scz006] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sc/scz006.txt +centroid = (0.60716688551303932, -1.4370238209465394) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sc/scz006.txt +description = Greater Greenville, SC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sc/scz006.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sc/scz006.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sc/scz006.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sc/scz006.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sc/scz006.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sc/scz006.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sc/scz006.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sc/scz006.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sc/scz006.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sc/scz006.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sc/scz006.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sc/scz006.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sc/scz006.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sc/scz006.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sc/scz006.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sc.txt +station = ('kgyh', 0.00080582760121764116) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sc/scz006.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sc/scz006.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sc/scz006.txt + +[scz007] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sc/scz007.txt +centroid = (0.60966619700189528, -1.4310076710149149) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sc/scz007.txt +description = Spartanburg, SC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sc/scz007.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sc/scz007.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sc/scz007.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sc/scz007.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sc/scz007.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sc/scz007.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sc/scz007.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sc/scz007.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sc/scz007.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sc/scz007.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sc/scz007.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sc/scz007.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sc/scz007.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sc/scz007.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sc/scz007.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sc.txt +station = ('kspa', 0.00063596121406932931) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sc/scz007.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sc/scz007.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sc/scz007.txt + +[scz008] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sc/scz008.txt +centroid = (0.61170648689747664, -1.4245447167947798) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sc/scz008.txt +description = Cherokee, SC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sc/scz008.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sc/scz008.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sc/scz008.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sc/scz008.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sc/scz008.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sc/scz008.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sc/scz008.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sc/scz008.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sc/scz008.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sc/scz008.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sc/scz008.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sc/scz008.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sc/scz008.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sc/scz008.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sc/scz008.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sc.txt +station = ('keho', 0.0035340856606414311) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sc/scz008.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sc/scz008.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sc/scz008.txt + +[scz009] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sc/scz009.txt +centroid = (0.61042366989726071, -1.4169368265853364) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sc/scz009.txt +description = York, SC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sc/scz009.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sc/scz009.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sc/scz009.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sc/scz009.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sc/scz009.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sc/scz009.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sc/scz009.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sc/scz009.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sc/scz009.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sc/scz009.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sc/scz009.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sc/scz009.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sc/scz009.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sc/scz009.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sc/scz009.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sc.txt +station = ('kuza', 0.0019293189821326764) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sc/scz009.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sc/scz009.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sc/scz009.txt + +[scz010] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sc/scz010.txt +centroid = (0.6024719498251746, -1.4423034419338221) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sc/scz010.txt +description = Anderson, SC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sc/scz010.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sc/scz010.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sc/scz010.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sc/scz010.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sc/scz010.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sc/scz010.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sc/scz010.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sc/scz010.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sc/scz010.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sc/scz010.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sc/scz010.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sc/scz010.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sc/scz010.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sc/scz010.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sc/scz010.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sc.txt +station = ('kand', 0.0011808579815150194) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sc/scz010.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sc/scz010.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sc/scz010.txt + +[scz011] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sc/scz011.txt +centroid = (0.59729704859301147, -1.4391758119142481) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sc/scz011.txt +description = Abbeville, SC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sc/scz011.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sc/scz011.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sc/scz011.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sc/scz011.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sc/scz011.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sc/scz011.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sc/scz011.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sc/scz011.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sc/scz011.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sc/scz011.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sc/scz011.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sc/scz011.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sc/scz011.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sc/scz011.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sc/scz011.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sc.txt +station = ('kgrd', 0.004458627413170547) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sc/scz011.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sc/scz011.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sc/scz011.txt + +[scz012] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sc/scz012.txt +centroid = (0.60185235794071668, -1.4312747063904698) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sc/scz012.txt +description = Laurens, SC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sc/scz012.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sc/scz012.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sc/scz012.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sc/scz012.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sc/scz012.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sc/scz012.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sc/scz012.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sc/scz012.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sc/scz012.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sc/scz012.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sc/scz012.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sc/scz012.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sc/scz012.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sc/scz012.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sc/scz012.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sc.txt +station = ('klux', 0.00085490848959597578) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sc/scz012.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sc/scz012.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sc/scz012.txt + +[scz013] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sc/scz013.txt +centroid = (0.60544075488281701, -1.4245272635022599) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sc/scz013.txt +description = Union, SC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sc/scz013.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sc/scz013.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sc/scz013.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sc/scz013.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sc/scz013.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sc/scz013.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sc/scz013.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sc/scz013.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sc/scz013.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sc/scz013.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sc/scz013.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sc/scz013.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sc/scz013.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sc/scz013.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sc/scz013.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sc.txt +station = ('klux', 0.0057849218812802009) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sc/scz013.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sc/scz013.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sc/scz013.txt + +[scz014] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sc/scz014.txt +centroid = (0.60549136943112492, -1.4165004942723378) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sc/scz014.txt +description = Chester, SC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sc/scz014.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sc/scz014.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sc/scz014.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sc/scz014.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sc/scz014.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sc/scz014.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sc/scz014.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sc/scz014.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sc/scz014.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sc/scz014.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sc/scz014.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sc/scz014.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sc/scz014.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sc/scz014.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sc/scz014.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sc.txt +station = ('kdcm', 0.0017637811542920291) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sc/scz014.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sc/scz014.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sc/scz014.txt + +[scz015] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sc/scz015.txt +centroid = (0.60539886698076906, -1.4085749541390316) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sc/scz015.txt +description = Lancaster, SC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sc/scz015.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sc/scz015.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sc/scz015.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sc/scz015.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sc/scz015.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sc/scz015.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sc/scz015.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sc/scz015.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sc/scz015.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sc/scz015.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sc/scz015.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sc/scz015.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sc/scz015.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sc/scz015.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sc/scz015.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sc.txt +station = ('klkr', 0.0021541925093917281) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sc/scz015.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sc/scz015.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sc/scz015.txt + +[scz016] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sc/scz016.txt +centroid = (0.60457681690307974, -1.3990314937891268) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sc/scz016.txt +description = Chesterfield, SC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sc/scz016.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sc/scz016.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sc/scz016.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sc/scz016.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sc/scz016.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sc/scz016.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sc/scz016.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sc/scz016.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sc/scz016.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sc/scz016.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sc/scz016.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sc/scz016.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sc/scz016.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sc/scz016.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sc/scz016.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sc.txt +station = ('kcqw', 0.0034362744588906022) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sc/scz016.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sc/scz016.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sc/scz016.txt + +[scz017] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sc/scz017.txt +centroid = (0.60391882777507788, -1.3906539133795539) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sc/scz017.txt +description = Marlboro, SC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sc/scz017.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sc/scz017.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sc/scz017.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sc/scz017.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sc/scz017.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sc/scz017.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sc/scz017.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sc/scz017.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sc/scz017.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sc/scz017.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sc/scz017.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sc/scz017.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sc/scz017.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sc/scz017.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sc/scz017.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sc.txt +station = ('kbbp', 0.00080239505970705995) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sc/scz017.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sc/scz017.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sc/scz017.txt + +[scz018] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sc/scz018.txt +centroid = (0.59165963510906971, -1.4365787619872807) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sc/scz018.txt +description = McCormick, SC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sc/scz018.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sc/scz018.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sc/scz018.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sc/scz018.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sc/scz018.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sc/scz018.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sc/scz018.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sc/scz018.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sc/scz018.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sc/scz018.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sc/scz018.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sc/scz018.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sc/scz018.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sc/scz018.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sc/scz018.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sc.txt +station = ('kgrd', 0.0062667596942627976) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sc/scz018.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sc/scz018.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sc/scz018.txt + +[scz019] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sc/scz019.txt +centroid = (0.59609626206763922, -1.4333673561636111) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sc/scz019.txt +description = Greenwood, SC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sc/scz019.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sc/scz019.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sc/scz019.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sc/scz019.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sc/scz019.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sc/scz019.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sc/scz019.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sc/scz019.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sc/scz019.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sc/scz019.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sc/scz019.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sc/scz019.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sc/scz019.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sc/scz019.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sc/scz019.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sc.txt +station = ('kgrd', 0.0014310552374135756) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sc/scz019.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sc/scz019.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sc/scz019.txt + +[scz020] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sc/scz020.txt +centroid = (0.59846990985035164, -1.4241904149566249) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sc/scz020.txt +description = Newberry, SC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sc/scz020.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sc/scz020.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sc/scz020.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sc/scz020.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sc/scz020.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sc/scz020.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sc/scz020.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sc/scz020.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sc/scz020.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sc/scz020.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sc/scz020.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sc/scz020.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sc/scz020.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sc/scz020.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sc/scz020.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sc.txt +station = ('keoe', 0.00067472074278167229) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sc/scz020.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sc/scz020.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sc/scz020.txt + +[scz021] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sc/scz021.txt +centroid = (0.60030774155270161, -1.4158320331688241) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sc/scz021.txt +description = Fairfield, SC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sc/scz021.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sc/scz021.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sc/scz021.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sc/scz021.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sc/scz021.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sc/scz021.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sc/scz021.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sc/scz021.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sc/scz021.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sc/scz021.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sc/scz021.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sc/scz021.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sc/scz021.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sc/scz021.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sc/scz021.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sc.txt +station = ('kfdw', 0.0013108562981004441) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sc/scz021.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sc/scz021.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sc/scz021.txt + +[scz022] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sc/scz022.txt +centroid = (0.59932512118382886, -1.4065660801699862) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sc/scz022.txt +description = Kershaw, SC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sc/scz022.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sc/scz022.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sc/scz022.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sc/scz022.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sc/scz022.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sc/scz022.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sc/scz022.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sc/scz022.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sc/scz022.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sc/scz022.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sc/scz022.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sc/scz022.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sc/scz022.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sc/scz022.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sc/scz022.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sc.txt +station = ('kcdn', 0.0010671661574396486) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sc/scz022.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sc/scz022.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sc/scz022.txt + +[scz023] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sc/scz023.txt +centroid = (0.5992134201117012, -1.3955251273218701) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sc/scz023.txt +description = Darlington, SC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sc/scz023.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sc/scz023.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sc/scz023.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sc/scz023.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sc/scz023.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sc/scz023.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sc/scz023.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sc/scz023.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sc/scz023.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sc/scz023.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sc/scz023.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sc/scz023.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sc/scz023.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sc/scz023.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sc/scz023.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sc.txt +station = ('khvs', 0.0026190239629082972) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sc/scz023.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sc/scz023.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sc/scz023.txt + +[scz024] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sc/scz024.txt +centroid = (0.60024490969962985, -1.3854231616113268) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sc/scz024.txt +description = Dillon, SC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sc/scz024.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sc/scz024.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sc/scz024.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sc/scz024.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sc/scz024.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sc/scz024.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sc/scz024.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sc/scz024.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sc/scz024.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sc/scz024.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sc/scz024.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sc/scz024.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sc/scz024.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sc/scz024.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sc/scz024.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sc.txt +station = ('kmao', 0.0037581219876642868) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sc/scz024.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sc/scz024.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sc/scz024.txt + +[scz025] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sc/scz025.txt +centroid = (0.589437830971281, -1.4305870466651842) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sc/scz025.txt +description = Edgefield, SC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sc/scz025.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sc/scz025.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sc/scz025.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sc/scz025.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sc/scz025.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sc/scz025.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sc/scz025.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sc/scz025.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sc/scz025.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sc/scz025.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sc/scz025.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sc/scz025.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sc/scz025.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sc/scz025.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sc/scz025.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sc.txt +station = ('kaik', 0.0045478469214441626) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sc/scz025.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sc/scz025.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sc/scz025.txt + +[scz026] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sc/scz026.txt +centroid = (0.59351841076244372, -1.4264034924481537) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sc/scz026.txt +description = Saluda, SC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sc/scz026.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sc/scz026.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sc/scz026.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sc/scz026.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sc/scz026.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sc/scz026.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sc/scz026.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sc/scz026.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sc/scz026.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sc/scz026.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sc/scz026.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sc/scz026.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sc/scz026.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sc/scz026.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sc/scz026.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sc.txt +station = ('keoe', 0.0054505179928105189) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sc/scz026.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sc/scz026.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sc/scz026.txt + +[scz027] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sc/scz027.txt +centroid = (0.59170501366962158, -1.4184674803393356) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sc/scz027.txt +description = Lexington, SC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sc/scz027.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sc/scz027.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sc/scz027.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sc/scz027.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sc/scz027.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sc/scz027.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sc/scz027.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sc/scz027.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sc/scz027.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sc/scz027.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sc/scz027.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sc/scz027.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sc/scz027.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sc/scz027.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sc/scz027.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sc.txt +station = ('kcae', 0.0024019712886860661) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sc/scz027.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sc/scz027.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sc/scz027.txt + +[scz028] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sc/scz028.txt +centroid = (0.59379242745500682, -1.4120254700702244) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sc/scz028.txt +description = Richland, SC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sc/scz028.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sc/scz028.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sc/scz028.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sc/scz028.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sc/scz028.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sc/scz028.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sc/scz028.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sc/scz028.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sc/scz028.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sc/scz028.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sc/scz028.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sc/scz028.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sc/scz028.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sc/scz028.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sc/scz028.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sc.txt +station = ('kcub', 0.0017006054117491547) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sc/scz028.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sc/scz028.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sc/scz028.txt + +[scz029] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sc/scz029.txt +centroid = (0.5962620683465788, -1.400705264541789) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sc/scz029.txt +description = Lee, SC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sc/scz029.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sc/scz029.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sc/scz029.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sc/scz029.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sc/scz029.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sc/scz029.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sc/scz029.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sc/scz029.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sc/scz029.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sc/scz029.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sc/scz029.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sc/scz029.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sc/scz029.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sc/scz029.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sc/scz029.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sc.txt +station = ('ksms', 0.0032324901800120111) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sc/scz029.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sc/scz029.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sc/scz029.txt + +[scz030] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sc/scz030.txt +centroid = (0.58546022560598598, -1.4247960442070668) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sc/scz030.txt +description = Aiken, SC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sc/scz030.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sc/scz030.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sc/scz030.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sc/scz030.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sc/scz030.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sc/scz030.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sc/scz030.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sc/scz030.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sc/scz030.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sc/scz030.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sc/scz030.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sc/scz030.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sc/scz030.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sc/scz030.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sc/scz030.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sc.txt +station = ('kaik', 0.002010192281629815) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sc/scz030.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sc/scz030.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sc/scz030.txt + +[scz031] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sc/scz031.txt +centroid = (0.59194935976490082, -1.4029357953258379) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sc/scz031.txt +description = Sumter, SC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sc/scz031.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sc/scz031.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sc/scz031.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sc/scz031.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sc/scz031.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sc/scz031.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sc/scz031.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sc/scz031.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sc/scz031.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sc/scz031.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sc/scz031.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sc/scz031.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sc/scz031.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sc/scz031.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sc/scz031.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sc.txt +station = ('ksms', 0.0014977900692095688) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sc/scz031.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sc/scz031.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sc/scz031.txt + +[scz032] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sc/scz032.txt +centroid = (0.5938395513448107, -1.3910762830585364) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sc/scz032.txt +description = Florence, SC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sc/scz032.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sc/scz032.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sc/scz032.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sc/scz032.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sc/scz032.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sc/scz032.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sc/scz032.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sc/scz032.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sc/scz032.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sc/scz032.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sc/scz032.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sc/scz032.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sc/scz032.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sc/scz032.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sc/scz032.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sc.txt +station = ('kflo', 0.0028070635612029689) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sc/scz032.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sc/scz032.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sc/scz032.txt + +[scz033] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sc/scz033.txt +centroid = (0.59480995440891948, -1.3851369276139998) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sc/scz033.txt +description = Marion, SC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sc/scz033.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sc/scz033.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sc/scz033.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sc/scz033.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sc/scz033.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sc/scz033.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sc/scz033.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sc/scz033.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sc/scz033.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sc/scz033.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sc/scz033.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sc/scz033.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sc/scz033.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sc/scz033.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sc/scz033.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sc.txt +station = ('kmao', 0.0018056988455628013) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sc/scz033.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sc/scz033.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sc/scz033.txt + +[scz035] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sc/scz035.txt +centroid = (0.5806029742976857, -1.4213088763615822) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sc/scz035.txt +description = Barnwell, SC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sc/scz035.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sc/scz035.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sc/scz035.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sc/scz035.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sc/scz035.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sc/scz035.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sc/scz035.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sc/scz035.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sc/scz035.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sc/scz035.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sc/scz035.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sc/scz035.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sc/scz035.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sc/scz035.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sc/scz035.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sc.txt +station = ('kbnl', 0.00071434568549675844) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sc/scz035.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sc/scz035.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sc/scz035.txt + +[scz036] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sc/scz036.txt +centroid = (0.58362064857438389, -1.4102312715991741) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sc/scz036.txt +description = Orangeburg, SC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sc/scz036.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sc/scz036.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sc/scz036.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sc/scz036.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sc/scz036.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sc/scz036.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sc/scz036.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sc/scz036.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sc/scz036.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sc/scz036.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sc/scz036.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sc/scz036.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sc/scz036.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sc/scz036.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sc/scz036.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sc.txt +station = ('kogb', 0.00087003060921408406) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sc/scz036.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sc/scz036.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sc/scz036.txt + +[scz037] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sc/scz037.txt +centroid = (0.58773788027983853, -1.4098804604195232) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sc/scz037.txt +description = Calhoun, SC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sc/scz037.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sc/scz037.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sc/scz037.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sc/scz037.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sc/scz037.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sc/scz037.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sc/scz037.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sc/scz037.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sc/scz037.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sc/scz037.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sc/scz037.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sc/scz037.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sc/scz037.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sc/scz037.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sc/scz037.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sc.txt +station = ('kogb', 0.0037734413115417405) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sc/scz037.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sc/scz037.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sc/scz037.txt + +[scz038] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sc/scz038.txt +centroid = (0.587579055317907, -1.4000402940967793) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sc/scz038.txt +description = Clarendon, SC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sc/scz038.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sc/scz038.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sc/scz038.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sc/scz038.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sc/scz038.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sc/scz038.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sc/scz038.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sc/scz038.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sc/scz038.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sc/scz038.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sc/scz038.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sc/scz038.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sc/scz038.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sc/scz038.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sc/scz038.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sc.txt +station = ('kmni', 0.0014393200740811297) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sc/scz038.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sc/scz038.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sc/scz038.txt + +[scz039] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sc/scz039.txt +centroid = (0.5867779491912416, -1.3915108700422831) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sc/scz039.txt +description = Williamsburg, SC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sc/scz039.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sc/scz039.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sc/scz039.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sc/scz039.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sc/scz039.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sc/scz039.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sc/scz039.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sc/scz039.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sc/scz039.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sc/scz039.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sc/scz039.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sc/scz039.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sc/scz039.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sc/scz039.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sc/scz039.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sc.txt +station = ('kcki', 0.0024916001946503523) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sc/scz039.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sc/scz039.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sc/scz039.txt + +[scz040] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sc/scz040.txt +centroid = (0.57575095897714146, -1.4199667181667985) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sc/scz040.txt +description = Allendale, SC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sc/scz040.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sc/scz040.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sc/scz040.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sc/scz040.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sc/scz040.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sc/scz040.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sc/scz040.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sc/scz040.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sc/scz040.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sc/scz040.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sc/scz040.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sc/scz040.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sc/scz040.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sc/scz040.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sc/scz040.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sc.txt +station = ('kbnl', 0.0045947405564672602) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sc/scz040.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sc/scz040.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sc/scz040.txt + +[scz041] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sc/scz041.txt +centroid = (0.57970587506216054, -1.4146626625699878) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sc/scz041.txt +description = Bamberg, SC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sc/scz041.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sc/scz041.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sc/scz041.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sc/scz041.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sc/scz041.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sc/scz041.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sc/scz041.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sc/scz041.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sc/scz041.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sc/scz041.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sc/scz041.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sc/scz041.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sc/scz041.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sc/scz041.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sc/scz041.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sc.txt +station = ('kbnl', 0.0049408691900271855) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sc/scz041.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sc/scz041.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sc/scz041.txt + +[scz042] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sc/scz042.txt +centroid = (0.57205435162141738, -1.4161706270437111) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sc/scz042.txt +description = Hampton, SC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sc/scz042.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sc/scz042.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sc/scz042.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sc/scz042.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sc/scz042.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sc/scz042.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sc/scz042.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sc/scz042.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sc/scz042.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sc/scz042.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sc/scz042.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sc/scz042.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sc/scz042.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sc/scz042.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sc/scz042.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sc.txt +station = ('kjyl', 0.0070732674636587254) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sc/scz042.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sc/scz042.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sc/scz042.txt + +[scz043] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sc/scz043.txt +centroid = (0.57452573784224148, -1.4085313209077317) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sc/scz043.txt +description = Inland Colleton, SC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sc/scz043.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sc/scz043.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sc/scz043.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sc/scz043.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sc/scz043.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sc/scz043.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sc/scz043.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sc/scz043.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sc/scz043.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sc/scz043.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sc/scz043.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sc/scz043.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sc/scz043.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sc/scz043.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sc/scz043.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sc.txt +station = ('krbw', 0.0012224368737203718) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sc/scz043.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sc/scz043.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sc/scz043.txt + +[scz044] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sc/scz044.txt +centroid = (0.57734618991346431, -1.4033354757245446) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sc/scz044.txt +description = Dorchester, SC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sc/scz044.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sc/scz044.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sc/scz044.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sc/scz044.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sc/scz044.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sc/scz044.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sc/scz044.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sc/scz044.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sc/scz044.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sc/scz044.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sc/scz044.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sc/scz044.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sc/scz044.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sc/scz044.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sc/scz044.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sc.txt +station = ('kdyb', 0.0018385602047310211) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sc/scz044.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sc/scz044.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sc/scz044.txt + +[scz045] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sc/scz045.txt +centroid = (0.57983328409755619, -1.3954640407980503) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sc/scz045.txt +description = Berkeley, SC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sc/scz045.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sc/scz045.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sc/scz045.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sc/scz045.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sc/scz045.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sc/scz045.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sc/scz045.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sc/scz045.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sc/scz045.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sc/scz045.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sc/scz045.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sc/scz045.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sc/scz045.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sc/scz045.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sc/scz045.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sc.txt +station = ('kmks', 0.0014517021085356161) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sc/scz045.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sc/scz045.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sc/scz045.txt + +[scz047] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sc/scz047.txt +centroid = (0.56670840812255874, -1.4135421611902075) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sc/scz047.txt +description = Inland Jasper, SC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sc/scz047.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sc/scz047.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sc/scz047.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sc/scz047.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sc/scz047.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sc/scz047.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sc/scz047.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sc/scz047.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sc/scz047.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sc/scz047.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sc/scz047.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sc/scz047.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sc/scz047.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sc/scz047.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sc/scz047.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sc.txt +station = ('knbc', 0.0040312199390353876) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sc/scz047.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sc/scz047.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sc/scz047.txt + +[scz048] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sc/scz048.txt +centroid = (0.56473269540930127, -1.4083637692995401) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sc/scz048.txt +description = Beaufort, SC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sc/scz048.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sc/scz048.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sc/scz048.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sc/scz048.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sc/scz048.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sc/scz048.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sc/scz048.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sc/scz048.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sc/scz048.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sc/scz048.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sc/scz048.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sc/scz048.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sc/scz048.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sc/scz048.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sc/scz048.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sc.txt +station = ('karw', 0.0014245485133719585) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sc/scz048.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sc/scz048.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sc/scz048.txt + +[scz049] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sc/scz049.txt +centroid = (0.56915710506310691, -1.4049551412703956) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sc/scz049.txt +description = Coastal Colleton, SC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sc/scz049.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sc/scz049.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sc/scz049.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sc/scz049.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sc/scz049.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sc/scz049.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sc/scz049.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sc/scz049.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sc/scz049.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sc/scz049.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sc/scz049.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sc/scz049.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sc/scz049.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sc/scz049.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sc/scz049.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sc.txt +station = ('knbc', 0.0039064349778284079) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sc/scz049.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sc/scz049.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sc/scz049.txt + +[scz050] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sc/scz050.txt +centroid = (0.57318532497670971, -1.395280781226591) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sc/scz050.txt +description = Charleston, SC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sc/scz050.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sc/scz050.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sc/scz050.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sc/scz050.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sc/scz050.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sc/scz050.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sc/scz050.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sc/scz050.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sc/scz050.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sc/scz050.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sc/scz050.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sc/scz050.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sc/scz050.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sc/scz050.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sc/scz050.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sc.txt +station = ('kchs', 0.0016682946651360338) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sc/scz050.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sc/scz050.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sc/scz050.txt + +[scz051] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sc/scz051.txt +centroid = (0.56273429341576775, -1.4129504945737816) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sc/scz051.txt +description = Coastal Jasper, SC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sc/scz051.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sc/scz051.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sc/scz051.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sc/scz051.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sc/scz051.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sc/scz051.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sc/scz051.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sc/scz051.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sc/scz051.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sc/scz051.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sc/scz051.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sc/scz051.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sc/scz051.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sc/scz051.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sc/scz051.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sc.txt +station = ('ksav', 0.0042177165581207881) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sc/scz051.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sc/scz051.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sc/scz051.txt + +[scz052] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sc/scz052.txt +centroid = (0.5752814654083549, -1.3948374675965842) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sc/scz052.txt +description = Tidal Berkeley County, SC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sc/scz052.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sc/scz052.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sc/scz052.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sc/scz052.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sc/scz052.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sc/scz052.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sc/scz052.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sc/scz052.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sc/scz052.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sc/scz052.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sc/scz052.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sc/scz052.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sc/scz052.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sc/scz052.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sc/scz052.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sc.txt +station = ('kchs', 0.0019951419676948164) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sc/scz052.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sc/scz052.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sc/scz052.txt + +[scz053] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sc/scz053.txt +centroid = (0.59262480218542268, -1.3791871001939513) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sc/scz053.txt +description = Inland Horry County, SC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sc/scz053.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sc/scz053.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sc/scz053.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sc/scz053.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sc/scz053.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sc/scz053.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sc/scz053.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sc/scz053.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sc/scz053.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sc/scz053.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sc/scz053.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sc/scz053.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sc/scz053.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sc/scz053.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sc/scz053.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sc.txt +station = ('khyw', 0.0026046779160556299) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sc/scz053.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sc/scz053.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sc/scz053.txt + +[scz054] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sc/scz054.txt +centroid = (0.58884441902560292, -1.3763614121349723) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sc/scz054.txt +description = Coastal Horry County, SC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sc/scz054.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sc/scz054.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sc/scz054.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sc/scz054.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sc/scz054.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sc/scz054.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sc/scz054.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sc/scz054.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sc/scz054.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sc/scz054.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sc/scz054.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sc/scz054.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sc/scz054.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sc/scz054.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sc/scz054.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sc.txt +station = ('kmyr', 0.0014363881250754236) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sc/scz054.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sc/scz054.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sc/scz054.txt + +[scz055] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sc/scz055.txt +centroid = (0.58454218241943678, -1.3856395824385741) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sc/scz055.txt +description = Inland Georgetown County, SC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sc/scz055.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sc/scz055.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sc/scz055.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sc/scz055.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sc/scz055.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sc/scz055.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sc/scz055.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sc/scz055.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sc/scz055.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sc/scz055.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sc/scz055.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sc/scz055.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sc/scz055.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sc/scz055.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sc/scz055.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sc.txt +station = ('kgge', 0.0033387534520337098) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sc/scz055.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sc/scz055.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sc/scz055.txt + +[scz056] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sc/scz056.txt +centroid = (0.58210570278365281, -1.3830634764626306) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sc/scz056.txt +description = Coastal Georgetown County, SC +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sc/scz056.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sc/scz056.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sc/scz056.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sc/scz056.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sc/scz056.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sc/scz056.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sc/scz056.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sc/scz056.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sc.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sc/scz056.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sc/scz056.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sc/scz056.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sc/scz056.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sc/scz056.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sc/scz056.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sc/scz056.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sc.txt +station = ('kgge', 0.0013343289905204171) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sc/scz056.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sc/scz056.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sc/scz056.txt + +[sdz001] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sd/sdz001.txt +centroid = (0.79552805437602336, -1.8063442173147994) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sd/sdz001.txt +description = Harding, SD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sd/sdz001.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sd/sdz001.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sd/sdz001.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sd/sdz001.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sd/sdz001.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sd/sdz001.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sd/sdz001.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sd/sdz001.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sd/sdz001.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sd/sdz001.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sd/sdz001.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sd/sdz001.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sd/sdz001.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sd/sdz001.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sd/sdz001.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sd.txt +station = ('k2wx', 0.00074405458555820876) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sd/sdz001.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sd/sdz001.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sd/sdz001.txt + +[sdz002] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sd/sdz002.txt +centroid = (0.79395725804922845, -1.7885418589444571) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sd/sdz002.txt +description = Perkins, SD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sd/sdz002.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sd/sdz002.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sd/sdz002.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sd/sdz002.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sd/sdz002.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sd/sdz002.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sd/sdz002.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sd/sdz002.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sd/sdz002.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sd/sdz002.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sd/sdz002.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sd/sdz002.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sd/sdz002.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sd/sdz002.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sd/sdz002.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sd.txt +station = ('khei', 0.0094266036081847842) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sd/sdz002.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sd/sdz002.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sd/sdz002.txt + +[sdz003] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sd/sdz003.txt +centroid = (0.79776731180633209, -1.7662190978114496) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sd/sdz003.txt +description = Corson, SD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sd/sdz003.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sd/sdz003.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sd/sdz003.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sd/sdz003.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sd/sdz003.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sd/sdz003.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sd/sdz003.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sd/sdz003.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sd/sdz003.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sd/sdz003.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sd/sdz003.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sd/sdz003.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sd/sdz003.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sd/sdz003.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sd/sdz003.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sd.txt +station = ('kmbg', 0.0099173766022723018) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sd/sdz003.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sd/sdz003.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sd/sdz003.txt + +[sdz004] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sd/sdz004.txt +centroid = (0.79885639725957647, -1.7462315872176106) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sd/sdz004.txt +description = Campbell, SD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sd/sdz004.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sd/sdz004.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sd/sdz004.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sd/sdz004.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sd/sdz004.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sd/sdz004.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sd/sdz004.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sd/sdz004.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sd/sdz004.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sd/sdz004.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sd/sdz004.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sd/sdz004.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sd/sdz004.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sd/sdz004.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sd/sdz004.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sd.txt +station = ('kmbg', 0.0058916068230186833) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sd/sdz004.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sd/sdz004.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sd/sdz004.txt + +[sdz005] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sd/sdz005.txt +centroid = (0.79877436678473279, -1.7317418637675539) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sd/sdz005.txt +description = McPherson, SD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sd/sdz005.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sd/sdz005.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sd/sdz005.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sd/sdz005.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sd/sdz005.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sd/sdz005.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sd/sdz005.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sd/sdz005.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sd/sdz005.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sd/sdz005.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sd/sdz005.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sd/sdz005.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sd/sdz005.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sd/sdz005.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sd/sdz005.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sd.txt +station = ('kabr', 0.011271987582816922) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sd/sdz005.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sd/sdz005.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sd/sdz005.txt + +[sdz006] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sd/sdz006.txt +centroid = (0.79569211532571082, -1.7165592446044551) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sd/sdz006.txt +description = Brown, SD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sd/sdz006.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sd/sdz006.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sd/sdz006.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sd/sdz006.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sd/sdz006.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sd/sdz006.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sd/sdz006.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sd/sdz006.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sd/sdz006.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sd/sdz006.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sd/sdz006.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sd/sdz006.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sd/sdz006.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sd/sdz006.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sd/sdz006.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sd.txt +station = ('kabr', 0.0025664327572824416) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sd/sdz006.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sd/sdz006.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sd/sdz006.txt + +[sdz007] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sd/sdz007.txt +centroid = (0.7986382311030773, -1.7034169153369378) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sd/sdz007.txt +description = Marshall, SD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sd/sdz007.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sd/sdz007.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sd/sdz007.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sd/sdz007.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sd/sdz007.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sd/sdz007.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sd/sdz007.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sd/sdz007.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sd/sdz007.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sd/sdz007.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sd/sdz007.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sd/sdz007.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sd/sdz007.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sd/sdz007.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sd/sdz007.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sd.txt +station = ('kgwr', 0.0080470130038350369) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sd/sdz007.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sd/sdz007.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sd/sdz007.txt + +[sdz008] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sd/sdz008.txt +centroid = (0.79638675636800471, -1.6920286419676747) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sd/sdz008.txt +description = Roberts, SD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sd/sdz008.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sd/sdz008.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sd/sdz008.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sd/sdz008.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sd/sdz008.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sd/sdz008.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sd/sdz008.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sd/sdz008.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sd/sdz008.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sd/sdz008.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sd/sdz008.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sd/sdz008.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sd/sdz008.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sd/sdz008.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sd/sdz008.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sd.txt +station = ('k8d3', 0.00079050457240707804) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sd/sdz008.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sd/sdz008.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sd/sdz008.txt + +[sdz009] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sd/sdz009.txt +centroid = (0.79290133385177197, -1.7458807760379598) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sd/sdz009.txt +description = Walworth, SD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sd/sdz009.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sd/sdz009.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sd/sdz009.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sd/sdz009.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sd/sdz009.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sd/sdz009.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sd/sdz009.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sd/sdz009.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sd/sdz009.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sd/sdz009.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sd/sdz009.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sd/sdz009.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sd/sdz009.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sd/sdz009.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sd/sdz009.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sd.txt +station = ('kmbg', 0.0051566740023522416) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sd/sdz009.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sd/sdz009.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sd/sdz009.txt + +[sdz010] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sd/sdz010.txt +centroid = (0.79270760230480053, -1.7316388893416859) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sd/sdz010.txt +description = Edmunds, SD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sd/sdz010.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sd/sdz010.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sd/sdz010.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sd/sdz010.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sd/sdz010.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sd/sdz010.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sd/sdz010.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sd/sdz010.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sd/sdz010.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sd/sdz010.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sd/sdz010.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sd/sdz010.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sd/sdz010.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sd/sdz010.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sd/sdz010.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sd.txt +station = ('kabr', 0.0097999713819346083) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sd/sdz010.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sd/sdz010.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sd/sdz010.txt + +[sdz011] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sd/sdz011.txt +centroid = (0.79180701241077145, -1.7035722496403651) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sd/sdz011.txt +description = Day, SD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sd/sdz011.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sd/sdz011.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sd/sdz011.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sd/sdz011.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sd/sdz011.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sd/sdz011.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sd/sdz011.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sd/sdz011.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sd/sdz011.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sd/sdz011.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sd/sdz011.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sd/sdz011.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sd/sdz011.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sd/sdz011.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sd/sdz011.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sd.txt +station = ('katy', 0.0099106168638505958) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sd/sdz011.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sd/sdz011.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sd/sdz011.txt + +[sdz012] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sd/sdz012.txt +centroid = (0.78375406324206964, -1.8065571474835427) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sd/sdz012.txt +description = Butte, SD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sd/sdz012.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sd/sdz012.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sd/sdz012.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sd/sdz012.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sd/sdz012.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sd/sdz012.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sd/sdz012.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sd/sdz012.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sd/sdz012.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sd/sdz012.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sd/sdz012.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sd/sdz012.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sd/sdz012.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sd/sdz012.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sd/sdz012.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sd.txt +station = ('kspf', 0.008125775397582408) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sd/sdz012.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sd/sdz012.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sd/sdz012.txt + +[sdz013] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sd/sdz013.txt +centroid = (0.78228275068263842, -1.7886134174437891) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sd/sdz013.txt +description = Northern Meade Co Plains, SD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sd/sdz013.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sd/sdz013.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sd/sdz013.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sd/sdz013.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sd/sdz013.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sd/sdz013.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sd/sdz013.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sd/sdz013.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sd/sdz013.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sd/sdz013.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sd/sdz013.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sd/sdz013.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sd/sdz013.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sd/sdz013.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sd/sdz013.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sd.txt +station = ('kd07', 0.006815358239667846) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sd/sdz013.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sd/sdz013.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sd/sdz013.txt + +[sdz014] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sd/sdz014.txt +centroid = (0.7850595695225614, -1.774406437332555) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sd/sdz014.txt +description = Ziebach, SD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sd/sdz014.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sd/sdz014.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sd/sdz014.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sd/sdz014.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sd/sdz014.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sd/sdz014.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sd/sdz014.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sd/sdz014.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sd/sdz014.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sd/sdz014.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sd/sdz014.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sd/sdz014.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sd/sdz014.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sd/sdz014.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sd/sdz014.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sd.txt +station = ('kd07', 0.0044239636583892966) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sd/sdz014.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sd/sdz014.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sd/sdz014.txt + +[sdz015] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sd/sdz015.txt +centroid = (0.7881313490060714, -1.7605467777424681) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sd/sdz015.txt +description = Dewey, SD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sd/sdz015.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sd/sdz015.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sd/sdz015.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sd/sdz015.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sd/sdz015.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sd/sdz015.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sd/sdz015.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sd/sdz015.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sd/sdz015.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sd/sdz015.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sd/sdz015.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sd/sdz015.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sd/sdz015.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sd/sdz015.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sd/sdz015.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sd.txt +station = ('kmbg', 0.0088497400882590511) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sd/sdz015.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sd/sdz015.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sd/sdz015.txt + +[sdz016] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sd/sdz016.txt +centroid = (0.78652390076498468, -1.744583996403728) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sd/sdz016.txt +description = Potter, SD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sd/sdz016.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sd/sdz016.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sd/sdz016.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sd/sdz016.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sd/sdz016.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sd/sdz016.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sd/sdz016.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sd/sdz016.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sd/sdz016.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sd/sdz016.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sd/sdz016.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sd/sdz016.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sd/sdz016.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sd/sdz016.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sd/sdz016.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sd.txt +station = ('kmbg', 0.010178198903889574) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sd/sdz016.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sd/sdz016.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sd/sdz016.txt + +[sdz017] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sd/sdz017.txt +centroid = (0.78663909249561625, -1.7304119228775341) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sd/sdz017.txt +description = Faulk, SD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sd/sdz017.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sd/sdz017.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sd/sdz017.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sd/sdz017.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sd/sdz017.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sd/sdz017.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sd/sdz017.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sd/sdz017.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sd/sdz017.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sd/sdz017.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sd/sdz017.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sd/sdz017.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sd/sdz017.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sd/sdz017.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sd/sdz017.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sd.txt +station = ('kabr', 0.011129106186238417) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sd/sdz017.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sd/sdz017.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sd/sdz017.txt + +[sdz018] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sd/sdz018.txt +centroid = (0.78431780459046374, -1.7164667421540993) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sd/sdz018.txt +description = Spink, SD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sd/sdz018.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sd/sdz018.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sd/sdz018.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sd/sdz018.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sd/sdz018.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sd/sdz018.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sd/sdz018.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sd/sdz018.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sd/sdz018.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sd/sdz018.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sd/sdz018.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sd/sdz018.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sd/sdz018.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sd/sdz018.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sd/sdz018.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sd.txt +station = ('kabr', 0.0089761607774643017) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sd/sdz018.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sd/sdz018.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sd/sdz018.txt + +[sdz019] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sd/sdz019.txt +centroid = (0.78292328651812026, -1.7057015513277982) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sd/sdz019.txt +description = Clark, SD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sd/sdz019.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sd/sdz019.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sd/sdz019.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sd/sdz019.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sd/sdz019.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sd/sdz019.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sd/sdz019.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sd/sdz019.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sd/sdz019.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sd/sdz019.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sd/sdz019.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sd/sdz019.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sd/sdz019.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sd/sdz019.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sd/sdz019.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sd.txt +station = ('katy', 0.0072039029452590046) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sd/sdz019.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sd/sdz019.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sd/sdz019.txt + +[sdz020] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sd/sdz020.txt +centroid = (0.78501070030350562, -1.6962610654037609) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sd/sdz020.txt +description = Codington, SD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sd/sdz020.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sd/sdz020.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sd/sdz020.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sd/sdz020.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sd/sdz020.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sd/sdz020.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sd/sdz020.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sd/sdz020.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sd/sdz020.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sd/sdz020.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sd/sdz020.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sd/sdz020.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sd/sdz020.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sd/sdz020.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sd/sdz020.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sd.txt +station = ('katy', 0.0014391727649453949) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sd/sdz020.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sd/sdz020.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sd/sdz020.txt + +[sdz021] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sd/sdz021.txt +centroid = (0.78840012971087847, -1.6889167199113688) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sd/sdz021.txt +description = Grant, SD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sd/sdz021.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sd/sdz021.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sd/sdz021.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sd/sdz021.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sd/sdz021.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sd/sdz021.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sd/sdz021.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sd/sdz021.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sd/sdz021.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sd/sdz021.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sd/sdz021.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sd/sdz021.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sd/sdz021.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sd/sdz021.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sd/sdz021.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sd.txt +station = ('kvvv', 0.0048207782565759657) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sd/sdz021.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sd/sdz021.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sd/sdz021.txt + +[sdz022] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sd/sdz022.txt +centroid = (0.77970315404819079, -1.6962558294160051) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sd/sdz022.txt +description = Hamlin, SD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sd/sdz022.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sd/sdz022.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sd/sdz022.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sd/sdz022.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sd/sdz022.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sd/sdz022.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sd/sdz022.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sd/sdz022.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sd/sdz022.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sd/sdz022.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sd/sdz022.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sd/sdz022.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sd/sdz022.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sd/sdz022.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sd/sdz022.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sd.txt +station = ('katy', 0.0039780716608031411) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sd/sdz022.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sd/sdz022.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sd/sdz022.txt + +[sdz023] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sd/sdz023.txt +centroid = (0.78120937319266182, -1.6871748813178786) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sd/sdz023.txt +description = Deuel, SD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sd/sdz023.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sd/sdz023.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sd/sdz023.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sd/sdz023.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sd/sdz023.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sd/sdz023.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sd/sdz023.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sd/sdz023.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sd/sdz023.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sd/sdz023.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sd/sdz023.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sd/sdz023.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sd/sdz023.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sd/sdz023.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sd/sdz023.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sd.txt +station = ('kcnb', 0.0050327076830256248) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sd/sdz023.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sd/sdz023.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sd/sdz023.txt + +[sdz024] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sd/sdz024.txt +centroid = (0.77273754500348146, -1.8114301067551108) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sd/sdz024.txt +description = Northern Black Hills, SD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sd/sdz024.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sd/sdz024.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sd/sdz024.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sd/sdz024.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sd/sdz024.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sd/sdz024.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sd/sdz024.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sd/sdz024.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sd/sdz024.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sd/sdz024.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sd/sdz024.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sd/sdz024.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sd/sdz024.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sd/sdz024.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sd/sdz024.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sd.txt +station = ('kspf', 0.0036434199478854365) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sd/sdz024.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sd/sdz024.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sd/sdz024.txt + +[sdz025] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sd/sdz025.txt +centroid = (0.77672736767354045, -1.8111194381482556) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sd/sdz025.txt +description = Northern Foot Hills, SD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sd/sdz025.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sd/sdz025.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sd/sdz025.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sd/sdz025.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sd/sdz025.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sd/sdz025.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sd/sdz025.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sd/sdz025.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sd/sdz025.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sd/sdz025.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sd/sdz025.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sd/sdz025.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sd/sdz025.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sd/sdz025.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sd/sdz025.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sd.txt +station = ('kspf', 0.00038715531308755325) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sd/sdz025.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sd/sdz025.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sd/sdz025.txt + +[sdz026] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sd/sdz026.txt +centroid = (0.76795708818226904, -1.8015812137861067) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sd/sdz026.txt +description = Rapid City, SD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sd/sdz026.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sd/sdz026.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sd/sdz026.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sd/sdz026.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sd/sdz026.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sd/sdz026.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sd/sdz026.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sd/sdz026.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sd/sdz026.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sd/sdz026.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sd/sdz026.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sd/sdz026.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sd/sdz026.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sd/sdz026.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sd/sdz026.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sd.txt +station = ('krap', 0.0023353522993878554) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sd/sdz026.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sd/sdz026.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sd/sdz026.txt + +[sdz027] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sd/sdz027.txt +centroid = (0.75711684819813219, -1.8092449545316138) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sd/sdz027.txt +description = Southern Foot Hills, SD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sd/sdz027.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sd/sdz027.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sd/sdz027.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sd/sdz027.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sd/sdz027.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sd/sdz027.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sd/sdz027.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sd/sdz027.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sd/sdz027.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sd/sdz027.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sd/sdz027.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sd/sdz027.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sd/sdz027.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sd/sdz027.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sd/sdz027.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sd.txt +station = ('kcut', 0.0062004976876363464) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sd/sdz027.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sd/sdz027.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sd/sdz027.txt + +[sdz028] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sd/sdz028.txt +centroid = (0.76787854836592928, -1.809885490367096) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sd/sdz028.txt +description = Central Black Hills, SD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sd/sdz028.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sd/sdz028.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sd/sdz028.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sd/sdz028.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sd/sdz028.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sd/sdz028.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sd/sdz028.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sd/sdz028.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sd/sdz028.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sd/sdz028.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sd/sdz028.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sd/sdz028.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sd/sdz028.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sd/sdz028.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sd/sdz028.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sd.txt +station = ('kcut', 0.0047028585133371157) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sd/sdz028.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sd/sdz028.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sd/sdz028.txt + +[sdz029] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sd/sdz029.txt +centroid = (0.76222717224797165, -1.8100373340120193) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sd/sdz029.txt +description = Southern Black Hills, SD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sd/sdz029.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sd/sdz029.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sd/sdz029.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sd/sdz029.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sd/sdz029.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sd/sdz029.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sd/sdz029.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sd/sdz029.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sd/sdz029.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sd/sdz029.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sd/sdz029.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sd/sdz029.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sd/sdz029.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sd/sdz029.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sd/sdz029.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sd.txt +station = ('kcut', 0.0015635015669160821) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sd/sdz029.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sd/sdz029.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sd/sdz029.txt + +[sdz030] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sd/sdz030.txt +centroid = (0.76268793917049804, -1.7972737411921849) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sd/sdz030.txt +description = Custer Co Plains, SD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sd/sdz030.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sd/sdz030.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sd/sdz030.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sd/sdz030.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sd/sdz030.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sd/sdz030.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sd/sdz030.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sd/sdz030.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sd/sdz030.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sd/sdz030.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sd/sdz030.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sd/sdz030.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sd/sdz030.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sd/sdz030.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sd/sdz030.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sd.txt +station = ('krap', 0.0061995214469145439) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sd/sdz030.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sd/sdz030.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sd/sdz030.txt + +[sdz031] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sd/sdz031.txt +centroid = (0.76806704392514458, -1.787953682986535) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sd/sdz031.txt +description = Pennington Co Plains, SD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sd/sdz031.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sd/sdz031.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sd/sdz031.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sd/sdz031.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sd/sdz031.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sd/sdz031.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sd/sdz031.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sd/sdz031.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sd/sdz031.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sd/sdz031.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sd/sdz031.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sd/sdz031.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sd/sdz031.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sd/sdz031.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sd/sdz031.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sd.txt +station = ('krap', 0.0076639864512879968) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sd/sdz031.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sd/sdz031.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sd/sdz031.txt + +[sdz032] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sd/sdz032.txt +centroid = (0.77308312019537639, -1.7722055771457903) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sd/sdz032.txt +description = Haakon, SD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sd/sdz032.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sd/sdz032.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sd/sdz032.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sd/sdz032.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sd/sdz032.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sd/sdz032.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sd/sdz032.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sd/sdz032.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sd/sdz032.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sd/sdz032.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sd/sdz032.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sd/sdz032.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sd/sdz032.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sd/sdz032.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sd/sdz032.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sd.txt +station = ('kphp', 0.0043314252275767681) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sd/sdz032.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sd/sdz032.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sd/sdz032.txt + +[sdz033] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sd/sdz033.txt +centroid = (0.77514086338347765, -1.7581731299597558) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sd/sdz033.txt +description = Stanley, SD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sd/sdz033.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sd/sdz033.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sd/sdz033.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sd/sdz033.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sd/sdz033.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sd/sdz033.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sd/sdz033.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sd/sdz033.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sd/sdz033.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sd/sdz033.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sd/sdz033.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sd/sdz033.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sd/sdz033.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sd/sdz033.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sd/sdz033.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sd.txt +station = ('kpir', 0.0056662636986618501) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sd/sdz033.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sd/sdz033.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sd/sdz033.txt + +[sdz034] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sd/sdz034.txt +centroid = (0.78043270167552437, -1.7476365772654661) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sd/sdz034.txt +description = Sully, SD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sd/sdz034.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sd/sdz034.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sd/sdz034.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sd/sdz034.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sd/sdz034.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sd/sdz034.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sd/sdz034.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sd/sdz034.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sd/sdz034.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sd/sdz034.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sd/sdz034.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sd/sdz034.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sd/sdz034.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sd/sdz034.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sd/sdz034.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sd.txt +station = ('kpir', 0.0060945444667052) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sd/sdz034.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sd/sdz034.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sd/sdz034.txt + +[sdz035] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sd/sdz035.txt +centroid = (0.77473420166776297, -1.7452611841535017) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sd/sdz035.txt +description = Hughes, SD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sd/sdz035.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sd/sdz035.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sd/sdz035.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sd/sdz035.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sd/sdz035.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sd/sdz035.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sd/sdz035.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sd/sdz035.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sd/sdz035.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sd/sdz035.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sd/sdz035.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sd/sdz035.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sd/sdz035.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sd/sdz035.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sd/sdz035.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sd.txt +station = ('kpir', 0.003583980927974803) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sd/sdz035.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sd/sdz035.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sd/sdz035.txt + +[sdz036] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sd/sdz036.txt +centroid = (0.77749880320292197, -1.7363774582608507) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sd/sdz036.txt +description = Hyde, SD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sd/sdz036.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sd/sdz036.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sd/sdz036.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sd/sdz036.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sd/sdz036.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sd/sdz036.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sd/sdz036.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sd/sdz036.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sd/sdz036.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sd/sdz036.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sd/sdz036.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sd/sdz036.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sd/sdz036.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sd/sdz036.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sd/sdz036.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sd.txt +station = ('kpir', 0.010322906053671884) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sd/sdz036.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sd/sdz036.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sd/sdz036.txt + +[sdz037] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sd/sdz037.txt +centroid = (0.77750578451993002, -1.7279632259369859) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sd/sdz037.txt +description = Hand, SD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sd/sdz037.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sd/sdz037.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sd/sdz037.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sd/sdz037.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sd/sdz037.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sd/sdz037.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sd/sdz037.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sd/sdz037.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sd/sdz037.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sd/sdz037.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sd/sdz037.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sd/sdz037.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sd/sdz037.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sd/sdz037.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sd/sdz037.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sd.txt +station = ('khon', 0.010031240032585986) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sd/sdz037.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sd/sdz037.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sd/sdz037.txt + +[sdz038] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sd/sdz038.txt +centroid = (0.77517926062702147, -1.7152781729334912) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sd/sdz038.txt +description = Beadle, SD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sd/sdz038.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sd/sdz038.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sd/sdz038.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sd/sdz038.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sd/sdz038.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sd/sdz038.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sd/sdz038.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sd/sdz038.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sd/sdz038.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sd/sdz038.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sd/sdz038.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sd/sdz038.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sd/sdz038.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sd/sdz038.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sd/sdz038.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sd.txt +station = ('khon', 0.00078033720857488098) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sd/sdz038.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sd/sdz038.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sd/sdz038.txt + +[sdz039] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sd/sdz039.txt +centroid = (0.77439560779287597, -1.7015476677080519) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sd/sdz039.txt +description = Kingsbury, SD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sd/sdz039.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sd/sdz039.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sd/sdz039.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sd/sdz039.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sd/sdz039.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sd/sdz039.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sd/sdz039.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sd/sdz039.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sd/sdz039.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sd/sdz039.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sd/sdz039.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sd/sdz039.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sd/sdz039.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sd/sdz039.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sd/sdz039.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sd.txt +station = ('kmds', 0.0079840838967511242) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sd/sdz039.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sd/sdz039.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sd/sdz039.txt + +[sdz040] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sd/sdz040.txt +centroid = (0.7743973531221281, -1.6893129096515715) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sd/sdz040.txt +description = Brookings, SD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sd/sdz040.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sd/sdz040.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sd/sdz040.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sd/sdz040.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sd/sdz040.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sd/sdz040.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sd/sdz040.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sd/sdz040.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sd/sdz040.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sd/sdz040.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sd/sdz040.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sd/sdz040.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sd/sdz040.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sd/sdz040.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sd/sdz040.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sd.txt +station = ('kbkx', 0.0012595891387121459) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sd/sdz040.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sd/sdz040.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sd/sdz040.txt + +[sdz041] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sd/sdz041.txt +centroid = (0.75373614543701906, -1.8060021327814084) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sd/sdz041.txt +description = Fall River, SD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sd/sdz041.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sd/sdz041.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sd/sdz041.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sd/sdz041.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sd/sdz041.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sd/sdz041.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sd/sdz041.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sd/sdz041.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sd/sdz041.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sd/sdz041.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sd/sdz041.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sd/sdz041.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sd/sdz041.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sd/sdz041.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sd/sdz041.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sd.txt +station = ('kcdr', 0.0078057051940375998) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sd/sdz041.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sd/sdz041.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sd/sdz041.txt + +[sdz042] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sd/sdz042.txt +centroid = (0.75634890332725468, -1.7898630731882168) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sd/sdz042.txt +description = Shannon, SD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sd/sdz042.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sd/sdz042.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sd/sdz042.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sd/sdz042.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sd/sdz042.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sd/sdz042.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sd/sdz042.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sd/sdz042.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sd/sdz042.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sd/sdz042.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sd/sdz042.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sd/sdz042.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sd/sdz042.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sd/sdz042.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sd/sdz042.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sd.txt +station = ('kien', 0.0052942469021732838) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sd/sdz042.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sd/sdz042.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sd/sdz042.txt + +[sdz043] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sd/sdz043.txt +centroid = (0.76260765402490638, -1.7737449575460493) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sd/sdz043.txt +description = Jackson, SD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sd/sdz043.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sd/sdz043.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sd/sdz043.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sd/sdz043.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sd/sdz043.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sd/sdz043.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sd/sdz043.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sd/sdz043.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sd/sdz043.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sd/sdz043.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sd/sdz043.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sd/sdz043.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sd/sdz043.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sd/sdz043.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sd/sdz043.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sd.txt +station = ('kphp', 0.0062199376739679761) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sd/sdz043.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sd/sdz043.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sd/sdz043.txt + +[sdz044] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sd/sdz044.txt +centroid = (0.75389322506969858, -1.7743697854182632) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sd/sdz044.txt +description = Bennett, SD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sd/sdz044.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sd/sdz044.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sd/sdz044.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sd/sdz044.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sd/sdz044.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sd/sdz044.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sd/sdz044.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sd/sdz044.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sd/sdz044.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sd/sdz044.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sd/sdz044.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sd/sdz044.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sd/sdz044.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sd/sdz044.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sd/sdz044.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sd.txt +station = ('kien', 0.011224838931693369) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sd/sdz044.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sd/sdz044.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sd/sdz044.txt + +[sdz045] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sd/sdz045.txt +centroid = (0.76725372049371521, -1.7573650425160825) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sd/sdz045.txt +description = Jones, SD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sd/sdz045.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sd/sdz045.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sd/sdz045.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sd/sdz045.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sd/sdz045.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sd/sdz045.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sd/sdz045.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sd/sdz045.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sd/sdz045.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sd/sdz045.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sd/sdz045.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sd/sdz045.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sd/sdz045.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sd/sdz045.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sd/sdz045.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sd.txt +station = ('kpir', 0.0089639698784953273) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sd/sdz045.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sd/sdz045.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sd/sdz045.txt + +[sdz046] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sd/sdz046.txt +centroid = (0.7606336866409007, -1.7585954996387383) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sd/sdz046.txt +description = Mellette, SD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sd/sdz046.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sd/sdz046.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sd/sdz046.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sd/sdz046.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sd/sdz046.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sd/sdz046.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sd/sdz046.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sd/sdz046.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sd/sdz046.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sd/sdz046.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sd/sdz046.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sd/sdz046.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sd/sdz046.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sd/sdz046.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sd/sdz046.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sd.txt +station = ('kvtn', 0.012752283233485059) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sd/sdz046.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sd/sdz046.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sd/sdz046.txt + +[sdz047] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sd/sdz047.txt +centroid = (0.75386704513091873, -1.7578676973406568) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sd/sdz047.txt +description = Todd, SD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sd/sdz047.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sd/sdz047.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sd/sdz047.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sd/sdz047.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sd/sdz047.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sd/sdz047.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sd/sdz047.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sd/sdz047.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sd/sdz047.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sd/sdz047.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sd/sdz047.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sd/sdz047.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sd/sdz047.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sd/sdz047.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sd/sdz047.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sd.txt +station = ('kvtn', 0.0060938756276399534) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sd/sdz047.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sd/sdz047.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sd/sdz047.txt + +[sdz048] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sd/sdz048.txt +centroid = (0.7661262377969269, -1.7426658795557861) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sd/sdz048.txt +description = Lyman, SD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sd/sdz048.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sd/sdz048.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sd/sdz048.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sd/sdz048.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sd/sdz048.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sd/sdz048.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sd/sdz048.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sd/sdz048.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sd/sdz048.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sd/sdz048.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sd/sdz048.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sd/sdz048.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sd/sdz048.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sd/sdz048.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sd/sdz048.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sd.txt +station = ('kicr', 0.0089442909276327177) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sd/sdz048.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sd/sdz048.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sd/sdz048.txt + +[sdz049] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sd/sdz049.txt +centroid = (0.75652867224021014, -1.7433046700620161) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sd/sdz049.txt +description = Tripp, SD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sd/sdz049.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sd/sdz049.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sd/sdz049.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sd/sdz049.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sd/sdz049.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sd/sdz049.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sd/sdz049.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sd/sdz049.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sd/sdz049.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sd/sdz049.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sd/sdz049.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sd/sdz049.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sd/sdz049.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sd/sdz049.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sd/sdz049.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sd.txt +station = ('kicr', 0.00078291819654512063) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sd/sdz049.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sd/sdz049.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sd/sdz049.txt + +[sdz050] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sd/sdz050.txt +centroid = (0.75384959183839884, -1.7311152905660876) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sd/sdz050.txt +description = Gregory, SD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sd/sdz050.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sd/sdz050.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sd/sdz050.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sd/sdz050.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sd/sdz050.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sd/sdz050.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sd/sdz050.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sd/sdz050.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sd/sdz050.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sd/sdz050.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sd/sdz050.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sd/sdz050.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sd/sdz050.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sd/sdz050.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sd/sdz050.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sd.txt +station = ('kicr', 0.0090748769115698916) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sd/sdz050.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sd/sdz050.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sd/sdz050.txt + +[sdz051] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sd/sdz051.txt +centroid = (0.76927655709677678, -1.7314538844409746) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sd/sdz051.txt +description = Buffalo, SD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sd/sdz051.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sd/sdz051.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sd/sdz051.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sd/sdz051.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sd/sdz051.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sd/sdz051.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sd/sdz051.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sd/sdz051.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sd/sdz051.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sd/sdz051.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sd/sdz051.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sd/sdz051.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sd/sdz051.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sd/sdz051.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sd/sdz051.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sd.txt +station = ('k9v9', 0.005583475169956522) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sd/sdz051.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sd/sdz051.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sd/sdz051.txt + +[sdz052] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sd/sdz052.txt +centroid = (0.76910376950082926, -1.7214147505835034) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sd/sdz052.txt +description = Jerauld, SD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sd/sdz052.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sd/sdz052.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sd/sdz052.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sd/sdz052.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sd/sdz052.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sd/sdz052.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sd/sdz052.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sd/sdz052.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sd/sdz052.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sd/sdz052.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sd/sdz052.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sd/sdz052.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sd/sdz052.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sd/sdz052.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sd/sdz052.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sd.txt +station = ('khon', 0.0074287279614416056) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sd/sdz052.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sd/sdz052.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sd/sdz052.txt + +[sdz053] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sd/sdz053.txt +centroid = (0.76835502325172367, -1.7120178978907656) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sd/sdz053.txt +description = Sanborn, SD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sd/sdz053.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sd/sdz053.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sd/sdz053.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sd/sdz053.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sd/sdz053.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sd/sdz053.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sd/sdz053.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sd/sdz053.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sd/sdz053.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sd/sdz053.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sd/sdz053.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sd/sdz053.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sd/sdz053.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sd/sdz053.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sd/sdz053.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sd.txt +station = ('kmhe', 0.0045416882805436624) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sd/sdz053.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sd/sdz053.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sd/sdz053.txt + +[sdz054] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sd/sdz054.txt +centroid = (0.76832884331294371, -1.7036193735301692) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sd/sdz054.txt +description = Miner, SD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sd/sdz054.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sd/sdz054.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sd/sdz054.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sd/sdz054.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sd/sdz054.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sd/sdz054.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sd/sdz054.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sd/sdz054.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sd/sdz054.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sd/sdz054.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sd/sdz054.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sd/sdz054.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sd/sdz054.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sd/sdz054.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sd/sdz054.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sd.txt +station = ('kmhe', 0.0069412655348686141) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sd/sdz054.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sd/sdz054.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sd/sdz054.txt + +[sdz055] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sd/sdz055.txt +centroid = (0.76832884331294371, -1.6952278304865804) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sd/sdz055.txt +description = Lake, SD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sd/sdz055.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sd/sdz055.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sd/sdz055.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sd/sdz055.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sd/sdz055.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sd/sdz055.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sd/sdz055.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sd/sdz055.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sd/sdz055.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sd/sdz055.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sd/sdz055.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sd/sdz055.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sd/sdz055.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sd/sdz055.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sd/sdz055.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sd.txt +station = ('kmds', 0.00062097179431428308) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sd/sdz055.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sd/sdz055.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sd/sdz055.txt + +[sdz056] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sd/sdz056.txt +centroid = (0.76833058864219583, -1.6872272411954383) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sd/sdz056.txt +description = Moody, SD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sd/sdz056.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sd/sdz056.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sd/sdz056.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sd/sdz056.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sd/sdz056.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sd/sdz056.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sd/sdz056.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sd/sdz056.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sd/sdz056.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sd/sdz056.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sd/sdz056.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sd/sdz056.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sd/sdz056.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sd/sdz056.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sd/sdz056.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sd.txt +station = ('kpqn', 0.0044995557585054873) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sd/sdz056.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sd/sdz056.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sd/sdz056.txt + +[sdz057] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sd/sdz057.txt +centroid = (0.76302478771613302, -1.7292896761685017) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sd/sdz057.txt +description = Brule, SD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sd/sdz057.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sd/sdz057.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sd/sdz057.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sd/sdz057.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sd/sdz057.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sd/sdz057.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sd/sdz057.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sd/sdz057.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sd/sdz057.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sd/sdz057.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sd/sdz057.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sd/sdz057.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sd/sdz057.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sd/sdz057.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sd/sdz057.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sd.txt +station = ('k9v9', 0.0030901074721869375) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sd/sdz057.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sd/sdz057.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sd/sdz057.txt + +[sdz058] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sd/sdz058.txt +centroid = (0.76302653304538504, -1.7202244360336432) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sd/sdz058.txt +description = Aurora, SD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sd/sdz058.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sd/sdz058.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sd/sdz058.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sd/sdz058.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sd/sdz058.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sd/sdz058.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sd/sdz058.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sd/sdz058.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sd/sdz058.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sd/sdz058.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sd/sdz058.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sd/sdz058.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sd/sdz058.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sd/sdz058.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sd/sdz058.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sd.txt +station = ('kmhe', 0.0067145173938016126) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sd/sdz058.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sd/sdz058.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sd/sdz058.txt + +[sdz059] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sd/sdz059.txt +centroid = (0.76227255080852341, -1.7129725929916066) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sd/sdz059.txt +description = Davison, SD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sd/sdz059.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sd/sdz059.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sd/sdz059.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sd/sdz059.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sd/sdz059.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sd/sdz059.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sd/sdz059.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sd/sdz059.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sd/sdz059.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sd/sdz059.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sd/sdz059.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sd/sdz059.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sd/sdz059.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sd/sdz059.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sd/sdz059.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sd.txt +station = ('kmhe', 0.0021407683880455422) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sd/sdz059.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sd/sdz059.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sd/sdz059.txt + +[sdz060] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sd/sdz060.txt +centroid = (0.76226906015001938, -1.7067120969647032) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sd/sdz060.txt +description = Hanson, SD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sd/sdz060.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sd/sdz060.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sd/sdz060.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sd/sdz060.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sd/sdz060.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sd/sdz060.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sd/sdz060.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sd/sdz060.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sd/sdz060.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sd/sdz060.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sd/sdz060.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sd/sdz060.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sd/sdz060.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sd/sdz060.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sd/sdz060.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sd.txt +station = ('kmhe', 0.0034920118764890989) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sd/sdz060.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sd/sdz060.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sd/sdz060.txt + +[sdz061] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sd/sdz061.txt +centroid = (0.76225858817450742, -1.6993991673988467) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sd/sdz061.txt +description = McCook, SD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sd/sdz061.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sd/sdz061.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sd/sdz061.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sd/sdz061.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sd/sdz061.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sd/sdz061.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sd/sdz061.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sd/sdz061.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sd/sdz061.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sd/sdz061.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sd/sdz061.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sd/sdz061.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sd/sdz061.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sd/sdz061.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sd/sdz061.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sd.txt +station = ('kmds', 0.0070429508975862736) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sd/sdz061.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sd/sdz061.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sd/sdz061.txt + +[sdz062] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sd/sdz062.txt +centroid = (0.76225858817450742, -1.6893286176148394) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sd/sdz062.txt +description = Minnehaha, SD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sd/sdz062.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sd/sdz062.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sd/sdz062.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sd/sdz062.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sd/sdz062.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sd/sdz062.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sd/sdz062.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sd/sdz062.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sd/sdz062.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sd/sdz062.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sd/sdz062.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sd/sdz062.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sd/sdz062.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sd/sdz062.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sd/sdz062.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sd.txt +station = ('kfsd', 0.0016699375714484582) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sd/sdz062.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sd/sdz062.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sd/sdz062.txt + +[sdz063] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sd/sdz063.txt +centroid = (0.75412011787245792, -1.7206834576269177) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sd/sdz063.txt +description = Charles Mix, SD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sd/sdz063.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sd/sdz063.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sd/sdz063.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sd/sdz063.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sd/sdz063.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sd/sdz063.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sd/sdz063.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sd/sdz063.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sd/sdz063.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sd/sdz063.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sd/sdz063.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sd/sdz063.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sd/sdz063.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sd/sdz063.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sd/sdz063.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sd.txt +station = ('kmhe', 0.012017487481678595) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sd/sdz063.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sd/sdz063.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sd/sdz063.txt + +[sdz064] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sd/sdz064.txt +centroid = (0.75724774789203164, -1.7168140626752464) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sd/sdz064.txt +description = Douglas, SD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sd/sdz064.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sd/sdz064.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sd/sdz064.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sd/sdz064.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sd/sdz064.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sd/sdz064.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sd/sdz064.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sd/sdz064.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sd/sdz064.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sd/sdz064.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sd/sdz064.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sd/sdz064.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sd/sdz064.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sd/sdz064.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sd/sdz064.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sd.txt +station = ('kmhe', 0.0078485697777269381) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sd/sdz064.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sd/sdz064.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sd/sdz064.txt + +[sdz065] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sd/sdz065.txt +centroid = (0.7563349406932387, -1.7061396289700488) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sd/sdz065.txt +description = Hutchinson, SD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sd/sdz065.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sd/sdz065.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sd/sdz065.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sd/sdz065.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sd/sdz065.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sd/sdz065.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sd/sdz065.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sd/sdz065.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sd/sdz065.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sd/sdz065.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sd/sdz065.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sd/sdz065.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sd/sdz065.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sd/sdz065.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sd/sdz065.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sd.txt +station = ('kmhe', 0.0083213694000945047) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sd/sdz065.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sd/sdz065.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sd/sdz065.txt + +[sdz066] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sd/sdz066.txt +centroid = (0.75591606167276004, -1.6955664243614672) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sd/sdz066.txt +description = Turner, SD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sd/sdz066.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sd/sdz066.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sd/sdz066.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sd/sdz066.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sd/sdz066.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sd/sdz066.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sd/sdz066.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sd/sdz066.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sd/sdz066.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sd/sdz066.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sd/sdz066.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sd/sdz066.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sd/sdz066.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sd/sdz066.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sd/sdz066.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sd.txt +station = ('kfsd', 0.0069398055265258518) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sd/sdz066.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sd/sdz066.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sd/sdz066.txt + +[sdz067] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sd/sdz067.txt +centroid = (0.75535930164137388, -1.6881156137847035) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sd/sdz067.txt +description = Lincoln, SD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sd/sdz067.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sd/sdz067.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sd/sdz067.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sd/sdz067.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sd/sdz067.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sd/sdz067.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sd/sdz067.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sd/sdz067.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sd/sdz067.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sd/sdz067.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sd/sdz067.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sd/sdz067.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sd/sdz067.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sd/sdz067.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sd/sdz067.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sd.txt +station = ('kfsd', 0.0053252871751513766) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sd/sdz067.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sd/sdz067.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sd/sdz067.txt + +[sdz068] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sd/sdz068.txt +centroid = (0.75028912016433036, -1.7084103023268935) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sd/sdz068.txt +description = Bon Homme, SD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sd/sdz068.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sd/sdz068.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sd/sdz068.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sd/sdz068.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sd/sdz068.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sd/sdz068.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sd/sdz068.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sd/sdz068.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sd/sdz068.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sd/sdz068.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sd/sdz068.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sd/sdz068.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sd/sdz068.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sd/sdz068.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sd/sdz068.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sd.txt +station = ('kykn', 0.0065258627222399817) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sd/sdz068.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sd/sdz068.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sd/sdz068.txt + +[sdz069] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sd/sdz069.txt +centroid = (0.75064865799024116, -1.6998581889921214) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sd/sdz069.txt +description = Yankton, SD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sd/sdz069.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sd/sdz069.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sd/sdz069.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sd/sdz069.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sd/sdz069.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sd/sdz069.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sd/sdz069.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sd/sdz069.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sd/sdz069.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sd/sdz069.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sd/sdz069.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sd/sdz069.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sd/sdz069.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sd/sdz069.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sd/sdz069.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sd.txt +station = ('kykn', 0.0016180468144731306) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sd/sdz069.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sd/sdz069.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sd/sdz069.txt + +[sdz070] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sd/sdz070.txt +centroid = (0.7490010671763585, -1.6925452594262651) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sd/sdz070.txt +description = Clay, SD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sd/sdz070.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sd/sdz070.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sd/sdz070.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sd/sdz070.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sd/sdz070.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sd/sdz070.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sd/sdz070.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sd/sdz070.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sd/sdz070.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sd/sdz070.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sd/sdz070.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sd/sdz070.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sd/sdz070.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sd/sdz070.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sd/sdz070.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sd.txt +station = ('kykn', 0.0052105066721558242) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sd/sdz070.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sd/sdz070.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sd/sdz070.txt + +[sdz071] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sd/sdz071.txt +centroid = (0.7475664065312192, -1.686967187136891) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sd/sdz071.txt +description = Union, SD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sd/sdz071.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sd/sdz071.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sd/sdz071.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sd/sdz071.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sd/sdz071.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sd/sdz071.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sd/sdz071.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sd/sdz071.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sd/sdz071.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sd/sdz071.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sd/sdz071.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sd/sdz071.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sd/sdz071.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sd/sdz071.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sd/sdz071.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sd.txt +station = ('korc', 0.0079822936004071612) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sd/sdz071.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sd/sdz071.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sd/sdz071.txt + +[sdz072] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sd/sdz072.txt +centroid = (0.77376554393290609, -1.8045343108804812) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sd/sdz072.txt +description = Sturgis/Piedmont Foot Hills, SD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sd/sdz072.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sd/sdz072.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sd/sdz072.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sd/sdz072.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sd/sdz072.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sd/sdz072.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sd/sdz072.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sd/sdz072.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sd/sdz072.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sd/sdz072.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sd/sdz072.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sd/sdz072.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sd/sdz072.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sd/sdz072.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sd/sdz072.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sd.txt +station = ('krca', 0.0048585488232458524) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sd/sdz072.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sd/sdz072.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sd/sdz072.txt + +[sdz073] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sd/sdz073.txt +centroid = (0.77502218099434206, -1.7936364750310285) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sd/sdz073.txt +description = Southern Meade Co Plains, SD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sd/sdz073.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sd/sdz073.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sd/sdz073.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sd/sdz073.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sd/sdz073.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sd/sdz073.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sd/sdz073.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sd/sdz073.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sd/sdz073.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sd/sdz073.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sd/sdz073.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sd/sdz073.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sd/sdz073.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sd/sdz073.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sd/sdz073.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sd.txt +station = ('krca', 0.0060924042704034922) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sd/sdz073.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sd/sdz073.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sd/sdz073.txt + +[sdz074] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/sd/sdz074.txt +centroid = (0.76214514177312787, -1.8020681606474132) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/sd/sdz074.txt +description = Hermosa Foot Hills, SD +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/sd/sdz074.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/sd/sdz074.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/sd/sdz074.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/sd/sdz074.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/sd/sdz074.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/sd/sdz074.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/sd/sdz074.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/sd/sdz074.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/sd.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/sd/sdz074.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/sd/sdz074.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/sd/sdz074.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/sd/sdz074.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/sd/sdz074.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/sd/sdz074.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/sd/sdz074.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/sd.txt +station = ('kcut', 0.0047552924479529269) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/sd/sdz074.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/sd/sdz074.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/sd/sdz074.txt + +[tnz001] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz001.txt +centroid = (0.63416887437064362, -1.5619562341335453) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz001.txt +description = Lake, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz001.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz001.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz001.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz001.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz001.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz001.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz001.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz001.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz001.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz001.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz001.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz001.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz001.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz001.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz001.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('kdyr', 0.0059968388025363611) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz001.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz001.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz001.txt + +[tnz002] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz002.txt +centroid = (0.63457030009860227, -1.5559400842019209) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz002.txt +description = Obion, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz002.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz002.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz002.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz002.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz002.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz002.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz002.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz002.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz002.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz002.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz002.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz002.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz002.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz002.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz002.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('kdyr', 0.007183880230058462) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz002.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz002.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz002.txt + +[tnz003] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz003.txt +centroid = (0.63352484787665764, -1.5484177151258252) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz003.txt +description = Weakley, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz003.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz003.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz003.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz003.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz003.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz003.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz003.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz003.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz003.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz003.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz003.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz003.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz003.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz003.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz003.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('kcey', 0.0080662893049162632) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz003.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz003.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz003.txt + +[tnz004] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz004.txt +centroid = (0.63410778784682376, -1.541148418791269) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz004.txt +description = Henry, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz004.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz004.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz004.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz004.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz004.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz004.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz004.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz004.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz004.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz004.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz004.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz004.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz004.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz004.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz004.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('kcey', 0.0057888040366600012) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz004.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz004.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz004.txt + +[tnz005] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz005.txt +centroid = (0.6370661209289542, -1.533071035013039) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz005.txt +description = Stewart, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz005.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz005.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz005.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz005.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz005.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz005.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz005.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz005.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz005.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz005.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz005.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz005.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz005.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz005.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz005.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('khop', 0.0055538736343534734) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz005.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz005.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz005.txt + +[tnz006] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz006.txt +centroid = (0.63699107177111836, -1.5251193149409532) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz006.txt +description = Montgomery, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz006.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz006.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz006.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz006.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz006.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz006.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz006.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz006.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz006.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz006.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz006.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz006.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz006.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz006.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz006.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('kckv', 0.0021432576412169285) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz006.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz006.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz006.txt + +[tnz007] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz007.txt +centroid = (0.63748849060793678, -1.5161762478537342) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz007.txt +description = Robertson, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz007.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz007.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz007.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz007.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz007.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz007.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz007.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz007.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz007.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz007.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz007.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz007.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz007.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz007.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz007.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('kbna', 0.0076037886098767136) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz007.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz007.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz007.txt + +[tnz008] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz008.txt +centroid = (0.63651110622682006, -1.5090169072620534) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz008.txt +description = Sumner, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz008.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz008.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz008.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz008.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz008.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz008.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz008.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz008.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz008.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz008.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz008.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz008.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz008.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz008.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz008.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('kbna', 0.0069097395757058422) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz008.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz008.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz008.txt + +[tnz009] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz009.txt +centroid = (0.63760368233856846, -1.501108820421267) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz009.txt +description = Macon, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz009.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz009.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz009.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz009.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz009.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz009.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz009.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz009.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz009.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz009.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz009.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz009.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz009.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz009.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz009.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('kglw', 0.0087529421610437978) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz009.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz009.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz009.txt + +[tnz010] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz010.txt +centroid = (0.6379370402256993, -1.4930209646675254) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz010.txt +description = Clay, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz010.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz010.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz010.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz010.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz010.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz010.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz010.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz010.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz010.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz010.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz010.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz010.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz010.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz010.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz010.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('ksrb', 0.0086448342986840277) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz010.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz010.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz010.txt + +[tnz011] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz011.txt +centroid = (0.63806619459034697, -1.4848353704756718) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz011.txt +description = Pickett, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz011.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz011.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz011.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz011.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz011.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz011.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz011.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz011.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz011.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz011.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz011.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz011.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz011.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz011.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz011.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('kekq', 0.0060160781811419844) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz011.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz011.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz011.txt + +[tnz012] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz012.txt +centroid = (0.63579901189200638, -1.4748643044590284) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz012.txt +description = Scott, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz012.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz012.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz012.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz012.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz012.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz012.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz012.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz012.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz012.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz012.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz012.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz012.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz012.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz012.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz012.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('koqt', 0.0081338902260973921) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz012.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz012.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz012.txt + +[tnz013] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz013.txt +centroid = (0.63536267957900772, -1.4686823482484643) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz013.txt +description = Campbell, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz013.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz013.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz013.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz013.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz013.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz013.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz013.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz013.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz013.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz013.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz013.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz013.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz013.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz013.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz013.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('k1a6', 0.006816569848994306) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz013.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz013.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz013.txt + +[tnz014] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz014.txt +centroid = (0.63679908555339915, -1.4601494335354639) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz014.txt +description = Claiborne, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz014.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz014.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz014.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz014.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz014.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz014.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz014.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz014.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz014.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz014.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz014.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz014.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz014.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz014.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz014.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('k1a6', 0.0024276906775823502) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz014.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz014.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz014.txt + +[tnz015] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz015.txt +centroid = (0.637457074681401, -1.4524961647654691) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz015.txt +description = Hancock, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz015.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz015.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz015.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz015.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz015.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz015.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz015.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz015.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz015.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz015.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz015.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz015.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz015.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz015.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz015.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('k0vg', 0.0022747037461011374) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz015.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz015.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz015.txt + +[tnz016] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz016.txt +centroid = (0.63601892337775767, -1.4476581120789407) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz016.txt +description = Hawkins, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz016.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz016.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz016.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz016.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz016.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz016.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz016.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz016.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz016.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz016.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz016.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz016.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz016.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz016.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz016.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('k0vg', 0.005332951259057311) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz016.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz016.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz016.txt + +[tnz017] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz017.txt +centroid = (0.63727032445143761, -1.4364792782199169) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz017.txt +description = Sullivan, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz017.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz017.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz017.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz017.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz017.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz017.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz017.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz017.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz017.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz017.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz017.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz017.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz017.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz017.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz017.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('ktri', 0.0015678406245155836) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz017.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz017.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz017.txt + +[tnz018] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz018.txt +centroid = (0.63625803348528087, -1.4285834086838947) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz018.txt +description = Johnson, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz018.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz018.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz018.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz018.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz018.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz018.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz018.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz018.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz018.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz018.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz018.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz018.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz018.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz018.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz018.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('kvji', 0.0047297557158733784) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz018.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz018.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz018.txt + +[tnz019] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz019.txt +centroid = (0.62934827497663526, -1.5605652067197058) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz019.txt +description = Dyer, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz019.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz019.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz019.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz019.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz019.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz019.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz019.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz019.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz019.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz019.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz019.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz019.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz019.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz019.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz019.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('kdyr', 0.0010480046441312444) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz019.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz019.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz019.txt + +[tnz020] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz020.txt +centroid = (0.62825918952339088, -1.5521666823591089) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz020.txt +description = Gibson, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz020.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz020.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz020.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz020.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz020.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz020.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz020.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz020.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz020.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz020.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz020.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz020.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz020.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz020.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz020.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('kdyr', 0.0066000955082079153) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz020.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz020.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz020.txt + +[tnz021] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz021.txt +centroid = (0.62784903714917217, -1.5437472140474884) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz021.txt +description = Carroll, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz021.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz021.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz021.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz021.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz021.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz021.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz021.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz021.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz021.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz021.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz021.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz021.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz021.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz021.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz021.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('kmkl', 0.0092747016947994886) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz021.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz021.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz021.txt + +[tnz022] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz022.txt +centroid = (0.62953677053585066, -1.5370818016341221) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz022.txt +description = Benton, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz022.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz022.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz022.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz022.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz022.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz022.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz022.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz022.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz022.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz022.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz022.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz022.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz022.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz022.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz022.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('kcey', 0.011086752377149614) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz022.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz022.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz022.txt + +[tnz023] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz023.txt +centroid = (0.63331017237866249, -1.530952205301118) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz023.txt +description = Houston, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz023.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz023.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz023.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz023.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz023.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz023.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz023.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz023.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz023.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz023.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz023.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz023.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz023.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz023.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz023.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('kckv', 0.0071481434235937946) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz023.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz023.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz023.txt + +[tnz024] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz024.txt +centroid = (0.6290306250527723, -1.5319749682427868) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz024.txt +description = Humphreys, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz024.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz024.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz024.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz024.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz024.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz024.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz024.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz024.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz024.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz024.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz024.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz024.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz024.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz024.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz024.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('kckv', 0.011247359455981001) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz024.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz024.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz024.txt + +[tnz025] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz025.txt +centroid = (0.63092081663268218, -1.5246620386769305) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz025.txt +description = Dickson, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz025.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz025.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz025.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz025.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz025.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz025.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz025.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz025.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz025.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz025.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz025.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz025.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz025.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz025.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz025.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('kckv', 0.0082039621276983297) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz025.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz025.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz025.txt + +[tnz026] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz026.txt +centroid = (0.63287733072416785, -1.5199513950257977) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz026.txt +description = Cheatham, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz026.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz026.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz026.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz026.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz026.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz026.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz026.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz026.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz026.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz026.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz026.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz026.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz026.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz026.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz026.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('kbna', 0.0062179525138382676) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz026.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz026.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz026.txt + +[tnz027] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz027.txt +centroid = (0.63127511847083706, -1.514680500684775) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz027.txt +description = Davidson, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz027.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz027.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz027.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz027.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz027.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz027.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz027.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz027.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz027.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz027.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz027.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz027.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz027.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz027.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz027.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('kbna', 0.0017006727875043992) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz027.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz027.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz027.txt + +[tnz028] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz028.txt +centroid = (0.63102204572929776, -1.5061772565690585) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz028.txt +description = Wilson, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz028.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz028.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz028.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz028.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz028.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz028.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz028.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz028.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz028.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz028.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz028.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz028.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz028.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz028.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz028.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('kmqy', 0.0040416738127670038) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz028.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz028.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz028.txt + +[tnz029] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz029.txt +centroid = (0.63516196671502834, -1.5037180876529985) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz029.txt +description = Trousdale, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz029.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz029.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz029.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz029.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz029.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz029.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz029.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz029.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz029.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz029.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz029.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz029.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz029.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz029.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz029.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('kmqy', 0.0084210392873522045) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz029.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz029.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz029.txt + +[tnz030] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz030.txt +centroid = (0.63269058049420446, -1.5002274291490099) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz030.txt +description = Smith, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz030.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz030.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz030.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz030.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz030.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz030.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz030.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz030.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz030.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz030.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz030.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz030.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz030.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz030.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz030.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('ksrb', 0.006897570581087289) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz030.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz030.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz030.txt + +[tnz031] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz031.txt +centroid = (0.63458775339112228, -1.4952794207196058) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz031.txt +description = Jackson, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz031.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz031.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz031.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz031.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz031.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz031.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz031.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz031.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz031.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz031.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz031.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz031.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz031.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz031.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz031.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('ksrb', 0.0056612029937843228) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz031.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz031.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz031.txt + +[tnz032] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz032.txt +centroid = (0.63077595430476663, -1.492170989321804) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz032.txt +description = Putnam, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz032.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz032.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz032.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz032.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz032.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz032.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz032.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz032.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz032.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz032.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz032.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz032.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz032.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz032.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz032.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('ksrb', 0.0015645236309128224) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz032.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz032.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz032.txt + +[tnz033] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz033.txt +centroid = (0.63433991663733902, -1.4885581577701759) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz033.txt +description = Overton, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz033.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz033.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz033.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz033.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz033.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz033.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz033.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz033.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz033.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz033.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz033.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz033.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz033.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz033.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz033.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('ksrb', 0.0060937608119419756) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz033.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz033.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz033.txt + +[tnz034] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz034.txt +centroid = (0.63495950852179706, -1.4823500216208321) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz034.txt +description = Fentress, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz034.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz034.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz034.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz034.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz034.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz034.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz034.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz034.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz034.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz034.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz034.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz034.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz034.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz034.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz034.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('kcsv', 0.0078088182690541127) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz034.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz034.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz034.txt + +[tnz035] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz035.txt +centroid = (0.63067472520815093, -1.4774055038499321) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz035.txt +description = Morgan, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz035.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz035.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz035.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz035.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz035.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz035.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz035.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz035.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz035.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz035.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz035.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz035.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz035.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz035.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz035.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('kcsv', 0.0069266632862050401) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz035.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz035.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz035.txt + +[tnz036] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz036.txt +centroid = (0.63038500055231994, -1.4695410502404456) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz036.txt +description = Anderson, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz036.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz036.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz036.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz036.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz036.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz036.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz036.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz036.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz036.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz036.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz036.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz036.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz036.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz036.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz036.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('koqt', 0.0018423324751345007) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz036.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz036.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz036.txt + +[tnz037] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz037.txt +centroid = (0.63334333363445028, -1.463240411640746) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz037.txt +description = Union, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz037.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz037.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz037.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz037.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz037.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz037.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz037.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz037.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz037.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz037.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz037.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz037.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz037.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz037.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz037.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('k1a6', 0.0058047060750521301) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz037.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz037.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz037.txt + +[tnz038] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz038.txt +centroid = (0.63313913011196699, -1.4575174770234567) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz038.txt +description = Grainger, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz038.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz038.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz038.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz038.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz038.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz038.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz038.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz038.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz038.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz038.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz038.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz038.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz038.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz038.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz038.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('k1a6', 0.0066534007515446246) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz038.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz038.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz038.txt + +[tnz039] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz039.txt +centroid = (0.63210938585329024, -1.4532763269411104) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz039.txt +description = Hamblen, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz039.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz039.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz039.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz039.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz039.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz039.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz039.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz039.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz039.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz039.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz039.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz039.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz039.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz039.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz039.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('k0vg', 0.0076524275834365021) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz039.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz039.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz039.txt + +[tnz040] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz040.txt +centroid = (0.62803055139137953, -1.4513041048863569) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz040.txt +description = Northwest Cocke, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz040.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz040.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz040.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz040.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz040.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz040.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz040.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz040.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz040.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz040.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz040.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz040.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz040.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz040.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz040.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('k0vg', 0.011735248350205408) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz040.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz040.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz040.txt + +[tnz041] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz041.txt +centroid = (0.62555567451205163, -1.4499200587895251) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz041.txt +description = Cocke Smoky Mountains, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz041.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz041.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz041.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz041.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz041.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz041.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz041.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz041.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz041.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz041.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz041.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz041.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz041.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz041.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz041.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('kavl', 0.010472797351764426) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz041.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz041.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz041.txt + +[tnz042] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz042.txt +centroid = (0.63182489718521517, -1.4460628811426179) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz042.txt +description = Northwest Greene, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz042.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz042.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz042.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz042.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz042.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz042.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz042.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz042.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz042.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz042.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz042.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz042.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz042.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz042.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz042.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('ktri', 0.0078826196092760658) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz042.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz042.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz042.txt + +[tnz043] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz043.txt +centroid = (0.62853844220370991, -1.4450977140662651) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz043.txt +description = Southeast Greene, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz043.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz043.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz043.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz043.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz043.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz043.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz043.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz043.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz043.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz043.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz043.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz043.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz043.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz043.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz043.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('ktri', 0.0097053617959885589) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz043.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz043.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz043.txt + +[tnz044] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz044.txt +centroid = (0.63343758141405804, -1.4398512543347699) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz044.txt +description = Washington, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz044.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz044.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz044.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz044.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz044.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz044.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz044.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz044.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz044.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz044.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz044.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz044.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz044.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz044.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz044.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('ktri', 0.0033209533935386862) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz044.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz044.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz044.txt + +[tnz045] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz045.txt +centroid = (0.63025235552916836, -1.4387150449917216) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz045.txt +description = Unicoi, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz045.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz045.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz045.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz045.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz045.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz045.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz045.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz045.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz045.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz045.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz045.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz045.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz045.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz045.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz045.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('k0a9', 0.0058394378176546396) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz045.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz045.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz045.txt + +[tnz046] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz046.txt +centroid = (0.63480417421836954, -1.4340201093038571) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz046.txt +description = Northwest Carter, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz046.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz046.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz046.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz046.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz046.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz046.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz046.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz046.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz046.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz046.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz046.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz046.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz046.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz046.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz046.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('k0a9', 9.8211056344513337e-05) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz046.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz046.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz046.txt + +[tnz047] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz047.txt +centroid = (0.6323397693145536, -1.4328978625948248) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz047.txt +description = Southeast Carter, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz047.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz047.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz047.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz047.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz047.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz047.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz047.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz047.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz047.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz047.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz047.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz047.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz047.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz047.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz047.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('k0a9', 0.002633213771048653) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz047.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz047.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz047.txt + +[tnz048] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz048.txt +centroid = (0.62414544847644016, -1.5643630431720454) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz048.txt +description = Lauderdale, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz048.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz048.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz048.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz048.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz048.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz048.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz048.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz048.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz048.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz048.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz048.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz048.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz048.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz048.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz048.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('khka', 0.0041495372063075605) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz048.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz048.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz048.txt + +[tnz049] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz049.txt +centroid = (0.61953254326341922, -1.5665970646145981) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz049.txt +description = Tipton, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz049.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz049.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz049.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz049.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz049.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz049.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz049.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz049.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz049.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz049.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz049.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz049.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz049.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz049.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz049.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('knqa', 0.0029071335715012258) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz049.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz049.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz049.txt + +[tnz050] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz050.txt +centroid = (0.62104574372489829, -1.5582962786921133) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz050.txt +description = Haywood, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz050.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz050.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz050.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz050.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz050.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz050.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz050.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz050.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz050.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz050.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz050.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz050.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz050.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz050.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz050.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('kmkl', 0.0052187800908053208) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz050.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz050.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz050.txt + +[tnz051] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz051.txt +centroid = (0.62506349166298913, -1.5557777685814853) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz051.txt +description = Crockett, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz051.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz051.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz051.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz051.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz051.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz051.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz051.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz051.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz051.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz051.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz051.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz051.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz051.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz051.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz051.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('kmkl', 0.0048845169859309144) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz051.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz051.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz051.txt + +[tnz052] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz052.txt +centroid = (0.62148033070864483, -1.5505243275329823) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz052.txt +description = Madison, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz052.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz052.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz052.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz052.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz052.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz052.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz052.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz052.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz052.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz052.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz052.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz052.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz052.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz052.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz052.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('kmkl', 0.0011184232619779147) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz052.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz052.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz052.txt + +[tnz053] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz053.txt +centroid = (0.6182148196781635, -1.5465851194112312) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz053.txt +description = Chester, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz053.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz053.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz053.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz053.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz053.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz053.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz053.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz053.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz053.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz053.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz053.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz053.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz053.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz053.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz053.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('kmkl', 0.0053278900482935099) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz053.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz053.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz053.txt + +[tnz054] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz054.txt +centroid = (0.62228492749381425, -1.542661619252748) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz054.txt +description = Henderson, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz054.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz054.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz054.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz054.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz054.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz054.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz054.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz054.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz054.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz054.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz054.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz054.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz054.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz054.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz054.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('kmkl', 0.007559544841318433) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz054.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz054.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz054.txt + +[tnz055] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz055.txt +centroid = (0.62138957358754121, -1.5377886599811799) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz055.txt +description = Decatur, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz055.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz055.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz055.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz055.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz055.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz055.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz055.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz055.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz055.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz055.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz055.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz055.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz055.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz055.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz055.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('kcrx', 0.013823922281605798) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz055.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz055.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz055.txt + +[tnz056] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz056.txt +centroid = (0.62208072397133096, -1.5334288275096979) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz056.txt +description = Perry, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz056.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz056.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz056.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz056.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz056.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz056.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz056.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz056.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz056.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz056.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz056.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz056.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz056.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz056.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz056.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('kmsl', 0.016010751715253582) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz056.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz056.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz056.txt + +[tnz057] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz057.txt +centroid = (0.6248854680792858, -1.5266970925847558) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz057.txt +description = Hickman, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz057.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz057.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz057.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz057.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz057.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz057.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz057.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz057.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz057.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz057.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz057.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz057.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz057.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz057.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz057.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('kbna', 0.01242807417784038) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz057.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz057.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz057.txt + +[tnz058] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz058.txt +centroid = (0.62006835934378135, -1.5270426677766507) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz058.txt +description = Lewis, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz058.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz058.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz058.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz058.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz058.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz058.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz058.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz058.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz058.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz058.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz058.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz058.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz058.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz058.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz058.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('kmsl', 0.013651967534951759) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz058.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz058.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz058.txt + +[tnz059] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz059.txt +centroid = (0.62646499105234066, -1.5166684307027964) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz059.txt +description = Williamson, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz059.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz059.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz059.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz059.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz059.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz059.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz059.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz059.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz059.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz059.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz059.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz059.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz059.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz059.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz059.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('kbna', 0.0049372569090966462) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz059.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz059.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz059.txt + +[tnz060] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz060.txt +centroid = (0.62163391968282034, -1.5197803527591023) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz060.txt +description = Maury, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz060.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz060.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz060.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz060.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz060.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz060.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz060.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz060.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz060.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz060.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz060.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz060.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz060.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz060.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz060.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('kbna', 0.010346707500502749) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz060.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz060.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz060.txt + +[tnz061] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz061.txt +centroid = (0.61904908706061668, -1.5143366708221322) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz061.txt +description = Marshall, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz061.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz061.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz061.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz061.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz061.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz061.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz061.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz061.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz061.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz061.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz061.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz061.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz061.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz061.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz061.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('ktha', 0.0075344364826565504) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz061.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz061.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz061.txt + +[tnz062] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz062.txt +centroid = (0.62557312780457153, -1.5082559437081839) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz062.txt +description = Rutherford, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz062.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz062.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz062.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz062.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz062.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz062.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz062.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz062.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz062.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz062.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz062.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz062.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz062.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz062.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz062.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('kmqy', 0.0032472534331937741) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz062.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz062.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz062.txt + +[tnz063] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz063.txt +centroid = (0.62497971585889356, -1.502060024863604) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz063.txt +description = Cannon, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz063.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz063.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz063.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz063.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz063.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz063.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz063.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz063.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz063.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz063.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz063.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz063.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz063.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz063.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz063.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('kmqy', 0.0073607600105417307) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz063.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz063.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz063.txt + +[tnz064] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz064.txt +centroid = (0.62796597420905576, -1.498064966205789) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz064.txt +description = De Kalb, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz064.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz064.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz064.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz064.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz064.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz064.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz064.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz064.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz064.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz064.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz064.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz064.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz064.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz064.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz064.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('ksrb', 0.0044667278156276533) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz064.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz064.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz064.txt + +[tnz065] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz065.txt +centroid = (0.62703396838849079, -1.4914763482795101) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz065.txt +description = White, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz065.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz065.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz065.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz065.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz065.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz065.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz065.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz065.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz065.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz065.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz065.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz065.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz065.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz065.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz065.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('ksrb', 0.0024984475946491151) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz065.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz065.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz065.txt + +[tnz066] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz066.txt +centroid = (0.62745284740896945, -1.4835001935978962) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz066.txt +description = Cumberland, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz066.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz066.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz066.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz066.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz066.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz066.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz066.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz066.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz066.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz066.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz066.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz066.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz066.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz066.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz066.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('kcsv', 0.0012014495449932051) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz066.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz066.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz066.txt + +[tnz067] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz067.txt +centroid = (0.62566213959642325, -1.4752098796509232) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz067.txt +description = Roane, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz067.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz067.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz067.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz067.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz067.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz067.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz067.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz067.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz067.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz067.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz067.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz067.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz067.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz067.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz067.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('koqt', 0.0050476497735717158) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz067.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz067.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz067.txt + +[tnz068] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz068.txt +centroid = (0.6236934082001736, -1.4715150176244511) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz068.txt +description = Loudon, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz068.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz068.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz068.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz068.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz068.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz068.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz068.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz068.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz068.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz068.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz068.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz068.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz068.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz068.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz068.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('koqt', 0.005039077495606557) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz068.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz068.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz068.txt + +[tnz069] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz069.txt +centroid = (0.62819984832882303, -1.4649787595757324) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz069.txt +description = Knox, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz069.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz069.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz069.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz069.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz069.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz069.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz069.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz069.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz069.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz069.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz069.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz069.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz069.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz069.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz069.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('ktys', 0.0031496501948223205) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz069.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz069.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz069.txt + +[tnz070] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz070.txt +centroid = (0.62920864863647574, -1.4564126836069442) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz070.txt +description = Jefferson, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz070.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz070.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz070.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz070.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz070.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz070.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz070.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz070.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz070.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz070.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz070.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz070.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz070.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz070.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz070.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('ktys', 0.0086211312781376472) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz070.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz070.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz070.txt + +[tnz071] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz071.txt +centroid = (0.62352062060422619, -1.4653854212914472) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz071.txt +description = NW Blount, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz071.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz071.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz071.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz071.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz071.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz071.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz071.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz071.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz071.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz071.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz071.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz071.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz071.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz071.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz071.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('ktys', 0.001630802870416696) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz071.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz071.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz071.txt + +[tnz072] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz072.txt +centroid = (0.62107715965143406, -1.4631356918856264) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz072.txt +description = Blount Smoky Mountains, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz072.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz072.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz072.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz072.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz072.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz072.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz072.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz072.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz072.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz072.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz072.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz072.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz072.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz072.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz072.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('ktys', 0.0045788190222763739) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz072.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz072.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz072.txt + +[tnz073] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz073.txt +centroid = (0.62564992229165928, -1.4583482537474057) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz073.txt +description = North Sevier, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz073.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz073.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz073.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz073.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz073.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz073.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz073.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz073.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz073.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz073.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz073.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz073.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz073.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz073.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz073.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('ktys', 0.0060531529695800942) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz073.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz073.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz073.txt + +[tnz074] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz074.txt +centroid = (0.62263922933196902, -1.4567547681403352) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz074.txt +description = Sevier Smoky Mountains, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz074.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz074.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz074.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz074.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz074.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz074.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz074.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz074.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz074.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz074.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz074.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz074.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz074.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz074.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz074.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('k1a5', 0.0080230419682523323) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz074.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz074.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz074.txt + +[tnz075] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz075.txt +centroid = (0.61983273989476229, -1.5089924726525255) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz075.txt +description = Bedford, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz075.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz075.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz075.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz075.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz075.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz075.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz075.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz075.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz075.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz075.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz075.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz075.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz075.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz075.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz075.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('ktha', 0.0038152434073577871) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz075.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz075.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz075.txt + +[tnz076] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz076.txt +centroid = (0.61583419057844324, -1.507245398071279) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz076.txt +description = Moore, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz076.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz076.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz076.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz076.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz076.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz076.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz076.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz076.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz076.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz076.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz076.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz076.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz076.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz076.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz076.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('ktha', 0.0023055719732711067) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz076.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz076.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz076.txt + +[tnz077] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz077.txt +centroid = (0.6194278235082995, -1.5022886629956151) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz077.txt +description = Coffee, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz077.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz077.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz077.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz077.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz077.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz077.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz077.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz077.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz077.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz077.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz077.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz077.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz077.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz077.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz077.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('ktha', 0.0031144668623812846) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz077.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz077.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz077.txt + +[tnz078] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz078.txt +centroid = (0.62271078783130085, -1.4971172524219558) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz078.txt +description = Warren, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz078.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz078.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz078.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz078.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz078.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz078.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz078.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz078.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz078.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz078.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz078.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz078.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz078.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz078.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz078.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('ksrb', 0.0074581859990746685) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz078.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz078.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz078.txt + +[tnz079] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz079.txt +centroid = (0.61764409701276124, -1.4961416133700911) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz079.txt +description = Grundy, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz079.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz079.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz079.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz079.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz079.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz079.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz079.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz079.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz079.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz079.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz079.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz079.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz079.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz079.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz079.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('kbgf', 0.0061241599973527261) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz079.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz079.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz079.txt + +[tnz080] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz080.txt +centroid = (0.62301272979189581, -1.4914274790604545) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz080.txt +description = Van Buren, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz080.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz080.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz080.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz080.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz080.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz080.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz080.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz080.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz080.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz080.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz080.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz080.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz080.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz080.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz080.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('ksrb', 0.0063780510268944624) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz080.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz080.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz080.txt + +[tnz081] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz081.txt +centroid = (0.61734390038141829, -1.4906961861038688) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz081.txt +description = Sequatchie, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz081.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz081.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz081.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz081.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz081.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz081.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz081.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz081.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz081.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz081.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz081.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz081.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz081.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz081.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz081.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('kcha', 0.0066177035188215239) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz081.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz081.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz081.txt + +[tnz082] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz082.txt +centroid = (0.62127438185690953, -1.4871095344910206) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz082.txt +description = Bledsoe, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz082.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz082.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz082.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz082.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz082.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz082.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz082.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz082.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz082.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz082.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz082.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz082.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz082.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz082.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz082.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('kcsv', 0.0064078332742287889) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz082.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz082.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz082.txt + +[tnz083] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz083.txt +centroid = (0.62148905735490478, -1.4822103952806724) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz083.txt +description = Rhea, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz083.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz083.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz083.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz083.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz083.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz083.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz083.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz083.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz083.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz083.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz083.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz083.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz083.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz083.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz083.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('kcsv', 0.0063677188282503907) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz083.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz083.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz083.txt + +[tnz084] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz084.txt +centroid = (0.61981354127299026, -1.4802748251402107) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz084.txt +description = Meigs, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz084.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz084.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz084.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz084.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz084.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz084.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz084.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz084.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz084.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz084.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz084.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz084.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz084.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz084.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz084.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('kcsv', 0.0085362416193648059) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz084.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz084.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz084.txt + +[tnz085] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz085.txt +centroid = (0.61827939686048716, -1.4768539798063018) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz085.txt +description = McMinn, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz085.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz085.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz085.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz085.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz085.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz085.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz085.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz085.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz085.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz085.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz085.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz085.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz085.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz085.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz085.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('kcha', 0.010753900358552419) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz085.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz085.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz085.txt + +[tnz086] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz086.txt +centroid = (0.61934928369195974, -1.4714783657101593) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz086.txt +description = Northwest Monroe, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz086.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz086.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz086.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz086.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz086.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz086.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz086.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz086.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz086.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz086.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz086.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz086.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz086.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz086.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz086.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('ktys', 0.0073948805974047727) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz086.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz086.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz086.txt + +[tnz087] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz087.txt +centroid = (0.61702625045755533, -1.4684380021531851) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz087.txt +description = Southeast Monroe, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz087.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz087.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz087.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz087.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz087.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz087.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz087.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz087.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz087.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz087.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz087.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz087.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz087.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz087.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz087.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('krhp', 0.004753006772667389) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz087.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz087.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz087.txt + +[tnz088] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz088.txt +centroid = (0.6140714080339289, -1.5689742030558145) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz088.txt +description = Shelby, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz088.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz088.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz088.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz088.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz088.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz088.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz088.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz088.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz088.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz088.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz088.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz088.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz088.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz088.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz088.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('kmem', 0.0029080178922408508) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz088.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz088.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz088.txt + +[tnz089] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz089.txt +centroid = (0.61430528215369617, -1.5605756786952178) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz089.txt +description = Fayette, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz089.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz089.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz089.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz089.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz089.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz089.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz089.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz089.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz089.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz089.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz089.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz089.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz089.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz089.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz089.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('kolv', 0.0065431077069101375) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz089.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz089.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz089.txt + +[tnz090] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz090.txt +centroid = (0.61447632442039157, -1.5532226065565657) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz090.txt +description = Hardeman, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz090.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz090.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz090.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz090.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz090.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz090.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz090.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz090.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz090.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz090.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz090.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz090.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz090.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz090.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz090.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('kmkl', 0.0069465177498632021) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz090.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz090.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz090.txt + +[tnz091] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz091.txt +centroid = (0.61391258307199736, -1.545728162748502) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz091.txt +description = McNairy, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz091.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz091.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz091.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz091.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz091.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz091.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz091.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz091.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz091.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz091.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz091.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz091.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz091.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz091.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz091.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('kcrx', 0.0044737768783084525) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz091.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz091.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz091.txt + +[tnz092] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz092.txt +centroid = (0.61433320742172814, -1.5391098742249396) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz092.txt +description = Hardin, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz092.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz092.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz092.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz092.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz092.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz092.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz092.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz092.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz092.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz092.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz092.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz092.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz092.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz092.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz092.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('kcrx', 0.0076744529795280871) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz092.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz092.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz092.txt + +[tnz093] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz093.txt +centroid = (0.61505402840280177, -1.532189643740782) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz093.txt +description = Wayne, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz093.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz093.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz093.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz093.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz093.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz093.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz093.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz093.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz093.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz093.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz093.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz093.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz093.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz093.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz093.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('kmsl', 0.0089645845402076176) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz093.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz093.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz093.txt + +[tnz094] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz094.txt +centroid = (0.61465783866259904, -1.5253409717559563) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz094.txt +description = Lawrence, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz094.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz094.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz094.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz094.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz094.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz094.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz094.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz094.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz094.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz094.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz094.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz094.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz094.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz094.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz094.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('kmsl', 0.0086638409483848749) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz094.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz094.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz094.txt + +[tnz095] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz095.txt +centroid = (0.61439429394554779, -1.5190438238147608) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz095.txt +description = Giles, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz095.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz095.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz095.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz095.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz095.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz095.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz095.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz095.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz095.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz095.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz095.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz095.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz095.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz095.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz095.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('kmdq', 0.0090534685610212974) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz095.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz095.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz095.txt + +[tnz096] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz096.txt +centroid = (0.61331742579706738, -1.5112614006801179) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz096.txt +description = Lincoln, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz096.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz096.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz096.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz096.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz096.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz096.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz096.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz096.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz096.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz096.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz096.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz096.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz096.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz096.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz096.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('kmdq', 0.0048924147286415268) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz096.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz096.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz096.txt + +[tnz097] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz097.txt +centroid = (0.61356875320935456, -1.5025923502854623) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz097.txt +description = Franklin, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz097.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz097.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz097.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz097.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz097.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz097.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz097.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz097.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz097.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz097.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz097.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz097.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz097.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz097.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz097.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('kbgf', 0.00054215818830343138) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz097.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz097.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz097.txt + +[tnz098] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz098.txt +centroid = (0.61312369425009594, -1.4943858121425848) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz098.txt +description = Marion, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz098.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz098.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz098.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz098.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz098.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz098.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz098.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz098.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz098.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz098.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz098.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz098.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz098.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz098.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz098.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('kcha', 0.0062561458848444948) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz098.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz098.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz098.txt + +[tnz099] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz099.txt +centroid = (0.61402253881487312, -1.4864061668024668) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz099.txt +description = Hamilton, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz099.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz099.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz099.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz099.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz099.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz099.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz099.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz099.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz099.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz099.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz099.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz099.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz099.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz099.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz099.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('kcha', 0.0026241041307306771) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz099.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz099.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz099.txt + +[tnz100] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz100.txt +centroid = (0.61355479057533857, -1.48107942192538) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz100.txt +description = Bradley, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz100.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz100.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz100.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz100.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz100.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz100.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz100.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz100.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz100.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz100.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz100.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz100.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz100.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz100.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz100.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('kcha', 0.0052983787670659224) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz100.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz100.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz100.txt + +[tnz101] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz101.txt +centroid = (0.61333662441883929, -1.4764385914443272) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz101.txt +description = West Polk, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz101.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz101.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz101.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz101.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz101.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz101.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz101.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz101.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz101.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz101.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz101.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz101.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz101.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz101.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz101.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('kdnn', 0.0083218712605024787) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz101.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz101.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz101.txt + +[tnz102] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tn/tnz102.txt +centroid = (0.61235749470847056, -1.4732551108886895) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tn/tnz102.txt +description = East Polk, TN +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tn/tnz102.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tn/tnz102.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tn/tnz102.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tn/tnz102.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tn/tnz102.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tn/tnz102.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tn/tnz102.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tn/tnz102.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tn.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tn/tnz102.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tn/tnz102.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tn/tnz102.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tn/tnz102.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tn/tnz102.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tn/tnz102.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tn/tnz102.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tn.txt +station = ('krhp', 0.0080470331196573468) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tn/tnz102.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tn/tnz102.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tn/tnz102.txt + +[txz001] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz001.txt +centroid = (0.63316880070925097, -1.790746209789726) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz001.txt +description = Dallam, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz001.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz001.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz001.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz001.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz001.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz001.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz001.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz001.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz001.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz001.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz001.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz001.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz001.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz001.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz001.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kdht', 0.0046183539268128161) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz001.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz001.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz001.txt + +[txz002] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz002.txt +centroid = (0.63316531005074694, -1.7783770613808423) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz002.txt +description = Sherman, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz002.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz002.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz002.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz002.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz002.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz002.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz002.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz002.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz002.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz002.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz002.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz002.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz002.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz002.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz002.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kdux', 0.0075206017281429565) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz002.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz002.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz002.txt + +[txz003] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz003.txt +centroid = (0.63316181939224292, -1.7689697367125927) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz003.txt +description = Hansford, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz003.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz003.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz003.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz003.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz003.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz003.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz003.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz003.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz003.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz003.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz003.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz003.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz003.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz003.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz003.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kguy', 0.0073715603590210023) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz003.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz003.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz003.txt + +[txz004] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz004.txt +centroid = (0.63317752735551081, -1.7595641573735954) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz004.txt +description = Ochiltree, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz004.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz004.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz004.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz004.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz004.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz004.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz004.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz004.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz004.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz004.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz004.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz004.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz004.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz004.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz004.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kpyx', 0.0024170108854343849) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz004.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz004.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz004.txt + +[txz005] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz005.txt +centroid = (0.63316531005074694, -1.7500957461815261) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz005.txt +description = Lipscomb, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz005.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz005.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz005.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz005.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz005.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz005.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz005.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz005.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz005.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz005.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz005.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz005.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz005.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz005.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz005.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('khhf', 0.0068307597662044615) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz005.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz005.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz005.txt + +[txz006] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz006.txt +centroid = (0.62552600391476776, -1.7907584270944901) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz006.txt +description = Hartley, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz006.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz006.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz006.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz006.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz006.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz006.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz006.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz006.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz006.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz006.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz006.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz006.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz006.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz006.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz006.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kdht', 0.0031727579108920883) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz006.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz006.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz006.txt + +[txz007] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz007.txt +centroid = (0.62548586134197182, -1.7783665894053302) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz007.txt +description = Moore, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz007.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz007.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz007.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz007.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz007.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz007.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz007.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz007.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz007.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz007.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz007.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz007.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz007.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz007.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz007.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kdux', 0.0017356109133335564) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz007.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz007.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz007.txt + +[txz008] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz008.txt +centroid = (0.62552600391476776, -1.7689732273710965) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz008.txt +description = Hutchinson, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz008.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz008.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz008.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz008.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz008.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz008.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz008.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz008.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz008.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz008.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz008.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz008.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz008.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz008.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz008.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kbgd', 0.0025262658355981243) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz008.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz008.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz008.txt + +[txz009] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz009.txt +centroid = (0.6254998239759878, -1.7595257601300514) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz009.txt +description = Roberts, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz009.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz009.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz009.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz009.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz009.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz009.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz009.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz009.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz009.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz009.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz009.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz009.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz009.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz009.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz009.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kbpc', 0.0031482947631410064) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz009.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz009.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz009.txt + +[txz010] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz010.txt +centroid = (0.62548411601271992, -1.7500503676209742) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz010.txt +description = Hemphill, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz010.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz010.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz010.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz010.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz010.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz010.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz010.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz010.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz010.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz010.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz010.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz010.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz010.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz010.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz010.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('khhf', 0.0021309120480873778) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz010.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz010.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz010.txt + +[txz011] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz011.txt +centroid = (0.61793382166859234, -1.7907584270944901) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz011.txt +description = Oldham, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz011.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz011.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz011.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz011.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz011.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz011.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz011.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz011.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz011.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz011.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz011.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz011.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz011.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz011.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz011.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('khrx', 0.01027871709286067) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz011.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz011.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz011.txt + +[txz012] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz012.txt +centroid = (0.61786924448626857, -1.7783857880271023) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz012.txt +description = Potter, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz012.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz012.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz012.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz012.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz012.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz012.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz012.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz012.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz012.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz012.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz012.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz012.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz012.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz012.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz012.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kama', 0.0040943160877601999) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz012.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz012.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz012.txt + +[txz013] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz013.txt +centroid = (0.6179076417298125, -1.7689645007248369) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz013.txt +description = Carson, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz013.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz013.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz013.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz013.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz013.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz013.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz013.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz013.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz013.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz013.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz013.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz013.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz013.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz013.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz013.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kbgd', 0.0052156072267318561) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz013.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz013.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz013.txt + +[txz014] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz014.txt +centroid = (0.61786749915701666, -1.7595117974960355) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz014.txt +description = Gray, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz014.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz014.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz014.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz014.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz014.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz014.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz014.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz014.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz014.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz014.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz014.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz014.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz014.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz014.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz014.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kppa', 0.004520414059023703) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz014.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz014.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz014.txt + +[txz015] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz015.txt +centroid = (0.61786924448626857, -1.7500364049869583) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz015.txt +description = Wheeler, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz015.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz015.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz015.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz015.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz015.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz015.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz015.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz015.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz015.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz015.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz015.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz015.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz015.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz015.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz015.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('khhf', 0.0088979629035646473) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz015.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz015.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz015.txt + +[txz016] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz016.txt +centroid = (0.61027182625233733, -1.7907933336795299) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz016.txt +description = Deaf Smith, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz016.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz016.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz016.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz016.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz016.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz016.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz016.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz016.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz016.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz016.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz016.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz016.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz016.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz016.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz016.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('khrx', 0.0043476547027109479) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz016.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz016.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz016.txt + +[txz017] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz017.txt +centroid = (0.61027008092308521, -1.778438147904662) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz017.txt +description = Randall, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz017.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz017.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz017.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz017.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz017.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz017.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz017.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz017.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz017.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz017.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz017.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz017.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz017.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz017.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz017.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kama', 0.0050781714507625161) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz017.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz017.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz017.txt + +[txz018] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz018.txt +centroid = (0.61025262763056531, -1.7690203512609006) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz018.txt +description = Armstrong, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz018.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz018.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz018.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz018.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz018.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz018.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz018.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz018.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz018.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz018.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz018.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz018.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz018.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz018.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz018.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kama', 0.006755184090069033) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz018.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz018.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz018.txt + +[txz019] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz019.txt +centroid = (0.61026135427682537, -1.7595362321055632) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz019.txt +description = Donley, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz019.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz019.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz019.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz019.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz019.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz019.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz019.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz019.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz019.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz019.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz019.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz019.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz019.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz019.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz019.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kppa', 0.011592896129021093) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz019.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz019.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz019.txt + +[txz020] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz020.txt +centroid = (0.61025262763056531, -1.7500433863039662) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz020.txt +description = Collingsworth, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz020.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz020.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz020.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz020.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz020.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz020.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz020.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz020.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz020.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz020.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz020.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz020.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz020.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz020.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz020.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kcds', 0.0092795315601154216) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz020.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz020.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz020.txt + +[txz021] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz021.txt +centroid = (0.60266393604289392, -1.7939279450161116) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz021.txt +description = Parmer, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz021.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz021.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz021.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz021.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz021.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz021.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz021.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz021.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz021.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz021.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz021.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz021.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz021.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz021.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz021.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kcvn', 0.0046191042212993284) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz021.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz021.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz021.txt + +[txz022] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz022.txt +centroid = (0.60266219071364202, -1.7848033636866854) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz022.txt +description = Castro, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz022.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz022.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz022.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz022.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz022.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz022.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz022.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz022.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz022.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz022.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz022.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz022.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz022.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz022.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz022.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('khrx', 0.0058423826162637381) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz022.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz022.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz022.txt + +[txz023] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz023.txt +centroid = (0.60266917203064996, -1.7756107145164313) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz023.txt +description = Swisher, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz023.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz023.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz023.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz023.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz023.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz023.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz023.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz023.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz023.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz023.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz023.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz023.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz023.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz023.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz023.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kpvw', 0.0063292898276667347) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz023.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz023.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz023.txt + +[txz024] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz024.txt +centroid = (0.60266742670139795, -1.766423301333933) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz024.txt +description = Briscoe, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz024.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz024.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz024.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz024.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz024.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz024.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz024.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz024.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz024.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz024.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz024.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz024.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz024.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz024.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz024.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kpvw', 0.0096792146464478104) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz024.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz024.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz024.txt + +[txz025] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz025.txt +centroid = (0.60267615334765789, -1.757216689529663) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz025.txt +description = Hall, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz025.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz025.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz025.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz025.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz025.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz025.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz025.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz025.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz025.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz025.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz025.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz025.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz025.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz025.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz025.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kcds', 0.0059700753213328978) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz025.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz025.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz025.txt + +[txz026] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz026.txt +centroid = (0.60264822807962604, -1.7489525555214698) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz026.txt +description = Childress, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz026.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz026.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz026.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz026.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz026.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz026.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz026.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz026.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz026.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz026.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz026.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz026.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz026.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz026.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz026.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kcds', 0.0019966788814865053) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz026.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz026.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz026.txt + +[txz027] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz027.txt +centroid = (0.5946074962156882, -1.7947185791672653) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz027.txt +description = Bailey, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz027.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz027.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz027.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz027.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz027.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz027.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz027.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz027.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz027.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz027.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz027.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz027.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz027.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz027.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz027.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kcvn', 0.00734327026541299) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz027.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz027.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz027.txt + +[txz028] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz028.txt +centroid = (0.59460924154494021, -1.7863741600134802) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz028.txt +description = Lamb, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz028.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz028.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz028.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz028.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz028.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz028.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz028.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz028.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz028.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz028.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz028.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz028.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz028.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz028.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz028.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kpvw', 0.0093305945263866003) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz028.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz028.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz028.txt + +[txz029] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz029.txt +centroid = (0.59464240280072811, -1.7772146720990138) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz029.txt +description = Hale, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz029.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz029.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz029.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz029.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz029.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz029.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz029.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz029.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz029.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz029.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz029.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz029.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz029.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz029.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz029.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kpvw', 0.002326044087306823) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz029.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz029.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz029.txt + +[txz030] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz030.txt +centroid = (0.594675564056516, -1.7680743828063197) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz030.txt +description = Floyd, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz030.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz030.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz030.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz030.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz030.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz030.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz030.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz030.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz030.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz030.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz030.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz030.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz030.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz030.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz030.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kpvw', 0.0062107648911002193) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz030.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz030.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz030.txt + +[txz031] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz031.txt +centroid = (0.59470523465379987, -1.7589393295013813) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz031.txt +description = Motley, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz031.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz031.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz031.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz031.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz031.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz031.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz031.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz031.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz031.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz031.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz031.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz031.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz031.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz031.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz031.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kcds', 0.0095186725980968955) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz031.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz031.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz031.txt + +[txz032] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz032.txt +centroid = (0.59476632117761963, -1.7501952299488899) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz032.txt +description = Cottle, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz032.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz032.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz032.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz032.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz032.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz032.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz032.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz032.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz032.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz032.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz032.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz032.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz032.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz032.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz032.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kcds', 0.0062090623282843463) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz032.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz032.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz032.txt + +[txz033] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz033.txt +centroid = (0.58650218716942659, -1.7946958898869894) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz033.txt +description = Cochran, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz033.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz033.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz033.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz033.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz033.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz033.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz033.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz033.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz033.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz033.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz033.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz033.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz033.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz033.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz033.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kcvn', 0.014934959739802654) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz033.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz033.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz033.txt + +[txz034] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz034.txt +centroid = (0.58656327369324623, -1.7862258070270607) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz034.txt +description = Hockley, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz034.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz034.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz034.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz034.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz034.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz034.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz034.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz034.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz034.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz034.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz034.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz034.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz034.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz034.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz034.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('klbb', 0.0077201637607403296) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz034.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz034.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz034.txt + +[txz035] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz035.txt +centroid = (0.5866086522537981, -1.7771029710268862) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz035.txt +description = Lubbock, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz035.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz035.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz035.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz035.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz035.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz035.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz035.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz035.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz035.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz035.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz035.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz035.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz035.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz035.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz035.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('klbb', 0.00098710208314901795) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz035.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz035.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz035.txt + +[txz036] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz036.txt +centroid = (0.58668544674088596, -1.7680185322702557) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz036.txt +description = Crosby, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz036.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz036.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz036.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz036.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz036.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz036.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz036.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz036.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz036.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz036.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz036.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz036.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz036.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz036.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz036.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('klbb', 0.0075621460854898371) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz036.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz036.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz036.txt + +[txz037] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz037.txt +centroid = (0.58672035332592576, -1.7589236215381132) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz037.txt +description = Dickens, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz037.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz037.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz037.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz037.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz037.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz037.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz037.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz037.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz037.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz037.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz037.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz037.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz037.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz037.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz037.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kcds', 0.01595558671775521) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz037.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz037.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz037.txt + +[txz038] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz038.txt +centroid = (0.58671860799667386, -1.7497938042209309) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz038.txt +description = King, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz038.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz038.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz038.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz038.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz038.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz038.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz038.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz038.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz038.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz038.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz038.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz038.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz038.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz038.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz038.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kcds', 0.014261993003231601) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz038.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz038.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz038.txt + +[txz039] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz039.txt +centroid = (0.57897807276407898, -1.7946836725822251) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz039.txt +description = Yoakum, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz039.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz039.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz039.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz039.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz039.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz039.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz039.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz039.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz039.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz039.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz039.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz039.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz039.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz039.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz039.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kgnc', 0.0090585584071483823) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz039.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz039.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz039.txt + +[txz040] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz040.txt +centroid = (0.57899203539809485, -1.7860861806869011) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz040.txt +description = Terry, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz040.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz040.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz040.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz040.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz040.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz040.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz040.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz040.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz040.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz040.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz040.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz040.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz040.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz040.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz040.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kgnc', 0.0098647242876779388) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz040.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz040.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz040.txt + +[txz041] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz041.txt +centroid = (0.57904439527565477, -1.7770261765397988) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz041.txt +description = Lynn, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz041.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz041.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz041.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz041.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz041.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz041.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz041.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz041.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz041.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz041.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz041.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz041.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz041.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz041.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz041.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('klbb', 0.0085497902139851454) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz041.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz041.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz041.txt + +[txz042] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz042.txt +centroid = (0.57909850048246658, -1.767990607002224) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz042.txt +description = Garza, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz042.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz042.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz042.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz042.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz042.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz042.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz042.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz042.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz042.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz042.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz042.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz042.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz042.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz042.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz042.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('ksnk', 0.0099055524691258369) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz042.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz042.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz042.txt + +[txz043] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz043.txt +centroid = (0.57912468042124643, -1.7589009322578375) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz043.txt +description = Kent, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz043.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz043.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz043.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz043.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz043.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz043.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz043.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz043.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz043.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz043.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz043.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz043.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz043.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz043.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz043.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('ksnk', 0.0088859597035085489) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz043.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz043.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz043.txt + +[txz044] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz044.txt +centroid = (0.5790845378484506, -1.749750170989631) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz044.txt +description = Stonewall, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz044.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz044.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz044.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz044.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz044.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz044.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz044.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz044.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz044.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz044.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz044.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz044.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz044.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz044.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz044.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('ksww', 0.012811651654026354) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz044.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz044.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz044.txt + +[txz045] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz045.txt +centroid = (0.57143301440770744, -1.7913221684428842) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz045.txt +description = Gaines, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz045.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz045.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz045.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz045.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz045.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz045.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz045.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz045.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz045.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz045.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz045.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz045.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz045.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz045.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz045.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kgnc', 0.0011697571777357473) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz045.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz045.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz045.txt + +[txz046] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz046.txt +centroid = (0.57146443033424332, -1.779323029835423) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz046.txt +description = Dawson, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz046.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz046.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz046.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz046.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz046.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz046.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz046.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz046.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz046.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz046.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz046.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz046.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz046.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz046.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz046.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('ke11', 0.011173324102197315) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz046.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz046.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz046.txt + +[txz047] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz047.txt +centroid = (0.57148537428526724, -1.7703171308951324) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz047.txt +description = Borden, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz047.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz047.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz047.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz047.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz047.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz047.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz047.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz047.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz047.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz047.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz047.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz047.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz047.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz047.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz047.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('ksnk', 0.0071236850679026438) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz047.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz047.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz047.txt + +[txz048] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz048.txt +centroid = (0.57153075284581911, -1.7613234492596055) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz048.txt +description = Scurry, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz048.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz048.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz048.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz048.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz048.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz048.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz048.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz048.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz048.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz048.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz048.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz048.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz048.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz048.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz048.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('ksnk', 0.0010497893725945576) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz048.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz048.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz048.txt + +[txz049] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz049.txt +centroid = (0.57146966632199936, -1.7523489662458507) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz049.txt +description = Fisher, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz049.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz049.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz049.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz049.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz049.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz049.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz049.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz049.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz049.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz049.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz049.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz049.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz049.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz049.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz049.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('ksww', 0.0049014549273219306) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz049.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz049.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz049.txt + +[txz050] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz050.txt +centroid = (0.56382861485676816, -1.791367547003436) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz050.txt +description = Andrews, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz050.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz050.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz050.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz050.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz050.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz050.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz050.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz050.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz050.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz050.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz050.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz050.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz050.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz050.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz050.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('ke11', 0.0016607268375573253) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz050.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz050.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz050.txt + +[txz051] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz051.txt +centroid = (0.56384781347854007, -1.779384116359243) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz051.txt +description = Martin, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz051.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz051.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz051.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz051.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz051.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz051.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz051.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz051.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz051.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz051.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz051.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz051.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz051.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz051.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz051.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kmdd', 0.0052005670315556892) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz051.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz051.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz051.txt + +[txz052] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz052.txt +centroid = (0.56384955880779208, -1.7703834534067082) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz052.txt +description = Howard, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz052.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz052.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz052.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz052.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz052.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz052.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz052.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz052.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz052.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz052.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz052.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz052.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz052.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz052.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz052.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kbpg', 0.0022070127310512624) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz052.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz052.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz052.txt + +[txz053] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz053.txt +centroid = (0.56384955880779208, -1.7614072250637014) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz053.txt +description = Mitchell, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz053.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz053.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz053.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz053.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz053.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz053.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz053.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz053.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz053.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz053.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz053.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz053.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz053.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz053.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz053.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('ksnk', 0.0067702948186423584) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz053.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz053.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz053.txt + +[txz054] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz054.txt +centroid = (0.5638024349179882, -1.7524170340866785) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz054.txt +description = Nolan, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz054.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz054.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz054.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz054.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz054.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz054.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz054.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz054.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz054.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz054.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz054.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz054.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz054.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz054.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz054.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('ksww', 0.0029924624621443432) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz054.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz054.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz054.txt + +[txz057] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz057.txt +centroid = (0.54617460947284557, -1.8266214525644695) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz057.txt +description = Van Horn and Highway 54 Corridor, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz057.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz057.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz057.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz057.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz057.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz057.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz057.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz057.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz057.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz057.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz057.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz057.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz057.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz057.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz057.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kgdp', 0.0097139178106607545) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz057.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz057.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz057.txt + +[txz058] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz058.txt +centroid = (0.54872802616851324, -1.8124720683185513) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz058.txt +description = Reeves County and Upper Trans Pecos, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz058.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz058.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz058.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz058.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz058.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz058.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz058.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz058.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz058.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz058.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz058.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz058.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz058.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz058.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz058.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kpeq', 0.005111275676233552) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz058.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz058.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz058.txt + +[txz059] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz059.txt +centroid = (0.55587340412617803, -1.8078120392157264) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz059.txt +description = Loving, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz059.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz059.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz059.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz059.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz059.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz059.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz059.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz059.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz059.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz059.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz059.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz059.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz059.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz059.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz059.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kink', 0.005751759515906116) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz059.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz059.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz059.txt + +[txz060] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz060.txt +centroid = (0.55588736676019401, -1.7985303782536206) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz060.txt +description = Winkler, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz060.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz060.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz060.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz060.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz060.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz060.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz060.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz060.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz060.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz060.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz060.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz060.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz060.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz060.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz060.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kink', 0.0025342138932010479) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz060.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz060.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz060.txt + +[txz061] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz061.txt +centroid = (0.55622246997657687, -1.7897094842140413) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz061.txt +description = Ector, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz061.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz061.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz061.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz061.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz061.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz061.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz061.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz061.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz061.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz061.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz061.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz061.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz061.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz061.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz061.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kodo', 0.0022724706552560824) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz061.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz061.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz061.txt + +[txz062] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz062.txt +centroid = (0.55622246997657687, -1.7807873610778464) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz062.txt +description = Midland, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz062.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz062.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz062.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz062.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz062.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz062.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz062.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz062.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz062.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz062.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz062.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz062.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz062.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz062.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz062.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kmaf', 0.0027347715646821808) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz062.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz062.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz062.txt + +[txz063] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz063.txt +centroid = (0.5562277059643328, -1.7718722192586591) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz063.txt +description = Glasscock, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz063.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz063.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz063.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz063.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz063.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz063.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz063.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz063.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz063.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz063.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz063.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz063.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz063.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz063.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz063.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kbpg', 0.005768637348379315) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz063.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz063.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz063.txt + +[txz064] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz064.txt +centroid = (0.55550164899550325, -1.76365520914027) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz064.txt +description = Sterling, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz064.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz064.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz064.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz064.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz064.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz064.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz064.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz064.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz064.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz064.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz064.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz064.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz064.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz064.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz064.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kbpg', 0.0094800775158467368) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz064.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz064.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz064.txt + +[txz065] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz065.txt +centroid = (0.55655931852221174, -1.7545777517006476) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz065.txt +description = Coke, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz065.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz065.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz065.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz065.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz065.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz065.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz065.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz065.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz065.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz065.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz065.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz065.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz065.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz065.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz065.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('ksjt', 0.0094090976968191457) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz065.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz065.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz065.txt + +[txz066] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz066.txt +centroid = (0.55555749953156697, -1.7449138636323549) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz066.txt +description = Runnels, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz066.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz066.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz066.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz066.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz066.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz066.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz066.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz066.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz066.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz066.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz066.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz066.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz066.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz066.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz066.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kcom', 0.0085451321369263231) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz066.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz066.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz066.txt + +[txz067] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz067.txt +centroid = (0.54994452065715327, -1.7994763467082018) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz067.txt +description = Ward, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz067.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz067.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz067.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz067.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz067.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz067.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz067.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz067.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz067.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz067.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz067.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz067.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz067.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz067.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz067.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kink', 0.0049944520259822727) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz067.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz067.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz067.txt + +[txz068] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz068.txt +centroid = (0.54853080396303788, -1.7892330093282469) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz068.txt +description = Crane, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz068.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz068.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz068.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz068.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz068.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz068.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz068.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz068.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz068.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz068.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz068.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz068.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz068.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz068.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz068.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kodo', 0.0086911264900182781) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz068.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz068.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz068.txt + +[txz069] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz069.txt +centroid = (0.54748884239959728, -1.7809863286125738) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz069.txt +description = Upton, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz069.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz069.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz069.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz069.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz069.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz069.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz069.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz069.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz069.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz069.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz069.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz069.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz069.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz069.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz069.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kmaf', 0.010125306108755802) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz069.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz069.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz069.txt + +[txz070] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz070.txt +centroid = (0.54744346383904541, -1.7719106165022032) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz070.txt +description = Reagan, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz070.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz070.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz070.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz070.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz070.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz070.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz070.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz070.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz070.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz070.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz070.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz070.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz070.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz070.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz070.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('koza', 0.011948734013188703) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz070.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz070.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz070.txt + +[txz071] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz071.txt +centroid = (0.54635612371505293, -1.7624753665659219) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz071.txt +description = Irion, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz071.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz071.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz071.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz071.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz071.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz071.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz071.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz071.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz071.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz071.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz071.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz071.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz071.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz071.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz071.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('ksjt', 0.0072368912505903476) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz071.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz071.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz071.txt + +[txz072] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz072.txt +centroid = (0.54811017961330721, -1.7533944184677954) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz072.txt +description = Tom Green, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz072.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz072.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz072.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz072.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz072.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz072.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz072.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz072.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz072.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz072.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz072.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz072.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz072.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz072.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz072.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('ksjt', 0.0011047207781896913) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz072.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz072.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz072.txt + +[txz073] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz073.txt +centroid = (0.54675056812600364, -1.7429556042116174) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz073.txt +description = Concho, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz073.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz073.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz073.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz073.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz073.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz073.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz073.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz073.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz073.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz073.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz073.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz073.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz073.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz073.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz073.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kbbd', 0.0084590746009357912) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz073.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz073.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz073.txt + +[txz074] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz074.txt +centroid = (0.53593650808064675, -1.813229541213917) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz074.txt +description = Davis/Apache Mountains Area, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz074.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz074.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz074.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz074.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz074.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz074.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz074.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz074.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz074.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz074.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz074.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz074.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz074.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz074.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz074.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kmrf', 0.0062341747478544271) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz074.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz074.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz074.txt + +[txz075] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz075.txt +centroid = (0.53723154238562654, -1.7928650395016472) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz075.txt +description = Pecos, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz075.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz075.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz075.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz075.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz075.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz075.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz075.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz075.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz075.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz075.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz075.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz075.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz075.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz075.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz075.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kfst', 0.0037372896738962205) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz075.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz075.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz075.txt + +[txz076] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz076.txt +centroid = (0.5362175060902179, -1.7699750463617414) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz076.txt +description = Crockett, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz076.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz076.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz076.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz076.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz076.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz076.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz076.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz076.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz076.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz076.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz076.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz076.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz076.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz076.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz076.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('koza', 0.0031958016346981064) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz076.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz076.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz076.txt + +[txz077] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz077.txt +centroid = (0.53926310563494795, -1.754727850016319) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz077.txt +description = Schleicher, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz077.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz077.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz077.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz077.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz077.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz077.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz077.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz077.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz077.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz077.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz077.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz077.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz077.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz077.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz077.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('ksoa', 0.0056882903773201347) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz077.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz077.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz077.txt + +[txz078] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz078.txt +centroid = (0.5322957512609866, -1.754722614028563) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz078.txt +description = Sutton, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz078.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz078.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz078.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz078.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz078.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz078.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz078.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz078.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz078.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz078.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz078.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz078.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz078.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz078.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz078.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('ksoa', 0.0022494206720345637) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz078.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz078.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz078.txt + +[txz079] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz079.txt +centroid = (0.52077832352707598, -1.8225269101392909) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz079.txt +description = Presidio Valley, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz079.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz079.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz079.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz079.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz079.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz079.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz079.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz079.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz079.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz079.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz079.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz079.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz079.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz079.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz079.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kmrf', 0.011075603539993295) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz079.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz079.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz079.txt + +[txz080] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz080.txt +centroid = (0.5264436622790496, -1.8194533853265287) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz080.txt +description = Marfa Plateau, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz080.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz080.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz080.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz080.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz080.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz080.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz080.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz080.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz080.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz080.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz080.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz080.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz080.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz080.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz080.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kmrf', 0.0049690465559214568) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz080.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz080.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz080.txt + +[txz081] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz081.txt +centroid = (0.51886893332539419, -1.8015079099575231) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz081.txt +description = Big Bend Area, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz081.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz081.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz081.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz081.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz081.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz081.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz081.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz081.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz081.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz081.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz081.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz081.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz081.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz081.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz081.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('ke38', 0.013416330852953353) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz081.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz081.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz081.txt + +[txz082] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz082.txt +centroid = (0.52752576641528615, -1.7815710139119918) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz082.txt +description = Terrell, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz082.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz082.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz082.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz082.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz082.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz082.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz082.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz082.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz082.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz082.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz082.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz082.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz082.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz082.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz082.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('k6r6', 0.0037155066458842436) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz082.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz082.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz082.txt + +[txz083] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz083.txt +centroid = (0.59847863649661159, -1.7408908797065079) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz083.txt +description = Hardeman, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz083.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz083.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz083.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz083.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz083.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz083.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz083.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz083.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz083.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz083.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz083.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz083.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz083.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz083.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz083.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kf05', 0.0067608912741824951) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz083.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz083.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz083.txt + +[txz084] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz084.txt +centroid = (0.59296863204806549, -1.7414546210549022) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz084.txt +description = Foard, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz084.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz084.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz084.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz084.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz084.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz084.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz084.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz084.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz084.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz084.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz084.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz084.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz084.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz084.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz084.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kf05', 0.0083807166666176464) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz084.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz084.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz084.txt + +[txz085] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz085.txt +centroid = (0.59482042638443144, -1.7320822029716927) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz085.txt +description = Wilbarger, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz085.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz085.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz085.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz085.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz085.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz085.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz085.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz085.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz085.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz085.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz085.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz085.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz085.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz085.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz085.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kf05', 0.002602037595949752) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz085.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz085.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz085.txt + +[txz086] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz086.txt +centroid = (0.59320250616783277, -1.722695822254467) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz086.txt +description = Wichita, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz086.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz086.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz086.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz086.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz086.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz086.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz086.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz086.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz086.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz086.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz086.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz086.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz086.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz086.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz086.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('ksps', 0.0029418125245060443) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz086.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz086.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz086.txt + +[txz087] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz087.txt +centroid = (0.58653709375446639, -1.7408158305486723) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz087.txt +description = Knox, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz087.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz087.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz087.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz087.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz087.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz087.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz087.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz087.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz087.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz087.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz087.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz087.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz087.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz087.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz087.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kf05', 0.01268273896182659) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz087.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz087.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz087.txt + +[txz088] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz088.txt +centroid = (0.58671860799667386, -1.7316022374273941) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz088.txt +description = Baylor, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz088.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz088.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz088.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz088.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz088.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz088.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz088.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz088.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz088.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz088.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz088.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz088.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz088.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz088.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz088.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kf05', 0.01067841102113141) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz088.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz088.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz088.txt + +[txz089] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz089.txt +centroid = (0.58669766404564982, -1.7224252962204081) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz089.txt +description = Archer, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz089.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz089.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz089.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz089.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz089.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz089.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz089.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz089.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz089.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz089.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz089.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz089.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz089.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz089.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz089.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('ksps', 0.006976453820552537) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz089.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz089.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz089.txt + +[txz090] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz090.txt +centroid = (0.58966646910329223, -1.714059933115599) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz090.txt +description = Clay, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz090.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz090.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz090.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz090.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz090.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz090.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz090.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz090.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz090.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz090.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz090.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz090.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz090.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz090.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz090.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('ksps', 0.0054575581532904406) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz090.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz090.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz090.txt + +[txz091] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz091.txt +centroid = (0.58775184291385441, -1.7056160301944505) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz091.txt +description = Montague, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz091.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz091.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz091.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz091.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz091.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz091.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz091.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz091.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz091.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz091.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz091.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz091.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz091.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz091.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz091.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('k0f2', 0.0016986385114513144) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz091.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz091.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz091.txt + +[txz092] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz092.txt +centroid = (0.58711654306612848, -1.6966799444242395) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz092.txt +description = Cooke, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz092.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz092.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz092.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz092.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz092.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz092.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz092.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz092.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz092.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz092.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz092.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz092.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz092.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz092.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz092.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kgle', 0.00031025646977553419) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz092.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz092.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz092.txt + +[txz093] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz093.txt +centroid = (0.5868983769096292, -1.68734243292607) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz093.txt +description = Grayson, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz093.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz093.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz093.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz093.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz093.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz093.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz093.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz093.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz093.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz093.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz093.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz093.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz093.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz093.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz093.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kgyi', 0.0015764883887896264) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz093.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz093.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz093.txt + +[txz094] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz094.txt +centroid = (0.58632416358572303, -1.6773766028971824) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz094.txt +description = Fannin, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz094.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz094.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz094.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz094.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz094.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz094.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz094.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz094.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz094.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz094.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz094.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz094.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz094.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz094.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz094.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kdua', 0.0073756323010924956) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz094.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz094.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz094.txt + +[txz095] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz095.txt +centroid = (0.58760174459818293, -1.6680303647527528) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz095.txt +description = Lamar, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz095.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz095.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz095.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz095.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz095.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz095.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz095.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz095.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz095.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz095.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz095.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz095.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz095.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz095.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz095.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kprx', 0.0018555104410756609) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz095.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz095.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz095.txt + +[txz096] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz096.txt +centroid = (0.58679191182525758, -1.6589424353376181) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz096.txt +description = Red River, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz096.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz096.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz096.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz096.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz096.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz096.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz096.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz096.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz096.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz096.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz096.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz096.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz096.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz096.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz096.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('klbr', 0.00051781963806794872) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz096.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz096.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz096.txt + +[txz097] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz097.txt +centroid = (0.58373234964651144, -1.6479904942813537) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz097.txt +description = Bowie, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz097.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz097.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz097.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz097.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz097.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz097.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz097.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz097.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz097.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz097.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz097.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz097.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz097.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz097.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz097.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('ktxk', 0.0064018378385424487) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz097.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz097.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz097.txt + +[txz098] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz098.txt +centroid = (0.5790688298851826, -1.7406220990017007) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz098.txt +description = Haskell, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz098.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz098.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz098.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz098.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz098.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz098.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz098.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz098.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz098.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz098.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz098.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz098.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz098.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz098.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz098.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kabi', 0.013309112517004312) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz098.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz098.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz098.txt + +[txz099] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz099.txt +centroid = (0.57905661258041874, -1.7315830388056221) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz099.txt +description = Throckmorton, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz099.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz099.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz099.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz099.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz099.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz099.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz099.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz099.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz099.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz099.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz099.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz099.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz099.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz099.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz099.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kbkd', 0.0092765449498062418) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz099.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz099.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz099.txt + +[txz100] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz100.txt +centroid = (0.57904264994640264, -1.7224270415496599) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz100.txt +description = Young, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz100.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz100.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz100.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz100.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz100.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz100.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz100.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz100.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz100.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz100.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz100.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz100.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz100.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz100.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz100.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('krph', 0.0022596017344431812) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz100.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz100.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz100.txt + +[txz101] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz101.txt +centroid = (0.58003399696153546, -1.7134333599141331) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz101.txt +description = Jack, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz101.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz101.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz101.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz101.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz101.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz101.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz101.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz101.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz101.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz101.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz101.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz101.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz101.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz101.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz101.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('krph', 0.0059930392839080571) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz101.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz101.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz101.txt + +[txz102] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz102.txt +centroid = (0.57972681901318446, -1.7043908090595505) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz102.txt +description = Wise, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz102.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz102.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz102.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz102.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz102.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz102.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz102.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz102.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz102.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz102.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz102.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz102.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz102.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz102.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz102.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('klud', 0.0012706977991740788) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz102.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz102.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz102.txt + +[txz103] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz103.txt +centroid = (0.57952436081995318, -1.695013154988585) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz103.txt +description = Denton, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz103.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz103.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz103.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz103.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz103.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz103.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz103.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz103.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz103.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz103.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz103.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz103.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz103.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz103.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz103.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kdto', 0.0012129899894031181) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz103.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz103.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz103.txt + +[txz104] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz104.txt +centroid = (0.5792363814933742, -1.685506346552972) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz104.txt +description = Collin, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz104.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz104.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz104.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz104.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz104.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz104.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz104.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz104.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz104.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz104.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz104.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz104.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz104.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz104.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz104.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('ktki', 0.00017771189647985619) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz104.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz104.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz104.txt + +[txz105] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz105.txt +centroid = (0.57811588011359383, -1.6770065930957596) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz105.txt +description = Hunt, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz105.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz105.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz105.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz105.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz105.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz105.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz105.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz105.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz105.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz105.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz105.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz105.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz105.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz105.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz105.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kgvt', 0.0010307362819613538) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz105.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz105.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz105.txt + +[txz106] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz106.txt +centroid = (0.58270086005858279, -1.6697966379557712) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz106.txt +description = Delta, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz106.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz106.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz106.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz106.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz106.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz106.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz106.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz106.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz106.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz106.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz106.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz106.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz106.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz106.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz106.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kslr', 0.004000636104270836) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz106.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz106.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz106.txt + +[txz107] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz107.txt +centroid = (0.57856792038986038, -1.6679064463758611) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz107.txt +description = Hopkins, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz107.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz107.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz107.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz107.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz107.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz107.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz107.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz107.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz107.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz107.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz107.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz107.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz107.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz107.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz107.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kslr', 0.00085874687947826807) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz107.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz107.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz107.txt + +[txz108] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz108.txt +centroid = (0.57902345132463084, -1.6618745884809687) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz108.txt +description = Franklin, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz108.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz108.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz108.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz108.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz108.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz108.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz108.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz108.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz108.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz108.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz108.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz108.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz108.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz108.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz108.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kosa', 0.0040093072160288278) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz108.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz108.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz108.txt + +[txz109] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz109.txt +centroid = (0.57973903631794843, -1.657464141461179) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz109.txt +description = Titus, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz109.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz109.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz109.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz109.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz109.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz109.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz109.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz109.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz109.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz109.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz109.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz109.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz109.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz109.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz109.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kosa', 0.0021184090016544612) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz109.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz109.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz109.txt + +[txz110] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz110.txt +centroid = (0.57549090491859423, -1.6576875436054341) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz110.txt +description = Camp, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz110.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz110.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz110.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz110.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz110.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz110.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz110.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz110.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz110.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz110.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz110.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz110.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz110.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz110.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz110.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kosa', 0.0021453187225460232) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz110.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz110.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz110.txt + +[txz111] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz111.txt +centroid = (0.57793960185914239, -1.6533957789747804) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz111.txt +description = Morris, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz111.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz111.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz111.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz111.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz111.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz111.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz111.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz111.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz111.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz111.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz111.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz111.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz111.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz111.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz111.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kosa', 0.0033600286438742874) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz111.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz111.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz111.txt + +[txz112] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz112.txt +centroid = (0.57731128332842441, -1.6466064481845222) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz112.txt +description = Cass, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz112.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz112.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz112.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz112.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz112.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz112.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz112.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz112.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz112.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz112.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz112.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz112.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz112.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz112.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz112.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('ktxk', 0.0083612042998872909) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz112.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz112.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz112.txt + +[txz113] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz113.txt +centroid = (0.57141905177369146, -1.7432121676116603) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz113.txt +description = Jones, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz113.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz113.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz113.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz113.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz113.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz113.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz113.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz113.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz113.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz113.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz113.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz113.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz113.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz113.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz113.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kdys', 0.0055924683708627188) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz113.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz113.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz113.txt + +[txz114] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz114.txt +centroid = (0.57135098393286365, -1.7340561703556983) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz114.txt +description = Shackelford, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz114.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz114.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz114.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz114.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz114.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz114.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz114.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz114.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz114.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz114.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz114.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz114.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz114.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz114.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz114.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kabi', 0.0073830598485752005) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz114.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz114.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz114.txt + +[txz115] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz115.txt +centroid = (0.57134923860361175, -1.7250171101596197) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz115.txt +description = Stephens, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz115.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz115.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz115.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz115.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz115.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz115.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz115.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz115.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz115.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz115.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz115.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz115.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz115.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz115.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz115.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kbkd', 0.00083724805299981706) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz115.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz115.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz115.txt + +[txz116] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz116.txt +centroid = (0.57165118056420672, -1.7158855475131853) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz116.txt +description = Palo Pinto, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz116.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz116.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz116.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz116.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz116.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz116.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz116.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz116.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz116.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz116.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz116.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz116.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz116.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz116.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz116.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kmwl', 0.0036532147534208683) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz116.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz116.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz116.txt + +[txz117] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz117.txt +centroid = (0.57207704090169331, -1.707021020242306) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz117.txt +description = Parker, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz117.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz117.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz117.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz117.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz117.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz117.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz117.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz117.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz117.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz117.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz117.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz117.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz117.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz117.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz117.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kmwl', 0.0038395003552975163) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz117.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz117.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz117.txt + +[txz118] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz118.txt +centroid = (0.57195137719554978, -1.698063990521071) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz118.txt +description = Tarrant, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz118.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz118.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz118.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz118.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz118.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz118.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz118.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz118.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz118.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz118.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz118.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz118.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz118.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz118.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz118.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kftw', 0.001552274179846412) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz118.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz118.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz118.txt + +[txz119] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz119.txt +centroid = (0.57188505468397388, -1.6890929981658203) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz119.txt +description = Dallas, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz119.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz119.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz119.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz119.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz119.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz119.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz119.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz119.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz119.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz119.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz119.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz119.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz119.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz119.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz119.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kdal', 0.0017992829983279356) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz119.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz119.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz119.txt + +[txz120] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz120.txt +centroid = (0.57417492666259051, -1.6826317892749374) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz120.txt +description = Rockwall, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz120.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz120.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz120.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz120.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz120.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz120.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz120.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz120.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz120.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz120.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz120.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz120.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz120.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz120.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz120.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('khqz', 0.0031881871218999418) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz120.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz120.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz120.txt + +[txz121] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz121.txt +centroid = (0.56897035483314351, -1.6805408848310479) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz121.txt +description = Kaufman, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz121.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz121.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz121.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz121.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz121.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz121.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz121.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz121.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz121.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz121.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz121.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz121.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz121.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz121.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz121.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('ktrl', 0.0020668834155007478) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz121.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz121.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz121.txt + +[txz122] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz122.txt +centroid = (0.56834378163167742, -1.6726624685875457) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz122.txt +description = Van Zandt, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz122.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz122.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz122.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz122.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz122.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz122.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz122.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz122.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz122.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz122.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz122.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz122.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz122.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz122.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz122.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kjdd', 0.0058870133437445701) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz122.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz122.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz122.txt + +[txz123] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz123.txt +centroid = (0.5736949611182921, -1.6719102316799361) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz123.txt +description = Rains, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz123.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz123.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz123.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz123.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz123.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz123.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz123.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz123.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz123.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz123.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz123.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz123.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz123.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz123.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz123.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kjdd', 0.0048992294347661135) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz123.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz123.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz123.txt + +[txz124] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz124.txt +centroid = (0.57223062987586892, -1.6647316924664832) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz124.txt +description = Wood, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz124.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz124.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz124.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz124.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz124.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz124.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz124.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz124.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz124.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz124.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz124.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz124.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz124.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz124.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz124.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kjdd', 0.0018481281847092248) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz124.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz124.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz124.txt + +[txz125] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz125.txt +centroid = (0.57135621992061969, -1.6570400264529443) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz125.txt +description = Upshur, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz125.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz125.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz125.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz125.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz125.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz125.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz125.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz125.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz125.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz125.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz125.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz125.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz125.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz125.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz125.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kjxi', 0.00066147750645010077) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz125.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz125.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz125.txt + +[txz126] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz126.txt +centroid = (0.5724330880691002, -1.6468438129627936) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz126.txt +description = Marion, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz126.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz126.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz126.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz126.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz126.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz126.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz126.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz126.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz126.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz126.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz126.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz126.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz126.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz126.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz126.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kasl', 0.0049242738178239065) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz126.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz126.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz126.txt + +[txz127] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz127.txt +centroid = (0.5637675283329483, -1.7434111351463879) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz127.txt +description = Taylor, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz127.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz127.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz127.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz127.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz127.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz127.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz127.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz127.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz127.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz127.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz127.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz127.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz127.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz127.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz127.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kdys', 0.0021251921653324462) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz127.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz127.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz127.txt + +[txz128] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz128.txt +centroid = (0.56370120582137251, -1.7343947642305853) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz128.txt +description = Callahan, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz128.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz128.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz128.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz128.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz128.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz128.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz128.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz128.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz128.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz128.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz128.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz128.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz128.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz128.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz128.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kabi', 0.0050177199880042569) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz128.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz128.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz128.txt + +[txz129] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz129.txt +centroid = (0.56421433262145892, -1.7249490423187919) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz129.txt +description = Eastland, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz129.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz129.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz129.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz129.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz129.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz129.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz129.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz129.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz129.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz129.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz129.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz129.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz129.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz129.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz129.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kbkd', 0.0069097693818148077) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz129.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz129.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz129.txt + +[txz130] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz130.txt +centroid = (0.56262957366064803, -1.7142274847237906) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz130.txt +description = Erath, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz130.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz130.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz130.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz130.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz130.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz130.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz130.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz130.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz130.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz130.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz130.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz130.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz130.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz130.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz130.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('ksep', 0.00061595315146014838) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz130.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz130.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz130.txt + +[txz131] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz131.txt +centroid = (0.56600853109250915, -1.7074957497988485) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz131.txt +description = Hood, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz131.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz131.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz131.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz131.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz131.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz131.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz131.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz131.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz131.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz131.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz131.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz131.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz131.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz131.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz131.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kgdj', 0.00033916279630272862) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz131.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz131.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz131.txt + +[txz132] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz132.txt +centroid = (0.56238522756536879, -1.7064852041619438) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz132.txt +description = Somervell, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz132.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz132.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz132.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz132.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz132.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz132.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz132.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz132.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz132.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz132.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz132.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz132.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz132.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz132.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz132.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kgdj', 0.0039221495325304284) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz132.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz132.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz132.txt + +[txz133] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz133.txt +centroid = (0.56512015850324393, -1.6993625154845549) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz133.txt +description = Johnson, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz133.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz133.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz133.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz133.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz133.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz133.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz133.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz133.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz133.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz133.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz133.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz133.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz133.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz133.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz133.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kcpt', 0.0010867328516314398) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz133.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz133.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz133.txt + +[txz134] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz134.txt +centroid = (0.5645860877521337, -1.6893827228216514) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz134.txt +description = Ellis, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz134.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz134.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz134.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz134.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz134.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz134.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz134.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz134.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz134.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz134.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz134.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz134.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz134.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz134.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz134.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kjwy', 0.0025544518146670562) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz134.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz134.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz134.txt + +[txz135] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz135.txt +centroid = (0.56220720398166546, -1.6729644105481407) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz135.txt +description = Henderson, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz135.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz135.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz135.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz135.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz135.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz135.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz135.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz135.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz135.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz135.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz135.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz135.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz135.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz135.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz135.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kpsn', 0.0078613278460890092) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz135.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz135.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz135.txt + +[txz136] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz136.txt +centroid = (0.56505034533316423, -1.6627612157409817) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz136.txt +description = Smith, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz136.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz136.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz136.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz136.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz136.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz136.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz136.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz136.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz136.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz136.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz136.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz136.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz136.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz136.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz136.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('ktyr', 0.0019770581870732482) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz136.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz136.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz136.txt + +[txz137] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz137.txt +centroid = (0.5668881770355142, -1.6548723275219674) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz137.txt +description = Gregg, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz137.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz137.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz137.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz137.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz137.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz137.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz137.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz137.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz137.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz137.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz137.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz137.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz137.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz137.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz137.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kggg', 0.0022488749456451543) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz137.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz137.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz137.txt + +[txz138] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz138.txt +centroid = (0.56807500092687035, -1.6470899043873248) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz138.txt +description = Harrison, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz138.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz138.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz138.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz138.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz138.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz138.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz138.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz138.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz138.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz138.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz138.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz138.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz138.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz138.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz138.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kasl', 0.0011595894407562994) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz138.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz138.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz138.txt + +[txz139] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz139.txt +centroid = (0.55454695389466235, -1.7357927729614324) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz139.txt +description = Coleman, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz139.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz139.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz139.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz139.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz139.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz139.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz139.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz139.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz139.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz139.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz139.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz139.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz139.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz139.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz139.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kcom', 0.0014111429586773721) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz139.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz139.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz139.txt + +[txz140] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz140.txt +centroid = (0.55456615251643426, -1.7278724688158822) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz140.txt +description = Brown, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz140.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz140.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz140.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz140.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz140.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz140.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz140.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz140.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz140.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz140.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz140.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz140.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz140.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz140.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz140.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kbwd', 0.00086431068888255871) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz140.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz140.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz140.txt + +[txz141] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz141.txt +centroid = (0.55759778942714844, -1.7201650948390752) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz141.txt +description = Comanche, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz141.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz141.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz141.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz141.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz141.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz141.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz141.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz141.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz141.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz141.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz141.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz141.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz141.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz141.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz141.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kmkn', 0.0008291696102483378) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz141.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz141.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz141.txt + +[txz142] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz142.txt +centroid = (0.54969493857411811, -1.7208161026500692) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz142.txt +description = Mills, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz142.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz142.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz142.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz142.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz142.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz142.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz142.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz142.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz142.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz142.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz142.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz142.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz142.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz142.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz142.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kcwc', 0.0065569544202893635) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz142.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz142.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz142.txt + +[txz143] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz143.txt +centroid = (0.55335314868629815, -1.7123547464364006) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz143.txt +description = Hamilton, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz143.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz143.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz143.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz143.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz143.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz143.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz143.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz143.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz143.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz143.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz143.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz143.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz143.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz143.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz143.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kmnz', 0.00084235750185399083) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz143.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz143.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz143.txt + +[txz144] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz144.txt +centroid = (0.55676701270319917, -1.7040399978798997) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz144.txt +description = Bosque, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz144.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz144.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz144.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz144.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz144.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz144.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz144.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz144.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz144.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz144.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz144.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz144.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz144.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz144.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz144.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kact', 0.0081183144754972663) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz144.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz144.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz144.txt + +[txz145] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz145.txt +centroid = (0.55834304501775001, -1.6952801903641401) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz145.txt +description = Hill, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz145.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz145.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz145.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz145.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz145.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz145.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz145.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz145.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz145.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz145.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz145.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz145.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz145.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz145.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz145.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kinj', 0.0016984654499224653) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz145.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz145.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz145.txt + +[txz146] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz146.txt +centroid = (0.55932566538662276, -1.6837610173009774) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz146.txt +description = Navarro, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz146.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz146.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz146.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz146.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz146.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz146.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz146.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz146.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz146.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz146.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz146.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz146.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz146.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz146.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz146.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kcrs', 0.0014202041806797426) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz146.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz146.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz146.txt + +[txz147] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz147.txt +centroid = (0.55335489401555016, -1.6781166225000279) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz147.txt +description = Freestone, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz147.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz147.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz147.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz147.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz147.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz147.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz147.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz147.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz147.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz147.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz147.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz147.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz147.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz147.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz147.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kcrs', 0.006455595305016818) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz147.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz147.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz147.txt + +[txz148] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz148.txt +centroid = (0.55524857625396407, -1.6694510627638761) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz148.txt +description = Anderson, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz148.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz148.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz148.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz148.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz148.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz148.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz148.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz148.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz148.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz148.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz148.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz148.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz148.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz148.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz148.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kpsn', 0.00099180019383793478) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz148.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz148.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz148.txt + +[txz149] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz149.txt +centroid = (0.55566047395743468, -1.6609460733189076) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz149.txt +description = Cherokee, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz149.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz149.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz149.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz149.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz149.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz149.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz149.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz149.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz149.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz149.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz149.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz149.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz149.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz149.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz149.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kjso', 0.00095392484870881848) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz149.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz149.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz149.txt + +[txz150] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz150.txt +centroid = (0.56038508024258338, -1.6539054151163626) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz150.txt +description = Rusk, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz150.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz150.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz150.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz150.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz150.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz150.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz150.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz150.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz150.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz150.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz150.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz150.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz150.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz150.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz150.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('krfi', 0.0014203674495604757) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz150.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz150.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz150.txt + +[txz151] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz151.txt +centroid = (0.56133977534342416, -1.6459432230687645) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz151.txt +description = Panola, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz151.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz151.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz151.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz151.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz151.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz151.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz151.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz151.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz151.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz151.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz151.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz151.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz151.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz151.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz151.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kasl', 0.0062418436547758693) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz151.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz151.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz151.txt + +[txz152] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz152.txt +centroid = (0.55180329631052727, -1.6513572344084508) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz152.txt +description = Nacogdoches, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz152.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz152.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz152.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz152.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz152.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz152.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz152.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz152.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz152.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz152.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz152.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz152.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz152.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz152.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz152.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('koch', 0.0016041691637639251) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz152.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz152.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz152.txt + +[txz153] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz153.txt +centroid = (0.55488205711104521, -1.6431402242900615) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz153.txt +description = Shelby, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz153.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz153.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz153.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz153.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz153.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz153.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz153.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz153.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz153.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz153.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz153.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz153.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz153.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz153.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz153.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('koch', 0.0092409454399712543) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz153.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz153.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz153.txt + +[txz154] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz154.txt +centroid = (0.54452352800045889, -1.7339409786250666) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz154.txt +description = McCulloch, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz154.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz154.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz154.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz154.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz154.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz154.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz154.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz154.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz154.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz154.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz154.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz154.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz154.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz154.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz154.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kbbd', 0.00049284509196381189) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz154.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz154.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz154.txt + +[txz155] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz155.txt +centroid = (0.54376081911733742, -1.7246924789187486) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz155.txt +description = San Saba, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz155.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz155.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz155.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz155.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz155.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz155.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz155.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz155.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz155.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz155.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz155.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz155.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz155.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz155.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz155.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kaqo', 0.0068910949356362078) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz155.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz155.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz155.txt + +[txz156] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz156.txt +centroid = (0.54447640411065501, -1.7146358917687572) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz156.txt +description = Lampasas, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz156.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz156.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz156.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz156.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz156.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz156.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz156.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz156.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz156.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz156.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz156.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz156.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz156.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz156.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz156.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('klzz', 0.0017133330544318998) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz156.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz156.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz156.txt + +[txz157] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz157.txt +centroid = (0.54787456016428793, -1.7069180458164384) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz157.txt +description = Coryell, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz157.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz157.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz157.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz157.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz157.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz157.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz157.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz157.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz157.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz157.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz157.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz157.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz157.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz157.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz157.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kgop', 0.00052835278560843285) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz157.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz157.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz157.txt + +[txz158] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz158.txt +centroid = (0.54171005724624399, -1.7013155389175365) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz158.txt +description = Bell, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz158.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz158.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz158.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz158.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz158.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz158.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz158.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz158.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz158.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz158.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz158.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz158.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz158.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz158.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz158.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('ktpl', 0.0022820151959857681) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz158.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz158.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz158.txt + +[txz159] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz159.txt +centroid = (0.55069326690625886, -1.6964914488650242) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz159.txt +description = McLennan, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz159.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz159.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz159.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz159.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz159.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz159.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz159.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz159.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz159.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz159.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz159.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz159.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz159.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz159.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz159.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kact', 0.00085968349341580201) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz159.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz159.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz159.txt + +[txz160] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz160.txt +centroid = (0.54547298711354375, -1.6918488730547192) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz160.txt +description = Falls, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz160.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz160.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz160.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz160.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz160.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz160.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz160.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz160.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz160.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz160.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz160.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz160.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz160.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz160.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz160.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kt35', 0.0065478516525175265) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz160.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz160.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz160.txt + +[txz161] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz161.txt +centroid = (0.55057283918787125, -1.6856477182223835) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz161.txt +description = Limestone, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz161.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz161.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz161.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz161.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz161.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz161.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz161.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz161.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz161.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz161.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz161.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz161.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz161.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz161.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz161.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kcnw', 0.0074617571794612014) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz161.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz161.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz161.txt + +[txz162] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz162.txt +centroid = (0.54622696935040538, -1.6754410327567206) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz162.txt +description = Leon, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz162.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz162.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz162.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz162.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz162.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz162.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz162.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz162.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz162.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz162.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz162.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz162.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz162.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz162.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz162.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kpsn', 0.0094659307395951429) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz162.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz162.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz162.txt + +[txz163] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz163.txt +centroid = (0.54659872448108016, -1.6654402961427932) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz163.txt +description = Houston, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz163.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz163.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz163.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz163.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz163.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz163.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz163.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz163.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz163.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz163.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz163.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz163.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz163.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz163.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz163.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kdkr', 0.00034192918391444871) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz163.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz163.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz163.txt + +[txz164] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz164.txt +centroid = (0.54260192049401312, -1.6604277105310652) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz164.txt +description = Trinity, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz164.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz164.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz164.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz164.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz164.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz164.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz164.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz164.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz164.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz164.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz164.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz164.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz164.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz164.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz164.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kdkr', 0.0055242545195109041) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz164.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz164.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz164.txt + +[txz165] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz165.txt +centroid = (0.54549916705232371, -1.651287421238371) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz165.txt +description = Angelina, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz165.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz165.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz165.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz165.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz165.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz165.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz165.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz165.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz165.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz165.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz165.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz165.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz165.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz165.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz165.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('klfk', 0.0020959735709899065) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz165.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz165.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz165.txt + +[txz166] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz166.txt +centroid = (0.54793215602960388, -1.6435451406765242) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz166.txt +description = San Augustine, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz166.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz166.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz166.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz166.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz166.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz166.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz166.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz166.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz166.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz166.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz166.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz166.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz166.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz166.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz166.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kjas', 0.0090986881699474508) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz166.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz166.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz166.txt + +[txz167] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz167.txt +centroid = (0.54704203811108665, -1.6380229189232141) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz167.txt +description = Sabine, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz167.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz167.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz167.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz167.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz167.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz167.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz167.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz167.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz167.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz167.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz167.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz167.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz167.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz167.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz167.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kbkb', 0.0069432824966603355) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz167.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz167.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz167.txt + +[txz168] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz168.txt +centroid = (0.53912871528254447, -1.7421981313162518) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz168.txt +description = Menard, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz168.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz168.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz168.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz168.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz168.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz168.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz168.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz168.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz168.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz168.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz168.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz168.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz168.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz168.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz168.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kjct', 0.006562506160817794) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz168.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz168.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz168.txt + +[txz169] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz169.txt +centroid = (0.53209503839700723, -1.7409432395840678) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz169.txt +description = Kimble, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz169.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz169.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz169.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz169.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz169.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz169.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz169.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz169.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz169.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz169.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz169.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz169.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz169.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz169.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz169.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kjct', 0.00058713102320313891) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz169.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz169.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz169.txt + +[txz170] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz170.txt +centroid = (0.53612500363986215, -1.7318221489131456) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz170.txt +description = Mason, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz170.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz170.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz170.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz170.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz170.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz170.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz170.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz170.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz170.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz170.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz170.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz170.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz170.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz170.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz170.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kbbd', 0.0081860413754271319) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz170.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz170.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz170.txt + +[txz171] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz171.txt +centroid = (0.53591381880037081, -1.7223607190380841) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz171.txt +description = Llano, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz171.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz171.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz171.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz171.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz171.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz171.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz171.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz171.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz171.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz171.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz171.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz171.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz171.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz171.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz171.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kaqo', 0.0014011693793941156) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz171.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz171.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz171.txt + +[txz172] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz172.txt +centroid = (0.53735720609177018, -1.7136061475100806) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz172.txt +description = Burnet, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz172.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz172.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz172.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz172.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz172.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz172.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz172.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz172.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz172.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz172.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz172.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz172.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz172.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz172.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz172.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kbmq', 0.0012263257105939243) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz172.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz172.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz172.txt + +[txz173] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz173.txt +centroid = (0.53491025448047413, -1.7034553125804817) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz173.txt +description = Williamson, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz173.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz173.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz173.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz173.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz173.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz173.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz173.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz173.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz173.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz173.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz173.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz173.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz173.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz173.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz173.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kgtu', 0.0013832441845032528) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz173.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz173.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz173.txt + +[txz174] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz174.txt +centroid = (0.53732229950673027, -1.692566203377289) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz174.txt +description = Milam, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz174.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz174.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz174.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz174.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz174.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz174.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz174.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz174.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz174.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz174.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz174.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz174.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz174.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz174.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz174.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kt35', 0.0016264603181068958) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz174.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz174.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz174.txt + +[txz175] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz175.txt +centroid = (0.5415233070162806, -1.6844661303187833) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz175.txt +description = Robertson, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz175.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz175.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz175.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz175.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz175.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz175.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz175.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz175.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz175.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz175.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz175.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz175.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz175.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz175.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz175.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('klhb', 0.003167420711167442) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz175.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz175.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz175.txt + +[txz176] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz176.txt +centroid = (0.54045167485555612, -1.6742664261701283) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz176.txt +description = Madison, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz176.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz176.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz176.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz176.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz176.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz176.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz176.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz176.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz176.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz176.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz176.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz176.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz176.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz176.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz176.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kuts', 0.0063944201209434528) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz176.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz176.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz176.txt + +[txz177] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz177.txt +centroid = (0.53649675877053693, -1.6680495633745245) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz177.txt +description = Walker, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz177.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz177.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz177.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz177.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz177.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz177.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz177.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz177.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz177.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz177.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz177.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz177.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz177.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz177.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz177.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kuts', 0.00025445810507069563) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz177.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz177.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz177.txt + +[txz178] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz178.txt +centroid = (0.53371470394285803, -1.6609757439161916) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz178.txt +description = San Jacinto, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz178.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz178.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz178.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz178.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz178.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz178.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz178.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz178.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz178.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz178.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz178.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz178.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz178.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz178.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz178.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('k6r3', 0.0045011797432525213) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz178.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz178.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz178.txt + +[txz179] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz179.txt +centroid = (0.53743574590810994, -1.6550957296662228) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz179.txt +description = Polk, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz179.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz179.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz179.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz179.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz179.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz179.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz179.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz179.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz179.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz179.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz179.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz179.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz179.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz179.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz179.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('klfk', 0.0077813227720670893) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz179.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz179.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz179.txt + +[txz180] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz180.txt +centroid = (0.53705875478967913, -1.6471806615084283) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz180.txt +description = Tyler, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz180.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz180.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz180.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz180.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz180.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz180.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz180.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz180.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz180.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz180.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz180.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz180.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz180.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz180.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz180.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kbpt', 0.0049065773624474753) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz180.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz180.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz180.txt + +[txz183] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz183.txt +centroid = (0.52173127329866498, -1.7654302089895484) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz183.txt +description = Val Verde, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz183.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz183.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz183.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz183.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz183.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz183.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz183.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz183.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz183.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz183.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz183.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz183.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz183.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz183.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz183.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kdrt', 0.0098539966455106834) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz183.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz183.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz183.txt + +[txz184] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz184.txt +centroid = (0.52329508830845184, -1.7506472702251563) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz184.txt +description = Edwards, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz184.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz184.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz184.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz184.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz184.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz184.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz184.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz184.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz184.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz184.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz184.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz184.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz184.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz184.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz184.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kecu', 0.0020789653818360674) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz184.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz184.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz184.txt + +[txz185] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz185.txt +centroid = (0.52066313179644441, -1.7422243112550317) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz185.txt +description = Real, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz185.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz185.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz185.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz185.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz185.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz185.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz185.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz185.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz185.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz185.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz185.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz185.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz185.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz185.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz185.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kecu', 0.0056842804246237926) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz185.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz185.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz185.txt + +[txz186] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz186.txt +centroid = (0.52467215308827531, -1.7339863571856184) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz186.txt +description = Kerr, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz186.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz186.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz186.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz186.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz186.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz186.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz186.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz186.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz186.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz186.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz186.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz186.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz186.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz186.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz186.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kerv', 0.0043581365087777052) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz186.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz186.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz186.txt + +[txz187] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz187.txt +centroid = (0.51918658324925715, -1.7321747054220484) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz187.txt +description = Bandera, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz187.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz187.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz187.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz187.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz187.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz187.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz187.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz187.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz187.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz187.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz187.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz187.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz187.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz187.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz187.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kerv', 0.0045559952025128322) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz187.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz187.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz187.txt + +[txz188] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz188.txt +centroid = (0.52915066794889287, -1.7269404629953173) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz188.txt +description = Gillespie, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz188.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz188.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz188.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz188.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz188.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz188.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz188.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz188.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz188.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz188.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz188.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz188.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz188.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz188.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz188.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kt82', 0.0014143699792966316) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz188.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz188.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz188.txt + +[txz189] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz189.txt +centroid = (0.52263360852194607, -1.7228424299116347) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz189.txt +description = Kendall, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz189.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz189.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz189.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz189.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz189.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz189.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz189.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz189.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz189.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz189.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz189.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz189.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz189.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz189.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz189.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('k5c1', 0.0039353668097256746) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz189.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz189.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz189.txt + +[txz190] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz190.txt +centroid = (0.52824833272561178, -1.7174004933039162) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz190.txt +description = Blanco, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz190.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz190.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz190.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz190.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz190.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz190.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz190.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz190.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz190.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz190.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz190.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz190.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz190.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz190.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz190.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kdzb', 0.0046395373463178806) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz190.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz190.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz190.txt + +[txz191] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz191.txt +centroid = (0.52461455722295958, -1.7109654643518131) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz191.txt +description = Hays, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz191.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz191.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz191.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz191.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz191.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz191.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz191.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz191.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz191.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz191.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz191.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz191.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz191.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz191.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz191.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('khyi', 0.0038182731511157367) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz191.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz191.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz191.txt + +[txz192] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz192.txt +centroid = (0.52944039260472386, -1.7066161038558432) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz192.txt +description = Travis, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz192.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz192.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz192.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz192.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz192.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz192.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz192.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz192.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz192.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz192.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz192.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz192.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz192.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz192.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz192.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('katt', 0.00038952366093357785) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz192.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz192.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz192.txt + +[txz193] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz193.txt +centroid = (0.52540693670336502, -1.6984165470299739) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz193.txt +description = Bastrop, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz193.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz193.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz193.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz193.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz193.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz193.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz193.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz193.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz193.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz193.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz193.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz193.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz193.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz193.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz193.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kgyb', 0.0051417367486422888) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz193.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz193.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz193.txt + +[txz194] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz194.txt +centroid = (0.52902151358424521, -1.6923707265010657) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz194.txt +description = Lee, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz194.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz194.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz194.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz194.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz194.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz194.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz194.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz194.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz194.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz194.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz194.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz194.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz194.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz194.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz194.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kgyb', 0.0024796152817154636) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz194.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz194.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz194.txt + +[txz195] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz195.txt +centroid = (0.5321927768351189, -1.686354576569441) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz195.txt +description = Burleson, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz195.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz195.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz195.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz195.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz195.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz195.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz195.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz195.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz195.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz195.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz195.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz195.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz195.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz195.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz195.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('krwv', 0.0013088494355378761) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz195.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz195.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz195.txt + +[txz196] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz196.txt +centroid = (0.53513714728323336, -1.6807922122433352) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz196.txt +description = Brazos, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz196.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz196.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz196.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz196.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz196.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz196.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz196.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz196.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz196.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz196.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz196.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz196.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz196.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz196.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz196.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kcll', 0.0016663780232702742) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz196.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz196.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz196.txt + +[txz197] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz197.txt +centroid = (0.52734250684382666, -1.6825602307756053) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz197.txt +description = Washington, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz197.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz197.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz197.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz197.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz197.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz197.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz197.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz197.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz197.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz197.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz197.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz197.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz197.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz197.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz197.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('k11r', 0.00045047063424261786) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz197.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz197.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz197.txt + +[txz198] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz198.txt +centroid = (0.53308638541214004, -1.6752630091730172) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz198.txt +description = Grimes, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz198.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz198.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz198.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz198.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz198.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz198.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz198.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz198.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz198.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz198.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz198.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz198.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz198.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz198.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz198.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kcll', 0.0057701628481659755) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz198.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz198.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz198.txt + +[txz199] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz199.txt +centroid = (0.52883825401278584, -1.6668417955321446) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz199.txt +description = Montgomery, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz199.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz199.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz199.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz199.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz199.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz199.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz199.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz199.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz199.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz199.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz199.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz199.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz199.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz199.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz199.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kcxo', 0.001564323117570625) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz199.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz199.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz199.txt + +[txz200] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz200.txt +centroid = (0.52624469474432223, -1.6547850610593677) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz200.txt +description = Liberty, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz200.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz200.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz200.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz200.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz200.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz200.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz200.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz200.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz200.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz200.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz200.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz200.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz200.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz200.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz200.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('k6r3', 0.0047034099767011561) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz200.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz200.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz200.txt + +[txz201] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz201.txt +centroid = (0.52940025003192803, -1.6474215169452036) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz201.txt +description = Hardin, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz201.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz201.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz201.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz201.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz201.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz201.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz201.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz201.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz201.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz201.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz201.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz201.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz201.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz201.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz201.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kbmt', 0.0052510013611996162) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz201.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz201.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz201.txt + +[txz202] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz202.txt +centroid = (0.51225762611883974, -1.7526247282676659) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz202.txt +description = Kinney, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz202.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz202.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz202.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz202.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz202.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz202.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz202.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz202.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz202.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz202.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz202.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz202.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz202.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz202.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz202.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kdlf', 0.0041427724744448197) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz202.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz202.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz202.txt + +[txz203] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz203.txt +centroid = (0.51238154449573126, -1.7411788590330872) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz203.txt +description = Uvalde, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz203.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz203.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz203.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz203.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz203.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz203.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz203.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz203.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz203.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz203.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz203.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz203.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz203.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz203.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz203.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kuva', 0.0025675909449164231) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz203.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz203.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz203.txt + +[txz204] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz204.txt +centroid = (0.5123536192276994, -1.7297975669808321) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz204.txt +description = Medina, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz204.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz204.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz204.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz204.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz204.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz204.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz204.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz204.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz204.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz204.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz204.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz204.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz204.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz204.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz204.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('khdo', 0.00088148688655510484) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz204.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz204.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz204.txt + +[txz205] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz205.txt +centroid = (0.51398375674906216, -1.7194966337355615) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz205.txt +description = Bexar, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz205.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz205.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz205.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz205.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz205.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz205.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz205.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz205.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz205.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz205.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz205.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz205.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz205.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz205.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz205.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kskf', 0.0014991950228793282) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz205.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz205.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz205.txt + +[txz206] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz206.txt +centroid = (0.52025123409297369, -1.7152781729334912) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz206.txt +description = Comal, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz206.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz206.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz206.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz206.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz206.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz206.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz206.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz206.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz206.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz206.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz206.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz206.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz206.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz206.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz206.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kbaz', 0.003808710535110625) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz206.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz206.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz206.txt + +[txz207] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz207.txt +centroid = (0.51632249794673457, -1.709522077060414) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz207.txt +description = Guadalupe, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz207.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz207.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz207.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz207.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz207.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz207.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz207.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz207.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz207.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz207.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz207.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz207.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz207.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz207.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz207.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kbaz', 0.0027945114103336568) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz207.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz207.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz207.txt + +[txz208] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz208.txt +centroid = (0.52075737957605206, -1.7037904157968646) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz208.txt +description = Caldwell, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz208.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz208.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz208.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz208.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz208.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz208.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz208.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz208.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz208.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz208.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz208.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz208.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz208.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz208.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz208.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('khyi', 0.0038326010025460148) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz208.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz208.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz208.txt + +[txz209] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz209.txt +centroid = (0.52144852995984181, -1.6915696203744002) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz209.txt +description = Fayette, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz209.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz209.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz209.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz209.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz209.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz209.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz209.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz209.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz209.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz209.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz209.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz209.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz209.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz209.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz209.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('k3t5', 0.00071161956632239559) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz209.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz209.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz209.txt + +[txz210] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz210.txt +centroid = (0.51698048707473632, -1.6847017497678027) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz210.txt +description = Colorado, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz210.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz210.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz210.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz210.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz210.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz210.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz210.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz210.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz210.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz210.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz210.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz210.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz210.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz210.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz210.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('k3t5', 0.008145173226263857) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz210.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz210.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz210.txt + +[txz211] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz211.txt +centroid = (0.52162655354354526, -1.6803680972351007) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz211.txt +description = Austin, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz211.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz211.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz211.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz211.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz211.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz211.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz211.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz211.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz211.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz211.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz211.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz211.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz211.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz211.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz211.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('ktme', 0.0058778627189486924) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz211.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz211.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz211.txt + +[txz212] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz212.txt +centroid = (0.52379250714527026, -1.6753014064165612) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz212.txt +description = Waller, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz212.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz212.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz212.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz212.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz212.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz212.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz212.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz212.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz212.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz212.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz212.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz212.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz212.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz212.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz212.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('ktme', 0.0037522571698862944) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz212.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz212.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz212.txt + +[txz213] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz213.txt +centroid = (0.52110819075570292, -1.6649097160501869) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz213.txt +description = Harris, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz213.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz213.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz213.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz213.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz213.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz213.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz213.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz213.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz213.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz213.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz213.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz213.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz213.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz213.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz213.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kiah', 0.0025205840836588517) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz213.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz213.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz213.txt + +[txz214] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz214.txt +centroid = (0.5190399755920897, -1.6512210987267955) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz214.txt +description = Chambers, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz214.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz214.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz214.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz214.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz214.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz214.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz214.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz214.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz214.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz214.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz214.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz214.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz214.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz214.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz214.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kbmt', 0.0082385832162324753) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz214.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz214.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz214.txt + +[txz215] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz215.txt +centroid = (0.52157070300748143, -1.6436149538466041) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz215.txt +description = Jefferson, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz215.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz215.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz215.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz215.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz215.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz215.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz215.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz215.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz215.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz215.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz215.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz215.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz215.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz215.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz215.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kbmt', 0.0033291836170529702) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz215.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz215.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz215.txt + +[txz216] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz216.txt +centroid = (0.52583454237010363, -1.6388030810988556) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz216.txt +description = Orange, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz216.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz216.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz216.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz216.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz216.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz216.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz216.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz216.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz216.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz216.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz216.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz216.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz216.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz216.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz216.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('korg', 0.0017393429150540016) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz216.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz216.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz216.txt + +[txz217] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz217.txt +centroid = (0.50165300558372217, -1.7508183124918517) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz217.txt +description = Maverick, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz217.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz217.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz217.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz217.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz217.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz217.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz217.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz217.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz217.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz217.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz217.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz217.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz217.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz217.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz217.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('mmpg', 0.0031824285217787926) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz217.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz217.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz217.txt + +[txz218] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz218.txt +centroid = (0.50381023253918711, -1.741150933765055) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz218.txt +description = Zavala, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz218.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz218.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz218.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz218.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz218.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz218.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz218.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz218.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz218.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz218.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz218.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz218.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz218.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz218.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz218.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kuva', 0.0060255976701045289) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz218.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz218.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz218.txt + +[txz219] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz219.txt +centroid = (0.50383815780721908, -1.7297661510542961) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz219.txt +description = Frio, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz219.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz219.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz219.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz219.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz219.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz219.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz219.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz219.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz219.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz219.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz219.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz219.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz219.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz219.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz219.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kcot', 0.0074784661350629205) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz219.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz219.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz219.txt + +[txz220] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz220.txt +centroid = (0.50423783820592571, -1.7196362600757211) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz220.txt +description = Atascosa, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz220.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz220.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz220.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz220.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz220.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz220.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz220.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz220.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz220.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz220.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz220.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz220.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz220.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz220.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz220.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kpez', 0.0010419929371261441) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz220.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz220.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz220.txt + +[txz221] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz221.txt +centroid = (0.50918410130607772, -1.7119341220866702) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz221.txt +description = Wilson, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz221.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz221.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz221.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz221.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz221.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz221.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz221.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz221.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz221.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz221.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz221.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz221.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz221.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz221.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz221.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kssf', 0.0064201077325584553) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz221.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz221.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz221.txt + +[txz222] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz222.txt +centroid = (0.50449963759372496, -1.7079687340261389) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz222.txt +description = Karnes, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz222.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz222.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz222.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz222.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz222.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz222.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz222.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz222.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz222.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz222.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz222.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz222.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz222.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz222.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz222.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('knog', 0.0080256524959790871) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz222.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz222.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz222.txt + +[txz223] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz223.txt +centroid = (0.51411640177221374, -1.7015651210005718) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz223.txt +description = Gonzales, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz223.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz223.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz223.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz223.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz223.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz223.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz223.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz223.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz223.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz223.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz223.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz223.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz223.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz223.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz223.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('khyi', 0.0094872782174802387) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz223.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz223.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz223.txt + +[txz224] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz224.txt +centroid = (0.5075783983942429, -1.6991967092056155) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz224.txt +description = DeWitt, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz224.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz224.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz224.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz224.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz224.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz224.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz224.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz224.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz224.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz224.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz224.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz224.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz224.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz224.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz224.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kvct', 0.007479599741465762) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz224.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz224.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz224.txt + +[txz225] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz225.txt +centroid = (0.51285278339376972, -1.6917511346166076) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz225.txt +description = Lavaca, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz225.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz225.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz225.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz225.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz225.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz225.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz225.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz225.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz225.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz225.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz225.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz225.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz225.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz225.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz225.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kvct', 0.0090345322869476805) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz225.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz225.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz225.txt + +[txz226] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz226.txt +centroid = (0.51099575306964784, -1.6793924581832358) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz226.txt +description = Wharton, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz226.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz226.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz226.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz226.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz226.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz226.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz226.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz226.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz226.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz226.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz226.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz226.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz226.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz226.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz226.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('karm', 0.0011141829377943363) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz226.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz226.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz226.txt + +[txz227] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz227.txt +centroid = (0.51535034955337367, -1.6715140419397334) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz227.txt +description = Fort Bend, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz227.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz227.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz227.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz227.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz227.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz227.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz227.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz227.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz227.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz227.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz227.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz227.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz227.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz227.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz227.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('ksgr', 0.0024050567047281808) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz227.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz227.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz227.txt + +[txz228] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz228.txt +centroid = (0.49606620664808831, -1.7410828659242272) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz228.txt +description = Dimmit, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz228.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz228.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz228.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz228.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz228.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz228.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz228.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz228.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz228.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz228.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz228.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz228.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz228.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz228.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz228.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kftn', 0.0054980837930844618) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz228.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz228.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz228.txt + +[txz229] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz229.txt +centroid = (0.49471532180704469, -1.7296160527386246) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz229.txt +description = La Salle, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz229.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz229.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz229.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz229.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz229.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz229.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz229.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz229.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz229.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz229.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz229.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz229.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz229.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz229.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz229.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kcot', 0.0025645506566529816) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz229.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz229.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz229.txt + +[txz230] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz230.txt +centroid = (0.49478513497712445, -1.7203274104595108) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz230.txt +description = McMullen, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz230.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz230.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz230.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz230.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz230.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz230.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz230.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz230.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz230.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz230.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz230.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz230.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz230.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz230.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz230.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('knog', 0.0080370371611230458) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz230.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz230.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz230.txt + +[txz231] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz231.txt +centroid = (0.49482527754992039, -1.7126008378609319) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz231.txt +description = Live Oak, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz231.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz231.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz231.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz231.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz231.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz231.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz231.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz231.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz231.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz231.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz231.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz231.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz231.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz231.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz231.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('knog', 0.0024695346796738287) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz231.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz231.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz231.txt + +[txz232] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz232.txt +centroid = (0.49597719485623659, -1.7059057548502818) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz232.txt +description = Bee, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz232.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz232.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz232.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz232.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz232.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz232.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz232.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz232.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz232.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz232.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz232.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz232.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz232.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz232.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz232.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kbea', 0.0012510331033648656) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz232.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz232.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz232.txt + +[txz233] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz233.txt +centroid = (0.50016074907326702, -1.7004114583650034) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz233.txt +description = Goliad, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz233.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz233.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz233.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz233.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz233.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz233.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz233.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz233.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz233.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz233.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz233.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz233.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz233.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz233.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz233.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kbea', 0.0076148342129913095) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz233.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz233.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz233.txt + +[txz234] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz234.txt +centroid = (0.50259199272129507, -1.6924702102684293) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz234.txt +description = Victoria, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz234.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz234.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz234.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz234.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz234.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz234.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz234.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz234.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz234.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz234.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz234.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz234.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz234.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz234.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz234.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kvct', 0.0013574905342130588) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz234.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz234.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz234.txt + +[txz235] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz235.txt +centroid = (0.50537230221972207, -1.6856163022958475) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz235.txt +description = Jackson, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz235.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz235.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz235.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz235.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz235.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz235.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz235.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz235.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz235.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz235.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz235.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz235.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz235.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz235.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz235.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kpkv', 0.0054955169948401267) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz235.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz235.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz235.txt + +[txz236] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz236.txt +centroid = (0.5038084872099351, -1.6752595185145132) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz236.txt +description = Matagorda, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz236.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz236.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz236.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz236.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz236.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz236.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz236.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz236.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz236.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz236.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz236.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz236.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz236.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz236.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz236.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kbyy', 0.0026375045708797954) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz236.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz236.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz236.txt + +[txz237] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz237.txt +centroid = (0.50948429793742067, -1.6660057828204393) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz237.txt +description = Brazoria, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz237.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz237.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz237.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz237.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz237.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz237.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz237.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz237.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz237.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz237.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz237.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz237.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz237.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz237.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz237.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('klbx', 0.001314474102317355) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz237.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz237.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz237.txt + +[txz238] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz238.txt +centroid = (0.51302382566046523, -1.6574501788271632) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz238.txt +description = Galveston, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz238.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz238.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz238.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz238.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz238.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz238.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz238.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz238.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz238.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz238.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz238.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz238.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz238.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz238.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz238.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kgls', 0.002679724960195235) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz238.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz238.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz238.txt + +[txz239] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz239.txt +centroid = (0.48452259897539779, -1.7336634712739993) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz239.txt +description = Webb, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz239.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz239.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz239.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz239.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz239.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz239.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz239.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz239.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz239.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz239.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz239.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz239.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz239.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz239.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz239.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('klrd', 0.0042935878670641798) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz239.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz239.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz239.txt + +[txz240] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz240.txt +centroid = (0.48312982623230633, -1.719304647517842) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz240.txt +description = Duval, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz240.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz240.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz240.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz240.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz240.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz240.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz240.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz240.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz240.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz240.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz240.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz240.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz240.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz240.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz240.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('knqi', 0.0036144210949618856) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz240.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz240.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz240.txt + +[txz241] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz241.txt +centroid = (0.48399725487054757, -1.7119969539397417) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz241.txt +description = Jim Wells, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz241.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz241.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz241.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz241.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz241.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz241.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz241.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz241.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz241.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz241.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz241.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz241.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz241.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz241.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz241.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kali', 0.0011367077140305563) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz241.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz241.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz241.txt + +[txz242] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz242.txt +centroid = (0.47881013633362041, -1.7057853271318941) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz242.txt +description = Kleberg, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz242.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz242.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz242.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz242.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz242.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz242.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz242.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz242.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz242.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz242.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz242.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz242.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz242.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz242.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz242.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('krbo', 0.0060516640498847188) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz242.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz242.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz242.txt + +[txz243] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz243.txt +centroid = (0.48386984583515197, -1.7039160795030082) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz243.txt +description = Nueces, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz243.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz243.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz243.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz243.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz243.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz243.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz243.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz243.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz243.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz243.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz243.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz243.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz243.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz243.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz243.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('krbo', 0.0013632525053574255) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz243.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz243.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz243.txt + +[txz244] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz244.txt +centroid = (0.4888579968373517, -1.7020241425938463) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz244.txt +description = San Patricio, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz244.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz244.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz244.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz244.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz244.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz244.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz244.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz244.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz244.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz244.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz244.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz244.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz244.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz244.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz244.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kcrp', 0.0042383689672523808) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz244.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz244.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz244.txt + +[txz245] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz245.txt +centroid = (0.49106758367037656, -1.6929100332399318) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz245.txt +description = Aransas, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz245.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz245.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz245.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz245.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz245.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz245.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz245.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz245.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz245.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz245.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz245.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz245.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz245.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz245.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz245.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('krkp', 0.0012344863268326934) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz245.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz245.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz245.txt + +[txz246] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz246.txt +centroid = (0.49414627465772448, -1.6957702613648076) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz246.txt +description = Refugio, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz246.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz246.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz246.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz246.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz246.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz246.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz246.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz246.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz246.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz246.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz246.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz246.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz246.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz246.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz246.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('krkp', 0.0043456917571083895) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz246.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz246.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz246.txt + +[txz247] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz247.txt +centroid = (0.49726001185645241, -1.6868519954062595) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz247.txt +description = Calhoun, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz247.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz247.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz247.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz247.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz247.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz247.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz247.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz247.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz247.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz247.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz247.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz247.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz247.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz247.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz247.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kpkv', 0.0028856614814626587) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz247.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz247.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz247.txt + +[txz248] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz248.txt +centroid = (0.47125286067248495, -1.7308185845932487) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz248.txt +description = Zapata, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz248.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz248.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz248.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz248.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz248.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz248.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz248.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz248.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz248.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz248.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz248.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz248.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz248.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz248.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz248.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kapy', 0.0013754153606459895) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz248.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz248.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz248.txt + +[txz249] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz249.txt +centroid = (0.47199637093383451, -1.7225928478285994) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz249.txt +description = Jim Hogg, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz249.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz249.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz249.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz249.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz249.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz249.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz249.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz249.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz249.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz249.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz249.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz249.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz249.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz249.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz249.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('khbv', 0.0050911186453474833) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz249.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz249.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz249.txt + +[txz250] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz250.txt +centroid = (0.4717904220820992, -1.7142397020285545) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz250.txt +description = Brooks, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz250.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz250.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz250.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz250.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz250.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz250.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz250.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz250.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz250.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz250.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz250.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz250.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz250.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz250.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz250.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kbks', 0.0034109017113602889) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz250.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz250.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz250.txt + +[txz251] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz251.txt +centroid = (0.46994735439199314, -1.705462441220275) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz251.txt +description = Kenedy, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz251.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz251.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz251.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz251.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz251.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz251.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz251.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz251.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz251.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz251.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz251.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz251.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz251.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz251.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz251.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kbks', 0.0079797549160194742) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz251.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz251.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz251.txt + +[txz252] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz252.txt +centroid = (0.46359610124398581, -1.723310178151169) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz252.txt +description = Starr, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz252.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz252.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz252.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz252.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz252.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz252.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz252.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz252.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz252.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz252.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz252.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz252.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz252.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz252.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz252.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kmfe', 0.010100758285585952) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz252.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz252.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz252.txt + +[txz253] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz253.txt +centroid = (0.46071107199043915, -1.7135834582298046) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz253.txt +description = Hidalgo, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz253.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz253.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz253.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz253.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz253.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz253.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz253.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz253.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz253.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz253.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz253.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz253.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz253.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz253.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz253.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kebg', 0.0011281464404898176) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz253.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz253.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz253.txt + +[txz254] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz254.txt +centroid = (0.46192756647907923, -1.7055130557685829) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz254.txt +description = Inland Willacy, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz254.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz254.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz254.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz254.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz254.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz254.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz254.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz254.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz254.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz254.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz254.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz254.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz254.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz254.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz254.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('khrl', 0.0044908620315233438) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz254.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz254.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz254.txt + +[txz255] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz255.txt +centroid = (0.4558834912794229, -1.7030800667913029) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz255.txt +description = Inland Cameron, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz255.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz255.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz255.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz255.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz255.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz255.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz255.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz255.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz255.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz255.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz255.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz255.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz255.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz255.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz255.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('khrl', 0.0020152427586951887) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz255.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz255.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz255.txt + +[txz256] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz256.txt +centroid = (0.46225743370770611, -1.70082859205623) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz256.txt +description = Coastal Willacy, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz256.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz256.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz256.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz256.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz256.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz256.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz256.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz256.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz256.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz256.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz256.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz256.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz256.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz256.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz256.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('khrl', 0.0056350193609692196) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz256.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz256.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz256.txt + +[txz257] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz257.txt +centroid = (0.45670554135711222, -1.6984584349320218) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz257.txt +description = Coastal Cameron, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz257.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz257.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz257.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz257.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz257.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz257.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz257.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz257.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz257.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz257.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz257.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz257.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz257.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz257.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz257.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kpil', 0.00029522271295749647) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz257.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz257.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz257.txt + +[txz258] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz258.txt +centroid = (0.55676352204469515, -1.8274330306666469) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz258.txt +description = Guadalupe Mountains, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz258.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz258.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz258.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz258.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz258.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz258.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz258.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz258.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz258.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz258.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz258.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz258.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz258.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz258.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz258.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kgdp', 0.0020349636040530952) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz258.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz258.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz258.txt + +[txz259] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz259.txt +centroid = (0.53868016566478183, -1.6412046541495997) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz259.txt +description = Northern Jasper County, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz259.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz259.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz259.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz259.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz259.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz259.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz259.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz259.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz259.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz259.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz259.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz259.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz259.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz259.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz259.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kjas', 0.0003745860721924759) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz259.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz259.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz259.txt + +[txz260] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz260.txt +centroid = (0.53909031803900054, -1.6358744186140093) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz260.txt +description = Northern Newton County, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz260.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz260.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz260.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz260.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz260.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz260.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz260.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz260.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz260.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz260.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz260.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz260.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz260.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz260.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz260.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kbkb', 0.0025808828869718038) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz260.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz260.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz260.txt + +[txz261] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz261.txt +centroid = (0.53027291465792514, -1.6405693543018738) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz261.txt +description = Southern Jasper County, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz261.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz261.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz261.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz261.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz261.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz261.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz261.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz261.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz261.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz261.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz261.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz261.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz261.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz261.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz261.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kbpt', 0.004057151456914084) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz261.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz261.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz261.txt + +[txz262] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz262.txt +centroid = (0.5302833866334371, -1.6372741726741085) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz262.txt +description = Southern Newton County, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz262.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz262.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz262.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz262.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz262.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz262.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz262.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz262.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz262.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz262.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz262.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz262.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz262.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz262.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz262.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('korg', 0.0054780056338771541) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz262.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz262.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz262.txt + +[txz418] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz418.txt +centroid = (0.55676003138619112, -1.8601719167755564) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz418.txt +description = Western El Paso County, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz418.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz418.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz418.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz418.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz418.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz418.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz418.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz418.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz418.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz418.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz418.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz418.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz418.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz418.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz418.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('k5t6', 0.0018782744759564137) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz418.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz418.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz418.txt + +[txz419] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz419.txt +centroid = (0.55536376798459564, -1.8552849948699723) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz419.txt +description = Eastern/Central El Paso County, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz419.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz419.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz419.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz419.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz419.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz419.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz419.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz419.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz419.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz419.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz419.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz419.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz419.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz419.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz419.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kelp', 0.0012372420550366744) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz419.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz419.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz419.txt + +[txz420] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz420.txt +centroid = (0.5536184387326013, -1.8462092827596017) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz420.txt +description = Northern Hudspeth Highlands/Hueco Mountains, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz420.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz420.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz420.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz420.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz420.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz420.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz420.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz420.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz420.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz420.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz420.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz420.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz420.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz420.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz420.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('km63', 0.008208263902988143) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz420.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz420.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz420.txt + +[txz421] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz421.txt +centroid = (0.5543165704333991, -1.8366099718736331) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz421.txt +description = Salt Basin, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz421.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz421.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz421.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz421.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz421.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz421.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz421.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz421.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz421.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz421.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz421.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz421.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz421.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz421.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz421.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kgdp', 0.0062635303430261568) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz421.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz421.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz421.txt + +[txz422] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz422.txt +centroid = (0.54524085832302849, -1.836260906023234) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz422.txt +description = Southern Hudspeth Highlands, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz422.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz422.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz422.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz422.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz422.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz422.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz422.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz422.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz422.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz422.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz422.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz422.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz422.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz422.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz422.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kgdp', 0.011894238709100566) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz422.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz422.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz422.txt + +[txz423] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz423.txt +centroid = (0.54803338512621946, -1.8481291449367956) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz423.txt +description = Rio Grande Valley of Eastern El Paso/Western Hudspeth Counties, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz423.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz423.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz423.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz423.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz423.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz423.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz423.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz423.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz423.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz423.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz423.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz423.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz423.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz423.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz423.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('mmcs', 0.0090519163186746146) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz423.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz423.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz423.txt + +[txz424] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/tx/txz424.txt +centroid = (0.53878314009064954, -1.8366099718736331) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/tx/txz424.txt +description = Rio Grande Valley of Eastern Hudspeth County, TX +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/tx/txz424.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/tx/txz424.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/tx/txz424.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/tx/txz424.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/tx/txz424.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/tx/txz424.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/tx/txz424.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/tx/txz424.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/tx.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/tx/txz424.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/tx/txz424.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/tx/txz424.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/tx/txz424.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/tx/txz424.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/tx/txz424.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/tx/txz424.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/tx.txt +station = ('kgdp', 0.01790644387023178) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/tx/txz424.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/tx/txz424.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/tx/txz424.txt + +[utz001] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ut/utz001.txt +centroid = (0.72949003146831393, -1.9531229167490183) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ut/utz001.txt +description = Cache Valley/Utah Portion, UT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ut/utz001.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ut/utz001.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ut/utz001.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ut/utz001.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ut/utz001.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ut/utz001.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ut/utz001.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ut/utz001.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ut.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ut/utz001.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ut/utz001.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ut/utz001.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ut/utz001.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ut/utz001.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ut/utz001.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ut/utz001.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ut.txt +station = ('klgu', 0.00076144487220850476) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ut/utz001.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ut/utz001.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ut/utz001.txt + +[utz002] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ut/utz002.txt +centroid = (0.72111594171724513, -1.9581250303852342) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ut/utz002.txt +description = Northern Wasatch Front, UT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ut/utz002.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ut/utz002.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ut/utz002.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ut/utz002.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ut/utz002.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ut/utz002.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ut/utz002.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ut/utz002.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ut.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ut/utz002.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ut/utz002.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ut/utz002.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ut/utz002.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ut/utz002.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ut/utz002.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ut/utz002.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ut.txt +station = ('kogd', 0.0030778119328605793) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ut/utz002.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ut/utz002.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ut/utz002.txt + +[utz003] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ut/utz003.txt +centroid = (0.70691419759376728, -1.9588650499880798) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ut/utz003.txt +description = Salt Lake and Tooele Valleys, UT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ut/utz003.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ut/utz003.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ut/utz003.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ut/utz003.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ut/utz003.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ut/utz003.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ut/utz003.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ut/utz003.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ut.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ut/utz003.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ut/utz003.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ut/utz003.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ut/utz003.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ut/utz003.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ut/utz003.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ut/utz003.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ut.txt +station = ('kslc', 0.0060418926951630678) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ut/utz003.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ut/utz003.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ut/utz003.txt + +[utz004] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ut/utz004.txt +centroid = (0.69990146465925407, -1.9529291852020469) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ut/utz004.txt +description = Southern Wasatch Front, UT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ut/utz004.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ut/utz004.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ut/utz004.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ut/utz004.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ut/utz004.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ut/utz004.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ut/utz004.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ut/utz004.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ut.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ut/utz004.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ut/utz004.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ut/utz004.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ut/utz004.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ut/utz004.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ut/utz004.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ut/utz004.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ut.txt +station = ('kpvu', 0.0031113304481332257) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ut/utz004.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ut/utz004.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ut/utz004.txt + +[utz005] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ut/utz005.txt +centroid = (0.71483450173931762, -1.9759518233651043) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ut/utz005.txt +description = Great Salt Lake Desert and Mountains, UT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ut/utz005.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ut/utz005.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ut/utz005.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ut/utz005.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ut/utz005.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ut/utz005.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ut/utz005.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ut/utz005.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ut.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ut/utz005.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ut/utz005.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ut/utz005.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ut/utz005.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ut/utz005.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ut/utz005.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ut/utz005.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ut.txt +station = ('kqcj', 0.0023628659732000189) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ut/utz005.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ut/utz005.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ut/utz005.txt + +[utz006] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ut/utz006.txt +centroid = (0.71253764844369305, -1.9464959015791958) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ut/utz006.txt +description = Wasatch Mountain Valleys, UT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ut/utz006.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ut/utz006.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ut/utz006.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ut/utz006.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ut/utz006.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ut/utz006.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ut/utz006.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ut/utz006.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ut.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ut/utz006.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ut/utz006.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ut/utz006.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ut/utz006.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ut/utz006.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ut/utz006.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ut/utz006.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ut.txt +station = ('k36u', 0.0061307926531007249) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ut/utz006.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ut/utz006.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ut/utz006.txt + +[utz007] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ut/utz007.txt +centroid = (0.72348958949995745, -1.9458955083165099) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ut/utz007.txt +description = Wasatch Mountains I-80 North, UT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ut/utz007.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ut/utz007.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ut/utz007.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ut/utz007.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ut/utz007.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ut/utz007.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ut/utz007.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ut/utz007.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ut.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ut/utz007.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ut/utz007.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ut/utz007.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ut/utz007.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ut/utz007.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ut/utz007.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ut/utz007.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ut.txt +station = ('kevw', 0.0068267398763651845) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ut/utz007.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ut/utz007.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ut/utz007.txt + +[utz008] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ut/utz008.txt +centroid = (0.70185623342148773, -1.9479445248583511) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ut/utz008.txt +description = Wasatch Mountains South of I-80, UT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ut/utz008.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ut/utz008.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ut/utz008.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ut/utz008.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ut/utz008.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ut/utz008.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ut/utz008.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ut/utz008.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ut.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ut/utz008.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ut/utz008.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ut/utz008.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ut/utz008.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ut/utz008.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ut/utz008.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ut/utz008.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ut.txt +station = ('kpvu', 0.0014360918297544154) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ut/utz008.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ut/utz008.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ut/utz008.txt + +[utz009] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ut/utz009.txt +centroid = (0.71022857784330451, -1.9326222793550929) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ut/utz009.txt +description = Western Uinta Mountains, UT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ut/utz009.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ut/utz009.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ut/utz009.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ut/utz009.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ut/utz009.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ut/utz009.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ut/utz009.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ut/utz009.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ut.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ut/utz009.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ut/utz009.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ut/utz009.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ut/utz009.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ut/utz009.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ut/utz009.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ut/utz009.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ut.txt +station = ('kevw', 0.010773614862314863) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ut/utz009.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ut/utz009.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ut/utz009.txt + +[utz010] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ut/utz010.txt +centroid = (0.69471085546382294, -1.9331284248381713) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ut/utz010.txt +description = Wasatch Plateau/Book Cliffs, UT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ut/utz010.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ut/utz010.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ut/utz010.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ut/utz010.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ut/utz010.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ut/utz010.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ut/utz010.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ut/utz010.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ut.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ut/utz010.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ut/utz010.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ut/utz010.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ut/utz010.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ut/utz010.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ut/utz010.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ut/utz010.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ut.txt +station = ('kpuc', 0.0032723944664171368) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ut/utz010.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ut/utz010.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ut/utz010.txt + +[utz011] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ut/utz011.txt +centroid = (0.70241822944062993, -1.9254262868491203) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ut/utz011.txt +description = Western Uinta Basin, UT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ut/utz011.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ut/utz011.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ut/utz011.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ut/utz011.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ut/utz011.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ut/utz011.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ut/utz011.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ut/utz011.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ut.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ut/utz011.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ut/utz011.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ut/utz011.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ut/utz011.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ut/utz011.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ut/utz011.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ut/utz011.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ut.txt +station = ('kvel', 0.011374815372228828) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ut/utz011.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ut/utz011.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ut/utz011.txt + +[utz012] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ut/utz012.txt +centroid = (0.68681324059854865, -1.9349470579187495) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ut/utz012.txt +description = Castle Country, UT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ut/utz012.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ut/utz012.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ut/utz012.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ut/utz012.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ut/utz012.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ut/utz012.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ut/utz012.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ut/utz012.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ut.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ut/utz012.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ut/utz012.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ut/utz012.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ut/utz012.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ut/utz012.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ut/utz012.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ut/utz012.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ut.txt +station = ('kpuc', 0.0048774235821940357) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ut/utz012.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ut/utz012.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ut/utz012.txt + +[utz013] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ut/utz013.txt +centroid = (0.67251550336621102, -1.9311038429058578) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ut/utz013.txt +description = San Rafael Swell, UT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ut/utz013.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ut/utz013.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ut/utz013.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ut/utz013.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ut/utz013.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ut/utz013.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ut/utz013.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ut/utz013.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ut.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ut/utz013.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ut/utz013.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ut/utz013.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ut/utz013.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ut/utz013.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ut/utz013.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ut/utz013.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ut.txt +station = ('k4hv', 0.0030562786003054863) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ut/utz013.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ut/utz013.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ut/utz013.txt + +[utz014] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ut/utz014.txt +centroid = (0.68458096448524786, -1.9524178037312128) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ut/utz014.txt +description = Sanpete/Sevier Valleys, UT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ut/utz014.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ut/utz014.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ut/utz014.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ut/utz014.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ut/utz014.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ut/utz014.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ut/utz014.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ut/utz014.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ut.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ut/utz014.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ut/utz014.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ut/utz014.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ut/utz014.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ut/utz014.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ut/utz014.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ut/utz014.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ut.txt +station = ('ku24', 0.0098880048766360178) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ut/utz014.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ut/utz014.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ut/utz014.txt + +[utz015] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ut/utz015.txt +centroid = (0.68564736065821641, -1.9745223987077209) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ut/utz015.txt +description = West Central Utah, UT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ut/utz015.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ut/utz015.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ut/utz015.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ut/utz015.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ut/utz015.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ut/utz015.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ut/utz015.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ut/utz015.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ut.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ut/utz015.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ut/utz015.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ut/utz015.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ut/utz015.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ut/utz015.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ut/utz015.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ut/utz015.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ut.txt +station = ('ku24', 0.0074551359695349097) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ut/utz015.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ut/utz015.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ut/utz015.txt + +[utz016] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ut/utz016.txt +centroid = (0.66498615297310759, -1.9802191533862306) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ut/utz016.txt +description = Southwest Utah, UT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ut/utz016.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ut/utz016.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ut/utz016.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ut/utz016.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ut/utz016.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ut/utz016.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ut/utz016.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ut/utz016.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ut.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ut/utz016.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ut/utz016.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ut/utz016.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ut/utz016.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ut/utz016.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ut/utz016.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ut/utz016.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ut.txt +station = ('kmlf', 0.0081846368561077059) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ut/utz016.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ut/utz016.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ut/utz016.txt + +[utz019] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ut/utz019.txt +centroid = (0.64873713763704022, -1.9817829683960173) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ut/utz019.txt +description = Utah's Dixie and Zion National Park, UT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ut/utz019.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ut/utz019.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ut/utz019.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ut/utz019.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ut/utz019.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ut/utz019.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ut/utz019.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ut/utz019.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ut.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ut/utz019.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ut/utz019.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ut/utz019.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ut/utz019.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ut/utz019.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ut/utz019.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ut/utz019.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ut.txt +station = ('ksgu', 0.001676420203657008) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ut/utz019.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ut/utz019.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ut/utz019.txt + +[utz020] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ut/utz020.txt +centroid = (0.65206897117909746, -1.9516673121528552) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ut/utz020.txt +description = South Central Utah, UT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ut/utz020.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ut/utz020.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ut/utz020.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ut/utz020.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ut/utz020.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ut/utz020.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ut/utz020.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ut/utz020.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ut.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ut/utz020.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ut/utz020.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ut/utz020.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ut/utz020.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ut/utz020.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ut/utz020.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ut/utz020.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ut.txt +station = ('kbce', 0.0074579200304320682) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ut/utz020.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ut/utz020.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ut/utz020.txt + +[utz021] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ut/utz021.txt +centroid = (0.65169198006066664, -1.9343780805825994) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ut/utz021.txt +description = Glen Canyon Recreation Area/Lake Powell, UT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ut/utz021.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ut/utz021.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ut/utz021.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ut/utz021.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ut/utz021.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ut/utz021.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ut/utz021.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ut/utz021.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ut.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ut/utz021.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ut/utz021.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ut/utz021.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ut/utz021.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ut/utz021.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ut/utz021.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ut/utz021.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ut.txt +station = ('kpga', 0.011143956182028932) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ut/utz021.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ut/utz021.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ut/utz021.txt + +[utz022] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ut/utz022.txt +centroid = (0.65053482676659447, -1.9137831954090663) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ut/utz022.txt +description = Southeast Utah, UT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ut/utz022.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ut/utz022.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ut/utz022.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ut/utz022.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ut/utz022.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ut/utz022.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ut/utz022.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ut/utz022.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ut.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ut/utz022.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ut/utz022.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ut/utz022.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ut/utz022.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ut/utz022.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ut/utz022.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ut/utz022.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ut.txt +station = ('k4bl', 0.0065247425333126337) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ut/utz022.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ut/utz022.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ut/utz022.txt + +[utz023] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ut/utz023.txt +centroid = (0.71153059346529224, -1.9112070894331226) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ut/utz023.txt +description = Eastern Uinta Mountains, UT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ut/utz023.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ut/utz023.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ut/utz023.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ut/utz023.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ut/utz023.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ut/utz023.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ut/utz023.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ut/utz023.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ut.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ut/utz023.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ut/utz023.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ut/utz023.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ut/utz023.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ut/utz023.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ut/utz023.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ut/utz023.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ut.txt +station = ('kvel', 0.0058360521522449645) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ut/utz023.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ut/utz023.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ut/utz023.txt + +[utz024] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ut/utz024.txt +centroid = (0.70188764934802361, -1.9117987560495486) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ut/utz024.txt +description = Eastern Uinta Basin, UT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ut/utz024.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ut/utz024.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ut/utz024.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ut/utz024.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ut/utz024.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ut/utz024.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ut/utz024.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ut/utz024.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ut.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ut/utz024.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ut/utz024.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ut/utz024.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ut/utz024.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ut/utz024.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ut/utz024.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ut/utz024.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ut.txt +station = ('kvel', 0.0038405757357910042) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ut/utz024.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ut/utz024.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ut/utz024.txt + +[utz025] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ut/utz025.txt +centroid = (0.68914500047921301, -1.9123502800931789) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ut/utz025.txt +description = Tavaputs Plateau, UT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ut/utz025.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ut/utz025.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ut/utz025.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ut/utz025.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ut/utz025.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ut/utz025.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ut/utz025.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ut/utz025.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ut.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ut/utz025.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ut/utz025.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ut/utz025.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ut/utz025.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ut/utz025.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ut/utz025.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ut/utz025.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ut.txt +station = ('kcny', 0.012774700715253696) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ut/utz025.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ut/utz025.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ut/utz025.txt + +[utz027] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ut/utz027.txt +centroid = (0.67820353139846046, -1.9121705111802234) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ut/utz027.txt +description = Arches/Grand Flat, UT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ut/utz027.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ut/utz027.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ut/utz027.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ut/utz027.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ut/utz027.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ut/utz027.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ut/utz027.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ut/utz027.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ut.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ut/utz027.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ut/utz027.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ut/utz027.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ut/utz027.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ut/utz027.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ut/utz027.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ut/utz027.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ut.txt +station = ('kcny', 0.0030460096674251721) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ut/utz027.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ut/utz027.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ut/utz027.txt + +[utz028] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ut/utz028.txt +centroid = (0.66404542050628246, -1.9091039676844694) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ut/utz028.txt +description = La Sal and Abajo Mountains, UT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ut/utz028.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ut/utz028.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ut/utz028.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ut/utz028.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ut/utz028.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ut/utz028.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ut/utz028.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ut/utz028.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ut.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ut/utz028.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ut/utz028.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ut/utz028.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ut/utz028.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ut/utz028.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ut/utz028.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ut/utz028.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ut.txt +station = ('k4bl', 0.0075975172960217122) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ut/utz028.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ut/utz028.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ut/utz028.txt + +[utz029] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ut/utz029.txt +centroid = (0.66050589278323812, -1.919979114253646) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ut/utz029.txt +description = Canyonlands/Natural Bridges, UT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ut/utz029.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ut/utz029.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ut/utz029.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ut/utz029.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ut/utz029.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ut/utz029.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ut/utz029.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ut/utz029.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ut.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ut/utz029.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ut/utz029.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ut/utz029.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ut/utz029.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ut/utz029.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ut/utz029.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ut/utz029.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ut.txt +station = ('k4bl', 0.0084462858629174974) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ut/utz029.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ut/utz029.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ut/utz029.txt + +[utz517] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ut/utz517.txt +centroid = (0.68021589602601007, -1.9507387969907941) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ut/utz517.txt +description = Central Mountains, UT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ut/utz517.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ut/utz517.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ut/utz517.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ut/utz517.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ut/utz517.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ut/utz517.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ut/utz517.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ut/utz517.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ut.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ut/utz517.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ut/utz517.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ut/utz517.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ut/utz517.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ut/utz517.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ut/utz517.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ut/utz517.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ut.txt +station = ('ku24', 0.012683924183182876) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ut/utz517.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ut/utz517.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ut/utz517.txt + +[utz518] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/ut/utz518.txt +centroid = (0.66104519952210439, -1.9617902218144223) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/ut/utz518.txt +description = Southern Mountains, UT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/ut/utz518.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/ut/utz518.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/ut/utz518.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/ut/utz518.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/ut/utz518.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/ut/utz518.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/ut/utz518.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/ut/utz518.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/ut.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/ut/utz518.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/ut/utz518.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/ut/utz518.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/ut/utz518.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/ut/utz518.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/ut/utz518.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/ut/utz518.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/ut.txt +station = ('kbce', 0.0046314130879638636) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/ut/utz518.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/ut/utz518.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/ut/utz518.txt + +[vaz001] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz001.txt +centroid = (0.64063182859077861, -1.4508660272441063) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz001.txt +description = Lee, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz001.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz001.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz001.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz001.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz001.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz001.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz001.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz001.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz001.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz001.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz001.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz001.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz001.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz001.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz001.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('k0vg', 0.0015404659685553687) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz001.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz001.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz001.txt + +[vaz002] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz002.txt +centroid = (0.64532676427864333, -1.442013717277991) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz002.txt +description = Wise, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz002.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz002.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz002.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz002.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz002.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz002.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz002.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz002.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz002.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz002.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz002.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz002.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz002.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz002.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz002.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('klnp', 0.0012361430322805635) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz002.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz002.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz002.txt + +[vaz003] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz003.txt +centroid = (0.64796744743691082, -1.4372838750050865) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz003.txt +description = Dickenson, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz003.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz003.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz003.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz003.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz003.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz003.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz003.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz003.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz003.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz003.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz003.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz003.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz003.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz003.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz003.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('klnp', 0.003561229984381908) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz003.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz003.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz003.txt + +[vaz004] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz004.txt +centroid = (0.65042487102371871, -1.4317983051660683) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz004.txt +description = Buchanan, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz004.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz004.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz004.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz004.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz004.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz004.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz004.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz004.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz004.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz004.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz004.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz004.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz004.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz004.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz004.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('kjfz', 0.0048761473136578297) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz004.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz004.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz004.txt + +[vaz005] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz005.txt +centroid = (0.6407836722357021, -1.4416943220248759) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz005.txt +description = Scott, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz005.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz005.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz005.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz005.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz005.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz005.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz005.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz005.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz005.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz005.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz005.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz005.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz005.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz005.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz005.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('klnp', 0.0047969782582507449) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz005.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz005.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz005.txt + +[vaz006] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz006.txt +centroid = (0.64461641527308167, -1.4328385214002568) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz006.txt +description = Russell, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz006.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz006.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz006.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz006.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz006.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz006.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz006.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz006.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz006.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz006.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz006.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz006.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz006.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz006.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz006.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('kvji', 0.0044572200372580929) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz006.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz006.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz006.txt + +[vaz007] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz007.txt +centroid = (0.64795348480289483, -1.4235010099020871) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz007.txt +description = Tazewell, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz007.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz007.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz007.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz007.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz007.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz007.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz007.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz007.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz007.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz007.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz007.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz007.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz007.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz007.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz007.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('kjfz', 0.0035206747888654314) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz007.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz007.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz007.txt + +[vaz008] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz008.txt +centroid = (0.6409215532466096, -1.4305451587631364) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz008.txt +description = Washington, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz008.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz008.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz008.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz008.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz008.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz008.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz008.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz008.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz008.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz008.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz008.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz008.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz008.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz008.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz008.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('kvji', 0.0011805262749210578) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz008.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz008.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz008.txt + +[vaz009] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz009.txt +centroid = (0.64304736427553877, -1.4230891121986167) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz009.txt +description = Smyth, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz009.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz009.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz009.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz009.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz009.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz009.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz009.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz009.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz009.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz009.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz009.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz009.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz009.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz009.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz009.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('kmkj', 0.0027884963036588842) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz009.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz009.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz009.txt + +[vaz010] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz010.txt +centroid = (0.64811056443557435, -1.4159891128015036) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz010.txt +description = Bland, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz010.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz010.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz010.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz010.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz010.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz010.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz010.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz010.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz010.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz010.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz010.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz010.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz010.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz010.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz010.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('kblf', 0.0030553590314889413) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz010.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz010.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz010.txt + +[vaz011] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz011.txt +centroid = (0.65125390241841619, -1.4085452835417478) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz011.txt +description = Giles, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz011.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz011.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz011.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz011.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz011.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz011.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz011.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz011.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz011.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz011.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz011.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz011.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz011.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz011.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz011.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('kpsk', 0.0031676450058471957) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz011.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz011.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz011.txt + +[vaz012] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz012.txt +centroid = (0.64432494528799855, -1.4150885229074743) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz012.txt +description = Wythe, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz012.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz012.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz012.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz012.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz012.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz012.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz012.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz012.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz012.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz012.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz012.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz012.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz012.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz012.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz012.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('khlx', 0.004503223351440812) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz012.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz012.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz012.txt + +[vaz013] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz013.txt +centroid = (0.64691326856870612, -1.4086482579676154) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz013.txt +description = Pulaski, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz013.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz013.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz013.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz013.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz013.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz013.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz013.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz013.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz013.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz013.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz013.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz013.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz013.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz013.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz013.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('kpsk', 0.0012407611911983659) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz013.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz013.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz013.txt + +[vaz014] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz014.txt +centroid = (0.64880869613637204, -1.4030160804714296) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz014.txt +description = Montgomery, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz014.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz014.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz014.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz014.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz014.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz014.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz014.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz014.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz014.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz014.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz014.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz014.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz014.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz014.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz014.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('kbcb', 0.00085194237093441899) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz014.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz014.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz014.txt + +[vaz015] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz015.txt +centroid = (0.63977836258655341, -1.4176436849323941) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz015.txt +description = Grayson, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz015.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz015.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz015.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz015.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz015.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz015.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz015.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz015.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz015.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz015.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz015.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz015.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz015.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz015.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz015.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('kmkj', 0.0045934826907837196) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz015.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz015.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz015.txt + +[vaz016] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz016.txt +centroid = (0.64106641557452526, -1.4091264781826618) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz016.txt +description = Carroll, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz016.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz016.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz016.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz016.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz016.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz016.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz016.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz016.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz016.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz016.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz016.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz016.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz016.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz016.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz016.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('khlx', 0.0012813743707094291) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz016.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz016.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz016.txt + +[vaz017] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz017.txt +centroid = (0.64457627270028583, -1.4025919654631951) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz017.txt +description = Floyd, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz017.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz017.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz017.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz017.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz017.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz017.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz017.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz017.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz017.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz017.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz017.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz017.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz017.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz017.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz017.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('kbcb', 0.0050337201014083394) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz017.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz017.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz017.txt + +[vaz018] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz018.txt +centroid = (0.65417209292775058, -1.3999687355974475) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz018.txt +description = Craig, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz018.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz018.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz018.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz018.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz018.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz018.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz018.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz018.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz018.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz018.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz018.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz018.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz018.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz018.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz018.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('kroa', 0.0044559807461533041) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz018.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz018.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz018.txt + +[vaz019] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz019.txt +centroid = (0.65951629109735732, -1.3963803386553473) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz019.txt +description = Alleghany, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz019.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz019.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz019.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz019.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz019.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz019.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz019.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz019.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz019.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz019.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz019.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz019.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz019.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz019.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz019.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('khsp', 0.0037080167642036181) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz019.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz019.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz019.txt + +[vaz020] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz020.txt +centroid = (0.66424962402876597, -1.3917447441620503) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz020.txt +description = Bath, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz020.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz020.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz020.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz020.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz020.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz020.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz020.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz020.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz020.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz020.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz020.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz020.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz020.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz020.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz020.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('khsp', 0.0022821516847637341) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz020.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz020.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz020.txt + +[vaz022] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz022.txt +centroid = (0.65050864682781451, -1.3971709728065007) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz022.txt +description = Roanoke, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz022.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz022.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz022.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz022.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz022.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz022.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz022.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz022.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz022.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz022.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz022.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz022.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz022.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz022.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz022.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('kroa', 0.0014240806956108674) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz022.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz022.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz022.txt + +[vaz023] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz023.txt +centroid = (0.65549505250076234, -1.3929874185894702) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz023.txt +description = Botetourt, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz023.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz023.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz023.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz023.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz023.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz023.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz023.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz023.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz023.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz023.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz023.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz023.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz023.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz023.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz023.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('kroa', 0.0047101813904198465) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz023.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz023.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz023.txt + +[vaz024] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz024.txt +centroid = (0.65997182203212779, -1.3866030041856749) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz024.txt +description = Rockbridge, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz024.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz024.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz024.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz024.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz024.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz024.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz024.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz024.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz024.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz024.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz024.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz024.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz024.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz024.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz024.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('khsp', 0.0058364158706085516) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz024.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz024.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz024.txt + +[vaz025] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz025.txt +centroid = (0.66607000243859593, -1.3810598384813411) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz025.txt +description = Augusta, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz025.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz025.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz025.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz025.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz025.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz025.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz025.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz025.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz025.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz025.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz025.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz025.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz025.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz025.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz025.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('kshd', 0.0036230326450521315) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz025.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz025.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz025.txt + +[vaz026] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz026.txt +centroid = (0.67213676691852819, -1.3766406648152913) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz026.txt +description = Rockingham, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz026.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz026.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz026.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz026.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz026.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz026.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz026.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz026.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz026.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz026.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz026.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz026.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz026.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz026.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz026.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('kshd', 0.0042703983428002733) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz026.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz026.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz026.txt + +[vaz027] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz027.txt +centroid = (0.67820876738621649, -1.3713121746089527) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz027.txt +description = Shenandoah, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz027.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz027.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz027.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz027.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz027.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz027.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz027.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz027.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz027.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz027.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz027.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz027.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz027.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz027.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz027.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('klua', 0.0034738005926136985) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz027.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz027.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz027.txt + +[vaz028] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz028.txt +centroid = (0.68423713462260494, -1.3659051445862742) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz028.txt +description = Frederick, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz028.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz028.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz028.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz028.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz028.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz028.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz028.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz028.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz028.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz028.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz028.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz028.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz028.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz028.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz028.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('kokv', 0.0017675314248236866) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz028.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz028.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz028.txt + +[vaz029] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz029.txt +centroid = (0.67404615712020999, -1.3698059554644815) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz029.txt +description = Page, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz029.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz029.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz029.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz029.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz029.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz029.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz029.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz029.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz029.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz029.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz029.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz029.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz029.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz029.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz029.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('klua', 0.00085145865819374639) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz029.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz029.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz029.txt + +[vaz030] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz030.txt +centroid = (0.67908492267071774, -1.3649731387657094) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz030.txt +description = Warren, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz030.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz030.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz030.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz030.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz030.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz030.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz030.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz030.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz030.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz030.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz030.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz030.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz030.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz030.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz030.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('kokv', 0.0042822886004121917) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz030.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz030.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz030.txt + +[vaz031] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz031.txt +centroid = (0.68263666769852616, -1.3612974753610092) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz031.txt +description = Clarke, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz031.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz031.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz031.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz031.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz031.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz031.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz031.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz031.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz031.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz031.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz031.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz031.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz031.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz031.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz031.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('kokv', 0.002179088569936042) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz031.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz031.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz031.txt + +[vaz032] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz032.txt +centroid = (0.64015884436348824, -1.4012253726588835) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz032.txt +description = Patrick, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz032.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz032.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz032.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz032.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz032.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz032.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz032.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz032.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz032.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz032.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz032.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz032.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz032.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz032.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz032.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('kmtv', 0.0038289682203898386) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz032.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz032.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz032.txt + +[vaz033] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz033.txt +centroid = (0.64563219689774232, -1.3941864597855904) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz033.txt +description = Franklin, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz033.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz033.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz033.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz033.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz033.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz033.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz033.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz033.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz033.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz033.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz033.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz033.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz033.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz033.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz033.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('kroa', 0.0057904491386460777) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz033.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz033.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz033.txt + +[vaz034] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz034.txt +centroid = (0.65127310104018798, -1.3879591250144745) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz034.txt +description = Bedford, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz034.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz034.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz034.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz034.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz034.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz034.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz034.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz034.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz034.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz034.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz034.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz034.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz034.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz034.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz034.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('klyh', 0.0045001901694908522) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz034.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz034.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz034.txt + +[vaz035] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz035.txt +centroid = (0.65632757455396362, -1.3813425818201641) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz035.txt +description = Amherst, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz035.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz035.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz035.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz035.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz035.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz035.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz035.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz035.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz035.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz035.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz035.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz035.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz035.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz035.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz035.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('klyh', 0.0050860657704803053) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz035.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz035.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz035.txt + +[vaz036] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz036.txt +centroid = (0.6595145457681052, -1.3768326510330109) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz036.txt +description = Nelson, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz036.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz036.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz036.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz036.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz036.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz036.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz036.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz036.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz036.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz036.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz036.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz036.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz036.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz036.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz036.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('kshd', 0.0083667796175141453) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz036.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz036.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz036.txt + +[vaz037] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz037.txt +centroid = (0.66362828681505592, -1.3710521205504054) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz037.txt +description = Albemarle, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz037.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz037.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz037.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz037.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz037.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz037.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz037.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz037.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz037.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz037.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz037.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz037.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz037.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz037.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz037.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('kcho', 0.0024088125858796432) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz037.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz037.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz037.txt + +[vaz038] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz038.txt +centroid = (0.66842096094103232, -1.3695057588331385) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz038.txt +description = Greene, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz038.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz038.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz038.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz038.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz038.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz038.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz038.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz038.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz038.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz038.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz038.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz038.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz038.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz038.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz038.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('kcho', 0.0028780849835393064) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz038.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz038.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz038.txt + +[vaz039] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz039.txt +centroid = (0.67044554287334579, -1.3662297758271453) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz039.txt +description = Madison, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz039.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz039.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz039.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz039.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz039.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz039.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz039.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz039.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz039.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz039.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz039.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz039.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz039.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz039.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz039.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('komh', 0.0043214760859627737) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz039.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz039.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz039.txt + +[vaz040] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz040.txt +centroid = (0.67517189448774639, -1.3641371260540041) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz040.txt +description = Rappahannock, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz040.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz040.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz040.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz040.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz040.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz040.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz040.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz040.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz040.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz040.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz040.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz040.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz040.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz040.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz040.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('kcjr', 0.0049372485723600413) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz040.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz040.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz040.txt + +[vaz042] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz042.txt +centroid = (0.68226142190934735, -1.3549985820905617) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz042.txt +description = Loudoun, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz042.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz042.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz042.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz042.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz042.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz042.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz042.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz042.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz042.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz042.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz042.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz042.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz042.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz042.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz042.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('kjyo', 0.00094399541673092916) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz042.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz042.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz042.txt + +[vaz043] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz043.txt +centroid = (0.64023563885057588, -1.3940573054209426) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz043.txt +description = Henry, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz043.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz043.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz043.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz043.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz043.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz043.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz043.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz043.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz043.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz043.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz043.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz043.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz043.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz043.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz043.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('kmtv', 0.0021812482008263467) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz043.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz043.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz043.txt + +[vaz044] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz044.txt +centroid = (0.64247489628088472, -1.3857495381814497) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz044.txt +description = Pittsylvania, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz044.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz044.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz044.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz044.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz044.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz044.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz044.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz044.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz044.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz044.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz044.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz044.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz044.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz044.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz044.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('kdan', 0.0043599529738014208) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz044.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz044.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz044.txt + +[vaz045] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz045.txt +centroid = (0.64966565279910127, -1.3806392141316104) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz045.txt +description = Campbell, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz045.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz045.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz045.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz045.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz045.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz045.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz045.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz045.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz045.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz045.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz045.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz045.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz045.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz045.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz045.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('klyh', 0.0021012345075659281) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz045.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz045.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz045.txt + +[vaz046] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz046.txt +centroid = (0.65226793871382482, -1.3755306354110231) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz046.txt +description = Appomattox, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz046.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz046.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz046.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz046.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz046.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz046.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz046.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz046.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz046.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz046.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz046.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz046.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz046.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz046.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz046.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('klyh', 0.0054688470395655277) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz046.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz046.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz046.txt + +[vaz047] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz047.txt +centroid = (0.65575859721781349, -1.370584372310871) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz047.txt +description = Buckingham, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz047.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz047.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz047.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz047.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz047.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz047.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz047.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz047.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz047.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz047.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz047.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz047.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz047.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz047.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz047.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('kfvx', 0.0040969959153041953) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz047.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz047.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz047.txt + +[vaz048] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz048.txt +centroid = (0.66046575021044218, -1.3661983599006093) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz048.txt +description = Fluvanna, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz048.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz048.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz048.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz048.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz048.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz048.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz048.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz048.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz048.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz048.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz048.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz048.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz048.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz048.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz048.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('klku', 0.0051436648220235916) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz048.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz048.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz048.txt + +[vaz049] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz049.txt +centroid = (0.66284463398091054, -1.3607110447323389) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz049.txt +description = Louisa, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz049.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz049.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz049.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz049.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz049.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz049.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz049.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz049.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz049.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz049.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz049.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz049.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz049.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz049.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz049.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('klku', 0.00055919917716316676) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz049.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz049.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz049.txt + +[vaz050] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz050.txt +centroid = (0.66752386170550726, -1.3615906906753443) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz050.txt +description = Orange, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz050.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz050.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz050.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz050.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz050.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz050.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz050.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz050.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz050.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz050.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz050.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz050.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz050.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz050.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz050.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('komh', 0.00044104925617589251) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz050.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz050.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz050.txt + +[vaz051] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz051.txt +centroid = (0.6717091612517897, -1.3605871263554477) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz051.txt +description = Culpeper, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz051.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz051.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz051.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz051.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz051.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz051.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz051.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz051.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz051.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz051.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz051.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz051.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz051.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz051.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz051.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('kcjr', 0.0015022747632541988) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz051.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz051.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz051.txt + +[vaz052] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz052.txt +centroid = (0.67553666830141323, -1.3523142657009943) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz052.txt +description = Prince William/Manassas/Manassas Park, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz052.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz052.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz052.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz052.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz052.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz052.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz052.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz052.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz052.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz052.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz052.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz052.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz052.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz052.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz052.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('khef', 0.00051269572501432329) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz052.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz052.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz052.txt + +[vaz053] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz053.txt +centroid = (0.67786319219432167, -1.34877473797795) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz053.txt +description = Fairfax, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz053.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz053.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz053.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz053.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz053.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz053.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz053.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz053.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz053.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz053.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz053.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz053.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz053.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz053.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz053.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('kdaa', 0.0024968543699490997) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz053.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz053.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz053.txt + +[vaz054] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz054.txt +centroid = (0.67819480475220062, -1.3456296546658562) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz054.txt +description = Arlington/Falls Church/Alexandria, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz054.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz054.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz054.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz054.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz054.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz054.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz054.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz054.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz054.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz054.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz054.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz054.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz054.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz054.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz054.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('kdca', 0.00090124061166974739) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz054.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz054.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz054.txt + +[vaz055] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz055.txt +centroid = (0.67057818789649737, -1.3519372745825637) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz055.txt +description = Stafford, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz055.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz055.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz055.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz055.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz055.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz055.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz055.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz055.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz055.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz055.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz055.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz055.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz055.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz055.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz055.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('krmn', 0.00041146529341135946) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz055.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz055.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz055.txt + +[vaz056] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz056.txt +centroid = (0.66650982541009862, -1.3552917974048968) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz056.txt +description = Spotsylvania, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz056.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz056.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz056.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz056.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz056.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz056.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz056.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz056.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz056.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz056.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz056.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz056.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz056.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz056.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz056.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('kezf', 0.0030957921916952348) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz056.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz056.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz056.txt + +[vaz057] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz057.txt +centroid = (0.66798811928653778, -1.3466471816197689) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz057.txt +description = King George, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz057.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz057.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz057.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz057.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz057.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz057.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz057.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz057.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz057.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz057.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz057.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz057.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz057.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz057.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz057.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('knyg', 0.0044189317897103788) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz057.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz057.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz057.txt + +[vaz058] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz058.txt +centroid = (0.64170520608075521, -1.377705315659008) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz058.txt +description = Halifax, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz058.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz058.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz058.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz058.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz058.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz058.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz058.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz058.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz058.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz058.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz058.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz058.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz058.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz058.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz058.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('kdan', 0.006561863385186743) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz058.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz058.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz058.txt + +[vaz059] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz059.txt +centroid = (0.64597428143113333, -1.3729039148867717) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz059.txt +description = Charlotte, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz059.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz059.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz059.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz059.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz059.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz059.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz059.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz059.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz059.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz059.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz059.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz059.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz059.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz059.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz059.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('kfvx', 0.0067051101743260634) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz059.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz059.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz059.txt + +[vaz060] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz060.txt +centroid = (0.64968659675012519, -1.3690554638861241) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz060.txt +description = Prince Edward, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz060.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz060.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz060.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz060.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz060.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz060.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz060.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz060.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz060.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz060.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz060.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz060.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz060.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz060.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz060.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('kfvx', 0.0021965280931864092) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz060.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz060.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz060.txt + +[vaz061] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz061.txt +centroid = (0.65470790900811293, -1.3656328732229632) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz061.txt +description = Cumberland, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz061.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz061.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz061.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz061.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz061.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz061.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz061.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz061.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz061.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz061.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz061.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz061.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz061.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz061.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz061.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('kfvx', 0.0038480454682013766) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz061.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz061.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz061.txt + +[vaz062] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz062.txt +centroid = (0.65837310043730102, -1.3598977213009098) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz062.txt +description = Goochland, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz062.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz062.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz062.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz062.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz062.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz062.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz062.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz062.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz062.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz062.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz062.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz062.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz062.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz062.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz062.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('klku', 0.0050762741929980303) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz062.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz062.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz062.txt + +[vaz063] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz063.txt +centroid = (0.65903807088231081, -1.3524713453336739) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz063.txt +description = Hanover, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz063.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz063.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz063.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz063.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz063.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz063.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz063.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz063.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz063.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz063.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz063.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz063.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz063.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz063.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz063.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('kofp', 0.0013159547355496837) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz063.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz063.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz063.txt + +[vaz064] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz064.txt +centroid = (0.66369984531438775, -1.349968543186314) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz064.txt +description = Caroline, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz064.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz064.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz064.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz064.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz064.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz064.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz064.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz064.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz064.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz064.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz064.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz064.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz064.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz064.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz064.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('kezf', 0.0044099213359664628) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz064.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz064.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz064.txt + +[vaz065] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz065.txt +centroid = (0.64019375094852804, -1.3676871257525605) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz065.txt +description = Mecklenburg, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz065.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz065.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz065.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz065.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz065.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz065.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz065.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz065.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz065.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz065.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz065.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz065.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz065.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz065.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz065.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('kavc', 0.0043207453070067108) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz065.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz065.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz065.txt + +[vaz066] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz066.txt +centroid = (0.64483283610032893, -1.3655560787358754) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz066.txt +description = Lunenburg, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz066.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz066.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz066.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz066.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz066.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz066.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz066.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz066.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz066.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz066.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz066.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz066.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz066.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz066.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz066.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('kavc', 0.0051959016879970579) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz066.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz066.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz066.txt + +[vaz067] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz067.txt +centroid = (0.64826938939750578, -1.362250425132598) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz067.txt +description = Nottoway, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz067.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz067.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz067.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz067.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz067.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz067.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz067.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz067.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz067.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz067.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz067.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz067.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz067.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz067.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz067.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('kfvx', 0.0064208308816253185) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz067.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz067.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz067.txt + +[vaz068] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz068.txt +centroid = (0.65163612952460281, -1.3609396828643505) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz068.txt +description = Amelia, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz068.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz068.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz068.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz068.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz068.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz068.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz068.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz068.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz068.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz068.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz068.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz068.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz068.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz068.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz068.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('kfvx', 0.0063491252684467498) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz068.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz068.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz068.txt + +[vaz069] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz069.txt +centroid = (0.65537462478237463, -1.3598767773498859) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz069.txt +description = Powhatan, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz069.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz069.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz069.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz069.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz069.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz069.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz069.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz069.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz069.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz069.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz069.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz069.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz069.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz069.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz069.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('kfci', 0.0061945548173730335) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz069.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz069.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz069.txt + +[vaz070] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz070.txt +centroid = (0.65234298787166056, -1.3540875202210207) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz070.txt +description = Chesterfield, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz070.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz070.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz070.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz070.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz070.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz070.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz070.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz070.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz070.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz070.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz070.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz070.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz070.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz070.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz070.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('kfci', 0.0010986774164321873) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz070.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz070.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz070.txt + +[vaz071] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz071.txt +centroid = (0.6551302786870955, -1.35123390689401) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz071.txt +description = Henrico, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz071.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz071.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz071.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz071.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz071.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz071.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz071.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz071.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz071.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz071.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz071.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz071.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz071.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz071.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz071.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('kric', 0.0014703802165254441) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz071.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz071.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz071.txt + +[vaz072] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz072.txt +centroid = (0.65810606506174585, -1.3454463950943967) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz072.txt +description = King William, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz072.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz072.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz072.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz072.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz072.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz072.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz072.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz072.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz072.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz072.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz072.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz072.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz072.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz072.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz072.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('kxsa', 0.0038105131831324417) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz072.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz072.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz072.txt + +[vaz073] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz073.txt +centroid = (0.65830154193796919, -1.3420639470040316) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz073.txt +description = King and Queen, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz073.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz073.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz073.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz073.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz073.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz073.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz073.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz073.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz073.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz073.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz073.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz073.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz073.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz073.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz073.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('kxsa', 0.0023143587785561114) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz073.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz073.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz073.txt + +[vaz074] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz074.txt +centroid = (0.6614064826772672, -1.3405524918718048) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz074.txt +description = Essex, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz074.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz074.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz074.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz074.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz074.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz074.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz074.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz074.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz074.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz074.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz074.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz074.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz074.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz074.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz074.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('kxsa', 0.0012739532121937654) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz074.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz074.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz074.txt + +[vaz075] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz075.txt +centroid = (0.66560923551606954, -1.3391091045804053) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz075.txt +description = Westmoreland, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz075.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz075.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz075.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz075.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz075.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz075.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz075.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz075.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz075.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz075.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz075.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz075.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz075.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz075.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz075.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('k2w6', 0.0040028116177552343) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz075.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz075.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz075.txt + +[vaz076] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz076.txt +centroid = (0.66222853275495652, -1.3391021232633975) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz076.txt +description = Richmond, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz076.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz076.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz076.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz076.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz076.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz076.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz076.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz076.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz076.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz076.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz076.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz076.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz076.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz076.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz076.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('kxsa', 0.002681816709288918) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz076.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz076.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz076.txt + +[vaz077] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz077.txt +centroid = (0.66124067639832762, -1.3338294835931224) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz077.txt +description = Northumberland, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz077.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz077.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz077.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz077.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz077.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz077.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz077.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz077.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz077.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz077.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz077.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz077.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz077.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz077.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz077.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('knui', 0.0046032058131509771) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz077.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz077.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz077.txt + +[vaz078] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz078.txt +centroid = (0.65863664515435205, -1.3345660125374641) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz078.txt +description = Lancaster, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz078.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz078.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz078.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz078.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz078.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz078.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz078.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz078.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz078.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz078.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz078.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz078.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz078.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz078.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz078.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('kfyj', 0.0055984801705508437) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz078.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz078.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz078.txt + +[vaz079] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz079.txt +centroid = (0.64166680883721128, -1.3588959023102649) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz079.txt +description = Brunswick, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz079.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz079.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz079.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz079.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz079.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz079.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz079.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz079.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz079.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz079.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz079.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz079.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz079.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz079.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz079.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('kavc', 0.0030367558051346993) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz079.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz079.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz079.txt + +[vaz080] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz080.txt +centroid = (0.64709652814016561, -1.3549392408959939) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz080.txt +description = Dinwiddie, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz080.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz080.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz080.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz080.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz080.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz080.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz080.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz080.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz080.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz080.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz080.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz080.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz080.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz080.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz080.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('kptb', 0.0024708052723225633) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz080.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz080.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz080.txt + +[vaz081] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz081.txt +centroid = (0.64911412875547103, -1.3480731156186483) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz081.txt +description = Prince George, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz081.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz081.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz081.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz081.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz081.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz081.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz081.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz081.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz081.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz081.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz081.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz081.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz081.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz081.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz081.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('kptb', 0.0038648030546803913) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz081.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz081.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz081.txt + +[vaz082] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz082.txt +centroid = (0.64993443350390845, -1.3422053186734433) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz082.txt +description = Charles City, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz082.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz082.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz082.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz082.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz082.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz082.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz082.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz082.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz082.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz082.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz082.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz082.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz082.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz082.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz082.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('kjgg', 0.0025965220012569242) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz082.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz082.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz082.txt + +[vaz083] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz083.txt +centroid = (0.65458922661897734, -1.343854654816578) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz083.txt +description = New Kent, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz083.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz083.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz083.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz083.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz083.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz083.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz083.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz083.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz083.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz083.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz083.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz083.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz083.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz083.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz083.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('kfyj', 0.0032342549387304304) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz083.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz083.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz083.txt + +[vaz084] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz084.txt +centroid = (0.65144239797763148, -1.3352868335185377) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz084.txt +description = Gloucester, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz084.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz084.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz084.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz084.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz084.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz084.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz084.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz084.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz084.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz084.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz084.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz084.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz084.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz084.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz084.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('kphf', 0.0033446151161790711) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz084.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz084.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz084.txt + +[vaz085] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz085.txt +centroid = (0.65669409369688236, -1.3348557371932952) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz085.txt +description = Middlesex, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz085.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz085.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz085.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz085.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz085.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz085.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz085.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz085.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz085.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz085.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz085.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz085.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz085.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz085.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz085.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('kfyj', 0.0043181985831901607) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz085.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz085.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz085.txt + +[vaz086] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz086.txt +centroid = (0.65376019522427997, -1.3324122762405031) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz086.txt +description = Mathews, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz086.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz086.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz086.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz086.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz086.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz086.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz086.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz086.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz086.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz086.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz086.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz086.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz086.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz086.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz086.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('kphf', 0.0060734514695715211) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz086.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz086.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz086.txt + +[vaz087] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz087.txt +centroid = (0.64012219244919621, -1.353659914554282) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz087.txt +description = Greensville, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz087.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz087.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz087.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz087.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz087.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz087.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz087.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz087.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz087.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz087.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz087.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz087.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz087.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz087.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz087.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('kemv', 0.001082934713926676) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz087.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz087.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz087.txt + +[vaz088] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz088.txt +centroid = (0.64440697576284234, -1.3484727960173548) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz088.txt +description = Sussex, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz088.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz088.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz088.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz088.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz088.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz088.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz088.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz088.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz088.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz088.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz088.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz088.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz088.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz088.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz088.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('kakq', 0.0038061165400227878) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz088.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz088.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz088.txt + +[vaz089] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz089.txt +centroid = (0.6478121131334833, -1.341953991261156) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz089.txt +description = Surry, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz089.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz089.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz089.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz089.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz089.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz089.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz089.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz089.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz089.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz089.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz089.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz089.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz089.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz089.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz089.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('kakq', 0.0028027370683048549) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz089.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz089.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz089.txt + +[vaz090] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz090.txt +centroid = (0.65146857791641144, -1.3399678065723866) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz090.txt +description = James City, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz090.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz090.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz090.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz090.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz090.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz090.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz090.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz090.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz090.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz090.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz090.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz090.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz090.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz090.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz090.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('kjgg', 0.0017267765528539299) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz090.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz090.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz090.txt + +[vaz091] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz091.txt +centroid = (0.64968485142087329, -1.335845338879176) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz091.txt +description = York, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz091.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz091.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz091.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz091.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz091.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz091.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz091.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz091.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz091.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz091.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz091.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz091.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz091.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz091.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz091.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('kphf', 0.0016729649592834735) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz091.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz091.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz091.txt + +[vaz092] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz092.txt +centroid = (0.64088315600306589, -1.3457151757992041) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz092.txt +description = Southampton, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz092.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz092.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz092.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz092.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz092.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz092.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz092.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz092.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz092.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz092.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz092.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz092.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz092.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz092.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz092.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('kfkn', 0.002872605162246758) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz092.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz092.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz092.txt + +[vaz093] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz093.txt +centroid = (0.64414343104579119, -1.3388263612415823) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz093.txt +description = Isle of Wight, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz093.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz093.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz093.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz093.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz093.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz093.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz093.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz093.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz093.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz093.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz093.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz093.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz093.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz093.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz093.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('kfaf', 0.004159938398528816) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz093.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz093.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz093.txt + +[vaz094] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz094.txt +centroid = (0.64711572676193752, -1.3352781068722777) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz094.txt +description = Newport News/Hampton, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz094.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz094.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz094.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz094.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz094.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz094.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz094.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz094.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz094.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz094.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz094.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz094.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz094.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz094.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz094.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('kphf', 0.00098651117880695668) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz094.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz094.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz094.txt + +[vaz095] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz095.txt +centroid = (0.64359365233141297, -1.3315762635287978) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz095.txt +description = Norfolk/Portsmouth, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz095.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz095.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz095.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz095.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz095.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz095.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz095.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz095.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz095.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz095.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz095.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz095.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz095.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz095.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz095.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('kngu', 0.0010199008829366917) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz095.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz095.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz095.txt + +[vaz096] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz096.txt +centroid = (0.64391304758452805, -1.3347388001334115) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz096.txt +description = Suffolk, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz096.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz096.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz096.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz096.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz096.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz096.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz096.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz096.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz096.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz096.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz096.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz096.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz096.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz096.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz096.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('kpvg', 0.0020112525122649178) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz096.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz096.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz096.txt + +[vaz097] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz097.txt +centroid = (0.64014837238797617, -1.3317281071737215) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz097.txt +description = Chesapeake, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz097.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz097.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz097.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz097.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz097.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz097.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz097.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz097.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz097.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz097.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz097.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz097.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz097.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz097.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz097.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('kcpk', 0.00033206215303985422) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz097.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz097.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz097.txt + +[vaz098] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz098.txt +centroid = (0.64139802813240421, -1.3274468145185794) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz098.txt +description = Virginia Beach, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz098.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz098.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz098.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz098.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz098.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz098.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz098.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz098.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz098.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz098.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz098.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz098.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz098.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz098.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz098.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('kntu', 0.0012201253290402793) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz098.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz098.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz098.txt + +[vaz099] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz099.txt +centroid = (0.65913929997892651, -1.3202927099146544) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz099.txt +description = Accomack, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz099.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz099.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz099.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz099.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz099.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz099.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz099.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz099.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz099.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz099.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz099.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz099.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz099.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz099.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz099.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('kmfv', 0.0026101764446643701) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz099.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz099.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz099.txt + +[vaz100] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz100.txt +centroid = (0.65199566735051373, -1.3246961756174362) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz100.txt +description = Northampton, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz100.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz100.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz100.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz100.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz100.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz100.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz100.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz100.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz100.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz100.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz100.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz100.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz100.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz100.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz100.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('kmfv', 0.0054410691377596134) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz100.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz100.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz100.txt + +[vaz501] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz501.txt +centroid = (0.67813022756987684, -1.3593514332450354) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz501.txt +description = Northern Fauquier County, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz501.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz501.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz501.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz501.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz501.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz501.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz501.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz501.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz501.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz501.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz501.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz501.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz501.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz501.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz501.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('khwy', 0.0052843453947407594) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz501.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz501.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz501.txt + +[vaz502] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz502.txt +centroid = (0.67361506079496747, -1.3563896095044012) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz502.txt +description = Southern Fauquier County, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz502.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz502.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz502.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz502.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz502.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz502.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz502.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz502.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz502.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz502.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz502.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz502.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz502.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz502.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz502.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('khwy', 0.0002743102566814987) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz502.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz502.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz502.txt + +[vaz503] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz503.txt +centroid = (0.67065323705433311, -1.3903606980652188) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz503.txt +description = Western Highland County, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz503.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz503.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz503.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz503.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz503.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz503.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz503.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz503.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz503.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz503.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz503.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz503.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz503.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz503.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz503.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('kekn', 0.0083906561843342317) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz503.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz503.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz503.txt + +[vaz504] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/va/vaz504.txt +centroid = (0.66901088222820637, -1.3879381810634506) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/va/vaz504.txt +description = Eastern Highland County, VA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/va/vaz504.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/va/vaz504.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/va/vaz504.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/va/vaz504.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/va/vaz504.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/va/vaz504.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/va/vaz504.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/va/vaz504.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/va.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/va/vaz504.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/va/vaz504.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/va/vaz504.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/va/vaz504.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/va/vaz504.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/va/vaz504.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/va/vaz504.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/va.txt +station = ('khsp', 0.0079045231653530369) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/va/vaz504.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/va/vaz504.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/va/vaz504.txt + +[viz001] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/vi/viz001.txt +centroid = (0.3201439993640679, -1.1319577209904503) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/vi/viz001.txt +description = St. Thomas...St. John... and Adjacent Islands, VI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/vi/viz001.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/vi/viz001.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/vi/viz001.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/vi/viz001.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/vi/viz001.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/vi/viz001.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/vi/viz001.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/vi/viz001.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/vi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/vi/viz001.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/vi/viz001.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/vi/viz001.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/vi/viz001.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/vi/viz001.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/vi/viz001.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/vi/viz001.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/vi.txt +station = ('tist', 0.0021095165635138489) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/vi/viz001.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/vi/viz001.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/vi/viz001.txt + +[viz002] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/vi/viz002.txt +centroid = (0.30950447224391042, -1.1304096139439315) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/vi/viz002.txt +description = St Croix, VI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/vi/viz002.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/vi/viz002.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/vi/viz002.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/vi/viz002.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/vi/viz002.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/vi/viz002.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/vi/viz002.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/vi/viz002.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/vi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/vi/viz002.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/vi/viz002.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/vi/viz002.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/vi/viz002.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/vi/viz002.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/vi/viz002.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/vi/viz002.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/vi.txt +station = ('tisx', 0.00079130360509302932) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/vi/viz002.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/vi/viz002.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/vi/viz002.txt + +[vtz001] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/vt/vtz001.txt +centroid = (0.78185165435739579, -1.2792355845907397) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/vt/vtz001.txt +description = Grand Isle, VT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/vt/vtz001.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/vt/vtz001.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/vt/vtz001.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/vt/vtz001.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/vt/vtz001.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/vt/vtz001.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/vt/vtz001.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/vt/vtz001.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/vt.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/vt/vtz001.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/vt/vtz001.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/vt/vtz001.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/vt/vtz001.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/vt/vtz001.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/vt/vtz001.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/vt/vtz001.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/vt.txt +station = ('kpbg', 0.0033327048791110103) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/vt/vtz001.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/vt/vtz001.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/vt/vtz001.txt + +[vtz002] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/vt/vtz002.txt +centroid = (0.78280984011674071, -1.2746837659015386) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/vt/vtz002.txt +description = Western Franklin, VT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/vt/vtz002.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/vt/vtz002.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/vt/vtz002.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/vt/vtz002.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/vt/vtz002.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/vt/vtz002.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/vt/vtz002.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/vt/vtz002.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/vt.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/vt/vtz002.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/vt/vtz002.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/vt/vtz002.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/vt/vtz002.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/vt/vtz002.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/vt/vtz002.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/vt/vtz002.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/vt.txt +station = ('kfso', 0.0015917160499955168) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/vt/vtz002.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/vt/vtz002.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/vt/vtz002.txt + +[vtz003] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/vt/vtz003.txt +centroid = (0.78241015971803407, -1.2608921741522794) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/vt/vtz003.txt +description = Orleans, VT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/vt/vtz003.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/vt/vtz003.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/vt/vtz003.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/vt/vtz003.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/vt/vtz003.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/vt/vtz003.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/vt/vtz003.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/vt/vtz003.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/vt.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/vt/vtz003.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/vt/vtz003.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/vt/vtz003.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/vt/vtz003.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/vt/vtz003.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/vt/vtz003.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/vt/vtz003.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/vt.txt +station = ('kefk', 0.00090977435075329882) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/vt/vtz003.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/vt/vtz003.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/vt/vtz003.txt + +[vtz004] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/vt/vtz004.txt +centroid = (0.78016217564146539, -1.2520992053807318) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/vt/vtz004.txt +description = Essex, VT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/vt/vtz004.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/vt/vtz004.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/vt/vtz004.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/vt/vtz004.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/vt/vtz004.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/vt/vtz004.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/vt/vtz004.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/vt/vtz004.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/vt.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/vt/vtz004.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/vt/vtz004.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/vt/vtz004.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/vt/vtz004.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/vt/vtz004.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/vt/vtz004.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/vt/vtz004.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/vt.txt +station = ('kcda', 0.0040487988899666899) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/vt/vtz004.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/vt/vtz004.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/vt/vtz004.txt + +[vtz005] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/vt/vtz005.txt +centroid = (0.77631023398231391, -1.2768165582474758) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/vt/vtz005.txt +description = Western Chittenden, VT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/vt/vtz005.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/vt/vtz005.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/vt/vtz005.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/vt/vtz005.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/vt/vtz005.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/vt/vtz005.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/vt/vtz005.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/vt/vtz005.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/vt.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/vt/vtz005.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/vt/vtz005.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/vt/vtz005.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/vt/vtz005.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/vt/vtz005.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/vt/vtz005.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/vt/vtz005.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/vt.txt +station = ('kbtv', 0.00023362304036205609) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/vt/vtz005.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/vt/vtz005.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/vt/vtz005.txt + +[vtz006] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/vt/vtz006.txt +centroid = (0.77851633015683464, -1.2678316032582089) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/vt/vtz006.txt +description = Lamoille, VT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/vt/vtz006.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/vt/vtz006.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/vt/vtz006.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/vt/vtz006.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/vt/vtz006.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/vt/vtz006.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/vt/vtz006.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/vt/vtz006.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/vt.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/vt/vtz006.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/vt/vtz006.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/vt/vtz006.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/vt/vtz006.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/vt/vtz006.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/vt/vtz006.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/vt/vtz006.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/vt.txt +station = ('kmvl', 0.0012999363176213075) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/vt/vtz006.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/vt/vtz006.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/vt/vtz006.txt + +[vtz007] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/vt/vtz007.txt +centroid = (0.77605541591152261, -1.2584207879314555) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/vt/vtz007.txt +description = Caledonia, VT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/vt/vtz007.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/vt/vtz007.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/vt/vtz007.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/vt/vtz007.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/vt/vtz007.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/vt/vtz007.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/vt/vtz007.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/vt/vtz007.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/vt.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/vt/vtz007.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/vt/vtz007.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/vt/vtz007.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/vt/vtz007.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/vt/vtz007.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/vt/vtz007.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/vt/vtz007.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/vt.txt +station = ('k1v4', 0.0013560420565441943) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/vt/vtz007.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/vt/vtz007.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/vt/vtz007.txt + +[vtz008] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/vt/vtz008.txt +centroid = (0.77271660105245754, -1.2673690910064306) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/vt/vtz008.txt +description = Washington, VT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/vt/vtz008.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/vt/vtz008.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/vt/vtz008.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/vt/vtz008.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/vt/vtz008.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/vt/vtz008.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/vt/vtz008.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/vt/vtz008.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/vt.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/vt/vtz008.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/vt/vtz008.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/vt/vtz008.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/vt/vtz008.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/vt/vtz008.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/vt/vtz008.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/vt/vtz008.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/vt.txt +station = ('kmpv', 0.0014159532717093989) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/vt/vtz008.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/vt/vtz008.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/vt/vtz008.txt + +[vtz009] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/vt/vtz009.txt +centroid = (0.76832011666668387, -1.2782686721851351) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/vt/vtz009.txt +description = Western Addison, VT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/vt/vtz009.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/vt/vtz009.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/vt/vtz009.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/vt/vtz009.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/vt/vtz009.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/vt/vtz009.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/vt/vtz009.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/vt/vtz009.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/vt.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/vt/vtz009.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/vt/vtz009.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/vt/vtz009.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/vt/vtz009.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/vt/vtz009.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/vt/vtz009.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/vt/vtz009.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/vt.txt +station = ('kbtv', 0.0078496150452608583) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/vt/vtz009.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/vt/vtz009.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/vt/vtz009.txt + +[vtz010] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/vt/vtz010.txt +centroid = (0.76804260931561674, -1.263215207386684) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/vt/vtz010.txt +description = Orange, VT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/vt/vtz010.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/vt/vtz010.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/vt/vtz010.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/vt/vtz010.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/vt/vtz010.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/vt/vtz010.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/vt/vtz010.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/vt/vtz010.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/vt.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/vt/vtz010.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/vt/vtz010.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/vt/vtz010.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/vt/vtz010.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/vt/vtz010.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/vt/vtz010.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/vt/vtz010.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/vt.txt +station = ('kmpv', 0.0041434863084108967) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/vt/vtz010.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/vt/vtz010.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/vt/vtz010.txt + +[vtz011] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/vt/vtz011.txt +centroid = (0.76071222645724046, -1.2765303242501485) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/vt/vtz011.txt +description = Western Rutland, VT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/vt/vtz011.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/vt/vtz011.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/vt/vtz011.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/vt/vtz011.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/vt/vtz011.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/vt/vtz011.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/vt/vtz011.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/vt/vtz011.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/vt.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/vt/vtz011.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/vt/vtz011.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/vt/vtz011.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/vt/vtz011.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/vt/vtz011.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/vt/vtz011.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/vt/vtz011.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/vt.txt +station = ('krut', 0.0025680162736566106) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/vt/vtz011.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/vt/vtz011.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/vt/vtz011.txt + +[vtz012] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/vt/vtz012.txt +centroid = (0.76061099736062476, -1.2668559642063439) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/vt/vtz012.txt +description = Windsor, VT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/vt/vtz012.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/vt/vtz012.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/vt/vtz012.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/vt/vtz012.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/vt/vtz012.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/vt/vtz012.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/vt/vtz012.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/vt/vtz012.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/vt.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/vt/vtz012.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/vt/vtz012.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/vt/vtz012.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/vt/vtz012.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/vt/vtz012.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/vt/vtz012.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/vt/vtz012.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/vt.txt +station = ('kvsf', 0.0041044535301217478) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/vt/vtz012.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/vt/vtz012.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/vt/vtz012.txt + +[vtz013] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/vt/vtz013.txt +centroid = (0.75111117024201968, -1.2757117648309633) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/vt/vtz013.txt +description = Bennington, VT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/vt/vtz013.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/vt/vtz013.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/vt/vtz013.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/vt/vtz013.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/vt/vtz013.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/vt/vtz013.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/vt/vtz013.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/vt/vtz013.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/vt.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/vt/vtz013.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/vt/vtz013.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/vt/vtz013.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/vt/vtz013.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/vt/vtz013.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/vt/vtz013.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/vt/vtz013.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/vt.txt +station = ('kddh', 0.0033286460280477492) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/vt/vtz013.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/vt/vtz013.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/vt/vtz013.txt + +[vtz014] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/vt/vtz014.txt +centroid = (0.7505177582963416, -1.2703675666613565) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/vt/vtz014.txt +description = Western Windham, VT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/vt/vtz014.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/vt/vtz014.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/vt/vtz014.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/vt/vtz014.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/vt/vtz014.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/vt/vtz014.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/vt/vtz014.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/vt/vtz014.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/vt.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/vt/vtz014.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/vt/vtz014.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/vt/vtz014.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/vt/vtz014.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/vt/vtz014.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/vt/vtz014.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/vt/vtz014.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/vt.txt +station = ('kvsf', 0.0069863518087555105) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/vt/vtz014.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/vt/vtz014.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/vt/vtz014.txt + +[vtz015] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/vt/vtz015.txt +centroid = (0.74992434635066352, -1.2663812346498016) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/vt/vtz015.txt +description = Eastern Windham, VT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/vt/vtz015.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/vt/vtz015.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/vt/vtz015.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/vt/vtz015.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/vt/vtz015.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/vt/vtz015.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/vt/vtz015.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/vt/vtz015.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/vt.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/vt/vtz015.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/vt/vtz015.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/vt/vtz015.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/vt/vtz015.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/vt/vtz015.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/vt/vtz015.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/vt/vtz015.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/vt.txt +station = ('keen', 0.003908355902274268) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/vt/vtz015.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/vt/vtz015.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/vt/vtz015.txt + +[vtz016] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/vt/vtz016.txt +centroid = (0.78306291285827989, -1.2692994251591361) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/vt/vtz016.txt +description = Eastern Franklin, VT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/vt/vtz016.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/vt/vtz016.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/vt/vtz016.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/vt/vtz016.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/vt/vtz016.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/vt/vtz016.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/vt/vtz016.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/vt/vtz016.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/vt.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/vt/vtz016.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/vt/vtz016.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/vt/vtz016.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/vt/vtz016.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/vt/vtz016.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/vt/vtz016.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/vt/vtz016.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/vt.txt +station = ('cwfq', 0.0034733778366298619) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/vt/vtz016.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/vt/vtz016.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/vt/vtz016.txt + +[vtz017] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/vt/vtz017.txt +centroid = (0.77533983091820491, -1.2728459341991887) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/vt/vtz017.txt +description = Eastern Chittenden, VT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/vt/vtz017.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/vt/vtz017.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/vt/vtz017.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/vt/vtz017.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/vt/vtz017.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/vt/vtz017.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/vt/vtz017.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/vt/vtz017.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/vt.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/vt/vtz017.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/vt/vtz017.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/vt/vtz017.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/vt/vtz017.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/vt/vtz017.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/vt/vtz017.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/vt/vtz017.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/vt.txt +station = ('kbtv', 0.0028576088160648027) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/vt/vtz017.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/vt/vtz017.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/vt/vtz017.txt + +[vtz018] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/vt/vtz018.txt +centroid = (0.76875819430893433, -1.2735213766197104) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/vt/vtz018.txt +description = Eastern Addison, VT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/vt/vtz018.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/vt/vtz018.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/vt/vtz018.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/vt/vtz018.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/vt/vtz018.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/vt/vtz018.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/vt/vtz018.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/vt/vtz018.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/vt.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/vt/vtz018.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/vt/vtz018.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/vt/vtz018.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/vt/vtz018.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/vt/vtz018.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/vt/vtz018.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/vt/vtz018.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/vt.txt +station = ('kmpv', 0.0056899237877454968) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/vt/vtz018.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/vt/vtz018.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/vt/vtz018.txt + +[vtz019] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/vt/vtz019.txt +centroid = (0.7604626443742053, -1.2718825124520878) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/vt/vtz019.txt +description = Eastern Rutland, VT +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/vt/vtz019.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/vt/vtz019.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/vt/vtz019.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/vt/vtz019.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/vt/vtz019.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/vt/vtz019.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/vt/vtz019.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/vt/vtz019.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/vt.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/vt/vtz019.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/vt/vtz019.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/vt/vtz019.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/vt/vtz019.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/vt/vtz019.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/vt/vtz019.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/vt/vtz019.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/vt.txt +station = ('krut', 0.0011728037387749716) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/vt/vtz019.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/vt/vtz019.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/vt/vtz019.txt + +[waz001] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wa/waz001.txt +centroid = (0.84785651600931744, -2.1461039721420314) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wa/waz001.txt +description = San Juan County, WA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wa/waz001.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wa/waz001.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wa/waz001.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wa/waz001.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wa/waz001.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wa/waz001.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wa/waz001.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wa/waz001.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wa/waz001.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wa/waz001.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wa/waz001.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wa/waz001.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wa/waz001.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wa/waz001.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wa/waz001.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wa.txt +station = ('kfhr', 0.001354419009142149) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wa/waz001.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wa/waz001.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wa/waz001.txt + +[waz019] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wa/waz019.txt +centroid = (0.80457933187686592, -2.1290311613990229) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wa/waz019.txt +description = South Washington Cascades, WA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wa/waz019.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wa/waz019.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wa/waz019.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wa/waz019.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wa/waz019.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wa/waz019.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wa/waz019.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wa/waz019.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wa/waz019.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wa/waz019.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wa/waz019.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wa/waz019.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wa/waz019.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wa/waz019.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wa/waz019.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wa.txt +station = ('kczk', 0.0076450936811255712) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wa/waz019.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wa/waz019.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wa/waz019.txt + +[waz020] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wa/waz020.txt +centroid = (0.81161126343315115, -2.154163902627741) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wa/waz020.txt +description = Willapa Hills, WA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wa/waz020.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wa/waz020.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wa/waz020.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wa/waz020.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wa/waz020.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wa/waz020.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wa/waz020.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wa/waz020.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wa/waz020.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wa/waz020.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wa/waz020.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wa/waz020.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wa/waz020.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wa/waz020.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wa/waz020.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wa.txt +station = ('kcls', 0.0061713052429270745) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wa/waz020.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wa/waz020.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wa/waz020.txt + +[waz021] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wa/waz021.txt +centroid = (0.81132502943582407, -2.16067398073768) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wa/waz021.txt +description = South Washington Coast, WA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wa/waz021.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wa/waz021.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wa/waz021.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wa/waz021.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wa/waz021.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wa/waz021.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wa/waz021.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wa/waz021.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wa/waz021.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wa/waz021.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wa/waz021.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wa/waz021.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wa/waz021.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wa/waz021.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wa/waz021.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wa.txt +station = ('kast', 0.0059462859021083914) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wa/waz021.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wa/waz021.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wa/waz021.txt + +[waz022] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wa/waz022.txt +centroid = (0.80609253233834499, -2.1457444343161205) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wa/waz022.txt +description = Lower Columbia and I - 5 Corridor in Cowlitz County, WA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wa/waz022.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wa/waz022.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wa/waz022.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wa/waz022.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wa/waz022.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wa/waz022.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wa/waz022.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wa/waz022.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wa/waz022.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wa/waz022.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wa/waz022.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wa/waz022.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wa/waz022.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wa/waz022.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wa/waz022.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wa.txt +station = ('kkls', 0.0013079730871320228) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wa/waz022.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wa/waz022.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wa/waz022.txt + +[waz023] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wa/waz023.txt +centroid = (0.7971023413613223, -2.1283818989172811) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wa/waz023.txt +description = Western Columbia River Gorge, WA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wa/waz023.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wa/waz023.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wa/waz023.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wa/waz023.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wa/waz023.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wa/waz023.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wa/waz023.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wa/waz023.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wa/waz023.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wa/waz023.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wa/waz023.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wa/waz023.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wa/waz023.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wa/waz023.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wa/waz023.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wa.txt +station = ('kczk', 0.00078318285722985361) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wa/waz023.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wa/waz023.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wa/waz023.txt + +[waz024] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wa/waz024.txt +centroid = (0.79802212987712329, -2.109689422628422) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wa/waz024.txt +description = East Columbia River Gorge, WA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wa/waz024.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wa/waz024.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wa/waz024.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wa/waz024.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wa/waz024.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wa/waz024.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wa/waz024.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wa/waz024.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wa/waz024.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wa/waz024.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wa/waz024.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wa/waz024.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wa/waz024.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wa/waz024.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wa/waz024.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wa.txt +station = ('kdls', 0.0040006189990936343) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wa/waz024.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wa/waz024.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wa/waz024.txt + +[waz026] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wa/waz026.txt +centroid = (0.81930816543444618, -2.0998754362444574) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wa/waz026.txt +description = Kittitas Valley, WA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wa/waz026.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wa/waz026.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wa/waz026.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wa/waz026.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wa/waz026.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wa/waz026.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wa/waz026.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wa/waz026.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wa/waz026.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wa/waz026.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wa/waz026.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wa/waz026.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wa/waz026.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wa/waz026.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wa/waz026.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wa.txt +station = ('keln', 0.0030512713467232997) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wa/waz026.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wa/waz026.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wa/waz026.txt + +[waz027] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wa/waz027.txt +centroid = (0.81041047690777912, -2.0998405296594176) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wa/waz027.txt +description = Yakima Valley, WA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wa/waz027.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wa/waz027.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wa/waz027.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wa/waz027.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wa/waz027.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wa/waz027.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wa/waz027.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wa/waz027.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wa/waz027.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wa/waz027.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wa/waz027.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wa/waz027.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wa/waz027.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wa/waz027.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wa/waz027.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wa.txt +station = ('kykm', 0.0035362794303853938) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wa/waz027.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wa/waz027.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wa/waz027.txt + +[waz028] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wa/waz028.txt +centroid = (0.8087384514843684, -2.0801252904288901) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wa/waz028.txt +description = Lower Columbia Basin, WA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wa/waz028.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wa/waz028.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wa/waz028.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wa/waz028.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wa/waz028.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wa/waz028.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wa/waz028.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wa/waz028.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wa/waz028.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wa/waz028.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wa/waz028.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wa/waz028.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wa/waz028.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wa/waz028.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wa/waz028.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wa.txt +station = ('kpsc', 0.0014655932921987347) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wa/waz028.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wa/waz028.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wa/waz028.txt + +[waz029] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wa/waz029.txt +centroid = (0.8082933925251099, -2.063193851355293) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wa/waz029.txt +description = Foothills of the Blue Mountains, WA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wa/waz029.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wa/waz029.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wa/waz029.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wa/waz029.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wa/waz029.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wa/waz029.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wa/waz029.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wa/waz029.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wa/waz029.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wa/waz029.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wa/waz029.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wa/waz029.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wa/waz029.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wa/waz029.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wa/waz029.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wa.txt +station = ('kalw', 0.0037948743930622778) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wa/waz029.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wa/waz029.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wa/waz029.txt + +[waz030] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wa/waz030.txt +centroid = (0.80548341242939903, -2.0562212609935755) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wa/waz030.txt +description = Northwest Blue Mountains, WA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wa/waz030.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wa/waz030.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wa/waz030.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wa/waz030.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wa/waz030.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wa/waz030.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wa/waz030.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wa/waz030.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wa/waz030.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wa/waz030.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wa/waz030.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wa/waz030.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wa/waz030.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wa/waz030.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wa/waz030.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wa.txt +station = ('kalw', 0.0057604715799293455) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wa/waz030.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wa/waz030.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wa/waz030.txt + +[waz031] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wa/waz031.txt +centroid = (0.80628451855606442, -2.0488402635868912) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wa/waz031.txt +description = Northeast Blue Mountains, WA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wa/waz031.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wa/waz031.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wa/waz031.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wa/waz031.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wa/waz031.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wa/waz031.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wa/waz031.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wa/waz031.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wa/waz031.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wa/waz031.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wa/waz031.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wa/waz031.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wa/waz031.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wa/waz031.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wa/waz031.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wa.txt +station = ('klws', 0.0053914794619487356) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wa/waz031.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wa/waz031.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wa/waz031.txt + +[waz032] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wa/waz032.txt +centroid = (0.81021674536080757, -2.0486587493446837) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wa/waz032.txt +description = Lower Garfield and Asotin Counties, WA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wa/waz032.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wa/waz032.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wa/waz032.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wa/waz032.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wa/waz032.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wa/waz032.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wa/waz032.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wa/waz032.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wa/waz032.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wa/waz032.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wa/waz032.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wa/waz032.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wa/waz032.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wa/waz032.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wa/waz032.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wa.txt +station = ('klws', 0.0044730571370950999) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wa/waz032.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wa/waz032.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wa/waz032.txt + +[waz033] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wa/waz033.txt +centroid = (0.81903414874188296, -2.050880553482473) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wa/waz033.txt +description = Washington Palouse, WA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wa/waz033.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wa/waz033.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wa/waz033.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wa/waz033.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wa/waz033.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wa/waz033.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wa/waz033.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wa/waz033.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wa/waz033.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wa/waz033.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wa/waz033.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wa/waz033.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wa/waz033.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wa/waz033.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wa/waz033.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wa.txt +station = ('kpuw', 0.0055910672465130495) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wa/waz033.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wa/waz033.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wa/waz033.txt + +[waz034] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wa/waz034.txt +centroid = (0.82049324399655033, -2.0855253391345601) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wa/waz034.txt +description = Moses Lake Area, WA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wa/waz034.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wa/waz034.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wa/waz034.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wa/waz034.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wa/waz034.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wa/waz034.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wa/waz034.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wa/waz034.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wa/waz034.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wa/waz034.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wa/waz034.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wa/waz034.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wa/waz034.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wa/waz034.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wa/waz034.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wa.txt +station = ('kmwh', 0.0039029232910279634) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wa/waz034.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wa/waz034.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wa/waz034.txt + +[waz035] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wa/waz035.txt +centroid = (0.82650939392817468, -2.070162951058506) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wa/waz035.txt +description = Upper Columbia Basin, WA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wa/waz035.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wa/waz035.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wa/waz035.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wa/waz035.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wa/waz035.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wa/waz035.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wa/waz035.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wa/waz035.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wa/waz035.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wa/waz035.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wa/waz035.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wa/waz035.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wa/waz035.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wa/waz035.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wa/waz035.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wa.txt +station = ('keph', 0.010750519534795845) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wa/waz035.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wa/waz035.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wa/waz035.txt + +[waz036] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wa/waz036.txt +centroid = (0.83109262854391186, -2.0527340931480906) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wa/waz036.txt +description = Spokane Area, WA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wa/waz036.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wa/waz036.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wa/waz036.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wa/waz036.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wa/waz036.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wa/waz036.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wa/waz036.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wa/waz036.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wa/waz036.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wa/waz036.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wa/waz036.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wa/waz036.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wa/waz036.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wa/waz036.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wa/waz036.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wa.txt +station = ('kska', 0.0004360190194879939) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wa/waz036.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wa/waz036.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wa/waz036.txt + +[waz037] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wa/waz037.txt +centroid = (0.84488247496391899, -2.0527724903916349) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wa/waz037.txt +description = Northeast Mountains, WA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wa/waz037.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wa/waz037.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wa/waz037.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wa/waz037.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wa/waz037.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wa/waz037.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wa/waz037.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wa/waz037.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wa/waz037.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wa/waz037.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wa/waz037.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wa/waz037.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wa/waz037.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wa/waz037.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wa/waz037.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wa.txt +station = ('kdew', 0.0079914896564241677) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wa/waz037.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wa/waz037.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wa/waz037.txt + +[waz038] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wa/waz038.txt +centroid = (0.84705890054115596, -2.0716831328369931) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wa/waz038.txt +description = Okanogan Highlands, WA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wa/waz038.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wa/waz038.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wa/waz038.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wa/waz038.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wa/waz038.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wa/waz038.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wa/waz038.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wa/waz038.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wa/waz038.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wa/waz038.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wa/waz038.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wa/waz038.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wa/waz038.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wa/waz038.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wa/waz038.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wa.txt +station = ('komk', 0.0095300669193007642) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wa/waz038.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wa/waz038.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wa/waz038.txt + +[waz039] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wa/waz039.txt +centroid = (0.79830661854519835, -2.1384699019938083) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wa/waz039.txt +description = Greater Vancouver Area, WA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wa/waz039.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wa/waz039.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wa/waz039.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wa/waz039.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wa/waz039.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wa/waz039.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wa/waz039.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wa/waz039.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wa/waz039.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wa/waz039.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wa/waz039.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wa/waz039.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wa/waz039.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wa/waz039.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wa/waz039.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wa.txt +station = ('kvuo', 0.0026298126022824158) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wa/waz039.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wa/waz039.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wa/waz039.txt + +[waz040] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wa/waz040.txt +centroid = (0.80344312253381767, -2.1380580042903374) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wa/waz040.txt +description = South Washington Cascade Foothills, WA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wa/waz040.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wa/waz040.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wa/waz040.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wa/waz040.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wa/waz040.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wa/waz040.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wa/waz040.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wa/waz040.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wa/waz040.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wa/waz040.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wa/waz040.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wa/waz040.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wa/waz040.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wa/waz040.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wa/waz040.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wa.txt +station = ('kkls', 0.005034146838794773) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wa/waz040.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wa/waz040.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wa/waz040.txt + +[waz041] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wa/waz041.txt +centroid = (0.83129334140789124, -2.0982732239911268) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wa/waz041.txt +description = Wenatchee Area, WA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wa/waz041.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wa/waz041.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wa/waz041.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wa/waz041.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wa/waz041.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wa/waz041.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wa/waz041.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wa/waz041.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wa/waz041.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wa/waz041.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wa/waz041.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wa/waz041.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wa/waz041.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wa/waz041.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wa/waz041.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wa.txt +station = ('keat', 0.0040158116453115423) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wa/waz041.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wa/waz041.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wa/waz041.txt + +[waz042] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wa/waz042.txt +centroid = (0.84281251447105376, -2.1016591627399959) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wa/waz042.txt +description = East Slopes Northern Cascades, WA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wa/waz042.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wa/waz042.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wa/waz042.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wa/waz042.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wa/waz042.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wa/waz042.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wa/waz042.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wa/waz042.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wa/waz042.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wa/waz042.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wa/waz042.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wa/waz042.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wa/waz042.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wa/waz042.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wa/waz042.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wa.txt +station = ('komk', 0.010876216589863414) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wa/waz042.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wa/waz042.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wa/waz042.txt + +[waz043] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wa/waz043.txt +centroid = (0.84385971202225041, -2.0848289527630146) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wa/waz043.txt +description = Okanogan Valley, WA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wa/waz043.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wa/waz043.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wa/waz043.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wa/waz043.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wa/waz043.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wa/waz043.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wa/waz043.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wa/waz043.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wa/waz043.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wa/waz043.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wa/waz043.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wa/waz043.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wa/waz043.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wa/waz043.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wa/waz043.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wa.txt +station = ('komk', 0.0021766316429189) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wa/waz043.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wa/waz043.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wa/waz043.txt + +[waz044] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wa/waz044.txt +centroid = (0.83195482119439701, -2.0888606633351214) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wa/waz044.txt +description = Waterville Plateau, WA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wa/waz044.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wa/waz044.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wa/waz044.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wa/waz044.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wa/waz044.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wa/waz044.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wa/waz044.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wa/waz044.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wa/waz044.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wa/waz044.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wa/waz044.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wa/waz044.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wa/waz044.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wa/waz044.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wa/waz044.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wa.txt +station = ('keph', 0.0067070713185978428) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wa/waz044.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wa/waz044.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wa/waz044.txt + +[waz503] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wa/waz503.txt +centroid = (0.8527469285734055, -2.1376303986235987) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wa/waz503.txt +description = San Juan and Western Whatcom Counties, WA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wa/waz503.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wa/waz503.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wa/waz503.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wa/waz503.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wa/waz503.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wa/waz503.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wa/waz503.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wa/waz503.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wa/waz503.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wa/waz503.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wa/waz503.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wa/waz503.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wa/waz503.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wa/waz503.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wa/waz503.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wa.txt +station = ('kbli', 0.001212086327576976) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wa/waz503.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wa/waz503.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wa/waz503.txt + +[waz504] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wa/waz504.txt +centroid = (0.81542829850726273, -2.1449625268112271) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wa/waz504.txt +description = Southwest Interior, WA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wa/waz504.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wa/waz504.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wa/waz504.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wa/waz504.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wa/waz504.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wa/waz504.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wa/waz504.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wa/waz504.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wa/waz504.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wa/waz504.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wa/waz504.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wa/waz504.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wa/waz504.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wa/waz504.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wa/waz504.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wa.txt +station = ('kcls', 0.0012173795549645287) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wa/waz504.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wa/waz504.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wa/waz504.txt + +[waz505] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wa/waz505.txt +centroid = (0.83011349883354302, -2.1297641996848604) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wa/waz505.txt +description = East Puget Sound Lowlands, WA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wa/waz505.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wa/waz505.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wa/waz505.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wa/waz505.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wa/waz505.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wa/waz505.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wa/waz505.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wa/waz505.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wa/waz505.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wa/waz505.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wa/waz505.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wa/waz505.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wa/waz505.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wa/waz505.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wa/waz505.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wa.txt +station = ('krnt', 0.0024885636095541906) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wa/waz505.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wa/waz505.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wa/waz505.txt + +[waz506] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wa/waz506.txt +centroid = (0.84586684066204376, -2.135703555129397) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wa/waz506.txt +description = Western Skagit County, WA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wa/waz506.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wa/waz506.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wa/waz506.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wa/waz506.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wa/waz506.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wa/waz506.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wa/waz506.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wa/waz506.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wa/waz506.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wa/waz506.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wa/waz506.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wa/waz506.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wa/waz506.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wa/waz506.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wa/waz506.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wa.txt +station = ('kbvs', 0.00063468170673230766) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wa/waz506.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wa/waz506.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wa/waz506.txt + +[waz507] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wa/waz507.txt +centroid = (0.83871622671662316, -2.1337435503794073) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wa/waz507.txt +description = Everett and vicinity, WA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wa/waz507.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wa/waz507.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wa/waz507.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wa/waz507.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wa/waz507.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wa/waz507.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wa/waz507.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wa/waz507.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wa/waz507.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wa/waz507.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wa/waz507.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wa/waz507.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wa/waz507.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wa/waz507.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wa/waz507.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wa.txt +station = ('kawo', 0.002202927385004536) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wa/waz507.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wa/waz507.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wa/waz507.txt + +[waz508] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wa/waz508.txt +centroid = (0.82939791384022532, -2.1371539237378046) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wa/waz508.txt +description = Seattle/Bremerton area, WA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wa/waz508.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wa/waz508.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wa/waz508.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wa/waz508.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wa/waz508.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wa/waz508.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wa/waz508.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wa/waz508.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wa/waz508.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wa/waz508.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wa/waz508.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wa/waz508.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wa/waz508.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wa/waz508.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wa/waz508.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wa.txt +station = ('ksea', 0.0020012369496248648) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wa/waz508.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wa/waz508.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wa/waz508.txt + +[waz509] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wa/waz509.txt +centroid = (0.82327704415348124, -2.1380998921923853) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wa/waz509.txt +description = Tacoma area, WA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wa/waz509.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wa/waz509.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wa/waz509.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wa/waz509.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wa/waz509.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wa/waz509.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wa/waz509.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wa/waz509.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wa/waz509.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wa/waz509.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wa/waz509.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wa/waz509.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wa/waz509.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wa/waz509.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wa/waz509.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wa.txt +station = ('ktcm', 0.00043158487349098272) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wa/waz509.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wa/waz509.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wa/waz509.txt + +[waz510] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wa/waz510.txt +centroid = (0.83973200834128381, -2.1404787759628539) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wa/waz510.txt +description = Admiralty Inlet area, WA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wa/waz510.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wa/waz510.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wa/waz510.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wa/waz510.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wa/waz510.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wa/waz510.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wa/waz510.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wa/waz510.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wa/waz510.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wa/waz510.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wa/waz510.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wa/waz510.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wa/waz510.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wa/waz510.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wa/waz510.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wa.txt +station = ('knuw', 0.0041361910852046905) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wa/waz510.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wa/waz510.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wa/waz510.txt + +[waz511] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wa/waz511.txt +centroid = (0.82899299745376265, -2.1461790212998673) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wa/waz511.txt +description = Hood Canal area, WA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wa/waz511.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wa/waz511.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wa/waz511.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wa/waz511.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wa/waz511.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wa/waz511.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wa/waz511.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wa/waz511.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wa/waz511.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wa/waz511.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wa/waz511.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wa/waz511.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wa/waz511.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wa/waz511.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wa/waz511.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wa.txt +station = ('kpwt', 0.0025590472118346723) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wa/waz511.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wa/waz511.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wa/waz511.txt + +[waz512] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wa/waz512.txt +centroid = (0.82131529407423953, -2.1556753577599683) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wa/waz512.txt +description = Lower Chehalis Valley area, WA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wa/waz512.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wa/waz512.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wa/waz512.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wa/waz512.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wa/waz512.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wa/waz512.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wa/waz512.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wa/waz512.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wa/waz512.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wa/waz512.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wa/waz512.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wa/waz512.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wa/waz512.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wa/waz512.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wa/waz512.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wa.txt +station = ('kshn', 0.0054299431358676561) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wa/waz512.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wa/waz512.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wa/waz512.txt + +[waz513] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wa/waz513.txt +centroid = (0.83343835105859221, -2.1572095021724715) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wa/waz513.txt +description = Olympics County, WA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wa/waz513.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wa/waz513.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wa/waz513.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wa/waz513.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wa/waz513.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wa/waz513.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wa/waz513.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wa/waz513.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wa/waz513.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wa/waz513.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wa/waz513.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wa/waz513.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wa/waz513.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wa/waz513.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wa/waz513.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wa.txt +station = ('kclm', 0.0064604695963134126) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wa/waz513.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wa/waz513.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wa/waz513.txt + +[waz514] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wa/waz514.txt +centroid = (0.83908449118879391, -2.1513190159469904) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wa/waz514.txt +description = Eastern Strait of Juan de Fuca, WA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wa/waz514.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wa/waz514.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wa/waz514.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wa/waz514.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wa/waz514.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wa/waz514.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wa/waz514.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wa/waz514.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wa/waz514.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wa/waz514.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wa/waz514.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wa/waz514.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wa/waz514.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wa/waz514.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wa/waz514.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wa.txt +station = ('kclm', 0.0028692954504789319) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wa/waz514.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wa/waz514.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wa/waz514.txt + +[waz515] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wa/waz515.txt +centroid = (0.84097817342720771, -2.1667861237781643) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wa/waz515.txt +description = Western Strait of Juan de Fuca, WA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wa/waz515.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wa/waz515.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wa/waz515.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wa/waz515.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wa/waz515.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wa/waz515.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wa/waz515.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wa/waz515.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wa/waz515.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wa/waz515.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wa/waz515.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wa/waz515.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wa/waz515.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wa/waz515.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wa/waz515.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wa.txt +station = ('cwsp', 0.0043866545336892927) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wa/waz515.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wa/waz515.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wa/waz515.txt + +[waz516] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wa/waz516.txt +centroid = (0.83655201844415017, -2.1713047812115773) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wa/waz516.txt +description = North Coast, WA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wa/waz516.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wa/waz516.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wa/waz516.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wa/waz516.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wa/waz516.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wa/waz516.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wa/waz516.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wa/waz516.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wa/waz516.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wa/waz516.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wa/waz516.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wa/waz516.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wa/waz516.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wa/waz516.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wa/waz516.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wa.txt +station = ('kuil', 0.0018722835698814673) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wa/waz516.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wa/waz516.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wa/waz516.txt + +[waz517] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wa/waz517.txt +centroid = (0.82362436467462807, -2.1646830020295109) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wa/waz517.txt +description = Central Coast, WA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wa/waz517.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wa/waz517.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wa/waz517.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wa/waz517.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wa/waz517.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wa/waz517.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wa/waz517.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wa/waz517.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wa/waz517.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wa/waz517.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wa/waz517.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wa/waz517.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wa/waz517.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wa/waz517.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wa/waz517.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wa.txt +station = ('khqm', 0.0040577783442163791) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wa/waz517.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wa/waz517.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wa/waz517.txt + +[waz518] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wa/waz518.txt +centroid = (0.84636600482811419, -2.1205959851241345) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wa/waz518.txt +description = West Slopes of Northern Cascades and Passes, WA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wa/waz518.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wa/waz518.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wa/waz518.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wa/waz518.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wa/waz518.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wa/waz518.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wa/waz518.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wa/waz518.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wa/waz518.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wa/waz518.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wa/waz518.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wa/waz518.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wa/waz518.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wa/waz518.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wa/waz518.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wa.txt +station = ('kawo', 0.0095971474302993694) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wa/waz518.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wa/waz518.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wa/waz518.txt + +[waz519] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wa/waz519.txt +centroid = (0.81972704445492484, -2.1254619630786946) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wa/waz519.txt +description = West Slopes of Central Cascades and Passes, WA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wa/waz519.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wa/waz519.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wa/waz519.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wa/waz519.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wa/waz519.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wa/waz519.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wa/waz519.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wa/waz519.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wa/waz519.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wa/waz519.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wa/waz519.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wa/waz519.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wa/waz519.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wa/waz519.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wa/waz519.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wa.txt +station = ('kplu', 0.0064963217430126863) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wa/waz519.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wa/waz519.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wa/waz519.txt + +[waz520] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wa/waz520.txt +centroid = (0.81613864751282439, -2.1128641765377996) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wa/waz520.txt +description = East Slopes of the Cascades, WA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wa/waz520.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wa/waz520.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wa/waz520.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wa/waz520.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wa/waz520.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wa/waz520.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wa/waz520.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wa/waz520.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wa/waz520.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wa/waz520.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wa/waz520.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wa/waz520.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wa/waz520.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wa/waz520.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wa/waz520.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wa.txt +station = ('kykm', 0.007145785576903891) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wa/waz520.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wa/waz520.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wa/waz520.txt + +[waz521] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wa/waz521.txt +centroid = (0.80238894366561309, -2.1057833757624587) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wa/waz521.txt +description = Simcoe Highlands, WA +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wa/waz521.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wa/waz521.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wa/waz521.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wa/waz521.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wa/waz521.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wa/waz521.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wa/waz521.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wa/waz521.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wa.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wa/waz521.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wa/waz521.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wa/waz521.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wa/waz521.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wa/waz521.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wa/waz521.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wa/waz521.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wa.txt +station = ('kdls', 0.0088280441694217702) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wa/waz521.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wa/waz521.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wa/waz521.txt + +[wiz001] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wi/wiz001.txt +centroid = (0.81037207966423519, -1.6042141459828319) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wi/wiz001.txt +description = Douglas, WI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wi/wiz001.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wi/wiz001.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wi/wiz001.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wi/wiz001.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wi/wiz001.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wi/wiz001.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wi/wiz001.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wi/wiz001.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wi/wiz001.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wi/wiz001.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wi/wiz001.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wi/wiz001.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wi/wiz001.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wi/wiz001.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wi/wiz001.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wi.txt +station = ('ksuw', 0.005007322137660683) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wi/wiz001.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wi/wiz001.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wi/wiz001.txt + +[wiz002] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wi/wiz002.txt +centroid = (0.81199872652709382, -1.5917507497943404) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wi/wiz002.txt +description = Bayfield, WI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wi/wiz002.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wi/wiz002.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wi/wiz002.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wi/wiz002.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wi/wiz002.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wi/wiz002.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wi/wiz002.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wi/wiz002.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wi/wiz002.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wi/wiz002.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wi/wiz002.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wi/wiz002.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wi/wiz002.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wi/wiz002.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wi/wiz002.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wi.txt +station = ('kasx', 0.0034387045122795121) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wi/wiz002.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wi/wiz002.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wi/wiz002.txt + +[wiz003] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wi/wiz003.txt +centroid = (0.8083457524026697, -1.5826314044526701) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wi/wiz003.txt +description = Ashland, WI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wi/wiz003.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wi/wiz003.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wi/wiz003.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wi/wiz003.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wi/wiz003.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wi/wiz003.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wi/wiz003.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wi/wiz003.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wi/wiz003.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wi/wiz003.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wi/wiz003.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wi/wiz003.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wi/wiz003.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wi/wiz003.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wi/wiz003.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wi.txt +station = ('kasx', 0.0050086272448099092) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wi/wiz003.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wi/wiz003.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wi/wiz003.txt + +[wiz004] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wi/wiz004.txt +centroid = (0.80742945454537274, -1.5750200235847229) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wi/wiz004.txt +description = Iron, WI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wi/wiz004.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wi/wiz004.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wi/wiz004.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wi/wiz004.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wi/wiz004.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wi/wiz004.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wi/wiz004.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wi/wiz004.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wi/wiz004.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wi/wiz004.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wi/wiz004.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wi/wiz004.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wi/wiz004.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wi/wiz004.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wi/wiz004.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wi.txt +station = ('kiwd', 0.0049079227578450934) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wi/wiz004.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wi/wiz004.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wi/wiz004.txt + +[wiz005] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wi/wiz005.txt +centroid = (0.80377473509169661, -1.5623279892642199) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wi/wiz005.txt +description = Vilas, WI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wi/wiz005.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wi/wiz005.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wi/wiz005.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wi/wiz005.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wi/wiz005.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wi/wiz005.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wi/wiz005.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wi/wiz005.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wi/wiz005.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wi/wiz005.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wi/wiz005.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wi/wiz005.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wi/wiz005.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wi/wiz005.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wi/wiz005.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wi.txt +station = ('karv', 0.0033729108194530438) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wi/wiz005.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wi/wiz005.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wi/wiz005.txt + +[wiz006] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wi/wiz006.txt +centroid = (0.80045511885440335, -1.6121187421651142) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wi/wiz006.txt +description = Burnett, WI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wi/wiz006.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wi/wiz006.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wi/wiz006.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wi/wiz006.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wi/wiz006.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wi/wiz006.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wi/wiz006.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wi/wiz006.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wi/wiz006.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wi/wiz006.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wi/wiz006.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wi/wiz006.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wi/wiz006.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wi/wiz006.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wi/wiz006.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wi.txt +station = ('krzn', 0.00069931658618563016) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wi/wiz006.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wi/wiz006.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wi/wiz006.txt + +[wiz007] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wi/wiz007.txt +centroid = (0.80109390936063329, -1.602058664356619) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wi/wiz007.txt +description = Washburn, WI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wi/wiz007.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wi/wiz007.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wi/wiz007.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wi/wiz007.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wi/wiz007.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wi/wiz007.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wi/wiz007.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wi/wiz007.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wi/wiz007.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wi/wiz007.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wi/wiz007.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wi/wiz007.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wi/wiz007.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wi/wiz007.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wi/wiz007.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wi.txt +station = ('khyr', 0.0046189390353939697) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wi/wiz007.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wi/wiz007.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wi/wiz007.txt + +[wiz008] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wi/wiz008.txt +centroid = (0.80075706081499842, -1.5907751107424757) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wi/wiz008.txt +description = Sawyer, WI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wi/wiz008.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wi/wiz008.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wi/wiz008.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wi/wiz008.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wi/wiz008.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wi/wiz008.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wi/wiz008.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wi/wiz008.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wi/wiz008.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wi/wiz008.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wi/wiz008.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wi/wiz008.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wi/wiz008.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wi/wiz008.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wi/wiz008.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wi.txt +station = ('khyr', 0.0044063678265361195) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wi/wiz008.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wi/wiz008.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wi/wiz008.txt + +[wiz009] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wi/wiz009.txt +centroid = (0.7972733836280177, -1.5771039467116041) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wi/wiz009.txt +description = Price, WI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wi/wiz009.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wi/wiz009.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wi/wiz009.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wi/wiz009.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wi/wiz009.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wi/wiz009.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wi/wiz009.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wi/wiz009.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wi/wiz009.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wi/wiz009.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wi/wiz009.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wi/wiz009.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wi/wiz009.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wi/wiz009.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wi/wiz009.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wi.txt +station = ('kpbh', 0.00058179791898031047) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wi/wiz009.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wi/wiz009.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wi/wiz009.txt + +[wiz010] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wi/wiz010.txt +centroid = (0.79771320659952027, -1.5624484169826076) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wi/wiz010.txt +description = Oneida, WI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wi/wiz010.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wi/wiz010.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wi/wiz010.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wi/wiz010.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wi/wiz010.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wi/wiz010.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wi/wiz010.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wi/wiz010.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wi/wiz010.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wi/wiz010.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wi/wiz010.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wi/wiz010.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wi/wiz010.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wi/wiz010.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wi/wiz010.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wi.txt +station = ('krhi', 0.0013452937844649743) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wi/wiz010.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wi/wiz010.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wi/wiz010.txt + +[wiz011] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wi/wiz011.txt +centroid = (0.79704474549600646, -1.5493357583123741) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wi/wiz011.txt +description = Forest, WI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wi/wiz011.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wi/wiz011.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wi/wiz011.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wi/wiz011.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wi/wiz011.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wi/wiz011.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wi/wiz011.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wi/wiz011.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wi/wiz011.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wi/wiz011.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wi/wiz011.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wi/wiz011.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wi/wiz011.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wi/wiz011.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wi/wiz011.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wi.txt +station = ('kegv', 0.0076237487209812578) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wi/wiz011.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wi/wiz011.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wi/wiz011.txt + +[wiz012] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wi/wiz012.txt +centroid = (0.80020553677136819, -1.5428396428364515) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wi/wiz012.txt +description = Florence, WI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wi/wiz012.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wi/wiz012.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wi/wiz012.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wi/wiz012.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wi/wiz012.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wi/wiz012.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wi/wiz012.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wi/wiz012.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wi/wiz012.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wi/wiz012.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wi/wiz012.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wi/wiz012.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wi/wiz012.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wi/wiz012.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wi/wiz012.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wi.txt +station = ('kimt', 0.0034681555836329177) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wi/wiz012.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wi/wiz012.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wi/wiz012.txt + +[wiz013] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wi/wiz013.txt +centroid = (0.79501667290518896, -1.5377921506396837) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wi/wiz013.txt +description = Northern Marinette County, WI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wi/wiz013.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wi/wiz013.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wi/wiz013.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wi/wiz013.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wi/wiz013.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wi/wiz013.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wi/wiz013.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wi/wiz013.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wi/wiz013.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wi/wiz013.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wi/wiz013.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wi/wiz013.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wi/wiz013.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wi/wiz013.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wi/wiz013.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wi.txt +station = ('kimt', 0.0046359552950034051) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wi/wiz013.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wi/wiz013.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wi/wiz013.txt + +[wiz014] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wi/wiz014.txt +centroid = (0.79345111256615009, -1.6134067951530862) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wi/wiz014.txt +description = Polk, WI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wi/wiz014.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wi/wiz014.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wi/wiz014.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wi/wiz014.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wi/wiz014.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wi/wiz014.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wi/wiz014.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wi/wiz014.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wi/wiz014.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wi/wiz014.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wi/wiz014.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wi/wiz014.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wi/wiz014.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wi/wiz014.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wi/wiz014.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wi.txt +station = ('koeo', 0.0040493915689061421) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wi/wiz014.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wi/wiz014.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wi/wiz014.txt + +[wiz015] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wi/wiz015.txt +centroid = (0.79279486876740024, -1.6030569926887597) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wi/wiz015.txt +description = Barron, WI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wi/wiz015.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wi/wiz015.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wi/wiz015.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wi/wiz015.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wi/wiz015.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wi/wiz015.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wi/wiz015.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wi/wiz015.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wi/wiz015.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wi/wiz015.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wi/wiz015.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wi/wiz015.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wi/wiz015.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wi/wiz015.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wi/wiz015.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wi.txt +station = ('krpd', 0.00092165890037423774) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wi/wiz015.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wi/wiz015.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wi/wiz015.txt + +[wiz016] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wi/wiz016.txt +centroid = (0.79369022267367328, -1.5905726525492443) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wi/wiz016.txt +description = Rusk, WI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wi/wiz016.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wi/wiz016.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wi/wiz016.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wi/wiz016.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wi/wiz016.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wi/wiz016.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wi/wiz016.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wi/wiz016.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wi/wiz016.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wi/wiz016.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wi/wiz016.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wi/wiz016.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wi/wiz016.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wi/wiz016.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wi/wiz016.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wi.txt +station = ('krcx', 0.0016682636884944484) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wi/wiz016.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wi/wiz016.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wi/wiz016.txt + +[wiz017] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wi/wiz017.txt +centroid = (0.78908953476541632, -1.579543917005892) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wi/wiz017.txt +description = Taylor, WI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wi/wiz017.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wi/wiz017.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wi/wiz017.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wi/wiz017.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wi/wiz017.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wi/wiz017.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wi/wiz017.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wi/wiz017.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wi/wiz017.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wi/wiz017.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wi/wiz017.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wi/wiz017.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wi/wiz017.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wi/wiz017.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wi/wiz017.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wi.txt +station = ('kmdz', 0.0031052382770819153) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wi/wiz017.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wi/wiz017.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wi/wiz017.txt + +[wiz018] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wi/wiz018.txt +centroid = (0.79128864962292911, -1.5661642229601036) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wi/wiz018.txt +description = Lincoln, WI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wi/wiz018.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wi/wiz018.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wi/wiz018.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wi/wiz018.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wi/wiz018.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wi/wiz018.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wi/wiz018.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wi/wiz018.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wi/wiz018.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wi/wiz018.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wi/wiz018.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wi/wiz018.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wi/wiz018.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wi/wiz018.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wi/wiz018.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wi.txt +station = ('ktkv', 0.0024524796693514298) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wi/wiz018.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wi/wiz018.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wi/wiz018.txt + +[wiz019] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wi/wiz019.txt +centroid = (0.78997790735468143, -1.5545979260071372) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wi/wiz019.txt +description = Langlade, WI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wi/wiz019.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wi/wiz019.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wi/wiz019.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wi/wiz019.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wi/wiz019.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wi/wiz019.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wi/wiz019.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wi/wiz019.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wi/wiz019.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wi/wiz019.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wi/wiz019.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wi/wiz019.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wi/wiz019.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wi/wiz019.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wi/wiz019.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wi.txt +station = ('kaig', 0.0019919493148268246) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wi/wiz019.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wi/wiz019.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wi/wiz019.txt + +[wiz020] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wi/wiz020.txt +centroid = (0.78547495788453603, -1.5482815794441696) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wi/wiz020.txt +description = Menominee, WI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wi/wiz020.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wi/wiz020.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wi/wiz020.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wi/wiz020.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wi/wiz020.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wi/wiz020.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wi/wiz020.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wi/wiz020.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wi/wiz020.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wi/wiz020.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wi/wiz020.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wi/wiz020.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wi/wiz020.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wi/wiz020.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wi/wiz020.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wi.txt +station = ('kezs', 0.0041763243218219002) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wi/wiz020.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wi/wiz020.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wi/wiz020.txt + +[wiz021] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wi/wiz021.txt +centroid = (0.7888992938769489, -1.5433196083807499) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wi/wiz021.txt +description = Northern Oconto County, WI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wi/wiz021.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wi/wiz021.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wi/wiz021.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wi/wiz021.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wi/wiz021.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wi/wiz021.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wi/wiz021.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wi/wiz021.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wi/wiz021.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wi/wiz021.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wi/wiz021.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wi/wiz021.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wi/wiz021.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wi/wiz021.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wi/wiz021.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wi.txt +station = ('kezs', 0.0073555208696436851) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wi/wiz021.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wi/wiz021.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wi/wiz021.txt + +[wiz022] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wi/wiz022.txt +centroid = (0.7844120523700715, -1.5239743789516447) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wi/wiz022.txt +description = Door, WI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wi/wiz022.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wi/wiz022.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wi/wiz022.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wi/wiz022.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wi/wiz022.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wi/wiz022.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wi/wiz022.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wi/wiz022.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wi/wiz022.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wi/wiz022.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wi/wiz022.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wi/wiz022.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wi/wiz022.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wi/wiz022.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wi/wiz022.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wi.txt +station = ('ksue', 0.0020426247610333707) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wi/wiz022.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wi/wiz022.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wi/wiz022.txt + +[wiz023] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wi/wiz023.txt +centroid = (0.78599157534312636, -1.6136057626878135) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wi/wiz023.txt +description = St. Croix, WI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wi/wiz023.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wi/wiz023.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wi/wiz023.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wi/wiz023.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wi/wiz023.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wi/wiz023.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wi/wiz023.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wi/wiz023.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wi/wiz023.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wi/wiz023.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wi/wiz023.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wi/wiz023.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wi/wiz023.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wi/wiz023.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wi/wiz023.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wi.txt +station = ('krnh', 0.002255110978660743) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wi/wiz023.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wi/wiz023.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wi/wiz023.txt + +[wiz024] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wi/wiz024.txt +centroid = (0.78050426017485619, -1.6130751825952072) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wi/wiz024.txt +description = Pierce, WI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wi/wiz024.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wi/wiz024.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wi/wiz024.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wi/wiz024.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wi/wiz024.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wi/wiz024.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wi/wiz024.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wi/wiz024.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wi/wiz024.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wi/wiz024.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wi/wiz024.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wi/wiz024.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wi/wiz024.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wi/wiz024.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wi/wiz024.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wi.txt +station = ('krgk', 0.0023916890419474752) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wi/wiz024.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wi/wiz024.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wi/wiz024.txt + +[wiz025] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wi/wiz025.txt +centroid = (0.78446615757688332, -1.603894750729717) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wi/wiz025.txt +description = Dunn, WI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wi/wiz025.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wi/wiz025.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wi/wiz025.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wi/wiz025.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wi/wiz025.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wi/wiz025.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wi/wiz025.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wi/wiz025.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wi/wiz025.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wi/wiz025.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wi/wiz025.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wi/wiz025.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wi/wiz025.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wi/wiz025.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wi/wiz025.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wi.txt +station = ('klum', 0.0010128491179969092) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wi/wiz025.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wi/wiz025.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wi/wiz025.txt + +[wiz026] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wi/wiz026.txt +centroid = (0.77811839508738001, -1.6057308371028149) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wi/wiz026.txt +description = Pepin, WI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wi/wiz026.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wi/wiz026.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wi/wiz026.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wi/wiz026.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wi/wiz026.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wi/wiz026.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wi/wiz026.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wi/wiz026.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wi/wiz026.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wi/wiz026.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wi/wiz026.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wi/wiz026.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wi/wiz026.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wi/wiz026.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wi/wiz026.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wi.txt +station = ('klum', 0.0056478695202680611) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wi/wiz026.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wi/wiz026.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wi/wiz026.txt + +[wiz027] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wi/wiz027.txt +centroid = (0.78660942189833238, -1.5931347958911719) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wi/wiz027.txt +description = Chippewa, WI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wi/wiz027.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wi/wiz027.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wi/wiz027.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wi/wiz027.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wi/wiz027.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wi/wiz027.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wi/wiz027.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wi/wiz027.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wi/wiz027.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wi/wiz027.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wi/wiz027.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wi/wiz027.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wi/wiz027.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wi/wiz027.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wi/wiz027.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wi.txt +station = ('keau', 0.0043393938906393786) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wi/wiz027.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wi/wiz027.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wi/wiz027.txt + +[wiz028] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wi/wiz028.txt +centroid = (0.78062992388099972, -1.5932412609755437) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wi/wiz028.txt +description = Eau Claire, WI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wi/wiz028.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wi/wiz028.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wi/wiz028.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wi/wiz028.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wi/wiz028.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wi/wiz028.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wi/wiz028.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wi/wiz028.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wi/wiz028.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wi/wiz028.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wi/wiz028.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wi/wiz028.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wi/wiz028.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wi/wiz028.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wi/wiz028.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wi.txt +station = ('keau', 0.0034542974051397723) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wi/wiz028.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wi/wiz028.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wi/wiz028.txt + +[wiz029] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wi/wiz029.txt +centroid = (0.78076780489190734, -1.5814794871463538) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wi/wiz029.txt +description = Clark, WI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wi/wiz029.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wi/wiz029.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wi/wiz029.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wi/wiz029.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wi/wiz029.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wi/wiz029.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wi/wiz029.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wi/wiz029.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wi/wiz029.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wi/wiz029.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wi/wiz029.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wi/wiz029.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wi/wiz029.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wi/wiz029.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wi/wiz029.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wi.txt +station = ('kmdz', 0.0074470854013840735) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wi/wiz029.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wi/wiz029.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wi/wiz029.txt + +[wiz030] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wi/wiz030.txt +centroid = (0.78362316354817008, -1.5665900832975903) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wi/wiz030.txt +description = Marathon, WI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wi/wiz030.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wi/wiz030.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wi/wiz030.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wi/wiz030.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wi/wiz030.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wi/wiz030.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wi/wiz030.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wi/wiz030.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wi/wiz030.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wi/wiz030.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wi/wiz030.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wi/wiz030.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wi/wiz030.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wi/wiz030.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wi/wiz030.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wi.txt +station = ('kauw', 0.0018623967709102821) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wi/wiz030.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wi/wiz030.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wi/wiz030.txt + +[wiz031] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wi/wiz031.txt +centroid = (0.78171900933424432, -1.5492519825082787) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wi/wiz031.txt +description = Shawano, WI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wi/wiz031.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wi/wiz031.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wi/wiz031.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wi/wiz031.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wi/wiz031.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wi/wiz031.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wi/wiz031.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wi/wiz031.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wi/wiz031.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wi/wiz031.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wi/wiz031.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wi/wiz031.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wi/wiz031.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wi/wiz031.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wi/wiz031.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wi.txt +station = ('kcli', 0.003089049385681665) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wi/wiz031.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wi/wiz031.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wi/wiz031.txt + +[wiz032] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wi/wiz032.txt +centroid = (0.77457537670583143, -1.6014181285211371) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wi/wiz032.txt +description = Buffalo, WI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wi/wiz032.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wi/wiz032.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wi/wiz032.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wi/wiz032.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wi/wiz032.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wi/wiz032.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wi/wiz032.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wi/wiz032.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wi/wiz032.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wi/wiz032.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wi/wiz032.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wi/wiz032.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wi/wiz032.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wi/wiz032.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wi/wiz032.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wi.txt +station = ('kona', 0.0052207442113099438) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wi/wiz032.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wi/wiz032.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wi/wiz032.txt + +[wiz033] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wi/wiz033.txt +centroid = (0.77325067180356777, -1.5945066246832398) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wi/wiz033.txt +description = Trempealeau, WI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wi/wiz033.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wi/wiz033.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wi/wiz033.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wi/wiz033.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wi/wiz033.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wi/wiz033.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wi/wiz033.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wi/wiz033.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wi/wiz033.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wi/wiz033.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wi/wiz033.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wi/wiz033.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wi/wiz033.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wi/wiz033.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wi/wiz033.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wi.txt +station = ('kona', 0.0057528541016920402) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wi/wiz033.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wi/wiz033.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wi/wiz033.txt + +[wiz034] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wi/wiz034.txt +centroid = (0.77351421652061891, -1.5848497179319549) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wi/wiz034.txt +description = Jackson, WI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wi/wiz034.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wi/wiz034.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wi/wiz034.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wi/wiz034.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wi/wiz034.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wi/wiz034.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wi/wiz034.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wi/wiz034.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wi/wiz034.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wi/wiz034.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wi/wiz034.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wi/wiz034.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wi/wiz034.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wi/wiz034.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wi/wiz034.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wi.txt +station = ('kbck', 0.0013295914018765201) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wi/wiz034.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wi/wiz034.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wi/wiz034.txt + +[wiz035] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wi/wiz035.txt +centroid = (0.77589135496183526, -1.5715223837637262) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wi/wiz035.txt +description = Wood, WI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wi/wiz035.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wi/wiz035.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wi/wiz035.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wi/wiz035.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wi/wiz035.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wi/wiz035.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wi/wiz035.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wi/wiz035.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wi/wiz035.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wi/wiz035.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wi/wiz035.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wi/wiz035.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wi/wiz035.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wi/wiz035.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wi/wiz035.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wi.txt +station = ('kmfi', 0.0035725897041245596) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wi/wiz035.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wi/wiz035.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wi/wiz035.txt + +[wiz036] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wi/wiz036.txt +centroid = (0.77625263811699796, -1.5620958604737047) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wi/wiz036.txt +description = Portage, WI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wi/wiz036.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wi/wiz036.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wi/wiz036.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wi/wiz036.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wi/wiz036.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wi/wiz036.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wi/wiz036.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wi/wiz036.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wi/wiz036.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wi/wiz036.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wi/wiz036.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wi/wiz036.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wi/wiz036.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wi/wiz036.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wi/wiz036.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wi.txt +station = ('kste', 0.0012564134205103313) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wi/wiz036.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wi/wiz036.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wi/wiz036.txt + +[wiz037] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wi/wiz037.txt +centroid = (0.77615489967888629, -1.5527286783782512) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wi/wiz037.txt +description = Waupaca, WI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wi/wiz037.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wi/wiz037.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wi/wiz037.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wi/wiz037.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wi/wiz037.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wi/wiz037.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wi/wiz037.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wi/wiz037.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wi/wiz037.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wi/wiz037.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wi/wiz037.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wi/wiz037.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wi/wiz037.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wi/wiz037.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wi/wiz037.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wi.txt +station = ('kpcz', 0.0024689958525676648) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wi/wiz037.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wi/wiz037.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wi/wiz037.txt + +[wiz038] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wi/wiz038.txt +centroid = (0.77520718589505344, -1.5440037774475317) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wi/wiz038.txt +description = Outagamie, WI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wi/wiz038.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wi/wiz038.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wi/wiz038.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wi/wiz038.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wi/wiz038.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wi/wiz038.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wi/wiz038.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wi/wiz038.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wi/wiz038.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wi/wiz038.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wi/wiz038.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wi/wiz038.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wi/wiz038.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wi/wiz038.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wi/wiz038.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wi.txt +station = ('katw', 0.0029701530627802481) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wi/wiz038.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wi/wiz038.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wi/wiz038.txt + +[wiz039] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wi/wiz039.txt +centroid = (0.77586342969380329, -1.5359455922910739) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wi/wiz039.txt +description = Brown, WI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wi/wiz039.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wi/wiz039.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wi/wiz039.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wi/wiz039.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wi/wiz039.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wi/wiz039.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wi/wiz039.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wi/wiz039.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wi/wiz039.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wi/wiz039.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wi/wiz039.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wi/wiz039.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wi/wiz039.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wi/wiz039.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wi/wiz039.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wi.txt +station = ('kgrb', 0.001701365136019295) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wi/wiz039.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wi/wiz039.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wi/wiz039.txt + +[wiz040] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wi/wiz040.txt +centroid = (0.77695251514704777, -1.5291772054518398) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wi/wiz040.txt +description = Kewaunee, WI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wi/wiz040.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wi/wiz040.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wi/wiz040.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wi/wiz040.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wi/wiz040.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wi/wiz040.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wi/wiz040.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wi/wiz040.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wi/wiz040.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wi/wiz040.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wi/wiz040.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wi/wiz040.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wi/wiz040.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wi/wiz040.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wi/wiz040.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wi.txt +station = ('ksue', 0.0063279901152122264) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wi/wiz040.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wi/wiz040.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wi/wiz040.txt + +[wiz041] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wi/wiz041.txt +centroid = (0.7663129880268903, -1.5902602386131375) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wi/wiz041.txt +description = La Crosse, WI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wi/wiz041.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wi/wiz041.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wi/wiz041.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wi/wiz041.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wi/wiz041.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wi/wiz041.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wi/wiz041.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wi/wiz041.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wi/wiz041.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wi/wiz041.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wi/wiz041.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wi/wiz041.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wi/wiz041.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wi/wiz041.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wi/wiz041.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wi.txt +station = ('klse', 0.0017429361638785737) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wi/wiz041.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wi/wiz041.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wi/wiz041.txt + +[wiz042] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wi/wiz042.txt +centroid = (0.76699715709367211, -1.5815807162429696) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wi/wiz042.txt +description = Monroe, WI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wi/wiz042.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wi/wiz042.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wi/wiz042.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wi/wiz042.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wi/wiz042.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wi/wiz042.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wi/wiz042.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wi/wiz042.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wi/wiz042.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wi/wiz042.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wi/wiz042.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wi/wiz042.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wi/wiz042.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wi/wiz042.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wi/wiz042.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wi.txt +station = ('kcmy', 0.0015223166099236876) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wi/wiz042.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wi/wiz042.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wi/wiz042.txt + +[wiz043] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wi/wiz043.txt +centroid = (0.76662714729224934, -1.5727860021421702) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wi/wiz043.txt +description = Juneau, WI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wi/wiz043.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wi/wiz043.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wi/wiz043.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wi/wiz043.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wi/wiz043.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wi/wiz043.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wi/wiz043.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wi/wiz043.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wi/wiz043.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wi/wiz043.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wi/wiz043.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wi/wiz043.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wi/wiz043.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wi/wiz043.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wi/wiz043.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wi.txt +station = ('kvok', 0.001925184386772757) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wi/wiz043.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wi/wiz043.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wi/wiz043.txt + +[wiz044] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wi/wiz044.txt +centroid = (0.76741429078489876, -1.5667925414908217) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wi/wiz044.txt +description = Adams, WI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wi/wiz044.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wi/wiz044.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wi/wiz044.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wi/wiz044.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wi/wiz044.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wi/wiz044.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wi/wiz044.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wi/wiz044.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wi/wiz044.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wi/wiz044.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wi/wiz044.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wi/wiz044.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wi/wiz044.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wi/wiz044.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wi/wiz044.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wi.txt +station = ('kisw', 0.0069744800968721396) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wi/wiz044.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wi/wiz044.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wi/wiz044.txt + +[wiz045] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wi/wiz045.txt +centroid = (0.76991883826151064, -1.5575824390280477) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wi/wiz045.txt +description = Waushara, WI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wi/wiz045.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wi/wiz045.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wi/wiz045.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wi/wiz045.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wi/wiz045.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wi/wiz045.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wi/wiz045.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wi/wiz045.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wi/wiz045.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wi/wiz045.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wi/wiz045.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wi/wiz045.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wi/wiz045.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wi/wiz045.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wi/wiz045.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wi.txt +station = ('ky50', 0.0014703643143739661) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wi/wiz045.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wi/wiz045.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wi/wiz045.txt + +[wiz046] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wi/wiz046.txt +centroid = (0.7647962969069072, -1.5603034073319066) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wi/wiz046.txt +description = Marquette, WI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wi/wiz046.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wi/wiz046.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wi/wiz046.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wi/wiz046.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wi/wiz046.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wi/wiz046.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wi/wiz046.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wi/wiz046.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wi/wiz046.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wi/wiz046.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wi/wiz046.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wi/wiz046.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wi/wiz046.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wi/wiz046.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wi/wiz046.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wi.txt +station = ('ky50', 0.0040485590515931978) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wi/wiz046.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wi/wiz046.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wi/wiz046.txt + +[wiz047] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wi/wiz047.txt +centroid = (0.76445944836127233, -1.5541284324383509) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wi/wiz047.txt +description = Green Lake, WI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wi/wiz047.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wi/wiz047.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wi/wiz047.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wi/wiz047.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wi/wiz047.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wi/wiz047.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wi/wiz047.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wi/wiz047.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wi/wiz047.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wi/wiz047.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wi/wiz047.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wi/wiz047.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wi/wiz047.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wi/wiz047.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wi/wiz047.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wi.txt +station = ('ky50', 0.0053238789845027586) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wi/wiz047.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wi/wiz047.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wi/wiz047.txt + +[wiz048] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wi/wiz048.txt +centroid = (0.76914740273212912, -1.5471401341133655) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wi/wiz048.txt +description = Winnebago, WI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wi/wiz048.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wi/wiz048.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wi/wiz048.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wi/wiz048.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wi/wiz048.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wi/wiz048.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wi/wiz048.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wi/wiz048.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wi/wiz048.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wi/wiz048.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wi/wiz048.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wi/wiz048.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wi/wiz048.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wi/wiz048.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wi/wiz048.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wi.txt +station = ('kosh', 0.0021432482539651678) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wi/wiz048.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wi/wiz048.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wi/wiz048.txt + +[wiz049] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wi/wiz049.txt +centroid = (0.76937080487638432, -1.5396945595243576) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wi/wiz049.txt +description = Calumet, WI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wi/wiz049.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wi/wiz049.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wi/wiz049.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wi/wiz049.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wi/wiz049.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wi/wiz049.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wi/wiz049.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wi/wiz049.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wi/wiz049.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wi/wiz049.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wi/wiz049.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wi/wiz049.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wi/wiz049.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wi/wiz049.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wi/wiz049.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wi.txt +station = ('katw', 0.0047549917869342566) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wi/wiz049.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wi/wiz049.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wi/wiz049.txt + +[wiz050] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wi/wiz050.txt +centroid = (0.77003577532139422, -1.5325666348592129) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wi/wiz050.txt +description = Manitowoc, WI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wi/wiz050.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wi/wiz050.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wi/wiz050.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wi/wiz050.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wi/wiz050.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wi/wiz050.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wi/wiz050.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wi/wiz050.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wi/wiz050.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wi/wiz050.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wi/wiz050.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wi/wiz050.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wi/wiz050.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wi/wiz050.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wi/wiz050.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wi.txt +station = ('kmtw', 0.0015994103432039545) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wi/wiz050.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wi/wiz050.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wi/wiz050.txt + +[wiz051] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wi/wiz051.txt +centroid = (0.76364437960059095, -1.5444104391632465) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wi/wiz051.txt +description = Fond Du Lac, WI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wi/wiz051.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wi/wiz051.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wi/wiz051.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wi/wiz051.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wi/wiz051.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wi/wiz051.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wi/wiz051.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wi/wiz051.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wi/wiz051.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wi/wiz051.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wi/wiz051.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wi/wiz051.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wi/wiz051.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wi/wiz051.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wi/wiz051.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wi.txt +station = ('kfld', 0.0002361633421093903) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wi/wiz051.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wi/wiz051.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wi/wiz051.txt + +[wiz052] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wi/wiz052.txt +centroid = (0.76307889292294484, -1.5349367919834211) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wi/wiz052.txt +description = Sheboygan, WI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wi/wiz052.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wi/wiz052.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wi/wiz052.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wi/wiz052.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wi/wiz052.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wi/wiz052.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wi/wiz052.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wi/wiz052.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wi/wiz052.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wi/wiz052.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wi/wiz052.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wi/wiz052.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wi/wiz052.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wi/wiz052.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wi/wiz052.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wi.txt +station = ('ksbm', 0.0016194231607771744) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wi/wiz052.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wi/wiz052.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wi/wiz052.txt + +[wiz053] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wi/wiz053.txt +centroid = (0.76085708878515601, -1.5853593540735373) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wi/wiz053.txt +description = Vernon, WI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wi/wiz053.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wi/wiz053.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wi/wiz053.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wi/wiz053.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wi/wiz053.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wi/wiz053.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wi/wiz053.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wi/wiz053.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wi/wiz053.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wi/wiz053.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wi/wiz053.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wi/wiz053.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wi/wiz053.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wi/wiz053.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wi/wiz053.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wi.txt +station = ('ky51', 0.00085417133350992229) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wi/wiz053.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wi/wiz053.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wi/wiz053.txt + +[wiz054] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wi/wiz054.txt +centroid = (0.75467164191608815, -1.5870453421309638) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wi/wiz054.txt +description = Crawford, WI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wi/wiz054.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wi/wiz054.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wi/wiz054.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wi/wiz054.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wi/wiz054.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wi/wiz054.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wi/wiz054.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wi/wiz054.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wi/wiz054.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wi/wiz054.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wi/wiz054.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wi/wiz054.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wi/wiz054.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wi/wiz054.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wi/wiz054.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wi.txt +station = ('kovs', 0.0035172150821802376) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wi/wiz054.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wi/wiz054.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wi/wiz054.txt + +[wiz055] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wi/wiz055.txt +centroid = (0.75704703502805237, -1.5782925159322123) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wi/wiz055.txt +description = Richland, WI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wi/wiz055.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wi/wiz055.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wi/wiz055.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wi/wiz055.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wi/wiz055.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wi/wiz055.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wi/wiz055.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wi/wiz055.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wi/wiz055.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wi/wiz055.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wi/wiz055.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wi/wiz055.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wi/wiz055.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wi/wiz055.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wi/wiz055.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wi.txt +station = ('klnr', 0.004180044489345499) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wi/wiz055.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wi/wiz055.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wi/wiz055.txt + +[wiz056] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wi/wiz056.txt +centroid = (0.75794064360507352, -1.5698957369008677) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wi/wiz056.txt +description = Sauk, WI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wi/wiz056.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wi/wiz056.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wi/wiz056.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wi/wiz056.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wi/wiz056.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wi/wiz056.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wi/wiz056.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wi/wiz056.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wi/wiz056.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wi/wiz056.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wi/wiz056.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wi/wiz056.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wi/wiz056.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wi/wiz056.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wi/wiz056.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wi.txt +station = ('kdll', 0.0027956101386200703) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wi/wiz056.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wi/wiz056.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wi/wiz056.txt + +[wiz057] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wi/wiz057.txt +centroid = (0.75863353931811528, -1.5591689433181104) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wi/wiz057.txt +description = Columbia, WI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wi/wiz057.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wi/wiz057.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wi/wiz057.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wi/wiz057.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wi/wiz057.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wi/wiz057.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wi/wiz057.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wi/wiz057.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wi/wiz057.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wi/wiz057.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wi/wiz057.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wi/wiz057.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wi/wiz057.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wi/wiz057.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wi/wiz057.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wi.txt +station = ('kdll', 0.0056174164959547374) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wi/wiz057.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wi/wiz057.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wi/wiz057.txt + +[wiz058] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wi/wiz058.txt +centroid = (0.75775912936286616, -1.5482379462128699) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wi/wiz058.txt +description = Dodge, WI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wi/wiz058.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wi/wiz058.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wi/wiz058.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wi/wiz058.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wi/wiz058.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wi/wiz058.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wi/wiz058.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wi/wiz058.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wi/wiz058.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wi/wiz058.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wi/wiz058.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wi/wiz058.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wi/wiz058.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wi/wiz058.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wi/wiz058.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wi.txt +station = ('kunu', 0.00018680979573526543) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wi/wiz058.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wi/wiz058.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wi/wiz058.txt + +[wiz059] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wi/wiz059.txt +centroid = (0.75692137132190884, -1.5399179616686129) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wi/wiz059.txt +description = Washington, WI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wi/wiz059.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wi/wiz059.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wi/wiz059.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wi/wiz059.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wi/wiz059.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wi/wiz059.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wi/wiz059.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wi/wiz059.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wi/wiz059.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wi/wiz059.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wi/wiz059.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wi/wiz059.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wi/wiz059.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wi/wiz059.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wi/wiz059.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wi.txt +station = ('ketb', 0.0016063231448524536) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wi/wiz059.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wi/wiz059.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wi/wiz059.txt + +[wiz060] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wi/wiz060.txt +centroid = (0.75719015202671591, -1.5350432570677928) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wi/wiz060.txt +description = Ozaukee, WI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wi/wiz060.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wi/wiz060.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wi/wiz060.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wi/wiz060.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wi/wiz060.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wi/wiz060.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wi/wiz060.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wi/wiz060.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wi/wiz060.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wi/wiz060.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wi/wiz060.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wi/wiz060.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wi/wiz060.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wi/wiz060.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wi/wiz060.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wi.txt +station = ('ketb', 0.0023370855039510099) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wi/wiz060.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wi/wiz060.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wi/wiz060.txt + +[wiz061] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wi/wiz061.txt +centroid = (0.74817901709866919, -1.5831218419724804) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wi/wiz061.txt +description = Grant, WI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wi/wiz061.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wi/wiz061.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wi/wiz061.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wi/wiz061.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wi/wiz061.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wi/wiz061.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wi/wiz061.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wi/wiz061.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wi/wiz061.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wi/wiz061.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wi/wiz061.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wi/wiz061.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wi/wiz061.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wi/wiz061.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wi/wiz061.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wi.txt +station = ('kpvb', 0.0046071992038678048) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wi/wiz061.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wi/wiz061.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wi/wiz061.txt + +[wiz062] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wi/wiz062.txt +centroid = (0.7505003050038217, -1.573159502602097) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wi/wiz062.txt +description = Iowa, WI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wi/wiz062.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wi/wiz062.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wi/wiz062.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wi/wiz062.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wi/wiz062.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wi/wiz062.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wi/wiz062.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wi/wiz062.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wi/wiz062.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wi/wiz062.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wi/wiz062.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wi/wiz062.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wi/wiz062.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wi/wiz062.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wi/wiz062.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wi.txt +station = ('kmrj', 0.00235916164526263) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wi/wiz062.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wi/wiz062.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wi/wiz062.txt + +[wiz063] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wi/wiz063.txt +centroid = (0.75166793027340584, -1.5606437465360457) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wi/wiz063.txt +description = Dane, WI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wi/wiz063.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wi/wiz063.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wi/wiz063.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wi/wiz063.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wi/wiz063.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wi/wiz063.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wi/wiz063.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wi/wiz063.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wi/wiz063.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wi/wiz063.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wi/wiz063.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wi/wiz063.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wi/wiz063.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wi/wiz063.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wi/wiz063.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wi.txt +station = ('kmsn', 0.0014428499540620864) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wi/wiz063.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wi/wiz063.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wi/wiz063.txt + +[wiz064] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wi/wiz064.txt +centroid = (0.75085635217122848, -1.5494317514212339) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wi/wiz064.txt +description = Jefferson, WI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wi/wiz064.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wi/wiz064.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wi/wiz064.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wi/wiz064.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wi/wiz064.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wi/wiz064.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wi/wiz064.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wi/wiz064.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wi/wiz064.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wi/wiz064.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wi/wiz064.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wi/wiz064.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wi/wiz064.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wi/wiz064.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wi/wiz064.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wi.txt +station = ('kryv', 0.0026537531838648413) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wi/wiz064.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wi/wiz064.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wi/wiz064.txt + +[wiz065] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wi/wiz065.txt +centroid = (0.75080748295217259, -1.5412042693273329) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wi/wiz065.txt +description = Waukesha, WI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wi/wiz065.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wi/wiz065.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wi/wiz065.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wi/wiz065.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wi/wiz065.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wi/wiz065.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wi/wiz065.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wi/wiz065.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wi/wiz065.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wi/wiz065.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wi/wiz065.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wi/wiz065.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wi/wiz065.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wi/wiz065.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wi/wiz065.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wi.txt +station = ('kues', 0.00095087784826899729) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wi/wiz065.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wi/wiz065.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wi/wiz065.txt + +[wiz066] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wi/wiz066.txt +centroid = (0.75061549673445327, -1.5353085471140959) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wi/wiz066.txt +description = Milwaukee, WI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wi/wiz066.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wi/wiz066.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wi/wiz066.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wi/wiz066.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wi/wiz066.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wi/wiz066.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wi/wiz066.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wi/wiz066.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wi/wiz066.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wi/wiz066.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wi/wiz066.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wi/wiz066.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wi/wiz066.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wi/wiz066.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wi/wiz066.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wi.txt +station = ('kmke', 0.0013109368949008472) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wi/wiz066.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wi/wiz066.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wi/wiz066.txt + +[wiz067] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wi/wiz067.txt +centroid = (0.7445661855470409, -1.573094925419773) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wi/wiz067.txt +description = Lafayette, WI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wi/wiz067.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wi/wiz067.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wi/wiz067.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wi/wiz067.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wi/wiz067.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wi/wiz067.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wi/wiz067.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wi/wiz067.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wi/wiz067.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wi/wiz067.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wi/wiz067.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wi/wiz067.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wi/wiz067.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wi/wiz067.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wi/wiz067.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wi.txt +station = ('kmrj', 0.0041279790070138343) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wi/wiz067.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wi/wiz067.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wi/wiz067.txt + +[wiz068] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wi/wiz068.txt +centroid = (0.7449065247511798, -1.563853407030463) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wi/wiz068.txt +description = Green, WI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wi/wiz068.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wi/wiz068.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wi/wiz068.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wi/wiz068.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wi/wiz068.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wi/wiz068.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wi/wiz068.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wi/wiz068.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wi/wiz068.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wi/wiz068.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wi/wiz068.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wi/wiz068.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wi/wiz068.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wi/wiz068.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wi/wiz068.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wi.txt +station = ('keft', 0.0011438099404715368) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wi/wiz068.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wi/wiz068.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wi/wiz068.txt + +[wiz069] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wi/wiz069.txt +centroid = (0.7447529357770043, -1.5545926900193814) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wi/wiz069.txt +description = Rock, WI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wi/wiz069.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wi/wiz069.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wi/wiz069.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wi/wiz069.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wi/wiz069.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wi/wiz069.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wi/wiz069.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wi/wiz069.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wi/wiz069.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wi/wiz069.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wi/wiz069.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wi/wiz069.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wi/wiz069.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wi/wiz069.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wi/wiz069.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wi.txt +station = ('kjvl', 0.0010710976923494341) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wi/wiz069.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wi/wiz069.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wi/wiz069.txt + +[wiz070] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wi/wiz070.txt +centroid = (0.74470581188720053, -1.5453476809715672) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wi/wiz070.txt +description = Walworth, WI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wi/wiz070.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wi/wiz070.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wi/wiz070.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wi/wiz070.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wi/wiz070.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wi/wiz070.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wi/wiz070.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wi/wiz070.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wi/wiz070.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wi/wiz070.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wi/wiz070.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wi/wiz070.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wi/wiz070.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wi/wiz070.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wi/wiz070.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wi.txt +station = ('kbuu', 0.0030674546071874725) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wi/wiz070.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wi/wiz070.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wi/wiz070.txt + +[wiz071] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wi/wiz071.txt +centroid = (0.74608811265478003, -1.5368514181728588) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wi/wiz071.txt +description = Racine, WI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wi/wiz071.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wi/wiz071.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wi/wiz071.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wi/wiz071.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wi/wiz071.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wi/wiz071.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wi/wiz071.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wi/wiz071.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wi/wiz071.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wi/wiz071.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wi/wiz071.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wi/wiz071.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wi/wiz071.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wi/wiz071.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wi/wiz071.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wi.txt +station = ('kenw', 0.0030144285860001854) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wi/wiz071.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wi/wiz071.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wi/wiz071.txt + +[wiz072] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wi/wiz072.txt +centroid = (0.74310359963386974, -1.5366192893823436) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wi/wiz072.txt +description = Kenosha, WI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wi/wiz072.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wi/wiz072.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wi/wiz072.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wi/wiz072.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wi/wiz072.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wi/wiz072.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wi/wiz072.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wi/wiz072.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wi/wiz072.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wi/wiz072.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wi/wiz072.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wi/wiz072.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wi/wiz072.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wi/wiz072.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wi/wiz072.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wi.txt +station = ('kenw', 0.0014518807668512854) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wi/wiz072.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wi/wiz072.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wi/wiz072.txt + +[wiz073] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wi/wiz073.txt +centroid = (0.78866891041568565, -1.5349734438977132) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wi/wiz073.txt +description = Southern Marinette County, WI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wi/wiz073.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wi/wiz073.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wi/wiz073.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wi/wiz073.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wi/wiz073.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wi/wiz073.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wi/wiz073.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wi/wiz073.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wi/wiz073.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wi/wiz073.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wi/wiz073.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wi/wiz073.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wi/wiz073.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wi/wiz073.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wi/wiz073.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wi.txt +station = ('kmnm', 0.0039798566786903586) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wi/wiz073.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wi/wiz073.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wi/wiz073.txt + +[wiz074] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wi/wiz074.txt +centroid = (0.7833543828433629, -1.5383157494152822) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wi/wiz074.txt +description = Southern Oconto County, WI +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wi/wiz074.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wi/wiz074.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wi/wiz074.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wi/wiz074.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wi/wiz074.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wi/wiz074.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wi/wiz074.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wi/wiz074.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wi.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wi/wiz074.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wi/wiz074.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wi/wiz074.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wi/wiz074.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wi/wiz074.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wi/wiz074.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wi/wiz074.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wi.txt +station = ('kgrb', 0.006974108436323543) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wi/wiz074.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wi/wiz074.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wi/wiz074.txt + +[wvz001] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wv/wvz001.txt +centroid = (0.70723010218837823, -1.4062798461726591) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wv/wvz001.txt +description = Hancock, WV +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wv/wvz001.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wv/wvz001.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wv/wvz001.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wv/wvz001.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wv/wvz001.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wv/wvz001.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wv/wvz001.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wv/wvz001.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wv/wvz001.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wv/wvz001.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wv/wvz001.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wv/wvz001.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wv/wvz001.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wv/wvz001.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wv/wvz001.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wv.txt +station = ('kpit', 0.0045680187727269884) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wv/wvz001.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wv/wvz001.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wv/wvz001.txt + +[wvz002] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wv/wvz002.txt +centroid = (0.70290168564343225, -1.406325224733211) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wv/wvz002.txt +description = Brooke, WV +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wv/wvz002.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wv/wvz002.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wv/wvz002.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wv/wvz002.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wv/wvz002.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wv/wvz002.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wv/wvz002.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wv/wvz002.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wv/wvz002.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wv/wvz002.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wv/wvz002.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wv/wvz002.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wv/wvz002.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wv/wvz002.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wv/wvz002.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wv.txt +station = ('khlg', 0.0021031322550847148) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wv/wvz002.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wv/wvz002.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wv/wvz002.txt + +[wvz003] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wv/wvz003.txt +centroid = (0.69982292484291431, -1.4070652443360565) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wv/wvz003.txt +description = Ohio, WV +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wv/wvz003.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wv/wvz003.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wv/wvz003.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wv/wvz003.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wv/wvz003.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wv/wvz003.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wv/wvz003.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wv/wvz003.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wv/wvz003.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wv/wvz003.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wv/wvz003.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wv/wvz003.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wv/wvz003.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wv/wvz003.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wv/wvz003.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wv.txt +station = ('khlg', 0.0012864364753352568) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wv/wvz003.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wv/wvz003.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wv/wvz003.txt + +[wvz004] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wv/wvz004.txt +centroid = (0.69569871182045173, -1.4078419158531938) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wv/wvz004.txt +description = Marshall, WV +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wv/wvz004.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wv/wvz004.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wv/wvz004.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wv/wvz004.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wv/wvz004.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wv/wvz004.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wv/wvz004.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wv/wvz004.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wv/wvz004.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wv/wvz004.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wv/wvz004.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wv/wvz004.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wv/wvz004.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wv/wvz004.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wv/wvz004.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wv.txt +station = ('khlg', 0.0053448733368227858) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wv/wvz004.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wv/wvz004.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wv/wvz004.txt + +[wvz005] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wv/wvz005.txt +centroid = (0.6657750417950089, -1.4386225425413661) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wv/wvz005.txt +description = Wayne, WV +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wv/wvz005.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wv/wvz005.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wv/wvz005.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wv/wvz005.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wv/wvz005.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wv/wvz005.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wv/wvz005.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wv/wvz005.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wv/wvz005.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wv/wvz005.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wv/wvz005.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wv/wvz005.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wv/wvz005.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wv/wvz005.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wv/wvz005.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wv.txt +station = ('khts', 0.0042025259151956349) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wv/wvz005.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wv/wvz005.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wv/wvz005.txt + +[wvz006] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wv/wvz006.txt +centroid = (0.67056073460397736, -1.4353884474374203) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wv/wvz006.txt +description = Cabell, WV +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wv/wvz006.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wv/wvz006.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wv/wvz006.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wv/wvz006.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wv/wvz006.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wv/wvz006.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wv/wvz006.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wv/wvz006.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wv/wvz006.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wv/wvz006.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wv/wvz006.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wv/wvz006.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wv/wvz006.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wv/wvz006.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wv/wvz006.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wv.txt +station = ('khts', 0.0043199520735056835) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wv/wvz006.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wv/wvz006.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wv/wvz006.txt + +[wvz007] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wv/wvz007.txt +centroid = (0.67666066033969752, -1.4316324988871287) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wv/wvz007.txt +description = Mason, WV +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wv/wvz007.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wv/wvz007.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wv/wvz007.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wv/wvz007.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wv/wvz007.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wv/wvz007.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wv/wvz007.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wv/wvz007.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wv/wvz007.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wv/wvz007.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wv/wvz007.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wv/wvz007.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wv/wvz007.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wv/wvz007.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wv/wvz007.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wv.txt +station = ('k3i2', 0.0027067990951992566) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wv/wvz007.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wv/wvz007.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wv/wvz007.txt + +[wvz008] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wv/wvz008.txt +centroid = (0.67778814303648593, -1.4254941759078648) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wv/wvz008.txt +description = Jackson, WV +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wv/wvz008.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wv/wvz008.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wv/wvz008.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wv/wvz008.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wv/wvz008.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wv/wvz008.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wv/wvz008.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wv/wvz008.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wv/wvz008.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wv/wvz008.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wv/wvz008.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wv/wvz008.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wv/wvz008.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wv/wvz008.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wv/wvz008.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wv.txt +station = ('k3i2', 0.0059220218150265883) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wv/wvz008.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wv/wvz008.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wv/wvz008.txt + +[wvz009] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wv/wvz009.txt +centroid = (0.68436279832874858, -1.4227051397631778) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wv/wvz009.txt +description = Wood, WV +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wv/wvz009.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wv/wvz009.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wv/wvz009.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wv/wvz009.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wv/wvz009.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wv/wvz009.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wv/wvz009.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wv/wvz009.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wv/wvz009.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wv/wvz009.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wv/wvz009.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wv/wvz009.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wv/wvz009.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wv/wvz009.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wv/wvz009.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wv.txt +station = ('kpkb', 0.0023070746829249281) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wv/wvz009.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wv/wvz009.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wv/wvz009.txt + +[wvz010] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wv/wvz010.txt +centroid = (0.68715183447343542, -1.4165196928941099) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wv/wvz010.txt +description = Pleasants, WV +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wv/wvz010.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wv/wvz010.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wv/wvz010.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wv/wvz010.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wv/wvz010.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wv/wvz010.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wv/wvz010.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wv/wvz010.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wv/wvz010.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wv/wvz010.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wv/wvz010.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wv/wvz010.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wv/wvz010.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wv/wvz010.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wv/wvz010.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wv.txt +station = ('kpkb', 0.0039603912171809188) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wv/wvz010.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wv/wvz010.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wv/wvz010.txt + +[wvz011] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wv/wvz011.txt +centroid = (0.68879942528731808, -1.4117078201463615) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wv/wvz011.txt +description = Tyler, WV +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wv/wvz011.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wv/wvz011.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wv/wvz011.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wv/wvz011.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wv/wvz011.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wv/wvz011.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wv/wvz011.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wv/wvz011.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wv/wvz011.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wv/wvz011.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wv/wvz011.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wv/wvz011.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wv/wvz011.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wv/wvz011.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wv/wvz011.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wv.txt +station = ('kckb', 0.0094649180608463897) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wv/wvz011.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wv/wvz011.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wv/wvz011.txt + +[wvz012] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wv/wvz012.txt +centroid = (0.69124288624011021, -1.4074178008449594) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wv/wvz012.txt +description = Wetzel, WV +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wv/wvz012.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wv/wvz012.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wv/wvz012.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wv/wvz012.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wv/wvz012.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wv/wvz012.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wv/wvz012.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wv/wvz012.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wv/wvz012.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wv/wvz012.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wv/wvz012.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wv/wvz012.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wv/wvz012.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wv/wvz012.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wv/wvz012.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wv.txt +station = ('kckb', 0.0077975747917815447) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wv/wvz012.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wv/wvz012.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wv/wvz012.txt + +[wvz013] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wv/wvz013.txt +centroid = (0.6662846779365913, -1.4324004437580062) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wv/wvz013.txt +description = Lincoln, WV +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wv/wvz013.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wv/wvz013.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wv/wvz013.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wv/wvz013.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wv/wvz013.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wv/wvz013.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wv/wvz013.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wv/wvz013.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wv/wvz013.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wv/wvz013.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wv/wvz013.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wv/wvz013.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wv/wvz013.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wv/wvz013.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wv/wvz013.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wv.txt +station = ('kcrw', 0.0072607743969106894) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wv/wvz013.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wv/wvz013.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wv/wvz013.txt + +[wvz014] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wv/wvz014.txt +centroid = (0.6721018603334884, -1.4295817370160355) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wv/wvz014.txt +description = Putnam, WV +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wv/wvz014.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wv/wvz014.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wv/wvz014.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wv/wvz014.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wv/wvz014.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wv/wvz014.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wv/wvz014.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wv/wvz014.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wv/wvz014.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wv/wvz014.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wv/wvz014.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wv/wvz014.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wv/wvz014.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wv/wvz014.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wv/wvz014.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wv.txt +station = ('kcrw', 0.0048970700457813517) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wv/wvz014.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wv/wvz014.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wv/wvz014.txt + +[wvz015] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wv/wvz015.txt +centroid = (0.66909814869080619, -1.4229337778951889) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wv/wvz015.txt +description = Kanawha, WV +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wv/wvz015.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wv/wvz015.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wv/wvz015.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wv/wvz015.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wv/wvz015.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wv/wvz015.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wv/wvz015.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wv/wvz015.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wv/wvz015.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wv/wvz015.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wv/wvz015.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wv/wvz015.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wv/wvz015.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wv/wvz015.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wv/wvz015.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wv.txt +station = ('kcrw', 0.0011161004731334607) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wv/wvz015.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wv/wvz015.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wv/wvz015.txt + +[wvz016] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wv/wvz016.txt +centroid = (0.67568676661708471, -1.4197956759001031) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wv/wvz016.txt +description = Roane, WV +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wv/wvz016.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wv/wvz016.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wv/wvz016.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wv/wvz016.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wv/wvz016.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wv/wvz016.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wv/wvz016.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wv/wvz016.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wv/wvz016.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wv/wvz016.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wv/wvz016.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wv/wvz016.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wv/wvz016.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wv/wvz016.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wv/wvz016.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wv.txt +station = ('kcrw', 0.0069681865262664787) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wv/wvz016.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wv/wvz016.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wv/wvz016.txt + +[wvz017] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wv/wvz017.txt +centroid = (0.68106936203023516, -1.4203245106634577) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wv/wvz017.txt +description = Wirt, WV +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wv/wvz017.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wv/wvz017.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wv/wvz017.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wv/wvz017.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wv/wvz017.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wv/wvz017.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wv/wvz017.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wv/wvz017.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wv/wvz017.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wv/wvz017.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wv/wvz017.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wv/wvz017.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wv/wvz017.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wv/wvz017.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wv/wvz017.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wv.txt +station = ('kpkb', 0.0055121180555077537) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wv/wvz017.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wv/wvz017.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wv/wvz017.txt + +[wvz018] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wv/wvz018.txt +centroid = (0.67796442129093726, -1.4157674559865003) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wv/wvz018.txt +description = Calhoun, WV +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wv/wvz018.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wv/wvz018.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wv/wvz018.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wv/wvz018.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wv/wvz018.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wv/wvz018.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wv/wvz018.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wv/wvz018.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wv/wvz018.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wv/wvz018.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wv/wvz018.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wv/wvz018.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wv/wvz018.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wv/wvz018.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wv/wvz018.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wv.txt +station = ('kpkb', 0.0096477400719766262) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wv/wvz018.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wv/wvz018.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wv/wvz018.txt + +[wvz019] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wv/wvz019.txt +centroid = (0.68379033033409442, -1.4148145062149113) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wv/wvz019.txt +description = Ritchie, WV +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wv/wvz019.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wv/wvz019.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wv/wvz019.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wv/wvz019.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wv/wvz019.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wv/wvz019.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wv/wvz019.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wv/wvz019.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wv/wvz019.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wv/wvz019.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wv/wvz019.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wv/wvz019.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wv/wvz019.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wv/wvz019.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wv/wvz019.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wv.txt +station = ('kpkb', 0.0058898233575843907) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wv/wvz019.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wv/wvz019.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wv/wvz019.txt + +[wvz020] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wv/wvz020.txt +centroid = (0.68537683462415722, -1.4086028794070635) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wv/wvz020.txt +description = Doddridge, WV +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wv/wvz020.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wv/wvz020.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wv/wvz020.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wv/wvz020.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wv/wvz020.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wv/wvz020.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wv/wvz020.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wv/wvz020.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wv/wvz020.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wv/wvz020.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wv/wvz020.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wv/wvz020.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wv/wvz020.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wv/wvz020.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wv/wvz020.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wv.txt +station = ('kckb', 0.0066456965085079107) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wv/wvz020.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wv/wvz020.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wv/wvz020.txt + +[wvz021] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wv/wvz021.txt +centroid = (0.68957958746295955, -1.4005115329948177) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wv/wvz021.txt +description = Marion, WV +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wv/wvz021.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wv/wvz021.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wv/wvz021.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wv/wvz021.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wv/wvz021.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wv/wvz021.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wv/wvz021.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wv/wvz021.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wv/wvz021.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wv/wvz021.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wv/wvz021.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wv/wvz021.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wv/wvz021.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wv/wvz021.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wv/wvz021.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wv.txt +station = ('kckb', 0.0036828796209338681) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wv/wvz021.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wv/wvz021.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wv/wvz021.txt + +[wvz022] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wv/wvz022.txt +centroid = (0.69167921855310877, -1.3970749796976409) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wv/wvz022.txt +description = Monongalia, WV +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wv/wvz022.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wv/wvz022.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wv/wvz022.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wv/wvz022.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wv/wvz022.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wv/wvz022.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wv/wvz022.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wv/wvz022.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wv/wvz022.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wv/wvz022.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wv/wvz022.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wv/wvz022.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wv/wvz022.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wv/wvz022.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wv/wvz022.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wv.txt +station = ('kmgw', 0.0017785363515651191) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wv/wvz022.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wv/wvz022.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wv/wvz022.txt + +[wvz023] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wv/wvz023.txt +centroid = (0.68886923845739789, -1.3904706538080944) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wv/wvz023.txt +description = Preston, WV +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wv/wvz023.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wv/wvz023.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wv/wvz023.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wv/wvz023.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wv/wvz023.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wv/wvz023.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wv/wvz023.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wv/wvz023.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wv/wvz023.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wv/wvz023.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wv/wvz023.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wv/wvz023.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wv/wvz023.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wv/wvz023.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wv/wvz023.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wv.txt +station = ('kmgw', 0.004597096420230211) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wv/wvz023.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wv/wvz023.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wv/wvz023.txt + +[wvz024] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wv/wvz024.txt +centroid = (0.65844989492438866, -1.4335191998085346) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wv/wvz024.txt +description = Mingo, WV +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wv/wvz024.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wv/wvz024.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wv/wvz024.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wv/wvz024.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wv/wvz024.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wv/wvz024.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wv/wvz024.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wv/wvz024.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wv/wvz024.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wv/wvz024.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wv/wvz024.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wv/wvz024.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wv/wvz024.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wv/wvz024.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wv/wvz024.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wv.txt +station = ('ki16', 0.0082494410784005861) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wv/wvz024.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wv/wvz024.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wv/wvz024.txt + +[wvz025] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wv/wvz025.txt +centroid = (0.66028598129748683, -1.4300407586093098) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wv/wvz025.txt +description = Logan, WV +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wv/wvz025.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wv/wvz025.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wv/wvz025.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wv/wvz025.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wv/wvz025.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wv/wvz025.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wv/wvz025.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wv/wvz025.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wv/wvz025.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wv/wvz025.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wv/wvz025.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wv/wvz025.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wv/wvz025.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wv/wvz025.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wv/wvz025.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wv.txt +station = ('ki16', 0.0065778421018593642) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wv/wvz025.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wv/wvz025.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wv/wvz025.txt + +[wvz026] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wv/wvz026.txt +centroid = (0.66362828681505592, -1.4261312210848425) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wv/wvz026.txt +description = Boone, WV +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wv/wvz026.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wv/wvz026.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wv/wvz026.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wv/wvz026.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wv/wvz026.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wv/wvz026.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wv/wvz026.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wv/wvz026.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wv/wvz026.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wv/wvz026.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wv/wvz026.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wv/wvz026.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wv/wvz026.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wv/wvz026.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wv/wvz026.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wv.txt +station = ('kcrw', 0.0061876621648062234) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wv/wvz026.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wv/wvz026.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wv/wvz026.txt + +[wvz027] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wv/wvz027.txt +centroid = (0.67129900887757099, -1.4150256910544028) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wv/wvz027.txt +description = Clay, WV +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wv/wvz027.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wv/wvz027.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wv/wvz027.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wv/wvz027.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wv/wvz027.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wv/wvz027.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wv/wvz027.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wv/wvz027.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wv/wvz027.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wv/wvz027.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wv/wvz027.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wv/wvz027.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wv/wvz027.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wv/wvz027.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wv/wvz027.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wv.txt +station = ('kcrw', 0.007372155865907783) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wv/wvz027.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wv/wvz027.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wv/wvz027.txt + +[wvz028] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wv/wvz028.txt +centroid = (0.67543892986330156, -1.408817554905059) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wv/wvz028.txt +description = Braxton, WV +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wv/wvz028.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wv/wvz028.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wv/wvz028.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wv/wvz028.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wv/wvz028.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wv/wvz028.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wv/wvz028.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wv/wvz028.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wv/wvz028.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wv/wvz028.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wv/wvz028.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wv/wvz028.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wv/wvz028.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wv/wvz028.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wv/wvz028.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wv.txt +station = ('kw22', 0.0080810868703805779) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wv/wvz028.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wv/wvz028.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wv/wvz028.txt + +[wvz029] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wv/wvz029.txt +centroid = (0.67935370337552492, -1.4112226186143071) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wv/wvz029.txt +description = Gilmer, WV +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wv/wvz029.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wv/wvz029.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wv/wvz029.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wv/wvz029.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wv/wvz029.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wv/wvz029.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wv/wvz029.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wv/wvz029.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wv/wvz029.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wv/wvz029.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wv/wvz029.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wv/wvz029.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wv/wvz029.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wv/wvz029.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wv/wvz029.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wv.txt +station = ('kw22', 0.0081215361878585277) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wv/wvz029.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wv/wvz029.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wv/wvz029.txt + +[wvz030] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wv/wvz030.txt +centroid = (0.68060510444920486, -1.4050284450989792) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wv/wvz030.txt +description = Lewis, WV +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wv/wvz030.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wv/wvz030.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wv/wvz030.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wv/wvz030.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wv/wvz030.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wv/wvz030.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wv/wvz030.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wv/wvz030.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wv/wvz030.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wv/wvz030.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wv/wvz030.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wv/wvz030.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wv/wvz030.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wv/wvz030.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wv/wvz030.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wv.txt +station = ('kw22', 0.0031956513945852727) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wv/wvz030.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wv/wvz030.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wv/wvz030.txt + +[wvz031] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wv/wvz031.txt +centroid = (0.68562641670719238, -1.4028921620945383) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wv/wvz031.txt +description = Harrison, WV +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wv/wvz031.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wv/wvz031.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wv/wvz031.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wv/wvz031.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wv/wvz031.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wv/wvz031.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wv/wvz031.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wv/wvz031.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wv/wvz031.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wv/wvz031.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wv/wvz031.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wv/wvz031.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wv/wvz031.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wv/wvz031.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wv/wvz031.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wv.txt +station = ('kckb', 0.0022222860208449585) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wv/wvz031.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wv/wvz031.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wv/wvz031.txt + +[wvz032] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wv/wvz032.txt +centroid = (0.68654271456448945, -1.3970679983806329) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wv/wvz032.txt +description = Taylor, WV +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wv/wvz032.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wv/wvz032.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wv/wvz032.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wv/wvz032.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wv/wvz032.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wv/wvz032.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wv/wvz032.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wv/wvz032.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wv/wvz032.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wv/wvz032.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wv/wvz032.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wv/wvz032.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wv/wvz032.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wv/wvz032.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wv/wvz032.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wv.txt +station = ('kckb', 0.0023872600629494924) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wv/wvz032.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wv/wvz032.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wv/wvz032.txt + +[wvz033] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wv/wvz033.txt +centroid = (0.65237789445670047, -1.4251241661064418) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wv/wvz033.txt +description = McDowell, WV +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wv/wvz033.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wv/wvz033.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wv/wvz033.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wv/wvz033.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wv/wvz033.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wv/wvz033.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wv/wvz033.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wv/wvz033.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wv/wvz033.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wv/wvz033.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wv/wvz033.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wv/wvz033.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wv/wvz033.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wv/wvz033.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wv/wvz033.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wv.txt +station = ('ki16', 0.0040857041193057527) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wv/wvz033.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wv/wvz033.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wv/wvz033.txt + +[wvz034] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wv/wvz034.txt +centroid = (0.65641135035805942, -1.4233002970381077) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wv/wvz034.txt +description = Wyoming, WV +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wv/wvz034.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wv/wvz034.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wv/wvz034.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wv/wvz034.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wv/wvz034.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wv/wvz034.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wv/wvz034.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wv/wvz034.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wv/wvz034.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wv/wvz034.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wv/wvz034.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wv/wvz034.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wv/wvz034.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wv/wvz034.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wv/wvz034.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wv.txt +station = ('ki16', 0.00021411955228338621) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wv/wvz034.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wv/wvz034.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wv/wvz034.txt + +[wvz035] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wv/wvz035.txt +centroid = (0.65923529308778617, -1.4180555826358647) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wv/wvz035.txt +description = Raleigh, WV +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wv/wvz035.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wv/wvz035.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wv/wvz035.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wv/wvz035.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wv/wvz035.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wv/wvz035.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wv/wvz035.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wv/wvz035.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wv/wvz035.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wv/wvz035.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wv/wvz035.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wv/wvz035.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wv/wvz035.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wv/wvz035.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wv/wvz035.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wv.txt +station = ('kbkw', 0.0018870363739723203) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wv/wvz035.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wv/wvz035.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wv/wvz035.txt + +[wvz036] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wv/wvz036.txt +centroid = (0.6637277705824195, -1.4151321561387744) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wv/wvz036.txt +description = Fayette, WV +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wv/wvz036.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wv/wvz036.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wv/wvz036.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wv/wvz036.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wv/wvz036.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wv/wvz036.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wv/wvz036.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wv/wvz036.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wv/wvz036.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wv/wvz036.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wv/wvz036.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wv/wvz036.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wv/wvz036.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wv/wvz036.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wv/wvz036.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wv.txt +station = ('kbkw', 0.0040232310705054803) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wv/wvz036.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wv/wvz036.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wv/wvz036.txt + +[wvz037] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wv/wvz037.txt +centroid = (0.66831624118591271, -1.4102138183066544) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wv/wvz037.txt +description = Nicholas, WV +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wv/wvz037.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wv/wvz037.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wv/wvz037.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wv/wvz037.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wv/wvz037.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wv/wvz037.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wv/wvz037.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wv/wvz037.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wv/wvz037.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wv/wvz037.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wv/wvz037.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wv/wvz037.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wv/wvz037.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wv/wvz037.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wv/wvz037.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wv.txt +station = ('klwb', 0.0092262458611264992) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wv/wvz037.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wv/wvz037.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wv/wvz037.txt + +[wvz038] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wv/wvz038.txt +centroid = (0.67185925956746118, -1.4036269457096275) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wv/wvz038.txt +description = Webster, WV +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wv/wvz038.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wv/wvz038.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wv/wvz038.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wv/wvz038.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wv/wvz038.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wv/wvz038.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wv/wvz038.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wv/wvz038.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wv/wvz038.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wv/wvz038.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wv/wvz038.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wv/wvz038.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wv/wvz038.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wv/wvz038.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wv/wvz038.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wv.txt +station = ('kw22', 0.0090687516959714089) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wv/wvz038.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wv/wvz038.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wv/wvz038.txt + +[wvz039] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wv/wvz039.txt +centroid = (0.67889468178225021, -1.4003370000696185) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wv/wvz039.txt +description = Upshur, WV +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wv/wvz039.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wv/wvz039.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wv/wvz039.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wv/wvz039.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wv/wvz039.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wv/wvz039.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wv/wvz039.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wv/wvz039.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wv/wvz039.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wv/wvz039.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wv/wvz039.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wv/wvz039.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wv/wvz039.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wv/wvz039.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wv/wvz039.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wv.txt +station = ('kw22', 0.0018399930486213581) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wv/wvz039.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wv/wvz039.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wv/wvz039.txt + +[wvz040] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wv/wvz040.txt +centroid = (0.68299795085368897, -1.3963157614730235) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wv/wvz040.txt +description = Barbour, WV +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wv/wvz040.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wv/wvz040.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wv/wvz040.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wv/wvz040.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wv/wvz040.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wv/wvz040.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wv/wvz040.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wv/wvz040.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wv/wvz040.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wv/wvz040.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wv/wvz040.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wv/wvz040.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wv/wvz040.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wv/wvz040.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wv/wvz040.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wv.txt +station = ('kckb', 0.0041052789631213279) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wv/wvz040.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wv/wvz040.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wv/wvz040.txt + +[wvz041] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wv/wvz041.txt +centroid = (0.6826611023080541, -1.3886712193492883) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wv/wvz041.txt +description = Tucker, WV +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wv/wvz041.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wv/wvz041.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wv/wvz041.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wv/wvz041.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wv/wvz041.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wv/wvz041.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wv/wvz041.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wv/wvz041.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wv/wvz041.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wv/wvz041.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wv/wvz041.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wv/wvz041.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wv/wvz041.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wv/wvz041.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wv/wvz041.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wv.txt +station = ('kekn', 0.0055763458487880788) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wv/wvz041.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wv/wvz041.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wv/wvz041.txt + +[wvz042] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wv/wvz042.txt +centroid = (0.65284913335473904, -1.4156609909021287) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wv/wvz042.txt +description = Mercer, WV +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wv/wvz042.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wv/wvz042.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wv/wvz042.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wv/wvz042.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wv/wvz042.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wv/wvz042.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wv/wvz042.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wv/wvz042.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wv/wvz042.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wv/wvz042.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wv/wvz042.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wv/wvz042.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wv/wvz042.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wv/wvz042.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wv/wvz042.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wv.txt +station = ('kblf', 0.0022139251357183439) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wv/wvz042.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wv/wvz042.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wv/wvz042.txt + +[wvz043] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wv/wvz043.txt +centroid = (0.65721943780173275, -1.4112487985530868) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wv/wvz043.txt +description = Summers, WV +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wv/wvz043.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wv/wvz043.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wv/wvz043.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wv/wvz043.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wv/wvz043.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wv/wvz043.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wv/wvz043.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wv/wvz043.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wv/wvz043.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wv/wvz043.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wv/wvz043.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wv/wvz043.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wv/wvz043.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wv/wvz043.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wv/wvz043.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wv.txt +station = ('kbkw', 0.0043607459159884119) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wv/wvz043.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wv/wvz043.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wv/wvz043.txt + +[wvz044] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wv/wvz044.txt +centroid = (0.65555264836607818, -1.4058714391276925) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wv/wvz044.txt +description = Monroe, WV +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wv/wvz044.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wv/wvz044.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wv/wvz044.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wv/wvz044.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wv/wvz044.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wv/wvz044.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wv/wvz044.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wv/wvz044.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wv/wvz044.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wv/wvz044.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wv/wvz044.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wv/wvz044.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wv/wvz044.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wv/wvz044.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wv/wvz044.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wv.txt +station = ('klwb', 0.0057350424576272929) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wv/wvz044.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wv/wvz044.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wv/wvz044.txt + +[wvz045] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wv/wvz045.txt +centroid = (0.66229834592503622, -1.4041679977777459) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wv/wvz045.txt +description = Greenbrier, WV +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wv/wvz045.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wv/wvz045.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wv/wvz045.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wv/wvz045.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wv/wvz045.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wv/wvz045.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wv/wvz045.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wv/wvz045.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wv/wvz045.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wv/wvz045.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wv/wvz045.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wv/wvz045.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wv/wvz045.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wv/wvz045.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wv/wvz045.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wv.txt +station = ('klwb', 0.0015784866263657859) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wv/wvz045.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wv/wvz045.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wv/wvz045.txt + +[wvz046] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wv/wvz046.txt +centroid = (0.66901611821596241, -1.3963977919478672) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wv/wvz046.txt +description = Pocahontas, WV +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wv/wvz046.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wv/wvz046.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wv/wvz046.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wv/wvz046.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wv/wvz046.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wv/wvz046.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wv/wvz046.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wv/wvz046.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wv/wvz046.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wv/wvz046.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wv/wvz046.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wv/wvz046.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wv/wvz046.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wv/wvz046.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wv/wvz046.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wv.txt +station = ('khsp', 0.0070804885861952948) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wv/wvz046.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wv/wvz046.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wv/wvz046.txt + +[wvz047] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wv/wvz047.txt +centroid = (0.67674618147304533, -1.3940957026644867) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wv/wvz047.txt +description = Randolph, WV +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wv/wvz047.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wv/wvz047.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wv/wvz047.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wv/wvz047.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wv/wvz047.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wv/wvz047.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wv/wvz047.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wv/wvz047.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wv/wvz047.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wv/wvz047.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wv/wvz047.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wv/wvz047.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wv/wvz047.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wv/wvz047.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wv/wvz047.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wv.txt +station = ('kekn', 0.0019281867782277255) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wv/wvz047.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wv/wvz047.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wv/wvz047.txt + +[wvz050] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wv/wvz050.txt +centroid = (0.68621284733586263, -1.3720766288213262) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wv/wvz050.txt +description = Hampshire, WV +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wv/wvz050.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wv/wvz050.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wv/wvz050.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wv/wvz050.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wv/wvz050.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wv/wvz050.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wv/wvz050.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wv/wvz050.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wv/wvz050.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wv/wvz050.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wv/wvz050.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wv/wvz050.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wv/wvz050.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wv/wvz050.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wv/wvz050.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wv.txt +station = ('kcbe', 0.0055665973853188016) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wv/wvz050.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wv/wvz050.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wv/wvz050.txt + +[wvz051] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wv/wvz051.txt +centroid = (0.69045923340596482, -1.3658562753672185) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wv/wvz051.txt +description = Morgan, WV +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wv/wvz051.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wv/wvz051.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wv/wvz051.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wv/wvz051.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wv/wvz051.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wv/wvz051.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wv/wvz051.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wv/wvz051.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wv/wvz051.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wv/wvz051.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wv/wvz051.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wv/wvz051.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wv/wvz051.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wv/wvz051.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wv/wvz051.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wv.txt +station = ('kmrb', 0.0046376709331715131) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wv/wvz051.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wv/wvz051.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wv/wvz051.txt + +[wvz052] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wv/wvz052.txt +centroid = (0.68877848133629427, -1.3618367820998756) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wv/wvz052.txt +description = Berkeley, WV +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wv/wvz052.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wv/wvz052.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wv/wvz052.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wv/wvz052.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wv/wvz052.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wv/wvz052.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wv/wvz052.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wv/wvz052.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wv/wvz052.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wv/wvz052.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wv/wvz052.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wv/wvz052.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wv/wvz052.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wv/wvz052.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wv/wvz052.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wv.txt +station = ('kmrb', 0.0012673220469409583) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wv/wvz052.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wv/wvz052.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wv/wvz052.txt + +[wvz053] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wv/wvz053.txt +centroid = (0.68604704105692305, -1.3589622248218407) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wv/wvz053.txt +description = Jefferson, WV +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wv/wvz053.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wv/wvz053.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wv/wvz053.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wv/wvz053.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wv/wvz053.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wv/wvz053.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wv/wvz053.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wv/wvz053.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wv/wvz053.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wv/wvz053.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wv/wvz053.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wv/wvz053.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wv/wvz053.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wv/wvz053.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wv/wvz053.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wv.txt +station = ('kmrb', 0.0022905962706128548) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wv/wvz053.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wv/wvz053.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wv/wvz053.txt + +[wvz055] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wv/wvz055.txt +centroid = (0.68080930797168815, -1.3763299962084363) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wv/wvz055.txt +description = Hardy, WV +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wv/wvz055.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wv/wvz055.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wv/wvz055.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wv/wvz055.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wv/wvz055.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wv/wvz055.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wv/wvz055.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wv/wvz055.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wv/wvz055.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wv/wvz055.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wv/wvz055.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wv/wvz055.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wv/wvz055.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wv/wvz055.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wv/wvz055.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wv.txt +station = ('kw99', 0.0037598841757540522) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wv/wvz055.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wv/wvz055.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wv/wvz055.txt + +[wvz501] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wv/wvz501.txt +centroid = (0.68459667244851574, -1.3837232109198843) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wv/wvz501.txt +description = Western Grant County, WV +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wv/wvz501.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wv/wvz501.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wv/wvz501.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wv/wvz501.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wv/wvz501.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wv/wvz501.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wv/wvz501.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wv/wvz501.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wv/wvz501.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wv/wvz501.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wv/wvz501.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wv/wvz501.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wv/wvz501.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wv/wvz501.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wv/wvz501.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wv.txt +station = ('kw99', 0.0046630415792850398) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wv/wvz501.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wv/wvz501.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wv/wvz501.txt + +[wvz502] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wv/wvz502.txt +centroid = (0.68164183002488943, -1.3815956545617032) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wv/wvz502.txt +description = Eastern Grant County, WV +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wv/wvz502.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wv/wvz502.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wv/wvz502.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wv/wvz502.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wv/wvz502.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wv/wvz502.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wv/wvz502.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wv/wvz502.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wv/wvz502.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wv/wvz502.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wv/wvz502.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wv/wvz502.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wv/wvz502.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wv/wvz502.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wv/wvz502.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wv.txt +station = ('kw99', 0.0013039002684312505) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wv/wvz502.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wv/wvz502.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wv/wvz502.txt + +[wvz503] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wv/wvz503.txt +centroid = (0.68742934182450266, -1.3808312003493297) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wv/wvz503.txt +description = Western Mineral County, WV +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wv/wvz503.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wv/wvz503.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wv/wvz503.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wv/wvz503.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wv/wvz503.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wv/wvz503.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wv/wvz503.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wv/wvz503.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wv/wvz503.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wv/wvz503.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wv/wvz503.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wv/wvz503.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wv/wvz503.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wv/wvz503.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wv/wvz503.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wv.txt +station = ('k2g4', 0.0045267267200126103) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wv/wvz503.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wv/wvz503.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wv/wvz503.txt + +[wvz504] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wv/wvz504.txt +centroid = (0.68807685897699256, -1.376841377679271) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wv/wvz504.txt +description = Eastern Mineral County, WV +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wv/wvz504.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wv/wvz504.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wv/wvz504.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wv/wvz504.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wv/wvz504.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wv/wvz504.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wv/wvz504.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wv/wvz504.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wv/wvz504.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wv/wvz504.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wv/wvz504.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wv/wvz504.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wv/wvz504.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wv/wvz504.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wv/wvz504.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wv.txt +station = ('kcbe', 0.0037485106851366488) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wv/wvz504.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wv/wvz504.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wv/wvz504.txt + +[wvz505] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wv/wvz505.txt +centroid = (0.67637442634237044, -1.3869363620728059) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wv/wvz505.txt +description = Western Pendleton County, WV +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wv/wvz505.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wv/wvz505.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wv/wvz505.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wv/wvz505.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wv/wvz505.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wv/wvz505.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wv/wvz505.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wv/wvz505.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wv/wvz505.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wv/wvz505.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wv/wvz505.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wv/wvz505.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wv/wvz505.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wv/wvz505.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wv/wvz505.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wv.txt +station = ('kw99', 0.0060408159111865244) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wv/wvz505.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wv/wvz505.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wv/wvz505.txt + +[wvz506] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wv/wvz506.txt +centroid = (0.6744545641651768, -1.3839047251620917) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wv/wvz506.txt +description = Eastern Pendleton County, WV +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wv/wvz506.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wv/wvz506.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wv/wvz506.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wv/wvz506.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wv/wvz506.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wv/wvz506.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wv/wvz506.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wv/wvz506.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wv.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wv/wvz506.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wv/wvz506.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wv/wvz506.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wv/wvz506.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wv/wvz506.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wv/wvz506.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wv/wvz506.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wv.txt +station = ('kw99', 0.006312691769216271) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wv/wvz506.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wv/wvz506.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wv/wvz506.txt + +[wyz001] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wy/wyz001.txt +centroid = (0.77824231346427164, -1.929286955154532) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wy/wyz001.txt +description = Yellowstone National Park, WY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wy/wyz001.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wy/wyz001.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wy/wyz001.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wy/wyz001.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wy/wyz001.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wy/wyz001.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wy/wyz001.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wy/wyz001.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wy.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wy/wyz001.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wy/wyz001.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wy/wyz001.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wy/wyz001.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wy/wyz001.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wy/wyz001.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wy/wyz001.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wy.txt +station = ('kp60', 0.001684916912731258) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wy/wyz001.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wy/wyz001.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wy/wyz001.txt + +[wyz002] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wy/wyz002.txt +centroid = (0.77173572601283669, -1.9120448474740799) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wy/wyz002.txt +description = Absaroka Mountains, WY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wy/wyz002.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wy/wyz002.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wy/wyz002.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wy/wyz002.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wy/wyz002.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wy/wyz002.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wy/wyz002.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wy/wyz002.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wy.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wy/wyz002.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wy/wyz002.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wy/wyz002.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wy/wyz002.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wy/wyz002.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wy/wyz002.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wy/wyz002.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wy.txt +station = ('kcod', 0.0084821977211902624) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wy/wyz002.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wy/wyz002.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wy/wyz002.txt + +[wyz003] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wy/wyz003.txt +centroid = (0.77596291346116697, -1.9032169721174925) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wy/wyz003.txt +description = Cody Foothills, WY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wy/wyz003.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wy/wyz003.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wy/wyz003.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wy/wyz003.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wy/wyz003.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wy/wyz003.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wy/wyz003.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wy/wyz003.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wy.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wy/wyz003.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wy/wyz003.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wy/wyz003.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wy/wyz003.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wy/wyz003.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wy/wyz003.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wy/wyz003.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wy.txt +station = ('kcod', 0.0010654208476629386) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wy/wyz003.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wy/wyz003.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wy/wyz003.txt + +[wyz004] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wy/wyz004.txt +centroid = (0.77745167931311809, -1.8902055425438749) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wy/wyz004.txt +description = North Big Horn Basin, WY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wy/wyz004.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wy/wyz004.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wy/wyz004.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wy/wyz004.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wy/wyz004.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wy/wyz004.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wy/wyz004.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wy/wyz004.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wy.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wy/wyz004.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wy/wyz004.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wy/wyz004.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wy/wyz004.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wy/wyz004.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wy/wyz004.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wy/wyz004.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wy.txt +station = ('kgey', 0.00274960448854199) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wy/wyz004.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wy/wyz004.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wy/wyz004.txt + +[wyz005] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wy/wyz005.txt +centroid = (0.76405976796256558, -1.8898058621451681) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wy/wyz005.txt +description = Southwest Big Horn Basin, WY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wy/wyz005.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wy/wyz005.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wy/wyz005.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wy/wyz005.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wy/wyz005.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wy/wyz005.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wy/wyz005.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wy/wyz005.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wy.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wy/wyz005.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wy/wyz005.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wy/wyz005.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wy/wyz005.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wy/wyz005.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wy/wyz005.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wy/wyz005.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wy.txt +station = ('ktbx', 0.0054524668738645142) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wy/wyz005.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wy/wyz005.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wy/wyz005.txt + +[wyz006] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wy/wyz006.txt +centroid = (0.76693781589910437, -1.88180876351253) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wy/wyz006.txt +description = Southeast Big Horn Basin, WY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wy/wyz006.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wy/wyz006.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wy/wyz006.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wy/wyz006.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wy/wyz006.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wy/wyz006.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wy/wyz006.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wy/wyz006.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wy.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wy/wyz006.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wy/wyz006.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wy/wyz006.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wy/wyz006.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wy/wyz006.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wy/wyz006.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wy/wyz006.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wy.txt +station = ('kwrl', 0.0016914860564389864) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wy/wyz006.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wy/wyz006.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wy/wyz006.txt + +[wyz007] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wy/wyz007.txt +centroid = (0.76049231497148917, -1.8890326812865346) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wy/wyz007.txt +description = Owl Creek and Bridger Mountains, WY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wy/wyz007.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wy/wyz007.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wy/wyz007.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wy/wyz007.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wy/wyz007.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wy/wyz007.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wy/wyz007.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wy/wyz007.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wy.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wy/wyz007.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wy/wyz007.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wy/wyz007.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wy/wyz007.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wy/wyz007.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wy/wyz007.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wy/wyz007.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wy.txt +station = ('ktbx', 0.0018558640299112293) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wy/wyz007.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wy/wyz007.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wy/wyz007.txt + +[wyz008] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wy/wyz008.txt +centroid = (0.77233960993402673, -1.8756739311917701) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wy/wyz008.txt +description = Bighorn Mountains West, WY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wy/wyz008.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wy/wyz008.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wy/wyz008.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wy/wyz008.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wy/wyz008.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wy/wyz008.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wy/wyz008.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wy/wyz008.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wy.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wy/wyz008.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wy/wyz008.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wy/wyz008.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wy/wyz008.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wy/wyz008.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wy/wyz008.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wy/wyz008.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wy.txt +station = ('kjpd', 0.004170282845554661) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wy/wyz008.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wy/wyz008.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wy/wyz008.txt + +[wyz009] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wy/wyz009.txt +centroid = (0.76637232922145815, -1.8679613212272073) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wy/wyz009.txt +description = Bighorn Mountains Southeast, WY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wy/wyz009.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wy/wyz009.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wy/wyz009.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wy/wyz009.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wy/wyz009.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wy/wyz009.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wy/wyz009.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wy/wyz009.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wy.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wy/wyz009.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wy/wyz009.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wy/wyz009.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wy/wyz009.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wy/wyz009.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wy/wyz009.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wy/wyz009.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wy.txt +station = ('kjpd', 0.0045456669183105564) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wy/wyz009.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wy/wyz009.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wy/wyz009.txt + +[wyz010] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wy/wyz010.txt +centroid = (0.77436768252484423, -1.857552177568313) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wy/wyz010.txt +description = Northeast Johnson County, WY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wy/wyz010.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wy/wyz010.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wy/wyz010.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wy/wyz010.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wy/wyz010.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wy/wyz010.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wy/wyz010.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wy/wyz010.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wy.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wy/wyz010.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wy/wyz010.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wy/wyz010.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wy/wyz010.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wy/wyz010.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wy/wyz010.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wy/wyz010.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wy.txt +station = ('kbyg', 0.0035874327233398509) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wy/wyz010.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wy/wyz010.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wy/wyz010.txt + +[wyz011] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wy/wyz011.txt +centroid = (0.7648137501994271, -1.8576726052867008) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wy/wyz011.txt +description = Southeast Johnson County, WY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wy/wyz011.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wy/wyz011.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wy/wyz011.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wy/wyz011.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wy/wyz011.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wy/wyz011.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wy/wyz011.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wy/wyz011.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wy.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wy/wyz011.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wy/wyz011.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wy/wyz011.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wy/wyz011.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wy/wyz011.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wy/wyz011.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wy/wyz011.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wy.txt +station = ('kbyg', 0.010429092873344821) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wy/wyz011.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wy/wyz011.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wy/wyz011.txt + +[wyz012] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wy/wyz012.txt +centroid = (0.76250467959903867, -1.9286848165625938) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wy/wyz012.txt +description = Teton and Gros Ventre Mountains, WY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wy/wyz012.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wy/wyz012.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wy/wyz012.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wy/wyz012.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wy/wyz012.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wy/wyz012.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wy/wyz012.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wy/wyz012.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wy.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wy/wyz012.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wy/wyz012.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wy/wyz012.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wy/wyz012.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wy/wyz012.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wy/wyz012.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wy/wyz012.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wy.txt +station = ('kjac', 0.0032642212392983666) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wy/wyz012.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wy/wyz012.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wy/wyz012.txt + +[wyz013] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wy/wyz013.txt +centroid = (0.76176291466694113, -1.9318421171794518) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wy/wyz013.txt +description = Jackson Hole, WY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wy/wyz013.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wy/wyz013.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wy/wyz013.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wy/wyz013.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wy/wyz013.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wy/wyz013.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wy/wyz013.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wy/wyz013.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wy.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wy/wyz013.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wy/wyz013.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wy/wyz013.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wy/wyz013.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wy/wyz013.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wy/wyz013.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wy/wyz013.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wy.txt +station = ('kjac', 0.00099528628881121839) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wy/wyz013.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wy/wyz013.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wy/wyz013.txt + +[wyz014] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wy/wyz014.txt +centroid = (0.74890681939675086, -1.9110011405813874) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wy/wyz014.txt +description = Wind River Mountains West, WY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wy/wyz014.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wy/wyz014.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wy/wyz014.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wy/wyz014.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wy/wyz014.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wy/wyz014.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wy/wyz014.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wy/wyz014.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wy.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wy/wyz014.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wy/wyz014.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wy/wyz014.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wy/wyz014.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wy/wyz014.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wy/wyz014.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wy/wyz014.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wy.txt +station = ('kpna', 0.0044901573435531892) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wy/wyz014.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wy/wyz014.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wy/wyz014.txt + +[wyz015] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wy/wyz015.txt +centroid = (0.75135726166655081, -1.907391799688263) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wy/wyz015.txt +description = Wind River Mountains East, WY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wy/wyz015.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wy/wyz015.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wy/wyz015.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wy/wyz015.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wy/wyz015.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wy/wyz015.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wy/wyz015.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wy/wyz015.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wy.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wy/wyz015.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wy/wyz015.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wy/wyz015.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wy/wyz015.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wy/wyz015.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wy/wyz015.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wy/wyz015.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wy.txt +station = ('klnd', 0.0081432176431063194) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wy/wyz015.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wy/wyz015.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wy/wyz015.txt + +[wyz016] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wy/wyz016.txt +centroid = (0.75835428663779614, -1.9083255508380799) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wy/wyz016.txt +description = Upper Wind River Basin, WY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wy/wyz016.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wy/wyz016.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wy/wyz016.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wy/wyz016.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wy/wyz016.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wy/wyz016.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wy/wyz016.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wy/wyz016.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wy.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wy/wyz016.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wy/wyz016.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wy/wyz016.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wy/wyz016.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wy/wyz016.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wy/wyz016.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wy/wyz016.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wy.txt +station = ('kpna', 0.012896152932723714) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wy/wyz016.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wy/wyz016.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wy/wyz016.txt + +[wyz017] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wy/wyz017.txt +centroid = (0.75285999015251803, -1.8897622289138685) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wy/wyz017.txt +description = Wind River Basin, WY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wy/wyz017.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wy/wyz017.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wy/wyz017.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wy/wyz017.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wy/wyz017.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wy/wyz017.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wy/wyz017.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wy/wyz017.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wy.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wy/wyz017.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wy/wyz017.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wy/wyz017.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wy/wyz017.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wy/wyz017.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wy/wyz017.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wy/wyz017.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wy.txt +station = ('kriw', 0.0025302895470969288) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wy/wyz017.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wy/wyz017.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wy/wyz017.txt + +[wyz018] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wy/wyz018.txt +centroid = (0.74694855997601317, -1.8961047554156159) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wy/wyz018.txt +description = Lander Foothills, WY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wy/wyz018.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wy/wyz018.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wy/wyz018.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wy/wyz018.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wy/wyz018.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wy/wyz018.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wy/wyz018.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wy/wyz018.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wy.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wy/wyz018.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wy/wyz018.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wy/wyz018.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wy/wyz018.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wy/wyz018.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wy/wyz018.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wy/wyz018.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wy.txt +station = ('klnd', 0.0012581865089207759) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wy/wyz018.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wy/wyz018.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wy/wyz018.txt + +[wyz019] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wy/wyz019.txt +centroid = (0.74068108263210153, -1.8834493730094048) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wy/wyz019.txt +description = Green Mountains and Rattlesnake Range, WY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wy/wyz019.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wy/wyz019.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wy/wyz019.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wy/wyz019.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wy/wyz019.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wy/wyz019.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wy/wyz019.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wy/wyz019.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wy.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wy/wyz019.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wy/wyz019.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wy/wyz019.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wy/wyz019.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wy/wyz019.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wy/wyz019.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wy/wyz019.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wy.txt +station = ('klnd', 0.012429202688430103) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wy/wyz019.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wy/wyz019.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wy/wyz019.txt + +[wyz020] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wy/wyz020.txt +centroid = (0.751643495663878, -1.8618875754302668) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wy/wyz020.txt +description = Natrona County Lower Elevations, WY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wy/wyz020.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wy/wyz020.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wy/wyz020.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wy/wyz020.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wy/wyz020.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wy/wyz020.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wy/wyz020.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wy/wyz020.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wy.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wy/wyz020.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wy/wyz020.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wy/wyz020.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wy/wyz020.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wy/wyz020.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wy/wyz020.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wy/wyz020.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wy.txt +station = ('kcpr', 0.0039617692661807619) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wy/wyz020.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wy/wyz020.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wy/wyz020.txt + +[wyz021] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wy/wyz021.txt +centroid = (0.72060456024641073, -1.9294196001776835) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wy/wyz021.txt +description = Southwest Wyoming, WY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wy/wyz021.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wy/wyz021.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wy/wyz021.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wy/wyz021.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wy/wyz021.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wy/wyz021.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wy/wyz021.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wy/wyz021.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wy.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wy/wyz021.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wy/wyz021.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wy/wyz021.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wy/wyz021.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wy/wyz021.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wy/wyz021.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wy/wyz021.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wy.txt +station = ('kevw', 0.0063816425493482933) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wy/wyz021.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wy/wyz021.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wy/wyz021.txt + +[wyz022] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wy/wyz022.txt +centroid = (0.74361672643395604, -1.8546514403514984) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wy/wyz022.txt +description = Casper Mountain, WY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wy/wyz022.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wy/wyz022.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wy/wyz022.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wy/wyz022.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wy/wyz022.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wy/wyz022.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wy/wyz022.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wy/wyz022.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wy.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wy/wyz022.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wy/wyz022.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wy/wyz022.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wy/wyz022.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wy/wyz022.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wy/wyz022.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wy/wyz022.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wy.txt +station = ('kcpr', 0.0057513472589222729) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wy/wyz022.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wy/wyz022.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wy/wyz022.txt + +[wyz023] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wy/wyz023.txt +centroid = (0.74810745859933747, -1.9370013104483468) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wy/wyz023.txt +description = Star Valley, WY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wy/wyz023.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wy/wyz023.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wy/wyz023.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wy/wyz023.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wy/wyz023.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wy/wyz023.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wy/wyz023.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wy/wyz023.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wy.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wy/wyz023.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wy/wyz023.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wy/wyz023.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wy/wyz023.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wy/wyz023.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wy/wyz023.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wy/wyz023.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wy.txt +station = ('ku78', 0.0085589163514019993) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wy/wyz023.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wy/wyz023.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wy/wyz023.txt + +[wyz024] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wy/wyz024.txt +centroid = (0.7428575082093386, -1.9314755980365328) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wy/wyz024.txt +description = Salt River and Wyoming Ranges, WY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wy/wyz024.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wy/wyz024.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wy/wyz024.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wy/wyz024.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wy/wyz024.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wy/wyz024.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wy/wyz024.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wy/wyz024.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wy.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wy/wyz024.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wy/wyz024.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wy/wyz024.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wy/wyz024.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wy/wyz024.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wy/wyz024.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wy/wyz024.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wy.txt +station = ('kbpi', 0.007276014602349455) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wy/wyz024.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wy/wyz024.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wy/wyz024.txt + +[wyz025] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wy/wyz025.txt +centroid = (0.75014774849491883, -1.9205463462605441) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wy/wyz025.txt +description = Upper Green River Basin Foothills, WY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wy/wyz025.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wy/wyz025.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wy/wyz025.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wy/wyz025.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wy/wyz025.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wy/wyz025.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wy/wyz025.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wy/wyz025.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wy.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wy/wyz025.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wy/wyz025.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wy/wyz025.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wy/wyz025.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wy/wyz025.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wy/wyz025.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wy/wyz025.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wy.txt +station = ('kpna', 0.0043873853306037091) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wy/wyz025.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wy/wyz025.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wy/wyz025.txt + +[wyz026] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wy/wyz026.txt +centroid = (0.73903698247672289, -1.9159229690720112) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wy/wyz026.txt +description = Upper Green River Basin, WY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wy/wyz026.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wy/wyz026.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wy/wyz026.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wy/wyz026.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wy/wyz026.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wy/wyz026.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wy/wyz026.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wy/wyz026.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wy.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wy/wyz026.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wy/wyz026.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wy/wyz026.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wy/wyz026.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wy/wyz026.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wy/wyz026.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wy/wyz026.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wy.txt +station = ('kbpi', 0.0059226626651211868) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wy/wyz026.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wy/wyz026.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wy/wyz026.txt + +[wyz027] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wy/wyz027.txt +centroid = (0.72991763713505253, -1.9295871517858749) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wy/wyz027.txt +description = South Lincoln County, WY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wy/wyz027.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wy/wyz027.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wy/wyz027.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wy/wyz027.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wy/wyz027.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wy/wyz027.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wy/wyz027.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wy/wyz027.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wy.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wy/wyz027.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wy/wyz027.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wy/wyz027.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wy/wyz027.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wy/wyz027.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wy/wyz027.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wy/wyz027.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wy.txt +station = ('kevw', 0.011504573962252232) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wy/wyz027.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wy/wyz027.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wy/wyz027.txt + +[wyz028] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wy/wyz028.txt +centroid = (0.72532218521455138, -1.9141427332349772) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wy/wyz028.txt +description = Rock Springs and Green River, WY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wy/wyz028.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wy/wyz028.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wy/wyz028.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wy/wyz028.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wy/wyz028.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wy/wyz028.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wy/wyz028.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wy/wyz028.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wy.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wy/wyz028.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wy/wyz028.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wy/wyz028.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wy/wyz028.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wy/wyz028.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wy/wyz028.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wy/wyz028.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wy.txt +station = ('krks', 0.0081577621283186411) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wy/wyz028.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wy/wyz028.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wy/wyz028.txt + +[wyz029] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wy/wyz029.txt +centroid = (0.71981567142450942, -1.9100447001512944) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wy/wyz029.txt +description = Flaming Gorge, WY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wy/wyz029.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wy/wyz029.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wy/wyz029.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wy/wyz029.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wy/wyz029.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wy/wyz029.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wy/wyz029.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wy/wyz029.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wy.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wy/wyz029.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wy/wyz029.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wy/wyz029.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wy/wyz029.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wy/wyz029.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wy/wyz029.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wy/wyz029.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wy.txt +station = ('krks', 0.0080419630172329729) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wy/wyz029.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wy/wyz029.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wy/wyz029.txt + +[wyz030] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wy/wyz030.txt +centroid = (0.72571139363774617, -1.8922720123782362) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wy/wyz030.txt +description = East Sweetwater County, WY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wy/wyz030.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wy/wyz030.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wy/wyz030.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wy/wyz030.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wy/wyz030.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wy/wyz030.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wy/wyz030.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wy/wyz030.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wy.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wy/wyz030.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wy/wyz030.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wy/wyz030.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wy/wyz030.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wy/wyz030.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wy/wyz030.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wy/wyz030.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wy.txt +station = ('krks', 0.0082414035439269812) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wy/wyz030.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wy/wyz030.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wy/wyz030.txt + +[wyz054] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wy/wyz054.txt +centroid = (0.77834703321939114, -1.842189789492259) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wy/wyz054.txt +description = Northern Campbell, WY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wy/wyz054.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wy/wyz054.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wy/wyz054.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wy/wyz054.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wy/wyz054.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wy/wyz054.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wy/wyz054.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wy/wyz054.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wy.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wy/wyz054.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wy/wyz054.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wy/wyz054.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wy/wyz054.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wy/wyz054.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wy/wyz054.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wy/wyz054.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wy.txt +station = ('kgcc', 0.0045843996915231819) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wy/wyz054.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wy/wyz054.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wy/wyz054.txt + +[wyz055] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wy/wyz055.txt +centroid = (0.76521517592738586, -1.842156628236471) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wy/wyz055.txt +description = Southern Campbell, WY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wy/wyz055.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wy/wyz055.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wy/wyz055.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wy/wyz055.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wy/wyz055.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wy/wyz055.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wy/wyz055.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wy/wyz055.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wy.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wy/wyz055.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wy/wyz055.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wy/wyz055.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wy/wyz055.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wy/wyz055.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wy/wyz055.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wy/wyz055.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wy.txt +station = ('kgcc', 0.0085475036165580959) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wy/wyz055.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wy/wyz055.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wy/wyz055.txt + +[wyz056] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wy/wyz056.txt +centroid = (0.77861406859494631, -1.8291329813580892) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wy/wyz056.txt +description = Western Crook, WY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wy/wyz056.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wy/wyz056.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wy/wyz056.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wy/wyz056.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wy/wyz056.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wy/wyz056.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wy/wyz056.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wy/wyz056.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wy.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wy/wyz056.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wy/wyz056.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wy/wyz056.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wy/wyz056.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wy/wyz056.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wy/wyz056.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wy/wyz056.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wy.txt +station = ('kspf', 0.012860992996841727) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wy/wyz056.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wy/wyz056.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wy/wyz056.txt + +[wyz057] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wy/wyz057.txt +centroid = (0.77476910825280276, -1.820593085328081) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wy/wyz057.txt +description = Wyoming Black Hills, WY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wy/wyz057.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wy/wyz057.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wy/wyz057.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wy/wyz057.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wy/wyz057.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wy/wyz057.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wy/wyz057.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wy/wyz057.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wy.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wy/wyz057.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wy/wyz057.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wy/wyz057.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wy/wyz057.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wy/wyz057.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wy/wyz057.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wy/wyz057.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wy.txt +station = ('kspf', 0.0067860801211827738) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wy/wyz057.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wy/wyz057.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wy/wyz057.txt + +[wyz058] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wy/wyz058.txt +centroid = (0.76457987607965994, -1.8259844073874916) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wy/wyz058.txt +description = Weston, WY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wy/wyz058.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wy/wyz058.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wy/wyz058.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wy/wyz058.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wy/wyz058.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wy/wyz058.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wy/wyz058.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wy/wyz058.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wy.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wy/wyz058.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wy/wyz058.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wy/wyz058.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wy/wyz058.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wy/wyz058.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wy/wyz058.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wy/wyz058.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wy.txt +station = ('kcut', 0.012725885484987178) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wy/wyz058.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wy/wyz058.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wy/wyz058.txt + +[wyz071] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wy/wyz071.txt +centroid = (0.7827906414949688, -1.8182264188623767) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wy/wyz071.txt +description = Northeastern Crook, WY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wy/wyz071.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wy/wyz071.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wy/wyz071.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wy/wyz071.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wy/wyz071.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wy/wyz071.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wy/wyz071.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wy/wyz071.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wy.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wy/wyz071.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wy/wyz071.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wy/wyz071.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wy/wyz071.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wy/wyz071.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wy/wyz071.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wy/wyz071.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wy.txt +station = ('kspf', 0.0080578973081566856) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wy/wyz071.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wy/wyz071.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wy/wyz071.txt + +[wyz098] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wy/wyz098.txt +centroid = (0.78152702311652489, -1.8760893195537447) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wy/wyz098.txt +description = Northeast Big Horn Mountains, WY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wy/wyz098.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wy/wyz098.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wy/wyz098.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wy/wyz098.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wy/wyz098.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wy/wyz098.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wy/wyz098.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wy/wyz098.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wy.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wy/wyz098.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wy/wyz098.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wy/wyz098.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wy/wyz098.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wy/wyz098.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wy/wyz098.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wy/wyz098.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wy.txt +station = ('kshr', 0.0065121177004448831) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wy/wyz098.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wy/wyz098.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wy/wyz098.txt + +[wyz099] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wy/wyz099.txt +centroid = (0.78180976645534805, -1.8614704417390402) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wy/wyz099.txt +description = Sheridan Foothills, WY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wy/wyz099.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wy/wyz099.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wy/wyz099.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wy/wyz099.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wy/wyz099.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wy/wyz099.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wy/wyz099.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wy/wyz099.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wy.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wy/wyz099.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wy/wyz099.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wy/wyz099.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wy/wyz099.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wy/wyz099.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wy/wyz099.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wy/wyz099.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wy.txt +station = ('kshr', 0.0038986847146236705) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wy/wyz099.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wy/wyz099.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wy/wyz099.txt + +[wyz101] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wy/wyz101.txt +centroid = (0.75178312200403752, -1.8406120118484559) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wy/wyz101.txt +description = Lower elevations of Converse County, WY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wy/wyz101.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wy/wyz101.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wy/wyz101.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wy/wyz101.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wy/wyz101.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wy/wyz101.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wy/wyz101.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wy/wyz101.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wy.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wy/wyz101.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wy/wyz101.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wy/wyz101.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wy/wyz101.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wy/wyz101.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wy/wyz101.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wy/wyz101.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wy.txt +station = ('kdgw', 0.0048797188389982614) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wy/wyz101.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wy/wyz101.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wy/wyz101.txt + +[wyz102] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wy/wyz102.txt +centroid = (0.75147768938493853, -1.8234397173380836) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wy/wyz102.txt +description = Niobrara County, WY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wy/wyz102.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wy/wyz102.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wy/wyz102.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wy/wyz102.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wy/wyz102.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wy/wyz102.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wy/wyz102.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wy/wyz102.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wy.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wy/wyz102.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wy/wyz102.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wy/wyz102.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wy/wyz102.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wy/wyz102.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wy/wyz102.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wy/wyz102.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wy.txt +station = ('kdgw', 0.012436473375114712) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wy/wyz102.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wy/wyz102.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wy/wyz102.txt + +[wyz103] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wy/wyz103.txt +centroid = (0.73920802474341829, -1.8434883144557426) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wy/wyz103.txt +description = North Laramie Range, WY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wy/wyz103.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wy/wyz103.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wy/wyz103.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wy/wyz103.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wy/wyz103.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wy/wyz103.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wy/wyz103.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wy/wyz103.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wy.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wy/wyz103.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wy/wyz103.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wy/wyz103.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wy/wyz103.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wy/wyz103.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wy/wyz103.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wy/wyz103.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wy.txt +station = ('kdgw', 0.0083847539810461627) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wy/wyz103.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wy/wyz103.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wy/wyz103.txt + +[wyz104] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wy/wyz104.txt +centroid = (0.73776289212276702, -1.8653729979464995) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wy/wyz104.txt +description = Ferris/Seminoe/Shirley Mountains, WY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wy/wyz104.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wy/wyz104.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wy/wyz104.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wy/wyz104.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wy/wyz104.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wy/wyz104.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wy/wyz104.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wy/wyz104.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wy.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wy/wyz104.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wy/wyz104.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wy/wyz104.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wy/wyz104.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wy/wyz104.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wy/wyz104.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wy/wyz104.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wy.txt +station = ('krwl', 0.0092148534652205152) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wy/wyz104.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wy/wyz104.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wy/wyz104.txt + +[wyz105] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wy/wyz105.txt +centroid = (0.73537702703529084, -1.8516948525986201) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wy/wyz105.txt +description = Shirley Basin, WY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wy/wyz105.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wy/wyz105.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wy/wyz105.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wy/wyz105.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wy/wyz105.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wy/wyz105.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wy/wyz105.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wy/wyz105.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wy.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wy/wyz105.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wy/wyz105.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wy/wyz105.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wy/wyz105.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wy/wyz105.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wy/wyz105.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wy/wyz105.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wy.txt +station = ('kcpr', 0.014201466283340859) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wy/wyz105.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wy/wyz105.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wy/wyz105.txt + +[wyz106] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wy/wyz106.txt +centroid = (0.73090549349168132, -1.8365104881062693) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wy/wyz106.txt +description = Central Laramie Range and Southwest Platte County, WY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wy/wyz106.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wy/wyz106.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wy/wyz106.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wy/wyz106.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wy/wyz106.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wy/wyz106.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wy/wyz106.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wy/wyz106.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wy.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wy/wyz106.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wy/wyz106.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wy/wyz106.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wy/wyz106.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wy/wyz106.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wy/wyz106.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wy/wyz106.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wy.txt +station = ('klar', 0.011368862080527384) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wy/wyz106.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wy/wyz106.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wy/wyz106.txt + +[wyz107] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wy/wyz107.txt +centroid = (0.7371799521526009, -1.8305379714059447) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wy/wyz107.txt +description = East Platte County, WY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wy/wyz107.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wy/wyz107.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wy/wyz107.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wy/wyz107.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wy/wyz107.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wy/wyz107.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wy/wyz107.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wy/wyz107.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wy.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wy/wyz107.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wy/wyz107.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wy/wyz107.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wy/wyz107.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wy/wyz107.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wy/wyz107.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wy/wyz107.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wy.txt +station = ('ktor', 0.010022189269229691) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wy/wyz107.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wy/wyz107.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wy/wyz107.txt + +[wyz108] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wy/wyz108.txt +centroid = (0.73457417557937343, -1.8213086703213988) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wy/wyz108.txt +description = Goshen County, WY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wy/wyz108.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wy/wyz108.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wy/wyz108.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wy/wyz108.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wy/wyz108.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wy/wyz108.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wy/wyz108.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wy/wyz108.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wy.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wy/wyz108.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wy/wyz108.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wy/wyz108.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wy/wyz108.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wy/wyz108.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wy/wyz108.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wy/wyz108.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wy.txt +station = ('ktor', 0.0027162197086128739) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wy/wyz108.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wy/wyz108.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wy/wyz108.txt + +[wyz109] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wy/wyz109.txt +centroid = (0.72990367450103655, -1.8692999887634867) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wy/wyz109.txt +description = Central Carbon County, WY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wy/wyz109.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wy/wyz109.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wy/wyz109.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wy/wyz109.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wy/wyz109.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wy/wyz109.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wy/wyz109.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wy/wyz109.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wy.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wy/wyz109.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wy/wyz109.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wy/wyz109.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wy/wyz109.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wy/wyz109.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wy/wyz109.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wy/wyz109.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wy.txt +station = ('krwl', 0.0013111361551311487) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wy/wyz109.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wy/wyz109.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wy/wyz109.txt + +[wyz110] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wy/wyz110.txt +centroid = (0.72763474647344395, -1.8545694098766545) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wy/wyz110.txt +description = North Snowy Range Foothills, WY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wy/wyz110.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wy/wyz110.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wy/wyz110.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wy/wyz110.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wy/wyz110.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wy/wyz110.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wy/wyz110.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wy/wyz110.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wy.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wy/wyz110.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wy/wyz110.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wy/wyz110.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wy/wyz110.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wy/wyz110.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wy/wyz110.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wy/wyz110.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wy.txt +station = ('klar', 0.010123825553394387) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wy/wyz110.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wy/wyz110.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wy/wyz110.txt + +[wyz111] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wy/wyz111.txt +centroid = (0.7205801256368829, -1.8798889013353364) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wy/wyz111.txt +description = Southwest Carbon County, WY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wy/wyz111.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wy/wyz111.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wy/wyz111.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wy/wyz111.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wy/wyz111.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wy/wyz111.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wy/wyz111.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wy/wyz111.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wy.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wy/wyz111.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wy/wyz111.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wy/wyz111.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wy/wyz111.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wy/wyz111.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wy/wyz111.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wy/wyz111.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wy.txt +station = ('krwl', 0.011169020013612729) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wy/wyz111.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wy/wyz111.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wy/wyz111.txt + +[wyz112] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wy/wyz112.txt +centroid = (0.71854332639980545, -1.8692301755934071) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wy/wyz112.txt +description = Sierra Madre Range, WY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wy/wyz112.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wy/wyz112.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wy/wyz112.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wy/wyz112.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wy/wyz112.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wy/wyz112.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wy/wyz112.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wy/wyz112.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wy.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wy/wyz112.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wy/wyz112.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wy/wyz112.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wy/wyz112.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wy/wyz112.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wy/wyz112.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wy/wyz112.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wy.txt +station = ('krwl', 0.011083250901169859) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wy/wyz112.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wy/wyz112.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wy/wyz112.txt + +[wyz113] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wy/wyz113.txt +centroid = (0.72233418153513718, -1.8635107316346216) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wy/wyz113.txt +description = Upper North Platte River Basin, WY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wy/wyz113.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wy/wyz113.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wy/wyz113.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wy/wyz113.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wy/wyz113.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wy/wyz113.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wy/wyz113.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wy/wyz113.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wy.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wy/wyz113.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wy/wyz113.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wy/wyz113.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wy/wyz113.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wy/wyz113.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wy/wyz113.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wy/wyz113.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wy.txt +station = ('krwl', 0.0091293994741876664) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wy/wyz113.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wy/wyz113.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wy/wyz113.txt + +[wyz114] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wy/wyz114.txt +centroid = (0.72099725932810954, -1.8555433035992677) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wy/wyz114.txt +description = Snowy Range, WY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wy/wyz114.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wy/wyz114.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wy/wyz114.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wy/wyz114.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wy/wyz114.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wy/wyz114.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wy/wyz114.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wy/wyz114.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wy.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wy/wyz114.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wy/wyz114.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wy/wyz114.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wy/wyz114.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wy/wyz114.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wy/wyz114.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wy/wyz114.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wy.txt +station = ('k33v', 0.0098021783158113579) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wy/wyz114.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wy/wyz114.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wy/wyz114.txt + +[wyz115] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wy/wyz115.txt +centroid = (0.72257503697191239, -1.8458846515187308) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wy/wyz115.txt +description = Laramie Valley, WY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wy/wyz115.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wy/wyz115.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wy/wyz115.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wy/wyz115.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wy/wyz115.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wy/wyz115.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wy/wyz115.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wy/wyz115.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wy.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wy/wyz115.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wy/wyz115.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wy/wyz115.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wy/wyz115.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wy/wyz115.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wy/wyz115.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wy/wyz115.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wy.txt +station = ('klar', 0.0019185969940434572) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wy/wyz115.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wy/wyz115.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wy/wyz115.txt + +[wyz116] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wy/wyz116.txt +centroid = (0.72056092701511099, -1.8391738605448127) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wy/wyz116.txt +description = South Laramie Range, WY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wy/wyz116.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wy/wyz116.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wy/wyz116.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wy/wyz116.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wy/wyz116.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wy/wyz116.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wy/wyz116.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wy/wyz116.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wy.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wy/wyz116.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wy/wyz116.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wy/wyz116.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wy/wyz116.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wy/wyz116.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wy/wyz116.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wy/wyz116.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wy.txt +station = ('klar', 0.0038391144913910401) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wy/wyz116.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wy/wyz116.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wy/wyz116.txt + +[wyz117] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wy/wyz117.txt +centroid = (0.72105834585192929, -1.833161201271692) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wy/wyz117.txt +description = South Laramie Range Foothills, WY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wy/wyz117.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wy/wyz117.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wy/wyz117.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wy/wyz117.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wy/wyz117.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wy/wyz117.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wy/wyz117.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wy/wyz117.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wy.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wy/wyz117.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wy/wyz117.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wy/wyz117.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wy/wyz117.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wy/wyz117.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wy/wyz117.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wy/wyz117.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wy.txt +station = ('kfew', 0.0040608430456804089) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wy/wyz117.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wy/wyz117.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wy/wyz117.txt + +[wyz118] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wy/wyz118.txt +centroid = (0.72130443727646054, -1.8265673473576576) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wy/wyz118.txt +description = Central Laramie County, WY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wy/wyz118.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wy/wyz118.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wy/wyz118.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wy/wyz118.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wy/wyz118.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wy/wyz118.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wy/wyz118.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wy/wyz118.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wy.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wy/wyz118.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wy/wyz118.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wy/wyz118.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wy/wyz118.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wy/wyz118.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wy/wyz118.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wy/wyz118.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wy.txt +station = ('kfew', 0.0034939654864306418) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wy/wyz118.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wy/wyz118.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wy/wyz118.txt + +[wyz119] +area_conditions = http://weather.noaa.gov/pub/data/observations/state_roundup/wy/wyz119.txt +centroid = (0.72056092701511099, -1.8192212565360135) +coastal_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/coastal/wy/wyz119.txt +description = East Laramie County, WY +extended_forecast = http://weather.noaa.gov/pub/data/forecasts/extended/wy/wyz119.txt +flash_flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/statement/wy/wyz119.txt +flash_flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/warning/wy/wyz119.txt +flash_flood_watch = http://weather.noaa.gov/pub/data/watches_warnings/flash_flood/watch/wy/wyz119.txt +flood_statement = http://weather.noaa.gov/pub/data/watches_warnings/flood/statement/wy/wyz119.txt +flood_warning = http://weather.noaa.gov/pub/data/watches_warnings/flood/warning/wy/wyz119.txt +local_forecast = http://weather.noaa.gov/pub/data/forecasts/local/wy/wyz119.txt +marine_weather_statement = http://weather.noaa.gov/pub/data/forecasts/marine/weather_stmt/wy/wyz119.txt +precipitation_and_temperature_summary = http://weather.noaa.gov/pub/data/summaries/max_min_temp_and_precip/wy.txt +river_statement = http://weather.noaa.gov/pub/data/forecasts/river/stmt/wy/wyz119.txt +severe_thunderstorm_warning = http://weather.noaa.gov/pub/data/watches_warnings/thunderstorm/wy/wyz119.txt +severe_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/severe_weather_stmt/wy/wyz119.txt +short_term_forecast = http://weather.noaa.gov/pub/data/forecasts/nowcast/wy/wyz119.txt +special_marine_warning = http://weather.noaa.gov/pub/data/watches_warnings/special_marine/wy/wyz119.txt +special_weather_statement = http://weather.noaa.gov/pub/data/watches_warnings/special_weather_stmt/wy/wyz119.txt +state_forecast = http://weather.noaa.gov/pub/data/forecasts/state/wy/wyz119.txt +state_weather_summary = http://weather.noaa.gov/pub/data/summaries/weather/wy.txt +station = ('kfew', 0.0077481392861957713) +tornado_warning = http://weather.noaa.gov/pub/data/watches_warnings/tornado/wy/wyz119.txt +urgent_weather_message = http://weather.noaa.gov/pub/data/watches_warnings/non_precip/wy/wyz119.txt +zone_forecast = http://weather.noaa.gov/pub/data/forecasts/zone/wy/wyz119.txt \ No newline at end of file -- 2.11.0